From e87d773975445fd06f3183e348c8f1ba2ba64c69 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julius=20H=C3=A4ger?= Date: Thu, 15 Dec 2022 22:29:46 +0100 Subject: [PATCH 01/38] Started working on a pal2 tutorial --- learn/pal2/Introduction.md | 55 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 55 insertions(+) create mode 100644 learn/pal2/Introduction.md diff --git a/learn/pal2/Introduction.md b/learn/pal2/Introduction.md new file mode 100644 index 00000000..2f791ea9 --- /dev/null +++ b/learn/pal2/Introduction.md @@ -0,0 +1,55 @@ +# Platform Abstraction Layer 2 + +> [!IMPORTANT] +> PAL2 is under early development and many things might change in the future. +Feedback is encouraged. + +> [!IMPORTANT] +> Currently PAL2 is basically only usable on windows. +This will change as it is developed more. + +## Setup + +PAL2 exposes platform APIs through a number of interfaces used to abstract away the underlying operating system. + +The first of these interfaces we are going to see is `IWindowComponent` and `IOpenGLComponent` which allows the user to +create and interact with windows as well as initialize an OpenGL context and draw graphics to the window. + +> [!NOTE] +> Currently there is no way for OpenTK to automatically initialize these interfaces to the correct platform implementations, this capability will be available in the future. + +The following code initializes these interfaces with a windows implementation. +```cs +IWindowComponent windowComp = new OpenTK.Platform.Native.Windows.WindowComponent(); +IOpenGLComp openglComp = new OpenTK.Platform.Native.Windows.OpenGLComponent(); + +windowComp.Initialize(PalComponents.Window); +openglComp.Initialize(PalComponents.OpenGL); +``` + +## Creating a window + +To create an OpenGL window using PAL2 all you need to do is the following: + +```cs +OpenGLGraphicsApiHints contextSettings = new OpenGLGraphicsApiHints() +{ + DoubleBuffer = true, + sRGBFramebuffer = false, + Multisamples = 0, + DepthBits = ContextDepthBits.Depth24, + StencilBits = ContextStencilBits.Stencil8, +}; + +WindowHandle window = windowComp.Create(contextSettings); + +OpenGLContextHandle glContext = openglComp.CreateFromWindow(window); +``` + +This returns a handle to the window and the opengl context which is the main method to interact with the window. + +To show the created window we need to set the window mode to not be hidden. + +```cs +windowComp.SetMode(window, WindowMode.Normal); +``` \ No newline at end of file From f95fad6ebe4175953649551a38d44f23ea2e8520 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julius=20H=C3=A4ger?= Date: Sat, 17 Dec 2022 21:35:05 +0100 Subject: [PATCH 02/38] Finished initial version of the pal2 introduction tutorial --- learn/pal2/Introduction.md | 164 +++++++++++++++++++++++++++++++++++-- 1 file changed, 159 insertions(+), 5 deletions(-) diff --git a/learn/pal2/Introduction.md b/learn/pal2/Introduction.md index 2f791ea9..81f0a75e 100644 --- a/learn/pal2/Introduction.md +++ b/learn/pal2/Introduction.md @@ -21,7 +21,7 @@ create and interact with windows as well as initialize an OpenGL context and dra The following code initializes these interfaces with a windows implementation. ```cs IWindowComponent windowComp = new OpenTK.Platform.Native.Windows.WindowComponent(); -IOpenGLComp openglComp = new OpenTK.Platform.Native.Windows.OpenGLComponent(); +IOpenGLComponent openglComp = new OpenTK.Platform.Native.Windows.OpenGLComponent(); windowComp.Initialize(PalComponents.Window); openglComp.Initialize(PalComponents.OpenGL); @@ -34,9 +34,10 @@ To create an OpenGL window using PAL2 all you need to do is the following: ```cs OpenGLGraphicsApiHints contextSettings = new OpenGLGraphicsApiHints() { - DoubleBuffer = true, - sRGBFramebuffer = false, - Multisamples = 0, + // Here different options of the opengl context can be set. + Version = new Version(4, 1), + Profile = OpenGLProfile.Core, + DebugFlag = true, DepthBits = ContextDepthBits.Depth24, StencilBits = ContextStencilBits.Stencil8, }; @@ -48,8 +49,161 @@ OpenGLContextHandle glContext = openglComp.CreateFromWindow(window); This returns a handle to the window and the opengl context which is the main method to interact with the window. -To show the created window we need to set the window mode to not be hidden. +When a window handle is created it is not visible by default, so we need to show the window. We also need to set the size we want the window to be shown with. This can be done by setting the window size and mode like so: ```cs +windowComp.SetSize(window, 800, 600); windowComp.SetMode(window, WindowMode.Normal); +``` + +Before we can do any calls to OpenGL we need to do two things. 1. We need to set our created context as the "current" context and 2. Load all of the functions that OpenGL is going to use. +This can quite easily be done like follows: + +```cs +// The the current opengl context and load the bindings. +openglComp.SetCurrentContext(glContext); +GLLoader.LoadBindings(openglComp.GetBindingsContext(glContext)); +``` + +`SetCurrentContext` sets the given OpenGL context as the "current" context. + +And `GLLoader.LoadBindings` loads all OpenGL functions. + + +Now we want to set up our event loop so we can interact with our newly created window. Without any event processing most of the window functions will not happen and no window interaction will be possible. + +A simple event loop might look like the following: +```cs +while (windowComp.IsWindowDestroyed(window) == false) +{ + // This will process events for all windows and + // post those events to the event queue. + windowComp.ProcessEvents(); + + // Render something here +} +``` + +To render something to the window we can do the following: + +```cs +GL.ClearColor(new Color4(64 / 255f, 0, 127 / 255f, 255)); +GL.Clear(ClearBufferMask.ColorBufferBit | ClearBufferMask.DepthBufferBit | ClearBufferMask.StencilBufferBit); + +windowComp.SwapBuffers(window); +``` + +The code shown so far will create a window and then process events while rendering to the window, but running the code there is one crucial flaw to the program. Closing the window doesn't work. + +This is becase closing the window is an event that needs to be responeded to and as we are not handling any events, no action is taken when the user wants to quit the application. So lets fix that! + +First step of handling events is to register a callback to the `EventQueue.EventRaised` event. Do this before creating the window like follows: + +```cs +EventQueue.EventRaised += EventRaised; +``` + +Now we need to define the `EventRaised` function. + +```cs +void EventRaised(PalHandle? handle, PlatformEventType type, EventArgs args) { + +} +``` + +This callback gets a few arguments, the two we are interested in right now are `type` and `args`. +`type` tells us the type of the argument we received and `args` contains data specific to the type of event. + +To handle the quit message we will do the following: + +```cs +void EventRaised(PalHandle? handle, PlatformEventType type, EventArgs args) { + + if (type == PlatformEventType.Close) + { + CloseEventArgs closeArgs = (CloseEventArgs)args; + + // Destroy the window that the user wanted to close. + windowComp.Destroy(closeArgs.Window); + } + +} +``` + +First we check if `type` is `Close` and if it is we cast the event args to `CloseEventArgs`. `CloseEventArgs` contains a `window` property which tells us which window the user wanted to close. +So to close the window we call `IWindowComponent.Destroy(WindowHandle)` to destroy the window. + +This way of handling events generalizes to other event types. First check for the type of event, then cast the `EventArgs` to the type specific for this type of event which gives appropriate information for handling the event. + +The final code we end up with could look like the following: + +```cs +using OpenTK.Core.Platform; +using OpenTK.Graphics; +using OpenTK.Graphics.OpenGL; +using OpenTK.Mathematics; + +namespace Pal2Sample; + +class Sample +{ + static IWindowComponent windowComp = new OpenTK.Platform.Native.Windows.WindowComponent(); + static IOpenGLComponent openglComp = new OpenTK.Platform.Native.Windows.OpenGLComponent(); + + static WindowHandle Window; + static OpenGLContextHandle GLContext; + + public static void Main(string[] args) + { + windowComp.Initialize(PalComponents.Window); + openglComp.Initialize(PalComponents.OpenGL); + + EventQueue.EventRaised += EventRaised; + + OpenGLGraphicsApiHints contextSettings = new OpenGLGraphicsApiHints() + { + // Here different options of the opengl context can be set. + Version = new Version(4, 1), + Profile = OpenGLProfile.Core, + DebugFlag = true, + DepthBits = ContextDepthBits.Depth24, + StencilBits = ContextStencilBits.Stencil8, + }; + + Window = windowComp.Create(contextSettings); + + GLContext = openglComp.CreateFromWindow(Window); + + // Show window + windowComp.SetSize(Window, 800, 600); + windowComp.SetMode(Window, WindowMode.Normal); + + // The the current opengl context and load the bindings. + openglComp.SetCurrentContext(GLContext); + GLLoader.LoadBindings(openglComp.GetBindingsContext(GLContext)); + + while (windowComp.IsWindowDestroyed(Window) == false) + { + // This will process events for all windows and + // post those events to the event queue. + windowComp.ProcessEvents(); + + GL.ClearColor(new Color4(64 / 255f, 0, 127 / 255f, 255)); + GL.Clear(ClearBufferMask.ColorBufferBit | ClearBufferMask.DepthBufferBit | ClearBufferMask.StencilBufferBit); + + windowComp.SwapBuffers(Window); + } + } + + static void EventRaised(PalHandle? handle, PlatformEventType type, EventArgs args) + { + if (type == PlatformEventType.Close) + { + CloseEventArgs closeArgs = (CloseEventArgs)args; + + // Destroy the window that the user wanted to close. + windowComp.Destroy(closeArgs.Window); + } + } +} ``` \ No newline at end of file From 846ad11d06d13279316c30629a7d1eea5e798c94 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julius=20H=C3=A4ger?= Date: Sat, 17 Dec 2022 21:52:41 +0100 Subject: [PATCH 03/38] Add pal2 introduction to table of content --- learn/toc.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/learn/toc.yml b/learn/toc.yml index 16d754b7..4a9a3342 100644 --- a/learn/toc.yml +++ b/learn/toc.yml @@ -41,4 +41,8 @@ - name: "Appendix: Misc. OpenGL" items: - name: Debug Callback - href: appendix_opengl/debug_callback.md \ No newline at end of file + href: appendix_opengl/debug_callback.md +- name: "Platform Abstraction Layer 2" + items: + - name: Introduction + href: pal2/introduction.md \ No newline at end of file From d306ec42fc7eb4089fb2f827539325c18a26ff43 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julius=20H=C3=A4ger?= Date: Mon, 16 Jan 2023 20:02:48 +0100 Subject: [PATCH 04/38] Updated component creation with new cross platform component creation --- learn/pal2/Introduction.md | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/learn/pal2/Introduction.md b/learn/pal2/Introduction.md index 81f0a75e..7fa0d0ed 100644 --- a/learn/pal2/Introduction.md +++ b/learn/pal2/Introduction.md @@ -15,13 +15,10 @@ PAL2 exposes platform APIs through a number of interfaces used to abstract away The first of these interfaces we are going to see is `IWindowComponent` and `IOpenGLComponent` which allows the user to create and interact with windows as well as initialize an OpenGL context and draw graphics to the window. -> [!NOTE] -> Currently there is no way for OpenTK to automatically initialize these interfaces to the correct platform implementations, this capability will be available in the future. - -The following code initializes these interfaces with a windows implementation. +The following code initializes these interfaces with a platform dependent implementation (or throws `NotSupportedException` for not yet supported OSes). ```cs -IWindowComponent windowComp = new OpenTK.Platform.Native.Windows.WindowComponent(); -IOpenGLComponent openglComp = new OpenTK.Platform.Native.Windows.OpenGLComponent(); +IWindowComponent windowComp = new OpenTK.Platform.Native.PlatformComponents.CreateWindowComponent(); +IOpenGLComponent openglComp = new OpenTK.Platform.Native.PlatformComponents.CreateOpenGLComponent(); windowComp.Initialize(PalComponents.Window); openglComp.Initialize(PalComponents.OpenGL); @@ -147,8 +144,8 @@ namespace Pal2Sample; class Sample { - static IWindowComponent windowComp = new OpenTK.Platform.Native.Windows.WindowComponent(); - static IOpenGLComponent openglComp = new OpenTK.Platform.Native.Windows.OpenGLComponent(); + static IWindowComponent windowComp = new OpenTK.Platform.Native.PlatformComponents.CreateWindowComponent(); + static IOpenGLComponent openglComp = new OpenTK.Platform.Native.PlatformComponents.CreateOpenGLComponent(); static WindowHandle Window; static OpenGLContextHandle GLContext; From a2ff87556eed3f4f0bd7372387e343db0703da87 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julius=20H=C3=A4ger?= Date: Mon, 16 Jan 2023 20:28:06 +0100 Subject: [PATCH 05/38] Added breif tutorial on platform specific settings --- learn/pal2/Platform-Specific-Settings.md | 15 +++++++++++++++ learn/toc.yml | 4 +++- 2 files changed, 18 insertions(+), 1 deletion(-) create mode 100644 learn/pal2/Platform-Specific-Settings.md diff --git a/learn/pal2/Platform-Specific-Settings.md b/learn/pal2/Platform-Specific-Settings.md new file mode 100644 index 00000000..98cb6bc7 --- /dev/null +++ b/learn/pal2/Platform-Specific-Settings.md @@ -0,0 +1,15 @@ +# Introduction + +PAL 2 consists of a number of components that allows the user to create windows and interact with the user system. These interfaces are designed to work cross-platform. But sometimes there are functions and settings that are so platform specific that these is no good cross-platform API for them. + +Platform specific component APIs can be accessed by casting the component interface to it's concrete platform type. For example, `IClipboardComponent` has windows specific settings related to cloud clipboard syncing and history, which can be accessed like follows: + +```cs +IClipboardComponent clipboardComp = ...; + +// By using 'as' and ?. we can run this code on all platforms +// but the effects will only take effect on windows. +(clipboardComp as Native.Windows.WindowComponent)?.CanUploadToCloudClipboard = false; +(clipboardComp as Native.Windows.WindowComponent)?.CanIncludeInClipboardHistory = true; + +``` \ No newline at end of file diff --git a/learn/toc.yml b/learn/toc.yml index 4a9a3342..0052e852 100644 --- a/learn/toc.yml +++ b/learn/toc.yml @@ -45,4 +45,6 @@ - name: "Platform Abstraction Layer 2" items: - name: Introduction - href: pal2/introduction.md \ No newline at end of file + href: pal2/introduction.md + - name: Platform specific settings + href: pal2/platform-specific-settings.md \ No newline at end of file From a5053c0a403437087d4b98f526b185327b5ff8ce Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julius=20H=C3=A4ger?= Date: Mon, 6 Feb 2023 18:48:21 +0100 Subject: [PATCH 06/38] Event documentation --- learn/pal2/Introduction.md | 21 ++-- learn/pal2/event-handling.md | 187 +++++++++++++++++++++++++++++++++ learn/pal2/window-component.md | 3 + learn/toc.yml | 4 + opentk | 2 +- 5 files changed, 205 insertions(+), 12 deletions(-) create mode 100644 learn/pal2/event-handling.md create mode 100644 learn/pal2/window-component.md diff --git a/learn/pal2/Introduction.md b/learn/pal2/Introduction.md index 7fa0d0ed..27fa0b0f 100644 --- a/learn/pal2/Introduction.md +++ b/learn/pal2/Introduction.md @@ -103,31 +103,32 @@ EventQueue.EventRaised += EventRaised; Now we need to define the `EventRaised` function. ```cs -void EventRaised(PalHandle? handle, PlatformEventType type, EventArgs args) { +void EventRaised(PalHandle? handle, PlatformEventType type, EventArgs args) +{ } ``` +> [!WARNING] +> The arguments of the event callback are likely to change. + This callback gets a few arguments, the two we are interested in right now are `type` and `args`. `type` tells us the type of the argument we received and `args` contains data specific to the type of event. To handle the quit message we will do the following: ```cs -void EventRaised(PalHandle? handle, PlatformEventType type, EventArgs args) { - - if (type == PlatformEventType.Close) +void EventRaised(PalHandle? handle, PlatformEventType type, EventArgs args) +{ + if (args is CloseEventArgs closeArgs) { - CloseEventArgs closeArgs = (CloseEventArgs)args; - // Destroy the window that the user wanted to close. windowComp.Destroy(closeArgs.Window); } - } ``` -First we check if `type` is `Close` and if it is we cast the event args to `CloseEventArgs`. `CloseEventArgs` contains a `window` property which tells us which window the user wanted to close. +We use pattern matching `is` on `args` to check if it is of type `CloseEventArgs`. `CloseEventArgs` contains a `window` property which tells us which window the user wanted to close. So to close the window we call `IWindowComponent.Destroy(WindowHandle)` to destroy the window. This way of handling events generalizes to other event types. First check for the type of event, then cast the `EventArgs` to the type specific for this type of event which gives appropriate information for handling the event. @@ -194,10 +195,8 @@ class Sample static void EventRaised(PalHandle? handle, PlatformEventType type, EventArgs args) { - if (type == PlatformEventType.Close) + if (args is CloseEventArgs closeArgs) { - CloseEventArgs closeArgs = (CloseEventArgs)args; - // Destroy the window that the user wanted to close. windowComp.Destroy(closeArgs.Window); } diff --git a/learn/pal2/event-handling.md b/learn/pal2/event-handling.md new file mode 100644 index 00000000..2eea3160 --- /dev/null +++ b/learn/pal2/event-handling.md @@ -0,0 +1,187 @@ + +# Introduction + +OpenTK provides a number of events that can be used to respond to user actions or system changes. These are exposed through a global event queue. + +To register for events all you have to do is register to the `EventQueue.EventRaised` event. The handler should look like this: +```cs +void EventRaised(PalHandle? handle, PlatformEventType type, EventArgs args) +{ + +} +``` +and is registered as follows: +```cs +EventQueue.EventRaised += EventRaised; +``` + +With this we are ready to handle some events! + +The first event most applications are going to want to handle is the `Close` event. We use pattern matching to see if `args` is of the type `CloseEventArgs` which tells us this is a `Close` event. + +```cs +void EventRaised(PalHandle? handle, PlatformEventType type, EventArgs args) +{ + if (args is CloseEventArgs close) + { + // Destroy the window that the user wanted to close. + windowComp.Destroy(closeArgs.Window); + } +} +``` + +# Window Events + +Here follows a list of events that extend [WindowEventArgs](xref:OpenTK.Core.Platform.WindowEventArgs) and what they mean. + +## Close + +> Enum: `PlatformEventType.Close` + +> Args: [`CloseEventArgs`](xref:OpenTK.Core.Platform.CloseEventArgs) + +This event is triggered when the user presses the exit button of the window. `CloseEventArgs.Window` contains the handle to the window the user wanted to close. + +## Focus + +> Enum: `PlatformEventType.Focus` + +> Args: [`FocusEventArgs`](xref:OpenTK.Core.Platform.FocusEventArgs) + +This event is triggered when a window gains or loses input focus. `FocusEventArgs.GotFocus` tells if the window got or lost focus. + +## WindowMove + +> Enum: `PlatformEventType.WindowMove` + +> Args: [`WindowMoveEventArgs`](xref:OpenTK.Core.Platform.WindowMoveEventArgs) + +This event is triggered when a window has its position changed on screen. + +## WindowResize + +> Enum: `PlatformEventType.WindowResize` + +> Args: [`WindowResizeEventArgs`](xref:OpenTK.Core.Platform.WindowResizeEventArgs) + +This event is triggered when a window has its size changed on screen. + +## WindowModeChange + +> Enum: `PlatformEventType.WindowModeChange` + +> Args: [`WindowModeChangeEventArgs`](xref:OpenTK.Core.Platform.WindowModeChangeEventArgs) + +This event is triggered when the window mode of a window changes. + +## MouseEnter + +> Enum: `PlatformEventType.MouseEnter` + +> Args: [`MouseEnterEventArgs`](xref:OpenTK.Core.Platform.MouseEnterEventArgs) + +This event is triggered when the mouse cursor enters or exits a window. + +## MouseMove + +> Enum: `PlatformEventType.MouseMove` + +> Args: [`MouseMoveEventArgs`](xref:OpenTK.Core.Platform.MouseMoveEventArgs) + +This event is triggered when the mouse moves. + +## MouseDown + +> Enum: `PlatformEventType.MouseDown` + +> Args: [`MouseDownEventArgs`](xref:OpenTK.Core.Platform.MouseDownEventArgs) + +This event is triggered when a mouse button is pressed. + +## MouseUp + +> Enum: `PlatformEventType.MouseUp` + +> Args: [`MouseUpEventArgs`](xref:OpenTK.Core.Platform.MouseUpEventArgs) + +This event is triggered when a mouse button is released. + +## Scroll + +> Enum: `PlatformEventType.Scroll` + +> Args: [`ScrollEventArgs`](xref:OpenTK.Core.Platform.ScrollEventArgs) + +This event is triggered when the scrollwheel on a mouse is used. + +## KeyDown + +> Enum: `PlatformEventType.KeyDown` + +> Args: [`KeyDownEventArgs`](xref:OpenTK.Core.Platform.KeyDownEventArgs) + +This event is triggered when a keyboard key is pressed. + +Do not use this event to handle typing, use the [TextInput event](#textinput) instead. + +## KeyUp + +> Enum: `PlatformEventType.KeyUp` + +> Args: [`KeyUpEventArgs`](xref:OpenTK.Core.Platform.KeyUpEventArgs) + +This event is triggered when a keyboard key is released. + +Do not use this event to handle typing, use the [TextInput event](#textinput) instead. + +## TextInput + +> Enum: `PlatformEventType.TextInput` + +> Args: [`TextInputEventArgs`](xref:OpenTK.Core.Platform.TextInputEventArgs) + +This event is triggered when the user has typed text. + +## TextEditing + +> Enum: `PlatformEventType.TextEditing` + +> Args: [`TextEditingEventArgs`](xref:OpenTK.Core.Platform.TextEditingEventArgs) + +This event is triggered when the user is composing text using something like IME (e.g. Chinese, Japanese, or Korean). + +## FileDrop + +> Enum: `PlatformEventType.FileDrop` + +> Args: [`FileDropEventArgs`](xref:OpenTK.Core.Platform.FileDropEventArgs) + +This event is triggered when a user drags files into a window. + +# Non-window events + +Here follows a list of non-window related events. + +## ThemeChange + +> Enum: `PlatformEventType.ThemeChange` + +> Args: [`ThemeChangeEventArgs`](xref:OpenTK.Core.Platform.ThemeChangeEventArgs) + +This event is triggered when a user changes the preferred theme. + +## DisplayConnectionChanged + +> Enum: `PlatformEventType.DisplayConnectionChanged` + +> Args: [`DisplayConnectionChangedEventArgs`](xref:OpenTK.Core.Platform.DisplayConnectionChangedEventArgs) + +This event is triggered when a display is connected or disconnected from the system. + +## PowerStateChange + +> Enum: `PlatformEventType.PowerStateChange` + +> Args: [`PowerStateChangeEventArgs`](xref:OpenTK.Core.Platform.PowerStateChangeEventArgs) + +This event is triggered when the power state of the system changes. diff --git a/learn/pal2/window-component.md b/learn/pal2/window-component.md new file mode 100644 index 00000000..b84c2021 --- /dev/null +++ b/learn/pal2/window-component.md @@ -0,0 +1,3 @@ + +The window component exposes functions related to creating, managing and deleting windows. + diff --git a/learn/toc.yml b/learn/toc.yml index 0052e852..8e722bc6 100644 --- a/learn/toc.yml +++ b/learn/toc.yml @@ -46,5 +46,9 @@ items: - name: Introduction href: pal2/introduction.md + - name: Event Handling + href: pal2/event-handling.md + - name: Window Component + href: pal2/window-component.md - name: Platform specific settings href: pal2/platform-specific-settings.md \ No newline at end of file diff --git a/opentk b/opentk index cacfd661..9824d74d 160000 --- a/opentk +++ b/opentk @@ -1 +1 @@ -Subproject commit cacfd661df21f104db6f1a12d37215484ebe5cb5 +Subproject commit 9824d74d6b28fc5778f39b3306bea63e7880cde9 From dc17e436ca26dd55cb6f2c0d81b7c9f951da57e5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julius=20H=C3=A4ger?= Date: Mon, 6 Feb 2023 18:57:30 +0100 Subject: [PATCH 07/38] fixed event links --- learn/pal2/event-handling.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/learn/pal2/event-handling.md b/learn/pal2/event-handling.md index 2eea3160..d40ba467 100644 --- a/learn/pal2/event-handling.md +++ b/learn/pal2/event-handling.md @@ -94,7 +94,7 @@ This event is triggered when the mouse moves. > Enum: `PlatformEventType.MouseDown` -> Args: [`MouseDownEventArgs`](xref:OpenTK.Core.Platform.MouseDownEventArgs) +> Args: [`MouseButtonDownEventArgs`](xref:OpenTK.Core.Platform.MouseButtonDownEventArgs) This event is triggered when a mouse button is pressed. @@ -102,7 +102,7 @@ This event is triggered when a mouse button is pressed. > Enum: `PlatformEventType.MouseUp` -> Args: [`MouseUpEventArgs`](xref:OpenTK.Core.Platform.MouseUpEventArgs) +> Args: [`MouseButtonUpEventArgs`](xref:OpenTK.Core.Platform.MouseButtonUpEventArgs) This event is triggered when a mouse button is released. From b94c546ff72943d337bbf6f915b9cb51bf5906a2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julius=20H=C3=A4ger?= Date: Mon, 6 Feb 2023 19:44:47 +0100 Subject: [PATCH 08/38] Edited pal2 intro --- learn/pal2/Introduction.md | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/learn/pal2/Introduction.md b/learn/pal2/Introduction.md index 27fa0b0f..774bcc89 100644 --- a/learn/pal2/Introduction.md +++ b/learn/pal2/Introduction.md @@ -17,8 +17,10 @@ create and interact with windows as well as initialize an OpenGL context and dra The following code initializes these interfaces with a platform dependent implementation (or throws `NotSupportedException` for not yet supported OSes). ```cs -IWindowComponent windowComp = new OpenTK.Platform.Native.PlatformComponents.CreateWindowComponent(); -IOpenGLComponent openglComp = new OpenTK.Platform.Native.PlatformComponents.CreateOpenGLComponent(); +using OpenTK.Platform.Native; + +IWindowComponent windowComp = new PlatformComponents.CreateWindowComponent(); +IOpenGLComponent openglComp = new PlatformComponents.CreateOpenGLComponent(); windowComp.Initialize(PalComponents.Window); openglComp.Initialize(PalComponents.OpenGL); @@ -140,13 +142,14 @@ using OpenTK.Core.Platform; using OpenTK.Graphics; using OpenTK.Graphics.OpenGL; using OpenTK.Mathematics; +using OpenTK.Platform.Native; namespace Pal2Sample; class Sample { - static IWindowComponent windowComp = new OpenTK.Platform.Native.PlatformComponents.CreateWindowComponent(); - static IOpenGLComponent openglComp = new OpenTK.Platform.Native.PlatformComponents.CreateOpenGLComponent(); + static IWindowComponent windowComp = new PlatformComponents.CreateWindowComponent(); + static IOpenGLComponent openglComp = new PlatformComponents.CreateOpenGLComponent(); static WindowHandle Window; static OpenGLContextHandle GLContext; From 0736ee842e3208c6115acc009e1125e4f5d3d9ee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julius=20H=C3=A4ger?= Date: Mon, 6 Feb 2023 19:47:30 +0100 Subject: [PATCH 09/38] Changed notice --- learn/pal2/Introduction.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/learn/pal2/Introduction.md b/learn/pal2/Introduction.md index 774bcc89..3c82b950 100644 --- a/learn/pal2/Introduction.md +++ b/learn/pal2/Introduction.md @@ -5,8 +5,7 @@ Feedback is encouraged. > [!IMPORTANT] -> Currently PAL2 is basically only usable on windows. -This will change as it is developed more. +> Currently PAL2 is basically feature complete on windows, and only some parts work on x11, macos is not implemented. The final release will also support macos. ## Setup From bdd7f0be8ce5bbc3706df1b0de6aafe0148900cb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julius=20H=C3=A4ger?= Date: Mon, 6 Feb 2023 21:22:06 +0100 Subject: [PATCH 10/38] Newest changes --- opentk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/opentk b/opentk index 9824d74d..c1fd7400 160000 --- a/opentk +++ b/opentk @@ -1 +1 @@ -Subproject commit 9824d74d6b28fc5778f39b3306bea63e7880cde9 +Subproject commit c1fd7400b82b44bde40558aec4015552a6e5666c From 6dcfec5af0f8958860a8adc9382a338ea0c178c5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julius=20H=C3=A4ger?= Date: Tue, 7 Feb 2023 21:45:43 +0100 Subject: [PATCH 11/38] Updated to latest --- opentk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/opentk b/opentk index c1fd7400..80fd6fee 160000 --- a/opentk +++ b/opentk @@ -1 +1 @@ -Subproject commit c1fd7400b82b44bde40558aec4015552a6e5666c +Subproject commit 80fd6fee4e0eb4fd900aa1bbeed168c34a82b4c6 From badf50e7d7b3ab41f4277350cd76b384f9c2015e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julius=20H=C3=A4ger?= Date: Mon, 13 Feb 2023 20:15:33 +0100 Subject: [PATCH 12/38] Updated to latest pal2 changes --- opentk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/opentk b/opentk index 80fd6fee..295a4bfe 160000 --- a/opentk +++ b/opentk @@ -1 +1 @@ -Subproject commit 80fd6fee4e0eb4fd900aa1bbeed168c34a82b4c6 +Subproject commit 295a4bfe1f98ae306e75cd417daee5af978a7c87 From 023c8cf06d5bb939ca4bf8ce42900f4b667247a3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julius=20H=C3=A4ger?= Date: Mon, 13 Feb 2023 21:07:16 +0100 Subject: [PATCH 13/38] Update --- opentk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/opentk b/opentk index 295a4bfe..3fe81794 160000 --- a/opentk +++ b/opentk @@ -1 +1 @@ -Subproject commit 295a4bfe1f98ae306e75cd417daee5af978a7c87 +Subproject commit 3fe8179469980b8417bb38c24c54d36e7cecef93 From f1ba8b7746eda9a3cfe6bf8a281fe293bb13723b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julius=20H=C3=A4ger?= Date: Mon, 13 Feb 2023 21:35:37 +0100 Subject: [PATCH 14/38] Update --- opentk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/opentk b/opentk index 3fe81794..2f8d5626 160000 --- a/opentk +++ b/opentk @@ -1 +1 @@ -Subproject commit 3fe8179469980b8417bb38c24c54d36e7cecef93 +Subproject commit 2f8d56267527b4fe3ba9b6c4b3048645f1bbf134 From 929ebf093d5cca0e58377c4f362ae950e20345de Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julius=20H=C3=A4ger?= Date: Wed, 15 Feb 2023 21:29:42 +0100 Subject: [PATCH 15/38] Update --- opentk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/opentk b/opentk index 2f8d5626..10dd0b8f 160000 --- a/opentk +++ b/opentk @@ -1 +1 @@ -Subproject commit 2f8d56267527b4fe3ba9b6c4b3048645f1bbf134 +Subproject commit 10dd0b8fe2c29db77c20c82474c3c0f2ff266670 From 3e16447a86bdabd1965837471f2e2e6d0e827543 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julius=20H=C3=A4ger?= Date: Mon, 17 Apr 2023 15:55:09 +0200 Subject: [PATCH 16/38] Updated notice in the pal2 tutorial --- learn/pal2/Introduction.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/learn/pal2/Introduction.md b/learn/pal2/Introduction.md index 3c82b950..00157f93 100644 --- a/learn/pal2/Introduction.md +++ b/learn/pal2/Introduction.md @@ -5,7 +5,7 @@ Feedback is encouraged. > [!IMPORTANT] -> Currently PAL2 is basically feature complete on windows, and only some parts work on x11, macos is not implemented. The final release will also support macos. +> Currently PAL2 is basically feature complete on Windows, and many parts work on x11, and a macos backend is not implemented. There is an SDL backend that works on both Windows and linux, and should in theory work on macos but the SDL binaries nuget package doesn't have macos binaries yet. The final release will also support macos. ## Setup From 560499d0b63a2ec6f0beefc2f7a8de6539f4dfe4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julius=20H=C3=A4ger?= Date: Sat, 24 Jun 2023 23:36:07 +0200 Subject: [PATCH 17/38] Updated to latest PAL2 work. --- opentk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/opentk b/opentk index af956fde..5307e6c5 160000 --- a/opentk +++ b/opentk @@ -1 +1 @@ -Subproject commit af956fde6e9fc0da684dc557cd85bf8db9084858 +Subproject commit 5307e6c5cdea9439c8e3af1c0334ff414245d9e3 From 0a9636418607d11f8d20e1feb6463f2da1d8d0c7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julius=20H=C3=A4ger?= Date: Wed, 28 Jun 2023 21:12:34 +0200 Subject: [PATCH 18/38] Updated to latest pal2 work --- opentk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/opentk b/opentk index 5307e6c5..4538dd8b 160000 --- a/opentk +++ b/opentk @@ -1 +1 @@ -Subproject commit 5307e6c5cdea9439c8e3af1c0334ff414245d9e3 +Subproject commit 4538dd8b64211c19ee8a3073170821661cc692ca From 92c3ad2c76b3436e2223a53fdbf08089d4b8d244 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julius=20H=C3=A4ger?= Date: Wed, 28 Jun 2023 21:39:48 +0200 Subject: [PATCH 19/38] Updated to latest docfx --- .config/dotnet-tools.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/dotnet-tools.json b/.config/dotnet-tools.json index 81d6d59b..a873b6b3 100644 --- a/.config/dotnet-tools.json +++ b/.config/dotnet-tools.json @@ -3,7 +3,7 @@ "isRoot": true, "tools": { "docfx": { - "version": "2.65.2", + "version": "2.67.5", "commands": [ "docfx" ] From f6c157339bb9cfb4632e820f6749157455801bcc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julius=20H=C3=A4ger?= Date: Sun, 1 Oct 2023 20:56:14 +0200 Subject: [PATCH 20/38] Update to latest pal2 work --- opentk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/opentk b/opentk index 4538dd8b..309900a7 160000 --- a/opentk +++ b/opentk @@ -1 +1 @@ -Subproject commit 4538dd8b64211c19ee8a3073170821661cc692ca +Subproject commit 309900a7595df9f2e0ced88eec06e711aa381c6b From 874c08b22aa21991bca5db1fb7329733c638b496 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julius=20H=C3=A4ger?= Date: Fri, 13 Oct 2023 23:49:03 +0200 Subject: [PATCH 21/38] Updated to latest pal2 work. --- opentk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/opentk b/opentk index 309900a7..7fdfe4bb 160000 --- a/opentk +++ b/opentk @@ -1 +1 @@ -Subproject commit 309900a7595df9f2e0ced88eec06e711aa381c6b +Subproject commit 7fdfe4bb8c27fedb983ba1187655cad69bcf055c From 4090b33889df6245678a365aee70fabd9c079091 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julius=20H=C3=A4ger?= Date: Sat, 14 Oct 2023 02:59:46 +0200 Subject: [PATCH 22/38] Work on documenting more things about PAL2. --- .config/dotnet-tools.json | 2 +- filterConfig.yml | 10 +- learn/pal2/ANGLE.md | 6 + learn/pal2/Components.md | 20 +++ learn/pal2/Introduction.md | 27 ++-- learn/pal2/Platform-Specific-Settings.md | 43 +++++- learn/pal2/event-handling.md | 171 ++++------------------- learn/pal2/window-component.md | 3 - learn/toc.yml | 12 +- 9 files changed, 123 insertions(+), 171 deletions(-) create mode 100644 learn/pal2/ANGLE.md create mode 100644 learn/pal2/Components.md delete mode 100644 learn/pal2/window-component.md diff --git a/.config/dotnet-tools.json b/.config/dotnet-tools.json index a873b6b3..08cb655d 100644 --- a/.config/dotnet-tools.json +++ b/.config/dotnet-tools.json @@ -3,7 +3,7 @@ "isRoot": true, "tools": { "docfx": { - "version": "2.67.5", + "version": "2.71.0", "commands": [ "docfx" ] diff --git a/filterConfig.yml b/filterConfig.yml index 27fd4911..a879ee8d 100644 --- a/filterConfig.yml +++ b/filterConfig.yml @@ -1,13 +1,9 @@ apiRules: - exclude: - uidRegex: ^OpenTK\.Graphics\.ES11 + uidRegex: ^OpenTK\.Graphics\.OpenGLES1 - exclude: - uidRegex: ^OpenTK\.Graphics\.ES20 -- exclude: - uidRegex: ^OpenTK\.Graphics\.ES30 -- exclude: - uidRegex: ^OpenTK\.Graphics\.GL + uidRegex: ^OpenTK\.Graphics\.OpenGLES3 - exclude: uidRegex: ^OpenTK\.Graphics\.OpenGL - exclude: - uidRegex: ^OpenTK\.Graphics\.OpenGL4 + uidRegex: ^OpenTK\.Graphics\.OpenGL\.Compatibility diff --git a/learn/pal2/ANGLE.md b/learn/pal2/ANGLE.md new file mode 100644 index 00000000..9d653a08 --- /dev/null +++ b/learn/pal2/ANGLE.md @@ -0,0 +1,6 @@ +# Almost Native Graphics Layer Engine ([ANGLE](https://chromium.googlesource.com/angle/angle/+/main/README.md)) +ANGLE allows for the creation of compliant OpenGL ES contexts running on underlying platform APIs. Most often used by browsers to provide WebGL, but also useful for writing code that is portable between desktop applications and mobile phones. PAL2 has built-in support for ANGLE using [`ANGLEOpenGLComponent`](xref:OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent). [`PlatformComponents.PreferANGLE`]() can be used to prefer loading `ANGLEOpenGLComponent` over the native `IOpenGLComponent`. Contexts created by `ANGLEOpenGLComponent` will be OpenGL ES (**not** Desktop OpenGL contexts) contexts of thee requested version. + +To be able to run `ANGLEOpenGLComponent` the ANGLE native dependencies need to be available to load. On windows those are: `libEGL.dll`, `libGLESv1_CM.dll`, `libGLESv2.dll`, and `d3dcompiler_47.dll` (as of 2023-10-14). + +For other platforms such as linux and macOS other dependencies are needed. These will be documented in time, and ideally a nuget package with the native ANGLE dependencies will be created. diff --git a/learn/pal2/Components.md b/learn/pal2/Components.md new file mode 100644 index 00000000..33ebf91d --- /dev/null +++ b/learn/pal2/Components.md @@ -0,0 +1,20 @@ +# Components + +PAL2 is build on top of a set of components that are responsible for their own part of the platform API. The idea is to allow partial implementations of platforms to easily be created and allow support for new platforms to be added in steps. It also groups related APIs into a specific namespace. + +There are currently 10 components in PAL2. + +|Component|Description| +|---------|-----------| +|[`IWindowComponent`](xref:OpenTK.Core.Platform.IWindowComponent)|This component is responsible for creating, destroying and managing windows. It is also responsible for processing events.| +|[`IOpenGLComponent`](xref:OpenTK.Core.Platform.IOpenGLComponent)|This components is responsible for creating and managing OpenGL contexts. `SwapBuffers()` lives here.| +|[`IDisplayComponent`](xref:OpenTK.Core.Platform.IDisplayComponent)|This component contains functions for retrieving information about displays (aka, monitors or screens) connected to the system. Allows for enumeration of video modes etc. | +|[`ICursorComponent`](xref:OpenTK.Core.Platform.ICursorComponent)|This component is responsible for loading and managing cursor images that can be set as the mouse cursor.| +|[`IIconComponent`](xref:OpenTK.Core.Platform.IIconComponent)|This component is responsible for loading and managing icon images that can be used as window icons.| +|[`IMouseComponent`](xref:OpenTK.Core.Platform.IMouseComponent)|This component allows for getting and setting of the mouse cursor position.| +|[`IKeyboardComponent`](xref:OpenTK.Core.Platform.IKeyboardComponent)|This component is responsible for translating platform dependent keycodes and scancodes to a cross platform representation. This component also exposes information about keyboard layout and has functions for IME input.| +|[`IJoystickComponent`](xref:OpenTK.Core.Platform.IJoystickComponent)|This component is responsible for exposing joystick input and interfacing with joystick controllers.| +|[`IClipboardComponent`](xref:OpenTK.Core.Platform.IClipboardComponent)|This component is used to read and write to the clipboard.| +|[`IShellComponent`](xref:OpenTK.Core.Platform.IShellComponent)|This component exposes functions for interacting with the system more generally. Things like battery status and user prefered theme is exposed here.| + +Some platform implementation of these interfaces contains platform specific functions that can be called. A complete description of these function can be found in [Platform Spcific Settings](Platform-Specific-Settings.md). diff --git a/learn/pal2/Introduction.md b/learn/pal2/Introduction.md index 00157f93..41ebba41 100644 --- a/learn/pal2/Introduction.md +++ b/learn/pal2/Introduction.md @@ -2,10 +2,10 @@ > [!IMPORTANT] > PAL2 is under early development and many things might change in the future. -Feedback is encouraged. +Feedback is wanted! > [!IMPORTANT] -> Currently PAL2 is basically feature complete on Windows, and many parts work on x11, and a macos backend is not implemented. There is an SDL backend that works on both Windows and linux, and should in theory work on macos but the SDL binaries nuget package doesn't have macos binaries yet. The final release will also support macos. +> Currently PAL2 is basically feature complete on Windows, and many parts work on x11, and a few features work on macos. There is an SDL backend that works on both Windows and linux, and should in theory work on macos but the SDL binaries nuget package doesn't have macos binaries yet. ## Setup @@ -50,7 +50,9 @@ This returns a handle to the window and the opengl context which is the main met When a window handle is created it is not visible by default, so we need to show the window. We also need to set the size we want the window to be shown with. This can be done by setting the window size and mode like so: ```cs +// Set the size of the window windowComp.SetSize(window, 800, 600); +// Bring the window out of the default Hidden window mode windowComp.SetMode(window, WindowMode.Normal); ``` @@ -63,20 +65,25 @@ openglComp.SetCurrentContext(glContext); GLLoader.LoadBindings(openglComp.GetBindingsContext(glContext)); ``` -`SetCurrentContext` sets the given OpenGL context as the "current" context. +[`IOpenGLComponent.SetCurrentContext`](xref:OpenTK.Core.Platform.IOpenGLComponent.SetCurrentContext(OpenTK.Core.Platform.OpenGLContextHandle)) sets the given OpenGL context as the "current" context. -And `GLLoader.LoadBindings` loads all OpenGL functions. +And [`GLLoader.LoadBindings`](xref:OpenTK.Graphics.GLLoader.LoadBindings(OpenTK.IBindingsContext)) loads all OpenGL functions. Now we want to set up our event loop so we can interact with our newly created window. Without any event processing most of the window functions will not happen and no window interaction will be possible. A simple event loop might look like the following: ```cs -while (windowComp.IsWindowDestroyed(window) == false) +while (true) { // This will process events for all windows and // post those events to the event queue. windowComp.ProcessEvents(); + // Check if the window was destroyed after processing events. + if (windowComp.IsWindowDestroyed(window)) + { + break; + } // Render something here } @@ -88,7 +95,7 @@ To render something to the window we can do the following: GL.ClearColor(new Color4(64 / 255f, 0, 127 / 255f, 255)); GL.Clear(ClearBufferMask.ColorBufferBit | ClearBufferMask.DepthBufferBit | ClearBufferMask.StencilBufferBit); -windowComp.SwapBuffers(window); +openglComp.SwapBuffers(glContext); ``` The code shown so far will create a window and then process events while rendering to the window, but running the code there is one crucial flaw to the program. Closing the window doesn't work. @@ -191,7 +198,7 @@ class Sample GL.ClearColor(new Color4(64 / 255f, 0, 127 / 255f, 255)); GL.Clear(ClearBufferMask.ColorBufferBit | ClearBufferMask.DepthBufferBit | ClearBufferMask.StencilBufferBit); - windowComp.SwapBuffers(Window); + openglComp.SwapBuffers(GLContext); } } @@ -204,4 +211,8 @@ class Sample } } } -``` \ No newline at end of file +``` + +## What's next? + +Now that you have a basic program working you can look more into the different components of PAL2 here: [Components](Components.md) or alternatively read more about the different evens that PAL2 supports: [Event Handling](Event-Handling.md). \ No newline at end of file diff --git a/learn/pal2/Platform-Specific-Settings.md b/learn/pal2/Platform-Specific-Settings.md index 98cb6bc7..ccbfef46 100644 --- a/learn/pal2/Platform-Specific-Settings.md +++ b/learn/pal2/Platform-Specific-Settings.md @@ -12,4 +12,45 @@ IClipboardComponent clipboardComp = ...; (clipboardComp as Native.Windows.WindowComponent)?.CanUploadToCloudClipboard = false; (clipboardComp as Native.Windows.WindowComponent)?.CanIncludeInClipboardHistory = true; -``` \ No newline at end of file +``` + +# Windows +The following is a list of windows specific settings and functions. + +|Function|Description| +|--------|-----------| +|`ShellComponent`| | +|[`ShellComponent.SetImmersiveDarkMode`](xref:OpenTK.Platform.Native.Windows.ShellComponent.SetImmersiveDarkMode(OpenTK.Core.Platform.WindowHandle,System.Boolean))|Sets the `DWMWA_USE_IMMERSIVE_DARK_MODE` flag on the window causing the titlebar be rendered in dark mode colors. This is only officially supported from Window 11 Build 220000, but can sometimes work on Windows 10.| +|[`ShellComponent.SetCaptionTextColor`](xref:OpenTK.Platform.Native.Windows.ShellComponent.SetCaptionTextColor(OpenTK.Core.Platform.WindowHandle,OpenTK.Color3{OpenTK.Rgb}))|Used to set the text color in the windows titlebar. This is only officially supported from Window 11 Build 220000, but can sometimes work on Windows 10.| +|[`ShellComponent.SetCaptionColor`](xref:OpenTK.Platform.Native.Windows.ShellComponent.SetCaptionColor(OpenTK.Core.Platform.WindowHandle,OpenTK.Color3{OpenTK.Rgb}))|Used to set the color of the window titlebar. This is only officially supported from Window 11 Build 220000, but can sometimes work on Windows 10.| +|`IconComponent`| | +|[`IconComponent.CreateFromIcoFile`](xref:OpenTK.Platform.Native.Windows.IconComponent.CreateFromIcoFile(System.String))|Used to create an `IconHandle` from a `.ico` file. An icon created using this function will be able to dynamically pick resolution if the file contains multiple resolutions.| +|[`IconComponent.CreateFromIcoResource(byte[])`](xref:OpenTK.Platform.Native.Windows.IconComponent.CreateFromIcoResource(System.Byte[]))|Used to create an `IconHandle` from a `.ico` file embedded as a `.resx` resource. An Icon created using this function will **not** be able to dynamically pick resolution.| +|[`IconComponent.CreateFromIcoResource(String)`](xref:OpenTK.Platform.Native.Windows.IconComponent.CreateFromIcoResource(System.String))|Used to create an `IconHandle` from a win32 embedded resource created using an `.rc` file and ``.| +|[`IconComponent.GetBitmapData`](xref:OpenTK.Platform.Native.Windows.IconComponent.GetBitmapData(OpenTK.Core.Platform.IconHandle,System.Span{System.Byte}))|Allows for extracting icon data. Works with system icons.| +|[`IconComponent.GetBitmapByteSize`](xref:OpenTK.Platform.Native.Windows.IconComponent.GetBitmapByteSize(OpenTK.Core.Platform.IconHandle))|Returns the size in bytes of the bitmap data. For use with [`IconComponent.GetBitmapData`](xref:OpenTK.Platform.Native.Windows.IconComponent.GetBitmapData(OpenTK.Core.Platform.IconHandle,System.Span{System.Byte})).| +|`CursorComponent`| | +|[`CursorComponent.CreateFromCurFile`](xref:OpenTK.Platform.Native.Windows.CursorComponent.CreateFromCurFile(System.String))|Used to create a `CursorHandle` from a `.cur` file.| +|[`CursorComponent.CreateFromCurResorce(byte[])`](xref:OpenTK.Platform.Native.Windows.CursorComponent.CreateFromCurResorce(System.Byte[]))|Used to create a `CursorHandle` from a `.cur` file embedded in a `.resx` file. Does not support `.ani` files.| +|[`CursorComponent.CreateFromCurResorce(String)`](xref:OpenTK.Platform.Native.Windows.CursorComponent.CreateFromCurResorce(System.String))|Used to create a `CursorHandle` from a `.cur` file embedded in a `.rc` file and using ``.| +|[`CursorComponent.GetImage`](xref:OpenTK.Platform.Native.Windows.CursorComponent.GetImage(OpenTK.Core.Platform.CursorHandle,System.Span{System.Byte}))|Allows for extracting cursor data. Works with system cursors.| +|`ClipboardComponent`| | +|[`ClipboardComponent.CanIncludeInClipboardHistory`](xref:OpenTK.Platform.Native.Windows.ClipboardComponent.CanIncludeInClipboardHistory)|Toggles whether clipboard data set using [`SetClipboardText`](xref:OpenTK.Platform.Native.Windows.ClipboardComponent.SetClipboardText(System.String)) is allowed to be stored in the clipboard history.| +|[`ClipboardComponent.CanUploadToCloudClipboard`](xref:OpenTK.Platform.Native.Windows.ClipboardComponent.CanUploadToCloudClipboard)|Toggles whether clipboard data set using [`SetClipboardText`](xref:OpenTK.Platform.Native.Windows.ClipboardComponent.SetClipboardText(System.String)) can be by synced between the users devices.| +|[`ClipboardComponent.SetClipboardAudio`](xref:OpenTK.Platform.Native.Windows.ClipboardComponent.SetClipboardAudio(OpenTK.Core.Platform.AudioData))|Allows uploading audio data to the clipboard. Audio clipboard support is generally poorly supported by audio applications.| +|[`ClipboardComponent.SetClipboardBitmap`](xref:OpenTK.Platform.Native.Windows.ClipboardComponent.SetClipboardBitmap(OpenTK.Core.Platform.Bitmap))|Allows uploading image data to the clipboard.| + +# Linux X11 +The following is a list of linux x11 specific settings and functions. + +|Function|Description| +|--------|-----------| +|`WindowComponent`| | +|[`X11WindowComponent.DemandAttention`](xref:OpenTK.Platform.Native.X11.X11WindowComponent.DemandAttention(OpenTK.Core.Platform.WindowHandle))|Shows a popup to the user that the window is ready.| +|`X11OpenGLComponent`|| +|[`X11OpenGLComponent.EXT_swap_control_GetMaxSwapInterval`](xref:OpenTK.Platform.Native.X11.X11OpenGLComponent.EXT_swap_control_GetMaxSwapInterval)|Queries `EXT_swap_control` for the maximum supported swap interval.| +|`X11IconComponent`|| +|[`X11IconComponent.Create(int, int, IconImage[])`](xref:OpenTK.Platform.Native.X11.X11IconComponent.Create(System.Int32,System.Int32,OpenTK.Platform.Native.X11.X11IconComponent.IconImage[]))|Used to create multi-resolution icons.| + +# macOS +Currently there are no macOS specific apis. \ No newline at end of file diff --git a/learn/pal2/event-handling.md b/learn/pal2/event-handling.md index d40ba467..522786c7 100644 --- a/learn/pal2/event-handling.md +++ b/learn/pal2/event-handling.md @@ -34,154 +34,33 @@ void EventRaised(PalHandle? handle, PlatformEventType type, EventArgs args) Here follows a list of events that extend [WindowEventArgs](xref:OpenTK.Core.Platform.WindowEventArgs) and what they mean. -## Close - -> Enum: `PlatformEventType.Close` - -> Args: [`CloseEventArgs`](xref:OpenTK.Core.Platform.CloseEventArgs) - -This event is triggered when the user presses the exit button of the window. `CloseEventArgs.Window` contains the handle to the window the user wanted to close. - -## Focus - -> Enum: `PlatformEventType.Focus` - -> Args: [`FocusEventArgs`](xref:OpenTK.Core.Platform.FocusEventArgs) - -This event is triggered when a window gains or loses input focus. `FocusEventArgs.GotFocus` tells if the window got or lost focus. - -## WindowMove - -> Enum: `PlatformEventType.WindowMove` - -> Args: [`WindowMoveEventArgs`](xref:OpenTK.Core.Platform.WindowMoveEventArgs) - -This event is triggered when a window has its position changed on screen. - -## WindowResize - -> Enum: `PlatformEventType.WindowResize` - -> Args: [`WindowResizeEventArgs`](xref:OpenTK.Core.Platform.WindowResizeEventArgs) - -This event is triggered when a window has its size changed on screen. - -## WindowModeChange - -> Enum: `PlatformEventType.WindowModeChange` - -> Args: [`WindowModeChangeEventArgs`](xref:OpenTK.Core.Platform.WindowModeChangeEventArgs) - -This event is triggered when the window mode of a window changes. - -## MouseEnter - -> Enum: `PlatformEventType.MouseEnter` - -> Args: [`MouseEnterEventArgs`](xref:OpenTK.Core.Platform.MouseEnterEventArgs) - -This event is triggered when the mouse cursor enters or exits a window. - -## MouseMove - -> Enum: `PlatformEventType.MouseMove` - -> Args: [`MouseMoveEventArgs`](xref:OpenTK.Core.Platform.MouseMoveEventArgs) - -This event is triggered when the mouse moves. - -## MouseDown - -> Enum: `PlatformEventType.MouseDown` - -> Args: [`MouseButtonDownEventArgs`](xref:OpenTK.Core.Platform.MouseButtonDownEventArgs) - -This event is triggered when a mouse button is pressed. - -## MouseUp - -> Enum: `PlatformEventType.MouseUp` - -> Args: [`MouseButtonUpEventArgs`](xref:OpenTK.Core.Platform.MouseButtonUpEventArgs) - -This event is triggered when a mouse button is released. - -## Scroll - -> Enum: `PlatformEventType.Scroll` - -> Args: [`ScrollEventArgs`](xref:OpenTK.Core.Platform.ScrollEventArgs) - -This event is triggered when the scrollwheel on a mouse is used. - -## KeyDown - -> Enum: `PlatformEventType.KeyDown` - -> Args: [`KeyDownEventArgs`](xref:OpenTK.Core.Platform.KeyDownEventArgs) - -This event is triggered when a keyboard key is pressed. - -Do not use this event to handle typing, use the [TextInput event](#textinput) instead. - -## KeyUp - -> Enum: `PlatformEventType.KeyUp` - -> Args: [`KeyUpEventArgs`](xref:OpenTK.Core.Platform.KeyUpEventArgs) - -This event is triggered when a keyboard key is released. - -Do not use this event to handle typing, use the [TextInput event](#textinput) instead. - -## TextInput - -> Enum: `PlatformEventType.TextInput` - -> Args: [`TextInputEventArgs`](xref:OpenTK.Core.Platform.TextInputEventArgs) - -This event is triggered when the user has typed text. - -## TextEditing - -> Enum: `PlatformEventType.TextEditing` - -> Args: [`TextEditingEventArgs`](xref:OpenTK.Core.Platform.TextEditingEventArgs) - -This event is triggered when the user is composing text using something like IME (e.g. Chinese, Japanese, or Korean). - -## FileDrop - -> Enum: `PlatformEventType.FileDrop` - -> Args: [`FileDropEventArgs`](xref:OpenTK.Core.Platform.FileDropEventArgs) - -This event is triggered when a user drags files into a window. +|Event Enum|EventArgs type|Description| +|---------|--------------|-----------| +|[`Close`](xref:OpenTK.Core.Platform.PlatformEventType.Close)|[`CloseEventArgs`](xref:OpenTK.Core.Platform.CloseEventArgs)|This event is triggered when the user presses the exit button of the window. `CloseEventArgs.Window` contains the handle to the window the user wanted to close.| +|[`Focus`](xref:OpenTK.Core.Platform.PlatformEventType.Focus)|[`FocusEventArgs`](xref:OpenTK.Core.Platform.FocusEventArgs)|This event is triggered when a window gains or loses input focus. `FocusEventArgs.GotFocus` tells if the window got or lost focus.| +|[`WindowMove`](xref:OpenTK.Core.Platform.PlatformEventType.WindowMove)|[`WindowMoveEventArgs`](xref:OpenTK.Core.Platform.WindowMoveEventArgs)|This event is triggered when a window has its position changed on screen.| +|[`WindowResize`](xref:OpenTK.Core.Platform.PlatformEventType.WindowResize)|[`WindowResizeEventArgs`](xref:OpenTK.Core.Platform.WindowResizeEventArgs)|This event is triggered when a window has its size changed on screen.| +|[`WindowModeChange`](xref:OpenTK.Core.Platform.PlatformEventType.WindowModeChange)|[`WindowModeChangeEventArgs`](xref:OpenTK.Core.Platform.WindowModeChangeEventArgs)|This event is triggered when the window mode of a window changes.| +|[`WindowDpiChange`](xref:OpenTK.Core.Platform.PlatformEventType.WindowDpiChange)|[`WindowDpiChangeEventArgs`](xref:OpenTK.Core.Platform.WindowDpiChangeEventArgs)|This event is triggered when the dpi the window should display at has changed. Typically because the user has moved the window to another monitor with different scaling settings, or because the user changed system dpi settings.| +|[`MouseEnter`](xref:OpenTK.Core.Platform.PlatformEventType.MouseEnter)|[`MouseEnterEventArgs`](xref:OpenTK.Core.Platform.MouseEnterEventArgs)|This event is triggered when the mouse cursor enters or exits a window.| +|[`MouseMove`](xref:OpenTK.Core.Platform.PlatformEventType.MouseMove)|[`MouseMoveEventArgs`](xref:OpenTK.Core.Platform.MouseMoveEventArgs)|This event is triggered when the mouse moves.| +|[`MouseDown`](xref:OpenTK.Core.Platform.PlatformEventType.MouseDown)|[`MouseButtonDownEventArgs`](xref:OpenTK.Core.Platform.MouseButtonDownEventArgs)|This event is triggered when a mouse button is pressed.| +|[`MouseUp`](xref:OpenTK.Core.Platform.PlatformEventType.MouseUp)|[`MouseButtonDownEventArgs`](xref:OpenTK.Core.Platform.MouseButtonDownEventArgs)|This event is triggered when a mouse button is pressed.| +|[`Scroll`](xref:OpenTK.Core.Platform.PlatformEventType.Scroll)|[`ScrollEventArgs`](xref:OpenTK.Core.Platform.ScrollEventArgs)|This event is triggered when the scrollwheel on a mouse is used.| +|[`KeyDown`](xref:OpenTK.Core.Platform.PlatformEventType.KeyDown)|[`KeyDownEventArgs`](xref:OpenTK.Core.Platform.KeyDownEventArgs)|This event is triggered when a keyboard key is pressed.

Do not use this event to handle typing, use the [TextInput event](#textinput) instead.| +|[`KeyUp`](xref:OpenTK.Core.Platform.PlatformEventType.KeyUp)|[`KeyUpEventArgs`](xref:OpenTK.Core.Platform.KeyUpEventArgs)|This event is triggered when a keyboard key is released.

Do not use this event to handle typing, use the [TextInput event](#textinput) instead.| +|[`TextInput`](xref:OpenTK.Core.Platform.PlatformEventType.TextInput)|[`TextInputEventArgs`](xref:OpenTK.Core.Platform.TextInputEventArgs)|This event is triggered when the user has typed text.| +|[`TextEditing`](xref:OpenTK.Core.Platform.PlatformEventType.TextEditing)|[`TextEditingEventArgs`](xref:OpenTK.Core.Platform.TextEditingEventArgs)|This event is triggered when the user is composing text using something like IME (e.g. Chinese, Japanese, or Korean).| +|[`FileDrop`](xref:OpenTK.Core.Platform.PlatformEventType.FileDrop)|[`FileDropEventArgs`](xref:OpenTK.Core.Platform.FileDropEventArgs)|This event is triggered when a user drags files into a window.| +|[`InputLanguageChanged`](xref:OpenTK.Core.Platform.PlatformEventType.InputLanguageChanged)|[`InputLanguageChangedEventArgs`](xref:OpenTK.Core.Platform.InputLanguageChangedEventArgs)|This event is triggered when the input language for the window has changed.| # Non-window events Here follows a list of non-window related events. -## ThemeChange - -> Enum: `PlatformEventType.ThemeChange` - -> Args: [`ThemeChangeEventArgs`](xref:OpenTK.Core.Platform.ThemeChangeEventArgs) - -This event is triggered when a user changes the preferred theme. - -## DisplayConnectionChanged - -> Enum: `PlatformEventType.DisplayConnectionChanged` - -> Args: [`DisplayConnectionChangedEventArgs`](xref:OpenTK.Core.Platform.DisplayConnectionChangedEventArgs) - -This event is triggered when a display is connected or disconnected from the system. - -## PowerStateChange - -> Enum: `PlatformEventType.PowerStateChange` - -> Args: [`PowerStateChangeEventArgs`](xref:OpenTK.Core.Platform.PowerStateChangeEventArgs) - -This event is triggered when the power state of the system changes. +|Event Enum|EventArgs type|Description| +|----------|--------------|-----------| +|[`ThemeChange`](xref:OpenTK.Core.Platform.PlatformEventType.ThemeChange)|[`ThemeChangeEventArgs`](xref:OpenTK.Core.Platform.ThemeChangeEventArgs)|This event is triggered when a user changes the preferred theme.| +|[`DisplayConnectionChanged`](xref:OpenTK.Core.Platform.PlatformEventType.DisplayConnectionChanged)|[`DisplayConnectionChangedEventArgs`](xref:OpenTK.Core.Platform.DisplayConnectionChangedEventArgs)|This event is triggered when a display is connected or disconnected from the system.| +|[`PowerStateChange`](xref:OpenTK.Core.Platform.PlatformEventType.PowerStateChange)|[`PowerStateChangeEventArgs`](xref:OpenTK.Core.Platform.PowerStateChangeEventArgs)|This event is triggered when the power state of the system changes. For example if the user put the system to sleep.| +|[`ClipboardUpdate`](xref:OpenTK.Core.Platform.PlatformEventType.ClipboardUpdate)|[`ClipboardUpdateEventArgs`](xref:OpenTK.Core.Platform.ClipboardUpdateEventArgs)|This event is triggered when the contents of the clipboard has changed.| diff --git a/learn/pal2/window-component.md b/learn/pal2/window-component.md deleted file mode 100644 index b84c2021..00000000 --- a/learn/pal2/window-component.md +++ /dev/null @@ -1,3 +0,0 @@ - -The window component exposes functions related to creating, managing and deleting windows. - diff --git a/learn/toc.yml b/learn/toc.yml index 8e722bc6..4a842561 100644 --- a/learn/toc.yml +++ b/learn/toc.yml @@ -45,10 +45,12 @@ - name: "Platform Abstraction Layer 2" items: - name: Introduction - href: pal2/introduction.md + href: pal2/Introduction.md - name: Event Handling - href: pal2/event-handling.md - - name: Window Component - href: pal2/window-component.md + href: pal2/Event-Handling.md + - name: Components + href: pal2/Components.md - name: Platform specific settings - href: pal2/platform-specific-settings.md \ No newline at end of file + href: pal2/Platform-Specific-Settings.md + - name: ANGLE + href: pal2/ANGLE.md \ No newline at end of file From d5c707d28ffe9459b4f8b219b604f2d65e35fe37 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julius=20H=C3=A4ger?= Date: Sat, 14 Oct 2023 03:03:32 +0200 Subject: [PATCH 23/38] Update to latest pal2. --- opentk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/opentk b/opentk index 7fdfe4bb..4bfb11bc 160000 --- a/opentk +++ b/opentk @@ -1 +1 @@ -Subproject commit 7fdfe4bb8c27fedb983ba1187655cad69bcf055c +Subproject commit 4bfb11bc4b6aaff955568c9fcffbb35aa2cd060e From d512a5559188cc7b774e7385c00a504a3a068dd9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julius=20H=C3=A4ger?= Date: Sat, 14 Oct 2023 03:27:32 +0200 Subject: [PATCH 24/38] Fix casing --- learn/pal2/{event-handling.md => Event-Handling.md} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename learn/pal2/{event-handling.md => Event-Handling.md} (100%) diff --git a/learn/pal2/event-handling.md b/learn/pal2/Event-Handling.md similarity index 100% rename from learn/pal2/event-handling.md rename to learn/pal2/Event-Handling.md From e8d98c9871d704926941552a2413a460cc887120 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julius=20H=C3=A4ger?= Date: Sun, 4 Feb 2024 16:19:32 +0100 Subject: [PATCH 25/38] Documented macOS platform specific functions --- learn/pal2/Introduction.md | 2 +- learn/pal2/Platform-Specific-Settings.md | 21 ++++++++++++++++++--- opentk | 2 +- 3 files changed, 20 insertions(+), 5 deletions(-) diff --git a/learn/pal2/Introduction.md b/learn/pal2/Introduction.md index 41ebba41..fff15d4a 100644 --- a/learn/pal2/Introduction.md +++ b/learn/pal2/Introduction.md @@ -5,7 +5,7 @@ Feedback is wanted! > [!IMPORTANT] -> Currently PAL2 is basically feature complete on Windows, and many parts work on x11, and a few features work on macos. There is an SDL backend that works on both Windows and linux, and should in theory work on macos but the SDL binaries nuget package doesn't have macos binaries yet. +> Currently PAL2 is basically feature complete on Windows, and many parts work on x11 and macos. There is an SDL backend that works on both Windows and linux, and should in theory work on macos but the SDL binaries nuget package doesn't have macos binaries yet. ## Setup diff --git a/learn/pal2/Platform-Specific-Settings.md b/learn/pal2/Platform-Specific-Settings.md index ccbfef46..df8762d5 100644 --- a/learn/pal2/Platform-Specific-Settings.md +++ b/learn/pal2/Platform-Specific-Settings.md @@ -21,8 +21,8 @@ The following is a list of windows specific settings and functions. |--------|-----------| |`ShellComponent`| | |[`ShellComponent.SetImmersiveDarkMode`](xref:OpenTK.Platform.Native.Windows.ShellComponent.SetImmersiveDarkMode(OpenTK.Core.Platform.WindowHandle,System.Boolean))|Sets the `DWMWA_USE_IMMERSIVE_DARK_MODE` flag on the window causing the titlebar be rendered in dark mode colors. This is only officially supported from Window 11 Build 220000, but can sometimes work on Windows 10.| -|[`ShellComponent.SetCaptionTextColor`](xref:OpenTK.Platform.Native.Windows.ShellComponent.SetCaptionTextColor(OpenTK.Core.Platform.WindowHandle,OpenTK.Color3{OpenTK.Rgb}))|Used to set the text color in the windows titlebar. This is only officially supported from Window 11 Build 220000, but can sometimes work on Windows 10.| -|[`ShellComponent.SetCaptionColor`](xref:OpenTK.Platform.Native.Windows.ShellComponent.SetCaptionColor(OpenTK.Core.Platform.WindowHandle,OpenTK.Color3{OpenTK.Rgb}))|Used to set the color of the window titlebar. This is only officially supported from Window 11 Build 220000, but can sometimes work on Windows 10.| +|[`ShellComponent.SetCaptionTextColor`](xref:OpenTK.Platform.Native.Windows.ShellComponent.SetCaptionTextColor(OpenTK.Core.Platform.WindowHandle,OpenTK.Mathematics.Color3{OpenTK.Mathematics.Rgb}))|Used to set the text color in the windows titlebar. This is only officially supported from Window 11 Build 220000, but can sometimes work on Windows 10.| +|[`ShellComponent.SetCaptionColor`](xref:OpenTK.Platform.Native.Windows.ShellComponent.SetCaptionColor(OpenTK.Core.Platform.WindowHandle,OpenTK.Mathematics.Color3{OpenTK.Mathematics.Rgb}))|Used to set the color of the window titlebar. This is only officially supported from Window 11 Build 220000, but can sometimes work on Windows 10.| |`IconComponent`| | |[`IconComponent.CreateFromIcoFile`](xref:OpenTK.Platform.Native.Windows.IconComponent.CreateFromIcoFile(System.String))|Used to create an `IconHandle` from a `.ico` file. An icon created using this function will be able to dynamically pick resolution if the file contains multiple resolutions.| |[`IconComponent.CreateFromIcoResource(byte[])`](xref:OpenTK.Platform.Native.Windows.IconComponent.CreateFromIcoResource(System.Byte[]))|Used to create an `IconHandle` from a `.ico` file embedded as a `.resx` resource. An Icon created using this function will **not** be able to dynamically pick resolution.| @@ -53,4 +53,19 @@ The following is a list of linux x11 specific settings and functions. |[`X11IconComponent.Create(int, int, IconImage[])`](xref:OpenTK.Platform.Native.X11.X11IconComponent.Create(System.Int32,System.Int32,OpenTK.Platform.Native.X11.X11IconComponent.IconImage[]))|Used to create multi-resolution icons.| # macOS -Currently there are no macOS specific apis. \ No newline at end of file +The following is a list of macOS specific settings and functions. + +|Function|Description| +|--------|-----------| +|`MacOSWindowComponent`| | +|[`MacOSWindowComponent.SetDockIcon`](xref:OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetDockIcon(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.IconHandle))|Sets the dock icon of the application| +|`MacOSIconComponent`|| +|[`MacOSIconComponent.CreateSFSymbol`](xref:OpenTK.Platform.Native.macOS.MacOSIconComponent.CreateSFSymbol(System.String,System.String))|Creates a IconHandle from a SF symbol name.| +|`MacOSDisplayComponent`|| +|[`MacOSDisplayComponent.GetSafeArea`](xref:OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetSafeArea(OpenTK.Core.Platform.DisplayHandle,OpenTK.Mathematics.Box2i@))|Gets the area of the screen that is not covered by things like camera housings.| +|[`MacOSDisplayComponent.GetSafeLeftAuxArea`](xref:OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetSafeLeftAuxArea(OpenTK.Core.Platform.DisplayHandle,OpenTK.Mathematics.Box2i@))|Gets the visible area of the screen to the left of the camera housing or an empty area if there is no camera housing.| +|[`MacOSDisplayComponent.GetSafeRightAuxArea`](xref:OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetSafeRightAuxArea(OpenTK.Core.Platform.DisplayHandle,OpenTK.Mathematics.Box2i@))|Gets the visible area of the screen to the right of the camera housing or an empty area of there is no camera housing.| +|`MacOSCursorComponent`|| +|[`MacOSCursorComponent.Create(Frame[] frames, float delay)`](xref:OpenTK.Platform.Native.macOS.MacOSCursorComponent.Create(OpenTK.Platform.Native.macOS.MacOSCursorComponent.Frame[],System.Single))|Used to create an animated cursor.| +|[`MacOSCursorComponent.IsAnimatedCursor`](xref:OpenTK.Platform.Native.macOS.MacOSCursorComponent.IsAnimatedCursor(OpenTK.Core.Platform.CursorHandle))|Used to check if a given cursor is animated.| +|[`MacOSCursorComponent.UpdateAnimation`](xref:OpenTK.Platform.Native.macOS.MacOSCursorComponent.UpdateAnimation(OpenTK.Core.Platform.CursorHandle,System.Double))|Used to update the animation of a given cursor.| \ No newline at end of file diff --git a/opentk b/opentk index 4bfb11bc..ac7b64f8 160000 --- a/opentk +++ b/opentk @@ -1 +1 @@ -Subproject commit 4bfb11bc4b6aaff955568c9fcffbb35aa2cd060e +Subproject commit ac7b64f8bc7815496983f15e35ed8e648a7f6484 From 1075081dff6bae8ae4bce3618c17a9dff5d07289 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julius=20H=C3=A4ger?= Date: Sat, 2 Mar 2024 16:42:23 +0100 Subject: [PATCH 26/38] Add logging to the introduction --- learn/pal2/Introduction.md | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/learn/pal2/Introduction.md b/learn/pal2/Introduction.md index fff15d4a..b3737266 100644 --- a/learn/pal2/Introduction.md +++ b/learn/pal2/Introduction.md @@ -25,6 +25,26 @@ windowComp.Initialize(PalComponents.Window); openglComp.Initialize(PalComponents.OpenGL); ``` +## Logging + +All components in PAL2 have the ability to output diagnostic messages through an `ILogger` interface exposed as a `Logger` property of the component. This can be useful to find errors in the code and provide debug data that can be used to fix bugs in OpenTK. + +OpenTK provides an implementation of this interface called `ConsoleLogger` that writes out all debug messages to the console. + +We set the logger before we initialize the components so that we can get diagnostic messages during initialization too. + +```cs +IWindowComponent windowComp = new PlatformComponents.CreateWindowComponent(); +IOpenGLComponent openglComp = new PlatformComponents.CreateOpenGLComponent(); + +ConsoleLogger logger = new ConsoleLogger(); +windowComp.Logger = logger; +openglComp.Logger = logger; + +windowComp.Initialize(PalComponents.Window); +openglComp.Initialize(PalComponents.OpenGL); +``` + ## Creating a window To create an OpenGL window using PAL2 all you need to do is the following: @@ -162,6 +182,10 @@ class Sample public static void Main(string[] args) { + ConsoleLogger logger = new ConsoleLogger(); + windowComp.Logger = logger; + openglComp.Logger = logger; + windowComp.Initialize(PalComponents.Window); openglComp.Initialize(PalComponents.OpenGL); From 8995dd6365b969c4ab9ceeeb4d3cfe9c345f6616 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julius=20H=C3=A4ger?= Date: Sat, 2 Mar 2024 16:48:35 +0100 Subject: [PATCH 27/38] Update to latest PAL2 work --- opentk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/opentk b/opentk index ac7b64f8..b3a5fc2f 160000 --- a/opentk +++ b/opentk @@ -1 +1 @@ -Subproject commit ac7b64f8bc7815496983f15e35ed8e648a7f6484 +Subproject commit b3a5fc2fb0a31a4904f1ca2e4f0414941c972198 From 707df2eee28818d3cf979faf6f315fc726de5ab9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julius=20H=C3=A4ger?= Date: Wed, 6 Mar 2024 15:05:48 +0100 Subject: [PATCH 28/38] Updated to latest pal2 work --- opentk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/opentk b/opentk index b3a5fc2f..d77861e1 160000 --- a/opentk +++ b/opentk @@ -1 +1 @@ -Subproject commit b3a5fc2fb0a31a4904f1ca2e4f0414941c972198 +Subproject commit d77861e18d4ed418982f50bacc93fd1017d2d736 From 01b4bacf5ffd1ab477330bf185689f25da4be0b3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julius=20H=C3=A4ger?= Date: Wed, 6 Mar 2024 15:45:32 +0100 Subject: [PATCH 29/38] Update platform specific functions --- learn/pal2/Platform-Specific-Settings.md | 32 +++++++++++++++++++++++- opentk | 2 +- 2 files changed, 32 insertions(+), 2 deletions(-) diff --git a/learn/pal2/Platform-Specific-Settings.md b/learn/pal2/Platform-Specific-Settings.md index df8762d5..d4d71851 100644 --- a/learn/pal2/Platform-Specific-Settings.md +++ b/learn/pal2/Platform-Specific-Settings.md @@ -19,6 +19,13 @@ The following is a list of windows specific settings and functions. |Function|Description| |--------|-----------| +|`WindowComponent`| | +|[`WindowComponent.GetHWND`](xref:OpenTK.Platform.Native.Windows.WindowComponent.GetHWND(OpenTK.Core.Platform.WindowHandle))|Gets the native Win32 `HWND` handle for the window.| +|`OpenGLComponent`| | +|[`OpenGLComponent.GetHGLRC`](xref:OpenTK.Platform.Native.Windows.OpenGLComponent.GetHGLRC(OpenTK.Core.Platform.OpenGLContextHandle))|Gets the native Win32 `HGLRC` handle for the OpenGL context.| +|`DisplayComponent`| | +|[`DisplayComponent.GetAdapter`](xref:OpenTK.Platform.Native.Windows.DisplayComponent.GetAdapter(OpenTK.Core.Platform.DisplayHandle))|Gets the native Win32 adapter name (e.g. `\\.\DISPLAY1`) for the display handle.| +|[`DisplayComponent.GetMonitor`](xref:OpenTK.Platform.Native.Windows.DisplayComponent.GetMonitor(OpenTK.Core.Platform.DisplayHandle))|Gets the native Win32 monitor name (e.g. `\\.\DISPLAY1\Monitor0`) for the display handle.| |`ShellComponent`| | |[`ShellComponent.SetImmersiveDarkMode`](xref:OpenTK.Platform.Native.Windows.ShellComponent.SetImmersiveDarkMode(OpenTK.Core.Platform.WindowHandle,System.Boolean))|Sets the `DWMWA_USE_IMMERSIVE_DARK_MODE` flag on the window causing the titlebar be rendered in dark mode colors. This is only officially supported from Window 11 Build 220000, but can sometimes work on Windows 10.| |[`ShellComponent.SetCaptionTextColor`](xref:OpenTK.Platform.Native.Windows.ShellComponent.SetCaptionTextColor(OpenTK.Core.Platform.WindowHandle,OpenTK.Mathematics.Color3{OpenTK.Mathematics.Rgb}))|Used to set the text color in the windows titlebar. This is only officially supported from Window 11 Build 220000, but can sometimes work on Windows 10.| @@ -47,8 +54,15 @@ The following is a list of linux x11 specific settings and functions. |--------|-----------| |`WindowComponent`| | |[`X11WindowComponent.DemandAttention`](xref:OpenTK.Platform.Native.X11.X11WindowComponent.DemandAttention(OpenTK.Core.Platform.WindowHandle))|Shows a popup to the user that the window is ready.| +|[`X11WindowComponent.GetX11Display`](xref:OpenTK.Platform.Native.X11.X11WindowComponent.GetX11Display)|Gets the X11 `Display` used by OpenTK.| +|[`X11WindowComponent.GetX11Window`](xref:OpenTK.Platform.Native.X11.X11WindowComponent.GetX11Window(OpenTK.Core.Platform.WindowHandle))|Gets the X11 `Window` for this window handle.| |`X11OpenGLComponent`|| |[`X11OpenGLComponent.EXT_swap_control_GetMaxSwapInterval`](xref:OpenTK.Platform.Native.X11.X11OpenGLComponent.EXT_swap_control_GetMaxSwapInterval)|Queries `EXT_swap_control` for the maximum supported swap interval.| +|[`X11OpenGLComponent.GetGLXContext`](xref:OpenTK.Platform.Native.X11.X11OpenGLComponent.GetGLXContext(OpenTK.Core.Platform.OpenGLContextHandle))|Get the GLX `GLXContext` for the OpenGL context.| +|[`X11OpenGLComponent.GetGLXWindow`](xref:OpenTK.Platform.Native.X11.X11OpenGLComponent.GetGLXWindow(OpenTK.Core.Platform.OpenGLContextHandle))|Get the GLX `GLXWindow` for the OpenGL context.| +|`X11DisplayComponent`|| +|[`X11DisplayComponent.GetRRCrtc`](xref:OpenTK.Platform.Native.X11.X11DisplayComponent.GetRRCrtc(OpenTK.Core.Platform.DisplayHandle))|Get the X11 RandR `RRCrtc` for the display handle.| +|[`X11DisplayComponent.GetRROutput`](xref:OpenTK.Platform.Native.X11.X11DisplayComponent.GetRROutput(OpenTK.Core.Platform.DisplayHandle))|Get the X11 RandR `RROutput` for the display handle.| |`X11IconComponent`|| |[`X11IconComponent.Create(int, int, IconImage[])`](xref:OpenTK.Platform.Native.X11.X11IconComponent.Create(System.Int32,System.Int32,OpenTK.Platform.Native.X11.X11IconComponent.IconImage[]))|Used to create multi-resolution icons.| @@ -59,13 +73,29 @@ The following is a list of macOS specific settings and functions. |--------|-----------| |`MacOSWindowComponent`| | |[`MacOSWindowComponent.SetDockIcon`](xref:OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetDockIcon(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.IconHandle))|Sets the dock icon of the application| +|[`MacOSWindowComponent.GetNSWindow`](xref:OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetNSWindow(OpenTK.Core.Platform.WindowHandle))|Gets the `NSWindow` of the window handle. This is an instance of the `NSOpenTKWindow` subclass of `NSWindow`.| +|[`MacOSWindowComponent.GetNSView`](xref:OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetNSView(OpenTK.Core.Platform.WindowHandle))|Gets the `NSView` of the window handle. This is an instance of the `NSOpenTKView` subclass of `NSView`.| +|`MacOSOpenGLComponent`| | +|[`MacOSOpenGLComponent.GetNSOpenGLContext`](xref:OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.GetNSOpenGLContext(OpenTK.Core.Platform.OpenGLContextHandle))|Gets the `NSOpenGLContext` of the OpenGL context handle.| |`MacOSIconComponent`|| |[`MacOSIconComponent.CreateSFSymbol`](xref:OpenTK.Platform.Native.macOS.MacOSIconComponent.CreateSFSymbol(System.String,System.String))|Creates a IconHandle from a SF symbol name.| |`MacOSDisplayComponent`|| |[`MacOSDisplayComponent.GetSafeArea`](xref:OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetSafeArea(OpenTK.Core.Platform.DisplayHandle,OpenTK.Mathematics.Box2i@))|Gets the area of the screen that is not covered by things like camera housings.| |[`MacOSDisplayComponent.GetSafeLeftAuxArea`](xref:OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetSafeLeftAuxArea(OpenTK.Core.Platform.DisplayHandle,OpenTK.Mathematics.Box2i@))|Gets the visible area of the screen to the left of the camera housing or an empty area if there is no camera housing.| |[`MacOSDisplayComponent.GetSafeRightAuxArea`](xref:OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetSafeRightAuxArea(OpenTK.Core.Platform.DisplayHandle,OpenTK.Mathematics.Box2i@))|Gets the visible area of the screen to the right of the camera housing or an empty area of there is no camera housing.| +|[`MacOSDisplayComponent.GetDirectDisplayID`](xref:OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetDirectDisplayID(OpenTK.Core.Platform.DisplayHandle))|Gets the `CGDirectDisplayID` for the display handle.| |`MacOSCursorComponent`|| |[`MacOSCursorComponent.Create(Frame[] frames, float delay)`](xref:OpenTK.Platform.Native.macOS.MacOSCursorComponent.Create(OpenTK.Platform.Native.macOS.MacOSCursorComponent.Frame[],System.Single))|Used to create an animated cursor.| |[`MacOSCursorComponent.IsAnimatedCursor`](xref:OpenTK.Platform.Native.macOS.MacOSCursorComponent.IsAnimatedCursor(OpenTK.Core.Platform.CursorHandle))|Used to check if a given cursor is animated.| -|[`MacOSCursorComponent.UpdateAnimation`](xref:OpenTK.Platform.Native.macOS.MacOSCursorComponent.UpdateAnimation(OpenTK.Core.Platform.CursorHandle,System.Double))|Used to update the animation of a given cursor.| \ No newline at end of file +|[`MacOSCursorComponent.UpdateAnimation`](xref:OpenTK.Platform.Native.macOS.MacOSCursorComponent.UpdateAnimation(OpenTK.Core.Platform.CursorHandle,System.Double))|Used to update the animation of a given cursor.| + +# ANGLE + +When using ANGLE to create OpenGL contexts `ANGLEOpenGLComponent` exposes a few ANGLE specific functions. + +|Function|Description| +|--------|-----------| +|`ANGLEOpenGLComponent`| | +|[`ANGLEOpenGLComponent.GetEglDisplay`](xref:OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.GetEglDisplay)|Gets the `EGLDisplay` used by OpenTK.| +|[`ANGLEOpenGLComponent.GetEglContext`](xref:OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.GetEglContext(OpenTK.Core.Platform.OpenGLContextHandle))|Gets the `EGLContext` for the OpenGL context.| +|[`ANGLEOpenGLComponent.GetEglSurface`](xref:OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.GetEglSurface(OpenTK.Core.Platform.OpenGLContextHandle))|Gets the `EGLSurface` for the OpenGL context.| diff --git a/opentk b/opentk index d77861e1..64df6163 160000 --- a/opentk +++ b/opentk @@ -1 +1 @@ -Subproject commit d77861e18d4ed418982f50bacc93fd1017d2d736 +Subproject commit 64df616347382d7911034f1e9a76e42620126d41 From 59567189824254acd780573d2ec883d7949aaf30 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julius=20H=C3=A4ger?= Date: Wed, 10 Jul 2024 19:03:33 +0200 Subject: [PATCH 30/38] Updated to latest pal2 work --- api/.manifest | 672 +++--- ...udio.OpenAL.OpenALLibraryNameContainer.yml | 65 +- api/OpenTK.Compute.OpenCL.CLGL.ObjectType.yml | 8 +- ...OpenTK.Compute.OpenCL.CLGL.TextureInfo.yml | 2 +- ...pute.OpenCL.OpenCLLibraryNameContainer.yml | 67 +- api/OpenTK.Core.Platform.Bitmap.yml | 8 +- api/OpenTK.Core.Platform.ClipboardFormat.yml | 64 +- ...Core.Platform.ClipboardUpdateEventArgs.yml | 6 +- api/OpenTK.Core.Platform.CloseEventArgs.yml | 4 +- api/OpenTK.Core.Platform.ContextDepthBits.yml | 37 +- ...penTK.Core.Platform.ContextPixelFormat.yml | 170 ++ ....Core.Platform.ContextReleaseBehaviour.yml | 126 + ...tform.ContextResetNotificationStrategy.yml | 122 + ...penTK.Core.Platform.ContextStencilBits.yml | 8 +- ...OpenTK.Core.Platform.ContextSwapMethod.yml | 158 ++ ...nTK.Core.Platform.ContextValueSelector.yml | 234 ++ api/OpenTK.Core.Platform.ContextValues.yml | 1923 ++++++++++++--- api/OpenTK.Core.Platform.DialogFileFilter.yml | 804 +++++++ ...form.DisplayConnectionChangedEventArgs.yml | 8 +- ...OpenTK.Core.Platform.FileDropEventArgs.yml | 8 +- api/OpenTK.Core.Platform.FocusEventArgs.yml | 4 +- ...enTK.Core.Platform.IClipboardComponent.yml | 83 +- api/OpenTK.Core.Platform.ICursorComponent.yml | 34 +- api/OpenTK.Core.Platform.IDialogComponent.yml | 433 ++++ ...OpenTK.Core.Platform.IDisplayComponent.yml | 34 +- api/OpenTK.Core.Platform.IIconComponent.yml | 34 +- ...penTK.Core.Platform.IJoystickComponent.yml | 34 +- ...penTK.Core.Platform.IKeyboardComponent.yml | 34 +- api/OpenTK.Core.Platform.IMouseComponent.yml | 40 +- api/OpenTK.Core.Platform.IOpenGLComponent.yml | 34 +- api/OpenTK.Core.Platform.IPalComponent.yml | 35 +- api/OpenTK.Core.Platform.IShellComponent.yml | 34 +- ...OpenTK.Core.Platform.ISurfaceComponent.yml | 34 +- api/OpenTK.Core.Platform.IWindowComponent.yml | 239 +- ...Platform.InputLanguageChangedEventArgs.yml | 12 +- api/OpenTK.Core.Platform.KeyDownEventArgs.yml | 12 +- api/OpenTK.Core.Platform.KeyUpEventArgs.yml | 10 +- ...Core.Platform.MouseButtonDownEventArgs.yml | 8 +- ...K.Core.Platform.MouseButtonUpEventArgs.yml | 8 +- ...enTK.Core.Platform.MouseEnterEventArgs.yml | 6 +- ...penTK.Core.Platform.MouseMoveEventArgs.yml | 6 +- ...OpenTK.Core.Platform.OpenDialogOptions.yml | 136 ++ ...K.Core.Platform.OpenGLGraphicsApiHints.yml | 594 ++++- api/OpenTK.Core.Platform.PalComponents.yml | 29 + ...OpenTK.Core.Platform.PlatformEventType.yml | 111 +- ...ore.Platform.PowerStateChangeEventArgs.yml | 6 +- ...OpenTK.Core.Platform.SaveDialogOptions.yml | 71 + api/OpenTK.Core.Platform.Scancode.yml | 2 +- api/OpenTK.Core.Platform.ScrollEventArgs.yml | 8 +- api/OpenTK.Core.Platform.SystemCursorType.yml | 4 +- ...nTK.Core.Platform.TextEditingEventArgs.yml | 10 +- ...penTK.Core.Platform.TextInputEventArgs.yml | 6 +- ...nTK.Core.Platform.ThemeChangeEventArgs.yml | 6 +- api/OpenTK.Core.Platform.ToolkitOptions.yml | 412 ++++ api/OpenTK.Core.Platform.WindowEventArgs.yml | 3 +- ...tform.WindowFramebufferResizeEventArgs.yml | 473 ++++ ...ore.Platform.WindowModeChangeEventArgs.yml | 6 +- ...enTK.Core.Platform.WindowMoveEventArgs.yml | 8 +- ...TK.Core.Platform.WindowResizeEventArgs.yml | 73 +- ...re.Platform.WindowScaleChangeEventArgs.yml | 498 ++++ api/OpenTK.Core.Platform.yml | 116 +- api/OpenTK.Core.Utility.DebugLogger.yml | 381 +++ api/OpenTK.Core.Utility.ILogger.yml | 40 + api/OpenTK.Core.Utility.yml | 7 + api/OpenTK.Graphics.BufferHandle.yml | 22 +- api/OpenTK.Graphics.CLContext.yml | 20 +- api/OpenTK.Graphics.CLEvent.yml | 20 +- api/OpenTK.Graphics.DisplayListHandle.yml | 22 +- api/OpenTK.Graphics.FramebufferHandle.yml | 22 +- api/OpenTK.Graphics.GLHandleARB.yml | 24 +- api/OpenTK.Graphics.GLSync.yml | 20 +- ...nTK.Graphics.GLXLoader.BindingsContext.yml | 361 +++ api/OpenTK.Graphics.GLXLoader.yml | 298 +++ api/OpenTK.Graphics.Glx.Colormap.yml | 10 +- api/OpenTK.Graphics.Glx.DisplayPtr.yml | 142 +- api/OpenTK.Graphics.Glx.Font.yml | 10 +- api/OpenTK.Graphics.Glx.GLXContext.yml | 10 +- api/OpenTK.Graphics.Glx.GLXContextID.yml | 10 +- api/OpenTK.Graphics.Glx.GLXDrawable.yml | 10 +- api/OpenTK.Graphics.Glx.GLXFBConfig.yml | 10 +- api/OpenTK.Graphics.Glx.GLXFBConfigID.yml | 10 +- api/OpenTK.Graphics.Glx.GLXFBConfigIDSGIX.yml | 10 +- api/OpenTK.Graphics.Glx.GLXFBConfigSGIX.yml | 10 +- ...TK.Graphics.Glx.GLXHyperpipeConfigSGIX.yml | 10 +- ...K.Graphics.Glx.GLXHyperpipeNetworkSGIX.yml | 6 +- api/OpenTK.Graphics.Glx.GLXPbuffer.yml | 10 +- api/OpenTK.Graphics.Glx.GLXPbufferSGIX.yml | 10 +- api/OpenTK.Graphics.Glx.GLXPixmap.yml | 10 +- ...K.Graphics.Glx.GLXVideoCaptureDeviceNV.yml | 10 +- api/OpenTK.Graphics.Glx.GLXVideoDeviceNV.yml | 10 +- ...OpenTK.Graphics.Glx.GLXVideoSourceSGIX.yml | 10 +- api/OpenTK.Graphics.Glx.GLXWindow.yml | 10 +- api/OpenTK.Graphics.Glx.Glx.AMD.yml | 10 +- api/OpenTK.Graphics.Glx.Glx.ARB.yml | 90 +- api/OpenTK.Graphics.Glx.Glx.EXT.yml | 424 +--- api/OpenTK.Graphics.Glx.Glx.MESA.yml | 424 +--- api/OpenTK.Graphics.Glx.Glx.NV.yml | 1570 ++++--------- api/OpenTK.Graphics.Glx.Glx.OML.yml | 334 ++- api/OpenTK.Graphics.Glx.Glx.SGI.yml | 178 +- api/OpenTK.Graphics.Glx.Glx.SGIX.yml | 1864 +++++---------- api/OpenTK.Graphics.Glx.Glx.SUN.yml | 88 +- api/OpenTK.Graphics.Glx.Glx.yml | 2078 ++++++----------- api/OpenTK.Graphics.Glx.GlxPointers.yml | 1832 +++++++-------- api/OpenTK.Graphics.Glx.Pixmap.yml | 10 +- api/OpenTK.Graphics.Glx.ScreenPtr.yml | 460 ++++ api/OpenTK.Graphics.Glx.Window.yml | 10 +- api/OpenTK.Graphics.Glx.XVisualInfoPtr.yml | 460 ++++ api/OpenTK.Graphics.Glx.yml | 38 +- api/OpenTK.Graphics.PerfQueryHandle.yml | 22 +- api/OpenTK.Graphics.ProgramHandle.yml | 22 +- api/OpenTK.Graphics.ProgramPipelineHandle.yml | 22 +- api/OpenTK.Graphics.QueryHandle.yml | 22 +- api/OpenTK.Graphics.RenderbufferHandle.yml | 22 +- api/OpenTK.Graphics.SamplerHandle.yml | 22 +- api/OpenTK.Graphics.ShaderHandle.yml | 22 +- api/OpenTK.Graphics.SpecialNumbers.yml | 28 +- api/OpenTK.Graphics.TextureHandle.yml | 22 +- ...penTK.Graphics.TransformFeedbackHandle.yml | 22 +- api/OpenTK.Graphics.VertexArrayHandle.yml | 22 +- ...nTK.Graphics.WGLLoader.BindingsContext.yml | 361 +++ api/OpenTK.Graphics.WGLLoader.yml | 298 +++ api/OpenTK.Graphics.Wgl.ColorRef.yml | 8 +- ...enTK.Graphics.Wgl.LayerPlaneDescriptor.yml | 50 +- ...nTK.Graphics.Wgl.PixelFormatDescriptor.yml | 54 +- api/OpenTK.Graphics.Wgl.Rect.yml | 10 +- api/OpenTK.Graphics.Wgl.Wgl.yml | 56 +- api/OpenTK.Graphics.Wgl.WglPointers.yml | 20 +- api/OpenTK.Graphics.Wgl._GPU_DEVICE.yml | 12 +- api/OpenTK.Graphics.yml | 60 + api/OpenTK.IBindingsContext.yml | 57 +- ...penTK.Input.Hid.HidGenericDesktopUsage.yml | 6 +- api/OpenTK.Mathematics.Box2.yml | 123 +- api/OpenTK.Mathematics.Box2d.yml | 121 +- api/OpenTK.Mathematics.Box2i.yml | 123 +- api/OpenTK.Mathematics.Box3.yml | 121 +- api/OpenTK.Mathematics.Box3d.yml | 121 +- api/OpenTK.Mathematics.Box3i.yml | 121 +- ...form.Native.ANGLE.ANGLEOpenGLComponent.yml | 103 +- ...nTK.Platform.Native.PlatformComponents.yml | 91 +- ...tform.Native.SDL.SDLClipboardComponent.yml | 151 +- ...Platform.Native.SDL.SDLCursorComponent.yml | 87 +- ...latform.Native.SDL.SDLDisplayComponent.yml | 99 +- ...K.Platform.Native.SDL.SDLIconComponent.yml | 83 +- ...atform.Native.SDL.SDLJoystickComponent.yml | 93 +- ...atform.Native.SDL.SDLKeyboardComponent.yml | 91 +- ....Platform.Native.SDL.SDLMouseComponent.yml | 79 +- ...Platform.Native.SDL.SDLOpenGLComponent.yml | 97 +- ....Platform.Native.SDL.SDLShellComponent.yml | 77 +- ...Platform.Native.SDL.SDLWindowComponent.yml | 435 +++- api/OpenTK.Platform.Native.Toolkit.yml | 142 +- ...form.Native.Windows.ClipboardComponent.yml | 155 +- ...latform.Native.Windows.CursorComponent.yml | 95 +- ...latform.Native.Windows.DialogComponent.yml | 1097 +++++++++ ...atform.Native.Windows.DisplayComponent.yml | 101 +- ....Platform.Native.Windows.IconComponent.yml | 89 +- ...tform.Native.Windows.JoystickComponent.yml | 95 +- ...tform.Native.Windows.KeyboardComponent.yml | 91 +- ...Platform.Native.Windows.MouseComponent.yml | 77 +- ...latform.Native.Windows.OpenGLComponent.yml | 186 +- ...Windows.ShellComponent.CornerPrefernce.yml | 208 ++ ...Platform.Native.Windows.ShellComponent.yml | 159 +- ...latform.Native.Windows.WindowComponent.yml | 475 +++- api/OpenTK.Platform.Native.Windows.yml | 69 + ...tform.Native.X11.X11ClipboardComponent.yml | 151 +- ...Platform.Native.X11.X11CursorComponent.yml | 87 +- ...latform.Native.X11.X11DisplayComponent.yml | 69 +- ...K.Platform.Native.X11.X11IconComponent.yml | 81 +- ...atform.Native.X11.X11KeyboardComponent.yml | 91 +- ....Platform.Native.X11.X11MouseComponent.yml | 77 +- ...Platform.Native.X11.X11OpenGLComponent.yml | 129 +- ....Platform.Native.X11.X11ShellComponent.yml | 77 +- ...Platform.Native.X11.X11WindowComponent.yml | 572 ++++- ...m.Native.macOS.MacOSClipboardComponent.yml | 1350 +++++++++++ ...ative.macOS.MacOSCursorComponent.Frame.yml | 18 +- ...form.Native.macOS.MacOSCursorComponent.yml | 101 +- ...form.Native.macOS.MacOSDialogComponent.yml | 1097 +++++++++ ...orm.Native.macOS.MacOSDisplayComponent.yml | 105 +- ...atform.Native.macOS.MacOSIconComponent.yml | 81 +- ...rm.Native.macOS.MacOSKeyboardComponent.yml | 91 +- ...tform.Native.macOS.MacOSMouseComponent.yml | 87 +- ...form.Native.macOS.MacOSOpenGLComponent.yml | 109 +- ...tform.Native.macOS.MacOSShellComponent.yml | 77 +- ...form.Native.macOS.MacOSWindowComponent.yml | 503 +++- api/OpenTK.Platform.Native.macOS.yml | 14 + api/OpenTK.Platform.Native.yml | 8 - ...wing.Common.FramebufferResizeEventArgs.yml | 530 +++++ api/OpenTK.Windowing.Common.yml | 8 + api/OpenTK.Windowing.Desktop.GameWindow.yml | 147 +- ...K.Windowing.Desktop.GameWindowSettings.yml | 78 + api/OpenTK.Windowing.Desktop.NativeWindow.yml | 372 ++- ...Windowing.Desktop.NativeWindowSettings.yml | 253 +- api/toc.yml | 62 +- opentk | 2 +- 193 files changed, 22824 insertions(+), 9757 deletions(-) create mode 100644 api/OpenTK.Core.Platform.ContextPixelFormat.yml create mode 100644 api/OpenTK.Core.Platform.ContextReleaseBehaviour.yml create mode 100644 api/OpenTK.Core.Platform.ContextResetNotificationStrategy.yml create mode 100644 api/OpenTK.Core.Platform.ContextSwapMethod.yml create mode 100644 api/OpenTK.Core.Platform.ContextValueSelector.yml create mode 100644 api/OpenTK.Core.Platform.DialogFileFilter.yml create mode 100644 api/OpenTK.Core.Platform.IDialogComponent.yml create mode 100644 api/OpenTK.Core.Platform.OpenDialogOptions.yml create mode 100644 api/OpenTK.Core.Platform.SaveDialogOptions.yml create mode 100644 api/OpenTK.Core.Platform.ToolkitOptions.yml create mode 100644 api/OpenTK.Core.Platform.WindowFramebufferResizeEventArgs.yml create mode 100644 api/OpenTK.Core.Platform.WindowScaleChangeEventArgs.yml create mode 100644 api/OpenTK.Core.Utility.DebugLogger.yml create mode 100644 api/OpenTK.Graphics.GLXLoader.BindingsContext.yml create mode 100644 api/OpenTK.Graphics.GLXLoader.yml create mode 100644 api/OpenTK.Graphics.Glx.ScreenPtr.yml create mode 100644 api/OpenTK.Graphics.Glx.XVisualInfoPtr.yml create mode 100644 api/OpenTK.Graphics.WGLLoader.BindingsContext.yml create mode 100644 api/OpenTK.Graphics.WGLLoader.yml create mode 100644 api/OpenTK.Platform.Native.Windows.DialogComponent.yml create mode 100644 api/OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce.yml create mode 100644 api/OpenTK.Platform.Native.macOS.MacOSClipboardComponent.yml create mode 100644 api/OpenTK.Platform.Native.macOS.MacOSDialogComponent.yml create mode 100644 api/OpenTK.Windowing.Common.FramebufferResizeEventArgs.yml diff --git a/api/.manifest b/api/.manifest index 0069b013..bbd5be10 100644 --- a/api/.manifest +++ b/api/.manifest @@ -757,6 +757,7 @@ "OpenTK.Audio.OpenAL.OpenALLibraryNameContainer.IOS": "OpenTK.Audio.OpenAL.OpenALLibraryNameContainer.yml", "OpenTK.Audio.OpenAL.OpenALLibraryNameContainer.Linux": "OpenTK.Audio.OpenAL.OpenALLibraryNameContainer.yml", "OpenTK.Audio.OpenAL.OpenALLibraryNameContainer.MacOS": "OpenTK.Audio.OpenAL.OpenALLibraryNameContainer.yml", + "OpenTK.Audio.OpenAL.OpenALLibraryNameContainer.OverridePath": "OpenTK.Audio.OpenAL.OpenALLibraryNameContainer.yml", "OpenTK.Audio.OpenAL.OpenALLibraryNameContainer.Windows": "OpenTK.Audio.OpenAL.OpenALLibraryNameContainer.yml", "OpenTK.Audio.OpenAL.ReverbPresets": "OpenTK.Audio.OpenAL.ReverbPresets.yml", "OpenTK.Audio.OpenAL.ReverbPresets.Alley": "OpenTK.Audio.OpenAL.ReverbPresets.yml", @@ -1610,6 +1611,7 @@ "OpenTK.Compute.OpenCL.OpenCLLibraryNameContainer.IOS": "OpenTK.Compute.OpenCL.OpenCLLibraryNameContainer.yml", "OpenTK.Compute.OpenCL.OpenCLLibraryNameContainer.Linux": "OpenTK.Compute.OpenCL.OpenCLLibraryNameContainer.yml", "OpenTK.Compute.OpenCL.OpenCLLibraryNameContainer.MacOS": "OpenTK.Compute.OpenCL.OpenCLLibraryNameContainer.yml", + "OpenTK.Compute.OpenCL.OpenCLLibraryNameContainer.OverridePath": "OpenTK.Compute.OpenCL.OpenCLLibraryNameContainer.yml", "OpenTK.Compute.OpenCL.OpenCLLibraryNameContainer.Windows": "OpenTK.Compute.OpenCL.OpenCLLibraryNameContainer.yml", "OpenTK.Compute.OpenCL.PipeInfo": "OpenTK.Compute.OpenCL.PipeInfo.yml", "OpenTK.Compute.OpenCL.PipeInfo.MaximumNumberOfPackets": "OpenTK.Compute.OpenCL.PipeInfo.yml", @@ -1722,7 +1724,6 @@ "OpenTK.Core.Platform.ClipboardFormat.Audio": "OpenTK.Core.Platform.ClipboardFormat.yml", "OpenTK.Core.Platform.ClipboardFormat.Bitmap": "OpenTK.Core.Platform.ClipboardFormat.yml", "OpenTK.Core.Platform.ClipboardFormat.Files": "OpenTK.Core.Platform.ClipboardFormat.yml", - "OpenTK.Core.Platform.ClipboardFormat.HTML": "OpenTK.Core.Platform.ClipboardFormat.yml", "OpenTK.Core.Platform.ClipboardFormat.None": "OpenTK.Core.Platform.ClipboardFormat.yml", "OpenTK.Core.Platform.ClipboardFormat.Text": "OpenTK.Core.Platform.ClipboardFormat.yml", "OpenTK.Core.Platform.ClipboardUpdateEventArgs": "OpenTK.Core.Platform.ClipboardUpdateEventArgs.yml", @@ -1730,58 +1731,81 @@ "OpenTK.Core.Platform.ClipboardUpdateEventArgs.NewFormat": "OpenTK.Core.Platform.ClipboardUpdateEventArgs.yml", "OpenTK.Core.Platform.CloseEventArgs": "OpenTK.Core.Platform.CloseEventArgs.yml", "OpenTK.Core.Platform.CloseEventArgs.#ctor(OpenTK.Core.Platform.WindowHandle)": "OpenTK.Core.Platform.CloseEventArgs.yml", - "OpenTK.Core.Platform.ComponentSet": "OpenTK.Core.Platform.ComponentSet.yml", - "OpenTK.Core.Platform.ComponentSet.Clipboard": "OpenTK.Core.Platform.ComponentSet.yml", - "OpenTK.Core.Platform.ComponentSet.Cursor": "OpenTK.Core.Platform.ComponentSet.yml", - "OpenTK.Core.Platform.ComponentSet.Display": "OpenTK.Core.Platform.ComponentSet.yml", - "OpenTK.Core.Platform.ComponentSet.Icon": "OpenTK.Core.Platform.ComponentSet.yml", - "OpenTK.Core.Platform.ComponentSet.Initialized": "OpenTK.Core.Platform.ComponentSet.yml", - "OpenTK.Core.Platform.ComponentSet.Item(OpenTK.Core.Platform.PalComponents)": "OpenTK.Core.Platform.ComponentSet.yml", - "OpenTK.Core.Platform.ComponentSet.Joystick": "OpenTK.Core.Platform.ComponentSet.yml", - "OpenTK.Core.Platform.ComponentSet.Keyboard": "OpenTK.Core.Platform.ComponentSet.yml", - "OpenTK.Core.Platform.ComponentSet.Logger": "OpenTK.Core.Platform.ComponentSet.yml", - "OpenTK.Core.Platform.ComponentSet.Mouse": "OpenTK.Core.Platform.ComponentSet.yml", - "OpenTK.Core.Platform.ComponentSet.Name": "OpenTK.Core.Platform.ComponentSet.yml", - "OpenTK.Core.Platform.ComponentSet.OpenGL": "OpenTK.Core.Platform.ComponentSet.yml", - "OpenTK.Core.Platform.ComponentSet.Provides": "OpenTK.Core.Platform.ComponentSet.yml", - "OpenTK.Core.Platform.ComponentSet.Shell": "OpenTK.Core.Platform.ComponentSet.yml", - "OpenTK.Core.Platform.ComponentSet.Surface": "OpenTK.Core.Platform.ComponentSet.yml", - "OpenTK.Core.Platform.ComponentSet.Window": "OpenTK.Core.Platform.ComponentSet.yml", "OpenTK.Core.Platform.ContextDepthBits": "OpenTK.Core.Platform.ContextDepthBits.yml", + "OpenTK.Core.Platform.ContextDepthBits.Depth16": "OpenTK.Core.Platform.ContextDepthBits.yml", "OpenTK.Core.Platform.ContextDepthBits.Depth24": "OpenTK.Core.Platform.ContextDepthBits.yml", "OpenTK.Core.Platform.ContextDepthBits.Depth32": "OpenTK.Core.Platform.ContextDepthBits.yml", "OpenTK.Core.Platform.ContextDepthBits.None": "OpenTK.Core.Platform.ContextDepthBits.yml", - "OpenTK.Core.Platform.ContextSettings": "OpenTK.Core.Platform.ContextSettings.yml", - "OpenTK.Core.Platform.ContextSettings.AlphaBits": "OpenTK.Core.Platform.ContextSettings.yml", - "OpenTK.Core.Platform.ContextSettings.BlueBits": "OpenTK.Core.Platform.ContextSettings.yml", - "OpenTK.Core.Platform.ContextSettings.DepthBits": "OpenTK.Core.Platform.ContextSettings.yml", - "OpenTK.Core.Platform.ContextSettings.DoubleBuffer": "OpenTK.Core.Platform.ContextSettings.yml", - "OpenTK.Core.Platform.ContextSettings.GreenBits": "OpenTK.Core.Platform.ContextSettings.yml", - "OpenTK.Core.Platform.ContextSettings.Multisample": "OpenTK.Core.Platform.ContextSettings.yml", - "OpenTK.Core.Platform.ContextSettings.RedBits": "OpenTK.Core.Platform.ContextSettings.yml", - "OpenTK.Core.Platform.ContextSettings.Samples": "OpenTK.Core.Platform.ContextSettings.yml", - "OpenTK.Core.Platform.ContextSettings.StencilBits": "OpenTK.Core.Platform.ContextSettings.yml", - "OpenTK.Core.Platform.ContextSettings.sRGBFramebuffer": "OpenTK.Core.Platform.ContextSettings.yml", + "OpenTK.Core.Platform.ContextPixelFormat": "OpenTK.Core.Platform.ContextPixelFormat.yml", + "OpenTK.Core.Platform.ContextPixelFormat.RGBA": "OpenTK.Core.Platform.ContextPixelFormat.yml", + "OpenTK.Core.Platform.ContextPixelFormat.RGBAFloat": "OpenTK.Core.Platform.ContextPixelFormat.yml", + "OpenTK.Core.Platform.ContextPixelFormat.RGBAPackedFloat": "OpenTK.Core.Platform.ContextPixelFormat.yml", + "OpenTK.Core.Platform.ContextReleaseBehaviour": "OpenTK.Core.Platform.ContextReleaseBehaviour.yml", + "OpenTK.Core.Platform.ContextReleaseBehaviour.Flush": "OpenTK.Core.Platform.ContextReleaseBehaviour.yml", + "OpenTK.Core.Platform.ContextReleaseBehaviour.None": "OpenTK.Core.Platform.ContextReleaseBehaviour.yml", + "OpenTK.Core.Platform.ContextResetNotificationStrategy": "OpenTK.Core.Platform.ContextResetNotificationStrategy.yml", + "OpenTK.Core.Platform.ContextResetNotificationStrategy.LoseContextOnReset": "OpenTK.Core.Platform.ContextResetNotificationStrategy.yml", + "OpenTK.Core.Platform.ContextResetNotificationStrategy.NoResetNotification": "OpenTK.Core.Platform.ContextResetNotificationStrategy.yml", "OpenTK.Core.Platform.ContextStencilBits": "OpenTK.Core.Platform.ContextStencilBits.yml", "OpenTK.Core.Platform.ContextStencilBits.None": "OpenTK.Core.Platform.ContextStencilBits.yml", "OpenTK.Core.Platform.ContextStencilBits.Stencil1": "OpenTK.Core.Platform.ContextStencilBits.yml", "OpenTK.Core.Platform.ContextStencilBits.Stencil8": "OpenTK.Core.Platform.ContextStencilBits.yml", + "OpenTK.Core.Platform.ContextSwapMethod": "OpenTK.Core.Platform.ContextSwapMethod.yml", + "OpenTK.Core.Platform.ContextSwapMethod.Copy": "OpenTK.Core.Platform.ContextSwapMethod.yml", + "OpenTK.Core.Platform.ContextSwapMethod.Exchange": "OpenTK.Core.Platform.ContextSwapMethod.yml", + "OpenTK.Core.Platform.ContextSwapMethod.Undefined": "OpenTK.Core.Platform.ContextSwapMethod.yml", + "OpenTK.Core.Platform.ContextValueSelector": "OpenTK.Core.Platform.ContextValueSelector.yml", "OpenTK.Core.Platform.ContextValues": "OpenTK.Core.Platform.ContextValues.yml", + "OpenTK.Core.Platform.ContextValues.#ctor(System.UInt64,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Boolean,System.Boolean,OpenTK.Core.Platform.ContextPixelFormat,OpenTK.Core.Platform.ContextSwapMethod,System.Int32)": "OpenTK.Core.Platform.ContextValues.yml", "OpenTK.Core.Platform.ContextValues.AlphaBits": "OpenTK.Core.Platform.ContextValues.yml", "OpenTK.Core.Platform.ContextValues.BlueBits": "OpenTK.Core.Platform.ContextValues.yml", + "OpenTK.Core.Platform.ContextValues.DefaultValuesSelector(System.Collections.Generic.IReadOnlyList{OpenTK.Core.Platform.ContextValues},OpenTK.Core.Platform.ContextValues,OpenTK.Core.Utility.ILogger)": "OpenTK.Core.Platform.ContextValues.yml", "OpenTK.Core.Platform.ContextValues.DepthBits": "OpenTK.Core.Platform.ContextValues.yml", "OpenTK.Core.Platform.ContextValues.DoubleBuffered": "OpenTK.Core.Platform.ContextValues.yml", + "OpenTK.Core.Platform.ContextValues.Equals(OpenTK.Core.Platform.ContextValues)": "OpenTK.Core.Platform.ContextValues.yml", + "OpenTK.Core.Platform.ContextValues.Equals(System.Object)": "OpenTK.Core.Platform.ContextValues.yml", + "OpenTK.Core.Platform.ContextValues.GetHashCode": "OpenTK.Core.Platform.ContextValues.yml", "OpenTK.Core.Platform.ContextValues.GreenBits": "OpenTK.Core.Platform.ContextValues.yml", - "OpenTK.Core.Platform.ContextValues.Multisample": "OpenTK.Core.Platform.ContextValues.yml", + "OpenTK.Core.Platform.ContextValues.HasEqualColorBits(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues)": "OpenTK.Core.Platform.ContextValues.yml", + "OpenTK.Core.Platform.ContextValues.HasEqualDepthBits(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues)": "OpenTK.Core.Platform.ContextValues.yml", + "OpenTK.Core.Platform.ContextValues.HasEqualDoubleBuffer(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues)": "OpenTK.Core.Platform.ContextValues.yml", + "OpenTK.Core.Platform.ContextValues.HasEqualMSAA(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues)": "OpenTK.Core.Platform.ContextValues.yml", + "OpenTK.Core.Platform.ContextValues.HasEqualPixelFormat(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues)": "OpenTK.Core.Platform.ContextValues.yml", + "OpenTK.Core.Platform.ContextValues.HasEqualSRGB(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues)": "OpenTK.Core.Platform.ContextValues.yml", + "OpenTK.Core.Platform.ContextValues.HasEqualStencilBits(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues)": "OpenTK.Core.Platform.ContextValues.yml", + "OpenTK.Core.Platform.ContextValues.HasEqualSwapMethod(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues)": "OpenTK.Core.Platform.ContextValues.yml", + "OpenTK.Core.Platform.ContextValues.HasGreaterOrEqualColorBits(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues)": "OpenTK.Core.Platform.ContextValues.yml", + "OpenTK.Core.Platform.ContextValues.HasGreaterOrEqualDepthBits(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues)": "OpenTK.Core.Platform.ContextValues.yml", + "OpenTK.Core.Platform.ContextValues.HasGreaterOrEqualStencilBits(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues)": "OpenTK.Core.Platform.ContextValues.yml", + "OpenTK.Core.Platform.ContextValues.HasLessOrEqualColorBits(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues)": "OpenTK.Core.Platform.ContextValues.yml", + "OpenTK.Core.Platform.ContextValues.HasLessOrEqualDepthBits(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues)": "OpenTK.Core.Platform.ContextValues.yml", + "OpenTK.Core.Platform.ContextValues.HasLessOrEqualStencilBits(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues)": "OpenTK.Core.Platform.ContextValues.yml", + "OpenTK.Core.Platform.ContextValues.ID": "OpenTK.Core.Platform.ContextValues.yml", + "OpenTK.Core.Platform.ContextValues.IsEqualExcludingID(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues)": "OpenTK.Core.Platform.ContextValues.yml", + "OpenTK.Core.Platform.ContextValues.PixelFormat": "OpenTK.Core.Platform.ContextValues.yml", "OpenTK.Core.Platform.ContextValues.RedBits": "OpenTK.Core.Platform.ContextValues.yml", "OpenTK.Core.Platform.ContextValues.SRGBFramebuffer": "OpenTK.Core.Platform.ContextValues.yml", "OpenTK.Core.Platform.ContextValues.Samples": "OpenTK.Core.Platform.ContextValues.yml", "OpenTK.Core.Platform.ContextValues.StencilBits": "OpenTK.Core.Platform.ContextValues.yml", + "OpenTK.Core.Platform.ContextValues.SwapMethod": "OpenTK.Core.Platform.ContextValues.yml", + "OpenTK.Core.Platform.ContextValues.ToString": "OpenTK.Core.Platform.ContextValues.yml", + "OpenTK.Core.Platform.ContextValues.op_Equality(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues)": "OpenTK.Core.Platform.ContextValues.yml", + "OpenTK.Core.Platform.ContextValues.op_Inequality(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues)": "OpenTK.Core.Platform.ContextValues.yml", "OpenTK.Core.Platform.CursorCaptureMode": "OpenTK.Core.Platform.CursorCaptureMode.yml", "OpenTK.Core.Platform.CursorCaptureMode.Confined": "OpenTK.Core.Platform.CursorCaptureMode.yml", "OpenTK.Core.Platform.CursorCaptureMode.Locked": "OpenTK.Core.Platform.CursorCaptureMode.yml", "OpenTK.Core.Platform.CursorCaptureMode.Normal": "OpenTK.Core.Platform.CursorCaptureMode.yml", "OpenTK.Core.Platform.CursorHandle": "OpenTK.Core.Platform.CursorHandle.yml", + "OpenTK.Core.Platform.DialogFileFilter": "OpenTK.Core.Platform.DialogFileFilter.yml", + "OpenTK.Core.Platform.DialogFileFilter.#ctor(System.String,System.String)": "OpenTK.Core.Platform.DialogFileFilter.yml", + "OpenTK.Core.Platform.DialogFileFilter.Equals(OpenTK.Core.Platform.DialogFileFilter)": "OpenTK.Core.Platform.DialogFileFilter.yml", + "OpenTK.Core.Platform.DialogFileFilter.Equals(System.Object)": "OpenTK.Core.Platform.DialogFileFilter.yml", + "OpenTK.Core.Platform.DialogFileFilter.Filter": "OpenTK.Core.Platform.DialogFileFilter.yml", + "OpenTK.Core.Platform.DialogFileFilter.GetHashCode": "OpenTK.Core.Platform.DialogFileFilter.yml", + "OpenTK.Core.Platform.DialogFileFilter.Name": "OpenTK.Core.Platform.DialogFileFilter.yml", + "OpenTK.Core.Platform.DialogFileFilter.ToString": "OpenTK.Core.Platform.DialogFileFilter.yml", + "OpenTK.Core.Platform.DialogFileFilter.op_Equality(OpenTK.Core.Platform.DialogFileFilter,OpenTK.Core.Platform.DialogFileFilter)": "OpenTK.Core.Platform.DialogFileFilter.yml", + "OpenTK.Core.Platform.DialogFileFilter.op_Inequality(OpenTK.Core.Platform.DialogFileFilter,OpenTK.Core.Platform.DialogFileFilter)": "OpenTK.Core.Platform.DialogFileFilter.yml", "OpenTK.Core.Platform.DisplayConnectionChangedEventArgs": "OpenTK.Core.Platform.DisplayConnectionChangedEventArgs.yml", "OpenTK.Core.Platform.DisplayConnectionChangedEventArgs.#ctor(OpenTK.Core.Platform.DisplayHandle,System.Boolean)": "OpenTK.Core.Platform.DisplayConnectionChangedEventArgs.yml", "OpenTK.Core.Platform.DisplayConnectionChangedEventArgs.Disconnected": "OpenTK.Core.Platform.DisplayConnectionChangedEventArgs.yml", @@ -1843,7 +1867,6 @@ "OpenTK.Core.Platform.IClipboardComponent.GetClipboardBitmap": "OpenTK.Core.Platform.IClipboardComponent.yml", "OpenTK.Core.Platform.IClipboardComponent.GetClipboardFiles": "OpenTK.Core.Platform.IClipboardComponent.yml", "OpenTK.Core.Platform.IClipboardComponent.GetClipboardFormat": "OpenTK.Core.Platform.IClipboardComponent.yml", - "OpenTK.Core.Platform.IClipboardComponent.GetClipboardHTML": "OpenTK.Core.Platform.IClipboardComponent.yml", "OpenTK.Core.Platform.IClipboardComponent.GetClipboardText": "OpenTK.Core.Platform.IClipboardComponent.yml", "OpenTK.Core.Platform.IClipboardComponent.SetClipboardText(System.String)": "OpenTK.Core.Platform.IClipboardComponent.yml", "OpenTK.Core.Platform.IClipboardComponent.SupportedFormats": "OpenTK.Core.Platform.IClipboardComponent.yml", @@ -1857,6 +1880,10 @@ "OpenTK.Core.Platform.ICursorComponent.GetHotspot(OpenTK.Core.Platform.CursorHandle,System.Int32@,System.Int32@)": "OpenTK.Core.Platform.ICursorComponent.yml", "OpenTK.Core.Platform.ICursorComponent.GetSize(OpenTK.Core.Platform.CursorHandle,System.Int32@,System.Int32@)": "OpenTK.Core.Platform.ICursorComponent.yml", "OpenTK.Core.Platform.ICursorComponent.IsSystemCursor(OpenTK.Core.Platform.CursorHandle)": "OpenTK.Core.Platform.ICursorComponent.yml", + "OpenTK.Core.Platform.IDialogComponent": "OpenTK.Core.Platform.IDialogComponent.yml", + "OpenTK.Core.Platform.IDialogComponent.CanTargetFolders": "OpenTK.Core.Platform.IDialogComponent.yml", + "OpenTK.Core.Platform.IDialogComponent.ShowOpenDialog(OpenTK.Core.Platform.WindowHandle,System.String,System.String,OpenTK.Core.Platform.DialogFileFilter[],OpenTK.Core.Platform.OpenDialogOptions)": "OpenTK.Core.Platform.IDialogComponent.yml", + "OpenTK.Core.Platform.IDialogComponent.ShowSaveDialog(OpenTK.Core.Platform.WindowHandle,System.String,System.String,OpenTK.Core.Platform.DialogFileFilter[],OpenTK.Core.Platform.SaveDialogOptions)": "OpenTK.Core.Platform.IDialogComponent.yml", "OpenTK.Core.Platform.IDisplayComponent": "OpenTK.Core.Platform.IDisplayComponent.yml", "OpenTK.Core.Platform.IDisplayComponent.CanGetVirtualPosition": "OpenTK.Core.Platform.IDisplayComponent.yml", "OpenTK.Core.Platform.IDisplayComponent.Close(OpenTK.Core.Platform.DisplayHandle)": "OpenTK.Core.Platform.IDisplayComponent.yml", @@ -1924,7 +1951,7 @@ "OpenTK.Core.Platform.IOpenGLComponent.SetSwapInterval(System.Int32)": "OpenTK.Core.Platform.IOpenGLComponent.yml", "OpenTK.Core.Platform.IOpenGLComponent.SwapBuffers(OpenTK.Core.Platform.OpenGLContextHandle)": "OpenTK.Core.Platform.IOpenGLComponent.yml", "OpenTK.Core.Platform.IPalComponent": "OpenTK.Core.Platform.IPalComponent.yml", - "OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents)": "OpenTK.Core.Platform.IPalComponent.yml", + "OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions)": "OpenTK.Core.Platform.IPalComponent.yml", "OpenTK.Core.Platform.IPalComponent.Logger": "OpenTK.Core.Platform.IPalComponent.yml", "OpenTK.Core.Platform.IPalComponent.Name": "OpenTK.Core.Platform.IPalComponent.yml", "OpenTK.Core.Platform.IPalComponent.Provides": "OpenTK.Core.Platform.IPalComponent.yml", @@ -1956,15 +1983,18 @@ "OpenTK.Core.Platform.IWindowComponent.GetClientSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@)": "OpenTK.Core.Platform.IWindowComponent.yml", "OpenTK.Core.Platform.IWindowComponent.GetCursorCaptureMode(OpenTK.Core.Platform.WindowHandle)": "OpenTK.Core.Platform.IWindowComponent.yml", "OpenTK.Core.Platform.IWindowComponent.GetDisplay(OpenTK.Core.Platform.WindowHandle)": "OpenTK.Core.Platform.IWindowComponent.yml", + "OpenTK.Core.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@)": "OpenTK.Core.Platform.IWindowComponent.yml", "OpenTK.Core.Platform.IWindowComponent.GetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle@)": "OpenTK.Core.Platform.IWindowComponent.yml", "OpenTK.Core.Platform.IWindowComponent.GetIcon(OpenTK.Core.Platform.WindowHandle)": "OpenTK.Core.Platform.IWindowComponent.yml", "OpenTK.Core.Platform.IWindowComponent.GetMaxClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@)": "OpenTK.Core.Platform.IWindowComponent.yml", "OpenTK.Core.Platform.IWindowComponent.GetMinClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@)": "OpenTK.Core.Platform.IWindowComponent.yml", "OpenTK.Core.Platform.IWindowComponent.GetMode(OpenTK.Core.Platform.WindowHandle)": "OpenTK.Core.Platform.IWindowComponent.yml", "OpenTK.Core.Platform.IWindowComponent.GetPosition(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@)": "OpenTK.Core.Platform.IWindowComponent.yml", + "OpenTK.Core.Platform.IWindowComponent.GetScaleFactor(OpenTK.Core.Platform.WindowHandle,System.Single@,System.Single@)": "OpenTK.Core.Platform.IWindowComponent.yml", "OpenTK.Core.Platform.IWindowComponent.GetSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@)": "OpenTK.Core.Platform.IWindowComponent.yml", "OpenTK.Core.Platform.IWindowComponent.GetTitle(OpenTK.Core.Platform.WindowHandle)": "OpenTK.Core.Platform.IWindowComponent.yml", "OpenTK.Core.Platform.IWindowComponent.IsAlwaysOnTop(OpenTK.Core.Platform.WindowHandle)": "OpenTK.Core.Platform.IWindowComponent.yml", + "OpenTK.Core.Platform.IWindowComponent.IsFocused(OpenTK.Core.Platform.WindowHandle)": "OpenTK.Core.Platform.IWindowComponent.yml", "OpenTK.Core.Platform.IWindowComponent.IsWindowDestroyed(OpenTK.Core.Platform.WindowHandle)": "OpenTK.Core.Platform.IWindowComponent.yml", "OpenTK.Core.Platform.IWindowComponent.ProcessEvents(System.Boolean)": "OpenTK.Core.Platform.IWindowComponent.yml", "OpenTK.Core.Platform.IWindowComponent.RequestAttention(OpenTK.Core.Platform.WindowHandle)": "OpenTK.Core.Platform.IWindowComponent.yml", @@ -2216,9 +2246,12 @@ "OpenTK.Core.Platform.MouseState.Position": "OpenTK.Core.Platform.MouseState.yml", "OpenTK.Core.Platform.MouseState.PressedButtons": "OpenTK.Core.Platform.MouseState.yml", "OpenTK.Core.Platform.MouseState.Scroll": "OpenTK.Core.Platform.MouseState.yml", + "OpenTK.Core.Platform.OpenDialogOptions": "OpenTK.Core.Platform.OpenDialogOptions.yml", + "OpenTK.Core.Platform.OpenDialogOptions.AllowMultiSelect": "OpenTK.Core.Platform.OpenDialogOptions.yml", + "OpenTK.Core.Platform.OpenDialogOptions.SelectDirectory": "OpenTK.Core.Platform.OpenDialogOptions.yml", "OpenTK.Core.Platform.OpenGLContextHandle": "OpenTK.Core.Platform.OpenGLContextHandle.yml", "OpenTK.Core.Platform.OpenGLGraphicsApiHints": "OpenTK.Core.Platform.OpenGLGraphicsApiHints.yml", - "OpenTK.Core.Platform.OpenGLGraphicsApiHints.#ctor(OpenTK.Core.Platform.GraphicsApi)": "OpenTK.Core.Platform.OpenGLGraphicsApiHints.yml", + "OpenTK.Core.Platform.OpenGLGraphicsApiHints.#ctor": "OpenTK.Core.Platform.OpenGLGraphicsApiHints.yml", "OpenTK.Core.Platform.OpenGLGraphicsApiHints.AlphaColorBits": "OpenTK.Core.Platform.OpenGLGraphicsApiHints.yml", "OpenTK.Core.Platform.OpenGLGraphicsApiHints.Api": "OpenTK.Core.Platform.OpenGLGraphicsApiHints.yml", "OpenTK.Core.Platform.OpenGLGraphicsApiHints.BlueColorBits": "OpenTK.Core.Platform.OpenGLGraphicsApiHints.yml", @@ -2229,10 +2262,20 @@ "OpenTK.Core.Platform.OpenGLGraphicsApiHints.ForwardCompatibleFlag": "OpenTK.Core.Platform.OpenGLGraphicsApiHints.yml", "OpenTK.Core.Platform.OpenGLGraphicsApiHints.GreenColorBits": "OpenTK.Core.Platform.OpenGLGraphicsApiHints.yml", "OpenTK.Core.Platform.OpenGLGraphicsApiHints.Multisamples": "OpenTK.Core.Platform.OpenGLGraphicsApiHints.yml", + "OpenTK.Core.Platform.OpenGLGraphicsApiHints.NoError": "OpenTK.Core.Platform.OpenGLGraphicsApiHints.yml", + "OpenTK.Core.Platform.OpenGLGraphicsApiHints.PixelFormat": "OpenTK.Core.Platform.OpenGLGraphicsApiHints.yml", "OpenTK.Core.Platform.OpenGLGraphicsApiHints.Profile": "OpenTK.Core.Platform.OpenGLGraphicsApiHints.yml", "OpenTK.Core.Platform.OpenGLGraphicsApiHints.RedColorBits": "OpenTK.Core.Platform.OpenGLGraphicsApiHints.yml", + "OpenTK.Core.Platform.OpenGLGraphicsApiHints.ReleaseBehaviour": "OpenTK.Core.Platform.OpenGLGraphicsApiHints.yml", + "OpenTK.Core.Platform.OpenGLGraphicsApiHints.ResetIsolation": "OpenTK.Core.Platform.OpenGLGraphicsApiHints.yml", + "OpenTK.Core.Platform.OpenGLGraphicsApiHints.ResetNotificationStrategy": "OpenTK.Core.Platform.OpenGLGraphicsApiHints.yml", + "OpenTK.Core.Platform.OpenGLGraphicsApiHints.RobustnessFlag": "OpenTK.Core.Platform.OpenGLGraphicsApiHints.yml", + "OpenTK.Core.Platform.OpenGLGraphicsApiHints.Selector": "OpenTK.Core.Platform.OpenGLGraphicsApiHints.yml", "OpenTK.Core.Platform.OpenGLGraphicsApiHints.SharedContext": "OpenTK.Core.Platform.OpenGLGraphicsApiHints.yml", "OpenTK.Core.Platform.OpenGLGraphicsApiHints.StencilBits": "OpenTK.Core.Platform.OpenGLGraphicsApiHints.yml", + "OpenTK.Core.Platform.OpenGLGraphicsApiHints.SwapMethod": "OpenTK.Core.Platform.OpenGLGraphicsApiHints.yml", + "OpenTK.Core.Platform.OpenGLGraphicsApiHints.UseFlushControl": "OpenTK.Core.Platform.OpenGLGraphicsApiHints.yml", + "OpenTK.Core.Platform.OpenGLGraphicsApiHints.UseSelectorOnMacOS": "OpenTK.Core.Platform.OpenGLGraphicsApiHints.yml", "OpenTK.Core.Platform.OpenGLGraphicsApiHints.Version": "OpenTK.Core.Platform.OpenGLGraphicsApiHints.yml", "OpenTK.Core.Platform.OpenGLGraphicsApiHints.sRGBFramebuffer": "OpenTK.Core.Platform.OpenGLGraphicsApiHints.yml", "OpenTK.Core.Platform.OpenGLProfile": "OpenTK.Core.Platform.OpenGLProfile.yml", @@ -2247,6 +2290,7 @@ "OpenTK.Core.Platform.PalComponents": "OpenTK.Core.Platform.PalComponents.yml", "OpenTK.Core.Platform.PalComponents.Clipboard": "OpenTK.Core.Platform.PalComponents.yml", "OpenTK.Core.Platform.PalComponents.ControllerInput": "OpenTK.Core.Platform.PalComponents.yml", + "OpenTK.Core.Platform.PalComponents.Dialog": "OpenTK.Core.Platform.PalComponents.yml", "OpenTK.Core.Platform.PalComponents.Display": "OpenTK.Core.Platform.PalComponents.yml", "OpenTK.Core.Platform.PalComponents.Joystick": "OpenTK.Core.Platform.PalComponents.yml", "OpenTK.Core.Platform.PalComponents.KeyboardInput": "OpenTK.Core.Platform.PalComponents.yml", @@ -2289,16 +2333,18 @@ "OpenTK.Core.Platform.PlatformEventType.TextEditing": "OpenTK.Core.Platform.PlatformEventType.yml", "OpenTK.Core.Platform.PlatformEventType.TextInput": "OpenTK.Core.Platform.PlatformEventType.yml", "OpenTK.Core.Platform.PlatformEventType.ThemeChange": "OpenTK.Core.Platform.PlatformEventType.yml", - "OpenTK.Core.Platform.PlatformEventType.WindowDpiChange": "OpenTK.Core.Platform.PlatformEventType.yml", + "OpenTK.Core.Platform.PlatformEventType.WindowFramebufferResize": "OpenTK.Core.Platform.PlatformEventType.yml", "OpenTK.Core.Platform.PlatformEventType.WindowModeChange": "OpenTK.Core.Platform.PlatformEventType.yml", "OpenTK.Core.Platform.PlatformEventType.WindowMove": "OpenTK.Core.Platform.PlatformEventType.yml", "OpenTK.Core.Platform.PlatformEventType.WindowResize": "OpenTK.Core.Platform.PlatformEventType.yml", + "OpenTK.Core.Platform.PlatformEventType.WindowScaleChange": "OpenTK.Core.Platform.PlatformEventType.yml", "OpenTK.Core.Platform.PlatformException": "OpenTK.Core.Platform.PlatformException.yml", "OpenTK.Core.Platform.PlatformException.#ctor": "OpenTK.Core.Platform.PlatformException.yml", "OpenTK.Core.Platform.PlatformException.#ctor(System.String)": "OpenTK.Core.Platform.PlatformException.yml", "OpenTK.Core.Platform.PowerStateChangeEventArgs": "OpenTK.Core.Platform.PowerStateChangeEventArgs.yml", "OpenTK.Core.Platform.PowerStateChangeEventArgs.#ctor(System.Boolean)": "OpenTK.Core.Platform.PowerStateChangeEventArgs.yml", "OpenTK.Core.Platform.PowerStateChangeEventArgs.GoingToSleep": "OpenTK.Core.Platform.PowerStateChangeEventArgs.yml", + "OpenTK.Core.Platform.SaveDialogOptions": "OpenTK.Core.Platform.SaveDialogOptions.yml", "OpenTK.Core.Platform.Scancode": "OpenTK.Core.Platform.Scancode.yml", "OpenTK.Core.Platform.Scancode.A": "OpenTK.Core.Platform.Scancode.yml", "OpenTK.Core.Platform.Scancode.Application": "OpenTK.Core.Platform.Scancode.yml", @@ -2503,6 +2549,9 @@ "OpenTK.Core.Platform.ThemeInfo.ToString": "OpenTK.Core.Platform.ThemeInfo.yml", "OpenTK.Core.Platform.ThemeInfo.op_Equality(OpenTK.Core.Platform.ThemeInfo,OpenTK.Core.Platform.ThemeInfo)": "OpenTK.Core.Platform.ThemeInfo.yml", "OpenTK.Core.Platform.ThemeInfo.op_Inequality(OpenTK.Core.Platform.ThemeInfo,OpenTK.Core.Platform.ThemeInfo)": "OpenTK.Core.Platform.ThemeInfo.yml", + "OpenTK.Core.Platform.ToolkitOptions": "OpenTK.Core.Platform.ToolkitOptions.yml", + "OpenTK.Core.Platform.ToolkitOptions.ApplicationName": "OpenTK.Core.Platform.ToolkitOptions.yml", + "OpenTK.Core.Platform.ToolkitOptions.Logger": "OpenTK.Core.Platform.ToolkitOptions.yml", "OpenTK.Core.Platform.VideoMode": "OpenTK.Core.Platform.VideoMode.yml", "OpenTK.Core.Platform.VideoMode.#ctor(System.Int32,System.Int32,System.Single,System.Int32)": "OpenTK.Core.Platform.VideoMode.yml", "OpenTK.Core.Platform.VideoMode.BitsPerPixel": "OpenTK.Core.Platform.VideoMode.yml", @@ -2515,16 +2564,13 @@ "OpenTK.Core.Platform.WindowBorderStyle.FixedBorder": "OpenTK.Core.Platform.WindowBorderStyle.yml", "OpenTK.Core.Platform.WindowBorderStyle.ResizableBorder": "OpenTK.Core.Platform.WindowBorderStyle.yml", "OpenTK.Core.Platform.WindowBorderStyle.ToolBox": "OpenTK.Core.Platform.WindowBorderStyle.yml", - "OpenTK.Core.Platform.WindowDpiChangeEventArgs": "OpenTK.Core.Platform.WindowDpiChangeEventArgs.yml", - "OpenTK.Core.Platform.WindowDpiChangeEventArgs.#ctor(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Single,System.Single)": "OpenTK.Core.Platform.WindowDpiChangeEventArgs.yml", - "OpenTK.Core.Platform.WindowDpiChangeEventArgs.DpiX": "OpenTK.Core.Platform.WindowDpiChangeEventArgs.yml", - "OpenTK.Core.Platform.WindowDpiChangeEventArgs.DpiY": "OpenTK.Core.Platform.WindowDpiChangeEventArgs.yml", - "OpenTK.Core.Platform.WindowDpiChangeEventArgs.ScaleX": "OpenTK.Core.Platform.WindowDpiChangeEventArgs.yml", - "OpenTK.Core.Platform.WindowDpiChangeEventArgs.ScaleY": "OpenTK.Core.Platform.WindowDpiChangeEventArgs.yml", "OpenTK.Core.Platform.WindowEventArgs": "OpenTK.Core.Platform.WindowEventArgs.yml", "OpenTK.Core.Platform.WindowEventArgs.#ctor(OpenTK.Core.Platform.WindowHandle)": "OpenTK.Core.Platform.WindowEventArgs.yml", "OpenTK.Core.Platform.WindowEventArgs.Window": "OpenTK.Core.Platform.WindowEventArgs.yml", "OpenTK.Core.Platform.WindowEventHandler": "OpenTK.Core.Platform.WindowEventHandler.yml", + "OpenTK.Core.Platform.WindowFramebufferResizeEventArgs": "OpenTK.Core.Platform.WindowFramebufferResizeEventArgs.yml", + "OpenTK.Core.Platform.WindowFramebufferResizeEventArgs.#ctor(OpenTK.Core.Platform.WindowHandle,OpenTK.Mathematics.Vector2i)": "OpenTK.Core.Platform.WindowFramebufferResizeEventArgs.yml", + "OpenTK.Core.Platform.WindowFramebufferResizeEventArgs.NewFramebufferSize": "OpenTK.Core.Platform.WindowFramebufferResizeEventArgs.yml", "OpenTK.Core.Platform.WindowHandle": "OpenTK.Core.Platform.WindowHandle.yml", "OpenTK.Core.Platform.WindowHandle.#ctor(OpenTK.Core.Platform.GraphicsApiHints)": "OpenTK.Core.Platform.WindowHandle.yml", "OpenTK.Core.Platform.WindowHandle.GraphicsApiHints": "OpenTK.Core.Platform.WindowHandle.yml", @@ -2543,8 +2589,13 @@ "OpenTK.Core.Platform.WindowMoveEventArgs.ClientAreaPosition": "OpenTK.Core.Platform.WindowMoveEventArgs.yml", "OpenTK.Core.Platform.WindowMoveEventArgs.WindowPosition": "OpenTK.Core.Platform.WindowMoveEventArgs.yml", "OpenTK.Core.Platform.WindowResizeEventArgs": "OpenTK.Core.Platform.WindowResizeEventArgs.yml", - "OpenTK.Core.Platform.WindowResizeEventArgs.#ctor(OpenTK.Core.Platform.WindowHandle,OpenTK.Mathematics.Vector2i)": "OpenTK.Core.Platform.WindowResizeEventArgs.yml", + "OpenTK.Core.Platform.WindowResizeEventArgs.#ctor(OpenTK.Core.Platform.WindowHandle,OpenTK.Mathematics.Vector2i,OpenTK.Mathematics.Vector2i)": "OpenTK.Core.Platform.WindowResizeEventArgs.yml", + "OpenTK.Core.Platform.WindowResizeEventArgs.NewClientSize": "OpenTK.Core.Platform.WindowResizeEventArgs.yml", "OpenTK.Core.Platform.WindowResizeEventArgs.NewSize": "OpenTK.Core.Platform.WindowResizeEventArgs.yml", + "OpenTK.Core.Platform.WindowScaleChangeEventArgs": "OpenTK.Core.Platform.WindowScaleChangeEventArgs.yml", + "OpenTK.Core.Platform.WindowScaleChangeEventArgs.#ctor(OpenTK.Core.Platform.WindowHandle,System.Single,System.Single)": "OpenTK.Core.Platform.WindowScaleChangeEventArgs.yml", + "OpenTK.Core.Platform.WindowScaleChangeEventArgs.ScaleX": "OpenTK.Core.Platform.WindowScaleChangeEventArgs.yml", + "OpenTK.Core.Platform.WindowScaleChangeEventArgs.ScaleY": "OpenTK.Core.Platform.WindowScaleChangeEventArgs.yml", "OpenTK.Core.Utility": "OpenTK.Core.Utility.yml", "OpenTK.Core.Utility.ConsoleLogger": "OpenTK.Core.Utility.ConsoleLogger.yml", "OpenTK.Core.Utility.ConsoleLogger.Filter": "OpenTK.Core.Utility.ConsoleLogger.yml", @@ -2552,8 +2603,11 @@ "OpenTK.Core.Utility.DebugFileLogger.#ctor(System.String)": "OpenTK.Core.Utility.DebugFileLogger.yml", "OpenTK.Core.Utility.DebugFileLogger.Filter": "OpenTK.Core.Utility.DebugFileLogger.yml", "OpenTK.Core.Utility.DebugFileLogger.Writer": "OpenTK.Core.Utility.DebugFileLogger.yml", + "OpenTK.Core.Utility.DebugLogger": "OpenTK.Core.Utility.DebugLogger.yml", + "OpenTK.Core.Utility.DebugLogger.Filter": "OpenTK.Core.Utility.DebugLogger.yml", "OpenTK.Core.Utility.ILogger": "OpenTK.Core.Utility.ILogger.yml", "OpenTK.Core.Utility.ILogger.Filter": "OpenTK.Core.Utility.ILogger.yml", + "OpenTK.Core.Utility.ILogger.Flush": "OpenTK.Core.Utility.ILogger.yml", "OpenTK.Core.Utility.ILogger.Log(System.String,OpenTK.Core.Utility.LogLevel,System.String,System.Int32,System.String)": "OpenTK.Core.Utility.ILogger.yml", "OpenTK.Core.Utility.ILogger.LogDebug(System.String,System.String,System.Int32,System.String)": "OpenTK.Core.Utility.ILogger.yml", "OpenTK.Core.Utility.ILogger.LogError(System.String,System.String,System.Int32,System.String)": "OpenTK.Core.Utility.ILogger.yml", @@ -2865,6 +2919,9 @@ "OpenTK.Graphics.GLSync.op_Explicit(OpenTK.Graphics.GLSync)~System.IntPtr": "OpenTK.Graphics.GLSync.yml", "OpenTK.Graphics.GLSync.op_Explicit(System.IntPtr)~OpenTK.Graphics.GLSync": "OpenTK.Graphics.GLSync.yml", "OpenTK.Graphics.GLSync.op_Inequality(OpenTK.Graphics.GLSync,OpenTK.Graphics.GLSync)": "OpenTK.Graphics.GLSync.yml", + "OpenTK.Graphics.GLXLoader": "OpenTK.Graphics.GLXLoader.yml", + "OpenTK.Graphics.GLXLoader.BindingsContext": "OpenTK.Graphics.GLXLoader.BindingsContext.yml", + "OpenTK.Graphics.GLXLoader.BindingsContext.GetProcAddress(System.String)": "OpenTK.Graphics.GLXLoader.BindingsContext.yml", "OpenTK.Graphics.Glx": "OpenTK.Graphics.Glx.yml", "OpenTK.Graphics.Glx.All": "OpenTK.Graphics.Glx.All.yml", "OpenTK.Graphics.Glx.All.AccumAlphaSize": "OpenTK.Graphics.Glx.All.yml", @@ -3165,9 +3222,11 @@ "OpenTK.Graphics.Glx.Colormap.XID": "OpenTK.Graphics.Glx.Colormap.yml", "OpenTK.Graphics.Glx.Colormap.op_Explicit(OpenTK.Graphics.Glx.Colormap)~System.UIntPtr": "OpenTK.Graphics.Glx.Colormap.yml", "OpenTK.Graphics.Glx.Colormap.op_Explicit(System.UIntPtr)~OpenTK.Graphics.Glx.Colormap": "OpenTK.Graphics.Glx.Colormap.yml", - "OpenTK.Graphics.Glx.Display": "OpenTK.Graphics.Glx.Display.yml", "OpenTK.Graphics.Glx.DisplayPtr": "OpenTK.Graphics.Glx.DisplayPtr.yml", + "OpenTK.Graphics.Glx.DisplayPtr.#ctor(System.IntPtr)": "OpenTK.Graphics.Glx.DisplayPtr.yml", "OpenTK.Graphics.Glx.DisplayPtr.Value": "OpenTK.Graphics.Glx.DisplayPtr.yml", + "OpenTK.Graphics.Glx.DisplayPtr.op_Explicit(OpenTK.Graphics.Glx.DisplayPtr)~System.IntPtr": "OpenTK.Graphics.Glx.DisplayPtr.yml", + "OpenTK.Graphics.Glx.DisplayPtr.op_Explicit(System.IntPtr)~OpenTK.Graphics.Glx.DisplayPtr": "OpenTK.Graphics.Glx.DisplayPtr.yml", "OpenTK.Graphics.Glx.Font": "OpenTK.Graphics.Glx.Font.yml", "OpenTK.Graphics.Glx.Font.#ctor(System.UIntPtr)": "OpenTK.Graphics.Glx.Font.yml", "OpenTK.Graphics.Glx.Font.XID": "OpenTK.Graphics.Glx.Font.yml", @@ -3301,78 +3360,61 @@ "OpenTK.Graphics.Glx.Glx.AMD.GetGPUInfoAMD``1(System.UInt32,System.Int32,OpenTK.Graphics.Glx.All,System.UInt32,``0@)": "OpenTK.Graphics.Glx.Glx.AMD.yml", "OpenTK.Graphics.Glx.Glx.AMD.MakeAssociatedContextCurrentAMD(OpenTK.Graphics.Glx.GLXContext)": "OpenTK.Graphics.Glx.Glx.AMD.yml", "OpenTK.Graphics.Glx.Glx.ARB": "OpenTK.Graphics.Glx.Glx.ARB.yml", - "OpenTK.Graphics.Glx.Glx.ARB.CreateContextAttribsARB(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.GLXContext,System.Boolean,System.Int32*)": "OpenTK.Graphics.Glx.Glx.ARB.yml", - "OpenTK.Graphics.Glx.Glx.ARB.CreateContextAttribsARB(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.GLXContext,System.Boolean,System.Int32@)": "OpenTK.Graphics.Glx.Glx.ARB.yml", + "OpenTK.Graphics.Glx.Glx.ARB.CreateContextAttribsARB(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.GLXContext,System.Boolean,System.Int32*)": "OpenTK.Graphics.Glx.Glx.ARB.yml", + "OpenTK.Graphics.Glx.Glx.ARB.CreateContextAttribsARB(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.GLXContext,System.Boolean,System.Int32@)": "OpenTK.Graphics.Glx.Glx.ARB.yml", "OpenTK.Graphics.Glx.Glx.ARB.GetProcAddressARB(System.Byte*)": "OpenTK.Graphics.Glx.Glx.ARB.yml", "OpenTK.Graphics.Glx.Glx.ARB.GetProcAddressARB(System.Byte@)": "OpenTK.Graphics.Glx.Glx.ARB.yml", - "OpenTK.Graphics.Glx.Glx.ChooseFBConfig(OpenTK.Graphics.Glx.Display*,System.Int32,System.Int32*,System.Int32*)": "OpenTK.Graphics.Glx.Glx.yml", - "OpenTK.Graphics.Glx.Glx.ChooseFBConfig(OpenTK.Graphics.Glx.Display@,System.Int32,System.Int32@,System.Int32@)": "OpenTK.Graphics.Glx.Glx.yml", - "OpenTK.Graphics.Glx.Glx.ChooseVisual(OpenTK.Graphics.Glx.Display*,System.Int32,System.Int32*)": "OpenTK.Graphics.Glx.Glx.yml", - "OpenTK.Graphics.Glx.Glx.ChooseVisual(OpenTK.Graphics.Glx.Display@,System.Int32,System.Int32@)": "OpenTK.Graphics.Glx.Glx.yml", - "OpenTK.Graphics.Glx.Glx.CopyContext(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXContext,OpenTK.Graphics.Glx.GLXContext,System.UInt64)": "OpenTK.Graphics.Glx.Glx.yml", - "OpenTK.Graphics.Glx.Glx.CopyContext(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXContext,OpenTK.Graphics.Glx.GLXContext,System.UInt64)": "OpenTK.Graphics.Glx.Glx.yml", - "OpenTK.Graphics.Glx.Glx.CreateContext(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.XVisualInfo*,OpenTK.Graphics.Glx.GLXContext,System.Boolean)": "OpenTK.Graphics.Glx.Glx.yml", - "OpenTK.Graphics.Glx.Glx.CreateContext(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.XVisualInfo@,OpenTK.Graphics.Glx.GLXContext,System.Boolean)": "OpenTK.Graphics.Glx.Glx.yml", - "OpenTK.Graphics.Glx.Glx.CreateGLXPixmap(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.XVisualInfo*,OpenTK.Graphics.Glx.Pixmap)": "OpenTK.Graphics.Glx.Glx.yml", - "OpenTK.Graphics.Glx.Glx.CreateGLXPixmap(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.XVisualInfo@,OpenTK.Graphics.Glx.Pixmap)": "OpenTK.Graphics.Glx.Glx.yml", - "OpenTK.Graphics.Glx.Glx.CreateNewContext(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXFBConfig,System.Int32,OpenTK.Graphics.Glx.GLXContext,System.Boolean)": "OpenTK.Graphics.Glx.Glx.yml", - "OpenTK.Graphics.Glx.Glx.CreateNewContext(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXFBConfig,System.Int32,OpenTK.Graphics.Glx.GLXContext,System.Boolean)": "OpenTK.Graphics.Glx.Glx.yml", - "OpenTK.Graphics.Glx.Glx.CreatePbuffer(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXFBConfig,System.Int32*)": "OpenTK.Graphics.Glx.Glx.yml", - "OpenTK.Graphics.Glx.Glx.CreatePbuffer(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXFBConfig,System.Int32@)": "OpenTK.Graphics.Glx.Glx.yml", - "OpenTK.Graphics.Glx.Glx.CreatePixmap(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.Pixmap,System.Int32*)": "OpenTK.Graphics.Glx.Glx.yml", - "OpenTK.Graphics.Glx.Glx.CreatePixmap(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.Pixmap,System.Int32@)": "OpenTK.Graphics.Glx.Glx.yml", - "OpenTK.Graphics.Glx.Glx.CreateWindow(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.Window,System.Int32*)": "OpenTK.Graphics.Glx.Glx.yml", - "OpenTK.Graphics.Glx.Glx.CreateWindow(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.Window,System.Int32@)": "OpenTK.Graphics.Glx.Glx.yml", - "OpenTK.Graphics.Glx.Glx.DestroyContext(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXContext)": "OpenTK.Graphics.Glx.Glx.yml", - "OpenTK.Graphics.Glx.Glx.DestroyContext(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXContext)": "OpenTK.Graphics.Glx.Glx.yml", - "OpenTK.Graphics.Glx.Glx.DestroyGLXPixmap(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXPixmap)": "OpenTK.Graphics.Glx.Glx.yml", - "OpenTK.Graphics.Glx.Glx.DestroyGLXPixmap(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXPixmap)": "OpenTK.Graphics.Glx.Glx.yml", - "OpenTK.Graphics.Glx.Glx.DestroyPbuffer(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXPbuffer)": "OpenTK.Graphics.Glx.Glx.yml", - "OpenTK.Graphics.Glx.Glx.DestroyPbuffer(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXPbuffer)": "OpenTK.Graphics.Glx.Glx.yml", - "OpenTK.Graphics.Glx.Glx.DestroyPixmap(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXPixmap)": "OpenTK.Graphics.Glx.Glx.yml", - "OpenTK.Graphics.Glx.Glx.DestroyPixmap(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXPixmap)": "OpenTK.Graphics.Glx.Glx.yml", - "OpenTK.Graphics.Glx.Glx.DestroyWindow(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXWindow)": "OpenTK.Graphics.Glx.Glx.yml", - "OpenTK.Graphics.Glx.Glx.DestroyWindow(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXWindow)": "OpenTK.Graphics.Glx.Glx.yml", + "OpenTK.Graphics.Glx.Glx.ChooseFBConfig(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32*,System.Int32*)": "OpenTK.Graphics.Glx.Glx.yml", + "OpenTK.Graphics.Glx.Glx.ChooseFBConfig(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32@,System.Int32@)": "OpenTK.Graphics.Glx.Glx.yml", + "OpenTK.Graphics.Glx.Glx.ChooseVisual(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32*)": "OpenTK.Graphics.Glx.Glx.yml", + "OpenTK.Graphics.Glx.Glx.ChooseVisual(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32@)": "OpenTK.Graphics.Glx.Glx.yml", + "OpenTK.Graphics.Glx.Glx.CopyContext(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext,OpenTK.Graphics.Glx.GLXContext,System.UInt64)": "OpenTK.Graphics.Glx.Glx.yml", + "OpenTK.Graphics.Glx.Glx.CreateContext(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.XVisualInfoPtr,OpenTK.Graphics.Glx.GLXContext,System.Boolean)": "OpenTK.Graphics.Glx.Glx.yml", + "OpenTK.Graphics.Glx.Glx.CreateGLXPixmap(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.XVisualInfoPtr,OpenTK.Graphics.Glx.Pixmap)": "OpenTK.Graphics.Glx.Glx.yml", + "OpenTK.Graphics.Glx.Glx.CreateNewContext(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,System.Int32,OpenTK.Graphics.Glx.GLXContext,System.Boolean)": "OpenTK.Graphics.Glx.Glx.yml", + "OpenTK.Graphics.Glx.Glx.CreatePbuffer(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,System.Int32*)": "OpenTK.Graphics.Glx.Glx.yml", + "OpenTK.Graphics.Glx.Glx.CreatePbuffer(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,System.Int32@)": "OpenTK.Graphics.Glx.Glx.yml", + "OpenTK.Graphics.Glx.Glx.CreatePixmap(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.Pixmap,System.Int32*)": "OpenTK.Graphics.Glx.Glx.yml", + "OpenTK.Graphics.Glx.Glx.CreatePixmap(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.Pixmap,System.Int32@)": "OpenTK.Graphics.Glx.Glx.yml", + "OpenTK.Graphics.Glx.Glx.CreateWindow(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.Window,System.Int32*)": "OpenTK.Graphics.Glx.Glx.yml", + "OpenTK.Graphics.Glx.Glx.CreateWindow(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.Window,System.Int32@)": "OpenTK.Graphics.Glx.Glx.yml", + "OpenTK.Graphics.Glx.Glx.DestroyContext(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext)": "OpenTK.Graphics.Glx.Glx.yml", + "OpenTK.Graphics.Glx.Glx.DestroyGLXPixmap(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXPixmap)": "OpenTK.Graphics.Glx.Glx.yml", + "OpenTK.Graphics.Glx.Glx.DestroyPbuffer(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXPbuffer)": "OpenTK.Graphics.Glx.Glx.yml", + "OpenTK.Graphics.Glx.Glx.DestroyPixmap(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXPixmap)": "OpenTK.Graphics.Glx.Glx.yml", + "OpenTK.Graphics.Glx.Glx.DestroyWindow(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXWindow)": "OpenTK.Graphics.Glx.Glx.yml", "OpenTK.Graphics.Glx.Glx.EXT": "OpenTK.Graphics.Glx.Glx.EXT.yml", - "OpenTK.Graphics.Glx.Glx.EXT.BindTexImageEXT(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXDrawable,System.Int32,System.Int32*)": "OpenTK.Graphics.Glx.Glx.EXT.yml", - "OpenTK.Graphics.Glx.Glx.EXT.BindTexImageEXT(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXDrawable,System.Int32,System.Int32@)": "OpenTK.Graphics.Glx.Glx.EXT.yml", - "OpenTK.Graphics.Glx.Glx.EXT.FreeContextEXT(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXContext)": "OpenTK.Graphics.Glx.Glx.EXT.yml", - "OpenTK.Graphics.Glx.Glx.EXT.FreeContextEXT(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXContext)": "OpenTK.Graphics.Glx.Glx.EXT.yml", + "OpenTK.Graphics.Glx.Glx.EXT.BindTexImageEXT(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32,System.Int32*)": "OpenTK.Graphics.Glx.Glx.EXT.yml", + "OpenTK.Graphics.Glx.Glx.EXT.BindTexImageEXT(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32,System.Int32@)": "OpenTK.Graphics.Glx.Glx.EXT.yml", + "OpenTK.Graphics.Glx.Glx.EXT.FreeContextEXT(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext)": "OpenTK.Graphics.Glx.Glx.EXT.yml", "OpenTK.Graphics.Glx.Glx.EXT.GetContextIDEXT(OpenTK.Graphics.Glx.GLXContext)": "OpenTK.Graphics.Glx.Glx.EXT.yml", "OpenTK.Graphics.Glx.Glx.EXT.GetCurrentDisplayEXT": "OpenTK.Graphics.Glx.Glx.EXT.yml", - "OpenTK.Graphics.Glx.Glx.EXT.ImportContextEXT(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXContextID)": "OpenTK.Graphics.Glx.Glx.EXT.yml", - "OpenTK.Graphics.Glx.Glx.EXT.ImportContextEXT(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXContextID)": "OpenTK.Graphics.Glx.Glx.EXT.yml", - "OpenTK.Graphics.Glx.Glx.EXT.QueryContextInfoEXT(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXContext,System.Int32,System.Int32*)": "OpenTK.Graphics.Glx.Glx.EXT.yml", - "OpenTK.Graphics.Glx.Glx.EXT.QueryContextInfoEXT(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXContext,System.Int32,System.Int32@)": "OpenTK.Graphics.Glx.Glx.EXT.yml", - "OpenTK.Graphics.Glx.Glx.EXT.ReleaseTexImageEXT(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXDrawable,System.Int32)": "OpenTK.Graphics.Glx.Glx.EXT.yml", - "OpenTK.Graphics.Glx.Glx.EXT.ReleaseTexImageEXT(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXDrawable,System.Int32)": "OpenTK.Graphics.Glx.Glx.EXT.yml", - "OpenTK.Graphics.Glx.Glx.EXT.SwapIntervalEXT(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXDrawable,System.Int32)": "OpenTK.Graphics.Glx.Glx.EXT.yml", - "OpenTK.Graphics.Glx.Glx.EXT.SwapIntervalEXT(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXDrawable,System.Int32)": "OpenTK.Graphics.Glx.Glx.EXT.yml", - "OpenTK.Graphics.Glx.Glx.GetClientString(OpenTK.Graphics.Glx.Display*,System.Int32)": "OpenTK.Graphics.Glx.Glx.yml", - "OpenTK.Graphics.Glx.Glx.GetClientString(OpenTK.Graphics.Glx.Display@,System.Int32)": "OpenTK.Graphics.Glx.Glx.yml", - "OpenTK.Graphics.Glx.Glx.GetConfig(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.XVisualInfo*,System.Int32,System.Int32*)": "OpenTK.Graphics.Glx.Glx.yml", - "OpenTK.Graphics.Glx.Glx.GetConfig(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.XVisualInfo@,System.Int32,System.Int32@)": "OpenTK.Graphics.Glx.Glx.yml", + "OpenTK.Graphics.Glx.Glx.EXT.ImportContextEXT(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContextID)": "OpenTK.Graphics.Glx.Glx.EXT.yml", + "OpenTK.Graphics.Glx.Glx.EXT.QueryContextInfoEXT(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext,System.Int32,System.Int32*)": "OpenTK.Graphics.Glx.Glx.EXT.yml", + "OpenTK.Graphics.Glx.Glx.EXT.QueryContextInfoEXT(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext,System.Int32,System.Int32@)": "OpenTK.Graphics.Glx.Glx.EXT.yml", + "OpenTK.Graphics.Glx.Glx.EXT.ReleaseTexImageEXT(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32)": "OpenTK.Graphics.Glx.Glx.EXT.yml", + "OpenTK.Graphics.Glx.Glx.EXT.SwapIntervalEXT(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32)": "OpenTK.Graphics.Glx.Glx.EXT.yml", + "OpenTK.Graphics.Glx.Glx.GetClientString(OpenTK.Graphics.Glx.DisplayPtr,System.Int32)": "OpenTK.Graphics.Glx.Glx.yml", + "OpenTK.Graphics.Glx.Glx.GetClientString_(OpenTK.Graphics.Glx.DisplayPtr,System.Int32)": "OpenTK.Graphics.Glx.Glx.yml", + "OpenTK.Graphics.Glx.Glx.GetConfig(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.XVisualInfoPtr,System.Int32,System.Int32*)": "OpenTK.Graphics.Glx.Glx.yml", + "OpenTK.Graphics.Glx.Glx.GetConfig(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.XVisualInfoPtr,System.Int32,System.Int32@)": "OpenTK.Graphics.Glx.Glx.yml", "OpenTK.Graphics.Glx.Glx.GetCurrentContext": "OpenTK.Graphics.Glx.Glx.yml", "OpenTK.Graphics.Glx.Glx.GetCurrentDisplay": "OpenTK.Graphics.Glx.Glx.yml", "OpenTK.Graphics.Glx.Glx.GetCurrentDrawable": "OpenTK.Graphics.Glx.Glx.yml", "OpenTK.Graphics.Glx.Glx.GetCurrentReadDrawable": "OpenTK.Graphics.Glx.Glx.yml", - "OpenTK.Graphics.Glx.Glx.GetFBConfig(OpenTK.Graphics.Glx.Display@,System.Int32,System.Int32@)": "OpenTK.Graphics.Glx.Glx.yml", - "OpenTK.Graphics.Glx.Glx.GetFBConfigAttrib(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXFBConfig,System.Int32,System.Int32*)": "OpenTK.Graphics.Glx.Glx.yml", - "OpenTK.Graphics.Glx.Glx.GetFBConfigAttrib(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXFBConfig,System.Int32,System.Int32@)": "OpenTK.Graphics.Glx.Glx.yml", - "OpenTK.Graphics.Glx.Glx.GetFBConfigs(OpenTK.Graphics.Glx.Display*,System.Int32,System.Int32*)": "OpenTK.Graphics.Glx.Glx.yml", + "OpenTK.Graphics.Glx.Glx.GetFBConfig(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32@)": "OpenTK.Graphics.Glx.Glx.yml", + "OpenTK.Graphics.Glx.Glx.GetFBConfigAttrib(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,System.Int32,System.Int32*)": "OpenTK.Graphics.Glx.Glx.yml", + "OpenTK.Graphics.Glx.Glx.GetFBConfigAttrib(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,System.Int32,System.Int32@)": "OpenTK.Graphics.Glx.Glx.yml", + "OpenTK.Graphics.Glx.Glx.GetFBConfigs(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32*)": "OpenTK.Graphics.Glx.Glx.yml", "OpenTK.Graphics.Glx.Glx.GetProcAddress(System.Byte*)": "OpenTK.Graphics.Glx.Glx.yml", "OpenTK.Graphics.Glx.Glx.GetProcAddress(System.Byte@)": "OpenTK.Graphics.Glx.Glx.yml", - "OpenTK.Graphics.Glx.Glx.GetSelectedEvent(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXDrawable,System.UInt64*)": "OpenTK.Graphics.Glx.Glx.yml", - "OpenTK.Graphics.Glx.Glx.GetSelectedEvent(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXDrawable,System.UInt64@)": "OpenTK.Graphics.Glx.Glx.yml", - "OpenTK.Graphics.Glx.Glx.GetVisualFromFBConfig(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXFBConfig)": "OpenTK.Graphics.Glx.Glx.yml", - "OpenTK.Graphics.Glx.Glx.GetVisualFromFBConfig(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXFBConfig)": "OpenTK.Graphics.Glx.Glx.yml", - "OpenTK.Graphics.Glx.Glx.IsDirect(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXContext)": "OpenTK.Graphics.Glx.Glx.yml", - "OpenTK.Graphics.Glx.Glx.IsDirect(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXContext)": "OpenTK.Graphics.Glx.Glx.yml", + "OpenTK.Graphics.Glx.Glx.GetSelectedEvent(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.UInt64*)": "OpenTK.Graphics.Glx.Glx.yml", + "OpenTK.Graphics.Glx.Glx.GetSelectedEvent(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.UInt64@)": "OpenTK.Graphics.Glx.Glx.yml", + "OpenTK.Graphics.Glx.Glx.GetVisualFromFBConfig(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig)": "OpenTK.Graphics.Glx.Glx.yml", + "OpenTK.Graphics.Glx.Glx.IsDirect(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext)": "OpenTK.Graphics.Glx.Glx.yml", "OpenTK.Graphics.Glx.Glx.MESA": "OpenTK.Graphics.Glx.Glx.MESA.yml", - "OpenTK.Graphics.Glx.Glx.MESA.CopySubBufferMESA(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXDrawable,System.Int32,System.Int32,System.Int32,System.Int32)": "OpenTK.Graphics.Glx.Glx.MESA.yml", - "OpenTK.Graphics.Glx.Glx.MESA.CopySubBufferMESA(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXDrawable,System.Int32,System.Int32,System.Int32,System.Int32)": "OpenTK.Graphics.Glx.Glx.MESA.yml", - "OpenTK.Graphics.Glx.Glx.MESA.CreateGLXPixmapMESA(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.XVisualInfo*,OpenTK.Graphics.Glx.Pixmap,OpenTK.Graphics.Glx.Colormap)": "OpenTK.Graphics.Glx.Glx.MESA.yml", - "OpenTK.Graphics.Glx.Glx.MESA.CreateGLXPixmapMESA(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.XVisualInfo@,OpenTK.Graphics.Glx.Pixmap,OpenTK.Graphics.Glx.Colormap)": "OpenTK.Graphics.Glx.Glx.MESA.yml", + "OpenTK.Graphics.Glx.Glx.MESA.CopySubBufferMESA(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32,System.Int32,System.Int32,System.Int32)": "OpenTK.Graphics.Glx.Glx.MESA.yml", + "OpenTK.Graphics.Glx.Glx.MESA.CreateGLXPixmapMESA(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.XVisualInfoPtr,OpenTK.Graphics.Glx.Pixmap,OpenTK.Graphics.Glx.Colormap)": "OpenTK.Graphics.Glx.Glx.MESA.yml", "OpenTK.Graphics.Glx.Glx.MESA.GetAGPOffsetMESA(System.IntPtr)": "OpenTK.Graphics.Glx.Glx.MESA.yml", "OpenTK.Graphics.Glx.Glx.MESA.GetAGPOffsetMESA(System.Void*)": "OpenTK.Graphics.Glx.Glx.MESA.yml", "OpenTK.Graphics.Glx.Glx.MESA.GetAGPOffsetMESA``1(``0@)": "OpenTK.Graphics.Glx.Glx.MESA.yml", @@ -3381,164 +3423,130 @@ "OpenTK.Graphics.Glx.Glx.MESA.QueryCurrentRendererIntegerMESA(System.Int32,System.UInt32@)": "OpenTK.Graphics.Glx.Glx.MESA.yml", "OpenTK.Graphics.Glx.Glx.MESA.QueryCurrentRendererStringMESA(System.Int32)": "OpenTK.Graphics.Glx.Glx.MESA.yml", "OpenTK.Graphics.Glx.Glx.MESA.QueryCurrentRendererStringMESA_(System.Int32)": "OpenTK.Graphics.Glx.Glx.MESA.yml", - "OpenTK.Graphics.Glx.Glx.MESA.QueryRendererIntegerMESA(OpenTK.Graphics.Glx.Display*,System.Int32,System.Int32,System.Int32,System.UInt32*)": "OpenTK.Graphics.Glx.Glx.MESA.yml", - "OpenTK.Graphics.Glx.Glx.MESA.QueryRendererIntegerMESA(OpenTK.Graphics.Glx.Display@,System.Int32,System.Int32,System.Int32,System.UInt32@)": "OpenTK.Graphics.Glx.Glx.MESA.yml", - "OpenTK.Graphics.Glx.Glx.MESA.QueryRendererStringMESA(OpenTK.Graphics.Glx.Display*,System.Int32,System.Int32,System.Int32)": "OpenTK.Graphics.Glx.Glx.MESA.yml", - "OpenTK.Graphics.Glx.Glx.MESA.QueryRendererStringMESA(OpenTK.Graphics.Glx.Display@,System.Int32,System.Int32,System.Int32)": "OpenTK.Graphics.Glx.Glx.MESA.yml", - "OpenTK.Graphics.Glx.Glx.MESA.ReleaseBuffersMESA(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXDrawable)": "OpenTK.Graphics.Glx.Glx.MESA.yml", - "OpenTK.Graphics.Glx.Glx.MESA.ReleaseBuffersMESA(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXDrawable)": "OpenTK.Graphics.Glx.Glx.MESA.yml", + "OpenTK.Graphics.Glx.Glx.MESA.QueryRendererIntegerMESA(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.UInt32*)": "OpenTK.Graphics.Glx.Glx.MESA.yml", + "OpenTK.Graphics.Glx.Glx.MESA.QueryRendererIntegerMESA(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.UInt32@)": "OpenTK.Graphics.Glx.Glx.MESA.yml", + "OpenTK.Graphics.Glx.Glx.MESA.QueryRendererStringMESA(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32)": "OpenTK.Graphics.Glx.Glx.MESA.yml", + "OpenTK.Graphics.Glx.Glx.MESA.QueryRendererStringMESA_(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32)": "OpenTK.Graphics.Glx.Glx.MESA.yml", + "OpenTK.Graphics.Glx.Glx.MESA.ReleaseBuffersMESA(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable)": "OpenTK.Graphics.Glx.Glx.MESA.yml", "OpenTK.Graphics.Glx.Glx.MESA.Set3DfxModeMESA(System.Int32)": "OpenTK.Graphics.Glx.Glx.MESA.yml", "OpenTK.Graphics.Glx.Glx.MESA.SwapIntervalMESA(System.UInt32)": "OpenTK.Graphics.Glx.Glx.MESA.yml", - "OpenTK.Graphics.Glx.Glx.MakeContextCurrent(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXDrawable,OpenTK.Graphics.Glx.GLXDrawable,OpenTK.Graphics.Glx.GLXContext)": "OpenTK.Graphics.Glx.Glx.yml", - "OpenTK.Graphics.Glx.Glx.MakeContextCurrent(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXDrawable,OpenTK.Graphics.Glx.GLXDrawable,OpenTK.Graphics.Glx.GLXContext)": "OpenTK.Graphics.Glx.Glx.yml", - "OpenTK.Graphics.Glx.Glx.MakeCurrent(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXDrawable,OpenTK.Graphics.Glx.GLXContext)": "OpenTK.Graphics.Glx.Glx.yml", - "OpenTK.Graphics.Glx.Glx.MakeCurrent(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXDrawable,OpenTK.Graphics.Glx.GLXContext)": "OpenTK.Graphics.Glx.Glx.yml", + "OpenTK.Graphics.Glx.Glx.MakeContextCurrent(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,OpenTK.Graphics.Glx.GLXDrawable,OpenTK.Graphics.Glx.GLXContext)": "OpenTK.Graphics.Glx.Glx.yml", + "OpenTK.Graphics.Glx.Glx.MakeCurrent(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,OpenTK.Graphics.Glx.GLXContext)": "OpenTK.Graphics.Glx.Glx.yml", "OpenTK.Graphics.Glx.Glx.NV": "OpenTK.Graphics.Glx.Glx.NV.yml", - "OpenTK.Graphics.Glx.Glx.NV.BindSwapBarrierNV(OpenTK.Graphics.Glx.Display*,System.UInt32,System.UInt32)": "OpenTK.Graphics.Glx.Glx.NV.yml", - "OpenTK.Graphics.Glx.Glx.NV.BindSwapBarrierNV(OpenTK.Graphics.Glx.Display@,System.UInt32,System.UInt32)": "OpenTK.Graphics.Glx.Glx.NV.yml", - "OpenTK.Graphics.Glx.Glx.NV.BindVideoCaptureDeviceNV(OpenTK.Graphics.Glx.Display*,System.UInt32,OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV)": "OpenTK.Graphics.Glx.Glx.NV.yml", - "OpenTK.Graphics.Glx.Glx.NV.BindVideoCaptureDeviceNV(OpenTK.Graphics.Glx.Display@,System.UInt32,OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV)": "OpenTK.Graphics.Glx.Glx.NV.yml", - "OpenTK.Graphics.Glx.Glx.NV.BindVideoDeviceNV(OpenTK.Graphics.Glx.Display*,System.UInt32,System.UInt32,System.Int32*)": "OpenTK.Graphics.Glx.Glx.NV.yml", - "OpenTK.Graphics.Glx.Glx.NV.BindVideoDeviceNV(OpenTK.Graphics.Glx.Display@,System.UInt32,System.UInt32,System.Int32@)": "OpenTK.Graphics.Glx.Glx.NV.yml", - "OpenTK.Graphics.Glx.Glx.NV.BindVideoImageNV(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXVideoDeviceNV,OpenTK.Graphics.Glx.GLXPbuffer,System.Int32)": "OpenTK.Graphics.Glx.Glx.NV.yml", - "OpenTK.Graphics.Glx.Glx.NV.BindVideoImageNV(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXVideoDeviceNV,OpenTK.Graphics.Glx.GLXPbuffer,System.Int32)": "OpenTK.Graphics.Glx.Glx.NV.yml", - "OpenTK.Graphics.Glx.Glx.NV.CopyBufferSubDataNV(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXContext,OpenTK.Graphics.Glx.GLXContext,OpenTK.Graphics.Glx.All,OpenTK.Graphics.Glx.All,System.IntPtr,System.IntPtr,System.IntPtr)": "OpenTK.Graphics.Glx.Glx.NV.yml", - "OpenTK.Graphics.Glx.Glx.NV.CopyBufferSubDataNV(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXContext,OpenTK.Graphics.Glx.GLXContext,OpenTK.Graphics.Glx.All,OpenTK.Graphics.Glx.All,System.IntPtr,System.IntPtr,System.IntPtr)": "OpenTK.Graphics.Glx.Glx.NV.yml", - "OpenTK.Graphics.Glx.Glx.NV.CopyImageSubDataNV(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXContext,System.UInt32,OpenTK.Graphics.Glx.All,System.Int32,System.Int32,System.Int32,System.Int32,OpenTK.Graphics.Glx.GLXContext,System.UInt32,OpenTK.Graphics.Glx.All,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)": "OpenTK.Graphics.Glx.Glx.NV.yml", - "OpenTK.Graphics.Glx.Glx.NV.CopyImageSubDataNV(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXContext,System.UInt32,OpenTK.Graphics.Glx.All,System.Int32,System.Int32,System.Int32,System.Int32,OpenTK.Graphics.Glx.GLXContext,System.UInt32,OpenTK.Graphics.Glx.All,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)": "OpenTK.Graphics.Glx.Glx.NV.yml", - "OpenTK.Graphics.Glx.Glx.NV.DelayBeforeSwapNV(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXDrawable,System.Single)": "OpenTK.Graphics.Glx.Glx.NV.yml", - "OpenTK.Graphics.Glx.Glx.NV.DelayBeforeSwapNV(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXDrawable,System.Single)": "OpenTK.Graphics.Glx.Glx.NV.yml", - "OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoCaptureDevicesNV(OpenTK.Graphics.Glx.Display*,System.Int32,System.Int32*)": "OpenTK.Graphics.Glx.Glx.NV.yml", - "OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoCaptureDevicesNV(OpenTK.Graphics.Glx.Display@,System.Int32,System.Int32@)": "OpenTK.Graphics.Glx.Glx.NV.yml", - "OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoDevicesNV(OpenTK.Graphics.Glx.Display*,System.Int32,System.Int32*)": "OpenTK.Graphics.Glx.Glx.NV.yml", - "OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoDevicesNV(OpenTK.Graphics.Glx.Display@,System.Int32,System.Int32@)": "OpenTK.Graphics.Glx.Glx.NV.yml", - "OpenTK.Graphics.Glx.Glx.NV.GetVideoDeviceNV(OpenTK.Graphics.Glx.Display*,System.Int32,System.Int32,OpenTK.Graphics.Glx.GLXVideoDeviceNV*)": "OpenTK.Graphics.Glx.Glx.NV.yml", - "OpenTK.Graphics.Glx.Glx.NV.GetVideoDeviceNV(OpenTK.Graphics.Glx.Display@,System.Int32,System.Int32,OpenTK.Graphics.Glx.GLXVideoDeviceNV@)": "OpenTK.Graphics.Glx.Glx.NV.yml", - "OpenTK.Graphics.Glx.Glx.NV.GetVideoInfoNV(OpenTK.Graphics.Glx.Display*,System.Int32,OpenTK.Graphics.Glx.GLXVideoDeviceNV,System.UInt64*,System.UInt64*)": "OpenTK.Graphics.Glx.Glx.NV.yml", - "OpenTK.Graphics.Glx.Glx.NV.GetVideoInfoNV(OpenTK.Graphics.Glx.Display@,System.Int32,OpenTK.Graphics.Glx.GLXVideoDeviceNV,System.UInt64@,System.UInt64@)": "OpenTK.Graphics.Glx.Glx.NV.yml", - "OpenTK.Graphics.Glx.Glx.NV.JoinSwapGroupNV(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXDrawable,System.UInt32)": "OpenTK.Graphics.Glx.Glx.NV.yml", - "OpenTK.Graphics.Glx.Glx.NV.JoinSwapGroupNV(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXDrawable,System.UInt32)": "OpenTK.Graphics.Glx.Glx.NV.yml", - "OpenTK.Graphics.Glx.Glx.NV.LockVideoCaptureDeviceNV(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV)": "OpenTK.Graphics.Glx.Glx.NV.yml", - "OpenTK.Graphics.Glx.Glx.NV.LockVideoCaptureDeviceNV(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV)": "OpenTK.Graphics.Glx.Glx.NV.yml", - "OpenTK.Graphics.Glx.Glx.NV.NamedCopyBufferSubDataNV(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXContext,OpenTK.Graphics.Glx.GLXContext,System.UInt32,System.UInt32,System.IntPtr,System.IntPtr,System.IntPtr)": "OpenTK.Graphics.Glx.Glx.NV.yml", - "OpenTK.Graphics.Glx.Glx.NV.NamedCopyBufferSubDataNV(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXContext,OpenTK.Graphics.Glx.GLXContext,System.UInt32,System.UInt32,System.IntPtr,System.IntPtr,System.IntPtr)": "OpenTK.Graphics.Glx.Glx.NV.yml", - "OpenTK.Graphics.Glx.Glx.NV.QueryFrameCountNV(OpenTK.Graphics.Glx.Display*,System.Int32,System.UInt32*)": "OpenTK.Graphics.Glx.Glx.NV.yml", - "OpenTK.Graphics.Glx.Glx.NV.QueryFrameCountNV(OpenTK.Graphics.Glx.Display@,System.Int32,System.UInt32@)": "OpenTK.Graphics.Glx.Glx.NV.yml", - "OpenTK.Graphics.Glx.Glx.NV.QueryMaxSwapGroupsNV(OpenTK.Graphics.Glx.Display*,System.Int32,System.UInt32*,System.UInt32*)": "OpenTK.Graphics.Glx.Glx.NV.yml", - "OpenTK.Graphics.Glx.Glx.NV.QueryMaxSwapGroupsNV(OpenTK.Graphics.Glx.Display@,System.Int32,System.UInt32@,System.UInt32@)": "OpenTK.Graphics.Glx.Glx.NV.yml", - "OpenTK.Graphics.Glx.Glx.NV.QuerySwapGroupNV(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXDrawable,System.UInt32*,System.UInt32*)": "OpenTK.Graphics.Glx.Glx.NV.yml", - "OpenTK.Graphics.Glx.Glx.NV.QuerySwapGroupNV(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXDrawable,System.UInt32@,System.UInt32@)": "OpenTK.Graphics.Glx.Glx.NV.yml", - "OpenTK.Graphics.Glx.Glx.NV.QueryVideoCaptureDeviceNV(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV,System.Int32,System.Int32*)": "OpenTK.Graphics.Glx.Glx.NV.yml", - "OpenTK.Graphics.Glx.Glx.NV.QueryVideoCaptureDeviceNV(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV,System.Int32,System.Int32@)": "OpenTK.Graphics.Glx.Glx.NV.yml", - "OpenTK.Graphics.Glx.Glx.NV.ReleaseVideoCaptureDeviceNV(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV)": "OpenTK.Graphics.Glx.Glx.NV.yml", - "OpenTK.Graphics.Glx.Glx.NV.ReleaseVideoCaptureDeviceNV(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV)": "OpenTK.Graphics.Glx.Glx.NV.yml", - "OpenTK.Graphics.Glx.Glx.NV.ReleaseVideoDeviceNV(OpenTK.Graphics.Glx.Display*,System.Int32,OpenTK.Graphics.Glx.GLXVideoDeviceNV)": "OpenTK.Graphics.Glx.Glx.NV.yml", - "OpenTK.Graphics.Glx.Glx.NV.ReleaseVideoDeviceNV(OpenTK.Graphics.Glx.Display@,System.Int32,OpenTK.Graphics.Glx.GLXVideoDeviceNV)": "OpenTK.Graphics.Glx.Glx.NV.yml", - "OpenTK.Graphics.Glx.Glx.NV.ReleaseVideoImageNV(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXPbuffer)": "OpenTK.Graphics.Glx.Glx.NV.yml", - "OpenTK.Graphics.Glx.Glx.NV.ReleaseVideoImageNV(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXPbuffer)": "OpenTK.Graphics.Glx.Glx.NV.yml", - "OpenTK.Graphics.Glx.Glx.NV.ResetFrameCountNV(OpenTK.Graphics.Glx.Display*,System.Int32)": "OpenTK.Graphics.Glx.Glx.NV.yml", - "OpenTK.Graphics.Glx.Glx.NV.ResetFrameCountNV(OpenTK.Graphics.Glx.Display@,System.Int32)": "OpenTK.Graphics.Glx.Glx.NV.yml", - "OpenTK.Graphics.Glx.Glx.NV.SendPbufferToVideoNV(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXPbuffer,System.Int32,System.UInt64*,System.Boolean)": "OpenTK.Graphics.Glx.Glx.NV.yml", - "OpenTK.Graphics.Glx.Glx.NV.SendPbufferToVideoNV(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXPbuffer,System.Int32,System.UInt64@,System.Boolean)": "OpenTK.Graphics.Glx.Glx.NV.yml", + "OpenTK.Graphics.Glx.Glx.NV.BindSwapBarrierNV(OpenTK.Graphics.Glx.DisplayPtr,System.UInt32,System.UInt32)": "OpenTK.Graphics.Glx.Glx.NV.yml", + "OpenTK.Graphics.Glx.Glx.NV.BindVideoCaptureDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,System.UInt32,OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV)": "OpenTK.Graphics.Glx.Glx.NV.yml", + "OpenTK.Graphics.Glx.Glx.NV.BindVideoDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,System.UInt32,System.UInt32,System.Int32*)": "OpenTK.Graphics.Glx.Glx.NV.yml", + "OpenTK.Graphics.Glx.Glx.NV.BindVideoDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,System.UInt32,System.UInt32,System.Int32@)": "OpenTK.Graphics.Glx.Glx.NV.yml", + "OpenTK.Graphics.Glx.Glx.NV.BindVideoImageNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXVideoDeviceNV,OpenTK.Graphics.Glx.GLXPbuffer,System.Int32)": "OpenTK.Graphics.Glx.Glx.NV.yml", + "OpenTK.Graphics.Glx.Glx.NV.CopyBufferSubDataNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext,OpenTK.Graphics.Glx.GLXContext,OpenTK.Graphics.Glx.All,OpenTK.Graphics.Glx.All,System.IntPtr,System.IntPtr,System.IntPtr)": "OpenTK.Graphics.Glx.Glx.NV.yml", + "OpenTK.Graphics.Glx.Glx.NV.CopyImageSubDataNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext,System.UInt32,OpenTK.Graphics.Glx.All,System.Int32,System.Int32,System.Int32,System.Int32,OpenTK.Graphics.Glx.GLXContext,System.UInt32,OpenTK.Graphics.Glx.All,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)": "OpenTK.Graphics.Glx.Glx.NV.yml", + "OpenTK.Graphics.Glx.Glx.NV.DelayBeforeSwapNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Single)": "OpenTK.Graphics.Glx.Glx.NV.yml", + "OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoCaptureDevicesNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32*)": "OpenTK.Graphics.Glx.Glx.NV.yml", + "OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoCaptureDevicesNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32@)": "OpenTK.Graphics.Glx.Glx.NV.yml", + "OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoDevicesNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32*)": "OpenTK.Graphics.Glx.Glx.NV.yml", + "OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoDevicesNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32@)": "OpenTK.Graphics.Glx.Glx.NV.yml", + "OpenTK.Graphics.Glx.Glx.NV.GetVideoDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,OpenTK.Graphics.Glx.GLXVideoDeviceNV*)": "OpenTK.Graphics.Glx.Glx.NV.yml", + "OpenTK.Graphics.Glx.Glx.NV.GetVideoDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,OpenTK.Graphics.Glx.GLXVideoDeviceNV@)": "OpenTK.Graphics.Glx.Glx.NV.yml", + "OpenTK.Graphics.Glx.Glx.NV.GetVideoInfoNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,OpenTK.Graphics.Glx.GLXVideoDeviceNV,System.UInt64*,System.UInt64*)": "OpenTK.Graphics.Glx.Glx.NV.yml", + "OpenTK.Graphics.Glx.Glx.NV.GetVideoInfoNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,OpenTK.Graphics.Glx.GLXVideoDeviceNV,System.UInt64@,System.UInt64@)": "OpenTK.Graphics.Glx.Glx.NV.yml", + "OpenTK.Graphics.Glx.Glx.NV.JoinSwapGroupNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.UInt32)": "OpenTK.Graphics.Glx.Glx.NV.yml", + "OpenTK.Graphics.Glx.Glx.NV.LockVideoCaptureDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV)": "OpenTK.Graphics.Glx.Glx.NV.yml", + "OpenTK.Graphics.Glx.Glx.NV.NamedCopyBufferSubDataNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext,OpenTK.Graphics.Glx.GLXContext,System.UInt32,System.UInt32,System.IntPtr,System.IntPtr,System.IntPtr)": "OpenTK.Graphics.Glx.Glx.NV.yml", + "OpenTK.Graphics.Glx.Glx.NV.QueryFrameCountNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.UInt32*)": "OpenTK.Graphics.Glx.Glx.NV.yml", + "OpenTK.Graphics.Glx.Glx.NV.QueryFrameCountNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.UInt32@)": "OpenTK.Graphics.Glx.Glx.NV.yml", + "OpenTK.Graphics.Glx.Glx.NV.QueryMaxSwapGroupsNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.UInt32*,System.UInt32*)": "OpenTK.Graphics.Glx.Glx.NV.yml", + "OpenTK.Graphics.Glx.Glx.NV.QueryMaxSwapGroupsNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.UInt32@,System.UInt32@)": "OpenTK.Graphics.Glx.Glx.NV.yml", + "OpenTK.Graphics.Glx.Glx.NV.QuerySwapGroupNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.UInt32*,System.UInt32*)": "OpenTK.Graphics.Glx.Glx.NV.yml", + "OpenTK.Graphics.Glx.Glx.NV.QuerySwapGroupNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.UInt32@,System.UInt32@)": "OpenTK.Graphics.Glx.Glx.NV.yml", + "OpenTK.Graphics.Glx.Glx.NV.QueryVideoCaptureDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV,System.Int32,System.Int32*)": "OpenTK.Graphics.Glx.Glx.NV.yml", + "OpenTK.Graphics.Glx.Glx.NV.QueryVideoCaptureDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV,System.Int32,System.Int32@)": "OpenTK.Graphics.Glx.Glx.NV.yml", + "OpenTK.Graphics.Glx.Glx.NV.ReleaseVideoCaptureDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV)": "OpenTK.Graphics.Glx.Glx.NV.yml", + "OpenTK.Graphics.Glx.Glx.NV.ReleaseVideoDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,OpenTK.Graphics.Glx.GLXVideoDeviceNV)": "OpenTK.Graphics.Glx.Glx.NV.yml", + "OpenTK.Graphics.Glx.Glx.NV.ReleaseVideoImageNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXPbuffer)": "OpenTK.Graphics.Glx.Glx.NV.yml", + "OpenTK.Graphics.Glx.Glx.NV.ResetFrameCountNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32)": "OpenTK.Graphics.Glx.Glx.NV.yml", + "OpenTK.Graphics.Glx.Glx.NV.SendPbufferToVideoNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXPbuffer,System.Int32,System.UInt64*,System.Boolean)": "OpenTK.Graphics.Glx.Glx.NV.yml", + "OpenTK.Graphics.Glx.Glx.NV.SendPbufferToVideoNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXPbuffer,System.Int32,System.UInt64@,System.Boolean)": "OpenTK.Graphics.Glx.Glx.NV.yml", "OpenTK.Graphics.Glx.Glx.OML": "OpenTK.Graphics.Glx.Glx.OML.yml", - "OpenTK.Graphics.Glx.Glx.OML.GetMscRateOML(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXDrawable,System.Int32*,System.Int32*)": "OpenTK.Graphics.Glx.Glx.OML.yml", - "OpenTK.Graphics.Glx.Glx.OML.GetMscRateOML(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXDrawable,System.Int32@,System.Int32@)": "OpenTK.Graphics.Glx.Glx.OML.yml", - "OpenTK.Graphics.Glx.Glx.OML.GetSyncValuesOML(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXDrawable,System.Int64*,System.Int64*,System.Int64*)": "OpenTK.Graphics.Glx.Glx.OML.yml", - "OpenTK.Graphics.Glx.Glx.OML.GetSyncValuesOML(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXDrawable,System.Int64@,System.Int64@,System.Int64@)": "OpenTK.Graphics.Glx.Glx.OML.yml", - "OpenTK.Graphics.Glx.Glx.OML.SwapBuffersMscOML(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXDrawable,System.Int64,System.Int64,System.Int64)": "OpenTK.Graphics.Glx.Glx.OML.yml", - "OpenTK.Graphics.Glx.Glx.OML.SwapBuffersMscOML(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXDrawable,System.Int64,System.Int64,System.Int64)": "OpenTK.Graphics.Glx.Glx.OML.yml", - "OpenTK.Graphics.Glx.Glx.OML.WaitForMscOML(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXDrawable,System.Int64,System.Int64,System.Int64,System.Int64*,System.Int64*,System.Int64*)": "OpenTK.Graphics.Glx.Glx.OML.yml", - "OpenTK.Graphics.Glx.Glx.OML.WaitForMscOML(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXDrawable,System.Int64,System.Int64,System.Int64,System.Int64@,System.Int64@,System.Int64@)": "OpenTK.Graphics.Glx.Glx.OML.yml", - "OpenTK.Graphics.Glx.Glx.OML.WaitForSbcOML(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXDrawable,System.Int64,System.Int64*,System.Int64*,System.Int64*)": "OpenTK.Graphics.Glx.Glx.OML.yml", - "OpenTK.Graphics.Glx.Glx.OML.WaitForSbcOML(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXDrawable,System.Int64,System.Int64@,System.Int64@,System.Int64@)": "OpenTK.Graphics.Glx.Glx.OML.yml", - "OpenTK.Graphics.Glx.Glx.QueryContext(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXContext,System.Int32,System.Int32*)": "OpenTK.Graphics.Glx.Glx.yml", - "OpenTK.Graphics.Glx.Glx.QueryContext(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXContext,System.Int32,System.Int32@)": "OpenTK.Graphics.Glx.Glx.yml", - "OpenTK.Graphics.Glx.Glx.QueryDrawable(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXDrawable,System.Int32,System.UInt32*)": "OpenTK.Graphics.Glx.Glx.yml", - "OpenTK.Graphics.Glx.Glx.QueryDrawable(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXDrawable,System.Int32,System.UInt32@)": "OpenTK.Graphics.Glx.Glx.yml", - "OpenTK.Graphics.Glx.Glx.QueryExtension(OpenTK.Graphics.Glx.Display*,System.Int32*,System.Int32*)": "OpenTK.Graphics.Glx.Glx.yml", - "OpenTK.Graphics.Glx.Glx.QueryExtension(OpenTK.Graphics.Glx.Display@,System.Int32@,System.Int32@)": "OpenTK.Graphics.Glx.Glx.yml", - "OpenTK.Graphics.Glx.Glx.QueryExtensionsString(OpenTK.Graphics.Glx.Display*,System.Int32)": "OpenTK.Graphics.Glx.Glx.yml", - "OpenTK.Graphics.Glx.Glx.QueryExtensionsString(OpenTK.Graphics.Glx.Display@,System.Int32)": "OpenTK.Graphics.Glx.Glx.yml", - "OpenTK.Graphics.Glx.Glx.QueryServerString(OpenTK.Graphics.Glx.Display*,System.Int32,System.Int32)": "OpenTK.Graphics.Glx.Glx.yml", - "OpenTK.Graphics.Glx.Glx.QueryServerString(OpenTK.Graphics.Glx.Display@,System.Int32,System.Int32)": "OpenTK.Graphics.Glx.Glx.yml", - "OpenTK.Graphics.Glx.Glx.QueryVersion(OpenTK.Graphics.Glx.Display*,System.Int32*,System.Int32*)": "OpenTK.Graphics.Glx.Glx.yml", - "OpenTK.Graphics.Glx.Glx.QueryVersion(OpenTK.Graphics.Glx.Display@,System.Int32@,System.Int32@)": "OpenTK.Graphics.Glx.Glx.yml", + "OpenTK.Graphics.Glx.Glx.OML.GetMscRateOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32*,System.Int32*)": "OpenTK.Graphics.Glx.Glx.OML.yml", + "OpenTK.Graphics.Glx.Glx.OML.GetMscRateOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32@,System.Int32@)": "OpenTK.Graphics.Glx.Glx.OML.yml", + "OpenTK.Graphics.Glx.Glx.OML.GetSyncValuesOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int64*,System.Int64*,System.Int64*)": "OpenTK.Graphics.Glx.Glx.OML.yml", + "OpenTK.Graphics.Glx.Glx.OML.GetSyncValuesOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int64@,System.Int64@,System.Int64@)": "OpenTK.Graphics.Glx.Glx.OML.yml", + "OpenTK.Graphics.Glx.Glx.OML.SwapBuffersMscOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int64,System.Int64,System.Int64)": "OpenTK.Graphics.Glx.Glx.OML.yml", + "OpenTK.Graphics.Glx.Glx.OML.WaitForMscOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int64,System.Int64,System.Int64,System.Int64*,System.Int64*,System.Int64*)": "OpenTK.Graphics.Glx.Glx.OML.yml", + "OpenTK.Graphics.Glx.Glx.OML.WaitForMscOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int64,System.Int64,System.Int64,System.Int64@,System.Int64@,System.Int64@)": "OpenTK.Graphics.Glx.Glx.OML.yml", + "OpenTK.Graphics.Glx.Glx.OML.WaitForSbcOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int64,System.Int64*,System.Int64*,System.Int64*)": "OpenTK.Graphics.Glx.Glx.OML.yml", + "OpenTK.Graphics.Glx.Glx.OML.WaitForSbcOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int64,System.Int64@,System.Int64@,System.Int64@)": "OpenTK.Graphics.Glx.Glx.OML.yml", + "OpenTK.Graphics.Glx.Glx.QueryContext(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext,System.Int32,System.Int32*)": "OpenTK.Graphics.Glx.Glx.yml", + "OpenTK.Graphics.Glx.Glx.QueryContext(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext,System.Int32,System.Int32@)": "OpenTK.Graphics.Glx.Glx.yml", + "OpenTK.Graphics.Glx.Glx.QueryDrawable(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32,System.UInt32*)": "OpenTK.Graphics.Glx.Glx.yml", + "OpenTK.Graphics.Glx.Glx.QueryDrawable(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32,System.UInt32@)": "OpenTK.Graphics.Glx.Glx.yml", + "OpenTK.Graphics.Glx.Glx.QueryExtension(OpenTK.Graphics.Glx.DisplayPtr,System.Int32*,System.Int32*)": "OpenTK.Graphics.Glx.Glx.yml", + "OpenTK.Graphics.Glx.Glx.QueryExtension(OpenTK.Graphics.Glx.DisplayPtr,System.Int32@,System.Int32@)": "OpenTK.Graphics.Glx.Glx.yml", + "OpenTK.Graphics.Glx.Glx.QueryExtensionsString(OpenTK.Graphics.Glx.DisplayPtr,System.Int32)": "OpenTK.Graphics.Glx.Glx.yml", + "OpenTK.Graphics.Glx.Glx.QueryExtensionsString_(OpenTK.Graphics.Glx.DisplayPtr,System.Int32)": "OpenTK.Graphics.Glx.Glx.yml", + "OpenTK.Graphics.Glx.Glx.QueryServerString(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32)": "OpenTK.Graphics.Glx.Glx.yml", + "OpenTK.Graphics.Glx.Glx.QueryServerString_(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32)": "OpenTK.Graphics.Glx.Glx.yml", + "OpenTK.Graphics.Glx.Glx.QueryVersion(OpenTK.Graphics.Glx.DisplayPtr,System.Int32*,System.Int32*)": "OpenTK.Graphics.Glx.Glx.yml", + "OpenTK.Graphics.Glx.Glx.QueryVersion(OpenTK.Graphics.Glx.DisplayPtr,System.Int32@,System.Int32@)": "OpenTK.Graphics.Glx.Glx.yml", "OpenTK.Graphics.Glx.Glx.SGI": "OpenTK.Graphics.Glx.Glx.SGI.yml", - "OpenTK.Graphics.Glx.Glx.SGI.CushionSGI(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.Window,System.Single)": "OpenTK.Graphics.Glx.Glx.SGI.yml", - "OpenTK.Graphics.Glx.Glx.SGI.CushionSGI(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.Window,System.Single)": "OpenTK.Graphics.Glx.Glx.SGI.yml", + "OpenTK.Graphics.Glx.Glx.SGI.CushionSGI(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.Window,System.Single)": "OpenTK.Graphics.Glx.Glx.SGI.yml", "OpenTK.Graphics.Glx.Glx.SGI.GetCurrentReadDrawableSGI": "OpenTK.Graphics.Glx.Glx.SGI.yml", "OpenTK.Graphics.Glx.Glx.SGI.GetVideoSyncSGI(System.UInt32*)": "OpenTK.Graphics.Glx.Glx.SGI.yml", "OpenTK.Graphics.Glx.Glx.SGI.GetVideoSyncSGI(System.UInt32@)": "OpenTK.Graphics.Glx.Glx.SGI.yml", - "OpenTK.Graphics.Glx.Glx.SGI.MakeCurrentReadSGI(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXDrawable,OpenTK.Graphics.Glx.GLXDrawable,OpenTK.Graphics.Glx.GLXContext)": "OpenTK.Graphics.Glx.Glx.SGI.yml", - "OpenTK.Graphics.Glx.Glx.SGI.MakeCurrentReadSGI(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXDrawable,OpenTK.Graphics.Glx.GLXDrawable,OpenTK.Graphics.Glx.GLXContext)": "OpenTK.Graphics.Glx.Glx.SGI.yml", + "OpenTK.Graphics.Glx.Glx.SGI.MakeCurrentReadSGI(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,OpenTK.Graphics.Glx.GLXDrawable,OpenTK.Graphics.Glx.GLXContext)": "OpenTK.Graphics.Glx.Glx.SGI.yml", "OpenTK.Graphics.Glx.Glx.SGI.SwapIntervalSGI(System.Int32)": "OpenTK.Graphics.Glx.Glx.SGI.yml", "OpenTK.Graphics.Glx.Glx.SGI.WaitVideoSyncSGI(System.Int32,System.Int32,System.UInt32*)": "OpenTK.Graphics.Glx.Glx.SGI.yml", "OpenTK.Graphics.Glx.Glx.SGI.WaitVideoSyncSGI(System.Int32,System.Int32,System.UInt32@)": "OpenTK.Graphics.Glx.Glx.SGI.yml", "OpenTK.Graphics.Glx.Glx.SGIX": "OpenTK.Graphics.Glx.Glx.SGIX.yml", - "OpenTK.Graphics.Glx.Glx.SGIX.BindChannelToWindowSGIX(OpenTK.Graphics.Glx.Display*,System.Int32,System.Int32,OpenTK.Graphics.Glx.Window)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", - "OpenTK.Graphics.Glx.Glx.SGIX.BindChannelToWindowSGIX(OpenTK.Graphics.Glx.Display@,System.Int32,System.Int32,OpenTK.Graphics.Glx.Window)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", - "OpenTK.Graphics.Glx.Glx.SGIX.BindHyperpipeSGIX(OpenTK.Graphics.Glx.Display*,System.Int32)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", - "OpenTK.Graphics.Glx.Glx.SGIX.BindHyperpipeSGIX(OpenTK.Graphics.Glx.Display@,System.Int32)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", - "OpenTK.Graphics.Glx.Glx.SGIX.BindSwapBarrierSGIX(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXDrawable,System.Int32)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", - "OpenTK.Graphics.Glx.Glx.SGIX.BindSwapBarrierSGIX(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXDrawable,System.Int32)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", - "OpenTK.Graphics.Glx.Glx.SGIX.ChannelRectSGIX(OpenTK.Graphics.Glx.Display*,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", - "OpenTK.Graphics.Glx.Glx.SGIX.ChannelRectSGIX(OpenTK.Graphics.Glx.Display@,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", - "OpenTK.Graphics.Glx.Glx.SGIX.ChannelRectSyncSGIX(OpenTK.Graphics.Glx.Display*,System.Int32,System.Int32,OpenTK.Graphics.Glx.All)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", - "OpenTK.Graphics.Glx.Glx.SGIX.ChannelRectSyncSGIX(OpenTK.Graphics.Glx.Display@,System.Int32,System.Int32,OpenTK.Graphics.Glx.All)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", - "OpenTK.Graphics.Glx.Glx.SGIX.ChooseFBConfigSGIX(OpenTK.Graphics.Glx.Display*,System.Int32,System.Int32*,System.Int32*)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", - "OpenTK.Graphics.Glx.Glx.SGIX.ChooseFBConfigSGIX(OpenTK.Graphics.Glx.Display@,System.Int32,System.Int32@,System.Int32@)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", - "OpenTK.Graphics.Glx.Glx.SGIX.CreateContextWithConfigSGIX(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXFBConfigSGIX,System.Int32,OpenTK.Graphics.Glx.GLXContext,System.Boolean)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", - "OpenTK.Graphics.Glx.Glx.SGIX.CreateContextWithConfigSGIX(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXFBConfigSGIX,System.Int32,OpenTK.Graphics.Glx.GLXContext,System.Boolean)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", - "OpenTK.Graphics.Glx.Glx.SGIX.CreateGLXPbufferSGIX(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXFBConfigSGIX,System.UInt32,System.UInt32,System.Int32*)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", - "OpenTK.Graphics.Glx.Glx.SGIX.CreateGLXPbufferSGIX(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXFBConfigSGIX,System.UInt32,System.UInt32,System.Int32@)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", - "OpenTK.Graphics.Glx.Glx.SGIX.CreateGLXPixmapWithConfigSGIX(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXFBConfigSGIX,OpenTK.Graphics.Glx.Pixmap)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", - "OpenTK.Graphics.Glx.Glx.SGIX.CreateGLXPixmapWithConfigSGIX(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXFBConfigSGIX,OpenTK.Graphics.Glx.Pixmap)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", - "OpenTK.Graphics.Glx.Glx.SGIX.DestroyGLXPbufferSGIX(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXPbufferSGIX)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", - "OpenTK.Graphics.Glx.Glx.SGIX.DestroyGLXPbufferSGIX(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXPbufferSGIX)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", - "OpenTK.Graphics.Glx.Glx.SGIX.DestroyHyperpipeConfigSGIX(OpenTK.Graphics.Glx.Display*,System.Int32)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", - "OpenTK.Graphics.Glx.Glx.SGIX.DestroyHyperpipeConfigSGIX(OpenTK.Graphics.Glx.Display@,System.Int32)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", - "OpenTK.Graphics.Glx.Glx.SGIX.GetFBConfigAttribSGIX(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXFBConfigSGIX,System.Int32,System.Int32*)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", - "OpenTK.Graphics.Glx.Glx.SGIX.GetFBConfigAttribSGIX(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXFBConfigSGIX,System.Int32,System.Int32@)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", - "OpenTK.Graphics.Glx.Glx.SGIX.GetFBConfigFromVisualSGIX(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.XVisualInfo*)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", - "OpenTK.Graphics.Glx.Glx.SGIX.GetFBConfigFromVisualSGIX(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.XVisualInfo@)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", - "OpenTK.Graphics.Glx.Glx.SGIX.GetSelectedEventSGIX(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXDrawable,System.UInt64*)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", - "OpenTK.Graphics.Glx.Glx.SGIX.GetSelectedEventSGIX(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXDrawable,System.UInt64@)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", - "OpenTK.Graphics.Glx.Glx.SGIX.GetVisualFromFBConfigSGIX(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXFBConfigSGIX)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", - "OpenTK.Graphics.Glx.Glx.SGIX.GetVisualFromFBConfigSGIX(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXFBConfigSGIX)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", - "OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeAttribSGIX(OpenTK.Graphics.Glx.Display*,System.Int32,System.Int32,System.Int32,System.Void*)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", - "OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeAttribSGIX(OpenTK.Graphics.Glx.Display@,System.Int32,System.Int32,System.Int32,System.IntPtr)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", - "OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeAttribSGIX``1(OpenTK.Graphics.Glx.Display@,System.Int32,System.Int32,System.Int32,``0@)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", - "OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeConfigSGIX(OpenTK.Graphics.Glx.Display*,System.Int32,System.Int32,OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX*,System.Int32*)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", - "OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeConfigSGIX(OpenTK.Graphics.Glx.Display@,System.Int32,System.Int32,OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX@,System.Int32@)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", - "OpenTK.Graphics.Glx.Glx.SGIX.JoinSwapGroupSGIX(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXDrawable,OpenTK.Graphics.Glx.GLXDrawable)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", - "OpenTK.Graphics.Glx.Glx.SGIX.JoinSwapGroupSGIX(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXDrawable,OpenTK.Graphics.Glx.GLXDrawable)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", - "OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelDeltasSGIX(OpenTK.Graphics.Glx.Display*,System.Int32,System.Int32,System.Int32*,System.Int32*,System.Int32*,System.Int32*)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", - "OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelDeltasSGIX(OpenTK.Graphics.Glx.Display@,System.Int32,System.Int32,System.Int32@,System.Int32@,System.Int32@,System.Int32@)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", - "OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelRectSGIX(OpenTK.Graphics.Glx.Display*,System.Int32,System.Int32,System.Int32*,System.Int32*,System.Int32*,System.Int32*)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", - "OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelRectSGIX(OpenTK.Graphics.Glx.Display@,System.Int32,System.Int32,System.Int32@,System.Int32@,System.Int32@,System.Int32@)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", - "OpenTK.Graphics.Glx.Glx.SGIX.QueryGLXPbufferSGIX(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXPbufferSGIX,System.Int32,System.UInt32*)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", - "OpenTK.Graphics.Glx.Glx.SGIX.QueryGLXPbufferSGIX(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXPbufferSGIX,System.Int32,System.UInt32@)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", - "OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeAttribSGIX(OpenTK.Graphics.Glx.Display*,System.Int32,System.Int32,System.Int32,System.Void*)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", - "OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeAttribSGIX(OpenTK.Graphics.Glx.Display@,System.Int32,System.Int32,System.Int32,System.IntPtr)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", - "OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeAttribSGIX``1(OpenTK.Graphics.Glx.Display@,System.Int32,System.Int32,System.Int32,``0@)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", - "OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeBestAttribSGIX(OpenTK.Graphics.Glx.Display*,System.Int32,System.Int32,System.Int32,System.Void*,System.Void*)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", - "OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeBestAttribSGIX(OpenTK.Graphics.Glx.Display@,System.Int32,System.Int32,System.Int32,System.IntPtr,System.IntPtr)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", - "OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeBestAttribSGIX``2(OpenTK.Graphics.Glx.Display@,System.Int32,System.Int32,System.Int32,``0@,``1@)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", - "OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeConfigSGIX(OpenTK.Graphics.Glx.Display*,System.Int32,System.Int32*)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", - "OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeConfigSGIX(OpenTK.Graphics.Glx.Display@,System.Int32,System.Int32@)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", - "OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeNetworkSGIX(OpenTK.Graphics.Glx.Display*,System.Int32*)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", - "OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeNetworkSGIX(OpenTK.Graphics.Glx.Display@,System.Int32@)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", - "OpenTK.Graphics.Glx.Glx.SGIX.QueryMaxSwapBarriersSGIX(OpenTK.Graphics.Glx.Display*,System.Int32,System.Int32*)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", - "OpenTK.Graphics.Glx.Glx.SGIX.QueryMaxSwapBarriersSGIX(OpenTK.Graphics.Glx.Display@,System.Int32,System.Int32@)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", - "OpenTK.Graphics.Glx.Glx.SGIX.SelectEventSGIX(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXDrawable,System.UInt64)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", - "OpenTK.Graphics.Glx.Glx.SGIX.SelectEventSGIX(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXDrawable,System.UInt64)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", + "OpenTK.Graphics.Glx.Glx.SGIX.BindChannelToWindowSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,OpenTK.Graphics.Glx.Window)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", + "OpenTK.Graphics.Glx.Glx.SGIX.BindHyperpipeSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", + "OpenTK.Graphics.Glx.Glx.SGIX.BindSwapBarrierSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", + "OpenTK.Graphics.Glx.Glx.SGIX.ChannelRectSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", + "OpenTK.Graphics.Glx.Glx.SGIX.ChannelRectSyncSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,OpenTK.Graphics.Glx.All)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", + "OpenTK.Graphics.Glx.Glx.SGIX.ChooseFBConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32*,System.Int32*)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", + "OpenTK.Graphics.Glx.Glx.SGIX.ChooseFBConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32@,System.Int32@)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", + "OpenTK.Graphics.Glx.Glx.SGIX.CreateContextWithConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfigSGIX,System.Int32,OpenTK.Graphics.Glx.GLXContext,System.Boolean)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", + "OpenTK.Graphics.Glx.Glx.SGIX.CreateGLXPbufferSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfigSGIX,System.UInt32,System.UInt32,System.Int32*)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", + "OpenTK.Graphics.Glx.Glx.SGIX.CreateGLXPbufferSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfigSGIX,System.UInt32,System.UInt32,System.Int32@)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", + "OpenTK.Graphics.Glx.Glx.SGIX.CreateGLXPixmapWithConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfigSGIX,OpenTK.Graphics.Glx.Pixmap)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", + "OpenTK.Graphics.Glx.Glx.SGIX.DestroyGLXPbufferSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXPbufferSGIX)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", + "OpenTK.Graphics.Glx.Glx.SGIX.DestroyHyperpipeConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", + "OpenTK.Graphics.Glx.Glx.SGIX.GetFBConfigAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfigSGIX,System.Int32,System.Int32*)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", + "OpenTK.Graphics.Glx.Glx.SGIX.GetFBConfigAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfigSGIX,System.Int32,System.Int32@)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", + "OpenTK.Graphics.Glx.Glx.SGIX.GetFBConfigFromVisualSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.XVisualInfoPtr)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", + "OpenTK.Graphics.Glx.Glx.SGIX.GetSelectedEventSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.UInt64*)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", + "OpenTK.Graphics.Glx.Glx.SGIX.GetSelectedEventSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.UInt64@)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", + "OpenTK.Graphics.Glx.Glx.SGIX.GetVisualFromFBConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfigSGIX)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", + "OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.IntPtr)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", + "OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.Void*)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", + "OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeAttribSGIX``1(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,``0@)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", + "OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX*,System.Int32*)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", + "OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX@,System.Int32@)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", + "OpenTK.Graphics.Glx.Glx.SGIX.JoinSwapGroupSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,OpenTK.Graphics.Glx.GLXDrawable)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", + "OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelDeltasSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32*,System.Int32*,System.Int32*,System.Int32*)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", + "OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelDeltasSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32@,System.Int32@,System.Int32@,System.Int32@)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", + "OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelRectSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32*,System.Int32*,System.Int32*,System.Int32*)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", + "OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelRectSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32@,System.Int32@,System.Int32@,System.Int32@)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", + "OpenTK.Graphics.Glx.Glx.SGIX.QueryGLXPbufferSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXPbufferSGIX,System.Int32,System.UInt32*)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", + "OpenTK.Graphics.Glx.Glx.SGIX.QueryGLXPbufferSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXPbufferSGIX,System.Int32,System.UInt32@)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", + "OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.IntPtr)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", + "OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.Void*)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", + "OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeAttribSGIX``1(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,``0@)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", + "OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeBestAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.IntPtr,System.IntPtr)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", + "OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeBestAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.Void*,System.Void*)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", + "OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeBestAttribSGIX``2(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,``0@,``1@)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", + "OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32*)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", + "OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32@)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", + "OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeNetworkSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32*)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", + "OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeNetworkSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32@)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", + "OpenTK.Graphics.Glx.Glx.SGIX.QueryMaxSwapBarriersSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32*)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", + "OpenTK.Graphics.Glx.Glx.SGIX.QueryMaxSwapBarriersSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32@)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", + "OpenTK.Graphics.Glx.Glx.SGIX.SelectEventSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.UInt64)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", "OpenTK.Graphics.Glx.Glx.SUN": "OpenTK.Graphics.Glx.Glx.SUN.yml", - "OpenTK.Graphics.Glx.Glx.SUN.GetTransparentIndexSUN(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.Window,OpenTK.Graphics.Glx.Window,System.UInt64*)": "OpenTK.Graphics.Glx.Glx.SUN.yml", - "OpenTK.Graphics.Glx.Glx.SUN.GetTransparentIndexSUN(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.Window,OpenTK.Graphics.Glx.Window,System.UInt64@)": "OpenTK.Graphics.Glx.Glx.SUN.yml", - "OpenTK.Graphics.Glx.Glx.SelectEvent(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXDrawable,System.UInt64)": "OpenTK.Graphics.Glx.Glx.yml", - "OpenTK.Graphics.Glx.Glx.SelectEvent(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXDrawable,System.UInt64)": "OpenTK.Graphics.Glx.Glx.yml", - "OpenTK.Graphics.Glx.Glx.SwapBuffers(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXDrawable)": "OpenTK.Graphics.Glx.Glx.yml", - "OpenTK.Graphics.Glx.Glx.SwapBuffers(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXDrawable)": "OpenTK.Graphics.Glx.Glx.yml", + "OpenTK.Graphics.Glx.Glx.SUN.GetTransparentIndexSUN(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.Window,OpenTK.Graphics.Glx.Window,System.UInt64*)": "OpenTK.Graphics.Glx.Glx.SUN.yml", + "OpenTK.Graphics.Glx.Glx.SUN.GetTransparentIndexSUN(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.Window,OpenTK.Graphics.Glx.Window,System.UInt64@)": "OpenTK.Graphics.Glx.Glx.SUN.yml", + "OpenTK.Graphics.Glx.Glx.SelectEvent(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.UInt64)": "OpenTK.Graphics.Glx.Glx.yml", + "OpenTK.Graphics.Glx.Glx.SwapBuffers(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable)": "OpenTK.Graphics.Glx.Glx.yml", "OpenTK.Graphics.Glx.Glx.UseXFont(OpenTK.Graphics.Glx.Font,System.Int32,System.Int32,System.Int32)": "OpenTK.Graphics.Glx.Glx.yml", "OpenTK.Graphics.Glx.Glx.WaitGL": "OpenTK.Graphics.Glx.Glx.yml", "OpenTK.Graphics.Glx.Glx.WaitX": "OpenTK.Graphics.Glx.Glx.yml", @@ -3679,13 +3687,21 @@ "OpenTK.Graphics.Glx.Pixmap.XID": "OpenTK.Graphics.Glx.Pixmap.yml", "OpenTK.Graphics.Glx.Pixmap.op_Explicit(OpenTK.Graphics.Glx.Pixmap)~System.UIntPtr": "OpenTK.Graphics.Glx.Pixmap.yml", "OpenTK.Graphics.Glx.Pixmap.op_Explicit(System.UIntPtr)~OpenTK.Graphics.Glx.Pixmap": "OpenTK.Graphics.Glx.Pixmap.yml", - "OpenTK.Graphics.Glx.Screen": "OpenTK.Graphics.Glx.Screen.yml", + "OpenTK.Graphics.Glx.ScreenPtr": "OpenTK.Graphics.Glx.ScreenPtr.yml", + "OpenTK.Graphics.Glx.ScreenPtr.#ctor(System.IntPtr)": "OpenTK.Graphics.Glx.ScreenPtr.yml", + "OpenTK.Graphics.Glx.ScreenPtr.Value": "OpenTK.Graphics.Glx.ScreenPtr.yml", + "OpenTK.Graphics.Glx.ScreenPtr.op_Explicit(OpenTK.Graphics.Glx.ScreenPtr)~System.IntPtr": "OpenTK.Graphics.Glx.ScreenPtr.yml", + "OpenTK.Graphics.Glx.ScreenPtr.op_Explicit(System.IntPtr)~OpenTK.Graphics.Glx.ScreenPtr": "OpenTK.Graphics.Glx.ScreenPtr.yml", "OpenTK.Graphics.Glx.Window": "OpenTK.Graphics.Glx.Window.yml", "OpenTK.Graphics.Glx.Window.#ctor(System.UIntPtr)": "OpenTK.Graphics.Glx.Window.yml", "OpenTK.Graphics.Glx.Window.XID": "OpenTK.Graphics.Glx.Window.yml", "OpenTK.Graphics.Glx.Window.op_Explicit(OpenTK.Graphics.Glx.Window)~System.UIntPtr": "OpenTK.Graphics.Glx.Window.yml", "OpenTK.Graphics.Glx.Window.op_Explicit(System.UIntPtr)~OpenTK.Graphics.Glx.Window": "OpenTK.Graphics.Glx.Window.yml", - "OpenTK.Graphics.Glx.XVisualInfo": "OpenTK.Graphics.Glx.XVisualInfo.yml", + "OpenTK.Graphics.Glx.XVisualInfoPtr": "OpenTK.Graphics.Glx.XVisualInfoPtr.yml", + "OpenTK.Graphics.Glx.XVisualInfoPtr.#ctor(System.IntPtr)": "OpenTK.Graphics.Glx.XVisualInfoPtr.yml", + "OpenTK.Graphics.Glx.XVisualInfoPtr.Value": "OpenTK.Graphics.Glx.XVisualInfoPtr.yml", + "OpenTK.Graphics.Glx.XVisualInfoPtr.op_Explicit(OpenTK.Graphics.Glx.XVisualInfoPtr)~System.IntPtr": "OpenTK.Graphics.Glx.XVisualInfoPtr.yml", + "OpenTK.Graphics.Glx.XVisualInfoPtr.op_Explicit(System.IntPtr)~OpenTK.Graphics.Glx.XVisualInfoPtr": "OpenTK.Graphics.Glx.XVisualInfoPtr.yml", "OpenTK.Graphics.PerfQueryHandle": "OpenTK.Graphics.PerfQueryHandle.yml", "OpenTK.Graphics.PerfQueryHandle.#ctor(System.Int32)": "OpenTK.Graphics.PerfQueryHandle.yml", "OpenTK.Graphics.PerfQueryHandle.Equals(OpenTK.Graphics.PerfQueryHandle)": "OpenTK.Graphics.PerfQueryHandle.yml", @@ -3810,6 +3826,9 @@ "OpenTK.Graphics.VertexArrayHandle.op_Explicit(OpenTK.Graphics.VertexArrayHandle)~System.Int32": "OpenTK.Graphics.VertexArrayHandle.yml", "OpenTK.Graphics.VertexArrayHandle.op_Explicit(System.Int32)~OpenTK.Graphics.VertexArrayHandle": "OpenTK.Graphics.VertexArrayHandle.yml", "OpenTK.Graphics.VertexArrayHandle.op_Inequality(OpenTK.Graphics.VertexArrayHandle,OpenTK.Graphics.VertexArrayHandle)": "OpenTK.Graphics.VertexArrayHandle.yml", + "OpenTK.Graphics.WGLLoader": "OpenTK.Graphics.WGLLoader.yml", + "OpenTK.Graphics.WGLLoader.BindingsContext": "OpenTK.Graphics.WGLLoader.BindingsContext.yml", + "OpenTK.Graphics.WGLLoader.BindingsContext.GetProcAddress(System.String)": "OpenTK.Graphics.WGLLoader.BindingsContext.yml", "OpenTK.Graphics.Wgl": "OpenTK.Graphics.Wgl.yml", "OpenTK.Graphics.Wgl.AccelerationType": "OpenTK.Graphics.Wgl.AccelerationType.yml", "OpenTK.Graphics.Wgl.AccelerationType.FullAccelerationArb": "OpenTK.Graphics.Wgl.AccelerationType.yml", @@ -4564,7 +4583,7 @@ "OpenTK.Graphics.Wgl.Wgl.GetLayerPaletteEntries(System.IntPtr,System.Int32,System.Int32,System.Int32,OpenTK.Graphics.Wgl.ColorRef@)": "OpenTK.Graphics.Wgl.Wgl.yml", "OpenTK.Graphics.Wgl.Wgl.GetLayerPaletteEntries(System.IntPtr,System.Int32,System.Int32,System.Span{OpenTK.Graphics.Wgl.ColorRef})": "OpenTK.Graphics.Wgl.Wgl.yml", "OpenTK.Graphics.Wgl.Wgl.GetPixelFormat(System.IntPtr)": "OpenTK.Graphics.Wgl.Wgl.yml", - "OpenTK.Graphics.Wgl.Wgl.GetProcAddress(System.Char*)": "OpenTK.Graphics.Wgl.Wgl.yml", + "OpenTK.Graphics.Wgl.Wgl.GetProcAddress(System.Byte*)": "OpenTK.Graphics.Wgl.Wgl.yml", "OpenTK.Graphics.Wgl.Wgl.GetProcAddress(System.String)": "OpenTK.Graphics.Wgl.Wgl.yml", "OpenTK.Graphics.Wgl.Wgl.I3D": "OpenTK.Graphics.Wgl.Wgl.I3D.yml", "OpenTK.Graphics.Wgl.Wgl.I3D.AssociateImageBufferEventsI3D(System.IntPtr,System.IntPtr*,System.IntPtr*,System.UInt32*,System.UInt32)": "OpenTK.Graphics.Wgl.Wgl.I3D.yml", @@ -8453,7 +8472,7 @@ "OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.GetProcedureAddress(OpenTK.Core.Platform.OpenGLContextHandle,System.String)": "OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.yml", "OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.GetSharedContext(OpenTK.Core.Platform.OpenGLContextHandle)": "OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.yml", "OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.GetSwapInterval": "OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.yml", - "OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.Initialize(OpenTK.Core.Platform.PalComponents)": "OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.yml", + "OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions)": "OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.yml", "OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.Logger": "OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.yml", "OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.Name": "OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.yml", "OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.Provides": "OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.yml", @@ -8469,6 +8488,7 @@ "OpenTK.Platform.Native.PlatformComponents": "OpenTK.Platform.Native.PlatformComponents.yml", "OpenTK.Platform.Native.PlatformComponents.CreateClipboardComponent": "OpenTK.Platform.Native.PlatformComponents.yml", "OpenTK.Platform.Native.PlatformComponents.CreateCursorComponent": "OpenTK.Platform.Native.PlatformComponents.yml", + "OpenTK.Platform.Native.PlatformComponents.CreateDialogComponent": "OpenTK.Platform.Native.PlatformComponents.yml", "OpenTK.Platform.Native.PlatformComponents.CreateDisplayComponent": "OpenTK.Platform.Native.PlatformComponents.yml", "OpenTK.Platform.Native.PlatformComponents.CreateIconComponent": "OpenTK.Platform.Native.PlatformComponents.yml", "OpenTK.Platform.Native.PlatformComponents.CreateJoystickComponent": "OpenTK.Platform.Native.PlatformComponents.yml", @@ -8487,9 +8507,8 @@ "OpenTK.Platform.Native.SDL.SDLClipboardComponent.GetClipboardBitmap": "OpenTK.Platform.Native.SDL.SDLClipboardComponent.yml", "OpenTK.Platform.Native.SDL.SDLClipboardComponent.GetClipboardFiles": "OpenTK.Platform.Native.SDL.SDLClipboardComponent.yml", "OpenTK.Platform.Native.SDL.SDLClipboardComponent.GetClipboardFormat": "OpenTK.Platform.Native.SDL.SDLClipboardComponent.yml", - "OpenTK.Platform.Native.SDL.SDLClipboardComponent.GetClipboardHTML": "OpenTK.Platform.Native.SDL.SDLClipboardComponent.yml", "OpenTK.Platform.Native.SDL.SDLClipboardComponent.GetClipboardText": "OpenTK.Platform.Native.SDL.SDLClipboardComponent.yml", - "OpenTK.Platform.Native.SDL.SDLClipboardComponent.Initialize(OpenTK.Core.Platform.PalComponents)": "OpenTK.Platform.Native.SDL.SDLClipboardComponent.yml", + "OpenTK.Platform.Native.SDL.SDLClipboardComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions)": "OpenTK.Platform.Native.SDL.SDLClipboardComponent.yml", "OpenTK.Platform.Native.SDL.SDLClipboardComponent.Logger": "OpenTK.Platform.Native.SDL.SDLClipboardComponent.yml", "OpenTK.Platform.Native.SDL.SDLClipboardComponent.Name": "OpenTK.Platform.Native.SDL.SDLClipboardComponent.yml", "OpenTK.Platform.Native.SDL.SDLClipboardComponent.Provides": "OpenTK.Platform.Native.SDL.SDLClipboardComponent.yml", @@ -8504,7 +8523,7 @@ "OpenTK.Platform.Native.SDL.SDLCursorComponent.Destroy(OpenTK.Core.Platform.CursorHandle)": "OpenTK.Platform.Native.SDL.SDLCursorComponent.yml", "OpenTK.Platform.Native.SDL.SDLCursorComponent.GetHotspot(OpenTK.Core.Platform.CursorHandle,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.SDL.SDLCursorComponent.yml", "OpenTK.Platform.Native.SDL.SDLCursorComponent.GetSize(OpenTK.Core.Platform.CursorHandle,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.SDL.SDLCursorComponent.yml", - "OpenTK.Platform.Native.SDL.SDLCursorComponent.Initialize(OpenTK.Core.Platform.PalComponents)": "OpenTK.Platform.Native.SDL.SDLCursorComponent.yml", + "OpenTK.Platform.Native.SDL.SDLCursorComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions)": "OpenTK.Platform.Native.SDL.SDLCursorComponent.yml", "OpenTK.Platform.Native.SDL.SDLCursorComponent.IsSystemCursor(OpenTK.Core.Platform.CursorHandle)": "OpenTK.Platform.Native.SDL.SDLCursorComponent.yml", "OpenTK.Platform.Native.SDL.SDLCursorComponent.Logger": "OpenTK.Platform.Native.SDL.SDLCursorComponent.yml", "OpenTK.Platform.Native.SDL.SDLCursorComponent.Name": "OpenTK.Platform.Native.SDL.SDLCursorComponent.yml", @@ -8522,7 +8541,7 @@ "OpenTK.Platform.Native.SDL.SDLDisplayComponent.GetVideoMode(OpenTK.Core.Platform.DisplayHandle,OpenTK.Core.Platform.VideoMode@)": "OpenTK.Platform.Native.SDL.SDLDisplayComponent.yml", "OpenTK.Platform.Native.SDL.SDLDisplayComponent.GetVirtualPosition(OpenTK.Core.Platform.DisplayHandle,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.SDL.SDLDisplayComponent.yml", "OpenTK.Platform.Native.SDL.SDLDisplayComponent.GetWorkArea(OpenTK.Core.Platform.DisplayHandle,OpenTK.Mathematics.Box2i@)": "OpenTK.Platform.Native.SDL.SDLDisplayComponent.yml", - "OpenTK.Platform.Native.SDL.SDLDisplayComponent.Initialize(OpenTK.Core.Platform.PalComponents)": "OpenTK.Platform.Native.SDL.SDLDisplayComponent.yml", + "OpenTK.Platform.Native.SDL.SDLDisplayComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions)": "OpenTK.Platform.Native.SDL.SDLDisplayComponent.yml", "OpenTK.Platform.Native.SDL.SDLDisplayComponent.IsPrimary(OpenTK.Core.Platform.DisplayHandle)": "OpenTK.Platform.Native.SDL.SDLDisplayComponent.yml", "OpenTK.Platform.Native.SDL.SDLDisplayComponent.Logger": "OpenTK.Platform.Native.SDL.SDLDisplayComponent.yml", "OpenTK.Platform.Native.SDL.SDLDisplayComponent.Name": "OpenTK.Platform.Native.SDL.SDLDisplayComponent.yml", @@ -8537,7 +8556,7 @@ "OpenTK.Platform.Native.SDL.SDLIconComponent.GetBitmapByteSize(OpenTK.Core.Platform.IconHandle)": "OpenTK.Platform.Native.SDL.SDLIconComponent.yml", "OpenTK.Platform.Native.SDL.SDLIconComponent.GetBitmapData(OpenTK.Core.Platform.IconHandle,System.Span{System.Byte})": "OpenTK.Platform.Native.SDL.SDLIconComponent.yml", "OpenTK.Platform.Native.SDL.SDLIconComponent.GetSize(OpenTK.Core.Platform.IconHandle,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.SDL.SDLIconComponent.yml", - "OpenTK.Platform.Native.SDL.SDLIconComponent.Initialize(OpenTK.Core.Platform.PalComponents)": "OpenTK.Platform.Native.SDL.SDLIconComponent.yml", + "OpenTK.Platform.Native.SDL.SDLIconComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions)": "OpenTK.Platform.Native.SDL.SDLIconComponent.yml", "OpenTK.Platform.Native.SDL.SDLIconComponent.Logger": "OpenTK.Platform.Native.SDL.SDLIconComponent.yml", "OpenTK.Platform.Native.SDL.SDLIconComponent.Name": "OpenTK.Platform.Native.SDL.SDLIconComponent.yml", "OpenTK.Platform.Native.SDL.SDLIconComponent.Provides": "OpenTK.Platform.Native.SDL.SDLIconComponent.yml", @@ -8547,7 +8566,7 @@ "OpenTK.Platform.Native.SDL.SDLJoystickComponent.GetButton(OpenTK.Core.Platform.JoystickHandle,OpenTK.Core.Platform.JoystickButton)": "OpenTK.Platform.Native.SDL.SDLJoystickComponent.yml", "OpenTK.Platform.Native.SDL.SDLJoystickComponent.GetGuid(OpenTK.Core.Platform.JoystickHandle)": "OpenTK.Platform.Native.SDL.SDLJoystickComponent.yml", "OpenTK.Platform.Native.SDL.SDLJoystickComponent.GetName(OpenTK.Core.Platform.JoystickHandle)": "OpenTK.Platform.Native.SDL.SDLJoystickComponent.yml", - "OpenTK.Platform.Native.SDL.SDLJoystickComponent.Initialize(OpenTK.Core.Platform.PalComponents)": "OpenTK.Platform.Native.SDL.SDLJoystickComponent.yml", + "OpenTK.Platform.Native.SDL.SDLJoystickComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions)": "OpenTK.Platform.Native.SDL.SDLJoystickComponent.yml", "OpenTK.Platform.Native.SDL.SDLJoystickComponent.IsConnected(System.Int32)": "OpenTK.Platform.Native.SDL.SDLJoystickComponent.yml", "OpenTK.Platform.Native.SDL.SDLJoystickComponent.LeftDeadzone": "OpenTK.Platform.Native.SDL.SDLJoystickComponent.yml", "OpenTK.Platform.Native.SDL.SDLJoystickComponent.Logger": "OpenTK.Platform.Native.SDL.SDLJoystickComponent.yml", @@ -8567,7 +8586,7 @@ "OpenTK.Platform.Native.SDL.SDLKeyboardComponent.GetKeyboardModifiers": "OpenTK.Platform.Native.SDL.SDLKeyboardComponent.yml", "OpenTK.Platform.Native.SDL.SDLKeyboardComponent.GetKeyboardState(System.Boolean[])": "OpenTK.Platform.Native.SDL.SDLKeyboardComponent.yml", "OpenTK.Platform.Native.SDL.SDLKeyboardComponent.GetScancodeFromKey(OpenTK.Core.Platform.Key)": "OpenTK.Platform.Native.SDL.SDLKeyboardComponent.yml", - "OpenTK.Platform.Native.SDL.SDLKeyboardComponent.Initialize(OpenTK.Core.Platform.PalComponents)": "OpenTK.Platform.Native.SDL.SDLKeyboardComponent.yml", + "OpenTK.Platform.Native.SDL.SDLKeyboardComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions)": "OpenTK.Platform.Native.SDL.SDLKeyboardComponent.yml", "OpenTK.Platform.Native.SDL.SDLKeyboardComponent.Logger": "OpenTK.Platform.Native.SDL.SDLKeyboardComponent.yml", "OpenTK.Platform.Native.SDL.SDLKeyboardComponent.Name": "OpenTK.Platform.Native.SDL.SDLKeyboardComponent.yml", "OpenTK.Platform.Native.SDL.SDLKeyboardComponent.Provides": "OpenTK.Platform.Native.SDL.SDLKeyboardComponent.yml", @@ -8578,7 +8597,7 @@ "OpenTK.Platform.Native.SDL.SDLMouseComponent.CanSetMousePosition": "OpenTK.Platform.Native.SDL.SDLMouseComponent.yml", "OpenTK.Platform.Native.SDL.SDLMouseComponent.GetMouseState(OpenTK.Core.Platform.MouseState@)": "OpenTK.Platform.Native.SDL.SDLMouseComponent.yml", "OpenTK.Platform.Native.SDL.SDLMouseComponent.GetPosition(System.Int32@,System.Int32@)": "OpenTK.Platform.Native.SDL.SDLMouseComponent.yml", - "OpenTK.Platform.Native.SDL.SDLMouseComponent.Initialize(OpenTK.Core.Platform.PalComponents)": "OpenTK.Platform.Native.SDL.SDLMouseComponent.yml", + "OpenTK.Platform.Native.SDL.SDLMouseComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions)": "OpenTK.Platform.Native.SDL.SDLMouseComponent.yml", "OpenTK.Platform.Native.SDL.SDLMouseComponent.Logger": "OpenTK.Platform.Native.SDL.SDLMouseComponent.yml", "OpenTK.Platform.Native.SDL.SDLMouseComponent.Name": "OpenTK.Platform.Native.SDL.SDLMouseComponent.yml", "OpenTK.Platform.Native.SDL.SDLMouseComponent.Provides": "OpenTK.Platform.Native.SDL.SDLMouseComponent.yml", @@ -8596,7 +8615,7 @@ "OpenTK.Platform.Native.SDL.SDLOpenGLComponent.GetProcedureAddress(OpenTK.Core.Platform.OpenGLContextHandle,System.String)": "OpenTK.Platform.Native.SDL.SDLOpenGLComponent.yml", "OpenTK.Platform.Native.SDL.SDLOpenGLComponent.GetSharedContext(OpenTK.Core.Platform.OpenGLContextHandle)": "OpenTK.Platform.Native.SDL.SDLOpenGLComponent.yml", "OpenTK.Platform.Native.SDL.SDLOpenGLComponent.GetSwapInterval": "OpenTK.Platform.Native.SDL.SDLOpenGLComponent.yml", - "OpenTK.Platform.Native.SDL.SDLOpenGLComponent.Initialize(OpenTK.Core.Platform.PalComponents)": "OpenTK.Platform.Native.SDL.SDLOpenGLComponent.yml", + "OpenTK.Platform.Native.SDL.SDLOpenGLComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions)": "OpenTK.Platform.Native.SDL.SDLOpenGLComponent.yml", "OpenTK.Platform.Native.SDL.SDLOpenGLComponent.Logger": "OpenTK.Platform.Native.SDL.SDLOpenGLComponent.yml", "OpenTK.Platform.Native.SDL.SDLOpenGLComponent.Name": "OpenTK.Platform.Native.SDL.SDLOpenGLComponent.yml", "OpenTK.Platform.Native.SDL.SDLOpenGLComponent.Provides": "OpenTK.Platform.Native.SDL.SDLOpenGLComponent.yml", @@ -8608,7 +8627,7 @@ "OpenTK.Platform.Native.SDL.SDLShellComponent.GetBatteryInfo(OpenTK.Core.Platform.BatteryInfo@)": "OpenTK.Platform.Native.SDL.SDLShellComponent.yml", "OpenTK.Platform.Native.SDL.SDLShellComponent.GetPreferredTheme": "OpenTK.Platform.Native.SDL.SDLShellComponent.yml", "OpenTK.Platform.Native.SDL.SDLShellComponent.GetSystemMemoryInformation": "OpenTK.Platform.Native.SDL.SDLShellComponent.yml", - "OpenTK.Platform.Native.SDL.SDLShellComponent.Initialize(OpenTK.Core.Platform.PalComponents)": "OpenTK.Platform.Native.SDL.SDLShellComponent.yml", + "OpenTK.Platform.Native.SDL.SDLShellComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions)": "OpenTK.Platform.Native.SDL.SDLShellComponent.yml", "OpenTK.Platform.Native.SDL.SDLShellComponent.Logger": "OpenTK.Platform.Native.SDL.SDLShellComponent.yml", "OpenTK.Platform.Native.SDL.SDLShellComponent.Name": "OpenTK.Platform.Native.SDL.SDLShellComponent.yml", "OpenTK.Platform.Native.SDL.SDLShellComponent.Provides": "OpenTK.Platform.Native.SDL.SDLShellComponent.yml", @@ -8628,16 +8647,19 @@ "OpenTK.Platform.Native.SDL.SDLWindowComponent.GetClientSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", "OpenTK.Platform.Native.SDL.SDLWindowComponent.GetCursorCaptureMode(OpenTK.Core.Platform.WindowHandle)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", "OpenTK.Platform.Native.SDL.SDLWindowComponent.GetDisplay(OpenTK.Core.Platform.WindowHandle)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", + "OpenTK.Platform.Native.SDL.SDLWindowComponent.GetFramebufferSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", "OpenTK.Platform.Native.SDL.SDLWindowComponent.GetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle@)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", "OpenTK.Platform.Native.SDL.SDLWindowComponent.GetIcon(OpenTK.Core.Platform.WindowHandle)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", "OpenTK.Platform.Native.SDL.SDLWindowComponent.GetMaxClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", "OpenTK.Platform.Native.SDL.SDLWindowComponent.GetMinClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", "OpenTK.Platform.Native.SDL.SDLWindowComponent.GetMode(OpenTK.Core.Platform.WindowHandle)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", "OpenTK.Platform.Native.SDL.SDLWindowComponent.GetPosition(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", + "OpenTK.Platform.Native.SDL.SDLWindowComponent.GetScaleFactor(OpenTK.Core.Platform.WindowHandle,System.Single@,System.Single@)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", "OpenTK.Platform.Native.SDL.SDLWindowComponent.GetSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", "OpenTK.Platform.Native.SDL.SDLWindowComponent.GetTitle(OpenTK.Core.Platform.WindowHandle)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", - "OpenTK.Platform.Native.SDL.SDLWindowComponent.Initialize(OpenTK.Core.Platform.PalComponents)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", + "OpenTK.Platform.Native.SDL.SDLWindowComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", "OpenTK.Platform.Native.SDL.SDLWindowComponent.IsAlwaysOnTop(OpenTK.Core.Platform.WindowHandle)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", + "OpenTK.Platform.Native.SDL.SDLWindowComponent.IsFocused(OpenTK.Core.Platform.WindowHandle)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", "OpenTK.Platform.Native.SDL.SDLWindowComponent.IsWindowDestroyed(OpenTK.Core.Platform.WindowHandle)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", "OpenTK.Platform.Native.SDL.SDLWindowComponent.Logger": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", "OpenTK.Platform.Native.SDL.SDLWindowComponent.Name": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", @@ -8669,9 +8691,10 @@ "OpenTK.Platform.Native.Toolkit": "OpenTK.Platform.Native.Toolkit.yml", "OpenTK.Platform.Native.Toolkit.Clipboard": "OpenTK.Platform.Native.Toolkit.yml", "OpenTK.Platform.Native.Toolkit.Cursor": "OpenTK.Platform.Native.Toolkit.yml", + "OpenTK.Platform.Native.Toolkit.Dialog": "OpenTK.Platform.Native.Toolkit.yml", "OpenTK.Platform.Native.Toolkit.Display": "OpenTK.Platform.Native.Toolkit.yml", "OpenTK.Platform.Native.Toolkit.Icon": "OpenTK.Platform.Native.Toolkit.yml", - "OpenTK.Platform.Native.Toolkit.Init(OpenTK.Platform.Native.ToolkitOptions)": "OpenTK.Platform.Native.Toolkit.yml", + "OpenTK.Platform.Native.Toolkit.Init(OpenTK.Core.Platform.ToolkitOptions)": "OpenTK.Platform.Native.Toolkit.yml", "OpenTK.Platform.Native.Toolkit.Joystick": "OpenTK.Platform.Native.Toolkit.yml", "OpenTK.Platform.Native.Toolkit.Keyboard": "OpenTK.Platform.Native.Toolkit.yml", "OpenTK.Platform.Native.Toolkit.Mouse": "OpenTK.Platform.Native.Toolkit.yml", @@ -8679,9 +8702,6 @@ "OpenTK.Platform.Native.Toolkit.Shell": "OpenTK.Platform.Native.Toolkit.yml", "OpenTK.Platform.Native.Toolkit.Surface": "OpenTK.Platform.Native.Toolkit.yml", "OpenTK.Platform.Native.Toolkit.Window": "OpenTK.Platform.Native.Toolkit.yml", - "OpenTK.Platform.Native.ToolkitOptions": "OpenTK.Platform.Native.ToolkitOptions.yml", - "OpenTK.Platform.Native.ToolkitOptions.ApplicationName": "OpenTK.Platform.Native.ToolkitOptions.yml", - "OpenTK.Platform.Native.ToolkitOptions.Logger": "OpenTK.Platform.Native.ToolkitOptions.yml", "OpenTK.Platform.Native.Windows": "OpenTK.Platform.Native.Windows.yml", "OpenTK.Platform.Native.Windows.ClipboardComponent": "OpenTK.Platform.Native.Windows.ClipboardComponent.yml", "OpenTK.Platform.Native.Windows.ClipboardComponent.CanIncludeInClipboardHistory": "OpenTK.Platform.Native.Windows.ClipboardComponent.yml", @@ -8690,9 +8710,8 @@ "OpenTK.Platform.Native.Windows.ClipboardComponent.GetClipboardBitmap": "OpenTK.Platform.Native.Windows.ClipboardComponent.yml", "OpenTK.Platform.Native.Windows.ClipboardComponent.GetClipboardFiles": "OpenTK.Platform.Native.Windows.ClipboardComponent.yml", "OpenTK.Platform.Native.Windows.ClipboardComponent.GetClipboardFormat": "OpenTK.Platform.Native.Windows.ClipboardComponent.yml", - "OpenTK.Platform.Native.Windows.ClipboardComponent.GetClipboardHTML": "OpenTK.Platform.Native.Windows.ClipboardComponent.yml", "OpenTK.Platform.Native.Windows.ClipboardComponent.GetClipboardText": "OpenTK.Platform.Native.Windows.ClipboardComponent.yml", - "OpenTK.Platform.Native.Windows.ClipboardComponent.Initialize(OpenTK.Core.Platform.PalComponents)": "OpenTK.Platform.Native.Windows.ClipboardComponent.yml", + "OpenTK.Platform.Native.Windows.ClipboardComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions)": "OpenTK.Platform.Native.Windows.ClipboardComponent.yml", "OpenTK.Platform.Native.Windows.ClipboardComponent.Logger": "OpenTK.Platform.Native.Windows.ClipboardComponent.yml", "OpenTK.Platform.Native.Windows.ClipboardComponent.Name": "OpenTK.Platform.Native.Windows.ClipboardComponent.yml", "OpenTK.Platform.Native.Windows.ClipboardComponent.Provides": "OpenTK.Platform.Native.Windows.ClipboardComponent.yml", @@ -8713,11 +8732,19 @@ "OpenTK.Platform.Native.Windows.CursorComponent.GetHotspot(OpenTK.Core.Platform.CursorHandle,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.Windows.CursorComponent.yml", "OpenTK.Platform.Native.Windows.CursorComponent.GetImage(OpenTK.Core.Platform.CursorHandle,System.Span{System.Byte})": "OpenTK.Platform.Native.Windows.CursorComponent.yml", "OpenTK.Platform.Native.Windows.CursorComponent.GetSize(OpenTK.Core.Platform.CursorHandle,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.Windows.CursorComponent.yml", - "OpenTK.Platform.Native.Windows.CursorComponent.Initialize(OpenTK.Core.Platform.PalComponents)": "OpenTK.Platform.Native.Windows.CursorComponent.yml", + "OpenTK.Platform.Native.Windows.CursorComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions)": "OpenTK.Platform.Native.Windows.CursorComponent.yml", "OpenTK.Platform.Native.Windows.CursorComponent.IsSystemCursor(OpenTK.Core.Platform.CursorHandle)": "OpenTK.Platform.Native.Windows.CursorComponent.yml", "OpenTK.Platform.Native.Windows.CursorComponent.Logger": "OpenTK.Platform.Native.Windows.CursorComponent.yml", "OpenTK.Platform.Native.Windows.CursorComponent.Name": "OpenTK.Platform.Native.Windows.CursorComponent.yml", "OpenTK.Platform.Native.Windows.CursorComponent.Provides": "OpenTK.Platform.Native.Windows.CursorComponent.yml", + "OpenTK.Platform.Native.Windows.DialogComponent": "OpenTK.Platform.Native.Windows.DialogComponent.yml", + "OpenTK.Platform.Native.Windows.DialogComponent.CanTargetFolders": "OpenTK.Platform.Native.Windows.DialogComponent.yml", + "OpenTK.Platform.Native.Windows.DialogComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions)": "OpenTK.Platform.Native.Windows.DialogComponent.yml", + "OpenTK.Platform.Native.Windows.DialogComponent.Logger": "OpenTK.Platform.Native.Windows.DialogComponent.yml", + "OpenTK.Platform.Native.Windows.DialogComponent.Name": "OpenTK.Platform.Native.Windows.DialogComponent.yml", + "OpenTK.Platform.Native.Windows.DialogComponent.Provides": "OpenTK.Platform.Native.Windows.DialogComponent.yml", + "OpenTK.Platform.Native.Windows.DialogComponent.ShowOpenDialog(OpenTK.Core.Platform.WindowHandle,System.String,System.String,OpenTK.Core.Platform.DialogFileFilter[],OpenTK.Core.Platform.OpenDialogOptions)": "OpenTK.Platform.Native.Windows.DialogComponent.yml", + "OpenTK.Platform.Native.Windows.DialogComponent.ShowSaveDialog(OpenTK.Core.Platform.WindowHandle,System.String,System.String,OpenTK.Core.Platform.DialogFileFilter[],OpenTK.Core.Platform.SaveDialogOptions)": "OpenTK.Platform.Native.Windows.DialogComponent.yml", "OpenTK.Platform.Native.Windows.DisplayComponent": "OpenTK.Platform.Native.Windows.DisplayComponent.yml", "OpenTK.Platform.Native.Windows.DisplayComponent.CanGetVirtualPosition": "OpenTK.Platform.Native.Windows.DisplayComponent.yml", "OpenTK.Platform.Native.Windows.DisplayComponent.Close(OpenTK.Core.Platform.DisplayHandle)": "OpenTK.Platform.Native.Windows.DisplayComponent.yml", @@ -8732,7 +8759,7 @@ "OpenTK.Platform.Native.Windows.DisplayComponent.GetVideoMode(OpenTK.Core.Platform.DisplayHandle,OpenTK.Core.Platform.VideoMode@)": "OpenTK.Platform.Native.Windows.DisplayComponent.yml", "OpenTK.Platform.Native.Windows.DisplayComponent.GetVirtualPosition(OpenTK.Core.Platform.DisplayHandle,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.Windows.DisplayComponent.yml", "OpenTK.Platform.Native.Windows.DisplayComponent.GetWorkArea(OpenTK.Core.Platform.DisplayHandle,OpenTK.Mathematics.Box2i@)": "OpenTK.Platform.Native.Windows.DisplayComponent.yml", - "OpenTK.Platform.Native.Windows.DisplayComponent.Initialize(OpenTK.Core.Platform.PalComponents)": "OpenTK.Platform.Native.Windows.DisplayComponent.yml", + "OpenTK.Platform.Native.Windows.DisplayComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions)": "OpenTK.Platform.Native.Windows.DisplayComponent.yml", "OpenTK.Platform.Native.Windows.DisplayComponent.IsPrimary(OpenTK.Core.Platform.DisplayHandle)": "OpenTK.Platform.Native.Windows.DisplayComponent.yml", "OpenTK.Platform.Native.Windows.DisplayComponent.Logger": "OpenTK.Platform.Native.Windows.DisplayComponent.yml", "OpenTK.Platform.Native.Windows.DisplayComponent.Name": "OpenTK.Platform.Native.Windows.DisplayComponent.yml", @@ -8750,7 +8777,7 @@ "OpenTK.Platform.Native.Windows.IconComponent.GetBitmapByteSize(OpenTK.Core.Platform.IconHandle)": "OpenTK.Platform.Native.Windows.IconComponent.yml", "OpenTK.Platform.Native.Windows.IconComponent.GetBitmapData(OpenTK.Core.Platform.IconHandle,System.Span{System.Byte})": "OpenTK.Platform.Native.Windows.IconComponent.yml", "OpenTK.Platform.Native.Windows.IconComponent.GetSize(OpenTK.Core.Platform.IconHandle,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.Windows.IconComponent.yml", - "OpenTK.Platform.Native.Windows.IconComponent.Initialize(OpenTK.Core.Platform.PalComponents)": "OpenTK.Platform.Native.Windows.IconComponent.yml", + "OpenTK.Platform.Native.Windows.IconComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions)": "OpenTK.Platform.Native.Windows.IconComponent.yml", "OpenTK.Platform.Native.Windows.IconComponent.Logger": "OpenTK.Platform.Native.Windows.IconComponent.yml", "OpenTK.Platform.Native.Windows.IconComponent.Name": "OpenTK.Platform.Native.Windows.IconComponent.yml", "OpenTK.Platform.Native.Windows.IconComponent.Provides": "OpenTK.Platform.Native.Windows.IconComponent.yml", @@ -8762,7 +8789,7 @@ "OpenTK.Platform.Native.Windows.JoystickComponent.GetName(OpenTK.Core.Platform.JoystickHandle)": "OpenTK.Platform.Native.Windows.JoystickComponent.yml", "OpenTK.Platform.Native.Windows.JoystickComponent.GetNumberOfAxes(OpenTK.Core.Platform.JoystickHandle)": "OpenTK.Platform.Native.Windows.JoystickComponent.yml", "OpenTK.Platform.Native.Windows.JoystickComponent.GetNumberOfButtons(OpenTK.Core.Platform.JoystickHandle)": "OpenTK.Platform.Native.Windows.JoystickComponent.yml", - "OpenTK.Platform.Native.Windows.JoystickComponent.Initialize(OpenTK.Core.Platform.PalComponents)": "OpenTK.Platform.Native.Windows.JoystickComponent.yml", + "OpenTK.Platform.Native.Windows.JoystickComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions)": "OpenTK.Platform.Native.Windows.JoystickComponent.yml", "OpenTK.Platform.Native.Windows.JoystickComponent.IsConnected(System.Int32)": "OpenTK.Platform.Native.Windows.JoystickComponent.yml", "OpenTK.Platform.Native.Windows.JoystickComponent.LeftDeadzone": "OpenTK.Platform.Native.Windows.JoystickComponent.yml", "OpenTK.Platform.Native.Windows.JoystickComponent.Logger": "OpenTK.Platform.Native.Windows.JoystickComponent.yml", @@ -8784,7 +8811,7 @@ "OpenTK.Platform.Native.Windows.KeyboardComponent.GetKeyboardModifiers": "OpenTK.Platform.Native.Windows.KeyboardComponent.yml", "OpenTK.Platform.Native.Windows.KeyboardComponent.GetKeyboardState(System.Boolean[])": "OpenTK.Platform.Native.Windows.KeyboardComponent.yml", "OpenTK.Platform.Native.Windows.KeyboardComponent.GetScancodeFromKey(OpenTK.Core.Platform.Key)": "OpenTK.Platform.Native.Windows.KeyboardComponent.yml", - "OpenTK.Platform.Native.Windows.KeyboardComponent.Initialize(OpenTK.Core.Platform.PalComponents)": "OpenTK.Platform.Native.Windows.KeyboardComponent.yml", + "OpenTK.Platform.Native.Windows.KeyboardComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions)": "OpenTK.Platform.Native.Windows.KeyboardComponent.yml", "OpenTK.Platform.Native.Windows.KeyboardComponent.Logger": "OpenTK.Platform.Native.Windows.KeyboardComponent.yml", "OpenTK.Platform.Native.Windows.KeyboardComponent.Name": "OpenTK.Platform.Native.Windows.KeyboardComponent.yml", "OpenTK.Platform.Native.Windows.KeyboardComponent.Provides": "OpenTK.Platform.Native.Windows.KeyboardComponent.yml", @@ -8795,7 +8822,7 @@ "OpenTK.Platform.Native.Windows.MouseComponent.CanSetMousePosition": "OpenTK.Platform.Native.Windows.MouseComponent.yml", "OpenTK.Platform.Native.Windows.MouseComponent.GetMouseState(OpenTK.Core.Platform.MouseState@)": "OpenTK.Platform.Native.Windows.MouseComponent.yml", "OpenTK.Platform.Native.Windows.MouseComponent.GetPosition(System.Int32@,System.Int32@)": "OpenTK.Platform.Native.Windows.MouseComponent.yml", - "OpenTK.Platform.Native.Windows.MouseComponent.Initialize(OpenTK.Core.Platform.PalComponents)": "OpenTK.Platform.Native.Windows.MouseComponent.yml", + "OpenTK.Platform.Native.Windows.MouseComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions)": "OpenTK.Platform.Native.Windows.MouseComponent.yml", "OpenTK.Platform.Native.Windows.MouseComponent.Logger": "OpenTK.Platform.Native.Windows.MouseComponent.yml", "OpenTK.Platform.Native.Windows.MouseComponent.Name": "OpenTK.Platform.Native.Windows.MouseComponent.yml", "OpenTK.Platform.Native.Windows.MouseComponent.Provides": "OpenTK.Platform.Native.Windows.MouseComponent.yml", @@ -8813,25 +8840,32 @@ "OpenTK.Platform.Native.Windows.OpenGLComponent.GetProcedureAddress(OpenTK.Core.Platform.OpenGLContextHandle,System.String)": "OpenTK.Platform.Native.Windows.OpenGLComponent.yml", "OpenTK.Platform.Native.Windows.OpenGLComponent.GetSharedContext(OpenTK.Core.Platform.OpenGLContextHandle)": "OpenTK.Platform.Native.Windows.OpenGLComponent.yml", "OpenTK.Platform.Native.Windows.OpenGLComponent.GetSwapInterval": "OpenTK.Platform.Native.Windows.OpenGLComponent.yml", - "OpenTK.Platform.Native.Windows.OpenGLComponent.Initialize(OpenTK.Core.Platform.PalComponents)": "OpenTK.Platform.Native.Windows.OpenGLComponent.yml", + "OpenTK.Platform.Native.Windows.OpenGLComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions)": "OpenTK.Platform.Native.Windows.OpenGLComponent.yml", "OpenTK.Platform.Native.Windows.OpenGLComponent.Logger": "OpenTK.Platform.Native.Windows.OpenGLComponent.yml", "OpenTK.Platform.Native.Windows.OpenGLComponent.Name": "OpenTK.Platform.Native.Windows.OpenGLComponent.yml", "OpenTK.Platform.Native.Windows.OpenGLComponent.Provides": "OpenTK.Platform.Native.Windows.OpenGLComponent.yml", "OpenTK.Platform.Native.Windows.OpenGLComponent.SetCurrentContext(OpenTK.Core.Platform.OpenGLContextHandle)": "OpenTK.Platform.Native.Windows.OpenGLComponent.yml", "OpenTK.Platform.Native.Windows.OpenGLComponent.SetSwapInterval(System.Int32)": "OpenTK.Platform.Native.Windows.OpenGLComponent.yml", "OpenTK.Platform.Native.Windows.OpenGLComponent.SwapBuffers(OpenTK.Core.Platform.OpenGLContextHandle)": "OpenTK.Platform.Native.Windows.OpenGLComponent.yml", + "OpenTK.Platform.Native.Windows.OpenGLComponent.UseDwmFlushIfApplicable(OpenTK.Core.Platform.OpenGLContextHandle,System.Boolean)": "OpenTK.Platform.Native.Windows.OpenGLComponent.yml", "OpenTK.Platform.Native.Windows.ShellComponent": "OpenTK.Platform.Native.Windows.ShellComponent.yml", "OpenTK.Platform.Native.Windows.ShellComponent.AllowScreenSaver(System.Boolean)": "OpenTK.Platform.Native.Windows.ShellComponent.yml", + "OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce": "OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce.yml", + "OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce.Default": "OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce.yml", + "OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce.DoNotRound": "OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce.yml", + "OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce.Round": "OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce.yml", + "OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce.RoundSmall": "OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce.yml", "OpenTK.Platform.Native.Windows.ShellComponent.GetBatteryInfo(OpenTK.Core.Platform.BatteryInfo@)": "OpenTK.Platform.Native.Windows.ShellComponent.yml", "OpenTK.Platform.Native.Windows.ShellComponent.GetPreferredTheme": "OpenTK.Platform.Native.Windows.ShellComponent.yml", "OpenTK.Platform.Native.Windows.ShellComponent.GetSystemMemoryInformation": "OpenTK.Platform.Native.Windows.ShellComponent.yml", - "OpenTK.Platform.Native.Windows.ShellComponent.Initialize(OpenTK.Core.Platform.PalComponents)": "OpenTK.Platform.Native.Windows.ShellComponent.yml", + "OpenTK.Platform.Native.Windows.ShellComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions)": "OpenTK.Platform.Native.Windows.ShellComponent.yml", "OpenTK.Platform.Native.Windows.ShellComponent.Logger": "OpenTK.Platform.Native.Windows.ShellComponent.yml", "OpenTK.Platform.Native.Windows.ShellComponent.Name": "OpenTK.Platform.Native.Windows.ShellComponent.yml", "OpenTK.Platform.Native.Windows.ShellComponent.Provides": "OpenTK.Platform.Native.Windows.ShellComponent.yml", "OpenTK.Platform.Native.Windows.ShellComponent.SetCaptionColor(OpenTK.Core.Platform.WindowHandle,OpenTK.Mathematics.Color3{OpenTK.Mathematics.Rgb})": "OpenTK.Platform.Native.Windows.ShellComponent.yml", "OpenTK.Platform.Native.Windows.ShellComponent.SetCaptionTextColor(OpenTK.Core.Platform.WindowHandle,OpenTK.Mathematics.Color3{OpenTK.Mathematics.Rgb})": "OpenTK.Platform.Native.Windows.ShellComponent.yml", "OpenTK.Platform.Native.Windows.ShellComponent.SetImmersiveDarkMode(OpenTK.Core.Platform.WindowHandle,System.Boolean)": "OpenTK.Platform.Native.Windows.ShellComponent.yml", + "OpenTK.Platform.Native.Windows.ShellComponent.SetWindowCornerPreference(OpenTK.Core.Platform.WindowHandle,OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce)": "OpenTK.Platform.Native.Windows.ShellComponent.yml", "OpenTK.Platform.Native.Windows.WindowComponent": "OpenTK.Platform.Native.Windows.WindowComponent.yml", "OpenTK.Platform.Native.Windows.WindowComponent.CLASS_NAME": "OpenTK.Platform.Native.Windows.WindowComponent.yml", "OpenTK.Platform.Native.Windows.WindowComponent.CanCaptureCursor": "OpenTK.Platform.Native.Windows.WindowComponent.yml", @@ -8849,6 +8883,7 @@ "OpenTK.Platform.Native.Windows.WindowComponent.GetClientSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", "OpenTK.Platform.Native.Windows.WindowComponent.GetCursorCaptureMode(OpenTK.Core.Platform.WindowHandle)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", "OpenTK.Platform.Native.Windows.WindowComponent.GetDisplay(OpenTK.Core.Platform.WindowHandle)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", + "OpenTK.Platform.Native.Windows.WindowComponent.GetFramebufferSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", "OpenTK.Platform.Native.Windows.WindowComponent.GetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle@)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", "OpenTK.Platform.Native.Windows.WindowComponent.GetHWND(OpenTK.Core.Platform.WindowHandle)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", "OpenTK.Platform.Native.Windows.WindowComponent.GetIcon(OpenTK.Core.Platform.WindowHandle)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", @@ -8856,12 +8891,14 @@ "OpenTK.Platform.Native.Windows.WindowComponent.GetMinClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", "OpenTK.Platform.Native.Windows.WindowComponent.GetMode(OpenTK.Core.Platform.WindowHandle)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", "OpenTK.Platform.Native.Windows.WindowComponent.GetPosition(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", + "OpenTK.Platform.Native.Windows.WindowComponent.GetScaleFactor(OpenTK.Core.Platform.WindowHandle,System.Single@,System.Single@)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", "OpenTK.Platform.Native.Windows.WindowComponent.GetSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", "OpenTK.Platform.Native.Windows.WindowComponent.GetTitle(OpenTK.Core.Platform.WindowHandle)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", "OpenTK.Platform.Native.Windows.WindowComponent.HInstance": "OpenTK.Platform.Native.Windows.WindowComponent.yml", "OpenTK.Platform.Native.Windows.WindowComponent.HelperHWnd": "OpenTK.Platform.Native.Windows.WindowComponent.yml", - "OpenTK.Platform.Native.Windows.WindowComponent.Initialize(OpenTK.Core.Platform.PalComponents)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", + "OpenTK.Platform.Native.Windows.WindowComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", "OpenTK.Platform.Native.Windows.WindowComponent.IsAlwaysOnTop(OpenTK.Core.Platform.WindowHandle)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", + "OpenTK.Platform.Native.Windows.WindowComponent.IsFocused(OpenTK.Core.Platform.WindowHandle)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", "OpenTK.Platform.Native.Windows.WindowComponent.IsWindowDestroyed(OpenTK.Core.Platform.WindowHandle)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", "OpenTK.Platform.Native.Windows.WindowComponent.Logger": "OpenTK.Platform.Native.Windows.WindowComponent.yml", "OpenTK.Platform.Native.Windows.WindowComponent.Name": "OpenTK.Platform.Native.Windows.WindowComponent.yml", @@ -8896,9 +8933,8 @@ "OpenTK.Platform.Native.X11.X11ClipboardComponent.GetClipboardBitmap": "OpenTK.Platform.Native.X11.X11ClipboardComponent.yml", "OpenTK.Platform.Native.X11.X11ClipboardComponent.GetClipboardFiles": "OpenTK.Platform.Native.X11.X11ClipboardComponent.yml", "OpenTK.Platform.Native.X11.X11ClipboardComponent.GetClipboardFormat": "OpenTK.Platform.Native.X11.X11ClipboardComponent.yml", - "OpenTK.Platform.Native.X11.X11ClipboardComponent.GetClipboardHTML": "OpenTK.Platform.Native.X11.X11ClipboardComponent.yml", "OpenTK.Platform.Native.X11.X11ClipboardComponent.GetClipboardText": "OpenTK.Platform.Native.X11.X11ClipboardComponent.yml", - "OpenTK.Platform.Native.X11.X11ClipboardComponent.Initialize(OpenTK.Core.Platform.PalComponents)": "OpenTK.Platform.Native.X11.X11ClipboardComponent.yml", + "OpenTK.Platform.Native.X11.X11ClipboardComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions)": "OpenTK.Platform.Native.X11.X11ClipboardComponent.yml", "OpenTK.Platform.Native.X11.X11ClipboardComponent.Logger": "OpenTK.Platform.Native.X11.X11ClipboardComponent.yml", "OpenTK.Platform.Native.X11.X11ClipboardComponent.Name": "OpenTK.Platform.Native.X11.X11ClipboardComponent.yml", "OpenTK.Platform.Native.X11.X11ClipboardComponent.Provides": "OpenTK.Platform.Native.X11.X11ClipboardComponent.yml", @@ -8913,7 +8949,7 @@ "OpenTK.Platform.Native.X11.X11CursorComponent.Destroy(OpenTK.Core.Platform.CursorHandle)": "OpenTK.Platform.Native.X11.X11CursorComponent.yml", "OpenTK.Platform.Native.X11.X11CursorComponent.GetHotspot(OpenTK.Core.Platform.CursorHandle,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.X11.X11CursorComponent.yml", "OpenTK.Platform.Native.X11.X11CursorComponent.GetSize(OpenTK.Core.Platform.CursorHandle,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.X11.X11CursorComponent.yml", - "OpenTK.Platform.Native.X11.X11CursorComponent.Initialize(OpenTK.Core.Platform.PalComponents)": "OpenTK.Platform.Native.X11.X11CursorComponent.yml", + "OpenTK.Platform.Native.X11.X11CursorComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions)": "OpenTK.Platform.Native.X11.X11CursorComponent.yml", "OpenTK.Platform.Native.X11.X11CursorComponent.IsSystemCursor(OpenTK.Core.Platform.CursorHandle)": "OpenTK.Platform.Native.X11.X11CursorComponent.yml", "OpenTK.Platform.Native.X11.X11CursorComponent.Logger": "OpenTK.Platform.Native.X11.X11CursorComponent.yml", "OpenTK.Platform.Native.X11.X11CursorComponent.Name": "OpenTK.Platform.Native.X11.X11CursorComponent.yml", @@ -8932,7 +8968,7 @@ "OpenTK.Platform.Native.X11.X11DisplayComponent.GetVideoMode(OpenTK.Core.Platform.DisplayHandle,OpenTK.Core.Platform.VideoMode@)": "OpenTK.Platform.Native.X11.X11DisplayComponent.yml", "OpenTK.Platform.Native.X11.X11DisplayComponent.GetVirtualPosition(OpenTK.Core.Platform.DisplayHandle,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.X11.X11DisplayComponent.yml", "OpenTK.Platform.Native.X11.X11DisplayComponent.GetWorkArea(OpenTK.Core.Platform.DisplayHandle,OpenTK.Mathematics.Box2i@)": "OpenTK.Platform.Native.X11.X11DisplayComponent.yml", - "OpenTK.Platform.Native.X11.X11DisplayComponent.Initialize(OpenTK.Core.Platform.PalComponents)": "OpenTK.Platform.Native.X11.X11DisplayComponent.yml", + "OpenTK.Platform.Native.X11.X11DisplayComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions)": "OpenTK.Platform.Native.X11.X11DisplayComponent.yml", "OpenTK.Platform.Native.X11.X11DisplayComponent.IsPrimary(OpenTK.Core.Platform.DisplayHandle)": "OpenTK.Platform.Native.X11.X11DisplayComponent.yml", "OpenTK.Platform.Native.X11.X11DisplayComponent.Logger": "OpenTK.Platform.Native.X11.X11DisplayComponent.yml", "OpenTK.Platform.Native.X11.X11DisplayComponent.Name": "OpenTK.Platform.Native.X11.X11DisplayComponent.yml", @@ -8951,7 +8987,7 @@ "OpenTK.Platform.Native.X11.X11IconComponent.IconImage.Data": "OpenTK.Platform.Native.X11.X11IconComponent.IconImage.yml", "OpenTK.Platform.Native.X11.X11IconComponent.IconImage.Height": "OpenTK.Platform.Native.X11.X11IconComponent.IconImage.yml", "OpenTK.Platform.Native.X11.X11IconComponent.IconImage.Width": "OpenTK.Platform.Native.X11.X11IconComponent.IconImage.yml", - "OpenTK.Platform.Native.X11.X11IconComponent.Initialize(OpenTK.Core.Platform.PalComponents)": "OpenTK.Platform.Native.X11.X11IconComponent.yml", + "OpenTK.Platform.Native.X11.X11IconComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions)": "OpenTK.Platform.Native.X11.X11IconComponent.yml", "OpenTK.Platform.Native.X11.X11IconComponent.Logger": "OpenTK.Platform.Native.X11.X11IconComponent.yml", "OpenTK.Platform.Native.X11.X11IconComponent.Name": "OpenTK.Platform.Native.X11.X11IconComponent.yml", "OpenTK.Platform.Native.X11.X11IconComponent.Provides": "OpenTK.Platform.Native.X11.X11IconComponent.yml", @@ -8964,7 +9000,7 @@ "OpenTK.Platform.Native.X11.X11KeyboardComponent.GetKeyboardModifiers": "OpenTK.Platform.Native.X11.X11KeyboardComponent.yml", "OpenTK.Platform.Native.X11.X11KeyboardComponent.GetKeyboardState(System.Boolean[])": "OpenTK.Platform.Native.X11.X11KeyboardComponent.yml", "OpenTK.Platform.Native.X11.X11KeyboardComponent.GetScancodeFromKey(OpenTK.Core.Platform.Key)": "OpenTK.Platform.Native.X11.X11KeyboardComponent.yml", - "OpenTK.Platform.Native.X11.X11KeyboardComponent.Initialize(OpenTK.Core.Platform.PalComponents)": "OpenTK.Platform.Native.X11.X11KeyboardComponent.yml", + "OpenTK.Platform.Native.X11.X11KeyboardComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions)": "OpenTK.Platform.Native.X11.X11KeyboardComponent.yml", "OpenTK.Platform.Native.X11.X11KeyboardComponent.Logger": "OpenTK.Platform.Native.X11.X11KeyboardComponent.yml", "OpenTK.Platform.Native.X11.X11KeyboardComponent.Name": "OpenTK.Platform.Native.X11.X11KeyboardComponent.yml", "OpenTK.Platform.Native.X11.X11KeyboardComponent.Provides": "OpenTK.Platform.Native.X11.X11KeyboardComponent.yml", @@ -8975,7 +9011,7 @@ "OpenTK.Platform.Native.X11.X11MouseComponent.CanSetMousePosition": "OpenTK.Platform.Native.X11.X11MouseComponent.yml", "OpenTK.Platform.Native.X11.X11MouseComponent.GetMouseState(OpenTK.Core.Platform.MouseState@)": "OpenTK.Platform.Native.X11.X11MouseComponent.yml", "OpenTK.Platform.Native.X11.X11MouseComponent.GetPosition(System.Int32@,System.Int32@)": "OpenTK.Platform.Native.X11.X11MouseComponent.yml", - "OpenTK.Platform.Native.X11.X11MouseComponent.Initialize(OpenTK.Core.Platform.PalComponents)": "OpenTK.Platform.Native.X11.X11MouseComponent.yml", + "OpenTK.Platform.Native.X11.X11MouseComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions)": "OpenTK.Platform.Native.X11.X11MouseComponent.yml", "OpenTK.Platform.Native.X11.X11MouseComponent.Logger": "OpenTK.Platform.Native.X11.X11MouseComponent.yml", "OpenTK.Platform.Native.X11.X11MouseComponent.Name": "OpenTK.Platform.Native.X11.X11MouseComponent.yml", "OpenTK.Platform.Native.X11.X11MouseComponent.Provides": "OpenTK.Platform.Native.X11.X11MouseComponent.yml", @@ -9003,7 +9039,7 @@ "OpenTK.Platform.Native.X11.X11OpenGLComponent.GetProcedureAddress(OpenTK.Core.Platform.OpenGLContextHandle,System.String)": "OpenTK.Platform.Native.X11.X11OpenGLComponent.yml", "OpenTK.Platform.Native.X11.X11OpenGLComponent.GetSharedContext(OpenTK.Core.Platform.OpenGLContextHandle)": "OpenTK.Platform.Native.X11.X11OpenGLComponent.yml", "OpenTK.Platform.Native.X11.X11OpenGLComponent.GetSwapInterval": "OpenTK.Platform.Native.X11.X11OpenGLComponent.yml", - "OpenTK.Platform.Native.X11.X11OpenGLComponent.Initialize(OpenTK.Core.Platform.PalComponents)": "OpenTK.Platform.Native.X11.X11OpenGLComponent.yml", + "OpenTK.Platform.Native.X11.X11OpenGLComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions)": "OpenTK.Platform.Native.X11.X11OpenGLComponent.yml", "OpenTK.Platform.Native.X11.X11OpenGLComponent.Logger": "OpenTK.Platform.Native.X11.X11OpenGLComponent.yml", "OpenTK.Platform.Native.X11.X11OpenGLComponent.Name": "OpenTK.Platform.Native.X11.X11OpenGLComponent.yml", "OpenTK.Platform.Native.X11.X11OpenGLComponent.Provides": "OpenTK.Platform.Native.X11.X11OpenGLComponent.yml", @@ -9015,7 +9051,7 @@ "OpenTK.Platform.Native.X11.X11ShellComponent.GetBatteryInfo(OpenTK.Core.Platform.BatteryInfo@)": "OpenTK.Platform.Native.X11.X11ShellComponent.yml", "OpenTK.Platform.Native.X11.X11ShellComponent.GetPreferredTheme": "OpenTK.Platform.Native.X11.X11ShellComponent.yml", "OpenTK.Platform.Native.X11.X11ShellComponent.GetSystemMemoryInformation": "OpenTK.Platform.Native.X11.X11ShellComponent.yml", - "OpenTK.Platform.Native.X11.X11ShellComponent.Initialize(OpenTK.Core.Platform.PalComponents)": "OpenTK.Platform.Native.X11.X11ShellComponent.yml", + "OpenTK.Platform.Native.X11.X11ShellComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions)": "OpenTK.Platform.Native.X11.X11ShellComponent.yml", "OpenTK.Platform.Native.X11.X11ShellComponent.Logger": "OpenTK.Platform.Native.X11.X11ShellComponent.yml", "OpenTK.Platform.Native.X11.X11ShellComponent.Name": "OpenTK.Platform.Native.X11.X11ShellComponent.yml", "OpenTK.Platform.Native.X11.X11ShellComponent.Provides": "OpenTK.Platform.Native.X11.X11ShellComponent.yml", @@ -9037,18 +9073,22 @@ "OpenTK.Platform.Native.X11.X11WindowComponent.GetClientSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", "OpenTK.Platform.Native.X11.X11WindowComponent.GetCursorCaptureMode(OpenTK.Core.Platform.WindowHandle)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", "OpenTK.Platform.Native.X11.X11WindowComponent.GetDisplay(OpenTK.Core.Platform.WindowHandle)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", + "OpenTK.Platform.Native.X11.X11WindowComponent.GetFramebufferSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", "OpenTK.Platform.Native.X11.X11WindowComponent.GetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle@)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", "OpenTK.Platform.Native.X11.X11WindowComponent.GetIcon(OpenTK.Core.Platform.WindowHandle)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", + "OpenTK.Platform.Native.X11.X11WindowComponent.GetIconifiedTitle(OpenTK.Core.Platform.WindowHandle)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", "OpenTK.Platform.Native.X11.X11WindowComponent.GetMaxClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", "OpenTK.Platform.Native.X11.X11WindowComponent.GetMinClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", "OpenTK.Platform.Native.X11.X11WindowComponent.GetMode(OpenTK.Core.Platform.WindowHandle)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", "OpenTK.Platform.Native.X11.X11WindowComponent.GetPosition(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", + "OpenTK.Platform.Native.X11.X11WindowComponent.GetScaleFactor(OpenTK.Core.Platform.WindowHandle,System.Single@,System.Single@)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", "OpenTK.Platform.Native.X11.X11WindowComponent.GetSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", "OpenTK.Platform.Native.X11.X11WindowComponent.GetTitle(OpenTK.Core.Platform.WindowHandle)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", "OpenTK.Platform.Native.X11.X11WindowComponent.GetX11Display": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", "OpenTK.Platform.Native.X11.X11WindowComponent.GetX11Window(OpenTK.Core.Platform.WindowHandle)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", - "OpenTK.Platform.Native.X11.X11WindowComponent.Initialize(OpenTK.Core.Platform.PalComponents)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", + "OpenTK.Platform.Native.X11.X11WindowComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", "OpenTK.Platform.Native.X11.X11WindowComponent.IsAlwaysOnTop(OpenTK.Core.Platform.WindowHandle)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", + "OpenTK.Platform.Native.X11.X11WindowComponent.IsFocused(OpenTK.Core.Platform.WindowHandle)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", "OpenTK.Platform.Native.X11.X11WindowComponent.IsWindowDestroyed(OpenTK.Core.Platform.WindowHandle)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", "OpenTK.Platform.Native.X11.X11WindowComponent.IsWindowManagerFreedesktop": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", "OpenTK.Platform.Native.X11.X11WindowComponent.Logger": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", @@ -9069,6 +9109,7 @@ "OpenTK.Platform.Native.X11.X11WindowComponent.SetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle,OpenTK.Core.Platform.VideoMode)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", "OpenTK.Platform.Native.X11.X11WindowComponent.SetHitTestCallback(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.HitTest)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", "OpenTK.Platform.Native.X11.X11WindowComponent.SetIcon(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.IconHandle)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", + "OpenTK.Platform.Native.X11.X11WindowComponent.SetIconifiedTitle(OpenTK.Core.Platform.WindowHandle,System.String)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", "OpenTK.Platform.Native.X11.X11WindowComponent.SetMaxClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32})": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", "OpenTK.Platform.Native.X11.X11WindowComponent.SetMinClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32})": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", "OpenTK.Platform.Native.X11.X11WindowComponent.SetMode(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.WindowMode)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", @@ -9079,6 +9120,20 @@ "OpenTK.Platform.Native.X11.X11WindowComponent.SupportedModes": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", "OpenTK.Platform.Native.X11.X11WindowComponent.SupportedStyles": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", "OpenTK.Platform.Native.macOS": "OpenTK.Platform.Native.macOS.yml", + "OpenTK.Platform.Native.macOS.MacOSClipboardComponent": "OpenTK.Platform.Native.macOS.MacOSClipboardComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSClipboardComponent.CheckClipboardUpdate": "OpenTK.Platform.Native.macOS.MacOSClipboardComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSClipboardComponent.GetClipboardAudio": "OpenTK.Platform.Native.macOS.MacOSClipboardComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSClipboardComponent.GetClipboardBitmap": "OpenTK.Platform.Native.macOS.MacOSClipboardComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSClipboardComponent.GetClipboardFiles": "OpenTK.Platform.Native.macOS.MacOSClipboardComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSClipboardComponent.GetClipboardFormat": "OpenTK.Platform.Native.macOS.MacOSClipboardComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSClipboardComponent.GetClipboardText": "OpenTK.Platform.Native.macOS.MacOSClipboardComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSClipboardComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions)": "OpenTK.Platform.Native.macOS.MacOSClipboardComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSClipboardComponent.Logger": "OpenTK.Platform.Native.macOS.MacOSClipboardComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSClipboardComponent.Name": "OpenTK.Platform.Native.macOS.MacOSClipboardComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSClipboardComponent.Provides": "OpenTK.Platform.Native.macOS.MacOSClipboardComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSClipboardComponent.SetClipboardBitmap(OpenTK.Core.Platform.Bitmap)": "OpenTK.Platform.Native.macOS.MacOSClipboardComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSClipboardComponent.SetClipboardText(System.String)": "OpenTK.Platform.Native.macOS.MacOSClipboardComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSClipboardComponent.SupportedFormats": "OpenTK.Platform.Native.macOS.MacOSClipboardComponent.yml", "OpenTK.Platform.Native.macOS.MacOSCursorComponent": "OpenTK.Platform.Native.macOS.MacOSCursorComponent.yml", "OpenTK.Platform.Native.macOS.MacOSCursorComponent.CanInspectSystemCursors": "OpenTK.Platform.Native.macOS.MacOSCursorComponent.yml", "OpenTK.Platform.Native.macOS.MacOSCursorComponent.CanLoadSystemCursors": "OpenTK.Platform.Native.macOS.MacOSCursorComponent.yml", @@ -9098,13 +9153,21 @@ "OpenTK.Platform.Native.macOS.MacOSCursorComponent.Frame.Width": "OpenTK.Platform.Native.macOS.MacOSCursorComponent.Frame.yml", "OpenTK.Platform.Native.macOS.MacOSCursorComponent.GetHotspot(OpenTK.Core.Platform.CursorHandle,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.macOS.MacOSCursorComponent.yml", "OpenTK.Platform.Native.macOS.MacOSCursorComponent.GetSize(OpenTK.Core.Platform.CursorHandle,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.macOS.MacOSCursorComponent.yml", - "OpenTK.Platform.Native.macOS.MacOSCursorComponent.Initialize(OpenTK.Core.Platform.PalComponents)": "OpenTK.Platform.Native.macOS.MacOSCursorComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSCursorComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions)": "OpenTK.Platform.Native.macOS.MacOSCursorComponent.yml", "OpenTK.Platform.Native.macOS.MacOSCursorComponent.IsAnimatedCursor(OpenTK.Core.Platform.CursorHandle)": "OpenTK.Platform.Native.macOS.MacOSCursorComponent.yml", "OpenTK.Platform.Native.macOS.MacOSCursorComponent.IsSystemCursor(OpenTK.Core.Platform.CursorHandle)": "OpenTK.Platform.Native.macOS.MacOSCursorComponent.yml", "OpenTK.Platform.Native.macOS.MacOSCursorComponent.Logger": "OpenTK.Platform.Native.macOS.MacOSCursorComponent.yml", "OpenTK.Platform.Native.macOS.MacOSCursorComponent.Name": "OpenTK.Platform.Native.macOS.MacOSCursorComponent.yml", "OpenTK.Platform.Native.macOS.MacOSCursorComponent.Provides": "OpenTK.Platform.Native.macOS.MacOSCursorComponent.yml", "OpenTK.Platform.Native.macOS.MacOSCursorComponent.UpdateAnimation(OpenTK.Core.Platform.CursorHandle,System.Double)": "OpenTK.Platform.Native.macOS.MacOSCursorComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSDialogComponent": "OpenTK.Platform.Native.macOS.MacOSDialogComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSDialogComponent.CanTargetFolders": "OpenTK.Platform.Native.macOS.MacOSDialogComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSDialogComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions)": "OpenTK.Platform.Native.macOS.MacOSDialogComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSDialogComponent.Logger": "OpenTK.Platform.Native.macOS.MacOSDialogComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSDialogComponent.Name": "OpenTK.Platform.Native.macOS.MacOSDialogComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSDialogComponent.Provides": "OpenTK.Platform.Native.macOS.MacOSDialogComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSDialogComponent.ShowOpenDialog(OpenTK.Core.Platform.WindowHandle,System.String,System.String,OpenTK.Core.Platform.DialogFileFilter[],OpenTK.Core.Platform.OpenDialogOptions)": "OpenTK.Platform.Native.macOS.MacOSDialogComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSDialogComponent.ShowSaveDialog(OpenTK.Core.Platform.WindowHandle,System.String,System.String,OpenTK.Core.Platform.DialogFileFilter[],OpenTK.Core.Platform.SaveDialogOptions)": "OpenTK.Platform.Native.macOS.MacOSDialogComponent.yml", "OpenTK.Platform.Native.macOS.MacOSDisplayComponent": "OpenTK.Platform.Native.macOS.MacOSDisplayComponent.yml", "OpenTK.Platform.Native.macOS.MacOSDisplayComponent.CanGetVirtualPosition": "OpenTK.Platform.Native.macOS.MacOSDisplayComponent.yml", "OpenTK.Platform.Native.macOS.MacOSDisplayComponent.Close(OpenTK.Core.Platform.DisplayHandle)": "OpenTK.Platform.Native.macOS.MacOSDisplayComponent.yml", @@ -9121,7 +9184,7 @@ "OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetVideoMode(OpenTK.Core.Platform.DisplayHandle,OpenTK.Core.Platform.VideoMode@)": "OpenTK.Platform.Native.macOS.MacOSDisplayComponent.yml", "OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetVirtualPosition(OpenTK.Core.Platform.DisplayHandle,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.macOS.MacOSDisplayComponent.yml", "OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetWorkArea(OpenTK.Core.Platform.DisplayHandle,OpenTK.Mathematics.Box2i@)": "OpenTK.Platform.Native.macOS.MacOSDisplayComponent.yml", - "OpenTK.Platform.Native.macOS.MacOSDisplayComponent.Initialize(OpenTK.Core.Platform.PalComponents)": "OpenTK.Platform.Native.macOS.MacOSDisplayComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSDisplayComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions)": "OpenTK.Platform.Native.macOS.MacOSDisplayComponent.yml", "OpenTK.Platform.Native.macOS.MacOSDisplayComponent.IsPrimary(OpenTK.Core.Platform.DisplayHandle)": "OpenTK.Platform.Native.macOS.MacOSDisplayComponent.yml", "OpenTK.Platform.Native.macOS.MacOSDisplayComponent.Logger": "OpenTK.Platform.Native.macOS.MacOSDisplayComponent.yml", "OpenTK.Platform.Native.macOS.MacOSDisplayComponent.Name": "OpenTK.Platform.Native.macOS.MacOSDisplayComponent.yml", @@ -9135,7 +9198,7 @@ "OpenTK.Platform.Native.macOS.MacOSIconComponent.CreateSFSymbol(System.String,System.String)": "OpenTK.Platform.Native.macOS.MacOSIconComponent.yml", "OpenTK.Platform.Native.macOS.MacOSIconComponent.Destroy(OpenTK.Core.Platform.IconHandle)": "OpenTK.Platform.Native.macOS.MacOSIconComponent.yml", "OpenTK.Platform.Native.macOS.MacOSIconComponent.GetSize(OpenTK.Core.Platform.IconHandle,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.macOS.MacOSIconComponent.yml", - "OpenTK.Platform.Native.macOS.MacOSIconComponent.Initialize(OpenTK.Core.Platform.PalComponents)": "OpenTK.Platform.Native.macOS.MacOSIconComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSIconComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions)": "OpenTK.Platform.Native.macOS.MacOSIconComponent.yml", "OpenTK.Platform.Native.macOS.MacOSIconComponent.Logger": "OpenTK.Platform.Native.macOS.MacOSIconComponent.yml", "OpenTK.Platform.Native.macOS.MacOSIconComponent.Name": "OpenTK.Platform.Native.macOS.MacOSIconComponent.yml", "OpenTK.Platform.Native.macOS.MacOSIconComponent.Provides": "OpenTK.Platform.Native.macOS.MacOSIconComponent.yml", @@ -9148,7 +9211,7 @@ "OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.GetKeyboardModifiers": "OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.yml", "OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.GetKeyboardState(System.Boolean[])": "OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.yml", "OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.GetScancodeFromKey(OpenTK.Core.Platform.Key)": "OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.yml", - "OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.Initialize(OpenTK.Core.Platform.PalComponents)": "OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions)": "OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.yml", "OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.Logger": "OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.yml", "OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.Name": "OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.yml", "OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.Provides": "OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.yml", @@ -9159,7 +9222,7 @@ "OpenTK.Platform.Native.macOS.MacOSMouseComponent.CanSetMousePosition": "OpenTK.Platform.Native.macOS.MacOSMouseComponent.yml", "OpenTK.Platform.Native.macOS.MacOSMouseComponent.GetMouseState(OpenTK.Core.Platform.MouseState@)": "OpenTK.Platform.Native.macOS.MacOSMouseComponent.yml", "OpenTK.Platform.Native.macOS.MacOSMouseComponent.GetPosition(System.Int32@,System.Int32@)": "OpenTK.Platform.Native.macOS.MacOSMouseComponent.yml", - "OpenTK.Platform.Native.macOS.MacOSMouseComponent.Initialize(OpenTK.Core.Platform.PalComponents)": "OpenTK.Platform.Native.macOS.MacOSMouseComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSMouseComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions)": "OpenTK.Platform.Native.macOS.MacOSMouseComponent.yml", "OpenTK.Platform.Native.macOS.MacOSMouseComponent.Logger": "OpenTK.Platform.Native.macOS.MacOSMouseComponent.yml", "OpenTK.Platform.Native.macOS.MacOSMouseComponent.Name": "OpenTK.Platform.Native.macOS.MacOSMouseComponent.yml", "OpenTK.Platform.Native.macOS.MacOSMouseComponent.Provides": "OpenTK.Platform.Native.macOS.MacOSMouseComponent.yml", @@ -9177,7 +9240,7 @@ "OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.GetProcedureAddress(OpenTK.Core.Platform.OpenGLContextHandle,System.String)": "OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.yml", "OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.GetSharedContext(OpenTK.Core.Platform.OpenGLContextHandle)": "OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.yml", "OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.GetSwapInterval": "OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.yml", - "OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.Initialize(OpenTK.Core.Platform.PalComponents)": "OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions)": "OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.yml", "OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.Logger": "OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.yml", "OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.Name": "OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.yml", "OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.Provides": "OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.yml", @@ -9189,7 +9252,7 @@ "OpenTK.Platform.Native.macOS.MacOSShellComponent.GetBatteryInfo(OpenTK.Core.Platform.BatteryInfo@)": "OpenTK.Platform.Native.macOS.MacOSShellComponent.yml", "OpenTK.Platform.Native.macOS.MacOSShellComponent.GetPreferredTheme": "OpenTK.Platform.Native.macOS.MacOSShellComponent.yml", "OpenTK.Platform.Native.macOS.MacOSShellComponent.GetSystemMemoryInformation": "OpenTK.Platform.Native.macOS.MacOSShellComponent.yml", - "OpenTK.Platform.Native.macOS.MacOSShellComponent.Initialize(OpenTK.Core.Platform.PalComponents)": "OpenTK.Platform.Native.macOS.MacOSShellComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSShellComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions)": "OpenTK.Platform.Native.macOS.MacOSShellComponent.yml", "OpenTK.Platform.Native.macOS.MacOSShellComponent.Logger": "OpenTK.Platform.Native.macOS.MacOSShellComponent.yml", "OpenTK.Platform.Native.macOS.MacOSShellComponent.Name": "OpenTK.Platform.Native.macOS.MacOSShellComponent.yml", "OpenTK.Platform.Native.macOS.MacOSShellComponent.Provides": "OpenTK.Platform.Native.macOS.MacOSShellComponent.yml", @@ -9218,10 +9281,12 @@ "OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetNSView(OpenTK.Core.Platform.WindowHandle)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", "OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetNSWindow(OpenTK.Core.Platform.WindowHandle)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", "OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetPosition(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetScaleFactor(OpenTK.Core.Platform.WindowHandle,System.Single@,System.Single@)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", "OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", "OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetTitle(OpenTK.Core.Platform.WindowHandle)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", - "OpenTK.Platform.Native.macOS.MacOSWindowComponent.Initialize(OpenTK.Core.Platform.PalComponents)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSWindowComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", "OpenTK.Platform.Native.macOS.MacOSWindowComponent.IsAlwaysOnTop(OpenTK.Core.Platform.WindowHandle)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSWindowComponent.IsFocused(OpenTK.Core.Platform.WindowHandle)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", "OpenTK.Platform.Native.macOS.MacOSWindowComponent.IsWindowDestroyed(OpenTK.Core.Platform.WindowHandle)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", "OpenTK.Platform.Native.macOS.MacOSWindowComponent.Logger": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", "OpenTK.Platform.Native.macOS.MacOSWindowComponent.Name": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", @@ -9240,6 +9305,7 @@ "OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetDockIcon(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.IconHandle)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", "OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", "OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle,OpenTK.Core.Platform.VideoMode)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetFullscreenDisplayNoSpace(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", "OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetHitTestCallback(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.HitTest)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", "OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetIcon(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.IconHandle)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", "OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetMaxClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32})": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", @@ -9278,6 +9344,12 @@ "OpenTK.Windowing.Common.FrameEventArgs": "OpenTK.Windowing.Common.FrameEventArgs.yml", "OpenTK.Windowing.Common.FrameEventArgs.#ctor(System.Double)": "OpenTK.Windowing.Common.FrameEventArgs.yml", "OpenTK.Windowing.Common.FrameEventArgs.Time": "OpenTK.Windowing.Common.FrameEventArgs.yml", + "OpenTK.Windowing.Common.FramebufferResizeEventArgs": "OpenTK.Windowing.Common.FramebufferResizeEventArgs.yml", + "OpenTK.Windowing.Common.FramebufferResizeEventArgs.#ctor(OpenTK.Mathematics.Vector2i)": "OpenTK.Windowing.Common.FramebufferResizeEventArgs.yml", + "OpenTK.Windowing.Common.FramebufferResizeEventArgs.#ctor(System.Int32,System.Int32)": "OpenTK.Windowing.Common.FramebufferResizeEventArgs.yml", + "OpenTK.Windowing.Common.FramebufferResizeEventArgs.Height": "OpenTK.Windowing.Common.FramebufferResizeEventArgs.yml", + "OpenTK.Windowing.Common.FramebufferResizeEventArgs.Size": "OpenTK.Windowing.Common.FramebufferResizeEventArgs.yml", + "OpenTK.Windowing.Common.FramebufferResizeEventArgs.Width": "OpenTK.Windowing.Common.FramebufferResizeEventArgs.yml", "OpenTK.Windowing.Common.IGraphicsContext": "OpenTK.Windowing.Common.IGraphicsContext.yml", "OpenTK.Windowing.Common.IGraphicsContext.IsCurrent": "OpenTK.Windowing.Common.IGraphicsContext.yml", "OpenTK.Windowing.Common.IGraphicsContext.MakeCurrent": "OpenTK.Windowing.Common.IGraphicsContext.yml", @@ -9419,6 +9491,7 @@ "OpenTK.Windowing.Desktop.GameWindow": "OpenTK.Windowing.Desktop.GameWindow.yml", "OpenTK.Windowing.Desktop.GameWindow.#ctor(OpenTK.Windowing.Desktop.GameWindowSettings,OpenTK.Windowing.Desktop.NativeWindowSettings)": "OpenTK.Windowing.Desktop.GameWindow.yml", "OpenTK.Windowing.Desktop.GameWindow.Close": "OpenTK.Windowing.Desktop.GameWindow.yml", + "OpenTK.Windowing.Desktop.GameWindow.Dispose": "OpenTK.Windowing.Desktop.GameWindow.yml", "OpenTK.Windowing.Desktop.GameWindow.ExpectedSchedulerPeriod": "OpenTK.Windowing.Desktop.GameWindow.yml", "OpenTK.Windowing.Desktop.GameWindow.IsMultiThreaded": "OpenTK.Windowing.Desktop.GameWindow.yml", "OpenTK.Windowing.Desktop.GameWindow.IsRunningSlowly": "OpenTK.Windowing.Desktop.GameWindow.yml", @@ -9445,6 +9518,7 @@ "OpenTK.Windowing.Desktop.GameWindowSettings.IsMultiThreaded": "OpenTK.Windowing.Desktop.GameWindowSettings.yml", "OpenTK.Windowing.Desktop.GameWindowSettings.RenderFrequency": "OpenTK.Windowing.Desktop.GameWindowSettings.yml", "OpenTK.Windowing.Desktop.GameWindowSettings.UpdateFrequency": "OpenTK.Windowing.Desktop.GameWindowSettings.yml", + "OpenTK.Windowing.Desktop.GameWindowSettings.Win32SuspendTimerOnDrag": "OpenTK.Windowing.Desktop.GameWindowSettings.yml", "OpenTK.Windowing.Desktop.IGLFWGraphicsContext": "OpenTK.Windowing.Desktop.IGLFWGraphicsContext.yml", "OpenTK.Windowing.Desktop.IGLFWGraphicsContext.WindowPtr": "OpenTK.Windowing.Desktop.IGLFWGraphicsContext.yml", "OpenTK.Windowing.Desktop.MonitorInfo": "OpenTK.Windowing.Desktop.MonitorInfo.yml", @@ -9481,6 +9555,7 @@ "OpenTK.Windowing.Desktop.NativeWindow.API": "OpenTK.Windowing.Desktop.NativeWindow.yml", "OpenTK.Windowing.Desktop.NativeWindow.APIVersion": "OpenTK.Windowing.Desktop.NativeWindow.yml", "OpenTK.Windowing.Desktop.NativeWindow.AspectRatio": "OpenTK.Windowing.Desktop.NativeWindow.yml", + "OpenTK.Windowing.Desktop.NativeWindow.AutoIconify": "OpenTK.Windowing.Desktop.NativeWindow.yml", "OpenTK.Windowing.Desktop.NativeWindow.Bounds": "OpenTK.Windowing.Desktop.NativeWindow.yml", "OpenTK.Windowing.Desktop.NativeWindow.CenterWindow": "OpenTK.Windowing.Desktop.NativeWindow.yml", "OpenTK.Windowing.Desktop.NativeWindow.CenterWindow(OpenTK.Mathematics.Vector2i)": "OpenTK.Windowing.Desktop.NativeWindow.yml", @@ -9502,6 +9577,8 @@ "OpenTK.Windowing.Desktop.NativeWindow.Flags": "OpenTK.Windowing.Desktop.NativeWindow.yml", "OpenTK.Windowing.Desktop.NativeWindow.Focus": "OpenTK.Windowing.Desktop.NativeWindow.yml", "OpenTK.Windowing.Desktop.NativeWindow.FocusedChanged": "OpenTK.Windowing.Desktop.NativeWindow.yml", + "OpenTK.Windowing.Desktop.NativeWindow.FramebufferResize": "OpenTK.Windowing.Desktop.NativeWindow.yml", + "OpenTK.Windowing.Desktop.NativeWindow.FramebufferSize": "OpenTK.Windowing.Desktop.NativeWindow.yml", "OpenTK.Windowing.Desktop.NativeWindow.HasTransparentFramebuffer": "OpenTK.Windowing.Desktop.NativeWindow.yml", "OpenTK.Windowing.Desktop.NativeWindow.Icon": "OpenTK.Windowing.Desktop.NativeWindow.yml", "OpenTK.Windowing.Desktop.NativeWindow.IsAnyKeyDown": "OpenTK.Windowing.Desktop.NativeWindow.yml", @@ -9541,6 +9618,7 @@ "OpenTK.Windowing.Desktop.NativeWindow.OnClosing(System.ComponentModel.CancelEventArgs)": "OpenTK.Windowing.Desktop.NativeWindow.yml", "OpenTK.Windowing.Desktop.NativeWindow.OnFileDrop(OpenTK.Windowing.Common.FileDropEventArgs)": "OpenTK.Windowing.Desktop.NativeWindow.yml", "OpenTK.Windowing.Desktop.NativeWindow.OnFocusedChanged(OpenTK.Windowing.Common.FocusedChangedEventArgs)": "OpenTK.Windowing.Desktop.NativeWindow.yml", + "OpenTK.Windowing.Desktop.NativeWindow.OnFramebufferResize(OpenTK.Windowing.Common.FramebufferResizeEventArgs)": "OpenTK.Windowing.Desktop.NativeWindow.yml", "OpenTK.Windowing.Desktop.NativeWindow.OnJoystickConnected(OpenTK.Windowing.Common.JoystickEventArgs)": "OpenTK.Windowing.Desktop.NativeWindow.yml", "OpenTK.Windowing.Desktop.NativeWindow.OnKeyDown(OpenTK.Windowing.Common.KeyboardKeyEventArgs)": "OpenTK.Windowing.Desktop.NativeWindow.yml", "OpenTK.Windowing.Desktop.NativeWindow.OnKeyUp(OpenTK.Windowing.Common.KeyboardKeyEventArgs)": "OpenTK.Windowing.Desktop.NativeWindow.yml", @@ -9581,8 +9659,10 @@ "OpenTK.Windowing.Desktop.NativeWindowSettings.APIVersion": "OpenTK.Windowing.Desktop.NativeWindowSettings.yml", "OpenTK.Windowing.Desktop.NativeWindowSettings.AlphaBits": "OpenTK.Windowing.Desktop.NativeWindowSettings.yml", "OpenTK.Windowing.Desktop.NativeWindowSettings.AspectRatio": "OpenTK.Windowing.Desktop.NativeWindowSettings.yml", + "OpenTK.Windowing.Desktop.NativeWindowSettings.AutoIconify": "OpenTK.Windowing.Desktop.NativeWindowSettings.yml", "OpenTK.Windowing.Desktop.NativeWindowSettings.AutoLoadBindings": "OpenTK.Windowing.Desktop.NativeWindowSettings.yml", "OpenTK.Windowing.Desktop.NativeWindowSettings.BlueBits": "OpenTK.Windowing.Desktop.NativeWindowSettings.yml", + "OpenTK.Windowing.Desktop.NativeWindowSettings.ClientSize": "OpenTK.Windowing.Desktop.NativeWindowSettings.yml", "OpenTK.Windowing.Desktop.NativeWindowSettings.CurrentMonitor": "OpenTK.Windowing.Desktop.NativeWindowSettings.yml", "OpenTK.Windowing.Desktop.NativeWindowSettings.Default": "OpenTK.Windowing.Desktop.NativeWindowSettings.yml", "OpenTK.Windowing.Desktop.NativeWindowSettings.DepthBits": "OpenTK.Windowing.Desktop.NativeWindowSettings.yml", @@ -9592,7 +9672,9 @@ "OpenTK.Windowing.Desktop.NativeWindowSettings.IsEventDriven": "OpenTK.Windowing.Desktop.NativeWindowSettings.yml", "OpenTK.Windowing.Desktop.NativeWindowSettings.IsFullscreen": "OpenTK.Windowing.Desktop.NativeWindowSettings.yml", "OpenTK.Windowing.Desktop.NativeWindowSettings.Location": "OpenTK.Windowing.Desktop.NativeWindowSettings.yml", + "OpenTK.Windowing.Desktop.NativeWindowSettings.MaximumClientSize": "OpenTK.Windowing.Desktop.NativeWindowSettings.yml", "OpenTK.Windowing.Desktop.NativeWindowSettings.MaximumSize": "OpenTK.Windowing.Desktop.NativeWindowSettings.yml", + "OpenTK.Windowing.Desktop.NativeWindowSettings.MinimumClientSize": "OpenTK.Windowing.Desktop.NativeWindowSettings.yml", "OpenTK.Windowing.Desktop.NativeWindowSettings.MinimumSize": "OpenTK.Windowing.Desktop.NativeWindowSettings.yml", "OpenTK.Windowing.Desktop.NativeWindowSettings.NumberOfSamples": "OpenTK.Windowing.Desktop.NativeWindowSettings.yml", "OpenTK.Windowing.Desktop.NativeWindowSettings.Profile": "OpenTK.Windowing.Desktop.NativeWindowSettings.yml", diff --git a/api/OpenTK.Audio.OpenAL.OpenALLibraryNameContainer.yml b/api/OpenTK.Audio.OpenAL.OpenALLibraryNameContainer.yml index bb310d8e..0c54e725 100644 --- a/api/OpenTK.Audio.OpenAL.OpenALLibraryNameContainer.yml +++ b/api/OpenTK.Audio.OpenAL.OpenALLibraryNameContainer.yml @@ -10,6 +10,7 @@ items: - OpenTK.Audio.OpenAL.OpenALLibraryNameContainer.IOS - OpenTK.Audio.OpenAL.OpenALLibraryNameContainer.Linux - OpenTK.Audio.OpenAL.OpenALLibraryNameContainer.MacOS + - OpenTK.Audio.OpenAL.OpenALLibraryNameContainer.OverridePath - OpenTK.Audio.OpenAL.OpenALLibraryNameContainer.Windows langs: - csharp @@ -44,6 +45,40 @@ items: - System.Object.MemberwiseClone - System.Object.ReferenceEquals(System.Object,System.Object) - System.Object.ToString +- uid: OpenTK.Audio.OpenAL.OpenALLibraryNameContainer.OverridePath + commentId: P:OpenTK.Audio.OpenAL.OpenALLibraryNameContainer.OverridePath + id: OverridePath + parent: OpenTK.Audio.OpenAL.OpenALLibraryNameContainer + langs: + - csharp + - vb + name: OverridePath + nameWithType: OpenALLibraryNameContainer.OverridePath + fullName: OpenTK.Audio.OpenAL.OpenALLibraryNameContainer.OverridePath + type: Property + source: + remote: + path: src/OpenAL/OpenTK.Audio.OpenAL/OpenALLibraryNameContainer.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: OverridePath + path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/OpenALLibraryNameContainer.cs + startLine: 23 + assemblies: + - OpenTK.Audio.OpenAL + namespace: OpenTK.Audio.OpenAL + summary: >- + Overrides any platform detection logic and directly searches for the OpenAL library using the provided path. + + If this is null then no override will happen. + example: [] + syntax: + content: public static string OverridePath { get; set; } + parameters: [] + return: + type: System.String + content.vb: Public Shared Property OverridePath As String + overload: OpenTK.Audio.OpenAL.OpenALLibraryNameContainer.OverridePath* - uid: OpenTK.Audio.OpenAL.OpenALLibraryNameContainer.Windows commentId: P:OpenTK.Audio.OpenAL.OpenALLibraryNameContainer.Windows id: Windows @@ -62,7 +97,7 @@ items: repo: https://github.com/opentk/opentk.git id: Windows path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/OpenALLibraryNameContainer.cs - startLine: 22 + startLine: 28 assemblies: - OpenTK.Audio.OpenAL namespace: OpenTK.Audio.OpenAL @@ -93,7 +128,7 @@ items: repo: https://github.com/opentk/opentk.git id: Linux path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/OpenALLibraryNameContainer.cs - startLine: 27 + startLine: 33 assemblies: - OpenTK.Audio.OpenAL namespace: OpenTK.Audio.OpenAL @@ -124,7 +159,7 @@ items: repo: https://github.com/opentk/opentk.git id: MacOS path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/OpenALLibraryNameContainer.cs - startLine: 32 + startLine: 38 assemblies: - OpenTK.Audio.OpenAL namespace: OpenTK.Audio.OpenAL @@ -155,7 +190,7 @@ items: repo: https://github.com/opentk/opentk.git id: Android path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/OpenALLibraryNameContainer.cs - startLine: 37 + startLine: 43 assemblies: - OpenTK.Audio.OpenAL namespace: OpenTK.Audio.OpenAL @@ -186,7 +221,7 @@ items: repo: https://github.com/opentk/opentk.git id: IOS path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/OpenALLibraryNameContainer.cs - startLine: 42 + startLine: 48 assemblies: - OpenTK.Audio.OpenAL namespace: OpenTK.Audio.OpenAL @@ -217,7 +252,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetLibraryName path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/OpenALLibraryNameContainer.cs - startLine: 48 + startLine: 54 assemblies: - OpenTK.Audio.OpenAL namespace: OpenTK.Audio.OpenAL @@ -498,12 +533,12 @@ references: name: System nameWithType: System fullName: System -- uid: OpenTK.Audio.OpenAL.OpenALLibraryNameContainer.Windows* - commentId: Overload:OpenTK.Audio.OpenAL.OpenALLibraryNameContainer.Windows - href: OpenTK.Audio.OpenAL.OpenALLibraryNameContainer.html#OpenTK_Audio_OpenAL_OpenALLibraryNameContainer_Windows - name: Windows - nameWithType: OpenALLibraryNameContainer.Windows - fullName: OpenTK.Audio.OpenAL.OpenALLibraryNameContainer.Windows +- uid: OpenTK.Audio.OpenAL.OpenALLibraryNameContainer.OverridePath* + commentId: Overload:OpenTK.Audio.OpenAL.OpenALLibraryNameContainer.OverridePath + href: OpenTK.Audio.OpenAL.OpenALLibraryNameContainer.html#OpenTK_Audio_OpenAL_OpenALLibraryNameContainer_OverridePath + name: OverridePath + nameWithType: OpenALLibraryNameContainer.OverridePath + fullName: OpenTK.Audio.OpenAL.OpenALLibraryNameContainer.OverridePath - uid: System.String commentId: T:System.String parent: System @@ -515,6 +550,12 @@ references: nameWithType.vb: String fullName.vb: String name.vb: String +- uid: OpenTK.Audio.OpenAL.OpenALLibraryNameContainer.Windows* + commentId: Overload:OpenTK.Audio.OpenAL.OpenALLibraryNameContainer.Windows + href: OpenTK.Audio.OpenAL.OpenALLibraryNameContainer.html#OpenTK_Audio_OpenAL_OpenALLibraryNameContainer_Windows + name: Windows + nameWithType: OpenALLibraryNameContainer.Windows + fullName: OpenTK.Audio.OpenAL.OpenALLibraryNameContainer.Windows - uid: OpenTK.Audio.OpenAL.OpenALLibraryNameContainer.Linux* commentId: Overload:OpenTK.Audio.OpenAL.OpenALLibraryNameContainer.Linux href: OpenTK.Audio.OpenAL.OpenALLibraryNameContainer.html#OpenTK_Audio_OpenAL_OpenALLibraryNameContainer_Linux diff --git a/api/OpenTK.Compute.OpenCL.CLGL.ObjectType.yml b/api/OpenTK.Compute.OpenCL.CLGL.ObjectType.yml index b16e273d..6735fbaf 100644 --- a/api/OpenTK.Compute.OpenCL.CLGL.ObjectType.yml +++ b/api/OpenTK.Compute.OpenCL.CLGL.ObjectType.yml @@ -160,7 +160,7 @@ items: assemblies: - OpenTK.Compute namespace: OpenTK.Compute.OpenCL - summary: Introduced in OpenCL 1.2 + summary: Introduced in OpenCL 1.2. example: [] syntax: content: ObjectTexture2DArray = 8206 @@ -188,7 +188,7 @@ items: assemblies: - OpenTK.Compute namespace: OpenTK.Compute.OpenCL - summary: Introduced in OpenCL 1.2 + summary: Introduced in OpenCL 1.2. example: [] syntax: content: ObjectTexture1D = 8207 @@ -216,7 +216,7 @@ items: assemblies: - OpenTK.Compute namespace: OpenTK.Compute.OpenCL - summary: Introduced in OpenCL 1.2 + summary: Introduced in OpenCL 1.2. example: [] syntax: content: ObjectTexture1DArray = 8208 @@ -244,7 +244,7 @@ items: assemblies: - OpenTK.Compute namespace: OpenTK.Compute.OpenCL - summary: Introduced in OpenCL 1.2 + summary: Introduced in OpenCL 1.2. example: [] syntax: content: ObjectTextureBuffer = 8209 diff --git a/api/OpenTK.Compute.OpenCL.CLGL.TextureInfo.yml b/api/OpenTK.Compute.OpenCL.CLGL.TextureInfo.yml index 99c57dbf..047f6a32 100644 --- a/api/OpenTK.Compute.OpenCL.CLGL.TextureInfo.yml +++ b/api/OpenTK.Compute.OpenCL.CLGL.TextureInfo.yml @@ -103,7 +103,7 @@ items: assemblies: - OpenTK.Compute namespace: OpenTK.Compute.OpenCL - summary: Introduced in OpenCL 1.2 + summary: Introduced in OpenCL 1.2. example: [] syntax: content: NumSamples = 8210 diff --git a/api/OpenTK.Compute.OpenCL.OpenCLLibraryNameContainer.yml b/api/OpenTK.Compute.OpenCL.OpenCLLibraryNameContainer.yml index 217e44b9..00e13db3 100644 --- a/api/OpenTK.Compute.OpenCL.OpenCLLibraryNameContainer.yml +++ b/api/OpenTK.Compute.OpenCL.OpenCLLibraryNameContainer.yml @@ -10,6 +10,7 @@ items: - OpenTK.Compute.OpenCL.OpenCLLibraryNameContainer.IOS - OpenTK.Compute.OpenCL.OpenCLLibraryNameContainer.Linux - OpenTK.Compute.OpenCL.OpenCLLibraryNameContainer.MacOS + - OpenTK.Compute.OpenCL.OpenCLLibraryNameContainer.OverridePath - OpenTK.Compute.OpenCL.OpenCLLibraryNameContainer.Windows langs: - csharp @@ -44,6 +45,40 @@ items: - System.Object.MemberwiseClone - System.Object.ReferenceEquals(System.Object,System.Object) - System.Object.ToString +- uid: OpenTK.Compute.OpenCL.OpenCLLibraryNameContainer.OverridePath + commentId: P:OpenTK.Compute.OpenCL.OpenCLLibraryNameContainer.OverridePath + id: OverridePath + parent: OpenTK.Compute.OpenCL.OpenCLLibraryNameContainer + langs: + - csharp + - vb + name: OverridePath + nameWithType: OpenCLLibraryNameContainer.OverridePath + fullName: OpenTK.Compute.OpenCL.OpenCLLibraryNameContainer.OverridePath + type: Property + source: + remote: + path: src/OpenTK.Compute/OpenCL/OpenCLLibraryNameContainer.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: OverridePath + path: opentk/src/OpenTK.Compute/OpenCL/OpenCLLibraryNameContainer.cs + startLine: 14 + assemblies: + - OpenTK.Compute + namespace: OpenTK.Compute.OpenCL + summary: >- + Overrides any platform detection logic and directly searches for the OpenCL library using the provided path. + + If this is null then no override will happen. + example: [] + syntax: + content: public static string OverridePath { get; set; } + parameters: [] + return: + type: System.String + content.vb: Public Shared Property OverridePath As String + overload: OpenTK.Compute.OpenCL.OpenCLLibraryNameContainer.OverridePath* - uid: OpenTK.Compute.OpenCL.OpenCLLibraryNameContainer.Linux commentId: P:OpenTK.Compute.OpenCL.OpenCLLibraryNameContainer.Linux id: Linux @@ -62,12 +97,10 @@ items: repo: https://github.com/opentk/opentk.git id: Linux path: opentk/src/OpenTK.Compute/OpenCL/OpenCLLibraryNameContainer.cs - startLine: 13 + startLine: 16 assemblies: - OpenTK.Compute namespace: OpenTK.Compute.OpenCL - summary: Gets the library name to use on Linux. - example: [] syntax: content: public string Linux { get; } parameters: [] @@ -93,7 +126,7 @@ items: repo: https://github.com/opentk/opentk.git id: MacOS path: opentk/src/OpenTK.Compute/OpenCL/OpenCLLibraryNameContainer.cs - startLine: 18 + startLine: 21 assemblies: - OpenTK.Compute namespace: OpenTK.Compute.OpenCL @@ -124,7 +157,7 @@ items: repo: https://github.com/opentk/opentk.git id: Android path: opentk/src/OpenTK.Compute/OpenCL/OpenCLLibraryNameContainer.cs - startLine: 20 + startLine: 23 assemblies: - OpenTK.Compute namespace: OpenTK.Compute.OpenCL @@ -153,7 +186,7 @@ items: repo: https://github.com/opentk/opentk.git id: IOS path: opentk/src/OpenTK.Compute/OpenCL/OpenCLLibraryNameContainer.cs - startLine: 25 + startLine: 28 assemblies: - OpenTK.Compute namespace: OpenTK.Compute.OpenCL @@ -184,7 +217,7 @@ items: repo: https://github.com/opentk/opentk.git id: Windows path: opentk/src/OpenTK.Compute/OpenCL/OpenCLLibraryNameContainer.cs - startLine: 30 + startLine: 33 assemblies: - OpenTK.Compute namespace: OpenTK.Compute.OpenCL @@ -215,7 +248,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetLibraryName path: opentk/src/OpenTK.Compute/OpenCL/OpenCLLibraryNameContainer.cs - startLine: 36 + startLine: 39 assemblies: - OpenTK.Compute namespace: OpenTK.Compute.OpenCL @@ -496,12 +529,12 @@ references: name: System nameWithType: System fullName: System -- uid: OpenTK.Compute.OpenCL.OpenCLLibraryNameContainer.Linux* - commentId: Overload:OpenTK.Compute.OpenCL.OpenCLLibraryNameContainer.Linux - href: OpenTK.Compute.OpenCL.OpenCLLibraryNameContainer.html#OpenTK_Compute_OpenCL_OpenCLLibraryNameContainer_Linux - name: Linux - nameWithType: OpenCLLibraryNameContainer.Linux - fullName: OpenTK.Compute.OpenCL.OpenCLLibraryNameContainer.Linux +- uid: OpenTK.Compute.OpenCL.OpenCLLibraryNameContainer.OverridePath* + commentId: Overload:OpenTK.Compute.OpenCL.OpenCLLibraryNameContainer.OverridePath + href: OpenTK.Compute.OpenCL.OpenCLLibraryNameContainer.html#OpenTK_Compute_OpenCL_OpenCLLibraryNameContainer_OverridePath + name: OverridePath + nameWithType: OpenCLLibraryNameContainer.OverridePath + fullName: OpenTK.Compute.OpenCL.OpenCLLibraryNameContainer.OverridePath - uid: System.String commentId: T:System.String parent: System @@ -513,6 +546,12 @@ references: nameWithType.vb: String fullName.vb: String name.vb: String +- uid: OpenTK.Compute.OpenCL.OpenCLLibraryNameContainer.Linux* + commentId: Overload:OpenTK.Compute.OpenCL.OpenCLLibraryNameContainer.Linux + href: OpenTK.Compute.OpenCL.OpenCLLibraryNameContainer.html#OpenTK_Compute_OpenCL_OpenCLLibraryNameContainer_Linux + name: Linux + nameWithType: OpenCLLibraryNameContainer.Linux + fullName: OpenTK.Compute.OpenCL.OpenCLLibraryNameContainer.Linux - uid: OpenTK.Compute.OpenCL.OpenCLLibraryNameContainer.MacOS* commentId: Overload:OpenTK.Compute.OpenCL.OpenCLLibraryNameContainer.MacOS href: OpenTK.Compute.OpenCL.OpenCLLibraryNameContainer.html#OpenTK_Compute_OpenCL_OpenCLLibraryNameContainer_MacOS diff --git a/api/OpenTK.Core.Platform.Bitmap.yml b/api/OpenTK.Core.Platform.Bitmap.yml index cd55f3c2..6be7f608 100644 --- a/api/OpenTK.Core.Platform.Bitmap.yml +++ b/api/OpenTK.Core.Platform.Bitmap.yml @@ -60,7 +60,7 @@ items: repo: https://github.com/opentk/opentk.git id: Width path: opentk/src/OpenTK.Core/Platform/Bitmap.cs - startLine: 16 + startLine: 18 assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform @@ -91,7 +91,7 @@ items: repo: https://github.com/opentk/opentk.git id: Height path: opentk/src/OpenTK.Core/Platform/Bitmap.cs - startLine: 21 + startLine: 23 assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform @@ -122,7 +122,7 @@ items: repo: https://github.com/opentk/opentk.git id: Data path: opentk/src/OpenTK.Core/Platform/Bitmap.cs - startLine: 26 + startLine: 28 assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform @@ -153,7 +153,7 @@ items: repo: https://github.com/opentk/opentk.git id: .ctor path: opentk/src/OpenTK.Core/Platform/Bitmap.cs - startLine: 35 + startLine: 37 assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform diff --git a/api/OpenTK.Core.Platform.ClipboardFormat.yml b/api/OpenTK.Core.Platform.ClipboardFormat.yml index 2493183f..18e2dad4 100644 --- a/api/OpenTK.Core.Platform.ClipboardFormat.yml +++ b/api/OpenTK.Core.Platform.ClipboardFormat.yml @@ -8,7 +8,6 @@ items: - OpenTK.Core.Platform.ClipboardFormat.Audio - OpenTK.Core.Platform.ClipboardFormat.Bitmap - OpenTK.Core.Platform.ClipboardFormat.Files - - OpenTK.Core.Platform.ClipboardFormat.HTML - OpenTK.Core.Platform.ClipboardFormat.None - OpenTK.Core.Platform.ClipboardFormat.Text langs: @@ -140,45 +139,12 @@ items: assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform - summary: A bitmap. See + summary: A bitmap. See . example: [] syntax: content: Bitmap = 3 return: type: OpenTK.Core.Platform.ClipboardFormat -- uid: OpenTK.Core.Platform.ClipboardFormat.HTML - commentId: F:OpenTK.Core.Platform.ClipboardFormat.HTML - id: HTML - parent: OpenTK.Core.Platform.ClipboardFormat - langs: - - csharp - - vb - name: HTML - nameWithType: ClipboardFormat.HTML - fullName: OpenTK.Core.Platform.ClipboardFormat.HTML - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/ClipboardFormat.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: HTML - path: opentk/src/OpenTK.Core/Platform/Enums/ClipboardFormat.cs - startLine: 38 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: >- - HTML data. - - If the clipboard contains this format, - - it is also possible to get the unformated string using . - example: [] - syntax: - content: HTML = 4 - return: - type: OpenTK.Core.Platform.ClipboardFormat - uid: OpenTK.Core.Platform.ClipboardFormat.Files commentId: F:OpenTK.Core.Platform.ClipboardFormat.Files id: Files @@ -197,7 +163,7 @@ items: repo: https://github.com/opentk/opentk.git id: Files path: opentk/src/OpenTK.Core/Platform/Enums/ClipboardFormat.cs - startLine: 43 + startLine: 36 assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform @@ -259,29 +225,3 @@ references: name: Bitmap nameWithType: Bitmap fullName: OpenTK.Core.Platform.Bitmap -- uid: OpenTK.Core.Platform.IClipboardComponent.GetClipboardText - commentId: M:OpenTK.Core.Platform.IClipboardComponent.GetClipboardText - parent: OpenTK.Core.Platform.IClipboardComponent - href: OpenTK.Core.Platform.IClipboardComponent.html#OpenTK_Core_Platform_IClipboardComponent_GetClipboardText - name: GetClipboardText() - nameWithType: IClipboardComponent.GetClipboardText() - fullName: OpenTK.Core.Platform.IClipboardComponent.GetClipboardText() - spec.csharp: - - uid: OpenTK.Core.Platform.IClipboardComponent.GetClipboardText - name: GetClipboardText - href: OpenTK.Core.Platform.IClipboardComponent.html#OpenTK_Core_Platform_IClipboardComponent_GetClipboardText - - name: ( - - name: ) - spec.vb: - - uid: OpenTK.Core.Platform.IClipboardComponent.GetClipboardText - name: GetClipboardText - href: OpenTK.Core.Platform.IClipboardComponent.html#OpenTK_Core_Platform_IClipboardComponent_GetClipboardText - - name: ( - - name: ) -- uid: OpenTK.Core.Platform.IClipboardComponent - commentId: T:OpenTK.Core.Platform.IClipboardComponent - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.IClipboardComponent.html - name: IClipboardComponent - nameWithType: IClipboardComponent - fullName: OpenTK.Core.Platform.IClipboardComponent diff --git a/api/OpenTK.Core.Platform.ClipboardUpdateEventArgs.yml b/api/OpenTK.Core.Platform.ClipboardUpdateEventArgs.yml index 09373e86..a453bf80 100644 --- a/api/OpenTK.Core.Platform.ClipboardUpdateEventArgs.yml +++ b/api/OpenTK.Core.Platform.ClipboardUpdateEventArgs.yml @@ -21,7 +21,7 @@ items: repo: https://github.com/opentk/opentk.git id: ClipboardUpdateEventArgs path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs - startLine: 546 + startLine: 565 assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform @@ -60,7 +60,7 @@ items: repo: https://github.com/opentk/opentk.git id: NewFormat path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs - startLine: 551 + startLine: 570 assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform @@ -91,7 +91,7 @@ items: repo: https://github.com/opentk/opentk.git id: .ctor path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs - startLine: 557 + startLine: 576 assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform diff --git a/api/OpenTK.Core.Platform.CloseEventArgs.yml b/api/OpenTK.Core.Platform.CloseEventArgs.yml index d059b093..327060b5 100644 --- a/api/OpenTK.Core.Platform.CloseEventArgs.yml +++ b/api/OpenTK.Core.Platform.CloseEventArgs.yml @@ -20,7 +20,7 @@ items: repo: https://github.com/opentk/opentk.git id: CloseEventArgs path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs - startLine: 502 + startLine: 521 assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform @@ -61,7 +61,7 @@ items: repo: https://github.com/opentk/opentk.git id: .ctor path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs - startLine: 508 + startLine: 527 assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform diff --git a/api/OpenTK.Core.Platform.ContextDepthBits.yml b/api/OpenTK.Core.Platform.ContextDepthBits.yml index 8b810c6e..8bca1c9b 100644 --- a/api/OpenTK.Core.Platform.ContextDepthBits.yml +++ b/api/OpenTK.Core.Platform.ContextDepthBits.yml @@ -5,6 +5,7 @@ items: id: ContextDepthBits parent: OpenTK.Core.Platform children: + - OpenTK.Core.Platform.ContextDepthBits.Depth16 - OpenTK.Core.Platform.ContextDepthBits.Depth24 - OpenTK.Core.Platform.ContextDepthBits.Depth32 - OpenTK.Core.Platform.ContextDepthBits.None @@ -22,7 +23,7 @@ items: repo: https://github.com/opentk/opentk.git id: ContextDepthBits path: opentk/src/OpenTK.Core/Platform/ContextSettings.cs - startLine: 83 + startLine: 517 assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform @@ -49,7 +50,7 @@ items: repo: https://github.com/opentk/opentk.git id: None path: opentk/src/OpenTK.Core/Platform/ContextSettings.cs - startLine: 88 + startLine: 522 assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform @@ -59,6 +60,34 @@ items: content: None = 0 return: type: OpenTK.Core.Platform.ContextDepthBits +- uid: OpenTK.Core.Platform.ContextDepthBits.Depth16 + commentId: F:OpenTK.Core.Platform.ContextDepthBits.Depth16 + id: Depth16 + parent: OpenTK.Core.Platform.ContextDepthBits + langs: + - csharp + - vb + name: Depth16 + nameWithType: ContextDepthBits.Depth16 + fullName: OpenTK.Core.Platform.ContextDepthBits.Depth16 + type: Field + source: + remote: + path: src/OpenTK.Core/Platform/ContextSettings.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: Depth16 + path: opentk/src/OpenTK.Core/Platform/ContextSettings.cs + startLine: 527 + assemblies: + - OpenTK.Core + namespace: OpenTK.Core.Platform + summary: 16-bit depth buffer. + example: [] + syntax: + content: Depth16 = 16 + return: + type: OpenTK.Core.Platform.ContextDepthBits - uid: OpenTK.Core.Platform.ContextDepthBits.Depth24 commentId: F:OpenTK.Core.Platform.ContextDepthBits.Depth24 id: Depth24 @@ -77,7 +106,7 @@ items: repo: https://github.com/opentk/opentk.git id: Depth24 path: opentk/src/OpenTK.Core/Platform/ContextSettings.cs - startLine: 93 + startLine: 532 assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform @@ -105,7 +134,7 @@ items: repo: https://github.com/opentk/opentk.git id: Depth32 path: opentk/src/OpenTK.Core/Platform/ContextSettings.cs - startLine: 98 + startLine: 537 assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform diff --git a/api/OpenTK.Core.Platform.ContextPixelFormat.yml b/api/OpenTK.Core.Platform.ContextPixelFormat.yml new file mode 100644 index 00000000..0f7e3a37 --- /dev/null +++ b/api/OpenTK.Core.Platform.ContextPixelFormat.yml @@ -0,0 +1,170 @@ +### YamlMime:ManagedReference +items: +- uid: OpenTK.Core.Platform.ContextPixelFormat + commentId: T:OpenTK.Core.Platform.ContextPixelFormat + id: ContextPixelFormat + parent: OpenTK.Core.Platform + children: + - OpenTK.Core.Platform.ContextPixelFormat.RGBA + - OpenTK.Core.Platform.ContextPixelFormat.RGBAFloat + - OpenTK.Core.Platform.ContextPixelFormat.RGBAPackedFloat + langs: + - csharp + - vb + name: ContextPixelFormat + nameWithType: ContextPixelFormat + fullName: OpenTK.Core.Platform.ContextPixelFormat + type: Enum + source: + remote: + path: src/OpenTK.Core/Platform/ContextSettings.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: ContextPixelFormat + path: opentk/src/OpenTK.Core/Platform/ContextSettings.cs + startLine: 470 + assemblies: + - OpenTK.Core + namespace: OpenTK.Core.Platform + summary: >- + Defined the pixel format type of the context. + + This is used to differentiate between "normal" fixed point LDR formats + + and floating point HDR formats. + example: [] + syntax: + content: public enum ContextPixelFormat + content.vb: Public Enum ContextPixelFormat +- uid: OpenTK.Core.Platform.ContextPixelFormat.RGBA + commentId: F:OpenTK.Core.Platform.ContextPixelFormat.RGBA + id: RGBA + parent: OpenTK.Core.Platform.ContextPixelFormat + langs: + - csharp + - vb + name: RGBA + nameWithType: ContextPixelFormat.RGBA + fullName: OpenTK.Core.Platform.ContextPixelFormat.RGBA + type: Field + source: + remote: + path: src/OpenTK.Core/Platform/ContextSettings.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: RGBA + path: opentk/src/OpenTK.Core/Platform/ContextSettings.cs + startLine: 475 + assemblies: + - OpenTK.Core + namespace: OpenTK.Core.Platform + summary: Normal fixed point RGBA format specified by the color bits. + example: [] + syntax: + content: RGBA = 0 + return: + type: OpenTK.Core.Platform.ContextPixelFormat +- uid: OpenTK.Core.Platform.ContextPixelFormat.RGBAFloat + commentId: F:OpenTK.Core.Platform.ContextPixelFormat.RGBAFloat + id: RGBAFloat + parent: OpenTK.Core.Platform.ContextPixelFormat + langs: + - csharp + - vb + name: RGBAFloat + nameWithType: ContextPixelFormat.RGBAFloat + fullName: OpenTK.Core.Platform.ContextPixelFormat.RGBAFloat + type: Field + source: + remote: + path: src/OpenTK.Core/Platform/ContextSettings.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: RGBAFloat + path: opentk/src/OpenTK.Core/Platform/ContextSettings.cs + startLine: 483 + assemblies: + - OpenTK.Core + namespace: OpenTK.Core.Platform + summary: >- + Floating point RGBA pixel format specified by + + ARB_color_buffer_float + + or + + WGL_ATI_pixel_format_float. + example: [] + syntax: + content: RGBAFloat = 1 + return: + type: OpenTK.Core.Platform.ContextPixelFormat +- uid: OpenTK.Core.Platform.ContextPixelFormat.RGBAPackedFloat + commentId: F:OpenTK.Core.Platform.ContextPixelFormat.RGBAPackedFloat + id: RGBAPackedFloat + parent: OpenTK.Core.Platform.ContextPixelFormat + langs: + - csharp + - vb + name: RGBAPackedFloat + nameWithType: ContextPixelFormat.RGBAPackedFloat + fullName: OpenTK.Core.Platform.ContextPixelFormat.RGBAPackedFloat + type: Field + source: + remote: + path: src/OpenTK.Core/Platform/ContextSettings.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: RGBAPackedFloat + path: opentk/src/OpenTK.Core/Platform/ContextSettings.cs + startLine: 489 + assemblies: + - OpenTK.Core + namespace: OpenTK.Core.Platform + summary: >- + From EXT_packed_float. + + Pixel format is unsigned 10F_11F_11F format. + example: [] + syntax: + content: RGBAPackedFloat = 2 + return: + type: OpenTK.Core.Platform.ContextPixelFormat +references: +- uid: OpenTK.Core.Platform + commentId: N:OpenTK.Core.Platform + href: OpenTK.html + name: OpenTK.Core.Platform + nameWithType: OpenTK.Core.Platform + fullName: OpenTK.Core.Platform + spec.csharp: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Core + name: Core + href: OpenTK.Core.html + - name: . + - uid: OpenTK.Core.Platform + name: Platform + href: OpenTK.Core.Platform.html + spec.vb: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Core + name: Core + href: OpenTK.Core.html + - name: . + - uid: OpenTK.Core.Platform + name: Platform + href: OpenTK.Core.Platform.html +- uid: OpenTK.Core.Platform.ContextPixelFormat + commentId: T:OpenTK.Core.Platform.ContextPixelFormat + parent: OpenTK.Core.Platform + href: OpenTK.Core.Platform.ContextPixelFormat.html + name: ContextPixelFormat + nameWithType: ContextPixelFormat + fullName: OpenTK.Core.Platform.ContextPixelFormat diff --git a/api/OpenTK.Core.Platform.ContextReleaseBehaviour.yml b/api/OpenTK.Core.Platform.ContextReleaseBehaviour.yml new file mode 100644 index 00000000..8311fc1e --- /dev/null +++ b/api/OpenTK.Core.Platform.ContextReleaseBehaviour.yml @@ -0,0 +1,126 @@ +### YamlMime:ManagedReference +items: +- uid: OpenTK.Core.Platform.ContextReleaseBehaviour + commentId: T:OpenTK.Core.Platform.ContextReleaseBehaviour + id: ContextReleaseBehaviour + parent: OpenTK.Core.Platform + children: + - OpenTK.Core.Platform.ContextReleaseBehaviour.Flush + - OpenTK.Core.Platform.ContextReleaseBehaviour.None + langs: + - csharp + - vb + name: ContextReleaseBehaviour + nameWithType: ContextReleaseBehaviour + fullName: OpenTK.Core.Platform.ContextReleaseBehaviour + type: Enum + source: + remote: + path: src/OpenTK.Core/Platform/ContextSettings.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: ContextReleaseBehaviour + path: opentk/src/OpenTK.Core/Platform/ContextSettings.cs + startLine: 575 + assemblies: + - OpenTK.Core + namespace: OpenTK.Core.Platform + summary: See KHR_context_flush_control extension for details. + example: [] + syntax: + content: public enum ContextReleaseBehaviour + content.vb: Public Enum ContextReleaseBehaviour +- uid: OpenTK.Core.Platform.ContextReleaseBehaviour.None + commentId: F:OpenTK.Core.Platform.ContextReleaseBehaviour.None + id: None + parent: OpenTK.Core.Platform.ContextReleaseBehaviour + langs: + - csharp + - vb + name: None + nameWithType: ContextReleaseBehaviour.None + fullName: OpenTK.Core.Platform.ContextReleaseBehaviour.None + type: Field + source: + remote: + path: src/OpenTK.Core/Platform/ContextSettings.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: None + path: opentk/src/OpenTK.Core/Platform/ContextSettings.cs + startLine: 580 + assemblies: + - OpenTK.Core + namespace: OpenTK.Core.Platform + summary: No flush is done when the context is released (made not current). + example: [] + syntax: + content: None = 0 + return: + type: OpenTK.Core.Platform.ContextReleaseBehaviour +- uid: OpenTK.Core.Platform.ContextReleaseBehaviour.Flush + commentId: F:OpenTK.Core.Platform.ContextReleaseBehaviour.Flush + id: Flush + parent: OpenTK.Core.Platform.ContextReleaseBehaviour + langs: + - csharp + - vb + name: Flush + nameWithType: ContextReleaseBehaviour.Flush + fullName: OpenTK.Core.Platform.ContextReleaseBehaviour.Flush + type: Field + source: + remote: + path: src/OpenTK.Core/Platform/ContextSettings.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: Flush + path: opentk/src/OpenTK.Core/Platform/ContextSettings.cs + startLine: 585 + assemblies: + - OpenTK.Core + namespace: OpenTK.Core.Platform + summary: A flush is done when the context is released (made not current). + example: [] + syntax: + content: Flush = 1 + return: + type: OpenTK.Core.Platform.ContextReleaseBehaviour +references: +- uid: OpenTK.Core.Platform + commentId: N:OpenTK.Core.Platform + href: OpenTK.html + name: OpenTK.Core.Platform + nameWithType: OpenTK.Core.Platform + fullName: OpenTK.Core.Platform + spec.csharp: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Core + name: Core + href: OpenTK.Core.html + - name: . + - uid: OpenTK.Core.Platform + name: Platform + href: OpenTK.Core.Platform.html + spec.vb: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Core + name: Core + href: OpenTK.Core.html + - name: . + - uid: OpenTK.Core.Platform + name: Platform + href: OpenTK.Core.Platform.html +- uid: OpenTK.Core.Platform.ContextReleaseBehaviour + commentId: T:OpenTK.Core.Platform.ContextReleaseBehaviour + parent: OpenTK.Core.Platform + href: OpenTK.Core.Platform.ContextReleaseBehaviour.html + name: ContextReleaseBehaviour + nameWithType: ContextReleaseBehaviour + fullName: OpenTK.Core.Platform.ContextReleaseBehaviour diff --git a/api/OpenTK.Core.Platform.ContextResetNotificationStrategy.yml b/api/OpenTK.Core.Platform.ContextResetNotificationStrategy.yml new file mode 100644 index 00000000..d1bb6315 --- /dev/null +++ b/api/OpenTK.Core.Platform.ContextResetNotificationStrategy.yml @@ -0,0 +1,122 @@ +### YamlMime:ManagedReference +items: +- uid: OpenTK.Core.Platform.ContextResetNotificationStrategy + commentId: T:OpenTK.Core.Platform.ContextResetNotificationStrategy + id: ContextResetNotificationStrategy + parent: OpenTK.Core.Platform + children: + - OpenTK.Core.Platform.ContextResetNotificationStrategy.LoseContextOnReset + - OpenTK.Core.Platform.ContextResetNotificationStrategy.NoResetNotification + langs: + - csharp + - vb + name: ContextResetNotificationStrategy + nameWithType: ContextResetNotificationStrategy + fullName: OpenTK.Core.Platform.ContextResetNotificationStrategy + type: Enum + source: + remote: + path: src/OpenTK.Core/Platform/ContextSettings.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: ContextResetNotificationStrategy + path: opentk/src/OpenTK.Core/Platform/ContextSettings.cs + startLine: 566 + assemblies: + - OpenTK.Core + namespace: OpenTK.Core.Platform + summary: See GL_ARB_robustness extension for details. + example: [] + syntax: + content: public enum ContextResetNotificationStrategy + content.vb: Public Enum ContextResetNotificationStrategy +- uid: OpenTK.Core.Platform.ContextResetNotificationStrategy.NoResetNotification + commentId: F:OpenTK.Core.Platform.ContextResetNotificationStrategy.NoResetNotification + id: NoResetNotification + parent: OpenTK.Core.Platform.ContextResetNotificationStrategy + langs: + - csharp + - vb + name: NoResetNotification + nameWithType: ContextResetNotificationStrategy.NoResetNotification + fullName: OpenTK.Core.Platform.ContextResetNotificationStrategy.NoResetNotification + type: Field + source: + remote: + path: src/OpenTK.Core/Platform/ContextSettings.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: NoResetNotification + path: opentk/src/OpenTK.Core/Platform/ContextSettings.cs + startLine: 568 + assemblies: + - OpenTK.Core + namespace: OpenTK.Core.Platform + syntax: + content: NoResetNotification = 0 + return: + type: OpenTK.Core.Platform.ContextResetNotificationStrategy +- uid: OpenTK.Core.Platform.ContextResetNotificationStrategy.LoseContextOnReset + commentId: F:OpenTK.Core.Platform.ContextResetNotificationStrategy.LoseContextOnReset + id: LoseContextOnReset + parent: OpenTK.Core.Platform.ContextResetNotificationStrategy + langs: + - csharp + - vb + name: LoseContextOnReset + nameWithType: ContextResetNotificationStrategy.LoseContextOnReset + fullName: OpenTK.Core.Platform.ContextResetNotificationStrategy.LoseContextOnReset + type: Field + source: + remote: + path: src/OpenTK.Core/Platform/ContextSettings.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: LoseContextOnReset + path: opentk/src/OpenTK.Core/Platform/ContextSettings.cs + startLine: 569 + assemblies: + - OpenTK.Core + namespace: OpenTK.Core.Platform + syntax: + content: LoseContextOnReset = 1 + return: + type: OpenTK.Core.Platform.ContextResetNotificationStrategy +references: +- uid: OpenTK.Core.Platform + commentId: N:OpenTK.Core.Platform + href: OpenTK.html + name: OpenTK.Core.Platform + nameWithType: OpenTK.Core.Platform + fullName: OpenTK.Core.Platform + spec.csharp: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Core + name: Core + href: OpenTK.Core.html + - name: . + - uid: OpenTK.Core.Platform + name: Platform + href: OpenTK.Core.Platform.html + spec.vb: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Core + name: Core + href: OpenTK.Core.html + - name: . + - uid: OpenTK.Core.Platform + name: Platform + href: OpenTK.Core.Platform.html +- uid: OpenTK.Core.Platform.ContextResetNotificationStrategy + commentId: T:OpenTK.Core.Platform.ContextResetNotificationStrategy + parent: OpenTK.Core.Platform + href: OpenTK.Core.Platform.ContextResetNotificationStrategy.html + name: ContextResetNotificationStrategy + nameWithType: ContextResetNotificationStrategy + fullName: OpenTK.Core.Platform.ContextResetNotificationStrategy diff --git a/api/OpenTK.Core.Platform.ContextStencilBits.yml b/api/OpenTK.Core.Platform.ContextStencilBits.yml index 7ad775b6..42c2f841 100644 --- a/api/OpenTK.Core.Platform.ContextStencilBits.yml +++ b/api/OpenTK.Core.Platform.ContextStencilBits.yml @@ -22,7 +22,7 @@ items: repo: https://github.com/opentk/opentk.git id: ContextStencilBits path: opentk/src/OpenTK.Core/Platform/ContextSettings.cs - startLine: 104 + startLine: 545 assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform @@ -49,7 +49,7 @@ items: repo: https://github.com/opentk/opentk.git id: None path: opentk/src/OpenTK.Core/Platform/ContextSettings.cs - startLine: 109 + startLine: 550 assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform @@ -77,7 +77,7 @@ items: repo: https://github.com/opentk/opentk.git id: Stencil1 path: opentk/src/OpenTK.Core/Platform/ContextSettings.cs - startLine: 114 + startLine: 555 assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform @@ -105,7 +105,7 @@ items: repo: https://github.com/opentk/opentk.git id: Stencil8 path: opentk/src/OpenTK.Core/Platform/ContextSettings.cs - startLine: 119 + startLine: 560 assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform diff --git a/api/OpenTK.Core.Platform.ContextSwapMethod.yml b/api/OpenTK.Core.Platform.ContextSwapMethod.yml new file mode 100644 index 00000000..5e5bd57d --- /dev/null +++ b/api/OpenTK.Core.Platform.ContextSwapMethod.yml @@ -0,0 +1,158 @@ +### YamlMime:ManagedReference +items: +- uid: OpenTK.Core.Platform.ContextSwapMethod + commentId: T:OpenTK.Core.Platform.ContextSwapMethod + id: ContextSwapMethod + parent: OpenTK.Core.Platform + children: + - OpenTK.Core.Platform.ContextSwapMethod.Copy + - OpenTK.Core.Platform.ContextSwapMethod.Exchange + - OpenTK.Core.Platform.ContextSwapMethod.Undefined + langs: + - csharp + - vb + name: ContextSwapMethod + nameWithType: ContextSwapMethod + fullName: OpenTK.Core.Platform.ContextSwapMethod + type: Enum + source: + remote: + path: src/OpenTK.Core/Platform/ContextSettings.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: ContextSwapMethod + path: opentk/src/OpenTK.Core/Platform/ContextSettings.cs + startLine: 495 + assemblies: + - OpenTK.Core + namespace: OpenTK.Core.Platform + summary: Defines differnet semantics for what happens to the backbuffer after a swap. + example: [] + syntax: + content: public enum ContextSwapMethod + content.vb: Public Enum ContextSwapMethod +- uid: OpenTK.Core.Platform.ContextSwapMethod.Undefined + commentId: F:OpenTK.Core.Platform.ContextSwapMethod.Undefined + id: Undefined + parent: OpenTK.Core.Platform.ContextSwapMethod + langs: + - csharp + - vb + name: Undefined + nameWithType: ContextSwapMethod.Undefined + fullName: OpenTK.Core.Platform.ContextSwapMethod.Undefined + type: Field + source: + remote: + path: src/OpenTK.Core/Platform/ContextSettings.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: Undefined + path: opentk/src/OpenTK.Core/Platform/ContextSettings.cs + startLine: 500 + assemblies: + - OpenTK.Core + namespace: OpenTK.Core.Platform + summary: The contents of the backbuffer after a swap is undefined. + example: [] + syntax: + content: Undefined = 0 + return: + type: OpenTK.Core.Platform.ContextSwapMethod +- uid: OpenTK.Core.Platform.ContextSwapMethod.Exchange + commentId: F:OpenTK.Core.Platform.ContextSwapMethod.Exchange + id: Exchange + parent: OpenTK.Core.Platform.ContextSwapMethod + langs: + - csharp + - vb + name: Exchange + nameWithType: ContextSwapMethod.Exchange + fullName: OpenTK.Core.Platform.ContextSwapMethod.Exchange + type: Field + source: + remote: + path: src/OpenTK.Core/Platform/ContextSettings.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: Exchange + path: opentk/src/OpenTK.Core/Platform/ContextSettings.cs + startLine: 505 + assemblies: + - OpenTK.Core + namespace: OpenTK.Core.Platform + summary: The contents of the frontbuffer and backbuffer are exchanged after a swap. + example: [] + syntax: + content: Exchange = 1 + return: + type: OpenTK.Core.Platform.ContextSwapMethod +- uid: OpenTK.Core.Platform.ContextSwapMethod.Copy + commentId: F:OpenTK.Core.Platform.ContextSwapMethod.Copy + id: Copy + parent: OpenTK.Core.Platform.ContextSwapMethod + langs: + - csharp + - vb + name: Copy + nameWithType: ContextSwapMethod.Copy + fullName: OpenTK.Core.Platform.ContextSwapMethod.Copy + type: Field + source: + remote: + path: src/OpenTK.Core/Platform/ContextSettings.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: Copy + path: opentk/src/OpenTK.Core/Platform/ContextSettings.cs + startLine: 511 + assemblies: + - OpenTK.Core + namespace: OpenTK.Core.Platform + summary: >- + The contents of the backbuffer are copied to the frontbuffer during a swap. + + Leaving the contents of the backbuffer unchanged. + example: [] + syntax: + content: Copy = 2 + return: + type: OpenTK.Core.Platform.ContextSwapMethod +references: +- uid: OpenTK.Core.Platform + commentId: N:OpenTK.Core.Platform + href: OpenTK.html + name: OpenTK.Core.Platform + nameWithType: OpenTK.Core.Platform + fullName: OpenTK.Core.Platform + spec.csharp: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Core + name: Core + href: OpenTK.Core.html + - name: . + - uid: OpenTK.Core.Platform + name: Platform + href: OpenTK.Core.Platform.html + spec.vb: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Core + name: Core + href: OpenTK.Core.html + - name: . + - uid: OpenTK.Core.Platform + name: Platform + href: OpenTK.Core.Platform.html +- uid: OpenTK.Core.Platform.ContextSwapMethod + commentId: T:OpenTK.Core.Platform.ContextSwapMethod + parent: OpenTK.Core.Platform + href: OpenTK.Core.Platform.ContextSwapMethod.html + name: ContextSwapMethod + nameWithType: ContextSwapMethod + fullName: OpenTK.Core.Platform.ContextSwapMethod diff --git a/api/OpenTK.Core.Platform.ContextValueSelector.yml b/api/OpenTK.Core.Platform.ContextValueSelector.yml new file mode 100644 index 00000000..32d4730d --- /dev/null +++ b/api/OpenTK.Core.Platform.ContextValueSelector.yml @@ -0,0 +1,234 @@ +### YamlMime:ManagedReference +items: +- uid: OpenTK.Core.Platform.ContextValueSelector + commentId: T:OpenTK.Core.Platform.ContextValueSelector + id: ContextValueSelector + parent: OpenTK.Core.Platform + children: [] + langs: + - csharp + - vb + name: ContextValueSelector + nameWithType: ContextValueSelector + fullName: OpenTK.Core.Platform.ContextValueSelector + type: Delegate + source: + remote: + path: src/OpenTK.Core/Platform/ContextSettings.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: ContextValueSelector + path: opentk/src/OpenTK.Core/Platform/ContextSettings.cs + startLine: 15 + assemblies: + - OpenTK.Core + namespace: OpenTK.Core.Platform + summary: Delegate used to select appropriate context values to use. + example: [] + syntax: + content: public delegate int ContextValueSelector(IReadOnlyList options, ContextValues requested, ILogger? logger) + parameters: + - id: options + type: System.Collections.Generic.IReadOnlyList{OpenTK.Core.Platform.ContextValues} + description: A list of possible context values. + - id: requested + type: OpenTK.Core.Platform.ContextValues + description: The user requested context values. + - id: logger + type: OpenTK.Core.Utility.ILogger + description: A logger to use for logging. + return: + type: System.Int32 + description: The index of the context value to use. + content.vb: Public Delegate Function ContextValueSelector(options As IReadOnlyList(Of ContextValues), requested As ContextValues, logger As ILogger) As Integer +references: +- uid: OpenTK.Core.Platform + commentId: N:OpenTK.Core.Platform + href: OpenTK.html + name: OpenTK.Core.Platform + nameWithType: OpenTK.Core.Platform + fullName: OpenTK.Core.Platform + spec.csharp: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Core + name: Core + href: OpenTK.Core.html + - name: . + - uid: OpenTK.Core.Platform + name: Platform + href: OpenTK.Core.Platform.html + spec.vb: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Core + name: Core + href: OpenTK.Core.html + - name: . + - uid: OpenTK.Core.Platform + name: Platform + href: OpenTK.Core.Platform.html +- uid: System.Collections.Generic.IReadOnlyList{OpenTK.Core.Platform.ContextValues} + commentId: T:System.Collections.Generic.IReadOnlyList{OpenTK.Core.Platform.ContextValues} + parent: System.Collections.Generic + definition: System.Collections.Generic.IReadOnlyList`1 + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 + name: IReadOnlyList + nameWithType: IReadOnlyList + fullName: System.Collections.Generic.IReadOnlyList + nameWithType.vb: IReadOnlyList(Of ContextValues) + fullName.vb: System.Collections.Generic.IReadOnlyList(Of OpenTK.Core.Platform.ContextValues) + name.vb: IReadOnlyList(Of ContextValues) + spec.csharp: + - uid: System.Collections.Generic.IReadOnlyList`1 + name: IReadOnlyList + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 + - name: < + - uid: OpenTK.Core.Platform.ContextValues + name: ContextValues + href: OpenTK.Core.Platform.ContextValues.html + - name: '>' + spec.vb: + - uid: System.Collections.Generic.IReadOnlyList`1 + name: IReadOnlyList + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 + - name: ( + - name: Of + - name: " " + - uid: OpenTK.Core.Platform.ContextValues + name: ContextValues + href: OpenTK.Core.Platform.ContextValues.html + - name: ) +- uid: OpenTK.Core.Platform.ContextValues + commentId: T:OpenTK.Core.Platform.ContextValues + parent: OpenTK.Core.Platform + href: OpenTK.Core.Platform.ContextValues.html + name: ContextValues + nameWithType: ContextValues + fullName: OpenTK.Core.Platform.ContextValues +- uid: OpenTK.Core.Utility.ILogger + commentId: T:OpenTK.Core.Utility.ILogger + parent: OpenTK.Core.Utility + href: OpenTK.Core.Utility.ILogger.html + name: ILogger + nameWithType: ILogger + fullName: OpenTK.Core.Utility.ILogger +- uid: System.Int32 + commentId: T:System.Int32 + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + name: int + nameWithType: int + fullName: int + nameWithType.vb: Integer + fullName.vb: Integer + name.vb: Integer +- uid: System.Collections.Generic.IReadOnlyList`1 + commentId: T:System.Collections.Generic.IReadOnlyList`1 + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 + name: IReadOnlyList + nameWithType: IReadOnlyList + fullName: System.Collections.Generic.IReadOnlyList + nameWithType.vb: IReadOnlyList(Of T) + fullName.vb: System.Collections.Generic.IReadOnlyList(Of T) + name.vb: IReadOnlyList(Of T) + spec.csharp: + - uid: System.Collections.Generic.IReadOnlyList`1 + name: IReadOnlyList + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 + - name: < + - name: T + - name: '>' + spec.vb: + - uid: System.Collections.Generic.IReadOnlyList`1 + name: IReadOnlyList + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 + - name: ( + - name: Of + - name: " " + - name: T + - name: ) +- uid: System.Collections.Generic + commentId: N:System.Collections.Generic + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System.Collections.Generic + nameWithType: System.Collections.Generic + fullName: System.Collections.Generic + spec.csharp: + - uid: System + name: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + - name: . + - uid: System.Collections + name: Collections + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections + - name: . + - uid: System.Collections.Generic + name: Generic + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic + spec.vb: + - uid: System + name: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + - name: . + - uid: System.Collections + name: Collections + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections + - name: . + - uid: System.Collections.Generic + name: Generic + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic +- uid: OpenTK.Core.Utility + commentId: N:OpenTK.Core.Utility + href: OpenTK.html + name: OpenTK.Core.Utility + nameWithType: OpenTK.Core.Utility + fullName: OpenTK.Core.Utility + spec.csharp: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Core + name: Core + href: OpenTK.Core.html + - name: . + - uid: OpenTK.Core.Utility + name: Utility + href: OpenTK.Core.Utility.html + spec.vb: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Core + name: Core + href: OpenTK.Core.html + - name: . + - uid: OpenTK.Core.Utility + name: Utility + href: OpenTK.Core.Utility.html +- uid: System + commentId: N:System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System + nameWithType: System + fullName: System diff --git a/api/OpenTK.Core.Platform.ContextValues.yml b/api/OpenTK.Core.Platform.ContextValues.yml index 8c123b4d..234e89b5 100644 --- a/api/OpenTK.Core.Platform.ContextValues.yml +++ b/api/OpenTK.Core.Platform.ContextValues.yml @@ -5,16 +5,41 @@ items: id: ContextValues parent: OpenTK.Core.Platform children: + - OpenTK.Core.Platform.ContextValues.#ctor(System.UInt64,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Boolean,System.Boolean,OpenTK.Core.Platform.ContextPixelFormat,OpenTK.Core.Platform.ContextSwapMethod,System.Int32) - OpenTK.Core.Platform.ContextValues.AlphaBits - OpenTK.Core.Platform.ContextValues.BlueBits + - OpenTK.Core.Platform.ContextValues.DefaultValuesSelector(System.Collections.Generic.IReadOnlyList{OpenTK.Core.Platform.ContextValues},OpenTK.Core.Platform.ContextValues,OpenTK.Core.Utility.ILogger) - OpenTK.Core.Platform.ContextValues.DepthBits - OpenTK.Core.Platform.ContextValues.DoubleBuffered + - OpenTK.Core.Platform.ContextValues.Equals(OpenTK.Core.Platform.ContextValues) + - OpenTK.Core.Platform.ContextValues.Equals(System.Object) + - OpenTK.Core.Platform.ContextValues.GetHashCode - OpenTK.Core.Platform.ContextValues.GreenBits - - OpenTK.Core.Platform.ContextValues.Multisample + - OpenTK.Core.Platform.ContextValues.HasEqualColorBits(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues) + - OpenTK.Core.Platform.ContextValues.HasEqualDepthBits(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues) + - OpenTK.Core.Platform.ContextValues.HasEqualDoubleBuffer(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues) + - OpenTK.Core.Platform.ContextValues.HasEqualMSAA(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues) + - OpenTK.Core.Platform.ContextValues.HasEqualPixelFormat(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues) + - OpenTK.Core.Platform.ContextValues.HasEqualSRGB(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues) + - OpenTK.Core.Platform.ContextValues.HasEqualStencilBits(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues) + - OpenTK.Core.Platform.ContextValues.HasEqualSwapMethod(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues) + - OpenTK.Core.Platform.ContextValues.HasGreaterOrEqualColorBits(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues) + - OpenTK.Core.Platform.ContextValues.HasGreaterOrEqualDepthBits(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues) + - OpenTK.Core.Platform.ContextValues.HasGreaterOrEqualStencilBits(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues) + - OpenTK.Core.Platform.ContextValues.HasLessOrEqualColorBits(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues) + - OpenTK.Core.Platform.ContextValues.HasLessOrEqualDepthBits(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues) + - OpenTK.Core.Platform.ContextValues.HasLessOrEqualStencilBits(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues) + - OpenTK.Core.Platform.ContextValues.ID + - OpenTK.Core.Platform.ContextValues.IsEqualExcludingID(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues) + - OpenTK.Core.Platform.ContextValues.PixelFormat - OpenTK.Core.Platform.ContextValues.RedBits - OpenTK.Core.Platform.ContextValues.SRGBFramebuffer - OpenTK.Core.Platform.ContextValues.Samples - OpenTK.Core.Platform.ContextValues.StencilBits + - OpenTK.Core.Platform.ContextValues.SwapMethod + - OpenTK.Core.Platform.ContextValues.ToString + - OpenTK.Core.Platform.ContextValues.op_Equality(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues) + - OpenTK.Core.Platform.ContextValues.op_Inequality(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues) langs: - csharp - vb @@ -29,20 +54,46 @@ items: repo: https://github.com/opentk/opentk.git id: ContextValues path: opentk/src/OpenTK.Core/Platform/ContextSettings.cs - startLine: 66 + startLine: 18 assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform syntax: - content: public struct ContextValues - content.vb: Public Structure ContextValues + content: 'public struct ContextValues : IEquatable' + content.vb: Public Structure ContextValues Implements IEquatable(Of ContextValues) + implements: + - System.IEquatable{OpenTK.Core.Platform.ContextValues} inheritedMembers: - - System.ValueType.Equals(System.Object) - - System.ValueType.GetHashCode - - System.ValueType.ToString - System.Object.Equals(System.Object,System.Object) - System.Object.GetType - System.Object.ReferenceEquals(System.Object,System.Object) +- uid: OpenTK.Core.Platform.ContextValues.ID + commentId: F:OpenTK.Core.Platform.ContextValues.ID + id: ID + parent: OpenTK.Core.Platform.ContextValues + langs: + - csharp + - vb + name: ID + nameWithType: ContextValues.ID + fullName: OpenTK.Core.Platform.ContextValues.ID + type: Field + source: + remote: + path: src/OpenTK.Core/Platform/ContextSettings.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: ID + path: opentk/src/OpenTK.Core/Platform/ContextSettings.cs + startLine: 20 + assemblies: + - OpenTK.Core + namespace: OpenTK.Core.Platform + syntax: + content: public ulong ID + return: + type: System.UInt64 + content.vb: Public ID As ULong - uid: OpenTK.Core.Platform.ContextValues.RedBits commentId: F:OpenTK.Core.Platform.ContextValues.RedBits id: RedBits @@ -61,7 +112,7 @@ items: repo: https://github.com/opentk/opentk.git id: RedBits path: opentk/src/OpenTK.Core/Platform/ContextSettings.cs - startLine: 68 + startLine: 22 assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform @@ -88,7 +139,7 @@ items: repo: https://github.com/opentk/opentk.git id: GreenBits path: opentk/src/OpenTK.Core/Platform/ContextSettings.cs - startLine: 69 + startLine: 23 assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform @@ -115,7 +166,7 @@ items: repo: https://github.com/opentk/opentk.git id: BlueBits path: opentk/src/OpenTK.Core/Platform/ContextSettings.cs - startLine: 70 + startLine: 24 assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform @@ -142,7 +193,7 @@ items: repo: https://github.com/opentk/opentk.git id: AlphaBits path: opentk/src/OpenTK.Core/Platform/ContextSettings.cs - startLine: 71 + startLine: 25 assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform @@ -169,7 +220,7 @@ items: repo: https://github.com/opentk/opentk.git id: DepthBits path: opentk/src/OpenTK.Core/Platform/ContextSettings.cs - startLine: 72 + startLine: 26 assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform @@ -196,7 +247,7 @@ items: repo: https://github.com/opentk/opentk.git id: StencilBits path: opentk/src/OpenTK.Core/Platform/ContextSettings.cs - startLine: 73 + startLine: 27 assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform @@ -223,7 +274,7 @@ items: repo: https://github.com/opentk/opentk.git id: DoubleBuffered path: opentk/src/OpenTK.Core/Platform/ContextSettings.cs - startLine: 74 + startLine: 28 assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform @@ -250,7 +301,7 @@ items: repo: https://github.com/opentk/opentk.git id: SRGBFramebuffer path: opentk/src/OpenTK.Core/Platform/ContextSettings.cs - startLine: 75 + startLine: 29 assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform @@ -259,33 +310,60 @@ items: return: type: System.Boolean content.vb: Public SRGBFramebuffer As Boolean -- uid: OpenTK.Core.Platform.ContextValues.Multisample - commentId: F:OpenTK.Core.Platform.ContextValues.Multisample - id: Multisample +- uid: OpenTK.Core.Platform.ContextValues.PixelFormat + commentId: F:OpenTK.Core.Platform.ContextValues.PixelFormat + id: PixelFormat parent: OpenTK.Core.Platform.ContextValues langs: - csharp - vb - name: Multisample - nameWithType: ContextValues.Multisample - fullName: OpenTK.Core.Platform.ContextValues.Multisample + name: PixelFormat + nameWithType: ContextValues.PixelFormat + fullName: OpenTK.Core.Platform.ContextValues.PixelFormat type: Field source: remote: path: src/OpenTK.Core/Platform/ContextSettings.cs branch: pal2-work repo: https://github.com/opentk/opentk.git - id: Multisample + id: PixelFormat path: opentk/src/OpenTK.Core/Platform/ContextSettings.cs - startLine: 76 + startLine: 30 assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform syntax: - content: public bool Multisample + content: public ContextPixelFormat PixelFormat return: - type: System.Boolean - content.vb: Public Multisample As Boolean + type: OpenTK.Core.Platform.ContextPixelFormat + content.vb: Public PixelFormat As ContextPixelFormat +- uid: OpenTK.Core.Platform.ContextValues.SwapMethod + commentId: F:OpenTK.Core.Platform.ContextValues.SwapMethod + id: SwapMethod + parent: OpenTK.Core.Platform.ContextValues + langs: + - csharp + - vb + name: SwapMethod + nameWithType: ContextValues.SwapMethod + fullName: OpenTK.Core.Platform.ContextValues.SwapMethod + type: Field + source: + remote: + path: src/OpenTK.Core/Platform/ContextSettings.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: SwapMethod + path: opentk/src/OpenTK.Core/Platform/ContextSettings.cs + startLine: 31 + assemblies: + - OpenTK.Core + namespace: OpenTK.Core.Platform + syntax: + content: public ContextSwapMethod SwapMethod + return: + type: OpenTK.Core.Platform.ContextSwapMethod + content.vb: Public SwapMethod As ContextSwapMethod - uid: OpenTK.Core.Platform.ContextValues.Samples commentId: F:OpenTK.Core.Platform.ContextValues.Samples id: Samples @@ -304,7 +382,7 @@ items: repo: https://github.com/opentk/opentk.git id: Samples path: opentk/src/OpenTK.Core/Platform/ContextSettings.cs - startLine: 77 + startLine: 32 assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform @@ -313,236 +391,1029 @@ items: return: type: System.Int32 content.vb: Public Samples As Integer -references: -- uid: OpenTK.Core.Platform - commentId: N:OpenTK.Core.Platform - href: OpenTK.html - name: OpenTK.Core.Platform - nameWithType: OpenTK.Core.Platform - fullName: OpenTK.Core.Platform - spec.csharp: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform - name: Platform - href: OpenTK.Core.Platform.html - spec.vb: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform - name: Platform - href: OpenTK.Core.Platform.html -- uid: System.ValueType.Equals(System.Object) - commentId: M:System.ValueType.Equals(System.Object) - parent: System.ValueType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals - name: Equals(object) - nameWithType: ValueType.Equals(object) - fullName: System.ValueType.Equals(object) - nameWithType.vb: ValueType.Equals(Object) - fullName.vb: System.ValueType.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: System.ValueType.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.ValueType.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.ValueType.GetHashCode - commentId: M:System.ValueType.GetHashCode - parent: System.ValueType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - name: GetHashCode() - nameWithType: ValueType.GetHashCode() - fullName: System.ValueType.GetHashCode() - spec.csharp: - - uid: System.ValueType.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - - name: ( - - name: ) - spec.vb: - - uid: System.ValueType.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - - name: ( - - name: ) -- uid: System.ValueType.ToString - commentId: M:System.ValueType.ToString - parent: System.ValueType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - name: ToString() - nameWithType: ValueType.ToString() - fullName: System.ValueType.ToString() - spec.csharp: - - uid: System.ValueType.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - - name: ( - - name: ) - spec.vb: - - uid: System.ValueType.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - - name: ( - - name: ) -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.ValueType - commentId: T:System.ValueType +- uid: OpenTK.Core.Platform.ContextValues.DefaultValuesSelector(System.Collections.Generic.IReadOnlyList{OpenTK.Core.Platform.ContextValues},OpenTK.Core.Platform.ContextValues,OpenTK.Core.Utility.ILogger) + commentId: M:OpenTK.Core.Platform.ContextValues.DefaultValuesSelector(System.Collections.Generic.IReadOnlyList{OpenTK.Core.Platform.ContextValues},OpenTK.Core.Platform.ContextValues,OpenTK.Core.Utility.ILogger) + id: DefaultValuesSelector(System.Collections.Generic.IReadOnlyList{OpenTK.Core.Platform.ContextValues},OpenTK.Core.Platform.ContextValues,OpenTK.Core.Utility.ILogger) + parent: OpenTK.Core.Platform.ContextValues + langs: + - csharp + - vb + name: DefaultValuesSelector(IReadOnlyList, ContextValues, ILogger?) + nameWithType: ContextValues.DefaultValuesSelector(IReadOnlyList, ContextValues, ILogger?) + fullName: OpenTK.Core.Platform.ContextValues.DefaultValuesSelector(System.Collections.Generic.IReadOnlyList, OpenTK.Core.Platform.ContextValues, OpenTK.Core.Utility.ILogger?) + type: Method + source: + remote: + path: src/OpenTK.Core/Platform/ContextSettings.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: DefaultValuesSelector + path: opentk/src/OpenTK.Core/Platform/ContextSettings.cs + startLine: 58 + assemblies: + - OpenTK.Core + namespace: OpenTK.Core.Platform + summary: >- + Default context values selector. Prioritizes the requested values with a series of "relaxations" to find a close match.
+ + The relaxations are done in the following order: + +
  1. If no exact match is found try find a format with a larger number of color, depth, or stencil bits.
  2. If == false is requested, == true formats will be accepted.
  3. If == , any swap method will be accepted.
  4. If == true, accept == false formats.
  5. Accept any .
  6. Decrement by one at a time until 0 and see if any alternative sample counts are possible.
  7. Accept any .
  8. Allow one of color bits (, , , and ), , or to be lower than requested.
  9. Allow two of color bits (, , , and ), , or to be lower than requested.
  10. Relax all bit requirements.
  11. If all relaxations fail, select the first option in the list.
+ example: [] + syntax: + content: public static int DefaultValuesSelector(IReadOnlyList options, ContextValues requested, ILogger? logger) + parameters: + - id: options + type: System.Collections.Generic.IReadOnlyList{OpenTK.Core.Platform.ContextValues} + description: The possible context values. + - id: requested + type: OpenTK.Core.Platform.ContextValues + description: The requested context values. + - id: logger + type: OpenTK.Core.Utility.ILogger + description: A logger to use for logging. + return: + type: System.Int32 + description: The index of the selected "best match" context values. + content.vb: Public Shared Function DefaultValuesSelector(options As IReadOnlyList(Of ContextValues), requested As ContextValues, logger As ILogger) As Integer + overload: OpenTK.Core.Platform.ContextValues.DefaultValuesSelector* + nameWithType.vb: ContextValues.DefaultValuesSelector(IReadOnlyList(Of ContextValues), ContextValues, ILogger) + fullName.vb: OpenTK.Core.Platform.ContextValues.DefaultValuesSelector(System.Collections.Generic.IReadOnlyList(Of OpenTK.Core.Platform.ContextValues), OpenTK.Core.Platform.ContextValues, OpenTK.Core.Utility.ILogger) + name.vb: DefaultValuesSelector(IReadOnlyList(Of ContextValues), ContextValues, ILogger) +- uid: OpenTK.Core.Platform.ContextValues.IsEqualExcludingID(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues) + commentId: M:OpenTK.Core.Platform.ContextValues.IsEqualExcludingID(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues) + id: IsEqualExcludingID(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues) + parent: OpenTK.Core.Platform.ContextValues + langs: + - csharp + - vb + name: IsEqualExcludingID(ContextValues, ContextValues) + nameWithType: ContextValues.IsEqualExcludingID(ContextValues, ContextValues) + fullName: OpenTK.Core.Platform.ContextValues.IsEqualExcludingID(OpenTK.Core.Platform.ContextValues, OpenTK.Core.Platform.ContextValues) + type: Method + source: + remote: + path: src/OpenTK.Core/Platform/ContextSettings.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: IsEqualExcludingID + path: opentk/src/OpenTK.Core/Platform/ContextSettings.cs + startLine: 289 + assemblies: + - OpenTK.Core + namespace: OpenTK.Core.Platform + syntax: + content: public static bool IsEqualExcludingID(ContextValues option, ContextValues requested) + parameters: + - id: option + type: OpenTK.Core.Platform.ContextValues + - id: requested + type: OpenTK.Core.Platform.ContextValues + return: + type: System.Boolean + content.vb: Public Shared Function IsEqualExcludingID([option] As ContextValues, requested As ContextValues) As Boolean + overload: OpenTK.Core.Platform.ContextValues.IsEqualExcludingID* +- uid: OpenTK.Core.Platform.ContextValues.HasEqualColorBits(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues) + commentId: M:OpenTK.Core.Platform.ContextValues.HasEqualColorBits(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues) + id: HasEqualColorBits(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues) + parent: OpenTK.Core.Platform.ContextValues + langs: + - csharp + - vb + name: HasEqualColorBits(ContextValues, ContextValues) + nameWithType: ContextValues.HasEqualColorBits(ContextValues, ContextValues) + fullName: OpenTK.Core.Platform.ContextValues.HasEqualColorBits(OpenTK.Core.Platform.ContextValues, OpenTK.Core.Platform.ContextValues) + type: Method + source: + remote: + path: src/OpenTK.Core/Platform/ContextSettings.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: HasEqualColorBits + path: opentk/src/OpenTK.Core/Platform/ContextSettings.cs + startLine: 304 + assemblies: + - OpenTK.Core + namespace: OpenTK.Core.Platform + syntax: + content: public static bool HasEqualColorBits(ContextValues option, ContextValues requested) + parameters: + - id: option + type: OpenTK.Core.Platform.ContextValues + - id: requested + type: OpenTK.Core.Platform.ContextValues + return: + type: System.Boolean + content.vb: Public Shared Function HasEqualColorBits([option] As ContextValues, requested As ContextValues) As Boolean + overload: OpenTK.Core.Platform.ContextValues.HasEqualColorBits* +- uid: OpenTK.Core.Platform.ContextValues.HasGreaterOrEqualColorBits(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues) + commentId: M:OpenTK.Core.Platform.ContextValues.HasGreaterOrEqualColorBits(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues) + id: HasGreaterOrEqualColorBits(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues) + parent: OpenTK.Core.Platform.ContextValues + langs: + - csharp + - vb + name: HasGreaterOrEqualColorBits(ContextValues, ContextValues) + nameWithType: ContextValues.HasGreaterOrEqualColorBits(ContextValues, ContextValues) + fullName: OpenTK.Core.Platform.ContextValues.HasGreaterOrEqualColorBits(OpenTK.Core.Platform.ContextValues, OpenTK.Core.Platform.ContextValues) + type: Method + source: + remote: + path: src/OpenTK.Core/Platform/ContextSettings.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: HasGreaterOrEqualColorBits + path: opentk/src/OpenTK.Core/Platform/ContextSettings.cs + startLine: 312 + assemblies: + - OpenTK.Core + namespace: OpenTK.Core.Platform + syntax: + content: public static bool HasGreaterOrEqualColorBits(ContextValues option, ContextValues requested) + parameters: + - id: option + type: OpenTK.Core.Platform.ContextValues + - id: requested + type: OpenTK.Core.Platform.ContextValues + return: + type: System.Boolean + content.vb: Public Shared Function HasGreaterOrEqualColorBits([option] As ContextValues, requested As ContextValues) As Boolean + overload: OpenTK.Core.Platform.ContextValues.HasGreaterOrEqualColorBits* +- uid: OpenTK.Core.Platform.ContextValues.HasLessOrEqualColorBits(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues) + commentId: M:OpenTK.Core.Platform.ContextValues.HasLessOrEqualColorBits(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues) + id: HasLessOrEqualColorBits(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues) + parent: OpenTK.Core.Platform.ContextValues + langs: + - csharp + - vb + name: HasLessOrEqualColorBits(ContextValues, ContextValues) + nameWithType: ContextValues.HasLessOrEqualColorBits(ContextValues, ContextValues) + fullName: OpenTK.Core.Platform.ContextValues.HasLessOrEqualColorBits(OpenTK.Core.Platform.ContextValues, OpenTK.Core.Platform.ContextValues) + type: Method + source: + remote: + path: src/OpenTK.Core/Platform/ContextSettings.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: HasLessOrEqualColorBits + path: opentk/src/OpenTK.Core/Platform/ContextSettings.cs + startLine: 320 + assemblies: + - OpenTK.Core + namespace: OpenTK.Core.Platform + syntax: + content: public static bool HasLessOrEqualColorBits(ContextValues option, ContextValues requested) + parameters: + - id: option + type: OpenTK.Core.Platform.ContextValues + - id: requested + type: OpenTK.Core.Platform.ContextValues + return: + type: System.Boolean + content.vb: Public Shared Function HasLessOrEqualColorBits([option] As ContextValues, requested As ContextValues) As Boolean + overload: OpenTK.Core.Platform.ContextValues.HasLessOrEqualColorBits* +- uid: OpenTK.Core.Platform.ContextValues.HasEqualDepthBits(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues) + commentId: M:OpenTK.Core.Platform.ContextValues.HasEqualDepthBits(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues) + id: HasEqualDepthBits(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues) + parent: OpenTK.Core.Platform.ContextValues + langs: + - csharp + - vb + name: HasEqualDepthBits(ContextValues, ContextValues) + nameWithType: ContextValues.HasEqualDepthBits(ContextValues, ContextValues) + fullName: OpenTK.Core.Platform.ContextValues.HasEqualDepthBits(OpenTK.Core.Platform.ContextValues, OpenTK.Core.Platform.ContextValues) + type: Method + source: + remote: + path: src/OpenTK.Core/Platform/ContextSettings.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: HasEqualDepthBits + path: opentk/src/OpenTK.Core/Platform/ContextSettings.cs + startLine: 328 + assemblies: + - OpenTK.Core + namespace: OpenTK.Core.Platform + syntax: + content: public static bool HasEqualDepthBits(ContextValues option, ContextValues requested) + parameters: + - id: option + type: OpenTK.Core.Platform.ContextValues + - id: requested + type: OpenTK.Core.Platform.ContextValues + return: + type: System.Boolean + content.vb: Public Shared Function HasEqualDepthBits([option] As ContextValues, requested As ContextValues) As Boolean + overload: OpenTK.Core.Platform.ContextValues.HasEqualDepthBits* +- uid: OpenTK.Core.Platform.ContextValues.HasGreaterOrEqualDepthBits(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues) + commentId: M:OpenTK.Core.Platform.ContextValues.HasGreaterOrEqualDepthBits(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues) + id: HasGreaterOrEqualDepthBits(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues) + parent: OpenTK.Core.Platform.ContextValues + langs: + - csharp + - vb + name: HasGreaterOrEqualDepthBits(ContextValues, ContextValues) + nameWithType: ContextValues.HasGreaterOrEqualDepthBits(ContextValues, ContextValues) + fullName: OpenTK.Core.Platform.ContextValues.HasGreaterOrEqualDepthBits(OpenTK.Core.Platform.ContextValues, OpenTK.Core.Platform.ContextValues) + type: Method + source: + remote: + path: src/OpenTK.Core/Platform/ContextSettings.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: HasGreaterOrEqualDepthBits + path: opentk/src/OpenTK.Core/Platform/ContextSettings.cs + startLine: 333 + assemblies: + - OpenTK.Core + namespace: OpenTK.Core.Platform + syntax: + content: public static bool HasGreaterOrEqualDepthBits(ContextValues option, ContextValues requested) + parameters: + - id: option + type: OpenTK.Core.Platform.ContextValues + - id: requested + type: OpenTK.Core.Platform.ContextValues + return: + type: System.Boolean + content.vb: Public Shared Function HasGreaterOrEqualDepthBits([option] As ContextValues, requested As ContextValues) As Boolean + overload: OpenTK.Core.Platform.ContextValues.HasGreaterOrEqualDepthBits* +- uid: OpenTK.Core.Platform.ContextValues.HasLessOrEqualDepthBits(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues) + commentId: M:OpenTK.Core.Platform.ContextValues.HasLessOrEqualDepthBits(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues) + id: HasLessOrEqualDepthBits(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues) + parent: OpenTK.Core.Platform.ContextValues + langs: + - csharp + - vb + name: HasLessOrEqualDepthBits(ContextValues, ContextValues) + nameWithType: ContextValues.HasLessOrEqualDepthBits(ContextValues, ContextValues) + fullName: OpenTK.Core.Platform.ContextValues.HasLessOrEqualDepthBits(OpenTK.Core.Platform.ContextValues, OpenTK.Core.Platform.ContextValues) + type: Method + source: + remote: + path: src/OpenTK.Core/Platform/ContextSettings.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: HasLessOrEqualDepthBits + path: opentk/src/OpenTK.Core/Platform/ContextSettings.cs + startLine: 338 + assemblies: + - OpenTK.Core + namespace: OpenTK.Core.Platform + syntax: + content: public static bool HasLessOrEqualDepthBits(ContextValues option, ContextValues requested) + parameters: + - id: option + type: OpenTK.Core.Platform.ContextValues + - id: requested + type: OpenTK.Core.Platform.ContextValues + return: + type: System.Boolean + content.vb: Public Shared Function HasLessOrEqualDepthBits([option] As ContextValues, requested As ContextValues) As Boolean + overload: OpenTK.Core.Platform.ContextValues.HasLessOrEqualDepthBits* +- uid: OpenTK.Core.Platform.ContextValues.HasEqualStencilBits(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues) + commentId: M:OpenTK.Core.Platform.ContextValues.HasEqualStencilBits(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues) + id: HasEqualStencilBits(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues) + parent: OpenTK.Core.Platform.ContextValues + langs: + - csharp + - vb + name: HasEqualStencilBits(ContextValues, ContextValues) + nameWithType: ContextValues.HasEqualStencilBits(ContextValues, ContextValues) + fullName: OpenTK.Core.Platform.ContextValues.HasEqualStencilBits(OpenTK.Core.Platform.ContextValues, OpenTK.Core.Platform.ContextValues) + type: Method + source: + remote: + path: src/OpenTK.Core/Platform/ContextSettings.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: HasEqualStencilBits + path: opentk/src/OpenTK.Core/Platform/ContextSettings.cs + startLine: 343 + assemblies: + - OpenTK.Core + namespace: OpenTK.Core.Platform + syntax: + content: public static bool HasEqualStencilBits(ContextValues option, ContextValues requested) + parameters: + - id: option + type: OpenTK.Core.Platform.ContextValues + - id: requested + type: OpenTK.Core.Platform.ContextValues + return: + type: System.Boolean + content.vb: Public Shared Function HasEqualStencilBits([option] As ContextValues, requested As ContextValues) As Boolean + overload: OpenTK.Core.Platform.ContextValues.HasEqualStencilBits* +- uid: OpenTK.Core.Platform.ContextValues.HasGreaterOrEqualStencilBits(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues) + commentId: M:OpenTK.Core.Platform.ContextValues.HasGreaterOrEqualStencilBits(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues) + id: HasGreaterOrEqualStencilBits(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues) + parent: OpenTK.Core.Platform.ContextValues + langs: + - csharp + - vb + name: HasGreaterOrEqualStencilBits(ContextValues, ContextValues) + nameWithType: ContextValues.HasGreaterOrEqualStencilBits(ContextValues, ContextValues) + fullName: OpenTK.Core.Platform.ContextValues.HasGreaterOrEqualStencilBits(OpenTK.Core.Platform.ContextValues, OpenTK.Core.Platform.ContextValues) + type: Method + source: + remote: + path: src/OpenTK.Core/Platform/ContextSettings.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: HasGreaterOrEqualStencilBits + path: opentk/src/OpenTK.Core/Platform/ContextSettings.cs + startLine: 348 + assemblies: + - OpenTK.Core + namespace: OpenTK.Core.Platform + syntax: + content: public static bool HasGreaterOrEqualStencilBits(ContextValues option, ContextValues requested) + parameters: + - id: option + type: OpenTK.Core.Platform.ContextValues + - id: requested + type: OpenTK.Core.Platform.ContextValues + return: + type: System.Boolean + content.vb: Public Shared Function HasGreaterOrEqualStencilBits([option] As ContextValues, requested As ContextValues) As Boolean + overload: OpenTK.Core.Platform.ContextValues.HasGreaterOrEqualStencilBits* +- uid: OpenTK.Core.Platform.ContextValues.HasLessOrEqualStencilBits(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues) + commentId: M:OpenTK.Core.Platform.ContextValues.HasLessOrEqualStencilBits(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues) + id: HasLessOrEqualStencilBits(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues) + parent: OpenTK.Core.Platform.ContextValues + langs: + - csharp + - vb + name: HasLessOrEqualStencilBits(ContextValues, ContextValues) + nameWithType: ContextValues.HasLessOrEqualStencilBits(ContextValues, ContextValues) + fullName: OpenTK.Core.Platform.ContextValues.HasLessOrEqualStencilBits(OpenTK.Core.Platform.ContextValues, OpenTK.Core.Platform.ContextValues) + type: Method + source: + remote: + path: src/OpenTK.Core/Platform/ContextSettings.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: HasLessOrEqualStencilBits + path: opentk/src/OpenTK.Core/Platform/ContextSettings.cs + startLine: 353 + assemblies: + - OpenTK.Core + namespace: OpenTK.Core.Platform + syntax: + content: public static bool HasLessOrEqualStencilBits(ContextValues option, ContextValues requested) + parameters: + - id: option + type: OpenTK.Core.Platform.ContextValues + - id: requested + type: OpenTK.Core.Platform.ContextValues + return: + type: System.Boolean + content.vb: Public Shared Function HasLessOrEqualStencilBits([option] As ContextValues, requested As ContextValues) As Boolean + overload: OpenTK.Core.Platform.ContextValues.HasLessOrEqualStencilBits* +- uid: OpenTK.Core.Platform.ContextValues.HasEqualMSAA(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues) + commentId: M:OpenTK.Core.Platform.ContextValues.HasEqualMSAA(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues) + id: HasEqualMSAA(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues) + parent: OpenTK.Core.Platform.ContextValues + langs: + - csharp + - vb + name: HasEqualMSAA(ContextValues, ContextValues) + nameWithType: ContextValues.HasEqualMSAA(ContextValues, ContextValues) + fullName: OpenTK.Core.Platform.ContextValues.HasEqualMSAA(OpenTK.Core.Platform.ContextValues, OpenTK.Core.Platform.ContextValues) + type: Method + source: + remote: + path: src/OpenTK.Core/Platform/ContextSettings.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: HasEqualMSAA + path: opentk/src/OpenTK.Core/Platform/ContextSettings.cs + startLine: 358 + assemblies: + - OpenTK.Core + namespace: OpenTK.Core.Platform + syntax: + content: public static bool HasEqualMSAA(ContextValues option, ContextValues requested) + parameters: + - id: option + type: OpenTK.Core.Platform.ContextValues + - id: requested + type: OpenTK.Core.Platform.ContextValues + return: + type: System.Boolean + content.vb: Public Shared Function HasEqualMSAA([option] As ContextValues, requested As ContextValues) As Boolean + overload: OpenTK.Core.Platform.ContextValues.HasEqualMSAA* +- uid: OpenTK.Core.Platform.ContextValues.HasEqualDoubleBuffer(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues) + commentId: M:OpenTK.Core.Platform.ContextValues.HasEqualDoubleBuffer(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues) + id: HasEqualDoubleBuffer(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues) + parent: OpenTK.Core.Platform.ContextValues + langs: + - csharp + - vb + name: HasEqualDoubleBuffer(ContextValues, ContextValues) + nameWithType: ContextValues.HasEqualDoubleBuffer(ContextValues, ContextValues) + fullName: OpenTK.Core.Platform.ContextValues.HasEqualDoubleBuffer(OpenTK.Core.Platform.ContextValues, OpenTK.Core.Platform.ContextValues) + type: Method + source: + remote: + path: src/OpenTK.Core/Platform/ContextSettings.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: HasEqualDoubleBuffer + path: opentk/src/OpenTK.Core/Platform/ContextSettings.cs + startLine: 363 + assemblies: + - OpenTK.Core + namespace: OpenTK.Core.Platform + syntax: + content: public static bool HasEqualDoubleBuffer(ContextValues option, ContextValues requested) + parameters: + - id: option + type: OpenTK.Core.Platform.ContextValues + - id: requested + type: OpenTK.Core.Platform.ContextValues + return: + type: System.Boolean + content.vb: Public Shared Function HasEqualDoubleBuffer([option] As ContextValues, requested As ContextValues) As Boolean + overload: OpenTK.Core.Platform.ContextValues.HasEqualDoubleBuffer* +- uid: OpenTK.Core.Platform.ContextValues.HasEqualSRGB(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues) + commentId: M:OpenTK.Core.Platform.ContextValues.HasEqualSRGB(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues) + id: HasEqualSRGB(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues) + parent: OpenTK.Core.Platform.ContextValues + langs: + - csharp + - vb + name: HasEqualSRGB(ContextValues, ContextValues) + nameWithType: ContextValues.HasEqualSRGB(ContextValues, ContextValues) + fullName: OpenTK.Core.Platform.ContextValues.HasEqualSRGB(OpenTK.Core.Platform.ContextValues, OpenTK.Core.Platform.ContextValues) + type: Method + source: + remote: + path: src/OpenTK.Core/Platform/ContextSettings.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: HasEqualSRGB + path: opentk/src/OpenTK.Core/Platform/ContextSettings.cs + startLine: 368 + assemblies: + - OpenTK.Core + namespace: OpenTK.Core.Platform + syntax: + content: public static bool HasEqualSRGB(ContextValues option, ContextValues requested) + parameters: + - id: option + type: OpenTK.Core.Platform.ContextValues + - id: requested + type: OpenTK.Core.Platform.ContextValues + return: + type: System.Boolean + content.vb: Public Shared Function HasEqualSRGB([option] As ContextValues, requested As ContextValues) As Boolean + overload: OpenTK.Core.Platform.ContextValues.HasEqualSRGB* +- uid: OpenTK.Core.Platform.ContextValues.HasEqualPixelFormat(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues) + commentId: M:OpenTK.Core.Platform.ContextValues.HasEqualPixelFormat(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues) + id: HasEqualPixelFormat(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues) + parent: OpenTK.Core.Platform.ContextValues + langs: + - csharp + - vb + name: HasEqualPixelFormat(ContextValues, ContextValues) + nameWithType: ContextValues.HasEqualPixelFormat(ContextValues, ContextValues) + fullName: OpenTK.Core.Platform.ContextValues.HasEqualPixelFormat(OpenTK.Core.Platform.ContextValues, OpenTK.Core.Platform.ContextValues) + type: Method + source: + remote: + path: src/OpenTK.Core/Platform/ContextSettings.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: HasEqualPixelFormat + path: opentk/src/OpenTK.Core/Platform/ContextSettings.cs + startLine: 373 + assemblies: + - OpenTK.Core + namespace: OpenTK.Core.Platform + syntax: + content: public static bool HasEqualPixelFormat(ContextValues option, ContextValues requested) + parameters: + - id: option + type: OpenTK.Core.Platform.ContextValues + - id: requested + type: OpenTK.Core.Platform.ContextValues + return: + type: System.Boolean + content.vb: Public Shared Function HasEqualPixelFormat([option] As ContextValues, requested As ContextValues) As Boolean + overload: OpenTK.Core.Platform.ContextValues.HasEqualPixelFormat* +- uid: OpenTK.Core.Platform.ContextValues.HasEqualSwapMethod(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues) + commentId: M:OpenTK.Core.Platform.ContextValues.HasEqualSwapMethod(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues) + id: HasEqualSwapMethod(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues) + parent: OpenTK.Core.Platform.ContextValues + langs: + - csharp + - vb + name: HasEqualSwapMethod(ContextValues, ContextValues) + nameWithType: ContextValues.HasEqualSwapMethod(ContextValues, ContextValues) + fullName: OpenTK.Core.Platform.ContextValues.HasEqualSwapMethod(OpenTK.Core.Platform.ContextValues, OpenTK.Core.Platform.ContextValues) + type: Method + source: + remote: + path: src/OpenTK.Core/Platform/ContextSettings.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: HasEqualSwapMethod + path: opentk/src/OpenTK.Core/Platform/ContextSettings.cs + startLine: 378 + assemblies: + - OpenTK.Core + namespace: OpenTK.Core.Platform + syntax: + content: public static bool HasEqualSwapMethod(ContextValues option, ContextValues requested) + parameters: + - id: option + type: OpenTK.Core.Platform.ContextValues + - id: requested + type: OpenTK.Core.Platform.ContextValues + return: + type: System.Boolean + content.vb: Public Shared Function HasEqualSwapMethod([option] As ContextValues, requested As ContextValues) As Boolean + overload: OpenTK.Core.Platform.ContextValues.HasEqualSwapMethod* +- uid: OpenTK.Core.Platform.ContextValues.#ctor(System.UInt64,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Boolean,System.Boolean,OpenTK.Core.Platform.ContextPixelFormat,OpenTK.Core.Platform.ContextSwapMethod,System.Int32) + commentId: M:OpenTK.Core.Platform.ContextValues.#ctor(System.UInt64,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Boolean,System.Boolean,OpenTK.Core.Platform.ContextPixelFormat,OpenTK.Core.Platform.ContextSwapMethod,System.Int32) + id: '#ctor(System.UInt64,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Boolean,System.Boolean,OpenTK.Core.Platform.ContextPixelFormat,OpenTK.Core.Platform.ContextSwapMethod,System.Int32)' + parent: OpenTK.Core.Platform.ContextValues + langs: + - csharp + - vb + name: ContextValues(ulong, int, int, int, int, int, int, bool, bool, ContextPixelFormat, ContextSwapMethod, int) + nameWithType: ContextValues.ContextValues(ulong, int, int, int, int, int, int, bool, bool, ContextPixelFormat, ContextSwapMethod, int) + fullName: OpenTK.Core.Platform.ContextValues.ContextValues(ulong, int, int, int, int, int, int, bool, bool, OpenTK.Core.Platform.ContextPixelFormat, OpenTK.Core.Platform.ContextSwapMethod, int) + type: Constructor + source: + remote: + path: src/OpenTK.Core/Platform/ContextSettings.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: .ctor + path: opentk/src/OpenTK.Core/Platform/ContextSettings.cs + startLine: 383 + assemblies: + - OpenTK.Core + namespace: OpenTK.Core.Platform + syntax: + content: public ContextValues(ulong id, int redBits, int greenBits, int blueBits, int alphaBits, int depthBits, int stencilBits, bool doubleBuffered, bool sRGBFramebuffer, ContextPixelFormat pixelFormat, ContextSwapMethod swapMethod, int samples) + parameters: + - id: id + type: System.UInt64 + - id: redBits + type: System.Int32 + - id: greenBits + type: System.Int32 + - id: blueBits + type: System.Int32 + - id: alphaBits + type: System.Int32 + - id: depthBits + type: System.Int32 + - id: stencilBits + type: System.Int32 + - id: doubleBuffered + type: System.Boolean + - id: sRGBFramebuffer + type: System.Boolean + - id: pixelFormat + type: OpenTK.Core.Platform.ContextPixelFormat + - id: swapMethod + type: OpenTK.Core.Platform.ContextSwapMethod + - id: samples + type: System.Int32 + content.vb: Public Sub New(id As ULong, redBits As Integer, greenBits As Integer, blueBits As Integer, alphaBits As Integer, depthBits As Integer, stencilBits As Integer, doubleBuffered As Boolean, sRGBFramebuffer As Boolean, pixelFormat As ContextPixelFormat, swapMethod As ContextSwapMethod, samples As Integer) + overload: OpenTK.Core.Platform.ContextValues.#ctor* + nameWithType.vb: ContextValues.New(ULong, Integer, Integer, Integer, Integer, Integer, Integer, Boolean, Boolean, ContextPixelFormat, ContextSwapMethod, Integer) + fullName.vb: OpenTK.Core.Platform.ContextValues.New(ULong, Integer, Integer, Integer, Integer, Integer, Integer, Boolean, Boolean, OpenTK.Core.Platform.ContextPixelFormat, OpenTK.Core.Platform.ContextSwapMethod, Integer) + name.vb: New(ULong, Integer, Integer, Integer, Integer, Integer, Integer, Boolean, Boolean, ContextPixelFormat, ContextSwapMethod, Integer) +- uid: OpenTK.Core.Platform.ContextValues.Equals(System.Object) + commentId: M:OpenTK.Core.Platform.ContextValues.Equals(System.Object) + id: Equals(System.Object) + parent: OpenTK.Core.Platform.ContextValues + langs: + - csharp + - vb + name: Equals(object?) + nameWithType: ContextValues.Equals(object?) + fullName: OpenTK.Core.Platform.ContextValues.Equals(object?) + type: Method + source: + remote: + path: src/OpenTK.Core/Platform/ContextSettings.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: Equals + path: opentk/src/OpenTK.Core/Platform/ContextSettings.cs + startLine: 399 + assemblies: + - OpenTK.Core + namespace: OpenTK.Core.Platform + summary: Indicates whether this instance and a specified object are equal. + example: [] + syntax: + content: public override bool Equals(object? obj) + parameters: + - id: obj + type: System.Object + description: The object to compare with the current instance. + return: + type: System.Boolean + description: true if obj and this instance are the same type and represent the same value; otherwise, false. + content.vb: Public Overrides Function Equals(obj As Object) As Boolean + overridden: System.ValueType.Equals(System.Object) + overload: OpenTK.Core.Platform.ContextValues.Equals* + nameWithType.vb: ContextValues.Equals(Object) + fullName.vb: OpenTK.Core.Platform.ContextValues.Equals(Object) + name.vb: Equals(Object) +- uid: OpenTK.Core.Platform.ContextValues.Equals(OpenTK.Core.Platform.ContextValues) + commentId: M:OpenTK.Core.Platform.ContextValues.Equals(OpenTK.Core.Platform.ContextValues) + id: Equals(OpenTK.Core.Platform.ContextValues) + parent: OpenTK.Core.Platform.ContextValues + langs: + - csharp + - vb + name: Equals(ContextValues) + nameWithType: ContextValues.Equals(ContextValues) + fullName: OpenTK.Core.Platform.ContextValues.Equals(OpenTK.Core.Platform.ContextValues) + type: Method + source: + remote: + path: src/OpenTK.Core/Platform/ContextSettings.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: Equals + path: opentk/src/OpenTK.Core/Platform/ContextSettings.cs + startLine: 404 + assemblies: + - OpenTK.Core + namespace: OpenTK.Core.Platform + summary: Indicates whether the current object is equal to another object of the same type. + example: [] + syntax: + content: public bool Equals(ContextValues other) + parameters: + - id: other + type: OpenTK.Core.Platform.ContextValues + description: An object to compare with this object. + return: + type: System.Boolean + description: true if the current object is equal to the other parameter; otherwise, false. + content.vb: Public Function Equals(other As ContextValues) As Boolean + overload: OpenTK.Core.Platform.ContextValues.Equals* + implements: + - System.IEquatable{OpenTK.Core.Platform.ContextValues}.Equals(OpenTK.Core.Platform.ContextValues) +- uid: OpenTK.Core.Platform.ContextValues.GetHashCode + commentId: M:OpenTK.Core.Platform.ContextValues.GetHashCode + id: GetHashCode + parent: OpenTK.Core.Platform.ContextValues + langs: + - csharp + - vb + name: GetHashCode() + nameWithType: ContextValues.GetHashCode() + fullName: OpenTK.Core.Platform.ContextValues.GetHashCode() + type: Method + source: + remote: + path: src/OpenTK.Core/Platform/ContextSettings.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: GetHashCode + path: opentk/src/OpenTK.Core/Platform/ContextSettings.cs + startLine: 420 + assemblies: + - OpenTK.Core + namespace: OpenTK.Core.Platform + summary: Returns the hash code for this instance. + example: [] + syntax: + content: public override int GetHashCode() + return: + type: System.Int32 + description: A 32-bit signed integer that is the hash code for this instance. + content.vb: Public Overrides Function GetHashCode() As Integer + overridden: System.ValueType.GetHashCode + overload: OpenTK.Core.Platform.ContextValues.GetHashCode* +- uid: OpenTK.Core.Platform.ContextValues.op_Equality(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues) + commentId: M:OpenTK.Core.Platform.ContextValues.op_Equality(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues) + id: op_Equality(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues) + parent: OpenTK.Core.Platform.ContextValues + langs: + - csharp + - vb + name: operator ==(ContextValues, ContextValues) + nameWithType: ContextValues.operator ==(ContextValues, ContextValues) + fullName: OpenTK.Core.Platform.ContextValues.operator ==(OpenTK.Core.Platform.ContextValues, OpenTK.Core.Platform.ContextValues) + type: Operator + source: + remote: + path: src/OpenTK.Core/Platform/ContextSettings.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: op_Equality + path: opentk/src/OpenTK.Core/Platform/ContextSettings.cs + startLine: 438 + assemblies: + - OpenTK.Core + namespace: OpenTK.Core.Platform + syntax: + content: public static bool operator ==(ContextValues left, ContextValues right) + parameters: + - id: left + type: OpenTK.Core.Platform.ContextValues + - id: right + type: OpenTK.Core.Platform.ContextValues + return: + type: System.Boolean + content.vb: Public Shared Operator =(left As ContextValues, right As ContextValues) As Boolean + overload: OpenTK.Core.Platform.ContextValues.op_Equality* + nameWithType.vb: ContextValues.=(ContextValues, ContextValues) + fullName.vb: OpenTK.Core.Platform.ContextValues.=(OpenTK.Core.Platform.ContextValues, OpenTK.Core.Platform.ContextValues) + name.vb: =(ContextValues, ContextValues) +- uid: OpenTK.Core.Platform.ContextValues.op_Inequality(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues) + commentId: M:OpenTK.Core.Platform.ContextValues.op_Inequality(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues) + id: op_Inequality(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues) + parent: OpenTK.Core.Platform.ContextValues + langs: + - csharp + - vb + name: operator !=(ContextValues, ContextValues) + nameWithType: ContextValues.operator !=(ContextValues, ContextValues) + fullName: OpenTK.Core.Platform.ContextValues.operator !=(OpenTK.Core.Platform.ContextValues, OpenTK.Core.Platform.ContextValues) + type: Operator + source: + remote: + path: src/OpenTK.Core/Platform/ContextSettings.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: op_Inequality + path: opentk/src/OpenTK.Core/Platform/ContextSettings.cs + startLine: 443 + assemblies: + - OpenTK.Core + namespace: OpenTK.Core.Platform + syntax: + content: public static bool operator !=(ContextValues left, ContextValues right) + parameters: + - id: left + type: OpenTK.Core.Platform.ContextValues + - id: right + type: OpenTK.Core.Platform.ContextValues + return: + type: System.Boolean + content.vb: Public Shared Operator <>(left As ContextValues, right As ContextValues) As Boolean + overload: OpenTK.Core.Platform.ContextValues.op_Inequality* + nameWithType.vb: ContextValues.<>(ContextValues, ContextValues) + fullName.vb: OpenTK.Core.Platform.ContextValues.<>(OpenTK.Core.Platform.ContextValues, OpenTK.Core.Platform.ContextValues) + name.vb: <>(ContextValues, ContextValues) +- uid: OpenTK.Core.Platform.ContextValues.ToString + commentId: M:OpenTK.Core.Platform.ContextValues.ToString + id: ToString + parent: OpenTK.Core.Platform.ContextValues + langs: + - csharp + - vb + name: ToString() + nameWithType: ContextValues.ToString() + fullName: OpenTK.Core.Platform.ContextValues.ToString() + type: Method + source: + remote: + path: src/OpenTK.Core/Platform/ContextSettings.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: ToString + path: opentk/src/OpenTK.Core/Platform/ContextSettings.cs + startLine: 448 + assemblies: + - OpenTK.Core + namespace: OpenTK.Core.Platform + summary: Returns the fully qualified type name of this instance. + example: [] + syntax: + content: public override readonly string ToString() + return: + type: System.String + description: The fully qualified type name. + content.vb: Public Overrides Function ToString() As String + overridden: System.ValueType.ToString + overload: OpenTK.Core.Platform.ContextValues.ToString* +references: +- uid: OpenTK.Core.Platform + commentId: N:OpenTK.Core.Platform + href: OpenTK.html + name: OpenTK.Core.Platform + nameWithType: OpenTK.Core.Platform + fullName: OpenTK.Core.Platform + spec.csharp: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Core + name: Core + href: OpenTK.Core.html + - name: . + - uid: OpenTK.Core.Platform + name: Platform + href: OpenTK.Core.Platform.html + spec.vb: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Core + name: Core + href: OpenTK.Core.html + - name: . + - uid: OpenTK.Core.Platform + name: Platform + href: OpenTK.Core.Platform.html +- uid: System.IEquatable{OpenTK.Core.Platform.ContextValues} + commentId: T:System.IEquatable{OpenTK.Core.Platform.ContextValues} parent: System + definition: System.IEquatable`1 + href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 + name: IEquatable + nameWithType: IEquatable + fullName: System.IEquatable + nameWithType.vb: IEquatable(Of ContextValues) + fullName.vb: System.IEquatable(Of OpenTK.Core.Platform.ContextValues) + name.vb: IEquatable(Of ContextValues) + spec.csharp: + - uid: System.IEquatable`1 + name: IEquatable + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 + - name: < + - uid: OpenTK.Core.Platform.ContextValues + name: ContextValues + href: OpenTK.Core.Platform.ContextValues.html + - name: '>' + spec.vb: + - uid: System.IEquatable`1 + name: IEquatable + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 + - name: ( + - name: Of + - name: " " + - uid: OpenTK.Core.Platform.ContextValues + name: ContextValues + href: OpenTK.Core.Platform.ContextValues.html + - name: ) +- uid: System.Object.Equals(System.Object,System.Object) + commentId: M:System.Object.Equals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + name: Equals(object, object) + nameWithType: object.Equals(object, object) + fullName: object.Equals(object, object) + nameWithType.vb: Object.Equals(Object, Object) + fullName.vb: Object.Equals(Object, Object) + name.vb: Equals(Object, Object) + spec.csharp: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.GetType + commentId: M:System.Object.GetType + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + name: GetType() + nameWithType: object.GetType() + fullName: object.GetType() + nameWithType.vb: Object.GetType() + fullName.vb: Object.GetType() + spec.csharp: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) +- uid: System.Object.ReferenceEquals(System.Object,System.Object) + commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + name: ReferenceEquals(object, object) + nameWithType: object.ReferenceEquals(object, object) + fullName: object.ReferenceEquals(object, object) + nameWithType.vb: Object.ReferenceEquals(Object, Object) + fullName.vb: Object.ReferenceEquals(Object, Object) + name.vb: ReferenceEquals(Object, Object) + spec.csharp: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.IEquatable`1 + commentId: T:System.IEquatable`1 isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype - name: ValueType - nameWithType: ValueType - fullName: System.ValueType + href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 + name: IEquatable + nameWithType: IEquatable + fullName: System.IEquatable + nameWithType.vb: IEquatable(Of T) + fullName.vb: System.IEquatable(Of T) + name.vb: IEquatable(Of T) + spec.csharp: + - uid: System.IEquatable`1 + name: IEquatable + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 + - name: < + - name: T + - name: '>' + spec.vb: + - uid: System.IEquatable`1 + name: IEquatable + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 + - name: ( + - name: Of + - name: " " + - name: T + - name: ) +- uid: System + commentId: N:System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System + nameWithType: System + fullName: System - uid: System.Object commentId: T:System.Object parent: System @@ -554,13 +1425,17 @@ references: nameWithType.vb: Object fullName.vb: Object name.vb: Object -- uid: System - commentId: N:System +- uid: System.UInt64 + commentId: T:System.UInt64 + parent: System isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System + href: https://learn.microsoft.com/dotnet/api/system.uint64 + name: ulong + nameWithType: ulong + fullName: ulong + nameWithType.vb: ULong + fullName.vb: ULong + name.vb: ULong - uid: System.Int32 commentId: T:System.Int32 parent: System @@ -583,3 +1458,529 @@ references: nameWithType.vb: Boolean fullName.vb: Boolean name.vb: Boolean +- uid: OpenTK.Core.Platform.ContextPixelFormat + commentId: T:OpenTK.Core.Platform.ContextPixelFormat + parent: OpenTK.Core.Platform + href: OpenTK.Core.Platform.ContextPixelFormat.html + name: ContextPixelFormat + nameWithType: ContextPixelFormat + fullName: OpenTK.Core.Platform.ContextPixelFormat +- uid: OpenTK.Core.Platform.ContextSwapMethod + commentId: T:OpenTK.Core.Platform.ContextSwapMethod + parent: OpenTK.Core.Platform + href: OpenTK.Core.Platform.ContextSwapMethod.html + name: ContextSwapMethod + nameWithType: ContextSwapMethod + fullName: OpenTK.Core.Platform.ContextSwapMethod +- uid: OpenTK.Core.Platform.ContextValues.SRGBFramebuffer + commentId: F:OpenTK.Core.Platform.ContextValues.SRGBFramebuffer + href: OpenTK.Core.Platform.ContextValues.html#OpenTK_Core_Platform_ContextValues_SRGBFramebuffer + name: SRGBFramebuffer + nameWithType: ContextValues.SRGBFramebuffer + fullName: OpenTK.Core.Platform.ContextValues.SRGBFramebuffer +- uid: OpenTK.Core.Platform.ContextValues.SwapMethod + commentId: F:OpenTK.Core.Platform.ContextValues.SwapMethod + href: OpenTK.Core.Platform.ContextValues.html#OpenTK_Core_Platform_ContextValues_SwapMethod + name: SwapMethod + nameWithType: ContextValues.SwapMethod + fullName: OpenTK.Core.Platform.ContextValues.SwapMethod +- uid: OpenTK.Core.Platform.ContextSwapMethod.Undefined + commentId: F:OpenTK.Core.Platform.ContextSwapMethod.Undefined + href: OpenTK.Core.Platform.ContextSwapMethod.html#OpenTK_Core_Platform_ContextSwapMethod_Undefined + name: Undefined + nameWithType: ContextSwapMethod.Undefined + fullName: OpenTK.Core.Platform.ContextSwapMethod.Undefined +- uid: OpenTK.Core.Platform.ContextValues.PixelFormat + commentId: F:OpenTK.Core.Platform.ContextValues.PixelFormat + href: OpenTK.Core.Platform.ContextValues.html#OpenTK_Core_Platform_ContextValues_PixelFormat + name: PixelFormat + nameWithType: ContextValues.PixelFormat + fullName: OpenTK.Core.Platform.ContextValues.PixelFormat +- uid: OpenTK.Core.Platform.ContextValues.Samples + commentId: F:OpenTK.Core.Platform.ContextValues.Samples + href: OpenTK.Core.Platform.ContextValues.html#OpenTK_Core_Platform_ContextValues_Samples + name: Samples + nameWithType: ContextValues.Samples + fullName: OpenTK.Core.Platform.ContextValues.Samples +- uid: OpenTK.Core.Platform.ContextValues.RedBits + commentId: F:OpenTK.Core.Platform.ContextValues.RedBits + href: OpenTK.Core.Platform.ContextValues.html#OpenTK_Core_Platform_ContextValues_RedBits + name: RedBits + nameWithType: ContextValues.RedBits + fullName: OpenTK.Core.Platform.ContextValues.RedBits +- uid: OpenTK.Core.Platform.ContextValues.GreenBits + commentId: F:OpenTK.Core.Platform.ContextValues.GreenBits + href: OpenTK.Core.Platform.ContextValues.html#OpenTK_Core_Platform_ContextValues_GreenBits + name: GreenBits + nameWithType: ContextValues.GreenBits + fullName: OpenTK.Core.Platform.ContextValues.GreenBits +- uid: OpenTK.Core.Platform.ContextValues.BlueBits + commentId: F:OpenTK.Core.Platform.ContextValues.BlueBits + href: OpenTK.Core.Platform.ContextValues.html#OpenTK_Core_Platform_ContextValues_BlueBits + name: BlueBits + nameWithType: ContextValues.BlueBits + fullName: OpenTK.Core.Platform.ContextValues.BlueBits +- uid: OpenTK.Core.Platform.ContextValues.AlphaBits + commentId: F:OpenTK.Core.Platform.ContextValues.AlphaBits + href: OpenTK.Core.Platform.ContextValues.html#OpenTK_Core_Platform_ContextValues_AlphaBits + name: AlphaBits + nameWithType: ContextValues.AlphaBits + fullName: OpenTK.Core.Platform.ContextValues.AlphaBits +- uid: OpenTK.Core.Platform.ContextValues.DepthBits + commentId: F:OpenTK.Core.Platform.ContextValues.DepthBits + href: OpenTK.Core.Platform.ContextValues.html#OpenTK_Core_Platform_ContextValues_DepthBits + name: DepthBits + nameWithType: ContextValues.DepthBits + fullName: OpenTK.Core.Platform.ContextValues.DepthBits +- uid: OpenTK.Core.Platform.ContextValues.StencilBits + commentId: F:OpenTK.Core.Platform.ContextValues.StencilBits + href: OpenTK.Core.Platform.ContextValues.html#OpenTK_Core_Platform_ContextValues_StencilBits + name: StencilBits + nameWithType: ContextValues.StencilBits + fullName: OpenTK.Core.Platform.ContextValues.StencilBits +- uid: OpenTK.Core.Platform.ContextValues.DefaultValuesSelector* + commentId: Overload:OpenTK.Core.Platform.ContextValues.DefaultValuesSelector + href: OpenTK.Core.Platform.ContextValues.html#OpenTK_Core_Platform_ContextValues_DefaultValuesSelector_System_Collections_Generic_IReadOnlyList_OpenTK_Core_Platform_ContextValues__OpenTK_Core_Platform_ContextValues_OpenTK_Core_Utility_ILogger_ + name: DefaultValuesSelector + nameWithType: ContextValues.DefaultValuesSelector + fullName: OpenTK.Core.Platform.ContextValues.DefaultValuesSelector +- uid: System.Collections.Generic.IReadOnlyList{OpenTK.Core.Platform.ContextValues} + commentId: T:System.Collections.Generic.IReadOnlyList{OpenTK.Core.Platform.ContextValues} + parent: System.Collections.Generic + definition: System.Collections.Generic.IReadOnlyList`1 + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 + name: IReadOnlyList + nameWithType: IReadOnlyList + fullName: System.Collections.Generic.IReadOnlyList + nameWithType.vb: IReadOnlyList(Of ContextValues) + fullName.vb: System.Collections.Generic.IReadOnlyList(Of OpenTK.Core.Platform.ContextValues) + name.vb: IReadOnlyList(Of ContextValues) + spec.csharp: + - uid: System.Collections.Generic.IReadOnlyList`1 + name: IReadOnlyList + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 + - name: < + - uid: OpenTK.Core.Platform.ContextValues + name: ContextValues + href: OpenTK.Core.Platform.ContextValues.html + - name: '>' + spec.vb: + - uid: System.Collections.Generic.IReadOnlyList`1 + name: IReadOnlyList + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 + - name: ( + - name: Of + - name: " " + - uid: OpenTK.Core.Platform.ContextValues + name: ContextValues + href: OpenTK.Core.Platform.ContextValues.html + - name: ) +- uid: OpenTK.Core.Platform.ContextValues + commentId: T:OpenTK.Core.Platform.ContextValues + parent: OpenTK.Core.Platform + href: OpenTK.Core.Platform.ContextValues.html + name: ContextValues + nameWithType: ContextValues + fullName: OpenTK.Core.Platform.ContextValues +- uid: OpenTK.Core.Utility.ILogger + commentId: T:OpenTK.Core.Utility.ILogger + parent: OpenTK.Core.Utility + href: OpenTK.Core.Utility.ILogger.html + name: ILogger + nameWithType: ILogger + fullName: OpenTK.Core.Utility.ILogger +- uid: System.Collections.Generic.IReadOnlyList`1 + commentId: T:System.Collections.Generic.IReadOnlyList`1 + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 + name: IReadOnlyList + nameWithType: IReadOnlyList + fullName: System.Collections.Generic.IReadOnlyList + nameWithType.vb: IReadOnlyList(Of T) + fullName.vb: System.Collections.Generic.IReadOnlyList(Of T) + name.vb: IReadOnlyList(Of T) + spec.csharp: + - uid: System.Collections.Generic.IReadOnlyList`1 + name: IReadOnlyList + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 + - name: < + - name: T + - name: '>' + spec.vb: + - uid: System.Collections.Generic.IReadOnlyList`1 + name: IReadOnlyList + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 + - name: ( + - name: Of + - name: " " + - name: T + - name: ) +- uid: System.Collections.Generic + commentId: N:System.Collections.Generic + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System.Collections.Generic + nameWithType: System.Collections.Generic + fullName: System.Collections.Generic + spec.csharp: + - uid: System + name: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + - name: . + - uid: System.Collections + name: Collections + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections + - name: . + - uid: System.Collections.Generic + name: Generic + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic + spec.vb: + - uid: System + name: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + - name: . + - uid: System.Collections + name: Collections + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections + - name: . + - uid: System.Collections.Generic + name: Generic + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic +- uid: OpenTK.Core.Utility + commentId: N:OpenTK.Core.Utility + href: OpenTK.html + name: OpenTK.Core.Utility + nameWithType: OpenTK.Core.Utility + fullName: OpenTK.Core.Utility + spec.csharp: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Core + name: Core + href: OpenTK.Core.html + - name: . + - uid: OpenTK.Core.Utility + name: Utility + href: OpenTK.Core.Utility.html + spec.vb: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Core + name: Core + href: OpenTK.Core.html + - name: . + - uid: OpenTK.Core.Utility + name: Utility + href: OpenTK.Core.Utility.html +- uid: OpenTK.Core.Platform.ContextValues.IsEqualExcludingID* + commentId: Overload:OpenTK.Core.Platform.ContextValues.IsEqualExcludingID + href: OpenTK.Core.Platform.ContextValues.html#OpenTK_Core_Platform_ContextValues_IsEqualExcludingID_OpenTK_Core_Platform_ContextValues_OpenTK_Core_Platform_ContextValues_ + name: IsEqualExcludingID + nameWithType: ContextValues.IsEqualExcludingID + fullName: OpenTK.Core.Platform.ContextValues.IsEqualExcludingID +- uid: OpenTK.Core.Platform.ContextValues.HasEqualColorBits* + commentId: Overload:OpenTK.Core.Platform.ContextValues.HasEqualColorBits + href: OpenTK.Core.Platform.ContextValues.html#OpenTK_Core_Platform_ContextValues_HasEqualColorBits_OpenTK_Core_Platform_ContextValues_OpenTK_Core_Platform_ContextValues_ + name: HasEqualColorBits + nameWithType: ContextValues.HasEqualColorBits + fullName: OpenTK.Core.Platform.ContextValues.HasEqualColorBits +- uid: OpenTK.Core.Platform.ContextValues.HasGreaterOrEqualColorBits* + commentId: Overload:OpenTK.Core.Platform.ContextValues.HasGreaterOrEqualColorBits + href: OpenTK.Core.Platform.ContextValues.html#OpenTK_Core_Platform_ContextValues_HasGreaterOrEqualColorBits_OpenTK_Core_Platform_ContextValues_OpenTK_Core_Platform_ContextValues_ + name: HasGreaterOrEqualColorBits + nameWithType: ContextValues.HasGreaterOrEqualColorBits + fullName: OpenTK.Core.Platform.ContextValues.HasGreaterOrEqualColorBits +- uid: OpenTK.Core.Platform.ContextValues.HasLessOrEqualColorBits* + commentId: Overload:OpenTK.Core.Platform.ContextValues.HasLessOrEqualColorBits + href: OpenTK.Core.Platform.ContextValues.html#OpenTK_Core_Platform_ContextValues_HasLessOrEqualColorBits_OpenTK_Core_Platform_ContextValues_OpenTK_Core_Platform_ContextValues_ + name: HasLessOrEqualColorBits + nameWithType: ContextValues.HasLessOrEqualColorBits + fullName: OpenTK.Core.Platform.ContextValues.HasLessOrEqualColorBits +- uid: OpenTK.Core.Platform.ContextValues.HasEqualDepthBits* + commentId: Overload:OpenTK.Core.Platform.ContextValues.HasEqualDepthBits + href: OpenTK.Core.Platform.ContextValues.html#OpenTK_Core_Platform_ContextValues_HasEqualDepthBits_OpenTK_Core_Platform_ContextValues_OpenTK_Core_Platform_ContextValues_ + name: HasEqualDepthBits + nameWithType: ContextValues.HasEqualDepthBits + fullName: OpenTK.Core.Platform.ContextValues.HasEqualDepthBits +- uid: OpenTK.Core.Platform.ContextValues.HasGreaterOrEqualDepthBits* + commentId: Overload:OpenTK.Core.Platform.ContextValues.HasGreaterOrEqualDepthBits + href: OpenTK.Core.Platform.ContextValues.html#OpenTK_Core_Platform_ContextValues_HasGreaterOrEqualDepthBits_OpenTK_Core_Platform_ContextValues_OpenTK_Core_Platform_ContextValues_ + name: HasGreaterOrEqualDepthBits + nameWithType: ContextValues.HasGreaterOrEqualDepthBits + fullName: OpenTK.Core.Platform.ContextValues.HasGreaterOrEqualDepthBits +- uid: OpenTK.Core.Platform.ContextValues.HasLessOrEqualDepthBits* + commentId: Overload:OpenTK.Core.Platform.ContextValues.HasLessOrEqualDepthBits + href: OpenTK.Core.Platform.ContextValues.html#OpenTK_Core_Platform_ContextValues_HasLessOrEqualDepthBits_OpenTK_Core_Platform_ContextValues_OpenTK_Core_Platform_ContextValues_ + name: HasLessOrEqualDepthBits + nameWithType: ContextValues.HasLessOrEqualDepthBits + fullName: OpenTK.Core.Platform.ContextValues.HasLessOrEqualDepthBits +- uid: OpenTK.Core.Platform.ContextValues.HasEqualStencilBits* + commentId: Overload:OpenTK.Core.Platform.ContextValues.HasEqualStencilBits + href: OpenTK.Core.Platform.ContextValues.html#OpenTK_Core_Platform_ContextValues_HasEqualStencilBits_OpenTK_Core_Platform_ContextValues_OpenTK_Core_Platform_ContextValues_ + name: HasEqualStencilBits + nameWithType: ContextValues.HasEqualStencilBits + fullName: OpenTK.Core.Platform.ContextValues.HasEqualStencilBits +- uid: OpenTK.Core.Platform.ContextValues.HasGreaterOrEqualStencilBits* + commentId: Overload:OpenTK.Core.Platform.ContextValues.HasGreaterOrEqualStencilBits + href: OpenTK.Core.Platform.ContextValues.html#OpenTK_Core_Platform_ContextValues_HasGreaterOrEqualStencilBits_OpenTK_Core_Platform_ContextValues_OpenTK_Core_Platform_ContextValues_ + name: HasGreaterOrEqualStencilBits + nameWithType: ContextValues.HasGreaterOrEqualStencilBits + fullName: OpenTK.Core.Platform.ContextValues.HasGreaterOrEqualStencilBits +- uid: OpenTK.Core.Platform.ContextValues.HasLessOrEqualStencilBits* + commentId: Overload:OpenTK.Core.Platform.ContextValues.HasLessOrEqualStencilBits + href: OpenTK.Core.Platform.ContextValues.html#OpenTK_Core_Platform_ContextValues_HasLessOrEqualStencilBits_OpenTK_Core_Platform_ContextValues_OpenTK_Core_Platform_ContextValues_ + name: HasLessOrEqualStencilBits + nameWithType: ContextValues.HasLessOrEqualStencilBits + fullName: OpenTK.Core.Platform.ContextValues.HasLessOrEqualStencilBits +- uid: OpenTK.Core.Platform.ContextValues.HasEqualMSAA* + commentId: Overload:OpenTK.Core.Platform.ContextValues.HasEqualMSAA + href: OpenTK.Core.Platform.ContextValues.html#OpenTK_Core_Platform_ContextValues_HasEqualMSAA_OpenTK_Core_Platform_ContextValues_OpenTK_Core_Platform_ContextValues_ + name: HasEqualMSAA + nameWithType: ContextValues.HasEqualMSAA + fullName: OpenTK.Core.Platform.ContextValues.HasEqualMSAA +- uid: OpenTK.Core.Platform.ContextValues.HasEqualDoubleBuffer* + commentId: Overload:OpenTK.Core.Platform.ContextValues.HasEqualDoubleBuffer + href: OpenTK.Core.Platform.ContextValues.html#OpenTK_Core_Platform_ContextValues_HasEqualDoubleBuffer_OpenTK_Core_Platform_ContextValues_OpenTK_Core_Platform_ContextValues_ + name: HasEqualDoubleBuffer + nameWithType: ContextValues.HasEqualDoubleBuffer + fullName: OpenTK.Core.Platform.ContextValues.HasEqualDoubleBuffer +- uid: OpenTK.Core.Platform.ContextValues.HasEqualSRGB* + commentId: Overload:OpenTK.Core.Platform.ContextValues.HasEqualSRGB + href: OpenTK.Core.Platform.ContextValues.html#OpenTK_Core_Platform_ContextValues_HasEqualSRGB_OpenTK_Core_Platform_ContextValues_OpenTK_Core_Platform_ContextValues_ + name: HasEqualSRGB + nameWithType: ContextValues.HasEqualSRGB + fullName: OpenTK.Core.Platform.ContextValues.HasEqualSRGB +- uid: OpenTK.Core.Platform.ContextValues.HasEqualPixelFormat* + commentId: Overload:OpenTK.Core.Platform.ContextValues.HasEqualPixelFormat + href: OpenTK.Core.Platform.ContextValues.html#OpenTK_Core_Platform_ContextValues_HasEqualPixelFormat_OpenTK_Core_Platform_ContextValues_OpenTK_Core_Platform_ContextValues_ + name: HasEqualPixelFormat + nameWithType: ContextValues.HasEqualPixelFormat + fullName: OpenTK.Core.Platform.ContextValues.HasEqualPixelFormat +- uid: OpenTK.Core.Platform.ContextValues.HasEqualSwapMethod* + commentId: Overload:OpenTK.Core.Platform.ContextValues.HasEqualSwapMethod + href: OpenTK.Core.Platform.ContextValues.html#OpenTK_Core_Platform_ContextValues_HasEqualSwapMethod_OpenTK_Core_Platform_ContextValues_OpenTK_Core_Platform_ContextValues_ + name: HasEqualSwapMethod + nameWithType: ContextValues.HasEqualSwapMethod + fullName: OpenTK.Core.Platform.ContextValues.HasEqualSwapMethod +- uid: OpenTK.Core.Platform.ContextValues.#ctor* + commentId: Overload:OpenTK.Core.Platform.ContextValues.#ctor + href: OpenTK.Core.Platform.ContextValues.html#OpenTK_Core_Platform_ContextValues__ctor_System_UInt64_System_Int32_System_Int32_System_Int32_System_Int32_System_Int32_System_Int32_System_Boolean_System_Boolean_OpenTK_Core_Platform_ContextPixelFormat_OpenTK_Core_Platform_ContextSwapMethod_System_Int32_ + name: ContextValues + nameWithType: ContextValues.ContextValues + fullName: OpenTK.Core.Platform.ContextValues.ContextValues + nameWithType.vb: ContextValues.New + fullName.vb: OpenTK.Core.Platform.ContextValues.New + name.vb: New +- uid: System.ValueType.Equals(System.Object) + commentId: M:System.ValueType.Equals(System.Object) + parent: System.ValueType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals + name: Equals(object) + nameWithType: ValueType.Equals(object) + fullName: System.ValueType.Equals(object) + nameWithType.vb: ValueType.Equals(Object) + fullName.vb: System.ValueType.Equals(Object) + name.vb: Equals(Object) + spec.csharp: + - uid: System.ValueType.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.ValueType.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: OpenTK.Core.Platform.ContextValues.Equals* + commentId: Overload:OpenTK.Core.Platform.ContextValues.Equals + href: OpenTK.Core.Platform.ContextValues.html#OpenTK_Core_Platform_ContextValues_Equals_System_Object_ + name: Equals + nameWithType: ContextValues.Equals + fullName: OpenTK.Core.Platform.ContextValues.Equals +- uid: System.ValueType + commentId: T:System.ValueType + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.valuetype + name: ValueType + nameWithType: ValueType + fullName: System.ValueType +- uid: System.IEquatable{OpenTK.Core.Platform.ContextValues}.Equals(OpenTK.Core.Platform.ContextValues) + commentId: M:System.IEquatable{OpenTK.Core.Platform.ContextValues}.Equals(OpenTK.Core.Platform.ContextValues) + parent: System.IEquatable{OpenTK.Core.Platform.ContextValues} + definition: System.IEquatable`1.Equals(`0) + href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals + name: Equals(ContextValues) + nameWithType: IEquatable.Equals(ContextValues) + fullName: System.IEquatable.Equals(OpenTK.Core.Platform.ContextValues) + nameWithType.vb: IEquatable(Of ContextValues).Equals(ContextValues) + fullName.vb: System.IEquatable(Of OpenTK.Core.Platform.ContextValues).Equals(OpenTK.Core.Platform.ContextValues) + spec.csharp: + - uid: System.IEquatable{OpenTK.Core.Platform.ContextValues}.Equals(OpenTK.Core.Platform.ContextValues) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals + - name: ( + - uid: OpenTK.Core.Platform.ContextValues + name: ContextValues + href: OpenTK.Core.Platform.ContextValues.html + - name: ) + spec.vb: + - uid: System.IEquatable{OpenTK.Core.Platform.ContextValues}.Equals(OpenTK.Core.Platform.ContextValues) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals + - name: ( + - uid: OpenTK.Core.Platform.ContextValues + name: ContextValues + href: OpenTK.Core.Platform.ContextValues.html + - name: ) +- uid: System.IEquatable`1.Equals(`0) + commentId: M:System.IEquatable`1.Equals(`0) + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals + name: Equals(T) + nameWithType: IEquatable.Equals(T) + fullName: System.IEquatable.Equals(T) + nameWithType.vb: IEquatable(Of T).Equals(T) + fullName.vb: System.IEquatable(Of T).Equals(T) + spec.csharp: + - uid: System.IEquatable`1.Equals(`0) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals + - name: ( + - name: T + - name: ) + spec.vb: + - uid: System.IEquatable`1.Equals(`0) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals + - name: ( + - name: T + - name: ) +- uid: System.ValueType.GetHashCode + commentId: M:System.ValueType.GetHashCode + parent: System.ValueType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode + name: GetHashCode() + nameWithType: ValueType.GetHashCode() + fullName: System.ValueType.GetHashCode() + spec.csharp: + - uid: System.ValueType.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode + - name: ( + - name: ) + spec.vb: + - uid: System.ValueType.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode + - name: ( + - name: ) +- uid: OpenTK.Core.Platform.ContextValues.GetHashCode* + commentId: Overload:OpenTK.Core.Platform.ContextValues.GetHashCode + href: OpenTK.Core.Platform.ContextValues.html#OpenTK_Core_Platform_ContextValues_GetHashCode + name: GetHashCode + nameWithType: ContextValues.GetHashCode + fullName: OpenTK.Core.Platform.ContextValues.GetHashCode +- uid: OpenTK.Core.Platform.ContextValues.op_Equality* + commentId: Overload:OpenTK.Core.Platform.ContextValues.op_Equality + href: OpenTK.Core.Platform.ContextValues.html#OpenTK_Core_Platform_ContextValues_op_Equality_OpenTK_Core_Platform_ContextValues_OpenTK_Core_Platform_ContextValues_ + name: operator == + nameWithType: ContextValues.operator == + fullName: OpenTK.Core.Platform.ContextValues.operator == + nameWithType.vb: ContextValues.= + fullName.vb: OpenTK.Core.Platform.ContextValues.= + name.vb: = + spec.csharp: + - name: operator + - name: " " + - uid: OpenTK.Core.Platform.ContextValues.op_Equality* + name: == + href: OpenTK.Core.Platform.ContextValues.html#OpenTK_Core_Platform_ContextValues_op_Equality_OpenTK_Core_Platform_ContextValues_OpenTK_Core_Platform_ContextValues_ +- uid: OpenTK.Core.Platform.ContextValues.op_Inequality* + commentId: Overload:OpenTK.Core.Platform.ContextValues.op_Inequality + href: OpenTK.Core.Platform.ContextValues.html#OpenTK_Core_Platform_ContextValues_op_Inequality_OpenTK_Core_Platform_ContextValues_OpenTK_Core_Platform_ContextValues_ + name: operator != + nameWithType: ContextValues.operator != + fullName: OpenTK.Core.Platform.ContextValues.operator != + nameWithType.vb: ContextValues.<> + fullName.vb: OpenTK.Core.Platform.ContextValues.<> + name.vb: <> + spec.csharp: + - name: operator + - name: " " + - uid: OpenTK.Core.Platform.ContextValues.op_Inequality* + name: '!=' + href: OpenTK.Core.Platform.ContextValues.html#OpenTK_Core_Platform_ContextValues_op_Inequality_OpenTK_Core_Platform_ContextValues_OpenTK_Core_Platform_ContextValues_ +- uid: System.ValueType.ToString + commentId: M:System.ValueType.ToString + parent: System.ValueType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring + name: ToString() + nameWithType: ValueType.ToString() + fullName: System.ValueType.ToString() + spec.csharp: + - uid: System.ValueType.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring + - name: ( + - name: ) + spec.vb: + - uid: System.ValueType.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring + - name: ( + - name: ) +- uid: OpenTK.Core.Platform.ContextValues.ToString* + commentId: Overload:OpenTK.Core.Platform.ContextValues.ToString + href: OpenTK.Core.Platform.ContextValues.html#OpenTK_Core_Platform_ContextValues_ToString + name: ToString + nameWithType: ContextValues.ToString + fullName: OpenTK.Core.Platform.ContextValues.ToString +- uid: System.String + commentId: T:System.String + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + name: string + nameWithType: string + fullName: string + nameWithType.vb: String + fullName.vb: String + name.vb: String diff --git a/api/OpenTK.Core.Platform.DialogFileFilter.yml b/api/OpenTK.Core.Platform.DialogFileFilter.yml new file mode 100644 index 00000000..84d7962a --- /dev/null +++ b/api/OpenTK.Core.Platform.DialogFileFilter.yml @@ -0,0 +1,804 @@ +### YamlMime:ManagedReference +items: +- uid: OpenTK.Core.Platform.DialogFileFilter + commentId: T:OpenTK.Core.Platform.DialogFileFilter + id: DialogFileFilter + parent: OpenTK.Core.Platform + children: + - OpenTK.Core.Platform.DialogFileFilter.#ctor(System.String,System.String) + - OpenTK.Core.Platform.DialogFileFilter.Equals(OpenTK.Core.Platform.DialogFileFilter) + - OpenTK.Core.Platform.DialogFileFilter.Equals(System.Object) + - OpenTK.Core.Platform.DialogFileFilter.Filter + - OpenTK.Core.Platform.DialogFileFilter.GetHashCode + - OpenTK.Core.Platform.DialogFileFilter.Name + - OpenTK.Core.Platform.DialogFileFilter.ToString + - OpenTK.Core.Platform.DialogFileFilter.op_Equality(OpenTK.Core.Platform.DialogFileFilter,OpenTK.Core.Platform.DialogFileFilter) + - OpenTK.Core.Platform.DialogFileFilter.op_Inequality(OpenTK.Core.Platform.DialogFileFilter,OpenTK.Core.Platform.DialogFileFilter) + langs: + - csharp + - vb + name: DialogFileFilter + nameWithType: DialogFileFilter + fullName: OpenTK.Core.Platform.DialogFileFilter + type: Struct + source: + remote: + path: src/OpenTK.Core/Platform/DialogFileFilter.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: DialogFileFilter + path: opentk/src/OpenTK.Core/Platform/DialogFileFilter.cs + startLine: 4 + assemblies: + - OpenTK.Core + namespace: OpenTK.Core.Platform + syntax: + content: 'public struct DialogFileFilter : IEquatable' + content.vb: Public Structure DialogFileFilter Implements IEquatable(Of DialogFileFilter) + implements: + - System.IEquatable{OpenTK.Core.Platform.DialogFileFilter} + inheritedMembers: + - System.Object.Equals(System.Object,System.Object) + - System.Object.GetType + - System.Object.ReferenceEquals(System.Object,System.Object) +- uid: OpenTK.Core.Platform.DialogFileFilter.Name + commentId: F:OpenTK.Core.Platform.DialogFileFilter.Name + id: Name + parent: OpenTK.Core.Platform.DialogFileFilter + langs: + - csharp + - vb + name: Name + nameWithType: DialogFileFilter.Name + fullName: OpenTK.Core.Platform.DialogFileFilter.Name + type: Field + source: + remote: + path: src/OpenTK.Core/Platform/DialogFileFilter.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: Name + path: opentk/src/OpenTK.Core/Platform/DialogFileFilter.cs + startLine: 6 + assemblies: + - OpenTK.Core + namespace: OpenTK.Core.Platform + syntax: + content: public string Name + return: + type: System.String + content.vb: Public Name As String +- uid: OpenTK.Core.Platform.DialogFileFilter.Filter + commentId: F:OpenTK.Core.Platform.DialogFileFilter.Filter + id: Filter + parent: OpenTK.Core.Platform.DialogFileFilter + langs: + - csharp + - vb + name: Filter + nameWithType: DialogFileFilter.Filter + fullName: OpenTK.Core.Platform.DialogFileFilter.Filter + type: Field + source: + remote: + path: src/OpenTK.Core/Platform/DialogFileFilter.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: Filter + path: opentk/src/OpenTK.Core/Platform/DialogFileFilter.cs + startLine: 7 + assemblies: + - OpenTK.Core + namespace: OpenTK.Core.Platform + syntax: + content: public string Filter + return: + type: System.String + content.vb: Public Filter As String +- uid: OpenTK.Core.Platform.DialogFileFilter.#ctor(System.String,System.String) + commentId: M:OpenTK.Core.Platform.DialogFileFilter.#ctor(System.String,System.String) + id: '#ctor(System.String,System.String)' + parent: OpenTK.Core.Platform.DialogFileFilter + langs: + - csharp + - vb + name: DialogFileFilter(string, string) + nameWithType: DialogFileFilter.DialogFileFilter(string, string) + fullName: OpenTK.Core.Platform.DialogFileFilter.DialogFileFilter(string, string) + type: Constructor + source: + remote: + path: src/OpenTK.Core/Platform/DialogFileFilter.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: .ctor + path: opentk/src/OpenTK.Core/Platform/DialogFileFilter.cs + startLine: 9 + assemblies: + - OpenTK.Core + namespace: OpenTK.Core.Platform + syntax: + content: public DialogFileFilter(string name, string filter) + parameters: + - id: name + type: System.String + - id: filter + type: System.String + content.vb: Public Sub New(name As String, filter As String) + overload: OpenTK.Core.Platform.DialogFileFilter.#ctor* + nameWithType.vb: DialogFileFilter.New(String, String) + fullName.vb: OpenTK.Core.Platform.DialogFileFilter.New(String, String) + name.vb: New(String, String) +- uid: OpenTK.Core.Platform.DialogFileFilter.Equals(System.Object) + commentId: M:OpenTK.Core.Platform.DialogFileFilter.Equals(System.Object) + id: Equals(System.Object) + parent: OpenTK.Core.Platform.DialogFileFilter + langs: + - csharp + - vb + name: Equals(object) + nameWithType: DialogFileFilter.Equals(object) + fullName: OpenTK.Core.Platform.DialogFileFilter.Equals(object) + type: Method + source: + remote: + path: src/OpenTK.Core/Platform/DialogFileFilter.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: Equals + path: opentk/src/OpenTK.Core/Platform/DialogFileFilter.cs + startLine: 15 + assemblies: + - OpenTK.Core + namespace: OpenTK.Core.Platform + summary: Indicates whether this instance and a specified object are equal. + example: [] + syntax: + content: public override bool Equals(object obj) + parameters: + - id: obj + type: System.Object + description: The object to compare with the current instance. + return: + type: System.Boolean + description: true if obj and this instance are the same type and represent the same value; otherwise, false. + content.vb: Public Overrides Function Equals(obj As Object) As Boolean + overridden: System.ValueType.Equals(System.Object) + overload: OpenTK.Core.Platform.DialogFileFilter.Equals* + nameWithType.vb: DialogFileFilter.Equals(Object) + fullName.vb: OpenTK.Core.Platform.DialogFileFilter.Equals(Object) + name.vb: Equals(Object) +- uid: OpenTK.Core.Platform.DialogFileFilter.Equals(OpenTK.Core.Platform.DialogFileFilter) + commentId: M:OpenTK.Core.Platform.DialogFileFilter.Equals(OpenTK.Core.Platform.DialogFileFilter) + id: Equals(OpenTK.Core.Platform.DialogFileFilter) + parent: OpenTK.Core.Platform.DialogFileFilter + langs: + - csharp + - vb + name: Equals(DialogFileFilter) + nameWithType: DialogFileFilter.Equals(DialogFileFilter) + fullName: OpenTK.Core.Platform.DialogFileFilter.Equals(OpenTK.Core.Platform.DialogFileFilter) + type: Method + source: + remote: + path: src/OpenTK.Core/Platform/DialogFileFilter.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: Equals + path: opentk/src/OpenTK.Core/Platform/DialogFileFilter.cs + startLine: 20 + assemblies: + - OpenTK.Core + namespace: OpenTK.Core.Platform + summary: Indicates whether the current object is equal to another object of the same type. + example: [] + syntax: + content: public bool Equals(DialogFileFilter other) + parameters: + - id: other + type: OpenTK.Core.Platform.DialogFileFilter + description: An object to compare with this object. + return: + type: System.Boolean + description: true if the current object is equal to the other parameter; otherwise, false. + content.vb: Public Function Equals(other As DialogFileFilter) As Boolean + overload: OpenTK.Core.Platform.DialogFileFilter.Equals* + implements: + - System.IEquatable{OpenTK.Core.Platform.DialogFileFilter}.Equals(OpenTK.Core.Platform.DialogFileFilter) +- uid: OpenTK.Core.Platform.DialogFileFilter.GetHashCode + commentId: M:OpenTK.Core.Platform.DialogFileFilter.GetHashCode + id: GetHashCode + parent: OpenTK.Core.Platform.DialogFileFilter + langs: + - csharp + - vb + name: GetHashCode() + nameWithType: DialogFileFilter.GetHashCode() + fullName: OpenTK.Core.Platform.DialogFileFilter.GetHashCode() + type: Method + source: + remote: + path: src/OpenTK.Core/Platform/DialogFileFilter.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: GetHashCode + path: opentk/src/OpenTK.Core/Platform/DialogFileFilter.cs + startLine: 26 + assemblies: + - OpenTK.Core + namespace: OpenTK.Core.Platform + summary: Returns the hash code for this instance. + example: [] + syntax: + content: public override int GetHashCode() + return: + type: System.Int32 + description: A 32-bit signed integer that is the hash code for this instance. + content.vb: Public Overrides Function GetHashCode() As Integer + overridden: System.ValueType.GetHashCode + overload: OpenTK.Core.Platform.DialogFileFilter.GetHashCode* +- uid: OpenTK.Core.Platform.DialogFileFilter.op_Equality(OpenTK.Core.Platform.DialogFileFilter,OpenTK.Core.Platform.DialogFileFilter) + commentId: M:OpenTK.Core.Platform.DialogFileFilter.op_Equality(OpenTK.Core.Platform.DialogFileFilter,OpenTK.Core.Platform.DialogFileFilter) + id: op_Equality(OpenTK.Core.Platform.DialogFileFilter,OpenTK.Core.Platform.DialogFileFilter) + parent: OpenTK.Core.Platform.DialogFileFilter + langs: + - csharp + - vb + name: operator ==(DialogFileFilter, DialogFileFilter) + nameWithType: DialogFileFilter.operator ==(DialogFileFilter, DialogFileFilter) + fullName: OpenTK.Core.Platform.DialogFileFilter.operator ==(OpenTK.Core.Platform.DialogFileFilter, OpenTK.Core.Platform.DialogFileFilter) + type: Operator + source: + remote: + path: src/OpenTK.Core/Platform/DialogFileFilter.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: op_Equality + path: opentk/src/OpenTK.Core/Platform/DialogFileFilter.cs + startLine: 31 + assemblies: + - OpenTK.Core + namespace: OpenTK.Core.Platform + syntax: + content: public static bool operator ==(DialogFileFilter left, DialogFileFilter right) + parameters: + - id: left + type: OpenTK.Core.Platform.DialogFileFilter + - id: right + type: OpenTK.Core.Platform.DialogFileFilter + return: + type: System.Boolean + content.vb: Public Shared Operator =(left As DialogFileFilter, right As DialogFileFilter) As Boolean + overload: OpenTK.Core.Platform.DialogFileFilter.op_Equality* + nameWithType.vb: DialogFileFilter.=(DialogFileFilter, DialogFileFilter) + fullName.vb: OpenTK.Core.Platform.DialogFileFilter.=(OpenTK.Core.Platform.DialogFileFilter, OpenTK.Core.Platform.DialogFileFilter) + name.vb: =(DialogFileFilter, DialogFileFilter) +- uid: OpenTK.Core.Platform.DialogFileFilter.op_Inequality(OpenTK.Core.Platform.DialogFileFilter,OpenTK.Core.Platform.DialogFileFilter) + commentId: M:OpenTK.Core.Platform.DialogFileFilter.op_Inequality(OpenTK.Core.Platform.DialogFileFilter,OpenTK.Core.Platform.DialogFileFilter) + id: op_Inequality(OpenTK.Core.Platform.DialogFileFilter,OpenTK.Core.Platform.DialogFileFilter) + parent: OpenTK.Core.Platform.DialogFileFilter + langs: + - csharp + - vb + name: operator !=(DialogFileFilter, DialogFileFilter) + nameWithType: DialogFileFilter.operator !=(DialogFileFilter, DialogFileFilter) + fullName: OpenTK.Core.Platform.DialogFileFilter.operator !=(OpenTK.Core.Platform.DialogFileFilter, OpenTK.Core.Platform.DialogFileFilter) + type: Operator + source: + remote: + path: src/OpenTK.Core/Platform/DialogFileFilter.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: op_Inequality + path: opentk/src/OpenTK.Core/Platform/DialogFileFilter.cs + startLine: 36 + assemblies: + - OpenTK.Core + namespace: OpenTK.Core.Platform + syntax: + content: public static bool operator !=(DialogFileFilter left, DialogFileFilter right) + parameters: + - id: left + type: OpenTK.Core.Platform.DialogFileFilter + - id: right + type: OpenTK.Core.Platform.DialogFileFilter + return: + type: System.Boolean + content.vb: Public Shared Operator <>(left As DialogFileFilter, right As DialogFileFilter) As Boolean + overload: OpenTK.Core.Platform.DialogFileFilter.op_Inequality* + nameWithType.vb: DialogFileFilter.<>(DialogFileFilter, DialogFileFilter) + fullName.vb: OpenTK.Core.Platform.DialogFileFilter.<>(OpenTK.Core.Platform.DialogFileFilter, OpenTK.Core.Platform.DialogFileFilter) + name.vb: <>(DialogFileFilter, DialogFileFilter) +- uid: OpenTK.Core.Platform.DialogFileFilter.ToString + commentId: M:OpenTK.Core.Platform.DialogFileFilter.ToString + id: ToString + parent: OpenTK.Core.Platform.DialogFileFilter + langs: + - csharp + - vb + name: ToString() + nameWithType: DialogFileFilter.ToString() + fullName: OpenTK.Core.Platform.DialogFileFilter.ToString() + type: Method + source: + remote: + path: src/OpenTK.Core/Platform/DialogFileFilter.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: ToString + path: opentk/src/OpenTK.Core/Platform/DialogFileFilter.cs + startLine: 41 + assemblies: + - OpenTK.Core + namespace: OpenTK.Core.Platform + summary: Returns the fully qualified type name of this instance. + example: [] + syntax: + content: public override string ToString() + return: + type: System.String + description: The fully qualified type name. + content.vb: Public Overrides Function ToString() As String + overridden: System.ValueType.ToString + overload: OpenTK.Core.Platform.DialogFileFilter.ToString* +references: +- uid: OpenTK.Core.Platform + commentId: N:OpenTK.Core.Platform + href: OpenTK.html + name: OpenTK.Core.Platform + nameWithType: OpenTK.Core.Platform + fullName: OpenTK.Core.Platform + spec.csharp: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Core + name: Core + href: OpenTK.Core.html + - name: . + - uid: OpenTK.Core.Platform + name: Platform + href: OpenTK.Core.Platform.html + spec.vb: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Core + name: Core + href: OpenTK.Core.html + - name: . + - uid: OpenTK.Core.Platform + name: Platform + href: OpenTK.Core.Platform.html +- uid: System.IEquatable{OpenTK.Core.Platform.DialogFileFilter} + commentId: T:System.IEquatable{OpenTK.Core.Platform.DialogFileFilter} + parent: System + definition: System.IEquatable`1 + href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 + name: IEquatable + nameWithType: IEquatable + fullName: System.IEquatable + nameWithType.vb: IEquatable(Of DialogFileFilter) + fullName.vb: System.IEquatable(Of OpenTK.Core.Platform.DialogFileFilter) + name.vb: IEquatable(Of DialogFileFilter) + spec.csharp: + - uid: System.IEquatable`1 + name: IEquatable + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 + - name: < + - uid: OpenTK.Core.Platform.DialogFileFilter + name: DialogFileFilter + href: OpenTK.Core.Platform.DialogFileFilter.html + - name: '>' + spec.vb: + - uid: System.IEquatable`1 + name: IEquatable + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 + - name: ( + - name: Of + - name: " " + - uid: OpenTK.Core.Platform.DialogFileFilter + name: DialogFileFilter + href: OpenTK.Core.Platform.DialogFileFilter.html + - name: ) +- uid: System.Object.Equals(System.Object,System.Object) + commentId: M:System.Object.Equals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + name: Equals(object, object) + nameWithType: object.Equals(object, object) + fullName: object.Equals(object, object) + nameWithType.vb: Object.Equals(Object, Object) + fullName.vb: Object.Equals(Object, Object) + name.vb: Equals(Object, Object) + spec.csharp: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.GetType + commentId: M:System.Object.GetType + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + name: GetType() + nameWithType: object.GetType() + fullName: object.GetType() + nameWithType.vb: Object.GetType() + fullName.vb: Object.GetType() + spec.csharp: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) +- uid: System.Object.ReferenceEquals(System.Object,System.Object) + commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + name: ReferenceEquals(object, object) + nameWithType: object.ReferenceEquals(object, object) + fullName: object.ReferenceEquals(object, object) + nameWithType.vb: Object.ReferenceEquals(Object, Object) + fullName.vb: Object.ReferenceEquals(Object, Object) + name.vb: ReferenceEquals(Object, Object) + spec.csharp: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.IEquatable`1 + commentId: T:System.IEquatable`1 + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 + name: IEquatable + nameWithType: IEquatable + fullName: System.IEquatable + nameWithType.vb: IEquatable(Of T) + fullName.vb: System.IEquatable(Of T) + name.vb: IEquatable(Of T) + spec.csharp: + - uid: System.IEquatable`1 + name: IEquatable + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 + - name: < + - name: T + - name: '>' + spec.vb: + - uid: System.IEquatable`1 + name: IEquatable + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 + - name: ( + - name: Of + - name: " " + - name: T + - name: ) +- uid: System + commentId: N:System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System + nameWithType: System + fullName: System +- uid: System.Object + commentId: T:System.Object + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + name: object + nameWithType: object + fullName: object + nameWithType.vb: Object + fullName.vb: Object + name.vb: Object +- uid: System.String + commentId: T:System.String + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + name: string + nameWithType: string + fullName: string + nameWithType.vb: String + fullName.vb: String + name.vb: String +- uid: OpenTK.Core.Platform.DialogFileFilter.#ctor* + commentId: Overload:OpenTK.Core.Platform.DialogFileFilter.#ctor + href: OpenTK.Core.Platform.DialogFileFilter.html#OpenTK_Core_Platform_DialogFileFilter__ctor_System_String_System_String_ + name: DialogFileFilter + nameWithType: DialogFileFilter.DialogFileFilter + fullName: OpenTK.Core.Platform.DialogFileFilter.DialogFileFilter + nameWithType.vb: DialogFileFilter.New + fullName.vb: OpenTK.Core.Platform.DialogFileFilter.New + name.vb: New +- uid: System.ValueType.Equals(System.Object) + commentId: M:System.ValueType.Equals(System.Object) + parent: System.ValueType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals + name: Equals(object) + nameWithType: ValueType.Equals(object) + fullName: System.ValueType.Equals(object) + nameWithType.vb: ValueType.Equals(Object) + fullName.vb: System.ValueType.Equals(Object) + name.vb: Equals(Object) + spec.csharp: + - uid: System.ValueType.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.ValueType.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: OpenTK.Core.Platform.DialogFileFilter.Equals* + commentId: Overload:OpenTK.Core.Platform.DialogFileFilter.Equals + href: OpenTK.Core.Platform.DialogFileFilter.html#OpenTK_Core_Platform_DialogFileFilter_Equals_System_Object_ + name: Equals + nameWithType: DialogFileFilter.Equals + fullName: OpenTK.Core.Platform.DialogFileFilter.Equals +- uid: System.Boolean + commentId: T:System.Boolean + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + name: bool + nameWithType: bool + fullName: bool + nameWithType.vb: Boolean + fullName.vb: Boolean + name.vb: Boolean +- uid: System.ValueType + commentId: T:System.ValueType + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.valuetype + name: ValueType + nameWithType: ValueType + fullName: System.ValueType +- uid: System.IEquatable{OpenTK.Core.Platform.DialogFileFilter}.Equals(OpenTK.Core.Platform.DialogFileFilter) + commentId: M:System.IEquatable{OpenTK.Core.Platform.DialogFileFilter}.Equals(OpenTK.Core.Platform.DialogFileFilter) + parent: System.IEquatable{OpenTK.Core.Platform.DialogFileFilter} + definition: System.IEquatable`1.Equals(`0) + href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals + name: Equals(DialogFileFilter) + nameWithType: IEquatable.Equals(DialogFileFilter) + fullName: System.IEquatable.Equals(OpenTK.Core.Platform.DialogFileFilter) + nameWithType.vb: IEquatable(Of DialogFileFilter).Equals(DialogFileFilter) + fullName.vb: System.IEquatable(Of OpenTK.Core.Platform.DialogFileFilter).Equals(OpenTK.Core.Platform.DialogFileFilter) + spec.csharp: + - uid: System.IEquatable{OpenTK.Core.Platform.DialogFileFilter}.Equals(OpenTK.Core.Platform.DialogFileFilter) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals + - name: ( + - uid: OpenTK.Core.Platform.DialogFileFilter + name: DialogFileFilter + href: OpenTK.Core.Platform.DialogFileFilter.html + - name: ) + spec.vb: + - uid: System.IEquatable{OpenTK.Core.Platform.DialogFileFilter}.Equals(OpenTK.Core.Platform.DialogFileFilter) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals + - name: ( + - uid: OpenTK.Core.Platform.DialogFileFilter + name: DialogFileFilter + href: OpenTK.Core.Platform.DialogFileFilter.html + - name: ) +- uid: OpenTK.Core.Platform.DialogFileFilter + commentId: T:OpenTK.Core.Platform.DialogFileFilter + parent: OpenTK.Core.Platform + href: OpenTK.Core.Platform.DialogFileFilter.html + name: DialogFileFilter + nameWithType: DialogFileFilter + fullName: OpenTK.Core.Platform.DialogFileFilter +- uid: System.IEquatable`1.Equals(`0) + commentId: M:System.IEquatable`1.Equals(`0) + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals + name: Equals(T) + nameWithType: IEquatable.Equals(T) + fullName: System.IEquatable.Equals(T) + nameWithType.vb: IEquatable(Of T).Equals(T) + fullName.vb: System.IEquatable(Of T).Equals(T) + spec.csharp: + - uid: System.IEquatable`1.Equals(`0) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals + - name: ( + - name: T + - name: ) + spec.vb: + - uid: System.IEquatable`1.Equals(`0) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals + - name: ( + - name: T + - name: ) +- uid: System.ValueType.GetHashCode + commentId: M:System.ValueType.GetHashCode + parent: System.ValueType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode + name: GetHashCode() + nameWithType: ValueType.GetHashCode() + fullName: System.ValueType.GetHashCode() + spec.csharp: + - uid: System.ValueType.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode + - name: ( + - name: ) + spec.vb: + - uid: System.ValueType.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode + - name: ( + - name: ) +- uid: OpenTK.Core.Platform.DialogFileFilter.GetHashCode* + commentId: Overload:OpenTK.Core.Platform.DialogFileFilter.GetHashCode + href: OpenTK.Core.Platform.DialogFileFilter.html#OpenTK_Core_Platform_DialogFileFilter_GetHashCode + name: GetHashCode + nameWithType: DialogFileFilter.GetHashCode + fullName: OpenTK.Core.Platform.DialogFileFilter.GetHashCode +- uid: System.Int32 + commentId: T:System.Int32 + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + name: int + nameWithType: int + fullName: int + nameWithType.vb: Integer + fullName.vb: Integer + name.vb: Integer +- uid: OpenTK.Core.Platform.DialogFileFilter.op_Equality* + commentId: Overload:OpenTK.Core.Platform.DialogFileFilter.op_Equality + href: OpenTK.Core.Platform.DialogFileFilter.html#OpenTK_Core_Platform_DialogFileFilter_op_Equality_OpenTK_Core_Platform_DialogFileFilter_OpenTK_Core_Platform_DialogFileFilter_ + name: operator == + nameWithType: DialogFileFilter.operator == + fullName: OpenTK.Core.Platform.DialogFileFilter.operator == + nameWithType.vb: DialogFileFilter.= + fullName.vb: OpenTK.Core.Platform.DialogFileFilter.= + name.vb: = + spec.csharp: + - name: operator + - name: " " + - uid: OpenTK.Core.Platform.DialogFileFilter.op_Equality* + name: == + href: OpenTK.Core.Platform.DialogFileFilter.html#OpenTK_Core_Platform_DialogFileFilter_op_Equality_OpenTK_Core_Platform_DialogFileFilter_OpenTK_Core_Platform_DialogFileFilter_ +- uid: OpenTK.Core.Platform.DialogFileFilter.op_Inequality* + commentId: Overload:OpenTK.Core.Platform.DialogFileFilter.op_Inequality + href: OpenTK.Core.Platform.DialogFileFilter.html#OpenTK_Core_Platform_DialogFileFilter_op_Inequality_OpenTK_Core_Platform_DialogFileFilter_OpenTK_Core_Platform_DialogFileFilter_ + name: operator != + nameWithType: DialogFileFilter.operator != + fullName: OpenTK.Core.Platform.DialogFileFilter.operator != + nameWithType.vb: DialogFileFilter.<> + fullName.vb: OpenTK.Core.Platform.DialogFileFilter.<> + name.vb: <> + spec.csharp: + - name: operator + - name: " " + - uid: OpenTK.Core.Platform.DialogFileFilter.op_Inequality* + name: '!=' + href: OpenTK.Core.Platform.DialogFileFilter.html#OpenTK_Core_Platform_DialogFileFilter_op_Inequality_OpenTK_Core_Platform_DialogFileFilter_OpenTK_Core_Platform_DialogFileFilter_ +- uid: System.ValueType.ToString + commentId: M:System.ValueType.ToString + parent: System.ValueType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring + name: ToString() + nameWithType: ValueType.ToString() + fullName: System.ValueType.ToString() + spec.csharp: + - uid: System.ValueType.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring + - name: ( + - name: ) + spec.vb: + - uid: System.ValueType.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring + - name: ( + - name: ) +- uid: OpenTK.Core.Platform.DialogFileFilter.ToString* + commentId: Overload:OpenTK.Core.Platform.DialogFileFilter.ToString + href: OpenTK.Core.Platform.DialogFileFilter.html#OpenTK_Core_Platform_DialogFileFilter_ToString + name: ToString + nameWithType: DialogFileFilter.ToString + fullName: OpenTK.Core.Platform.DialogFileFilter.ToString diff --git a/api/OpenTK.Core.Platform.DisplayConnectionChangedEventArgs.yml b/api/OpenTK.Core.Platform.DisplayConnectionChangedEventArgs.yml index b82a8bf8..b0ca5a22 100644 --- a/api/OpenTK.Core.Platform.DisplayConnectionChangedEventArgs.yml +++ b/api/OpenTK.Core.Platform.DisplayConnectionChangedEventArgs.yml @@ -22,7 +22,7 @@ items: repo: https://github.com/opentk/opentk.git id: DisplayConnectionChangedEventArgs path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs - startLine: 586 + startLine: 605 assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform @@ -61,7 +61,7 @@ items: repo: https://github.com/opentk/opentk.git id: Display path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs - startLine: 591 + startLine: 610 assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform @@ -92,7 +92,7 @@ items: repo: https://github.com/opentk/opentk.git id: Disconnected path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs - startLine: 596 + startLine: 615 assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform @@ -123,7 +123,7 @@ items: repo: https://github.com/opentk/opentk.git id: .ctor path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs - startLine: 604 + startLine: 623 assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform diff --git a/api/OpenTK.Core.Platform.FileDropEventArgs.yml b/api/OpenTK.Core.Platform.FileDropEventArgs.yml index 4fb91c2e..e98bc9b6 100644 --- a/api/OpenTK.Core.Platform.FileDropEventArgs.yml +++ b/api/OpenTK.Core.Platform.FileDropEventArgs.yml @@ -22,7 +22,7 @@ items: repo: https://github.com/opentk/opentk.git id: FileDropEventArgs path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs - startLine: 516 + startLine: 535 assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform @@ -63,7 +63,7 @@ items: repo: https://github.com/opentk/opentk.git id: FilePaths path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs - startLine: 521 + startLine: 540 assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform @@ -94,7 +94,7 @@ items: repo: https://github.com/opentk/opentk.git id: Position path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs - startLine: 526 + startLine: 545 assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform @@ -125,7 +125,7 @@ items: repo: https://github.com/opentk/opentk.git id: .ctor path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs - startLine: 534 + startLine: 553 assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform diff --git a/api/OpenTK.Core.Platform.FocusEventArgs.yml b/api/OpenTK.Core.Platform.FocusEventArgs.yml index 6d253dd9..46478359 100644 --- a/api/OpenTK.Core.Platform.FocusEventArgs.yml +++ b/api/OpenTK.Core.Platform.FocusEventArgs.yml @@ -62,7 +62,7 @@ items: repo: https://github.com/opentk/opentk.git id: GotFocus path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs - startLine: 40 + startLine: 42 assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform @@ -93,7 +93,7 @@ items: repo: https://github.com/opentk/opentk.git id: .ctor path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs - startLine: 47 + startLine: 49 assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform diff --git a/api/OpenTK.Core.Platform.IClipboardComponent.yml b/api/OpenTK.Core.Platform.IClipboardComponent.yml index d9241927..59e54d92 100644 --- a/api/OpenTK.Core.Platform.IClipboardComponent.yml +++ b/api/OpenTK.Core.Platform.IClipboardComponent.yml @@ -9,7 +9,6 @@ items: - OpenTK.Core.Platform.IClipboardComponent.GetClipboardBitmap - OpenTK.Core.Platform.IClipboardComponent.GetClipboardFiles - OpenTK.Core.Platform.IClipboardComponent.GetClipboardFormat - - OpenTK.Core.Platform.IClipboardComponent.GetClipboardHTML - OpenTK.Core.Platform.IClipboardComponent.GetClipboardText - OpenTK.Core.Platform.IClipboardComponent.SetClipboardText(System.String) - OpenTK.Core.Platform.IClipboardComponent.SupportedFormats @@ -40,7 +39,7 @@ items: - OpenTK.Core.Platform.IPalComponent.Name - OpenTK.Core.Platform.IPalComponent.Provides - OpenTK.Core.Platform.IPalComponent.Logger - - OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - uid: OpenTK.Core.Platform.IClipboardComponent.SupportedFormats commentId: P:OpenTK.Core.Platform.IClipboardComponent.SupportedFormats id: SupportedFormats @@ -240,40 +239,6 @@ items: description: The bitmap currently in the clipboard. content.vb: Function GetClipboardBitmap() As Bitmap overload: OpenTK.Core.Platform.IClipboardComponent.GetClipboardBitmap* -- uid: OpenTK.Core.Platform.IClipboardComponent.GetClipboardHTML - commentId: M:OpenTK.Core.Platform.IClipboardComponent.GetClipboardHTML - id: GetClipboardHTML - parent: OpenTK.Core.Platform.IClipboardComponent - langs: - - csharp - - vb - name: GetClipboardHTML() - nameWithType: IClipboardComponent.GetClipboardHTML() - fullName: OpenTK.Core.Platform.IClipboardComponent.GetClipboardHTML() - type: Method - source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/IClipboardComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: GetClipboardHTML - path: opentk/src/OpenTK.Core/Platform/Interfaces/IClipboardComponent.cs - startLine: 61 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: >- - Gets the HTML string currently in the clipboard. - - This function returns null if the current clipboard data doesn't have the format. - example: [] - syntax: - content: string? GetClipboardHTML() - return: - type: System.String - description: The HTML string currently in the clipboard. - content.vb: Function GetClipboardHTML() As String - overload: OpenTK.Core.Platform.IClipboardComponent.GetClipboardHTML* - uid: OpenTK.Core.Platform.IClipboardComponent.GetClipboardFiles commentId: M:OpenTK.Core.Platform.IClipboardComponent.GetClipboardFiles id: GetClipboardFiles @@ -292,7 +257,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetClipboardFiles path: opentk/src/OpenTK.Core/Platform/Interfaces/IClipboardComponent.cs - startLine: 68 + startLine: 60 assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform @@ -360,30 +325,30 @@ references: name: Logger nameWithType: IPalComponent.Logger fullName: OpenTK.Core.Platform.IPalComponent.Logger -- uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) - commentId: M:OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) +- uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + commentId: M:OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_PalComponents_ - name: Initialize(PalComponents) - nameWithType: IPalComponent.Initialize(PalComponents) - fullName: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + name: Initialize(ToolkitOptions) + nameWithType: IPalComponent.Initialize(ToolkitOptions) + fullName: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) spec.csharp: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_PalComponents_ + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.PalComponents - name: PalComponents - href: OpenTK.Core.Platform.PalComponents.html + - uid: OpenTK.Core.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Core.Platform.ToolkitOptions.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_PalComponents_ + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.PalComponents - name: PalComponents - href: OpenTK.Core.Platform.PalComponents.html + - uid: OpenTK.Core.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Core.Platform.ToolkitOptions.html - name: ) - uid: OpenTK.Core.Platform.IPalComponent commentId: T:OpenTK.Core.Platform.IPalComponent @@ -583,18 +548,6 @@ references: name: Bitmap nameWithType: Bitmap fullName: OpenTK.Core.Platform.Bitmap -- uid: OpenTK.Core.Platform.ClipboardFormat.HTML - commentId: F:OpenTK.Core.Platform.ClipboardFormat.HTML - href: OpenTK.Core.Platform.ClipboardFormat.html#OpenTK_Core_Platform_ClipboardFormat_HTML - name: HTML - nameWithType: ClipboardFormat.HTML - fullName: OpenTK.Core.Platform.ClipboardFormat.HTML -- uid: OpenTK.Core.Platform.IClipboardComponent.GetClipboardHTML* - commentId: Overload:OpenTK.Core.Platform.IClipboardComponent.GetClipboardHTML - href: OpenTK.Core.Platform.IClipboardComponent.html#OpenTK_Core_Platform_IClipboardComponent_GetClipboardHTML - name: GetClipboardHTML - nameWithType: IClipboardComponent.GetClipboardHTML - fullName: OpenTK.Core.Platform.IClipboardComponent.GetClipboardHTML - uid: OpenTK.Core.Platform.ClipboardFormat.Files commentId: F:OpenTK.Core.Platform.ClipboardFormat.Files href: OpenTK.Core.Platform.ClipboardFormat.html#OpenTK_Core_Platform_ClipboardFormat_Files diff --git a/api/OpenTK.Core.Platform.ICursorComponent.yml b/api/OpenTK.Core.Platform.ICursorComponent.yml index 6c950e9e..39e6619e 100644 --- a/api/OpenTK.Core.Platform.ICursorComponent.yml +++ b/api/OpenTK.Core.Platform.ICursorComponent.yml @@ -41,7 +41,7 @@ items: - OpenTK.Core.Platform.IPalComponent.Name - OpenTK.Core.Platform.IPalComponent.Provides - OpenTK.Core.Platform.IPalComponent.Logger - - OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - uid: OpenTK.Core.Platform.ICursorComponent.CanLoadSystemCursors commentId: P:OpenTK.Core.Platform.ICursorComponent.CanLoadSystemCursors id: CanLoadSystemCursors @@ -508,30 +508,30 @@ references: name: Logger nameWithType: IPalComponent.Logger fullName: OpenTK.Core.Platform.IPalComponent.Logger -- uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) - commentId: M:OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) +- uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + commentId: M:OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_PalComponents_ - name: Initialize(PalComponents) - nameWithType: IPalComponent.Initialize(PalComponents) - fullName: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + name: Initialize(ToolkitOptions) + nameWithType: IPalComponent.Initialize(ToolkitOptions) + fullName: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) spec.csharp: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_PalComponents_ + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.PalComponents - name: PalComponents - href: OpenTK.Core.Platform.PalComponents.html + - uid: OpenTK.Core.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Core.Platform.ToolkitOptions.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_PalComponents_ + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.PalComponents - name: PalComponents - href: OpenTK.Core.Platform.PalComponents.html + - uid: OpenTK.Core.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Core.Platform.ToolkitOptions.html - name: ) - uid: OpenTK.Core.Platform.IPalComponent commentId: T:OpenTK.Core.Platform.IPalComponent diff --git a/api/OpenTK.Core.Platform.IDialogComponent.yml b/api/OpenTK.Core.Platform.IDialogComponent.yml new file mode 100644 index 00000000..e7c063de --- /dev/null +++ b/api/OpenTK.Core.Platform.IDialogComponent.yml @@ -0,0 +1,433 @@ +### YamlMime:ManagedReference +items: +- uid: OpenTK.Core.Platform.IDialogComponent + commentId: T:OpenTK.Core.Platform.IDialogComponent + id: IDialogComponent + parent: OpenTK.Core.Platform + children: + - OpenTK.Core.Platform.IDialogComponent.CanTargetFolders + - OpenTK.Core.Platform.IDialogComponent.ShowOpenDialog(OpenTK.Core.Platform.WindowHandle,System.String,System.String,OpenTK.Core.Platform.DialogFileFilter[],OpenTK.Core.Platform.OpenDialogOptions) + - OpenTK.Core.Platform.IDialogComponent.ShowSaveDialog(OpenTK.Core.Platform.WindowHandle,System.String,System.String,OpenTK.Core.Platform.DialogFileFilter[],OpenTK.Core.Platform.SaveDialogOptions) + langs: + - csharp + - vb + name: IDialogComponent + nameWithType: IDialogComponent + fullName: OpenTK.Core.Platform.IDialogComponent + type: Interface + source: + remote: + path: src/OpenTK.Core/Platform/Interfaces/IDialogComponent.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: IDialogComponent + path: opentk/src/OpenTK.Core/Platform/Interfaces/IDialogComponent.cs + startLine: 10 + assemblies: + - OpenTK.Core + namespace: OpenTK.Core.Platform + syntax: + content: 'public interface IDialogComponent : IPalComponent' + content.vb: Public Interface IDialogComponent Inherits IPalComponent + inheritedMembers: + - OpenTK.Core.Platform.IPalComponent.Name + - OpenTK.Core.Platform.IPalComponent.Provides + - OpenTK.Core.Platform.IPalComponent.Logger + - OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) +- uid: OpenTK.Core.Platform.IDialogComponent.CanTargetFolders + commentId: P:OpenTK.Core.Platform.IDialogComponent.CanTargetFolders + id: CanTargetFolders + parent: OpenTK.Core.Platform.IDialogComponent + langs: + - csharp + - vb + name: CanTargetFolders + nameWithType: IDialogComponent.CanTargetFolders + fullName: OpenTK.Core.Platform.IDialogComponent.CanTargetFolders + type: Property + source: + remote: + path: src/OpenTK.Core/Platform/Interfaces/IDialogComponent.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: CanTargetFolders + path: opentk/src/OpenTK.Core/Platform/Interfaces/IDialogComponent.cs + startLine: 16 + assemblies: + - OpenTK.Core + namespace: OpenTK.Core.Platform + summary: >- + If the value of this property is true and will work. + + Otherwise these flags will be ignored. + example: [] + syntax: + content: bool CanTargetFolders { get; } + parameters: [] + return: + type: System.Boolean + content.vb: ReadOnly Property CanTargetFolders As Boolean + overload: OpenTK.Core.Platform.IDialogComponent.CanTargetFolders* +- uid: OpenTK.Core.Platform.IDialogComponent.ShowOpenDialog(OpenTK.Core.Platform.WindowHandle,System.String,System.String,OpenTK.Core.Platform.DialogFileFilter[],OpenTK.Core.Platform.OpenDialogOptions) + commentId: M:OpenTK.Core.Platform.IDialogComponent.ShowOpenDialog(OpenTK.Core.Platform.WindowHandle,System.String,System.String,OpenTK.Core.Platform.DialogFileFilter[],OpenTK.Core.Platform.OpenDialogOptions) + id: ShowOpenDialog(OpenTK.Core.Platform.WindowHandle,System.String,System.String,OpenTK.Core.Platform.DialogFileFilter[],OpenTK.Core.Platform.OpenDialogOptions) + parent: OpenTK.Core.Platform.IDialogComponent + langs: + - csharp + - vb + name: ShowOpenDialog(WindowHandle, string, string, DialogFileFilter[]?, OpenDialogOptions) + nameWithType: IDialogComponent.ShowOpenDialog(WindowHandle, string, string, DialogFileFilter[]?, OpenDialogOptions) + fullName: OpenTK.Core.Platform.IDialogComponent.ShowOpenDialog(OpenTK.Core.Platform.WindowHandle, string, string, OpenTK.Core.Platform.DialogFileFilter[]?, OpenTK.Core.Platform.OpenDialogOptions) + type: Method + source: + remote: + path: src/OpenTK.Core/Platform/Interfaces/IDialogComponent.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: ShowOpenDialog + path: opentk/src/OpenTK.Core/Platform/Interfaces/IDialogComponent.cs + startLine: 20 + assemblies: + - OpenTK.Core + namespace: OpenTK.Core.Platform + syntax: + content: List? ShowOpenDialog(WindowHandle parent, string title, string directory, DialogFileFilter[]? allowedExtensions, OpenDialogOptions options) + parameters: + - id: parent + type: OpenTK.Core.Platform.WindowHandle + - id: title + type: System.String + - id: directory + type: System.String + - id: allowedExtensions + type: OpenTK.Core.Platform.DialogFileFilter[] + - id: options + type: OpenTK.Core.Platform.OpenDialogOptions + return: + type: System.Collections.Generic.List{System.String} + content.vb: Function ShowOpenDialog(parent As WindowHandle, title As String, directory As String, allowedExtensions As DialogFileFilter(), options As OpenDialogOptions) As List(Of String) + overload: OpenTK.Core.Platform.IDialogComponent.ShowOpenDialog* + nameWithType.vb: IDialogComponent.ShowOpenDialog(WindowHandle, String, String, DialogFileFilter(), OpenDialogOptions) + fullName.vb: OpenTK.Core.Platform.IDialogComponent.ShowOpenDialog(OpenTK.Core.Platform.WindowHandle, String, String, OpenTK.Core.Platform.DialogFileFilter(), OpenTK.Core.Platform.OpenDialogOptions) + name.vb: ShowOpenDialog(WindowHandle, String, String, DialogFileFilter(), OpenDialogOptions) +- uid: OpenTK.Core.Platform.IDialogComponent.ShowSaveDialog(OpenTK.Core.Platform.WindowHandle,System.String,System.String,OpenTK.Core.Platform.DialogFileFilter[],OpenTK.Core.Platform.SaveDialogOptions) + commentId: M:OpenTK.Core.Platform.IDialogComponent.ShowSaveDialog(OpenTK.Core.Platform.WindowHandle,System.String,System.String,OpenTK.Core.Platform.DialogFileFilter[],OpenTK.Core.Platform.SaveDialogOptions) + id: ShowSaveDialog(OpenTK.Core.Platform.WindowHandle,System.String,System.String,OpenTK.Core.Platform.DialogFileFilter[],OpenTK.Core.Platform.SaveDialogOptions) + parent: OpenTK.Core.Platform.IDialogComponent + langs: + - csharp + - vb + name: ShowSaveDialog(WindowHandle, string, string, DialogFileFilter[]?, SaveDialogOptions) + nameWithType: IDialogComponent.ShowSaveDialog(WindowHandle, string, string, DialogFileFilter[]?, SaveDialogOptions) + fullName: OpenTK.Core.Platform.IDialogComponent.ShowSaveDialog(OpenTK.Core.Platform.WindowHandle, string, string, OpenTK.Core.Platform.DialogFileFilter[]?, OpenTK.Core.Platform.SaveDialogOptions) + type: Method + source: + remote: + path: src/OpenTK.Core/Platform/Interfaces/IDialogComponent.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: ShowSaveDialog + path: opentk/src/OpenTK.Core/Platform/Interfaces/IDialogComponent.cs + startLine: 23 + assemblies: + - OpenTK.Core + namespace: OpenTK.Core.Platform + syntax: + content: string? ShowSaveDialog(WindowHandle parent, string title, string directory, DialogFileFilter[]? allowedExtensions, SaveDialogOptions options) + parameters: + - id: parent + type: OpenTK.Core.Platform.WindowHandle + - id: title + type: System.String + - id: directory + type: System.String + - id: allowedExtensions + type: OpenTK.Core.Platform.DialogFileFilter[] + - id: options + type: OpenTK.Core.Platform.SaveDialogOptions + return: + type: System.String + content.vb: Function ShowSaveDialog(parent As WindowHandle, title As String, directory As String, allowedExtensions As DialogFileFilter(), options As SaveDialogOptions) As String + overload: OpenTK.Core.Platform.IDialogComponent.ShowSaveDialog* + nameWithType.vb: IDialogComponent.ShowSaveDialog(WindowHandle, String, String, DialogFileFilter(), SaveDialogOptions) + fullName.vb: OpenTK.Core.Platform.IDialogComponent.ShowSaveDialog(OpenTK.Core.Platform.WindowHandle, String, String, OpenTK.Core.Platform.DialogFileFilter(), OpenTK.Core.Platform.SaveDialogOptions) + name.vb: ShowSaveDialog(WindowHandle, String, String, DialogFileFilter(), SaveDialogOptions) +references: +- uid: OpenTK.Core.Platform + commentId: N:OpenTK.Core.Platform + href: OpenTK.html + name: OpenTK.Core.Platform + nameWithType: OpenTK.Core.Platform + fullName: OpenTK.Core.Platform + spec.csharp: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Core + name: Core + href: OpenTK.Core.html + - name: . + - uid: OpenTK.Core.Platform + name: Platform + href: OpenTK.Core.Platform.html + spec.vb: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Core + name: Core + href: OpenTK.Core.html + - name: . + - uid: OpenTK.Core.Platform + name: Platform + href: OpenTK.Core.Platform.html +- uid: OpenTK.Core.Platform.IPalComponent.Name + commentId: P:OpenTK.Core.Platform.IPalComponent.Name + parent: OpenTK.Core.Platform.IPalComponent + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Name + name: Name + nameWithType: IPalComponent.Name + fullName: OpenTK.Core.Platform.IPalComponent.Name +- uid: OpenTK.Core.Platform.IPalComponent.Provides + commentId: P:OpenTK.Core.Platform.IPalComponent.Provides + parent: OpenTK.Core.Platform.IPalComponent + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Provides + name: Provides + nameWithType: IPalComponent.Provides + fullName: OpenTK.Core.Platform.IPalComponent.Provides +- uid: OpenTK.Core.Platform.IPalComponent.Logger + commentId: P:OpenTK.Core.Platform.IPalComponent.Logger + parent: OpenTK.Core.Platform.IPalComponent + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Logger + name: Logger + nameWithType: IPalComponent.Logger + fullName: OpenTK.Core.Platform.IPalComponent.Logger +- uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + commentId: M:OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + parent: OpenTK.Core.Platform.IPalComponent + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + name: Initialize(ToolkitOptions) + nameWithType: IPalComponent.Initialize(ToolkitOptions) + fullName: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + spec.csharp: + - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + name: Initialize + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + - name: ( + - uid: OpenTK.Core.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Core.Platform.ToolkitOptions.html + - name: ) + spec.vb: + - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + name: Initialize + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + - name: ( + - uid: OpenTK.Core.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Core.Platform.ToolkitOptions.html + - name: ) +- uid: OpenTK.Core.Platform.IPalComponent + commentId: T:OpenTK.Core.Platform.IPalComponent + parent: OpenTK.Core.Platform + href: OpenTK.Core.Platform.IPalComponent.html + name: IPalComponent + nameWithType: IPalComponent + fullName: OpenTK.Core.Platform.IPalComponent +- uid: OpenTK.Core.Platform.OpenDialogOptions.SelectDirectory + commentId: F:OpenTK.Core.Platform.OpenDialogOptions.SelectDirectory + href: OpenTK.Core.Platform.OpenDialogOptions.html#OpenTK_Core_Platform_OpenDialogOptions_SelectDirectory + name: SelectDirectory + nameWithType: OpenDialogOptions.SelectDirectory + fullName: OpenTK.Core.Platform.OpenDialogOptions.SelectDirectory +- uid: OpenTK.Core.Platform.IDialogComponent.CanTargetFolders* + commentId: Overload:OpenTK.Core.Platform.IDialogComponent.CanTargetFolders + href: OpenTK.Core.Platform.IDialogComponent.html#OpenTK_Core_Platform_IDialogComponent_CanTargetFolders + name: CanTargetFolders + nameWithType: IDialogComponent.CanTargetFolders + fullName: OpenTK.Core.Platform.IDialogComponent.CanTargetFolders +- uid: System.Boolean + commentId: T:System.Boolean + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + name: bool + nameWithType: bool + fullName: bool + nameWithType.vb: Boolean + fullName.vb: Boolean + name.vb: Boolean +- uid: System + commentId: N:System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System + nameWithType: System + fullName: System +- uid: OpenTK.Core.Platform.IDialogComponent.ShowOpenDialog* + commentId: Overload:OpenTK.Core.Platform.IDialogComponent.ShowOpenDialog + href: OpenTK.Core.Platform.IDialogComponent.html#OpenTK_Core_Platform_IDialogComponent_ShowOpenDialog_OpenTK_Core_Platform_WindowHandle_System_String_System_String_OpenTK_Core_Platform_DialogFileFilter___OpenTK_Core_Platform_OpenDialogOptions_ + name: ShowOpenDialog + nameWithType: IDialogComponent.ShowOpenDialog + fullName: OpenTK.Core.Platform.IDialogComponent.ShowOpenDialog +- uid: OpenTK.Core.Platform.WindowHandle + commentId: T:OpenTK.Core.Platform.WindowHandle + parent: OpenTK.Core.Platform + href: OpenTK.Core.Platform.WindowHandle.html + name: WindowHandle + nameWithType: WindowHandle + fullName: OpenTK.Core.Platform.WindowHandle +- uid: System.String + commentId: T:System.String + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + name: string + nameWithType: string + fullName: string + nameWithType.vb: String + fullName.vb: String + name.vb: String +- uid: OpenTK.Core.Platform.DialogFileFilter[] + isExternal: true + href: OpenTK.Core.Platform.DialogFileFilter.html + name: DialogFileFilter[] + nameWithType: DialogFileFilter[] + fullName: OpenTK.Core.Platform.DialogFileFilter[] + nameWithType.vb: DialogFileFilter() + fullName.vb: OpenTK.Core.Platform.DialogFileFilter() + name.vb: DialogFileFilter() + spec.csharp: + - uid: OpenTK.Core.Platform.DialogFileFilter + name: DialogFileFilter + href: OpenTK.Core.Platform.DialogFileFilter.html + - name: '[' + - name: ']' + spec.vb: + - uid: OpenTK.Core.Platform.DialogFileFilter + name: DialogFileFilter + href: OpenTK.Core.Platform.DialogFileFilter.html + - name: ( + - name: ) +- uid: OpenTK.Core.Platform.OpenDialogOptions + commentId: T:OpenTK.Core.Platform.OpenDialogOptions + parent: OpenTK.Core.Platform + href: OpenTK.Core.Platform.OpenDialogOptions.html + name: OpenDialogOptions + nameWithType: OpenDialogOptions + fullName: OpenTK.Core.Platform.OpenDialogOptions +- uid: System.Collections.Generic.List{System.String} + commentId: T:System.Collections.Generic.List{System.String} + parent: System.Collections.Generic + definition: System.Collections.Generic.List`1 + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 + name: List + nameWithType: List + fullName: System.Collections.Generic.List + nameWithType.vb: List(Of String) + fullName.vb: System.Collections.Generic.List(Of String) + name.vb: List(Of String) + spec.csharp: + - uid: System.Collections.Generic.List`1 + name: List + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 + - name: < + - uid: System.String + name: string + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: '>' + spec.vb: + - uid: System.Collections.Generic.List`1 + name: List + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 + - name: ( + - name: Of + - name: " " + - uid: System.String + name: String + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ) +- uid: System.Collections.Generic.List`1 + commentId: T:System.Collections.Generic.List`1 + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 + name: List + nameWithType: List + fullName: System.Collections.Generic.List + nameWithType.vb: List(Of T) + fullName.vb: System.Collections.Generic.List(Of T) + name.vb: List(Of T) + spec.csharp: + - uid: System.Collections.Generic.List`1 + name: List + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 + - name: < + - name: T + - name: '>' + spec.vb: + - uid: System.Collections.Generic.List`1 + name: List + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 + - name: ( + - name: Of + - name: " " + - name: T + - name: ) +- uid: System.Collections.Generic + commentId: N:System.Collections.Generic + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System.Collections.Generic + nameWithType: System.Collections.Generic + fullName: System.Collections.Generic + spec.csharp: + - uid: System + name: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + - name: . + - uid: System.Collections + name: Collections + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections + - name: . + - uid: System.Collections.Generic + name: Generic + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic + spec.vb: + - uid: System + name: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + - name: . + - uid: System.Collections + name: Collections + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections + - name: . + - uid: System.Collections.Generic + name: Generic + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic +- uid: OpenTK.Core.Platform.IDialogComponent.ShowSaveDialog* + commentId: Overload:OpenTK.Core.Platform.IDialogComponent.ShowSaveDialog + href: OpenTK.Core.Platform.IDialogComponent.html#OpenTK_Core_Platform_IDialogComponent_ShowSaveDialog_OpenTK_Core_Platform_WindowHandle_System_String_System_String_OpenTK_Core_Platform_DialogFileFilter___OpenTK_Core_Platform_SaveDialogOptions_ + name: ShowSaveDialog + nameWithType: IDialogComponent.ShowSaveDialog + fullName: OpenTK.Core.Platform.IDialogComponent.ShowSaveDialog +- uid: OpenTK.Core.Platform.SaveDialogOptions + commentId: T:OpenTK.Core.Platform.SaveDialogOptions + parent: OpenTK.Core.Platform + href: OpenTK.Core.Platform.SaveDialogOptions.html + name: SaveDialogOptions + nameWithType: SaveDialogOptions + fullName: OpenTK.Core.Platform.SaveDialogOptions diff --git a/api/OpenTK.Core.Platform.IDisplayComponent.yml b/api/OpenTK.Core.Platform.IDisplayComponent.yml index fea9d7ae..84f80e4d 100644 --- a/api/OpenTK.Core.Platform.IDisplayComponent.yml +++ b/api/OpenTK.Core.Platform.IDisplayComponent.yml @@ -46,7 +46,7 @@ items: - OpenTK.Core.Platform.IPalComponent.Name - OpenTK.Core.Platform.IPalComponent.Provides - OpenTK.Core.Platform.IPalComponent.Logger - - OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - uid: OpenTK.Core.Platform.IDisplayComponent.CanGetVirtualPosition commentId: P:OpenTK.Core.Platform.IDisplayComponent.CanGetVirtualPosition id: CanGetVirtualPosition @@ -638,30 +638,30 @@ references: name: Logger nameWithType: IPalComponent.Logger fullName: OpenTK.Core.Platform.IPalComponent.Logger -- uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) - commentId: M:OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) +- uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + commentId: M:OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_PalComponents_ - name: Initialize(PalComponents) - nameWithType: IPalComponent.Initialize(PalComponents) - fullName: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + name: Initialize(ToolkitOptions) + nameWithType: IPalComponent.Initialize(ToolkitOptions) + fullName: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) spec.csharp: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_PalComponents_ + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.PalComponents - name: PalComponents - href: OpenTK.Core.Platform.PalComponents.html + - uid: OpenTK.Core.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Core.Platform.ToolkitOptions.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_PalComponents_ + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.PalComponents - name: PalComponents - href: OpenTK.Core.Platform.PalComponents.html + - uid: OpenTK.Core.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Core.Platform.ToolkitOptions.html - name: ) - uid: OpenTK.Core.Platform.IPalComponent commentId: T:OpenTK.Core.Platform.IPalComponent diff --git a/api/OpenTK.Core.Platform.IIconComponent.yml b/api/OpenTK.Core.Platform.IIconComponent.yml index 0752f747..2f4d6534 100644 --- a/api/OpenTK.Core.Platform.IIconComponent.yml +++ b/api/OpenTK.Core.Platform.IIconComponent.yml @@ -37,7 +37,7 @@ items: - OpenTK.Core.Platform.IPalComponent.Name - OpenTK.Core.Platform.IPalComponent.Provides - OpenTK.Core.Platform.IPalComponent.Logger - - OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - uid: OpenTK.Core.Platform.IIconComponent.CanLoadSystemIcons commentId: P:OpenTK.Core.Platform.IIconComponent.CanLoadSystemIcons id: CanLoadSystemIcons @@ -290,30 +290,30 @@ references: name: Logger nameWithType: IPalComponent.Logger fullName: OpenTK.Core.Platform.IPalComponent.Logger -- uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) - commentId: M:OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) +- uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + commentId: M:OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_PalComponents_ - name: Initialize(PalComponents) - nameWithType: IPalComponent.Initialize(PalComponents) - fullName: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + name: Initialize(ToolkitOptions) + nameWithType: IPalComponent.Initialize(ToolkitOptions) + fullName: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) spec.csharp: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_PalComponents_ + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.PalComponents - name: PalComponents - href: OpenTK.Core.Platform.PalComponents.html + - uid: OpenTK.Core.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Core.Platform.ToolkitOptions.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_PalComponents_ + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.PalComponents - name: PalComponents - href: OpenTK.Core.Platform.PalComponents.html + - uid: OpenTK.Core.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Core.Platform.ToolkitOptions.html - name: ) - uid: OpenTK.Core.Platform.IPalComponent commentId: T:OpenTK.Core.Platform.IPalComponent diff --git a/api/OpenTK.Core.Platform.IJoystickComponent.yml b/api/OpenTK.Core.Platform.IJoystickComponent.yml index 21a18ee4..f1685f20 100644 --- a/api/OpenTK.Core.Platform.IJoystickComponent.yml +++ b/api/OpenTK.Core.Platform.IJoystickComponent.yml @@ -44,7 +44,7 @@ items: - OpenTK.Core.Platform.IPalComponent.Name - OpenTK.Core.Platform.IPalComponent.Provides - OpenTK.Core.Platform.IPalComponent.Logger - - OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - uid: OpenTK.Core.Platform.IJoystickComponent.LeftDeadzone commentId: P:OpenTK.Core.Platform.IJoystickComponent.LeftDeadzone id: LeftDeadzone @@ -513,30 +513,30 @@ references: name: Logger nameWithType: IPalComponent.Logger fullName: OpenTK.Core.Platform.IPalComponent.Logger -- uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) - commentId: M:OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) +- uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + commentId: M:OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_PalComponents_ - name: Initialize(PalComponents) - nameWithType: IPalComponent.Initialize(PalComponents) - fullName: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + name: Initialize(ToolkitOptions) + nameWithType: IPalComponent.Initialize(ToolkitOptions) + fullName: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) spec.csharp: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_PalComponents_ + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.PalComponents - name: PalComponents - href: OpenTK.Core.Platform.PalComponents.html + - uid: OpenTK.Core.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Core.Platform.ToolkitOptions.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_PalComponents_ + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.PalComponents - name: PalComponents - href: OpenTK.Core.Platform.PalComponents.html + - uid: OpenTK.Core.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Core.Platform.ToolkitOptions.html - name: ) - uid: OpenTK.Core.Platform.IPalComponent commentId: T:OpenTK.Core.Platform.IPalComponent diff --git a/api/OpenTK.Core.Platform.IKeyboardComponent.yml b/api/OpenTK.Core.Platform.IKeyboardComponent.yml index 07beb2e2..1da651c1 100644 --- a/api/OpenTK.Core.Platform.IKeyboardComponent.yml +++ b/api/OpenTK.Core.Platform.IKeyboardComponent.yml @@ -43,7 +43,7 @@ items: - OpenTK.Core.Platform.IPalComponent.Name - OpenTK.Core.Platform.IPalComponent.Provides - OpenTK.Core.Platform.IPalComponent.Logger - - OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - uid: OpenTK.Core.Platform.IKeyboardComponent.SupportsLayouts commentId: P:OpenTK.Core.Platform.IKeyboardComponent.SupportsLayouts id: SupportsLayouts @@ -499,30 +499,30 @@ references: name: Logger nameWithType: IPalComponent.Logger fullName: OpenTK.Core.Platform.IPalComponent.Logger -- uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) - commentId: M:OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) +- uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + commentId: M:OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_PalComponents_ - name: Initialize(PalComponents) - nameWithType: IPalComponent.Initialize(PalComponents) - fullName: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + name: Initialize(ToolkitOptions) + nameWithType: IPalComponent.Initialize(ToolkitOptions) + fullName: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) spec.csharp: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_PalComponents_ + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.PalComponents - name: PalComponents - href: OpenTK.Core.Platform.PalComponents.html + - uid: OpenTK.Core.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Core.Platform.ToolkitOptions.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_PalComponents_ + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.PalComponents - name: PalComponents - href: OpenTK.Core.Platform.PalComponents.html + - uid: OpenTK.Core.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Core.Platform.ToolkitOptions.html - name: ) - uid: OpenTK.Core.Platform.IPalComponent commentId: T:OpenTK.Core.Platform.IPalComponent diff --git a/api/OpenTK.Core.Platform.IMouseComponent.yml b/api/OpenTK.Core.Platform.IMouseComponent.yml index f85affcb..6ac822af 100644 --- a/api/OpenTK.Core.Platform.IMouseComponent.yml +++ b/api/OpenTK.Core.Platform.IMouseComponent.yml @@ -36,7 +36,7 @@ items: - OpenTK.Core.Platform.IPalComponent.Name - OpenTK.Core.Platform.IPalComponent.Provides - OpenTK.Core.Platform.IPalComponent.Logger - - OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - uid: OpenTK.Core.Platform.IMouseComponent.CanSetMousePosition commentId: P:OpenTK.Core.Platform.IMouseComponent.CanSetMousePosition id: CanSetMousePosition @@ -86,7 +86,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetPosition path: opentk/src/OpenTK.Core/Platform/Interfaces/IMouseComponent.cs - startLine: 43 + startLine: 47 assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform @@ -124,7 +124,7 @@ items: repo: https://github.com/opentk/opentk.git id: SetPosition path: opentk/src/OpenTK.Core/Platform/Interfaces/IMouseComponent.cs - startLine: 50 + startLine: 54 assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform @@ -162,7 +162,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetMouseState path: opentk/src/OpenTK.Core/Platform/Interfaces/IMouseComponent.cs - startLine: 56 + startLine: 60 assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform @@ -231,30 +231,30 @@ references: name: Logger nameWithType: IPalComponent.Logger fullName: OpenTK.Core.Platform.IPalComponent.Logger -- uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) - commentId: M:OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) +- uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + commentId: M:OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_PalComponents_ - name: Initialize(PalComponents) - nameWithType: IPalComponent.Initialize(PalComponents) - fullName: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + name: Initialize(ToolkitOptions) + nameWithType: IPalComponent.Initialize(ToolkitOptions) + fullName: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) spec.csharp: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_PalComponents_ + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.PalComponents - name: PalComponents - href: OpenTK.Core.Platform.PalComponents.html + - uid: OpenTK.Core.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Core.Platform.ToolkitOptions.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_PalComponents_ + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.PalComponents - name: PalComponents - href: OpenTK.Core.Platform.PalComponents.html + - uid: OpenTK.Core.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Core.Platform.ToolkitOptions.html - name: ) - uid: OpenTK.Core.Platform.IPalComponent commentId: T:OpenTK.Core.Platform.IPalComponent diff --git a/api/OpenTK.Core.Platform.IOpenGLComponent.yml b/api/OpenTK.Core.Platform.IOpenGLComponent.yml index 4b09d348..7b607630 100644 --- a/api/OpenTK.Core.Platform.IOpenGLComponent.yml +++ b/api/OpenTK.Core.Platform.IOpenGLComponent.yml @@ -46,7 +46,7 @@ items: - OpenTK.Core.Platform.IPalComponent.Name - OpenTK.Core.Platform.IPalComponent.Provides - OpenTK.Core.Platform.IPalComponent.Logger - - OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - uid: OpenTK.Core.Platform.IOpenGLComponent.CanShareContexts commentId: P:OpenTK.Core.Platform.IOpenGLComponent.CanShareContexts id: CanShareContexts @@ -576,30 +576,30 @@ references: name: Logger nameWithType: IPalComponent.Logger fullName: OpenTK.Core.Platform.IPalComponent.Logger -- uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) - commentId: M:OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) +- uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + commentId: M:OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_PalComponents_ - name: Initialize(PalComponents) - nameWithType: IPalComponent.Initialize(PalComponents) - fullName: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + name: Initialize(ToolkitOptions) + nameWithType: IPalComponent.Initialize(ToolkitOptions) + fullName: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) spec.csharp: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_PalComponents_ + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.PalComponents - name: PalComponents - href: OpenTK.Core.Platform.PalComponents.html + - uid: OpenTK.Core.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Core.Platform.ToolkitOptions.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_PalComponents_ + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.PalComponents - name: PalComponents - href: OpenTK.Core.Platform.PalComponents.html + - uid: OpenTK.Core.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Core.Platform.ToolkitOptions.html - name: ) - uid: OpenTK.Core.Platform.IPalComponent commentId: T:OpenTK.Core.Platform.IPalComponent diff --git a/api/OpenTK.Core.Platform.IPalComponent.yml b/api/OpenTK.Core.Platform.IPalComponent.yml index 65755eba..6373f358 100644 --- a/api/OpenTK.Core.Platform.IPalComponent.yml +++ b/api/OpenTK.Core.Platform.IPalComponent.yml @@ -5,7 +5,7 @@ items: id: IPalComponent parent: OpenTK.Core.Platform children: - - OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - OpenTK.Core.Platform.IPalComponent.Logger - OpenTK.Core.Platform.IPalComponent.Name - OpenTK.Core.Platform.IPalComponent.Provides @@ -125,16 +125,16 @@ items: type: OpenTK.Core.Utility.ILogger content.vb: Property Logger As ILogger overload: OpenTK.Core.Platform.IPalComponent.Logger* -- uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) - commentId: M:OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) - id: Initialize(OpenTK.Core.Platform.PalComponents) +- uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + commentId: M:OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + id: Initialize(OpenTK.Core.Platform.ToolkitOptions) parent: OpenTK.Core.Platform.IPalComponent langs: - csharp - vb - name: Initialize(PalComponents) - nameWithType: IPalComponent.Initialize(PalComponents) - fullName: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + name: Initialize(ToolkitOptions) + nameWithType: IPalComponent.Initialize(ToolkitOptions) + fullName: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) type: Method source: remote: @@ -147,15 +147,15 @@ items: assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform - summary: Initialize the driver. + summary: Initialize the component. example: [] syntax: - content: void Initialize(PalComponents which) + content: void Initialize(ToolkitOptions options) parameters: - - id: which - type: OpenTK.Core.Platform.PalComponents - description: Bitfield of which components the driver need to be initialized. - content.vb: Sub Initialize(which As PalComponents) + - id: options + type: OpenTK.Core.Platform.ToolkitOptions + description: The options to initialize the component with. + content.vb: Sub Initialize(options As ToolkitOptions) overload: OpenTK.Core.Platform.IPalComponent.Initialize* references: - uid: OpenTK.Core.Platform @@ -270,7 +270,14 @@ references: href: OpenTK.Core.Utility.html - uid: OpenTK.Core.Platform.IPalComponent.Initialize* commentId: Overload:OpenTK.Core.Platform.IPalComponent.Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_PalComponents_ + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ name: Initialize nameWithType: IPalComponent.Initialize fullName: OpenTK.Core.Platform.IPalComponent.Initialize +- uid: OpenTK.Core.Platform.ToolkitOptions + commentId: T:OpenTK.Core.Platform.ToolkitOptions + parent: OpenTK.Core.Platform + href: OpenTK.Core.Platform.ToolkitOptions.html + name: ToolkitOptions + nameWithType: ToolkitOptions + fullName: OpenTK.Core.Platform.ToolkitOptions diff --git a/api/OpenTK.Core.Platform.IShellComponent.yml b/api/OpenTK.Core.Platform.IShellComponent.yml index 86d07108..8e694c20 100644 --- a/api/OpenTK.Core.Platform.IShellComponent.yml +++ b/api/OpenTK.Core.Platform.IShellComponent.yml @@ -36,7 +36,7 @@ items: - OpenTK.Core.Platform.IPalComponent.Name - OpenTK.Core.Platform.IPalComponent.Provides - OpenTK.Core.Platform.IPalComponent.Logger - - OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - uid: OpenTK.Core.Platform.IShellComponent.AllowScreenSaver(System.Boolean) commentId: M:OpenTK.Core.Platform.IShellComponent.AllowScreenSaver(System.Boolean) id: AllowScreenSaver(System.Boolean) @@ -233,30 +233,30 @@ references: name: Logger nameWithType: IPalComponent.Logger fullName: OpenTK.Core.Platform.IPalComponent.Logger -- uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) - commentId: M:OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) +- uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + commentId: M:OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_PalComponents_ - name: Initialize(PalComponents) - nameWithType: IPalComponent.Initialize(PalComponents) - fullName: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + name: Initialize(ToolkitOptions) + nameWithType: IPalComponent.Initialize(ToolkitOptions) + fullName: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) spec.csharp: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_PalComponents_ + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.PalComponents - name: PalComponents - href: OpenTK.Core.Platform.PalComponents.html + - uid: OpenTK.Core.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Core.Platform.ToolkitOptions.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_PalComponents_ + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.PalComponents - name: PalComponents - href: OpenTK.Core.Platform.PalComponents.html + - uid: OpenTK.Core.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Core.Platform.ToolkitOptions.html - name: ) - uid: OpenTK.Core.Platform.IPalComponent commentId: T:OpenTK.Core.Platform.IPalComponent diff --git a/api/OpenTK.Core.Platform.ISurfaceComponent.yml b/api/OpenTK.Core.Platform.ISurfaceComponent.yml index 70e5539e..31ae294b 100644 --- a/api/OpenTK.Core.Platform.ISurfaceComponent.yml +++ b/api/OpenTK.Core.Platform.ISurfaceComponent.yml @@ -38,7 +38,7 @@ items: - OpenTK.Core.Platform.IPalComponent.Name - OpenTK.Core.Platform.IPalComponent.Provides - OpenTK.Core.Platform.IPalComponent.Logger - - OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - uid: OpenTK.Core.Platform.ISurfaceComponent.Create commentId: M:OpenTK.Core.Platform.ISurfaceComponent.Create id: Create @@ -300,30 +300,30 @@ references: name: Logger nameWithType: IPalComponent.Logger fullName: OpenTK.Core.Platform.IPalComponent.Logger -- uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) - commentId: M:OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) +- uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + commentId: M:OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_PalComponents_ - name: Initialize(PalComponents) - nameWithType: IPalComponent.Initialize(PalComponents) - fullName: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + name: Initialize(ToolkitOptions) + nameWithType: IPalComponent.Initialize(ToolkitOptions) + fullName: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) spec.csharp: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_PalComponents_ + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.PalComponents - name: PalComponents - href: OpenTK.Core.Platform.PalComponents.html + - uid: OpenTK.Core.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Core.Platform.ToolkitOptions.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_PalComponents_ + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.PalComponents - name: PalComponents - href: OpenTK.Core.Platform.PalComponents.html + - uid: OpenTK.Core.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Core.Platform.ToolkitOptions.html - name: ) - uid: OpenTK.Core.Platform.IPalComponent commentId: T:OpenTK.Core.Platform.IPalComponent diff --git a/api/OpenTK.Core.Platform.IWindowComponent.yml b/api/OpenTK.Core.Platform.IWindowComponent.yml index 9d36d89f..f45859e9 100644 --- a/api/OpenTK.Core.Platform.IWindowComponent.yml +++ b/api/OpenTK.Core.Platform.IWindowComponent.yml @@ -20,15 +20,18 @@ items: - OpenTK.Core.Platform.IWindowComponent.GetClientSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) - OpenTK.Core.Platform.IWindowComponent.GetCursorCaptureMode(OpenTK.Core.Platform.WindowHandle) - OpenTK.Core.Platform.IWindowComponent.GetDisplay(OpenTK.Core.Platform.WindowHandle) + - OpenTK.Core.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) - OpenTK.Core.Platform.IWindowComponent.GetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle@) - OpenTK.Core.Platform.IWindowComponent.GetIcon(OpenTK.Core.Platform.WindowHandle) - OpenTK.Core.Platform.IWindowComponent.GetMaxClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) - OpenTK.Core.Platform.IWindowComponent.GetMinClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) - OpenTK.Core.Platform.IWindowComponent.GetMode(OpenTK.Core.Platform.WindowHandle) - OpenTK.Core.Platform.IWindowComponent.GetPosition(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) + - OpenTK.Core.Platform.IWindowComponent.GetScaleFactor(OpenTK.Core.Platform.WindowHandle,System.Single@,System.Single@) - OpenTK.Core.Platform.IWindowComponent.GetSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) - OpenTK.Core.Platform.IWindowComponent.GetTitle(OpenTK.Core.Platform.WindowHandle) - OpenTK.Core.Platform.IWindowComponent.IsAlwaysOnTop(OpenTK.Core.Platform.WindowHandle) + - OpenTK.Core.Platform.IWindowComponent.IsFocused(OpenTK.Core.Platform.WindowHandle) - OpenTK.Core.Platform.IWindowComponent.IsWindowDestroyed(OpenTK.Core.Platform.WindowHandle) - OpenTK.Core.Platform.IWindowComponent.ProcessEvents(System.Boolean) - OpenTK.Core.Platform.IWindowComponent.RequestAttention(OpenTK.Core.Platform.WindowHandle) @@ -81,7 +84,7 @@ items: - OpenTK.Core.Platform.IPalComponent.Name - OpenTK.Core.Platform.IPalComponent.Provides - OpenTK.Core.Platform.IPalComponent.Logger - - OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - uid: OpenTK.Core.Platform.IWindowComponent.CanSetIcon commentId: P:OpenTK.Core.Platform.IWindowComponent.CanSetIcon id: CanSetIcon @@ -1153,6 +1156,50 @@ items: nameWithType.vb: IWindowComponent.SetClientBounds(WindowHandle, Integer, Integer, Integer, Integer) fullName.vb: OpenTK.Core.Platform.IWindowComponent.SetClientBounds(OpenTK.Core.Platform.WindowHandle, Integer, Integer, Integer, Integer) name.vb: SetClientBounds(WindowHandle, Integer, Integer, Integer, Integer) +- uid: OpenTK.Core.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) + commentId: M:OpenTK.Core.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) + id: GetFramebufferSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) + parent: OpenTK.Core.Platform.IWindowComponent + langs: + - csharp + - vb + name: GetFramebufferSize(WindowHandle, out int, out int) + nameWithType: IWindowComponent.GetFramebufferSize(WindowHandle, out int, out int) + fullName: OpenTK.Core.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Core.Platform.WindowHandle, out int, out int) + type: Method + source: + remote: + path: src/OpenTK.Core/Platform/Interfaces/IWindowComponent.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: GetFramebufferSize + path: opentk/src/OpenTK.Core/Platform/Interfaces/IWindowComponent.cs + startLine: 251 + assemblies: + - OpenTK.Core + namespace: OpenTK.Core.Platform + summary: >- + Get the size of the window framebuffer in pixels. + + Use this value when calls to graphics APIs that want pixels, e.g. GL.Viewport(). + example: [] + syntax: + content: void GetFramebufferSize(WindowHandle handle, out int width, out int height) + parameters: + - id: handle + type: OpenTK.Core.Platform.WindowHandle + description: Handle to a window. + - id: width + type: System.Int32 + description: Width in pixels of the window framebuffer. + - id: height + type: System.Int32 + description: Height in pixels of the window framebuffer. + content.vb: Sub GetFramebufferSize(handle As WindowHandle, width As Integer, height As Integer) + overload: OpenTK.Core.Platform.IWindowComponent.GetFramebufferSize* + nameWithType.vb: IWindowComponent.GetFramebufferSize(WindowHandle, Integer, Integer) + fullName.vb: OpenTK.Core.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Core.Platform.WindowHandle, Integer, Integer) + name.vb: GetFramebufferSize(WindowHandle, Integer, Integer) - uid: OpenTK.Core.Platform.IWindowComponent.GetMaxClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) commentId: M:OpenTK.Core.Platform.IWindowComponent.GetMaxClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) id: GetMaxClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) @@ -1171,7 +1218,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetMaxClientSize path: opentk/src/OpenTK.Core/Platform/Interfaces/IWindowComponent.cs - startLine: 250 + startLine: 259 assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform @@ -1212,7 +1259,7 @@ items: repo: https://github.com/opentk/opentk.git id: SetMaxClientSize path: opentk/src/OpenTK.Core/Platform/Interfaces/IWindowComponent.cs - startLine: 258 + startLine: 267 assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform @@ -1253,7 +1300,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetMinClientSize path: opentk/src/OpenTK.Core/Platform/Interfaces/IWindowComponent.cs - startLine: 266 + startLine: 275 assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform @@ -1294,7 +1341,7 @@ items: repo: https://github.com/opentk/opentk.git id: SetMinClientSize path: opentk/src/OpenTK.Core/Platform/Interfaces/IWindowComponent.cs - startLine: 274 + startLine: 283 assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform @@ -1335,7 +1382,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetDisplay path: opentk/src/OpenTK.Core/Platform/Interfaces/IWindowComponent.cs - startLine: 285 + startLine: 294 assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform @@ -1377,7 +1424,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetMode path: opentk/src/OpenTK.Core/Platform/Interfaces/IWindowComponent.cs - startLine: 293 + startLine: 302 assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform @@ -1416,7 +1463,7 @@ items: repo: https://github.com/opentk/opentk.git id: SetMode path: opentk/src/OpenTK.Core/Platform/Interfaces/IWindowComponent.cs - startLine: 311 + startLine: 320 assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform @@ -1469,7 +1516,7 @@ items: repo: https://github.com/opentk/opentk.git id: SetFullscreenDisplay path: opentk/src/OpenTK.Core/Platform/Interfaces/IWindowComponent.cs - startLine: 322 + startLine: 331 assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform @@ -1511,7 +1558,7 @@ items: repo: https://github.com/opentk/opentk.git id: SetFullscreenDisplay path: opentk/src/OpenTK.Core/Platform/Interfaces/IWindowComponent.cs - startLine: 335 + startLine: 344 assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform @@ -1555,7 +1602,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetFullscreenDisplay path: opentk/src/OpenTK.Core/Platform/Interfaces/IWindowComponent.cs - startLine: 343 + startLine: 352 assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform @@ -1596,7 +1643,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetBorderStyle path: opentk/src/OpenTK.Core/Platform/Interfaces/IWindowComponent.cs - startLine: 351 + startLine: 360 assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform @@ -1635,7 +1682,7 @@ items: repo: https://github.com/opentk/opentk.git id: SetBorderStyle path: opentk/src/OpenTK.Core/Platform/Interfaces/IWindowComponent.cs - startLine: 363 + startLine: 372 assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform @@ -1680,7 +1727,7 @@ items: repo: https://github.com/opentk/opentk.git id: SetAlwaysOnTop path: opentk/src/OpenTK.Core/Platform/Interfaces/IWindowComponent.cs - startLine: 370 + startLine: 379 assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform @@ -1718,7 +1765,7 @@ items: repo: https://github.com/opentk/opentk.git id: IsAlwaysOnTop path: opentk/src/OpenTK.Core/Platform/Interfaces/IWindowComponent.cs - startLine: 377 + startLine: 386 assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform @@ -1753,7 +1800,7 @@ items: repo: https://github.com/opentk/opentk.git id: SetHitTestCallback path: opentk/src/OpenTK.Core/Platform/Interfaces/IWindowComponent.cs - startLine: 389 + startLine: 398 assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform @@ -1801,7 +1848,7 @@ items: repo: https://github.com/opentk/opentk.git id: SetCursor path: opentk/src/OpenTK.Core/Platform/Interfaces/IWindowComponent.cs - startLine: 402 + startLine: 411 assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform @@ -1846,7 +1893,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetCursorCaptureMode path: opentk/src/OpenTK.Core/Platform/Interfaces/IWindowComponent.cs - startLine: 409 + startLine: 418 assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform @@ -1881,7 +1928,7 @@ items: repo: https://github.com/opentk/opentk.git id: SetCursorCaptureMode path: opentk/src/OpenTK.Core/Platform/Interfaces/IWindowComponent.cs - startLine: 417 + startLine: 426 assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform @@ -1901,6 +1948,41 @@ items: description: The cursor capture mode. content.vb: Sub SetCursorCaptureMode(handle As WindowHandle, mode As CursorCaptureMode) overload: OpenTK.Core.Platform.IWindowComponent.SetCursorCaptureMode* +- uid: OpenTK.Core.Platform.IWindowComponent.IsFocused(OpenTK.Core.Platform.WindowHandle) + commentId: M:OpenTK.Core.Platform.IWindowComponent.IsFocused(OpenTK.Core.Platform.WindowHandle) + id: IsFocused(OpenTK.Core.Platform.WindowHandle) + parent: OpenTK.Core.Platform.IWindowComponent + langs: + - csharp + - vb + name: IsFocused(WindowHandle) + nameWithType: IWindowComponent.IsFocused(WindowHandle) + fullName: OpenTK.Core.Platform.IWindowComponent.IsFocused(OpenTK.Core.Platform.WindowHandle) + type: Method + source: + remote: + path: src/OpenTK.Core/Platform/Interfaces/IWindowComponent.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: IsFocused + path: opentk/src/OpenTK.Core/Platform/Interfaces/IWindowComponent.cs + startLine: 433 + assemblies: + - OpenTK.Core + namespace: OpenTK.Core.Platform + summary: Returns true if the given window has input focus. + example: [] + syntax: + content: bool IsFocused(WindowHandle handle) + parameters: + - id: handle + type: OpenTK.Core.Platform.WindowHandle + description: Handle to a window. + return: + type: System.Boolean + description: If the window has input focus. + content.vb: Function IsFocused(handle As WindowHandle) As Boolean + overload: OpenTK.Core.Platform.IWindowComponent.IsFocused* - uid: OpenTK.Core.Platform.IWindowComponent.FocusWindow(OpenTK.Core.Platform.WindowHandle) commentId: M:OpenTK.Core.Platform.IWindowComponent.FocusWindow(OpenTK.Core.Platform.WindowHandle) id: FocusWindow(OpenTK.Core.Platform.WindowHandle) @@ -1919,7 +2001,7 @@ items: repo: https://github.com/opentk/opentk.git id: FocusWindow path: opentk/src/OpenTK.Core/Platform/Interfaces/IWindowComponent.cs - startLine: 423 + startLine: 439 assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform @@ -1951,7 +2033,7 @@ items: repo: https://github.com/opentk/opentk.git id: RequestAttention path: opentk/src/OpenTK.Core/Platform/Interfaces/IWindowComponent.cs - startLine: 429 + startLine: 445 assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform @@ -1983,7 +2065,7 @@ items: repo: https://github.com/opentk/opentk.git id: ScreenToClient path: opentk/src/OpenTK.Core/Platform/Interfaces/IWindowComponent.cs - startLine: 440 + startLine: 456 assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform @@ -2030,7 +2112,7 @@ items: repo: https://github.com/opentk/opentk.git id: ClientToScreen path: opentk/src/OpenTK.Core/Platform/Interfaces/IWindowComponent.cs - startLine: 451 + startLine: 467 assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform @@ -2059,6 +2141,50 @@ items: nameWithType.vb: IWindowComponent.ClientToScreen(WindowHandle, Integer, Integer, Integer, Integer) fullName.vb: OpenTK.Core.Platform.IWindowComponent.ClientToScreen(OpenTK.Core.Platform.WindowHandle, Integer, Integer, Integer, Integer) name.vb: ClientToScreen(WindowHandle, Integer, Integer, Integer, Integer) +- uid: OpenTK.Core.Platform.IWindowComponent.GetScaleFactor(OpenTK.Core.Platform.WindowHandle,System.Single@,System.Single@) + commentId: M:OpenTK.Core.Platform.IWindowComponent.GetScaleFactor(OpenTK.Core.Platform.WindowHandle,System.Single@,System.Single@) + id: GetScaleFactor(OpenTK.Core.Platform.WindowHandle,System.Single@,System.Single@) + parent: OpenTK.Core.Platform.IWindowComponent + langs: + - csharp + - vb + name: GetScaleFactor(WindowHandle, out float, out float) + nameWithType: IWindowComponent.GetScaleFactor(WindowHandle, out float, out float) + fullName: OpenTK.Core.Platform.IWindowComponent.GetScaleFactor(OpenTK.Core.Platform.WindowHandle, out float, out float) + type: Method + source: + remote: + path: src/OpenTK.Core/Platform/Interfaces/IWindowComponent.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: GetScaleFactor + path: opentk/src/OpenTK.Core/Platform/Interfaces/IWindowComponent.cs + startLine: 476 + assemblies: + - OpenTK.Core + namespace: OpenTK.Core.Platform + summary: Returns the current scale factor of this window. + example: [] + syntax: + content: void GetScaleFactor(WindowHandle handle, out float scaleX, out float scaleY) + parameters: + - id: handle + type: OpenTK.Core.Platform.WindowHandle + description: The window handle. + - id: scaleX + type: System.Single + description: The x scale factor of the window. + - id: scaleY + type: System.Single + description: The y scale factor of the window. + content.vb: Sub GetScaleFactor(handle As WindowHandle, scaleX As Single, scaleY As Single) + overload: OpenTK.Core.Platform.IWindowComponent.GetScaleFactor* + seealso: + - linkId: OpenTK.Core.Platform.WindowScaleChangeEventArgs + commentId: T:OpenTK.Core.Platform.WindowScaleChangeEventArgs + nameWithType.vb: IWindowComponent.GetScaleFactor(WindowHandle, Single, Single) + fullName.vb: OpenTK.Core.Platform.IWindowComponent.GetScaleFactor(OpenTK.Core.Platform.WindowHandle, Single, Single) + name.vb: GetScaleFactor(WindowHandle, Single, Single) references: - uid: OpenTK.Core.Platform commentId: N:OpenTK.Core.Platform @@ -2111,30 +2237,30 @@ references: name: Logger nameWithType: IPalComponent.Logger fullName: OpenTK.Core.Platform.IPalComponent.Logger -- uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) - commentId: M:OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) +- uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + commentId: M:OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_PalComponents_ - name: Initialize(PalComponents) - nameWithType: IPalComponent.Initialize(PalComponents) - fullName: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + name: Initialize(ToolkitOptions) + nameWithType: IPalComponent.Initialize(ToolkitOptions) + fullName: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) spec.csharp: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_PalComponents_ + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.PalComponents - name: PalComponents - href: OpenTK.Core.Platform.PalComponents.html + - uid: OpenTK.Core.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Core.Platform.ToolkitOptions.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_PalComponents_ + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.PalComponents - name: PalComponents - href: OpenTK.Core.Platform.PalComponents.html + - uid: OpenTK.Core.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Core.Platform.ToolkitOptions.html - name: ) - uid: OpenTK.Core.Platform.IPalComponent commentId: T:OpenTK.Core.Platform.IPalComponent @@ -2589,6 +2715,12 @@ references: name: SetClientBounds nameWithType: IWindowComponent.SetClientBounds fullName: OpenTK.Core.Platform.IWindowComponent.SetClientBounds +- uid: OpenTK.Core.Platform.IWindowComponent.GetFramebufferSize* + commentId: Overload:OpenTK.Core.Platform.IWindowComponent.GetFramebufferSize + href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetFramebufferSize_OpenTK_Core_Platform_WindowHandle_System_Int32__System_Int32__ + name: GetFramebufferSize + nameWithType: IWindowComponent.GetFramebufferSize + fullName: OpenTK.Core.Platform.IWindowComponent.GetFramebufferSize - uid: OpenTK.Core.Platform.IWindowComponent.GetMaxClientSize* commentId: Overload:OpenTK.Core.Platform.IWindowComponent.GetMaxClientSize href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetMaxClientSize_OpenTK_Core_Platform_WindowHandle_System_Nullable_System_Int32___System_Nullable_System_Int32___ @@ -2985,6 +3117,12 @@ references: name: SetCursorCaptureMode nameWithType: IWindowComponent.SetCursorCaptureMode fullName: OpenTK.Core.Platform.IWindowComponent.SetCursorCaptureMode +- uid: OpenTK.Core.Platform.IWindowComponent.IsFocused* + commentId: Overload:OpenTK.Core.Platform.IWindowComponent.IsFocused + href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_IsFocused_OpenTK_Core_Platform_WindowHandle_ + name: IsFocused + nameWithType: IWindowComponent.IsFocused + fullName: OpenTK.Core.Platform.IWindowComponent.IsFocused - uid: OpenTK.Core.Platform.IWindowComponent.FocusWindow* commentId: Overload:OpenTK.Core.Platform.IWindowComponent.FocusWindow href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_FocusWindow_OpenTK_Core_Platform_WindowHandle_ @@ -3009,3 +3147,26 @@ references: name: ClientToScreen nameWithType: IWindowComponent.ClientToScreen fullName: OpenTK.Core.Platform.IWindowComponent.ClientToScreen +- uid: OpenTK.Core.Platform.WindowScaleChangeEventArgs + commentId: T:OpenTK.Core.Platform.WindowScaleChangeEventArgs + href: OpenTK.Core.Platform.WindowScaleChangeEventArgs.html + name: WindowScaleChangeEventArgs + nameWithType: WindowScaleChangeEventArgs + fullName: OpenTK.Core.Platform.WindowScaleChangeEventArgs +- uid: OpenTK.Core.Platform.IWindowComponent.GetScaleFactor* + commentId: Overload:OpenTK.Core.Platform.IWindowComponent.GetScaleFactor + href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetScaleFactor_OpenTK_Core_Platform_WindowHandle_System_Single__System_Single__ + name: GetScaleFactor + nameWithType: IWindowComponent.GetScaleFactor + fullName: OpenTK.Core.Platform.IWindowComponent.GetScaleFactor +- uid: System.Single + commentId: T:System.Single + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.single + name: float + nameWithType: float + fullName: float + nameWithType.vb: Single + fullName.vb: Single + name.vb: Single diff --git a/api/OpenTK.Core.Platform.InputLanguageChangedEventArgs.yml b/api/OpenTK.Core.Platform.InputLanguageChangedEventArgs.yml index f11954a7..3ebf52c4 100644 --- a/api/OpenTK.Core.Platform.InputLanguageChangedEventArgs.yml +++ b/api/OpenTK.Core.Platform.InputLanguageChangedEventArgs.yml @@ -24,7 +24,7 @@ items: repo: https://github.com/opentk/opentk.git id: InputLanguageChangedEventArgs path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs - startLine: 320 + startLine: 337 assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform @@ -74,7 +74,7 @@ items: repo: https://github.com/opentk/opentk.git id: KeyboardLayout path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs - startLine: 326 + startLine: 343 assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform @@ -108,7 +108,7 @@ items: repo: https://github.com/opentk/opentk.git id: KeyboardLayoutDisplayName path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs - startLine: 331 + startLine: 348 assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform @@ -139,7 +139,7 @@ items: repo: https://github.com/opentk/opentk.git id: InputLanguage path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs - startLine: 339 + startLine: 356 assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform @@ -176,7 +176,7 @@ items: repo: https://github.com/opentk/opentk.git id: InputLanguageDisplayName path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs - startLine: 344 + startLine: 361 assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform @@ -207,7 +207,7 @@ items: repo: https://github.com/opentk/opentk.git id: .ctor path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs - startLine: 353 + startLine: 370 assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform diff --git a/api/OpenTK.Core.Platform.KeyDownEventArgs.yml b/api/OpenTK.Core.Platform.KeyDownEventArgs.yml index 11ea48b8..f9c1785f 100644 --- a/api/OpenTK.Core.Platform.KeyDownEventArgs.yml +++ b/api/OpenTK.Core.Platform.KeyDownEventArgs.yml @@ -24,7 +24,7 @@ items: repo: https://github.com/opentk/opentk.git id: KeyDownEventArgs path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs - startLine: 174 + startLine: 191 assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform @@ -66,7 +66,7 @@ items: repo: https://github.com/opentk/opentk.git id: Key path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs - startLine: 180 + startLine: 197 assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform @@ -100,7 +100,7 @@ items: repo: https://github.com/opentk/opentk.git id: Scancode path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs - startLine: 186 + startLine: 203 assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform @@ -134,7 +134,7 @@ items: repo: https://github.com/opentk/opentk.git id: IsRepeat path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs - startLine: 191 + startLine: 208 assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform @@ -165,7 +165,7 @@ items: repo: https://github.com/opentk/opentk.git id: Modifiers path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs - startLine: 196 + startLine: 213 assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform @@ -196,7 +196,7 @@ items: repo: https://github.com/opentk/opentk.git id: .ctor path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs - startLine: 206 + startLine: 223 assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform diff --git a/api/OpenTK.Core.Platform.KeyUpEventArgs.yml b/api/OpenTK.Core.Platform.KeyUpEventArgs.yml index 30d4d7b4..946b6dc2 100644 --- a/api/OpenTK.Core.Platform.KeyUpEventArgs.yml +++ b/api/OpenTK.Core.Platform.KeyUpEventArgs.yml @@ -23,7 +23,7 @@ items: repo: https://github.com/opentk/opentk.git id: KeyUpEventArgs path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs - startLine: 219 + startLine: 236 assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform @@ -65,7 +65,7 @@ items: repo: https://github.com/opentk/opentk.git id: Key path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs - startLine: 227 + startLine: 244 assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform @@ -99,7 +99,7 @@ items: repo: https://github.com/opentk/opentk.git id: Scancode path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs - startLine: 233 + startLine: 250 assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform @@ -133,7 +133,7 @@ items: repo: https://github.com/opentk/opentk.git id: Modifiers path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs - startLine: 238 + startLine: 255 assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform @@ -164,7 +164,7 @@ items: repo: https://github.com/opentk/opentk.git id: .ctor path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs - startLine: 247 + startLine: 264 assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform diff --git a/api/OpenTK.Core.Platform.MouseButtonDownEventArgs.yml b/api/OpenTK.Core.Platform.MouseButtonDownEventArgs.yml index 7e0eb032..c977d1ff 100644 --- a/api/OpenTK.Core.Platform.MouseButtonDownEventArgs.yml +++ b/api/OpenTK.Core.Platform.MouseButtonDownEventArgs.yml @@ -22,7 +22,7 @@ items: repo: https://github.com/opentk/opentk.git id: MouseButtonDownEventArgs path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs - startLine: 415 + startLine: 434 assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform @@ -63,7 +63,7 @@ items: repo: https://github.com/opentk/opentk.git id: Button path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs - startLine: 420 + startLine: 439 assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform @@ -94,7 +94,7 @@ items: repo: https://github.com/opentk/opentk.git id: Modifiers path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs - startLine: 425 + startLine: 444 assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform @@ -125,7 +125,7 @@ items: repo: https://github.com/opentk/opentk.git id: .ctor path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs - startLine: 433 + startLine: 452 assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform diff --git a/api/OpenTK.Core.Platform.MouseButtonUpEventArgs.yml b/api/OpenTK.Core.Platform.MouseButtonUpEventArgs.yml index c5c2757e..c809518e 100644 --- a/api/OpenTK.Core.Platform.MouseButtonUpEventArgs.yml +++ b/api/OpenTK.Core.Platform.MouseButtonUpEventArgs.yml @@ -22,7 +22,7 @@ items: repo: https://github.com/opentk/opentk.git id: MouseButtonUpEventArgs path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs - startLine: 443 + startLine: 462 assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform @@ -63,7 +63,7 @@ items: repo: https://github.com/opentk/opentk.git id: Button path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs - startLine: 448 + startLine: 467 assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform @@ -94,7 +94,7 @@ items: repo: https://github.com/opentk/opentk.git id: Modifiers path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs - startLine: 453 + startLine: 472 assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform @@ -125,7 +125,7 @@ items: repo: https://github.com/opentk/opentk.git id: .ctor path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs - startLine: 461 + startLine: 480 assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform diff --git a/api/OpenTK.Core.Platform.MouseEnterEventArgs.yml b/api/OpenTK.Core.Platform.MouseEnterEventArgs.yml index ee4fc024..0f5d9f09 100644 --- a/api/OpenTK.Core.Platform.MouseEnterEventArgs.yml +++ b/api/OpenTK.Core.Platform.MouseEnterEventArgs.yml @@ -21,7 +21,7 @@ items: repo: https://github.com/opentk/opentk.git id: MouseEnterEventArgs path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs - startLine: 365 + startLine: 382 assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform @@ -62,7 +62,7 @@ items: repo: https://github.com/opentk/opentk.git id: Entered path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs - startLine: 370 + startLine: 387 assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform @@ -93,7 +93,7 @@ items: repo: https://github.com/opentk/opentk.git id: .ctor path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs - startLine: 378 + startLine: 395 assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform diff --git a/api/OpenTK.Core.Platform.MouseMoveEventArgs.yml b/api/OpenTK.Core.Platform.MouseMoveEventArgs.yml index e16802e7..fc2c1895 100644 --- a/api/OpenTK.Core.Platform.MouseMoveEventArgs.yml +++ b/api/OpenTK.Core.Platform.MouseMoveEventArgs.yml @@ -21,7 +21,7 @@ items: repo: https://github.com/opentk/opentk.git id: MouseMoveEventArgs path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs - startLine: 389 + startLine: 406 assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform @@ -62,7 +62,7 @@ items: repo: https://github.com/opentk/opentk.git id: Position path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs - startLine: 396 + startLine: 415 assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform @@ -93,7 +93,7 @@ items: repo: https://github.com/opentk/opentk.git id: .ctor path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs - startLine: 403 + startLine: 422 assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform diff --git a/api/OpenTK.Core.Platform.OpenDialogOptions.yml b/api/OpenTK.Core.Platform.OpenDialogOptions.yml new file mode 100644 index 00000000..709f618a --- /dev/null +++ b/api/OpenTK.Core.Platform.OpenDialogOptions.yml @@ -0,0 +1,136 @@ +### YamlMime:ManagedReference +items: +- uid: OpenTK.Core.Platform.OpenDialogOptions + commentId: T:OpenTK.Core.Platform.OpenDialogOptions + id: OpenDialogOptions + parent: OpenTK.Core.Platform + children: + - OpenTK.Core.Platform.OpenDialogOptions.AllowMultiSelect + - OpenTK.Core.Platform.OpenDialogOptions.SelectDirectory + langs: + - csharp + - vb + name: OpenDialogOptions + nameWithType: OpenDialogOptions + fullName: OpenTK.Core.Platform.OpenDialogOptions + type: Enum + source: + remote: + path: src/OpenTK.Core/Platform/Enums/OpenDialogOptions.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: OpenDialogOptions + path: opentk/src/OpenTK.Core/Platform/Enums/OpenDialogOptions.cs + startLine: 11 + assemblies: + - OpenTK.Core + namespace: OpenTK.Core.Platform + summary: Options for open dialogs. + example: [] + syntax: + content: >- + [Flags] + + public enum OpenDialogOptions + content.vb: >- + + + Public Enum OpenDialogOptions + attributes: + - type: System.FlagsAttribute + ctor: System.FlagsAttribute.#ctor + arguments: [] +- uid: OpenTK.Core.Platform.OpenDialogOptions.AllowMultiSelect + commentId: F:OpenTK.Core.Platform.OpenDialogOptions.AllowMultiSelect + id: AllowMultiSelect + parent: OpenTK.Core.Platform.OpenDialogOptions + langs: + - csharp + - vb + name: AllowMultiSelect + nameWithType: OpenDialogOptions.AllowMultiSelect + fullName: OpenTK.Core.Platform.OpenDialogOptions.AllowMultiSelect + type: Field + source: + remote: + path: src/OpenTK.Core/Platform/Enums/OpenDialogOptions.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: AllowMultiSelect + path: opentk/src/OpenTK.Core/Platform/Enums/OpenDialogOptions.cs + startLine: 17 + assemblies: + - OpenTK.Core + namespace: OpenTK.Core.Platform + summary: Allows multiple items to be selected. + example: [] + syntax: + content: AllowMultiSelect = 1 + return: + type: OpenTK.Core.Platform.OpenDialogOptions +- uid: OpenTK.Core.Platform.OpenDialogOptions.SelectDirectory + commentId: F:OpenTK.Core.Platform.OpenDialogOptions.SelectDirectory + id: SelectDirectory + parent: OpenTK.Core.Platform.OpenDialogOptions + langs: + - csharp + - vb + name: SelectDirectory + nameWithType: OpenDialogOptions.SelectDirectory + fullName: OpenTK.Core.Platform.OpenDialogOptions.SelectDirectory + type: Field + source: + remote: + path: src/OpenTK.Core/Platform/Enums/OpenDialogOptions.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: SelectDirectory + path: opentk/src/OpenTK.Core/Platform/Enums/OpenDialogOptions.cs + startLine: 23 + assemblies: + - OpenTK.Core + namespace: OpenTK.Core.Platform + summary: Select directories instead of files. + example: [] + syntax: + content: SelectDirectory = 2 + return: + type: OpenTK.Core.Platform.OpenDialogOptions +references: +- uid: OpenTK.Core.Platform + commentId: N:OpenTK.Core.Platform + href: OpenTK.html + name: OpenTK.Core.Platform + nameWithType: OpenTK.Core.Platform + fullName: OpenTK.Core.Platform + spec.csharp: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Core + name: Core + href: OpenTK.Core.html + - name: . + - uid: OpenTK.Core.Platform + name: Platform + href: OpenTK.Core.Platform.html + spec.vb: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Core + name: Core + href: OpenTK.Core.html + - name: . + - uid: OpenTK.Core.Platform + name: Platform + href: OpenTK.Core.Platform.html +- uid: OpenTK.Core.Platform.OpenDialogOptions + commentId: T:OpenTK.Core.Platform.OpenDialogOptions + parent: OpenTK.Core.Platform + href: OpenTK.Core.Platform.OpenDialogOptions.html + name: OpenDialogOptions + nameWithType: OpenDialogOptions + fullName: OpenTK.Core.Platform.OpenDialogOptions diff --git a/api/OpenTK.Core.Platform.OpenGLGraphicsApiHints.yml b/api/OpenTK.Core.Platform.OpenGLGraphicsApiHints.yml index 9e81fa7d..7f2541aa 100644 --- a/api/OpenTK.Core.Platform.OpenGLGraphicsApiHints.yml +++ b/api/OpenTK.Core.Platform.OpenGLGraphicsApiHints.yml @@ -5,7 +5,7 @@ items: id: OpenGLGraphicsApiHints parent: OpenTK.Core.Platform children: - - OpenTK.Core.Platform.OpenGLGraphicsApiHints.#ctor(OpenTK.Core.Platform.GraphicsApi) + - OpenTK.Core.Platform.OpenGLGraphicsApiHints.#ctor - OpenTK.Core.Platform.OpenGLGraphicsApiHints.AlphaColorBits - OpenTK.Core.Platform.OpenGLGraphicsApiHints.Api - OpenTK.Core.Platform.OpenGLGraphicsApiHints.BlueColorBits @@ -16,10 +16,20 @@ items: - OpenTK.Core.Platform.OpenGLGraphicsApiHints.ForwardCompatibleFlag - OpenTK.Core.Platform.OpenGLGraphicsApiHints.GreenColorBits - OpenTK.Core.Platform.OpenGLGraphicsApiHints.Multisamples + - OpenTK.Core.Platform.OpenGLGraphicsApiHints.NoError + - OpenTK.Core.Platform.OpenGLGraphicsApiHints.PixelFormat - OpenTK.Core.Platform.OpenGLGraphicsApiHints.Profile - OpenTK.Core.Platform.OpenGLGraphicsApiHints.RedColorBits + - OpenTK.Core.Platform.OpenGLGraphicsApiHints.ReleaseBehaviour + - OpenTK.Core.Platform.OpenGLGraphicsApiHints.ResetIsolation + - OpenTK.Core.Platform.OpenGLGraphicsApiHints.ResetNotificationStrategy + - OpenTK.Core.Platform.OpenGLGraphicsApiHints.RobustnessFlag + - OpenTK.Core.Platform.OpenGLGraphicsApiHints.Selector - OpenTK.Core.Platform.OpenGLGraphicsApiHints.SharedContext - OpenTK.Core.Platform.OpenGLGraphicsApiHints.StencilBits + - OpenTK.Core.Platform.OpenGLGraphicsApiHints.SwapMethod + - OpenTK.Core.Platform.OpenGLGraphicsApiHints.UseFlushControl + - OpenTK.Core.Platform.OpenGLGraphicsApiHints.UseSelectorOnMacOS - OpenTK.Core.Platform.OpenGLGraphicsApiHints.Version - OpenTK.Core.Platform.OpenGLGraphicsApiHints.sRGBFramebuffer langs: @@ -137,7 +147,7 @@ items: repo: https://github.com/opentk/opentk.git id: RedColorBits path: opentk/src/OpenTK.Core/Platform/OpenGLGraphicsApiHints.cs - startLine: 22 + startLine: 27 assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform @@ -168,7 +178,7 @@ items: repo: https://github.com/opentk/opentk.git id: GreenColorBits path: opentk/src/OpenTK.Core/Platform/OpenGLGraphicsApiHints.cs - startLine: 27 + startLine: 32 assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform @@ -199,7 +209,7 @@ items: repo: https://github.com/opentk/opentk.git id: BlueColorBits path: opentk/src/OpenTK.Core/Platform/OpenGLGraphicsApiHints.cs - startLine: 32 + startLine: 37 assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform @@ -230,7 +240,7 @@ items: repo: https://github.com/opentk/opentk.git id: AlphaColorBits path: opentk/src/OpenTK.Core/Platform/OpenGLGraphicsApiHints.cs - startLine: 37 + startLine: 42 assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform @@ -261,7 +271,7 @@ items: repo: https://github.com/opentk/opentk.git id: StencilBits path: opentk/src/OpenTK.Core/Platform/OpenGLGraphicsApiHints.cs - startLine: 42 + startLine: 47 assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform @@ -292,7 +302,7 @@ items: repo: https://github.com/opentk/opentk.git id: DepthBits path: opentk/src/OpenTK.Core/Platform/OpenGLGraphicsApiHints.cs - startLine: 47 + startLine: 52 assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform @@ -323,7 +333,7 @@ items: repo: https://github.com/opentk/opentk.git id: Multisamples path: opentk/src/OpenTK.Core/Platform/OpenGLGraphicsApiHints.cs - startLine: 52 + startLine: 57 assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform @@ -354,7 +364,7 @@ items: repo: https://github.com/opentk/opentk.git id: DoubleBuffer path: opentk/src/OpenTK.Core/Platform/OpenGLGraphicsApiHints.cs - startLine: 57 + startLine: 62 assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform @@ -385,7 +395,7 @@ items: repo: https://github.com/opentk/opentk.git id: sRGBFramebuffer path: opentk/src/OpenTK.Core/Platform/OpenGLGraphicsApiHints.cs - startLine: 62 + startLine: 67 assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform @@ -398,6 +408,80 @@ items: type: System.Boolean content.vb: Public Property sRGBFramebuffer As Boolean overload: OpenTK.Core.Platform.OpenGLGraphicsApiHints.sRGBFramebuffer* +- uid: OpenTK.Core.Platform.OpenGLGraphicsApiHints.PixelFormat + commentId: P:OpenTK.Core.Platform.OpenGLGraphicsApiHints.PixelFormat + id: PixelFormat + parent: OpenTK.Core.Platform.OpenGLGraphicsApiHints + langs: + - csharp + - vb + name: PixelFormat + nameWithType: OpenGLGraphicsApiHints.PixelFormat + fullName: OpenTK.Core.Platform.OpenGLGraphicsApiHints.PixelFormat + type: Property + source: + remote: + path: src/OpenTK.Core/Platform/OpenGLGraphicsApiHints.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: PixelFormat + path: opentk/src/OpenTK.Core/Platform/OpenGLGraphicsApiHints.cs + startLine: 76 + assemblies: + - OpenTK.Core + namespace: OpenTK.Core.Platform + summary: >- + The pixel format of the context. + + This differentiates between "normal" fixed point LDR formats + + and floating point HDR formats. + + Use or for HDR support. + + Is by default. + example: [] + syntax: + content: public ContextPixelFormat PixelFormat { get; set; } + parameters: [] + return: + type: OpenTK.Core.Platform.ContextPixelFormat + content.vb: Public Property PixelFormat As ContextPixelFormat + overload: OpenTK.Core.Platform.OpenGLGraphicsApiHints.PixelFormat* +- uid: OpenTK.Core.Platform.OpenGLGraphicsApiHints.SwapMethod + commentId: P:OpenTK.Core.Platform.OpenGLGraphicsApiHints.SwapMethod + id: SwapMethod + parent: OpenTK.Core.Platform.OpenGLGraphicsApiHints + langs: + - csharp + - vb + name: SwapMethod + nameWithType: OpenGLGraphicsApiHints.SwapMethod + fullName: OpenTK.Core.Platform.OpenGLGraphicsApiHints.SwapMethod + type: Property + source: + remote: + path: src/OpenTK.Core/Platform/OpenGLGraphicsApiHints.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: SwapMethod + path: opentk/src/OpenTK.Core/Platform/OpenGLGraphicsApiHints.cs + startLine: 82 + assemblies: + - OpenTK.Core + namespace: OpenTK.Core.Platform + summary: >- + The swap method to use for the context. + + Is by default. + example: [] + syntax: + content: public ContextSwapMethod SwapMethod { get; set; } + parameters: [] + return: + type: OpenTK.Core.Platform.ContextSwapMethod + content.vb: Public Property SwapMethod As ContextSwapMethod + overload: OpenTK.Core.Platform.OpenGLGraphicsApiHints.SwapMethod* - uid: OpenTK.Core.Platform.OpenGLGraphicsApiHints.Profile commentId: P:OpenTK.Core.Platform.OpenGLGraphicsApiHints.Profile id: Profile @@ -416,7 +500,7 @@ items: repo: https://github.com/opentk/opentk.git id: Profile path: opentk/src/OpenTK.Core/Platform/OpenGLGraphicsApiHints.cs - startLine: 67 + startLine: 87 assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform @@ -447,7 +531,7 @@ items: repo: https://github.com/opentk/opentk.git id: ForwardCompatibleFlag path: opentk/src/OpenTK.Core/Platform/OpenGLGraphicsApiHints.cs - startLine: 72 + startLine: 92 assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform @@ -478,7 +562,7 @@ items: repo: https://github.com/opentk/opentk.git id: DebugFlag path: opentk/src/OpenTK.Core/Platform/OpenGLGraphicsApiHints.cs - startLine: 77 + startLine: 97 assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform @@ -491,6 +575,211 @@ items: type: System.Boolean content.vb: Public Property DebugFlag As Boolean overload: OpenTK.Core.Platform.OpenGLGraphicsApiHints.DebugFlag* +- uid: OpenTK.Core.Platform.OpenGLGraphicsApiHints.RobustnessFlag + commentId: P:OpenTK.Core.Platform.OpenGLGraphicsApiHints.RobustnessFlag + id: RobustnessFlag + parent: OpenTK.Core.Platform.OpenGLGraphicsApiHints + langs: + - csharp + - vb + name: RobustnessFlag + nameWithType: OpenGLGraphicsApiHints.RobustnessFlag + fullName: OpenTK.Core.Platform.OpenGLGraphicsApiHints.RobustnessFlag + type: Property + source: + remote: + path: src/OpenTK.Core/Platform/OpenGLGraphicsApiHints.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: RobustnessFlag + path: opentk/src/OpenTK.Core/Platform/OpenGLGraphicsApiHints.cs + startLine: 102 + assemblies: + - OpenTK.Core + namespace: OpenTK.Core.Platform + summary: If the robustness flag should be set or not. + example: [] + syntax: + content: public bool RobustnessFlag { get; set; } + parameters: [] + return: + type: System.Boolean + content.vb: Public Property RobustnessFlag As Boolean + overload: OpenTK.Core.Platform.OpenGLGraphicsApiHints.RobustnessFlag* +- uid: OpenTK.Core.Platform.OpenGLGraphicsApiHints.ResetNotificationStrategy + commentId: P:OpenTK.Core.Platform.OpenGLGraphicsApiHints.ResetNotificationStrategy + id: ResetNotificationStrategy + parent: OpenTK.Core.Platform.OpenGLGraphicsApiHints + langs: + - csharp + - vb + name: ResetNotificationStrategy + nameWithType: OpenGLGraphicsApiHints.ResetNotificationStrategy + fullName: OpenTK.Core.Platform.OpenGLGraphicsApiHints.ResetNotificationStrategy + type: Property + source: + remote: + path: src/OpenTK.Core/Platform/OpenGLGraphicsApiHints.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: ResetNotificationStrategy + path: opentk/src/OpenTK.Core/Platform/OpenGLGraphicsApiHints.cs + startLine: 109 + assemblies: + - OpenTK.Core + namespace: OpenTK.Core.Platform + summary: >- + The reset notification strategy to use if is set to true. + + See GL_ARB_robustness for details. + + Default value is . + example: [] + syntax: + content: public ContextResetNotificationStrategy ResetNotificationStrategy { get; set; } + parameters: [] + return: + type: OpenTK.Core.Platform.ContextResetNotificationStrategy + content.vb: Public Property ResetNotificationStrategy As ContextResetNotificationStrategy + overload: OpenTK.Core.Platform.OpenGLGraphicsApiHints.ResetNotificationStrategy* +- uid: OpenTK.Core.Platform.OpenGLGraphicsApiHints.ResetIsolation + commentId: P:OpenTK.Core.Platform.OpenGLGraphicsApiHints.ResetIsolation + id: ResetIsolation + parent: OpenTK.Core.Platform.OpenGLGraphicsApiHints + langs: + - csharp + - vb + name: ResetIsolation + nameWithType: OpenGLGraphicsApiHints.ResetIsolation + fullName: OpenTK.Core.Platform.OpenGLGraphicsApiHints.ResetIsolation + type: Property + source: + remote: + path: src/OpenTK.Core/Platform/OpenGLGraphicsApiHints.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: ResetIsolation + path: opentk/src/OpenTK.Core/Platform/OpenGLGraphicsApiHints.cs + startLine: 115 + assemblies: + - OpenTK.Core + namespace: OpenTK.Core.Platform + summary: >- + See GL_ARB_robustness_isolation. + + needs to be . + example: [] + syntax: + content: public bool ResetIsolation { get; set; } + parameters: [] + return: + type: System.Boolean + content.vb: Public Property ResetIsolation As Boolean + overload: OpenTK.Core.Platform.OpenGLGraphicsApiHints.ResetIsolation* +- uid: OpenTK.Core.Platform.OpenGLGraphicsApiHints.NoError + commentId: P:OpenTK.Core.Platform.OpenGLGraphicsApiHints.NoError + id: NoError + parent: OpenTK.Core.Platform.OpenGLGraphicsApiHints + langs: + - csharp + - vb + name: NoError + nameWithType: OpenGLGraphicsApiHints.NoError + fullName: OpenTK.Core.Platform.OpenGLGraphicsApiHints.NoError + type: Property + source: + remote: + path: src/OpenTK.Core/Platform/OpenGLGraphicsApiHints.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: NoError + path: opentk/src/OpenTK.Core/Platform/OpenGLGraphicsApiHints.cs + startLine: 122 + assemblies: + - OpenTK.Core + namespace: OpenTK.Core.Platform + summary: >- + If the "no error" flag should be set or not. + + See KHR_no_error. + + Cannot be enabled while or is set. + example: [] + syntax: + content: public bool NoError { get; set; } + parameters: [] + return: + type: System.Boolean + content.vb: Public Property NoError As Boolean + overload: OpenTK.Core.Platform.OpenGLGraphicsApiHints.NoError* +- uid: OpenTK.Core.Platform.OpenGLGraphicsApiHints.UseFlushControl + commentId: P:OpenTK.Core.Platform.OpenGLGraphicsApiHints.UseFlushControl + id: UseFlushControl + parent: OpenTK.Core.Platform.OpenGLGraphicsApiHints + langs: + - csharp + - vb + name: UseFlushControl + nameWithType: OpenGLGraphicsApiHints.UseFlushControl + fullName: OpenTK.Core.Platform.OpenGLGraphicsApiHints.UseFlushControl + type: Property + source: + remote: + path: src/OpenTK.Core/Platform/OpenGLGraphicsApiHints.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: UseFlushControl + path: opentk/src/OpenTK.Core/Platform/OpenGLGraphicsApiHints.cs + startLine: 128 + assemblies: + - OpenTK.Core + namespace: OpenTK.Core.Platform + summary: >- + Whether to use KHR_context_flush_control (if available) or not. + + See for flush control options. + example: [] + syntax: + content: public bool UseFlushControl { get; set; } + parameters: [] + return: + type: System.Boolean + content.vb: Public Property UseFlushControl As Boolean + overload: OpenTK.Core.Platform.OpenGLGraphicsApiHints.UseFlushControl* +- uid: OpenTK.Core.Platform.OpenGLGraphicsApiHints.ReleaseBehaviour + commentId: P:OpenTK.Core.Platform.OpenGLGraphicsApiHints.ReleaseBehaviour + id: ReleaseBehaviour + parent: OpenTK.Core.Platform.OpenGLGraphicsApiHints + langs: + - csharp + - vb + name: ReleaseBehaviour + nameWithType: OpenGLGraphicsApiHints.ReleaseBehaviour + fullName: OpenTK.Core.Platform.OpenGLGraphicsApiHints.ReleaseBehaviour + type: Property + source: + remote: + path: src/OpenTK.Core/Platform/OpenGLGraphicsApiHints.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: ReleaseBehaviour + path: opentk/src/OpenTK.Core/Platform/OpenGLGraphicsApiHints.cs + startLine: 134 + assemblies: + - OpenTK.Core + namespace: OpenTK.Core.Platform + summary: >- + If is true then this controls the context release behaviour when the context is changed. + + Is by default. + example: [] + syntax: + content: public ContextReleaseBehaviour ReleaseBehaviour { get; set; } + parameters: [] + return: + type: OpenTK.Core.Platform.ContextReleaseBehaviour + content.vb: Public Property ReleaseBehaviour As ContextReleaseBehaviour + overload: OpenTK.Core.Platform.OpenGLGraphicsApiHints.ReleaseBehaviour* - uid: OpenTK.Core.Platform.OpenGLGraphicsApiHints.SharedContext commentId: P:OpenTK.Core.Platform.OpenGLGraphicsApiHints.SharedContext id: SharedContext @@ -509,7 +798,7 @@ items: repo: https://github.com/opentk/opentk.git id: SharedContext path: opentk/src/OpenTK.Core/Platform/OpenGLGraphicsApiHints.cs - startLine: 84 + startLine: 139 assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform @@ -522,16 +811,81 @@ items: type: OpenTK.Core.Platform.OpenGLContextHandle content.vb: Public Property SharedContext As OpenGLContextHandle overload: OpenTK.Core.Platform.OpenGLGraphicsApiHints.SharedContext* -- uid: OpenTK.Core.Platform.OpenGLGraphicsApiHints.#ctor(OpenTK.Core.Platform.GraphicsApi) - commentId: M:OpenTK.Core.Platform.OpenGLGraphicsApiHints.#ctor(OpenTK.Core.Platform.GraphicsApi) - id: '#ctor(OpenTK.Core.Platform.GraphicsApi)' +- uid: OpenTK.Core.Platform.OpenGLGraphicsApiHints.Selector + commentId: P:OpenTK.Core.Platform.OpenGLGraphicsApiHints.Selector + id: Selector + parent: OpenTK.Core.Platform.OpenGLGraphicsApiHints + langs: + - csharp + - vb + name: Selector + nameWithType: OpenGLGraphicsApiHints.Selector + fullName: OpenTK.Core.Platform.OpenGLGraphicsApiHints.Selector + type: Property + source: + remote: + path: src/OpenTK.Core/Platform/OpenGLGraphicsApiHints.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: Selector + path: opentk/src/OpenTK.Core/Platform/OpenGLGraphicsApiHints.cs + startLine: 144 + assemblies: + - OpenTK.Core + namespace: OpenTK.Core.Platform + summary: A callback that can be used to select appropriate backbuffer values. + example: [] + syntax: + content: public ContextValueSelector Selector { get; set; } + parameters: [] + return: + type: OpenTK.Core.Platform.ContextValueSelector + content.vb: Public Property Selector As ContextValueSelector + overload: OpenTK.Core.Platform.OpenGLGraphicsApiHints.Selector* +- uid: OpenTK.Core.Platform.OpenGLGraphicsApiHints.UseSelectorOnMacOS + commentId: P:OpenTK.Core.Platform.OpenGLGraphicsApiHints.UseSelectorOnMacOS + id: UseSelectorOnMacOS + parent: OpenTK.Core.Platform.OpenGLGraphicsApiHints + langs: + - csharp + - vb + name: UseSelectorOnMacOS + nameWithType: OpenGLGraphicsApiHints.UseSelectorOnMacOS + fullName: OpenTK.Core.Platform.OpenGLGraphicsApiHints.UseSelectorOnMacOS + type: Property + source: + remote: + path: src/OpenTK.Core/Platform/OpenGLGraphicsApiHints.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: UseSelectorOnMacOS + path: opentk/src/OpenTK.Core/Platform/OpenGLGraphicsApiHints.cs + startLine: 150 + assemblies: + - OpenTK.Core + namespace: OpenTK.Core.Platform + summary: >- + Enumerating on macOS is slow, so by default is not used on macOS. + + When this property is false the default platform selection of context values are used, which tries to find a closest match. + example: [] + syntax: + content: public bool UseSelectorOnMacOS { get; set; } + parameters: [] + return: + type: System.Boolean + content.vb: Public Property UseSelectorOnMacOS As Boolean + overload: OpenTK.Core.Platform.OpenGLGraphicsApiHints.UseSelectorOnMacOS* +- uid: OpenTK.Core.Platform.OpenGLGraphicsApiHints.#ctor + commentId: M:OpenTK.Core.Platform.OpenGLGraphicsApiHints.#ctor + id: '#ctor' parent: OpenTK.Core.Platform.OpenGLGraphicsApiHints langs: - csharp - vb - name: OpenGLGraphicsApiHints(GraphicsApi) - nameWithType: OpenGLGraphicsApiHints.OpenGLGraphicsApiHints(GraphicsApi) - fullName: OpenTK.Core.Platform.OpenGLGraphicsApiHints.OpenGLGraphicsApiHints(OpenTK.Core.Platform.GraphicsApi) + name: OpenGLGraphicsApiHints() + nameWithType: OpenGLGraphicsApiHints.OpenGLGraphicsApiHints() + fullName: OpenTK.Core.Platform.OpenGLGraphicsApiHints.OpenGLGraphicsApiHints() type: Constructor source: remote: @@ -540,23 +894,19 @@ items: repo: https://github.com/opentk/opentk.git id: .ctor path: opentk/src/OpenTK.Core/Platform/OpenGLGraphicsApiHints.cs - startLine: 90 + startLine: 155 assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform summary: Initializes a new instance of the class. example: [] syntax: - content: public OpenGLGraphicsApiHints(GraphicsApi api = GraphicsApi.OpenGL) - parameters: - - id: api - type: OpenTK.Core.Platform.GraphicsApi - description: The OpenGL variant the hints are for. - content.vb: Public Sub New(api As GraphicsApi = GraphicsApi.OpenGL) + content: public OpenGLGraphicsApiHints() + content.vb: Public Sub New() overload: OpenTK.Core.Platform.OpenGLGraphicsApiHints.#ctor* - nameWithType.vb: OpenGLGraphicsApiHints.New(GraphicsApi) - fullName.vb: OpenTK.Core.Platform.OpenGLGraphicsApiHints.New(OpenTK.Core.Platform.GraphicsApi) - name.vb: New(GraphicsApi) + nameWithType.vb: OpenGLGraphicsApiHints.New() + fullName.vb: OpenTK.Core.Platform.OpenGLGraphicsApiHints.New() + name.vb: New() - uid: OpenTK.Core.Platform.OpenGLGraphicsApiHints.Copy commentId: M:OpenTK.Core.Platform.OpenGLGraphicsApiHints.Copy id: Copy @@ -575,7 +925,7 @@ items: repo: https://github.com/opentk/opentk.git id: Copy path: opentk/src/OpenTK.Core/Platform/OpenGLGraphicsApiHints.cs - startLine: 104 + startLine: 163 assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform @@ -987,6 +1337,56 @@ references: name: sRGBFramebuffer nameWithType: OpenGLGraphicsApiHints.sRGBFramebuffer fullName: OpenTK.Core.Platform.OpenGLGraphicsApiHints.sRGBFramebuffer +- uid: OpenTK.Core.Platform.ContextPixelFormat.RGBAFloat + commentId: F:OpenTK.Core.Platform.ContextPixelFormat.RGBAFloat + href: OpenTK.Core.Platform.ContextPixelFormat.html#OpenTK_Core_Platform_ContextPixelFormat_RGBAFloat + name: RGBAFloat + nameWithType: ContextPixelFormat.RGBAFloat + fullName: OpenTK.Core.Platform.ContextPixelFormat.RGBAFloat +- uid: OpenTK.Core.Platform.ContextPixelFormat.RGBAPackedFloat + commentId: F:OpenTK.Core.Platform.ContextPixelFormat.RGBAPackedFloat + href: OpenTK.Core.Platform.ContextPixelFormat.html#OpenTK_Core_Platform_ContextPixelFormat_RGBAPackedFloat + name: RGBAPackedFloat + nameWithType: ContextPixelFormat.RGBAPackedFloat + fullName: OpenTK.Core.Platform.ContextPixelFormat.RGBAPackedFloat +- uid: OpenTK.Core.Platform.ContextPixelFormat.RGBA + commentId: F:OpenTK.Core.Platform.ContextPixelFormat.RGBA + href: OpenTK.Core.Platform.ContextPixelFormat.html#OpenTK_Core_Platform_ContextPixelFormat_RGBA + name: RGBA + nameWithType: ContextPixelFormat.RGBA + fullName: OpenTK.Core.Platform.ContextPixelFormat.RGBA +- uid: OpenTK.Core.Platform.OpenGLGraphicsApiHints.PixelFormat* + commentId: Overload:OpenTK.Core.Platform.OpenGLGraphicsApiHints.PixelFormat + href: OpenTK.Core.Platform.OpenGLGraphicsApiHints.html#OpenTK_Core_Platform_OpenGLGraphicsApiHints_PixelFormat + name: PixelFormat + nameWithType: OpenGLGraphicsApiHints.PixelFormat + fullName: OpenTK.Core.Platform.OpenGLGraphicsApiHints.PixelFormat +- uid: OpenTK.Core.Platform.ContextPixelFormat + commentId: T:OpenTK.Core.Platform.ContextPixelFormat + parent: OpenTK.Core.Platform + href: OpenTK.Core.Platform.ContextPixelFormat.html + name: ContextPixelFormat + nameWithType: ContextPixelFormat + fullName: OpenTK.Core.Platform.ContextPixelFormat +- uid: OpenTK.Core.Platform.ContextSwapMethod.Undefined + commentId: F:OpenTK.Core.Platform.ContextSwapMethod.Undefined + href: OpenTK.Core.Platform.ContextSwapMethod.html#OpenTK_Core_Platform_ContextSwapMethod_Undefined + name: Undefined + nameWithType: ContextSwapMethod.Undefined + fullName: OpenTK.Core.Platform.ContextSwapMethod.Undefined +- uid: OpenTK.Core.Platform.OpenGLGraphicsApiHints.SwapMethod* + commentId: Overload:OpenTK.Core.Platform.OpenGLGraphicsApiHints.SwapMethod + href: OpenTK.Core.Platform.OpenGLGraphicsApiHints.html#OpenTK_Core_Platform_OpenGLGraphicsApiHints_SwapMethod + name: SwapMethod + nameWithType: OpenGLGraphicsApiHints.SwapMethod + fullName: OpenTK.Core.Platform.OpenGLGraphicsApiHints.SwapMethod +- uid: OpenTK.Core.Platform.ContextSwapMethod + commentId: T:OpenTK.Core.Platform.ContextSwapMethod + parent: OpenTK.Core.Platform + href: OpenTK.Core.Platform.ContextSwapMethod.html + name: ContextSwapMethod + nameWithType: ContextSwapMethod + fullName: OpenTK.Core.Platform.ContextSwapMethod - uid: OpenTK.Core.Platform.OpenGLGraphicsApiHints.Profile* commentId: Overload:OpenTK.Core.Platform.OpenGLGraphicsApiHints.Profile href: OpenTK.Core.Platform.OpenGLGraphicsApiHints.html#OpenTK_Core_Platform_OpenGLGraphicsApiHints_Profile @@ -1012,6 +1412,104 @@ references: name: DebugFlag nameWithType: OpenGLGraphicsApiHints.DebugFlag fullName: OpenTK.Core.Platform.OpenGLGraphicsApiHints.DebugFlag +- uid: OpenTK.Core.Platform.OpenGLGraphicsApiHints.RobustnessFlag* + commentId: Overload:OpenTK.Core.Platform.OpenGLGraphicsApiHints.RobustnessFlag + href: OpenTK.Core.Platform.OpenGLGraphicsApiHints.html#OpenTK_Core_Platform_OpenGLGraphicsApiHints_RobustnessFlag + name: RobustnessFlag + nameWithType: OpenGLGraphicsApiHints.RobustnessFlag + fullName: OpenTK.Core.Platform.OpenGLGraphicsApiHints.RobustnessFlag +- uid: OpenTK.Core.Platform.OpenGLGraphicsApiHints.RobustnessFlag + commentId: P:OpenTK.Core.Platform.OpenGLGraphicsApiHints.RobustnessFlag + href: OpenTK.Core.Platform.OpenGLGraphicsApiHints.html#OpenTK_Core_Platform_OpenGLGraphicsApiHints_RobustnessFlag + name: RobustnessFlag + nameWithType: OpenGLGraphicsApiHints.RobustnessFlag + fullName: OpenTK.Core.Platform.OpenGLGraphicsApiHints.RobustnessFlag +- uid: OpenTK.Core.Platform.ContextResetNotificationStrategy.NoResetNotification + commentId: F:OpenTK.Core.Platform.ContextResetNotificationStrategy.NoResetNotification + href: OpenTK.Core.Platform.ContextResetNotificationStrategy.html#OpenTK_Core_Platform_ContextResetNotificationStrategy_NoResetNotification + name: NoResetNotification + nameWithType: ContextResetNotificationStrategy.NoResetNotification + fullName: OpenTK.Core.Platform.ContextResetNotificationStrategy.NoResetNotification +- uid: OpenTK.Core.Platform.OpenGLGraphicsApiHints.ResetNotificationStrategy* + commentId: Overload:OpenTK.Core.Platform.OpenGLGraphicsApiHints.ResetNotificationStrategy + href: OpenTK.Core.Platform.OpenGLGraphicsApiHints.html#OpenTK_Core_Platform_OpenGLGraphicsApiHints_ResetNotificationStrategy + name: ResetNotificationStrategy + nameWithType: OpenGLGraphicsApiHints.ResetNotificationStrategy + fullName: OpenTK.Core.Platform.OpenGLGraphicsApiHints.ResetNotificationStrategy +- uid: OpenTK.Core.Platform.ContextResetNotificationStrategy + commentId: T:OpenTK.Core.Platform.ContextResetNotificationStrategy + parent: OpenTK.Core.Platform + href: OpenTK.Core.Platform.ContextResetNotificationStrategy.html + name: ContextResetNotificationStrategy + nameWithType: ContextResetNotificationStrategy + fullName: OpenTK.Core.Platform.ContextResetNotificationStrategy +- uid: OpenTK.Core.Platform.OpenGLGraphicsApiHints.ResetNotificationStrategy + commentId: P:OpenTK.Core.Platform.OpenGLGraphicsApiHints.ResetNotificationStrategy + href: OpenTK.Core.Platform.OpenGLGraphicsApiHints.html#OpenTK_Core_Platform_OpenGLGraphicsApiHints_ResetNotificationStrategy + name: ResetNotificationStrategy + nameWithType: OpenGLGraphicsApiHints.ResetNotificationStrategy + fullName: OpenTK.Core.Platform.OpenGLGraphicsApiHints.ResetNotificationStrategy +- uid: OpenTK.Core.Platform.ContextResetNotificationStrategy.LoseContextOnReset + commentId: F:OpenTK.Core.Platform.ContextResetNotificationStrategy.LoseContextOnReset + href: OpenTK.Core.Platform.ContextResetNotificationStrategy.html#OpenTK_Core_Platform_ContextResetNotificationStrategy_LoseContextOnReset + name: LoseContextOnReset + nameWithType: ContextResetNotificationStrategy.LoseContextOnReset + fullName: OpenTK.Core.Platform.ContextResetNotificationStrategy.LoseContextOnReset +- uid: OpenTK.Core.Platform.OpenGLGraphicsApiHints.ResetIsolation* + commentId: Overload:OpenTK.Core.Platform.OpenGLGraphicsApiHints.ResetIsolation + href: OpenTK.Core.Platform.OpenGLGraphicsApiHints.html#OpenTK_Core_Platform_OpenGLGraphicsApiHints_ResetIsolation + name: ResetIsolation + nameWithType: OpenGLGraphicsApiHints.ResetIsolation + fullName: OpenTK.Core.Platform.OpenGLGraphicsApiHints.ResetIsolation +- uid: OpenTK.Core.Platform.OpenGLGraphicsApiHints.DebugFlag + commentId: P:OpenTK.Core.Platform.OpenGLGraphicsApiHints.DebugFlag + href: OpenTK.Core.Platform.OpenGLGraphicsApiHints.html#OpenTK_Core_Platform_OpenGLGraphicsApiHints_DebugFlag + name: DebugFlag + nameWithType: OpenGLGraphicsApiHints.DebugFlag + fullName: OpenTK.Core.Platform.OpenGLGraphicsApiHints.DebugFlag +- uid: OpenTK.Core.Platform.OpenGLGraphicsApiHints.NoError* + commentId: Overload:OpenTK.Core.Platform.OpenGLGraphicsApiHints.NoError + href: OpenTK.Core.Platform.OpenGLGraphicsApiHints.html#OpenTK_Core_Platform_OpenGLGraphicsApiHints_NoError + name: NoError + nameWithType: OpenGLGraphicsApiHints.NoError + fullName: OpenTK.Core.Platform.OpenGLGraphicsApiHints.NoError +- uid: OpenTK.Core.Platform.OpenGLGraphicsApiHints.ReleaseBehaviour + commentId: P:OpenTK.Core.Platform.OpenGLGraphicsApiHints.ReleaseBehaviour + href: OpenTK.Core.Platform.OpenGLGraphicsApiHints.html#OpenTK_Core_Platform_OpenGLGraphicsApiHints_ReleaseBehaviour + name: ReleaseBehaviour + nameWithType: OpenGLGraphicsApiHints.ReleaseBehaviour + fullName: OpenTK.Core.Platform.OpenGLGraphicsApiHints.ReleaseBehaviour +- uid: OpenTK.Core.Platform.OpenGLGraphicsApiHints.UseFlushControl* + commentId: Overload:OpenTK.Core.Platform.OpenGLGraphicsApiHints.UseFlushControl + href: OpenTK.Core.Platform.OpenGLGraphicsApiHints.html#OpenTK_Core_Platform_OpenGLGraphicsApiHints_UseFlushControl + name: UseFlushControl + nameWithType: OpenGLGraphicsApiHints.UseFlushControl + fullName: OpenTK.Core.Platform.OpenGLGraphicsApiHints.UseFlushControl +- uid: OpenTK.Core.Platform.OpenGLGraphicsApiHints.UseFlushControl + commentId: P:OpenTK.Core.Platform.OpenGLGraphicsApiHints.UseFlushControl + href: OpenTK.Core.Platform.OpenGLGraphicsApiHints.html#OpenTK_Core_Platform_OpenGLGraphicsApiHints_UseFlushControl + name: UseFlushControl + nameWithType: OpenGLGraphicsApiHints.UseFlushControl + fullName: OpenTK.Core.Platform.OpenGLGraphicsApiHints.UseFlushControl +- uid: OpenTK.Core.Platform.ContextReleaseBehaviour.Flush + commentId: F:OpenTK.Core.Platform.ContextReleaseBehaviour.Flush + href: OpenTK.Core.Platform.ContextReleaseBehaviour.html#OpenTK_Core_Platform_ContextReleaseBehaviour_Flush + name: Flush + nameWithType: ContextReleaseBehaviour.Flush + fullName: OpenTK.Core.Platform.ContextReleaseBehaviour.Flush +- uid: OpenTK.Core.Platform.OpenGLGraphicsApiHints.ReleaseBehaviour* + commentId: Overload:OpenTK.Core.Platform.OpenGLGraphicsApiHints.ReleaseBehaviour + href: OpenTK.Core.Platform.OpenGLGraphicsApiHints.html#OpenTK_Core_Platform_OpenGLGraphicsApiHints_ReleaseBehaviour + name: ReleaseBehaviour + nameWithType: OpenGLGraphicsApiHints.ReleaseBehaviour + fullName: OpenTK.Core.Platform.OpenGLGraphicsApiHints.ReleaseBehaviour +- uid: OpenTK.Core.Platform.ContextReleaseBehaviour + commentId: T:OpenTK.Core.Platform.ContextReleaseBehaviour + parent: OpenTK.Core.Platform + href: OpenTK.Core.Platform.ContextReleaseBehaviour.html + name: ContextReleaseBehaviour + nameWithType: ContextReleaseBehaviour + fullName: OpenTK.Core.Platform.ContextReleaseBehaviour - uid: OpenTK.Core.Platform.OpenGLGraphicsApiHints.SharedContext* commentId: Overload:OpenTK.Core.Platform.OpenGLGraphicsApiHints.SharedContext href: OpenTK.Core.Platform.OpenGLGraphicsApiHints.html#OpenTK_Core_Platform_OpenGLGraphicsApiHints_SharedContext @@ -1025,6 +1523,38 @@ references: name: OpenGLContextHandle nameWithType: OpenGLContextHandle fullName: OpenTK.Core.Platform.OpenGLContextHandle +- uid: OpenTK.Core.Platform.OpenGLGraphicsApiHints.Selector* + commentId: Overload:OpenTK.Core.Platform.OpenGLGraphicsApiHints.Selector + href: OpenTK.Core.Platform.OpenGLGraphicsApiHints.html#OpenTK_Core_Platform_OpenGLGraphicsApiHints_Selector + name: Selector + nameWithType: OpenGLGraphicsApiHints.Selector + fullName: OpenTK.Core.Platform.OpenGLGraphicsApiHints.Selector +- uid: OpenTK.Core.Platform.ContextValueSelector + commentId: T:OpenTK.Core.Platform.ContextValueSelector + parent: OpenTK.Core.Platform + href: OpenTK.Core.Platform.ContextValueSelector.html + name: ContextValueSelector + nameWithType: ContextValueSelector + fullName: OpenTK.Core.Platform.ContextValueSelector +- uid: OpenTK.Core.Platform.ContextValues + commentId: T:OpenTK.Core.Platform.ContextValues + parent: OpenTK.Core.Platform + href: OpenTK.Core.Platform.ContextValues.html + name: ContextValues + nameWithType: ContextValues + fullName: OpenTK.Core.Platform.ContextValues +- uid: OpenTK.Core.Platform.OpenGLGraphicsApiHints.Selector + commentId: P:OpenTK.Core.Platform.OpenGLGraphicsApiHints.Selector + href: OpenTK.Core.Platform.OpenGLGraphicsApiHints.html#OpenTK_Core_Platform_OpenGLGraphicsApiHints_Selector + name: Selector + nameWithType: OpenGLGraphicsApiHints.Selector + fullName: OpenTK.Core.Platform.OpenGLGraphicsApiHints.Selector +- uid: OpenTK.Core.Platform.OpenGLGraphicsApiHints.UseSelectorOnMacOS* + commentId: Overload:OpenTK.Core.Platform.OpenGLGraphicsApiHints.UseSelectorOnMacOS + href: OpenTK.Core.Platform.OpenGLGraphicsApiHints.html#OpenTK_Core_Platform_OpenGLGraphicsApiHints_UseSelectorOnMacOS + name: UseSelectorOnMacOS + nameWithType: OpenGLGraphicsApiHints.UseSelectorOnMacOS + fullName: OpenTK.Core.Platform.OpenGLGraphicsApiHints.UseSelectorOnMacOS - uid: OpenTK.Core.Platform.OpenGLGraphicsApiHints commentId: T:OpenTK.Core.Platform.OpenGLGraphicsApiHints parent: OpenTK.Core.Platform @@ -1034,7 +1564,7 @@ references: fullName: OpenTK.Core.Platform.OpenGLGraphicsApiHints - uid: OpenTK.Core.Platform.OpenGLGraphicsApiHints.#ctor* commentId: Overload:OpenTK.Core.Platform.OpenGLGraphicsApiHints.#ctor - href: OpenTK.Core.Platform.OpenGLGraphicsApiHints.html#OpenTK_Core_Platform_OpenGLGraphicsApiHints__ctor_OpenTK_Core_Platform_GraphicsApi_ + href: OpenTK.Core.Platform.OpenGLGraphicsApiHints.html#OpenTK_Core_Platform_OpenGLGraphicsApiHints__ctor name: OpenGLGraphicsApiHints nameWithType: OpenGLGraphicsApiHints.OpenGLGraphicsApiHints fullName: OpenTK.Core.Platform.OpenGLGraphicsApiHints.OpenGLGraphicsApiHints diff --git a/api/OpenTK.Core.Platform.PalComponents.yml b/api/OpenTK.Core.Platform.PalComponents.yml index 65c095bd..eab6230f 100644 --- a/api/OpenTK.Core.Platform.PalComponents.yml +++ b/api/OpenTK.Core.Platform.PalComponents.yml @@ -7,6 +7,7 @@ items: children: - OpenTK.Core.Platform.PalComponents.Clipboard - OpenTK.Core.Platform.PalComponents.ControllerInput + - OpenTK.Core.Platform.PalComponents.Dialog - OpenTK.Core.Platform.PalComponents.Display - OpenTK.Core.Platform.PalComponents.Joystick - OpenTK.Core.Platform.PalComponents.KeyboardInput @@ -415,6 +416,34 @@ items: content: Joystick = 4096 return: type: OpenTK.Core.Platform.PalComponents +- uid: OpenTK.Core.Platform.PalComponents.Dialog + commentId: F:OpenTK.Core.Platform.PalComponents.Dialog + id: Dialog + parent: OpenTK.Core.Platform.PalComponents + langs: + - csharp + - vb + name: Dialog + nameWithType: PalComponents.Dialog + fullName: OpenTK.Core.Platform.PalComponents.Dialog + type: Field + source: + remote: + path: src/OpenTK.Core/Platform/Enums/PalComponents.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: Dialog + path: opentk/src/OpenTK.Core/Platform/Enums/PalComponents.cs + startLine: 103 + assemblies: + - OpenTK.Core + namespace: OpenTK.Core.Platform + summary: Abstraction layer provides the dialog component. + example: [] + syntax: + content: Dialog = 8192 + return: + type: OpenTK.Core.Platform.PalComponents references: - uid: OpenTK.Core.Platform commentId: N:OpenTK.Core.Platform diff --git a/api/OpenTK.Core.Platform.PlatformEventType.yml b/api/OpenTK.Core.Platform.PlatformEventType.yml index 1d0e00b1..44d5b8d1 100644 --- a/api/OpenTK.Core.Platform.PlatformEventType.yml +++ b/api/OpenTK.Core.Platform.PlatformEventType.yml @@ -23,10 +23,11 @@ items: - OpenTK.Core.Platform.PlatformEventType.TextEditing - OpenTK.Core.Platform.PlatformEventType.TextInput - OpenTK.Core.Platform.PlatformEventType.ThemeChange - - OpenTK.Core.Platform.PlatformEventType.WindowDpiChange + - OpenTK.Core.Platform.PlatformEventType.WindowFramebufferResize - OpenTK.Core.Platform.PlatformEventType.WindowModeChange - OpenTK.Core.Platform.PlatformEventType.WindowMove - OpenTK.Core.Platform.PlatformEventType.WindowResize + - OpenTK.Core.Platform.PlatformEventType.WindowScaleChange langs: - csharp - vb @@ -182,6 +183,32 @@ items: content: WindowResize = 4 return: type: OpenTK.Core.Platform.PlatformEventType +- uid: OpenTK.Core.Platform.PlatformEventType.WindowFramebufferResize + commentId: F:OpenTK.Core.Platform.PlatformEventType.WindowFramebufferResize + id: WindowFramebufferResize + parent: OpenTK.Core.Platform.PlatformEventType + langs: + - csharp + - vb + name: WindowFramebufferResize + nameWithType: PlatformEventType.WindowFramebufferResize + fullName: OpenTK.Core.Platform.PlatformEventType.WindowFramebufferResize + type: Field + source: + remote: + path: src/OpenTK.Core/Platform/Enums/PlatformEventType.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: WindowFramebufferResize + path: opentk/src/OpenTK.Core/Platform/Enums/PlatformEventType.cs + startLine: 19 + assemblies: + - OpenTK.Core + namespace: OpenTK.Core.Platform + syntax: + content: WindowFramebufferResize = 5 + return: + type: OpenTK.Core.Platform.PlatformEventType - uid: OpenTK.Core.Platform.PlatformEventType.WindowModeChange commentId: F:OpenTK.Core.Platform.PlatformEventType.WindowModeChange id: WindowModeChange @@ -200,38 +227,38 @@ items: repo: https://github.com/opentk/opentk.git id: WindowModeChange path: opentk/src/OpenTK.Core/Platform/Enums/PlatformEventType.cs - startLine: 20 + startLine: 21 assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform syntax: - content: WindowModeChange = 5 + content: WindowModeChange = 6 return: type: OpenTK.Core.Platform.PlatformEventType -- uid: OpenTK.Core.Platform.PlatformEventType.WindowDpiChange - commentId: F:OpenTK.Core.Platform.PlatformEventType.WindowDpiChange - id: WindowDpiChange +- uid: OpenTK.Core.Platform.PlatformEventType.WindowScaleChange + commentId: F:OpenTK.Core.Platform.PlatformEventType.WindowScaleChange + id: WindowScaleChange parent: OpenTK.Core.Platform.PlatformEventType langs: - csharp - vb - name: WindowDpiChange - nameWithType: PlatformEventType.WindowDpiChange - fullName: OpenTK.Core.Platform.PlatformEventType.WindowDpiChange + name: WindowScaleChange + nameWithType: PlatformEventType.WindowScaleChange + fullName: OpenTK.Core.Platform.PlatformEventType.WindowScaleChange type: Field source: remote: path: src/OpenTK.Core/Platform/Enums/PlatformEventType.cs branch: pal2-work repo: https://github.com/opentk/opentk.git - id: WindowDpiChange + id: WindowScaleChange path: opentk/src/OpenTK.Core/Platform/Enums/PlatformEventType.cs - startLine: 22 + startLine: 23 assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform syntax: - content: WindowDpiChange = 6 + content: WindowScaleChange = 7 return: type: OpenTK.Core.Platform.PlatformEventType - uid: OpenTK.Core.Platform.PlatformEventType.MouseEnter @@ -252,12 +279,12 @@ items: repo: https://github.com/opentk/opentk.git id: MouseEnter path: opentk/src/OpenTK.Core/Platform/Enums/PlatformEventType.cs - startLine: 24 + startLine: 25 assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform syntax: - content: MouseEnter = 7 + content: MouseEnter = 8 return: type: OpenTK.Core.Platform.PlatformEventType - uid: OpenTK.Core.Platform.PlatformEventType.MouseMove @@ -278,14 +305,14 @@ items: repo: https://github.com/opentk/opentk.git id: MouseMove path: opentk/src/OpenTK.Core/Platform/Enums/PlatformEventType.cs - startLine: 29 + startLine: 30 assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform summary: Signifies the event is of type . example: [] syntax: - content: MouseMove = 8 + content: MouseMove = 9 return: type: OpenTK.Core.Platform.PlatformEventType - uid: OpenTK.Core.Platform.PlatformEventType.MouseDown @@ -306,12 +333,12 @@ items: repo: https://github.com/opentk/opentk.git id: MouseDown path: opentk/src/OpenTK.Core/Platform/Enums/PlatformEventType.cs - startLine: 32 + startLine: 33 assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform syntax: - content: MouseDown = 9 + content: MouseDown = 10 return: type: OpenTK.Core.Platform.PlatformEventType - uid: OpenTK.Core.Platform.PlatformEventType.MouseUp @@ -332,12 +359,12 @@ items: repo: https://github.com/opentk/opentk.git id: MouseUp path: opentk/src/OpenTK.Core/Platform/Enums/PlatformEventType.cs - startLine: 33 + startLine: 34 assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform syntax: - content: MouseUp = 10 + content: MouseUp = 11 return: type: OpenTK.Core.Platform.PlatformEventType - uid: OpenTK.Core.Platform.PlatformEventType.Scroll @@ -358,12 +385,12 @@ items: repo: https://github.com/opentk/opentk.git id: Scroll path: opentk/src/OpenTK.Core/Platform/Enums/PlatformEventType.cs - startLine: 35 + startLine: 36 assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform syntax: - content: Scroll = 11 + content: Scroll = 12 return: type: OpenTK.Core.Platform.PlatformEventType - uid: OpenTK.Core.Platform.PlatformEventType.KeyDown @@ -384,12 +411,12 @@ items: repo: https://github.com/opentk/opentk.git id: KeyDown path: opentk/src/OpenTK.Core/Platform/Enums/PlatformEventType.cs - startLine: 38 + startLine: 39 assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform syntax: - content: KeyDown = 12 + content: KeyDown = 13 return: type: OpenTK.Core.Platform.PlatformEventType - uid: OpenTK.Core.Platform.PlatformEventType.KeyUp @@ -410,12 +437,12 @@ items: repo: https://github.com/opentk/opentk.git id: KeyUp path: opentk/src/OpenTK.Core/Platform/Enums/PlatformEventType.cs - startLine: 39 + startLine: 40 assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform syntax: - content: KeyUp = 13 + content: KeyUp = 14 return: type: OpenTK.Core.Platform.PlatformEventType - uid: OpenTK.Core.Platform.PlatformEventType.TextInput @@ -436,12 +463,12 @@ items: repo: https://github.com/opentk/opentk.git id: TextInput path: opentk/src/OpenTK.Core/Platform/Enums/PlatformEventType.cs - startLine: 41 + startLine: 42 assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform syntax: - content: TextInput = 14 + content: TextInput = 15 return: type: OpenTK.Core.Platform.PlatformEventType - uid: OpenTK.Core.Platform.PlatformEventType.TextEditing @@ -462,12 +489,12 @@ items: repo: https://github.com/opentk/opentk.git id: TextEditing path: opentk/src/OpenTK.Core/Platform/Enums/PlatformEventType.cs - startLine: 42 + startLine: 43 assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform syntax: - content: TextEditing = 15 + content: TextEditing = 16 return: type: OpenTK.Core.Platform.PlatformEventType - uid: OpenTK.Core.Platform.PlatformEventType.InputLanguageChanged @@ -488,12 +515,12 @@ items: repo: https://github.com/opentk/opentk.git id: InputLanguageChanged path: opentk/src/OpenTK.Core/Platform/Enums/PlatformEventType.cs - startLine: 44 + startLine: 45 assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform syntax: - content: InputLanguageChanged = 16 + content: InputLanguageChanged = 17 return: type: OpenTK.Core.Platform.PlatformEventType - uid: OpenTK.Core.Platform.PlatformEventType.FileDrop @@ -514,12 +541,12 @@ items: repo: https://github.com/opentk/opentk.git id: FileDrop path: opentk/src/OpenTK.Core/Platform/Enums/PlatformEventType.cs - startLine: 46 + startLine: 47 assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform syntax: - content: FileDrop = 17 + content: FileDrop = 18 return: type: OpenTK.Core.Platform.PlatformEventType - uid: OpenTK.Core.Platform.PlatformEventType.ClipboardUpdate @@ -540,14 +567,14 @@ items: repo: https://github.com/opentk/opentk.git id: ClipboardUpdate path: opentk/src/OpenTK.Core/Platform/Enums/PlatformEventType.cs - startLine: 51 + startLine: 52 assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform summary: Is raised when the contents of the clipboard is changed. example: [] syntax: - content: ClipboardUpdate = 18 + content: ClipboardUpdate = 19 return: type: OpenTK.Core.Platform.PlatformEventType - uid: OpenTK.Core.Platform.PlatformEventType.ThemeChange @@ -568,12 +595,12 @@ items: repo: https://github.com/opentk/opentk.git id: ThemeChange path: opentk/src/OpenTK.Core/Platform/Enums/PlatformEventType.cs - startLine: 53 + startLine: 54 assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform syntax: - content: ThemeChange = 19 + content: ThemeChange = 20 return: type: OpenTK.Core.Platform.PlatformEventType - uid: OpenTK.Core.Platform.PlatformEventType.DisplayConnectionChanged @@ -594,12 +621,12 @@ items: repo: https://github.com/opentk/opentk.git id: DisplayConnectionChanged path: opentk/src/OpenTK.Core/Platform/Enums/PlatformEventType.cs - startLine: 55 + startLine: 56 assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform syntax: - content: DisplayConnectionChanged = 20 + content: DisplayConnectionChanged = 21 return: type: OpenTK.Core.Platform.PlatformEventType - uid: OpenTK.Core.Platform.PlatformEventType.PowerStateChange @@ -620,12 +647,12 @@ items: repo: https://github.com/opentk/opentk.git id: PowerStateChange path: opentk/src/OpenTK.Core/Platform/Enums/PlatformEventType.cs - startLine: 57 + startLine: 58 assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform syntax: - content: PowerStateChange = 21 + content: PowerStateChange = 22 return: type: OpenTK.Core.Platform.PlatformEventType references: diff --git a/api/OpenTK.Core.Platform.PowerStateChangeEventArgs.yml b/api/OpenTK.Core.Platform.PowerStateChangeEventArgs.yml index aababdff..164c2ea4 100644 --- a/api/OpenTK.Core.Platform.PowerStateChangeEventArgs.yml +++ b/api/OpenTK.Core.Platform.PowerStateChangeEventArgs.yml @@ -21,7 +21,7 @@ items: repo: https://github.com/opentk/opentk.git id: PowerStateChangeEventArgs path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs - startLine: 614 + startLine: 633 assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform @@ -60,7 +60,7 @@ items: repo: https://github.com/opentk/opentk.git id: GoingToSleep path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs - startLine: 619 + startLine: 638 assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform @@ -91,7 +91,7 @@ items: repo: https://github.com/opentk/opentk.git id: .ctor path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs - startLine: 625 + startLine: 644 assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform diff --git a/api/OpenTK.Core.Platform.SaveDialogOptions.yml b/api/OpenTK.Core.Platform.SaveDialogOptions.yml new file mode 100644 index 00000000..b7c9d95d --- /dev/null +++ b/api/OpenTK.Core.Platform.SaveDialogOptions.yml @@ -0,0 +1,71 @@ +### YamlMime:ManagedReference +items: +- uid: OpenTK.Core.Platform.SaveDialogOptions + commentId: T:OpenTK.Core.Platform.SaveDialogOptions + id: SaveDialogOptions + parent: OpenTK.Core.Platform + children: [] + langs: + - csharp + - vb + name: SaveDialogOptions + nameWithType: SaveDialogOptions + fullName: OpenTK.Core.Platform.SaveDialogOptions + type: Enum + source: + remote: + path: src/OpenTK.Core/Platform/Enums/SaveDialogOptions.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: SaveDialogOptions + path: opentk/src/OpenTK.Core/Platform/Enums/SaveDialogOptions.cs + startLine: 11 + assemblies: + - OpenTK.Core + namespace: OpenTK.Core.Platform + summary: Options for save dialogs. + example: [] + syntax: + content: >- + [Flags] + + public enum SaveDialogOptions + content.vb: >- + + + Public Enum SaveDialogOptions + attributes: + - type: System.FlagsAttribute + ctor: System.FlagsAttribute.#ctor + arguments: [] +references: +- uid: OpenTK.Core.Platform + commentId: N:OpenTK.Core.Platform + href: OpenTK.html + name: OpenTK.Core.Platform + nameWithType: OpenTK.Core.Platform + fullName: OpenTK.Core.Platform + spec.csharp: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Core + name: Core + href: OpenTK.Core.html + - name: . + - uid: OpenTK.Core.Platform + name: Platform + href: OpenTK.Core.Platform.html + spec.vb: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Core + name: Core + href: OpenTK.Core.html + - name: . + - uid: OpenTK.Core.Platform + name: Platform + href: OpenTK.Core.Platform.html diff --git a/api/OpenTK.Core.Platform.Scancode.yml b/api/OpenTK.Core.Platform.Scancode.yml index afdea439..ad81957c 100644 --- a/api/OpenTK.Core.Platform.Scancode.yml +++ b/api/OpenTK.Core.Platform.Scancode.yml @@ -1203,7 +1203,7 @@ items: assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform - summary: Delete + summary: Delete. example: [] syntax: content: Backspace = 39 diff --git a/api/OpenTK.Core.Platform.ScrollEventArgs.yml b/api/OpenTK.Core.Platform.ScrollEventArgs.yml index c846de6e..3f68e423 100644 --- a/api/OpenTK.Core.Platform.ScrollEventArgs.yml +++ b/api/OpenTK.Core.Platform.ScrollEventArgs.yml @@ -22,7 +22,7 @@ items: repo: https://github.com/opentk/opentk.git id: ScrollEventArgs path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs - startLine: 471 + startLine: 490 assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform @@ -63,7 +63,7 @@ items: repo: https://github.com/opentk/opentk.git id: Delta path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs - startLine: 476 + startLine: 495 assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform @@ -94,7 +94,7 @@ items: repo: https://github.com/opentk/opentk.git id: Distance path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs - startLine: 484 + startLine: 503 assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform @@ -130,7 +130,7 @@ items: repo: https://github.com/opentk/opentk.git id: .ctor path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs - startLine: 492 + startLine: 511 assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform diff --git a/api/OpenTK.Core.Platform.SystemCursorType.yml b/api/OpenTK.Core.Platform.SystemCursorType.yml index 4b09226d..dfa116ee 100644 --- a/api/OpenTK.Core.Platform.SystemCursorType.yml +++ b/api/OpenTK.Core.Platform.SystemCursorType.yml @@ -100,7 +100,7 @@ items: assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform - summary: A mouse cursor to tell the user something is loading (like an arrow with an hour glass) + summary: A mouse cursor to tell the user something is loading (like an arrow with an hour glass.) example: [] syntax: content: Loading = 2 @@ -268,7 +268,7 @@ items: assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform - summary: A cursor which tells the user they can't do something (like a crossed out red circle) + summary: A cursor which tells the user they can't do something (like a crossed out red circle.) example: [] syntax: content: Forbidden = 8 diff --git a/api/OpenTK.Core.Platform.TextEditingEventArgs.yml b/api/OpenTK.Core.Platform.TextEditingEventArgs.yml index b431ce12..aaecce72 100644 --- a/api/OpenTK.Core.Platform.TextEditingEventArgs.yml +++ b/api/OpenTK.Core.Platform.TextEditingEventArgs.yml @@ -23,7 +23,7 @@ items: repo: https://github.com/opentk/opentk.git id: TextEditingEventArgs path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs - startLine: 280 + startLine: 297 assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform @@ -64,7 +64,7 @@ items: repo: https://github.com/opentk/opentk.git id: Candidate path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs - startLine: 285 + startLine: 302 assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform @@ -95,7 +95,7 @@ items: repo: https://github.com/opentk/opentk.git id: Cursor path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs - startLine: 290 + startLine: 307 assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform @@ -126,7 +126,7 @@ items: repo: https://github.com/opentk/opentk.git id: Length path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs - startLine: 295 + startLine: 312 assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform @@ -157,7 +157,7 @@ items: repo: https://github.com/opentk/opentk.git id: .ctor path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs - startLine: 304 + startLine: 321 assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform diff --git a/api/OpenTK.Core.Platform.TextInputEventArgs.yml b/api/OpenTK.Core.Platform.TextInputEventArgs.yml index 5b40fe78..bb0fdca3 100644 --- a/api/OpenTK.Core.Platform.TextInputEventArgs.yml +++ b/api/OpenTK.Core.Platform.TextInputEventArgs.yml @@ -21,7 +21,7 @@ items: repo: https://github.com/opentk/opentk.git id: TextInputEventArgs path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs - startLine: 259 + startLine: 276 assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform @@ -65,7 +65,7 @@ items: repo: https://github.com/opentk/opentk.git id: Text path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs - startLine: 264 + startLine: 281 assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform @@ -96,7 +96,7 @@ items: repo: https://github.com/opentk/opentk.git id: .ctor path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs - startLine: 271 + startLine: 288 assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform diff --git a/api/OpenTK.Core.Platform.ThemeChangeEventArgs.yml b/api/OpenTK.Core.Platform.ThemeChangeEventArgs.yml index 362e4d12..2468ab3f 100644 --- a/api/OpenTK.Core.Platform.ThemeChangeEventArgs.yml +++ b/api/OpenTK.Core.Platform.ThemeChangeEventArgs.yml @@ -21,7 +21,7 @@ items: repo: https://github.com/opentk/opentk.git id: ThemeChangeEventArgs path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs - startLine: 566 + startLine: 585 assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform @@ -60,7 +60,7 @@ items: repo: https://github.com/opentk/opentk.git id: NewTheme path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs - startLine: 571 + startLine: 590 assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform @@ -91,7 +91,7 @@ items: repo: https://github.com/opentk/opentk.git id: .ctor path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs - startLine: 577 + startLine: 596 assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform diff --git a/api/OpenTK.Core.Platform.ToolkitOptions.yml b/api/OpenTK.Core.Platform.ToolkitOptions.yml new file mode 100644 index 00000000..eca936f6 --- /dev/null +++ b/api/OpenTK.Core.Platform.ToolkitOptions.yml @@ -0,0 +1,412 @@ +### YamlMime:ManagedReference +items: +- uid: OpenTK.Core.Platform.ToolkitOptions + commentId: T:OpenTK.Core.Platform.ToolkitOptions + id: ToolkitOptions + parent: OpenTK.Core.Platform + children: + - OpenTK.Core.Platform.ToolkitOptions.ApplicationName + - OpenTK.Core.Platform.ToolkitOptions.Logger + langs: + - csharp + - vb + name: ToolkitOptions + nameWithType: ToolkitOptions + fullName: OpenTK.Core.Platform.ToolkitOptions + type: Class + source: + remote: + path: src/OpenTK.Core/Platform/ToolkitOptions.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: ToolkitOptions + path: opentk/src/OpenTK.Core/Platform/ToolkitOptions.cs + startLine: 9 + assemblies: + - OpenTK.Core + namespace: OpenTK.Core.Platform + summary: Options used to initialize OpenTK with. + example: [] + syntax: + content: public sealed class ToolkitOptions + content.vb: Public NotInheritable Class ToolkitOptions + inheritance: + - System.Object + inheritedMembers: + - System.Object.Equals(System.Object) + - System.Object.Equals(System.Object,System.Object) + - System.Object.GetHashCode + - System.Object.GetType + - System.Object.ReferenceEquals(System.Object,System.Object) + - System.Object.ToString +- uid: OpenTK.Core.Platform.ToolkitOptions.ApplicationName + commentId: P:OpenTK.Core.Platform.ToolkitOptions.ApplicationName + id: ApplicationName + parent: OpenTK.Core.Platform.ToolkitOptions + langs: + - csharp + - vb + name: ApplicationName + nameWithType: ToolkitOptions.ApplicationName + fullName: OpenTK.Core.Platform.ToolkitOptions.ApplicationName + type: Property + source: + remote: + path: src/OpenTK.Core/Platform/ToolkitOptions.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: ApplicationName + path: opentk/src/OpenTK.Core/Platform/ToolkitOptions.cs + startLine: 14 + assemblies: + - OpenTK.Core + namespace: OpenTK.Core.Platform + summary: The application name. + example: [] + syntax: + content: public string ApplicationName { get; set; } + parameters: [] + return: + type: System.String + content.vb: Public Property ApplicationName As String + overload: OpenTK.Core.Platform.ToolkitOptions.ApplicationName* +- uid: OpenTK.Core.Platform.ToolkitOptions.Logger + commentId: P:OpenTK.Core.Platform.ToolkitOptions.Logger + id: Logger + parent: OpenTK.Core.Platform.ToolkitOptions + langs: + - csharp + - vb + name: Logger + nameWithType: ToolkitOptions.Logger + fullName: OpenTK.Core.Platform.ToolkitOptions.Logger + type: Property + source: + remote: + path: src/OpenTK.Core/Platform/ToolkitOptions.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: Logger + path: opentk/src/OpenTK.Core/Platform/ToolkitOptions.cs + startLine: 21 + assemblies: + - OpenTK.Core + namespace: OpenTK.Core.Platform + summary: >- + The logger to send logging to. + + Log info can be useful to understand what might be going wrong if something isn't working. + + It's also useful to debug OpenTK. + example: [] + syntax: + content: public ILogger? Logger { get; set; } + parameters: [] + return: + type: OpenTK.Core.Utility.ILogger + content.vb: Public Property Logger As ILogger + overload: OpenTK.Core.Platform.ToolkitOptions.Logger* +references: +- uid: OpenTK.Core.Platform + commentId: N:OpenTK.Core.Platform + href: OpenTK.html + name: OpenTK.Core.Platform + nameWithType: OpenTK.Core.Platform + fullName: OpenTK.Core.Platform + spec.csharp: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Core + name: Core + href: OpenTK.Core.html + - name: . + - uid: OpenTK.Core.Platform + name: Platform + href: OpenTK.Core.Platform.html + spec.vb: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Core + name: Core + href: OpenTK.Core.html + - name: . + - uid: OpenTK.Core.Platform + name: Platform + href: OpenTK.Core.Platform.html +- uid: System.Object + commentId: T:System.Object + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + name: object + nameWithType: object + fullName: object + nameWithType.vb: Object + fullName.vb: Object + name.vb: Object +- uid: System.Object.Equals(System.Object) + commentId: M:System.Object.Equals(System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + name: Equals(object) + nameWithType: object.Equals(object) + fullName: object.Equals(object) + nameWithType.vb: Object.Equals(Object) + fullName.vb: Object.Equals(Object) + name.vb: Equals(Object) + spec.csharp: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.Equals(System.Object,System.Object) + commentId: M:System.Object.Equals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + name: Equals(object, object) + nameWithType: object.Equals(object, object) + fullName: object.Equals(object, object) + nameWithType.vb: Object.Equals(Object, Object) + fullName.vb: Object.Equals(Object, Object) + name.vb: Equals(Object, Object) + spec.csharp: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.GetHashCode + commentId: M:System.Object.GetHashCode + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + name: GetHashCode() + nameWithType: object.GetHashCode() + fullName: object.GetHashCode() + nameWithType.vb: Object.GetHashCode() + fullName.vb: Object.GetHashCode() + spec.csharp: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) +- uid: System.Object.GetType + commentId: M:System.Object.GetType + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + name: GetType() + nameWithType: object.GetType() + fullName: object.GetType() + nameWithType.vb: Object.GetType() + fullName.vb: Object.GetType() + spec.csharp: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) +- uid: System.Object.ReferenceEquals(System.Object,System.Object) + commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + name: ReferenceEquals(object, object) + nameWithType: object.ReferenceEquals(object, object) + fullName: object.ReferenceEquals(object, object) + nameWithType.vb: Object.ReferenceEquals(Object, Object) + fullName.vb: Object.ReferenceEquals(Object, Object) + name.vb: ReferenceEquals(Object, Object) + spec.csharp: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.ToString + commentId: M:System.Object.ToString + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + name: ToString() + nameWithType: object.ToString() + fullName: object.ToString() + nameWithType.vb: Object.ToString() + fullName.vb: Object.ToString() + spec.csharp: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) + spec.vb: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) +- uid: System + commentId: N:System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System + nameWithType: System + fullName: System +- uid: OpenTK.Core.Platform.ToolkitOptions.ApplicationName* + commentId: Overload:OpenTK.Core.Platform.ToolkitOptions.ApplicationName + href: OpenTK.Core.Platform.ToolkitOptions.html#OpenTK_Core_Platform_ToolkitOptions_ApplicationName + name: ApplicationName + nameWithType: ToolkitOptions.ApplicationName + fullName: OpenTK.Core.Platform.ToolkitOptions.ApplicationName +- uid: System.String + commentId: T:System.String + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + name: string + nameWithType: string + fullName: string + nameWithType.vb: String + fullName.vb: String + name.vb: String +- uid: OpenTK.Core.Platform.ToolkitOptions.Logger* + commentId: Overload:OpenTK.Core.Platform.ToolkitOptions.Logger + href: OpenTK.Core.Platform.ToolkitOptions.html#OpenTK_Core_Platform_ToolkitOptions_Logger + name: Logger + nameWithType: ToolkitOptions.Logger + fullName: OpenTK.Core.Platform.ToolkitOptions.Logger +- uid: OpenTK.Core.Utility.ILogger + commentId: T:OpenTK.Core.Utility.ILogger + parent: OpenTK.Core.Utility + href: OpenTK.Core.Utility.ILogger.html + name: ILogger + nameWithType: ILogger + fullName: OpenTK.Core.Utility.ILogger +- uid: OpenTK.Core.Utility + commentId: N:OpenTK.Core.Utility + href: OpenTK.html + name: OpenTK.Core.Utility + nameWithType: OpenTK.Core.Utility + fullName: OpenTK.Core.Utility + spec.csharp: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Core + name: Core + href: OpenTK.Core.html + - name: . + - uid: OpenTK.Core.Utility + name: Utility + href: OpenTK.Core.Utility.html + spec.vb: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Core + name: Core + href: OpenTK.Core.html + - name: . + - uid: OpenTK.Core.Utility + name: Utility + href: OpenTK.Core.Utility.html diff --git a/api/OpenTK.Core.Platform.WindowEventArgs.yml b/api/OpenTK.Core.Platform.WindowEventArgs.yml index fdfe59bf..53cb0267 100644 --- a/api/OpenTK.Core.Platform.WindowEventArgs.yml +++ b/api/OpenTK.Core.Platform.WindowEventArgs.yml @@ -46,10 +46,11 @@ items: - OpenTK.Core.Platform.ScrollEventArgs - OpenTK.Core.Platform.TextEditingEventArgs - OpenTK.Core.Platform.TextInputEventArgs - - OpenTK.Core.Platform.WindowDpiChangeEventArgs + - OpenTK.Core.Platform.WindowFramebufferResizeEventArgs - OpenTK.Core.Platform.WindowModeChangeEventArgs - OpenTK.Core.Platform.WindowMoveEventArgs - OpenTK.Core.Platform.WindowResizeEventArgs + - OpenTK.Core.Platform.WindowScaleChangeEventArgs inheritedMembers: - System.EventArgs.Empty - System.Object.Equals(System.Object) diff --git a/api/OpenTK.Core.Platform.WindowFramebufferResizeEventArgs.yml b/api/OpenTK.Core.Platform.WindowFramebufferResizeEventArgs.yml new file mode 100644 index 00000000..3c92fac3 --- /dev/null +++ b/api/OpenTK.Core.Platform.WindowFramebufferResizeEventArgs.yml @@ -0,0 +1,473 @@ +### YamlMime:ManagedReference +items: +- uid: OpenTK.Core.Platform.WindowFramebufferResizeEventArgs + commentId: T:OpenTK.Core.Platform.WindowFramebufferResizeEventArgs + id: WindowFramebufferResizeEventArgs + parent: OpenTK.Core.Platform + children: + - OpenTK.Core.Platform.WindowFramebufferResizeEventArgs.#ctor(OpenTK.Core.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) + - OpenTK.Core.Platform.WindowFramebufferResizeEventArgs.NewFramebufferSize + langs: + - csharp + - vb + name: WindowFramebufferResizeEventArgs + nameWithType: WindowFramebufferResizeEventArgs + fullName: OpenTK.Core.Platform.WindowFramebufferResizeEventArgs + type: Class + source: + remote: + path: src/OpenTK.Core/Platform/WindowEventArgs.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: WindowFramebufferResizeEventArgs + path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs + startLine: 116 + assemblies: + - OpenTK.Core + namespace: OpenTK.Core.Platform + summary: >- + This event is triggered when a window has its framebuffer change size. + + This event can occur for different reasons, not only the window changing size. + example: [] + syntax: + content: 'public class WindowFramebufferResizeEventArgs : WindowEventArgs' + content.vb: Public Class WindowFramebufferResizeEventArgs Inherits WindowEventArgs + inheritance: + - System.Object + - System.EventArgs + - OpenTK.Core.Platform.WindowEventArgs + inheritedMembers: + - OpenTK.Core.Platform.WindowEventArgs.Window + - System.EventArgs.Empty + - System.Object.Equals(System.Object) + - System.Object.Equals(System.Object,System.Object) + - System.Object.GetHashCode + - System.Object.GetType + - System.Object.MemberwiseClone + - System.Object.ReferenceEquals(System.Object,System.Object) + - System.Object.ToString +- uid: OpenTK.Core.Platform.WindowFramebufferResizeEventArgs.NewFramebufferSize + commentId: P:OpenTK.Core.Platform.WindowFramebufferResizeEventArgs.NewFramebufferSize + id: NewFramebufferSize + parent: OpenTK.Core.Platform.WindowFramebufferResizeEventArgs + langs: + - csharp + - vb + name: NewFramebufferSize + nameWithType: WindowFramebufferResizeEventArgs.NewFramebufferSize + fullName: OpenTK.Core.Platform.WindowFramebufferResizeEventArgs.NewFramebufferSize + type: Property + source: + remote: + path: src/OpenTK.Core/Platform/WindowEventArgs.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: NewFramebufferSize + path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs + startLine: 121 + assemblies: + - OpenTK.Core + namespace: OpenTK.Core.Platform + summary: The new framebuffer size of the window. + example: [] + syntax: + content: public Vector2i NewFramebufferSize { get; } + parameters: [] + return: + type: OpenTK.Mathematics.Vector2i + content.vb: Public Property NewFramebufferSize As Vector2i + overload: OpenTK.Core.Platform.WindowFramebufferResizeEventArgs.NewFramebufferSize* +- uid: OpenTK.Core.Platform.WindowFramebufferResizeEventArgs.#ctor(OpenTK.Core.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) + commentId: M:OpenTK.Core.Platform.WindowFramebufferResizeEventArgs.#ctor(OpenTK.Core.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) + id: '#ctor(OpenTK.Core.Platform.WindowHandle,OpenTK.Mathematics.Vector2i)' + parent: OpenTK.Core.Platform.WindowFramebufferResizeEventArgs + langs: + - csharp + - vb + name: WindowFramebufferResizeEventArgs(WindowHandle, Vector2i) + nameWithType: WindowFramebufferResizeEventArgs.WindowFramebufferResizeEventArgs(WindowHandle, Vector2i) + fullName: OpenTK.Core.Platform.WindowFramebufferResizeEventArgs.WindowFramebufferResizeEventArgs(OpenTK.Core.Platform.WindowHandle, OpenTK.Mathematics.Vector2i) + type: Constructor + source: + remote: + path: src/OpenTK.Core/Platform/WindowEventArgs.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: .ctor + path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs + startLine: 128 + assemblies: + - OpenTK.Core + namespace: OpenTK.Core.Platform + summary: Initializes a new instance of the class. + example: [] + syntax: + content: public WindowFramebufferResizeEventArgs(WindowHandle window, Vector2i newFramebufferSize) + parameters: + - id: window + type: OpenTK.Core.Platform.WindowHandle + description: The window whoes framebuffer changed size. + - id: newFramebufferSize + type: OpenTK.Mathematics.Vector2i + description: The new framebuffer size. + content.vb: Public Sub New(window As WindowHandle, newFramebufferSize As Vector2i) + overload: OpenTK.Core.Platform.WindowFramebufferResizeEventArgs.#ctor* + nameWithType.vb: WindowFramebufferResizeEventArgs.New(WindowHandle, Vector2i) + fullName.vb: OpenTK.Core.Platform.WindowFramebufferResizeEventArgs.New(OpenTK.Core.Platform.WindowHandle, OpenTK.Mathematics.Vector2i) + name.vb: New(WindowHandle, Vector2i) +references: +- uid: OpenTK.Core.Platform + commentId: N:OpenTK.Core.Platform + href: OpenTK.html + name: OpenTK.Core.Platform + nameWithType: OpenTK.Core.Platform + fullName: OpenTK.Core.Platform + spec.csharp: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Core + name: Core + href: OpenTK.Core.html + - name: . + - uid: OpenTK.Core.Platform + name: Platform + href: OpenTK.Core.Platform.html + spec.vb: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Core + name: Core + href: OpenTK.Core.html + - name: . + - uid: OpenTK.Core.Platform + name: Platform + href: OpenTK.Core.Platform.html +- uid: System.Object + commentId: T:System.Object + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + name: object + nameWithType: object + fullName: object + nameWithType.vb: Object + fullName.vb: Object + name.vb: Object +- uid: System.EventArgs + commentId: T:System.EventArgs + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.eventargs + name: EventArgs + nameWithType: EventArgs + fullName: System.EventArgs +- uid: OpenTK.Core.Platform.WindowEventArgs + commentId: T:OpenTK.Core.Platform.WindowEventArgs + parent: OpenTK.Core.Platform + href: OpenTK.Core.Platform.WindowEventArgs.html + name: WindowEventArgs + nameWithType: WindowEventArgs + fullName: OpenTK.Core.Platform.WindowEventArgs +- uid: OpenTK.Core.Platform.WindowEventArgs.Window + commentId: P:OpenTK.Core.Platform.WindowEventArgs.Window + parent: OpenTK.Core.Platform.WindowEventArgs + href: OpenTK.Core.Platform.WindowEventArgs.html#OpenTK_Core_Platform_WindowEventArgs_Window + name: Window + nameWithType: WindowEventArgs.Window + fullName: OpenTK.Core.Platform.WindowEventArgs.Window +- uid: System.EventArgs.Empty + commentId: F:System.EventArgs.Empty + parent: System.EventArgs + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.eventargs.empty + name: Empty + nameWithType: EventArgs.Empty + fullName: System.EventArgs.Empty +- uid: System.Object.Equals(System.Object) + commentId: M:System.Object.Equals(System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + name: Equals(object) + nameWithType: object.Equals(object) + fullName: object.Equals(object) + nameWithType.vb: Object.Equals(Object) + fullName.vb: Object.Equals(Object) + name.vb: Equals(Object) + spec.csharp: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.Equals(System.Object,System.Object) + commentId: M:System.Object.Equals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + name: Equals(object, object) + nameWithType: object.Equals(object, object) + fullName: object.Equals(object, object) + nameWithType.vb: Object.Equals(Object, Object) + fullName.vb: Object.Equals(Object, Object) + name.vb: Equals(Object, Object) + spec.csharp: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.GetHashCode + commentId: M:System.Object.GetHashCode + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + name: GetHashCode() + nameWithType: object.GetHashCode() + fullName: object.GetHashCode() + nameWithType.vb: Object.GetHashCode() + fullName.vb: Object.GetHashCode() + spec.csharp: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) +- uid: System.Object.GetType + commentId: M:System.Object.GetType + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + name: GetType() + nameWithType: object.GetType() + fullName: object.GetType() + nameWithType.vb: Object.GetType() + fullName.vb: Object.GetType() + spec.csharp: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) +- uid: System.Object.MemberwiseClone + commentId: M:System.Object.MemberwiseClone + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + name: MemberwiseClone() + nameWithType: object.MemberwiseClone() + fullName: object.MemberwiseClone() + nameWithType.vb: Object.MemberwiseClone() + fullName.vb: Object.MemberwiseClone() + spec.csharp: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) + spec.vb: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) +- uid: System.Object.ReferenceEquals(System.Object,System.Object) + commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + name: ReferenceEquals(object, object) + nameWithType: object.ReferenceEquals(object, object) + fullName: object.ReferenceEquals(object, object) + nameWithType.vb: Object.ReferenceEquals(Object, Object) + fullName.vb: Object.ReferenceEquals(Object, Object) + name.vb: ReferenceEquals(Object, Object) + spec.csharp: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.ToString + commentId: M:System.Object.ToString + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + name: ToString() + nameWithType: object.ToString() + fullName: object.ToString() + nameWithType.vb: Object.ToString() + fullName.vb: Object.ToString() + spec.csharp: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) + spec.vb: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) +- uid: System + commentId: N:System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System + nameWithType: System + fullName: System +- uid: OpenTK.Core.Platform.WindowFramebufferResizeEventArgs.NewFramebufferSize* + commentId: Overload:OpenTK.Core.Platform.WindowFramebufferResizeEventArgs.NewFramebufferSize + href: OpenTK.Core.Platform.WindowFramebufferResizeEventArgs.html#OpenTK_Core_Platform_WindowFramebufferResizeEventArgs_NewFramebufferSize + name: NewFramebufferSize + nameWithType: WindowFramebufferResizeEventArgs.NewFramebufferSize + fullName: OpenTK.Core.Platform.WindowFramebufferResizeEventArgs.NewFramebufferSize +- uid: OpenTK.Mathematics.Vector2i + commentId: T:OpenTK.Mathematics.Vector2i + parent: OpenTK.Mathematics + href: OpenTK.Mathematics.Vector2i.html + name: Vector2i + nameWithType: Vector2i + fullName: OpenTK.Mathematics.Vector2i +- uid: OpenTK.Mathematics + commentId: N:OpenTK.Mathematics + href: OpenTK.html + name: OpenTK.Mathematics + nameWithType: OpenTK.Mathematics + fullName: OpenTK.Mathematics + spec.csharp: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Mathematics + name: Mathematics + href: OpenTK.Mathematics.html + spec.vb: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Mathematics + name: Mathematics + href: OpenTK.Mathematics.html +- uid: OpenTK.Core.Platform.WindowFramebufferResizeEventArgs + commentId: T:OpenTK.Core.Platform.WindowFramebufferResizeEventArgs + href: OpenTK.Core.Platform.WindowFramebufferResizeEventArgs.html + name: WindowFramebufferResizeEventArgs + nameWithType: WindowFramebufferResizeEventArgs + fullName: OpenTK.Core.Platform.WindowFramebufferResizeEventArgs +- uid: OpenTK.Core.Platform.WindowFramebufferResizeEventArgs.#ctor* + commentId: Overload:OpenTK.Core.Platform.WindowFramebufferResizeEventArgs.#ctor + href: OpenTK.Core.Platform.WindowFramebufferResizeEventArgs.html#OpenTK_Core_Platform_WindowFramebufferResizeEventArgs__ctor_OpenTK_Core_Platform_WindowHandle_OpenTK_Mathematics_Vector2i_ + name: WindowFramebufferResizeEventArgs + nameWithType: WindowFramebufferResizeEventArgs.WindowFramebufferResizeEventArgs + fullName: OpenTK.Core.Platform.WindowFramebufferResizeEventArgs.WindowFramebufferResizeEventArgs + nameWithType.vb: WindowFramebufferResizeEventArgs.New + fullName.vb: OpenTK.Core.Platform.WindowFramebufferResizeEventArgs.New + name.vb: New +- uid: OpenTK.Core.Platform.WindowHandle + commentId: T:OpenTK.Core.Platform.WindowHandle + parent: OpenTK.Core.Platform + href: OpenTK.Core.Platform.WindowHandle.html + name: WindowHandle + nameWithType: WindowHandle + fullName: OpenTK.Core.Platform.WindowHandle diff --git a/api/OpenTK.Core.Platform.WindowModeChangeEventArgs.yml b/api/OpenTK.Core.Platform.WindowModeChangeEventArgs.yml index da3f9ccd..1e2837ff 100644 --- a/api/OpenTK.Core.Platform.WindowModeChangeEventArgs.yml +++ b/api/OpenTK.Core.Platform.WindowModeChangeEventArgs.yml @@ -21,7 +21,7 @@ items: repo: https://github.com/opentk/opentk.git id: WindowModeChangeEventArgs path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs - startLine: 106 + startLine: 137 assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform @@ -62,7 +62,7 @@ items: repo: https://github.com/opentk/opentk.git id: NewMode path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs - startLine: 111 + startLine: 142 assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform @@ -93,7 +93,7 @@ items: repo: https://github.com/opentk/opentk.git id: .ctor path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs - startLine: 118 + startLine: 149 assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform diff --git a/api/OpenTK.Core.Platform.WindowMoveEventArgs.yml b/api/OpenTK.Core.Platform.WindowMoveEventArgs.yml index 9f4d6ac1..e219d3f3 100644 --- a/api/OpenTK.Core.Platform.WindowMoveEventArgs.yml +++ b/api/OpenTK.Core.Platform.WindowMoveEventArgs.yml @@ -22,7 +22,7 @@ items: repo: https://github.com/opentk/opentk.git id: WindowMoveEventArgs path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs - startLine: 56 + startLine: 58 assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform @@ -63,7 +63,7 @@ items: repo: https://github.com/opentk/opentk.git id: WindowPosition path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs - startLine: 61 + startLine: 63 assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform @@ -94,7 +94,7 @@ items: repo: https://github.com/opentk/opentk.git id: ClientAreaPosition path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs - startLine: 66 + startLine: 68 assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform @@ -125,7 +125,7 @@ items: repo: https://github.com/opentk/opentk.git id: .ctor path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs - startLine: 74 + startLine: 76 assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform diff --git a/api/OpenTK.Core.Platform.WindowResizeEventArgs.yml b/api/OpenTK.Core.Platform.WindowResizeEventArgs.yml index 937f8dc2..5ec35ba7 100644 --- a/api/OpenTK.Core.Platform.WindowResizeEventArgs.yml +++ b/api/OpenTK.Core.Platform.WindowResizeEventArgs.yml @@ -5,7 +5,8 @@ items: id: WindowResizeEventArgs parent: OpenTK.Core.Platform children: - - OpenTK.Core.Platform.WindowResizeEventArgs.#ctor(OpenTK.Core.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) + - OpenTK.Core.Platform.WindowResizeEventArgs.#ctor(OpenTK.Core.Platform.WindowHandle,OpenTK.Mathematics.Vector2i,OpenTK.Mathematics.Vector2i) + - OpenTK.Core.Platform.WindowResizeEventArgs.NewClientSize - OpenTK.Core.Platform.WindowResizeEventArgs.NewSize langs: - csharp @@ -21,7 +22,7 @@ items: repo: https://github.com/opentk/opentk.git id: WindowResizeEventArgs path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs - startLine: 84 + startLine: 86 assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform @@ -62,7 +63,7 @@ items: repo: https://github.com/opentk/opentk.git id: NewSize path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs - startLine: 89 + startLine: 91 assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform @@ -75,16 +76,47 @@ items: type: OpenTK.Mathematics.Vector2i content.vb: Public Property NewSize As Vector2i overload: OpenTK.Core.Platform.WindowResizeEventArgs.NewSize* -- uid: OpenTK.Core.Platform.WindowResizeEventArgs.#ctor(OpenTK.Core.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) - commentId: M:OpenTK.Core.Platform.WindowResizeEventArgs.#ctor(OpenTK.Core.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) - id: '#ctor(OpenTK.Core.Platform.WindowHandle,OpenTK.Mathematics.Vector2i)' +- uid: OpenTK.Core.Platform.WindowResizeEventArgs.NewClientSize + commentId: P:OpenTK.Core.Platform.WindowResizeEventArgs.NewClientSize + id: NewClientSize parent: OpenTK.Core.Platform.WindowResizeEventArgs langs: - csharp - vb - name: WindowResizeEventArgs(WindowHandle, Vector2i) - nameWithType: WindowResizeEventArgs.WindowResizeEventArgs(WindowHandle, Vector2i) - fullName: OpenTK.Core.Platform.WindowResizeEventArgs.WindowResizeEventArgs(OpenTK.Core.Platform.WindowHandle, OpenTK.Mathematics.Vector2i) + name: NewClientSize + nameWithType: WindowResizeEventArgs.NewClientSize + fullName: OpenTK.Core.Platform.WindowResizeEventArgs.NewClientSize + type: Property + source: + remote: + path: src/OpenTK.Core/Platform/WindowEventArgs.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: NewClientSize + path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs + startLine: 96 + assemblies: + - OpenTK.Core + namespace: OpenTK.Core.Platform + summary: The new client size of the window. + example: [] + syntax: + content: public Vector2i NewClientSize { get; } + parameters: [] + return: + type: OpenTK.Mathematics.Vector2i + content.vb: Public Property NewClientSize As Vector2i + overload: OpenTK.Core.Platform.WindowResizeEventArgs.NewClientSize* +- uid: OpenTK.Core.Platform.WindowResizeEventArgs.#ctor(OpenTK.Core.Platform.WindowHandle,OpenTK.Mathematics.Vector2i,OpenTK.Mathematics.Vector2i) + commentId: M:OpenTK.Core.Platform.WindowResizeEventArgs.#ctor(OpenTK.Core.Platform.WindowHandle,OpenTK.Mathematics.Vector2i,OpenTK.Mathematics.Vector2i) + id: '#ctor(OpenTK.Core.Platform.WindowHandle,OpenTK.Mathematics.Vector2i,OpenTK.Mathematics.Vector2i)' + parent: OpenTK.Core.Platform.WindowResizeEventArgs + langs: + - csharp + - vb + name: WindowResizeEventArgs(WindowHandle, Vector2i, Vector2i) + nameWithType: WindowResizeEventArgs.WindowResizeEventArgs(WindowHandle, Vector2i, Vector2i) + fullName: OpenTK.Core.Platform.WindowResizeEventArgs.WindowResizeEventArgs(OpenTK.Core.Platform.WindowHandle, OpenTK.Mathematics.Vector2i, OpenTK.Mathematics.Vector2i) type: Constructor source: remote: @@ -93,14 +125,14 @@ items: repo: https://github.com/opentk/opentk.git id: .ctor path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs - startLine: 97 + startLine: 105 assemblies: - OpenTK.Core namespace: OpenTK.Core.Platform summary: Initializes a new instance of the class. example: [] syntax: - content: public WindowResizeEventArgs(WindowHandle window, Vector2i newSize) + content: public WindowResizeEventArgs(WindowHandle window, Vector2i newSize, Vector2i newClientSize) parameters: - id: window type: OpenTK.Core.Platform.WindowHandle @@ -108,11 +140,14 @@ items: - id: newSize type: OpenTK.Mathematics.Vector2i description: The new window size. - content.vb: Public Sub New(window As WindowHandle, newSize As Vector2i) + - id: newClientSize + type: OpenTK.Mathematics.Vector2i + description: The new client size of the window. + content.vb: Public Sub New(window As WindowHandle, newSize As Vector2i, newClientSize As Vector2i) overload: OpenTK.Core.Platform.WindowResizeEventArgs.#ctor* - nameWithType.vb: WindowResizeEventArgs.New(WindowHandle, Vector2i) - fullName.vb: OpenTK.Core.Platform.WindowResizeEventArgs.New(OpenTK.Core.Platform.WindowHandle, OpenTK.Mathematics.Vector2i) - name.vb: New(WindowHandle, Vector2i) + nameWithType.vb: WindowResizeEventArgs.New(WindowHandle, Vector2i, Vector2i) + fullName.vb: OpenTK.Core.Platform.WindowResizeEventArgs.New(OpenTK.Core.Platform.WindowHandle, OpenTK.Mathematics.Vector2i, OpenTK.Mathematics.Vector2i) + name.vb: New(WindowHandle, Vector2i, Vector2i) references: - uid: OpenTK.Core.Platform commentId: N:OpenTK.Core.Platform @@ -446,6 +481,12 @@ references: - uid: OpenTK.Mathematics name: Mathematics href: OpenTK.Mathematics.html +- uid: OpenTK.Core.Platform.WindowResizeEventArgs.NewClientSize* + commentId: Overload:OpenTK.Core.Platform.WindowResizeEventArgs.NewClientSize + href: OpenTK.Core.Platform.WindowResizeEventArgs.html#OpenTK_Core_Platform_WindowResizeEventArgs_NewClientSize + name: NewClientSize + nameWithType: WindowResizeEventArgs.NewClientSize + fullName: OpenTK.Core.Platform.WindowResizeEventArgs.NewClientSize - uid: OpenTK.Core.Platform.WindowResizeEventArgs commentId: T:OpenTK.Core.Platform.WindowResizeEventArgs href: OpenTK.Core.Platform.WindowResizeEventArgs.html @@ -454,7 +495,7 @@ references: fullName: OpenTK.Core.Platform.WindowResizeEventArgs - uid: OpenTK.Core.Platform.WindowResizeEventArgs.#ctor* commentId: Overload:OpenTK.Core.Platform.WindowResizeEventArgs.#ctor - href: OpenTK.Core.Platform.WindowResizeEventArgs.html#OpenTK_Core_Platform_WindowResizeEventArgs__ctor_OpenTK_Core_Platform_WindowHandle_OpenTK_Mathematics_Vector2i_ + href: OpenTK.Core.Platform.WindowResizeEventArgs.html#OpenTK_Core_Platform_WindowResizeEventArgs__ctor_OpenTK_Core_Platform_WindowHandle_OpenTK_Mathematics_Vector2i_OpenTK_Mathematics_Vector2i_ name: WindowResizeEventArgs nameWithType: WindowResizeEventArgs.WindowResizeEventArgs fullName: OpenTK.Core.Platform.WindowResizeEventArgs.WindowResizeEventArgs diff --git a/api/OpenTK.Core.Platform.WindowScaleChangeEventArgs.yml b/api/OpenTK.Core.Platform.WindowScaleChangeEventArgs.yml new file mode 100644 index 00000000..fc5755cc --- /dev/null +++ b/api/OpenTK.Core.Platform.WindowScaleChangeEventArgs.yml @@ -0,0 +1,498 @@ +### YamlMime:ManagedReference +items: +- uid: OpenTK.Core.Platform.WindowScaleChangeEventArgs + commentId: T:OpenTK.Core.Platform.WindowScaleChangeEventArgs + id: WindowScaleChangeEventArgs + parent: OpenTK.Core.Platform + children: + - OpenTK.Core.Platform.WindowScaleChangeEventArgs.#ctor(OpenTK.Core.Platform.WindowHandle,System.Single,System.Single) + - OpenTK.Core.Platform.WindowScaleChangeEventArgs.ScaleX + - OpenTK.Core.Platform.WindowScaleChangeEventArgs.ScaleY + langs: + - csharp + - vb + name: WindowScaleChangeEventArgs + nameWithType: WindowScaleChangeEventArgs + fullName: OpenTK.Core.Platform.WindowScaleChangeEventArgs + type: Class + source: + remote: + path: src/OpenTK.Core/Platform/WindowEventArgs.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: WindowScaleChangeEventArgs + path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs + startLine: 160 + assemblies: + - OpenTK.Core + namespace: OpenTK.Core.Platform + summary: >- + This event is triggered when the DPI of a window changes. + + This can happen if the window is moved between monitors with + + different DPI scaling settings or if the user changes DPI settings. + example: [] + syntax: + content: 'public class WindowScaleChangeEventArgs : WindowEventArgs' + content.vb: Public Class WindowScaleChangeEventArgs Inherits WindowEventArgs + inheritance: + - System.Object + - System.EventArgs + - OpenTK.Core.Platform.WindowEventArgs + inheritedMembers: + - OpenTK.Core.Platform.WindowEventArgs.Window + - System.EventArgs.Empty + - System.Object.Equals(System.Object) + - System.Object.Equals(System.Object,System.Object) + - System.Object.GetHashCode + - System.Object.GetType + - System.Object.MemberwiseClone + - System.Object.ReferenceEquals(System.Object,System.Object) + - System.Object.ToString +- uid: OpenTK.Core.Platform.WindowScaleChangeEventArgs.ScaleX + commentId: P:OpenTK.Core.Platform.WindowScaleChangeEventArgs.ScaleX + id: ScaleX + parent: OpenTK.Core.Platform.WindowScaleChangeEventArgs + langs: + - csharp + - vb + name: ScaleX + nameWithType: WindowScaleChangeEventArgs.ScaleX + fullName: OpenTK.Core.Platform.WindowScaleChangeEventArgs.ScaleX + type: Property + source: + remote: + path: src/OpenTK.Core/Platform/WindowEventArgs.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: ScaleX + path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs + startLine: 165 + assemblies: + - OpenTK.Core + namespace: OpenTK.Core.Platform + summary: The new scale value in the x-axis. + example: [] + syntax: + content: public float ScaleX { get; } + parameters: [] + return: + type: System.Single + content.vb: Public Property ScaleX As Single + overload: OpenTK.Core.Platform.WindowScaleChangeEventArgs.ScaleX* +- uid: OpenTK.Core.Platform.WindowScaleChangeEventArgs.ScaleY + commentId: P:OpenTK.Core.Platform.WindowScaleChangeEventArgs.ScaleY + id: ScaleY + parent: OpenTK.Core.Platform.WindowScaleChangeEventArgs + langs: + - csharp + - vb + name: ScaleY + nameWithType: WindowScaleChangeEventArgs.ScaleY + fullName: OpenTK.Core.Platform.WindowScaleChangeEventArgs.ScaleY + type: Property + source: + remote: + path: src/OpenTK.Core/Platform/WindowEventArgs.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: ScaleY + path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs + startLine: 170 + assemblies: + - OpenTK.Core + namespace: OpenTK.Core.Platform + summary: The new scale value in the y-axis. + example: [] + syntax: + content: public float ScaleY { get; } + parameters: [] + return: + type: System.Single + content.vb: Public Property ScaleY As Single + overload: OpenTK.Core.Platform.WindowScaleChangeEventArgs.ScaleY* +- uid: OpenTK.Core.Platform.WindowScaleChangeEventArgs.#ctor(OpenTK.Core.Platform.WindowHandle,System.Single,System.Single) + commentId: M:OpenTK.Core.Platform.WindowScaleChangeEventArgs.#ctor(OpenTK.Core.Platform.WindowHandle,System.Single,System.Single) + id: '#ctor(OpenTK.Core.Platform.WindowHandle,System.Single,System.Single)' + parent: OpenTK.Core.Platform.WindowScaleChangeEventArgs + langs: + - csharp + - vb + name: WindowScaleChangeEventArgs(WindowHandle, float, float) + nameWithType: WindowScaleChangeEventArgs.WindowScaleChangeEventArgs(WindowHandle, float, float) + fullName: OpenTK.Core.Platform.WindowScaleChangeEventArgs.WindowScaleChangeEventArgs(OpenTK.Core.Platform.WindowHandle, float, float) + type: Constructor + source: + remote: + path: src/OpenTK.Core/Platform/WindowEventArgs.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: .ctor + path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs + startLine: 178 + assemblies: + - OpenTK.Core + namespace: OpenTK.Core.Platform + summary: Initializes a new instance of the class. + example: [] + syntax: + content: public WindowScaleChangeEventArgs(WindowHandle window, float scaleX, float scaleY) + parameters: + - id: window + type: OpenTK.Core.Platform.WindowHandle + description: The window whose dpi has changed. + - id: scaleX + type: System.Single + description: The new x axis scale factor. + - id: scaleY + type: System.Single + description: The new y axis scale factor. + content.vb: Public Sub New(window As WindowHandle, scaleX As Single, scaleY As Single) + overload: OpenTK.Core.Platform.WindowScaleChangeEventArgs.#ctor* + nameWithType.vb: WindowScaleChangeEventArgs.New(WindowHandle, Single, Single) + fullName.vb: OpenTK.Core.Platform.WindowScaleChangeEventArgs.New(OpenTK.Core.Platform.WindowHandle, Single, Single) + name.vb: New(WindowHandle, Single, Single) +references: +- uid: OpenTK.Core.Platform + commentId: N:OpenTK.Core.Platform + href: OpenTK.html + name: OpenTK.Core.Platform + nameWithType: OpenTK.Core.Platform + fullName: OpenTK.Core.Platform + spec.csharp: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Core + name: Core + href: OpenTK.Core.html + - name: . + - uid: OpenTK.Core.Platform + name: Platform + href: OpenTK.Core.Platform.html + spec.vb: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Core + name: Core + href: OpenTK.Core.html + - name: . + - uid: OpenTK.Core.Platform + name: Platform + href: OpenTK.Core.Platform.html +- uid: System.Object + commentId: T:System.Object + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + name: object + nameWithType: object + fullName: object + nameWithType.vb: Object + fullName.vb: Object + name.vb: Object +- uid: System.EventArgs + commentId: T:System.EventArgs + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.eventargs + name: EventArgs + nameWithType: EventArgs + fullName: System.EventArgs +- uid: OpenTK.Core.Platform.WindowEventArgs + commentId: T:OpenTK.Core.Platform.WindowEventArgs + parent: OpenTK.Core.Platform + href: OpenTK.Core.Platform.WindowEventArgs.html + name: WindowEventArgs + nameWithType: WindowEventArgs + fullName: OpenTK.Core.Platform.WindowEventArgs +- uid: OpenTK.Core.Platform.WindowEventArgs.Window + commentId: P:OpenTK.Core.Platform.WindowEventArgs.Window + parent: OpenTK.Core.Platform.WindowEventArgs + href: OpenTK.Core.Platform.WindowEventArgs.html#OpenTK_Core_Platform_WindowEventArgs_Window + name: Window + nameWithType: WindowEventArgs.Window + fullName: OpenTK.Core.Platform.WindowEventArgs.Window +- uid: System.EventArgs.Empty + commentId: F:System.EventArgs.Empty + parent: System.EventArgs + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.eventargs.empty + name: Empty + nameWithType: EventArgs.Empty + fullName: System.EventArgs.Empty +- uid: System.Object.Equals(System.Object) + commentId: M:System.Object.Equals(System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + name: Equals(object) + nameWithType: object.Equals(object) + fullName: object.Equals(object) + nameWithType.vb: Object.Equals(Object) + fullName.vb: Object.Equals(Object) + name.vb: Equals(Object) + spec.csharp: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.Equals(System.Object,System.Object) + commentId: M:System.Object.Equals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + name: Equals(object, object) + nameWithType: object.Equals(object, object) + fullName: object.Equals(object, object) + nameWithType.vb: Object.Equals(Object, Object) + fullName.vb: Object.Equals(Object, Object) + name.vb: Equals(Object, Object) + spec.csharp: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.GetHashCode + commentId: M:System.Object.GetHashCode + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + name: GetHashCode() + nameWithType: object.GetHashCode() + fullName: object.GetHashCode() + nameWithType.vb: Object.GetHashCode() + fullName.vb: Object.GetHashCode() + spec.csharp: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) +- uid: System.Object.GetType + commentId: M:System.Object.GetType + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + name: GetType() + nameWithType: object.GetType() + fullName: object.GetType() + nameWithType.vb: Object.GetType() + fullName.vb: Object.GetType() + spec.csharp: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) +- uid: System.Object.MemberwiseClone + commentId: M:System.Object.MemberwiseClone + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + name: MemberwiseClone() + nameWithType: object.MemberwiseClone() + fullName: object.MemberwiseClone() + nameWithType.vb: Object.MemberwiseClone() + fullName.vb: Object.MemberwiseClone() + spec.csharp: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) + spec.vb: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) +- uid: System.Object.ReferenceEquals(System.Object,System.Object) + commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + name: ReferenceEquals(object, object) + nameWithType: object.ReferenceEquals(object, object) + fullName: object.ReferenceEquals(object, object) + nameWithType.vb: Object.ReferenceEquals(Object, Object) + fullName.vb: Object.ReferenceEquals(Object, Object) + name.vb: ReferenceEquals(Object, Object) + spec.csharp: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.ToString + commentId: M:System.Object.ToString + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + name: ToString() + nameWithType: object.ToString() + fullName: object.ToString() + nameWithType.vb: Object.ToString() + fullName.vb: Object.ToString() + spec.csharp: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) + spec.vb: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) +- uid: System + commentId: N:System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System + nameWithType: System + fullName: System +- uid: OpenTK.Core.Platform.WindowScaleChangeEventArgs.ScaleX* + commentId: Overload:OpenTK.Core.Platform.WindowScaleChangeEventArgs.ScaleX + href: OpenTK.Core.Platform.WindowScaleChangeEventArgs.html#OpenTK_Core_Platform_WindowScaleChangeEventArgs_ScaleX + name: ScaleX + nameWithType: WindowScaleChangeEventArgs.ScaleX + fullName: OpenTK.Core.Platform.WindowScaleChangeEventArgs.ScaleX +- uid: System.Single + commentId: T:System.Single + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.single + name: float + nameWithType: float + fullName: float + nameWithType.vb: Single + fullName.vb: Single + name.vb: Single +- uid: OpenTK.Core.Platform.WindowScaleChangeEventArgs.ScaleY* + commentId: Overload:OpenTK.Core.Platform.WindowScaleChangeEventArgs.ScaleY + href: OpenTK.Core.Platform.WindowScaleChangeEventArgs.html#OpenTK_Core_Platform_WindowScaleChangeEventArgs_ScaleY + name: ScaleY + nameWithType: WindowScaleChangeEventArgs.ScaleY + fullName: OpenTK.Core.Platform.WindowScaleChangeEventArgs.ScaleY +- uid: OpenTK.Core.Platform.WindowScaleChangeEventArgs + commentId: T:OpenTK.Core.Platform.WindowScaleChangeEventArgs + href: OpenTK.Core.Platform.WindowScaleChangeEventArgs.html + name: WindowScaleChangeEventArgs + nameWithType: WindowScaleChangeEventArgs + fullName: OpenTK.Core.Platform.WindowScaleChangeEventArgs +- uid: OpenTK.Core.Platform.WindowScaleChangeEventArgs.#ctor* + commentId: Overload:OpenTK.Core.Platform.WindowScaleChangeEventArgs.#ctor + href: OpenTK.Core.Platform.WindowScaleChangeEventArgs.html#OpenTK_Core_Platform_WindowScaleChangeEventArgs__ctor_OpenTK_Core_Platform_WindowHandle_System_Single_System_Single_ + name: WindowScaleChangeEventArgs + nameWithType: WindowScaleChangeEventArgs.WindowScaleChangeEventArgs + fullName: OpenTK.Core.Platform.WindowScaleChangeEventArgs.WindowScaleChangeEventArgs + nameWithType.vb: WindowScaleChangeEventArgs.New + fullName.vb: OpenTK.Core.Platform.WindowScaleChangeEventArgs.New + name.vb: New +- uid: OpenTK.Core.Platform.WindowHandle + commentId: T:OpenTK.Core.Platform.WindowHandle + parent: OpenTK.Core.Platform + href: OpenTK.Core.Platform.WindowHandle.html + name: WindowHandle + nameWithType: WindowHandle + fullName: OpenTK.Core.Platform.WindowHandle diff --git a/api/OpenTK.Core.Platform.yml b/api/OpenTK.Core.Platform.yml index 2fee517b..504ea362 100644 --- a/api/OpenTK.Core.Platform.yml +++ b/api/OpenTK.Core.Platform.yml @@ -12,13 +12,17 @@ items: - OpenTK.Core.Platform.ClipboardFormat - OpenTK.Core.Platform.ClipboardUpdateEventArgs - OpenTK.Core.Platform.CloseEventArgs - - OpenTK.Core.Platform.ComponentSet - OpenTK.Core.Platform.ContextDepthBits - - OpenTK.Core.Platform.ContextSettings + - OpenTK.Core.Platform.ContextPixelFormat + - OpenTK.Core.Platform.ContextReleaseBehaviour + - OpenTK.Core.Platform.ContextResetNotificationStrategy - OpenTK.Core.Platform.ContextStencilBits + - OpenTK.Core.Platform.ContextSwapMethod + - OpenTK.Core.Platform.ContextValueSelector - OpenTK.Core.Platform.ContextValues - OpenTK.Core.Platform.CursorCaptureMode - OpenTK.Core.Platform.CursorHandle + - OpenTK.Core.Platform.DialogFileFilter - OpenTK.Core.Platform.DisplayConnectionChangedEventArgs - OpenTK.Core.Platform.DisplayHandle - OpenTK.Core.Platform.DisplayResolution @@ -33,6 +37,7 @@ items: - OpenTK.Core.Platform.HitType - OpenTK.Core.Platform.IClipboardComponent - OpenTK.Core.Platform.ICursorComponent + - OpenTK.Core.Platform.IDialogComponent - OpenTK.Core.Platform.IDisplayComponent - OpenTK.Core.Platform.IIconComponent - OpenTK.Core.Platform.IJoystickComponent @@ -60,6 +65,7 @@ items: - OpenTK.Core.Platform.MouseHandle - OpenTK.Core.Platform.MouseMoveEventArgs - OpenTK.Core.Platform.MouseState + - OpenTK.Core.Platform.OpenDialogOptions - OpenTK.Core.Platform.OpenGLContextHandle - OpenTK.Core.Platform.OpenGLGraphicsApiHints - OpenTK.Core.Platform.OpenGLProfile @@ -72,6 +78,7 @@ items: - OpenTK.Core.Platform.PlatformEventType - OpenTK.Core.Platform.PlatformException - OpenTK.Core.Platform.PowerStateChangeEventArgs + - OpenTK.Core.Platform.SaveDialogOptions - OpenTK.Core.Platform.Scancode - OpenTK.Core.Platform.ScrollEventArgs - OpenTK.Core.Platform.SurfaceHandle @@ -83,16 +90,18 @@ items: - OpenTK.Core.Platform.TextInputEventArgs - OpenTK.Core.Platform.ThemeChangeEventArgs - OpenTK.Core.Platform.ThemeInfo + - OpenTK.Core.Platform.ToolkitOptions - OpenTK.Core.Platform.VideoMode - OpenTK.Core.Platform.WindowBorderStyle - - OpenTK.Core.Platform.WindowDpiChangeEventArgs - OpenTK.Core.Platform.WindowEventArgs - OpenTK.Core.Platform.WindowEventHandler + - OpenTK.Core.Platform.WindowFramebufferResizeEventArgs - OpenTK.Core.Platform.WindowHandle - OpenTK.Core.Platform.WindowMode - OpenTK.Core.Platform.WindowModeChangeEventArgs - OpenTK.Core.Platform.WindowMoveEventArgs - OpenTK.Core.Platform.WindowResizeEventArgs + - OpenTK.Core.Platform.WindowScaleChangeEventArgs langs: - csharp - vb @@ -124,24 +133,34 @@ references: name: Bitmap nameWithType: Bitmap fullName: OpenTK.Core.Platform.Bitmap -- uid: OpenTK.Core.Platform.ComponentSet - commentId: T:OpenTK.Core.Platform.ComponentSet - href: OpenTK.Core.Platform.ComponentSet.html - name: ComponentSet - nameWithType: ComponentSet - fullName: OpenTK.Core.Platform.ComponentSet -- uid: OpenTK.Core.Platform.ContextSettings - commentId: T:OpenTK.Core.Platform.ContextSettings - href: OpenTK.Core.Platform.ContextSettings.html - name: ContextSettings - nameWithType: ContextSettings - fullName: OpenTK.Core.Platform.ContextSettings +- uid: OpenTK.Core.Platform.ContextValueSelector + commentId: T:OpenTK.Core.Platform.ContextValueSelector + parent: OpenTK.Core.Platform + href: OpenTK.Core.Platform.ContextValueSelector.html + name: ContextValueSelector + nameWithType: ContextValueSelector + fullName: OpenTK.Core.Platform.ContextValueSelector - uid: OpenTK.Core.Platform.ContextValues commentId: T:OpenTK.Core.Platform.ContextValues + parent: OpenTK.Core.Platform href: OpenTK.Core.Platform.ContextValues.html name: ContextValues nameWithType: ContextValues fullName: OpenTK.Core.Platform.ContextValues +- uid: OpenTK.Core.Platform.ContextPixelFormat + commentId: T:OpenTK.Core.Platform.ContextPixelFormat + parent: OpenTK.Core.Platform + href: OpenTK.Core.Platform.ContextPixelFormat.html + name: ContextPixelFormat + nameWithType: ContextPixelFormat + fullName: OpenTK.Core.Platform.ContextPixelFormat +- uid: OpenTK.Core.Platform.ContextSwapMethod + commentId: T:OpenTK.Core.Platform.ContextSwapMethod + parent: OpenTK.Core.Platform + href: OpenTK.Core.Platform.ContextSwapMethod.html + name: ContextSwapMethod + nameWithType: ContextSwapMethod + fullName: OpenTK.Core.Platform.ContextSwapMethod - uid: OpenTK.Core.Platform.ContextDepthBits commentId: T:OpenTK.Core.Platform.ContextDepthBits parent: OpenTK.Core.Platform @@ -156,6 +175,27 @@ references: name: ContextStencilBits nameWithType: ContextStencilBits fullName: OpenTK.Core.Platform.ContextStencilBits +- uid: OpenTK.Core.Platform.ContextResetNotificationStrategy + commentId: T:OpenTK.Core.Platform.ContextResetNotificationStrategy + parent: OpenTK.Core.Platform + href: OpenTK.Core.Platform.ContextResetNotificationStrategy.html + name: ContextResetNotificationStrategy + nameWithType: ContextResetNotificationStrategy + fullName: OpenTK.Core.Platform.ContextResetNotificationStrategy +- uid: OpenTK.Core.Platform.ContextReleaseBehaviour + commentId: T:OpenTK.Core.Platform.ContextReleaseBehaviour + parent: OpenTK.Core.Platform + href: OpenTK.Core.Platform.ContextReleaseBehaviour.html + name: ContextReleaseBehaviour + nameWithType: ContextReleaseBehaviour + fullName: OpenTK.Core.Platform.ContextReleaseBehaviour +- uid: OpenTK.Core.Platform.DialogFileFilter + commentId: T:OpenTK.Core.Platform.DialogFileFilter + parent: OpenTK.Core.Platform + href: OpenTK.Core.Platform.DialogFileFilter.html + name: DialogFileFilter + nameWithType: DialogFileFilter + fullName: OpenTK.Core.Platform.DialogFileFilter - uid: OpenTK.Core.Platform.DisplayResolution commentId: T:OpenTK.Core.Platform.DisplayResolution href: OpenTK.Core.Platform.DisplayResolution.html @@ -239,6 +279,13 @@ references: name: MouseButtonFlags nameWithType: MouseButtonFlags fullName: OpenTK.Core.Platform.MouseButtonFlags +- uid: OpenTK.Core.Platform.OpenDialogOptions + commentId: T:OpenTK.Core.Platform.OpenDialogOptions + parent: OpenTK.Core.Platform + href: OpenTK.Core.Platform.OpenDialogOptions.html + name: OpenDialogOptions + nameWithType: OpenDialogOptions + fullName: OpenTK.Core.Platform.OpenDialogOptions - uid: OpenTK.Core.Platform.OpenGLProfile commentId: T:OpenTK.Core.Platform.OpenGLProfile parent: OpenTK.Core.Platform @@ -260,6 +307,13 @@ references: name: PlatformEventType nameWithType: PlatformEventType fullName: OpenTK.Core.Platform.PlatformEventType +- uid: OpenTK.Core.Platform.SaveDialogOptions + commentId: T:OpenTK.Core.Platform.SaveDialogOptions + parent: OpenTK.Core.Platform + href: OpenTK.Core.Platform.SaveDialogOptions.html + name: SaveDialogOptions + nameWithType: SaveDialogOptions + fullName: OpenTK.Core.Platform.SaveDialogOptions - uid: OpenTK.Core.Platform.Scancode commentId: T:OpenTK.Core.Platform.Scancode parent: OpenTK.Core.Platform @@ -427,6 +481,13 @@ references: name: ICursorComponent nameWithType: ICursorComponent fullName: OpenTK.Core.Platform.ICursorComponent +- uid: OpenTK.Core.Platform.IDialogComponent + commentId: T:OpenTK.Core.Platform.IDialogComponent + parent: OpenTK.Core.Platform + href: OpenTK.Core.Platform.IDialogComponent.html + name: IDialogComponent + nameWithType: IDialogComponent + fullName: OpenTK.Core.Platform.IDialogComponent - uid: OpenTK.Core.Platform.IDisplayComponent commentId: T:OpenTK.Core.Platform.IDisplayComponent parent: OpenTK.Core.Platform @@ -550,6 +611,13 @@ references: name: SystemMemoryInfo nameWithType: SystemMemoryInfo fullName: OpenTK.Core.Platform.SystemMemoryInfo +- uid: OpenTK.Core.Platform.ToolkitOptions + commentId: T:OpenTK.Core.Platform.ToolkitOptions + parent: OpenTK.Core.Platform + href: OpenTK.Core.Platform.ToolkitOptions.html + name: ToolkitOptions + nameWithType: ToolkitOptions + fullName: OpenTK.Core.Platform.ToolkitOptions - uid: OpenTK.Core.Platform.VideoMode commentId: T:OpenTK.Core.Platform.VideoMode parent: OpenTK.Core.Platform @@ -582,18 +650,24 @@ references: name: WindowResizeEventArgs nameWithType: WindowResizeEventArgs fullName: OpenTK.Core.Platform.WindowResizeEventArgs +- uid: OpenTK.Core.Platform.WindowFramebufferResizeEventArgs + commentId: T:OpenTK.Core.Platform.WindowFramebufferResizeEventArgs + href: OpenTK.Core.Platform.WindowFramebufferResizeEventArgs.html + name: WindowFramebufferResizeEventArgs + nameWithType: WindowFramebufferResizeEventArgs + fullName: OpenTK.Core.Platform.WindowFramebufferResizeEventArgs - uid: OpenTK.Core.Platform.WindowModeChangeEventArgs commentId: T:OpenTK.Core.Platform.WindowModeChangeEventArgs href: OpenTK.Core.Platform.WindowModeChangeEventArgs.html name: WindowModeChangeEventArgs nameWithType: WindowModeChangeEventArgs fullName: OpenTK.Core.Platform.WindowModeChangeEventArgs -- uid: OpenTK.Core.Platform.WindowDpiChangeEventArgs - commentId: T:OpenTK.Core.Platform.WindowDpiChangeEventArgs - href: OpenTK.Core.Platform.WindowDpiChangeEventArgs.html - name: WindowDpiChangeEventArgs - nameWithType: WindowDpiChangeEventArgs - fullName: OpenTK.Core.Platform.WindowDpiChangeEventArgs +- uid: OpenTK.Core.Platform.WindowScaleChangeEventArgs + commentId: T:OpenTK.Core.Platform.WindowScaleChangeEventArgs + href: OpenTK.Core.Platform.WindowScaleChangeEventArgs.html + name: WindowScaleChangeEventArgs + nameWithType: WindowScaleChangeEventArgs + fullName: OpenTK.Core.Platform.WindowScaleChangeEventArgs - uid: OpenTK.Core.Platform.KeyDownEventArgs commentId: T:OpenTK.Core.Platform.KeyDownEventArgs href: OpenTK.Core.Platform.KeyDownEventArgs.html diff --git a/api/OpenTK.Core.Utility.DebugLogger.yml b/api/OpenTK.Core.Utility.DebugLogger.yml new file mode 100644 index 00000000..2a6c2f84 --- /dev/null +++ b/api/OpenTK.Core.Utility.DebugLogger.yml @@ -0,0 +1,381 @@ +### YamlMime:ManagedReference +items: +- uid: OpenTK.Core.Utility.DebugLogger + commentId: T:OpenTK.Core.Utility.DebugLogger + id: DebugLogger + parent: OpenTK.Core.Utility + children: + - OpenTK.Core.Utility.DebugLogger.Filter + langs: + - csharp + - vb + name: DebugLogger + nameWithType: DebugLogger + fullName: OpenTK.Core.Utility.DebugLogger + type: Class + source: + remote: + path: src/OpenTK.Core/Utility/DebugLogger.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: DebugLogger + path: opentk/src/OpenTK.Core/Utility/DebugLogger.cs + startLine: 13 + assemblies: + - OpenTK.Core + namespace: OpenTK.Core.Utility + summary: A logger that uses to write messages to the debug log. + example: [] + syntax: + content: 'public class DebugLogger : ILogger' + content.vb: Public Class DebugLogger Implements ILogger + inheritance: + - System.Object + implements: + - OpenTK.Core.Utility.ILogger + inheritedMembers: + - System.Object.Equals(System.Object) + - System.Object.Equals(System.Object,System.Object) + - System.Object.GetHashCode + - System.Object.GetType + - System.Object.MemberwiseClone + - System.Object.ReferenceEquals(System.Object,System.Object) + - System.Object.ToString +- uid: OpenTK.Core.Utility.DebugLogger.Filter + commentId: P:OpenTK.Core.Utility.DebugLogger.Filter + id: Filter + parent: OpenTK.Core.Utility.DebugLogger + langs: + - csharp + - vb + name: Filter + nameWithType: DebugLogger.Filter + fullName: OpenTK.Core.Utility.DebugLogger.Filter + type: Property + source: + remote: + path: src/OpenTK.Core/Utility/DebugLogger.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: Filter + path: opentk/src/OpenTK.Core/Utility/DebugLogger.cs + startLine: 16 + assemblies: + - OpenTK.Core + namespace: OpenTK.Core.Utility + summary: >- + The filter level of the logger. + + Messages that are below the filter level will not be logged. + example: [] + syntax: + content: public LogLevel Filter { get; set; } + parameters: [] + return: + type: OpenTK.Core.Utility.LogLevel + content.vb: Public Property Filter As LogLevel + overload: OpenTK.Core.Utility.DebugLogger.Filter* + implements: + - OpenTK.Core.Utility.ILogger.Filter +references: +- uid: System.Diagnostics.Debug + commentId: T:System.Diagnostics.Debug + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.diagnostics.debug + name: Debug + nameWithType: Debug + fullName: System.Diagnostics.Debug +- uid: OpenTK.Core.Utility + commentId: N:OpenTK.Core.Utility + href: OpenTK.html + name: OpenTK.Core.Utility + nameWithType: OpenTK.Core.Utility + fullName: OpenTK.Core.Utility + spec.csharp: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Core + name: Core + href: OpenTK.Core.html + - name: . + - uid: OpenTK.Core.Utility + name: Utility + href: OpenTK.Core.Utility.html + spec.vb: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Core + name: Core + href: OpenTK.Core.html + - name: . + - uid: OpenTK.Core.Utility + name: Utility + href: OpenTK.Core.Utility.html +- uid: System.Object + commentId: T:System.Object + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + name: object + nameWithType: object + fullName: object + nameWithType.vb: Object + fullName.vb: Object + name.vb: Object +- uid: OpenTK.Core.Utility.ILogger + commentId: T:OpenTK.Core.Utility.ILogger + parent: OpenTK.Core.Utility + href: OpenTK.Core.Utility.ILogger.html + name: ILogger + nameWithType: ILogger + fullName: OpenTK.Core.Utility.ILogger +- uid: System.Object.Equals(System.Object) + commentId: M:System.Object.Equals(System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + name: Equals(object) + nameWithType: object.Equals(object) + fullName: object.Equals(object) + nameWithType.vb: Object.Equals(Object) + fullName.vb: Object.Equals(Object) + name.vb: Equals(Object) + spec.csharp: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.Equals(System.Object,System.Object) + commentId: M:System.Object.Equals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + name: Equals(object, object) + nameWithType: object.Equals(object, object) + fullName: object.Equals(object, object) + nameWithType.vb: Object.Equals(Object, Object) + fullName.vb: Object.Equals(Object, Object) + name.vb: Equals(Object, Object) + spec.csharp: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.GetHashCode + commentId: M:System.Object.GetHashCode + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + name: GetHashCode() + nameWithType: object.GetHashCode() + fullName: object.GetHashCode() + nameWithType.vb: Object.GetHashCode() + fullName.vb: Object.GetHashCode() + spec.csharp: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) +- uid: System.Object.GetType + commentId: M:System.Object.GetType + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + name: GetType() + nameWithType: object.GetType() + fullName: object.GetType() + nameWithType.vb: Object.GetType() + fullName.vb: Object.GetType() + spec.csharp: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) +- uid: System.Object.MemberwiseClone + commentId: M:System.Object.MemberwiseClone + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + name: MemberwiseClone() + nameWithType: object.MemberwiseClone() + fullName: object.MemberwiseClone() + nameWithType.vb: Object.MemberwiseClone() + fullName.vb: Object.MemberwiseClone() + spec.csharp: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) + spec.vb: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) +- uid: System.Object.ReferenceEquals(System.Object,System.Object) + commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + name: ReferenceEquals(object, object) + nameWithType: object.ReferenceEquals(object, object) + fullName: object.ReferenceEquals(object, object) + nameWithType.vb: Object.ReferenceEquals(Object, Object) + fullName.vb: Object.ReferenceEquals(Object, Object) + name.vb: ReferenceEquals(Object, Object) + spec.csharp: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.ToString + commentId: M:System.Object.ToString + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + name: ToString() + nameWithType: object.ToString() + fullName: object.ToString() + nameWithType.vb: Object.ToString() + fullName.vb: Object.ToString() + spec.csharp: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) + spec.vb: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) +- uid: System + commentId: N:System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System + nameWithType: System + fullName: System +- uid: OpenTK.Core.Utility.DebugLogger.Filter* + commentId: Overload:OpenTK.Core.Utility.DebugLogger.Filter + href: OpenTK.Core.Utility.DebugLogger.html#OpenTK_Core_Utility_DebugLogger_Filter + name: Filter + nameWithType: DebugLogger.Filter + fullName: OpenTK.Core.Utility.DebugLogger.Filter +- uid: OpenTK.Core.Utility.ILogger.Filter + commentId: P:OpenTK.Core.Utility.ILogger.Filter + parent: OpenTK.Core.Utility.ILogger + href: OpenTK.Core.Utility.ILogger.html#OpenTK_Core_Utility_ILogger_Filter + name: Filter + nameWithType: ILogger.Filter + fullName: OpenTK.Core.Utility.ILogger.Filter +- uid: OpenTK.Core.Utility.LogLevel + commentId: T:OpenTK.Core.Utility.LogLevel + parent: OpenTK.Core.Utility + href: OpenTK.Core.Utility.LogLevel.html + name: LogLevel + nameWithType: LogLevel + fullName: OpenTK.Core.Utility.LogLevel diff --git a/api/OpenTK.Core.Utility.ILogger.yml b/api/OpenTK.Core.Utility.ILogger.yml index 08de6c5a..e7ceaa38 100644 --- a/api/OpenTK.Core.Utility.ILogger.yml +++ b/api/OpenTK.Core.Utility.ILogger.yml @@ -6,6 +6,7 @@ items: parent: OpenTK.Core.Utility children: - OpenTK.Core.Utility.ILogger.Filter + - OpenTK.Core.Utility.ILogger.Flush - OpenTK.Core.Utility.ILogger.Log(System.String,OpenTK.Core.Utility.LogLevel,System.String,System.Int32,System.String) - OpenTK.Core.Utility.ILogger.LogDebug(System.String,System.String,System.Int32,System.String) - OpenTK.Core.Utility.ILogger.LogError(System.String,System.String,System.Int32,System.String) @@ -342,6 +343,39 @@ items: nameWithType.vb: ILogger.LogError(String, String, Integer, String) fullName.vb: OpenTK.Core.Utility.ILogger.LogError(String, String, Integer, String) name.vb: LogError(String, String, Integer, String) +- uid: OpenTK.Core.Utility.ILogger.Flush + commentId: M:OpenTK.Core.Utility.ILogger.Flush + id: Flush + parent: OpenTK.Core.Utility.ILogger + langs: + - csharp + - vb + name: Flush() + nameWithType: ILogger.Flush() + fullName: OpenTK.Core.Utility.ILogger.Flush() + type: Method + source: + remote: + path: src/OpenTK.Core/Utility/ILogger.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: Flush + path: opentk/src/OpenTK.Core/Utility/ILogger.cs + startLine: 110 + assemblies: + - OpenTK.Core + namespace: OpenTK.Core.Utility + summary: >- + Flushes any pending IO operations. + + This is useful when e.g. the application is terminating + + and the final log messages containing the termination reason needs to be written. + example: [] + syntax: + content: void Flush() + content.vb: Sub Flush() + overload: OpenTK.Core.Utility.ILogger.Flush* references: - uid: OpenTK.Core.Utility commentId: N:OpenTK.Core.Utility @@ -465,3 +499,9 @@ references: name: LogError nameWithType: ILogger.LogError fullName: OpenTK.Core.Utility.ILogger.LogError +- uid: OpenTK.Core.Utility.ILogger.Flush* + commentId: Overload:OpenTK.Core.Utility.ILogger.Flush + href: OpenTK.Core.Utility.ILogger.html#OpenTK_Core_Utility_ILogger_Flush + name: Flush + nameWithType: ILogger.Flush + fullName: OpenTK.Core.Utility.ILogger.Flush diff --git a/api/OpenTK.Core.Utility.yml b/api/OpenTK.Core.Utility.yml index f8c73805..02beb792 100644 --- a/api/OpenTK.Core.Utility.yml +++ b/api/OpenTK.Core.Utility.yml @@ -6,6 +6,7 @@ items: children: - OpenTK.Core.Utility.ConsoleLogger - OpenTK.Core.Utility.DebugFileLogger + - OpenTK.Core.Utility.DebugLogger - OpenTK.Core.Utility.ILogger - OpenTK.Core.Utility.LogLevel langs: @@ -30,6 +31,12 @@ references: name: DebugFileLogger nameWithType: DebugFileLogger fullName: OpenTK.Core.Utility.DebugFileLogger +- uid: OpenTK.Core.Utility.DebugLogger + commentId: T:OpenTK.Core.Utility.DebugLogger + href: OpenTK.Core.Utility.DebugLogger.html + name: DebugLogger + nameWithType: DebugLogger + fullName: OpenTK.Core.Utility.DebugLogger - uid: OpenTK.Core.Utility.LogLevel commentId: T:OpenTK.Core.Utility.LogLevel parent: OpenTK.Core.Utility diff --git a/api/OpenTK.Graphics.BufferHandle.yml b/api/OpenTK.Graphics.BufferHandle.yml index 41ee607a..1d35c60f 100644 --- a/api/OpenTK.Graphics.BufferHandle.yml +++ b/api/OpenTK.Graphics.BufferHandle.yml @@ -29,7 +29,7 @@ items: repo: https://github.com/opentk/opentk.git id: BufferHandle path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 873 + startLine: 923 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -61,7 +61,7 @@ items: repo: https://github.com/opentk/opentk.git id: Zero path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 875 + startLine: 925 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -88,7 +88,7 @@ items: repo: https://github.com/opentk/opentk.git id: Handle path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 877 + startLine: 927 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -115,7 +115,7 @@ items: repo: https://github.com/opentk/opentk.git id: .ctor path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 879 + startLine: 929 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -147,7 +147,7 @@ items: repo: https://github.com/opentk/opentk.git id: Equals path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 884 + startLine: 934 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -186,7 +186,7 @@ items: repo: https://github.com/opentk/opentk.git id: Equals path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 889 + startLine: 939 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -223,7 +223,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetHashCode path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 894 + startLine: 944 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -255,7 +255,7 @@ items: repo: https://github.com/opentk/opentk.git id: op_Equality path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 899 + startLine: 949 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -291,7 +291,7 @@ items: repo: https://github.com/opentk/opentk.git id: op_Inequality path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 904 + startLine: 954 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -327,7 +327,7 @@ items: repo: https://github.com/opentk/opentk.git id: op_Explicit path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 909 + startLine: 959 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -361,7 +361,7 @@ items: repo: https://github.com/opentk/opentk.git id: op_Explicit path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 910 + startLine: 960 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics diff --git a/api/OpenTK.Graphics.CLContext.yml b/api/OpenTK.Graphics.CLContext.yml index f8365e7f..bbe7489f 100644 --- a/api/OpenTK.Graphics.CLContext.yml +++ b/api/OpenTK.Graphics.CLContext.yml @@ -28,7 +28,7 @@ items: repo: https://github.com/opentk/opentk.git id: CLContext path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 590 + startLine: 640 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -60,7 +60,7 @@ items: repo: https://github.com/opentk/opentk.git id: Value path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 592 + startLine: 642 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -87,7 +87,7 @@ items: repo: https://github.com/opentk/opentk.git id: .ctor path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 594 + startLine: 644 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -119,7 +119,7 @@ items: repo: https://github.com/opentk/opentk.git id: Equals path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 599 + startLine: 649 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -158,7 +158,7 @@ items: repo: https://github.com/opentk/opentk.git id: Equals path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 604 + startLine: 654 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -195,7 +195,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetHashCode path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 609 + startLine: 659 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -227,7 +227,7 @@ items: repo: https://github.com/opentk/opentk.git id: op_Equality path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 614 + startLine: 664 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -263,7 +263,7 @@ items: repo: https://github.com/opentk/opentk.git id: op_Inequality path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 619 + startLine: 669 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -299,7 +299,7 @@ items: repo: https://github.com/opentk/opentk.git id: op_Explicit path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 624 + startLine: 674 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -333,7 +333,7 @@ items: repo: https://github.com/opentk/opentk.git id: op_Explicit path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 625 + startLine: 675 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics diff --git a/api/OpenTK.Graphics.CLEvent.yml b/api/OpenTK.Graphics.CLEvent.yml index 54b3f6c2..afe765a7 100644 --- a/api/OpenTK.Graphics.CLEvent.yml +++ b/api/OpenTK.Graphics.CLEvent.yml @@ -28,7 +28,7 @@ items: repo: https://github.com/opentk/opentk.git id: CLEvent path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 628 + startLine: 678 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -60,7 +60,7 @@ items: repo: https://github.com/opentk/opentk.git id: Value path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 630 + startLine: 680 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -87,7 +87,7 @@ items: repo: https://github.com/opentk/opentk.git id: .ctor path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 632 + startLine: 682 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -119,7 +119,7 @@ items: repo: https://github.com/opentk/opentk.git id: Equals path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 637 + startLine: 687 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -158,7 +158,7 @@ items: repo: https://github.com/opentk/opentk.git id: Equals path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 642 + startLine: 692 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -195,7 +195,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetHashCode path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 647 + startLine: 697 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -227,7 +227,7 @@ items: repo: https://github.com/opentk/opentk.git id: op_Equality path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 652 + startLine: 702 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -263,7 +263,7 @@ items: repo: https://github.com/opentk/opentk.git id: op_Inequality path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 657 + startLine: 707 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -299,7 +299,7 @@ items: repo: https://github.com/opentk/opentk.git id: op_Explicit path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 662 + startLine: 712 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -333,7 +333,7 @@ items: repo: https://github.com/opentk/opentk.git id: op_Explicit path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 663 + startLine: 713 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics diff --git a/api/OpenTK.Graphics.DisplayListHandle.yml b/api/OpenTK.Graphics.DisplayListHandle.yml index 65960f80..8ae3e3f4 100644 --- a/api/OpenTK.Graphics.DisplayListHandle.yml +++ b/api/OpenTK.Graphics.DisplayListHandle.yml @@ -29,7 +29,7 @@ items: repo: https://github.com/opentk/opentk.git id: DisplayListHandle path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 1193 + startLine: 1243 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -61,7 +61,7 @@ items: repo: https://github.com/opentk/opentk.git id: Zero path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 1195 + startLine: 1245 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -88,7 +88,7 @@ items: repo: https://github.com/opentk/opentk.git id: Handle path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 1197 + startLine: 1247 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -115,7 +115,7 @@ items: repo: https://github.com/opentk/opentk.git id: .ctor path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 1199 + startLine: 1249 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -147,7 +147,7 @@ items: repo: https://github.com/opentk/opentk.git id: Equals path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 1204 + startLine: 1254 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -186,7 +186,7 @@ items: repo: https://github.com/opentk/opentk.git id: Equals path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 1209 + startLine: 1259 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -223,7 +223,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetHashCode path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 1214 + startLine: 1264 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -255,7 +255,7 @@ items: repo: https://github.com/opentk/opentk.git id: op_Equality path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 1219 + startLine: 1269 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -291,7 +291,7 @@ items: repo: https://github.com/opentk/opentk.git id: op_Inequality path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 1224 + startLine: 1274 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -327,7 +327,7 @@ items: repo: https://github.com/opentk/opentk.git id: op_Explicit path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 1229 + startLine: 1279 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -361,7 +361,7 @@ items: repo: https://github.com/opentk/opentk.git id: op_Explicit path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 1230 + startLine: 1280 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics diff --git a/api/OpenTK.Graphics.FramebufferHandle.yml b/api/OpenTK.Graphics.FramebufferHandle.yml index f1b47740..fd40cd02 100644 --- a/api/OpenTK.Graphics.FramebufferHandle.yml +++ b/api/OpenTK.Graphics.FramebufferHandle.yml @@ -29,7 +29,7 @@ items: repo: https://github.com/opentk/opentk.git id: FramebufferHandle path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 993 + startLine: 1043 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -61,7 +61,7 @@ items: repo: https://github.com/opentk/opentk.git id: Zero path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 995 + startLine: 1045 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -88,7 +88,7 @@ items: repo: https://github.com/opentk/opentk.git id: Handle path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 997 + startLine: 1047 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -115,7 +115,7 @@ items: repo: https://github.com/opentk/opentk.git id: .ctor path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 999 + startLine: 1049 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -147,7 +147,7 @@ items: repo: https://github.com/opentk/opentk.git id: Equals path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 1004 + startLine: 1054 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -186,7 +186,7 @@ items: repo: https://github.com/opentk/opentk.git id: Equals path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 1009 + startLine: 1059 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -223,7 +223,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetHashCode path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 1014 + startLine: 1064 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -255,7 +255,7 @@ items: repo: https://github.com/opentk/opentk.git id: op_Equality path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 1019 + startLine: 1069 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -291,7 +291,7 @@ items: repo: https://github.com/opentk/opentk.git id: op_Inequality path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 1024 + startLine: 1074 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -327,7 +327,7 @@ items: repo: https://github.com/opentk/opentk.git id: op_Explicit path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 1029 + startLine: 1079 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -361,7 +361,7 @@ items: repo: https://github.com/opentk/opentk.git id: op_Explicit path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 1030 + startLine: 1080 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics diff --git a/api/OpenTK.Graphics.GLHandleARB.yml b/api/OpenTK.Graphics.GLHandleARB.yml index 185774dd..41bf4475 100644 --- a/api/OpenTK.Graphics.GLHandleARB.yml +++ b/api/OpenTK.Graphics.GLHandleARB.yml @@ -30,7 +30,7 @@ items: repo: https://github.com/opentk/opentk.git id: GLHandleARB path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 704 + startLine: 754 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -62,7 +62,7 @@ items: repo: https://github.com/opentk/opentk.git id: .ctor path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 710 + startLine: 760 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -94,7 +94,7 @@ items: repo: https://github.com/opentk/opentk.git id: .ctor path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 716 + startLine: 766 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -126,7 +126,7 @@ items: repo: https://github.com/opentk/opentk.git id: Equals path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 722 + startLine: 772 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -165,7 +165,7 @@ items: repo: https://github.com/opentk/opentk.git id: Equals path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 727 + startLine: 777 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -202,7 +202,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetHashCode path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 732 + startLine: 782 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -234,7 +234,7 @@ items: repo: https://github.com/opentk/opentk.git id: op_Equality path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 737 + startLine: 787 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -270,7 +270,7 @@ items: repo: https://github.com/opentk/opentk.git id: op_Inequality path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 742 + startLine: 792 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -306,7 +306,7 @@ items: repo: https://github.com/opentk/opentk.git id: op_Explicit path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 747 + startLine: 797 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -340,7 +340,7 @@ items: repo: https://github.com/opentk/opentk.git id: op_Explicit path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 748 + startLine: 798 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -374,7 +374,7 @@ items: repo: https://github.com/opentk/opentk.git id: op_Explicit path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 749 + startLine: 799 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -408,7 +408,7 @@ items: repo: https://github.com/opentk/opentk.git id: op_Explicit path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 750 + startLine: 800 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics diff --git a/api/OpenTK.Graphics.GLSync.yml b/api/OpenTK.Graphics.GLSync.yml index cffa3a2f..815995e4 100644 --- a/api/OpenTK.Graphics.GLSync.yml +++ b/api/OpenTK.Graphics.GLSync.yml @@ -28,7 +28,7 @@ items: repo: https://github.com/opentk/opentk.git id: GLSync path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 666 + startLine: 716 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -60,7 +60,7 @@ items: repo: https://github.com/opentk/opentk.git id: Value path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 668 + startLine: 718 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -87,7 +87,7 @@ items: repo: https://github.com/opentk/opentk.git id: .ctor path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 670 + startLine: 720 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -119,7 +119,7 @@ items: repo: https://github.com/opentk/opentk.git id: Equals path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 675 + startLine: 725 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -158,7 +158,7 @@ items: repo: https://github.com/opentk/opentk.git id: Equals path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 680 + startLine: 730 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -195,7 +195,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetHashCode path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 685 + startLine: 735 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -227,7 +227,7 @@ items: repo: https://github.com/opentk/opentk.git id: op_Equality path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 690 + startLine: 740 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -263,7 +263,7 @@ items: repo: https://github.com/opentk/opentk.git id: op_Inequality path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 695 + startLine: 745 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -299,7 +299,7 @@ items: repo: https://github.com/opentk/opentk.git id: op_Explicit path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 700 + startLine: 750 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -333,7 +333,7 @@ items: repo: https://github.com/opentk/opentk.git id: op_Explicit path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 701 + startLine: 751 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics diff --git a/api/OpenTK.Graphics.GLXLoader.BindingsContext.yml b/api/OpenTK.Graphics.GLXLoader.BindingsContext.yml new file mode 100644 index 00000000..3bf36848 --- /dev/null +++ b/api/OpenTK.Graphics.GLXLoader.BindingsContext.yml @@ -0,0 +1,361 @@ +### YamlMime:ManagedReference +items: +- uid: OpenTK.Graphics.GLXLoader.BindingsContext + commentId: T:OpenTK.Graphics.GLXLoader.BindingsContext + id: GLXLoader.BindingsContext + parent: OpenTK.Graphics + children: + - OpenTK.Graphics.GLXLoader.BindingsContext.GetProcAddress(System.String) + langs: + - csharp + - vb + name: GLXLoader.BindingsContext + nameWithType: GLXLoader.BindingsContext + fullName: OpenTK.Graphics.GLXLoader.BindingsContext + type: Class + source: + remote: + path: src/OpenTK.Graphics/GLXLoader.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: BindingsContext + path: opentk/src/OpenTK.Graphics/GLXLoader.cs + startLine: 13 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics + syntax: + content: public static class GLXLoader.BindingsContext + content.vb: Public Module GLXLoader.BindingsContext + inheritance: + - System.Object + inheritedMembers: + - System.Object.Equals(System.Object) + - System.Object.Equals(System.Object,System.Object) + - System.Object.GetHashCode + - System.Object.GetType + - System.Object.MemberwiseClone + - System.Object.ReferenceEquals(System.Object,System.Object) + - System.Object.ToString +- uid: OpenTK.Graphics.GLXLoader.BindingsContext.GetProcAddress(System.String) + commentId: M:OpenTK.Graphics.GLXLoader.BindingsContext.GetProcAddress(System.String) + id: GetProcAddress(System.String) + parent: OpenTK.Graphics.GLXLoader.BindingsContext + langs: + - csharp + - vb + name: GetProcAddress(string) + nameWithType: GLXLoader.BindingsContext.GetProcAddress(string) + fullName: OpenTK.Graphics.GLXLoader.BindingsContext.GetProcAddress(string) + type: Method + source: + remote: + path: src/OpenTK.Graphics/GLXLoader.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: GetProcAddress + path: opentk/src/OpenTK.Graphics/GLXLoader.cs + startLine: 15 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics + syntax: + content: public static nint GetProcAddress(string procName) + parameters: + - id: procName + type: System.String + return: + type: System.IntPtr + content.vb: Public Shared Function GetProcAddress(procName As String) As IntPtr + overload: OpenTK.Graphics.GLXLoader.BindingsContext.GetProcAddress* + nameWithType.vb: GLXLoader.BindingsContext.GetProcAddress(String) + fullName.vb: OpenTK.Graphics.GLXLoader.BindingsContext.GetProcAddress(String) + name.vb: GetProcAddress(String) +references: +- uid: OpenTK.Graphics + commentId: N:OpenTK.Graphics + href: OpenTK.html + name: OpenTK.Graphics + nameWithType: OpenTK.Graphics + fullName: OpenTK.Graphics + spec.csharp: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Graphics + name: Graphics + href: OpenTK.Graphics.html + spec.vb: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Graphics + name: Graphics + href: OpenTK.Graphics.html +- uid: System.Object + commentId: T:System.Object + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + name: object + nameWithType: object + fullName: object + nameWithType.vb: Object + fullName.vb: Object + name.vb: Object +- uid: System.Object.Equals(System.Object) + commentId: M:System.Object.Equals(System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + name: Equals(object) + nameWithType: object.Equals(object) + fullName: object.Equals(object) + nameWithType.vb: Object.Equals(Object) + fullName.vb: Object.Equals(Object) + name.vb: Equals(Object) + spec.csharp: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.Equals(System.Object,System.Object) + commentId: M:System.Object.Equals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + name: Equals(object, object) + nameWithType: object.Equals(object, object) + fullName: object.Equals(object, object) + nameWithType.vb: Object.Equals(Object, Object) + fullName.vb: Object.Equals(Object, Object) + name.vb: Equals(Object, Object) + spec.csharp: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.GetHashCode + commentId: M:System.Object.GetHashCode + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + name: GetHashCode() + nameWithType: object.GetHashCode() + fullName: object.GetHashCode() + nameWithType.vb: Object.GetHashCode() + fullName.vb: Object.GetHashCode() + spec.csharp: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) +- uid: System.Object.GetType + commentId: M:System.Object.GetType + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + name: GetType() + nameWithType: object.GetType() + fullName: object.GetType() + nameWithType.vb: Object.GetType() + fullName.vb: Object.GetType() + spec.csharp: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) +- uid: System.Object.MemberwiseClone + commentId: M:System.Object.MemberwiseClone + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + name: MemberwiseClone() + nameWithType: object.MemberwiseClone() + fullName: object.MemberwiseClone() + nameWithType.vb: Object.MemberwiseClone() + fullName.vb: Object.MemberwiseClone() + spec.csharp: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) + spec.vb: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) +- uid: System.Object.ReferenceEquals(System.Object,System.Object) + commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + name: ReferenceEquals(object, object) + nameWithType: object.ReferenceEquals(object, object) + fullName: object.ReferenceEquals(object, object) + nameWithType.vb: Object.ReferenceEquals(Object, Object) + fullName.vb: Object.ReferenceEquals(Object, Object) + name.vb: ReferenceEquals(Object, Object) + spec.csharp: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.ToString + commentId: M:System.Object.ToString + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + name: ToString() + nameWithType: object.ToString() + fullName: object.ToString() + nameWithType.vb: Object.ToString() + fullName.vb: Object.ToString() + spec.csharp: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) + spec.vb: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) +- uid: System + commentId: N:System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System + nameWithType: System + fullName: System +- uid: OpenTK.Graphics.GLXLoader.BindingsContext.GetProcAddress* + commentId: Overload:OpenTK.Graphics.GLXLoader.BindingsContext.GetProcAddress + href: OpenTK.Graphics.GLXLoader.BindingsContext.html#OpenTK_Graphics_GLXLoader_BindingsContext_GetProcAddress_System_String_ + name: GetProcAddress + nameWithType: GLXLoader.BindingsContext.GetProcAddress + fullName: OpenTK.Graphics.GLXLoader.BindingsContext.GetProcAddress +- uid: System.String + commentId: T:System.String + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + name: string + nameWithType: string + fullName: string + nameWithType.vb: String + fullName.vb: String + name.vb: String +- uid: System.IntPtr + commentId: T:System.IntPtr + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.intptr + name: nint + nameWithType: nint + fullName: nint + nameWithType.vb: IntPtr + fullName.vb: System.IntPtr + name.vb: IntPtr diff --git a/api/OpenTK.Graphics.GLXLoader.yml b/api/OpenTK.Graphics.GLXLoader.yml new file mode 100644 index 00000000..bc998118 --- /dev/null +++ b/api/OpenTK.Graphics.GLXLoader.yml @@ -0,0 +1,298 @@ +### YamlMime:ManagedReference +items: +- uid: OpenTK.Graphics.GLXLoader + commentId: T:OpenTK.Graphics.GLXLoader + id: GLXLoader + parent: OpenTK.Graphics + children: [] + langs: + - csharp + - vb + name: GLXLoader + nameWithType: GLXLoader + fullName: OpenTK.Graphics.GLXLoader + type: Class + source: + remote: + path: src/OpenTK.Graphics/GLXLoader.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: GLXLoader + path: opentk/src/OpenTK.Graphics/GLXLoader.cs + startLine: 11 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics + syntax: + content: public static class GLXLoader + content.vb: Public Module GLXLoader + inheritance: + - System.Object + inheritedMembers: + - System.Object.Equals(System.Object) + - System.Object.Equals(System.Object,System.Object) + - System.Object.GetHashCode + - System.Object.GetType + - System.Object.MemberwiseClone + - System.Object.ReferenceEquals(System.Object,System.Object) + - System.Object.ToString +references: +- uid: OpenTK.Graphics + commentId: N:OpenTK.Graphics + href: OpenTK.html + name: OpenTK.Graphics + nameWithType: OpenTK.Graphics + fullName: OpenTK.Graphics + spec.csharp: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Graphics + name: Graphics + href: OpenTK.Graphics.html + spec.vb: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Graphics + name: Graphics + href: OpenTK.Graphics.html +- uid: System.Object + commentId: T:System.Object + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + name: object + nameWithType: object + fullName: object + nameWithType.vb: Object + fullName.vb: Object + name.vb: Object +- uid: System.Object.Equals(System.Object) + commentId: M:System.Object.Equals(System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + name: Equals(object) + nameWithType: object.Equals(object) + fullName: object.Equals(object) + nameWithType.vb: Object.Equals(Object) + fullName.vb: Object.Equals(Object) + name.vb: Equals(Object) + spec.csharp: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.Equals(System.Object,System.Object) + commentId: M:System.Object.Equals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + name: Equals(object, object) + nameWithType: object.Equals(object, object) + fullName: object.Equals(object, object) + nameWithType.vb: Object.Equals(Object, Object) + fullName.vb: Object.Equals(Object, Object) + name.vb: Equals(Object, Object) + spec.csharp: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.GetHashCode + commentId: M:System.Object.GetHashCode + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + name: GetHashCode() + nameWithType: object.GetHashCode() + fullName: object.GetHashCode() + nameWithType.vb: Object.GetHashCode() + fullName.vb: Object.GetHashCode() + spec.csharp: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) +- uid: System.Object.GetType + commentId: M:System.Object.GetType + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + name: GetType() + nameWithType: object.GetType() + fullName: object.GetType() + nameWithType.vb: Object.GetType() + fullName.vb: Object.GetType() + spec.csharp: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) +- uid: System.Object.MemberwiseClone + commentId: M:System.Object.MemberwiseClone + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + name: MemberwiseClone() + nameWithType: object.MemberwiseClone() + fullName: object.MemberwiseClone() + nameWithType.vb: Object.MemberwiseClone() + fullName.vb: Object.MemberwiseClone() + spec.csharp: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) + spec.vb: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) +- uid: System.Object.ReferenceEquals(System.Object,System.Object) + commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + name: ReferenceEquals(object, object) + nameWithType: object.ReferenceEquals(object, object) + fullName: object.ReferenceEquals(object, object) + nameWithType.vb: Object.ReferenceEquals(Object, Object) + fullName.vb: Object.ReferenceEquals(Object, Object) + name.vb: ReferenceEquals(Object, Object) + spec.csharp: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.ToString + commentId: M:System.Object.ToString + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + name: ToString() + nameWithType: object.ToString() + fullName: object.ToString() + nameWithType.vb: Object.ToString() + fullName.vb: Object.ToString() + spec.csharp: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) + spec.vb: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) +- uid: System + commentId: N:System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System + nameWithType: System + fullName: System diff --git a/api/OpenTK.Graphics.Glx.Colormap.yml b/api/OpenTK.Graphics.Glx.Colormap.yml index bb860f38..1e93e967 100644 --- a/api/OpenTK.Graphics.Glx.Colormap.yml +++ b/api/OpenTK.Graphics.Glx.Colormap.yml @@ -23,7 +23,7 @@ items: repo: https://github.com/opentk/opentk.git id: Colormap path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 132 + startLine: 164 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -57,7 +57,7 @@ items: repo: https://github.com/opentk/opentk.git id: XID path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 137 + startLine: 169 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -86,7 +86,7 @@ items: repo: https://github.com/opentk/opentk.git id: .ctor path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 143 + startLine: 175 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -121,7 +121,7 @@ items: repo: https://github.com/opentk/opentk.git id: op_Explicit path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 148 + startLine: 180 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -155,7 +155,7 @@ items: repo: https://github.com/opentk/opentk.git id: op_Explicit path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 149 + startLine: 181 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx diff --git a/api/OpenTK.Graphics.Glx.DisplayPtr.yml b/api/OpenTK.Graphics.Glx.DisplayPtr.yml index a67887c7..12e9e333 100644 --- a/api/OpenTK.Graphics.Glx.DisplayPtr.yml +++ b/api/OpenTK.Graphics.Glx.DisplayPtr.yml @@ -5,7 +5,10 @@ items: id: DisplayPtr parent: OpenTK.Graphics.Glx children: + - OpenTK.Graphics.Glx.DisplayPtr.#ctor(System.IntPtr) - OpenTK.Graphics.Glx.DisplayPtr.Value + - OpenTK.Graphics.Glx.DisplayPtr.op_Explicit(OpenTK.Graphics.Glx.DisplayPtr)~System.IntPtr + - OpenTK.Graphics.Glx.DisplayPtr.op_Explicit(System.IntPtr)~OpenTK.Graphics.Glx.DisplayPtr langs: - csharp - vb @@ -20,10 +23,12 @@ items: repo: https://github.com/opentk/opentk.git id: DisplayPtr path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 51 + startLine: 49 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx + summary: Opaque struct pointer for X11 Display*. + example: [] syntax: content: public struct DisplayPtr content.vb: Public Structure DisplayPtr @@ -52,15 +57,120 @@ items: repo: https://github.com/opentk/opentk.git id: Value path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 52 + startLine: 54 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx + summary: The underlying pointer value. + example: [] syntax: content: public nint Value return: type: System.IntPtr content.vb: Public Value As IntPtr +- uid: OpenTK.Graphics.Glx.DisplayPtr.#ctor(System.IntPtr) + commentId: M:OpenTK.Graphics.Glx.DisplayPtr.#ctor(System.IntPtr) + id: '#ctor(System.IntPtr)' + parent: OpenTK.Graphics.Glx.DisplayPtr + langs: + - csharp + - vb + name: DisplayPtr(nint) + nameWithType: DisplayPtr.DisplayPtr(nint) + fullName: OpenTK.Graphics.Glx.DisplayPtr.DisplayPtr(nint) + type: Constructor + source: + remote: + path: src/OpenTK.Graphics/Types.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: .ctor + path: opentk/src/OpenTK.Graphics/Types.cs + startLine: 60 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Glx + summary: Constructs a new Display* wrapper struct from a Display pointer. + example: [] + syntax: + content: public DisplayPtr(nint value) + parameters: + - id: value + type: System.IntPtr + description: The display pointer. + content.vb: Public Sub New(value As IntPtr) + overload: OpenTK.Graphics.Glx.DisplayPtr.#ctor* + nameWithType.vb: DisplayPtr.New(IntPtr) + fullName.vb: OpenTK.Graphics.Glx.DisplayPtr.New(System.IntPtr) + name.vb: New(IntPtr) +- uid: OpenTK.Graphics.Glx.DisplayPtr.op_Explicit(OpenTK.Graphics.Glx.DisplayPtr)~System.IntPtr + commentId: M:OpenTK.Graphics.Glx.DisplayPtr.op_Explicit(OpenTK.Graphics.Glx.DisplayPtr)~System.IntPtr + id: op_Explicit(OpenTK.Graphics.Glx.DisplayPtr)~System.IntPtr + parent: OpenTK.Graphics.Glx.DisplayPtr + langs: + - csharp + - vb + name: explicit operator nint(DisplayPtr) + nameWithType: DisplayPtr.explicit operator nint(DisplayPtr) + fullName: OpenTK.Graphics.Glx.DisplayPtr.explicit operator nint(OpenTK.Graphics.Glx.DisplayPtr) + type: Operator + source: + remote: + path: src/OpenTK.Graphics/Types.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: op_Explicit + path: opentk/src/OpenTK.Graphics/Types.cs + startLine: 65 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Glx + syntax: + content: public static explicit operator nint(DisplayPtr handle) + parameters: + - id: handle + type: OpenTK.Graphics.Glx.DisplayPtr + return: + type: System.IntPtr + content.vb: Public Shared Narrowing Operator CType(handle As DisplayPtr) As IntPtr + overload: OpenTK.Graphics.Glx.DisplayPtr.op_Explicit* + nameWithType.vb: DisplayPtr.CType(DisplayPtr) + fullName.vb: OpenTK.Graphics.Glx.DisplayPtr.CType(OpenTK.Graphics.Glx.DisplayPtr) + name.vb: CType(DisplayPtr) +- uid: OpenTK.Graphics.Glx.DisplayPtr.op_Explicit(System.IntPtr)~OpenTK.Graphics.Glx.DisplayPtr + commentId: M:OpenTK.Graphics.Glx.DisplayPtr.op_Explicit(System.IntPtr)~OpenTK.Graphics.Glx.DisplayPtr + id: op_Explicit(System.IntPtr)~OpenTK.Graphics.Glx.DisplayPtr + parent: OpenTK.Graphics.Glx.DisplayPtr + langs: + - csharp + - vb + name: explicit operator DisplayPtr(nint) + nameWithType: DisplayPtr.explicit operator DisplayPtr(nint) + fullName: OpenTK.Graphics.Glx.DisplayPtr.explicit operator OpenTK.Graphics.Glx.DisplayPtr(nint) + type: Operator + source: + remote: + path: src/OpenTK.Graphics/Types.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: op_Explicit + path: opentk/src/OpenTK.Graphics/Types.cs + startLine: 66 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Glx + syntax: + content: public static explicit operator DisplayPtr(nint ptr) + parameters: + - id: ptr + type: System.IntPtr + return: + type: OpenTK.Graphics.Glx.DisplayPtr + content.vb: Public Shared Narrowing Operator CType(ptr As IntPtr) As DisplayPtr + overload: OpenTK.Graphics.Glx.DisplayPtr.op_Explicit* + nameWithType.vb: DisplayPtr.CType(IntPtr) + fullName.vb: OpenTK.Graphics.Glx.DisplayPtr.CType(System.IntPtr) + name.vb: CType(IntPtr) references: - uid: OpenTK.Graphics.Glx commentId: N:OpenTK.Graphics.Glx @@ -320,3 +430,31 @@ references: nameWithType.vb: IntPtr fullName.vb: System.IntPtr name.vb: IntPtr +- uid: OpenTK.Graphics.Glx.DisplayPtr.#ctor* + commentId: Overload:OpenTK.Graphics.Glx.DisplayPtr.#ctor + href: OpenTK.Graphics.Glx.DisplayPtr.html#OpenTK_Graphics_Glx_DisplayPtr__ctor_System_IntPtr_ + name: DisplayPtr + nameWithType: DisplayPtr.DisplayPtr + fullName: OpenTK.Graphics.Glx.DisplayPtr.DisplayPtr + nameWithType.vb: DisplayPtr.New + fullName.vb: OpenTK.Graphics.Glx.DisplayPtr.New + name.vb: New +- uid: OpenTK.Graphics.Glx.DisplayPtr.op_Explicit* + commentId: Overload:OpenTK.Graphics.Glx.DisplayPtr.op_Explicit + name: explicit operator + nameWithType: DisplayPtr.explicit operator + fullName: OpenTK.Graphics.Glx.DisplayPtr.explicit operator + nameWithType.vb: DisplayPtr.CType + fullName.vb: OpenTK.Graphics.Glx.DisplayPtr.CType + name.vb: CType + spec.csharp: + - name: explicit + - name: " " + - name: operator +- uid: OpenTK.Graphics.Glx.DisplayPtr + commentId: T:OpenTK.Graphics.Glx.DisplayPtr + parent: OpenTK.Graphics.Glx + href: OpenTK.Graphics.Glx.DisplayPtr.html + name: DisplayPtr + nameWithType: DisplayPtr + fullName: OpenTK.Graphics.Glx.DisplayPtr diff --git a/api/OpenTK.Graphics.Glx.Font.yml b/api/OpenTK.Graphics.Glx.Font.yml index c914eb5d..d05c75e4 100644 --- a/api/OpenTK.Graphics.Glx.Font.yml +++ b/api/OpenTK.Graphics.Glx.Font.yml @@ -23,7 +23,7 @@ items: repo: https://github.com/opentk/opentk.git id: Font path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 86 + startLine: 118 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -57,7 +57,7 @@ items: repo: https://github.com/opentk/opentk.git id: XID path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 91 + startLine: 123 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -86,7 +86,7 @@ items: repo: https://github.com/opentk/opentk.git id: .ctor path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 97 + startLine: 129 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -121,7 +121,7 @@ items: repo: https://github.com/opentk/opentk.git id: op_Explicit path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 102 + startLine: 134 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -155,7 +155,7 @@ items: repo: https://github.com/opentk/opentk.git id: op_Explicit path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 103 + startLine: 135 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx diff --git a/api/OpenTK.Graphics.Glx.GLXContext.yml b/api/OpenTK.Graphics.Glx.GLXContext.yml index f615b019..34f28d55 100644 --- a/api/OpenTK.Graphics.Glx.GLXContext.yml +++ b/api/OpenTK.Graphics.Glx.GLXContext.yml @@ -23,7 +23,7 @@ items: repo: https://github.com/opentk/opentk.git id: GLXContext path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 222 + startLine: 272 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -57,7 +57,7 @@ items: repo: https://github.com/opentk/opentk.git id: Value path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 224 + startLine: 274 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -84,7 +84,7 @@ items: repo: https://github.com/opentk/opentk.git id: .ctor path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 226 + startLine: 276 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -116,7 +116,7 @@ items: repo: https://github.com/opentk/opentk.git id: op_Explicit path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 231 + startLine: 281 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -150,7 +150,7 @@ items: repo: https://github.com/opentk/opentk.git id: op_Explicit path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 232 + startLine: 282 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx diff --git a/api/OpenTK.Graphics.Glx.GLXContextID.yml b/api/OpenTK.Graphics.Glx.GLXContextID.yml index a581e7aa..b0e82e96 100644 --- a/api/OpenTK.Graphics.Glx.GLXContextID.yml +++ b/api/OpenTK.Graphics.Glx.GLXContextID.yml @@ -23,7 +23,7 @@ items: repo: https://github.com/opentk/opentk.git id: GLXContextID path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 199 + startLine: 249 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -57,7 +57,7 @@ items: repo: https://github.com/opentk/opentk.git id: XID path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 204 + startLine: 254 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -86,7 +86,7 @@ items: repo: https://github.com/opentk/opentk.git id: .ctor path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 210 + startLine: 260 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -121,7 +121,7 @@ items: repo: https://github.com/opentk/opentk.git id: op_Explicit path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 215 + startLine: 265 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -155,7 +155,7 @@ items: repo: https://github.com/opentk/opentk.git id: op_Explicit path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 216 + startLine: 266 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx diff --git a/api/OpenTK.Graphics.Glx.GLXDrawable.yml b/api/OpenTK.Graphics.Glx.GLXDrawable.yml index 7bb97fda..993acc6e 100644 --- a/api/OpenTK.Graphics.Glx.GLXDrawable.yml +++ b/api/OpenTK.Graphics.Glx.GLXDrawable.yml @@ -23,7 +23,7 @@ items: repo: https://github.com/opentk/opentk.git id: GLXDrawable path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 261 + startLine: 311 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -57,7 +57,7 @@ items: repo: https://github.com/opentk/opentk.git id: XID path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 266 + startLine: 316 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -86,7 +86,7 @@ items: repo: https://github.com/opentk/opentk.git id: .ctor path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 272 + startLine: 322 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -121,7 +121,7 @@ items: repo: https://github.com/opentk/opentk.git id: op_Explicit path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 277 + startLine: 327 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -155,7 +155,7 @@ items: repo: https://github.com/opentk/opentk.git id: op_Explicit path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 278 + startLine: 328 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx diff --git a/api/OpenTK.Graphics.Glx.GLXFBConfig.yml b/api/OpenTK.Graphics.Glx.GLXFBConfig.yml index 3231647b..5e4a66dc 100644 --- a/api/OpenTK.Graphics.Glx.GLXFBConfig.yml +++ b/api/OpenTK.Graphics.Glx.GLXFBConfig.yml @@ -23,7 +23,7 @@ items: repo: https://github.com/opentk/opentk.git id: GLXFBConfig path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 183 + startLine: 233 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -57,7 +57,7 @@ items: repo: https://github.com/opentk/opentk.git id: Value path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 185 + startLine: 235 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -84,7 +84,7 @@ items: repo: https://github.com/opentk/opentk.git id: .ctor path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 187 + startLine: 237 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -116,7 +116,7 @@ items: repo: https://github.com/opentk/opentk.git id: op_Explicit path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 192 + startLine: 242 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -150,7 +150,7 @@ items: repo: https://github.com/opentk/opentk.git id: op_Explicit path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 193 + startLine: 243 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx diff --git a/api/OpenTK.Graphics.Glx.GLXFBConfigID.yml b/api/OpenTK.Graphics.Glx.GLXFBConfigID.yml index 54f0cddd..43ec5092 100644 --- a/api/OpenTK.Graphics.Glx.GLXFBConfigID.yml +++ b/api/OpenTK.Graphics.Glx.GLXFBConfigID.yml @@ -23,7 +23,7 @@ items: repo: https://github.com/opentk/opentk.git id: GLXFBConfigID path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 160 + startLine: 210 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -57,7 +57,7 @@ items: repo: https://github.com/opentk/opentk.git id: XID path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 165 + startLine: 215 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -86,7 +86,7 @@ items: repo: https://github.com/opentk/opentk.git id: .ctor path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 171 + startLine: 221 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -121,7 +121,7 @@ items: repo: https://github.com/opentk/opentk.git id: op_Explicit path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 176 + startLine: 226 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -155,7 +155,7 @@ items: repo: https://github.com/opentk/opentk.git id: op_Explicit path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 177 + startLine: 227 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx diff --git a/api/OpenTK.Graphics.Glx.GLXFBConfigIDSGIX.yml b/api/OpenTK.Graphics.Glx.GLXFBConfigIDSGIX.yml index 96619d3a..5017cb3c 100644 --- a/api/OpenTK.Graphics.Glx.GLXFBConfigIDSGIX.yml +++ b/api/OpenTK.Graphics.Glx.GLXFBConfigIDSGIX.yml @@ -23,7 +23,7 @@ items: repo: https://github.com/opentk/opentk.git id: GLXFBConfigIDSGIX path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 376 + startLine: 426 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -57,7 +57,7 @@ items: repo: https://github.com/opentk/opentk.git id: XID path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 381 + startLine: 431 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -86,7 +86,7 @@ items: repo: https://github.com/opentk/opentk.git id: .ctor path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 387 + startLine: 437 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -121,7 +121,7 @@ items: repo: https://github.com/opentk/opentk.git id: op_Explicit path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 392 + startLine: 442 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -155,7 +155,7 @@ items: repo: https://github.com/opentk/opentk.git id: op_Explicit path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 393 + startLine: 443 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx diff --git a/api/OpenTK.Graphics.Glx.GLXFBConfigSGIX.yml b/api/OpenTK.Graphics.Glx.GLXFBConfigSGIX.yml index 6504f67e..68d97b47 100644 --- a/api/OpenTK.Graphics.Glx.GLXFBConfigSGIX.yml +++ b/api/OpenTK.Graphics.Glx.GLXFBConfigSGIX.yml @@ -23,7 +23,7 @@ items: repo: https://github.com/opentk/opentk.git id: GLXFBConfigSGIX path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 399 + startLine: 449 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -57,7 +57,7 @@ items: repo: https://github.com/opentk/opentk.git id: Value path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 401 + startLine: 451 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -84,7 +84,7 @@ items: repo: https://github.com/opentk/opentk.git id: .ctor path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 403 + startLine: 453 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -116,7 +116,7 @@ items: repo: https://github.com/opentk/opentk.git id: op_Explicit path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 408 + startLine: 458 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -150,7 +150,7 @@ items: repo: https://github.com/opentk/opentk.git id: op_Explicit path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 409 + startLine: 459 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx diff --git a/api/OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX.yml b/api/OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX.yml index 9fbf6772..514a3d86 100644 --- a/api/OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX.yml +++ b/api/OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX.yml @@ -23,7 +23,7 @@ items: repo: https://github.com/opentk/opentk.git id: GLXHyperpipeConfigSGIX path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 459 + startLine: 509 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -55,7 +55,7 @@ items: repo: https://github.com/opentk/opentk.git id: PipeName path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 461 + startLine: 511 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -82,7 +82,7 @@ items: repo: https://github.com/opentk/opentk.git id: Channel path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 462 + startLine: 512 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -109,7 +109,7 @@ items: repo: https://github.com/opentk/opentk.git id: ParticipationType path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 463 + startLine: 513 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -136,7 +136,7 @@ items: repo: https://github.com/opentk/opentk.git id: TimeSlice path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 464 + startLine: 514 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx diff --git a/api/OpenTK.Graphics.Glx.GLXHyperpipeNetworkSGIX.yml b/api/OpenTK.Graphics.Glx.GLXHyperpipeNetworkSGIX.yml index 30ee08f4..ff296ebb 100644 --- a/api/OpenTK.Graphics.Glx.GLXHyperpipeNetworkSGIX.yml +++ b/api/OpenTK.Graphics.Glx.GLXHyperpipeNetworkSGIX.yml @@ -21,7 +21,7 @@ items: repo: https://github.com/opentk/opentk.git id: GLXHyperpipeNetworkSGIX path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 467 + startLine: 517 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -53,7 +53,7 @@ items: repo: https://github.com/opentk/opentk.git id: PipeName path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 469 + startLine: 519 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -80,7 +80,7 @@ items: repo: https://github.com/opentk/opentk.git id: NetworkId path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 470 + startLine: 520 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx diff --git a/api/OpenTK.Graphics.Glx.GLXPbuffer.yml b/api/OpenTK.Graphics.Glx.GLXPbuffer.yml index 6a6550b4..547454ad 100644 --- a/api/OpenTK.Graphics.Glx.GLXPbuffer.yml +++ b/api/OpenTK.Graphics.Glx.GLXPbuffer.yml @@ -23,7 +23,7 @@ items: repo: https://github.com/opentk/opentk.git id: GLXPbuffer path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 307 + startLine: 357 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -57,7 +57,7 @@ items: repo: https://github.com/opentk/opentk.git id: XID path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 312 + startLine: 362 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -86,7 +86,7 @@ items: repo: https://github.com/opentk/opentk.git id: .ctor path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 318 + startLine: 368 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -121,7 +121,7 @@ items: repo: https://github.com/opentk/opentk.git id: op_Explicit path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 323 + startLine: 373 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -155,7 +155,7 @@ items: repo: https://github.com/opentk/opentk.git id: op_Explicit path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 324 + startLine: 374 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx diff --git a/api/OpenTK.Graphics.Glx.GLXPbufferSGIX.yml b/api/OpenTK.Graphics.Glx.GLXPbufferSGIX.yml index 1bcc86b7..363dd1a6 100644 --- a/api/OpenTK.Graphics.Glx.GLXPbufferSGIX.yml +++ b/api/OpenTK.Graphics.Glx.GLXPbufferSGIX.yml @@ -23,7 +23,7 @@ items: repo: https://github.com/opentk/opentk.git id: GLXPbufferSGIX path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 415 + startLine: 465 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -57,7 +57,7 @@ items: repo: https://github.com/opentk/opentk.git id: XID path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 420 + startLine: 470 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -86,7 +86,7 @@ items: repo: https://github.com/opentk/opentk.git id: .ctor path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 426 + startLine: 476 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -121,7 +121,7 @@ items: repo: https://github.com/opentk/opentk.git id: op_Explicit path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 431 + startLine: 481 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -155,7 +155,7 @@ items: repo: https://github.com/opentk/opentk.git id: op_Explicit path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 432 + startLine: 482 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx diff --git a/api/OpenTK.Graphics.Glx.GLXPixmap.yml b/api/OpenTK.Graphics.Glx.GLXPixmap.yml index 506f7246..8140d281 100644 --- a/api/OpenTK.Graphics.Glx.GLXPixmap.yml +++ b/api/OpenTK.Graphics.Glx.GLXPixmap.yml @@ -23,7 +23,7 @@ items: repo: https://github.com/opentk/opentk.git id: GLXPixmap path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 238 + startLine: 288 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -57,7 +57,7 @@ items: repo: https://github.com/opentk/opentk.git id: XID path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 243 + startLine: 293 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -86,7 +86,7 @@ items: repo: https://github.com/opentk/opentk.git id: .ctor path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 249 + startLine: 299 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -121,7 +121,7 @@ items: repo: https://github.com/opentk/opentk.git id: op_Explicit path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 254 + startLine: 304 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -155,7 +155,7 @@ items: repo: https://github.com/opentk/opentk.git id: op_Explicit path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 255 + startLine: 305 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx diff --git a/api/OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV.yml b/api/OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV.yml index 83467136..6f7c61a6 100644 --- a/api/OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV.yml +++ b/api/OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV.yml @@ -23,7 +23,7 @@ items: repo: https://github.com/opentk/opentk.git id: GLXVideoCaptureDeviceNV path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 330 + startLine: 380 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -57,7 +57,7 @@ items: repo: https://github.com/opentk/opentk.git id: XID path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 335 + startLine: 385 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -86,7 +86,7 @@ items: repo: https://github.com/opentk/opentk.git id: .ctor path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 341 + startLine: 391 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -121,7 +121,7 @@ items: repo: https://github.com/opentk/opentk.git id: op_Explicit path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 346 + startLine: 396 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -155,7 +155,7 @@ items: repo: https://github.com/opentk/opentk.git id: op_Explicit path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 347 + startLine: 397 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx diff --git a/api/OpenTK.Graphics.Glx.GLXVideoDeviceNV.yml b/api/OpenTK.Graphics.Glx.GLXVideoDeviceNV.yml index 6ecf8bf9..36b15913 100644 --- a/api/OpenTK.Graphics.Glx.GLXVideoDeviceNV.yml +++ b/api/OpenTK.Graphics.Glx.GLXVideoDeviceNV.yml @@ -23,7 +23,7 @@ items: repo: https://github.com/opentk/opentk.git id: GLXVideoDeviceNV path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 438 + startLine: 488 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -57,7 +57,7 @@ items: repo: https://github.com/opentk/opentk.git id: VideoDevice path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 443 + startLine: 493 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -86,7 +86,7 @@ items: repo: https://github.com/opentk/opentk.git id: .ctor path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 449 + startLine: 499 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -121,7 +121,7 @@ items: repo: https://github.com/opentk/opentk.git id: op_Explicit path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 454 + startLine: 504 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -155,7 +155,7 @@ items: repo: https://github.com/opentk/opentk.git id: op_Explicit path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 455 + startLine: 505 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx diff --git a/api/OpenTK.Graphics.Glx.GLXVideoSourceSGIX.yml b/api/OpenTK.Graphics.Glx.GLXVideoSourceSGIX.yml index c10d88f5..a2ec50aa 100644 --- a/api/OpenTK.Graphics.Glx.GLXVideoSourceSGIX.yml +++ b/api/OpenTK.Graphics.Glx.GLXVideoSourceSGIX.yml @@ -23,7 +23,7 @@ items: repo: https://github.com/opentk/opentk.git id: GLXVideoSourceSGIX path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 353 + startLine: 403 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -57,7 +57,7 @@ items: repo: https://github.com/opentk/opentk.git id: XID path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 358 + startLine: 408 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -86,7 +86,7 @@ items: repo: https://github.com/opentk/opentk.git id: .ctor path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 364 + startLine: 414 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -121,7 +121,7 @@ items: repo: https://github.com/opentk/opentk.git id: op_Explicit path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 369 + startLine: 419 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -155,7 +155,7 @@ items: repo: https://github.com/opentk/opentk.git id: op_Explicit path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 370 + startLine: 420 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx diff --git a/api/OpenTK.Graphics.Glx.GLXWindow.yml b/api/OpenTK.Graphics.Glx.GLXWindow.yml index 4d6504db..34bd4487 100644 --- a/api/OpenTK.Graphics.Glx.GLXWindow.yml +++ b/api/OpenTK.Graphics.Glx.GLXWindow.yml @@ -23,7 +23,7 @@ items: repo: https://github.com/opentk/opentk.git id: GLXWindow path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 284 + startLine: 334 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -57,7 +57,7 @@ items: repo: https://github.com/opentk/opentk.git id: XID path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 289 + startLine: 339 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -86,7 +86,7 @@ items: repo: https://github.com/opentk/opentk.git id: .ctor path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 295 + startLine: 345 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -121,7 +121,7 @@ items: repo: https://github.com/opentk/opentk.git id: op_Explicit path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 300 + startLine: 350 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -155,7 +155,7 @@ items: repo: https://github.com/opentk/opentk.git id: op_Explicit path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 301 + startLine: 351 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx diff --git a/api/OpenTK.Graphics.Glx.Glx.AMD.yml b/api/OpenTK.Graphics.Glx.Glx.AMD.yml index 47717b73..f3349ee4 100644 --- a/api/OpenTK.Graphics.Glx.Glx.AMD.yml +++ b/api/OpenTK.Graphics.Glx.Glx.AMD.yml @@ -32,7 +32,7 @@ items: repo: https://github.com/opentk/opentk.git id: AMD path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 338 + startLine: 179 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -412,7 +412,7 @@ items: repo: https://github.com/opentk/opentk.git id: CreateAssociatedContextAttribsAMD path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 341 + startLine: 182 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -457,7 +457,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetGPUIDsAMD path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 351 + startLine: 192 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -500,7 +500,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetGPUInfoAMD path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 361 + startLine: 202 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -549,7 +549,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetGPUInfoAMD path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 369 + startLine: 210 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx diff --git a/api/OpenTK.Graphics.Glx.Glx.ARB.yml b/api/OpenTK.Graphics.Glx.Glx.ARB.yml index b8050ac4..3ad8c709 100644 --- a/api/OpenTK.Graphics.Glx.Glx.ARB.yml +++ b/api/OpenTK.Graphics.Glx.Glx.ARB.yml @@ -5,8 +5,8 @@ items: id: Glx.ARB parent: OpenTK.Graphics.Glx children: - - OpenTK.Graphics.Glx.Glx.ARB.CreateContextAttribsARB(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.GLXContext,System.Boolean,System.Int32*) - - OpenTK.Graphics.Glx.Glx.ARB.CreateContextAttribsARB(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.GLXContext,System.Boolean,System.Int32@) + - OpenTK.Graphics.Glx.Glx.ARB.CreateContextAttribsARB(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.GLXContext,System.Boolean,System.Int32*) + - OpenTK.Graphics.Glx.Glx.ARB.CreateContextAttribsARB(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.GLXContext,System.Boolean,System.Int32@) - OpenTK.Graphics.Glx.Glx.ARB.GetProcAddressARB(System.Byte*) - OpenTK.Graphics.Glx.Glx.ARB.GetProcAddressARB(System.Byte@) langs: @@ -23,7 +23,7 @@ items: repo: https://github.com/opentk/opentk.git id: ARB path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 380 + startLine: 221 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -42,16 +42,16 @@ items: - System.Object.MemberwiseClone - System.Object.ReferenceEquals(System.Object,System.Object) - System.Object.ToString -- uid: OpenTK.Graphics.Glx.Glx.ARB.CreateContextAttribsARB(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.GLXContext,System.Boolean,System.Int32*) - commentId: M:OpenTK.Graphics.Glx.Glx.ARB.CreateContextAttribsARB(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.GLXContext,System.Boolean,System.Int32*) - id: CreateContextAttribsARB(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.GLXContext,System.Boolean,System.Int32*) +- uid: OpenTK.Graphics.Glx.Glx.ARB.CreateContextAttribsARB(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.GLXContext,System.Boolean,System.Int32*) + commentId: M:OpenTK.Graphics.Glx.Glx.ARB.CreateContextAttribsARB(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.GLXContext,System.Boolean,System.Int32*) + id: CreateContextAttribsARB(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.GLXContext,System.Boolean,System.Int32*) parent: OpenTK.Graphics.Glx.Glx.ARB langs: - csharp - vb - name: CreateContextAttribsARB(Display*, GLXFBConfig, GLXContext, bool, int*) - nameWithType: Glx.ARB.CreateContextAttribsARB(Display*, GLXFBConfig, GLXContext, bool, int*) - fullName: OpenTK.Graphics.Glx.Glx.ARB.CreateContextAttribsARB(OpenTK.Graphics.Glx.Display*, OpenTK.Graphics.Glx.GLXFBConfig, OpenTK.Graphics.Glx.GLXContext, bool, int*) + name: CreateContextAttribsARB(DisplayPtr, GLXFBConfig, GLXContext, bool, int*) + nameWithType: Glx.ARB.CreateContextAttribsARB(DisplayPtr, GLXFBConfig, GLXContext, bool, int*) + fullName: OpenTK.Graphics.Glx.Glx.ARB.CreateContextAttribsARB(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfig, OpenTK.Graphics.Glx.GLXContext, bool, int*) type: Method source: remote: @@ -67,10 +67,10 @@ items: summary: '[requires: GLX_ARB_create_context] [entry point: glXCreateContextAttribsARB]
' example: [] syntax: - content: public static GLXContext CreateContextAttribsARB(Display* dpy, GLXFBConfig config, GLXContext share_context, bool direct, int* attrib_list) + content: public static GLXContext CreateContextAttribsARB(DisplayPtr dpy, GLXFBConfig config, GLXContext share_context, bool direct, int* attrib_list) parameters: - id: dpy - type: OpenTK.Graphics.Glx.Display* + type: OpenTK.Graphics.Glx.DisplayPtr - id: config type: OpenTK.Graphics.Glx.GLXFBConfig - id: share_context @@ -81,11 +81,11 @@ items: type: System.Int32* return: type: OpenTK.Graphics.Glx.GLXContext - content.vb: Public Shared Function CreateContextAttribsARB(dpy As Display*, config As GLXFBConfig, share_context As GLXContext, direct As Boolean, attrib_list As Integer*) As GLXContext + content.vb: Public Shared Function CreateContextAttribsARB(dpy As DisplayPtr, config As GLXFBConfig, share_context As GLXContext, direct As Boolean, attrib_list As Integer*) As GLXContext overload: OpenTK.Graphics.Glx.Glx.ARB.CreateContextAttribsARB* - nameWithType.vb: Glx.ARB.CreateContextAttribsARB(Display*, GLXFBConfig, GLXContext, Boolean, Integer*) - fullName.vb: OpenTK.Graphics.Glx.Glx.ARB.CreateContextAttribsARB(OpenTK.Graphics.Glx.Display*, OpenTK.Graphics.Glx.GLXFBConfig, OpenTK.Graphics.Glx.GLXContext, Boolean, Integer*) - name.vb: CreateContextAttribsARB(Display*, GLXFBConfig, GLXContext, Boolean, Integer*) + nameWithType.vb: Glx.ARB.CreateContextAttribsARB(DisplayPtr, GLXFBConfig, GLXContext, Boolean, Integer*) + fullName.vb: OpenTK.Graphics.Glx.Glx.ARB.CreateContextAttribsARB(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfig, OpenTK.Graphics.Glx.GLXContext, Boolean, Integer*) + name.vb: CreateContextAttribsARB(DisplayPtr, GLXFBConfig, GLXContext, Boolean, Integer*) - uid: OpenTK.Graphics.Glx.Glx.ARB.GetProcAddressARB(System.Byte*) commentId: M:OpenTK.Graphics.Glx.Glx.ARB.GetProcAddressARB(System.Byte*) id: GetProcAddressARB(System.Byte*) @@ -122,16 +122,16 @@ items: nameWithType.vb: Glx.ARB.GetProcAddressARB(Byte*) fullName.vb: OpenTK.Graphics.Glx.Glx.ARB.GetProcAddressARB(Byte*) name.vb: GetProcAddressARB(Byte*) -- uid: OpenTK.Graphics.Glx.Glx.ARB.CreateContextAttribsARB(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.GLXContext,System.Boolean,System.Int32@) - commentId: M:OpenTK.Graphics.Glx.Glx.ARB.CreateContextAttribsARB(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.GLXContext,System.Boolean,System.Int32@) - id: CreateContextAttribsARB(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.GLXContext,System.Boolean,System.Int32@) +- uid: OpenTK.Graphics.Glx.Glx.ARB.CreateContextAttribsARB(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.GLXContext,System.Boolean,System.Int32@) + commentId: M:OpenTK.Graphics.Glx.Glx.ARB.CreateContextAttribsARB(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.GLXContext,System.Boolean,System.Int32@) + id: CreateContextAttribsARB(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.GLXContext,System.Boolean,System.Int32@) parent: OpenTK.Graphics.Glx.Glx.ARB langs: - csharp - vb - name: CreateContextAttribsARB(ref Display, GLXFBConfig, GLXContext, bool, in int) - nameWithType: Glx.ARB.CreateContextAttribsARB(ref Display, GLXFBConfig, GLXContext, bool, in int) - fullName: OpenTK.Graphics.Glx.Glx.ARB.CreateContextAttribsARB(ref OpenTK.Graphics.Glx.Display, OpenTK.Graphics.Glx.GLXFBConfig, OpenTK.Graphics.Glx.GLXContext, bool, in int) + name: CreateContextAttribsARB(DisplayPtr, GLXFBConfig, GLXContext, bool, in int) + nameWithType: Glx.ARB.CreateContextAttribsARB(DisplayPtr, GLXFBConfig, GLXContext, bool, in int) + fullName: OpenTK.Graphics.Glx.Glx.ARB.CreateContextAttribsARB(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfig, OpenTK.Graphics.Glx.GLXContext, bool, in int) type: Method source: remote: @@ -140,7 +140,7 @@ items: repo: https://github.com/opentk/opentk.git id: CreateContextAttribsARB path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 383 + startLine: 224 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -152,10 +152,10 @@ items:
example: [] syntax: - content: public static GLXContext CreateContextAttribsARB(ref Display dpy, GLXFBConfig config, GLXContext share_context, bool direct, in int attrib_list) + content: public static GLXContext CreateContextAttribsARB(DisplayPtr dpy, GLXFBConfig config, GLXContext share_context, bool direct, in int attrib_list) parameters: - id: dpy - type: OpenTK.Graphics.Glx.Display + type: OpenTK.Graphics.Glx.DisplayPtr - id: config type: OpenTK.Graphics.Glx.GLXFBConfig - id: share_context @@ -166,11 +166,11 @@ items: type: System.Int32 return: type: OpenTK.Graphics.Glx.GLXContext - content.vb: Public Shared Function CreateContextAttribsARB(dpy As Display, config As GLXFBConfig, share_context As GLXContext, direct As Boolean, attrib_list As Integer) As GLXContext + content.vb: Public Shared Function CreateContextAttribsARB(dpy As DisplayPtr, config As GLXFBConfig, share_context As GLXContext, direct As Boolean, attrib_list As Integer) As GLXContext overload: OpenTK.Graphics.Glx.Glx.ARB.CreateContextAttribsARB* - nameWithType.vb: Glx.ARB.CreateContextAttribsARB(Display, GLXFBConfig, GLXContext, Boolean, Integer) - fullName.vb: OpenTK.Graphics.Glx.Glx.ARB.CreateContextAttribsARB(OpenTK.Graphics.Glx.Display, OpenTK.Graphics.Glx.GLXFBConfig, OpenTK.Graphics.Glx.GLXContext, Boolean, Integer) - name.vb: CreateContextAttribsARB(Display, GLXFBConfig, GLXContext, Boolean, Integer) + nameWithType.vb: Glx.ARB.CreateContextAttribsARB(DisplayPtr, GLXFBConfig, GLXContext, Boolean, Integer) + fullName.vb: OpenTK.Graphics.Glx.Glx.ARB.CreateContextAttribsARB(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfig, OpenTK.Graphics.Glx.GLXContext, Boolean, Integer) + name.vb: CreateContextAttribsARB(DisplayPtr, GLXFBConfig, GLXContext, Boolean, Integer) - uid: OpenTK.Graphics.Glx.Glx.ARB.GetProcAddressARB(System.Byte@) commentId: M:OpenTK.Graphics.Glx.Glx.ARB.GetProcAddressARB(System.Byte@) id: GetProcAddressARB(System.Byte@) @@ -189,7 +189,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetProcAddressARB path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 394 + startLine: 234 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -482,26 +482,17 @@ references: fullName: System - uid: OpenTK.Graphics.Glx.Glx.ARB.CreateContextAttribsARB* commentId: Overload:OpenTK.Graphics.Glx.Glx.ARB.CreateContextAttribsARB - href: OpenTK.Graphics.Glx.Glx.ARB.html#OpenTK_Graphics_Glx_Glx_ARB_CreateContextAttribsARB_OpenTK_Graphics_Glx_Display__OpenTK_Graphics_Glx_GLXFBConfig_OpenTK_Graphics_Glx_GLXContext_System_Boolean_System_Int32__ + href: OpenTK.Graphics.Glx.Glx.ARB.html#OpenTK_Graphics_Glx_Glx_ARB_CreateContextAttribsARB_OpenTK_Graphics_Glx_DisplayPtr_OpenTK_Graphics_Glx_GLXFBConfig_OpenTK_Graphics_Glx_GLXContext_System_Boolean_System_Int32__ name: CreateContextAttribsARB nameWithType: Glx.ARB.CreateContextAttribsARB fullName: OpenTK.Graphics.Glx.Glx.ARB.CreateContextAttribsARB -- uid: OpenTK.Graphics.Glx.Display* - isExternal: true - href: OpenTK.Graphics.Glx.Display.html - name: Display* - nameWithType: Display* - fullName: OpenTK.Graphics.Glx.Display* - spec.csharp: - - uid: OpenTK.Graphics.Glx.Display - name: Display - href: OpenTK.Graphics.Glx.Display.html - - name: '*' - spec.vb: - - uid: OpenTK.Graphics.Glx.Display - name: Display - href: OpenTK.Graphics.Glx.Display.html - - name: '*' +- uid: OpenTK.Graphics.Glx.DisplayPtr + commentId: T:OpenTK.Graphics.Glx.DisplayPtr + parent: OpenTK.Graphics.Glx + href: OpenTK.Graphics.Glx.DisplayPtr.html + name: DisplayPtr + nameWithType: DisplayPtr + fullName: OpenTK.Graphics.Glx.DisplayPtr - uid: OpenTK.Graphics.Glx.GLXFBConfig commentId: T:OpenTK.Graphics.Glx.GLXFBConfig parent: OpenTK.Graphics.Glx @@ -586,13 +577,6 @@ references: nameWithType.vb: IntPtr fullName.vb: System.IntPtr name.vb: IntPtr -- uid: OpenTK.Graphics.Glx.Display - commentId: T:OpenTK.Graphics.Glx.Display - parent: OpenTK.Graphics.Glx - href: OpenTK.Graphics.Glx.Display.html - name: Display - nameWithType: Display - fullName: OpenTK.Graphics.Glx.Display - uid: System.Int32 commentId: T:System.Int32 parent: System diff --git a/api/OpenTK.Graphics.Glx.Glx.EXT.yml b/api/OpenTK.Graphics.Glx.Glx.EXT.yml index f7d727eb..8d2b214a 100644 --- a/api/OpenTK.Graphics.Glx.Glx.EXT.yml +++ b/api/OpenTK.Graphics.Glx.Glx.EXT.yml @@ -5,20 +5,16 @@ items: id: Glx.EXT parent: OpenTK.Graphics.Glx children: - - OpenTK.Graphics.Glx.Glx.EXT.BindTexImageEXT(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXDrawable,System.Int32,System.Int32*) - - OpenTK.Graphics.Glx.Glx.EXT.BindTexImageEXT(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXDrawable,System.Int32,System.Int32@) - - OpenTK.Graphics.Glx.Glx.EXT.FreeContextEXT(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXContext) - - OpenTK.Graphics.Glx.Glx.EXT.FreeContextEXT(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXContext) + - OpenTK.Graphics.Glx.Glx.EXT.BindTexImageEXT(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32,System.Int32*) + - OpenTK.Graphics.Glx.Glx.EXT.BindTexImageEXT(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32,System.Int32@) + - OpenTK.Graphics.Glx.Glx.EXT.FreeContextEXT(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext) - OpenTK.Graphics.Glx.Glx.EXT.GetContextIDEXT(OpenTK.Graphics.Glx.GLXContext) - OpenTK.Graphics.Glx.Glx.EXT.GetCurrentDisplayEXT - - OpenTK.Graphics.Glx.Glx.EXT.ImportContextEXT(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXContextID) - - OpenTK.Graphics.Glx.Glx.EXT.ImportContextEXT(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXContextID) - - OpenTK.Graphics.Glx.Glx.EXT.QueryContextInfoEXT(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXContext,System.Int32,System.Int32*) - - OpenTK.Graphics.Glx.Glx.EXT.QueryContextInfoEXT(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXContext,System.Int32,System.Int32@) - - OpenTK.Graphics.Glx.Glx.EXT.ReleaseTexImageEXT(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXDrawable,System.Int32) - - OpenTK.Graphics.Glx.Glx.EXT.ReleaseTexImageEXT(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXDrawable,System.Int32) - - OpenTK.Graphics.Glx.Glx.EXT.SwapIntervalEXT(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXDrawable,System.Int32) - - OpenTK.Graphics.Glx.Glx.EXT.SwapIntervalEXT(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXDrawable,System.Int32) + - OpenTK.Graphics.Glx.Glx.EXT.ImportContextEXT(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContextID) + - OpenTK.Graphics.Glx.Glx.EXT.QueryContextInfoEXT(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext,System.Int32,System.Int32*) + - OpenTK.Graphics.Glx.Glx.EXT.QueryContextInfoEXT(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext,System.Int32,System.Int32@) + - OpenTK.Graphics.Glx.Glx.EXT.ReleaseTexImageEXT(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32) + - OpenTK.Graphics.Glx.Glx.EXT.SwapIntervalEXT(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32) langs: - csharp - vb @@ -33,7 +29,7 @@ items: repo: https://github.com/opentk/opentk.git id: EXT path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 404 + startLine: 244 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -52,16 +48,16 @@ items: - System.Object.MemberwiseClone - System.Object.ReferenceEquals(System.Object,System.Object) - System.Object.ToString -- uid: OpenTK.Graphics.Glx.Glx.EXT.BindTexImageEXT(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXDrawable,System.Int32,System.Int32*) - commentId: M:OpenTK.Graphics.Glx.Glx.EXT.BindTexImageEXT(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXDrawable,System.Int32,System.Int32*) - id: BindTexImageEXT(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXDrawable,System.Int32,System.Int32*) +- uid: OpenTK.Graphics.Glx.Glx.EXT.BindTexImageEXT(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32,System.Int32*) + commentId: M:OpenTK.Graphics.Glx.Glx.EXT.BindTexImageEXT(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32,System.Int32*) + id: BindTexImageEXT(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32,System.Int32*) parent: OpenTK.Graphics.Glx.Glx.EXT langs: - csharp - vb - name: BindTexImageEXT(Display*, GLXDrawable, int, int*) - nameWithType: Glx.EXT.BindTexImageEXT(Display*, GLXDrawable, int, int*) - fullName: OpenTK.Graphics.Glx.Glx.EXT.BindTexImageEXT(OpenTK.Graphics.Glx.Display*, OpenTK.Graphics.Glx.GLXDrawable, int, int*) + name: BindTexImageEXT(DisplayPtr, GLXDrawable, int, int*) + nameWithType: Glx.EXT.BindTexImageEXT(DisplayPtr, GLXDrawable, int, int*) + fullName: OpenTK.Graphics.Glx.Glx.EXT.BindTexImageEXT(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, int, int*) type: Method source: remote: @@ -77,31 +73,31 @@ items: summary: '[requires: GLX_EXT_texture_from_pixmap] [entry point: glXBindTexImageEXT]
' example: [] syntax: - content: public static void BindTexImageEXT(Display* dpy, GLXDrawable drawable, int buffer, int* attrib_list) + content: public static void BindTexImageEXT(DisplayPtr dpy, GLXDrawable drawable, int buffer, int* attrib_list) parameters: - id: dpy - type: OpenTK.Graphics.Glx.Display* + type: OpenTK.Graphics.Glx.DisplayPtr - id: drawable type: OpenTK.Graphics.Glx.GLXDrawable - id: buffer type: System.Int32 - id: attrib_list type: System.Int32* - content.vb: Public Shared Sub BindTexImageEXT(dpy As Display*, drawable As GLXDrawable, buffer As Integer, attrib_list As Integer*) + content.vb: Public Shared Sub BindTexImageEXT(dpy As DisplayPtr, drawable As GLXDrawable, buffer As Integer, attrib_list As Integer*) overload: OpenTK.Graphics.Glx.Glx.EXT.BindTexImageEXT* - nameWithType.vb: Glx.EXT.BindTexImageEXT(Display*, GLXDrawable, Integer, Integer*) - fullName.vb: OpenTK.Graphics.Glx.Glx.EXT.BindTexImageEXT(OpenTK.Graphics.Glx.Display*, OpenTK.Graphics.Glx.GLXDrawable, Integer, Integer*) - name.vb: BindTexImageEXT(Display*, GLXDrawable, Integer, Integer*) -- uid: OpenTK.Graphics.Glx.Glx.EXT.FreeContextEXT(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXContext) - commentId: M:OpenTK.Graphics.Glx.Glx.EXT.FreeContextEXT(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXContext) - id: FreeContextEXT(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXContext) + nameWithType.vb: Glx.EXT.BindTexImageEXT(DisplayPtr, GLXDrawable, Integer, Integer*) + fullName.vb: OpenTK.Graphics.Glx.Glx.EXT.BindTexImageEXT(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, Integer, Integer*) + name.vb: BindTexImageEXT(DisplayPtr, GLXDrawable, Integer, Integer*) +- uid: OpenTK.Graphics.Glx.Glx.EXT.FreeContextEXT(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext) + commentId: M:OpenTK.Graphics.Glx.Glx.EXT.FreeContextEXT(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext) + id: FreeContextEXT(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext) parent: OpenTK.Graphics.Glx.Glx.EXT langs: - csharp - vb - name: FreeContextEXT(Display*, GLXContext) - nameWithType: Glx.EXT.FreeContextEXT(Display*, GLXContext) - fullName: OpenTK.Graphics.Glx.Glx.EXT.FreeContextEXT(OpenTK.Graphics.Glx.Display*, OpenTK.Graphics.Glx.GLXContext) + name: FreeContextEXT(DisplayPtr, GLXContext) + nameWithType: Glx.EXT.FreeContextEXT(DisplayPtr, GLXContext) + fullName: OpenTK.Graphics.Glx.Glx.EXT.FreeContextEXT(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXContext) type: Method source: remote: @@ -117,13 +113,13 @@ items: summary: '[requires: GLX_EXT_import_context] [entry point: glXFreeContextEXT]
' example: [] syntax: - content: public static void FreeContextEXT(Display* dpy, GLXContext context) + content: public static void FreeContextEXT(DisplayPtr dpy, GLXContext context) parameters: - id: dpy - type: OpenTK.Graphics.Glx.Display* + type: OpenTK.Graphics.Glx.DisplayPtr - id: context type: OpenTK.Graphics.Glx.GLXContext - content.vb: Public Shared Sub FreeContextEXT(dpy As Display*, context As GLXContext) + content.vb: Public Shared Sub FreeContextEXT(dpy As DisplayPtr, context As GLXContext) overload: OpenTK.Graphics.Glx.Glx.EXT.FreeContextEXT* - uid: OpenTK.Graphics.Glx.Glx.EXT.GetContextIDEXT(OpenTK.Graphics.Glx.GLXContext) commentId: M:OpenTK.Graphics.Glx.Glx.EXT.GetContextIDEXT(OpenTK.Graphics.Glx.GLXContext) @@ -183,21 +179,21 @@ items: summary: '[requires: GLX_EXT_import_context] [entry point: glXGetCurrentDisplayEXT]
' example: [] syntax: - content: public static Display* GetCurrentDisplayEXT() + content: public static DisplayPtr GetCurrentDisplayEXT() return: - type: OpenTK.Graphics.Glx.Display* - content.vb: Public Shared Function GetCurrentDisplayEXT() As Display* + type: OpenTK.Graphics.Glx.DisplayPtr + content.vb: Public Shared Function GetCurrentDisplayEXT() As DisplayPtr overload: OpenTK.Graphics.Glx.Glx.EXT.GetCurrentDisplayEXT* -- uid: OpenTK.Graphics.Glx.Glx.EXT.ImportContextEXT(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXContextID) - commentId: M:OpenTK.Graphics.Glx.Glx.EXT.ImportContextEXT(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXContextID) - id: ImportContextEXT(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXContextID) +- uid: OpenTK.Graphics.Glx.Glx.EXT.ImportContextEXT(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContextID) + commentId: M:OpenTK.Graphics.Glx.Glx.EXT.ImportContextEXT(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContextID) + id: ImportContextEXT(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContextID) parent: OpenTK.Graphics.Glx.Glx.EXT langs: - csharp - vb - name: ImportContextEXT(Display*, GLXContextID) - nameWithType: Glx.EXT.ImportContextEXT(Display*, GLXContextID) - fullName: OpenTK.Graphics.Glx.Glx.EXT.ImportContextEXT(OpenTK.Graphics.Glx.Display*, OpenTK.Graphics.Glx.GLXContextID) + name: ImportContextEXT(DisplayPtr, GLXContextID) + nameWithType: Glx.EXT.ImportContextEXT(DisplayPtr, GLXContextID) + fullName: OpenTK.Graphics.Glx.Glx.EXT.ImportContextEXT(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXContextID) type: Method source: remote: @@ -213,26 +209,26 @@ items: summary: '[requires: GLX_EXT_import_context] [entry point: glXImportContextEXT]
' example: [] syntax: - content: public static GLXContext ImportContextEXT(Display* dpy, GLXContextID contextID) + content: public static GLXContext ImportContextEXT(DisplayPtr dpy, GLXContextID contextID) parameters: - id: dpy - type: OpenTK.Graphics.Glx.Display* + type: OpenTK.Graphics.Glx.DisplayPtr - id: contextID type: OpenTK.Graphics.Glx.GLXContextID return: type: OpenTK.Graphics.Glx.GLXContext - content.vb: Public Shared Function ImportContextEXT(dpy As Display*, contextID As GLXContextID) As GLXContext + content.vb: Public Shared Function ImportContextEXT(dpy As DisplayPtr, contextID As GLXContextID) As GLXContext overload: OpenTK.Graphics.Glx.Glx.EXT.ImportContextEXT* -- uid: OpenTK.Graphics.Glx.Glx.EXT.QueryContextInfoEXT(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXContext,System.Int32,System.Int32*) - commentId: M:OpenTK.Graphics.Glx.Glx.EXT.QueryContextInfoEXT(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXContext,System.Int32,System.Int32*) - id: QueryContextInfoEXT(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXContext,System.Int32,System.Int32*) +- uid: OpenTK.Graphics.Glx.Glx.EXT.QueryContextInfoEXT(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext,System.Int32,System.Int32*) + commentId: M:OpenTK.Graphics.Glx.Glx.EXT.QueryContextInfoEXT(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext,System.Int32,System.Int32*) + id: QueryContextInfoEXT(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext,System.Int32,System.Int32*) parent: OpenTK.Graphics.Glx.Glx.EXT langs: - csharp - vb - name: QueryContextInfoEXT(Display*, GLXContext, int, int*) - nameWithType: Glx.EXT.QueryContextInfoEXT(Display*, GLXContext, int, int*) - fullName: OpenTK.Graphics.Glx.Glx.EXT.QueryContextInfoEXT(OpenTK.Graphics.Glx.Display*, OpenTK.Graphics.Glx.GLXContext, int, int*) + name: QueryContextInfoEXT(DisplayPtr, GLXContext, int, int*) + nameWithType: Glx.EXT.QueryContextInfoEXT(DisplayPtr, GLXContext, int, int*) + fullName: OpenTK.Graphics.Glx.Glx.EXT.QueryContextInfoEXT(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXContext, int, int*) type: Method source: remote: @@ -248,10 +244,10 @@ items: summary: '[requires: GLX_EXT_import_context] [entry point: glXQueryContextInfoEXT]
' example: [] syntax: - content: public static int QueryContextInfoEXT(Display* dpy, GLXContext context, int attribute, int* value) + content: public static int QueryContextInfoEXT(DisplayPtr dpy, GLXContext context, int attribute, int* value) parameters: - id: dpy - type: OpenTK.Graphics.Glx.Display* + type: OpenTK.Graphics.Glx.DisplayPtr - id: context type: OpenTK.Graphics.Glx.GLXContext - id: attribute @@ -260,21 +256,21 @@ items: type: System.Int32* return: type: System.Int32 - content.vb: Public Shared Function QueryContextInfoEXT(dpy As Display*, context As GLXContext, attribute As Integer, value As Integer*) As Integer + content.vb: Public Shared Function QueryContextInfoEXT(dpy As DisplayPtr, context As GLXContext, attribute As Integer, value As Integer*) As Integer overload: OpenTK.Graphics.Glx.Glx.EXT.QueryContextInfoEXT* - nameWithType.vb: Glx.EXT.QueryContextInfoEXT(Display*, GLXContext, Integer, Integer*) - fullName.vb: OpenTK.Graphics.Glx.Glx.EXT.QueryContextInfoEXT(OpenTK.Graphics.Glx.Display*, OpenTK.Graphics.Glx.GLXContext, Integer, Integer*) - name.vb: QueryContextInfoEXT(Display*, GLXContext, Integer, Integer*) -- uid: OpenTK.Graphics.Glx.Glx.EXT.ReleaseTexImageEXT(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXDrawable,System.Int32) - commentId: M:OpenTK.Graphics.Glx.Glx.EXT.ReleaseTexImageEXT(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXDrawable,System.Int32) - id: ReleaseTexImageEXT(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXDrawable,System.Int32) + nameWithType.vb: Glx.EXT.QueryContextInfoEXT(DisplayPtr, GLXContext, Integer, Integer*) + fullName.vb: OpenTK.Graphics.Glx.Glx.EXT.QueryContextInfoEXT(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXContext, Integer, Integer*) + name.vb: QueryContextInfoEXT(DisplayPtr, GLXContext, Integer, Integer*) +- uid: OpenTK.Graphics.Glx.Glx.EXT.ReleaseTexImageEXT(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32) + commentId: M:OpenTK.Graphics.Glx.Glx.EXT.ReleaseTexImageEXT(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32) + id: ReleaseTexImageEXT(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32) parent: OpenTK.Graphics.Glx.Glx.EXT langs: - csharp - vb - name: ReleaseTexImageEXT(Display*, GLXDrawable, int) - nameWithType: Glx.EXT.ReleaseTexImageEXT(Display*, GLXDrawable, int) - fullName: OpenTK.Graphics.Glx.Glx.EXT.ReleaseTexImageEXT(OpenTK.Graphics.Glx.Display*, OpenTK.Graphics.Glx.GLXDrawable, int) + name: ReleaseTexImageEXT(DisplayPtr, GLXDrawable, int) + nameWithType: Glx.EXT.ReleaseTexImageEXT(DisplayPtr, GLXDrawable, int) + fullName: OpenTK.Graphics.Glx.Glx.EXT.ReleaseTexImageEXT(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, int) type: Method source: remote: @@ -290,29 +286,29 @@ items: summary: '[requires: GLX_EXT_texture_from_pixmap] [entry point: glXReleaseTexImageEXT]
' example: [] syntax: - content: public static void ReleaseTexImageEXT(Display* dpy, GLXDrawable drawable, int buffer) + content: public static void ReleaseTexImageEXT(DisplayPtr dpy, GLXDrawable drawable, int buffer) parameters: - id: dpy - type: OpenTK.Graphics.Glx.Display* + type: OpenTK.Graphics.Glx.DisplayPtr - id: drawable type: OpenTK.Graphics.Glx.GLXDrawable - id: buffer type: System.Int32 - content.vb: Public Shared Sub ReleaseTexImageEXT(dpy As Display*, drawable As GLXDrawable, buffer As Integer) + content.vb: Public Shared Sub ReleaseTexImageEXT(dpy As DisplayPtr, drawable As GLXDrawable, buffer As Integer) overload: OpenTK.Graphics.Glx.Glx.EXT.ReleaseTexImageEXT* - nameWithType.vb: Glx.EXT.ReleaseTexImageEXT(Display*, GLXDrawable, Integer) - fullName.vb: OpenTK.Graphics.Glx.Glx.EXT.ReleaseTexImageEXT(OpenTK.Graphics.Glx.Display*, OpenTK.Graphics.Glx.GLXDrawable, Integer) - name.vb: ReleaseTexImageEXT(Display*, GLXDrawable, Integer) -- uid: OpenTK.Graphics.Glx.Glx.EXT.SwapIntervalEXT(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXDrawable,System.Int32) - commentId: M:OpenTK.Graphics.Glx.Glx.EXT.SwapIntervalEXT(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXDrawable,System.Int32) - id: SwapIntervalEXT(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXDrawable,System.Int32) + nameWithType.vb: Glx.EXT.ReleaseTexImageEXT(DisplayPtr, GLXDrawable, Integer) + fullName.vb: OpenTK.Graphics.Glx.Glx.EXT.ReleaseTexImageEXT(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, Integer) + name.vb: ReleaseTexImageEXT(DisplayPtr, GLXDrawable, Integer) +- uid: OpenTK.Graphics.Glx.Glx.EXT.SwapIntervalEXT(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32) + commentId: M:OpenTK.Graphics.Glx.Glx.EXT.SwapIntervalEXT(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32) + id: SwapIntervalEXT(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32) parent: OpenTK.Graphics.Glx.Glx.EXT langs: - csharp - vb - name: SwapIntervalEXT(Display*, GLXDrawable, int) - nameWithType: Glx.EXT.SwapIntervalEXT(Display*, GLXDrawable, int) - fullName: OpenTK.Graphics.Glx.Glx.EXT.SwapIntervalEXT(OpenTK.Graphics.Glx.Display*, OpenTK.Graphics.Glx.GLXDrawable, int) + name: SwapIntervalEXT(DisplayPtr, GLXDrawable, int) + nameWithType: Glx.EXT.SwapIntervalEXT(DisplayPtr, GLXDrawable, int) + fullName: OpenTK.Graphics.Glx.Glx.EXT.SwapIntervalEXT(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, int) type: Method source: remote: @@ -328,29 +324,29 @@ items: summary: '[requires: GLX_EXT_swap_control] [entry point: glXSwapIntervalEXT]
' example: [] syntax: - content: public static void SwapIntervalEXT(Display* dpy, GLXDrawable drawable, int interval) + content: public static void SwapIntervalEXT(DisplayPtr dpy, GLXDrawable drawable, int interval) parameters: - id: dpy - type: OpenTK.Graphics.Glx.Display* + type: OpenTK.Graphics.Glx.DisplayPtr - id: drawable type: OpenTK.Graphics.Glx.GLXDrawable - id: interval type: System.Int32 - content.vb: Public Shared Sub SwapIntervalEXT(dpy As Display*, drawable As GLXDrawable, interval As Integer) + content.vb: Public Shared Sub SwapIntervalEXT(dpy As DisplayPtr, drawable As GLXDrawable, interval As Integer) overload: OpenTK.Graphics.Glx.Glx.EXT.SwapIntervalEXT* - nameWithType.vb: Glx.EXT.SwapIntervalEXT(Display*, GLXDrawable, Integer) - fullName.vb: OpenTK.Graphics.Glx.Glx.EXT.SwapIntervalEXT(OpenTK.Graphics.Glx.Display*, OpenTK.Graphics.Glx.GLXDrawable, Integer) - name.vb: SwapIntervalEXT(Display*, GLXDrawable, Integer) -- uid: OpenTK.Graphics.Glx.Glx.EXT.BindTexImageEXT(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXDrawable,System.Int32,System.Int32@) - commentId: M:OpenTK.Graphics.Glx.Glx.EXT.BindTexImageEXT(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXDrawable,System.Int32,System.Int32@) - id: BindTexImageEXT(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXDrawable,System.Int32,System.Int32@) + nameWithType.vb: Glx.EXT.SwapIntervalEXT(DisplayPtr, GLXDrawable, Integer) + fullName.vb: OpenTK.Graphics.Glx.Glx.EXT.SwapIntervalEXT(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, Integer) + name.vb: SwapIntervalEXT(DisplayPtr, GLXDrawable, Integer) +- uid: OpenTK.Graphics.Glx.Glx.EXT.BindTexImageEXT(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32,System.Int32@) + commentId: M:OpenTK.Graphics.Glx.Glx.EXT.BindTexImageEXT(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32,System.Int32@) + id: BindTexImageEXT(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32,System.Int32@) parent: OpenTK.Graphics.Glx.Glx.EXT langs: - csharp - vb - name: BindTexImageEXT(ref Display, GLXDrawable, int, in int) - nameWithType: Glx.EXT.BindTexImageEXT(ref Display, GLXDrawable, int, in int) - fullName: OpenTK.Graphics.Glx.Glx.EXT.BindTexImageEXT(ref OpenTK.Graphics.Glx.Display, OpenTK.Graphics.Glx.GLXDrawable, int, in int) + name: BindTexImageEXT(DisplayPtr, GLXDrawable, int, in int) + nameWithType: Glx.EXT.BindTexImageEXT(DisplayPtr, GLXDrawable, int, in int) + fullName: OpenTK.Graphics.Glx.Glx.EXT.BindTexImageEXT(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, int, in int) type: Method source: remote: @@ -359,7 +355,7 @@ items: repo: https://github.com/opentk/opentk.git id: BindTexImageEXT path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 407 + startLine: 247 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -371,115 +367,31 @@ items:
example: [] syntax: - content: public static void BindTexImageEXT(ref Display dpy, GLXDrawable drawable, int buffer, in int attrib_list) + content: public static void BindTexImageEXT(DisplayPtr dpy, GLXDrawable drawable, int buffer, in int attrib_list) parameters: - id: dpy - type: OpenTK.Graphics.Glx.Display + type: OpenTK.Graphics.Glx.DisplayPtr - id: drawable type: OpenTK.Graphics.Glx.GLXDrawable - id: buffer type: System.Int32 - id: attrib_list type: System.Int32 - content.vb: Public Shared Sub BindTexImageEXT(dpy As Display, drawable As GLXDrawable, buffer As Integer, attrib_list As Integer) + content.vb: Public Shared Sub BindTexImageEXT(dpy As DisplayPtr, drawable As GLXDrawable, buffer As Integer, attrib_list As Integer) overload: OpenTK.Graphics.Glx.Glx.EXT.BindTexImageEXT* - nameWithType.vb: Glx.EXT.BindTexImageEXT(Display, GLXDrawable, Integer, Integer) - fullName.vb: OpenTK.Graphics.Glx.Glx.EXT.BindTexImageEXT(OpenTK.Graphics.Glx.Display, OpenTK.Graphics.Glx.GLXDrawable, Integer, Integer) - name.vb: BindTexImageEXT(Display, GLXDrawable, Integer, Integer) -- uid: OpenTK.Graphics.Glx.Glx.EXT.FreeContextEXT(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXContext) - commentId: M:OpenTK.Graphics.Glx.Glx.EXT.FreeContextEXT(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXContext) - id: FreeContextEXT(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXContext) + nameWithType.vb: Glx.EXT.BindTexImageEXT(DisplayPtr, GLXDrawable, Integer, Integer) + fullName.vb: OpenTK.Graphics.Glx.Glx.EXT.BindTexImageEXT(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, Integer, Integer) + name.vb: BindTexImageEXT(DisplayPtr, GLXDrawable, Integer, Integer) +- uid: OpenTK.Graphics.Glx.Glx.EXT.QueryContextInfoEXT(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext,System.Int32,System.Int32@) + commentId: M:OpenTK.Graphics.Glx.Glx.EXT.QueryContextInfoEXT(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext,System.Int32,System.Int32@) + id: QueryContextInfoEXT(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext,System.Int32,System.Int32@) parent: OpenTK.Graphics.Glx.Glx.EXT langs: - csharp - vb - name: FreeContextEXT(ref Display, GLXContext) - nameWithType: Glx.EXT.FreeContextEXT(ref Display, GLXContext) - fullName: OpenTK.Graphics.Glx.Glx.EXT.FreeContextEXT(ref OpenTK.Graphics.Glx.Display, OpenTK.Graphics.Glx.GLXContext) - type: Method - source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: FreeContextEXT - path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 416 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_EXT_import_context] - - [entry point: glXFreeContextEXT] - -
- example: [] - syntax: - content: public static void FreeContextEXT(ref Display dpy, GLXContext context) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.Display - - id: context - type: OpenTK.Graphics.Glx.GLXContext - content.vb: Public Shared Sub FreeContextEXT(dpy As Display, context As GLXContext) - overload: OpenTK.Graphics.Glx.Glx.EXT.FreeContextEXT* - nameWithType.vb: Glx.EXT.FreeContextEXT(Display, GLXContext) - fullName.vb: OpenTK.Graphics.Glx.Glx.EXT.FreeContextEXT(OpenTK.Graphics.Glx.Display, OpenTK.Graphics.Glx.GLXContext) - name.vb: FreeContextEXT(Display, GLXContext) -- uid: OpenTK.Graphics.Glx.Glx.EXT.ImportContextEXT(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXContextID) - commentId: M:OpenTK.Graphics.Glx.Glx.EXT.ImportContextEXT(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXContextID) - id: ImportContextEXT(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXContextID) - parent: OpenTK.Graphics.Glx.Glx.EXT - langs: - - csharp - - vb - name: ImportContextEXT(ref Display, GLXContextID) - nameWithType: Glx.EXT.ImportContextEXT(ref Display, GLXContextID) - fullName: OpenTK.Graphics.Glx.Glx.EXT.ImportContextEXT(ref OpenTK.Graphics.Glx.Display, OpenTK.Graphics.Glx.GLXContextID) - type: Method - source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: ImportContextEXT - path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 424 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_EXT_import_context] - - [entry point: glXImportContextEXT] - -
- example: [] - syntax: - content: public static GLXContext ImportContextEXT(ref Display dpy, GLXContextID contextID) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.Display - - id: contextID - type: OpenTK.Graphics.Glx.GLXContextID - return: - type: OpenTK.Graphics.Glx.GLXContext - content.vb: Public Shared Function ImportContextEXT(dpy As Display, contextID As GLXContextID) As GLXContext - overload: OpenTK.Graphics.Glx.Glx.EXT.ImportContextEXT* - nameWithType.vb: Glx.EXT.ImportContextEXT(Display, GLXContextID) - fullName.vb: OpenTK.Graphics.Glx.Glx.EXT.ImportContextEXT(OpenTK.Graphics.Glx.Display, OpenTK.Graphics.Glx.GLXContextID) - name.vb: ImportContextEXT(Display, GLXContextID) -- uid: OpenTK.Graphics.Glx.Glx.EXT.QueryContextInfoEXT(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXContext,System.Int32,System.Int32@) - commentId: M:OpenTK.Graphics.Glx.Glx.EXT.QueryContextInfoEXT(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXContext,System.Int32,System.Int32@) - id: QueryContextInfoEXT(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXContext,System.Int32,System.Int32@) - parent: OpenTK.Graphics.Glx.Glx.EXT - langs: - - csharp - - vb - name: QueryContextInfoEXT(ref Display, GLXContext, int, ref int) - nameWithType: Glx.EXT.QueryContextInfoEXT(ref Display, GLXContext, int, ref int) - fullName: OpenTK.Graphics.Glx.Glx.EXT.QueryContextInfoEXT(ref OpenTK.Graphics.Glx.Display, OpenTK.Graphics.Glx.GLXContext, int, ref int) + name: QueryContextInfoEXT(DisplayPtr, GLXContext, int, ref int) + nameWithType: Glx.EXT.QueryContextInfoEXT(DisplayPtr, GLXContext, int, ref int) + fullName: OpenTK.Graphics.Glx.Glx.EXT.QueryContextInfoEXT(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXContext, int, ref int) type: Method source: remote: @@ -488,7 +400,7 @@ items: repo: https://github.com/opentk/opentk.git id: QueryContextInfoEXT path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 434 + startLine: 255 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -500,10 +412,10 @@ items:
example: [] syntax: - content: public static int QueryContextInfoEXT(ref Display dpy, GLXContext context, int attribute, ref int value) + content: public static int QueryContextInfoEXT(DisplayPtr dpy, GLXContext context, int attribute, ref int value) parameters: - id: dpy - type: OpenTK.Graphics.Glx.Display + type: OpenTK.Graphics.Glx.DisplayPtr - id: context type: OpenTK.Graphics.Glx.GLXContext - id: attribute @@ -512,97 +424,11 @@ items: type: System.Int32 return: type: System.Int32 - content.vb: Public Shared Function QueryContextInfoEXT(dpy As Display, context As GLXContext, attribute As Integer, value As Integer) As Integer + content.vb: Public Shared Function QueryContextInfoEXT(dpy As DisplayPtr, context As GLXContext, attribute As Integer, value As Integer) As Integer overload: OpenTK.Graphics.Glx.Glx.EXT.QueryContextInfoEXT* - nameWithType.vb: Glx.EXT.QueryContextInfoEXT(Display, GLXContext, Integer, Integer) - fullName.vb: OpenTK.Graphics.Glx.Glx.EXT.QueryContextInfoEXT(OpenTK.Graphics.Glx.Display, OpenTK.Graphics.Glx.GLXContext, Integer, Integer) - name.vb: QueryContextInfoEXT(Display, GLXContext, Integer, Integer) -- uid: OpenTK.Graphics.Glx.Glx.EXT.ReleaseTexImageEXT(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXDrawable,System.Int32) - commentId: M:OpenTK.Graphics.Glx.Glx.EXT.ReleaseTexImageEXT(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXDrawable,System.Int32) - id: ReleaseTexImageEXT(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXDrawable,System.Int32) - parent: OpenTK.Graphics.Glx.Glx.EXT - langs: - - csharp - - vb - name: ReleaseTexImageEXT(ref Display, GLXDrawable, int) - nameWithType: Glx.EXT.ReleaseTexImageEXT(ref Display, GLXDrawable, int) - fullName: OpenTK.Graphics.Glx.Glx.EXT.ReleaseTexImageEXT(ref OpenTK.Graphics.Glx.Display, OpenTK.Graphics.Glx.GLXDrawable, int) - type: Method - source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: ReleaseTexImageEXT - path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 445 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_EXT_texture_from_pixmap] - - [entry point: glXReleaseTexImageEXT] - -
- example: [] - syntax: - content: public static void ReleaseTexImageEXT(ref Display dpy, GLXDrawable drawable, int buffer) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.Display - - id: drawable - type: OpenTK.Graphics.Glx.GLXDrawable - - id: buffer - type: System.Int32 - content.vb: Public Shared Sub ReleaseTexImageEXT(dpy As Display, drawable As GLXDrawable, buffer As Integer) - overload: OpenTK.Graphics.Glx.Glx.EXT.ReleaseTexImageEXT* - nameWithType.vb: Glx.EXT.ReleaseTexImageEXT(Display, GLXDrawable, Integer) - fullName.vb: OpenTK.Graphics.Glx.Glx.EXT.ReleaseTexImageEXT(OpenTK.Graphics.Glx.Display, OpenTK.Graphics.Glx.GLXDrawable, Integer) - name.vb: ReleaseTexImageEXT(Display, GLXDrawable, Integer) -- uid: OpenTK.Graphics.Glx.Glx.EXT.SwapIntervalEXT(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXDrawable,System.Int32) - commentId: M:OpenTK.Graphics.Glx.Glx.EXT.SwapIntervalEXT(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXDrawable,System.Int32) - id: SwapIntervalEXT(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXDrawable,System.Int32) - parent: OpenTK.Graphics.Glx.Glx.EXT - langs: - - csharp - - vb - name: SwapIntervalEXT(ref Display, GLXDrawable, int) - nameWithType: Glx.EXT.SwapIntervalEXT(ref Display, GLXDrawable, int) - fullName: OpenTK.Graphics.Glx.Glx.EXT.SwapIntervalEXT(ref OpenTK.Graphics.Glx.Display, OpenTK.Graphics.Glx.GLXDrawable, int) - type: Method - source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: SwapIntervalEXT - path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 453 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_EXT_swap_control] - - [entry point: glXSwapIntervalEXT] - -
- example: [] - syntax: - content: public static void SwapIntervalEXT(ref Display dpy, GLXDrawable drawable, int interval) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.Display - - id: drawable - type: OpenTK.Graphics.Glx.GLXDrawable - - id: interval - type: System.Int32 - content.vb: Public Shared Sub SwapIntervalEXT(dpy As Display, drawable As GLXDrawable, interval As Integer) - overload: OpenTK.Graphics.Glx.Glx.EXT.SwapIntervalEXT* - nameWithType.vb: Glx.EXT.SwapIntervalEXT(Display, GLXDrawable, Integer) - fullName.vb: OpenTK.Graphics.Glx.Glx.EXT.SwapIntervalEXT(OpenTK.Graphics.Glx.Display, OpenTK.Graphics.Glx.GLXDrawable, Integer) - name.vb: SwapIntervalEXT(Display, GLXDrawable, Integer) + nameWithType.vb: Glx.EXT.QueryContextInfoEXT(DisplayPtr, GLXContext, Integer, Integer) + fullName.vb: OpenTK.Graphics.Glx.Glx.EXT.QueryContextInfoEXT(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXContext, Integer, Integer) + name.vb: QueryContextInfoEXT(DisplayPtr, GLXContext, Integer, Integer) references: - uid: OpenTK.Graphics.Glx commentId: N:OpenTK.Graphics.Glx @@ -873,26 +699,17 @@ references: fullName: System - uid: OpenTK.Graphics.Glx.Glx.EXT.BindTexImageEXT* commentId: Overload:OpenTK.Graphics.Glx.Glx.EXT.BindTexImageEXT - href: OpenTK.Graphics.Glx.Glx.EXT.html#OpenTK_Graphics_Glx_Glx_EXT_BindTexImageEXT_OpenTK_Graphics_Glx_Display__OpenTK_Graphics_Glx_GLXDrawable_System_Int32_System_Int32__ + href: OpenTK.Graphics.Glx.Glx.EXT.html#OpenTK_Graphics_Glx_Glx_EXT_BindTexImageEXT_OpenTK_Graphics_Glx_DisplayPtr_OpenTK_Graphics_Glx_GLXDrawable_System_Int32_System_Int32__ name: BindTexImageEXT nameWithType: Glx.EXT.BindTexImageEXT fullName: OpenTK.Graphics.Glx.Glx.EXT.BindTexImageEXT -- uid: OpenTK.Graphics.Glx.Display* - isExternal: true - href: OpenTK.Graphics.Glx.Display.html - name: Display* - nameWithType: Display* - fullName: OpenTK.Graphics.Glx.Display* - spec.csharp: - - uid: OpenTK.Graphics.Glx.Display - name: Display - href: OpenTK.Graphics.Glx.Display.html - - name: '*' - spec.vb: - - uid: OpenTK.Graphics.Glx.Display - name: Display - href: OpenTK.Graphics.Glx.Display.html - - name: '*' +- uid: OpenTK.Graphics.Glx.DisplayPtr + commentId: T:OpenTK.Graphics.Glx.DisplayPtr + parent: OpenTK.Graphics.Glx + href: OpenTK.Graphics.Glx.DisplayPtr.html + name: DisplayPtr + nameWithType: DisplayPtr + fullName: OpenTK.Graphics.Glx.DisplayPtr - uid: OpenTK.Graphics.Glx.GLXDrawable commentId: T:OpenTK.Graphics.Glx.GLXDrawable parent: OpenTK.Graphics.Glx @@ -934,7 +751,7 @@ references: - name: '*' - uid: OpenTK.Graphics.Glx.Glx.EXT.FreeContextEXT* commentId: Overload:OpenTK.Graphics.Glx.Glx.EXT.FreeContextEXT - href: OpenTK.Graphics.Glx.Glx.EXT.html#OpenTK_Graphics_Glx_Glx_EXT_FreeContextEXT_OpenTK_Graphics_Glx_Display__OpenTK_Graphics_Glx_GLXContext_ + href: OpenTK.Graphics.Glx.Glx.EXT.html#OpenTK_Graphics_Glx_Glx_EXT_FreeContextEXT_OpenTK_Graphics_Glx_DisplayPtr_OpenTK_Graphics_Glx_GLXContext_ name: FreeContextEXT nameWithType: Glx.EXT.FreeContextEXT fullName: OpenTK.Graphics.Glx.Glx.EXT.FreeContextEXT @@ -966,32 +783,25 @@ references: fullName: OpenTK.Graphics.Glx.Glx.EXT.GetCurrentDisplayEXT - uid: OpenTK.Graphics.Glx.Glx.EXT.ImportContextEXT* commentId: Overload:OpenTK.Graphics.Glx.Glx.EXT.ImportContextEXT - href: OpenTK.Graphics.Glx.Glx.EXT.html#OpenTK_Graphics_Glx_Glx_EXT_ImportContextEXT_OpenTK_Graphics_Glx_Display__OpenTK_Graphics_Glx_GLXContextID_ + href: OpenTK.Graphics.Glx.Glx.EXT.html#OpenTK_Graphics_Glx_Glx_EXT_ImportContextEXT_OpenTK_Graphics_Glx_DisplayPtr_OpenTK_Graphics_Glx_GLXContextID_ name: ImportContextEXT nameWithType: Glx.EXT.ImportContextEXT fullName: OpenTK.Graphics.Glx.Glx.EXT.ImportContextEXT - uid: OpenTK.Graphics.Glx.Glx.EXT.QueryContextInfoEXT* commentId: Overload:OpenTK.Graphics.Glx.Glx.EXT.QueryContextInfoEXT - href: OpenTK.Graphics.Glx.Glx.EXT.html#OpenTK_Graphics_Glx_Glx_EXT_QueryContextInfoEXT_OpenTK_Graphics_Glx_Display__OpenTK_Graphics_Glx_GLXContext_System_Int32_System_Int32__ + href: OpenTK.Graphics.Glx.Glx.EXT.html#OpenTK_Graphics_Glx_Glx_EXT_QueryContextInfoEXT_OpenTK_Graphics_Glx_DisplayPtr_OpenTK_Graphics_Glx_GLXContext_System_Int32_System_Int32__ name: QueryContextInfoEXT nameWithType: Glx.EXT.QueryContextInfoEXT fullName: OpenTK.Graphics.Glx.Glx.EXT.QueryContextInfoEXT - uid: OpenTK.Graphics.Glx.Glx.EXT.ReleaseTexImageEXT* commentId: Overload:OpenTK.Graphics.Glx.Glx.EXT.ReleaseTexImageEXT - href: OpenTK.Graphics.Glx.Glx.EXT.html#OpenTK_Graphics_Glx_Glx_EXT_ReleaseTexImageEXT_OpenTK_Graphics_Glx_Display__OpenTK_Graphics_Glx_GLXDrawable_System_Int32_ + href: OpenTK.Graphics.Glx.Glx.EXT.html#OpenTK_Graphics_Glx_Glx_EXT_ReleaseTexImageEXT_OpenTK_Graphics_Glx_DisplayPtr_OpenTK_Graphics_Glx_GLXDrawable_System_Int32_ name: ReleaseTexImageEXT nameWithType: Glx.EXT.ReleaseTexImageEXT fullName: OpenTK.Graphics.Glx.Glx.EXT.ReleaseTexImageEXT - uid: OpenTK.Graphics.Glx.Glx.EXT.SwapIntervalEXT* commentId: Overload:OpenTK.Graphics.Glx.Glx.EXT.SwapIntervalEXT - href: OpenTK.Graphics.Glx.Glx.EXT.html#OpenTK_Graphics_Glx_Glx_EXT_SwapIntervalEXT_OpenTK_Graphics_Glx_Display__OpenTK_Graphics_Glx_GLXDrawable_System_Int32_ + href: OpenTK.Graphics.Glx.Glx.EXT.html#OpenTK_Graphics_Glx_Glx_EXT_SwapIntervalEXT_OpenTK_Graphics_Glx_DisplayPtr_OpenTK_Graphics_Glx_GLXDrawable_System_Int32_ name: SwapIntervalEXT nameWithType: Glx.EXT.SwapIntervalEXT fullName: OpenTK.Graphics.Glx.Glx.EXT.SwapIntervalEXT -- uid: OpenTK.Graphics.Glx.Display - commentId: T:OpenTK.Graphics.Glx.Display - parent: OpenTK.Graphics.Glx - href: OpenTK.Graphics.Glx.Display.html - name: Display - nameWithType: Display - fullName: OpenTK.Graphics.Glx.Display diff --git a/api/OpenTK.Graphics.Glx.Glx.MESA.yml b/api/OpenTK.Graphics.Glx.Glx.MESA.yml index b8d48a73..b93e05af 100644 --- a/api/OpenTK.Graphics.Glx.Glx.MESA.yml +++ b/api/OpenTK.Graphics.Glx.Glx.MESA.yml @@ -5,10 +5,8 @@ items: id: Glx.MESA parent: OpenTK.Graphics.Glx children: - - OpenTK.Graphics.Glx.Glx.MESA.CopySubBufferMESA(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXDrawable,System.Int32,System.Int32,System.Int32,System.Int32) - - OpenTK.Graphics.Glx.Glx.MESA.CopySubBufferMESA(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXDrawable,System.Int32,System.Int32,System.Int32,System.Int32) - - OpenTK.Graphics.Glx.Glx.MESA.CreateGLXPixmapMESA(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.XVisualInfo*,OpenTK.Graphics.Glx.Pixmap,OpenTK.Graphics.Glx.Colormap) - - OpenTK.Graphics.Glx.Glx.MESA.CreateGLXPixmapMESA(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.XVisualInfo@,OpenTK.Graphics.Glx.Pixmap,OpenTK.Graphics.Glx.Colormap) + - OpenTK.Graphics.Glx.Glx.MESA.CopySubBufferMESA(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32,System.Int32,System.Int32,System.Int32) + - OpenTK.Graphics.Glx.Glx.MESA.CreateGLXPixmapMESA(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.XVisualInfoPtr,OpenTK.Graphics.Glx.Pixmap,OpenTK.Graphics.Glx.Colormap) - OpenTK.Graphics.Glx.Glx.MESA.GetAGPOffsetMESA(System.IntPtr) - OpenTK.Graphics.Glx.Glx.MESA.GetAGPOffsetMESA(System.Void*) - OpenTK.Graphics.Glx.Glx.MESA.GetAGPOffsetMESA``1(``0@) @@ -17,12 +15,11 @@ items: - OpenTK.Graphics.Glx.Glx.MESA.QueryCurrentRendererIntegerMESA(System.Int32,System.UInt32@) - OpenTK.Graphics.Glx.Glx.MESA.QueryCurrentRendererStringMESA(System.Int32) - OpenTK.Graphics.Glx.Glx.MESA.QueryCurrentRendererStringMESA_(System.Int32) - - OpenTK.Graphics.Glx.Glx.MESA.QueryRendererIntegerMESA(OpenTK.Graphics.Glx.Display*,System.Int32,System.Int32,System.Int32,System.UInt32*) - - OpenTK.Graphics.Glx.Glx.MESA.QueryRendererIntegerMESA(OpenTK.Graphics.Glx.Display@,System.Int32,System.Int32,System.Int32,System.UInt32@) - - OpenTK.Graphics.Glx.Glx.MESA.QueryRendererStringMESA(OpenTK.Graphics.Glx.Display*,System.Int32,System.Int32,System.Int32) - - OpenTK.Graphics.Glx.Glx.MESA.QueryRendererStringMESA(OpenTK.Graphics.Glx.Display@,System.Int32,System.Int32,System.Int32) - - OpenTK.Graphics.Glx.Glx.MESA.ReleaseBuffersMESA(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXDrawable) - - OpenTK.Graphics.Glx.Glx.MESA.ReleaseBuffersMESA(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXDrawable) + - OpenTK.Graphics.Glx.Glx.MESA.QueryRendererIntegerMESA(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.UInt32*) + - OpenTK.Graphics.Glx.Glx.MESA.QueryRendererIntegerMESA(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.UInt32@) + - OpenTK.Graphics.Glx.Glx.MESA.QueryRendererStringMESA(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32) + - OpenTK.Graphics.Glx.Glx.MESA.QueryRendererStringMESA_(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32) + - OpenTK.Graphics.Glx.Glx.MESA.ReleaseBuffersMESA(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable) - OpenTK.Graphics.Glx.Glx.MESA.Set3DfxModeMESA(System.Int32) - OpenTK.Graphics.Glx.Glx.MESA.SwapIntervalMESA(System.UInt32) langs: @@ -39,7 +36,7 @@ items: repo: https://github.com/opentk/opentk.git id: MESA path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 461 + startLine: 265 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -58,16 +55,16 @@ items: - System.Object.MemberwiseClone - System.Object.ReferenceEquals(System.Object,System.Object) - System.Object.ToString -- uid: OpenTK.Graphics.Glx.Glx.MESA.CopySubBufferMESA(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXDrawable,System.Int32,System.Int32,System.Int32,System.Int32) - commentId: M:OpenTK.Graphics.Glx.Glx.MESA.CopySubBufferMESA(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXDrawable,System.Int32,System.Int32,System.Int32,System.Int32) - id: CopySubBufferMESA(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXDrawable,System.Int32,System.Int32,System.Int32,System.Int32) +- uid: OpenTK.Graphics.Glx.Glx.MESA.CopySubBufferMESA(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32,System.Int32,System.Int32,System.Int32) + commentId: M:OpenTK.Graphics.Glx.Glx.MESA.CopySubBufferMESA(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32,System.Int32,System.Int32,System.Int32) + id: CopySubBufferMESA(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32,System.Int32,System.Int32,System.Int32) parent: OpenTK.Graphics.Glx.Glx.MESA langs: - csharp - vb - name: CopySubBufferMESA(Display*, GLXDrawable, int, int, int, int) - nameWithType: Glx.MESA.CopySubBufferMESA(Display*, GLXDrawable, int, int, int, int) - fullName: OpenTK.Graphics.Glx.Glx.MESA.CopySubBufferMESA(OpenTK.Graphics.Glx.Display*, OpenTK.Graphics.Glx.GLXDrawable, int, int, int, int) + name: CopySubBufferMESA(DisplayPtr, GLXDrawable, int, int, int, int) + nameWithType: Glx.MESA.CopySubBufferMESA(DisplayPtr, GLXDrawable, int, int, int, int) + fullName: OpenTK.Graphics.Glx.Glx.MESA.CopySubBufferMESA(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, int, int, int, int) type: Method source: remote: @@ -83,10 +80,10 @@ items: summary: '[requires: GLX_MESA_copy_sub_buffer] [entry point: glXCopySubBufferMESA]
' example: [] syntax: - content: public static void CopySubBufferMESA(Display* dpy, GLXDrawable drawable, int x, int y, int width, int height) + content: public static void CopySubBufferMESA(DisplayPtr dpy, GLXDrawable drawable, int x, int y, int width, int height) parameters: - id: dpy - type: OpenTK.Graphics.Glx.Display* + type: OpenTK.Graphics.Glx.DisplayPtr - id: drawable type: OpenTK.Graphics.Glx.GLXDrawable - id: x @@ -97,21 +94,21 @@ items: type: System.Int32 - id: height type: System.Int32 - content.vb: Public Shared Sub CopySubBufferMESA(dpy As Display*, drawable As GLXDrawable, x As Integer, y As Integer, width As Integer, height As Integer) + content.vb: Public Shared Sub CopySubBufferMESA(dpy As DisplayPtr, drawable As GLXDrawable, x As Integer, y As Integer, width As Integer, height As Integer) overload: OpenTK.Graphics.Glx.Glx.MESA.CopySubBufferMESA* - nameWithType.vb: Glx.MESA.CopySubBufferMESA(Display*, GLXDrawable, Integer, Integer, Integer, Integer) - fullName.vb: OpenTK.Graphics.Glx.Glx.MESA.CopySubBufferMESA(OpenTK.Graphics.Glx.Display*, OpenTK.Graphics.Glx.GLXDrawable, Integer, Integer, Integer, Integer) - name.vb: CopySubBufferMESA(Display*, GLXDrawable, Integer, Integer, Integer, Integer) -- uid: OpenTK.Graphics.Glx.Glx.MESA.CreateGLXPixmapMESA(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.XVisualInfo*,OpenTK.Graphics.Glx.Pixmap,OpenTK.Graphics.Glx.Colormap) - commentId: M:OpenTK.Graphics.Glx.Glx.MESA.CreateGLXPixmapMESA(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.XVisualInfo*,OpenTK.Graphics.Glx.Pixmap,OpenTK.Graphics.Glx.Colormap) - id: CreateGLXPixmapMESA(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.XVisualInfo*,OpenTK.Graphics.Glx.Pixmap,OpenTK.Graphics.Glx.Colormap) + nameWithType.vb: Glx.MESA.CopySubBufferMESA(DisplayPtr, GLXDrawable, Integer, Integer, Integer, Integer) + fullName.vb: OpenTK.Graphics.Glx.Glx.MESA.CopySubBufferMESA(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, Integer, Integer, Integer, Integer) + name.vb: CopySubBufferMESA(DisplayPtr, GLXDrawable, Integer, Integer, Integer, Integer) +- uid: OpenTK.Graphics.Glx.Glx.MESA.CreateGLXPixmapMESA(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.XVisualInfoPtr,OpenTK.Graphics.Glx.Pixmap,OpenTK.Graphics.Glx.Colormap) + commentId: M:OpenTK.Graphics.Glx.Glx.MESA.CreateGLXPixmapMESA(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.XVisualInfoPtr,OpenTK.Graphics.Glx.Pixmap,OpenTK.Graphics.Glx.Colormap) + id: CreateGLXPixmapMESA(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.XVisualInfoPtr,OpenTK.Graphics.Glx.Pixmap,OpenTK.Graphics.Glx.Colormap) parent: OpenTK.Graphics.Glx.Glx.MESA langs: - csharp - vb - name: CreateGLXPixmapMESA(Display*, XVisualInfo*, Pixmap, Colormap) - nameWithType: Glx.MESA.CreateGLXPixmapMESA(Display*, XVisualInfo*, Pixmap, Colormap) - fullName: OpenTK.Graphics.Glx.Glx.MESA.CreateGLXPixmapMESA(OpenTK.Graphics.Glx.Display*, OpenTK.Graphics.Glx.XVisualInfo*, OpenTK.Graphics.Glx.Pixmap, OpenTK.Graphics.Glx.Colormap) + name: CreateGLXPixmapMESA(DisplayPtr, XVisualInfoPtr, Pixmap, Colormap) + nameWithType: Glx.MESA.CreateGLXPixmapMESA(DisplayPtr, XVisualInfoPtr, Pixmap, Colormap) + fullName: OpenTK.Graphics.Glx.Glx.MESA.CreateGLXPixmapMESA(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.XVisualInfoPtr, OpenTK.Graphics.Glx.Pixmap, OpenTK.Graphics.Glx.Colormap) type: Method source: remote: @@ -127,19 +124,19 @@ items: summary: '[requires: GLX_MESA_pixmap_colormap] [entry point: glXCreateGLXPixmapMESA]
' example: [] syntax: - content: public static GLXPixmap CreateGLXPixmapMESA(Display* dpy, XVisualInfo* visual, Pixmap pixmap, Colormap cmap) + content: public static GLXPixmap CreateGLXPixmapMESA(DisplayPtr dpy, XVisualInfoPtr visual, Pixmap pixmap, Colormap cmap) parameters: - id: dpy - type: OpenTK.Graphics.Glx.Display* + type: OpenTK.Graphics.Glx.DisplayPtr - id: visual - type: OpenTK.Graphics.Glx.XVisualInfo* + type: OpenTK.Graphics.Glx.XVisualInfoPtr - id: pixmap type: OpenTK.Graphics.Glx.Pixmap - id: cmap type: OpenTK.Graphics.Glx.Colormap return: type: OpenTK.Graphics.Glx.GLXPixmap - content.vb: Public Shared Function CreateGLXPixmapMESA(dpy As Display*, visual As XVisualInfo*, pixmap As Pixmap, cmap As Colormap) As GLXPixmap + content.vb: Public Shared Function CreateGLXPixmapMESA(dpy As DisplayPtr, visual As XVisualInfoPtr, pixmap As Pixmap, cmap As Colormap) As GLXPixmap overload: OpenTK.Graphics.Glx.Glx.MESA.CreateGLXPixmapMESA* - uid: OpenTK.Graphics.Glx.Glx.MESA.GetAGPOffsetMESA(System.Void*) commentId: M:OpenTK.Graphics.Glx.Glx.MESA.GetAGPOffsetMESA(System.Void*) @@ -281,16 +278,16 @@ items: nameWithType.vb: Glx.MESA.QueryCurrentRendererStringMESA_(Integer) fullName.vb: OpenTK.Graphics.Glx.Glx.MESA.QueryCurrentRendererStringMESA_(Integer) name.vb: QueryCurrentRendererStringMESA_(Integer) -- uid: OpenTK.Graphics.Glx.Glx.MESA.QueryRendererIntegerMESA(OpenTK.Graphics.Glx.Display*,System.Int32,System.Int32,System.Int32,System.UInt32*) - commentId: M:OpenTK.Graphics.Glx.Glx.MESA.QueryRendererIntegerMESA(OpenTK.Graphics.Glx.Display*,System.Int32,System.Int32,System.Int32,System.UInt32*) - id: QueryRendererIntegerMESA(OpenTK.Graphics.Glx.Display*,System.Int32,System.Int32,System.Int32,System.UInt32*) +- uid: OpenTK.Graphics.Glx.Glx.MESA.QueryRendererIntegerMESA(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.UInt32*) + commentId: M:OpenTK.Graphics.Glx.Glx.MESA.QueryRendererIntegerMESA(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.UInt32*) + id: QueryRendererIntegerMESA(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.UInt32*) parent: OpenTK.Graphics.Glx.Glx.MESA langs: - csharp - vb - name: QueryRendererIntegerMESA(Display*, int, int, int, uint*) - nameWithType: Glx.MESA.QueryRendererIntegerMESA(Display*, int, int, int, uint*) - fullName: OpenTK.Graphics.Glx.Glx.MESA.QueryRendererIntegerMESA(OpenTK.Graphics.Glx.Display*, int, int, int, uint*) + name: QueryRendererIntegerMESA(DisplayPtr, int, int, int, uint*) + nameWithType: Glx.MESA.QueryRendererIntegerMESA(DisplayPtr, int, int, int, uint*) + fullName: OpenTK.Graphics.Glx.Glx.MESA.QueryRendererIntegerMESA(OpenTK.Graphics.Glx.DisplayPtr, int, int, int, uint*) type: Method source: remote: @@ -306,10 +303,10 @@ items: summary: '[requires: GLX_MESA_query_renderer] [entry point: glXQueryRendererIntegerMESA]
' example: [] syntax: - content: public static bool QueryRendererIntegerMESA(Display* dpy, int screen, int renderer, int attribute, uint* value) + content: public static bool QueryRendererIntegerMESA(DisplayPtr dpy, int screen, int renderer, int attribute, uint* value) parameters: - id: dpy - type: OpenTK.Graphics.Glx.Display* + type: OpenTK.Graphics.Glx.DisplayPtr - id: screen type: System.Int32 - id: renderer @@ -320,28 +317,28 @@ items: type: System.UInt32* return: type: System.Boolean - content.vb: Public Shared Function QueryRendererIntegerMESA(dpy As Display*, screen As Integer, renderer As Integer, attribute As Integer, value As UInteger*) As Boolean + content.vb: Public Shared Function QueryRendererIntegerMESA(dpy As DisplayPtr, screen As Integer, renderer As Integer, attribute As Integer, value As UInteger*) As Boolean overload: OpenTK.Graphics.Glx.Glx.MESA.QueryRendererIntegerMESA* - nameWithType.vb: Glx.MESA.QueryRendererIntegerMESA(Display*, Integer, Integer, Integer, UInteger*) - fullName.vb: OpenTK.Graphics.Glx.Glx.MESA.QueryRendererIntegerMESA(OpenTK.Graphics.Glx.Display*, Integer, Integer, Integer, UInteger*) - name.vb: QueryRendererIntegerMESA(Display*, Integer, Integer, Integer, UInteger*) -- uid: OpenTK.Graphics.Glx.Glx.MESA.QueryRendererStringMESA(OpenTK.Graphics.Glx.Display*,System.Int32,System.Int32,System.Int32) - commentId: M:OpenTK.Graphics.Glx.Glx.MESA.QueryRendererStringMESA(OpenTK.Graphics.Glx.Display*,System.Int32,System.Int32,System.Int32) - id: QueryRendererStringMESA(OpenTK.Graphics.Glx.Display*,System.Int32,System.Int32,System.Int32) + nameWithType.vb: Glx.MESA.QueryRendererIntegerMESA(DisplayPtr, Integer, Integer, Integer, UInteger*) + fullName.vb: OpenTK.Graphics.Glx.Glx.MESA.QueryRendererIntegerMESA(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer, Integer, UInteger*) + name.vb: QueryRendererIntegerMESA(DisplayPtr, Integer, Integer, Integer, UInteger*) +- uid: OpenTK.Graphics.Glx.Glx.MESA.QueryRendererStringMESA_(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32) + commentId: M:OpenTK.Graphics.Glx.Glx.MESA.QueryRendererStringMESA_(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32) + id: QueryRendererStringMESA_(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32) parent: OpenTK.Graphics.Glx.Glx.MESA langs: - csharp - vb - name: QueryRendererStringMESA(Display*, int, int, int) - nameWithType: Glx.MESA.QueryRendererStringMESA(Display*, int, int, int) - fullName: OpenTK.Graphics.Glx.Glx.MESA.QueryRendererStringMESA(OpenTK.Graphics.Glx.Display*, int, int, int) + name: QueryRendererStringMESA_(DisplayPtr, int, int, int) + nameWithType: Glx.MESA.QueryRendererStringMESA_(DisplayPtr, int, int, int) + fullName: OpenTK.Graphics.Glx.Glx.MESA.QueryRendererStringMESA_(OpenTK.Graphics.Glx.DisplayPtr, int, int, int) type: Method source: remote: path: src/OpenTK.Graphics/Glx/GLX.Native.cs branch: pal2-work repo: https://github.com/opentk/opentk.git - id: QueryRendererStringMESA + id: QueryRendererStringMESA_ path: opentk/src/OpenTK.Graphics/Glx/GLX.Native.cs startLine: 222 assemblies: @@ -350,10 +347,10 @@ items: summary: '[requires: GLX_MESA_query_renderer] [entry point: glXQueryRendererStringMESA]
' example: [] syntax: - content: public static byte* QueryRendererStringMESA(Display* dpy, int screen, int renderer, int attribute) + content: public static byte* QueryRendererStringMESA_(DisplayPtr dpy, int screen, int renderer, int attribute) parameters: - id: dpy - type: OpenTK.Graphics.Glx.Display* + type: OpenTK.Graphics.Glx.DisplayPtr - id: screen type: System.Int32 - id: renderer @@ -362,21 +359,21 @@ items: type: System.Int32 return: type: System.Byte* - content.vb: Public Shared Function QueryRendererStringMESA(dpy As Display*, screen As Integer, renderer As Integer, attribute As Integer) As Byte* - overload: OpenTK.Graphics.Glx.Glx.MESA.QueryRendererStringMESA* - nameWithType.vb: Glx.MESA.QueryRendererStringMESA(Display*, Integer, Integer, Integer) - fullName.vb: OpenTK.Graphics.Glx.Glx.MESA.QueryRendererStringMESA(OpenTK.Graphics.Glx.Display*, Integer, Integer, Integer) - name.vb: QueryRendererStringMESA(Display*, Integer, Integer, Integer) -- uid: OpenTK.Graphics.Glx.Glx.MESA.ReleaseBuffersMESA(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXDrawable) - commentId: M:OpenTK.Graphics.Glx.Glx.MESA.ReleaseBuffersMESA(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXDrawable) - id: ReleaseBuffersMESA(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXDrawable) + content.vb: Public Shared Function QueryRendererStringMESA_(dpy As DisplayPtr, screen As Integer, renderer As Integer, attribute As Integer) As Byte* + overload: OpenTK.Graphics.Glx.Glx.MESA.QueryRendererStringMESA_* + nameWithType.vb: Glx.MESA.QueryRendererStringMESA_(DisplayPtr, Integer, Integer, Integer) + fullName.vb: OpenTK.Graphics.Glx.Glx.MESA.QueryRendererStringMESA_(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer, Integer) + name.vb: QueryRendererStringMESA_(DisplayPtr, Integer, Integer, Integer) +- uid: OpenTK.Graphics.Glx.Glx.MESA.ReleaseBuffersMESA(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable) + commentId: M:OpenTK.Graphics.Glx.Glx.MESA.ReleaseBuffersMESA(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable) + id: ReleaseBuffersMESA(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable) parent: OpenTK.Graphics.Glx.Glx.MESA langs: - csharp - vb - name: ReleaseBuffersMESA(Display*, GLXDrawable) - nameWithType: Glx.MESA.ReleaseBuffersMESA(Display*, GLXDrawable) - fullName: OpenTK.Graphics.Glx.Glx.MESA.ReleaseBuffersMESA(OpenTK.Graphics.Glx.Display*, OpenTK.Graphics.Glx.GLXDrawable) + name: ReleaseBuffersMESA(DisplayPtr, GLXDrawable) + nameWithType: Glx.MESA.ReleaseBuffersMESA(DisplayPtr, GLXDrawable) + fullName: OpenTK.Graphics.Glx.Glx.MESA.ReleaseBuffersMESA(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable) type: Method source: remote: @@ -392,15 +389,15 @@ items: summary: '[requires: GLX_MESA_release_buffers] [entry point: glXReleaseBuffersMESA]
' example: [] syntax: - content: public static bool ReleaseBuffersMESA(Display* dpy, GLXDrawable drawable) + content: public static bool ReleaseBuffersMESA(DisplayPtr dpy, GLXDrawable drawable) parameters: - id: dpy - type: OpenTK.Graphics.Glx.Display* + type: OpenTK.Graphics.Glx.DisplayPtr - id: drawable type: OpenTK.Graphics.Glx.GLXDrawable return: type: System.Boolean - content.vb: Public Shared Function ReleaseBuffersMESA(dpy As Display*, drawable As GLXDrawable) As Boolean + content.vb: Public Shared Function ReleaseBuffersMESA(dpy As DisplayPtr, drawable As GLXDrawable) As Boolean overload: OpenTK.Graphics.Glx.Glx.MESA.ReleaseBuffersMESA* - uid: OpenTK.Graphics.Glx.Glx.MESA.Set3DfxModeMESA(System.Int32) commentId: M:OpenTK.Graphics.Glx.Glx.MESA.Set3DfxModeMESA(System.Int32) @@ -474,102 +471,6 @@ items: nameWithType.vb: Glx.MESA.SwapIntervalMESA(UInteger) fullName.vb: OpenTK.Graphics.Glx.Glx.MESA.SwapIntervalMESA(UInteger) name.vb: SwapIntervalMESA(UInteger) -- uid: OpenTK.Graphics.Glx.Glx.MESA.CopySubBufferMESA(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXDrawable,System.Int32,System.Int32,System.Int32,System.Int32) - commentId: M:OpenTK.Graphics.Glx.Glx.MESA.CopySubBufferMESA(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXDrawable,System.Int32,System.Int32,System.Int32,System.Int32) - id: CopySubBufferMESA(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXDrawable,System.Int32,System.Int32,System.Int32,System.Int32) - parent: OpenTK.Graphics.Glx.Glx.MESA - langs: - - csharp - - vb - name: CopySubBufferMESA(ref Display, GLXDrawable, int, int, int, int) - nameWithType: Glx.MESA.CopySubBufferMESA(ref Display, GLXDrawable, int, int, int, int) - fullName: OpenTK.Graphics.Glx.Glx.MESA.CopySubBufferMESA(ref OpenTK.Graphics.Glx.Display, OpenTK.Graphics.Glx.GLXDrawable, int, int, int, int) - type: Method - source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: CopySubBufferMESA - path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 464 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_MESA_copy_sub_buffer] - - [entry point: glXCopySubBufferMESA] - -
- example: [] - syntax: - content: public static void CopySubBufferMESA(ref Display dpy, GLXDrawable drawable, int x, int y, int width, int height) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.Display - - id: drawable - type: OpenTK.Graphics.Glx.GLXDrawable - - id: x - type: System.Int32 - - id: y - type: System.Int32 - - id: width - type: System.Int32 - - id: height - type: System.Int32 - content.vb: Public Shared Sub CopySubBufferMESA(dpy As Display, drawable As GLXDrawable, x As Integer, y As Integer, width As Integer, height As Integer) - overload: OpenTK.Graphics.Glx.Glx.MESA.CopySubBufferMESA* - nameWithType.vb: Glx.MESA.CopySubBufferMESA(Display, GLXDrawable, Integer, Integer, Integer, Integer) - fullName.vb: OpenTK.Graphics.Glx.Glx.MESA.CopySubBufferMESA(OpenTK.Graphics.Glx.Display, OpenTK.Graphics.Glx.GLXDrawable, Integer, Integer, Integer, Integer) - name.vb: CopySubBufferMESA(Display, GLXDrawable, Integer, Integer, Integer, Integer) -- uid: OpenTK.Graphics.Glx.Glx.MESA.CreateGLXPixmapMESA(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.XVisualInfo@,OpenTK.Graphics.Glx.Pixmap,OpenTK.Graphics.Glx.Colormap) - commentId: M:OpenTK.Graphics.Glx.Glx.MESA.CreateGLXPixmapMESA(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.XVisualInfo@,OpenTK.Graphics.Glx.Pixmap,OpenTK.Graphics.Glx.Colormap) - id: CreateGLXPixmapMESA(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.XVisualInfo@,OpenTK.Graphics.Glx.Pixmap,OpenTK.Graphics.Glx.Colormap) - parent: OpenTK.Graphics.Glx.Glx.MESA - langs: - - csharp - - vb - name: CreateGLXPixmapMESA(ref Display, ref XVisualInfo, Pixmap, Colormap) - nameWithType: Glx.MESA.CreateGLXPixmapMESA(ref Display, ref XVisualInfo, Pixmap, Colormap) - fullName: OpenTK.Graphics.Glx.Glx.MESA.CreateGLXPixmapMESA(ref OpenTK.Graphics.Glx.Display, ref OpenTK.Graphics.Glx.XVisualInfo, OpenTK.Graphics.Glx.Pixmap, OpenTK.Graphics.Glx.Colormap) - type: Method - source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: CreateGLXPixmapMESA - path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 472 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_MESA_pixmap_colormap] - - [entry point: glXCreateGLXPixmapMESA] - -
- example: [] - syntax: - content: public static GLXPixmap CreateGLXPixmapMESA(ref Display dpy, ref XVisualInfo visual, Pixmap pixmap, Colormap cmap) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.Display - - id: visual - type: OpenTK.Graphics.Glx.XVisualInfo - - id: pixmap - type: OpenTK.Graphics.Glx.Pixmap - - id: cmap - type: OpenTK.Graphics.Glx.Colormap - return: - type: OpenTK.Graphics.Glx.GLXPixmap - content.vb: Public Shared Function CreateGLXPixmapMESA(dpy As Display, visual As XVisualInfo, pixmap As Pixmap, cmap As Colormap) As GLXPixmap - overload: OpenTK.Graphics.Glx.Glx.MESA.CreateGLXPixmapMESA* - nameWithType.vb: Glx.MESA.CreateGLXPixmapMESA(Display, XVisualInfo, Pixmap, Colormap) - fullName.vb: OpenTK.Graphics.Glx.Glx.MESA.CreateGLXPixmapMESA(OpenTK.Graphics.Glx.Display, OpenTK.Graphics.Glx.XVisualInfo, OpenTK.Graphics.Glx.Pixmap, OpenTK.Graphics.Glx.Colormap) - name.vb: CreateGLXPixmapMESA(Display, XVisualInfo, Pixmap, Colormap) - uid: OpenTK.Graphics.Glx.Glx.MESA.GetAGPOffsetMESA(System.IntPtr) commentId: M:OpenTK.Graphics.Glx.Glx.MESA.GetAGPOffsetMESA(System.IntPtr) id: GetAGPOffsetMESA(System.IntPtr) @@ -588,7 +489,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetAGPOffsetMESA path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 483 + startLine: 268 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -629,7 +530,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetAGPOffsetMESA path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 491 + startLine: 276 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -672,7 +573,7 @@ items: repo: https://github.com/opentk/opentk.git id: QueryCurrentRendererIntegerMESA path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 502 + startLine: 287 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -715,7 +616,7 @@ items: repo: https://github.com/opentk/opentk.git id: QueryCurrentRendererStringMESA path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 512 + startLine: 297 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -732,16 +633,16 @@ items: nameWithType.vb: Glx.MESA.QueryCurrentRendererStringMESA(Integer) fullName.vb: OpenTK.Graphics.Glx.Glx.MESA.QueryCurrentRendererStringMESA(Integer) name.vb: QueryCurrentRendererStringMESA(Integer) -- uid: OpenTK.Graphics.Glx.Glx.MESA.QueryRendererIntegerMESA(OpenTK.Graphics.Glx.Display@,System.Int32,System.Int32,System.Int32,System.UInt32@) - commentId: M:OpenTK.Graphics.Glx.Glx.MESA.QueryRendererIntegerMESA(OpenTK.Graphics.Glx.Display@,System.Int32,System.Int32,System.Int32,System.UInt32@) - id: QueryRendererIntegerMESA(OpenTK.Graphics.Glx.Display@,System.Int32,System.Int32,System.Int32,System.UInt32@) +- uid: OpenTK.Graphics.Glx.Glx.MESA.QueryRendererIntegerMESA(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.UInt32@) + commentId: M:OpenTK.Graphics.Glx.Glx.MESA.QueryRendererIntegerMESA(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.UInt32@) + id: QueryRendererIntegerMESA(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.UInt32@) parent: OpenTK.Graphics.Glx.Glx.MESA langs: - csharp - vb - name: QueryRendererIntegerMESA(ref Display, int, int, int, ref uint) - nameWithType: Glx.MESA.QueryRendererIntegerMESA(ref Display, int, int, int, ref uint) - fullName: OpenTK.Graphics.Glx.Glx.MESA.QueryRendererIntegerMESA(ref OpenTK.Graphics.Glx.Display, int, int, int, ref uint) + name: QueryRendererIntegerMESA(DisplayPtr, int, int, int, ref uint) + nameWithType: Glx.MESA.QueryRendererIntegerMESA(DisplayPtr, int, int, int, ref uint) + fullName: OpenTK.Graphics.Glx.Glx.MESA.QueryRendererIntegerMESA(OpenTK.Graphics.Glx.DisplayPtr, int, int, int, ref uint) type: Method source: remote: @@ -750,7 +651,7 @@ items: repo: https://github.com/opentk/opentk.git id: QueryRendererIntegerMESA path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 521 + startLine: 306 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -762,10 +663,10 @@ items:
example: [] syntax: - content: public static bool QueryRendererIntegerMESA(ref Display dpy, int screen, int renderer, int attribute, ref uint value) + content: public static bool QueryRendererIntegerMESA(DisplayPtr dpy, int screen, int renderer, int attribute, ref uint value) parameters: - id: dpy - type: OpenTK.Graphics.Glx.Display + type: OpenTK.Graphics.Glx.DisplayPtr - id: screen type: System.Int32 - id: renderer @@ -776,21 +677,21 @@ items: type: System.UInt32 return: type: System.Boolean - content.vb: Public Shared Function QueryRendererIntegerMESA(dpy As Display, screen As Integer, renderer As Integer, attribute As Integer, value As UInteger) As Boolean + content.vb: Public Shared Function QueryRendererIntegerMESA(dpy As DisplayPtr, screen As Integer, renderer As Integer, attribute As Integer, value As UInteger) As Boolean overload: OpenTK.Graphics.Glx.Glx.MESA.QueryRendererIntegerMESA* - nameWithType.vb: Glx.MESA.QueryRendererIntegerMESA(Display, Integer, Integer, Integer, UInteger) - fullName.vb: OpenTK.Graphics.Glx.Glx.MESA.QueryRendererIntegerMESA(OpenTK.Graphics.Glx.Display, Integer, Integer, Integer, UInteger) - name.vb: QueryRendererIntegerMESA(Display, Integer, Integer, Integer, UInteger) -- uid: OpenTK.Graphics.Glx.Glx.MESA.QueryRendererStringMESA(OpenTK.Graphics.Glx.Display@,System.Int32,System.Int32,System.Int32) - commentId: M:OpenTK.Graphics.Glx.Glx.MESA.QueryRendererStringMESA(OpenTK.Graphics.Glx.Display@,System.Int32,System.Int32,System.Int32) - id: QueryRendererStringMESA(OpenTK.Graphics.Glx.Display@,System.Int32,System.Int32,System.Int32) + nameWithType.vb: Glx.MESA.QueryRendererIntegerMESA(DisplayPtr, Integer, Integer, Integer, UInteger) + fullName.vb: OpenTK.Graphics.Glx.Glx.MESA.QueryRendererIntegerMESA(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer, Integer, UInteger) + name.vb: QueryRendererIntegerMESA(DisplayPtr, Integer, Integer, Integer, UInteger) +- uid: OpenTK.Graphics.Glx.Glx.MESA.QueryRendererStringMESA(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32) + commentId: M:OpenTK.Graphics.Glx.Glx.MESA.QueryRendererStringMESA(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32) + id: QueryRendererStringMESA(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32) parent: OpenTK.Graphics.Glx.Glx.MESA langs: - csharp - vb - name: QueryRendererStringMESA(ref Display, int, int, int) - nameWithType: Glx.MESA.QueryRendererStringMESA(ref Display, int, int, int) - fullName: OpenTK.Graphics.Glx.Glx.MESA.QueryRendererStringMESA(ref OpenTK.Graphics.Glx.Display, int, int, int) + name: QueryRendererStringMESA(DisplayPtr, int, int, int) + nameWithType: Glx.MESA.QueryRendererStringMESA(DisplayPtr, int, int, int) + fullName: OpenTK.Graphics.Glx.Glx.MESA.QueryRendererStringMESA(OpenTK.Graphics.Glx.DisplayPtr, int, int, int) type: Method source: remote: @@ -799,22 +700,16 @@ items: repo: https://github.com/opentk/opentk.git id: QueryRendererStringMESA path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 532 + startLine: 316 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_MESA_query_renderer] - - [entry point: glXQueryRendererStringMESA] - -
example: [] syntax: - content: public static string? QueryRendererStringMESA(ref Display dpy, int screen, int renderer, int attribute) + content: public static string? QueryRendererStringMESA(DisplayPtr dpy, int screen, int renderer, int attribute) parameters: - id: dpy - type: OpenTK.Graphics.Glx.Display + type: OpenTK.Graphics.Glx.DisplayPtr - id: screen type: System.Int32 - id: renderer @@ -823,54 +718,11 @@ items: type: System.Int32 return: type: System.String - content.vb: Public Shared Function QueryRendererStringMESA(dpy As Display, screen As Integer, renderer As Integer, attribute As Integer) As String + content.vb: Public Shared Function QueryRendererStringMESA(dpy As DisplayPtr, screen As Integer, renderer As Integer, attribute As Integer) As String overload: OpenTK.Graphics.Glx.Glx.MESA.QueryRendererStringMESA* - nameWithType.vb: Glx.MESA.QueryRendererStringMESA(Display, Integer, Integer, Integer) - fullName.vb: OpenTK.Graphics.Glx.Glx.MESA.QueryRendererStringMESA(OpenTK.Graphics.Glx.Display, Integer, Integer, Integer) - name.vb: QueryRendererStringMESA(Display, Integer, Integer, Integer) -- uid: OpenTK.Graphics.Glx.Glx.MESA.ReleaseBuffersMESA(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXDrawable) - commentId: M:OpenTK.Graphics.Glx.Glx.MESA.ReleaseBuffersMESA(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXDrawable) - id: ReleaseBuffersMESA(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXDrawable) - parent: OpenTK.Graphics.Glx.Glx.MESA - langs: - - csharp - - vb - name: ReleaseBuffersMESA(ref Display, GLXDrawable) - nameWithType: Glx.MESA.ReleaseBuffersMESA(ref Display, GLXDrawable) - fullName: OpenTK.Graphics.Glx.Glx.MESA.ReleaseBuffersMESA(ref OpenTK.Graphics.Glx.Display, OpenTK.Graphics.Glx.GLXDrawable) - type: Method - source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: ReleaseBuffersMESA - path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 544 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_MESA_release_buffers] - - [entry point: glXReleaseBuffersMESA] - -
- example: [] - syntax: - content: public static bool ReleaseBuffersMESA(ref Display dpy, GLXDrawable drawable) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.Display - - id: drawable - type: OpenTK.Graphics.Glx.GLXDrawable - return: - type: System.Boolean - content.vb: Public Shared Function ReleaseBuffersMESA(dpy As Display, drawable As GLXDrawable) As Boolean - overload: OpenTK.Graphics.Glx.Glx.MESA.ReleaseBuffersMESA* - nameWithType.vb: Glx.MESA.ReleaseBuffersMESA(Display, GLXDrawable) - fullName.vb: OpenTK.Graphics.Glx.Glx.MESA.ReleaseBuffersMESA(OpenTK.Graphics.Glx.Display, OpenTK.Graphics.Glx.GLXDrawable) - name.vb: ReleaseBuffersMESA(Display, GLXDrawable) + nameWithType.vb: Glx.MESA.QueryRendererStringMESA(DisplayPtr, Integer, Integer, Integer) + fullName.vb: OpenTK.Graphics.Glx.Glx.MESA.QueryRendererStringMESA(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer, Integer) + name.vb: QueryRendererStringMESA(DisplayPtr, Integer, Integer, Integer) references: - uid: OpenTK.Graphics.Glx commentId: N:OpenTK.Graphics.Glx @@ -1141,26 +993,17 @@ references: fullName: System - uid: OpenTK.Graphics.Glx.Glx.MESA.CopySubBufferMESA* commentId: Overload:OpenTK.Graphics.Glx.Glx.MESA.CopySubBufferMESA - href: OpenTK.Graphics.Glx.Glx.MESA.html#OpenTK_Graphics_Glx_Glx_MESA_CopySubBufferMESA_OpenTK_Graphics_Glx_Display__OpenTK_Graphics_Glx_GLXDrawable_System_Int32_System_Int32_System_Int32_System_Int32_ + href: OpenTK.Graphics.Glx.Glx.MESA.html#OpenTK_Graphics_Glx_Glx_MESA_CopySubBufferMESA_OpenTK_Graphics_Glx_DisplayPtr_OpenTK_Graphics_Glx_GLXDrawable_System_Int32_System_Int32_System_Int32_System_Int32_ name: CopySubBufferMESA nameWithType: Glx.MESA.CopySubBufferMESA fullName: OpenTK.Graphics.Glx.Glx.MESA.CopySubBufferMESA -- uid: OpenTK.Graphics.Glx.Display* - isExternal: true - href: OpenTK.Graphics.Glx.Display.html - name: Display* - nameWithType: Display* - fullName: OpenTK.Graphics.Glx.Display* - spec.csharp: - - uid: OpenTK.Graphics.Glx.Display - name: Display - href: OpenTK.Graphics.Glx.Display.html - - name: '*' - spec.vb: - - uid: OpenTK.Graphics.Glx.Display - name: Display - href: OpenTK.Graphics.Glx.Display.html - - name: '*' +- uid: OpenTK.Graphics.Glx.DisplayPtr + commentId: T:OpenTK.Graphics.Glx.DisplayPtr + parent: OpenTK.Graphics.Glx + href: OpenTK.Graphics.Glx.DisplayPtr.html + name: DisplayPtr + nameWithType: DisplayPtr + fullName: OpenTK.Graphics.Glx.DisplayPtr - uid: OpenTK.Graphics.Glx.GLXDrawable commentId: T:OpenTK.Graphics.Glx.GLXDrawable parent: OpenTK.Graphics.Glx @@ -1181,26 +1024,17 @@ references: name.vb: Integer - uid: OpenTK.Graphics.Glx.Glx.MESA.CreateGLXPixmapMESA* commentId: Overload:OpenTK.Graphics.Glx.Glx.MESA.CreateGLXPixmapMESA - href: OpenTK.Graphics.Glx.Glx.MESA.html#OpenTK_Graphics_Glx_Glx_MESA_CreateGLXPixmapMESA_OpenTK_Graphics_Glx_Display__OpenTK_Graphics_Glx_XVisualInfo__OpenTK_Graphics_Glx_Pixmap_OpenTK_Graphics_Glx_Colormap_ + href: OpenTK.Graphics.Glx.Glx.MESA.html#OpenTK_Graphics_Glx_Glx_MESA_CreateGLXPixmapMESA_OpenTK_Graphics_Glx_DisplayPtr_OpenTK_Graphics_Glx_XVisualInfoPtr_OpenTK_Graphics_Glx_Pixmap_OpenTK_Graphics_Glx_Colormap_ name: CreateGLXPixmapMESA nameWithType: Glx.MESA.CreateGLXPixmapMESA fullName: OpenTK.Graphics.Glx.Glx.MESA.CreateGLXPixmapMESA -- uid: OpenTK.Graphics.Glx.XVisualInfo* - isExternal: true - href: OpenTK.Graphics.Glx.XVisualInfo.html - name: XVisualInfo* - nameWithType: XVisualInfo* - fullName: OpenTK.Graphics.Glx.XVisualInfo* - spec.csharp: - - uid: OpenTK.Graphics.Glx.XVisualInfo - name: XVisualInfo - href: OpenTK.Graphics.Glx.XVisualInfo.html - - name: '*' - spec.vb: - - uid: OpenTK.Graphics.Glx.XVisualInfo - name: XVisualInfo - href: OpenTK.Graphics.Glx.XVisualInfo.html - - name: '*' +- uid: OpenTK.Graphics.Glx.XVisualInfoPtr + commentId: T:OpenTK.Graphics.Glx.XVisualInfoPtr + parent: OpenTK.Graphics.Glx + href: OpenTK.Graphics.Glx.XVisualInfoPtr.html + name: XVisualInfoPtr + nameWithType: XVisualInfoPtr + fullName: OpenTK.Graphics.Glx.XVisualInfoPtr - uid: OpenTK.Graphics.Glx.Pixmap commentId: T:OpenTK.Graphics.Glx.Pixmap parent: OpenTK.Graphics.Glx @@ -1333,19 +1167,19 @@ references: - name: '*' - uid: OpenTK.Graphics.Glx.Glx.MESA.QueryRendererIntegerMESA* commentId: Overload:OpenTK.Graphics.Glx.Glx.MESA.QueryRendererIntegerMESA - href: OpenTK.Graphics.Glx.Glx.MESA.html#OpenTK_Graphics_Glx_Glx_MESA_QueryRendererIntegerMESA_OpenTK_Graphics_Glx_Display__System_Int32_System_Int32_System_Int32_System_UInt32__ + href: OpenTK.Graphics.Glx.Glx.MESA.html#OpenTK_Graphics_Glx_Glx_MESA_QueryRendererIntegerMESA_OpenTK_Graphics_Glx_DisplayPtr_System_Int32_System_Int32_System_Int32_System_UInt32__ name: QueryRendererIntegerMESA nameWithType: Glx.MESA.QueryRendererIntegerMESA fullName: OpenTK.Graphics.Glx.Glx.MESA.QueryRendererIntegerMESA -- uid: OpenTK.Graphics.Glx.Glx.MESA.QueryRendererStringMESA* - commentId: Overload:OpenTK.Graphics.Glx.Glx.MESA.QueryRendererStringMESA - href: OpenTK.Graphics.Glx.Glx.MESA.html#OpenTK_Graphics_Glx_Glx_MESA_QueryRendererStringMESA_OpenTK_Graphics_Glx_Display__System_Int32_System_Int32_System_Int32_ - name: QueryRendererStringMESA - nameWithType: Glx.MESA.QueryRendererStringMESA - fullName: OpenTK.Graphics.Glx.Glx.MESA.QueryRendererStringMESA +- uid: OpenTK.Graphics.Glx.Glx.MESA.QueryRendererStringMESA_* + commentId: Overload:OpenTK.Graphics.Glx.Glx.MESA.QueryRendererStringMESA_ + href: OpenTK.Graphics.Glx.Glx.MESA.html#OpenTK_Graphics_Glx_Glx_MESA_QueryRendererStringMESA__OpenTK_Graphics_Glx_DisplayPtr_System_Int32_System_Int32_System_Int32_ + name: QueryRendererStringMESA_ + nameWithType: Glx.MESA.QueryRendererStringMESA_ + fullName: OpenTK.Graphics.Glx.Glx.MESA.QueryRendererStringMESA_ - uid: OpenTK.Graphics.Glx.Glx.MESA.ReleaseBuffersMESA* commentId: Overload:OpenTK.Graphics.Glx.Glx.MESA.ReleaseBuffersMESA - href: OpenTK.Graphics.Glx.Glx.MESA.html#OpenTK_Graphics_Glx_Glx_MESA_ReleaseBuffersMESA_OpenTK_Graphics_Glx_Display__OpenTK_Graphics_Glx_GLXDrawable_ + href: OpenTK.Graphics.Glx.Glx.MESA.html#OpenTK_Graphics_Glx_Glx_MESA_ReleaseBuffersMESA_OpenTK_Graphics_Glx_DisplayPtr_OpenTK_Graphics_Glx_GLXDrawable_ name: ReleaseBuffersMESA nameWithType: Glx.MESA.ReleaseBuffersMESA fullName: OpenTK.Graphics.Glx.Glx.MESA.ReleaseBuffersMESA @@ -1361,20 +1195,6 @@ references: name: SwapIntervalMESA nameWithType: Glx.MESA.SwapIntervalMESA fullName: OpenTK.Graphics.Glx.Glx.MESA.SwapIntervalMESA -- uid: OpenTK.Graphics.Glx.Display - commentId: T:OpenTK.Graphics.Glx.Display - parent: OpenTK.Graphics.Glx - href: OpenTK.Graphics.Glx.Display.html - name: Display - nameWithType: Display - fullName: OpenTK.Graphics.Glx.Display -- uid: OpenTK.Graphics.Glx.XVisualInfo - commentId: T:OpenTK.Graphics.Glx.XVisualInfo - parent: OpenTK.Graphics.Glx - href: OpenTK.Graphics.Glx.XVisualInfo.html - name: XVisualInfo - nameWithType: XVisualInfo - fullName: OpenTK.Graphics.Glx.XVisualInfo - uid: System.IntPtr commentId: T:System.IntPtr parent: System @@ -1413,3 +1233,9 @@ references: nameWithType.vb: String fullName.vb: String name.vb: String +- uid: OpenTK.Graphics.Glx.Glx.MESA.QueryRendererStringMESA* + commentId: Overload:OpenTK.Graphics.Glx.Glx.MESA.QueryRendererStringMESA + href: OpenTK.Graphics.Glx.Glx.MESA.html#OpenTK_Graphics_Glx_Glx_MESA_QueryRendererStringMESA_OpenTK_Graphics_Glx_DisplayPtr_System_Int32_System_Int32_System_Int32_ + name: QueryRendererStringMESA + nameWithType: Glx.MESA.QueryRendererStringMESA + fullName: OpenTK.Graphics.Glx.Glx.MESA.QueryRendererStringMESA diff --git a/api/OpenTK.Graphics.Glx.Glx.NV.yml b/api/OpenTK.Graphics.Glx.Glx.NV.yml index 27ce8891..4a54b807 100644 --- a/api/OpenTK.Graphics.Glx.Glx.NV.yml +++ b/api/OpenTK.Graphics.Glx.Glx.NV.yml @@ -5,52 +5,39 @@ items: id: Glx.NV parent: OpenTK.Graphics.Glx children: - - OpenTK.Graphics.Glx.Glx.NV.BindSwapBarrierNV(OpenTK.Graphics.Glx.Display*,System.UInt32,System.UInt32) - - OpenTK.Graphics.Glx.Glx.NV.BindSwapBarrierNV(OpenTK.Graphics.Glx.Display@,System.UInt32,System.UInt32) - - OpenTK.Graphics.Glx.Glx.NV.BindVideoCaptureDeviceNV(OpenTK.Graphics.Glx.Display*,System.UInt32,OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV) - - OpenTK.Graphics.Glx.Glx.NV.BindVideoCaptureDeviceNV(OpenTK.Graphics.Glx.Display@,System.UInt32,OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV) - - OpenTK.Graphics.Glx.Glx.NV.BindVideoDeviceNV(OpenTK.Graphics.Glx.Display*,System.UInt32,System.UInt32,System.Int32*) - - OpenTK.Graphics.Glx.Glx.NV.BindVideoDeviceNV(OpenTK.Graphics.Glx.Display@,System.UInt32,System.UInt32,System.Int32@) - - OpenTK.Graphics.Glx.Glx.NV.BindVideoImageNV(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXVideoDeviceNV,OpenTK.Graphics.Glx.GLXPbuffer,System.Int32) - - OpenTK.Graphics.Glx.Glx.NV.BindVideoImageNV(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXVideoDeviceNV,OpenTK.Graphics.Glx.GLXPbuffer,System.Int32) - - OpenTK.Graphics.Glx.Glx.NV.CopyBufferSubDataNV(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXContext,OpenTK.Graphics.Glx.GLXContext,OpenTK.Graphics.Glx.All,OpenTK.Graphics.Glx.All,System.IntPtr,System.IntPtr,System.IntPtr) - - OpenTK.Graphics.Glx.Glx.NV.CopyBufferSubDataNV(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXContext,OpenTK.Graphics.Glx.GLXContext,OpenTK.Graphics.Glx.All,OpenTK.Graphics.Glx.All,System.IntPtr,System.IntPtr,System.IntPtr) - - OpenTK.Graphics.Glx.Glx.NV.CopyImageSubDataNV(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXContext,System.UInt32,OpenTK.Graphics.Glx.All,System.Int32,System.Int32,System.Int32,System.Int32,OpenTK.Graphics.Glx.GLXContext,System.UInt32,OpenTK.Graphics.Glx.All,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32) - - OpenTK.Graphics.Glx.Glx.NV.CopyImageSubDataNV(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXContext,System.UInt32,OpenTK.Graphics.Glx.All,System.Int32,System.Int32,System.Int32,System.Int32,OpenTK.Graphics.Glx.GLXContext,System.UInt32,OpenTK.Graphics.Glx.All,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32) - - OpenTK.Graphics.Glx.Glx.NV.DelayBeforeSwapNV(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXDrawable,System.Single) - - OpenTK.Graphics.Glx.Glx.NV.DelayBeforeSwapNV(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXDrawable,System.Single) - - OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoCaptureDevicesNV(OpenTK.Graphics.Glx.Display*,System.Int32,System.Int32*) - - OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoCaptureDevicesNV(OpenTK.Graphics.Glx.Display@,System.Int32,System.Int32@) - - OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoDevicesNV(OpenTK.Graphics.Glx.Display*,System.Int32,System.Int32*) - - OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoDevicesNV(OpenTK.Graphics.Glx.Display@,System.Int32,System.Int32@) - - OpenTK.Graphics.Glx.Glx.NV.GetVideoDeviceNV(OpenTK.Graphics.Glx.Display*,System.Int32,System.Int32,OpenTK.Graphics.Glx.GLXVideoDeviceNV*) - - OpenTK.Graphics.Glx.Glx.NV.GetVideoDeviceNV(OpenTK.Graphics.Glx.Display@,System.Int32,System.Int32,OpenTK.Graphics.Glx.GLXVideoDeviceNV@) - - OpenTK.Graphics.Glx.Glx.NV.GetVideoInfoNV(OpenTK.Graphics.Glx.Display*,System.Int32,OpenTK.Graphics.Glx.GLXVideoDeviceNV,System.UInt64*,System.UInt64*) - - OpenTK.Graphics.Glx.Glx.NV.GetVideoInfoNV(OpenTK.Graphics.Glx.Display@,System.Int32,OpenTK.Graphics.Glx.GLXVideoDeviceNV,System.UInt64@,System.UInt64@) - - OpenTK.Graphics.Glx.Glx.NV.JoinSwapGroupNV(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXDrawable,System.UInt32) - - OpenTK.Graphics.Glx.Glx.NV.JoinSwapGroupNV(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXDrawable,System.UInt32) - - OpenTK.Graphics.Glx.Glx.NV.LockVideoCaptureDeviceNV(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV) - - OpenTK.Graphics.Glx.Glx.NV.LockVideoCaptureDeviceNV(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV) - - OpenTK.Graphics.Glx.Glx.NV.NamedCopyBufferSubDataNV(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXContext,OpenTK.Graphics.Glx.GLXContext,System.UInt32,System.UInt32,System.IntPtr,System.IntPtr,System.IntPtr) - - OpenTK.Graphics.Glx.Glx.NV.NamedCopyBufferSubDataNV(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXContext,OpenTK.Graphics.Glx.GLXContext,System.UInt32,System.UInt32,System.IntPtr,System.IntPtr,System.IntPtr) - - OpenTK.Graphics.Glx.Glx.NV.QueryFrameCountNV(OpenTK.Graphics.Glx.Display*,System.Int32,System.UInt32*) - - OpenTK.Graphics.Glx.Glx.NV.QueryFrameCountNV(OpenTK.Graphics.Glx.Display@,System.Int32,System.UInt32@) - - OpenTK.Graphics.Glx.Glx.NV.QueryMaxSwapGroupsNV(OpenTK.Graphics.Glx.Display*,System.Int32,System.UInt32*,System.UInt32*) - - OpenTK.Graphics.Glx.Glx.NV.QueryMaxSwapGroupsNV(OpenTK.Graphics.Glx.Display@,System.Int32,System.UInt32@,System.UInt32@) - - OpenTK.Graphics.Glx.Glx.NV.QuerySwapGroupNV(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXDrawable,System.UInt32*,System.UInt32*) - - OpenTK.Graphics.Glx.Glx.NV.QuerySwapGroupNV(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXDrawable,System.UInt32@,System.UInt32@) - - OpenTK.Graphics.Glx.Glx.NV.QueryVideoCaptureDeviceNV(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV,System.Int32,System.Int32*) - - OpenTK.Graphics.Glx.Glx.NV.QueryVideoCaptureDeviceNV(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV,System.Int32,System.Int32@) - - OpenTK.Graphics.Glx.Glx.NV.ReleaseVideoCaptureDeviceNV(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV) - - OpenTK.Graphics.Glx.Glx.NV.ReleaseVideoCaptureDeviceNV(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV) - - OpenTK.Graphics.Glx.Glx.NV.ReleaseVideoDeviceNV(OpenTK.Graphics.Glx.Display*,System.Int32,OpenTK.Graphics.Glx.GLXVideoDeviceNV) - - OpenTK.Graphics.Glx.Glx.NV.ReleaseVideoDeviceNV(OpenTK.Graphics.Glx.Display@,System.Int32,OpenTK.Graphics.Glx.GLXVideoDeviceNV) - - OpenTK.Graphics.Glx.Glx.NV.ReleaseVideoImageNV(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXPbuffer) - - OpenTK.Graphics.Glx.Glx.NV.ReleaseVideoImageNV(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXPbuffer) - - OpenTK.Graphics.Glx.Glx.NV.ResetFrameCountNV(OpenTK.Graphics.Glx.Display*,System.Int32) - - OpenTK.Graphics.Glx.Glx.NV.ResetFrameCountNV(OpenTK.Graphics.Glx.Display@,System.Int32) - - OpenTK.Graphics.Glx.Glx.NV.SendPbufferToVideoNV(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXPbuffer,System.Int32,System.UInt64*,System.Boolean) - - OpenTK.Graphics.Glx.Glx.NV.SendPbufferToVideoNV(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXPbuffer,System.Int32,System.UInt64@,System.Boolean) + - OpenTK.Graphics.Glx.Glx.NV.BindSwapBarrierNV(OpenTK.Graphics.Glx.DisplayPtr,System.UInt32,System.UInt32) + - OpenTK.Graphics.Glx.Glx.NV.BindVideoCaptureDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,System.UInt32,OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV) + - OpenTK.Graphics.Glx.Glx.NV.BindVideoDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,System.UInt32,System.UInt32,System.Int32*) + - OpenTK.Graphics.Glx.Glx.NV.BindVideoDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,System.UInt32,System.UInt32,System.Int32@) + - OpenTK.Graphics.Glx.Glx.NV.BindVideoImageNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXVideoDeviceNV,OpenTK.Graphics.Glx.GLXPbuffer,System.Int32) + - OpenTK.Graphics.Glx.Glx.NV.CopyBufferSubDataNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext,OpenTK.Graphics.Glx.GLXContext,OpenTK.Graphics.Glx.All,OpenTK.Graphics.Glx.All,System.IntPtr,System.IntPtr,System.IntPtr) + - OpenTK.Graphics.Glx.Glx.NV.CopyImageSubDataNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext,System.UInt32,OpenTK.Graphics.Glx.All,System.Int32,System.Int32,System.Int32,System.Int32,OpenTK.Graphics.Glx.GLXContext,System.UInt32,OpenTK.Graphics.Glx.All,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32) + - OpenTK.Graphics.Glx.Glx.NV.DelayBeforeSwapNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Single) + - OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoCaptureDevicesNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32*) + - OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoCaptureDevicesNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32@) + - OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoDevicesNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32*) + - OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoDevicesNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32@) + - OpenTK.Graphics.Glx.Glx.NV.GetVideoDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,OpenTK.Graphics.Glx.GLXVideoDeviceNV*) + - OpenTK.Graphics.Glx.Glx.NV.GetVideoDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,OpenTK.Graphics.Glx.GLXVideoDeviceNV@) + - OpenTK.Graphics.Glx.Glx.NV.GetVideoInfoNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,OpenTK.Graphics.Glx.GLXVideoDeviceNV,System.UInt64*,System.UInt64*) + - OpenTK.Graphics.Glx.Glx.NV.GetVideoInfoNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,OpenTK.Graphics.Glx.GLXVideoDeviceNV,System.UInt64@,System.UInt64@) + - OpenTK.Graphics.Glx.Glx.NV.JoinSwapGroupNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.UInt32) + - OpenTK.Graphics.Glx.Glx.NV.LockVideoCaptureDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV) + - OpenTK.Graphics.Glx.Glx.NV.NamedCopyBufferSubDataNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext,OpenTK.Graphics.Glx.GLXContext,System.UInt32,System.UInt32,System.IntPtr,System.IntPtr,System.IntPtr) + - OpenTK.Graphics.Glx.Glx.NV.QueryFrameCountNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.UInt32*) + - OpenTK.Graphics.Glx.Glx.NV.QueryFrameCountNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.UInt32@) + - OpenTK.Graphics.Glx.Glx.NV.QueryMaxSwapGroupsNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.UInt32*,System.UInt32*) + - OpenTK.Graphics.Glx.Glx.NV.QueryMaxSwapGroupsNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.UInt32@,System.UInt32@) + - OpenTK.Graphics.Glx.Glx.NV.QuerySwapGroupNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.UInt32*,System.UInt32*) + - OpenTK.Graphics.Glx.Glx.NV.QuerySwapGroupNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.UInt32@,System.UInt32@) + - OpenTK.Graphics.Glx.Glx.NV.QueryVideoCaptureDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV,System.Int32,System.Int32*) + - OpenTK.Graphics.Glx.Glx.NV.QueryVideoCaptureDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV,System.Int32,System.Int32@) + - OpenTK.Graphics.Glx.Glx.NV.ReleaseVideoCaptureDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV) + - OpenTK.Graphics.Glx.Glx.NV.ReleaseVideoDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,OpenTK.Graphics.Glx.GLXVideoDeviceNV) + - OpenTK.Graphics.Glx.Glx.NV.ReleaseVideoImageNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXPbuffer) + - OpenTK.Graphics.Glx.Glx.NV.ResetFrameCountNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32) + - OpenTK.Graphics.Glx.Glx.NV.SendPbufferToVideoNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXPbuffer,System.Int32,System.UInt64*,System.Boolean) + - OpenTK.Graphics.Glx.Glx.NV.SendPbufferToVideoNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXPbuffer,System.Int32,System.UInt64@,System.Boolean) langs: - csharp - vb @@ -65,7 +52,7 @@ items: repo: https://github.com/opentk/opentk.git id: NV path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 554 + startLine: 325 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -84,16 +71,16 @@ items: - System.Object.MemberwiseClone - System.Object.ReferenceEquals(System.Object,System.Object) - System.Object.ToString -- uid: OpenTK.Graphics.Glx.Glx.NV.BindSwapBarrierNV(OpenTK.Graphics.Glx.Display*,System.UInt32,System.UInt32) - commentId: M:OpenTK.Graphics.Glx.Glx.NV.BindSwapBarrierNV(OpenTK.Graphics.Glx.Display*,System.UInt32,System.UInt32) - id: BindSwapBarrierNV(OpenTK.Graphics.Glx.Display*,System.UInt32,System.UInt32) +- uid: OpenTK.Graphics.Glx.Glx.NV.BindSwapBarrierNV(OpenTK.Graphics.Glx.DisplayPtr,System.UInt32,System.UInt32) + commentId: M:OpenTK.Graphics.Glx.Glx.NV.BindSwapBarrierNV(OpenTK.Graphics.Glx.DisplayPtr,System.UInt32,System.UInt32) + id: BindSwapBarrierNV(OpenTK.Graphics.Glx.DisplayPtr,System.UInt32,System.UInt32) parent: OpenTK.Graphics.Glx.Glx.NV langs: - csharp - vb - name: BindSwapBarrierNV(Display*, uint, uint) - nameWithType: Glx.NV.BindSwapBarrierNV(Display*, uint, uint) - fullName: OpenTK.Graphics.Glx.Glx.NV.BindSwapBarrierNV(OpenTK.Graphics.Glx.Display*, uint, uint) + name: BindSwapBarrierNV(DisplayPtr, uint, uint) + nameWithType: Glx.NV.BindSwapBarrierNV(DisplayPtr, uint, uint) + fullName: OpenTK.Graphics.Glx.Glx.NV.BindSwapBarrierNV(OpenTK.Graphics.Glx.DisplayPtr, uint, uint) type: Method source: remote: @@ -109,31 +96,31 @@ items: summary: '[requires: GLX_NV_swap_group] [entry point: glXBindSwapBarrierNV]
' example: [] syntax: - content: public static bool BindSwapBarrierNV(Display* dpy, uint group, uint barrier) + content: public static bool BindSwapBarrierNV(DisplayPtr dpy, uint group, uint barrier) parameters: - id: dpy - type: OpenTK.Graphics.Glx.Display* + type: OpenTK.Graphics.Glx.DisplayPtr - id: group type: System.UInt32 - id: barrier type: System.UInt32 return: type: System.Boolean - content.vb: Public Shared Function BindSwapBarrierNV(dpy As Display*, group As UInteger, barrier As UInteger) As Boolean + content.vb: Public Shared Function BindSwapBarrierNV(dpy As DisplayPtr, group As UInteger, barrier As UInteger) As Boolean overload: OpenTK.Graphics.Glx.Glx.NV.BindSwapBarrierNV* - nameWithType.vb: Glx.NV.BindSwapBarrierNV(Display*, UInteger, UInteger) - fullName.vb: OpenTK.Graphics.Glx.Glx.NV.BindSwapBarrierNV(OpenTK.Graphics.Glx.Display*, UInteger, UInteger) - name.vb: BindSwapBarrierNV(Display*, UInteger, UInteger) -- uid: OpenTK.Graphics.Glx.Glx.NV.BindVideoCaptureDeviceNV(OpenTK.Graphics.Glx.Display*,System.UInt32,OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV) - commentId: M:OpenTK.Graphics.Glx.Glx.NV.BindVideoCaptureDeviceNV(OpenTK.Graphics.Glx.Display*,System.UInt32,OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV) - id: BindVideoCaptureDeviceNV(OpenTK.Graphics.Glx.Display*,System.UInt32,OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV) + nameWithType.vb: Glx.NV.BindSwapBarrierNV(DisplayPtr, UInteger, UInteger) + fullName.vb: OpenTK.Graphics.Glx.Glx.NV.BindSwapBarrierNV(OpenTK.Graphics.Glx.DisplayPtr, UInteger, UInteger) + name.vb: BindSwapBarrierNV(DisplayPtr, UInteger, UInteger) +- uid: OpenTK.Graphics.Glx.Glx.NV.BindVideoCaptureDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,System.UInt32,OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV) + commentId: M:OpenTK.Graphics.Glx.Glx.NV.BindVideoCaptureDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,System.UInt32,OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV) + id: BindVideoCaptureDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,System.UInt32,OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV) parent: OpenTK.Graphics.Glx.Glx.NV langs: - csharp - vb - name: BindVideoCaptureDeviceNV(Display*, uint, GLXVideoCaptureDeviceNV) - nameWithType: Glx.NV.BindVideoCaptureDeviceNV(Display*, uint, GLXVideoCaptureDeviceNV) - fullName: OpenTK.Graphics.Glx.Glx.NV.BindVideoCaptureDeviceNV(OpenTK.Graphics.Glx.Display*, uint, OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV) + name: BindVideoCaptureDeviceNV(DisplayPtr, uint, GLXVideoCaptureDeviceNV) + nameWithType: Glx.NV.BindVideoCaptureDeviceNV(DisplayPtr, uint, GLXVideoCaptureDeviceNV) + fullName: OpenTK.Graphics.Glx.Glx.NV.BindVideoCaptureDeviceNV(OpenTK.Graphics.Glx.DisplayPtr, uint, OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV) type: Method source: remote: @@ -149,31 +136,31 @@ items: summary: '[requires: GLX_NV_video_capture] [entry point: glXBindVideoCaptureDeviceNV]
' example: [] syntax: - content: public static int BindVideoCaptureDeviceNV(Display* dpy, uint video_capture_slot, GLXVideoCaptureDeviceNV device) + content: public static int BindVideoCaptureDeviceNV(DisplayPtr dpy, uint video_capture_slot, GLXVideoCaptureDeviceNV device) parameters: - id: dpy - type: OpenTK.Graphics.Glx.Display* + type: OpenTK.Graphics.Glx.DisplayPtr - id: video_capture_slot type: System.UInt32 - id: device type: OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV return: type: System.Int32 - content.vb: Public Shared Function BindVideoCaptureDeviceNV(dpy As Display*, video_capture_slot As UInteger, device As GLXVideoCaptureDeviceNV) As Integer + content.vb: Public Shared Function BindVideoCaptureDeviceNV(dpy As DisplayPtr, video_capture_slot As UInteger, device As GLXVideoCaptureDeviceNV) As Integer overload: OpenTK.Graphics.Glx.Glx.NV.BindVideoCaptureDeviceNV* - nameWithType.vb: Glx.NV.BindVideoCaptureDeviceNV(Display*, UInteger, GLXVideoCaptureDeviceNV) - fullName.vb: OpenTK.Graphics.Glx.Glx.NV.BindVideoCaptureDeviceNV(OpenTK.Graphics.Glx.Display*, UInteger, OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV) - name.vb: BindVideoCaptureDeviceNV(Display*, UInteger, GLXVideoCaptureDeviceNV) -- uid: OpenTK.Graphics.Glx.Glx.NV.BindVideoDeviceNV(OpenTK.Graphics.Glx.Display*,System.UInt32,System.UInt32,System.Int32*) - commentId: M:OpenTK.Graphics.Glx.Glx.NV.BindVideoDeviceNV(OpenTK.Graphics.Glx.Display*,System.UInt32,System.UInt32,System.Int32*) - id: BindVideoDeviceNV(OpenTK.Graphics.Glx.Display*,System.UInt32,System.UInt32,System.Int32*) + nameWithType.vb: Glx.NV.BindVideoCaptureDeviceNV(DisplayPtr, UInteger, GLXVideoCaptureDeviceNV) + fullName.vb: OpenTK.Graphics.Glx.Glx.NV.BindVideoCaptureDeviceNV(OpenTK.Graphics.Glx.DisplayPtr, UInteger, OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV) + name.vb: BindVideoCaptureDeviceNV(DisplayPtr, UInteger, GLXVideoCaptureDeviceNV) +- uid: OpenTK.Graphics.Glx.Glx.NV.BindVideoDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,System.UInt32,System.UInt32,System.Int32*) + commentId: M:OpenTK.Graphics.Glx.Glx.NV.BindVideoDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,System.UInt32,System.UInt32,System.Int32*) + id: BindVideoDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,System.UInt32,System.UInt32,System.Int32*) parent: OpenTK.Graphics.Glx.Glx.NV langs: - csharp - vb - name: BindVideoDeviceNV(Display*, uint, uint, int*) - nameWithType: Glx.NV.BindVideoDeviceNV(Display*, uint, uint, int*) - fullName: OpenTK.Graphics.Glx.Glx.NV.BindVideoDeviceNV(OpenTK.Graphics.Glx.Display*, uint, uint, int*) + name: BindVideoDeviceNV(DisplayPtr, uint, uint, int*) + nameWithType: Glx.NV.BindVideoDeviceNV(DisplayPtr, uint, uint, int*) + fullName: OpenTK.Graphics.Glx.Glx.NV.BindVideoDeviceNV(OpenTK.Graphics.Glx.DisplayPtr, uint, uint, int*) type: Method source: remote: @@ -189,10 +176,10 @@ items: summary: '[requires: GLX_NV_present_video] [entry point: glXBindVideoDeviceNV]
' example: [] syntax: - content: public static int BindVideoDeviceNV(Display* dpy, uint video_slot, uint video_device, int* attrib_list) + content: public static int BindVideoDeviceNV(DisplayPtr dpy, uint video_slot, uint video_device, int* attrib_list) parameters: - id: dpy - type: OpenTK.Graphics.Glx.Display* + type: OpenTK.Graphics.Glx.DisplayPtr - id: video_slot type: System.UInt32 - id: video_device @@ -201,21 +188,21 @@ items: type: System.Int32* return: type: System.Int32 - content.vb: Public Shared Function BindVideoDeviceNV(dpy As Display*, video_slot As UInteger, video_device As UInteger, attrib_list As Integer*) As Integer + content.vb: Public Shared Function BindVideoDeviceNV(dpy As DisplayPtr, video_slot As UInteger, video_device As UInteger, attrib_list As Integer*) As Integer overload: OpenTK.Graphics.Glx.Glx.NV.BindVideoDeviceNV* - nameWithType.vb: Glx.NV.BindVideoDeviceNV(Display*, UInteger, UInteger, Integer*) - fullName.vb: OpenTK.Graphics.Glx.Glx.NV.BindVideoDeviceNV(OpenTK.Graphics.Glx.Display*, UInteger, UInteger, Integer*) - name.vb: BindVideoDeviceNV(Display*, UInteger, UInteger, Integer*) -- uid: OpenTK.Graphics.Glx.Glx.NV.BindVideoImageNV(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXVideoDeviceNV,OpenTK.Graphics.Glx.GLXPbuffer,System.Int32) - commentId: M:OpenTK.Graphics.Glx.Glx.NV.BindVideoImageNV(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXVideoDeviceNV,OpenTK.Graphics.Glx.GLXPbuffer,System.Int32) - id: BindVideoImageNV(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXVideoDeviceNV,OpenTK.Graphics.Glx.GLXPbuffer,System.Int32) + nameWithType.vb: Glx.NV.BindVideoDeviceNV(DisplayPtr, UInteger, UInteger, Integer*) + fullName.vb: OpenTK.Graphics.Glx.Glx.NV.BindVideoDeviceNV(OpenTK.Graphics.Glx.DisplayPtr, UInteger, UInteger, Integer*) + name.vb: BindVideoDeviceNV(DisplayPtr, UInteger, UInteger, Integer*) +- uid: OpenTK.Graphics.Glx.Glx.NV.BindVideoImageNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXVideoDeviceNV,OpenTK.Graphics.Glx.GLXPbuffer,System.Int32) + commentId: M:OpenTK.Graphics.Glx.Glx.NV.BindVideoImageNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXVideoDeviceNV,OpenTK.Graphics.Glx.GLXPbuffer,System.Int32) + id: BindVideoImageNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXVideoDeviceNV,OpenTK.Graphics.Glx.GLXPbuffer,System.Int32) parent: OpenTK.Graphics.Glx.Glx.NV langs: - csharp - vb - name: BindVideoImageNV(Display*, GLXVideoDeviceNV, GLXPbuffer, int) - nameWithType: Glx.NV.BindVideoImageNV(Display*, GLXVideoDeviceNV, GLXPbuffer, int) - fullName: OpenTK.Graphics.Glx.Glx.NV.BindVideoImageNV(OpenTK.Graphics.Glx.Display*, OpenTK.Graphics.Glx.GLXVideoDeviceNV, OpenTK.Graphics.Glx.GLXPbuffer, int) + name: BindVideoImageNV(DisplayPtr, GLXVideoDeviceNV, GLXPbuffer, int) + nameWithType: Glx.NV.BindVideoImageNV(DisplayPtr, GLXVideoDeviceNV, GLXPbuffer, int) + fullName: OpenTK.Graphics.Glx.Glx.NV.BindVideoImageNV(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXVideoDeviceNV, OpenTK.Graphics.Glx.GLXPbuffer, int) type: Method source: remote: @@ -231,10 +218,10 @@ items: summary: '[requires: GLX_NV_video_out] [entry point: glXBindVideoImageNV]
' example: [] syntax: - content: public static int BindVideoImageNV(Display* dpy, GLXVideoDeviceNV VideoDevice, GLXPbuffer pbuf, int iVideoBuffer) + content: public static int BindVideoImageNV(DisplayPtr dpy, GLXVideoDeviceNV VideoDevice, GLXPbuffer pbuf, int iVideoBuffer) parameters: - id: dpy - type: OpenTK.Graphics.Glx.Display* + type: OpenTK.Graphics.Glx.DisplayPtr - id: VideoDevice type: OpenTK.Graphics.Glx.GLXVideoDeviceNV - id: pbuf @@ -243,21 +230,21 @@ items: type: System.Int32 return: type: System.Int32 - content.vb: Public Shared Function BindVideoImageNV(dpy As Display*, VideoDevice As GLXVideoDeviceNV, pbuf As GLXPbuffer, iVideoBuffer As Integer) As Integer + content.vb: Public Shared Function BindVideoImageNV(dpy As DisplayPtr, VideoDevice As GLXVideoDeviceNV, pbuf As GLXPbuffer, iVideoBuffer As Integer) As Integer overload: OpenTK.Graphics.Glx.Glx.NV.BindVideoImageNV* - nameWithType.vb: Glx.NV.BindVideoImageNV(Display*, GLXVideoDeviceNV, GLXPbuffer, Integer) - fullName.vb: OpenTK.Graphics.Glx.Glx.NV.BindVideoImageNV(OpenTK.Graphics.Glx.Display*, OpenTK.Graphics.Glx.GLXVideoDeviceNV, OpenTK.Graphics.Glx.GLXPbuffer, Integer) - name.vb: BindVideoImageNV(Display*, GLXVideoDeviceNV, GLXPbuffer, Integer) -- uid: OpenTK.Graphics.Glx.Glx.NV.CopyBufferSubDataNV(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXContext,OpenTK.Graphics.Glx.GLXContext,OpenTK.Graphics.Glx.All,OpenTK.Graphics.Glx.All,System.IntPtr,System.IntPtr,System.IntPtr) - commentId: M:OpenTK.Graphics.Glx.Glx.NV.CopyBufferSubDataNV(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXContext,OpenTK.Graphics.Glx.GLXContext,OpenTK.Graphics.Glx.All,OpenTK.Graphics.Glx.All,System.IntPtr,System.IntPtr,System.IntPtr) - id: CopyBufferSubDataNV(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXContext,OpenTK.Graphics.Glx.GLXContext,OpenTK.Graphics.Glx.All,OpenTK.Graphics.Glx.All,System.IntPtr,System.IntPtr,System.IntPtr) + nameWithType.vb: Glx.NV.BindVideoImageNV(DisplayPtr, GLXVideoDeviceNV, GLXPbuffer, Integer) + fullName.vb: OpenTK.Graphics.Glx.Glx.NV.BindVideoImageNV(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXVideoDeviceNV, OpenTK.Graphics.Glx.GLXPbuffer, Integer) + name.vb: BindVideoImageNV(DisplayPtr, GLXVideoDeviceNV, GLXPbuffer, Integer) +- uid: OpenTK.Graphics.Glx.Glx.NV.CopyBufferSubDataNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext,OpenTK.Graphics.Glx.GLXContext,OpenTK.Graphics.Glx.All,OpenTK.Graphics.Glx.All,System.IntPtr,System.IntPtr,System.IntPtr) + commentId: M:OpenTK.Graphics.Glx.Glx.NV.CopyBufferSubDataNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext,OpenTK.Graphics.Glx.GLXContext,OpenTK.Graphics.Glx.All,OpenTK.Graphics.Glx.All,System.IntPtr,System.IntPtr,System.IntPtr) + id: CopyBufferSubDataNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext,OpenTK.Graphics.Glx.GLXContext,OpenTK.Graphics.Glx.All,OpenTK.Graphics.Glx.All,System.IntPtr,System.IntPtr,System.IntPtr) parent: OpenTK.Graphics.Glx.Glx.NV langs: - csharp - vb - name: CopyBufferSubDataNV(Display*, GLXContext, GLXContext, All, All, nint, nint, nint) - nameWithType: Glx.NV.CopyBufferSubDataNV(Display*, GLXContext, GLXContext, All, All, nint, nint, nint) - fullName: OpenTK.Graphics.Glx.Glx.NV.CopyBufferSubDataNV(OpenTK.Graphics.Glx.Display*, OpenTK.Graphics.Glx.GLXContext, OpenTK.Graphics.Glx.GLXContext, OpenTK.Graphics.Glx.All, OpenTK.Graphics.Glx.All, nint, nint, nint) + name: CopyBufferSubDataNV(DisplayPtr, GLXContext, GLXContext, All, All, nint, nint, nint) + nameWithType: Glx.NV.CopyBufferSubDataNV(DisplayPtr, GLXContext, GLXContext, All, All, nint, nint, nint) + fullName: OpenTK.Graphics.Glx.Glx.NV.CopyBufferSubDataNV(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXContext, OpenTK.Graphics.Glx.GLXContext, OpenTK.Graphics.Glx.All, OpenTK.Graphics.Glx.All, nint, nint, nint) type: Method source: remote: @@ -273,10 +260,10 @@ items: summary: '[requires: GLX_NV_copy_buffer] [entry point: glXCopyBufferSubDataNV]
' example: [] syntax: - content: public static void CopyBufferSubDataNV(Display* dpy, GLXContext readCtx, GLXContext writeCtx, All readTarget, All writeTarget, nint readOffset, nint writeOffset, nint size) + content: public static void CopyBufferSubDataNV(DisplayPtr dpy, GLXContext readCtx, GLXContext writeCtx, All readTarget, All writeTarget, nint readOffset, nint writeOffset, nint size) parameters: - id: dpy - type: OpenTK.Graphics.Glx.Display* + type: OpenTK.Graphics.Glx.DisplayPtr - id: readCtx type: OpenTK.Graphics.Glx.GLXContext - id: writeCtx @@ -291,21 +278,21 @@ items: type: System.IntPtr - id: size type: System.IntPtr - content.vb: Public Shared Sub CopyBufferSubDataNV(dpy As Display*, readCtx As GLXContext, writeCtx As GLXContext, readTarget As All, writeTarget As All, readOffset As IntPtr, writeOffset As IntPtr, size As IntPtr) + content.vb: Public Shared Sub CopyBufferSubDataNV(dpy As DisplayPtr, readCtx As GLXContext, writeCtx As GLXContext, readTarget As All, writeTarget As All, readOffset As IntPtr, writeOffset As IntPtr, size As IntPtr) overload: OpenTK.Graphics.Glx.Glx.NV.CopyBufferSubDataNV* - nameWithType.vb: Glx.NV.CopyBufferSubDataNV(Display*, GLXContext, GLXContext, All, All, IntPtr, IntPtr, IntPtr) - fullName.vb: OpenTK.Graphics.Glx.Glx.NV.CopyBufferSubDataNV(OpenTK.Graphics.Glx.Display*, OpenTK.Graphics.Glx.GLXContext, OpenTK.Graphics.Glx.GLXContext, OpenTK.Graphics.Glx.All, OpenTK.Graphics.Glx.All, System.IntPtr, System.IntPtr, System.IntPtr) - name.vb: CopyBufferSubDataNV(Display*, GLXContext, GLXContext, All, All, IntPtr, IntPtr, IntPtr) -- uid: OpenTK.Graphics.Glx.Glx.NV.CopyImageSubDataNV(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXContext,System.UInt32,OpenTK.Graphics.Glx.All,System.Int32,System.Int32,System.Int32,System.Int32,OpenTK.Graphics.Glx.GLXContext,System.UInt32,OpenTK.Graphics.Glx.All,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32) - commentId: M:OpenTK.Graphics.Glx.Glx.NV.CopyImageSubDataNV(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXContext,System.UInt32,OpenTK.Graphics.Glx.All,System.Int32,System.Int32,System.Int32,System.Int32,OpenTK.Graphics.Glx.GLXContext,System.UInt32,OpenTK.Graphics.Glx.All,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32) - id: CopyImageSubDataNV(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXContext,System.UInt32,OpenTK.Graphics.Glx.All,System.Int32,System.Int32,System.Int32,System.Int32,OpenTK.Graphics.Glx.GLXContext,System.UInt32,OpenTK.Graphics.Glx.All,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32) + nameWithType.vb: Glx.NV.CopyBufferSubDataNV(DisplayPtr, GLXContext, GLXContext, All, All, IntPtr, IntPtr, IntPtr) + fullName.vb: OpenTK.Graphics.Glx.Glx.NV.CopyBufferSubDataNV(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXContext, OpenTK.Graphics.Glx.GLXContext, OpenTK.Graphics.Glx.All, OpenTK.Graphics.Glx.All, System.IntPtr, System.IntPtr, System.IntPtr) + name.vb: CopyBufferSubDataNV(DisplayPtr, GLXContext, GLXContext, All, All, IntPtr, IntPtr, IntPtr) +- uid: OpenTK.Graphics.Glx.Glx.NV.CopyImageSubDataNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext,System.UInt32,OpenTK.Graphics.Glx.All,System.Int32,System.Int32,System.Int32,System.Int32,OpenTK.Graphics.Glx.GLXContext,System.UInt32,OpenTK.Graphics.Glx.All,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32) + commentId: M:OpenTK.Graphics.Glx.Glx.NV.CopyImageSubDataNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext,System.UInt32,OpenTK.Graphics.Glx.All,System.Int32,System.Int32,System.Int32,System.Int32,OpenTK.Graphics.Glx.GLXContext,System.UInt32,OpenTK.Graphics.Glx.All,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32) + id: CopyImageSubDataNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext,System.UInt32,OpenTK.Graphics.Glx.All,System.Int32,System.Int32,System.Int32,System.Int32,OpenTK.Graphics.Glx.GLXContext,System.UInt32,OpenTK.Graphics.Glx.All,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32) parent: OpenTK.Graphics.Glx.Glx.NV langs: - csharp - vb - name: CopyImageSubDataNV(Display*, GLXContext, uint, All, int, int, int, int, GLXContext, uint, All, int, int, int, int, int, int, int) - nameWithType: Glx.NV.CopyImageSubDataNV(Display*, GLXContext, uint, All, int, int, int, int, GLXContext, uint, All, int, int, int, int, int, int, int) - fullName: OpenTK.Graphics.Glx.Glx.NV.CopyImageSubDataNV(OpenTK.Graphics.Glx.Display*, OpenTK.Graphics.Glx.GLXContext, uint, OpenTK.Graphics.Glx.All, int, int, int, int, OpenTK.Graphics.Glx.GLXContext, uint, OpenTK.Graphics.Glx.All, int, int, int, int, int, int, int) + name: CopyImageSubDataNV(DisplayPtr, GLXContext, uint, All, int, int, int, int, GLXContext, uint, All, int, int, int, int, int, int, int) + nameWithType: Glx.NV.CopyImageSubDataNV(DisplayPtr, GLXContext, uint, All, int, int, int, int, GLXContext, uint, All, int, int, int, int, int, int, int) + fullName: OpenTK.Graphics.Glx.Glx.NV.CopyImageSubDataNV(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXContext, uint, OpenTK.Graphics.Glx.All, int, int, int, int, OpenTK.Graphics.Glx.GLXContext, uint, OpenTK.Graphics.Glx.All, int, int, int, int, int, int, int) type: Method source: remote: @@ -321,10 +308,10 @@ items: summary: '[requires: GLX_NV_copy_image] [entry point: glXCopyImageSubDataNV]
' example: [] syntax: - content: public static void CopyImageSubDataNV(Display* dpy, GLXContext srcCtx, uint srcName, All srcTarget, int srcLevel, int srcX, int srcY, int srcZ, GLXContext dstCtx, uint dstName, All dstTarget, int dstLevel, int dstX, int dstY, int dstZ, int width, int height, int depth) + content: public static void CopyImageSubDataNV(DisplayPtr dpy, GLXContext srcCtx, uint srcName, All srcTarget, int srcLevel, int srcX, int srcY, int srcZ, GLXContext dstCtx, uint dstName, All dstTarget, int dstLevel, int dstX, int dstY, int dstZ, int width, int height, int depth) parameters: - id: dpy - type: OpenTK.Graphics.Glx.Display* + type: OpenTK.Graphics.Glx.DisplayPtr - id: srcCtx type: OpenTK.Graphics.Glx.GLXContext - id: srcName @@ -359,21 +346,21 @@ items: type: System.Int32 - id: depth type: System.Int32 - content.vb: Public Shared Sub CopyImageSubDataNV(dpy As Display*, srcCtx As GLXContext, srcName As UInteger, srcTarget As All, srcLevel As Integer, srcX As Integer, srcY As Integer, srcZ As Integer, dstCtx As GLXContext, dstName As UInteger, dstTarget As All, dstLevel As Integer, dstX As Integer, dstY As Integer, dstZ As Integer, width As Integer, height As Integer, depth As Integer) + content.vb: Public Shared Sub CopyImageSubDataNV(dpy As DisplayPtr, srcCtx As GLXContext, srcName As UInteger, srcTarget As All, srcLevel As Integer, srcX As Integer, srcY As Integer, srcZ As Integer, dstCtx As GLXContext, dstName As UInteger, dstTarget As All, dstLevel As Integer, dstX As Integer, dstY As Integer, dstZ As Integer, width As Integer, height As Integer, depth As Integer) overload: OpenTK.Graphics.Glx.Glx.NV.CopyImageSubDataNV* - nameWithType.vb: Glx.NV.CopyImageSubDataNV(Display*, GLXContext, UInteger, All, Integer, Integer, Integer, Integer, GLXContext, UInteger, All, Integer, Integer, Integer, Integer, Integer, Integer, Integer) - fullName.vb: OpenTK.Graphics.Glx.Glx.NV.CopyImageSubDataNV(OpenTK.Graphics.Glx.Display*, OpenTK.Graphics.Glx.GLXContext, UInteger, OpenTK.Graphics.Glx.All, Integer, Integer, Integer, Integer, OpenTK.Graphics.Glx.GLXContext, UInteger, OpenTK.Graphics.Glx.All, Integer, Integer, Integer, Integer, Integer, Integer, Integer) - name.vb: CopyImageSubDataNV(Display*, GLXContext, UInteger, All, Integer, Integer, Integer, Integer, GLXContext, UInteger, All, Integer, Integer, Integer, Integer, Integer, Integer, Integer) -- uid: OpenTK.Graphics.Glx.Glx.NV.DelayBeforeSwapNV(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXDrawable,System.Single) - commentId: M:OpenTK.Graphics.Glx.Glx.NV.DelayBeforeSwapNV(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXDrawable,System.Single) - id: DelayBeforeSwapNV(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXDrawable,System.Single) + nameWithType.vb: Glx.NV.CopyImageSubDataNV(DisplayPtr, GLXContext, UInteger, All, Integer, Integer, Integer, Integer, GLXContext, UInteger, All, Integer, Integer, Integer, Integer, Integer, Integer, Integer) + fullName.vb: OpenTK.Graphics.Glx.Glx.NV.CopyImageSubDataNV(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXContext, UInteger, OpenTK.Graphics.Glx.All, Integer, Integer, Integer, Integer, OpenTK.Graphics.Glx.GLXContext, UInteger, OpenTK.Graphics.Glx.All, Integer, Integer, Integer, Integer, Integer, Integer, Integer) + name.vb: CopyImageSubDataNV(DisplayPtr, GLXContext, UInteger, All, Integer, Integer, Integer, Integer, GLXContext, UInteger, All, Integer, Integer, Integer, Integer, Integer, Integer, Integer) +- uid: OpenTK.Graphics.Glx.Glx.NV.DelayBeforeSwapNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Single) + commentId: M:OpenTK.Graphics.Glx.Glx.NV.DelayBeforeSwapNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Single) + id: DelayBeforeSwapNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Single) parent: OpenTK.Graphics.Glx.Glx.NV langs: - csharp - vb - name: DelayBeforeSwapNV(Display*, GLXDrawable, float) - nameWithType: Glx.NV.DelayBeforeSwapNV(Display*, GLXDrawable, float) - fullName: OpenTK.Graphics.Glx.Glx.NV.DelayBeforeSwapNV(OpenTK.Graphics.Glx.Display*, OpenTK.Graphics.Glx.GLXDrawable, float) + name: DelayBeforeSwapNV(DisplayPtr, GLXDrawable, float) + nameWithType: Glx.NV.DelayBeforeSwapNV(DisplayPtr, GLXDrawable, float) + fullName: OpenTK.Graphics.Glx.Glx.NV.DelayBeforeSwapNV(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, float) type: Method source: remote: @@ -389,31 +376,31 @@ items: summary: '[requires: GLX_NV_delay_before_swap] [entry point: glXDelayBeforeSwapNV]
' example: [] syntax: - content: public static bool DelayBeforeSwapNV(Display* dpy, GLXDrawable drawable, float seconds) + content: public static bool DelayBeforeSwapNV(DisplayPtr dpy, GLXDrawable drawable, float seconds) parameters: - id: dpy - type: OpenTK.Graphics.Glx.Display* + type: OpenTK.Graphics.Glx.DisplayPtr - id: drawable type: OpenTK.Graphics.Glx.GLXDrawable - id: seconds type: System.Single return: type: System.Boolean - content.vb: Public Shared Function DelayBeforeSwapNV(dpy As Display*, drawable As GLXDrawable, seconds As Single) As Boolean + content.vb: Public Shared Function DelayBeforeSwapNV(dpy As DisplayPtr, drawable As GLXDrawable, seconds As Single) As Boolean overload: OpenTK.Graphics.Glx.Glx.NV.DelayBeforeSwapNV* - nameWithType.vb: Glx.NV.DelayBeforeSwapNV(Display*, GLXDrawable, Single) - fullName.vb: OpenTK.Graphics.Glx.Glx.NV.DelayBeforeSwapNV(OpenTK.Graphics.Glx.Display*, OpenTK.Graphics.Glx.GLXDrawable, Single) - name.vb: DelayBeforeSwapNV(Display*, GLXDrawable, Single) -- uid: OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoCaptureDevicesNV(OpenTK.Graphics.Glx.Display*,System.Int32,System.Int32*) - commentId: M:OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoCaptureDevicesNV(OpenTK.Graphics.Glx.Display*,System.Int32,System.Int32*) - id: EnumerateVideoCaptureDevicesNV(OpenTK.Graphics.Glx.Display*,System.Int32,System.Int32*) + nameWithType.vb: Glx.NV.DelayBeforeSwapNV(DisplayPtr, GLXDrawable, Single) + fullName.vb: OpenTK.Graphics.Glx.Glx.NV.DelayBeforeSwapNV(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, Single) + name.vb: DelayBeforeSwapNV(DisplayPtr, GLXDrawable, Single) +- uid: OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoCaptureDevicesNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32*) + commentId: M:OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoCaptureDevicesNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32*) + id: EnumerateVideoCaptureDevicesNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32*) parent: OpenTK.Graphics.Glx.Glx.NV langs: - csharp - vb - name: EnumerateVideoCaptureDevicesNV(Display*, int, int*) - nameWithType: Glx.NV.EnumerateVideoCaptureDevicesNV(Display*, int, int*) - fullName: OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoCaptureDevicesNV(OpenTK.Graphics.Glx.Display*, int, int*) + name: EnumerateVideoCaptureDevicesNV(DisplayPtr, int, int*) + nameWithType: Glx.NV.EnumerateVideoCaptureDevicesNV(DisplayPtr, int, int*) + fullName: OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoCaptureDevicesNV(OpenTK.Graphics.Glx.DisplayPtr, int, int*) type: Method source: remote: @@ -429,31 +416,31 @@ items: summary: '[requires: GLX_NV_video_capture] [entry point: glXEnumerateVideoCaptureDevicesNV]
' example: [] syntax: - content: public static GLXVideoCaptureDeviceNV* EnumerateVideoCaptureDevicesNV(Display* dpy, int screen, int* nelements) + content: public static GLXVideoCaptureDeviceNV* EnumerateVideoCaptureDevicesNV(DisplayPtr dpy, int screen, int* nelements) parameters: - id: dpy - type: OpenTK.Graphics.Glx.Display* + type: OpenTK.Graphics.Glx.DisplayPtr - id: screen type: System.Int32 - id: nelements type: System.Int32* return: type: OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV* - content.vb: Public Shared Function EnumerateVideoCaptureDevicesNV(dpy As Display*, screen As Integer, nelements As Integer*) As GLXVideoCaptureDeviceNV* + content.vb: Public Shared Function EnumerateVideoCaptureDevicesNV(dpy As DisplayPtr, screen As Integer, nelements As Integer*) As GLXVideoCaptureDeviceNV* overload: OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoCaptureDevicesNV* - nameWithType.vb: Glx.NV.EnumerateVideoCaptureDevicesNV(Display*, Integer, Integer*) - fullName.vb: OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoCaptureDevicesNV(OpenTK.Graphics.Glx.Display*, Integer, Integer*) - name.vb: EnumerateVideoCaptureDevicesNV(Display*, Integer, Integer*) -- uid: OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoDevicesNV(OpenTK.Graphics.Glx.Display*,System.Int32,System.Int32*) - commentId: M:OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoDevicesNV(OpenTK.Graphics.Glx.Display*,System.Int32,System.Int32*) - id: EnumerateVideoDevicesNV(OpenTK.Graphics.Glx.Display*,System.Int32,System.Int32*) + nameWithType.vb: Glx.NV.EnumerateVideoCaptureDevicesNV(DisplayPtr, Integer, Integer*) + fullName.vb: OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoCaptureDevicesNV(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer*) + name.vb: EnumerateVideoCaptureDevicesNV(DisplayPtr, Integer, Integer*) +- uid: OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoDevicesNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32*) + commentId: M:OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoDevicesNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32*) + id: EnumerateVideoDevicesNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32*) parent: OpenTK.Graphics.Glx.Glx.NV langs: - csharp - vb - name: EnumerateVideoDevicesNV(Display*, int, int*) - nameWithType: Glx.NV.EnumerateVideoDevicesNV(Display*, int, int*) - fullName: OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoDevicesNV(OpenTK.Graphics.Glx.Display*, int, int*) + name: EnumerateVideoDevicesNV(DisplayPtr, int, int*) + nameWithType: Glx.NV.EnumerateVideoDevicesNV(DisplayPtr, int, int*) + fullName: OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoDevicesNV(OpenTK.Graphics.Glx.DisplayPtr, int, int*) type: Method source: remote: @@ -469,31 +456,31 @@ items: summary: '[requires: GLX_NV_present_video] [entry point: glXEnumerateVideoDevicesNV]
' example: [] syntax: - content: public static uint* EnumerateVideoDevicesNV(Display* dpy, int screen, int* nelements) + content: public static uint* EnumerateVideoDevicesNV(DisplayPtr dpy, int screen, int* nelements) parameters: - id: dpy - type: OpenTK.Graphics.Glx.Display* + type: OpenTK.Graphics.Glx.DisplayPtr - id: screen type: System.Int32 - id: nelements type: System.Int32* return: type: System.UInt32* - content.vb: Public Shared Function EnumerateVideoDevicesNV(dpy As Display*, screen As Integer, nelements As Integer*) As UInteger* + content.vb: Public Shared Function EnumerateVideoDevicesNV(dpy As DisplayPtr, screen As Integer, nelements As Integer*) As UInteger* overload: OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoDevicesNV* - nameWithType.vb: Glx.NV.EnumerateVideoDevicesNV(Display*, Integer, Integer*) - fullName.vb: OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoDevicesNV(OpenTK.Graphics.Glx.Display*, Integer, Integer*) - name.vb: EnumerateVideoDevicesNV(Display*, Integer, Integer*) -- uid: OpenTK.Graphics.Glx.Glx.NV.GetVideoDeviceNV(OpenTK.Graphics.Glx.Display*,System.Int32,System.Int32,OpenTK.Graphics.Glx.GLXVideoDeviceNV*) - commentId: M:OpenTK.Graphics.Glx.Glx.NV.GetVideoDeviceNV(OpenTK.Graphics.Glx.Display*,System.Int32,System.Int32,OpenTK.Graphics.Glx.GLXVideoDeviceNV*) - id: GetVideoDeviceNV(OpenTK.Graphics.Glx.Display*,System.Int32,System.Int32,OpenTK.Graphics.Glx.GLXVideoDeviceNV*) + nameWithType.vb: Glx.NV.EnumerateVideoDevicesNV(DisplayPtr, Integer, Integer*) + fullName.vb: OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoDevicesNV(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer*) + name.vb: EnumerateVideoDevicesNV(DisplayPtr, Integer, Integer*) +- uid: OpenTK.Graphics.Glx.Glx.NV.GetVideoDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,OpenTK.Graphics.Glx.GLXVideoDeviceNV*) + commentId: M:OpenTK.Graphics.Glx.Glx.NV.GetVideoDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,OpenTK.Graphics.Glx.GLXVideoDeviceNV*) + id: GetVideoDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,OpenTK.Graphics.Glx.GLXVideoDeviceNV*) parent: OpenTK.Graphics.Glx.Glx.NV langs: - csharp - vb - name: GetVideoDeviceNV(Display*, int, int, GLXVideoDeviceNV*) - nameWithType: Glx.NV.GetVideoDeviceNV(Display*, int, int, GLXVideoDeviceNV*) - fullName: OpenTK.Graphics.Glx.Glx.NV.GetVideoDeviceNV(OpenTK.Graphics.Glx.Display*, int, int, OpenTK.Graphics.Glx.GLXVideoDeviceNV*) + name: GetVideoDeviceNV(DisplayPtr, int, int, GLXVideoDeviceNV*) + nameWithType: Glx.NV.GetVideoDeviceNV(DisplayPtr, int, int, GLXVideoDeviceNV*) + fullName: OpenTK.Graphics.Glx.Glx.NV.GetVideoDeviceNV(OpenTK.Graphics.Glx.DisplayPtr, int, int, OpenTK.Graphics.Glx.GLXVideoDeviceNV*) type: Method source: remote: @@ -509,10 +496,10 @@ items: summary: '[requires: GLX_NV_video_out] [entry point: glXGetVideoDeviceNV]
' example: [] syntax: - content: public static int GetVideoDeviceNV(Display* dpy, int screen, int numVideoDevices, GLXVideoDeviceNV* pVideoDevice) + content: public static int GetVideoDeviceNV(DisplayPtr dpy, int screen, int numVideoDevices, GLXVideoDeviceNV* pVideoDevice) parameters: - id: dpy - type: OpenTK.Graphics.Glx.Display* + type: OpenTK.Graphics.Glx.DisplayPtr - id: screen type: System.Int32 - id: numVideoDevices @@ -521,21 +508,21 @@ items: type: OpenTK.Graphics.Glx.GLXVideoDeviceNV* return: type: System.Int32 - content.vb: Public Shared Function GetVideoDeviceNV(dpy As Display*, screen As Integer, numVideoDevices As Integer, pVideoDevice As GLXVideoDeviceNV*) As Integer + content.vb: Public Shared Function GetVideoDeviceNV(dpy As DisplayPtr, screen As Integer, numVideoDevices As Integer, pVideoDevice As GLXVideoDeviceNV*) As Integer overload: OpenTK.Graphics.Glx.Glx.NV.GetVideoDeviceNV* - nameWithType.vb: Glx.NV.GetVideoDeviceNV(Display*, Integer, Integer, GLXVideoDeviceNV*) - fullName.vb: OpenTK.Graphics.Glx.Glx.NV.GetVideoDeviceNV(OpenTK.Graphics.Glx.Display*, Integer, Integer, OpenTK.Graphics.Glx.GLXVideoDeviceNV*) - name.vb: GetVideoDeviceNV(Display*, Integer, Integer, GLXVideoDeviceNV*) -- uid: OpenTK.Graphics.Glx.Glx.NV.GetVideoInfoNV(OpenTK.Graphics.Glx.Display*,System.Int32,OpenTK.Graphics.Glx.GLXVideoDeviceNV,System.UInt64*,System.UInt64*) - commentId: M:OpenTK.Graphics.Glx.Glx.NV.GetVideoInfoNV(OpenTK.Graphics.Glx.Display*,System.Int32,OpenTK.Graphics.Glx.GLXVideoDeviceNV,System.UInt64*,System.UInt64*) - id: GetVideoInfoNV(OpenTK.Graphics.Glx.Display*,System.Int32,OpenTK.Graphics.Glx.GLXVideoDeviceNV,System.UInt64*,System.UInt64*) + nameWithType.vb: Glx.NV.GetVideoDeviceNV(DisplayPtr, Integer, Integer, GLXVideoDeviceNV*) + fullName.vb: OpenTK.Graphics.Glx.Glx.NV.GetVideoDeviceNV(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer, OpenTK.Graphics.Glx.GLXVideoDeviceNV*) + name.vb: GetVideoDeviceNV(DisplayPtr, Integer, Integer, GLXVideoDeviceNV*) +- uid: OpenTK.Graphics.Glx.Glx.NV.GetVideoInfoNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,OpenTK.Graphics.Glx.GLXVideoDeviceNV,System.UInt64*,System.UInt64*) + commentId: M:OpenTK.Graphics.Glx.Glx.NV.GetVideoInfoNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,OpenTK.Graphics.Glx.GLXVideoDeviceNV,System.UInt64*,System.UInt64*) + id: GetVideoInfoNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,OpenTK.Graphics.Glx.GLXVideoDeviceNV,System.UInt64*,System.UInt64*) parent: OpenTK.Graphics.Glx.Glx.NV langs: - csharp - vb - name: GetVideoInfoNV(Display*, int, GLXVideoDeviceNV, ulong*, ulong*) - nameWithType: Glx.NV.GetVideoInfoNV(Display*, int, GLXVideoDeviceNV, ulong*, ulong*) - fullName: OpenTK.Graphics.Glx.Glx.NV.GetVideoInfoNV(OpenTK.Graphics.Glx.Display*, int, OpenTK.Graphics.Glx.GLXVideoDeviceNV, ulong*, ulong*) + name: GetVideoInfoNV(DisplayPtr, int, GLXVideoDeviceNV, ulong*, ulong*) + nameWithType: Glx.NV.GetVideoInfoNV(DisplayPtr, int, GLXVideoDeviceNV, ulong*, ulong*) + fullName: OpenTK.Graphics.Glx.Glx.NV.GetVideoInfoNV(OpenTK.Graphics.Glx.DisplayPtr, int, OpenTK.Graphics.Glx.GLXVideoDeviceNV, ulong*, ulong*) type: Method source: remote: @@ -551,10 +538,10 @@ items: summary: '[requires: GLX_NV_video_out] [entry point: glXGetVideoInfoNV]
' example: [] syntax: - content: public static int GetVideoInfoNV(Display* dpy, int screen, GLXVideoDeviceNV VideoDevice, ulong* pulCounterOutputPbuffer, ulong* pulCounterOutputVideo) + content: public static int GetVideoInfoNV(DisplayPtr dpy, int screen, GLXVideoDeviceNV VideoDevice, ulong* pulCounterOutputPbuffer, ulong* pulCounterOutputVideo) parameters: - id: dpy - type: OpenTK.Graphics.Glx.Display* + type: OpenTK.Graphics.Glx.DisplayPtr - id: screen type: System.Int32 - id: VideoDevice @@ -565,21 +552,21 @@ items: type: System.UInt64* return: type: System.Int32 - content.vb: Public Shared Function GetVideoInfoNV(dpy As Display*, screen As Integer, VideoDevice As GLXVideoDeviceNV, pulCounterOutputPbuffer As ULong*, pulCounterOutputVideo As ULong*) As Integer + content.vb: Public Shared Function GetVideoInfoNV(dpy As DisplayPtr, screen As Integer, VideoDevice As GLXVideoDeviceNV, pulCounterOutputPbuffer As ULong*, pulCounterOutputVideo As ULong*) As Integer overload: OpenTK.Graphics.Glx.Glx.NV.GetVideoInfoNV* - nameWithType.vb: Glx.NV.GetVideoInfoNV(Display*, Integer, GLXVideoDeviceNV, ULong*, ULong*) - fullName.vb: OpenTK.Graphics.Glx.Glx.NV.GetVideoInfoNV(OpenTK.Graphics.Glx.Display*, Integer, OpenTK.Graphics.Glx.GLXVideoDeviceNV, ULong*, ULong*) - name.vb: GetVideoInfoNV(Display*, Integer, GLXVideoDeviceNV, ULong*, ULong*) -- uid: OpenTK.Graphics.Glx.Glx.NV.JoinSwapGroupNV(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXDrawable,System.UInt32) - commentId: M:OpenTK.Graphics.Glx.Glx.NV.JoinSwapGroupNV(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXDrawable,System.UInt32) - id: JoinSwapGroupNV(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXDrawable,System.UInt32) + nameWithType.vb: Glx.NV.GetVideoInfoNV(DisplayPtr, Integer, GLXVideoDeviceNV, ULong*, ULong*) + fullName.vb: OpenTK.Graphics.Glx.Glx.NV.GetVideoInfoNV(OpenTK.Graphics.Glx.DisplayPtr, Integer, OpenTK.Graphics.Glx.GLXVideoDeviceNV, ULong*, ULong*) + name.vb: GetVideoInfoNV(DisplayPtr, Integer, GLXVideoDeviceNV, ULong*, ULong*) +- uid: OpenTK.Graphics.Glx.Glx.NV.JoinSwapGroupNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.UInt32) + commentId: M:OpenTK.Graphics.Glx.Glx.NV.JoinSwapGroupNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.UInt32) + id: JoinSwapGroupNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.UInt32) parent: OpenTK.Graphics.Glx.Glx.NV langs: - csharp - vb - name: JoinSwapGroupNV(Display*, GLXDrawable, uint) - nameWithType: Glx.NV.JoinSwapGroupNV(Display*, GLXDrawable, uint) - fullName: OpenTK.Graphics.Glx.Glx.NV.JoinSwapGroupNV(OpenTK.Graphics.Glx.Display*, OpenTK.Graphics.Glx.GLXDrawable, uint) + name: JoinSwapGroupNV(DisplayPtr, GLXDrawable, uint) + nameWithType: Glx.NV.JoinSwapGroupNV(DisplayPtr, GLXDrawable, uint) + fullName: OpenTK.Graphics.Glx.Glx.NV.JoinSwapGroupNV(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, uint) type: Method source: remote: @@ -595,31 +582,31 @@ items: summary: '[requires: GLX_NV_swap_group] [entry point: glXJoinSwapGroupNV]
' example: [] syntax: - content: public static bool JoinSwapGroupNV(Display* dpy, GLXDrawable drawable, uint group) + content: public static bool JoinSwapGroupNV(DisplayPtr dpy, GLXDrawable drawable, uint group) parameters: - id: dpy - type: OpenTK.Graphics.Glx.Display* + type: OpenTK.Graphics.Glx.DisplayPtr - id: drawable type: OpenTK.Graphics.Glx.GLXDrawable - id: group type: System.UInt32 return: type: System.Boolean - content.vb: Public Shared Function JoinSwapGroupNV(dpy As Display*, drawable As GLXDrawable, group As UInteger) As Boolean + content.vb: Public Shared Function JoinSwapGroupNV(dpy As DisplayPtr, drawable As GLXDrawable, group As UInteger) As Boolean overload: OpenTK.Graphics.Glx.Glx.NV.JoinSwapGroupNV* - nameWithType.vb: Glx.NV.JoinSwapGroupNV(Display*, GLXDrawable, UInteger) - fullName.vb: OpenTK.Graphics.Glx.Glx.NV.JoinSwapGroupNV(OpenTK.Graphics.Glx.Display*, OpenTK.Graphics.Glx.GLXDrawable, UInteger) - name.vb: JoinSwapGroupNV(Display*, GLXDrawable, UInteger) -- uid: OpenTK.Graphics.Glx.Glx.NV.LockVideoCaptureDeviceNV(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV) - commentId: M:OpenTK.Graphics.Glx.Glx.NV.LockVideoCaptureDeviceNV(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV) - id: LockVideoCaptureDeviceNV(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV) + nameWithType.vb: Glx.NV.JoinSwapGroupNV(DisplayPtr, GLXDrawable, UInteger) + fullName.vb: OpenTK.Graphics.Glx.Glx.NV.JoinSwapGroupNV(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, UInteger) + name.vb: JoinSwapGroupNV(DisplayPtr, GLXDrawable, UInteger) +- uid: OpenTK.Graphics.Glx.Glx.NV.LockVideoCaptureDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV) + commentId: M:OpenTK.Graphics.Glx.Glx.NV.LockVideoCaptureDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV) + id: LockVideoCaptureDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV) parent: OpenTK.Graphics.Glx.Glx.NV langs: - csharp - vb - name: LockVideoCaptureDeviceNV(Display*, GLXVideoCaptureDeviceNV) - nameWithType: Glx.NV.LockVideoCaptureDeviceNV(Display*, GLXVideoCaptureDeviceNV) - fullName: OpenTK.Graphics.Glx.Glx.NV.LockVideoCaptureDeviceNV(OpenTK.Graphics.Glx.Display*, OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV) + name: LockVideoCaptureDeviceNV(DisplayPtr, GLXVideoCaptureDeviceNV) + nameWithType: Glx.NV.LockVideoCaptureDeviceNV(DisplayPtr, GLXVideoCaptureDeviceNV) + fullName: OpenTK.Graphics.Glx.Glx.NV.LockVideoCaptureDeviceNV(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV) type: Method source: remote: @@ -635,24 +622,24 @@ items: summary: '[requires: GLX_NV_video_capture] [entry point: glXLockVideoCaptureDeviceNV]
' example: [] syntax: - content: public static void LockVideoCaptureDeviceNV(Display* dpy, GLXVideoCaptureDeviceNV device) + content: public static void LockVideoCaptureDeviceNV(DisplayPtr dpy, GLXVideoCaptureDeviceNV device) parameters: - id: dpy - type: OpenTK.Graphics.Glx.Display* + type: OpenTK.Graphics.Glx.DisplayPtr - id: device type: OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV - content.vb: Public Shared Sub LockVideoCaptureDeviceNV(dpy As Display*, device As GLXVideoCaptureDeviceNV) + content.vb: Public Shared Sub LockVideoCaptureDeviceNV(dpy As DisplayPtr, device As GLXVideoCaptureDeviceNV) overload: OpenTK.Graphics.Glx.Glx.NV.LockVideoCaptureDeviceNV* -- uid: OpenTK.Graphics.Glx.Glx.NV.NamedCopyBufferSubDataNV(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXContext,OpenTK.Graphics.Glx.GLXContext,System.UInt32,System.UInt32,System.IntPtr,System.IntPtr,System.IntPtr) - commentId: M:OpenTK.Graphics.Glx.Glx.NV.NamedCopyBufferSubDataNV(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXContext,OpenTK.Graphics.Glx.GLXContext,System.UInt32,System.UInt32,System.IntPtr,System.IntPtr,System.IntPtr) - id: NamedCopyBufferSubDataNV(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXContext,OpenTK.Graphics.Glx.GLXContext,System.UInt32,System.UInt32,System.IntPtr,System.IntPtr,System.IntPtr) +- uid: OpenTK.Graphics.Glx.Glx.NV.NamedCopyBufferSubDataNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext,OpenTK.Graphics.Glx.GLXContext,System.UInt32,System.UInt32,System.IntPtr,System.IntPtr,System.IntPtr) + commentId: M:OpenTK.Graphics.Glx.Glx.NV.NamedCopyBufferSubDataNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext,OpenTK.Graphics.Glx.GLXContext,System.UInt32,System.UInt32,System.IntPtr,System.IntPtr,System.IntPtr) + id: NamedCopyBufferSubDataNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext,OpenTK.Graphics.Glx.GLXContext,System.UInt32,System.UInt32,System.IntPtr,System.IntPtr,System.IntPtr) parent: OpenTK.Graphics.Glx.Glx.NV langs: - csharp - vb - name: NamedCopyBufferSubDataNV(Display*, GLXContext, GLXContext, uint, uint, nint, nint, nint) - nameWithType: Glx.NV.NamedCopyBufferSubDataNV(Display*, GLXContext, GLXContext, uint, uint, nint, nint, nint) - fullName: OpenTK.Graphics.Glx.Glx.NV.NamedCopyBufferSubDataNV(OpenTK.Graphics.Glx.Display*, OpenTK.Graphics.Glx.GLXContext, OpenTK.Graphics.Glx.GLXContext, uint, uint, nint, nint, nint) + name: NamedCopyBufferSubDataNV(DisplayPtr, GLXContext, GLXContext, uint, uint, nint, nint, nint) + nameWithType: Glx.NV.NamedCopyBufferSubDataNV(DisplayPtr, GLXContext, GLXContext, uint, uint, nint, nint, nint) + fullName: OpenTK.Graphics.Glx.Glx.NV.NamedCopyBufferSubDataNV(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXContext, OpenTK.Graphics.Glx.GLXContext, uint, uint, nint, nint, nint) type: Method source: remote: @@ -668,10 +655,10 @@ items: summary: '[requires: GLX_NV_copy_buffer] [entry point: glXNamedCopyBufferSubDataNV]
' example: [] syntax: - content: public static void NamedCopyBufferSubDataNV(Display* dpy, GLXContext readCtx, GLXContext writeCtx, uint readBuffer, uint writeBuffer, nint readOffset, nint writeOffset, nint size) + content: public static void NamedCopyBufferSubDataNV(DisplayPtr dpy, GLXContext readCtx, GLXContext writeCtx, uint readBuffer, uint writeBuffer, nint readOffset, nint writeOffset, nint size) parameters: - id: dpy - type: OpenTK.Graphics.Glx.Display* + type: OpenTK.Graphics.Glx.DisplayPtr - id: readCtx type: OpenTK.Graphics.Glx.GLXContext - id: writeCtx @@ -686,21 +673,21 @@ items: type: System.IntPtr - id: size type: System.IntPtr - content.vb: Public Shared Sub NamedCopyBufferSubDataNV(dpy As Display*, readCtx As GLXContext, writeCtx As GLXContext, readBuffer As UInteger, writeBuffer As UInteger, readOffset As IntPtr, writeOffset As IntPtr, size As IntPtr) + content.vb: Public Shared Sub NamedCopyBufferSubDataNV(dpy As DisplayPtr, readCtx As GLXContext, writeCtx As GLXContext, readBuffer As UInteger, writeBuffer As UInteger, readOffset As IntPtr, writeOffset As IntPtr, size As IntPtr) overload: OpenTK.Graphics.Glx.Glx.NV.NamedCopyBufferSubDataNV* - nameWithType.vb: Glx.NV.NamedCopyBufferSubDataNV(Display*, GLXContext, GLXContext, UInteger, UInteger, IntPtr, IntPtr, IntPtr) - fullName.vb: OpenTK.Graphics.Glx.Glx.NV.NamedCopyBufferSubDataNV(OpenTK.Graphics.Glx.Display*, OpenTK.Graphics.Glx.GLXContext, OpenTK.Graphics.Glx.GLXContext, UInteger, UInteger, System.IntPtr, System.IntPtr, System.IntPtr) - name.vb: NamedCopyBufferSubDataNV(Display*, GLXContext, GLXContext, UInteger, UInteger, IntPtr, IntPtr, IntPtr) -- uid: OpenTK.Graphics.Glx.Glx.NV.QueryFrameCountNV(OpenTK.Graphics.Glx.Display*,System.Int32,System.UInt32*) - commentId: M:OpenTK.Graphics.Glx.Glx.NV.QueryFrameCountNV(OpenTK.Graphics.Glx.Display*,System.Int32,System.UInt32*) - id: QueryFrameCountNV(OpenTK.Graphics.Glx.Display*,System.Int32,System.UInt32*) + nameWithType.vb: Glx.NV.NamedCopyBufferSubDataNV(DisplayPtr, GLXContext, GLXContext, UInteger, UInteger, IntPtr, IntPtr, IntPtr) + fullName.vb: OpenTK.Graphics.Glx.Glx.NV.NamedCopyBufferSubDataNV(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXContext, OpenTK.Graphics.Glx.GLXContext, UInteger, UInteger, System.IntPtr, System.IntPtr, System.IntPtr) + name.vb: NamedCopyBufferSubDataNV(DisplayPtr, GLXContext, GLXContext, UInteger, UInteger, IntPtr, IntPtr, IntPtr) +- uid: OpenTK.Graphics.Glx.Glx.NV.QueryFrameCountNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.UInt32*) + commentId: M:OpenTK.Graphics.Glx.Glx.NV.QueryFrameCountNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.UInt32*) + id: QueryFrameCountNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.UInt32*) parent: OpenTK.Graphics.Glx.Glx.NV langs: - csharp - vb - name: QueryFrameCountNV(Display*, int, uint*) - nameWithType: Glx.NV.QueryFrameCountNV(Display*, int, uint*) - fullName: OpenTK.Graphics.Glx.Glx.NV.QueryFrameCountNV(OpenTK.Graphics.Glx.Display*, int, uint*) + name: QueryFrameCountNV(DisplayPtr, int, uint*) + nameWithType: Glx.NV.QueryFrameCountNV(DisplayPtr, int, uint*) + fullName: OpenTK.Graphics.Glx.Glx.NV.QueryFrameCountNV(OpenTK.Graphics.Glx.DisplayPtr, int, uint*) type: Method source: remote: @@ -716,31 +703,31 @@ items: summary: '[requires: GLX_NV_swap_group] [entry point: glXQueryFrameCountNV]
' example: [] syntax: - content: public static bool QueryFrameCountNV(Display* dpy, int screen, uint* count) + content: public static bool QueryFrameCountNV(DisplayPtr dpy, int screen, uint* count) parameters: - id: dpy - type: OpenTK.Graphics.Glx.Display* + type: OpenTK.Graphics.Glx.DisplayPtr - id: screen type: System.Int32 - id: count type: System.UInt32* return: type: System.Boolean - content.vb: Public Shared Function QueryFrameCountNV(dpy As Display*, screen As Integer, count As UInteger*) As Boolean + content.vb: Public Shared Function QueryFrameCountNV(dpy As DisplayPtr, screen As Integer, count As UInteger*) As Boolean overload: OpenTK.Graphics.Glx.Glx.NV.QueryFrameCountNV* - nameWithType.vb: Glx.NV.QueryFrameCountNV(Display*, Integer, UInteger*) - fullName.vb: OpenTK.Graphics.Glx.Glx.NV.QueryFrameCountNV(OpenTK.Graphics.Glx.Display*, Integer, UInteger*) - name.vb: QueryFrameCountNV(Display*, Integer, UInteger*) -- uid: OpenTK.Graphics.Glx.Glx.NV.QueryMaxSwapGroupsNV(OpenTK.Graphics.Glx.Display*,System.Int32,System.UInt32*,System.UInt32*) - commentId: M:OpenTK.Graphics.Glx.Glx.NV.QueryMaxSwapGroupsNV(OpenTK.Graphics.Glx.Display*,System.Int32,System.UInt32*,System.UInt32*) - id: QueryMaxSwapGroupsNV(OpenTK.Graphics.Glx.Display*,System.Int32,System.UInt32*,System.UInt32*) + nameWithType.vb: Glx.NV.QueryFrameCountNV(DisplayPtr, Integer, UInteger*) + fullName.vb: OpenTK.Graphics.Glx.Glx.NV.QueryFrameCountNV(OpenTK.Graphics.Glx.DisplayPtr, Integer, UInteger*) + name.vb: QueryFrameCountNV(DisplayPtr, Integer, UInteger*) +- uid: OpenTK.Graphics.Glx.Glx.NV.QueryMaxSwapGroupsNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.UInt32*,System.UInt32*) + commentId: M:OpenTK.Graphics.Glx.Glx.NV.QueryMaxSwapGroupsNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.UInt32*,System.UInt32*) + id: QueryMaxSwapGroupsNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.UInt32*,System.UInt32*) parent: OpenTK.Graphics.Glx.Glx.NV langs: - csharp - vb - name: QueryMaxSwapGroupsNV(Display*, int, uint*, uint*) - nameWithType: Glx.NV.QueryMaxSwapGroupsNV(Display*, int, uint*, uint*) - fullName: OpenTK.Graphics.Glx.Glx.NV.QueryMaxSwapGroupsNV(OpenTK.Graphics.Glx.Display*, int, uint*, uint*) + name: QueryMaxSwapGroupsNV(DisplayPtr, int, uint*, uint*) + nameWithType: Glx.NV.QueryMaxSwapGroupsNV(DisplayPtr, int, uint*, uint*) + fullName: OpenTK.Graphics.Glx.Glx.NV.QueryMaxSwapGroupsNV(OpenTK.Graphics.Glx.DisplayPtr, int, uint*, uint*) type: Method source: remote: @@ -756,10 +743,10 @@ items: summary: '[requires: GLX_NV_swap_group] [entry point: glXQueryMaxSwapGroupsNV]
' example: [] syntax: - content: public static bool QueryMaxSwapGroupsNV(Display* dpy, int screen, uint* maxGroups, uint* maxBarriers) + content: public static bool QueryMaxSwapGroupsNV(DisplayPtr dpy, int screen, uint* maxGroups, uint* maxBarriers) parameters: - id: dpy - type: OpenTK.Graphics.Glx.Display* + type: OpenTK.Graphics.Glx.DisplayPtr - id: screen type: System.Int32 - id: maxGroups @@ -768,21 +755,21 @@ items: type: System.UInt32* return: type: System.Boolean - content.vb: Public Shared Function QueryMaxSwapGroupsNV(dpy As Display*, screen As Integer, maxGroups As UInteger*, maxBarriers As UInteger*) As Boolean + content.vb: Public Shared Function QueryMaxSwapGroupsNV(dpy As DisplayPtr, screen As Integer, maxGroups As UInteger*, maxBarriers As UInteger*) As Boolean overload: OpenTK.Graphics.Glx.Glx.NV.QueryMaxSwapGroupsNV* - nameWithType.vb: Glx.NV.QueryMaxSwapGroupsNV(Display*, Integer, UInteger*, UInteger*) - fullName.vb: OpenTK.Graphics.Glx.Glx.NV.QueryMaxSwapGroupsNV(OpenTK.Graphics.Glx.Display*, Integer, UInteger*, UInteger*) - name.vb: QueryMaxSwapGroupsNV(Display*, Integer, UInteger*, UInteger*) -- uid: OpenTK.Graphics.Glx.Glx.NV.QuerySwapGroupNV(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXDrawable,System.UInt32*,System.UInt32*) - commentId: M:OpenTK.Graphics.Glx.Glx.NV.QuerySwapGroupNV(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXDrawable,System.UInt32*,System.UInt32*) - id: QuerySwapGroupNV(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXDrawable,System.UInt32*,System.UInt32*) + nameWithType.vb: Glx.NV.QueryMaxSwapGroupsNV(DisplayPtr, Integer, UInteger*, UInteger*) + fullName.vb: OpenTK.Graphics.Glx.Glx.NV.QueryMaxSwapGroupsNV(OpenTK.Graphics.Glx.DisplayPtr, Integer, UInteger*, UInteger*) + name.vb: QueryMaxSwapGroupsNV(DisplayPtr, Integer, UInteger*, UInteger*) +- uid: OpenTK.Graphics.Glx.Glx.NV.QuerySwapGroupNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.UInt32*,System.UInt32*) + commentId: M:OpenTK.Graphics.Glx.Glx.NV.QuerySwapGroupNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.UInt32*,System.UInt32*) + id: QuerySwapGroupNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.UInt32*,System.UInt32*) parent: OpenTK.Graphics.Glx.Glx.NV langs: - csharp - vb - name: QuerySwapGroupNV(Display*, GLXDrawable, uint*, uint*) - nameWithType: Glx.NV.QuerySwapGroupNV(Display*, GLXDrawable, uint*, uint*) - fullName: OpenTK.Graphics.Glx.Glx.NV.QuerySwapGroupNV(OpenTK.Graphics.Glx.Display*, OpenTK.Graphics.Glx.GLXDrawable, uint*, uint*) + name: QuerySwapGroupNV(DisplayPtr, GLXDrawable, uint*, uint*) + nameWithType: Glx.NV.QuerySwapGroupNV(DisplayPtr, GLXDrawable, uint*, uint*) + fullName: OpenTK.Graphics.Glx.Glx.NV.QuerySwapGroupNV(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, uint*, uint*) type: Method source: remote: @@ -798,10 +785,10 @@ items: summary: '[requires: GLX_NV_swap_group] [entry point: glXQuerySwapGroupNV]
' example: [] syntax: - content: public static bool QuerySwapGroupNV(Display* dpy, GLXDrawable drawable, uint* group, uint* barrier) + content: public static bool QuerySwapGroupNV(DisplayPtr dpy, GLXDrawable drawable, uint* group, uint* barrier) parameters: - id: dpy - type: OpenTK.Graphics.Glx.Display* + type: OpenTK.Graphics.Glx.DisplayPtr - id: drawable type: OpenTK.Graphics.Glx.GLXDrawable - id: group @@ -810,21 +797,21 @@ items: type: System.UInt32* return: type: System.Boolean - content.vb: Public Shared Function QuerySwapGroupNV(dpy As Display*, drawable As GLXDrawable, group As UInteger*, barrier As UInteger*) As Boolean + content.vb: Public Shared Function QuerySwapGroupNV(dpy As DisplayPtr, drawable As GLXDrawable, group As UInteger*, barrier As UInteger*) As Boolean overload: OpenTK.Graphics.Glx.Glx.NV.QuerySwapGroupNV* - nameWithType.vb: Glx.NV.QuerySwapGroupNV(Display*, GLXDrawable, UInteger*, UInteger*) - fullName.vb: OpenTK.Graphics.Glx.Glx.NV.QuerySwapGroupNV(OpenTK.Graphics.Glx.Display*, OpenTK.Graphics.Glx.GLXDrawable, UInteger*, UInteger*) - name.vb: QuerySwapGroupNV(Display*, GLXDrawable, UInteger*, UInteger*) -- uid: OpenTK.Graphics.Glx.Glx.NV.QueryVideoCaptureDeviceNV(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV,System.Int32,System.Int32*) - commentId: M:OpenTK.Graphics.Glx.Glx.NV.QueryVideoCaptureDeviceNV(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV,System.Int32,System.Int32*) - id: QueryVideoCaptureDeviceNV(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV,System.Int32,System.Int32*) + nameWithType.vb: Glx.NV.QuerySwapGroupNV(DisplayPtr, GLXDrawable, UInteger*, UInteger*) + fullName.vb: OpenTK.Graphics.Glx.Glx.NV.QuerySwapGroupNV(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, UInteger*, UInteger*) + name.vb: QuerySwapGroupNV(DisplayPtr, GLXDrawable, UInteger*, UInteger*) +- uid: OpenTK.Graphics.Glx.Glx.NV.QueryVideoCaptureDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV,System.Int32,System.Int32*) + commentId: M:OpenTK.Graphics.Glx.Glx.NV.QueryVideoCaptureDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV,System.Int32,System.Int32*) + id: QueryVideoCaptureDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV,System.Int32,System.Int32*) parent: OpenTK.Graphics.Glx.Glx.NV langs: - csharp - vb - name: QueryVideoCaptureDeviceNV(Display*, GLXVideoCaptureDeviceNV, int, int*) - nameWithType: Glx.NV.QueryVideoCaptureDeviceNV(Display*, GLXVideoCaptureDeviceNV, int, int*) - fullName: OpenTK.Graphics.Glx.Glx.NV.QueryVideoCaptureDeviceNV(OpenTK.Graphics.Glx.Display*, OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV, int, int*) + name: QueryVideoCaptureDeviceNV(DisplayPtr, GLXVideoCaptureDeviceNV, int, int*) + nameWithType: Glx.NV.QueryVideoCaptureDeviceNV(DisplayPtr, GLXVideoCaptureDeviceNV, int, int*) + fullName: OpenTK.Graphics.Glx.Glx.NV.QueryVideoCaptureDeviceNV(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV, int, int*) type: Method source: remote: @@ -840,10 +827,10 @@ items: summary: '[requires: GLX_NV_video_capture] [entry point: glXQueryVideoCaptureDeviceNV]
' example: [] syntax: - content: public static int QueryVideoCaptureDeviceNV(Display* dpy, GLXVideoCaptureDeviceNV device, int attribute, int* value) + content: public static int QueryVideoCaptureDeviceNV(DisplayPtr dpy, GLXVideoCaptureDeviceNV device, int attribute, int* value) parameters: - id: dpy - type: OpenTK.Graphics.Glx.Display* + type: OpenTK.Graphics.Glx.DisplayPtr - id: device type: OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV - id: attribute @@ -852,21 +839,21 @@ items: type: System.Int32* return: type: System.Int32 - content.vb: Public Shared Function QueryVideoCaptureDeviceNV(dpy As Display*, device As GLXVideoCaptureDeviceNV, attribute As Integer, value As Integer*) As Integer + content.vb: Public Shared Function QueryVideoCaptureDeviceNV(dpy As DisplayPtr, device As GLXVideoCaptureDeviceNV, attribute As Integer, value As Integer*) As Integer overload: OpenTK.Graphics.Glx.Glx.NV.QueryVideoCaptureDeviceNV* - nameWithType.vb: Glx.NV.QueryVideoCaptureDeviceNV(Display*, GLXVideoCaptureDeviceNV, Integer, Integer*) - fullName.vb: OpenTK.Graphics.Glx.Glx.NV.QueryVideoCaptureDeviceNV(OpenTK.Graphics.Glx.Display*, OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV, Integer, Integer*) - name.vb: QueryVideoCaptureDeviceNV(Display*, GLXVideoCaptureDeviceNV, Integer, Integer*) -- uid: OpenTK.Graphics.Glx.Glx.NV.ReleaseVideoCaptureDeviceNV(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV) - commentId: M:OpenTK.Graphics.Glx.Glx.NV.ReleaseVideoCaptureDeviceNV(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV) - id: ReleaseVideoCaptureDeviceNV(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV) + nameWithType.vb: Glx.NV.QueryVideoCaptureDeviceNV(DisplayPtr, GLXVideoCaptureDeviceNV, Integer, Integer*) + fullName.vb: OpenTK.Graphics.Glx.Glx.NV.QueryVideoCaptureDeviceNV(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV, Integer, Integer*) + name.vb: QueryVideoCaptureDeviceNV(DisplayPtr, GLXVideoCaptureDeviceNV, Integer, Integer*) +- uid: OpenTK.Graphics.Glx.Glx.NV.ReleaseVideoCaptureDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV) + commentId: M:OpenTK.Graphics.Glx.Glx.NV.ReleaseVideoCaptureDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV) + id: ReleaseVideoCaptureDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV) parent: OpenTK.Graphics.Glx.Glx.NV langs: - csharp - vb - name: ReleaseVideoCaptureDeviceNV(Display*, GLXVideoCaptureDeviceNV) - nameWithType: Glx.NV.ReleaseVideoCaptureDeviceNV(Display*, GLXVideoCaptureDeviceNV) - fullName: OpenTK.Graphics.Glx.Glx.NV.ReleaseVideoCaptureDeviceNV(OpenTK.Graphics.Glx.Display*, OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV) + name: ReleaseVideoCaptureDeviceNV(DisplayPtr, GLXVideoCaptureDeviceNV) + nameWithType: Glx.NV.ReleaseVideoCaptureDeviceNV(DisplayPtr, GLXVideoCaptureDeviceNV) + fullName: OpenTK.Graphics.Glx.Glx.NV.ReleaseVideoCaptureDeviceNV(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV) type: Method source: remote: @@ -882,24 +869,24 @@ items: summary: '[requires: GLX_NV_video_capture] [entry point: glXReleaseVideoCaptureDeviceNV]
' example: [] syntax: - content: public static void ReleaseVideoCaptureDeviceNV(Display* dpy, GLXVideoCaptureDeviceNV device) + content: public static void ReleaseVideoCaptureDeviceNV(DisplayPtr dpy, GLXVideoCaptureDeviceNV device) parameters: - id: dpy - type: OpenTK.Graphics.Glx.Display* + type: OpenTK.Graphics.Glx.DisplayPtr - id: device type: OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV - content.vb: Public Shared Sub ReleaseVideoCaptureDeviceNV(dpy As Display*, device As GLXVideoCaptureDeviceNV) + content.vb: Public Shared Sub ReleaseVideoCaptureDeviceNV(dpy As DisplayPtr, device As GLXVideoCaptureDeviceNV) overload: OpenTK.Graphics.Glx.Glx.NV.ReleaseVideoCaptureDeviceNV* -- uid: OpenTK.Graphics.Glx.Glx.NV.ReleaseVideoDeviceNV(OpenTK.Graphics.Glx.Display*,System.Int32,OpenTK.Graphics.Glx.GLXVideoDeviceNV) - commentId: M:OpenTK.Graphics.Glx.Glx.NV.ReleaseVideoDeviceNV(OpenTK.Graphics.Glx.Display*,System.Int32,OpenTK.Graphics.Glx.GLXVideoDeviceNV) - id: ReleaseVideoDeviceNV(OpenTK.Graphics.Glx.Display*,System.Int32,OpenTK.Graphics.Glx.GLXVideoDeviceNV) +- uid: OpenTK.Graphics.Glx.Glx.NV.ReleaseVideoDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,OpenTK.Graphics.Glx.GLXVideoDeviceNV) + commentId: M:OpenTK.Graphics.Glx.Glx.NV.ReleaseVideoDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,OpenTK.Graphics.Glx.GLXVideoDeviceNV) + id: ReleaseVideoDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,OpenTK.Graphics.Glx.GLXVideoDeviceNV) parent: OpenTK.Graphics.Glx.Glx.NV langs: - csharp - vb - name: ReleaseVideoDeviceNV(Display*, int, GLXVideoDeviceNV) - nameWithType: Glx.NV.ReleaseVideoDeviceNV(Display*, int, GLXVideoDeviceNV) - fullName: OpenTK.Graphics.Glx.Glx.NV.ReleaseVideoDeviceNV(OpenTK.Graphics.Glx.Display*, int, OpenTK.Graphics.Glx.GLXVideoDeviceNV) + name: ReleaseVideoDeviceNV(DisplayPtr, int, GLXVideoDeviceNV) + nameWithType: Glx.NV.ReleaseVideoDeviceNV(DisplayPtr, int, GLXVideoDeviceNV) + fullName: OpenTK.Graphics.Glx.Glx.NV.ReleaseVideoDeviceNV(OpenTK.Graphics.Glx.DisplayPtr, int, OpenTK.Graphics.Glx.GLXVideoDeviceNV) type: Method source: remote: @@ -915,31 +902,31 @@ items: summary: '[requires: GLX_NV_video_out] [entry point: glXReleaseVideoDeviceNV]
' example: [] syntax: - content: public static int ReleaseVideoDeviceNV(Display* dpy, int screen, GLXVideoDeviceNV VideoDevice) + content: public static int ReleaseVideoDeviceNV(DisplayPtr dpy, int screen, GLXVideoDeviceNV VideoDevice) parameters: - id: dpy - type: OpenTK.Graphics.Glx.Display* + type: OpenTK.Graphics.Glx.DisplayPtr - id: screen type: System.Int32 - id: VideoDevice type: OpenTK.Graphics.Glx.GLXVideoDeviceNV return: type: System.Int32 - content.vb: Public Shared Function ReleaseVideoDeviceNV(dpy As Display*, screen As Integer, VideoDevice As GLXVideoDeviceNV) As Integer + content.vb: Public Shared Function ReleaseVideoDeviceNV(dpy As DisplayPtr, screen As Integer, VideoDevice As GLXVideoDeviceNV) As Integer overload: OpenTK.Graphics.Glx.Glx.NV.ReleaseVideoDeviceNV* - nameWithType.vb: Glx.NV.ReleaseVideoDeviceNV(Display*, Integer, GLXVideoDeviceNV) - fullName.vb: OpenTK.Graphics.Glx.Glx.NV.ReleaseVideoDeviceNV(OpenTK.Graphics.Glx.Display*, Integer, OpenTK.Graphics.Glx.GLXVideoDeviceNV) - name.vb: ReleaseVideoDeviceNV(Display*, Integer, GLXVideoDeviceNV) -- uid: OpenTK.Graphics.Glx.Glx.NV.ReleaseVideoImageNV(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXPbuffer) - commentId: M:OpenTK.Graphics.Glx.Glx.NV.ReleaseVideoImageNV(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXPbuffer) - id: ReleaseVideoImageNV(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXPbuffer) + nameWithType.vb: Glx.NV.ReleaseVideoDeviceNV(DisplayPtr, Integer, GLXVideoDeviceNV) + fullName.vb: OpenTK.Graphics.Glx.Glx.NV.ReleaseVideoDeviceNV(OpenTK.Graphics.Glx.DisplayPtr, Integer, OpenTK.Graphics.Glx.GLXVideoDeviceNV) + name.vb: ReleaseVideoDeviceNV(DisplayPtr, Integer, GLXVideoDeviceNV) +- uid: OpenTK.Graphics.Glx.Glx.NV.ReleaseVideoImageNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXPbuffer) + commentId: M:OpenTK.Graphics.Glx.Glx.NV.ReleaseVideoImageNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXPbuffer) + id: ReleaseVideoImageNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXPbuffer) parent: OpenTK.Graphics.Glx.Glx.NV langs: - csharp - vb - name: ReleaseVideoImageNV(Display*, GLXPbuffer) - nameWithType: Glx.NV.ReleaseVideoImageNV(Display*, GLXPbuffer) - fullName: OpenTK.Graphics.Glx.Glx.NV.ReleaseVideoImageNV(OpenTK.Graphics.Glx.Display*, OpenTK.Graphics.Glx.GLXPbuffer) + name: ReleaseVideoImageNV(DisplayPtr, GLXPbuffer) + nameWithType: Glx.NV.ReleaseVideoImageNV(DisplayPtr, GLXPbuffer) + fullName: OpenTK.Graphics.Glx.Glx.NV.ReleaseVideoImageNV(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXPbuffer) type: Method source: remote: @@ -955,26 +942,26 @@ items: summary: '[requires: GLX_NV_video_out] [entry point: glXReleaseVideoImageNV]
' example: [] syntax: - content: public static int ReleaseVideoImageNV(Display* dpy, GLXPbuffer pbuf) + content: public static int ReleaseVideoImageNV(DisplayPtr dpy, GLXPbuffer pbuf) parameters: - id: dpy - type: OpenTK.Graphics.Glx.Display* + type: OpenTK.Graphics.Glx.DisplayPtr - id: pbuf type: OpenTK.Graphics.Glx.GLXPbuffer return: type: System.Int32 - content.vb: Public Shared Function ReleaseVideoImageNV(dpy As Display*, pbuf As GLXPbuffer) As Integer + content.vb: Public Shared Function ReleaseVideoImageNV(dpy As DisplayPtr, pbuf As GLXPbuffer) As Integer overload: OpenTK.Graphics.Glx.Glx.NV.ReleaseVideoImageNV* -- uid: OpenTK.Graphics.Glx.Glx.NV.ResetFrameCountNV(OpenTK.Graphics.Glx.Display*,System.Int32) - commentId: M:OpenTK.Graphics.Glx.Glx.NV.ResetFrameCountNV(OpenTK.Graphics.Glx.Display*,System.Int32) - id: ResetFrameCountNV(OpenTK.Graphics.Glx.Display*,System.Int32) +- uid: OpenTK.Graphics.Glx.Glx.NV.ResetFrameCountNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32) + commentId: M:OpenTK.Graphics.Glx.Glx.NV.ResetFrameCountNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32) + id: ResetFrameCountNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32) parent: OpenTK.Graphics.Glx.Glx.NV langs: - csharp - vb - name: ResetFrameCountNV(Display*, int) - nameWithType: Glx.NV.ResetFrameCountNV(Display*, int) - fullName: OpenTK.Graphics.Glx.Glx.NV.ResetFrameCountNV(OpenTK.Graphics.Glx.Display*, int) + name: ResetFrameCountNV(DisplayPtr, int) + nameWithType: Glx.NV.ResetFrameCountNV(DisplayPtr, int) + fullName: OpenTK.Graphics.Glx.Glx.NV.ResetFrameCountNV(OpenTK.Graphics.Glx.DisplayPtr, int) type: Method source: remote: @@ -990,29 +977,29 @@ items: summary: '[requires: GLX_NV_swap_group] [entry point: glXResetFrameCountNV]
' example: [] syntax: - content: public static bool ResetFrameCountNV(Display* dpy, int screen) + content: public static bool ResetFrameCountNV(DisplayPtr dpy, int screen) parameters: - id: dpy - type: OpenTK.Graphics.Glx.Display* + type: OpenTK.Graphics.Glx.DisplayPtr - id: screen type: System.Int32 return: type: System.Boolean - content.vb: Public Shared Function ResetFrameCountNV(dpy As Display*, screen As Integer) As Boolean + content.vb: Public Shared Function ResetFrameCountNV(dpy As DisplayPtr, screen As Integer) As Boolean overload: OpenTK.Graphics.Glx.Glx.NV.ResetFrameCountNV* - nameWithType.vb: Glx.NV.ResetFrameCountNV(Display*, Integer) - fullName.vb: OpenTK.Graphics.Glx.Glx.NV.ResetFrameCountNV(OpenTK.Graphics.Glx.Display*, Integer) - name.vb: ResetFrameCountNV(Display*, Integer) -- uid: OpenTK.Graphics.Glx.Glx.NV.SendPbufferToVideoNV(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXPbuffer,System.Int32,System.UInt64*,System.Boolean) - commentId: M:OpenTK.Graphics.Glx.Glx.NV.SendPbufferToVideoNV(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXPbuffer,System.Int32,System.UInt64*,System.Boolean) - id: SendPbufferToVideoNV(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXPbuffer,System.Int32,System.UInt64*,System.Boolean) + nameWithType.vb: Glx.NV.ResetFrameCountNV(DisplayPtr, Integer) + fullName.vb: OpenTK.Graphics.Glx.Glx.NV.ResetFrameCountNV(OpenTK.Graphics.Glx.DisplayPtr, Integer) + name.vb: ResetFrameCountNV(DisplayPtr, Integer) +- uid: OpenTK.Graphics.Glx.Glx.NV.SendPbufferToVideoNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXPbuffer,System.Int32,System.UInt64*,System.Boolean) + commentId: M:OpenTK.Graphics.Glx.Glx.NV.SendPbufferToVideoNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXPbuffer,System.Int32,System.UInt64*,System.Boolean) + id: SendPbufferToVideoNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXPbuffer,System.Int32,System.UInt64*,System.Boolean) parent: OpenTK.Graphics.Glx.Glx.NV langs: - csharp - vb - name: SendPbufferToVideoNV(Display*, GLXPbuffer, int, ulong*, bool) - nameWithType: Glx.NV.SendPbufferToVideoNV(Display*, GLXPbuffer, int, ulong*, bool) - fullName: OpenTK.Graphics.Glx.Glx.NV.SendPbufferToVideoNV(OpenTK.Graphics.Glx.Display*, OpenTK.Graphics.Glx.GLXPbuffer, int, ulong*, bool) + name: SendPbufferToVideoNV(DisplayPtr, GLXPbuffer, int, ulong*, bool) + nameWithType: Glx.NV.SendPbufferToVideoNV(DisplayPtr, GLXPbuffer, int, ulong*, bool) + fullName: OpenTK.Graphics.Glx.Glx.NV.SendPbufferToVideoNV(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXPbuffer, int, ulong*, bool) type: Method source: remote: @@ -1028,10 +1015,10 @@ items: summary: '[requires: GLX_NV_video_out] [entry point: glXSendPbufferToVideoNV]
' example: [] syntax: - content: public static int SendPbufferToVideoNV(Display* dpy, GLXPbuffer pbuf, int iBufferType, ulong* pulCounterPbuffer, bool bBlock) + content: public static int SendPbufferToVideoNV(DisplayPtr dpy, GLXPbuffer pbuf, int iBufferType, ulong* pulCounterPbuffer, bool bBlock) parameters: - id: dpy - type: OpenTK.Graphics.Glx.Display* + type: OpenTK.Graphics.Glx.DisplayPtr - id: pbuf type: OpenTK.Graphics.Glx.GLXPbuffer - id: iBufferType @@ -1042,111 +1029,21 @@ items: type: System.Boolean return: type: System.Int32 - content.vb: Public Shared Function SendPbufferToVideoNV(dpy As Display*, pbuf As GLXPbuffer, iBufferType As Integer, pulCounterPbuffer As ULong*, bBlock As Boolean) As Integer + content.vb: Public Shared Function SendPbufferToVideoNV(dpy As DisplayPtr, pbuf As GLXPbuffer, iBufferType As Integer, pulCounterPbuffer As ULong*, bBlock As Boolean) As Integer overload: OpenTK.Graphics.Glx.Glx.NV.SendPbufferToVideoNV* - nameWithType.vb: Glx.NV.SendPbufferToVideoNV(Display*, GLXPbuffer, Integer, ULong*, Boolean) - fullName.vb: OpenTK.Graphics.Glx.Glx.NV.SendPbufferToVideoNV(OpenTK.Graphics.Glx.Display*, OpenTK.Graphics.Glx.GLXPbuffer, Integer, ULong*, Boolean) - name.vb: SendPbufferToVideoNV(Display*, GLXPbuffer, Integer, ULong*, Boolean) -- uid: OpenTK.Graphics.Glx.Glx.NV.BindSwapBarrierNV(OpenTK.Graphics.Glx.Display@,System.UInt32,System.UInt32) - commentId: M:OpenTK.Graphics.Glx.Glx.NV.BindSwapBarrierNV(OpenTK.Graphics.Glx.Display@,System.UInt32,System.UInt32) - id: BindSwapBarrierNV(OpenTK.Graphics.Glx.Display@,System.UInt32,System.UInt32) + nameWithType.vb: Glx.NV.SendPbufferToVideoNV(DisplayPtr, GLXPbuffer, Integer, ULong*, Boolean) + fullName.vb: OpenTK.Graphics.Glx.Glx.NV.SendPbufferToVideoNV(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXPbuffer, Integer, ULong*, Boolean) + name.vb: SendPbufferToVideoNV(DisplayPtr, GLXPbuffer, Integer, ULong*, Boolean) +- uid: OpenTK.Graphics.Glx.Glx.NV.BindVideoDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,System.UInt32,System.UInt32,System.Int32@) + commentId: M:OpenTK.Graphics.Glx.Glx.NV.BindVideoDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,System.UInt32,System.UInt32,System.Int32@) + id: BindVideoDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,System.UInt32,System.UInt32,System.Int32@) parent: OpenTK.Graphics.Glx.Glx.NV langs: - csharp - vb - name: BindSwapBarrierNV(ref Display, uint, uint) - nameWithType: Glx.NV.BindSwapBarrierNV(ref Display, uint, uint) - fullName: OpenTK.Graphics.Glx.Glx.NV.BindSwapBarrierNV(ref OpenTK.Graphics.Glx.Display, uint, uint) - type: Method - source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: BindSwapBarrierNV - path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 557 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_NV_swap_group] - - [entry point: glXBindSwapBarrierNV] - -
- example: [] - syntax: - content: public static bool BindSwapBarrierNV(ref Display dpy, uint group, uint barrier) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.Display - - id: group - type: System.UInt32 - - id: barrier - type: System.UInt32 - return: - type: System.Boolean - content.vb: Public Shared Function BindSwapBarrierNV(dpy As Display, group As UInteger, barrier As UInteger) As Boolean - overload: OpenTK.Graphics.Glx.Glx.NV.BindSwapBarrierNV* - nameWithType.vb: Glx.NV.BindSwapBarrierNV(Display, UInteger, UInteger) - fullName.vb: OpenTK.Graphics.Glx.Glx.NV.BindSwapBarrierNV(OpenTK.Graphics.Glx.Display, UInteger, UInteger) - name.vb: BindSwapBarrierNV(Display, UInteger, UInteger) -- uid: OpenTK.Graphics.Glx.Glx.NV.BindVideoCaptureDeviceNV(OpenTK.Graphics.Glx.Display@,System.UInt32,OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV) - commentId: M:OpenTK.Graphics.Glx.Glx.NV.BindVideoCaptureDeviceNV(OpenTK.Graphics.Glx.Display@,System.UInt32,OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV) - id: BindVideoCaptureDeviceNV(OpenTK.Graphics.Glx.Display@,System.UInt32,OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV) - parent: OpenTK.Graphics.Glx.Glx.NV - langs: - - csharp - - vb - name: BindVideoCaptureDeviceNV(ref Display, uint, GLXVideoCaptureDeviceNV) - nameWithType: Glx.NV.BindVideoCaptureDeviceNV(ref Display, uint, GLXVideoCaptureDeviceNV) - fullName: OpenTK.Graphics.Glx.Glx.NV.BindVideoCaptureDeviceNV(ref OpenTK.Graphics.Glx.Display, uint, OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV) - type: Method - source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: BindVideoCaptureDeviceNV - path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 567 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_NV_video_capture] - - [entry point: glXBindVideoCaptureDeviceNV] - -
- example: [] - syntax: - content: public static int BindVideoCaptureDeviceNV(ref Display dpy, uint video_capture_slot, GLXVideoCaptureDeviceNV device) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.Display - - id: video_capture_slot - type: System.UInt32 - - id: device - type: OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV - return: - type: System.Int32 - content.vb: Public Shared Function BindVideoCaptureDeviceNV(dpy As Display, video_capture_slot As UInteger, device As GLXVideoCaptureDeviceNV) As Integer - overload: OpenTK.Graphics.Glx.Glx.NV.BindVideoCaptureDeviceNV* - nameWithType.vb: Glx.NV.BindVideoCaptureDeviceNV(Display, UInteger, GLXVideoCaptureDeviceNV) - fullName.vb: OpenTK.Graphics.Glx.Glx.NV.BindVideoCaptureDeviceNV(OpenTK.Graphics.Glx.Display, UInteger, OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV) - name.vb: BindVideoCaptureDeviceNV(Display, UInteger, GLXVideoCaptureDeviceNV) -- uid: OpenTK.Graphics.Glx.Glx.NV.BindVideoDeviceNV(OpenTK.Graphics.Glx.Display@,System.UInt32,System.UInt32,System.Int32@) - commentId: M:OpenTK.Graphics.Glx.Glx.NV.BindVideoDeviceNV(OpenTK.Graphics.Glx.Display@,System.UInt32,System.UInt32,System.Int32@) - id: BindVideoDeviceNV(OpenTK.Graphics.Glx.Display@,System.UInt32,System.UInt32,System.Int32@) - parent: OpenTK.Graphics.Glx.Glx.NV - langs: - - csharp - - vb - name: BindVideoDeviceNV(ref Display, uint, uint, in int) - nameWithType: Glx.NV.BindVideoDeviceNV(ref Display, uint, uint, in int) - fullName: OpenTK.Graphics.Glx.Glx.NV.BindVideoDeviceNV(ref OpenTK.Graphics.Glx.Display, uint, uint, in int) + name: BindVideoDeviceNV(DisplayPtr, uint, uint, in int) + nameWithType: Glx.NV.BindVideoDeviceNV(DisplayPtr, uint, uint, in int) + fullName: OpenTK.Graphics.Glx.Glx.NV.BindVideoDeviceNV(OpenTK.Graphics.Glx.DisplayPtr, uint, uint, in int) type: Method source: remote: @@ -1155,7 +1052,7 @@ items: repo: https://github.com/opentk/opentk.git id: BindVideoDeviceNV path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 577 + startLine: 328 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -1167,10 +1064,10 @@ items:
example: [] syntax: - content: public static int BindVideoDeviceNV(ref Display dpy, uint video_slot, uint video_device, in int attrib_list) + content: public static int BindVideoDeviceNV(DisplayPtr dpy, uint video_slot, uint video_device, in int attrib_list) parameters: - id: dpy - type: OpenTK.Graphics.Glx.Display + type: OpenTK.Graphics.Glx.DisplayPtr - id: video_slot type: System.UInt32 - id: video_device @@ -1179,239 +1076,21 @@ items: type: System.Int32 return: type: System.Int32 - content.vb: Public Shared Function BindVideoDeviceNV(dpy As Display, video_slot As UInteger, video_device As UInteger, attrib_list As Integer) As Integer + content.vb: Public Shared Function BindVideoDeviceNV(dpy As DisplayPtr, video_slot As UInteger, video_device As UInteger, attrib_list As Integer) As Integer overload: OpenTK.Graphics.Glx.Glx.NV.BindVideoDeviceNV* - nameWithType.vb: Glx.NV.BindVideoDeviceNV(Display, UInteger, UInteger, Integer) - fullName.vb: OpenTK.Graphics.Glx.Glx.NV.BindVideoDeviceNV(OpenTK.Graphics.Glx.Display, UInteger, UInteger, Integer) - name.vb: BindVideoDeviceNV(Display, UInteger, UInteger, Integer) -- uid: OpenTK.Graphics.Glx.Glx.NV.BindVideoImageNV(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXVideoDeviceNV,OpenTK.Graphics.Glx.GLXPbuffer,System.Int32) - commentId: M:OpenTK.Graphics.Glx.Glx.NV.BindVideoImageNV(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXVideoDeviceNV,OpenTK.Graphics.Glx.GLXPbuffer,System.Int32) - id: BindVideoImageNV(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXVideoDeviceNV,OpenTK.Graphics.Glx.GLXPbuffer,System.Int32) - parent: OpenTK.Graphics.Glx.Glx.NV - langs: - - csharp - - vb - name: BindVideoImageNV(ref Display, GLXVideoDeviceNV, GLXPbuffer, int) - nameWithType: Glx.NV.BindVideoImageNV(ref Display, GLXVideoDeviceNV, GLXPbuffer, int) - fullName: OpenTK.Graphics.Glx.Glx.NV.BindVideoImageNV(ref OpenTK.Graphics.Glx.Display, OpenTK.Graphics.Glx.GLXVideoDeviceNV, OpenTK.Graphics.Glx.GLXPbuffer, int) - type: Method - source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: BindVideoImageNV - path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 588 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_NV_video_out] - - [entry point: glXBindVideoImageNV] - -
- example: [] - syntax: - content: public static int BindVideoImageNV(ref Display dpy, GLXVideoDeviceNV VideoDevice, GLXPbuffer pbuf, int iVideoBuffer) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.Display - - id: VideoDevice - type: OpenTK.Graphics.Glx.GLXVideoDeviceNV - - id: pbuf - type: OpenTK.Graphics.Glx.GLXPbuffer - - id: iVideoBuffer - type: System.Int32 - return: - type: System.Int32 - content.vb: Public Shared Function BindVideoImageNV(dpy As Display, VideoDevice As GLXVideoDeviceNV, pbuf As GLXPbuffer, iVideoBuffer As Integer) As Integer - overload: OpenTK.Graphics.Glx.Glx.NV.BindVideoImageNV* - nameWithType.vb: Glx.NV.BindVideoImageNV(Display, GLXVideoDeviceNV, GLXPbuffer, Integer) - fullName.vb: OpenTK.Graphics.Glx.Glx.NV.BindVideoImageNV(OpenTK.Graphics.Glx.Display, OpenTK.Graphics.Glx.GLXVideoDeviceNV, OpenTK.Graphics.Glx.GLXPbuffer, Integer) - name.vb: BindVideoImageNV(Display, GLXVideoDeviceNV, GLXPbuffer, Integer) -- uid: OpenTK.Graphics.Glx.Glx.NV.CopyBufferSubDataNV(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXContext,OpenTK.Graphics.Glx.GLXContext,OpenTK.Graphics.Glx.All,OpenTK.Graphics.Glx.All,System.IntPtr,System.IntPtr,System.IntPtr) - commentId: M:OpenTK.Graphics.Glx.Glx.NV.CopyBufferSubDataNV(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXContext,OpenTK.Graphics.Glx.GLXContext,OpenTK.Graphics.Glx.All,OpenTK.Graphics.Glx.All,System.IntPtr,System.IntPtr,System.IntPtr) - id: CopyBufferSubDataNV(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXContext,OpenTK.Graphics.Glx.GLXContext,OpenTK.Graphics.Glx.All,OpenTK.Graphics.Glx.All,System.IntPtr,System.IntPtr,System.IntPtr) - parent: OpenTK.Graphics.Glx.Glx.NV - langs: - - csharp - - vb - name: CopyBufferSubDataNV(ref Display, GLXContext, GLXContext, All, All, nint, nint, nint) - nameWithType: Glx.NV.CopyBufferSubDataNV(ref Display, GLXContext, GLXContext, All, All, nint, nint, nint) - fullName: OpenTK.Graphics.Glx.Glx.NV.CopyBufferSubDataNV(ref OpenTK.Graphics.Glx.Display, OpenTK.Graphics.Glx.GLXContext, OpenTK.Graphics.Glx.GLXContext, OpenTK.Graphics.Glx.All, OpenTK.Graphics.Glx.All, nint, nint, nint) - type: Method - source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: CopyBufferSubDataNV - path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 598 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_NV_copy_buffer] - - [entry point: glXCopyBufferSubDataNV] - -
- example: [] - syntax: - content: public static void CopyBufferSubDataNV(ref Display dpy, GLXContext readCtx, GLXContext writeCtx, All readTarget, All writeTarget, nint readOffset, nint writeOffset, nint size) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.Display - - id: readCtx - type: OpenTK.Graphics.Glx.GLXContext - - id: writeCtx - type: OpenTK.Graphics.Glx.GLXContext - - id: readTarget - type: OpenTK.Graphics.Glx.All - - id: writeTarget - type: OpenTK.Graphics.Glx.All - - id: readOffset - type: System.IntPtr - - id: writeOffset - type: System.IntPtr - - id: size - type: System.IntPtr - content.vb: Public Shared Sub CopyBufferSubDataNV(dpy As Display, readCtx As GLXContext, writeCtx As GLXContext, readTarget As All, writeTarget As All, readOffset As IntPtr, writeOffset As IntPtr, size As IntPtr) - overload: OpenTK.Graphics.Glx.Glx.NV.CopyBufferSubDataNV* - nameWithType.vb: Glx.NV.CopyBufferSubDataNV(Display, GLXContext, GLXContext, All, All, IntPtr, IntPtr, IntPtr) - fullName.vb: OpenTK.Graphics.Glx.Glx.NV.CopyBufferSubDataNV(OpenTK.Graphics.Glx.Display, OpenTK.Graphics.Glx.GLXContext, OpenTK.Graphics.Glx.GLXContext, OpenTK.Graphics.Glx.All, OpenTK.Graphics.Glx.All, System.IntPtr, System.IntPtr, System.IntPtr) - name.vb: CopyBufferSubDataNV(Display, GLXContext, GLXContext, All, All, IntPtr, IntPtr, IntPtr) -- uid: OpenTK.Graphics.Glx.Glx.NV.CopyImageSubDataNV(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXContext,System.UInt32,OpenTK.Graphics.Glx.All,System.Int32,System.Int32,System.Int32,System.Int32,OpenTK.Graphics.Glx.GLXContext,System.UInt32,OpenTK.Graphics.Glx.All,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32) - commentId: M:OpenTK.Graphics.Glx.Glx.NV.CopyImageSubDataNV(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXContext,System.UInt32,OpenTK.Graphics.Glx.All,System.Int32,System.Int32,System.Int32,System.Int32,OpenTK.Graphics.Glx.GLXContext,System.UInt32,OpenTK.Graphics.Glx.All,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32) - id: CopyImageSubDataNV(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXContext,System.UInt32,OpenTK.Graphics.Glx.All,System.Int32,System.Int32,System.Int32,System.Int32,OpenTK.Graphics.Glx.GLXContext,System.UInt32,OpenTK.Graphics.Glx.All,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32) - parent: OpenTK.Graphics.Glx.Glx.NV - langs: - - csharp - - vb - name: CopyImageSubDataNV(ref Display, GLXContext, uint, All, int, int, int, int, GLXContext, uint, All, int, int, int, int, int, int, int) - nameWithType: Glx.NV.CopyImageSubDataNV(ref Display, GLXContext, uint, All, int, int, int, int, GLXContext, uint, All, int, int, int, int, int, int, int) - fullName: OpenTK.Graphics.Glx.Glx.NV.CopyImageSubDataNV(ref OpenTK.Graphics.Glx.Display, OpenTK.Graphics.Glx.GLXContext, uint, OpenTK.Graphics.Glx.All, int, int, int, int, OpenTK.Graphics.Glx.GLXContext, uint, OpenTK.Graphics.Glx.All, int, int, int, int, int, int, int) - type: Method - source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: CopyImageSubDataNV - path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 606 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_NV_copy_image] - - [entry point: glXCopyImageSubDataNV] - -
- example: [] - syntax: - content: public static void CopyImageSubDataNV(ref Display dpy, GLXContext srcCtx, uint srcName, All srcTarget, int srcLevel, int srcX, int srcY, int srcZ, GLXContext dstCtx, uint dstName, All dstTarget, int dstLevel, int dstX, int dstY, int dstZ, int width, int height, int depth) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.Display - - id: srcCtx - type: OpenTK.Graphics.Glx.GLXContext - - id: srcName - type: System.UInt32 - - id: srcTarget - type: OpenTK.Graphics.Glx.All - - id: srcLevel - type: System.Int32 - - id: srcX - type: System.Int32 - - id: srcY - type: System.Int32 - - id: srcZ - type: System.Int32 - - id: dstCtx - type: OpenTK.Graphics.Glx.GLXContext - - id: dstName - type: System.UInt32 - - id: dstTarget - type: OpenTK.Graphics.Glx.All - - id: dstLevel - type: System.Int32 - - id: dstX - type: System.Int32 - - id: dstY - type: System.Int32 - - id: dstZ - type: System.Int32 - - id: width - type: System.Int32 - - id: height - type: System.Int32 - - id: depth - type: System.Int32 - content.vb: Public Shared Sub CopyImageSubDataNV(dpy As Display, srcCtx As GLXContext, srcName As UInteger, srcTarget As All, srcLevel As Integer, srcX As Integer, srcY As Integer, srcZ As Integer, dstCtx As GLXContext, dstName As UInteger, dstTarget As All, dstLevel As Integer, dstX As Integer, dstY As Integer, dstZ As Integer, width As Integer, height As Integer, depth As Integer) - overload: OpenTK.Graphics.Glx.Glx.NV.CopyImageSubDataNV* - nameWithType.vb: Glx.NV.CopyImageSubDataNV(Display, GLXContext, UInteger, All, Integer, Integer, Integer, Integer, GLXContext, UInteger, All, Integer, Integer, Integer, Integer, Integer, Integer, Integer) - fullName.vb: OpenTK.Graphics.Glx.Glx.NV.CopyImageSubDataNV(OpenTK.Graphics.Glx.Display, OpenTK.Graphics.Glx.GLXContext, UInteger, OpenTK.Graphics.Glx.All, Integer, Integer, Integer, Integer, OpenTK.Graphics.Glx.GLXContext, UInteger, OpenTK.Graphics.Glx.All, Integer, Integer, Integer, Integer, Integer, Integer, Integer) - name.vb: CopyImageSubDataNV(Display, GLXContext, UInteger, All, Integer, Integer, Integer, Integer, GLXContext, UInteger, All, Integer, Integer, Integer, Integer, Integer, Integer, Integer) -- uid: OpenTK.Graphics.Glx.Glx.NV.DelayBeforeSwapNV(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXDrawable,System.Single) - commentId: M:OpenTK.Graphics.Glx.Glx.NV.DelayBeforeSwapNV(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXDrawable,System.Single) - id: DelayBeforeSwapNV(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXDrawable,System.Single) - parent: OpenTK.Graphics.Glx.Glx.NV - langs: - - csharp - - vb - name: DelayBeforeSwapNV(ref Display, GLXDrawable, float) - nameWithType: Glx.NV.DelayBeforeSwapNV(ref Display, GLXDrawable, float) - fullName: OpenTK.Graphics.Glx.Glx.NV.DelayBeforeSwapNV(ref OpenTK.Graphics.Glx.Display, OpenTK.Graphics.Glx.GLXDrawable, float) - type: Method - source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: DelayBeforeSwapNV - path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 614 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_NV_delay_before_swap] - - [entry point: glXDelayBeforeSwapNV] - -
- example: [] - syntax: - content: public static bool DelayBeforeSwapNV(ref Display dpy, GLXDrawable drawable, float seconds) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.Display - - id: drawable - type: OpenTK.Graphics.Glx.GLXDrawable - - id: seconds - type: System.Single - return: - type: System.Boolean - content.vb: Public Shared Function DelayBeforeSwapNV(dpy As Display, drawable As GLXDrawable, seconds As Single) As Boolean - overload: OpenTK.Graphics.Glx.Glx.NV.DelayBeforeSwapNV* - nameWithType.vb: Glx.NV.DelayBeforeSwapNV(Display, GLXDrawable, Single) - fullName.vb: OpenTK.Graphics.Glx.Glx.NV.DelayBeforeSwapNV(OpenTK.Graphics.Glx.Display, OpenTK.Graphics.Glx.GLXDrawable, Single) - name.vb: DelayBeforeSwapNV(Display, GLXDrawable, Single) -- uid: OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoCaptureDevicesNV(OpenTK.Graphics.Glx.Display@,System.Int32,System.Int32@) - commentId: M:OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoCaptureDevicesNV(OpenTK.Graphics.Glx.Display@,System.Int32,System.Int32@) - id: EnumerateVideoCaptureDevicesNV(OpenTK.Graphics.Glx.Display@,System.Int32,System.Int32@) + nameWithType.vb: Glx.NV.BindVideoDeviceNV(DisplayPtr, UInteger, UInteger, Integer) + fullName.vb: OpenTK.Graphics.Glx.Glx.NV.BindVideoDeviceNV(OpenTK.Graphics.Glx.DisplayPtr, UInteger, UInteger, Integer) + name.vb: BindVideoDeviceNV(DisplayPtr, UInteger, UInteger, Integer) +- uid: OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoCaptureDevicesNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32@) + commentId: M:OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoCaptureDevicesNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32@) + id: EnumerateVideoCaptureDevicesNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32@) parent: OpenTK.Graphics.Glx.Glx.NV langs: - csharp - vb - name: EnumerateVideoCaptureDevicesNV(ref Display, int, ref int) - nameWithType: Glx.NV.EnumerateVideoCaptureDevicesNV(ref Display, int, ref int) - fullName: OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoCaptureDevicesNV(ref OpenTK.Graphics.Glx.Display, int, ref int) + name: EnumerateVideoCaptureDevicesNV(DisplayPtr, int, ref int) + nameWithType: Glx.NV.EnumerateVideoCaptureDevicesNV(DisplayPtr, int, ref int) + fullName: OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoCaptureDevicesNV(OpenTK.Graphics.Glx.DisplayPtr, int, ref int) type: Method source: remote: @@ -1420,7 +1099,7 @@ items: repo: https://github.com/opentk/opentk.git id: EnumerateVideoCaptureDevicesNV path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 624 + startLine: 338 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -1432,31 +1111,31 @@ items:
example: [] syntax: - content: public static GLXVideoCaptureDeviceNV* EnumerateVideoCaptureDevicesNV(ref Display dpy, int screen, ref int nelements) + content: public static GLXVideoCaptureDeviceNV* EnumerateVideoCaptureDevicesNV(DisplayPtr dpy, int screen, ref int nelements) parameters: - id: dpy - type: OpenTK.Graphics.Glx.Display + type: OpenTK.Graphics.Glx.DisplayPtr - id: screen type: System.Int32 - id: nelements type: System.Int32 return: type: OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV* - content.vb: Public Shared Function EnumerateVideoCaptureDevicesNV(dpy As Display, screen As Integer, nelements As Integer) As GLXVideoCaptureDeviceNV* + content.vb: Public Shared Function EnumerateVideoCaptureDevicesNV(dpy As DisplayPtr, screen As Integer, nelements As Integer) As GLXVideoCaptureDeviceNV* overload: OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoCaptureDevicesNV* - nameWithType.vb: Glx.NV.EnumerateVideoCaptureDevicesNV(Display, Integer, Integer) - fullName.vb: OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoCaptureDevicesNV(OpenTK.Graphics.Glx.Display, Integer, Integer) - name.vb: EnumerateVideoCaptureDevicesNV(Display, Integer, Integer) -- uid: OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoDevicesNV(OpenTK.Graphics.Glx.Display@,System.Int32,System.Int32@) - commentId: M:OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoDevicesNV(OpenTK.Graphics.Glx.Display@,System.Int32,System.Int32@) - id: EnumerateVideoDevicesNV(OpenTK.Graphics.Glx.Display@,System.Int32,System.Int32@) + nameWithType.vb: Glx.NV.EnumerateVideoCaptureDevicesNV(DisplayPtr, Integer, Integer) + fullName.vb: OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoCaptureDevicesNV(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer) + name.vb: EnumerateVideoCaptureDevicesNV(DisplayPtr, Integer, Integer) +- uid: OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoDevicesNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32@) + commentId: M:OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoDevicesNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32@) + id: EnumerateVideoDevicesNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32@) parent: OpenTK.Graphics.Glx.Glx.NV langs: - csharp - vb - name: EnumerateVideoDevicesNV(ref Display, int, ref int) - nameWithType: Glx.NV.EnumerateVideoDevicesNV(ref Display, int, ref int) - fullName: OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoDevicesNV(ref OpenTK.Graphics.Glx.Display, int, ref int) + name: EnumerateVideoDevicesNV(DisplayPtr, int, ref int) + nameWithType: Glx.NV.EnumerateVideoDevicesNV(DisplayPtr, int, ref int) + fullName: OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoDevicesNV(OpenTK.Graphics.Glx.DisplayPtr, int, ref int) type: Method source: remote: @@ -1465,7 +1144,7 @@ items: repo: https://github.com/opentk/opentk.git id: EnumerateVideoDevicesNV path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 635 + startLine: 348 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -1477,31 +1156,31 @@ items:
example: [] syntax: - content: public static uint* EnumerateVideoDevicesNV(ref Display dpy, int screen, ref int nelements) + content: public static uint* EnumerateVideoDevicesNV(DisplayPtr dpy, int screen, ref int nelements) parameters: - id: dpy - type: OpenTK.Graphics.Glx.Display + type: OpenTK.Graphics.Glx.DisplayPtr - id: screen type: System.Int32 - id: nelements type: System.Int32 return: type: System.UInt32* - content.vb: Public Shared Function EnumerateVideoDevicesNV(dpy As Display, screen As Integer, nelements As Integer) As UInteger* + content.vb: Public Shared Function EnumerateVideoDevicesNV(dpy As DisplayPtr, screen As Integer, nelements As Integer) As UInteger* overload: OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoDevicesNV* - nameWithType.vb: Glx.NV.EnumerateVideoDevicesNV(Display, Integer, Integer) - fullName.vb: OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoDevicesNV(OpenTK.Graphics.Glx.Display, Integer, Integer) - name.vb: EnumerateVideoDevicesNV(Display, Integer, Integer) -- uid: OpenTK.Graphics.Glx.Glx.NV.GetVideoDeviceNV(OpenTK.Graphics.Glx.Display@,System.Int32,System.Int32,OpenTK.Graphics.Glx.GLXVideoDeviceNV@) - commentId: M:OpenTK.Graphics.Glx.Glx.NV.GetVideoDeviceNV(OpenTK.Graphics.Glx.Display@,System.Int32,System.Int32,OpenTK.Graphics.Glx.GLXVideoDeviceNV@) - id: GetVideoDeviceNV(OpenTK.Graphics.Glx.Display@,System.Int32,System.Int32,OpenTK.Graphics.Glx.GLXVideoDeviceNV@) + nameWithType.vb: Glx.NV.EnumerateVideoDevicesNV(DisplayPtr, Integer, Integer) + fullName.vb: OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoDevicesNV(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer) + name.vb: EnumerateVideoDevicesNV(DisplayPtr, Integer, Integer) +- uid: OpenTK.Graphics.Glx.Glx.NV.GetVideoDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,OpenTK.Graphics.Glx.GLXVideoDeviceNV@) + commentId: M:OpenTK.Graphics.Glx.Glx.NV.GetVideoDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,OpenTK.Graphics.Glx.GLXVideoDeviceNV@) + id: GetVideoDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,OpenTK.Graphics.Glx.GLXVideoDeviceNV@) parent: OpenTK.Graphics.Glx.Glx.NV langs: - csharp - vb - name: GetVideoDeviceNV(ref Display, int, int, ref GLXVideoDeviceNV) - nameWithType: Glx.NV.GetVideoDeviceNV(ref Display, int, int, ref GLXVideoDeviceNV) - fullName: OpenTK.Graphics.Glx.Glx.NV.GetVideoDeviceNV(ref OpenTK.Graphics.Glx.Display, int, int, ref OpenTK.Graphics.Glx.GLXVideoDeviceNV) + name: GetVideoDeviceNV(DisplayPtr, int, int, ref GLXVideoDeviceNV) + nameWithType: Glx.NV.GetVideoDeviceNV(DisplayPtr, int, int, ref GLXVideoDeviceNV) + fullName: OpenTK.Graphics.Glx.Glx.NV.GetVideoDeviceNV(OpenTK.Graphics.Glx.DisplayPtr, int, int, ref OpenTK.Graphics.Glx.GLXVideoDeviceNV) type: Method source: remote: @@ -1510,7 +1189,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetVideoDeviceNV path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 646 + startLine: 358 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -1522,10 +1201,10 @@ items:
example: [] syntax: - content: public static int GetVideoDeviceNV(ref Display dpy, int screen, int numVideoDevices, ref GLXVideoDeviceNV pVideoDevice) + content: public static int GetVideoDeviceNV(DisplayPtr dpy, int screen, int numVideoDevices, ref GLXVideoDeviceNV pVideoDevice) parameters: - id: dpy - type: OpenTK.Graphics.Glx.Display + type: OpenTK.Graphics.Glx.DisplayPtr - id: screen type: System.Int32 - id: numVideoDevices @@ -1534,21 +1213,21 @@ items: type: OpenTK.Graphics.Glx.GLXVideoDeviceNV return: type: System.Int32 - content.vb: Public Shared Function GetVideoDeviceNV(dpy As Display, screen As Integer, numVideoDevices As Integer, pVideoDevice As GLXVideoDeviceNV) As Integer + content.vb: Public Shared Function GetVideoDeviceNV(dpy As DisplayPtr, screen As Integer, numVideoDevices As Integer, pVideoDevice As GLXVideoDeviceNV) As Integer overload: OpenTK.Graphics.Glx.Glx.NV.GetVideoDeviceNV* - nameWithType.vb: Glx.NV.GetVideoDeviceNV(Display, Integer, Integer, GLXVideoDeviceNV) - fullName.vb: OpenTK.Graphics.Glx.Glx.NV.GetVideoDeviceNV(OpenTK.Graphics.Glx.Display, Integer, Integer, OpenTK.Graphics.Glx.GLXVideoDeviceNV) - name.vb: GetVideoDeviceNV(Display, Integer, Integer, GLXVideoDeviceNV) -- uid: OpenTK.Graphics.Glx.Glx.NV.GetVideoInfoNV(OpenTK.Graphics.Glx.Display@,System.Int32,OpenTK.Graphics.Glx.GLXVideoDeviceNV,System.UInt64@,System.UInt64@) - commentId: M:OpenTK.Graphics.Glx.Glx.NV.GetVideoInfoNV(OpenTK.Graphics.Glx.Display@,System.Int32,OpenTK.Graphics.Glx.GLXVideoDeviceNV,System.UInt64@,System.UInt64@) - id: GetVideoInfoNV(OpenTK.Graphics.Glx.Display@,System.Int32,OpenTK.Graphics.Glx.GLXVideoDeviceNV,System.UInt64@,System.UInt64@) + nameWithType.vb: Glx.NV.GetVideoDeviceNV(DisplayPtr, Integer, Integer, GLXVideoDeviceNV) + fullName.vb: OpenTK.Graphics.Glx.Glx.NV.GetVideoDeviceNV(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer, OpenTK.Graphics.Glx.GLXVideoDeviceNV) + name.vb: GetVideoDeviceNV(DisplayPtr, Integer, Integer, GLXVideoDeviceNV) +- uid: OpenTK.Graphics.Glx.Glx.NV.GetVideoInfoNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,OpenTK.Graphics.Glx.GLXVideoDeviceNV,System.UInt64@,System.UInt64@) + commentId: M:OpenTK.Graphics.Glx.Glx.NV.GetVideoInfoNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,OpenTK.Graphics.Glx.GLXVideoDeviceNV,System.UInt64@,System.UInt64@) + id: GetVideoInfoNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,OpenTK.Graphics.Glx.GLXVideoDeviceNV,System.UInt64@,System.UInt64@) parent: OpenTK.Graphics.Glx.Glx.NV langs: - csharp - vb - name: GetVideoInfoNV(ref Display, int, GLXVideoDeviceNV, ref ulong, ref ulong) - nameWithType: Glx.NV.GetVideoInfoNV(ref Display, int, GLXVideoDeviceNV, ref ulong, ref ulong) - fullName: OpenTK.Graphics.Glx.Glx.NV.GetVideoInfoNV(ref OpenTK.Graphics.Glx.Display, int, OpenTK.Graphics.Glx.GLXVideoDeviceNV, ref ulong, ref ulong) + name: GetVideoInfoNV(DisplayPtr, int, GLXVideoDeviceNV, ref ulong, ref ulong) + nameWithType: Glx.NV.GetVideoInfoNV(DisplayPtr, int, GLXVideoDeviceNV, ref ulong, ref ulong) + fullName: OpenTK.Graphics.Glx.Glx.NV.GetVideoInfoNV(OpenTK.Graphics.Glx.DisplayPtr, int, OpenTK.Graphics.Glx.GLXVideoDeviceNV, ref ulong, ref ulong) type: Method source: remote: @@ -1557,7 +1236,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetVideoInfoNV path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 657 + startLine: 368 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -1569,10 +1248,10 @@ items:
example: [] syntax: - content: public static int GetVideoInfoNV(ref Display dpy, int screen, GLXVideoDeviceNV VideoDevice, ref ulong pulCounterOutputPbuffer, ref ulong pulCounterOutputVideo) + content: public static int GetVideoInfoNV(DisplayPtr dpy, int screen, GLXVideoDeviceNV VideoDevice, ref ulong pulCounterOutputPbuffer, ref ulong pulCounterOutputVideo) parameters: - id: dpy - type: OpenTK.Graphics.Glx.Display + type: OpenTK.Graphics.Glx.DisplayPtr - id: screen type: System.Int32 - id: VideoDevice @@ -1583,160 +1262,21 @@ items: type: System.UInt64 return: type: System.Int32 - content.vb: Public Shared Function GetVideoInfoNV(dpy As Display, screen As Integer, VideoDevice As GLXVideoDeviceNV, pulCounterOutputPbuffer As ULong, pulCounterOutputVideo As ULong) As Integer + content.vb: Public Shared Function GetVideoInfoNV(dpy As DisplayPtr, screen As Integer, VideoDevice As GLXVideoDeviceNV, pulCounterOutputPbuffer As ULong, pulCounterOutputVideo As ULong) As Integer overload: OpenTK.Graphics.Glx.Glx.NV.GetVideoInfoNV* - nameWithType.vb: Glx.NV.GetVideoInfoNV(Display, Integer, GLXVideoDeviceNV, ULong, ULong) - fullName.vb: OpenTK.Graphics.Glx.Glx.NV.GetVideoInfoNV(OpenTK.Graphics.Glx.Display, Integer, OpenTK.Graphics.Glx.GLXVideoDeviceNV, ULong, ULong) - name.vb: GetVideoInfoNV(Display, Integer, GLXVideoDeviceNV, ULong, ULong) -- uid: OpenTK.Graphics.Glx.Glx.NV.JoinSwapGroupNV(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXDrawable,System.UInt32) - commentId: M:OpenTK.Graphics.Glx.Glx.NV.JoinSwapGroupNV(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXDrawable,System.UInt32) - id: JoinSwapGroupNV(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXDrawable,System.UInt32) - parent: OpenTK.Graphics.Glx.Glx.NV - langs: - - csharp - - vb - name: JoinSwapGroupNV(ref Display, GLXDrawable, uint) - nameWithType: Glx.NV.JoinSwapGroupNV(ref Display, GLXDrawable, uint) - fullName: OpenTK.Graphics.Glx.Glx.NV.JoinSwapGroupNV(ref OpenTK.Graphics.Glx.Display, OpenTK.Graphics.Glx.GLXDrawable, uint) - type: Method - source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: JoinSwapGroupNV - path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 669 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_NV_swap_group] - - [entry point: glXJoinSwapGroupNV] - -
- example: [] - syntax: - content: public static bool JoinSwapGroupNV(ref Display dpy, GLXDrawable drawable, uint group) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.Display - - id: drawable - type: OpenTK.Graphics.Glx.GLXDrawable - - id: group - type: System.UInt32 - return: - type: System.Boolean - content.vb: Public Shared Function JoinSwapGroupNV(dpy As Display, drawable As GLXDrawable, group As UInteger) As Boolean - overload: OpenTK.Graphics.Glx.Glx.NV.JoinSwapGroupNV* - nameWithType.vb: Glx.NV.JoinSwapGroupNV(Display, GLXDrawable, UInteger) - fullName.vb: OpenTK.Graphics.Glx.Glx.NV.JoinSwapGroupNV(OpenTK.Graphics.Glx.Display, OpenTK.Graphics.Glx.GLXDrawable, UInteger) - name.vb: JoinSwapGroupNV(Display, GLXDrawable, UInteger) -- uid: OpenTK.Graphics.Glx.Glx.NV.LockVideoCaptureDeviceNV(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV) - commentId: M:OpenTK.Graphics.Glx.Glx.NV.LockVideoCaptureDeviceNV(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV) - id: LockVideoCaptureDeviceNV(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV) - parent: OpenTK.Graphics.Glx.Glx.NV - langs: - - csharp - - vb - name: LockVideoCaptureDeviceNV(ref Display, GLXVideoCaptureDeviceNV) - nameWithType: Glx.NV.LockVideoCaptureDeviceNV(ref Display, GLXVideoCaptureDeviceNV) - fullName: OpenTK.Graphics.Glx.Glx.NV.LockVideoCaptureDeviceNV(ref OpenTK.Graphics.Glx.Display, OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV) - type: Method - source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: LockVideoCaptureDeviceNV - path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 679 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_NV_video_capture] - - [entry point: glXLockVideoCaptureDeviceNV] - -
- example: [] - syntax: - content: public static void LockVideoCaptureDeviceNV(ref Display dpy, GLXVideoCaptureDeviceNV device) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.Display - - id: device - type: OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV - content.vb: Public Shared Sub LockVideoCaptureDeviceNV(dpy As Display, device As GLXVideoCaptureDeviceNV) - overload: OpenTK.Graphics.Glx.Glx.NV.LockVideoCaptureDeviceNV* - nameWithType.vb: Glx.NV.LockVideoCaptureDeviceNV(Display, GLXVideoCaptureDeviceNV) - fullName.vb: OpenTK.Graphics.Glx.Glx.NV.LockVideoCaptureDeviceNV(OpenTK.Graphics.Glx.Display, OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV) - name.vb: LockVideoCaptureDeviceNV(Display, GLXVideoCaptureDeviceNV) -- uid: OpenTK.Graphics.Glx.Glx.NV.NamedCopyBufferSubDataNV(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXContext,OpenTK.Graphics.Glx.GLXContext,System.UInt32,System.UInt32,System.IntPtr,System.IntPtr,System.IntPtr) - commentId: M:OpenTK.Graphics.Glx.Glx.NV.NamedCopyBufferSubDataNV(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXContext,OpenTK.Graphics.Glx.GLXContext,System.UInt32,System.UInt32,System.IntPtr,System.IntPtr,System.IntPtr) - id: NamedCopyBufferSubDataNV(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXContext,OpenTK.Graphics.Glx.GLXContext,System.UInt32,System.UInt32,System.IntPtr,System.IntPtr,System.IntPtr) + nameWithType.vb: Glx.NV.GetVideoInfoNV(DisplayPtr, Integer, GLXVideoDeviceNV, ULong, ULong) + fullName.vb: OpenTK.Graphics.Glx.Glx.NV.GetVideoInfoNV(OpenTK.Graphics.Glx.DisplayPtr, Integer, OpenTK.Graphics.Glx.GLXVideoDeviceNV, ULong, ULong) + name.vb: GetVideoInfoNV(DisplayPtr, Integer, GLXVideoDeviceNV, ULong, ULong) +- uid: OpenTK.Graphics.Glx.Glx.NV.QueryFrameCountNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.UInt32@) + commentId: M:OpenTK.Graphics.Glx.Glx.NV.QueryFrameCountNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.UInt32@) + id: QueryFrameCountNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.UInt32@) parent: OpenTK.Graphics.Glx.Glx.NV langs: - csharp - vb - name: NamedCopyBufferSubDataNV(ref Display, GLXContext, GLXContext, uint, uint, nint, nint, nint) - nameWithType: Glx.NV.NamedCopyBufferSubDataNV(ref Display, GLXContext, GLXContext, uint, uint, nint, nint, nint) - fullName: OpenTK.Graphics.Glx.Glx.NV.NamedCopyBufferSubDataNV(ref OpenTK.Graphics.Glx.Display, OpenTK.Graphics.Glx.GLXContext, OpenTK.Graphics.Glx.GLXContext, uint, uint, nint, nint, nint) - type: Method - source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: NamedCopyBufferSubDataNV - path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 687 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_NV_copy_buffer] - - [entry point: glXNamedCopyBufferSubDataNV] - -
- example: [] - syntax: - content: public static void NamedCopyBufferSubDataNV(ref Display dpy, GLXContext readCtx, GLXContext writeCtx, uint readBuffer, uint writeBuffer, nint readOffset, nint writeOffset, nint size) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.Display - - id: readCtx - type: OpenTK.Graphics.Glx.GLXContext - - id: writeCtx - type: OpenTK.Graphics.Glx.GLXContext - - id: readBuffer - type: System.UInt32 - - id: writeBuffer - type: System.UInt32 - - id: readOffset - type: System.IntPtr - - id: writeOffset - type: System.IntPtr - - id: size - type: System.IntPtr - content.vb: Public Shared Sub NamedCopyBufferSubDataNV(dpy As Display, readCtx As GLXContext, writeCtx As GLXContext, readBuffer As UInteger, writeBuffer As UInteger, readOffset As IntPtr, writeOffset As IntPtr, size As IntPtr) - overload: OpenTK.Graphics.Glx.Glx.NV.NamedCopyBufferSubDataNV* - nameWithType.vb: Glx.NV.NamedCopyBufferSubDataNV(Display, GLXContext, GLXContext, UInteger, UInteger, IntPtr, IntPtr, IntPtr) - fullName.vb: OpenTK.Graphics.Glx.Glx.NV.NamedCopyBufferSubDataNV(OpenTK.Graphics.Glx.Display, OpenTK.Graphics.Glx.GLXContext, OpenTK.Graphics.Glx.GLXContext, UInteger, UInteger, System.IntPtr, System.IntPtr, System.IntPtr) - name.vb: NamedCopyBufferSubDataNV(Display, GLXContext, GLXContext, UInteger, UInteger, IntPtr, IntPtr, IntPtr) -- uid: OpenTK.Graphics.Glx.Glx.NV.QueryFrameCountNV(OpenTK.Graphics.Glx.Display@,System.Int32,System.UInt32@) - commentId: M:OpenTK.Graphics.Glx.Glx.NV.QueryFrameCountNV(OpenTK.Graphics.Glx.Display@,System.Int32,System.UInt32@) - id: QueryFrameCountNV(OpenTK.Graphics.Glx.Display@,System.Int32,System.UInt32@) - parent: OpenTK.Graphics.Glx.Glx.NV - langs: - - csharp - - vb - name: QueryFrameCountNV(ref Display, int, ref uint) - nameWithType: Glx.NV.QueryFrameCountNV(ref Display, int, ref uint) - fullName: OpenTK.Graphics.Glx.Glx.NV.QueryFrameCountNV(ref OpenTK.Graphics.Glx.Display, int, ref uint) + name: QueryFrameCountNV(DisplayPtr, int, ref uint) + nameWithType: Glx.NV.QueryFrameCountNV(DisplayPtr, int, ref uint) + fullName: OpenTK.Graphics.Glx.Glx.NV.QueryFrameCountNV(OpenTK.Graphics.Glx.DisplayPtr, int, ref uint) type: Method source: remote: @@ -1745,7 +1285,7 @@ items: repo: https://github.com/opentk/opentk.git id: QueryFrameCountNV path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 695 + startLine: 379 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -1757,31 +1297,31 @@ items:
example: [] syntax: - content: public static bool QueryFrameCountNV(ref Display dpy, int screen, ref uint count) + content: public static bool QueryFrameCountNV(DisplayPtr dpy, int screen, ref uint count) parameters: - id: dpy - type: OpenTK.Graphics.Glx.Display + type: OpenTK.Graphics.Glx.DisplayPtr - id: screen type: System.Int32 - id: count type: System.UInt32 return: type: System.Boolean - content.vb: Public Shared Function QueryFrameCountNV(dpy As Display, screen As Integer, count As UInteger) As Boolean + content.vb: Public Shared Function QueryFrameCountNV(dpy As DisplayPtr, screen As Integer, count As UInteger) As Boolean overload: OpenTK.Graphics.Glx.Glx.NV.QueryFrameCountNV* - nameWithType.vb: Glx.NV.QueryFrameCountNV(Display, Integer, UInteger) - fullName.vb: OpenTK.Graphics.Glx.Glx.NV.QueryFrameCountNV(OpenTK.Graphics.Glx.Display, Integer, UInteger) - name.vb: QueryFrameCountNV(Display, Integer, UInteger) -- uid: OpenTK.Graphics.Glx.Glx.NV.QueryMaxSwapGroupsNV(OpenTK.Graphics.Glx.Display@,System.Int32,System.UInt32@,System.UInt32@) - commentId: M:OpenTK.Graphics.Glx.Glx.NV.QueryMaxSwapGroupsNV(OpenTK.Graphics.Glx.Display@,System.Int32,System.UInt32@,System.UInt32@) - id: QueryMaxSwapGroupsNV(OpenTK.Graphics.Glx.Display@,System.Int32,System.UInt32@,System.UInt32@) + nameWithType.vb: Glx.NV.QueryFrameCountNV(DisplayPtr, Integer, UInteger) + fullName.vb: OpenTK.Graphics.Glx.Glx.NV.QueryFrameCountNV(OpenTK.Graphics.Glx.DisplayPtr, Integer, UInteger) + name.vb: QueryFrameCountNV(DisplayPtr, Integer, UInteger) +- uid: OpenTK.Graphics.Glx.Glx.NV.QueryMaxSwapGroupsNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.UInt32@,System.UInt32@) + commentId: M:OpenTK.Graphics.Glx.Glx.NV.QueryMaxSwapGroupsNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.UInt32@,System.UInt32@) + id: QueryMaxSwapGroupsNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.UInt32@,System.UInt32@) parent: OpenTK.Graphics.Glx.Glx.NV langs: - csharp - vb - name: QueryMaxSwapGroupsNV(ref Display, int, ref uint, ref uint) - nameWithType: Glx.NV.QueryMaxSwapGroupsNV(ref Display, int, ref uint, ref uint) - fullName: OpenTK.Graphics.Glx.Glx.NV.QueryMaxSwapGroupsNV(ref OpenTK.Graphics.Glx.Display, int, ref uint, ref uint) + name: QueryMaxSwapGroupsNV(DisplayPtr, int, ref uint, ref uint) + nameWithType: Glx.NV.QueryMaxSwapGroupsNV(DisplayPtr, int, ref uint, ref uint) + fullName: OpenTK.Graphics.Glx.Glx.NV.QueryMaxSwapGroupsNV(OpenTK.Graphics.Glx.DisplayPtr, int, ref uint, ref uint) type: Method source: remote: @@ -1790,7 +1330,7 @@ items: repo: https://github.com/opentk/opentk.git id: QueryMaxSwapGroupsNV path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 706 + startLine: 389 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -1802,10 +1342,10 @@ items:
example: [] syntax: - content: public static bool QueryMaxSwapGroupsNV(ref Display dpy, int screen, ref uint maxGroups, ref uint maxBarriers) + content: public static bool QueryMaxSwapGroupsNV(DisplayPtr dpy, int screen, ref uint maxGroups, ref uint maxBarriers) parameters: - id: dpy - type: OpenTK.Graphics.Glx.Display + type: OpenTK.Graphics.Glx.DisplayPtr - id: screen type: System.Int32 - id: maxGroups @@ -1814,21 +1354,21 @@ items: type: System.UInt32 return: type: System.Boolean - content.vb: Public Shared Function QueryMaxSwapGroupsNV(dpy As Display, screen As Integer, maxGroups As UInteger, maxBarriers As UInteger) As Boolean + content.vb: Public Shared Function QueryMaxSwapGroupsNV(dpy As DisplayPtr, screen As Integer, maxGroups As UInteger, maxBarriers As UInteger) As Boolean overload: OpenTK.Graphics.Glx.Glx.NV.QueryMaxSwapGroupsNV* - nameWithType.vb: Glx.NV.QueryMaxSwapGroupsNV(Display, Integer, UInteger, UInteger) - fullName.vb: OpenTK.Graphics.Glx.Glx.NV.QueryMaxSwapGroupsNV(OpenTK.Graphics.Glx.Display, Integer, UInteger, UInteger) - name.vb: QueryMaxSwapGroupsNV(Display, Integer, UInteger, UInteger) -- uid: OpenTK.Graphics.Glx.Glx.NV.QuerySwapGroupNV(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXDrawable,System.UInt32@,System.UInt32@) - commentId: M:OpenTK.Graphics.Glx.Glx.NV.QuerySwapGroupNV(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXDrawable,System.UInt32@,System.UInt32@) - id: QuerySwapGroupNV(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXDrawable,System.UInt32@,System.UInt32@) + nameWithType.vb: Glx.NV.QueryMaxSwapGroupsNV(DisplayPtr, Integer, UInteger, UInteger) + fullName.vb: OpenTK.Graphics.Glx.Glx.NV.QueryMaxSwapGroupsNV(OpenTK.Graphics.Glx.DisplayPtr, Integer, UInteger, UInteger) + name.vb: QueryMaxSwapGroupsNV(DisplayPtr, Integer, UInteger, UInteger) +- uid: OpenTK.Graphics.Glx.Glx.NV.QuerySwapGroupNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.UInt32@,System.UInt32@) + commentId: M:OpenTK.Graphics.Glx.Glx.NV.QuerySwapGroupNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.UInt32@,System.UInt32@) + id: QuerySwapGroupNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.UInt32@,System.UInt32@) parent: OpenTK.Graphics.Glx.Glx.NV langs: - csharp - vb - name: QuerySwapGroupNV(ref Display, GLXDrawable, ref uint, ref uint) - nameWithType: Glx.NV.QuerySwapGroupNV(ref Display, GLXDrawable, ref uint, ref uint) - fullName: OpenTK.Graphics.Glx.Glx.NV.QuerySwapGroupNV(ref OpenTK.Graphics.Glx.Display, OpenTK.Graphics.Glx.GLXDrawable, ref uint, ref uint) + name: QuerySwapGroupNV(DisplayPtr, GLXDrawable, ref uint, ref uint) + nameWithType: Glx.NV.QuerySwapGroupNV(DisplayPtr, GLXDrawable, ref uint, ref uint) + fullName: OpenTK.Graphics.Glx.Glx.NV.QuerySwapGroupNV(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, ref uint, ref uint) type: Method source: remote: @@ -1837,7 +1377,7 @@ items: repo: https://github.com/opentk/opentk.git id: QuerySwapGroupNV path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 718 + startLine: 400 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -1849,10 +1389,10 @@ items:
example: [] syntax: - content: public static bool QuerySwapGroupNV(ref Display dpy, GLXDrawable drawable, ref uint group, ref uint barrier) + content: public static bool QuerySwapGroupNV(DisplayPtr dpy, GLXDrawable drawable, ref uint group, ref uint barrier) parameters: - id: dpy - type: OpenTK.Graphics.Glx.Display + type: OpenTK.Graphics.Glx.DisplayPtr - id: drawable type: OpenTK.Graphics.Glx.GLXDrawable - id: group @@ -1861,21 +1401,21 @@ items: type: System.UInt32 return: type: System.Boolean - content.vb: Public Shared Function QuerySwapGroupNV(dpy As Display, drawable As GLXDrawable, group As UInteger, barrier As UInteger) As Boolean + content.vb: Public Shared Function QuerySwapGroupNV(dpy As DisplayPtr, drawable As GLXDrawable, group As UInteger, barrier As UInteger) As Boolean overload: OpenTK.Graphics.Glx.Glx.NV.QuerySwapGroupNV* - nameWithType.vb: Glx.NV.QuerySwapGroupNV(Display, GLXDrawable, UInteger, UInteger) - fullName.vb: OpenTK.Graphics.Glx.Glx.NV.QuerySwapGroupNV(OpenTK.Graphics.Glx.Display, OpenTK.Graphics.Glx.GLXDrawable, UInteger, UInteger) - name.vb: QuerySwapGroupNV(Display, GLXDrawable, UInteger, UInteger) -- uid: OpenTK.Graphics.Glx.Glx.NV.QueryVideoCaptureDeviceNV(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV,System.Int32,System.Int32@) - commentId: M:OpenTK.Graphics.Glx.Glx.NV.QueryVideoCaptureDeviceNV(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV,System.Int32,System.Int32@) - id: QueryVideoCaptureDeviceNV(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV,System.Int32,System.Int32@) + nameWithType.vb: Glx.NV.QuerySwapGroupNV(DisplayPtr, GLXDrawable, UInteger, UInteger) + fullName.vb: OpenTK.Graphics.Glx.Glx.NV.QuerySwapGroupNV(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, UInteger, UInteger) + name.vb: QuerySwapGroupNV(DisplayPtr, GLXDrawable, UInteger, UInteger) +- uid: OpenTK.Graphics.Glx.Glx.NV.QueryVideoCaptureDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV,System.Int32,System.Int32@) + commentId: M:OpenTK.Graphics.Glx.Glx.NV.QueryVideoCaptureDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV,System.Int32,System.Int32@) + id: QueryVideoCaptureDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV,System.Int32,System.Int32@) parent: OpenTK.Graphics.Glx.Glx.NV langs: - csharp - vb - name: QueryVideoCaptureDeviceNV(ref Display, GLXVideoCaptureDeviceNV, int, ref int) - nameWithType: Glx.NV.QueryVideoCaptureDeviceNV(ref Display, GLXVideoCaptureDeviceNV, int, ref int) - fullName: OpenTK.Graphics.Glx.Glx.NV.QueryVideoCaptureDeviceNV(ref OpenTK.Graphics.Glx.Display, OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV, int, ref int) + name: QueryVideoCaptureDeviceNV(DisplayPtr, GLXVideoCaptureDeviceNV, int, ref int) + nameWithType: Glx.NV.QueryVideoCaptureDeviceNV(DisplayPtr, GLXVideoCaptureDeviceNV, int, ref int) + fullName: OpenTK.Graphics.Glx.Glx.NV.QueryVideoCaptureDeviceNV(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV, int, ref int) type: Method source: remote: @@ -1884,7 +1424,7 @@ items: repo: https://github.com/opentk/opentk.git id: QueryVideoCaptureDeviceNV path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 730 + startLine: 411 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -1896,10 +1436,10 @@ items:
example: [] syntax: - content: public static int QueryVideoCaptureDeviceNV(ref Display dpy, GLXVideoCaptureDeviceNV device, int attribute, ref int value) + content: public static int QueryVideoCaptureDeviceNV(DisplayPtr dpy, GLXVideoCaptureDeviceNV device, int attribute, ref int value) parameters: - id: dpy - type: OpenTK.Graphics.Glx.Display + type: OpenTK.Graphics.Glx.DisplayPtr - id: device type: OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV - id: attribute @@ -1908,193 +1448,21 @@ items: type: System.Int32 return: type: System.Int32 - content.vb: Public Shared Function QueryVideoCaptureDeviceNV(dpy As Display, device As GLXVideoCaptureDeviceNV, attribute As Integer, value As Integer) As Integer + content.vb: Public Shared Function QueryVideoCaptureDeviceNV(dpy As DisplayPtr, device As GLXVideoCaptureDeviceNV, attribute As Integer, value As Integer) As Integer overload: OpenTK.Graphics.Glx.Glx.NV.QueryVideoCaptureDeviceNV* - nameWithType.vb: Glx.NV.QueryVideoCaptureDeviceNV(Display, GLXVideoCaptureDeviceNV, Integer, Integer) - fullName.vb: OpenTK.Graphics.Glx.Glx.NV.QueryVideoCaptureDeviceNV(OpenTK.Graphics.Glx.Display, OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV, Integer, Integer) - name.vb: QueryVideoCaptureDeviceNV(Display, GLXVideoCaptureDeviceNV, Integer, Integer) -- uid: OpenTK.Graphics.Glx.Glx.NV.ReleaseVideoCaptureDeviceNV(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV) - commentId: M:OpenTK.Graphics.Glx.Glx.NV.ReleaseVideoCaptureDeviceNV(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV) - id: ReleaseVideoCaptureDeviceNV(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV) - parent: OpenTK.Graphics.Glx.Glx.NV - langs: - - csharp - - vb - name: ReleaseVideoCaptureDeviceNV(ref Display, GLXVideoCaptureDeviceNV) - nameWithType: Glx.NV.ReleaseVideoCaptureDeviceNV(ref Display, GLXVideoCaptureDeviceNV) - fullName: OpenTK.Graphics.Glx.Glx.NV.ReleaseVideoCaptureDeviceNV(ref OpenTK.Graphics.Glx.Display, OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV) - type: Method - source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: ReleaseVideoCaptureDeviceNV - path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 741 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_NV_video_capture] - - [entry point: glXReleaseVideoCaptureDeviceNV] - -
- example: [] - syntax: - content: public static void ReleaseVideoCaptureDeviceNV(ref Display dpy, GLXVideoCaptureDeviceNV device) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.Display - - id: device - type: OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV - content.vb: Public Shared Sub ReleaseVideoCaptureDeviceNV(dpy As Display, device As GLXVideoCaptureDeviceNV) - overload: OpenTK.Graphics.Glx.Glx.NV.ReleaseVideoCaptureDeviceNV* - nameWithType.vb: Glx.NV.ReleaseVideoCaptureDeviceNV(Display, GLXVideoCaptureDeviceNV) - fullName.vb: OpenTK.Graphics.Glx.Glx.NV.ReleaseVideoCaptureDeviceNV(OpenTK.Graphics.Glx.Display, OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV) - name.vb: ReleaseVideoCaptureDeviceNV(Display, GLXVideoCaptureDeviceNV) -- uid: OpenTK.Graphics.Glx.Glx.NV.ReleaseVideoDeviceNV(OpenTK.Graphics.Glx.Display@,System.Int32,OpenTK.Graphics.Glx.GLXVideoDeviceNV) - commentId: M:OpenTK.Graphics.Glx.Glx.NV.ReleaseVideoDeviceNV(OpenTK.Graphics.Glx.Display@,System.Int32,OpenTK.Graphics.Glx.GLXVideoDeviceNV) - id: ReleaseVideoDeviceNV(OpenTK.Graphics.Glx.Display@,System.Int32,OpenTK.Graphics.Glx.GLXVideoDeviceNV) - parent: OpenTK.Graphics.Glx.Glx.NV - langs: - - csharp - - vb - name: ReleaseVideoDeviceNV(ref Display, int, GLXVideoDeviceNV) - nameWithType: Glx.NV.ReleaseVideoDeviceNV(ref Display, int, GLXVideoDeviceNV) - fullName: OpenTK.Graphics.Glx.Glx.NV.ReleaseVideoDeviceNV(ref OpenTK.Graphics.Glx.Display, int, OpenTK.Graphics.Glx.GLXVideoDeviceNV) - type: Method - source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: ReleaseVideoDeviceNV - path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 749 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_NV_video_out] - - [entry point: glXReleaseVideoDeviceNV] - -
- example: [] - syntax: - content: public static int ReleaseVideoDeviceNV(ref Display dpy, int screen, GLXVideoDeviceNV VideoDevice) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.Display - - id: screen - type: System.Int32 - - id: VideoDevice - type: OpenTK.Graphics.Glx.GLXVideoDeviceNV - return: - type: System.Int32 - content.vb: Public Shared Function ReleaseVideoDeviceNV(dpy As Display, screen As Integer, VideoDevice As GLXVideoDeviceNV) As Integer - overload: OpenTK.Graphics.Glx.Glx.NV.ReleaseVideoDeviceNV* - nameWithType.vb: Glx.NV.ReleaseVideoDeviceNV(Display, Integer, GLXVideoDeviceNV) - fullName.vb: OpenTK.Graphics.Glx.Glx.NV.ReleaseVideoDeviceNV(OpenTK.Graphics.Glx.Display, Integer, OpenTK.Graphics.Glx.GLXVideoDeviceNV) - name.vb: ReleaseVideoDeviceNV(Display, Integer, GLXVideoDeviceNV) -- uid: OpenTK.Graphics.Glx.Glx.NV.ReleaseVideoImageNV(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXPbuffer) - commentId: M:OpenTK.Graphics.Glx.Glx.NV.ReleaseVideoImageNV(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXPbuffer) - id: ReleaseVideoImageNV(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXPbuffer) - parent: OpenTK.Graphics.Glx.Glx.NV - langs: - - csharp - - vb - name: ReleaseVideoImageNV(ref Display, GLXPbuffer) - nameWithType: Glx.NV.ReleaseVideoImageNV(ref Display, GLXPbuffer) - fullName: OpenTK.Graphics.Glx.Glx.NV.ReleaseVideoImageNV(ref OpenTK.Graphics.Glx.Display, OpenTK.Graphics.Glx.GLXPbuffer) - type: Method - source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: ReleaseVideoImageNV - path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 759 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_NV_video_out] - - [entry point: glXReleaseVideoImageNV] - -
- example: [] - syntax: - content: public static int ReleaseVideoImageNV(ref Display dpy, GLXPbuffer pbuf) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.Display - - id: pbuf - type: OpenTK.Graphics.Glx.GLXPbuffer - return: - type: System.Int32 - content.vb: Public Shared Function ReleaseVideoImageNV(dpy As Display, pbuf As GLXPbuffer) As Integer - overload: OpenTK.Graphics.Glx.Glx.NV.ReleaseVideoImageNV* - nameWithType.vb: Glx.NV.ReleaseVideoImageNV(Display, GLXPbuffer) - fullName.vb: OpenTK.Graphics.Glx.Glx.NV.ReleaseVideoImageNV(OpenTK.Graphics.Glx.Display, OpenTK.Graphics.Glx.GLXPbuffer) - name.vb: ReleaseVideoImageNV(Display, GLXPbuffer) -- uid: OpenTK.Graphics.Glx.Glx.NV.ResetFrameCountNV(OpenTK.Graphics.Glx.Display@,System.Int32) - commentId: M:OpenTK.Graphics.Glx.Glx.NV.ResetFrameCountNV(OpenTK.Graphics.Glx.Display@,System.Int32) - id: ResetFrameCountNV(OpenTK.Graphics.Glx.Display@,System.Int32) + nameWithType.vb: Glx.NV.QueryVideoCaptureDeviceNV(DisplayPtr, GLXVideoCaptureDeviceNV, Integer, Integer) + fullName.vb: OpenTK.Graphics.Glx.Glx.NV.QueryVideoCaptureDeviceNV(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV, Integer, Integer) + name.vb: QueryVideoCaptureDeviceNV(DisplayPtr, GLXVideoCaptureDeviceNV, Integer, Integer) +- uid: OpenTK.Graphics.Glx.Glx.NV.SendPbufferToVideoNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXPbuffer,System.Int32,System.UInt64@,System.Boolean) + commentId: M:OpenTK.Graphics.Glx.Glx.NV.SendPbufferToVideoNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXPbuffer,System.Int32,System.UInt64@,System.Boolean) + id: SendPbufferToVideoNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXPbuffer,System.Int32,System.UInt64@,System.Boolean) parent: OpenTK.Graphics.Glx.Glx.NV langs: - csharp - vb - name: ResetFrameCountNV(ref Display, int) - nameWithType: Glx.NV.ResetFrameCountNV(ref Display, int) - fullName: OpenTK.Graphics.Glx.Glx.NV.ResetFrameCountNV(ref OpenTK.Graphics.Glx.Display, int) - type: Method - source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: ResetFrameCountNV - path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 769 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_NV_swap_group] - - [entry point: glXResetFrameCountNV] - -
- example: [] - syntax: - content: public static bool ResetFrameCountNV(ref Display dpy, int screen) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.Display - - id: screen - type: System.Int32 - return: - type: System.Boolean - content.vb: Public Shared Function ResetFrameCountNV(dpy As Display, screen As Integer) As Boolean - overload: OpenTK.Graphics.Glx.Glx.NV.ResetFrameCountNV* - nameWithType.vb: Glx.NV.ResetFrameCountNV(Display, Integer) - fullName.vb: OpenTK.Graphics.Glx.Glx.NV.ResetFrameCountNV(OpenTK.Graphics.Glx.Display, Integer) - name.vb: ResetFrameCountNV(Display, Integer) -- uid: OpenTK.Graphics.Glx.Glx.NV.SendPbufferToVideoNV(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXPbuffer,System.Int32,System.UInt64@,System.Boolean) - commentId: M:OpenTK.Graphics.Glx.Glx.NV.SendPbufferToVideoNV(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXPbuffer,System.Int32,System.UInt64@,System.Boolean) - id: SendPbufferToVideoNV(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXPbuffer,System.Int32,System.UInt64@,System.Boolean) - parent: OpenTK.Graphics.Glx.Glx.NV - langs: - - csharp - - vb - name: SendPbufferToVideoNV(ref Display, GLXPbuffer, int, ref ulong, bool) - nameWithType: Glx.NV.SendPbufferToVideoNV(ref Display, GLXPbuffer, int, ref ulong, bool) - fullName: OpenTK.Graphics.Glx.Glx.NV.SendPbufferToVideoNV(ref OpenTK.Graphics.Glx.Display, OpenTK.Graphics.Glx.GLXPbuffer, int, ref ulong, bool) + name: SendPbufferToVideoNV(DisplayPtr, GLXPbuffer, int, ref ulong, bool) + nameWithType: Glx.NV.SendPbufferToVideoNV(DisplayPtr, GLXPbuffer, int, ref ulong, bool) + fullName: OpenTK.Graphics.Glx.Glx.NV.SendPbufferToVideoNV(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXPbuffer, int, ref ulong, bool) type: Method source: remote: @@ -2103,7 +1471,7 @@ items: repo: https://github.com/opentk/opentk.git id: SendPbufferToVideoNV path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 779 + startLine: 421 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -2115,10 +1483,10 @@ items:
example: [] syntax: - content: public static int SendPbufferToVideoNV(ref Display dpy, GLXPbuffer pbuf, int iBufferType, ref ulong pulCounterPbuffer, bool bBlock) + content: public static int SendPbufferToVideoNV(DisplayPtr dpy, GLXPbuffer pbuf, int iBufferType, ref ulong pulCounterPbuffer, bool bBlock) parameters: - id: dpy - type: OpenTK.Graphics.Glx.Display + type: OpenTK.Graphics.Glx.DisplayPtr - id: pbuf type: OpenTK.Graphics.Glx.GLXPbuffer - id: iBufferType @@ -2129,11 +1497,11 @@ items: type: System.Boolean return: type: System.Int32 - content.vb: Public Shared Function SendPbufferToVideoNV(dpy As Display, pbuf As GLXPbuffer, iBufferType As Integer, pulCounterPbuffer As ULong, bBlock As Boolean) As Integer + content.vb: Public Shared Function SendPbufferToVideoNV(dpy As DisplayPtr, pbuf As GLXPbuffer, iBufferType As Integer, pulCounterPbuffer As ULong, bBlock As Boolean) As Integer overload: OpenTK.Graphics.Glx.Glx.NV.SendPbufferToVideoNV* - nameWithType.vb: Glx.NV.SendPbufferToVideoNV(Display, GLXPbuffer, Integer, ULong, Boolean) - fullName.vb: OpenTK.Graphics.Glx.Glx.NV.SendPbufferToVideoNV(OpenTK.Graphics.Glx.Display, OpenTK.Graphics.Glx.GLXPbuffer, Integer, ULong, Boolean) - name.vb: SendPbufferToVideoNV(Display, GLXPbuffer, Integer, ULong, Boolean) + nameWithType.vb: Glx.NV.SendPbufferToVideoNV(DisplayPtr, GLXPbuffer, Integer, ULong, Boolean) + fullName.vb: OpenTK.Graphics.Glx.Glx.NV.SendPbufferToVideoNV(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXPbuffer, Integer, ULong, Boolean) + name.vb: SendPbufferToVideoNV(DisplayPtr, GLXPbuffer, Integer, ULong, Boolean) references: - uid: OpenTK.Graphics.Glx commentId: N:OpenTK.Graphics.Glx @@ -2404,26 +1772,17 @@ references: fullName: System - uid: OpenTK.Graphics.Glx.Glx.NV.BindSwapBarrierNV* commentId: Overload:OpenTK.Graphics.Glx.Glx.NV.BindSwapBarrierNV - href: OpenTK.Graphics.Glx.Glx.NV.html#OpenTK_Graphics_Glx_Glx_NV_BindSwapBarrierNV_OpenTK_Graphics_Glx_Display__System_UInt32_System_UInt32_ + href: OpenTK.Graphics.Glx.Glx.NV.html#OpenTK_Graphics_Glx_Glx_NV_BindSwapBarrierNV_OpenTK_Graphics_Glx_DisplayPtr_System_UInt32_System_UInt32_ name: BindSwapBarrierNV nameWithType: Glx.NV.BindSwapBarrierNV fullName: OpenTK.Graphics.Glx.Glx.NV.BindSwapBarrierNV -- uid: OpenTK.Graphics.Glx.Display* - isExternal: true - href: OpenTK.Graphics.Glx.Display.html - name: Display* - nameWithType: Display* - fullName: OpenTK.Graphics.Glx.Display* - spec.csharp: - - uid: OpenTK.Graphics.Glx.Display - name: Display - href: OpenTK.Graphics.Glx.Display.html - - name: '*' - spec.vb: - - uid: OpenTK.Graphics.Glx.Display - name: Display - href: OpenTK.Graphics.Glx.Display.html - - name: '*' +- uid: OpenTK.Graphics.Glx.DisplayPtr + commentId: T:OpenTK.Graphics.Glx.DisplayPtr + parent: OpenTK.Graphics.Glx + href: OpenTK.Graphics.Glx.DisplayPtr.html + name: DisplayPtr + nameWithType: DisplayPtr + fullName: OpenTK.Graphics.Glx.DisplayPtr - uid: System.UInt32 commentId: T:System.UInt32 parent: System @@ -2448,7 +1807,7 @@ references: name.vb: Boolean - uid: OpenTK.Graphics.Glx.Glx.NV.BindVideoCaptureDeviceNV* commentId: Overload:OpenTK.Graphics.Glx.Glx.NV.BindVideoCaptureDeviceNV - href: OpenTK.Graphics.Glx.Glx.NV.html#OpenTK_Graphics_Glx_Glx_NV_BindVideoCaptureDeviceNV_OpenTK_Graphics_Glx_Display__System_UInt32_OpenTK_Graphics_Glx_GLXVideoCaptureDeviceNV_ + href: OpenTK.Graphics.Glx.Glx.NV.html#OpenTK_Graphics_Glx_Glx_NV_BindVideoCaptureDeviceNV_OpenTK_Graphics_Glx_DisplayPtr_System_UInt32_OpenTK_Graphics_Glx_GLXVideoCaptureDeviceNV_ name: BindVideoCaptureDeviceNV nameWithType: Glx.NV.BindVideoCaptureDeviceNV fullName: OpenTK.Graphics.Glx.Glx.NV.BindVideoCaptureDeviceNV @@ -2472,7 +1831,7 @@ references: name.vb: Integer - uid: OpenTK.Graphics.Glx.Glx.NV.BindVideoDeviceNV* commentId: Overload:OpenTK.Graphics.Glx.Glx.NV.BindVideoDeviceNV - href: OpenTK.Graphics.Glx.Glx.NV.html#OpenTK_Graphics_Glx_Glx_NV_BindVideoDeviceNV_OpenTK_Graphics_Glx_Display__System_UInt32_System_UInt32_System_Int32__ + href: OpenTK.Graphics.Glx.Glx.NV.html#OpenTK_Graphics_Glx_Glx_NV_BindVideoDeviceNV_OpenTK_Graphics_Glx_DisplayPtr_System_UInt32_System_UInt32_System_Int32__ name: BindVideoDeviceNV nameWithType: Glx.NV.BindVideoDeviceNV fullName: OpenTK.Graphics.Glx.Glx.NV.BindVideoDeviceNV @@ -2499,7 +1858,7 @@ references: - name: '*' - uid: OpenTK.Graphics.Glx.Glx.NV.BindVideoImageNV* commentId: Overload:OpenTK.Graphics.Glx.Glx.NV.BindVideoImageNV - href: OpenTK.Graphics.Glx.Glx.NV.html#OpenTK_Graphics_Glx_Glx_NV_BindVideoImageNV_OpenTK_Graphics_Glx_Display__OpenTK_Graphics_Glx_GLXVideoDeviceNV_OpenTK_Graphics_Glx_GLXPbuffer_System_Int32_ + href: OpenTK.Graphics.Glx.Glx.NV.html#OpenTK_Graphics_Glx_Glx_NV_BindVideoImageNV_OpenTK_Graphics_Glx_DisplayPtr_OpenTK_Graphics_Glx_GLXVideoDeviceNV_OpenTK_Graphics_Glx_GLXPbuffer_System_Int32_ name: BindVideoImageNV nameWithType: Glx.NV.BindVideoImageNV fullName: OpenTK.Graphics.Glx.Glx.NV.BindVideoImageNV @@ -2519,7 +1878,7 @@ references: fullName: OpenTK.Graphics.Glx.GLXPbuffer - uid: OpenTK.Graphics.Glx.Glx.NV.CopyBufferSubDataNV* commentId: Overload:OpenTK.Graphics.Glx.Glx.NV.CopyBufferSubDataNV - href: OpenTK.Graphics.Glx.Glx.NV.html#OpenTK_Graphics_Glx_Glx_NV_CopyBufferSubDataNV_OpenTK_Graphics_Glx_Display__OpenTK_Graphics_Glx_GLXContext_OpenTK_Graphics_Glx_GLXContext_OpenTK_Graphics_Glx_All_OpenTK_Graphics_Glx_All_System_IntPtr_System_IntPtr_System_IntPtr_ + href: OpenTK.Graphics.Glx.Glx.NV.html#OpenTK_Graphics_Glx_Glx_NV_CopyBufferSubDataNV_OpenTK_Graphics_Glx_DisplayPtr_OpenTK_Graphics_Glx_GLXContext_OpenTK_Graphics_Glx_GLXContext_OpenTK_Graphics_Glx_All_OpenTK_Graphics_Glx_All_System_IntPtr_System_IntPtr_System_IntPtr_ name: CopyBufferSubDataNV nameWithType: Glx.NV.CopyBufferSubDataNV fullName: OpenTK.Graphics.Glx.Glx.NV.CopyBufferSubDataNV @@ -2550,13 +1909,13 @@ references: name.vb: IntPtr - uid: OpenTK.Graphics.Glx.Glx.NV.CopyImageSubDataNV* commentId: Overload:OpenTK.Graphics.Glx.Glx.NV.CopyImageSubDataNV - href: OpenTK.Graphics.Glx.Glx.NV.html#OpenTK_Graphics_Glx_Glx_NV_CopyImageSubDataNV_OpenTK_Graphics_Glx_Display__OpenTK_Graphics_Glx_GLXContext_System_UInt32_OpenTK_Graphics_Glx_All_System_Int32_System_Int32_System_Int32_System_Int32_OpenTK_Graphics_Glx_GLXContext_System_UInt32_OpenTK_Graphics_Glx_All_System_Int32_System_Int32_System_Int32_System_Int32_System_Int32_System_Int32_System_Int32_ + href: OpenTK.Graphics.Glx.Glx.NV.html#OpenTK_Graphics_Glx_Glx_NV_CopyImageSubDataNV_OpenTK_Graphics_Glx_DisplayPtr_OpenTK_Graphics_Glx_GLXContext_System_UInt32_OpenTK_Graphics_Glx_All_System_Int32_System_Int32_System_Int32_System_Int32_OpenTK_Graphics_Glx_GLXContext_System_UInt32_OpenTK_Graphics_Glx_All_System_Int32_System_Int32_System_Int32_System_Int32_System_Int32_System_Int32_System_Int32_ name: CopyImageSubDataNV nameWithType: Glx.NV.CopyImageSubDataNV fullName: OpenTK.Graphics.Glx.Glx.NV.CopyImageSubDataNV - uid: OpenTK.Graphics.Glx.Glx.NV.DelayBeforeSwapNV* commentId: Overload:OpenTK.Graphics.Glx.Glx.NV.DelayBeforeSwapNV - href: OpenTK.Graphics.Glx.Glx.NV.html#OpenTK_Graphics_Glx_Glx_NV_DelayBeforeSwapNV_OpenTK_Graphics_Glx_Display__OpenTK_Graphics_Glx_GLXDrawable_System_Single_ + href: OpenTK.Graphics.Glx.Glx.NV.html#OpenTK_Graphics_Glx_Glx_NV_DelayBeforeSwapNV_OpenTK_Graphics_Glx_DisplayPtr_OpenTK_Graphics_Glx_GLXDrawable_System_Single_ name: DelayBeforeSwapNV nameWithType: Glx.NV.DelayBeforeSwapNV fullName: OpenTK.Graphics.Glx.Glx.NV.DelayBeforeSwapNV @@ -2580,7 +1939,7 @@ references: name.vb: Single - uid: OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoCaptureDevicesNV* commentId: Overload:OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoCaptureDevicesNV - href: OpenTK.Graphics.Glx.Glx.NV.html#OpenTK_Graphics_Glx_Glx_NV_EnumerateVideoCaptureDevicesNV_OpenTK_Graphics_Glx_Display__System_Int32_System_Int32__ + href: OpenTK.Graphics.Glx.Glx.NV.html#OpenTK_Graphics_Glx_Glx_NV_EnumerateVideoCaptureDevicesNV_OpenTK_Graphics_Glx_DisplayPtr_System_Int32_System_Int32__ name: EnumerateVideoCaptureDevicesNV nameWithType: Glx.NV.EnumerateVideoCaptureDevicesNV fullName: OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoCaptureDevicesNV @@ -2602,7 +1961,7 @@ references: - name: '*' - uid: OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoDevicesNV* commentId: Overload:OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoDevicesNV - href: OpenTK.Graphics.Glx.Glx.NV.html#OpenTK_Graphics_Glx_Glx_NV_EnumerateVideoDevicesNV_OpenTK_Graphics_Glx_Display__System_Int32_System_Int32__ + href: OpenTK.Graphics.Glx.Glx.NV.html#OpenTK_Graphics_Glx_Glx_NV_EnumerateVideoDevicesNV_OpenTK_Graphics_Glx_DisplayPtr_System_Int32_System_Int32__ name: EnumerateVideoDevicesNV nameWithType: Glx.NV.EnumerateVideoDevicesNV fullName: OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoDevicesNV @@ -2629,7 +1988,7 @@ references: - name: '*' - uid: OpenTK.Graphics.Glx.Glx.NV.GetVideoDeviceNV* commentId: Overload:OpenTK.Graphics.Glx.Glx.NV.GetVideoDeviceNV - href: OpenTK.Graphics.Glx.Glx.NV.html#OpenTK_Graphics_Glx_Glx_NV_GetVideoDeviceNV_OpenTK_Graphics_Glx_Display__System_Int32_System_Int32_OpenTK_Graphics_Glx_GLXVideoDeviceNV__ + href: OpenTK.Graphics.Glx.Glx.NV.html#OpenTK_Graphics_Glx_Glx_NV_GetVideoDeviceNV_OpenTK_Graphics_Glx_DisplayPtr_System_Int32_System_Int32_OpenTK_Graphics_Glx_GLXVideoDeviceNV__ name: GetVideoDeviceNV nameWithType: Glx.NV.GetVideoDeviceNV fullName: OpenTK.Graphics.Glx.Glx.NV.GetVideoDeviceNV @@ -2651,7 +2010,7 @@ references: - name: '*' - uid: OpenTK.Graphics.Glx.Glx.NV.GetVideoInfoNV* commentId: Overload:OpenTK.Graphics.Glx.Glx.NV.GetVideoInfoNV - href: OpenTK.Graphics.Glx.Glx.NV.html#OpenTK_Graphics_Glx_Glx_NV_GetVideoInfoNV_OpenTK_Graphics_Glx_Display__System_Int32_OpenTK_Graphics_Glx_GLXVideoDeviceNV_System_UInt64__System_UInt64__ + href: OpenTK.Graphics.Glx.Glx.NV.html#OpenTK_Graphics_Glx_Glx_NV_GetVideoInfoNV_OpenTK_Graphics_Glx_DisplayPtr_System_Int32_OpenTK_Graphics_Glx_GLXVideoDeviceNV_System_UInt64__System_UInt64__ name: GetVideoInfoNV nameWithType: Glx.NV.GetVideoInfoNV fullName: OpenTK.Graphics.Glx.Glx.NV.GetVideoInfoNV @@ -2678,83 +2037,76 @@ references: - name: '*' - uid: OpenTK.Graphics.Glx.Glx.NV.JoinSwapGroupNV* commentId: Overload:OpenTK.Graphics.Glx.Glx.NV.JoinSwapGroupNV - href: OpenTK.Graphics.Glx.Glx.NV.html#OpenTK_Graphics_Glx_Glx_NV_JoinSwapGroupNV_OpenTK_Graphics_Glx_Display__OpenTK_Graphics_Glx_GLXDrawable_System_UInt32_ + href: OpenTK.Graphics.Glx.Glx.NV.html#OpenTK_Graphics_Glx_Glx_NV_JoinSwapGroupNV_OpenTK_Graphics_Glx_DisplayPtr_OpenTK_Graphics_Glx_GLXDrawable_System_UInt32_ name: JoinSwapGroupNV nameWithType: Glx.NV.JoinSwapGroupNV fullName: OpenTK.Graphics.Glx.Glx.NV.JoinSwapGroupNV - uid: OpenTK.Graphics.Glx.Glx.NV.LockVideoCaptureDeviceNV* commentId: Overload:OpenTK.Graphics.Glx.Glx.NV.LockVideoCaptureDeviceNV - href: OpenTK.Graphics.Glx.Glx.NV.html#OpenTK_Graphics_Glx_Glx_NV_LockVideoCaptureDeviceNV_OpenTK_Graphics_Glx_Display__OpenTK_Graphics_Glx_GLXVideoCaptureDeviceNV_ + href: OpenTK.Graphics.Glx.Glx.NV.html#OpenTK_Graphics_Glx_Glx_NV_LockVideoCaptureDeviceNV_OpenTK_Graphics_Glx_DisplayPtr_OpenTK_Graphics_Glx_GLXVideoCaptureDeviceNV_ name: LockVideoCaptureDeviceNV nameWithType: Glx.NV.LockVideoCaptureDeviceNV fullName: OpenTK.Graphics.Glx.Glx.NV.LockVideoCaptureDeviceNV - uid: OpenTK.Graphics.Glx.Glx.NV.NamedCopyBufferSubDataNV* commentId: Overload:OpenTK.Graphics.Glx.Glx.NV.NamedCopyBufferSubDataNV - href: OpenTK.Graphics.Glx.Glx.NV.html#OpenTK_Graphics_Glx_Glx_NV_NamedCopyBufferSubDataNV_OpenTK_Graphics_Glx_Display__OpenTK_Graphics_Glx_GLXContext_OpenTK_Graphics_Glx_GLXContext_System_UInt32_System_UInt32_System_IntPtr_System_IntPtr_System_IntPtr_ + href: OpenTK.Graphics.Glx.Glx.NV.html#OpenTK_Graphics_Glx_Glx_NV_NamedCopyBufferSubDataNV_OpenTK_Graphics_Glx_DisplayPtr_OpenTK_Graphics_Glx_GLXContext_OpenTK_Graphics_Glx_GLXContext_System_UInt32_System_UInt32_System_IntPtr_System_IntPtr_System_IntPtr_ name: NamedCopyBufferSubDataNV nameWithType: Glx.NV.NamedCopyBufferSubDataNV fullName: OpenTK.Graphics.Glx.Glx.NV.NamedCopyBufferSubDataNV - uid: OpenTK.Graphics.Glx.Glx.NV.QueryFrameCountNV* commentId: Overload:OpenTK.Graphics.Glx.Glx.NV.QueryFrameCountNV - href: OpenTK.Graphics.Glx.Glx.NV.html#OpenTK_Graphics_Glx_Glx_NV_QueryFrameCountNV_OpenTK_Graphics_Glx_Display__System_Int32_System_UInt32__ + href: OpenTK.Graphics.Glx.Glx.NV.html#OpenTK_Graphics_Glx_Glx_NV_QueryFrameCountNV_OpenTK_Graphics_Glx_DisplayPtr_System_Int32_System_UInt32__ name: QueryFrameCountNV nameWithType: Glx.NV.QueryFrameCountNV fullName: OpenTK.Graphics.Glx.Glx.NV.QueryFrameCountNV - uid: OpenTK.Graphics.Glx.Glx.NV.QueryMaxSwapGroupsNV* commentId: Overload:OpenTK.Graphics.Glx.Glx.NV.QueryMaxSwapGroupsNV - href: OpenTK.Graphics.Glx.Glx.NV.html#OpenTK_Graphics_Glx_Glx_NV_QueryMaxSwapGroupsNV_OpenTK_Graphics_Glx_Display__System_Int32_System_UInt32__System_UInt32__ + href: OpenTK.Graphics.Glx.Glx.NV.html#OpenTK_Graphics_Glx_Glx_NV_QueryMaxSwapGroupsNV_OpenTK_Graphics_Glx_DisplayPtr_System_Int32_System_UInt32__System_UInt32__ name: QueryMaxSwapGroupsNV nameWithType: Glx.NV.QueryMaxSwapGroupsNV fullName: OpenTK.Graphics.Glx.Glx.NV.QueryMaxSwapGroupsNV - uid: OpenTK.Graphics.Glx.Glx.NV.QuerySwapGroupNV* commentId: Overload:OpenTK.Graphics.Glx.Glx.NV.QuerySwapGroupNV - href: OpenTK.Graphics.Glx.Glx.NV.html#OpenTK_Graphics_Glx_Glx_NV_QuerySwapGroupNV_OpenTK_Graphics_Glx_Display__OpenTK_Graphics_Glx_GLXDrawable_System_UInt32__System_UInt32__ + href: OpenTK.Graphics.Glx.Glx.NV.html#OpenTK_Graphics_Glx_Glx_NV_QuerySwapGroupNV_OpenTK_Graphics_Glx_DisplayPtr_OpenTK_Graphics_Glx_GLXDrawable_System_UInt32__System_UInt32__ name: QuerySwapGroupNV nameWithType: Glx.NV.QuerySwapGroupNV fullName: OpenTK.Graphics.Glx.Glx.NV.QuerySwapGroupNV - uid: OpenTK.Graphics.Glx.Glx.NV.QueryVideoCaptureDeviceNV* commentId: Overload:OpenTK.Graphics.Glx.Glx.NV.QueryVideoCaptureDeviceNV - href: OpenTK.Graphics.Glx.Glx.NV.html#OpenTK_Graphics_Glx_Glx_NV_QueryVideoCaptureDeviceNV_OpenTK_Graphics_Glx_Display__OpenTK_Graphics_Glx_GLXVideoCaptureDeviceNV_System_Int32_System_Int32__ + href: OpenTK.Graphics.Glx.Glx.NV.html#OpenTK_Graphics_Glx_Glx_NV_QueryVideoCaptureDeviceNV_OpenTK_Graphics_Glx_DisplayPtr_OpenTK_Graphics_Glx_GLXVideoCaptureDeviceNV_System_Int32_System_Int32__ name: QueryVideoCaptureDeviceNV nameWithType: Glx.NV.QueryVideoCaptureDeviceNV fullName: OpenTK.Graphics.Glx.Glx.NV.QueryVideoCaptureDeviceNV - uid: OpenTK.Graphics.Glx.Glx.NV.ReleaseVideoCaptureDeviceNV* commentId: Overload:OpenTK.Graphics.Glx.Glx.NV.ReleaseVideoCaptureDeviceNV - href: OpenTK.Graphics.Glx.Glx.NV.html#OpenTK_Graphics_Glx_Glx_NV_ReleaseVideoCaptureDeviceNV_OpenTK_Graphics_Glx_Display__OpenTK_Graphics_Glx_GLXVideoCaptureDeviceNV_ + href: OpenTK.Graphics.Glx.Glx.NV.html#OpenTK_Graphics_Glx_Glx_NV_ReleaseVideoCaptureDeviceNV_OpenTK_Graphics_Glx_DisplayPtr_OpenTK_Graphics_Glx_GLXVideoCaptureDeviceNV_ name: ReleaseVideoCaptureDeviceNV nameWithType: Glx.NV.ReleaseVideoCaptureDeviceNV fullName: OpenTK.Graphics.Glx.Glx.NV.ReleaseVideoCaptureDeviceNV - uid: OpenTK.Graphics.Glx.Glx.NV.ReleaseVideoDeviceNV* commentId: Overload:OpenTK.Graphics.Glx.Glx.NV.ReleaseVideoDeviceNV - href: OpenTK.Graphics.Glx.Glx.NV.html#OpenTK_Graphics_Glx_Glx_NV_ReleaseVideoDeviceNV_OpenTK_Graphics_Glx_Display__System_Int32_OpenTK_Graphics_Glx_GLXVideoDeviceNV_ + href: OpenTK.Graphics.Glx.Glx.NV.html#OpenTK_Graphics_Glx_Glx_NV_ReleaseVideoDeviceNV_OpenTK_Graphics_Glx_DisplayPtr_System_Int32_OpenTK_Graphics_Glx_GLXVideoDeviceNV_ name: ReleaseVideoDeviceNV nameWithType: Glx.NV.ReleaseVideoDeviceNV fullName: OpenTK.Graphics.Glx.Glx.NV.ReleaseVideoDeviceNV - uid: OpenTK.Graphics.Glx.Glx.NV.ReleaseVideoImageNV* commentId: Overload:OpenTK.Graphics.Glx.Glx.NV.ReleaseVideoImageNV - href: OpenTK.Graphics.Glx.Glx.NV.html#OpenTK_Graphics_Glx_Glx_NV_ReleaseVideoImageNV_OpenTK_Graphics_Glx_Display__OpenTK_Graphics_Glx_GLXPbuffer_ + href: OpenTK.Graphics.Glx.Glx.NV.html#OpenTK_Graphics_Glx_Glx_NV_ReleaseVideoImageNV_OpenTK_Graphics_Glx_DisplayPtr_OpenTK_Graphics_Glx_GLXPbuffer_ name: ReleaseVideoImageNV nameWithType: Glx.NV.ReleaseVideoImageNV fullName: OpenTK.Graphics.Glx.Glx.NV.ReleaseVideoImageNV - uid: OpenTK.Graphics.Glx.Glx.NV.ResetFrameCountNV* commentId: Overload:OpenTK.Graphics.Glx.Glx.NV.ResetFrameCountNV - href: OpenTK.Graphics.Glx.Glx.NV.html#OpenTK_Graphics_Glx_Glx_NV_ResetFrameCountNV_OpenTK_Graphics_Glx_Display__System_Int32_ + href: OpenTK.Graphics.Glx.Glx.NV.html#OpenTK_Graphics_Glx_Glx_NV_ResetFrameCountNV_OpenTK_Graphics_Glx_DisplayPtr_System_Int32_ name: ResetFrameCountNV nameWithType: Glx.NV.ResetFrameCountNV fullName: OpenTK.Graphics.Glx.Glx.NV.ResetFrameCountNV - uid: OpenTK.Graphics.Glx.Glx.NV.SendPbufferToVideoNV* commentId: Overload:OpenTK.Graphics.Glx.Glx.NV.SendPbufferToVideoNV - href: OpenTK.Graphics.Glx.Glx.NV.html#OpenTK_Graphics_Glx_Glx_NV_SendPbufferToVideoNV_OpenTK_Graphics_Glx_Display__OpenTK_Graphics_Glx_GLXPbuffer_System_Int32_System_UInt64__System_Boolean_ + href: OpenTK.Graphics.Glx.Glx.NV.html#OpenTK_Graphics_Glx_Glx_NV_SendPbufferToVideoNV_OpenTK_Graphics_Glx_DisplayPtr_OpenTK_Graphics_Glx_GLXPbuffer_System_Int32_System_UInt64__System_Boolean_ name: SendPbufferToVideoNV nameWithType: Glx.NV.SendPbufferToVideoNV fullName: OpenTK.Graphics.Glx.Glx.NV.SendPbufferToVideoNV -- uid: OpenTK.Graphics.Glx.Display - commentId: T:OpenTK.Graphics.Glx.Display - parent: OpenTK.Graphics.Glx - href: OpenTK.Graphics.Glx.Display.html - name: Display - nameWithType: Display - fullName: OpenTK.Graphics.Glx.Display - uid: System.UInt64 commentId: T:System.UInt64 parent: System diff --git a/api/OpenTK.Graphics.Glx.Glx.OML.yml b/api/OpenTK.Graphics.Glx.Glx.OML.yml index 0cf3296e..983de90c 100644 --- a/api/OpenTK.Graphics.Glx.Glx.OML.yml +++ b/api/OpenTK.Graphics.Glx.Glx.OML.yml @@ -5,16 +5,15 @@ items: id: Glx.OML parent: OpenTK.Graphics.Glx children: - - OpenTK.Graphics.Glx.Glx.OML.GetMscRateOML(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXDrawable,System.Int32*,System.Int32*) - - OpenTK.Graphics.Glx.Glx.OML.GetMscRateOML(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXDrawable,System.Int32@,System.Int32@) - - OpenTK.Graphics.Glx.Glx.OML.GetSyncValuesOML(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXDrawable,System.Int64*,System.Int64*,System.Int64*) - - OpenTK.Graphics.Glx.Glx.OML.GetSyncValuesOML(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXDrawable,System.Int64@,System.Int64@,System.Int64@) - - OpenTK.Graphics.Glx.Glx.OML.SwapBuffersMscOML(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXDrawable,System.Int64,System.Int64,System.Int64) - - OpenTK.Graphics.Glx.Glx.OML.SwapBuffersMscOML(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXDrawable,System.Int64,System.Int64,System.Int64) - - OpenTK.Graphics.Glx.Glx.OML.WaitForMscOML(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXDrawable,System.Int64,System.Int64,System.Int64,System.Int64*,System.Int64*,System.Int64*) - - OpenTK.Graphics.Glx.Glx.OML.WaitForMscOML(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXDrawable,System.Int64,System.Int64,System.Int64,System.Int64@,System.Int64@,System.Int64@) - - OpenTK.Graphics.Glx.Glx.OML.WaitForSbcOML(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXDrawable,System.Int64,System.Int64*,System.Int64*,System.Int64*) - - OpenTK.Graphics.Glx.Glx.OML.WaitForSbcOML(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXDrawable,System.Int64,System.Int64@,System.Int64@,System.Int64@) + - OpenTK.Graphics.Glx.Glx.OML.GetMscRateOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32*,System.Int32*) + - OpenTK.Graphics.Glx.Glx.OML.GetMscRateOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32@,System.Int32@) + - OpenTK.Graphics.Glx.Glx.OML.GetSyncValuesOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int64*,System.Int64*,System.Int64*) + - OpenTK.Graphics.Glx.Glx.OML.GetSyncValuesOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int64@,System.Int64@,System.Int64@) + - OpenTK.Graphics.Glx.Glx.OML.SwapBuffersMscOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int64,System.Int64,System.Int64) + - OpenTK.Graphics.Glx.Glx.OML.WaitForMscOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int64,System.Int64,System.Int64,System.Int64*,System.Int64*,System.Int64*) + - OpenTK.Graphics.Glx.Glx.OML.WaitForMscOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int64,System.Int64,System.Int64,System.Int64@,System.Int64@,System.Int64@) + - OpenTK.Graphics.Glx.Glx.OML.WaitForSbcOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int64,System.Int64*,System.Int64*,System.Int64*) + - OpenTK.Graphics.Glx.Glx.OML.WaitForSbcOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int64,System.Int64@,System.Int64@,System.Int64@) langs: - csharp - vb @@ -29,7 +28,7 @@ items: repo: https://github.com/opentk/opentk.git id: OML path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 790 + startLine: 431 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -48,16 +47,16 @@ items: - System.Object.MemberwiseClone - System.Object.ReferenceEquals(System.Object,System.Object) - System.Object.ToString -- uid: OpenTK.Graphics.Glx.Glx.OML.GetMscRateOML(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXDrawable,System.Int32*,System.Int32*) - commentId: M:OpenTK.Graphics.Glx.Glx.OML.GetMscRateOML(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXDrawable,System.Int32*,System.Int32*) - id: GetMscRateOML(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXDrawable,System.Int32*,System.Int32*) +- uid: OpenTK.Graphics.Glx.Glx.OML.GetMscRateOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32*,System.Int32*) + commentId: M:OpenTK.Graphics.Glx.Glx.OML.GetMscRateOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32*,System.Int32*) + id: GetMscRateOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32*,System.Int32*) parent: OpenTK.Graphics.Glx.Glx.OML langs: - csharp - vb - name: GetMscRateOML(Display*, GLXDrawable, int*, int*) - nameWithType: Glx.OML.GetMscRateOML(Display*, GLXDrawable, int*, int*) - fullName: OpenTK.Graphics.Glx.Glx.OML.GetMscRateOML(OpenTK.Graphics.Glx.Display*, OpenTK.Graphics.Glx.GLXDrawable, int*, int*) + name: GetMscRateOML(DisplayPtr, GLXDrawable, int*, int*) + nameWithType: Glx.OML.GetMscRateOML(DisplayPtr, GLXDrawable, int*, int*) + fullName: OpenTK.Graphics.Glx.Glx.OML.GetMscRateOML(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, int*, int*) type: Method source: remote: @@ -73,10 +72,10 @@ items: summary: '[requires: GLX_OML_sync_control] [entry point: glXGetMscRateOML]
' example: [] syntax: - content: public static bool GetMscRateOML(Display* dpy, GLXDrawable drawable, int* numerator, int* denominator) + content: public static bool GetMscRateOML(DisplayPtr dpy, GLXDrawable drawable, int* numerator, int* denominator) parameters: - id: dpy - type: OpenTK.Graphics.Glx.Display* + type: OpenTK.Graphics.Glx.DisplayPtr - id: drawable type: OpenTK.Graphics.Glx.GLXDrawable - id: numerator @@ -85,21 +84,21 @@ items: type: System.Int32* return: type: System.Boolean - content.vb: Public Shared Function GetMscRateOML(dpy As Display*, drawable As GLXDrawable, numerator As Integer*, denominator As Integer*) As Boolean + content.vb: Public Shared Function GetMscRateOML(dpy As DisplayPtr, drawable As GLXDrawable, numerator As Integer*, denominator As Integer*) As Boolean overload: OpenTK.Graphics.Glx.Glx.OML.GetMscRateOML* - nameWithType.vb: Glx.OML.GetMscRateOML(Display*, GLXDrawable, Integer*, Integer*) - fullName.vb: OpenTK.Graphics.Glx.Glx.OML.GetMscRateOML(OpenTK.Graphics.Glx.Display*, OpenTK.Graphics.Glx.GLXDrawable, Integer*, Integer*) - name.vb: GetMscRateOML(Display*, GLXDrawable, Integer*, Integer*) -- uid: OpenTK.Graphics.Glx.Glx.OML.GetSyncValuesOML(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXDrawable,System.Int64*,System.Int64*,System.Int64*) - commentId: M:OpenTK.Graphics.Glx.Glx.OML.GetSyncValuesOML(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXDrawable,System.Int64*,System.Int64*,System.Int64*) - id: GetSyncValuesOML(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXDrawable,System.Int64*,System.Int64*,System.Int64*) + nameWithType.vb: Glx.OML.GetMscRateOML(DisplayPtr, GLXDrawable, Integer*, Integer*) + fullName.vb: OpenTK.Graphics.Glx.Glx.OML.GetMscRateOML(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, Integer*, Integer*) + name.vb: GetMscRateOML(DisplayPtr, GLXDrawable, Integer*, Integer*) +- uid: OpenTK.Graphics.Glx.Glx.OML.GetSyncValuesOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int64*,System.Int64*,System.Int64*) + commentId: M:OpenTK.Graphics.Glx.Glx.OML.GetSyncValuesOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int64*,System.Int64*,System.Int64*) + id: GetSyncValuesOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int64*,System.Int64*,System.Int64*) parent: OpenTK.Graphics.Glx.Glx.OML langs: - csharp - vb - name: GetSyncValuesOML(Display*, GLXDrawable, long*, long*, long*) - nameWithType: Glx.OML.GetSyncValuesOML(Display*, GLXDrawable, long*, long*, long*) - fullName: OpenTK.Graphics.Glx.Glx.OML.GetSyncValuesOML(OpenTK.Graphics.Glx.Display*, OpenTK.Graphics.Glx.GLXDrawable, long*, long*, long*) + name: GetSyncValuesOML(DisplayPtr, GLXDrawable, long*, long*, long*) + nameWithType: Glx.OML.GetSyncValuesOML(DisplayPtr, GLXDrawable, long*, long*, long*) + fullName: OpenTK.Graphics.Glx.Glx.OML.GetSyncValuesOML(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, long*, long*, long*) type: Method source: remote: @@ -115,10 +114,10 @@ items: summary: '[requires: GLX_OML_sync_control] [entry point: glXGetSyncValuesOML]
' example: [] syntax: - content: public static bool GetSyncValuesOML(Display* dpy, GLXDrawable drawable, long* ust, long* msc, long* sbc) + content: public static bool GetSyncValuesOML(DisplayPtr dpy, GLXDrawable drawable, long* ust, long* msc, long* sbc) parameters: - id: dpy - type: OpenTK.Graphics.Glx.Display* + type: OpenTK.Graphics.Glx.DisplayPtr - id: drawable type: OpenTK.Graphics.Glx.GLXDrawable - id: ust @@ -129,21 +128,21 @@ items: type: System.Int64* return: type: System.Boolean - content.vb: Public Shared Function GetSyncValuesOML(dpy As Display*, drawable As GLXDrawable, ust As Long*, msc As Long*, sbc As Long*) As Boolean + content.vb: Public Shared Function GetSyncValuesOML(dpy As DisplayPtr, drawable As GLXDrawable, ust As Long*, msc As Long*, sbc As Long*) As Boolean overload: OpenTK.Graphics.Glx.Glx.OML.GetSyncValuesOML* - nameWithType.vb: Glx.OML.GetSyncValuesOML(Display*, GLXDrawable, Long*, Long*, Long*) - fullName.vb: OpenTK.Graphics.Glx.Glx.OML.GetSyncValuesOML(OpenTK.Graphics.Glx.Display*, OpenTK.Graphics.Glx.GLXDrawable, Long*, Long*, Long*) - name.vb: GetSyncValuesOML(Display*, GLXDrawable, Long*, Long*, Long*) -- uid: OpenTK.Graphics.Glx.Glx.OML.SwapBuffersMscOML(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXDrawable,System.Int64,System.Int64,System.Int64) - commentId: M:OpenTK.Graphics.Glx.Glx.OML.SwapBuffersMscOML(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXDrawable,System.Int64,System.Int64,System.Int64) - id: SwapBuffersMscOML(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXDrawable,System.Int64,System.Int64,System.Int64) + nameWithType.vb: Glx.OML.GetSyncValuesOML(DisplayPtr, GLXDrawable, Long*, Long*, Long*) + fullName.vb: OpenTK.Graphics.Glx.Glx.OML.GetSyncValuesOML(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, Long*, Long*, Long*) + name.vb: GetSyncValuesOML(DisplayPtr, GLXDrawable, Long*, Long*, Long*) +- uid: OpenTK.Graphics.Glx.Glx.OML.SwapBuffersMscOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int64,System.Int64,System.Int64) + commentId: M:OpenTK.Graphics.Glx.Glx.OML.SwapBuffersMscOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int64,System.Int64,System.Int64) + id: SwapBuffersMscOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int64,System.Int64,System.Int64) parent: OpenTK.Graphics.Glx.Glx.OML langs: - csharp - vb - name: SwapBuffersMscOML(Display*, GLXDrawable, long, long, long) - nameWithType: Glx.OML.SwapBuffersMscOML(Display*, GLXDrawable, long, long, long) - fullName: OpenTK.Graphics.Glx.Glx.OML.SwapBuffersMscOML(OpenTK.Graphics.Glx.Display*, OpenTK.Graphics.Glx.GLXDrawable, long, long, long) + name: SwapBuffersMscOML(DisplayPtr, GLXDrawable, long, long, long) + nameWithType: Glx.OML.SwapBuffersMscOML(DisplayPtr, GLXDrawable, long, long, long) + fullName: OpenTK.Graphics.Glx.Glx.OML.SwapBuffersMscOML(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, long, long, long) type: Method source: remote: @@ -159,10 +158,10 @@ items: summary: '[requires: GLX_OML_sync_control] [entry point: glXSwapBuffersMscOML]
' example: [] syntax: - content: public static long SwapBuffersMscOML(Display* dpy, GLXDrawable drawable, long target_msc, long divisor, long remainder) + content: public static long SwapBuffersMscOML(DisplayPtr dpy, GLXDrawable drawable, long target_msc, long divisor, long remainder) parameters: - id: dpy - type: OpenTK.Graphics.Glx.Display* + type: OpenTK.Graphics.Glx.DisplayPtr - id: drawable type: OpenTK.Graphics.Glx.GLXDrawable - id: target_msc @@ -173,21 +172,21 @@ items: type: System.Int64 return: type: System.Int64 - content.vb: Public Shared Function SwapBuffersMscOML(dpy As Display*, drawable As GLXDrawable, target_msc As Long, divisor As Long, remainder As Long) As Long + content.vb: Public Shared Function SwapBuffersMscOML(dpy As DisplayPtr, drawable As GLXDrawable, target_msc As Long, divisor As Long, remainder As Long) As Long overload: OpenTK.Graphics.Glx.Glx.OML.SwapBuffersMscOML* - nameWithType.vb: Glx.OML.SwapBuffersMscOML(Display*, GLXDrawable, Long, Long, Long) - fullName.vb: OpenTK.Graphics.Glx.Glx.OML.SwapBuffersMscOML(OpenTK.Graphics.Glx.Display*, OpenTK.Graphics.Glx.GLXDrawable, Long, Long, Long) - name.vb: SwapBuffersMscOML(Display*, GLXDrawable, Long, Long, Long) -- uid: OpenTK.Graphics.Glx.Glx.OML.WaitForMscOML(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXDrawable,System.Int64,System.Int64,System.Int64,System.Int64*,System.Int64*,System.Int64*) - commentId: M:OpenTK.Graphics.Glx.Glx.OML.WaitForMscOML(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXDrawable,System.Int64,System.Int64,System.Int64,System.Int64*,System.Int64*,System.Int64*) - id: WaitForMscOML(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXDrawable,System.Int64,System.Int64,System.Int64,System.Int64*,System.Int64*,System.Int64*) + nameWithType.vb: Glx.OML.SwapBuffersMscOML(DisplayPtr, GLXDrawable, Long, Long, Long) + fullName.vb: OpenTK.Graphics.Glx.Glx.OML.SwapBuffersMscOML(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, Long, Long, Long) + name.vb: SwapBuffersMscOML(DisplayPtr, GLXDrawable, Long, Long, Long) +- uid: OpenTK.Graphics.Glx.Glx.OML.WaitForMscOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int64,System.Int64,System.Int64,System.Int64*,System.Int64*,System.Int64*) + commentId: M:OpenTK.Graphics.Glx.Glx.OML.WaitForMscOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int64,System.Int64,System.Int64,System.Int64*,System.Int64*,System.Int64*) + id: WaitForMscOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int64,System.Int64,System.Int64,System.Int64*,System.Int64*,System.Int64*) parent: OpenTK.Graphics.Glx.Glx.OML langs: - csharp - vb - name: WaitForMscOML(Display*, GLXDrawable, long, long, long, long*, long*, long*) - nameWithType: Glx.OML.WaitForMscOML(Display*, GLXDrawable, long, long, long, long*, long*, long*) - fullName: OpenTK.Graphics.Glx.Glx.OML.WaitForMscOML(OpenTK.Graphics.Glx.Display*, OpenTK.Graphics.Glx.GLXDrawable, long, long, long, long*, long*, long*) + name: WaitForMscOML(DisplayPtr, GLXDrawable, long, long, long, long*, long*, long*) + nameWithType: Glx.OML.WaitForMscOML(DisplayPtr, GLXDrawable, long, long, long, long*, long*, long*) + fullName: OpenTK.Graphics.Glx.Glx.OML.WaitForMscOML(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, long, long, long, long*, long*, long*) type: Method source: remote: @@ -203,10 +202,10 @@ items: summary: '[requires: GLX_OML_sync_control] [entry point: glXWaitForMscOML]
' example: [] syntax: - content: public static bool WaitForMscOML(Display* dpy, GLXDrawable drawable, long target_msc, long divisor, long remainder, long* ust, long* msc, long* sbc) + content: public static bool WaitForMscOML(DisplayPtr dpy, GLXDrawable drawable, long target_msc, long divisor, long remainder, long* ust, long* msc, long* sbc) parameters: - id: dpy - type: OpenTK.Graphics.Glx.Display* + type: OpenTK.Graphics.Glx.DisplayPtr - id: drawable type: OpenTK.Graphics.Glx.GLXDrawable - id: target_msc @@ -223,21 +222,21 @@ items: type: System.Int64* return: type: System.Boolean - content.vb: Public Shared Function WaitForMscOML(dpy As Display*, drawable As GLXDrawable, target_msc As Long, divisor As Long, remainder As Long, ust As Long*, msc As Long*, sbc As Long*) As Boolean + content.vb: Public Shared Function WaitForMscOML(dpy As DisplayPtr, drawable As GLXDrawable, target_msc As Long, divisor As Long, remainder As Long, ust As Long*, msc As Long*, sbc As Long*) As Boolean overload: OpenTK.Graphics.Glx.Glx.OML.WaitForMscOML* - nameWithType.vb: Glx.OML.WaitForMscOML(Display*, GLXDrawable, Long, Long, Long, Long*, Long*, Long*) - fullName.vb: OpenTK.Graphics.Glx.Glx.OML.WaitForMscOML(OpenTK.Graphics.Glx.Display*, OpenTK.Graphics.Glx.GLXDrawable, Long, Long, Long, Long*, Long*, Long*) - name.vb: WaitForMscOML(Display*, GLXDrawable, Long, Long, Long, Long*, Long*, Long*) -- uid: OpenTK.Graphics.Glx.Glx.OML.WaitForSbcOML(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXDrawable,System.Int64,System.Int64*,System.Int64*,System.Int64*) - commentId: M:OpenTK.Graphics.Glx.Glx.OML.WaitForSbcOML(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXDrawable,System.Int64,System.Int64*,System.Int64*,System.Int64*) - id: WaitForSbcOML(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXDrawable,System.Int64,System.Int64*,System.Int64*,System.Int64*) + nameWithType.vb: Glx.OML.WaitForMscOML(DisplayPtr, GLXDrawable, Long, Long, Long, Long*, Long*, Long*) + fullName.vb: OpenTK.Graphics.Glx.Glx.OML.WaitForMscOML(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, Long, Long, Long, Long*, Long*, Long*) + name.vb: WaitForMscOML(DisplayPtr, GLXDrawable, Long, Long, Long, Long*, Long*, Long*) +- uid: OpenTK.Graphics.Glx.Glx.OML.WaitForSbcOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int64,System.Int64*,System.Int64*,System.Int64*) + commentId: M:OpenTK.Graphics.Glx.Glx.OML.WaitForSbcOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int64,System.Int64*,System.Int64*,System.Int64*) + id: WaitForSbcOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int64,System.Int64*,System.Int64*,System.Int64*) parent: OpenTK.Graphics.Glx.Glx.OML langs: - csharp - vb - name: WaitForSbcOML(Display*, GLXDrawable, long, long*, long*, long*) - nameWithType: Glx.OML.WaitForSbcOML(Display*, GLXDrawable, long, long*, long*, long*) - fullName: OpenTK.Graphics.Glx.Glx.OML.WaitForSbcOML(OpenTK.Graphics.Glx.Display*, OpenTK.Graphics.Glx.GLXDrawable, long, long*, long*, long*) + name: WaitForSbcOML(DisplayPtr, GLXDrawable, long, long*, long*, long*) + nameWithType: Glx.OML.WaitForSbcOML(DisplayPtr, GLXDrawable, long, long*, long*, long*) + fullName: OpenTK.Graphics.Glx.Glx.OML.WaitForSbcOML(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, long, long*, long*, long*) type: Method source: remote: @@ -253,10 +252,10 @@ items: summary: '[requires: GLX_OML_sync_control] [entry point: glXWaitForSbcOML]
' example: [] syntax: - content: public static bool WaitForSbcOML(Display* dpy, GLXDrawable drawable, long target_sbc, long* ust, long* msc, long* sbc) + content: public static bool WaitForSbcOML(DisplayPtr dpy, GLXDrawable drawable, long target_sbc, long* ust, long* msc, long* sbc) parameters: - id: dpy - type: OpenTK.Graphics.Glx.Display* + type: OpenTK.Graphics.Glx.DisplayPtr - id: drawable type: OpenTK.Graphics.Glx.GLXDrawable - id: target_sbc @@ -269,21 +268,21 @@ items: type: System.Int64* return: type: System.Boolean - content.vb: Public Shared Function WaitForSbcOML(dpy As Display*, drawable As GLXDrawable, target_sbc As Long, ust As Long*, msc As Long*, sbc As Long*) As Boolean + content.vb: Public Shared Function WaitForSbcOML(dpy As DisplayPtr, drawable As GLXDrawable, target_sbc As Long, ust As Long*, msc As Long*, sbc As Long*) As Boolean overload: OpenTK.Graphics.Glx.Glx.OML.WaitForSbcOML* - nameWithType.vb: Glx.OML.WaitForSbcOML(Display*, GLXDrawable, Long, Long*, Long*, Long*) - fullName.vb: OpenTK.Graphics.Glx.Glx.OML.WaitForSbcOML(OpenTK.Graphics.Glx.Display*, OpenTK.Graphics.Glx.GLXDrawable, Long, Long*, Long*, Long*) - name.vb: WaitForSbcOML(Display*, GLXDrawable, Long, Long*, Long*, Long*) -- uid: OpenTK.Graphics.Glx.Glx.OML.GetMscRateOML(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXDrawable,System.Int32@,System.Int32@) - commentId: M:OpenTK.Graphics.Glx.Glx.OML.GetMscRateOML(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXDrawable,System.Int32@,System.Int32@) - id: GetMscRateOML(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXDrawable,System.Int32@,System.Int32@) + nameWithType.vb: Glx.OML.WaitForSbcOML(DisplayPtr, GLXDrawable, Long, Long*, Long*, Long*) + fullName.vb: OpenTK.Graphics.Glx.Glx.OML.WaitForSbcOML(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, Long, Long*, Long*, Long*) + name.vb: WaitForSbcOML(DisplayPtr, GLXDrawable, Long, Long*, Long*, Long*) +- uid: OpenTK.Graphics.Glx.Glx.OML.GetMscRateOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32@,System.Int32@) + commentId: M:OpenTK.Graphics.Glx.Glx.OML.GetMscRateOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32@,System.Int32@) + id: GetMscRateOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32@,System.Int32@) parent: OpenTK.Graphics.Glx.Glx.OML langs: - csharp - vb - name: GetMscRateOML(ref Display, GLXDrawable, ref int, ref int) - nameWithType: Glx.OML.GetMscRateOML(ref Display, GLXDrawable, ref int, ref int) - fullName: OpenTK.Graphics.Glx.Glx.OML.GetMscRateOML(ref OpenTK.Graphics.Glx.Display, OpenTK.Graphics.Glx.GLXDrawable, ref int, ref int) + name: GetMscRateOML(DisplayPtr, GLXDrawable, ref int, ref int) + nameWithType: Glx.OML.GetMscRateOML(DisplayPtr, GLXDrawable, ref int, ref int) + fullName: OpenTK.Graphics.Glx.Glx.OML.GetMscRateOML(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, ref int, ref int) type: Method source: remote: @@ -292,7 +291,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetMscRateOML path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 793 + startLine: 434 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -304,10 +303,10 @@ items:
example: [] syntax: - content: public static bool GetMscRateOML(ref Display dpy, GLXDrawable drawable, ref int numerator, ref int denominator) + content: public static bool GetMscRateOML(DisplayPtr dpy, GLXDrawable drawable, ref int numerator, ref int denominator) parameters: - id: dpy - type: OpenTK.Graphics.Glx.Display + type: OpenTK.Graphics.Glx.DisplayPtr - id: drawable type: OpenTK.Graphics.Glx.GLXDrawable - id: numerator @@ -316,21 +315,21 @@ items: type: System.Int32 return: type: System.Boolean - content.vb: Public Shared Function GetMscRateOML(dpy As Display, drawable As GLXDrawable, numerator As Integer, denominator As Integer) As Boolean + content.vb: Public Shared Function GetMscRateOML(dpy As DisplayPtr, drawable As GLXDrawable, numerator As Integer, denominator As Integer) As Boolean overload: OpenTK.Graphics.Glx.Glx.OML.GetMscRateOML* - nameWithType.vb: Glx.OML.GetMscRateOML(Display, GLXDrawable, Integer, Integer) - fullName.vb: OpenTK.Graphics.Glx.Glx.OML.GetMscRateOML(OpenTK.Graphics.Glx.Display, OpenTK.Graphics.Glx.GLXDrawable, Integer, Integer) - name.vb: GetMscRateOML(Display, GLXDrawable, Integer, Integer) -- uid: OpenTK.Graphics.Glx.Glx.OML.GetSyncValuesOML(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXDrawable,System.Int64@,System.Int64@,System.Int64@) - commentId: M:OpenTK.Graphics.Glx.Glx.OML.GetSyncValuesOML(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXDrawable,System.Int64@,System.Int64@,System.Int64@) - id: GetSyncValuesOML(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXDrawable,System.Int64@,System.Int64@,System.Int64@) + nameWithType.vb: Glx.OML.GetMscRateOML(DisplayPtr, GLXDrawable, Integer, Integer) + fullName.vb: OpenTK.Graphics.Glx.Glx.OML.GetMscRateOML(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, Integer, Integer) + name.vb: GetMscRateOML(DisplayPtr, GLXDrawable, Integer, Integer) +- uid: OpenTK.Graphics.Glx.Glx.OML.GetSyncValuesOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int64@,System.Int64@,System.Int64@) + commentId: M:OpenTK.Graphics.Glx.Glx.OML.GetSyncValuesOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int64@,System.Int64@,System.Int64@) + id: GetSyncValuesOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int64@,System.Int64@,System.Int64@) parent: OpenTK.Graphics.Glx.Glx.OML langs: - csharp - vb - name: GetSyncValuesOML(ref Display, GLXDrawable, ref long, ref long, ref long) - nameWithType: Glx.OML.GetSyncValuesOML(ref Display, GLXDrawable, ref long, ref long, ref long) - fullName: OpenTK.Graphics.Glx.Glx.OML.GetSyncValuesOML(ref OpenTK.Graphics.Glx.Display, OpenTK.Graphics.Glx.GLXDrawable, ref long, ref long, ref long) + name: GetSyncValuesOML(DisplayPtr, GLXDrawable, ref long, ref long, ref long) + nameWithType: Glx.OML.GetSyncValuesOML(DisplayPtr, GLXDrawable, ref long, ref long, ref long) + fullName: OpenTK.Graphics.Glx.Glx.OML.GetSyncValuesOML(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, ref long, ref long, ref long) type: Method source: remote: @@ -339,7 +338,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetSyncValuesOML path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 805 + startLine: 445 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -351,10 +350,10 @@ items:
example: [] syntax: - content: public static bool GetSyncValuesOML(ref Display dpy, GLXDrawable drawable, ref long ust, ref long msc, ref long sbc) + content: public static bool GetSyncValuesOML(DisplayPtr dpy, GLXDrawable drawable, ref long ust, ref long msc, ref long sbc) parameters: - id: dpy - type: OpenTK.Graphics.Glx.Display + type: OpenTK.Graphics.Glx.DisplayPtr - id: drawable type: OpenTK.Graphics.Glx.GLXDrawable - id: ust @@ -365,70 +364,21 @@ items: type: System.Int64 return: type: System.Boolean - content.vb: Public Shared Function GetSyncValuesOML(dpy As Display, drawable As GLXDrawable, ust As Long, msc As Long, sbc As Long) As Boolean + content.vb: Public Shared Function GetSyncValuesOML(dpy As DisplayPtr, drawable As GLXDrawable, ust As Long, msc As Long, sbc As Long) As Boolean overload: OpenTK.Graphics.Glx.Glx.OML.GetSyncValuesOML* - nameWithType.vb: Glx.OML.GetSyncValuesOML(Display, GLXDrawable, Long, Long, Long) - fullName.vb: OpenTK.Graphics.Glx.Glx.OML.GetSyncValuesOML(OpenTK.Graphics.Glx.Display, OpenTK.Graphics.Glx.GLXDrawable, Long, Long, Long) - name.vb: GetSyncValuesOML(Display, GLXDrawable, Long, Long, Long) -- uid: OpenTK.Graphics.Glx.Glx.OML.SwapBuffersMscOML(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXDrawable,System.Int64,System.Int64,System.Int64) - commentId: M:OpenTK.Graphics.Glx.Glx.OML.SwapBuffersMscOML(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXDrawable,System.Int64,System.Int64,System.Int64) - id: SwapBuffersMscOML(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXDrawable,System.Int64,System.Int64,System.Int64) + nameWithType.vb: Glx.OML.GetSyncValuesOML(DisplayPtr, GLXDrawable, Long, Long, Long) + fullName.vb: OpenTK.Graphics.Glx.Glx.OML.GetSyncValuesOML(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, Long, Long, Long) + name.vb: GetSyncValuesOML(DisplayPtr, GLXDrawable, Long, Long, Long) +- uid: OpenTK.Graphics.Glx.Glx.OML.WaitForMscOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int64,System.Int64,System.Int64,System.Int64@,System.Int64@,System.Int64@) + commentId: M:OpenTK.Graphics.Glx.Glx.OML.WaitForMscOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int64,System.Int64,System.Int64,System.Int64@,System.Int64@,System.Int64@) + id: WaitForMscOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int64,System.Int64,System.Int64,System.Int64@,System.Int64@,System.Int64@) parent: OpenTK.Graphics.Glx.Glx.OML langs: - csharp - vb - name: SwapBuffersMscOML(ref Display, GLXDrawable, long, long, long) - nameWithType: Glx.OML.SwapBuffersMscOML(ref Display, GLXDrawable, long, long, long) - fullName: OpenTK.Graphics.Glx.Glx.OML.SwapBuffersMscOML(ref OpenTK.Graphics.Glx.Display, OpenTK.Graphics.Glx.GLXDrawable, long, long, long) - type: Method - source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: SwapBuffersMscOML - path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 818 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_OML_sync_control] - - [entry point: glXSwapBuffersMscOML] - -
- example: [] - syntax: - content: public static long SwapBuffersMscOML(ref Display dpy, GLXDrawable drawable, long target_msc, long divisor, long remainder) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.Display - - id: drawable - type: OpenTK.Graphics.Glx.GLXDrawable - - id: target_msc - type: System.Int64 - - id: divisor - type: System.Int64 - - id: remainder - type: System.Int64 - return: - type: System.Int64 - content.vb: Public Shared Function SwapBuffersMscOML(dpy As Display, drawable As GLXDrawable, target_msc As Long, divisor As Long, remainder As Long) As Long - overload: OpenTK.Graphics.Glx.Glx.OML.SwapBuffersMscOML* - nameWithType.vb: Glx.OML.SwapBuffersMscOML(Display, GLXDrawable, Long, Long, Long) - fullName.vb: OpenTK.Graphics.Glx.Glx.OML.SwapBuffersMscOML(OpenTK.Graphics.Glx.Display, OpenTK.Graphics.Glx.GLXDrawable, Long, Long, Long) - name.vb: SwapBuffersMscOML(Display, GLXDrawable, Long, Long, Long) -- uid: OpenTK.Graphics.Glx.Glx.OML.WaitForMscOML(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXDrawable,System.Int64,System.Int64,System.Int64,System.Int64@,System.Int64@,System.Int64@) - commentId: M:OpenTK.Graphics.Glx.Glx.OML.WaitForMscOML(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXDrawable,System.Int64,System.Int64,System.Int64,System.Int64@,System.Int64@,System.Int64@) - id: WaitForMscOML(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXDrawable,System.Int64,System.Int64,System.Int64,System.Int64@,System.Int64@,System.Int64@) - parent: OpenTK.Graphics.Glx.Glx.OML - langs: - - csharp - - vb - name: WaitForMscOML(ref Display, GLXDrawable, long, long, long, ref long, ref long, ref long) - nameWithType: Glx.OML.WaitForMscOML(ref Display, GLXDrawable, long, long, long, ref long, ref long, ref long) - fullName: OpenTK.Graphics.Glx.Glx.OML.WaitForMscOML(ref OpenTK.Graphics.Glx.Display, OpenTK.Graphics.Glx.GLXDrawable, long, long, long, ref long, ref long, ref long) + name: WaitForMscOML(DisplayPtr, GLXDrawable, long, long, long, ref long, ref long, ref long) + nameWithType: Glx.OML.WaitForMscOML(DisplayPtr, GLXDrawable, long, long, long, ref long, ref long, ref long) + fullName: OpenTK.Graphics.Glx.Glx.OML.WaitForMscOML(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, long, long, long, ref long, ref long, ref long) type: Method source: remote: @@ -437,7 +387,7 @@ items: repo: https://github.com/opentk/opentk.git id: WaitForMscOML path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 828 + startLine: 457 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -449,10 +399,10 @@ items:
example: [] syntax: - content: public static bool WaitForMscOML(ref Display dpy, GLXDrawable drawable, long target_msc, long divisor, long remainder, ref long ust, ref long msc, ref long sbc) + content: public static bool WaitForMscOML(DisplayPtr dpy, GLXDrawable drawable, long target_msc, long divisor, long remainder, ref long ust, ref long msc, ref long sbc) parameters: - id: dpy - type: OpenTK.Graphics.Glx.Display + type: OpenTK.Graphics.Glx.DisplayPtr - id: drawable type: OpenTK.Graphics.Glx.GLXDrawable - id: target_msc @@ -469,21 +419,21 @@ items: type: System.Int64 return: type: System.Boolean - content.vb: Public Shared Function WaitForMscOML(dpy As Display, drawable As GLXDrawable, target_msc As Long, divisor As Long, remainder As Long, ust As Long, msc As Long, sbc As Long) As Boolean + content.vb: Public Shared Function WaitForMscOML(dpy As DisplayPtr, drawable As GLXDrawable, target_msc As Long, divisor As Long, remainder As Long, ust As Long, msc As Long, sbc As Long) As Boolean overload: OpenTK.Graphics.Glx.Glx.OML.WaitForMscOML* - nameWithType.vb: Glx.OML.WaitForMscOML(Display, GLXDrawable, Long, Long, Long, Long, Long, Long) - fullName.vb: OpenTK.Graphics.Glx.Glx.OML.WaitForMscOML(OpenTK.Graphics.Glx.Display, OpenTK.Graphics.Glx.GLXDrawable, Long, Long, Long, Long, Long, Long) - name.vb: WaitForMscOML(Display, GLXDrawable, Long, Long, Long, Long, Long, Long) -- uid: OpenTK.Graphics.Glx.Glx.OML.WaitForSbcOML(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXDrawable,System.Int64,System.Int64@,System.Int64@,System.Int64@) - commentId: M:OpenTK.Graphics.Glx.Glx.OML.WaitForSbcOML(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXDrawable,System.Int64,System.Int64@,System.Int64@,System.Int64@) - id: WaitForSbcOML(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXDrawable,System.Int64,System.Int64@,System.Int64@,System.Int64@) + nameWithType.vb: Glx.OML.WaitForMscOML(DisplayPtr, GLXDrawable, Long, Long, Long, Long, Long, Long) + fullName.vb: OpenTK.Graphics.Glx.Glx.OML.WaitForMscOML(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, Long, Long, Long, Long, Long, Long) + name.vb: WaitForMscOML(DisplayPtr, GLXDrawable, Long, Long, Long, Long, Long, Long) +- uid: OpenTK.Graphics.Glx.Glx.OML.WaitForSbcOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int64,System.Int64@,System.Int64@,System.Int64@) + commentId: M:OpenTK.Graphics.Glx.Glx.OML.WaitForSbcOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int64,System.Int64@,System.Int64@,System.Int64@) + id: WaitForSbcOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int64,System.Int64@,System.Int64@,System.Int64@) parent: OpenTK.Graphics.Glx.Glx.OML langs: - csharp - vb - name: WaitForSbcOML(ref Display, GLXDrawable, long, ref long, ref long, ref long) - nameWithType: Glx.OML.WaitForSbcOML(ref Display, GLXDrawable, long, ref long, ref long, ref long) - fullName: OpenTK.Graphics.Glx.Glx.OML.WaitForSbcOML(ref OpenTK.Graphics.Glx.Display, OpenTK.Graphics.Glx.GLXDrawable, long, ref long, ref long, ref long) + name: WaitForSbcOML(DisplayPtr, GLXDrawable, long, ref long, ref long, ref long) + nameWithType: Glx.OML.WaitForSbcOML(DisplayPtr, GLXDrawable, long, ref long, ref long, ref long) + fullName: OpenTK.Graphics.Glx.Glx.OML.WaitForSbcOML(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, long, ref long, ref long, ref long) type: Method source: remote: @@ -492,7 +442,7 @@ items: repo: https://github.com/opentk/opentk.git id: WaitForSbcOML path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 841 + startLine: 469 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -504,10 +454,10 @@ items:
example: [] syntax: - content: public static bool WaitForSbcOML(ref Display dpy, GLXDrawable drawable, long target_sbc, ref long ust, ref long msc, ref long sbc) + content: public static bool WaitForSbcOML(DisplayPtr dpy, GLXDrawable drawable, long target_sbc, ref long ust, ref long msc, ref long sbc) parameters: - id: dpy - type: OpenTK.Graphics.Glx.Display + type: OpenTK.Graphics.Glx.DisplayPtr - id: drawable type: OpenTK.Graphics.Glx.GLXDrawable - id: target_sbc @@ -520,11 +470,11 @@ items: type: System.Int64 return: type: System.Boolean - content.vb: Public Shared Function WaitForSbcOML(dpy As Display, drawable As GLXDrawable, target_sbc As Long, ust As Long, msc As Long, sbc As Long) As Boolean + content.vb: Public Shared Function WaitForSbcOML(dpy As DisplayPtr, drawable As GLXDrawable, target_sbc As Long, ust As Long, msc As Long, sbc As Long) As Boolean overload: OpenTK.Graphics.Glx.Glx.OML.WaitForSbcOML* - nameWithType.vb: Glx.OML.WaitForSbcOML(Display, GLXDrawable, Long, Long, Long, Long) - fullName.vb: OpenTK.Graphics.Glx.Glx.OML.WaitForSbcOML(OpenTK.Graphics.Glx.Display, OpenTK.Graphics.Glx.GLXDrawable, Long, Long, Long, Long) - name.vb: WaitForSbcOML(Display, GLXDrawable, Long, Long, Long, Long) + nameWithType.vb: Glx.OML.WaitForSbcOML(DisplayPtr, GLXDrawable, Long, Long, Long, Long) + fullName.vb: OpenTK.Graphics.Glx.Glx.OML.WaitForSbcOML(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, Long, Long, Long, Long) + name.vb: WaitForSbcOML(DisplayPtr, GLXDrawable, Long, Long, Long, Long) references: - uid: OpenTK.Graphics.Glx commentId: N:OpenTK.Graphics.Glx @@ -795,26 +745,17 @@ references: fullName: System - uid: OpenTK.Graphics.Glx.Glx.OML.GetMscRateOML* commentId: Overload:OpenTK.Graphics.Glx.Glx.OML.GetMscRateOML - href: OpenTK.Graphics.Glx.Glx.OML.html#OpenTK_Graphics_Glx_Glx_OML_GetMscRateOML_OpenTK_Graphics_Glx_Display__OpenTK_Graphics_Glx_GLXDrawable_System_Int32__System_Int32__ + href: OpenTK.Graphics.Glx.Glx.OML.html#OpenTK_Graphics_Glx_Glx_OML_GetMscRateOML_OpenTK_Graphics_Glx_DisplayPtr_OpenTK_Graphics_Glx_GLXDrawable_System_Int32__System_Int32__ name: GetMscRateOML nameWithType: Glx.OML.GetMscRateOML fullName: OpenTK.Graphics.Glx.Glx.OML.GetMscRateOML -- uid: OpenTK.Graphics.Glx.Display* - isExternal: true - href: OpenTK.Graphics.Glx.Display.html - name: Display* - nameWithType: Display* - fullName: OpenTK.Graphics.Glx.Display* - spec.csharp: - - uid: OpenTK.Graphics.Glx.Display - name: Display - href: OpenTK.Graphics.Glx.Display.html - - name: '*' - spec.vb: - - uid: OpenTK.Graphics.Glx.Display - name: Display - href: OpenTK.Graphics.Glx.Display.html - - name: '*' +- uid: OpenTK.Graphics.Glx.DisplayPtr + commentId: T:OpenTK.Graphics.Glx.DisplayPtr + parent: OpenTK.Graphics.Glx + href: OpenTK.Graphics.Glx.DisplayPtr.html + name: DisplayPtr + nameWithType: DisplayPtr + fullName: OpenTK.Graphics.Glx.DisplayPtr - uid: OpenTK.Graphics.Glx.GLXDrawable commentId: T:OpenTK.Graphics.Glx.GLXDrawable parent: OpenTK.Graphics.Glx @@ -856,7 +797,7 @@ references: name.vb: Boolean - uid: OpenTK.Graphics.Glx.Glx.OML.GetSyncValuesOML* commentId: Overload:OpenTK.Graphics.Glx.Glx.OML.GetSyncValuesOML - href: OpenTK.Graphics.Glx.Glx.OML.html#OpenTK_Graphics_Glx_Glx_OML_GetSyncValuesOML_OpenTK_Graphics_Glx_Display__OpenTK_Graphics_Glx_GLXDrawable_System_Int64__System_Int64__System_Int64__ + href: OpenTK.Graphics.Glx.Glx.OML.html#OpenTK_Graphics_Glx_Glx_OML_GetSyncValuesOML_OpenTK_Graphics_Glx_DisplayPtr_OpenTK_Graphics_Glx_GLXDrawable_System_Int64__System_Int64__System_Int64__ name: GetSyncValuesOML nameWithType: Glx.OML.GetSyncValuesOML fullName: OpenTK.Graphics.Glx.Glx.OML.GetSyncValuesOML @@ -883,7 +824,7 @@ references: - name: '*' - uid: OpenTK.Graphics.Glx.Glx.OML.SwapBuffersMscOML* commentId: Overload:OpenTK.Graphics.Glx.Glx.OML.SwapBuffersMscOML - href: OpenTK.Graphics.Glx.Glx.OML.html#OpenTK_Graphics_Glx_Glx_OML_SwapBuffersMscOML_OpenTK_Graphics_Glx_Display__OpenTK_Graphics_Glx_GLXDrawable_System_Int64_System_Int64_System_Int64_ + href: OpenTK.Graphics.Glx.Glx.OML.html#OpenTK_Graphics_Glx_Glx_OML_SwapBuffersMscOML_OpenTK_Graphics_Glx_DisplayPtr_OpenTK_Graphics_Glx_GLXDrawable_System_Int64_System_Int64_System_Int64_ name: SwapBuffersMscOML nameWithType: Glx.OML.SwapBuffersMscOML fullName: OpenTK.Graphics.Glx.Glx.OML.SwapBuffersMscOML @@ -900,23 +841,16 @@ references: name.vb: Long - uid: OpenTK.Graphics.Glx.Glx.OML.WaitForMscOML* commentId: Overload:OpenTK.Graphics.Glx.Glx.OML.WaitForMscOML - href: OpenTK.Graphics.Glx.Glx.OML.html#OpenTK_Graphics_Glx_Glx_OML_WaitForMscOML_OpenTK_Graphics_Glx_Display__OpenTK_Graphics_Glx_GLXDrawable_System_Int64_System_Int64_System_Int64_System_Int64__System_Int64__System_Int64__ + href: OpenTK.Graphics.Glx.Glx.OML.html#OpenTK_Graphics_Glx_Glx_OML_WaitForMscOML_OpenTK_Graphics_Glx_DisplayPtr_OpenTK_Graphics_Glx_GLXDrawable_System_Int64_System_Int64_System_Int64_System_Int64__System_Int64__System_Int64__ name: WaitForMscOML nameWithType: Glx.OML.WaitForMscOML fullName: OpenTK.Graphics.Glx.Glx.OML.WaitForMscOML - uid: OpenTK.Graphics.Glx.Glx.OML.WaitForSbcOML* commentId: Overload:OpenTK.Graphics.Glx.Glx.OML.WaitForSbcOML - href: OpenTK.Graphics.Glx.Glx.OML.html#OpenTK_Graphics_Glx_Glx_OML_WaitForSbcOML_OpenTK_Graphics_Glx_Display__OpenTK_Graphics_Glx_GLXDrawable_System_Int64_System_Int64__System_Int64__System_Int64__ + href: OpenTK.Graphics.Glx.Glx.OML.html#OpenTK_Graphics_Glx_Glx_OML_WaitForSbcOML_OpenTK_Graphics_Glx_DisplayPtr_OpenTK_Graphics_Glx_GLXDrawable_System_Int64_System_Int64__System_Int64__System_Int64__ name: WaitForSbcOML nameWithType: Glx.OML.WaitForSbcOML fullName: OpenTK.Graphics.Glx.Glx.OML.WaitForSbcOML -- uid: OpenTK.Graphics.Glx.Display - commentId: T:OpenTK.Graphics.Glx.Display - parent: OpenTK.Graphics.Glx - href: OpenTK.Graphics.Glx.Display.html - name: Display - nameWithType: Display - fullName: OpenTK.Graphics.Glx.Display - uid: System.Int32 commentId: T:System.Int32 parent: System diff --git a/api/OpenTK.Graphics.Glx.Glx.SGI.yml b/api/OpenTK.Graphics.Glx.Glx.SGI.yml index a90c10f0..1b22a06a 100644 --- a/api/OpenTK.Graphics.Glx.Glx.SGI.yml +++ b/api/OpenTK.Graphics.Glx.Glx.SGI.yml @@ -5,13 +5,11 @@ items: id: Glx.SGI parent: OpenTK.Graphics.Glx children: - - OpenTK.Graphics.Glx.Glx.SGI.CushionSGI(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.Window,System.Single) - - OpenTK.Graphics.Glx.Glx.SGI.CushionSGI(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.Window,System.Single) + - OpenTK.Graphics.Glx.Glx.SGI.CushionSGI(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.Window,System.Single) - OpenTK.Graphics.Glx.Glx.SGI.GetCurrentReadDrawableSGI - OpenTK.Graphics.Glx.Glx.SGI.GetVideoSyncSGI(System.UInt32*) - OpenTK.Graphics.Glx.Glx.SGI.GetVideoSyncSGI(System.UInt32@) - - OpenTK.Graphics.Glx.Glx.SGI.MakeCurrentReadSGI(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXDrawable,OpenTK.Graphics.Glx.GLXDrawable,OpenTK.Graphics.Glx.GLXContext) - - OpenTK.Graphics.Glx.Glx.SGI.MakeCurrentReadSGI(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXDrawable,OpenTK.Graphics.Glx.GLXDrawable,OpenTK.Graphics.Glx.GLXContext) + - OpenTK.Graphics.Glx.Glx.SGI.MakeCurrentReadSGI(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,OpenTK.Graphics.Glx.GLXDrawable,OpenTK.Graphics.Glx.GLXContext) - OpenTK.Graphics.Glx.Glx.SGI.SwapIntervalSGI(System.Int32) - OpenTK.Graphics.Glx.Glx.SGI.WaitVideoSyncSGI(System.Int32,System.Int32,System.UInt32*) - OpenTK.Graphics.Glx.Glx.SGI.WaitVideoSyncSGI(System.Int32,System.Int32,System.UInt32@) @@ -29,7 +27,7 @@ items: repo: https://github.com/opentk/opentk.git id: SGI path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 854 + startLine: 481 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -48,16 +46,16 @@ items: - System.Object.MemberwiseClone - System.Object.ReferenceEquals(System.Object,System.Object) - System.Object.ToString -- uid: OpenTK.Graphics.Glx.Glx.SGI.CushionSGI(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.Window,System.Single) - commentId: M:OpenTK.Graphics.Glx.Glx.SGI.CushionSGI(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.Window,System.Single) - id: CushionSGI(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.Window,System.Single) +- uid: OpenTK.Graphics.Glx.Glx.SGI.CushionSGI(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.Window,System.Single) + commentId: M:OpenTK.Graphics.Glx.Glx.SGI.CushionSGI(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.Window,System.Single) + id: CushionSGI(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.Window,System.Single) parent: OpenTK.Graphics.Glx.Glx.SGI langs: - csharp - vb - name: CushionSGI(Display*, Window, float) - nameWithType: Glx.SGI.CushionSGI(Display*, Window, float) - fullName: OpenTK.Graphics.Glx.Glx.SGI.CushionSGI(OpenTK.Graphics.Glx.Display*, OpenTK.Graphics.Glx.Window, float) + name: CushionSGI(DisplayPtr, Window, float) + nameWithType: Glx.SGI.CushionSGI(DisplayPtr, Window, float) + fullName: OpenTK.Graphics.Glx.Glx.SGI.CushionSGI(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.Window, float) type: Method source: remote: @@ -73,19 +71,19 @@ items: summary: '[requires: GLX_SGI_cushion] [entry point: glXCushionSGI]
' example: [] syntax: - content: public static void CushionSGI(Display* dpy, Window window, float cushion) + content: public static void CushionSGI(DisplayPtr dpy, Window window, float cushion) parameters: - id: dpy - type: OpenTK.Graphics.Glx.Display* + type: OpenTK.Graphics.Glx.DisplayPtr - id: window type: OpenTK.Graphics.Glx.Window - id: cushion type: System.Single - content.vb: Public Shared Sub CushionSGI(dpy As Display*, window As Window, cushion As Single) + content.vb: Public Shared Sub CushionSGI(dpy As DisplayPtr, window As Window, cushion As Single) overload: OpenTK.Graphics.Glx.Glx.SGI.CushionSGI* - nameWithType.vb: Glx.SGI.CushionSGI(Display*, Window, Single) - fullName.vb: OpenTK.Graphics.Glx.Glx.SGI.CushionSGI(OpenTK.Graphics.Glx.Display*, OpenTK.Graphics.Glx.Window, Single) - name.vb: CushionSGI(Display*, Window, Single) + nameWithType.vb: Glx.SGI.CushionSGI(DisplayPtr, Window, Single) + fullName.vb: OpenTK.Graphics.Glx.Glx.SGI.CushionSGI(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.Window, Single) + name.vb: CushionSGI(DisplayPtr, Window, Single) - uid: OpenTK.Graphics.Glx.Glx.SGI.GetCurrentReadDrawableSGI commentId: M:OpenTK.Graphics.Glx.Glx.SGI.GetCurrentReadDrawableSGI id: GetCurrentReadDrawableSGI @@ -152,16 +150,16 @@ items: nameWithType.vb: Glx.SGI.GetVideoSyncSGI(UInteger*) fullName.vb: OpenTK.Graphics.Glx.Glx.SGI.GetVideoSyncSGI(UInteger*) name.vb: GetVideoSyncSGI(UInteger*) -- uid: OpenTK.Graphics.Glx.Glx.SGI.MakeCurrentReadSGI(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXDrawable,OpenTK.Graphics.Glx.GLXDrawable,OpenTK.Graphics.Glx.GLXContext) - commentId: M:OpenTK.Graphics.Glx.Glx.SGI.MakeCurrentReadSGI(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXDrawable,OpenTK.Graphics.Glx.GLXDrawable,OpenTK.Graphics.Glx.GLXContext) - id: MakeCurrentReadSGI(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXDrawable,OpenTK.Graphics.Glx.GLXDrawable,OpenTK.Graphics.Glx.GLXContext) +- uid: OpenTK.Graphics.Glx.Glx.SGI.MakeCurrentReadSGI(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,OpenTK.Graphics.Glx.GLXDrawable,OpenTK.Graphics.Glx.GLXContext) + commentId: M:OpenTK.Graphics.Glx.Glx.SGI.MakeCurrentReadSGI(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,OpenTK.Graphics.Glx.GLXDrawable,OpenTK.Graphics.Glx.GLXContext) + id: MakeCurrentReadSGI(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,OpenTK.Graphics.Glx.GLXDrawable,OpenTK.Graphics.Glx.GLXContext) parent: OpenTK.Graphics.Glx.Glx.SGI langs: - csharp - vb - name: MakeCurrentReadSGI(Display*, GLXDrawable, GLXDrawable, GLXContext) - nameWithType: Glx.SGI.MakeCurrentReadSGI(Display*, GLXDrawable, GLXDrawable, GLXContext) - fullName: OpenTK.Graphics.Glx.Glx.SGI.MakeCurrentReadSGI(OpenTK.Graphics.Glx.Display*, OpenTK.Graphics.Glx.GLXDrawable, OpenTK.Graphics.Glx.GLXDrawable, OpenTK.Graphics.Glx.GLXContext) + name: MakeCurrentReadSGI(DisplayPtr, GLXDrawable, GLXDrawable, GLXContext) + nameWithType: Glx.SGI.MakeCurrentReadSGI(DisplayPtr, GLXDrawable, GLXDrawable, GLXContext) + fullName: OpenTK.Graphics.Glx.Glx.SGI.MakeCurrentReadSGI(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, OpenTK.Graphics.Glx.GLXDrawable, OpenTK.Graphics.Glx.GLXContext) type: Method source: remote: @@ -177,10 +175,10 @@ items: summary: '[requires: GLX_SGI_make_current_read] [entry point: glXMakeCurrentReadSGI]
' example: [] syntax: - content: public static bool MakeCurrentReadSGI(Display* dpy, GLXDrawable draw, GLXDrawable read, GLXContext ctx) + content: public static bool MakeCurrentReadSGI(DisplayPtr dpy, GLXDrawable draw, GLXDrawable read, GLXContext ctx) parameters: - id: dpy - type: OpenTK.Graphics.Glx.Display* + type: OpenTK.Graphics.Glx.DisplayPtr - id: draw type: OpenTK.Graphics.Glx.GLXDrawable - id: read @@ -189,7 +187,7 @@ items: type: OpenTK.Graphics.Glx.GLXContext return: type: System.Boolean - content.vb: Public Shared Function MakeCurrentReadSGI(dpy As Display*, draw As GLXDrawable, read As GLXDrawable, ctx As GLXContext) As Boolean + content.vb: Public Shared Function MakeCurrentReadSGI(dpy As DisplayPtr, draw As GLXDrawable, read As GLXDrawable, ctx As GLXContext) As Boolean overload: OpenTK.Graphics.Glx.Glx.SGI.MakeCurrentReadSGI* - uid: OpenTK.Graphics.Glx.Glx.SGI.SwapIntervalSGI(System.Int32) commentId: M:OpenTK.Graphics.Glx.Glx.SGI.SwapIntervalSGI(System.Int32) @@ -267,49 +265,6 @@ items: nameWithType.vb: Glx.SGI.WaitVideoSyncSGI(Integer, Integer, UInteger*) fullName.vb: OpenTK.Graphics.Glx.Glx.SGI.WaitVideoSyncSGI(Integer, Integer, UInteger*) name.vb: WaitVideoSyncSGI(Integer, Integer, UInteger*) -- uid: OpenTK.Graphics.Glx.Glx.SGI.CushionSGI(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.Window,System.Single) - commentId: M:OpenTK.Graphics.Glx.Glx.SGI.CushionSGI(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.Window,System.Single) - id: CushionSGI(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.Window,System.Single) - parent: OpenTK.Graphics.Glx.Glx.SGI - langs: - - csharp - - vb - name: CushionSGI(ref Display, Window, float) - nameWithType: Glx.SGI.CushionSGI(ref Display, Window, float) - fullName: OpenTK.Graphics.Glx.Glx.SGI.CushionSGI(ref OpenTK.Graphics.Glx.Display, OpenTK.Graphics.Glx.Window, float) - type: Method - source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: CushionSGI - path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 857 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_SGI_cushion] - - [entry point: glXCushionSGI] - -
- example: [] - syntax: - content: public static void CushionSGI(ref Display dpy, Window window, float cushion) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.Display - - id: window - type: OpenTK.Graphics.Glx.Window - - id: cushion - type: System.Single - content.vb: Public Shared Sub CushionSGI(dpy As Display, window As Window, cushion As Single) - overload: OpenTK.Graphics.Glx.Glx.SGI.CushionSGI* - nameWithType.vb: Glx.SGI.CushionSGI(Display, Window, Single) - fullName.vb: OpenTK.Graphics.Glx.Glx.SGI.CushionSGI(OpenTK.Graphics.Glx.Display, OpenTK.Graphics.Glx.Window, Single) - name.vb: CushionSGI(Display, Window, Single) - uid: OpenTK.Graphics.Glx.Glx.SGI.GetVideoSyncSGI(System.UInt32@) commentId: M:OpenTK.Graphics.Glx.Glx.SGI.GetVideoSyncSGI(System.UInt32@) id: GetVideoSyncSGI(System.UInt32@) @@ -328,7 +283,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetVideoSyncSGI path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 865 + startLine: 484 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -351,53 +306,6 @@ items: nameWithType.vb: Glx.SGI.GetVideoSyncSGI(UInteger) fullName.vb: OpenTK.Graphics.Glx.Glx.SGI.GetVideoSyncSGI(UInteger) name.vb: GetVideoSyncSGI(UInteger) -- uid: OpenTK.Graphics.Glx.Glx.SGI.MakeCurrentReadSGI(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXDrawable,OpenTK.Graphics.Glx.GLXDrawable,OpenTK.Graphics.Glx.GLXContext) - commentId: M:OpenTK.Graphics.Glx.Glx.SGI.MakeCurrentReadSGI(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXDrawable,OpenTK.Graphics.Glx.GLXDrawable,OpenTK.Graphics.Glx.GLXContext) - id: MakeCurrentReadSGI(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXDrawable,OpenTK.Graphics.Glx.GLXDrawable,OpenTK.Graphics.Glx.GLXContext) - parent: OpenTK.Graphics.Glx.Glx.SGI - langs: - - csharp - - vb - name: MakeCurrentReadSGI(ref Display, GLXDrawable, GLXDrawable, GLXContext) - nameWithType: Glx.SGI.MakeCurrentReadSGI(ref Display, GLXDrawable, GLXDrawable, GLXContext) - fullName: OpenTK.Graphics.Glx.Glx.SGI.MakeCurrentReadSGI(ref OpenTK.Graphics.Glx.Display, OpenTK.Graphics.Glx.GLXDrawable, OpenTK.Graphics.Glx.GLXDrawable, OpenTK.Graphics.Glx.GLXContext) - type: Method - source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: MakeCurrentReadSGI - path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 875 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_SGI_make_current_read] - - [entry point: glXMakeCurrentReadSGI] - -
- example: [] - syntax: - content: public static bool MakeCurrentReadSGI(ref Display dpy, GLXDrawable draw, GLXDrawable read, GLXContext ctx) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.Display - - id: draw - type: OpenTK.Graphics.Glx.GLXDrawable - - id: read - type: OpenTK.Graphics.Glx.GLXDrawable - - id: ctx - type: OpenTK.Graphics.Glx.GLXContext - return: - type: System.Boolean - content.vb: Public Shared Function MakeCurrentReadSGI(dpy As Display, draw As GLXDrawable, read As GLXDrawable, ctx As GLXContext) As Boolean - overload: OpenTK.Graphics.Glx.Glx.SGI.MakeCurrentReadSGI* - nameWithType.vb: Glx.SGI.MakeCurrentReadSGI(Display, GLXDrawable, GLXDrawable, GLXContext) - fullName.vb: OpenTK.Graphics.Glx.Glx.SGI.MakeCurrentReadSGI(OpenTK.Graphics.Glx.Display, OpenTK.Graphics.Glx.GLXDrawable, OpenTK.Graphics.Glx.GLXDrawable, OpenTK.Graphics.Glx.GLXContext) - name.vb: MakeCurrentReadSGI(Display, GLXDrawable, GLXDrawable, GLXContext) - uid: OpenTK.Graphics.Glx.Glx.SGI.WaitVideoSyncSGI(System.Int32,System.Int32,System.UInt32@) commentId: M:OpenTK.Graphics.Glx.Glx.SGI.WaitVideoSyncSGI(System.Int32,System.Int32,System.UInt32@) id: WaitVideoSyncSGI(System.Int32,System.Int32,System.UInt32@) @@ -416,7 +324,7 @@ items: repo: https://github.com/opentk/opentk.git id: WaitVideoSyncSGI path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 885 + startLine: 494 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -713,26 +621,17 @@ references: fullName: System - uid: OpenTK.Graphics.Glx.Glx.SGI.CushionSGI* commentId: Overload:OpenTK.Graphics.Glx.Glx.SGI.CushionSGI - href: OpenTK.Graphics.Glx.Glx.SGI.html#OpenTK_Graphics_Glx_Glx_SGI_CushionSGI_OpenTK_Graphics_Glx_Display__OpenTK_Graphics_Glx_Window_System_Single_ + href: OpenTK.Graphics.Glx.Glx.SGI.html#OpenTK_Graphics_Glx_Glx_SGI_CushionSGI_OpenTK_Graphics_Glx_DisplayPtr_OpenTK_Graphics_Glx_Window_System_Single_ name: CushionSGI nameWithType: Glx.SGI.CushionSGI fullName: OpenTK.Graphics.Glx.Glx.SGI.CushionSGI -- uid: OpenTK.Graphics.Glx.Display* - isExternal: true - href: OpenTK.Graphics.Glx.Display.html - name: Display* - nameWithType: Display* - fullName: OpenTK.Graphics.Glx.Display* - spec.csharp: - - uid: OpenTK.Graphics.Glx.Display - name: Display - href: OpenTK.Graphics.Glx.Display.html - - name: '*' - spec.vb: - - uid: OpenTK.Graphics.Glx.Display - name: Display - href: OpenTK.Graphics.Glx.Display.html - - name: '*' +- uid: OpenTK.Graphics.Glx.DisplayPtr + commentId: T:OpenTK.Graphics.Glx.DisplayPtr + parent: OpenTK.Graphics.Glx + href: OpenTK.Graphics.Glx.DisplayPtr.html + name: DisplayPtr + nameWithType: DisplayPtr + fullName: OpenTK.Graphics.Glx.DisplayPtr - uid: OpenTK.Graphics.Glx.Window commentId: T:OpenTK.Graphics.Glx.Window parent: OpenTK.Graphics.Glx @@ -804,7 +703,7 @@ references: name.vb: Integer - uid: OpenTK.Graphics.Glx.Glx.SGI.MakeCurrentReadSGI* commentId: Overload:OpenTK.Graphics.Glx.Glx.SGI.MakeCurrentReadSGI - href: OpenTK.Graphics.Glx.Glx.SGI.html#OpenTK_Graphics_Glx_Glx_SGI_MakeCurrentReadSGI_OpenTK_Graphics_Glx_Display__OpenTK_Graphics_Glx_GLXDrawable_OpenTK_Graphics_Glx_GLXDrawable_OpenTK_Graphics_Glx_GLXContext_ + href: OpenTK.Graphics.Glx.Glx.SGI.html#OpenTK_Graphics_Glx_Glx_SGI_MakeCurrentReadSGI_OpenTK_Graphics_Glx_DisplayPtr_OpenTK_Graphics_Glx_GLXDrawable_OpenTK_Graphics_Glx_GLXDrawable_OpenTK_Graphics_Glx_GLXContext_ name: MakeCurrentReadSGI nameWithType: Glx.SGI.MakeCurrentReadSGI fullName: OpenTK.Graphics.Glx.Glx.SGI.MakeCurrentReadSGI @@ -838,13 +737,6 @@ references: name: WaitVideoSyncSGI nameWithType: Glx.SGI.WaitVideoSyncSGI fullName: OpenTK.Graphics.Glx.Glx.SGI.WaitVideoSyncSGI -- uid: OpenTK.Graphics.Glx.Display - commentId: T:OpenTK.Graphics.Glx.Display - parent: OpenTK.Graphics.Glx - href: OpenTK.Graphics.Glx.Display.html - name: Display - nameWithType: Display - fullName: OpenTK.Graphics.Glx.Display - uid: System.UInt32 commentId: T:System.UInt32 parent: System diff --git a/api/OpenTK.Graphics.Glx.Glx.SGIX.yml b/api/OpenTK.Graphics.Glx.Glx.SGIX.yml index eb810947..9a24139b 100644 --- a/api/OpenTK.Graphics.Glx.Glx.SGIX.yml +++ b/api/OpenTK.Graphics.Glx.Glx.SGIX.yml @@ -5,63 +5,50 @@ items: id: Glx.SGIX parent: OpenTK.Graphics.Glx children: - - OpenTK.Graphics.Glx.Glx.SGIX.BindChannelToWindowSGIX(OpenTK.Graphics.Glx.Display*,System.Int32,System.Int32,OpenTK.Graphics.Glx.Window) - - OpenTK.Graphics.Glx.Glx.SGIX.BindChannelToWindowSGIX(OpenTK.Graphics.Glx.Display@,System.Int32,System.Int32,OpenTK.Graphics.Glx.Window) - - OpenTK.Graphics.Glx.Glx.SGIX.BindHyperpipeSGIX(OpenTK.Graphics.Glx.Display*,System.Int32) - - OpenTK.Graphics.Glx.Glx.SGIX.BindHyperpipeSGIX(OpenTK.Graphics.Glx.Display@,System.Int32) - - OpenTK.Graphics.Glx.Glx.SGIX.BindSwapBarrierSGIX(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXDrawable,System.Int32) - - OpenTK.Graphics.Glx.Glx.SGIX.BindSwapBarrierSGIX(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXDrawable,System.Int32) - - OpenTK.Graphics.Glx.Glx.SGIX.ChannelRectSGIX(OpenTK.Graphics.Glx.Display*,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32) - - OpenTK.Graphics.Glx.Glx.SGIX.ChannelRectSGIX(OpenTK.Graphics.Glx.Display@,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32) - - OpenTK.Graphics.Glx.Glx.SGIX.ChannelRectSyncSGIX(OpenTK.Graphics.Glx.Display*,System.Int32,System.Int32,OpenTK.Graphics.Glx.All) - - OpenTK.Graphics.Glx.Glx.SGIX.ChannelRectSyncSGIX(OpenTK.Graphics.Glx.Display@,System.Int32,System.Int32,OpenTK.Graphics.Glx.All) - - OpenTK.Graphics.Glx.Glx.SGIX.ChooseFBConfigSGIX(OpenTK.Graphics.Glx.Display*,System.Int32,System.Int32*,System.Int32*) - - OpenTK.Graphics.Glx.Glx.SGIX.ChooseFBConfigSGIX(OpenTK.Graphics.Glx.Display@,System.Int32,System.Int32@,System.Int32@) - - OpenTK.Graphics.Glx.Glx.SGIX.CreateContextWithConfigSGIX(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXFBConfigSGIX,System.Int32,OpenTK.Graphics.Glx.GLXContext,System.Boolean) - - OpenTK.Graphics.Glx.Glx.SGIX.CreateContextWithConfigSGIX(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXFBConfigSGIX,System.Int32,OpenTK.Graphics.Glx.GLXContext,System.Boolean) - - OpenTK.Graphics.Glx.Glx.SGIX.CreateGLXPbufferSGIX(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXFBConfigSGIX,System.UInt32,System.UInt32,System.Int32*) - - OpenTK.Graphics.Glx.Glx.SGIX.CreateGLXPbufferSGIX(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXFBConfigSGIX,System.UInt32,System.UInt32,System.Int32@) - - OpenTK.Graphics.Glx.Glx.SGIX.CreateGLXPixmapWithConfigSGIX(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXFBConfigSGIX,OpenTK.Graphics.Glx.Pixmap) - - OpenTK.Graphics.Glx.Glx.SGIX.CreateGLXPixmapWithConfigSGIX(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXFBConfigSGIX,OpenTK.Graphics.Glx.Pixmap) - - OpenTK.Graphics.Glx.Glx.SGIX.DestroyGLXPbufferSGIX(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXPbufferSGIX) - - OpenTK.Graphics.Glx.Glx.SGIX.DestroyGLXPbufferSGIX(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXPbufferSGIX) - - OpenTK.Graphics.Glx.Glx.SGIX.DestroyHyperpipeConfigSGIX(OpenTK.Graphics.Glx.Display*,System.Int32) - - OpenTK.Graphics.Glx.Glx.SGIX.DestroyHyperpipeConfigSGIX(OpenTK.Graphics.Glx.Display@,System.Int32) - - OpenTK.Graphics.Glx.Glx.SGIX.GetFBConfigAttribSGIX(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXFBConfigSGIX,System.Int32,System.Int32*) - - OpenTK.Graphics.Glx.Glx.SGIX.GetFBConfigAttribSGIX(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXFBConfigSGIX,System.Int32,System.Int32@) - - OpenTK.Graphics.Glx.Glx.SGIX.GetFBConfigFromVisualSGIX(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.XVisualInfo*) - - OpenTK.Graphics.Glx.Glx.SGIX.GetFBConfigFromVisualSGIX(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.XVisualInfo@) - - OpenTK.Graphics.Glx.Glx.SGIX.GetSelectedEventSGIX(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXDrawable,System.UInt64*) - - OpenTK.Graphics.Glx.Glx.SGIX.GetSelectedEventSGIX(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXDrawable,System.UInt64@) - - OpenTK.Graphics.Glx.Glx.SGIX.GetVisualFromFBConfigSGIX(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXFBConfigSGIX) - - OpenTK.Graphics.Glx.Glx.SGIX.GetVisualFromFBConfigSGIX(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXFBConfigSGIX) - - OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeAttribSGIX(OpenTK.Graphics.Glx.Display*,System.Int32,System.Int32,System.Int32,System.Void*) - - OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeAttribSGIX(OpenTK.Graphics.Glx.Display@,System.Int32,System.Int32,System.Int32,System.IntPtr) - - OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeAttribSGIX``1(OpenTK.Graphics.Glx.Display@,System.Int32,System.Int32,System.Int32,``0@) - - OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeConfigSGIX(OpenTK.Graphics.Glx.Display*,System.Int32,System.Int32,OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX*,System.Int32*) - - OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeConfigSGIX(OpenTK.Graphics.Glx.Display@,System.Int32,System.Int32,OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX@,System.Int32@) - - OpenTK.Graphics.Glx.Glx.SGIX.JoinSwapGroupSGIX(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXDrawable,OpenTK.Graphics.Glx.GLXDrawable) - - OpenTK.Graphics.Glx.Glx.SGIX.JoinSwapGroupSGIX(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXDrawable,OpenTK.Graphics.Glx.GLXDrawable) - - OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelDeltasSGIX(OpenTK.Graphics.Glx.Display*,System.Int32,System.Int32,System.Int32*,System.Int32*,System.Int32*,System.Int32*) - - OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelDeltasSGIX(OpenTK.Graphics.Glx.Display@,System.Int32,System.Int32,System.Int32@,System.Int32@,System.Int32@,System.Int32@) - - OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelRectSGIX(OpenTK.Graphics.Glx.Display*,System.Int32,System.Int32,System.Int32*,System.Int32*,System.Int32*,System.Int32*) - - OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelRectSGIX(OpenTK.Graphics.Glx.Display@,System.Int32,System.Int32,System.Int32@,System.Int32@,System.Int32@,System.Int32@) - - OpenTK.Graphics.Glx.Glx.SGIX.QueryGLXPbufferSGIX(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXPbufferSGIX,System.Int32,System.UInt32*) - - OpenTK.Graphics.Glx.Glx.SGIX.QueryGLXPbufferSGIX(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXPbufferSGIX,System.Int32,System.UInt32@) - - OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeAttribSGIX(OpenTK.Graphics.Glx.Display*,System.Int32,System.Int32,System.Int32,System.Void*) - - OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeAttribSGIX(OpenTK.Graphics.Glx.Display@,System.Int32,System.Int32,System.Int32,System.IntPtr) - - OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeAttribSGIX``1(OpenTK.Graphics.Glx.Display@,System.Int32,System.Int32,System.Int32,``0@) - - OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeBestAttribSGIX(OpenTK.Graphics.Glx.Display*,System.Int32,System.Int32,System.Int32,System.Void*,System.Void*) - - OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeBestAttribSGIX(OpenTK.Graphics.Glx.Display@,System.Int32,System.Int32,System.Int32,System.IntPtr,System.IntPtr) - - OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeBestAttribSGIX``2(OpenTK.Graphics.Glx.Display@,System.Int32,System.Int32,System.Int32,``0@,``1@) - - OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeConfigSGIX(OpenTK.Graphics.Glx.Display*,System.Int32,System.Int32*) - - OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeConfigSGIX(OpenTK.Graphics.Glx.Display@,System.Int32,System.Int32@) - - OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeNetworkSGIX(OpenTK.Graphics.Glx.Display*,System.Int32*) - - OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeNetworkSGIX(OpenTK.Graphics.Glx.Display@,System.Int32@) - - OpenTK.Graphics.Glx.Glx.SGIX.QueryMaxSwapBarriersSGIX(OpenTK.Graphics.Glx.Display*,System.Int32,System.Int32*) - - OpenTK.Graphics.Glx.Glx.SGIX.QueryMaxSwapBarriersSGIX(OpenTK.Graphics.Glx.Display@,System.Int32,System.Int32@) - - OpenTK.Graphics.Glx.Glx.SGIX.SelectEventSGIX(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXDrawable,System.UInt64) - - OpenTK.Graphics.Glx.Glx.SGIX.SelectEventSGIX(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXDrawable,System.UInt64) + - OpenTK.Graphics.Glx.Glx.SGIX.BindChannelToWindowSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,OpenTK.Graphics.Glx.Window) + - OpenTK.Graphics.Glx.Glx.SGIX.BindHyperpipeSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32) + - OpenTK.Graphics.Glx.Glx.SGIX.BindSwapBarrierSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32) + - OpenTK.Graphics.Glx.Glx.SGIX.ChannelRectSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32) + - OpenTK.Graphics.Glx.Glx.SGIX.ChannelRectSyncSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,OpenTK.Graphics.Glx.All) + - OpenTK.Graphics.Glx.Glx.SGIX.ChooseFBConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32*,System.Int32*) + - OpenTK.Graphics.Glx.Glx.SGIX.ChooseFBConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32@,System.Int32@) + - OpenTK.Graphics.Glx.Glx.SGIX.CreateContextWithConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfigSGIX,System.Int32,OpenTK.Graphics.Glx.GLXContext,System.Boolean) + - OpenTK.Graphics.Glx.Glx.SGIX.CreateGLXPbufferSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfigSGIX,System.UInt32,System.UInt32,System.Int32*) + - OpenTK.Graphics.Glx.Glx.SGIX.CreateGLXPbufferSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfigSGIX,System.UInt32,System.UInt32,System.Int32@) + - OpenTK.Graphics.Glx.Glx.SGIX.CreateGLXPixmapWithConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfigSGIX,OpenTK.Graphics.Glx.Pixmap) + - OpenTK.Graphics.Glx.Glx.SGIX.DestroyGLXPbufferSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXPbufferSGIX) + - OpenTK.Graphics.Glx.Glx.SGIX.DestroyHyperpipeConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32) + - OpenTK.Graphics.Glx.Glx.SGIX.GetFBConfigAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfigSGIX,System.Int32,System.Int32*) + - OpenTK.Graphics.Glx.Glx.SGIX.GetFBConfigAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfigSGIX,System.Int32,System.Int32@) + - OpenTK.Graphics.Glx.Glx.SGIX.GetFBConfigFromVisualSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.XVisualInfoPtr) + - OpenTK.Graphics.Glx.Glx.SGIX.GetSelectedEventSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.UInt64*) + - OpenTK.Graphics.Glx.Glx.SGIX.GetSelectedEventSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.UInt64@) + - OpenTK.Graphics.Glx.Glx.SGIX.GetVisualFromFBConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfigSGIX) + - OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.IntPtr) + - OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.Void*) + - OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeAttribSGIX``1(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,``0@) + - OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX*,System.Int32*) + - OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX@,System.Int32@) + - OpenTK.Graphics.Glx.Glx.SGIX.JoinSwapGroupSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,OpenTK.Graphics.Glx.GLXDrawable) + - OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelDeltasSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32*,System.Int32*,System.Int32*,System.Int32*) + - OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelDeltasSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32@,System.Int32@,System.Int32@,System.Int32@) + - OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelRectSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32*,System.Int32*,System.Int32*,System.Int32*) + - OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelRectSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32@,System.Int32@,System.Int32@,System.Int32@) + - OpenTK.Graphics.Glx.Glx.SGIX.QueryGLXPbufferSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXPbufferSGIX,System.Int32,System.UInt32*) + - OpenTK.Graphics.Glx.Glx.SGIX.QueryGLXPbufferSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXPbufferSGIX,System.Int32,System.UInt32@) + - OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.IntPtr) + - OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.Void*) + - OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeAttribSGIX``1(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,``0@) + - OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeBestAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.IntPtr,System.IntPtr) + - OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeBestAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.Void*,System.Void*) + - OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeBestAttribSGIX``2(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,``0@,``1@) + - OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32*) + - OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32@) + - OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeNetworkSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32*) + - OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeNetworkSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32@) + - OpenTK.Graphics.Glx.Glx.SGIX.QueryMaxSwapBarriersSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32*) + - OpenTK.Graphics.Glx.Glx.SGIX.QueryMaxSwapBarriersSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32@) + - OpenTK.Graphics.Glx.Glx.SGIX.SelectEventSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.UInt64) langs: - csharp - vb @@ -76,7 +63,7 @@ items: repo: https://github.com/opentk/opentk.git id: SGIX path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 895 + startLine: 504 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -95,16 +82,16 @@ items: - System.Object.MemberwiseClone - System.Object.ReferenceEquals(System.Object,System.Object) - System.Object.ToString -- uid: OpenTK.Graphics.Glx.Glx.SGIX.BindChannelToWindowSGIX(OpenTK.Graphics.Glx.Display*,System.Int32,System.Int32,OpenTK.Graphics.Glx.Window) - commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.BindChannelToWindowSGIX(OpenTK.Graphics.Glx.Display*,System.Int32,System.Int32,OpenTK.Graphics.Glx.Window) - id: BindChannelToWindowSGIX(OpenTK.Graphics.Glx.Display*,System.Int32,System.Int32,OpenTK.Graphics.Glx.Window) +- uid: OpenTK.Graphics.Glx.Glx.SGIX.BindChannelToWindowSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,OpenTK.Graphics.Glx.Window) + commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.BindChannelToWindowSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,OpenTK.Graphics.Glx.Window) + id: BindChannelToWindowSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,OpenTK.Graphics.Glx.Window) parent: OpenTK.Graphics.Glx.Glx.SGIX langs: - csharp - vb - name: BindChannelToWindowSGIX(Display*, int, int, Window) - nameWithType: Glx.SGIX.BindChannelToWindowSGIX(Display*, int, int, Window) - fullName: OpenTK.Graphics.Glx.Glx.SGIX.BindChannelToWindowSGIX(OpenTK.Graphics.Glx.Display*, int, int, OpenTK.Graphics.Glx.Window) + name: BindChannelToWindowSGIX(DisplayPtr, int, int, Window) + nameWithType: Glx.SGIX.BindChannelToWindowSGIX(DisplayPtr, int, int, Window) + fullName: OpenTK.Graphics.Glx.Glx.SGIX.BindChannelToWindowSGIX(OpenTK.Graphics.Glx.DisplayPtr, int, int, OpenTK.Graphics.Glx.Window) type: Method source: remote: @@ -120,10 +107,10 @@ items: summary: '[requires: GLX_SGIX_video_resize] [entry point: glXBindChannelToWindowSGIX]
' example: [] syntax: - content: public static int BindChannelToWindowSGIX(Display* display, int screen, int channel, Window window) + content: public static int BindChannelToWindowSGIX(DisplayPtr display, int screen, int channel, Window window) parameters: - id: display - type: OpenTK.Graphics.Glx.Display* + type: OpenTK.Graphics.Glx.DisplayPtr - id: screen type: System.Int32 - id: channel @@ -132,21 +119,21 @@ items: type: OpenTK.Graphics.Glx.Window return: type: System.Int32 - content.vb: Public Shared Function BindChannelToWindowSGIX(display As Display*, screen As Integer, channel As Integer, window As Window) As Integer + content.vb: Public Shared Function BindChannelToWindowSGIX(display As DisplayPtr, screen As Integer, channel As Integer, window As Window) As Integer overload: OpenTK.Graphics.Glx.Glx.SGIX.BindChannelToWindowSGIX* - nameWithType.vb: Glx.SGIX.BindChannelToWindowSGIX(Display*, Integer, Integer, Window) - fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.BindChannelToWindowSGIX(OpenTK.Graphics.Glx.Display*, Integer, Integer, OpenTK.Graphics.Glx.Window) - name.vb: BindChannelToWindowSGIX(Display*, Integer, Integer, Window) -- uid: OpenTK.Graphics.Glx.Glx.SGIX.BindHyperpipeSGIX(OpenTK.Graphics.Glx.Display*,System.Int32) - commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.BindHyperpipeSGIX(OpenTK.Graphics.Glx.Display*,System.Int32) - id: BindHyperpipeSGIX(OpenTK.Graphics.Glx.Display*,System.Int32) + nameWithType.vb: Glx.SGIX.BindChannelToWindowSGIX(DisplayPtr, Integer, Integer, Window) + fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.BindChannelToWindowSGIX(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer, OpenTK.Graphics.Glx.Window) + name.vb: BindChannelToWindowSGIX(DisplayPtr, Integer, Integer, Window) +- uid: OpenTK.Graphics.Glx.Glx.SGIX.BindHyperpipeSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32) + commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.BindHyperpipeSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32) + id: BindHyperpipeSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32) parent: OpenTK.Graphics.Glx.Glx.SGIX langs: - csharp - vb - name: BindHyperpipeSGIX(Display*, int) - nameWithType: Glx.SGIX.BindHyperpipeSGIX(Display*, int) - fullName: OpenTK.Graphics.Glx.Glx.SGIX.BindHyperpipeSGIX(OpenTK.Graphics.Glx.Display*, int) + name: BindHyperpipeSGIX(DisplayPtr, int) + nameWithType: Glx.SGIX.BindHyperpipeSGIX(DisplayPtr, int) + fullName: OpenTK.Graphics.Glx.Glx.SGIX.BindHyperpipeSGIX(OpenTK.Graphics.Glx.DisplayPtr, int) type: Method source: remote: @@ -162,29 +149,29 @@ items: summary: '[requires: GLX_SGIX_hyperpipe] [entry point: glXBindHyperpipeSGIX]
' example: [] syntax: - content: public static int BindHyperpipeSGIX(Display* dpy, int hpId) + content: public static int BindHyperpipeSGIX(DisplayPtr dpy, int hpId) parameters: - id: dpy - type: OpenTK.Graphics.Glx.Display* + type: OpenTK.Graphics.Glx.DisplayPtr - id: hpId type: System.Int32 return: type: System.Int32 - content.vb: Public Shared Function BindHyperpipeSGIX(dpy As Display*, hpId As Integer) As Integer + content.vb: Public Shared Function BindHyperpipeSGIX(dpy As DisplayPtr, hpId As Integer) As Integer overload: OpenTK.Graphics.Glx.Glx.SGIX.BindHyperpipeSGIX* - nameWithType.vb: Glx.SGIX.BindHyperpipeSGIX(Display*, Integer) - fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.BindHyperpipeSGIX(OpenTK.Graphics.Glx.Display*, Integer) - name.vb: BindHyperpipeSGIX(Display*, Integer) -- uid: OpenTK.Graphics.Glx.Glx.SGIX.BindSwapBarrierSGIX(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXDrawable,System.Int32) - commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.BindSwapBarrierSGIX(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXDrawable,System.Int32) - id: BindSwapBarrierSGIX(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXDrawable,System.Int32) + nameWithType.vb: Glx.SGIX.BindHyperpipeSGIX(DisplayPtr, Integer) + fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.BindHyperpipeSGIX(OpenTK.Graphics.Glx.DisplayPtr, Integer) + name.vb: BindHyperpipeSGIX(DisplayPtr, Integer) +- uid: OpenTK.Graphics.Glx.Glx.SGIX.BindSwapBarrierSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32) + commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.BindSwapBarrierSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32) + id: BindSwapBarrierSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32) parent: OpenTK.Graphics.Glx.Glx.SGIX langs: - csharp - vb - name: BindSwapBarrierSGIX(Display*, GLXDrawable, int) - nameWithType: Glx.SGIX.BindSwapBarrierSGIX(Display*, GLXDrawable, int) - fullName: OpenTK.Graphics.Glx.Glx.SGIX.BindSwapBarrierSGIX(OpenTK.Graphics.Glx.Display*, OpenTK.Graphics.Glx.GLXDrawable, int) + name: BindSwapBarrierSGIX(DisplayPtr, GLXDrawable, int) + nameWithType: Glx.SGIX.BindSwapBarrierSGIX(DisplayPtr, GLXDrawable, int) + fullName: OpenTK.Graphics.Glx.Glx.SGIX.BindSwapBarrierSGIX(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, int) type: Method source: remote: @@ -200,29 +187,29 @@ items: summary: '[requires: GLX_SGIX_swap_barrier] [entry point: glXBindSwapBarrierSGIX]
' example: [] syntax: - content: public static void BindSwapBarrierSGIX(Display* dpy, GLXDrawable drawable, int barrier) + content: public static void BindSwapBarrierSGIX(DisplayPtr dpy, GLXDrawable drawable, int barrier) parameters: - id: dpy - type: OpenTK.Graphics.Glx.Display* + type: OpenTK.Graphics.Glx.DisplayPtr - id: drawable type: OpenTK.Graphics.Glx.GLXDrawable - id: barrier type: System.Int32 - content.vb: Public Shared Sub BindSwapBarrierSGIX(dpy As Display*, drawable As GLXDrawable, barrier As Integer) + content.vb: Public Shared Sub BindSwapBarrierSGIX(dpy As DisplayPtr, drawable As GLXDrawable, barrier As Integer) overload: OpenTK.Graphics.Glx.Glx.SGIX.BindSwapBarrierSGIX* - nameWithType.vb: Glx.SGIX.BindSwapBarrierSGIX(Display*, GLXDrawable, Integer) - fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.BindSwapBarrierSGIX(OpenTK.Graphics.Glx.Display*, OpenTK.Graphics.Glx.GLXDrawable, Integer) - name.vb: BindSwapBarrierSGIX(Display*, GLXDrawable, Integer) -- uid: OpenTK.Graphics.Glx.Glx.SGIX.ChannelRectSGIX(OpenTK.Graphics.Glx.Display*,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32) - commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.ChannelRectSGIX(OpenTK.Graphics.Glx.Display*,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32) - id: ChannelRectSGIX(OpenTK.Graphics.Glx.Display*,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32) + nameWithType.vb: Glx.SGIX.BindSwapBarrierSGIX(DisplayPtr, GLXDrawable, Integer) + fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.BindSwapBarrierSGIX(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, Integer) + name.vb: BindSwapBarrierSGIX(DisplayPtr, GLXDrawable, Integer) +- uid: OpenTK.Graphics.Glx.Glx.SGIX.ChannelRectSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32) + commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.ChannelRectSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32) + id: ChannelRectSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32) parent: OpenTK.Graphics.Glx.Glx.SGIX langs: - csharp - vb - name: ChannelRectSGIX(Display*, int, int, int, int, int, int) - nameWithType: Glx.SGIX.ChannelRectSGIX(Display*, int, int, int, int, int, int) - fullName: OpenTK.Graphics.Glx.Glx.SGIX.ChannelRectSGIX(OpenTK.Graphics.Glx.Display*, int, int, int, int, int, int) + name: ChannelRectSGIX(DisplayPtr, int, int, int, int, int, int) + nameWithType: Glx.SGIX.ChannelRectSGIX(DisplayPtr, int, int, int, int, int, int) + fullName: OpenTK.Graphics.Glx.Glx.SGIX.ChannelRectSGIX(OpenTK.Graphics.Glx.DisplayPtr, int, int, int, int, int, int) type: Method source: remote: @@ -238,10 +225,10 @@ items: summary: '[requires: GLX_SGIX_video_resize] [entry point: glXChannelRectSGIX]
' example: [] syntax: - content: public static int ChannelRectSGIX(Display* display, int screen, int channel, int x, int y, int w, int h) + content: public static int ChannelRectSGIX(DisplayPtr display, int screen, int channel, int x, int y, int w, int h) parameters: - id: display - type: OpenTK.Graphics.Glx.Display* + type: OpenTK.Graphics.Glx.DisplayPtr - id: screen type: System.Int32 - id: channel @@ -256,21 +243,21 @@ items: type: System.Int32 return: type: System.Int32 - content.vb: Public Shared Function ChannelRectSGIX(display As Display*, screen As Integer, channel As Integer, x As Integer, y As Integer, w As Integer, h As Integer) As Integer + content.vb: Public Shared Function ChannelRectSGIX(display As DisplayPtr, screen As Integer, channel As Integer, x As Integer, y As Integer, w As Integer, h As Integer) As Integer overload: OpenTK.Graphics.Glx.Glx.SGIX.ChannelRectSGIX* - nameWithType.vb: Glx.SGIX.ChannelRectSGIX(Display*, Integer, Integer, Integer, Integer, Integer, Integer) - fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.ChannelRectSGIX(OpenTK.Graphics.Glx.Display*, Integer, Integer, Integer, Integer, Integer, Integer) - name.vb: ChannelRectSGIX(Display*, Integer, Integer, Integer, Integer, Integer, Integer) -- uid: OpenTK.Graphics.Glx.Glx.SGIX.ChannelRectSyncSGIX(OpenTK.Graphics.Glx.Display*,System.Int32,System.Int32,OpenTK.Graphics.Glx.All) - commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.ChannelRectSyncSGIX(OpenTK.Graphics.Glx.Display*,System.Int32,System.Int32,OpenTK.Graphics.Glx.All) - id: ChannelRectSyncSGIX(OpenTK.Graphics.Glx.Display*,System.Int32,System.Int32,OpenTK.Graphics.Glx.All) + nameWithType.vb: Glx.SGIX.ChannelRectSGIX(DisplayPtr, Integer, Integer, Integer, Integer, Integer, Integer) + fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.ChannelRectSGIX(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer, Integer, Integer, Integer, Integer) + name.vb: ChannelRectSGIX(DisplayPtr, Integer, Integer, Integer, Integer, Integer, Integer) +- uid: OpenTK.Graphics.Glx.Glx.SGIX.ChannelRectSyncSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,OpenTK.Graphics.Glx.All) + commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.ChannelRectSyncSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,OpenTK.Graphics.Glx.All) + id: ChannelRectSyncSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,OpenTK.Graphics.Glx.All) parent: OpenTK.Graphics.Glx.Glx.SGIX langs: - csharp - vb - name: ChannelRectSyncSGIX(Display*, int, int, All) - nameWithType: Glx.SGIX.ChannelRectSyncSGIX(Display*, int, int, All) - fullName: OpenTK.Graphics.Glx.Glx.SGIX.ChannelRectSyncSGIX(OpenTK.Graphics.Glx.Display*, int, int, OpenTK.Graphics.Glx.All) + name: ChannelRectSyncSGIX(DisplayPtr, int, int, All) + nameWithType: Glx.SGIX.ChannelRectSyncSGIX(DisplayPtr, int, int, All) + fullName: OpenTK.Graphics.Glx.Glx.SGIX.ChannelRectSyncSGIX(OpenTK.Graphics.Glx.DisplayPtr, int, int, OpenTK.Graphics.Glx.All) type: Method source: remote: @@ -286,10 +273,10 @@ items: summary: '[requires: GLX_SGIX_video_resize] [entry point: glXChannelRectSyncSGIX]
' example: [] syntax: - content: public static int ChannelRectSyncSGIX(Display* display, int screen, int channel, All synctype) + content: public static int ChannelRectSyncSGIX(DisplayPtr display, int screen, int channel, All synctype) parameters: - id: display - type: OpenTK.Graphics.Glx.Display* + type: OpenTK.Graphics.Glx.DisplayPtr - id: screen type: System.Int32 - id: channel @@ -298,21 +285,21 @@ items: type: OpenTK.Graphics.Glx.All return: type: System.Int32 - content.vb: Public Shared Function ChannelRectSyncSGIX(display As Display*, screen As Integer, channel As Integer, synctype As All) As Integer + content.vb: Public Shared Function ChannelRectSyncSGIX(display As DisplayPtr, screen As Integer, channel As Integer, synctype As All) As Integer overload: OpenTK.Graphics.Glx.Glx.SGIX.ChannelRectSyncSGIX* - nameWithType.vb: Glx.SGIX.ChannelRectSyncSGIX(Display*, Integer, Integer, All) - fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.ChannelRectSyncSGIX(OpenTK.Graphics.Glx.Display*, Integer, Integer, OpenTK.Graphics.Glx.All) - name.vb: ChannelRectSyncSGIX(Display*, Integer, Integer, All) -- uid: OpenTK.Graphics.Glx.Glx.SGIX.ChooseFBConfigSGIX(OpenTK.Graphics.Glx.Display*,System.Int32,System.Int32*,System.Int32*) - commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.ChooseFBConfigSGIX(OpenTK.Graphics.Glx.Display*,System.Int32,System.Int32*,System.Int32*) - id: ChooseFBConfigSGIX(OpenTK.Graphics.Glx.Display*,System.Int32,System.Int32*,System.Int32*) + nameWithType.vb: Glx.SGIX.ChannelRectSyncSGIX(DisplayPtr, Integer, Integer, All) + fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.ChannelRectSyncSGIX(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer, OpenTK.Graphics.Glx.All) + name.vb: ChannelRectSyncSGIX(DisplayPtr, Integer, Integer, All) +- uid: OpenTK.Graphics.Glx.Glx.SGIX.ChooseFBConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32*,System.Int32*) + commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.ChooseFBConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32*,System.Int32*) + id: ChooseFBConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32*,System.Int32*) parent: OpenTK.Graphics.Glx.Glx.SGIX langs: - csharp - vb - name: ChooseFBConfigSGIX(Display*, int, int*, int*) - nameWithType: Glx.SGIX.ChooseFBConfigSGIX(Display*, int, int*, int*) - fullName: OpenTK.Graphics.Glx.Glx.SGIX.ChooseFBConfigSGIX(OpenTK.Graphics.Glx.Display*, int, int*, int*) + name: ChooseFBConfigSGIX(DisplayPtr, int, int*, int*) + nameWithType: Glx.SGIX.ChooseFBConfigSGIX(DisplayPtr, int, int*, int*) + fullName: OpenTK.Graphics.Glx.Glx.SGIX.ChooseFBConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr, int, int*, int*) type: Method source: remote: @@ -328,10 +315,10 @@ items: summary: '[requires: GLX_SGIX_fbconfig] [entry point: glXChooseFBConfigSGIX]
' example: [] syntax: - content: public static GLXFBConfigSGIX* ChooseFBConfigSGIX(Display* dpy, int screen, int* attrib_list, int* nelements) + content: public static GLXFBConfigSGIX* ChooseFBConfigSGIX(DisplayPtr dpy, int screen, int* attrib_list, int* nelements) parameters: - id: dpy - type: OpenTK.Graphics.Glx.Display* + type: OpenTK.Graphics.Glx.DisplayPtr - id: screen type: System.Int32 - id: attrib_list @@ -340,21 +327,21 @@ items: type: System.Int32* return: type: OpenTK.Graphics.Glx.GLXFBConfigSGIX* - content.vb: Public Shared Function ChooseFBConfigSGIX(dpy As Display*, screen As Integer, attrib_list As Integer*, nelements As Integer*) As GLXFBConfigSGIX* + content.vb: Public Shared Function ChooseFBConfigSGIX(dpy As DisplayPtr, screen As Integer, attrib_list As Integer*, nelements As Integer*) As GLXFBConfigSGIX* overload: OpenTK.Graphics.Glx.Glx.SGIX.ChooseFBConfigSGIX* - nameWithType.vb: Glx.SGIX.ChooseFBConfigSGIX(Display*, Integer, Integer*, Integer*) - fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.ChooseFBConfigSGIX(OpenTK.Graphics.Glx.Display*, Integer, Integer*, Integer*) - name.vb: ChooseFBConfigSGIX(Display*, Integer, Integer*, Integer*) -- uid: OpenTK.Graphics.Glx.Glx.SGIX.CreateContextWithConfigSGIX(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXFBConfigSGIX,System.Int32,OpenTK.Graphics.Glx.GLXContext,System.Boolean) - commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.CreateContextWithConfigSGIX(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXFBConfigSGIX,System.Int32,OpenTK.Graphics.Glx.GLXContext,System.Boolean) - id: CreateContextWithConfigSGIX(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXFBConfigSGIX,System.Int32,OpenTK.Graphics.Glx.GLXContext,System.Boolean) + nameWithType.vb: Glx.SGIX.ChooseFBConfigSGIX(DisplayPtr, Integer, Integer*, Integer*) + fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.ChooseFBConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer*, Integer*) + name.vb: ChooseFBConfigSGIX(DisplayPtr, Integer, Integer*, Integer*) +- uid: OpenTK.Graphics.Glx.Glx.SGIX.CreateContextWithConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfigSGIX,System.Int32,OpenTK.Graphics.Glx.GLXContext,System.Boolean) + commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.CreateContextWithConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfigSGIX,System.Int32,OpenTK.Graphics.Glx.GLXContext,System.Boolean) + id: CreateContextWithConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfigSGIX,System.Int32,OpenTK.Graphics.Glx.GLXContext,System.Boolean) parent: OpenTK.Graphics.Glx.Glx.SGIX langs: - csharp - vb - name: CreateContextWithConfigSGIX(Display*, GLXFBConfigSGIX, int, GLXContext, bool) - nameWithType: Glx.SGIX.CreateContextWithConfigSGIX(Display*, GLXFBConfigSGIX, int, GLXContext, bool) - fullName: OpenTK.Graphics.Glx.Glx.SGIX.CreateContextWithConfigSGIX(OpenTK.Graphics.Glx.Display*, OpenTK.Graphics.Glx.GLXFBConfigSGIX, int, OpenTK.Graphics.Glx.GLXContext, bool) + name: CreateContextWithConfigSGIX(DisplayPtr, GLXFBConfigSGIX, int, GLXContext, bool) + nameWithType: Glx.SGIX.CreateContextWithConfigSGIX(DisplayPtr, GLXFBConfigSGIX, int, GLXContext, bool) + fullName: OpenTK.Graphics.Glx.Glx.SGIX.CreateContextWithConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfigSGIX, int, OpenTK.Graphics.Glx.GLXContext, bool) type: Method source: remote: @@ -370,10 +357,10 @@ items: summary: '[requires: GLX_SGIX_fbconfig] [entry point: glXCreateContextWithConfigSGIX]
' example: [] syntax: - content: public static GLXContext CreateContextWithConfigSGIX(Display* dpy, GLXFBConfigSGIX config, int render_type, GLXContext share_list, bool direct) + content: public static GLXContext CreateContextWithConfigSGIX(DisplayPtr dpy, GLXFBConfigSGIX config, int render_type, GLXContext share_list, bool direct) parameters: - id: dpy - type: OpenTK.Graphics.Glx.Display* + type: OpenTK.Graphics.Glx.DisplayPtr - id: config type: OpenTK.Graphics.Glx.GLXFBConfigSGIX - id: render_type @@ -384,21 +371,21 @@ items: type: System.Boolean return: type: OpenTK.Graphics.Glx.GLXContext - content.vb: Public Shared Function CreateContextWithConfigSGIX(dpy As Display*, config As GLXFBConfigSGIX, render_type As Integer, share_list As GLXContext, direct As Boolean) As GLXContext + content.vb: Public Shared Function CreateContextWithConfigSGIX(dpy As DisplayPtr, config As GLXFBConfigSGIX, render_type As Integer, share_list As GLXContext, direct As Boolean) As GLXContext overload: OpenTK.Graphics.Glx.Glx.SGIX.CreateContextWithConfigSGIX* - nameWithType.vb: Glx.SGIX.CreateContextWithConfigSGIX(Display*, GLXFBConfigSGIX, Integer, GLXContext, Boolean) - fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.CreateContextWithConfigSGIX(OpenTK.Graphics.Glx.Display*, OpenTK.Graphics.Glx.GLXFBConfigSGIX, Integer, OpenTK.Graphics.Glx.GLXContext, Boolean) - name.vb: CreateContextWithConfigSGIX(Display*, GLXFBConfigSGIX, Integer, GLXContext, Boolean) -- uid: OpenTK.Graphics.Glx.Glx.SGIX.CreateGLXPbufferSGIX(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXFBConfigSGIX,System.UInt32,System.UInt32,System.Int32*) - commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.CreateGLXPbufferSGIX(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXFBConfigSGIX,System.UInt32,System.UInt32,System.Int32*) - id: CreateGLXPbufferSGIX(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXFBConfigSGIX,System.UInt32,System.UInt32,System.Int32*) + nameWithType.vb: Glx.SGIX.CreateContextWithConfigSGIX(DisplayPtr, GLXFBConfigSGIX, Integer, GLXContext, Boolean) + fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.CreateContextWithConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfigSGIX, Integer, OpenTK.Graphics.Glx.GLXContext, Boolean) + name.vb: CreateContextWithConfigSGIX(DisplayPtr, GLXFBConfigSGIX, Integer, GLXContext, Boolean) +- uid: OpenTK.Graphics.Glx.Glx.SGIX.CreateGLXPbufferSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfigSGIX,System.UInt32,System.UInt32,System.Int32*) + commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.CreateGLXPbufferSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfigSGIX,System.UInt32,System.UInt32,System.Int32*) + id: CreateGLXPbufferSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfigSGIX,System.UInt32,System.UInt32,System.Int32*) parent: OpenTK.Graphics.Glx.Glx.SGIX langs: - csharp - vb - name: CreateGLXPbufferSGIX(Display*, GLXFBConfigSGIX, uint, uint, int*) - nameWithType: Glx.SGIX.CreateGLXPbufferSGIX(Display*, GLXFBConfigSGIX, uint, uint, int*) - fullName: OpenTK.Graphics.Glx.Glx.SGIX.CreateGLXPbufferSGIX(OpenTK.Graphics.Glx.Display*, OpenTK.Graphics.Glx.GLXFBConfigSGIX, uint, uint, int*) + name: CreateGLXPbufferSGIX(DisplayPtr, GLXFBConfigSGIX, uint, uint, int*) + nameWithType: Glx.SGIX.CreateGLXPbufferSGIX(DisplayPtr, GLXFBConfigSGIX, uint, uint, int*) + fullName: OpenTK.Graphics.Glx.Glx.SGIX.CreateGLXPbufferSGIX(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfigSGIX, uint, uint, int*) type: Method source: remote: @@ -414,10 +401,10 @@ items: summary: '[requires: GLX_SGIX_pbuffer] [entry point: glXCreateGLXPbufferSGIX]
' example: [] syntax: - content: public static GLXPbufferSGIX CreateGLXPbufferSGIX(Display* dpy, GLXFBConfigSGIX config, uint width, uint height, int* attrib_list) + content: public static GLXPbufferSGIX CreateGLXPbufferSGIX(DisplayPtr dpy, GLXFBConfigSGIX config, uint width, uint height, int* attrib_list) parameters: - id: dpy - type: OpenTK.Graphics.Glx.Display* + type: OpenTK.Graphics.Glx.DisplayPtr - id: config type: OpenTK.Graphics.Glx.GLXFBConfigSGIX - id: width @@ -428,21 +415,21 @@ items: type: System.Int32* return: type: OpenTK.Graphics.Glx.GLXPbufferSGIX - content.vb: Public Shared Function CreateGLXPbufferSGIX(dpy As Display*, config As GLXFBConfigSGIX, width As UInteger, height As UInteger, attrib_list As Integer*) As GLXPbufferSGIX + content.vb: Public Shared Function CreateGLXPbufferSGIX(dpy As DisplayPtr, config As GLXFBConfigSGIX, width As UInteger, height As UInteger, attrib_list As Integer*) As GLXPbufferSGIX overload: OpenTK.Graphics.Glx.Glx.SGIX.CreateGLXPbufferSGIX* - nameWithType.vb: Glx.SGIX.CreateGLXPbufferSGIX(Display*, GLXFBConfigSGIX, UInteger, UInteger, Integer*) - fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.CreateGLXPbufferSGIX(OpenTK.Graphics.Glx.Display*, OpenTK.Graphics.Glx.GLXFBConfigSGIX, UInteger, UInteger, Integer*) - name.vb: CreateGLXPbufferSGIX(Display*, GLXFBConfigSGIX, UInteger, UInteger, Integer*) -- uid: OpenTK.Graphics.Glx.Glx.SGIX.CreateGLXPixmapWithConfigSGIX(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXFBConfigSGIX,OpenTK.Graphics.Glx.Pixmap) - commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.CreateGLXPixmapWithConfigSGIX(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXFBConfigSGIX,OpenTK.Graphics.Glx.Pixmap) - id: CreateGLXPixmapWithConfigSGIX(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXFBConfigSGIX,OpenTK.Graphics.Glx.Pixmap) + nameWithType.vb: Glx.SGIX.CreateGLXPbufferSGIX(DisplayPtr, GLXFBConfigSGIX, UInteger, UInteger, Integer*) + fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.CreateGLXPbufferSGIX(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfigSGIX, UInteger, UInteger, Integer*) + name.vb: CreateGLXPbufferSGIX(DisplayPtr, GLXFBConfigSGIX, UInteger, UInteger, Integer*) +- uid: OpenTK.Graphics.Glx.Glx.SGIX.CreateGLXPixmapWithConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfigSGIX,OpenTK.Graphics.Glx.Pixmap) + commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.CreateGLXPixmapWithConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfigSGIX,OpenTK.Graphics.Glx.Pixmap) + id: CreateGLXPixmapWithConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfigSGIX,OpenTK.Graphics.Glx.Pixmap) parent: OpenTK.Graphics.Glx.Glx.SGIX langs: - csharp - vb - name: CreateGLXPixmapWithConfigSGIX(Display*, GLXFBConfigSGIX, Pixmap) - nameWithType: Glx.SGIX.CreateGLXPixmapWithConfigSGIX(Display*, GLXFBConfigSGIX, Pixmap) - fullName: OpenTK.Graphics.Glx.Glx.SGIX.CreateGLXPixmapWithConfigSGIX(OpenTK.Graphics.Glx.Display*, OpenTK.Graphics.Glx.GLXFBConfigSGIX, OpenTK.Graphics.Glx.Pixmap) + name: CreateGLXPixmapWithConfigSGIX(DisplayPtr, GLXFBConfigSGIX, Pixmap) + nameWithType: Glx.SGIX.CreateGLXPixmapWithConfigSGIX(DisplayPtr, GLXFBConfigSGIX, Pixmap) + fullName: OpenTK.Graphics.Glx.Glx.SGIX.CreateGLXPixmapWithConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfigSGIX, OpenTK.Graphics.Glx.Pixmap) type: Method source: remote: @@ -458,28 +445,28 @@ items: summary: '[requires: GLX_SGIX_fbconfig] [entry point: glXCreateGLXPixmapWithConfigSGIX]
' example: [] syntax: - content: public static GLXPixmap CreateGLXPixmapWithConfigSGIX(Display* dpy, GLXFBConfigSGIX config, Pixmap pixmap) + content: public static GLXPixmap CreateGLXPixmapWithConfigSGIX(DisplayPtr dpy, GLXFBConfigSGIX config, Pixmap pixmap) parameters: - id: dpy - type: OpenTK.Graphics.Glx.Display* + type: OpenTK.Graphics.Glx.DisplayPtr - id: config type: OpenTK.Graphics.Glx.GLXFBConfigSGIX - id: pixmap type: OpenTK.Graphics.Glx.Pixmap return: type: OpenTK.Graphics.Glx.GLXPixmap - content.vb: Public Shared Function CreateGLXPixmapWithConfigSGIX(dpy As Display*, config As GLXFBConfigSGIX, pixmap As Pixmap) As GLXPixmap + content.vb: Public Shared Function CreateGLXPixmapWithConfigSGIX(dpy As DisplayPtr, config As GLXFBConfigSGIX, pixmap As Pixmap) As GLXPixmap overload: OpenTK.Graphics.Glx.Glx.SGIX.CreateGLXPixmapWithConfigSGIX* -- uid: OpenTK.Graphics.Glx.Glx.SGIX.DestroyGLXPbufferSGIX(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXPbufferSGIX) - commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.DestroyGLXPbufferSGIX(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXPbufferSGIX) - id: DestroyGLXPbufferSGIX(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXPbufferSGIX) +- uid: OpenTK.Graphics.Glx.Glx.SGIX.DestroyGLXPbufferSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXPbufferSGIX) + commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.DestroyGLXPbufferSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXPbufferSGIX) + id: DestroyGLXPbufferSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXPbufferSGIX) parent: OpenTK.Graphics.Glx.Glx.SGIX langs: - csharp - vb - name: DestroyGLXPbufferSGIX(Display*, GLXPbufferSGIX) - nameWithType: Glx.SGIX.DestroyGLXPbufferSGIX(Display*, GLXPbufferSGIX) - fullName: OpenTK.Graphics.Glx.Glx.SGIX.DestroyGLXPbufferSGIX(OpenTK.Graphics.Glx.Display*, OpenTK.Graphics.Glx.GLXPbufferSGIX) + name: DestroyGLXPbufferSGIX(DisplayPtr, GLXPbufferSGIX) + nameWithType: Glx.SGIX.DestroyGLXPbufferSGIX(DisplayPtr, GLXPbufferSGIX) + fullName: OpenTK.Graphics.Glx.Glx.SGIX.DestroyGLXPbufferSGIX(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXPbufferSGIX) type: Method source: remote: @@ -495,24 +482,24 @@ items: summary: '[requires: GLX_SGIX_pbuffer] [entry point: glXDestroyGLXPbufferSGIX]
' example: [] syntax: - content: public static void DestroyGLXPbufferSGIX(Display* dpy, GLXPbufferSGIX pbuf) + content: public static void DestroyGLXPbufferSGIX(DisplayPtr dpy, GLXPbufferSGIX pbuf) parameters: - id: dpy - type: OpenTK.Graphics.Glx.Display* + type: OpenTK.Graphics.Glx.DisplayPtr - id: pbuf type: OpenTK.Graphics.Glx.GLXPbufferSGIX - content.vb: Public Shared Sub DestroyGLXPbufferSGIX(dpy As Display*, pbuf As GLXPbufferSGIX) + content.vb: Public Shared Sub DestroyGLXPbufferSGIX(dpy As DisplayPtr, pbuf As GLXPbufferSGIX) overload: OpenTK.Graphics.Glx.Glx.SGIX.DestroyGLXPbufferSGIX* -- uid: OpenTK.Graphics.Glx.Glx.SGIX.DestroyHyperpipeConfigSGIX(OpenTK.Graphics.Glx.Display*,System.Int32) - commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.DestroyHyperpipeConfigSGIX(OpenTK.Graphics.Glx.Display*,System.Int32) - id: DestroyHyperpipeConfigSGIX(OpenTK.Graphics.Glx.Display*,System.Int32) +- uid: OpenTK.Graphics.Glx.Glx.SGIX.DestroyHyperpipeConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32) + commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.DestroyHyperpipeConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32) + id: DestroyHyperpipeConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32) parent: OpenTK.Graphics.Glx.Glx.SGIX langs: - csharp - vb - name: DestroyHyperpipeConfigSGIX(Display*, int) - nameWithType: Glx.SGIX.DestroyHyperpipeConfigSGIX(Display*, int) - fullName: OpenTK.Graphics.Glx.Glx.SGIX.DestroyHyperpipeConfigSGIX(OpenTK.Graphics.Glx.Display*, int) + name: DestroyHyperpipeConfigSGIX(DisplayPtr, int) + nameWithType: Glx.SGIX.DestroyHyperpipeConfigSGIX(DisplayPtr, int) + fullName: OpenTK.Graphics.Glx.Glx.SGIX.DestroyHyperpipeConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr, int) type: Method source: remote: @@ -528,29 +515,29 @@ items: summary: '[requires: GLX_SGIX_hyperpipe] [entry point: glXDestroyHyperpipeConfigSGIX]
' example: [] syntax: - content: public static int DestroyHyperpipeConfigSGIX(Display* dpy, int hpId) + content: public static int DestroyHyperpipeConfigSGIX(DisplayPtr dpy, int hpId) parameters: - id: dpy - type: OpenTK.Graphics.Glx.Display* + type: OpenTK.Graphics.Glx.DisplayPtr - id: hpId type: System.Int32 return: type: System.Int32 - content.vb: Public Shared Function DestroyHyperpipeConfigSGIX(dpy As Display*, hpId As Integer) As Integer + content.vb: Public Shared Function DestroyHyperpipeConfigSGIX(dpy As DisplayPtr, hpId As Integer) As Integer overload: OpenTK.Graphics.Glx.Glx.SGIX.DestroyHyperpipeConfigSGIX* - nameWithType.vb: Glx.SGIX.DestroyHyperpipeConfigSGIX(Display*, Integer) - fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.DestroyHyperpipeConfigSGIX(OpenTK.Graphics.Glx.Display*, Integer) - name.vb: DestroyHyperpipeConfigSGIX(Display*, Integer) -- uid: OpenTK.Graphics.Glx.Glx.SGIX.GetFBConfigAttribSGIX(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXFBConfigSGIX,System.Int32,System.Int32*) - commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.GetFBConfigAttribSGIX(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXFBConfigSGIX,System.Int32,System.Int32*) - id: GetFBConfigAttribSGIX(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXFBConfigSGIX,System.Int32,System.Int32*) + nameWithType.vb: Glx.SGIX.DestroyHyperpipeConfigSGIX(DisplayPtr, Integer) + fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.DestroyHyperpipeConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr, Integer) + name.vb: DestroyHyperpipeConfigSGIX(DisplayPtr, Integer) +- uid: OpenTK.Graphics.Glx.Glx.SGIX.GetFBConfigAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfigSGIX,System.Int32,System.Int32*) + commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.GetFBConfigAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfigSGIX,System.Int32,System.Int32*) + id: GetFBConfigAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfigSGIX,System.Int32,System.Int32*) parent: OpenTK.Graphics.Glx.Glx.SGIX langs: - csharp - vb - name: GetFBConfigAttribSGIX(Display*, GLXFBConfigSGIX, int, int*) - nameWithType: Glx.SGIX.GetFBConfigAttribSGIX(Display*, GLXFBConfigSGIX, int, int*) - fullName: OpenTK.Graphics.Glx.Glx.SGIX.GetFBConfigAttribSGIX(OpenTK.Graphics.Glx.Display*, OpenTK.Graphics.Glx.GLXFBConfigSGIX, int, int*) + name: GetFBConfigAttribSGIX(DisplayPtr, GLXFBConfigSGIX, int, int*) + nameWithType: Glx.SGIX.GetFBConfigAttribSGIX(DisplayPtr, GLXFBConfigSGIX, int, int*) + fullName: OpenTK.Graphics.Glx.Glx.SGIX.GetFBConfigAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfigSGIX, int, int*) type: Method source: remote: @@ -566,10 +553,10 @@ items: summary: '[requires: GLX_SGIX_fbconfig] [entry point: glXGetFBConfigAttribSGIX]
' example: [] syntax: - content: public static int GetFBConfigAttribSGIX(Display* dpy, GLXFBConfigSGIX config, int attribute, int* value) + content: public static int GetFBConfigAttribSGIX(DisplayPtr dpy, GLXFBConfigSGIX config, int attribute, int* value) parameters: - id: dpy - type: OpenTK.Graphics.Glx.Display* + type: OpenTK.Graphics.Glx.DisplayPtr - id: config type: OpenTK.Graphics.Glx.GLXFBConfigSGIX - id: attribute @@ -578,21 +565,21 @@ items: type: System.Int32* return: type: System.Int32 - content.vb: Public Shared Function GetFBConfigAttribSGIX(dpy As Display*, config As GLXFBConfigSGIX, attribute As Integer, value As Integer*) As Integer + content.vb: Public Shared Function GetFBConfigAttribSGIX(dpy As DisplayPtr, config As GLXFBConfigSGIX, attribute As Integer, value As Integer*) As Integer overload: OpenTK.Graphics.Glx.Glx.SGIX.GetFBConfigAttribSGIX* - nameWithType.vb: Glx.SGIX.GetFBConfigAttribSGIX(Display*, GLXFBConfigSGIX, Integer, Integer*) - fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.GetFBConfigAttribSGIX(OpenTK.Graphics.Glx.Display*, OpenTK.Graphics.Glx.GLXFBConfigSGIX, Integer, Integer*) - name.vb: GetFBConfigAttribSGIX(Display*, GLXFBConfigSGIX, Integer, Integer*) -- uid: OpenTK.Graphics.Glx.Glx.SGIX.GetFBConfigFromVisualSGIX(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.XVisualInfo*) - commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.GetFBConfigFromVisualSGIX(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.XVisualInfo*) - id: GetFBConfigFromVisualSGIX(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.XVisualInfo*) + nameWithType.vb: Glx.SGIX.GetFBConfigAttribSGIX(DisplayPtr, GLXFBConfigSGIX, Integer, Integer*) + fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.GetFBConfigAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfigSGIX, Integer, Integer*) + name.vb: GetFBConfigAttribSGIX(DisplayPtr, GLXFBConfigSGIX, Integer, Integer*) +- uid: OpenTK.Graphics.Glx.Glx.SGIX.GetFBConfigFromVisualSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.XVisualInfoPtr) + commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.GetFBConfigFromVisualSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.XVisualInfoPtr) + id: GetFBConfigFromVisualSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.XVisualInfoPtr) parent: OpenTK.Graphics.Glx.Glx.SGIX langs: - csharp - vb - name: GetFBConfigFromVisualSGIX(Display*, XVisualInfo*) - nameWithType: Glx.SGIX.GetFBConfigFromVisualSGIX(Display*, XVisualInfo*) - fullName: OpenTK.Graphics.Glx.Glx.SGIX.GetFBConfigFromVisualSGIX(OpenTK.Graphics.Glx.Display*, OpenTK.Graphics.Glx.XVisualInfo*) + name: GetFBConfigFromVisualSGIX(DisplayPtr, XVisualInfoPtr) + nameWithType: Glx.SGIX.GetFBConfigFromVisualSGIX(DisplayPtr, XVisualInfoPtr) + fullName: OpenTK.Graphics.Glx.Glx.SGIX.GetFBConfigFromVisualSGIX(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.XVisualInfoPtr) type: Method source: remote: @@ -608,26 +595,26 @@ items: summary: '[requires: GLX_SGIX_fbconfig] [entry point: glXGetFBConfigFromVisualSGIX]
' example: [] syntax: - content: public static GLXFBConfigSGIX GetFBConfigFromVisualSGIX(Display* dpy, XVisualInfo* vis) + content: public static GLXFBConfigSGIX GetFBConfigFromVisualSGIX(DisplayPtr dpy, XVisualInfoPtr vis) parameters: - id: dpy - type: OpenTK.Graphics.Glx.Display* + type: OpenTK.Graphics.Glx.DisplayPtr - id: vis - type: OpenTK.Graphics.Glx.XVisualInfo* + type: OpenTK.Graphics.Glx.XVisualInfoPtr return: type: OpenTK.Graphics.Glx.GLXFBConfigSGIX - content.vb: Public Shared Function GetFBConfigFromVisualSGIX(dpy As Display*, vis As XVisualInfo*) As GLXFBConfigSGIX + content.vb: Public Shared Function GetFBConfigFromVisualSGIX(dpy As DisplayPtr, vis As XVisualInfoPtr) As GLXFBConfigSGIX overload: OpenTK.Graphics.Glx.Glx.SGIX.GetFBConfigFromVisualSGIX* -- uid: OpenTK.Graphics.Glx.Glx.SGIX.GetSelectedEventSGIX(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXDrawable,System.UInt64*) - commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.GetSelectedEventSGIX(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXDrawable,System.UInt64*) - id: GetSelectedEventSGIX(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXDrawable,System.UInt64*) +- uid: OpenTK.Graphics.Glx.Glx.SGIX.GetSelectedEventSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.UInt64*) + commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.GetSelectedEventSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.UInt64*) + id: GetSelectedEventSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.UInt64*) parent: OpenTK.Graphics.Glx.Glx.SGIX langs: - csharp - vb - name: GetSelectedEventSGIX(Display*, GLXDrawable, ulong*) - nameWithType: Glx.SGIX.GetSelectedEventSGIX(Display*, GLXDrawable, ulong*) - fullName: OpenTK.Graphics.Glx.Glx.SGIX.GetSelectedEventSGIX(OpenTK.Graphics.Glx.Display*, OpenTK.Graphics.Glx.GLXDrawable, ulong*) + name: GetSelectedEventSGIX(DisplayPtr, GLXDrawable, ulong*) + nameWithType: Glx.SGIX.GetSelectedEventSGIX(DisplayPtr, GLXDrawable, ulong*) + fullName: OpenTK.Graphics.Glx.Glx.SGIX.GetSelectedEventSGIX(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, ulong*) type: Method source: remote: @@ -643,29 +630,29 @@ items: summary: '[requires: GLX_SGIX_pbuffer] [entry point: glXGetSelectedEventSGIX]
' example: [] syntax: - content: public static void GetSelectedEventSGIX(Display* dpy, GLXDrawable drawable, ulong* mask) + content: public static void GetSelectedEventSGIX(DisplayPtr dpy, GLXDrawable drawable, ulong* mask) parameters: - id: dpy - type: OpenTK.Graphics.Glx.Display* + type: OpenTK.Graphics.Glx.DisplayPtr - id: drawable type: OpenTK.Graphics.Glx.GLXDrawable - id: mask type: System.UInt64* - content.vb: Public Shared Sub GetSelectedEventSGIX(dpy As Display*, drawable As GLXDrawable, mask As ULong*) + content.vb: Public Shared Sub GetSelectedEventSGIX(dpy As DisplayPtr, drawable As GLXDrawable, mask As ULong*) overload: OpenTK.Graphics.Glx.Glx.SGIX.GetSelectedEventSGIX* - nameWithType.vb: Glx.SGIX.GetSelectedEventSGIX(Display*, GLXDrawable, ULong*) - fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.GetSelectedEventSGIX(OpenTK.Graphics.Glx.Display*, OpenTK.Graphics.Glx.GLXDrawable, ULong*) - name.vb: GetSelectedEventSGIX(Display*, GLXDrawable, ULong*) -- uid: OpenTK.Graphics.Glx.Glx.SGIX.GetVisualFromFBConfigSGIX(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXFBConfigSGIX) - commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.GetVisualFromFBConfigSGIX(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXFBConfigSGIX) - id: GetVisualFromFBConfigSGIX(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXFBConfigSGIX) + nameWithType.vb: Glx.SGIX.GetSelectedEventSGIX(DisplayPtr, GLXDrawable, ULong*) + fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.GetSelectedEventSGIX(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, ULong*) + name.vb: GetSelectedEventSGIX(DisplayPtr, GLXDrawable, ULong*) +- uid: OpenTK.Graphics.Glx.Glx.SGIX.GetVisualFromFBConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfigSGIX) + commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.GetVisualFromFBConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfigSGIX) + id: GetVisualFromFBConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfigSGIX) parent: OpenTK.Graphics.Glx.Glx.SGIX langs: - csharp - vb - name: GetVisualFromFBConfigSGIX(Display*, GLXFBConfigSGIX) - nameWithType: Glx.SGIX.GetVisualFromFBConfigSGIX(Display*, GLXFBConfigSGIX) - fullName: OpenTK.Graphics.Glx.Glx.SGIX.GetVisualFromFBConfigSGIX(OpenTK.Graphics.Glx.Display*, OpenTK.Graphics.Glx.GLXFBConfigSGIX) + name: GetVisualFromFBConfigSGIX(DisplayPtr, GLXFBConfigSGIX) + nameWithType: Glx.SGIX.GetVisualFromFBConfigSGIX(DisplayPtr, GLXFBConfigSGIX) + fullName: OpenTK.Graphics.Glx.Glx.SGIX.GetVisualFromFBConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfigSGIX) type: Method source: remote: @@ -681,26 +668,26 @@ items: summary: '[requires: GLX_SGIX_fbconfig] [entry point: glXGetVisualFromFBConfigSGIX]
' example: [] syntax: - content: public static XVisualInfo* GetVisualFromFBConfigSGIX(Display* dpy, GLXFBConfigSGIX config) + content: public static XVisualInfoPtr GetVisualFromFBConfigSGIX(DisplayPtr dpy, GLXFBConfigSGIX config) parameters: - id: dpy - type: OpenTK.Graphics.Glx.Display* + type: OpenTK.Graphics.Glx.DisplayPtr - id: config type: OpenTK.Graphics.Glx.GLXFBConfigSGIX return: - type: OpenTK.Graphics.Glx.XVisualInfo* - content.vb: Public Shared Function GetVisualFromFBConfigSGIX(dpy As Display*, config As GLXFBConfigSGIX) As XVisualInfo* + type: OpenTK.Graphics.Glx.XVisualInfoPtr + content.vb: Public Shared Function GetVisualFromFBConfigSGIX(dpy As DisplayPtr, config As GLXFBConfigSGIX) As XVisualInfoPtr overload: OpenTK.Graphics.Glx.Glx.SGIX.GetVisualFromFBConfigSGIX* -- uid: OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeAttribSGIX(OpenTK.Graphics.Glx.Display*,System.Int32,System.Int32,System.Int32,System.Void*) - commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeAttribSGIX(OpenTK.Graphics.Glx.Display*,System.Int32,System.Int32,System.Int32,System.Void*) - id: HyperpipeAttribSGIX(OpenTK.Graphics.Glx.Display*,System.Int32,System.Int32,System.Int32,System.Void*) +- uid: OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.Void*) + commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.Void*) + id: HyperpipeAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.Void*) parent: OpenTK.Graphics.Glx.Glx.SGIX langs: - csharp - vb - name: HyperpipeAttribSGIX(Display*, int, int, int, void*) - nameWithType: Glx.SGIX.HyperpipeAttribSGIX(Display*, int, int, int, void*) - fullName: OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeAttribSGIX(OpenTK.Graphics.Glx.Display*, int, int, int, void*) + name: HyperpipeAttribSGIX(DisplayPtr, int, int, int, void*) + nameWithType: Glx.SGIX.HyperpipeAttribSGIX(DisplayPtr, int, int, int, void*) + fullName: OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr, int, int, int, void*) type: Method source: remote: @@ -716,10 +703,10 @@ items: summary: '[requires: GLX_SGIX_hyperpipe] [entry point: glXHyperpipeAttribSGIX]
' example: [] syntax: - content: public static int HyperpipeAttribSGIX(Display* dpy, int timeSlice, int attrib, int size, void* attribList) + content: public static int HyperpipeAttribSGIX(DisplayPtr dpy, int timeSlice, int attrib, int size, void* attribList) parameters: - id: dpy - type: OpenTK.Graphics.Glx.Display* + type: OpenTK.Graphics.Glx.DisplayPtr - id: timeSlice type: System.Int32 - id: attrib @@ -730,21 +717,21 @@ items: type: System.Void* return: type: System.Int32 - content.vb: Public Shared Function HyperpipeAttribSGIX(dpy As Display*, timeSlice As Integer, attrib As Integer, size As Integer, attribList As Void*) As Integer + content.vb: Public Shared Function HyperpipeAttribSGIX(dpy As DisplayPtr, timeSlice As Integer, attrib As Integer, size As Integer, attribList As Void*) As Integer overload: OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeAttribSGIX* - nameWithType.vb: Glx.SGIX.HyperpipeAttribSGIX(Display*, Integer, Integer, Integer, Void*) - fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeAttribSGIX(OpenTK.Graphics.Glx.Display*, Integer, Integer, Integer, Void*) - name.vb: HyperpipeAttribSGIX(Display*, Integer, Integer, Integer, Void*) -- uid: OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeConfigSGIX(OpenTK.Graphics.Glx.Display*,System.Int32,System.Int32,OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX*,System.Int32*) - commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeConfigSGIX(OpenTK.Graphics.Glx.Display*,System.Int32,System.Int32,OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX*,System.Int32*) - id: HyperpipeConfigSGIX(OpenTK.Graphics.Glx.Display*,System.Int32,System.Int32,OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX*,System.Int32*) + nameWithType.vb: Glx.SGIX.HyperpipeAttribSGIX(DisplayPtr, Integer, Integer, Integer, Void*) + fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer, Integer, Void*) + name.vb: HyperpipeAttribSGIX(DisplayPtr, Integer, Integer, Integer, Void*) +- uid: OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX*,System.Int32*) + commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX*,System.Int32*) + id: HyperpipeConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX*,System.Int32*) parent: OpenTK.Graphics.Glx.Glx.SGIX langs: - csharp - vb - name: HyperpipeConfigSGIX(Display*, int, int, GLXHyperpipeConfigSGIX*, int*) - nameWithType: Glx.SGIX.HyperpipeConfigSGIX(Display*, int, int, GLXHyperpipeConfigSGIX*, int*) - fullName: OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeConfigSGIX(OpenTK.Graphics.Glx.Display*, int, int, OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX*, int*) + name: HyperpipeConfigSGIX(DisplayPtr, int, int, GLXHyperpipeConfigSGIX*, int*) + nameWithType: Glx.SGIX.HyperpipeConfigSGIX(DisplayPtr, int, int, GLXHyperpipeConfigSGIX*, int*) + fullName: OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr, int, int, OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX*, int*) type: Method source: remote: @@ -760,10 +747,10 @@ items: summary: '[requires: GLX_SGIX_hyperpipe] [entry point: glXHyperpipeConfigSGIX]
' example: [] syntax: - content: public static int HyperpipeConfigSGIX(Display* dpy, int networkId, int npipes, GLXHyperpipeConfigSGIX* cfg, int* hpId) + content: public static int HyperpipeConfigSGIX(DisplayPtr dpy, int networkId, int npipes, GLXHyperpipeConfigSGIX* cfg, int* hpId) parameters: - id: dpy - type: OpenTK.Graphics.Glx.Display* + type: OpenTK.Graphics.Glx.DisplayPtr - id: networkId type: System.Int32 - id: npipes @@ -774,21 +761,21 @@ items: type: System.Int32* return: type: System.Int32 - content.vb: Public Shared Function HyperpipeConfigSGIX(dpy As Display*, networkId As Integer, npipes As Integer, cfg As GLXHyperpipeConfigSGIX*, hpId As Integer*) As Integer + content.vb: Public Shared Function HyperpipeConfigSGIX(dpy As DisplayPtr, networkId As Integer, npipes As Integer, cfg As GLXHyperpipeConfigSGIX*, hpId As Integer*) As Integer overload: OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeConfigSGIX* - nameWithType.vb: Glx.SGIX.HyperpipeConfigSGIX(Display*, Integer, Integer, GLXHyperpipeConfigSGIX*, Integer*) - fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeConfigSGIX(OpenTK.Graphics.Glx.Display*, Integer, Integer, OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX*, Integer*) - name.vb: HyperpipeConfigSGIX(Display*, Integer, Integer, GLXHyperpipeConfigSGIX*, Integer*) -- uid: OpenTK.Graphics.Glx.Glx.SGIX.JoinSwapGroupSGIX(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXDrawable,OpenTK.Graphics.Glx.GLXDrawable) - commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.JoinSwapGroupSGIX(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXDrawable,OpenTK.Graphics.Glx.GLXDrawable) - id: JoinSwapGroupSGIX(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXDrawable,OpenTK.Graphics.Glx.GLXDrawable) + nameWithType.vb: Glx.SGIX.HyperpipeConfigSGIX(DisplayPtr, Integer, Integer, GLXHyperpipeConfigSGIX*, Integer*) + fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer, OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX*, Integer*) + name.vb: HyperpipeConfigSGIX(DisplayPtr, Integer, Integer, GLXHyperpipeConfigSGIX*, Integer*) +- uid: OpenTK.Graphics.Glx.Glx.SGIX.JoinSwapGroupSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,OpenTK.Graphics.Glx.GLXDrawable) + commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.JoinSwapGroupSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,OpenTK.Graphics.Glx.GLXDrawable) + id: JoinSwapGroupSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,OpenTK.Graphics.Glx.GLXDrawable) parent: OpenTK.Graphics.Glx.Glx.SGIX langs: - csharp - vb - name: JoinSwapGroupSGIX(Display*, GLXDrawable, GLXDrawable) - nameWithType: Glx.SGIX.JoinSwapGroupSGIX(Display*, GLXDrawable, GLXDrawable) - fullName: OpenTK.Graphics.Glx.Glx.SGIX.JoinSwapGroupSGIX(OpenTK.Graphics.Glx.Display*, OpenTK.Graphics.Glx.GLXDrawable, OpenTK.Graphics.Glx.GLXDrawable) + name: JoinSwapGroupSGIX(DisplayPtr, GLXDrawable, GLXDrawable) + nameWithType: Glx.SGIX.JoinSwapGroupSGIX(DisplayPtr, GLXDrawable, GLXDrawable) + fullName: OpenTK.Graphics.Glx.Glx.SGIX.JoinSwapGroupSGIX(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, OpenTK.Graphics.Glx.GLXDrawable) type: Method source: remote: @@ -804,26 +791,26 @@ items: summary: '[requires: GLX_SGIX_swap_group] [entry point: glXJoinSwapGroupSGIX]
' example: [] syntax: - content: public static void JoinSwapGroupSGIX(Display* dpy, GLXDrawable drawable, GLXDrawable member) + content: public static void JoinSwapGroupSGIX(DisplayPtr dpy, GLXDrawable drawable, GLXDrawable member) parameters: - id: dpy - type: OpenTK.Graphics.Glx.Display* + type: OpenTK.Graphics.Glx.DisplayPtr - id: drawable type: OpenTK.Graphics.Glx.GLXDrawable - id: member type: OpenTK.Graphics.Glx.GLXDrawable - content.vb: Public Shared Sub JoinSwapGroupSGIX(dpy As Display*, drawable As GLXDrawable, member As GLXDrawable) + content.vb: Public Shared Sub JoinSwapGroupSGIX(dpy As DisplayPtr, drawable As GLXDrawable, member As GLXDrawable) overload: OpenTK.Graphics.Glx.Glx.SGIX.JoinSwapGroupSGIX* -- uid: OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelDeltasSGIX(OpenTK.Graphics.Glx.Display*,System.Int32,System.Int32,System.Int32*,System.Int32*,System.Int32*,System.Int32*) - commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelDeltasSGIX(OpenTK.Graphics.Glx.Display*,System.Int32,System.Int32,System.Int32*,System.Int32*,System.Int32*,System.Int32*) - id: QueryChannelDeltasSGIX(OpenTK.Graphics.Glx.Display*,System.Int32,System.Int32,System.Int32*,System.Int32*,System.Int32*,System.Int32*) +- uid: OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelDeltasSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32*,System.Int32*,System.Int32*,System.Int32*) + commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelDeltasSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32*,System.Int32*,System.Int32*,System.Int32*) + id: QueryChannelDeltasSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32*,System.Int32*,System.Int32*,System.Int32*) parent: OpenTK.Graphics.Glx.Glx.SGIX langs: - csharp - vb - name: QueryChannelDeltasSGIX(Display*, int, int, int*, int*, int*, int*) - nameWithType: Glx.SGIX.QueryChannelDeltasSGIX(Display*, int, int, int*, int*, int*, int*) - fullName: OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelDeltasSGIX(OpenTK.Graphics.Glx.Display*, int, int, int*, int*, int*, int*) + name: QueryChannelDeltasSGIX(DisplayPtr, int, int, int*, int*, int*, int*) + nameWithType: Glx.SGIX.QueryChannelDeltasSGIX(DisplayPtr, int, int, int*, int*, int*, int*) + fullName: OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelDeltasSGIX(OpenTK.Graphics.Glx.DisplayPtr, int, int, int*, int*, int*, int*) type: Method source: remote: @@ -839,10 +826,10 @@ items: summary: '[requires: GLX_SGIX_video_resize] [entry point: glXQueryChannelDeltasSGIX]
' example: [] syntax: - content: public static int QueryChannelDeltasSGIX(Display* display, int screen, int channel, int* x, int* y, int* w, int* h) + content: public static int QueryChannelDeltasSGIX(DisplayPtr display, int screen, int channel, int* x, int* y, int* w, int* h) parameters: - id: display - type: OpenTK.Graphics.Glx.Display* + type: OpenTK.Graphics.Glx.DisplayPtr - id: screen type: System.Int32 - id: channel @@ -857,21 +844,21 @@ items: type: System.Int32* return: type: System.Int32 - content.vb: Public Shared Function QueryChannelDeltasSGIX(display As Display*, screen As Integer, channel As Integer, x As Integer*, y As Integer*, w As Integer*, h As Integer*) As Integer + content.vb: Public Shared Function QueryChannelDeltasSGIX(display As DisplayPtr, screen As Integer, channel As Integer, x As Integer*, y As Integer*, w As Integer*, h As Integer*) As Integer overload: OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelDeltasSGIX* - nameWithType.vb: Glx.SGIX.QueryChannelDeltasSGIX(Display*, Integer, Integer, Integer*, Integer*, Integer*, Integer*) - fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelDeltasSGIX(OpenTK.Graphics.Glx.Display*, Integer, Integer, Integer*, Integer*, Integer*, Integer*) - name.vb: QueryChannelDeltasSGIX(Display*, Integer, Integer, Integer*, Integer*, Integer*, Integer*) -- uid: OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelRectSGIX(OpenTK.Graphics.Glx.Display*,System.Int32,System.Int32,System.Int32*,System.Int32*,System.Int32*,System.Int32*) - commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelRectSGIX(OpenTK.Graphics.Glx.Display*,System.Int32,System.Int32,System.Int32*,System.Int32*,System.Int32*,System.Int32*) - id: QueryChannelRectSGIX(OpenTK.Graphics.Glx.Display*,System.Int32,System.Int32,System.Int32*,System.Int32*,System.Int32*,System.Int32*) + nameWithType.vb: Glx.SGIX.QueryChannelDeltasSGIX(DisplayPtr, Integer, Integer, Integer*, Integer*, Integer*, Integer*) + fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelDeltasSGIX(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer, Integer*, Integer*, Integer*, Integer*) + name.vb: QueryChannelDeltasSGIX(DisplayPtr, Integer, Integer, Integer*, Integer*, Integer*, Integer*) +- uid: OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelRectSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32*,System.Int32*,System.Int32*,System.Int32*) + commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelRectSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32*,System.Int32*,System.Int32*,System.Int32*) + id: QueryChannelRectSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32*,System.Int32*,System.Int32*,System.Int32*) parent: OpenTK.Graphics.Glx.Glx.SGIX langs: - csharp - vb - name: QueryChannelRectSGIX(Display*, int, int, int*, int*, int*, int*) - nameWithType: Glx.SGIX.QueryChannelRectSGIX(Display*, int, int, int*, int*, int*, int*) - fullName: OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelRectSGIX(OpenTK.Graphics.Glx.Display*, int, int, int*, int*, int*, int*) + name: QueryChannelRectSGIX(DisplayPtr, int, int, int*, int*, int*, int*) + nameWithType: Glx.SGIX.QueryChannelRectSGIX(DisplayPtr, int, int, int*, int*, int*, int*) + fullName: OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelRectSGIX(OpenTK.Graphics.Glx.DisplayPtr, int, int, int*, int*, int*, int*) type: Method source: remote: @@ -887,10 +874,10 @@ items: summary: '[requires: GLX_SGIX_video_resize] [entry point: glXQueryChannelRectSGIX]
' example: [] syntax: - content: public static int QueryChannelRectSGIX(Display* display, int screen, int channel, int* dx, int* dy, int* dw, int* dh) + content: public static int QueryChannelRectSGIX(DisplayPtr display, int screen, int channel, int* dx, int* dy, int* dw, int* dh) parameters: - id: display - type: OpenTK.Graphics.Glx.Display* + type: OpenTK.Graphics.Glx.DisplayPtr - id: screen type: System.Int32 - id: channel @@ -905,21 +892,21 @@ items: type: System.Int32* return: type: System.Int32 - content.vb: Public Shared Function QueryChannelRectSGIX(display As Display*, screen As Integer, channel As Integer, dx As Integer*, dy As Integer*, dw As Integer*, dh As Integer*) As Integer + content.vb: Public Shared Function QueryChannelRectSGIX(display As DisplayPtr, screen As Integer, channel As Integer, dx As Integer*, dy As Integer*, dw As Integer*, dh As Integer*) As Integer overload: OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelRectSGIX* - nameWithType.vb: Glx.SGIX.QueryChannelRectSGIX(Display*, Integer, Integer, Integer*, Integer*, Integer*, Integer*) - fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelRectSGIX(OpenTK.Graphics.Glx.Display*, Integer, Integer, Integer*, Integer*, Integer*, Integer*) - name.vb: QueryChannelRectSGIX(Display*, Integer, Integer, Integer*, Integer*, Integer*, Integer*) -- uid: OpenTK.Graphics.Glx.Glx.SGIX.QueryGLXPbufferSGIX(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXPbufferSGIX,System.Int32,System.UInt32*) - commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.QueryGLXPbufferSGIX(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXPbufferSGIX,System.Int32,System.UInt32*) - id: QueryGLXPbufferSGIX(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXPbufferSGIX,System.Int32,System.UInt32*) + nameWithType.vb: Glx.SGIX.QueryChannelRectSGIX(DisplayPtr, Integer, Integer, Integer*, Integer*, Integer*, Integer*) + fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelRectSGIX(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer, Integer*, Integer*, Integer*, Integer*) + name.vb: QueryChannelRectSGIX(DisplayPtr, Integer, Integer, Integer*, Integer*, Integer*, Integer*) +- uid: OpenTK.Graphics.Glx.Glx.SGIX.QueryGLXPbufferSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXPbufferSGIX,System.Int32,System.UInt32*) + commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.QueryGLXPbufferSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXPbufferSGIX,System.Int32,System.UInt32*) + id: QueryGLXPbufferSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXPbufferSGIX,System.Int32,System.UInt32*) parent: OpenTK.Graphics.Glx.Glx.SGIX langs: - csharp - vb - name: QueryGLXPbufferSGIX(Display*, GLXPbufferSGIX, int, uint*) - nameWithType: Glx.SGIX.QueryGLXPbufferSGIX(Display*, GLXPbufferSGIX, int, uint*) - fullName: OpenTK.Graphics.Glx.Glx.SGIX.QueryGLXPbufferSGIX(OpenTK.Graphics.Glx.Display*, OpenTK.Graphics.Glx.GLXPbufferSGIX, int, uint*) + name: QueryGLXPbufferSGIX(DisplayPtr, GLXPbufferSGIX, int, uint*) + nameWithType: Glx.SGIX.QueryGLXPbufferSGIX(DisplayPtr, GLXPbufferSGIX, int, uint*) + fullName: OpenTK.Graphics.Glx.Glx.SGIX.QueryGLXPbufferSGIX(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXPbufferSGIX, int, uint*) type: Method source: remote: @@ -935,31 +922,31 @@ items: summary: '[requires: GLX_SGIX_pbuffer] [entry point: glXQueryGLXPbufferSGIX]
' example: [] syntax: - content: public static void QueryGLXPbufferSGIX(Display* dpy, GLXPbufferSGIX pbuf, int attribute, uint* value) + content: public static void QueryGLXPbufferSGIX(DisplayPtr dpy, GLXPbufferSGIX pbuf, int attribute, uint* value) parameters: - id: dpy - type: OpenTK.Graphics.Glx.Display* + type: OpenTK.Graphics.Glx.DisplayPtr - id: pbuf type: OpenTK.Graphics.Glx.GLXPbufferSGIX - id: attribute type: System.Int32 - id: value type: System.UInt32* - content.vb: Public Shared Sub QueryGLXPbufferSGIX(dpy As Display*, pbuf As GLXPbufferSGIX, attribute As Integer, value As UInteger*) + content.vb: Public Shared Sub QueryGLXPbufferSGIX(dpy As DisplayPtr, pbuf As GLXPbufferSGIX, attribute As Integer, value As UInteger*) overload: OpenTK.Graphics.Glx.Glx.SGIX.QueryGLXPbufferSGIX* - nameWithType.vb: Glx.SGIX.QueryGLXPbufferSGIX(Display*, GLXPbufferSGIX, Integer, UInteger*) - fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.QueryGLXPbufferSGIX(OpenTK.Graphics.Glx.Display*, OpenTK.Graphics.Glx.GLXPbufferSGIX, Integer, UInteger*) - name.vb: QueryGLXPbufferSGIX(Display*, GLXPbufferSGIX, Integer, UInteger*) -- uid: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeAttribSGIX(OpenTK.Graphics.Glx.Display*,System.Int32,System.Int32,System.Int32,System.Void*) - commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeAttribSGIX(OpenTK.Graphics.Glx.Display*,System.Int32,System.Int32,System.Int32,System.Void*) - id: QueryHyperpipeAttribSGIX(OpenTK.Graphics.Glx.Display*,System.Int32,System.Int32,System.Int32,System.Void*) + nameWithType.vb: Glx.SGIX.QueryGLXPbufferSGIX(DisplayPtr, GLXPbufferSGIX, Integer, UInteger*) + fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.QueryGLXPbufferSGIX(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXPbufferSGIX, Integer, UInteger*) + name.vb: QueryGLXPbufferSGIX(DisplayPtr, GLXPbufferSGIX, Integer, UInteger*) +- uid: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.Void*) + commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.Void*) + id: QueryHyperpipeAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.Void*) parent: OpenTK.Graphics.Glx.Glx.SGIX langs: - csharp - vb - name: QueryHyperpipeAttribSGIX(Display*, int, int, int, void*) - nameWithType: Glx.SGIX.QueryHyperpipeAttribSGIX(Display*, int, int, int, void*) - fullName: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeAttribSGIX(OpenTK.Graphics.Glx.Display*, int, int, int, void*) + name: QueryHyperpipeAttribSGIX(DisplayPtr, int, int, int, void*) + nameWithType: Glx.SGIX.QueryHyperpipeAttribSGIX(DisplayPtr, int, int, int, void*) + fullName: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr, int, int, int, void*) type: Method source: remote: @@ -975,10 +962,10 @@ items: summary: '[requires: GLX_SGIX_hyperpipe] [entry point: glXQueryHyperpipeAttribSGIX]
' example: [] syntax: - content: public static int QueryHyperpipeAttribSGIX(Display* dpy, int timeSlice, int attrib, int size, void* returnAttribList) + content: public static int QueryHyperpipeAttribSGIX(DisplayPtr dpy, int timeSlice, int attrib, int size, void* returnAttribList) parameters: - id: dpy - type: OpenTK.Graphics.Glx.Display* + type: OpenTK.Graphics.Glx.DisplayPtr - id: timeSlice type: System.Int32 - id: attrib @@ -989,21 +976,21 @@ items: type: System.Void* return: type: System.Int32 - content.vb: Public Shared Function QueryHyperpipeAttribSGIX(dpy As Display*, timeSlice As Integer, attrib As Integer, size As Integer, returnAttribList As Void*) As Integer + content.vb: Public Shared Function QueryHyperpipeAttribSGIX(dpy As DisplayPtr, timeSlice As Integer, attrib As Integer, size As Integer, returnAttribList As Void*) As Integer overload: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeAttribSGIX* - nameWithType.vb: Glx.SGIX.QueryHyperpipeAttribSGIX(Display*, Integer, Integer, Integer, Void*) - fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeAttribSGIX(OpenTK.Graphics.Glx.Display*, Integer, Integer, Integer, Void*) - name.vb: QueryHyperpipeAttribSGIX(Display*, Integer, Integer, Integer, Void*) -- uid: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeBestAttribSGIX(OpenTK.Graphics.Glx.Display*,System.Int32,System.Int32,System.Int32,System.Void*,System.Void*) - commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeBestAttribSGIX(OpenTK.Graphics.Glx.Display*,System.Int32,System.Int32,System.Int32,System.Void*,System.Void*) - id: QueryHyperpipeBestAttribSGIX(OpenTK.Graphics.Glx.Display*,System.Int32,System.Int32,System.Int32,System.Void*,System.Void*) + nameWithType.vb: Glx.SGIX.QueryHyperpipeAttribSGIX(DisplayPtr, Integer, Integer, Integer, Void*) + fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer, Integer, Void*) + name.vb: QueryHyperpipeAttribSGIX(DisplayPtr, Integer, Integer, Integer, Void*) +- uid: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeBestAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.Void*,System.Void*) + commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeBestAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.Void*,System.Void*) + id: QueryHyperpipeBestAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.Void*,System.Void*) parent: OpenTK.Graphics.Glx.Glx.SGIX langs: - csharp - vb - name: QueryHyperpipeBestAttribSGIX(Display*, int, int, int, void*, void*) - nameWithType: Glx.SGIX.QueryHyperpipeBestAttribSGIX(Display*, int, int, int, void*, void*) - fullName: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeBestAttribSGIX(OpenTK.Graphics.Glx.Display*, int, int, int, void*, void*) + name: QueryHyperpipeBestAttribSGIX(DisplayPtr, int, int, int, void*, void*) + nameWithType: Glx.SGIX.QueryHyperpipeBestAttribSGIX(DisplayPtr, int, int, int, void*, void*) + fullName: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeBestAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr, int, int, int, void*, void*) type: Method source: remote: @@ -1019,10 +1006,10 @@ items: summary: '[requires: GLX_SGIX_hyperpipe] [entry point: glXQueryHyperpipeBestAttribSGIX]
' example: [] syntax: - content: public static int QueryHyperpipeBestAttribSGIX(Display* dpy, int timeSlice, int attrib, int size, void* attribList, void* returnAttribList) + content: public static int QueryHyperpipeBestAttribSGIX(DisplayPtr dpy, int timeSlice, int attrib, int size, void* attribList, void* returnAttribList) parameters: - id: dpy - type: OpenTK.Graphics.Glx.Display* + type: OpenTK.Graphics.Glx.DisplayPtr - id: timeSlice type: System.Int32 - id: attrib @@ -1035,21 +1022,21 @@ items: type: System.Void* return: type: System.Int32 - content.vb: Public Shared Function QueryHyperpipeBestAttribSGIX(dpy As Display*, timeSlice As Integer, attrib As Integer, size As Integer, attribList As Void*, returnAttribList As Void*) As Integer + content.vb: Public Shared Function QueryHyperpipeBestAttribSGIX(dpy As DisplayPtr, timeSlice As Integer, attrib As Integer, size As Integer, attribList As Void*, returnAttribList As Void*) As Integer overload: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeBestAttribSGIX* - nameWithType.vb: Glx.SGIX.QueryHyperpipeBestAttribSGIX(Display*, Integer, Integer, Integer, Void*, Void*) - fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeBestAttribSGIX(OpenTK.Graphics.Glx.Display*, Integer, Integer, Integer, Void*, Void*) - name.vb: QueryHyperpipeBestAttribSGIX(Display*, Integer, Integer, Integer, Void*, Void*) -- uid: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeConfigSGIX(OpenTK.Graphics.Glx.Display*,System.Int32,System.Int32*) - commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeConfigSGIX(OpenTK.Graphics.Glx.Display*,System.Int32,System.Int32*) - id: QueryHyperpipeConfigSGIX(OpenTK.Graphics.Glx.Display*,System.Int32,System.Int32*) + nameWithType.vb: Glx.SGIX.QueryHyperpipeBestAttribSGIX(DisplayPtr, Integer, Integer, Integer, Void*, Void*) + fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeBestAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer, Integer, Void*, Void*) + name.vb: QueryHyperpipeBestAttribSGIX(DisplayPtr, Integer, Integer, Integer, Void*, Void*) +- uid: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32*) + commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32*) + id: QueryHyperpipeConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32*) parent: OpenTK.Graphics.Glx.Glx.SGIX langs: - csharp - vb - name: QueryHyperpipeConfigSGIX(Display*, int, int*) - nameWithType: Glx.SGIX.QueryHyperpipeConfigSGIX(Display*, int, int*) - fullName: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeConfigSGIX(OpenTK.Graphics.Glx.Display*, int, int*) + name: QueryHyperpipeConfigSGIX(DisplayPtr, int, int*) + nameWithType: Glx.SGIX.QueryHyperpipeConfigSGIX(DisplayPtr, int, int*) + fullName: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr, int, int*) type: Method source: remote: @@ -1065,31 +1052,31 @@ items: summary: '[requires: GLX_SGIX_hyperpipe] [entry point: glXQueryHyperpipeConfigSGIX]
' example: [] syntax: - content: public static GLXHyperpipeConfigSGIX* QueryHyperpipeConfigSGIX(Display* dpy, int hpId, int* npipes) + content: public static GLXHyperpipeConfigSGIX* QueryHyperpipeConfigSGIX(DisplayPtr dpy, int hpId, int* npipes) parameters: - id: dpy - type: OpenTK.Graphics.Glx.Display* + type: OpenTK.Graphics.Glx.DisplayPtr - id: hpId type: System.Int32 - id: npipes type: System.Int32* return: type: OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX* - content.vb: Public Shared Function QueryHyperpipeConfigSGIX(dpy As Display*, hpId As Integer, npipes As Integer*) As GLXHyperpipeConfigSGIX* + content.vb: Public Shared Function QueryHyperpipeConfigSGIX(dpy As DisplayPtr, hpId As Integer, npipes As Integer*) As GLXHyperpipeConfigSGIX* overload: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeConfigSGIX* - nameWithType.vb: Glx.SGIX.QueryHyperpipeConfigSGIX(Display*, Integer, Integer*) - fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeConfigSGIX(OpenTK.Graphics.Glx.Display*, Integer, Integer*) - name.vb: QueryHyperpipeConfigSGIX(Display*, Integer, Integer*) -- uid: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeNetworkSGIX(OpenTK.Graphics.Glx.Display*,System.Int32*) - commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeNetworkSGIX(OpenTK.Graphics.Glx.Display*,System.Int32*) - id: QueryHyperpipeNetworkSGIX(OpenTK.Graphics.Glx.Display*,System.Int32*) + nameWithType.vb: Glx.SGIX.QueryHyperpipeConfigSGIX(DisplayPtr, Integer, Integer*) + fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer*) + name.vb: QueryHyperpipeConfigSGIX(DisplayPtr, Integer, Integer*) +- uid: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeNetworkSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32*) + commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeNetworkSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32*) + id: QueryHyperpipeNetworkSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32*) parent: OpenTK.Graphics.Glx.Glx.SGIX langs: - csharp - vb - name: QueryHyperpipeNetworkSGIX(Display*, int*) - nameWithType: Glx.SGIX.QueryHyperpipeNetworkSGIX(Display*, int*) - fullName: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeNetworkSGIX(OpenTK.Graphics.Glx.Display*, int*) + name: QueryHyperpipeNetworkSGIX(DisplayPtr, int*) + nameWithType: Glx.SGIX.QueryHyperpipeNetworkSGIX(DisplayPtr, int*) + fullName: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeNetworkSGIX(OpenTK.Graphics.Glx.DisplayPtr, int*) type: Method source: remote: @@ -1105,29 +1092,29 @@ items: summary: '[requires: GLX_SGIX_hyperpipe] [entry point: glXQueryHyperpipeNetworkSGIX]
' example: [] syntax: - content: public static GLXHyperpipeNetworkSGIX* QueryHyperpipeNetworkSGIX(Display* dpy, int* npipes) + content: public static GLXHyperpipeNetworkSGIX* QueryHyperpipeNetworkSGIX(DisplayPtr dpy, int* npipes) parameters: - id: dpy - type: OpenTK.Graphics.Glx.Display* + type: OpenTK.Graphics.Glx.DisplayPtr - id: npipes type: System.Int32* return: type: OpenTK.Graphics.Glx.GLXHyperpipeNetworkSGIX* - content.vb: Public Shared Function QueryHyperpipeNetworkSGIX(dpy As Display*, npipes As Integer*) As GLXHyperpipeNetworkSGIX* + content.vb: Public Shared Function QueryHyperpipeNetworkSGIX(dpy As DisplayPtr, npipes As Integer*) As GLXHyperpipeNetworkSGIX* overload: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeNetworkSGIX* - nameWithType.vb: Glx.SGIX.QueryHyperpipeNetworkSGIX(Display*, Integer*) - fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeNetworkSGIX(OpenTK.Graphics.Glx.Display*, Integer*) - name.vb: QueryHyperpipeNetworkSGIX(Display*, Integer*) -- uid: OpenTK.Graphics.Glx.Glx.SGIX.QueryMaxSwapBarriersSGIX(OpenTK.Graphics.Glx.Display*,System.Int32,System.Int32*) - commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.QueryMaxSwapBarriersSGIX(OpenTK.Graphics.Glx.Display*,System.Int32,System.Int32*) - id: QueryMaxSwapBarriersSGIX(OpenTK.Graphics.Glx.Display*,System.Int32,System.Int32*) + nameWithType.vb: Glx.SGIX.QueryHyperpipeNetworkSGIX(DisplayPtr, Integer*) + fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeNetworkSGIX(OpenTK.Graphics.Glx.DisplayPtr, Integer*) + name.vb: QueryHyperpipeNetworkSGIX(DisplayPtr, Integer*) +- uid: OpenTK.Graphics.Glx.Glx.SGIX.QueryMaxSwapBarriersSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32*) + commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.QueryMaxSwapBarriersSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32*) + id: QueryMaxSwapBarriersSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32*) parent: OpenTK.Graphics.Glx.Glx.SGIX langs: - csharp - vb - name: QueryMaxSwapBarriersSGIX(Display*, int, int*) - nameWithType: Glx.SGIX.QueryMaxSwapBarriersSGIX(Display*, int, int*) - fullName: OpenTK.Graphics.Glx.Glx.SGIX.QueryMaxSwapBarriersSGIX(OpenTK.Graphics.Glx.Display*, int, int*) + name: QueryMaxSwapBarriersSGIX(DisplayPtr, int, int*) + nameWithType: Glx.SGIX.QueryMaxSwapBarriersSGIX(DisplayPtr, int, int*) + fullName: OpenTK.Graphics.Glx.Glx.SGIX.QueryMaxSwapBarriersSGIX(OpenTK.Graphics.Glx.DisplayPtr, int, int*) type: Method source: remote: @@ -1143,31 +1130,31 @@ items: summary: '[requires: GLX_SGIX_swap_barrier] [entry point: glXQueryMaxSwapBarriersSGIX]
' example: [] syntax: - content: public static bool QueryMaxSwapBarriersSGIX(Display* dpy, int screen, int* max) + content: public static bool QueryMaxSwapBarriersSGIX(DisplayPtr dpy, int screen, int* max) parameters: - id: dpy - type: OpenTK.Graphics.Glx.Display* + type: OpenTK.Graphics.Glx.DisplayPtr - id: screen type: System.Int32 - id: max type: System.Int32* return: type: System.Boolean - content.vb: Public Shared Function QueryMaxSwapBarriersSGIX(dpy As Display*, screen As Integer, max As Integer*) As Boolean + content.vb: Public Shared Function QueryMaxSwapBarriersSGIX(dpy As DisplayPtr, screen As Integer, max As Integer*) As Boolean overload: OpenTK.Graphics.Glx.Glx.SGIX.QueryMaxSwapBarriersSGIX* - nameWithType.vb: Glx.SGIX.QueryMaxSwapBarriersSGIX(Display*, Integer, Integer*) - fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.QueryMaxSwapBarriersSGIX(OpenTK.Graphics.Glx.Display*, Integer, Integer*) - name.vb: QueryMaxSwapBarriersSGIX(Display*, Integer, Integer*) -- uid: OpenTK.Graphics.Glx.Glx.SGIX.SelectEventSGIX(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXDrawable,System.UInt64) - commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.SelectEventSGIX(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXDrawable,System.UInt64) - id: SelectEventSGIX(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXDrawable,System.UInt64) + nameWithType.vb: Glx.SGIX.QueryMaxSwapBarriersSGIX(DisplayPtr, Integer, Integer*) + fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.QueryMaxSwapBarriersSGIX(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer*) + name.vb: QueryMaxSwapBarriersSGIX(DisplayPtr, Integer, Integer*) +- uid: OpenTK.Graphics.Glx.Glx.SGIX.SelectEventSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.UInt64) + commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.SelectEventSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.UInt64) + id: SelectEventSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.UInt64) parent: OpenTK.Graphics.Glx.Glx.SGIX langs: - csharp - vb - name: SelectEventSGIX(Display*, GLXDrawable, ulong) - nameWithType: Glx.SGIX.SelectEventSGIX(Display*, GLXDrawable, ulong) - fullName: OpenTK.Graphics.Glx.Glx.SGIX.SelectEventSGIX(OpenTK.Graphics.Glx.Display*, OpenTK.Graphics.Glx.GLXDrawable, ulong) + name: SelectEventSGIX(DisplayPtr, GLXDrawable, ulong) + nameWithType: Glx.SGIX.SelectEventSGIX(DisplayPtr, GLXDrawable, ulong) + fullName: OpenTK.Graphics.Glx.Glx.SGIX.SelectEventSGIX(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, ulong) type: Method source: remote: @@ -1183,262 +1170,29 @@ items: summary: '[requires: GLX_SGIX_pbuffer] [entry point: glXSelectEventSGIX]
' example: [] syntax: - content: public static void SelectEventSGIX(Display* dpy, GLXDrawable drawable, ulong mask) + content: public static void SelectEventSGIX(DisplayPtr dpy, GLXDrawable drawable, ulong mask) parameters: - id: dpy - type: OpenTK.Graphics.Glx.Display* + type: OpenTK.Graphics.Glx.DisplayPtr - id: drawable type: OpenTK.Graphics.Glx.GLXDrawable - id: mask type: System.UInt64 - content.vb: Public Shared Sub SelectEventSGIX(dpy As Display*, drawable As GLXDrawable, mask As ULong) + content.vb: Public Shared Sub SelectEventSGIX(dpy As DisplayPtr, drawable As GLXDrawable, mask As ULong) overload: OpenTK.Graphics.Glx.Glx.SGIX.SelectEventSGIX* - nameWithType.vb: Glx.SGIX.SelectEventSGIX(Display*, GLXDrawable, ULong) - fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.SelectEventSGIX(OpenTK.Graphics.Glx.Display*, OpenTK.Graphics.Glx.GLXDrawable, ULong) - name.vb: SelectEventSGIX(Display*, GLXDrawable, ULong) -- uid: OpenTK.Graphics.Glx.Glx.SGIX.BindChannelToWindowSGIX(OpenTK.Graphics.Glx.Display@,System.Int32,System.Int32,OpenTK.Graphics.Glx.Window) - commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.BindChannelToWindowSGIX(OpenTK.Graphics.Glx.Display@,System.Int32,System.Int32,OpenTK.Graphics.Glx.Window) - id: BindChannelToWindowSGIX(OpenTK.Graphics.Glx.Display@,System.Int32,System.Int32,OpenTK.Graphics.Glx.Window) + nameWithType.vb: Glx.SGIX.SelectEventSGIX(DisplayPtr, GLXDrawable, ULong) + fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.SelectEventSGIX(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, ULong) + name.vb: SelectEventSGIX(DisplayPtr, GLXDrawable, ULong) +- uid: OpenTK.Graphics.Glx.Glx.SGIX.ChooseFBConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32@,System.Int32@) + commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.ChooseFBConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32@,System.Int32@) + id: ChooseFBConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32@,System.Int32@) parent: OpenTK.Graphics.Glx.Glx.SGIX langs: - csharp - vb - name: BindChannelToWindowSGIX(ref Display, int, int, Window) - nameWithType: Glx.SGIX.BindChannelToWindowSGIX(ref Display, int, int, Window) - fullName: OpenTK.Graphics.Glx.Glx.SGIX.BindChannelToWindowSGIX(ref OpenTK.Graphics.Glx.Display, int, int, OpenTK.Graphics.Glx.Window) - type: Method - source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: BindChannelToWindowSGIX - path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 898 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_SGIX_video_resize] - - [entry point: glXBindChannelToWindowSGIX] - -
- example: [] - syntax: - content: public static int BindChannelToWindowSGIX(ref Display display, int screen, int channel, Window window) - parameters: - - id: display - type: OpenTK.Graphics.Glx.Display - - id: screen - type: System.Int32 - - id: channel - type: System.Int32 - - id: window - type: OpenTK.Graphics.Glx.Window - return: - type: System.Int32 - content.vb: Public Shared Function BindChannelToWindowSGIX(display As Display, screen As Integer, channel As Integer, window As Window) As Integer - overload: OpenTK.Graphics.Glx.Glx.SGIX.BindChannelToWindowSGIX* - nameWithType.vb: Glx.SGIX.BindChannelToWindowSGIX(Display, Integer, Integer, Window) - fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.BindChannelToWindowSGIX(OpenTK.Graphics.Glx.Display, Integer, Integer, OpenTK.Graphics.Glx.Window) - name.vb: BindChannelToWindowSGIX(Display, Integer, Integer, Window) -- uid: OpenTK.Graphics.Glx.Glx.SGIX.BindHyperpipeSGIX(OpenTK.Graphics.Glx.Display@,System.Int32) - commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.BindHyperpipeSGIX(OpenTK.Graphics.Glx.Display@,System.Int32) - id: BindHyperpipeSGIX(OpenTK.Graphics.Glx.Display@,System.Int32) - parent: OpenTK.Graphics.Glx.Glx.SGIX - langs: - - csharp - - vb - name: BindHyperpipeSGIX(ref Display, int) - nameWithType: Glx.SGIX.BindHyperpipeSGIX(ref Display, int) - fullName: OpenTK.Graphics.Glx.Glx.SGIX.BindHyperpipeSGIX(ref OpenTK.Graphics.Glx.Display, int) - type: Method - source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: BindHyperpipeSGIX - path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 908 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_SGIX_hyperpipe] - - [entry point: glXBindHyperpipeSGIX] - -
- example: [] - syntax: - content: public static int BindHyperpipeSGIX(ref Display dpy, int hpId) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.Display - - id: hpId - type: System.Int32 - return: - type: System.Int32 - content.vb: Public Shared Function BindHyperpipeSGIX(dpy As Display, hpId As Integer) As Integer - overload: OpenTK.Graphics.Glx.Glx.SGIX.BindHyperpipeSGIX* - nameWithType.vb: Glx.SGIX.BindHyperpipeSGIX(Display, Integer) - fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.BindHyperpipeSGIX(OpenTK.Graphics.Glx.Display, Integer) - name.vb: BindHyperpipeSGIX(Display, Integer) -- uid: OpenTK.Graphics.Glx.Glx.SGIX.BindSwapBarrierSGIX(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXDrawable,System.Int32) - commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.BindSwapBarrierSGIX(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXDrawable,System.Int32) - id: BindSwapBarrierSGIX(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXDrawable,System.Int32) - parent: OpenTK.Graphics.Glx.Glx.SGIX - langs: - - csharp - - vb - name: BindSwapBarrierSGIX(ref Display, GLXDrawable, int) - nameWithType: Glx.SGIX.BindSwapBarrierSGIX(ref Display, GLXDrawable, int) - fullName: OpenTK.Graphics.Glx.Glx.SGIX.BindSwapBarrierSGIX(ref OpenTK.Graphics.Glx.Display, OpenTK.Graphics.Glx.GLXDrawable, int) - type: Method - source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: BindSwapBarrierSGIX - path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 918 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_SGIX_swap_barrier] - - [entry point: glXBindSwapBarrierSGIX] - -
- example: [] - syntax: - content: public static void BindSwapBarrierSGIX(ref Display dpy, GLXDrawable drawable, int barrier) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.Display - - id: drawable - type: OpenTK.Graphics.Glx.GLXDrawable - - id: barrier - type: System.Int32 - content.vb: Public Shared Sub BindSwapBarrierSGIX(dpy As Display, drawable As GLXDrawable, barrier As Integer) - overload: OpenTK.Graphics.Glx.Glx.SGIX.BindSwapBarrierSGIX* - nameWithType.vb: Glx.SGIX.BindSwapBarrierSGIX(Display, GLXDrawable, Integer) - fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.BindSwapBarrierSGIX(OpenTK.Graphics.Glx.Display, OpenTK.Graphics.Glx.GLXDrawable, Integer) - name.vb: BindSwapBarrierSGIX(Display, GLXDrawable, Integer) -- uid: OpenTK.Graphics.Glx.Glx.SGIX.ChannelRectSGIX(OpenTK.Graphics.Glx.Display@,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32) - commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.ChannelRectSGIX(OpenTK.Graphics.Glx.Display@,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32) - id: ChannelRectSGIX(OpenTK.Graphics.Glx.Display@,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32) - parent: OpenTK.Graphics.Glx.Glx.SGIX - langs: - - csharp - - vb - name: ChannelRectSGIX(ref Display, int, int, int, int, int, int) - nameWithType: Glx.SGIX.ChannelRectSGIX(ref Display, int, int, int, int, int, int) - fullName: OpenTK.Graphics.Glx.Glx.SGIX.ChannelRectSGIX(ref OpenTK.Graphics.Glx.Display, int, int, int, int, int, int) - type: Method - source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: ChannelRectSGIX - path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 926 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_SGIX_video_resize] - - [entry point: glXChannelRectSGIX] - -
- example: [] - syntax: - content: public static int ChannelRectSGIX(ref Display display, int screen, int channel, int x, int y, int w, int h) - parameters: - - id: display - type: OpenTK.Graphics.Glx.Display - - id: screen - type: System.Int32 - - id: channel - type: System.Int32 - - id: x - type: System.Int32 - - id: y - type: System.Int32 - - id: w - type: System.Int32 - - id: h - type: System.Int32 - return: - type: System.Int32 - content.vb: Public Shared Function ChannelRectSGIX(display As Display, screen As Integer, channel As Integer, x As Integer, y As Integer, w As Integer, h As Integer) As Integer - overload: OpenTK.Graphics.Glx.Glx.SGIX.ChannelRectSGIX* - nameWithType.vb: Glx.SGIX.ChannelRectSGIX(Display, Integer, Integer, Integer, Integer, Integer, Integer) - fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.ChannelRectSGIX(OpenTK.Graphics.Glx.Display, Integer, Integer, Integer, Integer, Integer, Integer) - name.vb: ChannelRectSGIX(Display, Integer, Integer, Integer, Integer, Integer, Integer) -- uid: OpenTK.Graphics.Glx.Glx.SGIX.ChannelRectSyncSGIX(OpenTK.Graphics.Glx.Display@,System.Int32,System.Int32,OpenTK.Graphics.Glx.All) - commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.ChannelRectSyncSGIX(OpenTK.Graphics.Glx.Display@,System.Int32,System.Int32,OpenTK.Graphics.Glx.All) - id: ChannelRectSyncSGIX(OpenTK.Graphics.Glx.Display@,System.Int32,System.Int32,OpenTK.Graphics.Glx.All) - parent: OpenTK.Graphics.Glx.Glx.SGIX - langs: - - csharp - - vb - name: ChannelRectSyncSGIX(ref Display, int, int, All) - nameWithType: Glx.SGIX.ChannelRectSyncSGIX(ref Display, int, int, All) - fullName: OpenTK.Graphics.Glx.Glx.SGIX.ChannelRectSyncSGIX(ref OpenTK.Graphics.Glx.Display, int, int, OpenTK.Graphics.Glx.All) - type: Method - source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: ChannelRectSyncSGIX - path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 936 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_SGIX_video_resize] - - [entry point: glXChannelRectSyncSGIX] - -
- example: [] - syntax: - content: public static int ChannelRectSyncSGIX(ref Display display, int screen, int channel, All synctype) - parameters: - - id: display - type: OpenTK.Graphics.Glx.Display - - id: screen - type: System.Int32 - - id: channel - type: System.Int32 - - id: synctype - type: OpenTK.Graphics.Glx.All - return: - type: System.Int32 - content.vb: Public Shared Function ChannelRectSyncSGIX(display As Display, screen As Integer, channel As Integer, synctype As All) As Integer - overload: OpenTK.Graphics.Glx.Glx.SGIX.ChannelRectSyncSGIX* - nameWithType.vb: Glx.SGIX.ChannelRectSyncSGIX(Display, Integer, Integer, All) - fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.ChannelRectSyncSGIX(OpenTK.Graphics.Glx.Display, Integer, Integer, OpenTK.Graphics.Glx.All) - name.vb: ChannelRectSyncSGIX(Display, Integer, Integer, All) -- uid: OpenTK.Graphics.Glx.Glx.SGIX.ChooseFBConfigSGIX(OpenTK.Graphics.Glx.Display@,System.Int32,System.Int32@,System.Int32@) - commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.ChooseFBConfigSGIX(OpenTK.Graphics.Glx.Display@,System.Int32,System.Int32@,System.Int32@) - id: ChooseFBConfigSGIX(OpenTK.Graphics.Glx.Display@,System.Int32,System.Int32@,System.Int32@) - parent: OpenTK.Graphics.Glx.Glx.SGIX - langs: - - csharp - - vb - name: ChooseFBConfigSGIX(ref Display, int, ref int, ref int) - nameWithType: Glx.SGIX.ChooseFBConfigSGIX(ref Display, int, ref int, ref int) - fullName: OpenTK.Graphics.Glx.Glx.SGIX.ChooseFBConfigSGIX(ref OpenTK.Graphics.Glx.Display, int, ref int, ref int) + name: ChooseFBConfigSGIX(DisplayPtr, int, ref int, ref int) + nameWithType: Glx.SGIX.ChooseFBConfigSGIX(DisplayPtr, int, ref int, ref int) + fullName: OpenTK.Graphics.Glx.Glx.SGIX.ChooseFBConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr, int, ref int, ref int) type: Method source: remote: @@ -1447,7 +1201,7 @@ items: repo: https://github.com/opentk/opentk.git id: ChooseFBConfigSGIX path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 946 + startLine: 507 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -1459,10 +1213,10 @@ items:
example: [] syntax: - content: public static GLXFBConfigSGIX* ChooseFBConfigSGIX(ref Display dpy, int screen, ref int attrib_list, ref int nelements) + content: public static GLXFBConfigSGIX* ChooseFBConfigSGIX(DisplayPtr dpy, int screen, ref int attrib_list, ref int nelements) parameters: - id: dpy - type: OpenTK.Graphics.Glx.Display + type: OpenTK.Graphics.Glx.DisplayPtr - id: screen type: System.Int32 - id: attrib_list @@ -1471,70 +1225,21 @@ items: type: System.Int32 return: type: OpenTK.Graphics.Glx.GLXFBConfigSGIX* - content.vb: Public Shared Function ChooseFBConfigSGIX(dpy As Display, screen As Integer, attrib_list As Integer, nelements As Integer) As GLXFBConfigSGIX* + content.vb: Public Shared Function ChooseFBConfigSGIX(dpy As DisplayPtr, screen As Integer, attrib_list As Integer, nelements As Integer) As GLXFBConfigSGIX* overload: OpenTK.Graphics.Glx.Glx.SGIX.ChooseFBConfigSGIX* - nameWithType.vb: Glx.SGIX.ChooseFBConfigSGIX(Display, Integer, Integer, Integer) - fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.ChooseFBConfigSGIX(OpenTK.Graphics.Glx.Display, Integer, Integer, Integer) - name.vb: ChooseFBConfigSGIX(Display, Integer, Integer, Integer) -- uid: OpenTK.Graphics.Glx.Glx.SGIX.CreateContextWithConfigSGIX(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXFBConfigSGIX,System.Int32,OpenTK.Graphics.Glx.GLXContext,System.Boolean) - commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.CreateContextWithConfigSGIX(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXFBConfigSGIX,System.Int32,OpenTK.Graphics.Glx.GLXContext,System.Boolean) - id: CreateContextWithConfigSGIX(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXFBConfigSGIX,System.Int32,OpenTK.Graphics.Glx.GLXContext,System.Boolean) + nameWithType.vb: Glx.SGIX.ChooseFBConfigSGIX(DisplayPtr, Integer, Integer, Integer) + fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.ChooseFBConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer, Integer) + name.vb: ChooseFBConfigSGIX(DisplayPtr, Integer, Integer, Integer) +- uid: OpenTK.Graphics.Glx.Glx.SGIX.CreateGLXPbufferSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfigSGIX,System.UInt32,System.UInt32,System.Int32@) + commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.CreateGLXPbufferSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfigSGIX,System.UInt32,System.UInt32,System.Int32@) + id: CreateGLXPbufferSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfigSGIX,System.UInt32,System.UInt32,System.Int32@) parent: OpenTK.Graphics.Glx.Glx.SGIX langs: - csharp - vb - name: CreateContextWithConfigSGIX(ref Display, GLXFBConfigSGIX, int, GLXContext, bool) - nameWithType: Glx.SGIX.CreateContextWithConfigSGIX(ref Display, GLXFBConfigSGIX, int, GLXContext, bool) - fullName: OpenTK.Graphics.Glx.Glx.SGIX.CreateContextWithConfigSGIX(ref OpenTK.Graphics.Glx.Display, OpenTK.Graphics.Glx.GLXFBConfigSGIX, int, OpenTK.Graphics.Glx.GLXContext, bool) - type: Method - source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: CreateContextWithConfigSGIX - path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 958 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_SGIX_fbconfig] - - [entry point: glXCreateContextWithConfigSGIX] - -
- example: [] - syntax: - content: public static GLXContext CreateContextWithConfigSGIX(ref Display dpy, GLXFBConfigSGIX config, int render_type, GLXContext share_list, bool direct) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.Display - - id: config - type: OpenTK.Graphics.Glx.GLXFBConfigSGIX - - id: render_type - type: System.Int32 - - id: share_list - type: OpenTK.Graphics.Glx.GLXContext - - id: direct - type: System.Boolean - return: - type: OpenTK.Graphics.Glx.GLXContext - content.vb: Public Shared Function CreateContextWithConfigSGIX(dpy As Display, config As GLXFBConfigSGIX, render_type As Integer, share_list As GLXContext, direct As Boolean) As GLXContext - overload: OpenTK.Graphics.Glx.Glx.SGIX.CreateContextWithConfigSGIX* - nameWithType.vb: Glx.SGIX.CreateContextWithConfigSGIX(Display, GLXFBConfigSGIX, Integer, GLXContext, Boolean) - fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.CreateContextWithConfigSGIX(OpenTK.Graphics.Glx.Display, OpenTK.Graphics.Glx.GLXFBConfigSGIX, Integer, OpenTK.Graphics.Glx.GLXContext, Boolean) - name.vb: CreateContextWithConfigSGIX(Display, GLXFBConfigSGIX, Integer, GLXContext, Boolean) -- uid: OpenTK.Graphics.Glx.Glx.SGIX.CreateGLXPbufferSGIX(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXFBConfigSGIX,System.UInt32,System.UInt32,System.Int32@) - commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.CreateGLXPbufferSGIX(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXFBConfigSGIX,System.UInt32,System.UInt32,System.Int32@) - id: CreateGLXPbufferSGIX(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXFBConfigSGIX,System.UInt32,System.UInt32,System.Int32@) - parent: OpenTK.Graphics.Glx.Glx.SGIX - langs: - - csharp - - vb - name: CreateGLXPbufferSGIX(ref Display, GLXFBConfigSGIX, uint, uint, ref int) - nameWithType: Glx.SGIX.CreateGLXPbufferSGIX(ref Display, GLXFBConfigSGIX, uint, uint, ref int) - fullName: OpenTK.Graphics.Glx.Glx.SGIX.CreateGLXPbufferSGIX(ref OpenTK.Graphics.Glx.Display, OpenTK.Graphics.Glx.GLXFBConfigSGIX, uint, uint, ref int) + name: CreateGLXPbufferSGIX(DisplayPtr, GLXFBConfigSGIX, uint, uint, ref int) + nameWithType: Glx.SGIX.CreateGLXPbufferSGIX(DisplayPtr, GLXFBConfigSGIX, uint, uint, ref int) + fullName: OpenTK.Graphics.Glx.Glx.SGIX.CreateGLXPbufferSGIX(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfigSGIX, uint, uint, ref int) type: Method source: remote: @@ -1543,7 +1248,7 @@ items: repo: https://github.com/opentk/opentk.git id: CreateGLXPbufferSGIX path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 968 + startLine: 518 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -1555,10 +1260,10 @@ items:
example: [] syntax: - content: public static GLXPbufferSGIX CreateGLXPbufferSGIX(ref Display dpy, GLXFBConfigSGIX config, uint width, uint height, ref int attrib_list) + content: public static GLXPbufferSGIX CreateGLXPbufferSGIX(DisplayPtr dpy, GLXFBConfigSGIX config, uint width, uint height, ref int attrib_list) parameters: - id: dpy - type: OpenTK.Graphics.Glx.Display + type: OpenTK.Graphics.Glx.DisplayPtr - id: config type: OpenTK.Graphics.Glx.GLXFBConfigSGIX - id: width @@ -1569,150 +1274,21 @@ items: type: System.Int32 return: type: OpenTK.Graphics.Glx.GLXPbufferSGIX - content.vb: Public Shared Function CreateGLXPbufferSGIX(dpy As Display, config As GLXFBConfigSGIX, width As UInteger, height As UInteger, attrib_list As Integer) As GLXPbufferSGIX + content.vb: Public Shared Function CreateGLXPbufferSGIX(dpy As DisplayPtr, config As GLXFBConfigSGIX, width As UInteger, height As UInteger, attrib_list As Integer) As GLXPbufferSGIX overload: OpenTK.Graphics.Glx.Glx.SGIX.CreateGLXPbufferSGIX* - nameWithType.vb: Glx.SGIX.CreateGLXPbufferSGIX(Display, GLXFBConfigSGIX, UInteger, UInteger, Integer) - fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.CreateGLXPbufferSGIX(OpenTK.Graphics.Glx.Display, OpenTK.Graphics.Glx.GLXFBConfigSGIX, UInteger, UInteger, Integer) - name.vb: CreateGLXPbufferSGIX(Display, GLXFBConfigSGIX, UInteger, UInteger, Integer) -- uid: OpenTK.Graphics.Glx.Glx.SGIX.CreateGLXPixmapWithConfigSGIX(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXFBConfigSGIX,OpenTK.Graphics.Glx.Pixmap) - commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.CreateGLXPixmapWithConfigSGIX(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXFBConfigSGIX,OpenTK.Graphics.Glx.Pixmap) - id: CreateGLXPixmapWithConfigSGIX(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXFBConfigSGIX,OpenTK.Graphics.Glx.Pixmap) - parent: OpenTK.Graphics.Glx.Glx.SGIX - langs: - - csharp - - vb - name: CreateGLXPixmapWithConfigSGIX(ref Display, GLXFBConfigSGIX, Pixmap) - nameWithType: Glx.SGIX.CreateGLXPixmapWithConfigSGIX(ref Display, GLXFBConfigSGIX, Pixmap) - fullName: OpenTK.Graphics.Glx.Glx.SGIX.CreateGLXPixmapWithConfigSGIX(ref OpenTK.Graphics.Glx.Display, OpenTK.Graphics.Glx.GLXFBConfigSGIX, OpenTK.Graphics.Glx.Pixmap) - type: Method - source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: CreateGLXPixmapWithConfigSGIX - path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 979 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_SGIX_fbconfig] - - [entry point: glXCreateGLXPixmapWithConfigSGIX] - -
- example: [] - syntax: - content: public static GLXPixmap CreateGLXPixmapWithConfigSGIX(ref Display dpy, GLXFBConfigSGIX config, Pixmap pixmap) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.Display - - id: config - type: OpenTK.Graphics.Glx.GLXFBConfigSGIX - - id: pixmap - type: OpenTK.Graphics.Glx.Pixmap - return: - type: OpenTK.Graphics.Glx.GLXPixmap - content.vb: Public Shared Function CreateGLXPixmapWithConfigSGIX(dpy As Display, config As GLXFBConfigSGIX, pixmap As Pixmap) As GLXPixmap - overload: OpenTK.Graphics.Glx.Glx.SGIX.CreateGLXPixmapWithConfigSGIX* - nameWithType.vb: Glx.SGIX.CreateGLXPixmapWithConfigSGIX(Display, GLXFBConfigSGIX, Pixmap) - fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.CreateGLXPixmapWithConfigSGIX(OpenTK.Graphics.Glx.Display, OpenTK.Graphics.Glx.GLXFBConfigSGIX, OpenTK.Graphics.Glx.Pixmap) - name.vb: CreateGLXPixmapWithConfigSGIX(Display, GLXFBConfigSGIX, Pixmap) -- uid: OpenTK.Graphics.Glx.Glx.SGIX.DestroyGLXPbufferSGIX(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXPbufferSGIX) - commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.DestroyGLXPbufferSGIX(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXPbufferSGIX) - id: DestroyGLXPbufferSGIX(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXPbufferSGIX) - parent: OpenTK.Graphics.Glx.Glx.SGIX - langs: - - csharp - - vb - name: DestroyGLXPbufferSGIX(ref Display, GLXPbufferSGIX) - nameWithType: Glx.SGIX.DestroyGLXPbufferSGIX(ref Display, GLXPbufferSGIX) - fullName: OpenTK.Graphics.Glx.Glx.SGIX.DestroyGLXPbufferSGIX(ref OpenTK.Graphics.Glx.Display, OpenTK.Graphics.Glx.GLXPbufferSGIX) - type: Method - source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: DestroyGLXPbufferSGIX - path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 989 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_SGIX_pbuffer] - - [entry point: glXDestroyGLXPbufferSGIX] - -
- example: [] - syntax: - content: public static void DestroyGLXPbufferSGIX(ref Display dpy, GLXPbufferSGIX pbuf) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.Display - - id: pbuf - type: OpenTK.Graphics.Glx.GLXPbufferSGIX - content.vb: Public Shared Sub DestroyGLXPbufferSGIX(dpy As Display, pbuf As GLXPbufferSGIX) - overload: OpenTK.Graphics.Glx.Glx.SGIX.DestroyGLXPbufferSGIX* - nameWithType.vb: Glx.SGIX.DestroyGLXPbufferSGIX(Display, GLXPbufferSGIX) - fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.DestroyGLXPbufferSGIX(OpenTK.Graphics.Glx.Display, OpenTK.Graphics.Glx.GLXPbufferSGIX) - name.vb: DestroyGLXPbufferSGIX(Display, GLXPbufferSGIX) -- uid: OpenTK.Graphics.Glx.Glx.SGIX.DestroyHyperpipeConfigSGIX(OpenTK.Graphics.Glx.Display@,System.Int32) - commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.DestroyHyperpipeConfigSGIX(OpenTK.Graphics.Glx.Display@,System.Int32) - id: DestroyHyperpipeConfigSGIX(OpenTK.Graphics.Glx.Display@,System.Int32) + nameWithType.vb: Glx.SGIX.CreateGLXPbufferSGIX(DisplayPtr, GLXFBConfigSGIX, UInteger, UInteger, Integer) + fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.CreateGLXPbufferSGIX(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfigSGIX, UInteger, UInteger, Integer) + name.vb: CreateGLXPbufferSGIX(DisplayPtr, GLXFBConfigSGIX, UInteger, UInteger, Integer) +- uid: OpenTK.Graphics.Glx.Glx.SGIX.GetFBConfigAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfigSGIX,System.Int32,System.Int32@) + commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.GetFBConfigAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfigSGIX,System.Int32,System.Int32@) + id: GetFBConfigAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfigSGIX,System.Int32,System.Int32@) parent: OpenTK.Graphics.Glx.Glx.SGIX langs: - csharp - vb - name: DestroyHyperpipeConfigSGIX(ref Display, int) - nameWithType: Glx.SGIX.DestroyHyperpipeConfigSGIX(ref Display, int) - fullName: OpenTK.Graphics.Glx.Glx.SGIX.DestroyHyperpipeConfigSGIX(ref OpenTK.Graphics.Glx.Display, int) - type: Method - source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: DestroyHyperpipeConfigSGIX - path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 997 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_SGIX_hyperpipe] - - [entry point: glXDestroyHyperpipeConfigSGIX] - -
- example: [] - syntax: - content: public static int DestroyHyperpipeConfigSGIX(ref Display dpy, int hpId) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.Display - - id: hpId - type: System.Int32 - return: - type: System.Int32 - content.vb: Public Shared Function DestroyHyperpipeConfigSGIX(dpy As Display, hpId As Integer) As Integer - overload: OpenTK.Graphics.Glx.Glx.SGIX.DestroyHyperpipeConfigSGIX* - nameWithType.vb: Glx.SGIX.DestroyHyperpipeConfigSGIX(Display, Integer) - fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.DestroyHyperpipeConfigSGIX(OpenTK.Graphics.Glx.Display, Integer) - name.vb: DestroyHyperpipeConfigSGIX(Display, Integer) -- uid: OpenTK.Graphics.Glx.Glx.SGIX.GetFBConfigAttribSGIX(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXFBConfigSGIX,System.Int32,System.Int32@) - commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.GetFBConfigAttribSGIX(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXFBConfigSGIX,System.Int32,System.Int32@) - id: GetFBConfigAttribSGIX(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXFBConfigSGIX,System.Int32,System.Int32@) - parent: OpenTK.Graphics.Glx.Glx.SGIX - langs: - - csharp - - vb - name: GetFBConfigAttribSGIX(ref Display, GLXFBConfigSGIX, int, ref int) - nameWithType: Glx.SGIX.GetFBConfigAttribSGIX(ref Display, GLXFBConfigSGIX, int, ref int) - fullName: OpenTK.Graphics.Glx.Glx.SGIX.GetFBConfigAttribSGIX(ref OpenTK.Graphics.Glx.Display, OpenTK.Graphics.Glx.GLXFBConfigSGIX, int, ref int) + name: GetFBConfigAttribSGIX(DisplayPtr, GLXFBConfigSGIX, int, ref int) + nameWithType: Glx.SGIX.GetFBConfigAttribSGIX(DisplayPtr, GLXFBConfigSGIX, int, ref int) + fullName: OpenTK.Graphics.Glx.Glx.SGIX.GetFBConfigAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfigSGIX, int, ref int) type: Method source: remote: @@ -1721,7 +1297,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetFBConfigAttribSGIX path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 1007 + startLine: 528 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -1733,10 +1309,10 @@ items:
example: [] syntax: - content: public static int GetFBConfigAttribSGIX(ref Display dpy, GLXFBConfigSGIX config, int attribute, ref int value) + content: public static int GetFBConfigAttribSGIX(DisplayPtr dpy, GLXFBConfigSGIX config, int attribute, ref int value) parameters: - id: dpy - type: OpenTK.Graphics.Glx.Display + type: OpenTK.Graphics.Glx.DisplayPtr - id: config type: OpenTK.Graphics.Glx.GLXFBConfigSGIX - id: attribute @@ -1745,64 +1321,21 @@ items: type: System.Int32 return: type: System.Int32 - content.vb: Public Shared Function GetFBConfigAttribSGIX(dpy As Display, config As GLXFBConfigSGIX, attribute As Integer, value As Integer) As Integer + content.vb: Public Shared Function GetFBConfigAttribSGIX(dpy As DisplayPtr, config As GLXFBConfigSGIX, attribute As Integer, value As Integer) As Integer overload: OpenTK.Graphics.Glx.Glx.SGIX.GetFBConfigAttribSGIX* - nameWithType.vb: Glx.SGIX.GetFBConfigAttribSGIX(Display, GLXFBConfigSGIX, Integer, Integer) - fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.GetFBConfigAttribSGIX(OpenTK.Graphics.Glx.Display, OpenTK.Graphics.Glx.GLXFBConfigSGIX, Integer, Integer) - name.vb: GetFBConfigAttribSGIX(Display, GLXFBConfigSGIX, Integer, Integer) -- uid: OpenTK.Graphics.Glx.Glx.SGIX.GetFBConfigFromVisualSGIX(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.XVisualInfo@) - commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.GetFBConfigFromVisualSGIX(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.XVisualInfo@) - id: GetFBConfigFromVisualSGIX(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.XVisualInfo@) - parent: OpenTK.Graphics.Glx.Glx.SGIX - langs: - - csharp - - vb - name: GetFBConfigFromVisualSGIX(ref Display, ref XVisualInfo) - nameWithType: Glx.SGIX.GetFBConfigFromVisualSGIX(ref Display, ref XVisualInfo) - fullName: OpenTK.Graphics.Glx.Glx.SGIX.GetFBConfigFromVisualSGIX(ref OpenTK.Graphics.Glx.Display, ref OpenTK.Graphics.Glx.XVisualInfo) - type: Method - source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: GetFBConfigFromVisualSGIX - path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 1018 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_SGIX_fbconfig] - - [entry point: glXGetFBConfigFromVisualSGIX] - -
- example: [] - syntax: - content: public static GLXFBConfigSGIX GetFBConfigFromVisualSGIX(ref Display dpy, ref XVisualInfo vis) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.Display - - id: vis - type: OpenTK.Graphics.Glx.XVisualInfo - return: - type: OpenTK.Graphics.Glx.GLXFBConfigSGIX - content.vb: Public Shared Function GetFBConfigFromVisualSGIX(dpy As Display, vis As XVisualInfo) As GLXFBConfigSGIX - overload: OpenTK.Graphics.Glx.Glx.SGIX.GetFBConfigFromVisualSGIX* - nameWithType.vb: Glx.SGIX.GetFBConfigFromVisualSGIX(Display, XVisualInfo) - fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.GetFBConfigFromVisualSGIX(OpenTK.Graphics.Glx.Display, OpenTK.Graphics.Glx.XVisualInfo) - name.vb: GetFBConfigFromVisualSGIX(Display, XVisualInfo) -- uid: OpenTK.Graphics.Glx.Glx.SGIX.GetSelectedEventSGIX(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXDrawable,System.UInt64@) - commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.GetSelectedEventSGIX(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXDrawable,System.UInt64@) - id: GetSelectedEventSGIX(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXDrawable,System.UInt64@) + nameWithType.vb: Glx.SGIX.GetFBConfigAttribSGIX(DisplayPtr, GLXFBConfigSGIX, Integer, Integer) + fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.GetFBConfigAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfigSGIX, Integer, Integer) + name.vb: GetFBConfigAttribSGIX(DisplayPtr, GLXFBConfigSGIX, Integer, Integer) +- uid: OpenTK.Graphics.Glx.Glx.SGIX.GetSelectedEventSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.UInt64@) + commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.GetSelectedEventSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.UInt64@) + id: GetSelectedEventSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.UInt64@) parent: OpenTK.Graphics.Glx.Glx.SGIX langs: - csharp - vb - name: GetSelectedEventSGIX(ref Display, GLXDrawable, ref ulong) - nameWithType: Glx.SGIX.GetSelectedEventSGIX(ref Display, GLXDrawable, ref ulong) - fullName: OpenTK.Graphics.Glx.Glx.SGIX.GetSelectedEventSGIX(ref OpenTK.Graphics.Glx.Display, OpenTK.Graphics.Glx.GLXDrawable, ref ulong) + name: GetSelectedEventSGIX(DisplayPtr, GLXDrawable, ref ulong) + nameWithType: Glx.SGIX.GetSelectedEventSGIX(DisplayPtr, GLXDrawable, ref ulong) + fullName: OpenTK.Graphics.Glx.Glx.SGIX.GetSelectedEventSGIX(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, ref ulong) type: Method source: remote: @@ -1811,7 +1344,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetSelectedEventSGIX path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 1029 + startLine: 538 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -1823,72 +1356,29 @@ items:
example: [] syntax: - content: public static void GetSelectedEventSGIX(ref Display dpy, GLXDrawable drawable, ref ulong mask) + content: public static void GetSelectedEventSGIX(DisplayPtr dpy, GLXDrawable drawable, ref ulong mask) parameters: - id: dpy - type: OpenTK.Graphics.Glx.Display + type: OpenTK.Graphics.Glx.DisplayPtr - id: drawable type: OpenTK.Graphics.Glx.GLXDrawable - id: mask type: System.UInt64 - content.vb: Public Shared Sub GetSelectedEventSGIX(dpy As Display, drawable As GLXDrawable, mask As ULong) + content.vb: Public Shared Sub GetSelectedEventSGIX(dpy As DisplayPtr, drawable As GLXDrawable, mask As ULong) overload: OpenTK.Graphics.Glx.Glx.SGIX.GetSelectedEventSGIX* - nameWithType.vb: Glx.SGIX.GetSelectedEventSGIX(Display, GLXDrawable, ULong) - fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.GetSelectedEventSGIX(OpenTK.Graphics.Glx.Display, OpenTK.Graphics.Glx.GLXDrawable, ULong) - name.vb: GetSelectedEventSGIX(Display, GLXDrawable, ULong) -- uid: OpenTK.Graphics.Glx.Glx.SGIX.GetVisualFromFBConfigSGIX(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXFBConfigSGIX) - commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.GetVisualFromFBConfigSGIX(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXFBConfigSGIX) - id: GetVisualFromFBConfigSGIX(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXFBConfigSGIX) - parent: OpenTK.Graphics.Glx.Glx.SGIX - langs: - - csharp - - vb - name: GetVisualFromFBConfigSGIX(ref Display, GLXFBConfigSGIX) - nameWithType: Glx.SGIX.GetVisualFromFBConfigSGIX(ref Display, GLXFBConfigSGIX) - fullName: OpenTK.Graphics.Glx.Glx.SGIX.GetVisualFromFBConfigSGIX(ref OpenTK.Graphics.Glx.Display, OpenTK.Graphics.Glx.GLXFBConfigSGIX) - type: Method - source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: GetVisualFromFBConfigSGIX - path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 1038 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_SGIX_fbconfig] - - [entry point: glXGetVisualFromFBConfigSGIX] - -
- example: [] - syntax: - content: public static XVisualInfo* GetVisualFromFBConfigSGIX(ref Display dpy, GLXFBConfigSGIX config) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.Display - - id: config - type: OpenTK.Graphics.Glx.GLXFBConfigSGIX - return: - type: OpenTK.Graphics.Glx.XVisualInfo* - content.vb: Public Shared Function GetVisualFromFBConfigSGIX(dpy As Display, config As GLXFBConfigSGIX) As XVisualInfo* - overload: OpenTK.Graphics.Glx.Glx.SGIX.GetVisualFromFBConfigSGIX* - nameWithType.vb: Glx.SGIX.GetVisualFromFBConfigSGIX(Display, GLXFBConfigSGIX) - fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.GetVisualFromFBConfigSGIX(OpenTK.Graphics.Glx.Display, OpenTK.Graphics.Glx.GLXFBConfigSGIX) - name.vb: GetVisualFromFBConfigSGIX(Display, GLXFBConfigSGIX) -- uid: OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeAttribSGIX(OpenTK.Graphics.Glx.Display@,System.Int32,System.Int32,System.Int32,System.IntPtr) - commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeAttribSGIX(OpenTK.Graphics.Glx.Display@,System.Int32,System.Int32,System.Int32,System.IntPtr) - id: HyperpipeAttribSGIX(OpenTK.Graphics.Glx.Display@,System.Int32,System.Int32,System.Int32,System.IntPtr) + nameWithType.vb: Glx.SGIX.GetSelectedEventSGIX(DisplayPtr, GLXDrawable, ULong) + fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.GetSelectedEventSGIX(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, ULong) + name.vb: GetSelectedEventSGIX(DisplayPtr, GLXDrawable, ULong) +- uid: OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.IntPtr) + commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.IntPtr) + id: HyperpipeAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.IntPtr) parent: OpenTK.Graphics.Glx.Glx.SGIX langs: - csharp - vb - name: HyperpipeAttribSGIX(ref Display, int, int, int, nint) - nameWithType: Glx.SGIX.HyperpipeAttribSGIX(ref Display, int, int, int, nint) - fullName: OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeAttribSGIX(ref OpenTK.Graphics.Glx.Display, int, int, int, nint) + name: HyperpipeAttribSGIX(DisplayPtr, int, int, int, nint) + nameWithType: Glx.SGIX.HyperpipeAttribSGIX(DisplayPtr, int, int, int, nint) + fullName: OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr, int, int, int, nint) type: Method source: remote: @@ -1897,7 +1387,7 @@ items: repo: https://github.com/opentk/opentk.git id: HyperpipeAttribSGIX path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 1048 + startLine: 546 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -1909,10 +1399,10 @@ items:
example: [] syntax: - content: public static int HyperpipeAttribSGIX(ref Display dpy, int timeSlice, int attrib, int size, nint attribList) + content: public static int HyperpipeAttribSGIX(DisplayPtr dpy, int timeSlice, int attrib, int size, nint attribList) parameters: - id: dpy - type: OpenTK.Graphics.Glx.Display + type: OpenTK.Graphics.Glx.DisplayPtr - id: timeSlice type: System.Int32 - id: attrib @@ -1923,21 +1413,21 @@ items: type: System.IntPtr return: type: System.Int32 - content.vb: Public Shared Function HyperpipeAttribSGIX(dpy As Display, timeSlice As Integer, attrib As Integer, size As Integer, attribList As IntPtr) As Integer + content.vb: Public Shared Function HyperpipeAttribSGIX(dpy As DisplayPtr, timeSlice As Integer, attrib As Integer, size As Integer, attribList As IntPtr) As Integer overload: OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeAttribSGIX* - nameWithType.vb: Glx.SGIX.HyperpipeAttribSGIX(Display, Integer, Integer, Integer, IntPtr) - fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeAttribSGIX(OpenTK.Graphics.Glx.Display, Integer, Integer, Integer, System.IntPtr) - name.vb: HyperpipeAttribSGIX(Display, Integer, Integer, Integer, IntPtr) -- uid: OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeAttribSGIX``1(OpenTK.Graphics.Glx.Display@,System.Int32,System.Int32,System.Int32,``0@) - commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeAttribSGIX``1(OpenTK.Graphics.Glx.Display@,System.Int32,System.Int32,System.Int32,``0@) - id: HyperpipeAttribSGIX``1(OpenTK.Graphics.Glx.Display@,System.Int32,System.Int32,System.Int32,``0@) + nameWithType.vb: Glx.SGIX.HyperpipeAttribSGIX(DisplayPtr, Integer, Integer, Integer, IntPtr) + fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer, Integer, System.IntPtr) + name.vb: HyperpipeAttribSGIX(DisplayPtr, Integer, Integer, Integer, IntPtr) +- uid: OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeAttribSGIX``1(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,``0@) + commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeAttribSGIX``1(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,``0@) + id: HyperpipeAttribSGIX``1(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,``0@) parent: OpenTK.Graphics.Glx.Glx.SGIX langs: - csharp - vb - name: HyperpipeAttribSGIX(ref Display, int, int, int, ref T1) - nameWithType: Glx.SGIX.HyperpipeAttribSGIX(ref Display, int, int, int, ref T1) - fullName: OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeAttribSGIX(ref OpenTK.Graphics.Glx.Display, int, int, int, ref T1) + name: HyperpipeAttribSGIX(DisplayPtr, int, int, int, ref T1) + nameWithType: Glx.SGIX.HyperpipeAttribSGIX(DisplayPtr, int, int, int, ref T1) + fullName: OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr, int, int, int, ref T1) type: Method source: remote: @@ -1946,7 +1436,7 @@ items: repo: https://github.com/opentk/opentk.git id: HyperpipeAttribSGIX path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 1059 + startLine: 554 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -1958,10 +1448,10 @@ items:
example: [] syntax: - content: 'public static int HyperpipeAttribSGIX(ref Display dpy, int timeSlice, int attrib, int size, ref T1 attribList) where T1 : unmanaged' + content: 'public static int HyperpipeAttribSGIX(DisplayPtr dpy, int timeSlice, int attrib, int size, ref T1 attribList) where T1 : unmanaged' parameters: - id: dpy - type: OpenTK.Graphics.Glx.Display + type: OpenTK.Graphics.Glx.DisplayPtr - id: timeSlice type: System.Int32 - id: attrib @@ -1974,21 +1464,21 @@ items: - id: T1 return: type: System.Int32 - content.vb: Public Shared Function HyperpipeAttribSGIX(Of T1 As Structure)(dpy As Display, timeSlice As Integer, attrib As Integer, size As Integer, attribList As T1) As Integer + content.vb: Public Shared Function HyperpipeAttribSGIX(Of T1 As Structure)(dpy As DisplayPtr, timeSlice As Integer, attrib As Integer, size As Integer, attribList As T1) As Integer overload: OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeAttribSGIX* - nameWithType.vb: Glx.SGIX.HyperpipeAttribSGIX(Of T1)(Display, Integer, Integer, Integer, T1) - fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeAttribSGIX(Of T1)(OpenTK.Graphics.Glx.Display, Integer, Integer, Integer, T1) - name.vb: HyperpipeAttribSGIX(Of T1)(Display, Integer, Integer, Integer, T1) -- uid: OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeConfigSGIX(OpenTK.Graphics.Glx.Display@,System.Int32,System.Int32,OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX@,System.Int32@) - commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeConfigSGIX(OpenTK.Graphics.Glx.Display@,System.Int32,System.Int32,OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX@,System.Int32@) - id: HyperpipeConfigSGIX(OpenTK.Graphics.Glx.Display@,System.Int32,System.Int32,OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX@,System.Int32@) + nameWithType.vb: Glx.SGIX.HyperpipeAttribSGIX(Of T1)(DisplayPtr, Integer, Integer, Integer, T1) + fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeAttribSGIX(Of T1)(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer, Integer, T1) + name.vb: HyperpipeAttribSGIX(Of T1)(DisplayPtr, Integer, Integer, Integer, T1) +- uid: OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX@,System.Int32@) + commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX@,System.Int32@) + id: HyperpipeConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX@,System.Int32@) parent: OpenTK.Graphics.Glx.Glx.SGIX langs: - csharp - vb - name: HyperpipeConfigSGIX(ref Display, int, int, ref GLXHyperpipeConfigSGIX, ref int) - nameWithType: Glx.SGIX.HyperpipeConfigSGIX(ref Display, int, int, ref GLXHyperpipeConfigSGIX, ref int) - fullName: OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeConfigSGIX(ref OpenTK.Graphics.Glx.Display, int, int, ref OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX, ref int) + name: HyperpipeConfigSGIX(DisplayPtr, int, int, ref GLXHyperpipeConfigSGIX, ref int) + nameWithType: Glx.SGIX.HyperpipeConfigSGIX(DisplayPtr, int, int, ref GLXHyperpipeConfigSGIX, ref int) + fullName: OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr, int, int, ref OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX, ref int) type: Method source: remote: @@ -1997,7 +1487,7 @@ items: repo: https://github.com/opentk/opentk.git id: HyperpipeConfigSGIX path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 1071 + startLine: 565 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -2009,10 +1499,10 @@ items:
example: [] syntax: - content: public static int HyperpipeConfigSGIX(ref Display dpy, int networkId, int npipes, ref GLXHyperpipeConfigSGIX cfg, ref int hpId) + content: public static int HyperpipeConfigSGIX(DisplayPtr dpy, int networkId, int npipes, ref GLXHyperpipeConfigSGIX cfg, ref int hpId) parameters: - id: dpy - type: OpenTK.Graphics.Glx.Display + type: OpenTK.Graphics.Glx.DisplayPtr - id: networkId type: System.Int32 - id: npipes @@ -2023,64 +1513,21 @@ items: type: System.Int32 return: type: System.Int32 - content.vb: Public Shared Function HyperpipeConfigSGIX(dpy As Display, networkId As Integer, npipes As Integer, cfg As GLXHyperpipeConfigSGIX, hpId As Integer) As Integer + content.vb: Public Shared Function HyperpipeConfigSGIX(dpy As DisplayPtr, networkId As Integer, npipes As Integer, cfg As GLXHyperpipeConfigSGIX, hpId As Integer) As Integer overload: OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeConfigSGIX* - nameWithType.vb: Glx.SGIX.HyperpipeConfigSGIX(Display, Integer, Integer, GLXHyperpipeConfigSGIX, Integer) - fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeConfigSGIX(OpenTK.Graphics.Glx.Display, Integer, Integer, OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX, Integer) - name.vb: HyperpipeConfigSGIX(Display, Integer, Integer, GLXHyperpipeConfigSGIX, Integer) -- uid: OpenTK.Graphics.Glx.Glx.SGIX.JoinSwapGroupSGIX(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXDrawable,OpenTK.Graphics.Glx.GLXDrawable) - commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.JoinSwapGroupSGIX(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXDrawable,OpenTK.Graphics.Glx.GLXDrawable) - id: JoinSwapGroupSGIX(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXDrawable,OpenTK.Graphics.Glx.GLXDrawable) + nameWithType.vb: Glx.SGIX.HyperpipeConfigSGIX(DisplayPtr, Integer, Integer, GLXHyperpipeConfigSGIX, Integer) + fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer, OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX, Integer) + name.vb: HyperpipeConfigSGIX(DisplayPtr, Integer, Integer, GLXHyperpipeConfigSGIX, Integer) +- uid: OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelDeltasSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32@,System.Int32@,System.Int32@,System.Int32@) + commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelDeltasSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32@,System.Int32@,System.Int32@,System.Int32@) + id: QueryChannelDeltasSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32@,System.Int32@,System.Int32@,System.Int32@) parent: OpenTK.Graphics.Glx.Glx.SGIX langs: - csharp - vb - name: JoinSwapGroupSGIX(ref Display, GLXDrawable, GLXDrawable) - nameWithType: Glx.SGIX.JoinSwapGroupSGIX(ref Display, GLXDrawable, GLXDrawable) - fullName: OpenTK.Graphics.Glx.Glx.SGIX.JoinSwapGroupSGIX(ref OpenTK.Graphics.Glx.Display, OpenTK.Graphics.Glx.GLXDrawable, OpenTK.Graphics.Glx.GLXDrawable) - type: Method - source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: JoinSwapGroupSGIX - path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 1083 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_SGIX_swap_group] - - [entry point: glXJoinSwapGroupSGIX] - -
- example: [] - syntax: - content: public static void JoinSwapGroupSGIX(ref Display dpy, GLXDrawable drawable, GLXDrawable member) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.Display - - id: drawable - type: OpenTK.Graphics.Glx.GLXDrawable - - id: member - type: OpenTK.Graphics.Glx.GLXDrawable - content.vb: Public Shared Sub JoinSwapGroupSGIX(dpy As Display, drawable As GLXDrawable, member As GLXDrawable) - overload: OpenTK.Graphics.Glx.Glx.SGIX.JoinSwapGroupSGIX* - nameWithType.vb: Glx.SGIX.JoinSwapGroupSGIX(Display, GLXDrawable, GLXDrawable) - fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.JoinSwapGroupSGIX(OpenTK.Graphics.Glx.Display, OpenTK.Graphics.Glx.GLXDrawable, OpenTK.Graphics.Glx.GLXDrawable) - name.vb: JoinSwapGroupSGIX(Display, GLXDrawable, GLXDrawable) -- uid: OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelDeltasSGIX(OpenTK.Graphics.Glx.Display@,System.Int32,System.Int32,System.Int32@,System.Int32@,System.Int32@,System.Int32@) - commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelDeltasSGIX(OpenTK.Graphics.Glx.Display@,System.Int32,System.Int32,System.Int32@,System.Int32@,System.Int32@,System.Int32@) - id: QueryChannelDeltasSGIX(OpenTK.Graphics.Glx.Display@,System.Int32,System.Int32,System.Int32@,System.Int32@,System.Int32@,System.Int32@) - parent: OpenTK.Graphics.Glx.Glx.SGIX - langs: - - csharp - - vb - name: QueryChannelDeltasSGIX(ref Display, int, int, ref int, ref int, ref int, ref int) - nameWithType: Glx.SGIX.QueryChannelDeltasSGIX(ref Display, int, int, ref int, ref int, ref int, ref int) - fullName: OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelDeltasSGIX(ref OpenTK.Graphics.Glx.Display, int, int, ref int, ref int, ref int, ref int) + name: QueryChannelDeltasSGIX(DisplayPtr, int, int, ref int, ref int, ref int, ref int) + nameWithType: Glx.SGIX.QueryChannelDeltasSGIX(DisplayPtr, int, int, ref int, ref int, ref int, ref int) + fullName: OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelDeltasSGIX(OpenTK.Graphics.Glx.DisplayPtr, int, int, ref int, ref int, ref int, ref int) type: Method source: remote: @@ -2089,7 +1536,7 @@ items: repo: https://github.com/opentk/opentk.git id: QueryChannelDeltasSGIX path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 1091 + startLine: 576 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -2101,10 +1548,10 @@ items:
example: [] syntax: - content: public static int QueryChannelDeltasSGIX(ref Display display, int screen, int channel, ref int x, ref int y, ref int w, ref int h) + content: public static int QueryChannelDeltasSGIX(DisplayPtr display, int screen, int channel, ref int x, ref int y, ref int w, ref int h) parameters: - id: display - type: OpenTK.Graphics.Glx.Display + type: OpenTK.Graphics.Glx.DisplayPtr - id: screen type: System.Int32 - id: channel @@ -2119,21 +1566,21 @@ items: type: System.Int32 return: type: System.Int32 - content.vb: Public Shared Function QueryChannelDeltasSGIX(display As Display, screen As Integer, channel As Integer, x As Integer, y As Integer, w As Integer, h As Integer) As Integer + content.vb: Public Shared Function QueryChannelDeltasSGIX(display As DisplayPtr, screen As Integer, channel As Integer, x As Integer, y As Integer, w As Integer, h As Integer) As Integer overload: OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelDeltasSGIX* - nameWithType.vb: Glx.SGIX.QueryChannelDeltasSGIX(Display, Integer, Integer, Integer, Integer, Integer, Integer) - fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelDeltasSGIX(OpenTK.Graphics.Glx.Display, Integer, Integer, Integer, Integer, Integer, Integer) - name.vb: QueryChannelDeltasSGIX(Display, Integer, Integer, Integer, Integer, Integer, Integer) -- uid: OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelRectSGIX(OpenTK.Graphics.Glx.Display@,System.Int32,System.Int32,System.Int32@,System.Int32@,System.Int32@,System.Int32@) - commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelRectSGIX(OpenTK.Graphics.Glx.Display@,System.Int32,System.Int32,System.Int32@,System.Int32@,System.Int32@,System.Int32@) - id: QueryChannelRectSGIX(OpenTK.Graphics.Glx.Display@,System.Int32,System.Int32,System.Int32@,System.Int32@,System.Int32@,System.Int32@) + nameWithType.vb: Glx.SGIX.QueryChannelDeltasSGIX(DisplayPtr, Integer, Integer, Integer, Integer, Integer, Integer) + fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelDeltasSGIX(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer, Integer, Integer, Integer, Integer) + name.vb: QueryChannelDeltasSGIX(DisplayPtr, Integer, Integer, Integer, Integer, Integer, Integer) +- uid: OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelRectSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32@,System.Int32@,System.Int32@,System.Int32@) + commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelRectSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32@,System.Int32@,System.Int32@,System.Int32@) + id: QueryChannelRectSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32@,System.Int32@,System.Int32@,System.Int32@) parent: OpenTK.Graphics.Glx.Glx.SGIX langs: - csharp - vb - name: QueryChannelRectSGIX(ref Display, int, int, ref int, ref int, ref int, ref int) - nameWithType: Glx.SGIX.QueryChannelRectSGIX(ref Display, int, int, ref int, ref int, ref int, ref int) - fullName: OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelRectSGIX(ref OpenTK.Graphics.Glx.Display, int, int, ref int, ref int, ref int, ref int) + name: QueryChannelRectSGIX(DisplayPtr, int, int, ref int, ref int, ref int, ref int) + nameWithType: Glx.SGIX.QueryChannelRectSGIX(DisplayPtr, int, int, ref int, ref int, ref int, ref int) + fullName: OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelRectSGIX(OpenTK.Graphics.Glx.DisplayPtr, int, int, ref int, ref int, ref int, ref int) type: Method source: remote: @@ -2142,7 +1589,7 @@ items: repo: https://github.com/opentk/opentk.git id: QueryChannelRectSGIX path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 1105 + startLine: 589 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -2154,10 +1601,10 @@ items:
example: [] syntax: - content: public static int QueryChannelRectSGIX(ref Display display, int screen, int channel, ref int dx, ref int dy, ref int dw, ref int dh) + content: public static int QueryChannelRectSGIX(DisplayPtr display, int screen, int channel, ref int dx, ref int dy, ref int dw, ref int dh) parameters: - id: display - type: OpenTK.Graphics.Glx.Display + type: OpenTK.Graphics.Glx.DisplayPtr - id: screen type: System.Int32 - id: channel @@ -2172,21 +1619,21 @@ items: type: System.Int32 return: type: System.Int32 - content.vb: Public Shared Function QueryChannelRectSGIX(display As Display, screen As Integer, channel As Integer, dx As Integer, dy As Integer, dw As Integer, dh As Integer) As Integer + content.vb: Public Shared Function QueryChannelRectSGIX(display As DisplayPtr, screen As Integer, channel As Integer, dx As Integer, dy As Integer, dw As Integer, dh As Integer) As Integer overload: OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelRectSGIX* - nameWithType.vb: Glx.SGIX.QueryChannelRectSGIX(Display, Integer, Integer, Integer, Integer, Integer, Integer) - fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelRectSGIX(OpenTK.Graphics.Glx.Display, Integer, Integer, Integer, Integer, Integer, Integer) - name.vb: QueryChannelRectSGIX(Display, Integer, Integer, Integer, Integer, Integer, Integer) -- uid: OpenTK.Graphics.Glx.Glx.SGIX.QueryGLXPbufferSGIX(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXPbufferSGIX,System.Int32,System.UInt32@) - commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.QueryGLXPbufferSGIX(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXPbufferSGIX,System.Int32,System.UInt32@) - id: QueryGLXPbufferSGIX(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXPbufferSGIX,System.Int32,System.UInt32@) + nameWithType.vb: Glx.SGIX.QueryChannelRectSGIX(DisplayPtr, Integer, Integer, Integer, Integer, Integer, Integer) + fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelRectSGIX(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer, Integer, Integer, Integer, Integer) + name.vb: QueryChannelRectSGIX(DisplayPtr, Integer, Integer, Integer, Integer, Integer, Integer) +- uid: OpenTK.Graphics.Glx.Glx.SGIX.QueryGLXPbufferSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXPbufferSGIX,System.Int32,System.UInt32@) + commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.QueryGLXPbufferSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXPbufferSGIX,System.Int32,System.UInt32@) + id: QueryGLXPbufferSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXPbufferSGIX,System.Int32,System.UInt32@) parent: OpenTK.Graphics.Glx.Glx.SGIX langs: - csharp - vb - name: QueryGLXPbufferSGIX(ref Display, GLXPbufferSGIX, int, ref uint) - nameWithType: Glx.SGIX.QueryGLXPbufferSGIX(ref Display, GLXPbufferSGIX, int, ref uint) - fullName: OpenTK.Graphics.Glx.Glx.SGIX.QueryGLXPbufferSGIX(ref OpenTK.Graphics.Glx.Display, OpenTK.Graphics.Glx.GLXPbufferSGIX, int, ref uint) + name: QueryGLXPbufferSGIX(DisplayPtr, GLXPbufferSGIX, int, ref uint) + nameWithType: Glx.SGIX.QueryGLXPbufferSGIX(DisplayPtr, GLXPbufferSGIX, int, ref uint) + fullName: OpenTK.Graphics.Glx.Glx.SGIX.QueryGLXPbufferSGIX(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXPbufferSGIX, int, ref uint) type: Method source: remote: @@ -2195,7 +1642,7 @@ items: repo: https://github.com/opentk/opentk.git id: QueryGLXPbufferSGIX path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 1119 + startLine: 602 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -2207,31 +1654,31 @@ items:
example: [] syntax: - content: public static void QueryGLXPbufferSGIX(ref Display dpy, GLXPbufferSGIX pbuf, int attribute, ref uint value) + content: public static void QueryGLXPbufferSGIX(DisplayPtr dpy, GLXPbufferSGIX pbuf, int attribute, ref uint value) parameters: - id: dpy - type: OpenTK.Graphics.Glx.Display + type: OpenTK.Graphics.Glx.DisplayPtr - id: pbuf type: OpenTK.Graphics.Glx.GLXPbufferSGIX - id: attribute type: System.Int32 - id: value type: System.UInt32 - content.vb: Public Shared Sub QueryGLXPbufferSGIX(dpy As Display, pbuf As GLXPbufferSGIX, attribute As Integer, value As UInteger) + content.vb: Public Shared Sub QueryGLXPbufferSGIX(dpy As DisplayPtr, pbuf As GLXPbufferSGIX, attribute As Integer, value As UInteger) overload: OpenTK.Graphics.Glx.Glx.SGIX.QueryGLXPbufferSGIX* - nameWithType.vb: Glx.SGIX.QueryGLXPbufferSGIX(Display, GLXPbufferSGIX, Integer, UInteger) - fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.QueryGLXPbufferSGIX(OpenTK.Graphics.Glx.Display, OpenTK.Graphics.Glx.GLXPbufferSGIX, Integer, UInteger) - name.vb: QueryGLXPbufferSGIX(Display, GLXPbufferSGIX, Integer, UInteger) -- uid: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeAttribSGIX(OpenTK.Graphics.Glx.Display@,System.Int32,System.Int32,System.Int32,System.IntPtr) - commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeAttribSGIX(OpenTK.Graphics.Glx.Display@,System.Int32,System.Int32,System.Int32,System.IntPtr) - id: QueryHyperpipeAttribSGIX(OpenTK.Graphics.Glx.Display@,System.Int32,System.Int32,System.Int32,System.IntPtr) + nameWithType.vb: Glx.SGIX.QueryGLXPbufferSGIX(DisplayPtr, GLXPbufferSGIX, Integer, UInteger) + fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.QueryGLXPbufferSGIX(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXPbufferSGIX, Integer, UInteger) + name.vb: QueryGLXPbufferSGIX(DisplayPtr, GLXPbufferSGIX, Integer, UInteger) +- uid: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.IntPtr) + commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.IntPtr) + id: QueryHyperpipeAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.IntPtr) parent: OpenTK.Graphics.Glx.Glx.SGIX langs: - csharp - vb - name: QueryHyperpipeAttribSGIX(ref Display, int, int, int, nint) - nameWithType: Glx.SGIX.QueryHyperpipeAttribSGIX(ref Display, int, int, int, nint) - fullName: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeAttribSGIX(ref OpenTK.Graphics.Glx.Display, int, int, int, nint) + name: QueryHyperpipeAttribSGIX(DisplayPtr, int, int, int, nint) + nameWithType: Glx.SGIX.QueryHyperpipeAttribSGIX(DisplayPtr, int, int, int, nint) + fullName: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr, int, int, int, nint) type: Method source: remote: @@ -2240,7 +1687,7 @@ items: repo: https://github.com/opentk/opentk.git id: QueryHyperpipeAttribSGIX path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 1128 + startLine: 610 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -2252,10 +1699,10 @@ items:
example: [] syntax: - content: public static int QueryHyperpipeAttribSGIX(ref Display dpy, int timeSlice, int attrib, int size, nint returnAttribList) + content: public static int QueryHyperpipeAttribSGIX(DisplayPtr dpy, int timeSlice, int attrib, int size, nint returnAttribList) parameters: - id: dpy - type: OpenTK.Graphics.Glx.Display + type: OpenTK.Graphics.Glx.DisplayPtr - id: timeSlice type: System.Int32 - id: attrib @@ -2266,21 +1713,21 @@ items: type: System.IntPtr return: type: System.Int32 - content.vb: Public Shared Function QueryHyperpipeAttribSGIX(dpy As Display, timeSlice As Integer, attrib As Integer, size As Integer, returnAttribList As IntPtr) As Integer + content.vb: Public Shared Function QueryHyperpipeAttribSGIX(dpy As DisplayPtr, timeSlice As Integer, attrib As Integer, size As Integer, returnAttribList As IntPtr) As Integer overload: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeAttribSGIX* - nameWithType.vb: Glx.SGIX.QueryHyperpipeAttribSGIX(Display, Integer, Integer, Integer, IntPtr) - fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeAttribSGIX(OpenTK.Graphics.Glx.Display, Integer, Integer, Integer, System.IntPtr) - name.vb: QueryHyperpipeAttribSGIX(Display, Integer, Integer, Integer, IntPtr) -- uid: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeAttribSGIX``1(OpenTK.Graphics.Glx.Display@,System.Int32,System.Int32,System.Int32,``0@) - commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeAttribSGIX``1(OpenTK.Graphics.Glx.Display@,System.Int32,System.Int32,System.Int32,``0@) - id: QueryHyperpipeAttribSGIX``1(OpenTK.Graphics.Glx.Display@,System.Int32,System.Int32,System.Int32,``0@) + nameWithType.vb: Glx.SGIX.QueryHyperpipeAttribSGIX(DisplayPtr, Integer, Integer, Integer, IntPtr) + fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer, Integer, System.IntPtr) + name.vb: QueryHyperpipeAttribSGIX(DisplayPtr, Integer, Integer, Integer, IntPtr) +- uid: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeAttribSGIX``1(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,``0@) + commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeAttribSGIX``1(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,``0@) + id: QueryHyperpipeAttribSGIX``1(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,``0@) parent: OpenTK.Graphics.Glx.Glx.SGIX langs: - csharp - vb - name: QueryHyperpipeAttribSGIX(ref Display, int, int, int, ref T1) - nameWithType: Glx.SGIX.QueryHyperpipeAttribSGIX(ref Display, int, int, int, ref T1) - fullName: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeAttribSGIX(ref OpenTK.Graphics.Glx.Display, int, int, int, ref T1) + name: QueryHyperpipeAttribSGIX(DisplayPtr, int, int, int, ref T1) + nameWithType: Glx.SGIX.QueryHyperpipeAttribSGIX(DisplayPtr, int, int, int, ref T1) + fullName: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr, int, int, int, ref T1) type: Method source: remote: @@ -2289,7 +1736,7 @@ items: repo: https://github.com/opentk/opentk.git id: QueryHyperpipeAttribSGIX path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 1139 + startLine: 618 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -2301,10 +1748,10 @@ items:
example: [] syntax: - content: 'public static int QueryHyperpipeAttribSGIX(ref Display dpy, int timeSlice, int attrib, int size, ref T1 returnAttribList) where T1 : unmanaged' + content: 'public static int QueryHyperpipeAttribSGIX(DisplayPtr dpy, int timeSlice, int attrib, int size, ref T1 returnAttribList) where T1 : unmanaged' parameters: - id: dpy - type: OpenTK.Graphics.Glx.Display + type: OpenTK.Graphics.Glx.DisplayPtr - id: timeSlice type: System.Int32 - id: attrib @@ -2317,21 +1764,21 @@ items: - id: T1 return: type: System.Int32 - content.vb: Public Shared Function QueryHyperpipeAttribSGIX(Of T1 As Structure)(dpy As Display, timeSlice As Integer, attrib As Integer, size As Integer, returnAttribList As T1) As Integer + content.vb: Public Shared Function QueryHyperpipeAttribSGIX(Of T1 As Structure)(dpy As DisplayPtr, timeSlice As Integer, attrib As Integer, size As Integer, returnAttribList As T1) As Integer overload: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeAttribSGIX* - nameWithType.vb: Glx.SGIX.QueryHyperpipeAttribSGIX(Of T1)(Display, Integer, Integer, Integer, T1) - fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeAttribSGIX(Of T1)(OpenTK.Graphics.Glx.Display, Integer, Integer, Integer, T1) - name.vb: QueryHyperpipeAttribSGIX(Of T1)(Display, Integer, Integer, Integer, T1) -- uid: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeBestAttribSGIX(OpenTK.Graphics.Glx.Display@,System.Int32,System.Int32,System.Int32,System.IntPtr,System.IntPtr) - commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeBestAttribSGIX(OpenTK.Graphics.Glx.Display@,System.Int32,System.Int32,System.Int32,System.IntPtr,System.IntPtr) - id: QueryHyperpipeBestAttribSGIX(OpenTK.Graphics.Glx.Display@,System.Int32,System.Int32,System.Int32,System.IntPtr,System.IntPtr) + nameWithType.vb: Glx.SGIX.QueryHyperpipeAttribSGIX(Of T1)(DisplayPtr, Integer, Integer, Integer, T1) + fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeAttribSGIX(Of T1)(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer, Integer, T1) + name.vb: QueryHyperpipeAttribSGIX(Of T1)(DisplayPtr, Integer, Integer, Integer, T1) +- uid: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeBestAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.IntPtr,System.IntPtr) + commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeBestAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.IntPtr,System.IntPtr) + id: QueryHyperpipeBestAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.IntPtr,System.IntPtr) parent: OpenTK.Graphics.Glx.Glx.SGIX langs: - csharp - vb - name: QueryHyperpipeBestAttribSGIX(ref Display, int, int, int, nint, nint) - nameWithType: Glx.SGIX.QueryHyperpipeBestAttribSGIX(ref Display, int, int, int, nint, nint) - fullName: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeBestAttribSGIX(ref OpenTK.Graphics.Glx.Display, int, int, int, nint, nint) + name: QueryHyperpipeBestAttribSGIX(DisplayPtr, int, int, int, nint, nint) + nameWithType: Glx.SGIX.QueryHyperpipeBestAttribSGIX(DisplayPtr, int, int, int, nint, nint) + fullName: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeBestAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr, int, int, int, nint, nint) type: Method source: remote: @@ -2340,7 +1787,7 @@ items: repo: https://github.com/opentk/opentk.git id: QueryHyperpipeBestAttribSGIX path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 1151 + startLine: 629 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -2352,10 +1799,10 @@ items:
example: [] syntax: - content: public static int QueryHyperpipeBestAttribSGIX(ref Display dpy, int timeSlice, int attrib, int size, nint attribList, nint returnAttribList) + content: public static int QueryHyperpipeBestAttribSGIX(DisplayPtr dpy, int timeSlice, int attrib, int size, nint attribList, nint returnAttribList) parameters: - id: dpy - type: OpenTK.Graphics.Glx.Display + type: OpenTK.Graphics.Glx.DisplayPtr - id: timeSlice type: System.Int32 - id: attrib @@ -2368,21 +1815,21 @@ items: type: System.IntPtr return: type: System.Int32 - content.vb: Public Shared Function QueryHyperpipeBestAttribSGIX(dpy As Display, timeSlice As Integer, attrib As Integer, size As Integer, attribList As IntPtr, returnAttribList As IntPtr) As Integer + content.vb: Public Shared Function QueryHyperpipeBestAttribSGIX(dpy As DisplayPtr, timeSlice As Integer, attrib As Integer, size As Integer, attribList As IntPtr, returnAttribList As IntPtr) As Integer overload: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeBestAttribSGIX* - nameWithType.vb: Glx.SGIX.QueryHyperpipeBestAttribSGIX(Display, Integer, Integer, Integer, IntPtr, IntPtr) - fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeBestAttribSGIX(OpenTK.Graphics.Glx.Display, Integer, Integer, Integer, System.IntPtr, System.IntPtr) - name.vb: QueryHyperpipeBestAttribSGIX(Display, Integer, Integer, Integer, IntPtr, IntPtr) -- uid: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeBestAttribSGIX``2(OpenTK.Graphics.Glx.Display@,System.Int32,System.Int32,System.Int32,``0@,``1@) - commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeBestAttribSGIX``2(OpenTK.Graphics.Glx.Display@,System.Int32,System.Int32,System.Int32,``0@,``1@) - id: QueryHyperpipeBestAttribSGIX``2(OpenTK.Graphics.Glx.Display@,System.Int32,System.Int32,System.Int32,``0@,``1@) + nameWithType.vb: Glx.SGIX.QueryHyperpipeBestAttribSGIX(DisplayPtr, Integer, Integer, Integer, IntPtr, IntPtr) + fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeBestAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer, Integer, System.IntPtr, System.IntPtr) + name.vb: QueryHyperpipeBestAttribSGIX(DisplayPtr, Integer, Integer, Integer, IntPtr, IntPtr) +- uid: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeBestAttribSGIX``2(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,``0@,``1@) + commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeBestAttribSGIX``2(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,``0@,``1@) + id: QueryHyperpipeBestAttribSGIX``2(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,``0@,``1@) parent: OpenTK.Graphics.Glx.Glx.SGIX langs: - csharp - vb - name: QueryHyperpipeBestAttribSGIX(ref Display, int, int, int, ref T1, ref T2) - nameWithType: Glx.SGIX.QueryHyperpipeBestAttribSGIX(ref Display, int, int, int, ref T1, ref T2) - fullName: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeBestAttribSGIX(ref OpenTK.Graphics.Glx.Display, int, int, int, ref T1, ref T2) + name: QueryHyperpipeBestAttribSGIX(DisplayPtr, int, int, int, ref T1, ref T2) + nameWithType: Glx.SGIX.QueryHyperpipeBestAttribSGIX(DisplayPtr, int, int, int, ref T1, ref T2) + fullName: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeBestAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr, int, int, int, ref T1, ref T2) type: Method source: remote: @@ -2391,7 +1838,7 @@ items: repo: https://github.com/opentk/opentk.git id: QueryHyperpipeBestAttribSGIX path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 1163 + startLine: 638 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -2403,10 +1850,10 @@ items:
example: [] syntax: - content: 'public static int QueryHyperpipeBestAttribSGIX(ref Display dpy, int timeSlice, int attrib, int size, ref T1 attribList, ref T2 returnAttribList) where T1 : unmanaged where T2 : unmanaged' + content: 'public static int QueryHyperpipeBestAttribSGIX(DisplayPtr dpy, int timeSlice, int attrib, int size, ref T1 attribList, ref T2 returnAttribList) where T1 : unmanaged where T2 : unmanaged' parameters: - id: dpy - type: OpenTK.Graphics.Glx.Display + type: OpenTK.Graphics.Glx.DisplayPtr - id: timeSlice type: System.Int32 - id: attrib @@ -2422,21 +1869,21 @@ items: - id: T2 return: type: System.Int32 - content.vb: Public Shared Function QueryHyperpipeBestAttribSGIX(Of T1 As Structure, T2 As Structure)(dpy As Display, timeSlice As Integer, attrib As Integer, size As Integer, attribList As T1, returnAttribList As T2) As Integer + content.vb: Public Shared Function QueryHyperpipeBestAttribSGIX(Of T1 As Structure, T2 As Structure)(dpy As DisplayPtr, timeSlice As Integer, attrib As Integer, size As Integer, attribList As T1, returnAttribList As T2) As Integer overload: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeBestAttribSGIX* - nameWithType.vb: Glx.SGIX.QueryHyperpipeBestAttribSGIX(Of T1, T2)(Display, Integer, Integer, Integer, T1, T2) - fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeBestAttribSGIX(Of T1, T2)(OpenTK.Graphics.Glx.Display, Integer, Integer, Integer, T1, T2) - name.vb: QueryHyperpipeBestAttribSGIX(Of T1, T2)(Display, Integer, Integer, Integer, T1, T2) -- uid: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeConfigSGIX(OpenTK.Graphics.Glx.Display@,System.Int32,System.Int32@) - commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeConfigSGIX(OpenTK.Graphics.Glx.Display@,System.Int32,System.Int32@) - id: QueryHyperpipeConfigSGIX(OpenTK.Graphics.Glx.Display@,System.Int32,System.Int32@) + nameWithType.vb: Glx.SGIX.QueryHyperpipeBestAttribSGIX(Of T1, T2)(DisplayPtr, Integer, Integer, Integer, T1, T2) + fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeBestAttribSGIX(Of T1, T2)(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer, Integer, T1, T2) + name.vb: QueryHyperpipeBestAttribSGIX(Of T1, T2)(DisplayPtr, Integer, Integer, Integer, T1, T2) +- uid: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32@) + commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32@) + id: QueryHyperpipeConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32@) parent: OpenTK.Graphics.Glx.Glx.SGIX langs: - csharp - vb - name: QueryHyperpipeConfigSGIX(ref Display, int, ref int) - nameWithType: Glx.SGIX.QueryHyperpipeConfigSGIX(ref Display, int, ref int) - fullName: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeConfigSGIX(ref OpenTK.Graphics.Glx.Display, int, ref int) + name: QueryHyperpipeConfigSGIX(DisplayPtr, int, ref int) + nameWithType: Glx.SGIX.QueryHyperpipeConfigSGIX(DisplayPtr, int, ref int) + fullName: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr, int, ref int) type: Method source: remote: @@ -2445,7 +1892,7 @@ items: repo: https://github.com/opentk/opentk.git id: QueryHyperpipeConfigSGIX path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 1177 + startLine: 651 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -2457,31 +1904,31 @@ items:
example: [] syntax: - content: public static GLXHyperpipeConfigSGIX* QueryHyperpipeConfigSGIX(ref Display dpy, int hpId, ref int npipes) + content: public static GLXHyperpipeConfigSGIX* QueryHyperpipeConfigSGIX(DisplayPtr dpy, int hpId, ref int npipes) parameters: - id: dpy - type: OpenTK.Graphics.Glx.Display + type: OpenTK.Graphics.Glx.DisplayPtr - id: hpId type: System.Int32 - id: npipes type: System.Int32 return: type: OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX* - content.vb: Public Shared Function QueryHyperpipeConfigSGIX(dpy As Display, hpId As Integer, npipes As Integer) As GLXHyperpipeConfigSGIX* + content.vb: Public Shared Function QueryHyperpipeConfigSGIX(dpy As DisplayPtr, hpId As Integer, npipes As Integer) As GLXHyperpipeConfigSGIX* overload: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeConfigSGIX* - nameWithType.vb: Glx.SGIX.QueryHyperpipeConfigSGIX(Display, Integer, Integer) - fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeConfigSGIX(OpenTK.Graphics.Glx.Display, Integer, Integer) - name.vb: QueryHyperpipeConfigSGIX(Display, Integer, Integer) -- uid: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeNetworkSGIX(OpenTK.Graphics.Glx.Display@,System.Int32@) - commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeNetworkSGIX(OpenTK.Graphics.Glx.Display@,System.Int32@) - id: QueryHyperpipeNetworkSGIX(OpenTK.Graphics.Glx.Display@,System.Int32@) + nameWithType.vb: Glx.SGIX.QueryHyperpipeConfigSGIX(DisplayPtr, Integer, Integer) + fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer) + name.vb: QueryHyperpipeConfigSGIX(DisplayPtr, Integer, Integer) +- uid: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeNetworkSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32@) + commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeNetworkSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32@) + id: QueryHyperpipeNetworkSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32@) parent: OpenTK.Graphics.Glx.Glx.SGIX langs: - csharp - vb - name: QueryHyperpipeNetworkSGIX(ref Display, ref int) - nameWithType: Glx.SGIX.QueryHyperpipeNetworkSGIX(ref Display, ref int) - fullName: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeNetworkSGIX(ref OpenTK.Graphics.Glx.Display, ref int) + name: QueryHyperpipeNetworkSGIX(DisplayPtr, ref int) + nameWithType: Glx.SGIX.QueryHyperpipeNetworkSGIX(DisplayPtr, ref int) + fullName: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeNetworkSGIX(OpenTK.Graphics.Glx.DisplayPtr, ref int) type: Method source: remote: @@ -2490,7 +1937,7 @@ items: repo: https://github.com/opentk/opentk.git id: QueryHyperpipeNetworkSGIX path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 1188 + startLine: 661 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -2502,29 +1949,29 @@ items:
example: [] syntax: - content: public static GLXHyperpipeNetworkSGIX* QueryHyperpipeNetworkSGIX(ref Display dpy, ref int npipes) + content: public static GLXHyperpipeNetworkSGIX* QueryHyperpipeNetworkSGIX(DisplayPtr dpy, ref int npipes) parameters: - id: dpy - type: OpenTK.Graphics.Glx.Display + type: OpenTK.Graphics.Glx.DisplayPtr - id: npipes type: System.Int32 return: type: OpenTK.Graphics.Glx.GLXHyperpipeNetworkSGIX* - content.vb: Public Shared Function QueryHyperpipeNetworkSGIX(dpy As Display, npipes As Integer) As GLXHyperpipeNetworkSGIX* + content.vb: Public Shared Function QueryHyperpipeNetworkSGIX(dpy As DisplayPtr, npipes As Integer) As GLXHyperpipeNetworkSGIX* overload: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeNetworkSGIX* - nameWithType.vb: Glx.SGIX.QueryHyperpipeNetworkSGIX(Display, Integer) - fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeNetworkSGIX(OpenTK.Graphics.Glx.Display, Integer) - name.vb: QueryHyperpipeNetworkSGIX(Display, Integer) -- uid: OpenTK.Graphics.Glx.Glx.SGIX.QueryMaxSwapBarriersSGIX(OpenTK.Graphics.Glx.Display@,System.Int32,System.Int32@) - commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.QueryMaxSwapBarriersSGIX(OpenTK.Graphics.Glx.Display@,System.Int32,System.Int32@) - id: QueryMaxSwapBarriersSGIX(OpenTK.Graphics.Glx.Display@,System.Int32,System.Int32@) + nameWithType.vb: Glx.SGIX.QueryHyperpipeNetworkSGIX(DisplayPtr, Integer) + fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeNetworkSGIX(OpenTK.Graphics.Glx.DisplayPtr, Integer) + name.vb: QueryHyperpipeNetworkSGIX(DisplayPtr, Integer) +- uid: OpenTK.Graphics.Glx.Glx.SGIX.QueryMaxSwapBarriersSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32@) + commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.QueryMaxSwapBarriersSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32@) + id: QueryMaxSwapBarriersSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32@) parent: OpenTK.Graphics.Glx.Glx.SGIX langs: - csharp - vb - name: QueryMaxSwapBarriersSGIX(ref Display, int, ref int) - nameWithType: Glx.SGIX.QueryMaxSwapBarriersSGIX(ref Display, int, ref int) - fullName: OpenTK.Graphics.Glx.Glx.SGIX.QueryMaxSwapBarriersSGIX(ref OpenTK.Graphics.Glx.Display, int, ref int) + name: QueryMaxSwapBarriersSGIX(DisplayPtr, int, ref int) + nameWithType: Glx.SGIX.QueryMaxSwapBarriersSGIX(DisplayPtr, int, ref int) + fullName: OpenTK.Graphics.Glx.Glx.SGIX.QueryMaxSwapBarriersSGIX(OpenTK.Graphics.Glx.DisplayPtr, int, ref int) type: Method source: remote: @@ -2533,7 +1980,7 @@ items: repo: https://github.com/opentk/opentk.git id: QueryMaxSwapBarriersSGIX path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 1199 + startLine: 671 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -2545,64 +1992,21 @@ items:
example: [] syntax: - content: public static bool QueryMaxSwapBarriersSGIX(ref Display dpy, int screen, ref int max) + content: public static bool QueryMaxSwapBarriersSGIX(DisplayPtr dpy, int screen, ref int max) parameters: - id: dpy - type: OpenTK.Graphics.Glx.Display + type: OpenTK.Graphics.Glx.DisplayPtr - id: screen type: System.Int32 - id: max type: System.Int32 return: type: System.Boolean - content.vb: Public Shared Function QueryMaxSwapBarriersSGIX(dpy As Display, screen As Integer, max As Integer) As Boolean + content.vb: Public Shared Function QueryMaxSwapBarriersSGIX(dpy As DisplayPtr, screen As Integer, max As Integer) As Boolean overload: OpenTK.Graphics.Glx.Glx.SGIX.QueryMaxSwapBarriersSGIX* - nameWithType.vb: Glx.SGIX.QueryMaxSwapBarriersSGIX(Display, Integer, Integer) - fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.QueryMaxSwapBarriersSGIX(OpenTK.Graphics.Glx.Display, Integer, Integer) - name.vb: QueryMaxSwapBarriersSGIX(Display, Integer, Integer) -- uid: OpenTK.Graphics.Glx.Glx.SGIX.SelectEventSGIX(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXDrawable,System.UInt64) - commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.SelectEventSGIX(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXDrawable,System.UInt64) - id: SelectEventSGIX(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXDrawable,System.UInt64) - parent: OpenTK.Graphics.Glx.Glx.SGIX - langs: - - csharp - - vb - name: SelectEventSGIX(ref Display, GLXDrawable, ulong) - nameWithType: Glx.SGIX.SelectEventSGIX(ref Display, GLXDrawable, ulong) - fullName: OpenTK.Graphics.Glx.Glx.SGIX.SelectEventSGIX(ref OpenTK.Graphics.Glx.Display, OpenTK.Graphics.Glx.GLXDrawable, ulong) - type: Method - source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: SelectEventSGIX - path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 1210 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_SGIX_pbuffer] - - [entry point: glXSelectEventSGIX] - -
- example: [] - syntax: - content: public static void SelectEventSGIX(ref Display dpy, GLXDrawable drawable, ulong mask) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.Display - - id: drawable - type: OpenTK.Graphics.Glx.GLXDrawable - - id: mask - type: System.UInt64 - content.vb: Public Shared Sub SelectEventSGIX(dpy As Display, drawable As GLXDrawable, mask As ULong) - overload: OpenTK.Graphics.Glx.Glx.SGIX.SelectEventSGIX* - nameWithType.vb: Glx.SGIX.SelectEventSGIX(Display, GLXDrawable, ULong) - fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.SelectEventSGIX(OpenTK.Graphics.Glx.Display, OpenTK.Graphics.Glx.GLXDrawable, ULong) - name.vb: SelectEventSGIX(Display, GLXDrawable, ULong) + nameWithType.vb: Glx.SGIX.QueryMaxSwapBarriersSGIX(DisplayPtr, Integer, Integer) + fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.QueryMaxSwapBarriersSGIX(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer) + name.vb: QueryMaxSwapBarriersSGIX(DisplayPtr, Integer, Integer) references: - uid: OpenTK.Graphics.Glx commentId: N:OpenTK.Graphics.Glx @@ -2873,26 +2277,17 @@ references: fullName: System - uid: OpenTK.Graphics.Glx.Glx.SGIX.BindChannelToWindowSGIX* commentId: Overload:OpenTK.Graphics.Glx.Glx.SGIX.BindChannelToWindowSGIX - href: OpenTK.Graphics.Glx.Glx.SGIX.html#OpenTK_Graphics_Glx_Glx_SGIX_BindChannelToWindowSGIX_OpenTK_Graphics_Glx_Display__System_Int32_System_Int32_OpenTK_Graphics_Glx_Window_ + href: OpenTK.Graphics.Glx.Glx.SGIX.html#OpenTK_Graphics_Glx_Glx_SGIX_BindChannelToWindowSGIX_OpenTK_Graphics_Glx_DisplayPtr_System_Int32_System_Int32_OpenTK_Graphics_Glx_Window_ name: BindChannelToWindowSGIX nameWithType: Glx.SGIX.BindChannelToWindowSGIX fullName: OpenTK.Graphics.Glx.Glx.SGIX.BindChannelToWindowSGIX -- uid: OpenTK.Graphics.Glx.Display* - isExternal: true - href: OpenTK.Graphics.Glx.Display.html - name: Display* - nameWithType: Display* - fullName: OpenTK.Graphics.Glx.Display* - spec.csharp: - - uid: OpenTK.Graphics.Glx.Display - name: Display - href: OpenTK.Graphics.Glx.Display.html - - name: '*' - spec.vb: - - uid: OpenTK.Graphics.Glx.Display - name: Display - href: OpenTK.Graphics.Glx.Display.html - - name: '*' +- uid: OpenTK.Graphics.Glx.DisplayPtr + commentId: T:OpenTK.Graphics.Glx.DisplayPtr + parent: OpenTK.Graphics.Glx + href: OpenTK.Graphics.Glx.DisplayPtr.html + name: DisplayPtr + nameWithType: DisplayPtr + fullName: OpenTK.Graphics.Glx.DisplayPtr - uid: System.Int32 commentId: T:System.Int32 parent: System @@ -2913,13 +2308,13 @@ references: fullName: OpenTK.Graphics.Glx.Window - uid: OpenTK.Graphics.Glx.Glx.SGIX.BindHyperpipeSGIX* commentId: Overload:OpenTK.Graphics.Glx.Glx.SGIX.BindHyperpipeSGIX - href: OpenTK.Graphics.Glx.Glx.SGIX.html#OpenTK_Graphics_Glx_Glx_SGIX_BindHyperpipeSGIX_OpenTK_Graphics_Glx_Display__System_Int32_ + href: OpenTK.Graphics.Glx.Glx.SGIX.html#OpenTK_Graphics_Glx_Glx_SGIX_BindHyperpipeSGIX_OpenTK_Graphics_Glx_DisplayPtr_System_Int32_ name: BindHyperpipeSGIX nameWithType: Glx.SGIX.BindHyperpipeSGIX fullName: OpenTK.Graphics.Glx.Glx.SGIX.BindHyperpipeSGIX - uid: OpenTK.Graphics.Glx.Glx.SGIX.BindSwapBarrierSGIX* commentId: Overload:OpenTK.Graphics.Glx.Glx.SGIX.BindSwapBarrierSGIX - href: OpenTK.Graphics.Glx.Glx.SGIX.html#OpenTK_Graphics_Glx_Glx_SGIX_BindSwapBarrierSGIX_OpenTK_Graphics_Glx_Display__OpenTK_Graphics_Glx_GLXDrawable_System_Int32_ + href: OpenTK.Graphics.Glx.Glx.SGIX.html#OpenTK_Graphics_Glx_Glx_SGIX_BindSwapBarrierSGIX_OpenTK_Graphics_Glx_DisplayPtr_OpenTK_Graphics_Glx_GLXDrawable_System_Int32_ name: BindSwapBarrierSGIX nameWithType: Glx.SGIX.BindSwapBarrierSGIX fullName: OpenTK.Graphics.Glx.Glx.SGIX.BindSwapBarrierSGIX @@ -2932,13 +2327,13 @@ references: fullName: OpenTK.Graphics.Glx.GLXDrawable - uid: OpenTK.Graphics.Glx.Glx.SGIX.ChannelRectSGIX* commentId: Overload:OpenTK.Graphics.Glx.Glx.SGIX.ChannelRectSGIX - href: OpenTK.Graphics.Glx.Glx.SGIX.html#OpenTK_Graphics_Glx_Glx_SGIX_ChannelRectSGIX_OpenTK_Graphics_Glx_Display__System_Int32_System_Int32_System_Int32_System_Int32_System_Int32_System_Int32_ + href: OpenTK.Graphics.Glx.Glx.SGIX.html#OpenTK_Graphics_Glx_Glx_SGIX_ChannelRectSGIX_OpenTK_Graphics_Glx_DisplayPtr_System_Int32_System_Int32_System_Int32_System_Int32_System_Int32_System_Int32_ name: ChannelRectSGIX nameWithType: Glx.SGIX.ChannelRectSGIX fullName: OpenTK.Graphics.Glx.Glx.SGIX.ChannelRectSGIX - uid: OpenTK.Graphics.Glx.Glx.SGIX.ChannelRectSyncSGIX* commentId: Overload:OpenTK.Graphics.Glx.Glx.SGIX.ChannelRectSyncSGIX - href: OpenTK.Graphics.Glx.Glx.SGIX.html#OpenTK_Graphics_Glx_Glx_SGIX_ChannelRectSyncSGIX_OpenTK_Graphics_Glx_Display__System_Int32_System_Int32_OpenTK_Graphics_Glx_All_ + href: OpenTK.Graphics.Glx.Glx.SGIX.html#OpenTK_Graphics_Glx_Glx_SGIX_ChannelRectSyncSGIX_OpenTK_Graphics_Glx_DisplayPtr_System_Int32_System_Int32_OpenTK_Graphics_Glx_All_ name: ChannelRectSyncSGIX nameWithType: Glx.SGIX.ChannelRectSyncSGIX fullName: OpenTK.Graphics.Glx.Glx.SGIX.ChannelRectSyncSGIX @@ -2951,7 +2346,7 @@ references: fullName: OpenTK.Graphics.Glx.All - uid: OpenTK.Graphics.Glx.Glx.SGIX.ChooseFBConfigSGIX* commentId: Overload:OpenTK.Graphics.Glx.Glx.SGIX.ChooseFBConfigSGIX - href: OpenTK.Graphics.Glx.Glx.SGIX.html#OpenTK_Graphics_Glx_Glx_SGIX_ChooseFBConfigSGIX_OpenTK_Graphics_Glx_Display__System_Int32_System_Int32__System_Int32__ + href: OpenTK.Graphics.Glx.Glx.SGIX.html#OpenTK_Graphics_Glx_Glx_SGIX_ChooseFBConfigSGIX_OpenTK_Graphics_Glx_DisplayPtr_System_Int32_System_Int32__System_Int32__ name: ChooseFBConfigSGIX nameWithType: Glx.SGIX.ChooseFBConfigSGIX fullName: OpenTK.Graphics.Glx.Glx.SGIX.ChooseFBConfigSGIX @@ -2994,7 +2389,7 @@ references: - name: '*' - uid: OpenTK.Graphics.Glx.Glx.SGIX.CreateContextWithConfigSGIX* commentId: Overload:OpenTK.Graphics.Glx.Glx.SGIX.CreateContextWithConfigSGIX - href: OpenTK.Graphics.Glx.Glx.SGIX.html#OpenTK_Graphics_Glx_Glx_SGIX_CreateContextWithConfigSGIX_OpenTK_Graphics_Glx_Display__OpenTK_Graphics_Glx_GLXFBConfigSGIX_System_Int32_OpenTK_Graphics_Glx_GLXContext_System_Boolean_ + href: OpenTK.Graphics.Glx.Glx.SGIX.html#OpenTK_Graphics_Glx_Glx_SGIX_CreateContextWithConfigSGIX_OpenTK_Graphics_Glx_DisplayPtr_OpenTK_Graphics_Glx_GLXFBConfigSGIX_System_Int32_OpenTK_Graphics_Glx_GLXContext_System_Boolean_ name: CreateContextWithConfigSGIX nameWithType: Glx.SGIX.CreateContextWithConfigSGIX fullName: OpenTK.Graphics.Glx.Glx.SGIX.CreateContextWithConfigSGIX @@ -3025,7 +2420,7 @@ references: name.vb: Boolean - uid: OpenTK.Graphics.Glx.Glx.SGIX.CreateGLXPbufferSGIX* commentId: Overload:OpenTK.Graphics.Glx.Glx.SGIX.CreateGLXPbufferSGIX - href: OpenTK.Graphics.Glx.Glx.SGIX.html#OpenTK_Graphics_Glx_Glx_SGIX_CreateGLXPbufferSGIX_OpenTK_Graphics_Glx_Display__OpenTK_Graphics_Glx_GLXFBConfigSGIX_System_UInt32_System_UInt32_System_Int32__ + href: OpenTK.Graphics.Glx.Glx.SGIX.html#OpenTK_Graphics_Glx_Glx_SGIX_CreateGLXPbufferSGIX_OpenTK_Graphics_Glx_DisplayPtr_OpenTK_Graphics_Glx_GLXFBConfigSGIX_System_UInt32_System_UInt32_System_Int32__ name: CreateGLXPbufferSGIX nameWithType: Glx.SGIX.CreateGLXPbufferSGIX fullName: OpenTK.Graphics.Glx.Glx.SGIX.CreateGLXPbufferSGIX @@ -3049,7 +2444,7 @@ references: fullName: OpenTK.Graphics.Glx.GLXPbufferSGIX - uid: OpenTK.Graphics.Glx.Glx.SGIX.CreateGLXPixmapWithConfigSGIX* commentId: Overload:OpenTK.Graphics.Glx.Glx.SGIX.CreateGLXPixmapWithConfigSGIX - href: OpenTK.Graphics.Glx.Glx.SGIX.html#OpenTK_Graphics_Glx_Glx_SGIX_CreateGLXPixmapWithConfigSGIX_OpenTK_Graphics_Glx_Display__OpenTK_Graphics_Glx_GLXFBConfigSGIX_OpenTK_Graphics_Glx_Pixmap_ + href: OpenTK.Graphics.Glx.Glx.SGIX.html#OpenTK_Graphics_Glx_Glx_SGIX_CreateGLXPixmapWithConfigSGIX_OpenTK_Graphics_Glx_DisplayPtr_OpenTK_Graphics_Glx_GLXFBConfigSGIX_OpenTK_Graphics_Glx_Pixmap_ name: CreateGLXPixmapWithConfigSGIX nameWithType: Glx.SGIX.CreateGLXPixmapWithConfigSGIX fullName: OpenTK.Graphics.Glx.Glx.SGIX.CreateGLXPixmapWithConfigSGIX @@ -3069,47 +2464,38 @@ references: fullName: OpenTK.Graphics.Glx.GLXPixmap - uid: OpenTK.Graphics.Glx.Glx.SGIX.DestroyGLXPbufferSGIX* commentId: Overload:OpenTK.Graphics.Glx.Glx.SGIX.DestroyGLXPbufferSGIX - href: OpenTK.Graphics.Glx.Glx.SGIX.html#OpenTK_Graphics_Glx_Glx_SGIX_DestroyGLXPbufferSGIX_OpenTK_Graphics_Glx_Display__OpenTK_Graphics_Glx_GLXPbufferSGIX_ + href: OpenTK.Graphics.Glx.Glx.SGIX.html#OpenTK_Graphics_Glx_Glx_SGIX_DestroyGLXPbufferSGIX_OpenTK_Graphics_Glx_DisplayPtr_OpenTK_Graphics_Glx_GLXPbufferSGIX_ name: DestroyGLXPbufferSGIX nameWithType: Glx.SGIX.DestroyGLXPbufferSGIX fullName: OpenTK.Graphics.Glx.Glx.SGIX.DestroyGLXPbufferSGIX - uid: OpenTK.Graphics.Glx.Glx.SGIX.DestroyHyperpipeConfigSGIX* commentId: Overload:OpenTK.Graphics.Glx.Glx.SGIX.DestroyHyperpipeConfigSGIX - href: OpenTK.Graphics.Glx.Glx.SGIX.html#OpenTK_Graphics_Glx_Glx_SGIX_DestroyHyperpipeConfigSGIX_OpenTK_Graphics_Glx_Display__System_Int32_ + href: OpenTK.Graphics.Glx.Glx.SGIX.html#OpenTK_Graphics_Glx_Glx_SGIX_DestroyHyperpipeConfigSGIX_OpenTK_Graphics_Glx_DisplayPtr_System_Int32_ name: DestroyHyperpipeConfigSGIX nameWithType: Glx.SGIX.DestroyHyperpipeConfigSGIX fullName: OpenTK.Graphics.Glx.Glx.SGIX.DestroyHyperpipeConfigSGIX - uid: OpenTK.Graphics.Glx.Glx.SGIX.GetFBConfigAttribSGIX* commentId: Overload:OpenTK.Graphics.Glx.Glx.SGIX.GetFBConfigAttribSGIX - href: OpenTK.Graphics.Glx.Glx.SGIX.html#OpenTK_Graphics_Glx_Glx_SGIX_GetFBConfigAttribSGIX_OpenTK_Graphics_Glx_Display__OpenTK_Graphics_Glx_GLXFBConfigSGIX_System_Int32_System_Int32__ + href: OpenTK.Graphics.Glx.Glx.SGIX.html#OpenTK_Graphics_Glx_Glx_SGIX_GetFBConfigAttribSGIX_OpenTK_Graphics_Glx_DisplayPtr_OpenTK_Graphics_Glx_GLXFBConfigSGIX_System_Int32_System_Int32__ name: GetFBConfigAttribSGIX nameWithType: Glx.SGIX.GetFBConfigAttribSGIX fullName: OpenTK.Graphics.Glx.Glx.SGIX.GetFBConfigAttribSGIX - uid: OpenTK.Graphics.Glx.Glx.SGIX.GetFBConfigFromVisualSGIX* commentId: Overload:OpenTK.Graphics.Glx.Glx.SGIX.GetFBConfigFromVisualSGIX - href: OpenTK.Graphics.Glx.Glx.SGIX.html#OpenTK_Graphics_Glx_Glx_SGIX_GetFBConfigFromVisualSGIX_OpenTK_Graphics_Glx_Display__OpenTK_Graphics_Glx_XVisualInfo__ + href: OpenTK.Graphics.Glx.Glx.SGIX.html#OpenTK_Graphics_Glx_Glx_SGIX_GetFBConfigFromVisualSGIX_OpenTK_Graphics_Glx_DisplayPtr_OpenTK_Graphics_Glx_XVisualInfoPtr_ name: GetFBConfigFromVisualSGIX nameWithType: Glx.SGIX.GetFBConfigFromVisualSGIX fullName: OpenTK.Graphics.Glx.Glx.SGIX.GetFBConfigFromVisualSGIX -- uid: OpenTK.Graphics.Glx.XVisualInfo* - isExternal: true - href: OpenTK.Graphics.Glx.XVisualInfo.html - name: XVisualInfo* - nameWithType: XVisualInfo* - fullName: OpenTK.Graphics.Glx.XVisualInfo* - spec.csharp: - - uid: OpenTK.Graphics.Glx.XVisualInfo - name: XVisualInfo - href: OpenTK.Graphics.Glx.XVisualInfo.html - - name: '*' - spec.vb: - - uid: OpenTK.Graphics.Glx.XVisualInfo - name: XVisualInfo - href: OpenTK.Graphics.Glx.XVisualInfo.html - - name: '*' +- uid: OpenTK.Graphics.Glx.XVisualInfoPtr + commentId: T:OpenTK.Graphics.Glx.XVisualInfoPtr + parent: OpenTK.Graphics.Glx + href: OpenTK.Graphics.Glx.XVisualInfoPtr.html + name: XVisualInfoPtr + nameWithType: XVisualInfoPtr + fullName: OpenTK.Graphics.Glx.XVisualInfoPtr - uid: OpenTK.Graphics.Glx.Glx.SGIX.GetSelectedEventSGIX* commentId: Overload:OpenTK.Graphics.Glx.Glx.SGIX.GetSelectedEventSGIX - href: OpenTK.Graphics.Glx.Glx.SGIX.html#OpenTK_Graphics_Glx_Glx_SGIX_GetSelectedEventSGIX_OpenTK_Graphics_Glx_Display__OpenTK_Graphics_Glx_GLXDrawable_System_UInt64__ + href: OpenTK.Graphics.Glx.Glx.SGIX.html#OpenTK_Graphics_Glx_Glx_SGIX_GetSelectedEventSGIX_OpenTK_Graphics_Glx_DisplayPtr_OpenTK_Graphics_Glx_GLXDrawable_System_UInt64__ name: GetSelectedEventSGIX nameWithType: Glx.SGIX.GetSelectedEventSGIX fullName: OpenTK.Graphics.Glx.Glx.SGIX.GetSelectedEventSGIX @@ -3136,13 +2522,13 @@ references: - name: '*' - uid: OpenTK.Graphics.Glx.Glx.SGIX.GetVisualFromFBConfigSGIX* commentId: Overload:OpenTK.Graphics.Glx.Glx.SGIX.GetVisualFromFBConfigSGIX - href: OpenTK.Graphics.Glx.Glx.SGIX.html#OpenTK_Graphics_Glx_Glx_SGIX_GetVisualFromFBConfigSGIX_OpenTK_Graphics_Glx_Display__OpenTK_Graphics_Glx_GLXFBConfigSGIX_ + href: OpenTK.Graphics.Glx.Glx.SGIX.html#OpenTK_Graphics_Glx_Glx_SGIX_GetVisualFromFBConfigSGIX_OpenTK_Graphics_Glx_DisplayPtr_OpenTK_Graphics_Glx_GLXFBConfigSGIX_ name: GetVisualFromFBConfigSGIX nameWithType: Glx.SGIX.GetVisualFromFBConfigSGIX fullName: OpenTK.Graphics.Glx.Glx.SGIX.GetVisualFromFBConfigSGIX - uid: OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeAttribSGIX* commentId: Overload:OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeAttribSGIX - href: OpenTK.Graphics.Glx.Glx.SGIX.html#OpenTK_Graphics_Glx_Glx_SGIX_HyperpipeAttribSGIX_OpenTK_Graphics_Glx_Display__System_Int32_System_Int32_System_Int32_System_Void__ + href: OpenTK.Graphics.Glx.Glx.SGIX.html#OpenTK_Graphics_Glx_Glx_SGIX_HyperpipeAttribSGIX_OpenTK_Graphics_Glx_DisplayPtr_System_Int32_System_Int32_System_Int32_System_Void__ name: HyperpipeAttribSGIX nameWithType: Glx.SGIX.HyperpipeAttribSGIX fullName: OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeAttribSGIX @@ -3169,7 +2555,7 @@ references: - name: '*' - uid: OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeConfigSGIX* commentId: Overload:OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeConfigSGIX - href: OpenTK.Graphics.Glx.Glx.SGIX.html#OpenTK_Graphics_Glx_Glx_SGIX_HyperpipeConfigSGIX_OpenTK_Graphics_Glx_Display__System_Int32_System_Int32_OpenTK_Graphics_Glx_GLXHyperpipeConfigSGIX__System_Int32__ + href: OpenTK.Graphics.Glx.Glx.SGIX.html#OpenTK_Graphics_Glx_Glx_SGIX_HyperpipeConfigSGIX_OpenTK_Graphics_Glx_DisplayPtr_System_Int32_System_Int32_OpenTK_Graphics_Glx_GLXHyperpipeConfigSGIX__System_Int32__ name: HyperpipeConfigSGIX nameWithType: Glx.SGIX.HyperpipeConfigSGIX fullName: OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeConfigSGIX @@ -3191,25 +2577,25 @@ references: - name: '*' - uid: OpenTK.Graphics.Glx.Glx.SGIX.JoinSwapGroupSGIX* commentId: Overload:OpenTK.Graphics.Glx.Glx.SGIX.JoinSwapGroupSGIX - href: OpenTK.Graphics.Glx.Glx.SGIX.html#OpenTK_Graphics_Glx_Glx_SGIX_JoinSwapGroupSGIX_OpenTK_Graphics_Glx_Display__OpenTK_Graphics_Glx_GLXDrawable_OpenTK_Graphics_Glx_GLXDrawable_ + href: OpenTK.Graphics.Glx.Glx.SGIX.html#OpenTK_Graphics_Glx_Glx_SGIX_JoinSwapGroupSGIX_OpenTK_Graphics_Glx_DisplayPtr_OpenTK_Graphics_Glx_GLXDrawable_OpenTK_Graphics_Glx_GLXDrawable_ name: JoinSwapGroupSGIX nameWithType: Glx.SGIX.JoinSwapGroupSGIX fullName: OpenTK.Graphics.Glx.Glx.SGIX.JoinSwapGroupSGIX - uid: OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelDeltasSGIX* commentId: Overload:OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelDeltasSGIX - href: OpenTK.Graphics.Glx.Glx.SGIX.html#OpenTK_Graphics_Glx_Glx_SGIX_QueryChannelDeltasSGIX_OpenTK_Graphics_Glx_Display__System_Int32_System_Int32_System_Int32__System_Int32__System_Int32__System_Int32__ + href: OpenTK.Graphics.Glx.Glx.SGIX.html#OpenTK_Graphics_Glx_Glx_SGIX_QueryChannelDeltasSGIX_OpenTK_Graphics_Glx_DisplayPtr_System_Int32_System_Int32_System_Int32__System_Int32__System_Int32__System_Int32__ name: QueryChannelDeltasSGIX nameWithType: Glx.SGIX.QueryChannelDeltasSGIX fullName: OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelDeltasSGIX - uid: OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelRectSGIX* commentId: Overload:OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelRectSGIX - href: OpenTK.Graphics.Glx.Glx.SGIX.html#OpenTK_Graphics_Glx_Glx_SGIX_QueryChannelRectSGIX_OpenTK_Graphics_Glx_Display__System_Int32_System_Int32_System_Int32__System_Int32__System_Int32__System_Int32__ + href: OpenTK.Graphics.Glx.Glx.SGIX.html#OpenTK_Graphics_Glx_Glx_SGIX_QueryChannelRectSGIX_OpenTK_Graphics_Glx_DisplayPtr_System_Int32_System_Int32_System_Int32__System_Int32__System_Int32__System_Int32__ name: QueryChannelRectSGIX nameWithType: Glx.SGIX.QueryChannelRectSGIX fullName: OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelRectSGIX - uid: OpenTK.Graphics.Glx.Glx.SGIX.QueryGLXPbufferSGIX* commentId: Overload:OpenTK.Graphics.Glx.Glx.SGIX.QueryGLXPbufferSGIX - href: OpenTK.Graphics.Glx.Glx.SGIX.html#OpenTK_Graphics_Glx_Glx_SGIX_QueryGLXPbufferSGIX_OpenTK_Graphics_Glx_Display__OpenTK_Graphics_Glx_GLXPbufferSGIX_System_Int32_System_UInt32__ + href: OpenTK.Graphics.Glx.Glx.SGIX.html#OpenTK_Graphics_Glx_Glx_SGIX_QueryGLXPbufferSGIX_OpenTK_Graphics_Glx_DisplayPtr_OpenTK_Graphics_Glx_GLXPbufferSGIX_System_Int32_System_UInt32__ name: QueryGLXPbufferSGIX nameWithType: Glx.SGIX.QueryGLXPbufferSGIX fullName: OpenTK.Graphics.Glx.Glx.SGIX.QueryGLXPbufferSGIX @@ -3236,25 +2622,25 @@ references: - name: '*' - uid: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeAttribSGIX* commentId: Overload:OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeAttribSGIX - href: OpenTK.Graphics.Glx.Glx.SGIX.html#OpenTK_Graphics_Glx_Glx_SGIX_QueryHyperpipeAttribSGIX_OpenTK_Graphics_Glx_Display__System_Int32_System_Int32_System_Int32_System_Void__ + href: OpenTK.Graphics.Glx.Glx.SGIX.html#OpenTK_Graphics_Glx_Glx_SGIX_QueryHyperpipeAttribSGIX_OpenTK_Graphics_Glx_DisplayPtr_System_Int32_System_Int32_System_Int32_System_Void__ name: QueryHyperpipeAttribSGIX nameWithType: Glx.SGIX.QueryHyperpipeAttribSGIX fullName: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeAttribSGIX - uid: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeBestAttribSGIX* commentId: Overload:OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeBestAttribSGIX - href: OpenTK.Graphics.Glx.Glx.SGIX.html#OpenTK_Graphics_Glx_Glx_SGIX_QueryHyperpipeBestAttribSGIX_OpenTK_Graphics_Glx_Display__System_Int32_System_Int32_System_Int32_System_Void__System_Void__ + href: OpenTK.Graphics.Glx.Glx.SGIX.html#OpenTK_Graphics_Glx_Glx_SGIX_QueryHyperpipeBestAttribSGIX_OpenTK_Graphics_Glx_DisplayPtr_System_Int32_System_Int32_System_Int32_System_Void__System_Void__ name: QueryHyperpipeBestAttribSGIX nameWithType: Glx.SGIX.QueryHyperpipeBestAttribSGIX fullName: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeBestAttribSGIX - uid: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeConfigSGIX* commentId: Overload:OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeConfigSGIX - href: OpenTK.Graphics.Glx.Glx.SGIX.html#OpenTK_Graphics_Glx_Glx_SGIX_QueryHyperpipeConfigSGIX_OpenTK_Graphics_Glx_Display__System_Int32_System_Int32__ + href: OpenTK.Graphics.Glx.Glx.SGIX.html#OpenTK_Graphics_Glx_Glx_SGIX_QueryHyperpipeConfigSGIX_OpenTK_Graphics_Glx_DisplayPtr_System_Int32_System_Int32__ name: QueryHyperpipeConfigSGIX nameWithType: Glx.SGIX.QueryHyperpipeConfigSGIX fullName: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeConfigSGIX - uid: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeNetworkSGIX* commentId: Overload:OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeNetworkSGIX - href: OpenTK.Graphics.Glx.Glx.SGIX.html#OpenTK_Graphics_Glx_Glx_SGIX_QueryHyperpipeNetworkSGIX_OpenTK_Graphics_Glx_Display__System_Int32__ + href: OpenTK.Graphics.Glx.Glx.SGIX.html#OpenTK_Graphics_Glx_Glx_SGIX_QueryHyperpipeNetworkSGIX_OpenTK_Graphics_Glx_DisplayPtr_System_Int32__ name: QueryHyperpipeNetworkSGIX nameWithType: Glx.SGIX.QueryHyperpipeNetworkSGIX fullName: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeNetworkSGIX @@ -3276,13 +2662,13 @@ references: - name: '*' - uid: OpenTK.Graphics.Glx.Glx.SGIX.QueryMaxSwapBarriersSGIX* commentId: Overload:OpenTK.Graphics.Glx.Glx.SGIX.QueryMaxSwapBarriersSGIX - href: OpenTK.Graphics.Glx.Glx.SGIX.html#OpenTK_Graphics_Glx_Glx_SGIX_QueryMaxSwapBarriersSGIX_OpenTK_Graphics_Glx_Display__System_Int32_System_Int32__ + href: OpenTK.Graphics.Glx.Glx.SGIX.html#OpenTK_Graphics_Glx_Glx_SGIX_QueryMaxSwapBarriersSGIX_OpenTK_Graphics_Glx_DisplayPtr_System_Int32_System_Int32__ name: QueryMaxSwapBarriersSGIX nameWithType: Glx.SGIX.QueryMaxSwapBarriersSGIX fullName: OpenTK.Graphics.Glx.Glx.SGIX.QueryMaxSwapBarriersSGIX - uid: OpenTK.Graphics.Glx.Glx.SGIX.SelectEventSGIX* commentId: Overload:OpenTK.Graphics.Glx.Glx.SGIX.SelectEventSGIX - href: OpenTK.Graphics.Glx.Glx.SGIX.html#OpenTK_Graphics_Glx_Glx_SGIX_SelectEventSGIX_OpenTK_Graphics_Glx_Display__OpenTK_Graphics_Glx_GLXDrawable_System_UInt64_ + href: OpenTK.Graphics.Glx.Glx.SGIX.html#OpenTK_Graphics_Glx_Glx_SGIX_SelectEventSGIX_OpenTK_Graphics_Glx_DisplayPtr_OpenTK_Graphics_Glx_GLXDrawable_System_UInt64_ name: SelectEventSGIX nameWithType: Glx.SGIX.SelectEventSGIX fullName: OpenTK.Graphics.Glx.Glx.SGIX.SelectEventSGIX @@ -3297,20 +2683,6 @@ references: nameWithType.vb: ULong fullName.vb: ULong name.vb: ULong -- uid: OpenTK.Graphics.Glx.Display - commentId: T:OpenTK.Graphics.Glx.Display - parent: OpenTK.Graphics.Glx - href: OpenTK.Graphics.Glx.Display.html - name: Display - nameWithType: Display - fullName: OpenTK.Graphics.Glx.Display -- uid: OpenTK.Graphics.Glx.XVisualInfo - commentId: T:OpenTK.Graphics.Glx.XVisualInfo - parent: OpenTK.Graphics.Glx - href: OpenTK.Graphics.Glx.XVisualInfo.html - name: XVisualInfo - nameWithType: XVisualInfo - fullName: OpenTK.Graphics.Glx.XVisualInfo - uid: System.IntPtr commentId: T:System.IntPtr parent: System diff --git a/api/OpenTK.Graphics.Glx.Glx.SUN.yml b/api/OpenTK.Graphics.Glx.Glx.SUN.yml index 2fb29eee..b5ebac13 100644 --- a/api/OpenTK.Graphics.Glx.Glx.SUN.yml +++ b/api/OpenTK.Graphics.Glx.Glx.SUN.yml @@ -5,8 +5,8 @@ items: id: Glx.SUN parent: OpenTK.Graphics.Glx children: - - OpenTK.Graphics.Glx.Glx.SUN.GetTransparentIndexSUN(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.Window,OpenTK.Graphics.Glx.Window,System.UInt64*) - - OpenTK.Graphics.Glx.Glx.SUN.GetTransparentIndexSUN(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.Window,OpenTK.Graphics.Glx.Window,System.UInt64@) + - OpenTK.Graphics.Glx.Glx.SUN.GetTransparentIndexSUN(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.Window,OpenTK.Graphics.Glx.Window,System.UInt64*) + - OpenTK.Graphics.Glx.Glx.SUN.GetTransparentIndexSUN(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.Window,OpenTK.Graphics.Glx.Window,System.UInt64@) langs: - csharp - vb @@ -21,7 +21,7 @@ items: repo: https://github.com/opentk/opentk.git id: SUN path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 1218 + startLine: 681 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -40,16 +40,16 @@ items: - System.Object.MemberwiseClone - System.Object.ReferenceEquals(System.Object,System.Object) - System.Object.ToString -- uid: OpenTK.Graphics.Glx.Glx.SUN.GetTransparentIndexSUN(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.Window,OpenTK.Graphics.Glx.Window,System.UInt64*) - commentId: M:OpenTK.Graphics.Glx.Glx.SUN.GetTransparentIndexSUN(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.Window,OpenTK.Graphics.Glx.Window,System.UInt64*) - id: GetTransparentIndexSUN(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.Window,OpenTK.Graphics.Glx.Window,System.UInt64*) +- uid: OpenTK.Graphics.Glx.Glx.SUN.GetTransparentIndexSUN(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.Window,OpenTK.Graphics.Glx.Window,System.UInt64*) + commentId: M:OpenTK.Graphics.Glx.Glx.SUN.GetTransparentIndexSUN(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.Window,OpenTK.Graphics.Glx.Window,System.UInt64*) + id: GetTransparentIndexSUN(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.Window,OpenTK.Graphics.Glx.Window,System.UInt64*) parent: OpenTK.Graphics.Glx.Glx.SUN langs: - csharp - vb - name: GetTransparentIndexSUN(Display*, Window, Window, ulong*) - nameWithType: Glx.SUN.GetTransparentIndexSUN(Display*, Window, Window, ulong*) - fullName: OpenTK.Graphics.Glx.Glx.SUN.GetTransparentIndexSUN(OpenTK.Graphics.Glx.Display*, OpenTK.Graphics.Glx.Window, OpenTK.Graphics.Glx.Window, ulong*) + name: GetTransparentIndexSUN(DisplayPtr, Window, Window, ulong*) + nameWithType: Glx.SUN.GetTransparentIndexSUN(DisplayPtr, Window, Window, ulong*) + fullName: OpenTK.Graphics.Glx.Glx.SUN.GetTransparentIndexSUN(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.Window, OpenTK.Graphics.Glx.Window, ulong*) type: Method source: remote: @@ -65,10 +65,10 @@ items: summary: '[requires: GLX_SUN_get_transparent_index] [entry point: glXGetTransparentIndexSUN]
' example: [] syntax: - content: public static int GetTransparentIndexSUN(Display* dpy, Window overlay, Window underlay, ulong* pTransparentIndex) + content: public static int GetTransparentIndexSUN(DisplayPtr dpy, Window overlay, Window underlay, ulong* pTransparentIndex) parameters: - id: dpy - type: OpenTK.Graphics.Glx.Display* + type: OpenTK.Graphics.Glx.DisplayPtr - id: overlay type: OpenTK.Graphics.Glx.Window - id: underlay @@ -77,21 +77,21 @@ items: type: System.UInt64* return: type: System.Int32 - content.vb: Public Shared Function GetTransparentIndexSUN(dpy As Display*, overlay As Window, underlay As Window, pTransparentIndex As ULong*) As Integer + content.vb: Public Shared Function GetTransparentIndexSUN(dpy As DisplayPtr, overlay As Window, underlay As Window, pTransparentIndex As ULong*) As Integer overload: OpenTK.Graphics.Glx.Glx.SUN.GetTransparentIndexSUN* - nameWithType.vb: Glx.SUN.GetTransparentIndexSUN(Display*, Window, Window, ULong*) - fullName.vb: OpenTK.Graphics.Glx.Glx.SUN.GetTransparentIndexSUN(OpenTK.Graphics.Glx.Display*, OpenTK.Graphics.Glx.Window, OpenTK.Graphics.Glx.Window, ULong*) - name.vb: GetTransparentIndexSUN(Display*, Window, Window, ULong*) -- uid: OpenTK.Graphics.Glx.Glx.SUN.GetTransparentIndexSUN(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.Window,OpenTK.Graphics.Glx.Window,System.UInt64@) - commentId: M:OpenTK.Graphics.Glx.Glx.SUN.GetTransparentIndexSUN(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.Window,OpenTK.Graphics.Glx.Window,System.UInt64@) - id: GetTransparentIndexSUN(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.Window,OpenTK.Graphics.Glx.Window,System.UInt64@) + nameWithType.vb: Glx.SUN.GetTransparentIndexSUN(DisplayPtr, Window, Window, ULong*) + fullName.vb: OpenTK.Graphics.Glx.Glx.SUN.GetTransparentIndexSUN(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.Window, OpenTK.Graphics.Glx.Window, ULong*) + name.vb: GetTransparentIndexSUN(DisplayPtr, Window, Window, ULong*) +- uid: OpenTK.Graphics.Glx.Glx.SUN.GetTransparentIndexSUN(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.Window,OpenTK.Graphics.Glx.Window,System.UInt64@) + commentId: M:OpenTK.Graphics.Glx.Glx.SUN.GetTransparentIndexSUN(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.Window,OpenTK.Graphics.Glx.Window,System.UInt64@) + id: GetTransparentIndexSUN(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.Window,OpenTK.Graphics.Glx.Window,System.UInt64@) parent: OpenTK.Graphics.Glx.Glx.SUN langs: - csharp - vb - name: GetTransparentIndexSUN(ref Display, Window, Window, ref ulong) - nameWithType: Glx.SUN.GetTransparentIndexSUN(ref Display, Window, Window, ref ulong) - fullName: OpenTK.Graphics.Glx.Glx.SUN.GetTransparentIndexSUN(ref OpenTK.Graphics.Glx.Display, OpenTK.Graphics.Glx.Window, OpenTK.Graphics.Glx.Window, ref ulong) + name: GetTransparentIndexSUN(DisplayPtr, Window, Window, ref ulong) + nameWithType: Glx.SUN.GetTransparentIndexSUN(DisplayPtr, Window, Window, ref ulong) + fullName: OpenTK.Graphics.Glx.Glx.SUN.GetTransparentIndexSUN(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.Window, OpenTK.Graphics.Glx.Window, ref ulong) type: Method source: remote: @@ -100,7 +100,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetTransparentIndexSUN path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 1221 + startLine: 684 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -112,10 +112,10 @@ items:
example: [] syntax: - content: public static int GetTransparentIndexSUN(ref Display dpy, Window overlay, Window underlay, ref ulong pTransparentIndex) + content: public static int GetTransparentIndexSUN(DisplayPtr dpy, Window overlay, Window underlay, ref ulong pTransparentIndex) parameters: - id: dpy - type: OpenTK.Graphics.Glx.Display + type: OpenTK.Graphics.Glx.DisplayPtr - id: overlay type: OpenTK.Graphics.Glx.Window - id: underlay @@ -124,11 +124,11 @@ items: type: System.UInt64 return: type: System.Int32 - content.vb: Public Shared Function GetTransparentIndexSUN(dpy As Display, overlay As Window, underlay As Window, pTransparentIndex As ULong) As Integer + content.vb: Public Shared Function GetTransparentIndexSUN(dpy As DisplayPtr, overlay As Window, underlay As Window, pTransparentIndex As ULong) As Integer overload: OpenTK.Graphics.Glx.Glx.SUN.GetTransparentIndexSUN* - nameWithType.vb: Glx.SUN.GetTransparentIndexSUN(Display, Window, Window, ULong) - fullName.vb: OpenTK.Graphics.Glx.Glx.SUN.GetTransparentIndexSUN(OpenTK.Graphics.Glx.Display, OpenTK.Graphics.Glx.Window, OpenTK.Graphics.Glx.Window, ULong) - name.vb: GetTransparentIndexSUN(Display, Window, Window, ULong) + nameWithType.vb: Glx.SUN.GetTransparentIndexSUN(DisplayPtr, Window, Window, ULong) + fullName.vb: OpenTK.Graphics.Glx.Glx.SUN.GetTransparentIndexSUN(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.Window, OpenTK.Graphics.Glx.Window, ULong) + name.vb: GetTransparentIndexSUN(DisplayPtr, Window, Window, ULong) references: - uid: OpenTK.Graphics.Glx commentId: N:OpenTK.Graphics.Glx @@ -399,26 +399,17 @@ references: fullName: System - uid: OpenTK.Graphics.Glx.Glx.SUN.GetTransparentIndexSUN* commentId: Overload:OpenTK.Graphics.Glx.Glx.SUN.GetTransparentIndexSUN - href: OpenTK.Graphics.Glx.Glx.SUN.html#OpenTK_Graphics_Glx_Glx_SUN_GetTransparentIndexSUN_OpenTK_Graphics_Glx_Display__OpenTK_Graphics_Glx_Window_OpenTK_Graphics_Glx_Window_System_UInt64__ + href: OpenTK.Graphics.Glx.Glx.SUN.html#OpenTK_Graphics_Glx_Glx_SUN_GetTransparentIndexSUN_OpenTK_Graphics_Glx_DisplayPtr_OpenTK_Graphics_Glx_Window_OpenTK_Graphics_Glx_Window_System_UInt64__ name: GetTransparentIndexSUN nameWithType: Glx.SUN.GetTransparentIndexSUN fullName: OpenTK.Graphics.Glx.Glx.SUN.GetTransparentIndexSUN -- uid: OpenTK.Graphics.Glx.Display* - isExternal: true - href: OpenTK.Graphics.Glx.Display.html - name: Display* - nameWithType: Display* - fullName: OpenTK.Graphics.Glx.Display* - spec.csharp: - - uid: OpenTK.Graphics.Glx.Display - name: Display - href: OpenTK.Graphics.Glx.Display.html - - name: '*' - spec.vb: - - uid: OpenTK.Graphics.Glx.Display - name: Display - href: OpenTK.Graphics.Glx.Display.html - - name: '*' +- uid: OpenTK.Graphics.Glx.DisplayPtr + commentId: T:OpenTK.Graphics.Glx.DisplayPtr + parent: OpenTK.Graphics.Glx + href: OpenTK.Graphics.Glx.DisplayPtr.html + name: DisplayPtr + nameWithType: DisplayPtr + fullName: OpenTK.Graphics.Glx.DisplayPtr - uid: OpenTK.Graphics.Glx.Window commentId: T:OpenTK.Graphics.Glx.Window parent: OpenTK.Graphics.Glx @@ -458,13 +449,6 @@ references: nameWithType.vb: Integer fullName.vb: Integer name.vb: Integer -- uid: OpenTK.Graphics.Glx.Display - commentId: T:OpenTK.Graphics.Glx.Display - parent: OpenTK.Graphics.Glx - href: OpenTK.Graphics.Glx.Display.html - name: Display - nameWithType: Display - fullName: OpenTK.Graphics.Glx.Display - uid: System.UInt64 commentId: T:System.UInt64 parent: System diff --git a/api/OpenTK.Graphics.Glx.Glx.yml b/api/OpenTK.Graphics.Glx.Glx.yml index 52735628..6f69fbd9 100644 --- a/api/OpenTK.Graphics.Glx.Glx.yml +++ b/api/OpenTK.Graphics.Glx.Glx.yml @@ -5,74 +5,59 @@ items: id: Glx parent: OpenTK.Graphics.Glx children: - - OpenTK.Graphics.Glx.Glx.ChooseFBConfig(OpenTK.Graphics.Glx.Display*,System.Int32,System.Int32*,System.Int32*) - - OpenTK.Graphics.Glx.Glx.ChooseFBConfig(OpenTK.Graphics.Glx.Display@,System.Int32,System.Int32@,System.Int32@) - - OpenTK.Graphics.Glx.Glx.ChooseVisual(OpenTK.Graphics.Glx.Display*,System.Int32,System.Int32*) - - OpenTK.Graphics.Glx.Glx.ChooseVisual(OpenTK.Graphics.Glx.Display@,System.Int32,System.Int32@) - - OpenTK.Graphics.Glx.Glx.CopyContext(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXContext,OpenTK.Graphics.Glx.GLXContext,System.UInt64) - - OpenTK.Graphics.Glx.Glx.CopyContext(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXContext,OpenTK.Graphics.Glx.GLXContext,System.UInt64) - - OpenTK.Graphics.Glx.Glx.CreateContext(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.XVisualInfo*,OpenTK.Graphics.Glx.GLXContext,System.Boolean) - - OpenTK.Graphics.Glx.Glx.CreateContext(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.XVisualInfo@,OpenTK.Graphics.Glx.GLXContext,System.Boolean) - - OpenTK.Graphics.Glx.Glx.CreateGLXPixmap(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.XVisualInfo*,OpenTK.Graphics.Glx.Pixmap) - - OpenTK.Graphics.Glx.Glx.CreateGLXPixmap(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.XVisualInfo@,OpenTK.Graphics.Glx.Pixmap) - - OpenTK.Graphics.Glx.Glx.CreateNewContext(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXFBConfig,System.Int32,OpenTK.Graphics.Glx.GLXContext,System.Boolean) - - OpenTK.Graphics.Glx.Glx.CreateNewContext(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXFBConfig,System.Int32,OpenTK.Graphics.Glx.GLXContext,System.Boolean) - - OpenTK.Graphics.Glx.Glx.CreatePbuffer(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXFBConfig,System.Int32*) - - OpenTK.Graphics.Glx.Glx.CreatePbuffer(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXFBConfig,System.Int32@) - - OpenTK.Graphics.Glx.Glx.CreatePixmap(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.Pixmap,System.Int32*) - - OpenTK.Graphics.Glx.Glx.CreatePixmap(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.Pixmap,System.Int32@) - - OpenTK.Graphics.Glx.Glx.CreateWindow(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.Window,System.Int32*) - - OpenTK.Graphics.Glx.Glx.CreateWindow(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.Window,System.Int32@) - - OpenTK.Graphics.Glx.Glx.DestroyContext(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXContext) - - OpenTK.Graphics.Glx.Glx.DestroyContext(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXContext) - - OpenTK.Graphics.Glx.Glx.DestroyGLXPixmap(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXPixmap) - - OpenTK.Graphics.Glx.Glx.DestroyGLXPixmap(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXPixmap) - - OpenTK.Graphics.Glx.Glx.DestroyPbuffer(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXPbuffer) - - OpenTK.Graphics.Glx.Glx.DestroyPbuffer(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXPbuffer) - - OpenTK.Graphics.Glx.Glx.DestroyPixmap(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXPixmap) - - OpenTK.Graphics.Glx.Glx.DestroyPixmap(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXPixmap) - - OpenTK.Graphics.Glx.Glx.DestroyWindow(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXWindow) - - OpenTK.Graphics.Glx.Glx.DestroyWindow(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXWindow) - - OpenTK.Graphics.Glx.Glx.GetClientString(OpenTK.Graphics.Glx.Display*,System.Int32) - - OpenTK.Graphics.Glx.Glx.GetClientString(OpenTK.Graphics.Glx.Display@,System.Int32) - - OpenTK.Graphics.Glx.Glx.GetConfig(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.XVisualInfo*,System.Int32,System.Int32*) - - OpenTK.Graphics.Glx.Glx.GetConfig(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.XVisualInfo@,System.Int32,System.Int32@) + - OpenTK.Graphics.Glx.Glx.ChooseFBConfig(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32*,System.Int32*) + - OpenTK.Graphics.Glx.Glx.ChooseFBConfig(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32@,System.Int32@) + - OpenTK.Graphics.Glx.Glx.ChooseVisual(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32*) + - OpenTK.Graphics.Glx.Glx.ChooseVisual(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32@) + - OpenTK.Graphics.Glx.Glx.CopyContext(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext,OpenTK.Graphics.Glx.GLXContext,System.UInt64) + - OpenTK.Graphics.Glx.Glx.CreateContext(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.XVisualInfoPtr,OpenTK.Graphics.Glx.GLXContext,System.Boolean) + - OpenTK.Graphics.Glx.Glx.CreateGLXPixmap(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.XVisualInfoPtr,OpenTK.Graphics.Glx.Pixmap) + - OpenTK.Graphics.Glx.Glx.CreateNewContext(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,System.Int32,OpenTK.Graphics.Glx.GLXContext,System.Boolean) + - OpenTK.Graphics.Glx.Glx.CreatePbuffer(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,System.Int32*) + - OpenTK.Graphics.Glx.Glx.CreatePbuffer(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,System.Int32@) + - OpenTK.Graphics.Glx.Glx.CreatePixmap(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.Pixmap,System.Int32*) + - OpenTK.Graphics.Glx.Glx.CreatePixmap(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.Pixmap,System.Int32@) + - OpenTK.Graphics.Glx.Glx.CreateWindow(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.Window,System.Int32*) + - OpenTK.Graphics.Glx.Glx.CreateWindow(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.Window,System.Int32@) + - OpenTK.Graphics.Glx.Glx.DestroyContext(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext) + - OpenTK.Graphics.Glx.Glx.DestroyGLXPixmap(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXPixmap) + - OpenTK.Graphics.Glx.Glx.DestroyPbuffer(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXPbuffer) + - OpenTK.Graphics.Glx.Glx.DestroyPixmap(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXPixmap) + - OpenTK.Graphics.Glx.Glx.DestroyWindow(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXWindow) + - OpenTK.Graphics.Glx.Glx.GetClientString(OpenTK.Graphics.Glx.DisplayPtr,System.Int32) + - OpenTK.Graphics.Glx.Glx.GetClientString_(OpenTK.Graphics.Glx.DisplayPtr,System.Int32) + - OpenTK.Graphics.Glx.Glx.GetConfig(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.XVisualInfoPtr,System.Int32,System.Int32*) + - OpenTK.Graphics.Glx.Glx.GetConfig(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.XVisualInfoPtr,System.Int32,System.Int32@) - OpenTK.Graphics.Glx.Glx.GetCurrentContext - OpenTK.Graphics.Glx.Glx.GetCurrentDisplay - OpenTK.Graphics.Glx.Glx.GetCurrentDrawable - OpenTK.Graphics.Glx.Glx.GetCurrentReadDrawable - - OpenTK.Graphics.Glx.Glx.GetFBConfig(OpenTK.Graphics.Glx.Display@,System.Int32,System.Int32@) - - OpenTK.Graphics.Glx.Glx.GetFBConfigAttrib(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXFBConfig,System.Int32,System.Int32*) - - OpenTK.Graphics.Glx.Glx.GetFBConfigAttrib(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXFBConfig,System.Int32,System.Int32@) - - OpenTK.Graphics.Glx.Glx.GetFBConfigs(OpenTK.Graphics.Glx.Display*,System.Int32,System.Int32*) + - OpenTK.Graphics.Glx.Glx.GetFBConfig(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32@) + - OpenTK.Graphics.Glx.Glx.GetFBConfigAttrib(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,System.Int32,System.Int32*) + - OpenTK.Graphics.Glx.Glx.GetFBConfigAttrib(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,System.Int32,System.Int32@) + - OpenTK.Graphics.Glx.Glx.GetFBConfigs(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32*) - OpenTK.Graphics.Glx.Glx.GetProcAddress(System.Byte*) - OpenTK.Graphics.Glx.Glx.GetProcAddress(System.Byte@) - - OpenTK.Graphics.Glx.Glx.GetSelectedEvent(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXDrawable,System.UInt64*) - - OpenTK.Graphics.Glx.Glx.GetSelectedEvent(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXDrawable,System.UInt64@) - - OpenTK.Graphics.Glx.Glx.GetVisualFromFBConfig(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXFBConfig) - - OpenTK.Graphics.Glx.Glx.GetVisualFromFBConfig(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXFBConfig) - - OpenTK.Graphics.Glx.Glx.IsDirect(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXContext) - - OpenTK.Graphics.Glx.Glx.IsDirect(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXContext) - - OpenTK.Graphics.Glx.Glx.MakeContextCurrent(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXDrawable,OpenTK.Graphics.Glx.GLXDrawable,OpenTK.Graphics.Glx.GLXContext) - - OpenTK.Graphics.Glx.Glx.MakeContextCurrent(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXDrawable,OpenTK.Graphics.Glx.GLXDrawable,OpenTK.Graphics.Glx.GLXContext) - - OpenTK.Graphics.Glx.Glx.MakeCurrent(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXDrawable,OpenTK.Graphics.Glx.GLXContext) - - OpenTK.Graphics.Glx.Glx.MakeCurrent(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXDrawable,OpenTK.Graphics.Glx.GLXContext) - - OpenTK.Graphics.Glx.Glx.QueryContext(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXContext,System.Int32,System.Int32*) - - OpenTK.Graphics.Glx.Glx.QueryContext(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXContext,System.Int32,System.Int32@) - - OpenTK.Graphics.Glx.Glx.QueryDrawable(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXDrawable,System.Int32,System.UInt32*) - - OpenTK.Graphics.Glx.Glx.QueryDrawable(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXDrawable,System.Int32,System.UInt32@) - - OpenTK.Graphics.Glx.Glx.QueryExtension(OpenTK.Graphics.Glx.Display*,System.Int32*,System.Int32*) - - OpenTK.Graphics.Glx.Glx.QueryExtension(OpenTK.Graphics.Glx.Display@,System.Int32@,System.Int32@) - - OpenTK.Graphics.Glx.Glx.QueryExtensionsString(OpenTK.Graphics.Glx.Display*,System.Int32) - - OpenTK.Graphics.Glx.Glx.QueryExtensionsString(OpenTK.Graphics.Glx.Display@,System.Int32) - - OpenTK.Graphics.Glx.Glx.QueryServerString(OpenTK.Graphics.Glx.Display*,System.Int32,System.Int32) - - OpenTK.Graphics.Glx.Glx.QueryServerString(OpenTK.Graphics.Glx.Display@,System.Int32,System.Int32) - - OpenTK.Graphics.Glx.Glx.QueryVersion(OpenTK.Graphics.Glx.Display*,System.Int32*,System.Int32*) - - OpenTK.Graphics.Glx.Glx.QueryVersion(OpenTK.Graphics.Glx.Display@,System.Int32@,System.Int32@) - - OpenTK.Graphics.Glx.Glx.SelectEvent(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXDrawable,System.UInt64) - - OpenTK.Graphics.Glx.Glx.SelectEvent(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXDrawable,System.UInt64) - - OpenTK.Graphics.Glx.Glx.SwapBuffers(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXDrawable) - - OpenTK.Graphics.Glx.Glx.SwapBuffers(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXDrawable) + - OpenTK.Graphics.Glx.Glx.GetSelectedEvent(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.UInt64*) + - OpenTK.Graphics.Glx.Glx.GetSelectedEvent(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.UInt64@) + - OpenTK.Graphics.Glx.Glx.GetVisualFromFBConfig(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig) + - OpenTK.Graphics.Glx.Glx.IsDirect(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext) + - OpenTK.Graphics.Glx.Glx.MakeContextCurrent(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,OpenTK.Graphics.Glx.GLXDrawable,OpenTK.Graphics.Glx.GLXContext) + - OpenTK.Graphics.Glx.Glx.MakeCurrent(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,OpenTK.Graphics.Glx.GLXContext) + - OpenTK.Graphics.Glx.Glx.QueryContext(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext,System.Int32,System.Int32*) + - OpenTK.Graphics.Glx.Glx.QueryContext(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext,System.Int32,System.Int32@) + - OpenTK.Graphics.Glx.Glx.QueryDrawable(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32,System.UInt32*) + - OpenTK.Graphics.Glx.Glx.QueryDrawable(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32,System.UInt32@) + - OpenTK.Graphics.Glx.Glx.QueryExtension(OpenTK.Graphics.Glx.DisplayPtr,System.Int32*,System.Int32*) + - OpenTK.Graphics.Glx.Glx.QueryExtension(OpenTK.Graphics.Glx.DisplayPtr,System.Int32@,System.Int32@) + - OpenTK.Graphics.Glx.Glx.QueryExtensionsString(OpenTK.Graphics.Glx.DisplayPtr,System.Int32) + - OpenTK.Graphics.Glx.Glx.QueryExtensionsString_(OpenTK.Graphics.Glx.DisplayPtr,System.Int32) + - OpenTK.Graphics.Glx.Glx.QueryServerString(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32) + - OpenTK.Graphics.Glx.Glx.QueryServerString_(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32) + - OpenTK.Graphics.Glx.Glx.QueryVersion(OpenTK.Graphics.Glx.DisplayPtr,System.Int32*,System.Int32*) + - OpenTK.Graphics.Glx.Glx.QueryVersion(OpenTK.Graphics.Glx.DisplayPtr,System.Int32@,System.Int32@) + - OpenTK.Graphics.Glx.Glx.SelectEvent(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.UInt64) + - OpenTK.Graphics.Glx.Glx.SwapBuffers(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable) - OpenTK.Graphics.Glx.Glx.UseXFont(OpenTK.Graphics.Glx.Font,System.Int32,System.Int32,System.Int32) - OpenTK.Graphics.Glx.Glx.WaitGL - OpenTK.Graphics.Glx.Glx.WaitX @@ -107,16 +92,16 @@ items: - System.Object.MemberwiseClone - System.Object.ReferenceEquals(System.Object,System.Object) - System.Object.ToString -- uid: OpenTK.Graphics.Glx.Glx.ChooseFBConfig(OpenTK.Graphics.Glx.Display*,System.Int32,System.Int32*,System.Int32*) - commentId: M:OpenTK.Graphics.Glx.Glx.ChooseFBConfig(OpenTK.Graphics.Glx.Display*,System.Int32,System.Int32*,System.Int32*) - id: ChooseFBConfig(OpenTK.Graphics.Glx.Display*,System.Int32,System.Int32*,System.Int32*) +- uid: OpenTK.Graphics.Glx.Glx.ChooseFBConfig(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32*,System.Int32*) + commentId: M:OpenTK.Graphics.Glx.Glx.ChooseFBConfig(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32*,System.Int32*) + id: ChooseFBConfig(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32*,System.Int32*) parent: OpenTK.Graphics.Glx.Glx langs: - csharp - vb - name: ChooseFBConfig(Display*, int, int*, int*) - nameWithType: Glx.ChooseFBConfig(Display*, int, int*, int*) - fullName: OpenTK.Graphics.Glx.Glx.ChooseFBConfig(OpenTK.Graphics.Glx.Display*, int, int*, int*) + name: ChooseFBConfig(DisplayPtr, int, int*, int*) + nameWithType: Glx.ChooseFBConfig(DisplayPtr, int, int*, int*) + fullName: OpenTK.Graphics.Glx.Glx.ChooseFBConfig(OpenTK.Graphics.Glx.DisplayPtr, int, int*, int*) type: Method source: remote: @@ -132,10 +117,10 @@ items: summary: '[requires: v1.3] [entry point: glXChooseFBConfig]
' example: [] syntax: - content: public static GLXFBConfig* ChooseFBConfig(Display* dpy, int screen, int* attrib_list, int* nelements) + content: public static GLXFBConfig* ChooseFBConfig(DisplayPtr dpy, int screen, int* attrib_list, int* nelements) parameters: - id: dpy - type: OpenTK.Graphics.Glx.Display* + type: OpenTK.Graphics.Glx.DisplayPtr - id: screen type: System.Int32 - id: attrib_list @@ -144,21 +129,21 @@ items: type: System.Int32* return: type: OpenTK.Graphics.Glx.GLXFBConfig* - content.vb: Public Shared Function ChooseFBConfig(dpy As Display*, screen As Integer, attrib_list As Integer*, nelements As Integer*) As GLXFBConfig* + content.vb: Public Shared Function ChooseFBConfig(dpy As DisplayPtr, screen As Integer, attrib_list As Integer*, nelements As Integer*) As GLXFBConfig* overload: OpenTK.Graphics.Glx.Glx.ChooseFBConfig* - nameWithType.vb: Glx.ChooseFBConfig(Display*, Integer, Integer*, Integer*) - fullName.vb: OpenTK.Graphics.Glx.Glx.ChooseFBConfig(OpenTK.Graphics.Glx.Display*, Integer, Integer*, Integer*) - name.vb: ChooseFBConfig(Display*, Integer, Integer*, Integer*) -- uid: OpenTK.Graphics.Glx.Glx.ChooseVisual(OpenTK.Graphics.Glx.Display*,System.Int32,System.Int32*) - commentId: M:OpenTK.Graphics.Glx.Glx.ChooseVisual(OpenTK.Graphics.Glx.Display*,System.Int32,System.Int32*) - id: ChooseVisual(OpenTK.Graphics.Glx.Display*,System.Int32,System.Int32*) + nameWithType.vb: Glx.ChooseFBConfig(DisplayPtr, Integer, Integer*, Integer*) + fullName.vb: OpenTK.Graphics.Glx.Glx.ChooseFBConfig(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer*, Integer*) + name.vb: ChooseFBConfig(DisplayPtr, Integer, Integer*, Integer*) +- uid: OpenTK.Graphics.Glx.Glx.ChooseVisual(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32*) + commentId: M:OpenTK.Graphics.Glx.Glx.ChooseVisual(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32*) + id: ChooseVisual(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32*) parent: OpenTK.Graphics.Glx.Glx langs: - csharp - vb - name: ChooseVisual(Display*, int, int*) - nameWithType: Glx.ChooseVisual(Display*, int, int*) - fullName: OpenTK.Graphics.Glx.Glx.ChooseVisual(OpenTK.Graphics.Glx.Display*, int, int*) + name: ChooseVisual(DisplayPtr, int, int*) + nameWithType: Glx.ChooseVisual(DisplayPtr, int, int*) + fullName: OpenTK.Graphics.Glx.Glx.ChooseVisual(OpenTK.Graphics.Glx.DisplayPtr, int, int*) type: Method source: remote: @@ -174,31 +159,31 @@ items: summary: '[requires: v1.0] [entry point: glXChooseVisual]
' example: [] syntax: - content: public static XVisualInfo* ChooseVisual(Display* dpy, int screen, int* attribList) + content: public static XVisualInfoPtr ChooseVisual(DisplayPtr dpy, int screen, int* attribList) parameters: - id: dpy - type: OpenTK.Graphics.Glx.Display* + type: OpenTK.Graphics.Glx.DisplayPtr - id: screen type: System.Int32 - id: attribList type: System.Int32* return: - type: OpenTK.Graphics.Glx.XVisualInfo* - content.vb: Public Shared Function ChooseVisual(dpy As Display*, screen As Integer, attribList As Integer*) As XVisualInfo* + type: OpenTK.Graphics.Glx.XVisualInfoPtr + content.vb: Public Shared Function ChooseVisual(dpy As DisplayPtr, screen As Integer, attribList As Integer*) As XVisualInfoPtr overload: OpenTK.Graphics.Glx.Glx.ChooseVisual* - nameWithType.vb: Glx.ChooseVisual(Display*, Integer, Integer*) - fullName.vb: OpenTK.Graphics.Glx.Glx.ChooseVisual(OpenTK.Graphics.Glx.Display*, Integer, Integer*) - name.vb: ChooseVisual(Display*, Integer, Integer*) -- uid: OpenTK.Graphics.Glx.Glx.CopyContext(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXContext,OpenTK.Graphics.Glx.GLXContext,System.UInt64) - commentId: M:OpenTK.Graphics.Glx.Glx.CopyContext(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXContext,OpenTK.Graphics.Glx.GLXContext,System.UInt64) - id: CopyContext(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXContext,OpenTK.Graphics.Glx.GLXContext,System.UInt64) + nameWithType.vb: Glx.ChooseVisual(DisplayPtr, Integer, Integer*) + fullName.vb: OpenTK.Graphics.Glx.Glx.ChooseVisual(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer*) + name.vb: ChooseVisual(DisplayPtr, Integer, Integer*) +- uid: OpenTK.Graphics.Glx.Glx.CopyContext(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext,OpenTK.Graphics.Glx.GLXContext,System.UInt64) + commentId: M:OpenTK.Graphics.Glx.Glx.CopyContext(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext,OpenTK.Graphics.Glx.GLXContext,System.UInt64) + id: CopyContext(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext,OpenTK.Graphics.Glx.GLXContext,System.UInt64) parent: OpenTK.Graphics.Glx.Glx langs: - csharp - vb - name: CopyContext(Display*, GLXContext, GLXContext, ulong) - nameWithType: Glx.CopyContext(Display*, GLXContext, GLXContext, ulong) - fullName: OpenTK.Graphics.Glx.Glx.CopyContext(OpenTK.Graphics.Glx.Display*, OpenTK.Graphics.Glx.GLXContext, OpenTK.Graphics.Glx.GLXContext, ulong) + name: CopyContext(DisplayPtr, GLXContext, GLXContext, ulong) + nameWithType: Glx.CopyContext(DisplayPtr, GLXContext, GLXContext, ulong) + fullName: OpenTK.Graphics.Glx.Glx.CopyContext(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXContext, OpenTK.Graphics.Glx.GLXContext, ulong) type: Method source: remote: @@ -214,31 +199,31 @@ items: summary: '[requires: v1.0] [entry point: glXCopyContext]
' example: [] syntax: - content: public static void CopyContext(Display* dpy, GLXContext src, GLXContext dst, ulong mask) + content: public static void CopyContext(DisplayPtr dpy, GLXContext src, GLXContext dst, ulong mask) parameters: - id: dpy - type: OpenTK.Graphics.Glx.Display* + type: OpenTK.Graphics.Glx.DisplayPtr - id: src type: OpenTK.Graphics.Glx.GLXContext - id: dst type: OpenTK.Graphics.Glx.GLXContext - id: mask type: System.UInt64 - content.vb: Public Shared Sub CopyContext(dpy As Display*, src As GLXContext, dst As GLXContext, mask As ULong) + content.vb: Public Shared Sub CopyContext(dpy As DisplayPtr, src As GLXContext, dst As GLXContext, mask As ULong) overload: OpenTK.Graphics.Glx.Glx.CopyContext* - nameWithType.vb: Glx.CopyContext(Display*, GLXContext, GLXContext, ULong) - fullName.vb: OpenTK.Graphics.Glx.Glx.CopyContext(OpenTK.Graphics.Glx.Display*, OpenTK.Graphics.Glx.GLXContext, OpenTK.Graphics.Glx.GLXContext, ULong) - name.vb: CopyContext(Display*, GLXContext, GLXContext, ULong) -- uid: OpenTK.Graphics.Glx.Glx.CreateContext(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.XVisualInfo*,OpenTK.Graphics.Glx.GLXContext,System.Boolean) - commentId: M:OpenTK.Graphics.Glx.Glx.CreateContext(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.XVisualInfo*,OpenTK.Graphics.Glx.GLXContext,System.Boolean) - id: CreateContext(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.XVisualInfo*,OpenTK.Graphics.Glx.GLXContext,System.Boolean) + nameWithType.vb: Glx.CopyContext(DisplayPtr, GLXContext, GLXContext, ULong) + fullName.vb: OpenTK.Graphics.Glx.Glx.CopyContext(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXContext, OpenTK.Graphics.Glx.GLXContext, ULong) + name.vb: CopyContext(DisplayPtr, GLXContext, GLXContext, ULong) +- uid: OpenTK.Graphics.Glx.Glx.CreateContext(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.XVisualInfoPtr,OpenTK.Graphics.Glx.GLXContext,System.Boolean) + commentId: M:OpenTK.Graphics.Glx.Glx.CreateContext(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.XVisualInfoPtr,OpenTK.Graphics.Glx.GLXContext,System.Boolean) + id: CreateContext(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.XVisualInfoPtr,OpenTK.Graphics.Glx.GLXContext,System.Boolean) parent: OpenTK.Graphics.Glx.Glx langs: - csharp - vb - name: CreateContext(Display*, XVisualInfo*, GLXContext, bool) - nameWithType: Glx.CreateContext(Display*, XVisualInfo*, GLXContext, bool) - fullName: OpenTK.Graphics.Glx.Glx.CreateContext(OpenTK.Graphics.Glx.Display*, OpenTK.Graphics.Glx.XVisualInfo*, OpenTK.Graphics.Glx.GLXContext, bool) + name: CreateContext(DisplayPtr, XVisualInfoPtr, GLXContext, bool) + nameWithType: Glx.CreateContext(DisplayPtr, XVisualInfoPtr, GLXContext, bool) + fullName: OpenTK.Graphics.Glx.Glx.CreateContext(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.XVisualInfoPtr, OpenTK.Graphics.Glx.GLXContext, bool) type: Method source: remote: @@ -254,33 +239,33 @@ items: summary: '[requires: v1.0] [entry point: glXCreateContext]
' example: [] syntax: - content: public static GLXContext CreateContext(Display* dpy, XVisualInfo* vis, GLXContext shareList, bool direct) + content: public static GLXContext CreateContext(DisplayPtr dpy, XVisualInfoPtr vis, GLXContext shareList, bool direct) parameters: - id: dpy - type: OpenTK.Graphics.Glx.Display* + type: OpenTK.Graphics.Glx.DisplayPtr - id: vis - type: OpenTK.Graphics.Glx.XVisualInfo* + type: OpenTK.Graphics.Glx.XVisualInfoPtr - id: shareList type: OpenTK.Graphics.Glx.GLXContext - id: direct type: System.Boolean return: type: OpenTK.Graphics.Glx.GLXContext - content.vb: Public Shared Function CreateContext(dpy As Display*, vis As XVisualInfo*, shareList As GLXContext, direct As Boolean) As GLXContext + content.vb: Public Shared Function CreateContext(dpy As DisplayPtr, vis As XVisualInfoPtr, shareList As GLXContext, direct As Boolean) As GLXContext overload: OpenTK.Graphics.Glx.Glx.CreateContext* - nameWithType.vb: Glx.CreateContext(Display*, XVisualInfo*, GLXContext, Boolean) - fullName.vb: OpenTK.Graphics.Glx.Glx.CreateContext(OpenTK.Graphics.Glx.Display*, OpenTK.Graphics.Glx.XVisualInfo*, OpenTK.Graphics.Glx.GLXContext, Boolean) - name.vb: CreateContext(Display*, XVisualInfo*, GLXContext, Boolean) -- uid: OpenTK.Graphics.Glx.Glx.CreateGLXPixmap(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.XVisualInfo*,OpenTK.Graphics.Glx.Pixmap) - commentId: M:OpenTK.Graphics.Glx.Glx.CreateGLXPixmap(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.XVisualInfo*,OpenTK.Graphics.Glx.Pixmap) - id: CreateGLXPixmap(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.XVisualInfo*,OpenTK.Graphics.Glx.Pixmap) + nameWithType.vb: Glx.CreateContext(DisplayPtr, XVisualInfoPtr, GLXContext, Boolean) + fullName.vb: OpenTK.Graphics.Glx.Glx.CreateContext(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.XVisualInfoPtr, OpenTK.Graphics.Glx.GLXContext, Boolean) + name.vb: CreateContext(DisplayPtr, XVisualInfoPtr, GLXContext, Boolean) +- uid: OpenTK.Graphics.Glx.Glx.CreateGLXPixmap(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.XVisualInfoPtr,OpenTK.Graphics.Glx.Pixmap) + commentId: M:OpenTK.Graphics.Glx.Glx.CreateGLXPixmap(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.XVisualInfoPtr,OpenTK.Graphics.Glx.Pixmap) + id: CreateGLXPixmap(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.XVisualInfoPtr,OpenTK.Graphics.Glx.Pixmap) parent: OpenTK.Graphics.Glx.Glx langs: - csharp - vb - name: CreateGLXPixmap(Display*, XVisualInfo*, Pixmap) - nameWithType: Glx.CreateGLXPixmap(Display*, XVisualInfo*, Pixmap) - fullName: OpenTK.Graphics.Glx.Glx.CreateGLXPixmap(OpenTK.Graphics.Glx.Display*, OpenTK.Graphics.Glx.XVisualInfo*, OpenTK.Graphics.Glx.Pixmap) + name: CreateGLXPixmap(DisplayPtr, XVisualInfoPtr, Pixmap) + nameWithType: Glx.CreateGLXPixmap(DisplayPtr, XVisualInfoPtr, Pixmap) + fullName: OpenTK.Graphics.Glx.Glx.CreateGLXPixmap(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.XVisualInfoPtr, OpenTK.Graphics.Glx.Pixmap) type: Method source: remote: @@ -296,28 +281,28 @@ items: summary: '[requires: v1.0] [entry point: glXCreateGLXPixmap]
' example: [] syntax: - content: public static GLXPixmap CreateGLXPixmap(Display* dpy, XVisualInfo* visual, Pixmap pixmap) + content: public static GLXPixmap CreateGLXPixmap(DisplayPtr dpy, XVisualInfoPtr visual, Pixmap pixmap) parameters: - id: dpy - type: OpenTK.Graphics.Glx.Display* + type: OpenTK.Graphics.Glx.DisplayPtr - id: visual - type: OpenTK.Graphics.Glx.XVisualInfo* + type: OpenTK.Graphics.Glx.XVisualInfoPtr - id: pixmap type: OpenTK.Graphics.Glx.Pixmap return: type: OpenTK.Graphics.Glx.GLXPixmap - content.vb: Public Shared Function CreateGLXPixmap(dpy As Display*, visual As XVisualInfo*, pixmap As Pixmap) As GLXPixmap + content.vb: Public Shared Function CreateGLXPixmap(dpy As DisplayPtr, visual As XVisualInfoPtr, pixmap As Pixmap) As GLXPixmap overload: OpenTK.Graphics.Glx.Glx.CreateGLXPixmap* -- uid: OpenTK.Graphics.Glx.Glx.CreateNewContext(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXFBConfig,System.Int32,OpenTK.Graphics.Glx.GLXContext,System.Boolean) - commentId: M:OpenTK.Graphics.Glx.Glx.CreateNewContext(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXFBConfig,System.Int32,OpenTK.Graphics.Glx.GLXContext,System.Boolean) - id: CreateNewContext(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXFBConfig,System.Int32,OpenTK.Graphics.Glx.GLXContext,System.Boolean) +- uid: OpenTK.Graphics.Glx.Glx.CreateNewContext(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,System.Int32,OpenTK.Graphics.Glx.GLXContext,System.Boolean) + commentId: M:OpenTK.Graphics.Glx.Glx.CreateNewContext(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,System.Int32,OpenTK.Graphics.Glx.GLXContext,System.Boolean) + id: CreateNewContext(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,System.Int32,OpenTK.Graphics.Glx.GLXContext,System.Boolean) parent: OpenTK.Graphics.Glx.Glx langs: - csharp - vb - name: CreateNewContext(Display*, GLXFBConfig, int, GLXContext, bool) - nameWithType: Glx.CreateNewContext(Display*, GLXFBConfig, int, GLXContext, bool) - fullName: OpenTK.Graphics.Glx.Glx.CreateNewContext(OpenTK.Graphics.Glx.Display*, OpenTK.Graphics.Glx.GLXFBConfig, int, OpenTK.Graphics.Glx.GLXContext, bool) + name: CreateNewContext(DisplayPtr, GLXFBConfig, int, GLXContext, bool) + nameWithType: Glx.CreateNewContext(DisplayPtr, GLXFBConfig, int, GLXContext, bool) + fullName: OpenTK.Graphics.Glx.Glx.CreateNewContext(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfig, int, OpenTK.Graphics.Glx.GLXContext, bool) type: Method source: remote: @@ -333,10 +318,10 @@ items: summary: '[requires: v1.3] [entry point: glXCreateNewContext]
' example: [] syntax: - content: public static GLXContext CreateNewContext(Display* dpy, GLXFBConfig config, int render_type, GLXContext share_list, bool direct) + content: public static GLXContext CreateNewContext(DisplayPtr dpy, GLXFBConfig config, int render_type, GLXContext share_list, bool direct) parameters: - id: dpy - type: OpenTK.Graphics.Glx.Display* + type: OpenTK.Graphics.Glx.DisplayPtr - id: config type: OpenTK.Graphics.Glx.GLXFBConfig - id: render_type @@ -347,21 +332,21 @@ items: type: System.Boolean return: type: OpenTK.Graphics.Glx.GLXContext - content.vb: Public Shared Function CreateNewContext(dpy As Display*, config As GLXFBConfig, render_type As Integer, share_list As GLXContext, direct As Boolean) As GLXContext + content.vb: Public Shared Function CreateNewContext(dpy As DisplayPtr, config As GLXFBConfig, render_type As Integer, share_list As GLXContext, direct As Boolean) As GLXContext overload: OpenTK.Graphics.Glx.Glx.CreateNewContext* - nameWithType.vb: Glx.CreateNewContext(Display*, GLXFBConfig, Integer, GLXContext, Boolean) - fullName.vb: OpenTK.Graphics.Glx.Glx.CreateNewContext(OpenTK.Graphics.Glx.Display*, OpenTK.Graphics.Glx.GLXFBConfig, Integer, OpenTK.Graphics.Glx.GLXContext, Boolean) - name.vb: CreateNewContext(Display*, GLXFBConfig, Integer, GLXContext, Boolean) -- uid: OpenTK.Graphics.Glx.Glx.CreatePbuffer(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXFBConfig,System.Int32*) - commentId: M:OpenTK.Graphics.Glx.Glx.CreatePbuffer(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXFBConfig,System.Int32*) - id: CreatePbuffer(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXFBConfig,System.Int32*) + nameWithType.vb: Glx.CreateNewContext(DisplayPtr, GLXFBConfig, Integer, GLXContext, Boolean) + fullName.vb: OpenTK.Graphics.Glx.Glx.CreateNewContext(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfig, Integer, OpenTK.Graphics.Glx.GLXContext, Boolean) + name.vb: CreateNewContext(DisplayPtr, GLXFBConfig, Integer, GLXContext, Boolean) +- uid: OpenTK.Graphics.Glx.Glx.CreatePbuffer(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,System.Int32*) + commentId: M:OpenTK.Graphics.Glx.Glx.CreatePbuffer(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,System.Int32*) + id: CreatePbuffer(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,System.Int32*) parent: OpenTK.Graphics.Glx.Glx langs: - csharp - vb - name: CreatePbuffer(Display*, GLXFBConfig, int*) - nameWithType: Glx.CreatePbuffer(Display*, GLXFBConfig, int*) - fullName: OpenTK.Graphics.Glx.Glx.CreatePbuffer(OpenTK.Graphics.Glx.Display*, OpenTK.Graphics.Glx.GLXFBConfig, int*) + name: CreatePbuffer(DisplayPtr, GLXFBConfig, int*) + nameWithType: Glx.CreatePbuffer(DisplayPtr, GLXFBConfig, int*) + fullName: OpenTK.Graphics.Glx.Glx.CreatePbuffer(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfig, int*) type: Method source: remote: @@ -377,31 +362,31 @@ items: summary: '[requires: v1.3] [entry point: glXCreatePbuffer]
' example: [] syntax: - content: public static GLXPbuffer CreatePbuffer(Display* dpy, GLXFBConfig config, int* attrib_list) + content: public static GLXPbuffer CreatePbuffer(DisplayPtr dpy, GLXFBConfig config, int* attrib_list) parameters: - id: dpy - type: OpenTK.Graphics.Glx.Display* + type: OpenTK.Graphics.Glx.DisplayPtr - id: config type: OpenTK.Graphics.Glx.GLXFBConfig - id: attrib_list type: System.Int32* return: type: OpenTK.Graphics.Glx.GLXPbuffer - content.vb: Public Shared Function CreatePbuffer(dpy As Display*, config As GLXFBConfig, attrib_list As Integer*) As GLXPbuffer + content.vb: Public Shared Function CreatePbuffer(dpy As DisplayPtr, config As GLXFBConfig, attrib_list As Integer*) As GLXPbuffer overload: OpenTK.Graphics.Glx.Glx.CreatePbuffer* - nameWithType.vb: Glx.CreatePbuffer(Display*, GLXFBConfig, Integer*) - fullName.vb: OpenTK.Graphics.Glx.Glx.CreatePbuffer(OpenTK.Graphics.Glx.Display*, OpenTK.Graphics.Glx.GLXFBConfig, Integer*) - name.vb: CreatePbuffer(Display*, GLXFBConfig, Integer*) -- uid: OpenTK.Graphics.Glx.Glx.CreatePixmap(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.Pixmap,System.Int32*) - commentId: M:OpenTK.Graphics.Glx.Glx.CreatePixmap(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.Pixmap,System.Int32*) - id: CreatePixmap(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.Pixmap,System.Int32*) + nameWithType.vb: Glx.CreatePbuffer(DisplayPtr, GLXFBConfig, Integer*) + fullName.vb: OpenTK.Graphics.Glx.Glx.CreatePbuffer(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfig, Integer*) + name.vb: CreatePbuffer(DisplayPtr, GLXFBConfig, Integer*) +- uid: OpenTK.Graphics.Glx.Glx.CreatePixmap(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.Pixmap,System.Int32*) + commentId: M:OpenTK.Graphics.Glx.Glx.CreatePixmap(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.Pixmap,System.Int32*) + id: CreatePixmap(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.Pixmap,System.Int32*) parent: OpenTK.Graphics.Glx.Glx langs: - csharp - vb - name: CreatePixmap(Display*, GLXFBConfig, Pixmap, int*) - nameWithType: Glx.CreatePixmap(Display*, GLXFBConfig, Pixmap, int*) - fullName: OpenTK.Graphics.Glx.Glx.CreatePixmap(OpenTK.Graphics.Glx.Display*, OpenTK.Graphics.Glx.GLXFBConfig, OpenTK.Graphics.Glx.Pixmap, int*) + name: CreatePixmap(DisplayPtr, GLXFBConfig, Pixmap, int*) + nameWithType: Glx.CreatePixmap(DisplayPtr, GLXFBConfig, Pixmap, int*) + fullName: OpenTK.Graphics.Glx.Glx.CreatePixmap(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfig, OpenTK.Graphics.Glx.Pixmap, int*) type: Method source: remote: @@ -417,10 +402,10 @@ items: summary: '[requires: v1.3] [entry point: glXCreatePixmap]
' example: [] syntax: - content: public static GLXPixmap CreatePixmap(Display* dpy, GLXFBConfig config, Pixmap pixmap, int* attrib_list) + content: public static GLXPixmap CreatePixmap(DisplayPtr dpy, GLXFBConfig config, Pixmap pixmap, int* attrib_list) parameters: - id: dpy - type: OpenTK.Graphics.Glx.Display* + type: OpenTK.Graphics.Glx.DisplayPtr - id: config type: OpenTK.Graphics.Glx.GLXFBConfig - id: pixmap @@ -429,21 +414,21 @@ items: type: System.Int32* return: type: OpenTK.Graphics.Glx.GLXPixmap - content.vb: Public Shared Function CreatePixmap(dpy As Display*, config As GLXFBConfig, pixmap As Pixmap, attrib_list As Integer*) As GLXPixmap + content.vb: Public Shared Function CreatePixmap(dpy As DisplayPtr, config As GLXFBConfig, pixmap As Pixmap, attrib_list As Integer*) As GLXPixmap overload: OpenTK.Graphics.Glx.Glx.CreatePixmap* - nameWithType.vb: Glx.CreatePixmap(Display*, GLXFBConfig, Pixmap, Integer*) - fullName.vb: OpenTK.Graphics.Glx.Glx.CreatePixmap(OpenTK.Graphics.Glx.Display*, OpenTK.Graphics.Glx.GLXFBConfig, OpenTK.Graphics.Glx.Pixmap, Integer*) - name.vb: CreatePixmap(Display*, GLXFBConfig, Pixmap, Integer*) -- uid: OpenTK.Graphics.Glx.Glx.CreateWindow(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.Window,System.Int32*) - commentId: M:OpenTK.Graphics.Glx.Glx.CreateWindow(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.Window,System.Int32*) - id: CreateWindow(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.Window,System.Int32*) + nameWithType.vb: Glx.CreatePixmap(DisplayPtr, GLXFBConfig, Pixmap, Integer*) + fullName.vb: OpenTK.Graphics.Glx.Glx.CreatePixmap(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfig, OpenTK.Graphics.Glx.Pixmap, Integer*) + name.vb: CreatePixmap(DisplayPtr, GLXFBConfig, Pixmap, Integer*) +- uid: OpenTK.Graphics.Glx.Glx.CreateWindow(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.Window,System.Int32*) + commentId: M:OpenTK.Graphics.Glx.Glx.CreateWindow(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.Window,System.Int32*) + id: CreateWindow(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.Window,System.Int32*) parent: OpenTK.Graphics.Glx.Glx langs: - csharp - vb - name: CreateWindow(Display*, GLXFBConfig, Window, int*) - nameWithType: Glx.CreateWindow(Display*, GLXFBConfig, Window, int*) - fullName: OpenTK.Graphics.Glx.Glx.CreateWindow(OpenTK.Graphics.Glx.Display*, OpenTK.Graphics.Glx.GLXFBConfig, OpenTK.Graphics.Glx.Window, int*) + name: CreateWindow(DisplayPtr, GLXFBConfig, Window, int*) + nameWithType: Glx.CreateWindow(DisplayPtr, GLXFBConfig, Window, int*) + fullName: OpenTK.Graphics.Glx.Glx.CreateWindow(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfig, OpenTK.Graphics.Glx.Window, int*) type: Method source: remote: @@ -459,10 +444,10 @@ items: summary: '[requires: v1.3] [entry point: glXCreateWindow]
' example: [] syntax: - content: public static GLXWindow CreateWindow(Display* dpy, GLXFBConfig config, Window win, int* attrib_list) + content: public static GLXWindow CreateWindow(DisplayPtr dpy, GLXFBConfig config, Window win, int* attrib_list) parameters: - id: dpy - type: OpenTK.Graphics.Glx.Display* + type: OpenTK.Graphics.Glx.DisplayPtr - id: config type: OpenTK.Graphics.Glx.GLXFBConfig - id: win @@ -471,21 +456,21 @@ items: type: System.Int32* return: type: OpenTK.Graphics.Glx.GLXWindow - content.vb: Public Shared Function CreateWindow(dpy As Display*, config As GLXFBConfig, win As Window, attrib_list As Integer*) As GLXWindow + content.vb: Public Shared Function CreateWindow(dpy As DisplayPtr, config As GLXFBConfig, win As Window, attrib_list As Integer*) As GLXWindow overload: OpenTK.Graphics.Glx.Glx.CreateWindow* - nameWithType.vb: Glx.CreateWindow(Display*, GLXFBConfig, Window, Integer*) - fullName.vb: OpenTK.Graphics.Glx.Glx.CreateWindow(OpenTK.Graphics.Glx.Display*, OpenTK.Graphics.Glx.GLXFBConfig, OpenTK.Graphics.Glx.Window, Integer*) - name.vb: CreateWindow(Display*, GLXFBConfig, Window, Integer*) -- uid: OpenTK.Graphics.Glx.Glx.DestroyContext(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXContext) - commentId: M:OpenTK.Graphics.Glx.Glx.DestroyContext(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXContext) - id: DestroyContext(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXContext) + nameWithType.vb: Glx.CreateWindow(DisplayPtr, GLXFBConfig, Window, Integer*) + fullName.vb: OpenTK.Graphics.Glx.Glx.CreateWindow(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfig, OpenTK.Graphics.Glx.Window, Integer*) + name.vb: CreateWindow(DisplayPtr, GLXFBConfig, Window, Integer*) +- uid: OpenTK.Graphics.Glx.Glx.DestroyContext(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext) + commentId: M:OpenTK.Graphics.Glx.Glx.DestroyContext(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext) + id: DestroyContext(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext) parent: OpenTK.Graphics.Glx.Glx langs: - csharp - vb - name: DestroyContext(Display*, GLXContext) - nameWithType: Glx.DestroyContext(Display*, GLXContext) - fullName: OpenTK.Graphics.Glx.Glx.DestroyContext(OpenTK.Graphics.Glx.Display*, OpenTK.Graphics.Glx.GLXContext) + name: DestroyContext(DisplayPtr, GLXContext) + nameWithType: Glx.DestroyContext(DisplayPtr, GLXContext) + fullName: OpenTK.Graphics.Glx.Glx.DestroyContext(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXContext) type: Method source: remote: @@ -501,24 +486,24 @@ items: summary: '[requires: v1.0] [entry point: glXDestroyContext]
' example: [] syntax: - content: public static void DestroyContext(Display* dpy, GLXContext ctx) + content: public static void DestroyContext(DisplayPtr dpy, GLXContext ctx) parameters: - id: dpy - type: OpenTK.Graphics.Glx.Display* + type: OpenTK.Graphics.Glx.DisplayPtr - id: ctx type: OpenTK.Graphics.Glx.GLXContext - content.vb: Public Shared Sub DestroyContext(dpy As Display*, ctx As GLXContext) + content.vb: Public Shared Sub DestroyContext(dpy As DisplayPtr, ctx As GLXContext) overload: OpenTK.Graphics.Glx.Glx.DestroyContext* -- uid: OpenTK.Graphics.Glx.Glx.DestroyGLXPixmap(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXPixmap) - commentId: M:OpenTK.Graphics.Glx.Glx.DestroyGLXPixmap(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXPixmap) - id: DestroyGLXPixmap(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXPixmap) +- uid: OpenTK.Graphics.Glx.Glx.DestroyGLXPixmap(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXPixmap) + commentId: M:OpenTK.Graphics.Glx.Glx.DestroyGLXPixmap(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXPixmap) + id: DestroyGLXPixmap(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXPixmap) parent: OpenTK.Graphics.Glx.Glx langs: - csharp - vb - name: DestroyGLXPixmap(Display*, GLXPixmap) - nameWithType: Glx.DestroyGLXPixmap(Display*, GLXPixmap) - fullName: OpenTK.Graphics.Glx.Glx.DestroyGLXPixmap(OpenTK.Graphics.Glx.Display*, OpenTK.Graphics.Glx.GLXPixmap) + name: DestroyGLXPixmap(DisplayPtr, GLXPixmap) + nameWithType: Glx.DestroyGLXPixmap(DisplayPtr, GLXPixmap) + fullName: OpenTK.Graphics.Glx.Glx.DestroyGLXPixmap(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXPixmap) type: Method source: remote: @@ -534,24 +519,24 @@ items: summary: '[requires: v1.0] [entry point: glXDestroyGLXPixmap]
' example: [] syntax: - content: public static void DestroyGLXPixmap(Display* dpy, GLXPixmap pixmap) + content: public static void DestroyGLXPixmap(DisplayPtr dpy, GLXPixmap pixmap) parameters: - id: dpy - type: OpenTK.Graphics.Glx.Display* + type: OpenTK.Graphics.Glx.DisplayPtr - id: pixmap type: OpenTK.Graphics.Glx.GLXPixmap - content.vb: Public Shared Sub DestroyGLXPixmap(dpy As Display*, pixmap As GLXPixmap) + content.vb: Public Shared Sub DestroyGLXPixmap(dpy As DisplayPtr, pixmap As GLXPixmap) overload: OpenTK.Graphics.Glx.Glx.DestroyGLXPixmap* -- uid: OpenTK.Graphics.Glx.Glx.DestroyPbuffer(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXPbuffer) - commentId: M:OpenTK.Graphics.Glx.Glx.DestroyPbuffer(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXPbuffer) - id: DestroyPbuffer(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXPbuffer) +- uid: OpenTK.Graphics.Glx.Glx.DestroyPbuffer(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXPbuffer) + commentId: M:OpenTK.Graphics.Glx.Glx.DestroyPbuffer(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXPbuffer) + id: DestroyPbuffer(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXPbuffer) parent: OpenTK.Graphics.Glx.Glx langs: - csharp - vb - name: DestroyPbuffer(Display*, GLXPbuffer) - nameWithType: Glx.DestroyPbuffer(Display*, GLXPbuffer) - fullName: OpenTK.Graphics.Glx.Glx.DestroyPbuffer(OpenTK.Graphics.Glx.Display*, OpenTK.Graphics.Glx.GLXPbuffer) + name: DestroyPbuffer(DisplayPtr, GLXPbuffer) + nameWithType: Glx.DestroyPbuffer(DisplayPtr, GLXPbuffer) + fullName: OpenTK.Graphics.Glx.Glx.DestroyPbuffer(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXPbuffer) type: Method source: remote: @@ -567,24 +552,24 @@ items: summary: '[requires: v1.3] [entry point: glXDestroyPbuffer]
' example: [] syntax: - content: public static void DestroyPbuffer(Display* dpy, GLXPbuffer pbuf) + content: public static void DestroyPbuffer(DisplayPtr dpy, GLXPbuffer pbuf) parameters: - id: dpy - type: OpenTK.Graphics.Glx.Display* + type: OpenTK.Graphics.Glx.DisplayPtr - id: pbuf type: OpenTK.Graphics.Glx.GLXPbuffer - content.vb: Public Shared Sub DestroyPbuffer(dpy As Display*, pbuf As GLXPbuffer) + content.vb: Public Shared Sub DestroyPbuffer(dpy As DisplayPtr, pbuf As GLXPbuffer) overload: OpenTK.Graphics.Glx.Glx.DestroyPbuffer* -- uid: OpenTK.Graphics.Glx.Glx.DestroyPixmap(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXPixmap) - commentId: M:OpenTK.Graphics.Glx.Glx.DestroyPixmap(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXPixmap) - id: DestroyPixmap(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXPixmap) +- uid: OpenTK.Graphics.Glx.Glx.DestroyPixmap(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXPixmap) + commentId: M:OpenTK.Graphics.Glx.Glx.DestroyPixmap(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXPixmap) + id: DestroyPixmap(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXPixmap) parent: OpenTK.Graphics.Glx.Glx langs: - csharp - vb - name: DestroyPixmap(Display*, GLXPixmap) - nameWithType: Glx.DestroyPixmap(Display*, GLXPixmap) - fullName: OpenTK.Graphics.Glx.Glx.DestroyPixmap(OpenTK.Graphics.Glx.Display*, OpenTK.Graphics.Glx.GLXPixmap) + name: DestroyPixmap(DisplayPtr, GLXPixmap) + nameWithType: Glx.DestroyPixmap(DisplayPtr, GLXPixmap) + fullName: OpenTK.Graphics.Glx.Glx.DestroyPixmap(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXPixmap) type: Method source: remote: @@ -600,24 +585,24 @@ items: summary: '[requires: v1.3] [entry point: glXDestroyPixmap]
' example: [] syntax: - content: public static void DestroyPixmap(Display* dpy, GLXPixmap pixmap) + content: public static void DestroyPixmap(DisplayPtr dpy, GLXPixmap pixmap) parameters: - id: dpy - type: OpenTK.Graphics.Glx.Display* + type: OpenTK.Graphics.Glx.DisplayPtr - id: pixmap type: OpenTK.Graphics.Glx.GLXPixmap - content.vb: Public Shared Sub DestroyPixmap(dpy As Display*, pixmap As GLXPixmap) + content.vb: Public Shared Sub DestroyPixmap(dpy As DisplayPtr, pixmap As GLXPixmap) overload: OpenTK.Graphics.Glx.Glx.DestroyPixmap* -- uid: OpenTK.Graphics.Glx.Glx.DestroyWindow(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXWindow) - commentId: M:OpenTK.Graphics.Glx.Glx.DestroyWindow(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXWindow) - id: DestroyWindow(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXWindow) +- uid: OpenTK.Graphics.Glx.Glx.DestroyWindow(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXWindow) + commentId: M:OpenTK.Graphics.Glx.Glx.DestroyWindow(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXWindow) + id: DestroyWindow(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXWindow) parent: OpenTK.Graphics.Glx.Glx langs: - csharp - vb - name: DestroyWindow(Display*, GLXWindow) - nameWithType: Glx.DestroyWindow(Display*, GLXWindow) - fullName: OpenTK.Graphics.Glx.Glx.DestroyWindow(OpenTK.Graphics.Glx.Display*, OpenTK.Graphics.Glx.GLXWindow) + name: DestroyWindow(DisplayPtr, GLXWindow) + nameWithType: Glx.DestroyWindow(DisplayPtr, GLXWindow) + fullName: OpenTK.Graphics.Glx.Glx.DestroyWindow(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXWindow) type: Method source: remote: @@ -633,31 +618,31 @@ items: summary: '[requires: v1.3] [entry point: glXDestroyWindow]
' example: [] syntax: - content: public static void DestroyWindow(Display* dpy, GLXWindow win) + content: public static void DestroyWindow(DisplayPtr dpy, GLXWindow win) parameters: - id: dpy - type: OpenTK.Graphics.Glx.Display* + type: OpenTK.Graphics.Glx.DisplayPtr - id: win type: OpenTK.Graphics.Glx.GLXWindow - content.vb: Public Shared Sub DestroyWindow(dpy As Display*, win As GLXWindow) + content.vb: Public Shared Sub DestroyWindow(dpy As DisplayPtr, win As GLXWindow) overload: OpenTK.Graphics.Glx.Glx.DestroyWindow* -- uid: OpenTK.Graphics.Glx.Glx.GetClientString(OpenTK.Graphics.Glx.Display*,System.Int32) - commentId: M:OpenTK.Graphics.Glx.Glx.GetClientString(OpenTK.Graphics.Glx.Display*,System.Int32) - id: GetClientString(OpenTK.Graphics.Glx.Display*,System.Int32) +- uid: OpenTK.Graphics.Glx.Glx.GetClientString_(OpenTK.Graphics.Glx.DisplayPtr,System.Int32) + commentId: M:OpenTK.Graphics.Glx.Glx.GetClientString_(OpenTK.Graphics.Glx.DisplayPtr,System.Int32) + id: GetClientString_(OpenTK.Graphics.Glx.DisplayPtr,System.Int32) parent: OpenTK.Graphics.Glx.Glx langs: - csharp - vb - name: GetClientString(Display*, int) - nameWithType: Glx.GetClientString(Display*, int) - fullName: OpenTK.Graphics.Glx.Glx.GetClientString(OpenTK.Graphics.Glx.Display*, int) + name: GetClientString_(DisplayPtr, int) + nameWithType: Glx.GetClientString_(DisplayPtr, int) + fullName: OpenTK.Graphics.Glx.Glx.GetClientString_(OpenTK.Graphics.Glx.DisplayPtr, int) type: Method source: remote: path: src/OpenTK.Graphics/Glx/GLX.Native.cs branch: pal2-work repo: https://github.com/opentk/opentk.git - id: GetClientString + id: GetClientString_ path: opentk/src/OpenTK.Graphics/Glx/GLX.Native.cs startLine: 54 assemblies: @@ -666,29 +651,29 @@ items: summary: '[requires: v1.1] [entry point: glXGetClientString]
' example: [] syntax: - content: public static byte* GetClientString(Display* dpy, int name) + content: public static byte* GetClientString_(DisplayPtr dpy, int name) parameters: - id: dpy - type: OpenTK.Graphics.Glx.Display* + type: OpenTK.Graphics.Glx.DisplayPtr - id: name type: System.Int32 return: type: System.Byte* - content.vb: Public Shared Function GetClientString(dpy As Display*, name As Integer) As Byte* - overload: OpenTK.Graphics.Glx.Glx.GetClientString* - nameWithType.vb: Glx.GetClientString(Display*, Integer) - fullName.vb: OpenTK.Graphics.Glx.Glx.GetClientString(OpenTK.Graphics.Glx.Display*, Integer) - name.vb: GetClientString(Display*, Integer) -- uid: OpenTK.Graphics.Glx.Glx.GetConfig(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.XVisualInfo*,System.Int32,System.Int32*) - commentId: M:OpenTK.Graphics.Glx.Glx.GetConfig(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.XVisualInfo*,System.Int32,System.Int32*) - id: GetConfig(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.XVisualInfo*,System.Int32,System.Int32*) + content.vb: Public Shared Function GetClientString_(dpy As DisplayPtr, name As Integer) As Byte* + overload: OpenTK.Graphics.Glx.Glx.GetClientString_* + nameWithType.vb: Glx.GetClientString_(DisplayPtr, Integer) + fullName.vb: OpenTK.Graphics.Glx.Glx.GetClientString_(OpenTK.Graphics.Glx.DisplayPtr, Integer) + name.vb: GetClientString_(DisplayPtr, Integer) +- uid: OpenTK.Graphics.Glx.Glx.GetConfig(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.XVisualInfoPtr,System.Int32,System.Int32*) + commentId: M:OpenTK.Graphics.Glx.Glx.GetConfig(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.XVisualInfoPtr,System.Int32,System.Int32*) + id: GetConfig(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.XVisualInfoPtr,System.Int32,System.Int32*) parent: OpenTK.Graphics.Glx.Glx langs: - csharp - vb - name: GetConfig(Display*, XVisualInfo*, int, int*) - nameWithType: Glx.GetConfig(Display*, XVisualInfo*, int, int*) - fullName: OpenTK.Graphics.Glx.Glx.GetConfig(OpenTK.Graphics.Glx.Display*, OpenTK.Graphics.Glx.XVisualInfo*, int, int*) + name: GetConfig(DisplayPtr, XVisualInfoPtr, int, int*) + nameWithType: Glx.GetConfig(DisplayPtr, XVisualInfoPtr, int, int*) + fullName: OpenTK.Graphics.Glx.Glx.GetConfig(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.XVisualInfoPtr, int, int*) type: Method source: remote: @@ -704,23 +689,23 @@ items: summary: '[requires: v1.0] [entry point: glXGetConfig]
' example: [] syntax: - content: public static int GetConfig(Display* dpy, XVisualInfo* visual, int attrib, int* value) + content: public static int GetConfig(DisplayPtr dpy, XVisualInfoPtr visual, int attrib, int* value) parameters: - id: dpy - type: OpenTK.Graphics.Glx.Display* + type: OpenTK.Graphics.Glx.DisplayPtr - id: visual - type: OpenTK.Graphics.Glx.XVisualInfo* + type: OpenTK.Graphics.Glx.XVisualInfoPtr - id: attrib type: System.Int32 - id: value type: System.Int32* return: type: System.Int32 - content.vb: Public Shared Function GetConfig(dpy As Display*, visual As XVisualInfo*, attrib As Integer, value As Integer*) As Integer + content.vb: Public Shared Function GetConfig(dpy As DisplayPtr, visual As XVisualInfoPtr, attrib As Integer, value As Integer*) As Integer overload: OpenTK.Graphics.Glx.Glx.GetConfig* - nameWithType.vb: Glx.GetConfig(Display*, XVisualInfo*, Integer, Integer*) - fullName.vb: OpenTK.Graphics.Glx.Glx.GetConfig(OpenTK.Graphics.Glx.Display*, OpenTK.Graphics.Glx.XVisualInfo*, Integer, Integer*) - name.vb: GetConfig(Display*, XVisualInfo*, Integer, Integer*) + nameWithType.vb: Glx.GetConfig(DisplayPtr, XVisualInfoPtr, Integer, Integer*) + fullName.vb: OpenTK.Graphics.Glx.Glx.GetConfig(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.XVisualInfoPtr, Integer, Integer*) + name.vb: GetConfig(DisplayPtr, XVisualInfoPtr, Integer, Integer*) - uid: OpenTK.Graphics.Glx.Glx.GetCurrentContext commentId: M:OpenTK.Graphics.Glx.Glx.GetCurrentContext id: GetCurrentContext @@ -776,10 +761,10 @@ items: summary: '[requires: v1.2] [entry point: glXGetCurrentDisplay]
' example: [] syntax: - content: public static Display* GetCurrentDisplay() + content: public static DisplayPtr GetCurrentDisplay() return: - type: OpenTK.Graphics.Glx.Display* - content.vb: Public Shared Function GetCurrentDisplay() As Display* + type: OpenTK.Graphics.Glx.DisplayPtr + content.vb: Public Shared Function GetCurrentDisplay() As DisplayPtr overload: OpenTK.Graphics.Glx.Glx.GetCurrentDisplay* - uid: OpenTK.Graphics.Glx.Glx.GetCurrentDrawable commentId: M:OpenTK.Graphics.Glx.Glx.GetCurrentDrawable @@ -841,16 +826,16 @@ items: type: OpenTK.Graphics.Glx.GLXDrawable content.vb: Public Shared Function GetCurrentReadDrawable() As GLXDrawable overload: OpenTK.Graphics.Glx.Glx.GetCurrentReadDrawable* -- uid: OpenTK.Graphics.Glx.Glx.GetFBConfigAttrib(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXFBConfig,System.Int32,System.Int32*) - commentId: M:OpenTK.Graphics.Glx.Glx.GetFBConfigAttrib(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXFBConfig,System.Int32,System.Int32*) - id: GetFBConfigAttrib(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXFBConfig,System.Int32,System.Int32*) +- uid: OpenTK.Graphics.Glx.Glx.GetFBConfigAttrib(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,System.Int32,System.Int32*) + commentId: M:OpenTK.Graphics.Glx.Glx.GetFBConfigAttrib(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,System.Int32,System.Int32*) + id: GetFBConfigAttrib(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,System.Int32,System.Int32*) parent: OpenTK.Graphics.Glx.Glx langs: - csharp - vb - name: GetFBConfigAttrib(Display*, GLXFBConfig, int, int*) - nameWithType: Glx.GetFBConfigAttrib(Display*, GLXFBConfig, int, int*) - fullName: OpenTK.Graphics.Glx.Glx.GetFBConfigAttrib(OpenTK.Graphics.Glx.Display*, OpenTK.Graphics.Glx.GLXFBConfig, int, int*) + name: GetFBConfigAttrib(DisplayPtr, GLXFBConfig, int, int*) + nameWithType: Glx.GetFBConfigAttrib(DisplayPtr, GLXFBConfig, int, int*) + fullName: OpenTK.Graphics.Glx.Glx.GetFBConfigAttrib(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfig, int, int*) type: Method source: remote: @@ -866,10 +851,10 @@ items: summary: '[requires: v1.3] [entry point: glXGetFBConfigAttrib]
' example: [] syntax: - content: public static int GetFBConfigAttrib(Display* dpy, GLXFBConfig config, int attribute, int* value) + content: public static int GetFBConfigAttrib(DisplayPtr dpy, GLXFBConfig config, int attribute, int* value) parameters: - id: dpy - type: OpenTK.Graphics.Glx.Display* + type: OpenTK.Graphics.Glx.DisplayPtr - id: config type: OpenTK.Graphics.Glx.GLXFBConfig - id: attribute @@ -878,21 +863,21 @@ items: type: System.Int32* return: type: System.Int32 - content.vb: Public Shared Function GetFBConfigAttrib(dpy As Display*, config As GLXFBConfig, attribute As Integer, value As Integer*) As Integer + content.vb: Public Shared Function GetFBConfigAttrib(dpy As DisplayPtr, config As GLXFBConfig, attribute As Integer, value As Integer*) As Integer overload: OpenTK.Graphics.Glx.Glx.GetFBConfigAttrib* - nameWithType.vb: Glx.GetFBConfigAttrib(Display*, GLXFBConfig, Integer, Integer*) - fullName.vb: OpenTK.Graphics.Glx.Glx.GetFBConfigAttrib(OpenTK.Graphics.Glx.Display*, OpenTK.Graphics.Glx.GLXFBConfig, Integer, Integer*) - name.vb: GetFBConfigAttrib(Display*, GLXFBConfig, Integer, Integer*) -- uid: OpenTK.Graphics.Glx.Glx.GetFBConfigs(OpenTK.Graphics.Glx.Display*,System.Int32,System.Int32*) - commentId: M:OpenTK.Graphics.Glx.Glx.GetFBConfigs(OpenTK.Graphics.Glx.Display*,System.Int32,System.Int32*) - id: GetFBConfigs(OpenTK.Graphics.Glx.Display*,System.Int32,System.Int32*) + nameWithType.vb: Glx.GetFBConfigAttrib(DisplayPtr, GLXFBConfig, Integer, Integer*) + fullName.vb: OpenTK.Graphics.Glx.Glx.GetFBConfigAttrib(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfig, Integer, Integer*) + name.vb: GetFBConfigAttrib(DisplayPtr, GLXFBConfig, Integer, Integer*) +- uid: OpenTK.Graphics.Glx.Glx.GetFBConfigs(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32*) + commentId: M:OpenTK.Graphics.Glx.Glx.GetFBConfigs(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32*) + id: GetFBConfigs(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32*) parent: OpenTK.Graphics.Glx.Glx langs: - csharp - vb - name: GetFBConfigs(Display*, int, int*) - nameWithType: Glx.GetFBConfigs(Display*, int, int*) - fullName: OpenTK.Graphics.Glx.Glx.GetFBConfigs(OpenTK.Graphics.Glx.Display*, int, int*) + name: GetFBConfigs(DisplayPtr, int, int*) + nameWithType: Glx.GetFBConfigs(DisplayPtr, int, int*) + fullName: OpenTK.Graphics.Glx.Glx.GetFBConfigs(OpenTK.Graphics.Glx.DisplayPtr, int, int*) type: Method source: remote: @@ -908,21 +893,21 @@ items: summary: '[requires: v1.3] [entry point: glXGetFBConfigs]
' example: [] syntax: - content: public static GLXFBConfig* GetFBConfigs(Display* dpy, int screen, int* nelements) + content: public static GLXFBConfig* GetFBConfigs(DisplayPtr dpy, int screen, int* nelements) parameters: - id: dpy - type: OpenTK.Graphics.Glx.Display* + type: OpenTK.Graphics.Glx.DisplayPtr - id: screen type: System.Int32 - id: nelements type: System.Int32* return: type: OpenTK.Graphics.Glx.GLXFBConfig* - content.vb: Public Shared Function GetFBConfigs(dpy As Display*, screen As Integer, nelements As Integer*) As GLXFBConfig* + content.vb: Public Shared Function GetFBConfigs(dpy As DisplayPtr, screen As Integer, nelements As Integer*) As GLXFBConfig* overload: OpenTK.Graphics.Glx.Glx.GetFBConfigs* - nameWithType.vb: Glx.GetFBConfigs(Display*, Integer, Integer*) - fullName.vb: OpenTK.Graphics.Glx.Glx.GetFBConfigs(OpenTK.Graphics.Glx.Display*, Integer, Integer*) - name.vb: GetFBConfigs(Display*, Integer, Integer*) + nameWithType.vb: Glx.GetFBConfigs(DisplayPtr, Integer, Integer*) + fullName.vb: OpenTK.Graphics.Glx.Glx.GetFBConfigs(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer*) + name.vb: GetFBConfigs(DisplayPtr, Integer, Integer*) - uid: OpenTK.Graphics.Glx.Glx.GetProcAddress(System.Byte*) commentId: M:OpenTK.Graphics.Glx.Glx.GetProcAddress(System.Byte*) id: GetProcAddress(System.Byte*) @@ -959,16 +944,16 @@ items: nameWithType.vb: Glx.GetProcAddress(Byte*) fullName.vb: OpenTK.Graphics.Glx.Glx.GetProcAddress(Byte*) name.vb: GetProcAddress(Byte*) -- uid: OpenTK.Graphics.Glx.Glx.GetSelectedEvent(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXDrawable,System.UInt64*) - commentId: M:OpenTK.Graphics.Glx.Glx.GetSelectedEvent(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXDrawable,System.UInt64*) - id: GetSelectedEvent(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXDrawable,System.UInt64*) +- uid: OpenTK.Graphics.Glx.Glx.GetSelectedEvent(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.UInt64*) + commentId: M:OpenTK.Graphics.Glx.Glx.GetSelectedEvent(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.UInt64*) + id: GetSelectedEvent(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.UInt64*) parent: OpenTK.Graphics.Glx.Glx langs: - csharp - vb - name: GetSelectedEvent(Display*, GLXDrawable, ulong*) - nameWithType: Glx.GetSelectedEvent(Display*, GLXDrawable, ulong*) - fullName: OpenTK.Graphics.Glx.Glx.GetSelectedEvent(OpenTK.Graphics.Glx.Display*, OpenTK.Graphics.Glx.GLXDrawable, ulong*) + name: GetSelectedEvent(DisplayPtr, GLXDrawable, ulong*) + nameWithType: Glx.GetSelectedEvent(DisplayPtr, GLXDrawable, ulong*) + fullName: OpenTK.Graphics.Glx.Glx.GetSelectedEvent(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, ulong*) type: Method source: remote: @@ -984,29 +969,29 @@ items: summary: '[requires: v1.3] [entry point: glXGetSelectedEvent]
' example: [] syntax: - content: public static void GetSelectedEvent(Display* dpy, GLXDrawable draw, ulong* event_mask) + content: public static void GetSelectedEvent(DisplayPtr dpy, GLXDrawable draw, ulong* event_mask) parameters: - id: dpy - type: OpenTK.Graphics.Glx.Display* + type: OpenTK.Graphics.Glx.DisplayPtr - id: draw type: OpenTK.Graphics.Glx.GLXDrawable - id: event_mask type: System.UInt64* - content.vb: Public Shared Sub GetSelectedEvent(dpy As Display*, draw As GLXDrawable, event_mask As ULong*) + content.vb: Public Shared Sub GetSelectedEvent(dpy As DisplayPtr, draw As GLXDrawable, event_mask As ULong*) overload: OpenTK.Graphics.Glx.Glx.GetSelectedEvent* - nameWithType.vb: Glx.GetSelectedEvent(Display*, GLXDrawable, ULong*) - fullName.vb: OpenTK.Graphics.Glx.Glx.GetSelectedEvent(OpenTK.Graphics.Glx.Display*, OpenTK.Graphics.Glx.GLXDrawable, ULong*) - name.vb: GetSelectedEvent(Display*, GLXDrawable, ULong*) -- uid: OpenTK.Graphics.Glx.Glx.GetVisualFromFBConfig(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXFBConfig) - commentId: M:OpenTK.Graphics.Glx.Glx.GetVisualFromFBConfig(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXFBConfig) - id: GetVisualFromFBConfig(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXFBConfig) + nameWithType.vb: Glx.GetSelectedEvent(DisplayPtr, GLXDrawable, ULong*) + fullName.vb: OpenTK.Graphics.Glx.Glx.GetSelectedEvent(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, ULong*) + name.vb: GetSelectedEvent(DisplayPtr, GLXDrawable, ULong*) +- uid: OpenTK.Graphics.Glx.Glx.GetVisualFromFBConfig(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig) + commentId: M:OpenTK.Graphics.Glx.Glx.GetVisualFromFBConfig(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig) + id: GetVisualFromFBConfig(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig) parent: OpenTK.Graphics.Glx.Glx langs: - csharp - vb - name: GetVisualFromFBConfig(Display*, GLXFBConfig) - nameWithType: Glx.GetVisualFromFBConfig(Display*, GLXFBConfig) - fullName: OpenTK.Graphics.Glx.Glx.GetVisualFromFBConfig(OpenTK.Graphics.Glx.Display*, OpenTK.Graphics.Glx.GLXFBConfig) + name: GetVisualFromFBConfig(DisplayPtr, GLXFBConfig) + nameWithType: Glx.GetVisualFromFBConfig(DisplayPtr, GLXFBConfig) + fullName: OpenTK.Graphics.Glx.Glx.GetVisualFromFBConfig(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfig) type: Method source: remote: @@ -1022,26 +1007,26 @@ items: summary: '[requires: v1.3] [entry point: glXGetVisualFromFBConfig]
' example: [] syntax: - content: public static XVisualInfo* GetVisualFromFBConfig(Display* dpy, GLXFBConfig config) + content: public static XVisualInfoPtr GetVisualFromFBConfig(DisplayPtr dpy, GLXFBConfig config) parameters: - id: dpy - type: OpenTK.Graphics.Glx.Display* + type: OpenTK.Graphics.Glx.DisplayPtr - id: config type: OpenTK.Graphics.Glx.GLXFBConfig return: - type: OpenTK.Graphics.Glx.XVisualInfo* - content.vb: Public Shared Function GetVisualFromFBConfig(dpy As Display*, config As GLXFBConfig) As XVisualInfo* + type: OpenTK.Graphics.Glx.XVisualInfoPtr + content.vb: Public Shared Function GetVisualFromFBConfig(dpy As DisplayPtr, config As GLXFBConfig) As XVisualInfoPtr overload: OpenTK.Graphics.Glx.Glx.GetVisualFromFBConfig* -- uid: OpenTK.Graphics.Glx.Glx.IsDirect(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXContext) - commentId: M:OpenTK.Graphics.Glx.Glx.IsDirect(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXContext) - id: IsDirect(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXContext) +- uid: OpenTK.Graphics.Glx.Glx.IsDirect(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext) + commentId: M:OpenTK.Graphics.Glx.Glx.IsDirect(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext) + id: IsDirect(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext) parent: OpenTK.Graphics.Glx.Glx langs: - csharp - vb - name: IsDirect(Display*, GLXContext) - nameWithType: Glx.IsDirect(Display*, GLXContext) - fullName: OpenTK.Graphics.Glx.Glx.IsDirect(OpenTK.Graphics.Glx.Display*, OpenTK.Graphics.Glx.GLXContext) + name: IsDirect(DisplayPtr, GLXContext) + nameWithType: Glx.IsDirect(DisplayPtr, GLXContext) + fullName: OpenTK.Graphics.Glx.Glx.IsDirect(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXContext) type: Method source: remote: @@ -1057,26 +1042,26 @@ items: summary: '[requires: v1.0] [entry point: glXIsDirect]
' example: [] syntax: - content: public static bool IsDirect(Display* dpy, GLXContext ctx) + content: public static bool IsDirect(DisplayPtr dpy, GLXContext ctx) parameters: - id: dpy - type: OpenTK.Graphics.Glx.Display* + type: OpenTK.Graphics.Glx.DisplayPtr - id: ctx type: OpenTK.Graphics.Glx.GLXContext return: type: System.Boolean - content.vb: Public Shared Function IsDirect(dpy As Display*, ctx As GLXContext) As Boolean + content.vb: Public Shared Function IsDirect(dpy As DisplayPtr, ctx As GLXContext) As Boolean overload: OpenTK.Graphics.Glx.Glx.IsDirect* -- uid: OpenTK.Graphics.Glx.Glx.MakeContextCurrent(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXDrawable,OpenTK.Graphics.Glx.GLXDrawable,OpenTK.Graphics.Glx.GLXContext) - commentId: M:OpenTK.Graphics.Glx.Glx.MakeContextCurrent(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXDrawable,OpenTK.Graphics.Glx.GLXDrawable,OpenTK.Graphics.Glx.GLXContext) - id: MakeContextCurrent(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXDrawable,OpenTK.Graphics.Glx.GLXDrawable,OpenTK.Graphics.Glx.GLXContext) +- uid: OpenTK.Graphics.Glx.Glx.MakeContextCurrent(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,OpenTK.Graphics.Glx.GLXDrawable,OpenTK.Graphics.Glx.GLXContext) + commentId: M:OpenTK.Graphics.Glx.Glx.MakeContextCurrent(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,OpenTK.Graphics.Glx.GLXDrawable,OpenTK.Graphics.Glx.GLXContext) + id: MakeContextCurrent(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,OpenTK.Graphics.Glx.GLXDrawable,OpenTK.Graphics.Glx.GLXContext) parent: OpenTK.Graphics.Glx.Glx langs: - csharp - vb - name: MakeContextCurrent(Display*, GLXDrawable, GLXDrawable, GLXContext) - nameWithType: Glx.MakeContextCurrent(Display*, GLXDrawable, GLXDrawable, GLXContext) - fullName: OpenTK.Graphics.Glx.Glx.MakeContextCurrent(OpenTK.Graphics.Glx.Display*, OpenTK.Graphics.Glx.GLXDrawable, OpenTK.Graphics.Glx.GLXDrawable, OpenTK.Graphics.Glx.GLXContext) + name: MakeContextCurrent(DisplayPtr, GLXDrawable, GLXDrawable, GLXContext) + nameWithType: Glx.MakeContextCurrent(DisplayPtr, GLXDrawable, GLXDrawable, GLXContext) + fullName: OpenTK.Graphics.Glx.Glx.MakeContextCurrent(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, OpenTK.Graphics.Glx.GLXDrawable, OpenTK.Graphics.Glx.GLXContext) type: Method source: remote: @@ -1092,10 +1077,10 @@ items: summary: '[requires: v1.3] [entry point: glXMakeContextCurrent]
' example: [] syntax: - content: public static bool MakeContextCurrent(Display* dpy, GLXDrawable draw, GLXDrawable read, GLXContext ctx) + content: public static bool MakeContextCurrent(DisplayPtr dpy, GLXDrawable draw, GLXDrawable read, GLXContext ctx) parameters: - id: dpy - type: OpenTK.Graphics.Glx.Display* + type: OpenTK.Graphics.Glx.DisplayPtr - id: draw type: OpenTK.Graphics.Glx.GLXDrawable - id: read @@ -1104,18 +1089,18 @@ items: type: OpenTK.Graphics.Glx.GLXContext return: type: System.Boolean - content.vb: Public Shared Function MakeContextCurrent(dpy As Display*, draw As GLXDrawable, read As GLXDrawable, ctx As GLXContext) As Boolean + content.vb: Public Shared Function MakeContextCurrent(dpy As DisplayPtr, draw As GLXDrawable, read As GLXDrawable, ctx As GLXContext) As Boolean overload: OpenTK.Graphics.Glx.Glx.MakeContextCurrent* -- uid: OpenTK.Graphics.Glx.Glx.MakeCurrent(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXDrawable,OpenTK.Graphics.Glx.GLXContext) - commentId: M:OpenTK.Graphics.Glx.Glx.MakeCurrent(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXDrawable,OpenTK.Graphics.Glx.GLXContext) - id: MakeCurrent(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXDrawable,OpenTK.Graphics.Glx.GLXContext) +- uid: OpenTK.Graphics.Glx.Glx.MakeCurrent(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,OpenTK.Graphics.Glx.GLXContext) + commentId: M:OpenTK.Graphics.Glx.Glx.MakeCurrent(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,OpenTK.Graphics.Glx.GLXContext) + id: MakeCurrent(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,OpenTK.Graphics.Glx.GLXContext) parent: OpenTK.Graphics.Glx.Glx langs: - csharp - vb - name: MakeCurrent(Display*, GLXDrawable, GLXContext) - nameWithType: Glx.MakeCurrent(Display*, GLXDrawable, GLXContext) - fullName: OpenTK.Graphics.Glx.Glx.MakeCurrent(OpenTK.Graphics.Glx.Display*, OpenTK.Graphics.Glx.GLXDrawable, OpenTK.Graphics.Glx.GLXContext) + name: MakeCurrent(DisplayPtr, GLXDrawable, GLXContext) + nameWithType: Glx.MakeCurrent(DisplayPtr, GLXDrawable, GLXContext) + fullName: OpenTK.Graphics.Glx.Glx.MakeCurrent(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, OpenTK.Graphics.Glx.GLXContext) type: Method source: remote: @@ -1131,28 +1116,28 @@ items: summary: '[requires: v1.0] [entry point: glXMakeCurrent]
' example: [] syntax: - content: public static bool MakeCurrent(Display* dpy, GLXDrawable drawable, GLXContext ctx) + content: public static bool MakeCurrent(DisplayPtr dpy, GLXDrawable drawable, GLXContext ctx) parameters: - id: dpy - type: OpenTK.Graphics.Glx.Display* + type: OpenTK.Graphics.Glx.DisplayPtr - id: drawable type: OpenTK.Graphics.Glx.GLXDrawable - id: ctx type: OpenTK.Graphics.Glx.GLXContext return: type: System.Boolean - content.vb: Public Shared Function MakeCurrent(dpy As Display*, drawable As GLXDrawable, ctx As GLXContext) As Boolean + content.vb: Public Shared Function MakeCurrent(dpy As DisplayPtr, drawable As GLXDrawable, ctx As GLXContext) As Boolean overload: OpenTK.Graphics.Glx.Glx.MakeCurrent* -- uid: OpenTK.Graphics.Glx.Glx.QueryContext(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXContext,System.Int32,System.Int32*) - commentId: M:OpenTK.Graphics.Glx.Glx.QueryContext(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXContext,System.Int32,System.Int32*) - id: QueryContext(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXContext,System.Int32,System.Int32*) +- uid: OpenTK.Graphics.Glx.Glx.QueryContext(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext,System.Int32,System.Int32*) + commentId: M:OpenTK.Graphics.Glx.Glx.QueryContext(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext,System.Int32,System.Int32*) + id: QueryContext(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext,System.Int32,System.Int32*) parent: OpenTK.Graphics.Glx.Glx langs: - csharp - vb - name: QueryContext(Display*, GLXContext, int, int*) - nameWithType: Glx.QueryContext(Display*, GLXContext, int, int*) - fullName: OpenTK.Graphics.Glx.Glx.QueryContext(OpenTK.Graphics.Glx.Display*, OpenTK.Graphics.Glx.GLXContext, int, int*) + name: QueryContext(DisplayPtr, GLXContext, int, int*) + nameWithType: Glx.QueryContext(DisplayPtr, GLXContext, int, int*) + fullName: OpenTK.Graphics.Glx.Glx.QueryContext(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXContext, int, int*) type: Method source: remote: @@ -1168,10 +1153,10 @@ items: summary: '[requires: v1.3] [entry point: glXQueryContext]
' example: [] syntax: - content: public static int QueryContext(Display* dpy, GLXContext ctx, int attribute, int* value) + content: public static int QueryContext(DisplayPtr dpy, GLXContext ctx, int attribute, int* value) parameters: - id: dpy - type: OpenTK.Graphics.Glx.Display* + type: OpenTK.Graphics.Glx.DisplayPtr - id: ctx type: OpenTK.Graphics.Glx.GLXContext - id: attribute @@ -1180,21 +1165,21 @@ items: type: System.Int32* return: type: System.Int32 - content.vb: Public Shared Function QueryContext(dpy As Display*, ctx As GLXContext, attribute As Integer, value As Integer*) As Integer + content.vb: Public Shared Function QueryContext(dpy As DisplayPtr, ctx As GLXContext, attribute As Integer, value As Integer*) As Integer overload: OpenTK.Graphics.Glx.Glx.QueryContext* - nameWithType.vb: Glx.QueryContext(Display*, GLXContext, Integer, Integer*) - fullName.vb: OpenTK.Graphics.Glx.Glx.QueryContext(OpenTK.Graphics.Glx.Display*, OpenTK.Graphics.Glx.GLXContext, Integer, Integer*) - name.vb: QueryContext(Display*, GLXContext, Integer, Integer*) -- uid: OpenTK.Graphics.Glx.Glx.QueryDrawable(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXDrawable,System.Int32,System.UInt32*) - commentId: M:OpenTK.Graphics.Glx.Glx.QueryDrawable(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXDrawable,System.Int32,System.UInt32*) - id: QueryDrawable(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXDrawable,System.Int32,System.UInt32*) + nameWithType.vb: Glx.QueryContext(DisplayPtr, GLXContext, Integer, Integer*) + fullName.vb: OpenTK.Graphics.Glx.Glx.QueryContext(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXContext, Integer, Integer*) + name.vb: QueryContext(DisplayPtr, GLXContext, Integer, Integer*) +- uid: OpenTK.Graphics.Glx.Glx.QueryDrawable(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32,System.UInt32*) + commentId: M:OpenTK.Graphics.Glx.Glx.QueryDrawable(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32,System.UInt32*) + id: QueryDrawable(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32,System.UInt32*) parent: OpenTK.Graphics.Glx.Glx langs: - csharp - vb - name: QueryDrawable(Display*, GLXDrawable, int, uint*) - nameWithType: Glx.QueryDrawable(Display*, GLXDrawable, int, uint*) - fullName: OpenTK.Graphics.Glx.Glx.QueryDrawable(OpenTK.Graphics.Glx.Display*, OpenTK.Graphics.Glx.GLXDrawable, int, uint*) + name: QueryDrawable(DisplayPtr, GLXDrawable, int, uint*) + nameWithType: Glx.QueryDrawable(DisplayPtr, GLXDrawable, int, uint*) + fullName: OpenTK.Graphics.Glx.Glx.QueryDrawable(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, int, uint*) type: Method source: remote: @@ -1210,31 +1195,31 @@ items: summary: '[requires: v1.3] [entry point: glXQueryDrawable]
' example: [] syntax: - content: public static void QueryDrawable(Display* dpy, GLXDrawable draw, int attribute, uint* value) + content: public static void QueryDrawable(DisplayPtr dpy, GLXDrawable draw, int attribute, uint* value) parameters: - id: dpy - type: OpenTK.Graphics.Glx.Display* + type: OpenTK.Graphics.Glx.DisplayPtr - id: draw type: OpenTK.Graphics.Glx.GLXDrawable - id: attribute type: System.Int32 - id: value type: System.UInt32* - content.vb: Public Shared Sub QueryDrawable(dpy As Display*, draw As GLXDrawable, attribute As Integer, value As UInteger*) + content.vb: Public Shared Sub QueryDrawable(dpy As DisplayPtr, draw As GLXDrawable, attribute As Integer, value As UInteger*) overload: OpenTK.Graphics.Glx.Glx.QueryDrawable* - nameWithType.vb: Glx.QueryDrawable(Display*, GLXDrawable, Integer, UInteger*) - fullName.vb: OpenTK.Graphics.Glx.Glx.QueryDrawable(OpenTK.Graphics.Glx.Display*, OpenTK.Graphics.Glx.GLXDrawable, Integer, UInteger*) - name.vb: QueryDrawable(Display*, GLXDrawable, Integer, UInteger*) -- uid: OpenTK.Graphics.Glx.Glx.QueryExtension(OpenTK.Graphics.Glx.Display*,System.Int32*,System.Int32*) - commentId: M:OpenTK.Graphics.Glx.Glx.QueryExtension(OpenTK.Graphics.Glx.Display*,System.Int32*,System.Int32*) - id: QueryExtension(OpenTK.Graphics.Glx.Display*,System.Int32*,System.Int32*) + nameWithType.vb: Glx.QueryDrawable(DisplayPtr, GLXDrawable, Integer, UInteger*) + fullName.vb: OpenTK.Graphics.Glx.Glx.QueryDrawable(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, Integer, UInteger*) + name.vb: QueryDrawable(DisplayPtr, GLXDrawable, Integer, UInteger*) +- uid: OpenTK.Graphics.Glx.Glx.QueryExtension(OpenTK.Graphics.Glx.DisplayPtr,System.Int32*,System.Int32*) + commentId: M:OpenTK.Graphics.Glx.Glx.QueryExtension(OpenTK.Graphics.Glx.DisplayPtr,System.Int32*,System.Int32*) + id: QueryExtension(OpenTK.Graphics.Glx.DisplayPtr,System.Int32*,System.Int32*) parent: OpenTK.Graphics.Glx.Glx langs: - csharp - vb - name: QueryExtension(Display*, int*, int*) - nameWithType: Glx.QueryExtension(Display*, int*, int*) - fullName: OpenTK.Graphics.Glx.Glx.QueryExtension(OpenTK.Graphics.Glx.Display*, int*, int*) + name: QueryExtension(DisplayPtr, int*, int*) + nameWithType: Glx.QueryExtension(DisplayPtr, int*, int*) + fullName: OpenTK.Graphics.Glx.Glx.QueryExtension(OpenTK.Graphics.Glx.DisplayPtr, int*, int*) type: Method source: remote: @@ -1250,38 +1235,38 @@ items: summary: '[requires: v1.0] [entry point: glXQueryExtension]
' example: [] syntax: - content: public static bool QueryExtension(Display* dpy, int* errorb, int* @event) + content: public static bool QueryExtension(DisplayPtr dpy, int* errorb, int* @event) parameters: - id: dpy - type: OpenTK.Graphics.Glx.Display* + type: OpenTK.Graphics.Glx.DisplayPtr - id: errorb type: System.Int32* - id: event type: System.Int32* return: type: System.Boolean - content.vb: Public Shared Function QueryExtension(dpy As Display*, errorb As Integer*, [event] As Integer*) As Boolean + content.vb: Public Shared Function QueryExtension(dpy As DisplayPtr, errorb As Integer*, [event] As Integer*) As Boolean overload: OpenTK.Graphics.Glx.Glx.QueryExtension* - nameWithType.vb: Glx.QueryExtension(Display*, Integer*, Integer*) - fullName.vb: OpenTK.Graphics.Glx.Glx.QueryExtension(OpenTK.Graphics.Glx.Display*, Integer*, Integer*) - name.vb: QueryExtension(Display*, Integer*, Integer*) -- uid: OpenTK.Graphics.Glx.Glx.QueryExtensionsString(OpenTK.Graphics.Glx.Display*,System.Int32) - commentId: M:OpenTK.Graphics.Glx.Glx.QueryExtensionsString(OpenTK.Graphics.Glx.Display*,System.Int32) - id: QueryExtensionsString(OpenTK.Graphics.Glx.Display*,System.Int32) + nameWithType.vb: Glx.QueryExtension(DisplayPtr, Integer*, Integer*) + fullName.vb: OpenTK.Graphics.Glx.Glx.QueryExtension(OpenTK.Graphics.Glx.DisplayPtr, Integer*, Integer*) + name.vb: QueryExtension(DisplayPtr, Integer*, Integer*) +- uid: OpenTK.Graphics.Glx.Glx.QueryExtensionsString_(OpenTK.Graphics.Glx.DisplayPtr,System.Int32) + commentId: M:OpenTK.Graphics.Glx.Glx.QueryExtensionsString_(OpenTK.Graphics.Glx.DisplayPtr,System.Int32) + id: QueryExtensionsString_(OpenTK.Graphics.Glx.DisplayPtr,System.Int32) parent: OpenTK.Graphics.Glx.Glx langs: - csharp - vb - name: QueryExtensionsString(Display*, int) - nameWithType: Glx.QueryExtensionsString(Display*, int) - fullName: OpenTK.Graphics.Glx.Glx.QueryExtensionsString(OpenTK.Graphics.Glx.Display*, int) + name: QueryExtensionsString_(DisplayPtr, int) + nameWithType: Glx.QueryExtensionsString_(DisplayPtr, int) + fullName: OpenTK.Graphics.Glx.Glx.QueryExtensionsString_(OpenTK.Graphics.Glx.DisplayPtr, int) type: Method source: remote: path: src/OpenTK.Graphics/Glx/GLX.Native.cs branch: pal2-work repo: https://github.com/opentk/opentk.git - id: QueryExtensionsString + id: QueryExtensionsString_ path: opentk/src/OpenTK.Graphics/Glx/GLX.Native.cs startLine: 105 assemblies: @@ -1290,36 +1275,36 @@ items: summary: '[requires: v1.1] [entry point: glXQueryExtensionsString]
' example: [] syntax: - content: public static byte* QueryExtensionsString(Display* dpy, int screen) + content: public static byte* QueryExtensionsString_(DisplayPtr dpy, int screen) parameters: - id: dpy - type: OpenTK.Graphics.Glx.Display* + type: OpenTK.Graphics.Glx.DisplayPtr - id: screen type: System.Int32 return: type: System.Byte* - content.vb: Public Shared Function QueryExtensionsString(dpy As Display*, screen As Integer) As Byte* - overload: OpenTK.Graphics.Glx.Glx.QueryExtensionsString* - nameWithType.vb: Glx.QueryExtensionsString(Display*, Integer) - fullName.vb: OpenTK.Graphics.Glx.Glx.QueryExtensionsString(OpenTK.Graphics.Glx.Display*, Integer) - name.vb: QueryExtensionsString(Display*, Integer) -- uid: OpenTK.Graphics.Glx.Glx.QueryServerString(OpenTK.Graphics.Glx.Display*,System.Int32,System.Int32) - commentId: M:OpenTK.Graphics.Glx.Glx.QueryServerString(OpenTK.Graphics.Glx.Display*,System.Int32,System.Int32) - id: QueryServerString(OpenTK.Graphics.Glx.Display*,System.Int32,System.Int32) + content.vb: Public Shared Function QueryExtensionsString_(dpy As DisplayPtr, screen As Integer) As Byte* + overload: OpenTK.Graphics.Glx.Glx.QueryExtensionsString_* + nameWithType.vb: Glx.QueryExtensionsString_(DisplayPtr, Integer) + fullName.vb: OpenTK.Graphics.Glx.Glx.QueryExtensionsString_(OpenTK.Graphics.Glx.DisplayPtr, Integer) + name.vb: QueryExtensionsString_(DisplayPtr, Integer) +- uid: OpenTK.Graphics.Glx.Glx.QueryServerString_(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32) + commentId: M:OpenTK.Graphics.Glx.Glx.QueryServerString_(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32) + id: QueryServerString_(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32) parent: OpenTK.Graphics.Glx.Glx langs: - csharp - vb - name: QueryServerString(Display*, int, int) - nameWithType: Glx.QueryServerString(Display*, int, int) - fullName: OpenTK.Graphics.Glx.Glx.QueryServerString(OpenTK.Graphics.Glx.Display*, int, int) + name: QueryServerString_(DisplayPtr, int, int) + nameWithType: Glx.QueryServerString_(DisplayPtr, int, int) + fullName: OpenTK.Graphics.Glx.Glx.QueryServerString_(OpenTK.Graphics.Glx.DisplayPtr, int, int) type: Method source: remote: path: src/OpenTK.Graphics/Glx/GLX.Native.cs branch: pal2-work repo: https://github.com/opentk/opentk.git - id: QueryServerString + id: QueryServerString_ path: opentk/src/OpenTK.Graphics/Glx/GLX.Native.cs startLine: 108 assemblies: @@ -1328,31 +1313,31 @@ items: summary: '[requires: v1.1] [entry point: glXQueryServerString]
' example: [] syntax: - content: public static byte* QueryServerString(Display* dpy, int screen, int name) + content: public static byte* QueryServerString_(DisplayPtr dpy, int screen, int name) parameters: - id: dpy - type: OpenTK.Graphics.Glx.Display* + type: OpenTK.Graphics.Glx.DisplayPtr - id: screen type: System.Int32 - id: name type: System.Int32 return: type: System.Byte* - content.vb: Public Shared Function QueryServerString(dpy As Display*, screen As Integer, name As Integer) As Byte* - overload: OpenTK.Graphics.Glx.Glx.QueryServerString* - nameWithType.vb: Glx.QueryServerString(Display*, Integer, Integer) - fullName.vb: OpenTK.Graphics.Glx.Glx.QueryServerString(OpenTK.Graphics.Glx.Display*, Integer, Integer) - name.vb: QueryServerString(Display*, Integer, Integer) -- uid: OpenTK.Graphics.Glx.Glx.QueryVersion(OpenTK.Graphics.Glx.Display*,System.Int32*,System.Int32*) - commentId: M:OpenTK.Graphics.Glx.Glx.QueryVersion(OpenTK.Graphics.Glx.Display*,System.Int32*,System.Int32*) - id: QueryVersion(OpenTK.Graphics.Glx.Display*,System.Int32*,System.Int32*) + content.vb: Public Shared Function QueryServerString_(dpy As DisplayPtr, screen As Integer, name As Integer) As Byte* + overload: OpenTK.Graphics.Glx.Glx.QueryServerString_* + nameWithType.vb: Glx.QueryServerString_(DisplayPtr, Integer, Integer) + fullName.vb: OpenTK.Graphics.Glx.Glx.QueryServerString_(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer) + name.vb: QueryServerString_(DisplayPtr, Integer, Integer) +- uid: OpenTK.Graphics.Glx.Glx.QueryVersion(OpenTK.Graphics.Glx.DisplayPtr,System.Int32*,System.Int32*) + commentId: M:OpenTK.Graphics.Glx.Glx.QueryVersion(OpenTK.Graphics.Glx.DisplayPtr,System.Int32*,System.Int32*) + id: QueryVersion(OpenTK.Graphics.Glx.DisplayPtr,System.Int32*,System.Int32*) parent: OpenTK.Graphics.Glx.Glx langs: - csharp - vb - name: QueryVersion(Display*, int*, int*) - nameWithType: Glx.QueryVersion(Display*, int*, int*) - fullName: OpenTK.Graphics.Glx.Glx.QueryVersion(OpenTK.Graphics.Glx.Display*, int*, int*) + name: QueryVersion(DisplayPtr, int*, int*) + nameWithType: Glx.QueryVersion(DisplayPtr, int*, int*) + fullName: OpenTK.Graphics.Glx.Glx.QueryVersion(OpenTK.Graphics.Glx.DisplayPtr, int*, int*) type: Method source: remote: @@ -1368,31 +1353,31 @@ items: summary: '[requires: v1.0] [entry point: glXQueryVersion]
' example: [] syntax: - content: public static bool QueryVersion(Display* dpy, int* maj, int* min) + content: public static bool QueryVersion(DisplayPtr dpy, int* maj, int* min) parameters: - id: dpy - type: OpenTK.Graphics.Glx.Display* + type: OpenTK.Graphics.Glx.DisplayPtr - id: maj type: System.Int32* - id: min type: System.Int32* return: type: System.Boolean - content.vb: Public Shared Function QueryVersion(dpy As Display*, maj As Integer*, min As Integer*) As Boolean + content.vb: Public Shared Function QueryVersion(dpy As DisplayPtr, maj As Integer*, min As Integer*) As Boolean overload: OpenTK.Graphics.Glx.Glx.QueryVersion* - nameWithType.vb: Glx.QueryVersion(Display*, Integer*, Integer*) - fullName.vb: OpenTK.Graphics.Glx.Glx.QueryVersion(OpenTK.Graphics.Glx.Display*, Integer*, Integer*) - name.vb: QueryVersion(Display*, Integer*, Integer*) -- uid: OpenTK.Graphics.Glx.Glx.SelectEvent(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXDrawable,System.UInt64) - commentId: M:OpenTK.Graphics.Glx.Glx.SelectEvent(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXDrawable,System.UInt64) - id: SelectEvent(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXDrawable,System.UInt64) + nameWithType.vb: Glx.QueryVersion(DisplayPtr, Integer*, Integer*) + fullName.vb: OpenTK.Graphics.Glx.Glx.QueryVersion(OpenTK.Graphics.Glx.DisplayPtr, Integer*, Integer*) + name.vb: QueryVersion(DisplayPtr, Integer*, Integer*) +- uid: OpenTK.Graphics.Glx.Glx.SelectEvent(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.UInt64) + commentId: M:OpenTK.Graphics.Glx.Glx.SelectEvent(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.UInt64) + id: SelectEvent(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.UInt64) parent: OpenTK.Graphics.Glx.Glx langs: - csharp - vb - name: SelectEvent(Display*, GLXDrawable, ulong) - nameWithType: Glx.SelectEvent(Display*, GLXDrawable, ulong) - fullName: OpenTK.Graphics.Glx.Glx.SelectEvent(OpenTK.Graphics.Glx.Display*, OpenTK.Graphics.Glx.GLXDrawable, ulong) + name: SelectEvent(DisplayPtr, GLXDrawable, ulong) + nameWithType: Glx.SelectEvent(DisplayPtr, GLXDrawable, ulong) + fullName: OpenTK.Graphics.Glx.Glx.SelectEvent(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, ulong) type: Method source: remote: @@ -1408,29 +1393,29 @@ items: summary: '[requires: v1.3] [entry point: glXSelectEvent]
' example: [] syntax: - content: public static void SelectEvent(Display* dpy, GLXDrawable draw, ulong event_mask) + content: public static void SelectEvent(DisplayPtr dpy, GLXDrawable draw, ulong event_mask) parameters: - id: dpy - type: OpenTK.Graphics.Glx.Display* + type: OpenTK.Graphics.Glx.DisplayPtr - id: draw type: OpenTK.Graphics.Glx.GLXDrawable - id: event_mask type: System.UInt64 - content.vb: Public Shared Sub SelectEvent(dpy As Display*, draw As GLXDrawable, event_mask As ULong) + content.vb: Public Shared Sub SelectEvent(dpy As DisplayPtr, draw As GLXDrawable, event_mask As ULong) overload: OpenTK.Graphics.Glx.Glx.SelectEvent* - nameWithType.vb: Glx.SelectEvent(Display*, GLXDrawable, ULong) - fullName.vb: OpenTK.Graphics.Glx.Glx.SelectEvent(OpenTK.Graphics.Glx.Display*, OpenTK.Graphics.Glx.GLXDrawable, ULong) - name.vb: SelectEvent(Display*, GLXDrawable, ULong) -- uid: OpenTK.Graphics.Glx.Glx.SwapBuffers(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXDrawable) - commentId: M:OpenTK.Graphics.Glx.Glx.SwapBuffers(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXDrawable) - id: SwapBuffers(OpenTK.Graphics.Glx.Display*,OpenTK.Graphics.Glx.GLXDrawable) + nameWithType.vb: Glx.SelectEvent(DisplayPtr, GLXDrawable, ULong) + fullName.vb: OpenTK.Graphics.Glx.Glx.SelectEvent(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, ULong) + name.vb: SelectEvent(DisplayPtr, GLXDrawable, ULong) +- uid: OpenTK.Graphics.Glx.Glx.SwapBuffers(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable) + commentId: M:OpenTK.Graphics.Glx.Glx.SwapBuffers(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable) + id: SwapBuffers(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable) parent: OpenTK.Graphics.Glx.Glx langs: - csharp - vb - name: SwapBuffers(Display*, GLXDrawable) - nameWithType: Glx.SwapBuffers(Display*, GLXDrawable) - fullName: OpenTK.Graphics.Glx.Glx.SwapBuffers(OpenTK.Graphics.Glx.Display*, OpenTK.Graphics.Glx.GLXDrawable) + name: SwapBuffers(DisplayPtr, GLXDrawable) + nameWithType: Glx.SwapBuffers(DisplayPtr, GLXDrawable) + fullName: OpenTK.Graphics.Glx.Glx.SwapBuffers(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable) type: Method source: remote: @@ -1446,13 +1431,13 @@ items: summary: '[requires: v1.0] [entry point: glXSwapBuffers]
' example: [] syntax: - content: public static void SwapBuffers(Display* dpy, GLXDrawable drawable) + content: public static void SwapBuffers(DisplayPtr dpy, GLXDrawable drawable) parameters: - id: dpy - type: OpenTK.Graphics.Glx.Display* + type: OpenTK.Graphics.Glx.DisplayPtr - id: drawable type: OpenTK.Graphics.Glx.GLXDrawable - content.vb: Public Shared Sub SwapBuffers(dpy As Display*, drawable As GLXDrawable) + content.vb: Public Shared Sub SwapBuffers(dpy As DisplayPtr, drawable As GLXDrawable) overload: OpenTK.Graphics.Glx.Glx.SwapBuffers* - uid: OpenTK.Graphics.Glx.Glx.UseXFont(OpenTK.Graphics.Glx.Font,System.Int32,System.Int32,System.Int32) commentId: M:OpenTK.Graphics.Glx.Glx.UseXFont(OpenTK.Graphics.Glx.Font,System.Int32,System.Int32,System.Int32) @@ -1550,16 +1535,16 @@ items: content: public static void WaitX() content.vb: Public Shared Sub WaitX() overload: OpenTK.Graphics.Glx.Glx.WaitX* -- uid: OpenTK.Graphics.Glx.Glx.ChooseFBConfig(OpenTK.Graphics.Glx.Display@,System.Int32,System.Int32@,System.Int32@) - commentId: M:OpenTK.Graphics.Glx.Glx.ChooseFBConfig(OpenTK.Graphics.Glx.Display@,System.Int32,System.Int32@,System.Int32@) - id: ChooseFBConfig(OpenTK.Graphics.Glx.Display@,System.Int32,System.Int32@,System.Int32@) +- uid: OpenTK.Graphics.Glx.Glx.ChooseFBConfig(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32@,System.Int32@) + commentId: M:OpenTK.Graphics.Glx.Glx.ChooseFBConfig(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32@,System.Int32@) + id: ChooseFBConfig(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32@,System.Int32@) parent: OpenTK.Graphics.Glx.Glx langs: - csharp - vb - name: ChooseFBConfig(ref Display, int, in int, ref int) - nameWithType: Glx.ChooseFBConfig(ref Display, int, in int, ref int) - fullName: OpenTK.Graphics.Glx.Glx.ChooseFBConfig(ref OpenTK.Graphics.Glx.Display, int, in int, ref int) + name: ChooseFBConfig(DisplayPtr, int, in int, ref int) + nameWithType: Glx.ChooseFBConfig(DisplayPtr, int, in int, ref int) + fullName: OpenTK.Graphics.Glx.Glx.ChooseFBConfig(OpenTK.Graphics.Glx.DisplayPtr, int, in int, ref int) type: Method source: remote: @@ -1580,10 +1565,10 @@ items:
example: [] syntax: - content: public static GLXFBConfig* ChooseFBConfig(ref Display dpy, int screen, in int attrib_list, ref int nelements) + content: public static GLXFBConfig* ChooseFBConfig(DisplayPtr dpy, int screen, in int attrib_list, ref int nelements) parameters: - id: dpy - type: OpenTK.Graphics.Glx.Display + type: OpenTK.Graphics.Glx.DisplayPtr - id: screen type: System.Int32 - id: attrib_list @@ -1592,21 +1577,21 @@ items: type: System.Int32 return: type: OpenTK.Graphics.Glx.GLXFBConfig* - content.vb: Public Shared Function ChooseFBConfig(dpy As Display, screen As Integer, attrib_list As Integer, nelements As Integer) As GLXFBConfig* + content.vb: Public Shared Function ChooseFBConfig(dpy As DisplayPtr, screen As Integer, attrib_list As Integer, nelements As Integer) As GLXFBConfig* overload: OpenTK.Graphics.Glx.Glx.ChooseFBConfig* - nameWithType.vb: Glx.ChooseFBConfig(Display, Integer, Integer, Integer) - fullName.vb: OpenTK.Graphics.Glx.Glx.ChooseFBConfig(OpenTK.Graphics.Glx.Display, Integer, Integer, Integer) - name.vb: ChooseFBConfig(Display, Integer, Integer, Integer) -- uid: OpenTK.Graphics.Glx.Glx.ChooseVisual(OpenTK.Graphics.Glx.Display@,System.Int32,System.Int32@) - commentId: M:OpenTK.Graphics.Glx.Glx.ChooseVisual(OpenTK.Graphics.Glx.Display@,System.Int32,System.Int32@) - id: ChooseVisual(OpenTK.Graphics.Glx.Display@,System.Int32,System.Int32@) + nameWithType.vb: Glx.ChooseFBConfig(DisplayPtr, Integer, Integer, Integer) + fullName.vb: OpenTK.Graphics.Glx.Glx.ChooseFBConfig(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer, Integer) + name.vb: ChooseFBConfig(DisplayPtr, Integer, Integer, Integer) +- uid: OpenTK.Graphics.Glx.Glx.ChooseVisual(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32@) + commentId: M:OpenTK.Graphics.Glx.Glx.ChooseVisual(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32@) + id: ChooseVisual(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32@) parent: OpenTK.Graphics.Glx.Glx langs: - csharp - vb - name: ChooseVisual(ref Display, int, ref int) - nameWithType: Glx.ChooseVisual(ref Display, int, ref int) - fullName: OpenTK.Graphics.Glx.Glx.ChooseVisual(ref OpenTK.Graphics.Glx.Display, int, ref int) + name: ChooseVisual(DisplayPtr, int, ref int) + nameWithType: Glx.ChooseVisual(DisplayPtr, int, ref int) + fullName: OpenTK.Graphics.Glx.Glx.ChooseVisual(OpenTK.Graphics.Glx.DisplayPtr, int, ref int) type: Method source: remote: @@ -1615,7 +1600,7 @@ items: repo: https://github.com/opentk/opentk.git id: ChooseVisual path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 26 + startLine: 25 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -1627,217 +1612,31 @@ items:
example: [] syntax: - content: public static XVisualInfo* ChooseVisual(ref Display dpy, int screen, ref int attribList) + content: public static XVisualInfoPtr ChooseVisual(DisplayPtr dpy, int screen, ref int attribList) parameters: - id: dpy - type: OpenTK.Graphics.Glx.Display + type: OpenTK.Graphics.Glx.DisplayPtr - id: screen type: System.Int32 - id: attribList type: System.Int32 return: - type: OpenTK.Graphics.Glx.XVisualInfo* - content.vb: Public Shared Function ChooseVisual(dpy As Display, screen As Integer, attribList As Integer) As XVisualInfo* + type: OpenTK.Graphics.Glx.XVisualInfoPtr + content.vb: Public Shared Function ChooseVisual(dpy As DisplayPtr, screen As Integer, attribList As Integer) As XVisualInfoPtr overload: OpenTK.Graphics.Glx.Glx.ChooseVisual* - nameWithType.vb: Glx.ChooseVisual(Display, Integer, Integer) - fullName.vb: OpenTK.Graphics.Glx.Glx.ChooseVisual(OpenTK.Graphics.Glx.Display, Integer, Integer) - name.vb: ChooseVisual(Display, Integer, Integer) -- uid: OpenTK.Graphics.Glx.Glx.CopyContext(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXContext,OpenTK.Graphics.Glx.GLXContext,System.UInt64) - commentId: M:OpenTK.Graphics.Glx.Glx.CopyContext(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXContext,OpenTK.Graphics.Glx.GLXContext,System.UInt64) - id: CopyContext(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXContext,OpenTK.Graphics.Glx.GLXContext,System.UInt64) - parent: OpenTK.Graphics.Glx.Glx - langs: - - csharp - - vb - name: CopyContext(ref Display, GLXContext, GLXContext, ulong) - nameWithType: Glx.CopyContext(ref Display, GLXContext, GLXContext, ulong) - fullName: OpenTK.Graphics.Glx.Glx.CopyContext(ref OpenTK.Graphics.Glx.Display, OpenTK.Graphics.Glx.GLXContext, OpenTK.Graphics.Glx.GLXContext, ulong) - type: Method - source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: CopyContext - path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 37 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: v1.0] - - [entry point: glXCopyContext] - -
- example: [] - syntax: - content: public static void CopyContext(ref Display dpy, GLXContext src, GLXContext dst, ulong mask) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.Display - - id: src - type: OpenTK.Graphics.Glx.GLXContext - - id: dst - type: OpenTK.Graphics.Glx.GLXContext - - id: mask - type: System.UInt64 - content.vb: Public Shared Sub CopyContext(dpy As Display, src As GLXContext, dst As GLXContext, mask As ULong) - overload: OpenTK.Graphics.Glx.Glx.CopyContext* - nameWithType.vb: Glx.CopyContext(Display, GLXContext, GLXContext, ULong) - fullName.vb: OpenTK.Graphics.Glx.Glx.CopyContext(OpenTK.Graphics.Glx.Display, OpenTK.Graphics.Glx.GLXContext, OpenTK.Graphics.Glx.GLXContext, ULong) - name.vb: CopyContext(Display, GLXContext, GLXContext, ULong) -- uid: OpenTK.Graphics.Glx.Glx.CreateContext(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.XVisualInfo@,OpenTK.Graphics.Glx.GLXContext,System.Boolean) - commentId: M:OpenTK.Graphics.Glx.Glx.CreateContext(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.XVisualInfo@,OpenTK.Graphics.Glx.GLXContext,System.Boolean) - id: CreateContext(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.XVisualInfo@,OpenTK.Graphics.Glx.GLXContext,System.Boolean) - parent: OpenTK.Graphics.Glx.Glx - langs: - - csharp - - vb - name: CreateContext(ref Display, ref XVisualInfo, GLXContext, bool) - nameWithType: Glx.CreateContext(ref Display, ref XVisualInfo, GLXContext, bool) - fullName: OpenTK.Graphics.Glx.Glx.CreateContext(ref OpenTK.Graphics.Glx.Display, ref OpenTK.Graphics.Glx.XVisualInfo, OpenTK.Graphics.Glx.GLXContext, bool) - type: Method - source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: CreateContext - path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 45 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: v1.0] - - [entry point: glXCreateContext] - -
- example: [] - syntax: - content: public static GLXContext CreateContext(ref Display dpy, ref XVisualInfo vis, GLXContext shareList, bool direct) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.Display - - id: vis - type: OpenTK.Graphics.Glx.XVisualInfo - - id: shareList - type: OpenTK.Graphics.Glx.GLXContext - - id: direct - type: System.Boolean - return: - type: OpenTK.Graphics.Glx.GLXContext - content.vb: Public Shared Function CreateContext(dpy As Display, vis As XVisualInfo, shareList As GLXContext, direct As Boolean) As GLXContext - overload: OpenTK.Graphics.Glx.Glx.CreateContext* - nameWithType.vb: Glx.CreateContext(Display, XVisualInfo, GLXContext, Boolean) - fullName.vb: OpenTK.Graphics.Glx.Glx.CreateContext(OpenTK.Graphics.Glx.Display, OpenTK.Graphics.Glx.XVisualInfo, OpenTK.Graphics.Glx.GLXContext, Boolean) - name.vb: CreateContext(Display, XVisualInfo, GLXContext, Boolean) -- uid: OpenTK.Graphics.Glx.Glx.CreateGLXPixmap(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.XVisualInfo@,OpenTK.Graphics.Glx.Pixmap) - commentId: M:OpenTK.Graphics.Glx.Glx.CreateGLXPixmap(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.XVisualInfo@,OpenTK.Graphics.Glx.Pixmap) - id: CreateGLXPixmap(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.XVisualInfo@,OpenTK.Graphics.Glx.Pixmap) - parent: OpenTK.Graphics.Glx.Glx - langs: - - csharp - - vb - name: CreateGLXPixmap(ref Display, ref XVisualInfo, Pixmap) - nameWithType: Glx.CreateGLXPixmap(ref Display, ref XVisualInfo, Pixmap) - fullName: OpenTK.Graphics.Glx.Glx.CreateGLXPixmap(ref OpenTK.Graphics.Glx.Display, ref OpenTK.Graphics.Glx.XVisualInfo, OpenTK.Graphics.Glx.Pixmap) - type: Method - source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: CreateGLXPixmap - path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 56 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: v1.0] - - [entry point: glXCreateGLXPixmap] - -
- example: [] - syntax: - content: public static GLXPixmap CreateGLXPixmap(ref Display dpy, ref XVisualInfo visual, Pixmap pixmap) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.Display - - id: visual - type: OpenTK.Graphics.Glx.XVisualInfo - - id: pixmap - type: OpenTK.Graphics.Glx.Pixmap - return: - type: OpenTK.Graphics.Glx.GLXPixmap - content.vb: Public Shared Function CreateGLXPixmap(dpy As Display, visual As XVisualInfo, pixmap As Pixmap) As GLXPixmap - overload: OpenTK.Graphics.Glx.Glx.CreateGLXPixmap* - nameWithType.vb: Glx.CreateGLXPixmap(Display, XVisualInfo, Pixmap) - fullName.vb: OpenTK.Graphics.Glx.Glx.CreateGLXPixmap(OpenTK.Graphics.Glx.Display, OpenTK.Graphics.Glx.XVisualInfo, OpenTK.Graphics.Glx.Pixmap) - name.vb: CreateGLXPixmap(Display, XVisualInfo, Pixmap) -- uid: OpenTK.Graphics.Glx.Glx.CreateNewContext(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXFBConfig,System.Int32,OpenTK.Graphics.Glx.GLXContext,System.Boolean) - commentId: M:OpenTK.Graphics.Glx.Glx.CreateNewContext(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXFBConfig,System.Int32,OpenTK.Graphics.Glx.GLXContext,System.Boolean) - id: CreateNewContext(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXFBConfig,System.Int32,OpenTK.Graphics.Glx.GLXContext,System.Boolean) - parent: OpenTK.Graphics.Glx.Glx - langs: - - csharp - - vb - name: CreateNewContext(ref Display, GLXFBConfig, int, GLXContext, bool) - nameWithType: Glx.CreateNewContext(ref Display, GLXFBConfig, int, GLXContext, bool) - fullName: OpenTK.Graphics.Glx.Glx.CreateNewContext(ref OpenTK.Graphics.Glx.Display, OpenTK.Graphics.Glx.GLXFBConfig, int, OpenTK.Graphics.Glx.GLXContext, bool) - type: Method - source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: CreateNewContext - path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 67 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: v1.3] - - [entry point: glXCreateNewContext] - -
- example: [] - syntax: - content: public static GLXContext CreateNewContext(ref Display dpy, GLXFBConfig config, int render_type, GLXContext share_list, bool direct) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.Display - - id: config - type: OpenTK.Graphics.Glx.GLXFBConfig - - id: render_type - type: System.Int32 - - id: share_list - type: OpenTK.Graphics.Glx.GLXContext - - id: direct - type: System.Boolean - return: - type: OpenTK.Graphics.Glx.GLXContext - content.vb: Public Shared Function CreateNewContext(dpy As Display, config As GLXFBConfig, render_type As Integer, share_list As GLXContext, direct As Boolean) As GLXContext - overload: OpenTK.Graphics.Glx.Glx.CreateNewContext* - nameWithType.vb: Glx.CreateNewContext(Display, GLXFBConfig, Integer, GLXContext, Boolean) - fullName.vb: OpenTK.Graphics.Glx.Glx.CreateNewContext(OpenTK.Graphics.Glx.Display, OpenTK.Graphics.Glx.GLXFBConfig, Integer, OpenTK.Graphics.Glx.GLXContext, Boolean) - name.vb: CreateNewContext(Display, GLXFBConfig, Integer, GLXContext, Boolean) -- uid: OpenTK.Graphics.Glx.Glx.CreatePbuffer(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXFBConfig,System.Int32@) - commentId: M:OpenTK.Graphics.Glx.Glx.CreatePbuffer(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXFBConfig,System.Int32@) - id: CreatePbuffer(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXFBConfig,System.Int32@) + nameWithType.vb: Glx.ChooseVisual(DisplayPtr, Integer, Integer) + fullName.vb: OpenTK.Graphics.Glx.Glx.ChooseVisual(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer) + name.vb: ChooseVisual(DisplayPtr, Integer, Integer) +- uid: OpenTK.Graphics.Glx.Glx.CreatePbuffer(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,System.Int32@) + commentId: M:OpenTK.Graphics.Glx.Glx.CreatePbuffer(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,System.Int32@) + id: CreatePbuffer(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,System.Int32@) parent: OpenTK.Graphics.Glx.Glx langs: - csharp - vb - name: CreatePbuffer(ref Display, GLXFBConfig, in int) - nameWithType: Glx.CreatePbuffer(ref Display, GLXFBConfig, in int) - fullName: OpenTK.Graphics.Glx.Glx.CreatePbuffer(ref OpenTK.Graphics.Glx.Display, OpenTK.Graphics.Glx.GLXFBConfig, in int) + name: CreatePbuffer(DisplayPtr, GLXFBConfig, in int) + nameWithType: Glx.CreatePbuffer(DisplayPtr, GLXFBConfig, in int) + fullName: OpenTK.Graphics.Glx.Glx.CreatePbuffer(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfig, in int) type: Method source: remote: @@ -1846,7 +1645,7 @@ items: repo: https://github.com/opentk/opentk.git id: CreatePbuffer path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 77 + startLine: 35 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -1858,31 +1657,31 @@ items:
example: [] syntax: - content: public static GLXPbuffer CreatePbuffer(ref Display dpy, GLXFBConfig config, in int attrib_list) + content: public static GLXPbuffer CreatePbuffer(DisplayPtr dpy, GLXFBConfig config, in int attrib_list) parameters: - id: dpy - type: OpenTK.Graphics.Glx.Display + type: OpenTK.Graphics.Glx.DisplayPtr - id: config type: OpenTK.Graphics.Glx.GLXFBConfig - id: attrib_list type: System.Int32 return: type: OpenTK.Graphics.Glx.GLXPbuffer - content.vb: Public Shared Function CreatePbuffer(dpy As Display, config As GLXFBConfig, attrib_list As Integer) As GLXPbuffer + content.vb: Public Shared Function CreatePbuffer(dpy As DisplayPtr, config As GLXFBConfig, attrib_list As Integer) As GLXPbuffer overload: OpenTK.Graphics.Glx.Glx.CreatePbuffer* - nameWithType.vb: Glx.CreatePbuffer(Display, GLXFBConfig, Integer) - fullName.vb: OpenTK.Graphics.Glx.Glx.CreatePbuffer(OpenTK.Graphics.Glx.Display, OpenTK.Graphics.Glx.GLXFBConfig, Integer) - name.vb: CreatePbuffer(Display, GLXFBConfig, Integer) -- uid: OpenTK.Graphics.Glx.Glx.CreatePixmap(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.Pixmap,System.Int32@) - commentId: M:OpenTK.Graphics.Glx.Glx.CreatePixmap(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.Pixmap,System.Int32@) - id: CreatePixmap(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.Pixmap,System.Int32@) + nameWithType.vb: Glx.CreatePbuffer(DisplayPtr, GLXFBConfig, Integer) + fullName.vb: OpenTK.Graphics.Glx.Glx.CreatePbuffer(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfig, Integer) + name.vb: CreatePbuffer(DisplayPtr, GLXFBConfig, Integer) +- uid: OpenTK.Graphics.Glx.Glx.CreatePixmap(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.Pixmap,System.Int32@) + commentId: M:OpenTK.Graphics.Glx.Glx.CreatePixmap(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.Pixmap,System.Int32@) + id: CreatePixmap(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.Pixmap,System.Int32@) parent: OpenTK.Graphics.Glx.Glx langs: - csharp - vb - name: CreatePixmap(ref Display, GLXFBConfig, Pixmap, in int) - nameWithType: Glx.CreatePixmap(ref Display, GLXFBConfig, Pixmap, in int) - fullName: OpenTK.Graphics.Glx.Glx.CreatePixmap(ref OpenTK.Graphics.Glx.Display, OpenTK.Graphics.Glx.GLXFBConfig, OpenTK.Graphics.Glx.Pixmap, in int) + name: CreatePixmap(DisplayPtr, GLXFBConfig, Pixmap, in int) + nameWithType: Glx.CreatePixmap(DisplayPtr, GLXFBConfig, Pixmap, in int) + fullName: OpenTK.Graphics.Glx.Glx.CreatePixmap(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfig, OpenTK.Graphics.Glx.Pixmap, in int) type: Method source: remote: @@ -1891,7 +1690,7 @@ items: repo: https://github.com/opentk/opentk.git id: CreatePixmap path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 88 + startLine: 45 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -1903,10 +1702,10 @@ items:
example: [] syntax: - content: public static GLXPixmap CreatePixmap(ref Display dpy, GLXFBConfig config, Pixmap pixmap, in int attrib_list) + content: public static GLXPixmap CreatePixmap(DisplayPtr dpy, GLXFBConfig config, Pixmap pixmap, in int attrib_list) parameters: - id: dpy - type: OpenTK.Graphics.Glx.Display + type: OpenTK.Graphics.Glx.DisplayPtr - id: config type: OpenTK.Graphics.Glx.GLXFBConfig - id: pixmap @@ -1915,21 +1714,21 @@ items: type: System.Int32 return: type: OpenTK.Graphics.Glx.GLXPixmap - content.vb: Public Shared Function CreatePixmap(dpy As Display, config As GLXFBConfig, pixmap As Pixmap, attrib_list As Integer) As GLXPixmap + content.vb: Public Shared Function CreatePixmap(dpy As DisplayPtr, config As GLXFBConfig, pixmap As Pixmap, attrib_list As Integer) As GLXPixmap overload: OpenTK.Graphics.Glx.Glx.CreatePixmap* - nameWithType.vb: Glx.CreatePixmap(Display, GLXFBConfig, Pixmap, Integer) - fullName.vb: OpenTK.Graphics.Glx.Glx.CreatePixmap(OpenTK.Graphics.Glx.Display, OpenTK.Graphics.Glx.GLXFBConfig, OpenTK.Graphics.Glx.Pixmap, Integer) - name.vb: CreatePixmap(Display, GLXFBConfig, Pixmap, Integer) -- uid: OpenTK.Graphics.Glx.Glx.CreateWindow(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.Window,System.Int32@) - commentId: M:OpenTK.Graphics.Glx.Glx.CreateWindow(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.Window,System.Int32@) - id: CreateWindow(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.Window,System.Int32@) + nameWithType.vb: Glx.CreatePixmap(DisplayPtr, GLXFBConfig, Pixmap, Integer) + fullName.vb: OpenTK.Graphics.Glx.Glx.CreatePixmap(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfig, OpenTK.Graphics.Glx.Pixmap, Integer) + name.vb: CreatePixmap(DisplayPtr, GLXFBConfig, Pixmap, Integer) +- uid: OpenTK.Graphics.Glx.Glx.CreateWindow(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.Window,System.Int32@) + commentId: M:OpenTK.Graphics.Glx.Glx.CreateWindow(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.Window,System.Int32@) + id: CreateWindow(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.Window,System.Int32@) parent: OpenTK.Graphics.Glx.Glx langs: - csharp - vb - name: CreateWindow(ref Display, GLXFBConfig, Window, in int) - nameWithType: Glx.CreateWindow(ref Display, GLXFBConfig, Window, in int) - fullName: OpenTK.Graphics.Glx.Glx.CreateWindow(ref OpenTK.Graphics.Glx.Display, OpenTK.Graphics.Glx.GLXFBConfig, OpenTK.Graphics.Glx.Window, in int) + name: CreateWindow(DisplayPtr, GLXFBConfig, Window, in int) + nameWithType: Glx.CreateWindow(DisplayPtr, GLXFBConfig, Window, in int) + fullName: OpenTK.Graphics.Glx.Glx.CreateWindow(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfig, OpenTK.Graphics.Glx.Window, in int) type: Method source: remote: @@ -1938,7 +1737,7 @@ items: repo: https://github.com/opentk/opentk.git id: CreateWindow path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 99 + startLine: 55 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -1950,10 +1749,10 @@ items:
example: [] syntax: - content: public static GLXWindow CreateWindow(ref Display dpy, GLXFBConfig config, Window win, in int attrib_list) + content: public static GLXWindow CreateWindow(DisplayPtr dpy, GLXFBConfig config, Window win, in int attrib_list) parameters: - id: dpy - type: OpenTK.Graphics.Glx.Display + type: OpenTK.Graphics.Glx.DisplayPtr - id: config type: OpenTK.Graphics.Glx.GLXFBConfig - id: win @@ -1962,226 +1761,21 @@ items: type: System.Int32 return: type: OpenTK.Graphics.Glx.GLXWindow - content.vb: Public Shared Function CreateWindow(dpy As Display, config As GLXFBConfig, win As Window, attrib_list As Integer) As GLXWindow + content.vb: Public Shared Function CreateWindow(dpy As DisplayPtr, config As GLXFBConfig, win As Window, attrib_list As Integer) As GLXWindow overload: OpenTK.Graphics.Glx.Glx.CreateWindow* - nameWithType.vb: Glx.CreateWindow(Display, GLXFBConfig, Window, Integer) - fullName.vb: OpenTK.Graphics.Glx.Glx.CreateWindow(OpenTK.Graphics.Glx.Display, OpenTK.Graphics.Glx.GLXFBConfig, OpenTK.Graphics.Glx.Window, Integer) - name.vb: CreateWindow(Display, GLXFBConfig, Window, Integer) -- uid: OpenTK.Graphics.Glx.Glx.DestroyContext(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXContext) - commentId: M:OpenTK.Graphics.Glx.Glx.DestroyContext(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXContext) - id: DestroyContext(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXContext) - parent: OpenTK.Graphics.Glx.Glx - langs: - - csharp - - vb - name: DestroyContext(ref Display, GLXContext) - nameWithType: Glx.DestroyContext(ref Display, GLXContext) - fullName: OpenTK.Graphics.Glx.Glx.DestroyContext(ref OpenTK.Graphics.Glx.Display, OpenTK.Graphics.Glx.GLXContext) - type: Method - source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: DestroyContext - path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 110 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: v1.0] - - [entry point: glXDestroyContext] - -
- example: [] - syntax: - content: public static void DestroyContext(ref Display dpy, GLXContext ctx) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.Display - - id: ctx - type: OpenTK.Graphics.Glx.GLXContext - content.vb: Public Shared Sub DestroyContext(dpy As Display, ctx As GLXContext) - overload: OpenTK.Graphics.Glx.Glx.DestroyContext* - nameWithType.vb: Glx.DestroyContext(Display, GLXContext) - fullName.vb: OpenTK.Graphics.Glx.Glx.DestroyContext(OpenTK.Graphics.Glx.Display, OpenTK.Graphics.Glx.GLXContext) - name.vb: DestroyContext(Display, GLXContext) -- uid: OpenTK.Graphics.Glx.Glx.DestroyGLXPixmap(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXPixmap) - commentId: M:OpenTK.Graphics.Glx.Glx.DestroyGLXPixmap(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXPixmap) - id: DestroyGLXPixmap(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXPixmap) - parent: OpenTK.Graphics.Glx.Glx - langs: - - csharp - - vb - name: DestroyGLXPixmap(ref Display, GLXPixmap) - nameWithType: Glx.DestroyGLXPixmap(ref Display, GLXPixmap) - fullName: OpenTK.Graphics.Glx.Glx.DestroyGLXPixmap(ref OpenTK.Graphics.Glx.Display, OpenTK.Graphics.Glx.GLXPixmap) - type: Method - source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: DestroyGLXPixmap - path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 118 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: v1.0] - - [entry point: glXDestroyGLXPixmap] - -
- example: [] - syntax: - content: public static void DestroyGLXPixmap(ref Display dpy, GLXPixmap pixmap) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.Display - - id: pixmap - type: OpenTK.Graphics.Glx.GLXPixmap - content.vb: Public Shared Sub DestroyGLXPixmap(dpy As Display, pixmap As GLXPixmap) - overload: OpenTK.Graphics.Glx.Glx.DestroyGLXPixmap* - nameWithType.vb: Glx.DestroyGLXPixmap(Display, GLXPixmap) - fullName.vb: OpenTK.Graphics.Glx.Glx.DestroyGLXPixmap(OpenTK.Graphics.Glx.Display, OpenTK.Graphics.Glx.GLXPixmap) - name.vb: DestroyGLXPixmap(Display, GLXPixmap) -- uid: OpenTK.Graphics.Glx.Glx.DestroyPbuffer(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXPbuffer) - commentId: M:OpenTK.Graphics.Glx.Glx.DestroyPbuffer(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXPbuffer) - id: DestroyPbuffer(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXPbuffer) - parent: OpenTK.Graphics.Glx.Glx - langs: - - csharp - - vb - name: DestroyPbuffer(ref Display, GLXPbuffer) - nameWithType: Glx.DestroyPbuffer(ref Display, GLXPbuffer) - fullName: OpenTK.Graphics.Glx.Glx.DestroyPbuffer(ref OpenTK.Graphics.Glx.Display, OpenTK.Graphics.Glx.GLXPbuffer) - type: Method - source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: DestroyPbuffer - path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 126 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: v1.3] - - [entry point: glXDestroyPbuffer] - -
- example: [] - syntax: - content: public static void DestroyPbuffer(ref Display dpy, GLXPbuffer pbuf) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.Display - - id: pbuf - type: OpenTK.Graphics.Glx.GLXPbuffer - content.vb: Public Shared Sub DestroyPbuffer(dpy As Display, pbuf As GLXPbuffer) - overload: OpenTK.Graphics.Glx.Glx.DestroyPbuffer* - nameWithType.vb: Glx.DestroyPbuffer(Display, GLXPbuffer) - fullName.vb: OpenTK.Graphics.Glx.Glx.DestroyPbuffer(OpenTK.Graphics.Glx.Display, OpenTK.Graphics.Glx.GLXPbuffer) - name.vb: DestroyPbuffer(Display, GLXPbuffer) -- uid: OpenTK.Graphics.Glx.Glx.DestroyPixmap(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXPixmap) - commentId: M:OpenTK.Graphics.Glx.Glx.DestroyPixmap(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXPixmap) - id: DestroyPixmap(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXPixmap) - parent: OpenTK.Graphics.Glx.Glx - langs: - - csharp - - vb - name: DestroyPixmap(ref Display, GLXPixmap) - nameWithType: Glx.DestroyPixmap(ref Display, GLXPixmap) - fullName: OpenTK.Graphics.Glx.Glx.DestroyPixmap(ref OpenTK.Graphics.Glx.Display, OpenTK.Graphics.Glx.GLXPixmap) - type: Method - source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: DestroyPixmap - path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 134 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: v1.3] - - [entry point: glXDestroyPixmap] - -
- example: [] - syntax: - content: public static void DestroyPixmap(ref Display dpy, GLXPixmap pixmap) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.Display - - id: pixmap - type: OpenTK.Graphics.Glx.GLXPixmap - content.vb: Public Shared Sub DestroyPixmap(dpy As Display, pixmap As GLXPixmap) - overload: OpenTK.Graphics.Glx.Glx.DestroyPixmap* - nameWithType.vb: Glx.DestroyPixmap(Display, GLXPixmap) - fullName.vb: OpenTK.Graphics.Glx.Glx.DestroyPixmap(OpenTK.Graphics.Glx.Display, OpenTK.Graphics.Glx.GLXPixmap) - name.vb: DestroyPixmap(Display, GLXPixmap) -- uid: OpenTK.Graphics.Glx.Glx.DestroyWindow(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXWindow) - commentId: M:OpenTK.Graphics.Glx.Glx.DestroyWindow(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXWindow) - id: DestroyWindow(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXWindow) - parent: OpenTK.Graphics.Glx.Glx - langs: - - csharp - - vb - name: DestroyWindow(ref Display, GLXWindow) - nameWithType: Glx.DestroyWindow(ref Display, GLXWindow) - fullName: OpenTK.Graphics.Glx.Glx.DestroyWindow(ref OpenTK.Graphics.Glx.Display, OpenTK.Graphics.Glx.GLXWindow) - type: Method - source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: DestroyWindow - path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 142 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: v1.3] - - [entry point: glXDestroyWindow] - -
- example: [] - syntax: - content: public static void DestroyWindow(ref Display dpy, GLXWindow win) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.Display - - id: win - type: OpenTK.Graphics.Glx.GLXWindow - content.vb: Public Shared Sub DestroyWindow(dpy As Display, win As GLXWindow) - overload: OpenTK.Graphics.Glx.Glx.DestroyWindow* - nameWithType.vb: Glx.DestroyWindow(Display, GLXWindow) - fullName.vb: OpenTK.Graphics.Glx.Glx.DestroyWindow(OpenTK.Graphics.Glx.Display, OpenTK.Graphics.Glx.GLXWindow) - name.vb: DestroyWindow(Display, GLXWindow) -- uid: OpenTK.Graphics.Glx.Glx.GetClientString(OpenTK.Graphics.Glx.Display@,System.Int32) - commentId: M:OpenTK.Graphics.Glx.Glx.GetClientString(OpenTK.Graphics.Glx.Display@,System.Int32) - id: GetClientString(OpenTK.Graphics.Glx.Display@,System.Int32) + nameWithType.vb: Glx.CreateWindow(DisplayPtr, GLXFBConfig, Window, Integer) + fullName.vb: OpenTK.Graphics.Glx.Glx.CreateWindow(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfig, OpenTK.Graphics.Glx.Window, Integer) + name.vb: CreateWindow(DisplayPtr, GLXFBConfig, Window, Integer) +- uid: OpenTK.Graphics.Glx.Glx.GetClientString(OpenTK.Graphics.Glx.DisplayPtr,System.Int32) + commentId: M:OpenTK.Graphics.Glx.Glx.GetClientString(OpenTK.Graphics.Glx.DisplayPtr,System.Int32) + id: GetClientString(OpenTK.Graphics.Glx.DisplayPtr,System.Int32) parent: OpenTK.Graphics.Glx.Glx langs: - csharp - vb - name: GetClientString(ref Display, int) - nameWithType: Glx.GetClientString(ref Display, int) - fullName: OpenTK.Graphics.Glx.Glx.GetClientString(ref OpenTK.Graphics.Glx.Display, int) + name: GetClientString(DisplayPtr, int) + nameWithType: Glx.GetClientString(DisplayPtr, int) + fullName: OpenTK.Graphics.Glx.Glx.GetClientString(OpenTK.Graphics.Glx.DisplayPtr, int) type: Method source: remote: @@ -2190,41 +1784,35 @@ items: repo: https://github.com/opentk/opentk.git id: GetClientString path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 150 + startLine: 65 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx - summary: >- - [requires: v1.1] - - [entry point: glXGetClientString] - -
example: [] syntax: - content: public static string? GetClientString(ref Display dpy, int name) + content: public static string? GetClientString(DisplayPtr dpy, int name) parameters: - id: dpy - type: OpenTK.Graphics.Glx.Display + type: OpenTK.Graphics.Glx.DisplayPtr - id: name type: System.Int32 return: type: System.String - content.vb: Public Shared Function GetClientString(dpy As Display, name As Integer) As String + content.vb: Public Shared Function GetClientString(dpy As DisplayPtr, name As Integer) As String overload: OpenTK.Graphics.Glx.Glx.GetClientString* - nameWithType.vb: Glx.GetClientString(Display, Integer) - fullName.vb: OpenTK.Graphics.Glx.Glx.GetClientString(OpenTK.Graphics.Glx.Display, Integer) - name.vb: GetClientString(Display, Integer) -- uid: OpenTK.Graphics.Glx.Glx.GetConfig(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.XVisualInfo@,System.Int32,System.Int32@) - commentId: M:OpenTK.Graphics.Glx.Glx.GetConfig(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.XVisualInfo@,System.Int32,System.Int32@) - id: GetConfig(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.XVisualInfo@,System.Int32,System.Int32@) + nameWithType.vb: Glx.GetClientString(DisplayPtr, Integer) + fullName.vb: OpenTK.Graphics.Glx.Glx.GetClientString(OpenTK.Graphics.Glx.DisplayPtr, Integer) + name.vb: GetClientString(DisplayPtr, Integer) +- uid: OpenTK.Graphics.Glx.Glx.GetConfig(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.XVisualInfoPtr,System.Int32,System.Int32@) + commentId: M:OpenTK.Graphics.Glx.Glx.GetConfig(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.XVisualInfoPtr,System.Int32,System.Int32@) + id: GetConfig(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.XVisualInfoPtr,System.Int32,System.Int32@) parent: OpenTK.Graphics.Glx.Glx langs: - csharp - vb - name: GetConfig(ref Display, ref XVisualInfo, int, ref int) - nameWithType: Glx.GetConfig(ref Display, ref XVisualInfo, int, ref int) - fullName: OpenTK.Graphics.Glx.Glx.GetConfig(ref OpenTK.Graphics.Glx.Display, ref OpenTK.Graphics.Glx.XVisualInfo, int, ref int) + name: GetConfig(DisplayPtr, XVisualInfoPtr, int, ref int) + nameWithType: Glx.GetConfig(DisplayPtr, XVisualInfoPtr, int, ref int) + fullName: OpenTK.Graphics.Glx.Glx.GetConfig(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.XVisualInfoPtr, int, ref int) type: Method source: remote: @@ -2233,7 +1821,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetConfig path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 162 + startLine: 74 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -2245,33 +1833,33 @@ items:
example: [] syntax: - content: public static int GetConfig(ref Display dpy, ref XVisualInfo visual, int attrib, ref int value) + content: public static int GetConfig(DisplayPtr dpy, XVisualInfoPtr visual, int attrib, ref int value) parameters: - id: dpy - type: OpenTK.Graphics.Glx.Display + type: OpenTK.Graphics.Glx.DisplayPtr - id: visual - type: OpenTK.Graphics.Glx.XVisualInfo + type: OpenTK.Graphics.Glx.XVisualInfoPtr - id: attrib type: System.Int32 - id: value type: System.Int32 return: type: System.Int32 - content.vb: Public Shared Function GetConfig(dpy As Display, visual As XVisualInfo, attrib As Integer, value As Integer) As Integer + content.vb: Public Shared Function GetConfig(dpy As DisplayPtr, visual As XVisualInfoPtr, attrib As Integer, value As Integer) As Integer overload: OpenTK.Graphics.Glx.Glx.GetConfig* - nameWithType.vb: Glx.GetConfig(Display, XVisualInfo, Integer, Integer) - fullName.vb: OpenTK.Graphics.Glx.Glx.GetConfig(OpenTK.Graphics.Glx.Display, OpenTK.Graphics.Glx.XVisualInfo, Integer, Integer) - name.vb: GetConfig(Display, XVisualInfo, Integer, Integer) -- uid: OpenTK.Graphics.Glx.Glx.GetFBConfigAttrib(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXFBConfig,System.Int32,System.Int32@) - commentId: M:OpenTK.Graphics.Glx.Glx.GetFBConfigAttrib(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXFBConfig,System.Int32,System.Int32@) - id: GetFBConfigAttrib(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXFBConfig,System.Int32,System.Int32@) + nameWithType.vb: Glx.GetConfig(DisplayPtr, XVisualInfoPtr, Integer, Integer) + fullName.vb: OpenTK.Graphics.Glx.Glx.GetConfig(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.XVisualInfoPtr, Integer, Integer) + name.vb: GetConfig(DisplayPtr, XVisualInfoPtr, Integer, Integer) +- uid: OpenTK.Graphics.Glx.Glx.GetFBConfigAttrib(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,System.Int32,System.Int32@) + commentId: M:OpenTK.Graphics.Glx.Glx.GetFBConfigAttrib(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,System.Int32,System.Int32@) + id: GetFBConfigAttrib(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,System.Int32,System.Int32@) parent: OpenTK.Graphics.Glx.Glx langs: - csharp - vb - name: GetFBConfigAttrib(ref Display, GLXFBConfig, int, ref int) - nameWithType: Glx.GetFBConfigAttrib(ref Display, GLXFBConfig, int, ref int) - fullName: OpenTK.Graphics.Glx.Glx.GetFBConfigAttrib(ref OpenTK.Graphics.Glx.Display, OpenTK.Graphics.Glx.GLXFBConfig, int, ref int) + name: GetFBConfigAttrib(DisplayPtr, GLXFBConfig, int, ref int) + nameWithType: Glx.GetFBConfigAttrib(DisplayPtr, GLXFBConfig, int, ref int) + fullName: OpenTK.Graphics.Glx.Glx.GetFBConfigAttrib(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfig, int, ref int) type: Method source: remote: @@ -2280,7 +1868,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetFBConfigAttrib path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 174 + startLine: 84 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -2292,10 +1880,10 @@ items:
example: [] syntax: - content: public static int GetFBConfigAttrib(ref Display dpy, GLXFBConfig config, int attribute, ref int value) + content: public static int GetFBConfigAttrib(DisplayPtr dpy, GLXFBConfig config, int attribute, ref int value) parameters: - id: dpy - type: OpenTK.Graphics.Glx.Display + type: OpenTK.Graphics.Glx.DisplayPtr - id: config type: OpenTK.Graphics.Glx.GLXFBConfig - id: attribute @@ -2304,21 +1892,21 @@ items: type: System.Int32 return: type: System.Int32 - content.vb: Public Shared Function GetFBConfigAttrib(dpy As Display, config As GLXFBConfig, attribute As Integer, value As Integer) As Integer + content.vb: Public Shared Function GetFBConfigAttrib(dpy As DisplayPtr, config As GLXFBConfig, attribute As Integer, value As Integer) As Integer overload: OpenTK.Graphics.Glx.Glx.GetFBConfigAttrib* - nameWithType.vb: Glx.GetFBConfigAttrib(Display, GLXFBConfig, Integer, Integer) - fullName.vb: OpenTK.Graphics.Glx.Glx.GetFBConfigAttrib(OpenTK.Graphics.Glx.Display, OpenTK.Graphics.Glx.GLXFBConfig, Integer, Integer) - name.vb: GetFBConfigAttrib(Display, GLXFBConfig, Integer, Integer) -- uid: OpenTK.Graphics.Glx.Glx.GetFBConfig(OpenTK.Graphics.Glx.Display@,System.Int32,System.Int32@) - commentId: M:OpenTK.Graphics.Glx.Glx.GetFBConfig(OpenTK.Graphics.Glx.Display@,System.Int32,System.Int32@) - id: GetFBConfig(OpenTK.Graphics.Glx.Display@,System.Int32,System.Int32@) + nameWithType.vb: Glx.GetFBConfigAttrib(DisplayPtr, GLXFBConfig, Integer, Integer) + fullName.vb: OpenTK.Graphics.Glx.Glx.GetFBConfigAttrib(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfig, Integer, Integer) + name.vb: GetFBConfigAttrib(DisplayPtr, GLXFBConfig, Integer, Integer) +- uid: OpenTK.Graphics.Glx.Glx.GetFBConfig(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32@) + commentId: M:OpenTK.Graphics.Glx.Glx.GetFBConfig(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32@) + id: GetFBConfig(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32@) parent: OpenTK.Graphics.Glx.Glx langs: - csharp - vb - name: GetFBConfig(ref Display, int, ref int) - nameWithType: Glx.GetFBConfig(ref Display, int, ref int) - fullName: OpenTK.Graphics.Glx.Glx.GetFBConfig(ref OpenTK.Graphics.Glx.Display, int, ref int) + name: GetFBConfig(DisplayPtr, int, ref int) + nameWithType: Glx.GetFBConfig(DisplayPtr, int, ref int) + fullName: OpenTK.Graphics.Glx.Glx.GetFBConfig(OpenTK.Graphics.Glx.DisplayPtr, int, ref int) type: Method source: remote: @@ -2327,7 +1915,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetFBConfig path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 185 + startLine: 94 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -2339,21 +1927,21 @@ items:
example: [] syntax: - content: public static GLXFBConfig* GetFBConfig(ref Display dpy, int screen, ref int nelements) + content: public static GLXFBConfig* GetFBConfig(DisplayPtr dpy, int screen, ref int nelements) parameters: - id: dpy - type: OpenTK.Graphics.Glx.Display + type: OpenTK.Graphics.Glx.DisplayPtr - id: screen type: System.Int32 - id: nelements type: System.Int32 return: type: OpenTK.Graphics.Glx.GLXFBConfig* - content.vb: Public Shared Function GetFBConfig(dpy As Display, screen As Integer, nelements As Integer) As GLXFBConfig* + content.vb: Public Shared Function GetFBConfig(dpy As DisplayPtr, screen As Integer, nelements As Integer) As GLXFBConfig* overload: OpenTK.Graphics.Glx.Glx.GetFBConfig* - nameWithType.vb: Glx.GetFBConfig(Display, Integer, Integer) - fullName.vb: OpenTK.Graphics.Glx.Glx.GetFBConfig(OpenTK.Graphics.Glx.Display, Integer, Integer) - name.vb: GetFBConfig(Display, Integer, Integer) + nameWithType.vb: Glx.GetFBConfig(DisplayPtr, Integer, Integer) + fullName.vb: OpenTK.Graphics.Glx.Glx.GetFBConfig(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer) + name.vb: GetFBConfig(DisplayPtr, Integer, Integer) - uid: OpenTK.Graphics.Glx.Glx.GetProcAddress(System.Byte@) commentId: M:OpenTK.Graphics.Glx.Glx.GetProcAddress(System.Byte@) id: GetProcAddress(System.Byte@) @@ -2372,7 +1960,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetProcAddress path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 196 + startLine: 104 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -2395,16 +1983,16 @@ items: nameWithType.vb: Glx.GetProcAddress(Byte) fullName.vb: OpenTK.Graphics.Glx.Glx.GetProcAddress(Byte) name.vb: GetProcAddress(Byte) -- uid: OpenTK.Graphics.Glx.Glx.GetSelectedEvent(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXDrawable,System.UInt64@) - commentId: M:OpenTK.Graphics.Glx.Glx.GetSelectedEvent(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXDrawable,System.UInt64@) - id: GetSelectedEvent(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXDrawable,System.UInt64@) +- uid: OpenTK.Graphics.Glx.Glx.GetSelectedEvent(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.UInt64@) + commentId: M:OpenTK.Graphics.Glx.Glx.GetSelectedEvent(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.UInt64@) + id: GetSelectedEvent(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.UInt64@) parent: OpenTK.Graphics.Glx.Glx langs: - csharp - vb - name: GetSelectedEvent(ref Display, GLXDrawable, ref ulong) - nameWithType: Glx.GetSelectedEvent(ref Display, GLXDrawable, ref ulong) - fullName: OpenTK.Graphics.Glx.Glx.GetSelectedEvent(ref OpenTK.Graphics.Glx.Display, OpenTK.Graphics.Glx.GLXDrawable, ref ulong) + name: GetSelectedEvent(DisplayPtr, GLXDrawable, ref ulong) + nameWithType: Glx.GetSelectedEvent(DisplayPtr, GLXDrawable, ref ulong) + fullName: OpenTK.Graphics.Glx.Glx.GetSelectedEvent(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, ref ulong) type: Method source: remote: @@ -2413,7 +2001,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetSelectedEvent path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 206 + startLine: 114 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -2425,207 +2013,29 @@ items:
example: [] syntax: - content: public static void GetSelectedEvent(ref Display dpy, GLXDrawable draw, ref ulong event_mask) + content: public static void GetSelectedEvent(DisplayPtr dpy, GLXDrawable draw, ref ulong event_mask) parameters: - id: dpy - type: OpenTK.Graphics.Glx.Display + type: OpenTK.Graphics.Glx.DisplayPtr - id: draw type: OpenTK.Graphics.Glx.GLXDrawable - id: event_mask type: System.UInt64 - content.vb: Public Shared Sub GetSelectedEvent(dpy As Display, draw As GLXDrawable, event_mask As ULong) + content.vb: Public Shared Sub GetSelectedEvent(dpy As DisplayPtr, draw As GLXDrawable, event_mask As ULong) overload: OpenTK.Graphics.Glx.Glx.GetSelectedEvent* - nameWithType.vb: Glx.GetSelectedEvent(Display, GLXDrawable, ULong) - fullName.vb: OpenTK.Graphics.Glx.Glx.GetSelectedEvent(OpenTK.Graphics.Glx.Display, OpenTK.Graphics.Glx.GLXDrawable, ULong) - name.vb: GetSelectedEvent(Display, GLXDrawable, ULong) -- uid: OpenTK.Graphics.Glx.Glx.GetVisualFromFBConfig(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXFBConfig) - commentId: M:OpenTK.Graphics.Glx.Glx.GetVisualFromFBConfig(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXFBConfig) - id: GetVisualFromFBConfig(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXFBConfig) - parent: OpenTK.Graphics.Glx.Glx - langs: - - csharp - - vb - name: GetVisualFromFBConfig(ref Display, GLXFBConfig) - nameWithType: Glx.GetVisualFromFBConfig(ref Display, GLXFBConfig) - fullName: OpenTK.Graphics.Glx.Glx.GetVisualFromFBConfig(ref OpenTK.Graphics.Glx.Display, OpenTK.Graphics.Glx.GLXFBConfig) - type: Method - source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: GetVisualFromFBConfig - path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 215 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: v1.3] - - [entry point: glXGetVisualFromFBConfig] - -
- example: [] - syntax: - content: public static XVisualInfo* GetVisualFromFBConfig(ref Display dpy, GLXFBConfig config) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.Display - - id: config - type: OpenTK.Graphics.Glx.GLXFBConfig - return: - type: OpenTK.Graphics.Glx.XVisualInfo* - content.vb: Public Shared Function GetVisualFromFBConfig(dpy As Display, config As GLXFBConfig) As XVisualInfo* - overload: OpenTK.Graphics.Glx.Glx.GetVisualFromFBConfig* - nameWithType.vb: Glx.GetVisualFromFBConfig(Display, GLXFBConfig) - fullName.vb: OpenTK.Graphics.Glx.Glx.GetVisualFromFBConfig(OpenTK.Graphics.Glx.Display, OpenTK.Graphics.Glx.GLXFBConfig) - name.vb: GetVisualFromFBConfig(Display, GLXFBConfig) -- uid: OpenTK.Graphics.Glx.Glx.IsDirect(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXContext) - commentId: M:OpenTK.Graphics.Glx.Glx.IsDirect(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXContext) - id: IsDirect(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXContext) - parent: OpenTK.Graphics.Glx.Glx - langs: - - csharp - - vb - name: IsDirect(ref Display, GLXContext) - nameWithType: Glx.IsDirect(ref Display, GLXContext) - fullName: OpenTK.Graphics.Glx.Glx.IsDirect(ref OpenTK.Graphics.Glx.Display, OpenTK.Graphics.Glx.GLXContext) - type: Method - source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: IsDirect - path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 225 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: v1.0] - - [entry point: glXIsDirect] - -
- example: [] - syntax: - content: public static bool IsDirect(ref Display dpy, GLXContext ctx) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.Display - - id: ctx - type: OpenTK.Graphics.Glx.GLXContext - return: - type: System.Boolean - content.vb: Public Shared Function IsDirect(dpy As Display, ctx As GLXContext) As Boolean - overload: OpenTK.Graphics.Glx.Glx.IsDirect* - nameWithType.vb: Glx.IsDirect(Display, GLXContext) - fullName.vb: OpenTK.Graphics.Glx.Glx.IsDirect(OpenTK.Graphics.Glx.Display, OpenTK.Graphics.Glx.GLXContext) - name.vb: IsDirect(Display, GLXContext) -- uid: OpenTK.Graphics.Glx.Glx.MakeContextCurrent(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXDrawable,OpenTK.Graphics.Glx.GLXDrawable,OpenTK.Graphics.Glx.GLXContext) - commentId: M:OpenTK.Graphics.Glx.Glx.MakeContextCurrent(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXDrawable,OpenTK.Graphics.Glx.GLXDrawable,OpenTK.Graphics.Glx.GLXContext) - id: MakeContextCurrent(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXDrawable,OpenTK.Graphics.Glx.GLXDrawable,OpenTK.Graphics.Glx.GLXContext) - parent: OpenTK.Graphics.Glx.Glx - langs: - - csharp - - vb - name: MakeContextCurrent(ref Display, GLXDrawable, GLXDrawable, GLXContext) - nameWithType: Glx.MakeContextCurrent(ref Display, GLXDrawable, GLXDrawable, GLXContext) - fullName: OpenTK.Graphics.Glx.Glx.MakeContextCurrent(ref OpenTK.Graphics.Glx.Display, OpenTK.Graphics.Glx.GLXDrawable, OpenTK.Graphics.Glx.GLXDrawable, OpenTK.Graphics.Glx.GLXContext) - type: Method - source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: MakeContextCurrent - path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 235 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: v1.3] - - [entry point: glXMakeContextCurrent] - -
- example: [] - syntax: - content: public static bool MakeContextCurrent(ref Display dpy, GLXDrawable draw, GLXDrawable read, GLXContext ctx) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.Display - - id: draw - type: OpenTK.Graphics.Glx.GLXDrawable - - id: read - type: OpenTK.Graphics.Glx.GLXDrawable - - id: ctx - type: OpenTK.Graphics.Glx.GLXContext - return: - type: System.Boolean - content.vb: Public Shared Function MakeContextCurrent(dpy As Display, draw As GLXDrawable, read As GLXDrawable, ctx As GLXContext) As Boolean - overload: OpenTK.Graphics.Glx.Glx.MakeContextCurrent* - nameWithType.vb: Glx.MakeContextCurrent(Display, GLXDrawable, GLXDrawable, GLXContext) - fullName.vb: OpenTK.Graphics.Glx.Glx.MakeContextCurrent(OpenTK.Graphics.Glx.Display, OpenTK.Graphics.Glx.GLXDrawable, OpenTK.Graphics.Glx.GLXDrawable, OpenTK.Graphics.Glx.GLXContext) - name.vb: MakeContextCurrent(Display, GLXDrawable, GLXDrawable, GLXContext) -- uid: OpenTK.Graphics.Glx.Glx.MakeCurrent(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXDrawable,OpenTK.Graphics.Glx.GLXContext) - commentId: M:OpenTK.Graphics.Glx.Glx.MakeCurrent(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXDrawable,OpenTK.Graphics.Glx.GLXContext) - id: MakeCurrent(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXDrawable,OpenTK.Graphics.Glx.GLXContext) - parent: OpenTK.Graphics.Glx.Glx - langs: - - csharp - - vb - name: MakeCurrent(ref Display, GLXDrawable, GLXContext) - nameWithType: Glx.MakeCurrent(ref Display, GLXDrawable, GLXContext) - fullName: OpenTK.Graphics.Glx.Glx.MakeCurrent(ref OpenTK.Graphics.Glx.Display, OpenTK.Graphics.Glx.GLXDrawable, OpenTK.Graphics.Glx.GLXContext) - type: Method - source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: MakeCurrent - path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 245 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: v1.0] - - [entry point: glXMakeCurrent] - -
- example: [] - syntax: - content: public static bool MakeCurrent(ref Display dpy, GLXDrawable drawable, GLXContext ctx) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.Display - - id: drawable - type: OpenTK.Graphics.Glx.GLXDrawable - - id: ctx - type: OpenTK.Graphics.Glx.GLXContext - return: - type: System.Boolean - content.vb: Public Shared Function MakeCurrent(dpy As Display, drawable As GLXDrawable, ctx As GLXContext) As Boolean - overload: OpenTK.Graphics.Glx.Glx.MakeCurrent* - nameWithType.vb: Glx.MakeCurrent(Display, GLXDrawable, GLXContext) - fullName.vb: OpenTK.Graphics.Glx.Glx.MakeCurrent(OpenTK.Graphics.Glx.Display, OpenTK.Graphics.Glx.GLXDrawable, OpenTK.Graphics.Glx.GLXContext) - name.vb: MakeCurrent(Display, GLXDrawable, GLXContext) -- uid: OpenTK.Graphics.Glx.Glx.QueryContext(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXContext,System.Int32,System.Int32@) - commentId: M:OpenTK.Graphics.Glx.Glx.QueryContext(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXContext,System.Int32,System.Int32@) - id: QueryContext(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXContext,System.Int32,System.Int32@) + nameWithType.vb: Glx.GetSelectedEvent(DisplayPtr, GLXDrawable, ULong) + fullName.vb: OpenTK.Graphics.Glx.Glx.GetSelectedEvent(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, ULong) + name.vb: GetSelectedEvent(DisplayPtr, GLXDrawable, ULong) +- uid: OpenTK.Graphics.Glx.Glx.QueryContext(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext,System.Int32,System.Int32@) + commentId: M:OpenTK.Graphics.Glx.Glx.QueryContext(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext,System.Int32,System.Int32@) + id: QueryContext(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext,System.Int32,System.Int32@) parent: OpenTK.Graphics.Glx.Glx langs: - csharp - vb - name: QueryContext(ref Display, GLXContext, int, ref int) - nameWithType: Glx.QueryContext(ref Display, GLXContext, int, ref int) - fullName: OpenTK.Graphics.Glx.Glx.QueryContext(ref OpenTK.Graphics.Glx.Display, OpenTK.Graphics.Glx.GLXContext, int, ref int) + name: QueryContext(DisplayPtr, GLXContext, int, ref int) + nameWithType: Glx.QueryContext(DisplayPtr, GLXContext, int, ref int) + fullName: OpenTK.Graphics.Glx.Glx.QueryContext(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXContext, int, ref int) type: Method source: remote: @@ -2634,7 +2044,7 @@ items: repo: https://github.com/opentk/opentk.git id: QueryContext path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 255 + startLine: 122 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -2646,10 +2056,10 @@ items:
example: [] syntax: - content: public static int QueryContext(ref Display dpy, GLXContext ctx, int attribute, ref int value) + content: public static int QueryContext(DisplayPtr dpy, GLXContext ctx, int attribute, ref int value) parameters: - id: dpy - type: OpenTK.Graphics.Glx.Display + type: OpenTK.Graphics.Glx.DisplayPtr - id: ctx type: OpenTK.Graphics.Glx.GLXContext - id: attribute @@ -2658,21 +2068,21 @@ items: type: System.Int32 return: type: System.Int32 - content.vb: Public Shared Function QueryContext(dpy As Display, ctx As GLXContext, attribute As Integer, value As Integer) As Integer + content.vb: Public Shared Function QueryContext(dpy As DisplayPtr, ctx As GLXContext, attribute As Integer, value As Integer) As Integer overload: OpenTK.Graphics.Glx.Glx.QueryContext* - nameWithType.vb: Glx.QueryContext(Display, GLXContext, Integer, Integer) - fullName.vb: OpenTK.Graphics.Glx.Glx.QueryContext(OpenTK.Graphics.Glx.Display, OpenTK.Graphics.Glx.GLXContext, Integer, Integer) - name.vb: QueryContext(Display, GLXContext, Integer, Integer) -- uid: OpenTK.Graphics.Glx.Glx.QueryDrawable(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXDrawable,System.Int32,System.UInt32@) - commentId: M:OpenTK.Graphics.Glx.Glx.QueryDrawable(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXDrawable,System.Int32,System.UInt32@) - id: QueryDrawable(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXDrawable,System.Int32,System.UInt32@) + nameWithType.vb: Glx.QueryContext(DisplayPtr, GLXContext, Integer, Integer) + fullName.vb: OpenTK.Graphics.Glx.Glx.QueryContext(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXContext, Integer, Integer) + name.vb: QueryContext(DisplayPtr, GLXContext, Integer, Integer) +- uid: OpenTK.Graphics.Glx.Glx.QueryDrawable(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32,System.UInt32@) + commentId: M:OpenTK.Graphics.Glx.Glx.QueryDrawable(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32,System.UInt32@) + id: QueryDrawable(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32,System.UInt32@) parent: OpenTK.Graphics.Glx.Glx langs: - csharp - vb - name: QueryDrawable(ref Display, GLXDrawable, int, ref uint) - nameWithType: Glx.QueryDrawable(ref Display, GLXDrawable, int, ref uint) - fullName: OpenTK.Graphics.Glx.Glx.QueryDrawable(ref OpenTK.Graphics.Glx.Display, OpenTK.Graphics.Glx.GLXDrawable, int, ref uint) + name: QueryDrawable(DisplayPtr, GLXDrawable, int, ref uint) + nameWithType: Glx.QueryDrawable(DisplayPtr, GLXDrawable, int, ref uint) + fullName: OpenTK.Graphics.Glx.Glx.QueryDrawable(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, int, ref uint) type: Method source: remote: @@ -2681,7 +2091,7 @@ items: repo: https://github.com/opentk/opentk.git id: QueryDrawable path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 266 + startLine: 132 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -2693,31 +2103,31 @@ items:
example: [] syntax: - content: public static void QueryDrawable(ref Display dpy, GLXDrawable draw, int attribute, ref uint value) + content: public static void QueryDrawable(DisplayPtr dpy, GLXDrawable draw, int attribute, ref uint value) parameters: - id: dpy - type: OpenTK.Graphics.Glx.Display + type: OpenTK.Graphics.Glx.DisplayPtr - id: draw type: OpenTK.Graphics.Glx.GLXDrawable - id: attribute type: System.Int32 - id: value type: System.UInt32 - content.vb: Public Shared Sub QueryDrawable(dpy As Display, draw As GLXDrawable, attribute As Integer, value As UInteger) + content.vb: Public Shared Sub QueryDrawable(dpy As DisplayPtr, draw As GLXDrawable, attribute As Integer, value As UInteger) overload: OpenTK.Graphics.Glx.Glx.QueryDrawable* - nameWithType.vb: Glx.QueryDrawable(Display, GLXDrawable, Integer, UInteger) - fullName.vb: OpenTK.Graphics.Glx.Glx.QueryDrawable(OpenTK.Graphics.Glx.Display, OpenTK.Graphics.Glx.GLXDrawable, Integer, UInteger) - name.vb: QueryDrawable(Display, GLXDrawable, Integer, UInteger) -- uid: OpenTK.Graphics.Glx.Glx.QueryExtension(OpenTK.Graphics.Glx.Display@,System.Int32@,System.Int32@) - commentId: M:OpenTK.Graphics.Glx.Glx.QueryExtension(OpenTK.Graphics.Glx.Display@,System.Int32@,System.Int32@) - id: QueryExtension(OpenTK.Graphics.Glx.Display@,System.Int32@,System.Int32@) + nameWithType.vb: Glx.QueryDrawable(DisplayPtr, GLXDrawable, Integer, UInteger) + fullName.vb: OpenTK.Graphics.Glx.Glx.QueryDrawable(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, Integer, UInteger) + name.vb: QueryDrawable(DisplayPtr, GLXDrawable, Integer, UInteger) +- uid: OpenTK.Graphics.Glx.Glx.QueryExtension(OpenTK.Graphics.Glx.DisplayPtr,System.Int32@,System.Int32@) + commentId: M:OpenTK.Graphics.Glx.Glx.QueryExtension(OpenTK.Graphics.Glx.DisplayPtr,System.Int32@,System.Int32@) + id: QueryExtension(OpenTK.Graphics.Glx.DisplayPtr,System.Int32@,System.Int32@) parent: OpenTK.Graphics.Glx.Glx langs: - csharp - vb - name: QueryExtension(ref Display, ref int, ref int) - nameWithType: Glx.QueryExtension(ref Display, ref int, ref int) - fullName: OpenTK.Graphics.Glx.Glx.QueryExtension(ref OpenTK.Graphics.Glx.Display, ref int, ref int) + name: QueryExtension(DisplayPtr, ref int, ref int) + nameWithType: Glx.QueryExtension(DisplayPtr, ref int, ref int) + fullName: OpenTK.Graphics.Glx.Glx.QueryExtension(OpenTK.Graphics.Glx.DisplayPtr, ref int, ref int) type: Method source: remote: @@ -2726,7 +2136,7 @@ items: repo: https://github.com/opentk/opentk.git id: QueryExtension path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 275 + startLine: 140 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -2738,31 +2148,31 @@ items:
example: [] syntax: - content: public static bool QueryExtension(ref Display dpy, ref int errorb, ref int @event) + content: public static bool QueryExtension(DisplayPtr dpy, ref int errorb, ref int @event) parameters: - id: dpy - type: OpenTK.Graphics.Glx.Display + type: OpenTK.Graphics.Glx.DisplayPtr - id: errorb type: System.Int32 - id: event type: System.Int32 return: type: System.Boolean - content.vb: Public Shared Function QueryExtension(dpy As Display, errorb As Integer, [event] As Integer) As Boolean + content.vb: Public Shared Function QueryExtension(dpy As DisplayPtr, errorb As Integer, [event] As Integer) As Boolean overload: OpenTK.Graphics.Glx.Glx.QueryExtension* - nameWithType.vb: Glx.QueryExtension(Display, Integer, Integer) - fullName.vb: OpenTK.Graphics.Glx.Glx.QueryExtension(OpenTK.Graphics.Glx.Display, Integer, Integer) - name.vb: QueryExtension(Display, Integer, Integer) -- uid: OpenTK.Graphics.Glx.Glx.QueryExtensionsString(OpenTK.Graphics.Glx.Display@,System.Int32) - commentId: M:OpenTK.Graphics.Glx.Glx.QueryExtensionsString(OpenTK.Graphics.Glx.Display@,System.Int32) - id: QueryExtensionsString(OpenTK.Graphics.Glx.Display@,System.Int32) + nameWithType.vb: Glx.QueryExtension(DisplayPtr, Integer, Integer) + fullName.vb: OpenTK.Graphics.Glx.Glx.QueryExtension(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer) + name.vb: QueryExtension(DisplayPtr, Integer, Integer) +- uid: OpenTK.Graphics.Glx.Glx.QueryExtensionsString(OpenTK.Graphics.Glx.DisplayPtr,System.Int32) + commentId: M:OpenTK.Graphics.Glx.Glx.QueryExtensionsString(OpenTK.Graphics.Glx.DisplayPtr,System.Int32) + id: QueryExtensionsString(OpenTK.Graphics.Glx.DisplayPtr,System.Int32) parent: OpenTK.Graphics.Glx.Glx langs: - csharp - vb - name: QueryExtensionsString(ref Display, int) - nameWithType: Glx.QueryExtensionsString(ref Display, int) - fullName: OpenTK.Graphics.Glx.Glx.QueryExtensionsString(ref OpenTK.Graphics.Glx.Display, int) + name: QueryExtensionsString(DisplayPtr, int) + nameWithType: Glx.QueryExtensionsString(DisplayPtr, int) + fullName: OpenTK.Graphics.Glx.Glx.QueryExtensionsString(OpenTK.Graphics.Glx.DisplayPtr, int) type: Method source: remote: @@ -2771,41 +2181,35 @@ items: repo: https://github.com/opentk/opentk.git id: QueryExtensionsString path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 287 + startLine: 151 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx - summary: >- - [requires: v1.1] - - [entry point: glXQueryExtensionsString] - -
example: [] syntax: - content: public static string? QueryExtensionsString(ref Display dpy, int screen) + content: public static string? QueryExtensionsString(DisplayPtr dpy, int screen) parameters: - id: dpy - type: OpenTK.Graphics.Glx.Display + type: OpenTK.Graphics.Glx.DisplayPtr - id: screen type: System.Int32 return: type: System.String - content.vb: Public Shared Function QueryExtensionsString(dpy As Display, screen As Integer) As String + content.vb: Public Shared Function QueryExtensionsString(dpy As DisplayPtr, screen As Integer) As String overload: OpenTK.Graphics.Glx.Glx.QueryExtensionsString* - nameWithType.vb: Glx.QueryExtensionsString(Display, Integer) - fullName.vb: OpenTK.Graphics.Glx.Glx.QueryExtensionsString(OpenTK.Graphics.Glx.Display, Integer) - name.vb: QueryExtensionsString(Display, Integer) -- uid: OpenTK.Graphics.Glx.Glx.QueryServerString(OpenTK.Graphics.Glx.Display@,System.Int32,System.Int32) - commentId: M:OpenTK.Graphics.Glx.Glx.QueryServerString(OpenTK.Graphics.Glx.Display@,System.Int32,System.Int32) - id: QueryServerString(OpenTK.Graphics.Glx.Display@,System.Int32,System.Int32) + nameWithType.vb: Glx.QueryExtensionsString(DisplayPtr, Integer) + fullName.vb: OpenTK.Graphics.Glx.Glx.QueryExtensionsString(OpenTK.Graphics.Glx.DisplayPtr, Integer) + name.vb: QueryExtensionsString(DisplayPtr, Integer) +- uid: OpenTK.Graphics.Glx.Glx.QueryServerString(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32) + commentId: M:OpenTK.Graphics.Glx.Glx.QueryServerString(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32) + id: QueryServerString(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32) parent: OpenTK.Graphics.Glx.Glx langs: - csharp - vb - name: QueryServerString(ref Display, int, int) - nameWithType: Glx.QueryServerString(ref Display, int, int) - fullName: OpenTK.Graphics.Glx.Glx.QueryServerString(ref OpenTK.Graphics.Glx.Display, int, int) + name: QueryServerString(DisplayPtr, int, int) + nameWithType: Glx.QueryServerString(DisplayPtr, int, int) + fullName: OpenTK.Graphics.Glx.Glx.QueryServerString(OpenTK.Graphics.Glx.DisplayPtr, int, int) type: Method source: remote: @@ -2814,43 +2218,37 @@ items: repo: https://github.com/opentk/opentk.git id: QueryServerString path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 299 + startLine: 160 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx - summary: >- - [requires: v1.1] - - [entry point: glXQueryServerString] - -
example: [] syntax: - content: public static string? QueryServerString(ref Display dpy, int screen, int name) + content: public static string? QueryServerString(DisplayPtr dpy, int screen, int name) parameters: - id: dpy - type: OpenTK.Graphics.Glx.Display + type: OpenTK.Graphics.Glx.DisplayPtr - id: screen type: System.Int32 - id: name type: System.Int32 return: type: System.String - content.vb: Public Shared Function QueryServerString(dpy As Display, screen As Integer, name As Integer) As String + content.vb: Public Shared Function QueryServerString(dpy As DisplayPtr, screen As Integer, name As Integer) As String overload: OpenTK.Graphics.Glx.Glx.QueryServerString* - nameWithType.vb: Glx.QueryServerString(Display, Integer, Integer) - fullName.vb: OpenTK.Graphics.Glx.Glx.QueryServerString(OpenTK.Graphics.Glx.Display, Integer, Integer) - name.vb: QueryServerString(Display, Integer, Integer) -- uid: OpenTK.Graphics.Glx.Glx.QueryVersion(OpenTK.Graphics.Glx.Display@,System.Int32@,System.Int32@) - commentId: M:OpenTK.Graphics.Glx.Glx.QueryVersion(OpenTK.Graphics.Glx.Display@,System.Int32@,System.Int32@) - id: QueryVersion(OpenTK.Graphics.Glx.Display@,System.Int32@,System.Int32@) + nameWithType.vb: Glx.QueryServerString(DisplayPtr, Integer, Integer) + fullName.vb: OpenTK.Graphics.Glx.Glx.QueryServerString(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer) + name.vb: QueryServerString(DisplayPtr, Integer, Integer) +- uid: OpenTK.Graphics.Glx.Glx.QueryVersion(OpenTK.Graphics.Glx.DisplayPtr,System.Int32@,System.Int32@) + commentId: M:OpenTK.Graphics.Glx.Glx.QueryVersion(OpenTK.Graphics.Glx.DisplayPtr,System.Int32@,System.Int32@) + id: QueryVersion(OpenTK.Graphics.Glx.DisplayPtr,System.Int32@,System.Int32@) parent: OpenTK.Graphics.Glx.Glx langs: - csharp - vb - name: QueryVersion(ref Display, ref int, ref int) - nameWithType: Glx.QueryVersion(ref Display, ref int, ref int) - fullName: OpenTK.Graphics.Glx.Glx.QueryVersion(ref OpenTK.Graphics.Glx.Display, ref int, ref int) + name: QueryVersion(DisplayPtr, ref int, ref int) + nameWithType: Glx.QueryVersion(DisplayPtr, ref int, ref int) + fullName: OpenTK.Graphics.Glx.Glx.QueryVersion(OpenTK.Graphics.Glx.DisplayPtr, ref int, ref int) type: Method source: remote: @@ -2859,7 +2257,7 @@ items: repo: https://github.com/opentk/opentk.git id: QueryVersion path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 311 + startLine: 169 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -2871,105 +2269,21 @@ items:
example: [] syntax: - content: public static bool QueryVersion(ref Display dpy, ref int maj, ref int min) + content: public static bool QueryVersion(DisplayPtr dpy, ref int maj, ref int min) parameters: - id: dpy - type: OpenTK.Graphics.Glx.Display + type: OpenTK.Graphics.Glx.DisplayPtr - id: maj type: System.Int32 - id: min type: System.Int32 return: type: System.Boolean - content.vb: Public Shared Function QueryVersion(dpy As Display, maj As Integer, min As Integer) As Boolean + content.vb: Public Shared Function QueryVersion(dpy As DisplayPtr, maj As Integer, min As Integer) As Boolean overload: OpenTK.Graphics.Glx.Glx.QueryVersion* - nameWithType.vb: Glx.QueryVersion(Display, Integer, Integer) - fullName.vb: OpenTK.Graphics.Glx.Glx.QueryVersion(OpenTK.Graphics.Glx.Display, Integer, Integer) - name.vb: QueryVersion(Display, Integer, Integer) -- uid: OpenTK.Graphics.Glx.Glx.SelectEvent(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXDrawable,System.UInt64) - commentId: M:OpenTK.Graphics.Glx.Glx.SelectEvent(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXDrawable,System.UInt64) - id: SelectEvent(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXDrawable,System.UInt64) - parent: OpenTK.Graphics.Glx.Glx - langs: - - csharp - - vb - name: SelectEvent(ref Display, GLXDrawable, ulong) - nameWithType: Glx.SelectEvent(ref Display, GLXDrawable, ulong) - fullName: OpenTK.Graphics.Glx.Glx.SelectEvent(ref OpenTK.Graphics.Glx.Display, OpenTK.Graphics.Glx.GLXDrawable, ulong) - type: Method - source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: SelectEvent - path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 323 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: v1.3] - - [entry point: glXSelectEvent] - -
- example: [] - syntax: - content: public static void SelectEvent(ref Display dpy, GLXDrawable draw, ulong event_mask) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.Display - - id: draw - type: OpenTK.Graphics.Glx.GLXDrawable - - id: event_mask - type: System.UInt64 - content.vb: Public Shared Sub SelectEvent(dpy As Display, draw As GLXDrawable, event_mask As ULong) - overload: OpenTK.Graphics.Glx.Glx.SelectEvent* - nameWithType.vb: Glx.SelectEvent(Display, GLXDrawable, ULong) - fullName.vb: OpenTK.Graphics.Glx.Glx.SelectEvent(OpenTK.Graphics.Glx.Display, OpenTK.Graphics.Glx.GLXDrawable, ULong) - name.vb: SelectEvent(Display, GLXDrawable, ULong) -- uid: OpenTK.Graphics.Glx.Glx.SwapBuffers(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXDrawable) - commentId: M:OpenTK.Graphics.Glx.Glx.SwapBuffers(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXDrawable) - id: SwapBuffers(OpenTK.Graphics.Glx.Display@,OpenTK.Graphics.Glx.GLXDrawable) - parent: OpenTK.Graphics.Glx.Glx - langs: - - csharp - - vb - name: SwapBuffers(ref Display, GLXDrawable) - nameWithType: Glx.SwapBuffers(ref Display, GLXDrawable) - fullName: OpenTK.Graphics.Glx.Glx.SwapBuffers(ref OpenTK.Graphics.Glx.Display, OpenTK.Graphics.Glx.GLXDrawable) - type: Method - source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: SwapBuffers - path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 331 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: v1.0] - - [entry point: glXSwapBuffers] - -
- example: [] - syntax: - content: public static void SwapBuffers(ref Display dpy, GLXDrawable drawable) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.Display - - id: drawable - type: OpenTK.Graphics.Glx.GLXDrawable - content.vb: Public Shared Sub SwapBuffers(dpy As Display, drawable As GLXDrawable) - overload: OpenTK.Graphics.Glx.Glx.SwapBuffers* - nameWithType.vb: Glx.SwapBuffers(Display, GLXDrawable) - fullName.vb: OpenTK.Graphics.Glx.Glx.SwapBuffers(OpenTK.Graphics.Glx.Display, OpenTK.Graphics.Glx.GLXDrawable) - name.vb: SwapBuffers(Display, GLXDrawable) + nameWithType.vb: Glx.QueryVersion(DisplayPtr, Integer, Integer) + fullName.vb: OpenTK.Graphics.Glx.Glx.QueryVersion(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer) + name.vb: QueryVersion(DisplayPtr, Integer, Integer) references: - uid: OpenTK.Graphics.Glx commentId: N:OpenTK.Graphics.Glx @@ -3240,26 +2554,17 @@ references: fullName: System - uid: OpenTK.Graphics.Glx.Glx.ChooseFBConfig* commentId: Overload:OpenTK.Graphics.Glx.Glx.ChooseFBConfig - href: OpenTK.Graphics.Glx.Glx.html#OpenTK_Graphics_Glx_Glx_ChooseFBConfig_OpenTK_Graphics_Glx_Display__System_Int32_System_Int32__System_Int32__ + href: OpenTK.Graphics.Glx.Glx.html#OpenTK_Graphics_Glx_Glx_ChooseFBConfig_OpenTK_Graphics_Glx_DisplayPtr_System_Int32_System_Int32__System_Int32__ name: ChooseFBConfig nameWithType: Glx.ChooseFBConfig fullName: OpenTK.Graphics.Glx.Glx.ChooseFBConfig -- uid: OpenTK.Graphics.Glx.Display* - isExternal: true - href: OpenTK.Graphics.Glx.Display.html - name: Display* - nameWithType: Display* - fullName: OpenTK.Graphics.Glx.Display* - spec.csharp: - - uid: OpenTK.Graphics.Glx.Display - name: Display - href: OpenTK.Graphics.Glx.Display.html - - name: '*' - spec.vb: - - uid: OpenTK.Graphics.Glx.Display - name: Display - href: OpenTK.Graphics.Glx.Display.html - - name: '*' +- uid: OpenTK.Graphics.Glx.DisplayPtr + commentId: T:OpenTK.Graphics.Glx.DisplayPtr + parent: OpenTK.Graphics.Glx + href: OpenTK.Graphics.Glx.DisplayPtr.html + name: DisplayPtr + nameWithType: DisplayPtr + fullName: OpenTK.Graphics.Glx.DisplayPtr - uid: System.Int32 commentId: T:System.Int32 parent: System @@ -3310,29 +2615,20 @@ references: - name: '*' - uid: OpenTK.Graphics.Glx.Glx.ChooseVisual* commentId: Overload:OpenTK.Graphics.Glx.Glx.ChooseVisual - href: OpenTK.Graphics.Glx.Glx.html#OpenTK_Graphics_Glx_Glx_ChooseVisual_OpenTK_Graphics_Glx_Display__System_Int32_System_Int32__ + href: OpenTK.Graphics.Glx.Glx.html#OpenTK_Graphics_Glx_Glx_ChooseVisual_OpenTK_Graphics_Glx_DisplayPtr_System_Int32_System_Int32__ name: ChooseVisual nameWithType: Glx.ChooseVisual fullName: OpenTK.Graphics.Glx.Glx.ChooseVisual -- uid: OpenTK.Graphics.Glx.XVisualInfo* - isExternal: true - href: OpenTK.Graphics.Glx.XVisualInfo.html - name: XVisualInfo* - nameWithType: XVisualInfo* - fullName: OpenTK.Graphics.Glx.XVisualInfo* - spec.csharp: - - uid: OpenTK.Graphics.Glx.XVisualInfo - name: XVisualInfo - href: OpenTK.Graphics.Glx.XVisualInfo.html - - name: '*' - spec.vb: - - uid: OpenTK.Graphics.Glx.XVisualInfo - name: XVisualInfo - href: OpenTK.Graphics.Glx.XVisualInfo.html - - name: '*' +- uid: OpenTK.Graphics.Glx.XVisualInfoPtr + commentId: T:OpenTK.Graphics.Glx.XVisualInfoPtr + parent: OpenTK.Graphics.Glx + href: OpenTK.Graphics.Glx.XVisualInfoPtr.html + name: XVisualInfoPtr + nameWithType: XVisualInfoPtr + fullName: OpenTK.Graphics.Glx.XVisualInfoPtr - uid: OpenTK.Graphics.Glx.Glx.CopyContext* commentId: Overload:OpenTK.Graphics.Glx.Glx.CopyContext - href: OpenTK.Graphics.Glx.Glx.html#OpenTK_Graphics_Glx_Glx_CopyContext_OpenTK_Graphics_Glx_Display__OpenTK_Graphics_Glx_GLXContext_OpenTK_Graphics_Glx_GLXContext_System_UInt64_ + href: OpenTK.Graphics.Glx.Glx.html#OpenTK_Graphics_Glx_Glx_CopyContext_OpenTK_Graphics_Glx_DisplayPtr_OpenTK_Graphics_Glx_GLXContext_OpenTK_Graphics_Glx_GLXContext_System_UInt64_ name: CopyContext nameWithType: Glx.CopyContext fullName: OpenTK.Graphics.Glx.Glx.CopyContext @@ -3356,7 +2652,7 @@ references: name.vb: ULong - uid: OpenTK.Graphics.Glx.Glx.CreateContext* commentId: Overload:OpenTK.Graphics.Glx.Glx.CreateContext - href: OpenTK.Graphics.Glx.Glx.html#OpenTK_Graphics_Glx_Glx_CreateContext_OpenTK_Graphics_Glx_Display__OpenTK_Graphics_Glx_XVisualInfo__OpenTK_Graphics_Glx_GLXContext_System_Boolean_ + href: OpenTK.Graphics.Glx.Glx.html#OpenTK_Graphics_Glx_Glx_CreateContext_OpenTK_Graphics_Glx_DisplayPtr_OpenTK_Graphics_Glx_XVisualInfoPtr_OpenTK_Graphics_Glx_GLXContext_System_Boolean_ name: CreateContext nameWithType: Glx.CreateContext fullName: OpenTK.Graphics.Glx.Glx.CreateContext @@ -3373,7 +2669,7 @@ references: name.vb: Boolean - uid: OpenTK.Graphics.Glx.Glx.CreateGLXPixmap* commentId: Overload:OpenTK.Graphics.Glx.Glx.CreateGLXPixmap - href: OpenTK.Graphics.Glx.Glx.html#OpenTK_Graphics_Glx_Glx_CreateGLXPixmap_OpenTK_Graphics_Glx_Display__OpenTK_Graphics_Glx_XVisualInfo__OpenTK_Graphics_Glx_Pixmap_ + href: OpenTK.Graphics.Glx.Glx.html#OpenTK_Graphics_Glx_Glx_CreateGLXPixmap_OpenTK_Graphics_Glx_DisplayPtr_OpenTK_Graphics_Glx_XVisualInfoPtr_OpenTK_Graphics_Glx_Pixmap_ name: CreateGLXPixmap nameWithType: Glx.CreateGLXPixmap fullName: OpenTK.Graphics.Glx.Glx.CreateGLXPixmap @@ -3393,7 +2689,7 @@ references: fullName: OpenTK.Graphics.Glx.GLXPixmap - uid: OpenTK.Graphics.Glx.Glx.CreateNewContext* commentId: Overload:OpenTK.Graphics.Glx.Glx.CreateNewContext - href: OpenTK.Graphics.Glx.Glx.html#OpenTK_Graphics_Glx_Glx_CreateNewContext_OpenTK_Graphics_Glx_Display__OpenTK_Graphics_Glx_GLXFBConfig_System_Int32_OpenTK_Graphics_Glx_GLXContext_System_Boolean_ + href: OpenTK.Graphics.Glx.Glx.html#OpenTK_Graphics_Glx_Glx_CreateNewContext_OpenTK_Graphics_Glx_DisplayPtr_OpenTK_Graphics_Glx_GLXFBConfig_System_Int32_OpenTK_Graphics_Glx_GLXContext_System_Boolean_ name: CreateNewContext nameWithType: Glx.CreateNewContext fullName: OpenTK.Graphics.Glx.Glx.CreateNewContext @@ -3406,7 +2702,7 @@ references: fullName: OpenTK.Graphics.Glx.GLXFBConfig - uid: OpenTK.Graphics.Glx.Glx.CreatePbuffer* commentId: Overload:OpenTK.Graphics.Glx.Glx.CreatePbuffer - href: OpenTK.Graphics.Glx.Glx.html#OpenTK_Graphics_Glx_Glx_CreatePbuffer_OpenTK_Graphics_Glx_Display__OpenTK_Graphics_Glx_GLXFBConfig_System_Int32__ + href: OpenTK.Graphics.Glx.Glx.html#OpenTK_Graphics_Glx_Glx_CreatePbuffer_OpenTK_Graphics_Glx_DisplayPtr_OpenTK_Graphics_Glx_GLXFBConfig_System_Int32__ name: CreatePbuffer nameWithType: Glx.CreatePbuffer fullName: OpenTK.Graphics.Glx.Glx.CreatePbuffer @@ -3419,13 +2715,13 @@ references: fullName: OpenTK.Graphics.Glx.GLXPbuffer - uid: OpenTK.Graphics.Glx.Glx.CreatePixmap* commentId: Overload:OpenTK.Graphics.Glx.Glx.CreatePixmap - href: OpenTK.Graphics.Glx.Glx.html#OpenTK_Graphics_Glx_Glx_CreatePixmap_OpenTK_Graphics_Glx_Display__OpenTK_Graphics_Glx_GLXFBConfig_OpenTK_Graphics_Glx_Pixmap_System_Int32__ + href: OpenTK.Graphics.Glx.Glx.html#OpenTK_Graphics_Glx_Glx_CreatePixmap_OpenTK_Graphics_Glx_DisplayPtr_OpenTK_Graphics_Glx_GLXFBConfig_OpenTK_Graphics_Glx_Pixmap_System_Int32__ name: CreatePixmap nameWithType: Glx.CreatePixmap fullName: OpenTK.Graphics.Glx.Glx.CreatePixmap - uid: OpenTK.Graphics.Glx.Glx.CreateWindow* commentId: Overload:OpenTK.Graphics.Glx.Glx.CreateWindow - href: OpenTK.Graphics.Glx.Glx.html#OpenTK_Graphics_Glx_Glx_CreateWindow_OpenTK_Graphics_Glx_Display__OpenTK_Graphics_Glx_GLXFBConfig_OpenTK_Graphics_Glx_Window_System_Int32__ + href: OpenTK.Graphics.Glx.Glx.html#OpenTK_Graphics_Glx_Glx_CreateWindow_OpenTK_Graphics_Glx_DisplayPtr_OpenTK_Graphics_Glx_GLXFBConfig_OpenTK_Graphics_Glx_Window_System_Int32__ name: CreateWindow nameWithType: Glx.CreateWindow fullName: OpenTK.Graphics.Glx.Glx.CreateWindow @@ -3445,40 +2741,40 @@ references: fullName: OpenTK.Graphics.Glx.GLXWindow - uid: OpenTK.Graphics.Glx.Glx.DestroyContext* commentId: Overload:OpenTK.Graphics.Glx.Glx.DestroyContext - href: OpenTK.Graphics.Glx.Glx.html#OpenTK_Graphics_Glx_Glx_DestroyContext_OpenTK_Graphics_Glx_Display__OpenTK_Graphics_Glx_GLXContext_ + href: OpenTK.Graphics.Glx.Glx.html#OpenTK_Graphics_Glx_Glx_DestroyContext_OpenTK_Graphics_Glx_DisplayPtr_OpenTK_Graphics_Glx_GLXContext_ name: DestroyContext nameWithType: Glx.DestroyContext fullName: OpenTK.Graphics.Glx.Glx.DestroyContext - uid: OpenTK.Graphics.Glx.Glx.DestroyGLXPixmap* commentId: Overload:OpenTK.Graphics.Glx.Glx.DestroyGLXPixmap - href: OpenTK.Graphics.Glx.Glx.html#OpenTK_Graphics_Glx_Glx_DestroyGLXPixmap_OpenTK_Graphics_Glx_Display__OpenTK_Graphics_Glx_GLXPixmap_ + href: OpenTK.Graphics.Glx.Glx.html#OpenTK_Graphics_Glx_Glx_DestroyGLXPixmap_OpenTK_Graphics_Glx_DisplayPtr_OpenTK_Graphics_Glx_GLXPixmap_ name: DestroyGLXPixmap nameWithType: Glx.DestroyGLXPixmap fullName: OpenTK.Graphics.Glx.Glx.DestroyGLXPixmap - uid: OpenTK.Graphics.Glx.Glx.DestroyPbuffer* commentId: Overload:OpenTK.Graphics.Glx.Glx.DestroyPbuffer - href: OpenTK.Graphics.Glx.Glx.html#OpenTK_Graphics_Glx_Glx_DestroyPbuffer_OpenTK_Graphics_Glx_Display__OpenTK_Graphics_Glx_GLXPbuffer_ + href: OpenTK.Graphics.Glx.Glx.html#OpenTK_Graphics_Glx_Glx_DestroyPbuffer_OpenTK_Graphics_Glx_DisplayPtr_OpenTK_Graphics_Glx_GLXPbuffer_ name: DestroyPbuffer nameWithType: Glx.DestroyPbuffer fullName: OpenTK.Graphics.Glx.Glx.DestroyPbuffer - uid: OpenTK.Graphics.Glx.Glx.DestroyPixmap* commentId: Overload:OpenTK.Graphics.Glx.Glx.DestroyPixmap - href: OpenTK.Graphics.Glx.Glx.html#OpenTK_Graphics_Glx_Glx_DestroyPixmap_OpenTK_Graphics_Glx_Display__OpenTK_Graphics_Glx_GLXPixmap_ + href: OpenTK.Graphics.Glx.Glx.html#OpenTK_Graphics_Glx_Glx_DestroyPixmap_OpenTK_Graphics_Glx_DisplayPtr_OpenTK_Graphics_Glx_GLXPixmap_ name: DestroyPixmap nameWithType: Glx.DestroyPixmap fullName: OpenTK.Graphics.Glx.Glx.DestroyPixmap - uid: OpenTK.Graphics.Glx.Glx.DestroyWindow* commentId: Overload:OpenTK.Graphics.Glx.Glx.DestroyWindow - href: OpenTK.Graphics.Glx.Glx.html#OpenTK_Graphics_Glx_Glx_DestroyWindow_OpenTK_Graphics_Glx_Display__OpenTK_Graphics_Glx_GLXWindow_ + href: OpenTK.Graphics.Glx.Glx.html#OpenTK_Graphics_Glx_Glx_DestroyWindow_OpenTK_Graphics_Glx_DisplayPtr_OpenTK_Graphics_Glx_GLXWindow_ name: DestroyWindow nameWithType: Glx.DestroyWindow fullName: OpenTK.Graphics.Glx.Glx.DestroyWindow -- uid: OpenTK.Graphics.Glx.Glx.GetClientString* - commentId: Overload:OpenTK.Graphics.Glx.Glx.GetClientString - href: OpenTK.Graphics.Glx.Glx.html#OpenTK_Graphics_Glx_Glx_GetClientString_OpenTK_Graphics_Glx_Display__System_Int32_ - name: GetClientString - nameWithType: Glx.GetClientString - fullName: OpenTK.Graphics.Glx.Glx.GetClientString +- uid: OpenTK.Graphics.Glx.Glx.GetClientString_* + commentId: Overload:OpenTK.Graphics.Glx.Glx.GetClientString_ + href: OpenTK.Graphics.Glx.Glx.html#OpenTK_Graphics_Glx_Glx_GetClientString__OpenTK_Graphics_Glx_DisplayPtr_System_Int32_ + name: GetClientString_ + nameWithType: Glx.GetClientString_ + fullName: OpenTK.Graphics.Glx.Glx.GetClientString_ - uid: System.Byte* isExternal: true href: https://learn.microsoft.com/dotnet/api/system.byte @@ -3502,7 +2798,7 @@ references: - name: '*' - uid: OpenTK.Graphics.Glx.Glx.GetConfig* commentId: Overload:OpenTK.Graphics.Glx.Glx.GetConfig - href: OpenTK.Graphics.Glx.Glx.html#OpenTK_Graphics_Glx_Glx_GetConfig_OpenTK_Graphics_Glx_Display__OpenTK_Graphics_Glx_XVisualInfo__System_Int32_System_Int32__ + href: OpenTK.Graphics.Glx.Glx.html#OpenTK_Graphics_Glx_Glx_GetConfig_OpenTK_Graphics_Glx_DisplayPtr_OpenTK_Graphics_Glx_XVisualInfoPtr_System_Int32_System_Int32__ name: GetConfig nameWithType: Glx.GetConfig fullName: OpenTK.Graphics.Glx.Glx.GetConfig @@ -3539,13 +2835,13 @@ references: fullName: OpenTK.Graphics.Glx.Glx.GetCurrentReadDrawable - uid: OpenTK.Graphics.Glx.Glx.GetFBConfigAttrib* commentId: Overload:OpenTK.Graphics.Glx.Glx.GetFBConfigAttrib - href: OpenTK.Graphics.Glx.Glx.html#OpenTK_Graphics_Glx_Glx_GetFBConfigAttrib_OpenTK_Graphics_Glx_Display__OpenTK_Graphics_Glx_GLXFBConfig_System_Int32_System_Int32__ + href: OpenTK.Graphics.Glx.Glx.html#OpenTK_Graphics_Glx_Glx_GetFBConfigAttrib_OpenTK_Graphics_Glx_DisplayPtr_OpenTK_Graphics_Glx_GLXFBConfig_System_Int32_System_Int32__ name: GetFBConfigAttrib nameWithType: Glx.GetFBConfigAttrib fullName: OpenTK.Graphics.Glx.Glx.GetFBConfigAttrib - uid: OpenTK.Graphics.Glx.Glx.GetFBConfigs* commentId: Overload:OpenTK.Graphics.Glx.Glx.GetFBConfigs - href: OpenTK.Graphics.Glx.Glx.html#OpenTK_Graphics_Glx_Glx_GetFBConfigs_OpenTK_Graphics_Glx_Display__System_Int32_System_Int32__ + href: OpenTK.Graphics.Glx.Glx.html#OpenTK_Graphics_Glx_Glx_GetFBConfigs_OpenTK_Graphics_Glx_DisplayPtr_System_Int32_System_Int32__ name: GetFBConfigs nameWithType: Glx.GetFBConfigs fullName: OpenTK.Graphics.Glx.Glx.GetFBConfigs @@ -3568,7 +2864,7 @@ references: name.vb: IntPtr - uid: OpenTK.Graphics.Glx.Glx.GetSelectedEvent* commentId: Overload:OpenTK.Graphics.Glx.Glx.GetSelectedEvent - href: OpenTK.Graphics.Glx.Glx.html#OpenTK_Graphics_Glx_Glx_GetSelectedEvent_OpenTK_Graphics_Glx_Display__OpenTK_Graphics_Glx_GLXDrawable_System_UInt64__ + href: OpenTK.Graphics.Glx.Glx.html#OpenTK_Graphics_Glx_Glx_GetSelectedEvent_OpenTK_Graphics_Glx_DisplayPtr_OpenTK_Graphics_Glx_GLXDrawable_System_UInt64__ name: GetSelectedEvent nameWithType: Glx.GetSelectedEvent fullName: OpenTK.Graphics.Glx.Glx.GetSelectedEvent @@ -3595,37 +2891,37 @@ references: - name: '*' - uid: OpenTK.Graphics.Glx.Glx.GetVisualFromFBConfig* commentId: Overload:OpenTK.Graphics.Glx.Glx.GetVisualFromFBConfig - href: OpenTK.Graphics.Glx.Glx.html#OpenTK_Graphics_Glx_Glx_GetVisualFromFBConfig_OpenTK_Graphics_Glx_Display__OpenTK_Graphics_Glx_GLXFBConfig_ + href: OpenTK.Graphics.Glx.Glx.html#OpenTK_Graphics_Glx_Glx_GetVisualFromFBConfig_OpenTK_Graphics_Glx_DisplayPtr_OpenTK_Graphics_Glx_GLXFBConfig_ name: GetVisualFromFBConfig nameWithType: Glx.GetVisualFromFBConfig fullName: OpenTK.Graphics.Glx.Glx.GetVisualFromFBConfig - uid: OpenTK.Graphics.Glx.Glx.IsDirect* commentId: Overload:OpenTK.Graphics.Glx.Glx.IsDirect - href: OpenTK.Graphics.Glx.Glx.html#OpenTK_Graphics_Glx_Glx_IsDirect_OpenTK_Graphics_Glx_Display__OpenTK_Graphics_Glx_GLXContext_ + href: OpenTK.Graphics.Glx.Glx.html#OpenTK_Graphics_Glx_Glx_IsDirect_OpenTK_Graphics_Glx_DisplayPtr_OpenTK_Graphics_Glx_GLXContext_ name: IsDirect nameWithType: Glx.IsDirect fullName: OpenTK.Graphics.Glx.Glx.IsDirect - uid: OpenTK.Graphics.Glx.Glx.MakeContextCurrent* commentId: Overload:OpenTK.Graphics.Glx.Glx.MakeContextCurrent - href: OpenTK.Graphics.Glx.Glx.html#OpenTK_Graphics_Glx_Glx_MakeContextCurrent_OpenTK_Graphics_Glx_Display__OpenTK_Graphics_Glx_GLXDrawable_OpenTK_Graphics_Glx_GLXDrawable_OpenTK_Graphics_Glx_GLXContext_ + href: OpenTK.Graphics.Glx.Glx.html#OpenTK_Graphics_Glx_Glx_MakeContextCurrent_OpenTK_Graphics_Glx_DisplayPtr_OpenTK_Graphics_Glx_GLXDrawable_OpenTK_Graphics_Glx_GLXDrawable_OpenTK_Graphics_Glx_GLXContext_ name: MakeContextCurrent nameWithType: Glx.MakeContextCurrent fullName: OpenTK.Graphics.Glx.Glx.MakeContextCurrent - uid: OpenTK.Graphics.Glx.Glx.MakeCurrent* commentId: Overload:OpenTK.Graphics.Glx.Glx.MakeCurrent - href: OpenTK.Graphics.Glx.Glx.html#OpenTK_Graphics_Glx_Glx_MakeCurrent_OpenTK_Graphics_Glx_Display__OpenTK_Graphics_Glx_GLXDrawable_OpenTK_Graphics_Glx_GLXContext_ + href: OpenTK.Graphics.Glx.Glx.html#OpenTK_Graphics_Glx_Glx_MakeCurrent_OpenTK_Graphics_Glx_DisplayPtr_OpenTK_Graphics_Glx_GLXDrawable_OpenTK_Graphics_Glx_GLXContext_ name: MakeCurrent nameWithType: Glx.MakeCurrent fullName: OpenTK.Graphics.Glx.Glx.MakeCurrent - uid: OpenTK.Graphics.Glx.Glx.QueryContext* commentId: Overload:OpenTK.Graphics.Glx.Glx.QueryContext - href: OpenTK.Graphics.Glx.Glx.html#OpenTK_Graphics_Glx_Glx_QueryContext_OpenTK_Graphics_Glx_Display__OpenTK_Graphics_Glx_GLXContext_System_Int32_System_Int32__ + href: OpenTK.Graphics.Glx.Glx.html#OpenTK_Graphics_Glx_Glx_QueryContext_OpenTK_Graphics_Glx_DisplayPtr_OpenTK_Graphics_Glx_GLXContext_System_Int32_System_Int32__ name: QueryContext nameWithType: Glx.QueryContext fullName: OpenTK.Graphics.Glx.Glx.QueryContext - uid: OpenTK.Graphics.Glx.Glx.QueryDrawable* commentId: Overload:OpenTK.Graphics.Glx.Glx.QueryDrawable - href: OpenTK.Graphics.Glx.Glx.html#OpenTK_Graphics_Glx_Glx_QueryDrawable_OpenTK_Graphics_Glx_Display__OpenTK_Graphics_Glx_GLXDrawable_System_Int32_System_UInt32__ + href: OpenTK.Graphics.Glx.Glx.html#OpenTK_Graphics_Glx_Glx_QueryDrawable_OpenTK_Graphics_Glx_DisplayPtr_OpenTK_Graphics_Glx_GLXDrawable_System_Int32_System_UInt32__ name: QueryDrawable nameWithType: Glx.QueryDrawable fullName: OpenTK.Graphics.Glx.Glx.QueryDrawable @@ -3652,37 +2948,37 @@ references: - name: '*' - uid: OpenTK.Graphics.Glx.Glx.QueryExtension* commentId: Overload:OpenTK.Graphics.Glx.Glx.QueryExtension - href: OpenTK.Graphics.Glx.Glx.html#OpenTK_Graphics_Glx_Glx_QueryExtension_OpenTK_Graphics_Glx_Display__System_Int32__System_Int32__ + href: OpenTK.Graphics.Glx.Glx.html#OpenTK_Graphics_Glx_Glx_QueryExtension_OpenTK_Graphics_Glx_DisplayPtr_System_Int32__System_Int32__ name: QueryExtension nameWithType: Glx.QueryExtension fullName: OpenTK.Graphics.Glx.Glx.QueryExtension -- uid: OpenTK.Graphics.Glx.Glx.QueryExtensionsString* - commentId: Overload:OpenTK.Graphics.Glx.Glx.QueryExtensionsString - href: OpenTK.Graphics.Glx.Glx.html#OpenTK_Graphics_Glx_Glx_QueryExtensionsString_OpenTK_Graphics_Glx_Display__System_Int32_ - name: QueryExtensionsString - nameWithType: Glx.QueryExtensionsString - fullName: OpenTK.Graphics.Glx.Glx.QueryExtensionsString -- uid: OpenTK.Graphics.Glx.Glx.QueryServerString* - commentId: Overload:OpenTK.Graphics.Glx.Glx.QueryServerString - href: OpenTK.Graphics.Glx.Glx.html#OpenTK_Graphics_Glx_Glx_QueryServerString_OpenTK_Graphics_Glx_Display__System_Int32_System_Int32_ - name: QueryServerString - nameWithType: Glx.QueryServerString - fullName: OpenTK.Graphics.Glx.Glx.QueryServerString +- uid: OpenTK.Graphics.Glx.Glx.QueryExtensionsString_* + commentId: Overload:OpenTK.Graphics.Glx.Glx.QueryExtensionsString_ + href: OpenTK.Graphics.Glx.Glx.html#OpenTK_Graphics_Glx_Glx_QueryExtensionsString__OpenTK_Graphics_Glx_DisplayPtr_System_Int32_ + name: QueryExtensionsString_ + nameWithType: Glx.QueryExtensionsString_ + fullName: OpenTK.Graphics.Glx.Glx.QueryExtensionsString_ +- uid: OpenTK.Graphics.Glx.Glx.QueryServerString_* + commentId: Overload:OpenTK.Graphics.Glx.Glx.QueryServerString_ + href: OpenTK.Graphics.Glx.Glx.html#OpenTK_Graphics_Glx_Glx_QueryServerString__OpenTK_Graphics_Glx_DisplayPtr_System_Int32_System_Int32_ + name: QueryServerString_ + nameWithType: Glx.QueryServerString_ + fullName: OpenTK.Graphics.Glx.Glx.QueryServerString_ - uid: OpenTK.Graphics.Glx.Glx.QueryVersion* commentId: Overload:OpenTK.Graphics.Glx.Glx.QueryVersion - href: OpenTK.Graphics.Glx.Glx.html#OpenTK_Graphics_Glx_Glx_QueryVersion_OpenTK_Graphics_Glx_Display__System_Int32__System_Int32__ + href: OpenTK.Graphics.Glx.Glx.html#OpenTK_Graphics_Glx_Glx_QueryVersion_OpenTK_Graphics_Glx_DisplayPtr_System_Int32__System_Int32__ name: QueryVersion nameWithType: Glx.QueryVersion fullName: OpenTK.Graphics.Glx.Glx.QueryVersion - uid: OpenTK.Graphics.Glx.Glx.SelectEvent* commentId: Overload:OpenTK.Graphics.Glx.Glx.SelectEvent - href: OpenTK.Graphics.Glx.Glx.html#OpenTK_Graphics_Glx_Glx_SelectEvent_OpenTK_Graphics_Glx_Display__OpenTK_Graphics_Glx_GLXDrawable_System_UInt64_ + href: OpenTK.Graphics.Glx.Glx.html#OpenTK_Graphics_Glx_Glx_SelectEvent_OpenTK_Graphics_Glx_DisplayPtr_OpenTK_Graphics_Glx_GLXDrawable_System_UInt64_ name: SelectEvent nameWithType: Glx.SelectEvent fullName: OpenTK.Graphics.Glx.Glx.SelectEvent - uid: OpenTK.Graphics.Glx.Glx.SwapBuffers* commentId: Overload:OpenTK.Graphics.Glx.Glx.SwapBuffers - href: OpenTK.Graphics.Glx.Glx.html#OpenTK_Graphics_Glx_Glx_SwapBuffers_OpenTK_Graphics_Glx_Display__OpenTK_Graphics_Glx_GLXDrawable_ + href: OpenTK.Graphics.Glx.Glx.html#OpenTK_Graphics_Glx_Glx_SwapBuffers_OpenTK_Graphics_Glx_DisplayPtr_OpenTK_Graphics_Glx_GLXDrawable_ name: SwapBuffers nameWithType: Glx.SwapBuffers fullName: OpenTK.Graphics.Glx.Glx.SwapBuffers @@ -3711,20 +3007,12 @@ references: name: WaitX nameWithType: Glx.WaitX fullName: OpenTK.Graphics.Glx.Glx.WaitX -- uid: OpenTK.Graphics.Glx.Display - commentId: T:OpenTK.Graphics.Glx.Display - parent: OpenTK.Graphics.Glx - href: OpenTK.Graphics.Glx.Display.html - name: Display - nameWithType: Display - fullName: OpenTK.Graphics.Glx.Display -- uid: OpenTK.Graphics.Glx.XVisualInfo - commentId: T:OpenTK.Graphics.Glx.XVisualInfo - parent: OpenTK.Graphics.Glx - href: OpenTK.Graphics.Glx.XVisualInfo.html - name: XVisualInfo - nameWithType: XVisualInfo - fullName: OpenTK.Graphics.Glx.XVisualInfo +- uid: OpenTK.Graphics.Glx.Glx.GetClientString* + commentId: Overload:OpenTK.Graphics.Glx.Glx.GetClientString + href: OpenTK.Graphics.Glx.Glx.html#OpenTK_Graphics_Glx_Glx_GetClientString_OpenTK_Graphics_Glx_DisplayPtr_System_Int32_ + name: GetClientString + nameWithType: Glx.GetClientString + fullName: OpenTK.Graphics.Glx.Glx.GetClientString - uid: System.String commentId: T:System.String parent: System @@ -3738,7 +3026,7 @@ references: name.vb: String - uid: OpenTK.Graphics.Glx.Glx.GetFBConfig* commentId: Overload:OpenTK.Graphics.Glx.Glx.GetFBConfig - href: OpenTK.Graphics.Glx.Glx.html#OpenTK_Graphics_Glx_Glx_GetFBConfig_OpenTK_Graphics_Glx_Display__System_Int32_System_Int32__ + href: OpenTK.Graphics.Glx.Glx.html#OpenTK_Graphics_Glx_Glx_GetFBConfig_OpenTK_Graphics_Glx_DisplayPtr_System_Int32_System_Int32__ name: GetFBConfig nameWithType: Glx.GetFBConfig fullName: OpenTK.Graphics.Glx.Glx.GetFBConfig @@ -3764,3 +3052,15 @@ references: nameWithType.vb: UInteger fullName.vb: UInteger name.vb: UInteger +- uid: OpenTK.Graphics.Glx.Glx.QueryExtensionsString* + commentId: Overload:OpenTK.Graphics.Glx.Glx.QueryExtensionsString + href: OpenTK.Graphics.Glx.Glx.html#OpenTK_Graphics_Glx_Glx_QueryExtensionsString_OpenTK_Graphics_Glx_DisplayPtr_System_Int32_ + name: QueryExtensionsString + nameWithType: Glx.QueryExtensionsString + fullName: OpenTK.Graphics.Glx.Glx.QueryExtensionsString +- uid: OpenTK.Graphics.Glx.Glx.QueryServerString* + commentId: Overload:OpenTK.Graphics.Glx.Glx.QueryServerString + href: OpenTK.Graphics.Glx.Glx.html#OpenTK_Graphics_Glx_Glx_QueryServerString_OpenTK_Graphics_Glx_DisplayPtr_System_Int32_System_Int32_ + name: QueryServerString + nameWithType: Glx.QueryServerString + fullName: OpenTK.Graphics.Glx.Glx.QueryServerString diff --git a/api/OpenTK.Graphics.Glx.GlxPointers.yml b/api/OpenTK.Graphics.Glx.GlxPointers.yml index 3d7d4bb9..9b0411ed 100644 --- a/api/OpenTK.Graphics.Glx.GlxPointers.yml +++ b/api/OpenTK.Graphics.Glx.GlxPointers.yml @@ -194,9 +194,9 @@ items: summary: '[entry point: glXBindChannelToWindowSGIX]' example: [] syntax: - content: public static delegate* unmanaged _glXBindChannelToWindowSGIX_fnptr + content: public static delegate* unmanaged _glXBindChannelToWindowSGIX_fnptr return: - type: delegate* unmanaged + type: delegate* unmanaged content.vb: 'Public Shared _glXBindChannelToWindowSGIX_fnptr As ' - uid: OpenTK.Graphics.Glx.GlxPointers._glXBindHyperpipeSGIX_fnptr commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXBindHyperpipeSGIX_fnptr @@ -223,9 +223,9 @@ items: summary: '[entry point: glXBindHyperpipeSGIX]' example: [] syntax: - content: public static delegate* unmanaged _glXBindHyperpipeSGIX_fnptr + content: public static delegate* unmanaged _glXBindHyperpipeSGIX_fnptr return: - type: delegate* unmanaged + type: delegate* unmanaged content.vb: 'Public Shared _glXBindHyperpipeSGIX_fnptr As ' - uid: OpenTK.Graphics.Glx.GlxPointers._glXBindSwapBarrierNV_fnptr commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXBindSwapBarrierNV_fnptr @@ -252,9 +252,9 @@ items: summary: '[entry point: glXBindSwapBarrierNV]' example: [] syntax: - content: public static delegate* unmanaged _glXBindSwapBarrierNV_fnptr + content: public static delegate* unmanaged _glXBindSwapBarrierNV_fnptr return: - type: delegate* unmanaged + type: delegate* unmanaged content.vb: 'Public Shared _glXBindSwapBarrierNV_fnptr As ' - uid: OpenTK.Graphics.Glx.GlxPointers._glXBindSwapBarrierSGIX_fnptr commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXBindSwapBarrierSGIX_fnptr @@ -281,9 +281,9 @@ items: summary: '[entry point: glXBindSwapBarrierSGIX]' example: [] syntax: - content: public static delegate* unmanaged _glXBindSwapBarrierSGIX_fnptr + content: public static delegate* unmanaged _glXBindSwapBarrierSGIX_fnptr return: - type: delegate* unmanaged + type: delegate* unmanaged content.vb: 'Public Shared _glXBindSwapBarrierSGIX_fnptr As ' - uid: OpenTK.Graphics.Glx.GlxPointers._glXBindTexImageEXT_fnptr commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXBindTexImageEXT_fnptr @@ -310,9 +310,9 @@ items: summary: '[entry point: glXBindTexImageEXT]' example: [] syntax: - content: public static delegate* unmanaged _glXBindTexImageEXT_fnptr + content: public static delegate* unmanaged _glXBindTexImageEXT_fnptr return: - type: delegate* unmanaged + type: delegate* unmanaged content.vb: 'Public Shared _glXBindTexImageEXT_fnptr As ' - uid: OpenTK.Graphics.Glx.GlxPointers._glXBindVideoCaptureDeviceNV_fnptr commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXBindVideoCaptureDeviceNV_fnptr @@ -339,9 +339,9 @@ items: summary: '[entry point: glXBindVideoCaptureDeviceNV]' example: [] syntax: - content: public static delegate* unmanaged _glXBindVideoCaptureDeviceNV_fnptr + content: public static delegate* unmanaged _glXBindVideoCaptureDeviceNV_fnptr return: - type: delegate* unmanaged + type: delegate* unmanaged content.vb: 'Public Shared _glXBindVideoCaptureDeviceNV_fnptr As ' - uid: OpenTK.Graphics.Glx.GlxPointers._glXBindVideoDeviceNV_fnptr commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXBindVideoDeviceNV_fnptr @@ -368,9 +368,9 @@ items: summary: '[entry point: glXBindVideoDeviceNV]' example: [] syntax: - content: public static delegate* unmanaged _glXBindVideoDeviceNV_fnptr + content: public static delegate* unmanaged _glXBindVideoDeviceNV_fnptr return: - type: delegate* unmanaged + type: delegate* unmanaged content.vb: 'Public Shared _glXBindVideoDeviceNV_fnptr As ' - uid: OpenTK.Graphics.Glx.GlxPointers._glXBindVideoImageNV_fnptr commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXBindVideoImageNV_fnptr @@ -397,9 +397,9 @@ items: summary: '[entry point: glXBindVideoImageNV]' example: [] syntax: - content: public static delegate* unmanaged _glXBindVideoImageNV_fnptr + content: public static delegate* unmanaged _glXBindVideoImageNV_fnptr return: - type: delegate* unmanaged + type: delegate* unmanaged content.vb: 'Public Shared _glXBindVideoImageNV_fnptr As ' - uid: OpenTK.Graphics.Glx.GlxPointers._glXBlitContextFramebufferAMD_fnptr commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXBlitContextFramebufferAMD_fnptr @@ -455,9 +455,9 @@ items: summary: '[entry point: glXChannelRectSGIX]' example: [] syntax: - content: public static delegate* unmanaged _glXChannelRectSGIX_fnptr + content: public static delegate* unmanaged _glXChannelRectSGIX_fnptr return: - type: delegate* unmanaged + type: delegate* unmanaged content.vb: 'Public Shared _glXChannelRectSGIX_fnptr As ' - uid: OpenTK.Graphics.Glx.GlxPointers._glXChannelRectSyncSGIX_fnptr commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXChannelRectSyncSGIX_fnptr @@ -484,9 +484,9 @@ items: summary: '[entry point: glXChannelRectSyncSGIX]' example: [] syntax: - content: public static delegate* unmanaged _glXChannelRectSyncSGIX_fnptr + content: public static delegate* unmanaged _glXChannelRectSyncSGIX_fnptr return: - type: delegate* unmanaged + type: delegate* unmanaged content.vb: 'Public Shared _glXChannelRectSyncSGIX_fnptr As ' - uid: OpenTK.Graphics.Glx.GlxPointers._glXChooseFBConfig_fnptr commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXChooseFBConfig_fnptr @@ -513,9 +513,9 @@ items: summary: '[entry point: glXChooseFBConfig]' example: [] syntax: - content: public static delegate* unmanaged _glXChooseFBConfig_fnptr + content: public static delegate* unmanaged _glXChooseFBConfig_fnptr return: - type: delegate* unmanaged + type: delegate* unmanaged content.vb: 'Public Shared _glXChooseFBConfig_fnptr As ' - uid: OpenTK.Graphics.Glx.GlxPointers._glXChooseFBConfigSGIX_fnptr commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXChooseFBConfigSGIX_fnptr @@ -542,9 +542,9 @@ items: summary: '[entry point: glXChooseFBConfigSGIX]' example: [] syntax: - content: public static delegate* unmanaged _glXChooseFBConfigSGIX_fnptr + content: public static delegate* unmanaged _glXChooseFBConfigSGIX_fnptr return: - type: delegate* unmanaged + type: delegate* unmanaged content.vb: 'Public Shared _glXChooseFBConfigSGIX_fnptr As ' - uid: OpenTK.Graphics.Glx.GlxPointers._glXChooseVisual_fnptr commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXChooseVisual_fnptr @@ -571,9 +571,9 @@ items: summary: '[entry point: glXChooseVisual]' example: [] syntax: - content: public static delegate* unmanaged _glXChooseVisual_fnptr + content: public static delegate* unmanaged _glXChooseVisual_fnptr return: - type: delegate* unmanaged + type: delegate* unmanaged content.vb: 'Public Shared _glXChooseVisual_fnptr As ' - uid: OpenTK.Graphics.Glx.GlxPointers._glXCopyBufferSubDataNV_fnptr commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXCopyBufferSubDataNV_fnptr @@ -600,9 +600,9 @@ items: summary: '[entry point: glXCopyBufferSubDataNV]' example: [] syntax: - content: public static delegate* unmanaged _glXCopyBufferSubDataNV_fnptr + content: public static delegate* unmanaged _glXCopyBufferSubDataNV_fnptr return: - type: delegate* unmanaged + type: delegate* unmanaged content.vb: 'Public Shared _glXCopyBufferSubDataNV_fnptr As ' - uid: OpenTK.Graphics.Glx.GlxPointers._glXCopyContext_fnptr commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXCopyContext_fnptr @@ -629,9 +629,9 @@ items: summary: '[entry point: glXCopyContext]' example: [] syntax: - content: public static delegate* unmanaged _glXCopyContext_fnptr + content: public static delegate* unmanaged _glXCopyContext_fnptr return: - type: delegate* unmanaged + type: delegate* unmanaged content.vb: 'Public Shared _glXCopyContext_fnptr As ' - uid: OpenTK.Graphics.Glx.GlxPointers._glXCopyImageSubDataNV_fnptr commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXCopyImageSubDataNV_fnptr @@ -658,9 +658,9 @@ items: summary: '[entry point: glXCopyImageSubDataNV]' example: [] syntax: - content: public static delegate* unmanaged _glXCopyImageSubDataNV_fnptr + content: public static delegate* unmanaged _glXCopyImageSubDataNV_fnptr return: - type: delegate* unmanaged + type: delegate* unmanaged content.vb: 'Public Shared _glXCopyImageSubDataNV_fnptr As ' - uid: OpenTK.Graphics.Glx.GlxPointers._glXCopySubBufferMESA_fnptr commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXCopySubBufferMESA_fnptr @@ -687,9 +687,9 @@ items: summary: '[entry point: glXCopySubBufferMESA]' example: [] syntax: - content: public static delegate* unmanaged _glXCopySubBufferMESA_fnptr + content: public static delegate* unmanaged _glXCopySubBufferMESA_fnptr return: - type: delegate* unmanaged + type: delegate* unmanaged content.vb: 'Public Shared _glXCopySubBufferMESA_fnptr As ' - uid: OpenTK.Graphics.Glx.GlxPointers._glXCreateAssociatedContextAMD_fnptr commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXCreateAssociatedContextAMD_fnptr @@ -774,9 +774,9 @@ items: summary: '[entry point: glXCreateContext]' example: [] syntax: - content: public static delegate* unmanaged _glXCreateContext_fnptr + content: public static delegate* unmanaged _glXCreateContext_fnptr return: - type: delegate* unmanaged + type: delegate* unmanaged content.vb: 'Public Shared _glXCreateContext_fnptr As ' - uid: OpenTK.Graphics.Glx.GlxPointers._glXCreateContextAttribsARB_fnptr commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXCreateContextAttribsARB_fnptr @@ -803,9 +803,9 @@ items: summary: '[entry point: glXCreateContextAttribsARB]' example: [] syntax: - content: public static delegate* unmanaged _glXCreateContextAttribsARB_fnptr + content: public static delegate* unmanaged _glXCreateContextAttribsARB_fnptr return: - type: delegate* unmanaged + type: delegate* unmanaged content.vb: 'Public Shared _glXCreateContextAttribsARB_fnptr As ' - uid: OpenTK.Graphics.Glx.GlxPointers._glXCreateContextWithConfigSGIX_fnptr commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXCreateContextWithConfigSGIX_fnptr @@ -832,9 +832,9 @@ items: summary: '[entry point: glXCreateContextWithConfigSGIX]' example: [] syntax: - content: public static delegate* unmanaged _glXCreateContextWithConfigSGIX_fnptr + content: public static delegate* unmanaged _glXCreateContextWithConfigSGIX_fnptr return: - type: delegate* unmanaged + type: delegate* unmanaged content.vb: 'Public Shared _glXCreateContextWithConfigSGIX_fnptr As ' - uid: OpenTK.Graphics.Glx.GlxPointers._glXCreateGLXPbufferSGIX_fnptr commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXCreateGLXPbufferSGIX_fnptr @@ -861,9 +861,9 @@ items: summary: '[entry point: glXCreateGLXPbufferSGIX]' example: [] syntax: - content: public static delegate* unmanaged _glXCreateGLXPbufferSGIX_fnptr + content: public static delegate* unmanaged _glXCreateGLXPbufferSGIX_fnptr return: - type: delegate* unmanaged + type: delegate* unmanaged content.vb: 'Public Shared _glXCreateGLXPbufferSGIX_fnptr As ' - uid: OpenTK.Graphics.Glx.GlxPointers._glXCreateGLXPixmap_fnptr commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXCreateGLXPixmap_fnptr @@ -890,9 +890,9 @@ items: summary: '[entry point: glXCreateGLXPixmap]' example: [] syntax: - content: public static delegate* unmanaged _glXCreateGLXPixmap_fnptr + content: public static delegate* unmanaged _glXCreateGLXPixmap_fnptr return: - type: delegate* unmanaged + type: delegate* unmanaged content.vb: 'Public Shared _glXCreateGLXPixmap_fnptr As ' - uid: OpenTK.Graphics.Glx.GlxPointers._glXCreateGLXPixmapMESA_fnptr commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXCreateGLXPixmapMESA_fnptr @@ -919,9 +919,9 @@ items: summary: '[entry point: glXCreateGLXPixmapMESA]' example: [] syntax: - content: public static delegate* unmanaged _glXCreateGLXPixmapMESA_fnptr + content: public static delegate* unmanaged _glXCreateGLXPixmapMESA_fnptr return: - type: delegate* unmanaged + type: delegate* unmanaged content.vb: 'Public Shared _glXCreateGLXPixmapMESA_fnptr As ' - uid: OpenTK.Graphics.Glx.GlxPointers._glXCreateGLXPixmapWithConfigSGIX_fnptr commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXCreateGLXPixmapWithConfigSGIX_fnptr @@ -948,9 +948,9 @@ items: summary: '[entry point: glXCreateGLXPixmapWithConfigSGIX]' example: [] syntax: - content: public static delegate* unmanaged _glXCreateGLXPixmapWithConfigSGIX_fnptr + content: public static delegate* unmanaged _glXCreateGLXPixmapWithConfigSGIX_fnptr return: - type: delegate* unmanaged + type: delegate* unmanaged content.vb: 'Public Shared _glXCreateGLXPixmapWithConfigSGIX_fnptr As ' - uid: OpenTK.Graphics.Glx.GlxPointers._glXCreateNewContext_fnptr commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXCreateNewContext_fnptr @@ -977,9 +977,9 @@ items: summary: '[entry point: glXCreateNewContext]' example: [] syntax: - content: public static delegate* unmanaged _glXCreateNewContext_fnptr + content: public static delegate* unmanaged _glXCreateNewContext_fnptr return: - type: delegate* unmanaged + type: delegate* unmanaged content.vb: 'Public Shared _glXCreateNewContext_fnptr As ' - uid: OpenTK.Graphics.Glx.GlxPointers._glXCreatePbuffer_fnptr commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXCreatePbuffer_fnptr @@ -1006,9 +1006,9 @@ items: summary: '[entry point: glXCreatePbuffer]' example: [] syntax: - content: public static delegate* unmanaged _glXCreatePbuffer_fnptr + content: public static delegate* unmanaged _glXCreatePbuffer_fnptr return: - type: delegate* unmanaged + type: delegate* unmanaged content.vb: 'Public Shared _glXCreatePbuffer_fnptr As ' - uid: OpenTK.Graphics.Glx.GlxPointers._glXCreatePixmap_fnptr commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXCreatePixmap_fnptr @@ -1035,9 +1035,9 @@ items: summary: '[entry point: glXCreatePixmap]' example: [] syntax: - content: public static delegate* unmanaged _glXCreatePixmap_fnptr + content: public static delegate* unmanaged _glXCreatePixmap_fnptr return: - type: delegate* unmanaged + type: delegate* unmanaged content.vb: 'Public Shared _glXCreatePixmap_fnptr As ' - uid: OpenTK.Graphics.Glx.GlxPointers._glXCreateWindow_fnptr commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXCreateWindow_fnptr @@ -1064,9 +1064,9 @@ items: summary: '[entry point: glXCreateWindow]' example: [] syntax: - content: public static delegate* unmanaged _glXCreateWindow_fnptr + content: public static delegate* unmanaged _glXCreateWindow_fnptr return: - type: delegate* unmanaged + type: delegate* unmanaged content.vb: 'Public Shared _glXCreateWindow_fnptr As ' - uid: OpenTK.Graphics.Glx.GlxPointers._glXCushionSGI_fnptr commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXCushionSGI_fnptr @@ -1093,9 +1093,9 @@ items: summary: '[entry point: glXCushionSGI]' example: [] syntax: - content: public static delegate* unmanaged _glXCushionSGI_fnptr + content: public static delegate* unmanaged _glXCushionSGI_fnptr return: - type: delegate* unmanaged + type: delegate* unmanaged content.vb: 'Public Shared _glXCushionSGI_fnptr As ' - uid: OpenTK.Graphics.Glx.GlxPointers._glXDelayBeforeSwapNV_fnptr commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXDelayBeforeSwapNV_fnptr @@ -1122,9 +1122,9 @@ items: summary: '[entry point: glXDelayBeforeSwapNV]' example: [] syntax: - content: public static delegate* unmanaged _glXDelayBeforeSwapNV_fnptr + content: public static delegate* unmanaged _glXDelayBeforeSwapNV_fnptr return: - type: delegate* unmanaged + type: delegate* unmanaged content.vb: 'Public Shared _glXDelayBeforeSwapNV_fnptr As ' - uid: OpenTK.Graphics.Glx.GlxPointers._glXDeleteAssociatedContextAMD_fnptr commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXDeleteAssociatedContextAMD_fnptr @@ -1180,9 +1180,9 @@ items: summary: '[entry point: glXDestroyContext]' example: [] syntax: - content: public static delegate* unmanaged _glXDestroyContext_fnptr + content: public static delegate* unmanaged _glXDestroyContext_fnptr return: - type: delegate* unmanaged + type: delegate* unmanaged content.vb: 'Public Shared _glXDestroyContext_fnptr As ' - uid: OpenTK.Graphics.Glx.GlxPointers._glXDestroyGLXPbufferSGIX_fnptr commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXDestroyGLXPbufferSGIX_fnptr @@ -1209,9 +1209,9 @@ items: summary: '[entry point: glXDestroyGLXPbufferSGIX]' example: [] syntax: - content: public static delegate* unmanaged _glXDestroyGLXPbufferSGIX_fnptr + content: public static delegate* unmanaged _glXDestroyGLXPbufferSGIX_fnptr return: - type: delegate* unmanaged + type: delegate* unmanaged content.vb: 'Public Shared _glXDestroyGLXPbufferSGIX_fnptr As ' - uid: OpenTK.Graphics.Glx.GlxPointers._glXDestroyGLXPixmap_fnptr commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXDestroyGLXPixmap_fnptr @@ -1238,9 +1238,9 @@ items: summary: '[entry point: glXDestroyGLXPixmap]' example: [] syntax: - content: public static delegate* unmanaged _glXDestroyGLXPixmap_fnptr + content: public static delegate* unmanaged _glXDestroyGLXPixmap_fnptr return: - type: delegate* unmanaged + type: delegate* unmanaged content.vb: 'Public Shared _glXDestroyGLXPixmap_fnptr As ' - uid: OpenTK.Graphics.Glx.GlxPointers._glXDestroyHyperpipeConfigSGIX_fnptr commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXDestroyHyperpipeConfigSGIX_fnptr @@ -1267,9 +1267,9 @@ items: summary: '[entry point: glXDestroyHyperpipeConfigSGIX]' example: [] syntax: - content: public static delegate* unmanaged _glXDestroyHyperpipeConfigSGIX_fnptr + content: public static delegate* unmanaged _glXDestroyHyperpipeConfigSGIX_fnptr return: - type: delegate* unmanaged + type: delegate* unmanaged content.vb: 'Public Shared _glXDestroyHyperpipeConfigSGIX_fnptr As ' - uid: OpenTK.Graphics.Glx.GlxPointers._glXDestroyPbuffer_fnptr commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXDestroyPbuffer_fnptr @@ -1296,9 +1296,9 @@ items: summary: '[entry point: glXDestroyPbuffer]' example: [] syntax: - content: public static delegate* unmanaged _glXDestroyPbuffer_fnptr + content: public static delegate* unmanaged _glXDestroyPbuffer_fnptr return: - type: delegate* unmanaged + type: delegate* unmanaged content.vb: 'Public Shared _glXDestroyPbuffer_fnptr As ' - uid: OpenTK.Graphics.Glx.GlxPointers._glXDestroyPixmap_fnptr commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXDestroyPixmap_fnptr @@ -1325,9 +1325,9 @@ items: summary: '[entry point: glXDestroyPixmap]' example: [] syntax: - content: public static delegate* unmanaged _glXDestroyPixmap_fnptr + content: public static delegate* unmanaged _glXDestroyPixmap_fnptr return: - type: delegate* unmanaged + type: delegate* unmanaged content.vb: 'Public Shared _glXDestroyPixmap_fnptr As ' - uid: OpenTK.Graphics.Glx.GlxPointers._glXDestroyWindow_fnptr commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXDestroyWindow_fnptr @@ -1354,9 +1354,9 @@ items: summary: '[entry point: glXDestroyWindow]' example: [] syntax: - content: public static delegate* unmanaged _glXDestroyWindow_fnptr + content: public static delegate* unmanaged _glXDestroyWindow_fnptr return: - type: delegate* unmanaged + type: delegate* unmanaged content.vb: 'Public Shared _glXDestroyWindow_fnptr As ' - uid: OpenTK.Graphics.Glx.GlxPointers._glXEnumerateVideoCaptureDevicesNV_fnptr commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXEnumerateVideoCaptureDevicesNV_fnptr @@ -1383,9 +1383,9 @@ items: summary: '[entry point: glXEnumerateVideoCaptureDevicesNV]' example: [] syntax: - content: public static delegate* unmanaged _glXEnumerateVideoCaptureDevicesNV_fnptr + content: public static delegate* unmanaged _glXEnumerateVideoCaptureDevicesNV_fnptr return: - type: delegate* unmanaged + type: delegate* unmanaged content.vb: 'Public Shared _glXEnumerateVideoCaptureDevicesNV_fnptr As ' - uid: OpenTK.Graphics.Glx.GlxPointers._glXEnumerateVideoDevicesNV_fnptr commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXEnumerateVideoDevicesNV_fnptr @@ -1412,9 +1412,9 @@ items: summary: '[entry point: glXEnumerateVideoDevicesNV]' example: [] syntax: - content: public static delegate* unmanaged _glXEnumerateVideoDevicesNV_fnptr + content: public static delegate* unmanaged _glXEnumerateVideoDevicesNV_fnptr return: - type: delegate* unmanaged + type: delegate* unmanaged content.vb: 'Public Shared _glXEnumerateVideoDevicesNV_fnptr As ' - uid: OpenTK.Graphics.Glx.GlxPointers._glXFreeContextEXT_fnptr commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXFreeContextEXT_fnptr @@ -1441,9 +1441,9 @@ items: summary: '[entry point: glXFreeContextEXT]' example: [] syntax: - content: public static delegate* unmanaged _glXFreeContextEXT_fnptr + content: public static delegate* unmanaged _glXFreeContextEXT_fnptr return: - type: delegate* unmanaged + type: delegate* unmanaged content.vb: 'Public Shared _glXFreeContextEXT_fnptr As ' - uid: OpenTK.Graphics.Glx.GlxPointers._glXGetAGPOffsetMESA_fnptr commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXGetAGPOffsetMESA_fnptr @@ -1499,9 +1499,9 @@ items: summary: '[entry point: glXGetClientString]' example: [] syntax: - content: public static delegate* unmanaged _glXGetClientString_fnptr + content: public static delegate* unmanaged _glXGetClientString_fnptr return: - type: delegate* unmanaged + type: delegate* unmanaged content.vb: 'Public Shared _glXGetClientString_fnptr As ' - uid: OpenTK.Graphics.Glx.GlxPointers._glXGetConfig_fnptr commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXGetConfig_fnptr @@ -1528,9 +1528,9 @@ items: summary: '[entry point: glXGetConfig]' example: [] syntax: - content: public static delegate* unmanaged _glXGetConfig_fnptr + content: public static delegate* unmanaged _glXGetConfig_fnptr return: - type: delegate* unmanaged + type: delegate* unmanaged content.vb: 'Public Shared _glXGetConfig_fnptr As ' - uid: OpenTK.Graphics.Glx.GlxPointers._glXGetContextGPUIDAMD_fnptr commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXGetContextGPUIDAMD_fnptr @@ -1673,9 +1673,9 @@ items: summary: '[entry point: glXGetCurrentDisplay]' example: [] syntax: - content: public static delegate* unmanaged _glXGetCurrentDisplay_fnptr + content: public static delegate* unmanaged _glXGetCurrentDisplay_fnptr return: - type: delegate* unmanaged + type: delegate* unmanaged content.vb: 'Public Shared _glXGetCurrentDisplay_fnptr As ' - uid: OpenTK.Graphics.Glx.GlxPointers._glXGetCurrentDisplayEXT_fnptr commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXGetCurrentDisplayEXT_fnptr @@ -1702,9 +1702,9 @@ items: summary: '[entry point: glXGetCurrentDisplayEXT]' example: [] syntax: - content: public static delegate* unmanaged _glXGetCurrentDisplayEXT_fnptr + content: public static delegate* unmanaged _glXGetCurrentDisplayEXT_fnptr return: - type: delegate* unmanaged + type: delegate* unmanaged content.vb: 'Public Shared _glXGetCurrentDisplayEXT_fnptr As ' - uid: OpenTK.Graphics.Glx.GlxPointers._glXGetCurrentDrawable_fnptr commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXGetCurrentDrawable_fnptr @@ -1818,9 +1818,9 @@ items: summary: '[entry point: glXGetFBConfigAttrib]' example: [] syntax: - content: public static delegate* unmanaged _glXGetFBConfigAttrib_fnptr + content: public static delegate* unmanaged _glXGetFBConfigAttrib_fnptr return: - type: delegate* unmanaged + type: delegate* unmanaged content.vb: 'Public Shared _glXGetFBConfigAttrib_fnptr As ' - uid: OpenTK.Graphics.Glx.GlxPointers._glXGetFBConfigAttribSGIX_fnptr commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXGetFBConfigAttribSGIX_fnptr @@ -1847,9 +1847,9 @@ items: summary: '[entry point: glXGetFBConfigAttribSGIX]' example: [] syntax: - content: public static delegate* unmanaged _glXGetFBConfigAttribSGIX_fnptr + content: public static delegate* unmanaged _glXGetFBConfigAttribSGIX_fnptr return: - type: delegate* unmanaged + type: delegate* unmanaged content.vb: 'Public Shared _glXGetFBConfigAttribSGIX_fnptr As ' - uid: OpenTK.Graphics.Glx.GlxPointers._glXGetFBConfigFromVisualSGIX_fnptr commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXGetFBConfigFromVisualSGIX_fnptr @@ -1876,9 +1876,9 @@ items: summary: '[entry point: glXGetFBConfigFromVisualSGIX]' example: [] syntax: - content: public static delegate* unmanaged _glXGetFBConfigFromVisualSGIX_fnptr + content: public static delegate* unmanaged _glXGetFBConfigFromVisualSGIX_fnptr return: - type: delegate* unmanaged + type: delegate* unmanaged content.vb: 'Public Shared _glXGetFBConfigFromVisualSGIX_fnptr As ' - uid: OpenTK.Graphics.Glx.GlxPointers._glXGetFBConfigs_fnptr commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXGetFBConfigs_fnptr @@ -1905,9 +1905,9 @@ items: summary: '[entry point: glXGetFBConfigs]' example: [] syntax: - content: public static delegate* unmanaged _glXGetFBConfigs_fnptr + content: public static delegate* unmanaged _glXGetFBConfigs_fnptr return: - type: delegate* unmanaged + type: delegate* unmanaged content.vb: 'Public Shared _glXGetFBConfigs_fnptr As ' - uid: OpenTK.Graphics.Glx.GlxPointers._glXGetGPUIDsAMD_fnptr commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXGetGPUIDsAMD_fnptr @@ -1992,9 +1992,9 @@ items: summary: '[entry point: glXGetMscRateOML]' example: [] syntax: - content: public static delegate* unmanaged _glXGetMscRateOML_fnptr + content: public static delegate* unmanaged _glXGetMscRateOML_fnptr return: - type: delegate* unmanaged + type: delegate* unmanaged content.vb: 'Public Shared _glXGetMscRateOML_fnptr As ' - uid: OpenTK.Graphics.Glx.GlxPointers._glXGetProcAddress_fnptr commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXGetProcAddress_fnptr @@ -2079,9 +2079,9 @@ items: summary: '[entry point: glXGetSelectedEvent]' example: [] syntax: - content: public static delegate* unmanaged _glXGetSelectedEvent_fnptr + content: public static delegate* unmanaged _glXGetSelectedEvent_fnptr return: - type: delegate* unmanaged + type: delegate* unmanaged content.vb: 'Public Shared _glXGetSelectedEvent_fnptr As ' - uid: OpenTK.Graphics.Glx.GlxPointers._glXGetSelectedEventSGIX_fnptr commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXGetSelectedEventSGIX_fnptr @@ -2108,9 +2108,9 @@ items: summary: '[entry point: glXGetSelectedEventSGIX]' example: [] syntax: - content: public static delegate* unmanaged _glXGetSelectedEventSGIX_fnptr + content: public static delegate* unmanaged _glXGetSelectedEventSGIX_fnptr return: - type: delegate* unmanaged + type: delegate* unmanaged content.vb: 'Public Shared _glXGetSelectedEventSGIX_fnptr As ' - uid: OpenTK.Graphics.Glx.GlxPointers._glXGetSwapIntervalMESA_fnptr commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXGetSwapIntervalMESA_fnptr @@ -2166,9 +2166,9 @@ items: summary: '[entry point: glXGetSyncValuesOML]' example: [] syntax: - content: public static delegate* unmanaged _glXGetSyncValuesOML_fnptr + content: public static delegate* unmanaged _glXGetSyncValuesOML_fnptr return: - type: delegate* unmanaged + type: delegate* unmanaged content.vb: 'Public Shared _glXGetSyncValuesOML_fnptr As ' - uid: OpenTK.Graphics.Glx.GlxPointers._glXGetTransparentIndexSUN_fnptr commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXGetTransparentIndexSUN_fnptr @@ -2195,9 +2195,9 @@ items: summary: '[entry point: glXGetTransparentIndexSUN]' example: [] syntax: - content: public static delegate* unmanaged _glXGetTransparentIndexSUN_fnptr + content: public static delegate* unmanaged _glXGetTransparentIndexSUN_fnptr return: - type: delegate* unmanaged + type: delegate* unmanaged content.vb: 'Public Shared _glXGetTransparentIndexSUN_fnptr As ' - uid: OpenTK.Graphics.Glx.GlxPointers._glXGetVideoDeviceNV_fnptr commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXGetVideoDeviceNV_fnptr @@ -2224,9 +2224,9 @@ items: summary: '[entry point: glXGetVideoDeviceNV]' example: [] syntax: - content: public static delegate* unmanaged _glXGetVideoDeviceNV_fnptr + content: public static delegate* unmanaged _glXGetVideoDeviceNV_fnptr return: - type: delegate* unmanaged + type: delegate* unmanaged content.vb: 'Public Shared _glXGetVideoDeviceNV_fnptr As ' - uid: OpenTK.Graphics.Glx.GlxPointers._glXGetVideoInfoNV_fnptr commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXGetVideoInfoNV_fnptr @@ -2253,9 +2253,9 @@ items: summary: '[entry point: glXGetVideoInfoNV]' example: [] syntax: - content: public static delegate* unmanaged _glXGetVideoInfoNV_fnptr + content: public static delegate* unmanaged _glXGetVideoInfoNV_fnptr return: - type: delegate* unmanaged + type: delegate* unmanaged content.vb: 'Public Shared _glXGetVideoInfoNV_fnptr As ' - uid: OpenTK.Graphics.Glx.GlxPointers._glXGetVideoSyncSGI_fnptr commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXGetVideoSyncSGI_fnptr @@ -2311,9 +2311,9 @@ items: summary: '[entry point: glXGetVisualFromFBConfig]' example: [] syntax: - content: public static delegate* unmanaged _glXGetVisualFromFBConfig_fnptr + content: public static delegate* unmanaged _glXGetVisualFromFBConfig_fnptr return: - type: delegate* unmanaged + type: delegate* unmanaged content.vb: 'Public Shared _glXGetVisualFromFBConfig_fnptr As ' - uid: OpenTK.Graphics.Glx.GlxPointers._glXGetVisualFromFBConfigSGIX_fnptr commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXGetVisualFromFBConfigSGIX_fnptr @@ -2340,9 +2340,9 @@ items: summary: '[entry point: glXGetVisualFromFBConfigSGIX]' example: [] syntax: - content: public static delegate* unmanaged _glXGetVisualFromFBConfigSGIX_fnptr + content: public static delegate* unmanaged _glXGetVisualFromFBConfigSGIX_fnptr return: - type: delegate* unmanaged + type: delegate* unmanaged content.vb: 'Public Shared _glXGetVisualFromFBConfigSGIX_fnptr As ' - uid: OpenTK.Graphics.Glx.GlxPointers._glXHyperpipeAttribSGIX_fnptr commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXHyperpipeAttribSGIX_fnptr @@ -2369,9 +2369,9 @@ items: summary: '[entry point: glXHyperpipeAttribSGIX]' example: [] syntax: - content: public static delegate* unmanaged _glXHyperpipeAttribSGIX_fnptr + content: public static delegate* unmanaged _glXHyperpipeAttribSGIX_fnptr return: - type: delegate* unmanaged + type: delegate* unmanaged content.vb: 'Public Shared _glXHyperpipeAttribSGIX_fnptr As ' - uid: OpenTK.Graphics.Glx.GlxPointers._glXHyperpipeConfigSGIX_fnptr commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXHyperpipeConfigSGIX_fnptr @@ -2398,9 +2398,9 @@ items: summary: '[entry point: glXHyperpipeConfigSGIX]' example: [] syntax: - content: public static delegate* unmanaged _glXHyperpipeConfigSGIX_fnptr + content: public static delegate* unmanaged _glXHyperpipeConfigSGIX_fnptr return: - type: delegate* unmanaged + type: delegate* unmanaged content.vb: 'Public Shared _glXHyperpipeConfigSGIX_fnptr As ' - uid: OpenTK.Graphics.Glx.GlxPointers._glXImportContextEXT_fnptr commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXImportContextEXT_fnptr @@ -2427,9 +2427,9 @@ items: summary: '[entry point: glXImportContextEXT]' example: [] syntax: - content: public static delegate* unmanaged _glXImportContextEXT_fnptr + content: public static delegate* unmanaged _glXImportContextEXT_fnptr return: - type: delegate* unmanaged + type: delegate* unmanaged content.vb: 'Public Shared _glXImportContextEXT_fnptr As ' - uid: OpenTK.Graphics.Glx.GlxPointers._glXIsDirect_fnptr commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXIsDirect_fnptr @@ -2456,9 +2456,9 @@ items: summary: '[entry point: glXIsDirect]' example: [] syntax: - content: public static delegate* unmanaged _glXIsDirect_fnptr + content: public static delegate* unmanaged _glXIsDirect_fnptr return: - type: delegate* unmanaged + type: delegate* unmanaged content.vb: 'Public Shared _glXIsDirect_fnptr As ' - uid: OpenTK.Graphics.Glx.GlxPointers._glXJoinSwapGroupNV_fnptr commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXJoinSwapGroupNV_fnptr @@ -2485,9 +2485,9 @@ items: summary: '[entry point: glXJoinSwapGroupNV]' example: [] syntax: - content: public static delegate* unmanaged _glXJoinSwapGroupNV_fnptr + content: public static delegate* unmanaged _glXJoinSwapGroupNV_fnptr return: - type: delegate* unmanaged + type: delegate* unmanaged content.vb: 'Public Shared _glXJoinSwapGroupNV_fnptr As ' - uid: OpenTK.Graphics.Glx.GlxPointers._glXJoinSwapGroupSGIX_fnptr commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXJoinSwapGroupSGIX_fnptr @@ -2514,9 +2514,9 @@ items: summary: '[entry point: glXJoinSwapGroupSGIX]' example: [] syntax: - content: public static delegate* unmanaged _glXJoinSwapGroupSGIX_fnptr + content: public static delegate* unmanaged _glXJoinSwapGroupSGIX_fnptr return: - type: delegate* unmanaged + type: delegate* unmanaged content.vb: 'Public Shared _glXJoinSwapGroupSGIX_fnptr As ' - uid: OpenTK.Graphics.Glx.GlxPointers._glXLockVideoCaptureDeviceNV_fnptr commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXLockVideoCaptureDeviceNV_fnptr @@ -2543,9 +2543,9 @@ items: summary: '[entry point: glXLockVideoCaptureDeviceNV]' example: [] syntax: - content: public static delegate* unmanaged _glXLockVideoCaptureDeviceNV_fnptr + content: public static delegate* unmanaged _glXLockVideoCaptureDeviceNV_fnptr return: - type: delegate* unmanaged + type: delegate* unmanaged content.vb: 'Public Shared _glXLockVideoCaptureDeviceNV_fnptr As ' - uid: OpenTK.Graphics.Glx.GlxPointers._glXMakeAssociatedContextCurrentAMD_fnptr commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXMakeAssociatedContextCurrentAMD_fnptr @@ -2601,9 +2601,9 @@ items: summary: '[entry point: glXMakeContextCurrent]' example: [] syntax: - content: public static delegate* unmanaged _glXMakeContextCurrent_fnptr + content: public static delegate* unmanaged _glXMakeContextCurrent_fnptr return: - type: delegate* unmanaged + type: delegate* unmanaged content.vb: 'Public Shared _glXMakeContextCurrent_fnptr As ' - uid: OpenTK.Graphics.Glx.GlxPointers._glXMakeCurrent_fnptr commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXMakeCurrent_fnptr @@ -2630,9 +2630,9 @@ items: summary: '[entry point: glXMakeCurrent]' example: [] syntax: - content: public static delegate* unmanaged _glXMakeCurrent_fnptr + content: public static delegate* unmanaged _glXMakeCurrent_fnptr return: - type: delegate* unmanaged + type: delegate* unmanaged content.vb: 'Public Shared _glXMakeCurrent_fnptr As ' - uid: OpenTK.Graphics.Glx.GlxPointers._glXMakeCurrentReadSGI_fnptr commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXMakeCurrentReadSGI_fnptr @@ -2659,9 +2659,9 @@ items: summary: '[entry point: glXMakeCurrentReadSGI]' example: [] syntax: - content: public static delegate* unmanaged _glXMakeCurrentReadSGI_fnptr + content: public static delegate* unmanaged _glXMakeCurrentReadSGI_fnptr return: - type: delegate* unmanaged + type: delegate* unmanaged content.vb: 'Public Shared _glXMakeCurrentReadSGI_fnptr As ' - uid: OpenTK.Graphics.Glx.GlxPointers._glXNamedCopyBufferSubDataNV_fnptr commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXNamedCopyBufferSubDataNV_fnptr @@ -2688,9 +2688,9 @@ items: summary: '[entry point: glXNamedCopyBufferSubDataNV]' example: [] syntax: - content: public static delegate* unmanaged _glXNamedCopyBufferSubDataNV_fnptr + content: public static delegate* unmanaged _glXNamedCopyBufferSubDataNV_fnptr return: - type: delegate* unmanaged + type: delegate* unmanaged content.vb: 'Public Shared _glXNamedCopyBufferSubDataNV_fnptr As ' - uid: OpenTK.Graphics.Glx.GlxPointers._glXQueryChannelDeltasSGIX_fnptr commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXQueryChannelDeltasSGIX_fnptr @@ -2717,9 +2717,9 @@ items: summary: '[entry point: glXQueryChannelDeltasSGIX]' example: [] syntax: - content: public static delegate* unmanaged _glXQueryChannelDeltasSGIX_fnptr + content: public static delegate* unmanaged _glXQueryChannelDeltasSGIX_fnptr return: - type: delegate* unmanaged + type: delegate* unmanaged content.vb: 'Public Shared _glXQueryChannelDeltasSGIX_fnptr As ' - uid: OpenTK.Graphics.Glx.GlxPointers._glXQueryChannelRectSGIX_fnptr commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXQueryChannelRectSGIX_fnptr @@ -2746,9 +2746,9 @@ items: summary: '[entry point: glXQueryChannelRectSGIX]' example: [] syntax: - content: public static delegate* unmanaged _glXQueryChannelRectSGIX_fnptr + content: public static delegate* unmanaged _glXQueryChannelRectSGIX_fnptr return: - type: delegate* unmanaged + type: delegate* unmanaged content.vb: 'Public Shared _glXQueryChannelRectSGIX_fnptr As ' - uid: OpenTK.Graphics.Glx.GlxPointers._glXQueryContext_fnptr commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXQueryContext_fnptr @@ -2775,9 +2775,9 @@ items: summary: '[entry point: glXQueryContext]' example: [] syntax: - content: public static delegate* unmanaged _glXQueryContext_fnptr + content: public static delegate* unmanaged _glXQueryContext_fnptr return: - type: delegate* unmanaged + type: delegate* unmanaged content.vb: 'Public Shared _glXQueryContext_fnptr As ' - uid: OpenTK.Graphics.Glx.GlxPointers._glXQueryContextInfoEXT_fnptr commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXQueryContextInfoEXT_fnptr @@ -2804,9 +2804,9 @@ items: summary: '[entry point: glXQueryContextInfoEXT]' example: [] syntax: - content: public static delegate* unmanaged _glXQueryContextInfoEXT_fnptr + content: public static delegate* unmanaged _glXQueryContextInfoEXT_fnptr return: - type: delegate* unmanaged + type: delegate* unmanaged content.vb: 'Public Shared _glXQueryContextInfoEXT_fnptr As ' - uid: OpenTK.Graphics.Glx.GlxPointers._glXQueryCurrentRendererIntegerMESA_fnptr commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXQueryCurrentRendererIntegerMESA_fnptr @@ -2891,9 +2891,9 @@ items: summary: '[entry point: glXQueryDrawable]' example: [] syntax: - content: public static delegate* unmanaged _glXQueryDrawable_fnptr + content: public static delegate* unmanaged _glXQueryDrawable_fnptr return: - type: delegate* unmanaged + type: delegate* unmanaged content.vb: 'Public Shared _glXQueryDrawable_fnptr As ' - uid: OpenTK.Graphics.Glx.GlxPointers._glXQueryExtension_fnptr commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXQueryExtension_fnptr @@ -2920,9 +2920,9 @@ items: summary: '[entry point: glXQueryExtension]' example: [] syntax: - content: public static delegate* unmanaged _glXQueryExtension_fnptr + content: public static delegate* unmanaged _glXQueryExtension_fnptr return: - type: delegate* unmanaged + type: delegate* unmanaged content.vb: 'Public Shared _glXQueryExtension_fnptr As ' - uid: OpenTK.Graphics.Glx.GlxPointers._glXQueryExtensionsString_fnptr commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXQueryExtensionsString_fnptr @@ -2949,9 +2949,9 @@ items: summary: '[entry point: glXQueryExtensionsString]' example: [] syntax: - content: public static delegate* unmanaged _glXQueryExtensionsString_fnptr + content: public static delegate* unmanaged _glXQueryExtensionsString_fnptr return: - type: delegate* unmanaged + type: delegate* unmanaged content.vb: 'Public Shared _glXQueryExtensionsString_fnptr As ' - uid: OpenTK.Graphics.Glx.GlxPointers._glXQueryFrameCountNV_fnptr commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXQueryFrameCountNV_fnptr @@ -2978,9 +2978,9 @@ items: summary: '[entry point: glXQueryFrameCountNV]' example: [] syntax: - content: public static delegate* unmanaged _glXQueryFrameCountNV_fnptr + content: public static delegate* unmanaged _glXQueryFrameCountNV_fnptr return: - type: delegate* unmanaged + type: delegate* unmanaged content.vb: 'Public Shared _glXQueryFrameCountNV_fnptr As ' - uid: OpenTK.Graphics.Glx.GlxPointers._glXQueryGLXPbufferSGIX_fnptr commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXQueryGLXPbufferSGIX_fnptr @@ -3007,9 +3007,9 @@ items: summary: '[entry point: glXQueryGLXPbufferSGIX]' example: [] syntax: - content: public static delegate* unmanaged _glXQueryGLXPbufferSGIX_fnptr + content: public static delegate* unmanaged _glXQueryGLXPbufferSGIX_fnptr return: - type: delegate* unmanaged + type: delegate* unmanaged content.vb: 'Public Shared _glXQueryGLXPbufferSGIX_fnptr As ' - uid: OpenTK.Graphics.Glx.GlxPointers._glXQueryHyperpipeAttribSGIX_fnptr commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXQueryHyperpipeAttribSGIX_fnptr @@ -3036,9 +3036,9 @@ items: summary: '[entry point: glXQueryHyperpipeAttribSGIX]' example: [] syntax: - content: public static delegate* unmanaged _glXQueryHyperpipeAttribSGIX_fnptr + content: public static delegate* unmanaged _glXQueryHyperpipeAttribSGIX_fnptr return: - type: delegate* unmanaged + type: delegate* unmanaged content.vb: 'Public Shared _glXQueryHyperpipeAttribSGIX_fnptr As ' - uid: OpenTK.Graphics.Glx.GlxPointers._glXQueryHyperpipeBestAttribSGIX_fnptr commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXQueryHyperpipeBestAttribSGIX_fnptr @@ -3065,9 +3065,9 @@ items: summary: '[entry point: glXQueryHyperpipeBestAttribSGIX]' example: [] syntax: - content: public static delegate* unmanaged _glXQueryHyperpipeBestAttribSGIX_fnptr + content: public static delegate* unmanaged _glXQueryHyperpipeBestAttribSGIX_fnptr return: - type: delegate* unmanaged + type: delegate* unmanaged content.vb: 'Public Shared _glXQueryHyperpipeBestAttribSGIX_fnptr As ' - uid: OpenTK.Graphics.Glx.GlxPointers._glXQueryHyperpipeConfigSGIX_fnptr commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXQueryHyperpipeConfigSGIX_fnptr @@ -3094,9 +3094,9 @@ items: summary: '[entry point: glXQueryHyperpipeConfigSGIX]' example: [] syntax: - content: public static delegate* unmanaged _glXQueryHyperpipeConfigSGIX_fnptr + content: public static delegate* unmanaged _glXQueryHyperpipeConfigSGIX_fnptr return: - type: delegate* unmanaged + type: delegate* unmanaged content.vb: 'Public Shared _glXQueryHyperpipeConfigSGIX_fnptr As ' - uid: OpenTK.Graphics.Glx.GlxPointers._glXQueryHyperpipeNetworkSGIX_fnptr commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXQueryHyperpipeNetworkSGIX_fnptr @@ -3123,9 +3123,9 @@ items: summary: '[entry point: glXQueryHyperpipeNetworkSGIX]' example: [] syntax: - content: public static delegate* unmanaged _glXQueryHyperpipeNetworkSGIX_fnptr + content: public static delegate* unmanaged _glXQueryHyperpipeNetworkSGIX_fnptr return: - type: delegate* unmanaged + type: delegate* unmanaged content.vb: 'Public Shared _glXQueryHyperpipeNetworkSGIX_fnptr As ' - uid: OpenTK.Graphics.Glx.GlxPointers._glXQueryMaxSwapBarriersSGIX_fnptr commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXQueryMaxSwapBarriersSGIX_fnptr @@ -3152,9 +3152,9 @@ items: summary: '[entry point: glXQueryMaxSwapBarriersSGIX]' example: [] syntax: - content: public static delegate* unmanaged _glXQueryMaxSwapBarriersSGIX_fnptr + content: public static delegate* unmanaged _glXQueryMaxSwapBarriersSGIX_fnptr return: - type: delegate* unmanaged + type: delegate* unmanaged content.vb: 'Public Shared _glXQueryMaxSwapBarriersSGIX_fnptr As ' - uid: OpenTK.Graphics.Glx.GlxPointers._glXQueryMaxSwapGroupsNV_fnptr commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXQueryMaxSwapGroupsNV_fnptr @@ -3181,9 +3181,9 @@ items: summary: '[entry point: glXQueryMaxSwapGroupsNV]' example: [] syntax: - content: public static delegate* unmanaged _glXQueryMaxSwapGroupsNV_fnptr + content: public static delegate* unmanaged _glXQueryMaxSwapGroupsNV_fnptr return: - type: delegate* unmanaged + type: delegate* unmanaged content.vb: 'Public Shared _glXQueryMaxSwapGroupsNV_fnptr As ' - uid: OpenTK.Graphics.Glx.GlxPointers._glXQueryRendererIntegerMESA_fnptr commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXQueryRendererIntegerMESA_fnptr @@ -3210,9 +3210,9 @@ items: summary: '[entry point: glXQueryRendererIntegerMESA]' example: [] syntax: - content: public static delegate* unmanaged _glXQueryRendererIntegerMESA_fnptr + content: public static delegate* unmanaged _glXQueryRendererIntegerMESA_fnptr return: - type: delegate* unmanaged + type: delegate* unmanaged content.vb: 'Public Shared _glXQueryRendererIntegerMESA_fnptr As ' - uid: OpenTK.Graphics.Glx.GlxPointers._glXQueryRendererStringMESA_fnptr commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXQueryRendererStringMESA_fnptr @@ -3239,9 +3239,9 @@ items: summary: '[entry point: glXQueryRendererStringMESA]' example: [] syntax: - content: public static delegate* unmanaged _glXQueryRendererStringMESA_fnptr + content: public static delegate* unmanaged _glXQueryRendererStringMESA_fnptr return: - type: delegate* unmanaged + type: delegate* unmanaged content.vb: 'Public Shared _glXQueryRendererStringMESA_fnptr As ' - uid: OpenTK.Graphics.Glx.GlxPointers._glXQueryServerString_fnptr commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXQueryServerString_fnptr @@ -3268,9 +3268,9 @@ items: summary: '[entry point: glXQueryServerString]' example: [] syntax: - content: public static delegate* unmanaged _glXQueryServerString_fnptr + content: public static delegate* unmanaged _glXQueryServerString_fnptr return: - type: delegate* unmanaged + type: delegate* unmanaged content.vb: 'Public Shared _glXQueryServerString_fnptr As ' - uid: OpenTK.Graphics.Glx.GlxPointers._glXQuerySwapGroupNV_fnptr commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXQuerySwapGroupNV_fnptr @@ -3297,9 +3297,9 @@ items: summary: '[entry point: glXQuerySwapGroupNV]' example: [] syntax: - content: public static delegate* unmanaged _glXQuerySwapGroupNV_fnptr + content: public static delegate* unmanaged _glXQuerySwapGroupNV_fnptr return: - type: delegate* unmanaged + type: delegate* unmanaged content.vb: 'Public Shared _glXQuerySwapGroupNV_fnptr As ' - uid: OpenTK.Graphics.Glx.GlxPointers._glXQueryVersion_fnptr commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXQueryVersion_fnptr @@ -3326,9 +3326,9 @@ items: summary: '[entry point: glXQueryVersion]' example: [] syntax: - content: public static delegate* unmanaged _glXQueryVersion_fnptr + content: public static delegate* unmanaged _glXQueryVersion_fnptr return: - type: delegate* unmanaged + type: delegate* unmanaged content.vb: 'Public Shared _glXQueryVersion_fnptr As ' - uid: OpenTK.Graphics.Glx.GlxPointers._glXQueryVideoCaptureDeviceNV_fnptr commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXQueryVideoCaptureDeviceNV_fnptr @@ -3355,9 +3355,9 @@ items: summary: '[entry point: glXQueryVideoCaptureDeviceNV]' example: [] syntax: - content: public static delegate* unmanaged _glXQueryVideoCaptureDeviceNV_fnptr + content: public static delegate* unmanaged _glXQueryVideoCaptureDeviceNV_fnptr return: - type: delegate* unmanaged + type: delegate* unmanaged content.vb: 'Public Shared _glXQueryVideoCaptureDeviceNV_fnptr As ' - uid: OpenTK.Graphics.Glx.GlxPointers._glXReleaseBuffersMESA_fnptr commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXReleaseBuffersMESA_fnptr @@ -3384,9 +3384,9 @@ items: summary: '[entry point: glXReleaseBuffersMESA]' example: [] syntax: - content: public static delegate* unmanaged _glXReleaseBuffersMESA_fnptr + content: public static delegate* unmanaged _glXReleaseBuffersMESA_fnptr return: - type: delegate* unmanaged + type: delegate* unmanaged content.vb: 'Public Shared _glXReleaseBuffersMESA_fnptr As ' - uid: OpenTK.Graphics.Glx.GlxPointers._glXReleaseTexImageEXT_fnptr commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXReleaseTexImageEXT_fnptr @@ -3413,9 +3413,9 @@ items: summary: '[entry point: glXReleaseTexImageEXT]' example: [] syntax: - content: public static delegate* unmanaged _glXReleaseTexImageEXT_fnptr + content: public static delegate* unmanaged _glXReleaseTexImageEXT_fnptr return: - type: delegate* unmanaged + type: delegate* unmanaged content.vb: 'Public Shared _glXReleaseTexImageEXT_fnptr As ' - uid: OpenTK.Graphics.Glx.GlxPointers._glXReleaseVideoCaptureDeviceNV_fnptr commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXReleaseVideoCaptureDeviceNV_fnptr @@ -3442,9 +3442,9 @@ items: summary: '[entry point: glXReleaseVideoCaptureDeviceNV]' example: [] syntax: - content: public static delegate* unmanaged _glXReleaseVideoCaptureDeviceNV_fnptr + content: public static delegate* unmanaged _glXReleaseVideoCaptureDeviceNV_fnptr return: - type: delegate* unmanaged + type: delegate* unmanaged content.vb: 'Public Shared _glXReleaseVideoCaptureDeviceNV_fnptr As ' - uid: OpenTK.Graphics.Glx.GlxPointers._glXReleaseVideoDeviceNV_fnptr commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXReleaseVideoDeviceNV_fnptr @@ -3471,9 +3471,9 @@ items: summary: '[entry point: glXReleaseVideoDeviceNV]' example: [] syntax: - content: public static delegate* unmanaged _glXReleaseVideoDeviceNV_fnptr + content: public static delegate* unmanaged _glXReleaseVideoDeviceNV_fnptr return: - type: delegate* unmanaged + type: delegate* unmanaged content.vb: 'Public Shared _glXReleaseVideoDeviceNV_fnptr As ' - uid: OpenTK.Graphics.Glx.GlxPointers._glXReleaseVideoImageNV_fnptr commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXReleaseVideoImageNV_fnptr @@ -3500,9 +3500,9 @@ items: summary: '[entry point: glXReleaseVideoImageNV]' example: [] syntax: - content: public static delegate* unmanaged _glXReleaseVideoImageNV_fnptr + content: public static delegate* unmanaged _glXReleaseVideoImageNV_fnptr return: - type: delegate* unmanaged + type: delegate* unmanaged content.vb: 'Public Shared _glXReleaseVideoImageNV_fnptr As ' - uid: OpenTK.Graphics.Glx.GlxPointers._glXResetFrameCountNV_fnptr commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXResetFrameCountNV_fnptr @@ -3529,9 +3529,9 @@ items: summary: '[entry point: glXResetFrameCountNV]' example: [] syntax: - content: public static delegate* unmanaged _glXResetFrameCountNV_fnptr + content: public static delegate* unmanaged _glXResetFrameCountNV_fnptr return: - type: delegate* unmanaged + type: delegate* unmanaged content.vb: 'Public Shared _glXResetFrameCountNV_fnptr As ' - uid: OpenTK.Graphics.Glx.GlxPointers._glXSelectEvent_fnptr commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXSelectEvent_fnptr @@ -3558,9 +3558,9 @@ items: summary: '[entry point: glXSelectEvent]' example: [] syntax: - content: public static delegate* unmanaged _glXSelectEvent_fnptr + content: public static delegate* unmanaged _glXSelectEvent_fnptr return: - type: delegate* unmanaged + type: delegate* unmanaged content.vb: 'Public Shared _glXSelectEvent_fnptr As ' - uid: OpenTK.Graphics.Glx.GlxPointers._glXSelectEventSGIX_fnptr commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXSelectEventSGIX_fnptr @@ -3587,9 +3587,9 @@ items: summary: '[entry point: glXSelectEventSGIX]' example: [] syntax: - content: public static delegate* unmanaged _glXSelectEventSGIX_fnptr + content: public static delegate* unmanaged _glXSelectEventSGIX_fnptr return: - type: delegate* unmanaged + type: delegate* unmanaged content.vb: 'Public Shared _glXSelectEventSGIX_fnptr As ' - uid: OpenTK.Graphics.Glx.GlxPointers._glXSendPbufferToVideoNV_fnptr commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXSendPbufferToVideoNV_fnptr @@ -3616,9 +3616,9 @@ items: summary: '[entry point: glXSendPbufferToVideoNV]' example: [] syntax: - content: public static delegate* unmanaged _glXSendPbufferToVideoNV_fnptr + content: public static delegate* unmanaged _glXSendPbufferToVideoNV_fnptr return: - type: delegate* unmanaged + type: delegate* unmanaged content.vb: 'Public Shared _glXSendPbufferToVideoNV_fnptr As ' - uid: OpenTK.Graphics.Glx.GlxPointers._glXSet3DfxModeMESA_fnptr commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXSet3DfxModeMESA_fnptr @@ -3674,9 +3674,9 @@ items: summary: '[entry point: glXSwapBuffers]' example: [] syntax: - content: public static delegate* unmanaged _glXSwapBuffers_fnptr + content: public static delegate* unmanaged _glXSwapBuffers_fnptr return: - type: delegate* unmanaged + type: delegate* unmanaged content.vb: 'Public Shared _glXSwapBuffers_fnptr As ' - uid: OpenTK.Graphics.Glx.GlxPointers._glXSwapBuffersMscOML_fnptr commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXSwapBuffersMscOML_fnptr @@ -3703,9 +3703,9 @@ items: summary: '[entry point: glXSwapBuffersMscOML]' example: [] syntax: - content: public static delegate* unmanaged _glXSwapBuffersMscOML_fnptr + content: public static delegate* unmanaged _glXSwapBuffersMscOML_fnptr return: - type: delegate* unmanaged + type: delegate* unmanaged content.vb: 'Public Shared _glXSwapBuffersMscOML_fnptr As ' - uid: OpenTK.Graphics.Glx.GlxPointers._glXSwapIntervalEXT_fnptr commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXSwapIntervalEXT_fnptr @@ -3732,9 +3732,9 @@ items: summary: '[entry point: glXSwapIntervalEXT]' example: [] syntax: - content: public static delegate* unmanaged _glXSwapIntervalEXT_fnptr + content: public static delegate* unmanaged _glXSwapIntervalEXT_fnptr return: - type: delegate* unmanaged + type: delegate* unmanaged content.vb: 'Public Shared _glXSwapIntervalEXT_fnptr As ' - uid: OpenTK.Graphics.Glx.GlxPointers._glXSwapIntervalMESA_fnptr commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXSwapIntervalMESA_fnptr @@ -3848,9 +3848,9 @@ items: summary: '[entry point: glXWaitForMscOML]' example: [] syntax: - content: public static delegate* unmanaged _glXWaitForMscOML_fnptr + content: public static delegate* unmanaged _glXWaitForMscOML_fnptr return: - type: delegate* unmanaged + type: delegate* unmanaged content.vb: 'Public Shared _glXWaitForMscOML_fnptr As ' - uid: OpenTK.Graphics.Glx.GlxPointers._glXWaitForSbcOML_fnptr commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXWaitForSbcOML_fnptr @@ -3877,9 +3877,9 @@ items: summary: '[entry point: glXWaitForSbcOML]' example: [] syntax: - content: public static delegate* unmanaged _glXWaitForSbcOML_fnptr + content: public static delegate* unmanaged _glXWaitForSbcOML_fnptr return: - type: delegate* unmanaged + type: delegate* unmanaged content.vb: 'Public Shared _glXWaitForSbcOML_fnptr As ' - uid: OpenTK.Graphics.Glx.GlxPointers._glXWaitGL_fnptr commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXWaitGL_fnptr @@ -4236,22 +4236,22 @@ references: name: System nameWithType: System fullName: System -- uid: delegate* unmanaged +- uid: delegate* unmanaged isExternal: true - href: OpenTK.Graphics.Glx.Display.html - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged + href: https://learn.microsoft.com/dotnet/api/system.intptr + name: delegate* unmanaged + nameWithType: delegate* unmanaged + fullName: delegate* unmanaged spec.csharp: - name: delegate - name: '*' - name: " " - name: unmanaged - name: < - - uid: OpenTK.Graphics.Glx.Display - name: Display - href: OpenTK.Graphics.Glx.Display.html - - name: '*' + - uid: System.IntPtr + name: nint + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.intptr - name: ',' - name: " " - uid: System.Int32 @@ -4277,22 +4277,22 @@ references: isExternal: true href: https://learn.microsoft.com/dotnet/api/system.int32 - name: '>' -- uid: delegate* unmanaged +- uid: delegate* unmanaged isExternal: true - href: OpenTK.Graphics.Glx.Display.html - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged + href: https://learn.microsoft.com/dotnet/api/system.intptr + name: delegate* unmanaged + nameWithType: delegate* unmanaged + fullName: delegate* unmanaged spec.csharp: - name: delegate - name: '*' - name: " " - name: unmanaged - name: < - - uid: OpenTK.Graphics.Glx.Display - name: Display - href: OpenTK.Graphics.Glx.Display.html - - name: '*' + - uid: System.IntPtr + name: nint + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.intptr - name: ',' - name: " " - uid: System.Int32 @@ -4306,22 +4306,22 @@ references: isExternal: true href: https://learn.microsoft.com/dotnet/api/system.int32 - name: '>' -- uid: delegate* unmanaged +- uid: delegate* unmanaged isExternal: true - href: OpenTK.Graphics.Glx.Display.html - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged + href: https://learn.microsoft.com/dotnet/api/system.intptr + name: delegate* unmanaged + nameWithType: delegate* unmanaged + fullName: delegate* unmanaged spec.csharp: - name: delegate - name: '*' - name: " " - name: unmanaged - name: < - - uid: OpenTK.Graphics.Glx.Display - name: Display - href: OpenTK.Graphics.Glx.Display.html - - name: '*' + - uid: System.IntPtr + name: nint + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.intptr - name: ',' - name: " " - uid: System.UInt32 @@ -4341,22 +4341,22 @@ references: isExternal: true href: https://learn.microsoft.com/dotnet/api/system.byte - name: '>' -- uid: delegate* unmanaged +- uid: delegate* unmanaged isExternal: true - href: OpenTK.Graphics.Glx.Display.html - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged + href: https://learn.microsoft.com/dotnet/api/system.intptr + name: delegate* unmanaged + nameWithType: delegate* unmanaged + fullName: delegate* unmanaged spec.csharp: - name: delegate - name: '*' - name: " " - name: unmanaged - name: < - - uid: OpenTK.Graphics.Glx.Display - name: Display - href: OpenTK.Graphics.Glx.Display.html - - name: '*' + - uid: System.IntPtr + name: nint + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.intptr - name: ',' - name: " " - uid: System.UIntPtr @@ -4376,22 +4376,22 @@ references: isExternal: true href: https://learn.microsoft.com/dotnet/api/system.void - name: '>' -- uid: delegate* unmanaged +- uid: delegate* unmanaged isExternal: true - href: OpenTK.Graphics.Glx.Display.html - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged + href: https://learn.microsoft.com/dotnet/api/system.intptr + name: delegate* unmanaged + nameWithType: delegate* unmanaged + fullName: delegate* unmanaged spec.csharp: - name: delegate - name: '*' - name: " " - name: unmanaged - name: < - - uid: OpenTK.Graphics.Glx.Display - name: Display - href: OpenTK.Graphics.Glx.Display.html - - name: '*' + - uid: System.IntPtr + name: nint + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.intptr - name: ',' - name: " " - uid: System.UIntPtr @@ -4418,22 +4418,22 @@ references: isExternal: true href: https://learn.microsoft.com/dotnet/api/system.void - name: '>' -- uid: delegate* unmanaged +- uid: delegate* unmanaged isExternal: true - href: OpenTK.Graphics.Glx.Display.html - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged + href: https://learn.microsoft.com/dotnet/api/system.intptr + name: delegate* unmanaged + nameWithType: delegate* unmanaged + fullName: delegate* unmanaged spec.csharp: - name: delegate - name: '*' - name: " " - name: unmanaged - name: < - - uid: OpenTK.Graphics.Glx.Display - name: Display - href: OpenTK.Graphics.Glx.Display.html - - name: '*' + - uid: System.IntPtr + name: nint + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.intptr - name: ',' - name: " " - uid: System.UInt32 @@ -4453,22 +4453,22 @@ references: isExternal: true href: https://learn.microsoft.com/dotnet/api/system.int32 - name: '>' -- uid: delegate* unmanaged +- uid: delegate* unmanaged isExternal: true - href: OpenTK.Graphics.Glx.Display.html - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged + href: https://learn.microsoft.com/dotnet/api/system.intptr + name: delegate* unmanaged + nameWithType: delegate* unmanaged + fullName: delegate* unmanaged spec.csharp: - name: delegate - name: '*' - name: " " - name: unmanaged - name: < - - uid: OpenTK.Graphics.Glx.Display - name: Display - href: OpenTK.Graphics.Glx.Display.html - - name: '*' + - uid: System.IntPtr + name: nint + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.intptr - name: ',' - name: " " - uid: System.UInt32 @@ -4495,22 +4495,22 @@ references: isExternal: true href: https://learn.microsoft.com/dotnet/api/system.int32 - name: '>' -- uid: delegate* unmanaged +- uid: delegate* unmanaged isExternal: true - href: OpenTK.Graphics.Glx.Display.html - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged + href: https://learn.microsoft.com/dotnet/api/system.intptr + name: delegate* unmanaged + nameWithType: delegate* unmanaged + fullName: delegate* unmanaged spec.csharp: - name: delegate - name: '*' - name: " " - name: unmanaged - name: < - - uid: OpenTK.Graphics.Glx.Display - name: Display - href: OpenTK.Graphics.Glx.Display.html - - name: '*' + - uid: System.IntPtr + name: nint + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.intptr - name: ',' - name: " " - uid: System.UInt32 @@ -4619,22 +4619,22 @@ references: isExternal: true href: https://learn.microsoft.com/dotnet/api/system.void - name: '>' -- uid: delegate* unmanaged +- uid: delegate* unmanaged isExternal: true - href: OpenTK.Graphics.Glx.Display.html - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged + href: https://learn.microsoft.com/dotnet/api/system.intptr + name: delegate* unmanaged + nameWithType: delegate* unmanaged + fullName: delegate* unmanaged spec.csharp: - name: delegate - name: '*' - name: " " - name: unmanaged - name: < - - uid: OpenTK.Graphics.Glx.Display - name: Display - href: OpenTK.Graphics.Glx.Display.html - - name: '*' + - uid: System.IntPtr + name: nint + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.intptr - name: ',' - name: " " - uid: System.Int32 @@ -4678,22 +4678,22 @@ references: isExternal: true href: https://learn.microsoft.com/dotnet/api/system.int32 - name: '>' -- uid: delegate* unmanaged +- uid: delegate* unmanaged isExternal: true - href: OpenTK.Graphics.Glx.Display.html - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged + href: https://learn.microsoft.com/dotnet/api/system.intptr + name: delegate* unmanaged + nameWithType: delegate* unmanaged + fullName: delegate* unmanaged spec.csharp: - name: delegate - name: '*' - name: " " - name: unmanaged - name: < - - uid: OpenTK.Graphics.Glx.Display - name: Display - href: OpenTK.Graphics.Glx.Display.html - - name: '*' + - uid: System.IntPtr + name: nint + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.intptr - name: ',' - name: " " - uid: System.Int32 @@ -4719,22 +4719,22 @@ references: isExternal: true href: https://learn.microsoft.com/dotnet/api/system.int32 - name: '>' -- uid: delegate* unmanaged +- uid: delegate* unmanaged isExternal: true - href: OpenTK.Graphics.Glx.Display.html - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged + href: https://learn.microsoft.com/dotnet/api/system.intptr + name: delegate* unmanaged + nameWithType: delegate* unmanaged + fullName: delegate* unmanaged spec.csharp: - name: delegate - name: '*' - name: " " - name: unmanaged - name: < - - uid: OpenTK.Graphics.Glx.Display - name: Display - href: OpenTK.Graphics.Glx.Display.html - - name: '*' + - uid: System.IntPtr + name: nint + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.intptr - name: ',' - name: " " - uid: System.Int32 @@ -4763,22 +4763,22 @@ references: href: https://learn.microsoft.com/dotnet/api/system.intptr - name: '*' - name: '>' -- uid: delegate* unmanaged +- uid: delegate* unmanaged isExternal: true - href: OpenTK.Graphics.Glx.Display.html - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged + href: https://learn.microsoft.com/dotnet/api/system.intptr + name: delegate* unmanaged + nameWithType: delegate* unmanaged + fullName: delegate* unmanaged spec.csharp: - name: delegate - name: '*' - name: " " - name: unmanaged - name: < - - uid: OpenTK.Graphics.Glx.Display - name: Display - href: OpenTK.Graphics.Glx.Display.html - - name: '*' + - uid: System.IntPtr + name: nint + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.intptr - name: ',' - name: " " - uid: System.Int32 @@ -4794,27 +4794,27 @@ references: - name: '*' - name: ',' - name: " " - - uid: OpenTK.Graphics.Glx.XVisualInfo - name: XVisualInfo - href: OpenTK.Graphics.Glx.XVisualInfo.html - - name: '*' + - uid: System.IntPtr + name: nint + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.intptr - name: '>' -- uid: delegate* unmanaged +- uid: delegate* unmanaged isExternal: true - href: OpenTK.Graphics.Glx.Display.html - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged + href: https://learn.microsoft.com/dotnet/api/system.intptr + name: delegate* unmanaged + nameWithType: delegate* unmanaged + fullName: delegate* unmanaged spec.csharp: - name: delegate - name: '*' - name: " " - name: unmanaged - name: < - - uid: OpenTK.Graphics.Glx.Display - name: Display - href: OpenTK.Graphics.Glx.Display.html - - name: '*' + - uid: System.IntPtr + name: nint + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.intptr - name: ',' - name: " " - uid: System.IntPtr @@ -4864,22 +4864,22 @@ references: isExternal: true href: https://learn.microsoft.com/dotnet/api/system.void - name: '>' -- uid: delegate* unmanaged +- uid: delegate* unmanaged isExternal: true - href: OpenTK.Graphics.Glx.Display.html - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged + href: https://learn.microsoft.com/dotnet/api/system.intptr + name: delegate* unmanaged + nameWithType: delegate* unmanaged + fullName: delegate* unmanaged spec.csharp: - name: delegate - name: '*' - name: " " - name: unmanaged - name: < - - uid: OpenTK.Graphics.Glx.Display - name: Display - href: OpenTK.Graphics.Glx.Display.html - - name: '*' + - uid: System.IntPtr + name: nint + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.intptr - name: ',' - name: " " - uid: System.IntPtr @@ -4905,22 +4905,22 @@ references: isExternal: true href: https://learn.microsoft.com/dotnet/api/system.void - name: '>' -- uid: delegate* unmanaged +- uid: delegate* unmanaged isExternal: true - href: OpenTK.Graphics.Glx.Display.html - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged + href: https://learn.microsoft.com/dotnet/api/system.intptr + name: delegate* unmanaged + nameWithType: delegate* unmanaged + fullName: delegate* unmanaged spec.csharp: - name: delegate - name: '*' - name: " " - name: unmanaged - name: < - - uid: OpenTK.Graphics.Glx.Display - name: Display - href: OpenTK.Graphics.Glx.Display.html - - name: '*' + - uid: System.IntPtr + name: nint + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.intptr - name: ',' - name: " " - uid: System.IntPtr @@ -5030,22 +5030,22 @@ references: isExternal: true href: https://learn.microsoft.com/dotnet/api/system.void - name: '>' -- uid: delegate* unmanaged +- uid: delegate* unmanaged isExternal: true - href: OpenTK.Graphics.Glx.Display.html - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged + href: https://learn.microsoft.com/dotnet/api/system.intptr + name: delegate* unmanaged + nameWithType: delegate* unmanaged + fullName: delegate* unmanaged spec.csharp: - name: delegate - name: '*' - name: " " - name: unmanaged - name: < - - uid: OpenTK.Graphics.Glx.Display - name: Display - href: OpenTK.Graphics.Glx.Display.html - - name: '*' + - uid: System.IntPtr + name: nint + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.intptr - name: ',' - name: " " - uid: System.UIntPtr @@ -5148,28 +5148,28 @@ references: isExternal: true href: https://learn.microsoft.com/dotnet/api/system.intptr - name: '>' -- uid: delegate* unmanaged +- uid: delegate* unmanaged isExternal: true - href: OpenTK.Graphics.Glx.Display.html - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged + href: https://learn.microsoft.com/dotnet/api/system.intptr + name: delegate* unmanaged + nameWithType: delegate* unmanaged + fullName: delegate* unmanaged spec.csharp: - name: delegate - name: '*' - name: " " - name: unmanaged - name: < - - uid: OpenTK.Graphics.Glx.Display - name: Display - href: OpenTK.Graphics.Glx.Display.html - - name: '*' + - uid: System.IntPtr + name: nint + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.intptr - name: ',' - name: " " - - uid: OpenTK.Graphics.Glx.XVisualInfo - name: XVisualInfo - href: OpenTK.Graphics.Glx.XVisualInfo.html - - name: '*' + - uid: System.IntPtr + name: nint + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.intptr - name: ',' - name: " " - uid: System.IntPtr @@ -5189,22 +5189,22 @@ references: isExternal: true href: https://learn.microsoft.com/dotnet/api/system.intptr - name: '>' -- uid: delegate* unmanaged +- uid: delegate* unmanaged isExternal: true - href: OpenTK.Graphics.Glx.Display.html - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged + href: https://learn.microsoft.com/dotnet/api/system.intptr + name: delegate* unmanaged + nameWithType: delegate* unmanaged + fullName: delegate* unmanaged spec.csharp: - name: delegate - name: '*' - name: " " - name: unmanaged - name: < - - uid: OpenTK.Graphics.Glx.Display - name: Display - href: OpenTK.Graphics.Glx.Display.html - - name: '*' + - uid: System.IntPtr + name: nint + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.intptr - name: ',' - name: " " - uid: System.IntPtr @@ -5237,22 +5237,22 @@ references: isExternal: true href: https://learn.microsoft.com/dotnet/api/system.intptr - name: '>' -- uid: delegate* unmanaged +- uid: delegate* unmanaged isExternal: true - href: OpenTK.Graphics.Glx.Display.html - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged + href: https://learn.microsoft.com/dotnet/api/system.intptr + name: delegate* unmanaged + nameWithType: delegate* unmanaged + fullName: delegate* unmanaged spec.csharp: - name: delegate - name: '*' - name: " " - name: unmanaged - name: < - - uid: OpenTK.Graphics.Glx.Display - name: Display - href: OpenTK.Graphics.Glx.Display.html - - name: '*' + - uid: System.IntPtr + name: nint + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.intptr - name: ',' - name: " " - uid: System.IntPtr @@ -5284,22 +5284,22 @@ references: isExternal: true href: https://learn.microsoft.com/dotnet/api/system.intptr - name: '>' -- uid: delegate* unmanaged +- uid: delegate* unmanaged isExternal: true - href: OpenTK.Graphics.Glx.Display.html - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged + href: https://learn.microsoft.com/dotnet/api/system.intptr + name: delegate* unmanaged + nameWithType: delegate* unmanaged + fullName: delegate* unmanaged spec.csharp: - name: delegate - name: '*' - name: " " - name: unmanaged - name: < - - uid: OpenTK.Graphics.Glx.Display - name: Display - href: OpenTK.Graphics.Glx.Display.html - - name: '*' + - uid: System.IntPtr + name: nint + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.intptr - name: ',' - name: " " - uid: System.IntPtr @@ -5332,28 +5332,28 @@ references: isExternal: true href: https://learn.microsoft.com/dotnet/api/system.uintptr - name: '>' -- uid: delegate* unmanaged +- uid: delegate* unmanaged isExternal: true - href: OpenTK.Graphics.Glx.Display.html - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged + href: https://learn.microsoft.com/dotnet/api/system.intptr + name: delegate* unmanaged + nameWithType: delegate* unmanaged + fullName: delegate* unmanaged spec.csharp: - name: delegate - name: '*' - name: " " - name: unmanaged - name: < - - uid: OpenTK.Graphics.Glx.Display - name: Display - href: OpenTK.Graphics.Glx.Display.html - - name: '*' + - uid: System.IntPtr + name: nint + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.intptr - name: ',' - name: " " - - uid: OpenTK.Graphics.Glx.XVisualInfo - name: XVisualInfo - href: OpenTK.Graphics.Glx.XVisualInfo.html - - name: '*' + - uid: System.IntPtr + name: nint + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.intptr - name: ',' - name: " " - uid: System.UIntPtr @@ -5367,28 +5367,28 @@ references: isExternal: true href: https://learn.microsoft.com/dotnet/api/system.uintptr - name: '>' -- uid: delegate* unmanaged +- uid: delegate* unmanaged isExternal: true - href: OpenTK.Graphics.Glx.Display.html - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged + href: https://learn.microsoft.com/dotnet/api/system.intptr + name: delegate* unmanaged + nameWithType: delegate* unmanaged + fullName: delegate* unmanaged spec.csharp: - name: delegate - name: '*' - name: " " - name: unmanaged - name: < - - uid: OpenTK.Graphics.Glx.Display - name: Display - href: OpenTK.Graphics.Glx.Display.html - - name: '*' + - uid: System.IntPtr + name: nint + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.intptr - name: ',' - name: " " - - uid: OpenTK.Graphics.Glx.XVisualInfo - name: XVisualInfo - href: OpenTK.Graphics.Glx.XVisualInfo.html - - name: '*' + - uid: System.IntPtr + name: nint + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.intptr - name: ',' - name: " " - uid: System.UIntPtr @@ -5408,59 +5408,24 @@ references: isExternal: true href: https://learn.microsoft.com/dotnet/api/system.uintptr - name: '>' -- uid: delegate* unmanaged +- uid: delegate* unmanaged isExternal: true - href: OpenTK.Graphics.Glx.Display.html - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged + href: https://learn.microsoft.com/dotnet/api/system.intptr + name: delegate* unmanaged + nameWithType: delegate* unmanaged + fullName: delegate* unmanaged spec.csharp: - name: delegate - name: '*' - name: " " - name: unmanaged - name: < - - uid: OpenTK.Graphics.Glx.Display - name: Display - href: OpenTK.Graphics.Glx.Display.html - - name: '*' - - name: ',' - - name: " " - uid: System.IntPtr name: nint isExternal: true href: https://learn.microsoft.com/dotnet/api/system.intptr - name: ',' - name: " " - - uid: System.UIntPtr - name: nuint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uintptr - - name: ',' - - name: " " - - uid: System.UIntPtr - name: nuint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uintptr - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: OpenTK.Graphics.Glx.Display.html - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: OpenTK.Graphics.Glx.Display - name: Display - href: OpenTK.Graphics.Glx.Display.html - - name: '*' - - name: ',' - - name: " " - uid: System.IntPtr name: nint isExternal: true @@ -5479,22 +5444,22 @@ references: isExternal: true href: https://learn.microsoft.com/dotnet/api/system.uintptr - name: '>' -- uid: delegate* unmanaged +- uid: delegate* unmanaged isExternal: true - href: OpenTK.Graphics.Glx.Display.html - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged + href: https://learn.microsoft.com/dotnet/api/system.intptr + name: delegate* unmanaged + nameWithType: delegate* unmanaged + fullName: delegate* unmanaged spec.csharp: - name: delegate - name: '*' - name: " " - name: unmanaged - name: < - - uid: OpenTK.Graphics.Glx.Display - name: Display - href: OpenTK.Graphics.Glx.Display.html - - name: '*' + - uid: System.IntPtr + name: nint + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.intptr - name: ',' - name: " " - uid: System.IntPtr @@ -5521,22 +5486,22 @@ references: isExternal: true href: https://learn.microsoft.com/dotnet/api/system.uintptr - name: '>' -- uid: delegate* unmanaged +- uid: delegate* unmanaged isExternal: true - href: OpenTK.Graphics.Glx.Display.html - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged + href: https://learn.microsoft.com/dotnet/api/system.intptr + name: delegate* unmanaged + nameWithType: delegate* unmanaged + fullName: delegate* unmanaged spec.csharp: - name: delegate - name: '*' - name: " " - name: unmanaged - name: < - - uid: OpenTK.Graphics.Glx.Display - name: Display - href: OpenTK.Graphics.Glx.Display.html - - name: '*' + - uid: System.IntPtr + name: nint + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.intptr - name: ',' - name: " " - uid: System.UIntPtr @@ -5556,22 +5521,22 @@ references: isExternal: true href: https://learn.microsoft.com/dotnet/api/system.void - name: '>' -- uid: delegate* unmanaged +- uid: delegate* unmanaged isExternal: true - href: OpenTK.Graphics.Glx.Display.html - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged + href: https://learn.microsoft.com/dotnet/api/system.intptr + name: delegate* unmanaged + nameWithType: delegate* unmanaged + fullName: delegate* unmanaged spec.csharp: - name: delegate - name: '*' - name: " " - name: unmanaged - name: < - - uid: OpenTK.Graphics.Glx.Display - name: Display - href: OpenTK.Graphics.Glx.Display.html - - name: '*' + - uid: System.IntPtr + name: nint + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.intptr - name: ',' - name: " " - uid: System.UIntPtr @@ -5614,22 +5579,22 @@ references: isExternal: true href: https://learn.microsoft.com/dotnet/api/system.byte - name: '>' -- uid: delegate* unmanaged +- uid: delegate* unmanaged isExternal: true - href: OpenTK.Graphics.Glx.Display.html - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged + href: https://learn.microsoft.com/dotnet/api/system.intptr + name: delegate* unmanaged + nameWithType: delegate* unmanaged + fullName: delegate* unmanaged spec.csharp: - name: delegate - name: '*' - name: " " - name: unmanaged - name: < - - uid: OpenTK.Graphics.Glx.Display - name: Display - href: OpenTK.Graphics.Glx.Display.html - - name: '*' + - uid: System.IntPtr + name: nint + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.intptr - name: ',' - name: " " - uid: System.IntPtr @@ -5643,22 +5608,22 @@ references: isExternal: true href: https://learn.microsoft.com/dotnet/api/system.void - name: '>' -- uid: delegate* unmanaged +- uid: delegate* unmanaged isExternal: true - href: OpenTK.Graphics.Glx.Display.html - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged + href: https://learn.microsoft.com/dotnet/api/system.intptr + name: delegate* unmanaged + nameWithType: delegate* unmanaged + fullName: delegate* unmanaged spec.csharp: - name: delegate - name: '*' - name: " " - name: unmanaged - name: < - - uid: OpenTK.Graphics.Glx.Display - name: Display - href: OpenTK.Graphics.Glx.Display.html - - name: '*' + - uid: System.IntPtr + name: nint + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.intptr - name: ',' - name: " " - uid: System.UIntPtr @@ -5672,22 +5637,22 @@ references: isExternal: true href: https://learn.microsoft.com/dotnet/api/system.void - name: '>' -- uid: delegate* unmanaged +- uid: delegate* unmanaged isExternal: true - href: OpenTK.Graphics.Glx.Display.html - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged + href: https://learn.microsoft.com/dotnet/api/system.intptr + name: delegate* unmanaged + nameWithType: delegate* unmanaged + fullName: delegate* unmanaged spec.csharp: - name: delegate - name: '*' - name: " " - name: unmanaged - name: < - - uid: OpenTK.Graphics.Glx.Display - name: Display - href: OpenTK.Graphics.Glx.Display.html - - name: '*' + - uid: System.IntPtr + name: nint + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.intptr - name: ',' - name: " " - uid: System.Int32 @@ -5709,22 +5674,22 @@ references: href: https://learn.microsoft.com/dotnet/api/system.uintptr - name: '*' - name: '>' -- uid: delegate* unmanaged +- uid: delegate* unmanaged isExternal: true - href: OpenTK.Graphics.Glx.Display.html - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged + href: https://learn.microsoft.com/dotnet/api/system.intptr + name: delegate* unmanaged + nameWithType: delegate* unmanaged + fullName: delegate* unmanaged spec.csharp: - name: delegate - name: '*' - name: " " - name: unmanaged - name: < - - uid: OpenTK.Graphics.Glx.Display - name: Display - href: OpenTK.Graphics.Glx.Display.html - - name: '*' + - uid: System.IntPtr + name: nint + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.intptr - name: ',' - name: " " - uid: System.Int32 @@ -5770,22 +5735,22 @@ references: isExternal: true href: https://learn.microsoft.com/dotnet/api/system.uint32 - name: '>' -- uid: delegate* unmanaged +- uid: delegate* unmanaged isExternal: true - href: OpenTK.Graphics.Glx.Display.html - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged + href: https://learn.microsoft.com/dotnet/api/system.intptr + name: delegate* unmanaged + nameWithType: delegate* unmanaged + fullName: delegate* unmanaged spec.csharp: - name: delegate - name: '*' - name: " " - name: unmanaged - name: < - - uid: OpenTK.Graphics.Glx.Display - name: Display - href: OpenTK.Graphics.Glx.Display.html - - name: '*' + - uid: System.IntPtr + name: nint + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.intptr - name: ',' - name: " " - uid: System.Int32 @@ -5800,28 +5765,28 @@ references: href: https://learn.microsoft.com/dotnet/api/system.byte - name: '*' - name: '>' -- uid: delegate* unmanaged +- uid: delegate* unmanaged isExternal: true - href: OpenTK.Graphics.Glx.Display.html - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged + href: https://learn.microsoft.com/dotnet/api/system.intptr + name: delegate* unmanaged + nameWithType: delegate* unmanaged + fullName: delegate* unmanaged spec.csharp: - name: delegate - name: '*' - name: " " - name: unmanaged - name: < - - uid: OpenTK.Graphics.Glx.Display - name: Display - href: OpenTK.Graphics.Glx.Display.html - - name: '*' + - uid: System.IntPtr + name: nint + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.intptr - name: ',' - name: " " - - uid: OpenTK.Graphics.Glx.XVisualInfo - name: XVisualInfo - href: OpenTK.Graphics.Glx.XVisualInfo.html - - name: '*' + - uid: System.IntPtr + name: nint + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.intptr - name: ',' - name: " " - uid: System.Int32 @@ -5905,22 +5870,6 @@ references: isExternal: true href: https://learn.microsoft.com/dotnet/api/system.intptr - name: '>' -- uid: delegate* unmanaged - href: OpenTK.Graphics.Glx.Display.html - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: OpenTK.Graphics.Glx.Display - name: Display - href: OpenTK.Graphics.Glx.Display.html - - name: '*' - - name: '>' - uid: delegate* unmanaged isExternal: true href: https://learn.microsoft.com/dotnet/api/system.uintptr @@ -5938,93 +5887,51 @@ references: isExternal: true href: https://learn.microsoft.com/dotnet/api/system.uintptr - name: '>' -- uid: delegate* unmanaged +- uid: delegate* unmanaged isExternal: true - href: OpenTK.Graphics.Glx.Display.html - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged + href: https://learn.microsoft.com/dotnet/api/system.intptr + name: delegate* unmanaged + nameWithType: delegate* unmanaged + fullName: delegate* unmanaged spec.csharp: - name: delegate - name: '*' - name: " " - name: unmanaged - name: < - - uid: OpenTK.Graphics.Glx.Display - name: Display - href: OpenTK.Graphics.Glx.Display.html - - name: '*' - - name: ',' - - name: " " - uid: System.IntPtr name: nint isExternal: true href: https://learn.microsoft.com/dotnet/api/system.intptr - name: ',' - name: " " - - uid: System.Int32 - name: int + - uid: System.IntPtr + name: nint isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 + href: https://learn.microsoft.com/dotnet/api/system.intptr - name: ',' - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '*' - - name: ',' - - name: " " - - uid: System.Int32 - name: int + - uid: System.IntPtr + name: nint isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 + href: https://learn.microsoft.com/dotnet/api/system.intptr - name: '>' -- uid: delegate* unmanaged +- uid: delegate* unmanaged isExternal: true - href: OpenTK.Graphics.Glx.Display.html - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged + href: https://learn.microsoft.com/dotnet/api/system.intptr + name: delegate* unmanaged + nameWithType: delegate* unmanaged + fullName: delegate* unmanaged spec.csharp: - name: delegate - name: '*' - name: " " - name: unmanaged - name: < - - uid: OpenTK.Graphics.Glx.Display - name: Display - href: OpenTK.Graphics.Glx.Display.html - - name: '*' - - name: ',' - - name: " " - - uid: OpenTK.Graphics.Glx.XVisualInfo - name: XVisualInfo - href: OpenTK.Graphics.Glx.XVisualInfo.html - - name: '*' - - name: ',' - - name: " " - uid: System.IntPtr name: nint isExternal: true href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: OpenTK.Graphics.Glx.Display.html - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: OpenTK.Graphics.Glx.Display - name: Display - href: OpenTK.Graphics.Glx.Display.html - - name: '*' - name: ',' - name: " " - uid: System.Int32 @@ -6124,22 +6031,22 @@ references: isExternal: true href: https://learn.microsoft.com/dotnet/api/system.int32 - name: '>' -- uid: delegate* unmanaged +- uid: delegate* unmanaged isExternal: true - href: OpenTK.Graphics.Glx.Display.html - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged + href: https://learn.microsoft.com/dotnet/api/system.intptr + name: delegate* unmanaged + nameWithType: delegate* unmanaged + fullName: delegate* unmanaged spec.csharp: - name: delegate - name: '*' - name: " " - name: unmanaged - name: < - - uid: OpenTK.Graphics.Glx.Display - name: Display - href: OpenTK.Graphics.Glx.Display.html - - name: '*' + - uid: System.IntPtr + name: nint + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.intptr - name: ',' - name: " " - uid: System.UIntPtr @@ -6191,22 +6098,22 @@ references: isExternal: true href: https://learn.microsoft.com/dotnet/api/system.intptr - name: '>' -- uid: delegate* unmanaged +- uid: delegate* unmanaged isExternal: true - href: OpenTK.Graphics.Glx.Display.html - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged + href: https://learn.microsoft.com/dotnet/api/system.intptr + name: delegate* unmanaged + nameWithType: delegate* unmanaged + fullName: delegate* unmanaged spec.csharp: - name: delegate - name: '*' - name: " " - name: unmanaged - name: < - - uid: OpenTK.Graphics.Glx.Display - name: Display - href: OpenTK.Graphics.Glx.Display.html - - name: '*' + - uid: System.IntPtr + name: nint + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.intptr - name: ',' - name: " " - uid: System.UIntPtr @@ -6244,22 +6151,22 @@ references: isExternal: true href: https://learn.microsoft.com/dotnet/api/system.int32 - name: '>' -- uid: delegate* unmanaged +- uid: delegate* unmanaged isExternal: true - href: OpenTK.Graphics.Glx.Display.html - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged + href: https://learn.microsoft.com/dotnet/api/system.intptr + name: delegate* unmanaged + nameWithType: delegate* unmanaged + fullName: delegate* unmanaged spec.csharp: - name: delegate - name: '*' - name: " " - name: unmanaged - name: < - - uid: OpenTK.Graphics.Glx.Display - name: Display - href: OpenTK.Graphics.Glx.Display.html - - name: '*' + - uid: System.IntPtr + name: nint + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.intptr - name: ',' - name: " " - uid: System.UIntPtr @@ -6294,22 +6201,22 @@ references: isExternal: true href: https://learn.microsoft.com/dotnet/api/system.byte - name: '>' -- uid: delegate* unmanaged +- uid: delegate* unmanaged isExternal: true - href: OpenTK.Graphics.Glx.Display.html - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged + href: https://learn.microsoft.com/dotnet/api/system.intptr + name: delegate* unmanaged + nameWithType: delegate* unmanaged + fullName: delegate* unmanaged spec.csharp: - name: delegate - name: '*' - name: " " - name: unmanaged - name: < - - uid: OpenTK.Graphics.Glx.Display - name: Display - href: OpenTK.Graphics.Glx.Display.html - - name: '*' + - uid: System.IntPtr + name: nint + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.intptr - name: ',' - name: " " - uid: System.UIntPtr @@ -6336,22 +6243,22 @@ references: isExternal: true href: https://learn.microsoft.com/dotnet/api/system.int32 - name: '>' -- uid: delegate* unmanaged +- uid: delegate* unmanaged isExternal: true - href: OpenTK.Graphics.Glx.Display.html - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged + href: https://learn.microsoft.com/dotnet/api/system.intptr + name: delegate* unmanaged + nameWithType: delegate* unmanaged + fullName: delegate* unmanaged spec.csharp: - name: delegate - name: '*' - name: " " - name: unmanaged - name: < - - uid: OpenTK.Graphics.Glx.Display - name: Display - href: OpenTK.Graphics.Glx.Display.html - - name: '*' + - uid: System.IntPtr + name: nint + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.intptr - name: ',' - name: " " - uid: System.Int32 @@ -6378,22 +6285,22 @@ references: isExternal: true href: https://learn.microsoft.com/dotnet/api/system.int32 - name: '>' -- uid: delegate* unmanaged +- uid: delegate* unmanaged isExternal: true - href: OpenTK.Graphics.Glx.Display.html - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged + href: https://learn.microsoft.com/dotnet/api/system.intptr + name: delegate* unmanaged + nameWithType: delegate* unmanaged + fullName: delegate* unmanaged spec.csharp: - name: delegate - name: '*' - name: " " - name: unmanaged - name: < - - uid: OpenTK.Graphics.Glx.Display - name: Display - href: OpenTK.Graphics.Glx.Display.html - - name: '*' + - uid: System.IntPtr + name: nint + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.intptr - name: ',' - name: " " - uid: System.Int32 @@ -6451,53 +6358,24 @@ references: isExternal: true href: https://learn.microsoft.com/dotnet/api/system.int32 - name: '>' -- uid: delegate* unmanaged +- uid: delegate* unmanaged isExternal: true - href: OpenTK.Graphics.Glx.Display.html - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged + href: https://learn.microsoft.com/dotnet/api/system.intptr + name: delegate* unmanaged + nameWithType: delegate* unmanaged + fullName: delegate* unmanaged spec.csharp: - name: delegate - name: '*' - name: " " - name: unmanaged - name: < - - uid: OpenTK.Graphics.Glx.Display - name: Display - href: OpenTK.Graphics.Glx.Display.html - - name: '*' - - name: ',' - - name: " " - uid: System.IntPtr name: nint isExternal: true href: https://learn.microsoft.com/dotnet/api/system.intptr - name: ',' - name: " " - - uid: OpenTK.Graphics.Glx.XVisualInfo - name: XVisualInfo - href: OpenTK.Graphics.Glx.XVisualInfo.html - - name: '*' - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: OpenTK.Graphics.Glx.Display.html - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: OpenTK.Graphics.Glx.Display - name: Display - href: OpenTK.Graphics.Glx.Display.html - - name: '*' - - name: ',' - - name: " " - uid: System.Int32 name: int isExternal: true @@ -6528,22 +6406,22 @@ references: isExternal: true href: https://learn.microsoft.com/dotnet/api/system.int32 - name: '>' -- uid: delegate* unmanaged +- uid: delegate* unmanaged isExternal: true - href: OpenTK.Graphics.Glx.Display.html - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged + href: https://learn.microsoft.com/dotnet/api/system.intptr + name: delegate* unmanaged + nameWithType: delegate* unmanaged + fullName: delegate* unmanaged spec.csharp: - name: delegate - name: '*' - name: " " - name: unmanaged - name: < - - uid: OpenTK.Graphics.Glx.Display - name: Display - href: OpenTK.Graphics.Glx.Display.html - - name: '*' + - uid: System.IntPtr + name: nint + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.intptr - name: ',' - name: " " - uid: System.Int32 @@ -6576,22 +6454,22 @@ references: isExternal: true href: https://learn.microsoft.com/dotnet/api/system.int32 - name: '>' -- uid: delegate* unmanaged +- uid: delegate* unmanaged isExternal: true - href: OpenTK.Graphics.Glx.Display.html - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged + href: https://learn.microsoft.com/dotnet/api/system.intptr + name: delegate* unmanaged + nameWithType: delegate* unmanaged + fullName: delegate* unmanaged spec.csharp: - name: delegate - name: '*' - name: " " - name: unmanaged - name: < - - uid: OpenTK.Graphics.Glx.Display - name: Display - href: OpenTK.Graphics.Glx.Display.html - - name: '*' + - uid: System.IntPtr + name: nint + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.intptr - name: ',' - name: " " - uid: System.UIntPtr @@ -6605,22 +6483,22 @@ references: isExternal: true href: https://learn.microsoft.com/dotnet/api/system.intptr - name: '>' -- uid: delegate* unmanaged +- uid: delegate* unmanaged isExternal: true - href: OpenTK.Graphics.Glx.Display.html - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged + href: https://learn.microsoft.com/dotnet/api/system.intptr + name: delegate* unmanaged + nameWithType: delegate* unmanaged + fullName: delegate* unmanaged spec.csharp: - name: delegate - name: '*' - name: " " - name: unmanaged - name: < - - uid: OpenTK.Graphics.Glx.Display - name: Display - href: OpenTK.Graphics.Glx.Display.html - - name: '*' + - uid: System.IntPtr + name: nint + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.intptr - name: ',' - name: " " - uid: System.IntPtr @@ -6634,22 +6512,22 @@ references: isExternal: true href: https://learn.microsoft.com/dotnet/api/system.byte - name: '>' -- uid: delegate* unmanaged +- uid: delegate* unmanaged isExternal: true - href: OpenTK.Graphics.Glx.Display.html - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged + href: https://learn.microsoft.com/dotnet/api/system.intptr + name: delegate* unmanaged + nameWithType: delegate* unmanaged + fullName: delegate* unmanaged spec.csharp: - name: delegate - name: '*' - name: " " - name: unmanaged - name: < - - uid: OpenTK.Graphics.Glx.Display - name: Display - href: OpenTK.Graphics.Glx.Display.html - - name: '*' + - uid: System.IntPtr + name: nint + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.intptr - name: ',' - name: " " - uid: System.UIntPtr @@ -6669,22 +6547,22 @@ references: isExternal: true href: https://learn.microsoft.com/dotnet/api/system.byte - name: '>' -- uid: delegate* unmanaged +- uid: delegate* unmanaged isExternal: true - href: OpenTK.Graphics.Glx.Display.html - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged + href: https://learn.microsoft.com/dotnet/api/system.intptr + name: delegate* unmanaged + nameWithType: delegate* unmanaged + fullName: delegate* unmanaged spec.csharp: - name: delegate - name: '*' - name: " " - name: unmanaged - name: < - - uid: OpenTK.Graphics.Glx.Display - name: Display - href: OpenTK.Graphics.Glx.Display.html - - name: '*' + - uid: System.IntPtr + name: nint + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.intptr - name: ',' - name: " " - uid: System.UIntPtr @@ -6704,22 +6582,22 @@ references: isExternal: true href: https://learn.microsoft.com/dotnet/api/system.void - name: '>' -- uid: delegate* unmanaged +- uid: delegate* unmanaged isExternal: true - href: OpenTK.Graphics.Glx.Display.html - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged + href: https://learn.microsoft.com/dotnet/api/system.intptr + name: delegate* unmanaged + nameWithType: delegate* unmanaged + fullName: delegate* unmanaged spec.csharp: - name: delegate - name: '*' - name: " " - name: unmanaged - name: < - - uid: OpenTK.Graphics.Glx.Display - name: Display - href: OpenTK.Graphics.Glx.Display.html - - name: '*' + - uid: System.IntPtr + name: nint + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.intptr - name: ',' - name: " " - uid: System.UIntPtr @@ -6745,22 +6623,22 @@ references: isExternal: true href: https://learn.microsoft.com/dotnet/api/system.byte - name: '>' -- uid: delegate* unmanaged +- uid: delegate* unmanaged isExternal: true - href: OpenTK.Graphics.Glx.Display.html - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged + href: https://learn.microsoft.com/dotnet/api/system.intptr + name: delegate* unmanaged + nameWithType: delegate* unmanaged + fullName: delegate* unmanaged spec.csharp: - name: delegate - name: '*' - name: " " - name: unmanaged - name: < - - uid: OpenTK.Graphics.Glx.Display - name: Display - href: OpenTK.Graphics.Glx.Display.html - - name: '*' + - uid: System.IntPtr + name: nint + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.intptr - name: ',' - name: " " - uid: System.UIntPtr @@ -6780,22 +6658,22 @@ references: isExternal: true href: https://learn.microsoft.com/dotnet/api/system.byte - name: '>' -- uid: delegate* unmanaged +- uid: delegate* unmanaged isExternal: true - href: OpenTK.Graphics.Glx.Display.html - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged + href: https://learn.microsoft.com/dotnet/api/system.intptr + name: delegate* unmanaged + nameWithType: delegate* unmanaged + fullName: delegate* unmanaged spec.csharp: - name: delegate - name: '*' - name: " " - name: unmanaged - name: < - - uid: OpenTK.Graphics.Glx.Display - name: Display - href: OpenTK.Graphics.Glx.Display.html - - name: '*' + - uid: System.IntPtr + name: nint + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.intptr - name: ',' - name: " " - uid: System.Int32 @@ -6897,22 +6775,22 @@ references: href: https://learn.microsoft.com/dotnet/api/system.byte - name: '*' - name: '>' -- uid: delegate* unmanaged +- uid: delegate* unmanaged isExternal: true - href: OpenTK.Graphics.Glx.Display.html - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged + href: https://learn.microsoft.com/dotnet/api/system.intptr + name: delegate* unmanaged + nameWithType: delegate* unmanaged + fullName: delegate* unmanaged spec.csharp: - name: delegate - name: '*' - name: " " - name: unmanaged - name: < - - uid: OpenTK.Graphics.Glx.Display - name: Display - href: OpenTK.Graphics.Glx.Display.html - - name: '*' + - uid: System.IntPtr + name: nint + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.intptr - name: ',' - name: " " - uid: System.UIntPtr @@ -6939,22 +6817,22 @@ references: isExternal: true href: https://learn.microsoft.com/dotnet/api/system.void - name: '>' -- uid: delegate* unmanaged +- uid: delegate* unmanaged isExternal: true - href: OpenTK.Graphics.Glx.Display.html - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged + href: https://learn.microsoft.com/dotnet/api/system.intptr + name: delegate* unmanaged + nameWithType: delegate* unmanaged + fullName: delegate* unmanaged spec.csharp: - name: delegate - name: '*' - name: " " - name: unmanaged - name: < - - uid: OpenTK.Graphics.Glx.Display - name: Display - href: OpenTK.Graphics.Glx.Display.html - - name: '*' + - uid: System.IntPtr + name: nint + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.intptr - name: ',' - name: " " - uid: System.Int32 @@ -6976,22 +6854,22 @@ references: isExternal: true href: https://learn.microsoft.com/dotnet/api/system.byte - name: '>' -- uid: delegate* unmanaged +- uid: delegate* unmanaged isExternal: true - href: OpenTK.Graphics.Glx.Display.html - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged + href: https://learn.microsoft.com/dotnet/api/system.intptr + name: delegate* unmanaged + nameWithType: delegate* unmanaged + fullName: delegate* unmanaged spec.csharp: - name: delegate - name: '*' - name: " " - name: unmanaged - name: < - - uid: OpenTK.Graphics.Glx.Display - name: Display - href: OpenTK.Graphics.Glx.Display.html - - name: '*' + - uid: System.IntPtr + name: nint + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.intptr - name: ',' - name: " " - uid: System.Int32 @@ -7012,22 +6890,22 @@ references: isExternal: true href: https://learn.microsoft.com/dotnet/api/system.byte - name: '>' -- uid: delegate* unmanaged +- uid: delegate* unmanaged isExternal: true - href: OpenTK.Graphics.Glx.Display.html - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged + href: https://learn.microsoft.com/dotnet/api/system.intptr + name: delegate* unmanaged + nameWithType: delegate* unmanaged + fullName: delegate* unmanaged spec.csharp: - name: delegate - name: '*' - name: " " - name: unmanaged - name: < - - uid: OpenTK.Graphics.Glx.Display - name: Display - href: OpenTK.Graphics.Glx.Display.html - - name: '*' + - uid: System.IntPtr + name: nint + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.intptr - name: ',' - name: " " - uid: System.Int32 @@ -7067,22 +6945,22 @@ references: isExternal: true href: https://learn.microsoft.com/dotnet/api/system.int32 - name: '>' -- uid: delegate* unmanaged +- uid: delegate* unmanaged isExternal: true - href: OpenTK.Graphics.Glx.Display.html - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged + href: https://learn.microsoft.com/dotnet/api/system.intptr + name: delegate* unmanaged + nameWithType: delegate* unmanaged + fullName: delegate* unmanaged spec.csharp: - name: delegate - name: '*' - name: " " - name: unmanaged - name: < - - uid: OpenTK.Graphics.Glx.Display - name: Display - href: OpenTK.Graphics.Glx.Display.html - - name: '*' + - uid: System.IntPtr + name: nint + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.intptr - name: ',' - name: " " - uid: System.Int32 @@ -7103,22 +6981,22 @@ references: href: OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX.html - name: '*' - name: '>' -- uid: delegate* unmanaged +- uid: delegate* unmanaged isExternal: true - href: OpenTK.Graphics.Glx.Display.html - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged + href: https://learn.microsoft.com/dotnet/api/system.intptr + name: delegate* unmanaged + nameWithType: delegate* unmanaged + fullName: delegate* unmanaged spec.csharp: - name: delegate - name: '*' - name: " " - name: unmanaged - name: < - - uid: OpenTK.Graphics.Glx.Display - name: Display - href: OpenTK.Graphics.Glx.Display.html - - name: '*' + - uid: System.IntPtr + name: nint + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.intptr - name: ',' - name: " " - uid: System.Int32 @@ -7133,22 +7011,22 @@ references: href: OpenTK.Graphics.Glx.GLXHyperpipeNetworkSGIX.html - name: '*' - name: '>' -- uid: delegate* unmanaged +- uid: delegate* unmanaged isExternal: true - href: OpenTK.Graphics.Glx.Display.html - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged + href: https://learn.microsoft.com/dotnet/api/system.intptr + name: delegate* unmanaged + nameWithType: delegate* unmanaged + fullName: delegate* unmanaged spec.csharp: - name: delegate - name: '*' - name: " " - name: unmanaged - name: < - - uid: OpenTK.Graphics.Glx.Display - name: Display - href: OpenTK.Graphics.Glx.Display.html - - name: '*' + - uid: System.IntPtr + name: nint + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.intptr - name: ',' - name: " " - uid: System.Int32 @@ -7169,22 +7047,22 @@ references: isExternal: true href: https://learn.microsoft.com/dotnet/api/system.byte - name: '>' -- uid: delegate* unmanaged +- uid: delegate* unmanaged isExternal: true - href: OpenTK.Graphics.Glx.Display.html - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged + href: https://learn.microsoft.com/dotnet/api/system.intptr + name: delegate* unmanaged + nameWithType: delegate* unmanaged + fullName: delegate* unmanaged spec.csharp: - name: delegate - name: '*' - name: " " - name: unmanaged - name: < - - uid: OpenTK.Graphics.Glx.Display - name: Display - href: OpenTK.Graphics.Glx.Display.html - - name: '*' + - uid: System.IntPtr + name: nint + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.intptr - name: ',' - name: " " - uid: System.Int32 @@ -7212,22 +7090,22 @@ references: isExternal: true href: https://learn.microsoft.com/dotnet/api/system.byte - name: '>' -- uid: delegate* unmanaged +- uid: delegate* unmanaged isExternal: true - href: OpenTK.Graphics.Glx.Display.html - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged + href: https://learn.microsoft.com/dotnet/api/system.intptr + name: delegate* unmanaged + nameWithType: delegate* unmanaged + fullName: delegate* unmanaged spec.csharp: - name: delegate - name: '*' - name: " " - name: unmanaged - name: < - - uid: OpenTK.Graphics.Glx.Display - name: Display - href: OpenTK.Graphics.Glx.Display.html - - name: '*' + - uid: System.IntPtr + name: nint + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.intptr - name: ',' - name: " " - uid: System.Int32 @@ -7260,22 +7138,22 @@ references: isExternal: true href: https://learn.microsoft.com/dotnet/api/system.byte - name: '>' -- uid: delegate* unmanaged +- uid: delegate* unmanaged isExternal: true - href: OpenTK.Graphics.Glx.Display.html - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged + href: https://learn.microsoft.com/dotnet/api/system.intptr + name: delegate* unmanaged + nameWithType: delegate* unmanaged + fullName: delegate* unmanaged spec.csharp: - name: delegate - name: '*' - name: " " - name: unmanaged - name: < - - uid: OpenTK.Graphics.Glx.Display - name: Display - href: OpenTK.Graphics.Glx.Display.html - - name: '*' + - uid: System.IntPtr + name: nint + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.intptr - name: ',' - name: " " - uid: System.Int32 @@ -7302,22 +7180,22 @@ references: href: https://learn.microsoft.com/dotnet/api/system.byte - name: '*' - name: '>' -- uid: delegate* unmanaged +- uid: delegate* unmanaged isExternal: true - href: OpenTK.Graphics.Glx.Display.html - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged + href: https://learn.microsoft.com/dotnet/api/system.intptr + name: delegate* unmanaged + nameWithType: delegate* unmanaged + fullName: delegate* unmanaged spec.csharp: - name: delegate - name: '*' - name: " " - name: unmanaged - name: < - - uid: OpenTK.Graphics.Glx.Display - name: Display - href: OpenTK.Graphics.Glx.Display.html - - name: '*' + - uid: System.IntPtr + name: nint + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.intptr - name: ',' - name: " " - uid: System.Int32 @@ -7338,22 +7216,22 @@ references: href: https://learn.microsoft.com/dotnet/api/system.byte - name: '*' - name: '>' -- uid: delegate* unmanaged +- uid: delegate* unmanaged isExternal: true - href: OpenTK.Graphics.Glx.Display.html - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged + href: https://learn.microsoft.com/dotnet/api/system.intptr + name: delegate* unmanaged + nameWithType: delegate* unmanaged + fullName: delegate* unmanaged spec.csharp: - name: delegate - name: '*' - name: " " - name: unmanaged - name: < - - uid: OpenTK.Graphics.Glx.Display - name: Display - href: OpenTK.Graphics.Glx.Display.html - - name: '*' + - uid: System.IntPtr + name: nint + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.intptr - name: ',' - name: " " - uid: System.UIntPtr @@ -7381,22 +7259,22 @@ references: isExternal: true href: https://learn.microsoft.com/dotnet/api/system.byte - name: '>' -- uid: delegate* unmanaged +- uid: delegate* unmanaged isExternal: true - href: OpenTK.Graphics.Glx.Display.html - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged + href: https://learn.microsoft.com/dotnet/api/system.intptr + name: delegate* unmanaged + nameWithType: delegate* unmanaged + fullName: delegate* unmanaged spec.csharp: - name: delegate - name: '*' - name: " " - name: unmanaged - name: < - - uid: OpenTK.Graphics.Glx.Display - name: Display - href: OpenTK.Graphics.Glx.Display.html - - name: '*' + - uid: System.IntPtr + name: nint + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.intptr - name: ',' - name: " " - uid: System.UIntPtr @@ -7423,22 +7301,22 @@ references: isExternal: true href: https://learn.microsoft.com/dotnet/api/system.int32 - name: '>' -- uid: delegate* unmanaged +- uid: delegate* unmanaged isExternal: true - href: OpenTK.Graphics.Glx.Display.html - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged + href: https://learn.microsoft.com/dotnet/api/system.intptr + name: delegate* unmanaged + nameWithType: delegate* unmanaged + fullName: delegate* unmanaged spec.csharp: - name: delegate - name: '*' - name: " " - name: unmanaged - name: < - - uid: OpenTK.Graphics.Glx.Display - name: Display - href: OpenTK.Graphics.Glx.Display.html - - name: '*' + - uid: System.IntPtr + name: nint + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.intptr - name: ',' - name: " " - uid: System.UIntPtr @@ -7452,22 +7330,22 @@ references: isExternal: true href: https://learn.microsoft.com/dotnet/api/system.byte - name: '>' -- uid: delegate* unmanaged +- uid: delegate* unmanaged isExternal: true - href: OpenTK.Graphics.Glx.Display.html - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged + href: https://learn.microsoft.com/dotnet/api/system.intptr + name: delegate* unmanaged + nameWithType: delegate* unmanaged + fullName: delegate* unmanaged spec.csharp: - name: delegate - name: '*' - name: " " - name: unmanaged - name: < - - uid: OpenTK.Graphics.Glx.Display - name: Display - href: OpenTK.Graphics.Glx.Display.html - - name: '*' + - uid: System.IntPtr + name: nint + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.intptr - name: ',' - name: " " - uid: System.Int32 @@ -7487,22 +7365,22 @@ references: isExternal: true href: https://learn.microsoft.com/dotnet/api/system.int32 - name: '>' -- uid: delegate* unmanaged +- uid: delegate* unmanaged isExternal: true - href: OpenTK.Graphics.Glx.Display.html - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged + href: https://learn.microsoft.com/dotnet/api/system.intptr + name: delegate* unmanaged + nameWithType: delegate* unmanaged + fullName: delegate* unmanaged spec.csharp: - name: delegate - name: '*' - name: " " - name: unmanaged - name: < - - uid: OpenTK.Graphics.Glx.Display - name: Display - href: OpenTK.Graphics.Glx.Display.html - - name: '*' + - uid: System.IntPtr + name: nint + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.intptr - name: ',' - name: " " - uid: System.UIntPtr @@ -7516,22 +7394,22 @@ references: isExternal: true href: https://learn.microsoft.com/dotnet/api/system.int32 - name: '>' -- uid: delegate* unmanaged +- uid: delegate* unmanaged isExternal: true - href: OpenTK.Graphics.Glx.Display.html - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged + href: https://learn.microsoft.com/dotnet/api/system.intptr + name: delegate* unmanaged + nameWithType: delegate* unmanaged + fullName: delegate* unmanaged spec.csharp: - name: delegate - name: '*' - name: " " - name: unmanaged - name: < - - uid: OpenTK.Graphics.Glx.Display - name: Display - href: OpenTK.Graphics.Glx.Display.html - - name: '*' + - uid: System.IntPtr + name: nint + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.intptr - name: ',' - name: " " - uid: System.Int32 @@ -7545,22 +7423,22 @@ references: isExternal: true href: https://learn.microsoft.com/dotnet/api/system.byte - name: '>' -- uid: delegate* unmanaged +- uid: delegate* unmanaged isExternal: true - href: OpenTK.Graphics.Glx.Display.html - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged + href: https://learn.microsoft.com/dotnet/api/system.intptr + name: delegate* unmanaged + nameWithType: delegate* unmanaged + fullName: delegate* unmanaged spec.csharp: - name: delegate - name: '*' - name: " " - name: unmanaged - name: < - - uid: OpenTK.Graphics.Glx.Display - name: Display - href: OpenTK.Graphics.Glx.Display.html - - name: '*' + - uid: System.IntPtr + name: nint + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.intptr - name: ',' - name: " " - uid: System.UIntPtr @@ -7580,22 +7458,22 @@ references: isExternal: true href: https://learn.microsoft.com/dotnet/api/system.void - name: '>' -- uid: delegate* unmanaged +- uid: delegate* unmanaged isExternal: true - href: OpenTK.Graphics.Glx.Display.html - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged + href: https://learn.microsoft.com/dotnet/api/system.intptr + name: delegate* unmanaged + nameWithType: delegate* unmanaged + fullName: delegate* unmanaged spec.csharp: - name: delegate - name: '*' - name: " " - name: unmanaged - name: < - - uid: OpenTK.Graphics.Glx.Display - name: Display - href: OpenTK.Graphics.Glx.Display.html - - name: '*' + - uid: System.IntPtr + name: nint + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.intptr - name: ',' - name: " " - uid: System.UIntPtr @@ -7651,22 +7529,22 @@ references: isExternal: true href: https://learn.microsoft.com/dotnet/api/system.byte - name: '>' -- uid: delegate* unmanaged +- uid: delegate* unmanaged isExternal: true - href: OpenTK.Graphics.Glx.Display.html - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged + href: https://learn.microsoft.com/dotnet/api/system.intptr + name: delegate* unmanaged + nameWithType: delegate* unmanaged + fullName: delegate* unmanaged spec.csharp: - name: delegate - name: '*' - name: " " - name: unmanaged - name: < - - uid: OpenTK.Graphics.Glx.Display - name: Display - href: OpenTK.Graphics.Glx.Display.html - - name: '*' + - uid: System.IntPtr + name: nint + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.intptr - name: ',' - name: " " - uid: System.UIntPtr @@ -7785,22 +7663,22 @@ references: isExternal: true href: https://learn.microsoft.com/dotnet/api/system.void - name: '>' -- uid: delegate* unmanaged +- uid: delegate* unmanaged isExternal: true - href: OpenTK.Graphics.Glx.Display.html - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged + href: https://learn.microsoft.com/dotnet/api/system.intptr + name: delegate* unmanaged + nameWithType: delegate* unmanaged + fullName: delegate* unmanaged spec.csharp: - name: delegate - name: '*' - name: " " - name: unmanaged - name: < - - uid: OpenTK.Graphics.Glx.Display - name: Display - href: OpenTK.Graphics.Glx.Display.html - - name: '*' + - uid: System.IntPtr + name: nint + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.intptr - name: ',' - name: " " - uid: System.UIntPtr @@ -7853,22 +7731,22 @@ references: isExternal: true href: https://learn.microsoft.com/dotnet/api/system.byte - name: '>' -- uid: delegate* unmanaged +- uid: delegate* unmanaged isExternal: true - href: OpenTK.Graphics.Glx.Display.html - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged + href: https://learn.microsoft.com/dotnet/api/system.intptr + name: delegate* unmanaged + nameWithType: delegate* unmanaged + fullName: delegate* unmanaged spec.csharp: - name: delegate - name: '*' - name: " " - name: unmanaged - name: < - - uid: OpenTK.Graphics.Glx.Display - name: Display - href: OpenTK.Graphics.Glx.Display.html - - name: '*' + - uid: System.IntPtr + name: nint + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.intptr - name: ',' - name: " " - uid: System.UIntPtr diff --git a/api/OpenTK.Graphics.Glx.Pixmap.yml b/api/OpenTK.Graphics.Glx.Pixmap.yml index 149e7d8c..260f0875 100644 --- a/api/OpenTK.Graphics.Glx.Pixmap.yml +++ b/api/OpenTK.Graphics.Glx.Pixmap.yml @@ -23,7 +23,7 @@ items: repo: https://github.com/opentk/opentk.git id: Pixmap path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 109 + startLine: 141 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -57,7 +57,7 @@ items: repo: https://github.com/opentk/opentk.git id: XID path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 114 + startLine: 146 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -86,7 +86,7 @@ items: repo: https://github.com/opentk/opentk.git id: .ctor path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 120 + startLine: 152 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -121,7 +121,7 @@ items: repo: https://github.com/opentk/opentk.git id: op_Explicit path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 125 + startLine: 157 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -155,7 +155,7 @@ items: repo: https://github.com/opentk/opentk.git id: op_Explicit path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 126 + startLine: 158 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx diff --git a/api/OpenTK.Graphics.Glx.ScreenPtr.yml b/api/OpenTK.Graphics.Glx.ScreenPtr.yml new file mode 100644 index 00000000..481cd8c8 --- /dev/null +++ b/api/OpenTK.Graphics.Glx.ScreenPtr.yml @@ -0,0 +1,460 @@ +### YamlMime:ManagedReference +items: +- uid: OpenTK.Graphics.Glx.ScreenPtr + commentId: T:OpenTK.Graphics.Glx.ScreenPtr + id: ScreenPtr + parent: OpenTK.Graphics.Glx + children: + - OpenTK.Graphics.Glx.ScreenPtr.#ctor(System.IntPtr) + - OpenTK.Graphics.Glx.ScreenPtr.Value + - OpenTK.Graphics.Glx.ScreenPtr.op_Explicit(OpenTK.Graphics.Glx.ScreenPtr)~System.IntPtr + - OpenTK.Graphics.Glx.ScreenPtr.op_Explicit(System.IntPtr)~OpenTK.Graphics.Glx.ScreenPtr + langs: + - csharp + - vb + name: ScreenPtr + nameWithType: ScreenPtr + fullName: OpenTK.Graphics.Glx.ScreenPtr + type: Struct + source: + remote: + path: src/OpenTK.Graphics/Types.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: ScreenPtr + path: opentk/src/OpenTK.Graphics/Types.cs + startLine: 72 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Glx + summary: Opaque struct pointer for X11 Screen*. + example: [] + syntax: + content: public struct ScreenPtr + content.vb: Public Structure ScreenPtr + inheritedMembers: + - System.ValueType.Equals(System.Object) + - System.ValueType.GetHashCode + - System.ValueType.ToString + - System.Object.Equals(System.Object,System.Object) + - System.Object.GetType + - System.Object.ReferenceEquals(System.Object,System.Object) +- uid: OpenTK.Graphics.Glx.ScreenPtr.Value + commentId: F:OpenTK.Graphics.Glx.ScreenPtr.Value + id: Value + parent: OpenTK.Graphics.Glx.ScreenPtr + langs: + - csharp + - vb + name: Value + nameWithType: ScreenPtr.Value + fullName: OpenTK.Graphics.Glx.ScreenPtr.Value + type: Field + source: + remote: + path: src/OpenTK.Graphics/Types.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: Value + path: opentk/src/OpenTK.Graphics/Types.cs + startLine: 77 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Glx + summary: The underlying pointer value. + example: [] + syntax: + content: public nint Value + return: + type: System.IntPtr + content.vb: Public Value As IntPtr +- uid: OpenTK.Graphics.Glx.ScreenPtr.#ctor(System.IntPtr) + commentId: M:OpenTK.Graphics.Glx.ScreenPtr.#ctor(System.IntPtr) + id: '#ctor(System.IntPtr)' + parent: OpenTK.Graphics.Glx.ScreenPtr + langs: + - csharp + - vb + name: ScreenPtr(nint) + nameWithType: ScreenPtr.ScreenPtr(nint) + fullName: OpenTK.Graphics.Glx.ScreenPtr.ScreenPtr(nint) + type: Constructor + source: + remote: + path: src/OpenTK.Graphics/Types.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: .ctor + path: opentk/src/OpenTK.Graphics/Types.cs + startLine: 83 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Glx + summary: Constructs a new Screen* wrapper struct from a Screen pointer. + example: [] + syntax: + content: public ScreenPtr(nint value) + parameters: + - id: value + type: System.IntPtr + description: The screen pointer. + content.vb: Public Sub New(value As IntPtr) + overload: OpenTK.Graphics.Glx.ScreenPtr.#ctor* + nameWithType.vb: ScreenPtr.New(IntPtr) + fullName.vb: OpenTK.Graphics.Glx.ScreenPtr.New(System.IntPtr) + name.vb: New(IntPtr) +- uid: OpenTK.Graphics.Glx.ScreenPtr.op_Explicit(OpenTK.Graphics.Glx.ScreenPtr)~System.IntPtr + commentId: M:OpenTK.Graphics.Glx.ScreenPtr.op_Explicit(OpenTK.Graphics.Glx.ScreenPtr)~System.IntPtr + id: op_Explicit(OpenTK.Graphics.Glx.ScreenPtr)~System.IntPtr + parent: OpenTK.Graphics.Glx.ScreenPtr + langs: + - csharp + - vb + name: explicit operator nint(ScreenPtr) + nameWithType: ScreenPtr.explicit operator nint(ScreenPtr) + fullName: OpenTK.Graphics.Glx.ScreenPtr.explicit operator nint(OpenTK.Graphics.Glx.ScreenPtr) + type: Operator + source: + remote: + path: src/OpenTK.Graphics/Types.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: op_Explicit + path: opentk/src/OpenTK.Graphics/Types.cs + startLine: 88 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Glx + syntax: + content: public static explicit operator nint(ScreenPtr handle) + parameters: + - id: handle + type: OpenTK.Graphics.Glx.ScreenPtr + return: + type: System.IntPtr + content.vb: Public Shared Narrowing Operator CType(handle As ScreenPtr) As IntPtr + overload: OpenTK.Graphics.Glx.ScreenPtr.op_Explicit* + nameWithType.vb: ScreenPtr.CType(ScreenPtr) + fullName.vb: OpenTK.Graphics.Glx.ScreenPtr.CType(OpenTK.Graphics.Glx.ScreenPtr) + name.vb: CType(ScreenPtr) +- uid: OpenTK.Graphics.Glx.ScreenPtr.op_Explicit(System.IntPtr)~OpenTK.Graphics.Glx.ScreenPtr + commentId: M:OpenTK.Graphics.Glx.ScreenPtr.op_Explicit(System.IntPtr)~OpenTK.Graphics.Glx.ScreenPtr + id: op_Explicit(System.IntPtr)~OpenTK.Graphics.Glx.ScreenPtr + parent: OpenTK.Graphics.Glx.ScreenPtr + langs: + - csharp + - vb + name: explicit operator ScreenPtr(nint) + nameWithType: ScreenPtr.explicit operator ScreenPtr(nint) + fullName: OpenTK.Graphics.Glx.ScreenPtr.explicit operator OpenTK.Graphics.Glx.ScreenPtr(nint) + type: Operator + source: + remote: + path: src/OpenTK.Graphics/Types.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: op_Explicit + path: opentk/src/OpenTK.Graphics/Types.cs + startLine: 89 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Glx + syntax: + content: public static explicit operator ScreenPtr(nint ptr) + parameters: + - id: ptr + type: System.IntPtr + return: + type: OpenTK.Graphics.Glx.ScreenPtr + content.vb: Public Shared Narrowing Operator CType(ptr As IntPtr) As ScreenPtr + overload: OpenTK.Graphics.Glx.ScreenPtr.op_Explicit* + nameWithType.vb: ScreenPtr.CType(IntPtr) + fullName.vb: OpenTK.Graphics.Glx.ScreenPtr.CType(System.IntPtr) + name.vb: CType(IntPtr) +references: +- uid: OpenTK.Graphics.Glx + commentId: N:OpenTK.Graphics.Glx + href: OpenTK.html + name: OpenTK.Graphics.Glx + nameWithType: OpenTK.Graphics.Glx + fullName: OpenTK.Graphics.Glx + spec.csharp: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Graphics + name: Graphics + href: OpenTK.Graphics.html + - name: . + - uid: OpenTK.Graphics.Glx + name: Glx + href: OpenTK.Graphics.Glx.html + spec.vb: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Graphics + name: Graphics + href: OpenTK.Graphics.html + - name: . + - uid: OpenTK.Graphics.Glx + name: Glx + href: OpenTK.Graphics.Glx.html +- uid: System.ValueType.Equals(System.Object) + commentId: M:System.ValueType.Equals(System.Object) + parent: System.ValueType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals + name: Equals(object) + nameWithType: ValueType.Equals(object) + fullName: System.ValueType.Equals(object) + nameWithType.vb: ValueType.Equals(Object) + fullName.vb: System.ValueType.Equals(Object) + name.vb: Equals(Object) + spec.csharp: + - uid: System.ValueType.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.ValueType.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.ValueType.GetHashCode + commentId: M:System.ValueType.GetHashCode + parent: System.ValueType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode + name: GetHashCode() + nameWithType: ValueType.GetHashCode() + fullName: System.ValueType.GetHashCode() + spec.csharp: + - uid: System.ValueType.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode + - name: ( + - name: ) + spec.vb: + - uid: System.ValueType.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode + - name: ( + - name: ) +- uid: System.ValueType.ToString + commentId: M:System.ValueType.ToString + parent: System.ValueType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring + name: ToString() + nameWithType: ValueType.ToString() + fullName: System.ValueType.ToString() + spec.csharp: + - uid: System.ValueType.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring + - name: ( + - name: ) + spec.vb: + - uid: System.ValueType.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring + - name: ( + - name: ) +- uid: System.Object.Equals(System.Object,System.Object) + commentId: M:System.Object.Equals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + name: Equals(object, object) + nameWithType: object.Equals(object, object) + fullName: object.Equals(object, object) + nameWithType.vb: Object.Equals(Object, Object) + fullName.vb: Object.Equals(Object, Object) + name.vb: Equals(Object, Object) + spec.csharp: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.GetType + commentId: M:System.Object.GetType + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + name: GetType() + nameWithType: object.GetType() + fullName: object.GetType() + nameWithType.vb: Object.GetType() + fullName.vb: Object.GetType() + spec.csharp: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) +- uid: System.Object.ReferenceEquals(System.Object,System.Object) + commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + name: ReferenceEquals(object, object) + nameWithType: object.ReferenceEquals(object, object) + fullName: object.ReferenceEquals(object, object) + nameWithType.vb: Object.ReferenceEquals(Object, Object) + fullName.vb: Object.ReferenceEquals(Object, Object) + name.vb: ReferenceEquals(Object, Object) + spec.csharp: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.ValueType + commentId: T:System.ValueType + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.valuetype + name: ValueType + nameWithType: ValueType + fullName: System.ValueType +- uid: System.Object + commentId: T:System.Object + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + name: object + nameWithType: object + fullName: object + nameWithType.vb: Object + fullName.vb: Object + name.vb: Object +- uid: System + commentId: N:System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System + nameWithType: System + fullName: System +- uid: System.IntPtr + commentId: T:System.IntPtr + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.intptr + name: nint + nameWithType: nint + fullName: nint + nameWithType.vb: IntPtr + fullName.vb: System.IntPtr + name.vb: IntPtr +- uid: OpenTK.Graphics.Glx.ScreenPtr.#ctor* + commentId: Overload:OpenTK.Graphics.Glx.ScreenPtr.#ctor + href: OpenTK.Graphics.Glx.ScreenPtr.html#OpenTK_Graphics_Glx_ScreenPtr__ctor_System_IntPtr_ + name: ScreenPtr + nameWithType: ScreenPtr.ScreenPtr + fullName: OpenTK.Graphics.Glx.ScreenPtr.ScreenPtr + nameWithType.vb: ScreenPtr.New + fullName.vb: OpenTK.Graphics.Glx.ScreenPtr.New + name.vb: New +- uid: OpenTK.Graphics.Glx.ScreenPtr.op_Explicit* + commentId: Overload:OpenTK.Graphics.Glx.ScreenPtr.op_Explicit + name: explicit operator + nameWithType: ScreenPtr.explicit operator + fullName: OpenTK.Graphics.Glx.ScreenPtr.explicit operator + nameWithType.vb: ScreenPtr.CType + fullName.vb: OpenTK.Graphics.Glx.ScreenPtr.CType + name.vb: CType + spec.csharp: + - name: explicit + - name: " " + - name: operator +- uid: OpenTK.Graphics.Glx.ScreenPtr + commentId: T:OpenTK.Graphics.Glx.ScreenPtr + parent: OpenTK.Graphics.Glx + href: OpenTK.Graphics.Glx.ScreenPtr.html + name: ScreenPtr + nameWithType: ScreenPtr + fullName: OpenTK.Graphics.Glx.ScreenPtr diff --git a/api/OpenTK.Graphics.Glx.Window.yml b/api/OpenTK.Graphics.Glx.Window.yml index 12e29fdc..2387e913 100644 --- a/api/OpenTK.Graphics.Glx.Window.yml +++ b/api/OpenTK.Graphics.Glx.Window.yml @@ -23,7 +23,7 @@ items: repo: https://github.com/opentk/opentk.git id: Window path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 63 + startLine: 95 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -57,7 +57,7 @@ items: repo: https://github.com/opentk/opentk.git id: XID path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 68 + startLine: 100 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -86,7 +86,7 @@ items: repo: https://github.com/opentk/opentk.git id: .ctor path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 74 + startLine: 106 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -121,7 +121,7 @@ items: repo: https://github.com/opentk/opentk.git id: op_Explicit path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 79 + startLine: 111 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -155,7 +155,7 @@ items: repo: https://github.com/opentk/opentk.git id: op_Explicit path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 80 + startLine: 112 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx diff --git a/api/OpenTK.Graphics.Glx.XVisualInfoPtr.yml b/api/OpenTK.Graphics.Glx.XVisualInfoPtr.yml new file mode 100644 index 00000000..95d06900 --- /dev/null +++ b/api/OpenTK.Graphics.Glx.XVisualInfoPtr.yml @@ -0,0 +1,460 @@ +### YamlMime:ManagedReference +items: +- uid: OpenTK.Graphics.Glx.XVisualInfoPtr + commentId: T:OpenTK.Graphics.Glx.XVisualInfoPtr + id: XVisualInfoPtr + parent: OpenTK.Graphics.Glx + children: + - OpenTK.Graphics.Glx.XVisualInfoPtr.#ctor(System.IntPtr) + - OpenTK.Graphics.Glx.XVisualInfoPtr.Value + - OpenTK.Graphics.Glx.XVisualInfoPtr.op_Explicit(OpenTK.Graphics.Glx.XVisualInfoPtr)~System.IntPtr + - OpenTK.Graphics.Glx.XVisualInfoPtr.op_Explicit(System.IntPtr)~OpenTK.Graphics.Glx.XVisualInfoPtr + langs: + - csharp + - vb + name: XVisualInfoPtr + nameWithType: XVisualInfoPtr + fullName: OpenTK.Graphics.Glx.XVisualInfoPtr + type: Struct + source: + remote: + path: src/OpenTK.Graphics/Types.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: XVisualInfoPtr + path: opentk/src/OpenTK.Graphics/Types.cs + startLine: 187 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Glx + summary: Opaque struct pointer for X11 XVisualInfo*. + example: [] + syntax: + content: public struct XVisualInfoPtr + content.vb: Public Structure XVisualInfoPtr + inheritedMembers: + - System.ValueType.Equals(System.Object) + - System.ValueType.GetHashCode + - System.ValueType.ToString + - System.Object.Equals(System.Object,System.Object) + - System.Object.GetType + - System.Object.ReferenceEquals(System.Object,System.Object) +- uid: OpenTK.Graphics.Glx.XVisualInfoPtr.Value + commentId: F:OpenTK.Graphics.Glx.XVisualInfoPtr.Value + id: Value + parent: OpenTK.Graphics.Glx.XVisualInfoPtr + langs: + - csharp + - vb + name: Value + nameWithType: XVisualInfoPtr.Value + fullName: OpenTK.Graphics.Glx.XVisualInfoPtr.Value + type: Field + source: + remote: + path: src/OpenTK.Graphics/Types.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: Value + path: opentk/src/OpenTK.Graphics/Types.cs + startLine: 192 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Glx + summary: The underlying pointer value. + example: [] + syntax: + content: public nint Value + return: + type: System.IntPtr + content.vb: Public Value As IntPtr +- uid: OpenTK.Graphics.Glx.XVisualInfoPtr.#ctor(System.IntPtr) + commentId: M:OpenTK.Graphics.Glx.XVisualInfoPtr.#ctor(System.IntPtr) + id: '#ctor(System.IntPtr)' + parent: OpenTK.Graphics.Glx.XVisualInfoPtr + langs: + - csharp + - vb + name: XVisualInfoPtr(nint) + nameWithType: XVisualInfoPtr.XVisualInfoPtr(nint) + fullName: OpenTK.Graphics.Glx.XVisualInfoPtr.XVisualInfoPtr(nint) + type: Constructor + source: + remote: + path: src/OpenTK.Graphics/Types.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: .ctor + path: opentk/src/OpenTK.Graphics/Types.cs + startLine: 198 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Glx + summary: Constructs a new XVisualInfo* wrapper struct from a XVisualInfo pointer. + example: [] + syntax: + content: public XVisualInfoPtr(nint value) + parameters: + - id: value + type: System.IntPtr + description: The screen pointer. + content.vb: Public Sub New(value As IntPtr) + overload: OpenTK.Graphics.Glx.XVisualInfoPtr.#ctor* + nameWithType.vb: XVisualInfoPtr.New(IntPtr) + fullName.vb: OpenTK.Graphics.Glx.XVisualInfoPtr.New(System.IntPtr) + name.vb: New(IntPtr) +- uid: OpenTK.Graphics.Glx.XVisualInfoPtr.op_Explicit(OpenTK.Graphics.Glx.XVisualInfoPtr)~System.IntPtr + commentId: M:OpenTK.Graphics.Glx.XVisualInfoPtr.op_Explicit(OpenTK.Graphics.Glx.XVisualInfoPtr)~System.IntPtr + id: op_Explicit(OpenTK.Graphics.Glx.XVisualInfoPtr)~System.IntPtr + parent: OpenTK.Graphics.Glx.XVisualInfoPtr + langs: + - csharp + - vb + name: explicit operator nint(XVisualInfoPtr) + nameWithType: XVisualInfoPtr.explicit operator nint(XVisualInfoPtr) + fullName: OpenTK.Graphics.Glx.XVisualInfoPtr.explicit operator nint(OpenTK.Graphics.Glx.XVisualInfoPtr) + type: Operator + source: + remote: + path: src/OpenTK.Graphics/Types.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: op_Explicit + path: opentk/src/OpenTK.Graphics/Types.cs + startLine: 203 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Glx + syntax: + content: public static explicit operator nint(XVisualInfoPtr handle) + parameters: + - id: handle + type: OpenTK.Graphics.Glx.XVisualInfoPtr + return: + type: System.IntPtr + content.vb: Public Shared Narrowing Operator CType(handle As XVisualInfoPtr) As IntPtr + overload: OpenTK.Graphics.Glx.XVisualInfoPtr.op_Explicit* + nameWithType.vb: XVisualInfoPtr.CType(XVisualInfoPtr) + fullName.vb: OpenTK.Graphics.Glx.XVisualInfoPtr.CType(OpenTK.Graphics.Glx.XVisualInfoPtr) + name.vb: CType(XVisualInfoPtr) +- uid: OpenTK.Graphics.Glx.XVisualInfoPtr.op_Explicit(System.IntPtr)~OpenTK.Graphics.Glx.XVisualInfoPtr + commentId: M:OpenTK.Graphics.Glx.XVisualInfoPtr.op_Explicit(System.IntPtr)~OpenTK.Graphics.Glx.XVisualInfoPtr + id: op_Explicit(System.IntPtr)~OpenTK.Graphics.Glx.XVisualInfoPtr + parent: OpenTK.Graphics.Glx.XVisualInfoPtr + langs: + - csharp + - vb + name: explicit operator XVisualInfoPtr(nint) + nameWithType: XVisualInfoPtr.explicit operator XVisualInfoPtr(nint) + fullName: OpenTK.Graphics.Glx.XVisualInfoPtr.explicit operator OpenTK.Graphics.Glx.XVisualInfoPtr(nint) + type: Operator + source: + remote: + path: src/OpenTK.Graphics/Types.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: op_Explicit + path: opentk/src/OpenTK.Graphics/Types.cs + startLine: 204 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Glx + syntax: + content: public static explicit operator XVisualInfoPtr(nint ptr) + parameters: + - id: ptr + type: System.IntPtr + return: + type: OpenTK.Graphics.Glx.XVisualInfoPtr + content.vb: Public Shared Narrowing Operator CType(ptr As IntPtr) As XVisualInfoPtr + overload: OpenTK.Graphics.Glx.XVisualInfoPtr.op_Explicit* + nameWithType.vb: XVisualInfoPtr.CType(IntPtr) + fullName.vb: OpenTK.Graphics.Glx.XVisualInfoPtr.CType(System.IntPtr) + name.vb: CType(IntPtr) +references: +- uid: OpenTK.Graphics.Glx + commentId: N:OpenTK.Graphics.Glx + href: OpenTK.html + name: OpenTK.Graphics.Glx + nameWithType: OpenTK.Graphics.Glx + fullName: OpenTK.Graphics.Glx + spec.csharp: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Graphics + name: Graphics + href: OpenTK.Graphics.html + - name: . + - uid: OpenTK.Graphics.Glx + name: Glx + href: OpenTK.Graphics.Glx.html + spec.vb: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Graphics + name: Graphics + href: OpenTK.Graphics.html + - name: . + - uid: OpenTK.Graphics.Glx + name: Glx + href: OpenTK.Graphics.Glx.html +- uid: System.ValueType.Equals(System.Object) + commentId: M:System.ValueType.Equals(System.Object) + parent: System.ValueType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals + name: Equals(object) + nameWithType: ValueType.Equals(object) + fullName: System.ValueType.Equals(object) + nameWithType.vb: ValueType.Equals(Object) + fullName.vb: System.ValueType.Equals(Object) + name.vb: Equals(Object) + spec.csharp: + - uid: System.ValueType.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.ValueType.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.ValueType.GetHashCode + commentId: M:System.ValueType.GetHashCode + parent: System.ValueType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode + name: GetHashCode() + nameWithType: ValueType.GetHashCode() + fullName: System.ValueType.GetHashCode() + spec.csharp: + - uid: System.ValueType.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode + - name: ( + - name: ) + spec.vb: + - uid: System.ValueType.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode + - name: ( + - name: ) +- uid: System.ValueType.ToString + commentId: M:System.ValueType.ToString + parent: System.ValueType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring + name: ToString() + nameWithType: ValueType.ToString() + fullName: System.ValueType.ToString() + spec.csharp: + - uid: System.ValueType.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring + - name: ( + - name: ) + spec.vb: + - uid: System.ValueType.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring + - name: ( + - name: ) +- uid: System.Object.Equals(System.Object,System.Object) + commentId: M:System.Object.Equals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + name: Equals(object, object) + nameWithType: object.Equals(object, object) + fullName: object.Equals(object, object) + nameWithType.vb: Object.Equals(Object, Object) + fullName.vb: Object.Equals(Object, Object) + name.vb: Equals(Object, Object) + spec.csharp: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.GetType + commentId: M:System.Object.GetType + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + name: GetType() + nameWithType: object.GetType() + fullName: object.GetType() + nameWithType.vb: Object.GetType() + fullName.vb: Object.GetType() + spec.csharp: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) +- uid: System.Object.ReferenceEquals(System.Object,System.Object) + commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + name: ReferenceEquals(object, object) + nameWithType: object.ReferenceEquals(object, object) + fullName: object.ReferenceEquals(object, object) + nameWithType.vb: Object.ReferenceEquals(Object, Object) + fullName.vb: Object.ReferenceEquals(Object, Object) + name.vb: ReferenceEquals(Object, Object) + spec.csharp: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.ValueType + commentId: T:System.ValueType + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.valuetype + name: ValueType + nameWithType: ValueType + fullName: System.ValueType +- uid: System.Object + commentId: T:System.Object + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + name: object + nameWithType: object + fullName: object + nameWithType.vb: Object + fullName.vb: Object + name.vb: Object +- uid: System + commentId: N:System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System + nameWithType: System + fullName: System +- uid: System.IntPtr + commentId: T:System.IntPtr + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.intptr + name: nint + nameWithType: nint + fullName: nint + nameWithType.vb: IntPtr + fullName.vb: System.IntPtr + name.vb: IntPtr +- uid: OpenTK.Graphics.Glx.XVisualInfoPtr.#ctor* + commentId: Overload:OpenTK.Graphics.Glx.XVisualInfoPtr.#ctor + href: OpenTK.Graphics.Glx.XVisualInfoPtr.html#OpenTK_Graphics_Glx_XVisualInfoPtr__ctor_System_IntPtr_ + name: XVisualInfoPtr + nameWithType: XVisualInfoPtr.XVisualInfoPtr + fullName: OpenTK.Graphics.Glx.XVisualInfoPtr.XVisualInfoPtr + nameWithType.vb: XVisualInfoPtr.New + fullName.vb: OpenTK.Graphics.Glx.XVisualInfoPtr.New + name.vb: New +- uid: OpenTK.Graphics.Glx.XVisualInfoPtr.op_Explicit* + commentId: Overload:OpenTK.Graphics.Glx.XVisualInfoPtr.op_Explicit + name: explicit operator + nameWithType: XVisualInfoPtr.explicit operator + fullName: OpenTK.Graphics.Glx.XVisualInfoPtr.explicit operator + nameWithType.vb: XVisualInfoPtr.CType + fullName.vb: OpenTK.Graphics.Glx.XVisualInfoPtr.CType + name.vb: CType + spec.csharp: + - name: explicit + - name: " " + - name: operator +- uid: OpenTK.Graphics.Glx.XVisualInfoPtr + commentId: T:OpenTK.Graphics.Glx.XVisualInfoPtr + parent: OpenTK.Graphics.Glx + href: OpenTK.Graphics.Glx.XVisualInfoPtr.html + name: XVisualInfoPtr + nameWithType: XVisualInfoPtr + fullName: OpenTK.Graphics.Glx.XVisualInfoPtr diff --git a/api/OpenTK.Graphics.Glx.yml b/api/OpenTK.Graphics.Glx.yml index 89d07807..321fdd54 100644 --- a/api/OpenTK.Graphics.Glx.yml +++ b/api/OpenTK.Graphics.Glx.yml @@ -6,7 +6,6 @@ items: children: - OpenTK.Graphics.Glx.All - OpenTK.Graphics.Glx.Colormap - - OpenTK.Graphics.Glx.Display - OpenTK.Graphics.Glx.DisplayPtr - OpenTK.Graphics.Glx.Font - OpenTK.Graphics.Glx.GLXAttribute @@ -38,9 +37,9 @@ items: - OpenTK.Graphics.Glx.Glx.SUN - OpenTK.Graphics.Glx.GlxPointers - OpenTK.Graphics.Glx.Pixmap - - OpenTK.Graphics.Glx.Screen + - OpenTK.Graphics.Glx.ScreenPtr - OpenTK.Graphics.Glx.Window - - OpenTK.Graphics.Glx.XVisualInfo + - OpenTK.Graphics.Glx.XVisualInfoPtr langs: - csharp - vb @@ -275,25 +274,20 @@ references: - uid: OpenTK.Graphics.Glx.Glx.SUN name: SUN href: OpenTK.Graphics.Glx.Glx.SUN.html -- uid: OpenTK.Graphics.Glx.Display - commentId: T:OpenTK.Graphics.Glx.Display - parent: OpenTK.Graphics.Glx - href: OpenTK.Graphics.Glx.Display.html - name: Display - nameWithType: Display - fullName: OpenTK.Graphics.Glx.Display - uid: OpenTK.Graphics.Glx.DisplayPtr commentId: T:OpenTK.Graphics.Glx.DisplayPtr + parent: OpenTK.Graphics.Glx href: OpenTK.Graphics.Glx.DisplayPtr.html name: DisplayPtr nameWithType: DisplayPtr fullName: OpenTK.Graphics.Glx.DisplayPtr -- uid: OpenTK.Graphics.Glx.Screen - commentId: T:OpenTK.Graphics.Glx.Screen - href: OpenTK.Graphics.Glx.Screen.html - name: Screen - nameWithType: Screen - fullName: OpenTK.Graphics.Glx.Screen +- uid: OpenTK.Graphics.Glx.ScreenPtr + commentId: T:OpenTK.Graphics.Glx.ScreenPtr + parent: OpenTK.Graphics.Glx + href: OpenTK.Graphics.Glx.ScreenPtr.html + name: ScreenPtr + nameWithType: ScreenPtr + fullName: OpenTK.Graphics.Glx.ScreenPtr - uid: OpenTK.Graphics.Glx.Window commentId: T:OpenTK.Graphics.Glx.Window parent: OpenTK.Graphics.Glx @@ -322,13 +316,13 @@ references: name: Colormap nameWithType: Colormap fullName: OpenTK.Graphics.Glx.Colormap -- uid: OpenTK.Graphics.Glx.XVisualInfo - commentId: T:OpenTK.Graphics.Glx.XVisualInfo +- uid: OpenTK.Graphics.Glx.XVisualInfoPtr + commentId: T:OpenTK.Graphics.Glx.XVisualInfoPtr parent: OpenTK.Graphics.Glx - href: OpenTK.Graphics.Glx.XVisualInfo.html - name: XVisualInfo - nameWithType: XVisualInfo - fullName: OpenTK.Graphics.Glx.XVisualInfo + href: OpenTK.Graphics.Glx.XVisualInfoPtr.html + name: XVisualInfoPtr + nameWithType: XVisualInfoPtr + fullName: OpenTK.Graphics.Glx.XVisualInfoPtr - uid: OpenTK.Graphics.Glx.GLXFBConfigID commentId: T:OpenTK.Graphics.Glx.GLXFBConfigID parent: OpenTK.Graphics.Glx diff --git a/api/OpenTK.Graphics.PerfQueryHandle.yml b/api/OpenTK.Graphics.PerfQueryHandle.yml index ab8d2453..7576350a 100644 --- a/api/OpenTK.Graphics.PerfQueryHandle.yml +++ b/api/OpenTK.Graphics.PerfQueryHandle.yml @@ -29,7 +29,7 @@ items: repo: https://github.com/opentk/opentk.git id: PerfQueryHandle path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 1233 + startLine: 1283 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -61,7 +61,7 @@ items: repo: https://github.com/opentk/opentk.git id: Zero path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 1235 + startLine: 1285 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -88,7 +88,7 @@ items: repo: https://github.com/opentk/opentk.git id: Handle path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 1237 + startLine: 1287 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -115,7 +115,7 @@ items: repo: https://github.com/opentk/opentk.git id: .ctor path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 1239 + startLine: 1289 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -147,7 +147,7 @@ items: repo: https://github.com/opentk/opentk.git id: Equals path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 1244 + startLine: 1294 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -186,7 +186,7 @@ items: repo: https://github.com/opentk/opentk.git id: Equals path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 1249 + startLine: 1299 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -223,7 +223,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetHashCode path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 1254 + startLine: 1304 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -255,7 +255,7 @@ items: repo: https://github.com/opentk/opentk.git id: op_Equality path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 1259 + startLine: 1309 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -291,7 +291,7 @@ items: repo: https://github.com/opentk/opentk.git id: op_Inequality path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 1264 + startLine: 1314 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -327,7 +327,7 @@ items: repo: https://github.com/opentk/opentk.git id: op_Explicit path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 1269 + startLine: 1319 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -361,7 +361,7 @@ items: repo: https://github.com/opentk/opentk.git id: op_Explicit path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 1270 + startLine: 1320 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics diff --git a/api/OpenTK.Graphics.ProgramHandle.yml b/api/OpenTK.Graphics.ProgramHandle.yml index d1b0a6b3..c48efd90 100644 --- a/api/OpenTK.Graphics.ProgramHandle.yml +++ b/api/OpenTK.Graphics.ProgramHandle.yml @@ -29,7 +29,7 @@ items: repo: https://github.com/opentk/opentk.git id: ProgramHandle path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 753 + startLine: 803 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -61,7 +61,7 @@ items: repo: https://github.com/opentk/opentk.git id: Zero path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 755 + startLine: 805 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -88,7 +88,7 @@ items: repo: https://github.com/opentk/opentk.git id: Handle path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 757 + startLine: 807 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -115,7 +115,7 @@ items: repo: https://github.com/opentk/opentk.git id: .ctor path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 759 + startLine: 809 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -147,7 +147,7 @@ items: repo: https://github.com/opentk/opentk.git id: Equals path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 764 + startLine: 814 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -186,7 +186,7 @@ items: repo: https://github.com/opentk/opentk.git id: Equals path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 769 + startLine: 819 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -223,7 +223,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetHashCode path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 774 + startLine: 824 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -255,7 +255,7 @@ items: repo: https://github.com/opentk/opentk.git id: op_Equality path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 779 + startLine: 829 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -291,7 +291,7 @@ items: repo: https://github.com/opentk/opentk.git id: op_Inequality path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 784 + startLine: 834 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -327,7 +327,7 @@ items: repo: https://github.com/opentk/opentk.git id: op_Explicit path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 789 + startLine: 839 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -361,7 +361,7 @@ items: repo: https://github.com/opentk/opentk.git id: op_Explicit path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 790 + startLine: 840 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics diff --git a/api/OpenTK.Graphics.ProgramPipelineHandle.yml b/api/OpenTK.Graphics.ProgramPipelineHandle.yml index 49e02865..bf4bfde5 100644 --- a/api/OpenTK.Graphics.ProgramPipelineHandle.yml +++ b/api/OpenTK.Graphics.ProgramPipelineHandle.yml @@ -29,7 +29,7 @@ items: repo: https://github.com/opentk/opentk.git id: ProgramPipelineHandle path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 793 + startLine: 843 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -61,7 +61,7 @@ items: repo: https://github.com/opentk/opentk.git id: Zero path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 795 + startLine: 845 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -88,7 +88,7 @@ items: repo: https://github.com/opentk/opentk.git id: Handle path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 797 + startLine: 847 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -115,7 +115,7 @@ items: repo: https://github.com/opentk/opentk.git id: .ctor path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 799 + startLine: 849 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -147,7 +147,7 @@ items: repo: https://github.com/opentk/opentk.git id: Equals path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 804 + startLine: 854 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -186,7 +186,7 @@ items: repo: https://github.com/opentk/opentk.git id: Equals path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 809 + startLine: 859 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -223,7 +223,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetHashCode path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 814 + startLine: 864 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -255,7 +255,7 @@ items: repo: https://github.com/opentk/opentk.git id: op_Equality path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 819 + startLine: 869 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -291,7 +291,7 @@ items: repo: https://github.com/opentk/opentk.git id: op_Inequality path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 824 + startLine: 874 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -327,7 +327,7 @@ items: repo: https://github.com/opentk/opentk.git id: op_Explicit path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 829 + startLine: 879 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -361,7 +361,7 @@ items: repo: https://github.com/opentk/opentk.git id: op_Explicit path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 830 + startLine: 880 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics diff --git a/api/OpenTK.Graphics.QueryHandle.yml b/api/OpenTK.Graphics.QueryHandle.yml index 4e977e26..84d4fa20 100644 --- a/api/OpenTK.Graphics.QueryHandle.yml +++ b/api/OpenTK.Graphics.QueryHandle.yml @@ -29,7 +29,7 @@ items: repo: https://github.com/opentk/opentk.git id: QueryHandle path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 953 + startLine: 1003 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -61,7 +61,7 @@ items: repo: https://github.com/opentk/opentk.git id: Zero path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 955 + startLine: 1005 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -88,7 +88,7 @@ items: repo: https://github.com/opentk/opentk.git id: Handle path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 957 + startLine: 1007 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -115,7 +115,7 @@ items: repo: https://github.com/opentk/opentk.git id: .ctor path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 959 + startLine: 1009 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -147,7 +147,7 @@ items: repo: https://github.com/opentk/opentk.git id: Equals path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 964 + startLine: 1014 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -186,7 +186,7 @@ items: repo: https://github.com/opentk/opentk.git id: Equals path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 969 + startLine: 1019 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -223,7 +223,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetHashCode path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 974 + startLine: 1024 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -255,7 +255,7 @@ items: repo: https://github.com/opentk/opentk.git id: op_Equality path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 979 + startLine: 1029 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -291,7 +291,7 @@ items: repo: https://github.com/opentk/opentk.git id: op_Inequality path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 984 + startLine: 1034 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -327,7 +327,7 @@ items: repo: https://github.com/opentk/opentk.git id: op_Explicit path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 989 + startLine: 1039 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -361,7 +361,7 @@ items: repo: https://github.com/opentk/opentk.git id: op_Explicit path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 990 + startLine: 1040 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics diff --git a/api/OpenTK.Graphics.RenderbufferHandle.yml b/api/OpenTK.Graphics.RenderbufferHandle.yml index a27e7a2a..98b97681 100644 --- a/api/OpenTK.Graphics.RenderbufferHandle.yml +++ b/api/OpenTK.Graphics.RenderbufferHandle.yml @@ -29,7 +29,7 @@ items: repo: https://github.com/opentk/opentk.git id: RenderbufferHandle path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 1033 + startLine: 1083 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -61,7 +61,7 @@ items: repo: https://github.com/opentk/opentk.git id: Zero path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 1035 + startLine: 1085 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -88,7 +88,7 @@ items: repo: https://github.com/opentk/opentk.git id: Handle path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 1037 + startLine: 1087 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -115,7 +115,7 @@ items: repo: https://github.com/opentk/opentk.git id: .ctor path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 1039 + startLine: 1089 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -147,7 +147,7 @@ items: repo: https://github.com/opentk/opentk.git id: Equals path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 1044 + startLine: 1094 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -186,7 +186,7 @@ items: repo: https://github.com/opentk/opentk.git id: Equals path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 1049 + startLine: 1099 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -223,7 +223,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetHashCode path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 1054 + startLine: 1104 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -255,7 +255,7 @@ items: repo: https://github.com/opentk/opentk.git id: op_Equality path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 1059 + startLine: 1109 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -291,7 +291,7 @@ items: repo: https://github.com/opentk/opentk.git id: op_Inequality path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 1064 + startLine: 1114 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -327,7 +327,7 @@ items: repo: https://github.com/opentk/opentk.git id: op_Explicit path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 1069 + startLine: 1119 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -361,7 +361,7 @@ items: repo: https://github.com/opentk/opentk.git id: op_Explicit path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 1070 + startLine: 1120 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics diff --git a/api/OpenTK.Graphics.SamplerHandle.yml b/api/OpenTK.Graphics.SamplerHandle.yml index 94702c57..05b319d0 100644 --- a/api/OpenTK.Graphics.SamplerHandle.yml +++ b/api/OpenTK.Graphics.SamplerHandle.yml @@ -29,7 +29,7 @@ items: repo: https://github.com/opentk/opentk.git id: SamplerHandle path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 1073 + startLine: 1123 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -61,7 +61,7 @@ items: repo: https://github.com/opentk/opentk.git id: Zero path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 1075 + startLine: 1125 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -88,7 +88,7 @@ items: repo: https://github.com/opentk/opentk.git id: Handle path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 1077 + startLine: 1127 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -115,7 +115,7 @@ items: repo: https://github.com/opentk/opentk.git id: .ctor path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 1079 + startLine: 1129 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -147,7 +147,7 @@ items: repo: https://github.com/opentk/opentk.git id: Equals path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 1084 + startLine: 1134 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -186,7 +186,7 @@ items: repo: https://github.com/opentk/opentk.git id: Equals path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 1089 + startLine: 1139 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -223,7 +223,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetHashCode path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 1094 + startLine: 1144 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -255,7 +255,7 @@ items: repo: https://github.com/opentk/opentk.git id: op_Equality path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 1099 + startLine: 1149 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -291,7 +291,7 @@ items: repo: https://github.com/opentk/opentk.git id: op_Inequality path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 1104 + startLine: 1154 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -327,7 +327,7 @@ items: repo: https://github.com/opentk/opentk.git id: op_Explicit path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 1109 + startLine: 1159 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -361,7 +361,7 @@ items: repo: https://github.com/opentk/opentk.git id: op_Explicit path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 1110 + startLine: 1160 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics diff --git a/api/OpenTK.Graphics.ShaderHandle.yml b/api/OpenTK.Graphics.ShaderHandle.yml index 875087ac..9429a285 100644 --- a/api/OpenTK.Graphics.ShaderHandle.yml +++ b/api/OpenTK.Graphics.ShaderHandle.yml @@ -29,7 +29,7 @@ items: repo: https://github.com/opentk/opentk.git id: ShaderHandle path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 913 + startLine: 963 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -61,7 +61,7 @@ items: repo: https://github.com/opentk/opentk.git id: Zero path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 915 + startLine: 965 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -88,7 +88,7 @@ items: repo: https://github.com/opentk/opentk.git id: Handle path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 917 + startLine: 967 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -115,7 +115,7 @@ items: repo: https://github.com/opentk/opentk.git id: .ctor path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 919 + startLine: 969 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -147,7 +147,7 @@ items: repo: https://github.com/opentk/opentk.git id: Equals path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 924 + startLine: 974 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -186,7 +186,7 @@ items: repo: https://github.com/opentk/opentk.git id: Equals path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 929 + startLine: 979 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -223,7 +223,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetHashCode path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 934 + startLine: 984 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -255,7 +255,7 @@ items: repo: https://github.com/opentk/opentk.git id: op_Equality path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 939 + startLine: 989 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -291,7 +291,7 @@ items: repo: https://github.com/opentk/opentk.git id: op_Inequality path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 944 + startLine: 994 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -327,7 +327,7 @@ items: repo: https://github.com/opentk/opentk.git id: op_Explicit path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 949 + startLine: 999 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -361,7 +361,7 @@ items: repo: https://github.com/opentk/opentk.git id: op_Explicit path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 950 + startLine: 1000 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics diff --git a/api/OpenTK.Graphics.SpecialNumbers.yml b/api/OpenTK.Graphics.SpecialNumbers.yml index f2360046..9005ab48 100644 --- a/api/OpenTK.Graphics.SpecialNumbers.yml +++ b/api/OpenTK.Graphics.SpecialNumbers.yml @@ -32,7 +32,7 @@ items: repo: https://github.com/opentk/opentk.git id: SpecialNumbers path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 567 + startLine: 617 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -69,7 +69,7 @@ items: repo: https://github.com/opentk/opentk.git id: "False" path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 569 + startLine: 619 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -96,7 +96,7 @@ items: repo: https://github.com/opentk/opentk.git id: NoError path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 570 + startLine: 620 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -123,7 +123,7 @@ items: repo: https://github.com/opentk/opentk.git id: Zero path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 571 + startLine: 621 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -150,7 +150,7 @@ items: repo: https://github.com/opentk/opentk.git id: None path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 572 + startLine: 622 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -177,7 +177,7 @@ items: repo: https://github.com/opentk/opentk.git id: NoneOES path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 573 + startLine: 623 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -204,7 +204,7 @@ items: repo: https://github.com/opentk/opentk.git id: "True" path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 574 + startLine: 624 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -231,7 +231,7 @@ items: repo: https://github.com/opentk/opentk.git id: One path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 575 + startLine: 625 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -258,7 +258,7 @@ items: repo: https://github.com/opentk/opentk.git id: InvalidIndex path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 576 + startLine: 626 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -285,7 +285,7 @@ items: repo: https://github.com/opentk/opentk.git id: AllPixelsAMD path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 577 + startLine: 627 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -312,7 +312,7 @@ items: repo: https://github.com/opentk/opentk.git id: TimeoutIgnored path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 578 + startLine: 628 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -339,7 +339,7 @@ items: repo: https://github.com/opentk/opentk.git id: TimeoutIgnoredAPPLE path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 579 + startLine: 629 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -366,7 +366,7 @@ items: repo: https://github.com/opentk/opentk.git id: UUIDSizeEXT path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 586 + startLine: 636 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -393,7 +393,7 @@ items: repo: https://github.com/opentk/opentk.git id: LUIDSizeEXT path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 587 + startLine: 637 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics diff --git a/api/OpenTK.Graphics.TextureHandle.yml b/api/OpenTK.Graphics.TextureHandle.yml index 40254586..82da82db 100644 --- a/api/OpenTK.Graphics.TextureHandle.yml +++ b/api/OpenTK.Graphics.TextureHandle.yml @@ -29,7 +29,7 @@ items: repo: https://github.com/opentk/opentk.git id: TextureHandle path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 833 + startLine: 883 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -61,7 +61,7 @@ items: repo: https://github.com/opentk/opentk.git id: Zero path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 835 + startLine: 885 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -88,7 +88,7 @@ items: repo: https://github.com/opentk/opentk.git id: Handle path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 837 + startLine: 887 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -115,7 +115,7 @@ items: repo: https://github.com/opentk/opentk.git id: .ctor path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 839 + startLine: 889 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -147,7 +147,7 @@ items: repo: https://github.com/opentk/opentk.git id: Equals path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 844 + startLine: 894 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -186,7 +186,7 @@ items: repo: https://github.com/opentk/opentk.git id: Equals path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 849 + startLine: 899 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -223,7 +223,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetHashCode path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 854 + startLine: 904 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -255,7 +255,7 @@ items: repo: https://github.com/opentk/opentk.git id: op_Equality path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 859 + startLine: 909 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -291,7 +291,7 @@ items: repo: https://github.com/opentk/opentk.git id: op_Inequality path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 864 + startLine: 914 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -327,7 +327,7 @@ items: repo: https://github.com/opentk/opentk.git id: op_Explicit path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 869 + startLine: 919 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -361,7 +361,7 @@ items: repo: https://github.com/opentk/opentk.git id: op_Explicit path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 870 + startLine: 920 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics diff --git a/api/OpenTK.Graphics.TransformFeedbackHandle.yml b/api/OpenTK.Graphics.TransformFeedbackHandle.yml index 22bb5378..73f484e2 100644 --- a/api/OpenTK.Graphics.TransformFeedbackHandle.yml +++ b/api/OpenTK.Graphics.TransformFeedbackHandle.yml @@ -29,7 +29,7 @@ items: repo: https://github.com/opentk/opentk.git id: TransformFeedbackHandle path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 1113 + startLine: 1163 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -61,7 +61,7 @@ items: repo: https://github.com/opentk/opentk.git id: Zero path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 1115 + startLine: 1165 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -88,7 +88,7 @@ items: repo: https://github.com/opentk/opentk.git id: Handle path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 1117 + startLine: 1167 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -115,7 +115,7 @@ items: repo: https://github.com/opentk/opentk.git id: .ctor path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 1119 + startLine: 1169 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -147,7 +147,7 @@ items: repo: https://github.com/opentk/opentk.git id: Equals path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 1124 + startLine: 1174 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -186,7 +186,7 @@ items: repo: https://github.com/opentk/opentk.git id: Equals path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 1129 + startLine: 1179 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -223,7 +223,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetHashCode path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 1134 + startLine: 1184 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -255,7 +255,7 @@ items: repo: https://github.com/opentk/opentk.git id: op_Equality path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 1139 + startLine: 1189 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -291,7 +291,7 @@ items: repo: https://github.com/opentk/opentk.git id: op_Inequality path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 1144 + startLine: 1194 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -327,7 +327,7 @@ items: repo: https://github.com/opentk/opentk.git id: op_Explicit path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 1149 + startLine: 1199 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -361,7 +361,7 @@ items: repo: https://github.com/opentk/opentk.git id: op_Explicit path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 1150 + startLine: 1200 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics diff --git a/api/OpenTK.Graphics.VertexArrayHandle.yml b/api/OpenTK.Graphics.VertexArrayHandle.yml index 6f563684..7bd251a2 100644 --- a/api/OpenTK.Graphics.VertexArrayHandle.yml +++ b/api/OpenTK.Graphics.VertexArrayHandle.yml @@ -29,7 +29,7 @@ items: repo: https://github.com/opentk/opentk.git id: VertexArrayHandle path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 1153 + startLine: 1203 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -61,7 +61,7 @@ items: repo: https://github.com/opentk/opentk.git id: Zero path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 1155 + startLine: 1205 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -88,7 +88,7 @@ items: repo: https://github.com/opentk/opentk.git id: Handle path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 1157 + startLine: 1207 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -115,7 +115,7 @@ items: repo: https://github.com/opentk/opentk.git id: .ctor path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 1159 + startLine: 1209 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -147,7 +147,7 @@ items: repo: https://github.com/opentk/opentk.git id: Equals path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 1164 + startLine: 1214 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -186,7 +186,7 @@ items: repo: https://github.com/opentk/opentk.git id: Equals path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 1169 + startLine: 1219 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -223,7 +223,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetHashCode path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 1174 + startLine: 1224 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -255,7 +255,7 @@ items: repo: https://github.com/opentk/opentk.git id: op_Equality path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 1179 + startLine: 1229 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -291,7 +291,7 @@ items: repo: https://github.com/opentk/opentk.git id: op_Inequality path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 1184 + startLine: 1234 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -327,7 +327,7 @@ items: repo: https://github.com/opentk/opentk.git id: op_Explicit path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 1189 + startLine: 1239 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -361,7 +361,7 @@ items: repo: https://github.com/opentk/opentk.git id: op_Explicit path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 1190 + startLine: 1240 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics diff --git a/api/OpenTK.Graphics.WGLLoader.BindingsContext.yml b/api/OpenTK.Graphics.WGLLoader.BindingsContext.yml new file mode 100644 index 00000000..18d325e7 --- /dev/null +++ b/api/OpenTK.Graphics.WGLLoader.BindingsContext.yml @@ -0,0 +1,361 @@ +### YamlMime:ManagedReference +items: +- uid: OpenTK.Graphics.WGLLoader.BindingsContext + commentId: T:OpenTK.Graphics.WGLLoader.BindingsContext + id: WGLLoader.BindingsContext + parent: OpenTK.Graphics + children: + - OpenTK.Graphics.WGLLoader.BindingsContext.GetProcAddress(System.String) + langs: + - csharp + - vb + name: WGLLoader.BindingsContext + nameWithType: WGLLoader.BindingsContext + fullName: OpenTK.Graphics.WGLLoader.BindingsContext + type: Class + source: + remote: + path: src/OpenTK.Graphics/WGLLoader.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: BindingsContext + path: opentk/src/OpenTK.Graphics/WGLLoader.cs + startLine: 13 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics + syntax: + content: public static class WGLLoader.BindingsContext + content.vb: Public Module WGLLoader.BindingsContext + inheritance: + - System.Object + inheritedMembers: + - System.Object.Equals(System.Object) + - System.Object.Equals(System.Object,System.Object) + - System.Object.GetHashCode + - System.Object.GetType + - System.Object.MemberwiseClone + - System.Object.ReferenceEquals(System.Object,System.Object) + - System.Object.ToString +- uid: OpenTK.Graphics.WGLLoader.BindingsContext.GetProcAddress(System.String) + commentId: M:OpenTK.Graphics.WGLLoader.BindingsContext.GetProcAddress(System.String) + id: GetProcAddress(System.String) + parent: OpenTK.Graphics.WGLLoader.BindingsContext + langs: + - csharp + - vb + name: GetProcAddress(string) + nameWithType: WGLLoader.BindingsContext.GetProcAddress(string) + fullName: OpenTK.Graphics.WGLLoader.BindingsContext.GetProcAddress(string) + type: Method + source: + remote: + path: src/OpenTK.Graphics/WGLLoader.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: GetProcAddress + path: opentk/src/OpenTK.Graphics/WGLLoader.cs + startLine: 18 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics + syntax: + content: public static nint GetProcAddress(string procName) + parameters: + - id: procName + type: System.String + return: + type: System.IntPtr + content.vb: Public Shared Function GetProcAddress(procName As String) As IntPtr + overload: OpenTK.Graphics.WGLLoader.BindingsContext.GetProcAddress* + nameWithType.vb: WGLLoader.BindingsContext.GetProcAddress(String) + fullName.vb: OpenTK.Graphics.WGLLoader.BindingsContext.GetProcAddress(String) + name.vb: GetProcAddress(String) +references: +- uid: OpenTK.Graphics + commentId: N:OpenTK.Graphics + href: OpenTK.html + name: OpenTK.Graphics + nameWithType: OpenTK.Graphics + fullName: OpenTK.Graphics + spec.csharp: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Graphics + name: Graphics + href: OpenTK.Graphics.html + spec.vb: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Graphics + name: Graphics + href: OpenTK.Graphics.html +- uid: System.Object + commentId: T:System.Object + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + name: object + nameWithType: object + fullName: object + nameWithType.vb: Object + fullName.vb: Object + name.vb: Object +- uid: System.Object.Equals(System.Object) + commentId: M:System.Object.Equals(System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + name: Equals(object) + nameWithType: object.Equals(object) + fullName: object.Equals(object) + nameWithType.vb: Object.Equals(Object) + fullName.vb: Object.Equals(Object) + name.vb: Equals(Object) + spec.csharp: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.Equals(System.Object,System.Object) + commentId: M:System.Object.Equals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + name: Equals(object, object) + nameWithType: object.Equals(object, object) + fullName: object.Equals(object, object) + nameWithType.vb: Object.Equals(Object, Object) + fullName.vb: Object.Equals(Object, Object) + name.vb: Equals(Object, Object) + spec.csharp: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.GetHashCode + commentId: M:System.Object.GetHashCode + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + name: GetHashCode() + nameWithType: object.GetHashCode() + fullName: object.GetHashCode() + nameWithType.vb: Object.GetHashCode() + fullName.vb: Object.GetHashCode() + spec.csharp: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) +- uid: System.Object.GetType + commentId: M:System.Object.GetType + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + name: GetType() + nameWithType: object.GetType() + fullName: object.GetType() + nameWithType.vb: Object.GetType() + fullName.vb: Object.GetType() + spec.csharp: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) +- uid: System.Object.MemberwiseClone + commentId: M:System.Object.MemberwiseClone + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + name: MemberwiseClone() + nameWithType: object.MemberwiseClone() + fullName: object.MemberwiseClone() + nameWithType.vb: Object.MemberwiseClone() + fullName.vb: Object.MemberwiseClone() + spec.csharp: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) + spec.vb: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) +- uid: System.Object.ReferenceEquals(System.Object,System.Object) + commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + name: ReferenceEquals(object, object) + nameWithType: object.ReferenceEquals(object, object) + fullName: object.ReferenceEquals(object, object) + nameWithType.vb: Object.ReferenceEquals(Object, Object) + fullName.vb: Object.ReferenceEquals(Object, Object) + name.vb: ReferenceEquals(Object, Object) + spec.csharp: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.ToString + commentId: M:System.Object.ToString + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + name: ToString() + nameWithType: object.ToString() + fullName: object.ToString() + nameWithType.vb: Object.ToString() + fullName.vb: Object.ToString() + spec.csharp: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) + spec.vb: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) +- uid: System + commentId: N:System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System + nameWithType: System + fullName: System +- uid: OpenTK.Graphics.WGLLoader.BindingsContext.GetProcAddress* + commentId: Overload:OpenTK.Graphics.WGLLoader.BindingsContext.GetProcAddress + href: OpenTK.Graphics.WGLLoader.BindingsContext.html#OpenTK_Graphics_WGLLoader_BindingsContext_GetProcAddress_System_String_ + name: GetProcAddress + nameWithType: WGLLoader.BindingsContext.GetProcAddress + fullName: OpenTK.Graphics.WGLLoader.BindingsContext.GetProcAddress +- uid: System.String + commentId: T:System.String + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + name: string + nameWithType: string + fullName: string + nameWithType.vb: String + fullName.vb: String + name.vb: String +- uid: System.IntPtr + commentId: T:System.IntPtr + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.intptr + name: nint + nameWithType: nint + fullName: nint + nameWithType.vb: IntPtr + fullName.vb: System.IntPtr + name.vb: IntPtr diff --git a/api/OpenTK.Graphics.WGLLoader.yml b/api/OpenTK.Graphics.WGLLoader.yml new file mode 100644 index 00000000..b476163d --- /dev/null +++ b/api/OpenTK.Graphics.WGLLoader.yml @@ -0,0 +1,298 @@ +### YamlMime:ManagedReference +items: +- uid: OpenTK.Graphics.WGLLoader + commentId: T:OpenTK.Graphics.WGLLoader + id: WGLLoader + parent: OpenTK.Graphics + children: [] + langs: + - csharp + - vb + name: WGLLoader + nameWithType: WGLLoader + fullName: OpenTK.Graphics.WGLLoader + type: Class + source: + remote: + path: src/OpenTK.Graphics/WGLLoader.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: WGLLoader + path: opentk/src/OpenTK.Graphics/WGLLoader.cs + startLine: 11 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics + syntax: + content: public static class WGLLoader + content.vb: Public Module WGLLoader + inheritance: + - System.Object + inheritedMembers: + - System.Object.Equals(System.Object) + - System.Object.Equals(System.Object,System.Object) + - System.Object.GetHashCode + - System.Object.GetType + - System.Object.MemberwiseClone + - System.Object.ReferenceEquals(System.Object,System.Object) + - System.Object.ToString +references: +- uid: OpenTK.Graphics + commentId: N:OpenTK.Graphics + href: OpenTK.html + name: OpenTK.Graphics + nameWithType: OpenTK.Graphics + fullName: OpenTK.Graphics + spec.csharp: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Graphics + name: Graphics + href: OpenTK.Graphics.html + spec.vb: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Graphics + name: Graphics + href: OpenTK.Graphics.html +- uid: System.Object + commentId: T:System.Object + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + name: object + nameWithType: object + fullName: object + nameWithType.vb: Object + fullName.vb: Object + name.vb: Object +- uid: System.Object.Equals(System.Object) + commentId: M:System.Object.Equals(System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + name: Equals(object) + nameWithType: object.Equals(object) + fullName: object.Equals(object) + nameWithType.vb: Object.Equals(Object) + fullName.vb: Object.Equals(Object) + name.vb: Equals(Object) + spec.csharp: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.Equals(System.Object,System.Object) + commentId: M:System.Object.Equals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + name: Equals(object, object) + nameWithType: object.Equals(object, object) + fullName: object.Equals(object, object) + nameWithType.vb: Object.Equals(Object, Object) + fullName.vb: Object.Equals(Object, Object) + name.vb: Equals(Object, Object) + spec.csharp: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.GetHashCode + commentId: M:System.Object.GetHashCode + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + name: GetHashCode() + nameWithType: object.GetHashCode() + fullName: object.GetHashCode() + nameWithType.vb: Object.GetHashCode() + fullName.vb: Object.GetHashCode() + spec.csharp: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) +- uid: System.Object.GetType + commentId: M:System.Object.GetType + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + name: GetType() + nameWithType: object.GetType() + fullName: object.GetType() + nameWithType.vb: Object.GetType() + fullName.vb: Object.GetType() + spec.csharp: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) +- uid: System.Object.MemberwiseClone + commentId: M:System.Object.MemberwiseClone + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + name: MemberwiseClone() + nameWithType: object.MemberwiseClone() + fullName: object.MemberwiseClone() + nameWithType.vb: Object.MemberwiseClone() + fullName.vb: Object.MemberwiseClone() + spec.csharp: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) + spec.vb: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) +- uid: System.Object.ReferenceEquals(System.Object,System.Object) + commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + name: ReferenceEquals(object, object) + nameWithType: object.ReferenceEquals(object, object) + fullName: object.ReferenceEquals(object, object) + nameWithType.vb: Object.ReferenceEquals(Object, Object) + fullName.vb: Object.ReferenceEquals(Object, Object) + name.vb: ReferenceEquals(Object, Object) + spec.csharp: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.ToString + commentId: M:System.Object.ToString + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + name: ToString() + nameWithType: object.ToString() + fullName: object.ToString() + nameWithType.vb: Object.ToString() + fullName.vb: Object.ToString() + spec.csharp: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) + spec.vb: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) +- uid: System + commentId: N:System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System + nameWithType: System + fullName: System diff --git a/api/OpenTK.Graphics.Wgl.ColorRef.yml b/api/OpenTK.Graphics.Wgl.ColorRef.yml index 2089ce90..26ad45ae 100644 --- a/api/OpenTK.Graphics.Wgl.ColorRef.yml +++ b/api/OpenTK.Graphics.Wgl.ColorRef.yml @@ -22,7 +22,7 @@ items: repo: https://github.com/opentk/opentk.git id: ColorRef path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 485 + startLine: 535 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -54,7 +54,7 @@ items: repo: https://github.com/opentk/opentk.git id: Red path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 489 + startLine: 539 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -81,7 +81,7 @@ items: repo: https://github.com/opentk/opentk.git id: Green path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 491 + startLine: 541 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -108,7 +108,7 @@ items: repo: https://github.com/opentk/opentk.git id: Blue path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 493 + startLine: 543 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl diff --git a/api/OpenTK.Graphics.Wgl.LayerPlaneDescriptor.yml b/api/OpenTK.Graphics.Wgl.LayerPlaneDescriptor.yml index 362f224c..fc47645e 100644 --- a/api/OpenTK.Graphics.Wgl.LayerPlaneDescriptor.yml +++ b/api/OpenTK.Graphics.Wgl.LayerPlaneDescriptor.yml @@ -43,7 +43,7 @@ items: repo: https://github.com/opentk/opentk.git id: LayerPlaneDescriptor path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 496 + startLine: 546 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -75,7 +75,7 @@ items: repo: https://github.com/opentk/opentk.git id: nSize path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 498 + startLine: 548 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -102,7 +102,7 @@ items: repo: https://github.com/opentk/opentk.git id: nVersion path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 499 + startLine: 549 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -129,7 +129,7 @@ items: repo: https://github.com/opentk/opentk.git id: dwFlags path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 500 + startLine: 550 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -156,7 +156,7 @@ items: repo: https://github.com/opentk/opentk.git id: iPixelType path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 501 + startLine: 551 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -183,7 +183,7 @@ items: repo: https://github.com/opentk/opentk.git id: cColorBits path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 502 + startLine: 552 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -210,7 +210,7 @@ items: repo: https://github.com/opentk/opentk.git id: cRedBits path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 503 + startLine: 553 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -237,7 +237,7 @@ items: repo: https://github.com/opentk/opentk.git id: cRedShift path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 504 + startLine: 554 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -264,7 +264,7 @@ items: repo: https://github.com/opentk/opentk.git id: cGreenBits path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 505 + startLine: 555 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -291,7 +291,7 @@ items: repo: https://github.com/opentk/opentk.git id: cGreenShift path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 506 + startLine: 556 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -318,7 +318,7 @@ items: repo: https://github.com/opentk/opentk.git id: cBlueBits path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 507 + startLine: 557 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -345,7 +345,7 @@ items: repo: https://github.com/opentk/opentk.git id: cBlueShift path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 508 + startLine: 558 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -372,7 +372,7 @@ items: repo: https://github.com/opentk/opentk.git id: cAlphaBits path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 509 + startLine: 559 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -399,7 +399,7 @@ items: repo: https://github.com/opentk/opentk.git id: cAlphaShift path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 510 + startLine: 560 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -426,7 +426,7 @@ items: repo: https://github.com/opentk/opentk.git id: cAccumBits path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 511 + startLine: 561 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -453,7 +453,7 @@ items: repo: https://github.com/opentk/opentk.git id: cAccumRedBits path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 512 + startLine: 562 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -480,7 +480,7 @@ items: repo: https://github.com/opentk/opentk.git id: cAccumGreenBits path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 513 + startLine: 563 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -507,7 +507,7 @@ items: repo: https://github.com/opentk/opentk.git id: cAccumBlueBits path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 514 + startLine: 564 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -534,7 +534,7 @@ items: repo: https://github.com/opentk/opentk.git id: cAccumAlphaBits path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 515 + startLine: 565 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -561,7 +561,7 @@ items: repo: https://github.com/opentk/opentk.git id: cDepthBits path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 516 + startLine: 566 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -588,7 +588,7 @@ items: repo: https://github.com/opentk/opentk.git id: cStencilBits path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 517 + startLine: 567 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -615,7 +615,7 @@ items: repo: https://github.com/opentk/opentk.git id: cAuxBuffers path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 518 + startLine: 568 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -642,7 +642,7 @@ items: repo: https://github.com/opentk/opentk.git id: iLayerPlane path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 519 + startLine: 569 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -669,7 +669,7 @@ items: repo: https://github.com/opentk/opentk.git id: bReserved path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 520 + startLine: 570 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -696,7 +696,7 @@ items: repo: https://github.com/opentk/opentk.git id: crTransparent path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 521 + startLine: 571 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl diff --git a/api/OpenTK.Graphics.Wgl.PixelFormatDescriptor.yml b/api/OpenTK.Graphics.Wgl.PixelFormatDescriptor.yml index a7573b21..643f096e 100644 --- a/api/OpenTK.Graphics.Wgl.PixelFormatDescriptor.yml +++ b/api/OpenTK.Graphics.Wgl.PixelFormatDescriptor.yml @@ -45,7 +45,7 @@ items: repo: https://github.com/opentk/opentk.git id: PixelFormatDescriptor path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 524 + startLine: 574 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -77,7 +77,7 @@ items: repo: https://github.com/opentk/opentk.git id: nSize path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 526 + startLine: 576 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -104,7 +104,7 @@ items: repo: https://github.com/opentk/opentk.git id: nVersion path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 527 + startLine: 577 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -131,7 +131,7 @@ items: repo: https://github.com/opentk/opentk.git id: dwFlags path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 528 + startLine: 578 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -158,7 +158,7 @@ items: repo: https://github.com/opentk/opentk.git id: iPixelType path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 529 + startLine: 579 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -185,7 +185,7 @@ items: repo: https://github.com/opentk/opentk.git id: cColorBits path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 530 + startLine: 580 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -212,7 +212,7 @@ items: repo: https://github.com/opentk/opentk.git id: cRedBits path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 531 + startLine: 581 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -239,7 +239,7 @@ items: repo: https://github.com/opentk/opentk.git id: cRedShift path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 532 + startLine: 582 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -266,7 +266,7 @@ items: repo: https://github.com/opentk/opentk.git id: cGreenBits path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 533 + startLine: 583 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -293,7 +293,7 @@ items: repo: https://github.com/opentk/opentk.git id: cGreenShift path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 534 + startLine: 584 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -320,7 +320,7 @@ items: repo: https://github.com/opentk/opentk.git id: cBlueBits path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 535 + startLine: 585 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -347,7 +347,7 @@ items: repo: https://github.com/opentk/opentk.git id: cBlueShift path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 536 + startLine: 586 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -374,7 +374,7 @@ items: repo: https://github.com/opentk/opentk.git id: cAlphaBits path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 537 + startLine: 587 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -401,7 +401,7 @@ items: repo: https://github.com/opentk/opentk.git id: cAlphaShift path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 538 + startLine: 588 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -428,7 +428,7 @@ items: repo: https://github.com/opentk/opentk.git id: cAccumBits path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 539 + startLine: 589 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -455,7 +455,7 @@ items: repo: https://github.com/opentk/opentk.git id: cAccumRedBits path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 540 + startLine: 590 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -482,7 +482,7 @@ items: repo: https://github.com/opentk/opentk.git id: cAccumGreenBits path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 541 + startLine: 591 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -509,7 +509,7 @@ items: repo: https://github.com/opentk/opentk.git id: cAccumBlueBits path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 542 + startLine: 592 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -536,7 +536,7 @@ items: repo: https://github.com/opentk/opentk.git id: cAccumAlphaBits path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 543 + startLine: 593 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -563,7 +563,7 @@ items: repo: https://github.com/opentk/opentk.git id: cDepthBits path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 544 + startLine: 594 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -590,7 +590,7 @@ items: repo: https://github.com/opentk/opentk.git id: cStencilBits path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 545 + startLine: 595 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -617,7 +617,7 @@ items: repo: https://github.com/opentk/opentk.git id: cAuxBuffers path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 546 + startLine: 596 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -644,7 +644,7 @@ items: repo: https://github.com/opentk/opentk.git id: iLayerType path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 547 + startLine: 597 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -671,7 +671,7 @@ items: repo: https://github.com/opentk/opentk.git id: bReserved path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 548 + startLine: 598 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -698,7 +698,7 @@ items: repo: https://github.com/opentk/opentk.git id: dwLayerMask path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 549 + startLine: 599 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -725,7 +725,7 @@ items: repo: https://github.com/opentk/opentk.git id: dwVisibleMask path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 550 + startLine: 600 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -752,7 +752,7 @@ items: repo: https://github.com/opentk/opentk.git id: dwDamageMask path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 551 + startLine: 601 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl diff --git a/api/OpenTK.Graphics.Wgl.Rect.yml b/api/OpenTK.Graphics.Wgl.Rect.yml index 5113bdf4..2996acb2 100644 --- a/api/OpenTK.Graphics.Wgl.Rect.yml +++ b/api/OpenTK.Graphics.Wgl.Rect.yml @@ -23,7 +23,7 @@ items: repo: https://github.com/opentk/opentk.git id: Rect path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 477 + startLine: 527 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -55,7 +55,7 @@ items: repo: https://github.com/opentk/opentk.git id: Left path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 479 + startLine: 529 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -82,7 +82,7 @@ items: repo: https://github.com/opentk/opentk.git id: Top path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 480 + startLine: 530 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -109,7 +109,7 @@ items: repo: https://github.com/opentk/opentk.git id: Right path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 481 + startLine: 531 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -136,7 +136,7 @@ items: repo: https://github.com/opentk/opentk.git id: Bottom path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 482 + startLine: 532 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl diff --git a/api/OpenTK.Graphics.Wgl.Wgl.yml b/api/OpenTK.Graphics.Wgl.Wgl.yml index 6486034a..30f40736 100644 --- a/api/OpenTK.Graphics.Wgl.Wgl.yml +++ b/api/OpenTK.Graphics.Wgl.Wgl.yml @@ -34,7 +34,7 @@ items: - OpenTK.Graphics.Wgl.Wgl.GetLayerPaletteEntries(System.IntPtr,System.Int32,System.Int32,System.Int32,OpenTK.Graphics.Wgl.ColorRef@) - OpenTK.Graphics.Wgl.Wgl.GetLayerPaletteEntries(System.IntPtr,System.Int32,System.Int32,System.Span{OpenTK.Graphics.Wgl.ColorRef}) - OpenTK.Graphics.Wgl.Wgl.GetPixelFormat(System.IntPtr) - - OpenTK.Graphics.Wgl.Wgl.GetProcAddress(System.Char*) + - OpenTK.Graphics.Wgl.Wgl.GetProcAddress(System.Byte*) - OpenTK.Graphics.Wgl.Wgl.GetProcAddress(System.String) - OpenTK.Graphics.Wgl.Wgl.MakeCurrent(System.IntPtr,System.IntPtr) - OpenTK.Graphics.Wgl.Wgl.MakeCurrent_(System.IntPtr,System.IntPtr) @@ -551,16 +551,16 @@ items: nameWithType.vb: Wgl.GetPixelFormat(IntPtr) fullName.vb: OpenTK.Graphics.Wgl.Wgl.GetPixelFormat(System.IntPtr) name.vb: GetPixelFormat(IntPtr) -- uid: OpenTK.Graphics.Wgl.Wgl.GetProcAddress(System.Char*) - commentId: M:OpenTK.Graphics.Wgl.Wgl.GetProcAddress(System.Char*) - id: GetProcAddress(System.Char*) +- uid: OpenTK.Graphics.Wgl.Wgl.GetProcAddress(System.Byte*) + commentId: M:OpenTK.Graphics.Wgl.Wgl.GetProcAddress(System.Byte*) + id: GetProcAddress(System.Byte*) parent: OpenTK.Graphics.Wgl.Wgl langs: - csharp - vb - name: GetProcAddress(char*) - nameWithType: Wgl.GetProcAddress(char*) - fullName: OpenTK.Graphics.Wgl.Wgl.GetProcAddress(char*) + name: GetProcAddress(byte*) + nameWithType: Wgl.GetProcAddress(byte*) + fullName: OpenTK.Graphics.Wgl.Wgl.GetProcAddress(byte*) type: Method source: remote: @@ -576,17 +576,17 @@ items: summary: '[requires: v1.0] [entry point: wglGetProcAddress]
' example: [] syntax: - content: public static nint GetProcAddress(char* lpszProc) + content: public static nint GetProcAddress(byte* lpszProc) parameters: - id: lpszProc - type: System.Char* + type: System.Byte* return: type: System.IntPtr - content.vb: Public Shared Function GetProcAddress(lpszProc As Char*) As IntPtr + content.vb: Public Shared Function GetProcAddress(lpszProc As Byte*) As IntPtr overload: OpenTK.Graphics.Wgl.Wgl.GetProcAddress* - nameWithType.vb: Wgl.GetProcAddress(Char*) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.GetProcAddress(Char*) - name.vb: GetProcAddress(Char*) + nameWithType.vb: Wgl.GetProcAddress(Byte*) + fullName.vb: OpenTK.Graphics.Wgl.Wgl.GetProcAddress(Byte*) + name.vb: GetProcAddress(Byte*) - uid: OpenTK.Graphics.Wgl.Wgl.MakeCurrent_(System.IntPtr,System.IntPtr) commentId: M:OpenTK.Graphics.Wgl.Wgl.MakeCurrent_(System.IntPtr,System.IntPtr) id: MakeCurrent_(System.IntPtr,System.IntPtr) @@ -3140,30 +3140,30 @@ references: fullName: OpenTK.Graphics.Wgl.Wgl.GetPixelFormat - uid: OpenTK.Graphics.Wgl.Wgl.GetProcAddress* commentId: Overload:OpenTK.Graphics.Wgl.Wgl.GetProcAddress - href: OpenTK.Graphics.Wgl.Wgl.html#OpenTK_Graphics_Wgl_Wgl_GetProcAddress_System_Char__ + href: OpenTK.Graphics.Wgl.Wgl.html#OpenTK_Graphics_Wgl_Wgl_GetProcAddress_System_Byte__ name: GetProcAddress nameWithType: Wgl.GetProcAddress fullName: OpenTK.Graphics.Wgl.Wgl.GetProcAddress -- uid: System.Char* +- uid: System.Byte* isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.char - name: char* - nameWithType: char* - fullName: char* - nameWithType.vb: Char* - fullName.vb: Char* - name.vb: Char* + href: https://learn.microsoft.com/dotnet/api/system.byte + name: byte* + nameWithType: byte* + fullName: byte* + nameWithType.vb: Byte* + fullName.vb: Byte* + name.vb: Byte* spec.csharp: - - uid: System.Char - name: char + - uid: System.Byte + name: byte isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.char + href: https://learn.microsoft.com/dotnet/api/system.byte - name: '*' spec.vb: - - uid: System.Char - name: Char + - uid: System.Byte + name: Byte isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.char + href: https://learn.microsoft.com/dotnet/api/system.byte - name: '*' - uid: OpenTK.Graphics.Wgl.Wgl.MakeCurrent_* commentId: Overload:OpenTK.Graphics.Wgl.Wgl.MakeCurrent_ diff --git a/api/OpenTK.Graphics.Wgl.WglPointers.yml b/api/OpenTK.Graphics.Wgl.WglPointers.yml index 87cbe694..7b52627e 100644 --- a/api/OpenTK.Graphics.Wgl.WglPointers.yml +++ b/api/OpenTK.Graphics.Wgl.WglPointers.yml @@ -2818,9 +2818,9 @@ items: summary: '[entry point: wglGetProcAddress]' example: [] syntax: - content: public static delegate* unmanaged _wglGetProcAddress_fnptr + content: public static delegate* unmanaged _wglGetProcAddress_fnptr return: - type: delegate* unmanaged + type: delegate* unmanaged content.vb: 'Public Shared _wglGetProcAddress_fnptr As ' - uid: OpenTK.Graphics.Wgl.WglPointers._wglGetSwapIntervalEXT_fnptr commentId: F:OpenTK.Graphics.Wgl.WglPointers._wglGetSwapIntervalEXT_fnptr @@ -6696,22 +6696,22 @@ references: isExternal: true href: https://learn.microsoft.com/dotnet/api/system.int32 - name: '>' -- uid: delegate* unmanaged +- uid: delegate* unmanaged isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.char - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged + href: https://learn.microsoft.com/dotnet/api/system.byte + name: delegate* unmanaged + nameWithType: delegate* unmanaged + fullName: delegate* unmanaged spec.csharp: - name: delegate - name: '*' - name: " " - name: unmanaged - name: < - - uid: System.Char - name: char + - uid: System.Byte + name: byte isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.char + href: https://learn.microsoft.com/dotnet/api/system.byte - name: '*' - name: ',' - name: " " diff --git a/api/OpenTK.Graphics.Wgl._GPU_DEVICE.yml b/api/OpenTK.Graphics.Wgl._GPU_DEVICE.yml index f3461606..bd76fdf1 100644 --- a/api/OpenTK.Graphics.Wgl._GPU_DEVICE.yml +++ b/api/OpenTK.Graphics.Wgl._GPU_DEVICE.yml @@ -24,7 +24,7 @@ items: repo: https://github.com/opentk/opentk.git id: _GPU_DEVICE path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 554 + startLine: 604 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -56,7 +56,7 @@ items: repo: https://github.com/opentk/opentk.git id: cb path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 556 + startLine: 606 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -83,7 +83,7 @@ items: repo: https://github.com/opentk/opentk.git id: DeviceName path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 557 + startLine: 607 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -110,7 +110,7 @@ items: repo: https://github.com/opentk/opentk.git id: DeviceString path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 558 + startLine: 608 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -137,7 +137,7 @@ items: repo: https://github.com/opentk/opentk.git id: Flags path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 559 + startLine: 609 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -164,7 +164,7 @@ items: repo: https://github.com/opentk/opentk.git id: rcVirtualScreen path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 560 + startLine: 610 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl diff --git a/api/OpenTK.Graphics.yml b/api/OpenTK.Graphics.yml index fb5badc7..f34d8a2e 100644 --- a/api/OpenTK.Graphics.yml +++ b/api/OpenTK.Graphics.yml @@ -12,6 +12,8 @@ items: - OpenTK.Graphics.GLHandleARB - OpenTK.Graphics.GLLoader - OpenTK.Graphics.GLSync + - OpenTK.Graphics.GLXLoader + - OpenTK.Graphics.GLXLoader.BindingsContext - OpenTK.Graphics.PerfQueryHandle - OpenTK.Graphics.ProgramHandle - OpenTK.Graphics.ProgramPipelineHandle @@ -23,6 +25,8 @@ items: - OpenTK.Graphics.TextureHandle - OpenTK.Graphics.TransformFeedbackHandle - OpenTK.Graphics.VertexArrayHandle + - OpenTK.Graphics.WGLLoader + - OpenTK.Graphics.WGLLoader.BindingsContext langs: - csharp - vb @@ -39,6 +43,34 @@ references: name: GLLoader nameWithType: GLLoader fullName: OpenTK.Graphics.GLLoader +- uid: OpenTK.Graphics.GLXLoader + commentId: T:OpenTK.Graphics.GLXLoader + href: OpenTK.Graphics.GLXLoader.html + name: GLXLoader + nameWithType: GLXLoader + fullName: OpenTK.Graphics.GLXLoader +- uid: OpenTK.Graphics.GLXLoader.BindingsContext + commentId: T:OpenTK.Graphics.GLXLoader.BindingsContext + href: OpenTK.Graphics.GLXLoader.html + name: GLXLoader.BindingsContext + nameWithType: GLXLoader.BindingsContext + fullName: OpenTK.Graphics.GLXLoader.BindingsContext + spec.csharp: + - uid: OpenTK.Graphics.GLXLoader + name: GLXLoader + href: OpenTK.Graphics.GLXLoader.html + - name: . + - uid: OpenTK.Graphics.GLXLoader.BindingsContext + name: BindingsContext + href: OpenTK.Graphics.GLXLoader.BindingsContext.html + spec.vb: + - uid: OpenTK.Graphics.GLXLoader + name: GLXLoader + href: OpenTK.Graphics.GLXLoader.html + - name: . + - uid: OpenTK.Graphics.GLXLoader.BindingsContext + name: BindingsContext + href: OpenTK.Graphics.GLXLoader.BindingsContext.html - uid: OpenTK.Graphics.SpecialNumbers commentId: T:OpenTK.Graphics.SpecialNumbers href: OpenTK.Graphics.SpecialNumbers.html @@ -164,6 +196,34 @@ references: name: PerfQueryHandle nameWithType: PerfQueryHandle fullName: OpenTK.Graphics.PerfQueryHandle +- uid: OpenTK.Graphics.WGLLoader + commentId: T:OpenTK.Graphics.WGLLoader + href: OpenTK.Graphics.WGLLoader.html + name: WGLLoader + nameWithType: WGLLoader + fullName: OpenTK.Graphics.WGLLoader +- uid: OpenTK.Graphics.WGLLoader.BindingsContext + commentId: T:OpenTK.Graphics.WGLLoader.BindingsContext + href: OpenTK.Graphics.WGLLoader.html + name: WGLLoader.BindingsContext + nameWithType: WGLLoader.BindingsContext + fullName: OpenTK.Graphics.WGLLoader.BindingsContext + spec.csharp: + - uid: OpenTK.Graphics.WGLLoader + name: WGLLoader + href: OpenTK.Graphics.WGLLoader.html + - name: . + - uid: OpenTK.Graphics.WGLLoader.BindingsContext + name: BindingsContext + href: OpenTK.Graphics.WGLLoader.BindingsContext.html + spec.vb: + - uid: OpenTK.Graphics.WGLLoader + name: WGLLoader + href: OpenTK.Graphics.WGLLoader.html + - name: . + - uid: OpenTK.Graphics.WGLLoader.BindingsContext + name: BindingsContext + href: OpenTK.Graphics.WGLLoader.BindingsContext.html - uid: OpenTK.Graphics commentId: N:OpenTK.Graphics href: OpenTK.html diff --git a/api/OpenTK.IBindingsContext.yml b/api/OpenTK.IBindingsContext.yml index 5e0cb671..e88d650b 100644 --- a/api/OpenTK.IBindingsContext.yml +++ b/api/OpenTK.IBindingsContext.yml @@ -20,12 +20,63 @@ items: repo: https://github.com/opentk/opentk.git id: IBindingsContext path: opentk/src/OpenTK.Core/Context/IBindingsContext.cs - startLine: 7 + startLine: 45 assemblies: - OpenTK.Core namespace: OpenTK summary: Provides methods for querying available functions in a bindings context. - example: [] + remarks: >- + If you wish to use OpenTK OpenGL bindings in a custom environment see + + the example for a tutorial on its usage. + example: + - >- + In order to use this interface, you need to figure out how to load OpenGL + + function pointers in your custom environment. For example, if you are + + providing a custom window using SDL, you would use the C function + + SDL_GL_GetProcAddress to implement this interface. + + +
using System;
+
+    using System.Runtime.InteropServices;
+
+    using OpenTK;
+
+    using OpenTK.Graphics.OpenGL4;
+
+
+    public class MySDLBindingsContext : IBindingsContext
+
+    {
+        public IntPtr GetProcAddress(string procName)
+        {
+            [DllImport("SDL2")]
+            extern static IntPtr SDL_GL_GetProcAddress([MarshalAs(UnmanagedType.LPStr)] string procName);
+
+            return SDL_GL_GetProcAddress(procName);
+        }
+    }
+
+
+    /// ...
+
+
+    // In order to load the bindings, call the following function with this
+
+    // new class you implemented.
+
+    GL.LoadBindings(new MySDLBindingsContext());
+ + + Do note that every OpenTK.Graphics.XXX namespace has its own pointer table. + + If you have mixed and matched the namespaces used in your project, you might + + run into exceptions telling you that the bindings are not loaded. syntax: content: public interface IBindingsContext content.vb: Public Interface IBindingsContext @@ -47,7 +98,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetProcAddress path: opentk/src/OpenTK.Core/Context/IBindingsContext.cs - startLine: 22 + startLine: 60 assemblies: - OpenTK.Core namespace: OpenTK diff --git a/api/OpenTK.Input.Hid.HidGenericDesktopUsage.yml b/api/OpenTK.Input.Hid.HidGenericDesktopUsage.yml index 68e25fd7..9bd21c3d 100644 --- a/api/OpenTK.Input.Hid.HidGenericDesktopUsage.yml +++ b/api/OpenTK.Input.Hid.HidGenericDesktopUsage.yml @@ -1346,7 +1346,7 @@ items: assemblies: - OpenTK.Input namespace: OpenTK.Input.Hid - summary: Indicates that bottom of a Direction Pad is pressed + summary: Indicates that bottom of a Direction Pad is pressed. example: [] syntax: content: DPadDown = 145 @@ -1374,7 +1374,7 @@ items: assemblies: - OpenTK.Input namespace: OpenTK.Input.Hid - summary: Indicates that right side of a Direction Pad is pressed + summary: Indicates that right side of a Direction Pad is pressed. example: [] syntax: content: DPadRight = 146 @@ -1402,7 +1402,7 @@ items: assemblies: - OpenTK.Input namespace: OpenTK.Input.Hid - summary: Indicates that left side of a Direction Pad is pressed + summary: Indicates that left side of a Direction Pad is pressed. example: [] syntax: content: DPadLeft = 147 diff --git a/api/OpenTK.Mathematics.Box2.yml b/api/OpenTK.Mathematics.Box2.yml index 1d1f6aec..7a78ddda 100644 --- a/api/OpenTK.Mathematics.Box2.yml +++ b/api/OpenTK.Mathematics.Box2.yml @@ -1705,32 +1705,23 @@ items: repo: https://github.com/opentk/opentk.git id: Inflate path: opentk/src/OpenTK.Mathematics/Geometry/Box2.cs - startLine: 557 + startLine: 558 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics - summary: Inflate this Box2 to encapsulate a given point. + summary: >- + Inflates this Box2 by the given size in all directions. A negative size will shrink the box to a maximum of -HalfSize. + + Use the method for the point-encapsulation functionality in OpenTK version 4.8.1 and earlier. example: [] syntax: - content: >- - [Obsolete("Use Extend instead. This function will have it's implementation changed in the future.")] - - public void Inflate(Vector2 point) + content: public void Inflate(Vector2 size) parameters: - - id: point + - id: size type: OpenTK.Mathematics.Vector2 - description: The point to inflate to. - content.vb: >- - - - Public Sub Inflate(point As Vector2) + description: The size to inflate by. + content.vb: Public Sub Inflate(size As Vector2) overload: OpenTK.Mathematics.Box2.Inflate* - attributes: - - type: System.ObsoleteAttribute - ctor: System.ObsoleteAttribute.#ctor(System.String) - arguments: - - type: System.String - value: Use Extend instead. This function will have it's implementation changed in the future. - uid: OpenTK.Mathematics.Box2.Inflated(OpenTK.Mathematics.Vector2) commentId: M:OpenTK.Mathematics.Box2.Inflated(OpenTK.Mathematics.Vector2) id: Inflated(OpenTK.Mathematics.Vector2) @@ -1749,42 +1740,36 @@ items: repo: https://github.com/opentk/opentk.git id: Inflated path: opentk/src/OpenTK.Mathematics/Geometry/Box2.cs - startLine: 569 + startLine: 573 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics - summary: Inflate this Box2 to encapsulate a given point. + summary: >- + Inflates this Box2 by the given size in all directions. A negative size will shrink the box to a maximum of -HalfSize. + + Use the method for the point-encapsulation functionality in OpenTK version 4.8.1 and earlier. example: [] syntax: content: >- [Pure] - [Obsolete("Use Extended instead. This function will have it's implementation changed in the future.")] - - public Box2 Inflated(Vector2 point) + public Box2 Inflated(Vector2 size) parameters: - - id: point + - id: size type: OpenTK.Mathematics.Vector2 - description: The point to inflate to. + description: The size to inflate by. return: type: OpenTK.Mathematics.Box2 description: The inflated box. content.vb: >- - - - Public Function Inflated(point As Vector2) As Box2 + Public Function Inflated(size As Vector2) As Box2 overload: OpenTK.Mathematics.Box2.Inflated* attributes: - type: System.Diagnostics.Contracts.PureAttribute ctor: System.Diagnostics.Contracts.PureAttribute.#ctor arguments: [] - - type: System.ObsoleteAttribute - ctor: System.ObsoleteAttribute.#ctor(System.String) - arguments: - - type: System.String - value: Use Extended instead. This function will have it's implementation changed in the future. - uid: OpenTK.Mathematics.Box2.Extend(OpenTK.Mathematics.Vector2) commentId: M:OpenTK.Mathematics.Box2.Extend(OpenTK.Mathematics.Vector2) id: Extend(OpenTK.Mathematics.Vector2) @@ -1803,7 +1788,7 @@ items: repo: https://github.com/opentk/opentk.git id: Extend path: opentk/src/OpenTK.Mathematics/Geometry/Box2.cs - startLine: 583 + startLine: 586 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1835,7 +1820,7 @@ items: repo: https://github.com/opentk/opentk.git id: Extended path: opentk/src/OpenTK.Mathematics/Geometry/Box2.cs - startLine: 594 + startLine: 597 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1880,7 +1865,7 @@ items: repo: https://github.com/opentk/opentk.git id: op_Equality path: opentk/src/OpenTK.Mathematics/Geometry/Box2.cs - startLine: 608 + startLine: 611 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1920,7 +1905,7 @@ items: repo: https://github.com/opentk/opentk.git id: op_Inequality path: opentk/src/OpenTK.Mathematics/Geometry/Box2.cs - startLine: 618 + startLine: 621 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1960,7 +1945,7 @@ items: repo: https://github.com/opentk/opentk.git id: op_Explicit path: opentk/src/OpenTK.Mathematics/Geometry/Box2.cs - startLine: 627 + startLine: 630 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2007,7 +1992,7 @@ items: repo: https://github.com/opentk/opentk.git id: Equals path: opentk/src/OpenTK.Mathematics/Geometry/Box2.cs - startLine: 634 + startLine: 637 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2046,7 +2031,7 @@ items: repo: https://github.com/opentk/opentk.git id: Equals path: opentk/src/OpenTK.Mathematics/Geometry/Box2.cs - startLine: 640 + startLine: 643 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2083,7 +2068,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetHashCode path: opentk/src/OpenTK.Mathematics/Geometry/Box2.cs - startLine: 647 + startLine: 650 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2115,7 +2100,7 @@ items: repo: https://github.com/opentk/opentk.git id: ToString path: opentk/src/OpenTK.Mathematics/Geometry/Box2.cs - startLine: 653 + startLine: 656 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2147,7 +2132,7 @@ items: repo: https://github.com/opentk/opentk.git id: ToString path: opentk/src/OpenTK.Mathematics/Geometry/Box2.cs - startLine: 659 + startLine: 662 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2190,7 +2175,7 @@ items: repo: https://github.com/opentk/opentk.git id: ToString path: opentk/src/OpenTK.Mathematics/Geometry/Box2.cs - startLine: 665 + startLine: 668 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2230,7 +2215,7 @@ items: repo: https://github.com/opentk/opentk.git id: ToString path: opentk/src/OpenTK.Mathematics/Geometry/Box2.cs - startLine: 671 + startLine: 674 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2757,12 +2742,60 @@ references: name: Scaled nameWithType: Box2.Scaled fullName: OpenTK.Mathematics.Box2.Scaled +- uid: OpenTK.Mathematics.Box2.Extend(OpenTK.Mathematics.Vector2) + commentId: M:OpenTK.Mathematics.Box2.Extend(OpenTK.Mathematics.Vector2) + href: OpenTK.Mathematics.Box2.html#OpenTK_Mathematics_Box2_Extend_OpenTK_Mathematics_Vector2_ + name: Extend(Vector2) + nameWithType: Box2.Extend(Vector2) + fullName: OpenTK.Mathematics.Box2.Extend(OpenTK.Mathematics.Vector2) + spec.csharp: + - uid: OpenTK.Mathematics.Box2.Extend(OpenTK.Mathematics.Vector2) + name: Extend + href: OpenTK.Mathematics.Box2.html#OpenTK_Mathematics_Box2_Extend_OpenTK_Mathematics_Vector2_ + - name: ( + - uid: OpenTK.Mathematics.Vector2 + name: Vector2 + href: OpenTK.Mathematics.Vector2.html + - name: ) + spec.vb: + - uid: OpenTK.Mathematics.Box2.Extend(OpenTK.Mathematics.Vector2) + name: Extend + href: OpenTK.Mathematics.Box2.html#OpenTK_Mathematics_Box2_Extend_OpenTK_Mathematics_Vector2_ + - name: ( + - uid: OpenTK.Mathematics.Vector2 + name: Vector2 + href: OpenTK.Mathematics.Vector2.html + - name: ) - uid: OpenTK.Mathematics.Box2.Inflate* commentId: Overload:OpenTK.Mathematics.Box2.Inflate href: OpenTK.Mathematics.Box2.html#OpenTK_Mathematics_Box2_Inflate_OpenTK_Mathematics_Vector2_ name: Inflate nameWithType: Box2.Inflate fullName: OpenTK.Mathematics.Box2.Inflate +- uid: OpenTK.Mathematics.Box2.Extended(OpenTK.Mathematics.Vector2) + commentId: M:OpenTK.Mathematics.Box2.Extended(OpenTK.Mathematics.Vector2) + href: OpenTK.Mathematics.Box2.html#OpenTK_Mathematics_Box2_Extended_OpenTK_Mathematics_Vector2_ + name: Extended(Vector2) + nameWithType: Box2.Extended(Vector2) + fullName: OpenTK.Mathematics.Box2.Extended(OpenTK.Mathematics.Vector2) + spec.csharp: + - uid: OpenTK.Mathematics.Box2.Extended(OpenTK.Mathematics.Vector2) + name: Extended + href: OpenTK.Mathematics.Box2.html#OpenTK_Mathematics_Box2_Extended_OpenTK_Mathematics_Vector2_ + - name: ( + - uid: OpenTK.Mathematics.Vector2 + name: Vector2 + href: OpenTK.Mathematics.Vector2.html + - name: ) + spec.vb: + - uid: OpenTK.Mathematics.Box2.Extended(OpenTK.Mathematics.Vector2) + name: Extended + href: OpenTK.Mathematics.Box2.html#OpenTK_Mathematics_Box2_Extended_OpenTK_Mathematics_Vector2_ + - name: ( + - uid: OpenTK.Mathematics.Vector2 + name: Vector2 + href: OpenTK.Mathematics.Vector2.html + - name: ) - uid: OpenTK.Mathematics.Box2.Inflated* commentId: Overload:OpenTK.Mathematics.Box2.Inflated href: OpenTK.Mathematics.Box2.html#OpenTK_Mathematics_Box2_Inflated_OpenTK_Mathematics_Vector2_ diff --git a/api/OpenTK.Mathematics.Box2d.yml b/api/OpenTK.Mathematics.Box2d.yml index 0b258a0c..1afb7b99 100644 --- a/api/OpenTK.Mathematics.Box2d.yml +++ b/api/OpenTK.Mathematics.Box2d.yml @@ -1704,32 +1704,23 @@ items: repo: https://github.com/opentk/opentk.git id: Inflate path: opentk/src/OpenTK.Mathematics/Geometry/Box2d.cs - startLine: 557 + startLine: 558 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics - summary: Inflate this Box2d to encapsulate a given point. + summary: >- + Inflates this Box2d by the given size in all directions. A negative size will shrink the box to a maximum of -HalfSize. + + Use the method for the point-encapsulation functionality in OpenTK version 4.8.1 and earlier. example: [] syntax: - content: >- - [Obsolete("Use Extend instead. This function will have it's implementation changed in the future.")] - - public void Inflate(Vector2d point) + content: public void Inflate(Vector2d size) parameters: - - id: point + - id: size type: OpenTK.Mathematics.Vector2d - description: The point to query. - content.vb: >- - - - Public Sub Inflate(point As Vector2d) + description: The size to inflate by. + content.vb: Public Sub Inflate(size As Vector2d) overload: OpenTK.Mathematics.Box2d.Inflate* - attributes: - - type: System.ObsoleteAttribute - ctor: System.ObsoleteAttribute.#ctor(System.String) - arguments: - - type: System.String - value: Use Extend instead. This function will have it's implementation changed in the future. - uid: OpenTK.Mathematics.Box2d.Inflated(OpenTK.Mathematics.Vector2d) commentId: M:OpenTK.Mathematics.Box2d.Inflated(OpenTK.Mathematics.Vector2d) id: Inflated(OpenTK.Mathematics.Vector2d) @@ -1748,42 +1739,36 @@ items: repo: https://github.com/opentk/opentk.git id: Inflated path: opentk/src/OpenTK.Mathematics/Geometry/Box2d.cs - startLine: 569 + startLine: 571 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics - summary: Inflate this Box2d to encapsulate a given point. + summary: >- + Inflates this Box2d by the given size in all directions. A negative size will shrink the box to a maximum of -HalfSize. + + Use the method for the point-encapsulation functionality in OpenTK version 4.8.1 and earlier. example: [] syntax: content: >- [Pure] - [Obsolete("Use Extended instead. This function will have it's implementation changed in the future.")] - - public Box2d Inflated(Vector2d point) + public Box2d Inflated(Vector2d size) parameters: - - id: point + - id: size type: OpenTK.Mathematics.Vector2d - description: The point to query. + description: The size to inflate by. return: type: OpenTK.Mathematics.Box2d description: The inflated box. content.vb: >- - - - Public Function Inflated(point As Vector2d) As Box2d + Public Function Inflated(size As Vector2d) As Box2d overload: OpenTK.Mathematics.Box2d.Inflated* attributes: - type: System.Diagnostics.Contracts.PureAttribute ctor: System.Diagnostics.Contracts.PureAttribute.#ctor arguments: [] - - type: System.ObsoleteAttribute - ctor: System.ObsoleteAttribute.#ctor(System.String) - arguments: - - type: System.String - value: Use Extended instead. This function will have it's implementation changed in the future. - uid: OpenTK.Mathematics.Box2d.Extend(OpenTK.Mathematics.Vector2d) commentId: M:OpenTK.Mathematics.Box2d.Extend(OpenTK.Mathematics.Vector2d) id: Extend(OpenTK.Mathematics.Vector2d) @@ -1802,7 +1787,7 @@ items: repo: https://github.com/opentk/opentk.git id: Extend path: opentk/src/OpenTK.Mathematics/Geometry/Box2d.cs - startLine: 583 + startLine: 584 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1834,7 +1819,7 @@ items: repo: https://github.com/opentk/opentk.git id: Extended path: opentk/src/OpenTK.Mathematics/Geometry/Box2d.cs - startLine: 594 + startLine: 595 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1879,7 +1864,7 @@ items: repo: https://github.com/opentk/opentk.git id: op_Equality path: opentk/src/OpenTK.Mathematics/Geometry/Box2d.cs - startLine: 608 + startLine: 609 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1919,7 +1904,7 @@ items: repo: https://github.com/opentk/opentk.git id: op_Inequality path: opentk/src/OpenTK.Mathematics/Geometry/Box2d.cs - startLine: 618 + startLine: 619 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1959,7 +1944,7 @@ items: repo: https://github.com/opentk/opentk.git id: Equals path: opentk/src/OpenTK.Mathematics/Geometry/Box2d.cs - startLine: 624 + startLine: 625 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1998,7 +1983,7 @@ items: repo: https://github.com/opentk/opentk.git id: Equals path: opentk/src/OpenTK.Mathematics/Geometry/Box2d.cs - startLine: 630 + startLine: 631 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2035,7 +2020,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetHashCode path: opentk/src/OpenTK.Mathematics/Geometry/Box2d.cs - startLine: 637 + startLine: 638 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2067,7 +2052,7 @@ items: repo: https://github.com/opentk/opentk.git id: ToString path: opentk/src/OpenTK.Mathematics/Geometry/Box2d.cs - startLine: 643 + startLine: 644 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2099,7 +2084,7 @@ items: repo: https://github.com/opentk/opentk.git id: ToString path: opentk/src/OpenTK.Mathematics/Geometry/Box2d.cs - startLine: 649 + startLine: 650 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2142,7 +2127,7 @@ items: repo: https://github.com/opentk/opentk.git id: ToString path: opentk/src/OpenTK.Mathematics/Geometry/Box2d.cs - startLine: 655 + startLine: 656 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2182,7 +2167,7 @@ items: repo: https://github.com/opentk/opentk.git id: ToString path: opentk/src/OpenTK.Mathematics/Geometry/Box2d.cs - startLine: 661 + startLine: 662 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2716,12 +2701,60 @@ references: name: Scaled nameWithType: Box2d.Scaled fullName: OpenTK.Mathematics.Box2d.Scaled +- uid: OpenTK.Mathematics.Box2d.Extend(OpenTK.Mathematics.Vector2d) + commentId: M:OpenTK.Mathematics.Box2d.Extend(OpenTK.Mathematics.Vector2d) + href: OpenTK.Mathematics.Box2d.html#OpenTK_Mathematics_Box2d_Extend_OpenTK_Mathematics_Vector2d_ + name: Extend(Vector2d) + nameWithType: Box2d.Extend(Vector2d) + fullName: OpenTK.Mathematics.Box2d.Extend(OpenTK.Mathematics.Vector2d) + spec.csharp: + - uid: OpenTK.Mathematics.Box2d.Extend(OpenTK.Mathematics.Vector2d) + name: Extend + href: OpenTK.Mathematics.Box2d.html#OpenTK_Mathematics_Box2d_Extend_OpenTK_Mathematics_Vector2d_ + - name: ( + - uid: OpenTK.Mathematics.Vector2d + name: Vector2d + href: OpenTK.Mathematics.Vector2d.html + - name: ) + spec.vb: + - uid: OpenTK.Mathematics.Box2d.Extend(OpenTK.Mathematics.Vector2d) + name: Extend + href: OpenTK.Mathematics.Box2d.html#OpenTK_Mathematics_Box2d_Extend_OpenTK_Mathematics_Vector2d_ + - name: ( + - uid: OpenTK.Mathematics.Vector2d + name: Vector2d + href: OpenTK.Mathematics.Vector2d.html + - name: ) - uid: OpenTK.Mathematics.Box2d.Inflate* commentId: Overload:OpenTK.Mathematics.Box2d.Inflate href: OpenTK.Mathematics.Box2d.html#OpenTK_Mathematics_Box2d_Inflate_OpenTK_Mathematics_Vector2d_ name: Inflate nameWithType: Box2d.Inflate fullName: OpenTK.Mathematics.Box2d.Inflate +- uid: OpenTK.Mathematics.Box2d.Extended(OpenTK.Mathematics.Vector2d) + commentId: M:OpenTK.Mathematics.Box2d.Extended(OpenTK.Mathematics.Vector2d) + href: OpenTK.Mathematics.Box2d.html#OpenTK_Mathematics_Box2d_Extended_OpenTK_Mathematics_Vector2d_ + name: Extended(Vector2d) + nameWithType: Box2d.Extended(Vector2d) + fullName: OpenTK.Mathematics.Box2d.Extended(OpenTK.Mathematics.Vector2d) + spec.csharp: + - uid: OpenTK.Mathematics.Box2d.Extended(OpenTK.Mathematics.Vector2d) + name: Extended + href: OpenTK.Mathematics.Box2d.html#OpenTK_Mathematics_Box2d_Extended_OpenTK_Mathematics_Vector2d_ + - name: ( + - uid: OpenTK.Mathematics.Vector2d + name: Vector2d + href: OpenTK.Mathematics.Vector2d.html + - name: ) + spec.vb: + - uid: OpenTK.Mathematics.Box2d.Extended(OpenTK.Mathematics.Vector2d) + name: Extended + href: OpenTK.Mathematics.Box2d.html#OpenTK_Mathematics_Box2d_Extended_OpenTK_Mathematics_Vector2d_ + - name: ( + - uid: OpenTK.Mathematics.Vector2d + name: Vector2d + href: OpenTK.Mathematics.Vector2d.html + - name: ) - uid: OpenTK.Mathematics.Box2d.Inflated* commentId: Overload:OpenTK.Mathematics.Box2d.Inflated href: OpenTK.Mathematics.Box2d.html#OpenTK_Mathematics_Box2d_Inflated_OpenTK_Mathematics_Vector2d_ diff --git a/api/OpenTK.Mathematics.Box2i.yml b/api/OpenTK.Mathematics.Box2i.yml index 75f953a1..1beac319 100644 --- a/api/OpenTK.Mathematics.Box2i.yml +++ b/api/OpenTK.Mathematics.Box2i.yml @@ -1600,32 +1600,23 @@ items: repo: https://github.com/opentk/opentk.git id: Inflate path: opentk/src/OpenTK.Mathematics/Geometry/Box2i.cs - startLine: 498 + startLine: 499 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics - summary: Inflate this Box2i to encapsulate a given point. + summary: >- + Inflates this Box2i by the given size in all directions. A negative size will shrink the box to a maximum of -HalfSize. + + Use the method for the point-encapsulation functionality in OpenTK version 4.8.1 and earlier. example: [] syntax: - content: >- - [Obsolete("Use Extend instead. This function will have it's implementation changed in the future.")] - - public void Inflate(Vector2i point) + content: public void Inflate(Vector2i size) parameters: - - id: point + - id: size type: OpenTK.Mathematics.Vector2i - description: The point to query. - content.vb: >- - - - Public Sub Inflate(point As Vector2i) + description: The size to inflate by. + content.vb: Public Sub Inflate(size As Vector2i) overload: OpenTK.Mathematics.Box2i.Inflate* - attributes: - - type: System.ObsoleteAttribute - ctor: System.ObsoleteAttribute.#ctor(System.String) - arguments: - - type: System.String - value: Use Extend instead. This function will have it's implementation changed in the future. - uid: OpenTK.Mathematics.Box2i.Inflated(OpenTK.Mathematics.Vector2i) commentId: M:OpenTK.Mathematics.Box2i.Inflated(OpenTK.Mathematics.Vector2i) id: Inflated(OpenTK.Mathematics.Vector2i) @@ -1644,42 +1635,36 @@ items: repo: https://github.com/opentk/opentk.git id: Inflated path: opentk/src/OpenTK.Mathematics/Geometry/Box2i.cs - startLine: 510 + startLine: 512 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics - summary: Inflate this Box2i to encapsulate a given point. + summary: >- + Inflates this Box2i by the given size in all directions. A negative size will shrink the box to a maximum of -HalfSize. + + Use the method for the point-encapsulation functionality in OpenTK version 4.8.1 and earlier. example: [] syntax: content: >- [Pure] - [Obsolete("Use Extended instead. This function will have it's implementation changed in the future.")] - - public Box2i Inflated(Vector2i point) + public Box2i Inflated(Vector2i size) parameters: - - id: point + - id: size type: OpenTK.Mathematics.Vector2i - description: The point to query. + description: The size to inflate by. return: type: OpenTK.Mathematics.Box2i description: The inflated box. content.vb: >- - - - Public Function Inflated(point As Vector2i) As Box2i + Public Function Inflated(size As Vector2i) As Box2i overload: OpenTK.Mathematics.Box2i.Inflated* attributes: - type: System.Diagnostics.Contracts.PureAttribute ctor: System.Diagnostics.Contracts.PureAttribute.#ctor arguments: [] - - type: System.ObsoleteAttribute - ctor: System.ObsoleteAttribute.#ctor(System.String) - arguments: - - type: System.String - value: Use Extended instead. This function will have it's implementation changed in the future. - uid: OpenTK.Mathematics.Box2i.Extend(OpenTK.Mathematics.Vector2i) commentId: M:OpenTK.Mathematics.Box2i.Extend(OpenTK.Mathematics.Vector2i) id: Extend(OpenTK.Mathematics.Vector2i) @@ -1698,7 +1683,7 @@ items: repo: https://github.com/opentk/opentk.git id: Extend path: opentk/src/OpenTK.Mathematics/Geometry/Box2i.cs - startLine: 524 + startLine: 525 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1730,7 +1715,7 @@ items: repo: https://github.com/opentk/opentk.git id: Extended path: opentk/src/OpenTK.Mathematics/Geometry/Box2i.cs - startLine: 535 + startLine: 536 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1775,7 +1760,7 @@ items: repo: https://github.com/opentk/opentk.git id: op_Equality path: opentk/src/OpenTK.Mathematics/Geometry/Box2i.cs - startLine: 549 + startLine: 550 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1815,7 +1800,7 @@ items: repo: https://github.com/opentk/opentk.git id: op_Inequality path: opentk/src/OpenTK.Mathematics/Geometry/Box2i.cs - startLine: 559 + startLine: 560 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1855,7 +1840,7 @@ items: repo: https://github.com/opentk/opentk.git id: op_Explicit path: opentk/src/OpenTK.Mathematics/Geometry/Box2i.cs - startLine: 568 + startLine: 569 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1902,7 +1887,7 @@ items: repo: https://github.com/opentk/opentk.git id: Equals path: opentk/src/OpenTK.Mathematics/Geometry/Box2i.cs - startLine: 575 + startLine: 576 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1941,7 +1926,7 @@ items: repo: https://github.com/opentk/opentk.git id: Equals path: opentk/src/OpenTK.Mathematics/Geometry/Box2i.cs - startLine: 581 + startLine: 582 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1978,7 +1963,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetHashCode path: opentk/src/OpenTK.Mathematics/Geometry/Box2i.cs - startLine: 588 + startLine: 589 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2010,7 +1995,7 @@ items: repo: https://github.com/opentk/opentk.git id: ToString path: opentk/src/OpenTK.Mathematics/Geometry/Box2i.cs - startLine: 594 + startLine: 595 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2042,7 +2027,7 @@ items: repo: https://github.com/opentk/opentk.git id: ToString path: opentk/src/OpenTK.Mathematics/Geometry/Box2i.cs - startLine: 600 + startLine: 601 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2085,7 +2070,7 @@ items: repo: https://github.com/opentk/opentk.git id: ToString path: opentk/src/OpenTK.Mathematics/Geometry/Box2i.cs - startLine: 606 + startLine: 607 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2125,7 +2110,7 @@ items: repo: https://github.com/opentk/opentk.git id: ToString path: opentk/src/OpenTK.Mathematics/Geometry/Box2i.cs - startLine: 612 + startLine: 613 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2652,12 +2637,60 @@ references: name: Scaled nameWithType: Box2i.Scaled fullName: OpenTK.Mathematics.Box2i.Scaled +- uid: OpenTK.Mathematics.Box2i.Extend(OpenTK.Mathematics.Vector2i) + commentId: M:OpenTK.Mathematics.Box2i.Extend(OpenTK.Mathematics.Vector2i) + href: OpenTK.Mathematics.Box2i.html#OpenTK_Mathematics_Box2i_Extend_OpenTK_Mathematics_Vector2i_ + name: Extend(Vector2i) + nameWithType: Box2i.Extend(Vector2i) + fullName: OpenTK.Mathematics.Box2i.Extend(OpenTK.Mathematics.Vector2i) + spec.csharp: + - uid: OpenTK.Mathematics.Box2i.Extend(OpenTK.Mathematics.Vector2i) + name: Extend + href: OpenTK.Mathematics.Box2i.html#OpenTK_Mathematics_Box2i_Extend_OpenTK_Mathematics_Vector2i_ + - name: ( + - uid: OpenTK.Mathematics.Vector2i + name: Vector2i + href: OpenTK.Mathematics.Vector2i.html + - name: ) + spec.vb: + - uid: OpenTK.Mathematics.Box2i.Extend(OpenTK.Mathematics.Vector2i) + name: Extend + href: OpenTK.Mathematics.Box2i.html#OpenTK_Mathematics_Box2i_Extend_OpenTK_Mathematics_Vector2i_ + - name: ( + - uid: OpenTK.Mathematics.Vector2i + name: Vector2i + href: OpenTK.Mathematics.Vector2i.html + - name: ) - uid: OpenTK.Mathematics.Box2i.Inflate* commentId: Overload:OpenTK.Mathematics.Box2i.Inflate href: OpenTK.Mathematics.Box2i.html#OpenTK_Mathematics_Box2i_Inflate_OpenTK_Mathematics_Vector2i_ name: Inflate nameWithType: Box2i.Inflate fullName: OpenTK.Mathematics.Box2i.Inflate +- uid: OpenTK.Mathematics.Box2i.Extended(OpenTK.Mathematics.Vector2i) + commentId: M:OpenTK.Mathematics.Box2i.Extended(OpenTK.Mathematics.Vector2i) + href: OpenTK.Mathematics.Box2i.html#OpenTK_Mathematics_Box2i_Extended_OpenTK_Mathematics_Vector2i_ + name: Extended(Vector2i) + nameWithType: Box2i.Extended(Vector2i) + fullName: OpenTK.Mathematics.Box2i.Extended(OpenTK.Mathematics.Vector2i) + spec.csharp: + - uid: OpenTK.Mathematics.Box2i.Extended(OpenTK.Mathematics.Vector2i) + name: Extended + href: OpenTK.Mathematics.Box2i.html#OpenTK_Mathematics_Box2i_Extended_OpenTK_Mathematics_Vector2i_ + - name: ( + - uid: OpenTK.Mathematics.Vector2i + name: Vector2i + href: OpenTK.Mathematics.Vector2i.html + - name: ) + spec.vb: + - uid: OpenTK.Mathematics.Box2i.Extended(OpenTK.Mathematics.Vector2i) + name: Extended + href: OpenTK.Mathematics.Box2i.html#OpenTK_Mathematics_Box2i_Extended_OpenTK_Mathematics_Vector2i_ + - name: ( + - uid: OpenTK.Mathematics.Vector2i + name: Vector2i + href: OpenTK.Mathematics.Vector2i.html + - name: ) - uid: OpenTK.Mathematics.Box2i.Inflated* commentId: Overload:OpenTK.Mathematics.Box2i.Inflated href: OpenTK.Mathematics.Box2i.html#OpenTK_Mathematics_Box2i_Inflated_OpenTK_Mathematics_Vector2i_ diff --git a/api/OpenTK.Mathematics.Box3.yml b/api/OpenTK.Mathematics.Box3.yml index a421afbc..6c15f1f0 100644 --- a/api/OpenTK.Mathematics.Box3.yml +++ b/api/OpenTK.Mathematics.Box3.yml @@ -1876,32 +1876,23 @@ items: repo: https://github.com/opentk/opentk.git id: Inflate path: opentk/src/OpenTK.Mathematics/Geometry/Box3.cs - startLine: 638 + startLine: 639 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics - summary: Inflate this Box3 to encapsulate a given point. + summary: >- + Inflates this Box3 by the given size in all directions. A negative size will shrink the box to a maximum of -HalfSize. + + Use the method for the point-encapsulation functionality in OpenTK version 4.8.1 and earlier. example: [] syntax: - content: >- - [Obsolete("Use Extend instead. This function will have it's implementation changed in the future.")] - - public void Inflate(Vector3 point) + content: public void Inflate(Vector3 size) parameters: - - id: point + - id: size type: OpenTK.Mathematics.Vector3 - description: The point to query. - content.vb: >- - - - Public Sub Inflate(point As Vector3) + description: The size to inflate by. + content.vb: Public Sub Inflate(size As Vector3) overload: OpenTK.Mathematics.Box3.Inflate* - attributes: - - type: System.ObsoleteAttribute - ctor: System.ObsoleteAttribute.#ctor(System.String) - arguments: - - type: System.String - value: Use Extend instead. This function will have it's implementation changed in the future. - uid: OpenTK.Mathematics.Box3.Inflated(OpenTK.Mathematics.Vector3) commentId: M:OpenTK.Mathematics.Box3.Inflated(OpenTK.Mathematics.Vector3) id: Inflated(OpenTK.Mathematics.Vector3) @@ -1920,42 +1911,36 @@ items: repo: https://github.com/opentk/opentk.git id: Inflated path: opentk/src/OpenTK.Mathematics/Geometry/Box3.cs - startLine: 650 + startLine: 654 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics - summary: Inflate this Box3 to encapsulate a given point. + summary: >- + Inflates this Box3 by the given size in all directions. A negative size will shrink the box to a maximum of -HalfSize. + + Use the method for the point-encapsulation functionality in OpenTK version 4.8.1 and earlier. example: [] syntax: content: >- [Pure] - [Obsolete("Use Extended instead. This function will have it's implementation changed in the future.")] - - public Box3 Inflated(Vector3 point) + public Box3 Inflated(Vector3 size) parameters: - - id: point + - id: size type: OpenTK.Mathematics.Vector3 - description: The point to query. + description: The size to inflate by. return: type: OpenTK.Mathematics.Box3 description: The inflated box. content.vb: >- - - - Public Function Inflated(point As Vector3) As Box3 + Public Function Inflated(size As Vector3) As Box3 overload: OpenTK.Mathematics.Box3.Inflated* attributes: - type: System.Diagnostics.Contracts.PureAttribute ctor: System.Diagnostics.Contracts.PureAttribute.#ctor arguments: [] - - type: System.ObsoleteAttribute - ctor: System.ObsoleteAttribute.#ctor(System.String) - arguments: - - type: System.String - value: Use Extended instead. This function will have it's implementation changed in the future. - uid: OpenTK.Mathematics.Box3.Extend(OpenTK.Mathematics.Vector3) commentId: M:OpenTK.Mathematics.Box3.Extend(OpenTK.Mathematics.Vector3) id: Extend(OpenTK.Mathematics.Vector3) @@ -1974,7 +1959,7 @@ items: repo: https://github.com/opentk/opentk.git id: Extend path: opentk/src/OpenTK.Mathematics/Geometry/Box3.cs - startLine: 664 + startLine: 667 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2006,7 +1991,7 @@ items: repo: https://github.com/opentk/opentk.git id: Extended path: opentk/src/OpenTK.Mathematics/Geometry/Box3.cs - startLine: 675 + startLine: 678 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2051,7 +2036,7 @@ items: repo: https://github.com/opentk/opentk.git id: op_Equality path: opentk/src/OpenTK.Mathematics/Geometry/Box3.cs - startLine: 689 + startLine: 692 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2091,7 +2076,7 @@ items: repo: https://github.com/opentk/opentk.git id: op_Inequality path: opentk/src/OpenTK.Mathematics/Geometry/Box3.cs - startLine: 699 + startLine: 702 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2131,7 +2116,7 @@ items: repo: https://github.com/opentk/opentk.git id: Equals path: opentk/src/OpenTK.Mathematics/Geometry/Box3.cs - startLine: 705 + startLine: 708 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2170,7 +2155,7 @@ items: repo: https://github.com/opentk/opentk.git id: Equals path: opentk/src/OpenTK.Mathematics/Geometry/Box3.cs - startLine: 711 + startLine: 714 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2207,7 +2192,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetHashCode path: opentk/src/OpenTK.Mathematics/Geometry/Box3.cs - startLine: 718 + startLine: 721 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2239,7 +2224,7 @@ items: repo: https://github.com/opentk/opentk.git id: ToString path: opentk/src/OpenTK.Mathematics/Geometry/Box3.cs - startLine: 724 + startLine: 727 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2271,7 +2256,7 @@ items: repo: https://github.com/opentk/opentk.git id: ToString path: opentk/src/OpenTK.Mathematics/Geometry/Box3.cs - startLine: 730 + startLine: 733 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2314,7 +2299,7 @@ items: repo: https://github.com/opentk/opentk.git id: ToString path: opentk/src/OpenTK.Mathematics/Geometry/Box3.cs - startLine: 736 + startLine: 739 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2354,7 +2339,7 @@ items: repo: https://github.com/opentk/opentk.git id: ToString path: opentk/src/OpenTK.Mathematics/Geometry/Box3.cs - startLine: 742 + startLine: 745 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2911,12 +2896,60 @@ references: name: Scaled nameWithType: Box3.Scaled fullName: OpenTK.Mathematics.Box3.Scaled +- uid: OpenTK.Mathematics.Box3.Extend(OpenTK.Mathematics.Vector3) + commentId: M:OpenTK.Mathematics.Box3.Extend(OpenTK.Mathematics.Vector3) + href: OpenTK.Mathematics.Box3.html#OpenTK_Mathematics_Box3_Extend_OpenTK_Mathematics_Vector3_ + name: Extend(Vector3) + nameWithType: Box3.Extend(Vector3) + fullName: OpenTK.Mathematics.Box3.Extend(OpenTK.Mathematics.Vector3) + spec.csharp: + - uid: OpenTK.Mathematics.Box3.Extend(OpenTK.Mathematics.Vector3) + name: Extend + href: OpenTK.Mathematics.Box3.html#OpenTK_Mathematics_Box3_Extend_OpenTK_Mathematics_Vector3_ + - name: ( + - uid: OpenTK.Mathematics.Vector3 + name: Vector3 + href: OpenTK.Mathematics.Vector3.html + - name: ) + spec.vb: + - uid: OpenTK.Mathematics.Box3.Extend(OpenTK.Mathematics.Vector3) + name: Extend + href: OpenTK.Mathematics.Box3.html#OpenTK_Mathematics_Box3_Extend_OpenTK_Mathematics_Vector3_ + - name: ( + - uid: OpenTK.Mathematics.Vector3 + name: Vector3 + href: OpenTK.Mathematics.Vector3.html + - name: ) - uid: OpenTK.Mathematics.Box3.Inflate* commentId: Overload:OpenTK.Mathematics.Box3.Inflate href: OpenTK.Mathematics.Box3.html#OpenTK_Mathematics_Box3_Inflate_OpenTK_Mathematics_Vector3_ name: Inflate nameWithType: Box3.Inflate fullName: OpenTK.Mathematics.Box3.Inflate +- uid: OpenTK.Mathematics.Box3.Extended(OpenTK.Mathematics.Vector3) + commentId: M:OpenTK.Mathematics.Box3.Extended(OpenTK.Mathematics.Vector3) + href: OpenTK.Mathematics.Box3.html#OpenTK_Mathematics_Box3_Extended_OpenTK_Mathematics_Vector3_ + name: Extended(Vector3) + nameWithType: Box3.Extended(Vector3) + fullName: OpenTK.Mathematics.Box3.Extended(OpenTK.Mathematics.Vector3) + spec.csharp: + - uid: OpenTK.Mathematics.Box3.Extended(OpenTK.Mathematics.Vector3) + name: Extended + href: OpenTK.Mathematics.Box3.html#OpenTK_Mathematics_Box3_Extended_OpenTK_Mathematics_Vector3_ + - name: ( + - uid: OpenTK.Mathematics.Vector3 + name: Vector3 + href: OpenTK.Mathematics.Vector3.html + - name: ) + spec.vb: + - uid: OpenTK.Mathematics.Box3.Extended(OpenTK.Mathematics.Vector3) + name: Extended + href: OpenTK.Mathematics.Box3.html#OpenTK_Mathematics_Box3_Extended_OpenTK_Mathematics_Vector3_ + - name: ( + - uid: OpenTK.Mathematics.Vector3 + name: Vector3 + href: OpenTK.Mathematics.Vector3.html + - name: ) - uid: OpenTK.Mathematics.Box3.Inflated* commentId: Overload:OpenTK.Mathematics.Box3.Inflated href: OpenTK.Mathematics.Box3.html#OpenTK_Mathematics_Box3_Inflated_OpenTK_Mathematics_Vector3_ diff --git a/api/OpenTK.Mathematics.Box3d.yml b/api/OpenTK.Mathematics.Box3d.yml index b2162efa..85ae6420 100644 --- a/api/OpenTK.Mathematics.Box3d.yml +++ b/api/OpenTK.Mathematics.Box3d.yml @@ -1876,32 +1876,23 @@ items: repo: https://github.com/opentk/opentk.git id: Inflate path: opentk/src/OpenTK.Mathematics/Geometry/Box3d.cs - startLine: 638 + startLine: 639 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics - summary: Inflate this Box3d to encapsulate a given point. + summary: >- + Inflates this Box3d by the given size in all directions. A negative size will shrink the box to a maximum of -HalfSize. + + Use the method for the point-encapsulation functionality in OpenTK version 4.8.1 and earlier. example: [] syntax: - content: >- - [Obsolete("Use Extend instead. This function will have it's implementation changed in the future.")] - - public void Inflate(Vector3d point) + content: public void Inflate(Vector3d size) parameters: - - id: point + - id: size type: OpenTK.Mathematics.Vector3d - description: The point to query. - content.vb: >- - - - Public Sub Inflate(point As Vector3d) + description: The size to inflate by. + content.vb: Public Sub Inflate(size As Vector3d) overload: OpenTK.Mathematics.Box3d.Inflate* - attributes: - - type: System.ObsoleteAttribute - ctor: System.ObsoleteAttribute.#ctor(System.String) - arguments: - - type: System.String - value: Use Extend instead. This function will have it's implementation changed in the future. - uid: OpenTK.Mathematics.Box3d.Inflated(OpenTK.Mathematics.Vector3d) commentId: M:OpenTK.Mathematics.Box3d.Inflated(OpenTK.Mathematics.Vector3d) id: Inflated(OpenTK.Mathematics.Vector3d) @@ -1920,42 +1911,36 @@ items: repo: https://github.com/opentk/opentk.git id: Inflated path: opentk/src/OpenTK.Mathematics/Geometry/Box3d.cs - startLine: 650 + startLine: 652 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics - summary: Inflate this Box3d to encapsulate a given point. + summary: >- + Inflates this Box3d by the given size in all directions. A negative size will shrink the box to a maximum of -HalfSize. + + Use the method for the point-encapsulation functionality in OpenTK version 4.8.1 and earlier. example: [] syntax: content: >- [Pure] - [Obsolete("Use Extended instead. This function will have it's implementation changed in the future.")] - - public Box3d Inflated(Vector3d point) + public Box3d Inflated(Vector3d size) parameters: - - id: point + - id: size type: OpenTK.Mathematics.Vector3d - description: The point to query. + description: The size to inflate by. return: type: OpenTK.Mathematics.Box3d description: The inflated box. content.vb: >- - - - Public Function Inflated(point As Vector3d) As Box3d + Public Function Inflated(size As Vector3d) As Box3d overload: OpenTK.Mathematics.Box3d.Inflated* attributes: - type: System.Diagnostics.Contracts.PureAttribute ctor: System.Diagnostics.Contracts.PureAttribute.#ctor arguments: [] - - type: System.ObsoleteAttribute - ctor: System.ObsoleteAttribute.#ctor(System.String) - arguments: - - type: System.String - value: Use Extended instead. This function will have it's implementation changed in the future. - uid: OpenTK.Mathematics.Box3d.Extend(OpenTK.Mathematics.Vector3d) commentId: M:OpenTK.Mathematics.Box3d.Extend(OpenTK.Mathematics.Vector3d) id: Extend(OpenTK.Mathematics.Vector3d) @@ -1974,7 +1959,7 @@ items: repo: https://github.com/opentk/opentk.git id: Extend path: opentk/src/OpenTK.Mathematics/Geometry/Box3d.cs - startLine: 664 + startLine: 665 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2006,7 +1991,7 @@ items: repo: https://github.com/opentk/opentk.git id: Extended path: opentk/src/OpenTK.Mathematics/Geometry/Box3d.cs - startLine: 675 + startLine: 676 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2051,7 +2036,7 @@ items: repo: https://github.com/opentk/opentk.git id: op_Equality path: opentk/src/OpenTK.Mathematics/Geometry/Box3d.cs - startLine: 689 + startLine: 690 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2091,7 +2076,7 @@ items: repo: https://github.com/opentk/opentk.git id: op_Inequality path: opentk/src/OpenTK.Mathematics/Geometry/Box3d.cs - startLine: 699 + startLine: 700 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2131,7 +2116,7 @@ items: repo: https://github.com/opentk/opentk.git id: Equals path: opentk/src/OpenTK.Mathematics/Geometry/Box3d.cs - startLine: 705 + startLine: 706 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2170,7 +2155,7 @@ items: repo: https://github.com/opentk/opentk.git id: Equals path: opentk/src/OpenTK.Mathematics/Geometry/Box3d.cs - startLine: 711 + startLine: 712 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2207,7 +2192,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetHashCode path: opentk/src/OpenTK.Mathematics/Geometry/Box3d.cs - startLine: 718 + startLine: 719 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2239,7 +2224,7 @@ items: repo: https://github.com/opentk/opentk.git id: ToString path: opentk/src/OpenTK.Mathematics/Geometry/Box3d.cs - startLine: 724 + startLine: 725 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2271,7 +2256,7 @@ items: repo: https://github.com/opentk/opentk.git id: ToString path: opentk/src/OpenTK.Mathematics/Geometry/Box3d.cs - startLine: 730 + startLine: 731 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2314,7 +2299,7 @@ items: repo: https://github.com/opentk/opentk.git id: ToString path: opentk/src/OpenTK.Mathematics/Geometry/Box3d.cs - startLine: 736 + startLine: 737 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2354,7 +2339,7 @@ items: repo: https://github.com/opentk/opentk.git id: ToString path: opentk/src/OpenTK.Mathematics/Geometry/Box3d.cs - startLine: 742 + startLine: 743 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2918,12 +2903,60 @@ references: name: Scaled nameWithType: Box3d.Scaled fullName: OpenTK.Mathematics.Box3d.Scaled +- uid: OpenTK.Mathematics.Box3d.Extend(OpenTK.Mathematics.Vector3d) + commentId: M:OpenTK.Mathematics.Box3d.Extend(OpenTK.Mathematics.Vector3d) + href: OpenTK.Mathematics.Box3d.html#OpenTK_Mathematics_Box3d_Extend_OpenTK_Mathematics_Vector3d_ + name: Extend(Vector3d) + nameWithType: Box3d.Extend(Vector3d) + fullName: OpenTK.Mathematics.Box3d.Extend(OpenTK.Mathematics.Vector3d) + spec.csharp: + - uid: OpenTK.Mathematics.Box3d.Extend(OpenTK.Mathematics.Vector3d) + name: Extend + href: OpenTK.Mathematics.Box3d.html#OpenTK_Mathematics_Box3d_Extend_OpenTK_Mathematics_Vector3d_ + - name: ( + - uid: OpenTK.Mathematics.Vector3d + name: Vector3d + href: OpenTK.Mathematics.Vector3d.html + - name: ) + spec.vb: + - uid: OpenTK.Mathematics.Box3d.Extend(OpenTK.Mathematics.Vector3d) + name: Extend + href: OpenTK.Mathematics.Box3d.html#OpenTK_Mathematics_Box3d_Extend_OpenTK_Mathematics_Vector3d_ + - name: ( + - uid: OpenTK.Mathematics.Vector3d + name: Vector3d + href: OpenTK.Mathematics.Vector3d.html + - name: ) - uid: OpenTK.Mathematics.Box3d.Inflate* commentId: Overload:OpenTK.Mathematics.Box3d.Inflate href: OpenTK.Mathematics.Box3d.html#OpenTK_Mathematics_Box3d_Inflate_OpenTK_Mathematics_Vector3d_ name: Inflate nameWithType: Box3d.Inflate fullName: OpenTK.Mathematics.Box3d.Inflate +- uid: OpenTK.Mathematics.Box3d.Extended(OpenTK.Mathematics.Vector3d) + commentId: M:OpenTK.Mathematics.Box3d.Extended(OpenTK.Mathematics.Vector3d) + href: OpenTK.Mathematics.Box3d.html#OpenTK_Mathematics_Box3d_Extended_OpenTK_Mathematics_Vector3d_ + name: Extended(Vector3d) + nameWithType: Box3d.Extended(Vector3d) + fullName: OpenTK.Mathematics.Box3d.Extended(OpenTK.Mathematics.Vector3d) + spec.csharp: + - uid: OpenTK.Mathematics.Box3d.Extended(OpenTK.Mathematics.Vector3d) + name: Extended + href: OpenTK.Mathematics.Box3d.html#OpenTK_Mathematics_Box3d_Extended_OpenTK_Mathematics_Vector3d_ + - name: ( + - uid: OpenTK.Mathematics.Vector3d + name: Vector3d + href: OpenTK.Mathematics.Vector3d.html + - name: ) + spec.vb: + - uid: OpenTK.Mathematics.Box3d.Extended(OpenTK.Mathematics.Vector3d) + name: Extended + href: OpenTK.Mathematics.Box3d.html#OpenTK_Mathematics_Box3d_Extended_OpenTK_Mathematics_Vector3d_ + - name: ( + - uid: OpenTK.Mathematics.Vector3d + name: Vector3d + href: OpenTK.Mathematics.Vector3d.html + - name: ) - uid: OpenTK.Mathematics.Box3d.Inflated* commentId: Overload:OpenTK.Mathematics.Box3d.Inflated href: OpenTK.Mathematics.Box3d.html#OpenTK_Mathematics_Box3d_Inflated_OpenTK_Mathematics_Vector3d_ diff --git a/api/OpenTK.Mathematics.Box3i.yml b/api/OpenTK.Mathematics.Box3i.yml index 39b2f507..c0e1779b 100644 --- a/api/OpenTK.Mathematics.Box3i.yml +++ b/api/OpenTK.Mathematics.Box3i.yml @@ -1768,32 +1768,23 @@ items: repo: https://github.com/opentk/opentk.git id: Inflate path: opentk/src/OpenTK.Mathematics/Geometry/Box3i.cs - startLine: 563 + startLine: 564 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics - summary: Inflate this Box3i to encapsulate a given point. + summary: >- + Inflates this Box3i by the given size in all directions. A negative size will shrink the box to a maximum of -HalfSize. + + Use the method for the point-encapsulation functionality in OpenTK version 4.8.1 and earlier. example: [] syntax: - content: >- - [Obsolete("Use Extend instead. This function will have it's implementation changed in the future.")] - - public void Inflate(Vector3i point) + content: public void Inflate(Vector3i size) parameters: - - id: point + - id: size type: OpenTK.Mathematics.Vector3i - description: The point to query. - content.vb: >- - - - Public Sub Inflate(point As Vector3i) + description: The size to inflate by. + content.vb: Public Sub Inflate(size As Vector3i) overload: OpenTK.Mathematics.Box3i.Inflate* - attributes: - - type: System.ObsoleteAttribute - ctor: System.ObsoleteAttribute.#ctor(System.String) - arguments: - - type: System.String - value: Use Extend instead. This function will have it's implementation changed in the future. - uid: OpenTK.Mathematics.Box3i.Inflated(OpenTK.Mathematics.Vector3i) commentId: M:OpenTK.Mathematics.Box3i.Inflated(OpenTK.Mathematics.Vector3i) id: Inflated(OpenTK.Mathematics.Vector3i) @@ -1812,42 +1803,36 @@ items: repo: https://github.com/opentk/opentk.git id: Inflated path: opentk/src/OpenTK.Mathematics/Geometry/Box3i.cs - startLine: 575 + startLine: 577 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics - summary: Inflate this Box3i to encapsulate a given point. + summary: >- + Inflates this Box3i by the given size in all directions. A negative size will shrink the box to a maximum of -HalfSize. + + Use the method for the point-encapsulation functionality in eOpenTK version 4.8.1 and earlier. example: [] syntax: content: >- [Pure] - [Obsolete("Use Extended instead. This function will have it's implementation changed in the future.")] - - public Box3i Inflated(Vector3i point) + public Box3i Inflated(Vector3i size) parameters: - - id: point + - id: size type: OpenTK.Mathematics.Vector3i - description: The point to query. + description: The size to inflate by. return: type: OpenTK.Mathematics.Box3i description: The inflated box. content.vb: >- - - - Public Function Inflated(point As Vector3i) As Box3i + Public Function Inflated(size As Vector3i) As Box3i overload: OpenTK.Mathematics.Box3i.Inflated* attributes: - type: System.Diagnostics.Contracts.PureAttribute ctor: System.Diagnostics.Contracts.PureAttribute.#ctor arguments: [] - - type: System.ObsoleteAttribute - ctor: System.ObsoleteAttribute.#ctor(System.String) - arguments: - - type: System.String - value: Use Extended instead. This function will have it's implementation changed in the future. - uid: OpenTK.Mathematics.Box3i.Extend(OpenTK.Mathematics.Vector3i) commentId: M:OpenTK.Mathematics.Box3i.Extend(OpenTK.Mathematics.Vector3i) id: Extend(OpenTK.Mathematics.Vector3i) @@ -1866,7 +1851,7 @@ items: repo: https://github.com/opentk/opentk.git id: Extend path: opentk/src/OpenTK.Mathematics/Geometry/Box3i.cs - startLine: 589 + startLine: 590 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1898,7 +1883,7 @@ items: repo: https://github.com/opentk/opentk.git id: Extended path: opentk/src/OpenTK.Mathematics/Geometry/Box3i.cs - startLine: 600 + startLine: 601 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1943,7 +1928,7 @@ items: repo: https://github.com/opentk/opentk.git id: op_Equality path: opentk/src/OpenTK.Mathematics/Geometry/Box3i.cs - startLine: 614 + startLine: 615 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1983,7 +1968,7 @@ items: repo: https://github.com/opentk/opentk.git id: op_Inequality path: opentk/src/OpenTK.Mathematics/Geometry/Box3i.cs - startLine: 624 + startLine: 625 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2023,7 +2008,7 @@ items: repo: https://github.com/opentk/opentk.git id: Equals path: opentk/src/OpenTK.Mathematics/Geometry/Box3i.cs - startLine: 630 + startLine: 631 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2062,7 +2047,7 @@ items: repo: https://github.com/opentk/opentk.git id: Equals path: opentk/src/OpenTK.Mathematics/Geometry/Box3i.cs - startLine: 636 + startLine: 637 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2099,7 +2084,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetHashCode path: opentk/src/OpenTK.Mathematics/Geometry/Box3i.cs - startLine: 643 + startLine: 644 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2131,7 +2116,7 @@ items: repo: https://github.com/opentk/opentk.git id: ToString path: opentk/src/OpenTK.Mathematics/Geometry/Box3i.cs - startLine: 649 + startLine: 650 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2163,7 +2148,7 @@ items: repo: https://github.com/opentk/opentk.git id: ToString path: opentk/src/OpenTK.Mathematics/Geometry/Box3i.cs - startLine: 655 + startLine: 656 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2206,7 +2191,7 @@ items: repo: https://github.com/opentk/opentk.git id: ToString path: opentk/src/OpenTK.Mathematics/Geometry/Box3i.cs - startLine: 661 + startLine: 662 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2246,7 +2231,7 @@ items: repo: https://github.com/opentk/opentk.git id: ToString path: opentk/src/OpenTK.Mathematics/Geometry/Box3i.cs - startLine: 667 + startLine: 668 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2803,12 +2788,60 @@ references: name: Scaled nameWithType: Box3i.Scaled fullName: OpenTK.Mathematics.Box3i.Scaled +- uid: OpenTK.Mathematics.Box3i.Extend(OpenTK.Mathematics.Vector3i) + commentId: M:OpenTK.Mathematics.Box3i.Extend(OpenTK.Mathematics.Vector3i) + href: OpenTK.Mathematics.Box3i.html#OpenTK_Mathematics_Box3i_Extend_OpenTK_Mathematics_Vector3i_ + name: Extend(Vector3i) + nameWithType: Box3i.Extend(Vector3i) + fullName: OpenTK.Mathematics.Box3i.Extend(OpenTK.Mathematics.Vector3i) + spec.csharp: + - uid: OpenTK.Mathematics.Box3i.Extend(OpenTK.Mathematics.Vector3i) + name: Extend + href: OpenTK.Mathematics.Box3i.html#OpenTK_Mathematics_Box3i_Extend_OpenTK_Mathematics_Vector3i_ + - name: ( + - uid: OpenTK.Mathematics.Vector3i + name: Vector3i + href: OpenTK.Mathematics.Vector3i.html + - name: ) + spec.vb: + - uid: OpenTK.Mathematics.Box3i.Extend(OpenTK.Mathematics.Vector3i) + name: Extend + href: OpenTK.Mathematics.Box3i.html#OpenTK_Mathematics_Box3i_Extend_OpenTK_Mathematics_Vector3i_ + - name: ( + - uid: OpenTK.Mathematics.Vector3i + name: Vector3i + href: OpenTK.Mathematics.Vector3i.html + - name: ) - uid: OpenTK.Mathematics.Box3i.Inflate* commentId: Overload:OpenTK.Mathematics.Box3i.Inflate href: OpenTK.Mathematics.Box3i.html#OpenTK_Mathematics_Box3i_Inflate_OpenTK_Mathematics_Vector3i_ name: Inflate nameWithType: Box3i.Inflate fullName: OpenTK.Mathematics.Box3i.Inflate +- uid: OpenTK.Mathematics.Box3i.Extended(OpenTK.Mathematics.Vector3i) + commentId: M:OpenTK.Mathematics.Box3i.Extended(OpenTK.Mathematics.Vector3i) + href: OpenTK.Mathematics.Box3i.html#OpenTK_Mathematics_Box3i_Extended_OpenTK_Mathematics_Vector3i_ + name: Extended(Vector3i) + nameWithType: Box3i.Extended(Vector3i) + fullName: OpenTK.Mathematics.Box3i.Extended(OpenTK.Mathematics.Vector3i) + spec.csharp: + - uid: OpenTK.Mathematics.Box3i.Extended(OpenTK.Mathematics.Vector3i) + name: Extended + href: OpenTK.Mathematics.Box3i.html#OpenTK_Mathematics_Box3i_Extended_OpenTK_Mathematics_Vector3i_ + - name: ( + - uid: OpenTK.Mathematics.Vector3i + name: Vector3i + href: OpenTK.Mathematics.Vector3i.html + - name: ) + spec.vb: + - uid: OpenTK.Mathematics.Box3i.Extended(OpenTK.Mathematics.Vector3i) + name: Extended + href: OpenTK.Mathematics.Box3i.html#OpenTK_Mathematics_Box3i_Extended_OpenTK_Mathematics_Vector3i_ + - name: ( + - uid: OpenTK.Mathematics.Vector3i + name: Vector3i + href: OpenTK.Mathematics.Vector3i.html + - name: ) - uid: OpenTK.Mathematics.Box3i.Inflated* commentId: Overload:OpenTK.Mathematics.Box3i.Inflated href: OpenTK.Mathematics.Box3i.html#OpenTK_Mathematics_Box3i_Inflated_OpenTK_Mathematics_Vector3i_ diff --git a/api/OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.yml b/api/OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.yml index 23af1fb7..67eac379 100644 --- a/api/OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.yml +++ b/api/OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.yml @@ -19,7 +19,7 @@ items: - OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.GetProcedureAddress(OpenTK.Core.Platform.OpenGLContextHandle,System.String) - OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.GetSharedContext(OpenTK.Core.Platform.OpenGLContextHandle) - OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.GetSwapInterval - - OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.Logger - OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.Name - OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.Provides @@ -159,16 +159,16 @@ items: overload: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.Logger* implements: - OpenTK.Core.Platform.IPalComponent.Logger -- uid: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.Initialize(OpenTK.Core.Platform.PalComponents) - commentId: M:OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.Initialize(OpenTK.Core.Platform.PalComponents) - id: Initialize(OpenTK.Core.Platform.PalComponents) +- uid: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + id: Initialize(OpenTK.Core.Platform.ToolkitOptions) parent: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent langs: - csharp - vb - name: Initialize(PalComponents) - nameWithType: ANGLEOpenGLComponent.Initialize(PalComponents) - fullName: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.Initialize(OpenTK.Core.Platform.PalComponents) + name: Initialize(ToolkitOptions) + nameWithType: ANGLEOpenGLComponent.Initialize(ToolkitOptions) + fullName: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) type: Method source: remote: @@ -181,18 +181,18 @@ items: assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.ANGLE - summary: Initialize the driver. + summary: Initialize the component. example: [] syntax: - content: public void Initialize(PalComponents which) + content: public void Initialize(ToolkitOptions options) parameters: - - id: which - type: OpenTK.Core.Platform.PalComponents - description: Bitfield of which components the driver need to be initialized. - content.vb: Public Sub Initialize(which As PalComponents) + - id: options + type: OpenTK.Core.Platform.ToolkitOptions + description: The options to initialize the component with. + content.vb: Public Sub Initialize(options As ToolkitOptions) overload: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.Initialize* implements: - - OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - uid: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.CanShareContexts commentId: P:OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.CanShareContexts id: CanShareContexts @@ -211,7 +211,7 @@ items: repo: https://github.com/opentk/opentk.git id: CanShareContexts path: opentk/src/OpenTK.Platform.Native/ANGLE/ANGLEOpenGLComponent.cs - startLine: 70 + startLine: 67 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.ANGLE @@ -244,7 +244,7 @@ items: repo: https://github.com/opentk/opentk.git id: CanCreateFromWindow path: opentk/src/OpenTK.Platform.Native/ANGLE/ANGLEOpenGLComponent.cs - startLine: 73 + startLine: 70 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.ANGLE @@ -277,7 +277,7 @@ items: repo: https://github.com/opentk/opentk.git id: CanCreateFromSurface path: opentk/src/OpenTK.Platform.Native/ANGLE/ANGLEOpenGLComponent.cs - startLine: 76 + startLine: 73 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.ANGLE @@ -310,7 +310,7 @@ items: repo: https://github.com/opentk/opentk.git id: CreateFromSurface path: opentk/src/OpenTK.Platform.Native/ANGLE/ANGLEOpenGLComponent.cs - startLine: 79 + startLine: 76 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.ANGLE @@ -343,7 +343,7 @@ items: repo: https://github.com/opentk/opentk.git id: CreateFromWindow path: opentk/src/OpenTK.Platform.Native/ANGLE/ANGLEOpenGLComponent.cs - startLine: 85 + startLine: 82 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.ANGLE @@ -380,7 +380,7 @@ items: repo: https://github.com/opentk/opentk.git id: DestroyContext path: opentk/src/OpenTK.Platform.Native/ANGLE/ANGLEOpenGLComponent.cs - startLine: 199 + startLine: 202 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.ANGLE @@ -418,7 +418,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetBindingsContext path: opentk/src/OpenTK.Platform.Native/ANGLE/ANGLEOpenGLComponent.cs - startLine: 219 + startLine: 222 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.ANGLE @@ -455,7 +455,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetProcedureAddress path: opentk/src/OpenTK.Platform.Native/ANGLE/ANGLEOpenGLComponent.cs - startLine: 226 + startLine: 229 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.ANGLE @@ -502,7 +502,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetCurrentContext path: opentk/src/OpenTK.Platform.Native/ANGLE/ANGLEOpenGLComponent.cs - startLine: 232 + startLine: 235 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.ANGLE @@ -535,7 +535,7 @@ items: repo: https://github.com/opentk/opentk.git id: SetCurrentContext path: opentk/src/OpenTK.Platform.Native/ANGLE/ANGLEOpenGLComponent.cs - startLine: 246 + startLine: 249 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.ANGLE @@ -575,7 +575,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetSharedContext path: opentk/src/OpenTK.Platform.Native/ANGLE/ANGLEOpenGLComponent.cs - startLine: 260 + startLine: 263 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.ANGLE @@ -612,7 +612,7 @@ items: repo: https://github.com/opentk/opentk.git id: SetSwapInterval path: opentk/src/OpenTK.Platform.Native/ANGLE/ANGLEOpenGLComponent.cs - startLine: 269 + startLine: 272 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.ANGLE @@ -649,7 +649,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetSwapInterval path: opentk/src/OpenTK.Platform.Native/ANGLE/ANGLEOpenGLComponent.cs - startLine: 276 + startLine: 279 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.ANGLE @@ -682,7 +682,7 @@ items: repo: https://github.com/opentk/opentk.git id: SwapBuffers path: opentk/src/OpenTK.Platform.Native/ANGLE/ANGLEOpenGLComponent.cs - startLine: 282 + startLine: 285 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.ANGLE @@ -716,7 +716,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetEglDisplay path: opentk/src/OpenTK.Platform.Native/ANGLE/ANGLEOpenGLComponent.cs - startLine: 292 + startLine: 295 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.ANGLE @@ -747,7 +747,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetEglContext path: opentk/src/OpenTK.Platform.Native/ANGLE/ANGLEOpenGLComponent.cs - startLine: 302 + startLine: 305 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.ANGLE @@ -782,7 +782,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetEglSurface path: opentk/src/OpenTK.Platform.Native/ANGLE/ANGLEOpenGLComponent.cs - startLine: 314 + startLine: 317 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.ANGLE @@ -1215,35 +1215,42 @@ references: href: OpenTK.Core.Utility.html - uid: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.Initialize* commentId: Overload:OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.Initialize - href: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.html#OpenTK_Platform_Native_ANGLE_ANGLEOpenGLComponent_Initialize_OpenTK_Core_Platform_PalComponents_ + href: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.html#OpenTK_Platform_Native_ANGLE_ANGLEOpenGLComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ name: Initialize nameWithType: ANGLEOpenGLComponent.Initialize fullName: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.Initialize -- uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) - commentId: M:OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) +- uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + commentId: M:OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_PalComponents_ - name: Initialize(PalComponents) - nameWithType: IPalComponent.Initialize(PalComponents) - fullName: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + name: Initialize(ToolkitOptions) + nameWithType: IPalComponent.Initialize(ToolkitOptions) + fullName: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) spec.csharp: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_PalComponents_ + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.PalComponents - name: PalComponents - href: OpenTK.Core.Platform.PalComponents.html + - uid: OpenTK.Core.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Core.Platform.ToolkitOptions.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_PalComponents_ + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.PalComponents - name: PalComponents - href: OpenTK.Core.Platform.PalComponents.html + - uid: OpenTK.Core.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Core.Platform.ToolkitOptions.html - name: ) +- uid: OpenTK.Core.Platform.ToolkitOptions + commentId: T:OpenTK.Core.Platform.ToolkitOptions + parent: OpenTK.Core.Platform + href: OpenTK.Core.Platform.ToolkitOptions.html + name: ToolkitOptions + nameWithType: ToolkitOptions + fullName: OpenTK.Core.Platform.ToolkitOptions - uid: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.CanShareContexts* commentId: Overload:OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.CanShareContexts href: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.html#OpenTK_Platform_Native_ANGLE_ANGLEOpenGLComponent_CanShareContexts diff --git a/api/OpenTK.Platform.Native.PlatformComponents.yml b/api/OpenTK.Platform.Native.PlatformComponents.yml index 3a71ed28..e0ae4192 100644 --- a/api/OpenTK.Platform.Native.PlatformComponents.yml +++ b/api/OpenTK.Platform.Native.PlatformComponents.yml @@ -7,6 +7,7 @@ items: children: - OpenTK.Platform.Native.PlatformComponents.CreateClipboardComponent - OpenTK.Platform.Native.PlatformComponents.CreateCursorComponent + - OpenTK.Platform.Native.PlatformComponents.CreateDialogComponent - OpenTK.Platform.Native.PlatformComponents.CreateDisplayComponent - OpenTK.Platform.Native.PlatformComponents.CreateIconComponent - OpenTK.Platform.Native.PlatformComponents.CreateJoystickComponent @@ -133,7 +134,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetBackend path: opentk/src/OpenTK.Platform.Native/PlatformComponents.cs - startLine: 103 + startLine: 107 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native @@ -164,15 +165,17 @@ items: repo: https://github.com/opentk/opentk.git id: CreateWindowComponent path: opentk/src/OpenTK.Platform.Native/PlatformComponents.cs - startLine: 185 + startLine: 189 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native + summary: Creates a platform specific component. example: [] syntax: content: public static IWindowComponent CreateWindowComponent() return: type: OpenTK.Core.Platform.IWindowComponent + description: The platform specific component content.vb: Public Shared Function CreateWindowComponent() As IWindowComponent overload: OpenTK.Platform.Native.PlatformComponents.CreateWindowComponent* - uid: OpenTK.Platform.Native.PlatformComponents.CreateOpenGLComponent @@ -193,15 +196,17 @@ items: repo: https://github.com/opentk/opentk.git id: CreateOpenGLComponent path: opentk/src/OpenTK.Platform.Native/PlatformComponents.cs - startLine: 191 + startLine: 195 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native + summary: Creates a platform specific component. example: [] syntax: content: public static IOpenGLComponent CreateOpenGLComponent() return: type: OpenTK.Core.Platform.IOpenGLComponent + description: The platform specific component content.vb: Public Shared Function CreateOpenGLComponent() As IOpenGLComponent overload: OpenTK.Platform.Native.PlatformComponents.CreateOpenGLComponent* - uid: OpenTK.Platform.Native.PlatformComponents.CreateDisplayComponent @@ -222,15 +227,17 @@ items: repo: https://github.com/opentk/opentk.git id: CreateDisplayComponent path: opentk/src/OpenTK.Platform.Native/PlatformComponents.cs - startLine: 206 + startLine: 210 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native + summary: Creates a platform specific component. example: [] syntax: content: public static IDisplayComponent CreateDisplayComponent() return: type: OpenTK.Core.Platform.IDisplayComponent + description: The platform specific component content.vb: Public Shared Function CreateDisplayComponent() As IDisplayComponent overload: OpenTK.Platform.Native.PlatformComponents.CreateDisplayComponent* - uid: OpenTK.Platform.Native.PlatformComponents.CreateShellComponent @@ -251,15 +258,17 @@ items: repo: https://github.com/opentk/opentk.git id: CreateShellComponent path: opentk/src/OpenTK.Platform.Native/PlatformComponents.cs - startLine: 212 + startLine: 216 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native + summary: Creates a platform specific component. example: [] syntax: content: public static IShellComponent CreateShellComponent() return: type: OpenTK.Core.Platform.IShellComponent + description: The platform specific component content.vb: Public Shared Function CreateShellComponent() As IShellComponent overload: OpenTK.Platform.Native.PlatformComponents.CreateShellComponent* - uid: OpenTK.Platform.Native.PlatformComponents.CreateMouseComponent @@ -280,15 +289,17 @@ items: repo: https://github.com/opentk/opentk.git id: CreateMouseComponent path: opentk/src/OpenTK.Platform.Native/PlatformComponents.cs - startLine: 218 + startLine: 222 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native + summary: Creates a platform specific component. example: [] syntax: content: public static IMouseComponent CreateMouseComponent() return: type: OpenTK.Core.Platform.IMouseComponent + description: The platform specific component content.vb: Public Shared Function CreateMouseComponent() As IMouseComponent overload: OpenTK.Platform.Native.PlatformComponents.CreateMouseComponent* - uid: OpenTK.Platform.Native.PlatformComponents.CreateKeyboardComponent @@ -309,15 +320,17 @@ items: repo: https://github.com/opentk/opentk.git id: CreateKeyboardComponent path: opentk/src/OpenTK.Platform.Native/PlatformComponents.cs - startLine: 224 + startLine: 228 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native + summary: Creates a platform specific component. example: [] syntax: content: public static IKeyboardComponent CreateKeyboardComponent() return: type: OpenTK.Core.Platform.IKeyboardComponent + description: The platform specific component content.vb: Public Shared Function CreateKeyboardComponent() As IKeyboardComponent overload: OpenTK.Platform.Native.PlatformComponents.CreateKeyboardComponent* - uid: OpenTK.Platform.Native.PlatformComponents.CreateCursorComponent @@ -338,15 +351,17 @@ items: repo: https://github.com/opentk/opentk.git id: CreateCursorComponent path: opentk/src/OpenTK.Platform.Native/PlatformComponents.cs - startLine: 230 + startLine: 234 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native + summary: Creates a platform specific component. example: [] syntax: content: public static ICursorComponent CreateCursorComponent() return: type: OpenTK.Core.Platform.ICursorComponent + description: The platform specific component content.vb: Public Shared Function CreateCursorComponent() As ICursorComponent overload: OpenTK.Platform.Native.PlatformComponents.CreateCursorComponent* - uid: OpenTK.Platform.Native.PlatformComponents.CreateIconComponent @@ -367,15 +382,17 @@ items: repo: https://github.com/opentk/opentk.git id: CreateIconComponent path: opentk/src/OpenTK.Platform.Native/PlatformComponents.cs - startLine: 236 + startLine: 240 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native + summary: Creates a platform specific component. example: [] syntax: content: public static IIconComponent CreateIconComponent() return: type: OpenTK.Core.Platform.IIconComponent + description: The platform specific component content.vb: Public Shared Function CreateIconComponent() As IIconComponent overload: OpenTK.Platform.Native.PlatformComponents.CreateIconComponent* - uid: OpenTK.Platform.Native.PlatformComponents.CreateClipboardComponent @@ -396,15 +413,17 @@ items: repo: https://github.com/opentk/opentk.git id: CreateClipboardComponent path: opentk/src/OpenTK.Platform.Native/PlatformComponents.cs - startLine: 242 + startLine: 246 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native + summary: Creates a platform specific component. example: [] syntax: content: public static IClipboardComponent CreateClipboardComponent() return: type: OpenTK.Core.Platform.IClipboardComponent + description: The platform specific component content.vb: Public Shared Function CreateClipboardComponent() As IClipboardComponent overload: OpenTK.Platform.Native.PlatformComponents.CreateClipboardComponent* - uid: OpenTK.Platform.Native.PlatformComponents.CreateSurfaceComponent @@ -425,15 +444,17 @@ items: repo: https://github.com/opentk/opentk.git id: CreateSurfaceComponent path: opentk/src/OpenTK.Platform.Native/PlatformComponents.cs - startLine: 248 + startLine: 252 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native + summary: Creates a platform specific component. example: [] syntax: content: public static ISurfaceComponent CreateSurfaceComponent() return: type: OpenTK.Core.Platform.ISurfaceComponent + description: The platform specific component content.vb: Public Shared Function CreateSurfaceComponent() As ISurfaceComponent overload: OpenTK.Platform.Native.PlatformComponents.CreateSurfaceComponent* - uid: OpenTK.Platform.Native.PlatformComponents.CreateJoystickComponent @@ -454,17 +475,50 @@ items: repo: https://github.com/opentk/opentk.git id: CreateJoystickComponent path: opentk/src/OpenTK.Platform.Native/PlatformComponents.cs - startLine: 254 + startLine: 258 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native + summary: Creates a platform specific component. example: [] syntax: content: public static IJoystickComponent CreateJoystickComponent() return: type: OpenTK.Core.Platform.IJoystickComponent + description: The platform specific component content.vb: Public Shared Function CreateJoystickComponent() As IJoystickComponent overload: OpenTK.Platform.Native.PlatformComponents.CreateJoystickComponent* +- uid: OpenTK.Platform.Native.PlatformComponents.CreateDialogComponent + commentId: M:OpenTK.Platform.Native.PlatformComponents.CreateDialogComponent + id: CreateDialogComponent + parent: OpenTK.Platform.Native.PlatformComponents + langs: + - csharp + - vb + name: CreateDialogComponent() + nameWithType: PlatformComponents.CreateDialogComponent() + fullName: OpenTK.Platform.Native.PlatformComponents.CreateDialogComponent() + type: Method + source: + remote: + path: src/OpenTK.Platform.Native/PlatformComponents.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: CreateDialogComponent + path: opentk/src/OpenTK.Platform.Native/PlatformComponents.cs + startLine: 264 + assemblies: + - OpenTK.Platform.Native + namespace: OpenTK.Platform.Native + summary: Creates a platform specific component. + example: [] + syntax: + content: public static IDialogComponent CreateDialogComponent() + return: + type: OpenTK.Core.Platform.IDialogComponent + description: The platform specific component + content.vb: Public Shared Function CreateDialogComponent() As IDialogComponent + overload: OpenTK.Platform.Native.PlatformComponents.CreateDialogComponent* references: - uid: OpenTK.Platform.Native commentId: N:OpenTK.Platform.Native @@ -942,3 +996,16 @@ references: name: IJoystickComponent nameWithType: IJoystickComponent fullName: OpenTK.Core.Platform.IJoystickComponent +- uid: OpenTK.Platform.Native.PlatformComponents.CreateDialogComponent* + commentId: Overload:OpenTK.Platform.Native.PlatformComponents.CreateDialogComponent + href: OpenTK.Platform.Native.PlatformComponents.html#OpenTK_Platform_Native_PlatformComponents_CreateDialogComponent + name: CreateDialogComponent + nameWithType: PlatformComponents.CreateDialogComponent + fullName: OpenTK.Platform.Native.PlatformComponents.CreateDialogComponent +- uid: OpenTK.Core.Platform.IDialogComponent + commentId: T:OpenTK.Core.Platform.IDialogComponent + parent: OpenTK.Core.Platform + href: OpenTK.Core.Platform.IDialogComponent.html + name: IDialogComponent + nameWithType: IDialogComponent + fullName: OpenTK.Core.Platform.IDialogComponent diff --git a/api/OpenTK.Platform.Native.SDL.SDLClipboardComponent.yml b/api/OpenTK.Platform.Native.SDL.SDLClipboardComponent.yml index 6d62a619..ea11bbf8 100644 --- a/api/OpenTK.Platform.Native.SDL.SDLClipboardComponent.yml +++ b/api/OpenTK.Platform.Native.SDL.SDLClipboardComponent.yml @@ -9,9 +9,8 @@ items: - OpenTK.Platform.Native.SDL.SDLClipboardComponent.GetClipboardBitmap - OpenTK.Platform.Native.SDL.SDLClipboardComponent.GetClipboardFiles - OpenTK.Platform.Native.SDL.SDLClipboardComponent.GetClipboardFormat - - OpenTK.Platform.Native.SDL.SDLClipboardComponent.GetClipboardHTML - OpenTK.Platform.Native.SDL.SDLClipboardComponent.GetClipboardText - - OpenTK.Platform.Native.SDL.SDLClipboardComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - OpenTK.Platform.Native.SDL.SDLClipboardComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - OpenTK.Platform.Native.SDL.SDLClipboardComponent.Logger - OpenTK.Platform.Native.SDL.SDLClipboardComponent.Name - OpenTK.Platform.Native.SDL.SDLClipboardComponent.Provides @@ -150,16 +149,16 @@ items: overload: OpenTK.Platform.Native.SDL.SDLClipboardComponent.Logger* implements: - OpenTK.Core.Platform.IPalComponent.Logger -- uid: OpenTK.Platform.Native.SDL.SDLClipboardComponent.Initialize(OpenTK.Core.Platform.PalComponents) - commentId: M:OpenTK.Platform.Native.SDL.SDLClipboardComponent.Initialize(OpenTK.Core.Platform.PalComponents) - id: Initialize(OpenTK.Core.Platform.PalComponents) +- uid: OpenTK.Platform.Native.SDL.SDLClipboardComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Native.SDL.SDLClipboardComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + id: Initialize(OpenTK.Core.Platform.ToolkitOptions) parent: OpenTK.Platform.Native.SDL.SDLClipboardComponent langs: - csharp - vb - name: Initialize(PalComponents) - nameWithType: SDLClipboardComponent.Initialize(PalComponents) - fullName: OpenTK.Platform.Native.SDL.SDLClipboardComponent.Initialize(OpenTK.Core.Platform.PalComponents) + name: Initialize(ToolkitOptions) + nameWithType: SDLClipboardComponent.Initialize(ToolkitOptions) + fullName: OpenTK.Platform.Native.SDL.SDLClipboardComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) type: Method source: remote: @@ -172,18 +171,18 @@ items: assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.SDL - summary: Initialize the driver. + summary: Initialize the component. example: [] syntax: - content: public void Initialize(PalComponents which) + content: public void Initialize(ToolkitOptions options) parameters: - - id: which - type: OpenTK.Core.Platform.PalComponents - description: Bitfield of which components the driver need to be initialized. - content.vb: Public Sub Initialize(which As PalComponents) + - id: options + type: OpenTK.Core.Platform.ToolkitOptions + description: The options to initialize the component with. + content.vb: Public Sub Initialize(options As ToolkitOptions) overload: OpenTK.Platform.Native.SDL.SDLClipboardComponent.Initialize* implements: - - OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - uid: OpenTK.Platform.Native.SDL.SDLClipboardComponent.SupportedFormats commentId: P:OpenTK.Platform.Native.SDL.SDLClipboardComponent.SupportedFormats id: SupportedFormats @@ -202,7 +201,7 @@ items: repo: https://github.com/opentk/opentk.git id: SupportedFormats path: opentk/src/OpenTK.Platform.Native/SDL/SDLClipboardComponent.cs - startLine: 36 + startLine: 32 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.SDL @@ -235,7 +234,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetClipboardFormat path: opentk/src/OpenTK.Platform.Native/SDL/SDLClipboardComponent.cs - startLine: 39 + startLine: 35 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.SDL @@ -268,7 +267,7 @@ items: repo: https://github.com/opentk/opentk.git id: SetClipboardText path: opentk/src/OpenTK.Platform.Native/SDL/SDLClipboardComponent.cs - startLine: 46 + startLine: 42 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.SDL @@ -305,7 +304,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetClipboardText path: opentk/src/OpenTK.Platform.Native/SDL/SDLClipboardComponent.cs - startLine: 57 + startLine: 53 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.SDL @@ -341,7 +340,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetClipboardAudio path: opentk/src/OpenTK.Platform.Native/SDL/SDLClipboardComponent.cs - startLine: 78 + startLine: 74 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.SDL @@ -377,7 +376,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetClipboardBitmap path: opentk/src/OpenTK.Platform.Native/SDL/SDLClipboardComponent.cs - startLine: 84 + startLine: 80 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.SDL @@ -395,42 +394,6 @@ items: overload: OpenTK.Platform.Native.SDL.SDLClipboardComponent.GetClipboardBitmap* implements: - OpenTK.Core.Platform.IClipboardComponent.GetClipboardBitmap -- uid: OpenTK.Platform.Native.SDL.SDLClipboardComponent.GetClipboardHTML - commentId: M:OpenTK.Platform.Native.SDL.SDLClipboardComponent.GetClipboardHTML - id: GetClipboardHTML - parent: OpenTK.Platform.Native.SDL.SDLClipboardComponent - langs: - - csharp - - vb - name: GetClipboardHTML() - nameWithType: SDLClipboardComponent.GetClipboardHTML() - fullName: OpenTK.Platform.Native.SDL.SDLClipboardComponent.GetClipboardHTML() - type: Method - source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLClipboardComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: GetClipboardHTML - path: opentk/src/OpenTK.Platform.Native/SDL/SDLClipboardComponent.cs - startLine: 90 - assemblies: - - OpenTK.Platform.Native - namespace: OpenTK.Platform.Native.SDL - summary: >- - Gets the HTML string currently in the clipboard. - - This function returns null if the current clipboard data doesn't have the format. - example: [] - syntax: - content: public string? GetClipboardHTML() - return: - type: System.String - description: The HTML string currently in the clipboard. - content.vb: Public Function GetClipboardHTML() As String - overload: OpenTK.Platform.Native.SDL.SDLClipboardComponent.GetClipboardHTML* - implements: - - OpenTK.Core.Platform.IClipboardComponent.GetClipboardHTML - uid: OpenTK.Platform.Native.SDL.SDLClipboardComponent.GetClipboardFiles commentId: M:OpenTK.Platform.Native.SDL.SDLClipboardComponent.GetClipboardFiles id: GetClipboardFiles @@ -449,7 +412,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetClipboardFiles path: opentk/src/OpenTK.Platform.Native/SDL/SDLClipboardComponent.cs - startLine: 96 + startLine: 86 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.SDL @@ -883,35 +846,42 @@ references: href: OpenTK.Core.Utility.html - uid: OpenTK.Platform.Native.SDL.SDLClipboardComponent.Initialize* commentId: Overload:OpenTK.Platform.Native.SDL.SDLClipboardComponent.Initialize - href: OpenTK.Platform.Native.SDL.SDLClipboardComponent.html#OpenTK_Platform_Native_SDL_SDLClipboardComponent_Initialize_OpenTK_Core_Platform_PalComponents_ + href: OpenTK.Platform.Native.SDL.SDLClipboardComponent.html#OpenTK_Platform_Native_SDL_SDLClipboardComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ name: Initialize nameWithType: SDLClipboardComponent.Initialize fullName: OpenTK.Platform.Native.SDL.SDLClipboardComponent.Initialize -- uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) - commentId: M:OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) +- uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + commentId: M:OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_PalComponents_ - name: Initialize(PalComponents) - nameWithType: IPalComponent.Initialize(PalComponents) - fullName: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + name: Initialize(ToolkitOptions) + nameWithType: IPalComponent.Initialize(ToolkitOptions) + fullName: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) spec.csharp: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_PalComponents_ + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.PalComponents - name: PalComponents - href: OpenTK.Core.Platform.PalComponents.html + - uid: OpenTK.Core.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Core.Platform.ToolkitOptions.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_PalComponents_ + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.PalComponents - name: PalComponents - href: OpenTK.Core.Platform.PalComponents.html + - uid: OpenTK.Core.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Core.Platform.ToolkitOptions.html - name: ) +- uid: OpenTK.Core.Platform.ToolkitOptions + commentId: T:OpenTK.Core.Platform.ToolkitOptions + parent: OpenTK.Core.Platform + href: OpenTK.Core.Platform.ToolkitOptions.html + name: ToolkitOptions + nameWithType: ToolkitOptions + fullName: OpenTK.Core.Platform.ToolkitOptions - uid: OpenTK.Platform.Native.SDL.SDLClipboardComponent.SupportedFormats* commentId: Overload:OpenTK.Platform.Native.SDL.SDLClipboardComponent.SupportedFormats href: OpenTK.Platform.Native.SDL.SDLClipboardComponent.html#OpenTK_Platform_Native_SDL_SDLClipboardComponent_SupportedFormats @@ -1199,37 +1169,6 @@ references: name: Bitmap nameWithType: Bitmap fullName: OpenTK.Core.Platform.Bitmap -- uid: OpenTK.Core.Platform.ClipboardFormat.HTML - commentId: F:OpenTK.Core.Platform.ClipboardFormat.HTML - href: OpenTK.Core.Platform.ClipboardFormat.html#OpenTK_Core_Platform_ClipboardFormat_HTML - name: HTML - nameWithType: ClipboardFormat.HTML - fullName: OpenTK.Core.Platform.ClipboardFormat.HTML -- uid: OpenTK.Platform.Native.SDL.SDLClipboardComponent.GetClipboardHTML* - commentId: Overload:OpenTK.Platform.Native.SDL.SDLClipboardComponent.GetClipboardHTML - href: OpenTK.Platform.Native.SDL.SDLClipboardComponent.html#OpenTK_Platform_Native_SDL_SDLClipboardComponent_GetClipboardHTML - name: GetClipboardHTML - nameWithType: SDLClipboardComponent.GetClipboardHTML - fullName: OpenTK.Platform.Native.SDL.SDLClipboardComponent.GetClipboardHTML -- uid: OpenTK.Core.Platform.IClipboardComponent.GetClipboardHTML - commentId: M:OpenTK.Core.Platform.IClipboardComponent.GetClipboardHTML - parent: OpenTK.Core.Platform.IClipboardComponent - href: OpenTK.Core.Platform.IClipboardComponent.html#OpenTK_Core_Platform_IClipboardComponent_GetClipboardHTML - name: GetClipboardHTML() - nameWithType: IClipboardComponent.GetClipboardHTML() - fullName: OpenTK.Core.Platform.IClipboardComponent.GetClipboardHTML() - spec.csharp: - - uid: OpenTK.Core.Platform.IClipboardComponent.GetClipboardHTML - name: GetClipboardHTML - href: OpenTK.Core.Platform.IClipboardComponent.html#OpenTK_Core_Platform_IClipboardComponent_GetClipboardHTML - - name: ( - - name: ) - spec.vb: - - uid: OpenTK.Core.Platform.IClipboardComponent.GetClipboardHTML - name: GetClipboardHTML - href: OpenTK.Core.Platform.IClipboardComponent.html#OpenTK_Core_Platform_IClipboardComponent_GetClipboardHTML - - name: ( - - name: ) - uid: OpenTK.Core.Platform.ClipboardFormat.Files commentId: F:OpenTK.Core.Platform.ClipboardFormat.Files href: OpenTK.Core.Platform.ClipboardFormat.html#OpenTK_Core_Platform_ClipboardFormat_Files diff --git a/api/OpenTK.Platform.Native.SDL.SDLCursorComponent.yml b/api/OpenTK.Platform.Native.SDL.SDLCursorComponent.yml index e1ff000f..8e8621ff 100644 --- a/api/OpenTK.Platform.Native.SDL.SDLCursorComponent.yml +++ b/api/OpenTK.Platform.Native.SDL.SDLCursorComponent.yml @@ -13,7 +13,7 @@ items: - OpenTK.Platform.Native.SDL.SDLCursorComponent.Destroy(OpenTK.Core.Platform.CursorHandle) - OpenTK.Platform.Native.SDL.SDLCursorComponent.GetHotspot(OpenTK.Core.Platform.CursorHandle,System.Int32@,System.Int32@) - OpenTK.Platform.Native.SDL.SDLCursorComponent.GetSize(OpenTK.Core.Platform.CursorHandle,System.Int32@,System.Int32@) - - OpenTK.Platform.Native.SDL.SDLCursorComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - OpenTK.Platform.Native.SDL.SDLCursorComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - OpenTK.Platform.Native.SDL.SDLCursorComponent.IsSystemCursor(OpenTK.Core.Platform.CursorHandle) - OpenTK.Platform.Native.SDL.SDLCursorComponent.Logger - OpenTK.Platform.Native.SDL.SDLCursorComponent.Name @@ -151,16 +151,16 @@ items: overload: OpenTK.Platform.Native.SDL.SDLCursorComponent.Logger* implements: - OpenTK.Core.Platform.IPalComponent.Logger -- uid: OpenTK.Platform.Native.SDL.SDLCursorComponent.Initialize(OpenTK.Core.Platform.PalComponents) - commentId: M:OpenTK.Platform.Native.SDL.SDLCursorComponent.Initialize(OpenTK.Core.Platform.PalComponents) - id: Initialize(OpenTK.Core.Platform.PalComponents) +- uid: OpenTK.Platform.Native.SDL.SDLCursorComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Native.SDL.SDLCursorComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + id: Initialize(OpenTK.Core.Platform.ToolkitOptions) parent: OpenTK.Platform.Native.SDL.SDLCursorComponent langs: - csharp - vb - name: Initialize(PalComponents) - nameWithType: SDLCursorComponent.Initialize(PalComponents) - fullName: OpenTK.Platform.Native.SDL.SDLCursorComponent.Initialize(OpenTK.Core.Platform.PalComponents) + name: Initialize(ToolkitOptions) + nameWithType: SDLCursorComponent.Initialize(ToolkitOptions) + fullName: OpenTK.Platform.Native.SDL.SDLCursorComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) type: Method source: remote: @@ -173,18 +173,18 @@ items: assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.SDL - summary: Initialize the driver. + summary: Initialize the component. example: [] syntax: - content: public void Initialize(PalComponents which) + content: public void Initialize(ToolkitOptions options) parameters: - - id: which - type: OpenTK.Core.Platform.PalComponents - description: Bitfield of which components the driver need to be initialized. - content.vb: Public Sub Initialize(which As PalComponents) + - id: options + type: OpenTK.Core.Platform.ToolkitOptions + description: The options to initialize the component with. + content.vb: Public Sub Initialize(options As ToolkitOptions) overload: OpenTK.Platform.Native.SDL.SDLCursorComponent.Initialize* implements: - - OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - uid: OpenTK.Platform.Native.SDL.SDLCursorComponent.CanLoadSystemCursors commentId: P:OpenTK.Platform.Native.SDL.SDLCursorComponent.CanLoadSystemCursors id: CanLoadSystemCursors @@ -203,7 +203,7 @@ items: repo: https://github.com/opentk/opentk.git id: CanLoadSystemCursors path: opentk/src/OpenTK.Platform.Native/SDL/SDLCursorComponent.cs - startLine: 34 + startLine: 30 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.SDL @@ -239,7 +239,7 @@ items: repo: https://github.com/opentk/opentk.git id: CanInspectSystemCursors path: opentk/src/OpenTK.Platform.Native/SDL/SDLCursorComponent.cs - startLine: 37 + startLine: 33 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.SDL @@ -282,7 +282,7 @@ items: repo: https://github.com/opentk/opentk.git id: Create path: opentk/src/OpenTK.Platform.Native/SDL/SDLCursorComponent.cs - startLine: 40 + startLine: 36 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.SDL @@ -327,7 +327,7 @@ items: repo: https://github.com/opentk/opentk.git id: Create path: opentk/src/OpenTK.Platform.Native/SDL/SDLCursorComponent.cs - startLine: 118 + startLine: 114 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.SDL @@ -386,7 +386,7 @@ items: repo: https://github.com/opentk/opentk.git id: Create path: opentk/src/OpenTK.Platform.Native/SDL/SDLCursorComponent.cs - startLine: 144 + startLine: 140 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.SDL @@ -448,7 +448,7 @@ items: repo: https://github.com/opentk/opentk.git id: Destroy path: opentk/src/OpenTK.Platform.Native/SDL/SDLCursorComponent.cs - startLine: 171 + startLine: 167 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.SDL @@ -486,7 +486,7 @@ items: repo: https://github.com/opentk/opentk.git id: IsSystemCursor path: opentk/src/OpenTK.Platform.Native/SDL/SDLCursorComponent.cs - startLine: 202 + startLine: 198 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.SDL @@ -526,7 +526,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetSize path: opentk/src/OpenTK.Platform.Native/SDL/SDLCursorComponent.cs - startLine: 209 + startLine: 205 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.SDL @@ -579,7 +579,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetHotspot path: opentk/src/OpenTK.Platform.Native/SDL/SDLCursorComponent.cs - startLine: 223 + startLine: 219 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.SDL @@ -1033,35 +1033,42 @@ references: href: OpenTK.Core.Utility.html - uid: OpenTK.Platform.Native.SDL.SDLCursorComponent.Initialize* commentId: Overload:OpenTK.Platform.Native.SDL.SDLCursorComponent.Initialize - href: OpenTK.Platform.Native.SDL.SDLCursorComponent.html#OpenTK_Platform_Native_SDL_SDLCursorComponent_Initialize_OpenTK_Core_Platform_PalComponents_ + href: OpenTK.Platform.Native.SDL.SDLCursorComponent.html#OpenTK_Platform_Native_SDL_SDLCursorComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ name: Initialize nameWithType: SDLCursorComponent.Initialize fullName: OpenTK.Platform.Native.SDL.SDLCursorComponent.Initialize -- uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) - commentId: M:OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) +- uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + commentId: M:OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_PalComponents_ - name: Initialize(PalComponents) - nameWithType: IPalComponent.Initialize(PalComponents) - fullName: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + name: Initialize(ToolkitOptions) + nameWithType: IPalComponent.Initialize(ToolkitOptions) + fullName: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) spec.csharp: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_PalComponents_ + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.PalComponents - name: PalComponents - href: OpenTK.Core.Platform.PalComponents.html + - uid: OpenTK.Core.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Core.Platform.ToolkitOptions.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_PalComponents_ + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.PalComponents - name: PalComponents - href: OpenTK.Core.Platform.PalComponents.html + - uid: OpenTK.Core.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Core.Platform.ToolkitOptions.html - name: ) +- uid: OpenTK.Core.Platform.ToolkitOptions + commentId: T:OpenTK.Core.Platform.ToolkitOptions + parent: OpenTK.Core.Platform + href: OpenTK.Core.Platform.ToolkitOptions.html + name: ToolkitOptions + nameWithType: ToolkitOptions + fullName: OpenTK.Core.Platform.ToolkitOptions - uid: OpenTK.Core.Platform.ICursorComponent.Create(OpenTK.Core.Platform.SystemCursorType) commentId: M:OpenTK.Core.Platform.ICursorComponent.Create(OpenTK.Core.Platform.SystemCursorType) parent: OpenTK.Core.Platform.ICursorComponent diff --git a/api/OpenTK.Platform.Native.SDL.SDLDisplayComponent.yml b/api/OpenTK.Platform.Native.SDL.SDLDisplayComponent.yml index 38b0be61..be6bca3e 100644 --- a/api/OpenTK.Platform.Native.SDL.SDLDisplayComponent.yml +++ b/api/OpenTK.Platform.Native.SDL.SDLDisplayComponent.yml @@ -17,7 +17,7 @@ items: - OpenTK.Platform.Native.SDL.SDLDisplayComponent.GetVideoMode(OpenTK.Core.Platform.DisplayHandle,OpenTK.Core.Platform.VideoMode@) - OpenTK.Platform.Native.SDL.SDLDisplayComponent.GetVirtualPosition(OpenTK.Core.Platform.DisplayHandle,System.Int32@,System.Int32@) - OpenTK.Platform.Native.SDL.SDLDisplayComponent.GetWorkArea(OpenTK.Core.Platform.DisplayHandle,OpenTK.Mathematics.Box2i@) - - OpenTK.Platform.Native.SDL.SDLDisplayComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - OpenTK.Platform.Native.SDL.SDLDisplayComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - OpenTK.Platform.Native.SDL.SDLDisplayComponent.IsPrimary(OpenTK.Core.Platform.DisplayHandle) - OpenTK.Platform.Native.SDL.SDLDisplayComponent.Logger - OpenTK.Platform.Native.SDL.SDLDisplayComponent.Name @@ -157,16 +157,16 @@ items: overload: OpenTK.Platform.Native.SDL.SDLDisplayComponent.Logger* implements: - OpenTK.Core.Platform.IPalComponent.Logger -- uid: OpenTK.Platform.Native.SDL.SDLDisplayComponent.Initialize(OpenTK.Core.Platform.PalComponents) - commentId: M:OpenTK.Platform.Native.SDL.SDLDisplayComponent.Initialize(OpenTK.Core.Platform.PalComponents) - id: Initialize(OpenTK.Core.Platform.PalComponents) +- uid: OpenTK.Platform.Native.SDL.SDLDisplayComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Native.SDL.SDLDisplayComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + id: Initialize(OpenTK.Core.Platform.ToolkitOptions) parent: OpenTK.Platform.Native.SDL.SDLDisplayComponent langs: - csharp - vb - name: Initialize(PalComponents) - nameWithType: SDLDisplayComponent.Initialize(PalComponents) - fullName: OpenTK.Platform.Native.SDL.SDLDisplayComponent.Initialize(OpenTK.Core.Platform.PalComponents) + name: Initialize(ToolkitOptions) + nameWithType: SDLDisplayComponent.Initialize(ToolkitOptions) + fullName: OpenTK.Platform.Native.SDL.SDLDisplayComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) type: Method source: remote: @@ -179,18 +179,18 @@ items: assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.SDL - summary: Initialize the driver. + summary: Initialize the component. example: [] syntax: - content: public void Initialize(PalComponents which) + content: public void Initialize(ToolkitOptions options) parameters: - - id: which - type: OpenTK.Core.Platform.PalComponents - description: Bitfield of which components the driver need to be initialized. - content.vb: Public Sub Initialize(which As PalComponents) + - id: options + type: OpenTK.Core.Platform.ToolkitOptions + description: The options to initialize the component with. + content.vb: Public Sub Initialize(options As ToolkitOptions) overload: OpenTK.Platform.Native.SDL.SDLDisplayComponent.Initialize* implements: - - OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - uid: OpenTK.Platform.Native.SDL.SDLDisplayComponent.CanSetVideoMode commentId: P:OpenTK.Platform.Native.SDL.SDLDisplayComponent.CanSetVideoMode id: CanSetVideoMode @@ -209,7 +209,7 @@ items: repo: https://github.com/opentk/opentk.git id: CanSetVideoMode path: opentk/src/OpenTK.Platform.Native/SDL/SDLDisplayComponent.cs - startLine: 36 + startLine: 32 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.SDL @@ -239,7 +239,7 @@ items: repo: https://github.com/opentk/opentk.git id: CanGetVirtualPosition path: opentk/src/OpenTK.Platform.Native/SDL/SDLDisplayComponent.cs - startLine: 39 + startLine: 35 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.SDL @@ -272,7 +272,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetDisplayCount path: opentk/src/OpenTK.Platform.Native/SDL/SDLDisplayComponent.cs - startLine: 62 + startLine: 58 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.SDL @@ -305,7 +305,7 @@ items: repo: https://github.com/opentk/opentk.git id: Open path: opentk/src/OpenTK.Platform.Native/SDL/SDLDisplayComponent.cs - startLine: 68 + startLine: 64 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.SDL @@ -349,7 +349,7 @@ items: repo: https://github.com/opentk/opentk.git id: OpenPrimary path: opentk/src/OpenTK.Platform.Native/SDL/SDLDisplayComponent.cs - startLine: 81 + startLine: 77 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.SDL @@ -382,7 +382,7 @@ items: repo: https://github.com/opentk/opentk.git id: Close path: opentk/src/OpenTK.Platform.Native/SDL/SDLDisplayComponent.cs - startLine: 88 + startLine: 84 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.SDL @@ -420,7 +420,7 @@ items: repo: https://github.com/opentk/opentk.git id: IsPrimary path: opentk/src/OpenTK.Platform.Native/SDL/SDLDisplayComponent.cs - startLine: 95 + startLine: 91 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.SDL @@ -457,7 +457,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetName path: opentk/src/OpenTK.Platform.Native/SDL/SDLDisplayComponent.cs - startLine: 104 + startLine: 100 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.SDL @@ -498,7 +498,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetVideoMode path: opentk/src/OpenTK.Platform.Native/SDL/SDLDisplayComponent.cs - startLine: 119 + startLine: 115 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.SDL @@ -542,7 +542,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetSupportedVideoModes path: opentk/src/OpenTK.Platform.Native/SDL/SDLDisplayComponent.cs - startLine: 135 + startLine: 131 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.SDL @@ -583,7 +583,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetVirtualPosition path: opentk/src/OpenTK.Platform.Native/SDL/SDLDisplayComponent.cs - startLine: 158 + startLine: 154 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.SDL @@ -633,7 +633,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetResolution path: opentk/src/OpenTK.Platform.Native/SDL/SDLDisplayComponent.cs - startLine: 174 + startLine: 170 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.SDL @@ -680,7 +680,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetWorkArea path: opentk/src/OpenTK.Platform.Native/SDL/SDLDisplayComponent.cs - startLine: 190 + startLine: 186 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.SDL @@ -723,7 +723,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetRefreshRate path: opentk/src/OpenTK.Platform.Native/SDL/SDLDisplayComponent.cs - startLine: 205 + startLine: 201 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.SDL @@ -763,7 +763,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetDisplayScale path: opentk/src/OpenTK.Platform.Native/SDL/SDLDisplayComponent.cs - startLine: 220 + startLine: 216 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.SDL @@ -1204,35 +1204,42 @@ references: href: OpenTK.Core.Utility.html - uid: OpenTK.Platform.Native.SDL.SDLDisplayComponent.Initialize* commentId: Overload:OpenTK.Platform.Native.SDL.SDLDisplayComponent.Initialize - href: OpenTK.Platform.Native.SDL.SDLDisplayComponent.html#OpenTK_Platform_Native_SDL_SDLDisplayComponent_Initialize_OpenTK_Core_Platform_PalComponents_ + href: OpenTK.Platform.Native.SDL.SDLDisplayComponent.html#OpenTK_Platform_Native_SDL_SDLDisplayComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ name: Initialize nameWithType: SDLDisplayComponent.Initialize fullName: OpenTK.Platform.Native.SDL.SDLDisplayComponent.Initialize -- uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) - commentId: M:OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) +- uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + commentId: M:OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_PalComponents_ - name: Initialize(PalComponents) - nameWithType: IPalComponent.Initialize(PalComponents) - fullName: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + name: Initialize(ToolkitOptions) + nameWithType: IPalComponent.Initialize(ToolkitOptions) + fullName: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) spec.csharp: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_PalComponents_ + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.PalComponents - name: PalComponents - href: OpenTK.Core.Platform.PalComponents.html + - uid: OpenTK.Core.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Core.Platform.ToolkitOptions.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_PalComponents_ + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.PalComponents - name: PalComponents - href: OpenTK.Core.Platform.PalComponents.html + - uid: OpenTK.Core.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Core.Platform.ToolkitOptions.html - name: ) +- uid: OpenTK.Core.Platform.ToolkitOptions + commentId: T:OpenTK.Core.Platform.ToolkitOptions + parent: OpenTK.Core.Platform + href: OpenTK.Core.Platform.ToolkitOptions.html + name: ToolkitOptions + nameWithType: ToolkitOptions + fullName: OpenTK.Core.Platform.ToolkitOptions - uid: OpenTK.Platform.Native.SDL.SDLDisplayComponent.CanSetVideoMode* commentId: Overload:OpenTK.Platform.Native.SDL.SDLDisplayComponent.CanSetVideoMode href: OpenTK.Platform.Native.SDL.SDLDisplayComponent.html#OpenTK_Platform_Native_SDL_SDLDisplayComponent_CanSetVideoMode diff --git a/api/OpenTK.Platform.Native.SDL.SDLIconComponent.yml b/api/OpenTK.Platform.Native.SDL.SDLIconComponent.yml index 75765ec7..57eef064 100644 --- a/api/OpenTK.Platform.Native.SDL.SDLIconComponent.yml +++ b/api/OpenTK.Platform.Native.SDL.SDLIconComponent.yml @@ -12,7 +12,7 @@ items: - OpenTK.Platform.Native.SDL.SDLIconComponent.GetBitmapByteSize(OpenTK.Core.Platform.IconHandle) - OpenTK.Platform.Native.SDL.SDLIconComponent.GetBitmapData(OpenTK.Core.Platform.IconHandle,System.Span{System.Byte}) - OpenTK.Platform.Native.SDL.SDLIconComponent.GetSize(OpenTK.Core.Platform.IconHandle,System.Int32@,System.Int32@) - - OpenTK.Platform.Native.SDL.SDLIconComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - OpenTK.Platform.Native.SDL.SDLIconComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - OpenTK.Platform.Native.SDL.SDLIconComponent.Logger - OpenTK.Platform.Native.SDL.SDLIconComponent.Name - OpenTK.Platform.Native.SDL.SDLIconComponent.Provides @@ -149,16 +149,16 @@ items: overload: OpenTK.Platform.Native.SDL.SDLIconComponent.Logger* implements: - OpenTK.Core.Platform.IPalComponent.Logger -- uid: OpenTK.Platform.Native.SDL.SDLIconComponent.Initialize(OpenTK.Core.Platform.PalComponents) - commentId: M:OpenTK.Platform.Native.SDL.SDLIconComponent.Initialize(OpenTK.Core.Platform.PalComponents) - id: Initialize(OpenTK.Core.Platform.PalComponents) +- uid: OpenTK.Platform.Native.SDL.SDLIconComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Native.SDL.SDLIconComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + id: Initialize(OpenTK.Core.Platform.ToolkitOptions) parent: OpenTK.Platform.Native.SDL.SDLIconComponent langs: - csharp - vb - name: Initialize(PalComponents) - nameWithType: SDLIconComponent.Initialize(PalComponents) - fullName: OpenTK.Platform.Native.SDL.SDLIconComponent.Initialize(OpenTK.Core.Platform.PalComponents) + name: Initialize(ToolkitOptions) + nameWithType: SDLIconComponent.Initialize(ToolkitOptions) + fullName: OpenTK.Platform.Native.SDL.SDLIconComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) type: Method source: remote: @@ -171,18 +171,18 @@ items: assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.SDL - summary: Initialize the driver. + summary: Initialize the component. example: [] syntax: - content: public void Initialize(PalComponents which) + content: public void Initialize(ToolkitOptions options) parameters: - - id: which - type: OpenTK.Core.Platform.PalComponents - description: Bitfield of which components the driver need to be initialized. - content.vb: Public Sub Initialize(which As PalComponents) + - id: options + type: OpenTK.Core.Platform.ToolkitOptions + description: The options to initialize the component with. + content.vb: Public Sub Initialize(options As ToolkitOptions) overload: OpenTK.Platform.Native.SDL.SDLIconComponent.Initialize* implements: - - OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - uid: OpenTK.Platform.Native.SDL.SDLIconComponent.CanLoadSystemIcons commentId: P:OpenTK.Platform.Native.SDL.SDLIconComponent.CanLoadSystemIcons id: CanLoadSystemIcons @@ -201,7 +201,7 @@ items: repo: https://github.com/opentk/opentk.git id: CanLoadSystemIcons path: opentk/src/OpenTK.Platform.Native/SDL/SDLIconComponent.cs - startLine: 33 + startLine: 29 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.SDL @@ -237,7 +237,7 @@ items: repo: https://github.com/opentk/opentk.git id: Create path: opentk/src/OpenTK.Platform.Native/SDL/SDLIconComponent.cs - startLine: 36 + startLine: 32 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.SDL @@ -280,7 +280,7 @@ items: repo: https://github.com/opentk/opentk.git id: Create path: opentk/src/OpenTK.Platform.Native/SDL/SDLIconComponent.cs - startLine: 42 + startLine: 38 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.SDL @@ -326,7 +326,7 @@ items: repo: https://github.com/opentk/opentk.git id: Destroy path: opentk/src/OpenTK.Platform.Native/SDL/SDLIconComponent.cs - startLine: 63 + startLine: 59 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.SDL @@ -364,7 +364,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetSize path: opentk/src/OpenTK.Platform.Native/SDL/SDLIconComponent.cs - startLine: 75 + startLine: 71 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.SDL @@ -411,7 +411,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetBitmapData path: opentk/src/OpenTK.Platform.Native/SDL/SDLIconComponent.cs - startLine: 83 + startLine: 79 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.SDL @@ -445,7 +445,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetBitmapByteSize path: opentk/src/OpenTK.Platform.Native/SDL/SDLIconComponent.cs - startLine: 96 + startLine: 92 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.SDL @@ -874,35 +874,42 @@ references: href: OpenTK.Core.Utility.html - uid: OpenTK.Platform.Native.SDL.SDLIconComponent.Initialize* commentId: Overload:OpenTK.Platform.Native.SDL.SDLIconComponent.Initialize - href: OpenTK.Platform.Native.SDL.SDLIconComponent.html#OpenTK_Platform_Native_SDL_SDLIconComponent_Initialize_OpenTK_Core_Platform_PalComponents_ + href: OpenTK.Platform.Native.SDL.SDLIconComponent.html#OpenTK_Platform_Native_SDL_SDLIconComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ name: Initialize nameWithType: SDLIconComponent.Initialize fullName: OpenTK.Platform.Native.SDL.SDLIconComponent.Initialize -- uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) - commentId: M:OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) +- uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + commentId: M:OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_PalComponents_ - name: Initialize(PalComponents) - nameWithType: IPalComponent.Initialize(PalComponents) - fullName: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + name: Initialize(ToolkitOptions) + nameWithType: IPalComponent.Initialize(ToolkitOptions) + fullName: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) spec.csharp: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_PalComponents_ + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.PalComponents - name: PalComponents - href: OpenTK.Core.Platform.PalComponents.html + - uid: OpenTK.Core.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Core.Platform.ToolkitOptions.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_PalComponents_ + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.PalComponents - name: PalComponents - href: OpenTK.Core.Platform.PalComponents.html + - uid: OpenTK.Core.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Core.Platform.ToolkitOptions.html - name: ) +- uid: OpenTK.Core.Platform.ToolkitOptions + commentId: T:OpenTK.Core.Platform.ToolkitOptions + parent: OpenTK.Core.Platform + href: OpenTK.Core.Platform.ToolkitOptions.html + name: ToolkitOptions + nameWithType: ToolkitOptions + fullName: OpenTK.Core.Platform.ToolkitOptions - uid: OpenTK.Core.Platform.IIconComponent.Create(OpenTK.Core.Platform.SystemIconType) commentId: M:OpenTK.Core.Platform.IIconComponent.Create(OpenTK.Core.Platform.SystemIconType) parent: OpenTK.Core.Platform.IIconComponent diff --git a/api/OpenTK.Platform.Native.SDL.SDLJoystickComponent.yml b/api/OpenTK.Platform.Native.SDL.SDLJoystickComponent.yml index 61093398..a9825587 100644 --- a/api/OpenTK.Platform.Native.SDL.SDLJoystickComponent.yml +++ b/api/OpenTK.Platform.Native.SDL.SDLJoystickComponent.yml @@ -10,7 +10,7 @@ items: - OpenTK.Platform.Native.SDL.SDLJoystickComponent.GetButton(OpenTK.Core.Platform.JoystickHandle,OpenTK.Core.Platform.JoystickButton) - OpenTK.Platform.Native.SDL.SDLJoystickComponent.GetGuid(OpenTK.Core.Platform.JoystickHandle) - OpenTK.Platform.Native.SDL.SDLJoystickComponent.GetName(OpenTK.Core.Platform.JoystickHandle) - - OpenTK.Platform.Native.SDL.SDLJoystickComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - OpenTK.Platform.Native.SDL.SDLJoystickComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - OpenTK.Platform.Native.SDL.SDLJoystickComponent.IsConnected(System.Int32) - OpenTK.Platform.Native.SDL.SDLJoystickComponent.LeftDeadzone - OpenTK.Platform.Native.SDL.SDLJoystickComponent.Logger @@ -154,16 +154,16 @@ items: overload: OpenTK.Platform.Native.SDL.SDLJoystickComponent.Logger* implements: - OpenTK.Core.Platform.IPalComponent.Logger -- uid: OpenTK.Platform.Native.SDL.SDLJoystickComponent.Initialize(OpenTK.Core.Platform.PalComponents) - commentId: M:OpenTK.Platform.Native.SDL.SDLJoystickComponent.Initialize(OpenTK.Core.Platform.PalComponents) - id: Initialize(OpenTK.Core.Platform.PalComponents) +- uid: OpenTK.Platform.Native.SDL.SDLJoystickComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Native.SDL.SDLJoystickComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + id: Initialize(OpenTK.Core.Platform.ToolkitOptions) parent: OpenTK.Platform.Native.SDL.SDLJoystickComponent langs: - csharp - vb - name: Initialize(PalComponents) - nameWithType: SDLJoystickComponent.Initialize(PalComponents) - fullName: OpenTK.Platform.Native.SDL.SDLJoystickComponent.Initialize(OpenTK.Core.Platform.PalComponents) + name: Initialize(ToolkitOptions) + nameWithType: SDLJoystickComponent.Initialize(ToolkitOptions) + fullName: OpenTK.Platform.Native.SDL.SDLJoystickComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) type: Method source: remote: @@ -176,18 +176,18 @@ items: assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.SDL - summary: Initialize the driver. + summary: Initialize the component. example: [] syntax: - content: public void Initialize(PalComponents which) + content: public void Initialize(ToolkitOptions options) parameters: - - id: which - type: OpenTK.Core.Platform.PalComponents - description: Bitfield of which components the driver need to be initialized. - content.vb: Public Sub Initialize(which As PalComponents) + - id: options + type: OpenTK.Core.Platform.ToolkitOptions + description: The options to initialize the component with. + content.vb: Public Sub Initialize(options As ToolkitOptions) overload: OpenTK.Platform.Native.SDL.SDLJoystickComponent.Initialize* implements: - - OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - uid: OpenTK.Platform.Native.SDL.SDLJoystickComponent.LeftDeadzone commentId: P:OpenTK.Platform.Native.SDL.SDLJoystickComponent.LeftDeadzone id: LeftDeadzone @@ -206,7 +206,7 @@ items: repo: https://github.com/opentk/opentk.git id: LeftDeadzone path: opentk/src/OpenTK.Platform.Native/SDL/SDLJoystickComponent.cs - startLine: 39 + startLine: 34 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.SDL @@ -239,7 +239,7 @@ items: repo: https://github.com/opentk/opentk.git id: RightDeadzone path: opentk/src/OpenTK.Platform.Native/SDL/SDLJoystickComponent.cs - startLine: 41 + startLine: 36 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.SDL @@ -272,7 +272,7 @@ items: repo: https://github.com/opentk/opentk.git id: TriggerThreshold path: opentk/src/OpenTK.Platform.Native/SDL/SDLJoystickComponent.cs - startLine: 43 + startLine: 38 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.SDL @@ -305,7 +305,7 @@ items: repo: https://github.com/opentk/opentk.git id: IsConnected path: opentk/src/OpenTK.Platform.Native/SDL/SDLJoystickComponent.cs - startLine: 46 + startLine: 41 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.SDL @@ -345,7 +345,7 @@ items: repo: https://github.com/opentk/opentk.git id: Open path: opentk/src/OpenTK.Platform.Native/SDL/SDLJoystickComponent.cs - startLine: 53 + startLine: 48 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.SDL @@ -385,7 +385,7 @@ items: repo: https://github.com/opentk/opentk.git id: Close path: opentk/src/OpenTK.Platform.Native/SDL/SDLJoystickComponent.cs - startLine: 69 + startLine: 64 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.SDL @@ -419,7 +419,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetGuid path: opentk/src/OpenTK.Platform.Native/SDL/SDLJoystickComponent.cs - startLine: 78 + startLine: 73 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.SDL @@ -453,7 +453,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetName path: opentk/src/OpenTK.Platform.Native/SDL/SDLJoystickComponent.cs - startLine: 91 + startLine: 86 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.SDL @@ -487,7 +487,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetAxis path: opentk/src/OpenTK.Platform.Native/SDL/SDLJoystickComponent.cs - startLine: 106 + startLine: 101 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.SDL @@ -530,7 +530,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetButton path: opentk/src/OpenTK.Platform.Native/SDL/SDLJoystickComponent.cs - startLine: 142 + startLine: 137 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.SDL @@ -570,7 +570,7 @@ items: repo: https://github.com/opentk/opentk.git id: SetVibration path: opentk/src/OpenTK.Platform.Native/SDL/SDLJoystickComponent.cs - startLine: 201 + startLine: 196 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.SDL @@ -611,7 +611,7 @@ items: repo: https://github.com/opentk/opentk.git id: TryGetBatteryInfo path: opentk/src/OpenTK.Platform.Native/SDL/SDLJoystickComponent.cs - startLine: 217 + startLine: 212 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.SDL @@ -1048,35 +1048,42 @@ references: href: OpenTK.Core.Utility.html - uid: OpenTK.Platform.Native.SDL.SDLJoystickComponent.Initialize* commentId: Overload:OpenTK.Platform.Native.SDL.SDLJoystickComponent.Initialize - href: OpenTK.Platform.Native.SDL.SDLJoystickComponent.html#OpenTK_Platform_Native_SDL_SDLJoystickComponent_Initialize_OpenTK_Core_Platform_PalComponents_ + href: OpenTK.Platform.Native.SDL.SDLJoystickComponent.html#OpenTK_Platform_Native_SDL_SDLJoystickComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ name: Initialize nameWithType: SDLJoystickComponent.Initialize fullName: OpenTK.Platform.Native.SDL.SDLJoystickComponent.Initialize -- uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) - commentId: M:OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) +- uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + commentId: M:OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_PalComponents_ - name: Initialize(PalComponents) - nameWithType: IPalComponent.Initialize(PalComponents) - fullName: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + name: Initialize(ToolkitOptions) + nameWithType: IPalComponent.Initialize(ToolkitOptions) + fullName: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) spec.csharp: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_PalComponents_ + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.PalComponents - name: PalComponents - href: OpenTK.Core.Platform.PalComponents.html + - uid: OpenTK.Core.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Core.Platform.ToolkitOptions.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_PalComponents_ + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.PalComponents - name: PalComponents - href: OpenTK.Core.Platform.PalComponents.html + - uid: OpenTK.Core.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Core.Platform.ToolkitOptions.html - name: ) +- uid: OpenTK.Core.Platform.ToolkitOptions + commentId: T:OpenTK.Core.Platform.ToolkitOptions + parent: OpenTK.Core.Platform + href: OpenTK.Core.Platform.ToolkitOptions.html + name: ToolkitOptions + nameWithType: ToolkitOptions + fullName: OpenTK.Core.Platform.ToolkitOptions - uid: OpenTK.Platform.Native.SDL.SDLJoystickComponent.LeftDeadzone* commentId: Overload:OpenTK.Platform.Native.SDL.SDLJoystickComponent.LeftDeadzone href: OpenTK.Platform.Native.SDL.SDLJoystickComponent.html#OpenTK_Platform_Native_SDL_SDLJoystickComponent_LeftDeadzone diff --git a/api/OpenTK.Platform.Native.SDL.SDLKeyboardComponent.yml b/api/OpenTK.Platform.Native.SDL.SDLKeyboardComponent.yml index c2c51924..41eec5a0 100644 --- a/api/OpenTK.Platform.Native.SDL.SDLKeyboardComponent.yml +++ b/api/OpenTK.Platform.Native.SDL.SDLKeyboardComponent.yml @@ -13,7 +13,7 @@ items: - OpenTK.Platform.Native.SDL.SDLKeyboardComponent.GetKeyboardModifiers - OpenTK.Platform.Native.SDL.SDLKeyboardComponent.GetKeyboardState(System.Boolean[]) - OpenTK.Platform.Native.SDL.SDLKeyboardComponent.GetScancodeFromKey(OpenTK.Core.Platform.Key) - - OpenTK.Platform.Native.SDL.SDLKeyboardComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - OpenTK.Platform.Native.SDL.SDLKeyboardComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - OpenTK.Platform.Native.SDL.SDLKeyboardComponent.Logger - OpenTK.Platform.Native.SDL.SDLKeyboardComponent.Name - OpenTK.Platform.Native.SDL.SDLKeyboardComponent.Provides @@ -153,16 +153,16 @@ items: overload: OpenTK.Platform.Native.SDL.SDLKeyboardComponent.Logger* implements: - OpenTK.Core.Platform.IPalComponent.Logger -- uid: OpenTK.Platform.Native.SDL.SDLKeyboardComponent.Initialize(OpenTK.Core.Platform.PalComponents) - commentId: M:OpenTK.Platform.Native.SDL.SDLKeyboardComponent.Initialize(OpenTK.Core.Platform.PalComponents) - id: Initialize(OpenTK.Core.Platform.PalComponents) +- uid: OpenTK.Platform.Native.SDL.SDLKeyboardComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Native.SDL.SDLKeyboardComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + id: Initialize(OpenTK.Core.Platform.ToolkitOptions) parent: OpenTK.Platform.Native.SDL.SDLKeyboardComponent langs: - csharp - vb - name: Initialize(PalComponents) - nameWithType: SDLKeyboardComponent.Initialize(PalComponents) - fullName: OpenTK.Platform.Native.SDL.SDLKeyboardComponent.Initialize(OpenTK.Core.Platform.PalComponents) + name: Initialize(ToolkitOptions) + nameWithType: SDLKeyboardComponent.Initialize(ToolkitOptions) + fullName: OpenTK.Platform.Native.SDL.SDLKeyboardComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) type: Method source: remote: @@ -175,18 +175,18 @@ items: assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.SDL - summary: Initialize the driver. + summary: Initialize the component. example: [] syntax: - content: public void Initialize(PalComponents which) + content: public void Initialize(ToolkitOptions options) parameters: - - id: which - type: OpenTK.Core.Platform.PalComponents - description: Bitfield of which components the driver need to be initialized. - content.vb: Public Sub Initialize(which As PalComponents) + - id: options + type: OpenTK.Core.Platform.ToolkitOptions + description: The options to initialize the component with. + content.vb: Public Sub Initialize(options As ToolkitOptions) overload: OpenTK.Platform.Native.SDL.SDLKeyboardComponent.Initialize* implements: - - OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - uid: OpenTK.Platform.Native.SDL.SDLKeyboardComponent.SupportsLayouts commentId: P:OpenTK.Platform.Native.SDL.SDLKeyboardComponent.SupportsLayouts id: SupportsLayouts @@ -205,7 +205,7 @@ items: repo: https://github.com/opentk/opentk.git id: SupportsLayouts path: opentk/src/OpenTK.Platform.Native/SDL/SDLKeyboardComponent.cs - startLine: 38 + startLine: 33 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.SDL @@ -238,7 +238,7 @@ items: repo: https://github.com/opentk/opentk.git id: SupportsIme path: opentk/src/OpenTK.Platform.Native/SDL/SDLKeyboardComponent.cs - startLine: 41 + startLine: 36 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.SDL @@ -271,7 +271,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetActiveKeyboardLayout path: opentk/src/OpenTK.Platform.Native/SDL/SDLKeyboardComponent.cs - startLine: 44 + startLine: 39 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.SDL @@ -315,7 +315,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetAvailableKeyboardLayouts path: opentk/src/OpenTK.Platform.Native/SDL/SDLKeyboardComponent.cs - startLine: 52 + startLine: 47 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.SDL @@ -348,7 +348,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetScancodeFromKey path: opentk/src/OpenTK.Platform.Native/SDL/SDLKeyboardComponent.cs - startLine: 58 + startLine: 53 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.SDL @@ -395,7 +395,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetKeyFromScancode path: opentk/src/OpenTK.Platform.Native/SDL/SDLKeyboardComponent.cs - startLine: 68 + startLine: 63 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.SDL @@ -438,7 +438,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetKeyboardState path: opentk/src/OpenTK.Platform.Native/SDL/SDLKeyboardComponent.cs - startLine: 78 + startLine: 73 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.SDL @@ -480,7 +480,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetKeyboardModifiers path: opentk/src/OpenTK.Platform.Native/SDL/SDLKeyboardComponent.cs - startLine: 97 + startLine: 92 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.SDL @@ -513,7 +513,7 @@ items: repo: https://github.com/opentk/opentk.git id: BeginIme path: opentk/src/OpenTK.Platform.Native/SDL/SDLKeyboardComponent.cs - startLine: 103 + startLine: 98 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.SDL @@ -547,7 +547,7 @@ items: repo: https://github.com/opentk/opentk.git id: SetImeRectangle path: opentk/src/OpenTK.Platform.Native/SDL/SDLKeyboardComponent.cs - startLine: 111 + startLine: 106 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.SDL @@ -596,7 +596,7 @@ items: repo: https://github.com/opentk/opentk.git id: EndIme path: opentk/src/OpenTK.Platform.Native/SDL/SDLKeyboardComponent.cs - startLine: 125 + startLine: 120 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.SDL @@ -1028,35 +1028,42 @@ references: href: OpenTK.Core.Utility.html - uid: OpenTK.Platform.Native.SDL.SDLKeyboardComponent.Initialize* commentId: Overload:OpenTK.Platform.Native.SDL.SDLKeyboardComponent.Initialize - href: OpenTK.Platform.Native.SDL.SDLKeyboardComponent.html#OpenTK_Platform_Native_SDL_SDLKeyboardComponent_Initialize_OpenTK_Core_Platform_PalComponents_ + href: OpenTK.Platform.Native.SDL.SDLKeyboardComponent.html#OpenTK_Platform_Native_SDL_SDLKeyboardComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ name: Initialize nameWithType: SDLKeyboardComponent.Initialize fullName: OpenTK.Platform.Native.SDL.SDLKeyboardComponent.Initialize -- uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) - commentId: M:OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) +- uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + commentId: M:OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_PalComponents_ - name: Initialize(PalComponents) - nameWithType: IPalComponent.Initialize(PalComponents) - fullName: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + name: Initialize(ToolkitOptions) + nameWithType: IPalComponent.Initialize(ToolkitOptions) + fullName: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) spec.csharp: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_PalComponents_ + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.PalComponents - name: PalComponents - href: OpenTK.Core.Platform.PalComponents.html + - uid: OpenTK.Core.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Core.Platform.ToolkitOptions.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_PalComponents_ + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.PalComponents - name: PalComponents - href: OpenTK.Core.Platform.PalComponents.html + - uid: OpenTK.Core.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Core.Platform.ToolkitOptions.html - name: ) +- uid: OpenTK.Core.Platform.ToolkitOptions + commentId: T:OpenTK.Core.Platform.ToolkitOptions + parent: OpenTK.Core.Platform + href: OpenTK.Core.Platform.ToolkitOptions.html + name: ToolkitOptions + nameWithType: ToolkitOptions + fullName: OpenTK.Core.Platform.ToolkitOptions - uid: OpenTK.Platform.Native.SDL.SDLKeyboardComponent.SupportsLayouts* commentId: Overload:OpenTK.Platform.Native.SDL.SDLKeyboardComponent.SupportsLayouts href: OpenTK.Platform.Native.SDL.SDLKeyboardComponent.html#OpenTK_Platform_Native_SDL_SDLKeyboardComponent_SupportsLayouts diff --git a/api/OpenTK.Platform.Native.SDL.SDLMouseComponent.yml b/api/OpenTK.Platform.Native.SDL.SDLMouseComponent.yml index 91be0930..ec1bb024 100644 --- a/api/OpenTK.Platform.Native.SDL.SDLMouseComponent.yml +++ b/api/OpenTK.Platform.Native.SDL.SDLMouseComponent.yml @@ -8,7 +8,7 @@ items: - OpenTK.Platform.Native.SDL.SDLMouseComponent.CanSetMousePosition - OpenTK.Platform.Native.SDL.SDLMouseComponent.GetMouseState(OpenTK.Core.Platform.MouseState@) - OpenTK.Platform.Native.SDL.SDLMouseComponent.GetPosition(System.Int32@,System.Int32@) - - OpenTK.Platform.Native.SDL.SDLMouseComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - OpenTK.Platform.Native.SDL.SDLMouseComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - OpenTK.Platform.Native.SDL.SDLMouseComponent.Logger - OpenTK.Platform.Native.SDL.SDLMouseComponent.Name - OpenTK.Platform.Native.SDL.SDLMouseComponent.Provides @@ -147,16 +147,16 @@ items: overload: OpenTK.Platform.Native.SDL.SDLMouseComponent.Logger* implements: - OpenTK.Core.Platform.IPalComponent.Logger -- uid: OpenTK.Platform.Native.SDL.SDLMouseComponent.Initialize(OpenTK.Core.Platform.PalComponents) - commentId: M:OpenTK.Platform.Native.SDL.SDLMouseComponent.Initialize(OpenTK.Core.Platform.PalComponents) - id: Initialize(OpenTK.Core.Platform.PalComponents) +- uid: OpenTK.Platform.Native.SDL.SDLMouseComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Native.SDL.SDLMouseComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + id: Initialize(OpenTK.Core.Platform.ToolkitOptions) parent: OpenTK.Platform.Native.SDL.SDLMouseComponent langs: - csharp - vb - name: Initialize(PalComponents) - nameWithType: SDLMouseComponent.Initialize(PalComponents) - fullName: OpenTK.Platform.Native.SDL.SDLMouseComponent.Initialize(OpenTK.Core.Platform.PalComponents) + name: Initialize(ToolkitOptions) + nameWithType: SDLMouseComponent.Initialize(ToolkitOptions) + fullName: OpenTK.Platform.Native.SDL.SDLMouseComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) type: Method source: remote: @@ -169,18 +169,18 @@ items: assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.SDL - summary: Initialize the driver. + summary: Initialize the component. example: [] syntax: - content: public void Initialize(PalComponents which) + content: public void Initialize(ToolkitOptions options) parameters: - - id: which - type: OpenTK.Core.Platform.PalComponents - description: Bitfield of which components the driver need to be initialized. - content.vb: Public Sub Initialize(which As PalComponents) + - id: options + type: OpenTK.Core.Platform.ToolkitOptions + description: The options to initialize the component with. + content.vb: Public Sub Initialize(options As ToolkitOptions) overload: OpenTK.Platform.Native.SDL.SDLMouseComponent.Initialize* implements: - - OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - uid: OpenTK.Platform.Native.SDL.SDLMouseComponent.CanSetMousePosition commentId: P:OpenTK.Platform.Native.SDL.SDLMouseComponent.CanSetMousePosition id: CanSetMousePosition @@ -199,7 +199,7 @@ items: repo: https://github.com/opentk/opentk.git id: CanSetMousePosition path: opentk/src/OpenTK.Platform.Native/SDL/SDLMouseComponent.cs - startLine: 34 + startLine: 30 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.SDL @@ -232,7 +232,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetPosition path: opentk/src/OpenTK.Platform.Native/SDL/SDLMouseComponent.cs - startLine: 37 + startLine: 33 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.SDL @@ -272,7 +272,7 @@ items: repo: https://github.com/opentk/opentk.git id: SetPosition path: opentk/src/OpenTK.Platform.Native/SDL/SDLMouseComponent.cs - startLine: 43 + startLine: 39 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.SDL @@ -312,7 +312,7 @@ items: repo: https://github.com/opentk/opentk.git id: SetPositionInWindow path: opentk/src/OpenTK.Platform.Native/SDL/SDLMouseComponent.cs - startLine: 59 + startLine: 55 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.SDL @@ -353,7 +353,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetMouseState path: opentk/src/OpenTK.Platform.Native/SDL/SDLMouseComponent.cs - startLine: 81 + startLine: 77 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.SDL @@ -788,35 +788,42 @@ references: href: OpenTK.Core.Utility.html - uid: OpenTK.Platform.Native.SDL.SDLMouseComponent.Initialize* commentId: Overload:OpenTK.Platform.Native.SDL.SDLMouseComponent.Initialize - href: OpenTK.Platform.Native.SDL.SDLMouseComponent.html#OpenTK_Platform_Native_SDL_SDLMouseComponent_Initialize_OpenTK_Core_Platform_PalComponents_ + href: OpenTK.Platform.Native.SDL.SDLMouseComponent.html#OpenTK_Platform_Native_SDL_SDLMouseComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ name: Initialize nameWithType: SDLMouseComponent.Initialize fullName: OpenTK.Platform.Native.SDL.SDLMouseComponent.Initialize -- uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) - commentId: M:OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) +- uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + commentId: M:OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_PalComponents_ - name: Initialize(PalComponents) - nameWithType: IPalComponent.Initialize(PalComponents) - fullName: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + name: Initialize(ToolkitOptions) + nameWithType: IPalComponent.Initialize(ToolkitOptions) + fullName: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) spec.csharp: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_PalComponents_ + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.PalComponents - name: PalComponents - href: OpenTK.Core.Platform.PalComponents.html + - uid: OpenTK.Core.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Core.Platform.ToolkitOptions.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_PalComponents_ + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.PalComponents - name: PalComponents - href: OpenTK.Core.Platform.PalComponents.html + - uid: OpenTK.Core.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Core.Platform.ToolkitOptions.html - name: ) +- uid: OpenTK.Core.Platform.ToolkitOptions + commentId: T:OpenTK.Core.Platform.ToolkitOptions + parent: OpenTK.Core.Platform + href: OpenTK.Core.Platform.ToolkitOptions.html + name: ToolkitOptions + nameWithType: ToolkitOptions + fullName: OpenTK.Core.Platform.ToolkitOptions - uid: OpenTK.Platform.Native.SDL.SDLMouseComponent.CanSetMousePosition* commentId: Overload:OpenTK.Platform.Native.SDL.SDLMouseComponent.CanSetMousePosition href: OpenTK.Platform.Native.SDL.SDLMouseComponent.html#OpenTK_Platform_Native_SDL_SDLMouseComponent_CanSetMousePosition diff --git a/api/OpenTK.Platform.Native.SDL.SDLOpenGLComponent.yml b/api/OpenTK.Platform.Native.SDL.SDLOpenGLComponent.yml index c45ae1e5..6cb1d381 100644 --- a/api/OpenTK.Platform.Native.SDL.SDLOpenGLComponent.yml +++ b/api/OpenTK.Platform.Native.SDL.SDLOpenGLComponent.yml @@ -16,7 +16,7 @@ items: - OpenTK.Platform.Native.SDL.SDLOpenGLComponent.GetProcedureAddress(OpenTK.Core.Platform.OpenGLContextHandle,System.String) - OpenTK.Platform.Native.SDL.SDLOpenGLComponent.GetSharedContext(OpenTK.Core.Platform.OpenGLContextHandle) - OpenTK.Platform.Native.SDL.SDLOpenGLComponent.GetSwapInterval - - OpenTK.Platform.Native.SDL.SDLOpenGLComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - OpenTK.Platform.Native.SDL.SDLOpenGLComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - OpenTK.Platform.Native.SDL.SDLOpenGLComponent.Logger - OpenTK.Platform.Native.SDL.SDLOpenGLComponent.Name - OpenTK.Platform.Native.SDL.SDLOpenGLComponent.Provides @@ -156,16 +156,16 @@ items: overload: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.Logger* implements: - OpenTK.Core.Platform.IPalComponent.Logger -- uid: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.Initialize(OpenTK.Core.Platform.PalComponents) - commentId: M:OpenTK.Platform.Native.SDL.SDLOpenGLComponent.Initialize(OpenTK.Core.Platform.PalComponents) - id: Initialize(OpenTK.Core.Platform.PalComponents) +- uid: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Native.SDL.SDLOpenGLComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + id: Initialize(OpenTK.Core.Platform.ToolkitOptions) parent: OpenTK.Platform.Native.SDL.SDLOpenGLComponent langs: - csharp - vb - name: Initialize(PalComponents) - nameWithType: SDLOpenGLComponent.Initialize(PalComponents) - fullName: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.Initialize(OpenTK.Core.Platform.PalComponents) + name: Initialize(ToolkitOptions) + nameWithType: SDLOpenGLComponent.Initialize(ToolkitOptions) + fullName: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) type: Method source: remote: @@ -178,18 +178,18 @@ items: assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.SDL - summary: Initialize the driver. + summary: Initialize the component. example: [] syntax: - content: public void Initialize(PalComponents which) + content: public void Initialize(ToolkitOptions options) parameters: - - id: which - type: OpenTK.Core.Platform.PalComponents - description: Bitfield of which components the driver need to be initialized. - content.vb: Public Sub Initialize(which As PalComponents) + - id: options + type: OpenTK.Core.Platform.ToolkitOptions + description: The options to initialize the component with. + content.vb: Public Sub Initialize(options As ToolkitOptions) overload: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.Initialize* implements: - - OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - uid: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.CanShareContexts commentId: P:OpenTK.Platform.Native.SDL.SDLOpenGLComponent.CanShareContexts id: CanShareContexts @@ -208,7 +208,7 @@ items: repo: https://github.com/opentk/opentk.git id: CanShareContexts path: opentk/src/OpenTK.Platform.Native/SDL/SDLOpenGLComponent.cs - startLine: 41 + startLine: 36 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.SDL @@ -241,7 +241,7 @@ items: repo: https://github.com/opentk/opentk.git id: CanCreateFromWindow path: opentk/src/OpenTK.Platform.Native/SDL/SDLOpenGLComponent.cs - startLine: 44 + startLine: 39 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.SDL @@ -274,7 +274,7 @@ items: repo: https://github.com/opentk/opentk.git id: CanCreateFromSurface path: opentk/src/OpenTK.Platform.Native/SDL/SDLOpenGLComponent.cs - startLine: 47 + startLine: 42 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.SDL @@ -307,7 +307,7 @@ items: repo: https://github.com/opentk/opentk.git id: CreateFromSurface path: opentk/src/OpenTK.Platform.Native/SDL/SDLOpenGLComponent.cs - startLine: 50 + startLine: 45 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.SDL @@ -340,7 +340,7 @@ items: repo: https://github.com/opentk/opentk.git id: CreateFromWindow path: opentk/src/OpenTK.Platform.Native/SDL/SDLOpenGLComponent.cs - startLine: 56 + startLine: 51 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.SDL @@ -377,7 +377,7 @@ items: repo: https://github.com/opentk/opentk.git id: DestroyContext path: opentk/src/OpenTK.Platform.Native/SDL/SDLOpenGLComponent.cs - startLine: 93 + startLine: 88 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.SDL @@ -415,7 +415,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetBindingsContext path: opentk/src/OpenTK.Platform.Native/SDL/SDLOpenGLComponent.cs - startLine: 103 + startLine: 98 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.SDL @@ -452,7 +452,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetProcedureAddress path: opentk/src/OpenTK.Platform.Native/SDL/SDLOpenGLComponent.cs - startLine: 109 + startLine: 104 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.SDL @@ -499,7 +499,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetCurrentContext path: opentk/src/OpenTK.Platform.Native/SDL/SDLOpenGLComponent.cs - startLine: 117 + startLine: 112 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.SDL @@ -532,7 +532,7 @@ items: repo: https://github.com/opentk/opentk.git id: SetCurrentContext path: opentk/src/OpenTK.Platform.Native/SDL/SDLOpenGLComponent.cs - startLine: 136 + startLine: 131 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.SDL @@ -572,7 +572,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetSharedContext path: opentk/src/OpenTK.Platform.Native/SDL/SDLOpenGLComponent.cs - startLine: 154 + startLine: 149 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.SDL @@ -609,7 +609,7 @@ items: repo: https://github.com/opentk/opentk.git id: SetSwapInterval path: opentk/src/OpenTK.Platform.Native/SDL/SDLOpenGLComponent.cs - startLine: 162 + startLine: 157 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.SDL @@ -646,7 +646,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetSwapInterval path: opentk/src/OpenTK.Platform.Native/SDL/SDLOpenGLComponent.cs - startLine: 168 + startLine: 163 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.SDL @@ -679,7 +679,7 @@ items: repo: https://github.com/opentk/opentk.git id: SwapBuffers path: opentk/src/OpenTK.Platform.Native/SDL/SDLOpenGLComponent.cs - startLine: 174 + startLine: 169 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.SDL @@ -1111,35 +1111,42 @@ references: href: OpenTK.Core.Utility.html - uid: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.Initialize* commentId: Overload:OpenTK.Platform.Native.SDL.SDLOpenGLComponent.Initialize - href: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.html#OpenTK_Platform_Native_SDL_SDLOpenGLComponent_Initialize_OpenTK_Core_Platform_PalComponents_ + href: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.html#OpenTK_Platform_Native_SDL_SDLOpenGLComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ name: Initialize nameWithType: SDLOpenGLComponent.Initialize fullName: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.Initialize -- uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) - commentId: M:OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) +- uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + commentId: M:OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_PalComponents_ - name: Initialize(PalComponents) - nameWithType: IPalComponent.Initialize(PalComponents) - fullName: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + name: Initialize(ToolkitOptions) + nameWithType: IPalComponent.Initialize(ToolkitOptions) + fullName: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) spec.csharp: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_PalComponents_ + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.PalComponents - name: PalComponents - href: OpenTK.Core.Platform.PalComponents.html + - uid: OpenTK.Core.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Core.Platform.ToolkitOptions.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_PalComponents_ + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.PalComponents - name: PalComponents - href: OpenTK.Core.Platform.PalComponents.html + - uid: OpenTK.Core.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Core.Platform.ToolkitOptions.html - name: ) +- uid: OpenTK.Core.Platform.ToolkitOptions + commentId: T:OpenTK.Core.Platform.ToolkitOptions + parent: OpenTK.Core.Platform + href: OpenTK.Core.Platform.ToolkitOptions.html + name: ToolkitOptions + nameWithType: ToolkitOptions + fullName: OpenTK.Core.Platform.ToolkitOptions - uid: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.CanShareContexts* commentId: Overload:OpenTK.Platform.Native.SDL.SDLOpenGLComponent.CanShareContexts href: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.html#OpenTK_Platform_Native_SDL_SDLOpenGLComponent_CanShareContexts diff --git a/api/OpenTK.Platform.Native.SDL.SDLShellComponent.yml b/api/OpenTK.Platform.Native.SDL.SDLShellComponent.yml index d64f909d..5fdaad37 100644 --- a/api/OpenTK.Platform.Native.SDL.SDLShellComponent.yml +++ b/api/OpenTK.Platform.Native.SDL.SDLShellComponent.yml @@ -9,7 +9,7 @@ items: - OpenTK.Platform.Native.SDL.SDLShellComponent.GetBatteryInfo(OpenTK.Core.Platform.BatteryInfo@) - OpenTK.Platform.Native.SDL.SDLShellComponent.GetPreferredTheme - OpenTK.Platform.Native.SDL.SDLShellComponent.GetSystemMemoryInformation - - OpenTK.Platform.Native.SDL.SDLShellComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - OpenTK.Platform.Native.SDL.SDLShellComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - OpenTK.Platform.Native.SDL.SDLShellComponent.Logger - OpenTK.Platform.Native.SDL.SDLShellComponent.Name - OpenTK.Platform.Native.SDL.SDLShellComponent.Provides @@ -146,16 +146,16 @@ items: overload: OpenTK.Platform.Native.SDL.SDLShellComponent.Logger* implements: - OpenTK.Core.Platform.IPalComponent.Logger -- uid: OpenTK.Platform.Native.SDL.SDLShellComponent.Initialize(OpenTK.Core.Platform.PalComponents) - commentId: M:OpenTK.Platform.Native.SDL.SDLShellComponent.Initialize(OpenTK.Core.Platform.PalComponents) - id: Initialize(OpenTK.Core.Platform.PalComponents) +- uid: OpenTK.Platform.Native.SDL.SDLShellComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Native.SDL.SDLShellComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + id: Initialize(OpenTK.Core.Platform.ToolkitOptions) parent: OpenTK.Platform.Native.SDL.SDLShellComponent langs: - csharp - vb - name: Initialize(PalComponents) - nameWithType: SDLShellComponent.Initialize(PalComponents) - fullName: OpenTK.Platform.Native.SDL.SDLShellComponent.Initialize(OpenTK.Core.Platform.PalComponents) + name: Initialize(ToolkitOptions) + nameWithType: SDLShellComponent.Initialize(ToolkitOptions) + fullName: OpenTK.Platform.Native.SDL.SDLShellComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) type: Method source: remote: @@ -168,18 +168,18 @@ items: assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.SDL - summary: Initialize the driver. + summary: Initialize the component. example: [] syntax: - content: public void Initialize(PalComponents which) + content: public void Initialize(ToolkitOptions options) parameters: - - id: which - type: OpenTK.Core.Platform.PalComponents - description: Bitfield of which components the driver need to be initialized. - content.vb: Public Sub Initialize(which As PalComponents) + - id: options + type: OpenTK.Core.Platform.ToolkitOptions + description: The options to initialize the component with. + content.vb: Public Sub Initialize(options As ToolkitOptions) overload: OpenTK.Platform.Native.SDL.SDLShellComponent.Initialize* implements: - - OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - uid: OpenTK.Platform.Native.SDL.SDLShellComponent.AllowScreenSaver(System.Boolean) commentId: M:OpenTK.Platform.Native.SDL.SDLShellComponent.AllowScreenSaver(System.Boolean) id: AllowScreenSaver(System.Boolean) @@ -198,7 +198,7 @@ items: repo: https://github.com/opentk/opentk.git id: AllowScreenSaver path: opentk/src/OpenTK.Platform.Native/SDL/SDLShellComponent.cs - startLine: 33 + startLine: 29 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.SDL @@ -242,7 +242,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetBatteryInfo path: opentk/src/OpenTK.Platform.Native/SDL/SDLShellComponent.cs - startLine: 46 + startLine: 42 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.SDL @@ -284,7 +284,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetPreferredTheme path: opentk/src/OpenTK.Platform.Native/SDL/SDLShellComponent.cs - startLine: 82 + startLine: 78 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.SDL @@ -317,7 +317,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetSystemMemoryInformation path: opentk/src/OpenTK.Platform.Native/SDL/SDLShellComponent.cs - startLine: 94 + startLine: 90 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.SDL @@ -748,35 +748,42 @@ references: href: OpenTK.Core.Utility.html - uid: OpenTK.Platform.Native.SDL.SDLShellComponent.Initialize* commentId: Overload:OpenTK.Platform.Native.SDL.SDLShellComponent.Initialize - href: OpenTK.Platform.Native.SDL.SDLShellComponent.html#OpenTK_Platform_Native_SDL_SDLShellComponent_Initialize_OpenTK_Core_Platform_PalComponents_ + href: OpenTK.Platform.Native.SDL.SDLShellComponent.html#OpenTK_Platform_Native_SDL_SDLShellComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ name: Initialize nameWithType: SDLShellComponent.Initialize fullName: OpenTK.Platform.Native.SDL.SDLShellComponent.Initialize -- uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) - commentId: M:OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) +- uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + commentId: M:OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_PalComponents_ - name: Initialize(PalComponents) - nameWithType: IPalComponent.Initialize(PalComponents) - fullName: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + name: Initialize(ToolkitOptions) + nameWithType: IPalComponent.Initialize(ToolkitOptions) + fullName: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) spec.csharp: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_PalComponents_ + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.PalComponents - name: PalComponents - href: OpenTK.Core.Platform.PalComponents.html + - uid: OpenTK.Core.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Core.Platform.ToolkitOptions.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_PalComponents_ + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.PalComponents - name: PalComponents - href: OpenTK.Core.Platform.PalComponents.html + - uid: OpenTK.Core.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Core.Platform.ToolkitOptions.html - name: ) +- uid: OpenTK.Core.Platform.ToolkitOptions + commentId: T:OpenTK.Core.Platform.ToolkitOptions + parent: OpenTK.Core.Platform + href: OpenTK.Core.Platform.ToolkitOptions.html + name: ToolkitOptions + nameWithType: ToolkitOptions + fullName: OpenTK.Core.Platform.ToolkitOptions - uid: OpenTK.Platform.Native.SDL.SDLShellComponent.AllowScreenSaver* commentId: Overload:OpenTK.Platform.Native.SDL.SDLShellComponent.AllowScreenSaver href: OpenTK.Platform.Native.SDL.SDLShellComponent.html#OpenTK_Platform_Native_SDL_SDLShellComponent_AllowScreenSaver_System_Boolean_ diff --git a/api/OpenTK.Platform.Native.SDL.SDLWindowComponent.yml b/api/OpenTK.Platform.Native.SDL.SDLWindowComponent.yml index b953ab82..07a63ffa 100644 --- a/api/OpenTK.Platform.Native.SDL.SDLWindowComponent.yml +++ b/api/OpenTK.Platform.Native.SDL.SDLWindowComponent.yml @@ -20,16 +20,19 @@ items: - OpenTK.Platform.Native.SDL.SDLWindowComponent.GetClientSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) - OpenTK.Platform.Native.SDL.SDLWindowComponent.GetCursorCaptureMode(OpenTK.Core.Platform.WindowHandle) - OpenTK.Platform.Native.SDL.SDLWindowComponent.GetDisplay(OpenTK.Core.Platform.WindowHandle) + - OpenTK.Platform.Native.SDL.SDLWindowComponent.GetFramebufferSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) - OpenTK.Platform.Native.SDL.SDLWindowComponent.GetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle@) - OpenTK.Platform.Native.SDL.SDLWindowComponent.GetIcon(OpenTK.Core.Platform.WindowHandle) - OpenTK.Platform.Native.SDL.SDLWindowComponent.GetMaxClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) - OpenTK.Platform.Native.SDL.SDLWindowComponent.GetMinClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) - OpenTK.Platform.Native.SDL.SDLWindowComponent.GetMode(OpenTK.Core.Platform.WindowHandle) - OpenTK.Platform.Native.SDL.SDLWindowComponent.GetPosition(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) + - OpenTK.Platform.Native.SDL.SDLWindowComponent.GetScaleFactor(OpenTK.Core.Platform.WindowHandle,System.Single@,System.Single@) - OpenTK.Platform.Native.SDL.SDLWindowComponent.GetSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) - OpenTK.Platform.Native.SDL.SDLWindowComponent.GetTitle(OpenTK.Core.Platform.WindowHandle) - - OpenTK.Platform.Native.SDL.SDLWindowComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - OpenTK.Platform.Native.SDL.SDLWindowComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - OpenTK.Platform.Native.SDL.SDLWindowComponent.IsAlwaysOnTop(OpenTK.Core.Platform.WindowHandle) + - OpenTK.Platform.Native.SDL.SDLWindowComponent.IsFocused(OpenTK.Core.Platform.WindowHandle) - OpenTK.Platform.Native.SDL.SDLWindowComponent.IsWindowDestroyed(OpenTK.Core.Platform.WindowHandle) - OpenTK.Platform.Native.SDL.SDLWindowComponent.Logger - OpenTK.Platform.Native.SDL.SDLWindowComponent.Name @@ -191,16 +194,16 @@ items: overload: OpenTK.Platform.Native.SDL.SDLWindowComponent.Logger* implements: - OpenTK.Core.Platform.IPalComponent.Logger -- uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.Initialize(OpenTK.Core.Platform.PalComponents) - commentId: M:OpenTK.Platform.Native.SDL.SDLWindowComponent.Initialize(OpenTK.Core.Platform.PalComponents) - id: Initialize(OpenTK.Core.Platform.PalComponents) +- uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Native.SDL.SDLWindowComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + id: Initialize(OpenTK.Core.Platform.ToolkitOptions) parent: OpenTK.Platform.Native.SDL.SDLWindowComponent langs: - csharp - vb - name: Initialize(PalComponents) - nameWithType: SDLWindowComponent.Initialize(PalComponents) - fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.Initialize(OpenTK.Core.Platform.PalComponents) + name: Initialize(ToolkitOptions) + nameWithType: SDLWindowComponent.Initialize(ToolkitOptions) + fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) type: Method source: remote: @@ -213,18 +216,18 @@ items: assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.SDL - summary: Initialize the driver. + summary: Initialize the component. example: [] syntax: - content: public void Initialize(PalComponents which) + content: public void Initialize(ToolkitOptions options) parameters: - - id: which - type: OpenTK.Core.Platform.PalComponents - description: Bitfield of which components the driver need to be initialized. - content.vb: Public Sub Initialize(which As PalComponents) + - id: options + type: OpenTK.Core.Platform.ToolkitOptions + description: The options to initialize the component with. + content.vb: Public Sub Initialize(options As ToolkitOptions) overload: OpenTK.Platform.Native.SDL.SDLWindowComponent.Initialize* implements: - - OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.CanSetIcon commentId: P:OpenTK.Platform.Native.SDL.SDLWindowComponent.CanSetIcon id: CanSetIcon @@ -243,7 +246,7 @@ items: repo: https://github.com/opentk/opentk.git id: CanSetIcon path: opentk/src/OpenTK.Platform.Native/SDL/SDLWindowComponent.cs - startLine: 47 + startLine: 42 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.SDL @@ -276,7 +279,7 @@ items: repo: https://github.com/opentk/opentk.git id: CanGetDisplay path: opentk/src/OpenTK.Platform.Native/SDL/SDLWindowComponent.cs - startLine: 50 + startLine: 45 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.SDL @@ -309,7 +312,7 @@ items: repo: https://github.com/opentk/opentk.git id: CanSetCursor path: opentk/src/OpenTK.Platform.Native/SDL/SDLWindowComponent.cs - startLine: 53 + startLine: 48 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.SDL @@ -342,7 +345,7 @@ items: repo: https://github.com/opentk/opentk.git id: CanCaptureCursor path: opentk/src/OpenTK.Platform.Native/SDL/SDLWindowComponent.cs - startLine: 56 + startLine: 51 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.SDL @@ -375,7 +378,7 @@ items: repo: https://github.com/opentk/opentk.git id: SupportedEvents path: opentk/src/OpenTK.Platform.Native/SDL/SDLWindowComponent.cs - startLine: 59 + startLine: 54 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.SDL @@ -408,7 +411,7 @@ items: repo: https://github.com/opentk/opentk.git id: SupportedStyles path: opentk/src/OpenTK.Platform.Native/SDL/SDLWindowComponent.cs - startLine: 62 + startLine: 57 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.SDL @@ -441,7 +444,7 @@ items: repo: https://github.com/opentk/opentk.git id: SupportedModes path: opentk/src/OpenTK.Platform.Native/SDL/SDLWindowComponent.cs - startLine: 65 + startLine: 60 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.SDL @@ -474,7 +477,7 @@ items: repo: https://github.com/opentk/opentk.git id: ProcessEvents path: opentk/src/OpenTK.Platform.Native/SDL/SDLWindowComponent.cs - startLine: 74 + startLine: 69 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.SDL @@ -1350,6 +1353,52 @@ items: nameWithType.vb: SDLWindowComponent.SetClientBounds(WindowHandle, Integer, Integer, Integer, Integer) fullName.vb: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetClientBounds(OpenTK.Core.Platform.WindowHandle, Integer, Integer, Integer, Integer) name.vb: SetClientBounds(WindowHandle, Integer, Integer, Integer, Integer) +- uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetFramebufferSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) + commentId: M:OpenTK.Platform.Native.SDL.SDLWindowComponent.GetFramebufferSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) + id: GetFramebufferSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) + parent: OpenTK.Platform.Native.SDL.SDLWindowComponent + langs: + - csharp + - vb + name: GetFramebufferSize(WindowHandle, out int, out int) + nameWithType: SDLWindowComponent.GetFramebufferSize(WindowHandle, out int, out int) + fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetFramebufferSize(OpenTK.Core.Platform.WindowHandle, out int, out int) + type: Method + source: + remote: + path: src/OpenTK.Platform.Native/SDL/SDLWindowComponent.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: GetFramebufferSize + path: opentk/src/OpenTK.Platform.Native/SDL/SDLWindowComponent.cs + startLine: 721 + assemblies: + - OpenTK.Platform.Native + namespace: OpenTK.Platform.Native.SDL + summary: >- + Get the size of the window framebuffer in pixels. + + Use this value when calls to graphics APIs that want pixels, e.g. GL.Viewport(). + example: [] + syntax: + content: public void GetFramebufferSize(WindowHandle handle, out int width, out int height) + parameters: + - id: handle + type: OpenTK.Core.Platform.WindowHandle + description: Handle to a window. + - id: width + type: System.Int32 + description: Width in pixels of the window framebuffer. + - id: height + type: System.Int32 + description: Height in pixels of the window framebuffer. + content.vb: Public Sub GetFramebufferSize(handle As WindowHandle, width As Integer, height As Integer) + overload: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetFramebufferSize* + implements: + - OpenTK.Core.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) + nameWithType.vb: SDLWindowComponent.GetFramebufferSize(WindowHandle, Integer, Integer) + fullName.vb: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetFramebufferSize(OpenTK.Core.Platform.WindowHandle, Integer, Integer) + name.vb: GetFramebufferSize(WindowHandle, Integer, Integer) - uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetMaxClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) commentId: M:OpenTK.Platform.Native.SDL.SDLWindowComponent.GetMaxClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) id: GetMaxClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) @@ -1368,7 +1417,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetMaxClientSize path: opentk/src/OpenTK.Platform.Native/SDL/SDLWindowComponent.cs - startLine: 721 + startLine: 729 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.SDL @@ -1411,7 +1460,7 @@ items: repo: https://github.com/opentk/opentk.git id: SetMaxClientSize path: opentk/src/OpenTK.Platform.Native/SDL/SDLWindowComponent.cs - startLine: 736 + startLine: 744 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.SDL @@ -1454,7 +1503,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetMinClientSize path: opentk/src/OpenTK.Platform.Native/SDL/SDLWindowComponent.cs - startLine: 746 + startLine: 754 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.SDL @@ -1497,7 +1546,7 @@ items: repo: https://github.com/opentk/opentk.git id: SetMinClientSize path: opentk/src/OpenTK.Platform.Native/SDL/SDLWindowComponent.cs - startLine: 759 + startLine: 767 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.SDL @@ -1540,7 +1589,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetDisplay path: opentk/src/OpenTK.Platform.Native/SDL/SDLWindowComponent.cs - startLine: 767 + startLine: 775 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.SDL @@ -1584,7 +1633,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetMode path: opentk/src/OpenTK.Platform.Native/SDL/SDLWindowComponent.cs - startLine: 778 + startLine: 786 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.SDL @@ -1625,7 +1674,7 @@ items: repo: https://github.com/opentk/opentk.git id: SetMode path: opentk/src/OpenTK.Platform.Native/SDL/SDLWindowComponent.cs - startLine: 812 + startLine: 820 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.SDL @@ -1680,7 +1729,7 @@ items: repo: https://github.com/opentk/opentk.git id: SetFullscreenDisplay path: opentk/src/OpenTK.Platform.Native/SDL/SDLWindowComponent.cs - startLine: 860 + startLine: 868 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.SDL @@ -1723,7 +1772,7 @@ items: repo: https://github.com/opentk/opentk.git id: SetFullscreenDisplay path: opentk/src/OpenTK.Platform.Native/SDL/SDLWindowComponent.cs - startLine: 895 + startLine: 903 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.SDL @@ -1768,7 +1817,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetFullscreenDisplay path: opentk/src/OpenTK.Platform.Native/SDL/SDLWindowComponent.cs - startLine: 942 + startLine: 950 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.SDL @@ -1810,7 +1859,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetBorderStyle path: opentk/src/OpenTK.Platform.Native/SDL/SDLWindowComponent.cs - startLine: 959 + startLine: 967 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.SDL @@ -1851,7 +1900,7 @@ items: repo: https://github.com/opentk/opentk.git id: SetBorderStyle path: opentk/src/OpenTK.Platform.Native/SDL/SDLWindowComponent.cs - startLine: 986 + startLine: 994 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.SDL @@ -1898,7 +1947,7 @@ items: repo: https://github.com/opentk/opentk.git id: SetAlwaysOnTop path: opentk/src/OpenTK.Platform.Native/SDL/SDLWindowComponent.cs - startLine: 1013 + startLine: 1021 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.SDL @@ -1938,7 +1987,7 @@ items: repo: https://github.com/opentk/opentk.git id: IsAlwaysOnTop path: opentk/src/OpenTK.Platform.Native/SDL/SDLWindowComponent.cs - startLine: 1021 + startLine: 1029 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.SDL @@ -1975,7 +2024,7 @@ items: repo: https://github.com/opentk/opentk.git id: SetHitTestCallback path: opentk/src/OpenTK.Platform.Native/SDL/SDLWindowComponent.cs - startLine: 1031 + startLine: 1039 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.SDL @@ -2025,7 +2074,7 @@ items: repo: https://github.com/opentk/opentk.git id: SetCursor path: opentk/src/OpenTK.Platform.Native/SDL/SDLWindowComponent.cs - startLine: 1076 + startLine: 1084 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.SDL @@ -2072,7 +2121,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetCursorCaptureMode path: opentk/src/OpenTK.Platform.Native/SDL/SDLWindowComponent.cs - startLine: 1100 + startLine: 1108 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.SDL @@ -2109,7 +2158,7 @@ items: repo: https://github.com/opentk/opentk.git id: SetCursorCaptureMode path: opentk/src/OpenTK.Platform.Native/SDL/SDLWindowComponent.cs - startLine: 1121 + startLine: 1129 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.SDL @@ -2131,6 +2180,43 @@ items: overload: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetCursorCaptureMode* implements: - OpenTK.Core.Platform.IWindowComponent.SetCursorCaptureMode(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.CursorCaptureMode) +- uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.IsFocused(OpenTK.Core.Platform.WindowHandle) + commentId: M:OpenTK.Platform.Native.SDL.SDLWindowComponent.IsFocused(OpenTK.Core.Platform.WindowHandle) + id: IsFocused(OpenTK.Core.Platform.WindowHandle) + parent: OpenTK.Platform.Native.SDL.SDLWindowComponent + langs: + - csharp + - vb + name: IsFocused(WindowHandle) + nameWithType: SDLWindowComponent.IsFocused(WindowHandle) + fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.IsFocused(OpenTK.Core.Platform.WindowHandle) + type: Method + source: + remote: + path: src/OpenTK.Platform.Native/SDL/SDLWindowComponent.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: IsFocused + path: opentk/src/OpenTK.Platform.Native/SDL/SDLWindowComponent.cs + startLine: 1150 + assemblies: + - OpenTK.Platform.Native + namespace: OpenTK.Platform.Native.SDL + summary: Returns true if the given window has input focus. + example: [] + syntax: + content: public bool IsFocused(WindowHandle handle) + parameters: + - id: handle + type: OpenTK.Core.Platform.WindowHandle + description: Handle to a window. + return: + type: System.Boolean + description: If the window has input focus. + content.vb: Public Function IsFocused(handle As WindowHandle) As Boolean + overload: OpenTK.Platform.Native.SDL.SDLWindowComponent.IsFocused* + implements: + - OpenTK.Core.Platform.IWindowComponent.IsFocused(OpenTK.Core.Platform.WindowHandle) - uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.FocusWindow(OpenTK.Core.Platform.WindowHandle) commentId: M:OpenTK.Platform.Native.SDL.SDLWindowComponent.FocusWindow(OpenTK.Core.Platform.WindowHandle) id: FocusWindow(OpenTK.Core.Platform.WindowHandle) @@ -2149,7 +2235,7 @@ items: repo: https://github.com/opentk/opentk.git id: FocusWindow path: opentk/src/OpenTK.Platform.Native/SDL/SDLWindowComponent.cs - startLine: 1142 + startLine: 1158 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.SDL @@ -2183,7 +2269,7 @@ items: repo: https://github.com/opentk/opentk.git id: RequestAttention path: opentk/src/OpenTK.Platform.Native/SDL/SDLWindowComponent.cs - startLine: 1150 + startLine: 1166 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.SDL @@ -2217,7 +2303,7 @@ items: repo: https://github.com/opentk/opentk.git id: ScreenToClient path: opentk/src/OpenTK.Platform.Native/SDL/SDLWindowComponent.cs - startLine: 1158 + startLine: 1174 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.SDL @@ -2266,7 +2352,7 @@ items: repo: https://github.com/opentk/opentk.git id: ClientToScreen path: opentk/src/OpenTK.Platform.Native/SDL/SDLWindowComponent.cs - startLine: 1168 + startLine: 1184 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.SDL @@ -2297,6 +2383,52 @@ items: nameWithType.vb: SDLWindowComponent.ClientToScreen(WindowHandle, Integer, Integer, Integer, Integer) fullName.vb: OpenTK.Platform.Native.SDL.SDLWindowComponent.ClientToScreen(OpenTK.Core.Platform.WindowHandle, Integer, Integer, Integer, Integer) name.vb: ClientToScreen(WindowHandle, Integer, Integer, Integer, Integer) +- uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetScaleFactor(OpenTK.Core.Platform.WindowHandle,System.Single@,System.Single@) + commentId: M:OpenTK.Platform.Native.SDL.SDLWindowComponent.GetScaleFactor(OpenTK.Core.Platform.WindowHandle,System.Single@,System.Single@) + id: GetScaleFactor(OpenTK.Core.Platform.WindowHandle,System.Single@,System.Single@) + parent: OpenTK.Platform.Native.SDL.SDLWindowComponent + langs: + - csharp + - vb + name: GetScaleFactor(WindowHandle, out float, out float) + nameWithType: SDLWindowComponent.GetScaleFactor(WindowHandle, out float, out float) + fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetScaleFactor(OpenTK.Core.Platform.WindowHandle, out float, out float) + type: Method + source: + remote: + path: src/OpenTK.Platform.Native/SDL/SDLWindowComponent.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: GetScaleFactor + path: opentk/src/OpenTK.Platform.Native/SDL/SDLWindowComponent.cs + startLine: 1194 + assemblies: + - OpenTK.Platform.Native + namespace: OpenTK.Platform.Native.SDL + summary: Returns the current scale factor of this window. + example: [] + syntax: + content: public void GetScaleFactor(WindowHandle handle, out float scaleX, out float scaleY) + parameters: + - id: handle + type: OpenTK.Core.Platform.WindowHandle + description: The window handle. + - id: scaleX + type: System.Single + description: The x scale factor of the window. + - id: scaleY + type: System.Single + description: The y scale factor of the window. + content.vb: Public Sub GetScaleFactor(handle As WindowHandle, scaleX As Single, scaleY As Single) + overload: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetScaleFactor* + seealso: + - linkId: OpenTK.Core.Platform.WindowScaleChangeEventArgs + commentId: T:OpenTK.Core.Platform.WindowScaleChangeEventArgs + implements: + - OpenTK.Core.Platform.IWindowComponent.GetScaleFactor(OpenTK.Core.Platform.WindowHandle,System.Single@,System.Single@) + nameWithType.vb: SDLWindowComponent.GetScaleFactor(WindowHandle, Single, Single) + fullName.vb: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetScaleFactor(OpenTK.Core.Platform.WindowHandle, Single, Single) + name.vb: GetScaleFactor(WindowHandle, Single, Single) references: - uid: OpenTK.Platform.Native.SDL commentId: N:OpenTK.Platform.Native.SDL @@ -2713,35 +2845,42 @@ references: href: OpenTK.Core.Utility.html - uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.Initialize* commentId: Overload:OpenTK.Platform.Native.SDL.SDLWindowComponent.Initialize - href: OpenTK.Platform.Native.SDL.SDLWindowComponent.html#OpenTK_Platform_Native_SDL_SDLWindowComponent_Initialize_OpenTK_Core_Platform_PalComponents_ + href: OpenTK.Platform.Native.SDL.SDLWindowComponent.html#OpenTK_Platform_Native_SDL_SDLWindowComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ name: Initialize nameWithType: SDLWindowComponent.Initialize fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.Initialize -- uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) - commentId: M:OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) +- uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + commentId: M:OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_PalComponents_ - name: Initialize(PalComponents) - nameWithType: IPalComponent.Initialize(PalComponents) - fullName: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + name: Initialize(ToolkitOptions) + nameWithType: IPalComponent.Initialize(ToolkitOptions) + fullName: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) spec.csharp: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_PalComponents_ + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.PalComponents - name: PalComponents - href: OpenTK.Core.Platform.PalComponents.html + - uid: OpenTK.Core.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Core.Platform.ToolkitOptions.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_PalComponents_ + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.PalComponents - name: PalComponents - href: OpenTK.Core.Platform.PalComponents.html + - uid: OpenTK.Core.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Core.Platform.ToolkitOptions.html - name: ) +- uid: OpenTK.Core.Platform.ToolkitOptions + commentId: T:OpenTK.Core.Platform.ToolkitOptions + parent: OpenTK.Core.Platform + href: OpenTK.Core.Platform.ToolkitOptions.html + name: ToolkitOptions + nameWithType: ToolkitOptions + fullName: OpenTK.Core.Platform.ToolkitOptions - uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.CanSetIcon* commentId: Overload:OpenTK.Platform.Native.SDL.SDLWindowComponent.CanSetIcon href: OpenTK.Platform.Native.SDL.SDLWindowComponent.html#OpenTK_Platform_Native_SDL_SDLWindowComponent_CanSetIcon @@ -4176,6 +4315,69 @@ references: isExternal: true href: https://learn.microsoft.com/dotnet/api/system.int32 - name: ) +- uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetFramebufferSize* + commentId: Overload:OpenTK.Platform.Native.SDL.SDLWindowComponent.GetFramebufferSize + href: OpenTK.Platform.Native.SDL.SDLWindowComponent.html#OpenTK_Platform_Native_SDL_SDLWindowComponent_GetFramebufferSize_OpenTK_Core_Platform_WindowHandle_System_Int32__System_Int32__ + name: GetFramebufferSize + nameWithType: SDLWindowComponent.GetFramebufferSize + fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetFramebufferSize +- uid: OpenTK.Core.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) + commentId: M:OpenTK.Core.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) + parent: OpenTK.Core.Platform.IWindowComponent + isExternal: true + href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetFramebufferSize_OpenTK_Core_Platform_WindowHandle_System_Int32__System_Int32__ + name: GetFramebufferSize(WindowHandle, out int, out int) + nameWithType: IWindowComponent.GetFramebufferSize(WindowHandle, out int, out int) + fullName: OpenTK.Core.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Core.Platform.WindowHandle, out int, out int) + nameWithType.vb: IWindowComponent.GetFramebufferSize(WindowHandle, Integer, Integer) + fullName.vb: OpenTK.Core.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Core.Platform.WindowHandle, Integer, Integer) + name.vb: GetFramebufferSize(WindowHandle, Integer, Integer) + spec.csharp: + - uid: OpenTK.Core.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) + name: GetFramebufferSize + href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetFramebufferSize_OpenTK_Core_Platform_WindowHandle_System_Int32__System_Int32__ + - name: ( + - uid: OpenTK.Core.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Core.Platform.WindowHandle.html + - name: ',' + - name: " " + - name: out + - name: " " + - uid: System.Int32 + name: int + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ',' + - name: " " + - name: out + - name: " " + - uid: System.Int32 + name: int + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ) + spec.vb: + - uid: OpenTK.Core.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) + name: GetFramebufferSize + href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetFramebufferSize_OpenTK_Core_Platform_WindowHandle_System_Int32__System_Int32__ + - name: ( + - uid: OpenTK.Core.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Core.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: System.Int32 + name: Integer + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ',' + - name: " " + - uid: System.Int32 + name: Integer + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ) - uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetMaxClientSize* commentId: Overload:OpenTK.Platform.Native.SDL.SDLWindowComponent.GetMaxClientSize href: OpenTK.Platform.Native.SDL.SDLWindowComponent.html#OpenTK_Platform_Native_SDL_SDLWindowComponent_GetMaxClientSize_OpenTK_Core_Platform_WindowHandle_System_Nullable_System_Int32___System_Nullable_System_Int32___ @@ -5126,6 +5328,37 @@ references: name: SetCursorCaptureMode nameWithType: SDLWindowComponent.SetCursorCaptureMode fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetCursorCaptureMode +- uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.IsFocused* + commentId: Overload:OpenTK.Platform.Native.SDL.SDLWindowComponent.IsFocused + href: OpenTK.Platform.Native.SDL.SDLWindowComponent.html#OpenTK_Platform_Native_SDL_SDLWindowComponent_IsFocused_OpenTK_Core_Platform_WindowHandle_ + name: IsFocused + nameWithType: SDLWindowComponent.IsFocused + fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.IsFocused +- uid: OpenTK.Core.Platform.IWindowComponent.IsFocused(OpenTK.Core.Platform.WindowHandle) + commentId: M:OpenTK.Core.Platform.IWindowComponent.IsFocused(OpenTK.Core.Platform.WindowHandle) + parent: OpenTK.Core.Platform.IWindowComponent + href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_IsFocused_OpenTK_Core_Platform_WindowHandle_ + name: IsFocused(WindowHandle) + nameWithType: IWindowComponent.IsFocused(WindowHandle) + fullName: OpenTK.Core.Platform.IWindowComponent.IsFocused(OpenTK.Core.Platform.WindowHandle) + spec.csharp: + - uid: OpenTK.Core.Platform.IWindowComponent.IsFocused(OpenTK.Core.Platform.WindowHandle) + name: IsFocused + href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_IsFocused_OpenTK_Core_Platform_WindowHandle_ + - name: ( + - uid: OpenTK.Core.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Core.Platform.WindowHandle.html + - name: ) + spec.vb: + - uid: OpenTK.Core.Platform.IWindowComponent.IsFocused(OpenTK.Core.Platform.WindowHandle) + name: IsFocused + href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_IsFocused_OpenTK_Core_Platform_WindowHandle_ + - name: ( + - uid: OpenTK.Core.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Core.Platform.WindowHandle.html + - name: ) - uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.FocusWindow* commentId: Overload:OpenTK.Platform.Native.SDL.SDLWindowComponent.FocusWindow href: OpenTK.Platform.Native.SDL.SDLWindowComponent.html#OpenTK_Platform_Native_SDL_SDLWindowComponent_FocusWindow_OpenTK_Core_Platform_WindowHandle_ @@ -5362,3 +5595,83 @@ references: isExternal: true href: https://learn.microsoft.com/dotnet/api/system.int32 - name: ) +- uid: OpenTK.Core.Platform.WindowScaleChangeEventArgs + commentId: T:OpenTK.Core.Platform.WindowScaleChangeEventArgs + href: OpenTK.Core.Platform.WindowScaleChangeEventArgs.html + name: WindowScaleChangeEventArgs + nameWithType: WindowScaleChangeEventArgs + fullName: OpenTK.Core.Platform.WindowScaleChangeEventArgs +- uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetScaleFactor* + commentId: Overload:OpenTK.Platform.Native.SDL.SDLWindowComponent.GetScaleFactor + href: OpenTK.Platform.Native.SDL.SDLWindowComponent.html#OpenTK_Platform_Native_SDL_SDLWindowComponent_GetScaleFactor_OpenTK_Core_Platform_WindowHandle_System_Single__System_Single__ + name: GetScaleFactor + nameWithType: SDLWindowComponent.GetScaleFactor + fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetScaleFactor +- uid: OpenTK.Core.Platform.IWindowComponent.GetScaleFactor(OpenTK.Core.Platform.WindowHandle,System.Single@,System.Single@) + commentId: M:OpenTK.Core.Platform.IWindowComponent.GetScaleFactor(OpenTK.Core.Platform.WindowHandle,System.Single@,System.Single@) + parent: OpenTK.Core.Platform.IWindowComponent + isExternal: true + href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetScaleFactor_OpenTK_Core_Platform_WindowHandle_System_Single__System_Single__ + name: GetScaleFactor(WindowHandle, out float, out float) + nameWithType: IWindowComponent.GetScaleFactor(WindowHandle, out float, out float) + fullName: OpenTK.Core.Platform.IWindowComponent.GetScaleFactor(OpenTK.Core.Platform.WindowHandle, out float, out float) + nameWithType.vb: IWindowComponent.GetScaleFactor(WindowHandle, Single, Single) + fullName.vb: OpenTK.Core.Platform.IWindowComponent.GetScaleFactor(OpenTK.Core.Platform.WindowHandle, Single, Single) + name.vb: GetScaleFactor(WindowHandle, Single, Single) + spec.csharp: + - uid: OpenTK.Core.Platform.IWindowComponent.GetScaleFactor(OpenTK.Core.Platform.WindowHandle,System.Single@,System.Single@) + name: GetScaleFactor + href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetScaleFactor_OpenTK_Core_Platform_WindowHandle_System_Single__System_Single__ + - name: ( + - uid: OpenTK.Core.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Core.Platform.WindowHandle.html + - name: ',' + - name: " " + - name: out + - name: " " + - uid: System.Single + name: float + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.single + - name: ',' + - name: " " + - name: out + - name: " " + - uid: System.Single + name: float + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.single + - name: ) + spec.vb: + - uid: OpenTK.Core.Platform.IWindowComponent.GetScaleFactor(OpenTK.Core.Platform.WindowHandle,System.Single@,System.Single@) + name: GetScaleFactor + href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetScaleFactor_OpenTK_Core_Platform_WindowHandle_System_Single__System_Single__ + - name: ( + - uid: OpenTK.Core.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Core.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: System.Single + name: Single + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.single + - name: ',' + - name: " " + - uid: System.Single + name: Single + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.single + - name: ) +- uid: System.Single + commentId: T:System.Single + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.single + name: float + nameWithType: float + fullName: float + nameWithType.vb: Single + fullName.vb: Single + name.vb: Single diff --git a/api/OpenTK.Platform.Native.Toolkit.yml b/api/OpenTK.Platform.Native.Toolkit.yml index fb41bf65..9f201772 100644 --- a/api/OpenTK.Platform.Native.Toolkit.yml +++ b/api/OpenTK.Platform.Native.Toolkit.yml @@ -7,9 +7,10 @@ items: children: - OpenTK.Platform.Native.Toolkit.Clipboard - OpenTK.Platform.Native.Toolkit.Cursor + - OpenTK.Platform.Native.Toolkit.Dialog - OpenTK.Platform.Native.Toolkit.Display - OpenTK.Platform.Native.Toolkit.Icon - - OpenTK.Platform.Native.Toolkit.Init(OpenTK.Platform.Native.ToolkitOptions) + - OpenTK.Platform.Native.Toolkit.Init(OpenTK.Core.Platform.ToolkitOptions) - OpenTK.Platform.Native.Toolkit.Joystick - OpenTK.Platform.Native.Toolkit.Keyboard - OpenTK.Platform.Native.Toolkit.Mouse @@ -31,10 +32,15 @@ items: repo: https://github.com/opentk/opentk.git id: Toolkit path: opentk/src/OpenTK.Platform.Native/Toolkit.cs - startLine: 19 + startLine: 16 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native + summary: >- + Provides static access to all OpenTK platform abstraction interfaces. + + This is the main way to access the OpenTK PAL2 api. + example: [] syntax: content: public static class Toolkit content.vb: Public Module Toolkit @@ -66,10 +72,12 @@ items: repo: https://github.com/opentk/opentk.git id: Window path: opentk/src/OpenTK.Platform.Native/Toolkit.cs - startLine: 33 + startLine: 34 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native + summary: Interface for creating, interacting with, and deleting windows. + example: [] syntax: content: public static IWindowComponent Window { get; } parameters: [] @@ -95,10 +103,12 @@ items: repo: https://github.com/opentk/opentk.git id: Surface path: opentk/src/OpenTK.Platform.Native/Toolkit.cs - startLine: 35 + startLine: 39 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native + summary: Interface for creating, interacting with, and deleting surfaces. + example: [] syntax: content: public static ISurfaceComponent Surface { get; } parameters: [] @@ -124,10 +134,12 @@ items: repo: https://github.com/opentk/opentk.git id: OpenGL path: opentk/src/OpenTK.Platform.Native/Toolkit.cs - startLine: 37 + startLine: 44 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native + summary: Interface for creating, interacting with, and deleting OpenGL contexts. + example: [] syntax: content: public static IOpenGLComponent OpenGL { get; } parameters: [] @@ -153,10 +165,12 @@ items: repo: https://github.com/opentk/opentk.git id: Display path: opentk/src/OpenTK.Platform.Native/Toolkit.cs - startLine: 39 + startLine: 49 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native + summary: Interface for querying information about displays attached to the system. + example: [] syntax: content: public static IDisplayComponent Display { get; } parameters: [] @@ -182,10 +196,12 @@ items: repo: https://github.com/opentk/opentk.git id: Shell path: opentk/src/OpenTK.Platform.Native/Toolkit.cs - startLine: 41 + startLine: 54 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native + summary: Interface for shell functions such as battery information, preferred theme, etc. + example: [] syntax: content: public static IShellComponent Shell { get; } parameters: [] @@ -211,10 +227,12 @@ items: repo: https://github.com/opentk/opentk.git id: Mouse path: opentk/src/OpenTK.Platform.Native/Toolkit.cs - startLine: 43 + startLine: 59 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native + summary: Interface for getting and setting the mouse position, and getting mouse button information. + example: [] syntax: content: public static IMouseComponent Mouse { get; } parameters: [] @@ -240,10 +258,12 @@ items: repo: https://github.com/opentk/opentk.git id: Keyboard path: opentk/src/OpenTK.Platform.Native/Toolkit.cs - startLine: 45 + startLine: 64 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native + summary: Interface for dealing with keyboard layouts, conversions between and , and IME. + example: [] syntax: content: public static IKeyboardComponent Keyboard { get; } parameters: [] @@ -269,10 +289,12 @@ items: repo: https://github.com/opentk/opentk.git id: Cursor path: opentk/src/OpenTK.Platform.Native/Toolkit.cs - startLine: 47 + startLine: 69 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native + summary: Interface for creating, interacting with, and deleting mouse cursor images. + example: [] syntax: content: public static ICursorComponent Cursor { get; } parameters: [] @@ -298,10 +320,12 @@ items: repo: https://github.com/opentk/opentk.git id: Icon path: opentk/src/OpenTK.Platform.Native/Toolkit.cs - startLine: 49 + startLine: 74 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native + summary: Interface for creating, interacting with, and deleting window icon images. + example: [] syntax: content: public static IIconComponent Icon { get; } parameters: [] @@ -327,10 +351,12 @@ items: repo: https://github.com/opentk/opentk.git id: Clipboard path: opentk/src/OpenTK.Platform.Native/Toolkit.cs - startLine: 51 + startLine: 79 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native + summary: Interface for getting and setting clipboard data. + example: [] syntax: content: public static IClipboardComponent Clipboard { get; } parameters: [] @@ -356,10 +382,12 @@ items: repo: https://github.com/opentk/opentk.git id: Joystick path: opentk/src/OpenTK.Platform.Native/Toolkit.cs - startLine: 53 + startLine: 84 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native + summary: Interface for getting joystick input. + example: [] syntax: content: public static IJoystickComponent Joystick { get; } parameters: [] @@ -367,16 +395,47 @@ items: type: OpenTK.Core.Platform.IJoystickComponent content.vb: Public Shared ReadOnly Property Joystick As IJoystickComponent overload: OpenTK.Platform.Native.Toolkit.Joystick* -- uid: OpenTK.Platform.Native.Toolkit.Init(OpenTK.Platform.Native.ToolkitOptions) - commentId: M:OpenTK.Platform.Native.Toolkit.Init(OpenTK.Platform.Native.ToolkitOptions) - id: Init(OpenTK.Platform.Native.ToolkitOptions) +- uid: OpenTK.Platform.Native.Toolkit.Dialog + commentId: P:OpenTK.Platform.Native.Toolkit.Dialog + id: Dialog + parent: OpenTK.Platform.Native.Toolkit + langs: + - csharp + - vb + name: Dialog + nameWithType: Toolkit.Dialog + fullName: OpenTK.Platform.Native.Toolkit.Dialog + type: Property + source: + remote: + path: src/OpenTK.Platform.Native/Toolkit.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: Dialog + path: opentk/src/OpenTK.Platform.Native/Toolkit.cs + startLine: 89 + assemblies: + - OpenTK.Platform.Native + namespace: OpenTK.Platform.Native + summary: Interface for opening system dialogs such as file open dialogs. + example: [] + syntax: + content: public static IDialogComponent Dialog { get; } + parameters: [] + return: + type: OpenTK.Core.Platform.IDialogComponent + content.vb: Public Shared ReadOnly Property Dialog As IDialogComponent + overload: OpenTK.Platform.Native.Toolkit.Dialog* +- uid: OpenTK.Platform.Native.Toolkit.Init(OpenTK.Core.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Native.Toolkit.Init(OpenTK.Core.Platform.ToolkitOptions) + id: Init(OpenTK.Core.Platform.ToolkitOptions) parent: OpenTK.Platform.Native.Toolkit langs: - csharp - vb name: Init(ToolkitOptions) nameWithType: Toolkit.Init(ToolkitOptions) - fullName: OpenTK.Platform.Native.Toolkit.Init(OpenTK.Platform.Native.ToolkitOptions) + fullName: OpenTK.Platform.Native.Toolkit.Init(OpenTK.Core.Platform.ToolkitOptions) type: Method source: remote: @@ -385,15 +444,21 @@ items: repo: https://github.com/opentk/opentk.git id: Init path: opentk/src/OpenTK.Platform.Native/Toolkit.cs - startLine: 55 + startLine: 96 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native + summary: >- + Initialize OpenTK with the given settings. + + This function must be called before trying to use the OpenTK api. + example: [] syntax: content: public static void Init(ToolkitOptions options) parameters: - id: options - type: OpenTK.Platform.Native.ToolkitOptions + type: OpenTK.Core.Platform.ToolkitOptions + description: The options to initialize with. content.vb: Public Shared Sub Init(options As ToolkitOptions) overload: OpenTK.Platform.Native.Toolkit.Init* references: @@ -772,6 +837,20 @@ references: name: IMouseComponent nameWithType: IMouseComponent fullName: OpenTK.Core.Platform.IMouseComponent +- uid: OpenTK.Core.Platform.Key + commentId: T:OpenTK.Core.Platform.Key + parent: OpenTK.Core.Platform + href: OpenTK.Core.Platform.Key.html + name: Key + nameWithType: Key + fullName: OpenTK.Core.Platform.Key +- uid: OpenTK.Core.Platform.Scancode + commentId: T:OpenTK.Core.Platform.Scancode + parent: OpenTK.Core.Platform + href: OpenTK.Core.Platform.Scancode.html + name: Scancode + nameWithType: Scancode + fullName: OpenTK.Core.Platform.Scancode - uid: OpenTK.Platform.Native.Toolkit.Keyboard* commentId: Overload:OpenTK.Platform.Native.Toolkit.Keyboard href: OpenTK.Platform.Native.Toolkit.html#OpenTK_Platform_Native_Toolkit_Keyboard @@ -837,16 +916,29 @@ references: name: IJoystickComponent nameWithType: IJoystickComponent fullName: OpenTK.Core.Platform.IJoystickComponent +- uid: OpenTK.Platform.Native.Toolkit.Dialog* + commentId: Overload:OpenTK.Platform.Native.Toolkit.Dialog + href: OpenTK.Platform.Native.Toolkit.html#OpenTK_Platform_Native_Toolkit_Dialog + name: Dialog + nameWithType: Toolkit.Dialog + fullName: OpenTK.Platform.Native.Toolkit.Dialog +- uid: OpenTK.Core.Platform.IDialogComponent + commentId: T:OpenTK.Core.Platform.IDialogComponent + parent: OpenTK.Core.Platform + href: OpenTK.Core.Platform.IDialogComponent.html + name: IDialogComponent + nameWithType: IDialogComponent + fullName: OpenTK.Core.Platform.IDialogComponent - uid: OpenTK.Platform.Native.Toolkit.Init* commentId: Overload:OpenTK.Platform.Native.Toolkit.Init - href: OpenTK.Platform.Native.Toolkit.html#OpenTK_Platform_Native_Toolkit_Init_OpenTK_Platform_Native_ToolkitOptions_ + href: OpenTK.Platform.Native.Toolkit.html#OpenTK_Platform_Native_Toolkit_Init_OpenTK_Core_Platform_ToolkitOptions_ name: Init nameWithType: Toolkit.Init fullName: OpenTK.Platform.Native.Toolkit.Init -- uid: OpenTK.Platform.Native.ToolkitOptions - commentId: T:OpenTK.Platform.Native.ToolkitOptions - parent: OpenTK.Platform.Native - href: OpenTK.Platform.Native.ToolkitOptions.html +- uid: OpenTK.Core.Platform.ToolkitOptions + commentId: T:OpenTK.Core.Platform.ToolkitOptions + parent: OpenTK.Core.Platform + href: OpenTK.Core.Platform.ToolkitOptions.html name: ToolkitOptions nameWithType: ToolkitOptions - fullName: OpenTK.Platform.Native.ToolkitOptions + fullName: OpenTK.Core.Platform.ToolkitOptions diff --git a/api/OpenTK.Platform.Native.Windows.ClipboardComponent.yml b/api/OpenTK.Platform.Native.Windows.ClipboardComponent.yml index c17eac49..e52782b2 100644 --- a/api/OpenTK.Platform.Native.Windows.ClipboardComponent.yml +++ b/api/OpenTK.Platform.Native.Windows.ClipboardComponent.yml @@ -11,9 +11,8 @@ items: - OpenTK.Platform.Native.Windows.ClipboardComponent.GetClipboardBitmap - OpenTK.Platform.Native.Windows.ClipboardComponent.GetClipboardFiles - OpenTK.Platform.Native.Windows.ClipboardComponent.GetClipboardFormat - - OpenTK.Platform.Native.Windows.ClipboardComponent.GetClipboardHTML - OpenTK.Platform.Native.Windows.ClipboardComponent.GetClipboardText - - OpenTK.Platform.Native.Windows.ClipboardComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - OpenTK.Platform.Native.Windows.ClipboardComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - OpenTK.Platform.Native.Windows.ClipboardComponent.Logger - OpenTK.Platform.Native.Windows.ClipboardComponent.Name - OpenTK.Platform.Native.Windows.ClipboardComponent.Provides @@ -228,16 +227,16 @@ items: type: System.Nullable{System.Boolean} content.vb: Public Property CanUploadToCloudClipboard As Boolean? overload: OpenTK.Platform.Native.Windows.ClipboardComponent.CanUploadToCloudClipboard* -- uid: OpenTK.Platform.Native.Windows.ClipboardComponent.Initialize(OpenTK.Core.Platform.PalComponents) - commentId: M:OpenTK.Platform.Native.Windows.ClipboardComponent.Initialize(OpenTK.Core.Platform.PalComponents) - id: Initialize(OpenTK.Core.Platform.PalComponents) +- uid: OpenTK.Platform.Native.Windows.ClipboardComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Native.Windows.ClipboardComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + id: Initialize(OpenTK.Core.Platform.ToolkitOptions) parent: OpenTK.Platform.Native.Windows.ClipboardComponent langs: - csharp - vb - name: Initialize(PalComponents) - nameWithType: ClipboardComponent.Initialize(PalComponents) - fullName: OpenTK.Platform.Native.Windows.ClipboardComponent.Initialize(OpenTK.Core.Platform.PalComponents) + name: Initialize(ToolkitOptions) + nameWithType: ClipboardComponent.Initialize(ToolkitOptions) + fullName: OpenTK.Platform.Native.Windows.ClipboardComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) type: Method source: remote: @@ -250,18 +249,18 @@ items: assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows - summary: Initialize the driver. + summary: Initialize the component. example: [] syntax: - content: public void Initialize(PalComponents which) + content: public void Initialize(ToolkitOptions options) parameters: - - id: which - type: OpenTK.Core.Platform.PalComponents - description: Bitfield of which components the driver need to be initialized. - content.vb: Public Sub Initialize(which As PalComponents) + - id: options + type: OpenTK.Core.Platform.ToolkitOptions + description: The options to initialize the component with. + content.vb: Public Sub Initialize(options As ToolkitOptions) overload: OpenTK.Platform.Native.Windows.ClipboardComponent.Initialize* implements: - - OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - uid: OpenTK.Platform.Native.Windows.ClipboardComponent.SupportedFormats commentId: P:OpenTK.Platform.Native.Windows.ClipboardComponent.SupportedFormats id: SupportedFormats @@ -280,7 +279,7 @@ items: repo: https://github.com/opentk/opentk.git id: SupportedFormats path: opentk/src/OpenTK.Platform.Native/Windows/ClipboardComponent.cs - startLine: 162 + startLine: 147 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows @@ -313,7 +312,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetClipboardFormat path: opentk/src/OpenTK.Platform.Native/Windows/ClipboardComponent.cs - startLine: 275 + startLine: 254 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows @@ -346,7 +345,7 @@ items: repo: https://github.com/opentk/opentk.git id: SetClipboardText path: opentk/src/OpenTK.Platform.Native/Windows/ClipboardComponent.cs - startLine: 281 + startLine: 260 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows @@ -383,7 +382,7 @@ items: repo: https://github.com/opentk/opentk.git id: SetClipboardAudio path: opentk/src/OpenTK.Platform.Native/Windows/ClipboardComponent.cs - startLine: 373 + startLine: 352 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows @@ -413,7 +412,7 @@ items: repo: https://github.com/opentk/opentk.git id: SetClipboardBitmap path: opentk/src/OpenTK.Platform.Native/Windows/ClipboardComponent.cs - startLine: 471 + startLine: 450 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows @@ -443,7 +442,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetClipboardText path: opentk/src/OpenTK.Platform.Native/Windows/ClipboardComponent.cs - startLine: 569 + startLine: 548 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows @@ -479,7 +478,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetClipboardAudio path: opentk/src/OpenTK.Platform.Native/Windows/ClipboardComponent.cs - startLine: 629 + startLine: 608 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows @@ -515,7 +514,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetClipboardBitmap path: opentk/src/OpenTK.Platform.Native/Windows/ClipboardComponent.cs - startLine: 711 + startLine: 690 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows @@ -533,42 +532,6 @@ items: overload: OpenTK.Platform.Native.Windows.ClipboardComponent.GetClipboardBitmap* implements: - OpenTK.Core.Platform.IClipboardComponent.GetClipboardBitmap -- uid: OpenTK.Platform.Native.Windows.ClipboardComponent.GetClipboardHTML - commentId: M:OpenTK.Platform.Native.Windows.ClipboardComponent.GetClipboardHTML - id: GetClipboardHTML - parent: OpenTK.Platform.Native.Windows.ClipboardComponent - langs: - - csharp - - vb - name: GetClipboardHTML() - nameWithType: ClipboardComponent.GetClipboardHTML() - fullName: OpenTK.Platform.Native.Windows.ClipboardComponent.GetClipboardHTML() - type: Method - source: - remote: - path: src/OpenTK.Platform.Native/Windows/ClipboardComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: GetClipboardHTML - path: opentk/src/OpenTK.Platform.Native/Windows/ClipboardComponent.cs - startLine: 830 - assemblies: - - OpenTK.Platform.Native - namespace: OpenTK.Platform.Native.Windows - summary: >- - Gets the HTML string currently in the clipboard. - - This function returns null if the current clipboard data doesn't have the format. - example: [] - syntax: - content: public string? GetClipboardHTML() - return: - type: System.String - description: The HTML string currently in the clipboard. - content.vb: Public Function GetClipboardHTML() As String - overload: OpenTK.Platform.Native.Windows.ClipboardComponent.GetClipboardHTML* - implements: - - OpenTK.Core.Platform.IClipboardComponent.GetClipboardHTML - uid: OpenTK.Platform.Native.Windows.ClipboardComponent.GetClipboardFiles commentId: M:OpenTK.Platform.Native.Windows.ClipboardComponent.GetClipboardFiles id: GetClipboardFiles @@ -587,7 +550,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetClipboardFiles path: opentk/src/OpenTK.Platform.Native/Windows/ClipboardComponent.cs - startLine: 896 + startLine: 809 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows @@ -1084,35 +1047,42 @@ references: fullName: OpenTK.Platform.Native.Windows.ClipboardComponent.CanUploadToCloudClipboard - uid: OpenTK.Platform.Native.Windows.ClipboardComponent.Initialize* commentId: Overload:OpenTK.Platform.Native.Windows.ClipboardComponent.Initialize - href: OpenTK.Platform.Native.Windows.ClipboardComponent.html#OpenTK_Platform_Native_Windows_ClipboardComponent_Initialize_OpenTK_Core_Platform_PalComponents_ + href: OpenTK.Platform.Native.Windows.ClipboardComponent.html#OpenTK_Platform_Native_Windows_ClipboardComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ name: Initialize nameWithType: ClipboardComponent.Initialize fullName: OpenTK.Platform.Native.Windows.ClipboardComponent.Initialize -- uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) - commentId: M:OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) +- uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + commentId: M:OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_PalComponents_ - name: Initialize(PalComponents) - nameWithType: IPalComponent.Initialize(PalComponents) - fullName: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + name: Initialize(ToolkitOptions) + nameWithType: IPalComponent.Initialize(ToolkitOptions) + fullName: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) spec.csharp: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_PalComponents_ + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.PalComponents - name: PalComponents - href: OpenTK.Core.Platform.PalComponents.html + - uid: OpenTK.Core.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Core.Platform.ToolkitOptions.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_PalComponents_ + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.PalComponents - name: PalComponents - href: OpenTK.Core.Platform.PalComponents.html + - uid: OpenTK.Core.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Core.Platform.ToolkitOptions.html - name: ) +- uid: OpenTK.Core.Platform.ToolkitOptions + commentId: T:OpenTK.Core.Platform.ToolkitOptions + parent: OpenTK.Core.Platform + href: OpenTK.Core.Platform.ToolkitOptions.html + name: ToolkitOptions + nameWithType: ToolkitOptions + fullName: OpenTK.Core.Platform.ToolkitOptions - uid: OpenTK.Platform.Native.Windows.ClipboardComponent.SupportedFormats* commentId: Overload:OpenTK.Platform.Native.Windows.ClipboardComponent.SupportedFormats href: OpenTK.Platform.Native.Windows.ClipboardComponent.html#OpenTK_Platform_Native_Windows_ClipboardComponent_SupportedFormats @@ -1412,37 +1382,6 @@ references: href: OpenTK.Core.Platform.IClipboardComponent.html#OpenTK_Core_Platform_IClipboardComponent_GetClipboardBitmap - name: ( - name: ) -- uid: OpenTK.Core.Platform.ClipboardFormat.HTML - commentId: F:OpenTK.Core.Platform.ClipboardFormat.HTML - href: OpenTK.Core.Platform.ClipboardFormat.html#OpenTK_Core_Platform_ClipboardFormat_HTML - name: HTML - nameWithType: ClipboardFormat.HTML - fullName: OpenTK.Core.Platform.ClipboardFormat.HTML -- uid: OpenTK.Platform.Native.Windows.ClipboardComponent.GetClipboardHTML* - commentId: Overload:OpenTK.Platform.Native.Windows.ClipboardComponent.GetClipboardHTML - href: OpenTK.Platform.Native.Windows.ClipboardComponent.html#OpenTK_Platform_Native_Windows_ClipboardComponent_GetClipboardHTML - name: GetClipboardHTML - nameWithType: ClipboardComponent.GetClipboardHTML - fullName: OpenTK.Platform.Native.Windows.ClipboardComponent.GetClipboardHTML -- uid: OpenTK.Core.Platform.IClipboardComponent.GetClipboardHTML - commentId: M:OpenTK.Core.Platform.IClipboardComponent.GetClipboardHTML - parent: OpenTK.Core.Platform.IClipboardComponent - href: OpenTK.Core.Platform.IClipboardComponent.html#OpenTK_Core_Platform_IClipboardComponent_GetClipboardHTML - name: GetClipboardHTML() - nameWithType: IClipboardComponent.GetClipboardHTML() - fullName: OpenTK.Core.Platform.IClipboardComponent.GetClipboardHTML() - spec.csharp: - - uid: OpenTK.Core.Platform.IClipboardComponent.GetClipboardHTML - name: GetClipboardHTML - href: OpenTK.Core.Platform.IClipboardComponent.html#OpenTK_Core_Platform_IClipboardComponent_GetClipboardHTML - - name: ( - - name: ) - spec.vb: - - uid: OpenTK.Core.Platform.IClipboardComponent.GetClipboardHTML - name: GetClipboardHTML - href: OpenTK.Core.Platform.IClipboardComponent.html#OpenTK_Core_Platform_IClipboardComponent_GetClipboardHTML - - name: ( - - name: ) - uid: OpenTK.Core.Platform.ClipboardFormat.Files commentId: F:OpenTK.Core.Platform.ClipboardFormat.Files href: OpenTK.Core.Platform.ClipboardFormat.html#OpenTK_Core_Platform_ClipboardFormat_Files diff --git a/api/OpenTK.Platform.Native.Windows.CursorComponent.yml b/api/OpenTK.Platform.Native.Windows.CursorComponent.yml index dddd49d0..478980fd 100644 --- a/api/OpenTK.Platform.Native.Windows.CursorComponent.yml +++ b/api/OpenTK.Platform.Native.Windows.CursorComponent.yml @@ -17,7 +17,7 @@ items: - OpenTK.Platform.Native.Windows.CursorComponent.GetHotspot(OpenTK.Core.Platform.CursorHandle,System.Int32@,System.Int32@) - OpenTK.Platform.Native.Windows.CursorComponent.GetImage(OpenTK.Core.Platform.CursorHandle,System.Span{System.Byte}) - OpenTK.Platform.Native.Windows.CursorComponent.GetSize(OpenTK.Core.Platform.CursorHandle,System.Int32@,System.Int32@) - - OpenTK.Platform.Native.Windows.CursorComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - OpenTK.Platform.Native.Windows.CursorComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - OpenTK.Platform.Native.Windows.CursorComponent.IsSystemCursor(OpenTK.Core.Platform.CursorHandle) - OpenTK.Platform.Native.Windows.CursorComponent.Logger - OpenTK.Platform.Native.Windows.CursorComponent.Name @@ -155,16 +155,16 @@ items: overload: OpenTK.Platform.Native.Windows.CursorComponent.Logger* implements: - OpenTK.Core.Platform.IPalComponent.Logger -- uid: OpenTK.Platform.Native.Windows.CursorComponent.Initialize(OpenTK.Core.Platform.PalComponents) - commentId: M:OpenTK.Platform.Native.Windows.CursorComponent.Initialize(OpenTK.Core.Platform.PalComponents) - id: Initialize(OpenTK.Core.Platform.PalComponents) +- uid: OpenTK.Platform.Native.Windows.CursorComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Native.Windows.CursorComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + id: Initialize(OpenTK.Core.Platform.ToolkitOptions) parent: OpenTK.Platform.Native.Windows.CursorComponent langs: - csharp - vb - name: Initialize(PalComponents) - nameWithType: CursorComponent.Initialize(PalComponents) - fullName: OpenTK.Platform.Native.Windows.CursorComponent.Initialize(OpenTK.Core.Platform.PalComponents) + name: Initialize(ToolkitOptions) + nameWithType: CursorComponent.Initialize(ToolkitOptions) + fullName: OpenTK.Platform.Native.Windows.CursorComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) type: Method source: remote: @@ -177,18 +177,18 @@ items: assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows - summary: Initialize the driver. + summary: Initialize the component. example: [] syntax: - content: public void Initialize(PalComponents which) + content: public void Initialize(ToolkitOptions options) parameters: - - id: which - type: OpenTK.Core.Platform.PalComponents - description: Bitfield of which components the driver need to be initialized. - content.vb: Public Sub Initialize(which As PalComponents) + - id: options + type: OpenTK.Core.Platform.ToolkitOptions + description: The options to initialize the component with. + content.vb: Public Sub Initialize(options As ToolkitOptions) overload: OpenTK.Platform.Native.Windows.CursorComponent.Initialize* implements: - - OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - uid: OpenTK.Platform.Native.Windows.CursorComponent.CanLoadSystemCursors commentId: P:OpenTK.Platform.Native.Windows.CursorComponent.CanLoadSystemCursors id: CanLoadSystemCursors @@ -207,7 +207,7 @@ items: repo: https://github.com/opentk/opentk.git id: CanLoadSystemCursors path: opentk/src/OpenTK.Platform.Native/Windows/CursorComponent.cs - startLine: 36 + startLine: 32 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows @@ -243,7 +243,7 @@ items: repo: https://github.com/opentk/opentk.git id: CanInspectSystemCursors path: opentk/src/OpenTK.Platform.Native/Windows/CursorComponent.cs - startLine: 39 + startLine: 35 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows @@ -286,7 +286,7 @@ items: repo: https://github.com/opentk/opentk.git id: Create path: opentk/src/OpenTK.Platform.Native/Windows/CursorComponent.cs - startLine: 42 + startLine: 38 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows @@ -331,7 +331,7 @@ items: repo: https://github.com/opentk/opentk.git id: Create path: opentk/src/OpenTK.Platform.Native/Windows/CursorComponent.cs - startLine: 116 + startLine: 112 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows @@ -390,7 +390,7 @@ items: repo: https://github.com/opentk/opentk.git id: Create path: opentk/src/OpenTK.Platform.Native/Windows/CursorComponent.cs - startLine: 195 + startLine: 191 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows @@ -452,7 +452,7 @@ items: repo: https://github.com/opentk/opentk.git id: CreateFromCurFile path: opentk/src/OpenTK.Platform.Native/Windows/CursorComponent.cs - startLine: 288 + startLine: 284 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows @@ -494,7 +494,7 @@ items: repo: https://github.com/opentk/opentk.git id: CreateFromCurResorce path: opentk/src/OpenTK.Platform.Native/Windows/CursorComponent.cs - startLine: 337 + startLine: 333 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows @@ -530,7 +530,7 @@ items: repo: https://github.com/opentk/opentk.git id: CreateFromCurResorce path: opentk/src/OpenTK.Platform.Native/Windows/CursorComponent.cs - startLine: 413 + startLine: 409 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows @@ -577,7 +577,7 @@ items: repo: https://github.com/opentk/opentk.git id: Destroy path: opentk/src/OpenTK.Platform.Native/Windows/CursorComponent.cs - startLine: 426 + startLine: 422 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows @@ -615,7 +615,7 @@ items: repo: https://github.com/opentk/opentk.git id: IsSystemCursor path: opentk/src/OpenTK.Platform.Native/Windows/CursorComponent.cs - startLine: 473 + startLine: 469 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows @@ -655,7 +655,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetSize path: opentk/src/OpenTK.Platform.Native/Windows/CursorComponent.cs - startLine: 480 + startLine: 476 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows @@ -708,7 +708,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetHotspot path: opentk/src/OpenTK.Platform.Native/Windows/CursorComponent.cs - startLine: 507 + startLine: 503 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows @@ -764,7 +764,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetImage path: opentk/src/OpenTK.Platform.Native/Windows/CursorComponent.cs - startLine: 537 + startLine: 533 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows @@ -1205,35 +1205,42 @@ references: href: OpenTK.Core.Utility.html - uid: OpenTK.Platform.Native.Windows.CursorComponent.Initialize* commentId: Overload:OpenTK.Platform.Native.Windows.CursorComponent.Initialize - href: OpenTK.Platform.Native.Windows.CursorComponent.html#OpenTK_Platform_Native_Windows_CursorComponent_Initialize_OpenTK_Core_Platform_PalComponents_ + href: OpenTK.Platform.Native.Windows.CursorComponent.html#OpenTK_Platform_Native_Windows_CursorComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ name: Initialize nameWithType: CursorComponent.Initialize fullName: OpenTK.Platform.Native.Windows.CursorComponent.Initialize -- uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) - commentId: M:OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) +- uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + commentId: M:OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_PalComponents_ - name: Initialize(PalComponents) - nameWithType: IPalComponent.Initialize(PalComponents) - fullName: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + name: Initialize(ToolkitOptions) + nameWithType: IPalComponent.Initialize(ToolkitOptions) + fullName: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) spec.csharp: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_PalComponents_ + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.PalComponents - name: PalComponents - href: OpenTK.Core.Platform.PalComponents.html + - uid: OpenTK.Core.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Core.Platform.ToolkitOptions.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_PalComponents_ + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.PalComponents - name: PalComponents - href: OpenTK.Core.Platform.PalComponents.html + - uid: OpenTK.Core.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Core.Platform.ToolkitOptions.html - name: ) +- uid: OpenTK.Core.Platform.ToolkitOptions + commentId: T:OpenTK.Core.Platform.ToolkitOptions + parent: OpenTK.Core.Platform + href: OpenTK.Core.Platform.ToolkitOptions.html + name: ToolkitOptions + nameWithType: ToolkitOptions + fullName: OpenTK.Core.Platform.ToolkitOptions - uid: OpenTK.Core.Platform.ICursorComponent.Create(OpenTK.Core.Platform.SystemCursorType) commentId: M:OpenTK.Core.Platform.ICursorComponent.Create(OpenTK.Core.Platform.SystemCursorType) parent: OpenTK.Core.Platform.ICursorComponent diff --git a/api/OpenTK.Platform.Native.Windows.DialogComponent.yml b/api/OpenTK.Platform.Native.Windows.DialogComponent.yml new file mode 100644 index 00000000..650992d3 --- /dev/null +++ b/api/OpenTK.Platform.Native.Windows.DialogComponent.yml @@ -0,0 +1,1097 @@ +### YamlMime:ManagedReference +items: +- uid: OpenTK.Platform.Native.Windows.DialogComponent + commentId: T:OpenTK.Platform.Native.Windows.DialogComponent + id: DialogComponent + parent: OpenTK.Platform.Native.Windows + children: + - OpenTK.Platform.Native.Windows.DialogComponent.CanTargetFolders + - OpenTK.Platform.Native.Windows.DialogComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + - OpenTK.Platform.Native.Windows.DialogComponent.Logger + - OpenTK.Platform.Native.Windows.DialogComponent.Name + - OpenTK.Platform.Native.Windows.DialogComponent.Provides + - OpenTK.Platform.Native.Windows.DialogComponent.ShowOpenDialog(OpenTK.Core.Platform.WindowHandle,System.String,System.String,OpenTK.Core.Platform.DialogFileFilter[],OpenTK.Core.Platform.OpenDialogOptions) + - OpenTK.Platform.Native.Windows.DialogComponent.ShowSaveDialog(OpenTK.Core.Platform.WindowHandle,System.String,System.String,OpenTK.Core.Platform.DialogFileFilter[],OpenTK.Core.Platform.SaveDialogOptions) + langs: + - csharp + - vb + name: DialogComponent + nameWithType: DialogComponent + fullName: OpenTK.Platform.Native.Windows.DialogComponent + type: Class + source: + remote: + path: src/OpenTK.Platform.Native/Windows/DialogComponent.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: DialogComponent + path: opentk/src/OpenTK.Platform.Native/Windows/DialogComponent.cs + startLine: 202 + assemblies: + - OpenTK.Platform.Native + namespace: OpenTK.Platform.Native.Windows + syntax: + content: 'public class DialogComponent : IDialogComponent, IPalComponent' + content.vb: Public Class DialogComponent Implements IDialogComponent, IPalComponent + inheritance: + - System.Object + implements: + - OpenTK.Core.Platform.IDialogComponent + - OpenTK.Core.Platform.IPalComponent + inheritedMembers: + - System.Object.Equals(System.Object) + - System.Object.Equals(System.Object,System.Object) + - System.Object.GetHashCode + - System.Object.GetType + - System.Object.MemberwiseClone + - System.Object.ReferenceEquals(System.Object,System.Object) + - System.Object.ToString +- uid: OpenTK.Platform.Native.Windows.DialogComponent.Name + commentId: P:OpenTK.Platform.Native.Windows.DialogComponent.Name + id: Name + parent: OpenTK.Platform.Native.Windows.DialogComponent + langs: + - csharp + - vb + name: Name + nameWithType: DialogComponent.Name + fullName: OpenTK.Platform.Native.Windows.DialogComponent.Name + type: Property + source: + remote: + path: src/OpenTK.Platform.Native/Windows/DialogComponent.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: Name + path: opentk/src/OpenTK.Platform.Native/Windows/DialogComponent.cs + startLine: 205 + assemblies: + - OpenTK.Platform.Native + namespace: OpenTK.Platform.Native.Windows + summary: Name of the abstraction layer component. + example: [] + syntax: + content: public string Name { get; } + parameters: [] + return: + type: System.String + content.vb: Public ReadOnly Property Name As String + overload: OpenTK.Platform.Native.Windows.DialogComponent.Name* + implements: + - OpenTK.Core.Platform.IPalComponent.Name +- uid: OpenTK.Platform.Native.Windows.DialogComponent.Provides + commentId: P:OpenTK.Platform.Native.Windows.DialogComponent.Provides + id: Provides + parent: OpenTK.Platform.Native.Windows.DialogComponent + langs: + - csharp + - vb + name: Provides + nameWithType: DialogComponent.Provides + fullName: OpenTK.Platform.Native.Windows.DialogComponent.Provides + type: Property + source: + remote: + path: src/OpenTK.Platform.Native/Windows/DialogComponent.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: Provides + path: opentk/src/OpenTK.Platform.Native/Windows/DialogComponent.cs + startLine: 208 + assemblies: + - OpenTK.Platform.Native + namespace: OpenTK.Platform.Native.Windows + summary: Specifies which PAL components this object provides. + example: [] + syntax: + content: public PalComponents Provides { get; } + parameters: [] + return: + type: OpenTK.Core.Platform.PalComponents + content.vb: Public ReadOnly Property Provides As PalComponents + overload: OpenTK.Platform.Native.Windows.DialogComponent.Provides* + implements: + - OpenTK.Core.Platform.IPalComponent.Provides +- uid: OpenTK.Platform.Native.Windows.DialogComponent.Logger + commentId: P:OpenTK.Platform.Native.Windows.DialogComponent.Logger + id: Logger + parent: OpenTK.Platform.Native.Windows.DialogComponent + langs: + - csharp + - vb + name: Logger + nameWithType: DialogComponent.Logger + fullName: OpenTK.Platform.Native.Windows.DialogComponent.Logger + type: Property + source: + remote: + path: src/OpenTK.Platform.Native/Windows/DialogComponent.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: Logger + path: opentk/src/OpenTK.Platform.Native/Windows/DialogComponent.cs + startLine: 211 + assemblies: + - OpenTK.Platform.Native + namespace: OpenTK.Platform.Native.Windows + summary: Provides a logger for this component. + example: [] + syntax: + content: public ILogger? Logger { get; set; } + parameters: [] + return: + type: OpenTK.Core.Utility.ILogger + content.vb: Public Property Logger As ILogger + overload: OpenTK.Platform.Native.Windows.DialogComponent.Logger* + implements: + - OpenTK.Core.Platform.IPalComponent.Logger +- uid: OpenTK.Platform.Native.Windows.DialogComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Native.Windows.DialogComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + id: Initialize(OpenTK.Core.Platform.ToolkitOptions) + parent: OpenTK.Platform.Native.Windows.DialogComponent + langs: + - csharp + - vb + name: Initialize(ToolkitOptions) + nameWithType: DialogComponent.Initialize(ToolkitOptions) + fullName: OpenTK.Platform.Native.Windows.DialogComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + type: Method + source: + remote: + path: src/OpenTK.Platform.Native/Windows/DialogComponent.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: Initialize + path: opentk/src/OpenTK.Platform.Native/Windows/DialogComponent.cs + startLine: 214 + assemblies: + - OpenTK.Platform.Native + namespace: OpenTK.Platform.Native.Windows + summary: Initialize the component. + example: [] + syntax: + content: public void Initialize(ToolkitOptions options) + parameters: + - id: options + type: OpenTK.Core.Platform.ToolkitOptions + description: The options to initialize the component with. + content.vb: Public Sub Initialize(options As ToolkitOptions) + overload: OpenTK.Platform.Native.Windows.DialogComponent.Initialize* + implements: + - OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) +- uid: OpenTK.Platform.Native.Windows.DialogComponent.CanTargetFolders + commentId: P:OpenTK.Platform.Native.Windows.DialogComponent.CanTargetFolders + id: CanTargetFolders + parent: OpenTK.Platform.Native.Windows.DialogComponent + langs: + - csharp + - vb + name: CanTargetFolders + nameWithType: DialogComponent.CanTargetFolders + fullName: OpenTK.Platform.Native.Windows.DialogComponent.CanTargetFolders + type: Property + source: + remote: + path: src/OpenTK.Platform.Native/Windows/DialogComponent.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: CanTargetFolders + path: opentk/src/OpenTK.Platform.Native/Windows/DialogComponent.cs + startLine: 219 + assemblies: + - OpenTK.Platform.Native + namespace: OpenTK.Platform.Native.Windows + summary: >- + If the value of this property is true and will work. + + Otherwise these flags will be ignored. + example: [] + syntax: + content: public bool CanTargetFolders { get; } + parameters: [] + return: + type: System.Boolean + content.vb: Public ReadOnly Property CanTargetFolders As Boolean + overload: OpenTK.Platform.Native.Windows.DialogComponent.CanTargetFolders* + implements: + - OpenTK.Core.Platform.IDialogComponent.CanTargetFolders +- uid: OpenTK.Platform.Native.Windows.DialogComponent.ShowOpenDialog(OpenTK.Core.Platform.WindowHandle,System.String,System.String,OpenTK.Core.Platform.DialogFileFilter[],OpenTK.Core.Platform.OpenDialogOptions) + commentId: M:OpenTK.Platform.Native.Windows.DialogComponent.ShowOpenDialog(OpenTK.Core.Platform.WindowHandle,System.String,System.String,OpenTK.Core.Platform.DialogFileFilter[],OpenTK.Core.Platform.OpenDialogOptions) + id: ShowOpenDialog(OpenTK.Core.Platform.WindowHandle,System.String,System.String,OpenTK.Core.Platform.DialogFileFilter[],OpenTK.Core.Platform.OpenDialogOptions) + parent: OpenTK.Platform.Native.Windows.DialogComponent + langs: + - csharp + - vb + name: ShowOpenDialog(WindowHandle, string, string, DialogFileFilter[]?, OpenDialogOptions) + nameWithType: DialogComponent.ShowOpenDialog(WindowHandle, string, string, DialogFileFilter[]?, OpenDialogOptions) + fullName: OpenTK.Platform.Native.Windows.DialogComponent.ShowOpenDialog(OpenTK.Core.Platform.WindowHandle, string, string, OpenTK.Core.Platform.DialogFileFilter[]?, OpenTK.Core.Platform.OpenDialogOptions) + type: Method + source: + remote: + path: src/OpenTK.Platform.Native/Windows/DialogComponent.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: ShowOpenDialog + path: opentk/src/OpenTK.Platform.Native/Windows/DialogComponent.cs + startLine: 300 + assemblies: + - OpenTK.Platform.Native + namespace: OpenTK.Platform.Native.Windows + example: [] + syntax: + content: public List? ShowOpenDialog(WindowHandle parent, string title, string directory, DialogFileFilter[]? allowedExtensions, OpenDialogOptions options) + parameters: + - id: parent + type: OpenTK.Core.Platform.WindowHandle + - id: title + type: System.String + - id: directory + type: System.String + - id: allowedExtensions + type: OpenTK.Core.Platform.DialogFileFilter[] + - id: options + type: OpenTK.Core.Platform.OpenDialogOptions + return: + type: System.Collections.Generic.List{System.String} + content.vb: Public Function ShowOpenDialog(parent As WindowHandle, title As String, directory As String, allowedExtensions As DialogFileFilter(), options As OpenDialogOptions) As List(Of String) + overload: OpenTK.Platform.Native.Windows.DialogComponent.ShowOpenDialog* + implements: + - OpenTK.Core.Platform.IDialogComponent.ShowOpenDialog(OpenTK.Core.Platform.WindowHandle,System.String,System.String,OpenTK.Core.Platform.DialogFileFilter[],OpenTK.Core.Platform.OpenDialogOptions) + nameWithType.vb: DialogComponent.ShowOpenDialog(WindowHandle, String, String, DialogFileFilter(), OpenDialogOptions) + fullName.vb: OpenTK.Platform.Native.Windows.DialogComponent.ShowOpenDialog(OpenTK.Core.Platform.WindowHandle, String, String, OpenTK.Core.Platform.DialogFileFilter(), OpenTK.Core.Platform.OpenDialogOptions) + name.vb: ShowOpenDialog(WindowHandle, String, String, DialogFileFilter(), OpenDialogOptions) +- uid: OpenTK.Platform.Native.Windows.DialogComponent.ShowSaveDialog(OpenTK.Core.Platform.WindowHandle,System.String,System.String,OpenTK.Core.Platform.DialogFileFilter[],OpenTK.Core.Platform.SaveDialogOptions) + commentId: M:OpenTK.Platform.Native.Windows.DialogComponent.ShowSaveDialog(OpenTK.Core.Platform.WindowHandle,System.String,System.String,OpenTK.Core.Platform.DialogFileFilter[],OpenTK.Core.Platform.SaveDialogOptions) + id: ShowSaveDialog(OpenTK.Core.Platform.WindowHandle,System.String,System.String,OpenTK.Core.Platform.DialogFileFilter[],OpenTK.Core.Platform.SaveDialogOptions) + parent: OpenTK.Platform.Native.Windows.DialogComponent + langs: + - csharp + - vb + name: ShowSaveDialog(WindowHandle, string, string, DialogFileFilter[]?, SaveDialogOptions) + nameWithType: DialogComponent.ShowSaveDialog(WindowHandle, string, string, DialogFileFilter[]?, SaveDialogOptions) + fullName: OpenTK.Platform.Native.Windows.DialogComponent.ShowSaveDialog(OpenTK.Core.Platform.WindowHandle, string, string, OpenTK.Core.Platform.DialogFileFilter[]?, OpenTK.Core.Platform.SaveDialogOptions) + type: Method + source: + remote: + path: src/OpenTK.Platform.Native/Windows/DialogComponent.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: ShowSaveDialog + path: opentk/src/OpenTK.Platform.Native/Windows/DialogComponent.cs + startLine: 393 + assemblies: + - OpenTK.Platform.Native + namespace: OpenTK.Platform.Native.Windows + example: [] + syntax: + content: public string? ShowSaveDialog(WindowHandle parent, string title, string directory, DialogFileFilter[]? allowedExtensions, SaveDialogOptions options) + parameters: + - id: parent + type: OpenTK.Core.Platform.WindowHandle + - id: title + type: System.String + - id: directory + type: System.String + - id: allowedExtensions + type: OpenTK.Core.Platform.DialogFileFilter[] + - id: options + type: OpenTK.Core.Platform.SaveDialogOptions + return: + type: System.String + content.vb: Public Function ShowSaveDialog(parent As WindowHandle, title As String, directory As String, allowedExtensions As DialogFileFilter(), options As SaveDialogOptions) As String + overload: OpenTK.Platform.Native.Windows.DialogComponent.ShowSaveDialog* + implements: + - OpenTK.Core.Platform.IDialogComponent.ShowSaveDialog(OpenTK.Core.Platform.WindowHandle,System.String,System.String,OpenTK.Core.Platform.DialogFileFilter[],OpenTK.Core.Platform.SaveDialogOptions) + nameWithType.vb: DialogComponent.ShowSaveDialog(WindowHandle, String, String, DialogFileFilter(), SaveDialogOptions) + fullName.vb: OpenTK.Platform.Native.Windows.DialogComponent.ShowSaveDialog(OpenTK.Core.Platform.WindowHandle, String, String, OpenTK.Core.Platform.DialogFileFilter(), OpenTK.Core.Platform.SaveDialogOptions) + name.vb: ShowSaveDialog(WindowHandle, String, String, DialogFileFilter(), SaveDialogOptions) +references: +- uid: OpenTK.Platform.Native.Windows + commentId: N:OpenTK.Platform.Native.Windows + href: OpenTK.html + name: OpenTK.Platform.Native.Windows + nameWithType: OpenTK.Platform.Native.Windows + fullName: OpenTK.Platform.Native.Windows + spec.csharp: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Platform + name: Platform + href: OpenTK.Platform.html + - name: . + - uid: OpenTK.Platform.Native + name: Native + href: OpenTK.Platform.Native.html + - name: . + - uid: OpenTK.Platform.Native.Windows + name: Windows + href: OpenTK.Platform.Native.Windows.html + spec.vb: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Platform + name: Platform + href: OpenTK.Platform.html + - name: . + - uid: OpenTK.Platform.Native + name: Native + href: OpenTK.Platform.Native.html + - name: . + - uid: OpenTK.Platform.Native.Windows + name: Windows + href: OpenTK.Platform.Native.Windows.html +- uid: System.Object + commentId: T:System.Object + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + name: object + nameWithType: object + fullName: object + nameWithType.vb: Object + fullName.vb: Object + name.vb: Object +- uid: OpenTK.Core.Platform.IDialogComponent + commentId: T:OpenTK.Core.Platform.IDialogComponent + parent: OpenTK.Core.Platform + href: OpenTK.Core.Platform.IDialogComponent.html + name: IDialogComponent + nameWithType: IDialogComponent + fullName: OpenTK.Core.Platform.IDialogComponent +- uid: OpenTK.Core.Platform.IPalComponent + commentId: T:OpenTK.Core.Platform.IPalComponent + parent: OpenTK.Core.Platform + href: OpenTK.Core.Platform.IPalComponent.html + name: IPalComponent + nameWithType: IPalComponent + fullName: OpenTK.Core.Platform.IPalComponent +- uid: System.Object.Equals(System.Object) + commentId: M:System.Object.Equals(System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + name: Equals(object) + nameWithType: object.Equals(object) + fullName: object.Equals(object) + nameWithType.vb: Object.Equals(Object) + fullName.vb: Object.Equals(Object) + name.vb: Equals(Object) + spec.csharp: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.Equals(System.Object,System.Object) + commentId: M:System.Object.Equals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + name: Equals(object, object) + nameWithType: object.Equals(object, object) + fullName: object.Equals(object, object) + nameWithType.vb: Object.Equals(Object, Object) + fullName.vb: Object.Equals(Object, Object) + name.vb: Equals(Object, Object) + spec.csharp: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.GetHashCode + commentId: M:System.Object.GetHashCode + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + name: GetHashCode() + nameWithType: object.GetHashCode() + fullName: object.GetHashCode() + nameWithType.vb: Object.GetHashCode() + fullName.vb: Object.GetHashCode() + spec.csharp: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) +- uid: System.Object.GetType + commentId: M:System.Object.GetType + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + name: GetType() + nameWithType: object.GetType() + fullName: object.GetType() + nameWithType.vb: Object.GetType() + fullName.vb: Object.GetType() + spec.csharp: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) +- uid: System.Object.MemberwiseClone + commentId: M:System.Object.MemberwiseClone + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + name: MemberwiseClone() + nameWithType: object.MemberwiseClone() + fullName: object.MemberwiseClone() + nameWithType.vb: Object.MemberwiseClone() + fullName.vb: Object.MemberwiseClone() + spec.csharp: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) + spec.vb: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) +- uid: System.Object.ReferenceEquals(System.Object,System.Object) + commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + name: ReferenceEquals(object, object) + nameWithType: object.ReferenceEquals(object, object) + fullName: object.ReferenceEquals(object, object) + nameWithType.vb: Object.ReferenceEquals(Object, Object) + fullName.vb: Object.ReferenceEquals(Object, Object) + name.vb: ReferenceEquals(Object, Object) + spec.csharp: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.ToString + commentId: M:System.Object.ToString + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + name: ToString() + nameWithType: object.ToString() + fullName: object.ToString() + nameWithType.vb: Object.ToString() + fullName.vb: Object.ToString() + spec.csharp: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) + spec.vb: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) +- uid: System + commentId: N:System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System + nameWithType: System + fullName: System +- uid: OpenTK.Core.Platform + commentId: N:OpenTK.Core.Platform + href: OpenTK.html + name: OpenTK.Core.Platform + nameWithType: OpenTK.Core.Platform + fullName: OpenTK.Core.Platform + spec.csharp: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Core + name: Core + href: OpenTK.Core.html + - name: . + - uid: OpenTK.Core.Platform + name: Platform + href: OpenTK.Core.Platform.html + spec.vb: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Core + name: Core + href: OpenTK.Core.html + - name: . + - uid: OpenTK.Core.Platform + name: Platform + href: OpenTK.Core.Platform.html +- uid: OpenTK.Platform.Native.Windows.DialogComponent.Name* + commentId: Overload:OpenTK.Platform.Native.Windows.DialogComponent.Name + href: OpenTK.Platform.Native.Windows.DialogComponent.html#OpenTK_Platform_Native_Windows_DialogComponent_Name + name: Name + nameWithType: DialogComponent.Name + fullName: OpenTK.Platform.Native.Windows.DialogComponent.Name +- uid: OpenTK.Core.Platform.IPalComponent.Name + commentId: P:OpenTK.Core.Platform.IPalComponent.Name + parent: OpenTK.Core.Platform.IPalComponent + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Name + name: Name + nameWithType: IPalComponent.Name + fullName: OpenTK.Core.Platform.IPalComponent.Name +- uid: System.String + commentId: T:System.String + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + name: string + nameWithType: string + fullName: string + nameWithType.vb: String + fullName.vb: String + name.vb: String +- uid: OpenTK.Platform.Native.Windows.DialogComponent.Provides* + commentId: Overload:OpenTK.Platform.Native.Windows.DialogComponent.Provides + href: OpenTK.Platform.Native.Windows.DialogComponent.html#OpenTK_Platform_Native_Windows_DialogComponent_Provides + name: Provides + nameWithType: DialogComponent.Provides + fullName: OpenTK.Platform.Native.Windows.DialogComponent.Provides +- uid: OpenTK.Core.Platform.IPalComponent.Provides + commentId: P:OpenTK.Core.Platform.IPalComponent.Provides + parent: OpenTK.Core.Platform.IPalComponent + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Provides + name: Provides + nameWithType: IPalComponent.Provides + fullName: OpenTK.Core.Platform.IPalComponent.Provides +- uid: OpenTK.Core.Platform.PalComponents + commentId: T:OpenTK.Core.Platform.PalComponents + parent: OpenTK.Core.Platform + href: OpenTK.Core.Platform.PalComponents.html + name: PalComponents + nameWithType: PalComponents + fullName: OpenTK.Core.Platform.PalComponents +- uid: OpenTK.Platform.Native.Windows.DialogComponent.Logger* + commentId: Overload:OpenTK.Platform.Native.Windows.DialogComponent.Logger + href: OpenTK.Platform.Native.Windows.DialogComponent.html#OpenTK_Platform_Native_Windows_DialogComponent_Logger + name: Logger + nameWithType: DialogComponent.Logger + fullName: OpenTK.Platform.Native.Windows.DialogComponent.Logger +- uid: OpenTK.Core.Platform.IPalComponent.Logger + commentId: P:OpenTK.Core.Platform.IPalComponent.Logger + parent: OpenTK.Core.Platform.IPalComponent + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Logger + name: Logger + nameWithType: IPalComponent.Logger + fullName: OpenTK.Core.Platform.IPalComponent.Logger +- uid: OpenTK.Core.Utility.ILogger + commentId: T:OpenTK.Core.Utility.ILogger + parent: OpenTK.Core.Utility + href: OpenTK.Core.Utility.ILogger.html + name: ILogger + nameWithType: ILogger + fullName: OpenTK.Core.Utility.ILogger +- uid: OpenTK.Core.Utility + commentId: N:OpenTK.Core.Utility + href: OpenTK.html + name: OpenTK.Core.Utility + nameWithType: OpenTK.Core.Utility + fullName: OpenTK.Core.Utility + spec.csharp: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Core + name: Core + href: OpenTK.Core.html + - name: . + - uid: OpenTK.Core.Utility + name: Utility + href: OpenTK.Core.Utility.html + spec.vb: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Core + name: Core + href: OpenTK.Core.html + - name: . + - uid: OpenTK.Core.Utility + name: Utility + href: OpenTK.Core.Utility.html +- uid: OpenTK.Platform.Native.Windows.DialogComponent.Initialize* + commentId: Overload:OpenTK.Platform.Native.Windows.DialogComponent.Initialize + href: OpenTK.Platform.Native.Windows.DialogComponent.html#OpenTK_Platform_Native_Windows_DialogComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + name: Initialize + nameWithType: DialogComponent.Initialize + fullName: OpenTK.Platform.Native.Windows.DialogComponent.Initialize +- uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + commentId: M:OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + parent: OpenTK.Core.Platform.IPalComponent + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + name: Initialize(ToolkitOptions) + nameWithType: IPalComponent.Initialize(ToolkitOptions) + fullName: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + spec.csharp: + - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + name: Initialize + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + - name: ( + - uid: OpenTK.Core.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Core.Platform.ToolkitOptions.html + - name: ) + spec.vb: + - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + name: Initialize + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + - name: ( + - uid: OpenTK.Core.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Core.Platform.ToolkitOptions.html + - name: ) +- uid: OpenTK.Core.Platform.ToolkitOptions + commentId: T:OpenTK.Core.Platform.ToolkitOptions + parent: OpenTK.Core.Platform + href: OpenTK.Core.Platform.ToolkitOptions.html + name: ToolkitOptions + nameWithType: ToolkitOptions + fullName: OpenTK.Core.Platform.ToolkitOptions +- uid: OpenTK.Core.Platform.OpenDialogOptions.SelectDirectory + commentId: F:OpenTK.Core.Platform.OpenDialogOptions.SelectDirectory + href: OpenTK.Core.Platform.OpenDialogOptions.html#OpenTK_Core_Platform_OpenDialogOptions_SelectDirectory + name: SelectDirectory + nameWithType: OpenDialogOptions.SelectDirectory + fullName: OpenTK.Core.Platform.OpenDialogOptions.SelectDirectory +- uid: OpenTK.Platform.Native.Windows.DialogComponent.CanTargetFolders* + commentId: Overload:OpenTK.Platform.Native.Windows.DialogComponent.CanTargetFolders + href: OpenTK.Platform.Native.Windows.DialogComponent.html#OpenTK_Platform_Native_Windows_DialogComponent_CanTargetFolders + name: CanTargetFolders + nameWithType: DialogComponent.CanTargetFolders + fullName: OpenTK.Platform.Native.Windows.DialogComponent.CanTargetFolders +- uid: OpenTK.Core.Platform.IDialogComponent.CanTargetFolders + commentId: P:OpenTK.Core.Platform.IDialogComponent.CanTargetFolders + parent: OpenTK.Core.Platform.IDialogComponent + href: OpenTK.Core.Platform.IDialogComponent.html#OpenTK_Core_Platform_IDialogComponent_CanTargetFolders + name: CanTargetFolders + nameWithType: IDialogComponent.CanTargetFolders + fullName: OpenTK.Core.Platform.IDialogComponent.CanTargetFolders +- uid: System.Boolean + commentId: T:System.Boolean + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + name: bool + nameWithType: bool + fullName: bool + nameWithType.vb: Boolean + fullName.vb: Boolean + name.vb: Boolean +- uid: OpenTK.Platform.Native.Windows.DialogComponent.ShowOpenDialog* + commentId: Overload:OpenTK.Platform.Native.Windows.DialogComponent.ShowOpenDialog + href: OpenTK.Platform.Native.Windows.DialogComponent.html#OpenTK_Platform_Native_Windows_DialogComponent_ShowOpenDialog_OpenTK_Core_Platform_WindowHandle_System_String_System_String_OpenTK_Core_Platform_DialogFileFilter___OpenTK_Core_Platform_OpenDialogOptions_ + name: ShowOpenDialog + nameWithType: DialogComponent.ShowOpenDialog + fullName: OpenTK.Platform.Native.Windows.DialogComponent.ShowOpenDialog +- uid: OpenTK.Core.Platform.IDialogComponent.ShowOpenDialog(OpenTK.Core.Platform.WindowHandle,System.String,System.String,OpenTK.Core.Platform.DialogFileFilter[],OpenTK.Core.Platform.OpenDialogOptions) + commentId: M:OpenTK.Core.Platform.IDialogComponent.ShowOpenDialog(OpenTK.Core.Platform.WindowHandle,System.String,System.String,OpenTK.Core.Platform.DialogFileFilter[],OpenTK.Core.Platform.OpenDialogOptions) + parent: OpenTK.Core.Platform.IDialogComponent + isExternal: true + href: OpenTK.Core.Platform.IDialogComponent.html#OpenTK_Core_Platform_IDialogComponent_ShowOpenDialog_OpenTK_Core_Platform_WindowHandle_System_String_System_String_OpenTK_Core_Platform_DialogFileFilter___OpenTK_Core_Platform_OpenDialogOptions_ + name: ShowOpenDialog(WindowHandle, string, string, DialogFileFilter[], OpenDialogOptions) + nameWithType: IDialogComponent.ShowOpenDialog(WindowHandle, string, string, DialogFileFilter[], OpenDialogOptions) + fullName: OpenTK.Core.Platform.IDialogComponent.ShowOpenDialog(OpenTK.Core.Platform.WindowHandle, string, string, OpenTK.Core.Platform.DialogFileFilter[], OpenTK.Core.Platform.OpenDialogOptions) + nameWithType.vb: IDialogComponent.ShowOpenDialog(WindowHandle, String, String, DialogFileFilter(), OpenDialogOptions) + fullName.vb: OpenTK.Core.Platform.IDialogComponent.ShowOpenDialog(OpenTK.Core.Platform.WindowHandle, String, String, OpenTK.Core.Platform.DialogFileFilter(), OpenTK.Core.Platform.OpenDialogOptions) + name.vb: ShowOpenDialog(WindowHandle, String, String, DialogFileFilter(), OpenDialogOptions) + spec.csharp: + - uid: OpenTK.Core.Platform.IDialogComponent.ShowOpenDialog(OpenTK.Core.Platform.WindowHandle,System.String,System.String,OpenTK.Core.Platform.DialogFileFilter[],OpenTK.Core.Platform.OpenDialogOptions) + name: ShowOpenDialog + href: OpenTK.Core.Platform.IDialogComponent.html#OpenTK_Core_Platform_IDialogComponent_ShowOpenDialog_OpenTK_Core_Platform_WindowHandle_System_String_System_String_OpenTK_Core_Platform_DialogFileFilter___OpenTK_Core_Platform_OpenDialogOptions_ + - name: ( + - uid: OpenTK.Core.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Core.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: System.String + name: string + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ',' + - name: " " + - uid: System.String + name: string + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ',' + - name: " " + - uid: OpenTK.Core.Platform.DialogFileFilter + name: DialogFileFilter + href: OpenTK.Core.Platform.DialogFileFilter.html + - name: '[' + - name: ']' + - name: ',' + - name: " " + - uid: OpenTK.Core.Platform.OpenDialogOptions + name: OpenDialogOptions + href: OpenTK.Core.Platform.OpenDialogOptions.html + - name: ) + spec.vb: + - uid: OpenTK.Core.Platform.IDialogComponent.ShowOpenDialog(OpenTK.Core.Platform.WindowHandle,System.String,System.String,OpenTK.Core.Platform.DialogFileFilter[],OpenTK.Core.Platform.OpenDialogOptions) + name: ShowOpenDialog + href: OpenTK.Core.Platform.IDialogComponent.html#OpenTK_Core_Platform_IDialogComponent_ShowOpenDialog_OpenTK_Core_Platform_WindowHandle_System_String_System_String_OpenTK_Core_Platform_DialogFileFilter___OpenTK_Core_Platform_OpenDialogOptions_ + - name: ( + - uid: OpenTK.Core.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Core.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: System.String + name: String + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ',' + - name: " " + - uid: System.String + name: String + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ',' + - name: " " + - uid: OpenTK.Core.Platform.DialogFileFilter + name: DialogFileFilter + href: OpenTK.Core.Platform.DialogFileFilter.html + - name: ( + - name: ) + - name: ',' + - name: " " + - uid: OpenTK.Core.Platform.OpenDialogOptions + name: OpenDialogOptions + href: OpenTK.Core.Platform.OpenDialogOptions.html + - name: ) +- uid: OpenTK.Core.Platform.WindowHandle + commentId: T:OpenTK.Core.Platform.WindowHandle + parent: OpenTK.Core.Platform + href: OpenTK.Core.Platform.WindowHandle.html + name: WindowHandle + nameWithType: WindowHandle + fullName: OpenTK.Core.Platform.WindowHandle +- uid: OpenTK.Core.Platform.DialogFileFilter[] + isExternal: true + href: OpenTK.Core.Platform.DialogFileFilter.html + name: DialogFileFilter[] + nameWithType: DialogFileFilter[] + fullName: OpenTK.Core.Platform.DialogFileFilter[] + nameWithType.vb: DialogFileFilter() + fullName.vb: OpenTK.Core.Platform.DialogFileFilter() + name.vb: DialogFileFilter() + spec.csharp: + - uid: OpenTK.Core.Platform.DialogFileFilter + name: DialogFileFilter + href: OpenTK.Core.Platform.DialogFileFilter.html + - name: '[' + - name: ']' + spec.vb: + - uid: OpenTK.Core.Platform.DialogFileFilter + name: DialogFileFilter + href: OpenTK.Core.Platform.DialogFileFilter.html + - name: ( + - name: ) +- uid: OpenTK.Core.Platform.OpenDialogOptions + commentId: T:OpenTK.Core.Platform.OpenDialogOptions + parent: OpenTK.Core.Platform + href: OpenTK.Core.Platform.OpenDialogOptions.html + name: OpenDialogOptions + nameWithType: OpenDialogOptions + fullName: OpenTK.Core.Platform.OpenDialogOptions +- uid: System.Collections.Generic.List{System.String} + commentId: T:System.Collections.Generic.List{System.String} + parent: System.Collections.Generic + definition: System.Collections.Generic.List`1 + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 + name: List + nameWithType: List + fullName: System.Collections.Generic.List + nameWithType.vb: List(Of String) + fullName.vb: System.Collections.Generic.List(Of String) + name.vb: List(Of String) + spec.csharp: + - uid: System.Collections.Generic.List`1 + name: List + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 + - name: < + - uid: System.String + name: string + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: '>' + spec.vb: + - uid: System.Collections.Generic.List`1 + name: List + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 + - name: ( + - name: Of + - name: " " + - uid: System.String + name: String + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ) +- uid: System.Collections.Generic.List`1 + commentId: T:System.Collections.Generic.List`1 + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 + name: List + nameWithType: List + fullName: System.Collections.Generic.List + nameWithType.vb: List(Of T) + fullName.vb: System.Collections.Generic.List(Of T) + name.vb: List(Of T) + spec.csharp: + - uid: System.Collections.Generic.List`1 + name: List + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 + - name: < + - name: T + - name: '>' + spec.vb: + - uid: System.Collections.Generic.List`1 + name: List + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 + - name: ( + - name: Of + - name: " " + - name: T + - name: ) +- uid: System.Collections.Generic + commentId: N:System.Collections.Generic + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System.Collections.Generic + nameWithType: System.Collections.Generic + fullName: System.Collections.Generic + spec.csharp: + - uid: System + name: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + - name: . + - uid: System.Collections + name: Collections + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections + - name: . + - uid: System.Collections.Generic + name: Generic + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic + spec.vb: + - uid: System + name: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + - name: . + - uid: System.Collections + name: Collections + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections + - name: . + - uid: System.Collections.Generic + name: Generic + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic +- uid: OpenTK.Platform.Native.Windows.DialogComponent.ShowSaveDialog* + commentId: Overload:OpenTK.Platform.Native.Windows.DialogComponent.ShowSaveDialog + href: OpenTK.Platform.Native.Windows.DialogComponent.html#OpenTK_Platform_Native_Windows_DialogComponent_ShowSaveDialog_OpenTK_Core_Platform_WindowHandle_System_String_System_String_OpenTK_Core_Platform_DialogFileFilter___OpenTK_Core_Platform_SaveDialogOptions_ + name: ShowSaveDialog + nameWithType: DialogComponent.ShowSaveDialog + fullName: OpenTK.Platform.Native.Windows.DialogComponent.ShowSaveDialog +- uid: OpenTK.Core.Platform.IDialogComponent.ShowSaveDialog(OpenTK.Core.Platform.WindowHandle,System.String,System.String,OpenTK.Core.Platform.DialogFileFilter[],OpenTK.Core.Platform.SaveDialogOptions) + commentId: M:OpenTK.Core.Platform.IDialogComponent.ShowSaveDialog(OpenTK.Core.Platform.WindowHandle,System.String,System.String,OpenTK.Core.Platform.DialogFileFilter[],OpenTK.Core.Platform.SaveDialogOptions) + parent: OpenTK.Core.Platform.IDialogComponent + isExternal: true + href: OpenTK.Core.Platform.IDialogComponent.html#OpenTK_Core_Platform_IDialogComponent_ShowSaveDialog_OpenTK_Core_Platform_WindowHandle_System_String_System_String_OpenTK_Core_Platform_DialogFileFilter___OpenTK_Core_Platform_SaveDialogOptions_ + name: ShowSaveDialog(WindowHandle, string, string, DialogFileFilter[], SaveDialogOptions) + nameWithType: IDialogComponent.ShowSaveDialog(WindowHandle, string, string, DialogFileFilter[], SaveDialogOptions) + fullName: OpenTK.Core.Platform.IDialogComponent.ShowSaveDialog(OpenTK.Core.Platform.WindowHandle, string, string, OpenTK.Core.Platform.DialogFileFilter[], OpenTK.Core.Platform.SaveDialogOptions) + nameWithType.vb: IDialogComponent.ShowSaveDialog(WindowHandle, String, String, DialogFileFilter(), SaveDialogOptions) + fullName.vb: OpenTK.Core.Platform.IDialogComponent.ShowSaveDialog(OpenTK.Core.Platform.WindowHandle, String, String, OpenTK.Core.Platform.DialogFileFilter(), OpenTK.Core.Platform.SaveDialogOptions) + name.vb: ShowSaveDialog(WindowHandle, String, String, DialogFileFilter(), SaveDialogOptions) + spec.csharp: + - uid: OpenTK.Core.Platform.IDialogComponent.ShowSaveDialog(OpenTK.Core.Platform.WindowHandle,System.String,System.String,OpenTK.Core.Platform.DialogFileFilter[],OpenTK.Core.Platform.SaveDialogOptions) + name: ShowSaveDialog + href: OpenTK.Core.Platform.IDialogComponent.html#OpenTK_Core_Platform_IDialogComponent_ShowSaveDialog_OpenTK_Core_Platform_WindowHandle_System_String_System_String_OpenTK_Core_Platform_DialogFileFilter___OpenTK_Core_Platform_SaveDialogOptions_ + - name: ( + - uid: OpenTK.Core.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Core.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: System.String + name: string + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ',' + - name: " " + - uid: System.String + name: string + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ',' + - name: " " + - uid: OpenTK.Core.Platform.DialogFileFilter + name: DialogFileFilter + href: OpenTK.Core.Platform.DialogFileFilter.html + - name: '[' + - name: ']' + - name: ',' + - name: " " + - uid: OpenTK.Core.Platform.SaveDialogOptions + name: SaveDialogOptions + href: OpenTK.Core.Platform.SaveDialogOptions.html + - name: ) + spec.vb: + - uid: OpenTK.Core.Platform.IDialogComponent.ShowSaveDialog(OpenTK.Core.Platform.WindowHandle,System.String,System.String,OpenTK.Core.Platform.DialogFileFilter[],OpenTK.Core.Platform.SaveDialogOptions) + name: ShowSaveDialog + href: OpenTK.Core.Platform.IDialogComponent.html#OpenTK_Core_Platform_IDialogComponent_ShowSaveDialog_OpenTK_Core_Platform_WindowHandle_System_String_System_String_OpenTK_Core_Platform_DialogFileFilter___OpenTK_Core_Platform_SaveDialogOptions_ + - name: ( + - uid: OpenTK.Core.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Core.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: System.String + name: String + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ',' + - name: " " + - uid: System.String + name: String + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ',' + - name: " " + - uid: OpenTK.Core.Platform.DialogFileFilter + name: DialogFileFilter + href: OpenTK.Core.Platform.DialogFileFilter.html + - name: ( + - name: ) + - name: ',' + - name: " " + - uid: OpenTK.Core.Platform.SaveDialogOptions + name: SaveDialogOptions + href: OpenTK.Core.Platform.SaveDialogOptions.html + - name: ) +- uid: OpenTK.Core.Platform.SaveDialogOptions + commentId: T:OpenTK.Core.Platform.SaveDialogOptions + parent: OpenTK.Core.Platform + href: OpenTK.Core.Platform.SaveDialogOptions.html + name: SaveDialogOptions + nameWithType: SaveDialogOptions + fullName: OpenTK.Core.Platform.SaveDialogOptions diff --git a/api/OpenTK.Platform.Native.Windows.DisplayComponent.yml b/api/OpenTK.Platform.Native.Windows.DisplayComponent.yml index fd800532..3a9d70c4 100644 --- a/api/OpenTK.Platform.Native.Windows.DisplayComponent.yml +++ b/api/OpenTK.Platform.Native.Windows.DisplayComponent.yml @@ -18,7 +18,7 @@ items: - OpenTK.Platform.Native.Windows.DisplayComponent.GetVideoMode(OpenTK.Core.Platform.DisplayHandle,OpenTK.Core.Platform.VideoMode@) - OpenTK.Platform.Native.Windows.DisplayComponent.GetVirtualPosition(OpenTK.Core.Platform.DisplayHandle,System.Int32@,System.Int32@) - OpenTK.Platform.Native.Windows.DisplayComponent.GetWorkArea(OpenTK.Core.Platform.DisplayHandle,OpenTK.Mathematics.Box2i@) - - OpenTK.Platform.Native.Windows.DisplayComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - OpenTK.Platform.Native.Windows.DisplayComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - OpenTK.Platform.Native.Windows.DisplayComponent.IsPrimary(OpenTK.Core.Platform.DisplayHandle) - OpenTK.Platform.Native.Windows.DisplayComponent.Logger - OpenTK.Platform.Native.Windows.DisplayComponent.Name @@ -158,16 +158,16 @@ items: overload: OpenTK.Platform.Native.Windows.DisplayComponent.Logger* implements: - OpenTK.Core.Platform.IPalComponent.Logger -- uid: OpenTK.Platform.Native.Windows.DisplayComponent.Initialize(OpenTK.Core.Platform.PalComponents) - commentId: M:OpenTK.Platform.Native.Windows.DisplayComponent.Initialize(OpenTK.Core.Platform.PalComponents) - id: Initialize(OpenTK.Core.Platform.PalComponents) +- uid: OpenTK.Platform.Native.Windows.DisplayComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Native.Windows.DisplayComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + id: Initialize(OpenTK.Core.Platform.ToolkitOptions) parent: OpenTK.Platform.Native.Windows.DisplayComponent langs: - csharp - vb - name: Initialize(PalComponents) - nameWithType: DisplayComponent.Initialize(PalComponents) - fullName: OpenTK.Platform.Native.Windows.DisplayComponent.Initialize(OpenTK.Core.Platform.PalComponents) + name: Initialize(ToolkitOptions) + nameWithType: DisplayComponent.Initialize(ToolkitOptions) + fullName: OpenTK.Platform.Native.Windows.DisplayComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) type: Method source: remote: @@ -180,18 +180,18 @@ items: assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows - summary: Initialize the driver. + summary: Initialize the component. example: [] syntax: - content: public void Initialize(PalComponents which) + content: public void Initialize(ToolkitOptions options) parameters: - - id: which - type: OpenTK.Core.Platform.PalComponents - description: Bitfield of which components the driver need to be initialized. - content.vb: Public Sub Initialize(which As PalComponents) + - id: options + type: OpenTK.Core.Platform.ToolkitOptions + description: The options to initialize the component with. + content.vb: Public Sub Initialize(options As ToolkitOptions) overload: OpenTK.Platform.Native.Windows.DisplayComponent.Initialize* implements: - - OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - uid: OpenTK.Platform.Native.Windows.DisplayComponent.CanGetVirtualPosition commentId: P:OpenTK.Platform.Native.Windows.DisplayComponent.CanGetVirtualPosition id: CanGetVirtualPosition @@ -210,7 +210,7 @@ items: repo: https://github.com/opentk/opentk.git id: CanGetVirtualPosition path: opentk/src/OpenTK.Platform.Native/Windows/DisplayComponent.cs - startLine: 305 + startLine: 299 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows @@ -243,7 +243,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetDisplayCount path: opentk/src/OpenTK.Platform.Native/Windows/DisplayComponent.cs - startLine: 308 + startLine: 302 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows @@ -276,7 +276,7 @@ items: repo: https://github.com/opentk/opentk.git id: Open path: opentk/src/OpenTK.Platform.Native/Windows/DisplayComponent.cs - startLine: 325 + startLine: 319 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows @@ -320,7 +320,7 @@ items: repo: https://github.com/opentk/opentk.git id: OpenPrimary path: opentk/src/OpenTK.Platform.Native/Windows/DisplayComponent.cs - startLine: 334 + startLine: 328 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows @@ -353,7 +353,7 @@ items: repo: https://github.com/opentk/opentk.git id: Close path: opentk/src/OpenTK.Platform.Native/Windows/DisplayComponent.cs - startLine: 348 + startLine: 342 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows @@ -391,7 +391,7 @@ items: repo: https://github.com/opentk/opentk.git id: IsPrimary path: opentk/src/OpenTK.Platform.Native/Windows/DisplayComponent.cs - startLine: 356 + startLine: 350 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows @@ -428,7 +428,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetName path: opentk/src/OpenTK.Platform.Native/Windows/DisplayComponent.cs - startLine: 364 + startLine: 358 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows @@ -469,7 +469,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetVideoMode path: opentk/src/OpenTK.Platform.Native/Windows/DisplayComponent.cs - startLine: 372 + startLine: 366 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows @@ -513,7 +513,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetSupportedVideoModes path: opentk/src/OpenTK.Platform.Native/Windows/DisplayComponent.cs - startLine: 384 + startLine: 378 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows @@ -554,7 +554,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetVirtualPosition path: opentk/src/OpenTK.Platform.Native/Windows/DisplayComponent.cs - startLine: 413 + startLine: 407 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows @@ -604,7 +604,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetResolution path: opentk/src/OpenTK.Platform.Native/Windows/DisplayComponent.cs - startLine: 422 + startLine: 416 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows @@ -651,7 +651,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetWorkArea path: opentk/src/OpenTK.Platform.Native/Windows/DisplayComponent.cs - startLine: 431 + startLine: 425 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows @@ -694,7 +694,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetRefreshRate path: opentk/src/OpenTK.Platform.Native/Windows/DisplayComponent.cs - startLine: 441 + startLine: 435 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows @@ -734,7 +734,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetDisplayScale path: opentk/src/OpenTK.Platform.Native/Windows/DisplayComponent.cs - startLine: 449 + startLine: 443 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows @@ -777,7 +777,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetAdapter path: opentk/src/OpenTK.Platform.Native/Windows/DisplayComponent.cs - startLine: 471 + startLine: 465 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows @@ -812,7 +812,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetMonitor path: opentk/src/OpenTK.Platform.Native/Windows/DisplayComponent.cs - startLine: 483 + startLine: 477 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows @@ -1245,35 +1245,42 @@ references: href: OpenTK.Core.Utility.html - uid: OpenTK.Platform.Native.Windows.DisplayComponent.Initialize* commentId: Overload:OpenTK.Platform.Native.Windows.DisplayComponent.Initialize - href: OpenTK.Platform.Native.Windows.DisplayComponent.html#OpenTK_Platform_Native_Windows_DisplayComponent_Initialize_OpenTK_Core_Platform_PalComponents_ + href: OpenTK.Platform.Native.Windows.DisplayComponent.html#OpenTK_Platform_Native_Windows_DisplayComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ name: Initialize nameWithType: DisplayComponent.Initialize fullName: OpenTK.Platform.Native.Windows.DisplayComponent.Initialize -- uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) - commentId: M:OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) +- uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + commentId: M:OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_PalComponents_ - name: Initialize(PalComponents) - nameWithType: IPalComponent.Initialize(PalComponents) - fullName: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + name: Initialize(ToolkitOptions) + nameWithType: IPalComponent.Initialize(ToolkitOptions) + fullName: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) spec.csharp: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_PalComponents_ + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.PalComponents - name: PalComponents - href: OpenTK.Core.Platform.PalComponents.html + - uid: OpenTK.Core.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Core.Platform.ToolkitOptions.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_PalComponents_ + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.PalComponents - name: PalComponents - href: OpenTK.Core.Platform.PalComponents.html + - uid: OpenTK.Core.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Core.Platform.ToolkitOptions.html - name: ) +- uid: OpenTK.Core.Platform.ToolkitOptions + commentId: T:OpenTK.Core.Platform.ToolkitOptions + parent: OpenTK.Core.Platform + href: OpenTK.Core.Platform.ToolkitOptions.html + name: ToolkitOptions + nameWithType: ToolkitOptions + fullName: OpenTK.Core.Platform.ToolkitOptions - uid: OpenTK.Platform.Native.Windows.DisplayComponent.CanGetVirtualPosition* commentId: Overload:OpenTK.Platform.Native.Windows.DisplayComponent.CanGetVirtualPosition href: OpenTK.Platform.Native.Windows.DisplayComponent.html#OpenTK_Platform_Native_Windows_DisplayComponent_CanGetVirtualPosition diff --git a/api/OpenTK.Platform.Native.Windows.IconComponent.yml b/api/OpenTK.Platform.Native.Windows.IconComponent.yml index 5ee4b1a1..5d679f9c 100644 --- a/api/OpenTK.Platform.Native.Windows.IconComponent.yml +++ b/api/OpenTK.Platform.Native.Windows.IconComponent.yml @@ -15,7 +15,7 @@ items: - OpenTK.Platform.Native.Windows.IconComponent.GetBitmapByteSize(OpenTK.Core.Platform.IconHandle) - OpenTK.Platform.Native.Windows.IconComponent.GetBitmapData(OpenTK.Core.Platform.IconHandle,System.Span{System.Byte}) - OpenTK.Platform.Native.Windows.IconComponent.GetSize(OpenTK.Core.Platform.IconHandle,System.Int32@,System.Int32@) - - OpenTK.Platform.Native.Windows.IconComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - OpenTK.Platform.Native.Windows.IconComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - OpenTK.Platform.Native.Windows.IconComponent.Logger - OpenTK.Platform.Native.Windows.IconComponent.Name - OpenTK.Platform.Native.Windows.IconComponent.Provides @@ -152,16 +152,16 @@ items: overload: OpenTK.Platform.Native.Windows.IconComponent.Logger* implements: - OpenTK.Core.Platform.IPalComponent.Logger -- uid: OpenTK.Platform.Native.Windows.IconComponent.Initialize(OpenTK.Core.Platform.PalComponents) - commentId: M:OpenTK.Platform.Native.Windows.IconComponent.Initialize(OpenTK.Core.Platform.PalComponents) - id: Initialize(OpenTK.Core.Platform.PalComponents) +- uid: OpenTK.Platform.Native.Windows.IconComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Native.Windows.IconComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + id: Initialize(OpenTK.Core.Platform.ToolkitOptions) parent: OpenTK.Platform.Native.Windows.IconComponent langs: - csharp - vb - name: Initialize(PalComponents) - nameWithType: IconComponent.Initialize(PalComponents) - fullName: OpenTK.Platform.Native.Windows.IconComponent.Initialize(OpenTK.Core.Platform.PalComponents) + name: Initialize(ToolkitOptions) + nameWithType: IconComponent.Initialize(ToolkitOptions) + fullName: OpenTK.Platform.Native.Windows.IconComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) type: Method source: remote: @@ -174,18 +174,18 @@ items: assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows - summary: Initialize the driver. + summary: Initialize the component. example: [] syntax: - content: public void Initialize(PalComponents which) + content: public void Initialize(ToolkitOptions options) parameters: - - id: which - type: OpenTK.Core.Platform.PalComponents - description: Bitfield of which components the driver need to be initialized. - content.vb: Public Sub Initialize(which As PalComponents) + - id: options + type: OpenTK.Core.Platform.ToolkitOptions + description: The options to initialize the component with. + content.vb: Public Sub Initialize(options As ToolkitOptions) overload: OpenTK.Platform.Native.Windows.IconComponent.Initialize* implements: - - OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - uid: OpenTK.Platform.Native.Windows.IconComponent.CanLoadSystemIcons commentId: P:OpenTK.Platform.Native.Windows.IconComponent.CanLoadSystemIcons id: CanLoadSystemIcons @@ -204,7 +204,7 @@ items: repo: https://github.com/opentk/opentk.git id: CanLoadSystemIcons path: opentk/src/OpenTK.Platform.Native/Windows/IconComponent.cs - startLine: 34 + startLine: 30 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows @@ -240,7 +240,7 @@ items: repo: https://github.com/opentk/opentk.git id: Create path: opentk/src/OpenTK.Platform.Native/Windows/IconComponent.cs - startLine: 37 + startLine: 33 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows @@ -283,7 +283,7 @@ items: repo: https://github.com/opentk/opentk.git id: Create path: opentk/src/OpenTK.Platform.Native/Windows/IconComponent.cs - startLine: 77 + startLine: 73 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows @@ -329,7 +329,7 @@ items: repo: https://github.com/opentk/opentk.git id: CreateFromIcoFile path: opentk/src/OpenTK.Platform.Native/Windows/IconComponent.cs - startLine: 165 + startLine: 161 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows @@ -367,7 +367,7 @@ items: repo: https://github.com/opentk/opentk.git id: CreateFromIcoResource path: opentk/src/OpenTK.Platform.Native/Windows/IconComponent.cs - startLine: 192 + startLine: 188 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows @@ -408,7 +408,7 @@ items: repo: https://github.com/opentk/opentk.git id: CreateFromIcoResource path: opentk/src/OpenTK.Platform.Native/Windows/IconComponent.cs - startLine: 235 + startLine: 231 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows @@ -458,7 +458,7 @@ items: repo: https://github.com/opentk/opentk.git id: Destroy path: opentk/src/OpenTK.Platform.Native/Windows/IconComponent.cs - startLine: 252 + startLine: 248 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows @@ -496,7 +496,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetSize path: opentk/src/OpenTK.Platform.Native/Windows/IconComponent.cs - startLine: 294 + startLine: 290 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows @@ -543,7 +543,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetBitmapData path: opentk/src/OpenTK.Platform.Native/Windows/IconComponent.cs - startLine: 320 + startLine: 316 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows @@ -577,7 +577,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetBitmapByteSize path: opentk/src/OpenTK.Platform.Native/Windows/IconComponent.cs - startLine: 446 + startLine: 442 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows @@ -1006,35 +1006,42 @@ references: href: OpenTK.Core.Utility.html - uid: OpenTK.Platform.Native.Windows.IconComponent.Initialize* commentId: Overload:OpenTK.Platform.Native.Windows.IconComponent.Initialize - href: OpenTK.Platform.Native.Windows.IconComponent.html#OpenTK_Platform_Native_Windows_IconComponent_Initialize_OpenTK_Core_Platform_PalComponents_ + href: OpenTK.Platform.Native.Windows.IconComponent.html#OpenTK_Platform_Native_Windows_IconComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ name: Initialize nameWithType: IconComponent.Initialize fullName: OpenTK.Platform.Native.Windows.IconComponent.Initialize -- uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) - commentId: M:OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) +- uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + commentId: M:OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_PalComponents_ - name: Initialize(PalComponents) - nameWithType: IPalComponent.Initialize(PalComponents) - fullName: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + name: Initialize(ToolkitOptions) + nameWithType: IPalComponent.Initialize(ToolkitOptions) + fullName: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) spec.csharp: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_PalComponents_ + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.PalComponents - name: PalComponents - href: OpenTK.Core.Platform.PalComponents.html + - uid: OpenTK.Core.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Core.Platform.ToolkitOptions.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_PalComponents_ + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.PalComponents - name: PalComponents - href: OpenTK.Core.Platform.PalComponents.html + - uid: OpenTK.Core.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Core.Platform.ToolkitOptions.html - name: ) +- uid: OpenTK.Core.Platform.ToolkitOptions + commentId: T:OpenTK.Core.Platform.ToolkitOptions + parent: OpenTK.Core.Platform + href: OpenTK.Core.Platform.ToolkitOptions.html + name: ToolkitOptions + nameWithType: ToolkitOptions + fullName: OpenTK.Core.Platform.ToolkitOptions - uid: OpenTK.Core.Platform.IIconComponent.Create(OpenTK.Core.Platform.SystemIconType) commentId: M:OpenTK.Core.Platform.IIconComponent.Create(OpenTK.Core.Platform.SystemIconType) parent: OpenTK.Core.Platform.IIconComponent diff --git a/api/OpenTK.Platform.Native.Windows.JoystickComponent.yml b/api/OpenTK.Platform.Native.Windows.JoystickComponent.yml index 4e3147d4..bd69052a 100644 --- a/api/OpenTK.Platform.Native.Windows.JoystickComponent.yml +++ b/api/OpenTK.Platform.Native.Windows.JoystickComponent.yml @@ -12,7 +12,7 @@ items: - OpenTK.Platform.Native.Windows.JoystickComponent.GetName(OpenTK.Core.Platform.JoystickHandle) - OpenTK.Platform.Native.Windows.JoystickComponent.GetNumberOfAxes(OpenTK.Core.Platform.JoystickHandle) - OpenTK.Platform.Native.Windows.JoystickComponent.GetNumberOfButtons(OpenTK.Core.Platform.JoystickHandle) - - OpenTK.Platform.Native.Windows.JoystickComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - OpenTK.Platform.Native.Windows.JoystickComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - OpenTK.Platform.Native.Windows.JoystickComponent.IsConnected(System.Int32) - OpenTK.Platform.Native.Windows.JoystickComponent.LeftDeadzone - OpenTK.Platform.Native.Windows.JoystickComponent.Logger @@ -259,16 +259,16 @@ items: overload: OpenTK.Platform.Native.Windows.JoystickComponent.TriggerThreshold* implements: - OpenTK.Core.Platform.IJoystickComponent.TriggerThreshold -- uid: OpenTK.Platform.Native.Windows.JoystickComponent.Initialize(OpenTK.Core.Platform.PalComponents) - commentId: M:OpenTK.Platform.Native.Windows.JoystickComponent.Initialize(OpenTK.Core.Platform.PalComponents) - id: Initialize(OpenTK.Core.Platform.PalComponents) +- uid: OpenTK.Platform.Native.Windows.JoystickComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Native.Windows.JoystickComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + id: Initialize(OpenTK.Core.Platform.ToolkitOptions) parent: OpenTK.Platform.Native.Windows.JoystickComponent langs: - csharp - vb - name: Initialize(PalComponents) - nameWithType: JoystickComponent.Initialize(PalComponents) - fullName: OpenTK.Platform.Native.Windows.JoystickComponent.Initialize(OpenTK.Core.Platform.PalComponents) + name: Initialize(ToolkitOptions) + nameWithType: JoystickComponent.Initialize(ToolkitOptions) + fullName: OpenTK.Platform.Native.Windows.JoystickComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) type: Method source: remote: @@ -281,18 +281,18 @@ items: assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows - summary: Initialize the driver. + summary: Initialize the component. example: [] syntax: - content: public void Initialize(PalComponents which) + content: public void Initialize(ToolkitOptions options) parameters: - - id: which - type: OpenTK.Core.Platform.PalComponents - description: Bitfield of which components the driver need to be initialized. - content.vb: Public Sub Initialize(which As PalComponents) + - id: options + type: OpenTK.Core.Platform.ToolkitOptions + description: The options to initialize the component with. + content.vb: Public Sub Initialize(options As ToolkitOptions) overload: OpenTK.Platform.Native.Windows.JoystickComponent.Initialize* implements: - - OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - uid: OpenTK.Platform.Native.Windows.JoystickComponent.IsConnected(System.Int32) commentId: M:OpenTK.Platform.Native.Windows.JoystickComponent.IsConnected(System.Int32) id: IsConnected(System.Int32) @@ -311,7 +311,7 @@ items: repo: https://github.com/opentk/opentk.git id: IsConnected path: opentk/src/OpenTK.Platform.Native/Windows/JoystickComponent.cs - startLine: 115 + startLine: 110 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows @@ -350,7 +350,7 @@ items: repo: https://github.com/opentk/opentk.git id: Open path: opentk/src/OpenTK.Platform.Native/Windows/JoystickComponent.cs - startLine: 122 + startLine: 117 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows @@ -389,7 +389,7 @@ items: repo: https://github.com/opentk/opentk.git id: Close path: opentk/src/OpenTK.Platform.Native/Windows/JoystickComponent.cs - startLine: 130 + startLine: 125 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows @@ -423,7 +423,7 @@ items: repo: https://github.com/opentk/opentk.git id: SupportsVibration path: opentk/src/OpenTK.Platform.Native/Windows/JoystickComponent.cs - startLine: 136 + startLine: 131 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows @@ -454,7 +454,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetGuid path: opentk/src/OpenTK.Platform.Native/Windows/JoystickComponent.cs - startLine: 156 + startLine: 151 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows @@ -488,7 +488,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetName path: opentk/src/OpenTK.Platform.Native/Windows/JoystickComponent.cs - startLine: 164 + startLine: 159 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows @@ -522,7 +522,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetNumberOfButtons path: opentk/src/OpenTK.Platform.Native/Windows/JoystickComponent.cs - startLine: 171 + startLine: 166 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows @@ -553,7 +553,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetNumberOfAxes path: opentk/src/OpenTK.Platform.Native/Windows/JoystickComponent.cs - startLine: 178 + startLine: 173 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows @@ -584,7 +584,7 @@ items: repo: https://github.com/opentk/opentk.git id: SupportsForceFeedback path: opentk/src/OpenTK.Platform.Native/Windows/JoystickComponent.cs - startLine: 185 + startLine: 180 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows @@ -615,7 +615,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetAxis path: opentk/src/OpenTK.Platform.Native/Windows/JoystickComponent.cs - startLine: 193 + startLine: 188 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows @@ -658,7 +658,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetButton path: opentk/src/OpenTK.Platform.Native/Windows/JoystickComponent.cs - startLine: 235 + startLine: 230 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows @@ -698,7 +698,7 @@ items: repo: https://github.com/opentk/opentk.git id: SetVibration path: opentk/src/OpenTK.Platform.Native/Windows/JoystickComponent.cs - startLine: 271 + startLine: 266 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows @@ -739,7 +739,7 @@ items: repo: https://github.com/opentk/opentk.git id: TryGetBatteryInfo path: opentk/src/OpenTK.Platform.Native/Windows/JoystickComponent.cs - startLine: 286 + startLine: 281 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows @@ -1226,35 +1226,42 @@ references: fullName: OpenTK.Core.Platform.IJoystickComponent.TriggerThreshold - uid: OpenTK.Platform.Native.Windows.JoystickComponent.Initialize* commentId: Overload:OpenTK.Platform.Native.Windows.JoystickComponent.Initialize - href: OpenTK.Platform.Native.Windows.JoystickComponent.html#OpenTK_Platform_Native_Windows_JoystickComponent_Initialize_OpenTK_Core_Platform_PalComponents_ + href: OpenTK.Platform.Native.Windows.JoystickComponent.html#OpenTK_Platform_Native_Windows_JoystickComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ name: Initialize nameWithType: JoystickComponent.Initialize fullName: OpenTK.Platform.Native.Windows.JoystickComponent.Initialize -- uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) - commentId: M:OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) +- uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + commentId: M:OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_PalComponents_ - name: Initialize(PalComponents) - nameWithType: IPalComponent.Initialize(PalComponents) - fullName: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + name: Initialize(ToolkitOptions) + nameWithType: IPalComponent.Initialize(ToolkitOptions) + fullName: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) spec.csharp: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_PalComponents_ + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.PalComponents - name: PalComponents - href: OpenTK.Core.Platform.PalComponents.html + - uid: OpenTK.Core.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Core.Platform.ToolkitOptions.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_PalComponents_ + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.PalComponents - name: PalComponents - href: OpenTK.Core.Platform.PalComponents.html + - uid: OpenTK.Core.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Core.Platform.ToolkitOptions.html - name: ) +- uid: OpenTK.Core.Platform.ToolkitOptions + commentId: T:OpenTK.Core.Platform.ToolkitOptions + parent: OpenTK.Core.Platform + href: OpenTK.Core.Platform.ToolkitOptions.html + name: ToolkitOptions + nameWithType: ToolkitOptions + fullName: OpenTK.Core.Platform.ToolkitOptions - uid: OpenTK.Platform.Native.Windows.JoystickComponent.IsConnected* commentId: Overload:OpenTK.Platform.Native.Windows.JoystickComponent.IsConnected href: OpenTK.Platform.Native.Windows.JoystickComponent.html#OpenTK_Platform_Native_Windows_JoystickComponent_IsConnected_System_Int32_ diff --git a/api/OpenTK.Platform.Native.Windows.KeyboardComponent.yml b/api/OpenTK.Platform.Native.Windows.KeyboardComponent.yml index 62ef6d32..9d18af48 100644 --- a/api/OpenTK.Platform.Native.Windows.KeyboardComponent.yml +++ b/api/OpenTK.Platform.Native.Windows.KeyboardComponent.yml @@ -13,7 +13,7 @@ items: - OpenTK.Platform.Native.Windows.KeyboardComponent.GetKeyboardModifiers - OpenTK.Platform.Native.Windows.KeyboardComponent.GetKeyboardState(System.Boolean[]) - OpenTK.Platform.Native.Windows.KeyboardComponent.GetScancodeFromKey(OpenTK.Core.Platform.Key) - - OpenTK.Platform.Native.Windows.KeyboardComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - OpenTK.Platform.Native.Windows.KeyboardComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - OpenTK.Platform.Native.Windows.KeyboardComponent.Logger - OpenTK.Platform.Native.Windows.KeyboardComponent.Name - OpenTK.Platform.Native.Windows.KeyboardComponent.Provides @@ -153,16 +153,16 @@ items: overload: OpenTK.Platform.Native.Windows.KeyboardComponent.Logger* implements: - OpenTK.Core.Platform.IPalComponent.Logger -- uid: OpenTK.Platform.Native.Windows.KeyboardComponent.Initialize(OpenTK.Core.Platform.PalComponents) - commentId: M:OpenTK.Platform.Native.Windows.KeyboardComponent.Initialize(OpenTK.Core.Platform.PalComponents) - id: Initialize(OpenTK.Core.Platform.PalComponents) +- uid: OpenTK.Platform.Native.Windows.KeyboardComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Native.Windows.KeyboardComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + id: Initialize(OpenTK.Core.Platform.ToolkitOptions) parent: OpenTK.Platform.Native.Windows.KeyboardComponent langs: - csharp - vb - name: Initialize(PalComponents) - nameWithType: KeyboardComponent.Initialize(PalComponents) - fullName: OpenTK.Platform.Native.Windows.KeyboardComponent.Initialize(OpenTK.Core.Platform.PalComponents) + name: Initialize(ToolkitOptions) + nameWithType: KeyboardComponent.Initialize(ToolkitOptions) + fullName: OpenTK.Platform.Native.Windows.KeyboardComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) type: Method source: remote: @@ -175,18 +175,18 @@ items: assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows - summary: Initialize the driver. + summary: Initialize the component. example: [] syntax: - content: public void Initialize(PalComponents which) + content: public void Initialize(ToolkitOptions options) parameters: - - id: which - type: OpenTK.Core.Platform.PalComponents - description: Bitfield of which components the driver need to be initialized. - content.vb: Public Sub Initialize(which As PalComponents) + - id: options + type: OpenTK.Core.Platform.ToolkitOptions + description: The options to initialize the component with. + content.vb: Public Sub Initialize(options As ToolkitOptions) overload: OpenTK.Platform.Native.Windows.KeyboardComponent.Initialize* implements: - - OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - uid: OpenTK.Platform.Native.Windows.KeyboardComponent.SupportsLayouts commentId: P:OpenTK.Platform.Native.Windows.KeyboardComponent.SupportsLayouts id: SupportsLayouts @@ -205,7 +205,7 @@ items: repo: https://github.com/opentk/opentk.git id: SupportsLayouts path: opentk/src/OpenTK.Platform.Native/Windows/KeyboardComponent.cs - startLine: 142 + startLine: 137 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows @@ -238,7 +238,7 @@ items: repo: https://github.com/opentk/opentk.git id: SupportsIme path: opentk/src/OpenTK.Platform.Native/Windows/KeyboardComponent.cs - startLine: 145 + startLine: 140 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows @@ -271,7 +271,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetActiveKeyboardLayout path: opentk/src/OpenTK.Platform.Native/Windows/KeyboardComponent.cs - startLine: 216 + startLine: 211 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows @@ -315,7 +315,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetAvailableKeyboardLayouts path: opentk/src/OpenTK.Platform.Native/Windows/KeyboardComponent.cs - startLine: 231 + startLine: 226 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows @@ -349,7 +349,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetScancodeFromKey path: opentk/src/OpenTK.Platform.Native/Windows/KeyboardComponent.cs - startLine: 262 + startLine: 257 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows @@ -396,7 +396,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetKeyFromScancode path: opentk/src/OpenTK.Platform.Native/Windows/KeyboardComponent.cs - startLine: 269 + startLine: 264 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows @@ -439,7 +439,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetKeyboardState path: opentk/src/OpenTK.Platform.Native/Windows/KeyboardComponent.cs - startLine: 275 + startLine: 270 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows @@ -481,7 +481,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetKeyboardModifiers path: opentk/src/OpenTK.Platform.Native/Windows/KeyboardComponent.cs - startLine: 324 + startLine: 319 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows @@ -514,7 +514,7 @@ items: repo: https://github.com/opentk/opentk.git id: BeginIme path: opentk/src/OpenTK.Platform.Native/Windows/KeyboardComponent.cs - startLine: 332 + startLine: 327 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows @@ -548,7 +548,7 @@ items: repo: https://github.com/opentk/opentk.git id: SetImeRectangle path: opentk/src/OpenTK.Platform.Native/Windows/KeyboardComponent.cs - startLine: 344 + startLine: 339 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows @@ -597,7 +597,7 @@ items: repo: https://github.com/opentk/opentk.git id: EndIme path: opentk/src/OpenTK.Platform.Native/Windows/KeyboardComponent.cs - startLine: 365 + startLine: 360 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows @@ -1029,35 +1029,42 @@ references: href: OpenTK.Core.Utility.html - uid: OpenTK.Platform.Native.Windows.KeyboardComponent.Initialize* commentId: Overload:OpenTK.Platform.Native.Windows.KeyboardComponent.Initialize - href: OpenTK.Platform.Native.Windows.KeyboardComponent.html#OpenTK_Platform_Native_Windows_KeyboardComponent_Initialize_OpenTK_Core_Platform_PalComponents_ + href: OpenTK.Platform.Native.Windows.KeyboardComponent.html#OpenTK_Platform_Native_Windows_KeyboardComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ name: Initialize nameWithType: KeyboardComponent.Initialize fullName: OpenTK.Platform.Native.Windows.KeyboardComponent.Initialize -- uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) - commentId: M:OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) +- uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + commentId: M:OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_PalComponents_ - name: Initialize(PalComponents) - nameWithType: IPalComponent.Initialize(PalComponents) - fullName: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + name: Initialize(ToolkitOptions) + nameWithType: IPalComponent.Initialize(ToolkitOptions) + fullName: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) spec.csharp: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_PalComponents_ + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.PalComponents - name: PalComponents - href: OpenTK.Core.Platform.PalComponents.html + - uid: OpenTK.Core.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Core.Platform.ToolkitOptions.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_PalComponents_ + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.PalComponents - name: PalComponents - href: OpenTK.Core.Platform.PalComponents.html + - uid: OpenTK.Core.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Core.Platform.ToolkitOptions.html - name: ) +- uid: OpenTK.Core.Platform.ToolkitOptions + commentId: T:OpenTK.Core.Platform.ToolkitOptions + parent: OpenTK.Core.Platform + href: OpenTK.Core.Platform.ToolkitOptions.html + name: ToolkitOptions + nameWithType: ToolkitOptions + fullName: OpenTK.Core.Platform.ToolkitOptions - uid: OpenTK.Platform.Native.Windows.KeyboardComponent.SupportsLayouts* commentId: Overload:OpenTK.Platform.Native.Windows.KeyboardComponent.SupportsLayouts href: OpenTK.Platform.Native.Windows.KeyboardComponent.html#OpenTK_Platform_Native_Windows_KeyboardComponent_SupportsLayouts diff --git a/api/OpenTK.Platform.Native.Windows.MouseComponent.yml b/api/OpenTK.Platform.Native.Windows.MouseComponent.yml index 8dc490e9..2ed2b1cc 100644 --- a/api/OpenTK.Platform.Native.Windows.MouseComponent.yml +++ b/api/OpenTK.Platform.Native.Windows.MouseComponent.yml @@ -8,7 +8,7 @@ items: - OpenTK.Platform.Native.Windows.MouseComponent.CanSetMousePosition - OpenTK.Platform.Native.Windows.MouseComponent.GetMouseState(OpenTK.Core.Platform.MouseState@) - OpenTK.Platform.Native.Windows.MouseComponent.GetPosition(System.Int32@,System.Int32@) - - OpenTK.Platform.Native.Windows.MouseComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - OpenTK.Platform.Native.Windows.MouseComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - OpenTK.Platform.Native.Windows.MouseComponent.Logger - OpenTK.Platform.Native.Windows.MouseComponent.Name - OpenTK.Platform.Native.Windows.MouseComponent.Provides @@ -146,16 +146,16 @@ items: overload: OpenTK.Platform.Native.Windows.MouseComponent.Logger* implements: - OpenTK.Core.Platform.IPalComponent.Logger -- uid: OpenTK.Platform.Native.Windows.MouseComponent.Initialize(OpenTK.Core.Platform.PalComponents) - commentId: M:OpenTK.Platform.Native.Windows.MouseComponent.Initialize(OpenTK.Core.Platform.PalComponents) - id: Initialize(OpenTK.Core.Platform.PalComponents) +- uid: OpenTK.Platform.Native.Windows.MouseComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Native.Windows.MouseComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + id: Initialize(OpenTK.Core.Platform.ToolkitOptions) parent: OpenTK.Platform.Native.Windows.MouseComponent langs: - csharp - vb - name: Initialize(PalComponents) - nameWithType: MouseComponent.Initialize(PalComponents) - fullName: OpenTK.Platform.Native.Windows.MouseComponent.Initialize(OpenTK.Core.Platform.PalComponents) + name: Initialize(ToolkitOptions) + nameWithType: MouseComponent.Initialize(ToolkitOptions) + fullName: OpenTK.Platform.Native.Windows.MouseComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) type: Method source: remote: @@ -168,18 +168,18 @@ items: assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows - summary: Initialize the driver. + summary: Initialize the component. example: [] syntax: - content: public void Initialize(PalComponents which) + content: public void Initialize(ToolkitOptions options) parameters: - - id: which - type: OpenTK.Core.Platform.PalComponents - description: Bitfield of which components the driver need to be initialized. - content.vb: Public Sub Initialize(which As PalComponents) + - id: options + type: OpenTK.Core.Platform.ToolkitOptions + description: The options to initialize the component with. + content.vb: Public Sub Initialize(options As ToolkitOptions) overload: OpenTK.Platform.Native.Windows.MouseComponent.Initialize* implements: - - OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - uid: OpenTK.Platform.Native.Windows.MouseComponent.CanSetMousePosition commentId: P:OpenTK.Platform.Native.Windows.MouseComponent.CanSetMousePosition id: CanSetMousePosition @@ -198,7 +198,7 @@ items: repo: https://github.com/opentk/opentk.git id: CanSetMousePosition path: opentk/src/OpenTK.Platform.Native/Windows/MouseComponent.cs - startLine: 34 + startLine: 30 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows @@ -231,7 +231,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetPosition path: opentk/src/OpenTK.Platform.Native/Windows/MouseComponent.cs - startLine: 37 + startLine: 33 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows @@ -271,7 +271,7 @@ items: repo: https://github.com/opentk/opentk.git id: SetPosition path: opentk/src/OpenTK.Platform.Native/Windows/MouseComponent.cs - startLine: 53 + startLine: 47 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows @@ -311,7 +311,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetMouseState path: opentk/src/OpenTK.Platform.Native/Windows/MouseComponent.cs - startLine: 79 + startLine: 71 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows @@ -746,35 +746,42 @@ references: href: OpenTK.Core.Utility.html - uid: OpenTK.Platform.Native.Windows.MouseComponent.Initialize* commentId: Overload:OpenTK.Platform.Native.Windows.MouseComponent.Initialize - href: OpenTK.Platform.Native.Windows.MouseComponent.html#OpenTK_Platform_Native_Windows_MouseComponent_Initialize_OpenTK_Core_Platform_PalComponents_ + href: OpenTK.Platform.Native.Windows.MouseComponent.html#OpenTK_Platform_Native_Windows_MouseComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ name: Initialize nameWithType: MouseComponent.Initialize fullName: OpenTK.Platform.Native.Windows.MouseComponent.Initialize -- uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) - commentId: M:OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) +- uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + commentId: M:OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_PalComponents_ - name: Initialize(PalComponents) - nameWithType: IPalComponent.Initialize(PalComponents) - fullName: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + name: Initialize(ToolkitOptions) + nameWithType: IPalComponent.Initialize(ToolkitOptions) + fullName: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) spec.csharp: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_PalComponents_ + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.PalComponents - name: PalComponents - href: OpenTK.Core.Platform.PalComponents.html + - uid: OpenTK.Core.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Core.Platform.ToolkitOptions.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_PalComponents_ + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.PalComponents - name: PalComponents - href: OpenTK.Core.Platform.PalComponents.html + - uid: OpenTK.Core.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Core.Platform.ToolkitOptions.html - name: ) +- uid: OpenTK.Core.Platform.ToolkitOptions + commentId: T:OpenTK.Core.Platform.ToolkitOptions + parent: OpenTK.Core.Platform + href: OpenTK.Core.Platform.ToolkitOptions.html + name: ToolkitOptions + nameWithType: ToolkitOptions + fullName: OpenTK.Core.Platform.ToolkitOptions - uid: OpenTK.Platform.Native.Windows.MouseComponent.CanSetMousePosition* commentId: Overload:OpenTK.Platform.Native.Windows.MouseComponent.CanSetMousePosition href: OpenTK.Platform.Native.Windows.MouseComponent.html#OpenTK_Platform_Native_Windows_MouseComponent_CanSetMousePosition diff --git a/api/OpenTK.Platform.Native.Windows.OpenGLComponent.yml b/api/OpenTK.Platform.Native.Windows.OpenGLComponent.yml index 43c74429..3360b94d 100644 --- a/api/OpenTK.Platform.Native.Windows.OpenGLComponent.yml +++ b/api/OpenTK.Platform.Native.Windows.OpenGLComponent.yml @@ -17,13 +17,14 @@ items: - OpenTK.Platform.Native.Windows.OpenGLComponent.GetProcedureAddress(OpenTK.Core.Platform.OpenGLContextHandle,System.String) - OpenTK.Platform.Native.Windows.OpenGLComponent.GetSharedContext(OpenTK.Core.Platform.OpenGLContextHandle) - OpenTK.Platform.Native.Windows.OpenGLComponent.GetSwapInterval - - OpenTK.Platform.Native.Windows.OpenGLComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - OpenTK.Platform.Native.Windows.OpenGLComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - OpenTK.Platform.Native.Windows.OpenGLComponent.Logger - OpenTK.Platform.Native.Windows.OpenGLComponent.Name - OpenTK.Platform.Native.Windows.OpenGLComponent.Provides - OpenTK.Platform.Native.Windows.OpenGLComponent.SetCurrentContext(OpenTK.Core.Platform.OpenGLContextHandle) - OpenTK.Platform.Native.Windows.OpenGLComponent.SetSwapInterval(System.Int32) - OpenTK.Platform.Native.Windows.OpenGLComponent.SwapBuffers(OpenTK.Core.Platform.OpenGLContextHandle) + - OpenTK.Platform.Native.Windows.OpenGLComponent.UseDwmFlushIfApplicable(OpenTK.Core.Platform.OpenGLContextHandle,System.Boolean) langs: - csharp - vb @@ -38,7 +39,7 @@ items: repo: https://github.com/opentk/opentk.git id: OpenGLComponent path: opentk/src/OpenTK.Platform.Native/Windows/OpenGLComponent.cs - startLine: 11 + startLine: 26 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows @@ -76,7 +77,7 @@ items: repo: https://github.com/opentk/opentk.git id: Name path: opentk/src/OpenTK.Platform.Native/Windows/OpenGLComponent.cs - startLine: 14 + startLine: 29 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows @@ -109,7 +110,7 @@ items: repo: https://github.com/opentk/opentk.git id: Provides path: opentk/src/OpenTK.Platform.Native/Windows/OpenGLComponent.cs - startLine: 17 + startLine: 32 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows @@ -142,7 +143,7 @@ items: repo: https://github.com/opentk/opentk.git id: Logger path: opentk/src/OpenTK.Platform.Native/Windows/OpenGLComponent.cs - startLine: 20 + startLine: 35 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows @@ -157,16 +158,16 @@ items: overload: OpenTK.Platform.Native.Windows.OpenGLComponent.Logger* implements: - OpenTK.Core.Platform.IPalComponent.Logger -- uid: OpenTK.Platform.Native.Windows.OpenGLComponent.Initialize(OpenTK.Core.Platform.PalComponents) - commentId: M:OpenTK.Platform.Native.Windows.OpenGLComponent.Initialize(OpenTK.Core.Platform.PalComponents) - id: Initialize(OpenTK.Core.Platform.PalComponents) +- uid: OpenTK.Platform.Native.Windows.OpenGLComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Native.Windows.OpenGLComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + id: Initialize(OpenTK.Core.Platform.ToolkitOptions) parent: OpenTK.Platform.Native.Windows.OpenGLComponent langs: - csharp - vb - name: Initialize(PalComponents) - nameWithType: OpenGLComponent.Initialize(PalComponents) - fullName: OpenTK.Platform.Native.Windows.OpenGLComponent.Initialize(OpenTK.Core.Platform.PalComponents) + name: Initialize(ToolkitOptions) + nameWithType: OpenGLComponent.Initialize(ToolkitOptions) + fullName: OpenTK.Platform.Native.Windows.OpenGLComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) type: Method source: remote: @@ -175,22 +176,22 @@ items: repo: https://github.com/opentk/opentk.git id: Initialize path: opentk/src/OpenTK.Platform.Native/Windows/OpenGLComponent.cs - startLine: 23 + startLine: 38 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows - summary: Initialize the driver. + summary: Initialize the component. example: [] syntax: - content: public void Initialize(PalComponents which) + content: public void Initialize(ToolkitOptions options) parameters: - - id: which - type: OpenTK.Core.Platform.PalComponents - description: Bitfield of which components the driver need to be initialized. - content.vb: Public Sub Initialize(which As PalComponents) + - id: options + type: OpenTK.Core.Platform.ToolkitOptions + description: The options to initialize the component with. + content.vb: Public Sub Initialize(options As ToolkitOptions) overload: OpenTK.Platform.Native.Windows.OpenGLComponent.Initialize* implements: - - OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - uid: OpenTK.Platform.Native.Windows.OpenGLComponent.CanShareContexts commentId: P:OpenTK.Platform.Native.Windows.OpenGLComponent.CanShareContexts id: CanShareContexts @@ -209,7 +210,7 @@ items: repo: https://github.com/opentk/opentk.git id: CanShareContexts path: opentk/src/OpenTK.Platform.Native/Windows/OpenGLComponent.cs - startLine: 201 + startLine: 229 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows @@ -242,7 +243,7 @@ items: repo: https://github.com/opentk/opentk.git id: CanCreateFromWindow path: opentk/src/OpenTK.Platform.Native/Windows/OpenGLComponent.cs - startLine: 204 + startLine: 232 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows @@ -275,7 +276,7 @@ items: repo: https://github.com/opentk/opentk.git id: CanCreateFromSurface path: opentk/src/OpenTK.Platform.Native/Windows/OpenGLComponent.cs - startLine: 207 + startLine: 235 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows @@ -308,7 +309,7 @@ items: repo: https://github.com/opentk/opentk.git id: CreateFromSurface path: opentk/src/OpenTK.Platform.Native/Windows/OpenGLComponent.cs - startLine: 210 + startLine: 238 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows @@ -341,7 +342,7 @@ items: repo: https://github.com/opentk/opentk.git id: CreateFromWindow path: opentk/src/OpenTK.Platform.Native/Windows/OpenGLComponent.cs - startLine: 216 + startLine: 244 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows @@ -378,7 +379,7 @@ items: repo: https://github.com/opentk/opentk.git id: DestroyContext path: opentk/src/OpenTK.Platform.Native/Windows/OpenGLComponent.cs - startLine: 643 + startLine: 849 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows @@ -416,7 +417,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetBindingsContext path: opentk/src/OpenTK.Platform.Native/Windows/OpenGLComponent.cs - startLine: 658 + startLine: 864 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows @@ -453,7 +454,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetProcedureAddress path: opentk/src/OpenTK.Platform.Native/Windows/OpenGLComponent.cs - startLine: 664 + startLine: 870 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows @@ -500,7 +501,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetCurrentContext path: opentk/src/OpenTK.Platform.Native/Windows/OpenGLComponent.cs - startLine: 672 + startLine: 878 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows @@ -533,7 +534,7 @@ items: repo: https://github.com/opentk/opentk.git id: SetCurrentContext path: opentk/src/OpenTK.Platform.Native/Windows/OpenGLComponent.cs - startLine: 686 + startLine: 892 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows @@ -573,7 +574,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetSharedContext path: opentk/src/OpenTK.Platform.Native/Windows/OpenGLComponent.cs - startLine: 713 + startLine: 919 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows @@ -610,7 +611,7 @@ items: repo: https://github.com/opentk/opentk.git id: SetSwapInterval path: opentk/src/OpenTK.Platform.Native/Windows/OpenGLComponent.cs - startLine: 720 + startLine: 926 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows @@ -647,7 +648,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetSwapInterval path: opentk/src/OpenTK.Platform.Native/Windows/OpenGLComponent.cs - startLine: 745 + startLine: 939 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows @@ -680,7 +681,7 @@ items: repo: https://github.com/opentk/opentk.git id: SwapBuffers path: opentk/src/OpenTK.Platform.Native/Windows/OpenGLComponent.cs - startLine: 763 + startLine: 957 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows @@ -696,6 +697,52 @@ items: overload: OpenTK.Platform.Native.Windows.OpenGLComponent.SwapBuffers* implements: - OpenTK.Core.Platform.IOpenGLComponent.SwapBuffers(OpenTK.Core.Platform.OpenGLContextHandle) +- uid: OpenTK.Platform.Native.Windows.OpenGLComponent.UseDwmFlushIfApplicable(OpenTK.Core.Platform.OpenGLContextHandle,System.Boolean) + commentId: M:OpenTK.Platform.Native.Windows.OpenGLComponent.UseDwmFlushIfApplicable(OpenTK.Core.Platform.OpenGLContextHandle,System.Boolean) + id: UseDwmFlushIfApplicable(OpenTK.Core.Platform.OpenGLContextHandle,System.Boolean) + parent: OpenTK.Platform.Native.Windows.OpenGLComponent + langs: + - csharp + - vb + name: UseDwmFlushIfApplicable(OpenGLContextHandle, bool) + nameWithType: OpenGLComponent.UseDwmFlushIfApplicable(OpenGLContextHandle, bool) + fullName: OpenTK.Platform.Native.Windows.OpenGLComponent.UseDwmFlushIfApplicable(OpenTK.Core.Platform.OpenGLContextHandle, bool) + type: Method + source: + remote: + path: src/OpenTK.Platform.Native/Windows/OpenGLComponent.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: UseDwmFlushIfApplicable + path: opentk/src/OpenTK.Platform.Native/Windows/OpenGLComponent.cs + startLine: 1003 + assemblies: + - OpenTK.Platform.Native + namespace: OpenTK.Platform.Native.Windows + summary: >- + Sets whether calls to should use DwmFlush() to sync if DWM compositing is enabled. + + This can improve vsync performance on systems with multiple monitors using different refresh rates, but is likely to break in a multi-window scenario. + + If using multiple windows, only one window should have this property set. + + + By default this value is set to false. + example: [] + syntax: + content: public void UseDwmFlushIfApplicable(OpenGLContextHandle handle, bool enable) + parameters: + - id: handle + type: OpenTK.Core.Platform.OpenGLContextHandle + description: The OpenGL context that should DwmFlush() setting. + - id: enable + type: System.Boolean + description: Whether to enable DwmFlush() sync or not. + content.vb: Public Sub UseDwmFlushIfApplicable(handle As OpenGLContextHandle, enable As Boolean) + overload: OpenTK.Platform.Native.Windows.OpenGLComponent.UseDwmFlushIfApplicable* + nameWithType.vb: OpenGLComponent.UseDwmFlushIfApplicable(OpenGLContextHandle, Boolean) + fullName.vb: OpenTK.Platform.Native.Windows.OpenGLComponent.UseDwmFlushIfApplicable(OpenTK.Core.Platform.OpenGLContextHandle, Boolean) + name.vb: UseDwmFlushIfApplicable(OpenGLContextHandle, Boolean) - uid: OpenTK.Platform.Native.Windows.OpenGLComponent.GetHGLRC(OpenTK.Core.Platform.OpenGLContextHandle) commentId: M:OpenTK.Platform.Native.Windows.OpenGLComponent.GetHGLRC(OpenTK.Core.Platform.OpenGLContextHandle) id: GetHGLRC(OpenTK.Core.Platform.OpenGLContextHandle) @@ -714,7 +761,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetHGLRC path: opentk/src/OpenTK.Platform.Native/Windows/OpenGLComponent.cs - startLine: 781 + startLine: 1017 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows @@ -1152,35 +1199,42 @@ references: href: OpenTK.Core.Utility.html - uid: OpenTK.Platform.Native.Windows.OpenGLComponent.Initialize* commentId: Overload:OpenTK.Platform.Native.Windows.OpenGLComponent.Initialize - href: OpenTK.Platform.Native.Windows.OpenGLComponent.html#OpenTK_Platform_Native_Windows_OpenGLComponent_Initialize_OpenTK_Core_Platform_PalComponents_ + href: OpenTK.Platform.Native.Windows.OpenGLComponent.html#OpenTK_Platform_Native_Windows_OpenGLComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ name: Initialize nameWithType: OpenGLComponent.Initialize fullName: OpenTK.Platform.Native.Windows.OpenGLComponent.Initialize -- uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) - commentId: M:OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) +- uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + commentId: M:OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_PalComponents_ - name: Initialize(PalComponents) - nameWithType: IPalComponent.Initialize(PalComponents) - fullName: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + name: Initialize(ToolkitOptions) + nameWithType: IPalComponent.Initialize(ToolkitOptions) + fullName: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) spec.csharp: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_PalComponents_ + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.PalComponents - name: PalComponents - href: OpenTK.Core.Platform.PalComponents.html + - uid: OpenTK.Core.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Core.Platform.ToolkitOptions.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_PalComponents_ + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.PalComponents - name: PalComponents - href: OpenTK.Core.Platform.PalComponents.html + - uid: OpenTK.Core.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Core.Platform.ToolkitOptions.html - name: ) +- uid: OpenTK.Core.Platform.ToolkitOptions + commentId: T:OpenTK.Core.Platform.ToolkitOptions + parent: OpenTK.Core.Platform + href: OpenTK.Core.Platform.ToolkitOptions.html + name: ToolkitOptions + nameWithType: ToolkitOptions + fullName: OpenTK.Core.Platform.ToolkitOptions - uid: OpenTK.Platform.Native.Windows.OpenGLComponent.CanShareContexts* commentId: Overload:OpenTK.Platform.Native.Windows.OpenGLComponent.CanShareContexts href: OpenTK.Platform.Native.Windows.OpenGLComponent.html#OpenTK_Platform_Native_Windows_OpenGLComponent_CanShareContexts @@ -1632,6 +1686,36 @@ references: name: OpenGLContextHandle href: OpenTK.Core.Platform.OpenGLContextHandle.html - name: ) +- uid: OpenTK.Platform.Native.Windows.OpenGLComponent.SwapBuffers(OpenTK.Core.Platform.OpenGLContextHandle) + commentId: M:OpenTK.Platform.Native.Windows.OpenGLComponent.SwapBuffers(OpenTK.Core.Platform.OpenGLContextHandle) + href: OpenTK.Platform.Native.Windows.OpenGLComponent.html#OpenTK_Platform_Native_Windows_OpenGLComponent_SwapBuffers_OpenTK_Core_Platform_OpenGLContextHandle_ + name: SwapBuffers(OpenGLContextHandle) + nameWithType: OpenGLComponent.SwapBuffers(OpenGLContextHandle) + fullName: OpenTK.Platform.Native.Windows.OpenGLComponent.SwapBuffers(OpenTK.Core.Platform.OpenGLContextHandle) + spec.csharp: + - uid: OpenTK.Platform.Native.Windows.OpenGLComponent.SwapBuffers(OpenTK.Core.Platform.OpenGLContextHandle) + name: SwapBuffers + href: OpenTK.Platform.Native.Windows.OpenGLComponent.html#OpenTK_Platform_Native_Windows_OpenGLComponent_SwapBuffers_OpenTK_Core_Platform_OpenGLContextHandle_ + - name: ( + - uid: OpenTK.Core.Platform.OpenGLContextHandle + name: OpenGLContextHandle + href: OpenTK.Core.Platform.OpenGLContextHandle.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.Native.Windows.OpenGLComponent.SwapBuffers(OpenTK.Core.Platform.OpenGLContextHandle) + name: SwapBuffers + href: OpenTK.Platform.Native.Windows.OpenGLComponent.html#OpenTK_Platform_Native_Windows_OpenGLComponent_SwapBuffers_OpenTK_Core_Platform_OpenGLContextHandle_ + - name: ( + - uid: OpenTK.Core.Platform.OpenGLContextHandle + name: OpenGLContextHandle + href: OpenTK.Core.Platform.OpenGLContextHandle.html + - name: ) +- uid: OpenTK.Platform.Native.Windows.OpenGLComponent.UseDwmFlushIfApplicable* + commentId: Overload:OpenTK.Platform.Native.Windows.OpenGLComponent.UseDwmFlushIfApplicable + href: OpenTK.Platform.Native.Windows.OpenGLComponent.html#OpenTK_Platform_Native_Windows_OpenGLComponent_UseDwmFlushIfApplicable_OpenTK_Core_Platform_OpenGLContextHandle_System_Boolean_ + name: UseDwmFlushIfApplicable + nameWithType: OpenGLComponent.UseDwmFlushIfApplicable + fullName: OpenTK.Platform.Native.Windows.OpenGLComponent.UseDwmFlushIfApplicable - uid: OpenTK.Platform.Native.Windows.OpenGLComponent.GetHGLRC* commentId: Overload:OpenTK.Platform.Native.Windows.OpenGLComponent.GetHGLRC href: OpenTK.Platform.Native.Windows.OpenGLComponent.html#OpenTK_Platform_Native_Windows_OpenGLComponent_GetHGLRC_OpenTK_Core_Platform_OpenGLContextHandle_ diff --git a/api/OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce.yml b/api/OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce.yml new file mode 100644 index 00000000..01ba9c44 --- /dev/null +++ b/api/OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce.yml @@ -0,0 +1,208 @@ +### YamlMime:ManagedReference +items: +- uid: OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce + commentId: T:OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce + id: ShellComponent.CornerPrefernce + parent: OpenTK.Platform.Native.Windows + children: + - OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce.Default + - OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce.DoNotRound + - OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce.Round + - OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce.RoundSmall + langs: + - csharp + - vb + name: ShellComponent.CornerPrefernce + nameWithType: ShellComponent.CornerPrefernce + fullName: OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce + type: Enum + source: + remote: + path: src/OpenTK.Platform.Native/Windows/ShellComponent.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: CornerPrefernce + path: opentk/src/OpenTK.Platform.Native/Windows/ShellComponent.cs + startLine: 246 + assemblies: + - OpenTK.Platform.Native + namespace: OpenTK.Platform.Native.Windows + summary: Window corner preference options. + example: [] + syntax: + content: public enum ShellComponent.CornerPrefernce + content.vb: Public Enum ShellComponent.CornerPrefernce +- uid: OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce.Default + commentId: F:OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce.Default + id: Default + parent: OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce + langs: + - csharp + - vb + name: Default + nameWithType: ShellComponent.CornerPrefernce.Default + fullName: OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce.Default + type: Field + source: + remote: + path: src/OpenTK.Platform.Native/Windows/ShellComponent.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: Default + path: opentk/src/OpenTK.Platform.Native/Windows/ShellComponent.cs + startLine: 251 + assemblies: + - OpenTK.Platform.Native + namespace: OpenTK.Platform.Native.Windows + summary: Let windows decide if the window corners are rounded. + example: [] + syntax: + content: Default = 0 + return: + type: OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce +- uid: OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce.DoNotRound + commentId: F:OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce.DoNotRound + id: DoNotRound + parent: OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce + langs: + - csharp + - vb + name: DoNotRound + nameWithType: ShellComponent.CornerPrefernce.DoNotRound + fullName: OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce.DoNotRound + type: Field + source: + remote: + path: src/OpenTK.Platform.Native/Windows/ShellComponent.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: DoNotRound + path: opentk/src/OpenTK.Platform.Native/Windows/ShellComponent.cs + startLine: 256 + assemblies: + - OpenTK.Platform.Native + namespace: OpenTK.Platform.Native.Windows + summary: Do not round the corners of the window. + example: [] + syntax: + content: DoNotRound = 1 + return: + type: OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce +- uid: OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce.Round + commentId: F:OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce.Round + id: Round + parent: OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce + langs: + - csharp + - vb + name: Round + nameWithType: ShellComponent.CornerPrefernce.Round + fullName: OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce.Round + type: Field + source: + remote: + path: src/OpenTK.Platform.Native/Windows/ShellComponent.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: Round + path: opentk/src/OpenTK.Platform.Native/Windows/ShellComponent.cs + startLine: 261 + assemblies: + - OpenTK.Platform.Native + namespace: OpenTK.Platform.Native.Windows + summary: Round the corners of the window. + example: [] + syntax: + content: Round = 2 + return: + type: OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce +- uid: OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce.RoundSmall + commentId: F:OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce.RoundSmall + id: RoundSmall + parent: OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce + langs: + - csharp + - vb + name: RoundSmall + nameWithType: ShellComponent.CornerPrefernce.RoundSmall + fullName: OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce.RoundSmall + type: Field + source: + remote: + path: src/OpenTK.Platform.Native/Windows/ShellComponent.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: RoundSmall + path: opentk/src/OpenTK.Platform.Native/Windows/ShellComponent.cs + startLine: 266 + assemblies: + - OpenTK.Platform.Native + namespace: OpenTK.Platform.Native.Windows + summary: Round the corners of the window, with a smaller radius. + example: [] + syntax: + content: RoundSmall = 3 + return: + type: OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce +references: +- uid: OpenTK.Platform.Native.Windows + commentId: N:OpenTK.Platform.Native.Windows + href: OpenTK.html + name: OpenTK.Platform.Native.Windows + nameWithType: OpenTK.Platform.Native.Windows + fullName: OpenTK.Platform.Native.Windows + spec.csharp: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Platform + name: Platform + href: OpenTK.Platform.html + - name: . + - uid: OpenTK.Platform.Native + name: Native + href: OpenTK.Platform.Native.html + - name: . + - uid: OpenTK.Platform.Native.Windows + name: Windows + href: OpenTK.Platform.Native.Windows.html + spec.vb: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Platform + name: Platform + href: OpenTK.Platform.html + - name: . + - uid: OpenTK.Platform.Native + name: Native + href: OpenTK.Platform.Native.html + - name: . + - uid: OpenTK.Platform.Native.Windows + name: Windows + href: OpenTK.Platform.Native.Windows.html +- uid: OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce + commentId: T:OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce + parent: OpenTK.Platform.Native.Windows + href: OpenTK.Platform.Native.Windows.ShellComponent.html + name: ShellComponent.CornerPrefernce + nameWithType: ShellComponent.CornerPrefernce + fullName: OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce + spec.csharp: + - uid: OpenTK.Platform.Native.Windows.ShellComponent + name: ShellComponent + href: OpenTK.Platform.Native.Windows.ShellComponent.html + - name: . + - uid: OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce + name: CornerPrefernce + href: OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce.html + spec.vb: + - uid: OpenTK.Platform.Native.Windows.ShellComponent + name: ShellComponent + href: OpenTK.Platform.Native.Windows.ShellComponent.html + - name: . + - uid: OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce + name: CornerPrefernce + href: OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce.html diff --git a/api/OpenTK.Platform.Native.Windows.ShellComponent.yml b/api/OpenTK.Platform.Native.Windows.ShellComponent.yml index 0114ac90..f8b0eaa6 100644 --- a/api/OpenTK.Platform.Native.Windows.ShellComponent.yml +++ b/api/OpenTK.Platform.Native.Windows.ShellComponent.yml @@ -9,13 +9,14 @@ items: - OpenTK.Platform.Native.Windows.ShellComponent.GetBatteryInfo(OpenTK.Core.Platform.BatteryInfo@) - OpenTK.Platform.Native.Windows.ShellComponent.GetPreferredTheme - OpenTK.Platform.Native.Windows.ShellComponent.GetSystemMemoryInformation - - OpenTK.Platform.Native.Windows.ShellComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - OpenTK.Platform.Native.Windows.ShellComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - OpenTK.Platform.Native.Windows.ShellComponent.Logger - OpenTK.Platform.Native.Windows.ShellComponent.Name - OpenTK.Platform.Native.Windows.ShellComponent.Provides - OpenTK.Platform.Native.Windows.ShellComponent.SetCaptionColor(OpenTK.Core.Platform.WindowHandle,OpenTK.Mathematics.Color3{OpenTK.Mathematics.Rgb}) - OpenTK.Platform.Native.Windows.ShellComponent.SetCaptionTextColor(OpenTK.Core.Platform.WindowHandle,OpenTK.Mathematics.Color3{OpenTK.Mathematics.Rgb}) - OpenTK.Platform.Native.Windows.ShellComponent.SetImmersiveDarkMode(OpenTK.Core.Platform.WindowHandle,System.Boolean) + - OpenTK.Platform.Native.Windows.ShellComponent.SetWindowCornerPreference(OpenTK.Core.Platform.WindowHandle,OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce) langs: - csharp - vb @@ -151,16 +152,16 @@ items: overload: OpenTK.Platform.Native.Windows.ShellComponent.Logger* implements: - OpenTK.Core.Platform.IPalComponent.Logger -- uid: OpenTK.Platform.Native.Windows.ShellComponent.Initialize(OpenTK.Core.Platform.PalComponents) - commentId: M:OpenTK.Platform.Native.Windows.ShellComponent.Initialize(OpenTK.Core.Platform.PalComponents) - id: Initialize(OpenTK.Core.Platform.PalComponents) +- uid: OpenTK.Platform.Native.Windows.ShellComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Native.Windows.ShellComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + id: Initialize(OpenTK.Core.Platform.ToolkitOptions) parent: OpenTK.Platform.Native.Windows.ShellComponent langs: - csharp - vb - name: Initialize(PalComponents) - nameWithType: ShellComponent.Initialize(PalComponents) - fullName: OpenTK.Platform.Native.Windows.ShellComponent.Initialize(OpenTK.Core.Platform.PalComponents) + name: Initialize(ToolkitOptions) + nameWithType: ShellComponent.Initialize(ToolkitOptions) + fullName: OpenTK.Platform.Native.Windows.ShellComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) type: Method source: remote: @@ -173,18 +174,18 @@ items: assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows - summary: Initialize the driver. + summary: Initialize the component. example: [] syntax: - content: public void Initialize(PalComponents which) + content: public void Initialize(ToolkitOptions options) parameters: - - id: which - type: OpenTK.Core.Platform.PalComponents - description: Bitfield of which components the driver need to be initialized. - content.vb: Public Sub Initialize(which As PalComponents) + - id: options + type: OpenTK.Core.Platform.ToolkitOptions + description: The options to initialize the component with. + content.vb: Public Sub Initialize(options As ToolkitOptions) overload: OpenTK.Platform.Native.Windows.ShellComponent.Initialize* implements: - - OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - uid: OpenTK.Platform.Native.Windows.ShellComponent.AllowScreenSaver(System.Boolean) commentId: M:OpenTK.Platform.Native.Windows.ShellComponent.AllowScreenSaver(System.Boolean) id: AllowScreenSaver(System.Boolean) @@ -203,7 +204,7 @@ items: repo: https://github.com/opentk/opentk.git id: AllowScreenSaver path: opentk/src/OpenTK.Platform.Native/Windows/ShellComponent.cs - startLine: 43 + startLine: 38 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows @@ -247,7 +248,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetBatteryInfo path: opentk/src/OpenTK.Platform.Native/Windows/ShellComponent.cs - startLine: 49 + startLine: 44 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows @@ -286,7 +287,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetPreferredTheme path: opentk/src/OpenTK.Platform.Native/Windows/ShellComponent.cs - startLine: 130 + startLine: 125 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows @@ -319,7 +320,7 @@ items: repo: https://github.com/opentk/opentk.git id: SetImmersiveDarkMode path: opentk/src/OpenTK.Platform.Native/Windows/ShellComponent.cs - startLine: 142 + startLine: 139 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows @@ -357,11 +358,14 @@ items: repo: https://github.com/opentk/opentk.git id: SetCaptionTextColor path: opentk/src/OpenTK.Platform.Native/Windows/ShellComponent.cs - startLine: 162 + startLine: 213 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows - summary: Sets the color of the windows caption bar text. + summary: >- + Works on Windows 11 only. + + Sets the color of the windows caption bar text. example: [] syntax: content: public void SetCaptionTextColor(WindowHandle handle, Color3 color) @@ -393,11 +397,14 @@ items: repo: https://github.com/opentk/opentk.git id: SetCaptionColor path: opentk/src/OpenTK.Platform.Native/Windows/ShellComponent.cs - startLine: 178 + startLine: 230 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows - summary: Sets the color of the windows caption bar. + summary: >- + Works on Windows 11 only. + + Sets the color of the windows caption bar. example: [] syntax: content: public void SetCaptionColor(WindowHandle handle, Color3 color) @@ -411,6 +418,42 @@ items: nameWithType.vb: ShellComponent.SetCaptionColor(WindowHandle, Color3(Of Rgb)) fullName.vb: OpenTK.Platform.Native.Windows.ShellComponent.SetCaptionColor(OpenTK.Core.Platform.WindowHandle, OpenTK.Mathematics.Color3(Of OpenTK.Mathematics.Rgb)) name.vb: SetCaptionColor(WindowHandle, Color3(Of Rgb)) +- uid: OpenTK.Platform.Native.Windows.ShellComponent.SetWindowCornerPreference(OpenTK.Core.Platform.WindowHandle,OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce) + commentId: M:OpenTK.Platform.Native.Windows.ShellComponent.SetWindowCornerPreference(OpenTK.Core.Platform.WindowHandle,OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce) + id: SetWindowCornerPreference(OpenTK.Core.Platform.WindowHandle,OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce) + parent: OpenTK.Platform.Native.Windows.ShellComponent + langs: + - csharp + - vb + name: SetWindowCornerPreference(WindowHandle, CornerPrefernce) + nameWithType: ShellComponent.SetWindowCornerPreference(WindowHandle, ShellComponent.CornerPrefernce) + fullName: OpenTK.Platform.Native.Windows.ShellComponent.SetWindowCornerPreference(OpenTK.Core.Platform.WindowHandle, OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce) + type: Method + source: + remote: + path: src/OpenTK.Platform.Native/Windows/ShellComponent.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: SetWindowCornerPreference + path: opentk/src/OpenTK.Platform.Native/Windows/ShellComponent.cs + startLine: 273 + assemblies: + - OpenTK.Platform.Native + namespace: OpenTK.Platform.Native.Windows + summary: >- + Works on Windows 11 only. + + Sets if the window should have rounded corners or not. + example: [] + syntax: + content: public void SetWindowCornerPreference(WindowHandle handle, ShellComponent.CornerPrefernce preference) + parameters: + - id: handle + type: OpenTK.Core.Platform.WindowHandle + - id: preference + type: OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce + content.vb: Public Sub SetWindowCornerPreference(handle As WindowHandle, preference As ShellComponent.CornerPrefernce) + overload: OpenTK.Platform.Native.Windows.ShellComponent.SetWindowCornerPreference* - uid: OpenTK.Platform.Native.Windows.ShellComponent.GetSystemMemoryInformation commentId: M:OpenTK.Platform.Native.Windows.ShellComponent.GetSystemMemoryInformation id: GetSystemMemoryInformation @@ -429,7 +472,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetSystemMemoryInformation path: opentk/src/OpenTK.Platform.Native/Windows/ShellComponent.cs - startLine: 192 + startLine: 287 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows @@ -860,35 +903,42 @@ references: href: OpenTK.Core.Utility.html - uid: OpenTK.Platform.Native.Windows.ShellComponent.Initialize* commentId: Overload:OpenTK.Platform.Native.Windows.ShellComponent.Initialize - href: OpenTK.Platform.Native.Windows.ShellComponent.html#OpenTK_Platform_Native_Windows_ShellComponent_Initialize_OpenTK_Core_Platform_PalComponents_ + href: OpenTK.Platform.Native.Windows.ShellComponent.html#OpenTK_Platform_Native_Windows_ShellComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ name: Initialize nameWithType: ShellComponent.Initialize fullName: OpenTK.Platform.Native.Windows.ShellComponent.Initialize -- uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) - commentId: M:OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) +- uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + commentId: M:OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_PalComponents_ - name: Initialize(PalComponents) - nameWithType: IPalComponent.Initialize(PalComponents) - fullName: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + name: Initialize(ToolkitOptions) + nameWithType: IPalComponent.Initialize(ToolkitOptions) + fullName: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) spec.csharp: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_PalComponents_ + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.PalComponents - name: PalComponents - href: OpenTK.Core.Platform.PalComponents.html + - uid: OpenTK.Core.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Core.Platform.ToolkitOptions.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_PalComponents_ + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.PalComponents - name: PalComponents - href: OpenTK.Core.Platform.PalComponents.html + - uid: OpenTK.Core.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Core.Platform.ToolkitOptions.html - name: ) +- uid: OpenTK.Core.Platform.ToolkitOptions + commentId: T:OpenTK.Core.Platform.ToolkitOptions + parent: OpenTK.Core.Platform + href: OpenTK.Core.Platform.ToolkitOptions.html + name: ToolkitOptions + nameWithType: ToolkitOptions + fullName: OpenTK.Core.Platform.ToolkitOptions - uid: OpenTK.Platform.Native.Windows.ShellComponent.AllowScreenSaver* commentId: Overload:OpenTK.Platform.Native.Windows.ShellComponent.AllowScreenSaver href: OpenTK.Platform.Native.Windows.ShellComponent.html#OpenTK_Platform_Native_Windows_ShellComponent_AllowScreenSaver_System_Boolean_ @@ -1129,6 +1179,35 @@ references: name: SetCaptionColor nameWithType: ShellComponent.SetCaptionColor fullName: OpenTK.Platform.Native.Windows.ShellComponent.SetCaptionColor +- uid: OpenTK.Platform.Native.Windows.ShellComponent.SetWindowCornerPreference* + commentId: Overload:OpenTK.Platform.Native.Windows.ShellComponent.SetWindowCornerPreference + href: OpenTK.Platform.Native.Windows.ShellComponent.html#OpenTK_Platform_Native_Windows_ShellComponent_SetWindowCornerPreference_OpenTK_Core_Platform_WindowHandle_OpenTK_Platform_Native_Windows_ShellComponent_CornerPrefernce_ + name: SetWindowCornerPreference + nameWithType: ShellComponent.SetWindowCornerPreference + fullName: OpenTK.Platform.Native.Windows.ShellComponent.SetWindowCornerPreference +- uid: OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce + commentId: T:OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce + parent: OpenTK.Platform.Native.Windows + href: OpenTK.Platform.Native.Windows.ShellComponent.html + name: ShellComponent.CornerPrefernce + nameWithType: ShellComponent.CornerPrefernce + fullName: OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce + spec.csharp: + - uid: OpenTK.Platform.Native.Windows.ShellComponent + name: ShellComponent + href: OpenTK.Platform.Native.Windows.ShellComponent.html + - name: . + - uid: OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce + name: CornerPrefernce + href: OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce.html + spec.vb: + - uid: OpenTK.Platform.Native.Windows.ShellComponent + name: ShellComponent + href: OpenTK.Platform.Native.Windows.ShellComponent.html + - name: . + - uid: OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce + name: CornerPrefernce + href: OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce.html - uid: OpenTK.Platform.Native.Windows.ShellComponent.GetSystemMemoryInformation* commentId: Overload:OpenTK.Platform.Native.Windows.ShellComponent.GetSystemMemoryInformation href: OpenTK.Platform.Native.Windows.ShellComponent.html#OpenTK_Platform_Native_Windows_ShellComponent_GetSystemMemoryInformation diff --git a/api/OpenTK.Platform.Native.Windows.WindowComponent.yml b/api/OpenTK.Platform.Native.Windows.WindowComponent.yml index 1e9f16db..b805a41a 100644 --- a/api/OpenTK.Platform.Native.Windows.WindowComponent.yml +++ b/api/OpenTK.Platform.Native.Windows.WindowComponent.yml @@ -21,6 +21,7 @@ items: - OpenTK.Platform.Native.Windows.WindowComponent.GetClientSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) - OpenTK.Platform.Native.Windows.WindowComponent.GetCursorCaptureMode(OpenTK.Core.Platform.WindowHandle) - OpenTK.Platform.Native.Windows.WindowComponent.GetDisplay(OpenTK.Core.Platform.WindowHandle) + - OpenTK.Platform.Native.Windows.WindowComponent.GetFramebufferSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) - OpenTK.Platform.Native.Windows.WindowComponent.GetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle@) - OpenTK.Platform.Native.Windows.WindowComponent.GetHWND(OpenTK.Core.Platform.WindowHandle) - OpenTK.Platform.Native.Windows.WindowComponent.GetIcon(OpenTK.Core.Platform.WindowHandle) @@ -28,12 +29,14 @@ items: - OpenTK.Platform.Native.Windows.WindowComponent.GetMinClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) - OpenTK.Platform.Native.Windows.WindowComponent.GetMode(OpenTK.Core.Platform.WindowHandle) - OpenTK.Platform.Native.Windows.WindowComponent.GetPosition(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) + - OpenTK.Platform.Native.Windows.WindowComponent.GetScaleFactor(OpenTK.Core.Platform.WindowHandle,System.Single@,System.Single@) - OpenTK.Platform.Native.Windows.WindowComponent.GetSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) - OpenTK.Platform.Native.Windows.WindowComponent.GetTitle(OpenTK.Core.Platform.WindowHandle) - OpenTK.Platform.Native.Windows.WindowComponent.HInstance - OpenTK.Platform.Native.Windows.WindowComponent.HelperHWnd - - OpenTK.Platform.Native.Windows.WindowComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - OpenTK.Platform.Native.Windows.WindowComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - OpenTK.Platform.Native.Windows.WindowComponent.IsAlwaysOnTop(OpenTK.Core.Platform.WindowHandle) + - OpenTK.Platform.Native.Windows.WindowComponent.IsFocused(OpenTK.Core.Platform.WindowHandle) - OpenTK.Platform.Native.Windows.WindowComponent.IsWindowDestroyed(OpenTK.Core.Platform.WindowHandle) - OpenTK.Platform.Native.Windows.WindowComponent.Logger - OpenTK.Platform.Native.Windows.WindowComponent.Name @@ -286,16 +289,16 @@ items: overload: OpenTK.Platform.Native.Windows.WindowComponent.Logger* implements: - OpenTK.Core.Platform.IPalComponent.Logger -- uid: OpenTK.Platform.Native.Windows.WindowComponent.Initialize(OpenTK.Core.Platform.PalComponents) - commentId: M:OpenTK.Platform.Native.Windows.WindowComponent.Initialize(OpenTK.Core.Platform.PalComponents) - id: Initialize(OpenTK.Core.Platform.PalComponents) +- uid: OpenTK.Platform.Native.Windows.WindowComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Native.Windows.WindowComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + id: Initialize(OpenTK.Core.Platform.ToolkitOptions) parent: OpenTK.Platform.Native.Windows.WindowComponent langs: - csharp - vb - name: Initialize(PalComponents) - nameWithType: WindowComponent.Initialize(PalComponents) - fullName: OpenTK.Platform.Native.Windows.WindowComponent.Initialize(OpenTK.Core.Platform.PalComponents) + name: Initialize(ToolkitOptions) + nameWithType: WindowComponent.Initialize(ToolkitOptions) + fullName: OpenTK.Platform.Native.Windows.WindowComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) type: Method source: remote: @@ -308,18 +311,18 @@ items: assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows - summary: Initialize the driver. + summary: Initialize the component. example: [] syntax: - content: public void Initialize(PalComponents which) + content: public void Initialize(ToolkitOptions options) parameters: - - id: which - type: OpenTK.Core.Platform.PalComponents - description: Bitfield of which components the driver need to be initialized. - content.vb: Public Sub Initialize(which As PalComponents) + - id: options + type: OpenTK.Core.Platform.ToolkitOptions + description: The options to initialize the component with. + content.vb: Public Sub Initialize(options As ToolkitOptions) overload: OpenTK.Platform.Native.Windows.WindowComponent.Initialize* implements: - - OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - uid: OpenTK.Platform.Native.Windows.WindowComponent.CanSetIcon commentId: P:OpenTK.Platform.Native.Windows.WindowComponent.CanSetIcon id: CanSetIcon @@ -338,7 +341,7 @@ items: repo: https://github.com/opentk/opentk.git id: CanSetIcon path: opentk/src/OpenTK.Platform.Native/Windows/WindowComponent.cs - startLine: 145 + startLine: 140 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows @@ -371,7 +374,7 @@ items: repo: https://github.com/opentk/opentk.git id: CanGetDisplay path: opentk/src/OpenTK.Platform.Native/Windows/WindowComponent.cs - startLine: 148 + startLine: 143 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows @@ -404,7 +407,7 @@ items: repo: https://github.com/opentk/opentk.git id: CanSetCursor path: opentk/src/OpenTK.Platform.Native/Windows/WindowComponent.cs - startLine: 151 + startLine: 146 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows @@ -437,7 +440,7 @@ items: repo: https://github.com/opentk/opentk.git id: CanCaptureCursor path: opentk/src/OpenTK.Platform.Native/Windows/WindowComponent.cs - startLine: 154 + startLine: 149 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows @@ -470,7 +473,7 @@ items: repo: https://github.com/opentk/opentk.git id: SupportedEvents path: opentk/src/OpenTK.Platform.Native/Windows/WindowComponent.cs - startLine: 157 + startLine: 152 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows @@ -503,7 +506,7 @@ items: repo: https://github.com/opentk/opentk.git id: SupportedStyles path: opentk/src/OpenTK.Platform.Native/Windows/WindowComponent.cs - startLine: 160 + startLine: 155 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows @@ -536,7 +539,7 @@ items: repo: https://github.com/opentk/opentk.git id: SupportedModes path: opentk/src/OpenTK.Platform.Native/Windows/WindowComponent.cs - startLine: 163 + startLine: 158 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows @@ -569,7 +572,7 @@ items: repo: https://github.com/opentk/opentk.git id: ProcessEvents path: opentk/src/OpenTK.Platform.Native/Windows/WindowComponent.cs - startLine: 1035 + startLine: 1037 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows @@ -606,7 +609,7 @@ items: repo: https://github.com/opentk/opentk.git id: Create path: opentk/src/OpenTK.Platform.Native/Windows/WindowComponent.cs - startLine: 1065 + startLine: 1067 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows @@ -643,7 +646,7 @@ items: repo: https://github.com/opentk/opentk.git id: Destroy path: opentk/src/OpenTK.Platform.Native/Windows/WindowComponent.cs - startLine: 1104 + startLine: 1106 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows @@ -681,7 +684,7 @@ items: repo: https://github.com/opentk/opentk.git id: IsWindowDestroyed path: opentk/src/OpenTK.Platform.Native/Windows/WindowComponent.cs - startLine: 1135 + startLine: 1137 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows @@ -718,7 +721,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetTitle path: opentk/src/OpenTK.Platform.Native/Windows/WindowComponent.cs - startLine: 1143 + startLine: 1145 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows @@ -759,7 +762,7 @@ items: repo: https://github.com/opentk/opentk.git id: SetTitle path: opentk/src/OpenTK.Platform.Native/Windows/WindowComponent.cs - startLine: 1168 + startLine: 1170 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows @@ -803,7 +806,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetIcon path: opentk/src/OpenTK.Platform.Native/Windows/WindowComponent.cs - startLine: 1180 + startLine: 1182 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows @@ -847,7 +850,7 @@ items: repo: https://github.com/opentk/opentk.git id: SetIcon path: opentk/src/OpenTK.Platform.Native/Windows/WindowComponent.cs - startLine: 1236 + startLine: 1238 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows @@ -891,7 +894,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetPosition path: opentk/src/OpenTK.Platform.Native/Windows/WindowComponent.cs - startLine: 1250 + startLine: 1252 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows @@ -938,7 +941,7 @@ items: repo: https://github.com/opentk/opentk.git id: SetPosition path: opentk/src/OpenTK.Platform.Native/Windows/WindowComponent.cs - startLine: 1258 + startLine: 1260 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows @@ -985,7 +988,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetSize path: opentk/src/OpenTK.Platform.Native/Windows/WindowComponent.cs - startLine: 1271 + startLine: 1273 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows @@ -1032,7 +1035,7 @@ items: repo: https://github.com/opentk/opentk.git id: SetSize path: opentk/src/OpenTK.Platform.Native/Windows/WindowComponent.cs - startLine: 1279 + startLine: 1281 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows @@ -1079,7 +1082,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetBounds path: opentk/src/OpenTK.Platform.Native/Windows/WindowComponent.cs - startLine: 1292 + startLine: 1294 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows @@ -1128,7 +1131,7 @@ items: repo: https://github.com/opentk/opentk.git id: SetBounds path: opentk/src/OpenTK.Platform.Native/Windows/WindowComponent.cs - startLine: 1309 + startLine: 1311 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows @@ -1177,7 +1180,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetClientPosition path: opentk/src/OpenTK.Platform.Native/Windows/WindowComponent.cs - startLine: 1322 + startLine: 1324 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows @@ -1224,7 +1227,7 @@ items: repo: https://github.com/opentk/opentk.git id: SetClientPosition path: opentk/src/OpenTK.Platform.Native/Windows/WindowComponent.cs - startLine: 1339 + startLine: 1341 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows @@ -1271,7 +1274,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetClientSize path: opentk/src/OpenTK.Platform.Native/Windows/WindowComponent.cs - startLine: 1365 + startLine: 1367 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows @@ -1318,7 +1321,7 @@ items: repo: https://github.com/opentk/opentk.git id: SetClientSize path: opentk/src/OpenTK.Platform.Native/Windows/WindowComponent.cs - startLine: 1373 + startLine: 1375 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows @@ -1365,7 +1368,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetClientBounds path: opentk/src/OpenTK.Platform.Native/Windows/WindowComponent.cs - startLine: 1400 + startLine: 1402 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows @@ -1414,7 +1417,7 @@ items: repo: https://github.com/opentk/opentk.git id: SetClientBounds path: opentk/src/OpenTK.Platform.Native/Windows/WindowComponent.cs - startLine: 1417 + startLine: 1419 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows @@ -1445,6 +1448,52 @@ items: nameWithType.vb: WindowComponent.SetClientBounds(WindowHandle, Integer, Integer, Integer, Integer) fullName.vb: OpenTK.Platform.Native.Windows.WindowComponent.SetClientBounds(OpenTK.Core.Platform.WindowHandle, Integer, Integer, Integer, Integer) name.vb: SetClientBounds(WindowHandle, Integer, Integer, Integer, Integer) +- uid: OpenTK.Platform.Native.Windows.WindowComponent.GetFramebufferSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) + commentId: M:OpenTK.Platform.Native.Windows.WindowComponent.GetFramebufferSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) + id: GetFramebufferSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) + parent: OpenTK.Platform.Native.Windows.WindowComponent + langs: + - csharp + - vb + name: GetFramebufferSize(WindowHandle, out int, out int) + nameWithType: WindowComponent.GetFramebufferSize(WindowHandle, out int, out int) + fullName: OpenTK.Platform.Native.Windows.WindowComponent.GetFramebufferSize(OpenTK.Core.Platform.WindowHandle, out int, out int) + type: Method + source: + remote: + path: src/OpenTK.Platform.Native/Windows/WindowComponent.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: GetFramebufferSize + path: opentk/src/OpenTK.Platform.Native/Windows/WindowComponent.cs + startLine: 1446 + assemblies: + - OpenTK.Platform.Native + namespace: OpenTK.Platform.Native.Windows + summary: >- + Get the size of the window framebuffer in pixels. + + Use this value when calls to graphics APIs that want pixels, e.g. GL.Viewport(). + example: [] + syntax: + content: public void GetFramebufferSize(WindowHandle handle, out int width, out int height) + parameters: + - id: handle + type: OpenTK.Core.Platform.WindowHandle + description: Handle to a window. + - id: width + type: System.Int32 + description: Width in pixels of the window framebuffer. + - id: height + type: System.Int32 + description: Height in pixels of the window framebuffer. + content.vb: Public Sub GetFramebufferSize(handle As WindowHandle, width As Integer, height As Integer) + overload: OpenTK.Platform.Native.Windows.WindowComponent.GetFramebufferSize* + implements: + - OpenTK.Core.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) + nameWithType.vb: WindowComponent.GetFramebufferSize(WindowHandle, Integer, Integer) + fullName.vb: OpenTK.Platform.Native.Windows.WindowComponent.GetFramebufferSize(OpenTK.Core.Platform.WindowHandle, Integer, Integer) + name.vb: GetFramebufferSize(WindowHandle, Integer, Integer) - uid: OpenTK.Platform.Native.Windows.WindowComponent.GetMaxClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) commentId: M:OpenTK.Platform.Native.Windows.WindowComponent.GetMaxClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) id: GetMaxClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) @@ -1463,7 +1512,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetMaxClientSize path: opentk/src/OpenTK.Platform.Native/Windows/WindowComponent.cs - startLine: 1444 + startLine: 1455 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows @@ -1506,7 +1555,7 @@ items: repo: https://github.com/opentk/opentk.git id: SetMaxClientSize path: opentk/src/OpenTK.Platform.Native/Windows/WindowComponent.cs - startLine: 1453 + startLine: 1464 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows @@ -1549,7 +1598,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetMinClientSize path: opentk/src/OpenTK.Platform.Native/Windows/WindowComponent.cs - startLine: 1468 + startLine: 1479 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows @@ -1592,7 +1641,7 @@ items: repo: https://github.com/opentk/opentk.git id: SetMinClientSize path: opentk/src/OpenTK.Platform.Native/Windows/WindowComponent.cs - startLine: 1477 + startLine: 1488 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows @@ -1635,7 +1684,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetDisplay path: opentk/src/OpenTK.Platform.Native/Windows/WindowComponent.cs - startLine: 1492 + startLine: 1503 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows @@ -1679,7 +1728,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetMode path: opentk/src/OpenTK.Platform.Native/Windows/WindowComponent.cs - startLine: 1510 + startLine: 1521 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows @@ -1720,7 +1769,7 @@ items: repo: https://github.com/opentk/opentk.git id: SetMode path: opentk/src/OpenTK.Platform.Native/Windows/WindowComponent.cs - startLine: 1561 + startLine: 1572 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows @@ -1775,7 +1824,7 @@ items: repo: https://github.com/opentk/opentk.git id: SetFullscreenDisplay path: opentk/src/OpenTK.Platform.Native/Windows/WindowComponent.cs - startLine: 1614 + startLine: 1625 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows @@ -1818,7 +1867,7 @@ items: repo: https://github.com/opentk/opentk.git id: SetFullscreenDisplay path: opentk/src/OpenTK.Platform.Native/Windows/WindowComponent.cs - startLine: 1664 + startLine: 1675 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows @@ -1863,7 +1912,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetFullscreenDisplay path: opentk/src/OpenTK.Platform.Native/Windows/WindowComponent.cs - startLine: 1721 + startLine: 1732 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows @@ -1905,7 +1954,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetBorderStyle path: opentk/src/OpenTK.Platform.Native/Windows/WindowComponent.cs - startLine: 1729 + startLine: 1740 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows @@ -1946,7 +1995,7 @@ items: repo: https://github.com/opentk/opentk.git id: SetBorderStyle path: opentk/src/OpenTK.Platform.Native/Windows/WindowComponent.cs - startLine: 1784 + startLine: 1795 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows @@ -1993,7 +2042,7 @@ items: repo: https://github.com/opentk/opentk.git id: SetAlwaysOnTop path: opentk/src/OpenTK.Platform.Native/Windows/WindowComponent.cs - startLine: 1835 + startLine: 1847 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows @@ -2033,7 +2082,7 @@ items: repo: https://github.com/opentk/opentk.git id: IsAlwaysOnTop path: opentk/src/OpenTK.Platform.Native/Windows/WindowComponent.cs - startLine: 1852 + startLine: 1864 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows @@ -2070,7 +2119,7 @@ items: repo: https://github.com/opentk/opentk.git id: SetHitTestCallback path: opentk/src/OpenTK.Platform.Native/Windows/WindowComponent.cs - startLine: 1866 + startLine: 1878 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows @@ -2120,7 +2169,7 @@ items: repo: https://github.com/opentk/opentk.git id: SetCursor path: opentk/src/OpenTK.Platform.Native/Windows/WindowComponent.cs - startLine: 1874 + startLine: 1886 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows @@ -2167,7 +2216,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetCursorCaptureMode path: opentk/src/OpenTK.Platform.Native/Windows/WindowComponent.cs - startLine: 1886 + startLine: 1898 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows @@ -2204,7 +2253,7 @@ items: repo: https://github.com/opentk/opentk.git id: SetCursorCaptureMode path: opentk/src/OpenTK.Platform.Native/Windows/WindowComponent.cs - startLine: 1894 + startLine: 1906 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows @@ -2226,6 +2275,43 @@ items: overload: OpenTK.Platform.Native.Windows.WindowComponent.SetCursorCaptureMode* implements: - OpenTK.Core.Platform.IWindowComponent.SetCursorCaptureMode(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.CursorCaptureMode) +- uid: OpenTK.Platform.Native.Windows.WindowComponent.IsFocused(OpenTK.Core.Platform.WindowHandle) + commentId: M:OpenTK.Platform.Native.Windows.WindowComponent.IsFocused(OpenTK.Core.Platform.WindowHandle) + id: IsFocused(OpenTK.Core.Platform.WindowHandle) + parent: OpenTK.Platform.Native.Windows.WindowComponent + langs: + - csharp + - vb + name: IsFocused(WindowHandle) + nameWithType: WindowComponent.IsFocused(WindowHandle) + fullName: OpenTK.Platform.Native.Windows.WindowComponent.IsFocused(OpenTK.Core.Platform.WindowHandle) + type: Method + source: + remote: + path: src/OpenTK.Platform.Native/Windows/WindowComponent.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: IsFocused + path: opentk/src/OpenTK.Platform.Native/Windows/WindowComponent.cs + startLine: 1971 + assemblies: + - OpenTK.Platform.Native + namespace: OpenTK.Platform.Native.Windows + summary: Returns true if the given window has input focus. + example: [] + syntax: + content: public bool IsFocused(WindowHandle handle) + parameters: + - id: handle + type: OpenTK.Core.Platform.WindowHandle + description: Handle to a window. + return: + type: System.Boolean + description: If the window has input focus. + content.vb: Public Function IsFocused(handle As WindowHandle) As Boolean + overload: OpenTK.Platform.Native.Windows.WindowComponent.IsFocused* + implements: + - OpenTK.Core.Platform.IWindowComponent.IsFocused(OpenTK.Core.Platform.WindowHandle) - uid: OpenTK.Platform.Native.Windows.WindowComponent.FocusWindow(OpenTK.Core.Platform.WindowHandle) commentId: M:OpenTK.Platform.Native.Windows.WindowComponent.FocusWindow(OpenTK.Core.Platform.WindowHandle) id: FocusWindow(OpenTK.Core.Platform.WindowHandle) @@ -2244,7 +2330,7 @@ items: repo: https://github.com/opentk/opentk.git id: FocusWindow path: opentk/src/OpenTK.Platform.Native/Windows/WindowComponent.cs - startLine: 1959 + startLine: 1979 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows @@ -2278,7 +2364,7 @@ items: repo: https://github.com/opentk/opentk.git id: RequestAttention path: opentk/src/OpenTK.Platform.Native/Windows/WindowComponent.cs - startLine: 1986 + startLine: 2006 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows @@ -2312,7 +2398,7 @@ items: repo: https://github.com/opentk/opentk.git id: ScreenToClient path: opentk/src/OpenTK.Platform.Native/Windows/WindowComponent.cs - startLine: 2003 + startLine: 2023 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows @@ -2361,7 +2447,7 @@ items: repo: https://github.com/opentk/opentk.git id: ClientToScreen path: opentk/src/OpenTK.Platform.Native/Windows/WindowComponent.cs - startLine: 2021 + startLine: 2041 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows @@ -2392,6 +2478,52 @@ items: nameWithType.vb: WindowComponent.ClientToScreen(WindowHandle, Integer, Integer, Integer, Integer) fullName.vb: OpenTK.Platform.Native.Windows.WindowComponent.ClientToScreen(OpenTK.Core.Platform.WindowHandle, Integer, Integer, Integer, Integer) name.vb: ClientToScreen(WindowHandle, Integer, Integer, Integer, Integer) +- uid: OpenTK.Platform.Native.Windows.WindowComponent.GetScaleFactor(OpenTK.Core.Platform.WindowHandle,System.Single@,System.Single@) + commentId: M:OpenTK.Platform.Native.Windows.WindowComponent.GetScaleFactor(OpenTK.Core.Platform.WindowHandle,System.Single@,System.Single@) + id: GetScaleFactor(OpenTK.Core.Platform.WindowHandle,System.Single@,System.Single@) + parent: OpenTK.Platform.Native.Windows.WindowComponent + langs: + - csharp + - vb + name: GetScaleFactor(WindowHandle, out float, out float) + nameWithType: WindowComponent.GetScaleFactor(WindowHandle, out float, out float) + fullName: OpenTK.Platform.Native.Windows.WindowComponent.GetScaleFactor(OpenTK.Core.Platform.WindowHandle, out float, out float) + type: Method + source: + remote: + path: src/OpenTK.Platform.Native/Windows/WindowComponent.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: GetScaleFactor + path: opentk/src/OpenTK.Platform.Native/Windows/WindowComponent.cs + startLine: 2059 + assemblies: + - OpenTK.Platform.Native + namespace: OpenTK.Platform.Native.Windows + summary: Returns the current scale factor of this window. + example: [] + syntax: + content: public void GetScaleFactor(WindowHandle handle, out float scaleX, out float scaleY) + parameters: + - id: handle + type: OpenTK.Core.Platform.WindowHandle + description: The window handle. + - id: scaleX + type: System.Single + description: The x scale factor of the window. + - id: scaleY + type: System.Single + description: The y scale factor of the window. + content.vb: Public Sub GetScaleFactor(handle As WindowHandle, scaleX As Single, scaleY As Single) + overload: OpenTK.Platform.Native.Windows.WindowComponent.GetScaleFactor* + seealso: + - linkId: OpenTK.Core.Platform.WindowScaleChangeEventArgs + commentId: T:OpenTK.Core.Platform.WindowScaleChangeEventArgs + implements: + - OpenTK.Core.Platform.IWindowComponent.GetScaleFactor(OpenTK.Core.Platform.WindowHandle,System.Single@,System.Single@) + nameWithType.vb: WindowComponent.GetScaleFactor(WindowHandle, Single, Single) + fullName.vb: OpenTK.Platform.Native.Windows.WindowComponent.GetScaleFactor(OpenTK.Core.Platform.WindowHandle, Single, Single) + name.vb: GetScaleFactor(WindowHandle, Single, Single) - uid: OpenTK.Platform.Native.Windows.WindowComponent.GetHWND(OpenTK.Core.Platform.WindowHandle) commentId: M:OpenTK.Platform.Native.Windows.WindowComponent.GetHWND(OpenTK.Core.Platform.WindowHandle) id: GetHWND(OpenTK.Core.Platform.WindowHandle) @@ -2410,7 +2542,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetHWND path: opentk/src/OpenTK.Platform.Native/Windows/WindowComponent.cs - startLine: 2044 + startLine: 2074 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.Windows @@ -2863,35 +2995,42 @@ references: href: OpenTK.Core.Utility.html - uid: OpenTK.Platform.Native.Windows.WindowComponent.Initialize* commentId: Overload:OpenTK.Platform.Native.Windows.WindowComponent.Initialize - href: OpenTK.Platform.Native.Windows.WindowComponent.html#OpenTK_Platform_Native_Windows_WindowComponent_Initialize_OpenTK_Core_Platform_PalComponents_ + href: OpenTK.Platform.Native.Windows.WindowComponent.html#OpenTK_Platform_Native_Windows_WindowComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ name: Initialize nameWithType: WindowComponent.Initialize fullName: OpenTK.Platform.Native.Windows.WindowComponent.Initialize -- uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) - commentId: M:OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) +- uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + commentId: M:OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_PalComponents_ - name: Initialize(PalComponents) - nameWithType: IPalComponent.Initialize(PalComponents) - fullName: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + name: Initialize(ToolkitOptions) + nameWithType: IPalComponent.Initialize(ToolkitOptions) + fullName: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) spec.csharp: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_PalComponents_ + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.PalComponents - name: PalComponents - href: OpenTK.Core.Platform.PalComponents.html + - uid: OpenTK.Core.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Core.Platform.ToolkitOptions.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_PalComponents_ + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.PalComponents - name: PalComponents - href: OpenTK.Core.Platform.PalComponents.html + - uid: OpenTK.Core.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Core.Platform.ToolkitOptions.html - name: ) +- uid: OpenTK.Core.Platform.ToolkitOptions + commentId: T:OpenTK.Core.Platform.ToolkitOptions + parent: OpenTK.Core.Platform + href: OpenTK.Core.Platform.ToolkitOptions.html + name: ToolkitOptions + nameWithType: ToolkitOptions + fullName: OpenTK.Core.Platform.ToolkitOptions - uid: OpenTK.Platform.Native.Windows.WindowComponent.CanSetIcon* commentId: Overload:OpenTK.Platform.Native.Windows.WindowComponent.CanSetIcon href: OpenTK.Platform.Native.Windows.WindowComponent.html#OpenTK_Platform_Native_Windows_WindowComponent_CanSetIcon @@ -4326,6 +4465,69 @@ references: isExternal: true href: https://learn.microsoft.com/dotnet/api/system.int32 - name: ) +- uid: OpenTK.Platform.Native.Windows.WindowComponent.GetFramebufferSize* + commentId: Overload:OpenTK.Platform.Native.Windows.WindowComponent.GetFramebufferSize + href: OpenTK.Platform.Native.Windows.WindowComponent.html#OpenTK_Platform_Native_Windows_WindowComponent_GetFramebufferSize_OpenTK_Core_Platform_WindowHandle_System_Int32__System_Int32__ + name: GetFramebufferSize + nameWithType: WindowComponent.GetFramebufferSize + fullName: OpenTK.Platform.Native.Windows.WindowComponent.GetFramebufferSize +- uid: OpenTK.Core.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) + commentId: M:OpenTK.Core.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) + parent: OpenTK.Core.Platform.IWindowComponent + isExternal: true + href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetFramebufferSize_OpenTK_Core_Platform_WindowHandle_System_Int32__System_Int32__ + name: GetFramebufferSize(WindowHandle, out int, out int) + nameWithType: IWindowComponent.GetFramebufferSize(WindowHandle, out int, out int) + fullName: OpenTK.Core.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Core.Platform.WindowHandle, out int, out int) + nameWithType.vb: IWindowComponent.GetFramebufferSize(WindowHandle, Integer, Integer) + fullName.vb: OpenTK.Core.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Core.Platform.WindowHandle, Integer, Integer) + name.vb: GetFramebufferSize(WindowHandle, Integer, Integer) + spec.csharp: + - uid: OpenTK.Core.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) + name: GetFramebufferSize + href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetFramebufferSize_OpenTK_Core_Platform_WindowHandle_System_Int32__System_Int32__ + - name: ( + - uid: OpenTK.Core.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Core.Platform.WindowHandle.html + - name: ',' + - name: " " + - name: out + - name: " " + - uid: System.Int32 + name: int + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ',' + - name: " " + - name: out + - name: " " + - uid: System.Int32 + name: int + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ) + spec.vb: + - uid: OpenTK.Core.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) + name: GetFramebufferSize + href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetFramebufferSize_OpenTK_Core_Platform_WindowHandle_System_Int32__System_Int32__ + - name: ( + - uid: OpenTK.Core.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Core.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: System.Int32 + name: Integer + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ',' + - name: " " + - uid: System.Int32 + name: Integer + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ) - uid: OpenTK.Platform.Native.Windows.WindowComponent.GetMaxClientSize* commentId: Overload:OpenTK.Platform.Native.Windows.WindowComponent.GetMaxClientSize href: OpenTK.Platform.Native.Windows.WindowComponent.html#OpenTK_Platform_Native_Windows_WindowComponent_GetMaxClientSize_OpenTK_Core_Platform_WindowHandle_System_Nullable_System_Int32___System_Nullable_System_Int32___ @@ -5276,6 +5478,37 @@ references: name: SetCursorCaptureMode nameWithType: WindowComponent.SetCursorCaptureMode fullName: OpenTK.Platform.Native.Windows.WindowComponent.SetCursorCaptureMode +- uid: OpenTK.Platform.Native.Windows.WindowComponent.IsFocused* + commentId: Overload:OpenTK.Platform.Native.Windows.WindowComponent.IsFocused + href: OpenTK.Platform.Native.Windows.WindowComponent.html#OpenTK_Platform_Native_Windows_WindowComponent_IsFocused_OpenTK_Core_Platform_WindowHandle_ + name: IsFocused + nameWithType: WindowComponent.IsFocused + fullName: OpenTK.Platform.Native.Windows.WindowComponent.IsFocused +- uid: OpenTK.Core.Platform.IWindowComponent.IsFocused(OpenTK.Core.Platform.WindowHandle) + commentId: M:OpenTK.Core.Platform.IWindowComponent.IsFocused(OpenTK.Core.Platform.WindowHandle) + parent: OpenTK.Core.Platform.IWindowComponent + href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_IsFocused_OpenTK_Core_Platform_WindowHandle_ + name: IsFocused(WindowHandle) + nameWithType: IWindowComponent.IsFocused(WindowHandle) + fullName: OpenTK.Core.Platform.IWindowComponent.IsFocused(OpenTK.Core.Platform.WindowHandle) + spec.csharp: + - uid: OpenTK.Core.Platform.IWindowComponent.IsFocused(OpenTK.Core.Platform.WindowHandle) + name: IsFocused + href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_IsFocused_OpenTK_Core_Platform_WindowHandle_ + - name: ( + - uid: OpenTK.Core.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Core.Platform.WindowHandle.html + - name: ) + spec.vb: + - uid: OpenTK.Core.Platform.IWindowComponent.IsFocused(OpenTK.Core.Platform.WindowHandle) + name: IsFocused + href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_IsFocused_OpenTK_Core_Platform_WindowHandle_ + - name: ( + - uid: OpenTK.Core.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Core.Platform.WindowHandle.html + - name: ) - uid: OpenTK.Platform.Native.Windows.WindowComponent.FocusWindow* commentId: Overload:OpenTK.Platform.Native.Windows.WindowComponent.FocusWindow href: OpenTK.Platform.Native.Windows.WindowComponent.html#OpenTK_Platform_Native_Windows_WindowComponent_FocusWindow_OpenTK_Core_Platform_WindowHandle_ @@ -5512,6 +5745,86 @@ references: isExternal: true href: https://learn.microsoft.com/dotnet/api/system.int32 - name: ) +- uid: OpenTK.Core.Platform.WindowScaleChangeEventArgs + commentId: T:OpenTK.Core.Platform.WindowScaleChangeEventArgs + href: OpenTK.Core.Platform.WindowScaleChangeEventArgs.html + name: WindowScaleChangeEventArgs + nameWithType: WindowScaleChangeEventArgs + fullName: OpenTK.Core.Platform.WindowScaleChangeEventArgs +- uid: OpenTK.Platform.Native.Windows.WindowComponent.GetScaleFactor* + commentId: Overload:OpenTK.Platform.Native.Windows.WindowComponent.GetScaleFactor + href: OpenTK.Platform.Native.Windows.WindowComponent.html#OpenTK_Platform_Native_Windows_WindowComponent_GetScaleFactor_OpenTK_Core_Platform_WindowHandle_System_Single__System_Single__ + name: GetScaleFactor + nameWithType: WindowComponent.GetScaleFactor + fullName: OpenTK.Platform.Native.Windows.WindowComponent.GetScaleFactor +- uid: OpenTK.Core.Platform.IWindowComponent.GetScaleFactor(OpenTK.Core.Platform.WindowHandle,System.Single@,System.Single@) + commentId: M:OpenTK.Core.Platform.IWindowComponent.GetScaleFactor(OpenTK.Core.Platform.WindowHandle,System.Single@,System.Single@) + parent: OpenTK.Core.Platform.IWindowComponent + isExternal: true + href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetScaleFactor_OpenTK_Core_Platform_WindowHandle_System_Single__System_Single__ + name: GetScaleFactor(WindowHandle, out float, out float) + nameWithType: IWindowComponent.GetScaleFactor(WindowHandle, out float, out float) + fullName: OpenTK.Core.Platform.IWindowComponent.GetScaleFactor(OpenTK.Core.Platform.WindowHandle, out float, out float) + nameWithType.vb: IWindowComponent.GetScaleFactor(WindowHandle, Single, Single) + fullName.vb: OpenTK.Core.Platform.IWindowComponent.GetScaleFactor(OpenTK.Core.Platform.WindowHandle, Single, Single) + name.vb: GetScaleFactor(WindowHandle, Single, Single) + spec.csharp: + - uid: OpenTK.Core.Platform.IWindowComponent.GetScaleFactor(OpenTK.Core.Platform.WindowHandle,System.Single@,System.Single@) + name: GetScaleFactor + href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetScaleFactor_OpenTK_Core_Platform_WindowHandle_System_Single__System_Single__ + - name: ( + - uid: OpenTK.Core.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Core.Platform.WindowHandle.html + - name: ',' + - name: " " + - name: out + - name: " " + - uid: System.Single + name: float + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.single + - name: ',' + - name: " " + - name: out + - name: " " + - uid: System.Single + name: float + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.single + - name: ) + spec.vb: + - uid: OpenTK.Core.Platform.IWindowComponent.GetScaleFactor(OpenTK.Core.Platform.WindowHandle,System.Single@,System.Single@) + name: GetScaleFactor + href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetScaleFactor_OpenTK_Core_Platform_WindowHandle_System_Single__System_Single__ + - name: ( + - uid: OpenTK.Core.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Core.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: System.Single + name: Single + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.single + - name: ',' + - name: " " + - uid: System.Single + name: Single + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.single + - name: ) +- uid: System.Single + commentId: T:System.Single + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.single + name: float + nameWithType: float + fullName: float + nameWithType.vb: Single + fullName.vb: Single + name.vb: Single - uid: OpenTK.Platform.Native.Windows.WindowComponent.GetHWND* commentId: Overload:OpenTK.Platform.Native.Windows.WindowComponent.GetHWND href: OpenTK.Platform.Native.Windows.WindowComponent.html#OpenTK_Platform_Native_Windows_WindowComponent_GetHWND_OpenTK_Core_Platform_WindowHandle_ diff --git a/api/OpenTK.Platform.Native.Windows.yml b/api/OpenTK.Platform.Native.Windows.yml index 34d896a8..6a353497 100644 --- a/api/OpenTK.Platform.Native.Windows.yml +++ b/api/OpenTK.Platform.Native.Windows.yml @@ -6,6 +6,7 @@ items: children: - OpenTK.Platform.Native.Windows.ClipboardComponent - OpenTK.Platform.Native.Windows.CursorComponent + - OpenTK.Platform.Native.Windows.DialogComponent - OpenTK.Platform.Native.Windows.DisplayComponent - OpenTK.Platform.Native.Windows.IconComponent - OpenTK.Platform.Native.Windows.JoystickComponent @@ -13,6 +14,7 @@ items: - OpenTK.Platform.Native.Windows.MouseComponent - OpenTK.Platform.Native.Windows.OpenGLComponent - OpenTK.Platform.Native.Windows.ShellComponent + - OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce - OpenTK.Platform.Native.Windows.WindowComponent langs: - csharp @@ -36,6 +38,12 @@ references: name: CursorComponent nameWithType: CursorComponent fullName: OpenTK.Platform.Native.Windows.CursorComponent +- uid: OpenTK.Platform.Native.Windows.DialogComponent + commentId: T:OpenTK.Platform.Native.Windows.DialogComponent + href: OpenTK.Platform.Native.Windows.DialogComponent.html + name: DialogComponent + nameWithType: DialogComponent + fullName: OpenTK.Platform.Native.Windows.DialogComponent - uid: OpenTK.Platform.Native.Windows.DisplayComponent commentId: T:OpenTK.Platform.Native.Windows.DisplayComponent href: OpenTK.Platform.Native.Windows.DisplayComponent.html @@ -78,9 +86,70 @@ references: name: ShellComponent nameWithType: ShellComponent fullName: OpenTK.Platform.Native.Windows.ShellComponent +- uid: OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce + commentId: T:OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce + parent: OpenTK.Platform.Native.Windows + href: OpenTK.Platform.Native.Windows.ShellComponent.html + name: ShellComponent.CornerPrefernce + nameWithType: ShellComponent.CornerPrefernce + fullName: OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce + spec.csharp: + - uid: OpenTK.Platform.Native.Windows.ShellComponent + name: ShellComponent + href: OpenTK.Platform.Native.Windows.ShellComponent.html + - name: . + - uid: OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce + name: CornerPrefernce + href: OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce.html + spec.vb: + - uid: OpenTK.Platform.Native.Windows.ShellComponent + name: ShellComponent + href: OpenTK.Platform.Native.Windows.ShellComponent.html + - name: . + - uid: OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce + name: CornerPrefernce + href: OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce.html - uid: OpenTK.Platform.Native.Windows.WindowComponent commentId: T:OpenTK.Platform.Native.Windows.WindowComponent href: OpenTK.Platform.Native.Windows.WindowComponent.html name: WindowComponent nameWithType: WindowComponent fullName: OpenTK.Platform.Native.Windows.WindowComponent +- uid: OpenTK.Platform.Native.Windows + commentId: N:OpenTK.Platform.Native.Windows + href: OpenTK.html + name: OpenTK.Platform.Native.Windows + nameWithType: OpenTK.Platform.Native.Windows + fullName: OpenTK.Platform.Native.Windows + spec.csharp: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Platform + name: Platform + href: OpenTK.Platform.html + - name: . + - uid: OpenTK.Platform.Native + name: Native + href: OpenTK.Platform.Native.html + - name: . + - uid: OpenTK.Platform.Native.Windows + name: Windows + href: OpenTK.Platform.Native.Windows.html + spec.vb: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Platform + name: Platform + href: OpenTK.Platform.html + - name: . + - uid: OpenTK.Platform.Native + name: Native + href: OpenTK.Platform.Native.html + - name: . + - uid: OpenTK.Platform.Native.Windows + name: Windows + href: OpenTK.Platform.Native.Windows.html diff --git a/api/OpenTK.Platform.Native.X11.X11ClipboardComponent.yml b/api/OpenTK.Platform.Native.X11.X11ClipboardComponent.yml index 4ed35fa3..a0208f88 100644 --- a/api/OpenTK.Platform.Native.X11.X11ClipboardComponent.yml +++ b/api/OpenTK.Platform.Native.X11.X11ClipboardComponent.yml @@ -9,9 +9,8 @@ items: - OpenTK.Platform.Native.X11.X11ClipboardComponent.GetClipboardBitmap - OpenTK.Platform.Native.X11.X11ClipboardComponent.GetClipboardFiles - OpenTK.Platform.Native.X11.X11ClipboardComponent.GetClipboardFormat - - OpenTK.Platform.Native.X11.X11ClipboardComponent.GetClipboardHTML - OpenTK.Platform.Native.X11.X11ClipboardComponent.GetClipboardText - - OpenTK.Platform.Native.X11.X11ClipboardComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - OpenTK.Platform.Native.X11.X11ClipboardComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - OpenTK.Platform.Native.X11.X11ClipboardComponent.Logger - OpenTK.Platform.Native.X11.X11ClipboardComponent.Name - OpenTK.Platform.Native.X11.X11ClipboardComponent.Provides @@ -150,16 +149,16 @@ items: overload: OpenTK.Platform.Native.X11.X11ClipboardComponent.Logger* implements: - OpenTK.Core.Platform.IPalComponent.Logger -- uid: OpenTK.Platform.Native.X11.X11ClipboardComponent.Initialize(OpenTK.Core.Platform.PalComponents) - commentId: M:OpenTK.Platform.Native.X11.X11ClipboardComponent.Initialize(OpenTK.Core.Platform.PalComponents) - id: Initialize(OpenTK.Core.Platform.PalComponents) +- uid: OpenTK.Platform.Native.X11.X11ClipboardComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Native.X11.X11ClipboardComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + id: Initialize(OpenTK.Core.Platform.ToolkitOptions) parent: OpenTK.Platform.Native.X11.X11ClipboardComponent langs: - csharp - vb - name: Initialize(PalComponents) - nameWithType: X11ClipboardComponent.Initialize(PalComponents) - fullName: OpenTK.Platform.Native.X11.X11ClipboardComponent.Initialize(OpenTK.Core.Platform.PalComponents) + name: Initialize(ToolkitOptions) + nameWithType: X11ClipboardComponent.Initialize(ToolkitOptions) + fullName: OpenTK.Platform.Native.X11.X11ClipboardComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) type: Method source: remote: @@ -172,18 +171,18 @@ items: assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.X11 - summary: Initialize the driver. + summary: Initialize the component. example: [] syntax: - content: public void Initialize(PalComponents which) + content: public void Initialize(ToolkitOptions options) parameters: - - id: which - type: OpenTK.Core.Platform.PalComponents - description: Bitfield of which components the driver need to be initialized. - content.vb: Public Sub Initialize(which As PalComponents) + - id: options + type: OpenTK.Core.Platform.ToolkitOptions + description: The options to initialize the component with. + content.vb: Public Sub Initialize(options As ToolkitOptions) overload: OpenTK.Platform.Native.X11.X11ClipboardComponent.Initialize* implements: - - OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - uid: OpenTK.Platform.Native.X11.X11ClipboardComponent.SupportedFormats commentId: P:OpenTK.Platform.Native.X11.X11ClipboardComponent.SupportedFormats id: SupportedFormats @@ -202,7 +201,7 @@ items: repo: https://github.com/opentk/opentk.git id: SupportedFormats path: opentk/src/OpenTK.Platform.Native/X11/X11ClipboardComponent.cs - startLine: 93 + startLine: 90 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.X11 @@ -235,7 +234,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetClipboardFormat path: opentk/src/OpenTK.Platform.Native/X11/X11ClipboardComponent.cs - startLine: 170 + startLine: 167 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.X11 @@ -268,7 +267,7 @@ items: repo: https://github.com/opentk/opentk.git id: SetClipboardText path: opentk/src/OpenTK.Platform.Native/X11/X11ClipboardComponent.cs - startLine: 176 + startLine: 173 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.X11 @@ -305,7 +304,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetClipboardText path: opentk/src/OpenTK.Platform.Native/X11/X11ClipboardComponent.cs - startLine: 182 + startLine: 179 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.X11 @@ -341,7 +340,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetClipboardAudio path: opentk/src/OpenTK.Platform.Native/X11/X11ClipboardComponent.cs - startLine: 262 + startLine: 259 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.X11 @@ -377,7 +376,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetClipboardBitmap path: opentk/src/OpenTK.Platform.Native/X11/X11ClipboardComponent.cs - startLine: 268 + startLine: 265 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.X11 @@ -395,42 +394,6 @@ items: overload: OpenTK.Platform.Native.X11.X11ClipboardComponent.GetClipboardBitmap* implements: - OpenTK.Core.Platform.IClipboardComponent.GetClipboardBitmap -- uid: OpenTK.Platform.Native.X11.X11ClipboardComponent.GetClipboardHTML - commentId: M:OpenTK.Platform.Native.X11.X11ClipboardComponent.GetClipboardHTML - id: GetClipboardHTML - parent: OpenTK.Platform.Native.X11.X11ClipboardComponent - langs: - - csharp - - vb - name: GetClipboardHTML() - nameWithType: X11ClipboardComponent.GetClipboardHTML() - fullName: OpenTK.Platform.Native.X11.X11ClipboardComponent.GetClipboardHTML() - type: Method - source: - remote: - path: src/OpenTK.Platform.Native/X11/X11ClipboardComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: GetClipboardHTML - path: opentk/src/OpenTK.Platform.Native/X11/X11ClipboardComponent.cs - startLine: 276 - assemblies: - - OpenTK.Platform.Native - namespace: OpenTK.Platform.Native.X11 - summary: >- - Gets the HTML string currently in the clipboard. - - This function returns null if the current clipboard data doesn't have the format. - example: [] - syntax: - content: public string? GetClipboardHTML() - return: - type: System.String - description: The HTML string currently in the clipboard. - content.vb: Public Function GetClipboardHTML() As String - overload: OpenTK.Platform.Native.X11.X11ClipboardComponent.GetClipboardHTML* - implements: - - OpenTK.Core.Platform.IClipboardComponent.GetClipboardHTML - uid: OpenTK.Platform.Native.X11.X11ClipboardComponent.GetClipboardFiles commentId: M:OpenTK.Platform.Native.X11.X11ClipboardComponent.GetClipboardFiles id: GetClipboardFiles @@ -449,7 +412,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetClipboardFiles path: opentk/src/OpenTK.Platform.Native/X11/X11ClipboardComponent.cs - startLine: 282 + startLine: 272 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.X11 @@ -883,35 +846,42 @@ references: href: OpenTK.Core.Utility.html - uid: OpenTK.Platform.Native.X11.X11ClipboardComponent.Initialize* commentId: Overload:OpenTK.Platform.Native.X11.X11ClipboardComponent.Initialize - href: OpenTK.Platform.Native.X11.X11ClipboardComponent.html#OpenTK_Platform_Native_X11_X11ClipboardComponent_Initialize_OpenTK_Core_Platform_PalComponents_ + href: OpenTK.Platform.Native.X11.X11ClipboardComponent.html#OpenTK_Platform_Native_X11_X11ClipboardComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ name: Initialize nameWithType: X11ClipboardComponent.Initialize fullName: OpenTK.Platform.Native.X11.X11ClipboardComponent.Initialize -- uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) - commentId: M:OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) +- uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + commentId: M:OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_PalComponents_ - name: Initialize(PalComponents) - nameWithType: IPalComponent.Initialize(PalComponents) - fullName: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + name: Initialize(ToolkitOptions) + nameWithType: IPalComponent.Initialize(ToolkitOptions) + fullName: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) spec.csharp: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_PalComponents_ + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.PalComponents - name: PalComponents - href: OpenTK.Core.Platform.PalComponents.html + - uid: OpenTK.Core.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Core.Platform.ToolkitOptions.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_PalComponents_ + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.PalComponents - name: PalComponents - href: OpenTK.Core.Platform.PalComponents.html + - uid: OpenTK.Core.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Core.Platform.ToolkitOptions.html - name: ) +- uid: OpenTK.Core.Platform.ToolkitOptions + commentId: T:OpenTK.Core.Platform.ToolkitOptions + parent: OpenTK.Core.Platform + href: OpenTK.Core.Platform.ToolkitOptions.html + name: ToolkitOptions + nameWithType: ToolkitOptions + fullName: OpenTK.Core.Platform.ToolkitOptions - uid: OpenTK.Platform.Native.X11.X11ClipboardComponent.SupportedFormats* commentId: Overload:OpenTK.Platform.Native.X11.X11ClipboardComponent.SupportedFormats href: OpenTK.Platform.Native.X11.X11ClipboardComponent.html#OpenTK_Platform_Native_X11_X11ClipboardComponent_SupportedFormats @@ -1199,37 +1169,6 @@ references: name: Bitmap nameWithType: Bitmap fullName: OpenTK.Core.Platform.Bitmap -- uid: OpenTK.Core.Platform.ClipboardFormat.HTML - commentId: F:OpenTK.Core.Platform.ClipboardFormat.HTML - href: OpenTK.Core.Platform.ClipboardFormat.html#OpenTK_Core_Platform_ClipboardFormat_HTML - name: HTML - nameWithType: ClipboardFormat.HTML - fullName: OpenTK.Core.Platform.ClipboardFormat.HTML -- uid: OpenTK.Platform.Native.X11.X11ClipboardComponent.GetClipboardHTML* - commentId: Overload:OpenTK.Platform.Native.X11.X11ClipboardComponent.GetClipboardHTML - href: OpenTK.Platform.Native.X11.X11ClipboardComponent.html#OpenTK_Platform_Native_X11_X11ClipboardComponent_GetClipboardHTML - name: GetClipboardHTML - nameWithType: X11ClipboardComponent.GetClipboardHTML - fullName: OpenTK.Platform.Native.X11.X11ClipboardComponent.GetClipboardHTML -- uid: OpenTK.Core.Platform.IClipboardComponent.GetClipboardHTML - commentId: M:OpenTK.Core.Platform.IClipboardComponent.GetClipboardHTML - parent: OpenTK.Core.Platform.IClipboardComponent - href: OpenTK.Core.Platform.IClipboardComponent.html#OpenTK_Core_Platform_IClipboardComponent_GetClipboardHTML - name: GetClipboardHTML() - nameWithType: IClipboardComponent.GetClipboardHTML() - fullName: OpenTK.Core.Platform.IClipboardComponent.GetClipboardHTML() - spec.csharp: - - uid: OpenTK.Core.Platform.IClipboardComponent.GetClipboardHTML - name: GetClipboardHTML - href: OpenTK.Core.Platform.IClipboardComponent.html#OpenTK_Core_Platform_IClipboardComponent_GetClipboardHTML - - name: ( - - name: ) - spec.vb: - - uid: OpenTK.Core.Platform.IClipboardComponent.GetClipboardHTML - name: GetClipboardHTML - href: OpenTK.Core.Platform.IClipboardComponent.html#OpenTK_Core_Platform_IClipboardComponent_GetClipboardHTML - - name: ( - - name: ) - uid: OpenTK.Core.Platform.ClipboardFormat.Files commentId: F:OpenTK.Core.Platform.ClipboardFormat.Files href: OpenTK.Core.Platform.ClipboardFormat.html#OpenTK_Core_Platform_ClipboardFormat_Files diff --git a/api/OpenTK.Platform.Native.X11.X11CursorComponent.yml b/api/OpenTK.Platform.Native.X11.X11CursorComponent.yml index dc76e594..4b9cdb2d 100644 --- a/api/OpenTK.Platform.Native.X11.X11CursorComponent.yml +++ b/api/OpenTK.Platform.Native.X11.X11CursorComponent.yml @@ -13,7 +13,7 @@ items: - OpenTK.Platform.Native.X11.X11CursorComponent.Destroy(OpenTK.Core.Platform.CursorHandle) - OpenTK.Platform.Native.X11.X11CursorComponent.GetHotspot(OpenTK.Core.Platform.CursorHandle,System.Int32@,System.Int32@) - OpenTK.Platform.Native.X11.X11CursorComponent.GetSize(OpenTK.Core.Platform.CursorHandle,System.Int32@,System.Int32@) - - OpenTK.Platform.Native.X11.X11CursorComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - OpenTK.Platform.Native.X11.X11CursorComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - OpenTK.Platform.Native.X11.X11CursorComponent.IsSystemCursor(OpenTK.Core.Platform.CursorHandle) - OpenTK.Platform.Native.X11.X11CursorComponent.Logger - OpenTK.Platform.Native.X11.X11CursorComponent.Name @@ -151,16 +151,16 @@ items: overload: OpenTK.Platform.Native.X11.X11CursorComponent.Logger* implements: - OpenTK.Core.Platform.IPalComponent.Logger -- uid: OpenTK.Platform.Native.X11.X11CursorComponent.Initialize(OpenTK.Core.Platform.PalComponents) - commentId: M:OpenTK.Platform.Native.X11.X11CursorComponent.Initialize(OpenTK.Core.Platform.PalComponents) - id: Initialize(OpenTK.Core.Platform.PalComponents) +- uid: OpenTK.Platform.Native.X11.X11CursorComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Native.X11.X11CursorComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + id: Initialize(OpenTK.Core.Platform.ToolkitOptions) parent: OpenTK.Platform.Native.X11.X11CursorComponent langs: - csharp - vb - name: Initialize(PalComponents) - nameWithType: X11CursorComponent.Initialize(PalComponents) - fullName: OpenTK.Platform.Native.X11.X11CursorComponent.Initialize(OpenTK.Core.Platform.PalComponents) + name: Initialize(ToolkitOptions) + nameWithType: X11CursorComponent.Initialize(ToolkitOptions) + fullName: OpenTK.Platform.Native.X11.X11CursorComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) type: Method source: remote: @@ -173,18 +173,18 @@ items: assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.X11 - summary: Initialize the driver. + summary: Initialize the component. example: [] syntax: - content: public void Initialize(PalComponents which) + content: public void Initialize(ToolkitOptions options) parameters: - - id: which - type: OpenTK.Core.Platform.PalComponents - description: Bitfield of which components the driver need to be initialized. - content.vb: Public Sub Initialize(which As PalComponents) + - id: options + type: OpenTK.Core.Platform.ToolkitOptions + description: The options to initialize the component with. + content.vb: Public Sub Initialize(options As ToolkitOptions) overload: OpenTK.Platform.Native.X11.X11CursorComponent.Initialize* implements: - - OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - uid: OpenTK.Platform.Native.X11.X11CursorComponent.CanLoadSystemCursors commentId: P:OpenTK.Platform.Native.X11.X11CursorComponent.CanLoadSystemCursors id: CanLoadSystemCursors @@ -203,7 +203,7 @@ items: repo: https://github.com/opentk/opentk.git id: CanLoadSystemCursors path: opentk/src/OpenTK.Platform.Native/X11/X11CursorComponent.cs - startLine: 57 + startLine: 52 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.X11 @@ -239,7 +239,7 @@ items: repo: https://github.com/opentk/opentk.git id: CanInspectSystemCursors path: opentk/src/OpenTK.Platform.Native/X11/X11CursorComponent.cs - startLine: 60 + startLine: 55 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.X11 @@ -282,7 +282,7 @@ items: repo: https://github.com/opentk/opentk.git id: Create path: opentk/src/OpenTK.Platform.Native/X11/X11CursorComponent.cs - startLine: 63 + startLine: 58 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.X11 @@ -327,7 +327,7 @@ items: repo: https://github.com/opentk/opentk.git id: Create path: opentk/src/OpenTK.Platform.Native/X11/X11CursorComponent.cs - startLine: 157 + startLine: 152 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.X11 @@ -386,7 +386,7 @@ items: repo: https://github.com/opentk/opentk.git id: Create path: opentk/src/OpenTK.Platform.Native/X11/X11CursorComponent.cs - startLine: 182 + startLine: 184 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.X11 @@ -448,7 +448,7 @@ items: repo: https://github.com/opentk/opentk.git id: Destroy path: opentk/src/OpenTK.Platform.Native/X11/X11CursorComponent.cs - startLine: 222 + startLine: 224 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.X11 @@ -486,7 +486,7 @@ items: repo: https://github.com/opentk/opentk.git id: IsSystemCursor path: opentk/src/OpenTK.Platform.Native/X11/X11CursorComponent.cs - startLine: 237 + startLine: 239 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.X11 @@ -526,7 +526,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetSize path: opentk/src/OpenTK.Platform.Native/X11/X11CursorComponent.cs - startLine: 245 + startLine: 247 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.X11 @@ -579,7 +579,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetHotspot path: opentk/src/OpenTK.Platform.Native/X11/X11CursorComponent.cs - startLine: 259 + startLine: 261 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.X11 @@ -1033,35 +1033,42 @@ references: href: OpenTK.Core.Utility.html - uid: OpenTK.Platform.Native.X11.X11CursorComponent.Initialize* commentId: Overload:OpenTK.Platform.Native.X11.X11CursorComponent.Initialize - href: OpenTK.Platform.Native.X11.X11CursorComponent.html#OpenTK_Platform_Native_X11_X11CursorComponent_Initialize_OpenTK_Core_Platform_PalComponents_ + href: OpenTK.Platform.Native.X11.X11CursorComponent.html#OpenTK_Platform_Native_X11_X11CursorComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ name: Initialize nameWithType: X11CursorComponent.Initialize fullName: OpenTK.Platform.Native.X11.X11CursorComponent.Initialize -- uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) - commentId: M:OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) +- uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + commentId: M:OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_PalComponents_ - name: Initialize(PalComponents) - nameWithType: IPalComponent.Initialize(PalComponents) - fullName: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + name: Initialize(ToolkitOptions) + nameWithType: IPalComponent.Initialize(ToolkitOptions) + fullName: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) spec.csharp: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_PalComponents_ + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.PalComponents - name: PalComponents - href: OpenTK.Core.Platform.PalComponents.html + - uid: OpenTK.Core.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Core.Platform.ToolkitOptions.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_PalComponents_ + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.PalComponents - name: PalComponents - href: OpenTK.Core.Platform.PalComponents.html + - uid: OpenTK.Core.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Core.Platform.ToolkitOptions.html - name: ) +- uid: OpenTK.Core.Platform.ToolkitOptions + commentId: T:OpenTK.Core.Platform.ToolkitOptions + parent: OpenTK.Core.Platform + href: OpenTK.Core.Platform.ToolkitOptions.html + name: ToolkitOptions + nameWithType: ToolkitOptions + fullName: OpenTK.Core.Platform.ToolkitOptions - uid: OpenTK.Core.Platform.ICursorComponent.Create(OpenTK.Core.Platform.SystemCursorType) commentId: M:OpenTK.Core.Platform.ICursorComponent.Create(OpenTK.Core.Platform.SystemCursorType) parent: OpenTK.Core.Platform.ICursorComponent diff --git a/api/OpenTK.Platform.Native.X11.X11DisplayComponent.yml b/api/OpenTK.Platform.Native.X11.X11DisplayComponent.yml index 02e48cc2..c7a0285a 100644 --- a/api/OpenTK.Platform.Native.X11.X11DisplayComponent.yml +++ b/api/OpenTK.Platform.Native.X11.X11DisplayComponent.yml @@ -18,7 +18,7 @@ items: - OpenTK.Platform.Native.X11.X11DisplayComponent.GetVideoMode(OpenTK.Core.Platform.DisplayHandle,OpenTK.Core.Platform.VideoMode@) - OpenTK.Platform.Native.X11.X11DisplayComponent.GetVirtualPosition(OpenTK.Core.Platform.DisplayHandle,System.Int32@,System.Int32@) - OpenTK.Platform.Native.X11.X11DisplayComponent.GetWorkArea(OpenTK.Core.Platform.DisplayHandle,OpenTK.Mathematics.Box2i@) - - OpenTK.Platform.Native.X11.X11DisplayComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - OpenTK.Platform.Native.X11.X11DisplayComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - OpenTK.Platform.Native.X11.X11DisplayComponent.IsPrimary(OpenTK.Core.Platform.DisplayHandle) - OpenTK.Platform.Native.X11.X11DisplayComponent.Logger - OpenTK.Platform.Native.X11.X11DisplayComponent.Name @@ -191,16 +191,16 @@ items: overload: OpenTK.Platform.Native.X11.X11DisplayComponent.CanGetVirtualPosition* implements: - OpenTK.Core.Platform.IDisplayComponent.CanGetVirtualPosition -- uid: OpenTK.Platform.Native.X11.X11DisplayComponent.Initialize(OpenTK.Core.Platform.PalComponents) - commentId: M:OpenTK.Platform.Native.X11.X11DisplayComponent.Initialize(OpenTK.Core.Platform.PalComponents) - id: Initialize(OpenTK.Core.Platform.PalComponents) +- uid: OpenTK.Platform.Native.X11.X11DisplayComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Native.X11.X11DisplayComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + id: Initialize(OpenTK.Core.Platform.ToolkitOptions) parent: OpenTK.Platform.Native.X11.X11DisplayComponent langs: - csharp - vb - name: Initialize(PalComponents) - nameWithType: X11DisplayComponent.Initialize(PalComponents) - fullName: OpenTK.Platform.Native.X11.X11DisplayComponent.Initialize(OpenTK.Core.Platform.PalComponents) + name: Initialize(ToolkitOptions) + nameWithType: X11DisplayComponent.Initialize(ToolkitOptions) + fullName: OpenTK.Platform.Native.X11.X11DisplayComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) type: Method source: remote: @@ -213,18 +213,18 @@ items: assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.X11 - summary: Initialize the driver. + summary: Initialize the component. example: [] syntax: - content: public void Initialize(PalComponents which) + content: public void Initialize(ToolkitOptions options) parameters: - - id: which - type: OpenTK.Core.Platform.PalComponents - description: Bitfield of which components the driver need to be initialized. - content.vb: Public Sub Initialize(which As PalComponents) + - id: options + type: OpenTK.Core.Platform.ToolkitOptions + description: The options to initialize the component with. + content.vb: Public Sub Initialize(options As ToolkitOptions) overload: OpenTK.Platform.Native.X11.X11DisplayComponent.Initialize* implements: - - OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - uid: OpenTK.Platform.Native.X11.X11DisplayComponent.GetDisplayCount commentId: M:OpenTK.Platform.Native.X11.X11DisplayComponent.GetDisplayCount id: GetDisplayCount @@ -1269,35 +1269,42 @@ references: name.vb: Boolean - uid: OpenTK.Platform.Native.X11.X11DisplayComponent.Initialize* commentId: Overload:OpenTK.Platform.Native.X11.X11DisplayComponent.Initialize - href: OpenTK.Platform.Native.X11.X11DisplayComponent.html#OpenTK_Platform_Native_X11_X11DisplayComponent_Initialize_OpenTK_Core_Platform_PalComponents_ + href: OpenTK.Platform.Native.X11.X11DisplayComponent.html#OpenTK_Platform_Native_X11_X11DisplayComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ name: Initialize nameWithType: X11DisplayComponent.Initialize fullName: OpenTK.Platform.Native.X11.X11DisplayComponent.Initialize -- uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) - commentId: M:OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) +- uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + commentId: M:OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_PalComponents_ - name: Initialize(PalComponents) - nameWithType: IPalComponent.Initialize(PalComponents) - fullName: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + name: Initialize(ToolkitOptions) + nameWithType: IPalComponent.Initialize(ToolkitOptions) + fullName: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) spec.csharp: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_PalComponents_ + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.PalComponents - name: PalComponents - href: OpenTK.Core.Platform.PalComponents.html + - uid: OpenTK.Core.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Core.Platform.ToolkitOptions.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_PalComponents_ + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.PalComponents - name: PalComponents - href: OpenTK.Core.Platform.PalComponents.html + - uid: OpenTK.Core.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Core.Platform.ToolkitOptions.html - name: ) +- uid: OpenTK.Core.Platform.ToolkitOptions + commentId: T:OpenTK.Core.Platform.ToolkitOptions + parent: OpenTK.Core.Platform + href: OpenTK.Core.Platform.ToolkitOptions.html + name: ToolkitOptions + nameWithType: ToolkitOptions + fullName: OpenTK.Core.Platform.ToolkitOptions - uid: OpenTK.Platform.Native.X11.X11DisplayComponent.GetDisplayCount* commentId: Overload:OpenTK.Platform.Native.X11.X11DisplayComponent.GetDisplayCount href: OpenTK.Platform.Native.X11.X11DisplayComponent.html#OpenTK_Platform_Native_X11_X11DisplayComponent_GetDisplayCount diff --git a/api/OpenTK.Platform.Native.X11.X11IconComponent.yml b/api/OpenTK.Platform.Native.X11.X11IconComponent.yml index c9ba1789..0c3b5b45 100644 --- a/api/OpenTK.Platform.Native.X11.X11IconComponent.yml +++ b/api/OpenTK.Platform.Native.X11.X11IconComponent.yml @@ -11,7 +11,7 @@ items: - OpenTK.Platform.Native.X11.X11IconComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte}) - OpenTK.Platform.Native.X11.X11IconComponent.Destroy(OpenTK.Core.Platform.IconHandle) - OpenTK.Platform.Native.X11.X11IconComponent.GetSize(OpenTK.Core.Platform.IconHandle,System.Int32@,System.Int32@) - - OpenTK.Platform.Native.X11.X11IconComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - OpenTK.Platform.Native.X11.X11IconComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - OpenTK.Platform.Native.X11.X11IconComponent.Logger - OpenTK.Platform.Native.X11.X11IconComponent.Name - OpenTK.Platform.Native.X11.X11IconComponent.Provides @@ -148,16 +148,16 @@ items: overload: OpenTK.Platform.Native.X11.X11IconComponent.Logger* implements: - OpenTK.Core.Platform.IPalComponent.Logger -- uid: OpenTK.Platform.Native.X11.X11IconComponent.Initialize(OpenTK.Core.Platform.PalComponents) - commentId: M:OpenTK.Platform.Native.X11.X11IconComponent.Initialize(OpenTK.Core.Platform.PalComponents) - id: Initialize(OpenTK.Core.Platform.PalComponents) +- uid: OpenTK.Platform.Native.X11.X11IconComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Native.X11.X11IconComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + id: Initialize(OpenTK.Core.Platform.ToolkitOptions) parent: OpenTK.Platform.Native.X11.X11IconComponent langs: - csharp - vb - name: Initialize(PalComponents) - nameWithType: X11IconComponent.Initialize(PalComponents) - fullName: OpenTK.Platform.Native.X11.X11IconComponent.Initialize(OpenTK.Core.Platform.PalComponents) + name: Initialize(ToolkitOptions) + nameWithType: X11IconComponent.Initialize(ToolkitOptions) + fullName: OpenTK.Platform.Native.X11.X11IconComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) type: Method source: remote: @@ -170,18 +170,18 @@ items: assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.X11 - summary: Initialize the driver. + summary: Initialize the component. example: [] syntax: - content: public void Initialize(PalComponents which) + content: public void Initialize(ToolkitOptions options) parameters: - - id: which - type: OpenTK.Core.Platform.PalComponents - description: Bitfield of which components the driver need to be initialized. - content.vb: Public Sub Initialize(which As PalComponents) + - id: options + type: OpenTK.Core.Platform.ToolkitOptions + description: The options to initialize the component with. + content.vb: Public Sub Initialize(options As ToolkitOptions) overload: OpenTK.Platform.Native.X11.X11IconComponent.Initialize* implements: - - OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - uid: OpenTK.Platform.Native.X11.X11IconComponent.CanLoadSystemIcons commentId: P:OpenTK.Platform.Native.X11.X11IconComponent.CanLoadSystemIcons id: CanLoadSystemIcons @@ -200,7 +200,7 @@ items: repo: https://github.com/opentk/opentk.git id: CanLoadSystemIcons path: opentk/src/OpenTK.Platform.Native/X11/X11IconComponent.cs - startLine: 41 + startLine: 37 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.X11 @@ -236,7 +236,7 @@ items: repo: https://github.com/opentk/opentk.git id: Create path: opentk/src/OpenTK.Platform.Native/X11/X11IconComponent.cs - startLine: 44 + startLine: 40 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.X11 @@ -279,7 +279,7 @@ items: repo: https://github.com/opentk/opentk.git id: Create path: opentk/src/OpenTK.Platform.Native/X11/X11IconComponent.cs - startLine: 51 + startLine: 47 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.X11 @@ -325,7 +325,7 @@ items: repo: https://github.com/opentk/opentk.git id: Create path: opentk/src/OpenTK.Platform.Native/X11/X11IconComponent.cs - startLine: 70 + startLine: 66 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.X11 @@ -372,7 +372,7 @@ items: repo: https://github.com/opentk/opentk.git id: Destroy path: opentk/src/OpenTK.Platform.Native/X11/X11IconComponent.cs - startLine: 78 + startLine: 74 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.X11 @@ -410,7 +410,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetSize path: opentk/src/OpenTK.Platform.Native/X11/X11IconComponent.cs - startLine: 88 + startLine: 84 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.X11 @@ -855,35 +855,42 @@ references: href: OpenTK.Core.Utility.html - uid: OpenTK.Platform.Native.X11.X11IconComponent.Initialize* commentId: Overload:OpenTK.Platform.Native.X11.X11IconComponent.Initialize - href: OpenTK.Platform.Native.X11.X11IconComponent.html#OpenTK_Platform_Native_X11_X11IconComponent_Initialize_OpenTK_Core_Platform_PalComponents_ + href: OpenTK.Platform.Native.X11.X11IconComponent.html#OpenTK_Platform_Native_X11_X11IconComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ name: Initialize nameWithType: X11IconComponent.Initialize fullName: OpenTK.Platform.Native.X11.X11IconComponent.Initialize -- uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) - commentId: M:OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) +- uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + commentId: M:OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_PalComponents_ - name: Initialize(PalComponents) - nameWithType: IPalComponent.Initialize(PalComponents) - fullName: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + name: Initialize(ToolkitOptions) + nameWithType: IPalComponent.Initialize(ToolkitOptions) + fullName: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) spec.csharp: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_PalComponents_ + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.PalComponents - name: PalComponents - href: OpenTK.Core.Platform.PalComponents.html + - uid: OpenTK.Core.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Core.Platform.ToolkitOptions.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_PalComponents_ + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.PalComponents - name: PalComponents - href: OpenTK.Core.Platform.PalComponents.html + - uid: OpenTK.Core.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Core.Platform.ToolkitOptions.html - name: ) +- uid: OpenTK.Core.Platform.ToolkitOptions + commentId: T:OpenTK.Core.Platform.ToolkitOptions + parent: OpenTK.Core.Platform + href: OpenTK.Core.Platform.ToolkitOptions.html + name: ToolkitOptions + nameWithType: ToolkitOptions + fullName: OpenTK.Core.Platform.ToolkitOptions - uid: OpenTK.Core.Platform.IIconComponent.Create(OpenTK.Core.Platform.SystemIconType) commentId: M:OpenTK.Core.Platform.IIconComponent.Create(OpenTK.Core.Platform.SystemIconType) parent: OpenTK.Core.Platform.IIconComponent diff --git a/api/OpenTK.Platform.Native.X11.X11KeyboardComponent.yml b/api/OpenTK.Platform.Native.X11.X11KeyboardComponent.yml index 0621efbc..d08745bb 100644 --- a/api/OpenTK.Platform.Native.X11.X11KeyboardComponent.yml +++ b/api/OpenTK.Platform.Native.X11.X11KeyboardComponent.yml @@ -13,7 +13,7 @@ items: - OpenTK.Platform.Native.X11.X11KeyboardComponent.GetKeyboardModifiers - OpenTK.Platform.Native.X11.X11KeyboardComponent.GetKeyboardState(System.Boolean[]) - OpenTK.Platform.Native.X11.X11KeyboardComponent.GetScancodeFromKey(OpenTK.Core.Platform.Key) - - OpenTK.Platform.Native.X11.X11KeyboardComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - OpenTK.Platform.Native.X11.X11KeyboardComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - OpenTK.Platform.Native.X11.X11KeyboardComponent.Logger - OpenTK.Platform.Native.X11.X11KeyboardComponent.Name - OpenTK.Platform.Native.X11.X11KeyboardComponent.Provides @@ -153,16 +153,16 @@ items: overload: OpenTK.Platform.Native.X11.X11KeyboardComponent.Logger* implements: - OpenTK.Core.Platform.IPalComponent.Logger -- uid: OpenTK.Platform.Native.X11.X11KeyboardComponent.Initialize(OpenTK.Core.Platform.PalComponents) - commentId: M:OpenTK.Platform.Native.X11.X11KeyboardComponent.Initialize(OpenTK.Core.Platform.PalComponents) - id: Initialize(OpenTK.Core.Platform.PalComponents) +- uid: OpenTK.Platform.Native.X11.X11KeyboardComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Native.X11.X11KeyboardComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + id: Initialize(OpenTK.Core.Platform.ToolkitOptions) parent: OpenTK.Platform.Native.X11.X11KeyboardComponent langs: - csharp - vb - name: Initialize(PalComponents) - nameWithType: X11KeyboardComponent.Initialize(PalComponents) - fullName: OpenTK.Platform.Native.X11.X11KeyboardComponent.Initialize(OpenTK.Core.Platform.PalComponents) + name: Initialize(ToolkitOptions) + nameWithType: X11KeyboardComponent.Initialize(ToolkitOptions) + fullName: OpenTK.Platform.Native.X11.X11KeyboardComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) type: Method source: remote: @@ -175,18 +175,18 @@ items: assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.X11 - summary: Initialize the driver. + summary: Initialize the component. example: [] syntax: - content: public void Initialize(PalComponents which) + content: public void Initialize(ToolkitOptions options) parameters: - - id: which - type: OpenTK.Core.Platform.PalComponents - description: Bitfield of which components the driver need to be initialized. - content.vb: Public Sub Initialize(which As PalComponents) + - id: options + type: OpenTK.Core.Platform.ToolkitOptions + description: The options to initialize the component with. + content.vb: Public Sub Initialize(options As ToolkitOptions) overload: OpenTK.Platform.Native.X11.X11KeyboardComponent.Initialize* implements: - - OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - uid: OpenTK.Platform.Native.X11.X11KeyboardComponent.SupportsLayouts commentId: P:OpenTK.Platform.Native.X11.X11KeyboardComponent.SupportsLayouts id: SupportsLayouts @@ -205,7 +205,7 @@ items: repo: https://github.com/opentk/opentk.git id: SupportsLayouts path: opentk/src/OpenTK.Platform.Native/X11/X11KeyboardComponent.cs - startLine: 413 + startLine: 408 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.X11 @@ -238,7 +238,7 @@ items: repo: https://github.com/opentk/opentk.git id: SupportsIme path: opentk/src/OpenTK.Platform.Native/X11/X11KeyboardComponent.cs - startLine: 416 + startLine: 411 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.X11 @@ -271,7 +271,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetActiveKeyboardLayout path: opentk/src/OpenTK.Platform.Native/X11/X11KeyboardComponent.cs - startLine: 419 + startLine: 414 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.X11 @@ -315,7 +315,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetAvailableKeyboardLayouts path: opentk/src/OpenTK.Platform.Native/X11/X11KeyboardComponent.cs - startLine: 427 + startLine: 422 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.X11 @@ -348,7 +348,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetScancodeFromKey path: opentk/src/OpenTK.Platform.Native/X11/X11KeyboardComponent.cs - startLine: 435 + startLine: 430 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.X11 @@ -395,7 +395,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetKeyFromScancode path: opentk/src/OpenTK.Platform.Native/X11/X11KeyboardComponent.cs - startLine: 445 + startLine: 440 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.X11 @@ -438,7 +438,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetKeyboardState path: opentk/src/OpenTK.Platform.Native/X11/X11KeyboardComponent.cs - startLine: 456 + startLine: 451 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.X11 @@ -480,7 +480,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetKeyboardModifiers path: opentk/src/OpenTK.Platform.Native/X11/X11KeyboardComponent.cs - startLine: 463 + startLine: 458 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.X11 @@ -513,7 +513,7 @@ items: repo: https://github.com/opentk/opentk.git id: BeginIme path: opentk/src/OpenTK.Platform.Native/X11/X11KeyboardComponent.cs - startLine: 477 + startLine: 472 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.X11 @@ -547,7 +547,7 @@ items: repo: https://github.com/opentk/opentk.git id: SetImeRectangle path: opentk/src/OpenTK.Platform.Native/X11/X11KeyboardComponent.cs - startLine: 483 + startLine: 478 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.X11 @@ -596,7 +596,7 @@ items: repo: https://github.com/opentk/opentk.git id: EndIme path: opentk/src/OpenTK.Platform.Native/X11/X11KeyboardComponent.cs - startLine: 489 + startLine: 484 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.X11 @@ -1028,35 +1028,42 @@ references: href: OpenTK.Core.Utility.html - uid: OpenTK.Platform.Native.X11.X11KeyboardComponent.Initialize* commentId: Overload:OpenTK.Platform.Native.X11.X11KeyboardComponent.Initialize - href: OpenTK.Platform.Native.X11.X11KeyboardComponent.html#OpenTK_Platform_Native_X11_X11KeyboardComponent_Initialize_OpenTK_Core_Platform_PalComponents_ + href: OpenTK.Platform.Native.X11.X11KeyboardComponent.html#OpenTK_Platform_Native_X11_X11KeyboardComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ name: Initialize nameWithType: X11KeyboardComponent.Initialize fullName: OpenTK.Platform.Native.X11.X11KeyboardComponent.Initialize -- uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) - commentId: M:OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) +- uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + commentId: M:OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_PalComponents_ - name: Initialize(PalComponents) - nameWithType: IPalComponent.Initialize(PalComponents) - fullName: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + name: Initialize(ToolkitOptions) + nameWithType: IPalComponent.Initialize(ToolkitOptions) + fullName: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) spec.csharp: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_PalComponents_ + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.PalComponents - name: PalComponents - href: OpenTK.Core.Platform.PalComponents.html + - uid: OpenTK.Core.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Core.Platform.ToolkitOptions.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_PalComponents_ + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.PalComponents - name: PalComponents - href: OpenTK.Core.Platform.PalComponents.html + - uid: OpenTK.Core.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Core.Platform.ToolkitOptions.html - name: ) +- uid: OpenTK.Core.Platform.ToolkitOptions + commentId: T:OpenTK.Core.Platform.ToolkitOptions + parent: OpenTK.Core.Platform + href: OpenTK.Core.Platform.ToolkitOptions.html + name: ToolkitOptions + nameWithType: ToolkitOptions + fullName: OpenTK.Core.Platform.ToolkitOptions - uid: OpenTK.Platform.Native.X11.X11KeyboardComponent.SupportsLayouts* commentId: Overload:OpenTK.Platform.Native.X11.X11KeyboardComponent.SupportsLayouts href: OpenTK.Platform.Native.X11.X11KeyboardComponent.html#OpenTK_Platform_Native_X11_X11KeyboardComponent_SupportsLayouts diff --git a/api/OpenTK.Platform.Native.X11.X11MouseComponent.yml b/api/OpenTK.Platform.Native.X11.X11MouseComponent.yml index dced3d8a..82476fb8 100644 --- a/api/OpenTK.Platform.Native.X11.X11MouseComponent.yml +++ b/api/OpenTK.Platform.Native.X11.X11MouseComponent.yml @@ -8,7 +8,7 @@ items: - OpenTK.Platform.Native.X11.X11MouseComponent.CanSetMousePosition - OpenTK.Platform.Native.X11.X11MouseComponent.GetMouseState(OpenTK.Core.Platform.MouseState@) - OpenTK.Platform.Native.X11.X11MouseComponent.GetPosition(System.Int32@,System.Int32@) - - OpenTK.Platform.Native.X11.X11MouseComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - OpenTK.Platform.Native.X11.X11MouseComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - OpenTK.Platform.Native.X11.X11MouseComponent.Logger - OpenTK.Platform.Native.X11.X11MouseComponent.Name - OpenTK.Platform.Native.X11.X11MouseComponent.Provides @@ -146,16 +146,16 @@ items: overload: OpenTK.Platform.Native.X11.X11MouseComponent.Logger* implements: - OpenTK.Core.Platform.IPalComponent.Logger -- uid: OpenTK.Platform.Native.X11.X11MouseComponent.Initialize(OpenTK.Core.Platform.PalComponents) - commentId: M:OpenTK.Platform.Native.X11.X11MouseComponent.Initialize(OpenTK.Core.Platform.PalComponents) - id: Initialize(OpenTK.Core.Platform.PalComponents) +- uid: OpenTK.Platform.Native.X11.X11MouseComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Native.X11.X11MouseComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + id: Initialize(OpenTK.Core.Platform.ToolkitOptions) parent: OpenTK.Platform.Native.X11.X11MouseComponent langs: - csharp - vb - name: Initialize(PalComponents) - nameWithType: X11MouseComponent.Initialize(PalComponents) - fullName: OpenTK.Platform.Native.X11.X11MouseComponent.Initialize(OpenTK.Core.Platform.PalComponents) + name: Initialize(ToolkitOptions) + nameWithType: X11MouseComponent.Initialize(ToolkitOptions) + fullName: OpenTK.Platform.Native.X11.X11MouseComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) type: Method source: remote: @@ -168,18 +168,18 @@ items: assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.X11 - summary: Initialize the driver. + summary: Initialize the component. example: [] syntax: - content: public void Initialize(PalComponents which) + content: public void Initialize(ToolkitOptions options) parameters: - - id: which - type: OpenTK.Core.Platform.PalComponents - description: Bitfield of which components the driver need to be initialized. - content.vb: Public Sub Initialize(which As PalComponents) + - id: options + type: OpenTK.Core.Platform.ToolkitOptions + description: The options to initialize the component with. + content.vb: Public Sub Initialize(options As ToolkitOptions) overload: OpenTK.Platform.Native.X11.X11MouseComponent.Initialize* implements: - - OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - uid: OpenTK.Platform.Native.X11.X11MouseComponent.CanSetMousePosition commentId: P:OpenTK.Platform.Native.X11.X11MouseComponent.CanSetMousePosition id: CanSetMousePosition @@ -198,7 +198,7 @@ items: repo: https://github.com/opentk/opentk.git id: CanSetMousePosition path: opentk/src/OpenTK.Platform.Native/X11/X11MouseComponent.cs - startLine: 33 + startLine: 29 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.X11 @@ -231,7 +231,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetPosition path: opentk/src/OpenTK.Platform.Native/X11/X11MouseComponent.cs - startLine: 36 + startLine: 32 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.X11 @@ -271,7 +271,7 @@ items: repo: https://github.com/opentk/opentk.git id: SetPosition path: opentk/src/OpenTK.Platform.Native/X11/X11MouseComponent.cs - startLine: 45 + startLine: 41 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.X11 @@ -311,7 +311,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetMouseState path: opentk/src/OpenTK.Platform.Native/X11/X11MouseComponent.cs - startLine: 78 + startLine: 74 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.X11 @@ -746,35 +746,42 @@ references: href: OpenTK.Core.Utility.html - uid: OpenTK.Platform.Native.X11.X11MouseComponent.Initialize* commentId: Overload:OpenTK.Platform.Native.X11.X11MouseComponent.Initialize - href: OpenTK.Platform.Native.X11.X11MouseComponent.html#OpenTK_Platform_Native_X11_X11MouseComponent_Initialize_OpenTK_Core_Platform_PalComponents_ + href: OpenTK.Platform.Native.X11.X11MouseComponent.html#OpenTK_Platform_Native_X11_X11MouseComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ name: Initialize nameWithType: X11MouseComponent.Initialize fullName: OpenTK.Platform.Native.X11.X11MouseComponent.Initialize -- uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) - commentId: M:OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) +- uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + commentId: M:OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_PalComponents_ - name: Initialize(PalComponents) - nameWithType: IPalComponent.Initialize(PalComponents) - fullName: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + name: Initialize(ToolkitOptions) + nameWithType: IPalComponent.Initialize(ToolkitOptions) + fullName: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) spec.csharp: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_PalComponents_ + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.PalComponents - name: PalComponents - href: OpenTK.Core.Platform.PalComponents.html + - uid: OpenTK.Core.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Core.Platform.ToolkitOptions.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_PalComponents_ + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.PalComponents - name: PalComponents - href: OpenTK.Core.Platform.PalComponents.html + - uid: OpenTK.Core.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Core.Platform.ToolkitOptions.html - name: ) +- uid: OpenTK.Core.Platform.ToolkitOptions + commentId: T:OpenTK.Core.Platform.ToolkitOptions + parent: OpenTK.Core.Platform + href: OpenTK.Core.Platform.ToolkitOptions.html + name: ToolkitOptions + nameWithType: ToolkitOptions + fullName: OpenTK.Core.Platform.ToolkitOptions - uid: OpenTK.Platform.Native.X11.X11MouseComponent.CanSetMousePosition* commentId: Overload:OpenTK.Platform.Native.X11.X11MouseComponent.CanSetMousePosition href: OpenTK.Platform.Native.X11.X11MouseComponent.html#OpenTK_Platform_Native_X11_X11MouseComponent_CanSetMousePosition diff --git a/api/OpenTK.Platform.Native.X11.X11OpenGLComponent.yml b/api/OpenTK.Platform.Native.X11.X11OpenGLComponent.yml index ecc0764d..13915eeb 100644 --- a/api/OpenTK.Platform.Native.X11.X11OpenGLComponent.yml +++ b/api/OpenTK.Platform.Native.X11.X11OpenGLComponent.yml @@ -27,7 +27,7 @@ items: - OpenTK.Platform.Native.X11.X11OpenGLComponent.GetProcedureAddress(OpenTK.Core.Platform.OpenGLContextHandle,System.String) - OpenTK.Platform.Native.X11.X11OpenGLComponent.GetSharedContext(OpenTK.Core.Platform.OpenGLContextHandle) - OpenTK.Platform.Native.X11.X11OpenGLComponent.GetSwapInterval - - OpenTK.Platform.Native.X11.X11OpenGLComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - OpenTK.Platform.Native.X11.X11OpenGLComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - OpenTK.Platform.Native.X11.X11OpenGLComponent.Logger - OpenTK.Platform.Native.X11.X11OpenGLComponent.Name - OpenTK.Platform.Native.X11.X11OpenGLComponent.Provides @@ -48,7 +48,7 @@ items: repo: https://github.com/opentk/opentk.git id: X11OpenGLComponent path: opentk/src/OpenTK.Platform.Native/X11/X11OpenGLComponent.cs - startLine: 11 + startLine: 12 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.X11 @@ -86,7 +86,7 @@ items: repo: https://github.com/opentk/opentk.git id: Name path: opentk/src/OpenTK.Platform.Native/X11/X11OpenGLComponent.cs - startLine: 14 + startLine: 15 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.X11 @@ -119,7 +119,7 @@ items: repo: https://github.com/opentk/opentk.git id: Provides path: opentk/src/OpenTK.Platform.Native/X11/X11OpenGLComponent.cs - startLine: 17 + startLine: 18 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.X11 @@ -152,7 +152,7 @@ items: repo: https://github.com/opentk/opentk.git id: Logger path: opentk/src/OpenTK.Platform.Native/X11/X11OpenGLComponent.cs - startLine: 20 + startLine: 21 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.X11 @@ -167,16 +167,16 @@ items: overload: OpenTK.Platform.Native.X11.X11OpenGLComponent.Logger* implements: - OpenTK.Core.Platform.IPalComponent.Logger -- uid: OpenTK.Platform.Native.X11.X11OpenGLComponent.Initialize(OpenTK.Core.Platform.PalComponents) - commentId: M:OpenTK.Platform.Native.X11.X11OpenGLComponent.Initialize(OpenTK.Core.Platform.PalComponents) - id: Initialize(OpenTK.Core.Platform.PalComponents) +- uid: OpenTK.Platform.Native.X11.X11OpenGLComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Native.X11.X11OpenGLComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + id: Initialize(OpenTK.Core.Platform.ToolkitOptions) parent: OpenTK.Platform.Native.X11.X11OpenGLComponent langs: - csharp - vb - name: Initialize(PalComponents) - nameWithType: X11OpenGLComponent.Initialize(PalComponents) - fullName: OpenTK.Platform.Native.X11.X11OpenGLComponent.Initialize(OpenTK.Core.Platform.PalComponents) + name: Initialize(ToolkitOptions) + nameWithType: X11OpenGLComponent.Initialize(ToolkitOptions) + fullName: OpenTK.Platform.Native.X11.X11OpenGLComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) type: Method source: remote: @@ -185,22 +185,22 @@ items: repo: https://github.com/opentk/opentk.git id: Initialize path: opentk/src/OpenTK.Platform.Native/X11/X11OpenGLComponent.cs - startLine: 23 + startLine: 24 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.X11 - summary: Initialize the driver. + summary: Initialize the component. example: [] syntax: - content: public void Initialize(PalComponents which) + content: public void Initialize(ToolkitOptions options) parameters: - - id: which - type: OpenTK.Core.Platform.PalComponents - description: Bitfield of which components the driver need to be initialized. - content.vb: Public Sub Initialize(which As PalComponents) + - id: options + type: OpenTK.Core.Platform.ToolkitOptions + description: The options to initialize the component with. + content.vb: Public Sub Initialize(options As ToolkitOptions) overload: OpenTK.Platform.Native.X11.X11OpenGLComponent.Initialize* implements: - - OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - uid: OpenTK.Platform.Native.X11.X11OpenGLComponent.CanShareContexts commentId: P:OpenTK.Platform.Native.X11.X11OpenGLComponent.CanShareContexts id: CanShareContexts @@ -219,7 +219,7 @@ items: repo: https://github.com/opentk/opentk.git id: CanShareContexts path: opentk/src/OpenTK.Platform.Native/X11/X11OpenGLComponent.cs - startLine: 102 + startLine: 109 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.X11 @@ -252,7 +252,7 @@ items: repo: https://github.com/opentk/opentk.git id: CanCreateFromWindow path: opentk/src/OpenTK.Platform.Native/X11/X11OpenGLComponent.cs - startLine: 105 + startLine: 112 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.X11 @@ -285,7 +285,7 @@ items: repo: https://github.com/opentk/opentk.git id: CanCreateFromSurface path: opentk/src/OpenTK.Platform.Native/X11/X11OpenGLComponent.cs - startLine: 108 + startLine: 115 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.X11 @@ -318,7 +318,7 @@ items: repo: https://github.com/opentk/opentk.git id: GLXVersion path: opentk/src/OpenTK.Platform.Native/X11/X11OpenGLComponent.cs - startLine: 110 + startLine: 117 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.X11 @@ -347,7 +347,7 @@ items: repo: https://github.com/opentk/opentk.git id: GLXExtensions path: opentk/src/OpenTK.Platform.Native/X11/X11OpenGLComponent.cs - startLine: 111 + startLine: 118 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.X11 @@ -376,7 +376,7 @@ items: repo: https://github.com/opentk/opentk.git id: GLXServerExtensions path: opentk/src/OpenTK.Platform.Native/X11/X11OpenGLComponent.cs - startLine: 112 + startLine: 119 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.X11 @@ -405,7 +405,7 @@ items: repo: https://github.com/opentk/opentk.git id: GLXClientExtensions path: opentk/src/OpenTK.Platform.Native/X11/X11OpenGLComponent.cs - startLine: 113 + startLine: 120 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.X11 @@ -434,7 +434,7 @@ items: repo: https://github.com/opentk/opentk.git id: GLXServerVendor path: opentk/src/OpenTK.Platform.Native/X11/X11OpenGLComponent.cs - startLine: 114 + startLine: 121 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.X11 @@ -463,7 +463,7 @@ items: repo: https://github.com/opentk/opentk.git id: GLXClientVendor path: opentk/src/OpenTK.Platform.Native/X11/X11OpenGLComponent.cs - startLine: 115 + startLine: 122 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.X11 @@ -492,7 +492,7 @@ items: repo: https://github.com/opentk/opentk.git id: GLXServerVersion path: opentk/src/OpenTK.Platform.Native/X11/X11OpenGLComponent.cs - startLine: 116 + startLine: 123 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.X11 @@ -521,7 +521,7 @@ items: repo: https://github.com/opentk/opentk.git id: GLXClientVersion path: opentk/src/OpenTK.Platform.Native/X11/X11OpenGLComponent.cs - startLine: 117 + startLine: 124 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.X11 @@ -550,7 +550,7 @@ items: repo: https://github.com/opentk/opentk.git id: CreateFromSurface path: opentk/src/OpenTK.Platform.Native/X11/X11OpenGLComponent.cs - startLine: 127 + startLine: 139 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.X11 @@ -583,7 +583,7 @@ items: repo: https://github.com/opentk/opentk.git id: CreateFromWindow path: opentk/src/OpenTK.Platform.Native/X11/X11OpenGLComponent.cs - startLine: 133 + startLine: 145 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.X11 @@ -620,7 +620,7 @@ items: repo: https://github.com/opentk/opentk.git id: DestroyContext path: opentk/src/OpenTK.Platform.Native/X11/X11OpenGLComponent.cs - startLine: 192 + startLine: 284 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.X11 @@ -658,7 +658,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetBindingsContext path: opentk/src/OpenTK.Platform.Native/X11/X11OpenGLComponent.cs - startLine: 201 + startLine: 293 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.X11 @@ -695,7 +695,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetProcedureAddress path: opentk/src/OpenTK.Platform.Native/X11/X11OpenGLComponent.cs - startLine: 207 + startLine: 299 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.X11 @@ -742,7 +742,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetCurrentContext path: opentk/src/OpenTK.Platform.Native/X11/X11OpenGLComponent.cs - startLine: 214 + startLine: 306 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.X11 @@ -775,7 +775,7 @@ items: repo: https://github.com/opentk/opentk.git id: SetCurrentContext path: opentk/src/OpenTK.Platform.Native/X11/X11OpenGLComponent.cs - startLine: 222 + startLine: 314 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.X11 @@ -815,7 +815,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetSharedContext path: opentk/src/OpenTK.Platform.Native/X11/X11OpenGLComponent.cs - startLine: 237 + startLine: 329 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.X11 @@ -852,7 +852,7 @@ items: repo: https://github.com/opentk/opentk.git id: EXT_swap_control_GetMaxSwapInterval path: opentk/src/OpenTK.Platform.Native/X11/X11OpenGLComponent.cs - startLine: 246 + startLine: 338 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.X11 @@ -885,7 +885,7 @@ items: repo: https://github.com/opentk/opentk.git id: SetSwapInterval path: opentk/src/OpenTK.Platform.Native/X11/X11OpenGLComponent.cs - startLine: 267 + startLine: 359 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.X11 @@ -922,7 +922,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetSwapInterval path: opentk/src/OpenTK.Platform.Native/X11/X11OpenGLComponent.cs - startLine: 313 + startLine: 405 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.X11 @@ -955,7 +955,7 @@ items: repo: https://github.com/opentk/opentk.git id: SwapBuffers path: opentk/src/OpenTK.Platform.Native/X11/X11OpenGLComponent.cs - startLine: 343 + startLine: 435 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.X11 @@ -989,7 +989,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetGLXContext path: opentk/src/OpenTK.Platform.Native/X11/X11OpenGLComponent.cs - startLine: 354 + startLine: 446 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.X11 @@ -1024,7 +1024,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetGLXWindow path: opentk/src/OpenTK.Platform.Native/X11/X11OpenGLComponent.cs - startLine: 366 + startLine: 458 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.X11 @@ -1457,35 +1457,42 @@ references: href: OpenTK.Core.Utility.html - uid: OpenTK.Platform.Native.X11.X11OpenGLComponent.Initialize* commentId: Overload:OpenTK.Platform.Native.X11.X11OpenGLComponent.Initialize - href: OpenTK.Platform.Native.X11.X11OpenGLComponent.html#OpenTK_Platform_Native_X11_X11OpenGLComponent_Initialize_OpenTK_Core_Platform_PalComponents_ + href: OpenTK.Platform.Native.X11.X11OpenGLComponent.html#OpenTK_Platform_Native_X11_X11OpenGLComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ name: Initialize nameWithType: X11OpenGLComponent.Initialize fullName: OpenTK.Platform.Native.X11.X11OpenGLComponent.Initialize -- uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) - commentId: M:OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) +- uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + commentId: M:OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_PalComponents_ - name: Initialize(PalComponents) - nameWithType: IPalComponent.Initialize(PalComponents) - fullName: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + name: Initialize(ToolkitOptions) + nameWithType: IPalComponent.Initialize(ToolkitOptions) + fullName: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) spec.csharp: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_PalComponents_ + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.PalComponents - name: PalComponents - href: OpenTK.Core.Platform.PalComponents.html + - uid: OpenTK.Core.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Core.Platform.ToolkitOptions.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_PalComponents_ + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.PalComponents - name: PalComponents - href: OpenTK.Core.Platform.PalComponents.html + - uid: OpenTK.Core.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Core.Platform.ToolkitOptions.html - name: ) +- uid: OpenTK.Core.Platform.ToolkitOptions + commentId: T:OpenTK.Core.Platform.ToolkitOptions + parent: OpenTK.Core.Platform + href: OpenTK.Core.Platform.ToolkitOptions.html + name: ToolkitOptions + nameWithType: ToolkitOptions + fullName: OpenTK.Core.Platform.ToolkitOptions - uid: OpenTK.Platform.Native.X11.X11OpenGLComponent.CanShareContexts* commentId: Overload:OpenTK.Platform.Native.X11.X11OpenGLComponent.CanShareContexts href: OpenTK.Platform.Native.X11.X11OpenGLComponent.html#OpenTK_Platform_Native_X11_X11OpenGLComponent_CanShareContexts diff --git a/api/OpenTK.Platform.Native.X11.X11ShellComponent.yml b/api/OpenTK.Platform.Native.X11.X11ShellComponent.yml index 69439029..377d6bca 100644 --- a/api/OpenTK.Platform.Native.X11.X11ShellComponent.yml +++ b/api/OpenTK.Platform.Native.X11.X11ShellComponent.yml @@ -9,7 +9,7 @@ items: - OpenTK.Platform.Native.X11.X11ShellComponent.GetBatteryInfo(OpenTK.Core.Platform.BatteryInfo@) - OpenTK.Platform.Native.X11.X11ShellComponent.GetPreferredTheme - OpenTK.Platform.Native.X11.X11ShellComponent.GetSystemMemoryInformation - - OpenTK.Platform.Native.X11.X11ShellComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - OpenTK.Platform.Native.X11.X11ShellComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - OpenTK.Platform.Native.X11.X11ShellComponent.Logger - OpenTK.Platform.Native.X11.X11ShellComponent.Name - OpenTK.Platform.Native.X11.X11ShellComponent.Provides @@ -146,16 +146,16 @@ items: overload: OpenTK.Platform.Native.X11.X11ShellComponent.Logger* implements: - OpenTK.Core.Platform.IPalComponent.Logger -- uid: OpenTK.Platform.Native.X11.X11ShellComponent.Initialize(OpenTK.Core.Platform.PalComponents) - commentId: M:OpenTK.Platform.Native.X11.X11ShellComponent.Initialize(OpenTK.Core.Platform.PalComponents) - id: Initialize(OpenTK.Core.Platform.PalComponents) +- uid: OpenTK.Platform.Native.X11.X11ShellComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Native.X11.X11ShellComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + id: Initialize(OpenTK.Core.Platform.ToolkitOptions) parent: OpenTK.Platform.Native.X11.X11ShellComponent langs: - csharp - vb - name: Initialize(PalComponents) - nameWithType: X11ShellComponent.Initialize(PalComponents) - fullName: OpenTK.Platform.Native.X11.X11ShellComponent.Initialize(OpenTK.Core.Platform.PalComponents) + name: Initialize(ToolkitOptions) + nameWithType: X11ShellComponent.Initialize(ToolkitOptions) + fullName: OpenTK.Platform.Native.X11.X11ShellComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) type: Method source: remote: @@ -168,18 +168,18 @@ items: assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.X11 - summary: Initialize the driver. + summary: Initialize the component. example: [] syntax: - content: public void Initialize(PalComponents which) + content: public void Initialize(ToolkitOptions options) parameters: - - id: which - type: OpenTK.Core.Platform.PalComponents - description: Bitfield of which components the driver need to be initialized. - content.vb: Public Sub Initialize(which As PalComponents) + - id: options + type: OpenTK.Core.Platform.ToolkitOptions + description: The options to initialize the component with. + content.vb: Public Sub Initialize(options As ToolkitOptions) overload: OpenTK.Platform.Native.X11.X11ShellComponent.Initialize* implements: - - OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - uid: OpenTK.Platform.Native.X11.X11ShellComponent.AllowScreenSaver(System.Boolean) commentId: M:OpenTK.Platform.Native.X11.X11ShellComponent.AllowScreenSaver(System.Boolean) id: AllowScreenSaver(System.Boolean) @@ -198,7 +198,7 @@ items: repo: https://github.com/opentk/opentk.git id: AllowScreenSaver path: opentk/src/OpenTK.Platform.Native/X11/X11ShellComponent.cs - startLine: 76 + startLine: 69 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.X11 @@ -242,7 +242,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetBatteryInfo path: opentk/src/OpenTK.Platform.Native/X11/X11ShellComponent.cs - startLine: 108 + startLine: 101 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.X11 @@ -284,7 +284,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetPreferredTheme path: opentk/src/OpenTK.Platform.Native/X11/X11ShellComponent.cs - startLine: 300 + startLine: 293 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.X11 @@ -317,7 +317,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetSystemMemoryInformation path: opentk/src/OpenTK.Platform.Native/X11/X11ShellComponent.cs - startLine: 331 + startLine: 324 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.X11 @@ -748,35 +748,42 @@ references: href: OpenTK.Core.Utility.html - uid: OpenTK.Platform.Native.X11.X11ShellComponent.Initialize* commentId: Overload:OpenTK.Platform.Native.X11.X11ShellComponent.Initialize - href: OpenTK.Platform.Native.X11.X11ShellComponent.html#OpenTK_Platform_Native_X11_X11ShellComponent_Initialize_OpenTK_Core_Platform_PalComponents_ + href: OpenTK.Platform.Native.X11.X11ShellComponent.html#OpenTK_Platform_Native_X11_X11ShellComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ name: Initialize nameWithType: X11ShellComponent.Initialize fullName: OpenTK.Platform.Native.X11.X11ShellComponent.Initialize -- uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) - commentId: M:OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) +- uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + commentId: M:OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_PalComponents_ - name: Initialize(PalComponents) - nameWithType: IPalComponent.Initialize(PalComponents) - fullName: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + name: Initialize(ToolkitOptions) + nameWithType: IPalComponent.Initialize(ToolkitOptions) + fullName: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) spec.csharp: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_PalComponents_ + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.PalComponents - name: PalComponents - href: OpenTK.Core.Platform.PalComponents.html + - uid: OpenTK.Core.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Core.Platform.ToolkitOptions.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_PalComponents_ + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.PalComponents - name: PalComponents - href: OpenTK.Core.Platform.PalComponents.html + - uid: OpenTK.Core.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Core.Platform.ToolkitOptions.html - name: ) +- uid: OpenTK.Core.Platform.ToolkitOptions + commentId: T:OpenTK.Core.Platform.ToolkitOptions + parent: OpenTK.Core.Platform + href: OpenTK.Core.Platform.ToolkitOptions.html + name: ToolkitOptions + nameWithType: ToolkitOptions + fullName: OpenTK.Core.Platform.ToolkitOptions - uid: OpenTK.Platform.Native.X11.X11ShellComponent.AllowScreenSaver* commentId: Overload:OpenTK.Platform.Native.X11.X11ShellComponent.AllowScreenSaver href: OpenTK.Platform.Native.X11.X11ShellComponent.html#OpenTK_Platform_Native_X11_X11ShellComponent_AllowScreenSaver_System_Boolean_ diff --git a/api/OpenTK.Platform.Native.X11.X11WindowComponent.yml b/api/OpenTK.Platform.Native.X11.X11WindowComponent.yml index 4ba6dfc5..59791b08 100644 --- a/api/OpenTK.Platform.Native.X11.X11WindowComponent.yml +++ b/api/OpenTK.Platform.Native.X11.X11WindowComponent.yml @@ -22,18 +22,22 @@ items: - OpenTK.Platform.Native.X11.X11WindowComponent.GetClientSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) - OpenTK.Platform.Native.X11.X11WindowComponent.GetCursorCaptureMode(OpenTK.Core.Platform.WindowHandle) - OpenTK.Platform.Native.X11.X11WindowComponent.GetDisplay(OpenTK.Core.Platform.WindowHandle) + - OpenTK.Platform.Native.X11.X11WindowComponent.GetFramebufferSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) - OpenTK.Platform.Native.X11.X11WindowComponent.GetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle@) - OpenTK.Platform.Native.X11.X11WindowComponent.GetIcon(OpenTK.Core.Platform.WindowHandle) + - OpenTK.Platform.Native.X11.X11WindowComponent.GetIconifiedTitle(OpenTK.Core.Platform.WindowHandle) - OpenTK.Platform.Native.X11.X11WindowComponent.GetMaxClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) - OpenTK.Platform.Native.X11.X11WindowComponent.GetMinClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) - OpenTK.Platform.Native.X11.X11WindowComponent.GetMode(OpenTK.Core.Platform.WindowHandle) - OpenTK.Platform.Native.X11.X11WindowComponent.GetPosition(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) + - OpenTK.Platform.Native.X11.X11WindowComponent.GetScaleFactor(OpenTK.Core.Platform.WindowHandle,System.Single@,System.Single@) - OpenTK.Platform.Native.X11.X11WindowComponent.GetSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) - OpenTK.Platform.Native.X11.X11WindowComponent.GetTitle(OpenTK.Core.Platform.WindowHandle) - OpenTK.Platform.Native.X11.X11WindowComponent.GetX11Display - OpenTK.Platform.Native.X11.X11WindowComponent.GetX11Window(OpenTK.Core.Platform.WindowHandle) - - OpenTK.Platform.Native.X11.X11WindowComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - OpenTK.Platform.Native.X11.X11WindowComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - OpenTK.Platform.Native.X11.X11WindowComponent.IsAlwaysOnTop(OpenTK.Core.Platform.WindowHandle) + - OpenTK.Platform.Native.X11.X11WindowComponent.IsFocused(OpenTK.Core.Platform.WindowHandle) - OpenTK.Platform.Native.X11.X11WindowComponent.IsWindowDestroyed(OpenTK.Core.Platform.WindowHandle) - OpenTK.Platform.Native.X11.X11WindowComponent.IsWindowManagerFreedesktop - OpenTK.Platform.Native.X11.X11WindowComponent.Logger @@ -54,6 +58,7 @@ items: - OpenTK.Platform.Native.X11.X11WindowComponent.SetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle,OpenTK.Core.Platform.VideoMode) - OpenTK.Platform.Native.X11.X11WindowComponent.SetHitTestCallback(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.HitTest) - OpenTK.Platform.Native.X11.X11WindowComponent.SetIcon(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.IconHandle) + - OpenTK.Platform.Native.X11.X11WindowComponent.SetIconifiedTitle(OpenTK.Core.Platform.WindowHandle,System.String) - OpenTK.Platform.Native.X11.X11WindowComponent.SetMaxClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) - OpenTK.Platform.Native.X11.X11WindowComponent.SetMinClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) - OpenTK.Platform.Native.X11.X11WindowComponent.SetMode(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.WindowMode) @@ -196,16 +201,16 @@ items: overload: OpenTK.Platform.Native.X11.X11WindowComponent.Logger* implements: - OpenTK.Core.Platform.IPalComponent.Logger -- uid: OpenTK.Platform.Native.X11.X11WindowComponent.Initialize(OpenTK.Core.Platform.PalComponents) - commentId: M:OpenTK.Platform.Native.X11.X11WindowComponent.Initialize(OpenTK.Core.Platform.PalComponents) - id: Initialize(OpenTK.Core.Platform.PalComponents) +- uid: OpenTK.Platform.Native.X11.X11WindowComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Native.X11.X11WindowComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + id: Initialize(OpenTK.Core.Platform.ToolkitOptions) parent: OpenTK.Platform.Native.X11.X11WindowComponent langs: - csharp - vb - name: Initialize(PalComponents) - nameWithType: X11WindowComponent.Initialize(PalComponents) - fullName: OpenTK.Platform.Native.X11.X11WindowComponent.Initialize(OpenTK.Core.Platform.PalComponents) + name: Initialize(ToolkitOptions) + nameWithType: X11WindowComponent.Initialize(ToolkitOptions) + fullName: OpenTK.Platform.Native.X11.X11WindowComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) type: Method source: remote: @@ -214,22 +219,22 @@ items: repo: https://github.com/opentk/opentk.git id: Initialize path: opentk/src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - startLine: 54 + startLine: 56 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.X11 - summary: Initialize the driver. + summary: Initialize the component. example: [] syntax: - content: public void Initialize(PalComponents which) + content: public void Initialize(ToolkitOptions options) parameters: - - id: which - type: OpenTK.Core.Platform.PalComponents - description: Bitfield of which components the driver need to be initialized. - content.vb: Public Sub Initialize(which As PalComponents) + - id: options + type: OpenTK.Core.Platform.ToolkitOptions + description: The options to initialize the component with. + content.vb: Public Sub Initialize(options As ToolkitOptions) overload: OpenTK.Platform.Native.X11.X11WindowComponent.Initialize* implements: - - OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - uid: OpenTK.Platform.Native.X11.X11WindowComponent.CanSetIcon commentId: P:OpenTK.Platform.Native.X11.X11WindowComponent.CanSetIcon id: CanSetIcon @@ -248,7 +253,7 @@ items: repo: https://github.com/opentk/opentk.git id: CanSetIcon path: opentk/src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - startLine: 225 + startLine: 224 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.X11 @@ -281,7 +286,7 @@ items: repo: https://github.com/opentk/opentk.git id: CanGetDisplay path: opentk/src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - startLine: 228 + startLine: 227 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.X11 @@ -314,7 +319,7 @@ items: repo: https://github.com/opentk/opentk.git id: CanSetCursor path: opentk/src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - startLine: 231 + startLine: 230 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.X11 @@ -347,7 +352,7 @@ items: repo: https://github.com/opentk/opentk.git id: CanCaptureCursor path: opentk/src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - startLine: 234 + startLine: 233 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.X11 @@ -380,7 +385,7 @@ items: repo: https://github.com/opentk/opentk.git id: SupportedEvents path: opentk/src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - startLine: 248 + startLine: 247 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.X11 @@ -413,7 +418,7 @@ items: repo: https://github.com/opentk/opentk.git id: SupportedStyles path: opentk/src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - startLine: 251 + startLine: 250 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.X11 @@ -446,7 +451,7 @@ items: repo: https://github.com/opentk/opentk.git id: SupportedModes path: opentk/src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - startLine: 254 + startLine: 253 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.X11 @@ -479,7 +484,7 @@ items: repo: https://github.com/opentk/opentk.git id: IsWindowManagerFreedesktop path: opentk/src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - startLine: 259 + startLine: 258 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.X11 @@ -510,7 +515,7 @@ items: repo: https://github.com/opentk/opentk.git id: FreedesktopWindowManagerName path: opentk/src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - startLine: 264 + startLine: 263 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.X11 @@ -541,7 +546,7 @@ items: repo: https://github.com/opentk/opentk.git id: ProcessEvents path: opentk/src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - startLine: 336 + startLine: 335 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.X11 @@ -578,7 +583,7 @@ items: repo: https://github.com/opentk/opentk.git id: Create path: opentk/src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - startLine: 1054 + startLine: 1064 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.X11 @@ -615,7 +620,7 @@ items: repo: https://github.com/opentk/opentk.git id: Destroy path: opentk/src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - startLine: 1234 + startLine: 1387 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.X11 @@ -653,7 +658,7 @@ items: repo: https://github.com/opentk/opentk.git id: IsWindowDestroyed path: opentk/src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - startLine: 1257 + startLine: 1410 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.X11 @@ -690,7 +695,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetTitle path: opentk/src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - startLine: 1265 + startLine: 1418 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.X11 @@ -731,7 +736,7 @@ items: repo: https://github.com/opentk/opentk.git id: SetTitle path: opentk/src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - startLine: 1297 + startLine: 1452 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.X11 @@ -757,6 +762,79 @@ items: nameWithType.vb: X11WindowComponent.SetTitle(WindowHandle, String) fullName.vb: OpenTK.Platform.Native.X11.X11WindowComponent.SetTitle(OpenTK.Core.Platform.WindowHandle, String) name.vb: SetTitle(WindowHandle, String) +- uid: OpenTK.Platform.Native.X11.X11WindowComponent.GetIconifiedTitle(OpenTK.Core.Platform.WindowHandle) + commentId: M:OpenTK.Platform.Native.X11.X11WindowComponent.GetIconifiedTitle(OpenTK.Core.Platform.WindowHandle) + id: GetIconifiedTitle(OpenTK.Core.Platform.WindowHandle) + parent: OpenTK.Platform.Native.X11.X11WindowComponent + langs: + - csharp + - vb + name: GetIconifiedTitle(WindowHandle) + nameWithType: X11WindowComponent.GetIconifiedTitle(WindowHandle) + fullName: OpenTK.Platform.Native.X11.X11WindowComponent.GetIconifiedTitle(OpenTK.Core.Platform.WindowHandle) + type: Method + source: + remote: + path: src/OpenTK.Platform.Native/X11/X11WindowComponent.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: GetIconifiedTitle + path: opentk/src/OpenTK.Platform.Native/X11/X11WindowComponent.cs + startLine: 1485 + assemblies: + - OpenTK.Platform.Native + namespace: OpenTK.Platform.Native.X11 + summary: Gets the iconified title of the window using either _NET_WM_ICON_NAME or WM_ICON_NAME. + example: [] + syntax: + content: public string GetIconifiedTitle(WindowHandle handle) + parameters: + - id: handle + type: OpenTK.Core.Platform.WindowHandle + description: A handle to the window to get the iconified title of. + return: + type: System.String + description: The title of the window when it's iconified. + content.vb: Public Function GetIconifiedTitle(handle As WindowHandle) As String + overload: OpenTK.Platform.Native.X11.X11WindowComponent.GetIconifiedTitle* +- uid: OpenTK.Platform.Native.X11.X11WindowComponent.SetIconifiedTitle(OpenTK.Core.Platform.WindowHandle,System.String) + commentId: M:OpenTK.Platform.Native.X11.X11WindowComponent.SetIconifiedTitle(OpenTK.Core.Platform.WindowHandle,System.String) + id: SetIconifiedTitle(OpenTK.Core.Platform.WindowHandle,System.String) + parent: OpenTK.Platform.Native.X11.X11WindowComponent + langs: + - csharp + - vb + name: SetIconifiedTitle(WindowHandle, string) + nameWithType: X11WindowComponent.SetIconifiedTitle(WindowHandle, string) + fullName: OpenTK.Platform.Native.X11.X11WindowComponent.SetIconifiedTitle(OpenTK.Core.Platform.WindowHandle, string) + type: Method + source: + remote: + path: src/OpenTK.Platform.Native/X11/X11WindowComponent.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: SetIconifiedTitle + path: opentk/src/OpenTK.Platform.Native/X11/X11WindowComponent.cs + startLine: 1519 + assemblies: + - OpenTK.Platform.Native + namespace: OpenTK.Platform.Native.X11 + summary: Sets the iconified title of the window using both _NET_WM_ICON_NAME and WM_ICON_NAME. + example: [] + syntax: + content: public void SetIconifiedTitle(WindowHandle handle, string iconTitle) + parameters: + - id: handle + type: OpenTK.Core.Platform.WindowHandle + description: A handle to the window to set the iconified title of. + - id: iconTitle + type: System.String + description: The new iconified title. + content.vb: Public Sub SetIconifiedTitle(handle As WindowHandle, iconTitle As String) + overload: OpenTK.Platform.Native.X11.X11WindowComponent.SetIconifiedTitle* + nameWithType.vb: X11WindowComponent.SetIconifiedTitle(WindowHandle, String) + fullName.vb: OpenTK.Platform.Native.X11.X11WindowComponent.SetIconifiedTitle(OpenTK.Core.Platform.WindowHandle, String) + name.vb: SetIconifiedTitle(WindowHandle, String) - uid: OpenTK.Platform.Native.X11.X11WindowComponent.GetIcon(OpenTK.Core.Platform.WindowHandle) commentId: M:OpenTK.Platform.Native.X11.X11WindowComponent.GetIcon(OpenTK.Core.Platform.WindowHandle) id: GetIcon(OpenTK.Core.Platform.WindowHandle) @@ -775,7 +853,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetIcon path: opentk/src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - startLine: 1326 + startLine: 1543 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.X11 @@ -819,7 +897,7 @@ items: repo: https://github.com/opentk/opentk.git id: SetIcon path: opentk/src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - startLine: 1334 + startLine: 1551 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.X11 @@ -863,7 +941,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetPosition path: opentk/src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - startLine: 1425 + startLine: 1642 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.X11 @@ -910,7 +988,7 @@ items: repo: https://github.com/opentk/opentk.git id: SetPosition path: opentk/src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - startLine: 1438 + startLine: 1655 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.X11 @@ -957,7 +1035,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetSize path: opentk/src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - startLine: 1453 + startLine: 1670 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.X11 @@ -1004,7 +1082,7 @@ items: repo: https://github.com/opentk/opentk.git id: SetSize path: opentk/src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - startLine: 1466 + startLine: 1683 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.X11 @@ -1051,7 +1129,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetBounds path: opentk/src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - startLine: 1484 + startLine: 1701 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.X11 @@ -1100,7 +1178,7 @@ items: repo: https://github.com/opentk/opentk.git id: SetBounds path: opentk/src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - startLine: 1507 + startLine: 1724 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.X11 @@ -1149,7 +1227,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetClientPosition path: opentk/src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - startLine: 1527 + startLine: 1744 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.X11 @@ -1196,7 +1274,7 @@ items: repo: https://github.com/opentk/opentk.git id: SetClientPosition path: opentk/src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - startLine: 1543 + startLine: 1760 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.X11 @@ -1243,7 +1321,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetClientSize path: opentk/src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - startLine: 1551 + startLine: 1768 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.X11 @@ -1290,7 +1368,7 @@ items: repo: https://github.com/opentk/opentk.git id: SetClientSize path: opentk/src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - startLine: 1561 + startLine: 1778 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.X11 @@ -1337,7 +1415,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetClientBounds path: opentk/src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - startLine: 1571 + startLine: 1788 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.X11 @@ -1386,7 +1464,7 @@ items: repo: https://github.com/opentk/opentk.git id: SetClientBounds path: opentk/src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - startLine: 1585 + startLine: 1802 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.X11 @@ -1417,6 +1495,52 @@ items: nameWithType.vb: X11WindowComponent.SetClientBounds(WindowHandle, Integer, Integer, Integer, Integer) fullName.vb: OpenTK.Platform.Native.X11.X11WindowComponent.SetClientBounds(OpenTK.Core.Platform.WindowHandle, Integer, Integer, Integer, Integer) name.vb: SetClientBounds(WindowHandle, Integer, Integer, Integer, Integer) +- uid: OpenTK.Platform.Native.X11.X11WindowComponent.GetFramebufferSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) + commentId: M:OpenTK.Platform.Native.X11.X11WindowComponent.GetFramebufferSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) + id: GetFramebufferSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) + parent: OpenTK.Platform.Native.X11.X11WindowComponent + langs: + - csharp + - vb + name: GetFramebufferSize(WindowHandle, out int, out int) + nameWithType: X11WindowComponent.GetFramebufferSize(WindowHandle, out int, out int) + fullName: OpenTK.Platform.Native.X11.X11WindowComponent.GetFramebufferSize(OpenTK.Core.Platform.WindowHandle, out int, out int) + type: Method + source: + remote: + path: src/OpenTK.Platform.Native/X11/X11WindowComponent.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: GetFramebufferSize + path: opentk/src/OpenTK.Platform.Native/X11/X11WindowComponent.cs + startLine: 1810 + assemblies: + - OpenTK.Platform.Native + namespace: OpenTK.Platform.Native.X11 + summary: >- + Get the size of the window framebuffer in pixels. + + Use this value when calls to graphics APIs that want pixels, e.g. GL.Viewport(). + example: [] + syntax: + content: public void GetFramebufferSize(WindowHandle handle, out int width, out int height) + parameters: + - id: handle + type: OpenTK.Core.Platform.WindowHandle + description: Handle to a window. + - id: width + type: System.Int32 + description: Width in pixels of the window framebuffer. + - id: height + type: System.Int32 + description: Height in pixels of the window framebuffer. + content.vb: Public Sub GetFramebufferSize(handle As WindowHandle, width As Integer, height As Integer) + overload: OpenTK.Platform.Native.X11.X11WindowComponent.GetFramebufferSize* + implements: + - OpenTK.Core.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) + nameWithType.vb: X11WindowComponent.GetFramebufferSize(WindowHandle, Integer, Integer) + fullName.vb: OpenTK.Platform.Native.X11.X11WindowComponent.GetFramebufferSize(OpenTK.Core.Platform.WindowHandle, Integer, Integer) + name.vb: GetFramebufferSize(WindowHandle, Integer, Integer) - uid: OpenTK.Platform.Native.X11.X11WindowComponent.GetMaxClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) commentId: M:OpenTK.Platform.Native.X11.X11WindowComponent.GetMaxClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) id: GetMaxClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) @@ -1435,7 +1559,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetMaxClientSize path: opentk/src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - startLine: 1593 + startLine: 1819 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.X11 @@ -1478,7 +1602,7 @@ items: repo: https://github.com/opentk/opentk.git id: SetMaxClientSize path: opentk/src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - startLine: 1630 + startLine: 1856 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.X11 @@ -1521,7 +1645,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetMinClientSize path: opentk/src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - startLine: 1659 + startLine: 1885 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.X11 @@ -1564,7 +1688,7 @@ items: repo: https://github.com/opentk/opentk.git id: SetMinClientSize path: opentk/src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - startLine: 1697 + startLine: 1923 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.X11 @@ -1607,7 +1731,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetDisplay path: opentk/src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - startLine: 1724 + startLine: 1950 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.X11 @@ -1651,7 +1775,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetMode path: opentk/src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - startLine: 1800 + startLine: 2026 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.X11 @@ -1696,7 +1820,7 @@ items: repo: https://github.com/opentk/opentk.git id: SetMode path: opentk/src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - startLine: 1871 + startLine: 2097 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.X11 @@ -1751,7 +1875,7 @@ items: repo: https://github.com/opentk/opentk.git id: SetFullscreenDisplay path: opentk/src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - startLine: 2059 + startLine: 2285 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.X11 @@ -1795,7 +1919,7 @@ items: repo: https://github.com/opentk/opentk.git id: SetFullscreenDisplay path: opentk/src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - startLine: 2134 + startLine: 2360 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.X11 @@ -1841,7 +1965,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetFullscreenDisplay path: opentk/src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - startLine: 2208 + startLine: 2434 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.X11 @@ -1884,7 +2008,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetBorderStyle path: opentk/src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - startLine: 2220 + startLine: 2446 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.X11 @@ -1929,7 +2053,7 @@ items: repo: https://github.com/opentk/opentk.git id: SetBorderStyle path: opentk/src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - startLine: 2286 + startLine: 2512 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.X11 @@ -1976,7 +2100,7 @@ items: repo: https://github.com/opentk/opentk.git id: SetAlwaysOnTop path: opentk/src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - startLine: 2420 + startLine: 2646 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.X11 @@ -2016,7 +2140,7 @@ items: repo: https://github.com/opentk/opentk.git id: IsAlwaysOnTop path: opentk/src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - startLine: 2459 + startLine: 2685 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.X11 @@ -2053,7 +2177,7 @@ items: repo: https://github.com/opentk/opentk.git id: SetHitTestCallback path: opentk/src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - startLine: 2504 + startLine: 2730 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.X11 @@ -2103,7 +2227,7 @@ items: repo: https://github.com/opentk/opentk.git id: SetCursor path: opentk/src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - startLine: 2512 + startLine: 2738 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.X11 @@ -2150,7 +2274,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetCursorCaptureMode path: opentk/src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - startLine: 2521 + startLine: 2747 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.X11 @@ -2187,7 +2311,7 @@ items: repo: https://github.com/opentk/opentk.git id: SetCursorCaptureMode path: opentk/src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - startLine: 2529 + startLine: 2755 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.X11 @@ -2209,6 +2333,43 @@ items: overload: OpenTK.Platform.Native.X11.X11WindowComponent.SetCursorCaptureMode* implements: - OpenTK.Core.Platform.IWindowComponent.SetCursorCaptureMode(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.CursorCaptureMode) +- uid: OpenTK.Platform.Native.X11.X11WindowComponent.IsFocused(OpenTK.Core.Platform.WindowHandle) + commentId: M:OpenTK.Platform.Native.X11.X11WindowComponent.IsFocused(OpenTK.Core.Platform.WindowHandle) + id: IsFocused(OpenTK.Core.Platform.WindowHandle) + parent: OpenTK.Platform.Native.X11.X11WindowComponent + langs: + - csharp + - vb + name: IsFocused(WindowHandle) + nameWithType: X11WindowComponent.IsFocused(WindowHandle) + fullName: OpenTK.Platform.Native.X11.X11WindowComponent.IsFocused(OpenTK.Core.Platform.WindowHandle) + type: Method + source: + remote: + path: src/OpenTK.Platform.Native/X11/X11WindowComponent.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: IsFocused + path: opentk/src/OpenTK.Platform.Native/X11/X11WindowComponent.cs + startLine: 2803 + assemblies: + - OpenTK.Platform.Native + namespace: OpenTK.Platform.Native.X11 + summary: Returns true if the given window has input focus. + example: [] + syntax: + content: public bool IsFocused(WindowHandle handle) + parameters: + - id: handle + type: OpenTK.Core.Platform.WindowHandle + description: Handle to a window. + return: + type: System.Boolean + description: If the window has input focus. + content.vb: Public Function IsFocused(handle As WindowHandle) As Boolean + overload: OpenTK.Platform.Native.X11.X11WindowComponent.IsFocused* + implements: + - OpenTK.Core.Platform.IWindowComponent.IsFocused(OpenTK.Core.Platform.WindowHandle) - uid: OpenTK.Platform.Native.X11.X11WindowComponent.FocusWindow(OpenTK.Core.Platform.WindowHandle) commentId: M:OpenTK.Platform.Native.X11.X11WindowComponent.FocusWindow(OpenTK.Core.Platform.WindowHandle) id: FocusWindow(OpenTK.Core.Platform.WindowHandle) @@ -2227,7 +2388,7 @@ items: repo: https://github.com/opentk/opentk.git id: FocusWindow path: opentk/src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - startLine: 2577 + startLine: 2813 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.X11 @@ -2261,7 +2422,7 @@ items: repo: https://github.com/opentk/opentk.git id: RequestAttention path: opentk/src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - startLine: 2586 + startLine: 2822 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.X11 @@ -2295,7 +2456,7 @@ items: repo: https://github.com/opentk/opentk.git id: DemandAttention path: opentk/src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - startLine: 2612 + startLine: 2848 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.X11 @@ -2330,7 +2491,7 @@ items: repo: https://github.com/opentk/opentk.git id: ScreenToClient path: opentk/src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - startLine: 2647 + startLine: 2883 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.X11 @@ -2379,7 +2540,7 @@ items: repo: https://github.com/opentk/opentk.git id: ClientToScreen path: opentk/src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - startLine: 2659 + startLine: 2895 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.X11 @@ -2410,6 +2571,52 @@ items: nameWithType.vb: X11WindowComponent.ClientToScreen(WindowHandle, Integer, Integer, Integer, Integer) fullName.vb: OpenTK.Platform.Native.X11.X11WindowComponent.ClientToScreen(OpenTK.Core.Platform.WindowHandle, Integer, Integer, Integer, Integer) name.vb: ClientToScreen(WindowHandle, Integer, Integer, Integer, Integer) +- uid: OpenTK.Platform.Native.X11.X11WindowComponent.GetScaleFactor(OpenTK.Core.Platform.WindowHandle,System.Single@,System.Single@) + commentId: M:OpenTK.Platform.Native.X11.X11WindowComponent.GetScaleFactor(OpenTK.Core.Platform.WindowHandle,System.Single@,System.Single@) + id: GetScaleFactor(OpenTK.Core.Platform.WindowHandle,System.Single@,System.Single@) + parent: OpenTK.Platform.Native.X11.X11WindowComponent + langs: + - csharp + - vb + name: GetScaleFactor(WindowHandle, out float, out float) + nameWithType: X11WindowComponent.GetScaleFactor(WindowHandle, out float, out float) + fullName: OpenTK.Platform.Native.X11.X11WindowComponent.GetScaleFactor(OpenTK.Core.Platform.WindowHandle, out float, out float) + type: Method + source: + remote: + path: src/OpenTK.Platform.Native/X11/X11WindowComponent.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: GetScaleFactor + path: opentk/src/OpenTK.Platform.Native/X11/X11WindowComponent.cs + startLine: 2907 + assemblies: + - OpenTK.Platform.Native + namespace: OpenTK.Platform.Native.X11 + summary: Returns the current scale factor of this window. + example: [] + syntax: + content: public void GetScaleFactor(WindowHandle handle, out float scaleX, out float scaleY) + parameters: + - id: handle + type: OpenTK.Core.Platform.WindowHandle + description: The window handle. + - id: scaleX + type: System.Single + description: The x scale factor of the window. + - id: scaleY + type: System.Single + description: The y scale factor of the window. + content.vb: Public Sub GetScaleFactor(handle As WindowHandle, scaleX As Single, scaleY As Single) + overload: OpenTK.Platform.Native.X11.X11WindowComponent.GetScaleFactor* + seealso: + - linkId: OpenTK.Core.Platform.WindowScaleChangeEventArgs + commentId: T:OpenTK.Core.Platform.WindowScaleChangeEventArgs + implements: + - OpenTK.Core.Platform.IWindowComponent.GetScaleFactor(OpenTK.Core.Platform.WindowHandle,System.Single@,System.Single@) + nameWithType.vb: X11WindowComponent.GetScaleFactor(WindowHandle, Single, Single) + fullName.vb: OpenTK.Platform.Native.X11.X11WindowComponent.GetScaleFactor(OpenTK.Core.Platform.WindowHandle, Single, Single) + name.vb: GetScaleFactor(WindowHandle, Single, Single) - uid: OpenTK.Platform.Native.X11.X11WindowComponent.GetX11Display commentId: M:OpenTK.Platform.Native.X11.X11WindowComponent.GetX11Display id: GetX11Display @@ -2428,7 +2635,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetX11Display path: opentk/src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - startLine: 2674 + startLine: 2918 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.X11 @@ -2459,7 +2666,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetX11Window path: opentk/src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - startLine: 2684 + startLine: 2928 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.X11 @@ -2892,35 +3099,42 @@ references: href: OpenTK.Core.Utility.html - uid: OpenTK.Platform.Native.X11.X11WindowComponent.Initialize* commentId: Overload:OpenTK.Platform.Native.X11.X11WindowComponent.Initialize - href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_Initialize_OpenTK_Core_Platform_PalComponents_ + href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ name: Initialize nameWithType: X11WindowComponent.Initialize fullName: OpenTK.Platform.Native.X11.X11WindowComponent.Initialize -- uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) - commentId: M:OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) +- uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + commentId: M:OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_PalComponents_ - name: Initialize(PalComponents) - nameWithType: IPalComponent.Initialize(PalComponents) - fullName: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + name: Initialize(ToolkitOptions) + nameWithType: IPalComponent.Initialize(ToolkitOptions) + fullName: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) spec.csharp: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_PalComponents_ + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.PalComponents - name: PalComponents - href: OpenTK.Core.Platform.PalComponents.html + - uid: OpenTK.Core.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Core.Platform.ToolkitOptions.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_PalComponents_ + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.PalComponents - name: PalComponents - href: OpenTK.Core.Platform.PalComponents.html + - uid: OpenTK.Core.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Core.Platform.ToolkitOptions.html - name: ) +- uid: OpenTK.Core.Platform.ToolkitOptions + commentId: T:OpenTK.Core.Platform.ToolkitOptions + parent: OpenTK.Core.Platform + href: OpenTK.Core.Platform.ToolkitOptions.html + name: ToolkitOptions + nameWithType: ToolkitOptions + fullName: OpenTK.Core.Platform.ToolkitOptions - uid: OpenTK.Platform.Native.X11.X11WindowComponent.CanSetIcon* commentId: Overload:OpenTK.Platform.Native.X11.X11WindowComponent.CanSetIcon href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_CanSetIcon @@ -3435,6 +3649,18 @@ references: isExternal: true href: https://learn.microsoft.com/dotnet/api/system.string - name: ) +- uid: OpenTK.Platform.Native.X11.X11WindowComponent.GetIconifiedTitle* + commentId: Overload:OpenTK.Platform.Native.X11.X11WindowComponent.GetIconifiedTitle + href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_GetIconifiedTitle_OpenTK_Core_Platform_WindowHandle_ + name: GetIconifiedTitle + nameWithType: X11WindowComponent.GetIconifiedTitle + fullName: OpenTK.Platform.Native.X11.X11WindowComponent.GetIconifiedTitle +- uid: OpenTK.Platform.Native.X11.X11WindowComponent.SetIconifiedTitle* + commentId: Overload:OpenTK.Platform.Native.X11.X11WindowComponent.SetIconifiedTitle + href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_SetIconifiedTitle_OpenTK_Core_Platform_WindowHandle_System_String_ + name: SetIconifiedTitle + nameWithType: X11WindowComponent.SetIconifiedTitle + fullName: OpenTK.Platform.Native.X11.X11WindowComponent.SetIconifiedTitle - uid: OpenTK.Core.Platform.PalNotImplementedException commentId: T:OpenTK.Core.Platform.PalNotImplementedException href: OpenTK.Core.Platform.PalNotImplementedException.html @@ -4367,6 +4593,69 @@ references: isExternal: true href: https://learn.microsoft.com/dotnet/api/system.int32 - name: ) +- uid: OpenTK.Platform.Native.X11.X11WindowComponent.GetFramebufferSize* + commentId: Overload:OpenTK.Platform.Native.X11.X11WindowComponent.GetFramebufferSize + href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_GetFramebufferSize_OpenTK_Core_Platform_WindowHandle_System_Int32__System_Int32__ + name: GetFramebufferSize + nameWithType: X11WindowComponent.GetFramebufferSize + fullName: OpenTK.Platform.Native.X11.X11WindowComponent.GetFramebufferSize +- uid: OpenTK.Core.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) + commentId: M:OpenTK.Core.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) + parent: OpenTK.Core.Platform.IWindowComponent + isExternal: true + href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetFramebufferSize_OpenTK_Core_Platform_WindowHandle_System_Int32__System_Int32__ + name: GetFramebufferSize(WindowHandle, out int, out int) + nameWithType: IWindowComponent.GetFramebufferSize(WindowHandle, out int, out int) + fullName: OpenTK.Core.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Core.Platform.WindowHandle, out int, out int) + nameWithType.vb: IWindowComponent.GetFramebufferSize(WindowHandle, Integer, Integer) + fullName.vb: OpenTK.Core.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Core.Platform.WindowHandle, Integer, Integer) + name.vb: GetFramebufferSize(WindowHandle, Integer, Integer) + spec.csharp: + - uid: OpenTK.Core.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) + name: GetFramebufferSize + href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetFramebufferSize_OpenTK_Core_Platform_WindowHandle_System_Int32__System_Int32__ + - name: ( + - uid: OpenTK.Core.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Core.Platform.WindowHandle.html + - name: ',' + - name: " " + - name: out + - name: " " + - uid: System.Int32 + name: int + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ',' + - name: " " + - name: out + - name: " " + - uid: System.Int32 + name: int + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ) + spec.vb: + - uid: OpenTK.Core.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) + name: GetFramebufferSize + href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetFramebufferSize_OpenTK_Core_Platform_WindowHandle_System_Int32__System_Int32__ + - name: ( + - uid: OpenTK.Core.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Core.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: System.Int32 + name: Integer + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ',' + - name: " " + - uid: System.Int32 + name: Integer + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ) - uid: OpenTK.Platform.Native.X11.X11WindowComponent.GetMaxClientSize* commentId: Overload:OpenTK.Platform.Native.X11.X11WindowComponent.GetMaxClientSize href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_GetMaxClientSize_OpenTK_Core_Platform_WindowHandle_System_Nullable_System_Int32___System_Nullable_System_Int32___ @@ -5385,6 +5674,37 @@ references: name: SetCursorCaptureMode nameWithType: X11WindowComponent.SetCursorCaptureMode fullName: OpenTK.Platform.Native.X11.X11WindowComponent.SetCursorCaptureMode +- uid: OpenTK.Platform.Native.X11.X11WindowComponent.IsFocused* + commentId: Overload:OpenTK.Platform.Native.X11.X11WindowComponent.IsFocused + href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_IsFocused_OpenTK_Core_Platform_WindowHandle_ + name: IsFocused + nameWithType: X11WindowComponent.IsFocused + fullName: OpenTK.Platform.Native.X11.X11WindowComponent.IsFocused +- uid: OpenTK.Core.Platform.IWindowComponent.IsFocused(OpenTK.Core.Platform.WindowHandle) + commentId: M:OpenTK.Core.Platform.IWindowComponent.IsFocused(OpenTK.Core.Platform.WindowHandle) + parent: OpenTK.Core.Platform.IWindowComponent + href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_IsFocused_OpenTK_Core_Platform_WindowHandle_ + name: IsFocused(WindowHandle) + nameWithType: IWindowComponent.IsFocused(WindowHandle) + fullName: OpenTK.Core.Platform.IWindowComponent.IsFocused(OpenTK.Core.Platform.WindowHandle) + spec.csharp: + - uid: OpenTK.Core.Platform.IWindowComponent.IsFocused(OpenTK.Core.Platform.WindowHandle) + name: IsFocused + href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_IsFocused_OpenTK_Core_Platform_WindowHandle_ + - name: ( + - uid: OpenTK.Core.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Core.Platform.WindowHandle.html + - name: ) + spec.vb: + - uid: OpenTK.Core.Platform.IWindowComponent.IsFocused(OpenTK.Core.Platform.WindowHandle) + name: IsFocused + href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_IsFocused_OpenTK_Core_Platform_WindowHandle_ + - name: ( + - uid: OpenTK.Core.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Core.Platform.WindowHandle.html + - name: ) - uid: OpenTK.Platform.Native.X11.X11WindowComponent.FocusWindow* commentId: Overload:OpenTK.Platform.Native.X11.X11WindowComponent.FocusWindow href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_FocusWindow_OpenTK_Core_Platform_WindowHandle_ @@ -5627,6 +5947,86 @@ references: isExternal: true href: https://learn.microsoft.com/dotnet/api/system.int32 - name: ) +- uid: OpenTK.Core.Platform.WindowScaleChangeEventArgs + commentId: T:OpenTK.Core.Platform.WindowScaleChangeEventArgs + href: OpenTK.Core.Platform.WindowScaleChangeEventArgs.html + name: WindowScaleChangeEventArgs + nameWithType: WindowScaleChangeEventArgs + fullName: OpenTK.Core.Platform.WindowScaleChangeEventArgs +- uid: OpenTK.Platform.Native.X11.X11WindowComponent.GetScaleFactor* + commentId: Overload:OpenTK.Platform.Native.X11.X11WindowComponent.GetScaleFactor + href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_GetScaleFactor_OpenTK_Core_Platform_WindowHandle_System_Single__System_Single__ + name: GetScaleFactor + nameWithType: X11WindowComponent.GetScaleFactor + fullName: OpenTK.Platform.Native.X11.X11WindowComponent.GetScaleFactor +- uid: OpenTK.Core.Platform.IWindowComponent.GetScaleFactor(OpenTK.Core.Platform.WindowHandle,System.Single@,System.Single@) + commentId: M:OpenTK.Core.Platform.IWindowComponent.GetScaleFactor(OpenTK.Core.Platform.WindowHandle,System.Single@,System.Single@) + parent: OpenTK.Core.Platform.IWindowComponent + isExternal: true + href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetScaleFactor_OpenTK_Core_Platform_WindowHandle_System_Single__System_Single__ + name: GetScaleFactor(WindowHandle, out float, out float) + nameWithType: IWindowComponent.GetScaleFactor(WindowHandle, out float, out float) + fullName: OpenTK.Core.Platform.IWindowComponent.GetScaleFactor(OpenTK.Core.Platform.WindowHandle, out float, out float) + nameWithType.vb: IWindowComponent.GetScaleFactor(WindowHandle, Single, Single) + fullName.vb: OpenTK.Core.Platform.IWindowComponent.GetScaleFactor(OpenTK.Core.Platform.WindowHandle, Single, Single) + name.vb: GetScaleFactor(WindowHandle, Single, Single) + spec.csharp: + - uid: OpenTK.Core.Platform.IWindowComponent.GetScaleFactor(OpenTK.Core.Platform.WindowHandle,System.Single@,System.Single@) + name: GetScaleFactor + href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetScaleFactor_OpenTK_Core_Platform_WindowHandle_System_Single__System_Single__ + - name: ( + - uid: OpenTK.Core.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Core.Platform.WindowHandle.html + - name: ',' + - name: " " + - name: out + - name: " " + - uid: System.Single + name: float + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.single + - name: ',' + - name: " " + - name: out + - name: " " + - uid: System.Single + name: float + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.single + - name: ) + spec.vb: + - uid: OpenTK.Core.Platform.IWindowComponent.GetScaleFactor(OpenTK.Core.Platform.WindowHandle,System.Single@,System.Single@) + name: GetScaleFactor + href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetScaleFactor_OpenTK_Core_Platform_WindowHandle_System_Single__System_Single__ + - name: ( + - uid: OpenTK.Core.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Core.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: System.Single + name: Single + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.single + - name: ',' + - name: " " + - uid: System.Single + name: Single + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.single + - name: ) +- uid: System.Single + commentId: T:System.Single + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.single + name: float + nameWithType: float + fullName: float + nameWithType.vb: Single + fullName.vb: Single + name.vb: Single - uid: OpenTK.Platform.Native.X11.X11WindowComponent.GetX11Display* commentId: Overload:OpenTK.Platform.Native.X11.X11WindowComponent.GetX11Display href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_GetX11Display diff --git a/api/OpenTK.Platform.Native.macOS.MacOSClipboardComponent.yml b/api/OpenTK.Platform.Native.macOS.MacOSClipboardComponent.yml new file mode 100644 index 00000000..f789ce0a --- /dev/null +++ b/api/OpenTK.Platform.Native.macOS.MacOSClipboardComponent.yml @@ -0,0 +1,1350 @@ +### YamlMime:ManagedReference +items: +- uid: OpenTK.Platform.Native.macOS.MacOSClipboardComponent + commentId: T:OpenTK.Platform.Native.macOS.MacOSClipboardComponent + id: MacOSClipboardComponent + parent: OpenTK.Platform.Native.macOS + children: + - OpenTK.Platform.Native.macOS.MacOSClipboardComponent.CheckClipboardUpdate + - OpenTK.Platform.Native.macOS.MacOSClipboardComponent.GetClipboardAudio + - OpenTK.Platform.Native.macOS.MacOSClipboardComponent.GetClipboardBitmap + - OpenTK.Platform.Native.macOS.MacOSClipboardComponent.GetClipboardFiles + - OpenTK.Platform.Native.macOS.MacOSClipboardComponent.GetClipboardFormat + - OpenTK.Platform.Native.macOS.MacOSClipboardComponent.GetClipboardText + - OpenTK.Platform.Native.macOS.MacOSClipboardComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + - OpenTK.Platform.Native.macOS.MacOSClipboardComponent.Logger + - OpenTK.Platform.Native.macOS.MacOSClipboardComponent.Name + - OpenTK.Platform.Native.macOS.MacOSClipboardComponent.Provides + - OpenTK.Platform.Native.macOS.MacOSClipboardComponent.SetClipboardBitmap(OpenTK.Core.Platform.Bitmap) + - OpenTK.Platform.Native.macOS.MacOSClipboardComponent.SetClipboardText(System.String) + - OpenTK.Platform.Native.macOS.MacOSClipboardComponent.SupportedFormats + langs: + - csharp + - vb + name: MacOSClipboardComponent + nameWithType: MacOSClipboardComponent + fullName: OpenTK.Platform.Native.macOS.MacOSClipboardComponent + type: Class + source: + remote: + path: src/OpenTK.Platform.Native/macOS/MacOSClipboardComponent.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: MacOSClipboardComponent + path: opentk/src/OpenTK.Platform.Native/macOS/MacOSClipboardComponent.cs + startLine: 11 + assemblies: + - OpenTK.Platform.Native + namespace: OpenTK.Platform.Native.macOS + syntax: + content: 'public class MacOSClipboardComponent : IClipboardComponent, IPalComponent' + content.vb: Public Class MacOSClipboardComponent Implements IClipboardComponent, IPalComponent + inheritance: + - System.Object + implements: + - OpenTK.Core.Platform.IClipboardComponent + - OpenTK.Core.Platform.IPalComponent + inheritedMembers: + - System.Object.Equals(System.Object) + - System.Object.Equals(System.Object,System.Object) + - System.Object.GetHashCode + - System.Object.GetType + - System.Object.MemberwiseClone + - System.Object.ReferenceEquals(System.Object,System.Object) + - System.Object.ToString +- uid: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.Name + commentId: P:OpenTK.Platform.Native.macOS.MacOSClipboardComponent.Name + id: Name + parent: OpenTK.Platform.Native.macOS.MacOSClipboardComponent + langs: + - csharp + - vb + name: Name + nameWithType: MacOSClipboardComponent.Name + fullName: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.Name + type: Property + source: + remote: + path: src/OpenTK.Platform.Native/macOS/MacOSClipboardComponent.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: Name + path: opentk/src/OpenTK.Platform.Native/macOS/MacOSClipboardComponent.cs + startLine: 62 + assemblies: + - OpenTK.Platform.Native + namespace: OpenTK.Platform.Native.macOS + summary: Name of the abstraction layer component. + example: [] + syntax: + content: public string Name { get; } + parameters: [] + return: + type: System.String + content.vb: Public ReadOnly Property Name As String + overload: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.Name* + implements: + - OpenTK.Core.Platform.IPalComponent.Name +- uid: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.Provides + commentId: P:OpenTK.Platform.Native.macOS.MacOSClipboardComponent.Provides + id: Provides + parent: OpenTK.Platform.Native.macOS.MacOSClipboardComponent + langs: + - csharp + - vb + name: Provides + nameWithType: MacOSClipboardComponent.Provides + fullName: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.Provides + type: Property + source: + remote: + path: src/OpenTK.Platform.Native/macOS/MacOSClipboardComponent.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: Provides + path: opentk/src/OpenTK.Platform.Native/macOS/MacOSClipboardComponent.cs + startLine: 64 + assemblies: + - OpenTK.Platform.Native + namespace: OpenTK.Platform.Native.macOS + summary: Specifies which PAL components this object provides. + example: [] + syntax: + content: public PalComponents Provides { get; } + parameters: [] + return: + type: OpenTK.Core.Platform.PalComponents + content.vb: Public ReadOnly Property Provides As PalComponents + overload: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.Provides* + implements: + - OpenTK.Core.Platform.IPalComponent.Provides +- uid: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.Logger + commentId: P:OpenTK.Platform.Native.macOS.MacOSClipboardComponent.Logger + id: Logger + parent: OpenTK.Platform.Native.macOS.MacOSClipboardComponent + langs: + - csharp + - vb + name: Logger + nameWithType: MacOSClipboardComponent.Logger + fullName: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.Logger + type: Property + source: + remote: + path: src/OpenTK.Platform.Native/macOS/MacOSClipboardComponent.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: Logger + path: opentk/src/OpenTK.Platform.Native/macOS/MacOSClipboardComponent.cs + startLine: 66 + assemblies: + - OpenTK.Platform.Native + namespace: OpenTK.Platform.Native.macOS + summary: Provides a logger for this component. + example: [] + syntax: + content: public ILogger? Logger { get; set; } + parameters: [] + return: + type: OpenTK.Core.Utility.ILogger + content.vb: Public Property Logger As ILogger + overload: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.Logger* + implements: + - OpenTK.Core.Platform.IPalComponent.Logger +- uid: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Native.macOS.MacOSClipboardComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + id: Initialize(OpenTK.Core.Platform.ToolkitOptions) + parent: OpenTK.Platform.Native.macOS.MacOSClipboardComponent + langs: + - csharp + - vb + name: Initialize(ToolkitOptions) + nameWithType: MacOSClipboardComponent.Initialize(ToolkitOptions) + fullName: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + type: Method + source: + remote: + path: src/OpenTK.Platform.Native/macOS/MacOSClipboardComponent.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: Initialize + path: opentk/src/OpenTK.Platform.Native/macOS/MacOSClipboardComponent.cs + startLine: 70 + assemblies: + - OpenTK.Platform.Native + namespace: OpenTK.Platform.Native.macOS + summary: Initialize the component. + example: [] + syntax: + content: public void Initialize(ToolkitOptions options) + parameters: + - id: options + type: OpenTK.Core.Platform.ToolkitOptions + description: The options to initialize the component with. + content.vb: Public Sub Initialize(options As ToolkitOptions) + overload: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.Initialize* + implements: + - OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) +- uid: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.CheckClipboardUpdate + commentId: M:OpenTK.Platform.Native.macOS.MacOSClipboardComponent.CheckClipboardUpdate + id: CheckClipboardUpdate + parent: OpenTK.Platform.Native.macOS.MacOSClipboardComponent + langs: + - csharp + - vb + name: CheckClipboardUpdate() + nameWithType: MacOSClipboardComponent.CheckClipboardUpdate() + fullName: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.CheckClipboardUpdate() + type: Method + source: + remote: + path: src/OpenTK.Platform.Native/macOS/MacOSClipboardComponent.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: CheckClipboardUpdate + path: opentk/src/OpenTK.Platform.Native/macOS/MacOSClipboardComponent.cs + startLine: 77 + assemblies: + - OpenTK.Platform.Native + namespace: OpenTK.Platform.Native.macOS + syntax: + content: public static bool CheckClipboardUpdate() + return: + type: System.Boolean + content.vb: Public Shared Function CheckClipboardUpdate() As Boolean + overload: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.CheckClipboardUpdate* +- uid: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.SupportedFormats + commentId: P:OpenTK.Platform.Native.macOS.MacOSClipboardComponent.SupportedFormats + id: SupportedFormats + parent: OpenTK.Platform.Native.macOS.MacOSClipboardComponent + langs: + - csharp + - vb + name: SupportedFormats + nameWithType: MacOSClipboardComponent.SupportedFormats + fullName: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.SupportedFormats + type: Property + source: + remote: + path: src/OpenTK.Platform.Native/macOS/MacOSClipboardComponent.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: SupportedFormats + path: opentk/src/OpenTK.Platform.Native/macOS/MacOSClipboardComponent.cs + startLine: 86 + assemblies: + - OpenTK.Platform.Native + namespace: OpenTK.Platform.Native.macOS + summary: A list of formats that this clipboard component supports. + example: [] + syntax: + content: public IReadOnlyList SupportedFormats { get; } + parameters: [] + return: + type: System.Collections.Generic.IReadOnlyList{OpenTK.Core.Platform.ClipboardFormat} + content.vb: Public ReadOnly Property SupportedFormats As IReadOnlyList(Of ClipboardFormat) + overload: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.SupportedFormats* + implements: + - OpenTK.Core.Platform.IClipboardComponent.SupportedFormats +- uid: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.GetClipboardFormat + commentId: M:OpenTK.Platform.Native.macOS.MacOSClipboardComponent.GetClipboardFormat + id: GetClipboardFormat + parent: OpenTK.Platform.Native.macOS.MacOSClipboardComponent + langs: + - csharp + - vb + name: GetClipboardFormat() + nameWithType: MacOSClipboardComponent.GetClipboardFormat() + fullName: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.GetClipboardFormat() + type: Method + source: + remote: + path: src/OpenTK.Platform.Native/macOS/MacOSClipboardComponent.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: GetClipboardFormat + path: opentk/src/OpenTK.Platform.Native/macOS/MacOSClipboardComponent.cs + startLine: 139 + assemblies: + - OpenTK.Platform.Native + namespace: OpenTK.Platform.Native.macOS + summary: Gets the format of the data currently in the clipboard. + example: [] + syntax: + content: public ClipboardFormat GetClipboardFormat() + return: + type: OpenTK.Core.Platform.ClipboardFormat + description: The format of the data currently in the clipboard. + content.vb: Public Function GetClipboardFormat() As ClipboardFormat + overload: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.GetClipboardFormat* + implements: + - OpenTK.Core.Platform.IClipboardComponent.GetClipboardFormat +- uid: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.SetClipboardText(System.String) + commentId: M:OpenTK.Platform.Native.macOS.MacOSClipboardComponent.SetClipboardText(System.String) + id: SetClipboardText(System.String) + parent: OpenTK.Platform.Native.macOS.MacOSClipboardComponent + langs: + - csharp + - vb + name: SetClipboardText(string) + nameWithType: MacOSClipboardComponent.SetClipboardText(string) + fullName: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.SetClipboardText(string) + type: Method + source: + remote: + path: src/OpenTK.Platform.Native/macOS/MacOSClipboardComponent.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: SetClipboardText + path: opentk/src/OpenTK.Platform.Native/macOS/MacOSClipboardComponent.cs + startLine: 144 + assemblies: + - OpenTK.Platform.Native + namespace: OpenTK.Platform.Native.macOS + summary: Sets the string currently in the clipboard. + example: [] + syntax: + content: public void SetClipboardText(string text) + parameters: + - id: text + type: System.String + description: The text to put on the clipboard. + content.vb: Public Sub SetClipboardText(text As String) + overload: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.SetClipboardText* + implements: + - OpenTK.Core.Platform.IClipboardComponent.SetClipboardText(System.String) + nameWithType.vb: MacOSClipboardComponent.SetClipboardText(String) + fullName.vb: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.SetClipboardText(String) + name.vb: SetClipboardText(String) +- uid: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.GetClipboardText + commentId: M:OpenTK.Platform.Native.macOS.MacOSClipboardComponent.GetClipboardText + id: GetClipboardText + parent: OpenTK.Platform.Native.macOS.MacOSClipboardComponent + langs: + - csharp + - vb + name: GetClipboardText() + nameWithType: MacOSClipboardComponent.GetClipboardText() + fullName: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.GetClipboardText() + type: Method + source: + remote: + path: src/OpenTK.Platform.Native/macOS/MacOSClipboardComponent.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: GetClipboardText + path: opentk/src/OpenTK.Platform.Native/macOS/MacOSClipboardComponent.cs + startLine: 164 + assemblies: + - OpenTK.Platform.Native + namespace: OpenTK.Platform.Native.macOS + summary: >- + Returns the string currently in the clipboard. + + This function returns null if the current clipboard data doesn't have the format. + example: [] + syntax: + content: public string? GetClipboardText() + return: + type: System.String + description: The string currently in the clipboard, or null. + content.vb: Public Function GetClipboardText() As String + overload: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.GetClipboardText* + implements: + - OpenTK.Core.Platform.IClipboardComponent.GetClipboardText +- uid: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.GetClipboardAudio + commentId: M:OpenTK.Platform.Native.macOS.MacOSClipboardComponent.GetClipboardAudio + id: GetClipboardAudio + parent: OpenTK.Platform.Native.macOS.MacOSClipboardComponent + langs: + - csharp + - vb + name: GetClipboardAudio() + nameWithType: MacOSClipboardComponent.GetClipboardAudio() + fullName: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.GetClipboardAudio() + type: Method + source: + remote: + path: src/OpenTK.Platform.Native/macOS/MacOSClipboardComponent.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: GetClipboardAudio + path: opentk/src/OpenTK.Platform.Native/macOS/MacOSClipboardComponent.cs + startLine: 176 + assemblies: + - OpenTK.Platform.Native + namespace: OpenTK.Platform.Native.macOS + summary: >- + Gets the audio data currently in the clipboard. + + This function returns null if the current clipboard data doesn't have the format. + example: [] + syntax: + content: public AudioData? GetClipboardAudio() + return: + type: OpenTK.Core.Platform.AudioData + description: The audio data currently in the clipboard. + content.vb: Public Function GetClipboardAudio() As AudioData + overload: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.GetClipboardAudio* + implements: + - OpenTK.Core.Platform.IClipboardComponent.GetClipboardAudio +- uid: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.SetClipboardBitmap(OpenTK.Core.Platform.Bitmap) + commentId: M:OpenTK.Platform.Native.macOS.MacOSClipboardComponent.SetClipboardBitmap(OpenTK.Core.Platform.Bitmap) + id: SetClipboardBitmap(OpenTK.Core.Platform.Bitmap) + parent: OpenTK.Platform.Native.macOS.MacOSClipboardComponent + langs: + - csharp + - vb + name: SetClipboardBitmap(Bitmap) + nameWithType: MacOSClipboardComponent.SetClipboardBitmap(Bitmap) + fullName: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.SetClipboardBitmap(OpenTK.Core.Platform.Bitmap) + type: Method + source: + remote: + path: src/OpenTK.Platform.Native/macOS/MacOSClipboardComponent.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: SetClipboardBitmap + path: opentk/src/OpenTK.Platform.Native/macOS/MacOSClipboardComponent.cs + startLine: 191 + assemblies: + - OpenTK.Platform.Native + namespace: OpenTK.Platform.Native.macOS + summary: Writes a bitmap to the clipboard. + example: [] + syntax: + content: public void SetClipboardBitmap(Bitmap bitmap) + parameters: + - id: bitmap + type: OpenTK.Core.Platform.Bitmap + description: The bitmap to write to the clipboard. + content.vb: Public Sub SetClipboardBitmap(bitmap As Bitmap) + overload: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.SetClipboardBitmap* +- uid: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.GetClipboardBitmap + commentId: M:OpenTK.Platform.Native.macOS.MacOSClipboardComponent.GetClipboardBitmap + id: GetClipboardBitmap + parent: OpenTK.Platform.Native.macOS.MacOSClipboardComponent + langs: + - csharp + - vb + name: GetClipboardBitmap() + nameWithType: MacOSClipboardComponent.GetClipboardBitmap() + fullName: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.GetClipboardBitmap() + type: Method + source: + remote: + path: src/OpenTK.Platform.Native/macOS/MacOSClipboardComponent.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: GetClipboardBitmap + path: opentk/src/OpenTK.Platform.Native/macOS/MacOSClipboardComponent.cs + startLine: 246 + assemblies: + - OpenTK.Platform.Native + namespace: OpenTK.Platform.Native.macOS + summary: >- + Gets the bitmap currently in the clipboard. + + This function returns null if the current clipboard data doesn't have the format. + example: [] + syntax: + content: public Bitmap? GetClipboardBitmap() + return: + type: OpenTK.Core.Platform.Bitmap + description: The bitmap currently in the clipboard. + content.vb: Public Function GetClipboardBitmap() As Bitmap + overload: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.GetClipboardBitmap* + implements: + - OpenTK.Core.Platform.IClipboardComponent.GetClipboardBitmap +- uid: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.GetClipboardFiles + commentId: M:OpenTK.Platform.Native.macOS.MacOSClipboardComponent.GetClipboardFiles + id: GetClipboardFiles + parent: OpenTK.Platform.Native.macOS.MacOSClipboardComponent + langs: + - csharp + - vb + name: GetClipboardFiles() + nameWithType: MacOSClipboardComponent.GetClipboardFiles() + fullName: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.GetClipboardFiles() + type: Method + source: + remote: + path: src/OpenTK.Platform.Native/macOS/MacOSClipboardComponent.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: GetClipboardFiles + path: opentk/src/OpenTK.Platform.Native/macOS/MacOSClipboardComponent.cs + startLine: 291 + assemblies: + - OpenTK.Platform.Native + namespace: OpenTK.Platform.Native.macOS + summary: >- + Gets a list of files and directories currently in the clipboard. + + This function returns null if the current clipboard data doesn't have the format. + example: [] + syntax: + content: public List? GetClipboardFiles() + return: + type: System.Collections.Generic.List{System.String} + description: The list of files and directories currently in the clipboard. + content.vb: Public Function GetClipboardFiles() As List(Of String) + overload: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.GetClipboardFiles* + implements: + - OpenTK.Core.Platform.IClipboardComponent.GetClipboardFiles +references: +- uid: OpenTK.Platform.Native.macOS + commentId: N:OpenTK.Platform.Native.macOS + href: OpenTK.html + name: OpenTK.Platform.Native.macOS + nameWithType: OpenTK.Platform.Native.macOS + fullName: OpenTK.Platform.Native.macOS + spec.csharp: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Platform + name: Platform + href: OpenTK.Platform.html + - name: . + - uid: OpenTK.Platform.Native + name: Native + href: OpenTK.Platform.Native.html + - name: . + - uid: OpenTK.Platform.Native.macOS + name: macOS + href: OpenTK.Platform.Native.macOS.html + spec.vb: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Platform + name: Platform + href: OpenTK.Platform.html + - name: . + - uid: OpenTK.Platform.Native + name: Native + href: OpenTK.Platform.Native.html + - name: . + - uid: OpenTK.Platform.Native.macOS + name: macOS + href: OpenTK.Platform.Native.macOS.html +- uid: System.Object + commentId: T:System.Object + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + name: object + nameWithType: object + fullName: object + nameWithType.vb: Object + fullName.vb: Object + name.vb: Object +- uid: OpenTK.Core.Platform.IClipboardComponent + commentId: T:OpenTK.Core.Platform.IClipboardComponent + parent: OpenTK.Core.Platform + href: OpenTK.Core.Platform.IClipboardComponent.html + name: IClipboardComponent + nameWithType: IClipboardComponent + fullName: OpenTK.Core.Platform.IClipboardComponent +- uid: OpenTK.Core.Platform.IPalComponent + commentId: T:OpenTK.Core.Platform.IPalComponent + parent: OpenTK.Core.Platform + href: OpenTK.Core.Platform.IPalComponent.html + name: IPalComponent + nameWithType: IPalComponent + fullName: OpenTK.Core.Platform.IPalComponent +- uid: System.Object.Equals(System.Object) + commentId: M:System.Object.Equals(System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + name: Equals(object) + nameWithType: object.Equals(object) + fullName: object.Equals(object) + nameWithType.vb: Object.Equals(Object) + fullName.vb: Object.Equals(Object) + name.vb: Equals(Object) + spec.csharp: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.Equals(System.Object,System.Object) + commentId: M:System.Object.Equals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + name: Equals(object, object) + nameWithType: object.Equals(object, object) + fullName: object.Equals(object, object) + nameWithType.vb: Object.Equals(Object, Object) + fullName.vb: Object.Equals(Object, Object) + name.vb: Equals(Object, Object) + spec.csharp: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.GetHashCode + commentId: M:System.Object.GetHashCode + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + name: GetHashCode() + nameWithType: object.GetHashCode() + fullName: object.GetHashCode() + nameWithType.vb: Object.GetHashCode() + fullName.vb: Object.GetHashCode() + spec.csharp: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) +- uid: System.Object.GetType + commentId: M:System.Object.GetType + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + name: GetType() + nameWithType: object.GetType() + fullName: object.GetType() + nameWithType.vb: Object.GetType() + fullName.vb: Object.GetType() + spec.csharp: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) +- uid: System.Object.MemberwiseClone + commentId: M:System.Object.MemberwiseClone + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + name: MemberwiseClone() + nameWithType: object.MemberwiseClone() + fullName: object.MemberwiseClone() + nameWithType.vb: Object.MemberwiseClone() + fullName.vb: Object.MemberwiseClone() + spec.csharp: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) + spec.vb: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) +- uid: System.Object.ReferenceEquals(System.Object,System.Object) + commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + name: ReferenceEquals(object, object) + nameWithType: object.ReferenceEquals(object, object) + fullName: object.ReferenceEquals(object, object) + nameWithType.vb: Object.ReferenceEquals(Object, Object) + fullName.vb: Object.ReferenceEquals(Object, Object) + name.vb: ReferenceEquals(Object, Object) + spec.csharp: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.ToString + commentId: M:System.Object.ToString + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + name: ToString() + nameWithType: object.ToString() + fullName: object.ToString() + nameWithType.vb: Object.ToString() + fullName.vb: Object.ToString() + spec.csharp: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) + spec.vb: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) +- uid: System + commentId: N:System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System + nameWithType: System + fullName: System +- uid: OpenTK.Core.Platform + commentId: N:OpenTK.Core.Platform + href: OpenTK.html + name: OpenTK.Core.Platform + nameWithType: OpenTK.Core.Platform + fullName: OpenTK.Core.Platform + spec.csharp: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Core + name: Core + href: OpenTK.Core.html + - name: . + - uid: OpenTK.Core.Platform + name: Platform + href: OpenTK.Core.Platform.html + spec.vb: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Core + name: Core + href: OpenTK.Core.html + - name: . + - uid: OpenTK.Core.Platform + name: Platform + href: OpenTK.Core.Platform.html +- uid: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.Name* + commentId: Overload:OpenTK.Platform.Native.macOS.MacOSClipboardComponent.Name + href: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.html#OpenTK_Platform_Native_macOS_MacOSClipboardComponent_Name + name: Name + nameWithType: MacOSClipboardComponent.Name + fullName: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.Name +- uid: OpenTK.Core.Platform.IPalComponent.Name + commentId: P:OpenTK.Core.Platform.IPalComponent.Name + parent: OpenTK.Core.Platform.IPalComponent + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Name + name: Name + nameWithType: IPalComponent.Name + fullName: OpenTK.Core.Platform.IPalComponent.Name +- uid: System.String + commentId: T:System.String + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + name: string + nameWithType: string + fullName: string + nameWithType.vb: String + fullName.vb: String + name.vb: String +- uid: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.Provides* + commentId: Overload:OpenTK.Platform.Native.macOS.MacOSClipboardComponent.Provides + href: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.html#OpenTK_Platform_Native_macOS_MacOSClipboardComponent_Provides + name: Provides + nameWithType: MacOSClipboardComponent.Provides + fullName: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.Provides +- uid: OpenTK.Core.Platform.IPalComponent.Provides + commentId: P:OpenTK.Core.Platform.IPalComponent.Provides + parent: OpenTK.Core.Platform.IPalComponent + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Provides + name: Provides + nameWithType: IPalComponent.Provides + fullName: OpenTK.Core.Platform.IPalComponent.Provides +- uid: OpenTK.Core.Platform.PalComponents + commentId: T:OpenTK.Core.Platform.PalComponents + parent: OpenTK.Core.Platform + href: OpenTK.Core.Platform.PalComponents.html + name: PalComponents + nameWithType: PalComponents + fullName: OpenTK.Core.Platform.PalComponents +- uid: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.Logger* + commentId: Overload:OpenTK.Platform.Native.macOS.MacOSClipboardComponent.Logger + href: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.html#OpenTK_Platform_Native_macOS_MacOSClipboardComponent_Logger + name: Logger + nameWithType: MacOSClipboardComponent.Logger + fullName: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.Logger +- uid: OpenTK.Core.Platform.IPalComponent.Logger + commentId: P:OpenTK.Core.Platform.IPalComponent.Logger + parent: OpenTK.Core.Platform.IPalComponent + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Logger + name: Logger + nameWithType: IPalComponent.Logger + fullName: OpenTK.Core.Platform.IPalComponent.Logger +- uid: OpenTK.Core.Utility.ILogger + commentId: T:OpenTK.Core.Utility.ILogger + parent: OpenTK.Core.Utility + href: OpenTK.Core.Utility.ILogger.html + name: ILogger + nameWithType: ILogger + fullName: OpenTK.Core.Utility.ILogger +- uid: OpenTK.Core.Utility + commentId: N:OpenTK.Core.Utility + href: OpenTK.html + name: OpenTK.Core.Utility + nameWithType: OpenTK.Core.Utility + fullName: OpenTK.Core.Utility + spec.csharp: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Core + name: Core + href: OpenTK.Core.html + - name: . + - uid: OpenTK.Core.Utility + name: Utility + href: OpenTK.Core.Utility.html + spec.vb: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Core + name: Core + href: OpenTK.Core.html + - name: . + - uid: OpenTK.Core.Utility + name: Utility + href: OpenTK.Core.Utility.html +- uid: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.Initialize* + commentId: Overload:OpenTK.Platform.Native.macOS.MacOSClipboardComponent.Initialize + href: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.html#OpenTK_Platform_Native_macOS_MacOSClipboardComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + name: Initialize + nameWithType: MacOSClipboardComponent.Initialize + fullName: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.Initialize +- uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + commentId: M:OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + parent: OpenTK.Core.Platform.IPalComponent + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + name: Initialize(ToolkitOptions) + nameWithType: IPalComponent.Initialize(ToolkitOptions) + fullName: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + spec.csharp: + - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + name: Initialize + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + - name: ( + - uid: OpenTK.Core.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Core.Platform.ToolkitOptions.html + - name: ) + spec.vb: + - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + name: Initialize + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + - name: ( + - uid: OpenTK.Core.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Core.Platform.ToolkitOptions.html + - name: ) +- uid: OpenTK.Core.Platform.ToolkitOptions + commentId: T:OpenTK.Core.Platform.ToolkitOptions + parent: OpenTK.Core.Platform + href: OpenTK.Core.Platform.ToolkitOptions.html + name: ToolkitOptions + nameWithType: ToolkitOptions + fullName: OpenTK.Core.Platform.ToolkitOptions +- uid: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.CheckClipboardUpdate* + commentId: Overload:OpenTK.Platform.Native.macOS.MacOSClipboardComponent.CheckClipboardUpdate + href: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.html#OpenTK_Platform_Native_macOS_MacOSClipboardComponent_CheckClipboardUpdate + name: CheckClipboardUpdate + nameWithType: MacOSClipboardComponent.CheckClipboardUpdate + fullName: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.CheckClipboardUpdate +- uid: System.Boolean + commentId: T:System.Boolean + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + name: bool + nameWithType: bool + fullName: bool + nameWithType.vb: Boolean + fullName.vb: Boolean + name.vb: Boolean +- uid: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.SupportedFormats* + commentId: Overload:OpenTK.Platform.Native.macOS.MacOSClipboardComponent.SupportedFormats + href: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.html#OpenTK_Platform_Native_macOS_MacOSClipboardComponent_SupportedFormats + name: SupportedFormats + nameWithType: MacOSClipboardComponent.SupportedFormats + fullName: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.SupportedFormats +- uid: OpenTK.Core.Platform.IClipboardComponent.SupportedFormats + commentId: P:OpenTK.Core.Platform.IClipboardComponent.SupportedFormats + parent: OpenTK.Core.Platform.IClipboardComponent + href: OpenTK.Core.Platform.IClipboardComponent.html#OpenTK_Core_Platform_IClipboardComponent_SupportedFormats + name: SupportedFormats + nameWithType: IClipboardComponent.SupportedFormats + fullName: OpenTK.Core.Platform.IClipboardComponent.SupportedFormats +- uid: System.Collections.Generic.IReadOnlyList{OpenTK.Core.Platform.ClipboardFormat} + commentId: T:System.Collections.Generic.IReadOnlyList{OpenTK.Core.Platform.ClipboardFormat} + parent: System.Collections.Generic + definition: System.Collections.Generic.IReadOnlyList`1 + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 + name: IReadOnlyList + nameWithType: IReadOnlyList + fullName: System.Collections.Generic.IReadOnlyList + nameWithType.vb: IReadOnlyList(Of ClipboardFormat) + fullName.vb: System.Collections.Generic.IReadOnlyList(Of OpenTK.Core.Platform.ClipboardFormat) + name.vb: IReadOnlyList(Of ClipboardFormat) + spec.csharp: + - uid: System.Collections.Generic.IReadOnlyList`1 + name: IReadOnlyList + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 + - name: < + - uid: OpenTK.Core.Platform.ClipboardFormat + name: ClipboardFormat + href: OpenTK.Core.Platform.ClipboardFormat.html + - name: '>' + spec.vb: + - uid: System.Collections.Generic.IReadOnlyList`1 + name: IReadOnlyList + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 + - name: ( + - name: Of + - name: " " + - uid: OpenTK.Core.Platform.ClipboardFormat + name: ClipboardFormat + href: OpenTK.Core.Platform.ClipboardFormat.html + - name: ) +- uid: System.Collections.Generic.IReadOnlyList`1 + commentId: T:System.Collections.Generic.IReadOnlyList`1 + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 + name: IReadOnlyList + nameWithType: IReadOnlyList + fullName: System.Collections.Generic.IReadOnlyList + nameWithType.vb: IReadOnlyList(Of T) + fullName.vb: System.Collections.Generic.IReadOnlyList(Of T) + name.vb: IReadOnlyList(Of T) + spec.csharp: + - uid: System.Collections.Generic.IReadOnlyList`1 + name: IReadOnlyList + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 + - name: < + - name: T + - name: '>' + spec.vb: + - uid: System.Collections.Generic.IReadOnlyList`1 + name: IReadOnlyList + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 + - name: ( + - name: Of + - name: " " + - name: T + - name: ) +- uid: System.Collections.Generic + commentId: N:System.Collections.Generic + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System.Collections.Generic + nameWithType: System.Collections.Generic + fullName: System.Collections.Generic + spec.csharp: + - uid: System + name: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + - name: . + - uid: System.Collections + name: Collections + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections + - name: . + - uid: System.Collections.Generic + name: Generic + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic + spec.vb: + - uid: System + name: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + - name: . + - uid: System.Collections + name: Collections + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections + - name: . + - uid: System.Collections.Generic + name: Generic + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic +- uid: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.GetClipboardFormat* + commentId: Overload:OpenTK.Platform.Native.macOS.MacOSClipboardComponent.GetClipboardFormat + href: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.html#OpenTK_Platform_Native_macOS_MacOSClipboardComponent_GetClipboardFormat + name: GetClipboardFormat + nameWithType: MacOSClipboardComponent.GetClipboardFormat + fullName: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.GetClipboardFormat +- uid: OpenTK.Core.Platform.IClipboardComponent.GetClipboardFormat + commentId: M:OpenTK.Core.Platform.IClipboardComponent.GetClipboardFormat + parent: OpenTK.Core.Platform.IClipboardComponent + href: OpenTK.Core.Platform.IClipboardComponent.html#OpenTK_Core_Platform_IClipboardComponent_GetClipboardFormat + name: GetClipboardFormat() + nameWithType: IClipboardComponent.GetClipboardFormat() + fullName: OpenTK.Core.Platform.IClipboardComponent.GetClipboardFormat() + spec.csharp: + - uid: OpenTK.Core.Platform.IClipboardComponent.GetClipboardFormat + name: GetClipboardFormat + href: OpenTK.Core.Platform.IClipboardComponent.html#OpenTK_Core_Platform_IClipboardComponent_GetClipboardFormat + - name: ( + - name: ) + spec.vb: + - uid: OpenTK.Core.Platform.IClipboardComponent.GetClipboardFormat + name: GetClipboardFormat + href: OpenTK.Core.Platform.IClipboardComponent.html#OpenTK_Core_Platform_IClipboardComponent_GetClipboardFormat + - name: ( + - name: ) +- uid: OpenTK.Core.Platform.ClipboardFormat + commentId: T:OpenTK.Core.Platform.ClipboardFormat + parent: OpenTK.Core.Platform + href: OpenTK.Core.Platform.ClipboardFormat.html + name: ClipboardFormat + nameWithType: ClipboardFormat + fullName: OpenTK.Core.Platform.ClipboardFormat +- uid: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.SetClipboardText* + commentId: Overload:OpenTK.Platform.Native.macOS.MacOSClipboardComponent.SetClipboardText + href: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.html#OpenTK_Platform_Native_macOS_MacOSClipboardComponent_SetClipboardText_System_String_ + name: SetClipboardText + nameWithType: MacOSClipboardComponent.SetClipboardText + fullName: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.SetClipboardText +- uid: OpenTK.Core.Platform.IClipboardComponent.SetClipboardText(System.String) + commentId: M:OpenTK.Core.Platform.IClipboardComponent.SetClipboardText(System.String) + parent: OpenTK.Core.Platform.IClipboardComponent + isExternal: true + href: OpenTK.Core.Platform.IClipboardComponent.html#OpenTK_Core_Platform_IClipboardComponent_SetClipboardText_System_String_ + name: SetClipboardText(string) + nameWithType: IClipboardComponent.SetClipboardText(string) + fullName: OpenTK.Core.Platform.IClipboardComponent.SetClipboardText(string) + nameWithType.vb: IClipboardComponent.SetClipboardText(String) + fullName.vb: OpenTK.Core.Platform.IClipboardComponent.SetClipboardText(String) + name.vb: SetClipboardText(String) + spec.csharp: + - uid: OpenTK.Core.Platform.IClipboardComponent.SetClipboardText(System.String) + name: SetClipboardText + href: OpenTK.Core.Platform.IClipboardComponent.html#OpenTK_Core_Platform_IClipboardComponent_SetClipboardText_System_String_ + - name: ( + - uid: System.String + name: string + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ) + spec.vb: + - uid: OpenTK.Core.Platform.IClipboardComponent.SetClipboardText(System.String) + name: SetClipboardText + href: OpenTK.Core.Platform.IClipboardComponent.html#OpenTK_Core_Platform_IClipboardComponent_SetClipboardText_System_String_ + - name: ( + - uid: System.String + name: String + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ) +- uid: OpenTK.Core.Platform.ClipboardFormat.Text + commentId: F:OpenTK.Core.Platform.ClipboardFormat.Text + href: OpenTK.Core.Platform.ClipboardFormat.html#OpenTK_Core_Platform_ClipboardFormat_Text + name: Text + nameWithType: ClipboardFormat.Text + fullName: OpenTK.Core.Platform.ClipboardFormat.Text +- uid: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.GetClipboardText* + commentId: Overload:OpenTK.Platform.Native.macOS.MacOSClipboardComponent.GetClipboardText + href: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.html#OpenTK_Platform_Native_macOS_MacOSClipboardComponent_GetClipboardText + name: GetClipboardText + nameWithType: MacOSClipboardComponent.GetClipboardText + fullName: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.GetClipboardText +- uid: OpenTK.Core.Platform.IClipboardComponent.GetClipboardText + commentId: M:OpenTK.Core.Platform.IClipboardComponent.GetClipboardText + parent: OpenTK.Core.Platform.IClipboardComponent + href: OpenTK.Core.Platform.IClipboardComponent.html#OpenTK_Core_Platform_IClipboardComponent_GetClipboardText + name: GetClipboardText() + nameWithType: IClipboardComponent.GetClipboardText() + fullName: OpenTK.Core.Platform.IClipboardComponent.GetClipboardText() + spec.csharp: + - uid: OpenTK.Core.Platform.IClipboardComponent.GetClipboardText + name: GetClipboardText + href: OpenTK.Core.Platform.IClipboardComponent.html#OpenTK_Core_Platform_IClipboardComponent_GetClipboardText + - name: ( + - name: ) + spec.vb: + - uid: OpenTK.Core.Platform.IClipboardComponent.GetClipboardText + name: GetClipboardText + href: OpenTK.Core.Platform.IClipboardComponent.html#OpenTK_Core_Platform_IClipboardComponent_GetClipboardText + - name: ( + - name: ) +- uid: OpenTK.Core.Platform.ClipboardFormat.Audio + commentId: F:OpenTK.Core.Platform.ClipboardFormat.Audio + href: OpenTK.Core.Platform.ClipboardFormat.html#OpenTK_Core_Platform_ClipboardFormat_Audio + name: Audio + nameWithType: ClipboardFormat.Audio + fullName: OpenTK.Core.Platform.ClipboardFormat.Audio +- uid: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.GetClipboardAudio* + commentId: Overload:OpenTK.Platform.Native.macOS.MacOSClipboardComponent.GetClipboardAudio + href: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.html#OpenTK_Platform_Native_macOS_MacOSClipboardComponent_GetClipboardAudio + name: GetClipboardAudio + nameWithType: MacOSClipboardComponent.GetClipboardAudio + fullName: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.GetClipboardAudio +- uid: OpenTK.Core.Platform.IClipboardComponent.GetClipboardAudio + commentId: M:OpenTK.Core.Platform.IClipboardComponent.GetClipboardAudio + parent: OpenTK.Core.Platform.IClipboardComponent + href: OpenTK.Core.Platform.IClipboardComponent.html#OpenTK_Core_Platform_IClipboardComponent_GetClipboardAudio + name: GetClipboardAudio() + nameWithType: IClipboardComponent.GetClipboardAudio() + fullName: OpenTK.Core.Platform.IClipboardComponent.GetClipboardAudio() + spec.csharp: + - uid: OpenTK.Core.Platform.IClipboardComponent.GetClipboardAudio + name: GetClipboardAudio + href: OpenTK.Core.Platform.IClipboardComponent.html#OpenTK_Core_Platform_IClipboardComponent_GetClipboardAudio + - name: ( + - name: ) + spec.vb: + - uid: OpenTK.Core.Platform.IClipboardComponent.GetClipboardAudio + name: GetClipboardAudio + href: OpenTK.Core.Platform.IClipboardComponent.html#OpenTK_Core_Platform_IClipboardComponent_GetClipboardAudio + - name: ( + - name: ) +- uid: OpenTK.Core.Platform.AudioData + commentId: T:OpenTK.Core.Platform.AudioData + parent: OpenTK.Core.Platform + href: OpenTK.Core.Platform.AudioData.html + name: AudioData + nameWithType: AudioData + fullName: OpenTK.Core.Platform.AudioData +- uid: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.SetClipboardBitmap* + commentId: Overload:OpenTK.Platform.Native.macOS.MacOSClipboardComponent.SetClipboardBitmap + href: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.html#OpenTK_Platform_Native_macOS_MacOSClipboardComponent_SetClipboardBitmap_OpenTK_Core_Platform_Bitmap_ + name: SetClipboardBitmap + nameWithType: MacOSClipboardComponent.SetClipboardBitmap + fullName: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.SetClipboardBitmap +- uid: OpenTK.Core.Platform.Bitmap + commentId: T:OpenTK.Core.Platform.Bitmap + parent: OpenTK.Core.Platform + href: OpenTK.Core.Platform.Bitmap.html + name: Bitmap + nameWithType: Bitmap + fullName: OpenTK.Core.Platform.Bitmap +- uid: OpenTK.Core.Platform.ClipboardFormat.Bitmap + commentId: F:OpenTK.Core.Platform.ClipboardFormat.Bitmap + href: OpenTK.Core.Platform.ClipboardFormat.html#OpenTK_Core_Platform_ClipboardFormat_Bitmap + name: Bitmap + nameWithType: ClipboardFormat.Bitmap + fullName: OpenTK.Core.Platform.ClipboardFormat.Bitmap +- uid: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.GetClipboardBitmap* + commentId: Overload:OpenTK.Platform.Native.macOS.MacOSClipboardComponent.GetClipboardBitmap + href: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.html#OpenTK_Platform_Native_macOS_MacOSClipboardComponent_GetClipboardBitmap + name: GetClipboardBitmap + nameWithType: MacOSClipboardComponent.GetClipboardBitmap + fullName: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.GetClipboardBitmap +- uid: OpenTK.Core.Platform.IClipboardComponent.GetClipboardBitmap + commentId: M:OpenTK.Core.Platform.IClipboardComponent.GetClipboardBitmap + parent: OpenTK.Core.Platform.IClipboardComponent + href: OpenTK.Core.Platform.IClipboardComponent.html#OpenTK_Core_Platform_IClipboardComponent_GetClipboardBitmap + name: GetClipboardBitmap() + nameWithType: IClipboardComponent.GetClipboardBitmap() + fullName: OpenTK.Core.Platform.IClipboardComponent.GetClipboardBitmap() + spec.csharp: + - uid: OpenTK.Core.Platform.IClipboardComponent.GetClipboardBitmap + name: GetClipboardBitmap + href: OpenTK.Core.Platform.IClipboardComponent.html#OpenTK_Core_Platform_IClipboardComponent_GetClipboardBitmap + - name: ( + - name: ) + spec.vb: + - uid: OpenTK.Core.Platform.IClipboardComponent.GetClipboardBitmap + name: GetClipboardBitmap + href: OpenTK.Core.Platform.IClipboardComponent.html#OpenTK_Core_Platform_IClipboardComponent_GetClipboardBitmap + - name: ( + - name: ) +- uid: OpenTK.Core.Platform.ClipboardFormat.Files + commentId: F:OpenTK.Core.Platform.ClipboardFormat.Files + href: OpenTK.Core.Platform.ClipboardFormat.html#OpenTK_Core_Platform_ClipboardFormat_Files + name: Files + nameWithType: ClipboardFormat.Files + fullName: OpenTK.Core.Platform.ClipboardFormat.Files +- uid: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.GetClipboardFiles* + commentId: Overload:OpenTK.Platform.Native.macOS.MacOSClipboardComponent.GetClipboardFiles + href: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.html#OpenTK_Platform_Native_macOS_MacOSClipboardComponent_GetClipboardFiles + name: GetClipboardFiles + nameWithType: MacOSClipboardComponent.GetClipboardFiles + fullName: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.GetClipboardFiles +- uid: OpenTK.Core.Platform.IClipboardComponent.GetClipboardFiles + commentId: M:OpenTK.Core.Platform.IClipboardComponent.GetClipboardFiles + parent: OpenTK.Core.Platform.IClipboardComponent + href: OpenTK.Core.Platform.IClipboardComponent.html#OpenTK_Core_Platform_IClipboardComponent_GetClipboardFiles + name: GetClipboardFiles() + nameWithType: IClipboardComponent.GetClipboardFiles() + fullName: OpenTK.Core.Platform.IClipboardComponent.GetClipboardFiles() + spec.csharp: + - uid: OpenTK.Core.Platform.IClipboardComponent.GetClipboardFiles + name: GetClipboardFiles + href: OpenTK.Core.Platform.IClipboardComponent.html#OpenTK_Core_Platform_IClipboardComponent_GetClipboardFiles + - name: ( + - name: ) + spec.vb: + - uid: OpenTK.Core.Platform.IClipboardComponent.GetClipboardFiles + name: GetClipboardFiles + href: OpenTK.Core.Platform.IClipboardComponent.html#OpenTK_Core_Platform_IClipboardComponent_GetClipboardFiles + - name: ( + - name: ) +- uid: System.Collections.Generic.List{System.String} + commentId: T:System.Collections.Generic.List{System.String} + parent: System.Collections.Generic + definition: System.Collections.Generic.List`1 + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 + name: List + nameWithType: List + fullName: System.Collections.Generic.List + nameWithType.vb: List(Of String) + fullName.vb: System.Collections.Generic.List(Of String) + name.vb: List(Of String) + spec.csharp: + - uid: System.Collections.Generic.List`1 + name: List + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 + - name: < + - uid: System.String + name: string + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: '>' + spec.vb: + - uid: System.Collections.Generic.List`1 + name: List + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 + - name: ( + - name: Of + - name: " " + - uid: System.String + name: String + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ) +- uid: System.Collections.Generic.List`1 + commentId: T:System.Collections.Generic.List`1 + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 + name: List + nameWithType: List + fullName: System.Collections.Generic.List + nameWithType.vb: List(Of T) + fullName.vb: System.Collections.Generic.List(Of T) + name.vb: List(Of T) + spec.csharp: + - uid: System.Collections.Generic.List`1 + name: List + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 + - name: < + - name: T + - name: '>' + spec.vb: + - uid: System.Collections.Generic.List`1 + name: List + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 + - name: ( + - name: Of + - name: " " + - name: T + - name: ) diff --git a/api/OpenTK.Platform.Native.macOS.MacOSCursorComponent.Frame.yml b/api/OpenTK.Platform.Native.macOS.MacOSCursorComponent.Frame.yml index daeb0eeb..8159edb1 100644 --- a/api/OpenTK.Platform.Native.macOS.MacOSCursorComponent.Frame.yml +++ b/api/OpenTK.Platform.Native.macOS.MacOSCursorComponent.Frame.yml @@ -27,7 +27,7 @@ items: repo: https://github.com/opentk/opentk.git id: Frame path: opentk/src/OpenTK.Platform.Native/macOS/MacOSCursorComponent.cs - startLine: 385 + startLine: 422 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.macOS @@ -59,7 +59,7 @@ items: repo: https://github.com/opentk/opentk.git id: ResX path: opentk/src/OpenTK.Platform.Native/macOS/MacOSCursorComponent.cs - startLine: 387 + startLine: 424 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.macOS @@ -86,7 +86,7 @@ items: repo: https://github.com/opentk/opentk.git id: ResY path: opentk/src/OpenTK.Platform.Native/macOS/MacOSCursorComponent.cs - startLine: 388 + startLine: 425 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.macOS @@ -113,7 +113,7 @@ items: repo: https://github.com/opentk/opentk.git id: Width path: opentk/src/OpenTK.Platform.Native/macOS/MacOSCursorComponent.cs - startLine: 389 + startLine: 426 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.macOS @@ -140,7 +140,7 @@ items: repo: https://github.com/opentk/opentk.git id: Height path: opentk/src/OpenTK.Platform.Native/macOS/MacOSCursorComponent.cs - startLine: 390 + startLine: 427 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.macOS @@ -167,7 +167,7 @@ items: repo: https://github.com/opentk/opentk.git id: HotspotX path: opentk/src/OpenTK.Platform.Native/macOS/MacOSCursorComponent.cs - startLine: 391 + startLine: 428 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.macOS @@ -194,7 +194,7 @@ items: repo: https://github.com/opentk/opentk.git id: HotspotY path: opentk/src/OpenTK.Platform.Native/macOS/MacOSCursorComponent.cs - startLine: 392 + startLine: 429 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.macOS @@ -221,7 +221,7 @@ items: repo: https://github.com/opentk/opentk.git id: Image path: opentk/src/OpenTK.Platform.Native/macOS/MacOSCursorComponent.cs - startLine: 393 + startLine: 430 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.macOS @@ -248,7 +248,7 @@ items: repo: https://github.com/opentk/opentk.git id: .ctor path: opentk/src/OpenTK.Platform.Native/macOS/MacOSCursorComponent.cs - startLine: 395 + startLine: 432 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.macOS diff --git a/api/OpenTK.Platform.Native.macOS.MacOSCursorComponent.yml b/api/OpenTK.Platform.Native.macOS.MacOSCursorComponent.yml index 7bc04b67..529ae0f1 100644 --- a/api/OpenTK.Platform.Native.macOS.MacOSCursorComponent.yml +++ b/api/OpenTK.Platform.Native.macOS.MacOSCursorComponent.yml @@ -14,7 +14,7 @@ items: - OpenTK.Platform.Native.macOS.MacOSCursorComponent.Destroy(OpenTK.Core.Platform.CursorHandle) - OpenTK.Platform.Native.macOS.MacOSCursorComponent.GetHotspot(OpenTK.Core.Platform.CursorHandle,System.Int32@,System.Int32@) - OpenTK.Platform.Native.macOS.MacOSCursorComponent.GetSize(OpenTK.Core.Platform.CursorHandle,System.Int32@,System.Int32@) - - OpenTK.Platform.Native.macOS.MacOSCursorComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - OpenTK.Platform.Native.macOS.MacOSCursorComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - OpenTK.Platform.Native.macOS.MacOSCursorComponent.IsAnimatedCursor(OpenTK.Core.Platform.CursorHandle) - OpenTK.Platform.Native.macOS.MacOSCursorComponent.IsSystemCursor(OpenTK.Core.Platform.CursorHandle) - OpenTK.Platform.Native.macOS.MacOSCursorComponent.Logger @@ -73,7 +73,7 @@ items: repo: https://github.com/opentk/opentk.git id: Name path: opentk/src/OpenTK.Platform.Native/macOS/MacOSCursorComponent.cs - startLine: 70 + startLine: 75 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.macOS @@ -106,7 +106,7 @@ items: repo: https://github.com/opentk/opentk.git id: Provides path: opentk/src/OpenTK.Platform.Native/macOS/MacOSCursorComponent.cs - startLine: 73 + startLine: 78 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.macOS @@ -139,7 +139,7 @@ items: repo: https://github.com/opentk/opentk.git id: Logger path: opentk/src/OpenTK.Platform.Native/macOS/MacOSCursorComponent.cs - startLine: 76 + startLine: 81 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.macOS @@ -154,16 +154,16 @@ items: overload: OpenTK.Platform.Native.macOS.MacOSCursorComponent.Logger* implements: - OpenTK.Core.Platform.IPalComponent.Logger -- uid: OpenTK.Platform.Native.macOS.MacOSCursorComponent.Initialize(OpenTK.Core.Platform.PalComponents) - commentId: M:OpenTK.Platform.Native.macOS.MacOSCursorComponent.Initialize(OpenTK.Core.Platform.PalComponents) - id: Initialize(OpenTK.Core.Platform.PalComponents) +- uid: OpenTK.Platform.Native.macOS.MacOSCursorComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Native.macOS.MacOSCursorComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + id: Initialize(OpenTK.Core.Platform.ToolkitOptions) parent: OpenTK.Platform.Native.macOS.MacOSCursorComponent langs: - csharp - vb - name: Initialize(PalComponents) - nameWithType: MacOSCursorComponent.Initialize(PalComponents) - fullName: OpenTK.Platform.Native.macOS.MacOSCursorComponent.Initialize(OpenTK.Core.Platform.PalComponents) + name: Initialize(ToolkitOptions) + nameWithType: MacOSCursorComponent.Initialize(ToolkitOptions) + fullName: OpenTK.Platform.Native.macOS.MacOSCursorComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) type: Method source: remote: @@ -172,22 +172,22 @@ items: repo: https://github.com/opentk/opentk.git id: Initialize path: opentk/src/OpenTK.Platform.Native/macOS/MacOSCursorComponent.cs - startLine: 79 + startLine: 84 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.macOS - summary: Initialize the driver. + summary: Initialize the component. example: [] syntax: - content: public void Initialize(PalComponents which) + content: public void Initialize(ToolkitOptions options) parameters: - - id: which - type: OpenTK.Core.Platform.PalComponents - description: Bitfield of which components the driver need to be initialized. - content.vb: Public Sub Initialize(which As PalComponents) + - id: options + type: OpenTK.Core.Platform.ToolkitOptions + description: The options to initialize the component with. + content.vb: Public Sub Initialize(options As ToolkitOptions) overload: OpenTK.Platform.Native.macOS.MacOSCursorComponent.Initialize* implements: - - OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - uid: OpenTK.Platform.Native.macOS.MacOSCursorComponent.CanLoadSystemCursors commentId: P:OpenTK.Platform.Native.macOS.MacOSCursorComponent.CanLoadSystemCursors id: CanLoadSystemCursors @@ -206,7 +206,7 @@ items: repo: https://github.com/opentk/opentk.git id: CanLoadSystemCursors path: opentk/src/OpenTK.Platform.Native/macOS/MacOSCursorComponent.cs - startLine: 88 + startLine: 89 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.macOS @@ -242,7 +242,7 @@ items: repo: https://github.com/opentk/opentk.git id: CanInspectSystemCursors path: opentk/src/OpenTK.Platform.Native/macOS/MacOSCursorComponent.cs - startLine: 91 + startLine: 92 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.macOS @@ -285,7 +285,7 @@ items: repo: https://github.com/opentk/opentk.git id: Create path: opentk/src/OpenTK.Platform.Native/macOS/MacOSCursorComponent.cs - startLine: 200 + startLine: 237 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.macOS @@ -330,7 +330,7 @@ items: repo: https://github.com/opentk/opentk.git id: Create path: opentk/src/OpenTK.Platform.Native/macOS/MacOSCursorComponent.cs - startLine: 359 + startLine: 396 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.macOS @@ -389,7 +389,7 @@ items: repo: https://github.com/opentk/opentk.git id: Create path: opentk/src/OpenTK.Platform.Native/macOS/MacOSCursorComponent.cs - startLine: 369 + startLine: 406 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.macOS @@ -451,7 +451,7 @@ items: repo: https://github.com/opentk/opentk.git id: Create path: opentk/src/OpenTK.Platform.Native/macOS/MacOSCursorComponent.cs - startLine: 411 + startLine: 448 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.macOS @@ -492,7 +492,7 @@ items: repo: https://github.com/opentk/opentk.git id: Destroy path: opentk/src/OpenTK.Platform.Native/macOS/MacOSCursorComponent.cs - startLine: 426 + startLine: 463 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.macOS @@ -530,7 +530,7 @@ items: repo: https://github.com/opentk/opentk.git id: IsSystemCursor path: opentk/src/OpenTK.Platform.Native/macOS/MacOSCursorComponent.cs - startLine: 455 + startLine: 492 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.macOS @@ -570,7 +570,7 @@ items: repo: https://github.com/opentk/opentk.git id: IsAnimatedCursor path: opentk/src/OpenTK.Platform.Native/macOS/MacOSCursorComponent.cs - startLine: 475 + startLine: 512 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.macOS @@ -605,7 +605,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetSize path: opentk/src/OpenTK.Platform.Native/macOS/MacOSCursorComponent.cs - startLine: 491 + startLine: 528 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.macOS @@ -658,7 +658,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetHotspot path: opentk/src/OpenTK.Platform.Native/macOS/MacOSCursorComponent.cs - startLine: 545 + startLine: 582 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.macOS @@ -714,7 +714,7 @@ items: repo: https://github.com/opentk/opentk.git id: UpdateAnimation path: opentk/src/OpenTK.Platform.Native/macOS/MacOSCursorComponent.cs - startLine: 574 + startLine: 611 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.macOS @@ -1158,35 +1158,42 @@ references: href: OpenTK.Core.Utility.html - uid: OpenTK.Platform.Native.macOS.MacOSCursorComponent.Initialize* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSCursorComponent.Initialize - href: OpenTK.Platform.Native.macOS.MacOSCursorComponent.html#OpenTK_Platform_Native_macOS_MacOSCursorComponent_Initialize_OpenTK_Core_Platform_PalComponents_ + href: OpenTK.Platform.Native.macOS.MacOSCursorComponent.html#OpenTK_Platform_Native_macOS_MacOSCursorComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ name: Initialize nameWithType: MacOSCursorComponent.Initialize fullName: OpenTK.Platform.Native.macOS.MacOSCursorComponent.Initialize -- uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) - commentId: M:OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) +- uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + commentId: M:OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_PalComponents_ - name: Initialize(PalComponents) - nameWithType: IPalComponent.Initialize(PalComponents) - fullName: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + name: Initialize(ToolkitOptions) + nameWithType: IPalComponent.Initialize(ToolkitOptions) + fullName: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) spec.csharp: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_PalComponents_ + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.PalComponents - name: PalComponents - href: OpenTK.Core.Platform.PalComponents.html + - uid: OpenTK.Core.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Core.Platform.ToolkitOptions.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_PalComponents_ + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.PalComponents - name: PalComponents - href: OpenTK.Core.Platform.PalComponents.html + - uid: OpenTK.Core.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Core.Platform.ToolkitOptions.html - name: ) +- uid: OpenTK.Core.Platform.ToolkitOptions + commentId: T:OpenTK.Core.Platform.ToolkitOptions + parent: OpenTK.Core.Platform + href: OpenTK.Core.Platform.ToolkitOptions.html + name: ToolkitOptions + nameWithType: ToolkitOptions + fullName: OpenTK.Core.Platform.ToolkitOptions - uid: OpenTK.Core.Platform.ICursorComponent.Create(OpenTK.Core.Platform.SystemCursorType) commentId: M:OpenTK.Core.Platform.ICursorComponent.Create(OpenTK.Core.Platform.SystemCursorType) parent: OpenTK.Core.Platform.ICursorComponent diff --git a/api/OpenTK.Platform.Native.macOS.MacOSDialogComponent.yml b/api/OpenTK.Platform.Native.macOS.MacOSDialogComponent.yml new file mode 100644 index 00000000..bfd1b14e --- /dev/null +++ b/api/OpenTK.Platform.Native.macOS.MacOSDialogComponent.yml @@ -0,0 +1,1097 @@ +### YamlMime:ManagedReference +items: +- uid: OpenTK.Platform.Native.macOS.MacOSDialogComponent + commentId: T:OpenTK.Platform.Native.macOS.MacOSDialogComponent + id: MacOSDialogComponent + parent: OpenTK.Platform.Native.macOS + children: + - OpenTK.Platform.Native.macOS.MacOSDialogComponent.CanTargetFolders + - OpenTK.Platform.Native.macOS.MacOSDialogComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + - OpenTK.Platform.Native.macOS.MacOSDialogComponent.Logger + - OpenTK.Platform.Native.macOS.MacOSDialogComponent.Name + - OpenTK.Platform.Native.macOS.MacOSDialogComponent.Provides + - OpenTK.Platform.Native.macOS.MacOSDialogComponent.ShowOpenDialog(OpenTK.Core.Platform.WindowHandle,System.String,System.String,OpenTK.Core.Platform.DialogFileFilter[],OpenTK.Core.Platform.OpenDialogOptions) + - OpenTK.Platform.Native.macOS.MacOSDialogComponent.ShowSaveDialog(OpenTK.Core.Platform.WindowHandle,System.String,System.String,OpenTK.Core.Platform.DialogFileFilter[],OpenTK.Core.Platform.SaveDialogOptions) + langs: + - csharp + - vb + name: MacOSDialogComponent + nameWithType: MacOSDialogComponent + fullName: OpenTK.Platform.Native.macOS.MacOSDialogComponent + type: Class + source: + remote: + path: src/OpenTK.Platform.Native/macOS/MacOSDialogComponent.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: MacOSDialogComponent + path: opentk/src/OpenTK.Platform.Native/macOS/MacOSDialogComponent.cs + startLine: 10 + assemblies: + - OpenTK.Platform.Native + namespace: OpenTK.Platform.Native.macOS + syntax: + content: 'public class MacOSDialogComponent : IDialogComponent, IPalComponent' + content.vb: Public Class MacOSDialogComponent Implements IDialogComponent, IPalComponent + inheritance: + - System.Object + implements: + - OpenTK.Core.Platform.IDialogComponent + - OpenTK.Core.Platform.IPalComponent + inheritedMembers: + - System.Object.Equals(System.Object) + - System.Object.Equals(System.Object,System.Object) + - System.Object.GetHashCode + - System.Object.GetType + - System.Object.MemberwiseClone + - System.Object.ReferenceEquals(System.Object,System.Object) + - System.Object.ToString +- uid: OpenTK.Platform.Native.macOS.MacOSDialogComponent.Name + commentId: P:OpenTK.Platform.Native.macOS.MacOSDialogComponent.Name + id: Name + parent: OpenTK.Platform.Native.macOS.MacOSDialogComponent + langs: + - csharp + - vb + name: Name + nameWithType: MacOSDialogComponent.Name + fullName: OpenTK.Platform.Native.macOS.MacOSDialogComponent.Name + type: Property + source: + remote: + path: src/OpenTK.Platform.Native/macOS/MacOSDialogComponent.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: Name + path: opentk/src/OpenTK.Platform.Native/macOS/MacOSDialogComponent.cs + startLine: 63 + assemblies: + - OpenTK.Platform.Native + namespace: OpenTK.Platform.Native.macOS + summary: Name of the abstraction layer component. + example: [] + syntax: + content: public string Name { get; } + parameters: [] + return: + type: System.String + content.vb: Public ReadOnly Property Name As String + overload: OpenTK.Platform.Native.macOS.MacOSDialogComponent.Name* + implements: + - OpenTK.Core.Platform.IPalComponent.Name +- uid: OpenTK.Platform.Native.macOS.MacOSDialogComponent.Provides + commentId: P:OpenTK.Platform.Native.macOS.MacOSDialogComponent.Provides + id: Provides + parent: OpenTK.Platform.Native.macOS.MacOSDialogComponent + langs: + - csharp + - vb + name: Provides + nameWithType: MacOSDialogComponent.Provides + fullName: OpenTK.Platform.Native.macOS.MacOSDialogComponent.Provides + type: Property + source: + remote: + path: src/OpenTK.Platform.Native/macOS/MacOSDialogComponent.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: Provides + path: opentk/src/OpenTK.Platform.Native/macOS/MacOSDialogComponent.cs + startLine: 66 + assemblies: + - OpenTK.Platform.Native + namespace: OpenTK.Platform.Native.macOS + summary: Specifies which PAL components this object provides. + example: [] + syntax: + content: public PalComponents Provides { get; } + parameters: [] + return: + type: OpenTK.Core.Platform.PalComponents + content.vb: Public ReadOnly Property Provides As PalComponents + overload: OpenTK.Platform.Native.macOS.MacOSDialogComponent.Provides* + implements: + - OpenTK.Core.Platform.IPalComponent.Provides +- uid: OpenTK.Platform.Native.macOS.MacOSDialogComponent.Logger + commentId: P:OpenTK.Platform.Native.macOS.MacOSDialogComponent.Logger + id: Logger + parent: OpenTK.Platform.Native.macOS.MacOSDialogComponent + langs: + - csharp + - vb + name: Logger + nameWithType: MacOSDialogComponent.Logger + fullName: OpenTK.Platform.Native.macOS.MacOSDialogComponent.Logger + type: Property + source: + remote: + path: src/OpenTK.Platform.Native/macOS/MacOSDialogComponent.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: Logger + path: opentk/src/OpenTK.Platform.Native/macOS/MacOSDialogComponent.cs + startLine: 69 + assemblies: + - OpenTK.Platform.Native + namespace: OpenTK.Platform.Native.macOS + summary: Provides a logger for this component. + example: [] + syntax: + content: public ILogger? Logger { get; set; } + parameters: [] + return: + type: OpenTK.Core.Utility.ILogger + content.vb: Public Property Logger As ILogger + overload: OpenTK.Platform.Native.macOS.MacOSDialogComponent.Logger* + implements: + - OpenTK.Core.Platform.IPalComponent.Logger +- uid: OpenTK.Platform.Native.macOS.MacOSDialogComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Native.macOS.MacOSDialogComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + id: Initialize(OpenTK.Core.Platform.ToolkitOptions) + parent: OpenTK.Platform.Native.macOS.MacOSDialogComponent + langs: + - csharp + - vb + name: Initialize(ToolkitOptions) + nameWithType: MacOSDialogComponent.Initialize(ToolkitOptions) + fullName: OpenTK.Platform.Native.macOS.MacOSDialogComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + type: Method + source: + remote: + path: src/OpenTK.Platform.Native/macOS/MacOSDialogComponent.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: Initialize + path: opentk/src/OpenTK.Platform.Native/macOS/MacOSDialogComponent.cs + startLine: 72 + assemblies: + - OpenTK.Platform.Native + namespace: OpenTK.Platform.Native.macOS + summary: Initialize the component. + example: [] + syntax: + content: public void Initialize(ToolkitOptions options) + parameters: + - id: options + type: OpenTK.Core.Platform.ToolkitOptions + description: The options to initialize the component with. + content.vb: Public Sub Initialize(options As ToolkitOptions) + overload: OpenTK.Platform.Native.macOS.MacOSDialogComponent.Initialize* + implements: + - OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) +- uid: OpenTK.Platform.Native.macOS.MacOSDialogComponent.CanTargetFolders + commentId: P:OpenTK.Platform.Native.macOS.MacOSDialogComponent.CanTargetFolders + id: CanTargetFolders + parent: OpenTK.Platform.Native.macOS.MacOSDialogComponent + langs: + - csharp + - vb + name: CanTargetFolders + nameWithType: MacOSDialogComponent.CanTargetFolders + fullName: OpenTK.Platform.Native.macOS.MacOSDialogComponent.CanTargetFolders + type: Property + source: + remote: + path: src/OpenTK.Platform.Native/macOS/MacOSDialogComponent.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: CanTargetFolders + path: opentk/src/OpenTK.Platform.Native/macOS/MacOSDialogComponent.cs + startLine: 77 + assemblies: + - OpenTK.Platform.Native + namespace: OpenTK.Platform.Native.macOS + summary: >- + If the value of this property is true and will work. + + Otherwise these flags will be ignored. + example: [] + syntax: + content: public bool CanTargetFolders { get; } + parameters: [] + return: + type: System.Boolean + content.vb: Public ReadOnly Property CanTargetFolders As Boolean + overload: OpenTK.Platform.Native.macOS.MacOSDialogComponent.CanTargetFolders* + implements: + - OpenTK.Core.Platform.IDialogComponent.CanTargetFolders +- uid: OpenTK.Platform.Native.macOS.MacOSDialogComponent.ShowOpenDialog(OpenTK.Core.Platform.WindowHandle,System.String,System.String,OpenTK.Core.Platform.DialogFileFilter[],OpenTK.Core.Platform.OpenDialogOptions) + commentId: M:OpenTK.Platform.Native.macOS.MacOSDialogComponent.ShowOpenDialog(OpenTK.Core.Platform.WindowHandle,System.String,System.String,OpenTK.Core.Platform.DialogFileFilter[],OpenTK.Core.Platform.OpenDialogOptions) + id: ShowOpenDialog(OpenTK.Core.Platform.WindowHandle,System.String,System.String,OpenTK.Core.Platform.DialogFileFilter[],OpenTK.Core.Platform.OpenDialogOptions) + parent: OpenTK.Platform.Native.macOS.MacOSDialogComponent + langs: + - csharp + - vb + name: ShowOpenDialog(WindowHandle, string, string, DialogFileFilter[]?, OpenDialogOptions) + nameWithType: MacOSDialogComponent.ShowOpenDialog(WindowHandle, string, string, DialogFileFilter[]?, OpenDialogOptions) + fullName: OpenTK.Platform.Native.macOS.MacOSDialogComponent.ShowOpenDialog(OpenTK.Core.Platform.WindowHandle, string, string, OpenTK.Core.Platform.DialogFileFilter[]?, OpenTK.Core.Platform.OpenDialogOptions) + type: Method + source: + remote: + path: src/OpenTK.Platform.Native/macOS/MacOSDialogComponent.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: ShowOpenDialog + path: opentk/src/OpenTK.Platform.Native/macOS/MacOSDialogComponent.cs + startLine: 106 + assemblies: + - OpenTK.Platform.Native + namespace: OpenTK.Platform.Native.macOS + example: [] + syntax: + content: public List? ShowOpenDialog(WindowHandle parent, string title, string directory, DialogFileFilter[]? allowedExtensions, OpenDialogOptions options) + parameters: + - id: parent + type: OpenTK.Core.Platform.WindowHandle + - id: title + type: System.String + - id: directory + type: System.String + - id: allowedExtensions + type: OpenTK.Core.Platform.DialogFileFilter[] + - id: options + type: OpenTK.Core.Platform.OpenDialogOptions + return: + type: System.Collections.Generic.List{System.String} + content.vb: Public Function ShowOpenDialog(parent As WindowHandle, title As String, directory As String, allowedExtensions As DialogFileFilter(), options As OpenDialogOptions) As List(Of String) + overload: OpenTK.Platform.Native.macOS.MacOSDialogComponent.ShowOpenDialog* + implements: + - OpenTK.Core.Platform.IDialogComponent.ShowOpenDialog(OpenTK.Core.Platform.WindowHandle,System.String,System.String,OpenTK.Core.Platform.DialogFileFilter[],OpenTK.Core.Platform.OpenDialogOptions) + nameWithType.vb: MacOSDialogComponent.ShowOpenDialog(WindowHandle, String, String, DialogFileFilter(), OpenDialogOptions) + fullName.vb: OpenTK.Platform.Native.macOS.MacOSDialogComponent.ShowOpenDialog(OpenTK.Core.Platform.WindowHandle, String, String, OpenTK.Core.Platform.DialogFileFilter(), OpenTK.Core.Platform.OpenDialogOptions) + name.vb: ShowOpenDialog(WindowHandle, String, String, DialogFileFilter(), OpenDialogOptions) +- uid: OpenTK.Platform.Native.macOS.MacOSDialogComponent.ShowSaveDialog(OpenTK.Core.Platform.WindowHandle,System.String,System.String,OpenTK.Core.Platform.DialogFileFilter[],OpenTK.Core.Platform.SaveDialogOptions) + commentId: M:OpenTK.Platform.Native.macOS.MacOSDialogComponent.ShowSaveDialog(OpenTK.Core.Platform.WindowHandle,System.String,System.String,OpenTK.Core.Platform.DialogFileFilter[],OpenTK.Core.Platform.SaveDialogOptions) + id: ShowSaveDialog(OpenTK.Core.Platform.WindowHandle,System.String,System.String,OpenTK.Core.Platform.DialogFileFilter[],OpenTK.Core.Platform.SaveDialogOptions) + parent: OpenTK.Platform.Native.macOS.MacOSDialogComponent + langs: + - csharp + - vb + name: ShowSaveDialog(WindowHandle, string, string, DialogFileFilter[]?, SaveDialogOptions) + nameWithType: MacOSDialogComponent.ShowSaveDialog(WindowHandle, string, string, DialogFileFilter[]?, SaveDialogOptions) + fullName: OpenTK.Platform.Native.macOS.MacOSDialogComponent.ShowSaveDialog(OpenTK.Core.Platform.WindowHandle, string, string, OpenTK.Core.Platform.DialogFileFilter[]?, OpenTK.Core.Platform.SaveDialogOptions) + type: Method + source: + remote: + path: src/OpenTK.Platform.Native/macOS/MacOSDialogComponent.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: ShowSaveDialog + path: opentk/src/OpenTK.Platform.Native/macOS/MacOSDialogComponent.cs + startLine: 165 + assemblies: + - OpenTK.Platform.Native + namespace: OpenTK.Platform.Native.macOS + example: [] + syntax: + content: public string? ShowSaveDialog(WindowHandle parent, string title, string directory, DialogFileFilter[]? allowedExtensions, SaveDialogOptions options) + parameters: + - id: parent + type: OpenTK.Core.Platform.WindowHandle + - id: title + type: System.String + - id: directory + type: System.String + - id: allowedExtensions + type: OpenTK.Core.Platform.DialogFileFilter[] + - id: options + type: OpenTK.Core.Platform.SaveDialogOptions + return: + type: System.String + content.vb: Public Function ShowSaveDialog(parent As WindowHandle, title As String, directory As String, allowedExtensions As DialogFileFilter(), options As SaveDialogOptions) As String + overload: OpenTK.Platform.Native.macOS.MacOSDialogComponent.ShowSaveDialog* + implements: + - OpenTK.Core.Platform.IDialogComponent.ShowSaveDialog(OpenTK.Core.Platform.WindowHandle,System.String,System.String,OpenTK.Core.Platform.DialogFileFilter[],OpenTK.Core.Platform.SaveDialogOptions) + nameWithType.vb: MacOSDialogComponent.ShowSaveDialog(WindowHandle, String, String, DialogFileFilter(), SaveDialogOptions) + fullName.vb: OpenTK.Platform.Native.macOS.MacOSDialogComponent.ShowSaveDialog(OpenTK.Core.Platform.WindowHandle, String, String, OpenTK.Core.Platform.DialogFileFilter(), OpenTK.Core.Platform.SaveDialogOptions) + name.vb: ShowSaveDialog(WindowHandle, String, String, DialogFileFilter(), SaveDialogOptions) +references: +- uid: OpenTK.Platform.Native.macOS + commentId: N:OpenTK.Platform.Native.macOS + href: OpenTK.html + name: OpenTK.Platform.Native.macOS + nameWithType: OpenTK.Platform.Native.macOS + fullName: OpenTK.Platform.Native.macOS + spec.csharp: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Platform + name: Platform + href: OpenTK.Platform.html + - name: . + - uid: OpenTK.Platform.Native + name: Native + href: OpenTK.Platform.Native.html + - name: . + - uid: OpenTK.Platform.Native.macOS + name: macOS + href: OpenTK.Platform.Native.macOS.html + spec.vb: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Platform + name: Platform + href: OpenTK.Platform.html + - name: . + - uid: OpenTK.Platform.Native + name: Native + href: OpenTK.Platform.Native.html + - name: . + - uid: OpenTK.Platform.Native.macOS + name: macOS + href: OpenTK.Platform.Native.macOS.html +- uid: System.Object + commentId: T:System.Object + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + name: object + nameWithType: object + fullName: object + nameWithType.vb: Object + fullName.vb: Object + name.vb: Object +- uid: OpenTK.Core.Platform.IDialogComponent + commentId: T:OpenTK.Core.Platform.IDialogComponent + parent: OpenTK.Core.Platform + href: OpenTK.Core.Platform.IDialogComponent.html + name: IDialogComponent + nameWithType: IDialogComponent + fullName: OpenTK.Core.Platform.IDialogComponent +- uid: OpenTK.Core.Platform.IPalComponent + commentId: T:OpenTK.Core.Platform.IPalComponent + parent: OpenTK.Core.Platform + href: OpenTK.Core.Platform.IPalComponent.html + name: IPalComponent + nameWithType: IPalComponent + fullName: OpenTK.Core.Platform.IPalComponent +- uid: System.Object.Equals(System.Object) + commentId: M:System.Object.Equals(System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + name: Equals(object) + nameWithType: object.Equals(object) + fullName: object.Equals(object) + nameWithType.vb: Object.Equals(Object) + fullName.vb: Object.Equals(Object) + name.vb: Equals(Object) + spec.csharp: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.Equals(System.Object,System.Object) + commentId: M:System.Object.Equals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + name: Equals(object, object) + nameWithType: object.Equals(object, object) + fullName: object.Equals(object, object) + nameWithType.vb: Object.Equals(Object, Object) + fullName.vb: Object.Equals(Object, Object) + name.vb: Equals(Object, Object) + spec.csharp: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.GetHashCode + commentId: M:System.Object.GetHashCode + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + name: GetHashCode() + nameWithType: object.GetHashCode() + fullName: object.GetHashCode() + nameWithType.vb: Object.GetHashCode() + fullName.vb: Object.GetHashCode() + spec.csharp: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) +- uid: System.Object.GetType + commentId: M:System.Object.GetType + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + name: GetType() + nameWithType: object.GetType() + fullName: object.GetType() + nameWithType.vb: Object.GetType() + fullName.vb: Object.GetType() + spec.csharp: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) +- uid: System.Object.MemberwiseClone + commentId: M:System.Object.MemberwiseClone + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + name: MemberwiseClone() + nameWithType: object.MemberwiseClone() + fullName: object.MemberwiseClone() + nameWithType.vb: Object.MemberwiseClone() + fullName.vb: Object.MemberwiseClone() + spec.csharp: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) + spec.vb: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) +- uid: System.Object.ReferenceEquals(System.Object,System.Object) + commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + name: ReferenceEquals(object, object) + nameWithType: object.ReferenceEquals(object, object) + fullName: object.ReferenceEquals(object, object) + nameWithType.vb: Object.ReferenceEquals(Object, Object) + fullName.vb: Object.ReferenceEquals(Object, Object) + name.vb: ReferenceEquals(Object, Object) + spec.csharp: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.ToString + commentId: M:System.Object.ToString + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + name: ToString() + nameWithType: object.ToString() + fullName: object.ToString() + nameWithType.vb: Object.ToString() + fullName.vb: Object.ToString() + spec.csharp: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) + spec.vb: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) +- uid: System + commentId: N:System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System + nameWithType: System + fullName: System +- uid: OpenTK.Core.Platform + commentId: N:OpenTK.Core.Platform + href: OpenTK.html + name: OpenTK.Core.Platform + nameWithType: OpenTK.Core.Platform + fullName: OpenTK.Core.Platform + spec.csharp: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Core + name: Core + href: OpenTK.Core.html + - name: . + - uid: OpenTK.Core.Platform + name: Platform + href: OpenTK.Core.Platform.html + spec.vb: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Core + name: Core + href: OpenTK.Core.html + - name: . + - uid: OpenTK.Core.Platform + name: Platform + href: OpenTK.Core.Platform.html +- uid: OpenTK.Platform.Native.macOS.MacOSDialogComponent.Name* + commentId: Overload:OpenTK.Platform.Native.macOS.MacOSDialogComponent.Name + href: OpenTK.Platform.Native.macOS.MacOSDialogComponent.html#OpenTK_Platform_Native_macOS_MacOSDialogComponent_Name + name: Name + nameWithType: MacOSDialogComponent.Name + fullName: OpenTK.Platform.Native.macOS.MacOSDialogComponent.Name +- uid: OpenTK.Core.Platform.IPalComponent.Name + commentId: P:OpenTK.Core.Platform.IPalComponent.Name + parent: OpenTK.Core.Platform.IPalComponent + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Name + name: Name + nameWithType: IPalComponent.Name + fullName: OpenTK.Core.Platform.IPalComponent.Name +- uid: System.String + commentId: T:System.String + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + name: string + nameWithType: string + fullName: string + nameWithType.vb: String + fullName.vb: String + name.vb: String +- uid: OpenTK.Platform.Native.macOS.MacOSDialogComponent.Provides* + commentId: Overload:OpenTK.Platform.Native.macOS.MacOSDialogComponent.Provides + href: OpenTK.Platform.Native.macOS.MacOSDialogComponent.html#OpenTK_Platform_Native_macOS_MacOSDialogComponent_Provides + name: Provides + nameWithType: MacOSDialogComponent.Provides + fullName: OpenTK.Platform.Native.macOS.MacOSDialogComponent.Provides +- uid: OpenTK.Core.Platform.IPalComponent.Provides + commentId: P:OpenTK.Core.Platform.IPalComponent.Provides + parent: OpenTK.Core.Platform.IPalComponent + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Provides + name: Provides + nameWithType: IPalComponent.Provides + fullName: OpenTK.Core.Platform.IPalComponent.Provides +- uid: OpenTK.Core.Platform.PalComponents + commentId: T:OpenTK.Core.Platform.PalComponents + parent: OpenTK.Core.Platform + href: OpenTK.Core.Platform.PalComponents.html + name: PalComponents + nameWithType: PalComponents + fullName: OpenTK.Core.Platform.PalComponents +- uid: OpenTK.Platform.Native.macOS.MacOSDialogComponent.Logger* + commentId: Overload:OpenTK.Platform.Native.macOS.MacOSDialogComponent.Logger + href: OpenTK.Platform.Native.macOS.MacOSDialogComponent.html#OpenTK_Platform_Native_macOS_MacOSDialogComponent_Logger + name: Logger + nameWithType: MacOSDialogComponent.Logger + fullName: OpenTK.Platform.Native.macOS.MacOSDialogComponent.Logger +- uid: OpenTK.Core.Platform.IPalComponent.Logger + commentId: P:OpenTK.Core.Platform.IPalComponent.Logger + parent: OpenTK.Core.Platform.IPalComponent + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Logger + name: Logger + nameWithType: IPalComponent.Logger + fullName: OpenTK.Core.Platform.IPalComponent.Logger +- uid: OpenTK.Core.Utility.ILogger + commentId: T:OpenTK.Core.Utility.ILogger + parent: OpenTK.Core.Utility + href: OpenTK.Core.Utility.ILogger.html + name: ILogger + nameWithType: ILogger + fullName: OpenTK.Core.Utility.ILogger +- uid: OpenTK.Core.Utility + commentId: N:OpenTK.Core.Utility + href: OpenTK.html + name: OpenTK.Core.Utility + nameWithType: OpenTK.Core.Utility + fullName: OpenTK.Core.Utility + spec.csharp: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Core + name: Core + href: OpenTK.Core.html + - name: . + - uid: OpenTK.Core.Utility + name: Utility + href: OpenTK.Core.Utility.html + spec.vb: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Core + name: Core + href: OpenTK.Core.html + - name: . + - uid: OpenTK.Core.Utility + name: Utility + href: OpenTK.Core.Utility.html +- uid: OpenTK.Platform.Native.macOS.MacOSDialogComponent.Initialize* + commentId: Overload:OpenTK.Platform.Native.macOS.MacOSDialogComponent.Initialize + href: OpenTK.Platform.Native.macOS.MacOSDialogComponent.html#OpenTK_Platform_Native_macOS_MacOSDialogComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + name: Initialize + nameWithType: MacOSDialogComponent.Initialize + fullName: OpenTK.Platform.Native.macOS.MacOSDialogComponent.Initialize +- uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + commentId: M:OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + parent: OpenTK.Core.Platform.IPalComponent + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + name: Initialize(ToolkitOptions) + nameWithType: IPalComponent.Initialize(ToolkitOptions) + fullName: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + spec.csharp: + - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + name: Initialize + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + - name: ( + - uid: OpenTK.Core.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Core.Platform.ToolkitOptions.html + - name: ) + spec.vb: + - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + name: Initialize + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + - name: ( + - uid: OpenTK.Core.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Core.Platform.ToolkitOptions.html + - name: ) +- uid: OpenTK.Core.Platform.ToolkitOptions + commentId: T:OpenTK.Core.Platform.ToolkitOptions + parent: OpenTK.Core.Platform + href: OpenTK.Core.Platform.ToolkitOptions.html + name: ToolkitOptions + nameWithType: ToolkitOptions + fullName: OpenTK.Core.Platform.ToolkitOptions +- uid: OpenTK.Core.Platform.OpenDialogOptions.SelectDirectory + commentId: F:OpenTK.Core.Platform.OpenDialogOptions.SelectDirectory + href: OpenTK.Core.Platform.OpenDialogOptions.html#OpenTK_Core_Platform_OpenDialogOptions_SelectDirectory + name: SelectDirectory + nameWithType: OpenDialogOptions.SelectDirectory + fullName: OpenTK.Core.Platform.OpenDialogOptions.SelectDirectory +- uid: OpenTK.Platform.Native.macOS.MacOSDialogComponent.CanTargetFolders* + commentId: Overload:OpenTK.Platform.Native.macOS.MacOSDialogComponent.CanTargetFolders + href: OpenTK.Platform.Native.macOS.MacOSDialogComponent.html#OpenTK_Platform_Native_macOS_MacOSDialogComponent_CanTargetFolders + name: CanTargetFolders + nameWithType: MacOSDialogComponent.CanTargetFolders + fullName: OpenTK.Platform.Native.macOS.MacOSDialogComponent.CanTargetFolders +- uid: OpenTK.Core.Platform.IDialogComponent.CanTargetFolders + commentId: P:OpenTK.Core.Platform.IDialogComponent.CanTargetFolders + parent: OpenTK.Core.Platform.IDialogComponent + href: OpenTK.Core.Platform.IDialogComponent.html#OpenTK_Core_Platform_IDialogComponent_CanTargetFolders + name: CanTargetFolders + nameWithType: IDialogComponent.CanTargetFolders + fullName: OpenTK.Core.Platform.IDialogComponent.CanTargetFolders +- uid: System.Boolean + commentId: T:System.Boolean + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + name: bool + nameWithType: bool + fullName: bool + nameWithType.vb: Boolean + fullName.vb: Boolean + name.vb: Boolean +- uid: OpenTK.Platform.Native.macOS.MacOSDialogComponent.ShowOpenDialog* + commentId: Overload:OpenTK.Platform.Native.macOS.MacOSDialogComponent.ShowOpenDialog + href: OpenTK.Platform.Native.macOS.MacOSDialogComponent.html#OpenTK_Platform_Native_macOS_MacOSDialogComponent_ShowOpenDialog_OpenTK_Core_Platform_WindowHandle_System_String_System_String_OpenTK_Core_Platform_DialogFileFilter___OpenTK_Core_Platform_OpenDialogOptions_ + name: ShowOpenDialog + nameWithType: MacOSDialogComponent.ShowOpenDialog + fullName: OpenTK.Platform.Native.macOS.MacOSDialogComponent.ShowOpenDialog +- uid: OpenTK.Core.Platform.IDialogComponent.ShowOpenDialog(OpenTK.Core.Platform.WindowHandle,System.String,System.String,OpenTK.Core.Platform.DialogFileFilter[],OpenTK.Core.Platform.OpenDialogOptions) + commentId: M:OpenTK.Core.Platform.IDialogComponent.ShowOpenDialog(OpenTK.Core.Platform.WindowHandle,System.String,System.String,OpenTK.Core.Platform.DialogFileFilter[],OpenTK.Core.Platform.OpenDialogOptions) + parent: OpenTK.Core.Platform.IDialogComponent + isExternal: true + href: OpenTK.Core.Platform.IDialogComponent.html#OpenTK_Core_Platform_IDialogComponent_ShowOpenDialog_OpenTK_Core_Platform_WindowHandle_System_String_System_String_OpenTK_Core_Platform_DialogFileFilter___OpenTK_Core_Platform_OpenDialogOptions_ + name: ShowOpenDialog(WindowHandle, string, string, DialogFileFilter[], OpenDialogOptions) + nameWithType: IDialogComponent.ShowOpenDialog(WindowHandle, string, string, DialogFileFilter[], OpenDialogOptions) + fullName: OpenTK.Core.Platform.IDialogComponent.ShowOpenDialog(OpenTK.Core.Platform.WindowHandle, string, string, OpenTK.Core.Platform.DialogFileFilter[], OpenTK.Core.Platform.OpenDialogOptions) + nameWithType.vb: IDialogComponent.ShowOpenDialog(WindowHandle, String, String, DialogFileFilter(), OpenDialogOptions) + fullName.vb: OpenTK.Core.Platform.IDialogComponent.ShowOpenDialog(OpenTK.Core.Platform.WindowHandle, String, String, OpenTK.Core.Platform.DialogFileFilter(), OpenTK.Core.Platform.OpenDialogOptions) + name.vb: ShowOpenDialog(WindowHandle, String, String, DialogFileFilter(), OpenDialogOptions) + spec.csharp: + - uid: OpenTK.Core.Platform.IDialogComponent.ShowOpenDialog(OpenTK.Core.Platform.WindowHandle,System.String,System.String,OpenTK.Core.Platform.DialogFileFilter[],OpenTK.Core.Platform.OpenDialogOptions) + name: ShowOpenDialog + href: OpenTK.Core.Platform.IDialogComponent.html#OpenTK_Core_Platform_IDialogComponent_ShowOpenDialog_OpenTK_Core_Platform_WindowHandle_System_String_System_String_OpenTK_Core_Platform_DialogFileFilter___OpenTK_Core_Platform_OpenDialogOptions_ + - name: ( + - uid: OpenTK.Core.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Core.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: System.String + name: string + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ',' + - name: " " + - uid: System.String + name: string + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ',' + - name: " " + - uid: OpenTK.Core.Platform.DialogFileFilter + name: DialogFileFilter + href: OpenTK.Core.Platform.DialogFileFilter.html + - name: '[' + - name: ']' + - name: ',' + - name: " " + - uid: OpenTK.Core.Platform.OpenDialogOptions + name: OpenDialogOptions + href: OpenTK.Core.Platform.OpenDialogOptions.html + - name: ) + spec.vb: + - uid: OpenTK.Core.Platform.IDialogComponent.ShowOpenDialog(OpenTK.Core.Platform.WindowHandle,System.String,System.String,OpenTK.Core.Platform.DialogFileFilter[],OpenTK.Core.Platform.OpenDialogOptions) + name: ShowOpenDialog + href: OpenTK.Core.Platform.IDialogComponent.html#OpenTK_Core_Platform_IDialogComponent_ShowOpenDialog_OpenTK_Core_Platform_WindowHandle_System_String_System_String_OpenTK_Core_Platform_DialogFileFilter___OpenTK_Core_Platform_OpenDialogOptions_ + - name: ( + - uid: OpenTK.Core.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Core.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: System.String + name: String + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ',' + - name: " " + - uid: System.String + name: String + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ',' + - name: " " + - uid: OpenTK.Core.Platform.DialogFileFilter + name: DialogFileFilter + href: OpenTK.Core.Platform.DialogFileFilter.html + - name: ( + - name: ) + - name: ',' + - name: " " + - uid: OpenTK.Core.Platform.OpenDialogOptions + name: OpenDialogOptions + href: OpenTK.Core.Platform.OpenDialogOptions.html + - name: ) +- uid: OpenTK.Core.Platform.WindowHandle + commentId: T:OpenTK.Core.Platform.WindowHandle + parent: OpenTK.Core.Platform + href: OpenTK.Core.Platform.WindowHandle.html + name: WindowHandle + nameWithType: WindowHandle + fullName: OpenTK.Core.Platform.WindowHandle +- uid: OpenTK.Core.Platform.DialogFileFilter[] + isExternal: true + href: OpenTK.Core.Platform.DialogFileFilter.html + name: DialogFileFilter[] + nameWithType: DialogFileFilter[] + fullName: OpenTK.Core.Platform.DialogFileFilter[] + nameWithType.vb: DialogFileFilter() + fullName.vb: OpenTK.Core.Platform.DialogFileFilter() + name.vb: DialogFileFilter() + spec.csharp: + - uid: OpenTK.Core.Platform.DialogFileFilter + name: DialogFileFilter + href: OpenTK.Core.Platform.DialogFileFilter.html + - name: '[' + - name: ']' + spec.vb: + - uid: OpenTK.Core.Platform.DialogFileFilter + name: DialogFileFilter + href: OpenTK.Core.Platform.DialogFileFilter.html + - name: ( + - name: ) +- uid: OpenTK.Core.Platform.OpenDialogOptions + commentId: T:OpenTK.Core.Platform.OpenDialogOptions + parent: OpenTK.Core.Platform + href: OpenTK.Core.Platform.OpenDialogOptions.html + name: OpenDialogOptions + nameWithType: OpenDialogOptions + fullName: OpenTK.Core.Platform.OpenDialogOptions +- uid: System.Collections.Generic.List{System.String} + commentId: T:System.Collections.Generic.List{System.String} + parent: System.Collections.Generic + definition: System.Collections.Generic.List`1 + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 + name: List + nameWithType: List + fullName: System.Collections.Generic.List + nameWithType.vb: List(Of String) + fullName.vb: System.Collections.Generic.List(Of String) + name.vb: List(Of String) + spec.csharp: + - uid: System.Collections.Generic.List`1 + name: List + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 + - name: < + - uid: System.String + name: string + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: '>' + spec.vb: + - uid: System.Collections.Generic.List`1 + name: List + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 + - name: ( + - name: Of + - name: " " + - uid: System.String + name: String + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ) +- uid: System.Collections.Generic.List`1 + commentId: T:System.Collections.Generic.List`1 + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 + name: List + nameWithType: List + fullName: System.Collections.Generic.List + nameWithType.vb: List(Of T) + fullName.vb: System.Collections.Generic.List(Of T) + name.vb: List(Of T) + spec.csharp: + - uid: System.Collections.Generic.List`1 + name: List + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 + - name: < + - name: T + - name: '>' + spec.vb: + - uid: System.Collections.Generic.List`1 + name: List + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 + - name: ( + - name: Of + - name: " " + - name: T + - name: ) +- uid: System.Collections.Generic + commentId: N:System.Collections.Generic + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System.Collections.Generic + nameWithType: System.Collections.Generic + fullName: System.Collections.Generic + spec.csharp: + - uid: System + name: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + - name: . + - uid: System.Collections + name: Collections + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections + - name: . + - uid: System.Collections.Generic + name: Generic + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic + spec.vb: + - uid: System + name: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + - name: . + - uid: System.Collections + name: Collections + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections + - name: . + - uid: System.Collections.Generic + name: Generic + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic +- uid: OpenTK.Platform.Native.macOS.MacOSDialogComponent.ShowSaveDialog* + commentId: Overload:OpenTK.Platform.Native.macOS.MacOSDialogComponent.ShowSaveDialog + href: OpenTK.Platform.Native.macOS.MacOSDialogComponent.html#OpenTK_Platform_Native_macOS_MacOSDialogComponent_ShowSaveDialog_OpenTK_Core_Platform_WindowHandle_System_String_System_String_OpenTK_Core_Platform_DialogFileFilter___OpenTK_Core_Platform_SaveDialogOptions_ + name: ShowSaveDialog + nameWithType: MacOSDialogComponent.ShowSaveDialog + fullName: OpenTK.Platform.Native.macOS.MacOSDialogComponent.ShowSaveDialog +- uid: OpenTK.Core.Platform.IDialogComponent.ShowSaveDialog(OpenTK.Core.Platform.WindowHandle,System.String,System.String,OpenTK.Core.Platform.DialogFileFilter[],OpenTK.Core.Platform.SaveDialogOptions) + commentId: M:OpenTK.Core.Platform.IDialogComponent.ShowSaveDialog(OpenTK.Core.Platform.WindowHandle,System.String,System.String,OpenTK.Core.Platform.DialogFileFilter[],OpenTK.Core.Platform.SaveDialogOptions) + parent: OpenTK.Core.Platform.IDialogComponent + isExternal: true + href: OpenTK.Core.Platform.IDialogComponent.html#OpenTK_Core_Platform_IDialogComponent_ShowSaveDialog_OpenTK_Core_Platform_WindowHandle_System_String_System_String_OpenTK_Core_Platform_DialogFileFilter___OpenTK_Core_Platform_SaveDialogOptions_ + name: ShowSaveDialog(WindowHandle, string, string, DialogFileFilter[], SaveDialogOptions) + nameWithType: IDialogComponent.ShowSaveDialog(WindowHandle, string, string, DialogFileFilter[], SaveDialogOptions) + fullName: OpenTK.Core.Platform.IDialogComponent.ShowSaveDialog(OpenTK.Core.Platform.WindowHandle, string, string, OpenTK.Core.Platform.DialogFileFilter[], OpenTK.Core.Platform.SaveDialogOptions) + nameWithType.vb: IDialogComponent.ShowSaveDialog(WindowHandle, String, String, DialogFileFilter(), SaveDialogOptions) + fullName.vb: OpenTK.Core.Platform.IDialogComponent.ShowSaveDialog(OpenTK.Core.Platform.WindowHandle, String, String, OpenTK.Core.Platform.DialogFileFilter(), OpenTK.Core.Platform.SaveDialogOptions) + name.vb: ShowSaveDialog(WindowHandle, String, String, DialogFileFilter(), SaveDialogOptions) + spec.csharp: + - uid: OpenTK.Core.Platform.IDialogComponent.ShowSaveDialog(OpenTK.Core.Platform.WindowHandle,System.String,System.String,OpenTK.Core.Platform.DialogFileFilter[],OpenTK.Core.Platform.SaveDialogOptions) + name: ShowSaveDialog + href: OpenTK.Core.Platform.IDialogComponent.html#OpenTK_Core_Platform_IDialogComponent_ShowSaveDialog_OpenTK_Core_Platform_WindowHandle_System_String_System_String_OpenTK_Core_Platform_DialogFileFilter___OpenTK_Core_Platform_SaveDialogOptions_ + - name: ( + - uid: OpenTK.Core.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Core.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: System.String + name: string + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ',' + - name: " " + - uid: System.String + name: string + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ',' + - name: " " + - uid: OpenTK.Core.Platform.DialogFileFilter + name: DialogFileFilter + href: OpenTK.Core.Platform.DialogFileFilter.html + - name: '[' + - name: ']' + - name: ',' + - name: " " + - uid: OpenTK.Core.Platform.SaveDialogOptions + name: SaveDialogOptions + href: OpenTK.Core.Platform.SaveDialogOptions.html + - name: ) + spec.vb: + - uid: OpenTK.Core.Platform.IDialogComponent.ShowSaveDialog(OpenTK.Core.Platform.WindowHandle,System.String,System.String,OpenTK.Core.Platform.DialogFileFilter[],OpenTK.Core.Platform.SaveDialogOptions) + name: ShowSaveDialog + href: OpenTK.Core.Platform.IDialogComponent.html#OpenTK_Core_Platform_IDialogComponent_ShowSaveDialog_OpenTK_Core_Platform_WindowHandle_System_String_System_String_OpenTK_Core_Platform_DialogFileFilter___OpenTK_Core_Platform_SaveDialogOptions_ + - name: ( + - uid: OpenTK.Core.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Core.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: System.String + name: String + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ',' + - name: " " + - uid: System.String + name: String + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ',' + - name: " " + - uid: OpenTK.Core.Platform.DialogFileFilter + name: DialogFileFilter + href: OpenTK.Core.Platform.DialogFileFilter.html + - name: ( + - name: ) + - name: ',' + - name: " " + - uid: OpenTK.Core.Platform.SaveDialogOptions + name: SaveDialogOptions + href: OpenTK.Core.Platform.SaveDialogOptions.html + - name: ) +- uid: OpenTK.Core.Platform.SaveDialogOptions + commentId: T:OpenTK.Core.Platform.SaveDialogOptions + parent: OpenTK.Core.Platform + href: OpenTK.Core.Platform.SaveDialogOptions.html + name: SaveDialogOptions + nameWithType: SaveDialogOptions + fullName: OpenTK.Core.Platform.SaveDialogOptions diff --git a/api/OpenTK.Platform.Native.macOS.MacOSDisplayComponent.yml b/api/OpenTK.Platform.Native.macOS.MacOSDisplayComponent.yml index 73a3e038..b2b24b5d 100644 --- a/api/OpenTK.Platform.Native.macOS.MacOSDisplayComponent.yml +++ b/api/OpenTK.Platform.Native.macOS.MacOSDisplayComponent.yml @@ -20,7 +20,7 @@ items: - OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetVideoMode(OpenTK.Core.Platform.DisplayHandle,OpenTK.Core.Platform.VideoMode@) - OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetVirtualPosition(OpenTK.Core.Platform.DisplayHandle,System.Int32@,System.Int32@) - OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetWorkArea(OpenTK.Core.Platform.DisplayHandle,OpenTK.Mathematics.Box2i@) - - OpenTK.Platform.Native.macOS.MacOSDisplayComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - OpenTK.Platform.Native.macOS.MacOSDisplayComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - OpenTK.Platform.Native.macOS.MacOSDisplayComponent.IsPrimary(OpenTK.Core.Platform.DisplayHandle) - OpenTK.Platform.Native.macOS.MacOSDisplayComponent.Logger - OpenTK.Platform.Native.macOS.MacOSDisplayComponent.Name @@ -160,16 +160,16 @@ items: overload: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.Logger* implements: - OpenTK.Core.Platform.IPalComponent.Logger -- uid: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.Initialize(OpenTK.Core.Platform.PalComponents) - commentId: M:OpenTK.Platform.Native.macOS.MacOSDisplayComponent.Initialize(OpenTK.Core.Platform.PalComponents) - id: Initialize(OpenTK.Core.Platform.PalComponents) +- uid: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Native.macOS.MacOSDisplayComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + id: Initialize(OpenTK.Core.Platform.ToolkitOptions) parent: OpenTK.Platform.Native.macOS.MacOSDisplayComponent langs: - csharp - vb - name: Initialize(PalComponents) - nameWithType: MacOSDisplayComponent.Initialize(PalComponents) - fullName: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.Initialize(OpenTK.Core.Platform.PalComponents) + name: Initialize(ToolkitOptions) + nameWithType: MacOSDisplayComponent.Initialize(ToolkitOptions) + fullName: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) type: Method source: remote: @@ -182,18 +182,18 @@ items: assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.macOS - summary: Initialize the driver. + summary: Initialize the component. example: [] syntax: - content: public void Initialize(PalComponents which) + content: public void Initialize(ToolkitOptions options) parameters: - - id: which - type: OpenTK.Core.Platform.PalComponents - description: Bitfield of which components the driver need to be initialized. - content.vb: Public Sub Initialize(which As PalComponents) + - id: options + type: OpenTK.Core.Platform.ToolkitOptions + description: The options to initialize the component with. + content.vb: Public Sub Initialize(options As ToolkitOptions) overload: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.Initialize* implements: - - OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - uid: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.CanGetVirtualPosition commentId: P:OpenTK.Platform.Native.macOS.MacOSDisplayComponent.CanGetVirtualPosition id: CanGetVirtualPosition @@ -212,7 +212,7 @@ items: repo: https://github.com/opentk/opentk.git id: CanGetVirtualPosition path: opentk/src/OpenTK.Platform.Native/macOS/MacOSDisplayComponent.cs - startLine: 224 + startLine: 207 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.macOS @@ -245,7 +245,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetDisplayCount path: opentk/src/OpenTK.Platform.Native/macOS/MacOSDisplayComponent.cs - startLine: 227 + startLine: 210 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.macOS @@ -278,7 +278,7 @@ items: repo: https://github.com/opentk/opentk.git id: Open path: opentk/src/OpenTK.Platform.Native/macOS/MacOSDisplayComponent.cs - startLine: 233 + startLine: 216 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.macOS @@ -322,7 +322,7 @@ items: repo: https://github.com/opentk/opentk.git id: OpenPrimary path: opentk/src/OpenTK.Platform.Native/macOS/MacOSDisplayComponent.cs - startLine: 242 + startLine: 225 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.macOS @@ -355,7 +355,7 @@ items: repo: https://github.com/opentk/opentk.git id: Close path: opentk/src/OpenTK.Platform.Native/macOS/MacOSDisplayComponent.cs - startLine: 259 + startLine: 242 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.macOS @@ -393,7 +393,7 @@ items: repo: https://github.com/opentk/opentk.git id: IsPrimary path: opentk/src/OpenTK.Platform.Native/macOS/MacOSDisplayComponent.cs - startLine: 266 + startLine: 249 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.macOS @@ -430,7 +430,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetName path: opentk/src/OpenTK.Platform.Native/macOS/MacOSDisplayComponent.cs - startLine: 273 + startLine: 256 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.macOS @@ -471,7 +471,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetVideoMode path: opentk/src/OpenTK.Platform.Native/macOS/MacOSDisplayComponent.cs - startLine: 280 + startLine: 263 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.macOS @@ -515,7 +515,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetSupportedVideoModes path: opentk/src/OpenTK.Platform.Native/macOS/MacOSDisplayComponent.cs - startLine: 297 + startLine: 280 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.macOS @@ -556,7 +556,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetVirtualPosition path: opentk/src/OpenTK.Platform.Native/macOS/MacOSDisplayComponent.cs - startLine: 385 + startLine: 368 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.macOS @@ -606,7 +606,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetResolution path: opentk/src/OpenTK.Platform.Native/macOS/MacOSDisplayComponent.cs - startLine: 401 + startLine: 384 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.macOS @@ -653,7 +653,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetWorkArea path: opentk/src/OpenTK.Platform.Native/macOS/MacOSDisplayComponent.cs - startLine: 413 + startLine: 396 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.macOS @@ -696,7 +696,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetSafeArea path: opentk/src/OpenTK.Platform.Native/macOS/MacOSDisplayComponent.cs - startLine: 430 + startLine: 410 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.macOS @@ -730,7 +730,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetSafeLeftAuxArea path: opentk/src/OpenTK.Platform.Native/macOS/MacOSDisplayComponent.cs - startLine: 459 + startLine: 439 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.macOS @@ -778,7 +778,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetSafeRightAuxArea path: opentk/src/OpenTK.Platform.Native/macOS/MacOSDisplayComponent.cs - startLine: 487 + startLine: 470 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.macOS @@ -826,7 +826,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetRefreshRate path: opentk/src/OpenTK.Platform.Native/macOS/MacOSDisplayComponent.cs - startLine: 507 + startLine: 493 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.macOS @@ -866,7 +866,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetDisplayScale path: opentk/src/OpenTK.Platform.Native/macOS/MacOSDisplayComponent.cs - startLine: 532 + startLine: 518 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.macOS @@ -909,7 +909,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetDirectDisplayID path: opentk/src/OpenTK.Platform.Native/macOS/MacOSDisplayComponent.cs - startLine: 550 + startLine: 536 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.macOS @@ -1342,35 +1342,42 @@ references: href: OpenTK.Core.Utility.html - uid: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.Initialize* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSDisplayComponent.Initialize - href: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.html#OpenTK_Platform_Native_macOS_MacOSDisplayComponent_Initialize_OpenTK_Core_Platform_PalComponents_ + href: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.html#OpenTK_Platform_Native_macOS_MacOSDisplayComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ name: Initialize nameWithType: MacOSDisplayComponent.Initialize fullName: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.Initialize -- uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) - commentId: M:OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) +- uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + commentId: M:OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_PalComponents_ - name: Initialize(PalComponents) - nameWithType: IPalComponent.Initialize(PalComponents) - fullName: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + name: Initialize(ToolkitOptions) + nameWithType: IPalComponent.Initialize(ToolkitOptions) + fullName: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) spec.csharp: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_PalComponents_ + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.PalComponents - name: PalComponents - href: OpenTK.Core.Platform.PalComponents.html + - uid: OpenTK.Core.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Core.Platform.ToolkitOptions.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_PalComponents_ + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.PalComponents - name: PalComponents - href: OpenTK.Core.Platform.PalComponents.html + - uid: OpenTK.Core.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Core.Platform.ToolkitOptions.html - name: ) +- uid: OpenTK.Core.Platform.ToolkitOptions + commentId: T:OpenTK.Core.Platform.ToolkitOptions + parent: OpenTK.Core.Platform + href: OpenTK.Core.Platform.ToolkitOptions.html + name: ToolkitOptions + nameWithType: ToolkitOptions + fullName: OpenTK.Core.Platform.ToolkitOptions - uid: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.CanGetVirtualPosition* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSDisplayComponent.CanGetVirtualPosition href: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.html#OpenTK_Platform_Native_macOS_MacOSDisplayComponent_CanGetVirtualPosition diff --git a/api/OpenTK.Platform.Native.macOS.MacOSIconComponent.yml b/api/OpenTK.Platform.Native.macOS.MacOSIconComponent.yml index a65611d9..60b4c572 100644 --- a/api/OpenTK.Platform.Native.macOS.MacOSIconComponent.yml +++ b/api/OpenTK.Platform.Native.macOS.MacOSIconComponent.yml @@ -11,7 +11,7 @@ items: - OpenTK.Platform.Native.macOS.MacOSIconComponent.CreateSFSymbol(System.String,System.String) - OpenTK.Platform.Native.macOS.MacOSIconComponent.Destroy(OpenTK.Core.Platform.IconHandle) - OpenTK.Platform.Native.macOS.MacOSIconComponent.GetSize(OpenTK.Core.Platform.IconHandle,System.Int32@,System.Int32@) - - OpenTK.Platform.Native.macOS.MacOSIconComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - OpenTK.Platform.Native.macOS.MacOSIconComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - OpenTK.Platform.Native.macOS.MacOSIconComponent.Logger - OpenTK.Platform.Native.macOS.MacOSIconComponent.Name - OpenTK.Platform.Native.macOS.MacOSIconComponent.Provides @@ -148,16 +148,16 @@ items: overload: OpenTK.Platform.Native.macOS.MacOSIconComponent.Logger* implements: - OpenTK.Core.Platform.IPalComponent.Logger -- uid: OpenTK.Platform.Native.macOS.MacOSIconComponent.Initialize(OpenTK.Core.Platform.PalComponents) - commentId: M:OpenTK.Platform.Native.macOS.MacOSIconComponent.Initialize(OpenTK.Core.Platform.PalComponents) - id: Initialize(OpenTK.Core.Platform.PalComponents) +- uid: OpenTK.Platform.Native.macOS.MacOSIconComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Native.macOS.MacOSIconComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + id: Initialize(OpenTK.Core.Platform.ToolkitOptions) parent: OpenTK.Platform.Native.macOS.MacOSIconComponent langs: - csharp - vb - name: Initialize(PalComponents) - nameWithType: MacOSIconComponent.Initialize(PalComponents) - fullName: OpenTK.Platform.Native.macOS.MacOSIconComponent.Initialize(OpenTK.Core.Platform.PalComponents) + name: Initialize(ToolkitOptions) + nameWithType: MacOSIconComponent.Initialize(ToolkitOptions) + fullName: OpenTK.Platform.Native.macOS.MacOSIconComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) type: Method source: remote: @@ -170,18 +170,18 @@ items: assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.macOS - summary: Initialize the driver. + summary: Initialize the component. example: [] syntax: - content: public void Initialize(PalComponents which) + content: public void Initialize(ToolkitOptions options) parameters: - - id: which - type: OpenTK.Core.Platform.PalComponents - description: Bitfield of which components the driver need to be initialized. - content.vb: Public Sub Initialize(which As PalComponents) + - id: options + type: OpenTK.Core.Platform.ToolkitOptions + description: The options to initialize the component with. + content.vb: Public Sub Initialize(options As ToolkitOptions) overload: OpenTK.Platform.Native.macOS.MacOSIconComponent.Initialize* implements: - - OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - uid: OpenTK.Platform.Native.macOS.MacOSIconComponent.CanLoadSystemIcons commentId: P:OpenTK.Platform.Native.macOS.MacOSIconComponent.CanLoadSystemIcons id: CanLoadSystemIcons @@ -200,7 +200,7 @@ items: repo: https://github.com/opentk/opentk.git id: CanLoadSystemIcons path: opentk/src/OpenTK.Platform.Native/macOS/MacOSIconComponent.cs - startLine: 70 + startLine: 66 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.macOS @@ -236,7 +236,7 @@ items: repo: https://github.com/opentk/opentk.git id: Create path: opentk/src/OpenTK.Platform.Native/macOS/MacOSIconComponent.cs - startLine: 73 + startLine: 69 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.macOS @@ -279,7 +279,7 @@ items: repo: https://github.com/opentk/opentk.git id: Create path: opentk/src/OpenTK.Platform.Native/macOS/MacOSIconComponent.cs - startLine: 125 + startLine: 121 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.macOS @@ -325,7 +325,7 @@ items: repo: https://github.com/opentk/opentk.git id: CreateSFSymbol path: opentk/src/OpenTK.Platform.Native/macOS/MacOSIconComponent.cs - startLine: 170 + startLine: 166 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.macOS @@ -366,7 +366,7 @@ items: repo: https://github.com/opentk/opentk.git id: Destroy path: opentk/src/OpenTK.Platform.Native/macOS/MacOSIconComponent.cs - startLine: 198 + startLine: 194 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.macOS @@ -404,7 +404,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetSize path: opentk/src/OpenTK.Platform.Native/macOS/MacOSIconComponent.cs - startLine: 212 + startLine: 208 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.macOS @@ -849,35 +849,42 @@ references: href: OpenTK.Core.Utility.html - uid: OpenTK.Platform.Native.macOS.MacOSIconComponent.Initialize* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSIconComponent.Initialize - href: OpenTK.Platform.Native.macOS.MacOSIconComponent.html#OpenTK_Platform_Native_macOS_MacOSIconComponent_Initialize_OpenTK_Core_Platform_PalComponents_ + href: OpenTK.Platform.Native.macOS.MacOSIconComponent.html#OpenTK_Platform_Native_macOS_MacOSIconComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ name: Initialize nameWithType: MacOSIconComponent.Initialize fullName: OpenTK.Platform.Native.macOS.MacOSIconComponent.Initialize -- uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) - commentId: M:OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) +- uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + commentId: M:OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_PalComponents_ - name: Initialize(PalComponents) - nameWithType: IPalComponent.Initialize(PalComponents) - fullName: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + name: Initialize(ToolkitOptions) + nameWithType: IPalComponent.Initialize(ToolkitOptions) + fullName: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) spec.csharp: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_PalComponents_ + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.PalComponents - name: PalComponents - href: OpenTK.Core.Platform.PalComponents.html + - uid: OpenTK.Core.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Core.Platform.ToolkitOptions.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_PalComponents_ + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.PalComponents - name: PalComponents - href: OpenTK.Core.Platform.PalComponents.html + - uid: OpenTK.Core.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Core.Platform.ToolkitOptions.html - name: ) +- uid: OpenTK.Core.Platform.ToolkitOptions + commentId: T:OpenTK.Core.Platform.ToolkitOptions + parent: OpenTK.Core.Platform + href: OpenTK.Core.Platform.ToolkitOptions.html + name: ToolkitOptions + nameWithType: ToolkitOptions + fullName: OpenTK.Core.Platform.ToolkitOptions - uid: OpenTK.Core.Platform.IIconComponent.Create(OpenTK.Core.Platform.SystemIconType) commentId: M:OpenTK.Core.Platform.IIconComponent.Create(OpenTK.Core.Platform.SystemIconType) parent: OpenTK.Core.Platform.IIconComponent diff --git a/api/OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.yml b/api/OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.yml index ef07f390..7ddb33d5 100644 --- a/api/OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.yml +++ b/api/OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.yml @@ -13,7 +13,7 @@ items: - OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.GetKeyboardModifiers - OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.GetKeyboardState(System.Boolean[]) - OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.GetScancodeFromKey(OpenTK.Core.Platform.Key) - - OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.Logger - OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.Name - OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.Provides @@ -153,16 +153,16 @@ items: overload: OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.Logger* implements: - OpenTK.Core.Platform.IPalComponent.Logger -- uid: OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.Initialize(OpenTK.Core.Platform.PalComponents) - commentId: M:OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.Initialize(OpenTK.Core.Platform.PalComponents) - id: Initialize(OpenTK.Core.Platform.PalComponents) +- uid: OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + id: Initialize(OpenTK.Core.Platform.ToolkitOptions) parent: OpenTK.Platform.Native.macOS.MacOSKeyboardComponent langs: - csharp - vb - name: Initialize(PalComponents) - nameWithType: MacOSKeyboardComponent.Initialize(PalComponents) - fullName: OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.Initialize(OpenTK.Core.Platform.PalComponents) + name: Initialize(ToolkitOptions) + nameWithType: MacOSKeyboardComponent.Initialize(ToolkitOptions) + fullName: OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) type: Method source: remote: @@ -175,18 +175,18 @@ items: assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.macOS - summary: Initialize the driver. + summary: Initialize the component. example: [] syntax: - content: public void Initialize(PalComponents which) + content: public void Initialize(ToolkitOptions options) parameters: - - id: which - type: OpenTK.Core.Platform.PalComponents - description: Bitfield of which components the driver need to be initialized. - content.vb: Public Sub Initialize(which As PalComponents) + - id: options + type: OpenTK.Core.Platform.ToolkitOptions + description: The options to initialize the component with. + content.vb: Public Sub Initialize(options As ToolkitOptions) overload: OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.Initialize* implements: - - OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - uid: OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.SupportsLayouts commentId: P:OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.SupportsLayouts id: SupportsLayouts @@ -205,7 +205,7 @@ items: repo: https://github.com/opentk/opentk.git id: SupportsLayouts path: opentk/src/OpenTK.Platform.Native/macOS/MacOSKeyboardComponent.cs - startLine: 30 + startLine: 26 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.macOS @@ -238,7 +238,7 @@ items: repo: https://github.com/opentk/opentk.git id: SupportsIme path: opentk/src/OpenTK.Platform.Native/macOS/MacOSKeyboardComponent.cs - startLine: 33 + startLine: 29 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.macOS @@ -271,7 +271,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetActiveKeyboardLayout path: opentk/src/OpenTK.Platform.Native/macOS/MacOSKeyboardComponent.cs - startLine: 36 + startLine: 32 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.macOS @@ -315,7 +315,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetAvailableKeyboardLayouts path: opentk/src/OpenTK.Platform.Native/macOS/MacOSKeyboardComponent.cs - startLine: 43 + startLine: 39 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.macOS @@ -348,7 +348,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetScancodeFromKey path: opentk/src/OpenTK.Platform.Native/macOS/MacOSKeyboardComponent.cs - startLine: 246 + startLine: 242 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.macOS @@ -395,7 +395,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetKeyFromScancode path: opentk/src/OpenTK.Platform.Native/macOS/MacOSKeyboardComponent.cs - startLine: 252 + startLine: 248 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.macOS @@ -438,7 +438,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetKeyboardState path: opentk/src/OpenTK.Platform.Native/macOS/MacOSKeyboardComponent.cs - startLine: 258 + startLine: 254 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.macOS @@ -480,7 +480,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetKeyboardModifiers path: opentk/src/OpenTK.Platform.Native/macOS/MacOSKeyboardComponent.cs - startLine: 265 + startLine: 261 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.macOS @@ -513,7 +513,7 @@ items: repo: https://github.com/opentk/opentk.git id: BeginIme path: opentk/src/OpenTK.Platform.Native/macOS/MacOSKeyboardComponent.cs - startLine: 306 + startLine: 302 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.macOS @@ -547,7 +547,7 @@ items: repo: https://github.com/opentk/opentk.git id: SetImeRectangle path: opentk/src/OpenTK.Platform.Native/macOS/MacOSKeyboardComponent.cs - startLine: 312 + startLine: 308 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.macOS @@ -596,7 +596,7 @@ items: repo: https://github.com/opentk/opentk.git id: EndIme path: opentk/src/OpenTK.Platform.Native/macOS/MacOSKeyboardComponent.cs - startLine: 318 + startLine: 314 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.macOS @@ -1028,35 +1028,42 @@ references: href: OpenTK.Core.Utility.html - uid: OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.Initialize* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.Initialize - href: OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.html#OpenTK_Platform_Native_macOS_MacOSKeyboardComponent_Initialize_OpenTK_Core_Platform_PalComponents_ + href: OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.html#OpenTK_Platform_Native_macOS_MacOSKeyboardComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ name: Initialize nameWithType: MacOSKeyboardComponent.Initialize fullName: OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.Initialize -- uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) - commentId: M:OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) +- uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + commentId: M:OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_PalComponents_ - name: Initialize(PalComponents) - nameWithType: IPalComponent.Initialize(PalComponents) - fullName: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + name: Initialize(ToolkitOptions) + nameWithType: IPalComponent.Initialize(ToolkitOptions) + fullName: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) spec.csharp: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_PalComponents_ + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.PalComponents - name: PalComponents - href: OpenTK.Core.Platform.PalComponents.html + - uid: OpenTK.Core.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Core.Platform.ToolkitOptions.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_PalComponents_ + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.PalComponents - name: PalComponents - href: OpenTK.Core.Platform.PalComponents.html + - uid: OpenTK.Core.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Core.Platform.ToolkitOptions.html - name: ) +- uid: OpenTK.Core.Platform.ToolkitOptions + commentId: T:OpenTK.Core.Platform.ToolkitOptions + parent: OpenTK.Core.Platform + href: OpenTK.Core.Platform.ToolkitOptions.html + name: ToolkitOptions + nameWithType: ToolkitOptions + fullName: OpenTK.Core.Platform.ToolkitOptions - uid: OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.SupportsLayouts* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.SupportsLayouts href: OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.html#OpenTK_Platform_Native_macOS_MacOSKeyboardComponent_SupportsLayouts diff --git a/api/OpenTK.Platform.Native.macOS.MacOSMouseComponent.yml b/api/OpenTK.Platform.Native.macOS.MacOSMouseComponent.yml index 7bce09ed..4dacd9c1 100644 --- a/api/OpenTK.Platform.Native.macOS.MacOSMouseComponent.yml +++ b/api/OpenTK.Platform.Native.macOS.MacOSMouseComponent.yml @@ -8,7 +8,7 @@ items: - OpenTK.Platform.Native.macOS.MacOSMouseComponent.CanSetMousePosition - OpenTK.Platform.Native.macOS.MacOSMouseComponent.GetMouseState(OpenTK.Core.Platform.MouseState@) - OpenTK.Platform.Native.macOS.MacOSMouseComponent.GetPosition(System.Int32@,System.Int32@) - - OpenTK.Platform.Native.macOS.MacOSMouseComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - OpenTK.Platform.Native.macOS.MacOSMouseComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - OpenTK.Platform.Native.macOS.MacOSMouseComponent.Logger - OpenTK.Platform.Native.macOS.MacOSMouseComponent.Name - OpenTK.Platform.Native.macOS.MacOSMouseComponent.Provides @@ -27,7 +27,7 @@ items: repo: https://github.com/opentk/opentk.git id: MacOSMouseComponent path: opentk/src/OpenTK.Platform.Native/macOS/MacOSMouseComponent.cs - startLine: 9 + startLine: 10 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.macOS @@ -65,7 +65,7 @@ items: repo: https://github.com/opentk/opentk.git id: Name path: opentk/src/OpenTK.Platform.Native/macOS/MacOSMouseComponent.cs - startLine: 22 + startLine: 23 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.macOS @@ -98,7 +98,7 @@ items: repo: https://github.com/opentk/opentk.git id: Provides path: opentk/src/OpenTK.Platform.Native/macOS/MacOSMouseComponent.cs - startLine: 25 + startLine: 26 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.macOS @@ -131,7 +131,7 @@ items: repo: https://github.com/opentk/opentk.git id: Logger path: opentk/src/OpenTK.Platform.Native/macOS/MacOSMouseComponent.cs - startLine: 28 + startLine: 29 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.macOS @@ -164,7 +164,7 @@ items: repo: https://github.com/opentk/opentk.git id: CanSetMousePosition path: opentk/src/OpenTK.Platform.Native/macOS/MacOSMouseComponent.cs - startLine: 31 + startLine: 32 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.macOS @@ -179,16 +179,16 @@ items: overload: OpenTK.Platform.Native.macOS.MacOSMouseComponent.CanSetMousePosition* implements: - OpenTK.Core.Platform.IMouseComponent.CanSetMousePosition -- uid: OpenTK.Platform.Native.macOS.MacOSMouseComponent.Initialize(OpenTK.Core.Platform.PalComponents) - commentId: M:OpenTK.Platform.Native.macOS.MacOSMouseComponent.Initialize(OpenTK.Core.Platform.PalComponents) - id: Initialize(OpenTK.Core.Platform.PalComponents) +- uid: OpenTK.Platform.Native.macOS.MacOSMouseComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Native.macOS.MacOSMouseComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + id: Initialize(OpenTK.Core.Platform.ToolkitOptions) parent: OpenTK.Platform.Native.macOS.MacOSMouseComponent langs: - csharp - vb - name: Initialize(PalComponents) - nameWithType: MacOSMouseComponent.Initialize(PalComponents) - fullName: OpenTK.Platform.Native.macOS.MacOSMouseComponent.Initialize(OpenTK.Core.Platform.PalComponents) + name: Initialize(ToolkitOptions) + nameWithType: MacOSMouseComponent.Initialize(ToolkitOptions) + fullName: OpenTK.Platform.Native.macOS.MacOSMouseComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) type: Method source: remote: @@ -197,22 +197,22 @@ items: repo: https://github.com/opentk/opentk.git id: Initialize path: opentk/src/OpenTK.Platform.Native/macOS/MacOSMouseComponent.cs - startLine: 34 + startLine: 35 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.macOS - summary: Initialize the driver. + summary: Initialize the component. example: [] syntax: - content: public void Initialize(PalComponents which) + content: public void Initialize(ToolkitOptions options) parameters: - - id: which - type: OpenTK.Core.Platform.PalComponents - description: Bitfield of which components the driver need to be initialized. - content.vb: Public Sub Initialize(which As PalComponents) + - id: options + type: OpenTK.Core.Platform.ToolkitOptions + description: The options to initialize the component with. + content.vb: Public Sub Initialize(options As ToolkitOptions) overload: OpenTK.Platform.Native.macOS.MacOSMouseComponent.Initialize* implements: - - OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - uid: OpenTK.Platform.Native.macOS.MacOSMouseComponent.GetPosition(System.Int32@,System.Int32@) commentId: M:OpenTK.Platform.Native.macOS.MacOSMouseComponent.GetPosition(System.Int32@,System.Int32@) id: GetPosition(System.Int32@,System.Int32@) @@ -231,7 +231,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetPosition path: opentk/src/OpenTK.Platform.Native/macOS/MacOSMouseComponent.cs - startLine: 56 + startLine: 49 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.macOS @@ -271,7 +271,7 @@ items: repo: https://github.com/opentk/opentk.git id: SetPosition path: opentk/src/OpenTK.Platform.Native/macOS/MacOSMouseComponent.cs - startLine: 70 + startLine: 59 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.macOS @@ -311,7 +311,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetMouseState path: opentk/src/OpenTK.Platform.Native/macOS/MacOSMouseComponent.cs - startLine: 95 + startLine: 80 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.macOS @@ -770,35 +770,42 @@ references: name.vb: Boolean - uid: OpenTK.Platform.Native.macOS.MacOSMouseComponent.Initialize* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSMouseComponent.Initialize - href: OpenTK.Platform.Native.macOS.MacOSMouseComponent.html#OpenTK_Platform_Native_macOS_MacOSMouseComponent_Initialize_OpenTK_Core_Platform_PalComponents_ + href: OpenTK.Platform.Native.macOS.MacOSMouseComponent.html#OpenTK_Platform_Native_macOS_MacOSMouseComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ name: Initialize nameWithType: MacOSMouseComponent.Initialize fullName: OpenTK.Platform.Native.macOS.MacOSMouseComponent.Initialize -- uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) - commentId: M:OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) +- uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + commentId: M:OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_PalComponents_ - name: Initialize(PalComponents) - nameWithType: IPalComponent.Initialize(PalComponents) - fullName: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + name: Initialize(ToolkitOptions) + nameWithType: IPalComponent.Initialize(ToolkitOptions) + fullName: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) spec.csharp: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_PalComponents_ + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.PalComponents - name: PalComponents - href: OpenTK.Core.Platform.PalComponents.html + - uid: OpenTK.Core.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Core.Platform.ToolkitOptions.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_PalComponents_ + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.PalComponents - name: PalComponents - href: OpenTK.Core.Platform.PalComponents.html + - uid: OpenTK.Core.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Core.Platform.ToolkitOptions.html - name: ) +- uid: OpenTK.Core.Platform.ToolkitOptions + commentId: T:OpenTK.Core.Platform.ToolkitOptions + parent: OpenTK.Core.Platform + href: OpenTK.Core.Platform.ToolkitOptions.html + name: ToolkitOptions + nameWithType: ToolkitOptions + fullName: OpenTK.Core.Platform.ToolkitOptions - uid: OpenTK.Platform.Native.macOS.MacOSMouseComponent.GetPosition* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSMouseComponent.GetPosition href: OpenTK.Platform.Native.macOS.MacOSMouseComponent.html#OpenTK_Platform_Native_macOS_MacOSMouseComponent_GetPosition_System_Int32__System_Int32__ diff --git a/api/OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.yml b/api/OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.yml index 6cd38da6..945b0fcf 100644 --- a/api/OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.yml +++ b/api/OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.yml @@ -17,7 +17,7 @@ items: - OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.GetProcedureAddress(OpenTK.Core.Platform.OpenGLContextHandle,System.String) - OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.GetSharedContext(OpenTK.Core.Platform.OpenGLContextHandle) - OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.GetSwapInterval - - OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.Logger - OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.Name - OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.Provides @@ -38,7 +38,7 @@ items: repo: https://github.com/opentk/opentk.git id: MacOSOpenGLComponent path: opentk/src/OpenTK.Platform.Native/macOS/MacOSOpenGLComponent.cs - startLine: 10 + startLine: 11 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.macOS @@ -76,7 +76,7 @@ items: repo: https://github.com/opentk/opentk.git id: Name path: opentk/src/OpenTK.Platform.Native/macOS/MacOSOpenGLComponent.cs - startLine: 31 + startLine: 34 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.macOS @@ -109,7 +109,7 @@ items: repo: https://github.com/opentk/opentk.git id: Provides path: opentk/src/OpenTK.Platform.Native/macOS/MacOSOpenGLComponent.cs - startLine: 34 + startLine: 37 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.macOS @@ -142,7 +142,7 @@ items: repo: https://github.com/opentk/opentk.git id: Logger path: opentk/src/OpenTK.Platform.Native/macOS/MacOSOpenGLComponent.cs - startLine: 37 + startLine: 40 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.macOS @@ -157,16 +157,16 @@ items: overload: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.Logger* implements: - OpenTK.Core.Platform.IPalComponent.Logger -- uid: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.Initialize(OpenTK.Core.Platform.PalComponents) - commentId: M:OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.Initialize(OpenTK.Core.Platform.PalComponents) - id: Initialize(OpenTK.Core.Platform.PalComponents) +- uid: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + id: Initialize(OpenTK.Core.Platform.ToolkitOptions) parent: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent langs: - csharp - vb - name: Initialize(PalComponents) - nameWithType: MacOSOpenGLComponent.Initialize(PalComponents) - fullName: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.Initialize(OpenTK.Core.Platform.PalComponents) + name: Initialize(ToolkitOptions) + nameWithType: MacOSOpenGLComponent.Initialize(ToolkitOptions) + fullName: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) type: Method source: remote: @@ -175,22 +175,22 @@ items: repo: https://github.com/opentk/opentk.git id: Initialize path: opentk/src/OpenTK.Platform.Native/macOS/MacOSOpenGLComponent.cs - startLine: 40 + startLine: 43 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.macOS - summary: Initialize the driver. + summary: Initialize the component. example: [] syntax: - content: public void Initialize(PalComponents which) + content: public void Initialize(ToolkitOptions options) parameters: - - id: which - type: OpenTK.Core.Platform.PalComponents - description: Bitfield of which components the driver need to be initialized. - content.vb: Public Sub Initialize(which As PalComponents) + - id: options + type: OpenTK.Core.Platform.ToolkitOptions + description: The options to initialize the component with. + content.vb: Public Sub Initialize(options As ToolkitOptions) overload: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.Initialize* implements: - - OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - uid: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.CanShareContexts commentId: P:OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.CanShareContexts id: CanShareContexts @@ -209,7 +209,7 @@ items: repo: https://github.com/opentk/opentk.git id: CanShareContexts path: opentk/src/OpenTK.Platform.Native/macOS/MacOSOpenGLComponent.cs - startLine: 46 + startLine: 49 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.macOS @@ -242,7 +242,7 @@ items: repo: https://github.com/opentk/opentk.git id: CanCreateFromWindow path: opentk/src/OpenTK.Platform.Native/macOS/MacOSOpenGLComponent.cs - startLine: 49 + startLine: 52 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.macOS @@ -275,7 +275,7 @@ items: repo: https://github.com/opentk/opentk.git id: CanCreateFromSurface path: opentk/src/OpenTK.Platform.Native/macOS/MacOSOpenGLComponent.cs - startLine: 52 + startLine: 55 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.macOS @@ -308,7 +308,7 @@ items: repo: https://github.com/opentk/opentk.git id: CreateFromSurface path: opentk/src/OpenTK.Platform.Native/macOS/MacOSOpenGLComponent.cs - startLine: 55 + startLine: 58 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.macOS @@ -341,7 +341,7 @@ items: repo: https://github.com/opentk/opentk.git id: CreateFromWindow path: opentk/src/OpenTK.Platform.Native/macOS/MacOSOpenGLComponent.cs - startLine: 61 + startLine: 227 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.macOS @@ -378,7 +378,7 @@ items: repo: https://github.com/opentk/opentk.git id: DestroyContext path: opentk/src/OpenTK.Platform.Native/macOS/MacOSOpenGLComponent.cs - startLine: 194 + startLine: 407 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.macOS @@ -416,7 +416,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetBindingsContext path: opentk/src/OpenTK.Platform.Native/macOS/MacOSOpenGLComponent.cs - startLine: 207 + startLine: 420 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.macOS @@ -453,7 +453,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetProcedureAddress path: opentk/src/OpenTK.Platform.Native/macOS/MacOSOpenGLComponent.cs - startLine: 213 + startLine: 426 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.macOS @@ -500,7 +500,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetCurrentContext path: opentk/src/OpenTK.Platform.Native/macOS/MacOSOpenGLComponent.cs - startLine: 220 + startLine: 433 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.macOS @@ -533,7 +533,7 @@ items: repo: https://github.com/opentk/opentk.git id: SetCurrentContext path: opentk/src/OpenTK.Platform.Native/macOS/MacOSOpenGLComponent.cs - startLine: 235 + startLine: 448 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.macOS @@ -573,7 +573,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetSharedContext path: opentk/src/OpenTK.Platform.Native/macOS/MacOSOpenGLComponent.cs - startLine: 252 + startLine: 465 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.macOS @@ -610,7 +610,7 @@ items: repo: https://github.com/opentk/opentk.git id: SetSwapInterval path: opentk/src/OpenTK.Platform.Native/macOS/MacOSOpenGLComponent.cs - startLine: 259 + startLine: 472 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.macOS @@ -647,7 +647,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetSwapInterval path: opentk/src/OpenTK.Platform.Native/macOS/MacOSOpenGLComponent.cs - startLine: 270 + startLine: 483 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.macOS @@ -680,7 +680,7 @@ items: repo: https://github.com/opentk/opentk.git id: SwapBuffers path: opentk/src/OpenTK.Platform.Native/macOS/MacOSOpenGLComponent.cs - startLine: 284 + startLine: 497 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.macOS @@ -714,7 +714,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetNSOpenGLContext path: opentk/src/OpenTK.Platform.Native/macOS/MacOSOpenGLComponent.cs - startLine: 295 + startLine: 508 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.macOS @@ -1147,35 +1147,42 @@ references: href: OpenTK.Core.Utility.html - uid: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.Initialize* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.Initialize - href: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.html#OpenTK_Platform_Native_macOS_MacOSOpenGLComponent_Initialize_OpenTK_Core_Platform_PalComponents_ + href: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.html#OpenTK_Platform_Native_macOS_MacOSOpenGLComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ name: Initialize nameWithType: MacOSOpenGLComponent.Initialize fullName: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.Initialize -- uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) - commentId: M:OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) +- uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + commentId: M:OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_PalComponents_ - name: Initialize(PalComponents) - nameWithType: IPalComponent.Initialize(PalComponents) - fullName: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + name: Initialize(ToolkitOptions) + nameWithType: IPalComponent.Initialize(ToolkitOptions) + fullName: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) spec.csharp: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_PalComponents_ + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.PalComponents - name: PalComponents - href: OpenTK.Core.Platform.PalComponents.html + - uid: OpenTK.Core.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Core.Platform.ToolkitOptions.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_PalComponents_ + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.PalComponents - name: PalComponents - href: OpenTK.Core.Platform.PalComponents.html + - uid: OpenTK.Core.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Core.Platform.ToolkitOptions.html - name: ) +- uid: OpenTK.Core.Platform.ToolkitOptions + commentId: T:OpenTK.Core.Platform.ToolkitOptions + parent: OpenTK.Core.Platform + href: OpenTK.Core.Platform.ToolkitOptions.html + name: ToolkitOptions + nameWithType: ToolkitOptions + fullName: OpenTK.Core.Platform.ToolkitOptions - uid: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.CanShareContexts* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.CanShareContexts href: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.html#OpenTK_Platform_Native_macOS_MacOSOpenGLComponent_CanShareContexts diff --git a/api/OpenTK.Platform.Native.macOS.MacOSShellComponent.yml b/api/OpenTK.Platform.Native.macOS.MacOSShellComponent.yml index 1bf51f69..889d2ea7 100644 --- a/api/OpenTK.Platform.Native.macOS.MacOSShellComponent.yml +++ b/api/OpenTK.Platform.Native.macOS.MacOSShellComponent.yml @@ -9,7 +9,7 @@ items: - OpenTK.Platform.Native.macOS.MacOSShellComponent.GetBatteryInfo(OpenTK.Core.Platform.BatteryInfo@) - OpenTK.Platform.Native.macOS.MacOSShellComponent.GetPreferredTheme - OpenTK.Platform.Native.macOS.MacOSShellComponent.GetSystemMemoryInformation - - OpenTK.Platform.Native.macOS.MacOSShellComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - OpenTK.Platform.Native.macOS.MacOSShellComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - OpenTK.Platform.Native.macOS.MacOSShellComponent.Logger - OpenTK.Platform.Native.macOS.MacOSShellComponent.Name - OpenTK.Platform.Native.macOS.MacOSShellComponent.Provides @@ -146,16 +146,16 @@ items: overload: OpenTK.Platform.Native.macOS.MacOSShellComponent.Logger* implements: - OpenTK.Core.Platform.IPalComponent.Logger -- uid: OpenTK.Platform.Native.macOS.MacOSShellComponent.Initialize(OpenTK.Core.Platform.PalComponents) - commentId: M:OpenTK.Platform.Native.macOS.MacOSShellComponent.Initialize(OpenTK.Core.Platform.PalComponents) - id: Initialize(OpenTK.Core.Platform.PalComponents) +- uid: OpenTK.Platform.Native.macOS.MacOSShellComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Native.macOS.MacOSShellComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + id: Initialize(OpenTK.Core.Platform.ToolkitOptions) parent: OpenTK.Platform.Native.macOS.MacOSShellComponent langs: - csharp - vb - name: Initialize(PalComponents) - nameWithType: MacOSShellComponent.Initialize(PalComponents) - fullName: OpenTK.Platform.Native.macOS.MacOSShellComponent.Initialize(OpenTK.Core.Platform.PalComponents) + name: Initialize(ToolkitOptions) + nameWithType: MacOSShellComponent.Initialize(ToolkitOptions) + fullName: OpenTK.Platform.Native.macOS.MacOSShellComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) type: Method source: remote: @@ -168,18 +168,18 @@ items: assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.macOS - summary: Initialize the driver. + summary: Initialize the component. example: [] syntax: - content: public void Initialize(PalComponents which) + content: public void Initialize(ToolkitOptions options) parameters: - - id: which - type: OpenTK.Core.Platform.PalComponents - description: Bitfield of which components the driver need to be initialized. - content.vb: Public Sub Initialize(which As PalComponents) + - id: options + type: OpenTK.Core.Platform.ToolkitOptions + description: The options to initialize the component with. + content.vb: Public Sub Initialize(options As ToolkitOptions) overload: OpenTK.Platform.Native.macOS.MacOSShellComponent.Initialize* implements: - - OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - uid: OpenTK.Platform.Native.macOS.MacOSShellComponent.AllowScreenSaver(System.Boolean) commentId: M:OpenTK.Platform.Native.macOS.MacOSShellComponent.AllowScreenSaver(System.Boolean) id: AllowScreenSaver(System.Boolean) @@ -198,7 +198,7 @@ items: repo: https://github.com/opentk/opentk.git id: AllowScreenSaver path: opentk/src/OpenTK.Platform.Native/macOS/MacOSShellComponent.cs - startLine: 55 + startLine: 50 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.macOS @@ -242,7 +242,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetBatteryInfo path: opentk/src/OpenTK.Platform.Native/macOS/MacOSShellComponent.cs - startLine: 82 + startLine: 77 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.macOS @@ -284,7 +284,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetPreferredTheme path: opentk/src/OpenTK.Platform.Native/macOS/MacOSShellComponent.cs - startLine: 235 + startLine: 230 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.macOS @@ -317,7 +317,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetSystemMemoryInformation path: opentk/src/OpenTK.Platform.Native/macOS/MacOSShellComponent.cs - startLine: 240 + startLine: 235 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.macOS @@ -748,35 +748,42 @@ references: href: OpenTK.Core.Utility.html - uid: OpenTK.Platform.Native.macOS.MacOSShellComponent.Initialize* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSShellComponent.Initialize - href: OpenTK.Platform.Native.macOS.MacOSShellComponent.html#OpenTK_Platform_Native_macOS_MacOSShellComponent_Initialize_OpenTK_Core_Platform_PalComponents_ + href: OpenTK.Platform.Native.macOS.MacOSShellComponent.html#OpenTK_Platform_Native_macOS_MacOSShellComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ name: Initialize nameWithType: MacOSShellComponent.Initialize fullName: OpenTK.Platform.Native.macOS.MacOSShellComponent.Initialize -- uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) - commentId: M:OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) +- uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + commentId: M:OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_PalComponents_ - name: Initialize(PalComponents) - nameWithType: IPalComponent.Initialize(PalComponents) - fullName: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + name: Initialize(ToolkitOptions) + nameWithType: IPalComponent.Initialize(ToolkitOptions) + fullName: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) spec.csharp: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_PalComponents_ + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.PalComponents - name: PalComponents - href: OpenTK.Core.Platform.PalComponents.html + - uid: OpenTK.Core.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Core.Platform.ToolkitOptions.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_PalComponents_ + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.PalComponents - name: PalComponents - href: OpenTK.Core.Platform.PalComponents.html + - uid: OpenTK.Core.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Core.Platform.ToolkitOptions.html - name: ) +- uid: OpenTK.Core.Platform.ToolkitOptions + commentId: T:OpenTK.Core.Platform.ToolkitOptions + parent: OpenTK.Core.Platform + href: OpenTK.Core.Platform.ToolkitOptions.html + name: ToolkitOptions + nameWithType: ToolkitOptions + fullName: OpenTK.Core.Platform.ToolkitOptions - uid: OpenTK.Platform.Native.macOS.MacOSShellComponent.AllowScreenSaver* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSShellComponent.AllowScreenSaver href: OpenTK.Platform.Native.macOS.MacOSShellComponent.html#OpenTK_Platform_Native_macOS_MacOSShellComponent_AllowScreenSaver_System_Boolean_ diff --git a/api/OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml b/api/OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml index 82336923..f294121e 100644 --- a/api/OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml +++ b/api/OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml @@ -29,10 +29,12 @@ items: - OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetNSView(OpenTK.Core.Platform.WindowHandle) - OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetNSWindow(OpenTK.Core.Platform.WindowHandle) - OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetPosition(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) + - OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetScaleFactor(OpenTK.Core.Platform.WindowHandle,System.Single@,System.Single@) - OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) - OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetTitle(OpenTK.Core.Platform.WindowHandle) - - OpenTK.Platform.Native.macOS.MacOSWindowComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - OpenTK.Platform.Native.macOS.MacOSWindowComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - OpenTK.Platform.Native.macOS.MacOSWindowComponent.IsAlwaysOnTop(OpenTK.Core.Platform.WindowHandle) + - OpenTK.Platform.Native.macOS.MacOSWindowComponent.IsFocused(OpenTK.Core.Platform.WindowHandle) - OpenTK.Platform.Native.macOS.MacOSWindowComponent.IsWindowDestroyed(OpenTK.Core.Platform.WindowHandle) - OpenTK.Platform.Native.macOS.MacOSWindowComponent.Logger - OpenTK.Platform.Native.macOS.MacOSWindowComponent.Name @@ -51,6 +53,7 @@ items: - OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetDockIcon(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.IconHandle) - OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle) - OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle,OpenTK.Core.Platform.VideoMode) + - OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetFullscreenDisplayNoSpace(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle) - OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetHitTestCallback(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.HitTest) - OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetIcon(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.IconHandle) - OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetMaxClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) @@ -76,7 +79,7 @@ items: repo: https://github.com/opentk/opentk.git id: MacOSWindowComponent path: opentk/src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs - startLine: 14 + startLine: 15 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.macOS @@ -114,7 +117,7 @@ items: repo: https://github.com/opentk/opentk.git id: Name path: opentk/src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs - startLine: 153 + startLine: 190 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.macOS @@ -147,7 +150,7 @@ items: repo: https://github.com/opentk/opentk.git id: Provides path: opentk/src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs - startLine: 156 + startLine: 193 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.macOS @@ -180,7 +183,7 @@ items: repo: https://github.com/opentk/opentk.git id: Logger path: opentk/src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs - startLine: 159 + startLine: 196 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.macOS @@ -195,16 +198,16 @@ items: overload: OpenTK.Platform.Native.macOS.MacOSWindowComponent.Logger* implements: - OpenTK.Core.Platform.IPalComponent.Logger -- uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.Initialize(OpenTK.Core.Platform.PalComponents) - commentId: M:OpenTK.Platform.Native.macOS.MacOSWindowComponent.Initialize(OpenTK.Core.Platform.PalComponents) - id: Initialize(OpenTK.Core.Platform.PalComponents) +- uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Native.macOS.MacOSWindowComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + id: Initialize(OpenTK.Core.Platform.ToolkitOptions) parent: OpenTK.Platform.Native.macOS.MacOSWindowComponent langs: - csharp - vb - name: Initialize(PalComponents) - nameWithType: MacOSWindowComponent.Initialize(PalComponents) - fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.Initialize(OpenTK.Core.Platform.PalComponents) + name: Initialize(ToolkitOptions) + nameWithType: MacOSWindowComponent.Initialize(ToolkitOptions) + fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) type: Method source: remote: @@ -213,22 +216,22 @@ items: repo: https://github.com/opentk/opentk.git id: Initialize path: opentk/src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs - startLine: 162 + startLine: 199 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.macOS - summary: Initialize the driver. + summary: Initialize the component. example: [] syntax: - content: public void Initialize(PalComponents which) + content: public void Initialize(ToolkitOptions options) parameters: - - id: which - type: OpenTK.Core.Platform.PalComponents - description: Bitfield of which components the driver need to be initialized. - content.vb: Public Sub Initialize(which As PalComponents) + - id: options + type: OpenTK.Core.Platform.ToolkitOptions + description: The options to initialize the component with. + content.vb: Public Sub Initialize(options As ToolkitOptions) overload: OpenTK.Platform.Native.macOS.MacOSWindowComponent.Initialize* implements: - - OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.CanSetIcon commentId: P:OpenTK.Platform.Native.macOS.MacOSWindowComponent.CanSetIcon id: CanSetIcon @@ -247,7 +250,7 @@ items: repo: https://github.com/opentk/opentk.git id: CanSetIcon path: opentk/src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs - startLine: 787 + startLine: 970 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.macOS @@ -280,7 +283,7 @@ items: repo: https://github.com/opentk/opentk.git id: CanGetDisplay path: opentk/src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs - startLine: 790 + startLine: 973 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.macOS @@ -313,7 +316,7 @@ items: repo: https://github.com/opentk/opentk.git id: CanSetCursor path: opentk/src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs - startLine: 793 + startLine: 976 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.macOS @@ -346,7 +349,7 @@ items: repo: https://github.com/opentk/opentk.git id: CanCaptureCursor path: opentk/src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs - startLine: 796 + startLine: 979 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.macOS @@ -379,7 +382,7 @@ items: repo: https://github.com/opentk/opentk.git id: SupportedEvents path: opentk/src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs - startLine: 799 + startLine: 982 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.macOS @@ -412,7 +415,7 @@ items: repo: https://github.com/opentk/opentk.git id: SupportedStyles path: opentk/src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs - startLine: 802 + startLine: 985 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.macOS @@ -445,7 +448,7 @@ items: repo: https://github.com/opentk/opentk.git id: SupportedModes path: opentk/src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs - startLine: 805 + startLine: 988 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.macOS @@ -478,7 +481,7 @@ items: repo: https://github.com/opentk/opentk.git id: ProcessEvents path: opentk/src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs - startLine: 809 + startLine: 993 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.macOS @@ -515,7 +518,7 @@ items: repo: https://github.com/opentk/opentk.git id: Create path: opentk/src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs - startLine: 1126 + startLine: 1338 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.macOS @@ -552,7 +555,7 @@ items: repo: https://github.com/opentk/opentk.git id: Destroy path: opentk/src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs - startLine: 1183 + startLine: 1400 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.macOS @@ -590,7 +593,7 @@ items: repo: https://github.com/opentk/opentk.git id: IsWindowDestroyed path: opentk/src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs - startLine: 1199 + startLine: 1422 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.macOS @@ -627,7 +630,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetTitle path: opentk/src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs - startLine: 1207 + startLine: 1430 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.macOS @@ -668,7 +671,7 @@ items: repo: https://github.com/opentk/opentk.git id: SetTitle path: opentk/src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs - startLine: 1217 + startLine: 1440 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.macOS @@ -712,7 +715,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetIcon path: opentk/src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs - startLine: 1225 + startLine: 1448 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.macOS @@ -756,7 +759,7 @@ items: repo: https://github.com/opentk/opentk.git id: SetIcon path: opentk/src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs - startLine: 1233 + startLine: 1456 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.macOS @@ -800,7 +803,7 @@ items: repo: https://github.com/opentk/opentk.git id: SetDockIcon path: opentk/src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs - startLine: 1245 + startLine: 1468 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.macOS @@ -831,7 +834,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetPosition path: opentk/src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs - startLine: 1274 + startLine: 1497 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.macOS @@ -878,7 +881,7 @@ items: repo: https://github.com/opentk/opentk.git id: SetPosition path: opentk/src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs - startLine: 1285 + startLine: 1508 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.macOS @@ -925,7 +928,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetSize path: opentk/src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs - startLine: 1296 + startLine: 1519 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.macOS @@ -972,7 +975,7 @@ items: repo: https://github.com/opentk/opentk.git id: SetSize path: opentk/src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs - startLine: 1308 + startLine: 1531 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.macOS @@ -1019,7 +1022,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetBounds path: opentk/src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs - startLine: 1321 + startLine: 1544 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.macOS @@ -1068,7 +1071,7 @@ items: repo: https://github.com/opentk/opentk.git id: SetBounds path: opentk/src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs - startLine: 1335 + startLine: 1558 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.macOS @@ -1117,7 +1120,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetClientPosition path: opentk/src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs - startLine: 1352 + startLine: 1575 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.macOS @@ -1164,7 +1167,7 @@ items: repo: https://github.com/opentk/opentk.git id: SetClientPosition path: opentk/src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs - startLine: 1365 + startLine: 1588 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.macOS @@ -1211,7 +1214,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetClientSize path: opentk/src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs - startLine: 1372 + startLine: 1604 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.macOS @@ -1258,7 +1261,7 @@ items: repo: https://github.com/opentk/opentk.git id: SetClientSize path: opentk/src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs - startLine: 1385 + startLine: 1617 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.macOS @@ -1305,7 +1308,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetClientBounds path: opentk/src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs - startLine: 1395 + startLine: 1627 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.macOS @@ -1354,7 +1357,7 @@ items: repo: https://github.com/opentk/opentk.git id: SetClientBounds path: opentk/src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs - startLine: 1411 + startLine: 1643 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.macOS @@ -1403,21 +1406,31 @@ items: repo: https://github.com/opentk/opentk.git id: GetFramebufferSize path: opentk/src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs - startLine: 1419 + startLine: 1656 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.macOS + summary: >- + Get the size of the window framebuffer in pixels. + + Use this value when calls to graphics APIs that want pixels, e.g. GL.Viewport(). + example: [] syntax: content: public void GetFramebufferSize(WindowHandle handle, out int width, out int height) parameters: - id: handle type: OpenTK.Core.Platform.WindowHandle + description: Handle to a window. - id: width type: System.Int32 + description: Width in pixels of the window framebuffer. - id: height type: System.Int32 + description: Height in pixels of the window framebuffer. content.vb: Public Sub GetFramebufferSize(handle As WindowHandle, width As Integer, height As Integer) overload: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetFramebufferSize* + implements: + - OpenTK.Core.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) nameWithType.vb: MacOSWindowComponent.GetFramebufferSize(WindowHandle, Integer, Integer) fullName.vb: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetFramebufferSize(OpenTK.Core.Platform.WindowHandle, Integer, Integer) name.vb: GetFramebufferSize(WindowHandle, Integer, Integer) @@ -1439,7 +1452,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetMaxClientSize path: opentk/src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs - startLine: 1431 + startLine: 1668 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.macOS @@ -1482,7 +1495,7 @@ items: repo: https://github.com/opentk/opentk.git id: SetMaxClientSize path: opentk/src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs - startLine: 1440 + startLine: 1677 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.macOS @@ -1525,7 +1538,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetMinClientSize path: opentk/src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs - startLine: 1454 + startLine: 1691 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.macOS @@ -1568,7 +1581,7 @@ items: repo: https://github.com/opentk/opentk.git id: SetMinClientSize path: opentk/src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs - startLine: 1463 + startLine: 1700 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.macOS @@ -1611,7 +1624,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetDisplay path: opentk/src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs - startLine: 1477 + startLine: 1714 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.macOS @@ -1655,7 +1668,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetMode path: opentk/src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs - startLine: 1553 + startLine: 1790 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.macOS @@ -1696,7 +1709,7 @@ items: repo: https://github.com/opentk/opentk.git id: SetMode path: opentk/src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs - startLine: 1581 + startLine: 1818 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.macOS @@ -1733,6 +1746,47 @@ items: description: Driver does not support the value set by mode. See . implements: - OpenTK.Core.Platform.IWindowComponent.SetMode(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.WindowMode) +- uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetFullscreenDisplayNoSpace(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle) + commentId: M:OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetFullscreenDisplayNoSpace(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle) + id: SetFullscreenDisplayNoSpace(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle) + parent: OpenTK.Platform.Native.macOS.MacOSWindowComponent + langs: + - csharp + - vb + name: SetFullscreenDisplayNoSpace(WindowHandle, DisplayHandle?) + nameWithType: MacOSWindowComponent.SetFullscreenDisplayNoSpace(WindowHandle, DisplayHandle?) + fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetFullscreenDisplayNoSpace(OpenTK.Core.Platform.WindowHandle, OpenTK.Core.Platform.DisplayHandle?) + type: Method + source: + remote: + path: src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: SetFullscreenDisplayNoSpace + path: opentk/src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs + startLine: 1945 + assemblies: + - OpenTK.Platform.Native + namespace: OpenTK.Platform.Native.macOS + summary: >- + Put a window into 'windowed fullscreen' on a specific display without creating a space for it. + + If display is null then the window will be made fullscreen on the 'nearest' display. + example: [] + syntax: + content: public void SetFullscreenDisplayNoSpace(WindowHandle window, DisplayHandle? display) + parameters: + - id: window + type: OpenTK.Core.Platform.WindowHandle + description: The window to make fullscreen. + - id: display + type: OpenTK.Core.Platform.DisplayHandle + description: The display to make the window fullscreen on. + content.vb: Public Sub SetFullscreenDisplayNoSpace(window As WindowHandle, display As DisplayHandle) + overload: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetFullscreenDisplayNoSpace* + nameWithType.vb: MacOSWindowComponent.SetFullscreenDisplayNoSpace(WindowHandle, DisplayHandle) + fullName.vb: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetFullscreenDisplayNoSpace(OpenTK.Core.Platform.WindowHandle, OpenTK.Core.Platform.DisplayHandle) + name.vb: SetFullscreenDisplayNoSpace(WindowHandle, DisplayHandle) - uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle) commentId: M:OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle) id: SetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle) @@ -1751,7 +1805,7 @@ items: repo: https://github.com/opentk/opentk.git id: SetFullscreenDisplay path: opentk/src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs - startLine: 1665 + startLine: 1982 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.macOS @@ -1762,14 +1816,15 @@ items: remarks: To make an 'exclusive fullscreen' window see . example: [] syntax: - content: public void SetFullscreenDisplay(WindowHandle window, DisplayHandle? display) + content: public void SetFullscreenDisplay(WindowHandle handle, DisplayHandle? display) parameters: - - id: window + - id: handle type: OpenTK.Core.Platform.WindowHandle + description: The window to make fullscreen. - id: display type: OpenTK.Core.Platform.DisplayHandle description: The display to make the window fullscreen on. - content.vb: Public Sub SetFullscreenDisplay(window As WindowHandle, display As DisplayHandle) + content.vb: Public Sub SetFullscreenDisplay(handle As WindowHandle, display As DisplayHandle) overload: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetFullscreenDisplay* implements: - OpenTK.Core.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle) @@ -1794,7 +1849,7 @@ items: repo: https://github.com/opentk/opentk.git id: SetFullscreenDisplay path: opentk/src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs - startLine: 1671 + startLine: 2006 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.macOS @@ -1839,7 +1894,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetFullscreenDisplay path: opentk/src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs - startLine: 1677 + startLine: 2012 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.macOS @@ -1881,7 +1936,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetBorderStyle path: opentk/src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs - startLine: 1683 + startLine: 2020 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.macOS @@ -1922,7 +1977,7 @@ items: repo: https://github.com/opentk/opentk.git id: SetBorderStyle path: opentk/src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs - startLine: 1709 + startLine: 2046 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.macOS @@ -1969,7 +2024,7 @@ items: repo: https://github.com/opentk/opentk.git id: SetAlwaysOnTop path: opentk/src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs - startLine: 1759 + startLine: 2096 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.macOS @@ -2009,7 +2064,7 @@ items: repo: https://github.com/opentk/opentk.git id: IsAlwaysOnTop path: opentk/src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs - startLine: 1774 + startLine: 2111 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.macOS @@ -2046,7 +2101,7 @@ items: repo: https://github.com/opentk/opentk.git id: SetHitTestCallback path: opentk/src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs - startLine: 1791 + startLine: 2128 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.macOS @@ -2096,7 +2151,7 @@ items: repo: https://github.com/opentk/opentk.git id: SetCursor path: opentk/src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs - startLine: 1806 + startLine: 2143 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.macOS @@ -2143,7 +2198,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetCursorCaptureMode path: opentk/src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs - startLine: 1817 + startLine: 2154 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.macOS @@ -2180,7 +2235,7 @@ items: repo: https://github.com/opentk/opentk.git id: SetCursorCaptureMode path: opentk/src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs - startLine: 1823 + startLine: 2161 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.macOS @@ -2202,6 +2257,43 @@ items: overload: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetCursorCaptureMode* implements: - OpenTK.Core.Platform.IWindowComponent.SetCursorCaptureMode(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.CursorCaptureMode) +- uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.IsFocused(OpenTK.Core.Platform.WindowHandle) + commentId: M:OpenTK.Platform.Native.macOS.MacOSWindowComponent.IsFocused(OpenTK.Core.Platform.WindowHandle) + id: IsFocused(OpenTK.Core.Platform.WindowHandle) + parent: OpenTK.Platform.Native.macOS.MacOSWindowComponent + langs: + - csharp + - vb + name: IsFocused(WindowHandle) + nameWithType: MacOSWindowComponent.IsFocused(WindowHandle) + fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.IsFocused(OpenTK.Core.Platform.WindowHandle) + type: Method + source: + remote: + path: src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: IsFocused + path: opentk/src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs + startLine: 2242 + assemblies: + - OpenTK.Platform.Native + namespace: OpenTK.Platform.Native.macOS + summary: Returns true if the given window has input focus. + example: [] + syntax: + content: public bool IsFocused(WindowHandle handle) + parameters: + - id: handle + type: OpenTK.Core.Platform.WindowHandle + description: Handle to a window. + return: + type: System.Boolean + description: If the window has input focus. + content.vb: Public Function IsFocused(handle As WindowHandle) As Boolean + overload: OpenTK.Platform.Native.macOS.MacOSWindowComponent.IsFocused* + implements: + - OpenTK.Core.Platform.IWindowComponent.IsFocused(OpenTK.Core.Platform.WindowHandle) - uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.FocusWindow(OpenTK.Core.Platform.WindowHandle) commentId: M:OpenTK.Platform.Native.macOS.MacOSWindowComponent.FocusWindow(OpenTK.Core.Platform.WindowHandle) id: FocusWindow(OpenTK.Core.Platform.WindowHandle) @@ -2220,7 +2312,7 @@ items: repo: https://github.com/opentk/opentk.git id: FocusWindow path: opentk/src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs - startLine: 1829 + startLine: 2251 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.macOS @@ -2254,7 +2346,7 @@ items: repo: https://github.com/opentk/opentk.git id: RequestAttention path: opentk/src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs - startLine: 1837 + startLine: 2259 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.macOS @@ -2288,7 +2380,7 @@ items: repo: https://github.com/opentk/opentk.git id: ScreenToClient path: opentk/src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs - startLine: 1846 + startLine: 2280 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.macOS @@ -2337,7 +2429,7 @@ items: repo: https://github.com/opentk/opentk.git id: ClientToScreen path: opentk/src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs - startLine: 1852 + startLine: 2291 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.macOS @@ -2368,6 +2460,52 @@ items: nameWithType.vb: MacOSWindowComponent.ClientToScreen(WindowHandle, Integer, Integer, Integer, Integer) fullName.vb: OpenTK.Platform.Native.macOS.MacOSWindowComponent.ClientToScreen(OpenTK.Core.Platform.WindowHandle, Integer, Integer, Integer, Integer) name.vb: ClientToScreen(WindowHandle, Integer, Integer, Integer, Integer) +- uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetScaleFactor(OpenTK.Core.Platform.WindowHandle,System.Single@,System.Single@) + commentId: M:OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetScaleFactor(OpenTK.Core.Platform.WindowHandle,System.Single@,System.Single@) + id: GetScaleFactor(OpenTK.Core.Platform.WindowHandle,System.Single@,System.Single@) + parent: OpenTK.Platform.Native.macOS.MacOSWindowComponent + langs: + - csharp + - vb + name: GetScaleFactor(WindowHandle, out float, out float) + nameWithType: MacOSWindowComponent.GetScaleFactor(WindowHandle, out float, out float) + fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetScaleFactor(OpenTK.Core.Platform.WindowHandle, out float, out float) + type: Method + source: + remote: + path: src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: GetScaleFactor + path: opentk/src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs + startLine: 2302 + assemblies: + - OpenTK.Platform.Native + namespace: OpenTK.Platform.Native.macOS + summary: Returns the current scale factor of this window. + example: [] + syntax: + content: public void GetScaleFactor(WindowHandle handle, out float scaleX, out float scaleY) + parameters: + - id: handle + type: OpenTK.Core.Platform.WindowHandle + description: The window handle. + - id: scaleX + type: System.Single + description: The x scale factor of the window. + - id: scaleY + type: System.Single + description: The y scale factor of the window. + content.vb: Public Sub GetScaleFactor(handle As WindowHandle, scaleX As Single, scaleY As Single) + overload: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetScaleFactor* + seealso: + - linkId: OpenTK.Core.Platform.WindowScaleChangeEventArgs + commentId: T:OpenTK.Core.Platform.WindowScaleChangeEventArgs + implements: + - OpenTK.Core.Platform.IWindowComponent.GetScaleFactor(OpenTK.Core.Platform.WindowHandle,System.Single@,System.Single@) + nameWithType.vb: MacOSWindowComponent.GetScaleFactor(WindowHandle, Single, Single) + fullName.vb: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetScaleFactor(OpenTK.Core.Platform.WindowHandle, Single, Single) + name.vb: GetScaleFactor(WindowHandle, Single, Single) - uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetNSWindow(OpenTK.Core.Platform.WindowHandle) commentId: M:OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetNSWindow(OpenTK.Core.Platform.WindowHandle) id: GetNSWindow(OpenTK.Core.Platform.WindowHandle) @@ -2386,7 +2524,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetNSWindow path: opentk/src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs - startLine: 1863 + startLine: 2319 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.macOS @@ -2424,7 +2562,7 @@ items: repo: https://github.com/opentk/opentk.git id: GetNSView path: opentk/src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs - startLine: 1876 + startLine: 2332 assemblies: - OpenTK.Platform.Native namespace: OpenTK.Platform.Native.macOS @@ -2860,35 +2998,42 @@ references: href: OpenTK.Core.Utility.html - uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.Initialize* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSWindowComponent.Initialize - href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_Initialize_OpenTK_Core_Platform_PalComponents_ + href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ name: Initialize nameWithType: MacOSWindowComponent.Initialize fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.Initialize -- uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) - commentId: M:OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) +- uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + commentId: M:OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_PalComponents_ - name: Initialize(PalComponents) - nameWithType: IPalComponent.Initialize(PalComponents) - fullName: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + name: Initialize(ToolkitOptions) + nameWithType: IPalComponent.Initialize(ToolkitOptions) + fullName: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) spec.csharp: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_PalComponents_ + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.PalComponents - name: PalComponents - href: OpenTK.Core.Platform.PalComponents.html + - uid: OpenTK.Core.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Core.Platform.ToolkitOptions.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.PalComponents) + - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_PalComponents_ + href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.PalComponents - name: PalComponents - href: OpenTK.Core.Platform.PalComponents.html + - uid: OpenTK.Core.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Core.Platform.ToolkitOptions.html - name: ) +- uid: OpenTK.Core.Platform.ToolkitOptions + commentId: T:OpenTK.Core.Platform.ToolkitOptions + parent: OpenTK.Core.Platform + href: OpenTK.Core.Platform.ToolkitOptions.html + name: ToolkitOptions + nameWithType: ToolkitOptions + fullName: OpenTK.Core.Platform.ToolkitOptions - uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.CanSetIcon* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSWindowComponent.CanSetIcon href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_CanSetIcon @@ -4335,6 +4480,63 @@ references: name: GetFramebufferSize nameWithType: MacOSWindowComponent.GetFramebufferSize fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetFramebufferSize +- uid: OpenTK.Core.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) + commentId: M:OpenTK.Core.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) + parent: OpenTK.Core.Platform.IWindowComponent + isExternal: true + href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetFramebufferSize_OpenTK_Core_Platform_WindowHandle_System_Int32__System_Int32__ + name: GetFramebufferSize(WindowHandle, out int, out int) + nameWithType: IWindowComponent.GetFramebufferSize(WindowHandle, out int, out int) + fullName: OpenTK.Core.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Core.Platform.WindowHandle, out int, out int) + nameWithType.vb: IWindowComponent.GetFramebufferSize(WindowHandle, Integer, Integer) + fullName.vb: OpenTK.Core.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Core.Platform.WindowHandle, Integer, Integer) + name.vb: GetFramebufferSize(WindowHandle, Integer, Integer) + spec.csharp: + - uid: OpenTK.Core.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) + name: GetFramebufferSize + href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetFramebufferSize_OpenTK_Core_Platform_WindowHandle_System_Int32__System_Int32__ + - name: ( + - uid: OpenTK.Core.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Core.Platform.WindowHandle.html + - name: ',' + - name: " " + - name: out + - name: " " + - uid: System.Int32 + name: int + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ',' + - name: " " + - name: out + - name: " " + - uid: System.Int32 + name: int + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ) + spec.vb: + - uid: OpenTK.Core.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) + name: GetFramebufferSize + href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetFramebufferSize_OpenTK_Core_Platform_WindowHandle_System_Int32__System_Int32__ + - name: ( + - uid: OpenTK.Core.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Core.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: System.Int32 + name: Integer + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ',' + - name: " " + - uid: System.Int32 + name: Integer + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ) - uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetMaxClientSize* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetMaxClientSize href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_GetMaxClientSize_OpenTK_Core_Platform_WindowHandle_System_Nullable_System_Int32___System_Nullable_System_Int32___ @@ -4862,6 +5064,12 @@ references: name: WindowMode href: OpenTK.Core.Platform.WindowMode.html - name: ) +- uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetFullscreenDisplayNoSpace* + commentId: Overload:OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetFullscreenDisplayNoSpace + href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_SetFullscreenDisplayNoSpace_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_DisplayHandle_ + name: SetFullscreenDisplayNoSpace + nameWithType: MacOSWindowComponent.SetFullscreenDisplayNoSpace + fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetFullscreenDisplayNoSpace - uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetFullscreenDisplay* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetFullscreenDisplay href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_SetFullscreenDisplay_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_DisplayHandle_ @@ -5285,6 +5493,37 @@ references: name: SetCursorCaptureMode nameWithType: MacOSWindowComponent.SetCursorCaptureMode fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetCursorCaptureMode +- uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.IsFocused* + commentId: Overload:OpenTK.Platform.Native.macOS.MacOSWindowComponent.IsFocused + href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_IsFocused_OpenTK_Core_Platform_WindowHandle_ + name: IsFocused + nameWithType: MacOSWindowComponent.IsFocused + fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.IsFocused +- uid: OpenTK.Core.Platform.IWindowComponent.IsFocused(OpenTK.Core.Platform.WindowHandle) + commentId: M:OpenTK.Core.Platform.IWindowComponent.IsFocused(OpenTK.Core.Platform.WindowHandle) + parent: OpenTK.Core.Platform.IWindowComponent + href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_IsFocused_OpenTK_Core_Platform_WindowHandle_ + name: IsFocused(WindowHandle) + nameWithType: IWindowComponent.IsFocused(WindowHandle) + fullName: OpenTK.Core.Platform.IWindowComponent.IsFocused(OpenTK.Core.Platform.WindowHandle) + spec.csharp: + - uid: OpenTK.Core.Platform.IWindowComponent.IsFocused(OpenTK.Core.Platform.WindowHandle) + name: IsFocused + href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_IsFocused_OpenTK_Core_Platform_WindowHandle_ + - name: ( + - uid: OpenTK.Core.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Core.Platform.WindowHandle.html + - name: ) + spec.vb: + - uid: OpenTK.Core.Platform.IWindowComponent.IsFocused(OpenTK.Core.Platform.WindowHandle) + name: IsFocused + href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_IsFocused_OpenTK_Core_Platform_WindowHandle_ + - name: ( + - uid: OpenTK.Core.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Core.Platform.WindowHandle.html + - name: ) - uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.FocusWindow* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSWindowComponent.FocusWindow href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_FocusWindow_OpenTK_Core_Platform_WindowHandle_ @@ -5521,6 +5760,86 @@ references: isExternal: true href: https://learn.microsoft.com/dotnet/api/system.int32 - name: ) +- uid: OpenTK.Core.Platform.WindowScaleChangeEventArgs + commentId: T:OpenTK.Core.Platform.WindowScaleChangeEventArgs + href: OpenTK.Core.Platform.WindowScaleChangeEventArgs.html + name: WindowScaleChangeEventArgs + nameWithType: WindowScaleChangeEventArgs + fullName: OpenTK.Core.Platform.WindowScaleChangeEventArgs +- uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetScaleFactor* + commentId: Overload:OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetScaleFactor + href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_GetScaleFactor_OpenTK_Core_Platform_WindowHandle_System_Single__System_Single__ + name: GetScaleFactor + nameWithType: MacOSWindowComponent.GetScaleFactor + fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetScaleFactor +- uid: OpenTK.Core.Platform.IWindowComponent.GetScaleFactor(OpenTK.Core.Platform.WindowHandle,System.Single@,System.Single@) + commentId: M:OpenTK.Core.Platform.IWindowComponent.GetScaleFactor(OpenTK.Core.Platform.WindowHandle,System.Single@,System.Single@) + parent: OpenTK.Core.Platform.IWindowComponent + isExternal: true + href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetScaleFactor_OpenTK_Core_Platform_WindowHandle_System_Single__System_Single__ + name: GetScaleFactor(WindowHandle, out float, out float) + nameWithType: IWindowComponent.GetScaleFactor(WindowHandle, out float, out float) + fullName: OpenTK.Core.Platform.IWindowComponent.GetScaleFactor(OpenTK.Core.Platform.WindowHandle, out float, out float) + nameWithType.vb: IWindowComponent.GetScaleFactor(WindowHandle, Single, Single) + fullName.vb: OpenTK.Core.Platform.IWindowComponent.GetScaleFactor(OpenTK.Core.Platform.WindowHandle, Single, Single) + name.vb: GetScaleFactor(WindowHandle, Single, Single) + spec.csharp: + - uid: OpenTK.Core.Platform.IWindowComponent.GetScaleFactor(OpenTK.Core.Platform.WindowHandle,System.Single@,System.Single@) + name: GetScaleFactor + href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetScaleFactor_OpenTK_Core_Platform_WindowHandle_System_Single__System_Single__ + - name: ( + - uid: OpenTK.Core.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Core.Platform.WindowHandle.html + - name: ',' + - name: " " + - name: out + - name: " " + - uid: System.Single + name: float + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.single + - name: ',' + - name: " " + - name: out + - name: " " + - uid: System.Single + name: float + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.single + - name: ) + spec.vb: + - uid: OpenTK.Core.Platform.IWindowComponent.GetScaleFactor(OpenTK.Core.Platform.WindowHandle,System.Single@,System.Single@) + name: GetScaleFactor + href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetScaleFactor_OpenTK_Core_Platform_WindowHandle_System_Single__System_Single__ + - name: ( + - uid: OpenTK.Core.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Core.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: System.Single + name: Single + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.single + - name: ',' + - name: " " + - uid: System.Single + name: Single + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.single + - name: ) +- uid: System.Single + commentId: T:System.Single + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.single + name: float + nameWithType: float + fullName: float + nameWithType.vb: Single + fullName.vb: Single + name.vb: Single - uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetNSWindow* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetNSWindow href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_GetNSWindow_OpenTK_Core_Platform_WindowHandle_ diff --git a/api/OpenTK.Platform.Native.macOS.yml b/api/OpenTK.Platform.Native.macOS.yml index c65d3a26..4f2026d2 100644 --- a/api/OpenTK.Platform.Native.macOS.yml +++ b/api/OpenTK.Platform.Native.macOS.yml @@ -4,8 +4,10 @@ items: commentId: N:OpenTK.Platform.Native.macOS id: OpenTK.Platform.Native.macOS children: + - OpenTK.Platform.Native.macOS.MacOSClipboardComponent - OpenTK.Platform.Native.macOS.MacOSCursorComponent - OpenTK.Platform.Native.macOS.MacOSCursorComponent.Frame + - OpenTK.Platform.Native.macOS.MacOSDialogComponent - OpenTK.Platform.Native.macOS.MacOSDisplayComponent - OpenTK.Platform.Native.macOS.MacOSIconComponent - OpenTK.Platform.Native.macOS.MacOSKeyboardComponent @@ -23,6 +25,12 @@ items: assemblies: - OpenTK.Platform.Native references: +- uid: OpenTK.Platform.Native.macOS.MacOSClipboardComponent + commentId: T:OpenTK.Platform.Native.macOS.MacOSClipboardComponent + href: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.html + name: MacOSClipboardComponent + nameWithType: MacOSClipboardComponent + fullName: OpenTK.Platform.Native.macOS.MacOSClipboardComponent - uid: OpenTK.Platform.Native.macOS.MacOSCursorComponent commentId: T:OpenTK.Platform.Native.macOS.MacOSCursorComponent href: OpenTK.Platform.Native.macOS.MacOSCursorComponent.html @@ -51,6 +59,12 @@ references: - uid: OpenTK.Platform.Native.macOS.MacOSCursorComponent.Frame name: Frame href: OpenTK.Platform.Native.macOS.MacOSCursorComponent.Frame.html +- uid: OpenTK.Platform.Native.macOS.MacOSDialogComponent + commentId: T:OpenTK.Platform.Native.macOS.MacOSDialogComponent + href: OpenTK.Platform.Native.macOS.MacOSDialogComponent.html + name: MacOSDialogComponent + nameWithType: MacOSDialogComponent + fullName: OpenTK.Platform.Native.macOS.MacOSDialogComponent - uid: OpenTK.Platform.Native.macOS.MacOSDisplayComponent commentId: T:OpenTK.Platform.Native.macOS.MacOSDisplayComponent href: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.html diff --git a/api/OpenTK.Platform.Native.yml b/api/OpenTK.Platform.Native.yml index 19aaa1f3..f27fd864 100644 --- a/api/OpenTK.Platform.Native.yml +++ b/api/OpenTK.Platform.Native.yml @@ -7,7 +7,6 @@ items: - OpenTK.Platform.Native.Backend - OpenTK.Platform.Native.PlatformComponents - OpenTK.Platform.Native.Toolkit - - OpenTK.Platform.Native.ToolkitOptions langs: - csharp - vb @@ -31,13 +30,6 @@ references: name: PlatformComponents nameWithType: PlatformComponents fullName: OpenTK.Platform.Native.PlatformComponents -- uid: OpenTK.Platform.Native.ToolkitOptions - commentId: T:OpenTK.Platform.Native.ToolkitOptions - parent: OpenTK.Platform.Native - href: OpenTK.Platform.Native.ToolkitOptions.html - name: ToolkitOptions - nameWithType: ToolkitOptions - fullName: OpenTK.Platform.Native.ToolkitOptions - uid: OpenTK.Platform.Native.Toolkit commentId: T:OpenTK.Platform.Native.Toolkit href: OpenTK.Platform.Native.Toolkit.html diff --git a/api/OpenTK.Windowing.Common.FramebufferResizeEventArgs.yml b/api/OpenTK.Windowing.Common.FramebufferResizeEventArgs.yml new file mode 100644 index 00000000..06af7a1a --- /dev/null +++ b/api/OpenTK.Windowing.Common.FramebufferResizeEventArgs.yml @@ -0,0 +1,530 @@ +### YamlMime:ManagedReference +items: +- uid: OpenTK.Windowing.Common.FramebufferResizeEventArgs + commentId: T:OpenTK.Windowing.Common.FramebufferResizeEventArgs + id: FramebufferResizeEventArgs + parent: OpenTK.Windowing.Common + children: + - OpenTK.Windowing.Common.FramebufferResizeEventArgs.#ctor(OpenTK.Mathematics.Vector2i) + - OpenTK.Windowing.Common.FramebufferResizeEventArgs.#ctor(System.Int32,System.Int32) + - OpenTK.Windowing.Common.FramebufferResizeEventArgs.Height + - OpenTK.Windowing.Common.FramebufferResizeEventArgs.Size + - OpenTK.Windowing.Common.FramebufferResizeEventArgs.Width + langs: + - csharp + - vb + name: FramebufferResizeEventArgs + nameWithType: FramebufferResizeEventArgs + fullName: OpenTK.Windowing.Common.FramebufferResizeEventArgs + type: Struct + source: + remote: + path: src/OpenTK.Windowing.Common/Events/FramebufferResizeEventArgs.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: FramebufferResizeEventArgs + path: opentk/src/OpenTK.Windowing.Common/Events/FramebufferResizeEventArgs.cs + startLine: 15 + assemblies: + - OpenTK.Windowing.Common + namespace: OpenTK.Windowing.Common + summary: Defines the event data for the framebuffer resize event. + example: [] + syntax: + content: public readonly struct FramebufferResizeEventArgs + content.vb: Public Structure FramebufferResizeEventArgs + inheritedMembers: + - System.ValueType.Equals(System.Object) + - System.ValueType.GetHashCode + - System.ValueType.ToString + - System.Object.Equals(System.Object,System.Object) + - System.Object.GetType + - System.Object.ReferenceEquals(System.Object,System.Object) +- uid: OpenTK.Windowing.Common.FramebufferResizeEventArgs.Size + commentId: P:OpenTK.Windowing.Common.FramebufferResizeEventArgs.Size + id: Size + parent: OpenTK.Windowing.Common.FramebufferResizeEventArgs + langs: + - csharp + - vb + name: Size + nameWithType: FramebufferResizeEventArgs.Size + fullName: OpenTK.Windowing.Common.FramebufferResizeEventArgs.Size + type: Property + source: + remote: + path: src/OpenTK.Windowing.Common/Events/FramebufferResizeEventArgs.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: Size + path: opentk/src/OpenTK.Windowing.Common/Events/FramebufferResizeEventArgs.cs + startLine: 20 + assemblies: + - OpenTK.Windowing.Common + namespace: OpenTK.Windowing.Common + summary: Gets the new framebuffer size. + example: [] + syntax: + content: public Vector2i Size { get; } + parameters: [] + return: + type: OpenTK.Mathematics.Vector2i + content.vb: Public ReadOnly Property Size As Vector2i + overload: OpenTK.Windowing.Common.FramebufferResizeEventArgs.Size* +- uid: OpenTK.Windowing.Common.FramebufferResizeEventArgs.Width + commentId: P:OpenTK.Windowing.Common.FramebufferResizeEventArgs.Width + id: Width + parent: OpenTK.Windowing.Common.FramebufferResizeEventArgs + langs: + - csharp + - vb + name: Width + nameWithType: FramebufferResizeEventArgs.Width + fullName: OpenTK.Windowing.Common.FramebufferResizeEventArgs.Width + type: Property + source: + remote: + path: src/OpenTK.Windowing.Common/Events/FramebufferResizeEventArgs.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: Width + path: opentk/src/OpenTK.Windowing.Common/Events/FramebufferResizeEventArgs.cs + startLine: 25 + assemblies: + - OpenTK.Windowing.Common + namespace: OpenTK.Windowing.Common + summary: Gets the new framebuffer width. + example: [] + syntax: + content: public int Width { get; } + parameters: [] + return: + type: System.Int32 + content.vb: Public ReadOnly Property Width As Integer + overload: OpenTK.Windowing.Common.FramebufferResizeEventArgs.Width* +- uid: OpenTK.Windowing.Common.FramebufferResizeEventArgs.Height + commentId: P:OpenTK.Windowing.Common.FramebufferResizeEventArgs.Height + id: Height + parent: OpenTK.Windowing.Common.FramebufferResizeEventArgs + langs: + - csharp + - vb + name: Height + nameWithType: FramebufferResizeEventArgs.Height + fullName: OpenTK.Windowing.Common.FramebufferResizeEventArgs.Height + type: Property + source: + remote: + path: src/OpenTK.Windowing.Common/Events/FramebufferResizeEventArgs.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: Height + path: opentk/src/OpenTK.Windowing.Common/Events/FramebufferResizeEventArgs.cs + startLine: 30 + assemblies: + - OpenTK.Windowing.Common + namespace: OpenTK.Windowing.Common + summary: Gets the new framebuffer height. + example: [] + syntax: + content: public int Height { get; } + parameters: [] + return: + type: System.Int32 + content.vb: Public ReadOnly Property Height As Integer + overload: OpenTK.Windowing.Common.FramebufferResizeEventArgs.Height* +- uid: OpenTK.Windowing.Common.FramebufferResizeEventArgs.#ctor(OpenTK.Mathematics.Vector2i) + commentId: M:OpenTK.Windowing.Common.FramebufferResizeEventArgs.#ctor(OpenTK.Mathematics.Vector2i) + id: '#ctor(OpenTK.Mathematics.Vector2i)' + parent: OpenTK.Windowing.Common.FramebufferResizeEventArgs + langs: + - csharp + - vb + name: FramebufferResizeEventArgs(Vector2i) + nameWithType: FramebufferResizeEventArgs.FramebufferResizeEventArgs(Vector2i) + fullName: OpenTK.Windowing.Common.FramebufferResizeEventArgs.FramebufferResizeEventArgs(OpenTK.Mathematics.Vector2i) + type: Constructor + source: + remote: + path: src/OpenTK.Windowing.Common/Events/FramebufferResizeEventArgs.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: .ctor + path: opentk/src/OpenTK.Windowing.Common/Events/FramebufferResizeEventArgs.cs + startLine: 36 + assemblies: + - OpenTK.Windowing.Common + namespace: OpenTK.Windowing.Common + summary: Initializes a new instance of the struct. + example: [] + syntax: + content: public FramebufferResizeEventArgs(Vector2i size) + parameters: + - id: size + type: OpenTK.Mathematics.Vector2i + description: the new framebuffer size. + content.vb: Public Sub New(size As Vector2i) + overload: OpenTK.Windowing.Common.FramebufferResizeEventArgs.#ctor* + nameWithType.vb: FramebufferResizeEventArgs.New(Vector2i) + fullName.vb: OpenTK.Windowing.Common.FramebufferResizeEventArgs.New(OpenTK.Mathematics.Vector2i) + name.vb: New(Vector2i) +- uid: OpenTK.Windowing.Common.FramebufferResizeEventArgs.#ctor(System.Int32,System.Int32) + commentId: M:OpenTK.Windowing.Common.FramebufferResizeEventArgs.#ctor(System.Int32,System.Int32) + id: '#ctor(System.Int32,System.Int32)' + parent: OpenTK.Windowing.Common.FramebufferResizeEventArgs + langs: + - csharp + - vb + name: FramebufferResizeEventArgs(int, int) + nameWithType: FramebufferResizeEventArgs.FramebufferResizeEventArgs(int, int) + fullName: OpenTK.Windowing.Common.FramebufferResizeEventArgs.FramebufferResizeEventArgs(int, int) + type: Constructor + source: + remote: + path: src/OpenTK.Windowing.Common/Events/FramebufferResizeEventArgs.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: .ctor + path: opentk/src/OpenTK.Windowing.Common/Events/FramebufferResizeEventArgs.cs + startLine: 46 + assemblies: + - OpenTK.Windowing.Common + namespace: OpenTK.Windowing.Common + summary: Initializes a new instance of the struct. + example: [] + syntax: + content: public FramebufferResizeEventArgs(int width, int height) + parameters: + - id: width + type: System.Int32 + description: The new framebuffer width. + - id: height + type: System.Int32 + description: The new framebuffer height. + content.vb: Public Sub New(width As Integer, height As Integer) + overload: OpenTK.Windowing.Common.FramebufferResizeEventArgs.#ctor* + nameWithType.vb: FramebufferResizeEventArgs.New(Integer, Integer) + fullName.vb: OpenTK.Windowing.Common.FramebufferResizeEventArgs.New(Integer, Integer) + name.vb: New(Integer, Integer) +references: +- uid: OpenTK.Windowing.Common + commentId: N:OpenTK.Windowing.Common + href: OpenTK.html + name: OpenTK.Windowing.Common + nameWithType: OpenTK.Windowing.Common + fullName: OpenTK.Windowing.Common + spec.csharp: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Windowing + name: Windowing + href: OpenTK.Windowing.html + - name: . + - uid: OpenTK.Windowing.Common + name: Common + href: OpenTK.Windowing.Common.html + spec.vb: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Windowing + name: Windowing + href: OpenTK.Windowing.html + - name: . + - uid: OpenTK.Windowing.Common + name: Common + href: OpenTK.Windowing.Common.html +- uid: System.ValueType.Equals(System.Object) + commentId: M:System.ValueType.Equals(System.Object) + parent: System.ValueType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals + name: Equals(object) + nameWithType: ValueType.Equals(object) + fullName: System.ValueType.Equals(object) + nameWithType.vb: ValueType.Equals(Object) + fullName.vb: System.ValueType.Equals(Object) + name.vb: Equals(Object) + spec.csharp: + - uid: System.ValueType.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.ValueType.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.ValueType.GetHashCode + commentId: M:System.ValueType.GetHashCode + parent: System.ValueType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode + name: GetHashCode() + nameWithType: ValueType.GetHashCode() + fullName: System.ValueType.GetHashCode() + spec.csharp: + - uid: System.ValueType.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode + - name: ( + - name: ) + spec.vb: + - uid: System.ValueType.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode + - name: ( + - name: ) +- uid: System.ValueType.ToString + commentId: M:System.ValueType.ToString + parent: System.ValueType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring + name: ToString() + nameWithType: ValueType.ToString() + fullName: System.ValueType.ToString() + spec.csharp: + - uid: System.ValueType.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring + - name: ( + - name: ) + spec.vb: + - uid: System.ValueType.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring + - name: ( + - name: ) +- uid: System.Object.Equals(System.Object,System.Object) + commentId: M:System.Object.Equals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + name: Equals(object, object) + nameWithType: object.Equals(object, object) + fullName: object.Equals(object, object) + nameWithType.vb: Object.Equals(Object, Object) + fullName.vb: Object.Equals(Object, Object) + name.vb: Equals(Object, Object) + spec.csharp: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.GetType + commentId: M:System.Object.GetType + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + name: GetType() + nameWithType: object.GetType() + fullName: object.GetType() + nameWithType.vb: Object.GetType() + fullName.vb: Object.GetType() + spec.csharp: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) +- uid: System.Object.ReferenceEquals(System.Object,System.Object) + commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + name: ReferenceEquals(object, object) + nameWithType: object.ReferenceEquals(object, object) + fullName: object.ReferenceEquals(object, object) + nameWithType.vb: Object.ReferenceEquals(Object, Object) + fullName.vb: Object.ReferenceEquals(Object, Object) + name.vb: ReferenceEquals(Object, Object) + spec.csharp: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.ValueType + commentId: T:System.ValueType + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.valuetype + name: ValueType + nameWithType: ValueType + fullName: System.ValueType +- uid: System.Object + commentId: T:System.Object + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + name: object + nameWithType: object + fullName: object + nameWithType.vb: Object + fullName.vb: Object + name.vb: Object +- uid: System + commentId: N:System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System + nameWithType: System + fullName: System +- uid: OpenTK.Windowing.Common.FramebufferResizeEventArgs.Size* + commentId: Overload:OpenTK.Windowing.Common.FramebufferResizeEventArgs.Size + href: OpenTK.Windowing.Common.FramebufferResizeEventArgs.html#OpenTK_Windowing_Common_FramebufferResizeEventArgs_Size + name: Size + nameWithType: FramebufferResizeEventArgs.Size + fullName: OpenTK.Windowing.Common.FramebufferResizeEventArgs.Size +- uid: OpenTK.Mathematics.Vector2i + commentId: T:OpenTK.Mathematics.Vector2i + parent: OpenTK.Mathematics + href: OpenTK.Mathematics.Vector2i.html + name: Vector2i + nameWithType: Vector2i + fullName: OpenTK.Mathematics.Vector2i +- uid: OpenTK.Mathematics + commentId: N:OpenTK.Mathematics + href: OpenTK.html + name: OpenTK.Mathematics + nameWithType: OpenTK.Mathematics + fullName: OpenTK.Mathematics + spec.csharp: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Mathematics + name: Mathematics + href: OpenTK.Mathematics.html + spec.vb: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Mathematics + name: Mathematics + href: OpenTK.Mathematics.html +- uid: OpenTK.Windowing.Common.FramebufferResizeEventArgs.Width* + commentId: Overload:OpenTK.Windowing.Common.FramebufferResizeEventArgs.Width + href: OpenTK.Windowing.Common.FramebufferResizeEventArgs.html#OpenTK_Windowing_Common_FramebufferResizeEventArgs_Width + name: Width + nameWithType: FramebufferResizeEventArgs.Width + fullName: OpenTK.Windowing.Common.FramebufferResizeEventArgs.Width +- uid: System.Int32 + commentId: T:System.Int32 + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + name: int + nameWithType: int + fullName: int + nameWithType.vb: Integer + fullName.vb: Integer + name.vb: Integer +- uid: OpenTK.Windowing.Common.FramebufferResizeEventArgs.Height* + commentId: Overload:OpenTK.Windowing.Common.FramebufferResizeEventArgs.Height + href: OpenTK.Windowing.Common.FramebufferResizeEventArgs.html#OpenTK_Windowing_Common_FramebufferResizeEventArgs_Height + name: Height + nameWithType: FramebufferResizeEventArgs.Height + fullName: OpenTK.Windowing.Common.FramebufferResizeEventArgs.Height +- uid: OpenTK.Windowing.Common.FramebufferResizeEventArgs + commentId: T:OpenTK.Windowing.Common.FramebufferResizeEventArgs + parent: OpenTK.Windowing.Common + href: OpenTK.Windowing.Common.FramebufferResizeEventArgs.html + name: FramebufferResizeEventArgs + nameWithType: FramebufferResizeEventArgs + fullName: OpenTK.Windowing.Common.FramebufferResizeEventArgs +- uid: OpenTK.Windowing.Common.FramebufferResizeEventArgs.#ctor* + commentId: Overload:OpenTK.Windowing.Common.FramebufferResizeEventArgs.#ctor + href: OpenTK.Windowing.Common.FramebufferResizeEventArgs.html#OpenTK_Windowing_Common_FramebufferResizeEventArgs__ctor_OpenTK_Mathematics_Vector2i_ + name: FramebufferResizeEventArgs + nameWithType: FramebufferResizeEventArgs.FramebufferResizeEventArgs + fullName: OpenTK.Windowing.Common.FramebufferResizeEventArgs.FramebufferResizeEventArgs + nameWithType.vb: FramebufferResizeEventArgs.New + fullName.vb: OpenTK.Windowing.Common.FramebufferResizeEventArgs.New + name.vb: New diff --git a/api/OpenTK.Windowing.Common.yml b/api/OpenTK.Windowing.Common.yml index b92be1f0..313bed01 100644 --- a/api/OpenTK.Windowing.Common.yml +++ b/api/OpenTK.Windowing.Common.yml @@ -11,6 +11,7 @@ items: - OpenTK.Windowing.Common.FileDropEventArgs - OpenTK.Windowing.Common.FocusedChangedEventArgs - OpenTK.Windowing.Common.FrameEventArgs + - OpenTK.Windowing.Common.FramebufferResizeEventArgs - OpenTK.Windowing.Common.IGraphicsContext - OpenTK.Windowing.Common.JoystickEventArgs - OpenTK.Windowing.Common.KeyboardKeyEventArgs @@ -79,6 +80,13 @@ references: name: FocusedChangedEventArgs nameWithType: FocusedChangedEventArgs fullName: OpenTK.Windowing.Common.FocusedChangedEventArgs +- uid: OpenTK.Windowing.Common.FramebufferResizeEventArgs + commentId: T:OpenTK.Windowing.Common.FramebufferResizeEventArgs + parent: OpenTK.Windowing.Common + href: OpenTK.Windowing.Common.FramebufferResizeEventArgs.html + name: FramebufferResizeEventArgs + nameWithType: FramebufferResizeEventArgs + fullName: OpenTK.Windowing.Common.FramebufferResizeEventArgs - uid: OpenTK.Windowing.Common.FrameEventArgs commentId: T:OpenTK.Windowing.Common.FrameEventArgs parent: OpenTK.Windowing.Common diff --git a/api/OpenTK.Windowing.Desktop.GameWindow.yml b/api/OpenTK.Windowing.Desktop.GameWindow.yml index 8ab82d63..c3ddd8b9 100644 --- a/api/OpenTK.Windowing.Desktop.GameWindow.yml +++ b/api/OpenTK.Windowing.Desktop.GameWindow.yml @@ -7,6 +7,7 @@ items: children: - OpenTK.Windowing.Desktop.GameWindow.#ctor(OpenTK.Windowing.Desktop.GameWindowSettings,OpenTK.Windowing.Desktop.NativeWindowSettings) - OpenTK.Windowing.Desktop.GameWindow.Close + - OpenTK.Windowing.Desktop.GameWindow.Dispose - OpenTK.Windowing.Desktop.GameWindow.ExpectedSchedulerPeriod - OpenTK.Windowing.Desktop.GameWindow.IsMultiThreaded - OpenTK.Windowing.Desktop.GameWindow.IsRunningSlowly @@ -69,6 +70,7 @@ items: - OpenTK.Windowing.Desktop.NativeWindow.IsAnyKeyDown - OpenTK.Windowing.Desktop.NativeWindow.IsAnyMouseButtonDown - OpenTK.Windowing.Desktop.NativeWindow.VSync + - OpenTK.Windowing.Desktop.NativeWindow.AutoIconify - OpenTK.Windowing.Desktop.NativeWindow.Icon - OpenTK.Windowing.Desktop.NativeWindow.IsEventDriven - OpenTK.Windowing.Desktop.NativeWindow.ClipboardString @@ -91,6 +93,7 @@ items: - OpenTK.Windowing.Desktop.NativeWindow.ClientLocation - OpenTK.Windowing.Desktop.NativeWindow.Size - OpenTK.Windowing.Desktop.NativeWindow.ClientSize + - OpenTK.Windowing.Desktop.NativeWindow.FramebufferSize - OpenTK.Windowing.Desktop.NativeWindow.MinimumSize - OpenTK.Windowing.Desktop.NativeWindow.MaximumSize - OpenTK.Windowing.Desktop.NativeWindow.AspectRatio @@ -109,6 +112,7 @@ items: - OpenTK.Windowing.Desktop.NativeWindow.PointToScreen(OpenTK.Mathematics.Vector2i) - OpenTK.Windowing.Desktop.NativeWindow.Move - OpenTK.Windowing.Desktop.NativeWindow.Resize + - OpenTK.Windowing.Desktop.NativeWindow.FramebufferResize - OpenTK.Windowing.Desktop.NativeWindow.Refresh - OpenTK.Windowing.Desktop.NativeWindow.Closing - OpenTK.Windowing.Desktop.NativeWindow.Minimized @@ -136,6 +140,7 @@ items: - OpenTK.Windowing.Desktop.NativeWindow.TryGetCurrentMonitorDpiRaw(System.Single@,System.Single@) - OpenTK.Windowing.Desktop.NativeWindow.OnMove(OpenTK.Windowing.Common.WindowPositionEventArgs) - OpenTK.Windowing.Desktop.NativeWindow.OnResize(OpenTK.Windowing.Common.ResizeEventArgs) + - OpenTK.Windowing.Desktop.NativeWindow.OnFramebufferResize(OpenTK.Windowing.Common.FramebufferResizeEventArgs) - OpenTK.Windowing.Desktop.NativeWindow.OnRefresh - OpenTK.Windowing.Desktop.NativeWindow.OnClosing(System.ComponentModel.CancelEventArgs) - OpenTK.Windowing.Desktop.NativeWindow.OnJoystickConnected(OpenTK.Windowing.Common.JoystickEventArgs) @@ -153,7 +158,6 @@ items: - OpenTK.Windowing.Desktop.NativeWindow.OnMaximized(OpenTK.Windowing.Common.MaximizedEventArgs) - OpenTK.Windowing.Desktop.NativeWindow.OnFileDrop(OpenTK.Windowing.Common.FileDropEventArgs) - OpenTK.Windowing.Desktop.NativeWindow.Dispose(System.Boolean) - - OpenTK.Windowing.Desktop.NativeWindow.Dispose - OpenTK.Windowing.Desktop.NativeWindow.CenterWindow - OpenTK.Windowing.Desktop.NativeWindow.CenterWindow(OpenTK.Mathematics.Vector2i) - System.Object.Equals(System.Object) @@ -633,7 +637,7 @@ items: repo: https://github.com/opentk/opentk.git id: .ctor path: opentk/src/OpenTK.Windowing.Desktop/GameWindow.cs - startLine: 190 + startLine: 194 assemblies: - OpenTK.Windowing.Desktop namespace: OpenTK.Windowing.Desktop @@ -677,7 +681,7 @@ items: repo: https://github.com/opentk/opentk.git id: Run path: opentk/src/OpenTK.Windowing.Desktop/GameWindow.cs - startLine: 226 + startLine: 231 assemblies: - OpenTK.Windowing.Desktop namespace: OpenTK.Windowing.Desktop @@ -717,7 +721,7 @@ items: repo: https://github.com/opentk/opentk.git id: SwapBuffers path: opentk/src/OpenTK.Windowing.Desktop/GameWindow.cs - startLine: 341 + startLine: 354 assemblies: - OpenTK.Windowing.Desktop namespace: OpenTK.Windowing.Desktop @@ -745,7 +749,7 @@ items: repo: https://github.com/opentk/opentk.git id: Close path: opentk/src/OpenTK.Windowing.Desktop/GameWindow.cs - startLine: 352 + startLine: 365 assemblies: - OpenTK.Windowing.Desktop namespace: OpenTK.Windowing.Desktop @@ -774,7 +778,7 @@ items: repo: https://github.com/opentk/opentk.git id: OnRenderThreadStarted path: opentk/src/OpenTK.Windowing.Desktop/GameWindow.cs - startLine: 360 + startLine: 373 assemblies: - OpenTK.Windowing.Desktop namespace: OpenTK.Windowing.Desktop @@ -812,7 +816,7 @@ items: repo: https://github.com/opentk/opentk.git id: OnLoad path: opentk/src/OpenTK.Windowing.Desktop/GameWindow.cs - startLine: 369 + startLine: 382 assemblies: - OpenTK.Windowing.Desktop namespace: OpenTK.Windowing.Desktop @@ -840,7 +844,7 @@ items: repo: https://github.com/opentk/opentk.git id: OnUnload path: opentk/src/OpenTK.Windowing.Desktop/GameWindow.cs - startLine: 377 + startLine: 390 assemblies: - OpenTK.Windowing.Desktop namespace: OpenTK.Windowing.Desktop @@ -868,7 +872,7 @@ items: repo: https://github.com/opentk/opentk.git id: OnUpdateFrame path: opentk/src/OpenTK.Windowing.Desktop/GameWindow.cs - startLine: 386 + startLine: 399 assemblies: - OpenTK.Windowing.Desktop namespace: OpenTK.Windowing.Desktop @@ -900,7 +904,7 @@ items: repo: https://github.com/opentk/opentk.git id: OnRenderFrame path: opentk/src/OpenTK.Windowing.Desktop/GameWindow.cs - startLine: 395 + startLine: 408 assemblies: - OpenTK.Windowing.Desktop namespace: OpenTK.Windowing.Desktop @@ -932,7 +936,7 @@ items: repo: https://github.com/opentk/opentk.git id: TimeSinceLastUpdate path: opentk/src/OpenTK.Windowing.Desktop/GameWindow.cs - startLine: 408 + startLine: 421 assemblies: - OpenTK.Windowing.Desktop namespace: OpenTK.Windowing.Desktop @@ -967,7 +971,7 @@ items: repo: https://github.com/opentk/opentk.git id: ResetTimeSinceLastUpdate path: opentk/src/OpenTK.Windowing.Desktop/GameWindow.cs - startLine: 417 + startLine: 430 assemblies: - OpenTK.Windowing.Desktop namespace: OpenTK.Windowing.Desktop @@ -980,6 +984,35 @@ items: content: public void ResetTimeSinceLastUpdate() content.vb: Public Sub ResetTimeSinceLastUpdate() overload: OpenTK.Windowing.Desktop.GameWindow.ResetTimeSinceLastUpdate* +- uid: OpenTK.Windowing.Desktop.GameWindow.Dispose + commentId: M:OpenTK.Windowing.Desktop.GameWindow.Dispose + id: Dispose + parent: OpenTK.Windowing.Desktop.GameWindow + langs: + - csharp + - vb + name: Dispose() + nameWithType: GameWindow.Dispose() + fullName: OpenTK.Windowing.Desktop.GameWindow.Dispose() + type: Method + source: + remote: + path: src/OpenTK.Windowing.Desktop/GameWindow.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: Dispose + path: opentk/src/OpenTK.Windowing.Desktop/GameWindow.cs + startLine: 450 + assemblies: + - OpenTK.Windowing.Desktop + namespace: OpenTK.Windowing.Desktop + summary: Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. + example: [] + syntax: + content: public override void Dispose() + content.vb: Public Overrides Sub Dispose() + overridden: OpenTK.Windowing.Desktop.NativeWindow.Dispose + overload: OpenTK.Windowing.Desktop.GameWindow.Dispose* references: - uid: OpenTK.Windowing.Desktop.GameWindow commentId: T:OpenTK.Windowing.Desktop.GameWindow @@ -1099,6 +1132,13 @@ references: name: VSync nameWithType: NativeWindow.VSync fullName: OpenTK.Windowing.Desktop.NativeWindow.VSync +- uid: OpenTK.Windowing.Desktop.NativeWindow.AutoIconify + commentId: P:OpenTK.Windowing.Desktop.NativeWindow.AutoIconify + parent: OpenTK.Windowing.Desktop.NativeWindow + href: OpenTK.Windowing.Desktop.NativeWindow.html#OpenTK_Windowing_Desktop_NativeWindow_AutoIconify + name: AutoIconify + nameWithType: NativeWindow.AutoIconify + fullName: OpenTK.Windowing.Desktop.NativeWindow.AutoIconify - uid: OpenTK.Windowing.Desktop.NativeWindow.Icon commentId: P:OpenTK.Windowing.Desktop.NativeWindow.Icon parent: OpenTK.Windowing.Desktop.NativeWindow @@ -1265,6 +1305,13 @@ references: name: ClientSize nameWithType: NativeWindow.ClientSize fullName: OpenTK.Windowing.Desktop.NativeWindow.ClientSize +- uid: OpenTK.Windowing.Desktop.NativeWindow.FramebufferSize + commentId: P:OpenTK.Windowing.Desktop.NativeWindow.FramebufferSize + parent: OpenTK.Windowing.Desktop.NativeWindow + href: OpenTK.Windowing.Desktop.NativeWindow.html#OpenTK_Windowing_Desktop_NativeWindow_FramebufferSize + name: FramebufferSize + nameWithType: NativeWindow.FramebufferSize + fullName: OpenTK.Windowing.Desktop.NativeWindow.FramebufferSize - uid: OpenTK.Windowing.Desktop.NativeWindow.MinimumSize commentId: P:OpenTK.Windowing.Desktop.NativeWindow.MinimumSize parent: OpenTK.Windowing.Desktop.NativeWindow @@ -1499,6 +1546,13 @@ references: name: Resize nameWithType: NativeWindow.Resize fullName: OpenTK.Windowing.Desktop.NativeWindow.Resize +- uid: OpenTK.Windowing.Desktop.NativeWindow.FramebufferResize + commentId: E:OpenTK.Windowing.Desktop.NativeWindow.FramebufferResize + parent: OpenTK.Windowing.Desktop.NativeWindow + href: OpenTK.Windowing.Desktop.NativeWindow.html#OpenTK_Windowing_Desktop_NativeWindow_FramebufferResize + name: FramebufferResize + nameWithType: NativeWindow.FramebufferResize + fullName: OpenTK.Windowing.Desktop.NativeWindow.FramebufferResize - uid: OpenTK.Windowing.Desktop.NativeWindow.Refresh commentId: E:OpenTK.Windowing.Desktop.NativeWindow.Refresh parent: OpenTK.Windowing.Desktop.NativeWindow @@ -1952,6 +2006,31 @@ references: name: ResizeEventArgs href: OpenTK.Windowing.Common.ResizeEventArgs.html - name: ) +- uid: OpenTK.Windowing.Desktop.NativeWindow.OnFramebufferResize(OpenTK.Windowing.Common.FramebufferResizeEventArgs) + commentId: M:OpenTK.Windowing.Desktop.NativeWindow.OnFramebufferResize(OpenTK.Windowing.Common.FramebufferResizeEventArgs) + parent: OpenTK.Windowing.Desktop.NativeWindow + href: OpenTK.Windowing.Desktop.NativeWindow.html#OpenTK_Windowing_Desktop_NativeWindow_OnFramebufferResize_OpenTK_Windowing_Common_FramebufferResizeEventArgs_ + name: OnFramebufferResize(FramebufferResizeEventArgs) + nameWithType: NativeWindow.OnFramebufferResize(FramebufferResizeEventArgs) + fullName: OpenTK.Windowing.Desktop.NativeWindow.OnFramebufferResize(OpenTK.Windowing.Common.FramebufferResizeEventArgs) + spec.csharp: + - uid: OpenTK.Windowing.Desktop.NativeWindow.OnFramebufferResize(OpenTK.Windowing.Common.FramebufferResizeEventArgs) + name: OnFramebufferResize + href: OpenTK.Windowing.Desktop.NativeWindow.html#OpenTK_Windowing_Desktop_NativeWindow_OnFramebufferResize_OpenTK_Windowing_Common_FramebufferResizeEventArgs_ + - name: ( + - uid: OpenTK.Windowing.Common.FramebufferResizeEventArgs + name: FramebufferResizeEventArgs + href: OpenTK.Windowing.Common.FramebufferResizeEventArgs.html + - name: ) + spec.vb: + - uid: OpenTK.Windowing.Desktop.NativeWindow.OnFramebufferResize(OpenTK.Windowing.Common.FramebufferResizeEventArgs) + name: OnFramebufferResize + href: OpenTK.Windowing.Desktop.NativeWindow.html#OpenTK_Windowing_Desktop_NativeWindow_OnFramebufferResize_OpenTK_Windowing_Common_FramebufferResizeEventArgs_ + - name: ( + - uid: OpenTK.Windowing.Common.FramebufferResizeEventArgs + name: FramebufferResizeEventArgs + href: OpenTK.Windowing.Common.FramebufferResizeEventArgs.html + - name: ) - uid: OpenTK.Windowing.Desktop.NativeWindow.OnRefresh commentId: M:OpenTK.Windowing.Desktop.NativeWindow.OnRefresh parent: OpenTK.Windowing.Desktop.NativeWindow @@ -2368,25 +2447,6 @@ references: isExternal: true href: https://learn.microsoft.com/dotnet/api/system.boolean - name: ) -- uid: OpenTK.Windowing.Desktop.NativeWindow.Dispose - commentId: M:OpenTK.Windowing.Desktop.NativeWindow.Dispose - parent: OpenTK.Windowing.Desktop.NativeWindow - href: OpenTK.Windowing.Desktop.NativeWindow.html#OpenTK_Windowing_Desktop_NativeWindow_Dispose - name: Dispose() - nameWithType: NativeWindow.Dispose() - fullName: OpenTK.Windowing.Desktop.NativeWindow.Dispose() - spec.csharp: - - uid: OpenTK.Windowing.Desktop.NativeWindow.Dispose - name: Dispose - href: OpenTK.Windowing.Desktop.NativeWindow.html#OpenTK_Windowing_Desktop_NativeWindow_Dispose - - name: ( - - name: ) - spec.vb: - - uid: OpenTK.Windowing.Desktop.NativeWindow.Dispose - name: Dispose - href: OpenTK.Windowing.Desktop.NativeWindow.html#OpenTK_Windowing_Desktop_NativeWindow_Dispose - - name: ( - - name: ) - uid: OpenTK.Windowing.Desktop.NativeWindow.CenterWindow commentId: M:OpenTK.Windowing.Desktop.NativeWindow.CenterWindow parent: OpenTK.Windowing.Desktop.NativeWindow @@ -3098,3 +3158,28 @@ references: name: ResetTimeSinceLastUpdate nameWithType: GameWindow.ResetTimeSinceLastUpdate fullName: OpenTK.Windowing.Desktop.GameWindow.ResetTimeSinceLastUpdate +- uid: OpenTK.Windowing.Desktop.NativeWindow.Dispose + commentId: M:OpenTK.Windowing.Desktop.NativeWindow.Dispose + parent: OpenTK.Windowing.Desktop.NativeWindow + href: OpenTK.Windowing.Desktop.NativeWindow.html#OpenTK_Windowing_Desktop_NativeWindow_Dispose + name: Dispose() + nameWithType: NativeWindow.Dispose() + fullName: OpenTK.Windowing.Desktop.NativeWindow.Dispose() + spec.csharp: + - uid: OpenTK.Windowing.Desktop.NativeWindow.Dispose + name: Dispose + href: OpenTK.Windowing.Desktop.NativeWindow.html#OpenTK_Windowing_Desktop_NativeWindow_Dispose + - name: ( + - name: ) + spec.vb: + - uid: OpenTK.Windowing.Desktop.NativeWindow.Dispose + name: Dispose + href: OpenTK.Windowing.Desktop.NativeWindow.html#OpenTK_Windowing_Desktop_NativeWindow_Dispose + - name: ( + - name: ) +- uid: OpenTK.Windowing.Desktop.GameWindow.Dispose* + commentId: Overload:OpenTK.Windowing.Desktop.GameWindow.Dispose + href: OpenTK.Windowing.Desktop.GameWindow.html#OpenTK_Windowing_Desktop_GameWindow_Dispose + name: Dispose + nameWithType: GameWindow.Dispose + fullName: OpenTK.Windowing.Desktop.GameWindow.Dispose diff --git a/api/OpenTK.Windowing.Desktop.GameWindowSettings.yml b/api/OpenTK.Windowing.Desktop.GameWindowSettings.yml index f7d56453..b5847377 100644 --- a/api/OpenTK.Windowing.Desktop.GameWindowSettings.yml +++ b/api/OpenTK.Windowing.Desktop.GameWindowSettings.yml @@ -9,6 +9,7 @@ items: - OpenTK.Windowing.Desktop.GameWindowSettings.IsMultiThreaded - OpenTK.Windowing.Desktop.GameWindowSettings.RenderFrequency - OpenTK.Windowing.Desktop.GameWindowSettings.UpdateFrequency + - OpenTK.Windowing.Desktop.GameWindowSettings.Win32SuspendTimerOnDrag langs: - csharp - vb @@ -194,6 +195,40 @@ items: type: System.Double content.vb: Public Property UpdateFrequency As Double overload: OpenTK.Windowing.Desktop.GameWindowSettings.UpdateFrequency* +- uid: OpenTK.Windowing.Desktop.GameWindowSettings.Win32SuspendTimerOnDrag + commentId: P:OpenTK.Windowing.Desktop.GameWindowSettings.Win32SuspendTimerOnDrag + id: Win32SuspendTimerOnDrag + parent: OpenTK.Windowing.Desktop.GameWindowSettings + langs: + - csharp + - vb + name: Win32SuspendTimerOnDrag + nameWithType: GameWindowSettings.Win32SuspendTimerOnDrag + fullName: OpenTK.Windowing.Desktop.GameWindowSettings.Win32SuspendTimerOnDrag + type: Property + source: + remote: + path: src/OpenTK.Windowing.Desktop/GameWindowSettings.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: Win32SuspendTimerOnDrag + path: opentk/src/OpenTK.Windowing.Desktop/GameWindowSettings.cs + startLine: 59 + assemblies: + - OpenTK.Windowing.Desktop + namespace: OpenTK.Windowing.Desktop + summary: >- + Gets or sets a value which controls whether the timer which drives is + + suspended when the user begins dragging the window or window frame. Only applies to Windows applications. + example: [] + syntax: + content: public bool Win32SuspendTimerOnDrag { get; set; } + parameters: [] + return: + type: System.Boolean + content.vb: Public Property Win32SuspendTimerOnDrag As Boolean + overload: OpenTK.Windowing.Desktop.GameWindowSettings.Win32SuspendTimerOnDrag* references: - uid: OpenTK.Windowing.Desktop.GameWindow commentId: T:OpenTK.Windowing.Desktop.GameWindow @@ -515,3 +550,46 @@ references: name: UpdateFrequency nameWithType: GameWindowSettings.UpdateFrequency fullName: OpenTK.Windowing.Desktop.GameWindowSettings.UpdateFrequency +- uid: OpenTK.Windowing.Common.FrameEventArgs + commentId: T:OpenTK.Windowing.Common.FrameEventArgs + parent: OpenTK.Windowing.Common + href: OpenTK.Windowing.Common.FrameEventArgs.html + name: FrameEventArgs + nameWithType: FrameEventArgs + fullName: OpenTK.Windowing.Common.FrameEventArgs +- uid: OpenTK.Windowing.Desktop.GameWindowSettings.Win32SuspendTimerOnDrag* + commentId: Overload:OpenTK.Windowing.Desktop.GameWindowSettings.Win32SuspendTimerOnDrag + href: OpenTK.Windowing.Desktop.GameWindowSettings.html#OpenTK_Windowing_Desktop_GameWindowSettings_Win32SuspendTimerOnDrag + name: Win32SuspendTimerOnDrag + nameWithType: GameWindowSettings.Win32SuspendTimerOnDrag + fullName: OpenTK.Windowing.Desktop.GameWindowSettings.Win32SuspendTimerOnDrag +- uid: OpenTK.Windowing.Common + commentId: N:OpenTK.Windowing.Common + href: OpenTK.html + name: OpenTK.Windowing.Common + nameWithType: OpenTK.Windowing.Common + fullName: OpenTK.Windowing.Common + spec.csharp: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Windowing + name: Windowing + href: OpenTK.Windowing.html + - name: . + - uid: OpenTK.Windowing.Common + name: Common + href: OpenTK.Windowing.Common.html + spec.vb: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Windowing + name: Windowing + href: OpenTK.Windowing.html + - name: . + - uid: OpenTK.Windowing.Common + name: Common + href: OpenTK.Windowing.Common.html diff --git a/api/OpenTK.Windowing.Desktop.NativeWindow.yml b/api/OpenTK.Windowing.Desktop.NativeWindow.yml index 48aa5423..2e1de3dd 100644 --- a/api/OpenTK.Windowing.Desktop.NativeWindow.yml +++ b/api/OpenTK.Windowing.Desktop.NativeWindow.yml @@ -9,6 +9,7 @@ items: - OpenTK.Windowing.Desktop.NativeWindow.API - OpenTK.Windowing.Desktop.NativeWindow.APIVersion - OpenTK.Windowing.Desktop.NativeWindow.AspectRatio + - OpenTK.Windowing.Desktop.NativeWindow.AutoIconify - OpenTK.Windowing.Desktop.NativeWindow.Bounds - OpenTK.Windowing.Desktop.NativeWindow.CenterWindow - OpenTK.Windowing.Desktop.NativeWindow.CenterWindow(OpenTK.Mathematics.Vector2i) @@ -30,6 +31,8 @@ items: - OpenTK.Windowing.Desktop.NativeWindow.Flags - OpenTK.Windowing.Desktop.NativeWindow.Focus - OpenTK.Windowing.Desktop.NativeWindow.FocusedChanged + - OpenTK.Windowing.Desktop.NativeWindow.FramebufferResize + - OpenTK.Windowing.Desktop.NativeWindow.FramebufferSize - OpenTK.Windowing.Desktop.NativeWindow.HasTransparentFramebuffer - OpenTK.Windowing.Desktop.NativeWindow.Icon - OpenTK.Windowing.Desktop.NativeWindow.IsAnyKeyDown @@ -69,6 +72,7 @@ items: - OpenTK.Windowing.Desktop.NativeWindow.OnClosing(System.ComponentModel.CancelEventArgs) - OpenTK.Windowing.Desktop.NativeWindow.OnFileDrop(OpenTK.Windowing.Common.FileDropEventArgs) - OpenTK.Windowing.Desktop.NativeWindow.OnFocusedChanged(OpenTK.Windowing.Common.FocusedChangedEventArgs) + - OpenTK.Windowing.Desktop.NativeWindow.OnFramebufferResize(OpenTK.Windowing.Common.FramebufferResizeEventArgs) - OpenTK.Windowing.Desktop.NativeWindow.OnJoystickConnected(OpenTK.Windowing.Common.JoystickEventArgs) - OpenTK.Windowing.Desktop.NativeWindow.OnKeyDown(OpenTK.Windowing.Common.KeyboardKeyEventArgs) - OpenTK.Windowing.Desktop.NativeWindow.OnKeyUp(OpenTK.Windowing.Common.KeyboardKeyEventArgs) @@ -396,6 +400,40 @@ items: description: The VSync state. content.vb: Public Property VSync As VSyncMode overload: OpenTK.Windowing.Desktop.NativeWindow.VSync* +- uid: OpenTK.Windowing.Desktop.NativeWindow.AutoIconify + commentId: P:OpenTK.Windowing.Desktop.NativeWindow.AutoIconify + id: AutoIconify + parent: OpenTK.Windowing.Desktop.NativeWindow + langs: + - csharp + - vb + name: AutoIconify + nameWithType: NativeWindow.AutoIconify + fullName: OpenTK.Windowing.Desktop.NativeWindow.AutoIconify + type: Property + source: + remote: + path: src/OpenTK.Windowing.Desktop/NativeWindow.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: AutoIconify + path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs + startLine: 147 + assemblies: + - OpenTK.Windowing.Desktop + namespace: OpenTK.Windowing.Desktop + summary: >- + Gets or sets a value indicating whether the application window will be minimized if the + + focus changes while the window is in fullscreen mode. The default value is true. + example: [] + syntax: + content: public bool AutoIconify { get; set; } + parameters: [] + return: + type: System.Boolean + content.vb: Public Property AutoIconify As Boolean + overload: OpenTK.Windowing.Desktop.NativeWindow.AutoIconify* - uid: OpenTK.Windowing.Desktop.NativeWindow.Icon commentId: P:OpenTK.Windowing.Desktop.NativeWindow.Icon id: Icon @@ -414,7 +452,7 @@ items: repo: https://github.com/opentk/opentk.git id: Icon path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs - startLine: 151 + startLine: 171 assemblies: - OpenTK.Windowing.Desktop namespace: OpenTK.Windowing.Desktop @@ -451,7 +489,7 @@ items: repo: https://github.com/opentk/opentk.git id: IsEventDriven path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs - startLine: 189 + startLine: 209 assemblies: - OpenTK.Windowing.Desktop namespace: OpenTK.Windowing.Desktop @@ -487,7 +525,7 @@ items: repo: https://github.com/opentk/opentk.git id: ClipboardString path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs - startLine: 194 + startLine: 214 assemblies: - OpenTK.Windowing.Desktop namespace: OpenTK.Windowing.Desktop @@ -518,7 +556,7 @@ items: repo: https://github.com/opentk/opentk.git id: Title path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs - startLine: 218 + startLine: 238 assemblies: - OpenTK.Windowing.Desktop namespace: OpenTK.Windowing.Desktop @@ -549,7 +587,7 @@ items: repo: https://github.com/opentk/opentk.git id: API path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs - startLine: 235 + startLine: 255 assemblies: - OpenTK.Windowing.Desktop namespace: OpenTK.Windowing.Desktop @@ -580,7 +618,7 @@ items: repo: https://github.com/opentk/opentk.git id: Profile path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs - startLine: 240 + startLine: 260 assemblies: - OpenTK.Windowing.Desktop namespace: OpenTK.Windowing.Desktop @@ -611,7 +649,7 @@ items: repo: https://github.com/opentk/opentk.git id: Flags path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs - startLine: 245 + startLine: 265 assemblies: - OpenTK.Windowing.Desktop namespace: OpenTK.Windowing.Desktop @@ -642,7 +680,7 @@ items: repo: https://github.com/opentk/opentk.git id: APIVersion path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs - startLine: 250 + startLine: 270 assemblies: - OpenTK.Windowing.Desktop namespace: OpenTK.Windowing.Desktop @@ -673,7 +711,7 @@ items: repo: https://github.com/opentk/opentk.git id: Context path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs - startLine: 255 + startLine: 275 assemblies: - OpenTK.Windowing.Desktop namespace: OpenTK.Windowing.Desktop @@ -704,7 +742,7 @@ items: repo: https://github.com/opentk/opentk.git id: CurrentMonitor path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs - startLine: 262 + startLine: 282 assemblies: - OpenTK.Windowing.Desktop namespace: OpenTK.Windowing.Desktop @@ -735,7 +773,7 @@ items: repo: https://github.com/opentk/opentk.git id: IsFocused path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs - startLine: 291 + startLine: 311 assemblies: - OpenTK.Windowing.Desktop namespace: OpenTK.Windowing.Desktop @@ -766,7 +804,7 @@ items: repo: https://github.com/opentk/opentk.git id: Focus path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs - startLine: 299 + startLine: 319 assemblies: - OpenTK.Windowing.Desktop namespace: OpenTK.Windowing.Desktop @@ -794,7 +832,7 @@ items: repo: https://github.com/opentk/opentk.git id: IsVisible path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs - startLine: 309 + startLine: 329 assemblies: - OpenTK.Windowing.Desktop namespace: OpenTK.Windowing.Desktop @@ -825,7 +863,7 @@ items: repo: https://github.com/opentk/opentk.git id: Exists path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs - startLine: 333 + startLine: 353 assemblies: - OpenTK.Windowing.Desktop namespace: OpenTK.Windowing.Desktop @@ -856,7 +894,7 @@ items: repo: https://github.com/opentk/opentk.git id: IsExiting path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs - startLine: 339 + startLine: 359 assemblies: - OpenTK.Windowing.Desktop namespace: OpenTK.Windowing.Desktop @@ -890,7 +928,7 @@ items: repo: https://github.com/opentk/opentk.git id: WindowState path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs - startLine: 346 + startLine: 366 assemblies: - OpenTK.Windowing.Desktop namespace: OpenTK.Windowing.Desktop @@ -921,7 +959,7 @@ items: repo: https://github.com/opentk/opentk.git id: WindowBorder path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs - startLine: 394 + startLine: 414 assemblies: - OpenTK.Windowing.Desktop namespace: OpenTK.Windowing.Desktop @@ -952,7 +990,7 @@ items: repo: https://github.com/opentk/opentk.git id: Bounds path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs - startLine: 433 + startLine: 453 assemblies: - OpenTK.Windowing.Desktop namespace: OpenTK.Windowing.Desktop @@ -988,7 +1026,7 @@ items: repo: https://github.com/opentk/opentk.git id: Location path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs - startLine: 451 + startLine: 471 assemblies: - OpenTK.Windowing.Desktop namespace: OpenTK.Windowing.Desktop @@ -1022,7 +1060,7 @@ items: repo: https://github.com/opentk/opentk.git id: ClientLocation path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs - startLine: 472 + startLine: 492 assemblies: - OpenTK.Windowing.Desktop namespace: OpenTK.Windowing.Desktop @@ -1056,7 +1094,7 @@ items: repo: https://github.com/opentk/opentk.git id: Size path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs - startLine: 492 + startLine: 512 assemblies: - OpenTK.Windowing.Desktop namespace: OpenTK.Windowing.Desktop @@ -1087,7 +1125,7 @@ items: repo: https://github.com/opentk/opentk.git id: ClientSize path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs - startLine: 517 + startLine: 537 assemblies: - OpenTK.Windowing.Desktop namespace: OpenTK.Windowing.Desktop @@ -1100,6 +1138,37 @@ items: type: OpenTK.Mathematics.Vector2i content.vb: Public Property ClientSize As Vector2i overload: OpenTK.Windowing.Desktop.NativeWindow.ClientSize* +- uid: OpenTK.Windowing.Desktop.NativeWindow.FramebufferSize + commentId: P:OpenTK.Windowing.Desktop.NativeWindow.FramebufferSize + id: FramebufferSize + parent: OpenTK.Windowing.Desktop.NativeWindow + langs: + - csharp + - vb + name: FramebufferSize + nameWithType: NativeWindow.FramebufferSize + fullName: OpenTK.Windowing.Desktop.NativeWindow.FramebufferSize + type: Property + source: + remote: + path: src/OpenTK.Windowing.Desktop/NativeWindow.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: FramebufferSize + path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs + startLine: 554 + assemblies: + - OpenTK.Windowing.Desktop + namespace: OpenTK.Windowing.Desktop + summary: Gets a structure that contains the framebuffer size of this window. + example: [] + syntax: + content: public Vector2i FramebufferSize { get; } + parameters: [] + return: + type: OpenTK.Mathematics.Vector2i + content.vb: Public ReadOnly Property FramebufferSize As Vector2i + overload: OpenTK.Windowing.Desktop.NativeWindow.FramebufferSize* - uid: OpenTK.Windowing.Desktop.NativeWindow.MinimumSize commentId: P:OpenTK.Windowing.Desktop.NativeWindow.MinimumSize id: MinimumSize @@ -1118,7 +1187,7 @@ items: repo: https://github.com/opentk/opentk.git id: MinimumSize path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs - startLine: 538 + startLine: 570 assemblies: - OpenTK.Windowing.Desktop namespace: OpenTK.Windowing.Desktop @@ -1153,7 +1222,7 @@ items: repo: https://github.com/opentk/opentk.git id: MaximumSize path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs - startLine: 555 + startLine: 587 assemblies: - OpenTK.Windowing.Desktop namespace: OpenTK.Windowing.Desktop @@ -1188,7 +1257,7 @@ items: repo: https://github.com/opentk/opentk.git id: AspectRatio path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs - startLine: 574 + startLine: 606 assemblies: - OpenTK.Windowing.Desktop namespace: OpenTK.Windowing.Desktop @@ -1223,7 +1292,7 @@ items: repo: https://github.com/opentk/opentk.git id: ClientRectangle path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs - startLine: 589 + startLine: 621 assemblies: - OpenTK.Windowing.Desktop namespace: OpenTK.Windowing.Desktop @@ -1259,7 +1328,7 @@ items: repo: https://github.com/opentk/opentk.git id: IsFullscreen path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs - startLine: 603 + startLine: 635 assemblies: - OpenTK.Windowing.Desktop namespace: OpenTK.Windowing.Desktop @@ -1293,7 +1362,7 @@ items: repo: https://github.com/opentk/opentk.git id: Cursor path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs - startLine: 609 + startLine: 641 assemblies: - OpenTK.Windowing.Desktop namespace: OpenTK.Windowing.Desktop @@ -1325,7 +1394,7 @@ items: repo: https://github.com/opentk/opentk.git id: CursorState path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs - startLine: 658 + startLine: 690 assemblies: - OpenTK.Windowing.Desktop namespace: OpenTK.Windowing.Desktop @@ -1356,7 +1425,7 @@ items: repo: https://github.com/opentk/opentk.git id: RawMouseInput path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs - startLine: 703 + startLine: 735 assemblies: - OpenTK.Windowing.Desktop namespace: OpenTK.Windowing.Desktop @@ -1392,7 +1461,7 @@ items: repo: https://github.com/opentk/opentk.git id: SupportsRawMouseInput path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs - startLine: 722 + startLine: 754 assemblies: - OpenTK.Windowing.Desktop namespace: OpenTK.Windowing.Desktop @@ -1423,7 +1492,7 @@ items: repo: https://github.com/opentk/opentk.git id: HasTransparentFramebuffer path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs - startLine: 728 + startLine: 760 assemblies: - OpenTK.Windowing.Desktop namespace: OpenTK.Windowing.Desktop @@ -1457,7 +1526,7 @@ items: repo: https://github.com/opentk/opentk.git id: .ctor path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs - startLine: 734 + startLine: 766 assemblies: - OpenTK.Windowing.Desktop namespace: OpenTK.Windowing.Desktop @@ -1492,7 +1561,7 @@ items: repo: https://github.com/opentk/opentk.git id: Close path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs - startLine: 1345 + startLine: 1397 assemblies: - OpenTK.Windowing.Desktop namespace: OpenTK.Windowing.Desktop @@ -1520,7 +1589,7 @@ items: repo: https://github.com/opentk/opentk.git id: MakeCurrent path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs - startLine: 1359 + startLine: 1411 assemblies: - OpenTK.Windowing.Desktop namespace: OpenTK.Windowing.Desktop @@ -1548,7 +1617,7 @@ items: repo: https://github.com/opentk/opentk.git id: ProcessEvents path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs - startLine: 1374 + startLine: 1426 assemblies: - OpenTK.Windowing.Desktop namespace: OpenTK.Windowing.Desktop @@ -1586,7 +1655,7 @@ items: repo: https://github.com/opentk/opentk.git id: ProcessWindowEvents path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs - startLine: 1391 + startLine: 1443 assemblies: - OpenTK.Windowing.Desktop namespace: OpenTK.Windowing.Desktop @@ -1622,7 +1691,7 @@ items: repo: https://github.com/opentk/opentk.git id: NewInputFrame path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs - startLine: 1441 + startLine: 1493 assemblies: - OpenTK.Windowing.Desktop namespace: OpenTK.Windowing.Desktop @@ -1653,7 +1722,7 @@ items: repo: https://github.com/opentk/opentk.git id: PointToClient path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs - startLine: 1461 + startLine: 1513 assemblies: - OpenTK.Windowing.Desktop namespace: OpenTK.Windowing.Desktop @@ -1688,7 +1757,7 @@ items: repo: https://github.com/opentk/opentk.git id: PointToScreen path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs - startLine: 1475 + startLine: 1527 assemblies: - OpenTK.Windowing.Desktop namespace: OpenTK.Windowing.Desktop @@ -1723,7 +1792,7 @@ items: repo: https://github.com/opentk/opentk.git id: Move path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs - startLine: 1483 + startLine: 1535 assemblies: - OpenTK.Windowing.Desktop namespace: OpenTK.Windowing.Desktop @@ -1752,7 +1821,7 @@ items: repo: https://github.com/opentk/opentk.git id: Resize path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs - startLine: 1488 + startLine: 1540 assemblies: - OpenTK.Windowing.Desktop namespace: OpenTK.Windowing.Desktop @@ -1763,6 +1832,35 @@ items: return: type: System.Action{OpenTK.Windowing.Common.ResizeEventArgs} content.vb: Public Event Resize As Action(Of ResizeEventArgs) +- uid: OpenTK.Windowing.Desktop.NativeWindow.FramebufferResize + commentId: E:OpenTK.Windowing.Desktop.NativeWindow.FramebufferResize + id: FramebufferResize + parent: OpenTK.Windowing.Desktop.NativeWindow + langs: + - csharp + - vb + name: FramebufferResize + nameWithType: NativeWindow.FramebufferResize + fullName: OpenTK.Windowing.Desktop.NativeWindow.FramebufferResize + type: Event + source: + remote: + path: src/OpenTK.Windowing.Desktop/NativeWindow.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: FramebufferResize + path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs + startLine: 1545 + assemblies: + - OpenTK.Windowing.Desktop + namespace: OpenTK.Windowing.Desktop + summary: Occurs whenever the framebuffer is resized. + example: [] + syntax: + content: public event Action FramebufferResize + return: + type: System.Action{OpenTK.Windowing.Common.FramebufferResizeEventArgs} + content.vb: Public Event FramebufferResize As Action(Of FramebufferResizeEventArgs) - uid: OpenTK.Windowing.Desktop.NativeWindow.Refresh commentId: E:OpenTK.Windowing.Desktop.NativeWindow.Refresh id: Refresh @@ -1781,7 +1879,7 @@ items: repo: https://github.com/opentk/opentk.git id: Refresh path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs - startLine: 1493 + startLine: 1550 assemblies: - OpenTK.Windowing.Desktop namespace: OpenTK.Windowing.Desktop @@ -1810,7 +1908,7 @@ items: repo: https://github.com/opentk/opentk.git id: Closing path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs - startLine: 1498 + startLine: 1555 assemblies: - OpenTK.Windowing.Desktop namespace: OpenTK.Windowing.Desktop @@ -1839,7 +1937,7 @@ items: repo: https://github.com/opentk/opentk.git id: Minimized path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs - startLine: 1503 + startLine: 1560 assemblies: - OpenTK.Windowing.Desktop namespace: OpenTK.Windowing.Desktop @@ -1868,7 +1966,7 @@ items: repo: https://github.com/opentk/opentk.git id: Maximized path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs - startLine: 1508 + startLine: 1565 assemblies: - OpenTK.Windowing.Desktop namespace: OpenTK.Windowing.Desktop @@ -1897,7 +1995,7 @@ items: repo: https://github.com/opentk/opentk.git id: JoystickConnected path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs - startLine: 1513 + startLine: 1570 assemblies: - OpenTK.Windowing.Desktop namespace: OpenTK.Windowing.Desktop @@ -1926,7 +2024,7 @@ items: repo: https://github.com/opentk/opentk.git id: FocusedChanged path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs - startLine: 1518 + startLine: 1575 assemblies: - OpenTK.Windowing.Desktop namespace: OpenTK.Windowing.Desktop @@ -1955,7 +2053,7 @@ items: repo: https://github.com/opentk/opentk.git id: KeyDown path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs - startLine: 1523 + startLine: 1580 assemblies: - OpenTK.Windowing.Desktop namespace: OpenTK.Windowing.Desktop @@ -1984,7 +2082,7 @@ items: repo: https://github.com/opentk/opentk.git id: TextInput path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs - startLine: 1528 + startLine: 1585 assemblies: - OpenTK.Windowing.Desktop namespace: OpenTK.Windowing.Desktop @@ -2013,7 +2111,7 @@ items: repo: https://github.com/opentk/opentk.git id: KeyUp path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs - startLine: 1533 + startLine: 1590 assemblies: - OpenTK.Windowing.Desktop namespace: OpenTK.Windowing.Desktop @@ -2042,7 +2140,7 @@ items: repo: https://github.com/opentk/opentk.git id: MouseLeave path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs - startLine: 1539 + startLine: 1596 assemblies: - OpenTK.Windowing.Desktop namespace: OpenTK.Windowing.Desktop @@ -2071,7 +2169,7 @@ items: repo: https://github.com/opentk/opentk.git id: MouseEnter path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs - startLine: 1545 + startLine: 1602 assemblies: - OpenTK.Windowing.Desktop namespace: OpenTK.Windowing.Desktop @@ -2100,7 +2198,7 @@ items: repo: https://github.com/opentk/opentk.git id: MouseDown path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs - startLine: 1550 + startLine: 1607 assemblies: - OpenTK.Windowing.Desktop namespace: OpenTK.Windowing.Desktop @@ -2129,7 +2227,7 @@ items: repo: https://github.com/opentk/opentk.git id: MouseUp path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs - startLine: 1555 + startLine: 1612 assemblies: - OpenTK.Windowing.Desktop namespace: OpenTK.Windowing.Desktop @@ -2158,7 +2256,7 @@ items: repo: https://github.com/opentk/opentk.git id: MouseMove path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs - startLine: 1560 + startLine: 1617 assemblies: - OpenTK.Windowing.Desktop namespace: OpenTK.Windowing.Desktop @@ -2187,7 +2285,7 @@ items: repo: https://github.com/opentk/opentk.git id: MouseWheel path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs - startLine: 1565 + startLine: 1622 assemblies: - OpenTK.Windowing.Desktop namespace: OpenTK.Windowing.Desktop @@ -2216,7 +2314,7 @@ items: repo: https://github.com/opentk/opentk.git id: FileDrop path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs - startLine: 1570 + startLine: 1627 assemblies: - OpenTK.Windowing.Desktop namespace: OpenTK.Windowing.Desktop @@ -2245,7 +2343,7 @@ items: repo: https://github.com/opentk/opentk.git id: IsKeyDown path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs - startLine: 1577 + startLine: 1634 assemblies: - OpenTK.Windowing.Desktop namespace: OpenTK.Windowing.Desktop @@ -2280,7 +2378,7 @@ items: repo: https://github.com/opentk/opentk.git id: IsKeyPressed path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs - startLine: 1590 + startLine: 1647 assemblies: - OpenTK.Windowing.Desktop namespace: OpenTK.Windowing.Desktop @@ -2316,7 +2414,7 @@ items: repo: https://github.com/opentk/opentk.git id: IsKeyReleased path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs - startLine: 1603 + startLine: 1660 assemblies: - OpenTK.Windowing.Desktop namespace: OpenTK.Windowing.Desktop @@ -2352,7 +2450,7 @@ items: repo: https://github.com/opentk/opentk.git id: IsMouseButtonDown path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs - startLine: 1613 + startLine: 1670 assemblies: - OpenTK.Windowing.Desktop namespace: OpenTK.Windowing.Desktop @@ -2387,7 +2485,7 @@ items: repo: https://github.com/opentk/opentk.git id: IsMouseButtonPressed path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs - startLine: 1626 + startLine: 1683 assemblies: - OpenTK.Windowing.Desktop namespace: OpenTK.Windowing.Desktop @@ -2423,7 +2521,7 @@ items: repo: https://github.com/opentk/opentk.git id: IsMouseButtonReleased path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs - startLine: 1639 + startLine: 1696 assemblies: - OpenTK.Windowing.Desktop namespace: OpenTK.Windowing.Desktop @@ -2459,7 +2557,7 @@ items: repo: https://github.com/opentk/opentk.git id: TryGetCurrentMonitorScale path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs - startLine: 1650 + startLine: 1707 assemblies: - OpenTK.Windowing.Desktop namespace: OpenTK.Windowing.Desktop @@ -2500,7 +2598,7 @@ items: repo: https://github.com/opentk/opentk.git id: TryGetCurrentMonitorDpi path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs - startLine: 1669 + startLine: 1726 assemblies: - OpenTK.Windowing.Desktop namespace: OpenTK.Windowing.Desktop @@ -2547,7 +2645,7 @@ items: repo: https://github.com/opentk/opentk.git id: TryGetCurrentMonitorDpiRaw path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs - startLine: 1688 + startLine: 1745 assemblies: - OpenTK.Windowing.Desktop namespace: OpenTK.Windowing.Desktop @@ -2594,7 +2692,7 @@ items: repo: https://github.com/opentk/opentk.git id: OnMove path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs - startLine: 1700 + startLine: 1757 assemblies: - OpenTK.Windowing.Desktop namespace: OpenTK.Windowing.Desktop @@ -2626,7 +2724,7 @@ items: repo: https://github.com/opentk/opentk.git id: OnResize path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs - startLine: 1709 + startLine: 1766 assemblies: - OpenTK.Windowing.Desktop namespace: OpenTK.Windowing.Desktop @@ -2640,6 +2738,38 @@ items: description: A that contains the event data. content.vb: Protected Overridable Sub OnResize(e As ResizeEventArgs) overload: OpenTK.Windowing.Desktop.NativeWindow.OnResize* +- uid: OpenTK.Windowing.Desktop.NativeWindow.OnFramebufferResize(OpenTK.Windowing.Common.FramebufferResizeEventArgs) + commentId: M:OpenTK.Windowing.Desktop.NativeWindow.OnFramebufferResize(OpenTK.Windowing.Common.FramebufferResizeEventArgs) + id: OnFramebufferResize(OpenTK.Windowing.Common.FramebufferResizeEventArgs) + parent: OpenTK.Windowing.Desktop.NativeWindow + langs: + - csharp + - vb + name: OnFramebufferResize(FramebufferResizeEventArgs) + nameWithType: NativeWindow.OnFramebufferResize(FramebufferResizeEventArgs) + fullName: OpenTK.Windowing.Desktop.NativeWindow.OnFramebufferResize(OpenTK.Windowing.Common.FramebufferResizeEventArgs) + type: Method + source: + remote: + path: src/OpenTK.Windowing.Desktop/NativeWindow.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: OnFramebufferResize + path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs + startLine: 1775 + assemblies: + - OpenTK.Windowing.Desktop + namespace: OpenTK.Windowing.Desktop + summary: Raises the FramebufferResize event. + example: [] + syntax: + content: protected virtual void OnFramebufferResize(FramebufferResizeEventArgs e) + parameters: + - id: e + type: OpenTK.Windowing.Common.FramebufferResizeEventArgs + description: A that contains the event data. + content.vb: Protected Overridable Sub OnFramebufferResize(e As FramebufferResizeEventArgs) + overload: OpenTK.Windowing.Desktop.NativeWindow.OnFramebufferResize* - uid: OpenTK.Windowing.Desktop.NativeWindow.OnRefresh commentId: M:OpenTK.Windowing.Desktop.NativeWindow.OnRefresh id: OnRefresh @@ -2658,7 +2788,7 @@ items: repo: https://github.com/opentk/opentk.git id: OnRefresh path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs - startLine: 1717 + startLine: 1783 assemblies: - OpenTK.Windowing.Desktop namespace: OpenTK.Windowing.Desktop @@ -2686,7 +2816,7 @@ items: repo: https://github.com/opentk/opentk.git id: OnClosing path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs - startLine: 1726 + startLine: 1792 assemblies: - OpenTK.Windowing.Desktop namespace: OpenTK.Windowing.Desktop @@ -2718,7 +2848,7 @@ items: repo: https://github.com/opentk/opentk.git id: OnJoystickConnected path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs - startLine: 1735 + startLine: 1801 assemblies: - OpenTK.Windowing.Desktop namespace: OpenTK.Windowing.Desktop @@ -2750,7 +2880,7 @@ items: repo: https://github.com/opentk/opentk.git id: OnFocusedChanged path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs - startLine: 1744 + startLine: 1810 assemblies: - OpenTK.Windowing.Desktop namespace: OpenTK.Windowing.Desktop @@ -2782,7 +2912,7 @@ items: repo: https://github.com/opentk/opentk.git id: OnKeyDown path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs - startLine: 1755 + startLine: 1821 assemblies: - OpenTK.Windowing.Desktop namespace: OpenTK.Windowing.Desktop @@ -2814,7 +2944,7 @@ items: repo: https://github.com/opentk/opentk.git id: OnTextInput path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs - startLine: 1764 + startLine: 1830 assemblies: - OpenTK.Windowing.Desktop namespace: OpenTK.Windowing.Desktop @@ -2846,7 +2976,7 @@ items: repo: https://github.com/opentk/opentk.git id: OnKeyUp path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs - startLine: 1773 + startLine: 1839 assemblies: - OpenTK.Windowing.Desktop namespace: OpenTK.Windowing.Desktop @@ -2878,7 +3008,7 @@ items: repo: https://github.com/opentk/opentk.git id: OnMouseLeave path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs - startLine: 1781 + startLine: 1847 assemblies: - OpenTK.Windowing.Desktop namespace: OpenTK.Windowing.Desktop @@ -2906,7 +3036,7 @@ items: repo: https://github.com/opentk/opentk.git id: OnMouseEnter path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs - startLine: 1789 + startLine: 1855 assemblies: - OpenTK.Windowing.Desktop namespace: OpenTK.Windowing.Desktop @@ -2934,7 +3064,7 @@ items: repo: https://github.com/opentk/opentk.git id: OnMouseDown path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs - startLine: 1798 + startLine: 1864 assemblies: - OpenTK.Windowing.Desktop namespace: OpenTK.Windowing.Desktop @@ -2966,7 +3096,7 @@ items: repo: https://github.com/opentk/opentk.git id: OnMouseUp path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs - startLine: 1807 + startLine: 1873 assemblies: - OpenTK.Windowing.Desktop namespace: OpenTK.Windowing.Desktop @@ -2998,7 +3128,7 @@ items: repo: https://github.com/opentk/opentk.git id: OnMouseMove path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs - startLine: 1816 + startLine: 1882 assemblies: - OpenTK.Windowing.Desktop namespace: OpenTK.Windowing.Desktop @@ -3030,7 +3160,7 @@ items: repo: https://github.com/opentk/opentk.git id: OnMouseWheel path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs - startLine: 1825 + startLine: 1891 assemblies: - OpenTK.Windowing.Desktop namespace: OpenTK.Windowing.Desktop @@ -3062,7 +3192,7 @@ items: repo: https://github.com/opentk/opentk.git id: OnMinimized path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs - startLine: 1835 + startLine: 1901 assemblies: - OpenTK.Windowing.Desktop namespace: OpenTK.Windowing.Desktop @@ -3097,7 +3227,7 @@ items: repo: https://github.com/opentk/opentk.git id: OnMaximized path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs - startLine: 1847 + startLine: 1913 assemblies: - OpenTK.Windowing.Desktop namespace: OpenTK.Windowing.Desktop @@ -3132,7 +3262,7 @@ items: repo: https://github.com/opentk/opentk.git id: OnFileDrop path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs - startLine: 1858 + startLine: 1924 assemblies: - OpenTK.Windowing.Desktop namespace: OpenTK.Windowing.Desktop @@ -3164,7 +3294,7 @@ items: repo: https://github.com/opentk/opentk.git id: Dispose path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs - startLine: 1866 + startLine: 1932 assemblies: - OpenTK.Windowing.Desktop namespace: OpenTK.Windowing.Desktop @@ -3198,7 +3328,7 @@ items: repo: https://github.com/opentk/opentk.git id: Finalize path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs - startLine: 1894 + startLine: 1960 assemblies: - OpenTK.Windowing.Desktop namespace: OpenTK.Windowing.Desktop @@ -3229,15 +3359,15 @@ items: repo: https://github.com/opentk/opentk.git id: Dispose path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs - startLine: 1900 + startLine: 1966 assemblies: - OpenTK.Windowing.Desktop namespace: OpenTK.Windowing.Desktop summary: Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. example: [] syntax: - content: public void Dispose() - content.vb: Public Sub Dispose() + content: public virtual void Dispose() + content.vb: Public Overridable Sub Dispose() overload: OpenTK.Windowing.Desktop.NativeWindow.Dispose* implements: - System.IDisposable.Dispose @@ -3259,7 +3389,7 @@ items: repo: https://github.com/opentk/opentk.git id: CenterWindow path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs - startLine: 1930 + startLine: 1996 assemblies: - OpenTK.Windowing.Desktop namespace: OpenTK.Windowing.Desktop @@ -3287,7 +3417,7 @@ items: repo: https://github.com/opentk/opentk.git id: CenterWindow path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs - startLine: 1936 + startLine: 2002 assemblies: - OpenTK.Windowing.Desktop namespace: OpenTK.Windowing.Desktop @@ -3879,6 +4009,12 @@ references: - uid: OpenTK.Windowing.Common name: Common href: OpenTK.Windowing.Common.html +- uid: OpenTK.Windowing.Desktop.NativeWindow.AutoIconify* + commentId: Overload:OpenTK.Windowing.Desktop.NativeWindow.AutoIconify + href: OpenTK.Windowing.Desktop.NativeWindow.html#OpenTK_Windowing_Desktop_NativeWindow_AutoIconify + name: AutoIconify + nameWithType: NativeWindow.AutoIconify + fullName: OpenTK.Windowing.Desktop.NativeWindow.AutoIconify - uid: OpenTK.Windowing.Common.Input.WindowIcon commentId: T:OpenTK.Windowing.Common.Input.WindowIcon parent: OpenTK.Windowing.Common.Input @@ -4152,6 +4288,12 @@ references: name: ClientSize nameWithType: NativeWindow.ClientSize fullName: OpenTK.Windowing.Desktop.NativeWindow.ClientSize +- uid: OpenTK.Windowing.Desktop.NativeWindow.FramebufferSize* + commentId: Overload:OpenTK.Windowing.Desktop.NativeWindow.FramebufferSize + href: OpenTK.Windowing.Desktop.NativeWindow.html#OpenTK_Windowing_Desktop_NativeWindow_FramebufferSize + name: FramebufferSize + nameWithType: NativeWindow.FramebufferSize + fullName: OpenTK.Windowing.Desktop.NativeWindow.FramebufferSize - uid: OpenTK.Windowing.Desktop.NativeWindow.MinimumSize* commentId: Overload:OpenTK.Windowing.Desktop.NativeWindow.MinimumSize href: OpenTK.Windowing.Desktop.NativeWindow.html#OpenTK_Windowing_Desktop_NativeWindow_MinimumSize @@ -4581,6 +4723,39 @@ references: name: ResizeEventArgs href: OpenTK.Windowing.Common.ResizeEventArgs.html - name: ) +- uid: System.Action{OpenTK.Windowing.Common.FramebufferResizeEventArgs} + commentId: T:System.Action{OpenTK.Windowing.Common.FramebufferResizeEventArgs} + parent: System + definition: System.Action`1 + href: https://learn.microsoft.com/dotnet/api/system.action-1 + name: Action + nameWithType: Action + fullName: System.Action + nameWithType.vb: Action(Of FramebufferResizeEventArgs) + fullName.vb: System.Action(Of OpenTK.Windowing.Common.FramebufferResizeEventArgs) + name.vb: Action(Of FramebufferResizeEventArgs) + spec.csharp: + - uid: System.Action`1 + name: Action + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.action-1 + - name: < + - uid: OpenTK.Windowing.Common.FramebufferResizeEventArgs + name: FramebufferResizeEventArgs + href: OpenTK.Windowing.Common.FramebufferResizeEventArgs.html + - name: '>' + spec.vb: + - uid: System.Action`1 + name: Action + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.action-1 + - name: ( + - name: Of + - name: " " + - uid: OpenTK.Windowing.Common.FramebufferResizeEventArgs + name: FramebufferResizeEventArgs + href: OpenTK.Windowing.Common.FramebufferResizeEventArgs.html + - name: ) - uid: System.Action commentId: T:System.Action parent: System @@ -5134,6 +5309,19 @@ references: name: OnResize nameWithType: NativeWindow.OnResize fullName: OpenTK.Windowing.Desktop.NativeWindow.OnResize +- uid: OpenTK.Windowing.Common.FramebufferResizeEventArgs + commentId: T:OpenTK.Windowing.Common.FramebufferResizeEventArgs + parent: OpenTK.Windowing.Common + href: OpenTK.Windowing.Common.FramebufferResizeEventArgs.html + name: FramebufferResizeEventArgs + nameWithType: FramebufferResizeEventArgs + fullName: OpenTK.Windowing.Common.FramebufferResizeEventArgs +- uid: OpenTK.Windowing.Desktop.NativeWindow.OnFramebufferResize* + commentId: Overload:OpenTK.Windowing.Desktop.NativeWindow.OnFramebufferResize + href: OpenTK.Windowing.Desktop.NativeWindow.html#OpenTK_Windowing_Desktop_NativeWindow_OnFramebufferResize_OpenTK_Windowing_Common_FramebufferResizeEventArgs_ + name: OnFramebufferResize + nameWithType: NativeWindow.OnFramebufferResize + fullName: OpenTK.Windowing.Desktop.NativeWindow.OnFramebufferResize - uid: OpenTK.Windowing.Desktop.NativeWindow.Refresh commentId: E:OpenTK.Windowing.Desktop.NativeWindow.Refresh parent: OpenTK.Windowing.Desktop.NativeWindow diff --git a/api/OpenTK.Windowing.Desktop.NativeWindowSettings.yml b/api/OpenTK.Windowing.Desktop.NativeWindowSettings.yml index 3e62a95c..f326b8a7 100644 --- a/api/OpenTK.Windowing.Desktop.NativeWindowSettings.yml +++ b/api/OpenTK.Windowing.Desktop.NativeWindowSettings.yml @@ -10,8 +10,10 @@ items: - OpenTK.Windowing.Desktop.NativeWindowSettings.APIVersion - OpenTK.Windowing.Desktop.NativeWindowSettings.AlphaBits - OpenTK.Windowing.Desktop.NativeWindowSettings.AspectRatio + - OpenTK.Windowing.Desktop.NativeWindowSettings.AutoIconify - OpenTK.Windowing.Desktop.NativeWindowSettings.AutoLoadBindings - OpenTK.Windowing.Desktop.NativeWindowSettings.BlueBits + - OpenTK.Windowing.Desktop.NativeWindowSettings.ClientSize - OpenTK.Windowing.Desktop.NativeWindowSettings.CurrentMonitor - OpenTK.Windowing.Desktop.NativeWindowSettings.Default - OpenTK.Windowing.Desktop.NativeWindowSettings.DepthBits @@ -21,7 +23,9 @@ items: - OpenTK.Windowing.Desktop.NativeWindowSettings.IsEventDriven - OpenTK.Windowing.Desktop.NativeWindowSettings.IsFullscreen - OpenTK.Windowing.Desktop.NativeWindowSettings.Location + - OpenTK.Windowing.Desktop.NativeWindowSettings.MaximumClientSize - OpenTK.Windowing.Desktop.NativeWindowSettings.MaximumSize + - OpenTK.Windowing.Desktop.NativeWindowSettings.MinimumClientSize - OpenTK.Windowing.Desktop.NativeWindowSettings.MinimumSize - OpenTK.Windowing.Desktop.NativeWindowSettings.NumberOfSamples - OpenTK.Windowing.Desktop.NativeWindowSettings.Profile @@ -662,6 +666,107 @@ items: type: System.Nullable{OpenTK.Mathematics.Vector2i} content.vb: Public Property Location As Vector2i? overload: OpenTK.Windowing.Desktop.NativeWindowSettings.Location* +- uid: OpenTK.Windowing.Desktop.NativeWindowSettings.ClientSize + commentId: P:OpenTK.Windowing.Desktop.NativeWindowSettings.ClientSize + id: ClientSize + parent: OpenTK.Windowing.Desktop.NativeWindowSettings + langs: + - csharp + - vb + name: ClientSize + nameWithType: NativeWindowSettings.ClientSize + fullName: OpenTK.Windowing.Desktop.NativeWindowSettings.ClientSize + type: Property + source: + remote: + path: src/OpenTK.Windowing.Desktop/NativeWindowSettings.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: ClientSize + path: opentk/src/OpenTK.Windowing.Desktop/NativeWindowSettings.cs + startLine: 159 + assemblies: + - OpenTK.Windowing.Desktop + namespace: OpenTK.Windowing.Desktop + summary: Gets or sets the initial size of the contents of the window. + example: [] + syntax: + content: public Vector2i ClientSize { get; set; } + parameters: [] + return: + type: OpenTK.Mathematics.Vector2i + content.vb: Public Property ClientSize As Vector2i + overload: OpenTK.Windowing.Desktop.NativeWindowSettings.ClientSize* +- uid: OpenTK.Windowing.Desktop.NativeWindowSettings.MinimumClientSize + commentId: P:OpenTK.Windowing.Desktop.NativeWindowSettings.MinimumClientSize + id: MinimumClientSize + parent: OpenTK.Windowing.Desktop.NativeWindowSettings + langs: + - csharp + - vb + name: MinimumClientSize + nameWithType: NativeWindowSettings.MinimumClientSize + fullName: OpenTK.Windowing.Desktop.NativeWindowSettings.MinimumClientSize + type: Property + source: + remote: + path: src/OpenTK.Windowing.Desktop/NativeWindowSettings.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: MinimumClientSize + path: opentk/src/OpenTK.Windowing.Desktop/NativeWindowSettings.cs + startLine: 168 + assemblies: + - OpenTK.Windowing.Desktop + namespace: OpenTK.Windowing.Desktop + summary: Gets or sets the minimum size of the contents of the window. + remarks: >- + Set to null to remove the minimum size constraint. + + If you set size limits and an aspect ratio that conflict, the results are undefined. + example: [] + syntax: + content: public Vector2i? MinimumClientSize { get; set; } + parameters: [] + return: + type: System.Nullable{OpenTK.Mathematics.Vector2i} + content.vb: Public Property MinimumClientSize As Vector2i? + overload: OpenTK.Windowing.Desktop.NativeWindowSettings.MinimumClientSize* +- uid: OpenTK.Windowing.Desktop.NativeWindowSettings.MaximumClientSize + commentId: P:OpenTK.Windowing.Desktop.NativeWindowSettings.MaximumClientSize + id: MaximumClientSize + parent: OpenTK.Windowing.Desktop.NativeWindowSettings + langs: + - csharp + - vb + name: MaximumClientSize + nameWithType: NativeWindowSettings.MaximumClientSize + fullName: OpenTK.Windowing.Desktop.NativeWindowSettings.MaximumClientSize + type: Property + source: + remote: + path: src/OpenTK.Windowing.Desktop/NativeWindowSettings.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: MaximumClientSize + path: opentk/src/OpenTK.Windowing.Desktop/NativeWindowSettings.cs + startLine: 177 + assemblies: + - OpenTK.Windowing.Desktop + namespace: OpenTK.Windowing.Desktop + summary: Gets or sets the maximum size of the contents of the window. + remarks: >- + Set to null to remove the minimum size constraint. + + If you set size limits and an aspect ratio that conflict, the results are undefined. + example: [] + syntax: + content: public Vector2i? MaximumClientSize { get; set; } + parameters: [] + return: + type: System.Nullable{OpenTK.Mathematics.Vector2i} + content.vb: Public Property MaximumClientSize As Vector2i? + overload: OpenTK.Windowing.Desktop.NativeWindowSettings.MaximumClientSize* - uid: OpenTK.Windowing.Desktop.NativeWindowSettings.Size commentId: P:OpenTK.Windowing.Desktop.NativeWindowSettings.Size id: Size @@ -680,19 +785,31 @@ items: repo: https://github.com/opentk/opentk.git id: Size path: opentk/src/OpenTK.Windowing.Desktop/NativeWindowSettings.cs - startLine: 159 + startLine: 182 assemblies: - OpenTK.Windowing.Desktop namespace: OpenTK.Windowing.Desktop summary: Gets or sets the initial size of the contents of the window. example: [] syntax: - content: public Vector2i Size { get; set; } + content: >- + [Obsolete("Use the ClientSize property to get or set the initial size of the contents of the window.")] + + public Vector2i Size { get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector2i - content.vb: Public Property Size As Vector2i + content.vb: >- + + + Public Property Size As Vector2i overload: OpenTK.Windowing.Desktop.NativeWindowSettings.Size* + attributes: + - type: System.ObsoleteAttribute + ctor: System.ObsoleteAttribute.#ctor(System.String) + arguments: + - type: System.String + value: Use the ClientSize property to get or set the initial size of the contents of the window. - uid: OpenTK.Windowing.Desktop.NativeWindowSettings.MinimumSize commentId: P:OpenTK.Windowing.Desktop.NativeWindowSettings.MinimumSize id: MinimumSize @@ -711,7 +828,7 @@ items: repo: https://github.com/opentk/opentk.git id: MinimumSize path: opentk/src/OpenTK.Windowing.Desktop/NativeWindowSettings.cs - startLine: 168 + startLine: 196 assemblies: - OpenTK.Windowing.Desktop namespace: OpenTK.Windowing.Desktop @@ -722,12 +839,24 @@ items: If you set size limits and an aspect ratio that conflict, the results are undefined. example: [] syntax: - content: public Vector2i? MinimumSize { get; set; } + content: >- + [Obsolete("Use the MinimumClientSize property to get or set the minimum size of the contents of the window.")] + + public Vector2i? MinimumSize { get; set; } parameters: [] return: type: System.Nullable{OpenTK.Mathematics.Vector2i} - content.vb: Public Property MinimumSize As Vector2i? + content.vb: >- + + + Public Property MinimumSize As Vector2i? overload: OpenTK.Windowing.Desktop.NativeWindowSettings.MinimumSize* + attributes: + - type: System.ObsoleteAttribute + ctor: System.ObsoleteAttribute.#ctor(System.String) + arguments: + - type: System.String + value: Use the MinimumClientSize property to get or set the minimum size of the contents of the window. - uid: OpenTK.Windowing.Desktop.NativeWindowSettings.MaximumSize commentId: P:OpenTK.Windowing.Desktop.NativeWindowSettings.MaximumSize id: MaximumSize @@ -746,7 +875,7 @@ items: repo: https://github.com/opentk/opentk.git id: MaximumSize path: opentk/src/OpenTK.Windowing.Desktop/NativeWindowSettings.cs - startLine: 177 + startLine: 210 assemblies: - OpenTK.Windowing.Desktop namespace: OpenTK.Windowing.Desktop @@ -757,12 +886,24 @@ items: If you set size limits and an aspect ratio that conflict, the results are undefined. example: [] syntax: - content: public Vector2i? MaximumSize { get; set; } + content: >- + [Obsolete("Use the MaximumClientSize property to get or set the minimum size of the contents of the window.")] + + public Vector2i? MaximumSize { get; set; } parameters: [] return: type: System.Nullable{OpenTK.Mathematics.Vector2i} - content.vb: Public Property MaximumSize As Vector2i? + content.vb: >- + + + Public Property MaximumSize As Vector2i? overload: OpenTK.Windowing.Desktop.NativeWindowSettings.MaximumSize* + attributes: + - type: System.ObsoleteAttribute + ctor: System.ObsoleteAttribute.#ctor(System.String) + arguments: + - type: System.String + value: Use the MaximumClientSize property to get or set the minimum size of the contents of the window. - uid: OpenTK.Windowing.Desktop.NativeWindowSettings.AspectRatio commentId: P:OpenTK.Windowing.Desktop.NativeWindowSettings.AspectRatio id: AspectRatio @@ -781,7 +922,7 @@ items: repo: https://github.com/opentk/opentk.git id: AspectRatio path: opentk/src/OpenTK.Windowing.Desktop/NativeWindowSettings.cs - startLine: 186 + startLine: 224 assemblies: - OpenTK.Windowing.Desktop namespace: OpenTK.Windowing.Desktop @@ -816,7 +957,7 @@ items: repo: https://github.com/opentk/opentk.git id: IsFullscreen path: opentk/src/OpenTK.Windowing.Desktop/NativeWindowSettings.cs - startLine: 191 + startLine: 229 assemblies: - OpenTK.Windowing.Desktop namespace: OpenTK.Windowing.Desktop @@ -861,7 +1002,7 @@ items: repo: https://github.com/opentk/opentk.git id: NumberOfSamples path: opentk/src/OpenTK.Windowing.Desktop/NativeWindowSettings.cs - startLine: 201 + startLine: 239 assemblies: - OpenTK.Windowing.Desktop namespace: OpenTK.Windowing.Desktop @@ -896,7 +1037,7 @@ items: repo: https://github.com/opentk/opentk.git id: StencilBits path: opentk/src/OpenTK.Windowing.Desktop/NativeWindowSettings.cs - startLine: 209 + startLine: 247 assemblies: - OpenTK.Windowing.Desktop namespace: OpenTK.Windowing.Desktop @@ -928,7 +1069,7 @@ items: repo: https://github.com/opentk/opentk.git id: DepthBits path: opentk/src/OpenTK.Windowing.Desktop/NativeWindowSettings.cs - startLine: 217 + startLine: 255 assemblies: - OpenTK.Windowing.Desktop namespace: OpenTK.Windowing.Desktop @@ -960,7 +1101,7 @@ items: repo: https://github.com/opentk/opentk.git id: RedBits path: opentk/src/OpenTK.Windowing.Desktop/NativeWindowSettings.cs - startLine: 225 + startLine: 263 assemblies: - OpenTK.Windowing.Desktop namespace: OpenTK.Windowing.Desktop @@ -992,7 +1133,7 @@ items: repo: https://github.com/opentk/opentk.git id: GreenBits path: opentk/src/OpenTK.Windowing.Desktop/NativeWindowSettings.cs - startLine: 233 + startLine: 271 assemblies: - OpenTK.Windowing.Desktop namespace: OpenTK.Windowing.Desktop @@ -1024,7 +1165,7 @@ items: repo: https://github.com/opentk/opentk.git id: BlueBits path: opentk/src/OpenTK.Windowing.Desktop/NativeWindowSettings.cs - startLine: 241 + startLine: 279 assemblies: - OpenTK.Windowing.Desktop namespace: OpenTK.Windowing.Desktop @@ -1056,7 +1197,7 @@ items: repo: https://github.com/opentk/opentk.git id: AlphaBits path: opentk/src/OpenTK.Windowing.Desktop/NativeWindowSettings.cs - startLine: 249 + startLine: 287 assemblies: - OpenTK.Windowing.Desktop namespace: OpenTK.Windowing.Desktop @@ -1088,7 +1229,7 @@ items: repo: https://github.com/opentk/opentk.git id: SrgbCapable path: opentk/src/OpenTK.Windowing.Desktop/NativeWindowSettings.cs - startLine: 254 + startLine: 292 assemblies: - OpenTK.Windowing.Desktop namespace: OpenTK.Windowing.Desktop @@ -1119,7 +1260,7 @@ items: repo: https://github.com/opentk/opentk.git id: TransparentFramebuffer path: opentk/src/OpenTK.Windowing.Desktop/NativeWindowSettings.cs - startLine: 260 + startLine: 298 assemblies: - OpenTK.Windowing.Desktop namespace: OpenTK.Windowing.Desktop @@ -1153,7 +1294,7 @@ items: repo: https://github.com/opentk/opentk.git id: Vsync path: opentk/src/OpenTK.Windowing.Desktop/NativeWindowSettings.cs - startLine: 268 + startLine: 306 assemblies: - OpenTK.Windowing.Desktop namespace: OpenTK.Windowing.Desktop @@ -1173,6 +1314,40 @@ items: type: OpenTK.Windowing.Common.VSyncMode content.vb: Public Property Vsync As VSyncMode overload: OpenTK.Windowing.Desktop.NativeWindowSettings.Vsync* +- uid: OpenTK.Windowing.Desktop.NativeWindowSettings.AutoIconify + commentId: P:OpenTK.Windowing.Desktop.NativeWindowSettings.AutoIconify + id: AutoIconify + parent: OpenTK.Windowing.Desktop.NativeWindowSettings + langs: + - csharp + - vb + name: AutoIconify + nameWithType: NativeWindowSettings.AutoIconify + fullName: OpenTK.Windowing.Desktop.NativeWindowSettings.AutoIconify + type: Property + source: + remote: + path: src/OpenTK.Windowing.Desktop/NativeWindowSettings.cs + branch: pal2-work + repo: https://github.com/opentk/opentk.git + id: AutoIconify + path: opentk/src/OpenTK.Windowing.Desktop/NativeWindowSettings.cs + startLine: 312 + assemblies: + - OpenTK.Windowing.Desktop + namespace: OpenTK.Windowing.Desktop + summary: >- + Gets or sets a value indicating whether the application window will be minimized if the + + focus changes while the window is in fullscreen mode. The default value is true. + example: [] + syntax: + content: public bool AutoIconify { get; set; } + parameters: [] + return: + type: System.Boolean + content.vb: Public Property AutoIconify As Boolean + overload: OpenTK.Windowing.Desktop.NativeWindowSettings.AutoIconify* references: - uid: OpenTK.Windowing.Desktop.NativeWindow commentId: T:OpenTK.Windowing.Desktop.NativeWindow @@ -1780,12 +1955,12 @@ references: - name: " " - name: T - name: ) -- uid: OpenTK.Windowing.Desktop.NativeWindowSettings.Size* - commentId: Overload:OpenTK.Windowing.Desktop.NativeWindowSettings.Size - href: OpenTK.Windowing.Desktop.NativeWindowSettings.html#OpenTK_Windowing_Desktop_NativeWindowSettings_Size - name: Size - nameWithType: NativeWindowSettings.Size - fullName: OpenTK.Windowing.Desktop.NativeWindowSettings.Size +- uid: OpenTK.Windowing.Desktop.NativeWindowSettings.ClientSize* + commentId: Overload:OpenTK.Windowing.Desktop.NativeWindowSettings.ClientSize + href: OpenTK.Windowing.Desktop.NativeWindowSettings.html#OpenTK_Windowing_Desktop_NativeWindowSettings_ClientSize + name: ClientSize + nameWithType: NativeWindowSettings.ClientSize + fullName: OpenTK.Windowing.Desktop.NativeWindowSettings.ClientSize - uid: OpenTK.Mathematics.Vector2i commentId: T:OpenTK.Mathematics.Vector2i parent: OpenTK.Mathematics @@ -1815,6 +1990,24 @@ references: - uid: OpenTK.Mathematics name: Mathematics href: OpenTK.Mathematics.html +- uid: OpenTK.Windowing.Desktop.NativeWindowSettings.MinimumClientSize* + commentId: Overload:OpenTK.Windowing.Desktop.NativeWindowSettings.MinimumClientSize + href: OpenTK.Windowing.Desktop.NativeWindowSettings.html#OpenTK_Windowing_Desktop_NativeWindowSettings_MinimumClientSize + name: MinimumClientSize + nameWithType: NativeWindowSettings.MinimumClientSize + fullName: OpenTK.Windowing.Desktop.NativeWindowSettings.MinimumClientSize +- uid: OpenTK.Windowing.Desktop.NativeWindowSettings.MaximumClientSize* + commentId: Overload:OpenTK.Windowing.Desktop.NativeWindowSettings.MaximumClientSize + href: OpenTK.Windowing.Desktop.NativeWindowSettings.html#OpenTK_Windowing_Desktop_NativeWindowSettings_MaximumClientSize + name: MaximumClientSize + nameWithType: NativeWindowSettings.MaximumClientSize + fullName: OpenTK.Windowing.Desktop.NativeWindowSettings.MaximumClientSize +- uid: OpenTK.Windowing.Desktop.NativeWindowSettings.Size* + commentId: Overload:OpenTK.Windowing.Desktop.NativeWindowSettings.Size + href: OpenTK.Windowing.Desktop.NativeWindowSettings.html#OpenTK_Windowing_Desktop_NativeWindowSettings_Size + name: Size + nameWithType: NativeWindowSettings.Size + fullName: OpenTK.Windowing.Desktop.NativeWindowSettings.Size - uid: OpenTK.Windowing.Desktop.NativeWindowSettings.MinimumSize* commentId: Overload:OpenTK.Windowing.Desktop.NativeWindowSettings.MinimumSize href: OpenTK.Windowing.Desktop.NativeWindowSettings.html#OpenTK_Windowing_Desktop_NativeWindowSettings_MinimumSize @@ -2046,3 +2239,9 @@ references: name: VSyncMode nameWithType: VSyncMode fullName: OpenTK.Windowing.Common.VSyncMode +- uid: OpenTK.Windowing.Desktop.NativeWindowSettings.AutoIconify* + commentId: Overload:OpenTK.Windowing.Desktop.NativeWindowSettings.AutoIconify + href: OpenTK.Windowing.Desktop.NativeWindowSettings.html#OpenTK_Windowing_Desktop_NativeWindowSettings_AutoIconify + name: AutoIconify + nameWithType: NativeWindowSettings.AutoIconify + fullName: OpenTK.Windowing.Desktop.NativeWindowSettings.AutoIconify diff --git a/api/toc.yml b/api/toc.yml index d5849a69..111e934a 100644 --- a/api/toc.yml +++ b/api/toc.yml @@ -308,20 +308,28 @@ items: name: ClipboardUpdateEventArgs - uid: OpenTK.Core.Platform.CloseEventArgs name: CloseEventArgs - - uid: OpenTK.Core.Platform.ComponentSet - name: ComponentSet - uid: OpenTK.Core.Platform.ContextDepthBits name: ContextDepthBits - - uid: OpenTK.Core.Platform.ContextSettings - name: ContextSettings + - uid: OpenTK.Core.Platform.ContextPixelFormat + name: ContextPixelFormat + - uid: OpenTK.Core.Platform.ContextReleaseBehaviour + name: ContextReleaseBehaviour + - uid: OpenTK.Core.Platform.ContextResetNotificationStrategy + name: ContextResetNotificationStrategy - uid: OpenTK.Core.Platform.ContextStencilBits name: ContextStencilBits + - uid: OpenTK.Core.Platform.ContextSwapMethod + name: ContextSwapMethod + - uid: OpenTK.Core.Platform.ContextValueSelector + name: ContextValueSelector - uid: OpenTK.Core.Platform.ContextValues name: ContextValues - uid: OpenTK.Core.Platform.CursorCaptureMode name: CursorCaptureMode - uid: OpenTK.Core.Platform.CursorHandle name: CursorHandle + - uid: OpenTK.Core.Platform.DialogFileFilter + name: DialogFileFilter - uid: OpenTK.Core.Platform.DisplayConnectionChangedEventArgs name: DisplayConnectionChangedEventArgs - uid: OpenTK.Core.Platform.DisplayHandle @@ -350,6 +358,8 @@ items: name: IClipboardComponent - uid: OpenTK.Core.Platform.ICursorComponent name: ICursorComponent + - uid: OpenTK.Core.Platform.IDialogComponent + name: IDialogComponent - uid: OpenTK.Core.Platform.IDisplayComponent name: IDisplayComponent - uid: OpenTK.Core.Platform.IIconComponent @@ -404,6 +414,8 @@ items: name: MouseMoveEventArgs - uid: OpenTK.Core.Platform.MouseState name: MouseState + - uid: OpenTK.Core.Platform.OpenDialogOptions + name: OpenDialogOptions - uid: OpenTK.Core.Platform.OpenGLContextHandle name: OpenGLContextHandle - uid: OpenTK.Core.Platform.OpenGLGraphicsApiHints @@ -428,6 +440,8 @@ items: name: PlatformException - uid: OpenTK.Core.Platform.PowerStateChangeEventArgs name: PowerStateChangeEventArgs + - uid: OpenTK.Core.Platform.SaveDialogOptions + name: SaveDialogOptions - uid: OpenTK.Core.Platform.Scancode name: Scancode - uid: OpenTK.Core.Platform.ScrollEventArgs @@ -450,16 +464,18 @@ items: name: ThemeChangeEventArgs - uid: OpenTK.Core.Platform.ThemeInfo name: ThemeInfo + - uid: OpenTK.Core.Platform.ToolkitOptions + name: ToolkitOptions - uid: OpenTK.Core.Platform.VideoMode name: VideoMode - uid: OpenTK.Core.Platform.WindowBorderStyle name: WindowBorderStyle - - uid: OpenTK.Core.Platform.WindowDpiChangeEventArgs - name: WindowDpiChangeEventArgs - uid: OpenTK.Core.Platform.WindowEventArgs name: WindowEventArgs - uid: OpenTK.Core.Platform.WindowEventHandler name: WindowEventHandler + - uid: OpenTK.Core.Platform.WindowFramebufferResizeEventArgs + name: WindowFramebufferResizeEventArgs - uid: OpenTK.Core.Platform.WindowHandle name: WindowHandle - uid: OpenTK.Core.Platform.WindowMode @@ -470,6 +486,8 @@ items: name: WindowMoveEventArgs - uid: OpenTK.Core.Platform.WindowResizeEventArgs name: WindowResizeEventArgs + - uid: OpenTK.Core.Platform.WindowScaleChangeEventArgs + name: WindowScaleChangeEventArgs - uid: OpenTK.Core.Utility name: OpenTK.Core.Utility items: @@ -477,6 +495,8 @@ items: name: ConsoleLogger - uid: OpenTK.Core.Utility.DebugFileLogger name: DebugFileLogger + - uid: OpenTK.Core.Utility.DebugLogger + name: DebugLogger - uid: OpenTK.Core.Utility.ILogger name: ILogger - uid: OpenTK.Core.Utility.LogLevel @@ -500,6 +520,10 @@ items: name: GLLoader - uid: OpenTK.Graphics.GLSync name: GLSync + - uid: OpenTK.Graphics.GLXLoader + name: GLXLoader + - uid: OpenTK.Graphics.GLXLoader.BindingsContext + name: GLXLoader.BindingsContext - uid: OpenTK.Graphics.PerfQueryHandle name: PerfQueryHandle - uid: OpenTK.Graphics.ProgramHandle @@ -522,6 +546,10 @@ items: name: TransformFeedbackHandle - uid: OpenTK.Graphics.VertexArrayHandle name: VertexArrayHandle + - uid: OpenTK.Graphics.WGLLoader + name: WGLLoader + - uid: OpenTK.Graphics.WGLLoader.BindingsContext + name: WGLLoader.BindingsContext - uid: OpenTK.Graphics.Egl name: OpenTK.Graphics.Egl items: @@ -544,8 +572,6 @@ items: name: All - uid: OpenTK.Graphics.Glx.Colormap name: Colormap - - uid: OpenTK.Graphics.Glx.Display - name: Display - uid: OpenTK.Graphics.Glx.DisplayPtr name: DisplayPtr - uid: OpenTK.Graphics.Glx.Font @@ -608,12 +634,12 @@ items: name: GlxPointers - uid: OpenTK.Graphics.Glx.Pixmap name: Pixmap - - uid: OpenTK.Graphics.Glx.Screen - name: Screen + - uid: OpenTK.Graphics.Glx.ScreenPtr + name: ScreenPtr - uid: OpenTK.Graphics.Glx.Window name: Window - - uid: OpenTK.Graphics.Glx.XVisualInfo - name: XVisualInfo + - uid: OpenTK.Graphics.Glx.XVisualInfoPtr + name: XVisualInfoPtr - uid: OpenTK.Graphics.Wgl name: OpenTK.Graphics.Wgl items: @@ -834,8 +860,6 @@ items: name: PlatformComponents - uid: OpenTK.Platform.Native.Toolkit name: Toolkit - - uid: OpenTK.Platform.Native.ToolkitOptions - name: ToolkitOptions - uid: OpenTK.Platform.Native.ANGLE name: OpenTK.Platform.Native.ANGLE items: @@ -871,6 +895,8 @@ items: name: ClipboardComponent - uid: OpenTK.Platform.Native.Windows.CursorComponent name: CursorComponent + - uid: OpenTK.Platform.Native.Windows.DialogComponent + name: DialogComponent - uid: OpenTK.Platform.Native.Windows.DisplayComponent name: DisplayComponent - uid: OpenTK.Platform.Native.Windows.IconComponent @@ -885,6 +911,8 @@ items: name: OpenGLComponent - uid: OpenTK.Platform.Native.Windows.ShellComponent name: ShellComponent + - uid: OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce + name: ShellComponent.CornerPrefernce - uid: OpenTK.Platform.Native.Windows.WindowComponent name: WindowComponent - uid: OpenTK.Platform.Native.X11 @@ -913,10 +941,14 @@ items: - uid: OpenTK.Platform.Native.macOS name: OpenTK.Platform.Native.macOS items: + - uid: OpenTK.Platform.Native.macOS.MacOSClipboardComponent + name: MacOSClipboardComponent - uid: OpenTK.Platform.Native.macOS.MacOSCursorComponent name: MacOSCursorComponent - uid: OpenTK.Platform.Native.macOS.MacOSCursorComponent.Frame name: MacOSCursorComponent.Frame + - uid: OpenTK.Platform.Native.macOS.MacOSDialogComponent + name: MacOSDialogComponent - uid: OpenTK.Platform.Native.macOS.MacOSDisplayComponent name: MacOSDisplayComponent - uid: OpenTK.Platform.Native.macOS.MacOSIconComponent @@ -948,6 +980,8 @@ items: name: FocusedChangedEventArgs - uid: OpenTK.Windowing.Common.FrameEventArgs name: FrameEventArgs + - uid: OpenTK.Windowing.Common.FramebufferResizeEventArgs + name: FramebufferResizeEventArgs - uid: OpenTK.Windowing.Common.IGraphicsContext name: IGraphicsContext - uid: OpenTK.Windowing.Common.JoystickEventArgs diff --git a/opentk b/opentk index 64df6163..c5c333f0 160000 --- a/opentk +++ b/opentk @@ -1 +1 @@ -Subproject commit 64df616347382d7911034f1e9a76e42620126d41 +Subproject commit c5c333f0b7d0cb844f3393778f4a0be72c03da8f From e097a375c108132000162a34b182c062dd7a766c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julius=20H=C3=A4ger?= Date: Fri, 9 Aug 2024 14:51:04 +0200 Subject: [PATCH 31/38] Fix exclusion filters. --- docfx.json | 5 ++--- filterConfig.yml | 2 ++ 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/docfx.json b/docfx.json index 6aaff7be..0620a905 100644 --- a/docfx.json +++ b/docfx.json @@ -8,9 +8,8 @@ ], "exclude": [ "Generator/**", - "Generator.Bind/**", - "Generator.Converter/**", - "Generator.Rewrite/**", + "VkGenerator/**", + "OpenAL/OpenALGenerator/**", "OpenAL/OpenTK.OpenAL.Extensions/**" ], "src": "opentk/src" diff --git a/filterConfig.yml b/filterConfig.yml index a879ee8d..11fd96e9 100644 --- a/filterConfig.yml +++ b/filterConfig.yml @@ -7,3 +7,5 @@ apiRules: uidRegex: ^OpenTK\.Graphics\.OpenGL - exclude: uidRegex: ^OpenTK\.Graphics\.OpenGL\.Compatibility +- exclude: + uidRegex: ^OpenTK\.Graphics\.Vulkan From 82c2483bbb1d357d3f81863488dcf1265eeabd1e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julius=20H=C3=A4ger?= Date: Fri, 9 Aug 2024 15:49:49 +0200 Subject: [PATCH 32/38] Updated api definitions to 5.0-pre.11 --- api/.manifest | 3439 ++++++------ api/OpenTK.Audio.OpenAL.AL.EXTDouble.yml | 30 +- api/OpenTK.Audio.OpenAL.AL.EXTFloat32.yml | 30 +- api/OpenTK.Audio.OpenAL.AL.LoopPoints.yml | 30 +- api/OpenTK.Audio.OpenAL.AL.SourceLatency.yml | 78 +- api/OpenTK.Audio.OpenAL.AL.yml | 276 +- api/OpenTK.Audio.OpenAL.ALBase.yml | 18 +- api/OpenTK.Audio.OpenAL.ALBufferState.yml | 24 +- api/OpenTK.Audio.OpenAL.ALC.DeviceClock.yml | 90 +- api/OpenTK.Audio.OpenAL.ALC.EFX.yml | 678 +-- api/OpenTK.Audio.OpenAL.ALC.EnumerateAll.yml | 30 +- api/OpenTK.Audio.OpenAL.ALC.yml | 102 +- api/OpenTK.Audio.OpenAL.ALCapability.yml | 95 +- api/OpenTK.Audio.OpenAL.ALCaptureDevice.yml | 60 +- api/OpenTK.Audio.OpenAL.ALContext.yml | 60 +- ...penTK.Audio.OpenAL.ALContextAttributes.yml | 66 +- api/OpenTK.Audio.OpenAL.ALDevice.yml | 60 +- api/OpenTK.Audio.OpenAL.ALDistanceModel.yml | 110 +- api/OpenTK.Audio.OpenAL.ALError.yml | 77 +- api/OpenTK.Audio.OpenAL.ALFormat.yml | 246 +- api/OpenTK.Audio.OpenAL.ALGetBufferi.yml | 72 +- api/OpenTK.Audio.OpenAL.ALGetFloat.yml | 57 +- api/OpenTK.Audio.OpenAL.ALGetInteger.yml | 41 +- api/OpenTK.Audio.OpenAL.ALGetSourcei.yml | 90 +- api/OpenTK.Audio.OpenAL.ALGetString.yml | 59 +- api/OpenTK.Audio.OpenAL.ALListener3f.yml | 112 +- api/OpenTK.Audio.OpenAL.ALListenerf.yml | 88 +- api/OpenTK.Audio.OpenAL.ALListenerfv.yml | 106 +- api/OpenTK.Audio.OpenAL.ALSource3f.yml | 147 +- api/OpenTK.Audio.OpenAL.ALSource3i.yml | 144 +- api/OpenTK.Audio.OpenAL.ALSourceState.yml | 78 +- api/OpenTK.Audio.OpenAL.ALSourceType.yml | 76 +- api/OpenTK.Audio.OpenAL.ALSourceb.yml | 140 +- api/OpenTK.Audio.OpenAL.ALSourcef.yml | 208 +- api/OpenTK.Audio.OpenAL.ALSourcei.yml | 94 +- ...enTK.Audio.OpenAL.AlcContextAttributes.yml | 54 +- api/OpenTK.Audio.OpenAL.AlcError.yml | 71 +- api/OpenTK.Audio.OpenAL.AlcGetInteger.yml | 56 +- api/OpenTK.Audio.OpenAL.AlcGetString.yml | 56 +- api/OpenTK.Audio.OpenAL.AlcGetStringList.yml | 30 +- api/OpenTK.Audio.OpenAL.BufferLoopPoint.yml | 12 +- ...OpenTK.Audio.OpenAL.DoubleBufferFormat.yml | 18 +- ...enTK.Audio.OpenAL.EFXContextAttributes.yml | 12 +- api/OpenTK.Audio.OpenAL.EFXContextInteger.yml | 24 +- api/OpenTK.Audio.OpenAL.EFXListenerFloat.yml | 106 +- api/OpenTK.Audio.OpenAL.EFXSourceBoolean.yml | 118 +- api/OpenTK.Audio.OpenAL.EFXSourceFloat.yml | 118 +- api/OpenTK.Audio.OpenAL.EFXSourceInteger.yml | 106 +- api/OpenTK.Audio.OpenAL.EFXSourceInteger3.yml | 172 +- api/OpenTK.Audio.OpenAL.EffectFloat.yml | 644 +-- api/OpenTK.Audio.OpenAL.EffectInteger.yml | 242 +- api/OpenTK.Audio.OpenAL.EffectSlotFloat.yml | 106 +- api/OpenTK.Audio.OpenAL.EffectSlotInteger.yml | 112 +- api/OpenTK.Audio.OpenAL.EffectType.yml | 98 +- api/OpenTK.Audio.OpenAL.EffectVector3.yml | 145 +- api/OpenTK.Audio.OpenAL.FilterFloat.yml | 156 +- api/OpenTK.Audio.OpenAL.FilterInteger.yml | 106 +- api/OpenTK.Audio.OpenAL.FilterType.yml | 42 +- api/OpenTK.Audio.OpenAL.FloatBufferFormat.yml | 18 +- ...nTK.Audio.OpenAL.FormantFilterSettings.yml | 194 +- ...io.OpenAL.GetEnumerateAllContextString.yml | 18 +- ...penAL.GetEnumerateAllContextStringList.yml | 12 +- ...enTK.Audio.OpenAL.GetEnumerationString.yml | 38 +- ....Audio.OpenAL.GetEnumerationStringList.yml | 22 +- api/OpenTK.Audio.OpenAL.GetInteger64.yml | 30 +- api/OpenTK.Audio.OpenAL.MaxAuxiliarySends.yml | 53 +- ...udio.OpenAL.OpenALLibraryNameContainer.yml | 48 +- api/OpenTK.Audio.OpenAL.ReverbPresets.yml | 684 +-- api/OpenTK.Audio.OpenAL.ReverbProperties.yml | 150 +- api/OpenTK.Audio.OpenAL.SourceDouble.yml | 12 +- api/OpenTK.Audio.OpenAL.SourceInteger64.yml | 12 +- ...nTK.Audio.OpenAL.SourceLatencyVector2d.yml | 14 +- ...nTK.Audio.OpenAL.SourceLatencyVector2i.yml | 14 +- api/OpenTK.Compute.Native.CLBase.yml | 12 +- api/OpenTK.Compute.OpenCL.AddressingMode.yml | 36 +- ...OpenTK.Compute.OpenCL.BufferCreateType.yml | 12 +- ...enTK.Compute.OpenCL.CL.ClEventCallback.yml | 6 +- api/OpenTK.Compute.OpenCL.CL.yml | 240 +- api/OpenTK.Compute.OpenCL.CLBuffer.yml | 54 +- api/OpenTK.Compute.OpenCL.CLCommandQueue.yml | 54 +- api/OpenTK.Compute.OpenCL.CLContext.yml | 54 +- api/OpenTK.Compute.OpenCL.CLDevice.yml | 54 +- api/OpenTK.Compute.OpenCL.CLEvent.yml | 54 +- ...OpenTK.Compute.OpenCL.CLGL.ContextInfo.yml | 18 +- ....Compute.OpenCL.CLGL.ContextProperties.yml | 36 +- api/OpenTK.Compute.OpenCL.CLGL.ObjectType.yml | 54 +- ...OpenTK.Compute.OpenCL.CLGL.TextureInfo.yml | 24 +- api/OpenTK.Compute.OpenCL.CLGL.yml | 6 +- api/OpenTK.Compute.OpenCL.CLImage.yml | 54 +- api/OpenTK.Compute.OpenCL.CLKernel.yml | 54 +- api/OpenTK.Compute.OpenCL.CLPipe.yml | 54 +- api/OpenTK.Compute.OpenCL.CLPlatform.yml | 54 +- api/OpenTK.Compute.OpenCL.CLProgram.yml | 54 +- api/OpenTK.Compute.OpenCL.CLResultCode.yml | 540 +- api/OpenTK.Compute.OpenCL.CLSampler.yml | 54 +- api/OpenTK.Compute.OpenCL.ChannelOrder.yml | 126 +- api/OpenTK.Compute.OpenCL.ChannelType.yml | 108 +- ....Compute.OpenCL.CommandExecutionStatus.yml | 36 +- ...OpenTK.Compute.OpenCL.CommandQueueInfo.yml | 42 +- ...TK.Compute.OpenCL.CommandQueueProperty.yml | 6 +- api/OpenTK.Compute.OpenCL.ContextInfo.yml | 30 +- ...penTK.Compute.OpenCL.ContextProperties.yml | 90 +- api/OpenTK.Compute.OpenCL.DeviceInfo.yml | 588 +- api/OpenTK.Compute.OpenCL.DeviceType.yml | 42 +- api/OpenTK.Compute.OpenCL.EventInfo.yml | 36 +- api/OpenTK.Compute.OpenCL.FilterMode.yml | 18 +- ...OpenTK.Compute.OpenCL.ImageDescription.yml | 90 +- api/OpenTK.Compute.OpenCL.ImageFormat.yml | 18 +- api/OpenTK.Compute.OpenCL.ImageInfo.yml | 72 +- api/OpenTK.Compute.OpenCL.KernelArgInfo.yml | 36 +- api/OpenTK.Compute.OpenCL.KernelExecInfo.yml | 18 +- api/OpenTK.Compute.OpenCL.KernelInfo.yml | 54 +- ...enTK.Compute.OpenCL.KernelSubGroupInfo.yml | 24 +- ...nTK.Compute.OpenCL.KernelWorkGroupInfo.yml | 42 +- api/OpenTK.Compute.OpenCL.MapFlags.yml | 24 +- api/OpenTK.Compute.OpenCL.MemoryFlags.yml | 144 +- ...TK.Compute.OpenCL.MemoryMigrationFlags.yml | 18 +- ...OpenTK.Compute.OpenCL.MemoryObjectInfo.yml | 66 +- ...OpenTK.Compute.OpenCL.MemoryObjectType.yml | 54 +- ...pute.OpenCL.OpenCLLibraryNameContainer.yml | 48 +- api/OpenTK.Compute.OpenCL.PipeInfo.yml | 18 +- api/OpenTK.Compute.OpenCL.PlatformInfo.yml | 48 +- api/OpenTK.Compute.OpenCL.ProfilingInfo.yml | 36 +- ...OpenTK.Compute.OpenCL.ProgramBuildInfo.yml | 36 +- api/OpenTK.Compute.OpenCL.ProgramInfo.yml | 66 +- api/OpenTK.Compute.OpenCL.SamplerInfo.yml | 54 +- api/OpenTK.Compute.OpenCL.SvmMemoryFlags.yml | 78 +- ...ceptions.BindingsNotRewrittenException.yml | 55 +- ...eptions.ExtensionNotSupportedException.yml | 67 +- ...nTK.Core.Native.AutoGeneratedAttribute.yml | 30 +- api/OpenTK.Core.Native.CountAttribute.yml | 24 +- api/OpenTK.Core.Native.MarshalTk.yml | 375 +- api/OpenTK.Core.Native.SlotAttribute.yml | 12 +- api/OpenTK.Core.Platform.AppTheme.yml | 155 - api/OpenTK.Core.Platform.BatteryStatus.yml | 162 - api/OpenTK.Core.Platform.ClipboardFormat.yml | 227 - api/OpenTK.Core.Platform.ComponentSet.yml | 1125 ---- api/OpenTK.Core.Platform.ContextDepthBits.yml | 184 - ...penTK.Core.Platform.ContextPixelFormat.yml | 170 - ....Core.Platform.ContextReleaseBehaviour.yml | 126 - ...tform.ContextResetNotificationStrategy.yml | 122 - api/OpenTK.Core.Platform.ContextSettings.yml | 724 --- ...penTK.Core.Platform.ContextStencilBits.yml | 155 - ...OpenTK.Core.Platform.ContextSwapMethod.yml | 158 - api/OpenTK.Core.Platform.ContextValues.yml | 1986 ------- ...OpenTK.Core.Platform.CursorCaptureMode.yml | 168 - ...penTK.Core.Platform.GamepadBatteryType.yml | 184 - api/OpenTK.Core.Platform.GraphicsApi.yml | 184 - api/OpenTK.Core.Platform.HitType.yml | 387 -- ...enTK.Core.Platform.IClipboardComponent.yml | 625 --- api/OpenTK.Core.Platform.ICursorComponent.yml | 908 ---- api/OpenTK.Core.Platform.IDialogComponent.yml | 433 -- ...OpenTK.Core.Platform.IDisplayComponent.yml | 905 ---- api/OpenTK.Core.Platform.IIconComponent.yml | 500 -- ...penTK.Core.Platform.IJoystickComponent.yml | 706 --- ...penTK.Core.Platform.IKeyboardComponent.yml | 731 --- api/OpenTK.Core.Platform.IMouseComponent.yml | 325 -- api/OpenTK.Core.Platform.IOpenGLComponent.yml | 779 --- api/OpenTK.Core.Platform.IPalComponent.yml | 283 - api/OpenTK.Core.Platform.IShellComponent.yml | 343 -- ...OpenTK.Core.Platform.ISurfaceComponent.yml | 409 -- api/OpenTK.Core.Platform.IWindowComponent.yml | 3172 ----------- api/OpenTK.Core.Platform.JoystickAxis.yml | 230 - api/OpenTK.Core.Platform.JoystickButton.yml | 446 -- api/OpenTK.Core.Platform.Key.yml | 3888 -------------- api/OpenTK.Core.Platform.KeyModifier.yml | 608 --- api/OpenTK.Core.Platform.MouseButton.yml | 300 -- api/OpenTK.Core.Platform.MouseButtonFlags.yml | 310 -- ...OpenTK.Core.Platform.OpenDialogOptions.yml | 136 - ...K.Core.Platform.OpenGLGraphicsApiHints.yml | 1579 ------ api/OpenTK.Core.Platform.OpenGLProfile.yml | 155 - api/OpenTK.Core.Platform.PalComponents.yml | 484 -- ...OpenTK.Core.Platform.PlatformEventType.yml | 701 --- ...OpenTK.Core.Platform.SaveDialogOptions.yml | 71 - api/OpenTK.Core.Platform.Scancode.yml | 3879 -------------- api/OpenTK.Core.Platform.SurfaceType.yml | 126 - api/OpenTK.Core.Platform.SystemCursorType.yml | 770 --- api/OpenTK.Core.Platform.SystemIconType.yml | 271 - ...OpenTK.Core.Platform.WindowBorderStyle.yml | 187 - ...Core.Platform.WindowDpiChangeEventArgs.yml | 591 --- ...penTK.Core.Platform.WindowEventHandler.yml | 112 - api/OpenTK.Core.Platform.WindowMode.yml | 242 - api/OpenTK.Core.Platform.yml | 802 --- api/OpenTK.Core.Utility.ConsoleLogger.yml | 12 +- api/OpenTK.Core.Utility.DebugFileLogger.yml | 24 +- api/OpenTK.Core.Utility.DebugLogger.yml | 12 +- api/OpenTK.Core.Utility.ILogger.yml | 72 +- api/OpenTK.Core.Utility.LogLevel.yml | 36 +- api/OpenTK.Core.Utils.yml | 18 +- api/OpenTK.Graphics.BufferHandle.yml | 66 +- api/OpenTK.Graphics.CLContext.yml | 60 +- api/OpenTK.Graphics.CLEvent.yml | 60 +- api/OpenTK.Graphics.DisplayListHandle.yml | 66 +- api/OpenTK.Graphics.Egl.Egl.yml | 860 +-- api/OpenTK.Graphics.Egl.EglException.yml | 61 +- api/OpenTK.Graphics.Egl.ErrorCode.yml | 96 +- api/OpenTK.Graphics.Egl.RenderApi.yml | 24 +- api/OpenTK.Graphics.Egl.RenderableFlags.yml | 36 +- api/OpenTK.Graphics.Egl.SurfaceType.yml | 48 +- api/OpenTK.Graphics.FramebufferHandle.yml | 66 +- api/OpenTK.Graphics.GLHandleARB.yml | 72 +- api/OpenTK.Graphics.GLLoader.yml | 12 +- api/OpenTK.Graphics.GLSync.yml | 60 +- ...nTK.Graphics.GLXLoader.BindingsContext.yml | 12 +- api/OpenTK.Graphics.GLXLoader.yml | 6 +- api/OpenTK.Graphics.Glx.All.yml | 1764 +----- api/OpenTK.Graphics.Glx.Colormap.yml | 30 +- api/OpenTK.Graphics.Glx.DisplayPtr.yml | 30 +- api/OpenTK.Graphics.Glx.Font.yml | 30 +- api/OpenTK.Graphics.Glx.GLXAttribute.yml | 204 +- api/OpenTK.Graphics.Glx.GLXContext.yml | 30 +- api/OpenTK.Graphics.Glx.GLXContextID.yml | 30 +- api/OpenTK.Graphics.Glx.GLXDrawable.yml | 30 +- api/OpenTK.Graphics.Glx.GLXFBConfig.yml | 30 +- api/OpenTK.Graphics.Glx.GLXFBConfigID.yml | 30 +- api/OpenTK.Graphics.Glx.GLXFBConfigIDSGIX.yml | 30 +- api/OpenTK.Graphics.Glx.GLXFBConfigSGIX.yml | 30 +- ...TK.Graphics.Glx.GLXHyperpipeConfigSGIX.yml | 30 +- ...K.Graphics.Glx.GLXHyperpipeNetworkSGIX.yml | 18 +- api/OpenTK.Graphics.Glx.GLXPbuffer.yml | 30 +- api/OpenTK.Graphics.Glx.GLXPbufferSGIX.yml | 30 +- api/OpenTK.Graphics.Glx.GLXPixmap.yml | 30 +- ...K.Graphics.Glx.GLXVideoCaptureDeviceNV.yml | 30 +- api/OpenTK.Graphics.Glx.GLXVideoDeviceNV.yml | 30 +- ...OpenTK.Graphics.Glx.GLXVideoSourceSGIX.yml | 30 +- api/OpenTK.Graphics.Glx.GLXWindow.yml | 30 +- api/OpenTK.Graphics.Glx.Glx.AMD.yml | 634 ++- api/OpenTK.Graphics.Glx.Glx.ARB.yml | 362 +- api/OpenTK.Graphics.Glx.Glx.EXT.yml | 449 +- api/OpenTK.Graphics.Glx.Glx.MESA.yml | 610 ++- api/OpenTK.Graphics.Glx.Glx.NV.yml | 1756 +++++- api/OpenTK.Graphics.Glx.Glx.OML.yml | 629 ++- api/OpenTK.Graphics.Glx.Glx.SGI.yml | 348 +- api/OpenTK.Graphics.Glx.Glx.SGIX.yml | 2617 +++++++-- api/OpenTK.Graphics.Glx.Glx.SUN.yml | 203 +- api/OpenTK.Graphics.Glx.Glx.yml | 2616 +++++++-- api/OpenTK.Graphics.Glx.GlxPointers.yml | 792 +-- api/OpenTK.Graphics.Glx.Pixmap.yml | 30 +- api/OpenTK.Graphics.Glx.ScreenPtr.yml | 30 +- api/OpenTK.Graphics.Glx.Window.yml | 30 +- api/OpenTK.Graphics.Glx.XVisualInfo.yml | 285 - api/OpenTK.Graphics.Glx.XVisualInfoPtr.yml | 30 +- api/OpenTK.Graphics.PerfQueryHandle.yml | 66 +- api/OpenTK.Graphics.ProgramHandle.yml | 66 +- api/OpenTK.Graphics.ProgramPipelineHandle.yml | 66 +- api/OpenTK.Graphics.QueryHandle.yml | 66 +- api/OpenTK.Graphics.RenderbufferHandle.yml | 66 +- api/OpenTK.Graphics.SamplerHandle.yml | 66 +- api/OpenTK.Graphics.ShaderHandle.yml | 66 +- api/OpenTK.Graphics.SpecialNumbers.yml | 84 +- api/OpenTK.Graphics.TextureHandle.yml | 66 +- ...penTK.Graphics.TransformFeedbackHandle.yml | 66 +- api/OpenTK.Graphics.VKLoader.yml | 532 ++ api/OpenTK.Graphics.VertexArrayHandle.yml | 66 +- ...nTK.Graphics.WGLLoader.BindingsContext.yml | 12 +- api/OpenTK.Graphics.WGLLoader.yml | 6 +- api/OpenTK.Graphics.Wgl.AccelerationType.yml | 42 +- api/OpenTK.Graphics.Wgl.All.yml | 1830 ++----- api/OpenTK.Graphics.Wgl.ColorBuffer.yml | 90 +- api/OpenTK.Graphics.Wgl.ColorBufferMask.yml | 218 + api/OpenTK.Graphics.Wgl.ColorRef.yml | 24 +- api/OpenTK.Graphics.Wgl.ContextAttribs.yml | 48 +- api/OpenTK.Graphics.Wgl.ContextAttribute.yml | 24 +- api/OpenTK.Graphics.Wgl.ContextFlagsMask.yml | 164 + ...OpenTK.Graphics.Wgl.ContextProfileMask.yml | 164 + ...> OpenTK.Graphics.Wgl.DXInteropMaskNV.yml} | 182 +- ...nTK.Graphics.Wgl.DigitalVideoAttribute.yml | 40 +- api/OpenTK.Graphics.Wgl.FontFormat.yml | 24 +- api/OpenTK.Graphics.Wgl.GPUPropertyAMD.yml | 80 +- ...penTK.Graphics.Wgl.GammaTableAttribute.yml | 24 +- ...penTK.Graphics.Wgl.ImageBufferMaskI3D.yml} | 122 +- ...enTK.Graphics.Wgl.LayerPlaneDescriptor.yml | 150 +- api/OpenTK.Graphics.Wgl.LayerPlaneMask.yml | 903 ++++ api/OpenTK.Graphics.Wgl.ObjectTypeDX.yml | 96 +- api/OpenTK.Graphics.Wgl.PBufferAttribute.yml | 88 +- ...OpenTK.Graphics.Wgl.PBufferCubeMapFace.yml | 56 +- ...enTK.Graphics.Wgl.PBufferTextureFormat.yml | 32 +- ...enTK.Graphics.Wgl.PBufferTextureTarget.yml | 40 +- ...enTK.Graphics.Wgl.PixelFormatAttribute.yml | 672 +-- ...nTK.Graphics.Wgl.PixelFormatDescriptor.yml | 162 +- api/OpenTK.Graphics.Wgl.PixelType.yml | 40 +- api/OpenTK.Graphics.Wgl.Rect.yml | 30 +- ...OpenTK.Graphics.Wgl.StereoEmitterState.yml | 40 +- api/OpenTK.Graphics.Wgl.SwapMethod.yml | 56 +- ...aphics.Wgl.VideoCaptureDeviceAttribute.yml | 16 +- api/OpenTK.Graphics.Wgl.VideoOutputBuffer.yml | 48 +- ...nTK.Graphics.Wgl.VideoOutputBufferType.yml | 48 +- ...OpenTK.Graphics.Wgl.WGLColorBufferMask.yml | 238 - ...penTK.Graphics.Wgl.WGLContextFlagsMask.yml | 184 - ...nTK.Graphics.Wgl.WGLContextProfileMask.yml | 184 - api/OpenTK.Graphics.Wgl.WGLLayerPlaneMask.yml | 1031 ---- api/OpenTK.Graphics.Wgl.Wgl.AMD.yml | 427 +- api/OpenTK.Graphics.Wgl.Wgl.ARB.yml | 900 ++-- api/OpenTK.Graphics.Wgl.Wgl.EXT.yml | 917 ++-- api/OpenTK.Graphics.Wgl.Wgl.I3D.yml | 2604 ++------- api/OpenTK.Graphics.Wgl.Wgl.NV.yml | 3404 +++++------- api/OpenTK.Graphics.Wgl.Wgl.OML.yml | 730 +-- api/OpenTK.Graphics.Wgl.Wgl._3DL.yml | 29 +- api/OpenTK.Graphics.Wgl.Wgl.yml | 1507 ++---- api/OpenTK.Graphics.Wgl.WglPointers.yml | 876 +-- api/OpenTK.Graphics.Wgl._GPU_DEVICE.yml | 36 +- api/OpenTK.Graphics.Wgl.yml | 96 +- api/OpenTK.Graphics.yml | 7 + api/OpenTK.IBindingsContext.yml | 12 +- api/OpenTK.Input.Hid.HidConsumerUsage.yml | 18 +- ...penTK.Input.Hid.HidGenericDesktopUsage.yml | 288 +- api/OpenTK.Input.Hid.HidHelper.yml | 12 +- api/OpenTK.Input.Hid.HidPage.yml | 162 +- api/OpenTK.Input.Hid.HidSimulationUsage.yml | 312 +- api/OpenTK.Mathematics.Argb.yml | 6 +- api/OpenTK.Mathematics.BezierCurve.yml | 102 +- api/OpenTK.Mathematics.BezierCurveCubic.yml | 60 +- api/OpenTK.Mathematics.BezierCurveQuadric.yml | 54 +- api/OpenTK.Mathematics.Box2.yml | 496 +- api/OpenTK.Mathematics.Box2d.yml | 488 +- api/OpenTK.Mathematics.Box2i.yml | 474 +- api/OpenTK.Mathematics.Box3.yml | 530 +- api/OpenTK.Mathematics.Box3d.yml | 528 +- api/OpenTK.Mathematics.Box3i.yml | 506 +- api/OpenTK.Mathematics.Color3-1.yml | 90 +- api/OpenTK.Mathematics.Color3.yml | 936 +--- api/OpenTK.Mathematics.Color4-1.yml | 96 +- api/OpenTK.Mathematics.Color4.yml | 948 +--- api/OpenTK.Mathematics.Hsl.yml | 6 +- api/OpenTK.Mathematics.Hsla.yml | 6 +- api/OpenTK.Mathematics.Hsv.yml | 6 +- api/OpenTK.Mathematics.Hsva.yml | 6 +- api/OpenTK.Mathematics.IColorSpace3.yml | 6 +- api/OpenTK.Mathematics.IColorSpace4.yml | 6 +- api/OpenTK.Mathematics.MathHelper.yml | 4719 +---------------- api/OpenTK.Mathematics.Matrix2.yml | 892 ++-- api/OpenTK.Mathematics.Matrix2d.yml | 894 ++-- api/OpenTK.Mathematics.Matrix2x3.yml | 722 +-- api/OpenTK.Mathematics.Matrix2x3d.yml | 720 +-- api/OpenTK.Mathematics.Matrix2x4.yml | 758 ++- api/OpenTK.Mathematics.Matrix2x4d.yml | 758 ++- api/OpenTK.Mathematics.Matrix3.yml | 1054 ++-- api/OpenTK.Mathematics.Matrix3d.yml | 1044 ++-- api/OpenTK.Mathematics.Matrix3x2.yml | 744 +-- api/OpenTK.Mathematics.Matrix3x2d.yml | 744 +-- api/OpenTK.Mathematics.Matrix3x4.yml | 934 ++-- api/OpenTK.Mathematics.Matrix3x4d.yml | 934 ++-- api/OpenTK.Mathematics.Matrix4.yml | 1336 +++-- api/OpenTK.Mathematics.Matrix4d.yml | 1997 ++++--- api/OpenTK.Mathematics.Matrix4x2.yml | 790 +-- api/OpenTK.Mathematics.Matrix4x2d.yml | 788 +-- api/OpenTK.Mathematics.Matrix4x3.yml | 944 ++-- api/OpenTK.Mathematics.Matrix4x3d.yml | 948 ++-- api/OpenTK.Mathematics.Quaternion.yml | 496 +- api/OpenTK.Mathematics.Quaterniond.yml | 496 +- api/OpenTK.Mathematics.Rgb.yml | 6 +- api/OpenTK.Mathematics.Rgba.yml | 6 +- api/OpenTK.Mathematics.Vector2.yml | 1182 +++-- api/OpenTK.Mathematics.Vector2d.yml | 1174 ++-- api/OpenTK.Mathematics.Vector2h.yml | 228 +- api/OpenTK.Mathematics.Vector2i.yml | 613 +-- api/OpenTK.Mathematics.Vector3.yml | 1388 +++-- api/OpenTK.Mathematics.Vector3d.yml | 1346 +++-- api/OpenTK.Mathematics.Vector3h.yml | 350 +- api/OpenTK.Mathematics.Vector3i.yml | 699 +-- api/OpenTK.Mathematics.Vector4.yml | 1730 +++--- api/OpenTK.Mathematics.Vector4d.yml | 1733 +++--- api/OpenTK.Mathematics.Vector4h.yml | 892 +--- api/OpenTK.Mathematics.Vector4i.yml | 1223 ++--- api/OpenTK.Platform.AppTheme.yml | 131 + ...Data.yml => OpenTK.Platform.AudioData.yml} | 134 +- ...fo.yml => OpenTK.Platform.BatteryInfo.yml} | 174 +- api/OpenTK.Platform.BatteryStatus.yml | 138 + ....Bitmap.yml => OpenTK.Platform.Bitmap.yml} | 180 +- api/OpenTK.Platform.ClipboardFormat.yml | 195 + ...nTK.Platform.ClipboardUpdateEventArgs.yml} | 140 +- ...yml => OpenTK.Platform.CloseEventArgs.yml} | 130 +- api/OpenTK.Platform.ContextDepthBits.yml | 156 + api/OpenTK.Platform.ContextPixelFormat.yml | 146 + ...penTK.Platform.ContextReleaseBehaviour.yml | 106 + ...tform.ContextResetNotificationStrategy.yml | 102 + api/OpenTK.Platform.ContextStencilBits.yml | 131 + api/OpenTK.Platform.ContextSwapMethod.yml | 134 + ... OpenTK.Platform.ContextValueSelector.yml} | 74 +- api/OpenTK.Platform.ContextValues.yml | 1834 +++++++ api/OpenTK.Platform.CursorCaptureMode.yml | 144 + ...e.yml => OpenTK.Platform.CursorHandle.yml} | 98 +- ...l => OpenTK.Platform.DialogFileFilter.yml} | 440 +- ...orm.DisplayConnectionChangedEventArgs.yml} | 172 +- ....yml => OpenTK.Platform.DisplayHandle.yml} | 98 +- ... => OpenTK.Platform.DisplayResolution.yml} | 158 +- ...eue.yml => OpenTK.Platform.EventQueue.yml} | 382 +- ... => OpenTK.Platform.FileDropEventArgs.yml} | 194 +- ...yml => OpenTK.Platform.FocusEventArgs.yml} | 156 +- ...=> OpenTK.Platform.GamepadBatteryInfo.yml} | 146 +- api/OpenTK.Platform.GamepadBatteryType.yml | 156 + api/OpenTK.Platform.GraphicsApi.yml | 156 + ...l => OpenTK.Platform.GraphicsApiHints.yml} | 88 +- ...itTest.yml => OpenTK.Platform.HitTest.yml} | 68 +- api/OpenTK.Platform.HitType.yml | 331 ++ api/OpenTK.Platform.IClipboardComponent.yml | 585 ++ api/OpenTK.Platform.ICursorComponent.yml | 860 +++ api/OpenTK.Platform.IDialogComponent.yml | 704 +++ api/OpenTK.Platform.IDisplayComponent.yml | 894 ++++ api/OpenTK.Platform.IIconComponent.yml | 471 ++ api/OpenTK.Platform.IJoystickComponent.yml | 646 +++ api/OpenTK.Platform.IKeyboardComponent.yml | 675 +++ api/OpenTK.Platform.IMouseComponent.yml | 592 +++ api/OpenTK.Platform.IOpenGLComponent.yml | 765 +++ api/OpenTK.Platform.IPalComponent.yml | 255 + api/OpenTK.Platform.IShellComponent.yml | 315 ++ api/OpenTK.Platform.ISurfaceComponent.yml | 373 ++ api/OpenTK.Platform.IVulkanComponent.yml | 529 ++ api/OpenTK.Platform.IWindowComponent.yml | 3103 +++++++++++ ...dle.yml => OpenTK.Platform.IconHandle.yml} | 98 +- ...latform.InputLanguageChangedEventArgs.yml} | 274 +- api/OpenTK.Platform.JoystickAxis.yml | 194 + api/OpenTK.Platform.JoystickButton.yml | 378 ++ ...yml => OpenTK.Platform.JoystickHandle.yml} | 98 +- api/OpenTK.Platform.Key.yml | 3356 ++++++++++++ ...l => OpenTK.Platform.KeyDownEventArgs.yml} | 298 +- api/OpenTK.Platform.KeyModifier.yml | 532 ++ ...yml => OpenTK.Platform.KeyUpEventArgs.yml} | 268 +- api/OpenTK.Platform.MessageBoxButton.yml | 206 + api/OpenTK.Platform.MessageBoxType.yml | 211 + api/OpenTK.Platform.MouseButton.yml | 256 + ...nTK.Platform.MouseButtonDownEventArgs.yml} | 222 +- api/OpenTK.Platform.MouseButtonFlags.yml | 266 + ...penTK.Platform.MouseButtonUpEventArgs.yml} | 222 +- ...> OpenTK.Platform.MouseEnterEventArgs.yml} | 156 +- ...le.yml => OpenTK.Platform.MouseHandle.yml} | 98 +- ...=> OpenTK.Platform.MouseMoveEventArgs.yml} | 156 +- ...ate.yml => OpenTK.Platform.MouseState.yml} | 116 +- ...form.Native.ANGLE.ANGLEOpenGLComponent.yml | 897 ++-- api/OpenTK.Platform.Native.ANGLE.yml | 2 +- api/OpenTK.Platform.Native.Backend.yml | 60 +- ...nTK.Platform.Native.PlatformComponents.yml | 371 +- ...tform.Native.SDL.SDLClipboardComponent.yml | 474 +- ...Platform.Native.SDL.SDLCursorComponent.yml | 642 +-- ...latform.Native.SDL.SDLDisplayComponent.yml | 984 ++-- ...K.Platform.Native.SDL.SDLIconComponent.yml | 475 +- ...atform.Native.SDL.SDLJoystickComponent.yml | 740 ++- ...atform.Native.SDL.SDLKeyboardComponent.yml | 712 ++- ....Platform.Native.SDL.SDLMouseComponent.yml | 683 ++- ...Platform.Native.SDL.SDLOpenGLComponent.yml | 801 ++- ....Platform.Native.SDL.SDLShellComponent.yml | 386 +- ...Platform.Native.SDL.SDLWindowComponent.yml | 3342 ++++++------ api/OpenTK.Platform.Native.SDL.yml | 2 +- api/OpenTK.Platform.Native.Toolkit.yml | 944 ---- api/OpenTK.Platform.Native.ToolkitOptions.yml | 401 -- ...form.Native.Windows.ClipboardComponent.yml | 534 +- ...latform.Native.Windows.CursorComponent.yml | 750 ++- ...latform.Native.Windows.DialogComponent.yml | 776 +-- ...atform.Native.Windows.DisplayComponent.yml | 1020 ++-- ....Platform.Native.Windows.IconComponent.yml | 505 +- ...tform.Native.Windows.JoystickComponent.yml | 830 ++- ...tform.Native.Windows.KeyboardComponent.yml | 712 ++- ...Platform.Native.Windows.MouseComponent.yml | 663 ++- ...latform.Native.Windows.OpenGLComponent.yml | 873 ++- ...Windows.ShellComponent.CornerPrefernce.yml | 40 +- ...Platform.Native.Windows.ShellComponent.yml | 490 +- ...latform.Native.Windows.WindowComponent.yml | 3394 ++++++------ api/OpenTK.Platform.Native.Windows.yml | 2 +- ...tform.Native.X11.X11ClipboardComponent.yml | 474 +- ...Platform.Native.X11.X11CursorComponent.yml | 642 +-- ...Platform.Native.X11.X11DialogComponent.yml | 1255 +++++ ...latform.Native.X11.X11DisplayComponent.yml | 1020 ++-- ....Native.X11.X11IconComponent.IconImage.yml | 40 +- ...K.Platform.Native.X11.X11IconComponent.yml | 469 +- ...atform.Native.X11.X11KeyboardComponent.yml | 712 ++- ....Platform.Native.X11.X11MouseComponent.yml | 654 ++- ...Platform.Native.X11.X11OpenGLComponent.yml | 917 ++-- ....Platform.Native.X11.X11ShellComponent.yml | 396 +- ...Platform.Native.X11.X11WindowComponent.yml | 3534 ++++++------ api/OpenTK.Platform.Native.X11.yml | 9 +- ...m.Native.macOS.MacOSClipboardComponent.yml | 528 +- ...ative.macOS.MacOSCursorComponent.Frame.yml | 72 +- ...form.Native.macOS.MacOSCursorComponent.yml | 746 ++- ...form.Native.macOS.MacOSDialogComponent.yml | 776 +-- ...orm.Native.macOS.MacOSDisplayComponent.yml | 1070 ++-- ...atform.Native.macOS.MacOSIconComponent.yml | 439 +- ...rm.Native.macOS.MacOSKeyboardComponent.yml | 712 ++- ...tform.Native.macOS.MacOSMouseComponent.yml | 656 ++- ...form.Native.macOS.MacOSOpenGLComponent.yml | 823 ++- ...tform.Native.macOS.MacOSShellComponent.yml | 386 +- ...form.Native.macOS.MacOSWindowComponent.yml | 3348 ++++++------ api/OpenTK.Platform.Native.macOS.yml | 2 +- api/OpenTK.Platform.Native.yml | 9 +- api/OpenTK.Platform.OpenDialogOptions.yml | 133 + ...> OpenTK.Platform.OpenGLContextHandle.yml} | 98 +- ...OpenTK.Platform.OpenGLGraphicsApiHints.yml | 1459 +++++ api/OpenTK.Platform.OpenGLProfile.yml | 131 + ...> OpenTK.Platform.Pal2BindingsContext.yml} | 212 +- api/OpenTK.Platform.PalComponents.yml | 416 ++ ...n.yml => OpenTK.Platform.PalException.yml} | 241 +- ...ndle.yml => OpenTK.Platform.PalHandle.yml} | 158 +- ...K.Platform.PalNotImplementedException.yml} | 199 +- ... OpenTK.Platform.PlatformEventHandler.yml} | 68 +- api/OpenTK.Platform.PlatformEventType.yml | 620 +++ ... => OpenTK.Platform.PlatformException.yml} | 157 +- ...TK.Platform.PowerStateChangeEventArgs.yml} | 124 +- api/OpenTK.Platform.RawMouseMoveEventArgs.yml | 457 ++ api/OpenTK.Platform.SaveDialogOptions.yml | 59 + api/OpenTK.Platform.Scancode.yml | 3303 ++++++++++++ ...ml => OpenTK.Platform.ScrollEventArgs.yml} | 194 +- ....yml => OpenTK.Platform.SurfaceHandle.yml} | 98 +- api/OpenTK.Platform.SurfaceType.yml | 106 + api/OpenTK.Platform.SystemCursorType.yml | 670 +++ api/OpenTK.Platform.SystemIconType.yml | 231 + ...l => OpenTK.Platform.SystemMemoryInfo.yml} | 93 +- ... OpenTK.Platform.TextEditingEventArgs.yml} | 216 +- ...=> OpenTK.Platform.TextInputEventArgs.yml} | 168 +- ... OpenTK.Platform.ThemeChangeEventArgs.yml} | 144 +- ...Info.yml => OpenTK.Platform.ThemeInfo.yml} | 376 +- api/OpenTK.Platform.Toolkit.yml | 891 ++++ ....Platform.ToolkitOptions.MacOSOptions.yml} | 218 +- ...Platform.ToolkitOptions.WindowsOptions.yml | 439 ++ ...TK.Platform.ToolkitOptions.X11Options.yml} | 218 +- ...yml => OpenTK.Platform.ToolkitOptions.yml} | 275 +- ...Mode.yml => OpenTK.Platform.VideoMode.yml} | 200 +- api/OpenTK.Platform.WindowBorderStyle.yml | 159 + ...ml => OpenTK.Platform.WindowEventArgs.yml} | 171 +- api/OpenTK.Platform.WindowEventHandler.yml | 100 + ...form.WindowFramebufferResizeEventArgs.yml} | 156 +- ...e.yml => OpenTK.Platform.WindowHandle.yml} | 194 +- api/OpenTK.Platform.WindowMode.yml | 206 + ...TK.Platform.WindowModeChangeEventArgs.yml} | 170 +- ...> OpenTK.Platform.WindowMoveEventArgs.yml} | 186 +- ...OpenTK.Platform.WindowResizeEventArgs.yml} | 186 +- ...K.Platform.WindowScaleChangeEventArgs.yml} | 186 +- api/OpenTK.Platform.yml | 904 ++++ api/OpenTK.Windowing.Common.ContextAPI.yml | 24 +- api/OpenTK.Windowing.Common.ContextFlags.yml | 30 +- ...OpenTK.Windowing.Common.ContextProfile.yml | 24 +- api/OpenTK.Windowing.Common.CursorState.yml | 24 +- ...nTK.Windowing.Common.FileDropEventArgs.yml | 18 +- ...ndowing.Common.FocusedChangedEventArgs.yml | 18 +- ...OpenTK.Windowing.Common.FrameEventArgs.yml | 18 +- ...wing.Common.FramebufferResizeEventArgs.yml | 36 +- ...enTK.Windowing.Common.IGraphicsContext.yml | 36 +- api/OpenTK.Windowing.Common.Input.Hat.yml | 60 +- api/OpenTK.Windowing.Common.Input.Image.yml | 36 +- ...Common.Input.MouseCursor.StandardShape.yml | 284 +- ...nTK.Windowing.Common.Input.MouseCursor.yml | 374 +- ...enTK.Windowing.Common.Input.WindowIcon.yml | 18 +- ...nTK.Windowing.Common.JoystickEventArgs.yml | 24 +- ....Windowing.Common.KeyboardKeyEventArgs.yml | 62 +- ...TK.Windowing.Common.MaximizedEventArgs.yml | 18 +- ...TK.Windowing.Common.MinimizedEventArgs.yml | 18 +- ...enTK.Windowing.Common.MonitorEventArgs.yml | 24 +- api/OpenTK.Windowing.Common.MonitorHandle.yml | 24 +- ....Windowing.Common.MouseButtonEventArgs.yml | 40 +- ...TK.Windowing.Common.MouseMoveEventArgs.yml | 54 +- ...K.Windowing.Common.MouseWheelEventArgs.yml | 36 +- ...penTK.Windowing.Common.ResizeEventArgs.yml | 36 +- ...TK.Windowing.Common.TextInputEventArgs.yml | 24 +- api/OpenTK.Windowing.Common.VSyncMode.yml | 24 +- api/OpenTK.Windowing.Common.WindowBorder.yml | 24 +- ...ndowing.Common.WindowPositionEventArgs.yml | 36 +- api/OpenTK.Windowing.Common.WindowState.yml | 30 +- ....Windowing.Desktop.GLFWGraphicsContext.yml | 48 +- api/OpenTK.Windowing.Desktop.GLFWProvider.yml | 81 +- api/OpenTK.Windowing.Desktop.GameWindow.yml | 182 +- ...K.Windowing.Desktop.GameWindowSettings.yml | 54 +- ...Windowing.Desktop.IGLFWGraphicsContext.yml | 12 +- api/OpenTK.Windowing.Desktop.MonitorInfo.yml | 102 +- api/OpenTK.Windowing.Desktop.Monitors.yml | 72 +- api/OpenTK.Windowing.Desktop.NativeWindow.yml | 663 +-- ...Windowing.Desktop.NativeWindowSettings.yml | 222 +- ...hicsLibraryFramework.ANGLEPlatformType.yml | 223 + ...ing.GraphicsLibraryFramework.ClientApi.yml | 24 +- ...raphicsLibraryFramework.ConnectedState.yml | 18 +- ...ng.GraphicsLibraryFramework.ContextApi.yml | 18 +- ...dowing.GraphicsLibraryFramework.Cursor.yml | 6 +- ...aphicsLibraryFramework.CursorModeValue.yml | 49 +- ...g.GraphicsLibraryFramework.CursorShape.yml | 377 +- ...sLibraryFramework.CursorStateAttribute.yml | 12 +- ...ing.GraphicsLibraryFramework.ErrorCode.yml | 295 +- ...indowing.GraphicsLibraryFramework.GLFW.yml | 3142 ++++++----- ...csLibraryFramework.GLFWBindingsContext.yml | 12 +- ...ryFramework.GLFWCallbacks.CharCallback.yml | 6 +- ...amework.GLFWCallbacks.CharModsCallback.yml | 6 +- ...work.GLFWCallbacks.CursorEnterCallback.yml | 6 +- ...mework.GLFWCallbacks.CursorPosCallback.yml | 6 +- ...ryFramework.GLFWCallbacks.DropCallback.yml | 6 +- ...yFramework.GLFWCallbacks.ErrorCallback.yml | 6 +- ....GLFWCallbacks.FramebufferSizeCallback.yml | 6 +- ...amework.GLFWCallbacks.JoystickCallback.yml | 6 +- ...aryFramework.GLFWCallbacks.KeyCallback.yml | 6 +- ...ramework.GLFWCallbacks.MonitorCallback.yml | 6 +- ...work.GLFWCallbacks.MouseButtonCallback.yml | 6 +- ...Framework.GLFWCallbacks.ScrollCallback.yml | 6 +- ...work.GLFWCallbacks.WindowCloseCallback.yml | 6 +- ...FWCallbacks.WindowContentScaleCallback.yml | 6 +- ...work.GLFWCallbacks.WindowFocusCallback.yml | 6 +- ...rk.GLFWCallbacks.WindowIconifyCallback.yml | 6 +- ...k.GLFWCallbacks.WindowMaximizeCallback.yml | 6 +- ...mework.GLFWCallbacks.WindowPosCallback.yml | 6 +- ...rk.GLFWCallbacks.WindowRefreshCallback.yml | 6 +- ...ework.GLFWCallbacks.WindowSizeCallback.yml | 6 +- ...GraphicsLibraryFramework.GLFWCallbacks.yml | 6 +- ...GraphicsLibraryFramework.GLFWException.yml | 85 +- ...aphicsLibraryFramework.GLFWallocatefun.yml | 170 + ...GraphicsLibraryFramework.GLFWallocator.yml | 425 ++ ...hicsLibraryFramework.GLFWdeallocatefun.yml | 128 + ...hicsLibraryFramework.GLFWreallocatefun.yml | 167 + ....GraphicsLibraryFramework.GamepadState.yml | 18 +- ...ing.GraphicsLibraryFramework.GammaRamp.yml | 30 +- ...ndowing.GraphicsLibraryFramework.Image.yml | 30 +- ...aryFramework.InitHintANGLEPlatformType.yml | 139 + ....GraphicsLibraryFramework.InitHintBool.yml | 56 +- ...g.GraphicsLibraryFramework.InitHintInt.yml | 55 +- ...phicsLibraryFramework.InitHintPlatform.yml | 128 + ...g.GraphicsLibraryFramework.InputAction.yml | 24 +- ....GraphicsLibraryFramework.JoystickHats.yml | 60 +- ...csLibraryFramework.JoystickInputAction.yml | 18 +- ...GraphicsLibraryFramework.JoystickState.yml | 100 +- ....GraphicsLibraryFramework.KeyModifiers.yml | 42 +- ...GraphicsLibraryFramework.KeyboardState.yml | 58 +- ...indowing.GraphicsLibraryFramework.Keys.yml | 726 +-- ...csLibraryFramework.LockKeyModAttribute.yml | 12 +- ...owing.GraphicsLibraryFramework.Monitor.yml | 6 +- ...g.GraphicsLibraryFramework.MouseButton.yml | 78 +- ...ng.GraphicsLibraryFramework.MouseState.yml | 118 +- ...GraphicsLibraryFramework.OpenGlProfile.yml | 24 +- ...wing.GraphicsLibraryFramework.Platform.yml | 200 + ...braryFramework.RawMouseMotionAttribute.yml | 12 +- ...aphicsLibraryFramework.ReleaseBehavior.yml | 24 +- ...ng.GraphicsLibraryFramework.Robustness.yml | 24 +- ...phicsLibraryFramework.StickyAttributes.yml | 18 +- ...ing.GraphicsLibraryFramework.VideoMode.yml | 42 +- ...wing.GraphicsLibraryFramework.VkHandle.yml | 70 +- ...aphicsLibraryFramework.WaylandLibDecor.yml | 108 + ...dowing.GraphicsLibraryFramework.Window.yml | 6 +- ...aphicsLibraryFramework.WindowAttribute.yml | 74 +- ...ibraryFramework.WindowAttributeGetBool.yml | 121 +- ...yFramework.WindowAttributeGetClientApi.yml | 12 +- ...Framework.WindowAttributeGetContextApi.yml | 12 +- ...LibraryFramework.WindowAttributeGetInt.yml | 24 +- ...mework.WindowAttributeGetOpenGlProfile.yml | 12 +- ...work.WindowAttributeGetReleaseBehavior.yml | 12 +- ...Framework.WindowAttributeGetRobustness.yml | 12 +- ...raphicsLibraryFramework.WindowHintBool.yml | 390 +- ...csLibraryFramework.WindowHintClientApi.yml | 12 +- ...sLibraryFramework.WindowHintContextApi.yml | 12 +- ...GraphicsLibraryFramework.WindowHintInt.yml | 204 +- ...braryFramework.WindowHintOpenGlProfile.yml | 12 +- ...aryFramework.WindowHintReleaseBehavior.yml | 12 +- ...sLibraryFramework.WindowHintRobustness.yml | 12 +- ...phicsLibraryFramework.WindowHintString.yml | 49 +- ...nTK.Windowing.GraphicsLibraryFramework.yml | 72 + api/toc.yml | 462 +- opentk | 2 +- 648 files changed, 98979 insertions(+), 119744 deletions(-) delete mode 100644 api/OpenTK.Core.Platform.AppTheme.yml delete mode 100644 api/OpenTK.Core.Platform.BatteryStatus.yml delete mode 100644 api/OpenTK.Core.Platform.ClipboardFormat.yml delete mode 100644 api/OpenTK.Core.Platform.ComponentSet.yml delete mode 100644 api/OpenTK.Core.Platform.ContextDepthBits.yml delete mode 100644 api/OpenTK.Core.Platform.ContextPixelFormat.yml delete mode 100644 api/OpenTK.Core.Platform.ContextReleaseBehaviour.yml delete mode 100644 api/OpenTK.Core.Platform.ContextResetNotificationStrategy.yml delete mode 100644 api/OpenTK.Core.Platform.ContextSettings.yml delete mode 100644 api/OpenTK.Core.Platform.ContextStencilBits.yml delete mode 100644 api/OpenTK.Core.Platform.ContextSwapMethod.yml delete mode 100644 api/OpenTK.Core.Platform.ContextValues.yml delete mode 100644 api/OpenTK.Core.Platform.CursorCaptureMode.yml delete mode 100644 api/OpenTK.Core.Platform.GamepadBatteryType.yml delete mode 100644 api/OpenTK.Core.Platform.GraphicsApi.yml delete mode 100644 api/OpenTK.Core.Platform.HitType.yml delete mode 100644 api/OpenTK.Core.Platform.IClipboardComponent.yml delete mode 100644 api/OpenTK.Core.Platform.ICursorComponent.yml delete mode 100644 api/OpenTK.Core.Platform.IDialogComponent.yml delete mode 100644 api/OpenTK.Core.Platform.IDisplayComponent.yml delete mode 100644 api/OpenTK.Core.Platform.IIconComponent.yml delete mode 100644 api/OpenTK.Core.Platform.IJoystickComponent.yml delete mode 100644 api/OpenTK.Core.Platform.IKeyboardComponent.yml delete mode 100644 api/OpenTK.Core.Platform.IMouseComponent.yml delete mode 100644 api/OpenTK.Core.Platform.IOpenGLComponent.yml delete mode 100644 api/OpenTK.Core.Platform.IPalComponent.yml delete mode 100644 api/OpenTK.Core.Platform.IShellComponent.yml delete mode 100644 api/OpenTK.Core.Platform.ISurfaceComponent.yml delete mode 100644 api/OpenTK.Core.Platform.IWindowComponent.yml delete mode 100644 api/OpenTK.Core.Platform.JoystickAxis.yml delete mode 100644 api/OpenTK.Core.Platform.JoystickButton.yml delete mode 100644 api/OpenTK.Core.Platform.Key.yml delete mode 100644 api/OpenTK.Core.Platform.KeyModifier.yml delete mode 100644 api/OpenTK.Core.Platform.MouseButton.yml delete mode 100644 api/OpenTK.Core.Platform.MouseButtonFlags.yml delete mode 100644 api/OpenTK.Core.Platform.OpenDialogOptions.yml delete mode 100644 api/OpenTK.Core.Platform.OpenGLGraphicsApiHints.yml delete mode 100644 api/OpenTK.Core.Platform.OpenGLProfile.yml delete mode 100644 api/OpenTK.Core.Platform.PalComponents.yml delete mode 100644 api/OpenTK.Core.Platform.PlatformEventType.yml delete mode 100644 api/OpenTK.Core.Platform.SaveDialogOptions.yml delete mode 100644 api/OpenTK.Core.Platform.Scancode.yml delete mode 100644 api/OpenTK.Core.Platform.SurfaceType.yml delete mode 100644 api/OpenTK.Core.Platform.SystemCursorType.yml delete mode 100644 api/OpenTK.Core.Platform.SystemIconType.yml delete mode 100644 api/OpenTK.Core.Platform.WindowBorderStyle.yml delete mode 100644 api/OpenTK.Core.Platform.WindowDpiChangeEventArgs.yml delete mode 100644 api/OpenTK.Core.Platform.WindowEventHandler.yml delete mode 100644 api/OpenTK.Core.Platform.WindowMode.yml delete mode 100644 api/OpenTK.Core.Platform.yml delete mode 100644 api/OpenTK.Graphics.Glx.XVisualInfo.yml create mode 100644 api/OpenTK.Graphics.VKLoader.yml create mode 100644 api/OpenTK.Graphics.Wgl.ColorBufferMask.yml create mode 100644 api/OpenTK.Graphics.Wgl.ContextFlagsMask.yml create mode 100644 api/OpenTK.Graphics.Wgl.ContextProfileMask.yml rename api/{OpenTK.Graphics.Wgl.WGLDXInteropMaskNV.yml => OpenTK.Graphics.Wgl.DXInteropMaskNV.yml} (53%) rename api/{OpenTK.Graphics.Wgl.WGLImageBufferMaskI3D.yml => OpenTK.Graphics.Wgl.ImageBufferMaskI3D.yml} (51%) create mode 100644 api/OpenTK.Graphics.Wgl.LayerPlaneMask.yml delete mode 100644 api/OpenTK.Graphics.Wgl.WGLColorBufferMask.yml delete mode 100644 api/OpenTK.Graphics.Wgl.WGLContextFlagsMask.yml delete mode 100644 api/OpenTK.Graphics.Wgl.WGLContextProfileMask.yml delete mode 100644 api/OpenTK.Graphics.Wgl.WGLLayerPlaneMask.yml create mode 100644 api/OpenTK.Platform.AppTheme.yml rename api/{OpenTK.Core.Platform.AudioData.yml => OpenTK.Platform.AudioData.yml} (77%) rename api/{OpenTK.Core.Platform.BatteryInfo.yml => OpenTK.Platform.BatteryInfo.yml} (74%) create mode 100644 api/OpenTK.Platform.BatteryStatus.yml rename api/{OpenTK.Core.Platform.Bitmap.yml => OpenTK.Platform.Bitmap.yml} (73%) create mode 100644 api/OpenTK.Platform.ClipboardFormat.yml rename api/{OpenTK.Core.Platform.ClipboardUpdateEventArgs.yml => OpenTK.Platform.ClipboardUpdateEventArgs.yml} (72%) rename api/{OpenTK.Core.Platform.CloseEventArgs.yml => OpenTK.Platform.CloseEventArgs.yml} (75%) create mode 100644 api/OpenTK.Platform.ContextDepthBits.yml create mode 100644 api/OpenTK.Platform.ContextPixelFormat.yml create mode 100644 api/OpenTK.Platform.ContextReleaseBehaviour.yml create mode 100644 api/OpenTK.Platform.ContextResetNotificationStrategy.yml create mode 100644 api/OpenTK.Platform.ContextStencilBits.yml create mode 100644 api/OpenTK.Platform.ContextSwapMethod.yml rename api/{OpenTK.Core.Platform.ContextValueSelector.yml => OpenTK.Platform.ContextValueSelector.yml} (76%) create mode 100644 api/OpenTK.Platform.ContextValues.yml create mode 100644 api/OpenTK.Platform.CursorCaptureMode.yml rename api/{OpenTK.Core.Platform.CursorHandle.yml => OpenTK.Platform.CursorHandle.yml} (77%) rename api/{OpenTK.Core.Platform.DialogFileFilter.yml => OpenTK.Platform.DialogFileFilter.yml} (57%) rename api/{OpenTK.Core.Platform.DisplayConnectionChangedEventArgs.yml => OpenTK.Platform.DisplayConnectionChangedEventArgs.yml} (68%) rename api/{OpenTK.Core.Platform.DisplayHandle.yml => OpenTK.Platform.DisplayHandle.yml} (77%) rename api/{OpenTK.Core.Platform.DisplayResolution.yml => OpenTK.Platform.DisplayResolution.yml} (71%) rename api/{OpenTK.Core.Platform.EventQueue.yml => OpenTK.Platform.EventQueue.yml} (58%) rename api/{OpenTK.Core.Platform.FileDropEventArgs.yml => OpenTK.Platform.FileDropEventArgs.yml} (73%) rename api/{OpenTK.Core.Platform.FocusEventArgs.yml => OpenTK.Platform.FocusEventArgs.yml} (72%) rename api/{OpenTK.Core.Platform.GamepadBatteryInfo.yml => OpenTK.Platform.GamepadBatteryInfo.yml} (71%) create mode 100644 api/OpenTK.Platform.GamepadBatteryType.yml create mode 100644 api/OpenTK.Platform.GraphicsApi.yml rename api/{OpenTK.Core.Platform.GraphicsApiHints.yml => OpenTK.Platform.GraphicsApiHints.yml} (82%) rename api/{OpenTK.Core.Platform.HitTest.yml => OpenTK.Platform.HitTest.yml} (61%) create mode 100644 api/OpenTK.Platform.HitType.yml create mode 100644 api/OpenTK.Platform.IClipboardComponent.yml create mode 100644 api/OpenTK.Platform.ICursorComponent.yml create mode 100644 api/OpenTK.Platform.IDialogComponent.yml create mode 100644 api/OpenTK.Platform.IDisplayComponent.yml create mode 100644 api/OpenTK.Platform.IIconComponent.yml create mode 100644 api/OpenTK.Platform.IJoystickComponent.yml create mode 100644 api/OpenTK.Platform.IKeyboardComponent.yml create mode 100644 api/OpenTK.Platform.IMouseComponent.yml create mode 100644 api/OpenTK.Platform.IOpenGLComponent.yml create mode 100644 api/OpenTK.Platform.IPalComponent.yml create mode 100644 api/OpenTK.Platform.IShellComponent.yml create mode 100644 api/OpenTK.Platform.ISurfaceComponent.yml create mode 100644 api/OpenTK.Platform.IVulkanComponent.yml create mode 100644 api/OpenTK.Platform.IWindowComponent.yml rename api/{OpenTK.Core.Platform.IconHandle.yml => OpenTK.Platform.IconHandle.yml} (77%) rename api/{OpenTK.Core.Platform.InputLanguageChangedEventArgs.yml => OpenTK.Platform.InputLanguageChangedEventArgs.yml} (60%) create mode 100644 api/OpenTK.Platform.JoystickAxis.yml create mode 100644 api/OpenTK.Platform.JoystickButton.yml rename api/{OpenTK.Core.Platform.JoystickHandle.yml => OpenTK.Platform.JoystickHandle.yml} (77%) create mode 100644 api/OpenTK.Platform.Key.yml rename api/{OpenTK.Core.Platform.KeyDownEventArgs.yml => OpenTK.Platform.KeyDownEventArgs.yml} (60%) create mode 100644 api/OpenTK.Platform.KeyModifier.yml rename api/{OpenTK.Core.Platform.KeyUpEventArgs.yml => OpenTK.Platform.KeyUpEventArgs.yml} (62%) create mode 100644 api/OpenTK.Platform.MessageBoxButton.yml create mode 100644 api/OpenTK.Platform.MessageBoxType.yml create mode 100644 api/OpenTK.Platform.MouseButton.yml rename api/{OpenTK.Core.Platform.MouseButtonDownEventArgs.yml => OpenTK.Platform.MouseButtonDownEventArgs.yml} (64%) create mode 100644 api/OpenTK.Platform.MouseButtonFlags.yml rename api/{OpenTK.Core.Platform.MouseButtonUpEventArgs.yml => OpenTK.Platform.MouseButtonUpEventArgs.yml} (64%) rename api/{OpenTK.Core.Platform.MouseEnterEventArgs.yml => OpenTK.Platform.MouseEnterEventArgs.yml} (72%) rename api/{OpenTK.Core.Platform.MouseHandle.yml => OpenTK.Platform.MouseHandle.yml} (77%) rename api/{OpenTK.Core.Platform.MouseMoveEventArgs.yml => OpenTK.Platform.MouseMoveEventArgs.yml} (72%) rename api/{OpenTK.Core.Platform.MouseState.yml => OpenTK.Platform.MouseState.yml} (78%) delete mode 100644 api/OpenTK.Platform.Native.Toolkit.yml delete mode 100644 api/OpenTK.Platform.Native.ToolkitOptions.yml create mode 100644 api/OpenTK.Platform.Native.X11.X11DialogComponent.yml create mode 100644 api/OpenTK.Platform.OpenDialogOptions.yml rename api/{OpenTK.Core.Platform.OpenGLContextHandle.yml => OpenTK.Platform.OpenGLContextHandle.yml} (77%) create mode 100644 api/OpenTK.Platform.OpenGLGraphicsApiHints.yml create mode 100644 api/OpenTK.Platform.OpenGLProfile.yml rename api/{OpenTK.Core.Platform.Pal2BindingsContext.yml => OpenTK.Platform.Pal2BindingsContext.yml} (68%) create mode 100644 api/OpenTK.Platform.PalComponents.yml rename api/{OpenTK.Core.Platform.PalException.yml => OpenTK.Platform.PalException.yml} (68%) rename api/{OpenTK.Core.Platform.PalHandle.yml => OpenTK.Platform.PalHandle.yml} (72%) rename api/{OpenTK.Core.Platform.PalNotImplementedException.yml => OpenTK.Platform.PalNotImplementedException.yml} (70%) rename api/{OpenTK.Core.Platform.PlatformEventHandler.yml => OpenTK.Platform.PlatformEventHandler.yml} (52%) create mode 100644 api/OpenTK.Platform.PlatformEventType.yml rename api/{OpenTK.Core.Platform.PlatformException.yml => OpenTK.Platform.PlatformException.yml} (75%) rename api/{OpenTK.Core.Platform.PowerStateChangeEventArgs.yml => OpenTK.Platform.PowerStateChangeEventArgs.yml} (75%) create mode 100644 api/OpenTK.Platform.RawMouseMoveEventArgs.yml create mode 100644 api/OpenTK.Platform.SaveDialogOptions.yml create mode 100644 api/OpenTK.Platform.Scancode.yml rename api/{OpenTK.Core.Platform.ScrollEventArgs.yml => OpenTK.Platform.ScrollEventArgs.yml} (69%) rename api/{OpenTK.Core.Platform.SurfaceHandle.yml => OpenTK.Platform.SurfaceHandle.yml} (77%) create mode 100644 api/OpenTK.Platform.SurfaceType.yml create mode 100644 api/OpenTK.Platform.SystemCursorType.yml create mode 100644 api/OpenTK.Platform.SystemIconType.yml rename api/{OpenTK.Core.Platform.SystemMemoryInfo.yml => OpenTK.Platform.SystemMemoryInfo.yml} (80%) rename api/{OpenTK.Core.Platform.TextEditingEventArgs.yml => OpenTK.Platform.TextEditingEventArgs.yml} (66%) rename api/{OpenTK.Core.Platform.TextInputEventArgs.yml => OpenTK.Platform.TextInputEventArgs.yml} (70%) rename api/{OpenTK.Core.Platform.ThemeChangeEventArgs.yml => OpenTK.Platform.ThemeChangeEventArgs.yml} (72%) rename api/{OpenTK.Core.Platform.ThemeInfo.yml => OpenTK.Platform.ThemeInfo.yml} (59%) create mode 100644 api/OpenTK.Platform.Toolkit.yml rename api/{OpenTK.Graphics.Glx.Screen.yml => OpenTK.Platform.ToolkitOptions.MacOSOptions.yml} (65%) create mode 100644 api/OpenTK.Platform.ToolkitOptions.WindowsOptions.yml rename api/{OpenTK.Graphics.Glx.Display.yml => OpenTK.Platform.ToolkitOptions.X11Options.yml} (65%) rename api/{OpenTK.Core.Platform.ToolkitOptions.yml => OpenTK.Platform.ToolkitOptions.yml} (55%) rename api/{OpenTK.Core.Platform.VideoMode.yml => OpenTK.Platform.VideoMode.yml} (70%) create mode 100644 api/OpenTK.Platform.WindowBorderStyle.yml rename api/{OpenTK.Core.Platform.WindowEventArgs.yml => OpenTK.Platform.WindowEventArgs.yml} (70%) create mode 100644 api/OpenTK.Platform.WindowEventHandler.yml rename api/{OpenTK.Core.Platform.WindowFramebufferResizeEventArgs.yml => OpenTK.Platform.WindowFramebufferResizeEventArgs.yml} (71%) rename api/{OpenTK.Core.Platform.WindowHandle.yml => OpenTK.Platform.WindowHandle.yml} (64%) create mode 100644 api/OpenTK.Platform.WindowMode.yml rename api/{OpenTK.Core.Platform.WindowModeChangeEventArgs.yml => OpenTK.Platform.WindowModeChangeEventArgs.yml} (68%) rename api/{OpenTK.Core.Platform.WindowMoveEventArgs.yml => OpenTK.Platform.WindowMoveEventArgs.yml} (68%) rename api/{OpenTK.Core.Platform.WindowResizeEventArgs.yml => OpenTK.Platform.WindowResizeEventArgs.yml} (68%) rename api/{OpenTK.Core.Platform.WindowScaleChangeEventArgs.yml => OpenTK.Platform.WindowScaleChangeEventArgs.yml} (68%) create mode 100644 api/OpenTK.Platform.yml create mode 100644 api/OpenTK.Windowing.GraphicsLibraryFramework.ANGLEPlatformType.yml create mode 100644 api/OpenTK.Windowing.GraphicsLibraryFramework.GLFWallocatefun.yml create mode 100644 api/OpenTK.Windowing.GraphicsLibraryFramework.GLFWallocator.yml create mode 100644 api/OpenTK.Windowing.GraphicsLibraryFramework.GLFWdeallocatefun.yml create mode 100644 api/OpenTK.Windowing.GraphicsLibraryFramework.GLFWreallocatefun.yml create mode 100644 api/OpenTK.Windowing.GraphicsLibraryFramework.InitHintANGLEPlatformType.yml create mode 100644 api/OpenTK.Windowing.GraphicsLibraryFramework.InitHintPlatform.yml create mode 100644 api/OpenTK.Windowing.GraphicsLibraryFramework.Platform.yml create mode 100644 api/OpenTK.Windowing.GraphicsLibraryFramework.WaylandLibDecor.yml diff --git a/api/.manifest b/api/.manifest index bbd5be10..73e01d0e 100644 --- a/api/.manifest +++ b/api/.manifest @@ -255,6 +255,7 @@ "OpenTK.Audio.OpenAL.ALC.EFX.GetEffect(System.Int32,OpenTK.Audio.OpenAL.EffectFloat)": "OpenTK.Audio.OpenAL.ALC.EFX.yml", "OpenTK.Audio.OpenAL.ALC.EFX.GetEffect(System.Int32,OpenTK.Audio.OpenAL.EffectFloat,System.Single*)": "OpenTK.Audio.OpenAL.ALC.EFX.yml", "OpenTK.Audio.OpenAL.ALC.EFX.GetEffect(System.Int32,OpenTK.Audio.OpenAL.EffectFloat,System.Single@)": "OpenTK.Audio.OpenAL.ALC.EFX.yml", + "OpenTK.Audio.OpenAL.ALC.EFX.GetEffect(System.Int32,OpenTK.Audio.OpenAL.EffectInteger)": "OpenTK.Audio.OpenAL.ALC.EFX.yml", "OpenTK.Audio.OpenAL.ALC.EFX.GetEffect(System.Int32,OpenTK.Audio.OpenAL.EffectInteger,System.Int32*)": "OpenTK.Audio.OpenAL.ALC.EFX.yml", "OpenTK.Audio.OpenAL.ALC.EFX.GetEffect(System.Int32,OpenTK.Audio.OpenAL.EffectInteger,System.Int32@)": "OpenTK.Audio.OpenAL.ALC.EFX.yml", "OpenTK.Audio.OpenAL.ALC.EFX.GetEffect(System.Int32,OpenTK.Audio.OpenAL.EffectVector3)": "OpenTK.Audio.OpenAL.ALC.EFX.yml", @@ -1688,914 +1689,16 @@ "OpenTK.Core.Native.CountAttribute.Count": "OpenTK.Core.Native.CountAttribute.yml", "OpenTK.Core.Native.CountAttribute.Parameter": "OpenTK.Core.Native.CountAttribute.yml", "OpenTK.Core.Native.MarshalTk": "OpenTK.Core.Native.MarshalTk.yml", + "OpenTK.Core.Native.MarshalTk.FreeAnsiStringArrayPtr(System.Byte**,System.UInt32)": "OpenTK.Core.Native.MarshalTk.yml", "OpenTK.Core.Native.MarshalTk.FreeStringArrayPtr(System.IntPtr,System.Int32)": "OpenTK.Core.Native.MarshalTk.yml", "OpenTK.Core.Native.MarshalTk.FreeStringPtr(System.IntPtr)": "OpenTK.Core.Native.MarshalTk.yml", + "OpenTK.Core.Native.MarshalTk.MarshalAnsiStringArrayPtrToStringArray(System.Byte**,System.UInt32)": "OpenTK.Core.Native.MarshalTk.yml", "OpenTK.Core.Native.MarshalTk.MarshalPtrToString(System.IntPtr)": "OpenTK.Core.Native.MarshalTk.yml", + "OpenTK.Core.Native.MarshalTk.MarshalStringArrayToAnsiStringArrayPtr(System.Span{System.String},System.UInt32@)": "OpenTK.Core.Native.MarshalTk.yml", "OpenTK.Core.Native.MarshalTk.MarshalStringArrayToPtr(System.String[])": "OpenTK.Core.Native.MarshalTk.yml", "OpenTK.Core.Native.MarshalTk.MarshalStringToPtr(System.String)": "OpenTK.Core.Native.MarshalTk.yml", "OpenTK.Core.Native.SlotAttribute": "OpenTK.Core.Native.SlotAttribute.yml", "OpenTK.Core.Native.SlotAttribute.#ctor(System.Int32)": "OpenTK.Core.Native.SlotAttribute.yml", - "OpenTK.Core.Platform": "OpenTK.Core.Platform.yml", - "OpenTK.Core.Platform.AppTheme": "OpenTK.Core.Platform.AppTheme.yml", - "OpenTK.Core.Platform.AppTheme.Dark": "OpenTK.Core.Platform.AppTheme.yml", - "OpenTK.Core.Platform.AppTheme.Light": "OpenTK.Core.Platform.AppTheme.yml", - "OpenTK.Core.Platform.AppTheme.NoPreference": "OpenTK.Core.Platform.AppTheme.yml", - "OpenTK.Core.Platform.AudioData": "OpenTK.Core.Platform.AudioData.yml", - "OpenTK.Core.Platform.AudioData.Audio": "OpenTK.Core.Platform.AudioData.yml", - "OpenTK.Core.Platform.AudioData.SampleRate": "OpenTK.Core.Platform.AudioData.yml", - "OpenTK.Core.Platform.AudioData.Stereo": "OpenTK.Core.Platform.AudioData.yml", - "OpenTK.Core.Platform.BatteryInfo": "OpenTK.Core.Platform.BatteryInfo.yml", - "OpenTK.Core.Platform.BatteryInfo.BatteryPercent": "OpenTK.Core.Platform.BatteryInfo.yml", - "OpenTK.Core.Platform.BatteryInfo.BatteryTime": "OpenTK.Core.Platform.BatteryInfo.yml", - "OpenTK.Core.Platform.BatteryInfo.Charging": "OpenTK.Core.Platform.BatteryInfo.yml", - "OpenTK.Core.Platform.BatteryInfo.OnAC": "OpenTK.Core.Platform.BatteryInfo.yml", - "OpenTK.Core.Platform.BatteryInfo.PowerSaver": "OpenTK.Core.Platform.BatteryInfo.yml", - "OpenTK.Core.Platform.BatteryInfo.ToString": "OpenTK.Core.Platform.BatteryInfo.yml", - "OpenTK.Core.Platform.BatteryStatus": "OpenTK.Core.Platform.BatteryStatus.yml", - "OpenTK.Core.Platform.BatteryStatus.HasSystemBattery": "OpenTK.Core.Platform.BatteryStatus.yml", - "OpenTK.Core.Platform.BatteryStatus.NoSystemBattery": "OpenTK.Core.Platform.BatteryStatus.yml", - "OpenTK.Core.Platform.BatteryStatus.Unknown": "OpenTK.Core.Platform.BatteryStatus.yml", - "OpenTK.Core.Platform.Bitmap": "OpenTK.Core.Platform.Bitmap.yml", - "OpenTK.Core.Platform.Bitmap.#ctor(System.Int32,System.Int32,System.Byte[])": "OpenTK.Core.Platform.Bitmap.yml", - "OpenTK.Core.Platform.Bitmap.Data": "OpenTK.Core.Platform.Bitmap.yml", - "OpenTK.Core.Platform.Bitmap.Height": "OpenTK.Core.Platform.Bitmap.yml", - "OpenTK.Core.Platform.Bitmap.Width": "OpenTK.Core.Platform.Bitmap.yml", - "OpenTK.Core.Platform.ClipboardFormat": "OpenTK.Core.Platform.ClipboardFormat.yml", - "OpenTK.Core.Platform.ClipboardFormat.Audio": "OpenTK.Core.Platform.ClipboardFormat.yml", - "OpenTK.Core.Platform.ClipboardFormat.Bitmap": "OpenTK.Core.Platform.ClipboardFormat.yml", - "OpenTK.Core.Platform.ClipboardFormat.Files": "OpenTK.Core.Platform.ClipboardFormat.yml", - "OpenTK.Core.Platform.ClipboardFormat.None": "OpenTK.Core.Platform.ClipboardFormat.yml", - "OpenTK.Core.Platform.ClipboardFormat.Text": "OpenTK.Core.Platform.ClipboardFormat.yml", - "OpenTK.Core.Platform.ClipboardUpdateEventArgs": "OpenTK.Core.Platform.ClipboardUpdateEventArgs.yml", - "OpenTK.Core.Platform.ClipboardUpdateEventArgs.#ctor(OpenTK.Core.Platform.ClipboardFormat)": "OpenTK.Core.Platform.ClipboardUpdateEventArgs.yml", - "OpenTK.Core.Platform.ClipboardUpdateEventArgs.NewFormat": "OpenTK.Core.Platform.ClipboardUpdateEventArgs.yml", - "OpenTK.Core.Platform.CloseEventArgs": "OpenTK.Core.Platform.CloseEventArgs.yml", - "OpenTK.Core.Platform.CloseEventArgs.#ctor(OpenTK.Core.Platform.WindowHandle)": "OpenTK.Core.Platform.CloseEventArgs.yml", - "OpenTK.Core.Platform.ContextDepthBits": "OpenTK.Core.Platform.ContextDepthBits.yml", - "OpenTK.Core.Platform.ContextDepthBits.Depth16": "OpenTK.Core.Platform.ContextDepthBits.yml", - "OpenTK.Core.Platform.ContextDepthBits.Depth24": "OpenTK.Core.Platform.ContextDepthBits.yml", - "OpenTK.Core.Platform.ContextDepthBits.Depth32": "OpenTK.Core.Platform.ContextDepthBits.yml", - "OpenTK.Core.Platform.ContextDepthBits.None": "OpenTK.Core.Platform.ContextDepthBits.yml", - "OpenTK.Core.Platform.ContextPixelFormat": "OpenTK.Core.Platform.ContextPixelFormat.yml", - "OpenTK.Core.Platform.ContextPixelFormat.RGBA": "OpenTK.Core.Platform.ContextPixelFormat.yml", - "OpenTK.Core.Platform.ContextPixelFormat.RGBAFloat": "OpenTK.Core.Platform.ContextPixelFormat.yml", - "OpenTK.Core.Platform.ContextPixelFormat.RGBAPackedFloat": "OpenTK.Core.Platform.ContextPixelFormat.yml", - "OpenTK.Core.Platform.ContextReleaseBehaviour": "OpenTK.Core.Platform.ContextReleaseBehaviour.yml", - "OpenTK.Core.Platform.ContextReleaseBehaviour.Flush": "OpenTK.Core.Platform.ContextReleaseBehaviour.yml", - "OpenTK.Core.Platform.ContextReleaseBehaviour.None": "OpenTK.Core.Platform.ContextReleaseBehaviour.yml", - "OpenTK.Core.Platform.ContextResetNotificationStrategy": "OpenTK.Core.Platform.ContextResetNotificationStrategy.yml", - "OpenTK.Core.Platform.ContextResetNotificationStrategy.LoseContextOnReset": "OpenTK.Core.Platform.ContextResetNotificationStrategy.yml", - "OpenTK.Core.Platform.ContextResetNotificationStrategy.NoResetNotification": "OpenTK.Core.Platform.ContextResetNotificationStrategy.yml", - "OpenTK.Core.Platform.ContextStencilBits": "OpenTK.Core.Platform.ContextStencilBits.yml", - "OpenTK.Core.Platform.ContextStencilBits.None": "OpenTK.Core.Platform.ContextStencilBits.yml", - "OpenTK.Core.Platform.ContextStencilBits.Stencil1": "OpenTK.Core.Platform.ContextStencilBits.yml", - "OpenTK.Core.Platform.ContextStencilBits.Stencil8": "OpenTK.Core.Platform.ContextStencilBits.yml", - "OpenTK.Core.Platform.ContextSwapMethod": "OpenTK.Core.Platform.ContextSwapMethod.yml", - "OpenTK.Core.Platform.ContextSwapMethod.Copy": "OpenTK.Core.Platform.ContextSwapMethod.yml", - "OpenTK.Core.Platform.ContextSwapMethod.Exchange": "OpenTK.Core.Platform.ContextSwapMethod.yml", - "OpenTK.Core.Platform.ContextSwapMethod.Undefined": "OpenTK.Core.Platform.ContextSwapMethod.yml", - "OpenTK.Core.Platform.ContextValueSelector": "OpenTK.Core.Platform.ContextValueSelector.yml", - "OpenTK.Core.Platform.ContextValues": "OpenTK.Core.Platform.ContextValues.yml", - "OpenTK.Core.Platform.ContextValues.#ctor(System.UInt64,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Boolean,System.Boolean,OpenTK.Core.Platform.ContextPixelFormat,OpenTK.Core.Platform.ContextSwapMethod,System.Int32)": "OpenTK.Core.Platform.ContextValues.yml", - "OpenTK.Core.Platform.ContextValues.AlphaBits": "OpenTK.Core.Platform.ContextValues.yml", - "OpenTK.Core.Platform.ContextValues.BlueBits": "OpenTK.Core.Platform.ContextValues.yml", - "OpenTK.Core.Platform.ContextValues.DefaultValuesSelector(System.Collections.Generic.IReadOnlyList{OpenTK.Core.Platform.ContextValues},OpenTK.Core.Platform.ContextValues,OpenTK.Core.Utility.ILogger)": "OpenTK.Core.Platform.ContextValues.yml", - "OpenTK.Core.Platform.ContextValues.DepthBits": "OpenTK.Core.Platform.ContextValues.yml", - "OpenTK.Core.Platform.ContextValues.DoubleBuffered": "OpenTK.Core.Platform.ContextValues.yml", - "OpenTK.Core.Platform.ContextValues.Equals(OpenTK.Core.Platform.ContextValues)": "OpenTK.Core.Platform.ContextValues.yml", - "OpenTK.Core.Platform.ContextValues.Equals(System.Object)": "OpenTK.Core.Platform.ContextValues.yml", - "OpenTK.Core.Platform.ContextValues.GetHashCode": "OpenTK.Core.Platform.ContextValues.yml", - "OpenTK.Core.Platform.ContextValues.GreenBits": "OpenTK.Core.Platform.ContextValues.yml", - "OpenTK.Core.Platform.ContextValues.HasEqualColorBits(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues)": "OpenTK.Core.Platform.ContextValues.yml", - "OpenTK.Core.Platform.ContextValues.HasEqualDepthBits(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues)": "OpenTK.Core.Platform.ContextValues.yml", - "OpenTK.Core.Platform.ContextValues.HasEqualDoubleBuffer(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues)": "OpenTK.Core.Platform.ContextValues.yml", - "OpenTK.Core.Platform.ContextValues.HasEqualMSAA(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues)": "OpenTK.Core.Platform.ContextValues.yml", - "OpenTK.Core.Platform.ContextValues.HasEqualPixelFormat(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues)": "OpenTK.Core.Platform.ContextValues.yml", - "OpenTK.Core.Platform.ContextValues.HasEqualSRGB(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues)": "OpenTK.Core.Platform.ContextValues.yml", - "OpenTK.Core.Platform.ContextValues.HasEqualStencilBits(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues)": "OpenTK.Core.Platform.ContextValues.yml", - "OpenTK.Core.Platform.ContextValues.HasEqualSwapMethod(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues)": "OpenTK.Core.Platform.ContextValues.yml", - "OpenTK.Core.Platform.ContextValues.HasGreaterOrEqualColorBits(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues)": "OpenTK.Core.Platform.ContextValues.yml", - "OpenTK.Core.Platform.ContextValues.HasGreaterOrEqualDepthBits(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues)": "OpenTK.Core.Platform.ContextValues.yml", - "OpenTK.Core.Platform.ContextValues.HasGreaterOrEqualStencilBits(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues)": "OpenTK.Core.Platform.ContextValues.yml", - "OpenTK.Core.Platform.ContextValues.HasLessOrEqualColorBits(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues)": "OpenTK.Core.Platform.ContextValues.yml", - "OpenTK.Core.Platform.ContextValues.HasLessOrEqualDepthBits(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues)": "OpenTK.Core.Platform.ContextValues.yml", - "OpenTK.Core.Platform.ContextValues.HasLessOrEqualStencilBits(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues)": "OpenTK.Core.Platform.ContextValues.yml", - "OpenTK.Core.Platform.ContextValues.ID": "OpenTK.Core.Platform.ContextValues.yml", - "OpenTK.Core.Platform.ContextValues.IsEqualExcludingID(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues)": "OpenTK.Core.Platform.ContextValues.yml", - "OpenTK.Core.Platform.ContextValues.PixelFormat": "OpenTK.Core.Platform.ContextValues.yml", - "OpenTK.Core.Platform.ContextValues.RedBits": "OpenTK.Core.Platform.ContextValues.yml", - "OpenTK.Core.Platform.ContextValues.SRGBFramebuffer": "OpenTK.Core.Platform.ContextValues.yml", - "OpenTK.Core.Platform.ContextValues.Samples": "OpenTK.Core.Platform.ContextValues.yml", - "OpenTK.Core.Platform.ContextValues.StencilBits": "OpenTK.Core.Platform.ContextValues.yml", - "OpenTK.Core.Platform.ContextValues.SwapMethod": "OpenTK.Core.Platform.ContextValues.yml", - "OpenTK.Core.Platform.ContextValues.ToString": "OpenTK.Core.Platform.ContextValues.yml", - "OpenTK.Core.Platform.ContextValues.op_Equality(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues)": "OpenTK.Core.Platform.ContextValues.yml", - "OpenTK.Core.Platform.ContextValues.op_Inequality(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues)": "OpenTK.Core.Platform.ContextValues.yml", - "OpenTK.Core.Platform.CursorCaptureMode": "OpenTK.Core.Platform.CursorCaptureMode.yml", - "OpenTK.Core.Platform.CursorCaptureMode.Confined": "OpenTK.Core.Platform.CursorCaptureMode.yml", - "OpenTK.Core.Platform.CursorCaptureMode.Locked": "OpenTK.Core.Platform.CursorCaptureMode.yml", - "OpenTK.Core.Platform.CursorCaptureMode.Normal": "OpenTK.Core.Platform.CursorCaptureMode.yml", - "OpenTK.Core.Platform.CursorHandle": "OpenTK.Core.Platform.CursorHandle.yml", - "OpenTK.Core.Platform.DialogFileFilter": "OpenTK.Core.Platform.DialogFileFilter.yml", - "OpenTK.Core.Platform.DialogFileFilter.#ctor(System.String,System.String)": "OpenTK.Core.Platform.DialogFileFilter.yml", - "OpenTK.Core.Platform.DialogFileFilter.Equals(OpenTK.Core.Platform.DialogFileFilter)": "OpenTK.Core.Platform.DialogFileFilter.yml", - "OpenTK.Core.Platform.DialogFileFilter.Equals(System.Object)": "OpenTK.Core.Platform.DialogFileFilter.yml", - "OpenTK.Core.Platform.DialogFileFilter.Filter": "OpenTK.Core.Platform.DialogFileFilter.yml", - "OpenTK.Core.Platform.DialogFileFilter.GetHashCode": "OpenTK.Core.Platform.DialogFileFilter.yml", - "OpenTK.Core.Platform.DialogFileFilter.Name": "OpenTK.Core.Platform.DialogFileFilter.yml", - "OpenTK.Core.Platform.DialogFileFilter.ToString": "OpenTK.Core.Platform.DialogFileFilter.yml", - "OpenTK.Core.Platform.DialogFileFilter.op_Equality(OpenTK.Core.Platform.DialogFileFilter,OpenTK.Core.Platform.DialogFileFilter)": "OpenTK.Core.Platform.DialogFileFilter.yml", - "OpenTK.Core.Platform.DialogFileFilter.op_Inequality(OpenTK.Core.Platform.DialogFileFilter,OpenTK.Core.Platform.DialogFileFilter)": "OpenTK.Core.Platform.DialogFileFilter.yml", - "OpenTK.Core.Platform.DisplayConnectionChangedEventArgs": "OpenTK.Core.Platform.DisplayConnectionChangedEventArgs.yml", - "OpenTK.Core.Platform.DisplayConnectionChangedEventArgs.#ctor(OpenTK.Core.Platform.DisplayHandle,System.Boolean)": "OpenTK.Core.Platform.DisplayConnectionChangedEventArgs.yml", - "OpenTK.Core.Platform.DisplayConnectionChangedEventArgs.Disconnected": "OpenTK.Core.Platform.DisplayConnectionChangedEventArgs.yml", - "OpenTK.Core.Platform.DisplayConnectionChangedEventArgs.Display": "OpenTK.Core.Platform.DisplayConnectionChangedEventArgs.yml", - "OpenTK.Core.Platform.DisplayHandle": "OpenTK.Core.Platform.DisplayHandle.yml", - "OpenTK.Core.Platform.DisplayResolution": "OpenTK.Core.Platform.DisplayResolution.yml", - "OpenTK.Core.Platform.DisplayResolution.#ctor(System.Int32,System.Int32)": "OpenTK.Core.Platform.DisplayResolution.yml", - "OpenTK.Core.Platform.DisplayResolution.ResolutionX": "OpenTK.Core.Platform.DisplayResolution.yml", - "OpenTK.Core.Platform.DisplayResolution.ResolutionY": "OpenTK.Core.Platform.DisplayResolution.yml", - "OpenTK.Core.Platform.DisplayResolution.ToString": "OpenTK.Core.Platform.DisplayResolution.yml", - "OpenTK.Core.Platform.EventQueue": "OpenTK.Core.Platform.EventQueue.yml", - "OpenTK.Core.Platform.EventQueue.DispatchEvents": "OpenTK.Core.Platform.EventQueue.yml", - "OpenTK.Core.Platform.EventQueue.DispatchOne": "OpenTK.Core.Platform.EventQueue.yml", - "OpenTK.Core.Platform.EventQueue.Dispose": "OpenTK.Core.Platform.EventQueue.yml", - "OpenTK.Core.Platform.EventQueue.EventDispatched": "OpenTK.Core.Platform.EventQueue.yml", - "OpenTK.Core.Platform.EventQueue.EventRaised": "OpenTK.Core.Platform.EventQueue.yml", - "OpenTK.Core.Platform.EventQueue.FilteredHandle": "OpenTK.Core.Platform.EventQueue.yml", - "OpenTK.Core.Platform.EventQueue.InQueue": "OpenTK.Core.Platform.EventQueue.yml", - "OpenTK.Core.Platform.EventQueue.Raise(OpenTK.Core.Platform.PalHandle,OpenTK.Core.Platform.PlatformEventType,System.EventArgs)": "OpenTK.Core.Platform.EventQueue.yml", - "OpenTK.Core.Platform.EventQueue.Subscribe(OpenTK.Core.Platform.PalHandle)": "OpenTK.Core.Platform.EventQueue.yml", - "OpenTK.Core.Platform.FileDropEventArgs": "OpenTK.Core.Platform.FileDropEventArgs.yml", - "OpenTK.Core.Platform.FileDropEventArgs.#ctor(OpenTK.Core.Platform.WindowHandle,System.Collections.Generic.IReadOnlyList{System.String},OpenTK.Mathematics.Vector2i)": "OpenTK.Core.Platform.FileDropEventArgs.yml", - "OpenTK.Core.Platform.FileDropEventArgs.FilePaths": "OpenTK.Core.Platform.FileDropEventArgs.yml", - "OpenTK.Core.Platform.FileDropEventArgs.Position": "OpenTK.Core.Platform.FileDropEventArgs.yml", - "OpenTK.Core.Platform.FocusEventArgs": "OpenTK.Core.Platform.FocusEventArgs.yml", - "OpenTK.Core.Platform.FocusEventArgs.#ctor(OpenTK.Core.Platform.WindowHandle,System.Boolean)": "OpenTK.Core.Platform.FocusEventArgs.yml", - "OpenTK.Core.Platform.FocusEventArgs.GotFocus": "OpenTK.Core.Platform.FocusEventArgs.yml", - "OpenTK.Core.Platform.GamepadBatteryInfo": "OpenTK.Core.Platform.GamepadBatteryInfo.yml", - "OpenTK.Core.Platform.GamepadBatteryInfo.#ctor(OpenTK.Core.Platform.GamepadBatteryType,System.Single)": "OpenTK.Core.Platform.GamepadBatteryInfo.yml", - "OpenTK.Core.Platform.GamepadBatteryInfo.BatteryType": "OpenTK.Core.Platform.GamepadBatteryInfo.yml", - "OpenTK.Core.Platform.GamepadBatteryInfo.ChargeLevel": "OpenTK.Core.Platform.GamepadBatteryInfo.yml", - "OpenTK.Core.Platform.GamepadBatteryType": "OpenTK.Core.Platform.GamepadBatteryType.yml", - "OpenTK.Core.Platform.GamepadBatteryType.Alkaline": "OpenTK.Core.Platform.GamepadBatteryType.yml", - "OpenTK.Core.Platform.GamepadBatteryType.NiMH": "OpenTK.Core.Platform.GamepadBatteryType.yml", - "OpenTK.Core.Platform.GamepadBatteryType.Unknown": "OpenTK.Core.Platform.GamepadBatteryType.yml", - "OpenTK.Core.Platform.GamepadBatteryType.Wired": "OpenTK.Core.Platform.GamepadBatteryType.yml", - "OpenTK.Core.Platform.GraphicsApi": "OpenTK.Core.Platform.GraphicsApi.yml", - "OpenTK.Core.Platform.GraphicsApi.None": "OpenTK.Core.Platform.GraphicsApi.yml", - "OpenTK.Core.Platform.GraphicsApi.OpenGL": "OpenTK.Core.Platform.GraphicsApi.yml", - "OpenTK.Core.Platform.GraphicsApi.OpenGLES": "OpenTK.Core.Platform.GraphicsApi.yml", - "OpenTK.Core.Platform.GraphicsApi.Vulkan": "OpenTK.Core.Platform.GraphicsApi.yml", - "OpenTK.Core.Platform.GraphicsApiHints": "OpenTK.Core.Platform.GraphicsApiHints.yml", - "OpenTK.Core.Platform.GraphicsApiHints.Api": "OpenTK.Core.Platform.GraphicsApiHints.yml", - "OpenTK.Core.Platform.HitTest": "OpenTK.Core.Platform.HitTest.yml", - "OpenTK.Core.Platform.HitType": "OpenTK.Core.Platform.HitType.yml", - "OpenTK.Core.Platform.HitType.Default": "OpenTK.Core.Platform.HitType.yml", - "OpenTK.Core.Platform.HitType.Draggable": "OpenTK.Core.Platform.HitType.yml", - "OpenTK.Core.Platform.HitType.Normal": "OpenTK.Core.Platform.HitType.yml", - "OpenTK.Core.Platform.HitType.ResizeBottom": "OpenTK.Core.Platform.HitType.yml", - "OpenTK.Core.Platform.HitType.ResizeBottomLeft": "OpenTK.Core.Platform.HitType.yml", - "OpenTK.Core.Platform.HitType.ResizeBottomRight": "OpenTK.Core.Platform.HitType.yml", - "OpenTK.Core.Platform.HitType.ResizeLeft": "OpenTK.Core.Platform.HitType.yml", - "OpenTK.Core.Platform.HitType.ResizeRight": "OpenTK.Core.Platform.HitType.yml", - "OpenTK.Core.Platform.HitType.ResizeTop": "OpenTK.Core.Platform.HitType.yml", - "OpenTK.Core.Platform.HitType.ResizeTopLeft": "OpenTK.Core.Platform.HitType.yml", - "OpenTK.Core.Platform.HitType.ResizeTopRight": "OpenTK.Core.Platform.HitType.yml", - "OpenTK.Core.Platform.IClipboardComponent": "OpenTK.Core.Platform.IClipboardComponent.yml", - "OpenTK.Core.Platform.IClipboardComponent.GetClipboardAudio": "OpenTK.Core.Platform.IClipboardComponent.yml", - "OpenTK.Core.Platform.IClipboardComponent.GetClipboardBitmap": "OpenTK.Core.Platform.IClipboardComponent.yml", - "OpenTK.Core.Platform.IClipboardComponent.GetClipboardFiles": "OpenTK.Core.Platform.IClipboardComponent.yml", - "OpenTK.Core.Platform.IClipboardComponent.GetClipboardFormat": "OpenTK.Core.Platform.IClipboardComponent.yml", - "OpenTK.Core.Platform.IClipboardComponent.GetClipboardText": "OpenTK.Core.Platform.IClipboardComponent.yml", - "OpenTK.Core.Platform.IClipboardComponent.SetClipboardText(System.String)": "OpenTK.Core.Platform.IClipboardComponent.yml", - "OpenTK.Core.Platform.IClipboardComponent.SupportedFormats": "OpenTK.Core.Platform.IClipboardComponent.yml", - "OpenTK.Core.Platform.ICursorComponent": "OpenTK.Core.Platform.ICursorComponent.yml", - "OpenTK.Core.Platform.ICursorComponent.CanInspectSystemCursors": "OpenTK.Core.Platform.ICursorComponent.yml", - "OpenTK.Core.Platform.ICursorComponent.CanLoadSystemCursors": "OpenTK.Core.Platform.ICursorComponent.yml", - "OpenTK.Core.Platform.ICursorComponent.Create(OpenTK.Core.Platform.SystemCursorType)": "OpenTK.Core.Platform.ICursorComponent.yml", - "OpenTK.Core.Platform.ICursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.Int32,System.Int32)": "OpenTK.Core.Platform.ICursorComponent.yml", - "OpenTK.Core.Platform.ICursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.ReadOnlySpan{System.Byte},System.Int32,System.Int32)": "OpenTK.Core.Platform.ICursorComponent.yml", - "OpenTK.Core.Platform.ICursorComponent.Destroy(OpenTK.Core.Platform.CursorHandle)": "OpenTK.Core.Platform.ICursorComponent.yml", - "OpenTK.Core.Platform.ICursorComponent.GetHotspot(OpenTK.Core.Platform.CursorHandle,System.Int32@,System.Int32@)": "OpenTK.Core.Platform.ICursorComponent.yml", - "OpenTK.Core.Platform.ICursorComponent.GetSize(OpenTK.Core.Platform.CursorHandle,System.Int32@,System.Int32@)": "OpenTK.Core.Platform.ICursorComponent.yml", - "OpenTK.Core.Platform.ICursorComponent.IsSystemCursor(OpenTK.Core.Platform.CursorHandle)": "OpenTK.Core.Platform.ICursorComponent.yml", - "OpenTK.Core.Platform.IDialogComponent": "OpenTK.Core.Platform.IDialogComponent.yml", - "OpenTK.Core.Platform.IDialogComponent.CanTargetFolders": "OpenTK.Core.Platform.IDialogComponent.yml", - "OpenTK.Core.Platform.IDialogComponent.ShowOpenDialog(OpenTK.Core.Platform.WindowHandle,System.String,System.String,OpenTK.Core.Platform.DialogFileFilter[],OpenTK.Core.Platform.OpenDialogOptions)": "OpenTK.Core.Platform.IDialogComponent.yml", - "OpenTK.Core.Platform.IDialogComponent.ShowSaveDialog(OpenTK.Core.Platform.WindowHandle,System.String,System.String,OpenTK.Core.Platform.DialogFileFilter[],OpenTK.Core.Platform.SaveDialogOptions)": "OpenTK.Core.Platform.IDialogComponent.yml", - "OpenTK.Core.Platform.IDisplayComponent": "OpenTK.Core.Platform.IDisplayComponent.yml", - "OpenTK.Core.Platform.IDisplayComponent.CanGetVirtualPosition": "OpenTK.Core.Platform.IDisplayComponent.yml", - "OpenTK.Core.Platform.IDisplayComponent.Close(OpenTK.Core.Platform.DisplayHandle)": "OpenTK.Core.Platform.IDisplayComponent.yml", - "OpenTK.Core.Platform.IDisplayComponent.GetDisplayCount": "OpenTK.Core.Platform.IDisplayComponent.yml", - "OpenTK.Core.Platform.IDisplayComponent.GetDisplayScale(OpenTK.Core.Platform.DisplayHandle,System.Single@,System.Single@)": "OpenTK.Core.Platform.IDisplayComponent.yml", - "OpenTK.Core.Platform.IDisplayComponent.GetName(OpenTK.Core.Platform.DisplayHandle)": "OpenTK.Core.Platform.IDisplayComponent.yml", - "OpenTK.Core.Platform.IDisplayComponent.GetRefreshRate(OpenTK.Core.Platform.DisplayHandle,System.Single@)": "OpenTK.Core.Platform.IDisplayComponent.yml", - "OpenTK.Core.Platform.IDisplayComponent.GetResolution(OpenTK.Core.Platform.DisplayHandle,System.Int32@,System.Int32@)": "OpenTK.Core.Platform.IDisplayComponent.yml", - "OpenTK.Core.Platform.IDisplayComponent.GetSupportedVideoModes(OpenTK.Core.Platform.DisplayHandle)": "OpenTK.Core.Platform.IDisplayComponent.yml", - "OpenTK.Core.Platform.IDisplayComponent.GetVideoMode(OpenTK.Core.Platform.DisplayHandle,OpenTK.Core.Platform.VideoMode@)": "OpenTK.Core.Platform.IDisplayComponent.yml", - "OpenTK.Core.Platform.IDisplayComponent.GetVirtualPosition(OpenTK.Core.Platform.DisplayHandle,System.Int32@,System.Int32@)": "OpenTK.Core.Platform.IDisplayComponent.yml", - "OpenTK.Core.Platform.IDisplayComponent.GetWorkArea(OpenTK.Core.Platform.DisplayHandle,OpenTK.Mathematics.Box2i@)": "OpenTK.Core.Platform.IDisplayComponent.yml", - "OpenTK.Core.Platform.IDisplayComponent.IsPrimary(OpenTK.Core.Platform.DisplayHandle)": "OpenTK.Core.Platform.IDisplayComponent.yml", - "OpenTK.Core.Platform.IDisplayComponent.Open(System.Int32)": "OpenTK.Core.Platform.IDisplayComponent.yml", - "OpenTK.Core.Platform.IDisplayComponent.OpenPrimary": "OpenTK.Core.Platform.IDisplayComponent.yml", - "OpenTK.Core.Platform.IIconComponent": "OpenTK.Core.Platform.IIconComponent.yml", - "OpenTK.Core.Platform.IIconComponent.CanLoadSystemIcons": "OpenTK.Core.Platform.IIconComponent.yml", - "OpenTK.Core.Platform.IIconComponent.Create(OpenTK.Core.Platform.SystemIconType)": "OpenTK.Core.Platform.IIconComponent.yml", - "OpenTK.Core.Platform.IIconComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte})": "OpenTK.Core.Platform.IIconComponent.yml", - "OpenTK.Core.Platform.IIconComponent.Destroy(OpenTK.Core.Platform.IconHandle)": "OpenTK.Core.Platform.IIconComponent.yml", - "OpenTK.Core.Platform.IIconComponent.GetSize(OpenTK.Core.Platform.IconHandle,System.Int32@,System.Int32@)": "OpenTK.Core.Platform.IIconComponent.yml", - "OpenTK.Core.Platform.IJoystickComponent": "OpenTK.Core.Platform.IJoystickComponent.yml", - "OpenTK.Core.Platform.IJoystickComponent.Close(OpenTK.Core.Platform.JoystickHandle)": "OpenTK.Core.Platform.IJoystickComponent.yml", - "OpenTK.Core.Platform.IJoystickComponent.GetAxis(OpenTK.Core.Platform.JoystickHandle,OpenTK.Core.Platform.JoystickAxis)": "OpenTK.Core.Platform.IJoystickComponent.yml", - "OpenTK.Core.Platform.IJoystickComponent.GetButton(OpenTK.Core.Platform.JoystickHandle,OpenTK.Core.Platform.JoystickButton)": "OpenTK.Core.Platform.IJoystickComponent.yml", - "OpenTK.Core.Platform.IJoystickComponent.GetGuid(OpenTK.Core.Platform.JoystickHandle)": "OpenTK.Core.Platform.IJoystickComponent.yml", - "OpenTK.Core.Platform.IJoystickComponent.GetName(OpenTK.Core.Platform.JoystickHandle)": "OpenTK.Core.Platform.IJoystickComponent.yml", - "OpenTK.Core.Platform.IJoystickComponent.IsConnected(System.Int32)": "OpenTK.Core.Platform.IJoystickComponent.yml", - "OpenTK.Core.Platform.IJoystickComponent.LeftDeadzone": "OpenTK.Core.Platform.IJoystickComponent.yml", - "OpenTK.Core.Platform.IJoystickComponent.Open(System.Int32)": "OpenTK.Core.Platform.IJoystickComponent.yml", - "OpenTK.Core.Platform.IJoystickComponent.RightDeadzone": "OpenTK.Core.Platform.IJoystickComponent.yml", - "OpenTK.Core.Platform.IJoystickComponent.SetVibration(OpenTK.Core.Platform.JoystickHandle,System.Single,System.Single)": "OpenTK.Core.Platform.IJoystickComponent.yml", - "OpenTK.Core.Platform.IJoystickComponent.TriggerThreshold": "OpenTK.Core.Platform.IJoystickComponent.yml", - "OpenTK.Core.Platform.IJoystickComponent.TryGetBatteryInfo(OpenTK.Core.Platform.JoystickHandle,OpenTK.Core.Platform.GamepadBatteryInfo@)": "OpenTK.Core.Platform.IJoystickComponent.yml", - "OpenTK.Core.Platform.IKeyboardComponent": "OpenTK.Core.Platform.IKeyboardComponent.yml", - "OpenTK.Core.Platform.IKeyboardComponent.BeginIme(OpenTK.Core.Platform.WindowHandle)": "OpenTK.Core.Platform.IKeyboardComponent.yml", - "OpenTK.Core.Platform.IKeyboardComponent.EndIme(OpenTK.Core.Platform.WindowHandle)": "OpenTK.Core.Platform.IKeyboardComponent.yml", - "OpenTK.Core.Platform.IKeyboardComponent.GetActiveKeyboardLayout(OpenTK.Core.Platform.WindowHandle)": "OpenTK.Core.Platform.IKeyboardComponent.yml", - "OpenTK.Core.Platform.IKeyboardComponent.GetAvailableKeyboardLayouts": "OpenTK.Core.Platform.IKeyboardComponent.yml", - "OpenTK.Core.Platform.IKeyboardComponent.GetKeyFromScancode(OpenTK.Core.Platform.Scancode)": "OpenTK.Core.Platform.IKeyboardComponent.yml", - "OpenTK.Core.Platform.IKeyboardComponent.GetKeyboardModifiers": "OpenTK.Core.Platform.IKeyboardComponent.yml", - "OpenTK.Core.Platform.IKeyboardComponent.GetKeyboardState(System.Boolean[])": "OpenTK.Core.Platform.IKeyboardComponent.yml", - "OpenTK.Core.Platform.IKeyboardComponent.GetScancodeFromKey(OpenTK.Core.Platform.Key)": "OpenTK.Core.Platform.IKeyboardComponent.yml", - "OpenTK.Core.Platform.IKeyboardComponent.SetImeRectangle(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32)": "OpenTK.Core.Platform.IKeyboardComponent.yml", - "OpenTK.Core.Platform.IKeyboardComponent.SupportsIme": "OpenTK.Core.Platform.IKeyboardComponent.yml", - "OpenTK.Core.Platform.IKeyboardComponent.SupportsLayouts": "OpenTK.Core.Platform.IKeyboardComponent.yml", - "OpenTK.Core.Platform.IMouseComponent": "OpenTK.Core.Platform.IMouseComponent.yml", - "OpenTK.Core.Platform.IMouseComponent.CanSetMousePosition": "OpenTK.Core.Platform.IMouseComponent.yml", - "OpenTK.Core.Platform.IMouseComponent.GetMouseState(OpenTK.Core.Platform.MouseState@)": "OpenTK.Core.Platform.IMouseComponent.yml", - "OpenTK.Core.Platform.IMouseComponent.GetPosition(System.Int32@,System.Int32@)": "OpenTK.Core.Platform.IMouseComponent.yml", - "OpenTK.Core.Platform.IMouseComponent.SetPosition(System.Int32,System.Int32)": "OpenTK.Core.Platform.IMouseComponent.yml", - "OpenTK.Core.Platform.IOpenGLComponent": "OpenTK.Core.Platform.IOpenGLComponent.yml", - "OpenTK.Core.Platform.IOpenGLComponent.CanCreateFromSurface": "OpenTK.Core.Platform.IOpenGLComponent.yml", - "OpenTK.Core.Platform.IOpenGLComponent.CanCreateFromWindow": "OpenTK.Core.Platform.IOpenGLComponent.yml", - "OpenTK.Core.Platform.IOpenGLComponent.CanShareContexts": "OpenTK.Core.Platform.IOpenGLComponent.yml", - "OpenTK.Core.Platform.IOpenGLComponent.CreateFromSurface": "OpenTK.Core.Platform.IOpenGLComponent.yml", - "OpenTK.Core.Platform.IOpenGLComponent.CreateFromWindow(OpenTK.Core.Platform.WindowHandle)": "OpenTK.Core.Platform.IOpenGLComponent.yml", - "OpenTK.Core.Platform.IOpenGLComponent.DestroyContext(OpenTK.Core.Platform.OpenGLContextHandle)": "OpenTK.Core.Platform.IOpenGLComponent.yml", - "OpenTK.Core.Platform.IOpenGLComponent.GetBindingsContext(OpenTK.Core.Platform.OpenGLContextHandle)": "OpenTK.Core.Platform.IOpenGLComponent.yml", - "OpenTK.Core.Platform.IOpenGLComponent.GetCurrentContext": "OpenTK.Core.Platform.IOpenGLComponent.yml", - "OpenTK.Core.Platform.IOpenGLComponent.GetProcedureAddress(OpenTK.Core.Platform.OpenGLContextHandle,System.String)": "OpenTK.Core.Platform.IOpenGLComponent.yml", - "OpenTK.Core.Platform.IOpenGLComponent.GetSharedContext(OpenTK.Core.Platform.OpenGLContextHandle)": "OpenTK.Core.Platform.IOpenGLComponent.yml", - "OpenTK.Core.Platform.IOpenGLComponent.GetSwapInterval": "OpenTK.Core.Platform.IOpenGLComponent.yml", - "OpenTK.Core.Platform.IOpenGLComponent.SetCurrentContext(OpenTK.Core.Platform.OpenGLContextHandle)": "OpenTK.Core.Platform.IOpenGLComponent.yml", - "OpenTK.Core.Platform.IOpenGLComponent.SetSwapInterval(System.Int32)": "OpenTK.Core.Platform.IOpenGLComponent.yml", - "OpenTK.Core.Platform.IOpenGLComponent.SwapBuffers(OpenTK.Core.Platform.OpenGLContextHandle)": "OpenTK.Core.Platform.IOpenGLComponent.yml", - "OpenTK.Core.Platform.IPalComponent": "OpenTK.Core.Platform.IPalComponent.yml", - "OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions)": "OpenTK.Core.Platform.IPalComponent.yml", - "OpenTK.Core.Platform.IPalComponent.Logger": "OpenTK.Core.Platform.IPalComponent.yml", - "OpenTK.Core.Platform.IPalComponent.Name": "OpenTK.Core.Platform.IPalComponent.yml", - "OpenTK.Core.Platform.IPalComponent.Provides": "OpenTK.Core.Platform.IPalComponent.yml", - "OpenTK.Core.Platform.IShellComponent": "OpenTK.Core.Platform.IShellComponent.yml", - "OpenTK.Core.Platform.IShellComponent.AllowScreenSaver(System.Boolean)": "OpenTK.Core.Platform.IShellComponent.yml", - "OpenTK.Core.Platform.IShellComponent.GetBatteryInfo(OpenTK.Core.Platform.BatteryInfo@)": "OpenTK.Core.Platform.IShellComponent.yml", - "OpenTK.Core.Platform.IShellComponent.GetPreferredTheme": "OpenTK.Core.Platform.IShellComponent.yml", - "OpenTK.Core.Platform.IShellComponent.GetSystemMemoryInformation": "OpenTK.Core.Platform.IShellComponent.yml", - "OpenTK.Core.Platform.ISurfaceComponent": "OpenTK.Core.Platform.ISurfaceComponent.yml", - "OpenTK.Core.Platform.ISurfaceComponent.Create": "OpenTK.Core.Platform.ISurfaceComponent.yml", - "OpenTK.Core.Platform.ISurfaceComponent.Destroy(OpenTK.Core.Platform.SurfaceHandle)": "OpenTK.Core.Platform.ISurfaceComponent.yml", - "OpenTK.Core.Platform.ISurfaceComponent.GetClientSize(OpenTK.Core.Platform.SurfaceHandle,System.Int32@,System.Int32@)": "OpenTK.Core.Platform.ISurfaceComponent.yml", - "OpenTK.Core.Platform.ISurfaceComponent.GetDisplay(OpenTK.Core.Platform.SurfaceHandle)": "OpenTK.Core.Platform.ISurfaceComponent.yml", - "OpenTK.Core.Platform.ISurfaceComponent.GetType(OpenTK.Core.Platform.SurfaceHandle)": "OpenTK.Core.Platform.ISurfaceComponent.yml", - "OpenTK.Core.Platform.ISurfaceComponent.SetDisplay(OpenTK.Core.Platform.SurfaceHandle,OpenTK.Core.Platform.DisplayHandle)": "OpenTK.Core.Platform.ISurfaceComponent.yml", - "OpenTK.Core.Platform.IWindowComponent": "OpenTK.Core.Platform.IWindowComponent.yml", - "OpenTK.Core.Platform.IWindowComponent.CanCaptureCursor": "OpenTK.Core.Platform.IWindowComponent.yml", - "OpenTK.Core.Platform.IWindowComponent.CanGetDisplay": "OpenTK.Core.Platform.IWindowComponent.yml", - "OpenTK.Core.Platform.IWindowComponent.CanSetCursor": "OpenTK.Core.Platform.IWindowComponent.yml", - "OpenTK.Core.Platform.IWindowComponent.CanSetIcon": "OpenTK.Core.Platform.IWindowComponent.yml", - "OpenTK.Core.Platform.IWindowComponent.ClientToScreen(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@)": "OpenTK.Core.Platform.IWindowComponent.yml", - "OpenTK.Core.Platform.IWindowComponent.Create(OpenTK.Core.Platform.GraphicsApiHints)": "OpenTK.Core.Platform.IWindowComponent.yml", - "OpenTK.Core.Platform.IWindowComponent.Destroy(OpenTK.Core.Platform.WindowHandle)": "OpenTK.Core.Platform.IWindowComponent.yml", - "OpenTK.Core.Platform.IWindowComponent.FocusWindow(OpenTK.Core.Platform.WindowHandle)": "OpenTK.Core.Platform.IWindowComponent.yml", - "OpenTK.Core.Platform.IWindowComponent.GetBorderStyle(OpenTK.Core.Platform.WindowHandle)": "OpenTK.Core.Platform.IWindowComponent.yml", - "OpenTK.Core.Platform.IWindowComponent.GetBounds(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@)": "OpenTK.Core.Platform.IWindowComponent.yml", - "OpenTK.Core.Platform.IWindowComponent.GetClientBounds(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@)": "OpenTK.Core.Platform.IWindowComponent.yml", - "OpenTK.Core.Platform.IWindowComponent.GetClientPosition(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@)": "OpenTK.Core.Platform.IWindowComponent.yml", - "OpenTK.Core.Platform.IWindowComponent.GetClientSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@)": "OpenTK.Core.Platform.IWindowComponent.yml", - "OpenTK.Core.Platform.IWindowComponent.GetCursorCaptureMode(OpenTK.Core.Platform.WindowHandle)": "OpenTK.Core.Platform.IWindowComponent.yml", - "OpenTK.Core.Platform.IWindowComponent.GetDisplay(OpenTK.Core.Platform.WindowHandle)": "OpenTK.Core.Platform.IWindowComponent.yml", - "OpenTK.Core.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@)": "OpenTK.Core.Platform.IWindowComponent.yml", - "OpenTK.Core.Platform.IWindowComponent.GetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle@)": "OpenTK.Core.Platform.IWindowComponent.yml", - "OpenTK.Core.Platform.IWindowComponent.GetIcon(OpenTK.Core.Platform.WindowHandle)": "OpenTK.Core.Platform.IWindowComponent.yml", - "OpenTK.Core.Platform.IWindowComponent.GetMaxClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@)": "OpenTK.Core.Platform.IWindowComponent.yml", - "OpenTK.Core.Platform.IWindowComponent.GetMinClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@)": "OpenTK.Core.Platform.IWindowComponent.yml", - "OpenTK.Core.Platform.IWindowComponent.GetMode(OpenTK.Core.Platform.WindowHandle)": "OpenTK.Core.Platform.IWindowComponent.yml", - "OpenTK.Core.Platform.IWindowComponent.GetPosition(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@)": "OpenTK.Core.Platform.IWindowComponent.yml", - "OpenTK.Core.Platform.IWindowComponent.GetScaleFactor(OpenTK.Core.Platform.WindowHandle,System.Single@,System.Single@)": "OpenTK.Core.Platform.IWindowComponent.yml", - "OpenTK.Core.Platform.IWindowComponent.GetSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@)": "OpenTK.Core.Platform.IWindowComponent.yml", - "OpenTK.Core.Platform.IWindowComponent.GetTitle(OpenTK.Core.Platform.WindowHandle)": "OpenTK.Core.Platform.IWindowComponent.yml", - "OpenTK.Core.Platform.IWindowComponent.IsAlwaysOnTop(OpenTK.Core.Platform.WindowHandle)": "OpenTK.Core.Platform.IWindowComponent.yml", - "OpenTK.Core.Platform.IWindowComponent.IsFocused(OpenTK.Core.Platform.WindowHandle)": "OpenTK.Core.Platform.IWindowComponent.yml", - "OpenTK.Core.Platform.IWindowComponent.IsWindowDestroyed(OpenTK.Core.Platform.WindowHandle)": "OpenTK.Core.Platform.IWindowComponent.yml", - "OpenTK.Core.Platform.IWindowComponent.ProcessEvents(System.Boolean)": "OpenTK.Core.Platform.IWindowComponent.yml", - "OpenTK.Core.Platform.IWindowComponent.RequestAttention(OpenTK.Core.Platform.WindowHandle)": "OpenTK.Core.Platform.IWindowComponent.yml", - "OpenTK.Core.Platform.IWindowComponent.ScreenToClient(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@)": "OpenTK.Core.Platform.IWindowComponent.yml", - "OpenTK.Core.Platform.IWindowComponent.SetAlwaysOnTop(OpenTK.Core.Platform.WindowHandle,System.Boolean)": "OpenTK.Core.Platform.IWindowComponent.yml", - "OpenTK.Core.Platform.IWindowComponent.SetBorderStyle(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.WindowBorderStyle)": "OpenTK.Core.Platform.IWindowComponent.yml", - "OpenTK.Core.Platform.IWindowComponent.SetBounds(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32)": "OpenTK.Core.Platform.IWindowComponent.yml", - "OpenTK.Core.Platform.IWindowComponent.SetClientBounds(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32)": "OpenTK.Core.Platform.IWindowComponent.yml", - "OpenTK.Core.Platform.IWindowComponent.SetClientPosition(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32)": "OpenTK.Core.Platform.IWindowComponent.yml", - "OpenTK.Core.Platform.IWindowComponent.SetClientSize(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32)": "OpenTK.Core.Platform.IWindowComponent.yml", - "OpenTK.Core.Platform.IWindowComponent.SetCursor(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.CursorHandle)": "OpenTK.Core.Platform.IWindowComponent.yml", - "OpenTK.Core.Platform.IWindowComponent.SetCursorCaptureMode(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.CursorCaptureMode)": "OpenTK.Core.Platform.IWindowComponent.yml", - "OpenTK.Core.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle)": "OpenTK.Core.Platform.IWindowComponent.yml", - "OpenTK.Core.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle,OpenTK.Core.Platform.VideoMode)": "OpenTK.Core.Platform.IWindowComponent.yml", - "OpenTK.Core.Platform.IWindowComponent.SetHitTestCallback(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.HitTest)": "OpenTK.Core.Platform.IWindowComponent.yml", - "OpenTK.Core.Platform.IWindowComponent.SetIcon(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.IconHandle)": "OpenTK.Core.Platform.IWindowComponent.yml", - "OpenTK.Core.Platform.IWindowComponent.SetMaxClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32})": "OpenTK.Core.Platform.IWindowComponent.yml", - "OpenTK.Core.Platform.IWindowComponent.SetMinClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32})": "OpenTK.Core.Platform.IWindowComponent.yml", - "OpenTK.Core.Platform.IWindowComponent.SetMode(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.WindowMode)": "OpenTK.Core.Platform.IWindowComponent.yml", - "OpenTK.Core.Platform.IWindowComponent.SetPosition(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32)": "OpenTK.Core.Platform.IWindowComponent.yml", - "OpenTK.Core.Platform.IWindowComponent.SetSize(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32)": "OpenTK.Core.Platform.IWindowComponent.yml", - "OpenTK.Core.Platform.IWindowComponent.SetTitle(OpenTK.Core.Platform.WindowHandle,System.String)": "OpenTK.Core.Platform.IWindowComponent.yml", - "OpenTK.Core.Platform.IWindowComponent.SupportedEvents": "OpenTK.Core.Platform.IWindowComponent.yml", - "OpenTK.Core.Platform.IWindowComponent.SupportedModes": "OpenTK.Core.Platform.IWindowComponent.yml", - "OpenTK.Core.Platform.IWindowComponent.SupportedStyles": "OpenTK.Core.Platform.IWindowComponent.yml", - "OpenTK.Core.Platform.IconHandle": "OpenTK.Core.Platform.IconHandle.yml", - "OpenTK.Core.Platform.InputLanguageChangedEventArgs": "OpenTK.Core.Platform.InputLanguageChangedEventArgs.yml", - "OpenTK.Core.Platform.InputLanguageChangedEventArgs.#ctor(System.String,System.String,System.String,System.String)": "OpenTK.Core.Platform.InputLanguageChangedEventArgs.yml", - "OpenTK.Core.Platform.InputLanguageChangedEventArgs.InputLanguage": "OpenTK.Core.Platform.InputLanguageChangedEventArgs.yml", - "OpenTK.Core.Platform.InputLanguageChangedEventArgs.InputLanguageDisplayName": "OpenTK.Core.Platform.InputLanguageChangedEventArgs.yml", - "OpenTK.Core.Platform.InputLanguageChangedEventArgs.KeyboardLayout": "OpenTK.Core.Platform.InputLanguageChangedEventArgs.yml", - "OpenTK.Core.Platform.InputLanguageChangedEventArgs.KeyboardLayoutDisplayName": "OpenTK.Core.Platform.InputLanguageChangedEventArgs.yml", - "OpenTK.Core.Platform.JoystickAxis": "OpenTK.Core.Platform.JoystickAxis.yml", - "OpenTK.Core.Platform.JoystickAxis.LeftTrigger": "OpenTK.Core.Platform.JoystickAxis.yml", - "OpenTK.Core.Platform.JoystickAxis.LeftXAxis": "OpenTK.Core.Platform.JoystickAxis.yml", - "OpenTK.Core.Platform.JoystickAxis.LeftYAxis": "OpenTK.Core.Platform.JoystickAxis.yml", - "OpenTK.Core.Platform.JoystickAxis.RightTrigger": "OpenTK.Core.Platform.JoystickAxis.yml", - "OpenTK.Core.Platform.JoystickAxis.RightXAxis": "OpenTK.Core.Platform.JoystickAxis.yml", - "OpenTK.Core.Platform.JoystickAxis.RightYAxis": "OpenTK.Core.Platform.JoystickAxis.yml", - "OpenTK.Core.Platform.JoystickButton": "OpenTK.Core.Platform.JoystickButton.yml", - "OpenTK.Core.Platform.JoystickButton.A": "OpenTK.Core.Platform.JoystickButton.yml", - "OpenTK.Core.Platform.JoystickButton.B": "OpenTK.Core.Platform.JoystickButton.yml", - "OpenTK.Core.Platform.JoystickButton.Back": "OpenTK.Core.Platform.JoystickButton.yml", - "OpenTK.Core.Platform.JoystickButton.DPadDown": "OpenTK.Core.Platform.JoystickButton.yml", - "OpenTK.Core.Platform.JoystickButton.DPadLeft": "OpenTK.Core.Platform.JoystickButton.yml", - "OpenTK.Core.Platform.JoystickButton.DPadRight": "OpenTK.Core.Platform.JoystickButton.yml", - "OpenTK.Core.Platform.JoystickButton.DPadUp": "OpenTK.Core.Platform.JoystickButton.yml", - "OpenTK.Core.Platform.JoystickButton.LeftShoulder": "OpenTK.Core.Platform.JoystickButton.yml", - "OpenTK.Core.Platform.JoystickButton.LeftThumb": "OpenTK.Core.Platform.JoystickButton.yml", - "OpenTK.Core.Platform.JoystickButton.RightShoulder": "OpenTK.Core.Platform.JoystickButton.yml", - "OpenTK.Core.Platform.JoystickButton.RightThumb": "OpenTK.Core.Platform.JoystickButton.yml", - "OpenTK.Core.Platform.JoystickButton.Start": "OpenTK.Core.Platform.JoystickButton.yml", - "OpenTK.Core.Platform.JoystickButton.X": "OpenTK.Core.Platform.JoystickButton.yml", - "OpenTK.Core.Platform.JoystickButton.Y": "OpenTK.Core.Platform.JoystickButton.yml", - "OpenTK.Core.Platform.JoystickHandle": "OpenTK.Core.Platform.JoystickHandle.yml", - "OpenTK.Core.Platform.Key": "OpenTK.Core.Platform.Key.yml", - "OpenTK.Core.Platform.Key.A": "OpenTK.Core.Platform.Key.yml", - "OpenTK.Core.Platform.Key.Application": "OpenTK.Core.Platform.Key.yml", - "OpenTK.Core.Platform.Key.B": "OpenTK.Core.Platform.Key.yml", - "OpenTK.Core.Platform.Key.Backspace": "OpenTK.Core.Platform.Key.yml", - "OpenTK.Core.Platform.Key.C": "OpenTK.Core.Platform.Key.yml", - "OpenTK.Core.Platform.Key.CapsLock": "OpenTK.Core.Platform.Key.yml", - "OpenTK.Core.Platform.Key.Comma": "OpenTK.Core.Platform.Key.yml", - "OpenTK.Core.Platform.Key.D": "OpenTK.Core.Platform.Key.yml", - "OpenTK.Core.Platform.Key.D0": "OpenTK.Core.Platform.Key.yml", - "OpenTK.Core.Platform.Key.D1": "OpenTK.Core.Platform.Key.yml", - "OpenTK.Core.Platform.Key.D2": "OpenTK.Core.Platform.Key.yml", - "OpenTK.Core.Platform.Key.D3": "OpenTK.Core.Platform.Key.yml", - "OpenTK.Core.Platform.Key.D4": "OpenTK.Core.Platform.Key.yml", - "OpenTK.Core.Platform.Key.D5": "OpenTK.Core.Platform.Key.yml", - "OpenTK.Core.Platform.Key.D6": "OpenTK.Core.Platform.Key.yml", - "OpenTK.Core.Platform.Key.D7": "OpenTK.Core.Platform.Key.yml", - "OpenTK.Core.Platform.Key.D8": "OpenTK.Core.Platform.Key.yml", - "OpenTK.Core.Platform.Key.D9": "OpenTK.Core.Platform.Key.yml", - "OpenTK.Core.Platform.Key.Delete": "OpenTK.Core.Platform.Key.yml", - "OpenTK.Core.Platform.Key.DownArrow": "OpenTK.Core.Platform.Key.yml", - "OpenTK.Core.Platform.Key.E": "OpenTK.Core.Platform.Key.yml", - "OpenTK.Core.Platform.Key.End": "OpenTK.Core.Platform.Key.yml", - "OpenTK.Core.Platform.Key.Escape": "OpenTK.Core.Platform.Key.yml", - "OpenTK.Core.Platform.Key.F": "OpenTK.Core.Platform.Key.yml", - "OpenTK.Core.Platform.Key.F1": "OpenTK.Core.Platform.Key.yml", - "OpenTK.Core.Platform.Key.F10": "OpenTK.Core.Platform.Key.yml", - "OpenTK.Core.Platform.Key.F11": "OpenTK.Core.Platform.Key.yml", - "OpenTK.Core.Platform.Key.F12": "OpenTK.Core.Platform.Key.yml", - "OpenTK.Core.Platform.Key.F13": "OpenTK.Core.Platform.Key.yml", - "OpenTK.Core.Platform.Key.F14": "OpenTK.Core.Platform.Key.yml", - "OpenTK.Core.Platform.Key.F15": "OpenTK.Core.Platform.Key.yml", - "OpenTK.Core.Platform.Key.F16": "OpenTK.Core.Platform.Key.yml", - "OpenTK.Core.Platform.Key.F17": "OpenTK.Core.Platform.Key.yml", - "OpenTK.Core.Platform.Key.F18": "OpenTK.Core.Platform.Key.yml", - "OpenTK.Core.Platform.Key.F19": "OpenTK.Core.Platform.Key.yml", - "OpenTK.Core.Platform.Key.F2": "OpenTK.Core.Platform.Key.yml", - "OpenTK.Core.Platform.Key.F20": "OpenTK.Core.Platform.Key.yml", - "OpenTK.Core.Platform.Key.F21": "OpenTK.Core.Platform.Key.yml", - "OpenTK.Core.Platform.Key.F22": "OpenTK.Core.Platform.Key.yml", - "OpenTK.Core.Platform.Key.F23": "OpenTK.Core.Platform.Key.yml", - "OpenTK.Core.Platform.Key.F24": "OpenTK.Core.Platform.Key.yml", - "OpenTK.Core.Platform.Key.F3": "OpenTK.Core.Platform.Key.yml", - "OpenTK.Core.Platform.Key.F4": "OpenTK.Core.Platform.Key.yml", - "OpenTK.Core.Platform.Key.F5": "OpenTK.Core.Platform.Key.yml", - "OpenTK.Core.Platform.Key.F6": "OpenTK.Core.Platform.Key.yml", - "OpenTK.Core.Platform.Key.F7": "OpenTK.Core.Platform.Key.yml", - "OpenTK.Core.Platform.Key.F8": "OpenTK.Core.Platform.Key.yml", - "OpenTK.Core.Platform.Key.F9": "OpenTK.Core.Platform.Key.yml", - "OpenTK.Core.Platform.Key.G": "OpenTK.Core.Platform.Key.yml", - "OpenTK.Core.Platform.Key.H": "OpenTK.Core.Platform.Key.yml", - "OpenTK.Core.Platform.Key.Help": "OpenTK.Core.Platform.Key.yml", - "OpenTK.Core.Platform.Key.Home": "OpenTK.Core.Platform.Key.yml", - "OpenTK.Core.Platform.Key.I": "OpenTK.Core.Platform.Key.yml", - "OpenTK.Core.Platform.Key.Insert": "OpenTK.Core.Platform.Key.yml", - "OpenTK.Core.Platform.Key.J": "OpenTK.Core.Platform.Key.yml", - "OpenTK.Core.Platform.Key.K": "OpenTK.Core.Platform.Key.yml", - "OpenTK.Core.Platform.Key.Keypad0": "OpenTK.Core.Platform.Key.yml", - "OpenTK.Core.Platform.Key.Keypad1": "OpenTK.Core.Platform.Key.yml", - "OpenTK.Core.Platform.Key.Keypad2": "OpenTK.Core.Platform.Key.yml", - "OpenTK.Core.Platform.Key.Keypad3": "OpenTK.Core.Platform.Key.yml", - "OpenTK.Core.Platform.Key.Keypad4": "OpenTK.Core.Platform.Key.yml", - "OpenTK.Core.Platform.Key.Keypad5": "OpenTK.Core.Platform.Key.yml", - "OpenTK.Core.Platform.Key.Keypad6": "OpenTK.Core.Platform.Key.yml", - "OpenTK.Core.Platform.Key.Keypad7": "OpenTK.Core.Platform.Key.yml", - "OpenTK.Core.Platform.Key.Keypad8": "OpenTK.Core.Platform.Key.yml", - "OpenTK.Core.Platform.Key.Keypad9": "OpenTK.Core.Platform.Key.yml", - "OpenTK.Core.Platform.Key.KeypadAdd": "OpenTK.Core.Platform.Key.yml", - "OpenTK.Core.Platform.Key.KeypadDecimal": "OpenTK.Core.Platform.Key.yml", - "OpenTK.Core.Platform.Key.KeypadDivide": "OpenTK.Core.Platform.Key.yml", - "OpenTK.Core.Platform.Key.KeypadEnter": "OpenTK.Core.Platform.Key.yml", - "OpenTK.Core.Platform.Key.KeypadEqual": "OpenTK.Core.Platform.Key.yml", - "OpenTK.Core.Platform.Key.KeypadMultiply": "OpenTK.Core.Platform.Key.yml", - "OpenTK.Core.Platform.Key.KeypadSeparator": "OpenTK.Core.Platform.Key.yml", - "OpenTK.Core.Platform.Key.KeypadSubtract": "OpenTK.Core.Platform.Key.yml", - "OpenTK.Core.Platform.Key.L": "OpenTK.Core.Platform.Key.yml", - "OpenTK.Core.Platform.Key.LeftAlt": "OpenTK.Core.Platform.Key.yml", - "OpenTK.Core.Platform.Key.LeftArrow": "OpenTK.Core.Platform.Key.yml", - "OpenTK.Core.Platform.Key.LeftControl": "OpenTK.Core.Platform.Key.yml", - "OpenTK.Core.Platform.Key.LeftGUI": "OpenTK.Core.Platform.Key.yml", - "OpenTK.Core.Platform.Key.LeftShift": "OpenTK.Core.Platform.Key.yml", - "OpenTK.Core.Platform.Key.M": "OpenTK.Core.Platform.Key.yml", - "OpenTK.Core.Platform.Key.Minus": "OpenTK.Core.Platform.Key.yml", - "OpenTK.Core.Platform.Key.Mute": "OpenTK.Core.Platform.Key.yml", - "OpenTK.Core.Platform.Key.N": "OpenTK.Core.Platform.Key.yml", - "OpenTK.Core.Platform.Key.NextTrack": "OpenTK.Core.Platform.Key.yml", - "OpenTK.Core.Platform.Key.NumLock": "OpenTK.Core.Platform.Key.yml", - "OpenTK.Core.Platform.Key.O": "OpenTK.Core.Platform.Key.yml", - "OpenTK.Core.Platform.Key.OEM1": "OpenTK.Core.Platform.Key.yml", - "OpenTK.Core.Platform.Key.OEM102": "OpenTK.Core.Platform.Key.yml", - "OpenTK.Core.Platform.Key.OEM2": "OpenTK.Core.Platform.Key.yml", - "OpenTK.Core.Platform.Key.OEM3": "OpenTK.Core.Platform.Key.yml", - "OpenTK.Core.Platform.Key.OEM4": "OpenTK.Core.Platform.Key.yml", - "OpenTK.Core.Platform.Key.OEM5": "OpenTK.Core.Platform.Key.yml", - "OpenTK.Core.Platform.Key.OEM6": "OpenTK.Core.Platform.Key.yml", - "OpenTK.Core.Platform.Key.OEM7": "OpenTK.Core.Platform.Key.yml", - "OpenTK.Core.Platform.Key.OEM8": "OpenTK.Core.Platform.Key.yml", - "OpenTK.Core.Platform.Key.P": "OpenTK.Core.Platform.Key.yml", - "OpenTK.Core.Platform.Key.PageDown": "OpenTK.Core.Platform.Key.yml", - "OpenTK.Core.Platform.Key.PageUp": "OpenTK.Core.Platform.Key.yml", - "OpenTK.Core.Platform.Key.PauseBreak": "OpenTK.Core.Platform.Key.yml", - "OpenTK.Core.Platform.Key.Period": "OpenTK.Core.Platform.Key.yml", - "OpenTK.Core.Platform.Key.PlayPause": "OpenTK.Core.Platform.Key.yml", - "OpenTK.Core.Platform.Key.Plus": "OpenTK.Core.Platform.Key.yml", - "OpenTK.Core.Platform.Key.PreviousTrack": "OpenTK.Core.Platform.Key.yml", - "OpenTK.Core.Platform.Key.PrintScreen": "OpenTK.Core.Platform.Key.yml", - "OpenTK.Core.Platform.Key.Q": "OpenTK.Core.Platform.Key.yml", - "OpenTK.Core.Platform.Key.R": "OpenTK.Core.Platform.Key.yml", - "OpenTK.Core.Platform.Key.Return": "OpenTK.Core.Platform.Key.yml", - "OpenTK.Core.Platform.Key.RightAlt": "OpenTK.Core.Platform.Key.yml", - "OpenTK.Core.Platform.Key.RightArrow": "OpenTK.Core.Platform.Key.yml", - "OpenTK.Core.Platform.Key.RightControl": "OpenTK.Core.Platform.Key.yml", - "OpenTK.Core.Platform.Key.RightGUI": "OpenTK.Core.Platform.Key.yml", - "OpenTK.Core.Platform.Key.RightShift": "OpenTK.Core.Platform.Key.yml", - "OpenTK.Core.Platform.Key.S": "OpenTK.Core.Platform.Key.yml", - "OpenTK.Core.Platform.Key.ScrollLock": "OpenTK.Core.Platform.Key.yml", - "OpenTK.Core.Platform.Key.Sleep": "OpenTK.Core.Platform.Key.yml", - "OpenTK.Core.Platform.Key.Space": "OpenTK.Core.Platform.Key.yml", - "OpenTK.Core.Platform.Key.Stop": "OpenTK.Core.Platform.Key.yml", - "OpenTK.Core.Platform.Key.T": "OpenTK.Core.Platform.Key.yml", - "OpenTK.Core.Platform.Key.Tab": "OpenTK.Core.Platform.Key.yml", - "OpenTK.Core.Platform.Key.U": "OpenTK.Core.Platform.Key.yml", - "OpenTK.Core.Platform.Key.Unknown": "OpenTK.Core.Platform.Key.yml", - "OpenTK.Core.Platform.Key.UpArrow": "OpenTK.Core.Platform.Key.yml", - "OpenTK.Core.Platform.Key.V": "OpenTK.Core.Platform.Key.yml", - "OpenTK.Core.Platform.Key.VolumeDown": "OpenTK.Core.Platform.Key.yml", - "OpenTK.Core.Platform.Key.VolumeUp": "OpenTK.Core.Platform.Key.yml", - "OpenTK.Core.Platform.Key.W": "OpenTK.Core.Platform.Key.yml", - "OpenTK.Core.Platform.Key.X": "OpenTK.Core.Platform.Key.yml", - "OpenTK.Core.Platform.Key.Y": "OpenTK.Core.Platform.Key.yml", - "OpenTK.Core.Platform.Key.Z": "OpenTK.Core.Platform.Key.yml", - "OpenTK.Core.Platform.KeyDownEventArgs": "OpenTK.Core.Platform.KeyDownEventArgs.yml", - "OpenTK.Core.Platform.KeyDownEventArgs.#ctor(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.Key,OpenTK.Core.Platform.Scancode,System.Boolean,OpenTK.Core.Platform.KeyModifier)": "OpenTK.Core.Platform.KeyDownEventArgs.yml", - "OpenTK.Core.Platform.KeyDownEventArgs.IsRepeat": "OpenTK.Core.Platform.KeyDownEventArgs.yml", - "OpenTK.Core.Platform.KeyDownEventArgs.Key": "OpenTK.Core.Platform.KeyDownEventArgs.yml", - "OpenTK.Core.Platform.KeyDownEventArgs.Modifiers": "OpenTK.Core.Platform.KeyDownEventArgs.yml", - "OpenTK.Core.Platform.KeyDownEventArgs.Scancode": "OpenTK.Core.Platform.KeyDownEventArgs.yml", - "OpenTK.Core.Platform.KeyModifier": "OpenTK.Core.Platform.KeyModifier.yml", - "OpenTK.Core.Platform.KeyModifier.Alt": "OpenTK.Core.Platform.KeyModifier.yml", - "OpenTK.Core.Platform.KeyModifier.CapsLock": "OpenTK.Core.Platform.KeyModifier.yml", - "OpenTK.Core.Platform.KeyModifier.Control": "OpenTK.Core.Platform.KeyModifier.yml", - "OpenTK.Core.Platform.KeyModifier.GUI": "OpenTK.Core.Platform.KeyModifier.yml", - "OpenTK.Core.Platform.KeyModifier.LeftAlt": "OpenTK.Core.Platform.KeyModifier.yml", - "OpenTK.Core.Platform.KeyModifier.LeftControl": "OpenTK.Core.Platform.KeyModifier.yml", - "OpenTK.Core.Platform.KeyModifier.LeftGUI": "OpenTK.Core.Platform.KeyModifier.yml", - "OpenTK.Core.Platform.KeyModifier.LeftShift": "OpenTK.Core.Platform.KeyModifier.yml", - "OpenTK.Core.Platform.KeyModifier.None": "OpenTK.Core.Platform.KeyModifier.yml", - "OpenTK.Core.Platform.KeyModifier.NumLock": "OpenTK.Core.Platform.KeyModifier.yml", - "OpenTK.Core.Platform.KeyModifier.RightAlt": "OpenTK.Core.Platform.KeyModifier.yml", - "OpenTK.Core.Platform.KeyModifier.RightControl": "OpenTK.Core.Platform.KeyModifier.yml", - "OpenTK.Core.Platform.KeyModifier.RightGUI": "OpenTK.Core.Platform.KeyModifier.yml", - "OpenTK.Core.Platform.KeyModifier.RightShift": "OpenTK.Core.Platform.KeyModifier.yml", - "OpenTK.Core.Platform.KeyModifier.ScrollLock": "OpenTK.Core.Platform.KeyModifier.yml", - "OpenTK.Core.Platform.KeyModifier.Shift": "OpenTK.Core.Platform.KeyModifier.yml", - "OpenTK.Core.Platform.KeyUpEventArgs": "OpenTK.Core.Platform.KeyUpEventArgs.yml", - "OpenTK.Core.Platform.KeyUpEventArgs.#ctor(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.Key,OpenTK.Core.Platform.Scancode,OpenTK.Core.Platform.KeyModifier)": "OpenTK.Core.Platform.KeyUpEventArgs.yml", - "OpenTK.Core.Platform.KeyUpEventArgs.Key": "OpenTK.Core.Platform.KeyUpEventArgs.yml", - "OpenTK.Core.Platform.KeyUpEventArgs.Modifiers": "OpenTK.Core.Platform.KeyUpEventArgs.yml", - "OpenTK.Core.Platform.KeyUpEventArgs.Scancode": "OpenTK.Core.Platform.KeyUpEventArgs.yml", - "OpenTK.Core.Platform.MouseButton": "OpenTK.Core.Platform.MouseButton.yml", - "OpenTK.Core.Platform.MouseButton.Button1": "OpenTK.Core.Platform.MouseButton.yml", - "OpenTK.Core.Platform.MouseButton.Button2": "OpenTK.Core.Platform.MouseButton.yml", - "OpenTK.Core.Platform.MouseButton.Button3": "OpenTK.Core.Platform.MouseButton.yml", - "OpenTK.Core.Platform.MouseButton.Button4": "OpenTK.Core.Platform.MouseButton.yml", - "OpenTK.Core.Platform.MouseButton.Button5": "OpenTK.Core.Platform.MouseButton.yml", - "OpenTK.Core.Platform.MouseButton.Button6": "OpenTK.Core.Platform.MouseButton.yml", - "OpenTK.Core.Platform.MouseButton.Button7": "OpenTK.Core.Platform.MouseButton.yml", - "OpenTK.Core.Platform.MouseButton.Button8": "OpenTK.Core.Platform.MouseButton.yml", - "OpenTK.Core.Platform.MouseButtonDownEventArgs": "OpenTK.Core.Platform.MouseButtonDownEventArgs.yml", - "OpenTK.Core.Platform.MouseButtonDownEventArgs.#ctor(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.MouseButton,OpenTK.Core.Platform.KeyModifier)": "OpenTK.Core.Platform.MouseButtonDownEventArgs.yml", - "OpenTK.Core.Platform.MouseButtonDownEventArgs.Button": "OpenTK.Core.Platform.MouseButtonDownEventArgs.yml", - "OpenTK.Core.Platform.MouseButtonDownEventArgs.Modifiers": "OpenTK.Core.Platform.MouseButtonDownEventArgs.yml", - "OpenTK.Core.Platform.MouseButtonFlags": "OpenTK.Core.Platform.MouseButtonFlags.yml", - "OpenTK.Core.Platform.MouseButtonFlags.Button1": "OpenTK.Core.Platform.MouseButtonFlags.yml", - "OpenTK.Core.Platform.MouseButtonFlags.Button2": "OpenTK.Core.Platform.MouseButtonFlags.yml", - "OpenTK.Core.Platform.MouseButtonFlags.Button3": "OpenTK.Core.Platform.MouseButtonFlags.yml", - "OpenTK.Core.Platform.MouseButtonFlags.Button4": "OpenTK.Core.Platform.MouseButtonFlags.yml", - "OpenTK.Core.Platform.MouseButtonFlags.Button5": "OpenTK.Core.Platform.MouseButtonFlags.yml", - "OpenTK.Core.Platform.MouseButtonFlags.Button6": "OpenTK.Core.Platform.MouseButtonFlags.yml", - "OpenTK.Core.Platform.MouseButtonFlags.Button7": "OpenTK.Core.Platform.MouseButtonFlags.yml", - "OpenTK.Core.Platform.MouseButtonFlags.Button8": "OpenTK.Core.Platform.MouseButtonFlags.yml", - "OpenTK.Core.Platform.MouseButtonUpEventArgs": "OpenTK.Core.Platform.MouseButtonUpEventArgs.yml", - "OpenTK.Core.Platform.MouseButtonUpEventArgs.#ctor(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.MouseButton,OpenTK.Core.Platform.KeyModifier)": "OpenTK.Core.Platform.MouseButtonUpEventArgs.yml", - "OpenTK.Core.Platform.MouseButtonUpEventArgs.Button": "OpenTK.Core.Platform.MouseButtonUpEventArgs.yml", - "OpenTK.Core.Platform.MouseButtonUpEventArgs.Modifiers": "OpenTK.Core.Platform.MouseButtonUpEventArgs.yml", - "OpenTK.Core.Platform.MouseEnterEventArgs": "OpenTK.Core.Platform.MouseEnterEventArgs.yml", - "OpenTK.Core.Platform.MouseEnterEventArgs.#ctor(OpenTK.Core.Platform.WindowHandle,System.Boolean)": "OpenTK.Core.Platform.MouseEnterEventArgs.yml", - "OpenTK.Core.Platform.MouseEnterEventArgs.Entered": "OpenTK.Core.Platform.MouseEnterEventArgs.yml", - "OpenTK.Core.Platform.MouseHandle": "OpenTK.Core.Platform.MouseHandle.yml", - "OpenTK.Core.Platform.MouseMoveEventArgs": "OpenTK.Core.Platform.MouseMoveEventArgs.yml", - "OpenTK.Core.Platform.MouseMoveEventArgs.#ctor(OpenTK.Core.Platform.WindowHandle,OpenTK.Mathematics.Vector2)": "OpenTK.Core.Platform.MouseMoveEventArgs.yml", - "OpenTK.Core.Platform.MouseMoveEventArgs.Position": "OpenTK.Core.Platform.MouseMoveEventArgs.yml", - "OpenTK.Core.Platform.MouseState": "OpenTK.Core.Platform.MouseState.yml", - "OpenTK.Core.Platform.MouseState.Position": "OpenTK.Core.Platform.MouseState.yml", - "OpenTK.Core.Platform.MouseState.PressedButtons": "OpenTK.Core.Platform.MouseState.yml", - "OpenTK.Core.Platform.MouseState.Scroll": "OpenTK.Core.Platform.MouseState.yml", - "OpenTK.Core.Platform.OpenDialogOptions": "OpenTK.Core.Platform.OpenDialogOptions.yml", - "OpenTK.Core.Platform.OpenDialogOptions.AllowMultiSelect": "OpenTK.Core.Platform.OpenDialogOptions.yml", - "OpenTK.Core.Platform.OpenDialogOptions.SelectDirectory": "OpenTK.Core.Platform.OpenDialogOptions.yml", - "OpenTK.Core.Platform.OpenGLContextHandle": "OpenTK.Core.Platform.OpenGLContextHandle.yml", - "OpenTK.Core.Platform.OpenGLGraphicsApiHints": "OpenTK.Core.Platform.OpenGLGraphicsApiHints.yml", - "OpenTK.Core.Platform.OpenGLGraphicsApiHints.#ctor": "OpenTK.Core.Platform.OpenGLGraphicsApiHints.yml", - "OpenTK.Core.Platform.OpenGLGraphicsApiHints.AlphaColorBits": "OpenTK.Core.Platform.OpenGLGraphicsApiHints.yml", - "OpenTK.Core.Platform.OpenGLGraphicsApiHints.Api": "OpenTK.Core.Platform.OpenGLGraphicsApiHints.yml", - "OpenTK.Core.Platform.OpenGLGraphicsApiHints.BlueColorBits": "OpenTK.Core.Platform.OpenGLGraphicsApiHints.yml", - "OpenTK.Core.Platform.OpenGLGraphicsApiHints.Copy": "OpenTK.Core.Platform.OpenGLGraphicsApiHints.yml", - "OpenTK.Core.Platform.OpenGLGraphicsApiHints.DebugFlag": "OpenTK.Core.Platform.OpenGLGraphicsApiHints.yml", - "OpenTK.Core.Platform.OpenGLGraphicsApiHints.DepthBits": "OpenTK.Core.Platform.OpenGLGraphicsApiHints.yml", - "OpenTK.Core.Platform.OpenGLGraphicsApiHints.DoubleBuffer": "OpenTK.Core.Platform.OpenGLGraphicsApiHints.yml", - "OpenTK.Core.Platform.OpenGLGraphicsApiHints.ForwardCompatibleFlag": "OpenTK.Core.Platform.OpenGLGraphicsApiHints.yml", - "OpenTK.Core.Platform.OpenGLGraphicsApiHints.GreenColorBits": "OpenTK.Core.Platform.OpenGLGraphicsApiHints.yml", - "OpenTK.Core.Platform.OpenGLGraphicsApiHints.Multisamples": "OpenTK.Core.Platform.OpenGLGraphicsApiHints.yml", - "OpenTK.Core.Platform.OpenGLGraphicsApiHints.NoError": "OpenTK.Core.Platform.OpenGLGraphicsApiHints.yml", - "OpenTK.Core.Platform.OpenGLGraphicsApiHints.PixelFormat": "OpenTK.Core.Platform.OpenGLGraphicsApiHints.yml", - "OpenTK.Core.Platform.OpenGLGraphicsApiHints.Profile": "OpenTK.Core.Platform.OpenGLGraphicsApiHints.yml", - "OpenTK.Core.Platform.OpenGLGraphicsApiHints.RedColorBits": "OpenTK.Core.Platform.OpenGLGraphicsApiHints.yml", - "OpenTK.Core.Platform.OpenGLGraphicsApiHints.ReleaseBehaviour": "OpenTK.Core.Platform.OpenGLGraphicsApiHints.yml", - "OpenTK.Core.Platform.OpenGLGraphicsApiHints.ResetIsolation": "OpenTK.Core.Platform.OpenGLGraphicsApiHints.yml", - "OpenTK.Core.Platform.OpenGLGraphicsApiHints.ResetNotificationStrategy": "OpenTK.Core.Platform.OpenGLGraphicsApiHints.yml", - "OpenTK.Core.Platform.OpenGLGraphicsApiHints.RobustnessFlag": "OpenTK.Core.Platform.OpenGLGraphicsApiHints.yml", - "OpenTK.Core.Platform.OpenGLGraphicsApiHints.Selector": "OpenTK.Core.Platform.OpenGLGraphicsApiHints.yml", - "OpenTK.Core.Platform.OpenGLGraphicsApiHints.SharedContext": "OpenTK.Core.Platform.OpenGLGraphicsApiHints.yml", - "OpenTK.Core.Platform.OpenGLGraphicsApiHints.StencilBits": "OpenTK.Core.Platform.OpenGLGraphicsApiHints.yml", - "OpenTK.Core.Platform.OpenGLGraphicsApiHints.SwapMethod": "OpenTK.Core.Platform.OpenGLGraphicsApiHints.yml", - "OpenTK.Core.Platform.OpenGLGraphicsApiHints.UseFlushControl": "OpenTK.Core.Platform.OpenGLGraphicsApiHints.yml", - "OpenTK.Core.Platform.OpenGLGraphicsApiHints.UseSelectorOnMacOS": "OpenTK.Core.Platform.OpenGLGraphicsApiHints.yml", - "OpenTK.Core.Platform.OpenGLGraphicsApiHints.Version": "OpenTK.Core.Platform.OpenGLGraphicsApiHints.yml", - "OpenTK.Core.Platform.OpenGLGraphicsApiHints.sRGBFramebuffer": "OpenTK.Core.Platform.OpenGLGraphicsApiHints.yml", - "OpenTK.Core.Platform.OpenGLProfile": "OpenTK.Core.Platform.OpenGLProfile.yml", - "OpenTK.Core.Platform.OpenGLProfile.Compatibility": "OpenTK.Core.Platform.OpenGLProfile.yml", - "OpenTK.Core.Platform.OpenGLProfile.Core": "OpenTK.Core.Platform.OpenGLProfile.yml", - "OpenTK.Core.Platform.OpenGLProfile.None": "OpenTK.Core.Platform.OpenGLProfile.yml", - "OpenTK.Core.Platform.Pal2BindingsContext": "OpenTK.Core.Platform.Pal2BindingsContext.yml", - "OpenTK.Core.Platform.Pal2BindingsContext.#ctor(OpenTK.Core.Platform.IOpenGLComponent,OpenTK.Core.Platform.OpenGLContextHandle)": "OpenTK.Core.Platform.Pal2BindingsContext.yml", - "OpenTK.Core.Platform.Pal2BindingsContext.ContextHandle": "OpenTK.Core.Platform.Pal2BindingsContext.yml", - "OpenTK.Core.Platform.Pal2BindingsContext.GetProcAddress(System.String)": "OpenTK.Core.Platform.Pal2BindingsContext.yml", - "OpenTK.Core.Platform.Pal2BindingsContext.OpenGLComp": "OpenTK.Core.Platform.Pal2BindingsContext.yml", - "OpenTK.Core.Platform.PalComponents": "OpenTK.Core.Platform.PalComponents.yml", - "OpenTK.Core.Platform.PalComponents.Clipboard": "OpenTK.Core.Platform.PalComponents.yml", - "OpenTK.Core.Platform.PalComponents.ControllerInput": "OpenTK.Core.Platform.PalComponents.yml", - "OpenTK.Core.Platform.PalComponents.Dialog": "OpenTK.Core.Platform.PalComponents.yml", - "OpenTK.Core.Platform.PalComponents.Display": "OpenTK.Core.Platform.PalComponents.yml", - "OpenTK.Core.Platform.PalComponents.Joystick": "OpenTK.Core.Platform.PalComponents.yml", - "OpenTK.Core.Platform.PalComponents.KeyboardInput": "OpenTK.Core.Platform.PalComponents.yml", - "OpenTK.Core.Platform.PalComponents.MiceInput": "OpenTK.Core.Platform.PalComponents.yml", - "OpenTK.Core.Platform.PalComponents.MouseCursor": "OpenTK.Core.Platform.PalComponents.yml", - "OpenTK.Core.Platform.PalComponents.OpenGL": "OpenTK.Core.Platform.PalComponents.yml", - "OpenTK.Core.Platform.PalComponents.Shell": "OpenTK.Core.Platform.PalComponents.yml", - "OpenTK.Core.Platform.PalComponents.Surface": "OpenTK.Core.Platform.PalComponents.yml", - "OpenTK.Core.Platform.PalComponents.Vulkan": "OpenTK.Core.Platform.PalComponents.yml", - "OpenTK.Core.Platform.PalComponents.Window": "OpenTK.Core.Platform.PalComponents.yml", - "OpenTK.Core.Platform.PalComponents.WindowIcon": "OpenTK.Core.Platform.PalComponents.yml", - "OpenTK.Core.Platform.PalException": "OpenTK.Core.Platform.PalException.yml", - "OpenTK.Core.Platform.PalException.#ctor(OpenTK.Core.Platform.IPalComponent)": "OpenTK.Core.Platform.PalException.yml", - "OpenTK.Core.Platform.PalException.#ctor(OpenTK.Core.Platform.IPalComponent,System.String)": "OpenTK.Core.Platform.PalException.yml", - "OpenTK.Core.Platform.PalException.#ctor(OpenTK.Core.Platform.IPalComponent,System.String,System.Exception)": "OpenTK.Core.Platform.PalException.yml", - "OpenTK.Core.Platform.PalException.Component": "OpenTK.Core.Platform.PalException.yml", - "OpenTK.Core.Platform.PalHandle": "OpenTK.Core.Platform.PalHandle.yml", - "OpenTK.Core.Platform.PalHandle.As``1(OpenTK.Core.Platform.IPalComponent)": "OpenTK.Core.Platform.PalHandle.yml", - "OpenTK.Core.Platform.PalHandle.UserData": "OpenTK.Core.Platform.PalHandle.yml", - "OpenTK.Core.Platform.PalNotImplementedException": "OpenTK.Core.Platform.PalNotImplementedException.yml", - "OpenTK.Core.Platform.PalNotImplementedException.#ctor(OpenTK.Core.Platform.IPalComponent)": "OpenTK.Core.Platform.PalNotImplementedException.yml", - "OpenTK.Core.Platform.PalNotImplementedException.#ctor(OpenTK.Core.Platform.IPalComponent,System.String)": "OpenTK.Core.Platform.PalNotImplementedException.yml", - "OpenTK.Core.Platform.PlatformEventHandler": "OpenTK.Core.Platform.PlatformEventHandler.yml", - "OpenTK.Core.Platform.PlatformEventType": "OpenTK.Core.Platform.PlatformEventType.yml", - "OpenTK.Core.Platform.PlatformEventType.ClipboardUpdate": "OpenTK.Core.Platform.PlatformEventType.yml", - "OpenTK.Core.Platform.PlatformEventType.Close": "OpenTK.Core.Platform.PlatformEventType.yml", - "OpenTK.Core.Platform.PlatformEventType.DisplayConnectionChanged": "OpenTK.Core.Platform.PlatformEventType.yml", - "OpenTK.Core.Platform.PlatformEventType.FileDrop": "OpenTK.Core.Platform.PlatformEventType.yml", - "OpenTK.Core.Platform.PlatformEventType.Focus": "OpenTK.Core.Platform.PlatformEventType.yml", - "OpenTK.Core.Platform.PlatformEventType.InputLanguageChanged": "OpenTK.Core.Platform.PlatformEventType.yml", - "OpenTK.Core.Platform.PlatformEventType.KeyDown": "OpenTK.Core.Platform.PlatformEventType.yml", - "OpenTK.Core.Platform.PlatformEventType.KeyUp": "OpenTK.Core.Platform.PlatformEventType.yml", - "OpenTK.Core.Platform.PlatformEventType.MouseDown": "OpenTK.Core.Platform.PlatformEventType.yml", - "OpenTK.Core.Platform.PlatformEventType.MouseEnter": "OpenTK.Core.Platform.PlatformEventType.yml", - "OpenTK.Core.Platform.PlatformEventType.MouseMove": "OpenTK.Core.Platform.PlatformEventType.yml", - "OpenTK.Core.Platform.PlatformEventType.MouseUp": "OpenTK.Core.Platform.PlatformEventType.yml", - "OpenTK.Core.Platform.PlatformEventType.NoOperation": "OpenTK.Core.Platform.PlatformEventType.yml", - "OpenTK.Core.Platform.PlatformEventType.PowerStateChange": "OpenTK.Core.Platform.PlatformEventType.yml", - "OpenTK.Core.Platform.PlatformEventType.Scroll": "OpenTK.Core.Platform.PlatformEventType.yml", - "OpenTK.Core.Platform.PlatformEventType.TextEditing": "OpenTK.Core.Platform.PlatformEventType.yml", - "OpenTK.Core.Platform.PlatformEventType.TextInput": "OpenTK.Core.Platform.PlatformEventType.yml", - "OpenTK.Core.Platform.PlatformEventType.ThemeChange": "OpenTK.Core.Platform.PlatformEventType.yml", - "OpenTK.Core.Platform.PlatformEventType.WindowFramebufferResize": "OpenTK.Core.Platform.PlatformEventType.yml", - "OpenTK.Core.Platform.PlatformEventType.WindowModeChange": "OpenTK.Core.Platform.PlatformEventType.yml", - "OpenTK.Core.Platform.PlatformEventType.WindowMove": "OpenTK.Core.Platform.PlatformEventType.yml", - "OpenTK.Core.Platform.PlatformEventType.WindowResize": "OpenTK.Core.Platform.PlatformEventType.yml", - "OpenTK.Core.Platform.PlatformEventType.WindowScaleChange": "OpenTK.Core.Platform.PlatformEventType.yml", - "OpenTK.Core.Platform.PlatformException": "OpenTK.Core.Platform.PlatformException.yml", - "OpenTK.Core.Platform.PlatformException.#ctor": "OpenTK.Core.Platform.PlatformException.yml", - "OpenTK.Core.Platform.PlatformException.#ctor(System.String)": "OpenTK.Core.Platform.PlatformException.yml", - "OpenTK.Core.Platform.PowerStateChangeEventArgs": "OpenTK.Core.Platform.PowerStateChangeEventArgs.yml", - "OpenTK.Core.Platform.PowerStateChangeEventArgs.#ctor(System.Boolean)": "OpenTK.Core.Platform.PowerStateChangeEventArgs.yml", - "OpenTK.Core.Platform.PowerStateChangeEventArgs.GoingToSleep": "OpenTK.Core.Platform.PowerStateChangeEventArgs.yml", - "OpenTK.Core.Platform.SaveDialogOptions": "OpenTK.Core.Platform.SaveDialogOptions.yml", - "OpenTK.Core.Platform.Scancode": "OpenTK.Core.Platform.Scancode.yml", - "OpenTK.Core.Platform.Scancode.A": "OpenTK.Core.Platform.Scancode.yml", - "OpenTK.Core.Platform.Scancode.Application": "OpenTK.Core.Platform.Scancode.yml", - "OpenTK.Core.Platform.Scancode.B": "OpenTK.Core.Platform.Scancode.yml", - "OpenTK.Core.Platform.Scancode.Backspace": "OpenTK.Core.Platform.Scancode.yml", - "OpenTK.Core.Platform.Scancode.C": "OpenTK.Core.Platform.Scancode.yml", - "OpenTK.Core.Platform.Scancode.CapsLock": "OpenTK.Core.Platform.Scancode.yml", - "OpenTK.Core.Platform.Scancode.Comma": "OpenTK.Core.Platform.Scancode.yml", - "OpenTK.Core.Platform.Scancode.D": "OpenTK.Core.Platform.Scancode.yml", - "OpenTK.Core.Platform.Scancode.D0": "OpenTK.Core.Platform.Scancode.yml", - "OpenTK.Core.Platform.Scancode.D1": "OpenTK.Core.Platform.Scancode.yml", - "OpenTK.Core.Platform.Scancode.D2": "OpenTK.Core.Platform.Scancode.yml", - "OpenTK.Core.Platform.Scancode.D3": "OpenTK.Core.Platform.Scancode.yml", - "OpenTK.Core.Platform.Scancode.D4": "OpenTK.Core.Platform.Scancode.yml", - "OpenTK.Core.Platform.Scancode.D5": "OpenTK.Core.Platform.Scancode.yml", - "OpenTK.Core.Platform.Scancode.D6": "OpenTK.Core.Platform.Scancode.yml", - "OpenTK.Core.Platform.Scancode.D7": "OpenTK.Core.Platform.Scancode.yml", - "OpenTK.Core.Platform.Scancode.D8": "OpenTK.Core.Platform.Scancode.yml", - "OpenTK.Core.Platform.Scancode.D9": "OpenTK.Core.Platform.Scancode.yml", - "OpenTK.Core.Platform.Scancode.Dash": "OpenTK.Core.Platform.Scancode.yml", - "OpenTK.Core.Platform.Scancode.Delete": "OpenTK.Core.Platform.Scancode.yml", - "OpenTK.Core.Platform.Scancode.DownArrow": "OpenTK.Core.Platform.Scancode.yml", - "OpenTK.Core.Platform.Scancode.E": "OpenTK.Core.Platform.Scancode.yml", - "OpenTK.Core.Platform.Scancode.End": "OpenTK.Core.Platform.Scancode.yml", - "OpenTK.Core.Platform.Scancode.Equals": "OpenTK.Core.Platform.Scancode.yml", - "OpenTK.Core.Platform.Scancode.Escape": "OpenTK.Core.Platform.Scancode.yml", - "OpenTK.Core.Platform.Scancode.F": "OpenTK.Core.Platform.Scancode.yml", - "OpenTK.Core.Platform.Scancode.F1": "OpenTK.Core.Platform.Scancode.yml", - "OpenTK.Core.Platform.Scancode.F10": "OpenTK.Core.Platform.Scancode.yml", - "OpenTK.Core.Platform.Scancode.F11": "OpenTK.Core.Platform.Scancode.yml", - "OpenTK.Core.Platform.Scancode.F12": "OpenTK.Core.Platform.Scancode.yml", - "OpenTK.Core.Platform.Scancode.F13": "OpenTK.Core.Platform.Scancode.yml", - "OpenTK.Core.Platform.Scancode.F14": "OpenTK.Core.Platform.Scancode.yml", - "OpenTK.Core.Platform.Scancode.F15": "OpenTK.Core.Platform.Scancode.yml", - "OpenTK.Core.Platform.Scancode.F16": "OpenTK.Core.Platform.Scancode.yml", - "OpenTK.Core.Platform.Scancode.F17": "OpenTK.Core.Platform.Scancode.yml", - "OpenTK.Core.Platform.Scancode.F18": "OpenTK.Core.Platform.Scancode.yml", - "OpenTK.Core.Platform.Scancode.F19": "OpenTK.Core.Platform.Scancode.yml", - "OpenTK.Core.Platform.Scancode.F2": "OpenTK.Core.Platform.Scancode.yml", - "OpenTK.Core.Platform.Scancode.F20": "OpenTK.Core.Platform.Scancode.yml", - "OpenTK.Core.Platform.Scancode.F21": "OpenTK.Core.Platform.Scancode.yml", - "OpenTK.Core.Platform.Scancode.F22": "OpenTK.Core.Platform.Scancode.yml", - "OpenTK.Core.Platform.Scancode.F23": "OpenTK.Core.Platform.Scancode.yml", - "OpenTK.Core.Platform.Scancode.F24": "OpenTK.Core.Platform.Scancode.yml", - "OpenTK.Core.Platform.Scancode.F3": "OpenTK.Core.Platform.Scancode.yml", - "OpenTK.Core.Platform.Scancode.F4": "OpenTK.Core.Platform.Scancode.yml", - "OpenTK.Core.Platform.Scancode.F5": "OpenTK.Core.Platform.Scancode.yml", - "OpenTK.Core.Platform.Scancode.F6": "OpenTK.Core.Platform.Scancode.yml", - "OpenTK.Core.Platform.Scancode.F7": "OpenTK.Core.Platform.Scancode.yml", - "OpenTK.Core.Platform.Scancode.F8": "OpenTK.Core.Platform.Scancode.yml", - "OpenTK.Core.Platform.Scancode.F9": "OpenTK.Core.Platform.Scancode.yml", - "OpenTK.Core.Platform.Scancode.G": "OpenTK.Core.Platform.Scancode.yml", - "OpenTK.Core.Platform.Scancode.GraveAccent": "OpenTK.Core.Platform.Scancode.yml", - "OpenTK.Core.Platform.Scancode.H": "OpenTK.Core.Platform.Scancode.yml", - "OpenTK.Core.Platform.Scancode.Home": "OpenTK.Core.Platform.Scancode.yml", - "OpenTK.Core.Platform.Scancode.I": "OpenTK.Core.Platform.Scancode.yml", - "OpenTK.Core.Platform.Scancode.Insert": "OpenTK.Core.Platform.Scancode.yml", - "OpenTK.Core.Platform.Scancode.International1": "OpenTK.Core.Platform.Scancode.yml", - "OpenTK.Core.Platform.Scancode.International2": "OpenTK.Core.Platform.Scancode.yml", - "OpenTK.Core.Platform.Scancode.International3": "OpenTK.Core.Platform.Scancode.yml", - "OpenTK.Core.Platform.Scancode.International4": "OpenTK.Core.Platform.Scancode.yml", - "OpenTK.Core.Platform.Scancode.International5": "OpenTK.Core.Platform.Scancode.yml", - "OpenTK.Core.Platform.Scancode.International6": "OpenTK.Core.Platform.Scancode.yml", - "OpenTK.Core.Platform.Scancode.J": "OpenTK.Core.Platform.Scancode.yml", - "OpenTK.Core.Platform.Scancode.K": "OpenTK.Core.Platform.Scancode.yml", - "OpenTK.Core.Platform.Scancode.Keypad0": "OpenTK.Core.Platform.Scancode.yml", - "OpenTK.Core.Platform.Scancode.Keypad1": "OpenTK.Core.Platform.Scancode.yml", - "OpenTK.Core.Platform.Scancode.Keypad2": "OpenTK.Core.Platform.Scancode.yml", - "OpenTK.Core.Platform.Scancode.Keypad3": "OpenTK.Core.Platform.Scancode.yml", - "OpenTK.Core.Platform.Scancode.Keypad4": "OpenTK.Core.Platform.Scancode.yml", - "OpenTK.Core.Platform.Scancode.Keypad5": "OpenTK.Core.Platform.Scancode.yml", - "OpenTK.Core.Platform.Scancode.Keypad6": "OpenTK.Core.Platform.Scancode.yml", - "OpenTK.Core.Platform.Scancode.Keypad7": "OpenTK.Core.Platform.Scancode.yml", - "OpenTK.Core.Platform.Scancode.Keypad8": "OpenTK.Core.Platform.Scancode.yml", - "OpenTK.Core.Platform.Scancode.Keypad9": "OpenTK.Core.Platform.Scancode.yml", - "OpenTK.Core.Platform.Scancode.KeypadComma": "OpenTK.Core.Platform.Scancode.yml", - "OpenTK.Core.Platform.Scancode.KeypadDash": "OpenTK.Core.Platform.Scancode.yml", - "OpenTK.Core.Platform.Scancode.KeypadEnter": "OpenTK.Core.Platform.Scancode.yml", - "OpenTK.Core.Platform.Scancode.KeypadEquals": "OpenTK.Core.Platform.Scancode.yml", - "OpenTK.Core.Platform.Scancode.KeypadForwardSlash": "OpenTK.Core.Platform.Scancode.yml", - "OpenTK.Core.Platform.Scancode.KeypadPeriod": "OpenTK.Core.Platform.Scancode.yml", - "OpenTK.Core.Platform.Scancode.KeypadPlus": "OpenTK.Core.Platform.Scancode.yml", - "OpenTK.Core.Platform.Scancode.KeypadStar": "OpenTK.Core.Platform.Scancode.yml", - "OpenTK.Core.Platform.Scancode.L": "OpenTK.Core.Platform.Scancode.yml", - "OpenTK.Core.Platform.Scancode.LANG1": "OpenTK.Core.Platform.Scancode.yml", - "OpenTK.Core.Platform.Scancode.LANG2": "OpenTK.Core.Platform.Scancode.yml", - "OpenTK.Core.Platform.Scancode.LANG3": "OpenTK.Core.Platform.Scancode.yml", - "OpenTK.Core.Platform.Scancode.LANG4": "OpenTK.Core.Platform.Scancode.yml", - "OpenTK.Core.Platform.Scancode.LANG5": "OpenTK.Core.Platform.Scancode.yml", - "OpenTK.Core.Platform.Scancode.LeftAlt": "OpenTK.Core.Platform.Scancode.yml", - "OpenTK.Core.Platform.Scancode.LeftApostrophe": "OpenTK.Core.Platform.Scancode.yml", - "OpenTK.Core.Platform.Scancode.LeftArrow": "OpenTK.Core.Platform.Scancode.yml", - "OpenTK.Core.Platform.Scancode.LeftBrace": "OpenTK.Core.Platform.Scancode.yml", - "OpenTK.Core.Platform.Scancode.LeftControl": "OpenTK.Core.Platform.Scancode.yml", - "OpenTK.Core.Platform.Scancode.LeftGUI": "OpenTK.Core.Platform.Scancode.yml", - "OpenTK.Core.Platform.Scancode.LeftShift": "OpenTK.Core.Platform.Scancode.yml", - "OpenTK.Core.Platform.Scancode.M": "OpenTK.Core.Platform.Scancode.yml", - "OpenTK.Core.Platform.Scancode.Mute": "OpenTK.Core.Platform.Scancode.yml", - "OpenTK.Core.Platform.Scancode.N": "OpenTK.Core.Platform.Scancode.yml", - "OpenTK.Core.Platform.Scancode.NonUSSlashBar": "OpenTK.Core.Platform.Scancode.yml", - "OpenTK.Core.Platform.Scancode.NumLock": "OpenTK.Core.Platform.Scancode.yml", - "OpenTK.Core.Platform.Scancode.O": "OpenTK.Core.Platform.Scancode.yml", - "OpenTK.Core.Platform.Scancode.P": "OpenTK.Core.Platform.Scancode.yml", - "OpenTK.Core.Platform.Scancode.PageDown": "OpenTK.Core.Platform.Scancode.yml", - "OpenTK.Core.Platform.Scancode.PageUp": "OpenTK.Core.Platform.Scancode.yml", - "OpenTK.Core.Platform.Scancode.Pause": "OpenTK.Core.Platform.Scancode.yml", - "OpenTK.Core.Platform.Scancode.Period": "OpenTK.Core.Platform.Scancode.yml", - "OpenTK.Core.Platform.Scancode.Pipe": "OpenTK.Core.Platform.Scancode.yml", - "OpenTK.Core.Platform.Scancode.PlayPause": "OpenTK.Core.Platform.Scancode.yml", - "OpenTK.Core.Platform.Scancode.PrintScreen": "OpenTK.Core.Platform.Scancode.yml", - "OpenTK.Core.Platform.Scancode.Q": "OpenTK.Core.Platform.Scancode.yml", - "OpenTK.Core.Platform.Scancode.QuestionMark": "OpenTK.Core.Platform.Scancode.yml", - "OpenTK.Core.Platform.Scancode.R": "OpenTK.Core.Platform.Scancode.yml", - "OpenTK.Core.Platform.Scancode.Return": "OpenTK.Core.Platform.Scancode.yml", - "OpenTK.Core.Platform.Scancode.RightAlt": "OpenTK.Core.Platform.Scancode.yml", - "OpenTK.Core.Platform.Scancode.RightArrow": "OpenTK.Core.Platform.Scancode.yml", - "OpenTK.Core.Platform.Scancode.RightBrace": "OpenTK.Core.Platform.Scancode.yml", - "OpenTK.Core.Platform.Scancode.RightControl": "OpenTK.Core.Platform.Scancode.yml", - "OpenTK.Core.Platform.Scancode.RightGUI": "OpenTK.Core.Platform.Scancode.yml", - "OpenTK.Core.Platform.Scancode.RightShift": "OpenTK.Core.Platform.Scancode.yml", - "OpenTK.Core.Platform.Scancode.S": "OpenTK.Core.Platform.Scancode.yml", - "OpenTK.Core.Platform.Scancode.ScanNextTrack": "OpenTK.Core.Platform.Scancode.yml", - "OpenTK.Core.Platform.Scancode.ScanPreviousTrack": "OpenTK.Core.Platform.Scancode.yml", - "OpenTK.Core.Platform.Scancode.ScrollLock": "OpenTK.Core.Platform.Scancode.yml", - "OpenTK.Core.Platform.Scancode.SemiColon": "OpenTK.Core.Platform.Scancode.yml", - "OpenTK.Core.Platform.Scancode.Spacebar": "OpenTK.Core.Platform.Scancode.yml", - "OpenTK.Core.Platform.Scancode.Stop": "OpenTK.Core.Platform.Scancode.yml", - "OpenTK.Core.Platform.Scancode.SystemPowerDown": "OpenTK.Core.Platform.Scancode.yml", - "OpenTK.Core.Platform.Scancode.SystemSleep": "OpenTK.Core.Platform.Scancode.yml", - "OpenTK.Core.Platform.Scancode.SystemWakeUp": "OpenTK.Core.Platform.Scancode.yml", - "OpenTK.Core.Platform.Scancode.T": "OpenTK.Core.Platform.Scancode.yml", - "OpenTK.Core.Platform.Scancode.Tab": "OpenTK.Core.Platform.Scancode.yml", - "OpenTK.Core.Platform.Scancode.U": "OpenTK.Core.Platform.Scancode.yml", - "OpenTK.Core.Platform.Scancode.Unknown": "OpenTK.Core.Platform.Scancode.yml", - "OpenTK.Core.Platform.Scancode.UpArrow": "OpenTK.Core.Platform.Scancode.yml", - "OpenTK.Core.Platform.Scancode.V": "OpenTK.Core.Platform.Scancode.yml", - "OpenTK.Core.Platform.Scancode.VolumeDecrement": "OpenTK.Core.Platform.Scancode.yml", - "OpenTK.Core.Platform.Scancode.VolumeIncrement": "OpenTK.Core.Platform.Scancode.yml", - "OpenTK.Core.Platform.Scancode.W": "OpenTK.Core.Platform.Scancode.yml", - "OpenTK.Core.Platform.Scancode.X": "OpenTK.Core.Platform.Scancode.yml", - "OpenTK.Core.Platform.Scancode.Y": "OpenTK.Core.Platform.Scancode.yml", - "OpenTK.Core.Platform.Scancode.Z": "OpenTK.Core.Platform.Scancode.yml", - "OpenTK.Core.Platform.ScrollEventArgs": "OpenTK.Core.Platform.ScrollEventArgs.yml", - "OpenTK.Core.Platform.ScrollEventArgs.#ctor(OpenTK.Core.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2)": "OpenTK.Core.Platform.ScrollEventArgs.yml", - "OpenTK.Core.Platform.ScrollEventArgs.Delta": "OpenTK.Core.Platform.ScrollEventArgs.yml", - "OpenTK.Core.Platform.ScrollEventArgs.Distance": "OpenTK.Core.Platform.ScrollEventArgs.yml", - "OpenTK.Core.Platform.SurfaceHandle": "OpenTK.Core.Platform.SurfaceHandle.yml", - "OpenTK.Core.Platform.SurfaceType": "OpenTK.Core.Platform.SurfaceType.yml", - "OpenTK.Core.Platform.SurfaceType.Control": "OpenTK.Core.Platform.SurfaceType.yml", - "OpenTK.Core.Platform.SurfaceType.Display": "OpenTK.Core.Platform.SurfaceType.yml", - "OpenTK.Core.Platform.SystemCursorType": "OpenTK.Core.Platform.SystemCursorType.yml", - "OpenTK.Core.Platform.SystemCursorType.ArrowE": "OpenTK.Core.Platform.SystemCursorType.yml", - "OpenTK.Core.Platform.SystemCursorType.ArrowEW": "OpenTK.Core.Platform.SystemCursorType.yml", - "OpenTK.Core.Platform.SystemCursorType.ArrowFourway": "OpenTK.Core.Platform.SystemCursorType.yml", - "OpenTK.Core.Platform.SystemCursorType.ArrowN": "OpenTK.Core.Platform.SystemCursorType.yml", - "OpenTK.Core.Platform.SystemCursorType.ArrowNE": "OpenTK.Core.Platform.SystemCursorType.yml", - "OpenTK.Core.Platform.SystemCursorType.ArrowNESW": "OpenTK.Core.Platform.SystemCursorType.yml", - "OpenTK.Core.Platform.SystemCursorType.ArrowNS": "OpenTK.Core.Platform.SystemCursorType.yml", - "OpenTK.Core.Platform.SystemCursorType.ArrowNW": "OpenTK.Core.Platform.SystemCursorType.yml", - "OpenTK.Core.Platform.SystemCursorType.ArrowNWSE": "OpenTK.Core.Platform.SystemCursorType.yml", - "OpenTK.Core.Platform.SystemCursorType.ArrowS": "OpenTK.Core.Platform.SystemCursorType.yml", - "OpenTK.Core.Platform.SystemCursorType.ArrowSE": "OpenTK.Core.Platform.SystemCursorType.yml", - "OpenTK.Core.Platform.SystemCursorType.ArrowSW": "OpenTK.Core.Platform.SystemCursorType.yml", - "OpenTK.Core.Platform.SystemCursorType.ArrowUp": "OpenTK.Core.Platform.SystemCursorType.yml", - "OpenTK.Core.Platform.SystemCursorType.ArrowW": "OpenTK.Core.Platform.SystemCursorType.yml", - "OpenTK.Core.Platform.SystemCursorType.Cross": "OpenTK.Core.Platform.SystemCursorType.yml", - "OpenTK.Core.Platform.SystemCursorType.Default": "OpenTK.Core.Platform.SystemCursorType.yml", - "OpenTK.Core.Platform.SystemCursorType.Forbidden": "OpenTK.Core.Platform.SystemCursorType.yml", - "OpenTK.Core.Platform.SystemCursorType.Hand": "OpenTK.Core.Platform.SystemCursorType.yml", - "OpenTK.Core.Platform.SystemCursorType.Help": "OpenTK.Core.Platform.SystemCursorType.yml", - "OpenTK.Core.Platform.SystemCursorType.Loading": "OpenTK.Core.Platform.SystemCursorType.yml", - "OpenTK.Core.Platform.SystemCursorType.TextBeam": "OpenTK.Core.Platform.SystemCursorType.yml", - "OpenTK.Core.Platform.SystemCursorType.Wait": "OpenTK.Core.Platform.SystemCursorType.yml", - "OpenTK.Core.Platform.SystemIconType": "OpenTK.Core.Platform.SystemIconType.yml", - "OpenTK.Core.Platform.SystemIconType.Default": "OpenTK.Core.Platform.SystemIconType.yml", - "OpenTK.Core.Platform.SystemIconType.Error": "OpenTK.Core.Platform.SystemIconType.yml", - "OpenTK.Core.Platform.SystemIconType.Information": "OpenTK.Core.Platform.SystemIconType.yml", - "OpenTK.Core.Platform.SystemIconType.OperatingSystem": "OpenTK.Core.Platform.SystemIconType.yml", - "OpenTK.Core.Platform.SystemIconType.Question": "OpenTK.Core.Platform.SystemIconType.yml", - "OpenTK.Core.Platform.SystemIconType.Shield": "OpenTK.Core.Platform.SystemIconType.yml", - "OpenTK.Core.Platform.SystemIconType.Warning": "OpenTK.Core.Platform.SystemIconType.yml", - "OpenTK.Core.Platform.SystemMemoryInfo": "OpenTK.Core.Platform.SystemMemoryInfo.yml", - "OpenTK.Core.Platform.SystemMemoryInfo.AvailablePhysicalMemory": "OpenTK.Core.Platform.SystemMemoryInfo.yml", - "OpenTK.Core.Platform.SystemMemoryInfo.TotalPhysicalMemory": "OpenTK.Core.Platform.SystemMemoryInfo.yml", - "OpenTK.Core.Platform.TextEditingEventArgs": "OpenTK.Core.Platform.TextEditingEventArgs.yml", - "OpenTK.Core.Platform.TextEditingEventArgs.#ctor(OpenTK.Core.Platform.WindowHandle,System.String,System.Int32,System.Int32)": "OpenTK.Core.Platform.TextEditingEventArgs.yml", - "OpenTK.Core.Platform.TextEditingEventArgs.Candidate": "OpenTK.Core.Platform.TextEditingEventArgs.yml", - "OpenTK.Core.Platform.TextEditingEventArgs.Cursor": "OpenTK.Core.Platform.TextEditingEventArgs.yml", - "OpenTK.Core.Platform.TextEditingEventArgs.Length": "OpenTK.Core.Platform.TextEditingEventArgs.yml", - "OpenTK.Core.Platform.TextInputEventArgs": "OpenTK.Core.Platform.TextInputEventArgs.yml", - "OpenTK.Core.Platform.TextInputEventArgs.#ctor(OpenTK.Core.Platform.WindowHandle,System.String)": "OpenTK.Core.Platform.TextInputEventArgs.yml", - "OpenTK.Core.Platform.TextInputEventArgs.Text": "OpenTK.Core.Platform.TextInputEventArgs.yml", - "OpenTK.Core.Platform.ThemeChangeEventArgs": "OpenTK.Core.Platform.ThemeChangeEventArgs.yml", - "OpenTK.Core.Platform.ThemeChangeEventArgs.#ctor(OpenTK.Core.Platform.ThemeInfo)": "OpenTK.Core.Platform.ThemeChangeEventArgs.yml", - "OpenTK.Core.Platform.ThemeChangeEventArgs.NewTheme": "OpenTK.Core.Platform.ThemeChangeEventArgs.yml", - "OpenTK.Core.Platform.ThemeInfo": "OpenTK.Core.Platform.ThemeInfo.yml", - "OpenTK.Core.Platform.ThemeInfo.Equals(OpenTK.Core.Platform.ThemeInfo)": "OpenTK.Core.Platform.ThemeInfo.yml", - "OpenTK.Core.Platform.ThemeInfo.Equals(System.Object)": "OpenTK.Core.Platform.ThemeInfo.yml", - "OpenTK.Core.Platform.ThemeInfo.GetHashCode": "OpenTK.Core.Platform.ThemeInfo.yml", - "OpenTK.Core.Platform.ThemeInfo.HighContrast": "OpenTK.Core.Platform.ThemeInfo.yml", - "OpenTK.Core.Platform.ThemeInfo.Theme": "OpenTK.Core.Platform.ThemeInfo.yml", - "OpenTK.Core.Platform.ThemeInfo.ToString": "OpenTK.Core.Platform.ThemeInfo.yml", - "OpenTK.Core.Platform.ThemeInfo.op_Equality(OpenTK.Core.Platform.ThemeInfo,OpenTK.Core.Platform.ThemeInfo)": "OpenTK.Core.Platform.ThemeInfo.yml", - "OpenTK.Core.Platform.ThemeInfo.op_Inequality(OpenTK.Core.Platform.ThemeInfo,OpenTK.Core.Platform.ThemeInfo)": "OpenTK.Core.Platform.ThemeInfo.yml", - "OpenTK.Core.Platform.ToolkitOptions": "OpenTK.Core.Platform.ToolkitOptions.yml", - "OpenTK.Core.Platform.ToolkitOptions.ApplicationName": "OpenTK.Core.Platform.ToolkitOptions.yml", - "OpenTK.Core.Platform.ToolkitOptions.Logger": "OpenTK.Core.Platform.ToolkitOptions.yml", - "OpenTK.Core.Platform.VideoMode": "OpenTK.Core.Platform.VideoMode.yml", - "OpenTK.Core.Platform.VideoMode.#ctor(System.Int32,System.Int32,System.Single,System.Int32)": "OpenTK.Core.Platform.VideoMode.yml", - "OpenTK.Core.Platform.VideoMode.BitsPerPixel": "OpenTK.Core.Platform.VideoMode.yml", - "OpenTK.Core.Platform.VideoMode.Height": "OpenTK.Core.Platform.VideoMode.yml", - "OpenTK.Core.Platform.VideoMode.RefreshRate": "OpenTK.Core.Platform.VideoMode.yml", - "OpenTK.Core.Platform.VideoMode.ToString": "OpenTK.Core.Platform.VideoMode.yml", - "OpenTK.Core.Platform.VideoMode.Width": "OpenTK.Core.Platform.VideoMode.yml", - "OpenTK.Core.Platform.WindowBorderStyle": "OpenTK.Core.Platform.WindowBorderStyle.yml", - "OpenTK.Core.Platform.WindowBorderStyle.Borderless": "OpenTK.Core.Platform.WindowBorderStyle.yml", - "OpenTK.Core.Platform.WindowBorderStyle.FixedBorder": "OpenTK.Core.Platform.WindowBorderStyle.yml", - "OpenTK.Core.Platform.WindowBorderStyle.ResizableBorder": "OpenTK.Core.Platform.WindowBorderStyle.yml", - "OpenTK.Core.Platform.WindowBorderStyle.ToolBox": "OpenTK.Core.Platform.WindowBorderStyle.yml", - "OpenTK.Core.Platform.WindowEventArgs": "OpenTK.Core.Platform.WindowEventArgs.yml", - "OpenTK.Core.Platform.WindowEventArgs.#ctor(OpenTK.Core.Platform.WindowHandle)": "OpenTK.Core.Platform.WindowEventArgs.yml", - "OpenTK.Core.Platform.WindowEventArgs.Window": "OpenTK.Core.Platform.WindowEventArgs.yml", - "OpenTK.Core.Platform.WindowEventHandler": "OpenTK.Core.Platform.WindowEventHandler.yml", - "OpenTK.Core.Platform.WindowFramebufferResizeEventArgs": "OpenTK.Core.Platform.WindowFramebufferResizeEventArgs.yml", - "OpenTK.Core.Platform.WindowFramebufferResizeEventArgs.#ctor(OpenTK.Core.Platform.WindowHandle,OpenTK.Mathematics.Vector2i)": "OpenTK.Core.Platform.WindowFramebufferResizeEventArgs.yml", - "OpenTK.Core.Platform.WindowFramebufferResizeEventArgs.NewFramebufferSize": "OpenTK.Core.Platform.WindowFramebufferResizeEventArgs.yml", - "OpenTK.Core.Platform.WindowHandle": "OpenTK.Core.Platform.WindowHandle.yml", - "OpenTK.Core.Platform.WindowHandle.#ctor(OpenTK.Core.Platform.GraphicsApiHints)": "OpenTK.Core.Platform.WindowHandle.yml", - "OpenTK.Core.Platform.WindowHandle.GraphicsApiHints": "OpenTK.Core.Platform.WindowHandle.yml", - "OpenTK.Core.Platform.WindowMode": "OpenTK.Core.Platform.WindowMode.yml", - "OpenTK.Core.Platform.WindowMode.ExclusiveFullscreen": "OpenTK.Core.Platform.WindowMode.yml", - "OpenTK.Core.Platform.WindowMode.Hidden": "OpenTK.Core.Platform.WindowMode.yml", - "OpenTK.Core.Platform.WindowMode.Maximized": "OpenTK.Core.Platform.WindowMode.yml", - "OpenTK.Core.Platform.WindowMode.Minimized": "OpenTK.Core.Platform.WindowMode.yml", - "OpenTK.Core.Platform.WindowMode.Normal": "OpenTK.Core.Platform.WindowMode.yml", - "OpenTK.Core.Platform.WindowMode.WindowedFullscreen": "OpenTK.Core.Platform.WindowMode.yml", - "OpenTK.Core.Platform.WindowModeChangeEventArgs": "OpenTK.Core.Platform.WindowModeChangeEventArgs.yml", - "OpenTK.Core.Platform.WindowModeChangeEventArgs.#ctor(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.WindowMode)": "OpenTK.Core.Platform.WindowModeChangeEventArgs.yml", - "OpenTK.Core.Platform.WindowModeChangeEventArgs.NewMode": "OpenTK.Core.Platform.WindowModeChangeEventArgs.yml", - "OpenTK.Core.Platform.WindowMoveEventArgs": "OpenTK.Core.Platform.WindowMoveEventArgs.yml", - "OpenTK.Core.Platform.WindowMoveEventArgs.#ctor(OpenTK.Core.Platform.WindowHandle,OpenTK.Mathematics.Vector2i,OpenTK.Mathematics.Vector2i)": "OpenTK.Core.Platform.WindowMoveEventArgs.yml", - "OpenTK.Core.Platform.WindowMoveEventArgs.ClientAreaPosition": "OpenTK.Core.Platform.WindowMoveEventArgs.yml", - "OpenTK.Core.Platform.WindowMoveEventArgs.WindowPosition": "OpenTK.Core.Platform.WindowMoveEventArgs.yml", - "OpenTK.Core.Platform.WindowResizeEventArgs": "OpenTK.Core.Platform.WindowResizeEventArgs.yml", - "OpenTK.Core.Platform.WindowResizeEventArgs.#ctor(OpenTK.Core.Platform.WindowHandle,OpenTK.Mathematics.Vector2i,OpenTK.Mathematics.Vector2i)": "OpenTK.Core.Platform.WindowResizeEventArgs.yml", - "OpenTK.Core.Platform.WindowResizeEventArgs.NewClientSize": "OpenTK.Core.Platform.WindowResizeEventArgs.yml", - "OpenTK.Core.Platform.WindowResizeEventArgs.NewSize": "OpenTK.Core.Platform.WindowResizeEventArgs.yml", - "OpenTK.Core.Platform.WindowScaleChangeEventArgs": "OpenTK.Core.Platform.WindowScaleChangeEventArgs.yml", - "OpenTK.Core.Platform.WindowScaleChangeEventArgs.#ctor(OpenTK.Core.Platform.WindowHandle,System.Single,System.Single)": "OpenTK.Core.Platform.WindowScaleChangeEventArgs.yml", - "OpenTK.Core.Platform.WindowScaleChangeEventArgs.ScaleX": "OpenTK.Core.Platform.WindowScaleChangeEventArgs.yml", - "OpenTK.Core.Platform.WindowScaleChangeEventArgs.ScaleY": "OpenTK.Core.Platform.WindowScaleChangeEventArgs.yml", "OpenTK.Core.Utility": "OpenTK.Core.Utility.yml", "OpenTK.Core.Utility.ConsoleLogger": "OpenTK.Core.Utility.ConsoleLogger.yml", "OpenTK.Core.Utility.ConsoleLogger.Filter": "OpenTK.Core.Utility.ConsoleLogger.yml", @@ -3350,34 +2453,54 @@ "OpenTK.Graphics.Glx.Glx.AMD.CreateAssociatedContextAMD(System.UInt32,OpenTK.Graphics.Glx.GLXContext)": "OpenTK.Graphics.Glx.Glx.AMD.yml", "OpenTK.Graphics.Glx.Glx.AMD.CreateAssociatedContextAttribsAMD(System.UInt32,OpenTK.Graphics.Glx.GLXContext,System.Int32*)": "OpenTK.Graphics.Glx.Glx.AMD.yml", "OpenTK.Graphics.Glx.Glx.AMD.CreateAssociatedContextAttribsAMD(System.UInt32,OpenTK.Graphics.Glx.GLXContext,System.Int32@)": "OpenTK.Graphics.Glx.Glx.AMD.yml", + "OpenTK.Graphics.Glx.Glx.AMD.CreateAssociatedContextAttribsAMD(System.UInt32,OpenTK.Graphics.Glx.GLXContext,System.Int32[])": "OpenTK.Graphics.Glx.Glx.AMD.yml", + "OpenTK.Graphics.Glx.Glx.AMD.CreateAssociatedContextAttribsAMD(System.UInt32,OpenTK.Graphics.Glx.GLXContext,System.ReadOnlySpan{System.Int32})": "OpenTK.Graphics.Glx.Glx.AMD.yml", "OpenTK.Graphics.Glx.Glx.AMD.DeleteAssociatedContextAMD(OpenTK.Graphics.Glx.GLXContext)": "OpenTK.Graphics.Glx.Glx.AMD.yml", "OpenTK.Graphics.Glx.Glx.AMD.GetContextGPUIDAMD(OpenTK.Graphics.Glx.GLXContext)": "OpenTK.Graphics.Glx.Glx.AMD.yml", "OpenTK.Graphics.Glx.Glx.AMD.GetCurrentAssociatedContextAMD": "OpenTK.Graphics.Glx.Glx.AMD.yml", + "OpenTK.Graphics.Glx.Glx.AMD.GetGPUIDsAMD(System.UInt32,System.Span{System.UInt32})": "OpenTK.Graphics.Glx.Glx.AMD.yml", "OpenTK.Graphics.Glx.Glx.AMD.GetGPUIDsAMD(System.UInt32,System.UInt32*)": "OpenTK.Graphics.Glx.Glx.AMD.yml", "OpenTK.Graphics.Glx.Glx.AMD.GetGPUIDsAMD(System.UInt32,System.UInt32@)": "OpenTK.Graphics.Glx.Glx.AMD.yml", + "OpenTK.Graphics.Glx.Glx.AMD.GetGPUIDsAMD(System.UInt32,System.UInt32[])": "OpenTK.Graphics.Glx.Glx.AMD.yml", "OpenTK.Graphics.Glx.Glx.AMD.GetGPUInfoAMD(System.UInt32,System.Int32,OpenTK.Graphics.Glx.All,System.UInt32,System.IntPtr)": "OpenTK.Graphics.Glx.Glx.AMD.yml", "OpenTK.Graphics.Glx.Glx.AMD.GetGPUInfoAMD(System.UInt32,System.Int32,OpenTK.Graphics.Glx.All,System.UInt32,System.Void*)": "OpenTK.Graphics.Glx.Glx.AMD.yml", + "OpenTK.Graphics.Glx.Glx.AMD.GetGPUInfoAMD``1(System.UInt32,System.Int32,OpenTK.Graphics.Glx.All,System.UInt32,System.Span{``0})": "OpenTK.Graphics.Glx.Glx.AMD.yml", "OpenTK.Graphics.Glx.Glx.AMD.GetGPUInfoAMD``1(System.UInt32,System.Int32,OpenTK.Graphics.Glx.All,System.UInt32,``0@)": "OpenTK.Graphics.Glx.Glx.AMD.yml", + "OpenTK.Graphics.Glx.Glx.AMD.GetGPUInfoAMD``1(System.UInt32,System.Int32,OpenTK.Graphics.Glx.All,System.UInt32,``0[])": "OpenTK.Graphics.Glx.Glx.AMD.yml", "OpenTK.Graphics.Glx.Glx.AMD.MakeAssociatedContextCurrentAMD(OpenTK.Graphics.Glx.GLXContext)": "OpenTK.Graphics.Glx.Glx.AMD.yml", "OpenTK.Graphics.Glx.Glx.ARB": "OpenTK.Graphics.Glx.Glx.ARB.yml", "OpenTK.Graphics.Glx.Glx.ARB.CreateContextAttribsARB(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.GLXContext,System.Boolean,System.Int32*)": "OpenTK.Graphics.Glx.Glx.ARB.yml", "OpenTK.Graphics.Glx.Glx.ARB.CreateContextAttribsARB(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.GLXContext,System.Boolean,System.Int32@)": "OpenTK.Graphics.Glx.Glx.ARB.yml", + "OpenTK.Graphics.Glx.Glx.ARB.CreateContextAttribsARB(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.GLXContext,System.Boolean,System.Int32[])": "OpenTK.Graphics.Glx.Glx.ARB.yml", + "OpenTK.Graphics.Glx.Glx.ARB.CreateContextAttribsARB(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.GLXContext,System.Boolean,System.ReadOnlySpan{System.Int32})": "OpenTK.Graphics.Glx.Glx.ARB.yml", "OpenTK.Graphics.Glx.Glx.ARB.GetProcAddressARB(System.Byte*)": "OpenTK.Graphics.Glx.Glx.ARB.yml", "OpenTK.Graphics.Glx.Glx.ARB.GetProcAddressARB(System.Byte@)": "OpenTK.Graphics.Glx.Glx.ARB.yml", + "OpenTK.Graphics.Glx.Glx.ARB.GetProcAddressARB(System.Byte[])": "OpenTK.Graphics.Glx.Glx.ARB.yml", + "OpenTK.Graphics.Glx.Glx.ARB.GetProcAddressARB(System.ReadOnlySpan{System.Byte})": "OpenTK.Graphics.Glx.Glx.ARB.yml", "OpenTK.Graphics.Glx.Glx.ChooseFBConfig(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32*,System.Int32*)": "OpenTK.Graphics.Glx.Glx.yml", "OpenTK.Graphics.Glx.Glx.ChooseFBConfig(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32@,System.Int32@)": "OpenTK.Graphics.Glx.Glx.yml", + "OpenTK.Graphics.Glx.Glx.ChooseFBConfig(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32[],System.Int32[])": "OpenTK.Graphics.Glx.Glx.yml", + "OpenTK.Graphics.Glx.Glx.ChooseFBConfig(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.ReadOnlySpan{System.Int32},System.Span{System.Int32})": "OpenTK.Graphics.Glx.Glx.yml", "OpenTK.Graphics.Glx.Glx.ChooseVisual(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32*)": "OpenTK.Graphics.Glx.Glx.yml", "OpenTK.Graphics.Glx.Glx.ChooseVisual(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32@)": "OpenTK.Graphics.Glx.Glx.yml", + "OpenTK.Graphics.Glx.Glx.ChooseVisual(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32[])": "OpenTK.Graphics.Glx.Glx.yml", + "OpenTK.Graphics.Glx.Glx.ChooseVisual(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Span{System.Int32})": "OpenTK.Graphics.Glx.Glx.yml", "OpenTK.Graphics.Glx.Glx.CopyContext(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext,OpenTK.Graphics.Glx.GLXContext,System.UInt64)": "OpenTK.Graphics.Glx.Glx.yml", "OpenTK.Graphics.Glx.Glx.CreateContext(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.XVisualInfoPtr,OpenTK.Graphics.Glx.GLXContext,System.Boolean)": "OpenTK.Graphics.Glx.Glx.yml", "OpenTK.Graphics.Glx.Glx.CreateGLXPixmap(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.XVisualInfoPtr,OpenTK.Graphics.Glx.Pixmap)": "OpenTK.Graphics.Glx.Glx.yml", "OpenTK.Graphics.Glx.Glx.CreateNewContext(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,System.Int32,OpenTK.Graphics.Glx.GLXContext,System.Boolean)": "OpenTK.Graphics.Glx.Glx.yml", "OpenTK.Graphics.Glx.Glx.CreatePbuffer(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,System.Int32*)": "OpenTK.Graphics.Glx.Glx.yml", "OpenTK.Graphics.Glx.Glx.CreatePbuffer(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,System.Int32@)": "OpenTK.Graphics.Glx.Glx.yml", + "OpenTK.Graphics.Glx.Glx.CreatePbuffer(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,System.Int32[])": "OpenTK.Graphics.Glx.Glx.yml", + "OpenTK.Graphics.Glx.Glx.CreatePbuffer(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,System.ReadOnlySpan{System.Int32})": "OpenTK.Graphics.Glx.Glx.yml", "OpenTK.Graphics.Glx.Glx.CreatePixmap(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.Pixmap,System.Int32*)": "OpenTK.Graphics.Glx.Glx.yml", "OpenTK.Graphics.Glx.Glx.CreatePixmap(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.Pixmap,System.Int32@)": "OpenTK.Graphics.Glx.Glx.yml", + "OpenTK.Graphics.Glx.Glx.CreatePixmap(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.Pixmap,System.Int32[])": "OpenTK.Graphics.Glx.Glx.yml", + "OpenTK.Graphics.Glx.Glx.CreatePixmap(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.Pixmap,System.ReadOnlySpan{System.Int32})": "OpenTK.Graphics.Glx.Glx.yml", "OpenTK.Graphics.Glx.Glx.CreateWindow(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.Window,System.Int32*)": "OpenTK.Graphics.Glx.Glx.yml", "OpenTK.Graphics.Glx.Glx.CreateWindow(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.Window,System.Int32@)": "OpenTK.Graphics.Glx.Glx.yml", + "OpenTK.Graphics.Glx.Glx.CreateWindow(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.Window,System.Int32[])": "OpenTK.Graphics.Glx.Glx.yml", + "OpenTK.Graphics.Glx.Glx.CreateWindow(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.Window,System.ReadOnlySpan{System.Int32})": "OpenTK.Graphics.Glx.Glx.yml", "OpenTK.Graphics.Glx.Glx.DestroyContext(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext)": "OpenTK.Graphics.Glx.Glx.yml", "OpenTK.Graphics.Glx.Glx.DestroyGLXPixmap(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXPixmap)": "OpenTK.Graphics.Glx.Glx.yml", "OpenTK.Graphics.Glx.Glx.DestroyPbuffer(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXPbuffer)": "OpenTK.Graphics.Glx.Glx.yml", @@ -3386,30 +2509,44 @@ "OpenTK.Graphics.Glx.Glx.EXT": "OpenTK.Graphics.Glx.Glx.EXT.yml", "OpenTK.Graphics.Glx.Glx.EXT.BindTexImageEXT(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32,System.Int32*)": "OpenTK.Graphics.Glx.Glx.EXT.yml", "OpenTK.Graphics.Glx.Glx.EXT.BindTexImageEXT(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32,System.Int32@)": "OpenTK.Graphics.Glx.Glx.EXT.yml", + "OpenTK.Graphics.Glx.Glx.EXT.BindTexImageEXT(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32,System.Int32[])": "OpenTK.Graphics.Glx.Glx.EXT.yml", + "OpenTK.Graphics.Glx.Glx.EXT.BindTexImageEXT(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32,System.ReadOnlySpan{System.Int32})": "OpenTK.Graphics.Glx.Glx.EXT.yml", "OpenTK.Graphics.Glx.Glx.EXT.FreeContextEXT(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext)": "OpenTK.Graphics.Glx.Glx.EXT.yml", "OpenTK.Graphics.Glx.Glx.EXT.GetContextIDEXT(OpenTK.Graphics.Glx.GLXContext)": "OpenTK.Graphics.Glx.Glx.EXT.yml", "OpenTK.Graphics.Glx.Glx.EXT.GetCurrentDisplayEXT": "OpenTK.Graphics.Glx.Glx.EXT.yml", "OpenTK.Graphics.Glx.Glx.EXT.ImportContextEXT(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContextID)": "OpenTK.Graphics.Glx.Glx.EXT.yml", "OpenTK.Graphics.Glx.Glx.EXT.QueryContextInfoEXT(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext,System.Int32,System.Int32*)": "OpenTK.Graphics.Glx.Glx.EXT.yml", "OpenTK.Graphics.Glx.Glx.EXT.QueryContextInfoEXT(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext,System.Int32,System.Int32@)": "OpenTK.Graphics.Glx.Glx.EXT.yml", + "OpenTK.Graphics.Glx.Glx.EXT.QueryContextInfoEXT(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext,System.Int32,System.Int32[])": "OpenTK.Graphics.Glx.Glx.EXT.yml", + "OpenTK.Graphics.Glx.Glx.EXT.QueryContextInfoEXT(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext,System.Int32,System.Span{System.Int32})": "OpenTK.Graphics.Glx.Glx.EXT.yml", "OpenTK.Graphics.Glx.Glx.EXT.ReleaseTexImageEXT(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32)": "OpenTK.Graphics.Glx.Glx.EXT.yml", "OpenTK.Graphics.Glx.Glx.EXT.SwapIntervalEXT(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32)": "OpenTK.Graphics.Glx.Glx.EXT.yml", "OpenTK.Graphics.Glx.Glx.GetClientString(OpenTK.Graphics.Glx.DisplayPtr,System.Int32)": "OpenTK.Graphics.Glx.Glx.yml", "OpenTK.Graphics.Glx.Glx.GetClientString_(OpenTK.Graphics.Glx.DisplayPtr,System.Int32)": "OpenTK.Graphics.Glx.Glx.yml", "OpenTK.Graphics.Glx.Glx.GetConfig(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.XVisualInfoPtr,System.Int32,System.Int32*)": "OpenTK.Graphics.Glx.Glx.yml", "OpenTK.Graphics.Glx.Glx.GetConfig(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.XVisualInfoPtr,System.Int32,System.Int32@)": "OpenTK.Graphics.Glx.Glx.yml", + "OpenTK.Graphics.Glx.Glx.GetConfig(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.XVisualInfoPtr,System.Int32,System.Int32[])": "OpenTK.Graphics.Glx.Glx.yml", + "OpenTK.Graphics.Glx.Glx.GetConfig(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.XVisualInfoPtr,System.Int32,System.Span{System.Int32})": "OpenTK.Graphics.Glx.Glx.yml", "OpenTK.Graphics.Glx.Glx.GetCurrentContext": "OpenTK.Graphics.Glx.Glx.yml", "OpenTK.Graphics.Glx.Glx.GetCurrentDisplay": "OpenTK.Graphics.Glx.Glx.yml", "OpenTK.Graphics.Glx.Glx.GetCurrentDrawable": "OpenTK.Graphics.Glx.Glx.yml", "OpenTK.Graphics.Glx.Glx.GetCurrentReadDrawable": "OpenTK.Graphics.Glx.Glx.yml", "OpenTK.Graphics.Glx.Glx.GetFBConfig(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32@)": "OpenTK.Graphics.Glx.Glx.yml", + "OpenTK.Graphics.Glx.Glx.GetFBConfig(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32[])": "OpenTK.Graphics.Glx.Glx.yml", + "OpenTK.Graphics.Glx.Glx.GetFBConfig(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Span{System.Int32})": "OpenTK.Graphics.Glx.Glx.yml", "OpenTK.Graphics.Glx.Glx.GetFBConfigAttrib(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,System.Int32,System.Int32*)": "OpenTK.Graphics.Glx.Glx.yml", "OpenTK.Graphics.Glx.Glx.GetFBConfigAttrib(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,System.Int32,System.Int32@)": "OpenTK.Graphics.Glx.Glx.yml", + "OpenTK.Graphics.Glx.Glx.GetFBConfigAttrib(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,System.Int32,System.Int32[])": "OpenTK.Graphics.Glx.Glx.yml", + "OpenTK.Graphics.Glx.Glx.GetFBConfigAttrib(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,System.Int32,System.Span{System.Int32})": "OpenTK.Graphics.Glx.Glx.yml", "OpenTK.Graphics.Glx.Glx.GetFBConfigs(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32*)": "OpenTK.Graphics.Glx.Glx.yml", "OpenTK.Graphics.Glx.Glx.GetProcAddress(System.Byte*)": "OpenTK.Graphics.Glx.Glx.yml", "OpenTK.Graphics.Glx.Glx.GetProcAddress(System.Byte@)": "OpenTK.Graphics.Glx.Glx.yml", + "OpenTK.Graphics.Glx.Glx.GetProcAddress(System.Byte[])": "OpenTK.Graphics.Glx.Glx.yml", + "OpenTK.Graphics.Glx.Glx.GetProcAddress(System.ReadOnlySpan{System.Byte})": "OpenTK.Graphics.Glx.Glx.yml", + "OpenTK.Graphics.Glx.Glx.GetSelectedEvent(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Span{System.UInt64})": "OpenTK.Graphics.Glx.Glx.yml", "OpenTK.Graphics.Glx.Glx.GetSelectedEvent(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.UInt64*)": "OpenTK.Graphics.Glx.Glx.yml", "OpenTK.Graphics.Glx.Glx.GetSelectedEvent(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.UInt64@)": "OpenTK.Graphics.Glx.Glx.yml", + "OpenTK.Graphics.Glx.Glx.GetSelectedEvent(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.UInt64[])": "OpenTK.Graphics.Glx.Glx.yml", "OpenTK.Graphics.Glx.Glx.GetVisualFromFBConfig(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig)": "OpenTK.Graphics.Glx.Glx.yml", "OpenTK.Graphics.Glx.Glx.IsDirect(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext)": "OpenTK.Graphics.Glx.Glx.yml", "OpenTK.Graphics.Glx.Glx.MESA": "OpenTK.Graphics.Glx.Glx.MESA.yml", @@ -3417,14 +2554,20 @@ "OpenTK.Graphics.Glx.Glx.MESA.CreateGLXPixmapMESA(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.XVisualInfoPtr,OpenTK.Graphics.Glx.Pixmap,OpenTK.Graphics.Glx.Colormap)": "OpenTK.Graphics.Glx.Glx.MESA.yml", "OpenTK.Graphics.Glx.Glx.MESA.GetAGPOffsetMESA(System.IntPtr)": "OpenTK.Graphics.Glx.Glx.MESA.yml", "OpenTK.Graphics.Glx.Glx.MESA.GetAGPOffsetMESA(System.Void*)": "OpenTK.Graphics.Glx.Glx.MESA.yml", + "OpenTK.Graphics.Glx.Glx.MESA.GetAGPOffsetMESA``1(System.ReadOnlySpan{``0})": "OpenTK.Graphics.Glx.Glx.MESA.yml", "OpenTK.Graphics.Glx.Glx.MESA.GetAGPOffsetMESA``1(``0@)": "OpenTK.Graphics.Glx.Glx.MESA.yml", + "OpenTK.Graphics.Glx.Glx.MESA.GetAGPOffsetMESA``1(``0[])": "OpenTK.Graphics.Glx.Glx.MESA.yml", "OpenTK.Graphics.Glx.Glx.MESA.GetSwapIntervalMESA": "OpenTK.Graphics.Glx.Glx.MESA.yml", + "OpenTK.Graphics.Glx.Glx.MESA.QueryCurrentRendererIntegerMESA(System.Int32,System.Span{System.UInt32})": "OpenTK.Graphics.Glx.Glx.MESA.yml", "OpenTK.Graphics.Glx.Glx.MESA.QueryCurrentRendererIntegerMESA(System.Int32,System.UInt32*)": "OpenTK.Graphics.Glx.Glx.MESA.yml", "OpenTK.Graphics.Glx.Glx.MESA.QueryCurrentRendererIntegerMESA(System.Int32,System.UInt32@)": "OpenTK.Graphics.Glx.Glx.MESA.yml", + "OpenTK.Graphics.Glx.Glx.MESA.QueryCurrentRendererIntegerMESA(System.Int32,System.UInt32[])": "OpenTK.Graphics.Glx.Glx.MESA.yml", "OpenTK.Graphics.Glx.Glx.MESA.QueryCurrentRendererStringMESA(System.Int32)": "OpenTK.Graphics.Glx.Glx.MESA.yml", "OpenTK.Graphics.Glx.Glx.MESA.QueryCurrentRendererStringMESA_(System.Int32)": "OpenTK.Graphics.Glx.Glx.MESA.yml", + "OpenTK.Graphics.Glx.Glx.MESA.QueryRendererIntegerMESA(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.Span{System.UInt32})": "OpenTK.Graphics.Glx.Glx.MESA.yml", "OpenTK.Graphics.Glx.Glx.MESA.QueryRendererIntegerMESA(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.UInt32*)": "OpenTK.Graphics.Glx.Glx.MESA.yml", "OpenTK.Graphics.Glx.Glx.MESA.QueryRendererIntegerMESA(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.UInt32@)": "OpenTK.Graphics.Glx.Glx.MESA.yml", + "OpenTK.Graphics.Glx.Glx.MESA.QueryRendererIntegerMESA(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.UInt32[])": "OpenTK.Graphics.Glx.Glx.MESA.yml", "OpenTK.Graphics.Glx.Glx.MESA.QueryRendererStringMESA(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32)": "OpenTK.Graphics.Glx.Glx.MESA.yml", "OpenTK.Graphics.Glx.Glx.MESA.QueryRendererStringMESA_(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32)": "OpenTK.Graphics.Glx.Glx.MESA.yml", "OpenTK.Graphics.Glx.Glx.MESA.ReleaseBuffersMESA(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable)": "OpenTK.Graphics.Glx.Glx.MESA.yml", @@ -3437,66 +2580,106 @@ "OpenTK.Graphics.Glx.Glx.NV.BindVideoCaptureDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,System.UInt32,OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV)": "OpenTK.Graphics.Glx.Glx.NV.yml", "OpenTK.Graphics.Glx.Glx.NV.BindVideoDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,System.UInt32,System.UInt32,System.Int32*)": "OpenTK.Graphics.Glx.Glx.NV.yml", "OpenTK.Graphics.Glx.Glx.NV.BindVideoDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,System.UInt32,System.UInt32,System.Int32@)": "OpenTK.Graphics.Glx.Glx.NV.yml", + "OpenTK.Graphics.Glx.Glx.NV.BindVideoDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,System.UInt32,System.UInt32,System.Int32[])": "OpenTK.Graphics.Glx.Glx.NV.yml", + "OpenTK.Graphics.Glx.Glx.NV.BindVideoDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,System.UInt32,System.UInt32,System.ReadOnlySpan{System.Int32})": "OpenTK.Graphics.Glx.Glx.NV.yml", "OpenTK.Graphics.Glx.Glx.NV.BindVideoImageNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXVideoDeviceNV,OpenTK.Graphics.Glx.GLXPbuffer,System.Int32)": "OpenTK.Graphics.Glx.Glx.NV.yml", "OpenTK.Graphics.Glx.Glx.NV.CopyBufferSubDataNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext,OpenTK.Graphics.Glx.GLXContext,OpenTK.Graphics.Glx.All,OpenTK.Graphics.Glx.All,System.IntPtr,System.IntPtr,System.IntPtr)": "OpenTK.Graphics.Glx.Glx.NV.yml", "OpenTK.Graphics.Glx.Glx.NV.CopyImageSubDataNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext,System.UInt32,OpenTK.Graphics.Glx.All,System.Int32,System.Int32,System.Int32,System.Int32,OpenTK.Graphics.Glx.GLXContext,System.UInt32,OpenTK.Graphics.Glx.All,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)": "OpenTK.Graphics.Glx.Glx.NV.yml", "OpenTK.Graphics.Glx.Glx.NV.DelayBeforeSwapNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Single)": "OpenTK.Graphics.Glx.Glx.NV.yml", "OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoCaptureDevicesNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32*)": "OpenTK.Graphics.Glx.Glx.NV.yml", "OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoCaptureDevicesNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32@)": "OpenTK.Graphics.Glx.Glx.NV.yml", + "OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoCaptureDevicesNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32[])": "OpenTK.Graphics.Glx.Glx.NV.yml", + "OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoCaptureDevicesNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Span{System.Int32})": "OpenTK.Graphics.Glx.Glx.NV.yml", "OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoDevicesNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32*)": "OpenTK.Graphics.Glx.Glx.NV.yml", "OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoDevicesNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32@)": "OpenTK.Graphics.Glx.Glx.NV.yml", + "OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoDevicesNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32[])": "OpenTK.Graphics.Glx.Glx.NV.yml", + "OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoDevicesNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Span{System.Int32})": "OpenTK.Graphics.Glx.Glx.NV.yml", "OpenTK.Graphics.Glx.Glx.NV.GetVideoDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,OpenTK.Graphics.Glx.GLXVideoDeviceNV*)": "OpenTK.Graphics.Glx.Glx.NV.yml", "OpenTK.Graphics.Glx.Glx.NV.GetVideoDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,OpenTK.Graphics.Glx.GLXVideoDeviceNV@)": "OpenTK.Graphics.Glx.Glx.NV.yml", + "OpenTK.Graphics.Glx.Glx.NV.GetVideoDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,OpenTK.Graphics.Glx.GLXVideoDeviceNV[])": "OpenTK.Graphics.Glx.Glx.NV.yml", + "OpenTK.Graphics.Glx.Glx.NV.GetVideoDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Span{OpenTK.Graphics.Glx.GLXVideoDeviceNV})": "OpenTK.Graphics.Glx.Glx.NV.yml", + "OpenTK.Graphics.Glx.Glx.NV.GetVideoInfoNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,OpenTK.Graphics.Glx.GLXVideoDeviceNV,System.Span{System.UInt64},System.Span{System.UInt64})": "OpenTK.Graphics.Glx.Glx.NV.yml", "OpenTK.Graphics.Glx.Glx.NV.GetVideoInfoNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,OpenTK.Graphics.Glx.GLXVideoDeviceNV,System.UInt64*,System.UInt64*)": "OpenTK.Graphics.Glx.Glx.NV.yml", "OpenTK.Graphics.Glx.Glx.NV.GetVideoInfoNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,OpenTK.Graphics.Glx.GLXVideoDeviceNV,System.UInt64@,System.UInt64@)": "OpenTK.Graphics.Glx.Glx.NV.yml", + "OpenTK.Graphics.Glx.Glx.NV.GetVideoInfoNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,OpenTK.Graphics.Glx.GLXVideoDeviceNV,System.UInt64[],System.UInt64[])": "OpenTK.Graphics.Glx.Glx.NV.yml", "OpenTK.Graphics.Glx.Glx.NV.JoinSwapGroupNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.UInt32)": "OpenTK.Graphics.Glx.Glx.NV.yml", "OpenTK.Graphics.Glx.Glx.NV.LockVideoCaptureDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV)": "OpenTK.Graphics.Glx.Glx.NV.yml", "OpenTK.Graphics.Glx.Glx.NV.NamedCopyBufferSubDataNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext,OpenTK.Graphics.Glx.GLXContext,System.UInt32,System.UInt32,System.IntPtr,System.IntPtr,System.IntPtr)": "OpenTK.Graphics.Glx.Glx.NV.yml", + "OpenTK.Graphics.Glx.Glx.NV.QueryFrameCountNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Span{System.UInt32})": "OpenTK.Graphics.Glx.Glx.NV.yml", "OpenTK.Graphics.Glx.Glx.NV.QueryFrameCountNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.UInt32*)": "OpenTK.Graphics.Glx.Glx.NV.yml", "OpenTK.Graphics.Glx.Glx.NV.QueryFrameCountNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.UInt32@)": "OpenTK.Graphics.Glx.Glx.NV.yml", + "OpenTK.Graphics.Glx.Glx.NV.QueryFrameCountNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.UInt32[])": "OpenTK.Graphics.Glx.Glx.NV.yml", + "OpenTK.Graphics.Glx.Glx.NV.QueryMaxSwapGroupsNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Span{System.UInt32},System.Span{System.UInt32})": "OpenTK.Graphics.Glx.Glx.NV.yml", "OpenTK.Graphics.Glx.Glx.NV.QueryMaxSwapGroupsNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.UInt32*,System.UInt32*)": "OpenTK.Graphics.Glx.Glx.NV.yml", "OpenTK.Graphics.Glx.Glx.NV.QueryMaxSwapGroupsNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.UInt32@,System.UInt32@)": "OpenTK.Graphics.Glx.Glx.NV.yml", + "OpenTK.Graphics.Glx.Glx.NV.QueryMaxSwapGroupsNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.UInt32[],System.UInt32[])": "OpenTK.Graphics.Glx.Glx.NV.yml", + "OpenTK.Graphics.Glx.Glx.NV.QuerySwapGroupNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Span{System.UInt32},System.Span{System.UInt32})": "OpenTK.Graphics.Glx.Glx.NV.yml", "OpenTK.Graphics.Glx.Glx.NV.QuerySwapGroupNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.UInt32*,System.UInt32*)": "OpenTK.Graphics.Glx.Glx.NV.yml", "OpenTK.Graphics.Glx.Glx.NV.QuerySwapGroupNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.UInt32@,System.UInt32@)": "OpenTK.Graphics.Glx.Glx.NV.yml", + "OpenTK.Graphics.Glx.Glx.NV.QuerySwapGroupNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.UInt32[],System.UInt32[])": "OpenTK.Graphics.Glx.Glx.NV.yml", "OpenTK.Graphics.Glx.Glx.NV.QueryVideoCaptureDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV,System.Int32,System.Int32*)": "OpenTK.Graphics.Glx.Glx.NV.yml", "OpenTK.Graphics.Glx.Glx.NV.QueryVideoCaptureDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV,System.Int32,System.Int32@)": "OpenTK.Graphics.Glx.Glx.NV.yml", + "OpenTK.Graphics.Glx.Glx.NV.QueryVideoCaptureDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV,System.Int32,System.Int32[])": "OpenTK.Graphics.Glx.Glx.NV.yml", + "OpenTK.Graphics.Glx.Glx.NV.QueryVideoCaptureDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV,System.Int32,System.Span{System.Int32})": "OpenTK.Graphics.Glx.Glx.NV.yml", "OpenTK.Graphics.Glx.Glx.NV.ReleaseVideoCaptureDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV)": "OpenTK.Graphics.Glx.Glx.NV.yml", "OpenTK.Graphics.Glx.Glx.NV.ReleaseVideoDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,OpenTK.Graphics.Glx.GLXVideoDeviceNV)": "OpenTK.Graphics.Glx.Glx.NV.yml", "OpenTK.Graphics.Glx.Glx.NV.ReleaseVideoImageNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXPbuffer)": "OpenTK.Graphics.Glx.Glx.NV.yml", "OpenTK.Graphics.Glx.Glx.NV.ResetFrameCountNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32)": "OpenTK.Graphics.Glx.Glx.NV.yml", + "OpenTK.Graphics.Glx.Glx.NV.SendPbufferToVideoNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXPbuffer,System.Int32,System.Span{System.UInt64},System.Boolean)": "OpenTK.Graphics.Glx.Glx.NV.yml", "OpenTK.Graphics.Glx.Glx.NV.SendPbufferToVideoNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXPbuffer,System.Int32,System.UInt64*,System.Boolean)": "OpenTK.Graphics.Glx.Glx.NV.yml", "OpenTK.Graphics.Glx.Glx.NV.SendPbufferToVideoNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXPbuffer,System.Int32,System.UInt64@,System.Boolean)": "OpenTK.Graphics.Glx.Glx.NV.yml", + "OpenTK.Graphics.Glx.Glx.NV.SendPbufferToVideoNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXPbuffer,System.Int32,System.UInt64[],System.Boolean)": "OpenTK.Graphics.Glx.Glx.NV.yml", "OpenTK.Graphics.Glx.Glx.OML": "OpenTK.Graphics.Glx.Glx.OML.yml", "OpenTK.Graphics.Glx.Glx.OML.GetMscRateOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32*,System.Int32*)": "OpenTK.Graphics.Glx.Glx.OML.yml", "OpenTK.Graphics.Glx.Glx.OML.GetMscRateOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32@,System.Int32@)": "OpenTK.Graphics.Glx.Glx.OML.yml", + "OpenTK.Graphics.Glx.Glx.OML.GetMscRateOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32[],System.Int32[])": "OpenTK.Graphics.Glx.Glx.OML.yml", + "OpenTK.Graphics.Glx.Glx.OML.GetMscRateOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Span{System.Int32},System.Span{System.Int32})": "OpenTK.Graphics.Glx.Glx.OML.yml", "OpenTK.Graphics.Glx.Glx.OML.GetSyncValuesOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int64*,System.Int64*,System.Int64*)": "OpenTK.Graphics.Glx.Glx.OML.yml", "OpenTK.Graphics.Glx.Glx.OML.GetSyncValuesOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int64@,System.Int64@,System.Int64@)": "OpenTK.Graphics.Glx.Glx.OML.yml", + "OpenTK.Graphics.Glx.Glx.OML.GetSyncValuesOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int64[],System.Int64[],System.Int64[])": "OpenTK.Graphics.Glx.Glx.OML.yml", + "OpenTK.Graphics.Glx.Glx.OML.GetSyncValuesOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Span{System.Int64},System.Span{System.Int64},System.Span{System.Int64})": "OpenTK.Graphics.Glx.Glx.OML.yml", "OpenTK.Graphics.Glx.Glx.OML.SwapBuffersMscOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int64,System.Int64,System.Int64)": "OpenTK.Graphics.Glx.Glx.OML.yml", "OpenTK.Graphics.Glx.Glx.OML.WaitForMscOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int64,System.Int64,System.Int64,System.Int64*,System.Int64*,System.Int64*)": "OpenTK.Graphics.Glx.Glx.OML.yml", "OpenTK.Graphics.Glx.Glx.OML.WaitForMscOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int64,System.Int64,System.Int64,System.Int64@,System.Int64@,System.Int64@)": "OpenTK.Graphics.Glx.Glx.OML.yml", + "OpenTK.Graphics.Glx.Glx.OML.WaitForMscOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int64,System.Int64,System.Int64,System.Int64[],System.Int64[],System.Int64[])": "OpenTK.Graphics.Glx.Glx.OML.yml", + "OpenTK.Graphics.Glx.Glx.OML.WaitForMscOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int64,System.Int64,System.Int64,System.Span{System.Int64},System.Span{System.Int64},System.Span{System.Int64})": "OpenTK.Graphics.Glx.Glx.OML.yml", "OpenTK.Graphics.Glx.Glx.OML.WaitForSbcOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int64,System.Int64*,System.Int64*,System.Int64*)": "OpenTK.Graphics.Glx.Glx.OML.yml", "OpenTK.Graphics.Glx.Glx.OML.WaitForSbcOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int64,System.Int64@,System.Int64@,System.Int64@)": "OpenTK.Graphics.Glx.Glx.OML.yml", + "OpenTK.Graphics.Glx.Glx.OML.WaitForSbcOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int64,System.Int64[],System.Int64[],System.Int64[])": "OpenTK.Graphics.Glx.Glx.OML.yml", + "OpenTK.Graphics.Glx.Glx.OML.WaitForSbcOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int64,System.Span{System.Int64},System.Span{System.Int64},System.Span{System.Int64})": "OpenTK.Graphics.Glx.Glx.OML.yml", "OpenTK.Graphics.Glx.Glx.QueryContext(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext,System.Int32,System.Int32*)": "OpenTK.Graphics.Glx.Glx.yml", "OpenTK.Graphics.Glx.Glx.QueryContext(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext,System.Int32,System.Int32@)": "OpenTK.Graphics.Glx.Glx.yml", + "OpenTK.Graphics.Glx.Glx.QueryContext(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext,System.Int32,System.Int32[])": "OpenTK.Graphics.Glx.Glx.yml", + "OpenTK.Graphics.Glx.Glx.QueryContext(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext,System.Int32,System.Span{System.Int32})": "OpenTK.Graphics.Glx.Glx.yml", + "OpenTK.Graphics.Glx.Glx.QueryDrawable(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32,System.Span{System.UInt32})": "OpenTK.Graphics.Glx.Glx.yml", "OpenTK.Graphics.Glx.Glx.QueryDrawable(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32,System.UInt32*)": "OpenTK.Graphics.Glx.Glx.yml", "OpenTK.Graphics.Glx.Glx.QueryDrawable(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32,System.UInt32@)": "OpenTK.Graphics.Glx.Glx.yml", + "OpenTK.Graphics.Glx.Glx.QueryDrawable(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32,System.UInt32[])": "OpenTK.Graphics.Glx.Glx.yml", "OpenTK.Graphics.Glx.Glx.QueryExtension(OpenTK.Graphics.Glx.DisplayPtr,System.Int32*,System.Int32*)": "OpenTK.Graphics.Glx.Glx.yml", "OpenTK.Graphics.Glx.Glx.QueryExtension(OpenTK.Graphics.Glx.DisplayPtr,System.Int32@,System.Int32@)": "OpenTK.Graphics.Glx.Glx.yml", + "OpenTK.Graphics.Glx.Glx.QueryExtension(OpenTK.Graphics.Glx.DisplayPtr,System.Int32[],System.Int32[])": "OpenTK.Graphics.Glx.Glx.yml", + "OpenTK.Graphics.Glx.Glx.QueryExtension(OpenTK.Graphics.Glx.DisplayPtr,System.Span{System.Int32},System.Span{System.Int32})": "OpenTK.Graphics.Glx.Glx.yml", "OpenTK.Graphics.Glx.Glx.QueryExtensionsString(OpenTK.Graphics.Glx.DisplayPtr,System.Int32)": "OpenTK.Graphics.Glx.Glx.yml", "OpenTK.Graphics.Glx.Glx.QueryExtensionsString_(OpenTK.Graphics.Glx.DisplayPtr,System.Int32)": "OpenTK.Graphics.Glx.Glx.yml", "OpenTK.Graphics.Glx.Glx.QueryServerString(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32)": "OpenTK.Graphics.Glx.Glx.yml", "OpenTK.Graphics.Glx.Glx.QueryServerString_(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32)": "OpenTK.Graphics.Glx.Glx.yml", "OpenTK.Graphics.Glx.Glx.QueryVersion(OpenTK.Graphics.Glx.DisplayPtr,System.Int32*,System.Int32*)": "OpenTK.Graphics.Glx.Glx.yml", "OpenTK.Graphics.Glx.Glx.QueryVersion(OpenTK.Graphics.Glx.DisplayPtr,System.Int32@,System.Int32@)": "OpenTK.Graphics.Glx.Glx.yml", + "OpenTK.Graphics.Glx.Glx.QueryVersion(OpenTK.Graphics.Glx.DisplayPtr,System.Int32[],System.Int32[])": "OpenTK.Graphics.Glx.Glx.yml", + "OpenTK.Graphics.Glx.Glx.QueryVersion(OpenTK.Graphics.Glx.DisplayPtr,System.Span{System.Int32},System.Span{System.Int32})": "OpenTK.Graphics.Glx.Glx.yml", "OpenTK.Graphics.Glx.Glx.SGI": "OpenTK.Graphics.Glx.Glx.SGI.yml", "OpenTK.Graphics.Glx.Glx.SGI.CushionSGI(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.Window,System.Single)": "OpenTK.Graphics.Glx.Glx.SGI.yml", "OpenTK.Graphics.Glx.Glx.SGI.GetCurrentReadDrawableSGI": "OpenTK.Graphics.Glx.Glx.SGI.yml", + "OpenTK.Graphics.Glx.Glx.SGI.GetVideoSyncSGI(System.Span{System.UInt32})": "OpenTK.Graphics.Glx.Glx.SGI.yml", "OpenTK.Graphics.Glx.Glx.SGI.GetVideoSyncSGI(System.UInt32*)": "OpenTK.Graphics.Glx.Glx.SGI.yml", "OpenTK.Graphics.Glx.Glx.SGI.GetVideoSyncSGI(System.UInt32@)": "OpenTK.Graphics.Glx.Glx.SGI.yml", + "OpenTK.Graphics.Glx.Glx.SGI.GetVideoSyncSGI(System.UInt32[])": "OpenTK.Graphics.Glx.Glx.SGI.yml", "OpenTK.Graphics.Glx.Glx.SGI.MakeCurrentReadSGI(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,OpenTK.Graphics.Glx.GLXDrawable,OpenTK.Graphics.Glx.GLXContext)": "OpenTK.Graphics.Glx.Glx.SGI.yml", "OpenTK.Graphics.Glx.Glx.SGI.SwapIntervalSGI(System.Int32)": "OpenTK.Graphics.Glx.Glx.SGI.yml", + "OpenTK.Graphics.Glx.Glx.SGI.WaitVideoSyncSGI(System.Int32,System.Int32,System.Span{System.UInt32})": "OpenTK.Graphics.Glx.Glx.SGI.yml", "OpenTK.Graphics.Glx.Glx.SGI.WaitVideoSyncSGI(System.Int32,System.Int32,System.UInt32*)": "OpenTK.Graphics.Glx.Glx.SGI.yml", "OpenTK.Graphics.Glx.Glx.SGI.WaitVideoSyncSGI(System.Int32,System.Int32,System.UInt32@)": "OpenTK.Graphics.Glx.Glx.SGI.yml", + "OpenTK.Graphics.Glx.Glx.SGI.WaitVideoSyncSGI(System.Int32,System.Int32,System.UInt32[])": "OpenTK.Graphics.Glx.Glx.SGI.yml", "OpenTK.Graphics.Glx.Glx.SGIX": "OpenTK.Graphics.Glx.Glx.SGIX.yml", "OpenTK.Graphics.Glx.Glx.SGIX.BindChannelToWindowSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,OpenTK.Graphics.Glx.Window)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", "OpenTK.Graphics.Glx.Glx.SGIX.BindHyperpipeSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", @@ -3505,46 +2688,76 @@ "OpenTK.Graphics.Glx.Glx.SGIX.ChannelRectSyncSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,OpenTK.Graphics.Glx.All)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", "OpenTK.Graphics.Glx.Glx.SGIX.ChooseFBConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32*,System.Int32*)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", "OpenTK.Graphics.Glx.Glx.SGIX.ChooseFBConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32@,System.Int32@)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", + "OpenTK.Graphics.Glx.Glx.SGIX.ChooseFBConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32[],System.Int32[])": "OpenTK.Graphics.Glx.Glx.SGIX.yml", + "OpenTK.Graphics.Glx.Glx.SGIX.ChooseFBConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Span{System.Int32},System.Span{System.Int32})": "OpenTK.Graphics.Glx.Glx.SGIX.yml", "OpenTK.Graphics.Glx.Glx.SGIX.CreateContextWithConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfigSGIX,System.Int32,OpenTK.Graphics.Glx.GLXContext,System.Boolean)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", "OpenTK.Graphics.Glx.Glx.SGIX.CreateGLXPbufferSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfigSGIX,System.UInt32,System.UInt32,System.Int32*)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", "OpenTK.Graphics.Glx.Glx.SGIX.CreateGLXPbufferSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfigSGIX,System.UInt32,System.UInt32,System.Int32@)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", + "OpenTK.Graphics.Glx.Glx.SGIX.CreateGLXPbufferSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfigSGIX,System.UInt32,System.UInt32,System.Int32[])": "OpenTK.Graphics.Glx.Glx.SGIX.yml", + "OpenTK.Graphics.Glx.Glx.SGIX.CreateGLXPbufferSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfigSGIX,System.UInt32,System.UInt32,System.Span{System.Int32})": "OpenTK.Graphics.Glx.Glx.SGIX.yml", "OpenTK.Graphics.Glx.Glx.SGIX.CreateGLXPixmapWithConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfigSGIX,OpenTK.Graphics.Glx.Pixmap)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", "OpenTK.Graphics.Glx.Glx.SGIX.DestroyGLXPbufferSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXPbufferSGIX)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", "OpenTK.Graphics.Glx.Glx.SGIX.DestroyHyperpipeConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", "OpenTK.Graphics.Glx.Glx.SGIX.GetFBConfigAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfigSGIX,System.Int32,System.Int32*)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", "OpenTK.Graphics.Glx.Glx.SGIX.GetFBConfigAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfigSGIX,System.Int32,System.Int32@)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", + "OpenTK.Graphics.Glx.Glx.SGIX.GetFBConfigAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfigSGIX,System.Int32,System.Int32[])": "OpenTK.Graphics.Glx.Glx.SGIX.yml", + "OpenTK.Graphics.Glx.Glx.SGIX.GetFBConfigAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfigSGIX,System.Int32,System.Span{System.Int32})": "OpenTK.Graphics.Glx.Glx.SGIX.yml", "OpenTK.Graphics.Glx.Glx.SGIX.GetFBConfigFromVisualSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.XVisualInfoPtr)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", + "OpenTK.Graphics.Glx.Glx.SGIX.GetSelectedEventSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Span{System.UInt64})": "OpenTK.Graphics.Glx.Glx.SGIX.yml", "OpenTK.Graphics.Glx.Glx.SGIX.GetSelectedEventSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.UInt64*)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", "OpenTK.Graphics.Glx.Glx.SGIX.GetSelectedEventSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.UInt64@)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", + "OpenTK.Graphics.Glx.Glx.SGIX.GetSelectedEventSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.UInt64[])": "OpenTK.Graphics.Glx.Glx.SGIX.yml", "OpenTK.Graphics.Glx.Glx.SGIX.GetVisualFromFBConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfigSGIX)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", "OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.IntPtr)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", "OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.Void*)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", + "OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeAttribSGIX``1(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.Span{``0})": "OpenTK.Graphics.Glx.Glx.SGIX.yml", "OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeAttribSGIX``1(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,``0@)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", + "OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeAttribSGIX``1(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,``0[])": "OpenTK.Graphics.Glx.Glx.SGIX.yml", "OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX*,System.Int32*)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", "OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX@,System.Int32@)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", + "OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX[],System.Int32[])": "OpenTK.Graphics.Glx.Glx.SGIX.yml", + "OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Span{OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX},System.Span{System.Int32})": "OpenTK.Graphics.Glx.Glx.SGIX.yml", "OpenTK.Graphics.Glx.Glx.SGIX.JoinSwapGroupSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,OpenTK.Graphics.Glx.GLXDrawable)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", "OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelDeltasSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32*,System.Int32*,System.Int32*,System.Int32*)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", "OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelDeltasSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32@,System.Int32@,System.Int32@,System.Int32@)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", + "OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelDeltasSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32[],System.Int32[],System.Int32[],System.Int32[])": "OpenTK.Graphics.Glx.Glx.SGIX.yml", + "OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelDeltasSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Span{System.Int32},System.Span{System.Int32},System.Span{System.Int32},System.Span{System.Int32})": "OpenTK.Graphics.Glx.Glx.SGIX.yml", "OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelRectSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32*,System.Int32*,System.Int32*,System.Int32*)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", "OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelRectSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32@,System.Int32@,System.Int32@,System.Int32@)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", + "OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelRectSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32[],System.Int32[],System.Int32[],System.Int32[])": "OpenTK.Graphics.Glx.Glx.SGIX.yml", + "OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelRectSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Span{System.Int32},System.Span{System.Int32},System.Span{System.Int32},System.Span{System.Int32})": "OpenTK.Graphics.Glx.Glx.SGIX.yml", + "OpenTK.Graphics.Glx.Glx.SGIX.QueryGLXPbufferSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXPbufferSGIX,System.Int32,System.Span{System.UInt32})": "OpenTK.Graphics.Glx.Glx.SGIX.yml", "OpenTK.Graphics.Glx.Glx.SGIX.QueryGLXPbufferSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXPbufferSGIX,System.Int32,System.UInt32*)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", "OpenTK.Graphics.Glx.Glx.SGIX.QueryGLXPbufferSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXPbufferSGIX,System.Int32,System.UInt32@)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", + "OpenTK.Graphics.Glx.Glx.SGIX.QueryGLXPbufferSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXPbufferSGIX,System.Int32,System.UInt32[])": "OpenTK.Graphics.Glx.Glx.SGIX.yml", "OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.IntPtr)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", "OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.Void*)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", + "OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeAttribSGIX``1(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.Span{``0})": "OpenTK.Graphics.Glx.Glx.SGIX.yml", "OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeAttribSGIX``1(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,``0@)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", + "OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeAttribSGIX``1(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,``0[])": "OpenTK.Graphics.Glx.Glx.SGIX.yml", "OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeBestAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.IntPtr,System.IntPtr)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", "OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeBestAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.Void*,System.Void*)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", + "OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeBestAttribSGIX``2(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.Span{``0},System.Span{``1})": "OpenTK.Graphics.Glx.Glx.SGIX.yml", "OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeBestAttribSGIX``2(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,``0@,``1@)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", + "OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeBestAttribSGIX``2(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,``0[],``1[])": "OpenTK.Graphics.Glx.Glx.SGIX.yml", "OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32*)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", "OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32@)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", + "OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32[])": "OpenTK.Graphics.Glx.Glx.SGIX.yml", + "OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Span{System.Int32})": "OpenTK.Graphics.Glx.Glx.SGIX.yml", "OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeNetworkSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32*)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", "OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeNetworkSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32@)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", + "OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeNetworkSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32[])": "OpenTK.Graphics.Glx.Glx.SGIX.yml", + "OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeNetworkSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Span{System.Int32})": "OpenTK.Graphics.Glx.Glx.SGIX.yml", "OpenTK.Graphics.Glx.Glx.SGIX.QueryMaxSwapBarriersSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32*)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", "OpenTK.Graphics.Glx.Glx.SGIX.QueryMaxSwapBarriersSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32@)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", + "OpenTK.Graphics.Glx.Glx.SGIX.QueryMaxSwapBarriersSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32[])": "OpenTK.Graphics.Glx.Glx.SGIX.yml", + "OpenTK.Graphics.Glx.Glx.SGIX.QueryMaxSwapBarriersSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Span{System.Int32})": "OpenTK.Graphics.Glx.Glx.SGIX.yml", "OpenTK.Graphics.Glx.Glx.SGIX.SelectEventSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.UInt64)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", "OpenTK.Graphics.Glx.Glx.SUN": "OpenTK.Graphics.Glx.Glx.SUN.yml", + "OpenTK.Graphics.Glx.Glx.SUN.GetTransparentIndexSUN(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.Window,OpenTK.Graphics.Glx.Window,System.Span{System.UInt64})": "OpenTK.Graphics.Glx.Glx.SUN.yml", "OpenTK.Graphics.Glx.Glx.SUN.GetTransparentIndexSUN(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.Window,OpenTK.Graphics.Glx.Window,System.UInt64*)": "OpenTK.Graphics.Glx.Glx.SUN.yml", "OpenTK.Graphics.Glx.Glx.SUN.GetTransparentIndexSUN(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.Window,OpenTK.Graphics.Glx.Window,System.UInt64@)": "OpenTK.Graphics.Glx.Glx.SUN.yml", + "OpenTK.Graphics.Glx.Glx.SUN.GetTransparentIndexSUN(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.Window,OpenTK.Graphics.Glx.Window,System.UInt64[])": "OpenTK.Graphics.Glx.Glx.SUN.yml", "OpenTK.Graphics.Glx.Glx.SelectEvent(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.UInt64)": "OpenTK.Graphics.Glx.Glx.yml", "OpenTK.Graphics.Glx.Glx.SwapBuffers(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable)": "OpenTK.Graphics.Glx.Glx.yml", "OpenTK.Graphics.Glx.Glx.UseXFont(OpenTK.Graphics.Glx.Font,System.Int32,System.Int32,System.Int32)": "OpenTK.Graphics.Glx.Glx.yml", @@ -3815,6 +3028,13 @@ "OpenTK.Graphics.TransformFeedbackHandle.op_Explicit(OpenTK.Graphics.TransformFeedbackHandle)~System.Int32": "OpenTK.Graphics.TransformFeedbackHandle.yml", "OpenTK.Graphics.TransformFeedbackHandle.op_Explicit(System.Int32)~OpenTK.Graphics.TransformFeedbackHandle": "OpenTK.Graphics.TransformFeedbackHandle.yml", "OpenTK.Graphics.TransformFeedbackHandle.op_Inequality(OpenTK.Graphics.TransformFeedbackHandle,OpenTK.Graphics.TransformFeedbackHandle)": "OpenTK.Graphics.TransformFeedbackHandle.yml", + "OpenTK.Graphics.VKLoader": "OpenTK.Graphics.VKLoader.yml", + "OpenTK.Graphics.VKLoader.GetInstanceProcAddress(OpenTK.Graphics.Vulkan.VkInstance,System.String)": "OpenTK.Graphics.VKLoader.yml", + "OpenTK.Graphics.VKLoader.GetInstanceProcAddress(System.String)": "OpenTK.Graphics.VKLoader.yml", + "OpenTK.Graphics.VKLoader.Init": "OpenTK.Graphics.VKLoader.yml", + "OpenTK.Graphics.VKLoader.Instance": "OpenTK.Graphics.VKLoader.yml", + "OpenTK.Graphics.VKLoader.SetInstance(OpenTK.Graphics.Vulkan.VkInstance)": "OpenTK.Graphics.VKLoader.yml", + "OpenTK.Graphics.VKLoader.VulkanHandle": "OpenTK.Graphics.VKLoader.yml", "OpenTK.Graphics.VertexArrayHandle": "OpenTK.Graphics.VertexArrayHandle.yml", "OpenTK.Graphics.VertexArrayHandle.#ctor(System.Int32)": "OpenTK.Graphics.VertexArrayHandle.yml", "OpenTK.Graphics.VertexArrayHandle.Equals(OpenTK.Graphics.VertexArrayHandle)": "OpenTK.Graphics.VertexArrayHandle.yml", @@ -4157,6 +3377,11 @@ "OpenTK.Graphics.Wgl.ColorBuffer.BackRightArb": "OpenTK.Graphics.Wgl.ColorBuffer.yml", "OpenTK.Graphics.Wgl.ColorBuffer.FrontLeftArb": "OpenTK.Graphics.Wgl.ColorBuffer.yml", "OpenTK.Graphics.Wgl.ColorBuffer.FrontRightArb": "OpenTK.Graphics.Wgl.ColorBuffer.yml", + "OpenTK.Graphics.Wgl.ColorBufferMask": "OpenTK.Graphics.Wgl.ColorBufferMask.yml", + "OpenTK.Graphics.Wgl.ColorBufferMask.BackColorBufferBitArb": "OpenTK.Graphics.Wgl.ColorBufferMask.yml", + "OpenTK.Graphics.Wgl.ColorBufferMask.DepthBufferBitArb": "OpenTK.Graphics.Wgl.ColorBufferMask.yml", + "OpenTK.Graphics.Wgl.ColorBufferMask.FrontColorBufferBitArb": "OpenTK.Graphics.Wgl.ColorBufferMask.yml", + "OpenTK.Graphics.Wgl.ColorBufferMask.StencilBufferBitArb": "OpenTK.Graphics.Wgl.ColorBufferMask.yml", "OpenTK.Graphics.Wgl.ColorRef": "OpenTK.Graphics.Wgl.ColorRef.yml", "OpenTK.Graphics.Wgl.ColorRef.Blue": "OpenTK.Graphics.Wgl.ColorRef.yml", "OpenTK.Graphics.Wgl.ColorRef.Green": "OpenTK.Graphics.Wgl.ColorRef.yml", @@ -4170,6 +3395,20 @@ "OpenTK.Graphics.Wgl.ContextAttribute": "OpenTK.Graphics.Wgl.ContextAttribute.yml", "OpenTK.Graphics.Wgl.ContextAttribute.NumVideoCaptureSlotsNv": "OpenTK.Graphics.Wgl.ContextAttribute.yml", "OpenTK.Graphics.Wgl.ContextAttribute.NumVideoSlotsNv": "OpenTK.Graphics.Wgl.ContextAttribute.yml", + "OpenTK.Graphics.Wgl.ContextFlagsMask": "OpenTK.Graphics.Wgl.ContextFlagsMask.yml", + "OpenTK.Graphics.Wgl.ContextFlagsMask.ContextDebugBitArb": "OpenTK.Graphics.Wgl.ContextFlagsMask.yml", + "OpenTK.Graphics.Wgl.ContextFlagsMask.ContextForwardCompatibleBitArb": "OpenTK.Graphics.Wgl.ContextFlagsMask.yml", + "OpenTK.Graphics.Wgl.ContextFlagsMask.ContextResetIsolationBitArb": "OpenTK.Graphics.Wgl.ContextFlagsMask.yml", + "OpenTK.Graphics.Wgl.ContextFlagsMask.ContextRobustAccessBitArb": "OpenTK.Graphics.Wgl.ContextFlagsMask.yml", + "OpenTK.Graphics.Wgl.ContextProfileMask": "OpenTK.Graphics.Wgl.ContextProfileMask.yml", + "OpenTK.Graphics.Wgl.ContextProfileMask.ContextCompatibilityProfileBitArb": "OpenTK.Graphics.Wgl.ContextProfileMask.yml", + "OpenTK.Graphics.Wgl.ContextProfileMask.ContextCoreProfileBitArb": "OpenTK.Graphics.Wgl.ContextProfileMask.yml", + "OpenTK.Graphics.Wgl.ContextProfileMask.ContextEs2ProfileBitExt": "OpenTK.Graphics.Wgl.ContextProfileMask.yml", + "OpenTK.Graphics.Wgl.ContextProfileMask.ContextEsProfileBitExt": "OpenTK.Graphics.Wgl.ContextProfileMask.yml", + "OpenTK.Graphics.Wgl.DXInteropMaskNV": "OpenTK.Graphics.Wgl.DXInteropMaskNV.yml", + "OpenTK.Graphics.Wgl.DXInteropMaskNV.AccessReadOnlyNv": "OpenTK.Graphics.Wgl.DXInteropMaskNV.yml", + "OpenTK.Graphics.Wgl.DXInteropMaskNV.AccessReadWriteNv": "OpenTK.Graphics.Wgl.DXInteropMaskNV.yml", + "OpenTK.Graphics.Wgl.DXInteropMaskNV.AccessWriteDiscardNv": "OpenTK.Graphics.Wgl.DXInteropMaskNV.yml", "OpenTK.Graphics.Wgl.DigitalVideoAttribute": "OpenTK.Graphics.Wgl.DigitalVideoAttribute.yml", "OpenTK.Graphics.Wgl.DigitalVideoAttribute.DigitalVideoCursorAlphaFramebufferI3d": "OpenTK.Graphics.Wgl.DigitalVideoAttribute.yml", "OpenTK.Graphics.Wgl.DigitalVideoAttribute.DigitalVideoCursorAlphaValueI3d": "OpenTK.Graphics.Wgl.DigitalVideoAttribute.yml", @@ -4191,6 +3430,9 @@ "OpenTK.Graphics.Wgl.GammaTableAttribute": "OpenTK.Graphics.Wgl.GammaTableAttribute.yml", "OpenTK.Graphics.Wgl.GammaTableAttribute.GammaExcludeDesktopI3d": "OpenTK.Graphics.Wgl.GammaTableAttribute.yml", "OpenTK.Graphics.Wgl.GammaTableAttribute.GammaTableSizeI3d": "OpenTK.Graphics.Wgl.GammaTableAttribute.yml", + "OpenTK.Graphics.Wgl.ImageBufferMaskI3D": "OpenTK.Graphics.Wgl.ImageBufferMaskI3D.yml", + "OpenTK.Graphics.Wgl.ImageBufferMaskI3D.ImageBufferLockI3d": "OpenTK.Graphics.Wgl.ImageBufferMaskI3D.yml", + "OpenTK.Graphics.Wgl.ImageBufferMaskI3D.ImageBufferMinAccessI3d": "OpenTK.Graphics.Wgl.ImageBufferMaskI3D.yml", "OpenTK.Graphics.Wgl.LayerPlaneDescriptor": "OpenTK.Graphics.Wgl.LayerPlaneDescriptor.yml", "OpenTK.Graphics.Wgl.LayerPlaneDescriptor.bReserved": "OpenTK.Graphics.Wgl.LayerPlaneDescriptor.yml", "OpenTK.Graphics.Wgl.LayerPlaneDescriptor.cAccumAlphaBits": "OpenTK.Graphics.Wgl.LayerPlaneDescriptor.yml", @@ -4216,6 +3458,38 @@ "OpenTK.Graphics.Wgl.LayerPlaneDescriptor.iPixelType": "OpenTK.Graphics.Wgl.LayerPlaneDescriptor.yml", "OpenTK.Graphics.Wgl.LayerPlaneDescriptor.nSize": "OpenTK.Graphics.Wgl.LayerPlaneDescriptor.yml", "OpenTK.Graphics.Wgl.LayerPlaneDescriptor.nVersion": "OpenTK.Graphics.Wgl.LayerPlaneDescriptor.yml", + "OpenTK.Graphics.Wgl.LayerPlaneMask": "OpenTK.Graphics.Wgl.LayerPlaneMask.yml", + "OpenTK.Graphics.Wgl.LayerPlaneMask.SwapMainPlane": "OpenTK.Graphics.Wgl.LayerPlaneMask.yml", + "OpenTK.Graphics.Wgl.LayerPlaneMask.SwapOverlay1": "OpenTK.Graphics.Wgl.LayerPlaneMask.yml", + "OpenTK.Graphics.Wgl.LayerPlaneMask.SwapOverlay10": "OpenTK.Graphics.Wgl.LayerPlaneMask.yml", + "OpenTK.Graphics.Wgl.LayerPlaneMask.SwapOverlay11": "OpenTK.Graphics.Wgl.LayerPlaneMask.yml", + "OpenTK.Graphics.Wgl.LayerPlaneMask.SwapOverlay12": "OpenTK.Graphics.Wgl.LayerPlaneMask.yml", + "OpenTK.Graphics.Wgl.LayerPlaneMask.SwapOverlay13": "OpenTK.Graphics.Wgl.LayerPlaneMask.yml", + "OpenTK.Graphics.Wgl.LayerPlaneMask.SwapOverlay14": "OpenTK.Graphics.Wgl.LayerPlaneMask.yml", + "OpenTK.Graphics.Wgl.LayerPlaneMask.SwapOverlay15": "OpenTK.Graphics.Wgl.LayerPlaneMask.yml", + "OpenTK.Graphics.Wgl.LayerPlaneMask.SwapOverlay2": "OpenTK.Graphics.Wgl.LayerPlaneMask.yml", + "OpenTK.Graphics.Wgl.LayerPlaneMask.SwapOverlay3": "OpenTK.Graphics.Wgl.LayerPlaneMask.yml", + "OpenTK.Graphics.Wgl.LayerPlaneMask.SwapOverlay4": "OpenTK.Graphics.Wgl.LayerPlaneMask.yml", + "OpenTK.Graphics.Wgl.LayerPlaneMask.SwapOverlay5": "OpenTK.Graphics.Wgl.LayerPlaneMask.yml", + "OpenTK.Graphics.Wgl.LayerPlaneMask.SwapOverlay6": "OpenTK.Graphics.Wgl.LayerPlaneMask.yml", + "OpenTK.Graphics.Wgl.LayerPlaneMask.SwapOverlay7": "OpenTK.Graphics.Wgl.LayerPlaneMask.yml", + "OpenTK.Graphics.Wgl.LayerPlaneMask.SwapOverlay8": "OpenTK.Graphics.Wgl.LayerPlaneMask.yml", + "OpenTK.Graphics.Wgl.LayerPlaneMask.SwapOverlay9": "OpenTK.Graphics.Wgl.LayerPlaneMask.yml", + "OpenTK.Graphics.Wgl.LayerPlaneMask.SwapUnderlay1": "OpenTK.Graphics.Wgl.LayerPlaneMask.yml", + "OpenTK.Graphics.Wgl.LayerPlaneMask.SwapUnderlay10": "OpenTK.Graphics.Wgl.LayerPlaneMask.yml", + "OpenTK.Graphics.Wgl.LayerPlaneMask.SwapUnderlay11": "OpenTK.Graphics.Wgl.LayerPlaneMask.yml", + "OpenTK.Graphics.Wgl.LayerPlaneMask.SwapUnderlay12": "OpenTK.Graphics.Wgl.LayerPlaneMask.yml", + "OpenTK.Graphics.Wgl.LayerPlaneMask.SwapUnderlay13": "OpenTK.Graphics.Wgl.LayerPlaneMask.yml", + "OpenTK.Graphics.Wgl.LayerPlaneMask.SwapUnderlay14": "OpenTK.Graphics.Wgl.LayerPlaneMask.yml", + "OpenTK.Graphics.Wgl.LayerPlaneMask.SwapUnderlay15": "OpenTK.Graphics.Wgl.LayerPlaneMask.yml", + "OpenTK.Graphics.Wgl.LayerPlaneMask.SwapUnderlay2": "OpenTK.Graphics.Wgl.LayerPlaneMask.yml", + "OpenTK.Graphics.Wgl.LayerPlaneMask.SwapUnderlay3": "OpenTK.Graphics.Wgl.LayerPlaneMask.yml", + "OpenTK.Graphics.Wgl.LayerPlaneMask.SwapUnderlay4": "OpenTK.Graphics.Wgl.LayerPlaneMask.yml", + "OpenTK.Graphics.Wgl.LayerPlaneMask.SwapUnderlay5": "OpenTK.Graphics.Wgl.LayerPlaneMask.yml", + "OpenTK.Graphics.Wgl.LayerPlaneMask.SwapUnderlay6": "OpenTK.Graphics.Wgl.LayerPlaneMask.yml", + "OpenTK.Graphics.Wgl.LayerPlaneMask.SwapUnderlay7": "OpenTK.Graphics.Wgl.LayerPlaneMask.yml", + "OpenTK.Graphics.Wgl.LayerPlaneMask.SwapUnderlay8": "OpenTK.Graphics.Wgl.LayerPlaneMask.yml", + "OpenTK.Graphics.Wgl.LayerPlaneMask.SwapUnderlay9": "OpenTK.Graphics.Wgl.LayerPlaneMask.yml", "OpenTK.Graphics.Wgl.ObjectTypeDX": "OpenTK.Graphics.Wgl.ObjectTypeDX.yml", "OpenTK.Graphics.Wgl.ObjectTypeDX.None": "OpenTK.Graphics.Wgl.ObjectTypeDX.yml", "OpenTK.Graphics.Wgl.ObjectTypeDX.Renderbuffer": "OpenTK.Graphics.Wgl.ObjectTypeDX.yml", @@ -4397,74 +3671,22 @@ "OpenTK.Graphics.Wgl.VideoOutputBufferType.VideoOutFrame": "OpenTK.Graphics.Wgl.VideoOutputBufferType.yml", "OpenTK.Graphics.Wgl.VideoOutputBufferType.VideoOutStackedFields12": "OpenTK.Graphics.Wgl.VideoOutputBufferType.yml", "OpenTK.Graphics.Wgl.VideoOutputBufferType.VideoOutStackedFields21": "OpenTK.Graphics.Wgl.VideoOutputBufferType.yml", - "OpenTK.Graphics.Wgl.WGLColorBufferMask": "OpenTK.Graphics.Wgl.WGLColorBufferMask.yml", - "OpenTK.Graphics.Wgl.WGLColorBufferMask.BackColorBufferBitArb": "OpenTK.Graphics.Wgl.WGLColorBufferMask.yml", - "OpenTK.Graphics.Wgl.WGLColorBufferMask.DepthBufferBitArb": "OpenTK.Graphics.Wgl.WGLColorBufferMask.yml", - "OpenTK.Graphics.Wgl.WGLColorBufferMask.FrontColorBufferBitArb": "OpenTK.Graphics.Wgl.WGLColorBufferMask.yml", - "OpenTK.Graphics.Wgl.WGLColorBufferMask.StencilBufferBitArb": "OpenTK.Graphics.Wgl.WGLColorBufferMask.yml", - "OpenTK.Graphics.Wgl.WGLContextFlagsMask": "OpenTK.Graphics.Wgl.WGLContextFlagsMask.yml", - "OpenTK.Graphics.Wgl.WGLContextFlagsMask.ContextDebugBitArb": "OpenTK.Graphics.Wgl.WGLContextFlagsMask.yml", - "OpenTK.Graphics.Wgl.WGLContextFlagsMask.ContextForwardCompatibleBitArb": "OpenTK.Graphics.Wgl.WGLContextFlagsMask.yml", - "OpenTK.Graphics.Wgl.WGLContextFlagsMask.ContextResetIsolationBitArb": "OpenTK.Graphics.Wgl.WGLContextFlagsMask.yml", - "OpenTK.Graphics.Wgl.WGLContextFlagsMask.ContextRobustAccessBitArb": "OpenTK.Graphics.Wgl.WGLContextFlagsMask.yml", - "OpenTK.Graphics.Wgl.WGLContextProfileMask": "OpenTK.Graphics.Wgl.WGLContextProfileMask.yml", - "OpenTK.Graphics.Wgl.WGLContextProfileMask.ContextCompatibilityProfileBitArb": "OpenTK.Graphics.Wgl.WGLContextProfileMask.yml", - "OpenTK.Graphics.Wgl.WGLContextProfileMask.ContextCoreProfileBitArb": "OpenTK.Graphics.Wgl.WGLContextProfileMask.yml", - "OpenTK.Graphics.Wgl.WGLContextProfileMask.ContextEs2ProfileBitExt": "OpenTK.Graphics.Wgl.WGLContextProfileMask.yml", - "OpenTK.Graphics.Wgl.WGLContextProfileMask.ContextEsProfileBitExt": "OpenTK.Graphics.Wgl.WGLContextProfileMask.yml", - "OpenTK.Graphics.Wgl.WGLDXInteropMaskNV": "OpenTK.Graphics.Wgl.WGLDXInteropMaskNV.yml", - "OpenTK.Graphics.Wgl.WGLDXInteropMaskNV.AccessReadOnlyNv": "OpenTK.Graphics.Wgl.WGLDXInteropMaskNV.yml", - "OpenTK.Graphics.Wgl.WGLDXInteropMaskNV.AccessReadWriteNv": "OpenTK.Graphics.Wgl.WGLDXInteropMaskNV.yml", - "OpenTK.Graphics.Wgl.WGLDXInteropMaskNV.AccessWriteDiscardNv": "OpenTK.Graphics.Wgl.WGLDXInteropMaskNV.yml", - "OpenTK.Graphics.Wgl.WGLImageBufferMaskI3D": "OpenTK.Graphics.Wgl.WGLImageBufferMaskI3D.yml", - "OpenTK.Graphics.Wgl.WGLImageBufferMaskI3D.ImageBufferLockI3d": "OpenTK.Graphics.Wgl.WGLImageBufferMaskI3D.yml", - "OpenTK.Graphics.Wgl.WGLImageBufferMaskI3D.ImageBufferMinAccessI3d": "OpenTK.Graphics.Wgl.WGLImageBufferMaskI3D.yml", - "OpenTK.Graphics.Wgl.WGLLayerPlaneMask": "OpenTK.Graphics.Wgl.WGLLayerPlaneMask.yml", - "OpenTK.Graphics.Wgl.WGLLayerPlaneMask.SwapMainPlane": "OpenTK.Graphics.Wgl.WGLLayerPlaneMask.yml", - "OpenTK.Graphics.Wgl.WGLLayerPlaneMask.SwapOverlay1": "OpenTK.Graphics.Wgl.WGLLayerPlaneMask.yml", - "OpenTK.Graphics.Wgl.WGLLayerPlaneMask.SwapOverlay10": "OpenTK.Graphics.Wgl.WGLLayerPlaneMask.yml", - "OpenTK.Graphics.Wgl.WGLLayerPlaneMask.SwapOverlay11": "OpenTK.Graphics.Wgl.WGLLayerPlaneMask.yml", - "OpenTK.Graphics.Wgl.WGLLayerPlaneMask.SwapOverlay12": "OpenTK.Graphics.Wgl.WGLLayerPlaneMask.yml", - "OpenTK.Graphics.Wgl.WGLLayerPlaneMask.SwapOverlay13": "OpenTK.Graphics.Wgl.WGLLayerPlaneMask.yml", - "OpenTK.Graphics.Wgl.WGLLayerPlaneMask.SwapOverlay14": "OpenTK.Graphics.Wgl.WGLLayerPlaneMask.yml", - "OpenTK.Graphics.Wgl.WGLLayerPlaneMask.SwapOverlay15": "OpenTK.Graphics.Wgl.WGLLayerPlaneMask.yml", - "OpenTK.Graphics.Wgl.WGLLayerPlaneMask.SwapOverlay2": "OpenTK.Graphics.Wgl.WGLLayerPlaneMask.yml", - "OpenTK.Graphics.Wgl.WGLLayerPlaneMask.SwapOverlay3": "OpenTK.Graphics.Wgl.WGLLayerPlaneMask.yml", - "OpenTK.Graphics.Wgl.WGLLayerPlaneMask.SwapOverlay4": "OpenTK.Graphics.Wgl.WGLLayerPlaneMask.yml", - "OpenTK.Graphics.Wgl.WGLLayerPlaneMask.SwapOverlay5": "OpenTK.Graphics.Wgl.WGLLayerPlaneMask.yml", - "OpenTK.Graphics.Wgl.WGLLayerPlaneMask.SwapOverlay6": "OpenTK.Graphics.Wgl.WGLLayerPlaneMask.yml", - "OpenTK.Graphics.Wgl.WGLLayerPlaneMask.SwapOverlay7": "OpenTK.Graphics.Wgl.WGLLayerPlaneMask.yml", - "OpenTK.Graphics.Wgl.WGLLayerPlaneMask.SwapOverlay8": "OpenTK.Graphics.Wgl.WGLLayerPlaneMask.yml", - "OpenTK.Graphics.Wgl.WGLLayerPlaneMask.SwapOverlay9": "OpenTK.Graphics.Wgl.WGLLayerPlaneMask.yml", - "OpenTK.Graphics.Wgl.WGLLayerPlaneMask.SwapUnderlay1": "OpenTK.Graphics.Wgl.WGLLayerPlaneMask.yml", - "OpenTK.Graphics.Wgl.WGLLayerPlaneMask.SwapUnderlay10": "OpenTK.Graphics.Wgl.WGLLayerPlaneMask.yml", - "OpenTK.Graphics.Wgl.WGLLayerPlaneMask.SwapUnderlay11": "OpenTK.Graphics.Wgl.WGLLayerPlaneMask.yml", - "OpenTK.Graphics.Wgl.WGLLayerPlaneMask.SwapUnderlay12": "OpenTK.Graphics.Wgl.WGLLayerPlaneMask.yml", - "OpenTK.Graphics.Wgl.WGLLayerPlaneMask.SwapUnderlay13": "OpenTK.Graphics.Wgl.WGLLayerPlaneMask.yml", - "OpenTK.Graphics.Wgl.WGLLayerPlaneMask.SwapUnderlay14": "OpenTK.Graphics.Wgl.WGLLayerPlaneMask.yml", - "OpenTK.Graphics.Wgl.WGLLayerPlaneMask.SwapUnderlay15": "OpenTK.Graphics.Wgl.WGLLayerPlaneMask.yml", - "OpenTK.Graphics.Wgl.WGLLayerPlaneMask.SwapUnderlay2": "OpenTK.Graphics.Wgl.WGLLayerPlaneMask.yml", - "OpenTK.Graphics.Wgl.WGLLayerPlaneMask.SwapUnderlay3": "OpenTK.Graphics.Wgl.WGLLayerPlaneMask.yml", - "OpenTK.Graphics.Wgl.WGLLayerPlaneMask.SwapUnderlay4": "OpenTK.Graphics.Wgl.WGLLayerPlaneMask.yml", - "OpenTK.Graphics.Wgl.WGLLayerPlaneMask.SwapUnderlay5": "OpenTK.Graphics.Wgl.WGLLayerPlaneMask.yml", - "OpenTK.Graphics.Wgl.WGLLayerPlaneMask.SwapUnderlay6": "OpenTK.Graphics.Wgl.WGLLayerPlaneMask.yml", - "OpenTK.Graphics.Wgl.WGLLayerPlaneMask.SwapUnderlay7": "OpenTK.Graphics.Wgl.WGLLayerPlaneMask.yml", - "OpenTK.Graphics.Wgl.WGLLayerPlaneMask.SwapUnderlay8": "OpenTK.Graphics.Wgl.WGLLayerPlaneMask.yml", - "OpenTK.Graphics.Wgl.WGLLayerPlaneMask.SwapUnderlay9": "OpenTK.Graphics.Wgl.WGLLayerPlaneMask.yml", "OpenTK.Graphics.Wgl.Wgl": "OpenTK.Graphics.Wgl.Wgl.yml", "OpenTK.Graphics.Wgl.Wgl.AMD": "OpenTK.Graphics.Wgl.Wgl.AMD.yml", "OpenTK.Graphics.Wgl.Wgl.AMD.BlitContextFramebufferAMD(System.IntPtr,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,OpenTK.Graphics.OpenGL.ClearBufferMask,OpenTK.Graphics.Wgl.All)": "OpenTK.Graphics.Wgl.Wgl.AMD.yml", "OpenTK.Graphics.Wgl.Wgl.AMD.CreateAssociatedContextAMD(System.UInt32)": "OpenTK.Graphics.Wgl.Wgl.AMD.yml", "OpenTK.Graphics.Wgl.Wgl.AMD.CreateAssociatedContextAttribsAMD(System.UInt32,System.IntPtr,System.Int32*)": "OpenTK.Graphics.Wgl.Wgl.AMD.yml", "OpenTK.Graphics.Wgl.Wgl.AMD.CreateAssociatedContextAttribsAMD(System.UInt32,System.IntPtr,System.Int32@)": "OpenTK.Graphics.Wgl.Wgl.AMD.yml", + "OpenTK.Graphics.Wgl.Wgl.AMD.CreateAssociatedContextAttribsAMD(System.UInt32,System.IntPtr,System.Int32[])": "OpenTK.Graphics.Wgl.Wgl.AMD.yml", + "OpenTK.Graphics.Wgl.Wgl.AMD.CreateAssociatedContextAttribsAMD(System.UInt32,System.IntPtr,System.ReadOnlySpan{System.Int32})": "OpenTK.Graphics.Wgl.Wgl.AMD.yml", "OpenTK.Graphics.Wgl.Wgl.AMD.DeleteAssociatedContextAMD(System.IntPtr)": "OpenTK.Graphics.Wgl.Wgl.AMD.yml", "OpenTK.Graphics.Wgl.Wgl.AMD.DeleteAssociatedContextAMD_(System.IntPtr)": "OpenTK.Graphics.Wgl.Wgl.AMD.yml", "OpenTK.Graphics.Wgl.Wgl.AMD.GetContextGPUIDAMD(System.IntPtr)": "OpenTK.Graphics.Wgl.Wgl.AMD.yml", "OpenTK.Graphics.Wgl.Wgl.AMD.GetCurrentAssociatedContextAMD": "OpenTK.Graphics.Wgl.Wgl.AMD.yml", - "OpenTK.Graphics.Wgl.Wgl.AMD.GetGPUIDsAMD(System.Span{System.UInt32})": "OpenTK.Graphics.Wgl.Wgl.AMD.yml", + "OpenTK.Graphics.Wgl.Wgl.AMD.GetGPUIDsAMD(System.UInt32,System.Span{System.UInt32})": "OpenTK.Graphics.Wgl.Wgl.AMD.yml", "OpenTK.Graphics.Wgl.Wgl.AMD.GetGPUIDsAMD(System.UInt32,System.UInt32*)": "OpenTK.Graphics.Wgl.Wgl.AMD.yml", "OpenTK.Graphics.Wgl.Wgl.AMD.GetGPUIDsAMD(System.UInt32,System.UInt32@)": "OpenTK.Graphics.Wgl.Wgl.AMD.yml", - "OpenTK.Graphics.Wgl.Wgl.AMD.GetGPUIDsAMD(System.UInt32[])": "OpenTK.Graphics.Wgl.Wgl.AMD.yml", + "OpenTK.Graphics.Wgl.Wgl.AMD.GetGPUIDsAMD(System.UInt32,System.UInt32[])": "OpenTK.Graphics.Wgl.Wgl.AMD.yml", "OpenTK.Graphics.Wgl.Wgl.AMD.GetGPUInfoAMD(System.UInt32,OpenTK.Graphics.Wgl.GPUPropertyAMD,OpenTK.Graphics.OpenGL.ScalarType,System.UInt32,System.IntPtr)": "OpenTK.Graphics.Wgl.Wgl.AMD.yml", "OpenTK.Graphics.Wgl.Wgl.AMD.GetGPUInfoAMD(System.UInt32,OpenTK.Graphics.Wgl.GPUPropertyAMD,OpenTK.Graphics.OpenGL.ScalarType,System.UInt32,System.Void*)": "OpenTK.Graphics.Wgl.Wgl.AMD.yml", "OpenTK.Graphics.Wgl.Wgl.AMD.GetGPUInfoAMD``1(System.UInt32,OpenTK.Graphics.Wgl.GPUPropertyAMD,OpenTK.Graphics.OpenGL.ScalarType,System.UInt32,System.Span{``0})": "OpenTK.Graphics.Wgl.Wgl.AMD.yml", @@ -4477,15 +3699,17 @@ "OpenTK.Graphics.Wgl.Wgl.ARB.BindTexImageARB_(System.IntPtr,OpenTK.Graphics.Wgl.ColorBuffer)": "OpenTK.Graphics.Wgl.Wgl.ARB.yml", "OpenTK.Graphics.Wgl.Wgl.ARB.ChoosePixelFormatARB(System.IntPtr,OpenTK.Graphics.Wgl.PixelFormatAttribute*,System.Single*,System.UInt32,System.Int32*,System.UInt32*)": "OpenTK.Graphics.Wgl.Wgl.ARB.yml", "OpenTK.Graphics.Wgl.Wgl.ARB.ChoosePixelFormatARB(System.IntPtr,OpenTK.Graphics.Wgl.PixelFormatAttribute@,System.Single@,System.UInt32,System.Int32@,System.UInt32@)": "OpenTK.Graphics.Wgl.Wgl.ARB.yml", - "OpenTK.Graphics.Wgl.Wgl.ARB.ChoosePixelFormatARB(System.IntPtr,OpenTK.Graphics.Wgl.PixelFormatAttribute[],System.Single[],System.Int32[],System.UInt32[])": "OpenTK.Graphics.Wgl.Wgl.ARB.yml", - "OpenTK.Graphics.Wgl.Wgl.ARB.ChoosePixelFormatARB(System.IntPtr,System.ReadOnlySpan{OpenTK.Graphics.Wgl.PixelFormatAttribute},System.ReadOnlySpan{System.Single},System.Span{System.Int32},System.Span{System.UInt32})": "OpenTK.Graphics.Wgl.Wgl.ARB.yml", - "OpenTK.Graphics.Wgl.Wgl.ARB.CreateBufferRegionARB(System.IntPtr,System.Int32,OpenTK.Graphics.Wgl.WGLColorBufferMask)": "OpenTK.Graphics.Wgl.Wgl.ARB.yml", + "OpenTK.Graphics.Wgl.Wgl.ARB.ChoosePixelFormatARB(System.IntPtr,OpenTK.Graphics.Wgl.PixelFormatAttribute[],System.Single[],System.UInt32,System.Int32[],System.UInt32@)": "OpenTK.Graphics.Wgl.Wgl.ARB.yml", + "OpenTK.Graphics.Wgl.Wgl.ARB.ChoosePixelFormatARB(System.IntPtr,System.ReadOnlySpan{OpenTK.Graphics.Wgl.PixelFormatAttribute},System.ReadOnlySpan{System.Single},System.UInt32,System.Span{System.Int32},System.UInt32@)": "OpenTK.Graphics.Wgl.Wgl.ARB.yml", + "OpenTK.Graphics.Wgl.Wgl.ARB.CreateBufferRegionARB(System.IntPtr,System.Int32,OpenTK.Graphics.Wgl.ColorBufferMask)": "OpenTK.Graphics.Wgl.Wgl.ARB.yml", "OpenTK.Graphics.Wgl.Wgl.ARB.CreateContextAttribsARB(System.IntPtr,System.IntPtr,OpenTK.Graphics.Wgl.ContextAttribs*)": "OpenTK.Graphics.Wgl.Wgl.ARB.yml", "OpenTK.Graphics.Wgl.Wgl.ARB.CreateContextAttribsARB(System.IntPtr,System.IntPtr,OpenTK.Graphics.Wgl.ContextAttribs@)": "OpenTK.Graphics.Wgl.Wgl.ARB.yml", "OpenTK.Graphics.Wgl.Wgl.ARB.CreateContextAttribsARB(System.IntPtr,System.IntPtr,OpenTK.Graphics.Wgl.ContextAttribs[])": "OpenTK.Graphics.Wgl.Wgl.ARB.yml", "OpenTK.Graphics.Wgl.Wgl.ARB.CreateContextAttribsARB(System.IntPtr,System.IntPtr,System.ReadOnlySpan{OpenTK.Graphics.Wgl.ContextAttribs})": "OpenTK.Graphics.Wgl.Wgl.ARB.yml", "OpenTK.Graphics.Wgl.Wgl.ARB.CreatePbufferARB(System.IntPtr,System.Int32,System.Int32,System.Int32,System.Int32*)": "OpenTK.Graphics.Wgl.Wgl.ARB.yml", "OpenTK.Graphics.Wgl.Wgl.ARB.CreatePbufferARB(System.IntPtr,System.Int32,System.Int32,System.Int32,System.Int32@)": "OpenTK.Graphics.Wgl.Wgl.ARB.yml", + "OpenTK.Graphics.Wgl.Wgl.ARB.CreatePbufferARB(System.IntPtr,System.Int32,System.Int32,System.Int32,System.Int32[])": "OpenTK.Graphics.Wgl.Wgl.ARB.yml", + "OpenTK.Graphics.Wgl.Wgl.ARB.CreatePbufferARB(System.IntPtr,System.Int32,System.Int32,System.Int32,System.ReadOnlySpan{System.Int32})": "OpenTK.Graphics.Wgl.Wgl.ARB.yml", "OpenTK.Graphics.Wgl.Wgl.ARB.DeleteBufferRegionARB(System.IntPtr)": "OpenTK.Graphics.Wgl.Wgl.ARB.yml", "OpenTK.Graphics.Wgl.Wgl.ARB.DestroyPbufferARB(System.IntPtr)": "OpenTK.Graphics.Wgl.Wgl.ARB.yml", "OpenTK.Graphics.Wgl.Wgl.ARB.DestroyPbufferARB_(System.IntPtr)": "OpenTK.Graphics.Wgl.Wgl.ARB.yml", @@ -4505,8 +3729,6 @@ "OpenTK.Graphics.Wgl.Wgl.ARB.MakeContextCurrentARB_(System.IntPtr,System.IntPtr,System.IntPtr)": "OpenTK.Graphics.Wgl.Wgl.ARB.yml", "OpenTK.Graphics.Wgl.Wgl.ARB.QueryPbufferARB(System.IntPtr,OpenTK.Graphics.Wgl.PBufferAttribute,System.Int32*)": "OpenTK.Graphics.Wgl.Wgl.ARB.yml", "OpenTK.Graphics.Wgl.Wgl.ARB.QueryPbufferARB(System.IntPtr,OpenTK.Graphics.Wgl.PBufferAttribute,System.Int32@)": "OpenTK.Graphics.Wgl.Wgl.ARB.yml", - "OpenTK.Graphics.Wgl.Wgl.ARB.QueryPbufferARB(System.IntPtr,OpenTK.Graphics.Wgl.PBufferAttribute,System.Int32[])": "OpenTK.Graphics.Wgl.Wgl.ARB.yml", - "OpenTK.Graphics.Wgl.Wgl.ARB.QueryPbufferARB(System.IntPtr,OpenTK.Graphics.Wgl.PBufferAttribute,System.Span{System.Int32})": "OpenTK.Graphics.Wgl.Wgl.ARB.yml", "OpenTK.Graphics.Wgl.Wgl.ARB.ReleasePbufferDCARB(System.IntPtr,System.IntPtr)": "OpenTK.Graphics.Wgl.Wgl.ARB.yml", "OpenTK.Graphics.Wgl.Wgl.ARB.ReleaseTexImageARB(System.IntPtr,OpenTK.Graphics.Wgl.ColorBuffer)": "OpenTK.Graphics.Wgl.Wgl.ARB.yml", "OpenTK.Graphics.Wgl.Wgl.ARB.ReleaseTexImageARB_(System.IntPtr,OpenTK.Graphics.Wgl.ColorBuffer)": "OpenTK.Graphics.Wgl.Wgl.ARB.yml", @@ -4516,10 +3738,10 @@ "OpenTK.Graphics.Wgl.Wgl.ARB.SaveBufferRegionARB_(System.IntPtr,System.Int32,System.Int32,System.Int32,System.Int32)": "OpenTK.Graphics.Wgl.Wgl.ARB.yml", "OpenTK.Graphics.Wgl.Wgl.ARB.SetPbufferAttribARB(System.IntPtr,System.Int32*)": "OpenTK.Graphics.Wgl.Wgl.ARB.yml", "OpenTK.Graphics.Wgl.Wgl.ARB.SetPbufferAttribARB(System.IntPtr,System.Int32@)": "OpenTK.Graphics.Wgl.Wgl.ARB.yml", + "OpenTK.Graphics.Wgl.Wgl.ARB.SetPbufferAttribARB(System.IntPtr,System.Int32[])": "OpenTK.Graphics.Wgl.Wgl.ARB.yml", + "OpenTK.Graphics.Wgl.Wgl.ARB.SetPbufferAttribARB(System.IntPtr,System.ReadOnlySpan{System.Int32})": "OpenTK.Graphics.Wgl.Wgl.ARB.yml", "OpenTK.Graphics.Wgl.Wgl.ChoosePixelFormat(System.IntPtr,OpenTK.Graphics.Wgl.PixelFormatDescriptor*)": "OpenTK.Graphics.Wgl.Wgl.yml", "OpenTK.Graphics.Wgl.Wgl.ChoosePixelFormat(System.IntPtr,OpenTK.Graphics.Wgl.PixelFormatDescriptor@)": "OpenTK.Graphics.Wgl.Wgl.yml", - "OpenTK.Graphics.Wgl.Wgl.ChoosePixelFormat(System.IntPtr,OpenTK.Graphics.Wgl.PixelFormatDescriptor[])": "OpenTK.Graphics.Wgl.Wgl.yml", - "OpenTK.Graphics.Wgl.Wgl.ChoosePixelFormat(System.IntPtr,System.ReadOnlySpan{OpenTK.Graphics.Wgl.PixelFormatDescriptor})": "OpenTK.Graphics.Wgl.Wgl.yml", "OpenTK.Graphics.Wgl.Wgl.CopyContext(System.IntPtr,System.IntPtr,OpenTK.Graphics.OpenGL.AttribMask)": "OpenTK.Graphics.Wgl.Wgl.yml", "OpenTK.Graphics.Wgl.Wgl.CopyContext_(System.IntPtr,System.IntPtr,OpenTK.Graphics.OpenGL.AttribMask)": "OpenTK.Graphics.Wgl.Wgl.yml", "OpenTK.Graphics.Wgl.Wgl.CreateContext(System.IntPtr)": "OpenTK.Graphics.Wgl.Wgl.yml", @@ -4528,21 +3750,19 @@ "OpenTK.Graphics.Wgl.Wgl.DeleteContext_(System.IntPtr)": "OpenTK.Graphics.Wgl.Wgl.yml", "OpenTK.Graphics.Wgl.Wgl.DescribeLayerPlane(System.IntPtr,System.Int32,System.Int32,System.UInt32,OpenTK.Graphics.Wgl.LayerPlaneDescriptor*)": "OpenTK.Graphics.Wgl.Wgl.yml", "OpenTK.Graphics.Wgl.Wgl.DescribeLayerPlane(System.IntPtr,System.Int32,System.Int32,System.UInt32,OpenTK.Graphics.Wgl.LayerPlaneDescriptor@)": "OpenTK.Graphics.Wgl.Wgl.yml", - "OpenTK.Graphics.Wgl.Wgl.DescribeLayerPlane(System.IntPtr,System.Int32,System.Int32,System.UInt32,OpenTK.Graphics.Wgl.LayerPlaneDescriptor[])": "OpenTK.Graphics.Wgl.Wgl.yml", - "OpenTK.Graphics.Wgl.Wgl.DescribeLayerPlane(System.IntPtr,System.Int32,System.Int32,System.UInt32,System.Span{OpenTK.Graphics.Wgl.LayerPlaneDescriptor})": "OpenTK.Graphics.Wgl.Wgl.yml", "OpenTK.Graphics.Wgl.Wgl.DescribePixelFormat(System.IntPtr,System.Int32,System.UInt32,OpenTK.Graphics.Wgl.PixelFormatDescriptor*)": "OpenTK.Graphics.Wgl.Wgl.yml", "OpenTK.Graphics.Wgl.Wgl.DescribePixelFormat(System.IntPtr,System.Int32,System.UInt32,OpenTK.Graphics.Wgl.PixelFormatDescriptor@)": "OpenTK.Graphics.Wgl.Wgl.yml", - "OpenTK.Graphics.Wgl.Wgl.DescribePixelFormat(System.IntPtr,System.Int32,System.UInt32,OpenTK.Graphics.Wgl.PixelFormatDescriptor[])": "OpenTK.Graphics.Wgl.Wgl.yml", - "OpenTK.Graphics.Wgl.Wgl.DescribePixelFormat(System.IntPtr,System.Int32,System.UInt32,System.Span{OpenTK.Graphics.Wgl.PixelFormatDescriptor})": "OpenTK.Graphics.Wgl.Wgl.yml", "OpenTK.Graphics.Wgl.Wgl.EXT": "OpenTK.Graphics.Wgl.Wgl.EXT.yml", "OpenTK.Graphics.Wgl.Wgl.EXT.BindDisplayColorTableEXT(System.UInt16)": "OpenTK.Graphics.Wgl.Wgl.EXT.yml", "OpenTK.Graphics.Wgl.Wgl.EXT.ChoosePixelFormatEXT(System.IntPtr,System.Int32*,System.Single*,System.UInt32,System.Int32*,System.UInt32*)": "OpenTK.Graphics.Wgl.Wgl.EXT.yml", - "OpenTK.Graphics.Wgl.Wgl.EXT.ChoosePixelFormatEXT(System.IntPtr,System.Int32@,System.Single@,System.Int32[],System.UInt32[])": "OpenTK.Graphics.Wgl.Wgl.EXT.yml", - "OpenTK.Graphics.Wgl.Wgl.EXT.ChoosePixelFormatEXT(System.IntPtr,System.Int32@,System.Single@,System.Span{System.Int32},System.Span{System.UInt32})": "OpenTK.Graphics.Wgl.Wgl.EXT.yml", "OpenTK.Graphics.Wgl.Wgl.EXT.ChoosePixelFormatEXT(System.IntPtr,System.Int32@,System.Single@,System.UInt32,System.Int32@,System.UInt32@)": "OpenTK.Graphics.Wgl.Wgl.EXT.yml", + "OpenTK.Graphics.Wgl.Wgl.EXT.ChoosePixelFormatEXT(System.IntPtr,System.Int32[],System.Single[],System.UInt32,System.Int32[],System.UInt32@)": "OpenTK.Graphics.Wgl.Wgl.EXT.yml", + "OpenTK.Graphics.Wgl.Wgl.EXT.ChoosePixelFormatEXT(System.IntPtr,System.ReadOnlySpan{System.Int32},System.ReadOnlySpan{System.Single},System.UInt32,System.Span{System.Int32},System.UInt32@)": "OpenTK.Graphics.Wgl.Wgl.EXT.yml", "OpenTK.Graphics.Wgl.Wgl.EXT.CreateDisplayColorTableEXT(System.UInt16)": "OpenTK.Graphics.Wgl.Wgl.EXT.yml", "OpenTK.Graphics.Wgl.Wgl.EXT.CreatePbufferEXT(System.IntPtr,System.Int32,System.Int32,System.Int32,System.Int32*)": "OpenTK.Graphics.Wgl.Wgl.EXT.yml", "OpenTK.Graphics.Wgl.Wgl.EXT.CreatePbufferEXT(System.IntPtr,System.Int32,System.Int32,System.Int32,System.Int32@)": "OpenTK.Graphics.Wgl.Wgl.EXT.yml", + "OpenTK.Graphics.Wgl.Wgl.EXT.CreatePbufferEXT(System.IntPtr,System.Int32,System.Int32,System.Int32,System.Int32[])": "OpenTK.Graphics.Wgl.Wgl.EXT.yml", + "OpenTK.Graphics.Wgl.Wgl.EXT.CreatePbufferEXT(System.IntPtr,System.Int32,System.Int32,System.Int32,System.ReadOnlySpan{System.Int32})": "OpenTK.Graphics.Wgl.Wgl.EXT.yml", "OpenTK.Graphics.Wgl.Wgl.EXT.DestroyDisplayColorTableEXT(System.UInt16)": "OpenTK.Graphics.Wgl.Wgl.EXT.yml", "OpenTK.Graphics.Wgl.Wgl.EXT.DestroyPbufferEXT(System.IntPtr)": "OpenTK.Graphics.Wgl.Wgl.EXT.yml", "OpenTK.Graphics.Wgl.Wgl.EXT.DestroyPbufferEXT_(System.IntPtr)": "OpenTK.Graphics.Wgl.Wgl.EXT.yml", @@ -4559,16 +3779,14 @@ "OpenTK.Graphics.Wgl.Wgl.EXT.GetPixelFormatAttribivEXT(System.IntPtr,System.Int32,System.Int32,System.UInt32,OpenTK.Graphics.Wgl.PixelFormatAttribute[],System.Int32[])": "OpenTK.Graphics.Wgl.Wgl.EXT.yml", "OpenTK.Graphics.Wgl.Wgl.EXT.GetPixelFormatAttribivEXT(System.IntPtr,System.Int32,System.Int32,System.UInt32,System.Span{OpenTK.Graphics.Wgl.PixelFormatAttribute},System.Span{System.Int32})": "OpenTK.Graphics.Wgl.Wgl.EXT.yml", "OpenTK.Graphics.Wgl.Wgl.EXT.GetSwapIntervalEXT": "OpenTK.Graphics.Wgl.Wgl.EXT.yml", - "OpenTK.Graphics.Wgl.Wgl.EXT.LoadDisplayColorTableEXT(System.ReadOnlySpan{System.UInt16})": "OpenTK.Graphics.Wgl.Wgl.EXT.yml", + "OpenTK.Graphics.Wgl.Wgl.EXT.LoadDisplayColorTableEXT(System.ReadOnlySpan{System.UInt16},System.UInt32)": "OpenTK.Graphics.Wgl.Wgl.EXT.yml", "OpenTK.Graphics.Wgl.Wgl.EXT.LoadDisplayColorTableEXT(System.UInt16*,System.UInt32)": "OpenTK.Graphics.Wgl.Wgl.EXT.yml", "OpenTK.Graphics.Wgl.Wgl.EXT.LoadDisplayColorTableEXT(System.UInt16@,System.UInt32)": "OpenTK.Graphics.Wgl.Wgl.EXT.yml", - "OpenTK.Graphics.Wgl.Wgl.EXT.LoadDisplayColorTableEXT(System.UInt16[])": "OpenTK.Graphics.Wgl.Wgl.EXT.yml", + "OpenTK.Graphics.Wgl.Wgl.EXT.LoadDisplayColorTableEXT(System.UInt16[],System.UInt32)": "OpenTK.Graphics.Wgl.Wgl.EXT.yml", "OpenTK.Graphics.Wgl.Wgl.EXT.MakeContextCurrentEXT(System.IntPtr,System.IntPtr,System.IntPtr)": "OpenTK.Graphics.Wgl.Wgl.EXT.yml", "OpenTK.Graphics.Wgl.Wgl.EXT.MakeContextCurrentEXT_(System.IntPtr,System.IntPtr,System.IntPtr)": "OpenTK.Graphics.Wgl.Wgl.EXT.yml", "OpenTK.Graphics.Wgl.Wgl.EXT.QueryPbufferEXT(System.IntPtr,OpenTK.Graphics.Wgl.PBufferAttribute,System.Int32*)": "OpenTK.Graphics.Wgl.Wgl.EXT.yml", "OpenTK.Graphics.Wgl.Wgl.EXT.QueryPbufferEXT(System.IntPtr,OpenTK.Graphics.Wgl.PBufferAttribute,System.Int32@)": "OpenTK.Graphics.Wgl.Wgl.EXT.yml", - "OpenTK.Graphics.Wgl.Wgl.EXT.QueryPbufferEXT(System.IntPtr,OpenTK.Graphics.Wgl.PBufferAttribute,System.Int32[])": "OpenTK.Graphics.Wgl.Wgl.EXT.yml", - "OpenTK.Graphics.Wgl.Wgl.EXT.QueryPbufferEXT(System.IntPtr,OpenTK.Graphics.Wgl.PBufferAttribute,System.Span{System.Int32})": "OpenTK.Graphics.Wgl.Wgl.EXT.yml", "OpenTK.Graphics.Wgl.Wgl.EXT.ReleasePbufferDCEXT(System.IntPtr,System.IntPtr)": "OpenTK.Graphics.Wgl.Wgl.EXT.yml", "OpenTK.Graphics.Wgl.Wgl.EXT.SwapIntervalEXT(System.Int32)": "OpenTK.Graphics.Wgl.Wgl.EXT.yml", "OpenTK.Graphics.Wgl.Wgl.EXT.SwapIntervalEXT_(System.Int32)": "OpenTK.Graphics.Wgl.Wgl.EXT.yml", @@ -4576,12 +3794,10 @@ "OpenTK.Graphics.Wgl.Wgl.GetCurrentDC": "OpenTK.Graphics.Wgl.Wgl.yml", "OpenTK.Graphics.Wgl.Wgl.GetEnhMetaFilePixelFormat(System.IntPtr,System.UInt32,OpenTK.Graphics.Wgl.PixelFormatDescriptor*)": "OpenTK.Graphics.Wgl.Wgl.yml", "OpenTK.Graphics.Wgl.Wgl.GetEnhMetaFilePixelFormat(System.IntPtr,System.UInt32,OpenTK.Graphics.Wgl.PixelFormatDescriptor@)": "OpenTK.Graphics.Wgl.Wgl.yml", - "OpenTK.Graphics.Wgl.Wgl.GetEnhMetaFilePixelFormat(System.IntPtr,System.UInt32,OpenTK.Graphics.Wgl.PixelFormatDescriptor[])": "OpenTK.Graphics.Wgl.Wgl.yml", - "OpenTK.Graphics.Wgl.Wgl.GetEnhMetaFilePixelFormat(System.IntPtr,System.UInt32,System.Span{OpenTK.Graphics.Wgl.PixelFormatDescriptor})": "OpenTK.Graphics.Wgl.Wgl.yml", - "OpenTK.Graphics.Wgl.Wgl.GetLayerPaletteEntries(System.IntPtr,System.Int32,System.Int32,OpenTK.Graphics.Wgl.ColorRef[])": "OpenTK.Graphics.Wgl.Wgl.yml", "OpenTK.Graphics.Wgl.Wgl.GetLayerPaletteEntries(System.IntPtr,System.Int32,System.Int32,System.Int32,OpenTK.Graphics.Wgl.ColorRef*)": "OpenTK.Graphics.Wgl.Wgl.yml", "OpenTK.Graphics.Wgl.Wgl.GetLayerPaletteEntries(System.IntPtr,System.Int32,System.Int32,System.Int32,OpenTK.Graphics.Wgl.ColorRef@)": "OpenTK.Graphics.Wgl.Wgl.yml", - "OpenTK.Graphics.Wgl.Wgl.GetLayerPaletteEntries(System.IntPtr,System.Int32,System.Int32,System.Span{OpenTK.Graphics.Wgl.ColorRef})": "OpenTK.Graphics.Wgl.Wgl.yml", + "OpenTK.Graphics.Wgl.Wgl.GetLayerPaletteEntries(System.IntPtr,System.Int32,System.Int32,System.Int32,OpenTK.Graphics.Wgl.ColorRef[])": "OpenTK.Graphics.Wgl.Wgl.yml", + "OpenTK.Graphics.Wgl.Wgl.GetLayerPaletteEntries(System.IntPtr,System.Int32,System.Int32,System.Int32,System.Span{OpenTK.Graphics.Wgl.ColorRef})": "OpenTK.Graphics.Wgl.Wgl.yml", "OpenTK.Graphics.Wgl.Wgl.GetPixelFormat(System.IntPtr)": "OpenTK.Graphics.Wgl.Wgl.yml", "OpenTK.Graphics.Wgl.Wgl.GetProcAddress(System.Byte*)": "OpenTK.Graphics.Wgl.Wgl.yml", "OpenTK.Graphics.Wgl.Wgl.GetProcAddress(System.String)": "OpenTK.Graphics.Wgl.Wgl.yml", @@ -4592,7 +3808,7 @@ "OpenTK.Graphics.Wgl.Wgl.I3D.AssociateImageBufferEventsI3D(System.IntPtr,System.ReadOnlySpan{System.IntPtr},System.ReadOnlySpan{System.IntPtr},System.ReadOnlySpan{System.UInt32},System.UInt32)": "OpenTK.Graphics.Wgl.Wgl.I3D.yml", "OpenTK.Graphics.Wgl.Wgl.I3D.BeginFrameTrackingI3D": "OpenTK.Graphics.Wgl.Wgl.I3D.yml", "OpenTK.Graphics.Wgl.Wgl.I3D.BeginFrameTrackingI3D_": "OpenTK.Graphics.Wgl.Wgl.I3D.yml", - "OpenTK.Graphics.Wgl.Wgl.I3D.CreateImageBufferI3D(System.IntPtr,System.UInt32,OpenTK.Graphics.Wgl.WGLImageBufferMaskI3D)": "OpenTK.Graphics.Wgl.Wgl.I3D.yml", + "OpenTK.Graphics.Wgl.Wgl.I3D.CreateImageBufferI3D(System.IntPtr,System.UInt32,OpenTK.Graphics.Wgl.ImageBufferMaskI3D)": "OpenTK.Graphics.Wgl.Wgl.I3D.yml", "OpenTK.Graphics.Wgl.Wgl.I3D.DestroyImageBufferI3D(System.IntPtr,System.IntPtr)": "OpenTK.Graphics.Wgl.Wgl.I3D.yml", "OpenTK.Graphics.Wgl.Wgl.I3D.DestroyImageBufferI3D_(System.IntPtr,System.IntPtr)": "OpenTK.Graphics.Wgl.Wgl.I3D.yml", "OpenTK.Graphics.Wgl.Wgl.I3D.DisableFrameLockI3D": "OpenTK.Graphics.Wgl.Wgl.I3D.yml", @@ -4615,72 +3831,44 @@ "OpenTK.Graphics.Wgl.Wgl.I3D.GenlockSourceI3D_(System.IntPtr,System.UInt32)": "OpenTK.Graphics.Wgl.Wgl.I3D.yml", "OpenTK.Graphics.Wgl.Wgl.I3D.GetDigitalVideoParametersI3D(System.IntPtr,OpenTK.Graphics.Wgl.DigitalVideoAttribute,System.Int32*)": "OpenTK.Graphics.Wgl.Wgl.I3D.yml", "OpenTK.Graphics.Wgl.Wgl.I3D.GetDigitalVideoParametersI3D(System.IntPtr,OpenTK.Graphics.Wgl.DigitalVideoAttribute,System.Int32@)": "OpenTK.Graphics.Wgl.Wgl.I3D.yml", - "OpenTK.Graphics.Wgl.Wgl.I3D.GetDigitalVideoParametersI3D(System.IntPtr,OpenTK.Graphics.Wgl.DigitalVideoAttribute,System.Int32[])": "OpenTK.Graphics.Wgl.Wgl.I3D.yml", - "OpenTK.Graphics.Wgl.Wgl.I3D.GetDigitalVideoParametersI3D(System.IntPtr,OpenTK.Graphics.Wgl.DigitalVideoAttribute,System.Span{System.Int32})": "OpenTK.Graphics.Wgl.Wgl.I3D.yml", "OpenTK.Graphics.Wgl.Wgl.I3D.GetFrameUsageI3D(System.Single*)": "OpenTK.Graphics.Wgl.Wgl.I3D.yml", "OpenTK.Graphics.Wgl.Wgl.I3D.GetFrameUsageI3D(System.Single@)": "OpenTK.Graphics.Wgl.Wgl.I3D.yml", - "OpenTK.Graphics.Wgl.Wgl.I3D.GetFrameUsageI3D(System.Single[])": "OpenTK.Graphics.Wgl.Wgl.I3D.yml", - "OpenTK.Graphics.Wgl.Wgl.I3D.GetFrameUsageI3D(System.Span{System.Single})": "OpenTK.Graphics.Wgl.Wgl.I3D.yml", "OpenTK.Graphics.Wgl.Wgl.I3D.GetGammaTableI3D(System.IntPtr,System.Int32,System.Span{System.UInt16},System.Span{System.UInt16},System.Span{System.UInt16})": "OpenTK.Graphics.Wgl.Wgl.I3D.yml", "OpenTK.Graphics.Wgl.Wgl.I3D.GetGammaTableI3D(System.IntPtr,System.Int32,System.UInt16*,System.UInt16*,System.UInt16*)": "OpenTK.Graphics.Wgl.Wgl.I3D.yml", "OpenTK.Graphics.Wgl.Wgl.I3D.GetGammaTableI3D(System.IntPtr,System.Int32,System.UInt16@,System.UInt16@,System.UInt16@)": "OpenTK.Graphics.Wgl.Wgl.I3D.yml", "OpenTK.Graphics.Wgl.Wgl.I3D.GetGammaTableI3D(System.IntPtr,System.Int32,System.UInt16[],System.UInt16[],System.UInt16[])": "OpenTK.Graphics.Wgl.Wgl.I3D.yml", "OpenTK.Graphics.Wgl.Wgl.I3D.GetGammaTableParametersI3D(System.IntPtr,OpenTK.Graphics.Wgl.GammaTableAttribute,System.Int32*)": "OpenTK.Graphics.Wgl.Wgl.I3D.yml", "OpenTK.Graphics.Wgl.Wgl.I3D.GetGammaTableParametersI3D(System.IntPtr,OpenTK.Graphics.Wgl.GammaTableAttribute,System.Int32@)": "OpenTK.Graphics.Wgl.Wgl.I3D.yml", - "OpenTK.Graphics.Wgl.Wgl.I3D.GetGammaTableParametersI3D(System.IntPtr,OpenTK.Graphics.Wgl.GammaTableAttribute,System.Int32[])": "OpenTK.Graphics.Wgl.Wgl.I3D.yml", - "OpenTK.Graphics.Wgl.Wgl.I3D.GetGammaTableParametersI3D(System.IntPtr,OpenTK.Graphics.Wgl.GammaTableAttribute,System.Span{System.Int32})": "OpenTK.Graphics.Wgl.Wgl.I3D.yml", - "OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSampleRateI3D(System.IntPtr,System.Span{System.UInt32})": "OpenTK.Graphics.Wgl.Wgl.I3D.yml", "OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSampleRateI3D(System.IntPtr,System.UInt32*)": "OpenTK.Graphics.Wgl.Wgl.I3D.yml", "OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSampleRateI3D(System.IntPtr,System.UInt32@)": "OpenTK.Graphics.Wgl.Wgl.I3D.yml", - "OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSampleRateI3D(System.IntPtr,System.UInt32[])": "OpenTK.Graphics.Wgl.Wgl.I3D.yml", - "OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSourceDelayI3D(System.IntPtr,System.Span{System.UInt32})": "OpenTK.Graphics.Wgl.Wgl.I3D.yml", "OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSourceDelayI3D(System.IntPtr,System.UInt32*)": "OpenTK.Graphics.Wgl.Wgl.I3D.yml", "OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSourceDelayI3D(System.IntPtr,System.UInt32@)": "OpenTK.Graphics.Wgl.Wgl.I3D.yml", - "OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSourceDelayI3D(System.IntPtr,System.UInt32[])": "OpenTK.Graphics.Wgl.Wgl.I3D.yml", - "OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSourceEdgeI3D(System.IntPtr,System.Span{System.UInt32})": "OpenTK.Graphics.Wgl.Wgl.I3D.yml", "OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSourceEdgeI3D(System.IntPtr,System.UInt32*)": "OpenTK.Graphics.Wgl.Wgl.I3D.yml", "OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSourceEdgeI3D(System.IntPtr,System.UInt32@)": "OpenTK.Graphics.Wgl.Wgl.I3D.yml", - "OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSourceEdgeI3D(System.IntPtr,System.UInt32[])": "OpenTK.Graphics.Wgl.Wgl.I3D.yml", - "OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSourceI3D(System.IntPtr,System.Span{System.UInt32})": "OpenTK.Graphics.Wgl.Wgl.I3D.yml", "OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSourceI3D(System.IntPtr,System.UInt32*)": "OpenTK.Graphics.Wgl.Wgl.I3D.yml", "OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSourceI3D(System.IntPtr,System.UInt32@)": "OpenTK.Graphics.Wgl.Wgl.I3D.yml", - "OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSourceI3D(System.IntPtr,System.UInt32[])": "OpenTK.Graphics.Wgl.Wgl.I3D.yml", "OpenTK.Graphics.Wgl.Wgl.I3D.IsEnabledFrameLockI3D(System.Int32*)": "OpenTK.Graphics.Wgl.Wgl.I3D.yml", "OpenTK.Graphics.Wgl.Wgl.I3D.IsEnabledFrameLockI3D(System.Int32@)": "OpenTK.Graphics.Wgl.Wgl.I3D.yml", - "OpenTK.Graphics.Wgl.Wgl.I3D.IsEnabledFrameLockI3D(System.Int32[])": "OpenTK.Graphics.Wgl.Wgl.I3D.yml", - "OpenTK.Graphics.Wgl.Wgl.I3D.IsEnabledFrameLockI3D(System.Span{System.Int32})": "OpenTK.Graphics.Wgl.Wgl.I3D.yml", "OpenTK.Graphics.Wgl.Wgl.I3D.IsEnabledGenlockI3D(System.IntPtr,System.Int32*)": "OpenTK.Graphics.Wgl.Wgl.I3D.yml", "OpenTK.Graphics.Wgl.Wgl.I3D.IsEnabledGenlockI3D(System.IntPtr,System.Int32@)": "OpenTK.Graphics.Wgl.Wgl.I3D.yml", - "OpenTK.Graphics.Wgl.Wgl.I3D.IsEnabledGenlockI3D(System.IntPtr,System.Int32[])": "OpenTK.Graphics.Wgl.Wgl.I3D.yml", - "OpenTK.Graphics.Wgl.Wgl.I3D.IsEnabledGenlockI3D(System.IntPtr,System.Span{System.Int32})": "OpenTK.Graphics.Wgl.Wgl.I3D.yml", "OpenTK.Graphics.Wgl.Wgl.I3D.QueryFrameLockMasterI3D(System.Int32*)": "OpenTK.Graphics.Wgl.Wgl.I3D.yml", "OpenTK.Graphics.Wgl.Wgl.I3D.QueryFrameLockMasterI3D(System.Int32@)": "OpenTK.Graphics.Wgl.Wgl.I3D.yml", - "OpenTK.Graphics.Wgl.Wgl.I3D.QueryFrameLockMasterI3D(System.Int32[])": "OpenTK.Graphics.Wgl.Wgl.I3D.yml", - "OpenTK.Graphics.Wgl.Wgl.I3D.QueryFrameLockMasterI3D(System.Span{System.Int32})": "OpenTK.Graphics.Wgl.Wgl.I3D.yml", - "OpenTK.Graphics.Wgl.Wgl.I3D.QueryFrameTrackingI3D(System.Span{System.UInt32},System.Span{System.UInt32},System.Span{System.Single})": "OpenTK.Graphics.Wgl.Wgl.I3D.yml", "OpenTK.Graphics.Wgl.Wgl.I3D.QueryFrameTrackingI3D(System.UInt32*,System.UInt32*,System.Single*)": "OpenTK.Graphics.Wgl.Wgl.I3D.yml", "OpenTK.Graphics.Wgl.Wgl.I3D.QueryFrameTrackingI3D(System.UInt32@,System.UInt32@,System.Single@)": "OpenTK.Graphics.Wgl.Wgl.I3D.yml", - "OpenTK.Graphics.Wgl.Wgl.I3D.QueryFrameTrackingI3D(System.UInt32[],System.UInt32[],System.Single[])": "OpenTK.Graphics.Wgl.Wgl.I3D.yml", - "OpenTK.Graphics.Wgl.Wgl.I3D.QueryGenlockMaxSourceDelayI3D(System.IntPtr,System.Span{System.UInt32},System.Span{System.UInt32})": "OpenTK.Graphics.Wgl.Wgl.I3D.yml", "OpenTK.Graphics.Wgl.Wgl.I3D.QueryGenlockMaxSourceDelayI3D(System.IntPtr,System.UInt32*,System.UInt32*)": "OpenTK.Graphics.Wgl.Wgl.I3D.yml", "OpenTK.Graphics.Wgl.Wgl.I3D.QueryGenlockMaxSourceDelayI3D(System.IntPtr,System.UInt32@,System.UInt32@)": "OpenTK.Graphics.Wgl.Wgl.I3D.yml", - "OpenTK.Graphics.Wgl.Wgl.I3D.QueryGenlockMaxSourceDelayI3D(System.IntPtr,System.UInt32[],System.UInt32[])": "OpenTK.Graphics.Wgl.Wgl.I3D.yml", "OpenTK.Graphics.Wgl.Wgl.I3D.ReleaseImageBufferEventsI3D(System.IntPtr,System.IntPtr*,System.UInt32)": "OpenTK.Graphics.Wgl.Wgl.I3D.yml", "OpenTK.Graphics.Wgl.Wgl.I3D.ReleaseImageBufferEventsI3D(System.IntPtr,System.IntPtr@,System.UInt32)": "OpenTK.Graphics.Wgl.Wgl.I3D.yml", - "OpenTK.Graphics.Wgl.Wgl.I3D.ReleaseImageBufferEventsI3D(System.IntPtr,System.IntPtr[])": "OpenTK.Graphics.Wgl.Wgl.I3D.yml", - "OpenTK.Graphics.Wgl.Wgl.I3D.ReleaseImageBufferEventsI3D(System.IntPtr,System.ReadOnlySpan{System.IntPtr})": "OpenTK.Graphics.Wgl.Wgl.I3D.yml", + "OpenTK.Graphics.Wgl.Wgl.I3D.ReleaseImageBufferEventsI3D(System.IntPtr,System.IntPtr[],System.UInt32)": "OpenTK.Graphics.Wgl.Wgl.I3D.yml", + "OpenTK.Graphics.Wgl.Wgl.I3D.ReleaseImageBufferEventsI3D(System.IntPtr,System.ReadOnlySpan{System.IntPtr},System.UInt32)": "OpenTK.Graphics.Wgl.Wgl.I3D.yml", "OpenTK.Graphics.Wgl.Wgl.I3D.SetDigitalVideoParametersI3D(System.IntPtr,OpenTK.Graphics.Wgl.DigitalVideoAttribute,System.Int32*)": "OpenTK.Graphics.Wgl.Wgl.I3D.yml", "OpenTK.Graphics.Wgl.Wgl.I3D.SetDigitalVideoParametersI3D(System.IntPtr,OpenTK.Graphics.Wgl.DigitalVideoAttribute,System.Int32@)": "OpenTK.Graphics.Wgl.Wgl.I3D.yml", - "OpenTK.Graphics.Wgl.Wgl.I3D.SetDigitalVideoParametersI3D(System.IntPtr,OpenTK.Graphics.Wgl.DigitalVideoAttribute,System.Int32[])": "OpenTK.Graphics.Wgl.Wgl.I3D.yml", - "OpenTK.Graphics.Wgl.Wgl.I3D.SetDigitalVideoParametersI3D(System.IntPtr,OpenTK.Graphics.Wgl.DigitalVideoAttribute,System.ReadOnlySpan{System.Int32})": "OpenTK.Graphics.Wgl.Wgl.I3D.yml", "OpenTK.Graphics.Wgl.Wgl.I3D.SetGammaTableI3D(System.IntPtr,System.Int32,System.ReadOnlySpan{System.UInt16},System.ReadOnlySpan{System.UInt16},System.ReadOnlySpan{System.UInt16})": "OpenTK.Graphics.Wgl.Wgl.I3D.yml", "OpenTK.Graphics.Wgl.Wgl.I3D.SetGammaTableI3D(System.IntPtr,System.Int32,System.UInt16*,System.UInt16*,System.UInt16*)": "OpenTK.Graphics.Wgl.Wgl.I3D.yml", "OpenTK.Graphics.Wgl.Wgl.I3D.SetGammaTableI3D(System.IntPtr,System.Int32,System.UInt16@,System.UInt16@,System.UInt16@)": "OpenTK.Graphics.Wgl.Wgl.I3D.yml", "OpenTK.Graphics.Wgl.Wgl.I3D.SetGammaTableI3D(System.IntPtr,System.Int32,System.UInt16[],System.UInt16[],System.UInt16[])": "OpenTK.Graphics.Wgl.Wgl.I3D.yml", "OpenTK.Graphics.Wgl.Wgl.I3D.SetGammaTableParametersI3D(System.IntPtr,OpenTK.Graphics.Wgl.GammaTableAttribute,System.Int32*)": "OpenTK.Graphics.Wgl.Wgl.I3D.yml", "OpenTK.Graphics.Wgl.Wgl.I3D.SetGammaTableParametersI3D(System.IntPtr,OpenTK.Graphics.Wgl.GammaTableAttribute,System.Int32@)": "OpenTK.Graphics.Wgl.Wgl.I3D.yml", - "OpenTK.Graphics.Wgl.Wgl.I3D.SetGammaTableParametersI3D(System.IntPtr,OpenTK.Graphics.Wgl.GammaTableAttribute,System.Int32[])": "OpenTK.Graphics.Wgl.Wgl.I3D.yml", - "OpenTK.Graphics.Wgl.Wgl.I3D.SetGammaTableParametersI3D(System.IntPtr,OpenTK.Graphics.Wgl.GammaTableAttribute,System.ReadOnlySpan{System.Int32})": "OpenTK.Graphics.Wgl.Wgl.I3D.yml", "OpenTK.Graphics.Wgl.Wgl.MakeCurrent(System.IntPtr,System.IntPtr)": "OpenTK.Graphics.Wgl.Wgl.yml", "OpenTK.Graphics.Wgl.Wgl.MakeCurrent_(System.IntPtr,System.IntPtr)": "OpenTK.Graphics.Wgl.Wgl.yml", "OpenTK.Graphics.Wgl.Wgl.NV": "OpenTK.Graphics.Wgl.Wgl.NV.yml", @@ -4691,39 +3879,37 @@ "OpenTK.Graphics.Wgl.Wgl.NV.BindVideoCaptureDeviceNV_(System.UInt32,System.IntPtr)": "OpenTK.Graphics.Wgl.Wgl.NV.yml", "OpenTK.Graphics.Wgl.Wgl.NV.BindVideoDeviceNV(System.IntPtr,System.UInt32,System.IntPtr,System.Int32*)": "OpenTK.Graphics.Wgl.Wgl.NV.yml", "OpenTK.Graphics.Wgl.Wgl.NV.BindVideoDeviceNV(System.IntPtr,System.UInt32,System.IntPtr,System.Int32@)": "OpenTK.Graphics.Wgl.Wgl.NV.yml", + "OpenTK.Graphics.Wgl.Wgl.NV.BindVideoDeviceNV(System.IntPtr,System.UInt32,System.IntPtr,System.Int32[])": "OpenTK.Graphics.Wgl.Wgl.NV.yml", + "OpenTK.Graphics.Wgl.Wgl.NV.BindVideoDeviceNV(System.IntPtr,System.UInt32,System.IntPtr,System.ReadOnlySpan{System.Int32})": "OpenTK.Graphics.Wgl.Wgl.NV.yml", "OpenTK.Graphics.Wgl.Wgl.NV.BindVideoImageNV(System.IntPtr,System.IntPtr,OpenTK.Graphics.Wgl.VideoOutputBuffer)": "OpenTK.Graphics.Wgl.Wgl.NV.yml", "OpenTK.Graphics.Wgl.Wgl.NV.BindVideoImageNV_(System.IntPtr,System.IntPtr,OpenTK.Graphics.Wgl.VideoOutputBuffer)": "OpenTK.Graphics.Wgl.Wgl.NV.yml", "OpenTK.Graphics.Wgl.Wgl.NV.CopyImageSubDataNV(System.IntPtr,System.UInt32,OpenTK.Graphics.OpenGL.TextureTarget,System.Int32,System.Int32,System.Int32,System.Int32,System.IntPtr,System.UInt32,OpenTK.Graphics.OpenGL.TextureTarget,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)": "OpenTK.Graphics.Wgl.Wgl.NV.yml", "OpenTK.Graphics.Wgl.Wgl.NV.CopyImageSubDataNV_(System.IntPtr,System.UInt32,OpenTK.Graphics.OpenGL.TextureTarget,System.Int32,System.Int32,System.Int32,System.Int32,System.IntPtr,System.UInt32,OpenTK.Graphics.OpenGL.TextureTarget,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)": "OpenTK.Graphics.Wgl.Wgl.NV.yml", "OpenTK.Graphics.Wgl.Wgl.NV.CreateAffinityDCNV(System.IntPtr*)": "OpenTK.Graphics.Wgl.Wgl.NV.yml", "OpenTK.Graphics.Wgl.Wgl.NV.CreateAffinityDCNV(System.IntPtr@)": "OpenTK.Graphics.Wgl.Wgl.NV.yml", + "OpenTK.Graphics.Wgl.Wgl.NV.CreateAffinityDCNV(System.IntPtr[])": "OpenTK.Graphics.Wgl.Wgl.NV.yml", + "OpenTK.Graphics.Wgl.Wgl.NV.CreateAffinityDCNV(System.ReadOnlySpan{System.IntPtr})": "OpenTK.Graphics.Wgl.Wgl.NV.yml", "OpenTK.Graphics.Wgl.Wgl.NV.DXCloseDeviceNV(System.IntPtr)": "OpenTK.Graphics.Wgl.Wgl.NV.yml", "OpenTK.Graphics.Wgl.Wgl.NV.DXCloseDeviceNV_(System.IntPtr)": "OpenTK.Graphics.Wgl.Wgl.NV.yml", "OpenTK.Graphics.Wgl.Wgl.NV.DXLockObjectsNV(System.IntPtr,System.Int32,System.IntPtr*)": "OpenTK.Graphics.Wgl.Wgl.NV.yml", "OpenTK.Graphics.Wgl.Wgl.NV.DXLockObjectsNV(System.IntPtr,System.Int32,System.IntPtr@)": "OpenTK.Graphics.Wgl.Wgl.NV.yml", - "OpenTK.Graphics.Wgl.Wgl.NV.DXLockObjectsNV(System.IntPtr,System.IntPtr[])": "OpenTK.Graphics.Wgl.Wgl.NV.yml", - "OpenTK.Graphics.Wgl.Wgl.NV.DXLockObjectsNV(System.IntPtr,System.Span{System.IntPtr})": "OpenTK.Graphics.Wgl.Wgl.NV.yml", - "OpenTK.Graphics.Wgl.Wgl.NV.DXObjectAccessNV(System.IntPtr,OpenTK.Graphics.Wgl.WGLDXInteropMaskNV)": "OpenTK.Graphics.Wgl.Wgl.NV.yml", - "OpenTK.Graphics.Wgl.Wgl.NV.DXObjectAccessNV_(System.IntPtr,OpenTK.Graphics.Wgl.WGLDXInteropMaskNV)": "OpenTK.Graphics.Wgl.Wgl.NV.yml", + "OpenTK.Graphics.Wgl.Wgl.NV.DXLockObjectsNV(System.IntPtr,System.Int32,System.IntPtr[])": "OpenTK.Graphics.Wgl.Wgl.NV.yml", + "OpenTK.Graphics.Wgl.Wgl.NV.DXLockObjectsNV(System.IntPtr,System.Int32,System.Span{System.IntPtr})": "OpenTK.Graphics.Wgl.Wgl.NV.yml", + "OpenTK.Graphics.Wgl.Wgl.NV.DXObjectAccessNV(System.IntPtr,OpenTK.Graphics.Wgl.DXInteropMaskNV)": "OpenTK.Graphics.Wgl.Wgl.NV.yml", + "OpenTK.Graphics.Wgl.Wgl.NV.DXObjectAccessNV_(System.IntPtr,OpenTK.Graphics.Wgl.DXInteropMaskNV)": "OpenTK.Graphics.Wgl.Wgl.NV.yml", "OpenTK.Graphics.Wgl.Wgl.NV.DXOpenDeviceNV(System.IntPtr)": "OpenTK.Graphics.Wgl.Wgl.NV.yml", "OpenTK.Graphics.Wgl.Wgl.NV.DXOpenDeviceNV(System.Void*)": "OpenTK.Graphics.Wgl.Wgl.NV.yml", - "OpenTK.Graphics.Wgl.Wgl.NV.DXOpenDeviceNV``1(System.Span{``0})": "OpenTK.Graphics.Wgl.Wgl.NV.yml", "OpenTK.Graphics.Wgl.Wgl.NV.DXOpenDeviceNV``1(``0@)": "OpenTK.Graphics.Wgl.Wgl.NV.yml", - "OpenTK.Graphics.Wgl.Wgl.NV.DXOpenDeviceNV``1(``0[])": "OpenTK.Graphics.Wgl.Wgl.NV.yml", - "OpenTK.Graphics.Wgl.Wgl.NV.DXRegisterObjectNV(System.IntPtr,System.IntPtr,System.UInt32,OpenTK.Graphics.Wgl.ObjectTypeDX,OpenTK.Graphics.Wgl.WGLDXInteropMaskNV)": "OpenTK.Graphics.Wgl.Wgl.NV.yml", - "OpenTK.Graphics.Wgl.Wgl.NV.DXRegisterObjectNV(System.IntPtr,System.Void*,System.UInt32,OpenTK.Graphics.Wgl.ObjectTypeDX,OpenTK.Graphics.Wgl.WGLDXInteropMaskNV)": "OpenTK.Graphics.Wgl.Wgl.NV.yml", - "OpenTK.Graphics.Wgl.Wgl.NV.DXRegisterObjectNV``1(System.IntPtr,System.Span{``0},System.UInt32,OpenTK.Graphics.Wgl.ObjectTypeDX,OpenTK.Graphics.Wgl.WGLDXInteropMaskNV)": "OpenTK.Graphics.Wgl.Wgl.NV.yml", - "OpenTK.Graphics.Wgl.Wgl.NV.DXRegisterObjectNV``1(System.IntPtr,``0@,System.UInt32,OpenTK.Graphics.Wgl.ObjectTypeDX,OpenTK.Graphics.Wgl.WGLDXInteropMaskNV)": "OpenTK.Graphics.Wgl.Wgl.NV.yml", - "OpenTK.Graphics.Wgl.Wgl.NV.DXRegisterObjectNV``1(System.IntPtr,``0[],System.UInt32,OpenTK.Graphics.Wgl.ObjectTypeDX,OpenTK.Graphics.Wgl.WGLDXInteropMaskNV)": "OpenTK.Graphics.Wgl.Wgl.NV.yml", + "OpenTK.Graphics.Wgl.Wgl.NV.DXRegisterObjectNV(System.IntPtr,System.IntPtr,System.UInt32,OpenTK.Graphics.Wgl.ObjectTypeDX,OpenTK.Graphics.Wgl.DXInteropMaskNV)": "OpenTK.Graphics.Wgl.Wgl.NV.yml", + "OpenTK.Graphics.Wgl.Wgl.NV.DXRegisterObjectNV(System.IntPtr,System.Void*,System.UInt32,OpenTK.Graphics.Wgl.ObjectTypeDX,OpenTK.Graphics.Wgl.DXInteropMaskNV)": "OpenTK.Graphics.Wgl.Wgl.NV.yml", + "OpenTK.Graphics.Wgl.Wgl.NV.DXRegisterObjectNV``1(System.IntPtr,``0@,System.UInt32,OpenTK.Graphics.Wgl.ObjectTypeDX,OpenTK.Graphics.Wgl.DXInteropMaskNV)": "OpenTK.Graphics.Wgl.Wgl.NV.yml", "OpenTK.Graphics.Wgl.Wgl.NV.DXSetResourceShareHandleNV(System.IntPtr,System.IntPtr)": "OpenTK.Graphics.Wgl.Wgl.NV.yml", "OpenTK.Graphics.Wgl.Wgl.NV.DXSetResourceShareHandleNV(System.Void*,System.IntPtr)": "OpenTK.Graphics.Wgl.Wgl.NV.yml", - "OpenTK.Graphics.Wgl.Wgl.NV.DXSetResourceShareHandleNV``1(System.Span{``0},System.IntPtr)": "OpenTK.Graphics.Wgl.Wgl.NV.yml", "OpenTK.Graphics.Wgl.Wgl.NV.DXSetResourceShareHandleNV``1(``0@,System.IntPtr)": "OpenTK.Graphics.Wgl.Wgl.NV.yml", - "OpenTK.Graphics.Wgl.Wgl.NV.DXSetResourceShareHandleNV``1(``0[],System.IntPtr)": "OpenTK.Graphics.Wgl.Wgl.NV.yml", "OpenTK.Graphics.Wgl.Wgl.NV.DXUnlockObjectsNV(System.IntPtr,System.Int32,System.IntPtr*)": "OpenTK.Graphics.Wgl.Wgl.NV.yml", "OpenTK.Graphics.Wgl.Wgl.NV.DXUnlockObjectsNV(System.IntPtr,System.Int32,System.IntPtr@)": "OpenTK.Graphics.Wgl.Wgl.NV.yml", - "OpenTK.Graphics.Wgl.Wgl.NV.DXUnlockObjectsNV(System.IntPtr,System.IntPtr[])": "OpenTK.Graphics.Wgl.Wgl.NV.yml", - "OpenTK.Graphics.Wgl.Wgl.NV.DXUnlockObjectsNV(System.IntPtr,System.Span{System.IntPtr})": "OpenTK.Graphics.Wgl.Wgl.NV.yml", + "OpenTK.Graphics.Wgl.Wgl.NV.DXUnlockObjectsNV(System.IntPtr,System.Int32,System.IntPtr[])": "OpenTK.Graphics.Wgl.Wgl.NV.yml", + "OpenTK.Graphics.Wgl.Wgl.NV.DXUnlockObjectsNV(System.IntPtr,System.Int32,System.Span{System.IntPtr})": "OpenTK.Graphics.Wgl.Wgl.NV.yml", "OpenTK.Graphics.Wgl.Wgl.NV.DXUnregisterObjectNV(System.IntPtr,System.IntPtr)": "OpenTK.Graphics.Wgl.Wgl.NV.yml", "OpenTK.Graphics.Wgl.Wgl.NV.DXUnregisterObjectNV_(System.IntPtr,System.IntPtr)": "OpenTK.Graphics.Wgl.Wgl.NV.yml", "OpenTK.Graphics.Wgl.Wgl.NV.DelayBeforeSwapNV(System.IntPtr,System.Single)": "OpenTK.Graphics.Wgl.Wgl.NV.yml", @@ -4732,53 +3918,45 @@ "OpenTK.Graphics.Wgl.Wgl.NV.DeleteDCNV_(System.IntPtr)": "OpenTK.Graphics.Wgl.Wgl.NV.yml", "OpenTK.Graphics.Wgl.Wgl.NV.EnumGpuDevicesNV(System.IntPtr,System.UInt32,OpenTK.Graphics.Wgl._GPU_DEVICE*)": "OpenTK.Graphics.Wgl.Wgl.NV.yml", "OpenTK.Graphics.Wgl.Wgl.NV.EnumGpuDevicesNV(System.IntPtr,System.UInt32,OpenTK.Graphics.Wgl._GPU_DEVICE@)": "OpenTK.Graphics.Wgl.Wgl.NV.yml", + "OpenTK.Graphics.Wgl.Wgl.NV.EnumGpuDevicesNV(System.IntPtr,System.UInt32,OpenTK.Graphics.Wgl._GPU_DEVICE[])": "OpenTK.Graphics.Wgl.Wgl.NV.yml", + "OpenTK.Graphics.Wgl.Wgl.NV.EnumGpuDevicesNV(System.IntPtr,System.UInt32,System.Span{OpenTK.Graphics.Wgl._GPU_DEVICE})": "OpenTK.Graphics.Wgl.Wgl.NV.yml", "OpenTK.Graphics.Wgl.Wgl.NV.EnumGpusFromAffinityDCNV(System.IntPtr,System.UInt32,System.IntPtr*)": "OpenTK.Graphics.Wgl.Wgl.NV.yml", "OpenTK.Graphics.Wgl.Wgl.NV.EnumGpusFromAffinityDCNV(System.IntPtr,System.UInt32,System.IntPtr@)": "OpenTK.Graphics.Wgl.Wgl.NV.yml", - "OpenTK.Graphics.Wgl.Wgl.NV.EnumGpusFromAffinityDCNV(System.IntPtr,System.UInt32,System.IntPtr[])": "OpenTK.Graphics.Wgl.Wgl.NV.yml", - "OpenTK.Graphics.Wgl.Wgl.NV.EnumGpusFromAffinityDCNV(System.IntPtr,System.UInt32,System.Span{System.IntPtr})": "OpenTK.Graphics.Wgl.Wgl.NV.yml", "OpenTK.Graphics.Wgl.Wgl.NV.EnumGpusNV(System.UInt32,System.IntPtr*)": "OpenTK.Graphics.Wgl.Wgl.NV.yml", "OpenTK.Graphics.Wgl.Wgl.NV.EnumGpusNV(System.UInt32,System.IntPtr@)": "OpenTK.Graphics.Wgl.Wgl.NV.yml", - "OpenTK.Graphics.Wgl.Wgl.NV.EnumGpusNV(System.UInt32,System.IntPtr[])": "OpenTK.Graphics.Wgl.Wgl.NV.yml", - "OpenTK.Graphics.Wgl.Wgl.NV.EnumGpusNV(System.UInt32,System.Span{System.IntPtr})": "OpenTK.Graphics.Wgl.Wgl.NV.yml", "OpenTK.Graphics.Wgl.Wgl.NV.EnumerateVideoCaptureDevicesNV(System.IntPtr,System.IntPtr*)": "OpenTK.Graphics.Wgl.Wgl.NV.yml", "OpenTK.Graphics.Wgl.Wgl.NV.EnumerateVideoCaptureDevicesNV(System.IntPtr,System.IntPtr@)": "OpenTK.Graphics.Wgl.Wgl.NV.yml", + "OpenTK.Graphics.Wgl.Wgl.NV.EnumerateVideoCaptureDevicesNV(System.IntPtr,System.IntPtr[])": "OpenTK.Graphics.Wgl.Wgl.NV.yml", + "OpenTK.Graphics.Wgl.Wgl.NV.EnumerateVideoCaptureDevicesNV(System.IntPtr,System.Span{System.IntPtr})": "OpenTK.Graphics.Wgl.Wgl.NV.yml", "OpenTK.Graphics.Wgl.Wgl.NV.EnumerateVideoDevicesNV(System.IntPtr,System.IntPtr*)": "OpenTK.Graphics.Wgl.Wgl.NV.yml", "OpenTK.Graphics.Wgl.Wgl.NV.EnumerateVideoDevicesNV(System.IntPtr,System.IntPtr@)": "OpenTK.Graphics.Wgl.Wgl.NV.yml", + "OpenTK.Graphics.Wgl.Wgl.NV.EnumerateVideoDevicesNV(System.IntPtr,System.IntPtr[])": "OpenTK.Graphics.Wgl.Wgl.NV.yml", + "OpenTK.Graphics.Wgl.Wgl.NV.EnumerateVideoDevicesNV(System.IntPtr,System.Span{System.IntPtr})": "OpenTK.Graphics.Wgl.Wgl.NV.yml", "OpenTK.Graphics.Wgl.Wgl.NV.FreeMemoryNV(System.IntPtr)": "OpenTK.Graphics.Wgl.Wgl.NV.yml", "OpenTK.Graphics.Wgl.Wgl.NV.FreeMemoryNV(System.Void*)": "OpenTK.Graphics.Wgl.Wgl.NV.yml", + "OpenTK.Graphics.Wgl.Wgl.NV.FreeMemoryNV``1(System.Span{``0})": "OpenTK.Graphics.Wgl.Wgl.NV.yml", "OpenTK.Graphics.Wgl.Wgl.NV.FreeMemoryNV``1(``0@)": "OpenTK.Graphics.Wgl.Wgl.NV.yml", + "OpenTK.Graphics.Wgl.Wgl.NV.FreeMemoryNV``1(``0[])": "OpenTK.Graphics.Wgl.Wgl.NV.yml", "OpenTK.Graphics.Wgl.Wgl.NV.GetVideoDeviceNV(System.IntPtr,System.Int32,System.IntPtr*)": "OpenTK.Graphics.Wgl.Wgl.NV.yml", "OpenTK.Graphics.Wgl.Wgl.NV.GetVideoDeviceNV(System.IntPtr,System.Int32,System.IntPtr@)": "OpenTK.Graphics.Wgl.Wgl.NV.yml", - "OpenTK.Graphics.Wgl.Wgl.NV.GetVideoDeviceNV(System.IntPtr,System.IntPtr[])": "OpenTK.Graphics.Wgl.Wgl.NV.yml", - "OpenTK.Graphics.Wgl.Wgl.NV.GetVideoDeviceNV(System.IntPtr,System.Span{System.IntPtr})": "OpenTK.Graphics.Wgl.Wgl.NV.yml", - "OpenTK.Graphics.Wgl.Wgl.NV.GetVideoInfoNV(System.IntPtr,System.Span{System.UInt64},System.Span{System.UInt64})": "OpenTK.Graphics.Wgl.Wgl.NV.yml", + "OpenTK.Graphics.Wgl.Wgl.NV.GetVideoDeviceNV(System.IntPtr,System.Int32,System.IntPtr[])": "OpenTK.Graphics.Wgl.Wgl.NV.yml", + "OpenTK.Graphics.Wgl.Wgl.NV.GetVideoDeviceNV(System.IntPtr,System.Int32,System.Span{System.IntPtr})": "OpenTK.Graphics.Wgl.Wgl.NV.yml", "OpenTK.Graphics.Wgl.Wgl.NV.GetVideoInfoNV(System.IntPtr,System.UInt64*,System.UInt64*)": "OpenTK.Graphics.Wgl.Wgl.NV.yml", "OpenTK.Graphics.Wgl.Wgl.NV.GetVideoInfoNV(System.IntPtr,System.UInt64@,System.UInt64@)": "OpenTK.Graphics.Wgl.Wgl.NV.yml", - "OpenTK.Graphics.Wgl.Wgl.NV.GetVideoInfoNV(System.IntPtr,System.UInt64[],System.UInt64[])": "OpenTK.Graphics.Wgl.Wgl.NV.yml", "OpenTK.Graphics.Wgl.Wgl.NV.JoinSwapGroupNV(System.IntPtr,System.UInt32)": "OpenTK.Graphics.Wgl.Wgl.NV.yml", "OpenTK.Graphics.Wgl.Wgl.NV.JoinSwapGroupNV_(System.IntPtr,System.UInt32)": "OpenTK.Graphics.Wgl.Wgl.NV.yml", "OpenTK.Graphics.Wgl.Wgl.NV.LockVideoCaptureDeviceNV(System.IntPtr,System.IntPtr)": "OpenTK.Graphics.Wgl.Wgl.NV.yml", "OpenTK.Graphics.Wgl.Wgl.NV.LockVideoCaptureDeviceNV_(System.IntPtr,System.IntPtr)": "OpenTK.Graphics.Wgl.Wgl.NV.yml", "OpenTK.Graphics.Wgl.Wgl.NV.QueryCurrentContextNV(OpenTK.Graphics.Wgl.ContextAttribute,System.Int32*)": "OpenTK.Graphics.Wgl.Wgl.NV.yml", "OpenTK.Graphics.Wgl.Wgl.NV.QueryCurrentContextNV(OpenTK.Graphics.Wgl.ContextAttribute,System.Int32@)": "OpenTK.Graphics.Wgl.Wgl.NV.yml", - "OpenTK.Graphics.Wgl.Wgl.NV.QueryCurrentContextNV(OpenTK.Graphics.Wgl.ContextAttribute,System.Int32[])": "OpenTK.Graphics.Wgl.Wgl.NV.yml", - "OpenTK.Graphics.Wgl.Wgl.NV.QueryCurrentContextNV(OpenTK.Graphics.Wgl.ContextAttribute,System.Span{System.Int32})": "OpenTK.Graphics.Wgl.Wgl.NV.yml", - "OpenTK.Graphics.Wgl.Wgl.NV.QueryFrameCountNV(System.IntPtr,System.Span{System.UInt32})": "OpenTK.Graphics.Wgl.Wgl.NV.yml", "OpenTK.Graphics.Wgl.Wgl.NV.QueryFrameCountNV(System.IntPtr,System.UInt32*)": "OpenTK.Graphics.Wgl.Wgl.NV.yml", "OpenTK.Graphics.Wgl.Wgl.NV.QueryFrameCountNV(System.IntPtr,System.UInt32@)": "OpenTK.Graphics.Wgl.Wgl.NV.yml", - "OpenTK.Graphics.Wgl.Wgl.NV.QueryFrameCountNV(System.IntPtr,System.UInt32[])": "OpenTK.Graphics.Wgl.Wgl.NV.yml", - "OpenTK.Graphics.Wgl.Wgl.NV.QueryMaxSwapGroupsNV(System.IntPtr,System.Span{System.UInt32},System.Span{System.UInt32})": "OpenTK.Graphics.Wgl.Wgl.NV.yml", "OpenTK.Graphics.Wgl.Wgl.NV.QueryMaxSwapGroupsNV(System.IntPtr,System.UInt32*,System.UInt32*)": "OpenTK.Graphics.Wgl.Wgl.NV.yml", "OpenTK.Graphics.Wgl.Wgl.NV.QueryMaxSwapGroupsNV(System.IntPtr,System.UInt32@,System.UInt32@)": "OpenTK.Graphics.Wgl.Wgl.NV.yml", - "OpenTK.Graphics.Wgl.Wgl.NV.QueryMaxSwapGroupsNV(System.IntPtr,System.UInt32[],System.UInt32[])": "OpenTK.Graphics.Wgl.Wgl.NV.yml", - "OpenTK.Graphics.Wgl.Wgl.NV.QuerySwapGroupNV(System.IntPtr,System.Span{System.UInt32},System.Span{System.UInt32})": "OpenTK.Graphics.Wgl.Wgl.NV.yml", "OpenTK.Graphics.Wgl.Wgl.NV.QuerySwapGroupNV(System.IntPtr,System.UInt32*,System.UInt32*)": "OpenTK.Graphics.Wgl.Wgl.NV.yml", "OpenTK.Graphics.Wgl.Wgl.NV.QuerySwapGroupNV(System.IntPtr,System.UInt32@,System.UInt32@)": "OpenTK.Graphics.Wgl.Wgl.NV.yml", - "OpenTK.Graphics.Wgl.Wgl.NV.QuerySwapGroupNV(System.IntPtr,System.UInt32[],System.UInt32[])": "OpenTK.Graphics.Wgl.Wgl.NV.yml", "OpenTK.Graphics.Wgl.Wgl.NV.QueryVideoCaptureDeviceNV(System.IntPtr,System.IntPtr,OpenTK.Graphics.Wgl.VideoCaptureDeviceAttribute,System.Int32*)": "OpenTK.Graphics.Wgl.Wgl.NV.yml", "OpenTK.Graphics.Wgl.Wgl.NV.QueryVideoCaptureDeviceNV(System.IntPtr,System.IntPtr,OpenTK.Graphics.Wgl.VideoCaptureDeviceAttribute,System.Int32@)": "OpenTK.Graphics.Wgl.Wgl.NV.yml", - "OpenTK.Graphics.Wgl.Wgl.NV.QueryVideoCaptureDeviceNV(System.IntPtr,System.IntPtr,OpenTK.Graphics.Wgl.VideoCaptureDeviceAttribute,System.Int32[])": "OpenTK.Graphics.Wgl.Wgl.NV.yml", - "OpenTK.Graphics.Wgl.Wgl.NV.QueryVideoCaptureDeviceNV(System.IntPtr,System.IntPtr,OpenTK.Graphics.Wgl.VideoCaptureDeviceAttribute,System.Span{System.Int32})": "OpenTK.Graphics.Wgl.Wgl.NV.yml", "OpenTK.Graphics.Wgl.Wgl.NV.ReleaseVideoCaptureDeviceNV(System.IntPtr,System.IntPtr)": "OpenTK.Graphics.Wgl.Wgl.NV.yml", "OpenTK.Graphics.Wgl.Wgl.NV.ReleaseVideoCaptureDeviceNV_(System.IntPtr,System.IntPtr)": "OpenTK.Graphics.Wgl.Wgl.NV.yml", "OpenTK.Graphics.Wgl.Wgl.NV.ReleaseVideoDeviceNV(System.IntPtr)": "OpenTK.Graphics.Wgl.Wgl.NV.yml", @@ -4787,45 +3965,33 @@ "OpenTK.Graphics.Wgl.Wgl.NV.ReleaseVideoImageNV_(System.IntPtr,OpenTK.Graphics.Wgl.VideoOutputBuffer)": "OpenTK.Graphics.Wgl.Wgl.NV.yml", "OpenTK.Graphics.Wgl.Wgl.NV.ResetFrameCountNV(System.IntPtr)": "OpenTK.Graphics.Wgl.Wgl.NV.yml", "OpenTK.Graphics.Wgl.Wgl.NV.ResetFrameCountNV_(System.IntPtr)": "OpenTK.Graphics.Wgl.Wgl.NV.yml", - "OpenTK.Graphics.Wgl.Wgl.NV.SendPbufferToVideoNV(System.IntPtr,OpenTK.Graphics.Wgl.VideoOutputBufferType,System.Span{System.UInt64},System.Int32)": "OpenTK.Graphics.Wgl.Wgl.NV.yml", "OpenTK.Graphics.Wgl.Wgl.NV.SendPbufferToVideoNV(System.IntPtr,OpenTK.Graphics.Wgl.VideoOutputBufferType,System.UInt64*,System.Int32)": "OpenTK.Graphics.Wgl.Wgl.NV.yml", "OpenTK.Graphics.Wgl.Wgl.NV.SendPbufferToVideoNV(System.IntPtr,OpenTK.Graphics.Wgl.VideoOutputBufferType,System.UInt64@,System.Int32)": "OpenTK.Graphics.Wgl.Wgl.NV.yml", - "OpenTK.Graphics.Wgl.Wgl.NV.SendPbufferToVideoNV(System.IntPtr,OpenTK.Graphics.Wgl.VideoOutputBufferType,System.UInt64[],System.Int32)": "OpenTK.Graphics.Wgl.Wgl.NV.yml", "OpenTK.Graphics.Wgl.Wgl.OML": "OpenTK.Graphics.Wgl.Wgl.OML.yml", "OpenTK.Graphics.Wgl.Wgl.OML.GetMscRateOML(System.IntPtr,System.Int32*,System.Int32*)": "OpenTK.Graphics.Wgl.Wgl.OML.yml", "OpenTK.Graphics.Wgl.Wgl.OML.GetMscRateOML(System.IntPtr,System.Int32@,System.Int32@)": "OpenTK.Graphics.Wgl.Wgl.OML.yml", - "OpenTK.Graphics.Wgl.Wgl.OML.GetMscRateOML(System.IntPtr,System.Int32[],System.Int32[])": "OpenTK.Graphics.Wgl.Wgl.OML.yml", - "OpenTK.Graphics.Wgl.Wgl.OML.GetMscRateOML(System.IntPtr,System.Span{System.Int32},System.Span{System.Int32})": "OpenTK.Graphics.Wgl.Wgl.OML.yml", "OpenTK.Graphics.Wgl.Wgl.OML.GetSyncValuesOML(System.IntPtr,System.Int64*,System.Int64*,System.Int64*)": "OpenTK.Graphics.Wgl.Wgl.OML.yml", "OpenTK.Graphics.Wgl.Wgl.OML.GetSyncValuesOML(System.IntPtr,System.Int64@,System.Int64@,System.Int64@)": "OpenTK.Graphics.Wgl.Wgl.OML.yml", - "OpenTK.Graphics.Wgl.Wgl.OML.GetSyncValuesOML(System.IntPtr,System.Int64[],System.Int64[],System.Int64[])": "OpenTK.Graphics.Wgl.Wgl.OML.yml", - "OpenTK.Graphics.Wgl.Wgl.OML.GetSyncValuesOML(System.IntPtr,System.Span{System.Int64},System.Span{System.Int64},System.Span{System.Int64})": "OpenTK.Graphics.Wgl.Wgl.OML.yml", "OpenTK.Graphics.Wgl.Wgl.OML.SwapBuffersMscOML(System.IntPtr,System.Int64,System.Int64,System.Int64)": "OpenTK.Graphics.Wgl.Wgl.OML.yml", - "OpenTK.Graphics.Wgl.Wgl.OML.SwapLayerBuffersMscOML(System.IntPtr,OpenTK.Graphics.Wgl.WGLLayerPlaneMask,System.Int64,System.Int64,System.Int64)": "OpenTK.Graphics.Wgl.Wgl.OML.yml", + "OpenTK.Graphics.Wgl.Wgl.OML.SwapLayerBuffersMscOML(System.IntPtr,OpenTK.Graphics.Wgl.LayerPlaneMask,System.Int64,System.Int64,System.Int64)": "OpenTK.Graphics.Wgl.Wgl.OML.yml", "OpenTK.Graphics.Wgl.Wgl.OML.WaitForMscOML(System.IntPtr,System.Int64,System.Int64,System.Int64,System.Int64*,System.Int64*,System.Int64*)": "OpenTK.Graphics.Wgl.Wgl.OML.yml", "OpenTK.Graphics.Wgl.Wgl.OML.WaitForMscOML(System.IntPtr,System.Int64,System.Int64,System.Int64,System.Int64@,System.Int64@,System.Int64@)": "OpenTK.Graphics.Wgl.Wgl.OML.yml", - "OpenTK.Graphics.Wgl.Wgl.OML.WaitForMscOML(System.IntPtr,System.Int64,System.Int64,System.Int64,System.Int64[],System.Int64[],System.Int64[])": "OpenTK.Graphics.Wgl.Wgl.OML.yml", - "OpenTK.Graphics.Wgl.Wgl.OML.WaitForMscOML(System.IntPtr,System.Int64,System.Int64,System.Int64,System.Span{System.Int64},System.Span{System.Int64},System.Span{System.Int64})": "OpenTK.Graphics.Wgl.Wgl.OML.yml", "OpenTK.Graphics.Wgl.Wgl.OML.WaitForSbcOML(System.IntPtr,System.Int64,System.Int64*,System.Int64*,System.Int64*)": "OpenTK.Graphics.Wgl.Wgl.OML.yml", "OpenTK.Graphics.Wgl.Wgl.OML.WaitForSbcOML(System.IntPtr,System.Int64,System.Int64@,System.Int64@,System.Int64@)": "OpenTK.Graphics.Wgl.Wgl.OML.yml", - "OpenTK.Graphics.Wgl.Wgl.OML.WaitForSbcOML(System.IntPtr,System.Int64,System.Int64[],System.Int64[],System.Int64[])": "OpenTK.Graphics.Wgl.Wgl.OML.yml", - "OpenTK.Graphics.Wgl.Wgl.OML.WaitForSbcOML(System.IntPtr,System.Int64,System.Span{System.Int64},System.Span{System.Int64},System.Span{System.Int64})": "OpenTK.Graphics.Wgl.Wgl.OML.yml", "OpenTK.Graphics.Wgl.Wgl.RealizeLayerPalette(System.IntPtr,System.Int32,System.Int32)": "OpenTK.Graphics.Wgl.Wgl.yml", "OpenTK.Graphics.Wgl.Wgl.RealizeLayerPalette_(System.IntPtr,System.Int32,System.Int32)": "OpenTK.Graphics.Wgl.Wgl.yml", - "OpenTK.Graphics.Wgl.Wgl.SetLayerPaletteEntries(System.IntPtr,System.Int32,System.Int32,OpenTK.Graphics.Wgl.ColorRef[])": "OpenTK.Graphics.Wgl.Wgl.yml", "OpenTK.Graphics.Wgl.Wgl.SetLayerPaletteEntries(System.IntPtr,System.Int32,System.Int32,System.Int32,OpenTK.Graphics.Wgl.ColorRef*)": "OpenTK.Graphics.Wgl.Wgl.yml", "OpenTK.Graphics.Wgl.Wgl.SetLayerPaletteEntries(System.IntPtr,System.Int32,System.Int32,System.Int32,OpenTK.Graphics.Wgl.ColorRef@)": "OpenTK.Graphics.Wgl.Wgl.yml", - "OpenTK.Graphics.Wgl.Wgl.SetLayerPaletteEntries(System.IntPtr,System.Int32,System.Int32,System.ReadOnlySpan{OpenTK.Graphics.Wgl.ColorRef})": "OpenTK.Graphics.Wgl.Wgl.yml", + "OpenTK.Graphics.Wgl.Wgl.SetLayerPaletteEntries(System.IntPtr,System.Int32,System.Int32,System.Int32,OpenTK.Graphics.Wgl.ColorRef[])": "OpenTK.Graphics.Wgl.Wgl.yml", + "OpenTK.Graphics.Wgl.Wgl.SetLayerPaletteEntries(System.IntPtr,System.Int32,System.Int32,System.Int32,System.ReadOnlySpan{OpenTK.Graphics.Wgl.ColorRef})": "OpenTK.Graphics.Wgl.Wgl.yml", "OpenTK.Graphics.Wgl.Wgl.SetPixelFormat(System.IntPtr,System.Int32,OpenTK.Graphics.Wgl.PixelFormatDescriptor*)": "OpenTK.Graphics.Wgl.Wgl.yml", "OpenTK.Graphics.Wgl.Wgl.SetPixelFormat(System.IntPtr,System.Int32,OpenTK.Graphics.Wgl.PixelFormatDescriptor@)": "OpenTK.Graphics.Wgl.Wgl.yml", - "OpenTK.Graphics.Wgl.Wgl.SetPixelFormat(System.IntPtr,System.Int32,OpenTK.Graphics.Wgl.PixelFormatDescriptor[])": "OpenTK.Graphics.Wgl.Wgl.yml", - "OpenTK.Graphics.Wgl.Wgl.SetPixelFormat(System.IntPtr,System.Int32,System.ReadOnlySpan{OpenTK.Graphics.Wgl.PixelFormatDescriptor})": "OpenTK.Graphics.Wgl.Wgl.yml", "OpenTK.Graphics.Wgl.Wgl.ShareLists(System.IntPtr,System.IntPtr)": "OpenTK.Graphics.Wgl.Wgl.yml", "OpenTK.Graphics.Wgl.Wgl.ShareLists_(System.IntPtr,System.IntPtr)": "OpenTK.Graphics.Wgl.Wgl.yml", "OpenTK.Graphics.Wgl.Wgl.SwapBuffers(System.IntPtr)": "OpenTK.Graphics.Wgl.Wgl.yml", "OpenTK.Graphics.Wgl.Wgl.SwapBuffers_(System.IntPtr)": "OpenTK.Graphics.Wgl.Wgl.yml", - "OpenTK.Graphics.Wgl.Wgl.SwapLayerBuffers(System.IntPtr,OpenTK.Graphics.Wgl.WGLLayerPlaneMask)": "OpenTK.Graphics.Wgl.Wgl.yml", - "OpenTK.Graphics.Wgl.Wgl.SwapLayerBuffers_(System.IntPtr,OpenTK.Graphics.Wgl.WGLLayerPlaneMask)": "OpenTK.Graphics.Wgl.Wgl.yml", + "OpenTK.Graphics.Wgl.Wgl.SwapLayerBuffers(System.IntPtr,OpenTK.Graphics.Wgl.LayerPlaneMask)": "OpenTK.Graphics.Wgl.Wgl.yml", + "OpenTK.Graphics.Wgl.Wgl.SwapLayerBuffers_(System.IntPtr,OpenTK.Graphics.Wgl.LayerPlaneMask)": "OpenTK.Graphics.Wgl.Wgl.yml", "OpenTK.Graphics.Wgl.Wgl.UseFontBitmaps(System.IntPtr,System.UInt32,System.UInt32,System.UInt32)": "OpenTK.Graphics.Wgl.Wgl.yml", "OpenTK.Graphics.Wgl.Wgl.UseFontBitmapsA(System.IntPtr,System.UInt32,System.UInt32,System.UInt32)": "OpenTK.Graphics.Wgl.Wgl.yml", "OpenTK.Graphics.Wgl.Wgl.UseFontBitmapsA_(System.IntPtr,System.UInt32,System.UInt32,System.UInt32)": "OpenTK.Graphics.Wgl.Wgl.yml", @@ -5873,79 +5039,29 @@ "OpenTK.Mathematics.IColorSpace3": "OpenTK.Mathematics.IColorSpace3.yml", "OpenTK.Mathematics.IColorSpace4": "OpenTK.Mathematics.IColorSpace4.yml", "OpenTK.Mathematics.MathHelper": "OpenTK.Mathematics.MathHelper.yml", - "OpenTK.Mathematics.MathHelper.Abs(System.Decimal)": "OpenTK.Mathematics.MathHelper.yml", - "OpenTK.Mathematics.MathHelper.Abs(System.Double)": "OpenTK.Mathematics.MathHelper.yml", - "OpenTK.Mathematics.MathHelper.Abs(System.Int16)": "OpenTK.Mathematics.MathHelper.yml", - "OpenTK.Mathematics.MathHelper.Abs(System.Int32)": "OpenTK.Mathematics.MathHelper.yml", - "OpenTK.Mathematics.MathHelper.Abs(System.Int64)": "OpenTK.Mathematics.MathHelper.yml", - "OpenTK.Mathematics.MathHelper.Abs(System.SByte)": "OpenTK.Mathematics.MathHelper.yml", - "OpenTK.Mathematics.MathHelper.Abs(System.Single)": "OpenTK.Mathematics.MathHelper.yml", - "OpenTK.Mathematics.MathHelper.Acos(System.Double)": "OpenTK.Mathematics.MathHelper.yml", "OpenTK.Mathematics.MathHelper.ApproximatelyEqual(System.Single,System.Single,System.Int32)": "OpenTK.Mathematics.MathHelper.yml", "OpenTK.Mathematics.MathHelper.ApproximatelyEqualEpsilon(System.Double,System.Double,System.Double)": "OpenTK.Mathematics.MathHelper.yml", "OpenTK.Mathematics.MathHelper.ApproximatelyEqualEpsilon(System.Single,System.Single,System.Single)": "OpenTK.Mathematics.MathHelper.yml", "OpenTK.Mathematics.MathHelper.ApproximatelyEquivalent(System.Double,System.Double,System.Double)": "OpenTK.Mathematics.MathHelper.yml", "OpenTK.Mathematics.MathHelper.ApproximatelyEquivalent(System.Single,System.Single,System.Single)": "OpenTK.Mathematics.MathHelper.yml", - "OpenTK.Mathematics.MathHelper.Asin(System.Double)": "OpenTK.Mathematics.MathHelper.yml", - "OpenTK.Mathematics.MathHelper.Atan(System.Double)": "OpenTK.Mathematics.MathHelper.yml", - "OpenTK.Mathematics.MathHelper.Atan2(System.Double,System.Double)": "OpenTK.Mathematics.MathHelper.yml", - "OpenTK.Mathematics.MathHelper.BigMul(System.Int32,System.Int32)": "OpenTK.Mathematics.MathHelper.yml", "OpenTK.Mathematics.MathHelper.BinomialCoefficient(System.Int32,System.Int32)": "OpenTK.Mathematics.MathHelper.yml", - "OpenTK.Mathematics.MathHelper.Ceiling(System.Decimal)": "OpenTK.Mathematics.MathHelper.yml", - "OpenTK.Mathematics.MathHelper.Ceiling(System.Double)": "OpenTK.Mathematics.MathHelper.yml", - "OpenTK.Mathematics.MathHelper.Clamp(System.Double,System.Double,System.Double)": "OpenTK.Mathematics.MathHelper.yml", - "OpenTK.Mathematics.MathHelper.Clamp(System.Int32,System.Int32,System.Int32)": "OpenTK.Mathematics.MathHelper.yml", - "OpenTK.Mathematics.MathHelper.Clamp(System.Single,System.Single,System.Single)": "OpenTK.Mathematics.MathHelper.yml", "OpenTK.Mathematics.MathHelper.ClampAngle(System.Double)": "OpenTK.Mathematics.MathHelper.yml", "OpenTK.Mathematics.MathHelper.ClampAngle(System.Single)": "OpenTK.Mathematics.MathHelper.yml", "OpenTK.Mathematics.MathHelper.ClampRadians(System.Double)": "OpenTK.Mathematics.MathHelper.yml", "OpenTK.Mathematics.MathHelper.ClampRadians(System.Single)": "OpenTK.Mathematics.MathHelper.yml", - "OpenTK.Mathematics.MathHelper.Cos(System.Double)": "OpenTK.Mathematics.MathHelper.yml", - "OpenTK.Mathematics.MathHelper.Cosh(System.Double)": "OpenTK.Mathematics.MathHelper.yml", "OpenTK.Mathematics.MathHelper.DegreesToRadians(System.Double)": "OpenTK.Mathematics.MathHelper.yml", "OpenTK.Mathematics.MathHelper.DegreesToRadians(System.Single)": "OpenTK.Mathematics.MathHelper.yml", - "OpenTK.Mathematics.MathHelper.DivRem(System.Int32,System.Int32,System.Int32@)": "OpenTK.Mathematics.MathHelper.yml", - "OpenTK.Mathematics.MathHelper.DivRem(System.Int64,System.Int64,System.Int64@)": "OpenTK.Mathematics.MathHelper.yml", "OpenTK.Mathematics.MathHelper.E": "OpenTK.Mathematics.MathHelper.yml", - "OpenTK.Mathematics.MathHelper.Exp(System.Double)": "OpenTK.Mathematics.MathHelper.yml", + "OpenTK.Mathematics.MathHelper.Elerp(System.Double,System.Double,System.Double)": "OpenTK.Mathematics.MathHelper.yml", + "OpenTK.Mathematics.MathHelper.Elerp(System.Single,System.Single,System.Single)": "OpenTK.Mathematics.MathHelper.yml", "OpenTK.Mathematics.MathHelper.Factorial(System.Int32)": "OpenTK.Mathematics.MathHelper.yml", - "OpenTK.Mathematics.MathHelper.Floor(System.Decimal)": "OpenTK.Mathematics.MathHelper.yml", - "OpenTK.Mathematics.MathHelper.Floor(System.Double)": "OpenTK.Mathematics.MathHelper.yml", - "OpenTK.Mathematics.MathHelper.IEEERemainder(System.Double,System.Double)": "OpenTK.Mathematics.MathHelper.yml", - "OpenTK.Mathematics.MathHelper.InverseSqrtFast(System.Double)": "OpenTK.Mathematics.MathHelper.yml", - "OpenTK.Mathematics.MathHelper.InverseSqrtFast(System.Single)": "OpenTK.Mathematics.MathHelper.yml", "OpenTK.Mathematics.MathHelper.Lerp(System.Double,System.Double,System.Double)": "OpenTK.Mathematics.MathHelper.yml", "OpenTK.Mathematics.MathHelper.Lerp(System.Single,System.Single,System.Single)": "OpenTK.Mathematics.MathHelper.yml", - "OpenTK.Mathematics.MathHelper.Log(System.Double)": "OpenTK.Mathematics.MathHelper.yml", - "OpenTK.Mathematics.MathHelper.Log(System.Double,System.Double)": "OpenTK.Mathematics.MathHelper.yml", - "OpenTK.Mathematics.MathHelper.Log10(System.Double)": "OpenTK.Mathematics.MathHelper.yml", "OpenTK.Mathematics.MathHelper.Log10E": "OpenTK.Mathematics.MathHelper.yml", - "OpenTK.Mathematics.MathHelper.Log2(System.Double)": "OpenTK.Mathematics.MathHelper.yml", "OpenTK.Mathematics.MathHelper.Log2E": "OpenTK.Mathematics.MathHelper.yml", "OpenTK.Mathematics.MathHelper.MapRange(System.Double,System.Double,System.Double,System.Double,System.Double)": "OpenTK.Mathematics.MathHelper.yml", "OpenTK.Mathematics.MathHelper.MapRange(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)": "OpenTK.Mathematics.MathHelper.yml", "OpenTK.Mathematics.MathHelper.MapRange(System.Single,System.Single,System.Single,System.Single,System.Single)": "OpenTK.Mathematics.MathHelper.yml", - "OpenTK.Mathematics.MathHelper.Max(System.Byte,System.Byte)": "OpenTK.Mathematics.MathHelper.yml", - "OpenTK.Mathematics.MathHelper.Max(System.Decimal,System.Decimal)": "OpenTK.Mathematics.MathHelper.yml", - "OpenTK.Mathematics.MathHelper.Max(System.Int16,System.Int16)": "OpenTK.Mathematics.MathHelper.yml", - "OpenTK.Mathematics.MathHelper.Max(System.Int32,System.Int32)": "OpenTK.Mathematics.MathHelper.yml", - "OpenTK.Mathematics.MathHelper.Max(System.Int64,System.Int64)": "OpenTK.Mathematics.MathHelper.yml", - "OpenTK.Mathematics.MathHelper.Max(System.SByte,System.SByte)": "OpenTK.Mathematics.MathHelper.yml", - "OpenTK.Mathematics.MathHelper.Max(System.Single,System.Single)": "OpenTK.Mathematics.MathHelper.yml", - "OpenTK.Mathematics.MathHelper.Max(System.UInt16,System.UInt16)": "OpenTK.Mathematics.MathHelper.yml", - "OpenTK.Mathematics.MathHelper.Max(System.UInt32,System.UInt32)": "OpenTK.Mathematics.MathHelper.yml", - "OpenTK.Mathematics.MathHelper.Max(System.UInt64,System.UInt64)": "OpenTK.Mathematics.MathHelper.yml", - "OpenTK.Mathematics.MathHelper.Min(System.Byte,System.Byte)": "OpenTK.Mathematics.MathHelper.yml", - "OpenTK.Mathematics.MathHelper.Min(System.Decimal,System.Decimal)": "OpenTK.Mathematics.MathHelper.yml", - "OpenTK.Mathematics.MathHelper.Min(System.Double,System.Double)": "OpenTK.Mathematics.MathHelper.yml", - "OpenTK.Mathematics.MathHelper.Min(System.Int16,System.Int16)": "OpenTK.Mathematics.MathHelper.yml", - "OpenTK.Mathematics.MathHelper.Min(System.Int32,System.Int32)": "OpenTK.Mathematics.MathHelper.yml", - "OpenTK.Mathematics.MathHelper.Min(System.Int64,System.Int64)": "OpenTK.Mathematics.MathHelper.yml", - "OpenTK.Mathematics.MathHelper.Min(System.SByte,System.SByte)": "OpenTK.Mathematics.MathHelper.yml", - "OpenTK.Mathematics.MathHelper.Min(System.Single,System.Single)": "OpenTK.Mathematics.MathHelper.yml", - "OpenTK.Mathematics.MathHelper.Min(System.UInt16,System.UInt16)": "OpenTK.Mathematics.MathHelper.yml", - "OpenTK.Mathematics.MathHelper.Min(System.UInt32,System.UInt32)": "OpenTK.Mathematics.MathHelper.yml", - "OpenTK.Mathematics.MathHelper.Min(System.UInt64,System.UInt64)": "OpenTK.Mathematics.MathHelper.yml", "OpenTK.Mathematics.MathHelper.NextPowerOfTwo(System.Double)": "OpenTK.Mathematics.MathHelper.yml", "OpenTK.Mathematics.MathHelper.NextPowerOfTwo(System.Int32)": "OpenTK.Mathematics.MathHelper.yml", "OpenTK.Mathematics.MathHelper.NextPowerOfTwo(System.Int64)": "OpenTK.Mathematics.MathHelper.yml", @@ -5959,33 +5075,10 @@ "OpenTK.Mathematics.MathHelper.PiOver3": "OpenTK.Mathematics.MathHelper.yml", "OpenTK.Mathematics.MathHelper.PiOver4": "OpenTK.Mathematics.MathHelper.yml", "OpenTK.Mathematics.MathHelper.PiOver6": "OpenTK.Mathematics.MathHelper.yml", - "OpenTK.Mathematics.MathHelper.Pow(System.Double,System.Double)": "OpenTK.Mathematics.MathHelper.yml", "OpenTK.Mathematics.MathHelper.RadiansToDegrees(System.Double)": "OpenTK.Mathematics.MathHelper.yml", "OpenTK.Mathematics.MathHelper.RadiansToDegrees(System.Single)": "OpenTK.Mathematics.MathHelper.yml", - "OpenTK.Mathematics.MathHelper.Round(System.Decimal)": "OpenTK.Mathematics.MathHelper.yml", - "OpenTK.Mathematics.MathHelper.Round(System.Decimal,System.Int32)": "OpenTK.Mathematics.MathHelper.yml", - "OpenTK.Mathematics.MathHelper.Round(System.Decimal,System.Int32,System.MidpointRounding)": "OpenTK.Mathematics.MathHelper.yml", - "OpenTK.Mathematics.MathHelper.Round(System.Decimal,System.MidpointRounding)": "OpenTK.Mathematics.MathHelper.yml", - "OpenTK.Mathematics.MathHelper.Round(System.Double)": "OpenTK.Mathematics.MathHelper.yml", - "OpenTK.Mathematics.MathHelper.Round(System.Double,System.Int32)": "OpenTK.Mathematics.MathHelper.yml", - "OpenTK.Mathematics.MathHelper.Round(System.Double,System.Int32,System.MidpointRounding)": "OpenTK.Mathematics.MathHelper.yml", - "OpenTK.Mathematics.MathHelper.Round(System.Double,System.MidpointRounding)": "OpenTK.Mathematics.MathHelper.yml", - "OpenTK.Mathematics.MathHelper.Sign(System.Decimal)": "OpenTK.Mathematics.MathHelper.yml", - "OpenTK.Mathematics.MathHelper.Sign(System.Double)": "OpenTK.Mathematics.MathHelper.yml", - "OpenTK.Mathematics.MathHelper.Sign(System.Int16)": "OpenTK.Mathematics.MathHelper.yml", - "OpenTK.Mathematics.MathHelper.Sign(System.Int32)": "OpenTK.Mathematics.MathHelper.yml", - "OpenTK.Mathematics.MathHelper.Sign(System.Int64)": "OpenTK.Mathematics.MathHelper.yml", - "OpenTK.Mathematics.MathHelper.Sign(System.SByte)": "OpenTK.Mathematics.MathHelper.yml", - "OpenTK.Mathematics.MathHelper.Sign(System.Single)": "OpenTK.Mathematics.MathHelper.yml", - "OpenTK.Mathematics.MathHelper.Sin(System.Double)": "OpenTK.Mathematics.MathHelper.yml", - "OpenTK.Mathematics.MathHelper.Sinh(System.Double)": "OpenTK.Mathematics.MathHelper.yml", - "OpenTK.Mathematics.MathHelper.Sqrt(System.Double)": "OpenTK.Mathematics.MathHelper.yml", "OpenTK.Mathematics.MathHelper.Swap``1(``0@,``0@)": "OpenTK.Mathematics.MathHelper.yml", - "OpenTK.Mathematics.MathHelper.Tan(System.Double)": "OpenTK.Mathematics.MathHelper.yml", - "OpenTK.Mathematics.MathHelper.Tanh(System.Double)": "OpenTK.Mathematics.MathHelper.yml", "OpenTK.Mathematics.MathHelper.ThreePiOver2": "OpenTK.Mathematics.MathHelper.yml", - "OpenTK.Mathematics.MathHelper.Truncate(System.Decimal)": "OpenTK.Mathematics.MathHelper.yml", - "OpenTK.Mathematics.MathHelper.Truncate(System.Double)": "OpenTK.Mathematics.MathHelper.yml", "OpenTK.Mathematics.MathHelper.TwoPi": "OpenTK.Mathematics.MathHelper.yml", "OpenTK.Mathematics.Matrix2": "OpenTK.Mathematics.Matrix2.yml", "OpenTK.Mathematics.Matrix2.#ctor(OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2)": "OpenTK.Mathematics.Matrix2.yml", @@ -6002,6 +5095,8 @@ "OpenTK.Mathematics.Matrix2.CreateScale(System.Single,OpenTK.Mathematics.Matrix2@)": "OpenTK.Mathematics.Matrix2.yml", "OpenTK.Mathematics.Matrix2.CreateScale(System.Single,System.Single)": "OpenTK.Mathematics.Matrix2.yml", "OpenTK.Mathematics.Matrix2.CreateScale(System.Single,System.Single,OpenTK.Mathematics.Matrix2@)": "OpenTK.Mathematics.Matrix2.yml", + "OpenTK.Mathematics.Matrix2.CreateSwizzle(System.Int32,System.Int32)": "OpenTK.Mathematics.Matrix2.yml", + "OpenTK.Mathematics.Matrix2.CreateSwizzle(System.Int32,System.Int32,OpenTK.Mathematics.Matrix2@)": "OpenTK.Mathematics.Matrix2.yml", "OpenTK.Mathematics.Matrix2.Determinant": "OpenTK.Mathematics.Matrix2.yml", "OpenTK.Mathematics.Matrix2.Diagonal": "OpenTK.Mathematics.Matrix2.yml", "OpenTK.Mathematics.Matrix2.Equals(OpenTK.Mathematics.Matrix2)": "OpenTK.Mathematics.Matrix2.yml", @@ -6011,6 +5106,7 @@ "OpenTK.Mathematics.Matrix2.Invert": "OpenTK.Mathematics.Matrix2.yml", "OpenTK.Mathematics.Matrix2.Invert(OpenTK.Mathematics.Matrix2)": "OpenTK.Mathematics.Matrix2.yml", "OpenTK.Mathematics.Matrix2.Invert(OpenTK.Mathematics.Matrix2@,OpenTK.Mathematics.Matrix2@)": "OpenTK.Mathematics.Matrix2.yml", + "OpenTK.Mathematics.Matrix2.Inverted": "OpenTK.Mathematics.Matrix2.yml", "OpenTK.Mathematics.Matrix2.Item(System.Int32,System.Int32)": "OpenTK.Mathematics.Matrix2.yml", "OpenTK.Mathematics.Matrix2.M11": "OpenTK.Mathematics.Matrix2.yml", "OpenTK.Mathematics.Matrix2.M12": "OpenTK.Mathematics.Matrix2.yml", @@ -6028,6 +5124,10 @@ "OpenTK.Mathematics.Matrix2.Row1": "OpenTK.Mathematics.Matrix2.yml", "OpenTK.Mathematics.Matrix2.Subtract(OpenTK.Mathematics.Matrix2,OpenTK.Mathematics.Matrix2)": "OpenTK.Mathematics.Matrix2.yml", "OpenTK.Mathematics.Matrix2.Subtract(OpenTK.Mathematics.Matrix2@,OpenTK.Mathematics.Matrix2@,OpenTK.Mathematics.Matrix2@)": "OpenTK.Mathematics.Matrix2.yml", + "OpenTK.Mathematics.Matrix2.Swizzle(OpenTK.Mathematics.Matrix2,System.Int32,System.Int32)": "OpenTK.Mathematics.Matrix2.yml", + "OpenTK.Mathematics.Matrix2.Swizzle(OpenTK.Mathematics.Matrix2@,System.Int32,System.Int32,OpenTK.Mathematics.Matrix2@)": "OpenTK.Mathematics.Matrix2.yml", + "OpenTK.Mathematics.Matrix2.Swizzle(System.Int32,System.Int32)": "OpenTK.Mathematics.Matrix2.yml", + "OpenTK.Mathematics.Matrix2.Swizzled(System.Int32,System.Int32)": "OpenTK.Mathematics.Matrix2.yml", "OpenTK.Mathematics.Matrix2.ToString": "OpenTK.Mathematics.Matrix2.yml", "OpenTK.Mathematics.Matrix2.ToString(System.IFormatProvider)": "OpenTK.Mathematics.Matrix2.yml", "OpenTK.Mathematics.Matrix2.ToString(System.String)": "OpenTK.Mathematics.Matrix2.yml", @@ -6036,6 +5136,7 @@ "OpenTK.Mathematics.Matrix2.Transpose": "OpenTK.Mathematics.Matrix2.yml", "OpenTK.Mathematics.Matrix2.Transpose(OpenTK.Mathematics.Matrix2)": "OpenTK.Mathematics.Matrix2.yml", "OpenTK.Mathematics.Matrix2.Transpose(OpenTK.Mathematics.Matrix2@,OpenTK.Mathematics.Matrix2@)": "OpenTK.Mathematics.Matrix2.yml", + "OpenTK.Mathematics.Matrix2.Transposed": "OpenTK.Mathematics.Matrix2.yml", "OpenTK.Mathematics.Matrix2.Zero": "OpenTK.Mathematics.Matrix2.yml", "OpenTK.Mathematics.Matrix2.op_Addition(OpenTK.Mathematics.Matrix2,OpenTK.Mathematics.Matrix2)": "OpenTK.Mathematics.Matrix2.yml", "OpenTK.Mathematics.Matrix2.op_Equality(OpenTK.Mathematics.Matrix2,OpenTK.Mathematics.Matrix2)": "OpenTK.Mathematics.Matrix2.yml", @@ -6061,6 +5162,8 @@ "OpenTK.Mathematics.Matrix2d.CreateScale(System.Double,OpenTK.Mathematics.Matrix2d@)": "OpenTK.Mathematics.Matrix2d.yml", "OpenTK.Mathematics.Matrix2d.CreateScale(System.Double,System.Double)": "OpenTK.Mathematics.Matrix2d.yml", "OpenTK.Mathematics.Matrix2d.CreateScale(System.Double,System.Double,OpenTK.Mathematics.Matrix2d@)": "OpenTK.Mathematics.Matrix2d.yml", + "OpenTK.Mathematics.Matrix2d.CreateSwizzle(System.Int32,System.Int32)": "OpenTK.Mathematics.Matrix2d.yml", + "OpenTK.Mathematics.Matrix2d.CreateSwizzle(System.Int32,System.Int32,OpenTK.Mathematics.Matrix2d@)": "OpenTK.Mathematics.Matrix2d.yml", "OpenTK.Mathematics.Matrix2d.Determinant": "OpenTK.Mathematics.Matrix2d.yml", "OpenTK.Mathematics.Matrix2d.Diagonal": "OpenTK.Mathematics.Matrix2d.yml", "OpenTK.Mathematics.Matrix2d.Equals(OpenTK.Mathematics.Matrix2d)": "OpenTK.Mathematics.Matrix2d.yml", @@ -6070,6 +5173,7 @@ "OpenTK.Mathematics.Matrix2d.Invert": "OpenTK.Mathematics.Matrix2d.yml", "OpenTK.Mathematics.Matrix2d.Invert(OpenTK.Mathematics.Matrix2d)": "OpenTK.Mathematics.Matrix2d.yml", "OpenTK.Mathematics.Matrix2d.Invert(OpenTK.Mathematics.Matrix2d@,OpenTK.Mathematics.Matrix2d@)": "OpenTK.Mathematics.Matrix2d.yml", + "OpenTK.Mathematics.Matrix2d.Inverted": "OpenTK.Mathematics.Matrix2d.yml", "OpenTK.Mathematics.Matrix2d.Item(System.Int32,System.Int32)": "OpenTK.Mathematics.Matrix2d.yml", "OpenTK.Mathematics.Matrix2d.M11": "OpenTK.Mathematics.Matrix2d.yml", "OpenTK.Mathematics.Matrix2d.M12": "OpenTK.Mathematics.Matrix2d.yml", @@ -6087,6 +5191,10 @@ "OpenTK.Mathematics.Matrix2d.Row1": "OpenTK.Mathematics.Matrix2d.yml", "OpenTK.Mathematics.Matrix2d.Subtract(OpenTK.Mathematics.Matrix2d,OpenTK.Mathematics.Matrix2d)": "OpenTK.Mathematics.Matrix2d.yml", "OpenTK.Mathematics.Matrix2d.Subtract(OpenTK.Mathematics.Matrix2d@,OpenTK.Mathematics.Matrix2d@,OpenTK.Mathematics.Matrix2d@)": "OpenTK.Mathematics.Matrix2d.yml", + "OpenTK.Mathematics.Matrix2d.Swizzle(OpenTK.Mathematics.Matrix2d,System.Int32,System.Int32)": "OpenTK.Mathematics.Matrix2d.yml", + "OpenTK.Mathematics.Matrix2d.Swizzle(OpenTK.Mathematics.Matrix2d@,System.Int32,System.Int32,OpenTK.Mathematics.Matrix2d@)": "OpenTK.Mathematics.Matrix2d.yml", + "OpenTK.Mathematics.Matrix2d.Swizzle(System.Int32,System.Int32)": "OpenTK.Mathematics.Matrix2d.yml", + "OpenTK.Mathematics.Matrix2d.Swizzled(System.Int32,System.Int32)": "OpenTK.Mathematics.Matrix2d.yml", "OpenTK.Mathematics.Matrix2d.ToString": "OpenTK.Mathematics.Matrix2d.yml", "OpenTK.Mathematics.Matrix2d.ToString(System.IFormatProvider)": "OpenTK.Mathematics.Matrix2d.yml", "OpenTK.Mathematics.Matrix2d.ToString(System.String)": "OpenTK.Mathematics.Matrix2d.yml", @@ -6095,6 +5203,7 @@ "OpenTK.Mathematics.Matrix2d.Transpose": "OpenTK.Mathematics.Matrix2d.yml", "OpenTK.Mathematics.Matrix2d.Transpose(OpenTK.Mathematics.Matrix2d)": "OpenTK.Mathematics.Matrix2d.yml", "OpenTK.Mathematics.Matrix2d.Transpose(OpenTK.Mathematics.Matrix2d@,OpenTK.Mathematics.Matrix2d@)": "OpenTK.Mathematics.Matrix2d.yml", + "OpenTK.Mathematics.Matrix2d.Transposed": "OpenTK.Mathematics.Matrix2d.yml", "OpenTK.Mathematics.Matrix2d.Zero": "OpenTK.Mathematics.Matrix2d.yml", "OpenTK.Mathematics.Matrix2d.op_Addition(OpenTK.Mathematics.Matrix2d,OpenTK.Mathematics.Matrix2d)": "OpenTK.Mathematics.Matrix2d.yml", "OpenTK.Mathematics.Matrix2d.op_Equality(OpenTK.Mathematics.Matrix2d,OpenTK.Mathematics.Matrix2d)": "OpenTK.Mathematics.Matrix2d.yml", @@ -6144,6 +5253,10 @@ "OpenTK.Mathematics.Matrix2x3.Row1": "OpenTK.Mathematics.Matrix2x3.yml", "OpenTK.Mathematics.Matrix2x3.Subtract(OpenTK.Mathematics.Matrix2x3,OpenTK.Mathematics.Matrix2x3)": "OpenTK.Mathematics.Matrix2x3.yml", "OpenTK.Mathematics.Matrix2x3.Subtract(OpenTK.Mathematics.Matrix2x3@,OpenTK.Mathematics.Matrix2x3@,OpenTK.Mathematics.Matrix2x3@)": "OpenTK.Mathematics.Matrix2x3.yml", + "OpenTK.Mathematics.Matrix2x3.Swizzle(OpenTK.Mathematics.Matrix2x3,System.Int32,System.Int32)": "OpenTK.Mathematics.Matrix2x3.yml", + "OpenTK.Mathematics.Matrix2x3.Swizzle(OpenTK.Mathematics.Matrix2x3@,System.Int32,System.Int32,OpenTK.Mathematics.Matrix2x3@)": "OpenTK.Mathematics.Matrix2x3.yml", + "OpenTK.Mathematics.Matrix2x3.Swizzle(System.Int32,System.Int32)": "OpenTK.Mathematics.Matrix2x3.yml", + "OpenTK.Mathematics.Matrix2x3.Swizzled(System.Int32,System.Int32)": "OpenTK.Mathematics.Matrix2x3.yml", "OpenTK.Mathematics.Matrix2x3.ToString": "OpenTK.Mathematics.Matrix2x3.yml", "OpenTK.Mathematics.Matrix2x3.ToString(System.IFormatProvider)": "OpenTK.Mathematics.Matrix2x3.yml", "OpenTK.Mathematics.Matrix2x3.ToString(System.String)": "OpenTK.Mathematics.Matrix2x3.yml", @@ -6151,6 +5264,7 @@ "OpenTK.Mathematics.Matrix2x3.Trace": "OpenTK.Mathematics.Matrix2x3.yml", "OpenTK.Mathematics.Matrix2x3.Transpose(OpenTK.Mathematics.Matrix2x3)": "OpenTK.Mathematics.Matrix2x3.yml", "OpenTK.Mathematics.Matrix2x3.Transpose(OpenTK.Mathematics.Matrix2x3@,OpenTK.Mathematics.Matrix3x2@)": "OpenTK.Mathematics.Matrix2x3.yml", + "OpenTK.Mathematics.Matrix2x3.Transposed": "OpenTK.Mathematics.Matrix2x3.yml", "OpenTK.Mathematics.Matrix2x3.Zero": "OpenTK.Mathematics.Matrix2x3.yml", "OpenTK.Mathematics.Matrix2x3.op_Addition(OpenTK.Mathematics.Matrix2x3,OpenTK.Mathematics.Matrix2x3)": "OpenTK.Mathematics.Matrix2x3.yml", "OpenTK.Mathematics.Matrix2x3.op_Equality(OpenTK.Mathematics.Matrix2x3,OpenTK.Mathematics.Matrix2x3)": "OpenTK.Mathematics.Matrix2x3.yml", @@ -6200,6 +5314,10 @@ "OpenTK.Mathematics.Matrix2x3d.Row1": "OpenTK.Mathematics.Matrix2x3d.yml", "OpenTK.Mathematics.Matrix2x3d.Subtract(OpenTK.Mathematics.Matrix2x3d,OpenTK.Mathematics.Matrix2x3d)": "OpenTK.Mathematics.Matrix2x3d.yml", "OpenTK.Mathematics.Matrix2x3d.Subtract(OpenTK.Mathematics.Matrix2x3d@,OpenTK.Mathematics.Matrix2x3d@,OpenTK.Mathematics.Matrix2x3d@)": "OpenTK.Mathematics.Matrix2x3d.yml", + "OpenTK.Mathematics.Matrix2x3d.Swizzle(OpenTK.Mathematics.Matrix2x3d,System.Int32,System.Int32)": "OpenTK.Mathematics.Matrix2x3d.yml", + "OpenTK.Mathematics.Matrix2x3d.Swizzle(OpenTK.Mathematics.Matrix2x3d@,System.Int32,System.Int32,OpenTK.Mathematics.Matrix2x3d@)": "OpenTK.Mathematics.Matrix2x3d.yml", + "OpenTK.Mathematics.Matrix2x3d.Swizzle(System.Int32,System.Int32)": "OpenTK.Mathematics.Matrix2x3d.yml", + "OpenTK.Mathematics.Matrix2x3d.Swizzled(System.Int32,System.Int32)": "OpenTK.Mathematics.Matrix2x3d.yml", "OpenTK.Mathematics.Matrix2x3d.ToString": "OpenTK.Mathematics.Matrix2x3d.yml", "OpenTK.Mathematics.Matrix2x3d.ToString(System.IFormatProvider)": "OpenTK.Mathematics.Matrix2x3d.yml", "OpenTK.Mathematics.Matrix2x3d.ToString(System.String)": "OpenTK.Mathematics.Matrix2x3d.yml", @@ -6207,6 +5325,7 @@ "OpenTK.Mathematics.Matrix2x3d.Trace": "OpenTK.Mathematics.Matrix2x3d.yml", "OpenTK.Mathematics.Matrix2x3d.Transpose(OpenTK.Mathematics.Matrix2x3d)": "OpenTK.Mathematics.Matrix2x3d.yml", "OpenTK.Mathematics.Matrix2x3d.Transpose(OpenTK.Mathematics.Matrix2x3d@,OpenTK.Mathematics.Matrix3x2d@)": "OpenTK.Mathematics.Matrix2x3d.yml", + "OpenTK.Mathematics.Matrix2x3d.Transposed": "OpenTK.Mathematics.Matrix2x3d.yml", "OpenTK.Mathematics.Matrix2x3d.Zero": "OpenTK.Mathematics.Matrix2x3d.yml", "OpenTK.Mathematics.Matrix2x3d.op_Addition(OpenTK.Mathematics.Matrix2x3d,OpenTK.Mathematics.Matrix2x3d)": "OpenTK.Mathematics.Matrix2x3d.yml", "OpenTK.Mathematics.Matrix2x3d.op_Equality(OpenTK.Mathematics.Matrix2x3d,OpenTK.Mathematics.Matrix2x3d)": "OpenTK.Mathematics.Matrix2x3d.yml", @@ -6259,6 +5378,10 @@ "OpenTK.Mathematics.Matrix2x4.Row1": "OpenTK.Mathematics.Matrix2x4.yml", "OpenTK.Mathematics.Matrix2x4.Subtract(OpenTK.Mathematics.Matrix2x4,OpenTK.Mathematics.Matrix2x4)": "OpenTK.Mathematics.Matrix2x4.yml", "OpenTK.Mathematics.Matrix2x4.Subtract(OpenTK.Mathematics.Matrix2x4@,OpenTK.Mathematics.Matrix2x4@,OpenTK.Mathematics.Matrix2x4@)": "OpenTK.Mathematics.Matrix2x4.yml", + "OpenTK.Mathematics.Matrix2x4.Swizzle(OpenTK.Mathematics.Matrix2x4,System.Int32,System.Int32)": "OpenTK.Mathematics.Matrix2x4.yml", + "OpenTK.Mathematics.Matrix2x4.Swizzle(OpenTK.Mathematics.Matrix2x4@,System.Int32,System.Int32,OpenTK.Mathematics.Matrix2x4@)": "OpenTK.Mathematics.Matrix2x4.yml", + "OpenTK.Mathematics.Matrix2x4.Swizzle(System.Int32,System.Int32)": "OpenTK.Mathematics.Matrix2x4.yml", + "OpenTK.Mathematics.Matrix2x4.Swizzled(System.Int32,System.Int32)": "OpenTK.Mathematics.Matrix2x4.yml", "OpenTK.Mathematics.Matrix2x4.ToString": "OpenTK.Mathematics.Matrix2x4.yml", "OpenTK.Mathematics.Matrix2x4.ToString(System.IFormatProvider)": "OpenTK.Mathematics.Matrix2x4.yml", "OpenTK.Mathematics.Matrix2x4.ToString(System.String)": "OpenTK.Mathematics.Matrix2x4.yml", @@ -6266,6 +5389,7 @@ "OpenTK.Mathematics.Matrix2x4.Trace": "OpenTK.Mathematics.Matrix2x4.yml", "OpenTK.Mathematics.Matrix2x4.Transpose(OpenTK.Mathematics.Matrix2x4)": "OpenTK.Mathematics.Matrix2x4.yml", "OpenTK.Mathematics.Matrix2x4.Transpose(OpenTK.Mathematics.Matrix2x4@,OpenTK.Mathematics.Matrix4x2@)": "OpenTK.Mathematics.Matrix2x4.yml", + "OpenTK.Mathematics.Matrix2x4.Transposed": "OpenTK.Mathematics.Matrix2x4.yml", "OpenTK.Mathematics.Matrix2x4.Zero": "OpenTK.Mathematics.Matrix2x4.yml", "OpenTK.Mathematics.Matrix2x4.op_Addition(OpenTK.Mathematics.Matrix2x4,OpenTK.Mathematics.Matrix2x4)": "OpenTK.Mathematics.Matrix2x4.yml", "OpenTK.Mathematics.Matrix2x4.op_Equality(OpenTK.Mathematics.Matrix2x4,OpenTK.Mathematics.Matrix2x4)": "OpenTK.Mathematics.Matrix2x4.yml", @@ -6318,6 +5442,10 @@ "OpenTK.Mathematics.Matrix2x4d.Row1": "OpenTK.Mathematics.Matrix2x4d.yml", "OpenTK.Mathematics.Matrix2x4d.Subtract(OpenTK.Mathematics.Matrix2x4d,OpenTK.Mathematics.Matrix2x4d)": "OpenTK.Mathematics.Matrix2x4d.yml", "OpenTK.Mathematics.Matrix2x4d.Subtract(OpenTK.Mathematics.Matrix2x4d@,OpenTK.Mathematics.Matrix2x4d@,OpenTK.Mathematics.Matrix2x4d@)": "OpenTK.Mathematics.Matrix2x4d.yml", + "OpenTK.Mathematics.Matrix2x4d.Swizzle(OpenTK.Mathematics.Matrix2x4d,System.Int32,System.Int32)": "OpenTK.Mathematics.Matrix2x4d.yml", + "OpenTK.Mathematics.Matrix2x4d.Swizzle(OpenTK.Mathematics.Matrix2x4d@,System.Int32,System.Int32,OpenTK.Mathematics.Matrix2x4d@)": "OpenTK.Mathematics.Matrix2x4d.yml", + "OpenTK.Mathematics.Matrix2x4d.Swizzle(System.Int32,System.Int32)": "OpenTK.Mathematics.Matrix2x4d.yml", + "OpenTK.Mathematics.Matrix2x4d.Swizzled(System.Int32,System.Int32)": "OpenTK.Mathematics.Matrix2x4d.yml", "OpenTK.Mathematics.Matrix2x4d.ToString": "OpenTK.Mathematics.Matrix2x4d.yml", "OpenTK.Mathematics.Matrix2x4d.ToString(System.IFormatProvider)": "OpenTK.Mathematics.Matrix2x4d.yml", "OpenTK.Mathematics.Matrix2x4d.ToString(System.String)": "OpenTK.Mathematics.Matrix2x4d.yml", @@ -6325,6 +5453,7 @@ "OpenTK.Mathematics.Matrix2x4d.Trace": "OpenTK.Mathematics.Matrix2x4d.yml", "OpenTK.Mathematics.Matrix2x4d.Transpose(OpenTK.Mathematics.Matrix2x4d)": "OpenTK.Mathematics.Matrix2x4d.yml", "OpenTK.Mathematics.Matrix2x4d.Transpose(OpenTK.Mathematics.Matrix2x4d@,OpenTK.Mathematics.Matrix4x2d@)": "OpenTK.Mathematics.Matrix2x4d.yml", + "OpenTK.Mathematics.Matrix2x4d.Transposed": "OpenTK.Mathematics.Matrix2x4d.yml", "OpenTK.Mathematics.Matrix2x4d.Zero": "OpenTK.Mathematics.Matrix2x4d.yml", "OpenTK.Mathematics.Matrix2x4d.op_Addition(OpenTK.Mathematics.Matrix2x4d,OpenTK.Mathematics.Matrix2x4d)": "OpenTK.Mathematics.Matrix2x4d.yml", "OpenTK.Mathematics.Matrix2x4d.op_Equality(OpenTK.Mathematics.Matrix2x4d,OpenTK.Mathematics.Matrix2x4d)": "OpenTK.Mathematics.Matrix2x4d.yml", @@ -6362,6 +5491,8 @@ "OpenTK.Mathematics.Matrix3.CreateScale(System.Single,OpenTK.Mathematics.Matrix3@)": "OpenTK.Mathematics.Matrix3.yml", "OpenTK.Mathematics.Matrix3.CreateScale(System.Single,System.Single,System.Single)": "OpenTK.Mathematics.Matrix3.yml", "OpenTK.Mathematics.Matrix3.CreateScale(System.Single,System.Single,System.Single,OpenTK.Mathematics.Matrix3@)": "OpenTK.Mathematics.Matrix3.yml", + "OpenTK.Mathematics.Matrix3.CreateSwizzle(System.Int32,System.Int32,System.Int32)": "OpenTK.Mathematics.Matrix3.yml", + "OpenTK.Mathematics.Matrix3.CreateSwizzle(System.Int32,System.Int32,System.Int32,OpenTK.Mathematics.Matrix3@)": "OpenTK.Mathematics.Matrix3.yml", "OpenTK.Mathematics.Matrix3.Determinant": "OpenTK.Mathematics.Matrix3.yml", "OpenTK.Mathematics.Matrix3.Diagonal": "OpenTK.Mathematics.Matrix3.yml", "OpenTK.Mathematics.Matrix3.Equals(OpenTK.Mathematics.Matrix3)": "OpenTK.Mathematics.Matrix3.yml", @@ -6391,6 +5522,10 @@ "OpenTK.Mathematics.Matrix3.Row0": "OpenTK.Mathematics.Matrix3.yml", "OpenTK.Mathematics.Matrix3.Row1": "OpenTK.Mathematics.Matrix3.yml", "OpenTK.Mathematics.Matrix3.Row2": "OpenTK.Mathematics.Matrix3.yml", + "OpenTK.Mathematics.Matrix3.Swizzle(OpenTK.Mathematics.Matrix3,System.Int32,System.Int32,System.Int32)": "OpenTK.Mathematics.Matrix3.yml", + "OpenTK.Mathematics.Matrix3.Swizzle(OpenTK.Mathematics.Matrix3@,System.Int32,System.Int32,System.Int32,OpenTK.Mathematics.Matrix3@)": "OpenTK.Mathematics.Matrix3.yml", + "OpenTK.Mathematics.Matrix3.Swizzle(System.Int32,System.Int32,System.Int32)": "OpenTK.Mathematics.Matrix3.yml", + "OpenTK.Mathematics.Matrix3.Swizzled(System.Int32,System.Int32,System.Int32)": "OpenTK.Mathematics.Matrix3.yml", "OpenTK.Mathematics.Matrix3.ToString": "OpenTK.Mathematics.Matrix3.yml", "OpenTK.Mathematics.Matrix3.ToString(System.IFormatProvider)": "OpenTK.Mathematics.Matrix3.yml", "OpenTK.Mathematics.Matrix3.ToString(System.String)": "OpenTK.Mathematics.Matrix3.yml", @@ -6399,6 +5534,7 @@ "OpenTK.Mathematics.Matrix3.Transpose": "OpenTK.Mathematics.Matrix3.yml", "OpenTK.Mathematics.Matrix3.Transpose(OpenTK.Mathematics.Matrix3)": "OpenTK.Mathematics.Matrix3.yml", "OpenTK.Mathematics.Matrix3.Transpose(OpenTK.Mathematics.Matrix3@,OpenTK.Mathematics.Matrix3@)": "OpenTK.Mathematics.Matrix3.yml", + "OpenTK.Mathematics.Matrix3.Transposed": "OpenTK.Mathematics.Matrix3.yml", "OpenTK.Mathematics.Matrix3.Zero": "OpenTK.Mathematics.Matrix3.yml", "OpenTK.Mathematics.Matrix3.op_Equality(OpenTK.Mathematics.Matrix3,OpenTK.Mathematics.Matrix3)": "OpenTK.Mathematics.Matrix3.yml", "OpenTK.Mathematics.Matrix3.op_Inequality(OpenTK.Mathematics.Matrix3,OpenTK.Mathematics.Matrix3)": "OpenTK.Mathematics.Matrix3.yml", @@ -6430,6 +5566,8 @@ "OpenTK.Mathematics.Matrix3d.CreateScale(System.Double,OpenTK.Mathematics.Matrix3d@)": "OpenTK.Mathematics.Matrix3d.yml", "OpenTK.Mathematics.Matrix3d.CreateScale(System.Double,System.Double,System.Double)": "OpenTK.Mathematics.Matrix3d.yml", "OpenTK.Mathematics.Matrix3d.CreateScale(System.Double,System.Double,System.Double,OpenTK.Mathematics.Matrix3d@)": "OpenTK.Mathematics.Matrix3d.yml", + "OpenTK.Mathematics.Matrix3d.CreateSwizzle(System.Int32,System.Int32,System.Int32)": "OpenTK.Mathematics.Matrix3d.yml", + "OpenTK.Mathematics.Matrix3d.CreateSwizzle(System.Int32,System.Int32,System.Int32,OpenTK.Mathematics.Matrix3d@)": "OpenTK.Mathematics.Matrix3d.yml", "OpenTK.Mathematics.Matrix3d.Determinant": "OpenTK.Mathematics.Matrix3d.yml", "OpenTK.Mathematics.Matrix3d.Diagonal": "OpenTK.Mathematics.Matrix3d.yml", "OpenTK.Mathematics.Matrix3d.Equals(OpenTK.Mathematics.Matrix3d)": "OpenTK.Mathematics.Matrix3d.yml", @@ -6459,6 +5597,10 @@ "OpenTK.Mathematics.Matrix3d.Row0": "OpenTK.Mathematics.Matrix3d.yml", "OpenTK.Mathematics.Matrix3d.Row1": "OpenTK.Mathematics.Matrix3d.yml", "OpenTK.Mathematics.Matrix3d.Row2": "OpenTK.Mathematics.Matrix3d.yml", + "OpenTK.Mathematics.Matrix3d.Swizzle(OpenTK.Mathematics.Matrix3d,System.Int32,System.Int32,System.Int32)": "OpenTK.Mathematics.Matrix3d.yml", + "OpenTK.Mathematics.Matrix3d.Swizzle(OpenTK.Mathematics.Matrix3d@,System.Int32,System.Int32,System.Int32,OpenTK.Mathematics.Matrix3d@)": "OpenTK.Mathematics.Matrix3d.yml", + "OpenTK.Mathematics.Matrix3d.Swizzle(System.Int32,System.Int32,System.Int32)": "OpenTK.Mathematics.Matrix3d.yml", + "OpenTK.Mathematics.Matrix3d.Swizzled(System.Int32,System.Int32,System.Int32)": "OpenTK.Mathematics.Matrix3d.yml", "OpenTK.Mathematics.Matrix3d.ToString": "OpenTK.Mathematics.Matrix3d.yml", "OpenTK.Mathematics.Matrix3d.ToString(System.IFormatProvider)": "OpenTK.Mathematics.Matrix3d.yml", "OpenTK.Mathematics.Matrix3d.ToString(System.String)": "OpenTK.Mathematics.Matrix3d.yml", @@ -6467,6 +5609,8 @@ "OpenTK.Mathematics.Matrix3d.Transpose": "OpenTK.Mathematics.Matrix3d.yml", "OpenTK.Mathematics.Matrix3d.Transpose(OpenTK.Mathematics.Matrix3d)": "OpenTK.Mathematics.Matrix3d.yml", "OpenTK.Mathematics.Matrix3d.Transpose(OpenTK.Mathematics.Matrix3d@,OpenTK.Mathematics.Matrix3d@)": "OpenTK.Mathematics.Matrix3d.yml", + "OpenTK.Mathematics.Matrix3d.Transposed": "OpenTK.Mathematics.Matrix3d.yml", + "OpenTK.Mathematics.Matrix3d.Zero": "OpenTK.Mathematics.Matrix3d.yml", "OpenTK.Mathematics.Matrix3d.op_Equality(OpenTK.Mathematics.Matrix3d,OpenTK.Mathematics.Matrix3d)": "OpenTK.Mathematics.Matrix3d.yml", "OpenTK.Mathematics.Matrix3d.op_Inequality(OpenTK.Mathematics.Matrix3d,OpenTK.Mathematics.Matrix3d)": "OpenTK.Mathematics.Matrix3d.yml", "OpenTK.Mathematics.Matrix3d.op_Multiply(OpenTK.Mathematics.Matrix3d,OpenTK.Mathematics.Matrix3d)": "OpenTK.Mathematics.Matrix3d.yml", @@ -6509,6 +5653,10 @@ "OpenTK.Mathematics.Matrix3x2.Row2": "OpenTK.Mathematics.Matrix3x2.yml", "OpenTK.Mathematics.Matrix3x2.Subtract(OpenTK.Mathematics.Matrix3x2,OpenTK.Mathematics.Matrix3x2)": "OpenTK.Mathematics.Matrix3x2.yml", "OpenTK.Mathematics.Matrix3x2.Subtract(OpenTK.Mathematics.Matrix3x2@,OpenTK.Mathematics.Matrix3x2@,OpenTK.Mathematics.Matrix3x2@)": "OpenTK.Mathematics.Matrix3x2.yml", + "OpenTK.Mathematics.Matrix3x2.Swizzle(OpenTK.Mathematics.Matrix3x2,System.Int32,System.Int32,System.Int32)": "OpenTK.Mathematics.Matrix3x2.yml", + "OpenTK.Mathematics.Matrix3x2.Swizzle(OpenTK.Mathematics.Matrix3x2@,System.Int32,System.Int32,System.Int32,OpenTK.Mathematics.Matrix3x2@)": "OpenTK.Mathematics.Matrix3x2.yml", + "OpenTK.Mathematics.Matrix3x2.Swizzle(System.Int32,System.Int32,System.Int32)": "OpenTK.Mathematics.Matrix3x2.yml", + "OpenTK.Mathematics.Matrix3x2.Swizzled(System.Int32,System.Int32,System.Int32)": "OpenTK.Mathematics.Matrix3x2.yml", "OpenTK.Mathematics.Matrix3x2.ToString": "OpenTK.Mathematics.Matrix3x2.yml", "OpenTK.Mathematics.Matrix3x2.ToString(System.IFormatProvider)": "OpenTK.Mathematics.Matrix3x2.yml", "OpenTK.Mathematics.Matrix3x2.ToString(System.String)": "OpenTK.Mathematics.Matrix3x2.yml", @@ -6516,6 +5664,7 @@ "OpenTK.Mathematics.Matrix3x2.Trace": "OpenTK.Mathematics.Matrix3x2.yml", "OpenTK.Mathematics.Matrix3x2.Transpose(OpenTK.Mathematics.Matrix3x2)": "OpenTK.Mathematics.Matrix3x2.yml", "OpenTK.Mathematics.Matrix3x2.Transpose(OpenTK.Mathematics.Matrix3x2@,OpenTK.Mathematics.Matrix2x3@)": "OpenTK.Mathematics.Matrix3x2.yml", + "OpenTK.Mathematics.Matrix3x2.Transposed": "OpenTK.Mathematics.Matrix3x2.yml", "OpenTK.Mathematics.Matrix3x2.Zero": "OpenTK.Mathematics.Matrix3x2.yml", "OpenTK.Mathematics.Matrix3x2.op_Addition(OpenTK.Mathematics.Matrix3x2,OpenTK.Mathematics.Matrix3x2)": "OpenTK.Mathematics.Matrix3x2.yml", "OpenTK.Mathematics.Matrix3x2.op_Equality(OpenTK.Mathematics.Matrix3x2,OpenTK.Mathematics.Matrix3x2)": "OpenTK.Mathematics.Matrix3x2.yml", @@ -6565,6 +5714,10 @@ "OpenTK.Mathematics.Matrix3x2d.Row2": "OpenTK.Mathematics.Matrix3x2d.yml", "OpenTK.Mathematics.Matrix3x2d.Subtract(OpenTK.Mathematics.Matrix3x2d,OpenTK.Mathematics.Matrix3x2d)": "OpenTK.Mathematics.Matrix3x2d.yml", "OpenTK.Mathematics.Matrix3x2d.Subtract(OpenTK.Mathematics.Matrix3x2d@,OpenTK.Mathematics.Matrix3x2d@,OpenTK.Mathematics.Matrix3x2d@)": "OpenTK.Mathematics.Matrix3x2d.yml", + "OpenTK.Mathematics.Matrix3x2d.Swizzle(OpenTK.Mathematics.Matrix3x2d,System.Int32,System.Int32,System.Int32)": "OpenTK.Mathematics.Matrix3x2d.yml", + "OpenTK.Mathematics.Matrix3x2d.Swizzle(OpenTK.Mathematics.Matrix3x2d@,System.Int32,System.Int32,System.Int32,OpenTK.Mathematics.Matrix3x2d@)": "OpenTK.Mathematics.Matrix3x2d.yml", + "OpenTK.Mathematics.Matrix3x2d.Swizzle(System.Int32,System.Int32,System.Int32)": "OpenTK.Mathematics.Matrix3x2d.yml", + "OpenTK.Mathematics.Matrix3x2d.Swizzled(System.Int32,System.Int32,System.Int32)": "OpenTK.Mathematics.Matrix3x2d.yml", "OpenTK.Mathematics.Matrix3x2d.ToString": "OpenTK.Mathematics.Matrix3x2d.yml", "OpenTK.Mathematics.Matrix3x2d.ToString(System.IFormatProvider)": "OpenTK.Mathematics.Matrix3x2d.yml", "OpenTK.Mathematics.Matrix3x2d.ToString(System.String)": "OpenTK.Mathematics.Matrix3x2d.yml", @@ -6572,6 +5725,7 @@ "OpenTK.Mathematics.Matrix3x2d.Trace": "OpenTK.Mathematics.Matrix3x2d.yml", "OpenTK.Mathematics.Matrix3x2d.Transpose(OpenTK.Mathematics.Matrix3x2d)": "OpenTK.Mathematics.Matrix3x2d.yml", "OpenTK.Mathematics.Matrix3x2d.Transpose(OpenTK.Mathematics.Matrix3x2d@,OpenTK.Mathematics.Matrix2x3d@)": "OpenTK.Mathematics.Matrix3x2d.yml", + "OpenTK.Mathematics.Matrix3x2d.Transposed": "OpenTK.Mathematics.Matrix3x2d.yml", "OpenTK.Mathematics.Matrix3x2d.Zero": "OpenTK.Mathematics.Matrix3x2d.yml", "OpenTK.Mathematics.Matrix3x2d.op_Addition(OpenTK.Mathematics.Matrix3x2d,OpenTK.Mathematics.Matrix3x2d)": "OpenTK.Mathematics.Matrix3x2d.yml", "OpenTK.Mathematics.Matrix3x2d.op_Equality(OpenTK.Mathematics.Matrix3x2d,OpenTK.Mathematics.Matrix3x2d)": "OpenTK.Mathematics.Matrix3x2d.yml", @@ -6615,6 +5769,7 @@ "OpenTK.Mathematics.Matrix3x4.Invert": "OpenTK.Mathematics.Matrix3x4.yml", "OpenTK.Mathematics.Matrix3x4.Invert(OpenTK.Mathematics.Matrix3x4)": "OpenTK.Mathematics.Matrix3x4.yml", "OpenTK.Mathematics.Matrix3x4.Invert(OpenTK.Mathematics.Matrix3x4@,OpenTK.Mathematics.Matrix3x4@)": "OpenTK.Mathematics.Matrix3x4.yml", + "OpenTK.Mathematics.Matrix3x4.Inverted": "OpenTK.Mathematics.Matrix3x4.yml", "OpenTK.Mathematics.Matrix3x4.Item(System.Int32,System.Int32)": "OpenTK.Mathematics.Matrix3x4.yml", "OpenTK.Mathematics.Matrix3x4.M11": "OpenTK.Mathematics.Matrix3x4.yml", "OpenTK.Mathematics.Matrix3x4.M12": "OpenTK.Mathematics.Matrix3x4.yml", @@ -6639,6 +5794,10 @@ "OpenTK.Mathematics.Matrix3x4.Row2": "OpenTK.Mathematics.Matrix3x4.yml", "OpenTK.Mathematics.Matrix3x4.Subtract(OpenTK.Mathematics.Matrix3x4,OpenTK.Mathematics.Matrix3x4)": "OpenTK.Mathematics.Matrix3x4.yml", "OpenTK.Mathematics.Matrix3x4.Subtract(OpenTK.Mathematics.Matrix3x4@,OpenTK.Mathematics.Matrix3x4@,OpenTK.Mathematics.Matrix3x4@)": "OpenTK.Mathematics.Matrix3x4.yml", + "OpenTK.Mathematics.Matrix3x4.Swizzle(OpenTK.Mathematics.Matrix3x4,System.Int32,System.Int32,System.Int32)": "OpenTK.Mathematics.Matrix3x4.yml", + "OpenTK.Mathematics.Matrix3x4.Swizzle(OpenTK.Mathematics.Matrix3x4@,System.Int32,System.Int32,System.Int32,OpenTK.Mathematics.Matrix3x4@)": "OpenTK.Mathematics.Matrix3x4.yml", + "OpenTK.Mathematics.Matrix3x4.Swizzle(System.Int32,System.Int32,System.Int32)": "OpenTK.Mathematics.Matrix3x4.yml", + "OpenTK.Mathematics.Matrix3x4.Swizzled(System.Int32,System.Int32,System.Int32)": "OpenTK.Mathematics.Matrix3x4.yml", "OpenTK.Mathematics.Matrix3x4.ToString": "OpenTK.Mathematics.Matrix3x4.yml", "OpenTK.Mathematics.Matrix3x4.ToString(System.IFormatProvider)": "OpenTK.Mathematics.Matrix3x4.yml", "OpenTK.Mathematics.Matrix3x4.ToString(System.String)": "OpenTK.Mathematics.Matrix3x4.yml", @@ -6646,6 +5805,7 @@ "OpenTK.Mathematics.Matrix3x4.Trace": "OpenTK.Mathematics.Matrix3x4.yml", "OpenTK.Mathematics.Matrix3x4.Transpose(OpenTK.Mathematics.Matrix3x4)": "OpenTK.Mathematics.Matrix3x4.yml", "OpenTK.Mathematics.Matrix3x4.Transpose(OpenTK.Mathematics.Matrix3x4@,OpenTK.Mathematics.Matrix4x3@)": "OpenTK.Mathematics.Matrix3x4.yml", + "OpenTK.Mathematics.Matrix3x4.Transposed": "OpenTK.Mathematics.Matrix3x4.yml", "OpenTK.Mathematics.Matrix3x4.Zero": "OpenTK.Mathematics.Matrix3x4.yml", "OpenTK.Mathematics.Matrix3x4.op_Addition(OpenTK.Mathematics.Matrix3x4,OpenTK.Mathematics.Matrix3x4)": "OpenTK.Mathematics.Matrix3x4.yml", "OpenTK.Mathematics.Matrix3x4.op_Equality(OpenTK.Mathematics.Matrix3x4,OpenTK.Mathematics.Matrix3x4)": "OpenTK.Mathematics.Matrix3x4.yml", @@ -6687,6 +5847,7 @@ "OpenTK.Mathematics.Matrix3x4d.Invert": "OpenTK.Mathematics.Matrix3x4d.yml", "OpenTK.Mathematics.Matrix3x4d.Invert(OpenTK.Mathematics.Matrix3x4d)": "OpenTK.Mathematics.Matrix3x4d.yml", "OpenTK.Mathematics.Matrix3x4d.Invert(OpenTK.Mathematics.Matrix3x4d@,OpenTK.Mathematics.Matrix3x4d@)": "OpenTK.Mathematics.Matrix3x4d.yml", + "OpenTK.Mathematics.Matrix3x4d.Inverted": "OpenTK.Mathematics.Matrix3x4d.yml", "OpenTK.Mathematics.Matrix3x4d.Item(System.Int32,System.Int32)": "OpenTK.Mathematics.Matrix3x4d.yml", "OpenTK.Mathematics.Matrix3x4d.M11": "OpenTK.Mathematics.Matrix3x4d.yml", "OpenTK.Mathematics.Matrix3x4d.M12": "OpenTK.Mathematics.Matrix3x4d.yml", @@ -6711,6 +5872,10 @@ "OpenTK.Mathematics.Matrix3x4d.Row2": "OpenTK.Mathematics.Matrix3x4d.yml", "OpenTK.Mathematics.Matrix3x4d.Subtract(OpenTK.Mathematics.Matrix3x4d,OpenTK.Mathematics.Matrix3x4d)": "OpenTK.Mathematics.Matrix3x4d.yml", "OpenTK.Mathematics.Matrix3x4d.Subtract(OpenTK.Mathematics.Matrix3x4d@,OpenTK.Mathematics.Matrix3x4d@,OpenTK.Mathematics.Matrix3x4d@)": "OpenTK.Mathematics.Matrix3x4d.yml", + "OpenTK.Mathematics.Matrix3x4d.Swizzle(OpenTK.Mathematics.Matrix3x4d,System.Int32,System.Int32,System.Int32)": "OpenTK.Mathematics.Matrix3x4d.yml", + "OpenTK.Mathematics.Matrix3x4d.Swizzle(OpenTK.Mathematics.Matrix3x4d@,System.Int32,System.Int32,System.Int32,OpenTK.Mathematics.Matrix3x4d@)": "OpenTK.Mathematics.Matrix3x4d.yml", + "OpenTK.Mathematics.Matrix3x4d.Swizzle(System.Int32,System.Int32,System.Int32)": "OpenTK.Mathematics.Matrix3x4d.yml", + "OpenTK.Mathematics.Matrix3x4d.Swizzled(System.Int32,System.Int32,System.Int32)": "OpenTK.Mathematics.Matrix3x4d.yml", "OpenTK.Mathematics.Matrix3x4d.ToString": "OpenTK.Mathematics.Matrix3x4d.yml", "OpenTK.Mathematics.Matrix3x4d.ToString(System.IFormatProvider)": "OpenTK.Mathematics.Matrix3x4d.yml", "OpenTK.Mathematics.Matrix3x4d.ToString(System.String)": "OpenTK.Mathematics.Matrix3x4d.yml", @@ -6718,6 +5883,7 @@ "OpenTK.Mathematics.Matrix3x4d.Trace": "OpenTK.Mathematics.Matrix3x4d.yml", "OpenTK.Mathematics.Matrix3x4d.Transpose(OpenTK.Mathematics.Matrix3x4d)": "OpenTK.Mathematics.Matrix3x4d.yml", "OpenTK.Mathematics.Matrix3x4d.Transpose(OpenTK.Mathematics.Matrix3x4d@,OpenTK.Mathematics.Matrix4x3d@)": "OpenTK.Mathematics.Matrix3x4d.yml", + "OpenTK.Mathematics.Matrix3x4d.Transposed": "OpenTK.Mathematics.Matrix3x4d.yml", "OpenTK.Mathematics.Matrix3x4d.Zero": "OpenTK.Mathematics.Matrix3x4d.yml", "OpenTK.Mathematics.Matrix3x4d.op_Addition(OpenTK.Mathematics.Matrix3x4d,OpenTK.Mathematics.Matrix3x4d)": "OpenTK.Mathematics.Matrix3x4d.yml", "OpenTK.Mathematics.Matrix3x4d.op_Equality(OpenTK.Mathematics.Matrix3x4d,OpenTK.Mathematics.Matrix3x4d)": "OpenTK.Mathematics.Matrix3x4d.yml", @@ -6764,6 +5930,8 @@ "OpenTK.Mathematics.Matrix4.CreateScale(System.Single,OpenTK.Mathematics.Matrix4@)": "OpenTK.Mathematics.Matrix4.yml", "OpenTK.Mathematics.Matrix4.CreateScale(System.Single,System.Single,System.Single)": "OpenTK.Mathematics.Matrix4.yml", "OpenTK.Mathematics.Matrix4.CreateScale(System.Single,System.Single,System.Single,OpenTK.Mathematics.Matrix4@)": "OpenTK.Mathematics.Matrix4.yml", + "OpenTK.Mathematics.Matrix4.CreateSwizzle(System.Int32,System.Int32,System.Int32,System.Int32)": "OpenTK.Mathematics.Matrix4.yml", + "OpenTK.Mathematics.Matrix4.CreateSwizzle(System.Int32,System.Int32,System.Int32,System.Int32,OpenTK.Mathematics.Matrix4@)": "OpenTK.Mathematics.Matrix4.yml", "OpenTK.Mathematics.Matrix4.CreateTranslation(OpenTK.Mathematics.Vector3)": "OpenTK.Mathematics.Matrix4.yml", "OpenTK.Mathematics.Matrix4.CreateTranslation(OpenTK.Mathematics.Vector3@,OpenTK.Mathematics.Matrix4@)": "OpenTK.Mathematics.Matrix4.yml", "OpenTK.Mathematics.Matrix4.CreateTranslation(System.Single,System.Single,System.Single)": "OpenTK.Mathematics.Matrix4.yml", @@ -6813,6 +5981,10 @@ "OpenTK.Mathematics.Matrix4.Row3": "OpenTK.Mathematics.Matrix4.yml", "OpenTK.Mathematics.Matrix4.Subtract(OpenTK.Mathematics.Matrix4,OpenTK.Mathematics.Matrix4)": "OpenTK.Mathematics.Matrix4.yml", "OpenTK.Mathematics.Matrix4.Subtract(OpenTK.Mathematics.Matrix4@,OpenTK.Mathematics.Matrix4@,OpenTK.Mathematics.Matrix4@)": "OpenTK.Mathematics.Matrix4.yml", + "OpenTK.Mathematics.Matrix4.Swizzle(OpenTK.Mathematics.Matrix4,System.Int32,System.Int32,System.Int32,System.Int32)": "OpenTK.Mathematics.Matrix4.yml", + "OpenTK.Mathematics.Matrix4.Swizzle(OpenTK.Mathematics.Matrix4@,System.Int32,System.Int32,System.Int32,System.Int32,OpenTK.Mathematics.Matrix4@)": "OpenTK.Mathematics.Matrix4.yml", + "OpenTK.Mathematics.Matrix4.Swizzle(System.Int32,System.Int32,System.Int32,System.Int32)": "OpenTK.Mathematics.Matrix4.yml", + "OpenTK.Mathematics.Matrix4.Swizzled(System.Int32,System.Int32,System.Int32,System.Int32)": "OpenTK.Mathematics.Matrix4.yml", "OpenTK.Mathematics.Matrix4.ToString": "OpenTK.Mathematics.Matrix4.yml", "OpenTK.Mathematics.Matrix4.ToString(System.IFormatProvider)": "OpenTK.Mathematics.Matrix4.yml", "OpenTK.Mathematics.Matrix4.ToString(System.String)": "OpenTK.Mathematics.Matrix4.yml", @@ -6821,6 +5993,7 @@ "OpenTK.Mathematics.Matrix4.Transpose": "OpenTK.Mathematics.Matrix4.yml", "OpenTK.Mathematics.Matrix4.Transpose(OpenTK.Mathematics.Matrix4)": "OpenTK.Mathematics.Matrix4.yml", "OpenTK.Mathematics.Matrix4.Transpose(OpenTK.Mathematics.Matrix4@,OpenTK.Mathematics.Matrix4@)": "OpenTK.Mathematics.Matrix4.yml", + "OpenTK.Mathematics.Matrix4.Transposed": "OpenTK.Mathematics.Matrix4.yml", "OpenTK.Mathematics.Matrix4.Zero": "OpenTK.Mathematics.Matrix4.yml", "OpenTK.Mathematics.Matrix4.op_Addition(OpenTK.Mathematics.Matrix4,OpenTK.Mathematics.Matrix4)": "OpenTK.Mathematics.Matrix4.yml", "OpenTK.Mathematics.Matrix4.op_Equality(OpenTK.Mathematics.Matrix4,OpenTK.Mathematics.Matrix4)": "OpenTK.Mathematics.Matrix4.yml", @@ -6860,6 +6033,14 @@ "OpenTK.Mathematics.Matrix4d.CreateRotationY(System.Double,OpenTK.Mathematics.Matrix4d@)": "OpenTK.Mathematics.Matrix4d.yml", "OpenTK.Mathematics.Matrix4d.CreateRotationZ(System.Double)": "OpenTK.Mathematics.Matrix4d.yml", "OpenTK.Mathematics.Matrix4d.CreateRotationZ(System.Double,OpenTK.Mathematics.Matrix4d@)": "OpenTK.Mathematics.Matrix4d.yml", + "OpenTK.Mathematics.Matrix4d.CreateScale(OpenTK.Mathematics.Vector3d)": "OpenTK.Mathematics.Matrix4d.yml", + "OpenTK.Mathematics.Matrix4d.CreateScale(OpenTK.Mathematics.Vector3d@,OpenTK.Mathematics.Matrix4d@)": "OpenTK.Mathematics.Matrix4d.yml", + "OpenTK.Mathematics.Matrix4d.CreateScale(System.Double)": "OpenTK.Mathematics.Matrix4d.yml", + "OpenTK.Mathematics.Matrix4d.CreateScale(System.Double,OpenTK.Mathematics.Matrix4d@)": "OpenTK.Mathematics.Matrix4d.yml", + "OpenTK.Mathematics.Matrix4d.CreateScale(System.Double,System.Double,System.Double)": "OpenTK.Mathematics.Matrix4d.yml", + "OpenTK.Mathematics.Matrix4d.CreateScale(System.Double,System.Double,System.Double,OpenTK.Mathematics.Matrix4d@)": "OpenTK.Mathematics.Matrix4d.yml", + "OpenTK.Mathematics.Matrix4d.CreateSwizzle(System.Int32,System.Int32,System.Int32,System.Int32)": "OpenTK.Mathematics.Matrix4d.yml", + "OpenTK.Mathematics.Matrix4d.CreateSwizzle(System.Int32,System.Int32,System.Int32,System.Int32,OpenTK.Mathematics.Matrix4d@)": "OpenTK.Mathematics.Matrix4d.yml", "OpenTK.Mathematics.Matrix4d.CreateTranslation(OpenTK.Mathematics.Vector3d)": "OpenTK.Mathematics.Matrix4d.yml", "OpenTK.Mathematics.Matrix4d.CreateTranslation(OpenTK.Mathematics.Vector3d@,OpenTK.Mathematics.Matrix4d@)": "OpenTK.Mathematics.Matrix4d.yml", "OpenTK.Mathematics.Matrix4d.CreateTranslation(System.Double,System.Double,System.Double)": "OpenTK.Mathematics.Matrix4d.yml", @@ -6919,6 +6100,10 @@ "OpenTK.Mathematics.Matrix4d.Scale(System.Double,System.Double,System.Double)": "OpenTK.Mathematics.Matrix4d.yml", "OpenTK.Mathematics.Matrix4d.Subtract(OpenTK.Mathematics.Matrix4d,OpenTK.Mathematics.Matrix4d)": "OpenTK.Mathematics.Matrix4d.yml", "OpenTK.Mathematics.Matrix4d.Subtract(OpenTK.Mathematics.Matrix4d@,OpenTK.Mathematics.Matrix4d@,OpenTK.Mathematics.Matrix4d@)": "OpenTK.Mathematics.Matrix4d.yml", + "OpenTK.Mathematics.Matrix4d.Swizzle(OpenTK.Mathematics.Matrix4d,System.Int32,System.Int32,System.Int32,System.Int32)": "OpenTK.Mathematics.Matrix4d.yml", + "OpenTK.Mathematics.Matrix4d.Swizzle(OpenTK.Mathematics.Matrix4d@,System.Int32,System.Int32,System.Int32,System.Int32,OpenTK.Mathematics.Matrix4d@)": "OpenTK.Mathematics.Matrix4d.yml", + "OpenTK.Mathematics.Matrix4d.Swizzle(System.Int32,System.Int32,System.Int32,System.Int32)": "OpenTK.Mathematics.Matrix4d.yml", + "OpenTK.Mathematics.Matrix4d.Swizzled(System.Int32,System.Int32,System.Int32,System.Int32)": "OpenTK.Mathematics.Matrix4d.yml", "OpenTK.Mathematics.Matrix4d.ToString": "OpenTK.Mathematics.Matrix4d.yml", "OpenTK.Mathematics.Matrix4d.ToString(System.IFormatProvider)": "OpenTK.Mathematics.Matrix4d.yml", "OpenTK.Mathematics.Matrix4d.ToString(System.String)": "OpenTK.Mathematics.Matrix4d.yml", @@ -6927,6 +6112,8 @@ "OpenTK.Mathematics.Matrix4d.Transpose": "OpenTK.Mathematics.Matrix4d.yml", "OpenTK.Mathematics.Matrix4d.Transpose(OpenTK.Mathematics.Matrix4d)": "OpenTK.Mathematics.Matrix4d.yml", "OpenTK.Mathematics.Matrix4d.Transpose(OpenTK.Mathematics.Matrix4d@,OpenTK.Mathematics.Matrix4d@)": "OpenTK.Mathematics.Matrix4d.yml", + "OpenTK.Mathematics.Matrix4d.Transposed": "OpenTK.Mathematics.Matrix4d.yml", + "OpenTK.Mathematics.Matrix4d.Zero": "OpenTK.Mathematics.Matrix4d.yml", "OpenTK.Mathematics.Matrix4d.op_Addition(OpenTK.Mathematics.Matrix4d,OpenTK.Mathematics.Matrix4d)": "OpenTK.Mathematics.Matrix4d.yml", "OpenTK.Mathematics.Matrix4d.op_Equality(OpenTK.Mathematics.Matrix4d,OpenTK.Mathematics.Matrix4d)": "OpenTK.Mathematics.Matrix4d.yml", "OpenTK.Mathematics.Matrix4d.op_Inequality(OpenTK.Mathematics.Matrix4d,OpenTK.Mathematics.Matrix4d)": "OpenTK.Mathematics.Matrix4d.yml", @@ -6975,6 +6162,10 @@ "OpenTK.Mathematics.Matrix4x2.Row3": "OpenTK.Mathematics.Matrix4x2.yml", "OpenTK.Mathematics.Matrix4x2.Subtract(OpenTK.Mathematics.Matrix4x2,OpenTK.Mathematics.Matrix4x2)": "OpenTK.Mathematics.Matrix4x2.yml", "OpenTK.Mathematics.Matrix4x2.Subtract(OpenTK.Mathematics.Matrix4x2@,OpenTK.Mathematics.Matrix4x2@,OpenTK.Mathematics.Matrix4x2@)": "OpenTK.Mathematics.Matrix4x2.yml", + "OpenTK.Mathematics.Matrix4x2.Swizzle(OpenTK.Mathematics.Matrix4x2,System.Int32,System.Int32,System.Int32,System.Int32)": "OpenTK.Mathematics.Matrix4x2.yml", + "OpenTK.Mathematics.Matrix4x2.Swizzle(OpenTK.Mathematics.Matrix4x2@,System.Int32,System.Int32,System.Int32,System.Int32,OpenTK.Mathematics.Matrix4x2@)": "OpenTK.Mathematics.Matrix4x2.yml", + "OpenTK.Mathematics.Matrix4x2.Swizzle(System.Int32,System.Int32,System.Int32,System.Int32)": "OpenTK.Mathematics.Matrix4x2.yml", + "OpenTK.Mathematics.Matrix4x2.Swizzled(System.Int32,System.Int32,System.Int32,System.Int32)": "OpenTK.Mathematics.Matrix4x2.yml", "OpenTK.Mathematics.Matrix4x2.ToString": "OpenTK.Mathematics.Matrix4x2.yml", "OpenTK.Mathematics.Matrix4x2.ToString(System.IFormatProvider)": "OpenTK.Mathematics.Matrix4x2.yml", "OpenTK.Mathematics.Matrix4x2.ToString(System.String)": "OpenTK.Mathematics.Matrix4x2.yml", @@ -6982,6 +6173,7 @@ "OpenTK.Mathematics.Matrix4x2.Trace": "OpenTK.Mathematics.Matrix4x2.yml", "OpenTK.Mathematics.Matrix4x2.Transpose(OpenTK.Mathematics.Matrix4x2)": "OpenTK.Mathematics.Matrix4x2.yml", "OpenTK.Mathematics.Matrix4x2.Transpose(OpenTK.Mathematics.Matrix4x2@,OpenTK.Mathematics.Matrix2x4@)": "OpenTK.Mathematics.Matrix4x2.yml", + "OpenTK.Mathematics.Matrix4x2.Transposed": "OpenTK.Mathematics.Matrix4x2.yml", "OpenTK.Mathematics.Matrix4x2.Zero": "OpenTK.Mathematics.Matrix4x2.yml", "OpenTK.Mathematics.Matrix4x2.op_Addition(OpenTK.Mathematics.Matrix4x2,OpenTK.Mathematics.Matrix4x2)": "OpenTK.Mathematics.Matrix4x2.yml", "OpenTK.Mathematics.Matrix4x2.op_Equality(OpenTK.Mathematics.Matrix4x2,OpenTK.Mathematics.Matrix4x2)": "OpenTK.Mathematics.Matrix4x2.yml", @@ -7034,6 +6226,10 @@ "OpenTK.Mathematics.Matrix4x2d.Row3": "OpenTK.Mathematics.Matrix4x2d.yml", "OpenTK.Mathematics.Matrix4x2d.Subtract(OpenTK.Mathematics.Matrix4x2d,OpenTK.Mathematics.Matrix4x2d)": "OpenTK.Mathematics.Matrix4x2d.yml", "OpenTK.Mathematics.Matrix4x2d.Subtract(OpenTK.Mathematics.Matrix4x2d@,OpenTK.Mathematics.Matrix4x2d@,OpenTK.Mathematics.Matrix4x2d@)": "OpenTK.Mathematics.Matrix4x2d.yml", + "OpenTK.Mathematics.Matrix4x2d.Swizzle(OpenTK.Mathematics.Matrix4x2d,System.Int32,System.Int32,System.Int32,System.Int32)": "OpenTK.Mathematics.Matrix4x2d.yml", + "OpenTK.Mathematics.Matrix4x2d.Swizzle(OpenTK.Mathematics.Matrix4x2d@,System.Int32,System.Int32,System.Int32,System.Int32,OpenTK.Mathematics.Matrix4x2d@)": "OpenTK.Mathematics.Matrix4x2d.yml", + "OpenTK.Mathematics.Matrix4x2d.Swizzle(System.Int32,System.Int32,System.Int32,System.Int32)": "OpenTK.Mathematics.Matrix4x2d.yml", + "OpenTK.Mathematics.Matrix4x2d.Swizzled(System.Int32,System.Int32,System.Int32,System.Int32)": "OpenTK.Mathematics.Matrix4x2d.yml", "OpenTK.Mathematics.Matrix4x2d.ToString": "OpenTK.Mathematics.Matrix4x2d.yml", "OpenTK.Mathematics.Matrix4x2d.ToString(System.IFormatProvider)": "OpenTK.Mathematics.Matrix4x2d.yml", "OpenTK.Mathematics.Matrix4x2d.ToString(System.String)": "OpenTK.Mathematics.Matrix4x2d.yml", @@ -7041,6 +6237,7 @@ "OpenTK.Mathematics.Matrix4x2d.Trace": "OpenTK.Mathematics.Matrix4x2d.yml", "OpenTK.Mathematics.Matrix4x2d.Transpose(OpenTK.Mathematics.Matrix4x2d)": "OpenTK.Mathematics.Matrix4x2d.yml", "OpenTK.Mathematics.Matrix4x2d.Transpose(OpenTK.Mathematics.Matrix4x2d@,OpenTK.Mathematics.Matrix2x4d@)": "OpenTK.Mathematics.Matrix4x2d.yml", + "OpenTK.Mathematics.Matrix4x2d.Transposed": "OpenTK.Mathematics.Matrix4x2d.yml", "OpenTK.Mathematics.Matrix4x2d.Zero": "OpenTK.Mathematics.Matrix4x2d.yml", "OpenTK.Mathematics.Matrix4x2d.op_Addition(OpenTK.Mathematics.Matrix4x2d,OpenTK.Mathematics.Matrix4x2d)": "OpenTK.Mathematics.Matrix4x2d.yml", "OpenTK.Mathematics.Matrix4x2d.op_Equality(OpenTK.Mathematics.Matrix4x2d,OpenTK.Mathematics.Matrix4x2d)": "OpenTK.Mathematics.Matrix4x2d.yml", @@ -7083,6 +6280,7 @@ "OpenTK.Mathematics.Matrix4x3.Invert": "OpenTK.Mathematics.Matrix4x3.yml", "OpenTK.Mathematics.Matrix4x3.Invert(OpenTK.Mathematics.Matrix4x3)": "OpenTK.Mathematics.Matrix4x3.yml", "OpenTK.Mathematics.Matrix4x3.Invert(OpenTK.Mathematics.Matrix4x3@,OpenTK.Mathematics.Matrix4x3@)": "OpenTK.Mathematics.Matrix4x3.yml", + "OpenTK.Mathematics.Matrix4x3.Inverted": "OpenTK.Mathematics.Matrix4x3.yml", "OpenTK.Mathematics.Matrix4x3.Item(System.Int32,System.Int32)": "OpenTK.Mathematics.Matrix4x3.yml", "OpenTK.Mathematics.Matrix4x3.M11": "OpenTK.Mathematics.Matrix4x3.yml", "OpenTK.Mathematics.Matrix4x3.M12": "OpenTK.Mathematics.Matrix4x3.yml", @@ -7108,6 +6306,10 @@ "OpenTK.Mathematics.Matrix4x3.Row3": "OpenTK.Mathematics.Matrix4x3.yml", "OpenTK.Mathematics.Matrix4x3.Subtract(OpenTK.Mathematics.Matrix4x3,OpenTK.Mathematics.Matrix4x3)": "OpenTK.Mathematics.Matrix4x3.yml", "OpenTK.Mathematics.Matrix4x3.Subtract(OpenTK.Mathematics.Matrix4x3@,OpenTK.Mathematics.Matrix4x3@,OpenTK.Mathematics.Matrix4x3@)": "OpenTK.Mathematics.Matrix4x3.yml", + "OpenTK.Mathematics.Matrix4x3.Swizzle(OpenTK.Mathematics.Matrix4x3,System.Int32,System.Int32,System.Int32,System.Int32)": "OpenTK.Mathematics.Matrix4x3.yml", + "OpenTK.Mathematics.Matrix4x3.Swizzle(OpenTK.Mathematics.Matrix4x3@,System.Int32,System.Int32,System.Int32,System.Int32,OpenTK.Mathematics.Matrix4x3@)": "OpenTK.Mathematics.Matrix4x3.yml", + "OpenTK.Mathematics.Matrix4x3.Swizzle(System.Int32,System.Int32,System.Int32,System.Int32)": "OpenTK.Mathematics.Matrix4x3.yml", + "OpenTK.Mathematics.Matrix4x3.Swizzled(System.Int32,System.Int32,System.Int32,System.Int32)": "OpenTK.Mathematics.Matrix4x3.yml", "OpenTK.Mathematics.Matrix4x3.ToString": "OpenTK.Mathematics.Matrix4x3.yml", "OpenTK.Mathematics.Matrix4x3.ToString(System.IFormatProvider)": "OpenTK.Mathematics.Matrix4x3.yml", "OpenTK.Mathematics.Matrix4x3.ToString(System.String)": "OpenTK.Mathematics.Matrix4x3.yml", @@ -7115,6 +6317,7 @@ "OpenTK.Mathematics.Matrix4x3.Trace": "OpenTK.Mathematics.Matrix4x3.yml", "OpenTK.Mathematics.Matrix4x3.Transpose(OpenTK.Mathematics.Matrix4x3)": "OpenTK.Mathematics.Matrix4x3.yml", "OpenTK.Mathematics.Matrix4x3.Transpose(OpenTK.Mathematics.Matrix4x3@,OpenTK.Mathematics.Matrix3x4@)": "OpenTK.Mathematics.Matrix4x3.yml", + "OpenTK.Mathematics.Matrix4x3.Transposed": "OpenTK.Mathematics.Matrix4x3.yml", "OpenTK.Mathematics.Matrix4x3.Zero": "OpenTK.Mathematics.Matrix4x3.yml", "OpenTK.Mathematics.Matrix4x3.op_Addition(OpenTK.Mathematics.Matrix4x3,OpenTK.Mathematics.Matrix4x3)": "OpenTK.Mathematics.Matrix4x3.yml", "OpenTK.Mathematics.Matrix4x3.op_Equality(OpenTK.Mathematics.Matrix4x3,OpenTK.Mathematics.Matrix4x3)": "OpenTK.Mathematics.Matrix4x3.yml", @@ -7155,6 +6358,7 @@ "OpenTK.Mathematics.Matrix4x3d.Invert": "OpenTK.Mathematics.Matrix4x3d.yml", "OpenTK.Mathematics.Matrix4x3d.Invert(OpenTK.Mathematics.Matrix4x3d)": "OpenTK.Mathematics.Matrix4x3d.yml", "OpenTK.Mathematics.Matrix4x3d.Invert(OpenTK.Mathematics.Matrix4x3d@,OpenTK.Mathematics.Matrix4x3d@)": "OpenTK.Mathematics.Matrix4x3d.yml", + "OpenTK.Mathematics.Matrix4x3d.Inverted": "OpenTK.Mathematics.Matrix4x3d.yml", "OpenTK.Mathematics.Matrix4x3d.Item(System.Int32,System.Int32)": "OpenTK.Mathematics.Matrix4x3d.yml", "OpenTK.Mathematics.Matrix4x3d.M11": "OpenTK.Mathematics.Matrix4x3d.yml", "OpenTK.Mathematics.Matrix4x3d.M12": "OpenTK.Mathematics.Matrix4x3d.yml", @@ -7180,6 +6384,10 @@ "OpenTK.Mathematics.Matrix4x3d.Row3": "OpenTK.Mathematics.Matrix4x3d.yml", "OpenTK.Mathematics.Matrix4x3d.Subtract(OpenTK.Mathematics.Matrix4x3d,OpenTK.Mathematics.Matrix4x3d)": "OpenTK.Mathematics.Matrix4x3d.yml", "OpenTK.Mathematics.Matrix4x3d.Subtract(OpenTK.Mathematics.Matrix4x3d@,OpenTK.Mathematics.Matrix4x3d@,OpenTK.Mathematics.Matrix4x3d@)": "OpenTK.Mathematics.Matrix4x3d.yml", + "OpenTK.Mathematics.Matrix4x3d.Swizzle(OpenTK.Mathematics.Matrix4x3d,System.Int32,System.Int32,System.Int32,System.Int32)": "OpenTK.Mathematics.Matrix4x3d.yml", + "OpenTK.Mathematics.Matrix4x3d.Swizzle(OpenTK.Mathematics.Matrix4x3d@,System.Int32,System.Int32,System.Int32,System.Int32,OpenTK.Mathematics.Matrix4x3d@)": "OpenTK.Mathematics.Matrix4x3d.yml", + "OpenTK.Mathematics.Matrix4x3d.Swizzle(System.Int32,System.Int32,System.Int32,System.Int32)": "OpenTK.Mathematics.Matrix4x3d.yml", + "OpenTK.Mathematics.Matrix4x3d.Swizzled(System.Int32,System.Int32,System.Int32,System.Int32)": "OpenTK.Mathematics.Matrix4x3d.yml", "OpenTK.Mathematics.Matrix4x3d.ToString": "OpenTK.Mathematics.Matrix4x3d.yml", "OpenTK.Mathematics.Matrix4x3d.ToString(System.IFormatProvider)": "OpenTK.Mathematics.Matrix4x3d.yml", "OpenTK.Mathematics.Matrix4x3d.ToString(System.String)": "OpenTK.Mathematics.Matrix4x3d.yml", @@ -7187,6 +6395,7 @@ "OpenTK.Mathematics.Matrix4x3d.Trace": "OpenTK.Mathematics.Matrix4x3d.yml", "OpenTK.Mathematics.Matrix4x3d.Transpose(OpenTK.Mathematics.Matrix4x3d)": "OpenTK.Mathematics.Matrix4x3d.yml", "OpenTK.Mathematics.Matrix4x3d.Transpose(OpenTK.Mathematics.Matrix4x3d@,OpenTK.Mathematics.Matrix3x4d@)": "OpenTK.Mathematics.Matrix4x3d.yml", + "OpenTK.Mathematics.Matrix4x3d.Transposed": "OpenTK.Mathematics.Matrix4x3d.yml", "OpenTK.Mathematics.Matrix4x3d.Zero": "OpenTK.Mathematics.Matrix4x3d.yml", "OpenTK.Mathematics.Matrix4x3d.op_Addition(OpenTK.Mathematics.Matrix4x3d,OpenTK.Mathematics.Matrix4x3d)": "OpenTK.Mathematics.Matrix4x3d.yml", "OpenTK.Mathematics.Matrix4x3d.op_Equality(OpenTK.Mathematics.Matrix4x3d,OpenTK.Mathematics.Matrix4x3d)": "OpenTK.Mathematics.Matrix4x3d.yml", @@ -7316,6 +6525,9 @@ "OpenTK.Mathematics.Vector2": "OpenTK.Mathematics.Vector2.yml", "OpenTK.Mathematics.Vector2.#ctor(System.Single)": "OpenTK.Mathematics.Vector2.yml", "OpenTK.Mathematics.Vector2.#ctor(System.Single,System.Single)": "OpenTK.Mathematics.Vector2.yml", + "OpenTK.Mathematics.Vector2.Abs": "OpenTK.Mathematics.Vector2.yml", + "OpenTK.Mathematics.Vector2.Abs(OpenTK.Mathematics.Vector2)": "OpenTK.Mathematics.Vector2.yml", + "OpenTK.Mathematics.Vector2.Abs(OpenTK.Mathematics.Vector2@,OpenTK.Mathematics.Vector2@)": "OpenTK.Mathematics.Vector2.yml", "OpenTK.Mathematics.Vector2.Add(OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2)": "OpenTK.Mathematics.Vector2.yml", "OpenTK.Mathematics.Vector2.Add(OpenTK.Mathematics.Vector2@,OpenTK.Mathematics.Vector2@,OpenTK.Mathematics.Vector2@)": "OpenTK.Mathematics.Vector2.yml", "OpenTK.Mathematics.Vector2.BaryCentric(OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2,System.Single,System.Single)": "OpenTK.Mathematics.Vector2.yml", @@ -7337,6 +6549,8 @@ "OpenTK.Mathematics.Vector2.Divide(OpenTK.Mathematics.Vector2@,System.Single,OpenTK.Mathematics.Vector2@)": "OpenTK.Mathematics.Vector2.yml", "OpenTK.Mathematics.Vector2.Dot(OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2)": "OpenTK.Mathematics.Vector2.yml", "OpenTK.Mathematics.Vector2.Dot(OpenTK.Mathematics.Vector2@,OpenTK.Mathematics.Vector2@,System.Single@)": "OpenTK.Mathematics.Vector2.yml", + "OpenTK.Mathematics.Vector2.Elerp(OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2,System.Single)": "OpenTK.Mathematics.Vector2.yml", + "OpenTK.Mathematics.Vector2.Elerp(OpenTK.Mathematics.Vector2@,OpenTK.Mathematics.Vector2@,System.Single,OpenTK.Mathematics.Vector2@)": "OpenTK.Mathematics.Vector2.yml", "OpenTK.Mathematics.Vector2.Equals(OpenTK.Mathematics.Vector2)": "OpenTK.Mathematics.Vector2.yml", "OpenTK.Mathematics.Vector2.Equals(System.Object)": "OpenTK.Mathematics.Vector2.yml", "OpenTK.Mathematics.Vector2.GetHashCode": "OpenTK.Mathematics.Vector2.yml", @@ -7370,7 +6584,10 @@ "OpenTK.Mathematics.Vector2.PerpendicularLeft": "OpenTK.Mathematics.Vector2.yml", "OpenTK.Mathematics.Vector2.PerpendicularRight": "OpenTK.Mathematics.Vector2.yml", "OpenTK.Mathematics.Vector2.PositiveInfinity": "OpenTK.Mathematics.Vector2.yml", + "OpenTK.Mathematics.Vector2.ReciprocalLengthFast": "OpenTK.Mathematics.Vector2.yml", "OpenTK.Mathematics.Vector2.SizeInBytes": "OpenTK.Mathematics.Vector2.yml", + "OpenTK.Mathematics.Vector2.Slerp(OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2,System.Single)": "OpenTK.Mathematics.Vector2.yml", + "OpenTK.Mathematics.Vector2.Slerp(OpenTK.Mathematics.Vector2@,OpenTK.Mathematics.Vector2@,System.Single,OpenTK.Mathematics.Vector2@)": "OpenTK.Mathematics.Vector2.yml", "OpenTK.Mathematics.Vector2.Subtract(OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2)": "OpenTK.Mathematics.Vector2.yml", "OpenTK.Mathematics.Vector2.Subtract(OpenTK.Mathematics.Vector2@,OpenTK.Mathematics.Vector2@,OpenTK.Mathematics.Vector2@)": "OpenTK.Mathematics.Vector2.yml", "OpenTK.Mathematics.Vector2.ToString": "OpenTK.Mathematics.Vector2.yml", @@ -7411,6 +6628,9 @@ "OpenTK.Mathematics.Vector2d": "OpenTK.Mathematics.Vector2d.yml", "OpenTK.Mathematics.Vector2d.#ctor(System.Double)": "OpenTK.Mathematics.Vector2d.yml", "OpenTK.Mathematics.Vector2d.#ctor(System.Double,System.Double)": "OpenTK.Mathematics.Vector2d.yml", + "OpenTK.Mathematics.Vector2d.Abs": "OpenTK.Mathematics.Vector2d.yml", + "OpenTK.Mathematics.Vector2d.Abs(OpenTK.Mathematics.Vector2d)": "OpenTK.Mathematics.Vector2d.yml", + "OpenTK.Mathematics.Vector2d.Abs(OpenTK.Mathematics.Vector2d@,OpenTK.Mathematics.Vector2d@)": "OpenTK.Mathematics.Vector2d.yml", "OpenTK.Mathematics.Vector2d.Add(OpenTK.Mathematics.Vector2d,OpenTK.Mathematics.Vector2d)": "OpenTK.Mathematics.Vector2d.yml", "OpenTK.Mathematics.Vector2d.Add(OpenTK.Mathematics.Vector2d@,OpenTK.Mathematics.Vector2d@,OpenTK.Mathematics.Vector2d@)": "OpenTK.Mathematics.Vector2d.yml", "OpenTK.Mathematics.Vector2d.BaryCentric(OpenTK.Mathematics.Vector2d,OpenTK.Mathematics.Vector2d,OpenTK.Mathematics.Vector2d,System.Double,System.Double)": "OpenTK.Mathematics.Vector2d.yml", @@ -7432,11 +6652,14 @@ "OpenTK.Mathematics.Vector2d.Divide(OpenTK.Mathematics.Vector2d@,System.Double,OpenTK.Mathematics.Vector2d@)": "OpenTK.Mathematics.Vector2d.yml", "OpenTK.Mathematics.Vector2d.Dot(OpenTK.Mathematics.Vector2d,OpenTK.Mathematics.Vector2d)": "OpenTK.Mathematics.Vector2d.yml", "OpenTK.Mathematics.Vector2d.Dot(OpenTK.Mathematics.Vector2d@,OpenTK.Mathematics.Vector2d@,System.Double@)": "OpenTK.Mathematics.Vector2d.yml", + "OpenTK.Mathematics.Vector2d.Elerp(OpenTK.Mathematics.Vector2d,OpenTK.Mathematics.Vector2d,System.Double)": "OpenTK.Mathematics.Vector2d.yml", + "OpenTK.Mathematics.Vector2d.Elerp(OpenTK.Mathematics.Vector2d@,OpenTK.Mathematics.Vector2d@,System.Double,OpenTK.Mathematics.Vector2d@)": "OpenTK.Mathematics.Vector2d.yml", "OpenTK.Mathematics.Vector2d.Equals(OpenTK.Mathematics.Vector2d)": "OpenTK.Mathematics.Vector2d.yml", "OpenTK.Mathematics.Vector2d.Equals(System.Object)": "OpenTK.Mathematics.Vector2d.yml", "OpenTK.Mathematics.Vector2d.GetHashCode": "OpenTK.Mathematics.Vector2d.yml", "OpenTK.Mathematics.Vector2d.Item(System.Int32)": "OpenTK.Mathematics.Vector2d.yml", "OpenTK.Mathematics.Vector2d.Length": "OpenTK.Mathematics.Vector2d.yml", + "OpenTK.Mathematics.Vector2d.LengthFast": "OpenTK.Mathematics.Vector2d.yml", "OpenTK.Mathematics.Vector2d.LengthSquared": "OpenTK.Mathematics.Vector2d.yml", "OpenTK.Mathematics.Vector2d.Lerp(OpenTK.Mathematics.Vector2d,OpenTK.Mathematics.Vector2d,OpenTK.Mathematics.Vector2d)": "OpenTK.Mathematics.Vector2d.yml", "OpenTK.Mathematics.Vector2d.Lerp(OpenTK.Mathematics.Vector2d,OpenTK.Mathematics.Vector2d,System.Double)": "OpenTK.Mathematics.Vector2d.yml", @@ -7454,6 +6677,7 @@ "OpenTK.Mathematics.Vector2d.Normalize": "OpenTK.Mathematics.Vector2d.yml", "OpenTK.Mathematics.Vector2d.Normalize(OpenTK.Mathematics.Vector2d)": "OpenTK.Mathematics.Vector2d.yml", "OpenTK.Mathematics.Vector2d.Normalize(OpenTK.Mathematics.Vector2d@,OpenTK.Mathematics.Vector2d@)": "OpenTK.Mathematics.Vector2d.yml", + "OpenTK.Mathematics.Vector2d.NormalizeFast": "OpenTK.Mathematics.Vector2d.yml", "OpenTK.Mathematics.Vector2d.NormalizeFast(OpenTK.Mathematics.Vector2d)": "OpenTK.Mathematics.Vector2d.yml", "OpenTK.Mathematics.Vector2d.NormalizeFast(OpenTK.Mathematics.Vector2d@,OpenTK.Mathematics.Vector2d@)": "OpenTK.Mathematics.Vector2d.yml", "OpenTK.Mathematics.Vector2d.Normalized": "OpenTK.Mathematics.Vector2d.yml", @@ -7461,7 +6685,10 @@ "OpenTK.Mathematics.Vector2d.PerpendicularLeft": "OpenTK.Mathematics.Vector2d.yml", "OpenTK.Mathematics.Vector2d.PerpendicularRight": "OpenTK.Mathematics.Vector2d.yml", "OpenTK.Mathematics.Vector2d.PositiveInfinity": "OpenTK.Mathematics.Vector2d.yml", + "OpenTK.Mathematics.Vector2d.ReciprocalLengthFast": "OpenTK.Mathematics.Vector2d.yml", "OpenTK.Mathematics.Vector2d.SizeInBytes": "OpenTK.Mathematics.Vector2d.yml", + "OpenTK.Mathematics.Vector2d.Slerp(OpenTK.Mathematics.Vector2d,OpenTK.Mathematics.Vector2d,System.Double)": "OpenTK.Mathematics.Vector2d.yml", + "OpenTK.Mathematics.Vector2d.Slerp(OpenTK.Mathematics.Vector2d@,OpenTK.Mathematics.Vector2d@,System.Double,OpenTK.Mathematics.Vector2d@)": "OpenTK.Mathematics.Vector2d.yml", "OpenTK.Mathematics.Vector2d.Subtract(OpenTK.Mathematics.Vector2d,OpenTK.Mathematics.Vector2d)": "OpenTK.Mathematics.Vector2d.yml", "OpenTK.Mathematics.Vector2d.Subtract(OpenTK.Mathematics.Vector2d@,OpenTK.Mathematics.Vector2d@,OpenTK.Mathematics.Vector2d@)": "OpenTK.Mathematics.Vector2d.yml", "OpenTK.Mathematics.Vector2d.ToString": "OpenTK.Mathematics.Vector2d.yml", @@ -7527,6 +6754,9 @@ "OpenTK.Mathematics.Vector2i": "OpenTK.Mathematics.Vector2i.yml", "OpenTK.Mathematics.Vector2i.#ctor(System.Int32)": "OpenTK.Mathematics.Vector2i.yml", "OpenTK.Mathematics.Vector2i.#ctor(System.Int32,System.Int32)": "OpenTK.Mathematics.Vector2i.yml", + "OpenTK.Mathematics.Vector2i.Abs": "OpenTK.Mathematics.Vector2i.yml", + "OpenTK.Mathematics.Vector2i.Abs(OpenTK.Mathematics.Vector2i)": "OpenTK.Mathematics.Vector2i.yml", + "OpenTK.Mathematics.Vector2i.Abs(OpenTK.Mathematics.Vector2i@,OpenTK.Mathematics.Vector2i@)": "OpenTK.Mathematics.Vector2i.yml", "OpenTK.Mathematics.Vector2i.Add(OpenTK.Mathematics.Vector2i,OpenTK.Mathematics.Vector2i)": "OpenTK.Mathematics.Vector2i.yml", "OpenTK.Mathematics.Vector2i.Add(OpenTK.Mathematics.Vector2i@,OpenTK.Mathematics.Vector2i@,OpenTK.Mathematics.Vector2i@)": "OpenTK.Mathematics.Vector2i.yml", "OpenTK.Mathematics.Vector2i.Clamp(OpenTK.Mathematics.Vector2i,OpenTK.Mathematics.Vector2i,OpenTK.Mathematics.Vector2i)": "OpenTK.Mathematics.Vector2i.yml", @@ -7589,6 +6819,9 @@ "OpenTK.Mathematics.Vector3.#ctor(OpenTK.Mathematics.Vector2,System.Single)": "OpenTK.Mathematics.Vector3.yml", "OpenTK.Mathematics.Vector3.#ctor(System.Single)": "OpenTK.Mathematics.Vector3.yml", "OpenTK.Mathematics.Vector3.#ctor(System.Single,System.Single,System.Single)": "OpenTK.Mathematics.Vector3.yml", + "OpenTK.Mathematics.Vector3.Abs": "OpenTK.Mathematics.Vector3.yml", + "OpenTK.Mathematics.Vector3.Abs(OpenTK.Mathematics.Vector3)": "OpenTK.Mathematics.Vector3.yml", + "OpenTK.Mathematics.Vector3.Abs(OpenTK.Mathematics.Vector3@,OpenTK.Mathematics.Vector3@)": "OpenTK.Mathematics.Vector3.yml", "OpenTK.Mathematics.Vector3.Add(OpenTK.Mathematics.Vector3,OpenTK.Mathematics.Vector3)": "OpenTK.Mathematics.Vector3.yml", "OpenTK.Mathematics.Vector3.Add(OpenTK.Mathematics.Vector3@,OpenTK.Mathematics.Vector3@,OpenTK.Mathematics.Vector3@)": "OpenTK.Mathematics.Vector3.yml", "OpenTK.Mathematics.Vector3.BaryCentric(OpenTK.Mathematics.Vector3,OpenTK.Mathematics.Vector3,OpenTK.Mathematics.Vector3,System.Single,System.Single)": "OpenTK.Mathematics.Vector3.yml", @@ -7614,6 +6847,8 @@ "OpenTK.Mathematics.Vector3.Divide(OpenTK.Mathematics.Vector3@,System.Single,OpenTK.Mathematics.Vector3@)": "OpenTK.Mathematics.Vector3.yml", "OpenTK.Mathematics.Vector3.Dot(OpenTK.Mathematics.Vector3,OpenTK.Mathematics.Vector3)": "OpenTK.Mathematics.Vector3.yml", "OpenTK.Mathematics.Vector3.Dot(OpenTK.Mathematics.Vector3@,OpenTK.Mathematics.Vector3@,System.Single@)": "OpenTK.Mathematics.Vector3.yml", + "OpenTK.Mathematics.Vector3.Elerp(OpenTK.Mathematics.Vector3,OpenTK.Mathematics.Vector3,System.Single)": "OpenTK.Mathematics.Vector3.yml", + "OpenTK.Mathematics.Vector3.Elerp(OpenTK.Mathematics.Vector3@,OpenTK.Mathematics.Vector3@,System.Single,OpenTK.Mathematics.Vector3@)": "OpenTK.Mathematics.Vector3.yml", "OpenTK.Mathematics.Vector3.Equals(OpenTK.Mathematics.Vector3)": "OpenTK.Mathematics.Vector3.yml", "OpenTK.Mathematics.Vector3.Equals(System.Object)": "OpenTK.Mathematics.Vector3.yml", "OpenTK.Mathematics.Vector3.GetHashCode": "OpenTK.Mathematics.Vector3.yml", @@ -7644,7 +6879,10 @@ "OpenTK.Mathematics.Vector3.One": "OpenTK.Mathematics.Vector3.yml", "OpenTK.Mathematics.Vector3.PositiveInfinity": "OpenTK.Mathematics.Vector3.yml", "OpenTK.Mathematics.Vector3.Project(OpenTK.Mathematics.Vector3,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,OpenTK.Mathematics.Matrix4)": "OpenTK.Mathematics.Vector3.yml", + "OpenTK.Mathematics.Vector3.ReciprocalLengthFast": "OpenTK.Mathematics.Vector3.yml", "OpenTK.Mathematics.Vector3.SizeInBytes": "OpenTK.Mathematics.Vector3.yml", + "OpenTK.Mathematics.Vector3.Slerp(OpenTK.Mathematics.Vector3,OpenTK.Mathematics.Vector3,System.Single)": "OpenTK.Mathematics.Vector3.yml", + "OpenTK.Mathematics.Vector3.Slerp(OpenTK.Mathematics.Vector3@,OpenTK.Mathematics.Vector3@,System.Single,OpenTK.Mathematics.Vector3@)": "OpenTK.Mathematics.Vector3.yml", "OpenTK.Mathematics.Vector3.Subtract(OpenTK.Mathematics.Vector3,OpenTK.Mathematics.Vector3)": "OpenTK.Mathematics.Vector3.yml", "OpenTK.Mathematics.Vector3.Subtract(OpenTK.Mathematics.Vector3@,OpenTK.Mathematics.Vector3@,OpenTK.Mathematics.Vector3@)": "OpenTK.Mathematics.Vector3.yml", "OpenTK.Mathematics.Vector3.ToString": "OpenTK.Mathematics.Vector3.yml", @@ -7707,6 +6945,9 @@ "OpenTK.Mathematics.Vector3d.#ctor(OpenTK.Mathematics.Vector2d,System.Double)": "OpenTK.Mathematics.Vector3d.yml", "OpenTK.Mathematics.Vector3d.#ctor(System.Double)": "OpenTK.Mathematics.Vector3d.yml", "OpenTK.Mathematics.Vector3d.#ctor(System.Double,System.Double,System.Double)": "OpenTK.Mathematics.Vector3d.yml", + "OpenTK.Mathematics.Vector3d.Abs": "OpenTK.Mathematics.Vector3d.yml", + "OpenTK.Mathematics.Vector3d.Abs(OpenTK.Mathematics.Vector3d)": "OpenTK.Mathematics.Vector3d.yml", + "OpenTK.Mathematics.Vector3d.Abs(OpenTK.Mathematics.Vector3d@,OpenTK.Mathematics.Vector3d@)": "OpenTK.Mathematics.Vector3d.yml", "OpenTK.Mathematics.Vector3d.Add(OpenTK.Mathematics.Vector3d,OpenTK.Mathematics.Vector3d)": "OpenTK.Mathematics.Vector3d.yml", "OpenTK.Mathematics.Vector3d.Add(OpenTK.Mathematics.Vector3d@,OpenTK.Mathematics.Vector3d@,OpenTK.Mathematics.Vector3d@)": "OpenTK.Mathematics.Vector3d.yml", "OpenTK.Mathematics.Vector3d.BaryCentric(OpenTK.Mathematics.Vector3d,OpenTK.Mathematics.Vector3d,OpenTK.Mathematics.Vector3d,System.Double,System.Double)": "OpenTK.Mathematics.Vector3d.yml", @@ -7732,6 +6973,8 @@ "OpenTK.Mathematics.Vector3d.Divide(OpenTK.Mathematics.Vector3d@,System.Double,OpenTK.Mathematics.Vector3d@)": "OpenTK.Mathematics.Vector3d.yml", "OpenTK.Mathematics.Vector3d.Dot(OpenTK.Mathematics.Vector3d,OpenTK.Mathematics.Vector3d)": "OpenTK.Mathematics.Vector3d.yml", "OpenTK.Mathematics.Vector3d.Dot(OpenTK.Mathematics.Vector3d@,OpenTK.Mathematics.Vector3d@,System.Double@)": "OpenTK.Mathematics.Vector3d.yml", + "OpenTK.Mathematics.Vector3d.Elerp(OpenTK.Mathematics.Vector3d,OpenTK.Mathematics.Vector3d,System.Double)": "OpenTK.Mathematics.Vector3d.yml", + "OpenTK.Mathematics.Vector3d.Elerp(OpenTK.Mathematics.Vector3d@,OpenTK.Mathematics.Vector3d@,System.Double,OpenTK.Mathematics.Vector3d@)": "OpenTK.Mathematics.Vector3d.yml", "OpenTK.Mathematics.Vector3d.Equals(OpenTK.Mathematics.Vector3d)": "OpenTK.Mathematics.Vector3d.yml", "OpenTK.Mathematics.Vector3d.Equals(System.Object)": "OpenTK.Mathematics.Vector3d.yml", "OpenTK.Mathematics.Vector3d.GetHashCode": "OpenTK.Mathematics.Vector3d.yml", @@ -7761,7 +7004,10 @@ "OpenTK.Mathematics.Vector3d.Normalized": "OpenTK.Mathematics.Vector3d.yml", "OpenTK.Mathematics.Vector3d.One": "OpenTK.Mathematics.Vector3d.yml", "OpenTK.Mathematics.Vector3d.PositiveInfinity": "OpenTK.Mathematics.Vector3d.yml", + "OpenTK.Mathematics.Vector3d.ReciprocalLengthFast": "OpenTK.Mathematics.Vector3d.yml", "OpenTK.Mathematics.Vector3d.SizeInBytes": "OpenTK.Mathematics.Vector3d.yml", + "OpenTK.Mathematics.Vector3d.Slerp(OpenTK.Mathematics.Vector3d,OpenTK.Mathematics.Vector3d,System.Double)": "OpenTK.Mathematics.Vector3d.yml", + "OpenTK.Mathematics.Vector3d.Slerp(OpenTK.Mathematics.Vector3d@,OpenTK.Mathematics.Vector3d@,System.Double,OpenTK.Mathematics.Vector3d@)": "OpenTK.Mathematics.Vector3d.yml", "OpenTK.Mathematics.Vector3d.Subtract(OpenTK.Mathematics.Vector3d,OpenTK.Mathematics.Vector3d)": "OpenTK.Mathematics.Vector3d.yml", "OpenTK.Mathematics.Vector3d.Subtract(OpenTK.Mathematics.Vector3d@,OpenTK.Mathematics.Vector3d@,OpenTK.Mathematics.Vector3d@)": "OpenTK.Mathematics.Vector3d.yml", "OpenTK.Mathematics.Vector3d.ToString": "OpenTK.Mathematics.Vector3d.yml", @@ -7863,6 +7109,9 @@ "OpenTK.Mathematics.Vector3i.#ctor(OpenTK.Mathematics.Vector2i,System.Int32)": "OpenTK.Mathematics.Vector3i.yml", "OpenTK.Mathematics.Vector3i.#ctor(System.Int32)": "OpenTK.Mathematics.Vector3i.yml", "OpenTK.Mathematics.Vector3i.#ctor(System.Int32,System.Int32,System.Int32)": "OpenTK.Mathematics.Vector3i.yml", + "OpenTK.Mathematics.Vector3i.Abs": "OpenTK.Mathematics.Vector3i.yml", + "OpenTK.Mathematics.Vector3i.Abs(OpenTK.Mathematics.Vector3i)": "OpenTK.Mathematics.Vector3i.yml", + "OpenTK.Mathematics.Vector3i.Abs(OpenTK.Mathematics.Vector3i@,OpenTK.Mathematics.Vector3i@)": "OpenTK.Mathematics.Vector3i.yml", "OpenTK.Mathematics.Vector3i.Add(OpenTK.Mathematics.Vector3i,OpenTK.Mathematics.Vector3i)": "OpenTK.Mathematics.Vector3i.yml", "OpenTK.Mathematics.Vector3i.Add(OpenTK.Mathematics.Vector3i@,OpenTK.Mathematics.Vector3i@,OpenTK.Mathematics.Vector3i@)": "OpenTK.Mathematics.Vector3i.yml", "OpenTK.Mathematics.Vector3i.Clamp(OpenTK.Mathematics.Vector3i,OpenTK.Mathematics.Vector3i,OpenTK.Mathematics.Vector3i)": "OpenTK.Mathematics.Vector3i.yml", @@ -7934,6 +7183,9 @@ "OpenTK.Mathematics.Vector4.#ctor(OpenTK.Mathematics.Vector3,System.Single)": "OpenTK.Mathematics.Vector4.yml", "OpenTK.Mathematics.Vector4.#ctor(System.Single)": "OpenTK.Mathematics.Vector4.yml", "OpenTK.Mathematics.Vector4.#ctor(System.Single,System.Single,System.Single,System.Single)": "OpenTK.Mathematics.Vector4.yml", + "OpenTK.Mathematics.Vector4.Abs": "OpenTK.Mathematics.Vector4.yml", + "OpenTK.Mathematics.Vector4.Abs(OpenTK.Mathematics.Vector4)": "OpenTK.Mathematics.Vector4.yml", + "OpenTK.Mathematics.Vector4.Abs(OpenTK.Mathematics.Vector4@,OpenTK.Mathematics.Vector4@)": "OpenTK.Mathematics.Vector4.yml", "OpenTK.Mathematics.Vector4.Add(OpenTK.Mathematics.Vector4,OpenTK.Mathematics.Vector4)": "OpenTK.Mathematics.Vector4.yml", "OpenTK.Mathematics.Vector4.Add(OpenTK.Mathematics.Vector4@,OpenTK.Mathematics.Vector4@,OpenTK.Mathematics.Vector4@)": "OpenTK.Mathematics.Vector4.yml", "OpenTK.Mathematics.Vector4.BaryCentric(OpenTK.Mathematics.Vector4,OpenTK.Mathematics.Vector4,OpenTK.Mathematics.Vector4,System.Single,System.Single)": "OpenTK.Mathematics.Vector4.yml", @@ -7951,6 +7203,8 @@ "OpenTK.Mathematics.Vector4.Divide(OpenTK.Mathematics.Vector4@,System.Single,OpenTK.Mathematics.Vector4@)": "OpenTK.Mathematics.Vector4.yml", "OpenTK.Mathematics.Vector4.Dot(OpenTK.Mathematics.Vector4,OpenTK.Mathematics.Vector4)": "OpenTK.Mathematics.Vector4.yml", "OpenTK.Mathematics.Vector4.Dot(OpenTK.Mathematics.Vector4@,OpenTK.Mathematics.Vector4@,System.Single@)": "OpenTK.Mathematics.Vector4.yml", + "OpenTK.Mathematics.Vector4.Elerp(OpenTK.Mathematics.Vector4,OpenTK.Mathematics.Vector4,System.Single)": "OpenTK.Mathematics.Vector4.yml", + "OpenTK.Mathematics.Vector4.Elerp(OpenTK.Mathematics.Vector4@,OpenTK.Mathematics.Vector4@,System.Single,OpenTK.Mathematics.Vector4@)": "OpenTK.Mathematics.Vector4.yml", "OpenTK.Mathematics.Vector4.Equals(OpenTK.Mathematics.Vector4)": "OpenTK.Mathematics.Vector4.yml", "OpenTK.Mathematics.Vector4.Equals(System.Object)": "OpenTK.Mathematics.Vector4.yml", "OpenTK.Mathematics.Vector4.GetHashCode": "OpenTK.Mathematics.Vector4.yml", @@ -7980,7 +7234,10 @@ "OpenTK.Mathematics.Vector4.Normalized": "OpenTK.Mathematics.Vector4.yml", "OpenTK.Mathematics.Vector4.One": "OpenTK.Mathematics.Vector4.yml", "OpenTK.Mathematics.Vector4.PositiveInfinity": "OpenTK.Mathematics.Vector4.yml", + "OpenTK.Mathematics.Vector4.ReciprocalLengthFast": "OpenTK.Mathematics.Vector4.yml", "OpenTK.Mathematics.Vector4.SizeInBytes": "OpenTK.Mathematics.Vector4.yml", + "OpenTK.Mathematics.Vector4.Slerp(OpenTK.Mathematics.Vector4,OpenTK.Mathematics.Vector4,System.Single)": "OpenTK.Mathematics.Vector4.yml", + "OpenTK.Mathematics.Vector4.Slerp(OpenTK.Mathematics.Vector4@,OpenTK.Mathematics.Vector4@,System.Single,OpenTK.Mathematics.Vector4@)": "OpenTK.Mathematics.Vector4.yml", "OpenTK.Mathematics.Vector4.Subtract(OpenTK.Mathematics.Vector4,OpenTK.Mathematics.Vector4)": "OpenTK.Mathematics.Vector4.yml", "OpenTK.Mathematics.Vector4.Subtract(OpenTK.Mathematics.Vector4@,OpenTK.Mathematics.Vector4@,OpenTK.Mathematics.Vector4@)": "OpenTK.Mathematics.Vector4.yml", "OpenTK.Mathematics.Vector4.ToString": "OpenTK.Mathematics.Vector4.yml", @@ -8087,6 +7344,9 @@ "OpenTK.Mathematics.Vector4d.#ctor(OpenTK.Mathematics.Vector3d,System.Double)": "OpenTK.Mathematics.Vector4d.yml", "OpenTK.Mathematics.Vector4d.#ctor(System.Double)": "OpenTK.Mathematics.Vector4d.yml", "OpenTK.Mathematics.Vector4d.#ctor(System.Double,System.Double,System.Double,System.Double)": "OpenTK.Mathematics.Vector4d.yml", + "OpenTK.Mathematics.Vector4d.Abs": "OpenTK.Mathematics.Vector4d.yml", + "OpenTK.Mathematics.Vector4d.Abs(OpenTK.Mathematics.Vector4d)": "OpenTK.Mathematics.Vector4d.yml", + "OpenTK.Mathematics.Vector4d.Abs(OpenTK.Mathematics.Vector4d@,OpenTK.Mathematics.Vector4d@)": "OpenTK.Mathematics.Vector4d.yml", "OpenTK.Mathematics.Vector4d.Add(OpenTK.Mathematics.Vector4d,OpenTK.Mathematics.Vector4d)": "OpenTK.Mathematics.Vector4d.yml", "OpenTK.Mathematics.Vector4d.Add(OpenTK.Mathematics.Vector4d@,OpenTK.Mathematics.Vector4d@,OpenTK.Mathematics.Vector4d@)": "OpenTK.Mathematics.Vector4d.yml", "OpenTK.Mathematics.Vector4d.BaryCentric(OpenTK.Mathematics.Vector4d,OpenTK.Mathematics.Vector4d,OpenTK.Mathematics.Vector4d,System.Double,System.Double)": "OpenTK.Mathematics.Vector4d.yml", @@ -8104,6 +7364,8 @@ "OpenTK.Mathematics.Vector4d.Divide(OpenTK.Mathematics.Vector4d@,System.Double,OpenTK.Mathematics.Vector4d@)": "OpenTK.Mathematics.Vector4d.yml", "OpenTK.Mathematics.Vector4d.Dot(OpenTK.Mathematics.Vector4d,OpenTK.Mathematics.Vector4d)": "OpenTK.Mathematics.Vector4d.yml", "OpenTK.Mathematics.Vector4d.Dot(OpenTK.Mathematics.Vector4d@,OpenTK.Mathematics.Vector4d@,System.Double@)": "OpenTK.Mathematics.Vector4d.yml", + "OpenTK.Mathematics.Vector4d.Elerp(OpenTK.Mathematics.Vector4d,OpenTK.Mathematics.Vector4d,System.Single)": "OpenTK.Mathematics.Vector4d.yml", + "OpenTK.Mathematics.Vector4d.Elerp(OpenTK.Mathematics.Vector4d@,OpenTK.Mathematics.Vector4d@,System.Single,OpenTK.Mathematics.Vector4d@)": "OpenTK.Mathematics.Vector4d.yml", "OpenTK.Mathematics.Vector4d.Equals(OpenTK.Mathematics.Vector4d)": "OpenTK.Mathematics.Vector4d.yml", "OpenTK.Mathematics.Vector4d.Equals(System.Object)": "OpenTK.Mathematics.Vector4d.yml", "OpenTK.Mathematics.Vector4d.GetHashCode": "OpenTK.Mathematics.Vector4d.yml", @@ -8133,7 +7395,10 @@ "OpenTK.Mathematics.Vector4d.Normalized": "OpenTK.Mathematics.Vector4d.yml", "OpenTK.Mathematics.Vector4d.One": "OpenTK.Mathematics.Vector4d.yml", "OpenTK.Mathematics.Vector4d.PositiveInfinity": "OpenTK.Mathematics.Vector4d.yml", + "OpenTK.Mathematics.Vector4d.ReciprocalLengthFast": "OpenTK.Mathematics.Vector4d.yml", "OpenTK.Mathematics.Vector4d.SizeInBytes": "OpenTK.Mathematics.Vector4d.yml", + "OpenTK.Mathematics.Vector4d.Slerp(OpenTK.Mathematics.Vector4d,OpenTK.Mathematics.Vector4d,System.Double)": "OpenTK.Mathematics.Vector4d.yml", + "OpenTK.Mathematics.Vector4d.Slerp(OpenTK.Mathematics.Vector4d@,OpenTK.Mathematics.Vector4d@,System.Double,OpenTK.Mathematics.Vector4d@)": "OpenTK.Mathematics.Vector4d.yml", "OpenTK.Mathematics.Vector4d.Subtract(OpenTK.Mathematics.Vector4d,OpenTK.Mathematics.Vector4d)": "OpenTK.Mathematics.Vector4d.yml", "OpenTK.Mathematics.Vector4d.Subtract(OpenTK.Mathematics.Vector4d@,OpenTK.Mathematics.Vector4d@,OpenTK.Mathematics.Vector4d@)": "OpenTK.Mathematics.Vector4d.yml", "OpenTK.Mathematics.Vector4d.ToString": "OpenTK.Mathematics.Vector4d.yml", @@ -8335,6 +7600,9 @@ "OpenTK.Mathematics.Vector4i.#ctor(OpenTK.Mathematics.Vector3i,System.Int32)": "OpenTK.Mathematics.Vector4i.yml", "OpenTK.Mathematics.Vector4i.#ctor(System.Int32)": "OpenTK.Mathematics.Vector4i.yml", "OpenTK.Mathematics.Vector4i.#ctor(System.Int32,System.Int32,System.Int32,System.Int32)": "OpenTK.Mathematics.Vector4i.yml", + "OpenTK.Mathematics.Vector4i.Abs": "OpenTK.Mathematics.Vector4i.yml", + "OpenTK.Mathematics.Vector4i.Abs(OpenTK.Mathematics.Vector4i)": "OpenTK.Mathematics.Vector4i.yml", + "OpenTK.Mathematics.Vector4i.Abs(OpenTK.Mathematics.Vector4i@,OpenTK.Mathematics.Vector4i@)": "OpenTK.Mathematics.Vector4i.yml", "OpenTK.Mathematics.Vector4i.Add(OpenTK.Mathematics.Vector4i,OpenTK.Mathematics.Vector4i)": "OpenTK.Mathematics.Vector4i.yml", "OpenTK.Mathematics.Vector4i.Add(OpenTK.Mathematics.Vector4i@,OpenTK.Mathematics.Vector4i@,OpenTK.Mathematics.Vector4i@)": "OpenTK.Mathematics.Vector4i.yml", "OpenTK.Mathematics.Vector4i.Clamp(OpenTK.Mathematics.Vector4i,OpenTK.Mathematics.Vector4i,OpenTK.Mathematics.Vector4i)": "OpenTK.Mathematics.Vector4i.yml", @@ -8455,6 +7723,578 @@ "OpenTK.Mathematics.Vector4i.op_Multiply(System.Int32,OpenTK.Mathematics.Vector4i)": "OpenTK.Mathematics.Vector4i.yml", "OpenTK.Mathematics.Vector4i.op_Subtraction(OpenTK.Mathematics.Vector4i,OpenTK.Mathematics.Vector4i)": "OpenTK.Mathematics.Vector4i.yml", "OpenTK.Mathematics.Vector4i.op_UnaryNegation(OpenTK.Mathematics.Vector4i)": "OpenTK.Mathematics.Vector4i.yml", + "OpenTK.Platform": "OpenTK.Platform.yml", + "OpenTK.Platform.AppTheme": "OpenTK.Platform.AppTheme.yml", + "OpenTK.Platform.AppTheme.Dark": "OpenTK.Platform.AppTheme.yml", + "OpenTK.Platform.AppTheme.Light": "OpenTK.Platform.AppTheme.yml", + "OpenTK.Platform.AppTheme.NoPreference": "OpenTK.Platform.AppTheme.yml", + "OpenTK.Platform.AudioData": "OpenTK.Platform.AudioData.yml", + "OpenTK.Platform.AudioData.Audio": "OpenTK.Platform.AudioData.yml", + "OpenTK.Platform.AudioData.SampleRate": "OpenTK.Platform.AudioData.yml", + "OpenTK.Platform.AudioData.Stereo": "OpenTK.Platform.AudioData.yml", + "OpenTK.Platform.BatteryInfo": "OpenTK.Platform.BatteryInfo.yml", + "OpenTK.Platform.BatteryInfo.BatteryPercent": "OpenTK.Platform.BatteryInfo.yml", + "OpenTK.Platform.BatteryInfo.BatteryTime": "OpenTK.Platform.BatteryInfo.yml", + "OpenTK.Platform.BatteryInfo.Charging": "OpenTK.Platform.BatteryInfo.yml", + "OpenTK.Platform.BatteryInfo.OnAC": "OpenTK.Platform.BatteryInfo.yml", + "OpenTK.Platform.BatteryInfo.PowerSaver": "OpenTK.Platform.BatteryInfo.yml", + "OpenTK.Platform.BatteryInfo.ToString": "OpenTK.Platform.BatteryInfo.yml", + "OpenTK.Platform.BatteryStatus": "OpenTK.Platform.BatteryStatus.yml", + "OpenTK.Platform.BatteryStatus.HasSystemBattery": "OpenTK.Platform.BatteryStatus.yml", + "OpenTK.Platform.BatteryStatus.NoSystemBattery": "OpenTK.Platform.BatteryStatus.yml", + "OpenTK.Platform.BatteryStatus.Unknown": "OpenTK.Platform.BatteryStatus.yml", + "OpenTK.Platform.Bitmap": "OpenTK.Platform.Bitmap.yml", + "OpenTK.Platform.Bitmap.#ctor(System.Int32,System.Int32,System.Byte[])": "OpenTK.Platform.Bitmap.yml", + "OpenTK.Platform.Bitmap.Data": "OpenTK.Platform.Bitmap.yml", + "OpenTK.Platform.Bitmap.Height": "OpenTK.Platform.Bitmap.yml", + "OpenTK.Platform.Bitmap.Width": "OpenTK.Platform.Bitmap.yml", + "OpenTK.Platform.ClipboardFormat": "OpenTK.Platform.ClipboardFormat.yml", + "OpenTK.Platform.ClipboardFormat.Audio": "OpenTK.Platform.ClipboardFormat.yml", + "OpenTK.Platform.ClipboardFormat.Bitmap": "OpenTK.Platform.ClipboardFormat.yml", + "OpenTK.Platform.ClipboardFormat.Files": "OpenTK.Platform.ClipboardFormat.yml", + "OpenTK.Platform.ClipboardFormat.None": "OpenTK.Platform.ClipboardFormat.yml", + "OpenTK.Platform.ClipboardFormat.Text": "OpenTK.Platform.ClipboardFormat.yml", + "OpenTK.Platform.ClipboardUpdateEventArgs": "OpenTK.Platform.ClipboardUpdateEventArgs.yml", + "OpenTK.Platform.ClipboardUpdateEventArgs.#ctor(OpenTK.Platform.ClipboardFormat)": "OpenTK.Platform.ClipboardUpdateEventArgs.yml", + "OpenTK.Platform.ClipboardUpdateEventArgs.NewFormat": "OpenTK.Platform.ClipboardUpdateEventArgs.yml", + "OpenTK.Platform.CloseEventArgs": "OpenTK.Platform.CloseEventArgs.yml", + "OpenTK.Platform.CloseEventArgs.#ctor(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.CloseEventArgs.yml", + "OpenTK.Platform.ContextDepthBits": "OpenTK.Platform.ContextDepthBits.yml", + "OpenTK.Platform.ContextDepthBits.Depth16": "OpenTK.Platform.ContextDepthBits.yml", + "OpenTK.Platform.ContextDepthBits.Depth24": "OpenTK.Platform.ContextDepthBits.yml", + "OpenTK.Platform.ContextDepthBits.Depth32": "OpenTK.Platform.ContextDepthBits.yml", + "OpenTK.Platform.ContextDepthBits.None": "OpenTK.Platform.ContextDepthBits.yml", + "OpenTK.Platform.ContextPixelFormat": "OpenTK.Platform.ContextPixelFormat.yml", + "OpenTK.Platform.ContextPixelFormat.RGBA": "OpenTK.Platform.ContextPixelFormat.yml", + "OpenTK.Platform.ContextPixelFormat.RGBAFloat": "OpenTK.Platform.ContextPixelFormat.yml", + "OpenTK.Platform.ContextPixelFormat.RGBAPackedFloat": "OpenTK.Platform.ContextPixelFormat.yml", + "OpenTK.Platform.ContextReleaseBehaviour": "OpenTK.Platform.ContextReleaseBehaviour.yml", + "OpenTK.Platform.ContextReleaseBehaviour.Flush": "OpenTK.Platform.ContextReleaseBehaviour.yml", + "OpenTK.Platform.ContextReleaseBehaviour.None": "OpenTK.Platform.ContextReleaseBehaviour.yml", + "OpenTK.Platform.ContextResetNotificationStrategy": "OpenTK.Platform.ContextResetNotificationStrategy.yml", + "OpenTK.Platform.ContextResetNotificationStrategy.LoseContextOnReset": "OpenTK.Platform.ContextResetNotificationStrategy.yml", + "OpenTK.Platform.ContextResetNotificationStrategy.NoResetNotification": "OpenTK.Platform.ContextResetNotificationStrategy.yml", + "OpenTK.Platform.ContextStencilBits": "OpenTK.Platform.ContextStencilBits.yml", + "OpenTK.Platform.ContextStencilBits.None": "OpenTK.Platform.ContextStencilBits.yml", + "OpenTK.Platform.ContextStencilBits.Stencil1": "OpenTK.Platform.ContextStencilBits.yml", + "OpenTK.Platform.ContextStencilBits.Stencil8": "OpenTK.Platform.ContextStencilBits.yml", + "OpenTK.Platform.ContextSwapMethod": "OpenTK.Platform.ContextSwapMethod.yml", + "OpenTK.Platform.ContextSwapMethod.Copy": "OpenTK.Platform.ContextSwapMethod.yml", + "OpenTK.Platform.ContextSwapMethod.Exchange": "OpenTK.Platform.ContextSwapMethod.yml", + "OpenTK.Platform.ContextSwapMethod.Undefined": "OpenTK.Platform.ContextSwapMethod.yml", + "OpenTK.Platform.ContextValueSelector": "OpenTK.Platform.ContextValueSelector.yml", + "OpenTK.Platform.ContextValues": "OpenTK.Platform.ContextValues.yml", + "OpenTK.Platform.ContextValues.#ctor(System.UInt64,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Boolean,System.Boolean,OpenTK.Platform.ContextPixelFormat,OpenTK.Platform.ContextSwapMethod,System.Int32)": "OpenTK.Platform.ContextValues.yml", + "OpenTK.Platform.ContextValues.AlphaBits": "OpenTK.Platform.ContextValues.yml", + "OpenTK.Platform.ContextValues.BlueBits": "OpenTK.Platform.ContextValues.yml", + "OpenTK.Platform.ContextValues.DefaultValuesSelector(System.Collections.Generic.IReadOnlyList{OpenTK.Platform.ContextValues},OpenTK.Platform.ContextValues,OpenTK.Core.Utility.ILogger)": "OpenTK.Platform.ContextValues.yml", + "OpenTK.Platform.ContextValues.DepthBits": "OpenTK.Platform.ContextValues.yml", + "OpenTK.Platform.ContextValues.DoubleBuffered": "OpenTK.Platform.ContextValues.yml", + "OpenTK.Platform.ContextValues.Equals(OpenTK.Platform.ContextValues)": "OpenTK.Platform.ContextValues.yml", + "OpenTK.Platform.ContextValues.Equals(System.Object)": "OpenTK.Platform.ContextValues.yml", + "OpenTK.Platform.ContextValues.GetHashCode": "OpenTK.Platform.ContextValues.yml", + "OpenTK.Platform.ContextValues.GreenBits": "OpenTK.Platform.ContextValues.yml", + "OpenTK.Platform.ContextValues.HasEqualColorBits(OpenTK.Platform.ContextValues,OpenTK.Platform.ContextValues)": "OpenTK.Platform.ContextValues.yml", + "OpenTK.Platform.ContextValues.HasEqualDepthBits(OpenTK.Platform.ContextValues,OpenTK.Platform.ContextValues)": "OpenTK.Platform.ContextValues.yml", + "OpenTK.Platform.ContextValues.HasEqualDoubleBuffer(OpenTK.Platform.ContextValues,OpenTK.Platform.ContextValues)": "OpenTK.Platform.ContextValues.yml", + "OpenTK.Platform.ContextValues.HasEqualMSAA(OpenTK.Platform.ContextValues,OpenTK.Platform.ContextValues)": "OpenTK.Platform.ContextValues.yml", + "OpenTK.Platform.ContextValues.HasEqualPixelFormat(OpenTK.Platform.ContextValues,OpenTK.Platform.ContextValues)": "OpenTK.Platform.ContextValues.yml", + "OpenTK.Platform.ContextValues.HasEqualSRGB(OpenTK.Platform.ContextValues,OpenTK.Platform.ContextValues)": "OpenTK.Platform.ContextValues.yml", + "OpenTK.Platform.ContextValues.HasEqualStencilBits(OpenTK.Platform.ContextValues,OpenTK.Platform.ContextValues)": "OpenTK.Platform.ContextValues.yml", + "OpenTK.Platform.ContextValues.HasEqualSwapMethod(OpenTK.Platform.ContextValues,OpenTK.Platform.ContextValues)": "OpenTK.Platform.ContextValues.yml", + "OpenTK.Platform.ContextValues.HasGreaterOrEqualColorBits(OpenTK.Platform.ContextValues,OpenTK.Platform.ContextValues)": "OpenTK.Platform.ContextValues.yml", + "OpenTK.Platform.ContextValues.HasGreaterOrEqualDepthBits(OpenTK.Platform.ContextValues,OpenTK.Platform.ContextValues)": "OpenTK.Platform.ContextValues.yml", + "OpenTK.Platform.ContextValues.HasGreaterOrEqualStencilBits(OpenTK.Platform.ContextValues,OpenTK.Platform.ContextValues)": "OpenTK.Platform.ContextValues.yml", + "OpenTK.Platform.ContextValues.HasLessOrEqualColorBits(OpenTK.Platform.ContextValues,OpenTK.Platform.ContextValues)": "OpenTK.Platform.ContextValues.yml", + "OpenTK.Platform.ContextValues.HasLessOrEqualDepthBits(OpenTK.Platform.ContextValues,OpenTK.Platform.ContextValues)": "OpenTK.Platform.ContextValues.yml", + "OpenTK.Platform.ContextValues.HasLessOrEqualStencilBits(OpenTK.Platform.ContextValues,OpenTK.Platform.ContextValues)": "OpenTK.Platform.ContextValues.yml", + "OpenTK.Platform.ContextValues.ID": "OpenTK.Platform.ContextValues.yml", + "OpenTK.Platform.ContextValues.IsEqualExcludingID(OpenTK.Platform.ContextValues,OpenTK.Platform.ContextValues)": "OpenTK.Platform.ContextValues.yml", + "OpenTK.Platform.ContextValues.PixelFormat": "OpenTK.Platform.ContextValues.yml", + "OpenTK.Platform.ContextValues.RedBits": "OpenTK.Platform.ContextValues.yml", + "OpenTK.Platform.ContextValues.SRGBFramebuffer": "OpenTK.Platform.ContextValues.yml", + "OpenTK.Platform.ContextValues.Samples": "OpenTK.Platform.ContextValues.yml", + "OpenTK.Platform.ContextValues.StencilBits": "OpenTK.Platform.ContextValues.yml", + "OpenTK.Platform.ContextValues.SwapMethod": "OpenTK.Platform.ContextValues.yml", + "OpenTK.Platform.ContextValues.ToString": "OpenTK.Platform.ContextValues.yml", + "OpenTK.Platform.ContextValues.op_Equality(OpenTK.Platform.ContextValues,OpenTK.Platform.ContextValues)": "OpenTK.Platform.ContextValues.yml", + "OpenTK.Platform.ContextValues.op_Inequality(OpenTK.Platform.ContextValues,OpenTK.Platform.ContextValues)": "OpenTK.Platform.ContextValues.yml", + "OpenTK.Platform.CursorCaptureMode": "OpenTK.Platform.CursorCaptureMode.yml", + "OpenTK.Platform.CursorCaptureMode.Confined": "OpenTK.Platform.CursorCaptureMode.yml", + "OpenTK.Platform.CursorCaptureMode.Locked": "OpenTK.Platform.CursorCaptureMode.yml", + "OpenTK.Platform.CursorCaptureMode.Normal": "OpenTK.Platform.CursorCaptureMode.yml", + "OpenTK.Platform.CursorHandle": "OpenTK.Platform.CursorHandle.yml", + "OpenTK.Platform.DialogFileFilter": "OpenTK.Platform.DialogFileFilter.yml", + "OpenTK.Platform.DialogFileFilter.#ctor(System.String,System.String)": "OpenTK.Platform.DialogFileFilter.yml", + "OpenTK.Platform.DialogFileFilter.Equals(OpenTK.Platform.DialogFileFilter)": "OpenTK.Platform.DialogFileFilter.yml", + "OpenTK.Platform.DialogFileFilter.Equals(System.Object)": "OpenTK.Platform.DialogFileFilter.yml", + "OpenTK.Platform.DialogFileFilter.Filter": "OpenTK.Platform.DialogFileFilter.yml", + "OpenTK.Platform.DialogFileFilter.GetHashCode": "OpenTK.Platform.DialogFileFilter.yml", + "OpenTK.Platform.DialogFileFilter.Name": "OpenTK.Platform.DialogFileFilter.yml", + "OpenTK.Platform.DialogFileFilter.ToString": "OpenTK.Platform.DialogFileFilter.yml", + "OpenTK.Platform.DialogFileFilter.op_Equality(OpenTK.Platform.DialogFileFilter,OpenTK.Platform.DialogFileFilter)": "OpenTK.Platform.DialogFileFilter.yml", + "OpenTK.Platform.DialogFileFilter.op_Inequality(OpenTK.Platform.DialogFileFilter,OpenTK.Platform.DialogFileFilter)": "OpenTK.Platform.DialogFileFilter.yml", + "OpenTK.Platform.DisplayConnectionChangedEventArgs": "OpenTK.Platform.DisplayConnectionChangedEventArgs.yml", + "OpenTK.Platform.DisplayConnectionChangedEventArgs.#ctor(OpenTK.Platform.DisplayHandle,System.Boolean)": "OpenTK.Platform.DisplayConnectionChangedEventArgs.yml", + "OpenTK.Platform.DisplayConnectionChangedEventArgs.Disconnected": "OpenTK.Platform.DisplayConnectionChangedEventArgs.yml", + "OpenTK.Platform.DisplayConnectionChangedEventArgs.Display": "OpenTK.Platform.DisplayConnectionChangedEventArgs.yml", + "OpenTK.Platform.DisplayHandle": "OpenTK.Platform.DisplayHandle.yml", + "OpenTK.Platform.DisplayResolution": "OpenTK.Platform.DisplayResolution.yml", + "OpenTK.Platform.DisplayResolution.#ctor(System.Int32,System.Int32)": "OpenTK.Platform.DisplayResolution.yml", + "OpenTK.Platform.DisplayResolution.ResolutionX": "OpenTK.Platform.DisplayResolution.yml", + "OpenTK.Platform.DisplayResolution.ResolutionY": "OpenTK.Platform.DisplayResolution.yml", + "OpenTK.Platform.DisplayResolution.ToString": "OpenTK.Platform.DisplayResolution.yml", + "OpenTK.Platform.EventQueue": "OpenTK.Platform.EventQueue.yml", + "OpenTK.Platform.EventQueue.DispatchEvents": "OpenTK.Platform.EventQueue.yml", + "OpenTK.Platform.EventQueue.DispatchOne": "OpenTK.Platform.EventQueue.yml", + "OpenTK.Platform.EventQueue.Dispose": "OpenTK.Platform.EventQueue.yml", + "OpenTK.Platform.EventQueue.EventDispatched": "OpenTK.Platform.EventQueue.yml", + "OpenTK.Platform.EventQueue.EventRaised": "OpenTK.Platform.EventQueue.yml", + "OpenTK.Platform.EventQueue.FilteredHandle": "OpenTK.Platform.EventQueue.yml", + "OpenTK.Platform.EventQueue.InQueue": "OpenTK.Platform.EventQueue.yml", + "OpenTK.Platform.EventQueue.Raise(OpenTK.Platform.PalHandle,OpenTK.Platform.PlatformEventType,System.EventArgs)": "OpenTK.Platform.EventQueue.yml", + "OpenTK.Platform.EventQueue.Subscribe(OpenTK.Platform.PalHandle)": "OpenTK.Platform.EventQueue.yml", + "OpenTK.Platform.FileDropEventArgs": "OpenTK.Platform.FileDropEventArgs.yml", + "OpenTK.Platform.FileDropEventArgs.#ctor(OpenTK.Platform.WindowHandle,System.Collections.Generic.IReadOnlyList{System.String},OpenTK.Mathematics.Vector2i)": "OpenTK.Platform.FileDropEventArgs.yml", + "OpenTK.Platform.FileDropEventArgs.FilePaths": "OpenTK.Platform.FileDropEventArgs.yml", + "OpenTK.Platform.FileDropEventArgs.Position": "OpenTK.Platform.FileDropEventArgs.yml", + "OpenTK.Platform.FocusEventArgs": "OpenTK.Platform.FocusEventArgs.yml", + "OpenTK.Platform.FocusEventArgs.#ctor(OpenTK.Platform.WindowHandle,System.Boolean)": "OpenTK.Platform.FocusEventArgs.yml", + "OpenTK.Platform.FocusEventArgs.GotFocus": "OpenTK.Platform.FocusEventArgs.yml", + "OpenTK.Platform.GamepadBatteryInfo": "OpenTK.Platform.GamepadBatteryInfo.yml", + "OpenTK.Platform.GamepadBatteryInfo.#ctor(OpenTK.Platform.GamepadBatteryType,System.Single)": "OpenTK.Platform.GamepadBatteryInfo.yml", + "OpenTK.Platform.GamepadBatteryInfo.BatteryType": "OpenTK.Platform.GamepadBatteryInfo.yml", + "OpenTK.Platform.GamepadBatteryInfo.ChargeLevel": "OpenTK.Platform.GamepadBatteryInfo.yml", + "OpenTK.Platform.GamepadBatteryType": "OpenTK.Platform.GamepadBatteryType.yml", + "OpenTK.Platform.GamepadBatteryType.Alkaline": "OpenTK.Platform.GamepadBatteryType.yml", + "OpenTK.Platform.GamepadBatteryType.NiMH": "OpenTK.Platform.GamepadBatteryType.yml", + "OpenTK.Platform.GamepadBatteryType.Unknown": "OpenTK.Platform.GamepadBatteryType.yml", + "OpenTK.Platform.GamepadBatteryType.Wired": "OpenTK.Platform.GamepadBatteryType.yml", + "OpenTK.Platform.GraphicsApi": "OpenTK.Platform.GraphicsApi.yml", + "OpenTK.Platform.GraphicsApi.None": "OpenTK.Platform.GraphicsApi.yml", + "OpenTK.Platform.GraphicsApi.OpenGL": "OpenTK.Platform.GraphicsApi.yml", + "OpenTK.Platform.GraphicsApi.OpenGLES": "OpenTK.Platform.GraphicsApi.yml", + "OpenTK.Platform.GraphicsApi.Vulkan": "OpenTK.Platform.GraphicsApi.yml", + "OpenTK.Platform.GraphicsApiHints": "OpenTK.Platform.GraphicsApiHints.yml", + "OpenTK.Platform.GraphicsApiHints.Api": "OpenTK.Platform.GraphicsApiHints.yml", + "OpenTK.Platform.HitTest": "OpenTK.Platform.HitTest.yml", + "OpenTK.Platform.HitType": "OpenTK.Platform.HitType.yml", + "OpenTK.Platform.HitType.Default": "OpenTK.Platform.HitType.yml", + "OpenTK.Platform.HitType.Draggable": "OpenTK.Platform.HitType.yml", + "OpenTK.Platform.HitType.Normal": "OpenTK.Platform.HitType.yml", + "OpenTK.Platform.HitType.ResizeBottom": "OpenTK.Platform.HitType.yml", + "OpenTK.Platform.HitType.ResizeBottomLeft": "OpenTK.Platform.HitType.yml", + "OpenTK.Platform.HitType.ResizeBottomRight": "OpenTK.Platform.HitType.yml", + "OpenTK.Platform.HitType.ResizeLeft": "OpenTK.Platform.HitType.yml", + "OpenTK.Platform.HitType.ResizeRight": "OpenTK.Platform.HitType.yml", + "OpenTK.Platform.HitType.ResizeTop": "OpenTK.Platform.HitType.yml", + "OpenTK.Platform.HitType.ResizeTopLeft": "OpenTK.Platform.HitType.yml", + "OpenTK.Platform.HitType.ResizeTopRight": "OpenTK.Platform.HitType.yml", + "OpenTK.Platform.IClipboardComponent": "OpenTK.Platform.IClipboardComponent.yml", + "OpenTK.Platform.IClipboardComponent.GetClipboardAudio": "OpenTK.Platform.IClipboardComponent.yml", + "OpenTK.Platform.IClipboardComponent.GetClipboardBitmap": "OpenTK.Platform.IClipboardComponent.yml", + "OpenTK.Platform.IClipboardComponent.GetClipboardFiles": "OpenTK.Platform.IClipboardComponent.yml", + "OpenTK.Platform.IClipboardComponent.GetClipboardFormat": "OpenTK.Platform.IClipboardComponent.yml", + "OpenTK.Platform.IClipboardComponent.GetClipboardText": "OpenTK.Platform.IClipboardComponent.yml", + "OpenTK.Platform.IClipboardComponent.SetClipboardText(System.String)": "OpenTK.Platform.IClipboardComponent.yml", + "OpenTK.Platform.IClipboardComponent.SupportedFormats": "OpenTK.Platform.IClipboardComponent.yml", + "OpenTK.Platform.ICursorComponent": "OpenTK.Platform.ICursorComponent.yml", + "OpenTK.Platform.ICursorComponent.CanInspectSystemCursors": "OpenTK.Platform.ICursorComponent.yml", + "OpenTK.Platform.ICursorComponent.CanLoadSystemCursors": "OpenTK.Platform.ICursorComponent.yml", + "OpenTK.Platform.ICursorComponent.Create(OpenTK.Platform.SystemCursorType)": "OpenTK.Platform.ICursorComponent.yml", + "OpenTK.Platform.ICursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.Int32,System.Int32)": "OpenTK.Platform.ICursorComponent.yml", + "OpenTK.Platform.ICursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.ReadOnlySpan{System.Byte},System.Int32,System.Int32)": "OpenTK.Platform.ICursorComponent.yml", + "OpenTK.Platform.ICursorComponent.Destroy(OpenTK.Platform.CursorHandle)": "OpenTK.Platform.ICursorComponent.yml", + "OpenTK.Platform.ICursorComponent.GetHotspot(OpenTK.Platform.CursorHandle,System.Int32@,System.Int32@)": "OpenTK.Platform.ICursorComponent.yml", + "OpenTK.Platform.ICursorComponent.GetSize(OpenTK.Platform.CursorHandle,System.Int32@,System.Int32@)": "OpenTK.Platform.ICursorComponent.yml", + "OpenTK.Platform.ICursorComponent.IsSystemCursor(OpenTK.Platform.CursorHandle)": "OpenTK.Platform.ICursorComponent.yml", + "OpenTK.Platform.IDialogComponent": "OpenTK.Platform.IDialogComponent.yml", + "OpenTK.Platform.IDialogComponent.CanTargetFolders": "OpenTK.Platform.IDialogComponent.yml", + "OpenTK.Platform.IDialogComponent.ShowMessageBox(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.MessageBoxType,OpenTK.Platform.IconHandle)": "OpenTK.Platform.IDialogComponent.yml", + "OpenTK.Platform.IDialogComponent.ShowOpenDialog(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.DialogFileFilter[],OpenTK.Platform.OpenDialogOptions)": "OpenTK.Platform.IDialogComponent.yml", + "OpenTK.Platform.IDialogComponent.ShowSaveDialog(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.DialogFileFilter[],OpenTK.Platform.SaveDialogOptions)": "OpenTK.Platform.IDialogComponent.yml", + "OpenTK.Platform.IDisplayComponent": "OpenTK.Platform.IDisplayComponent.yml", + "OpenTK.Platform.IDisplayComponent.CanGetVirtualPosition": "OpenTK.Platform.IDisplayComponent.yml", + "OpenTK.Platform.IDisplayComponent.Close(OpenTK.Platform.DisplayHandle)": "OpenTK.Platform.IDisplayComponent.yml", + "OpenTK.Platform.IDisplayComponent.GetDisplayCount": "OpenTK.Platform.IDisplayComponent.yml", + "OpenTK.Platform.IDisplayComponent.GetDisplayScale(OpenTK.Platform.DisplayHandle,System.Single@,System.Single@)": "OpenTK.Platform.IDisplayComponent.yml", + "OpenTK.Platform.IDisplayComponent.GetName(OpenTK.Platform.DisplayHandle)": "OpenTK.Platform.IDisplayComponent.yml", + "OpenTK.Platform.IDisplayComponent.GetRefreshRate(OpenTK.Platform.DisplayHandle,System.Single@)": "OpenTK.Platform.IDisplayComponent.yml", + "OpenTK.Platform.IDisplayComponent.GetResolution(OpenTK.Platform.DisplayHandle,System.Int32@,System.Int32@)": "OpenTK.Platform.IDisplayComponent.yml", + "OpenTK.Platform.IDisplayComponent.GetSupportedVideoModes(OpenTK.Platform.DisplayHandle)": "OpenTK.Platform.IDisplayComponent.yml", + "OpenTK.Platform.IDisplayComponent.GetVideoMode(OpenTK.Platform.DisplayHandle,OpenTK.Platform.VideoMode@)": "OpenTK.Platform.IDisplayComponent.yml", + "OpenTK.Platform.IDisplayComponent.GetVirtualPosition(OpenTK.Platform.DisplayHandle,System.Int32@,System.Int32@)": "OpenTK.Platform.IDisplayComponent.yml", + "OpenTK.Platform.IDisplayComponent.GetWorkArea(OpenTK.Platform.DisplayHandle,OpenTK.Mathematics.Box2i@)": "OpenTK.Platform.IDisplayComponent.yml", + "OpenTK.Platform.IDisplayComponent.IsPrimary(OpenTK.Platform.DisplayHandle)": "OpenTK.Platform.IDisplayComponent.yml", + "OpenTK.Platform.IDisplayComponent.Open(System.Int32)": "OpenTK.Platform.IDisplayComponent.yml", + "OpenTK.Platform.IDisplayComponent.OpenPrimary": "OpenTK.Platform.IDisplayComponent.yml", + "OpenTK.Platform.IIconComponent": "OpenTK.Platform.IIconComponent.yml", + "OpenTK.Platform.IIconComponent.CanLoadSystemIcons": "OpenTK.Platform.IIconComponent.yml", + "OpenTK.Platform.IIconComponent.Create(OpenTK.Platform.SystemIconType)": "OpenTK.Platform.IIconComponent.yml", + "OpenTK.Platform.IIconComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte})": "OpenTK.Platform.IIconComponent.yml", + "OpenTK.Platform.IIconComponent.Destroy(OpenTK.Platform.IconHandle)": "OpenTK.Platform.IIconComponent.yml", + "OpenTK.Platform.IIconComponent.GetSize(OpenTK.Platform.IconHandle,System.Int32@,System.Int32@)": "OpenTK.Platform.IIconComponent.yml", + "OpenTK.Platform.IJoystickComponent": "OpenTK.Platform.IJoystickComponent.yml", + "OpenTK.Platform.IJoystickComponent.Close(OpenTK.Platform.JoystickHandle)": "OpenTK.Platform.IJoystickComponent.yml", + "OpenTK.Platform.IJoystickComponent.GetAxis(OpenTK.Platform.JoystickHandle,OpenTK.Platform.JoystickAxis)": "OpenTK.Platform.IJoystickComponent.yml", + "OpenTK.Platform.IJoystickComponent.GetButton(OpenTK.Platform.JoystickHandle,OpenTK.Platform.JoystickButton)": "OpenTK.Platform.IJoystickComponent.yml", + "OpenTK.Platform.IJoystickComponent.GetGuid(OpenTK.Platform.JoystickHandle)": "OpenTK.Platform.IJoystickComponent.yml", + "OpenTK.Platform.IJoystickComponent.GetName(OpenTK.Platform.JoystickHandle)": "OpenTK.Platform.IJoystickComponent.yml", + "OpenTK.Platform.IJoystickComponent.IsConnected(System.Int32)": "OpenTK.Platform.IJoystickComponent.yml", + "OpenTK.Platform.IJoystickComponent.LeftDeadzone": "OpenTK.Platform.IJoystickComponent.yml", + "OpenTK.Platform.IJoystickComponent.Open(System.Int32)": "OpenTK.Platform.IJoystickComponent.yml", + "OpenTK.Platform.IJoystickComponent.RightDeadzone": "OpenTK.Platform.IJoystickComponent.yml", + "OpenTK.Platform.IJoystickComponent.SetVibration(OpenTK.Platform.JoystickHandle,System.Single,System.Single)": "OpenTK.Platform.IJoystickComponent.yml", + "OpenTK.Platform.IJoystickComponent.TriggerThreshold": "OpenTK.Platform.IJoystickComponent.yml", + "OpenTK.Platform.IJoystickComponent.TryGetBatteryInfo(OpenTK.Platform.JoystickHandle,OpenTK.Platform.GamepadBatteryInfo@)": "OpenTK.Platform.IJoystickComponent.yml", + "OpenTK.Platform.IKeyboardComponent": "OpenTK.Platform.IKeyboardComponent.yml", + "OpenTK.Platform.IKeyboardComponent.BeginIme(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.IKeyboardComponent.yml", + "OpenTK.Platform.IKeyboardComponent.EndIme(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.IKeyboardComponent.yml", + "OpenTK.Platform.IKeyboardComponent.GetActiveKeyboardLayout(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.IKeyboardComponent.yml", + "OpenTK.Platform.IKeyboardComponent.GetAvailableKeyboardLayouts": "OpenTK.Platform.IKeyboardComponent.yml", + "OpenTK.Platform.IKeyboardComponent.GetKeyFromScancode(OpenTK.Platform.Scancode)": "OpenTK.Platform.IKeyboardComponent.yml", + "OpenTK.Platform.IKeyboardComponent.GetKeyboardModifiers": "OpenTK.Platform.IKeyboardComponent.yml", + "OpenTK.Platform.IKeyboardComponent.GetKeyboardState(System.Boolean[])": "OpenTK.Platform.IKeyboardComponent.yml", + "OpenTK.Platform.IKeyboardComponent.GetScancodeFromKey(OpenTK.Platform.Key)": "OpenTK.Platform.IKeyboardComponent.yml", + "OpenTK.Platform.IKeyboardComponent.SetImeRectangle(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32)": "OpenTK.Platform.IKeyboardComponent.yml", + "OpenTK.Platform.IKeyboardComponent.SupportsIme": "OpenTK.Platform.IKeyboardComponent.yml", + "OpenTK.Platform.IKeyboardComponent.SupportsLayouts": "OpenTK.Platform.IKeyboardComponent.yml", + "OpenTK.Platform.IMouseComponent": "OpenTK.Platform.IMouseComponent.yml", + "OpenTK.Platform.IMouseComponent.CanSetMousePosition": "OpenTK.Platform.IMouseComponent.yml", + "OpenTK.Platform.IMouseComponent.EnableRawMouseMotion(OpenTK.Platform.WindowHandle,System.Boolean)": "OpenTK.Platform.IMouseComponent.yml", + "OpenTK.Platform.IMouseComponent.GetMouseState(OpenTK.Platform.MouseState@)": "OpenTK.Platform.IMouseComponent.yml", + "OpenTK.Platform.IMouseComponent.GetPosition(System.Int32@,System.Int32@)": "OpenTK.Platform.IMouseComponent.yml", + "OpenTK.Platform.IMouseComponent.IsRawMouseMotionEnabled(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.IMouseComponent.yml", + "OpenTK.Platform.IMouseComponent.SetPosition(System.Int32,System.Int32)": "OpenTK.Platform.IMouseComponent.yml", + "OpenTK.Platform.IMouseComponent.SupportsRawMouseMotion": "OpenTK.Platform.IMouseComponent.yml", + "OpenTK.Platform.IOpenGLComponent": "OpenTK.Platform.IOpenGLComponent.yml", + "OpenTK.Platform.IOpenGLComponent.CanCreateFromSurface": "OpenTK.Platform.IOpenGLComponent.yml", + "OpenTK.Platform.IOpenGLComponent.CanCreateFromWindow": "OpenTK.Platform.IOpenGLComponent.yml", + "OpenTK.Platform.IOpenGLComponent.CanShareContexts": "OpenTK.Platform.IOpenGLComponent.yml", + "OpenTK.Platform.IOpenGLComponent.CreateFromSurface": "OpenTK.Platform.IOpenGLComponent.yml", + "OpenTK.Platform.IOpenGLComponent.CreateFromWindow(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.IOpenGLComponent.yml", + "OpenTK.Platform.IOpenGLComponent.DestroyContext(OpenTK.Platform.OpenGLContextHandle)": "OpenTK.Platform.IOpenGLComponent.yml", + "OpenTK.Platform.IOpenGLComponent.GetBindingsContext(OpenTK.Platform.OpenGLContextHandle)": "OpenTK.Platform.IOpenGLComponent.yml", + "OpenTK.Platform.IOpenGLComponent.GetCurrentContext": "OpenTK.Platform.IOpenGLComponent.yml", + "OpenTK.Platform.IOpenGLComponent.GetProcedureAddress(OpenTK.Platform.OpenGLContextHandle,System.String)": "OpenTK.Platform.IOpenGLComponent.yml", + "OpenTK.Platform.IOpenGLComponent.GetSharedContext(OpenTK.Platform.OpenGLContextHandle)": "OpenTK.Platform.IOpenGLComponent.yml", + "OpenTK.Platform.IOpenGLComponent.GetSwapInterval": "OpenTK.Platform.IOpenGLComponent.yml", + "OpenTK.Platform.IOpenGLComponent.SetCurrentContext(OpenTK.Platform.OpenGLContextHandle)": "OpenTK.Platform.IOpenGLComponent.yml", + "OpenTK.Platform.IOpenGLComponent.SetSwapInterval(System.Int32)": "OpenTK.Platform.IOpenGLComponent.yml", + "OpenTK.Platform.IOpenGLComponent.SwapBuffers(OpenTK.Platform.OpenGLContextHandle)": "OpenTK.Platform.IOpenGLComponent.yml", + "OpenTK.Platform.IPalComponent": "OpenTK.Platform.IPalComponent.yml", + "OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions)": "OpenTK.Platform.IPalComponent.yml", + "OpenTK.Platform.IPalComponent.Logger": "OpenTK.Platform.IPalComponent.yml", + "OpenTK.Platform.IPalComponent.Name": "OpenTK.Platform.IPalComponent.yml", + "OpenTK.Platform.IPalComponent.Provides": "OpenTK.Platform.IPalComponent.yml", + "OpenTK.Platform.IShellComponent": "OpenTK.Platform.IShellComponent.yml", + "OpenTK.Platform.IShellComponent.AllowScreenSaver(System.Boolean)": "OpenTK.Platform.IShellComponent.yml", + "OpenTK.Platform.IShellComponent.GetBatteryInfo(OpenTK.Platform.BatteryInfo@)": "OpenTK.Platform.IShellComponent.yml", + "OpenTK.Platform.IShellComponent.GetPreferredTheme": "OpenTK.Platform.IShellComponent.yml", + "OpenTK.Platform.IShellComponent.GetSystemMemoryInformation": "OpenTK.Platform.IShellComponent.yml", + "OpenTK.Platform.ISurfaceComponent": "OpenTK.Platform.ISurfaceComponent.yml", + "OpenTK.Platform.ISurfaceComponent.Create": "OpenTK.Platform.ISurfaceComponent.yml", + "OpenTK.Platform.ISurfaceComponent.Destroy(OpenTK.Platform.SurfaceHandle)": "OpenTK.Platform.ISurfaceComponent.yml", + "OpenTK.Platform.ISurfaceComponent.GetClientSize(OpenTK.Platform.SurfaceHandle,System.Int32@,System.Int32@)": "OpenTK.Platform.ISurfaceComponent.yml", + "OpenTK.Platform.ISurfaceComponent.GetDisplay(OpenTK.Platform.SurfaceHandle)": "OpenTK.Platform.ISurfaceComponent.yml", + "OpenTK.Platform.ISurfaceComponent.GetType(OpenTK.Platform.SurfaceHandle)": "OpenTK.Platform.ISurfaceComponent.yml", + "OpenTK.Platform.ISurfaceComponent.SetDisplay(OpenTK.Platform.SurfaceHandle,OpenTK.Platform.DisplayHandle)": "OpenTK.Platform.ISurfaceComponent.yml", + "OpenTK.Platform.IVulkanComponent": "OpenTK.Platform.IVulkanComponent.yml", + "OpenTK.Platform.IVulkanComponent.CreateWindowSurface(OpenTK.Graphics.Vulkan.VkInstance,OpenTK.Platform.WindowHandle,OpenTK.Graphics.Vulkan.VkAllocationCallbacks*,OpenTK.Graphics.Vulkan.VkSurfaceKHR@)": "OpenTK.Platform.IVulkanComponent.yml", + "OpenTK.Platform.IVulkanComponent.GetPhysicalDevicePresentationSupport(OpenTK.Graphics.Vulkan.VkInstance,OpenTK.Graphics.Vulkan.VkPhysicalDevice,System.UInt32)": "OpenTK.Platform.IVulkanComponent.yml", + "OpenTK.Platform.IVulkanComponent.GetRequiredInstanceExtensions": "OpenTK.Platform.IVulkanComponent.yml", + "OpenTK.Platform.IWindowComponent": "OpenTK.Platform.IWindowComponent.yml", + "OpenTK.Platform.IWindowComponent.CanCaptureCursor": "OpenTK.Platform.IWindowComponent.yml", + "OpenTK.Platform.IWindowComponent.CanGetDisplay": "OpenTK.Platform.IWindowComponent.yml", + "OpenTK.Platform.IWindowComponent.CanSetCursor": "OpenTK.Platform.IWindowComponent.yml", + "OpenTK.Platform.IWindowComponent.CanSetIcon": "OpenTK.Platform.IWindowComponent.yml", + "OpenTK.Platform.IWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@)": "OpenTK.Platform.IWindowComponent.yml", + "OpenTK.Platform.IWindowComponent.Create(OpenTK.Platform.GraphicsApiHints)": "OpenTK.Platform.IWindowComponent.yml", + "OpenTK.Platform.IWindowComponent.Destroy(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.IWindowComponent.yml", + "OpenTK.Platform.IWindowComponent.FocusWindow(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.IWindowComponent.yml", + "OpenTK.Platform.IWindowComponent.GetBorderStyle(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.IWindowComponent.yml", + "OpenTK.Platform.IWindowComponent.GetBounds(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@)": "OpenTK.Platform.IWindowComponent.yml", + "OpenTK.Platform.IWindowComponent.GetClientBounds(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@)": "OpenTK.Platform.IWindowComponent.yml", + "OpenTK.Platform.IWindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@)": "OpenTK.Platform.IWindowComponent.yml", + "OpenTK.Platform.IWindowComponent.GetClientSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@)": "OpenTK.Platform.IWindowComponent.yml", + "OpenTK.Platform.IWindowComponent.GetCursorCaptureMode(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.IWindowComponent.yml", + "OpenTK.Platform.IWindowComponent.GetDisplay(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.IWindowComponent.yml", + "OpenTK.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@)": "OpenTK.Platform.IWindowComponent.yml", + "OpenTK.Platform.IWindowComponent.GetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle@)": "OpenTK.Platform.IWindowComponent.yml", + "OpenTK.Platform.IWindowComponent.GetIcon(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.IWindowComponent.yml", + "OpenTK.Platform.IWindowComponent.GetMaxClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@)": "OpenTK.Platform.IWindowComponent.yml", + "OpenTK.Platform.IWindowComponent.GetMinClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@)": "OpenTK.Platform.IWindowComponent.yml", + "OpenTK.Platform.IWindowComponent.GetMode(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.IWindowComponent.yml", + "OpenTK.Platform.IWindowComponent.GetPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@)": "OpenTK.Platform.IWindowComponent.yml", + "OpenTK.Platform.IWindowComponent.GetScaleFactor(OpenTK.Platform.WindowHandle,System.Single@,System.Single@)": "OpenTK.Platform.IWindowComponent.yml", + "OpenTK.Platform.IWindowComponent.GetSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@)": "OpenTK.Platform.IWindowComponent.yml", + "OpenTK.Platform.IWindowComponent.GetTitle(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.IWindowComponent.yml", + "OpenTK.Platform.IWindowComponent.IsAlwaysOnTop(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.IWindowComponent.yml", + "OpenTK.Platform.IWindowComponent.IsFocused(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.IWindowComponent.yml", + "OpenTK.Platform.IWindowComponent.IsWindowDestroyed(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.IWindowComponent.yml", + "OpenTK.Platform.IWindowComponent.ProcessEvents(System.Boolean)": "OpenTK.Platform.IWindowComponent.yml", + "OpenTK.Platform.IWindowComponent.RequestAttention(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.IWindowComponent.yml", + "OpenTK.Platform.IWindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@)": "OpenTK.Platform.IWindowComponent.yml", + "OpenTK.Platform.IWindowComponent.SetAlwaysOnTop(OpenTK.Platform.WindowHandle,System.Boolean)": "OpenTK.Platform.IWindowComponent.yml", + "OpenTK.Platform.IWindowComponent.SetBorderStyle(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowBorderStyle)": "OpenTK.Platform.IWindowComponent.yml", + "OpenTK.Platform.IWindowComponent.SetBounds(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32)": "OpenTK.Platform.IWindowComponent.yml", + "OpenTK.Platform.IWindowComponent.SetClientBounds(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32)": "OpenTK.Platform.IWindowComponent.yml", + "OpenTK.Platform.IWindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32)": "OpenTK.Platform.IWindowComponent.yml", + "OpenTK.Platform.IWindowComponent.SetClientSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32)": "OpenTK.Platform.IWindowComponent.yml", + "OpenTK.Platform.IWindowComponent.SetCursor(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorHandle)": "OpenTK.Platform.IWindowComponent.yml", + "OpenTK.Platform.IWindowComponent.SetCursorCaptureMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorCaptureMode)": "OpenTK.Platform.IWindowComponent.yml", + "OpenTK.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle)": "OpenTK.Platform.IWindowComponent.yml", + "OpenTK.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle,OpenTK.Platform.VideoMode)": "OpenTK.Platform.IWindowComponent.yml", + "OpenTK.Platform.IWindowComponent.SetHitTestCallback(OpenTK.Platform.WindowHandle,OpenTK.Platform.HitTest)": "OpenTK.Platform.IWindowComponent.yml", + "OpenTK.Platform.IWindowComponent.SetIcon(OpenTK.Platform.WindowHandle,OpenTK.Platform.IconHandle)": "OpenTK.Platform.IWindowComponent.yml", + "OpenTK.Platform.IWindowComponent.SetMaxClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32})": "OpenTK.Platform.IWindowComponent.yml", + "OpenTK.Platform.IWindowComponent.SetMinClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32})": "OpenTK.Platform.IWindowComponent.yml", + "OpenTK.Platform.IWindowComponent.SetMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowMode)": "OpenTK.Platform.IWindowComponent.yml", + "OpenTK.Platform.IWindowComponent.SetPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32)": "OpenTK.Platform.IWindowComponent.yml", + "OpenTK.Platform.IWindowComponent.SetSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32)": "OpenTK.Platform.IWindowComponent.yml", + "OpenTK.Platform.IWindowComponent.SetTitle(OpenTK.Platform.WindowHandle,System.String)": "OpenTK.Platform.IWindowComponent.yml", + "OpenTK.Platform.IWindowComponent.SupportedEvents": "OpenTK.Platform.IWindowComponent.yml", + "OpenTK.Platform.IWindowComponent.SupportedModes": "OpenTK.Platform.IWindowComponent.yml", + "OpenTK.Platform.IWindowComponent.SupportedStyles": "OpenTK.Platform.IWindowComponent.yml", + "OpenTK.Platform.IconHandle": "OpenTK.Platform.IconHandle.yml", + "OpenTK.Platform.InputLanguageChangedEventArgs": "OpenTK.Platform.InputLanguageChangedEventArgs.yml", + "OpenTK.Platform.InputLanguageChangedEventArgs.#ctor(System.String,System.String,System.String,System.String)": "OpenTK.Platform.InputLanguageChangedEventArgs.yml", + "OpenTK.Platform.InputLanguageChangedEventArgs.InputLanguage": "OpenTK.Platform.InputLanguageChangedEventArgs.yml", + "OpenTK.Platform.InputLanguageChangedEventArgs.InputLanguageDisplayName": "OpenTK.Platform.InputLanguageChangedEventArgs.yml", + "OpenTK.Platform.InputLanguageChangedEventArgs.KeyboardLayout": "OpenTK.Platform.InputLanguageChangedEventArgs.yml", + "OpenTK.Platform.InputLanguageChangedEventArgs.KeyboardLayoutDisplayName": "OpenTK.Platform.InputLanguageChangedEventArgs.yml", + "OpenTK.Platform.JoystickAxis": "OpenTK.Platform.JoystickAxis.yml", + "OpenTK.Platform.JoystickAxis.LeftTrigger": "OpenTK.Platform.JoystickAxis.yml", + "OpenTK.Platform.JoystickAxis.LeftXAxis": "OpenTK.Platform.JoystickAxis.yml", + "OpenTK.Platform.JoystickAxis.LeftYAxis": "OpenTK.Platform.JoystickAxis.yml", + "OpenTK.Platform.JoystickAxis.RightTrigger": "OpenTK.Platform.JoystickAxis.yml", + "OpenTK.Platform.JoystickAxis.RightXAxis": "OpenTK.Platform.JoystickAxis.yml", + "OpenTK.Platform.JoystickAxis.RightYAxis": "OpenTK.Platform.JoystickAxis.yml", + "OpenTK.Platform.JoystickButton": "OpenTK.Platform.JoystickButton.yml", + "OpenTK.Platform.JoystickButton.A": "OpenTK.Platform.JoystickButton.yml", + "OpenTK.Platform.JoystickButton.B": "OpenTK.Platform.JoystickButton.yml", + "OpenTK.Platform.JoystickButton.Back": "OpenTK.Platform.JoystickButton.yml", + "OpenTK.Platform.JoystickButton.DPadDown": "OpenTK.Platform.JoystickButton.yml", + "OpenTK.Platform.JoystickButton.DPadLeft": "OpenTK.Platform.JoystickButton.yml", + "OpenTK.Platform.JoystickButton.DPadRight": "OpenTK.Platform.JoystickButton.yml", + "OpenTK.Platform.JoystickButton.DPadUp": "OpenTK.Platform.JoystickButton.yml", + "OpenTK.Platform.JoystickButton.LeftShoulder": "OpenTK.Platform.JoystickButton.yml", + "OpenTK.Platform.JoystickButton.LeftThumb": "OpenTK.Platform.JoystickButton.yml", + "OpenTK.Platform.JoystickButton.RightShoulder": "OpenTK.Platform.JoystickButton.yml", + "OpenTK.Platform.JoystickButton.RightThumb": "OpenTK.Platform.JoystickButton.yml", + "OpenTK.Platform.JoystickButton.Start": "OpenTK.Platform.JoystickButton.yml", + "OpenTK.Platform.JoystickButton.X": "OpenTK.Platform.JoystickButton.yml", + "OpenTK.Platform.JoystickButton.Y": "OpenTK.Platform.JoystickButton.yml", + "OpenTK.Platform.JoystickHandle": "OpenTK.Platform.JoystickHandle.yml", + "OpenTK.Platform.Key": "OpenTK.Platform.Key.yml", + "OpenTK.Platform.Key.A": "OpenTK.Platform.Key.yml", + "OpenTK.Platform.Key.Application": "OpenTK.Platform.Key.yml", + "OpenTK.Platform.Key.B": "OpenTK.Platform.Key.yml", + "OpenTK.Platform.Key.Backspace": "OpenTK.Platform.Key.yml", + "OpenTK.Platform.Key.C": "OpenTK.Platform.Key.yml", + "OpenTK.Platform.Key.CapsLock": "OpenTK.Platform.Key.yml", + "OpenTK.Platform.Key.Comma": "OpenTK.Platform.Key.yml", + "OpenTK.Platform.Key.D": "OpenTK.Platform.Key.yml", + "OpenTK.Platform.Key.D0": "OpenTK.Platform.Key.yml", + "OpenTK.Platform.Key.D1": "OpenTK.Platform.Key.yml", + "OpenTK.Platform.Key.D2": "OpenTK.Platform.Key.yml", + "OpenTK.Platform.Key.D3": "OpenTK.Platform.Key.yml", + "OpenTK.Platform.Key.D4": "OpenTK.Platform.Key.yml", + "OpenTK.Platform.Key.D5": "OpenTK.Platform.Key.yml", + "OpenTK.Platform.Key.D6": "OpenTK.Platform.Key.yml", + "OpenTK.Platform.Key.D7": "OpenTK.Platform.Key.yml", + "OpenTK.Platform.Key.D8": "OpenTK.Platform.Key.yml", + "OpenTK.Platform.Key.D9": "OpenTK.Platform.Key.yml", + "OpenTK.Platform.Key.Delete": "OpenTK.Platform.Key.yml", + "OpenTK.Platform.Key.DownArrow": "OpenTK.Platform.Key.yml", + "OpenTK.Platform.Key.E": "OpenTK.Platform.Key.yml", + "OpenTK.Platform.Key.End": "OpenTK.Platform.Key.yml", + "OpenTK.Platform.Key.Escape": "OpenTK.Platform.Key.yml", + "OpenTK.Platform.Key.F": "OpenTK.Platform.Key.yml", + "OpenTK.Platform.Key.F1": "OpenTK.Platform.Key.yml", + "OpenTK.Platform.Key.F10": "OpenTK.Platform.Key.yml", + "OpenTK.Platform.Key.F11": "OpenTK.Platform.Key.yml", + "OpenTK.Platform.Key.F12": "OpenTK.Platform.Key.yml", + "OpenTK.Platform.Key.F13": "OpenTK.Platform.Key.yml", + "OpenTK.Platform.Key.F14": "OpenTK.Platform.Key.yml", + "OpenTK.Platform.Key.F15": "OpenTK.Platform.Key.yml", + "OpenTK.Platform.Key.F16": "OpenTK.Platform.Key.yml", + "OpenTK.Platform.Key.F17": "OpenTK.Platform.Key.yml", + "OpenTK.Platform.Key.F18": "OpenTK.Platform.Key.yml", + "OpenTK.Platform.Key.F19": "OpenTK.Platform.Key.yml", + "OpenTK.Platform.Key.F2": "OpenTK.Platform.Key.yml", + "OpenTK.Platform.Key.F20": "OpenTK.Platform.Key.yml", + "OpenTK.Platform.Key.F21": "OpenTK.Platform.Key.yml", + "OpenTK.Platform.Key.F22": "OpenTK.Platform.Key.yml", + "OpenTK.Platform.Key.F23": "OpenTK.Platform.Key.yml", + "OpenTK.Platform.Key.F24": "OpenTK.Platform.Key.yml", + "OpenTK.Platform.Key.F3": "OpenTK.Platform.Key.yml", + "OpenTK.Platform.Key.F4": "OpenTK.Platform.Key.yml", + "OpenTK.Platform.Key.F5": "OpenTK.Platform.Key.yml", + "OpenTK.Platform.Key.F6": "OpenTK.Platform.Key.yml", + "OpenTK.Platform.Key.F7": "OpenTK.Platform.Key.yml", + "OpenTK.Platform.Key.F8": "OpenTK.Platform.Key.yml", + "OpenTK.Platform.Key.F9": "OpenTK.Platform.Key.yml", + "OpenTK.Platform.Key.G": "OpenTK.Platform.Key.yml", + "OpenTK.Platform.Key.H": "OpenTK.Platform.Key.yml", + "OpenTK.Platform.Key.Help": "OpenTK.Platform.Key.yml", + "OpenTK.Platform.Key.Home": "OpenTK.Platform.Key.yml", + "OpenTK.Platform.Key.I": "OpenTK.Platform.Key.yml", + "OpenTK.Platform.Key.Insert": "OpenTK.Platform.Key.yml", + "OpenTK.Platform.Key.J": "OpenTK.Platform.Key.yml", + "OpenTK.Platform.Key.K": "OpenTK.Platform.Key.yml", + "OpenTK.Platform.Key.Keypad0": "OpenTK.Platform.Key.yml", + "OpenTK.Platform.Key.Keypad1": "OpenTK.Platform.Key.yml", + "OpenTK.Platform.Key.Keypad2": "OpenTK.Platform.Key.yml", + "OpenTK.Platform.Key.Keypad3": "OpenTK.Platform.Key.yml", + "OpenTK.Platform.Key.Keypad4": "OpenTK.Platform.Key.yml", + "OpenTK.Platform.Key.Keypad5": "OpenTK.Platform.Key.yml", + "OpenTK.Platform.Key.Keypad6": "OpenTK.Platform.Key.yml", + "OpenTK.Platform.Key.Keypad7": "OpenTK.Platform.Key.yml", + "OpenTK.Platform.Key.Keypad8": "OpenTK.Platform.Key.yml", + "OpenTK.Platform.Key.Keypad9": "OpenTK.Platform.Key.yml", + "OpenTK.Platform.Key.KeypadAdd": "OpenTK.Platform.Key.yml", + "OpenTK.Platform.Key.KeypadDecimal": "OpenTK.Platform.Key.yml", + "OpenTK.Platform.Key.KeypadDivide": "OpenTK.Platform.Key.yml", + "OpenTK.Platform.Key.KeypadEnter": "OpenTK.Platform.Key.yml", + "OpenTK.Platform.Key.KeypadEqual": "OpenTK.Platform.Key.yml", + "OpenTK.Platform.Key.KeypadMultiply": "OpenTK.Platform.Key.yml", + "OpenTK.Platform.Key.KeypadSeparator": "OpenTK.Platform.Key.yml", + "OpenTK.Platform.Key.KeypadSubtract": "OpenTK.Platform.Key.yml", + "OpenTK.Platform.Key.L": "OpenTK.Platform.Key.yml", + "OpenTK.Platform.Key.LeftAlt": "OpenTK.Platform.Key.yml", + "OpenTK.Platform.Key.LeftArrow": "OpenTK.Platform.Key.yml", + "OpenTK.Platform.Key.LeftControl": "OpenTK.Platform.Key.yml", + "OpenTK.Platform.Key.LeftGUI": "OpenTK.Platform.Key.yml", + "OpenTK.Platform.Key.LeftShift": "OpenTK.Platform.Key.yml", + "OpenTK.Platform.Key.M": "OpenTK.Platform.Key.yml", + "OpenTK.Platform.Key.Minus": "OpenTK.Platform.Key.yml", + "OpenTK.Platform.Key.Mute": "OpenTK.Platform.Key.yml", + "OpenTK.Platform.Key.N": "OpenTK.Platform.Key.yml", + "OpenTK.Platform.Key.NextTrack": "OpenTK.Platform.Key.yml", + "OpenTK.Platform.Key.NumLock": "OpenTK.Platform.Key.yml", + "OpenTK.Platform.Key.O": "OpenTK.Platform.Key.yml", + "OpenTK.Platform.Key.OEM1": "OpenTK.Platform.Key.yml", + "OpenTK.Platform.Key.OEM102": "OpenTK.Platform.Key.yml", + "OpenTK.Platform.Key.OEM2": "OpenTK.Platform.Key.yml", + "OpenTK.Platform.Key.OEM3": "OpenTK.Platform.Key.yml", + "OpenTK.Platform.Key.OEM4": "OpenTK.Platform.Key.yml", + "OpenTK.Platform.Key.OEM5": "OpenTK.Platform.Key.yml", + "OpenTK.Platform.Key.OEM6": "OpenTK.Platform.Key.yml", + "OpenTK.Platform.Key.OEM7": "OpenTK.Platform.Key.yml", + "OpenTK.Platform.Key.OEM8": "OpenTK.Platform.Key.yml", + "OpenTK.Platform.Key.P": "OpenTK.Platform.Key.yml", + "OpenTK.Platform.Key.PageDown": "OpenTK.Platform.Key.yml", + "OpenTK.Platform.Key.PageUp": "OpenTK.Platform.Key.yml", + "OpenTK.Platform.Key.PauseBreak": "OpenTK.Platform.Key.yml", + "OpenTK.Platform.Key.Period": "OpenTK.Platform.Key.yml", + "OpenTK.Platform.Key.PlayPause": "OpenTK.Platform.Key.yml", + "OpenTK.Platform.Key.Plus": "OpenTK.Platform.Key.yml", + "OpenTK.Platform.Key.PreviousTrack": "OpenTK.Platform.Key.yml", + "OpenTK.Platform.Key.PrintScreen": "OpenTK.Platform.Key.yml", + "OpenTK.Platform.Key.Q": "OpenTK.Platform.Key.yml", + "OpenTK.Platform.Key.R": "OpenTK.Platform.Key.yml", + "OpenTK.Platform.Key.Return": "OpenTK.Platform.Key.yml", + "OpenTK.Platform.Key.RightAlt": "OpenTK.Platform.Key.yml", + "OpenTK.Platform.Key.RightArrow": "OpenTK.Platform.Key.yml", + "OpenTK.Platform.Key.RightControl": "OpenTK.Platform.Key.yml", + "OpenTK.Platform.Key.RightGUI": "OpenTK.Platform.Key.yml", + "OpenTK.Platform.Key.RightShift": "OpenTK.Platform.Key.yml", + "OpenTK.Platform.Key.S": "OpenTK.Platform.Key.yml", + "OpenTK.Platform.Key.ScrollLock": "OpenTK.Platform.Key.yml", + "OpenTK.Platform.Key.Sleep": "OpenTK.Platform.Key.yml", + "OpenTK.Platform.Key.Space": "OpenTK.Platform.Key.yml", + "OpenTK.Platform.Key.Stop": "OpenTK.Platform.Key.yml", + "OpenTK.Platform.Key.T": "OpenTK.Platform.Key.yml", + "OpenTK.Platform.Key.Tab": "OpenTK.Platform.Key.yml", + "OpenTK.Platform.Key.U": "OpenTK.Platform.Key.yml", + "OpenTK.Platform.Key.Unknown": "OpenTK.Platform.Key.yml", + "OpenTK.Platform.Key.UpArrow": "OpenTK.Platform.Key.yml", + "OpenTK.Platform.Key.V": "OpenTK.Platform.Key.yml", + "OpenTK.Platform.Key.VolumeDown": "OpenTK.Platform.Key.yml", + "OpenTK.Platform.Key.VolumeUp": "OpenTK.Platform.Key.yml", + "OpenTK.Platform.Key.W": "OpenTK.Platform.Key.yml", + "OpenTK.Platform.Key.X": "OpenTK.Platform.Key.yml", + "OpenTK.Platform.Key.Y": "OpenTK.Platform.Key.yml", + "OpenTK.Platform.Key.Z": "OpenTK.Platform.Key.yml", + "OpenTK.Platform.KeyDownEventArgs": "OpenTK.Platform.KeyDownEventArgs.yml", + "OpenTK.Platform.KeyDownEventArgs.#ctor(OpenTK.Platform.WindowHandle,OpenTK.Platform.Key,OpenTK.Platform.Scancode,System.Boolean,OpenTK.Platform.KeyModifier)": "OpenTK.Platform.KeyDownEventArgs.yml", + "OpenTK.Platform.KeyDownEventArgs.IsRepeat": "OpenTK.Platform.KeyDownEventArgs.yml", + "OpenTK.Platform.KeyDownEventArgs.Key": "OpenTK.Platform.KeyDownEventArgs.yml", + "OpenTK.Platform.KeyDownEventArgs.Modifiers": "OpenTK.Platform.KeyDownEventArgs.yml", + "OpenTK.Platform.KeyDownEventArgs.Scancode": "OpenTK.Platform.KeyDownEventArgs.yml", + "OpenTK.Platform.KeyModifier": "OpenTK.Platform.KeyModifier.yml", + "OpenTK.Platform.KeyModifier.Alt": "OpenTK.Platform.KeyModifier.yml", + "OpenTK.Platform.KeyModifier.CapsLock": "OpenTK.Platform.KeyModifier.yml", + "OpenTK.Platform.KeyModifier.Control": "OpenTK.Platform.KeyModifier.yml", + "OpenTK.Platform.KeyModifier.GUI": "OpenTK.Platform.KeyModifier.yml", + "OpenTK.Platform.KeyModifier.LeftAlt": "OpenTK.Platform.KeyModifier.yml", + "OpenTK.Platform.KeyModifier.LeftControl": "OpenTK.Platform.KeyModifier.yml", + "OpenTK.Platform.KeyModifier.LeftGUI": "OpenTK.Platform.KeyModifier.yml", + "OpenTK.Platform.KeyModifier.LeftShift": "OpenTK.Platform.KeyModifier.yml", + "OpenTK.Platform.KeyModifier.None": "OpenTK.Platform.KeyModifier.yml", + "OpenTK.Platform.KeyModifier.NumLock": "OpenTK.Platform.KeyModifier.yml", + "OpenTK.Platform.KeyModifier.RightAlt": "OpenTK.Platform.KeyModifier.yml", + "OpenTK.Platform.KeyModifier.RightControl": "OpenTK.Platform.KeyModifier.yml", + "OpenTK.Platform.KeyModifier.RightGUI": "OpenTK.Platform.KeyModifier.yml", + "OpenTK.Platform.KeyModifier.RightShift": "OpenTK.Platform.KeyModifier.yml", + "OpenTK.Platform.KeyModifier.ScrollLock": "OpenTK.Platform.KeyModifier.yml", + "OpenTK.Platform.KeyModifier.Shift": "OpenTK.Platform.KeyModifier.yml", + "OpenTK.Platform.KeyUpEventArgs": "OpenTK.Platform.KeyUpEventArgs.yml", + "OpenTK.Platform.KeyUpEventArgs.#ctor(OpenTK.Platform.WindowHandle,OpenTK.Platform.Key,OpenTK.Platform.Scancode,OpenTK.Platform.KeyModifier)": "OpenTK.Platform.KeyUpEventArgs.yml", + "OpenTK.Platform.KeyUpEventArgs.Key": "OpenTK.Platform.KeyUpEventArgs.yml", + "OpenTK.Platform.KeyUpEventArgs.Modifiers": "OpenTK.Platform.KeyUpEventArgs.yml", + "OpenTK.Platform.KeyUpEventArgs.Scancode": "OpenTK.Platform.KeyUpEventArgs.yml", + "OpenTK.Platform.MessageBoxButton": "OpenTK.Platform.MessageBoxButton.yml", + "OpenTK.Platform.MessageBoxButton.Cancel": "OpenTK.Platform.MessageBoxButton.yml", + "OpenTK.Platform.MessageBoxButton.No": "OpenTK.Platform.MessageBoxButton.yml", + "OpenTK.Platform.MessageBoxButton.None": "OpenTK.Platform.MessageBoxButton.yml", + "OpenTK.Platform.MessageBoxButton.Ok": "OpenTK.Platform.MessageBoxButton.yml", + "OpenTK.Platform.MessageBoxButton.Retry": "OpenTK.Platform.MessageBoxButton.yml", + "OpenTK.Platform.MessageBoxButton.Yes": "OpenTK.Platform.MessageBoxButton.yml", + "OpenTK.Platform.MessageBoxType": "OpenTK.Platform.MessageBoxType.yml", + "OpenTK.Platform.MessageBoxType.Confirmation": "OpenTK.Platform.MessageBoxType.yml", + "OpenTK.Platform.MessageBoxType.Error": "OpenTK.Platform.MessageBoxType.yml", + "OpenTK.Platform.MessageBoxType.Information": "OpenTK.Platform.MessageBoxType.yml", + "OpenTK.Platform.MessageBoxType.Retry": "OpenTK.Platform.MessageBoxType.yml", + "OpenTK.Platform.MessageBoxType.Warning": "OpenTK.Platform.MessageBoxType.yml", + "OpenTK.Platform.MouseButton": "OpenTK.Platform.MouseButton.yml", + "OpenTK.Platform.MouseButton.Button1": "OpenTK.Platform.MouseButton.yml", + "OpenTK.Platform.MouseButton.Button2": "OpenTK.Platform.MouseButton.yml", + "OpenTK.Platform.MouseButton.Button3": "OpenTK.Platform.MouseButton.yml", + "OpenTK.Platform.MouseButton.Button4": "OpenTK.Platform.MouseButton.yml", + "OpenTK.Platform.MouseButton.Button5": "OpenTK.Platform.MouseButton.yml", + "OpenTK.Platform.MouseButton.Button6": "OpenTK.Platform.MouseButton.yml", + "OpenTK.Platform.MouseButton.Button7": "OpenTK.Platform.MouseButton.yml", + "OpenTK.Platform.MouseButton.Button8": "OpenTK.Platform.MouseButton.yml", + "OpenTK.Platform.MouseButtonDownEventArgs": "OpenTK.Platform.MouseButtonDownEventArgs.yml", + "OpenTK.Platform.MouseButtonDownEventArgs.#ctor(OpenTK.Platform.WindowHandle,OpenTK.Platform.MouseButton,OpenTK.Platform.KeyModifier)": "OpenTK.Platform.MouseButtonDownEventArgs.yml", + "OpenTK.Platform.MouseButtonDownEventArgs.Button": "OpenTK.Platform.MouseButtonDownEventArgs.yml", + "OpenTK.Platform.MouseButtonDownEventArgs.Modifiers": "OpenTK.Platform.MouseButtonDownEventArgs.yml", + "OpenTK.Platform.MouseButtonFlags": "OpenTK.Platform.MouseButtonFlags.yml", + "OpenTK.Platform.MouseButtonFlags.Button1": "OpenTK.Platform.MouseButtonFlags.yml", + "OpenTK.Platform.MouseButtonFlags.Button2": "OpenTK.Platform.MouseButtonFlags.yml", + "OpenTK.Platform.MouseButtonFlags.Button3": "OpenTK.Platform.MouseButtonFlags.yml", + "OpenTK.Platform.MouseButtonFlags.Button4": "OpenTK.Platform.MouseButtonFlags.yml", + "OpenTK.Platform.MouseButtonFlags.Button5": "OpenTK.Platform.MouseButtonFlags.yml", + "OpenTK.Platform.MouseButtonFlags.Button6": "OpenTK.Platform.MouseButtonFlags.yml", + "OpenTK.Platform.MouseButtonFlags.Button7": "OpenTK.Platform.MouseButtonFlags.yml", + "OpenTK.Platform.MouseButtonFlags.Button8": "OpenTK.Platform.MouseButtonFlags.yml", + "OpenTK.Platform.MouseButtonUpEventArgs": "OpenTK.Platform.MouseButtonUpEventArgs.yml", + "OpenTK.Platform.MouseButtonUpEventArgs.#ctor(OpenTK.Platform.WindowHandle,OpenTK.Platform.MouseButton,OpenTK.Platform.KeyModifier)": "OpenTK.Platform.MouseButtonUpEventArgs.yml", + "OpenTK.Platform.MouseButtonUpEventArgs.Button": "OpenTK.Platform.MouseButtonUpEventArgs.yml", + "OpenTK.Platform.MouseButtonUpEventArgs.Modifiers": "OpenTK.Platform.MouseButtonUpEventArgs.yml", + "OpenTK.Platform.MouseEnterEventArgs": "OpenTK.Platform.MouseEnterEventArgs.yml", + "OpenTK.Platform.MouseEnterEventArgs.#ctor(OpenTK.Platform.WindowHandle,System.Boolean)": "OpenTK.Platform.MouseEnterEventArgs.yml", + "OpenTK.Platform.MouseEnterEventArgs.Entered": "OpenTK.Platform.MouseEnterEventArgs.yml", + "OpenTK.Platform.MouseHandle": "OpenTK.Platform.MouseHandle.yml", + "OpenTK.Platform.MouseMoveEventArgs": "OpenTK.Platform.MouseMoveEventArgs.yml", + "OpenTK.Platform.MouseMoveEventArgs.#ctor(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2)": "OpenTK.Platform.MouseMoveEventArgs.yml", + "OpenTK.Platform.MouseMoveEventArgs.Position": "OpenTK.Platform.MouseMoveEventArgs.yml", + "OpenTK.Platform.MouseState": "OpenTK.Platform.MouseState.yml", + "OpenTK.Platform.MouseState.Position": "OpenTK.Platform.MouseState.yml", + "OpenTK.Platform.MouseState.PressedButtons": "OpenTK.Platform.MouseState.yml", + "OpenTK.Platform.MouseState.Scroll": "OpenTK.Platform.MouseState.yml", "OpenTK.Platform.Native": "OpenTK.Platform.Native.yml", "OpenTK.Platform.Native.ANGLE": "OpenTK.Platform.Native.ANGLE.yml", "OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent": "OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.yml", @@ -8462,23 +8302,23 @@ "OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.CanCreateFromWindow": "OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.yml", "OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.CanShareContexts": "OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.yml", "OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.CreateFromSurface": "OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.yml", - "OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.CreateFromWindow(OpenTK.Core.Platform.WindowHandle)": "OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.yml", - "OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.DestroyContext(OpenTK.Core.Platform.OpenGLContextHandle)": "OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.yml", - "OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.GetBindingsContext(OpenTK.Core.Platform.OpenGLContextHandle)": "OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.yml", + "OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.CreateFromWindow(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.yml", + "OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.DestroyContext(OpenTK.Platform.OpenGLContextHandle)": "OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.yml", + "OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.GetBindingsContext(OpenTK.Platform.OpenGLContextHandle)": "OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.yml", "OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.GetCurrentContext": "OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.yml", - "OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.GetEglContext(OpenTK.Core.Platform.OpenGLContextHandle)": "OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.yml", + "OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.GetEglContext(OpenTK.Platform.OpenGLContextHandle)": "OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.yml", "OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.GetEglDisplay": "OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.yml", - "OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.GetEglSurface(OpenTK.Core.Platform.OpenGLContextHandle)": "OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.yml", - "OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.GetProcedureAddress(OpenTK.Core.Platform.OpenGLContextHandle,System.String)": "OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.yml", - "OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.GetSharedContext(OpenTK.Core.Platform.OpenGLContextHandle)": "OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.yml", + "OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.GetEglSurface(OpenTK.Platform.OpenGLContextHandle)": "OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.yml", + "OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.GetProcedureAddress(OpenTK.Platform.OpenGLContextHandle,System.String)": "OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.yml", + "OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.GetSharedContext(OpenTK.Platform.OpenGLContextHandle)": "OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.yml", "OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.GetSwapInterval": "OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.yml", - "OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions)": "OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.yml", + "OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.Initialize(OpenTK.Platform.ToolkitOptions)": "OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.yml", "OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.Logger": "OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.yml", "OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.Name": "OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.yml", "OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.Provides": "OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.yml", - "OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.SetCurrentContext(OpenTK.Core.Platform.OpenGLContextHandle)": "OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.yml", + "OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.SetCurrentContext(OpenTK.Platform.OpenGLContextHandle)": "OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.yml", "OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.SetSwapInterval(System.Int32)": "OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.yml", - "OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.SwapBuffers(OpenTK.Core.Platform.OpenGLContextHandle)": "OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.yml", + "OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.SwapBuffers(OpenTK.Platform.OpenGLContextHandle)": "OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.yml", "OpenTK.Platform.Native.Backend": "OpenTK.Platform.Native.Backend.yml", "OpenTK.Platform.Native.Backend.None": "OpenTK.Platform.Native.Backend.yml", "OpenTK.Platform.Native.Backend.SDL": "OpenTK.Platform.Native.Backend.yml", @@ -8497,6 +8337,7 @@ "OpenTK.Platform.Native.PlatformComponents.CreateOpenGLComponent": "OpenTK.Platform.Native.PlatformComponents.yml", "OpenTK.Platform.Native.PlatformComponents.CreateShellComponent": "OpenTK.Platform.Native.PlatformComponents.yml", "OpenTK.Platform.Native.PlatformComponents.CreateSurfaceComponent": "OpenTK.Platform.Native.PlatformComponents.yml", + "OpenTK.Platform.Native.PlatformComponents.CreateVulkanComponent": "OpenTK.Platform.Native.PlatformComponents.yml", "OpenTK.Platform.Native.PlatformComponents.CreateWindowComponent": "OpenTK.Platform.Native.PlatformComponents.yml", "OpenTK.Platform.Native.PlatformComponents.GetBackend": "OpenTK.Platform.Native.PlatformComponents.yml", "OpenTK.Platform.Native.PlatformComponents.PreferANGLE": "OpenTK.Platform.Native.PlatformComponents.yml", @@ -8508,7 +8349,7 @@ "OpenTK.Platform.Native.SDL.SDLClipboardComponent.GetClipboardFiles": "OpenTK.Platform.Native.SDL.SDLClipboardComponent.yml", "OpenTK.Platform.Native.SDL.SDLClipboardComponent.GetClipboardFormat": "OpenTK.Platform.Native.SDL.SDLClipboardComponent.yml", "OpenTK.Platform.Native.SDL.SDLClipboardComponent.GetClipboardText": "OpenTK.Platform.Native.SDL.SDLClipboardComponent.yml", - "OpenTK.Platform.Native.SDL.SDLClipboardComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions)": "OpenTK.Platform.Native.SDL.SDLClipboardComponent.yml", + "OpenTK.Platform.Native.SDL.SDLClipboardComponent.Initialize(OpenTK.Platform.ToolkitOptions)": "OpenTK.Platform.Native.SDL.SDLClipboardComponent.yml", "OpenTK.Platform.Native.SDL.SDLClipboardComponent.Logger": "OpenTK.Platform.Native.SDL.SDLClipboardComponent.yml", "OpenTK.Platform.Native.SDL.SDLClipboardComponent.Name": "OpenTK.Platform.Native.SDL.SDLClipboardComponent.yml", "OpenTK.Platform.Native.SDL.SDLClipboardComponent.Provides": "OpenTK.Platform.Native.SDL.SDLClipboardComponent.yml", @@ -8517,32 +8358,32 @@ "OpenTK.Platform.Native.SDL.SDLCursorComponent": "OpenTK.Platform.Native.SDL.SDLCursorComponent.yml", "OpenTK.Platform.Native.SDL.SDLCursorComponent.CanInspectSystemCursors": "OpenTK.Platform.Native.SDL.SDLCursorComponent.yml", "OpenTK.Platform.Native.SDL.SDLCursorComponent.CanLoadSystemCursors": "OpenTK.Platform.Native.SDL.SDLCursorComponent.yml", - "OpenTK.Platform.Native.SDL.SDLCursorComponent.Create(OpenTK.Core.Platform.SystemCursorType)": "OpenTK.Platform.Native.SDL.SDLCursorComponent.yml", + "OpenTK.Platform.Native.SDL.SDLCursorComponent.Create(OpenTK.Platform.SystemCursorType)": "OpenTK.Platform.Native.SDL.SDLCursorComponent.yml", "OpenTK.Platform.Native.SDL.SDLCursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.Int32,System.Int32)": "OpenTK.Platform.Native.SDL.SDLCursorComponent.yml", "OpenTK.Platform.Native.SDL.SDLCursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.ReadOnlySpan{System.Byte},System.Int32,System.Int32)": "OpenTK.Platform.Native.SDL.SDLCursorComponent.yml", - "OpenTK.Platform.Native.SDL.SDLCursorComponent.Destroy(OpenTK.Core.Platform.CursorHandle)": "OpenTK.Platform.Native.SDL.SDLCursorComponent.yml", - "OpenTK.Platform.Native.SDL.SDLCursorComponent.GetHotspot(OpenTK.Core.Platform.CursorHandle,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.SDL.SDLCursorComponent.yml", - "OpenTK.Platform.Native.SDL.SDLCursorComponent.GetSize(OpenTK.Core.Platform.CursorHandle,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.SDL.SDLCursorComponent.yml", - "OpenTK.Platform.Native.SDL.SDLCursorComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions)": "OpenTK.Platform.Native.SDL.SDLCursorComponent.yml", - "OpenTK.Platform.Native.SDL.SDLCursorComponent.IsSystemCursor(OpenTK.Core.Platform.CursorHandle)": "OpenTK.Platform.Native.SDL.SDLCursorComponent.yml", + "OpenTK.Platform.Native.SDL.SDLCursorComponent.Destroy(OpenTK.Platform.CursorHandle)": "OpenTK.Platform.Native.SDL.SDLCursorComponent.yml", + "OpenTK.Platform.Native.SDL.SDLCursorComponent.GetHotspot(OpenTK.Platform.CursorHandle,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.SDL.SDLCursorComponent.yml", + "OpenTK.Platform.Native.SDL.SDLCursorComponent.GetSize(OpenTK.Platform.CursorHandle,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.SDL.SDLCursorComponent.yml", + "OpenTK.Platform.Native.SDL.SDLCursorComponent.Initialize(OpenTK.Platform.ToolkitOptions)": "OpenTK.Platform.Native.SDL.SDLCursorComponent.yml", + "OpenTK.Platform.Native.SDL.SDLCursorComponent.IsSystemCursor(OpenTK.Platform.CursorHandle)": "OpenTK.Platform.Native.SDL.SDLCursorComponent.yml", "OpenTK.Platform.Native.SDL.SDLCursorComponent.Logger": "OpenTK.Platform.Native.SDL.SDLCursorComponent.yml", "OpenTK.Platform.Native.SDL.SDLCursorComponent.Name": "OpenTK.Platform.Native.SDL.SDLCursorComponent.yml", "OpenTK.Platform.Native.SDL.SDLCursorComponent.Provides": "OpenTK.Platform.Native.SDL.SDLCursorComponent.yml", "OpenTK.Platform.Native.SDL.SDLDisplayComponent": "OpenTK.Platform.Native.SDL.SDLDisplayComponent.yml", "OpenTK.Platform.Native.SDL.SDLDisplayComponent.CanGetVirtualPosition": "OpenTK.Platform.Native.SDL.SDLDisplayComponent.yml", "OpenTK.Platform.Native.SDL.SDLDisplayComponent.CanSetVideoMode": "OpenTK.Platform.Native.SDL.SDLDisplayComponent.yml", - "OpenTK.Platform.Native.SDL.SDLDisplayComponent.Close(OpenTK.Core.Platform.DisplayHandle)": "OpenTK.Platform.Native.SDL.SDLDisplayComponent.yml", + "OpenTK.Platform.Native.SDL.SDLDisplayComponent.Close(OpenTK.Platform.DisplayHandle)": "OpenTK.Platform.Native.SDL.SDLDisplayComponent.yml", "OpenTK.Platform.Native.SDL.SDLDisplayComponent.GetDisplayCount": "OpenTK.Platform.Native.SDL.SDLDisplayComponent.yml", - "OpenTK.Platform.Native.SDL.SDLDisplayComponent.GetDisplayScale(OpenTK.Core.Platform.DisplayHandle,System.Single@,System.Single@)": "OpenTK.Platform.Native.SDL.SDLDisplayComponent.yml", - "OpenTK.Platform.Native.SDL.SDLDisplayComponent.GetName(OpenTK.Core.Platform.DisplayHandle)": "OpenTK.Platform.Native.SDL.SDLDisplayComponent.yml", - "OpenTK.Platform.Native.SDL.SDLDisplayComponent.GetRefreshRate(OpenTK.Core.Platform.DisplayHandle,System.Single@)": "OpenTK.Platform.Native.SDL.SDLDisplayComponent.yml", - "OpenTK.Platform.Native.SDL.SDLDisplayComponent.GetResolution(OpenTK.Core.Platform.DisplayHandle,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.SDL.SDLDisplayComponent.yml", - "OpenTK.Platform.Native.SDL.SDLDisplayComponent.GetSupportedVideoModes(OpenTK.Core.Platform.DisplayHandle)": "OpenTK.Platform.Native.SDL.SDLDisplayComponent.yml", - "OpenTK.Platform.Native.SDL.SDLDisplayComponent.GetVideoMode(OpenTK.Core.Platform.DisplayHandle,OpenTK.Core.Platform.VideoMode@)": "OpenTK.Platform.Native.SDL.SDLDisplayComponent.yml", - "OpenTK.Platform.Native.SDL.SDLDisplayComponent.GetVirtualPosition(OpenTK.Core.Platform.DisplayHandle,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.SDL.SDLDisplayComponent.yml", - "OpenTK.Platform.Native.SDL.SDLDisplayComponent.GetWorkArea(OpenTK.Core.Platform.DisplayHandle,OpenTK.Mathematics.Box2i@)": "OpenTK.Platform.Native.SDL.SDLDisplayComponent.yml", - "OpenTK.Platform.Native.SDL.SDLDisplayComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions)": "OpenTK.Platform.Native.SDL.SDLDisplayComponent.yml", - "OpenTK.Platform.Native.SDL.SDLDisplayComponent.IsPrimary(OpenTK.Core.Platform.DisplayHandle)": "OpenTK.Platform.Native.SDL.SDLDisplayComponent.yml", + "OpenTK.Platform.Native.SDL.SDLDisplayComponent.GetDisplayScale(OpenTK.Platform.DisplayHandle,System.Single@,System.Single@)": "OpenTK.Platform.Native.SDL.SDLDisplayComponent.yml", + "OpenTK.Platform.Native.SDL.SDLDisplayComponent.GetName(OpenTK.Platform.DisplayHandle)": "OpenTK.Platform.Native.SDL.SDLDisplayComponent.yml", + "OpenTK.Platform.Native.SDL.SDLDisplayComponent.GetRefreshRate(OpenTK.Platform.DisplayHandle,System.Single@)": "OpenTK.Platform.Native.SDL.SDLDisplayComponent.yml", + "OpenTK.Platform.Native.SDL.SDLDisplayComponent.GetResolution(OpenTK.Platform.DisplayHandle,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.SDL.SDLDisplayComponent.yml", + "OpenTK.Platform.Native.SDL.SDLDisplayComponent.GetSupportedVideoModes(OpenTK.Platform.DisplayHandle)": "OpenTK.Platform.Native.SDL.SDLDisplayComponent.yml", + "OpenTK.Platform.Native.SDL.SDLDisplayComponent.GetVideoMode(OpenTK.Platform.DisplayHandle,OpenTK.Platform.VideoMode@)": "OpenTK.Platform.Native.SDL.SDLDisplayComponent.yml", + "OpenTK.Platform.Native.SDL.SDLDisplayComponent.GetVirtualPosition(OpenTK.Platform.DisplayHandle,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.SDL.SDLDisplayComponent.yml", + "OpenTK.Platform.Native.SDL.SDLDisplayComponent.GetWorkArea(OpenTK.Platform.DisplayHandle,OpenTK.Mathematics.Box2i@)": "OpenTK.Platform.Native.SDL.SDLDisplayComponent.yml", + "OpenTK.Platform.Native.SDL.SDLDisplayComponent.Initialize(OpenTK.Platform.ToolkitOptions)": "OpenTK.Platform.Native.SDL.SDLDisplayComponent.yml", + "OpenTK.Platform.Native.SDL.SDLDisplayComponent.IsPrimary(OpenTK.Platform.DisplayHandle)": "OpenTK.Platform.Native.SDL.SDLDisplayComponent.yml", "OpenTK.Platform.Native.SDL.SDLDisplayComponent.Logger": "OpenTK.Platform.Native.SDL.SDLDisplayComponent.yml", "OpenTK.Platform.Native.SDL.SDLDisplayComponent.Name": "OpenTK.Platform.Native.SDL.SDLDisplayComponent.yml", "OpenTK.Platform.Native.SDL.SDLDisplayComponent.Open(System.Int32)": "OpenTK.Platform.Native.SDL.SDLDisplayComponent.yml", @@ -8550,23 +8391,23 @@ "OpenTK.Platform.Native.SDL.SDLDisplayComponent.Provides": "OpenTK.Platform.Native.SDL.SDLDisplayComponent.yml", "OpenTK.Platform.Native.SDL.SDLIconComponent": "OpenTK.Platform.Native.SDL.SDLIconComponent.yml", "OpenTK.Platform.Native.SDL.SDLIconComponent.CanLoadSystemIcons": "OpenTK.Platform.Native.SDL.SDLIconComponent.yml", - "OpenTK.Platform.Native.SDL.SDLIconComponent.Create(OpenTK.Core.Platform.SystemIconType)": "OpenTK.Platform.Native.SDL.SDLIconComponent.yml", + "OpenTK.Platform.Native.SDL.SDLIconComponent.Create(OpenTK.Platform.SystemIconType)": "OpenTK.Platform.Native.SDL.SDLIconComponent.yml", "OpenTK.Platform.Native.SDL.SDLIconComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte})": "OpenTK.Platform.Native.SDL.SDLIconComponent.yml", - "OpenTK.Platform.Native.SDL.SDLIconComponent.Destroy(OpenTK.Core.Platform.IconHandle)": "OpenTK.Platform.Native.SDL.SDLIconComponent.yml", - "OpenTK.Platform.Native.SDL.SDLIconComponent.GetBitmapByteSize(OpenTK.Core.Platform.IconHandle)": "OpenTK.Platform.Native.SDL.SDLIconComponent.yml", - "OpenTK.Platform.Native.SDL.SDLIconComponent.GetBitmapData(OpenTK.Core.Platform.IconHandle,System.Span{System.Byte})": "OpenTK.Platform.Native.SDL.SDLIconComponent.yml", - "OpenTK.Platform.Native.SDL.SDLIconComponent.GetSize(OpenTK.Core.Platform.IconHandle,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.SDL.SDLIconComponent.yml", - "OpenTK.Platform.Native.SDL.SDLIconComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions)": "OpenTK.Platform.Native.SDL.SDLIconComponent.yml", + "OpenTK.Platform.Native.SDL.SDLIconComponent.Destroy(OpenTK.Platform.IconHandle)": "OpenTK.Platform.Native.SDL.SDLIconComponent.yml", + "OpenTK.Platform.Native.SDL.SDLIconComponent.GetBitmapByteSize(OpenTK.Platform.IconHandle)": "OpenTK.Platform.Native.SDL.SDLIconComponent.yml", + "OpenTK.Platform.Native.SDL.SDLIconComponent.GetBitmapData(OpenTK.Platform.IconHandle,System.Span{System.Byte})": "OpenTK.Platform.Native.SDL.SDLIconComponent.yml", + "OpenTK.Platform.Native.SDL.SDLIconComponent.GetSize(OpenTK.Platform.IconHandle,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.SDL.SDLIconComponent.yml", + "OpenTK.Platform.Native.SDL.SDLIconComponent.Initialize(OpenTK.Platform.ToolkitOptions)": "OpenTK.Platform.Native.SDL.SDLIconComponent.yml", "OpenTK.Platform.Native.SDL.SDLIconComponent.Logger": "OpenTK.Platform.Native.SDL.SDLIconComponent.yml", "OpenTK.Platform.Native.SDL.SDLIconComponent.Name": "OpenTK.Platform.Native.SDL.SDLIconComponent.yml", "OpenTK.Platform.Native.SDL.SDLIconComponent.Provides": "OpenTK.Platform.Native.SDL.SDLIconComponent.yml", "OpenTK.Platform.Native.SDL.SDLJoystickComponent": "OpenTK.Platform.Native.SDL.SDLJoystickComponent.yml", - "OpenTK.Platform.Native.SDL.SDLJoystickComponent.Close(OpenTK.Core.Platform.JoystickHandle)": "OpenTK.Platform.Native.SDL.SDLJoystickComponent.yml", - "OpenTK.Platform.Native.SDL.SDLJoystickComponent.GetAxis(OpenTK.Core.Platform.JoystickHandle,OpenTK.Core.Platform.JoystickAxis)": "OpenTK.Platform.Native.SDL.SDLJoystickComponent.yml", - "OpenTK.Platform.Native.SDL.SDLJoystickComponent.GetButton(OpenTK.Core.Platform.JoystickHandle,OpenTK.Core.Platform.JoystickButton)": "OpenTK.Platform.Native.SDL.SDLJoystickComponent.yml", - "OpenTK.Platform.Native.SDL.SDLJoystickComponent.GetGuid(OpenTK.Core.Platform.JoystickHandle)": "OpenTK.Platform.Native.SDL.SDLJoystickComponent.yml", - "OpenTK.Platform.Native.SDL.SDLJoystickComponent.GetName(OpenTK.Core.Platform.JoystickHandle)": "OpenTK.Platform.Native.SDL.SDLJoystickComponent.yml", - "OpenTK.Platform.Native.SDL.SDLJoystickComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions)": "OpenTK.Platform.Native.SDL.SDLJoystickComponent.yml", + "OpenTK.Platform.Native.SDL.SDLJoystickComponent.Close(OpenTK.Platform.JoystickHandle)": "OpenTK.Platform.Native.SDL.SDLJoystickComponent.yml", + "OpenTK.Platform.Native.SDL.SDLJoystickComponent.GetAxis(OpenTK.Platform.JoystickHandle,OpenTK.Platform.JoystickAxis)": "OpenTK.Platform.Native.SDL.SDLJoystickComponent.yml", + "OpenTK.Platform.Native.SDL.SDLJoystickComponent.GetButton(OpenTK.Platform.JoystickHandle,OpenTK.Platform.JoystickButton)": "OpenTK.Platform.Native.SDL.SDLJoystickComponent.yml", + "OpenTK.Platform.Native.SDL.SDLJoystickComponent.GetGuid(OpenTK.Platform.JoystickHandle)": "OpenTK.Platform.Native.SDL.SDLJoystickComponent.yml", + "OpenTK.Platform.Native.SDL.SDLJoystickComponent.GetName(OpenTK.Platform.JoystickHandle)": "OpenTK.Platform.Native.SDL.SDLJoystickComponent.yml", + "OpenTK.Platform.Native.SDL.SDLJoystickComponent.Initialize(OpenTK.Platform.ToolkitOptions)": "OpenTK.Platform.Native.SDL.SDLJoystickComponent.yml", "OpenTK.Platform.Native.SDL.SDLJoystickComponent.IsConnected(System.Int32)": "OpenTK.Platform.Native.SDL.SDLJoystickComponent.yml", "OpenTK.Platform.Native.SDL.SDLJoystickComponent.LeftDeadzone": "OpenTK.Platform.Native.SDL.SDLJoystickComponent.yml", "OpenTK.Platform.Native.SDL.SDLJoystickComponent.Logger": "OpenTK.Platform.Native.SDL.SDLJoystickComponent.yml", @@ -8574,60 +8415,63 @@ "OpenTK.Platform.Native.SDL.SDLJoystickComponent.Open(System.Int32)": "OpenTK.Platform.Native.SDL.SDLJoystickComponent.yml", "OpenTK.Platform.Native.SDL.SDLJoystickComponent.Provides": "OpenTK.Platform.Native.SDL.SDLJoystickComponent.yml", "OpenTK.Platform.Native.SDL.SDLJoystickComponent.RightDeadzone": "OpenTK.Platform.Native.SDL.SDLJoystickComponent.yml", - "OpenTK.Platform.Native.SDL.SDLJoystickComponent.SetVibration(OpenTK.Core.Platform.JoystickHandle,System.Single,System.Single)": "OpenTK.Platform.Native.SDL.SDLJoystickComponent.yml", + "OpenTK.Platform.Native.SDL.SDLJoystickComponent.SetVibration(OpenTK.Platform.JoystickHandle,System.Single,System.Single)": "OpenTK.Platform.Native.SDL.SDLJoystickComponent.yml", "OpenTK.Platform.Native.SDL.SDLJoystickComponent.TriggerThreshold": "OpenTK.Platform.Native.SDL.SDLJoystickComponent.yml", - "OpenTK.Platform.Native.SDL.SDLJoystickComponent.TryGetBatteryInfo(OpenTK.Core.Platform.JoystickHandle,OpenTK.Core.Platform.GamepadBatteryInfo@)": "OpenTK.Platform.Native.SDL.SDLJoystickComponent.yml", + "OpenTK.Platform.Native.SDL.SDLJoystickComponent.TryGetBatteryInfo(OpenTK.Platform.JoystickHandle,OpenTK.Platform.GamepadBatteryInfo@)": "OpenTK.Platform.Native.SDL.SDLJoystickComponent.yml", "OpenTK.Platform.Native.SDL.SDLKeyboardComponent": "OpenTK.Platform.Native.SDL.SDLKeyboardComponent.yml", - "OpenTK.Platform.Native.SDL.SDLKeyboardComponent.BeginIme(OpenTK.Core.Platform.WindowHandle)": "OpenTK.Platform.Native.SDL.SDLKeyboardComponent.yml", - "OpenTK.Platform.Native.SDL.SDLKeyboardComponent.EndIme(OpenTK.Core.Platform.WindowHandle)": "OpenTK.Platform.Native.SDL.SDLKeyboardComponent.yml", - "OpenTK.Platform.Native.SDL.SDLKeyboardComponent.GetActiveKeyboardLayout(OpenTK.Core.Platform.WindowHandle)": "OpenTK.Platform.Native.SDL.SDLKeyboardComponent.yml", + "OpenTK.Platform.Native.SDL.SDLKeyboardComponent.BeginIme(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.Native.SDL.SDLKeyboardComponent.yml", + "OpenTK.Platform.Native.SDL.SDLKeyboardComponent.EndIme(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.Native.SDL.SDLKeyboardComponent.yml", + "OpenTK.Platform.Native.SDL.SDLKeyboardComponent.GetActiveKeyboardLayout(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.Native.SDL.SDLKeyboardComponent.yml", "OpenTK.Platform.Native.SDL.SDLKeyboardComponent.GetAvailableKeyboardLayouts": "OpenTK.Platform.Native.SDL.SDLKeyboardComponent.yml", - "OpenTK.Platform.Native.SDL.SDLKeyboardComponent.GetKeyFromScancode(OpenTK.Core.Platform.Scancode)": "OpenTK.Platform.Native.SDL.SDLKeyboardComponent.yml", + "OpenTK.Platform.Native.SDL.SDLKeyboardComponent.GetKeyFromScancode(OpenTK.Platform.Scancode)": "OpenTK.Platform.Native.SDL.SDLKeyboardComponent.yml", "OpenTK.Platform.Native.SDL.SDLKeyboardComponent.GetKeyboardModifiers": "OpenTK.Platform.Native.SDL.SDLKeyboardComponent.yml", "OpenTK.Platform.Native.SDL.SDLKeyboardComponent.GetKeyboardState(System.Boolean[])": "OpenTK.Platform.Native.SDL.SDLKeyboardComponent.yml", - "OpenTK.Platform.Native.SDL.SDLKeyboardComponent.GetScancodeFromKey(OpenTK.Core.Platform.Key)": "OpenTK.Platform.Native.SDL.SDLKeyboardComponent.yml", - "OpenTK.Platform.Native.SDL.SDLKeyboardComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions)": "OpenTK.Platform.Native.SDL.SDLKeyboardComponent.yml", + "OpenTK.Platform.Native.SDL.SDLKeyboardComponent.GetScancodeFromKey(OpenTK.Platform.Key)": "OpenTK.Platform.Native.SDL.SDLKeyboardComponent.yml", + "OpenTK.Platform.Native.SDL.SDLKeyboardComponent.Initialize(OpenTK.Platform.ToolkitOptions)": "OpenTK.Platform.Native.SDL.SDLKeyboardComponent.yml", "OpenTK.Platform.Native.SDL.SDLKeyboardComponent.Logger": "OpenTK.Platform.Native.SDL.SDLKeyboardComponent.yml", "OpenTK.Platform.Native.SDL.SDLKeyboardComponent.Name": "OpenTK.Platform.Native.SDL.SDLKeyboardComponent.yml", "OpenTK.Platform.Native.SDL.SDLKeyboardComponent.Provides": "OpenTK.Platform.Native.SDL.SDLKeyboardComponent.yml", - "OpenTK.Platform.Native.SDL.SDLKeyboardComponent.SetImeRectangle(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32)": "OpenTK.Platform.Native.SDL.SDLKeyboardComponent.yml", + "OpenTK.Platform.Native.SDL.SDLKeyboardComponent.SetImeRectangle(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32)": "OpenTK.Platform.Native.SDL.SDLKeyboardComponent.yml", "OpenTK.Platform.Native.SDL.SDLKeyboardComponent.SupportsIme": "OpenTK.Platform.Native.SDL.SDLKeyboardComponent.yml", "OpenTK.Platform.Native.SDL.SDLKeyboardComponent.SupportsLayouts": "OpenTK.Platform.Native.SDL.SDLKeyboardComponent.yml", "OpenTK.Platform.Native.SDL.SDLMouseComponent": "OpenTK.Platform.Native.SDL.SDLMouseComponent.yml", "OpenTK.Platform.Native.SDL.SDLMouseComponent.CanSetMousePosition": "OpenTK.Platform.Native.SDL.SDLMouseComponent.yml", - "OpenTK.Platform.Native.SDL.SDLMouseComponent.GetMouseState(OpenTK.Core.Platform.MouseState@)": "OpenTK.Platform.Native.SDL.SDLMouseComponent.yml", + "OpenTK.Platform.Native.SDL.SDLMouseComponent.EnableRawMouseMotion(OpenTK.Platform.WindowHandle,System.Boolean)": "OpenTK.Platform.Native.SDL.SDLMouseComponent.yml", + "OpenTK.Platform.Native.SDL.SDLMouseComponent.GetMouseState(OpenTK.Platform.MouseState@)": "OpenTK.Platform.Native.SDL.SDLMouseComponent.yml", "OpenTK.Platform.Native.SDL.SDLMouseComponent.GetPosition(System.Int32@,System.Int32@)": "OpenTK.Platform.Native.SDL.SDLMouseComponent.yml", - "OpenTK.Platform.Native.SDL.SDLMouseComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions)": "OpenTK.Platform.Native.SDL.SDLMouseComponent.yml", + "OpenTK.Platform.Native.SDL.SDLMouseComponent.Initialize(OpenTK.Platform.ToolkitOptions)": "OpenTK.Platform.Native.SDL.SDLMouseComponent.yml", + "OpenTK.Platform.Native.SDL.SDLMouseComponent.IsRawMouseMotionEnabled(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.Native.SDL.SDLMouseComponent.yml", "OpenTK.Platform.Native.SDL.SDLMouseComponent.Logger": "OpenTK.Platform.Native.SDL.SDLMouseComponent.yml", "OpenTK.Platform.Native.SDL.SDLMouseComponent.Name": "OpenTK.Platform.Native.SDL.SDLMouseComponent.yml", "OpenTK.Platform.Native.SDL.SDLMouseComponent.Provides": "OpenTK.Platform.Native.SDL.SDLMouseComponent.yml", "OpenTK.Platform.Native.SDL.SDLMouseComponent.SetPosition(System.Int32,System.Int32)": "OpenTK.Platform.Native.SDL.SDLMouseComponent.yml", - "OpenTK.Platform.Native.SDL.SDLMouseComponent.SetPositionInWindow(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32)": "OpenTK.Platform.Native.SDL.SDLMouseComponent.yml", + "OpenTK.Platform.Native.SDL.SDLMouseComponent.SetPositionInWindow(OpenTK.Platform.WindowHandle,System.Int32,System.Int32)": "OpenTK.Platform.Native.SDL.SDLMouseComponent.yml", + "OpenTK.Platform.Native.SDL.SDLMouseComponent.SupportsRawMouseMotion": "OpenTK.Platform.Native.SDL.SDLMouseComponent.yml", "OpenTK.Platform.Native.SDL.SDLOpenGLComponent": "OpenTK.Platform.Native.SDL.SDLOpenGLComponent.yml", "OpenTK.Platform.Native.SDL.SDLOpenGLComponent.CanCreateFromSurface": "OpenTK.Platform.Native.SDL.SDLOpenGLComponent.yml", "OpenTK.Platform.Native.SDL.SDLOpenGLComponent.CanCreateFromWindow": "OpenTK.Platform.Native.SDL.SDLOpenGLComponent.yml", "OpenTK.Platform.Native.SDL.SDLOpenGLComponent.CanShareContexts": "OpenTK.Platform.Native.SDL.SDLOpenGLComponent.yml", "OpenTK.Platform.Native.SDL.SDLOpenGLComponent.CreateFromSurface": "OpenTK.Platform.Native.SDL.SDLOpenGLComponent.yml", - "OpenTK.Platform.Native.SDL.SDLOpenGLComponent.CreateFromWindow(OpenTK.Core.Platform.WindowHandle)": "OpenTK.Platform.Native.SDL.SDLOpenGLComponent.yml", - "OpenTK.Platform.Native.SDL.SDLOpenGLComponent.DestroyContext(OpenTK.Core.Platform.OpenGLContextHandle)": "OpenTK.Platform.Native.SDL.SDLOpenGLComponent.yml", - "OpenTK.Platform.Native.SDL.SDLOpenGLComponent.GetBindingsContext(OpenTK.Core.Platform.OpenGLContextHandle)": "OpenTK.Platform.Native.SDL.SDLOpenGLComponent.yml", + "OpenTK.Platform.Native.SDL.SDLOpenGLComponent.CreateFromWindow(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.Native.SDL.SDLOpenGLComponent.yml", + "OpenTK.Platform.Native.SDL.SDLOpenGLComponent.DestroyContext(OpenTK.Platform.OpenGLContextHandle)": "OpenTK.Platform.Native.SDL.SDLOpenGLComponent.yml", + "OpenTK.Platform.Native.SDL.SDLOpenGLComponent.GetBindingsContext(OpenTK.Platform.OpenGLContextHandle)": "OpenTK.Platform.Native.SDL.SDLOpenGLComponent.yml", "OpenTK.Platform.Native.SDL.SDLOpenGLComponent.GetCurrentContext": "OpenTK.Platform.Native.SDL.SDLOpenGLComponent.yml", - "OpenTK.Platform.Native.SDL.SDLOpenGLComponent.GetProcedureAddress(OpenTK.Core.Platform.OpenGLContextHandle,System.String)": "OpenTK.Platform.Native.SDL.SDLOpenGLComponent.yml", - "OpenTK.Platform.Native.SDL.SDLOpenGLComponent.GetSharedContext(OpenTK.Core.Platform.OpenGLContextHandle)": "OpenTK.Platform.Native.SDL.SDLOpenGLComponent.yml", + "OpenTK.Platform.Native.SDL.SDLOpenGLComponent.GetProcedureAddress(OpenTK.Platform.OpenGLContextHandle,System.String)": "OpenTK.Platform.Native.SDL.SDLOpenGLComponent.yml", + "OpenTK.Platform.Native.SDL.SDLOpenGLComponent.GetSharedContext(OpenTK.Platform.OpenGLContextHandle)": "OpenTK.Platform.Native.SDL.SDLOpenGLComponent.yml", "OpenTK.Platform.Native.SDL.SDLOpenGLComponent.GetSwapInterval": "OpenTK.Platform.Native.SDL.SDLOpenGLComponent.yml", - "OpenTK.Platform.Native.SDL.SDLOpenGLComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions)": "OpenTK.Platform.Native.SDL.SDLOpenGLComponent.yml", + "OpenTK.Platform.Native.SDL.SDLOpenGLComponent.Initialize(OpenTK.Platform.ToolkitOptions)": "OpenTK.Platform.Native.SDL.SDLOpenGLComponent.yml", "OpenTK.Platform.Native.SDL.SDLOpenGLComponent.Logger": "OpenTK.Platform.Native.SDL.SDLOpenGLComponent.yml", "OpenTK.Platform.Native.SDL.SDLOpenGLComponent.Name": "OpenTK.Platform.Native.SDL.SDLOpenGLComponent.yml", "OpenTK.Platform.Native.SDL.SDLOpenGLComponent.Provides": "OpenTK.Platform.Native.SDL.SDLOpenGLComponent.yml", - "OpenTK.Platform.Native.SDL.SDLOpenGLComponent.SetCurrentContext(OpenTK.Core.Platform.OpenGLContextHandle)": "OpenTK.Platform.Native.SDL.SDLOpenGLComponent.yml", + "OpenTK.Platform.Native.SDL.SDLOpenGLComponent.SetCurrentContext(OpenTK.Platform.OpenGLContextHandle)": "OpenTK.Platform.Native.SDL.SDLOpenGLComponent.yml", "OpenTK.Platform.Native.SDL.SDLOpenGLComponent.SetSwapInterval(System.Int32)": "OpenTK.Platform.Native.SDL.SDLOpenGLComponent.yml", - "OpenTK.Platform.Native.SDL.SDLOpenGLComponent.SwapBuffers(OpenTK.Core.Platform.OpenGLContextHandle)": "OpenTK.Platform.Native.SDL.SDLOpenGLComponent.yml", + "OpenTK.Platform.Native.SDL.SDLOpenGLComponent.SwapBuffers(OpenTK.Platform.OpenGLContextHandle)": "OpenTK.Platform.Native.SDL.SDLOpenGLComponent.yml", "OpenTK.Platform.Native.SDL.SDLShellComponent": "OpenTK.Platform.Native.SDL.SDLShellComponent.yml", "OpenTK.Platform.Native.SDL.SDLShellComponent.AllowScreenSaver(System.Boolean)": "OpenTK.Platform.Native.SDL.SDLShellComponent.yml", - "OpenTK.Platform.Native.SDL.SDLShellComponent.GetBatteryInfo(OpenTK.Core.Platform.BatteryInfo@)": "OpenTK.Platform.Native.SDL.SDLShellComponent.yml", + "OpenTK.Platform.Native.SDL.SDLShellComponent.GetBatteryInfo(OpenTK.Platform.BatteryInfo@)": "OpenTK.Platform.Native.SDL.SDLShellComponent.yml", "OpenTK.Platform.Native.SDL.SDLShellComponent.GetPreferredTheme": "OpenTK.Platform.Native.SDL.SDLShellComponent.yml", "OpenTK.Platform.Native.SDL.SDLShellComponent.GetSystemMemoryInformation": "OpenTK.Platform.Native.SDL.SDLShellComponent.yml", - "OpenTK.Platform.Native.SDL.SDLShellComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions)": "OpenTK.Platform.Native.SDL.SDLShellComponent.yml", + "OpenTK.Platform.Native.SDL.SDLShellComponent.Initialize(OpenTK.Platform.ToolkitOptions)": "OpenTK.Platform.Native.SDL.SDLShellComponent.yml", "OpenTK.Platform.Native.SDL.SDLShellComponent.Logger": "OpenTK.Platform.Native.SDL.SDLShellComponent.yml", "OpenTK.Platform.Native.SDL.SDLShellComponent.Name": "OpenTK.Platform.Native.SDL.SDLShellComponent.yml", "OpenTK.Platform.Native.SDL.SDLShellComponent.Provides": "OpenTK.Platform.Native.SDL.SDLShellComponent.yml", @@ -8636,72 +8480,58 @@ "OpenTK.Platform.Native.SDL.SDLWindowComponent.CanGetDisplay": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", "OpenTK.Platform.Native.SDL.SDLWindowComponent.CanSetCursor": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", "OpenTK.Platform.Native.SDL.SDLWindowComponent.CanSetIcon": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", - "OpenTK.Platform.Native.SDL.SDLWindowComponent.ClientToScreen(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", - "OpenTK.Platform.Native.SDL.SDLWindowComponent.Create(OpenTK.Core.Platform.GraphicsApiHints)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", - "OpenTK.Platform.Native.SDL.SDLWindowComponent.Destroy(OpenTK.Core.Platform.WindowHandle)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", - "OpenTK.Platform.Native.SDL.SDLWindowComponent.FocusWindow(OpenTK.Core.Platform.WindowHandle)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", - "OpenTK.Platform.Native.SDL.SDLWindowComponent.GetBorderStyle(OpenTK.Core.Platform.WindowHandle)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", - "OpenTK.Platform.Native.SDL.SDLWindowComponent.GetBounds(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", - "OpenTK.Platform.Native.SDL.SDLWindowComponent.GetClientBounds(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", - "OpenTK.Platform.Native.SDL.SDLWindowComponent.GetClientPosition(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", - "OpenTK.Platform.Native.SDL.SDLWindowComponent.GetClientSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", - "OpenTK.Platform.Native.SDL.SDLWindowComponent.GetCursorCaptureMode(OpenTK.Core.Platform.WindowHandle)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", - "OpenTK.Platform.Native.SDL.SDLWindowComponent.GetDisplay(OpenTK.Core.Platform.WindowHandle)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", - "OpenTK.Platform.Native.SDL.SDLWindowComponent.GetFramebufferSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", - "OpenTK.Platform.Native.SDL.SDLWindowComponent.GetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle@)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", - "OpenTK.Platform.Native.SDL.SDLWindowComponent.GetIcon(OpenTK.Core.Platform.WindowHandle)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", - "OpenTK.Platform.Native.SDL.SDLWindowComponent.GetMaxClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", - "OpenTK.Platform.Native.SDL.SDLWindowComponent.GetMinClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", - "OpenTK.Platform.Native.SDL.SDLWindowComponent.GetMode(OpenTK.Core.Platform.WindowHandle)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", - "OpenTK.Platform.Native.SDL.SDLWindowComponent.GetPosition(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", - "OpenTK.Platform.Native.SDL.SDLWindowComponent.GetScaleFactor(OpenTK.Core.Platform.WindowHandle,System.Single@,System.Single@)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", - "OpenTK.Platform.Native.SDL.SDLWindowComponent.GetSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", - "OpenTK.Platform.Native.SDL.SDLWindowComponent.GetTitle(OpenTK.Core.Platform.WindowHandle)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", - "OpenTK.Platform.Native.SDL.SDLWindowComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", - "OpenTK.Platform.Native.SDL.SDLWindowComponent.IsAlwaysOnTop(OpenTK.Core.Platform.WindowHandle)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", - "OpenTK.Platform.Native.SDL.SDLWindowComponent.IsFocused(OpenTK.Core.Platform.WindowHandle)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", - "OpenTK.Platform.Native.SDL.SDLWindowComponent.IsWindowDestroyed(OpenTK.Core.Platform.WindowHandle)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", + "OpenTK.Platform.Native.SDL.SDLWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", + "OpenTK.Platform.Native.SDL.SDLWindowComponent.Create(OpenTK.Platform.GraphicsApiHints)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", + "OpenTK.Platform.Native.SDL.SDLWindowComponent.Destroy(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", + "OpenTK.Platform.Native.SDL.SDLWindowComponent.FocusWindow(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", + "OpenTK.Platform.Native.SDL.SDLWindowComponent.GetBorderStyle(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", + "OpenTK.Platform.Native.SDL.SDLWindowComponent.GetBounds(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", + "OpenTK.Platform.Native.SDL.SDLWindowComponent.GetClientBounds(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", + "OpenTK.Platform.Native.SDL.SDLWindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", + "OpenTK.Platform.Native.SDL.SDLWindowComponent.GetClientSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", + "OpenTK.Platform.Native.SDL.SDLWindowComponent.GetCursorCaptureMode(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", + "OpenTK.Platform.Native.SDL.SDLWindowComponent.GetDisplay(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", + "OpenTK.Platform.Native.SDL.SDLWindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", + "OpenTK.Platform.Native.SDL.SDLWindowComponent.GetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle@)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", + "OpenTK.Platform.Native.SDL.SDLWindowComponent.GetIcon(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", + "OpenTK.Platform.Native.SDL.SDLWindowComponent.GetMaxClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", + "OpenTK.Platform.Native.SDL.SDLWindowComponent.GetMinClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", + "OpenTK.Platform.Native.SDL.SDLWindowComponent.GetMode(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", + "OpenTK.Platform.Native.SDL.SDLWindowComponent.GetPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", + "OpenTK.Platform.Native.SDL.SDLWindowComponent.GetScaleFactor(OpenTK.Platform.WindowHandle,System.Single@,System.Single@)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", + "OpenTK.Platform.Native.SDL.SDLWindowComponent.GetSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", + "OpenTK.Platform.Native.SDL.SDLWindowComponent.GetTitle(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", + "OpenTK.Platform.Native.SDL.SDLWindowComponent.Initialize(OpenTK.Platform.ToolkitOptions)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", + "OpenTK.Platform.Native.SDL.SDLWindowComponent.IsAlwaysOnTop(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", + "OpenTK.Platform.Native.SDL.SDLWindowComponent.IsFocused(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", + "OpenTK.Platform.Native.SDL.SDLWindowComponent.IsWindowDestroyed(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", "OpenTK.Platform.Native.SDL.SDLWindowComponent.Logger": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", "OpenTK.Platform.Native.SDL.SDLWindowComponent.Name": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", "OpenTK.Platform.Native.SDL.SDLWindowComponent.ProcessEvents(System.Boolean)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", "OpenTK.Platform.Native.SDL.SDLWindowComponent.Provides": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", - "OpenTK.Platform.Native.SDL.SDLWindowComponent.RequestAttention(OpenTK.Core.Platform.WindowHandle)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", - "OpenTK.Platform.Native.SDL.SDLWindowComponent.ScreenToClient(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", - "OpenTK.Platform.Native.SDL.SDLWindowComponent.SetAlwaysOnTop(OpenTK.Core.Platform.WindowHandle,System.Boolean)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", - "OpenTK.Platform.Native.SDL.SDLWindowComponent.SetBorderStyle(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.WindowBorderStyle)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", - "OpenTK.Platform.Native.SDL.SDLWindowComponent.SetBounds(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", - "OpenTK.Platform.Native.SDL.SDLWindowComponent.SetClientBounds(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", - "OpenTK.Platform.Native.SDL.SDLWindowComponent.SetClientPosition(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", - "OpenTK.Platform.Native.SDL.SDLWindowComponent.SetClientSize(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", - "OpenTK.Platform.Native.SDL.SDLWindowComponent.SetCursor(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.CursorHandle)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", - "OpenTK.Platform.Native.SDL.SDLWindowComponent.SetCursorCaptureMode(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.CursorCaptureMode)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", - "OpenTK.Platform.Native.SDL.SDLWindowComponent.SetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", - "OpenTK.Platform.Native.SDL.SDLWindowComponent.SetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle,OpenTK.Core.Platform.VideoMode)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", - "OpenTK.Platform.Native.SDL.SDLWindowComponent.SetHitTestCallback(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.HitTest)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", - "OpenTK.Platform.Native.SDL.SDLWindowComponent.SetIcon(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.IconHandle)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", - "OpenTK.Platform.Native.SDL.SDLWindowComponent.SetMaxClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32})": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", - "OpenTK.Platform.Native.SDL.SDLWindowComponent.SetMinClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32})": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", - "OpenTK.Platform.Native.SDL.SDLWindowComponent.SetMode(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.WindowMode)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", - "OpenTK.Platform.Native.SDL.SDLWindowComponent.SetPosition(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", - "OpenTK.Platform.Native.SDL.SDLWindowComponent.SetSize(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", - "OpenTK.Platform.Native.SDL.SDLWindowComponent.SetTitle(OpenTK.Core.Platform.WindowHandle,System.String)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", + "OpenTK.Platform.Native.SDL.SDLWindowComponent.RequestAttention(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", + "OpenTK.Platform.Native.SDL.SDLWindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", + "OpenTK.Platform.Native.SDL.SDLWindowComponent.SetAlwaysOnTop(OpenTK.Platform.WindowHandle,System.Boolean)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", + "OpenTK.Platform.Native.SDL.SDLWindowComponent.SetBorderStyle(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowBorderStyle)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", + "OpenTK.Platform.Native.SDL.SDLWindowComponent.SetBounds(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", + "OpenTK.Platform.Native.SDL.SDLWindowComponent.SetClientBounds(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", + "OpenTK.Platform.Native.SDL.SDLWindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", + "OpenTK.Platform.Native.SDL.SDLWindowComponent.SetClientSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", + "OpenTK.Platform.Native.SDL.SDLWindowComponent.SetCursor(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorHandle)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", + "OpenTK.Platform.Native.SDL.SDLWindowComponent.SetCursorCaptureMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorCaptureMode)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", + "OpenTK.Platform.Native.SDL.SDLWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", + "OpenTK.Platform.Native.SDL.SDLWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle,OpenTK.Platform.VideoMode)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", + "OpenTK.Platform.Native.SDL.SDLWindowComponent.SetHitTestCallback(OpenTK.Platform.WindowHandle,OpenTK.Platform.HitTest)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", + "OpenTK.Platform.Native.SDL.SDLWindowComponent.SetIcon(OpenTK.Platform.WindowHandle,OpenTK.Platform.IconHandle)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", + "OpenTK.Platform.Native.SDL.SDLWindowComponent.SetMaxClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32})": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", + "OpenTK.Platform.Native.SDL.SDLWindowComponent.SetMinClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32})": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", + "OpenTK.Platform.Native.SDL.SDLWindowComponent.SetMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowMode)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", + "OpenTK.Platform.Native.SDL.SDLWindowComponent.SetPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", + "OpenTK.Platform.Native.SDL.SDLWindowComponent.SetSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", + "OpenTK.Platform.Native.SDL.SDLWindowComponent.SetTitle(OpenTK.Platform.WindowHandle,System.String)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", "OpenTK.Platform.Native.SDL.SDLWindowComponent.SupportedEvents": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", "OpenTK.Platform.Native.SDL.SDLWindowComponent.SupportedModes": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", "OpenTK.Platform.Native.SDL.SDLWindowComponent.SupportedStyles": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", - "OpenTK.Platform.Native.Toolkit": "OpenTK.Platform.Native.Toolkit.yml", - "OpenTK.Platform.Native.Toolkit.Clipboard": "OpenTK.Platform.Native.Toolkit.yml", - "OpenTK.Platform.Native.Toolkit.Cursor": "OpenTK.Platform.Native.Toolkit.yml", - "OpenTK.Platform.Native.Toolkit.Dialog": "OpenTK.Platform.Native.Toolkit.yml", - "OpenTK.Platform.Native.Toolkit.Display": "OpenTK.Platform.Native.Toolkit.yml", - "OpenTK.Platform.Native.Toolkit.Icon": "OpenTK.Platform.Native.Toolkit.yml", - "OpenTK.Platform.Native.Toolkit.Init(OpenTK.Core.Platform.ToolkitOptions)": "OpenTK.Platform.Native.Toolkit.yml", - "OpenTK.Platform.Native.Toolkit.Joystick": "OpenTK.Platform.Native.Toolkit.yml", - "OpenTK.Platform.Native.Toolkit.Keyboard": "OpenTK.Platform.Native.Toolkit.yml", - "OpenTK.Platform.Native.Toolkit.Mouse": "OpenTK.Platform.Native.Toolkit.yml", - "OpenTK.Platform.Native.Toolkit.OpenGL": "OpenTK.Platform.Native.Toolkit.yml", - "OpenTK.Platform.Native.Toolkit.Shell": "OpenTK.Platform.Native.Toolkit.yml", - "OpenTK.Platform.Native.Toolkit.Surface": "OpenTK.Platform.Native.Toolkit.yml", - "OpenTK.Platform.Native.Toolkit.Window": "OpenTK.Platform.Native.Toolkit.yml", "OpenTK.Platform.Native.Windows": "OpenTK.Platform.Native.Windows.yml", "OpenTK.Platform.Native.Windows.ClipboardComponent": "OpenTK.Platform.Native.Windows.ClipboardComponent.yml", "OpenTK.Platform.Native.Windows.ClipboardComponent.CanIncludeInClipboardHistory": "OpenTK.Platform.Native.Windows.ClipboardComponent.yml", @@ -8711,56 +8541,57 @@ "OpenTK.Platform.Native.Windows.ClipboardComponent.GetClipboardFiles": "OpenTK.Platform.Native.Windows.ClipboardComponent.yml", "OpenTK.Platform.Native.Windows.ClipboardComponent.GetClipboardFormat": "OpenTK.Platform.Native.Windows.ClipboardComponent.yml", "OpenTK.Platform.Native.Windows.ClipboardComponent.GetClipboardText": "OpenTK.Platform.Native.Windows.ClipboardComponent.yml", - "OpenTK.Platform.Native.Windows.ClipboardComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions)": "OpenTK.Platform.Native.Windows.ClipboardComponent.yml", + "OpenTK.Platform.Native.Windows.ClipboardComponent.Initialize(OpenTK.Platform.ToolkitOptions)": "OpenTK.Platform.Native.Windows.ClipboardComponent.yml", "OpenTK.Platform.Native.Windows.ClipboardComponent.Logger": "OpenTK.Platform.Native.Windows.ClipboardComponent.yml", "OpenTK.Platform.Native.Windows.ClipboardComponent.Name": "OpenTK.Platform.Native.Windows.ClipboardComponent.yml", "OpenTK.Platform.Native.Windows.ClipboardComponent.Provides": "OpenTK.Platform.Native.Windows.ClipboardComponent.yml", - "OpenTK.Platform.Native.Windows.ClipboardComponent.SetClipboardAudio(OpenTK.Core.Platform.AudioData)": "OpenTK.Platform.Native.Windows.ClipboardComponent.yml", - "OpenTK.Platform.Native.Windows.ClipboardComponent.SetClipboardBitmap(OpenTK.Core.Platform.Bitmap)": "OpenTK.Platform.Native.Windows.ClipboardComponent.yml", + "OpenTK.Platform.Native.Windows.ClipboardComponent.SetClipboardAudio(OpenTK.Platform.AudioData)": "OpenTK.Platform.Native.Windows.ClipboardComponent.yml", + "OpenTK.Platform.Native.Windows.ClipboardComponent.SetClipboardBitmap(OpenTK.Platform.Bitmap)": "OpenTK.Platform.Native.Windows.ClipboardComponent.yml", "OpenTK.Platform.Native.Windows.ClipboardComponent.SetClipboardText(System.String)": "OpenTK.Platform.Native.Windows.ClipboardComponent.yml", "OpenTK.Platform.Native.Windows.ClipboardComponent.SupportedFormats": "OpenTK.Platform.Native.Windows.ClipboardComponent.yml", "OpenTK.Platform.Native.Windows.CursorComponent": "OpenTK.Platform.Native.Windows.CursorComponent.yml", "OpenTK.Platform.Native.Windows.CursorComponent.CanInspectSystemCursors": "OpenTK.Platform.Native.Windows.CursorComponent.yml", "OpenTK.Platform.Native.Windows.CursorComponent.CanLoadSystemCursors": "OpenTK.Platform.Native.Windows.CursorComponent.yml", - "OpenTK.Platform.Native.Windows.CursorComponent.Create(OpenTK.Core.Platform.SystemCursorType)": "OpenTK.Platform.Native.Windows.CursorComponent.yml", + "OpenTK.Platform.Native.Windows.CursorComponent.Create(OpenTK.Platform.SystemCursorType)": "OpenTK.Platform.Native.Windows.CursorComponent.yml", "OpenTK.Platform.Native.Windows.CursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.Int32,System.Int32)": "OpenTK.Platform.Native.Windows.CursorComponent.yml", "OpenTK.Platform.Native.Windows.CursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.ReadOnlySpan{System.Byte},System.Int32,System.Int32)": "OpenTK.Platform.Native.Windows.CursorComponent.yml", "OpenTK.Platform.Native.Windows.CursorComponent.CreateFromCurFile(System.String)": "OpenTK.Platform.Native.Windows.CursorComponent.yml", "OpenTK.Platform.Native.Windows.CursorComponent.CreateFromCurResorce(System.Byte[])": "OpenTK.Platform.Native.Windows.CursorComponent.yml", "OpenTK.Platform.Native.Windows.CursorComponent.CreateFromCurResorce(System.String)": "OpenTK.Platform.Native.Windows.CursorComponent.yml", - "OpenTK.Platform.Native.Windows.CursorComponent.Destroy(OpenTK.Core.Platform.CursorHandle)": "OpenTK.Platform.Native.Windows.CursorComponent.yml", - "OpenTK.Platform.Native.Windows.CursorComponent.GetHotspot(OpenTK.Core.Platform.CursorHandle,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.Windows.CursorComponent.yml", - "OpenTK.Platform.Native.Windows.CursorComponent.GetImage(OpenTK.Core.Platform.CursorHandle,System.Span{System.Byte})": "OpenTK.Platform.Native.Windows.CursorComponent.yml", - "OpenTK.Platform.Native.Windows.CursorComponent.GetSize(OpenTK.Core.Platform.CursorHandle,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.Windows.CursorComponent.yml", - "OpenTK.Platform.Native.Windows.CursorComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions)": "OpenTK.Platform.Native.Windows.CursorComponent.yml", - "OpenTK.Platform.Native.Windows.CursorComponent.IsSystemCursor(OpenTK.Core.Platform.CursorHandle)": "OpenTK.Platform.Native.Windows.CursorComponent.yml", + "OpenTK.Platform.Native.Windows.CursorComponent.Destroy(OpenTK.Platform.CursorHandle)": "OpenTK.Platform.Native.Windows.CursorComponent.yml", + "OpenTK.Platform.Native.Windows.CursorComponent.GetHotspot(OpenTK.Platform.CursorHandle,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.Windows.CursorComponent.yml", + "OpenTK.Platform.Native.Windows.CursorComponent.GetImage(OpenTK.Platform.CursorHandle,System.Span{System.Byte})": "OpenTK.Platform.Native.Windows.CursorComponent.yml", + "OpenTK.Platform.Native.Windows.CursorComponent.GetSize(OpenTK.Platform.CursorHandle,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.Windows.CursorComponent.yml", + "OpenTK.Platform.Native.Windows.CursorComponent.Initialize(OpenTK.Platform.ToolkitOptions)": "OpenTK.Platform.Native.Windows.CursorComponent.yml", + "OpenTK.Platform.Native.Windows.CursorComponent.IsSystemCursor(OpenTK.Platform.CursorHandle)": "OpenTK.Platform.Native.Windows.CursorComponent.yml", "OpenTK.Platform.Native.Windows.CursorComponent.Logger": "OpenTK.Platform.Native.Windows.CursorComponent.yml", "OpenTK.Platform.Native.Windows.CursorComponent.Name": "OpenTK.Platform.Native.Windows.CursorComponent.yml", "OpenTK.Platform.Native.Windows.CursorComponent.Provides": "OpenTK.Platform.Native.Windows.CursorComponent.yml", "OpenTK.Platform.Native.Windows.DialogComponent": "OpenTK.Platform.Native.Windows.DialogComponent.yml", "OpenTK.Platform.Native.Windows.DialogComponent.CanTargetFolders": "OpenTK.Platform.Native.Windows.DialogComponent.yml", - "OpenTK.Platform.Native.Windows.DialogComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions)": "OpenTK.Platform.Native.Windows.DialogComponent.yml", + "OpenTK.Platform.Native.Windows.DialogComponent.Initialize(OpenTK.Platform.ToolkitOptions)": "OpenTK.Platform.Native.Windows.DialogComponent.yml", "OpenTK.Platform.Native.Windows.DialogComponent.Logger": "OpenTK.Platform.Native.Windows.DialogComponent.yml", "OpenTK.Platform.Native.Windows.DialogComponent.Name": "OpenTK.Platform.Native.Windows.DialogComponent.yml", "OpenTK.Platform.Native.Windows.DialogComponent.Provides": "OpenTK.Platform.Native.Windows.DialogComponent.yml", - "OpenTK.Platform.Native.Windows.DialogComponent.ShowOpenDialog(OpenTK.Core.Platform.WindowHandle,System.String,System.String,OpenTK.Core.Platform.DialogFileFilter[],OpenTK.Core.Platform.OpenDialogOptions)": "OpenTK.Platform.Native.Windows.DialogComponent.yml", - "OpenTK.Platform.Native.Windows.DialogComponent.ShowSaveDialog(OpenTK.Core.Platform.WindowHandle,System.String,System.String,OpenTK.Core.Platform.DialogFileFilter[],OpenTK.Core.Platform.SaveDialogOptions)": "OpenTK.Platform.Native.Windows.DialogComponent.yml", + "OpenTK.Platform.Native.Windows.DialogComponent.ShowMessageBox(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.MessageBoxType,OpenTK.Platform.IconHandle)": "OpenTK.Platform.Native.Windows.DialogComponent.yml", + "OpenTK.Platform.Native.Windows.DialogComponent.ShowOpenDialog(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.DialogFileFilter[],OpenTK.Platform.OpenDialogOptions)": "OpenTK.Platform.Native.Windows.DialogComponent.yml", + "OpenTK.Platform.Native.Windows.DialogComponent.ShowSaveDialog(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.DialogFileFilter[],OpenTK.Platform.SaveDialogOptions)": "OpenTK.Platform.Native.Windows.DialogComponent.yml", "OpenTK.Platform.Native.Windows.DisplayComponent": "OpenTK.Platform.Native.Windows.DisplayComponent.yml", "OpenTK.Platform.Native.Windows.DisplayComponent.CanGetVirtualPosition": "OpenTK.Platform.Native.Windows.DisplayComponent.yml", - "OpenTK.Platform.Native.Windows.DisplayComponent.Close(OpenTK.Core.Platform.DisplayHandle)": "OpenTK.Platform.Native.Windows.DisplayComponent.yml", - "OpenTK.Platform.Native.Windows.DisplayComponent.GetAdapter(OpenTK.Core.Platform.DisplayHandle)": "OpenTK.Platform.Native.Windows.DisplayComponent.yml", + "OpenTK.Platform.Native.Windows.DisplayComponent.Close(OpenTK.Platform.DisplayHandle)": "OpenTK.Platform.Native.Windows.DisplayComponent.yml", + "OpenTK.Platform.Native.Windows.DisplayComponent.GetAdapter(OpenTK.Platform.DisplayHandle)": "OpenTK.Platform.Native.Windows.DisplayComponent.yml", "OpenTK.Platform.Native.Windows.DisplayComponent.GetDisplayCount": "OpenTK.Platform.Native.Windows.DisplayComponent.yml", - "OpenTK.Platform.Native.Windows.DisplayComponent.GetDisplayScale(OpenTK.Core.Platform.DisplayHandle,System.Single@,System.Single@)": "OpenTK.Platform.Native.Windows.DisplayComponent.yml", - "OpenTK.Platform.Native.Windows.DisplayComponent.GetMonitor(OpenTK.Core.Platform.DisplayHandle)": "OpenTK.Platform.Native.Windows.DisplayComponent.yml", - "OpenTK.Platform.Native.Windows.DisplayComponent.GetName(OpenTK.Core.Platform.DisplayHandle)": "OpenTK.Platform.Native.Windows.DisplayComponent.yml", - "OpenTK.Platform.Native.Windows.DisplayComponent.GetRefreshRate(OpenTK.Core.Platform.DisplayHandle,System.Single@)": "OpenTK.Platform.Native.Windows.DisplayComponent.yml", - "OpenTK.Platform.Native.Windows.DisplayComponent.GetResolution(OpenTK.Core.Platform.DisplayHandle,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.Windows.DisplayComponent.yml", - "OpenTK.Platform.Native.Windows.DisplayComponent.GetSupportedVideoModes(OpenTK.Core.Platform.DisplayHandle)": "OpenTK.Platform.Native.Windows.DisplayComponent.yml", - "OpenTK.Platform.Native.Windows.DisplayComponent.GetVideoMode(OpenTK.Core.Platform.DisplayHandle,OpenTK.Core.Platform.VideoMode@)": "OpenTK.Platform.Native.Windows.DisplayComponent.yml", - "OpenTK.Platform.Native.Windows.DisplayComponent.GetVirtualPosition(OpenTK.Core.Platform.DisplayHandle,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.Windows.DisplayComponent.yml", - "OpenTK.Platform.Native.Windows.DisplayComponent.GetWorkArea(OpenTK.Core.Platform.DisplayHandle,OpenTK.Mathematics.Box2i@)": "OpenTK.Platform.Native.Windows.DisplayComponent.yml", - "OpenTK.Platform.Native.Windows.DisplayComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions)": "OpenTK.Platform.Native.Windows.DisplayComponent.yml", - "OpenTK.Platform.Native.Windows.DisplayComponent.IsPrimary(OpenTK.Core.Platform.DisplayHandle)": "OpenTK.Platform.Native.Windows.DisplayComponent.yml", + "OpenTK.Platform.Native.Windows.DisplayComponent.GetDisplayScale(OpenTK.Platform.DisplayHandle,System.Single@,System.Single@)": "OpenTK.Platform.Native.Windows.DisplayComponent.yml", + "OpenTK.Platform.Native.Windows.DisplayComponent.GetMonitor(OpenTK.Platform.DisplayHandle)": "OpenTK.Platform.Native.Windows.DisplayComponent.yml", + "OpenTK.Platform.Native.Windows.DisplayComponent.GetName(OpenTK.Platform.DisplayHandle)": "OpenTK.Platform.Native.Windows.DisplayComponent.yml", + "OpenTK.Platform.Native.Windows.DisplayComponent.GetRefreshRate(OpenTK.Platform.DisplayHandle,System.Single@)": "OpenTK.Platform.Native.Windows.DisplayComponent.yml", + "OpenTK.Platform.Native.Windows.DisplayComponent.GetResolution(OpenTK.Platform.DisplayHandle,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.Windows.DisplayComponent.yml", + "OpenTK.Platform.Native.Windows.DisplayComponent.GetSupportedVideoModes(OpenTK.Platform.DisplayHandle)": "OpenTK.Platform.Native.Windows.DisplayComponent.yml", + "OpenTK.Platform.Native.Windows.DisplayComponent.GetVideoMode(OpenTK.Platform.DisplayHandle,OpenTK.Platform.VideoMode@)": "OpenTK.Platform.Native.Windows.DisplayComponent.yml", + "OpenTK.Platform.Native.Windows.DisplayComponent.GetVirtualPosition(OpenTK.Platform.DisplayHandle,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.Windows.DisplayComponent.yml", + "OpenTK.Platform.Native.Windows.DisplayComponent.GetWorkArea(OpenTK.Platform.DisplayHandle,OpenTK.Mathematics.Box2i@)": "OpenTK.Platform.Native.Windows.DisplayComponent.yml", + "OpenTK.Platform.Native.Windows.DisplayComponent.Initialize(OpenTK.Platform.ToolkitOptions)": "OpenTK.Platform.Native.Windows.DisplayComponent.yml", + "OpenTK.Platform.Native.Windows.DisplayComponent.IsPrimary(OpenTK.Platform.DisplayHandle)": "OpenTK.Platform.Native.Windows.DisplayComponent.yml", "OpenTK.Platform.Native.Windows.DisplayComponent.Logger": "OpenTK.Platform.Native.Windows.DisplayComponent.yml", "OpenTK.Platform.Native.Windows.DisplayComponent.Name": "OpenTK.Platform.Native.Windows.DisplayComponent.yml", "OpenTK.Platform.Native.Windows.DisplayComponent.Open(System.Int32)": "OpenTK.Platform.Native.Windows.DisplayComponent.yml", @@ -8768,28 +8599,28 @@ "OpenTK.Platform.Native.Windows.DisplayComponent.Provides": "OpenTK.Platform.Native.Windows.DisplayComponent.yml", "OpenTK.Platform.Native.Windows.IconComponent": "OpenTK.Platform.Native.Windows.IconComponent.yml", "OpenTK.Platform.Native.Windows.IconComponent.CanLoadSystemIcons": "OpenTK.Platform.Native.Windows.IconComponent.yml", - "OpenTK.Platform.Native.Windows.IconComponent.Create(OpenTK.Core.Platform.SystemIconType)": "OpenTK.Platform.Native.Windows.IconComponent.yml", + "OpenTK.Platform.Native.Windows.IconComponent.Create(OpenTK.Platform.SystemIconType)": "OpenTK.Platform.Native.Windows.IconComponent.yml", "OpenTK.Platform.Native.Windows.IconComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte})": "OpenTK.Platform.Native.Windows.IconComponent.yml", "OpenTK.Platform.Native.Windows.IconComponent.CreateFromIcoFile(System.String)": "OpenTK.Platform.Native.Windows.IconComponent.yml", "OpenTK.Platform.Native.Windows.IconComponent.CreateFromIcoResource(System.Byte[])": "OpenTK.Platform.Native.Windows.IconComponent.yml", "OpenTK.Platform.Native.Windows.IconComponent.CreateFromIcoResource(System.String)": "OpenTK.Platform.Native.Windows.IconComponent.yml", - "OpenTK.Platform.Native.Windows.IconComponent.Destroy(OpenTK.Core.Platform.IconHandle)": "OpenTK.Platform.Native.Windows.IconComponent.yml", - "OpenTK.Platform.Native.Windows.IconComponent.GetBitmapByteSize(OpenTK.Core.Platform.IconHandle)": "OpenTK.Platform.Native.Windows.IconComponent.yml", - "OpenTK.Platform.Native.Windows.IconComponent.GetBitmapData(OpenTK.Core.Platform.IconHandle,System.Span{System.Byte})": "OpenTK.Platform.Native.Windows.IconComponent.yml", - "OpenTK.Platform.Native.Windows.IconComponent.GetSize(OpenTK.Core.Platform.IconHandle,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.Windows.IconComponent.yml", - "OpenTK.Platform.Native.Windows.IconComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions)": "OpenTK.Platform.Native.Windows.IconComponent.yml", + "OpenTK.Platform.Native.Windows.IconComponent.Destroy(OpenTK.Platform.IconHandle)": "OpenTK.Platform.Native.Windows.IconComponent.yml", + "OpenTK.Platform.Native.Windows.IconComponent.GetBitmapByteSize(OpenTK.Platform.IconHandle)": "OpenTK.Platform.Native.Windows.IconComponent.yml", + "OpenTK.Platform.Native.Windows.IconComponent.GetBitmapData(OpenTK.Platform.IconHandle,System.Span{System.Byte})": "OpenTK.Platform.Native.Windows.IconComponent.yml", + "OpenTK.Platform.Native.Windows.IconComponent.GetSize(OpenTK.Platform.IconHandle,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.Windows.IconComponent.yml", + "OpenTK.Platform.Native.Windows.IconComponent.Initialize(OpenTK.Platform.ToolkitOptions)": "OpenTK.Platform.Native.Windows.IconComponent.yml", "OpenTK.Platform.Native.Windows.IconComponent.Logger": "OpenTK.Platform.Native.Windows.IconComponent.yml", "OpenTK.Platform.Native.Windows.IconComponent.Name": "OpenTK.Platform.Native.Windows.IconComponent.yml", "OpenTK.Platform.Native.Windows.IconComponent.Provides": "OpenTK.Platform.Native.Windows.IconComponent.yml", "OpenTK.Platform.Native.Windows.JoystickComponent": "OpenTK.Platform.Native.Windows.JoystickComponent.yml", - "OpenTK.Platform.Native.Windows.JoystickComponent.Close(OpenTK.Core.Platform.JoystickHandle)": "OpenTK.Platform.Native.Windows.JoystickComponent.yml", - "OpenTK.Platform.Native.Windows.JoystickComponent.GetAxis(OpenTK.Core.Platform.JoystickHandle,OpenTK.Core.Platform.JoystickAxis)": "OpenTK.Platform.Native.Windows.JoystickComponent.yml", - "OpenTK.Platform.Native.Windows.JoystickComponent.GetButton(OpenTK.Core.Platform.JoystickHandle,OpenTK.Core.Platform.JoystickButton)": "OpenTK.Platform.Native.Windows.JoystickComponent.yml", - "OpenTK.Platform.Native.Windows.JoystickComponent.GetGuid(OpenTK.Core.Platform.JoystickHandle)": "OpenTK.Platform.Native.Windows.JoystickComponent.yml", - "OpenTK.Platform.Native.Windows.JoystickComponent.GetName(OpenTK.Core.Platform.JoystickHandle)": "OpenTK.Platform.Native.Windows.JoystickComponent.yml", - "OpenTK.Platform.Native.Windows.JoystickComponent.GetNumberOfAxes(OpenTK.Core.Platform.JoystickHandle)": "OpenTK.Platform.Native.Windows.JoystickComponent.yml", - "OpenTK.Platform.Native.Windows.JoystickComponent.GetNumberOfButtons(OpenTK.Core.Platform.JoystickHandle)": "OpenTK.Platform.Native.Windows.JoystickComponent.yml", - "OpenTK.Platform.Native.Windows.JoystickComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions)": "OpenTK.Platform.Native.Windows.JoystickComponent.yml", + "OpenTK.Platform.Native.Windows.JoystickComponent.Close(OpenTK.Platform.JoystickHandle)": "OpenTK.Platform.Native.Windows.JoystickComponent.yml", + "OpenTK.Platform.Native.Windows.JoystickComponent.GetAxis(OpenTK.Platform.JoystickHandle,OpenTK.Platform.JoystickAxis)": "OpenTK.Platform.Native.Windows.JoystickComponent.yml", + "OpenTK.Platform.Native.Windows.JoystickComponent.GetButton(OpenTK.Platform.JoystickHandle,OpenTK.Platform.JoystickButton)": "OpenTK.Platform.Native.Windows.JoystickComponent.yml", + "OpenTK.Platform.Native.Windows.JoystickComponent.GetGuid(OpenTK.Platform.JoystickHandle)": "OpenTK.Platform.Native.Windows.JoystickComponent.yml", + "OpenTK.Platform.Native.Windows.JoystickComponent.GetName(OpenTK.Platform.JoystickHandle)": "OpenTK.Platform.Native.Windows.JoystickComponent.yml", + "OpenTK.Platform.Native.Windows.JoystickComponent.GetNumberOfAxes(OpenTK.Platform.JoystickHandle)": "OpenTK.Platform.Native.Windows.JoystickComponent.yml", + "OpenTK.Platform.Native.Windows.JoystickComponent.GetNumberOfButtons(OpenTK.Platform.JoystickHandle)": "OpenTK.Platform.Native.Windows.JoystickComponent.yml", + "OpenTK.Platform.Native.Windows.JoystickComponent.Initialize(OpenTK.Platform.ToolkitOptions)": "OpenTK.Platform.Native.Windows.JoystickComponent.yml", "OpenTK.Platform.Native.Windows.JoystickComponent.IsConnected(System.Int32)": "OpenTK.Platform.Native.Windows.JoystickComponent.yml", "OpenTK.Platform.Native.Windows.JoystickComponent.LeftDeadzone": "OpenTK.Platform.Native.Windows.JoystickComponent.yml", "OpenTK.Platform.Native.Windows.JoystickComponent.Logger": "OpenTK.Platform.Native.Windows.JoystickComponent.yml", @@ -8797,57 +8628,60 @@ "OpenTK.Platform.Native.Windows.JoystickComponent.Open(System.Int32)": "OpenTK.Platform.Native.Windows.JoystickComponent.yml", "OpenTK.Platform.Native.Windows.JoystickComponent.Provides": "OpenTK.Platform.Native.Windows.JoystickComponent.yml", "OpenTK.Platform.Native.Windows.JoystickComponent.RightDeadzone": "OpenTK.Platform.Native.Windows.JoystickComponent.yml", - "OpenTK.Platform.Native.Windows.JoystickComponent.SetVibration(OpenTK.Core.Platform.JoystickHandle,System.Single,System.Single)": "OpenTK.Platform.Native.Windows.JoystickComponent.yml", - "OpenTK.Platform.Native.Windows.JoystickComponent.SupportsForceFeedback(OpenTK.Core.Platform.JoystickHandle)": "OpenTK.Platform.Native.Windows.JoystickComponent.yml", - "OpenTK.Platform.Native.Windows.JoystickComponent.SupportsVibration(OpenTK.Core.Platform.JoystickHandle)": "OpenTK.Platform.Native.Windows.JoystickComponent.yml", + "OpenTK.Platform.Native.Windows.JoystickComponent.SetVibration(OpenTK.Platform.JoystickHandle,System.Single,System.Single)": "OpenTK.Platform.Native.Windows.JoystickComponent.yml", + "OpenTK.Platform.Native.Windows.JoystickComponent.SupportsForceFeedback(OpenTK.Platform.JoystickHandle)": "OpenTK.Platform.Native.Windows.JoystickComponent.yml", + "OpenTK.Platform.Native.Windows.JoystickComponent.SupportsVibration(OpenTK.Platform.JoystickHandle)": "OpenTK.Platform.Native.Windows.JoystickComponent.yml", "OpenTK.Platform.Native.Windows.JoystickComponent.TriggerThreshold": "OpenTK.Platform.Native.Windows.JoystickComponent.yml", - "OpenTK.Platform.Native.Windows.JoystickComponent.TryGetBatteryInfo(OpenTK.Core.Platform.JoystickHandle,OpenTK.Core.Platform.GamepadBatteryInfo@)": "OpenTK.Platform.Native.Windows.JoystickComponent.yml", + "OpenTK.Platform.Native.Windows.JoystickComponent.TryGetBatteryInfo(OpenTK.Platform.JoystickHandle,OpenTK.Platform.GamepadBatteryInfo@)": "OpenTK.Platform.Native.Windows.JoystickComponent.yml", "OpenTK.Platform.Native.Windows.KeyboardComponent": "OpenTK.Platform.Native.Windows.KeyboardComponent.yml", - "OpenTK.Platform.Native.Windows.KeyboardComponent.BeginIme(OpenTK.Core.Platform.WindowHandle)": "OpenTK.Platform.Native.Windows.KeyboardComponent.yml", - "OpenTK.Platform.Native.Windows.KeyboardComponent.EndIme(OpenTK.Core.Platform.WindowHandle)": "OpenTK.Platform.Native.Windows.KeyboardComponent.yml", - "OpenTK.Platform.Native.Windows.KeyboardComponent.GetActiveKeyboardLayout(OpenTK.Core.Platform.WindowHandle)": "OpenTK.Platform.Native.Windows.KeyboardComponent.yml", + "OpenTK.Platform.Native.Windows.KeyboardComponent.BeginIme(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.Native.Windows.KeyboardComponent.yml", + "OpenTK.Platform.Native.Windows.KeyboardComponent.EndIme(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.Native.Windows.KeyboardComponent.yml", + "OpenTK.Platform.Native.Windows.KeyboardComponent.GetActiveKeyboardLayout(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.Native.Windows.KeyboardComponent.yml", "OpenTK.Platform.Native.Windows.KeyboardComponent.GetAvailableKeyboardLayouts": "OpenTK.Platform.Native.Windows.KeyboardComponent.yml", - "OpenTK.Platform.Native.Windows.KeyboardComponent.GetKeyFromScancode(OpenTK.Core.Platform.Scancode)": "OpenTK.Platform.Native.Windows.KeyboardComponent.yml", + "OpenTK.Platform.Native.Windows.KeyboardComponent.GetKeyFromScancode(OpenTK.Platform.Scancode)": "OpenTK.Platform.Native.Windows.KeyboardComponent.yml", "OpenTK.Platform.Native.Windows.KeyboardComponent.GetKeyboardModifiers": "OpenTK.Platform.Native.Windows.KeyboardComponent.yml", "OpenTK.Platform.Native.Windows.KeyboardComponent.GetKeyboardState(System.Boolean[])": "OpenTK.Platform.Native.Windows.KeyboardComponent.yml", - "OpenTK.Platform.Native.Windows.KeyboardComponent.GetScancodeFromKey(OpenTK.Core.Platform.Key)": "OpenTK.Platform.Native.Windows.KeyboardComponent.yml", - "OpenTK.Platform.Native.Windows.KeyboardComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions)": "OpenTK.Platform.Native.Windows.KeyboardComponent.yml", + "OpenTK.Platform.Native.Windows.KeyboardComponent.GetScancodeFromKey(OpenTK.Platform.Key)": "OpenTK.Platform.Native.Windows.KeyboardComponent.yml", + "OpenTK.Platform.Native.Windows.KeyboardComponent.Initialize(OpenTK.Platform.ToolkitOptions)": "OpenTK.Platform.Native.Windows.KeyboardComponent.yml", "OpenTK.Platform.Native.Windows.KeyboardComponent.Logger": "OpenTK.Platform.Native.Windows.KeyboardComponent.yml", "OpenTK.Platform.Native.Windows.KeyboardComponent.Name": "OpenTK.Platform.Native.Windows.KeyboardComponent.yml", "OpenTK.Platform.Native.Windows.KeyboardComponent.Provides": "OpenTK.Platform.Native.Windows.KeyboardComponent.yml", - "OpenTK.Platform.Native.Windows.KeyboardComponent.SetImeRectangle(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32)": "OpenTK.Platform.Native.Windows.KeyboardComponent.yml", + "OpenTK.Platform.Native.Windows.KeyboardComponent.SetImeRectangle(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32)": "OpenTK.Platform.Native.Windows.KeyboardComponent.yml", "OpenTK.Platform.Native.Windows.KeyboardComponent.SupportsIme": "OpenTK.Platform.Native.Windows.KeyboardComponent.yml", "OpenTK.Platform.Native.Windows.KeyboardComponent.SupportsLayouts": "OpenTK.Platform.Native.Windows.KeyboardComponent.yml", "OpenTK.Platform.Native.Windows.MouseComponent": "OpenTK.Platform.Native.Windows.MouseComponent.yml", "OpenTK.Platform.Native.Windows.MouseComponent.CanSetMousePosition": "OpenTK.Platform.Native.Windows.MouseComponent.yml", - "OpenTK.Platform.Native.Windows.MouseComponent.GetMouseState(OpenTK.Core.Platform.MouseState@)": "OpenTK.Platform.Native.Windows.MouseComponent.yml", + "OpenTK.Platform.Native.Windows.MouseComponent.EnableRawMouseMotion(OpenTK.Platform.WindowHandle,System.Boolean)": "OpenTK.Platform.Native.Windows.MouseComponent.yml", + "OpenTK.Platform.Native.Windows.MouseComponent.GetMouseState(OpenTK.Platform.MouseState@)": "OpenTK.Platform.Native.Windows.MouseComponent.yml", "OpenTK.Platform.Native.Windows.MouseComponent.GetPosition(System.Int32@,System.Int32@)": "OpenTK.Platform.Native.Windows.MouseComponent.yml", - "OpenTK.Platform.Native.Windows.MouseComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions)": "OpenTK.Platform.Native.Windows.MouseComponent.yml", + "OpenTK.Platform.Native.Windows.MouseComponent.Initialize(OpenTK.Platform.ToolkitOptions)": "OpenTK.Platform.Native.Windows.MouseComponent.yml", + "OpenTK.Platform.Native.Windows.MouseComponent.IsRawMouseMotionEnabled(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.Native.Windows.MouseComponent.yml", "OpenTK.Platform.Native.Windows.MouseComponent.Logger": "OpenTK.Platform.Native.Windows.MouseComponent.yml", "OpenTK.Platform.Native.Windows.MouseComponent.Name": "OpenTK.Platform.Native.Windows.MouseComponent.yml", "OpenTK.Platform.Native.Windows.MouseComponent.Provides": "OpenTK.Platform.Native.Windows.MouseComponent.yml", "OpenTK.Platform.Native.Windows.MouseComponent.SetPosition(System.Int32,System.Int32)": "OpenTK.Platform.Native.Windows.MouseComponent.yml", + "OpenTK.Platform.Native.Windows.MouseComponent.SupportsRawMouseMotion": "OpenTK.Platform.Native.Windows.MouseComponent.yml", "OpenTK.Platform.Native.Windows.OpenGLComponent": "OpenTK.Platform.Native.Windows.OpenGLComponent.yml", "OpenTK.Platform.Native.Windows.OpenGLComponent.CanCreateFromSurface": "OpenTK.Platform.Native.Windows.OpenGLComponent.yml", "OpenTK.Platform.Native.Windows.OpenGLComponent.CanCreateFromWindow": "OpenTK.Platform.Native.Windows.OpenGLComponent.yml", "OpenTK.Platform.Native.Windows.OpenGLComponent.CanShareContexts": "OpenTK.Platform.Native.Windows.OpenGLComponent.yml", "OpenTK.Platform.Native.Windows.OpenGLComponent.CreateFromSurface": "OpenTK.Platform.Native.Windows.OpenGLComponent.yml", - "OpenTK.Platform.Native.Windows.OpenGLComponent.CreateFromWindow(OpenTK.Core.Platform.WindowHandle)": "OpenTK.Platform.Native.Windows.OpenGLComponent.yml", - "OpenTK.Platform.Native.Windows.OpenGLComponent.DestroyContext(OpenTK.Core.Platform.OpenGLContextHandle)": "OpenTK.Platform.Native.Windows.OpenGLComponent.yml", - "OpenTK.Platform.Native.Windows.OpenGLComponent.GetBindingsContext(OpenTK.Core.Platform.OpenGLContextHandle)": "OpenTK.Platform.Native.Windows.OpenGLComponent.yml", + "OpenTK.Platform.Native.Windows.OpenGLComponent.CreateFromWindow(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.Native.Windows.OpenGLComponent.yml", + "OpenTK.Platform.Native.Windows.OpenGLComponent.DestroyContext(OpenTK.Platform.OpenGLContextHandle)": "OpenTK.Platform.Native.Windows.OpenGLComponent.yml", + "OpenTK.Platform.Native.Windows.OpenGLComponent.GetBindingsContext(OpenTK.Platform.OpenGLContextHandle)": "OpenTK.Platform.Native.Windows.OpenGLComponent.yml", "OpenTK.Platform.Native.Windows.OpenGLComponent.GetCurrentContext": "OpenTK.Platform.Native.Windows.OpenGLComponent.yml", - "OpenTK.Platform.Native.Windows.OpenGLComponent.GetHGLRC(OpenTK.Core.Platform.OpenGLContextHandle)": "OpenTK.Platform.Native.Windows.OpenGLComponent.yml", - "OpenTK.Platform.Native.Windows.OpenGLComponent.GetProcedureAddress(OpenTK.Core.Platform.OpenGLContextHandle,System.String)": "OpenTK.Platform.Native.Windows.OpenGLComponent.yml", - "OpenTK.Platform.Native.Windows.OpenGLComponent.GetSharedContext(OpenTK.Core.Platform.OpenGLContextHandle)": "OpenTK.Platform.Native.Windows.OpenGLComponent.yml", + "OpenTK.Platform.Native.Windows.OpenGLComponent.GetHGLRC(OpenTK.Platform.OpenGLContextHandle)": "OpenTK.Platform.Native.Windows.OpenGLComponent.yml", + "OpenTK.Platform.Native.Windows.OpenGLComponent.GetProcedureAddress(OpenTK.Platform.OpenGLContextHandle,System.String)": "OpenTK.Platform.Native.Windows.OpenGLComponent.yml", + "OpenTK.Platform.Native.Windows.OpenGLComponent.GetSharedContext(OpenTK.Platform.OpenGLContextHandle)": "OpenTK.Platform.Native.Windows.OpenGLComponent.yml", "OpenTK.Platform.Native.Windows.OpenGLComponent.GetSwapInterval": "OpenTK.Platform.Native.Windows.OpenGLComponent.yml", - "OpenTK.Platform.Native.Windows.OpenGLComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions)": "OpenTK.Platform.Native.Windows.OpenGLComponent.yml", + "OpenTK.Platform.Native.Windows.OpenGLComponent.Initialize(OpenTK.Platform.ToolkitOptions)": "OpenTK.Platform.Native.Windows.OpenGLComponent.yml", "OpenTK.Platform.Native.Windows.OpenGLComponent.Logger": "OpenTK.Platform.Native.Windows.OpenGLComponent.yml", "OpenTK.Platform.Native.Windows.OpenGLComponent.Name": "OpenTK.Platform.Native.Windows.OpenGLComponent.yml", "OpenTK.Platform.Native.Windows.OpenGLComponent.Provides": "OpenTK.Platform.Native.Windows.OpenGLComponent.yml", - "OpenTK.Platform.Native.Windows.OpenGLComponent.SetCurrentContext(OpenTK.Core.Platform.OpenGLContextHandle)": "OpenTK.Platform.Native.Windows.OpenGLComponent.yml", + "OpenTK.Platform.Native.Windows.OpenGLComponent.SetCurrentContext(OpenTK.Platform.OpenGLContextHandle)": "OpenTK.Platform.Native.Windows.OpenGLComponent.yml", "OpenTK.Platform.Native.Windows.OpenGLComponent.SetSwapInterval(System.Int32)": "OpenTK.Platform.Native.Windows.OpenGLComponent.yml", - "OpenTK.Platform.Native.Windows.OpenGLComponent.SwapBuffers(OpenTK.Core.Platform.OpenGLContextHandle)": "OpenTK.Platform.Native.Windows.OpenGLComponent.yml", - "OpenTK.Platform.Native.Windows.OpenGLComponent.UseDwmFlushIfApplicable(OpenTK.Core.Platform.OpenGLContextHandle,System.Boolean)": "OpenTK.Platform.Native.Windows.OpenGLComponent.yml", + "OpenTK.Platform.Native.Windows.OpenGLComponent.SwapBuffers(OpenTK.Platform.OpenGLContextHandle)": "OpenTK.Platform.Native.Windows.OpenGLComponent.yml", + "OpenTK.Platform.Native.Windows.OpenGLComponent.UseDwmFlushIfApplicable(OpenTK.Platform.OpenGLContextHandle,System.Boolean)": "OpenTK.Platform.Native.Windows.OpenGLComponent.yml", "OpenTK.Platform.Native.Windows.ShellComponent": "OpenTK.Platform.Native.Windows.ShellComponent.yml", "OpenTK.Platform.Native.Windows.ShellComponent.AllowScreenSaver(System.Boolean)": "OpenTK.Platform.Native.Windows.ShellComponent.yml", "OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce": "OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce.yml", @@ -8855,75 +8689,75 @@ "OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce.DoNotRound": "OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce.yml", "OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce.Round": "OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce.yml", "OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce.RoundSmall": "OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce.yml", - "OpenTK.Platform.Native.Windows.ShellComponent.GetBatteryInfo(OpenTK.Core.Platform.BatteryInfo@)": "OpenTK.Platform.Native.Windows.ShellComponent.yml", + "OpenTK.Platform.Native.Windows.ShellComponent.GetBatteryInfo(OpenTK.Platform.BatteryInfo@)": "OpenTK.Platform.Native.Windows.ShellComponent.yml", "OpenTK.Platform.Native.Windows.ShellComponent.GetPreferredTheme": "OpenTK.Platform.Native.Windows.ShellComponent.yml", "OpenTK.Platform.Native.Windows.ShellComponent.GetSystemMemoryInformation": "OpenTK.Platform.Native.Windows.ShellComponent.yml", - "OpenTK.Platform.Native.Windows.ShellComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions)": "OpenTK.Platform.Native.Windows.ShellComponent.yml", + "OpenTK.Platform.Native.Windows.ShellComponent.Initialize(OpenTK.Platform.ToolkitOptions)": "OpenTK.Platform.Native.Windows.ShellComponent.yml", "OpenTK.Platform.Native.Windows.ShellComponent.Logger": "OpenTK.Platform.Native.Windows.ShellComponent.yml", "OpenTK.Platform.Native.Windows.ShellComponent.Name": "OpenTK.Platform.Native.Windows.ShellComponent.yml", "OpenTK.Platform.Native.Windows.ShellComponent.Provides": "OpenTK.Platform.Native.Windows.ShellComponent.yml", - "OpenTK.Platform.Native.Windows.ShellComponent.SetCaptionColor(OpenTK.Core.Platform.WindowHandle,OpenTK.Mathematics.Color3{OpenTK.Mathematics.Rgb})": "OpenTK.Platform.Native.Windows.ShellComponent.yml", - "OpenTK.Platform.Native.Windows.ShellComponent.SetCaptionTextColor(OpenTK.Core.Platform.WindowHandle,OpenTK.Mathematics.Color3{OpenTK.Mathematics.Rgb})": "OpenTK.Platform.Native.Windows.ShellComponent.yml", - "OpenTK.Platform.Native.Windows.ShellComponent.SetImmersiveDarkMode(OpenTK.Core.Platform.WindowHandle,System.Boolean)": "OpenTK.Platform.Native.Windows.ShellComponent.yml", - "OpenTK.Platform.Native.Windows.ShellComponent.SetWindowCornerPreference(OpenTK.Core.Platform.WindowHandle,OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce)": "OpenTK.Platform.Native.Windows.ShellComponent.yml", + "OpenTK.Platform.Native.Windows.ShellComponent.SetCaptionColor(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Color3{OpenTK.Mathematics.Rgb})": "OpenTK.Platform.Native.Windows.ShellComponent.yml", + "OpenTK.Platform.Native.Windows.ShellComponent.SetCaptionTextColor(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Color3{OpenTK.Mathematics.Rgb})": "OpenTK.Platform.Native.Windows.ShellComponent.yml", + "OpenTK.Platform.Native.Windows.ShellComponent.SetImmersiveDarkMode(OpenTK.Platform.WindowHandle,System.Boolean)": "OpenTK.Platform.Native.Windows.ShellComponent.yml", + "OpenTK.Platform.Native.Windows.ShellComponent.SetWindowCornerPreference(OpenTK.Platform.WindowHandle,OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce)": "OpenTK.Platform.Native.Windows.ShellComponent.yml", "OpenTK.Platform.Native.Windows.WindowComponent": "OpenTK.Platform.Native.Windows.WindowComponent.yml", "OpenTK.Platform.Native.Windows.WindowComponent.CLASS_NAME": "OpenTK.Platform.Native.Windows.WindowComponent.yml", "OpenTK.Platform.Native.Windows.WindowComponent.CanCaptureCursor": "OpenTK.Platform.Native.Windows.WindowComponent.yml", "OpenTK.Platform.Native.Windows.WindowComponent.CanGetDisplay": "OpenTK.Platform.Native.Windows.WindowComponent.yml", "OpenTK.Platform.Native.Windows.WindowComponent.CanSetCursor": "OpenTK.Platform.Native.Windows.WindowComponent.yml", "OpenTK.Platform.Native.Windows.WindowComponent.CanSetIcon": "OpenTK.Platform.Native.Windows.WindowComponent.yml", - "OpenTK.Platform.Native.Windows.WindowComponent.ClientToScreen(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", - "OpenTK.Platform.Native.Windows.WindowComponent.Create(OpenTK.Core.Platform.GraphicsApiHints)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", - "OpenTK.Platform.Native.Windows.WindowComponent.Destroy(OpenTK.Core.Platform.WindowHandle)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", - "OpenTK.Platform.Native.Windows.WindowComponent.FocusWindow(OpenTK.Core.Platform.WindowHandle)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", - "OpenTK.Platform.Native.Windows.WindowComponent.GetBorderStyle(OpenTK.Core.Platform.WindowHandle)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", - "OpenTK.Platform.Native.Windows.WindowComponent.GetBounds(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", - "OpenTK.Platform.Native.Windows.WindowComponent.GetClientBounds(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", - "OpenTK.Platform.Native.Windows.WindowComponent.GetClientPosition(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", - "OpenTK.Platform.Native.Windows.WindowComponent.GetClientSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", - "OpenTK.Platform.Native.Windows.WindowComponent.GetCursorCaptureMode(OpenTK.Core.Platform.WindowHandle)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", - "OpenTK.Platform.Native.Windows.WindowComponent.GetDisplay(OpenTK.Core.Platform.WindowHandle)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", - "OpenTK.Platform.Native.Windows.WindowComponent.GetFramebufferSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", - "OpenTK.Platform.Native.Windows.WindowComponent.GetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle@)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", - "OpenTK.Platform.Native.Windows.WindowComponent.GetHWND(OpenTK.Core.Platform.WindowHandle)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", - "OpenTK.Platform.Native.Windows.WindowComponent.GetIcon(OpenTK.Core.Platform.WindowHandle)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", - "OpenTK.Platform.Native.Windows.WindowComponent.GetMaxClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", - "OpenTK.Platform.Native.Windows.WindowComponent.GetMinClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", - "OpenTK.Platform.Native.Windows.WindowComponent.GetMode(OpenTK.Core.Platform.WindowHandle)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", - "OpenTK.Platform.Native.Windows.WindowComponent.GetPosition(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", - "OpenTK.Platform.Native.Windows.WindowComponent.GetScaleFactor(OpenTK.Core.Platform.WindowHandle,System.Single@,System.Single@)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", - "OpenTK.Platform.Native.Windows.WindowComponent.GetSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", - "OpenTK.Platform.Native.Windows.WindowComponent.GetTitle(OpenTK.Core.Platform.WindowHandle)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", + "OpenTK.Platform.Native.Windows.WindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", + "OpenTK.Platform.Native.Windows.WindowComponent.Create(OpenTK.Platform.GraphicsApiHints)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", + "OpenTK.Platform.Native.Windows.WindowComponent.Destroy(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", + "OpenTK.Platform.Native.Windows.WindowComponent.FocusWindow(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", + "OpenTK.Platform.Native.Windows.WindowComponent.GetBorderStyle(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", + "OpenTK.Platform.Native.Windows.WindowComponent.GetBounds(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", + "OpenTK.Platform.Native.Windows.WindowComponent.GetClientBounds(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", + "OpenTK.Platform.Native.Windows.WindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", + "OpenTK.Platform.Native.Windows.WindowComponent.GetClientSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", + "OpenTK.Platform.Native.Windows.WindowComponent.GetCursorCaptureMode(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", + "OpenTK.Platform.Native.Windows.WindowComponent.GetDisplay(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", + "OpenTK.Platform.Native.Windows.WindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", + "OpenTK.Platform.Native.Windows.WindowComponent.GetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle@)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", + "OpenTK.Platform.Native.Windows.WindowComponent.GetHWND(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", + "OpenTK.Platform.Native.Windows.WindowComponent.GetIcon(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", + "OpenTK.Platform.Native.Windows.WindowComponent.GetMaxClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", + "OpenTK.Platform.Native.Windows.WindowComponent.GetMinClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", + "OpenTK.Platform.Native.Windows.WindowComponent.GetMode(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", + "OpenTK.Platform.Native.Windows.WindowComponent.GetPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", + "OpenTK.Platform.Native.Windows.WindowComponent.GetScaleFactor(OpenTK.Platform.WindowHandle,System.Single@,System.Single@)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", + "OpenTK.Platform.Native.Windows.WindowComponent.GetSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", + "OpenTK.Platform.Native.Windows.WindowComponent.GetTitle(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", "OpenTK.Platform.Native.Windows.WindowComponent.HInstance": "OpenTK.Platform.Native.Windows.WindowComponent.yml", "OpenTK.Platform.Native.Windows.WindowComponent.HelperHWnd": "OpenTK.Platform.Native.Windows.WindowComponent.yml", - "OpenTK.Platform.Native.Windows.WindowComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", - "OpenTK.Platform.Native.Windows.WindowComponent.IsAlwaysOnTop(OpenTK.Core.Platform.WindowHandle)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", - "OpenTK.Platform.Native.Windows.WindowComponent.IsFocused(OpenTK.Core.Platform.WindowHandle)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", - "OpenTK.Platform.Native.Windows.WindowComponent.IsWindowDestroyed(OpenTK.Core.Platform.WindowHandle)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", + "OpenTK.Platform.Native.Windows.WindowComponent.Initialize(OpenTK.Platform.ToolkitOptions)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", + "OpenTK.Platform.Native.Windows.WindowComponent.IsAlwaysOnTop(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", + "OpenTK.Platform.Native.Windows.WindowComponent.IsFocused(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", + "OpenTK.Platform.Native.Windows.WindowComponent.IsWindowDestroyed(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", "OpenTK.Platform.Native.Windows.WindowComponent.Logger": "OpenTK.Platform.Native.Windows.WindowComponent.yml", "OpenTK.Platform.Native.Windows.WindowComponent.Name": "OpenTK.Platform.Native.Windows.WindowComponent.yml", "OpenTK.Platform.Native.Windows.WindowComponent.ProcessEvents(System.Boolean)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", "OpenTK.Platform.Native.Windows.WindowComponent.Provides": "OpenTK.Platform.Native.Windows.WindowComponent.yml", - "OpenTK.Platform.Native.Windows.WindowComponent.RequestAttention(OpenTK.Core.Platform.WindowHandle)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", - "OpenTK.Platform.Native.Windows.WindowComponent.ScreenToClient(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", - "OpenTK.Platform.Native.Windows.WindowComponent.SetAlwaysOnTop(OpenTK.Core.Platform.WindowHandle,System.Boolean)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", - "OpenTK.Platform.Native.Windows.WindowComponent.SetBorderStyle(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.WindowBorderStyle)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", - "OpenTK.Platform.Native.Windows.WindowComponent.SetBounds(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", - "OpenTK.Platform.Native.Windows.WindowComponent.SetClientBounds(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", - "OpenTK.Platform.Native.Windows.WindowComponent.SetClientPosition(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", - "OpenTK.Platform.Native.Windows.WindowComponent.SetClientSize(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", - "OpenTK.Platform.Native.Windows.WindowComponent.SetCursor(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.CursorHandle)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", - "OpenTK.Platform.Native.Windows.WindowComponent.SetCursorCaptureMode(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.CursorCaptureMode)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", - "OpenTK.Platform.Native.Windows.WindowComponent.SetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", - "OpenTK.Platform.Native.Windows.WindowComponent.SetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle,OpenTK.Core.Platform.VideoMode)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", - "OpenTK.Platform.Native.Windows.WindowComponent.SetHitTestCallback(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.HitTest)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", - "OpenTK.Platform.Native.Windows.WindowComponent.SetIcon(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.IconHandle)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", - "OpenTK.Platform.Native.Windows.WindowComponent.SetMaxClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32})": "OpenTK.Platform.Native.Windows.WindowComponent.yml", - "OpenTK.Platform.Native.Windows.WindowComponent.SetMinClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32})": "OpenTK.Platform.Native.Windows.WindowComponent.yml", - "OpenTK.Platform.Native.Windows.WindowComponent.SetMode(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.WindowMode)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", - "OpenTK.Platform.Native.Windows.WindowComponent.SetPosition(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", - "OpenTK.Platform.Native.Windows.WindowComponent.SetSize(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", - "OpenTK.Platform.Native.Windows.WindowComponent.SetTitle(OpenTK.Core.Platform.WindowHandle,System.String)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", + "OpenTK.Platform.Native.Windows.WindowComponent.RequestAttention(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", + "OpenTK.Platform.Native.Windows.WindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", + "OpenTK.Platform.Native.Windows.WindowComponent.SetAlwaysOnTop(OpenTK.Platform.WindowHandle,System.Boolean)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", + "OpenTK.Platform.Native.Windows.WindowComponent.SetBorderStyle(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowBorderStyle)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", + "OpenTK.Platform.Native.Windows.WindowComponent.SetBounds(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", + "OpenTK.Platform.Native.Windows.WindowComponent.SetClientBounds(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", + "OpenTK.Platform.Native.Windows.WindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", + "OpenTK.Platform.Native.Windows.WindowComponent.SetClientSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", + "OpenTK.Platform.Native.Windows.WindowComponent.SetCursor(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorHandle)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", + "OpenTK.Platform.Native.Windows.WindowComponent.SetCursorCaptureMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorCaptureMode)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", + "OpenTK.Platform.Native.Windows.WindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", + "OpenTK.Platform.Native.Windows.WindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle,OpenTK.Platform.VideoMode)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", + "OpenTK.Platform.Native.Windows.WindowComponent.SetHitTestCallback(OpenTK.Platform.WindowHandle,OpenTK.Platform.HitTest)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", + "OpenTK.Platform.Native.Windows.WindowComponent.SetIcon(OpenTK.Platform.WindowHandle,OpenTK.Platform.IconHandle)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", + "OpenTK.Platform.Native.Windows.WindowComponent.SetMaxClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32})": "OpenTK.Platform.Native.Windows.WindowComponent.yml", + "OpenTK.Platform.Native.Windows.WindowComponent.SetMinClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32})": "OpenTK.Platform.Native.Windows.WindowComponent.yml", + "OpenTK.Platform.Native.Windows.WindowComponent.SetMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowMode)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", + "OpenTK.Platform.Native.Windows.WindowComponent.SetPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", + "OpenTK.Platform.Native.Windows.WindowComponent.SetSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", + "OpenTK.Platform.Native.Windows.WindowComponent.SetTitle(OpenTK.Platform.WindowHandle,System.String)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", "OpenTK.Platform.Native.Windows.WindowComponent.SupportedEvents": "OpenTK.Platform.Native.Windows.WindowComponent.yml", "OpenTK.Platform.Native.Windows.WindowComponent.SupportedModes": "OpenTK.Platform.Native.Windows.WindowComponent.yml", "OpenTK.Platform.Native.Windows.WindowComponent.SupportedStyles": "OpenTK.Platform.Native.Windows.WindowComponent.yml", @@ -8934,7 +8768,7 @@ "OpenTK.Platform.Native.X11.X11ClipboardComponent.GetClipboardFiles": "OpenTK.Platform.Native.X11.X11ClipboardComponent.yml", "OpenTK.Platform.Native.X11.X11ClipboardComponent.GetClipboardFormat": "OpenTK.Platform.Native.X11.X11ClipboardComponent.yml", "OpenTK.Platform.Native.X11.X11ClipboardComponent.GetClipboardText": "OpenTK.Platform.Native.X11.X11ClipboardComponent.yml", - "OpenTK.Platform.Native.X11.X11ClipboardComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions)": "OpenTK.Platform.Native.X11.X11ClipboardComponent.yml", + "OpenTK.Platform.Native.X11.X11ClipboardComponent.Initialize(OpenTK.Platform.ToolkitOptions)": "OpenTK.Platform.Native.X11.X11ClipboardComponent.yml", "OpenTK.Platform.Native.X11.X11ClipboardComponent.Logger": "OpenTK.Platform.Native.X11.X11ClipboardComponent.yml", "OpenTK.Platform.Native.X11.X11ClipboardComponent.Name": "OpenTK.Platform.Native.X11.X11ClipboardComponent.yml", "OpenTK.Platform.Native.X11.X11ClipboardComponent.Provides": "OpenTK.Platform.Native.X11.X11ClipboardComponent.yml", @@ -8943,33 +8777,42 @@ "OpenTK.Platform.Native.X11.X11CursorComponent": "OpenTK.Platform.Native.X11.X11CursorComponent.yml", "OpenTK.Platform.Native.X11.X11CursorComponent.CanInspectSystemCursors": "OpenTK.Platform.Native.X11.X11CursorComponent.yml", "OpenTK.Platform.Native.X11.X11CursorComponent.CanLoadSystemCursors": "OpenTK.Platform.Native.X11.X11CursorComponent.yml", - "OpenTK.Platform.Native.X11.X11CursorComponent.Create(OpenTK.Core.Platform.SystemCursorType)": "OpenTK.Platform.Native.X11.X11CursorComponent.yml", + "OpenTK.Platform.Native.X11.X11CursorComponent.Create(OpenTK.Platform.SystemCursorType)": "OpenTK.Platform.Native.X11.X11CursorComponent.yml", "OpenTK.Platform.Native.X11.X11CursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.Int32,System.Int32)": "OpenTK.Platform.Native.X11.X11CursorComponent.yml", "OpenTK.Platform.Native.X11.X11CursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.ReadOnlySpan{System.Byte},System.Int32,System.Int32)": "OpenTK.Platform.Native.X11.X11CursorComponent.yml", - "OpenTK.Platform.Native.X11.X11CursorComponent.Destroy(OpenTK.Core.Platform.CursorHandle)": "OpenTK.Platform.Native.X11.X11CursorComponent.yml", - "OpenTK.Platform.Native.X11.X11CursorComponent.GetHotspot(OpenTK.Core.Platform.CursorHandle,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.X11.X11CursorComponent.yml", - "OpenTK.Platform.Native.X11.X11CursorComponent.GetSize(OpenTK.Core.Platform.CursorHandle,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.X11.X11CursorComponent.yml", - "OpenTK.Platform.Native.X11.X11CursorComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions)": "OpenTK.Platform.Native.X11.X11CursorComponent.yml", - "OpenTK.Platform.Native.X11.X11CursorComponent.IsSystemCursor(OpenTK.Core.Platform.CursorHandle)": "OpenTK.Platform.Native.X11.X11CursorComponent.yml", + "OpenTK.Platform.Native.X11.X11CursorComponent.Destroy(OpenTK.Platform.CursorHandle)": "OpenTK.Platform.Native.X11.X11CursorComponent.yml", + "OpenTK.Platform.Native.X11.X11CursorComponent.GetHotspot(OpenTK.Platform.CursorHandle,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.X11.X11CursorComponent.yml", + "OpenTK.Platform.Native.X11.X11CursorComponent.GetSize(OpenTK.Platform.CursorHandle,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.X11.X11CursorComponent.yml", + "OpenTK.Platform.Native.X11.X11CursorComponent.Initialize(OpenTK.Platform.ToolkitOptions)": "OpenTK.Platform.Native.X11.X11CursorComponent.yml", + "OpenTK.Platform.Native.X11.X11CursorComponent.IsSystemCursor(OpenTK.Platform.CursorHandle)": "OpenTK.Platform.Native.X11.X11CursorComponent.yml", "OpenTK.Platform.Native.X11.X11CursorComponent.Logger": "OpenTK.Platform.Native.X11.X11CursorComponent.yml", "OpenTK.Platform.Native.X11.X11CursorComponent.Name": "OpenTK.Platform.Native.X11.X11CursorComponent.yml", "OpenTK.Platform.Native.X11.X11CursorComponent.Provides": "OpenTK.Platform.Native.X11.X11CursorComponent.yml", + "OpenTK.Platform.Native.X11.X11DialogComponent": "OpenTK.Platform.Native.X11.X11DialogComponent.yml", + "OpenTK.Platform.Native.X11.X11DialogComponent.CanTargetFolders": "OpenTK.Platform.Native.X11.X11DialogComponent.yml", + "OpenTK.Platform.Native.X11.X11DialogComponent.Initialize(OpenTK.Platform.ToolkitOptions)": "OpenTK.Platform.Native.X11.X11DialogComponent.yml", + "OpenTK.Platform.Native.X11.X11DialogComponent.Logger": "OpenTK.Platform.Native.X11.X11DialogComponent.yml", + "OpenTK.Platform.Native.X11.X11DialogComponent.Name": "OpenTK.Platform.Native.X11.X11DialogComponent.yml", + "OpenTK.Platform.Native.X11.X11DialogComponent.Provides": "OpenTK.Platform.Native.X11.X11DialogComponent.yml", + "OpenTK.Platform.Native.X11.X11DialogComponent.ShowMessageBox(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.MessageBoxType,OpenTK.Platform.IconHandle)": "OpenTK.Platform.Native.X11.X11DialogComponent.yml", + "OpenTK.Platform.Native.X11.X11DialogComponent.ShowOpenDialog(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.DialogFileFilter[],OpenTK.Platform.OpenDialogOptions)": "OpenTK.Platform.Native.X11.X11DialogComponent.yml", + "OpenTK.Platform.Native.X11.X11DialogComponent.ShowSaveDialog(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.DialogFileFilter[],OpenTK.Platform.SaveDialogOptions)": "OpenTK.Platform.Native.X11.X11DialogComponent.yml", "OpenTK.Platform.Native.X11.X11DisplayComponent": "OpenTK.Platform.Native.X11.X11DisplayComponent.yml", "OpenTK.Platform.Native.X11.X11DisplayComponent.CanGetVirtualPosition": "OpenTK.Platform.Native.X11.X11DisplayComponent.yml", - "OpenTK.Platform.Native.X11.X11DisplayComponent.Close(OpenTK.Core.Platform.DisplayHandle)": "OpenTK.Platform.Native.X11.X11DisplayComponent.yml", + "OpenTK.Platform.Native.X11.X11DisplayComponent.Close(OpenTK.Platform.DisplayHandle)": "OpenTK.Platform.Native.X11.X11DisplayComponent.yml", "OpenTK.Platform.Native.X11.X11DisplayComponent.GetDisplayCount": "OpenTK.Platform.Native.X11.X11DisplayComponent.yml", - "OpenTK.Platform.Native.X11.X11DisplayComponent.GetDisplayScale(OpenTK.Core.Platform.DisplayHandle,System.Single@,System.Single@)": "OpenTK.Platform.Native.X11.X11DisplayComponent.yml", - "OpenTK.Platform.Native.X11.X11DisplayComponent.GetName(OpenTK.Core.Platform.DisplayHandle)": "OpenTK.Platform.Native.X11.X11DisplayComponent.yml", - "OpenTK.Platform.Native.X11.X11DisplayComponent.GetRRCrtc(OpenTK.Core.Platform.DisplayHandle)": "OpenTK.Platform.Native.X11.X11DisplayComponent.yml", - "OpenTK.Platform.Native.X11.X11DisplayComponent.GetRROutput(OpenTK.Core.Platform.DisplayHandle)": "OpenTK.Platform.Native.X11.X11DisplayComponent.yml", - "OpenTK.Platform.Native.X11.X11DisplayComponent.GetRefreshRate(OpenTK.Core.Platform.DisplayHandle,System.Single@)": "OpenTK.Platform.Native.X11.X11DisplayComponent.yml", - "OpenTK.Platform.Native.X11.X11DisplayComponent.GetResolution(OpenTK.Core.Platform.DisplayHandle,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.X11.X11DisplayComponent.yml", - "OpenTK.Platform.Native.X11.X11DisplayComponent.GetSupportedVideoModes(OpenTK.Core.Platform.DisplayHandle)": "OpenTK.Platform.Native.X11.X11DisplayComponent.yml", - "OpenTK.Platform.Native.X11.X11DisplayComponent.GetVideoMode(OpenTK.Core.Platform.DisplayHandle,OpenTK.Core.Platform.VideoMode@)": "OpenTK.Platform.Native.X11.X11DisplayComponent.yml", - "OpenTK.Platform.Native.X11.X11DisplayComponent.GetVirtualPosition(OpenTK.Core.Platform.DisplayHandle,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.X11.X11DisplayComponent.yml", - "OpenTK.Platform.Native.X11.X11DisplayComponent.GetWorkArea(OpenTK.Core.Platform.DisplayHandle,OpenTK.Mathematics.Box2i@)": "OpenTK.Platform.Native.X11.X11DisplayComponent.yml", - "OpenTK.Platform.Native.X11.X11DisplayComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions)": "OpenTK.Platform.Native.X11.X11DisplayComponent.yml", - "OpenTK.Platform.Native.X11.X11DisplayComponent.IsPrimary(OpenTK.Core.Platform.DisplayHandle)": "OpenTK.Platform.Native.X11.X11DisplayComponent.yml", + "OpenTK.Platform.Native.X11.X11DisplayComponent.GetDisplayScale(OpenTK.Platform.DisplayHandle,System.Single@,System.Single@)": "OpenTK.Platform.Native.X11.X11DisplayComponent.yml", + "OpenTK.Platform.Native.X11.X11DisplayComponent.GetName(OpenTK.Platform.DisplayHandle)": "OpenTK.Platform.Native.X11.X11DisplayComponent.yml", + "OpenTK.Platform.Native.X11.X11DisplayComponent.GetRRCrtc(OpenTK.Platform.DisplayHandle)": "OpenTK.Platform.Native.X11.X11DisplayComponent.yml", + "OpenTK.Platform.Native.X11.X11DisplayComponent.GetRROutput(OpenTK.Platform.DisplayHandle)": "OpenTK.Platform.Native.X11.X11DisplayComponent.yml", + "OpenTK.Platform.Native.X11.X11DisplayComponent.GetRefreshRate(OpenTK.Platform.DisplayHandle,System.Single@)": "OpenTK.Platform.Native.X11.X11DisplayComponent.yml", + "OpenTK.Platform.Native.X11.X11DisplayComponent.GetResolution(OpenTK.Platform.DisplayHandle,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.X11.X11DisplayComponent.yml", + "OpenTK.Platform.Native.X11.X11DisplayComponent.GetSupportedVideoModes(OpenTK.Platform.DisplayHandle)": "OpenTK.Platform.Native.X11.X11DisplayComponent.yml", + "OpenTK.Platform.Native.X11.X11DisplayComponent.GetVideoMode(OpenTK.Platform.DisplayHandle,OpenTK.Platform.VideoMode@)": "OpenTK.Platform.Native.X11.X11DisplayComponent.yml", + "OpenTK.Platform.Native.X11.X11DisplayComponent.GetVirtualPosition(OpenTK.Platform.DisplayHandle,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.X11.X11DisplayComponent.yml", + "OpenTK.Platform.Native.X11.X11DisplayComponent.GetWorkArea(OpenTK.Platform.DisplayHandle,OpenTK.Mathematics.Box2i@)": "OpenTK.Platform.Native.X11.X11DisplayComponent.yml", + "OpenTK.Platform.Native.X11.X11DisplayComponent.Initialize(OpenTK.Platform.ToolkitOptions)": "OpenTK.Platform.Native.X11.X11DisplayComponent.yml", + "OpenTK.Platform.Native.X11.X11DisplayComponent.IsPrimary(OpenTK.Platform.DisplayHandle)": "OpenTK.Platform.Native.X11.X11DisplayComponent.yml", "OpenTK.Platform.Native.X11.X11DisplayComponent.Logger": "OpenTK.Platform.Native.X11.X11DisplayComponent.yml", "OpenTK.Platform.Native.X11.X11DisplayComponent.Name": "OpenTK.Platform.Native.X11.X11DisplayComponent.yml", "OpenTK.Platform.Native.X11.X11DisplayComponent.Open(System.Int32)": "OpenTK.Platform.Native.X11.X11DisplayComponent.yml", @@ -8977,52 +8820,55 @@ "OpenTK.Platform.Native.X11.X11DisplayComponent.Provides": "OpenTK.Platform.Native.X11.X11DisplayComponent.yml", "OpenTK.Platform.Native.X11.X11IconComponent": "OpenTK.Platform.Native.X11.X11IconComponent.yml", "OpenTK.Platform.Native.X11.X11IconComponent.CanLoadSystemIcons": "OpenTK.Platform.Native.X11.X11IconComponent.yml", - "OpenTK.Platform.Native.X11.X11IconComponent.Create(OpenTK.Core.Platform.SystemIconType)": "OpenTK.Platform.Native.X11.X11IconComponent.yml", + "OpenTK.Platform.Native.X11.X11IconComponent.Create(OpenTK.Platform.SystemIconType)": "OpenTK.Platform.Native.X11.X11IconComponent.yml", "OpenTK.Platform.Native.X11.X11IconComponent.Create(System.Int32,System.Int32,OpenTK.Platform.Native.X11.X11IconComponent.IconImage[])": "OpenTK.Platform.Native.X11.X11IconComponent.yml", "OpenTK.Platform.Native.X11.X11IconComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte})": "OpenTK.Platform.Native.X11.X11IconComponent.yml", - "OpenTK.Platform.Native.X11.X11IconComponent.Destroy(OpenTK.Core.Platform.IconHandle)": "OpenTK.Platform.Native.X11.X11IconComponent.yml", - "OpenTK.Platform.Native.X11.X11IconComponent.GetSize(OpenTK.Core.Platform.IconHandle,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.X11.X11IconComponent.yml", + "OpenTK.Platform.Native.X11.X11IconComponent.Destroy(OpenTK.Platform.IconHandle)": "OpenTK.Platform.Native.X11.X11IconComponent.yml", + "OpenTK.Platform.Native.X11.X11IconComponent.GetSize(OpenTK.Platform.IconHandle,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.X11.X11IconComponent.yml", "OpenTK.Platform.Native.X11.X11IconComponent.IconImage": "OpenTK.Platform.Native.X11.X11IconComponent.IconImage.yml", "OpenTK.Platform.Native.X11.X11IconComponent.IconImage.#ctor(System.Int32,System.Int32,System.Byte[])": "OpenTK.Platform.Native.X11.X11IconComponent.IconImage.yml", "OpenTK.Platform.Native.X11.X11IconComponent.IconImage.Data": "OpenTK.Platform.Native.X11.X11IconComponent.IconImage.yml", "OpenTK.Platform.Native.X11.X11IconComponent.IconImage.Height": "OpenTK.Platform.Native.X11.X11IconComponent.IconImage.yml", "OpenTK.Platform.Native.X11.X11IconComponent.IconImage.Width": "OpenTK.Platform.Native.X11.X11IconComponent.IconImage.yml", - "OpenTK.Platform.Native.X11.X11IconComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions)": "OpenTK.Platform.Native.X11.X11IconComponent.yml", + "OpenTK.Platform.Native.X11.X11IconComponent.Initialize(OpenTK.Platform.ToolkitOptions)": "OpenTK.Platform.Native.X11.X11IconComponent.yml", "OpenTK.Platform.Native.X11.X11IconComponent.Logger": "OpenTK.Platform.Native.X11.X11IconComponent.yml", "OpenTK.Platform.Native.X11.X11IconComponent.Name": "OpenTK.Platform.Native.X11.X11IconComponent.yml", "OpenTK.Platform.Native.X11.X11IconComponent.Provides": "OpenTK.Platform.Native.X11.X11IconComponent.yml", "OpenTK.Platform.Native.X11.X11KeyboardComponent": "OpenTK.Platform.Native.X11.X11KeyboardComponent.yml", - "OpenTK.Platform.Native.X11.X11KeyboardComponent.BeginIme(OpenTK.Core.Platform.WindowHandle)": "OpenTK.Platform.Native.X11.X11KeyboardComponent.yml", - "OpenTK.Platform.Native.X11.X11KeyboardComponent.EndIme(OpenTK.Core.Platform.WindowHandle)": "OpenTK.Platform.Native.X11.X11KeyboardComponent.yml", - "OpenTK.Platform.Native.X11.X11KeyboardComponent.GetActiveKeyboardLayout(OpenTK.Core.Platform.WindowHandle)": "OpenTK.Platform.Native.X11.X11KeyboardComponent.yml", + "OpenTK.Platform.Native.X11.X11KeyboardComponent.BeginIme(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.Native.X11.X11KeyboardComponent.yml", + "OpenTK.Platform.Native.X11.X11KeyboardComponent.EndIme(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.Native.X11.X11KeyboardComponent.yml", + "OpenTK.Platform.Native.X11.X11KeyboardComponent.GetActiveKeyboardLayout(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.Native.X11.X11KeyboardComponent.yml", "OpenTK.Platform.Native.X11.X11KeyboardComponent.GetAvailableKeyboardLayouts": "OpenTK.Platform.Native.X11.X11KeyboardComponent.yml", - "OpenTK.Platform.Native.X11.X11KeyboardComponent.GetKeyFromScancode(OpenTK.Core.Platform.Scancode)": "OpenTK.Platform.Native.X11.X11KeyboardComponent.yml", + "OpenTK.Platform.Native.X11.X11KeyboardComponent.GetKeyFromScancode(OpenTK.Platform.Scancode)": "OpenTK.Platform.Native.X11.X11KeyboardComponent.yml", "OpenTK.Platform.Native.X11.X11KeyboardComponent.GetKeyboardModifiers": "OpenTK.Platform.Native.X11.X11KeyboardComponent.yml", "OpenTK.Platform.Native.X11.X11KeyboardComponent.GetKeyboardState(System.Boolean[])": "OpenTK.Platform.Native.X11.X11KeyboardComponent.yml", - "OpenTK.Platform.Native.X11.X11KeyboardComponent.GetScancodeFromKey(OpenTK.Core.Platform.Key)": "OpenTK.Platform.Native.X11.X11KeyboardComponent.yml", - "OpenTK.Platform.Native.X11.X11KeyboardComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions)": "OpenTK.Platform.Native.X11.X11KeyboardComponent.yml", + "OpenTK.Platform.Native.X11.X11KeyboardComponent.GetScancodeFromKey(OpenTK.Platform.Key)": "OpenTK.Platform.Native.X11.X11KeyboardComponent.yml", + "OpenTK.Platform.Native.X11.X11KeyboardComponent.Initialize(OpenTK.Platform.ToolkitOptions)": "OpenTK.Platform.Native.X11.X11KeyboardComponent.yml", "OpenTK.Platform.Native.X11.X11KeyboardComponent.Logger": "OpenTK.Platform.Native.X11.X11KeyboardComponent.yml", "OpenTK.Platform.Native.X11.X11KeyboardComponent.Name": "OpenTK.Platform.Native.X11.X11KeyboardComponent.yml", "OpenTK.Platform.Native.X11.X11KeyboardComponent.Provides": "OpenTK.Platform.Native.X11.X11KeyboardComponent.yml", - "OpenTK.Platform.Native.X11.X11KeyboardComponent.SetImeRectangle(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32)": "OpenTK.Platform.Native.X11.X11KeyboardComponent.yml", + "OpenTK.Platform.Native.X11.X11KeyboardComponent.SetImeRectangle(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32)": "OpenTK.Platform.Native.X11.X11KeyboardComponent.yml", "OpenTK.Platform.Native.X11.X11KeyboardComponent.SupportsIme": "OpenTK.Platform.Native.X11.X11KeyboardComponent.yml", "OpenTK.Platform.Native.X11.X11KeyboardComponent.SupportsLayouts": "OpenTK.Platform.Native.X11.X11KeyboardComponent.yml", "OpenTK.Platform.Native.X11.X11MouseComponent": "OpenTK.Platform.Native.X11.X11MouseComponent.yml", "OpenTK.Platform.Native.X11.X11MouseComponent.CanSetMousePosition": "OpenTK.Platform.Native.X11.X11MouseComponent.yml", - "OpenTK.Platform.Native.X11.X11MouseComponent.GetMouseState(OpenTK.Core.Platform.MouseState@)": "OpenTK.Platform.Native.X11.X11MouseComponent.yml", + "OpenTK.Platform.Native.X11.X11MouseComponent.EnableRawMouseMotion(OpenTK.Platform.WindowHandle,System.Boolean)": "OpenTK.Platform.Native.X11.X11MouseComponent.yml", + "OpenTK.Platform.Native.X11.X11MouseComponent.GetMouseState(OpenTK.Platform.MouseState@)": "OpenTK.Platform.Native.X11.X11MouseComponent.yml", "OpenTK.Platform.Native.X11.X11MouseComponent.GetPosition(System.Int32@,System.Int32@)": "OpenTK.Platform.Native.X11.X11MouseComponent.yml", - "OpenTK.Platform.Native.X11.X11MouseComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions)": "OpenTK.Platform.Native.X11.X11MouseComponent.yml", + "OpenTK.Platform.Native.X11.X11MouseComponent.Initialize(OpenTK.Platform.ToolkitOptions)": "OpenTK.Platform.Native.X11.X11MouseComponent.yml", + "OpenTK.Platform.Native.X11.X11MouseComponent.IsRawMouseMotionEnabled(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.Native.X11.X11MouseComponent.yml", "OpenTK.Platform.Native.X11.X11MouseComponent.Logger": "OpenTK.Platform.Native.X11.X11MouseComponent.yml", "OpenTK.Platform.Native.X11.X11MouseComponent.Name": "OpenTK.Platform.Native.X11.X11MouseComponent.yml", "OpenTK.Platform.Native.X11.X11MouseComponent.Provides": "OpenTK.Platform.Native.X11.X11MouseComponent.yml", "OpenTK.Platform.Native.X11.X11MouseComponent.SetPosition(System.Int32,System.Int32)": "OpenTK.Platform.Native.X11.X11MouseComponent.yml", + "OpenTK.Platform.Native.X11.X11MouseComponent.SupportsRawMouseMotion": "OpenTK.Platform.Native.X11.X11MouseComponent.yml", "OpenTK.Platform.Native.X11.X11OpenGLComponent": "OpenTK.Platform.Native.X11.X11OpenGLComponent.yml", "OpenTK.Platform.Native.X11.X11OpenGLComponent.CanCreateFromSurface": "OpenTK.Platform.Native.X11.X11OpenGLComponent.yml", "OpenTK.Platform.Native.X11.X11OpenGLComponent.CanCreateFromWindow": "OpenTK.Platform.Native.X11.X11OpenGLComponent.yml", "OpenTK.Platform.Native.X11.X11OpenGLComponent.CanShareContexts": "OpenTK.Platform.Native.X11.X11OpenGLComponent.yml", "OpenTK.Platform.Native.X11.X11OpenGLComponent.CreateFromSurface": "OpenTK.Platform.Native.X11.X11OpenGLComponent.yml", - "OpenTK.Platform.Native.X11.X11OpenGLComponent.CreateFromWindow(OpenTK.Core.Platform.WindowHandle)": "OpenTK.Platform.Native.X11.X11OpenGLComponent.yml", - "OpenTK.Platform.Native.X11.X11OpenGLComponent.DestroyContext(OpenTK.Core.Platform.OpenGLContextHandle)": "OpenTK.Platform.Native.X11.X11OpenGLComponent.yml", + "OpenTK.Platform.Native.X11.X11OpenGLComponent.CreateFromWindow(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.Native.X11.X11OpenGLComponent.yml", + "OpenTK.Platform.Native.X11.X11OpenGLComponent.DestroyContext(OpenTK.Platform.OpenGLContextHandle)": "OpenTK.Platform.Native.X11.X11OpenGLComponent.yml", "OpenTK.Platform.Native.X11.X11OpenGLComponent.EXT_swap_control_GetMaxSwapInterval": "OpenTK.Platform.Native.X11.X11OpenGLComponent.yml", "OpenTK.Platform.Native.X11.X11OpenGLComponent.GLXClientExtensions": "OpenTK.Platform.Native.X11.X11OpenGLComponent.yml", "OpenTK.Platform.Native.X11.X11OpenGLComponent.GLXClientVendor": "OpenTK.Platform.Native.X11.X11OpenGLComponent.yml", @@ -9032,26 +8878,26 @@ "OpenTK.Platform.Native.X11.X11OpenGLComponent.GLXServerVendor": "OpenTK.Platform.Native.X11.X11OpenGLComponent.yml", "OpenTK.Platform.Native.X11.X11OpenGLComponent.GLXServerVersion": "OpenTK.Platform.Native.X11.X11OpenGLComponent.yml", "OpenTK.Platform.Native.X11.X11OpenGLComponent.GLXVersion": "OpenTK.Platform.Native.X11.X11OpenGLComponent.yml", - "OpenTK.Platform.Native.X11.X11OpenGLComponent.GetBindingsContext(OpenTK.Core.Platform.OpenGLContextHandle)": "OpenTK.Platform.Native.X11.X11OpenGLComponent.yml", + "OpenTK.Platform.Native.X11.X11OpenGLComponent.GetBindingsContext(OpenTK.Platform.OpenGLContextHandle)": "OpenTK.Platform.Native.X11.X11OpenGLComponent.yml", "OpenTK.Platform.Native.X11.X11OpenGLComponent.GetCurrentContext": "OpenTK.Platform.Native.X11.X11OpenGLComponent.yml", - "OpenTK.Platform.Native.X11.X11OpenGLComponent.GetGLXContext(OpenTK.Core.Platform.OpenGLContextHandle)": "OpenTK.Platform.Native.X11.X11OpenGLComponent.yml", - "OpenTK.Platform.Native.X11.X11OpenGLComponent.GetGLXWindow(OpenTK.Core.Platform.OpenGLContextHandle)": "OpenTK.Platform.Native.X11.X11OpenGLComponent.yml", - "OpenTK.Platform.Native.X11.X11OpenGLComponent.GetProcedureAddress(OpenTK.Core.Platform.OpenGLContextHandle,System.String)": "OpenTK.Platform.Native.X11.X11OpenGLComponent.yml", - "OpenTK.Platform.Native.X11.X11OpenGLComponent.GetSharedContext(OpenTK.Core.Platform.OpenGLContextHandle)": "OpenTK.Platform.Native.X11.X11OpenGLComponent.yml", + "OpenTK.Platform.Native.X11.X11OpenGLComponent.GetGLXContext(OpenTK.Platform.OpenGLContextHandle)": "OpenTK.Platform.Native.X11.X11OpenGLComponent.yml", + "OpenTK.Platform.Native.X11.X11OpenGLComponent.GetGLXWindow(OpenTK.Platform.OpenGLContextHandle)": "OpenTK.Platform.Native.X11.X11OpenGLComponent.yml", + "OpenTK.Platform.Native.X11.X11OpenGLComponent.GetProcedureAddress(OpenTK.Platform.OpenGLContextHandle,System.String)": "OpenTK.Platform.Native.X11.X11OpenGLComponent.yml", + "OpenTK.Platform.Native.X11.X11OpenGLComponent.GetSharedContext(OpenTK.Platform.OpenGLContextHandle)": "OpenTK.Platform.Native.X11.X11OpenGLComponent.yml", "OpenTK.Platform.Native.X11.X11OpenGLComponent.GetSwapInterval": "OpenTK.Platform.Native.X11.X11OpenGLComponent.yml", - "OpenTK.Platform.Native.X11.X11OpenGLComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions)": "OpenTK.Platform.Native.X11.X11OpenGLComponent.yml", + "OpenTK.Platform.Native.X11.X11OpenGLComponent.Initialize(OpenTK.Platform.ToolkitOptions)": "OpenTK.Platform.Native.X11.X11OpenGLComponent.yml", "OpenTK.Platform.Native.X11.X11OpenGLComponent.Logger": "OpenTK.Platform.Native.X11.X11OpenGLComponent.yml", "OpenTK.Platform.Native.X11.X11OpenGLComponent.Name": "OpenTK.Platform.Native.X11.X11OpenGLComponent.yml", "OpenTK.Platform.Native.X11.X11OpenGLComponent.Provides": "OpenTK.Platform.Native.X11.X11OpenGLComponent.yml", - "OpenTK.Platform.Native.X11.X11OpenGLComponent.SetCurrentContext(OpenTK.Core.Platform.OpenGLContextHandle)": "OpenTK.Platform.Native.X11.X11OpenGLComponent.yml", + "OpenTK.Platform.Native.X11.X11OpenGLComponent.SetCurrentContext(OpenTK.Platform.OpenGLContextHandle)": "OpenTK.Platform.Native.X11.X11OpenGLComponent.yml", "OpenTK.Platform.Native.X11.X11OpenGLComponent.SetSwapInterval(System.Int32)": "OpenTK.Platform.Native.X11.X11OpenGLComponent.yml", - "OpenTK.Platform.Native.X11.X11OpenGLComponent.SwapBuffers(OpenTK.Core.Platform.OpenGLContextHandle)": "OpenTK.Platform.Native.X11.X11OpenGLComponent.yml", + "OpenTK.Platform.Native.X11.X11OpenGLComponent.SwapBuffers(OpenTK.Platform.OpenGLContextHandle)": "OpenTK.Platform.Native.X11.X11OpenGLComponent.yml", "OpenTK.Platform.Native.X11.X11ShellComponent": "OpenTK.Platform.Native.X11.X11ShellComponent.yml", "OpenTK.Platform.Native.X11.X11ShellComponent.AllowScreenSaver(System.Boolean)": "OpenTK.Platform.Native.X11.X11ShellComponent.yml", - "OpenTK.Platform.Native.X11.X11ShellComponent.GetBatteryInfo(OpenTK.Core.Platform.BatteryInfo@)": "OpenTK.Platform.Native.X11.X11ShellComponent.yml", + "OpenTK.Platform.Native.X11.X11ShellComponent.GetBatteryInfo(OpenTK.Platform.BatteryInfo@)": "OpenTK.Platform.Native.X11.X11ShellComponent.yml", "OpenTK.Platform.Native.X11.X11ShellComponent.GetPreferredTheme": "OpenTK.Platform.Native.X11.X11ShellComponent.yml", "OpenTK.Platform.Native.X11.X11ShellComponent.GetSystemMemoryInformation": "OpenTK.Platform.Native.X11.X11ShellComponent.yml", - "OpenTK.Platform.Native.X11.X11ShellComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions)": "OpenTK.Platform.Native.X11.X11ShellComponent.yml", + "OpenTK.Platform.Native.X11.X11ShellComponent.Initialize(OpenTK.Platform.ToolkitOptions)": "OpenTK.Platform.Native.X11.X11ShellComponent.yml", "OpenTK.Platform.Native.X11.X11ShellComponent.Logger": "OpenTK.Platform.Native.X11.X11ShellComponent.yml", "OpenTK.Platform.Native.X11.X11ShellComponent.Name": "OpenTK.Platform.Native.X11.X11ShellComponent.yml", "OpenTK.Platform.Native.X11.X11ShellComponent.Provides": "OpenTK.Platform.Native.X11.X11ShellComponent.yml", @@ -9060,62 +8906,62 @@ "OpenTK.Platform.Native.X11.X11WindowComponent.CanGetDisplay": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", "OpenTK.Platform.Native.X11.X11WindowComponent.CanSetCursor": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", "OpenTK.Platform.Native.X11.X11WindowComponent.CanSetIcon": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", - "OpenTK.Platform.Native.X11.X11WindowComponent.ClientToScreen(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", - "OpenTK.Platform.Native.X11.X11WindowComponent.Create(OpenTK.Core.Platform.GraphicsApiHints)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", - "OpenTK.Platform.Native.X11.X11WindowComponent.DemandAttention(OpenTK.Core.Platform.WindowHandle)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", - "OpenTK.Platform.Native.X11.X11WindowComponent.Destroy(OpenTK.Core.Platform.WindowHandle)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", - "OpenTK.Platform.Native.X11.X11WindowComponent.FocusWindow(OpenTK.Core.Platform.WindowHandle)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", + "OpenTK.Platform.Native.X11.X11WindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", + "OpenTK.Platform.Native.X11.X11WindowComponent.Create(OpenTK.Platform.GraphicsApiHints)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", + "OpenTK.Platform.Native.X11.X11WindowComponent.DemandAttention(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", + "OpenTK.Platform.Native.X11.X11WindowComponent.Destroy(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", + "OpenTK.Platform.Native.X11.X11WindowComponent.FocusWindow(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", "OpenTK.Platform.Native.X11.X11WindowComponent.FreedesktopWindowManagerName": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", - "OpenTK.Platform.Native.X11.X11WindowComponent.GetBorderStyle(OpenTK.Core.Platform.WindowHandle)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", - "OpenTK.Platform.Native.X11.X11WindowComponent.GetBounds(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", - "OpenTK.Platform.Native.X11.X11WindowComponent.GetClientBounds(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", - "OpenTK.Platform.Native.X11.X11WindowComponent.GetClientPosition(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", - "OpenTK.Platform.Native.X11.X11WindowComponent.GetClientSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", - "OpenTK.Platform.Native.X11.X11WindowComponent.GetCursorCaptureMode(OpenTK.Core.Platform.WindowHandle)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", - "OpenTK.Platform.Native.X11.X11WindowComponent.GetDisplay(OpenTK.Core.Platform.WindowHandle)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", - "OpenTK.Platform.Native.X11.X11WindowComponent.GetFramebufferSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", - "OpenTK.Platform.Native.X11.X11WindowComponent.GetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle@)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", - "OpenTK.Platform.Native.X11.X11WindowComponent.GetIcon(OpenTK.Core.Platform.WindowHandle)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", - "OpenTK.Platform.Native.X11.X11WindowComponent.GetIconifiedTitle(OpenTK.Core.Platform.WindowHandle)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", - "OpenTK.Platform.Native.X11.X11WindowComponent.GetMaxClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", - "OpenTK.Platform.Native.X11.X11WindowComponent.GetMinClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", - "OpenTK.Platform.Native.X11.X11WindowComponent.GetMode(OpenTK.Core.Platform.WindowHandle)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", - "OpenTK.Platform.Native.X11.X11WindowComponent.GetPosition(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", - "OpenTK.Platform.Native.X11.X11WindowComponent.GetScaleFactor(OpenTK.Core.Platform.WindowHandle,System.Single@,System.Single@)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", - "OpenTK.Platform.Native.X11.X11WindowComponent.GetSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", - "OpenTK.Platform.Native.X11.X11WindowComponent.GetTitle(OpenTK.Core.Platform.WindowHandle)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", + "OpenTK.Platform.Native.X11.X11WindowComponent.GetBorderStyle(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", + "OpenTK.Platform.Native.X11.X11WindowComponent.GetBounds(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", + "OpenTK.Platform.Native.X11.X11WindowComponent.GetClientBounds(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", + "OpenTK.Platform.Native.X11.X11WindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", + "OpenTK.Platform.Native.X11.X11WindowComponent.GetClientSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", + "OpenTK.Platform.Native.X11.X11WindowComponent.GetCursorCaptureMode(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", + "OpenTK.Platform.Native.X11.X11WindowComponent.GetDisplay(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", + "OpenTK.Platform.Native.X11.X11WindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", + "OpenTK.Platform.Native.X11.X11WindowComponent.GetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle@)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", + "OpenTK.Platform.Native.X11.X11WindowComponent.GetIcon(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", + "OpenTK.Platform.Native.X11.X11WindowComponent.GetIconifiedTitle(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", + "OpenTK.Platform.Native.X11.X11WindowComponent.GetMaxClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", + "OpenTK.Platform.Native.X11.X11WindowComponent.GetMinClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", + "OpenTK.Platform.Native.X11.X11WindowComponent.GetMode(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", + "OpenTK.Platform.Native.X11.X11WindowComponent.GetPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", + "OpenTK.Platform.Native.X11.X11WindowComponent.GetScaleFactor(OpenTK.Platform.WindowHandle,System.Single@,System.Single@)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", + "OpenTK.Platform.Native.X11.X11WindowComponent.GetSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", + "OpenTK.Platform.Native.X11.X11WindowComponent.GetTitle(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", "OpenTK.Platform.Native.X11.X11WindowComponent.GetX11Display": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", - "OpenTK.Platform.Native.X11.X11WindowComponent.GetX11Window(OpenTK.Core.Platform.WindowHandle)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", - "OpenTK.Platform.Native.X11.X11WindowComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", - "OpenTK.Platform.Native.X11.X11WindowComponent.IsAlwaysOnTop(OpenTK.Core.Platform.WindowHandle)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", - "OpenTK.Platform.Native.X11.X11WindowComponent.IsFocused(OpenTK.Core.Platform.WindowHandle)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", - "OpenTK.Platform.Native.X11.X11WindowComponent.IsWindowDestroyed(OpenTK.Core.Platform.WindowHandle)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", + "OpenTK.Platform.Native.X11.X11WindowComponent.GetX11Window(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", + "OpenTK.Platform.Native.X11.X11WindowComponent.Initialize(OpenTK.Platform.ToolkitOptions)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", + "OpenTK.Platform.Native.X11.X11WindowComponent.IsAlwaysOnTop(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", + "OpenTK.Platform.Native.X11.X11WindowComponent.IsFocused(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", + "OpenTK.Platform.Native.X11.X11WindowComponent.IsWindowDestroyed(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", "OpenTK.Platform.Native.X11.X11WindowComponent.IsWindowManagerFreedesktop": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", "OpenTK.Platform.Native.X11.X11WindowComponent.Logger": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", "OpenTK.Platform.Native.X11.X11WindowComponent.Name": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", "OpenTK.Platform.Native.X11.X11WindowComponent.ProcessEvents(System.Boolean)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", "OpenTK.Platform.Native.X11.X11WindowComponent.Provides": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", - "OpenTK.Platform.Native.X11.X11WindowComponent.RequestAttention(OpenTK.Core.Platform.WindowHandle)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", - "OpenTK.Platform.Native.X11.X11WindowComponent.ScreenToClient(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", - "OpenTK.Platform.Native.X11.X11WindowComponent.SetAlwaysOnTop(OpenTK.Core.Platform.WindowHandle,System.Boolean)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", - "OpenTK.Platform.Native.X11.X11WindowComponent.SetBorderStyle(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.WindowBorderStyle)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", - "OpenTK.Platform.Native.X11.X11WindowComponent.SetBounds(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", - "OpenTK.Platform.Native.X11.X11WindowComponent.SetClientBounds(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", - "OpenTK.Platform.Native.X11.X11WindowComponent.SetClientPosition(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", - "OpenTK.Platform.Native.X11.X11WindowComponent.SetClientSize(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", - "OpenTK.Platform.Native.X11.X11WindowComponent.SetCursor(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.CursorHandle)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", - "OpenTK.Platform.Native.X11.X11WindowComponent.SetCursorCaptureMode(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.CursorCaptureMode)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", - "OpenTK.Platform.Native.X11.X11WindowComponent.SetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", - "OpenTK.Platform.Native.X11.X11WindowComponent.SetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle,OpenTK.Core.Platform.VideoMode)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", - "OpenTK.Platform.Native.X11.X11WindowComponent.SetHitTestCallback(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.HitTest)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", - "OpenTK.Platform.Native.X11.X11WindowComponent.SetIcon(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.IconHandle)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", - "OpenTK.Platform.Native.X11.X11WindowComponent.SetIconifiedTitle(OpenTK.Core.Platform.WindowHandle,System.String)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", - "OpenTK.Platform.Native.X11.X11WindowComponent.SetMaxClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32})": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", - "OpenTK.Platform.Native.X11.X11WindowComponent.SetMinClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32})": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", - "OpenTK.Platform.Native.X11.X11WindowComponent.SetMode(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.WindowMode)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", - "OpenTK.Platform.Native.X11.X11WindowComponent.SetPosition(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", - "OpenTK.Platform.Native.X11.X11WindowComponent.SetSize(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", - "OpenTK.Platform.Native.X11.X11WindowComponent.SetTitle(OpenTK.Core.Platform.WindowHandle,System.String)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", + "OpenTK.Platform.Native.X11.X11WindowComponent.RequestAttention(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", + "OpenTK.Platform.Native.X11.X11WindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", + "OpenTK.Platform.Native.X11.X11WindowComponent.SetAlwaysOnTop(OpenTK.Platform.WindowHandle,System.Boolean)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", + "OpenTK.Platform.Native.X11.X11WindowComponent.SetBorderStyle(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowBorderStyle)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", + "OpenTK.Platform.Native.X11.X11WindowComponent.SetBounds(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", + "OpenTK.Platform.Native.X11.X11WindowComponent.SetClientBounds(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", + "OpenTK.Platform.Native.X11.X11WindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", + "OpenTK.Platform.Native.X11.X11WindowComponent.SetClientSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", + "OpenTK.Platform.Native.X11.X11WindowComponent.SetCursor(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorHandle)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", + "OpenTK.Platform.Native.X11.X11WindowComponent.SetCursorCaptureMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorCaptureMode)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", + "OpenTK.Platform.Native.X11.X11WindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", + "OpenTK.Platform.Native.X11.X11WindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle,OpenTK.Platform.VideoMode)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", + "OpenTK.Platform.Native.X11.X11WindowComponent.SetHitTestCallback(OpenTK.Platform.WindowHandle,OpenTK.Platform.HitTest)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", + "OpenTK.Platform.Native.X11.X11WindowComponent.SetIcon(OpenTK.Platform.WindowHandle,OpenTK.Platform.IconHandle)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", + "OpenTK.Platform.Native.X11.X11WindowComponent.SetIconifiedTitle(OpenTK.Platform.WindowHandle,System.String)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", + "OpenTK.Platform.Native.X11.X11WindowComponent.SetMaxClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32})": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", + "OpenTK.Platform.Native.X11.X11WindowComponent.SetMinClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32})": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", + "OpenTK.Platform.Native.X11.X11WindowComponent.SetMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowMode)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", + "OpenTK.Platform.Native.X11.X11WindowComponent.SetPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", + "OpenTK.Platform.Native.X11.X11WindowComponent.SetSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", + "OpenTK.Platform.Native.X11.X11WindowComponent.SetTitle(OpenTK.Platform.WindowHandle,System.String)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", "OpenTK.Platform.Native.X11.X11WindowComponent.SupportedEvents": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", "OpenTK.Platform.Native.X11.X11WindowComponent.SupportedModes": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", "OpenTK.Platform.Native.X11.X11WindowComponent.SupportedStyles": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", @@ -9127,21 +8973,21 @@ "OpenTK.Platform.Native.macOS.MacOSClipboardComponent.GetClipboardFiles": "OpenTK.Platform.Native.macOS.MacOSClipboardComponent.yml", "OpenTK.Platform.Native.macOS.MacOSClipboardComponent.GetClipboardFormat": "OpenTK.Platform.Native.macOS.MacOSClipboardComponent.yml", "OpenTK.Platform.Native.macOS.MacOSClipboardComponent.GetClipboardText": "OpenTK.Platform.Native.macOS.MacOSClipboardComponent.yml", - "OpenTK.Platform.Native.macOS.MacOSClipboardComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions)": "OpenTK.Platform.Native.macOS.MacOSClipboardComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSClipboardComponent.Initialize(OpenTK.Platform.ToolkitOptions)": "OpenTK.Platform.Native.macOS.MacOSClipboardComponent.yml", "OpenTK.Platform.Native.macOS.MacOSClipboardComponent.Logger": "OpenTK.Platform.Native.macOS.MacOSClipboardComponent.yml", "OpenTK.Platform.Native.macOS.MacOSClipboardComponent.Name": "OpenTK.Platform.Native.macOS.MacOSClipboardComponent.yml", "OpenTK.Platform.Native.macOS.MacOSClipboardComponent.Provides": "OpenTK.Platform.Native.macOS.MacOSClipboardComponent.yml", - "OpenTK.Platform.Native.macOS.MacOSClipboardComponent.SetClipboardBitmap(OpenTK.Core.Platform.Bitmap)": "OpenTK.Platform.Native.macOS.MacOSClipboardComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSClipboardComponent.SetClipboardBitmap(OpenTK.Platform.Bitmap)": "OpenTK.Platform.Native.macOS.MacOSClipboardComponent.yml", "OpenTK.Platform.Native.macOS.MacOSClipboardComponent.SetClipboardText(System.String)": "OpenTK.Platform.Native.macOS.MacOSClipboardComponent.yml", "OpenTK.Platform.Native.macOS.MacOSClipboardComponent.SupportedFormats": "OpenTK.Platform.Native.macOS.MacOSClipboardComponent.yml", "OpenTK.Platform.Native.macOS.MacOSCursorComponent": "OpenTK.Platform.Native.macOS.MacOSCursorComponent.yml", "OpenTK.Platform.Native.macOS.MacOSCursorComponent.CanInspectSystemCursors": "OpenTK.Platform.Native.macOS.MacOSCursorComponent.yml", "OpenTK.Platform.Native.macOS.MacOSCursorComponent.CanLoadSystemCursors": "OpenTK.Platform.Native.macOS.MacOSCursorComponent.yml", - "OpenTK.Platform.Native.macOS.MacOSCursorComponent.Create(OpenTK.Core.Platform.SystemCursorType)": "OpenTK.Platform.Native.macOS.MacOSCursorComponent.yml", "OpenTK.Platform.Native.macOS.MacOSCursorComponent.Create(OpenTK.Platform.Native.macOS.MacOSCursorComponent.Frame[],System.Single)": "OpenTK.Platform.Native.macOS.MacOSCursorComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSCursorComponent.Create(OpenTK.Platform.SystemCursorType)": "OpenTK.Platform.Native.macOS.MacOSCursorComponent.yml", "OpenTK.Platform.Native.macOS.MacOSCursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.Int32,System.Int32)": "OpenTK.Platform.Native.macOS.MacOSCursorComponent.yml", "OpenTK.Platform.Native.macOS.MacOSCursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.ReadOnlySpan{System.Byte},System.Int32,System.Int32)": "OpenTK.Platform.Native.macOS.MacOSCursorComponent.yml", - "OpenTK.Platform.Native.macOS.MacOSCursorComponent.Destroy(OpenTK.Core.Platform.CursorHandle)": "OpenTK.Platform.Native.macOS.MacOSCursorComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSCursorComponent.Destroy(OpenTK.Platform.CursorHandle)": "OpenTK.Platform.Native.macOS.MacOSCursorComponent.yml", "OpenTK.Platform.Native.macOS.MacOSCursorComponent.Frame": "OpenTK.Platform.Native.macOS.MacOSCursorComponent.Frame.yml", "OpenTK.Platform.Native.macOS.MacOSCursorComponent.Frame.#ctor(System.Int32,System.Int32,System.Byte[],System.Int32,System.Int32)": "OpenTK.Platform.Native.macOS.MacOSCursorComponent.Frame.yml", "OpenTK.Platform.Native.macOS.MacOSCursorComponent.Frame.Height": "OpenTK.Platform.Native.macOS.MacOSCursorComponent.Frame.yml", @@ -9151,41 +8997,42 @@ "OpenTK.Platform.Native.macOS.MacOSCursorComponent.Frame.ResX": "OpenTK.Platform.Native.macOS.MacOSCursorComponent.Frame.yml", "OpenTK.Platform.Native.macOS.MacOSCursorComponent.Frame.ResY": "OpenTK.Platform.Native.macOS.MacOSCursorComponent.Frame.yml", "OpenTK.Platform.Native.macOS.MacOSCursorComponent.Frame.Width": "OpenTK.Platform.Native.macOS.MacOSCursorComponent.Frame.yml", - "OpenTK.Platform.Native.macOS.MacOSCursorComponent.GetHotspot(OpenTK.Core.Platform.CursorHandle,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.macOS.MacOSCursorComponent.yml", - "OpenTK.Platform.Native.macOS.MacOSCursorComponent.GetSize(OpenTK.Core.Platform.CursorHandle,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.macOS.MacOSCursorComponent.yml", - "OpenTK.Platform.Native.macOS.MacOSCursorComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions)": "OpenTK.Platform.Native.macOS.MacOSCursorComponent.yml", - "OpenTK.Platform.Native.macOS.MacOSCursorComponent.IsAnimatedCursor(OpenTK.Core.Platform.CursorHandle)": "OpenTK.Platform.Native.macOS.MacOSCursorComponent.yml", - "OpenTK.Platform.Native.macOS.MacOSCursorComponent.IsSystemCursor(OpenTK.Core.Platform.CursorHandle)": "OpenTK.Platform.Native.macOS.MacOSCursorComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSCursorComponent.GetHotspot(OpenTK.Platform.CursorHandle,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.macOS.MacOSCursorComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSCursorComponent.GetSize(OpenTK.Platform.CursorHandle,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.macOS.MacOSCursorComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSCursorComponent.Initialize(OpenTK.Platform.ToolkitOptions)": "OpenTK.Platform.Native.macOS.MacOSCursorComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSCursorComponent.IsAnimatedCursor(OpenTK.Platform.CursorHandle)": "OpenTK.Platform.Native.macOS.MacOSCursorComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSCursorComponent.IsSystemCursor(OpenTK.Platform.CursorHandle)": "OpenTK.Platform.Native.macOS.MacOSCursorComponent.yml", "OpenTK.Platform.Native.macOS.MacOSCursorComponent.Logger": "OpenTK.Platform.Native.macOS.MacOSCursorComponent.yml", "OpenTK.Platform.Native.macOS.MacOSCursorComponent.Name": "OpenTK.Platform.Native.macOS.MacOSCursorComponent.yml", "OpenTK.Platform.Native.macOS.MacOSCursorComponent.Provides": "OpenTK.Platform.Native.macOS.MacOSCursorComponent.yml", - "OpenTK.Platform.Native.macOS.MacOSCursorComponent.UpdateAnimation(OpenTK.Core.Platform.CursorHandle,System.Double)": "OpenTK.Platform.Native.macOS.MacOSCursorComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSCursorComponent.UpdateAnimation(OpenTK.Platform.CursorHandle,System.Double)": "OpenTK.Platform.Native.macOS.MacOSCursorComponent.yml", "OpenTK.Platform.Native.macOS.MacOSDialogComponent": "OpenTK.Platform.Native.macOS.MacOSDialogComponent.yml", "OpenTK.Platform.Native.macOS.MacOSDialogComponent.CanTargetFolders": "OpenTK.Platform.Native.macOS.MacOSDialogComponent.yml", - "OpenTK.Platform.Native.macOS.MacOSDialogComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions)": "OpenTK.Platform.Native.macOS.MacOSDialogComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSDialogComponent.Initialize(OpenTK.Platform.ToolkitOptions)": "OpenTK.Platform.Native.macOS.MacOSDialogComponent.yml", "OpenTK.Platform.Native.macOS.MacOSDialogComponent.Logger": "OpenTK.Platform.Native.macOS.MacOSDialogComponent.yml", "OpenTK.Platform.Native.macOS.MacOSDialogComponent.Name": "OpenTK.Platform.Native.macOS.MacOSDialogComponent.yml", "OpenTK.Platform.Native.macOS.MacOSDialogComponent.Provides": "OpenTK.Platform.Native.macOS.MacOSDialogComponent.yml", - "OpenTK.Platform.Native.macOS.MacOSDialogComponent.ShowOpenDialog(OpenTK.Core.Platform.WindowHandle,System.String,System.String,OpenTK.Core.Platform.DialogFileFilter[],OpenTK.Core.Platform.OpenDialogOptions)": "OpenTK.Platform.Native.macOS.MacOSDialogComponent.yml", - "OpenTK.Platform.Native.macOS.MacOSDialogComponent.ShowSaveDialog(OpenTK.Core.Platform.WindowHandle,System.String,System.String,OpenTK.Core.Platform.DialogFileFilter[],OpenTK.Core.Platform.SaveDialogOptions)": "OpenTK.Platform.Native.macOS.MacOSDialogComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSDialogComponent.ShowMessageBox(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.MessageBoxType,OpenTK.Platform.IconHandle)": "OpenTK.Platform.Native.macOS.MacOSDialogComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSDialogComponent.ShowOpenDialog(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.DialogFileFilter[],OpenTK.Platform.OpenDialogOptions)": "OpenTK.Platform.Native.macOS.MacOSDialogComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSDialogComponent.ShowSaveDialog(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.DialogFileFilter[],OpenTK.Platform.SaveDialogOptions)": "OpenTK.Platform.Native.macOS.MacOSDialogComponent.yml", "OpenTK.Platform.Native.macOS.MacOSDisplayComponent": "OpenTK.Platform.Native.macOS.MacOSDisplayComponent.yml", "OpenTK.Platform.Native.macOS.MacOSDisplayComponent.CanGetVirtualPosition": "OpenTK.Platform.Native.macOS.MacOSDisplayComponent.yml", - "OpenTK.Platform.Native.macOS.MacOSDisplayComponent.Close(OpenTK.Core.Platform.DisplayHandle)": "OpenTK.Platform.Native.macOS.MacOSDisplayComponent.yml", - "OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetDirectDisplayID(OpenTK.Core.Platform.DisplayHandle)": "OpenTK.Platform.Native.macOS.MacOSDisplayComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSDisplayComponent.Close(OpenTK.Platform.DisplayHandle)": "OpenTK.Platform.Native.macOS.MacOSDisplayComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetDirectDisplayID(OpenTK.Platform.DisplayHandle)": "OpenTK.Platform.Native.macOS.MacOSDisplayComponent.yml", "OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetDisplayCount": "OpenTK.Platform.Native.macOS.MacOSDisplayComponent.yml", - "OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetDisplayScale(OpenTK.Core.Platform.DisplayHandle,System.Single@,System.Single@)": "OpenTK.Platform.Native.macOS.MacOSDisplayComponent.yml", - "OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetName(OpenTK.Core.Platform.DisplayHandle)": "OpenTK.Platform.Native.macOS.MacOSDisplayComponent.yml", - "OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetRefreshRate(OpenTK.Core.Platform.DisplayHandle,System.Single@)": "OpenTK.Platform.Native.macOS.MacOSDisplayComponent.yml", - "OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetResolution(OpenTK.Core.Platform.DisplayHandle,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.macOS.MacOSDisplayComponent.yml", - "OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetSafeArea(OpenTK.Core.Platform.DisplayHandle,OpenTK.Mathematics.Box2i@)": "OpenTK.Platform.Native.macOS.MacOSDisplayComponent.yml", - "OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetSafeLeftAuxArea(OpenTK.Core.Platform.DisplayHandle,OpenTK.Mathematics.Box2i@)": "OpenTK.Platform.Native.macOS.MacOSDisplayComponent.yml", - "OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetSafeRightAuxArea(OpenTK.Core.Platform.DisplayHandle,OpenTK.Mathematics.Box2i@)": "OpenTK.Platform.Native.macOS.MacOSDisplayComponent.yml", - "OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetSupportedVideoModes(OpenTK.Core.Platform.DisplayHandle)": "OpenTK.Platform.Native.macOS.MacOSDisplayComponent.yml", - "OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetVideoMode(OpenTK.Core.Platform.DisplayHandle,OpenTK.Core.Platform.VideoMode@)": "OpenTK.Platform.Native.macOS.MacOSDisplayComponent.yml", - "OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetVirtualPosition(OpenTK.Core.Platform.DisplayHandle,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.macOS.MacOSDisplayComponent.yml", - "OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetWorkArea(OpenTK.Core.Platform.DisplayHandle,OpenTK.Mathematics.Box2i@)": "OpenTK.Platform.Native.macOS.MacOSDisplayComponent.yml", - "OpenTK.Platform.Native.macOS.MacOSDisplayComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions)": "OpenTK.Platform.Native.macOS.MacOSDisplayComponent.yml", - "OpenTK.Platform.Native.macOS.MacOSDisplayComponent.IsPrimary(OpenTK.Core.Platform.DisplayHandle)": "OpenTK.Platform.Native.macOS.MacOSDisplayComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetDisplayScale(OpenTK.Platform.DisplayHandle,System.Single@,System.Single@)": "OpenTK.Platform.Native.macOS.MacOSDisplayComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetName(OpenTK.Platform.DisplayHandle)": "OpenTK.Platform.Native.macOS.MacOSDisplayComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetRefreshRate(OpenTK.Platform.DisplayHandle,System.Single@)": "OpenTK.Platform.Native.macOS.MacOSDisplayComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetResolution(OpenTK.Platform.DisplayHandle,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.macOS.MacOSDisplayComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetSafeArea(OpenTK.Platform.DisplayHandle,OpenTK.Mathematics.Box2i@)": "OpenTK.Platform.Native.macOS.MacOSDisplayComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetSafeLeftAuxArea(OpenTK.Platform.DisplayHandle,OpenTK.Mathematics.Box2i@)": "OpenTK.Platform.Native.macOS.MacOSDisplayComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetSafeRightAuxArea(OpenTK.Platform.DisplayHandle,OpenTK.Mathematics.Box2i@)": "OpenTK.Platform.Native.macOS.MacOSDisplayComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetSupportedVideoModes(OpenTK.Platform.DisplayHandle)": "OpenTK.Platform.Native.macOS.MacOSDisplayComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetVideoMode(OpenTK.Platform.DisplayHandle,OpenTK.Platform.VideoMode@)": "OpenTK.Platform.Native.macOS.MacOSDisplayComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetVirtualPosition(OpenTK.Platform.DisplayHandle,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.macOS.MacOSDisplayComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetWorkArea(OpenTK.Platform.DisplayHandle,OpenTK.Mathematics.Box2i@)": "OpenTK.Platform.Native.macOS.MacOSDisplayComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSDisplayComponent.Initialize(OpenTK.Platform.ToolkitOptions)": "OpenTK.Platform.Native.macOS.MacOSDisplayComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSDisplayComponent.IsPrimary(OpenTK.Platform.DisplayHandle)": "OpenTK.Platform.Native.macOS.MacOSDisplayComponent.yml", "OpenTK.Platform.Native.macOS.MacOSDisplayComponent.Logger": "OpenTK.Platform.Native.macOS.MacOSDisplayComponent.yml", "OpenTK.Platform.Native.macOS.MacOSDisplayComponent.Name": "OpenTK.Platform.Native.macOS.MacOSDisplayComponent.yml", "OpenTK.Platform.Native.macOS.MacOSDisplayComponent.Open(System.Int32)": "OpenTK.Platform.Native.macOS.MacOSDisplayComponent.yml", @@ -9193,66 +9040,69 @@ "OpenTK.Platform.Native.macOS.MacOSDisplayComponent.Provides": "OpenTK.Platform.Native.macOS.MacOSDisplayComponent.yml", "OpenTK.Platform.Native.macOS.MacOSIconComponent": "OpenTK.Platform.Native.macOS.MacOSIconComponent.yml", "OpenTK.Platform.Native.macOS.MacOSIconComponent.CanLoadSystemIcons": "OpenTK.Platform.Native.macOS.MacOSIconComponent.yml", - "OpenTK.Platform.Native.macOS.MacOSIconComponent.Create(OpenTK.Core.Platform.SystemIconType)": "OpenTK.Platform.Native.macOS.MacOSIconComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSIconComponent.Create(OpenTK.Platform.SystemIconType)": "OpenTK.Platform.Native.macOS.MacOSIconComponent.yml", "OpenTK.Platform.Native.macOS.MacOSIconComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte})": "OpenTK.Platform.Native.macOS.MacOSIconComponent.yml", "OpenTK.Platform.Native.macOS.MacOSIconComponent.CreateSFSymbol(System.String,System.String)": "OpenTK.Platform.Native.macOS.MacOSIconComponent.yml", - "OpenTK.Platform.Native.macOS.MacOSIconComponent.Destroy(OpenTK.Core.Platform.IconHandle)": "OpenTK.Platform.Native.macOS.MacOSIconComponent.yml", - "OpenTK.Platform.Native.macOS.MacOSIconComponent.GetSize(OpenTK.Core.Platform.IconHandle,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.macOS.MacOSIconComponent.yml", - "OpenTK.Platform.Native.macOS.MacOSIconComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions)": "OpenTK.Platform.Native.macOS.MacOSIconComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSIconComponent.Destroy(OpenTK.Platform.IconHandle)": "OpenTK.Platform.Native.macOS.MacOSIconComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSIconComponent.GetSize(OpenTK.Platform.IconHandle,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.macOS.MacOSIconComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSIconComponent.Initialize(OpenTK.Platform.ToolkitOptions)": "OpenTK.Platform.Native.macOS.MacOSIconComponent.yml", "OpenTK.Platform.Native.macOS.MacOSIconComponent.Logger": "OpenTK.Platform.Native.macOS.MacOSIconComponent.yml", "OpenTK.Platform.Native.macOS.MacOSIconComponent.Name": "OpenTK.Platform.Native.macOS.MacOSIconComponent.yml", "OpenTK.Platform.Native.macOS.MacOSIconComponent.Provides": "OpenTK.Platform.Native.macOS.MacOSIconComponent.yml", "OpenTK.Platform.Native.macOS.MacOSKeyboardComponent": "OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.yml", - "OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.BeginIme(OpenTK.Core.Platform.WindowHandle)": "OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.yml", - "OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.EndIme(OpenTK.Core.Platform.WindowHandle)": "OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.yml", - "OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.GetActiveKeyboardLayout(OpenTK.Core.Platform.WindowHandle)": "OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.BeginIme(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.EndIme(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.GetActiveKeyboardLayout(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.yml", "OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.GetAvailableKeyboardLayouts": "OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.yml", - "OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.GetKeyFromScancode(OpenTK.Core.Platform.Scancode)": "OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.GetKeyFromScancode(OpenTK.Platform.Scancode)": "OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.yml", "OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.GetKeyboardModifiers": "OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.yml", "OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.GetKeyboardState(System.Boolean[])": "OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.yml", - "OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.GetScancodeFromKey(OpenTK.Core.Platform.Key)": "OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.yml", - "OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions)": "OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.GetScancodeFromKey(OpenTK.Platform.Key)": "OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.Initialize(OpenTK.Platform.ToolkitOptions)": "OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.yml", "OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.Logger": "OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.yml", "OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.Name": "OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.yml", "OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.Provides": "OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.yml", - "OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.SetImeRectangle(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32)": "OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.SetImeRectangle(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32)": "OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.yml", "OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.SupportsIme": "OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.yml", "OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.SupportsLayouts": "OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.yml", "OpenTK.Platform.Native.macOS.MacOSMouseComponent": "OpenTK.Platform.Native.macOS.MacOSMouseComponent.yml", "OpenTK.Platform.Native.macOS.MacOSMouseComponent.CanSetMousePosition": "OpenTK.Platform.Native.macOS.MacOSMouseComponent.yml", - "OpenTK.Platform.Native.macOS.MacOSMouseComponent.GetMouseState(OpenTK.Core.Platform.MouseState@)": "OpenTK.Platform.Native.macOS.MacOSMouseComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSMouseComponent.EnableRawMouseMotion(OpenTK.Platform.WindowHandle,System.Boolean)": "OpenTK.Platform.Native.macOS.MacOSMouseComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSMouseComponent.GetMouseState(OpenTK.Platform.MouseState@)": "OpenTK.Platform.Native.macOS.MacOSMouseComponent.yml", "OpenTK.Platform.Native.macOS.MacOSMouseComponent.GetPosition(System.Int32@,System.Int32@)": "OpenTK.Platform.Native.macOS.MacOSMouseComponent.yml", - "OpenTK.Platform.Native.macOS.MacOSMouseComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions)": "OpenTK.Platform.Native.macOS.MacOSMouseComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSMouseComponent.Initialize(OpenTK.Platform.ToolkitOptions)": "OpenTK.Platform.Native.macOS.MacOSMouseComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSMouseComponent.IsRawMouseMotionEnabled(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.Native.macOS.MacOSMouseComponent.yml", "OpenTK.Platform.Native.macOS.MacOSMouseComponent.Logger": "OpenTK.Platform.Native.macOS.MacOSMouseComponent.yml", "OpenTK.Platform.Native.macOS.MacOSMouseComponent.Name": "OpenTK.Platform.Native.macOS.MacOSMouseComponent.yml", "OpenTK.Platform.Native.macOS.MacOSMouseComponent.Provides": "OpenTK.Platform.Native.macOS.MacOSMouseComponent.yml", "OpenTK.Platform.Native.macOS.MacOSMouseComponent.SetPosition(System.Int32,System.Int32)": "OpenTK.Platform.Native.macOS.MacOSMouseComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSMouseComponent.SupportsRawMouseMotion": "OpenTK.Platform.Native.macOS.MacOSMouseComponent.yml", "OpenTK.Platform.Native.macOS.MacOSOpenGLComponent": "OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.yml", "OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.CanCreateFromSurface": "OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.yml", "OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.CanCreateFromWindow": "OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.yml", "OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.CanShareContexts": "OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.yml", "OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.CreateFromSurface": "OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.yml", - "OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.CreateFromWindow(OpenTK.Core.Platform.WindowHandle)": "OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.yml", - "OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.DestroyContext(OpenTK.Core.Platform.OpenGLContextHandle)": "OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.yml", - "OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.GetBindingsContext(OpenTK.Core.Platform.OpenGLContextHandle)": "OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.CreateFromWindow(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.DestroyContext(OpenTK.Platform.OpenGLContextHandle)": "OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.GetBindingsContext(OpenTK.Platform.OpenGLContextHandle)": "OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.yml", "OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.GetCurrentContext": "OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.yml", - "OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.GetNSOpenGLContext(OpenTK.Core.Platform.OpenGLContextHandle)": "OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.yml", - "OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.GetProcedureAddress(OpenTK.Core.Platform.OpenGLContextHandle,System.String)": "OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.yml", - "OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.GetSharedContext(OpenTK.Core.Platform.OpenGLContextHandle)": "OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.GetNSOpenGLContext(OpenTK.Platform.OpenGLContextHandle)": "OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.GetProcedureAddress(OpenTK.Platform.OpenGLContextHandle,System.String)": "OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.GetSharedContext(OpenTK.Platform.OpenGLContextHandle)": "OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.yml", "OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.GetSwapInterval": "OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.yml", - "OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions)": "OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.Initialize(OpenTK.Platform.ToolkitOptions)": "OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.yml", "OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.Logger": "OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.yml", "OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.Name": "OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.yml", "OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.Provides": "OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.yml", - "OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.SetCurrentContext(OpenTK.Core.Platform.OpenGLContextHandle)": "OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.SetCurrentContext(OpenTK.Platform.OpenGLContextHandle)": "OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.yml", "OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.SetSwapInterval(System.Int32)": "OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.yml", - "OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.SwapBuffers(OpenTK.Core.Platform.OpenGLContextHandle)": "OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.SwapBuffers(OpenTK.Platform.OpenGLContextHandle)": "OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.yml", "OpenTK.Platform.Native.macOS.MacOSShellComponent": "OpenTK.Platform.Native.macOS.MacOSShellComponent.yml", "OpenTK.Platform.Native.macOS.MacOSShellComponent.AllowScreenSaver(System.Boolean)": "OpenTK.Platform.Native.macOS.MacOSShellComponent.yml", - "OpenTK.Platform.Native.macOS.MacOSShellComponent.GetBatteryInfo(OpenTK.Core.Platform.BatteryInfo@)": "OpenTK.Platform.Native.macOS.MacOSShellComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSShellComponent.GetBatteryInfo(OpenTK.Platform.BatteryInfo@)": "OpenTK.Platform.Native.macOS.MacOSShellComponent.yml", "OpenTK.Platform.Native.macOS.MacOSShellComponent.GetPreferredTheme": "OpenTK.Platform.Native.macOS.MacOSShellComponent.yml", "OpenTK.Platform.Native.macOS.MacOSShellComponent.GetSystemMemoryInformation": "OpenTK.Platform.Native.macOS.MacOSShellComponent.yml", - "OpenTK.Platform.Native.macOS.MacOSShellComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions)": "OpenTK.Platform.Native.macOS.MacOSShellComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSShellComponent.Initialize(OpenTK.Platform.ToolkitOptions)": "OpenTK.Platform.Native.macOS.MacOSShellComponent.yml", "OpenTK.Platform.Native.macOS.MacOSShellComponent.Logger": "OpenTK.Platform.Native.macOS.MacOSShellComponent.yml", "OpenTK.Platform.Native.macOS.MacOSShellComponent.Name": "OpenTK.Platform.Native.macOS.MacOSShellComponent.yml", "OpenTK.Platform.Native.macOS.MacOSShellComponent.Provides": "OpenTK.Platform.Native.macOS.MacOSShellComponent.yml", @@ -9261,62 +9111,439 @@ "OpenTK.Platform.Native.macOS.MacOSWindowComponent.CanGetDisplay": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", "OpenTK.Platform.Native.macOS.MacOSWindowComponent.CanSetCursor": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", "OpenTK.Platform.Native.macOS.MacOSWindowComponent.CanSetIcon": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", - "OpenTK.Platform.Native.macOS.MacOSWindowComponent.ClientToScreen(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", - "OpenTK.Platform.Native.macOS.MacOSWindowComponent.Create(OpenTK.Core.Platform.GraphicsApiHints)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", - "OpenTK.Platform.Native.macOS.MacOSWindowComponent.Destroy(OpenTK.Core.Platform.WindowHandle)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", - "OpenTK.Platform.Native.macOS.MacOSWindowComponent.FocusWindow(OpenTK.Core.Platform.WindowHandle)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", - "OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetBorderStyle(OpenTK.Core.Platform.WindowHandle)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", - "OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetBounds(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", - "OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetClientBounds(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", - "OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetClientPosition(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", - "OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetClientSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", - "OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetCursorCaptureMode(OpenTK.Core.Platform.WindowHandle)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", - "OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetDisplay(OpenTK.Core.Platform.WindowHandle)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", - "OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetFramebufferSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", - "OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle@)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", - "OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetIcon(OpenTK.Core.Platform.WindowHandle)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", - "OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetMaxClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", - "OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetMinClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", - "OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetMode(OpenTK.Core.Platform.WindowHandle)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", - "OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetNSView(OpenTK.Core.Platform.WindowHandle)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", - "OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetNSWindow(OpenTK.Core.Platform.WindowHandle)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", - "OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetPosition(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", - "OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetScaleFactor(OpenTK.Core.Platform.WindowHandle,System.Single@,System.Single@)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", - "OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", - "OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetTitle(OpenTK.Core.Platform.WindowHandle)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", - "OpenTK.Platform.Native.macOS.MacOSWindowComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", - "OpenTK.Platform.Native.macOS.MacOSWindowComponent.IsAlwaysOnTop(OpenTK.Core.Platform.WindowHandle)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", - "OpenTK.Platform.Native.macOS.MacOSWindowComponent.IsFocused(OpenTK.Core.Platform.WindowHandle)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", - "OpenTK.Platform.Native.macOS.MacOSWindowComponent.IsWindowDestroyed(OpenTK.Core.Platform.WindowHandle)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSWindowComponent.Create(OpenTK.Platform.GraphicsApiHints)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSWindowComponent.Destroy(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSWindowComponent.FocusWindow(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetBorderStyle(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetBounds(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetClientBounds(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetClientSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetCursorCaptureMode(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetDisplay(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle@)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetIcon(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetMaxClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetMinClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetMode(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetNSView(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetNSWindow(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetScaleFactor(OpenTK.Platform.WindowHandle,System.Single@,System.Single@)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetTitle(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSWindowComponent.Initialize(OpenTK.Platform.ToolkitOptions)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSWindowComponent.IsAlwaysOnTop(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSWindowComponent.IsFocused(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSWindowComponent.IsWindowDestroyed(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", "OpenTK.Platform.Native.macOS.MacOSWindowComponent.Logger": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", "OpenTK.Platform.Native.macOS.MacOSWindowComponent.Name": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", "OpenTK.Platform.Native.macOS.MacOSWindowComponent.ProcessEvents(System.Boolean)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", "OpenTK.Platform.Native.macOS.MacOSWindowComponent.Provides": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", - "OpenTK.Platform.Native.macOS.MacOSWindowComponent.RequestAttention(OpenTK.Core.Platform.WindowHandle)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", - "OpenTK.Platform.Native.macOS.MacOSWindowComponent.ScreenToClient(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", - "OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetAlwaysOnTop(OpenTK.Core.Platform.WindowHandle,System.Boolean)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", - "OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetBorderStyle(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.WindowBorderStyle)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", - "OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetBounds(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", - "OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetClientBounds(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", - "OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetClientPosition(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", - "OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetClientSize(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", - "OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetCursor(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.CursorHandle)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", - "OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetCursorCaptureMode(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.CursorCaptureMode)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", - "OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetDockIcon(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.IconHandle)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", - "OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", - "OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle,OpenTK.Core.Platform.VideoMode)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", - "OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetFullscreenDisplayNoSpace(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", - "OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetHitTestCallback(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.HitTest)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", - "OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetIcon(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.IconHandle)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", - "OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetMaxClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32})": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", - "OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetMinClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32})": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", - "OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetMode(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.WindowMode)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", - "OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetPosition(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", - "OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetSize(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", - "OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetTitle(OpenTK.Core.Platform.WindowHandle,System.String)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSWindowComponent.RequestAttention(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSWindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetAlwaysOnTop(OpenTK.Platform.WindowHandle,System.Boolean)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetBorderStyle(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowBorderStyle)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetBounds(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetClientBounds(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetClientSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetCursor(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorHandle)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetCursorCaptureMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorCaptureMode)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetDockIcon(OpenTK.Platform.WindowHandle,OpenTK.Platform.IconHandle)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle,OpenTK.Platform.VideoMode)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetFullscreenDisplayNoSpace(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetHitTestCallback(OpenTK.Platform.WindowHandle,OpenTK.Platform.HitTest)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetIcon(OpenTK.Platform.WindowHandle,OpenTK.Platform.IconHandle)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetMaxClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32})": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetMinClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32})": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowMode)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetTitle(OpenTK.Platform.WindowHandle,System.String)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", "OpenTK.Platform.Native.macOS.MacOSWindowComponent.SupportedEvents": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", "OpenTK.Platform.Native.macOS.MacOSWindowComponent.SupportedModes": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", "OpenTK.Platform.Native.macOS.MacOSWindowComponent.SupportedStyles": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", + "OpenTK.Platform.OpenDialogOptions": "OpenTK.Platform.OpenDialogOptions.yml", + "OpenTK.Platform.OpenDialogOptions.AllowMultiSelect": "OpenTK.Platform.OpenDialogOptions.yml", + "OpenTK.Platform.OpenDialogOptions.SelectDirectory": "OpenTK.Platform.OpenDialogOptions.yml", + "OpenTK.Platform.OpenGLContextHandle": "OpenTK.Platform.OpenGLContextHandle.yml", + "OpenTK.Platform.OpenGLGraphicsApiHints": "OpenTK.Platform.OpenGLGraphicsApiHints.yml", + "OpenTK.Platform.OpenGLGraphicsApiHints.#ctor": "OpenTK.Platform.OpenGLGraphicsApiHints.yml", + "OpenTK.Platform.OpenGLGraphicsApiHints.AlphaColorBits": "OpenTK.Platform.OpenGLGraphicsApiHints.yml", + "OpenTK.Platform.OpenGLGraphicsApiHints.Api": "OpenTK.Platform.OpenGLGraphicsApiHints.yml", + "OpenTK.Platform.OpenGLGraphicsApiHints.BlueColorBits": "OpenTK.Platform.OpenGLGraphicsApiHints.yml", + "OpenTK.Platform.OpenGLGraphicsApiHints.Copy": "OpenTK.Platform.OpenGLGraphicsApiHints.yml", + "OpenTK.Platform.OpenGLGraphicsApiHints.DebugFlag": "OpenTK.Platform.OpenGLGraphicsApiHints.yml", + "OpenTK.Platform.OpenGLGraphicsApiHints.DepthBits": "OpenTK.Platform.OpenGLGraphicsApiHints.yml", + "OpenTK.Platform.OpenGLGraphicsApiHints.DoubleBuffer": "OpenTK.Platform.OpenGLGraphicsApiHints.yml", + "OpenTK.Platform.OpenGLGraphicsApiHints.ForwardCompatibleFlag": "OpenTK.Platform.OpenGLGraphicsApiHints.yml", + "OpenTK.Platform.OpenGLGraphicsApiHints.GreenColorBits": "OpenTK.Platform.OpenGLGraphicsApiHints.yml", + "OpenTK.Platform.OpenGLGraphicsApiHints.Multisamples": "OpenTK.Platform.OpenGLGraphicsApiHints.yml", + "OpenTK.Platform.OpenGLGraphicsApiHints.NoErrorFlag": "OpenTK.Platform.OpenGLGraphicsApiHints.yml", + "OpenTK.Platform.OpenGLGraphicsApiHints.PixelFormat": "OpenTK.Platform.OpenGLGraphicsApiHints.yml", + "OpenTK.Platform.OpenGLGraphicsApiHints.Profile": "OpenTK.Platform.OpenGLGraphicsApiHints.yml", + "OpenTK.Platform.OpenGLGraphicsApiHints.RedColorBits": "OpenTK.Platform.OpenGLGraphicsApiHints.yml", + "OpenTK.Platform.OpenGLGraphicsApiHints.ReleaseBehaviour": "OpenTK.Platform.OpenGLGraphicsApiHints.yml", + "OpenTK.Platform.OpenGLGraphicsApiHints.ResetIsolationFlag": "OpenTK.Platform.OpenGLGraphicsApiHints.yml", + "OpenTK.Platform.OpenGLGraphicsApiHints.ResetNotificationStrategy": "OpenTK.Platform.OpenGLGraphicsApiHints.yml", + "OpenTK.Platform.OpenGLGraphicsApiHints.RobustnessFlag": "OpenTK.Platform.OpenGLGraphicsApiHints.yml", + "OpenTK.Platform.OpenGLGraphicsApiHints.Selector": "OpenTK.Platform.OpenGLGraphicsApiHints.yml", + "OpenTK.Platform.OpenGLGraphicsApiHints.SharedContext": "OpenTK.Platform.OpenGLGraphicsApiHints.yml", + "OpenTK.Platform.OpenGLGraphicsApiHints.StencilBits": "OpenTK.Platform.OpenGLGraphicsApiHints.yml", + "OpenTK.Platform.OpenGLGraphicsApiHints.SwapMethod": "OpenTK.Platform.OpenGLGraphicsApiHints.yml", + "OpenTK.Platform.OpenGLGraphicsApiHints.UseFlushControl": "OpenTK.Platform.OpenGLGraphicsApiHints.yml", + "OpenTK.Platform.OpenGLGraphicsApiHints.UseSelectorOnMacOS": "OpenTK.Platform.OpenGLGraphicsApiHints.yml", + "OpenTK.Platform.OpenGLGraphicsApiHints.Version": "OpenTK.Platform.OpenGLGraphicsApiHints.yml", + "OpenTK.Platform.OpenGLGraphicsApiHints.sRGBFramebuffer": "OpenTK.Platform.OpenGLGraphicsApiHints.yml", + "OpenTK.Platform.OpenGLProfile": "OpenTK.Platform.OpenGLProfile.yml", + "OpenTK.Platform.OpenGLProfile.Compatibility": "OpenTK.Platform.OpenGLProfile.yml", + "OpenTK.Platform.OpenGLProfile.Core": "OpenTK.Platform.OpenGLProfile.yml", + "OpenTK.Platform.OpenGLProfile.None": "OpenTK.Platform.OpenGLProfile.yml", + "OpenTK.Platform.Pal2BindingsContext": "OpenTK.Platform.Pal2BindingsContext.yml", + "OpenTK.Platform.Pal2BindingsContext.#ctor(OpenTK.Platform.IOpenGLComponent,OpenTK.Platform.OpenGLContextHandle)": "OpenTK.Platform.Pal2BindingsContext.yml", + "OpenTK.Platform.Pal2BindingsContext.ContextHandle": "OpenTK.Platform.Pal2BindingsContext.yml", + "OpenTK.Platform.Pal2BindingsContext.GetProcAddress(System.String)": "OpenTK.Platform.Pal2BindingsContext.yml", + "OpenTK.Platform.Pal2BindingsContext.OpenGLComp": "OpenTK.Platform.Pal2BindingsContext.yml", + "OpenTK.Platform.PalComponents": "OpenTK.Platform.PalComponents.yml", + "OpenTK.Platform.PalComponents.Clipboard": "OpenTK.Platform.PalComponents.yml", + "OpenTK.Platform.PalComponents.ControllerInput": "OpenTK.Platform.PalComponents.yml", + "OpenTK.Platform.PalComponents.Dialog": "OpenTK.Platform.PalComponents.yml", + "OpenTK.Platform.PalComponents.Display": "OpenTK.Platform.PalComponents.yml", + "OpenTK.Platform.PalComponents.Joystick": "OpenTK.Platform.PalComponents.yml", + "OpenTK.Platform.PalComponents.KeyboardInput": "OpenTK.Platform.PalComponents.yml", + "OpenTK.Platform.PalComponents.MiceInput": "OpenTK.Platform.PalComponents.yml", + "OpenTK.Platform.PalComponents.MouseCursor": "OpenTK.Platform.PalComponents.yml", + "OpenTK.Platform.PalComponents.OpenGL": "OpenTK.Platform.PalComponents.yml", + "OpenTK.Platform.PalComponents.Shell": "OpenTK.Platform.PalComponents.yml", + "OpenTK.Platform.PalComponents.Surface": "OpenTK.Platform.PalComponents.yml", + "OpenTK.Platform.PalComponents.Vulkan": "OpenTK.Platform.PalComponents.yml", + "OpenTK.Platform.PalComponents.Window": "OpenTK.Platform.PalComponents.yml", + "OpenTK.Platform.PalComponents.WindowIcon": "OpenTK.Platform.PalComponents.yml", + "OpenTK.Platform.PalException": "OpenTK.Platform.PalException.yml", + "OpenTK.Platform.PalException.#ctor(OpenTK.Platform.IPalComponent)": "OpenTK.Platform.PalException.yml", + "OpenTK.Platform.PalException.#ctor(OpenTK.Platform.IPalComponent,System.String)": "OpenTK.Platform.PalException.yml", + "OpenTK.Platform.PalException.#ctor(OpenTK.Platform.IPalComponent,System.String,System.Exception)": "OpenTK.Platform.PalException.yml", + "OpenTK.Platform.PalException.Component": "OpenTK.Platform.PalException.yml", + "OpenTK.Platform.PalHandle": "OpenTK.Platform.PalHandle.yml", + "OpenTK.Platform.PalHandle.As``1(OpenTK.Platform.IPalComponent)": "OpenTK.Platform.PalHandle.yml", + "OpenTK.Platform.PalHandle.UserData": "OpenTK.Platform.PalHandle.yml", + "OpenTK.Platform.PalNotImplementedException": "OpenTK.Platform.PalNotImplementedException.yml", + "OpenTK.Platform.PalNotImplementedException.#ctor(OpenTK.Platform.IPalComponent)": "OpenTK.Platform.PalNotImplementedException.yml", + "OpenTK.Platform.PalNotImplementedException.#ctor(OpenTK.Platform.IPalComponent,System.String)": "OpenTK.Platform.PalNotImplementedException.yml", + "OpenTK.Platform.PlatformEventHandler": "OpenTK.Platform.PlatformEventHandler.yml", + "OpenTK.Platform.PlatformEventType": "OpenTK.Platform.PlatformEventType.yml", + "OpenTK.Platform.PlatformEventType.ClipboardUpdate": "OpenTK.Platform.PlatformEventType.yml", + "OpenTK.Platform.PlatformEventType.Close": "OpenTK.Platform.PlatformEventType.yml", + "OpenTK.Platform.PlatformEventType.DisplayConnectionChanged": "OpenTK.Platform.PlatformEventType.yml", + "OpenTK.Platform.PlatformEventType.FileDrop": "OpenTK.Platform.PlatformEventType.yml", + "OpenTK.Platform.PlatformEventType.Focus": "OpenTK.Platform.PlatformEventType.yml", + "OpenTK.Platform.PlatformEventType.InputLanguageChanged": "OpenTK.Platform.PlatformEventType.yml", + "OpenTK.Platform.PlatformEventType.KeyDown": "OpenTK.Platform.PlatformEventType.yml", + "OpenTK.Platform.PlatformEventType.KeyUp": "OpenTK.Platform.PlatformEventType.yml", + "OpenTK.Platform.PlatformEventType.MouseDown": "OpenTK.Platform.PlatformEventType.yml", + "OpenTK.Platform.PlatformEventType.MouseEnter": "OpenTK.Platform.PlatformEventType.yml", + "OpenTK.Platform.PlatformEventType.MouseMove": "OpenTK.Platform.PlatformEventType.yml", + "OpenTK.Platform.PlatformEventType.MouseUp": "OpenTK.Platform.PlatformEventType.yml", + "OpenTK.Platform.PlatformEventType.NoOperation": "OpenTK.Platform.PlatformEventType.yml", + "OpenTK.Platform.PlatformEventType.PowerStateChange": "OpenTK.Platform.PlatformEventType.yml", + "OpenTK.Platform.PlatformEventType.RawMouseMove": "OpenTK.Platform.PlatformEventType.yml", + "OpenTK.Platform.PlatformEventType.Scroll": "OpenTK.Platform.PlatformEventType.yml", + "OpenTK.Platform.PlatformEventType.TextEditing": "OpenTK.Platform.PlatformEventType.yml", + "OpenTK.Platform.PlatformEventType.TextInput": "OpenTK.Platform.PlatformEventType.yml", + "OpenTK.Platform.PlatformEventType.ThemeChange": "OpenTK.Platform.PlatformEventType.yml", + "OpenTK.Platform.PlatformEventType.WindowFramebufferResize": "OpenTK.Platform.PlatformEventType.yml", + "OpenTK.Platform.PlatformEventType.WindowModeChange": "OpenTK.Platform.PlatformEventType.yml", + "OpenTK.Platform.PlatformEventType.WindowMove": "OpenTK.Platform.PlatformEventType.yml", + "OpenTK.Platform.PlatformEventType.WindowResize": "OpenTK.Platform.PlatformEventType.yml", + "OpenTK.Platform.PlatformEventType.WindowScaleChange": "OpenTK.Platform.PlatformEventType.yml", + "OpenTK.Platform.PlatformException": "OpenTK.Platform.PlatformException.yml", + "OpenTK.Platform.PlatformException.#ctor": "OpenTK.Platform.PlatformException.yml", + "OpenTK.Platform.PlatformException.#ctor(System.String)": "OpenTK.Platform.PlatformException.yml", + "OpenTK.Platform.PowerStateChangeEventArgs": "OpenTK.Platform.PowerStateChangeEventArgs.yml", + "OpenTK.Platform.PowerStateChangeEventArgs.#ctor(System.Boolean)": "OpenTK.Platform.PowerStateChangeEventArgs.yml", + "OpenTK.Platform.PowerStateChangeEventArgs.GoingToSleep": "OpenTK.Platform.PowerStateChangeEventArgs.yml", + "OpenTK.Platform.RawMouseMoveEventArgs": "OpenTK.Platform.RawMouseMoveEventArgs.yml", + "OpenTK.Platform.RawMouseMoveEventArgs.#ctor(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2)": "OpenTK.Platform.RawMouseMoveEventArgs.yml", + "OpenTK.Platform.RawMouseMoveEventArgs.Delta": "OpenTK.Platform.RawMouseMoveEventArgs.yml", + "OpenTK.Platform.SaveDialogOptions": "OpenTK.Platform.SaveDialogOptions.yml", + "OpenTK.Platform.Scancode": "OpenTK.Platform.Scancode.yml", + "OpenTK.Platform.Scancode.A": "OpenTK.Platform.Scancode.yml", + "OpenTK.Platform.Scancode.Application": "OpenTK.Platform.Scancode.yml", + "OpenTK.Platform.Scancode.B": "OpenTK.Platform.Scancode.yml", + "OpenTK.Platform.Scancode.Backspace": "OpenTK.Platform.Scancode.yml", + "OpenTK.Platform.Scancode.C": "OpenTK.Platform.Scancode.yml", + "OpenTK.Platform.Scancode.CapsLock": "OpenTK.Platform.Scancode.yml", + "OpenTK.Platform.Scancode.Comma": "OpenTK.Platform.Scancode.yml", + "OpenTK.Platform.Scancode.D": "OpenTK.Platform.Scancode.yml", + "OpenTK.Platform.Scancode.D0": "OpenTK.Platform.Scancode.yml", + "OpenTK.Platform.Scancode.D1": "OpenTK.Platform.Scancode.yml", + "OpenTK.Platform.Scancode.D2": "OpenTK.Platform.Scancode.yml", + "OpenTK.Platform.Scancode.D3": "OpenTK.Platform.Scancode.yml", + "OpenTK.Platform.Scancode.D4": "OpenTK.Platform.Scancode.yml", + "OpenTK.Platform.Scancode.D5": "OpenTK.Platform.Scancode.yml", + "OpenTK.Platform.Scancode.D6": "OpenTK.Platform.Scancode.yml", + "OpenTK.Platform.Scancode.D7": "OpenTK.Platform.Scancode.yml", + "OpenTK.Platform.Scancode.D8": "OpenTK.Platform.Scancode.yml", + "OpenTK.Platform.Scancode.D9": "OpenTK.Platform.Scancode.yml", + "OpenTK.Platform.Scancode.Dash": "OpenTK.Platform.Scancode.yml", + "OpenTK.Platform.Scancode.Delete": "OpenTK.Platform.Scancode.yml", + "OpenTK.Platform.Scancode.DownArrow": "OpenTK.Platform.Scancode.yml", + "OpenTK.Platform.Scancode.E": "OpenTK.Platform.Scancode.yml", + "OpenTK.Platform.Scancode.End": "OpenTK.Platform.Scancode.yml", + "OpenTK.Platform.Scancode.Equals": "OpenTK.Platform.Scancode.yml", + "OpenTK.Platform.Scancode.Escape": "OpenTK.Platform.Scancode.yml", + "OpenTK.Platform.Scancode.F": "OpenTK.Platform.Scancode.yml", + "OpenTK.Platform.Scancode.F1": "OpenTK.Platform.Scancode.yml", + "OpenTK.Platform.Scancode.F10": "OpenTK.Platform.Scancode.yml", + "OpenTK.Platform.Scancode.F11": "OpenTK.Platform.Scancode.yml", + "OpenTK.Platform.Scancode.F12": "OpenTK.Platform.Scancode.yml", + "OpenTK.Platform.Scancode.F13": "OpenTK.Platform.Scancode.yml", + "OpenTK.Platform.Scancode.F14": "OpenTK.Platform.Scancode.yml", + "OpenTK.Platform.Scancode.F15": "OpenTK.Platform.Scancode.yml", + "OpenTK.Platform.Scancode.F16": "OpenTK.Platform.Scancode.yml", + "OpenTK.Platform.Scancode.F17": "OpenTK.Platform.Scancode.yml", + "OpenTK.Platform.Scancode.F18": "OpenTK.Platform.Scancode.yml", + "OpenTK.Platform.Scancode.F19": "OpenTK.Platform.Scancode.yml", + "OpenTK.Platform.Scancode.F2": "OpenTK.Platform.Scancode.yml", + "OpenTK.Platform.Scancode.F20": "OpenTK.Platform.Scancode.yml", + "OpenTK.Platform.Scancode.F21": "OpenTK.Platform.Scancode.yml", + "OpenTK.Platform.Scancode.F22": "OpenTK.Platform.Scancode.yml", + "OpenTK.Platform.Scancode.F23": "OpenTK.Platform.Scancode.yml", + "OpenTK.Platform.Scancode.F24": "OpenTK.Platform.Scancode.yml", + "OpenTK.Platform.Scancode.F3": "OpenTK.Platform.Scancode.yml", + "OpenTK.Platform.Scancode.F4": "OpenTK.Platform.Scancode.yml", + "OpenTK.Platform.Scancode.F5": "OpenTK.Platform.Scancode.yml", + "OpenTK.Platform.Scancode.F6": "OpenTK.Platform.Scancode.yml", + "OpenTK.Platform.Scancode.F7": "OpenTK.Platform.Scancode.yml", + "OpenTK.Platform.Scancode.F8": "OpenTK.Platform.Scancode.yml", + "OpenTK.Platform.Scancode.F9": "OpenTK.Platform.Scancode.yml", + "OpenTK.Platform.Scancode.G": "OpenTK.Platform.Scancode.yml", + "OpenTK.Platform.Scancode.GraveAccent": "OpenTK.Platform.Scancode.yml", + "OpenTK.Platform.Scancode.H": "OpenTK.Platform.Scancode.yml", + "OpenTK.Platform.Scancode.Home": "OpenTK.Platform.Scancode.yml", + "OpenTK.Platform.Scancode.I": "OpenTK.Platform.Scancode.yml", + "OpenTK.Platform.Scancode.Insert": "OpenTK.Platform.Scancode.yml", + "OpenTK.Platform.Scancode.International1": "OpenTK.Platform.Scancode.yml", + "OpenTK.Platform.Scancode.International2": "OpenTK.Platform.Scancode.yml", + "OpenTK.Platform.Scancode.International3": "OpenTK.Platform.Scancode.yml", + "OpenTK.Platform.Scancode.International4": "OpenTK.Platform.Scancode.yml", + "OpenTK.Platform.Scancode.International5": "OpenTK.Platform.Scancode.yml", + "OpenTK.Platform.Scancode.International6": "OpenTK.Platform.Scancode.yml", + "OpenTK.Platform.Scancode.J": "OpenTK.Platform.Scancode.yml", + "OpenTK.Platform.Scancode.K": "OpenTK.Platform.Scancode.yml", + "OpenTK.Platform.Scancode.Keypad0": "OpenTK.Platform.Scancode.yml", + "OpenTK.Platform.Scancode.Keypad1": "OpenTK.Platform.Scancode.yml", + "OpenTK.Platform.Scancode.Keypad2": "OpenTK.Platform.Scancode.yml", + "OpenTK.Platform.Scancode.Keypad3": "OpenTK.Platform.Scancode.yml", + "OpenTK.Platform.Scancode.Keypad4": "OpenTK.Platform.Scancode.yml", + "OpenTK.Platform.Scancode.Keypad5": "OpenTK.Platform.Scancode.yml", + "OpenTK.Platform.Scancode.Keypad6": "OpenTK.Platform.Scancode.yml", + "OpenTK.Platform.Scancode.Keypad7": "OpenTK.Platform.Scancode.yml", + "OpenTK.Platform.Scancode.Keypad8": "OpenTK.Platform.Scancode.yml", + "OpenTK.Platform.Scancode.Keypad9": "OpenTK.Platform.Scancode.yml", + "OpenTK.Platform.Scancode.KeypadComma": "OpenTK.Platform.Scancode.yml", + "OpenTK.Platform.Scancode.KeypadDash": "OpenTK.Platform.Scancode.yml", + "OpenTK.Platform.Scancode.KeypadEnter": "OpenTK.Platform.Scancode.yml", + "OpenTK.Platform.Scancode.KeypadEquals": "OpenTK.Platform.Scancode.yml", + "OpenTK.Platform.Scancode.KeypadForwardSlash": "OpenTK.Platform.Scancode.yml", + "OpenTK.Platform.Scancode.KeypadPeriod": "OpenTK.Platform.Scancode.yml", + "OpenTK.Platform.Scancode.KeypadPlus": "OpenTK.Platform.Scancode.yml", + "OpenTK.Platform.Scancode.KeypadStar": "OpenTK.Platform.Scancode.yml", + "OpenTK.Platform.Scancode.L": "OpenTK.Platform.Scancode.yml", + "OpenTK.Platform.Scancode.LANG1": "OpenTK.Platform.Scancode.yml", + "OpenTK.Platform.Scancode.LANG2": "OpenTK.Platform.Scancode.yml", + "OpenTK.Platform.Scancode.LANG3": "OpenTK.Platform.Scancode.yml", + "OpenTK.Platform.Scancode.LANG4": "OpenTK.Platform.Scancode.yml", + "OpenTK.Platform.Scancode.LANG5": "OpenTK.Platform.Scancode.yml", + "OpenTK.Platform.Scancode.LeftAlt": "OpenTK.Platform.Scancode.yml", + "OpenTK.Platform.Scancode.LeftApostrophe": "OpenTK.Platform.Scancode.yml", + "OpenTK.Platform.Scancode.LeftArrow": "OpenTK.Platform.Scancode.yml", + "OpenTK.Platform.Scancode.LeftBrace": "OpenTK.Platform.Scancode.yml", + "OpenTK.Platform.Scancode.LeftControl": "OpenTK.Platform.Scancode.yml", + "OpenTK.Platform.Scancode.LeftGUI": "OpenTK.Platform.Scancode.yml", + "OpenTK.Platform.Scancode.LeftShift": "OpenTK.Platform.Scancode.yml", + "OpenTK.Platform.Scancode.M": "OpenTK.Platform.Scancode.yml", + "OpenTK.Platform.Scancode.Mute": "OpenTK.Platform.Scancode.yml", + "OpenTK.Platform.Scancode.N": "OpenTK.Platform.Scancode.yml", + "OpenTK.Platform.Scancode.NonUSSlashBar": "OpenTK.Platform.Scancode.yml", + "OpenTK.Platform.Scancode.NumLock": "OpenTK.Platform.Scancode.yml", + "OpenTK.Platform.Scancode.O": "OpenTK.Platform.Scancode.yml", + "OpenTK.Platform.Scancode.P": "OpenTK.Platform.Scancode.yml", + "OpenTK.Platform.Scancode.PageDown": "OpenTK.Platform.Scancode.yml", + "OpenTK.Platform.Scancode.PageUp": "OpenTK.Platform.Scancode.yml", + "OpenTK.Platform.Scancode.Pause": "OpenTK.Platform.Scancode.yml", + "OpenTK.Platform.Scancode.Period": "OpenTK.Platform.Scancode.yml", + "OpenTK.Platform.Scancode.Pipe": "OpenTK.Platform.Scancode.yml", + "OpenTK.Platform.Scancode.PlayPause": "OpenTK.Platform.Scancode.yml", + "OpenTK.Platform.Scancode.PrintScreen": "OpenTK.Platform.Scancode.yml", + "OpenTK.Platform.Scancode.Q": "OpenTK.Platform.Scancode.yml", + "OpenTK.Platform.Scancode.QuestionMark": "OpenTK.Platform.Scancode.yml", + "OpenTK.Platform.Scancode.R": "OpenTK.Platform.Scancode.yml", + "OpenTK.Platform.Scancode.Return": "OpenTK.Platform.Scancode.yml", + "OpenTK.Platform.Scancode.RightAlt": "OpenTK.Platform.Scancode.yml", + "OpenTK.Platform.Scancode.RightArrow": "OpenTK.Platform.Scancode.yml", + "OpenTK.Platform.Scancode.RightBrace": "OpenTK.Platform.Scancode.yml", + "OpenTK.Platform.Scancode.RightControl": "OpenTK.Platform.Scancode.yml", + "OpenTK.Platform.Scancode.RightGUI": "OpenTK.Platform.Scancode.yml", + "OpenTK.Platform.Scancode.RightShift": "OpenTK.Platform.Scancode.yml", + "OpenTK.Platform.Scancode.S": "OpenTK.Platform.Scancode.yml", + "OpenTK.Platform.Scancode.ScanNextTrack": "OpenTK.Platform.Scancode.yml", + "OpenTK.Platform.Scancode.ScanPreviousTrack": "OpenTK.Platform.Scancode.yml", + "OpenTK.Platform.Scancode.ScrollLock": "OpenTK.Platform.Scancode.yml", + "OpenTK.Platform.Scancode.SemiColon": "OpenTK.Platform.Scancode.yml", + "OpenTK.Platform.Scancode.Spacebar": "OpenTK.Platform.Scancode.yml", + "OpenTK.Platform.Scancode.Stop": "OpenTK.Platform.Scancode.yml", + "OpenTK.Platform.Scancode.SystemPowerDown": "OpenTK.Platform.Scancode.yml", + "OpenTK.Platform.Scancode.SystemSleep": "OpenTK.Platform.Scancode.yml", + "OpenTK.Platform.Scancode.SystemWakeUp": "OpenTK.Platform.Scancode.yml", + "OpenTK.Platform.Scancode.T": "OpenTK.Platform.Scancode.yml", + "OpenTK.Platform.Scancode.Tab": "OpenTK.Platform.Scancode.yml", + "OpenTK.Platform.Scancode.U": "OpenTK.Platform.Scancode.yml", + "OpenTK.Platform.Scancode.Unknown": "OpenTK.Platform.Scancode.yml", + "OpenTK.Platform.Scancode.UpArrow": "OpenTK.Platform.Scancode.yml", + "OpenTK.Platform.Scancode.V": "OpenTK.Platform.Scancode.yml", + "OpenTK.Platform.Scancode.VolumeDecrement": "OpenTK.Platform.Scancode.yml", + "OpenTK.Platform.Scancode.VolumeIncrement": "OpenTK.Platform.Scancode.yml", + "OpenTK.Platform.Scancode.W": "OpenTK.Platform.Scancode.yml", + "OpenTK.Platform.Scancode.X": "OpenTK.Platform.Scancode.yml", + "OpenTK.Platform.Scancode.Y": "OpenTK.Platform.Scancode.yml", + "OpenTK.Platform.Scancode.Z": "OpenTK.Platform.Scancode.yml", + "OpenTK.Platform.ScrollEventArgs": "OpenTK.Platform.ScrollEventArgs.yml", + "OpenTK.Platform.ScrollEventArgs.#ctor(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2)": "OpenTK.Platform.ScrollEventArgs.yml", + "OpenTK.Platform.ScrollEventArgs.Delta": "OpenTK.Platform.ScrollEventArgs.yml", + "OpenTK.Platform.ScrollEventArgs.Distance": "OpenTK.Platform.ScrollEventArgs.yml", + "OpenTK.Platform.SurfaceHandle": "OpenTK.Platform.SurfaceHandle.yml", + "OpenTK.Platform.SurfaceType": "OpenTK.Platform.SurfaceType.yml", + "OpenTK.Platform.SurfaceType.Control": "OpenTK.Platform.SurfaceType.yml", + "OpenTK.Platform.SurfaceType.Display": "OpenTK.Platform.SurfaceType.yml", + "OpenTK.Platform.SystemCursorType": "OpenTK.Platform.SystemCursorType.yml", + "OpenTK.Platform.SystemCursorType.ArrowE": "OpenTK.Platform.SystemCursorType.yml", + "OpenTK.Platform.SystemCursorType.ArrowEW": "OpenTK.Platform.SystemCursorType.yml", + "OpenTK.Platform.SystemCursorType.ArrowFourway": "OpenTK.Platform.SystemCursorType.yml", + "OpenTK.Platform.SystemCursorType.ArrowN": "OpenTK.Platform.SystemCursorType.yml", + "OpenTK.Platform.SystemCursorType.ArrowNE": "OpenTK.Platform.SystemCursorType.yml", + "OpenTK.Platform.SystemCursorType.ArrowNESW": "OpenTK.Platform.SystemCursorType.yml", + "OpenTK.Platform.SystemCursorType.ArrowNS": "OpenTK.Platform.SystemCursorType.yml", + "OpenTK.Platform.SystemCursorType.ArrowNW": "OpenTK.Platform.SystemCursorType.yml", + "OpenTK.Platform.SystemCursorType.ArrowNWSE": "OpenTK.Platform.SystemCursorType.yml", + "OpenTK.Platform.SystemCursorType.ArrowS": "OpenTK.Platform.SystemCursorType.yml", + "OpenTK.Platform.SystemCursorType.ArrowSE": "OpenTK.Platform.SystemCursorType.yml", + "OpenTK.Platform.SystemCursorType.ArrowSW": "OpenTK.Platform.SystemCursorType.yml", + "OpenTK.Platform.SystemCursorType.ArrowUp": "OpenTK.Platform.SystemCursorType.yml", + "OpenTK.Platform.SystemCursorType.ArrowW": "OpenTK.Platform.SystemCursorType.yml", + "OpenTK.Platform.SystemCursorType.Cross": "OpenTK.Platform.SystemCursorType.yml", + "OpenTK.Platform.SystemCursorType.Default": "OpenTK.Platform.SystemCursorType.yml", + "OpenTK.Platform.SystemCursorType.Forbidden": "OpenTK.Platform.SystemCursorType.yml", + "OpenTK.Platform.SystemCursorType.Hand": "OpenTK.Platform.SystemCursorType.yml", + "OpenTK.Platform.SystemCursorType.Help": "OpenTK.Platform.SystemCursorType.yml", + "OpenTK.Platform.SystemCursorType.Loading": "OpenTK.Platform.SystemCursorType.yml", + "OpenTK.Platform.SystemCursorType.TextBeam": "OpenTK.Platform.SystemCursorType.yml", + "OpenTK.Platform.SystemCursorType.Wait": "OpenTK.Platform.SystemCursorType.yml", + "OpenTK.Platform.SystemIconType": "OpenTK.Platform.SystemIconType.yml", + "OpenTK.Platform.SystemIconType.Default": "OpenTK.Platform.SystemIconType.yml", + "OpenTK.Platform.SystemIconType.Error": "OpenTK.Platform.SystemIconType.yml", + "OpenTK.Platform.SystemIconType.Information": "OpenTK.Platform.SystemIconType.yml", + "OpenTK.Platform.SystemIconType.OperatingSystem": "OpenTK.Platform.SystemIconType.yml", + "OpenTK.Platform.SystemIconType.Question": "OpenTK.Platform.SystemIconType.yml", + "OpenTK.Platform.SystemIconType.Shield": "OpenTK.Platform.SystemIconType.yml", + "OpenTK.Platform.SystemIconType.Warning": "OpenTK.Platform.SystemIconType.yml", + "OpenTK.Platform.SystemMemoryInfo": "OpenTK.Platform.SystemMemoryInfo.yml", + "OpenTK.Platform.SystemMemoryInfo.AvailablePhysicalMemory": "OpenTK.Platform.SystemMemoryInfo.yml", + "OpenTK.Platform.SystemMemoryInfo.TotalPhysicalMemory": "OpenTK.Platform.SystemMemoryInfo.yml", + "OpenTK.Platform.TextEditingEventArgs": "OpenTK.Platform.TextEditingEventArgs.yml", + "OpenTK.Platform.TextEditingEventArgs.#ctor(OpenTK.Platform.WindowHandle,System.String,System.Int32,System.Int32)": "OpenTK.Platform.TextEditingEventArgs.yml", + "OpenTK.Platform.TextEditingEventArgs.Candidate": "OpenTK.Platform.TextEditingEventArgs.yml", + "OpenTK.Platform.TextEditingEventArgs.Cursor": "OpenTK.Platform.TextEditingEventArgs.yml", + "OpenTK.Platform.TextEditingEventArgs.Length": "OpenTK.Platform.TextEditingEventArgs.yml", + "OpenTK.Platform.TextInputEventArgs": "OpenTK.Platform.TextInputEventArgs.yml", + "OpenTK.Platform.TextInputEventArgs.#ctor(OpenTK.Platform.WindowHandle,System.String)": "OpenTK.Platform.TextInputEventArgs.yml", + "OpenTK.Platform.TextInputEventArgs.Text": "OpenTK.Platform.TextInputEventArgs.yml", + "OpenTK.Platform.ThemeChangeEventArgs": "OpenTK.Platform.ThemeChangeEventArgs.yml", + "OpenTK.Platform.ThemeChangeEventArgs.#ctor(OpenTK.Platform.ThemeInfo)": "OpenTK.Platform.ThemeChangeEventArgs.yml", + "OpenTK.Platform.ThemeChangeEventArgs.NewTheme": "OpenTK.Platform.ThemeChangeEventArgs.yml", + "OpenTK.Platform.ThemeInfo": "OpenTK.Platform.ThemeInfo.yml", + "OpenTK.Platform.ThemeInfo.Equals(OpenTK.Platform.ThemeInfo)": "OpenTK.Platform.ThemeInfo.yml", + "OpenTK.Platform.ThemeInfo.Equals(System.Object)": "OpenTK.Platform.ThemeInfo.yml", + "OpenTK.Platform.ThemeInfo.GetHashCode": "OpenTK.Platform.ThemeInfo.yml", + "OpenTK.Platform.ThemeInfo.HighContrast": "OpenTK.Platform.ThemeInfo.yml", + "OpenTK.Platform.ThemeInfo.Theme": "OpenTK.Platform.ThemeInfo.yml", + "OpenTK.Platform.ThemeInfo.ToString": "OpenTK.Platform.ThemeInfo.yml", + "OpenTK.Platform.ThemeInfo.op_Equality(OpenTK.Platform.ThemeInfo,OpenTK.Platform.ThemeInfo)": "OpenTK.Platform.ThemeInfo.yml", + "OpenTK.Platform.ThemeInfo.op_Inequality(OpenTK.Platform.ThemeInfo,OpenTK.Platform.ThemeInfo)": "OpenTK.Platform.ThemeInfo.yml", + "OpenTK.Platform.Toolkit": "OpenTK.Platform.Toolkit.yml", + "OpenTK.Platform.Toolkit.Clipboard": "OpenTK.Platform.Toolkit.yml", + "OpenTK.Platform.Toolkit.Cursor": "OpenTK.Platform.Toolkit.yml", + "OpenTK.Platform.Toolkit.Dialog": "OpenTK.Platform.Toolkit.yml", + "OpenTK.Platform.Toolkit.Display": "OpenTK.Platform.Toolkit.yml", + "OpenTK.Platform.Toolkit.Icon": "OpenTK.Platform.Toolkit.yml", + "OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions)": "OpenTK.Platform.Toolkit.yml", + "OpenTK.Platform.Toolkit.Joystick": "OpenTK.Platform.Toolkit.yml", + "OpenTK.Platform.Toolkit.Keyboard": "OpenTK.Platform.Toolkit.yml", + "OpenTK.Platform.Toolkit.Mouse": "OpenTK.Platform.Toolkit.yml", + "OpenTK.Platform.Toolkit.OpenGL": "OpenTK.Platform.Toolkit.yml", + "OpenTK.Platform.Toolkit.Shell": "OpenTK.Platform.Toolkit.yml", + "OpenTK.Platform.Toolkit.Surface": "OpenTK.Platform.Toolkit.yml", + "OpenTK.Platform.Toolkit.Vulkan": "OpenTK.Platform.Toolkit.yml", + "OpenTK.Platform.Toolkit.Window": "OpenTK.Platform.Toolkit.yml", + "OpenTK.Platform.ToolkitOptions": "OpenTK.Platform.ToolkitOptions.yml", + "OpenTK.Platform.ToolkitOptions.ApplicationName": "OpenTK.Platform.ToolkitOptions.yml", + "OpenTK.Platform.ToolkitOptions.Logger": "OpenTK.Platform.ToolkitOptions.yml", + "OpenTK.Platform.ToolkitOptions.MacOS": "OpenTK.Platform.ToolkitOptions.yml", + "OpenTK.Platform.ToolkitOptions.MacOSOptions": "OpenTK.Platform.ToolkitOptions.MacOSOptions.yml", + "OpenTK.Platform.ToolkitOptions.Windows": "OpenTK.Platform.ToolkitOptions.yml", + "OpenTK.Platform.ToolkitOptions.WindowsOptions": "OpenTK.Platform.ToolkitOptions.WindowsOptions.yml", + "OpenTK.Platform.ToolkitOptions.WindowsOptions.EnableVisualStyles": "OpenTK.Platform.ToolkitOptions.WindowsOptions.yml", + "OpenTK.Platform.ToolkitOptions.WindowsOptions.IsDPIAware": "OpenTK.Platform.ToolkitOptions.WindowsOptions.yml", + "OpenTK.Platform.ToolkitOptions.X11": "OpenTK.Platform.ToolkitOptions.yml", + "OpenTK.Platform.ToolkitOptions.X11Options": "OpenTK.Platform.ToolkitOptions.X11Options.yml", + "OpenTK.Platform.VideoMode": "OpenTK.Platform.VideoMode.yml", + "OpenTK.Platform.VideoMode.#ctor(System.Int32,System.Int32,System.Single,System.Int32)": "OpenTK.Platform.VideoMode.yml", + "OpenTK.Platform.VideoMode.BitsPerPixel": "OpenTK.Platform.VideoMode.yml", + "OpenTK.Platform.VideoMode.Height": "OpenTK.Platform.VideoMode.yml", + "OpenTK.Platform.VideoMode.RefreshRate": "OpenTK.Platform.VideoMode.yml", + "OpenTK.Platform.VideoMode.ToString": "OpenTK.Platform.VideoMode.yml", + "OpenTK.Platform.VideoMode.Width": "OpenTK.Platform.VideoMode.yml", + "OpenTK.Platform.WindowBorderStyle": "OpenTK.Platform.WindowBorderStyle.yml", + "OpenTK.Platform.WindowBorderStyle.Borderless": "OpenTK.Platform.WindowBorderStyle.yml", + "OpenTK.Platform.WindowBorderStyle.FixedBorder": "OpenTK.Platform.WindowBorderStyle.yml", + "OpenTK.Platform.WindowBorderStyle.ResizableBorder": "OpenTK.Platform.WindowBorderStyle.yml", + "OpenTK.Platform.WindowBorderStyle.ToolBox": "OpenTK.Platform.WindowBorderStyle.yml", + "OpenTK.Platform.WindowEventArgs": "OpenTK.Platform.WindowEventArgs.yml", + "OpenTK.Platform.WindowEventArgs.#ctor(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.WindowEventArgs.yml", + "OpenTK.Platform.WindowEventArgs.Window": "OpenTK.Platform.WindowEventArgs.yml", + "OpenTK.Platform.WindowEventHandler": "OpenTK.Platform.WindowEventHandler.yml", + "OpenTK.Platform.WindowFramebufferResizeEventArgs": "OpenTK.Platform.WindowFramebufferResizeEventArgs.yml", + "OpenTK.Platform.WindowFramebufferResizeEventArgs.#ctor(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i)": "OpenTK.Platform.WindowFramebufferResizeEventArgs.yml", + "OpenTK.Platform.WindowFramebufferResizeEventArgs.NewFramebufferSize": "OpenTK.Platform.WindowFramebufferResizeEventArgs.yml", + "OpenTK.Platform.WindowHandle": "OpenTK.Platform.WindowHandle.yml", + "OpenTK.Platform.WindowHandle.#ctor(OpenTK.Platform.GraphicsApiHints)": "OpenTK.Platform.WindowHandle.yml", + "OpenTK.Platform.WindowHandle.GraphicsApiHints": "OpenTK.Platform.WindowHandle.yml", + "OpenTK.Platform.WindowMode": "OpenTK.Platform.WindowMode.yml", + "OpenTK.Platform.WindowMode.ExclusiveFullscreen": "OpenTK.Platform.WindowMode.yml", + "OpenTK.Platform.WindowMode.Hidden": "OpenTK.Platform.WindowMode.yml", + "OpenTK.Platform.WindowMode.Maximized": "OpenTK.Platform.WindowMode.yml", + "OpenTK.Platform.WindowMode.Minimized": "OpenTK.Platform.WindowMode.yml", + "OpenTK.Platform.WindowMode.Normal": "OpenTK.Platform.WindowMode.yml", + "OpenTK.Platform.WindowMode.WindowedFullscreen": "OpenTK.Platform.WindowMode.yml", + "OpenTK.Platform.WindowModeChangeEventArgs": "OpenTK.Platform.WindowModeChangeEventArgs.yml", + "OpenTK.Platform.WindowModeChangeEventArgs.#ctor(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowMode)": "OpenTK.Platform.WindowModeChangeEventArgs.yml", + "OpenTK.Platform.WindowModeChangeEventArgs.NewMode": "OpenTK.Platform.WindowModeChangeEventArgs.yml", + "OpenTK.Platform.WindowMoveEventArgs": "OpenTK.Platform.WindowMoveEventArgs.yml", + "OpenTK.Platform.WindowMoveEventArgs.#ctor(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i,OpenTK.Mathematics.Vector2i)": "OpenTK.Platform.WindowMoveEventArgs.yml", + "OpenTK.Platform.WindowMoveEventArgs.ClientAreaPosition": "OpenTK.Platform.WindowMoveEventArgs.yml", + "OpenTK.Platform.WindowMoveEventArgs.WindowPosition": "OpenTK.Platform.WindowMoveEventArgs.yml", + "OpenTK.Platform.WindowResizeEventArgs": "OpenTK.Platform.WindowResizeEventArgs.yml", + "OpenTK.Platform.WindowResizeEventArgs.#ctor(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i,OpenTK.Mathematics.Vector2i)": "OpenTK.Platform.WindowResizeEventArgs.yml", + "OpenTK.Platform.WindowResizeEventArgs.NewClientSize": "OpenTK.Platform.WindowResizeEventArgs.yml", + "OpenTK.Platform.WindowResizeEventArgs.NewSize": "OpenTK.Platform.WindowResizeEventArgs.yml", + "OpenTK.Platform.WindowScaleChangeEventArgs": "OpenTK.Platform.WindowScaleChangeEventArgs.yml", + "OpenTK.Platform.WindowScaleChangeEventArgs.#ctor(OpenTK.Platform.WindowHandle,System.Single,System.Single)": "OpenTK.Platform.WindowScaleChangeEventArgs.yml", + "OpenTK.Platform.WindowScaleChangeEventArgs.ScaleX": "OpenTK.Platform.WindowScaleChangeEventArgs.yml", + "OpenTK.Platform.WindowScaleChangeEventArgs.ScaleY": "OpenTK.Platform.WindowScaleChangeEventArgs.yml", "OpenTK.Windowing.Common": "OpenTK.Windowing.Common.yml", "OpenTK.Windowing.Common.ContextAPI": "OpenTK.Windowing.Common.ContextAPI.yml", "OpenTK.Windowing.Common.ContextAPI.NoAPI": "OpenTK.Windowing.Common.ContextAPI.yml", @@ -9381,6 +9608,13 @@ "OpenTK.Windowing.Common.Input.MouseCursor.HResize": "OpenTK.Windowing.Common.Input.MouseCursor.yml", "OpenTK.Windowing.Common.Input.MouseCursor.Hand": "OpenTK.Windowing.Common.Input.MouseCursor.yml", "OpenTK.Windowing.Common.Input.MouseCursor.IBeam": "OpenTK.Windowing.Common.Input.MouseCursor.yml", + "OpenTK.Windowing.Common.Input.MouseCursor.NotAllowed": "OpenTK.Windowing.Common.Input.MouseCursor.yml", + "OpenTK.Windowing.Common.Input.MouseCursor.PointingHand": "OpenTK.Windowing.Common.Input.MouseCursor.yml", + "OpenTK.Windowing.Common.Input.MouseCursor.ResizeAll": "OpenTK.Windowing.Common.Input.MouseCursor.yml", + "OpenTK.Windowing.Common.Input.MouseCursor.ResizeEW": "OpenTK.Windowing.Common.Input.MouseCursor.yml", + "OpenTK.Windowing.Common.Input.MouseCursor.ResizeNESW": "OpenTK.Windowing.Common.Input.MouseCursor.yml", + "OpenTK.Windowing.Common.Input.MouseCursor.ResizeNS": "OpenTK.Windowing.Common.Input.MouseCursor.yml", + "OpenTK.Windowing.Common.Input.MouseCursor.ResizeNWSE": "OpenTK.Windowing.Common.Input.MouseCursor.yml", "OpenTK.Windowing.Common.Input.MouseCursor.Shape": "OpenTK.Windowing.Common.Input.MouseCursor.yml", "OpenTK.Windowing.Common.Input.MouseCursor.StandardShape": "OpenTK.Windowing.Common.Input.MouseCursor.StandardShape.yml", "OpenTK.Windowing.Common.Input.MouseCursor.StandardShape.Arrow": "OpenTK.Windowing.Common.Input.MouseCursor.StandardShape.yml", @@ -9389,6 +9623,13 @@ "OpenTK.Windowing.Common.Input.MouseCursor.StandardShape.HResize": "OpenTK.Windowing.Common.Input.MouseCursor.StandardShape.yml", "OpenTK.Windowing.Common.Input.MouseCursor.StandardShape.Hand": "OpenTK.Windowing.Common.Input.MouseCursor.StandardShape.yml", "OpenTK.Windowing.Common.Input.MouseCursor.StandardShape.IBeam": "OpenTK.Windowing.Common.Input.MouseCursor.StandardShape.yml", + "OpenTK.Windowing.Common.Input.MouseCursor.StandardShape.NotAllowed": "OpenTK.Windowing.Common.Input.MouseCursor.StandardShape.yml", + "OpenTK.Windowing.Common.Input.MouseCursor.StandardShape.PointingHand": "OpenTK.Windowing.Common.Input.MouseCursor.StandardShape.yml", + "OpenTK.Windowing.Common.Input.MouseCursor.StandardShape.ResizeAll": "OpenTK.Windowing.Common.Input.MouseCursor.StandardShape.yml", + "OpenTK.Windowing.Common.Input.MouseCursor.StandardShape.ResizeEW": "OpenTK.Windowing.Common.Input.MouseCursor.StandardShape.yml", + "OpenTK.Windowing.Common.Input.MouseCursor.StandardShape.ResizeNESW": "OpenTK.Windowing.Common.Input.MouseCursor.StandardShape.yml", + "OpenTK.Windowing.Common.Input.MouseCursor.StandardShape.ResizeNS": "OpenTK.Windowing.Common.Input.MouseCursor.StandardShape.yml", + "OpenTK.Windowing.Common.Input.MouseCursor.StandardShape.ResizeNWSE": "OpenTK.Windowing.Common.Input.MouseCursor.StandardShape.yml", "OpenTK.Windowing.Common.Input.MouseCursor.StandardShape.VResize": "OpenTK.Windowing.Common.Input.MouseCursor.StandardShape.yml", "OpenTK.Windowing.Common.Input.MouseCursor.VResize": "OpenTK.Windowing.Common.Input.MouseCursor.yml", "OpenTK.Windowing.Common.Input.MouseCursor.X": "OpenTK.Windowing.Common.Input.MouseCursor.yml", @@ -9486,6 +9727,7 @@ "OpenTK.Windowing.Desktop.GLFWProvider": "OpenTK.Windowing.Desktop.GLFWProvider.yml", "OpenTK.Windowing.Desktop.GLFWProvider.CheckForMainThread": "OpenTK.Windowing.Desktop.GLFWProvider.yml", "OpenTK.Windowing.Desktop.GLFWProvider.EnsureInitialized": "OpenTK.Windowing.Desktop.GLFWProvider.yml", + "OpenTK.Windowing.Desktop.GLFWProvider.HonorOpenTK4UseWayland": "OpenTK.Windowing.Desktop.GLFWProvider.yml", "OpenTK.Windowing.Desktop.GLFWProvider.IsOnMainThread": "OpenTK.Windowing.Desktop.GLFWProvider.yml", "OpenTK.Windowing.Desktop.GLFWProvider.SetErrorCallback(OpenTK.Windowing.GraphicsLibraryFramework.GLFWCallbacks.ErrorCallback)": "OpenTK.Windowing.Desktop.GLFWProvider.yml", "OpenTK.Windowing.Desktop.GameWindow": "OpenTK.Windowing.Desktop.GameWindow.yml", @@ -9691,6 +9933,14 @@ "OpenTK.Windowing.Desktop.NativeWindowSettings.WindowBorder": "OpenTK.Windowing.Desktop.NativeWindowSettings.yml", "OpenTK.Windowing.Desktop.NativeWindowSettings.WindowState": "OpenTK.Windowing.Desktop.NativeWindowSettings.yml", "OpenTK.Windowing.GraphicsLibraryFramework": "OpenTK.Windowing.GraphicsLibraryFramework.yml", + "OpenTK.Windowing.GraphicsLibraryFramework.ANGLEPlatformType": "OpenTK.Windowing.GraphicsLibraryFramework.ANGLEPlatformType.yml", + "OpenTK.Windowing.GraphicsLibraryFramework.ANGLEPlatformType.D3D11": "OpenTK.Windowing.GraphicsLibraryFramework.ANGLEPlatformType.yml", + "OpenTK.Windowing.GraphicsLibraryFramework.ANGLEPlatformType.D3D9": "OpenTK.Windowing.GraphicsLibraryFramework.ANGLEPlatformType.yml", + "OpenTK.Windowing.GraphicsLibraryFramework.ANGLEPlatformType.Metal": "OpenTK.Windowing.GraphicsLibraryFramework.ANGLEPlatformType.yml", + "OpenTK.Windowing.GraphicsLibraryFramework.ANGLEPlatformType.None": "OpenTK.Windowing.GraphicsLibraryFramework.ANGLEPlatformType.yml", + "OpenTK.Windowing.GraphicsLibraryFramework.ANGLEPlatformType.OpenGL": "OpenTK.Windowing.GraphicsLibraryFramework.ANGLEPlatformType.yml", + "OpenTK.Windowing.GraphicsLibraryFramework.ANGLEPlatformType.OpenGLES": "OpenTK.Windowing.GraphicsLibraryFramework.ANGLEPlatformType.yml", + "OpenTK.Windowing.GraphicsLibraryFramework.ANGLEPlatformType.Vulkan": "OpenTK.Windowing.GraphicsLibraryFramework.ANGLEPlatformType.yml", "OpenTK.Windowing.GraphicsLibraryFramework.ClientApi": "OpenTK.Windowing.GraphicsLibraryFramework.ClientApi.yml", "OpenTK.Windowing.GraphicsLibraryFramework.ClientApi.NoApi": "OpenTK.Windowing.GraphicsLibraryFramework.ClientApi.yml", "OpenTK.Windowing.GraphicsLibraryFramework.ClientApi.OpenGlApi": "OpenTK.Windowing.GraphicsLibraryFramework.ClientApi.yml", @@ -9703,6 +9953,7 @@ "OpenTK.Windowing.GraphicsLibraryFramework.ContextApi.NativeContextApi": "OpenTK.Windowing.GraphicsLibraryFramework.ContextApi.yml", "OpenTK.Windowing.GraphicsLibraryFramework.Cursor": "OpenTK.Windowing.GraphicsLibraryFramework.Cursor.yml", "OpenTK.Windowing.GraphicsLibraryFramework.CursorModeValue": "OpenTK.Windowing.GraphicsLibraryFramework.CursorModeValue.yml", + "OpenTK.Windowing.GraphicsLibraryFramework.CursorModeValue.CursorCaptured": "OpenTK.Windowing.GraphicsLibraryFramework.CursorModeValue.yml", "OpenTK.Windowing.GraphicsLibraryFramework.CursorModeValue.CursorDisabled": "OpenTK.Windowing.GraphicsLibraryFramework.CursorModeValue.yml", "OpenTK.Windowing.GraphicsLibraryFramework.CursorModeValue.CursorHidden": "OpenTK.Windowing.GraphicsLibraryFramework.CursorModeValue.yml", "OpenTK.Windowing.GraphicsLibraryFramework.CursorModeValue.CursorNormal": "OpenTK.Windowing.GraphicsLibraryFramework.CursorModeValue.yml", @@ -9712,11 +9963,21 @@ "OpenTK.Windowing.GraphicsLibraryFramework.CursorShape.HResize": "OpenTK.Windowing.GraphicsLibraryFramework.CursorShape.yml", "OpenTK.Windowing.GraphicsLibraryFramework.CursorShape.Hand": "OpenTK.Windowing.GraphicsLibraryFramework.CursorShape.yml", "OpenTK.Windowing.GraphicsLibraryFramework.CursorShape.IBeam": "OpenTK.Windowing.GraphicsLibraryFramework.CursorShape.yml", + "OpenTK.Windowing.GraphicsLibraryFramework.CursorShape.NotAllowed": "OpenTK.Windowing.GraphicsLibraryFramework.CursorShape.yml", + "OpenTK.Windowing.GraphicsLibraryFramework.CursorShape.PointingHand": "OpenTK.Windowing.GraphicsLibraryFramework.CursorShape.yml", + "OpenTK.Windowing.GraphicsLibraryFramework.CursorShape.ResizeAll": "OpenTK.Windowing.GraphicsLibraryFramework.CursorShape.yml", + "OpenTK.Windowing.GraphicsLibraryFramework.CursorShape.ResizeEW": "OpenTK.Windowing.GraphicsLibraryFramework.CursorShape.yml", + "OpenTK.Windowing.GraphicsLibraryFramework.CursorShape.ResizeNESW": "OpenTK.Windowing.GraphicsLibraryFramework.CursorShape.yml", + "OpenTK.Windowing.GraphicsLibraryFramework.CursorShape.ResizeNS": "OpenTK.Windowing.GraphicsLibraryFramework.CursorShape.yml", + "OpenTK.Windowing.GraphicsLibraryFramework.CursorShape.ResizeNWSE": "OpenTK.Windowing.GraphicsLibraryFramework.CursorShape.yml", "OpenTK.Windowing.GraphicsLibraryFramework.CursorShape.VResize": "OpenTK.Windowing.GraphicsLibraryFramework.CursorShape.yml", "OpenTK.Windowing.GraphicsLibraryFramework.CursorStateAttribute": "OpenTK.Windowing.GraphicsLibraryFramework.CursorStateAttribute.yml", "OpenTK.Windowing.GraphicsLibraryFramework.CursorStateAttribute.Cursor": "OpenTK.Windowing.GraphicsLibraryFramework.CursorStateAttribute.yml", "OpenTK.Windowing.GraphicsLibraryFramework.ErrorCode": "OpenTK.Windowing.GraphicsLibraryFramework.ErrorCode.yml", "OpenTK.Windowing.GraphicsLibraryFramework.ErrorCode.ApiUnavailable": "OpenTK.Windowing.GraphicsLibraryFramework.ErrorCode.yml", + "OpenTK.Windowing.GraphicsLibraryFramework.ErrorCode.CursorUnavailable": "OpenTK.Windowing.GraphicsLibraryFramework.ErrorCode.yml", + "OpenTK.Windowing.GraphicsLibraryFramework.ErrorCode.FeatureUnavailable": "OpenTK.Windowing.GraphicsLibraryFramework.ErrorCode.yml", + "OpenTK.Windowing.GraphicsLibraryFramework.ErrorCode.FeatureUnimplemented": "OpenTK.Windowing.GraphicsLibraryFramework.ErrorCode.yml", "OpenTK.Windowing.GraphicsLibraryFramework.ErrorCode.FormatUnavailable": "OpenTK.Windowing.GraphicsLibraryFramework.ErrorCode.yml", "OpenTK.Windowing.GraphicsLibraryFramework.ErrorCode.InvalidEnum": "OpenTK.Windowing.GraphicsLibraryFramework.ErrorCode.yml", "OpenTK.Windowing.GraphicsLibraryFramework.ErrorCode.InvalidValue": "OpenTK.Windowing.GraphicsLibraryFramework.ErrorCode.yml", @@ -9726,8 +9987,10 @@ "OpenTK.Windowing.GraphicsLibraryFramework.ErrorCode.NotInitialized": "OpenTK.Windowing.GraphicsLibraryFramework.ErrorCode.yml", "OpenTK.Windowing.GraphicsLibraryFramework.ErrorCode.OutOfMemory": "OpenTK.Windowing.GraphicsLibraryFramework.ErrorCode.yml", "OpenTK.Windowing.GraphicsLibraryFramework.ErrorCode.PlatformError": "OpenTK.Windowing.GraphicsLibraryFramework.ErrorCode.yml", + "OpenTK.Windowing.GraphicsLibraryFramework.ErrorCode.PlatformUnavailable": "OpenTK.Windowing.GraphicsLibraryFramework.ErrorCode.yml", "OpenTK.Windowing.GraphicsLibraryFramework.ErrorCode.VersionUnavailable": "OpenTK.Windowing.GraphicsLibraryFramework.ErrorCode.yml", "OpenTK.Windowing.GraphicsLibraryFramework.GLFW": "OpenTK.Windowing.GraphicsLibraryFramework.GLFW.yml", + "OpenTK.Windowing.GraphicsLibraryFramework.GLFW.AnyPosition": "OpenTK.Windowing.GraphicsLibraryFramework.GLFW.yml", "OpenTK.Windowing.GraphicsLibraryFramework.GLFW.CreateCursor(OpenTK.Windowing.GraphicsLibraryFramework.Image@,System.Int32,System.Int32)": "OpenTK.Windowing.GraphicsLibraryFramework.GLFW.yml", "OpenTK.Windowing.GraphicsLibraryFramework.GLFW.CreateCursorRaw(OpenTK.Windowing.GraphicsLibraryFramework.Image*,System.Int32,System.Int32)": "OpenTK.Windowing.GraphicsLibraryFramework.GLFW.yml", "OpenTK.Windowing.GraphicsLibraryFramework.GLFW.CreateStandardCursor(OpenTK.Windowing.GraphicsLibraryFramework.CursorShape)": "OpenTK.Windowing.GraphicsLibraryFramework.GLFW.yml", @@ -9744,6 +10007,7 @@ "OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetClipboardString(OpenTK.Windowing.GraphicsLibraryFramework.Window*)": "OpenTK.Windowing.GraphicsLibraryFramework.GLFW.yml", "OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetClipboardStringRaw(OpenTK.Windowing.GraphicsLibraryFramework.Window*)": "OpenTK.Windowing.GraphicsLibraryFramework.GLFW.yml", "OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetCocoaMonitor(OpenTK.Windowing.GraphicsLibraryFramework.Monitor*)": "OpenTK.Windowing.GraphicsLibraryFramework.GLFW.yml", + "OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetCocoaView(OpenTK.Windowing.GraphicsLibraryFramework.Window*)": "OpenTK.Windowing.GraphicsLibraryFramework.GLFW.yml", "OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetCocoaWindow(OpenTK.Windowing.GraphicsLibraryFramework.Window*)": "OpenTK.Windowing.GraphicsLibraryFramework.GLFW.yml", "OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetCurrentContext": "OpenTK.Windowing.GraphicsLibraryFramework.GLFW.yml", "OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetCursorPos(OpenTK.Windowing.GraphicsLibraryFramework.Window*,System.Double@,System.Double@)": "OpenTK.Windowing.GraphicsLibraryFramework.GLFW.yml", @@ -9805,6 +10069,7 @@ "OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetOSMesaContext(OpenTK.Windowing.GraphicsLibraryFramework.Window*)": "OpenTK.Windowing.GraphicsLibraryFramework.GLFW.yml", "OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetOSMesaDepthBuffer(OpenTK.Windowing.GraphicsLibraryFramework.Window*,System.Int32@,System.Int32@,System.Int32@,System.IntPtr@)": "OpenTK.Windowing.GraphicsLibraryFramework.GLFW.yml", "OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetPhysicalDevicePresentationSupport(OpenTK.Windowing.GraphicsLibraryFramework.VkHandle,OpenTK.Windowing.GraphicsLibraryFramework.VkHandle,System.Int32)": "OpenTK.Windowing.GraphicsLibraryFramework.GLFW.yml", + "OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetPlatform": "OpenTK.Windowing.GraphicsLibraryFramework.GLFW.yml", "OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetPrimaryMonitor": "OpenTK.Windowing.GraphicsLibraryFramework.GLFW.yml", "OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetProcAddress(System.String)": "OpenTK.Windowing.GraphicsLibraryFramework.GLFW.yml", "OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetProcAddressRaw(System.Byte*)": "OpenTK.Windowing.GraphicsLibraryFramework.GLFW.yml", @@ -9843,6 +10108,8 @@ "OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetWindowPosRaw(OpenTK.Windowing.GraphicsLibraryFramework.Window*,System.Int32*,System.Int32*)": "OpenTK.Windowing.GraphicsLibraryFramework.GLFW.yml", "OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetWindowSize(OpenTK.Windowing.GraphicsLibraryFramework.Window*,System.Int32@,System.Int32@)": "OpenTK.Windowing.GraphicsLibraryFramework.GLFW.yml", "OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetWindowSizeRaw(OpenTK.Windowing.GraphicsLibraryFramework.Window*,System.Int32*,System.Int32*)": "OpenTK.Windowing.GraphicsLibraryFramework.GLFW.yml", + "OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetWindowTitle(OpenTK.Windowing.GraphicsLibraryFramework.Window*)": "OpenTK.Windowing.GraphicsLibraryFramework.GLFW.yml", + "OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetWindowTitleRaw(OpenTK.Windowing.GraphicsLibraryFramework.Window*)": "OpenTK.Windowing.GraphicsLibraryFramework.GLFW.yml", "OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetWindowUserPointer(OpenTK.Windowing.GraphicsLibraryFramework.Window*)": "OpenTK.Windowing.GraphicsLibraryFramework.GLFW.yml", "OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetX11Adapter(OpenTK.Windowing.GraphicsLibraryFramework.Monitor*)": "OpenTK.Windowing.GraphicsLibraryFramework.GLFW.yml", "OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetX11Display": "OpenTK.Windowing.GraphicsLibraryFramework.GLFW.yml", @@ -9852,12 +10119,17 @@ "OpenTK.Windowing.GraphicsLibraryFramework.GLFW.HideWindow(OpenTK.Windowing.GraphicsLibraryFramework.Window*)": "OpenTK.Windowing.GraphicsLibraryFramework.GLFW.yml", "OpenTK.Windowing.GraphicsLibraryFramework.GLFW.IconifyWindow(OpenTK.Windowing.GraphicsLibraryFramework.Window*)": "OpenTK.Windowing.GraphicsLibraryFramework.GLFW.yml", "OpenTK.Windowing.GraphicsLibraryFramework.GLFW.Init": "OpenTK.Windowing.GraphicsLibraryFramework.GLFW.yml", + "OpenTK.Windowing.GraphicsLibraryFramework.GLFW.InitAllocator(OpenTK.Windowing.GraphicsLibraryFramework.GLFWallocator@)": "OpenTK.Windowing.GraphicsLibraryFramework.GLFW.yml", + "OpenTK.Windowing.GraphicsLibraryFramework.GLFW.InitHint(OpenTK.Windowing.GraphicsLibraryFramework.InitHintANGLEPlatformType,OpenTK.Windowing.GraphicsLibraryFramework.ANGLEPlatformType)": "OpenTK.Windowing.GraphicsLibraryFramework.GLFW.yml", "OpenTK.Windowing.GraphicsLibraryFramework.GLFW.InitHint(OpenTK.Windowing.GraphicsLibraryFramework.InitHintBool,System.Boolean)": "OpenTK.Windowing.GraphicsLibraryFramework.GLFW.yml", "OpenTK.Windowing.GraphicsLibraryFramework.GLFW.InitHint(OpenTK.Windowing.GraphicsLibraryFramework.InitHintInt,System.Int32)": "OpenTK.Windowing.GraphicsLibraryFramework.GLFW.yml", + "OpenTK.Windowing.GraphicsLibraryFramework.GLFW.InitHint(OpenTK.Windowing.GraphicsLibraryFramework.InitHintPlatform,OpenTK.Windowing.GraphicsLibraryFramework.Platform)": "OpenTK.Windowing.GraphicsLibraryFramework.GLFW.yml", + "OpenTK.Windowing.GraphicsLibraryFramework.GLFW.InitVulkanLoader(System.IntPtr)": "OpenTK.Windowing.GraphicsLibraryFramework.GLFW.yml", "OpenTK.Windowing.GraphicsLibraryFramework.GLFW.JoystickIsGamepad(System.Int32)": "OpenTK.Windowing.GraphicsLibraryFramework.GLFW.yml", "OpenTK.Windowing.GraphicsLibraryFramework.GLFW.JoystickPresent(System.Int32)": "OpenTK.Windowing.GraphicsLibraryFramework.GLFW.yml", "OpenTK.Windowing.GraphicsLibraryFramework.GLFW.MakeContextCurrent(OpenTK.Windowing.GraphicsLibraryFramework.Window*)": "OpenTK.Windowing.GraphicsLibraryFramework.GLFW.yml", "OpenTK.Windowing.GraphicsLibraryFramework.GLFW.MaximizeWindow(OpenTK.Windowing.GraphicsLibraryFramework.Window*)": "OpenTK.Windowing.GraphicsLibraryFramework.GLFW.yml", + "OpenTK.Windowing.GraphicsLibraryFramework.GLFW.PlatformSupported(OpenTK.Windowing.GraphicsLibraryFramework.Platform)": "OpenTK.Windowing.GraphicsLibraryFramework.GLFW.yml", "OpenTK.Windowing.GraphicsLibraryFramework.GLFW.PollEvents": "OpenTK.Windowing.GraphicsLibraryFramework.GLFW.yml", "OpenTK.Windowing.GraphicsLibraryFramework.GLFW.PostEmptyEvent": "OpenTK.Windowing.GraphicsLibraryFramework.GLFW.yml", "OpenTK.Windowing.GraphicsLibraryFramework.GLFW.RawMouseMotionSupported": "OpenTK.Windowing.GraphicsLibraryFramework.GLFW.yml", @@ -9959,6 +10231,14 @@ "OpenTK.Windowing.GraphicsLibraryFramework.GLFWException.#ctor(System.String,OpenTK.Windowing.GraphicsLibraryFramework.ErrorCode)": "OpenTK.Windowing.GraphicsLibraryFramework.GLFWException.yml", "OpenTK.Windowing.GraphicsLibraryFramework.GLFWException.#ctor(System.String,System.Exception)": "OpenTK.Windowing.GraphicsLibraryFramework.GLFWException.yml", "OpenTK.Windowing.GraphicsLibraryFramework.GLFWException.ErrorCode": "OpenTK.Windowing.GraphicsLibraryFramework.GLFWException.yml", + "OpenTK.Windowing.GraphicsLibraryFramework.GLFWallocatefun": "OpenTK.Windowing.GraphicsLibraryFramework.GLFWallocatefun.yml", + "OpenTK.Windowing.GraphicsLibraryFramework.GLFWallocator": "OpenTK.Windowing.GraphicsLibraryFramework.GLFWallocator.yml", + "OpenTK.Windowing.GraphicsLibraryFramework.GLFWallocator.Allocate": "OpenTK.Windowing.GraphicsLibraryFramework.GLFWallocator.yml", + "OpenTK.Windowing.GraphicsLibraryFramework.GLFWallocator.Deallocate": "OpenTK.Windowing.GraphicsLibraryFramework.GLFWallocator.yml", + "OpenTK.Windowing.GraphicsLibraryFramework.GLFWallocator.Reallocate": "OpenTK.Windowing.GraphicsLibraryFramework.GLFWallocator.yml", + "OpenTK.Windowing.GraphicsLibraryFramework.GLFWallocator.User": "OpenTK.Windowing.GraphicsLibraryFramework.GLFWallocator.yml", + "OpenTK.Windowing.GraphicsLibraryFramework.GLFWdeallocatefun": "OpenTK.Windowing.GraphicsLibraryFramework.GLFWdeallocatefun.yml", + "OpenTK.Windowing.GraphicsLibraryFramework.GLFWreallocatefun": "OpenTK.Windowing.GraphicsLibraryFramework.GLFWreallocatefun.yml", "OpenTK.Windowing.GraphicsLibraryFramework.GamepadState": "OpenTK.Windowing.GraphicsLibraryFramework.GamepadState.yml", "OpenTK.Windowing.GraphicsLibraryFramework.GamepadState.Axes": "OpenTK.Windowing.GraphicsLibraryFramework.GamepadState.yml", "OpenTK.Windowing.GraphicsLibraryFramework.GamepadState.Buttons": "OpenTK.Windowing.GraphicsLibraryFramework.GamepadState.yml", @@ -9972,11 +10252,17 @@ "OpenTK.Windowing.GraphicsLibraryFramework.Image.Height": "OpenTK.Windowing.GraphicsLibraryFramework.Image.yml", "OpenTK.Windowing.GraphicsLibraryFramework.Image.Pixels": "OpenTK.Windowing.GraphicsLibraryFramework.Image.yml", "OpenTK.Windowing.GraphicsLibraryFramework.Image.Width": "OpenTK.Windowing.GraphicsLibraryFramework.Image.yml", + "OpenTK.Windowing.GraphicsLibraryFramework.InitHintANGLEPlatformType": "OpenTK.Windowing.GraphicsLibraryFramework.InitHintANGLEPlatformType.yml", + "OpenTK.Windowing.GraphicsLibraryFramework.InitHintANGLEPlatformType.ANGLEPlatformType": "OpenTK.Windowing.GraphicsLibraryFramework.InitHintANGLEPlatformType.yml", "OpenTK.Windowing.GraphicsLibraryFramework.InitHintBool": "OpenTK.Windowing.GraphicsLibraryFramework.InitHintBool.yml", "OpenTK.Windowing.GraphicsLibraryFramework.InitHintBool.CocoaChdirResources": "OpenTK.Windowing.GraphicsLibraryFramework.InitHintBool.yml", "OpenTK.Windowing.GraphicsLibraryFramework.InitHintBool.CocoaMenubar": "OpenTK.Windowing.GraphicsLibraryFramework.InitHintBool.yml", "OpenTK.Windowing.GraphicsLibraryFramework.InitHintBool.JoystickHatButtons": "OpenTK.Windowing.GraphicsLibraryFramework.InitHintBool.yml", + "OpenTK.Windowing.GraphicsLibraryFramework.InitHintBool.X11XcbVulkanSurface": "OpenTK.Windowing.GraphicsLibraryFramework.InitHintBool.yml", "OpenTK.Windowing.GraphicsLibraryFramework.InitHintInt": "OpenTK.Windowing.GraphicsLibraryFramework.InitHintInt.yml", + "OpenTK.Windowing.GraphicsLibraryFramework.InitHintInt.WaylandLibDecor": "OpenTK.Windowing.GraphicsLibraryFramework.InitHintInt.yml", + "OpenTK.Windowing.GraphicsLibraryFramework.InitHintPlatform": "OpenTK.Windowing.GraphicsLibraryFramework.InitHintPlatform.yml", + "OpenTK.Windowing.GraphicsLibraryFramework.InitHintPlatform.Platform": "OpenTK.Windowing.GraphicsLibraryFramework.InitHintPlatform.yml", "OpenTK.Windowing.GraphicsLibraryFramework.InputAction": "OpenTK.Windowing.GraphicsLibraryFramework.InputAction.yml", "OpenTK.Windowing.GraphicsLibraryFramework.InputAction.Press": "OpenTK.Windowing.GraphicsLibraryFramework.InputAction.yml", "OpenTK.Windowing.GraphicsLibraryFramework.InputAction.Release": "OpenTK.Windowing.GraphicsLibraryFramework.InputAction.yml", @@ -10186,6 +10472,13 @@ "OpenTK.Windowing.GraphicsLibraryFramework.OpenGlProfile.Any": "OpenTK.Windowing.GraphicsLibraryFramework.OpenGlProfile.yml", "OpenTK.Windowing.GraphicsLibraryFramework.OpenGlProfile.Compat": "OpenTK.Windowing.GraphicsLibraryFramework.OpenGlProfile.yml", "OpenTK.Windowing.GraphicsLibraryFramework.OpenGlProfile.Core": "OpenTK.Windowing.GraphicsLibraryFramework.OpenGlProfile.yml", + "OpenTK.Windowing.GraphicsLibraryFramework.Platform": "OpenTK.Windowing.GraphicsLibraryFramework.Platform.yml", + "OpenTK.Windowing.GraphicsLibraryFramework.Platform.Any": "OpenTK.Windowing.GraphicsLibraryFramework.Platform.yml", + "OpenTK.Windowing.GraphicsLibraryFramework.Platform.Cocoa": "OpenTK.Windowing.GraphicsLibraryFramework.Platform.yml", + "OpenTK.Windowing.GraphicsLibraryFramework.Platform.Null": "OpenTK.Windowing.GraphicsLibraryFramework.Platform.yml", + "OpenTK.Windowing.GraphicsLibraryFramework.Platform.Wayland": "OpenTK.Windowing.GraphicsLibraryFramework.Platform.yml", + "OpenTK.Windowing.GraphicsLibraryFramework.Platform.Win32": "OpenTK.Windowing.GraphicsLibraryFramework.Platform.yml", + "OpenTK.Windowing.GraphicsLibraryFramework.Platform.X11": "OpenTK.Windowing.GraphicsLibraryFramework.Platform.yml", "OpenTK.Windowing.GraphicsLibraryFramework.RawMouseMotionAttribute": "OpenTK.Windowing.GraphicsLibraryFramework.RawMouseMotionAttribute.yml", "OpenTK.Windowing.GraphicsLibraryFramework.RawMouseMotionAttribute.RawMouseMotion": "OpenTK.Windowing.GraphicsLibraryFramework.RawMouseMotionAttribute.yml", "OpenTK.Windowing.GraphicsLibraryFramework.ReleaseBehavior": "OpenTK.Windowing.GraphicsLibraryFramework.ReleaseBehavior.yml", @@ -10207,19 +10500,24 @@ "OpenTK.Windowing.GraphicsLibraryFramework.VideoMode.RefreshRate": "OpenTK.Windowing.GraphicsLibraryFramework.VideoMode.yml", "OpenTK.Windowing.GraphicsLibraryFramework.VideoMode.Width": "OpenTK.Windowing.GraphicsLibraryFramework.VideoMode.yml", "OpenTK.Windowing.GraphicsLibraryFramework.VkHandle": "OpenTK.Windowing.GraphicsLibraryFramework.VkHandle.yml", - "OpenTK.Windowing.GraphicsLibraryFramework.VkHandle.#ctor(System.IntPtr)": "OpenTK.Windowing.GraphicsLibraryFramework.VkHandle.yml", + "OpenTK.Windowing.GraphicsLibraryFramework.VkHandle.#ctor(System.UInt64)": "OpenTK.Windowing.GraphicsLibraryFramework.VkHandle.yml", "OpenTK.Windowing.GraphicsLibraryFramework.VkHandle.Handle": "OpenTK.Windowing.GraphicsLibraryFramework.VkHandle.yml", + "OpenTK.Windowing.GraphicsLibraryFramework.WaylandLibDecor": "OpenTK.Windowing.GraphicsLibraryFramework.WaylandLibDecor.yml", + "OpenTK.Windowing.GraphicsLibraryFramework.WaylandLibDecor.DisableLibDecor": "OpenTK.Windowing.GraphicsLibraryFramework.WaylandLibDecor.yml", + "OpenTK.Windowing.GraphicsLibraryFramework.WaylandLibDecor.PreferLibDecor": "OpenTK.Windowing.GraphicsLibraryFramework.WaylandLibDecor.yml", "OpenTK.Windowing.GraphicsLibraryFramework.Window": "OpenTK.Windowing.GraphicsLibraryFramework.Window.yml", "OpenTK.Windowing.GraphicsLibraryFramework.WindowAttribute": "OpenTK.Windowing.GraphicsLibraryFramework.WindowAttribute.yml", "OpenTK.Windowing.GraphicsLibraryFramework.WindowAttribute.AutoIconify": "OpenTK.Windowing.GraphicsLibraryFramework.WindowAttribute.yml", "OpenTK.Windowing.GraphicsLibraryFramework.WindowAttribute.Decorated": "OpenTK.Windowing.GraphicsLibraryFramework.WindowAttribute.yml", "OpenTK.Windowing.GraphicsLibraryFramework.WindowAttribute.Floating": "OpenTK.Windowing.GraphicsLibraryFramework.WindowAttribute.yml", "OpenTK.Windowing.GraphicsLibraryFramework.WindowAttribute.FocusOnShow": "OpenTK.Windowing.GraphicsLibraryFramework.WindowAttribute.yml", + "OpenTK.Windowing.GraphicsLibraryFramework.WindowAttribute.MousePassthrough": "OpenTK.Windowing.GraphicsLibraryFramework.WindowAttribute.yml", "OpenTK.Windowing.GraphicsLibraryFramework.WindowAttribute.Resizable": "OpenTK.Windowing.GraphicsLibraryFramework.WindowAttribute.yml", "OpenTK.Windowing.GraphicsLibraryFramework.WindowAttributeGetBool": "OpenTK.Windowing.GraphicsLibraryFramework.WindowAttributeGetBool.yml", "OpenTK.Windowing.GraphicsLibraryFramework.WindowAttributeGetBool.AutoIconify": "OpenTK.Windowing.GraphicsLibraryFramework.WindowAttributeGetBool.yml", "OpenTK.Windowing.GraphicsLibraryFramework.WindowAttributeGetBool.ContextNoError": "OpenTK.Windowing.GraphicsLibraryFramework.WindowAttributeGetBool.yml", "OpenTK.Windowing.GraphicsLibraryFramework.WindowAttributeGetBool.Decorated": "OpenTK.Windowing.GraphicsLibraryFramework.WindowAttributeGetBool.yml", + "OpenTK.Windowing.GraphicsLibraryFramework.WindowAttributeGetBool.DoubleBuffer": "OpenTK.Windowing.GraphicsLibraryFramework.WindowAttributeGetBool.yml", "OpenTK.Windowing.GraphicsLibraryFramework.WindowAttributeGetBool.Floating": "OpenTK.Windowing.GraphicsLibraryFramework.WindowAttributeGetBool.yml", "OpenTK.Windowing.GraphicsLibraryFramework.WindowAttributeGetBool.FocusOnShow": "OpenTK.Windowing.GraphicsLibraryFramework.WindowAttributeGetBool.yml", "OpenTK.Windowing.GraphicsLibraryFramework.WindowAttributeGetBool.Focused": "OpenTK.Windowing.GraphicsLibraryFramework.WindowAttributeGetBool.yml", @@ -10249,6 +10547,8 @@ "OpenTK.Windowing.GraphicsLibraryFramework.WindowHintBool": "OpenTK.Windowing.GraphicsLibraryFramework.WindowHintBool.yml", "OpenTK.Windowing.GraphicsLibraryFramework.WindowHintBool.AutoIconify": "OpenTK.Windowing.GraphicsLibraryFramework.WindowHintBool.yml", "OpenTK.Windowing.GraphicsLibraryFramework.WindowHintBool.CenterCursor": "OpenTK.Windowing.GraphicsLibraryFramework.WindowHintBool.yml", + "OpenTK.Windowing.GraphicsLibraryFramework.WindowHintBool.CocoaGraphicsSwitching": "OpenTK.Windowing.GraphicsLibraryFramework.WindowHintBool.yml", + "OpenTK.Windowing.GraphicsLibraryFramework.WindowHintBool.CocoaRetinaFramebuffer": "OpenTK.Windowing.GraphicsLibraryFramework.WindowHintBool.yml", "OpenTK.Windowing.GraphicsLibraryFramework.WindowHintBool.ContextNoError": "OpenTK.Windowing.GraphicsLibraryFramework.WindowHintBool.yml", "OpenTK.Windowing.GraphicsLibraryFramework.WindowHintBool.Decorated": "OpenTK.Windowing.GraphicsLibraryFramework.WindowHintBool.yml", "OpenTK.Windowing.GraphicsLibraryFramework.WindowHintBool.DoubleBuffer": "OpenTK.Windowing.GraphicsLibraryFramework.WindowHintBool.yml", @@ -10262,10 +10562,14 @@ "OpenTK.Windowing.GraphicsLibraryFramework.WindowHintBool.OpenGLDebugContext": "OpenTK.Windowing.GraphicsLibraryFramework.WindowHintBool.yml", "OpenTK.Windowing.GraphicsLibraryFramework.WindowHintBool.OpenGLForwardCompat": "OpenTK.Windowing.GraphicsLibraryFramework.WindowHintBool.yml", "OpenTK.Windowing.GraphicsLibraryFramework.WindowHintBool.Resizable": "OpenTK.Windowing.GraphicsLibraryFramework.WindowHintBool.yml", + "OpenTK.Windowing.GraphicsLibraryFramework.WindowHintBool.ScaleFramebuffer": "OpenTK.Windowing.GraphicsLibraryFramework.WindowHintBool.yml", + "OpenTK.Windowing.GraphicsLibraryFramework.WindowHintBool.ScaleToMonitor": "OpenTK.Windowing.GraphicsLibraryFramework.WindowHintBool.yml", "OpenTK.Windowing.GraphicsLibraryFramework.WindowHintBool.SrgbCapable": "OpenTK.Windowing.GraphicsLibraryFramework.WindowHintBool.yml", "OpenTK.Windowing.GraphicsLibraryFramework.WindowHintBool.Stereo": "OpenTK.Windowing.GraphicsLibraryFramework.WindowHintBool.yml", "OpenTK.Windowing.GraphicsLibraryFramework.WindowHintBool.TransparentFramebuffer": "OpenTK.Windowing.GraphicsLibraryFramework.WindowHintBool.yml", "OpenTK.Windowing.GraphicsLibraryFramework.WindowHintBool.Visible": "OpenTK.Windowing.GraphicsLibraryFramework.WindowHintBool.yml", + "OpenTK.Windowing.GraphicsLibraryFramework.WindowHintBool.Win32KeyboardMenu": "OpenTK.Windowing.GraphicsLibraryFramework.WindowHintBool.yml", + "OpenTK.Windowing.GraphicsLibraryFramework.WindowHintBool.Win32ShowDefault": "OpenTK.Windowing.GraphicsLibraryFramework.WindowHintBool.yml", "OpenTK.Windowing.GraphicsLibraryFramework.WindowHintClientApi": "OpenTK.Windowing.GraphicsLibraryFramework.WindowHintClientApi.yml", "OpenTK.Windowing.GraphicsLibraryFramework.WindowHintClientApi.ClientApi": "OpenTK.Windowing.GraphicsLibraryFramework.WindowHintClientApi.yml", "OpenTK.Windowing.GraphicsLibraryFramework.WindowHintContextApi": "OpenTK.Windowing.GraphicsLibraryFramework.WindowHintContextApi.yml", @@ -10283,6 +10587,8 @@ "OpenTK.Windowing.GraphicsLibraryFramework.WindowHintInt.ContextVersionMinor": "OpenTK.Windowing.GraphicsLibraryFramework.WindowHintInt.yml", "OpenTK.Windowing.GraphicsLibraryFramework.WindowHintInt.DepthBits": "OpenTK.Windowing.GraphicsLibraryFramework.WindowHintInt.yml", "OpenTK.Windowing.GraphicsLibraryFramework.WindowHintInt.GreenBits": "OpenTK.Windowing.GraphicsLibraryFramework.WindowHintInt.yml", + "OpenTK.Windowing.GraphicsLibraryFramework.WindowHintInt.PositionX": "OpenTK.Windowing.GraphicsLibraryFramework.WindowHintInt.yml", + "OpenTK.Windowing.GraphicsLibraryFramework.WindowHintInt.PositionY": "OpenTK.Windowing.GraphicsLibraryFramework.WindowHintInt.yml", "OpenTK.Windowing.GraphicsLibraryFramework.WindowHintInt.RedBits": "OpenTK.Windowing.GraphicsLibraryFramework.WindowHintInt.yml", "OpenTK.Windowing.GraphicsLibraryFramework.WindowHintInt.RefreshRate": "OpenTK.Windowing.GraphicsLibraryFramework.WindowHintInt.yml", "OpenTK.Windowing.GraphicsLibraryFramework.WindowHintInt.Samples": "OpenTK.Windowing.GraphicsLibraryFramework.WindowHintInt.yml", @@ -10295,6 +10601,7 @@ "OpenTK.Windowing.GraphicsLibraryFramework.WindowHintRobustness.ContextRobustness": "OpenTK.Windowing.GraphicsLibraryFramework.WindowHintRobustness.yml", "OpenTK.Windowing.GraphicsLibraryFramework.WindowHintString": "OpenTK.Windowing.GraphicsLibraryFramework.WindowHintString.yml", "OpenTK.Windowing.GraphicsLibraryFramework.WindowHintString.CocoaFrameName": "OpenTK.Windowing.GraphicsLibraryFramework.WindowHintString.yml", + "OpenTK.Windowing.GraphicsLibraryFramework.WindowHintString.WaylandAppID": "OpenTK.Windowing.GraphicsLibraryFramework.WindowHintString.yml", "OpenTK.Windowing.GraphicsLibraryFramework.WindowHintString.X11ClassName": "OpenTK.Windowing.GraphicsLibraryFramework.WindowHintString.yml", "OpenTK.Windowing.GraphicsLibraryFramework.WindowHintString.X11InstanceName": "OpenTK.Windowing.GraphicsLibraryFramework.WindowHintString.yml" } \ No newline at end of file diff --git a/api/OpenTK.Audio.OpenAL.AL.EXTDouble.yml b/api/OpenTK.Audio.OpenAL.AL.EXTDouble.yml index 4c0c224e..c1810cc4 100644 --- a/api/OpenTK.Audio.OpenAL.AL.EXTDouble.yml +++ b/api/OpenTK.Audio.OpenAL.AL.EXTDouble.yml @@ -19,12 +19,8 @@ items: fullName: OpenTK.Audio.OpenAL.AL.EXTDouble type: Class source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/EXT.Double/EXTDouble.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: EXTDouble - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/EXT.Double/EXTDouble.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\EXT.Double\EXTDouble.cs startLine: 16 assemblies: - OpenTK.Audio.OpenAL @@ -57,12 +53,8 @@ items: fullName: OpenTK.Audio.OpenAL.AL.EXTDouble.ExtensionName type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/EXT.Double/EXTDouble.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ExtensionName - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/EXT.Double/EXTDouble.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\EXT.Double\EXTDouble.cs startLine: 21 assemblies: - OpenTK.Audio.OpenAL @@ -86,12 +78,8 @@ items: fullName: OpenTK.Audio.OpenAL.AL.EXTDouble.IsExtensionPresent() type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/EXT.Double/EXTDouble.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: IsExtensionPresent - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/EXT.Double/EXTDouble.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\EXT.Double\EXTDouble.cs startLine: 37 assemblies: - OpenTK.Audio.OpenAL @@ -195,12 +183,8 @@ items: fullName: OpenTK.Audio.OpenAL.AL.EXTDouble.BufferData(int, OpenTK.Audio.OpenAL.DoubleBufferFormat, double[], int) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/EXT.Double/EXTDouble.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: BufferData - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/EXT.Double/EXTDouble.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\EXT.Double\EXTDouble.cs startLine: 68 assemblies: - OpenTK.Audio.OpenAL @@ -239,12 +223,8 @@ items: fullName: OpenTK.Audio.OpenAL.AL.EXTDouble.BufferData(int, OpenTK.Audio.OpenAL.DoubleBufferFormat, System.Span, int) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/EXT.Double/EXTDouble.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: BufferData - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/EXT.Double/EXTDouble.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\EXT.Double\EXTDouble.cs startLine: 78 assemblies: - OpenTK.Audio.OpenAL diff --git a/api/OpenTK.Audio.OpenAL.AL.EXTFloat32.yml b/api/OpenTK.Audio.OpenAL.AL.EXTFloat32.yml index d0782a85..c471a606 100644 --- a/api/OpenTK.Audio.OpenAL.AL.EXTFloat32.yml +++ b/api/OpenTK.Audio.OpenAL.AL.EXTFloat32.yml @@ -19,12 +19,8 @@ items: fullName: OpenTK.Audio.OpenAL.AL.EXTFloat32 type: Class source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/EXT.Float32/EXTFloat32.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: EXTFloat32 - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/EXT.Float32/EXTFloat32.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\EXT.Float32\EXTFloat32.cs startLine: 16 assemblies: - OpenTK.Audio.OpenAL @@ -57,12 +53,8 @@ items: fullName: OpenTK.Audio.OpenAL.AL.EXTFloat32.ExtensionName type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/EXT.Float32/EXTFloat32.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ExtensionName - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/EXT.Float32/EXTFloat32.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\EXT.Float32\EXTFloat32.cs startLine: 21 assemblies: - OpenTK.Audio.OpenAL @@ -86,12 +78,8 @@ items: fullName: OpenTK.Audio.OpenAL.AL.EXTFloat32.IsExtensionPresent() type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/EXT.Float32/EXTFloat32.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: IsExtensionPresent - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/EXT.Float32/EXTFloat32.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\EXT.Float32\EXTFloat32.cs startLine: 37 assemblies: - OpenTK.Audio.OpenAL @@ -195,12 +183,8 @@ items: fullName: OpenTK.Audio.OpenAL.AL.EXTFloat32.BufferData(int, OpenTK.Audio.OpenAL.FloatBufferFormat, float[], int) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/EXT.Float32/EXTFloat32.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: BufferData - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/EXT.Float32/EXTFloat32.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\EXT.Float32\EXTFloat32.cs startLine: 68 assemblies: - OpenTK.Audio.OpenAL @@ -239,12 +223,8 @@ items: fullName: OpenTK.Audio.OpenAL.AL.EXTFloat32.BufferData(int, OpenTK.Audio.OpenAL.FloatBufferFormat, System.Span, int) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/EXT.Float32/EXTFloat32.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: BufferData - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/EXT.Float32/EXTFloat32.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\EXT.Float32\EXTFloat32.cs startLine: 78 assemblies: - OpenTK.Audio.OpenAL diff --git a/api/OpenTK.Audio.OpenAL.AL.LoopPoints.yml b/api/OpenTK.Audio.OpenAL.AL.LoopPoints.yml index 59bb3ab2..301cc4b0 100644 --- a/api/OpenTK.Audio.OpenAL.AL.LoopPoints.yml +++ b/api/OpenTK.Audio.OpenAL.AL.LoopPoints.yml @@ -19,12 +19,8 @@ items: fullName: OpenTK.Audio.OpenAL.AL.LoopPoints type: Class source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/SOFT.LoopPoints/LoopPoints.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: LoopPoints - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/SOFT.LoopPoints/LoopPoints.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\SOFT.LoopPoints\LoopPoints.cs startLine: 7 assemblies: - OpenTK.Audio.OpenAL @@ -57,12 +53,8 @@ items: fullName: OpenTK.Audio.OpenAL.AL.LoopPoints.ExtensionName type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/SOFT.LoopPoints/LoopPoints.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ExtensionName - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/SOFT.LoopPoints/LoopPoints.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\SOFT.LoopPoints\LoopPoints.cs startLine: 9 assemblies: - OpenTK.Audio.OpenAL @@ -84,12 +76,8 @@ items: fullName: OpenTK.Audio.OpenAL.AL.LoopPoints.IsExtensionPresent() type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/SOFT.LoopPoints/LoopPoints.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: IsExtensionPresent - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/SOFT.LoopPoints/LoopPoints.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\SOFT.LoopPoints\LoopPoints.cs startLine: 25 assemblies: - OpenTK.Audio.OpenAL @@ -171,12 +159,8 @@ items: fullName: OpenTK.Audio.OpenAL.AL.LoopPoints.Buffer(int, OpenTK.Audio.OpenAL.BufferLoopPoint, System.ReadOnlySpan) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/SOFT.LoopPoints/LoopPoints.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Buffer - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/SOFT.LoopPoints/LoopPoints.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\SOFT.LoopPoints\LoopPoints.cs startLine: 36 assemblies: - OpenTK.Audio.OpenAL @@ -207,12 +191,8 @@ items: fullName: OpenTK.Audio.OpenAL.AL.LoopPoints.Buffer(int, OpenTK.Audio.OpenAL.BufferLoopPoint, int, int) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/SOFT.LoopPoints/LoopPoints.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Buffer - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/SOFT.LoopPoints/LoopPoints.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\SOFT.LoopPoints\LoopPoints.cs startLine: 41 assemblies: - OpenTK.Audio.OpenAL diff --git a/api/OpenTK.Audio.OpenAL.AL.SourceLatency.yml b/api/OpenTK.Audio.OpenAL.AL.SourceLatency.yml index dce84c5f..210f1b47 100644 --- a/api/OpenTK.Audio.OpenAL.AL.SourceLatency.yml +++ b/api/OpenTK.Audio.OpenAL.AL.SourceLatency.yml @@ -25,12 +25,8 @@ items: fullName: OpenTK.Audio.OpenAL.AL.SourceLatency type: Class source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/SOFT.SourceLatency/SourceLatency.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SourceLatency - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/SOFT.SourceLatency/SourceLatency.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\SOFT.SourceLatency\SourceLatency.cs startLine: 8 assemblies: - OpenTK.Audio.OpenAL @@ -63,12 +59,8 @@ items: fullName: OpenTK.Audio.OpenAL.AL.SourceLatency.ExtensionName type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/SOFT.SourceLatency/SourceLatency.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ExtensionName - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/SOFT.SourceLatency/SourceLatency.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\SOFT.SourceLatency\SourceLatency.cs startLine: 13 assemblies: - OpenTK.Audio.OpenAL @@ -92,12 +84,8 @@ items: fullName: OpenTK.Audio.OpenAL.AL.SourceLatency.IsExtensionPresent() type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/SOFT.SourceLatency/SourceLatency.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: IsExtensionPresent - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/SOFT.SourceLatency/SourceLatency.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\SOFT.SourceLatency\SourceLatency.cs startLine: 29 assemblies: - OpenTK.Audio.OpenAL @@ -123,12 +111,8 @@ items: fullName: OpenTK.Audio.OpenAL.AL.SourceLatency.GetSource(int, OpenTK.Audio.OpenAL.SourceLatencyVector2i, long*) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/SOFT.SourceLatency/SourceLatency.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetSource - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/SOFT.SourceLatency/SourceLatency.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\SOFT.SourceLatency\SourceLatency.cs startLine: 35 assemblies: - OpenTK.Audio.OpenAL @@ -159,12 +143,8 @@ items: fullName: OpenTK.Audio.OpenAL.AL.SourceLatency.GetSource(int, OpenTK.Audio.OpenAL.SourceLatencyVector2i, long[]) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/SOFT.SourceLatency/SourceLatency.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetSource - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/SOFT.SourceLatency/SourceLatency.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\SOFT.SourceLatency\SourceLatency.cs startLine: 45 assemblies: - OpenTK.Audio.OpenAL @@ -195,12 +175,8 @@ items: fullName: OpenTK.Audio.OpenAL.AL.SourceLatency.GetSource(int, OpenTK.Audio.OpenAL.SourceLatencyVector2d, double*) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/SOFT.SourceLatency/SourceLatency.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetSource - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/SOFT.SourceLatency/SourceLatency.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\SOFT.SourceLatency\SourceLatency.cs startLine: 50 assemblies: - OpenTK.Audio.OpenAL @@ -231,12 +207,8 @@ items: fullName: OpenTK.Audio.OpenAL.AL.SourceLatency.GetSource(int, OpenTK.Audio.OpenAL.SourceLatencyVector2d, double[]) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/SOFT.SourceLatency/SourceLatency.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetSource - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/SOFT.SourceLatency/SourceLatency.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\SOFT.SourceLatency\SourceLatency.cs startLine: 60 assemblies: - OpenTK.Audio.OpenAL @@ -267,12 +239,8 @@ items: fullName: OpenTK.Audio.OpenAL.AL.SourceLatency.GetSource(int, OpenTK.Audio.OpenAL.SourceLatencyVector2i, out long, out long) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/SOFT.SourceLatency/SourceLatency.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetSource - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/SOFT.SourceLatency/SourceLatency.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\SOFT.SourceLatency\SourceLatency.cs startLine: 66 assemblies: - OpenTK.Audio.OpenAL @@ -305,12 +273,8 @@ items: fullName: OpenTK.Audio.OpenAL.AL.SourceLatency.GetSource(int, OpenTK.Audio.OpenAL.SourceLatencyVector2i, System.Span) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/SOFT.SourceLatency/SourceLatency.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetSource - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/SOFT.SourceLatency/SourceLatency.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\SOFT.SourceLatency\SourceLatency.cs startLine: 74 assemblies: - OpenTK.Audio.OpenAL @@ -341,12 +305,8 @@ items: fullName: OpenTK.Audio.OpenAL.AL.SourceLatency.GetSource(int, OpenTK.Audio.OpenAL.SourceLatencyVector2i, out int, out int, out long) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/SOFT.SourceLatency/SourceLatency.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetSource - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/SOFT.SourceLatency/SourceLatency.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\SOFT.SourceLatency\SourceLatency.cs startLine: 79 assemblies: - OpenTK.Audio.OpenAL @@ -381,12 +341,8 @@ items: fullName: OpenTK.Audio.OpenAL.AL.SourceLatency.GetSource(int, OpenTK.Audio.OpenAL.SourceLatencyVector2d, out double, out double) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/SOFT.SourceLatency/SourceLatency.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetSource - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/SOFT.SourceLatency/SourceLatency.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\SOFT.SourceLatency\SourceLatency.cs startLine: 89 assemblies: - OpenTK.Audio.OpenAL @@ -419,12 +375,8 @@ items: fullName: OpenTK.Audio.OpenAL.AL.SourceLatency.GetSource(int, OpenTK.Audio.OpenAL.SourceLatencyVector2d, System.Span) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/SOFT.SourceLatency/SourceLatency.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetSource - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/SOFT.SourceLatency/SourceLatency.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\SOFT.SourceLatency\SourceLatency.cs startLine: 97 assemblies: - OpenTK.Audio.OpenAL @@ -455,12 +407,8 @@ items: fullName: OpenTK.Audio.OpenAL.AL.SourceLatency.GetSource(int, OpenTK.Audio.OpenAL.SourceLatencyVector2d, out OpenTK.Mathematics.Vector2d) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/SOFT.SourceLatency/SourceLatency.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetSource - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/SOFT.SourceLatency/SourceLatency.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\SOFT.SourceLatency\SourceLatency.cs startLine: 102 assemblies: - OpenTK.Audio.OpenAL diff --git a/api/OpenTK.Audio.OpenAL.AL.yml b/api/OpenTK.Audio.OpenAL.AL.yml index 7a5c0c55..36f3f6c7 100644 --- a/api/OpenTK.Audio.OpenAL.AL.yml +++ b/api/OpenTK.Audio.OpenAL.AL.yml @@ -131,12 +131,8 @@ items: fullName: OpenTK.Audio.OpenAL.AL type: Class source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/SOFT.SourceLatency/SourceLatency.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: AL - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/SOFT.SourceLatency/SourceLatency.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\SOFT.SourceLatency\SourceLatency.cs startLine: 6 assemblies: - OpenTK.Audio.OpenAL @@ -273,12 +269,8 @@ items: fullName: OpenTK.Audio.OpenAL.AL.GetErrorString(OpenTK.Audio.OpenAL.ALError) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/AL.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetErrorString - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/AL.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\AL.cs startLine: 68 assemblies: - OpenTK.Audio.OpenAL @@ -541,12 +533,8 @@ items: fullName: OpenTK.Audio.OpenAL.AL.Listener(OpenTK.Audio.OpenAL.ALListener3f, ref OpenTK.Mathematics.Vector3) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/AL.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Listener - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/AL.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\AL.cs startLine: 167 assemblies: - OpenTK.Audio.OpenAL @@ -669,12 +657,8 @@ items: fullName: OpenTK.Audio.OpenAL.AL.Listener(OpenTK.Audio.OpenAL.ALListenerfv, ref OpenTK.Mathematics.Vector3, ref OpenTK.Mathematics.Vector3) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/AL.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Listener - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/AL.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\AL.cs startLine: 197 assemblies: - OpenTK.Audio.OpenAL @@ -740,12 +724,8 @@ items: fullName: OpenTK.Audio.OpenAL.AL.GetListener(OpenTK.Audio.OpenAL.ALListenerf) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/AL.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetListener - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/AL.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\AL.cs startLine: 227 assemblies: - OpenTK.Audio.OpenAL @@ -811,12 +791,8 @@ items: fullName: OpenTK.Audio.OpenAL.AL.GetListener(OpenTK.Audio.OpenAL.ALListener3f, out OpenTK.Mathematics.Vector3) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/AL.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetListener - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/AL.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\AL.cs startLine: 245 assemblies: - OpenTK.Audio.OpenAL @@ -849,12 +825,8 @@ items: fullName: OpenTK.Audio.OpenAL.AL.GetListener(OpenTK.Audio.OpenAL.ALListener3f) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/AL.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetListener - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/AL.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\AL.cs startLine: 253 assemblies: - OpenTK.Audio.OpenAL @@ -974,12 +946,8 @@ items: fullName: OpenTK.Audio.OpenAL.AL.GetListener(OpenTK.Audio.OpenAL.ALListenerfv, out OpenTK.Mathematics.Vector3, out OpenTK.Mathematics.Vector3) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/AL.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetListener - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/AL.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\AL.cs startLine: 284 assemblies: - OpenTK.Audio.OpenAL @@ -1105,12 +1073,8 @@ items: fullName: OpenTK.Audio.OpenAL.AL.GenSources(int[]) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/AL.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GenSources - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/AL.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\AL.cs startLine: 363 assemblies: - OpenTK.Audio.OpenAL @@ -1140,12 +1104,8 @@ items: fullName: OpenTK.Audio.OpenAL.AL.GenSources(System.Span) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/AL.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GenSources - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/AL.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\AL.cs startLine: 374 assemblies: - OpenTK.Audio.OpenAL @@ -1175,12 +1135,8 @@ items: fullName: OpenTK.Audio.OpenAL.AL.GenSources(int) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/AL.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GenSources - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/AL.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\AL.cs startLine: 382 assemblies: - OpenTK.Audio.OpenAL @@ -1213,12 +1169,8 @@ items: fullName: OpenTK.Audio.OpenAL.AL.GenSource() type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/AL.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GenSource - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/AL.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\AL.cs startLine: 391 assemblies: - OpenTK.Audio.OpenAL @@ -1244,12 +1196,8 @@ items: fullName: OpenTK.Audio.OpenAL.AL.GenSource(out int) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/AL.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GenSource - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/AL.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\AL.cs startLine: 400 assemblies: - OpenTK.Audio.OpenAL @@ -1339,12 +1287,8 @@ items: fullName: OpenTK.Audio.OpenAL.AL.DeleteSources(int[]) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/AL.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DeleteSources - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/AL.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\AL.cs startLine: 422 assemblies: - OpenTK.Audio.OpenAL @@ -1374,12 +1318,8 @@ items: fullName: OpenTK.Audio.OpenAL.AL.DeleteSources(System.ReadOnlySpan) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/AL.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DeleteSources - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/AL.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\AL.cs startLine: 433 assemblies: - OpenTK.Audio.OpenAL @@ -1409,12 +1349,8 @@ items: fullName: OpenTK.Audio.OpenAL.AL.DeleteSource(int) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/AL.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DeleteSource - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/AL.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\AL.cs startLine: 440 assemblies: - OpenTK.Audio.OpenAL @@ -1546,12 +1482,8 @@ items: fullName: OpenTK.Audio.OpenAL.AL.Source(int, OpenTK.Audio.OpenAL.ALSource3f, ref OpenTK.Mathematics.Vector3) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/AL.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Source - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/AL.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\AL.cs startLine: 474 assemblies: - OpenTK.Audio.OpenAL @@ -1725,12 +1657,8 @@ items: fullName: OpenTK.Audio.OpenAL.AL.GetSource(int, OpenTK.Audio.OpenAL.ALSourcef) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/AL.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetSource - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/AL.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\AL.cs startLine: 520 assemblies: - OpenTK.Audio.OpenAL @@ -1805,12 +1733,8 @@ items: fullName: OpenTK.Audio.OpenAL.AL.GetSource(int, OpenTK.Audio.OpenAL.ALSource3f, out OpenTK.Mathematics.Vector3) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/AL.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetSource - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/AL.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\AL.cs startLine: 540 assemblies: - OpenTK.Audio.OpenAL @@ -1846,12 +1770,8 @@ items: fullName: OpenTK.Audio.OpenAL.AL.GetSource(int, OpenTK.Audio.OpenAL.ALSource3f) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/AL.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetSource - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/AL.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\AL.cs startLine: 549 assemblies: - OpenTK.Audio.OpenAL @@ -1926,12 +1846,8 @@ items: fullName: OpenTK.Audio.OpenAL.AL.GetSource(int, OpenTK.Audio.OpenAL.ALSource3i, out OpenTK.Mathematics.Vector3i) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/AL.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetSource - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/AL.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\AL.cs startLine: 570 assemblies: - OpenTK.Audio.OpenAL @@ -1967,12 +1883,8 @@ items: fullName: OpenTK.Audio.OpenAL.AL.GetSource(int, OpenTK.Audio.OpenAL.ALSource3i) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/AL.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetSource - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/AL.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\AL.cs startLine: 579 assemblies: - OpenTK.Audio.OpenAL @@ -2041,12 +1953,8 @@ items: fullName: OpenTK.Audio.OpenAL.AL.GetSource(int, OpenTK.Audio.OpenAL.ALGetSourcei) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/AL.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetSource - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/AL.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\AL.cs startLine: 598 assemblies: - OpenTK.Audio.OpenAL @@ -2082,12 +1990,8 @@ items: fullName: OpenTK.Audio.OpenAL.AL.GetSource(int, OpenTK.Audio.OpenAL.ALSourceb, out bool) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/AL.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetSource - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/AL.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\AL.cs startLine: 608 assemblies: - OpenTK.Audio.OpenAL @@ -2123,12 +2027,8 @@ items: fullName: OpenTK.Audio.OpenAL.AL.GetSource(int, OpenTK.Audio.OpenAL.ALSourceb) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/AL.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetSource - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/AL.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\AL.cs startLine: 618 assemblies: - OpenTK.Audio.OpenAL @@ -2254,12 +2154,8 @@ items: fullName: OpenTK.Audio.OpenAL.AL.SourcePlay(System.ReadOnlySpan) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/AL.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SourcePlay - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/AL.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\AL.cs startLine: 652 assemblies: - OpenTK.Audio.OpenAL @@ -2379,12 +2275,8 @@ items: fullName: OpenTK.Audio.OpenAL.AL.SourceStop(System.ReadOnlySpan) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/AL.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SourceStop - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/AL.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\AL.cs startLine: 680 assemblies: - OpenTK.Audio.OpenAL @@ -2504,12 +2396,8 @@ items: fullName: OpenTK.Audio.OpenAL.AL.SourceRewind(System.ReadOnlySpan) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/AL.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SourceRewind - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/AL.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\AL.cs startLine: 708 assemblies: - OpenTK.Audio.OpenAL @@ -2629,12 +2517,8 @@ items: fullName: OpenTK.Audio.OpenAL.AL.SourcePause(System.ReadOnlySpan) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/AL.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SourcePause - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/AL.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\AL.cs startLine: 736 assemblies: - OpenTK.Audio.OpenAL @@ -2871,12 +2755,8 @@ items: fullName: OpenTK.Audio.OpenAL.AL.SourceQueueBuffers(int, System.ReadOnlySpan) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/AL.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SourceQueueBuffers - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/AL.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\AL.cs startLine: 792 assemblies: - OpenTK.Audio.OpenAL @@ -2909,12 +2789,8 @@ items: fullName: OpenTK.Audio.OpenAL.AL.SourceQueueBuffer(int, int) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/AL.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SourceQueueBuffer - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/AL.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\AL.cs startLine: 800 assemblies: - OpenTK.Audio.OpenAL @@ -3046,12 +2922,8 @@ items: fullName: OpenTK.Audio.OpenAL.AL.SourceUnqueueBuffers(int, int[]) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/AL.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SourceUnqueueBuffers - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/AL.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\AL.cs startLine: 830 assemblies: - OpenTK.Audio.OpenAL @@ -3084,12 +2956,8 @@ items: fullName: OpenTK.Audio.OpenAL.AL.SourceUnqueueBuffers(int, System.Span) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/AL.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SourceUnqueueBuffers - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/AL.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\AL.cs startLine: 838 assemblies: - OpenTK.Audio.OpenAL @@ -3122,12 +2990,8 @@ items: fullName: OpenTK.Audio.OpenAL.AL.SourceUnqueueBuffer(int) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/AL.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SourceUnqueueBuffer - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/AL.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\AL.cs startLine: 846 assemblies: - OpenTK.Audio.OpenAL @@ -3160,12 +3024,8 @@ items: fullName: OpenTK.Audio.OpenAL.AL.SourceUnqueueBuffers(int, int) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/AL.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SourceUnqueueBuffers - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/AL.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\AL.cs startLine: 857 assemblies: - OpenTK.Audio.OpenAL @@ -3291,12 +3151,8 @@ items: fullName: OpenTK.Audio.OpenAL.AL.GenBuffers(System.Span) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/AL.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GenBuffers - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/AL.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\AL.cs startLine: 905 assemblies: - OpenTK.Audio.OpenAL @@ -3326,12 +3182,8 @@ items: fullName: OpenTK.Audio.OpenAL.AL.GenBuffers(int) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/AL.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GenBuffers - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/AL.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\AL.cs startLine: 913 assemblies: - OpenTK.Audio.OpenAL @@ -3364,12 +3216,8 @@ items: fullName: OpenTK.Audio.OpenAL.AL.GenBuffer() type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/AL.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GenBuffer - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/AL.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\AL.cs startLine: 922 assemblies: - OpenTK.Audio.OpenAL @@ -3395,12 +3243,8 @@ items: fullName: OpenTK.Audio.OpenAL.AL.GenBuffer(out int) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/AL.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GenBuffer - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/AL.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\AL.cs startLine: 931 assemblies: - OpenTK.Audio.OpenAL @@ -3520,12 +3364,8 @@ items: fullName: OpenTK.Audio.OpenAL.AL.DeleteBuffers(int[]) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/AL.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DeleteBuffers - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/AL.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\AL.cs startLine: 961 assemblies: - OpenTK.Audio.OpenAL @@ -3555,12 +3395,8 @@ items: fullName: OpenTK.Audio.OpenAL.AL.DeleteBuffers(System.ReadOnlySpan) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/AL.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DeleteBuffers - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/AL.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\AL.cs startLine: 972 assemblies: - OpenTK.Audio.OpenAL @@ -3590,12 +3426,8 @@ items: fullName: OpenTK.Audio.OpenAL.AL.DeleteBuffer(int) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/AL.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DeleteBuffer - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/AL.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\AL.cs startLine: 979 assemblies: - OpenTK.Audio.OpenAL @@ -3811,12 +3643,8 @@ items: fullName: OpenTK.Audio.OpenAL.AL.BufferData(int, OpenTK.Audio.OpenAL.ALFormat, TBuffer[], int) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/AL.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: BufferData - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/AL.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\AL.cs startLine: 1037 assemblies: - OpenTK.Audio.OpenAL @@ -3858,12 +3686,8 @@ items: fullName: OpenTK.Audio.OpenAL.AL.BufferData(int, OpenTK.Audio.OpenAL.ALFormat, System.ReadOnlySpan, int) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/AL.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: BufferData - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/AL.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\AL.cs startLine: 1052 assemblies: - OpenTK.Audio.OpenAL @@ -3938,12 +3762,8 @@ items: fullName: OpenTK.Audio.OpenAL.AL.GetBuffer(int, OpenTK.Audio.OpenAL.ALGetBufferi) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/AL.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetBuffer - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/AL.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\AL.cs startLine: 1095 assemblies: - OpenTK.Audio.OpenAL @@ -4132,12 +3952,8 @@ items: fullName: OpenTK.Audio.OpenAL.AL.GetDistanceModel() type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/AL.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetDistanceModel - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/AL.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\AL.cs startLine: 1164 assemblies: - OpenTK.Audio.OpenAL diff --git a/api/OpenTK.Audio.OpenAL.ALBase.yml b/api/OpenTK.Audio.OpenAL.ALBase.yml index 83395bd9..9428e037 100644 --- a/api/OpenTK.Audio.OpenAL.ALBase.yml +++ b/api/OpenTK.Audio.OpenAL.ALBase.yml @@ -15,12 +15,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALBase type: Class source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Native/ALBase.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ALBase - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Native/ALBase.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Native\ALBase.cs startLine: 21 assemblies: - OpenTK.Audio.OpenAL @@ -62,12 +58,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALBase.RegisterOpenALResolver() type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Native/ALBase.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: RegisterOpenALResolver - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Native/ALBase.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Native\ALBase.cs startLine: 27 assemblies: - OpenTK.Audio.OpenAL @@ -93,12 +85,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALBase.LoadDelegate(string) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Native/ALBase.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: LoadDelegate - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Native/ALBase.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Native\ALBase.cs startLine: 39 assemblies: - OpenTK.Audio.OpenAL diff --git a/api/OpenTK.Audio.OpenAL.ALBufferState.yml b/api/OpenTK.Audio.OpenAL.ALBufferState.yml index e8c9c6ab..89981c4d 100644 --- a/api/OpenTK.Audio.OpenAL.ALBufferState.yml +++ b/api/OpenTK.Audio.OpenAL.ALBufferState.yml @@ -16,12 +16,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALBufferState type: Enum source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ALBufferState - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\ALEnums.cs startLine: 334 assemblies: - OpenTK.Audio.OpenAL @@ -43,12 +39,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALBufferState.Unused type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Unused - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\ALEnums.cs startLine: 337 assemblies: - OpenTK.Audio.OpenAL @@ -71,12 +63,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALBufferState.Pending type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Pending - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\ALEnums.cs startLine: 340 assemblies: - OpenTK.Audio.OpenAL @@ -99,12 +87,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALBufferState.Processed type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Processed - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\ALEnums.cs startLine: 343 assemblies: - OpenTK.Audio.OpenAL diff --git a/api/OpenTK.Audio.OpenAL.ALC.DeviceClock.yml b/api/OpenTK.Audio.OpenAL.ALC.DeviceClock.yml index cd074924..0efce437 100644 --- a/api/OpenTK.Audio.OpenAL.ALC.DeviceClock.yml +++ b/api/OpenTK.Audio.OpenAL.ALC.DeviceClock.yml @@ -27,12 +27,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALC.DeviceClock type: Class source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/SOFT.DeviceClock/DeviceClock.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DeviceClock - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/SOFT.DeviceClock/DeviceClock.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\SOFT.DeviceClock\DeviceClock.cs startLine: 7 assemblies: - OpenTK.Audio.OpenAL @@ -65,12 +61,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALC.DeviceClock.ExtensionName type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/SOFT.DeviceClock/DeviceClock.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ExtensionName - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/SOFT.DeviceClock/DeviceClock.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\SOFT.DeviceClock\DeviceClock.cs startLine: 12 assemblies: - OpenTK.Audio.OpenAL @@ -94,12 +86,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALC.DeviceClock.IsExtensionPresent(OpenTK.Audio.OpenAL.ALDevice) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/SOFT.DeviceClock/DeviceClock.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: IsExtensionPresent - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/SOFT.DeviceClock/DeviceClock.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\SOFT.DeviceClock\DeviceClock.cs startLine: 29 assemblies: - OpenTK.Audio.OpenAL @@ -129,12 +117,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALC.DeviceClock.GetInteger(OpenTK.Audio.OpenAL.ALDevice, OpenTK.Audio.OpenAL.GetInteger64, int, long*) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/SOFT.DeviceClock/DeviceClock.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetInteger - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/SOFT.DeviceClock/DeviceClock.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\SOFT.DeviceClock\DeviceClock.cs startLine: 35 assemblies: - OpenTK.Audio.OpenAL @@ -167,12 +151,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALC.DeviceClock.GetInteger(OpenTK.Audio.OpenAL.ALDevice, OpenTK.Audio.OpenAL.GetInteger64, int, long[]) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/SOFT.DeviceClock/DeviceClock.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetInteger - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/SOFT.DeviceClock/DeviceClock.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\SOFT.DeviceClock\DeviceClock.cs startLine: 45 assemblies: - OpenTK.Audio.OpenAL @@ -205,12 +185,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALC.DeviceClock.GetSource(int, OpenTK.Audio.OpenAL.SourceInteger64, long*) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/SOFT.DeviceClock/DeviceClock.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetSource - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/SOFT.DeviceClock/DeviceClock.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\SOFT.DeviceClock\DeviceClock.cs startLine: 50 assemblies: - OpenTK.Audio.OpenAL @@ -241,12 +217,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALC.DeviceClock.GetSource(int, OpenTK.Audio.OpenAL.SourceInteger64, long[]) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/SOFT.DeviceClock/DeviceClock.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetSource - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/SOFT.DeviceClock/DeviceClock.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\SOFT.DeviceClock\DeviceClock.cs startLine: 60 assemblies: - OpenTK.Audio.OpenAL @@ -277,12 +249,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALC.DeviceClock.GetSource(int, OpenTK.Audio.OpenAL.SourceDouble, double*) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/SOFT.DeviceClock/DeviceClock.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetSource - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/SOFT.DeviceClock/DeviceClock.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\SOFT.DeviceClock\DeviceClock.cs startLine: 65 assemblies: - OpenTK.Audio.OpenAL @@ -313,12 +281,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALC.DeviceClock.GetSource(int, OpenTK.Audio.OpenAL.SourceDouble, double[]) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/SOFT.DeviceClock/DeviceClock.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetSource - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/SOFT.DeviceClock/DeviceClock.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\SOFT.DeviceClock\DeviceClock.cs startLine: 75 assemblies: - OpenTK.Audio.OpenAL @@ -349,12 +313,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALC.DeviceClock.GetInteger(OpenTK.Audio.OpenAL.ALDevice, OpenTK.Audio.OpenAL.GetInteger64, long[]) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/SOFT.DeviceClock/DeviceClock.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetInteger - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/SOFT.DeviceClock/DeviceClock.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\SOFT.DeviceClock\DeviceClock.cs startLine: 81 assemblies: - OpenTK.Audio.OpenAL @@ -385,12 +345,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALC.DeviceClock.GetInteger(OpenTK.Audio.OpenAL.ALDevice, OpenTK.Audio.OpenAL.GetInteger64, System.Span) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/SOFT.DeviceClock/DeviceClock.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetInteger - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/SOFT.DeviceClock/DeviceClock.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\SOFT.DeviceClock\DeviceClock.cs startLine: 86 assemblies: - OpenTK.Audio.OpenAL @@ -421,12 +377,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALC.DeviceClock.GetSource(int, OpenTK.Audio.OpenAL.SourceInteger64, System.Span) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/SOFT.DeviceClock/DeviceClock.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetSource - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/SOFT.DeviceClock/DeviceClock.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\SOFT.DeviceClock\DeviceClock.cs startLine: 91 assemblies: - OpenTK.Audio.OpenAL @@ -457,12 +409,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALC.DeviceClock.GetSource(int, OpenTK.Audio.OpenAL.SourceInteger64, out int, out int, out long) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/SOFT.DeviceClock/DeviceClock.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetSource - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/SOFT.DeviceClock/DeviceClock.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\SOFT.DeviceClock\DeviceClock.cs startLine: 96 assemblies: - OpenTK.Audio.OpenAL @@ -497,12 +445,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALC.DeviceClock.GetSource(int, OpenTK.Audio.OpenAL.SourceDouble, System.Span) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/SOFT.DeviceClock/DeviceClock.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetSource - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/SOFT.DeviceClock/DeviceClock.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\SOFT.DeviceClock\DeviceClock.cs startLine: 105 assemblies: - OpenTK.Audio.OpenAL @@ -533,12 +477,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALC.DeviceClock.GetSource(int, OpenTK.Audio.OpenAL.SourceDouble, out double, out double) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/SOFT.DeviceClock/DeviceClock.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetSource - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/SOFT.DeviceClock/DeviceClock.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\SOFT.DeviceClock\DeviceClock.cs startLine: 110 assemblies: - OpenTK.Audio.OpenAL diff --git a/api/OpenTK.Audio.OpenAL.ALC.EFX.yml b/api/OpenTK.Audio.OpenAL.ALC.EFX.yml index b87ebdd7..034df9b5 100644 --- a/api/OpenTK.Audio.OpenAL.ALC.EFX.yml +++ b/api/OpenTK.Audio.OpenAL.ALC.EFX.yml @@ -64,6 +64,7 @@ items: - OpenTK.Audio.OpenAL.ALC.EFX.GetEffect(System.Int32,OpenTK.Audio.OpenAL.EffectFloat) - OpenTK.Audio.OpenAL.ALC.EFX.GetEffect(System.Int32,OpenTK.Audio.OpenAL.EffectFloat,System.Single*) - OpenTK.Audio.OpenAL.ALC.EFX.GetEffect(System.Int32,OpenTK.Audio.OpenAL.EffectFloat,System.Single@) + - OpenTK.Audio.OpenAL.ALC.EFX.GetEffect(System.Int32,OpenTK.Audio.OpenAL.EffectInteger) - OpenTK.Audio.OpenAL.ALC.EFX.GetEffect(System.Int32,OpenTK.Audio.OpenAL.EffectInteger,System.Int32*) - OpenTK.Audio.OpenAL.ALC.EFX.GetEffect(System.Int32,OpenTK.Audio.OpenAL.EffectInteger,System.Int32@) - OpenTK.Audio.OpenAL.ALC.EFX.GetEffect(System.Int32,OpenTK.Audio.OpenAL.EffectVector3) @@ -117,12 +118,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALC.EFX type: Class source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: EFX - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\EFX.cs startLine: 20 assemblies: - OpenTK.Audio.OpenAL @@ -157,12 +154,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALC.EFX.ExtensionName type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ExtensionName - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\EFX.cs startLine: 28 assemblies: - OpenTK.Audio.OpenAL @@ -186,12 +179,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALC.EFX.IsExtensionPresent(OpenTK.Audio.OpenAL.ALDevice) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: IsExtensionPresent - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\EFX.cs startLine: 45 assemblies: - OpenTK.Audio.OpenAL @@ -329,12 +318,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALC.EFX.GetInteger(OpenTK.Audio.OpenAL.ALDevice, OpenTK.Audio.OpenAL.EFXContextInteger, int[]) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetInteger - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\EFX.cs startLine: 86 assemblies: - OpenTK.Audio.OpenAL @@ -370,12 +355,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALC.EFX.GetEFXMajorVersion(OpenTK.Audio.OpenAL.ALDevice) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetEFXMajorVersion - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\EFX.cs startLine: 96 assemblies: - OpenTK.Audio.OpenAL @@ -405,12 +386,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALC.EFX.GetEFXMinorVersion(OpenTK.Audio.OpenAL.ALDevice) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetEFXMinorVersion - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\EFX.cs startLine: 108 assemblies: - OpenTK.Audio.OpenAL @@ -440,12 +417,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALC.EFX.GetEFXVersion(OpenTK.Audio.OpenAL.ALDevice) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetEFXVersion - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\EFX.cs startLine: 120 assemblies: - OpenTK.Audio.OpenAL @@ -475,12 +448,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALC.EFX.GenAuxiliaryEffectSlots(int, int*) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GenAuxiliaryEffectSlots - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\EFX.cs startLine: 137 assemblies: - OpenTK.Audio.OpenAL @@ -518,12 +487,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALC.EFX.GenAuxiliaryEffectSlots(int, ref int) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GenAuxiliaryEffectSlots - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\EFX.cs startLine: 150 assemblies: - OpenTK.Audio.OpenAL @@ -561,12 +526,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALC.EFX.GenAuxiliaryEffectSlots(int, int[]) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GenAuxiliaryEffectSlots - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\EFX.cs startLine: 162 assemblies: - OpenTK.Audio.OpenAL @@ -604,12 +565,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALC.EFX.DeleteAuxiliaryEffectSlots(int, int*) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DeleteAuxiliaryEffectSlots - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\EFX.cs startLine: 174 assemblies: - OpenTK.Audio.OpenAL @@ -647,12 +604,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALC.EFX.DeleteAuxiliaryEffectSlots(int, ref int) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DeleteAuxiliaryEffectSlots - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\EFX.cs startLine: 186 assemblies: - OpenTK.Audio.OpenAL @@ -690,12 +643,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALC.EFX.DeleteAuxiliaryEffectSlots(int, int[]) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DeleteAuxiliaryEffectSlots - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\EFX.cs startLine: 198 assemblies: - OpenTK.Audio.OpenAL @@ -733,12 +682,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALC.EFX.IsAuxiliaryEffectSlot(int) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: IsAuxiliaryEffectSlot - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\EFX.cs startLine: 208 assemblies: - OpenTK.Audio.OpenAL @@ -771,12 +716,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALC.EFX.AuxiliaryEffectSlot(int, OpenTK.Audio.OpenAL.EffectSlotInteger, int) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: AuxiliaryEffectSlot - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\EFX.cs startLine: 219 assemblies: - OpenTK.Audio.OpenAL @@ -812,12 +753,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALC.EFX.AuxiliaryEffectSlot(int, OpenTK.Audio.OpenAL.EffectSlotFloat, float) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: AuxiliaryEffectSlot - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\EFX.cs startLine: 230 assemblies: - OpenTK.Audio.OpenAL @@ -853,12 +790,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALC.EFX.GetAuxiliaryEffectSlot(int, OpenTK.Audio.OpenAL.EffectSlotInteger, int*) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetAuxiliaryEffectSlot - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\EFX.cs startLine: 241 assemblies: - OpenTK.Audio.OpenAL @@ -894,12 +827,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALC.EFX.GetAuxiliaryEffectSlot(int, OpenTK.Audio.OpenAL.EffectSlotInteger, out int) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetAuxiliaryEffectSlot - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\EFX.cs startLine: 252 assemblies: - OpenTK.Audio.OpenAL @@ -935,12 +864,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALC.EFX.GetAuxiliaryEffectSlot(int, OpenTK.Audio.OpenAL.EffectSlotFloat, float*) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetAuxiliaryEffectSlot - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\EFX.cs startLine: 263 assemblies: - OpenTK.Audio.OpenAL @@ -976,12 +901,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALC.EFX.GetAuxiliaryEffectSlot(int, OpenTK.Audio.OpenAL.EffectSlotFloat, out float) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetAuxiliaryEffectSlot - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\EFX.cs startLine: 274 assemblies: - OpenTK.Audio.OpenAL @@ -1017,12 +938,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALC.EFX.GenEffects(int, int*) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GenEffects - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\EFX.cs startLine: 286 assemblies: - OpenTK.Audio.OpenAL @@ -1060,12 +977,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALC.EFX.GenEffects(int, ref int) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GenEffects - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\EFX.cs startLine: 298 assemblies: - OpenTK.Audio.OpenAL @@ -1103,12 +1016,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALC.EFX.GenEffects(int, int[]) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GenEffects - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\EFX.cs startLine: 310 assemblies: - OpenTK.Audio.OpenAL @@ -1146,12 +1055,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALC.EFX.DeleteEffects(int, int*) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DeleteEffects - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\EFX.cs startLine: 322 assemblies: - OpenTK.Audio.OpenAL @@ -1189,12 +1094,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALC.EFX.DeleteEffects(int, ref int) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DeleteEffects - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\EFX.cs startLine: 334 assemblies: - OpenTK.Audio.OpenAL @@ -1232,12 +1133,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALC.EFX.DeleteEffects(int, int[]) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DeleteEffects - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\EFX.cs startLine: 346 assemblies: - OpenTK.Audio.OpenAL @@ -1275,12 +1172,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALC.EFX.IsEffect(int) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: IsEffect - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\EFX.cs startLine: 358 assemblies: - OpenTK.Audio.OpenAL @@ -1318,12 +1211,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALC.EFX.Effect(int, OpenTK.Audio.OpenAL.EffectInteger, int) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Effect - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\EFX.cs startLine: 369 assemblies: - OpenTK.Audio.OpenAL @@ -1359,12 +1248,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALC.EFX.Effect(int, OpenTK.Audio.OpenAL.EffectFloat, float) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Effect - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\EFX.cs startLine: 380 assemblies: - OpenTK.Audio.OpenAL @@ -1400,12 +1285,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALC.EFX.Effect(int, OpenTK.Audio.OpenAL.EffectVector3, float*) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Effect - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\EFX.cs startLine: 391 assemblies: - OpenTK.Audio.OpenAL @@ -1441,12 +1322,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALC.EFX.Effect(int, OpenTK.Audio.OpenAL.EffectVector3, ref float) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Effect - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\EFX.cs startLine: 402 assemblies: - OpenTK.Audio.OpenAL @@ -1482,12 +1359,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALC.EFX.Effect(int, OpenTK.Audio.OpenAL.EffectVector3, float[]) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Effect - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\EFX.cs startLine: 413 assemblies: - OpenTK.Audio.OpenAL @@ -1523,12 +1396,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALC.EFX.GetEffect(int, OpenTK.Audio.OpenAL.EffectInteger, int*) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetEffect - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\EFX.cs startLine: 424 assemblies: - OpenTK.Audio.OpenAL @@ -1564,12 +1433,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALC.EFX.GetEffect(int, OpenTK.Audio.OpenAL.EffectInteger, out int) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetEffect - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\EFX.cs startLine: 435 assemblies: - OpenTK.Audio.OpenAL @@ -1605,12 +1470,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALC.EFX.GetEffect(int, OpenTK.Audio.OpenAL.EffectFloat, float*) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetEffect - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\EFX.cs startLine: 446 assemblies: - OpenTK.Audio.OpenAL @@ -1646,12 +1507,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALC.EFX.GetEffect(int, OpenTK.Audio.OpenAL.EffectFloat, out float) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetEffect - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\EFX.cs startLine: 457 assemblies: - OpenTK.Audio.OpenAL @@ -1687,12 +1544,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALC.EFX.GetEffect(int, OpenTK.Audio.OpenAL.EffectVector3, float*) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetEffect - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\EFX.cs startLine: 468 assemblies: - OpenTK.Audio.OpenAL @@ -1728,12 +1581,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALC.EFX.GetEffect(int, OpenTK.Audio.OpenAL.EffectVector3, out float) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetEffect - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\EFX.cs startLine: 479 assemblies: - OpenTK.Audio.OpenAL @@ -1769,12 +1618,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALC.EFX.GenFilters(int, int*) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GenFilters - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\EFX.cs startLine: 491 assemblies: - OpenTK.Audio.OpenAL @@ -1812,12 +1657,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALC.EFX.GenFilters(int, ref int) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GenFilters - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\EFX.cs startLine: 503 assemblies: - OpenTK.Audio.OpenAL @@ -1855,12 +1696,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALC.EFX.GenFilters(int, int[]) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GenFilters - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\EFX.cs startLine: 515 assemblies: - OpenTK.Audio.OpenAL @@ -1898,12 +1735,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALC.EFX.DeleteFilters(int, int*) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DeleteFilters - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\EFX.cs startLine: 527 assemblies: - OpenTK.Audio.OpenAL @@ -1941,12 +1774,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALC.EFX.DeleteFilters(int, ref int) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DeleteFilters - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\EFX.cs startLine: 539 assemblies: - OpenTK.Audio.OpenAL @@ -1984,12 +1813,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALC.EFX.DeleteFilters(int, int[]) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DeleteFilters - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\EFX.cs startLine: 551 assemblies: - OpenTK.Audio.OpenAL @@ -2027,12 +1852,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALC.EFX.IsFilter(int) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: IsFilter - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\EFX.cs startLine: 563 assemblies: - OpenTK.Audio.OpenAL @@ -2070,12 +1891,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALC.EFX.Filter(int, OpenTK.Audio.OpenAL.FilterInteger, int) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Filter - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\EFX.cs startLine: 574 assemblies: - OpenTK.Audio.OpenAL @@ -2111,12 +1928,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALC.EFX.Filter(int, OpenTK.Audio.OpenAL.FilterFloat, float) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Filter - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\EFX.cs startLine: 585 assemblies: - OpenTK.Audio.OpenAL @@ -2152,12 +1965,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALC.EFX.GetFilter(int, OpenTK.Audio.OpenAL.FilterInteger, int*) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetFilter - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\EFX.cs startLine: 596 assemblies: - OpenTK.Audio.OpenAL @@ -2193,12 +2002,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALC.EFX.GetFilter(int, OpenTK.Audio.OpenAL.FilterInteger, out int) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetFilter - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\EFX.cs startLine: 607 assemblies: - OpenTK.Audio.OpenAL @@ -2234,12 +2039,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALC.EFX.GetFilter(int, OpenTK.Audio.OpenAL.FilterFloat, float*) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetFilter - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\EFX.cs startLine: 618 assemblies: - OpenTK.Audio.OpenAL @@ -2275,12 +2076,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALC.EFX.GetFilter(int, OpenTK.Audio.OpenAL.FilterFloat, out float) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetFilter - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\EFX.cs startLine: 629 assemblies: - OpenTK.Audio.OpenAL @@ -2316,12 +2113,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALC.EFX.Source(int, OpenTK.Audio.OpenAL.EFXSourceInteger, int) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Source - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\EFX.cs startLine: 640 assemblies: - OpenTK.Audio.OpenAL @@ -2357,12 +2150,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALC.EFX.Source(int, OpenTK.Audio.OpenAL.EFXSourceFloat, float) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Source - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\EFX.cs startLine: 651 assemblies: - OpenTK.Audio.OpenAL @@ -2398,12 +2187,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALC.EFX.Source(int, OpenTK.Audio.OpenAL.EFXSourceBoolean, bool) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Source - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\EFX.cs startLine: 662 assemblies: - OpenTK.Audio.OpenAL @@ -2439,12 +2224,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALC.EFX.Source(int, OpenTK.Audio.OpenAL.EFXSourceInteger3, int*) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Source - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\EFX.cs startLine: 673 assemblies: - OpenTK.Audio.OpenAL @@ -2480,12 +2261,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALC.EFX.Source(int, OpenTK.Audio.OpenAL.EFXSourceInteger3, ref int) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Source - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\EFX.cs startLine: 684 assemblies: - OpenTK.Audio.OpenAL @@ -2521,12 +2298,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALC.EFX.Source(int, OpenTK.Audio.OpenAL.EFXSourceInteger3, int[]) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Source - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\EFX.cs startLine: 695 assemblies: - OpenTK.Audio.OpenAL @@ -2562,12 +2335,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALC.EFX.Source(int, OpenTK.Audio.OpenAL.EFXSourceInteger3, int, int, int) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Source - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\EFX.cs startLine: 708 assemblies: - OpenTK.Audio.OpenAL @@ -2609,12 +2378,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALC.EFX.GetSource(int, OpenTK.Audio.OpenAL.EFXSourceInteger, int*) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetSource - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\EFX.cs startLine: 719 assemblies: - OpenTK.Audio.OpenAL @@ -2650,12 +2415,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALC.EFX.GetSource(int, OpenTK.Audio.OpenAL.EFXSourceInteger, out int) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetSource - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\EFX.cs startLine: 730 assemblies: - OpenTK.Audio.OpenAL @@ -2691,12 +2452,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALC.EFX.GetSource(int, OpenTK.Audio.OpenAL.EFXSourceFloat, float*) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetSource - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\EFX.cs startLine: 741 assemblies: - OpenTK.Audio.OpenAL @@ -2732,12 +2489,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALC.EFX.GetSource(int, OpenTK.Audio.OpenAL.EFXSourceFloat, out float) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetSource - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\EFX.cs startLine: 752 assemblies: - OpenTK.Audio.OpenAL @@ -2773,12 +2526,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALC.EFX.GetSource(int, OpenTK.Audio.OpenAL.EFXSourceBoolean, bool*) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetSource - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\EFX.cs startLine: 763 assemblies: - OpenTK.Audio.OpenAL @@ -2814,12 +2563,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALC.EFX.GetSource(int, OpenTK.Audio.OpenAL.EFXSourceBoolean, out bool) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetSource - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\EFX.cs startLine: 774 assemblies: - OpenTK.Audio.OpenAL @@ -2855,12 +2600,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALC.EFX.GetSource(int, OpenTK.Audio.OpenAL.EFXSourceInteger3, int*) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetSource - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\EFX.cs startLine: 785 assemblies: - OpenTK.Audio.OpenAL @@ -2896,12 +2637,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALC.EFX.GetSource(int, OpenTK.Audio.OpenAL.EFXSourceInteger3, ref int) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetSource - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\EFX.cs startLine: 796 assemblies: - OpenTK.Audio.OpenAL @@ -2937,12 +2674,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALC.EFX.GetSource(int, OpenTK.Audio.OpenAL.EFXSourceInteger3, int[]) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetSource - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\EFX.cs startLine: 807 assemblies: - OpenTK.Audio.OpenAL @@ -2978,12 +2711,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALC.EFX.GetSource(int, OpenTK.Audio.OpenAL.EFXSourceInteger3, int*, int*, int*) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetSource - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\EFX.cs startLine: 820 assemblies: - OpenTK.Audio.OpenAL @@ -3025,12 +2754,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALC.EFX.GetSource(int, OpenTK.Audio.OpenAL.EFXSourceInteger3, out int, out int, out int) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetSource - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\EFX.cs startLine: 833 assemblies: - OpenTK.Audio.OpenAL @@ -3072,12 +2797,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALC.EFX.Listener(int, OpenTK.Audio.OpenAL.EFXListenerFloat, float) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Listener - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\EFX.cs startLine: 844 assemblies: - OpenTK.Audio.OpenAL @@ -3113,12 +2834,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALC.EFX.GetListener(int, OpenTK.Audio.OpenAL.EFXListenerFloat, float*) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetListener - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\EFX.cs startLine: 855 assemblies: - OpenTK.Audio.OpenAL @@ -3154,12 +2871,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALC.EFX.GetListener(int, OpenTK.Audio.OpenAL.EFXListenerFloat, out float) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetListener - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\EFX.cs startLine: 866 assemblies: - OpenTK.Audio.OpenAL @@ -3195,12 +2908,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALC.EFX.GenAuxiliaryEffectSlots(int[]) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GenAuxiliaryEffectSlots - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\EFX.cs startLine: 880 assemblies: - OpenTK.Audio.OpenAL @@ -3235,12 +2944,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALC.EFX.GenAuxiliaryEffectSlots(int) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GenAuxiliaryEffectSlots - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\EFX.cs startLine: 892 assemblies: - OpenTK.Audio.OpenAL @@ -3278,12 +2983,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALC.EFX.GenAuxiliaryEffectSlot() type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GenAuxiliaryEffectSlot - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\EFX.cs startLine: 905 assemblies: - OpenTK.Audio.OpenAL @@ -3314,12 +3015,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALC.EFX.GenAuxiliaryEffectSlot(out int) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GenAuxiliaryEffectSlot - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\EFX.cs startLine: 918 assemblies: - OpenTK.Audio.OpenAL @@ -3354,12 +3051,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALC.EFX.DeleteAuxiliaryEffectSlots(int[]) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DeleteAuxiliaryEffectSlots - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\EFX.cs startLine: 931 assemblies: - OpenTK.Audio.OpenAL @@ -3394,12 +3087,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALC.EFX.DeleteAuxiliaryEffectSlot(int) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DeleteAuxiliaryEffectSlot - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\EFX.cs startLine: 942 assemblies: - OpenTK.Audio.OpenAL @@ -3434,12 +3123,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALC.EFX.GetAuxiliaryEffectSlot(int, OpenTK.Audio.OpenAL.EffectSlotInteger) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetAuxiliaryEffectSlot - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\EFX.cs startLine: 953 assemblies: - OpenTK.Audio.OpenAL @@ -3475,12 +3160,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALC.EFX.GetAuxiliaryEffectSlot(int, OpenTK.Audio.OpenAL.EffectSlotFloat) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetAuxiliaryEffectSlot - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\EFX.cs startLine: 965 assemblies: - OpenTK.Audio.OpenAL @@ -3516,12 +3197,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALC.EFX.GenEffects(int[]) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GenEffects - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\EFX.cs startLine: 977 assemblies: - OpenTK.Audio.OpenAL @@ -3556,12 +3233,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALC.EFX.GenEffects(int) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GenEffects - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\EFX.cs startLine: 989 assemblies: - OpenTK.Audio.OpenAL @@ -3599,12 +3272,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALC.EFX.GenEffect() type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GenEffect - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\EFX.cs startLine: 1002 assemblies: - OpenTK.Audio.OpenAL @@ -3635,12 +3304,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALC.EFX.GenEffect(out int) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GenEffect - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\EFX.cs startLine: 1015 assemblies: - OpenTK.Audio.OpenAL @@ -3675,12 +3340,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALC.EFX.DeleteEffects(int[]) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DeleteEffects - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\EFX.cs startLine: 1028 assemblies: - OpenTK.Audio.OpenAL @@ -3715,12 +3376,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALC.EFX.DeleteEffect(int) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DeleteEffect - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\EFX.cs startLine: 1039 assemblies: - OpenTK.Audio.OpenAL @@ -3755,12 +3412,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALC.EFX.Effect(int, OpenTK.Audio.OpenAL.EffectVector3, ref OpenTK.Mathematics.Vector3) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Effect - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\EFX.cs startLine: 1050 assemblies: - OpenTK.Audio.OpenAL @@ -3796,12 +3449,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALC.EFX.GetEffect(int, OpenTK.Audio.OpenAL.EffectFloat) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetEffect - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\EFX.cs startLine: 1061 assemblies: - OpenTK.Audio.OpenAL @@ -3825,6 +3474,43 @@ items: nameWithType.vb: ALC.EFX.GetEffect(Integer, EffectFloat) fullName.vb: OpenTK.Audio.OpenAL.ALC.EFX.GetEffect(Integer, OpenTK.Audio.OpenAL.EffectFloat) name.vb: GetEffect(Integer, EffectFloat) +- uid: OpenTK.Audio.OpenAL.ALC.EFX.GetEffect(System.Int32,OpenTK.Audio.OpenAL.EffectInteger) + commentId: M:OpenTK.Audio.OpenAL.ALC.EFX.GetEffect(System.Int32,OpenTK.Audio.OpenAL.EffectInteger) + id: GetEffect(System.Int32,OpenTK.Audio.OpenAL.EffectInteger) + parent: OpenTK.Audio.OpenAL.ALC.EFX + langs: + - csharp + - vb + name: GetEffect(int, EffectInteger) + nameWithType: ALC.EFX.GetEffect(int, EffectInteger) + fullName: OpenTK.Audio.OpenAL.ALC.EFX.GetEffect(int, OpenTK.Audio.OpenAL.EffectInteger) + type: Method + source: + id: GetEffect + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\EFX.cs + startLine: 1073 + assemblies: + - OpenTK.Audio.OpenAL + namespace: OpenTK.Audio.OpenAL + summary: Gets the value of a named property on the given effect. + example: [] + syntax: + content: public static int GetEffect(int effect, EffectInteger param) + parameters: + - id: effect + type: System.Int32 + description: The effect. + - id: param + type: OpenTK.Audio.OpenAL.EffectInteger + description: The named property. + return: + type: System.Int32 + description: The value. + content.vb: Public Shared Function GetEffect(effect As Integer, param As EffectInteger) As Integer + overload: OpenTK.Audio.OpenAL.ALC.EFX.GetEffect* + nameWithType.vb: ALC.EFX.GetEffect(Integer, EffectInteger) + fullName.vb: OpenTK.Audio.OpenAL.ALC.EFX.GetEffect(Integer, OpenTK.Audio.OpenAL.EffectInteger) + name.vb: GetEffect(Integer, EffectInteger) - uid: OpenTK.Audio.OpenAL.ALC.EFX.GetEffect(System.Int32,OpenTK.Audio.OpenAL.EffectVector3,OpenTK.Mathematics.Vector3@) commentId: M:OpenTK.Audio.OpenAL.ALC.EFX.GetEffect(System.Int32,OpenTK.Audio.OpenAL.EffectVector3,OpenTK.Mathematics.Vector3@) id: GetEffect(System.Int32,OpenTK.Audio.OpenAL.EffectVector3,OpenTK.Mathematics.Vector3@) @@ -3837,13 +3523,9 @@ items: fullName: OpenTK.Audio.OpenAL.ALC.EFX.GetEffect(int, OpenTK.Audio.OpenAL.EffectVector3, out OpenTK.Mathematics.Vector3) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetEffect - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs - startLine: 1073 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\EFX.cs + startLine: 1085 assemblies: - OpenTK.Audio.OpenAL namespace: OpenTK.Audio.OpenAL @@ -3878,13 +3560,9 @@ items: fullName: OpenTK.Audio.OpenAL.ALC.EFX.GetEffect(int, OpenTK.Audio.OpenAL.EffectVector3) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetEffect - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs - startLine: 1089 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\EFX.cs + startLine: 1101 assemblies: - OpenTK.Audio.OpenAL namespace: OpenTK.Audio.OpenAL @@ -3919,13 +3597,9 @@ items: fullName: OpenTK.Audio.OpenAL.ALC.EFX.GenFilters(int[]) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GenFilters - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs - startLine: 1101 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\EFX.cs + startLine: 1113 assemblies: - OpenTK.Audio.OpenAL namespace: OpenTK.Audio.OpenAL @@ -3959,13 +3633,9 @@ items: fullName: OpenTK.Audio.OpenAL.ALC.EFX.GenFilters(int) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GenFilters - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs - startLine: 1113 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\EFX.cs + startLine: 1125 assemblies: - OpenTK.Audio.OpenAL namespace: OpenTK.Audio.OpenAL @@ -4002,13 +3672,9 @@ items: fullName: OpenTK.Audio.OpenAL.ALC.EFX.GenFilter() type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GenFilter - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs - startLine: 1126 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\EFX.cs + startLine: 1138 assemblies: - OpenTK.Audio.OpenAL namespace: OpenTK.Audio.OpenAL @@ -4038,13 +3704,9 @@ items: fullName: OpenTK.Audio.OpenAL.ALC.EFX.GenFilter(out int) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GenFilter - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs - startLine: 1139 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\EFX.cs + startLine: 1151 assemblies: - OpenTK.Audio.OpenAL namespace: OpenTK.Audio.OpenAL @@ -4078,13 +3740,9 @@ items: fullName: OpenTK.Audio.OpenAL.ALC.EFX.DeleteFilters(int[]) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DeleteFilters - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs - startLine: 1152 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\EFX.cs + startLine: 1164 assemblies: - OpenTK.Audio.OpenAL namespace: OpenTK.Audio.OpenAL @@ -4118,13 +3776,9 @@ items: fullName: OpenTK.Audio.OpenAL.ALC.EFX.DeleteFilter(int) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DeleteFilter - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs - startLine: 1163 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\EFX.cs + startLine: 1175 assemblies: - OpenTK.Audio.OpenAL namespace: OpenTK.Audio.OpenAL @@ -4158,13 +3812,9 @@ items: fullName: OpenTK.Audio.OpenAL.ALC.EFX.GetFilter(int, OpenTK.Audio.OpenAL.FilterInteger) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetFilter - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs - startLine: 1174 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\EFX.cs + startLine: 1186 assemblies: - OpenTK.Audio.OpenAL namespace: OpenTK.Audio.OpenAL @@ -4199,13 +3849,9 @@ items: fullName: OpenTK.Audio.OpenAL.ALC.EFX.GetFilter(int, OpenTK.Audio.OpenAL.FilterFloat) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetFilter - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs - startLine: 1186 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\EFX.cs + startLine: 1198 assemblies: - OpenTK.Audio.OpenAL namespace: OpenTK.Audio.OpenAL @@ -4240,13 +3886,9 @@ items: fullName: OpenTK.Audio.OpenAL.ALC.EFX.GetSource(int, OpenTK.Audio.OpenAL.EFXSourceInteger) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetSource - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs - startLine: 1198 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\EFX.cs + startLine: 1210 assemblies: - OpenTK.Audio.OpenAL namespace: OpenTK.Audio.OpenAL @@ -4281,13 +3923,9 @@ items: fullName: OpenTK.Audio.OpenAL.ALC.EFX.GetSource(int, OpenTK.Audio.OpenAL.EFXSourceFloat) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetSource - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs - startLine: 1210 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\EFX.cs + startLine: 1222 assemblies: - OpenTK.Audio.OpenAL namespace: OpenTK.Audio.OpenAL @@ -4322,13 +3960,9 @@ items: fullName: OpenTK.Audio.OpenAL.ALC.EFX.GetSource(int, OpenTK.Audio.OpenAL.EFXSourceBoolean) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetSource - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs - startLine: 1222 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\EFX.cs + startLine: 1234 assemblies: - OpenTK.Audio.OpenAL namespace: OpenTK.Audio.OpenAL @@ -4363,13 +3997,9 @@ items: fullName: OpenTK.Audio.OpenAL.ALC.EFX.GetListener(int, OpenTK.Audio.OpenAL.EFXListenerFloat) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetListener - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/EFX.cs - startLine: 1234 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\EFX.cs + startLine: 1246 assemblies: - OpenTK.Audio.OpenAL namespace: OpenTK.Audio.OpenAL diff --git a/api/OpenTK.Audio.OpenAL.ALC.EnumerateAll.yml b/api/OpenTK.Audio.OpenAL.ALC.EnumerateAll.yml index db2d2203..3da8e32e 100644 --- a/api/OpenTK.Audio.OpenAL.ALC.EnumerateAll.yml +++ b/api/OpenTK.Audio.OpenAL.ALC.EnumerateAll.yml @@ -19,12 +19,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALC.EnumerateAll type: Class source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EnumerateAll/EnumerateAll.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: EnumerateAll - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EnumerateAll/EnumerateAll.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EnumerateAll\EnumerateAll.cs startLine: 19 assemblies: - OpenTK.Audio.OpenAL @@ -59,12 +55,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALC.EnumerateAll.ExtensionName type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EnumerateAll/EnumerateAll.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ExtensionName - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EnumerateAll/EnumerateAll.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EnumerateAll\EnumerateAll.cs startLine: 24 assemblies: - OpenTK.Audio.OpenAL @@ -88,12 +80,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALC.EnumerateAll.IsExtensionPresent() type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EnumerateAll/EnumerateAll.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: IsExtensionPresent - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EnumerateAll/EnumerateAll.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EnumerateAll\EnumerateAll.cs startLine: 40 assemblies: - OpenTK.Audio.OpenAL @@ -119,12 +107,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALC.EnumerateAll.IsExtensionPresent(OpenTK.Audio.OpenAL.ALDevice) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EnumerateAll/EnumerateAll.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: IsExtensionPresent - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EnumerateAll/EnumerateAll.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EnumerateAll\EnumerateAll.cs startLine: 50 assemblies: - OpenTK.Audio.OpenAL @@ -214,12 +198,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALC.EnumerateAll.GetStringList(OpenTK.Audio.OpenAL.GetEnumerateAllContextStringList) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EnumerateAll/EnumerateAll.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetStringList - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EnumerateAll/EnumerateAll.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EnumerateAll\EnumerateAll.cs startLine: 74 assemblies: - OpenTK.Audio.OpenAL diff --git a/api/OpenTK.Audio.OpenAL.ALC.yml b/api/OpenTK.Audio.OpenAL.ALC.yml index 68401cbc..b8c4e0a7 100644 --- a/api/OpenTK.Audio.OpenAL.ALC.yml +++ b/api/OpenTK.Audio.OpenAL.ALC.yml @@ -64,12 +64,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALC type: Class source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/SOFT.DeviceClock/DeviceClock.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ALC - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/SOFT.DeviceClock/DeviceClock.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\SOFT.DeviceClock\DeviceClock.cs startLine: 5 assemblies: - OpenTK.Audio.OpenAL @@ -206,12 +202,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALC.CreateContext(OpenTK.Audio.OpenAL.ALDevice, System.Span) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/ALC/ALC.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateContext - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/ALC/ALC.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\ALC\ALC.cs startLine: 71 assemblies: - OpenTK.Audio.OpenAL @@ -248,12 +240,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALC.CreateContext(OpenTK.Audio.OpenAL.ALDevice, OpenTK.Audio.OpenAL.ALContextAttributes) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/ALC/ALC.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateContext - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/ALC/ALC.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\ALC\ALC.cs startLine: 81 assemblies: - OpenTK.Audio.OpenAL @@ -732,12 +720,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALC.GetString(OpenTK.Audio.OpenAL.ALDevice, OpenTK.Audio.OpenAL.AlcGetStringList) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/ALC/ALC.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetString - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/ALC/ALC.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\ALC\ALC.cs startLine: 217 assemblies: - OpenTK.Audio.OpenAL @@ -776,12 +760,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALC.GetString(OpenTK.Audio.OpenAL.AlcGetStringList) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/ALC/ALC.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetString - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/ALC/ALC.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\ALC\ALC.cs startLine: 231 assemblies: - OpenTK.Audio.OpenAL @@ -925,12 +905,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALC.GetInteger(OpenTK.Audio.OpenAL.ALDevice, OpenTK.Audio.OpenAL.AlcGetInteger, out int) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/ALC/ALC.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetInteger - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/ALC/ALC.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\ALC\ALC.cs startLine: 264 assemblies: - OpenTK.Audio.OpenAL @@ -966,12 +942,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALC.GetInteger(OpenTK.Audio.OpenAL.ALDevice, OpenTK.Audio.OpenAL.AlcGetInteger) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/ALC/ALC.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetInteger - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/ALC/ALC.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\ALC\ALC.cs startLine: 273 assemblies: - OpenTK.Audio.OpenAL @@ -1004,12 +976,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALC.GetAttributeArray(OpenTK.Audio.OpenAL.ALDevice) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/ALC/ALC.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetAttributeArray - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/ALC/ALC.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\ALC\ALC.cs startLine: 284 assemblies: - OpenTK.Audio.OpenAL @@ -1039,12 +1007,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALC.GetContextAttributes(OpenTK.Audio.OpenAL.ALDevice) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/ALC/ALC.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetContextAttributes - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/ALC/ALC.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\ALC\ALC.cs startLine: 297 assemblies: - OpenTK.Audio.OpenAL @@ -1074,12 +1038,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALC.IsCaptureExtensionPresent(OpenTK.Audio.OpenAL.ALDevice) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/ALC/ALC.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: IsCaptureExtensionPresent - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/ALC/ALC.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\ALC\ALC.cs startLine: 312 assemblies: - OpenTK.Audio.OpenAL @@ -1109,12 +1069,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALC.IsCaptureExtensionPresent(OpenTK.Audio.OpenAL.ALCaptureDevice) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/ALC/ALC.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: IsCaptureExtensionPresent - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/ALC/ALC.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\ALC\ALC.cs startLine: 322 assemblies: - OpenTK.Audio.OpenAL @@ -1430,12 +1386,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALC.CaptureSamples(OpenTK.Audio.OpenAL.ALCaptureDevice, ref T, int) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/ALC/ALC.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CaptureSamples - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/ALC/ALC.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\ALC\ALC.cs startLine: 404 assemblies: - OpenTK.Audio.OpenAL @@ -1474,12 +1426,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALC.CaptureSamples(OpenTK.Audio.OpenAL.ALCaptureDevice, T[], int) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/ALC/ALC.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CaptureSamples - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/ALC/ALC.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\ALC\ALC.cs startLine: 418 assemblies: - OpenTK.Audio.OpenAL @@ -1626,12 +1574,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALC.GetInteger(OpenTK.Audio.OpenAL.ALCaptureDevice, OpenTK.Audio.OpenAL.AlcGetInteger) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/ALC/ALC.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetInteger - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/ALC/ALC.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\ALC\ALC.cs startLine: 455 assemblies: - OpenTK.Audio.OpenAL @@ -1664,12 +1608,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALC.IsEnumerationExtensionPresent(OpenTK.Audio.OpenAL.ALDevice) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/ALC/ALC.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: IsEnumerationExtensionPresent - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/ALC/ALC.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\ALC\ALC.cs startLine: 468 assemblies: - OpenTK.Audio.OpenAL @@ -1699,12 +1639,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALC.IsEnumerationExtensionPresent(OpenTK.Audio.OpenAL.ALCaptureDevice) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/ALC/ALC.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: IsEnumerationExtensionPresent - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/ALC/ALC.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\ALC\ALC.cs startLine: 478 assemblies: - OpenTK.Audio.OpenAL @@ -1794,12 +1730,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALC.GetStringList(OpenTK.Audio.OpenAL.GetEnumerationStringList) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/ALC/ALC.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetStringList - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/ALC/ALC.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\ALC\ALC.cs startLine: 503 assemblies: - OpenTK.Audio.OpenAL diff --git a/api/OpenTK.Audio.OpenAL.ALCapability.yml b/api/OpenTK.Audio.OpenAL.ALCapability.yml index 856403e9..74f31d08 100644 --- a/api/OpenTK.Audio.OpenAL.ALCapability.yml +++ b/api/OpenTK.Audio.OpenAL.ALCapability.yml @@ -14,17 +14,13 @@ items: fullName: OpenTK.Audio.OpenAL.ALCapability type: Enum source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ALCapability - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\ALEnums.cs startLine: 13 assemblies: - OpenTK.Audio.OpenAL namespace: OpenTK.Audio.OpenAL - summary: A list of valid Enable/Disable/IsEnabled parameters. + summary: A list of valid // parameters. example: [] syntax: content: public enum ALCapability @@ -41,12 +37,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALCapability.Invalid type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Invalid - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\ALEnums.cs startLine: 16 assemblies: - OpenTK.Audio.OpenAL @@ -58,6 +50,87 @@ items: return: type: OpenTK.Audio.OpenAL.ALCapability references: +- uid: OpenTK.Audio.OpenAL.AL.Enable(OpenTK.Audio.OpenAL.ALCapability) + commentId: M:OpenTK.Audio.OpenAL.AL.Enable(OpenTK.Audio.OpenAL.ALCapability) + isExternal: true + href: OpenTK.Audio.OpenAL.AL.html#OpenTK_Audio_OpenAL_AL_Enable_OpenTK_Audio_OpenAL_ALCapability_ + name: Enable(ALCapability) + nameWithType: AL.Enable(ALCapability) + fullName: OpenTK.Audio.OpenAL.AL.Enable(OpenTK.Audio.OpenAL.ALCapability) + spec.csharp: + - uid: OpenTK.Audio.OpenAL.AL.Enable(OpenTK.Audio.OpenAL.ALCapability) + name: Enable + isExternal: true + href: OpenTK.Audio.OpenAL.AL.html#OpenTK_Audio_OpenAL_AL_Enable_OpenTK_Audio_OpenAL_ALCapability_ + - name: ( + - uid: OpenTK.Audio.OpenAL.ALCapability + name: ALCapability + href: OpenTK.Audio.OpenAL.ALCapability.html + - name: ) + spec.vb: + - uid: OpenTK.Audio.OpenAL.AL.Enable(OpenTK.Audio.OpenAL.ALCapability) + name: Enable + isExternal: true + href: OpenTK.Audio.OpenAL.AL.html#OpenTK_Audio_OpenAL_AL_Enable_OpenTK_Audio_OpenAL_ALCapability_ + - name: ( + - uid: OpenTK.Audio.OpenAL.ALCapability + name: ALCapability + href: OpenTK.Audio.OpenAL.ALCapability.html + - name: ) +- uid: OpenTK.Audio.OpenAL.AL.Disable(OpenTK.Audio.OpenAL.ALCapability) + commentId: M:OpenTK.Audio.OpenAL.AL.Disable(OpenTK.Audio.OpenAL.ALCapability) + isExternal: true + href: OpenTK.Audio.OpenAL.AL.html#OpenTK_Audio_OpenAL_AL_Disable_OpenTK_Audio_OpenAL_ALCapability_ + name: Disable(ALCapability) + nameWithType: AL.Disable(ALCapability) + fullName: OpenTK.Audio.OpenAL.AL.Disable(OpenTK.Audio.OpenAL.ALCapability) + spec.csharp: + - uid: OpenTK.Audio.OpenAL.AL.Disable(OpenTK.Audio.OpenAL.ALCapability) + name: Disable + isExternal: true + href: OpenTK.Audio.OpenAL.AL.html#OpenTK_Audio_OpenAL_AL_Disable_OpenTK_Audio_OpenAL_ALCapability_ + - name: ( + - uid: OpenTK.Audio.OpenAL.ALCapability + name: ALCapability + href: OpenTK.Audio.OpenAL.ALCapability.html + - name: ) + spec.vb: + - uid: OpenTK.Audio.OpenAL.AL.Disable(OpenTK.Audio.OpenAL.ALCapability) + name: Disable + isExternal: true + href: OpenTK.Audio.OpenAL.AL.html#OpenTK_Audio_OpenAL_AL_Disable_OpenTK_Audio_OpenAL_ALCapability_ + - name: ( + - uid: OpenTK.Audio.OpenAL.ALCapability + name: ALCapability + href: OpenTK.Audio.OpenAL.ALCapability.html + - name: ) +- uid: OpenTK.Audio.OpenAL.AL.IsEnabled(OpenTK.Audio.OpenAL.ALCapability) + commentId: M:OpenTK.Audio.OpenAL.AL.IsEnabled(OpenTK.Audio.OpenAL.ALCapability) + isExternal: true + href: OpenTK.Audio.OpenAL.AL.html#OpenTK_Audio_OpenAL_AL_IsEnabled_OpenTK_Audio_OpenAL_ALCapability_ + name: IsEnabled(ALCapability) + nameWithType: AL.IsEnabled(ALCapability) + fullName: OpenTK.Audio.OpenAL.AL.IsEnabled(OpenTK.Audio.OpenAL.ALCapability) + spec.csharp: + - uid: OpenTK.Audio.OpenAL.AL.IsEnabled(OpenTK.Audio.OpenAL.ALCapability) + name: IsEnabled + isExternal: true + href: OpenTK.Audio.OpenAL.AL.html#OpenTK_Audio_OpenAL_AL_IsEnabled_OpenTK_Audio_OpenAL_ALCapability_ + - name: ( + - uid: OpenTK.Audio.OpenAL.ALCapability + name: ALCapability + href: OpenTK.Audio.OpenAL.ALCapability.html + - name: ) + spec.vb: + - uid: OpenTK.Audio.OpenAL.AL.IsEnabled(OpenTK.Audio.OpenAL.ALCapability) + name: IsEnabled + isExternal: true + href: OpenTK.Audio.OpenAL.AL.html#OpenTK_Audio_OpenAL_AL_IsEnabled_OpenTK_Audio_OpenAL_ALCapability_ + - name: ( + - uid: OpenTK.Audio.OpenAL.ALCapability + name: ALCapability + href: OpenTK.Audio.OpenAL.ALCapability.html + - name: ) - uid: OpenTK.Audio.OpenAL commentId: N:OpenTK.Audio.OpenAL href: OpenTK.html diff --git a/api/OpenTK.Audio.OpenAL.ALCaptureDevice.yml b/api/OpenTK.Audio.OpenAL.ALCaptureDevice.yml index 89955654..f597fd25 100644 --- a/api/OpenTK.Audio.OpenAL.ALCaptureDevice.yml +++ b/api/OpenTK.Audio.OpenAL.ALCaptureDevice.yml @@ -22,12 +22,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALCaptureDevice type: Struct source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/ALCaptureDevice.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ALCaptureDevice - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/ALCaptureDevice.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\ALCaptureDevice.cs startLine: 17 assemblies: - OpenTK.Audio.OpenAL @@ -56,12 +52,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALCaptureDevice.Null type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/ALCaptureDevice.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: "Null" - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/ALCaptureDevice.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\ALCaptureDevice.cs startLine: 19 assemblies: - OpenTK.Audio.OpenAL @@ -83,12 +75,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALCaptureDevice.Handle type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/ALCaptureDevice.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Handle - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/ALCaptureDevice.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\ALCaptureDevice.cs startLine: 21 assemblies: - OpenTK.Audio.OpenAL @@ -110,12 +98,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALCaptureDevice.ALCaptureDevice(nint) type: Constructor source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/ALCaptureDevice.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/ALCaptureDevice.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\ALCaptureDevice.cs startLine: 23 assemblies: - OpenTK.Audio.OpenAL @@ -142,12 +126,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALCaptureDevice.Equals(object) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/ALCaptureDevice.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Equals - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/ALCaptureDevice.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\ALCaptureDevice.cs startLine: 28 assemblies: - OpenTK.Audio.OpenAL @@ -181,12 +161,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALCaptureDevice.Equals(OpenTK.Audio.OpenAL.ALCaptureDevice) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/ALCaptureDevice.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Equals - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/ALCaptureDevice.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\ALCaptureDevice.cs startLine: 33 assemblies: - OpenTK.Audio.OpenAL @@ -218,12 +194,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALCaptureDevice.GetHashCode() type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/ALCaptureDevice.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetHashCode - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/ALCaptureDevice.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\ALCaptureDevice.cs startLine: 38 assemblies: - OpenTK.Audio.OpenAL @@ -250,12 +222,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALCaptureDevice.operator ==(OpenTK.Audio.OpenAL.ALCaptureDevice, OpenTK.Audio.OpenAL.ALCaptureDevice) type: Operator source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/ALCaptureDevice.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Equality - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/ALCaptureDevice.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\ALCaptureDevice.cs startLine: 43 assemblies: - OpenTK.Audio.OpenAL @@ -286,12 +254,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALCaptureDevice.operator !=(OpenTK.Audio.OpenAL.ALCaptureDevice, OpenTK.Audio.OpenAL.ALCaptureDevice) type: Operator source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/ALCaptureDevice.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Inequality - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/ALCaptureDevice.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\ALCaptureDevice.cs startLine: 48 assemblies: - OpenTK.Audio.OpenAL @@ -322,12 +286,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALCaptureDevice.implicit operator nint(OpenTK.Audio.OpenAL.ALCaptureDevice) type: Operator source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/ALCaptureDevice.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Implicit - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/ALCaptureDevice.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\ALCaptureDevice.cs startLine: 53 assemblies: - OpenTK.Audio.OpenAL diff --git a/api/OpenTK.Audio.OpenAL.ALContext.yml b/api/OpenTK.Audio.OpenAL.ALContext.yml index fb4662c4..d66f9808 100644 --- a/api/OpenTK.Audio.OpenAL.ALContext.yml +++ b/api/OpenTK.Audio.OpenAL.ALContext.yml @@ -22,12 +22,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALContext type: Struct source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/ALContext.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ALContext - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/ALContext.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\ALContext.cs startLine: 14 assemblies: - OpenTK.Audio.OpenAL @@ -54,12 +50,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALContext.Null type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/ALContext.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: "Null" - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/ALContext.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\ALContext.cs startLine: 16 assemblies: - OpenTK.Audio.OpenAL @@ -81,12 +73,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALContext.Handle type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/ALContext.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Handle - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/ALContext.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\ALContext.cs startLine: 18 assemblies: - OpenTK.Audio.OpenAL @@ -108,12 +96,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALContext.ALContext(nint) type: Constructor source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/ALContext.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/ALContext.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\ALContext.cs startLine: 20 assemblies: - OpenTK.Audio.OpenAL @@ -140,12 +124,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALContext.Equals(object) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/ALContext.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Equals - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/ALContext.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\ALContext.cs startLine: 25 assemblies: - OpenTK.Audio.OpenAL @@ -179,12 +159,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALContext.Equals(OpenTK.Audio.OpenAL.ALContext) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/ALContext.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Equals - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/ALContext.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\ALContext.cs startLine: 30 assemblies: - OpenTK.Audio.OpenAL @@ -216,12 +192,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALContext.GetHashCode() type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/ALContext.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetHashCode - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/ALContext.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\ALContext.cs startLine: 35 assemblies: - OpenTK.Audio.OpenAL @@ -248,12 +220,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALContext.operator ==(OpenTK.Audio.OpenAL.ALContext, OpenTK.Audio.OpenAL.ALContext) type: Operator source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/ALContext.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Equality - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/ALContext.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\ALContext.cs startLine: 40 assemblies: - OpenTK.Audio.OpenAL @@ -284,12 +252,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALContext.operator !=(OpenTK.Audio.OpenAL.ALContext, OpenTK.Audio.OpenAL.ALContext) type: Operator source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/ALContext.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Inequality - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/ALContext.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\ALContext.cs startLine: 45 assemblies: - OpenTK.Audio.OpenAL @@ -320,12 +284,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALContext.implicit operator nint(OpenTK.Audio.OpenAL.ALContext) type: Operator source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/ALContext.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Implicit - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/ALContext.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\ALContext.cs startLine: 50 assemblies: - OpenTK.Audio.OpenAL diff --git a/api/OpenTK.Audio.OpenAL.ALContextAttributes.yml b/api/OpenTK.Audio.OpenAL.ALContextAttributes.yml index 664434cf..65ec7856 100644 --- a/api/OpenTK.Audio.OpenAL.ALContextAttributes.yml +++ b/api/OpenTK.Audio.OpenAL.ALContextAttributes.yml @@ -23,12 +23,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALContextAttributes type: Class source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/ALC/ALContextAttributes.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ALContextAttributes - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/ALC/ALContextAttributes.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\ALC\ALContextAttributes.cs startLine: 18 assemblies: - OpenTK.Audio.OpenAL @@ -59,12 +55,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALContextAttributes.Frequency type: Property source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/ALC/ALContextAttributes.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Frequency - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/ALC/ALContextAttributes.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\ALC\ALContextAttributes.cs startLine: 24 assemblies: - OpenTK.Audio.OpenAL @@ -93,12 +85,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALContextAttributes.MonoSources type: Property source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/ALC/ALContextAttributes.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MonoSources - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/ALC/ALContextAttributes.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\ALC\ALContextAttributes.cs startLine: 31 assemblies: - OpenTK.Audio.OpenAL @@ -129,12 +117,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALContextAttributes.StereoSources type: Property source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/ALC/ALContextAttributes.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: StereoSources - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/ALC/ALContextAttributes.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\ALC\ALContextAttributes.cs startLine: 38 assemblies: - OpenTK.Audio.OpenAL @@ -165,12 +149,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALContextAttributes.Refresh type: Property source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/ALC/ALContextAttributes.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Refresh - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/ALC/ALContextAttributes.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\ALC\ALContextAttributes.cs startLine: 44 assemblies: - OpenTK.Audio.OpenAL @@ -199,12 +179,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALContextAttributes.Sync type: Property source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/ALC/ALContextAttributes.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Sync - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/ALC/ALContextAttributes.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\ALC\ALContextAttributes.cs startLine: 50 assemblies: - OpenTK.Audio.OpenAL @@ -233,12 +209,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALContextAttributes.AdditionalAttributes type: Property source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/ALC/ALContextAttributes.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: AdditionalAttributes - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/ALC/ALContextAttributes.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\ALC\ALContextAttributes.cs startLine: 56 assemblies: - OpenTK.Audio.OpenAL @@ -267,12 +239,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALContextAttributes.ALContextAttributes() type: Constructor source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/ALC/ALContextAttributes.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/ALC/ALContextAttributes.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\ALC\ALContextAttributes.cs startLine: 62 assemblies: - OpenTK.Audio.OpenAL @@ -301,12 +269,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALContextAttributes.ALContextAttributes(int?, int?, int?, int?, bool?) type: Constructor source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/ALC/ALContextAttributes.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/ALC/ALContextAttributes.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\ALC\ALContextAttributes.cs startLine: 74 assemblies: - OpenTK.Audio.OpenAL @@ -348,12 +312,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALContextAttributes.CreateAttributeArray() type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/ALC/ALContextAttributes.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateAttributeArray - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/ALC/ALContextAttributes.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\ALC\ALContextAttributes.cs startLine: 88 assemblies: - OpenTK.Audio.OpenAL @@ -382,12 +342,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALContextAttributes.ToString() type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/ALC/ALContextAttributes.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/ALC/ALContextAttributes.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\ALC\ALContextAttributes.cs startLine: 187 assemblies: - OpenTK.Audio.OpenAL diff --git a/api/OpenTK.Audio.OpenAL.ALDevice.yml b/api/OpenTK.Audio.OpenAL.ALDevice.yml index de373b7e..9037326b 100644 --- a/api/OpenTK.Audio.OpenAL.ALDevice.yml +++ b/api/OpenTK.Audio.OpenAL.ALDevice.yml @@ -22,12 +22,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALDevice type: Struct source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/ALDevice.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ALDevice - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/ALDevice.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\ALDevice.cs startLine: 17 assemblies: - OpenTK.Audio.OpenAL @@ -56,12 +52,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALDevice.Null type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/ALDevice.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: "Null" - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/ALDevice.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\ALDevice.cs startLine: 19 assemblies: - OpenTK.Audio.OpenAL @@ -83,12 +75,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALDevice.Handle type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/ALDevice.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Handle - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/ALDevice.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\ALDevice.cs startLine: 21 assemblies: - OpenTK.Audio.OpenAL @@ -110,12 +98,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALDevice.ALDevice(nint) type: Constructor source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/ALDevice.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/ALDevice.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\ALDevice.cs startLine: 23 assemblies: - OpenTK.Audio.OpenAL @@ -142,12 +126,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALDevice.Equals(object) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/ALDevice.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Equals - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/ALDevice.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\ALDevice.cs startLine: 28 assemblies: - OpenTK.Audio.OpenAL @@ -181,12 +161,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALDevice.Equals(OpenTK.Audio.OpenAL.ALDevice) type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/ALDevice.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Equals - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/ALDevice.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\ALDevice.cs startLine: 33 assemblies: - OpenTK.Audio.OpenAL @@ -218,12 +194,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALDevice.GetHashCode() type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/ALDevice.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetHashCode - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/ALDevice.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\ALDevice.cs startLine: 38 assemblies: - OpenTK.Audio.OpenAL @@ -250,12 +222,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALDevice.operator ==(OpenTK.Audio.OpenAL.ALDevice, OpenTK.Audio.OpenAL.ALDevice) type: Operator source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/ALDevice.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Equality - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/ALDevice.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\ALDevice.cs startLine: 43 assemblies: - OpenTK.Audio.OpenAL @@ -286,12 +254,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALDevice.operator !=(OpenTK.Audio.OpenAL.ALDevice, OpenTK.Audio.OpenAL.ALDevice) type: Operator source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/ALDevice.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Inequality - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/ALDevice.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\ALDevice.cs startLine: 48 assemblies: - OpenTK.Audio.OpenAL @@ -322,12 +286,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALDevice.implicit operator nint(OpenTK.Audio.OpenAL.ALDevice) type: Operator source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/ALDevice.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Implicit - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/ALDevice.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\ALDevice.cs startLine: 53 assemblies: - OpenTK.Audio.OpenAL diff --git a/api/OpenTK.Audio.OpenAL.ALDistanceModel.yml b/api/OpenTK.Audio.OpenAL.ALDistanceModel.yml index f83d8bcd..882cf772 100644 --- a/api/OpenTK.Audio.OpenAL.ALDistanceModel.yml +++ b/api/OpenTK.Audio.OpenAL.ALDistanceModel.yml @@ -20,17 +20,13 @@ items: fullName: OpenTK.Audio.OpenAL.ALDistanceModel type: Enum source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ALDistanceModel - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\ALEnums.cs startLine: 411 assemblies: - OpenTK.Audio.OpenAL namespace: OpenTK.Audio.OpenAL - summary: Used by AL.DistanceModel(), the distance model can be retrieved by AL.Get() with ALGetInteger.DistanceModel. + summary: Used by , the distance model can be retrieved by with . example: [] syntax: content: public enum ALDistanceModel @@ -47,12 +43,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALDistanceModel.None type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: None - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\ALEnums.cs startLine: 414 assemblies: - OpenTK.Audio.OpenAL @@ -75,12 +67,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALDistanceModel.InverseDistance type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: InverseDistance - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\ALEnums.cs startLine: 417 assemblies: - OpenTK.Audio.OpenAL @@ -103,12 +91,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALDistanceModel.InverseDistanceClamped type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: InverseDistanceClamped - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\ALEnums.cs startLine: 420 assemblies: - OpenTK.Audio.OpenAL @@ -131,12 +115,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALDistanceModel.LinearDistance type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: LinearDistance - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\ALEnums.cs startLine: 423 assemblies: - OpenTK.Audio.OpenAL @@ -159,12 +139,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALDistanceModel.LinearDistanceClamped type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: LinearDistanceClamped - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\ALEnums.cs startLine: 426 assemblies: - OpenTK.Audio.OpenAL @@ -187,12 +163,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALDistanceModel.ExponentDistance type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ExponentDistance - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\ALEnums.cs startLine: 429 assemblies: - OpenTK.Audio.OpenAL @@ -215,12 +187,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALDistanceModel.ExponentDistanceClamped type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ExponentDistanceClamped - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\ALEnums.cs startLine: 432 assemblies: - OpenTK.Audio.OpenAL @@ -232,6 +200,66 @@ items: return: type: OpenTK.Audio.OpenAL.ALDistanceModel references: +- uid: OpenTK.Audio.OpenAL.AL.DistanceModel(OpenTK.Audio.OpenAL.ALDistanceModel) + commentId: M:OpenTK.Audio.OpenAL.AL.DistanceModel(OpenTK.Audio.OpenAL.ALDistanceModel) + isExternal: true + href: OpenTK.Audio.OpenAL.AL.html#OpenTK_Audio_OpenAL_AL_DistanceModel_OpenTK_Audio_OpenAL_ALDistanceModel_ + name: DistanceModel(ALDistanceModel) + nameWithType: AL.DistanceModel(ALDistanceModel) + fullName: OpenTK.Audio.OpenAL.AL.DistanceModel(OpenTK.Audio.OpenAL.ALDistanceModel) + spec.csharp: + - uid: OpenTK.Audio.OpenAL.AL.DistanceModel(OpenTK.Audio.OpenAL.ALDistanceModel) + name: DistanceModel + isExternal: true + href: OpenTK.Audio.OpenAL.AL.html#OpenTK_Audio_OpenAL_AL_DistanceModel_OpenTK_Audio_OpenAL_ALDistanceModel_ + - name: ( + - uid: OpenTK.Audio.OpenAL.ALDistanceModel + name: ALDistanceModel + href: OpenTK.Audio.OpenAL.ALDistanceModel.html + - name: ) + spec.vb: + - uid: OpenTK.Audio.OpenAL.AL.DistanceModel(OpenTK.Audio.OpenAL.ALDistanceModel) + name: DistanceModel + isExternal: true + href: OpenTK.Audio.OpenAL.AL.html#OpenTK_Audio_OpenAL_AL_DistanceModel_OpenTK_Audio_OpenAL_ALDistanceModel_ + - name: ( + - uid: OpenTK.Audio.OpenAL.ALDistanceModel + name: ALDistanceModel + href: OpenTK.Audio.OpenAL.ALDistanceModel.html + - name: ) +- uid: OpenTK.Audio.OpenAL.AL.Get(OpenTK.Audio.OpenAL.ALGetInteger) + commentId: M:OpenTK.Audio.OpenAL.AL.Get(OpenTK.Audio.OpenAL.ALGetInteger) + isExternal: true + href: OpenTK.Audio.OpenAL.AL.html#OpenTK_Audio_OpenAL_AL_Get_OpenTK_Audio_OpenAL_ALGetInteger_ + name: Get(ALGetInteger) + nameWithType: AL.Get(ALGetInteger) + fullName: OpenTK.Audio.OpenAL.AL.Get(OpenTK.Audio.OpenAL.ALGetInteger) + spec.csharp: + - uid: OpenTK.Audio.OpenAL.AL.Get(OpenTK.Audio.OpenAL.ALGetInteger) + name: Get + isExternal: true + href: OpenTK.Audio.OpenAL.AL.html#OpenTK_Audio_OpenAL_AL_Get_OpenTK_Audio_OpenAL_ALGetInteger_ + - name: ( + - uid: OpenTK.Audio.OpenAL.ALGetInteger + name: ALGetInteger + href: OpenTK.Audio.OpenAL.ALGetInteger.html + - name: ) + spec.vb: + - uid: OpenTK.Audio.OpenAL.AL.Get(OpenTK.Audio.OpenAL.ALGetInteger) + name: Get + isExternal: true + href: OpenTK.Audio.OpenAL.AL.html#OpenTK_Audio_OpenAL_AL_Get_OpenTK_Audio_OpenAL_ALGetInteger_ + - name: ( + - uid: OpenTK.Audio.OpenAL.ALGetInteger + name: ALGetInteger + href: OpenTK.Audio.OpenAL.ALGetInteger.html + - name: ) +- uid: OpenTK.Audio.OpenAL.ALGetInteger.DistanceModel + commentId: F:OpenTK.Audio.OpenAL.ALGetInteger.DistanceModel + href: OpenTK.Audio.OpenAL.ALGetInteger.html#OpenTK_Audio_OpenAL_ALGetInteger_DistanceModel + name: DistanceModel + nameWithType: ALGetInteger.DistanceModel + fullName: OpenTK.Audio.OpenAL.ALGetInteger.DistanceModel - uid: OpenTK.Audio.OpenAL commentId: N:OpenTK.Audio.OpenAL href: OpenTK.html diff --git a/api/OpenTK.Audio.OpenAL.ALError.yml b/api/OpenTK.Audio.OpenAL.ALError.yml index b838903b..b8f32fa0 100644 --- a/api/OpenTK.Audio.OpenAL.ALError.yml +++ b/api/OpenTK.Audio.OpenAL.ALError.yml @@ -21,17 +21,13 @@ items: fullName: OpenTK.Audio.OpenAL.ALError type: Enum source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ALError - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\ALEnums.cs startLine: 347 assemblies: - OpenTK.Audio.OpenAL namespace: OpenTK.Audio.OpenAL - summary: Returned by AL.GetError. + summary: Returned by . example: [] syntax: content: public enum ALError @@ -48,12 +44,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALError.NoError type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: NoError - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\ALEnums.cs startLine: 350 assemblies: - OpenTK.Audio.OpenAL @@ -76,12 +68,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALError.InvalidName type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: InvalidName - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\ALEnums.cs startLine: 353 assemblies: - OpenTK.Audio.OpenAL @@ -104,12 +92,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALError.IllegalEnum type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: IllegalEnum - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\ALEnums.cs startLine: 356 assemblies: - OpenTK.Audio.OpenAL @@ -132,12 +116,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALError.InvalidEnum type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: InvalidEnum - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\ALEnums.cs startLine: 359 assemblies: - OpenTK.Audio.OpenAL @@ -160,12 +140,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALError.InvalidValue type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: InvalidValue - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\ALEnums.cs startLine: 362 assemblies: - OpenTK.Audio.OpenAL @@ -188,12 +164,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALError.IllegalCommand type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: IllegalCommand - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\ALEnums.cs startLine: 365 assemblies: - OpenTK.Audio.OpenAL @@ -216,12 +188,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALError.InvalidOperation type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: InvalidOperation - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\ALEnums.cs startLine: 368 assemblies: - OpenTK.Audio.OpenAL @@ -244,12 +212,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALError.OutOfMemory type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: OutOfMemory - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\ALEnums.cs startLine: 371 assemblies: - OpenTK.Audio.OpenAL @@ -261,6 +225,27 @@ items: return: type: OpenTK.Audio.OpenAL.ALError references: +- uid: OpenTK.Audio.OpenAL.AL.GetError + commentId: M:OpenTK.Audio.OpenAL.AL.GetError + isExternal: true + href: OpenTK.Audio.OpenAL.AL.html#OpenTK_Audio_OpenAL_AL_GetError + name: GetError() + nameWithType: AL.GetError() + fullName: OpenTK.Audio.OpenAL.AL.GetError() + spec.csharp: + - uid: OpenTK.Audio.OpenAL.AL.GetError + name: GetError + isExternal: true + href: OpenTK.Audio.OpenAL.AL.html#OpenTK_Audio_OpenAL_AL_GetError + - name: ( + - name: ) + spec.vb: + - uid: OpenTK.Audio.OpenAL.AL.GetError + name: GetError + isExternal: true + href: OpenTK.Audio.OpenAL.AL.html#OpenTK_Audio_OpenAL_AL_GetError + - name: ( + - name: ) - uid: OpenTK.Audio.OpenAL commentId: N:OpenTK.Audio.OpenAL href: OpenTK.html diff --git a/api/OpenTK.Audio.OpenAL.ALFormat.yml b/api/OpenTK.Audio.OpenAL.ALFormat.yml index 97b11171..555d70ca 100644 --- a/api/OpenTK.Audio.OpenAL.ALFormat.yml +++ b/api/OpenTK.Audio.OpenAL.ALFormat.yml @@ -44,12 +44,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALFormat type: Enum source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ALFormat - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\ALEnums.cs startLine: 219 assemblies: - OpenTK.Audio.OpenAL @@ -71,12 +67,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALFormat.Mono8 type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Mono8 - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\ALEnums.cs startLine: 222 assemblies: - OpenTK.Audio.OpenAL @@ -99,12 +91,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALFormat.Mono16 type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Mono16 - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\ALEnums.cs startLine: 225 assemblies: - OpenTK.Audio.OpenAL @@ -127,12 +115,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALFormat.Stereo8 type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Stereo8 - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\ALEnums.cs startLine: 228 assemblies: - OpenTK.Audio.OpenAL @@ -155,12 +139,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALFormat.Stereo16 type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Stereo16 - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\ALEnums.cs startLine: 231 assemblies: - OpenTK.Audio.OpenAL @@ -183,17 +163,13 @@ items: fullName: OpenTK.Audio.OpenAL.ALFormat.MonoALawExt type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MonoALawExt - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\ALEnums.cs startLine: 234 assemblies: - OpenTK.Audio.OpenAL namespace: OpenTK.Audio.OpenAL - summary: '1 Channel, A-law encoded data. Requires Extension: AL_EXT_ALAW' + summary: '1 Channel, A-law encoded data. Requires Extension: AL_EXT_ALAW.' example: [] syntax: content: MonoALawExt = 65558 @@ -211,17 +187,13 @@ items: fullName: OpenTK.Audio.OpenAL.ALFormat.StereoALawExt type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: StereoALawExt - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\ALEnums.cs startLine: 237 assemblies: - OpenTK.Audio.OpenAL namespace: OpenTK.Audio.OpenAL - summary: '2 Channels, A-law encoded data. Requires Extension: AL_EXT_ALAW' + summary: '2 Channels, A-law encoded data. Requires Extension: AL_EXT_ALAW.' example: [] syntax: content: StereoALawExt = 65559 @@ -239,17 +211,13 @@ items: fullName: OpenTK.Audio.OpenAL.ALFormat.MonoMuLawExt type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MonoMuLawExt - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\ALEnums.cs startLine: 240 assemblies: - OpenTK.Audio.OpenAL namespace: OpenTK.Audio.OpenAL - summary: '1 Channel, µ-law encoded data. Requires Extension: AL_EXT_MULAW' + summary: '1 Channel, µ-law encoded data. Requires Extension: AL_EXT_MULAW.' example: [] syntax: content: MonoMuLawExt = 65556 @@ -267,17 +235,13 @@ items: fullName: OpenTK.Audio.OpenAL.ALFormat.StereoMuLawExt type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: StereoMuLawExt - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\ALEnums.cs startLine: 243 assemblies: - OpenTK.Audio.OpenAL namespace: OpenTK.Audio.OpenAL - summary: '2 Channels, µ-law encoded data. Requires Extension: AL_EXT_MULAW' + summary: '2 Channels, µ-law encoded data. Requires Extension: AL_EXT_MULAW.' example: [] syntax: content: StereoMuLawExt = 65557 @@ -295,17 +259,13 @@ items: fullName: OpenTK.Audio.OpenAL.ALFormat.VorbisExt type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: VorbisExt - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\ALEnums.cs startLine: 246 assemblies: - OpenTK.Audio.OpenAL namespace: OpenTK.Audio.OpenAL - summary: 'Ogg Vorbis encoded data. Requires Extension: AL_EXT_vorbis' + summary: 'Ogg Vorbis encoded data. Requires Extension: AL_EXT_vorbis.' example: [] syntax: content: VorbisExt = 65539 @@ -323,17 +283,13 @@ items: fullName: OpenTK.Audio.OpenAL.ALFormat.Mp3Ext type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Mp3Ext - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\ALEnums.cs startLine: 249 assemblies: - OpenTK.Audio.OpenAL namespace: OpenTK.Audio.OpenAL - summary: 'MP3 encoded data. Requires Extension: AL_EXT_mp3' + summary: 'MP3 encoded data. Requires Extension: AL_EXT_mp3.' example: [] syntax: content: Mp3Ext = 65568 @@ -351,17 +307,13 @@ items: fullName: OpenTK.Audio.OpenAL.ALFormat.MonoIma4Ext type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MonoIma4Ext - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\ALEnums.cs startLine: 252 assemblies: - OpenTK.Audio.OpenAL namespace: OpenTK.Audio.OpenAL - summary: '1 Channel, IMA4 ADPCM encoded data. Requires Extension: AL_EXT_IMA4' + summary: '1 Channel, IMA4 ADPCM encoded data. Requires Extension: AL_EXT_IMA4.' example: [] syntax: content: MonoIma4Ext = 4864 @@ -379,17 +331,13 @@ items: fullName: OpenTK.Audio.OpenAL.ALFormat.StereoIma4Ext type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: StereoIma4Ext - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\ALEnums.cs startLine: 255 assemblies: - OpenTK.Audio.OpenAL namespace: OpenTK.Audio.OpenAL - summary: '2 Channels, IMA4 ADPCM encoded data. Requires Extension: AL_EXT_IMA4' + summary: '2 Channels, IMA4 ADPCM encoded data. Requires Extension: AL_EXT_IMA4.' example: [] syntax: content: StereoIma4Ext = 4865 @@ -407,17 +355,13 @@ items: fullName: OpenTK.Audio.OpenAL.ALFormat.MonoFloat32Ext type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MonoFloat32Ext - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\ALEnums.cs startLine: 258 assemblies: - OpenTK.Audio.OpenAL namespace: OpenTK.Audio.OpenAL - summary: '1 Channel, single-precision floating-point data. Requires Extension: AL_EXT_float32' + summary: '1 Channel, single-precision floating-point data. Requires Extension: AL_EXT_float32.' example: [] syntax: content: MonoFloat32Ext = 65552 @@ -435,17 +379,13 @@ items: fullName: OpenTK.Audio.OpenAL.ALFormat.StereoFloat32Ext type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: StereoFloat32Ext - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\ALEnums.cs startLine: 261 assemblies: - OpenTK.Audio.OpenAL namespace: OpenTK.Audio.OpenAL - summary: '2 Channels, single-precision floating-point data. Requires Extension: AL_EXT_float32' + summary: '2 Channels, single-precision floating-point data. Requires Extension: AL_EXT_float32.' example: [] syntax: content: StereoFloat32Ext = 65553 @@ -463,17 +403,13 @@ items: fullName: OpenTK.Audio.OpenAL.ALFormat.MonoDoubleExt type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MonoDoubleExt - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\ALEnums.cs startLine: 264 assemblies: - OpenTK.Audio.OpenAL namespace: OpenTK.Audio.OpenAL - summary: '1 Channel, double-precision floating-point data. Requires Extension: AL_EXT_double' + summary: '1 Channel, double-precision floating-point data. Requires Extension: AL_EXT_double.' example: [] syntax: content: MonoDoubleExt = 65554 @@ -491,17 +427,13 @@ items: fullName: OpenTK.Audio.OpenAL.ALFormat.StereoDoubleExt type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: StereoDoubleExt - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\ALEnums.cs startLine: 267 assemblies: - OpenTK.Audio.OpenAL namespace: OpenTK.Audio.OpenAL - summary: '2 Channels, double-precision floating-point data. Requires Extension: AL_EXT_double' + summary: '2 Channels, double-precision floating-point data. Requires Extension: AL_EXT_double.' example: [] syntax: content: StereoDoubleExt = 65555 @@ -519,17 +451,13 @@ items: fullName: OpenTK.Audio.OpenAL.ALFormat.Multi51Chn16Ext type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Multi51Chn16Ext - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\ALEnums.cs startLine: 270 assemblies: - OpenTK.Audio.OpenAL namespace: OpenTK.Audio.OpenAL - summary: 'Multichannel 5.1, 16-bit data. Requires Extension: AL_EXT_MCFORMATS' + summary: 'Multichannel 5.1, 16-bit data. Requires Extension: AL_EXT_MCFORMATS.' example: [] syntax: content: Multi51Chn16Ext = 4619 @@ -547,17 +475,13 @@ items: fullName: OpenTK.Audio.OpenAL.ALFormat.Multi51Chn32Ext type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Multi51Chn32Ext - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\ALEnums.cs startLine: 273 assemblies: - OpenTK.Audio.OpenAL namespace: OpenTK.Audio.OpenAL - summary: 'Multichannel 5.1, 32-bit data. Requires Extension: AL_EXT_MCFORMATS' + summary: 'Multichannel 5.1, 32-bit data. Requires Extension: AL_EXT_MCFORMATS.' example: [] syntax: content: Multi51Chn32Ext = 4620 @@ -575,17 +499,13 @@ items: fullName: OpenTK.Audio.OpenAL.ALFormat.Multi51Chn8Ext type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Multi51Chn8Ext - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\ALEnums.cs startLine: 276 assemblies: - OpenTK.Audio.OpenAL namespace: OpenTK.Audio.OpenAL - summary: 'Multichannel 5.1, 8-bit data. Requires Extension: AL_EXT_MCFORMATS' + summary: 'Multichannel 5.1, 8-bit data. Requires Extension: AL_EXT_MCFORMATS.' example: [] syntax: content: Multi51Chn8Ext = 4618 @@ -603,17 +523,13 @@ items: fullName: OpenTK.Audio.OpenAL.ALFormat.Multi61Chn16Ext type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Multi61Chn16Ext - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\ALEnums.cs startLine: 279 assemblies: - OpenTK.Audio.OpenAL namespace: OpenTK.Audio.OpenAL - summary: 'Multichannel 6.1, 16-bit data. Requires Extension: AL_EXT_MCFORMATS' + summary: 'Multichannel 6.1, 16-bit data. Requires Extension: AL_EXT_MCFORMATS.' example: [] syntax: content: Multi61Chn16Ext = 4622 @@ -631,17 +547,13 @@ items: fullName: OpenTK.Audio.OpenAL.ALFormat.Multi61Chn32Ext type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Multi61Chn32Ext - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\ALEnums.cs startLine: 282 assemblies: - OpenTK.Audio.OpenAL namespace: OpenTK.Audio.OpenAL - summary: 'Multichannel 6.1, 32-bit data. Requires Extension: AL_EXT_MCFORMATS' + summary: 'Multichannel 6.1, 32-bit data. Requires Extension: AL_EXT_MCFORMATS.' example: [] syntax: content: Multi61Chn32Ext = 4623 @@ -659,17 +571,13 @@ items: fullName: OpenTK.Audio.OpenAL.ALFormat.Multi61Chn8Ext type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Multi61Chn8Ext - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\ALEnums.cs startLine: 285 assemblies: - OpenTK.Audio.OpenAL namespace: OpenTK.Audio.OpenAL - summary: 'Multichannel 6.1, 8-bit data. Requires Extension: AL_EXT_MCFORMATS' + summary: 'Multichannel 6.1, 8-bit data. Requires Extension: AL_EXT_MCFORMATS.' example: [] syntax: content: Multi61Chn8Ext = 4621 @@ -687,17 +595,13 @@ items: fullName: OpenTK.Audio.OpenAL.ALFormat.Multi71Chn16Ext type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Multi71Chn16Ext - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\ALEnums.cs startLine: 288 assemblies: - OpenTK.Audio.OpenAL namespace: OpenTK.Audio.OpenAL - summary: 'Multichannel 7.1, 16-bit data. Requires Extension: AL_EXT_MCFORMATS' + summary: 'Multichannel 7.1, 16-bit data. Requires Extension: AL_EXT_MCFORMATS.' example: [] syntax: content: Multi71Chn16Ext = 4625 @@ -715,17 +619,13 @@ items: fullName: OpenTK.Audio.OpenAL.ALFormat.Multi71Chn32Ext type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Multi71Chn32Ext - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\ALEnums.cs startLine: 291 assemblies: - OpenTK.Audio.OpenAL namespace: OpenTK.Audio.OpenAL - summary: 'Multichannel 7.1, 32-bit data. Requires Extension: AL_EXT_MCFORMATS' + summary: 'Multichannel 7.1, 32-bit data. Requires Extension: AL_EXT_MCFORMATS.' example: [] syntax: content: Multi71Chn32Ext = 4626 @@ -743,17 +643,13 @@ items: fullName: OpenTK.Audio.OpenAL.ALFormat.Multi71Chn8Ext type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Multi71Chn8Ext - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\ALEnums.cs startLine: 294 assemblies: - OpenTK.Audio.OpenAL namespace: OpenTK.Audio.OpenAL - summary: 'Multichannel 7.1, 8-bit data. Requires Extension: AL_EXT_MCFORMATS' + summary: 'Multichannel 7.1, 8-bit data. Requires Extension: AL_EXT_MCFORMATS.' example: [] syntax: content: Multi71Chn8Ext = 4624 @@ -771,17 +667,13 @@ items: fullName: OpenTK.Audio.OpenAL.ALFormat.MultiQuad16Ext type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MultiQuad16Ext - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\ALEnums.cs startLine: 297 assemblies: - OpenTK.Audio.OpenAL namespace: OpenTK.Audio.OpenAL - summary: 'Multichannel 4.0, 16-bit data. Requires Extension: AL_EXT_MCFORMATS' + summary: 'Multichannel 4.0, 16-bit data. Requires Extension: AL_EXT_MCFORMATS.' example: [] syntax: content: MultiQuad16Ext = 4613 @@ -799,17 +691,13 @@ items: fullName: OpenTK.Audio.OpenAL.ALFormat.MultiQuad32Ext type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MultiQuad32Ext - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\ALEnums.cs startLine: 300 assemblies: - OpenTK.Audio.OpenAL namespace: OpenTK.Audio.OpenAL - summary: 'Multichannel 4.0, 32-bit data. Requires Extension: AL_EXT_MCFORMATS' + summary: 'Multichannel 4.0, 32-bit data. Requires Extension: AL_EXT_MCFORMATS.' example: [] syntax: content: MultiQuad32Ext = 4614 @@ -827,17 +715,13 @@ items: fullName: OpenTK.Audio.OpenAL.ALFormat.MultiQuad8Ext type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MultiQuad8Ext - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\ALEnums.cs startLine: 303 assemblies: - OpenTK.Audio.OpenAL namespace: OpenTK.Audio.OpenAL - summary: 'Multichannel 4.0, 8-bit data. Requires Extension: AL_EXT_MCFORMATS' + summary: 'Multichannel 4.0, 8-bit data. Requires Extension: AL_EXT_MCFORMATS.' example: [] syntax: content: MultiQuad8Ext = 4612 @@ -855,17 +739,13 @@ items: fullName: OpenTK.Audio.OpenAL.ALFormat.MultiRear16Ext type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MultiRear16Ext - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\ALEnums.cs startLine: 306 assemblies: - OpenTK.Audio.OpenAL namespace: OpenTK.Audio.OpenAL - summary: '1 Channel rear speaker, 16-bit data. See Quadrophonic setups. Requires Extension: AL_EXT_MCFORMATS' + summary: '1 Channel rear speaker, 16-bit data. See Quadrophonic setups. Requires Extension: AL_EXT_MCFORMATS.' example: [] syntax: content: MultiRear16Ext = 4616 @@ -883,17 +763,13 @@ items: fullName: OpenTK.Audio.OpenAL.ALFormat.MultiRear32Ext type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MultiRear32Ext - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\ALEnums.cs startLine: 309 assemblies: - OpenTK.Audio.OpenAL namespace: OpenTK.Audio.OpenAL - summary: '1 Channel rear speaker, 32-bit data. See Quadrophonic setups. Requires Extension: AL_EXT_MCFORMATS' + summary: '1 Channel rear speaker, 32-bit data. See Quadrophonic setups. Requires Extension: AL_EXT_MCFORMATS.' example: [] syntax: content: MultiRear32Ext = 4617 @@ -911,17 +787,13 @@ items: fullName: OpenTK.Audio.OpenAL.ALFormat.MultiRear8Ext type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MultiRear8Ext - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\ALEnums.cs startLine: 312 assemblies: - OpenTK.Audio.OpenAL namespace: OpenTK.Audio.OpenAL - summary: '1 Channel rear speaker, 8-bit data. See Quadrophonic setups. Requires Extension: AL_EXT_MCFORMATS' + summary: '1 Channel rear speaker, 8-bit data. See Quadrophonic setups. Requires Extension: AL_EXT_MCFORMATS.' example: [] syntax: content: MultiRear8Ext = 4615 diff --git a/api/OpenTK.Audio.OpenAL.ALGetBufferi.yml b/api/OpenTK.Audio.OpenAL.ALGetBufferi.yml index fc72be25..07d9eb6e 100644 --- a/api/OpenTK.Audio.OpenAL.ALGetBufferi.yml +++ b/api/OpenTK.Audio.OpenAL.ALGetBufferi.yml @@ -17,17 +17,13 @@ items: fullName: OpenTK.Audio.OpenAL.ALGetBufferi type: Enum source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ALGetBufferi - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\ALEnums.cs startLine: 316 assemblies: - OpenTK.Audio.OpenAL namespace: OpenTK.Audio.OpenAL - summary: A list of valid Int32 GetBuffer parameters. + summary: A list of valid Int32 parameters. example: [] syntax: content: public enum ALGetBufferi @@ -44,12 +40,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALGetBufferi.Frequency type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Frequency - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\ALEnums.cs startLine: 319 assemblies: - OpenTK.Audio.OpenAL @@ -72,12 +64,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALGetBufferi.Bits type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Bits - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\ALEnums.cs startLine: 322 assemblies: - OpenTK.Audio.OpenAL @@ -100,12 +88,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALGetBufferi.Channels type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Channels - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\ALEnums.cs startLine: 325 assemblies: - OpenTK.Audio.OpenAL @@ -128,12 +112,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALGetBufferi.Size type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Size - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\ALEnums.cs startLine: 328 assemblies: - OpenTK.Audio.OpenAL @@ -145,6 +125,46 @@ items: return: type: OpenTK.Audio.OpenAL.ALGetBufferi references: +- uid: OpenTK.Audio.OpenAL.AL.GetBuffer(System.Int32,OpenTK.Audio.OpenAL.ALGetBufferi) + commentId: M:OpenTK.Audio.OpenAL.AL.GetBuffer(System.Int32,OpenTK.Audio.OpenAL.ALGetBufferi) + isExternal: true + href: OpenTK.Audio.OpenAL.AL.html#OpenTK_Audio_OpenAL_AL_GetBuffer_System_Int32_OpenTK_Audio_OpenAL_ALGetBufferi_ + name: GetBuffer(int, ALGetBufferi) + nameWithType: AL.GetBuffer(int, ALGetBufferi) + fullName: OpenTK.Audio.OpenAL.AL.GetBuffer(int, OpenTK.Audio.OpenAL.ALGetBufferi) + nameWithType.vb: AL.GetBuffer(Integer, ALGetBufferi) + fullName.vb: OpenTK.Audio.OpenAL.AL.GetBuffer(Integer, OpenTK.Audio.OpenAL.ALGetBufferi) + name.vb: GetBuffer(Integer, ALGetBufferi) + spec.csharp: + - uid: OpenTK.Audio.OpenAL.AL.GetBuffer(System.Int32,OpenTK.Audio.OpenAL.ALGetBufferi) + name: GetBuffer + href: OpenTK.Audio.OpenAL.AL.html#OpenTK_Audio_OpenAL_AL_GetBuffer_System_Int32_OpenTK_Audio_OpenAL_ALGetBufferi_ + - name: ( + - uid: System.Int32 + name: int + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ',' + - name: " " + - uid: OpenTK.Audio.OpenAL.ALGetBufferi + name: ALGetBufferi + href: OpenTK.Audio.OpenAL.ALGetBufferi.html + - name: ) + spec.vb: + - uid: OpenTK.Audio.OpenAL.AL.GetBuffer(System.Int32,OpenTK.Audio.OpenAL.ALGetBufferi) + name: GetBuffer + href: OpenTK.Audio.OpenAL.AL.html#OpenTK_Audio_OpenAL_AL_GetBuffer_System_Int32_OpenTK_Audio_OpenAL_ALGetBufferi_ + - name: ( + - uid: System.Int32 + name: Integer + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ',' + - name: " " + - uid: OpenTK.Audio.OpenAL.ALGetBufferi + name: ALGetBufferi + href: OpenTK.Audio.OpenAL.ALGetBufferi.html + - name: ) - uid: OpenTK.Audio.OpenAL commentId: N:OpenTK.Audio.OpenAL href: OpenTK.html diff --git a/api/OpenTK.Audio.OpenAL.ALGetFloat.yml b/api/OpenTK.Audio.OpenAL.ALGetFloat.yml index 8ca09bf1..ceed4dda 100644 --- a/api/OpenTK.Audio.OpenAL.ALGetFloat.yml +++ b/api/OpenTK.Audio.OpenAL.ALGetFloat.yml @@ -16,17 +16,13 @@ items: fullName: OpenTK.Audio.OpenAL.ALGetFloat type: Enum source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ALGetFloat - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\ALEnums.cs startLine: 391 assemblies: - OpenTK.Audio.OpenAL namespace: OpenTK.Audio.OpenAL - summary: A list of valid 32-bit Float AL.Get() parameters. + summary: A list of valid 32-bit Float parameters. example: [] syntax: content: public enum ALGetFloat @@ -43,17 +39,13 @@ items: fullName: OpenTK.Audio.OpenAL.ALGetFloat.DopplerFactor type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DopplerFactor - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\ALEnums.cs startLine: 394 assemblies: - OpenTK.Audio.OpenAL namespace: OpenTK.Audio.OpenAL - summary: Doppler scale. Default 1.0f + summary: Doppler scale. Default 1.0f. example: [] syntax: content: DopplerFactor = 49152 @@ -71,12 +63,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALGetFloat.DopplerVelocity type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DopplerVelocity - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\ALEnums.cs startLine: 397 assemblies: - OpenTK.Audio.OpenAL @@ -99,23 +87,46 @@ items: fullName: OpenTK.Audio.OpenAL.ALGetFloat.SpeedOfSound type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SpeedOfSound - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\ALEnums.cs startLine: 400 assemblies: - OpenTK.Audio.OpenAL namespace: OpenTK.Audio.OpenAL - summary: 'Speed of Sound in units per second. Default: 343.3f' + summary: 'Speed of Sound in units per second. Default: 343.3f.' example: [] syntax: content: SpeedOfSound = 49155 return: type: OpenTK.Audio.OpenAL.ALGetFloat references: +- uid: OpenTK.Audio.OpenAL.AL.Get(OpenTK.Audio.OpenAL.ALGetFloat) + commentId: M:OpenTK.Audio.OpenAL.AL.Get(OpenTK.Audio.OpenAL.ALGetFloat) + isExternal: true + href: OpenTK.Audio.OpenAL.AL.html#OpenTK_Audio_OpenAL_AL_Get_OpenTK_Audio_OpenAL_ALGetFloat_ + name: Get(ALGetFloat) + nameWithType: AL.Get(ALGetFloat) + fullName: OpenTK.Audio.OpenAL.AL.Get(OpenTK.Audio.OpenAL.ALGetFloat) + spec.csharp: + - uid: OpenTK.Audio.OpenAL.AL.Get(OpenTK.Audio.OpenAL.ALGetFloat) + name: Get + isExternal: true + href: OpenTK.Audio.OpenAL.AL.html#OpenTK_Audio_OpenAL_AL_Get_OpenTK_Audio_OpenAL_ALGetFloat_ + - name: ( + - uid: OpenTK.Audio.OpenAL.ALGetFloat + name: ALGetFloat + href: OpenTK.Audio.OpenAL.ALGetFloat.html + - name: ) + spec.vb: + - uid: OpenTK.Audio.OpenAL.AL.Get(OpenTK.Audio.OpenAL.ALGetFloat) + name: Get + isExternal: true + href: OpenTK.Audio.OpenAL.AL.html#OpenTK_Audio_OpenAL_AL_Get_OpenTK_Audio_OpenAL_ALGetFloat_ + - name: ( + - uid: OpenTK.Audio.OpenAL.ALGetFloat + name: ALGetFloat + href: OpenTK.Audio.OpenAL.ALGetFloat.html + - name: ) - uid: OpenTK.Audio.OpenAL commentId: N:OpenTK.Audio.OpenAL href: OpenTK.html diff --git a/api/OpenTK.Audio.OpenAL.ALGetInteger.yml b/api/OpenTK.Audio.OpenAL.ALGetInteger.yml index 5e5acff2..c04f7018 100644 --- a/api/OpenTK.Audio.OpenAL.ALGetInteger.yml +++ b/api/OpenTK.Audio.OpenAL.ALGetInteger.yml @@ -14,17 +14,13 @@ items: fullName: OpenTK.Audio.OpenAL.ALGetInteger type: Enum source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ALGetInteger - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\ALEnums.cs startLine: 404 assemblies: - OpenTK.Audio.OpenAL namespace: OpenTK.Audio.OpenAL - summary: A list of valid Int32 AL.Get() parameters. + summary: A list of valid Int32 parameters. example: [] syntax: content: public enum ALGetInteger @@ -41,12 +37,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALGetInteger.DistanceModel type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DistanceModel - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\ALEnums.cs startLine: 407 assemblies: - OpenTK.Audio.OpenAL @@ -58,6 +50,33 @@ items: return: type: OpenTK.Audio.OpenAL.ALGetInteger references: +- uid: OpenTK.Audio.OpenAL.AL.Get(OpenTK.Audio.OpenAL.ALGetInteger) + commentId: M:OpenTK.Audio.OpenAL.AL.Get(OpenTK.Audio.OpenAL.ALGetInteger) + isExternal: true + href: OpenTK.Audio.OpenAL.AL.html#OpenTK_Audio_OpenAL_AL_Get_OpenTK_Audio_OpenAL_ALGetInteger_ + name: Get(ALGetInteger) + nameWithType: AL.Get(ALGetInteger) + fullName: OpenTK.Audio.OpenAL.AL.Get(OpenTK.Audio.OpenAL.ALGetInteger) + spec.csharp: + - uid: OpenTK.Audio.OpenAL.AL.Get(OpenTK.Audio.OpenAL.ALGetInteger) + name: Get + isExternal: true + href: OpenTK.Audio.OpenAL.AL.html#OpenTK_Audio_OpenAL_AL_Get_OpenTK_Audio_OpenAL_ALGetInteger_ + - name: ( + - uid: OpenTK.Audio.OpenAL.ALGetInteger + name: ALGetInteger + href: OpenTK.Audio.OpenAL.ALGetInteger.html + - name: ) + spec.vb: + - uid: OpenTK.Audio.OpenAL.AL.Get(OpenTK.Audio.OpenAL.ALGetInteger) + name: Get + isExternal: true + href: OpenTK.Audio.OpenAL.AL.html#OpenTK_Audio_OpenAL_AL_Get_OpenTK_Audio_OpenAL_ALGetInteger_ + - name: ( + - uid: OpenTK.Audio.OpenAL.ALGetInteger + name: ALGetInteger + href: OpenTK.Audio.OpenAL.ALGetInteger.html + - name: ) - uid: OpenTK.Audio.OpenAL commentId: N:OpenTK.Audio.OpenAL href: OpenTK.html diff --git a/api/OpenTK.Audio.OpenAL.ALGetSourcei.yml b/api/OpenTK.Audio.OpenAL.ALGetSourcei.yml index d2ae0006..422b03ea 100644 --- a/api/OpenTK.Audio.OpenAL.ALGetSourcei.yml +++ b/api/OpenTK.Audio.OpenAL.ALGetSourcei.yml @@ -20,17 +20,13 @@ items: fullName: OpenTK.Audio.OpenAL.ALGetSourcei type: Enum source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ALGetSourcei - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\ALEnums.cs startLine: 157 assemblies: - OpenTK.Audio.OpenAL namespace: OpenTK.Audio.OpenAL - summary: A list of valid Int32 GetSource parameters. + summary: A list of valid Int32 parameters. example: [] syntax: content: public enum ALGetSourcei @@ -47,12 +43,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALGetSourcei.ByteOffset type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ByteOffset - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\ALEnums.cs startLine: 160 assemblies: - OpenTK.Audio.OpenAL @@ -75,12 +67,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALGetSourcei.SampleOffset type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SampleOffset - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\ALEnums.cs startLine: 163 assemblies: - OpenTK.Audio.OpenAL @@ -103,12 +91,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALGetSourcei.Buffer type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Buffer - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\ALEnums.cs startLine: 166 assemblies: - OpenTK.Audio.OpenAL @@ -131,12 +115,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALGetSourcei.SourceState type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SourceState - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\ALEnums.cs startLine: 169 assemblies: - OpenTK.Audio.OpenAL @@ -159,12 +139,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALGetSourcei.BuffersQueued type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: BuffersQueued - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\ALEnums.cs startLine: 172 assemblies: - OpenTK.Audio.OpenAL @@ -187,12 +163,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALGetSourcei.BuffersProcessed type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: BuffersProcessed - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\ALEnums.cs startLine: 175 assemblies: - OpenTK.Audio.OpenAL @@ -215,12 +187,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALGetSourcei.SourceType type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SourceType - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\ALEnums.cs startLine: 178 assemblies: - OpenTK.Audio.OpenAL @@ -232,6 +200,46 @@ items: return: type: OpenTK.Audio.OpenAL.ALGetSourcei references: +- uid: OpenTK.Audio.OpenAL.AL.GetSource(System.Int32,OpenTK.Audio.OpenAL.ALGetSourcei) + commentId: M:OpenTK.Audio.OpenAL.AL.GetSource(System.Int32,OpenTK.Audio.OpenAL.ALGetSourcei) + isExternal: true + href: OpenTK.Audio.OpenAL.AL.html#OpenTK_Audio_OpenAL_AL_GetSource_System_Int32_OpenTK_Audio_OpenAL_ALGetSourcei_ + name: GetSource(int, ALGetSourcei) + nameWithType: AL.GetSource(int, ALGetSourcei) + fullName: OpenTK.Audio.OpenAL.AL.GetSource(int, OpenTK.Audio.OpenAL.ALGetSourcei) + nameWithType.vb: AL.GetSource(Integer, ALGetSourcei) + fullName.vb: OpenTK.Audio.OpenAL.AL.GetSource(Integer, OpenTK.Audio.OpenAL.ALGetSourcei) + name.vb: GetSource(Integer, ALGetSourcei) + spec.csharp: + - uid: OpenTK.Audio.OpenAL.AL.GetSource(System.Int32,OpenTK.Audio.OpenAL.ALGetSourcei) + name: GetSource + href: OpenTK.Audio.OpenAL.AL.html#OpenTK_Audio_OpenAL_AL_GetSource_System_Int32_OpenTK_Audio_OpenAL_ALGetSourcei_ + - name: ( + - uid: System.Int32 + name: int + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ',' + - name: " " + - uid: OpenTK.Audio.OpenAL.ALGetSourcei + name: ALGetSourcei + href: OpenTK.Audio.OpenAL.ALGetSourcei.html + - name: ) + spec.vb: + - uid: OpenTK.Audio.OpenAL.AL.GetSource(System.Int32,OpenTK.Audio.OpenAL.ALGetSourcei) + name: GetSource + href: OpenTK.Audio.OpenAL.AL.html#OpenTK_Audio_OpenAL_AL_GetSource_System_Int32_OpenTK_Audio_OpenAL_ALGetSourcei_ + - name: ( + - uid: System.Int32 + name: Integer + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ',' + - name: " " + - uid: OpenTK.Audio.OpenAL.ALGetSourcei + name: ALGetSourcei + href: OpenTK.Audio.OpenAL.ALGetSourcei.html + - name: ) - uid: OpenTK.Audio.OpenAL commentId: N:OpenTK.Audio.OpenAL href: OpenTK.html diff --git a/api/OpenTK.Audio.OpenAL.ALGetString.yml b/api/OpenTK.Audio.OpenAL.ALGetString.yml index 0126c3f7..44a1a277 100644 --- a/api/OpenTK.Audio.OpenAL.ALGetString.yml +++ b/api/OpenTK.Audio.OpenAL.ALGetString.yml @@ -17,17 +17,13 @@ items: fullName: OpenTK.Audio.OpenAL.ALGetString type: Enum source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ALGetString - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\ALEnums.cs startLine: 375 assemblies: - OpenTK.Audio.OpenAL namespace: OpenTK.Audio.OpenAL - summary: A list of valid string AL.Get() parameters. + summary: A list of valid string parameters. example: [] syntax: content: public enum ALGetString @@ -44,12 +40,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALGetString.Vendor type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Vendor - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\ALEnums.cs startLine: 378 assemblies: - OpenTK.Audio.OpenAL @@ -72,12 +64,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALGetString.Version type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Version - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\ALEnums.cs startLine: 381 assemblies: - OpenTK.Audio.OpenAL @@ -100,12 +88,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALGetString.Renderer type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Renderer - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\ALEnums.cs startLine: 384 assemblies: - OpenTK.Audio.OpenAL @@ -128,12 +112,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALGetString.Extensions type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Extensions - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\ALEnums.cs startLine: 387 assemblies: - OpenTK.Audio.OpenAL @@ -145,6 +125,33 @@ items: return: type: OpenTK.Audio.OpenAL.ALGetString references: +- uid: OpenTK.Audio.OpenAL.AL.Get(OpenTK.Audio.OpenAL.ALGetString) + commentId: M:OpenTK.Audio.OpenAL.AL.Get(OpenTK.Audio.OpenAL.ALGetString) + isExternal: true + href: OpenTK.Audio.OpenAL.AL.html#OpenTK_Audio_OpenAL_AL_Get_OpenTK_Audio_OpenAL_ALGetString_ + name: Get(ALGetString) + nameWithType: AL.Get(ALGetString) + fullName: OpenTK.Audio.OpenAL.AL.Get(OpenTK.Audio.OpenAL.ALGetString) + spec.csharp: + - uid: OpenTK.Audio.OpenAL.AL.Get(OpenTK.Audio.OpenAL.ALGetString) + name: Get + isExternal: true + href: OpenTK.Audio.OpenAL.AL.html#OpenTK_Audio_OpenAL_AL_Get_OpenTK_Audio_OpenAL_ALGetString_ + - name: ( + - uid: OpenTK.Audio.OpenAL.ALGetString + name: ALGetString + href: OpenTK.Audio.OpenAL.ALGetString.html + - name: ) + spec.vb: + - uid: OpenTK.Audio.OpenAL.AL.Get(OpenTK.Audio.OpenAL.ALGetString) + name: Get + isExternal: true + href: OpenTK.Audio.OpenAL.AL.html#OpenTK_Audio_OpenAL_AL_Get_OpenTK_Audio_OpenAL_ALGetString_ + - name: ( + - uid: OpenTK.Audio.OpenAL.ALGetString + name: ALGetString + href: OpenTK.Audio.OpenAL.ALGetString.html + - name: ) - uid: OpenTK.Audio.OpenAL commentId: N:OpenTK.Audio.OpenAL href: OpenTK.html diff --git a/api/OpenTK.Audio.OpenAL.ALListener3f.yml b/api/OpenTK.Audio.OpenAL.ALListener3f.yml index 02c8bed0..6aeb1b31 100644 --- a/api/OpenTK.Audio.OpenAL.ALListener3f.yml +++ b/api/OpenTK.Audio.OpenAL.ALListener3f.yml @@ -15,17 +15,13 @@ items: fullName: OpenTK.Audio.OpenAL.ALListener3f type: Enum source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ALListener3f - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\ALEnums.cs startLine: 30 assemblies: - OpenTK.Audio.OpenAL namespace: OpenTK.Audio.OpenAL - summary: A list of valid Math.Vector3 Listener/GetListener parameters. + summary: A list of valid / parameters. example: [] syntax: content: public enum ALListener3f @@ -42,12 +38,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALListener3f.Position type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Position - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\ALEnums.cs startLine: 33 assemblies: - OpenTK.Audio.OpenAL @@ -70,12 +62,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALListener3f.Velocity type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Velocity - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\ALEnums.cs startLine: 36 assemblies: - OpenTK.Audio.OpenAL @@ -87,6 +75,76 @@ items: return: type: OpenTK.Audio.OpenAL.ALListener3f references: +- uid: OpenTK.Mathematics.Vector3 + commentId: T:OpenTK.Mathematics.Vector3 + parent: OpenTK.Mathematics + href: OpenTK.Mathematics.Vector3.html + name: Vector3 + nameWithType: Vector3 + fullName: OpenTK.Mathematics.Vector3 +- uid: OpenTK.Audio.OpenAL.AL.Listener(OpenTK.Audio.OpenAL.ALListener3f,OpenTK.Mathematics.Vector3@) + commentId: M:OpenTK.Audio.OpenAL.AL.Listener(OpenTK.Audio.OpenAL.ALListener3f,OpenTK.Mathematics.Vector3@) + href: OpenTK.Audio.OpenAL.AL.html#OpenTK_Audio_OpenAL_AL_Listener_OpenTK_Audio_OpenAL_ALListener3f_OpenTK_Mathematics_Vector3__ + name: Listener(ALListener3f, ref Vector3) + nameWithType: AL.Listener(ALListener3f, ref Vector3) + fullName: OpenTK.Audio.OpenAL.AL.Listener(OpenTK.Audio.OpenAL.ALListener3f, ref OpenTK.Mathematics.Vector3) + nameWithType.vb: AL.Listener(ALListener3f, Vector3) + fullName.vb: OpenTK.Audio.OpenAL.AL.Listener(OpenTK.Audio.OpenAL.ALListener3f, OpenTK.Mathematics.Vector3) + name.vb: Listener(ALListener3f, Vector3) + spec.csharp: + - uid: OpenTK.Audio.OpenAL.AL.Listener(OpenTK.Audio.OpenAL.ALListener3f,OpenTK.Mathematics.Vector3@) + name: Listener + href: OpenTK.Audio.OpenAL.AL.html#OpenTK_Audio_OpenAL_AL_Listener_OpenTK_Audio_OpenAL_ALListener3f_OpenTK_Mathematics_Vector3__ + - name: ( + - uid: OpenTK.Audio.OpenAL.ALListener3f + name: ALListener3f + href: OpenTK.Audio.OpenAL.ALListener3f.html + - name: ',' + - name: " " + - name: ref + - name: " " + - uid: OpenTK.Mathematics.Vector3 + name: Vector3 + href: OpenTK.Mathematics.Vector3.html + - name: ) + spec.vb: + - uid: OpenTK.Audio.OpenAL.AL.Listener(OpenTK.Audio.OpenAL.ALListener3f,OpenTK.Mathematics.Vector3@) + name: Listener + href: OpenTK.Audio.OpenAL.AL.html#OpenTK_Audio_OpenAL_AL_Listener_OpenTK_Audio_OpenAL_ALListener3f_OpenTK_Mathematics_Vector3__ + - name: ( + - uid: OpenTK.Audio.OpenAL.ALListener3f + name: ALListener3f + href: OpenTK.Audio.OpenAL.ALListener3f.html + - name: ',' + - name: " " + - uid: OpenTK.Mathematics.Vector3 + name: Vector3 + href: OpenTK.Mathematics.Vector3.html + - name: ) +- uid: OpenTK.Audio.OpenAL.AL.GetListener(OpenTK.Audio.OpenAL.ALListener3f) + commentId: M:OpenTK.Audio.OpenAL.AL.GetListener(OpenTK.Audio.OpenAL.ALListener3f) + href: OpenTK.Audio.OpenAL.AL.html#OpenTK_Audio_OpenAL_AL_GetListener_OpenTK_Audio_OpenAL_ALListener3f_ + name: GetListener(ALListener3f) + nameWithType: AL.GetListener(ALListener3f) + fullName: OpenTK.Audio.OpenAL.AL.GetListener(OpenTK.Audio.OpenAL.ALListener3f) + spec.csharp: + - uid: OpenTK.Audio.OpenAL.AL.GetListener(OpenTK.Audio.OpenAL.ALListener3f) + name: GetListener + href: OpenTK.Audio.OpenAL.AL.html#OpenTK_Audio_OpenAL_AL_GetListener_OpenTK_Audio_OpenAL_ALListener3f_ + - name: ( + - uid: OpenTK.Audio.OpenAL.ALListener3f + name: ALListener3f + href: OpenTK.Audio.OpenAL.ALListener3f.html + - name: ) + spec.vb: + - uid: OpenTK.Audio.OpenAL.AL.GetListener(OpenTK.Audio.OpenAL.ALListener3f) + name: GetListener + href: OpenTK.Audio.OpenAL.AL.html#OpenTK_Audio_OpenAL_AL_GetListener_OpenTK_Audio_OpenAL_ALListener3f_ + - name: ( + - uid: OpenTK.Audio.OpenAL.ALListener3f + name: ALListener3f + href: OpenTK.Audio.OpenAL.ALListener3f.html + - name: ) - uid: OpenTK.Audio.OpenAL commentId: N:OpenTK.Audio.OpenAL href: OpenTK.html @@ -117,6 +175,28 @@ references: - uid: OpenTK.Audio.OpenAL name: OpenAL href: OpenTK.Audio.OpenAL.html +- uid: OpenTK.Mathematics + commentId: N:OpenTK.Mathematics + href: OpenTK.html + name: OpenTK.Mathematics + nameWithType: OpenTK.Mathematics + fullName: OpenTK.Mathematics + spec.csharp: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Mathematics + name: Mathematics + href: OpenTK.Mathematics.html + spec.vb: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Mathematics + name: Mathematics + href: OpenTK.Mathematics.html - uid: OpenTK.Audio.OpenAL.ALListener3f commentId: T:OpenTK.Audio.OpenAL.ALListener3f parent: OpenTK.Audio.OpenAL diff --git a/api/OpenTK.Audio.OpenAL.ALListenerf.yml b/api/OpenTK.Audio.OpenAL.ALListenerf.yml index de15d45e..77749c94 100644 --- a/api/OpenTK.Audio.OpenAL.ALListenerf.yml +++ b/api/OpenTK.Audio.OpenAL.ALListenerf.yml @@ -15,17 +15,13 @@ items: fullName: OpenTK.Audio.OpenAL.ALListenerf type: Enum source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ALListenerf - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\ALEnums.cs startLine: 20 assemblies: - OpenTK.Audio.OpenAL namespace: OpenTK.Audio.OpenAL - summary: A list of valid 32-bit Float Listener/GetListener parameters. + summary: A list of valid 32-bit Float / parameters. example: [] syntax: content: public enum ALListenerf @@ -42,12 +38,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALListenerf.Gain type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Gain - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\ALEnums.cs startLine: 23 assemblies: - OpenTK.Audio.OpenAL @@ -70,23 +62,85 @@ items: fullName: OpenTK.Audio.OpenAL.ALListenerf.EfxMetersPerUnit type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: EfxMetersPerUnit - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\ALEnums.cs startLine: 26 assemblies: - OpenTK.Audio.OpenAL namespace: OpenTK.Audio.OpenAL - summary: '(EFX Extension) This setting is critical if Air Absorption effects are enabled because the amount of Air Absorption applied is directly related to the real-world distance between the Source and the Listener. centimeters 0.01f meters 1.0f kilometers 1000.0f Range [float.MinValue .. float.MaxValue] Default: 1.0f' + summary: '(EFX Extension) This setting is critical if Air Absorption effects are enabled because the amount of Air Absorption applied is directly related to the real-world distance between the Source and the Listener. centimeters 0.01f meters 1.0f kilometers 1000.0f Range [float.MinValue .. float.MaxValue] Default: 1.0f.' example: [] syntax: content: EfxMetersPerUnit = 131076 return: type: OpenTK.Audio.OpenAL.ALListenerf references: +- uid: OpenTK.Audio.OpenAL.AL.Listener(OpenTK.Audio.OpenAL.ALListenerf,System.Single) + commentId: M:OpenTK.Audio.OpenAL.AL.Listener(OpenTK.Audio.OpenAL.ALListenerf,System.Single) + isExternal: true + href: OpenTK.Audio.OpenAL.AL.html#OpenTK_Audio_OpenAL_AL_Listener_OpenTK_Audio_OpenAL_ALListenerf_System_Single_ + name: Listener(ALListenerf, float) + nameWithType: AL.Listener(ALListenerf, float) + fullName: OpenTK.Audio.OpenAL.AL.Listener(OpenTK.Audio.OpenAL.ALListenerf, float) + nameWithType.vb: AL.Listener(ALListenerf, Single) + fullName.vb: OpenTK.Audio.OpenAL.AL.Listener(OpenTK.Audio.OpenAL.ALListenerf, Single) + name.vb: Listener(ALListenerf, Single) + spec.csharp: + - uid: OpenTK.Audio.OpenAL.AL.Listener(OpenTK.Audio.OpenAL.ALListenerf,System.Single) + name: Listener + isExternal: true + href: OpenTK.Audio.OpenAL.AL.html#OpenTK_Audio_OpenAL_AL_Listener_OpenTK_Audio_OpenAL_ALListenerf_System_Single_ + - name: ( + - uid: OpenTK.Audio.OpenAL.ALListenerf + name: ALListenerf + href: OpenTK.Audio.OpenAL.ALListenerf.html + - name: ',' + - name: " " + - uid: System.Single + name: float + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.single + - name: ) + spec.vb: + - uid: OpenTK.Audio.OpenAL.AL.Listener(OpenTK.Audio.OpenAL.ALListenerf,System.Single) + name: Listener + isExternal: true + href: OpenTK.Audio.OpenAL.AL.html#OpenTK_Audio_OpenAL_AL_Listener_OpenTK_Audio_OpenAL_ALListenerf_System_Single_ + - name: ( + - uid: OpenTK.Audio.OpenAL.ALListenerf + name: ALListenerf + href: OpenTK.Audio.OpenAL.ALListenerf.html + - name: ',' + - name: " " + - uid: System.Single + name: Single + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.single + - name: ) +- uid: OpenTK.Audio.OpenAL.AL.GetListener(OpenTK.Audio.OpenAL.ALListenerf) + commentId: M:OpenTK.Audio.OpenAL.AL.GetListener(OpenTK.Audio.OpenAL.ALListenerf) + href: OpenTK.Audio.OpenAL.AL.html#OpenTK_Audio_OpenAL_AL_GetListener_OpenTK_Audio_OpenAL_ALListenerf_ + name: GetListener(ALListenerf) + nameWithType: AL.GetListener(ALListenerf) + fullName: OpenTK.Audio.OpenAL.AL.GetListener(OpenTK.Audio.OpenAL.ALListenerf) + spec.csharp: + - uid: OpenTK.Audio.OpenAL.AL.GetListener(OpenTK.Audio.OpenAL.ALListenerf) + name: GetListener + href: OpenTK.Audio.OpenAL.AL.html#OpenTK_Audio_OpenAL_AL_GetListener_OpenTK_Audio_OpenAL_ALListenerf_ + - name: ( + - uid: OpenTK.Audio.OpenAL.ALListenerf + name: ALListenerf + href: OpenTK.Audio.OpenAL.ALListenerf.html + - name: ) + spec.vb: + - uid: OpenTK.Audio.OpenAL.AL.GetListener(OpenTK.Audio.OpenAL.ALListenerf) + name: GetListener + href: OpenTK.Audio.OpenAL.AL.html#OpenTK_Audio_OpenAL_AL_GetListener_OpenTK_Audio_OpenAL_ALListenerf_ + - name: ( + - uid: OpenTK.Audio.OpenAL.ALListenerf + name: ALListenerf + href: OpenTK.Audio.OpenAL.ALListenerf.html + - name: ) - uid: OpenTK.Audio.OpenAL commentId: N:OpenTK.Audio.OpenAL href: OpenTK.html diff --git a/api/OpenTK.Audio.OpenAL.ALListenerfv.yml b/api/OpenTK.Audio.OpenAL.ALListenerfv.yml index 6d31a0f7..6a50f43c 100644 --- a/api/OpenTK.Audio.OpenAL.ALListenerfv.yml +++ b/api/OpenTK.Audio.OpenAL.ALListenerfv.yml @@ -14,17 +14,13 @@ items: fullName: OpenTK.Audio.OpenAL.ALListenerfv type: Enum source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ALListenerfv - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\ALEnums.cs startLine: 40 assemblies: - OpenTK.Audio.OpenAL namespace: OpenTK.Audio.OpenAL - summary: A list of valid float[] Listener/GetListener parameters. + summary: A list of valid float[] / parameters. example: [] syntax: content: public enum ALListenerfv @@ -41,12 +37,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALListenerfv.Orientation type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Orientation - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\ALEnums.cs startLine: 43 assemblies: - OpenTK.Audio.OpenAL @@ -58,6 +50,98 @@ items: return: type: OpenTK.Audio.OpenAL.ALListenerfv references: +- uid: OpenTK.Audio.OpenAL.AL.Listener(OpenTK.Audio.OpenAL.ALListenerfv,System.Single[]) + commentId: M:OpenTK.Audio.OpenAL.AL.Listener(OpenTK.Audio.OpenAL.ALListenerfv,System.Single[]) + isExternal: true + href: OpenTK.Audio.OpenAL.AL.html#OpenTK_Audio_OpenAL_AL_Listener_OpenTK_Audio_OpenAL_ALListenerfv_System_Single___ + name: Listener(ALListenerfv, float[]) + nameWithType: AL.Listener(ALListenerfv, float[]) + fullName: OpenTK.Audio.OpenAL.AL.Listener(OpenTK.Audio.OpenAL.ALListenerfv, float[]) + nameWithType.vb: AL.Listener(ALListenerfv, Single()) + fullName.vb: OpenTK.Audio.OpenAL.AL.Listener(OpenTK.Audio.OpenAL.ALListenerfv, Single()) + name.vb: Listener(ALListenerfv, Single()) + spec.csharp: + - uid: OpenTK.Audio.OpenAL.AL.Listener(OpenTK.Audio.OpenAL.ALListenerfv,System.Single[]) + name: Listener + isExternal: true + href: OpenTK.Audio.OpenAL.AL.html#OpenTK_Audio_OpenAL_AL_Listener_OpenTK_Audio_OpenAL_ALListenerfv_System_Single___ + - name: ( + - uid: OpenTK.Audio.OpenAL.ALListenerfv + name: ALListenerfv + href: OpenTK.Audio.OpenAL.ALListenerfv.html + - name: ',' + - name: " " + - uid: System.Single + name: float + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.single + - name: '[' + - name: ']' + - name: ) + spec.vb: + - uid: OpenTK.Audio.OpenAL.AL.Listener(OpenTK.Audio.OpenAL.ALListenerfv,System.Single[]) + name: Listener + isExternal: true + href: OpenTK.Audio.OpenAL.AL.html#OpenTK_Audio_OpenAL_AL_Listener_OpenTK_Audio_OpenAL_ALListenerfv_System_Single___ + - name: ( + - uid: OpenTK.Audio.OpenAL.ALListenerfv + name: ALListenerfv + href: OpenTK.Audio.OpenAL.ALListenerfv.html + - name: ',' + - name: " " + - uid: System.Single + name: Single + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.single + - name: ( + - name: ) + - name: ) +- uid: OpenTK.Audio.OpenAL.AL.GetListener(OpenTK.Audio.OpenAL.ALListenerfv,System.Single[]) + commentId: M:OpenTK.Audio.OpenAL.AL.GetListener(OpenTK.Audio.OpenAL.ALListenerfv,System.Single[]) + isExternal: true + href: OpenTK.Audio.OpenAL.AL.html#OpenTK_Audio_OpenAL_AL_GetListener_OpenTK_Audio_OpenAL_ALListenerfv_System_Single___ + name: GetListener(ALListenerfv, float[]) + nameWithType: AL.GetListener(ALListenerfv, float[]) + fullName: OpenTK.Audio.OpenAL.AL.GetListener(OpenTK.Audio.OpenAL.ALListenerfv, float[]) + nameWithType.vb: AL.GetListener(ALListenerfv, Single()) + fullName.vb: OpenTK.Audio.OpenAL.AL.GetListener(OpenTK.Audio.OpenAL.ALListenerfv, Single()) + name.vb: GetListener(ALListenerfv, Single()) + spec.csharp: + - uid: OpenTK.Audio.OpenAL.AL.GetListener(OpenTK.Audio.OpenAL.ALListenerfv,System.Single[]) + name: GetListener + isExternal: true + href: OpenTK.Audio.OpenAL.AL.html#OpenTK_Audio_OpenAL_AL_GetListener_OpenTK_Audio_OpenAL_ALListenerfv_System_Single___ + - name: ( + - uid: OpenTK.Audio.OpenAL.ALListenerfv + name: ALListenerfv + href: OpenTK.Audio.OpenAL.ALListenerfv.html + - name: ',' + - name: " " + - uid: System.Single + name: float + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.single + - name: '[' + - name: ']' + - name: ) + spec.vb: + - uid: OpenTK.Audio.OpenAL.AL.GetListener(OpenTK.Audio.OpenAL.ALListenerfv,System.Single[]) + name: GetListener + isExternal: true + href: OpenTK.Audio.OpenAL.AL.html#OpenTK_Audio_OpenAL_AL_GetListener_OpenTK_Audio_OpenAL_ALListenerfv_System_Single___ + - name: ( + - uid: OpenTK.Audio.OpenAL.ALListenerfv + name: ALListenerfv + href: OpenTK.Audio.OpenAL.ALListenerfv.html + - name: ',' + - name: " " + - uid: System.Single + name: Single + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.single + - name: ( + - name: ) + - name: ) - uid: OpenTK.Audio.OpenAL commentId: N:OpenTK.Audio.OpenAL href: OpenTK.html diff --git a/api/OpenTK.Audio.OpenAL.ALSource3f.yml b/api/OpenTK.Audio.OpenAL.ALSource3f.yml index 5620d2f9..4663f35d 100644 --- a/api/OpenTK.Audio.OpenAL.ALSource3f.yml +++ b/api/OpenTK.Audio.OpenAL.ALSource3f.yml @@ -16,17 +16,13 @@ items: fullName: OpenTK.Audio.OpenAL.ALSource3f type: Enum source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ALSource3f - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\ALEnums.cs startLine: 93 assemblies: - OpenTK.Audio.OpenAL namespace: OpenTK.Audio.OpenAL - summary: A list of valid Math.Vector3 Source/GetSource parameters. + summary: A list of valid / parameters. example: [] syntax: content: public enum ALSource3f @@ -43,12 +39,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALSource3f.Position type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Position - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\ALEnums.cs startLine: 96 assemblies: - OpenTK.Audio.OpenAL @@ -71,12 +63,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALSource3f.Velocity type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Velocity - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\ALEnums.cs startLine: 99 assemblies: - OpenTK.Audio.OpenAL @@ -99,12 +87,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALSource3f.Direction type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Direction - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\ALEnums.cs startLine: 102 assemblies: - OpenTK.Audio.OpenAL @@ -116,6 +100,105 @@ items: return: type: OpenTK.Audio.OpenAL.ALSource3f references: +- uid: OpenTK.Mathematics.Vector3 + commentId: T:OpenTK.Mathematics.Vector3 + parent: OpenTK.Mathematics + href: OpenTK.Mathematics.Vector3.html + name: Vector3 + nameWithType: Vector3 + fullName: OpenTK.Mathematics.Vector3 +- uid: OpenTK.Audio.OpenAL.AL.Source(System.Int32,OpenTK.Audio.OpenAL.ALSource3f,OpenTK.Mathematics.Vector3@) + commentId: M:OpenTK.Audio.OpenAL.AL.Source(System.Int32,OpenTK.Audio.OpenAL.ALSource3f,OpenTK.Mathematics.Vector3@) + isExternal: true + href: OpenTK.Audio.OpenAL.AL.html#OpenTK_Audio_OpenAL_AL_Source_System_Int32_OpenTK_Audio_OpenAL_ALSource3f_OpenTK_Mathematics_Vector3__ + name: Source(int, ALSource3f, ref Vector3) + nameWithType: AL.Source(int, ALSource3f, ref Vector3) + fullName: OpenTK.Audio.OpenAL.AL.Source(int, OpenTK.Audio.OpenAL.ALSource3f, ref OpenTK.Mathematics.Vector3) + nameWithType.vb: AL.Source(Integer, ALSource3f, Vector3) + fullName.vb: OpenTK.Audio.OpenAL.AL.Source(Integer, OpenTK.Audio.OpenAL.ALSource3f, OpenTK.Mathematics.Vector3) + name.vb: Source(Integer, ALSource3f, Vector3) + spec.csharp: + - uid: OpenTK.Audio.OpenAL.AL.Source(System.Int32,OpenTK.Audio.OpenAL.ALSource3f,OpenTK.Mathematics.Vector3@) + name: Source + href: OpenTK.Audio.OpenAL.AL.html#OpenTK_Audio_OpenAL_AL_Source_System_Int32_OpenTK_Audio_OpenAL_ALSource3f_OpenTK_Mathematics_Vector3__ + - name: ( + - uid: System.Int32 + name: int + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ',' + - name: " " + - uid: OpenTK.Audio.OpenAL.ALSource3f + name: ALSource3f + href: OpenTK.Audio.OpenAL.ALSource3f.html + - name: ',' + - name: " " + - name: ref + - name: " " + - uid: OpenTK.Mathematics.Vector3 + name: Vector3 + href: OpenTK.Mathematics.Vector3.html + - name: ) + spec.vb: + - uid: OpenTK.Audio.OpenAL.AL.Source(System.Int32,OpenTK.Audio.OpenAL.ALSource3f,OpenTK.Mathematics.Vector3@) + name: Source + href: OpenTK.Audio.OpenAL.AL.html#OpenTK_Audio_OpenAL_AL_Source_System_Int32_OpenTK_Audio_OpenAL_ALSource3f_OpenTK_Mathematics_Vector3__ + - name: ( + - uid: System.Int32 + name: Integer + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ',' + - name: " " + - uid: OpenTK.Audio.OpenAL.ALSource3f + name: ALSource3f + href: OpenTK.Audio.OpenAL.ALSource3f.html + - name: ',' + - name: " " + - uid: OpenTK.Mathematics.Vector3 + name: Vector3 + href: OpenTK.Mathematics.Vector3.html + - name: ) +- uid: OpenTK.Audio.OpenAL.AL.GetSource(System.Int32,OpenTK.Audio.OpenAL.ALSource3f) + commentId: M:OpenTK.Audio.OpenAL.AL.GetSource(System.Int32,OpenTK.Audio.OpenAL.ALSource3f) + isExternal: true + href: OpenTK.Audio.OpenAL.AL.html#OpenTK_Audio_OpenAL_AL_GetSource_System_Int32_OpenTK_Audio_OpenAL_ALSource3f_ + name: GetSource(int, ALSource3f) + nameWithType: AL.GetSource(int, ALSource3f) + fullName: OpenTK.Audio.OpenAL.AL.GetSource(int, OpenTK.Audio.OpenAL.ALSource3f) + nameWithType.vb: AL.GetSource(Integer, ALSource3f) + fullName.vb: OpenTK.Audio.OpenAL.AL.GetSource(Integer, OpenTK.Audio.OpenAL.ALSource3f) + name.vb: GetSource(Integer, ALSource3f) + spec.csharp: + - uid: OpenTK.Audio.OpenAL.AL.GetSource(System.Int32,OpenTK.Audio.OpenAL.ALSource3f) + name: GetSource + href: OpenTK.Audio.OpenAL.AL.html#OpenTK_Audio_OpenAL_AL_GetSource_System_Int32_OpenTK_Audio_OpenAL_ALSource3f_ + - name: ( + - uid: System.Int32 + name: int + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ',' + - name: " " + - uid: OpenTK.Audio.OpenAL.ALSource3f + name: ALSource3f + href: OpenTK.Audio.OpenAL.ALSource3f.html + - name: ) + spec.vb: + - uid: OpenTK.Audio.OpenAL.AL.GetSource(System.Int32,OpenTK.Audio.OpenAL.ALSource3f) + name: GetSource + href: OpenTK.Audio.OpenAL.AL.html#OpenTK_Audio_OpenAL_AL_GetSource_System_Int32_OpenTK_Audio_OpenAL_ALSource3f_ + - name: ( + - uid: System.Int32 + name: Integer + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ',' + - name: " " + - uid: OpenTK.Audio.OpenAL.ALSource3f + name: ALSource3f + href: OpenTK.Audio.OpenAL.ALSource3f.html + - name: ) - uid: OpenTK.Audio.OpenAL commentId: N:OpenTK.Audio.OpenAL href: OpenTK.html @@ -146,6 +229,28 @@ references: - uid: OpenTK.Audio.OpenAL name: OpenAL href: OpenTK.Audio.OpenAL.html +- uid: OpenTK.Mathematics + commentId: N:OpenTK.Mathematics + href: OpenTK.html + name: OpenTK.Mathematics + nameWithType: OpenTK.Mathematics + fullName: OpenTK.Mathematics + spec.csharp: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Mathematics + name: Mathematics + href: OpenTK.Mathematics.html + spec.vb: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Mathematics + name: Mathematics + href: OpenTK.Mathematics.html - uid: OpenTK.Audio.OpenAL.ALSource3f commentId: T:OpenTK.Audio.OpenAL.ALSource3f parent: OpenTK.Audio.OpenAL diff --git a/api/OpenTK.Audio.OpenAL.ALSource3i.yml b/api/OpenTK.Audio.OpenAL.ALSource3i.yml index 12f53ce7..0420900d 100644 --- a/api/OpenTK.Audio.OpenAL.ALSource3i.yml +++ b/api/OpenTK.Audio.OpenAL.ALSource3i.yml @@ -16,17 +16,13 @@ items: fullName: OpenTK.Audio.OpenAL.ALSource3i type: Enum source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ALSource3i - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\ALEnums.cs startLine: 144 assemblies: - OpenTK.Audio.OpenAL namespace: OpenTK.Audio.OpenAL - summary: A list of valid 3x Int32 Source/GetSource parameters. + summary: A list of valid 3x Int32 / parameters. example: [] syntax: content: public enum ALSource3i @@ -43,12 +39,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALSource3i.Position type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Position - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\ALEnums.cs startLine: 147 assemblies: - OpenTK.Audio.OpenAL @@ -71,12 +63,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALSource3i.Velocity type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Velocity - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\ALEnums.cs startLine: 150 assemblies: - OpenTK.Audio.OpenAL @@ -99,12 +87,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALSource3i.Direction type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Direction - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\ALEnums.cs startLine: 153 assemblies: - OpenTK.Audio.OpenAL @@ -116,6 +100,124 @@ items: return: type: OpenTK.Audio.OpenAL.ALSource3i references: +- uid: OpenTK.Audio.OpenAL.AL.Source(System.Int32,OpenTK.Audio.OpenAL.ALSource3i,System.Int32,System.Int32,System.Int32) + commentId: M:OpenTK.Audio.OpenAL.AL.Source(System.Int32,OpenTK.Audio.OpenAL.ALSource3i,System.Int32,System.Int32,System.Int32) + isExternal: true + href: OpenTK.Audio.OpenAL.AL.html#OpenTK_Audio_OpenAL_AL_Source_System_Int32_OpenTK_Audio_OpenAL_ALSource3i_System_Int32_System_Int32_System_Int32_ + name: Source(int, ALSource3i, int, int, int) + nameWithType: AL.Source(int, ALSource3i, int, int, int) + fullName: OpenTK.Audio.OpenAL.AL.Source(int, OpenTK.Audio.OpenAL.ALSource3i, int, int, int) + nameWithType.vb: AL.Source(Integer, ALSource3i, Integer, Integer, Integer) + fullName.vb: OpenTK.Audio.OpenAL.AL.Source(Integer, OpenTK.Audio.OpenAL.ALSource3i, Integer, Integer, Integer) + name.vb: Source(Integer, ALSource3i, Integer, Integer, Integer) + spec.csharp: + - uid: OpenTK.Audio.OpenAL.AL.Source(System.Int32,OpenTK.Audio.OpenAL.ALSource3i,System.Int32,System.Int32,System.Int32) + name: Source + isExternal: true + href: OpenTK.Audio.OpenAL.AL.html#OpenTK_Audio_OpenAL_AL_Source_System_Int32_OpenTK_Audio_OpenAL_ALSource3i_System_Int32_System_Int32_System_Int32_ + - name: ( + - uid: System.Int32 + name: int + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ',' + - name: " " + - uid: OpenTK.Audio.OpenAL.ALSource3i + name: ALSource3i + href: OpenTK.Audio.OpenAL.ALSource3i.html + - name: ',' + - name: " " + - uid: System.Int32 + name: int + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ',' + - name: " " + - uid: System.Int32 + name: int + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ',' + - name: " " + - uid: System.Int32 + name: int + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ) + spec.vb: + - uid: OpenTK.Audio.OpenAL.AL.Source(System.Int32,OpenTK.Audio.OpenAL.ALSource3i,System.Int32,System.Int32,System.Int32) + name: Source + isExternal: true + href: OpenTK.Audio.OpenAL.AL.html#OpenTK_Audio_OpenAL_AL_Source_System_Int32_OpenTK_Audio_OpenAL_ALSource3i_System_Int32_System_Int32_System_Int32_ + - name: ( + - uid: System.Int32 + name: Integer + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ',' + - name: " " + - uid: OpenTK.Audio.OpenAL.ALSource3i + name: ALSource3i + href: OpenTK.Audio.OpenAL.ALSource3i.html + - name: ',' + - name: " " + - uid: System.Int32 + name: Integer + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ',' + - name: " " + - uid: System.Int32 + name: Integer + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ',' + - name: " " + - uid: System.Int32 + name: Integer + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ) +- uid: OpenTK.Audio.OpenAL.AL.GetSource(System.Int32,OpenTK.Audio.OpenAL.ALSource3i) + commentId: M:OpenTK.Audio.OpenAL.AL.GetSource(System.Int32,OpenTK.Audio.OpenAL.ALSource3i) + isExternal: true + href: OpenTK.Audio.OpenAL.AL.html#OpenTK_Audio_OpenAL_AL_GetSource_System_Int32_OpenTK_Audio_OpenAL_ALSource3i_ + name: GetSource(int, ALSource3i) + nameWithType: AL.GetSource(int, ALSource3i) + fullName: OpenTK.Audio.OpenAL.AL.GetSource(int, OpenTK.Audio.OpenAL.ALSource3i) + nameWithType.vb: AL.GetSource(Integer, ALSource3i) + fullName.vb: OpenTK.Audio.OpenAL.AL.GetSource(Integer, OpenTK.Audio.OpenAL.ALSource3i) + name.vb: GetSource(Integer, ALSource3i) + spec.csharp: + - uid: OpenTK.Audio.OpenAL.AL.GetSource(System.Int32,OpenTK.Audio.OpenAL.ALSource3i) + name: GetSource + href: OpenTK.Audio.OpenAL.AL.html#OpenTK_Audio_OpenAL_AL_GetSource_System_Int32_OpenTK_Audio_OpenAL_ALSource3i_ + - name: ( + - uid: System.Int32 + name: int + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ',' + - name: " " + - uid: OpenTK.Audio.OpenAL.ALSource3i + name: ALSource3i + href: OpenTK.Audio.OpenAL.ALSource3i.html + - name: ) + spec.vb: + - uid: OpenTK.Audio.OpenAL.AL.GetSource(System.Int32,OpenTK.Audio.OpenAL.ALSource3i) + name: GetSource + href: OpenTK.Audio.OpenAL.AL.html#OpenTK_Audio_OpenAL_AL_GetSource_System_Int32_OpenTK_Audio_OpenAL_ALSource3i_ + - name: ( + - uid: System.Int32 + name: Integer + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ',' + - name: " " + - uid: OpenTK.Audio.OpenAL.ALSource3i + name: ALSource3i + href: OpenTK.Audio.OpenAL.ALSource3i.html + - name: ) - uid: OpenTK.Audio.OpenAL commentId: N:OpenTK.Audio.OpenAL href: OpenTK.html diff --git a/api/OpenTK.Audio.OpenAL.ALSourceState.yml b/api/OpenTK.Audio.OpenAL.ALSourceState.yml index d7d1b983..f065c19d 100644 --- a/api/OpenTK.Audio.OpenAL.ALSourceState.yml +++ b/api/OpenTK.Audio.OpenAL.ALSourceState.yml @@ -17,17 +17,13 @@ items: fullName: OpenTK.Audio.OpenAL.ALSourceState type: Enum source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ALSourceState - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\ALEnums.cs startLine: 190 assemblies: - OpenTK.Audio.OpenAL namespace: OpenTK.Audio.OpenAL - summary: Source state information, can be retrieved by AL.Source() with ALSourcei.SourceState. + summary: Source state information, can be retrieved by with . example: [] syntax: content: public enum ALSourceState @@ -44,12 +40,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALSourceState.Initial type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Initial - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\ALEnums.cs startLine: 193 assemblies: - OpenTK.Audio.OpenAL @@ -72,12 +64,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALSourceState.Playing type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Playing - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\ALEnums.cs startLine: 196 assemblies: - OpenTK.Audio.OpenAL @@ -100,12 +88,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALSourceState.Paused type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Paused - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\ALEnums.cs startLine: 199 assemblies: - OpenTK.Audio.OpenAL @@ -128,12 +112,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALSourceState.Stopped type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Stopped - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\ALEnums.cs startLine: 202 assemblies: - OpenTK.Audio.OpenAL @@ -145,6 +125,52 @@ items: return: type: OpenTK.Audio.OpenAL.ALSourceState references: +- uid: OpenTK.Audio.OpenAL.AL.GetSource(System.Int32,OpenTK.Audio.OpenAL.ALGetSourcei) + commentId: M:OpenTK.Audio.OpenAL.AL.GetSource(System.Int32,OpenTK.Audio.OpenAL.ALGetSourcei) + isExternal: true + href: OpenTK.Audio.OpenAL.AL.html#OpenTK_Audio_OpenAL_AL_GetSource_System_Int32_OpenTK_Audio_OpenAL_ALGetSourcei_ + name: GetSource(int, ALGetSourcei) + nameWithType: AL.GetSource(int, ALGetSourcei) + fullName: OpenTK.Audio.OpenAL.AL.GetSource(int, OpenTK.Audio.OpenAL.ALGetSourcei) + nameWithType.vb: AL.GetSource(Integer, ALGetSourcei) + fullName.vb: OpenTK.Audio.OpenAL.AL.GetSource(Integer, OpenTK.Audio.OpenAL.ALGetSourcei) + name.vb: GetSource(Integer, ALGetSourcei) + spec.csharp: + - uid: OpenTK.Audio.OpenAL.AL.GetSource(System.Int32,OpenTK.Audio.OpenAL.ALGetSourcei) + name: GetSource + href: OpenTK.Audio.OpenAL.AL.html#OpenTK_Audio_OpenAL_AL_GetSource_System_Int32_OpenTK_Audio_OpenAL_ALGetSourcei_ + - name: ( + - uid: System.Int32 + name: int + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ',' + - name: " " + - uid: OpenTK.Audio.OpenAL.ALGetSourcei + name: ALGetSourcei + href: OpenTK.Audio.OpenAL.ALGetSourcei.html + - name: ) + spec.vb: + - uid: OpenTK.Audio.OpenAL.AL.GetSource(System.Int32,OpenTK.Audio.OpenAL.ALGetSourcei) + name: GetSource + href: OpenTK.Audio.OpenAL.AL.html#OpenTK_Audio_OpenAL_AL_GetSource_System_Int32_OpenTK_Audio_OpenAL_ALGetSourcei_ + - name: ( + - uid: System.Int32 + name: Integer + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ',' + - name: " " + - uid: OpenTK.Audio.OpenAL.ALGetSourcei + name: ALGetSourcei + href: OpenTK.Audio.OpenAL.ALGetSourcei.html + - name: ) +- uid: OpenTK.Audio.OpenAL.ALGetSourcei.SourceState + commentId: F:OpenTK.Audio.OpenAL.ALGetSourcei.SourceState + href: OpenTK.Audio.OpenAL.ALGetSourcei.html#OpenTK_Audio_OpenAL_ALGetSourcei_SourceState + name: SourceState + nameWithType: ALGetSourcei.SourceState + fullName: OpenTK.Audio.OpenAL.ALGetSourcei.SourceState - uid: OpenTK.Audio.OpenAL commentId: N:OpenTK.Audio.OpenAL href: OpenTK.html diff --git a/api/OpenTK.Audio.OpenAL.ALSourceType.yml b/api/OpenTK.Audio.OpenAL.ALSourceType.yml index a55c5b3a..c3513f8b 100644 --- a/api/OpenTK.Audio.OpenAL.ALSourceType.yml +++ b/api/OpenTK.Audio.OpenAL.ALSourceType.yml @@ -16,17 +16,13 @@ items: fullName: OpenTK.Audio.OpenAL.ALSourceType type: Enum source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ALSourceType - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\ALEnums.cs startLine: 206 assemblies: - OpenTK.Audio.OpenAL namespace: OpenTK.Audio.OpenAL - summary: Source type information, can be retrieved by AL.Source() with ALSourcei.SourceType. + summary: Source type information, can be retrieved by with . example: [] syntax: content: public enum ALSourceType @@ -43,12 +39,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALSourceType.Static type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Static - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\ALEnums.cs startLine: 209 assemblies: - OpenTK.Audio.OpenAL @@ -71,17 +63,13 @@ items: fullName: OpenTK.Audio.OpenAL.ALSourceType.Streaming type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Streaming - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\ALEnums.cs startLine: 212 assemblies: - OpenTK.Audio.OpenAL namespace: OpenTK.Audio.OpenAL - summary: Source is Streaming if one or more Buffers have been attached using AL.SourceQueueBuffers + summary: Source is Streaming if one or more Buffers have been attached using AL.SourceQueueBuffers. example: [] syntax: content: Streaming = 4137 @@ -99,23 +87,65 @@ items: fullName: OpenTK.Audio.OpenAL.ALSourceType.Undetermined type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Undetermined - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\ALEnums.cs startLine: 215 assemblies: - OpenTK.Audio.OpenAL namespace: OpenTK.Audio.OpenAL - summary: Source is undetermined when it has a null Buffer attached + summary: Source is undetermined when it has a null Buffer attached. example: [] syntax: content: Undetermined = 4144 return: type: OpenTK.Audio.OpenAL.ALSourceType references: +- uid: OpenTK.Audio.OpenAL.AL.GetSource(System.Int32,OpenTK.Audio.OpenAL.ALGetSourcei) + commentId: M:OpenTK.Audio.OpenAL.AL.GetSource(System.Int32,OpenTK.Audio.OpenAL.ALGetSourcei) + isExternal: true + href: OpenTK.Audio.OpenAL.AL.html#OpenTK_Audio_OpenAL_AL_GetSource_System_Int32_OpenTK_Audio_OpenAL_ALGetSourcei_ + name: GetSource(int, ALGetSourcei) + nameWithType: AL.GetSource(int, ALGetSourcei) + fullName: OpenTK.Audio.OpenAL.AL.GetSource(int, OpenTK.Audio.OpenAL.ALGetSourcei) + nameWithType.vb: AL.GetSource(Integer, ALGetSourcei) + fullName.vb: OpenTK.Audio.OpenAL.AL.GetSource(Integer, OpenTK.Audio.OpenAL.ALGetSourcei) + name.vb: GetSource(Integer, ALGetSourcei) + spec.csharp: + - uid: OpenTK.Audio.OpenAL.AL.GetSource(System.Int32,OpenTK.Audio.OpenAL.ALGetSourcei) + name: GetSource + href: OpenTK.Audio.OpenAL.AL.html#OpenTK_Audio_OpenAL_AL_GetSource_System_Int32_OpenTK_Audio_OpenAL_ALGetSourcei_ + - name: ( + - uid: System.Int32 + name: int + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ',' + - name: " " + - uid: OpenTK.Audio.OpenAL.ALGetSourcei + name: ALGetSourcei + href: OpenTK.Audio.OpenAL.ALGetSourcei.html + - name: ) + spec.vb: + - uid: OpenTK.Audio.OpenAL.AL.GetSource(System.Int32,OpenTK.Audio.OpenAL.ALGetSourcei) + name: GetSource + href: OpenTK.Audio.OpenAL.AL.html#OpenTK_Audio_OpenAL_AL_GetSource_System_Int32_OpenTK_Audio_OpenAL_ALGetSourcei_ + - name: ( + - uid: System.Int32 + name: Integer + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ',' + - name: " " + - uid: OpenTK.Audio.OpenAL.ALGetSourcei + name: ALGetSourcei + href: OpenTK.Audio.OpenAL.ALGetSourcei.html + - name: ) +- uid: OpenTK.Audio.OpenAL.ALGetSourcei.SourceType + commentId: F:OpenTK.Audio.OpenAL.ALGetSourcei.SourceType + href: OpenTK.Audio.OpenAL.ALGetSourcei.html#OpenTK_Audio_OpenAL_ALGetSourcei_SourceType + name: SourceType + nameWithType: ALGetSourcei.SourceType + fullName: OpenTK.Audio.OpenAL.ALGetSourcei.SourceType - uid: OpenTK.Audio.OpenAL commentId: N:OpenTK.Audio.OpenAL href: OpenTK.html diff --git a/api/OpenTK.Audio.OpenAL.ALSourceb.yml b/api/OpenTK.Audio.OpenAL.ALSourceb.yml index ac728575..1f5a2a76 100644 --- a/api/OpenTK.Audio.OpenAL.ALSourceb.yml +++ b/api/OpenTK.Audio.OpenAL.ALSourceb.yml @@ -18,17 +18,13 @@ items: fullName: OpenTK.Audio.OpenAL.ALSourceb type: Enum source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ALSourceb - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\ALEnums.cs startLine: 106 assemblies: - OpenTK.Audio.OpenAL namespace: OpenTK.Audio.OpenAL - summary: A list of valid 8-bit boolean Source/GetSource parameters. + summary: A list of valid 8-bit boolean / parameters. example: [] syntax: content: public enum ALSourceb @@ -45,17 +41,13 @@ items: fullName: OpenTK.Audio.OpenAL.ALSourceb.SourceRelative type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SourceRelative - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\ALEnums.cs startLine: 109 assemblies: - OpenTK.Audio.OpenAL namespace: OpenTK.Audio.OpenAL - summary: 'Indicate that the Source has relative coordinates. Type: bool Range: [True, False]' + summary: 'Indicate that the Source has relative coordinates. Type: bool Range: [True, False].' example: [] syntax: content: SourceRelative = 514 @@ -73,12 +65,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALSourceb.Looping type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Looping - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\ALEnums.cs startLine: 112 assemblies: - OpenTK.Audio.OpenAL @@ -101,17 +89,13 @@ items: fullName: OpenTK.Audio.OpenAL.ALSourceb.EfxDirectFilterGainHighFrequencyAuto type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: EfxDirectFilterGainHighFrequencyAuto - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\ALEnums.cs startLine: 115 assemblies: - OpenTK.Audio.OpenAL namespace: OpenTK.Audio.OpenAL - summary: '(EFX Extension) If this Source property is set to True, this Source’s direct-path is automatically filtered according to the orientation of the source relative to the listener and the setting of the Source property Sourcef.ConeOuterGainHF. Type: bool Range [False, True] Default: True' + summary: '(EFX Extension) If this Source property is set to True, this Source’s direct-path is automatically filtered according to the orientation of the source relative to the listener and the setting of the Source property Sourcef.ConeOuterGainHF. Type: bool Range [False, True] Default: True.' example: [] syntax: content: EfxDirectFilterGainHighFrequencyAuto = 131082 @@ -129,17 +113,13 @@ items: fullName: OpenTK.Audio.OpenAL.ALSourceb.EfxAuxiliarySendFilterGainAuto type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: EfxAuxiliarySendFilterGainAuto - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\ALEnums.cs startLine: 118 assemblies: - OpenTK.Audio.OpenAL namespace: OpenTK.Audio.OpenAL - summary: '(EFX Extension) If this Source property is set to True, the intensity of this Source’s reflected sound is automatically attenuated according to source-listener distance and source directivity (as determined by the cone parameters). If it is False, the reflected sound is not attenuated according to distance and directivity. Type: bool Range [False, True] Default: True' + summary: '(EFX Extension) If this Source property is set to True, the intensity of this Source’s reflected sound is automatically attenuated according to source-listener distance and source directivity (as determined by the cone parameters). If it is False, the reflected sound is not attenuated according to distance and directivity. Type: bool Range [False, True] Default: True.' example: [] syntax: content: EfxAuxiliarySendFilterGainAuto = 131083 @@ -157,23 +137,113 @@ items: fullName: OpenTK.Audio.OpenAL.ALSourceb.EfxAuxiliarySendFilterGainHighFrequencyAuto type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: EfxAuxiliarySendFilterGainHighFrequencyAuto - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\ALEnums.cs startLine: 121 assemblies: - OpenTK.Audio.OpenAL namespace: OpenTK.Audio.OpenAL - summary: '(EFX Extension) If this Source property is AL_TRUE (its default value), the intensity of this Source’s reflected sound at high frequencies will be automatically attenuated according to the high-frequency source directivity as set by the Sourcef.ConeOuterGainHF property. If this property is AL_FALSE, the Source’s reflected sound is not filtered at all according to the Source’s directivity. Type: bool Range [False, True] Default: True' + summary: '(EFX Extension) If this Source property is AL_TRUE (its default value), the intensity of this Source’s reflected sound at high frequencies will be automatically attenuated according to the high-frequency source directivity as set by the Sourcef.ConeOuterGainHF property. If this property is AL_FALSE, the Source’s reflected sound is not filtered at all according to the Source’s directivity. Type: bool Range [False, True] Default: True.' example: [] syntax: content: EfxAuxiliarySendFilterGainHighFrequencyAuto = 131084 return: type: OpenTK.Audio.OpenAL.ALSourceb references: +- uid: OpenTK.Audio.OpenAL.AL.Source(System.Int32,OpenTK.Audio.OpenAL.ALSourceb,System.Boolean) + commentId: M:OpenTK.Audio.OpenAL.AL.Source(System.Int32,OpenTK.Audio.OpenAL.ALSourceb,System.Boolean) + isExternal: true + href: OpenTK.Audio.OpenAL.AL.html#OpenTK_Audio_OpenAL_AL_Source_System_Int32_OpenTK_Audio_OpenAL_ALSourceb_System_Boolean_ + name: Source(int, ALSourceb, bool) + nameWithType: AL.Source(int, ALSourceb, bool) + fullName: OpenTK.Audio.OpenAL.AL.Source(int, OpenTK.Audio.OpenAL.ALSourceb, bool) + nameWithType.vb: AL.Source(Integer, ALSourceb, Boolean) + fullName.vb: OpenTK.Audio.OpenAL.AL.Source(Integer, OpenTK.Audio.OpenAL.ALSourceb, Boolean) + name.vb: Source(Integer, ALSourceb, Boolean) + spec.csharp: + - uid: OpenTK.Audio.OpenAL.AL.Source(System.Int32,OpenTK.Audio.OpenAL.ALSourceb,System.Boolean) + name: Source + isExternal: true + href: OpenTK.Audio.OpenAL.AL.html#OpenTK_Audio_OpenAL_AL_Source_System_Int32_OpenTK_Audio_OpenAL_ALSourceb_System_Boolean_ + - name: ( + - uid: System.Int32 + name: int + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ',' + - name: " " + - uid: OpenTK.Audio.OpenAL.ALSourceb + name: ALSourceb + href: OpenTK.Audio.OpenAL.ALSourceb.html + - name: ',' + - name: " " + - uid: System.Boolean + name: bool + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: ) + spec.vb: + - uid: OpenTK.Audio.OpenAL.AL.Source(System.Int32,OpenTK.Audio.OpenAL.ALSourceb,System.Boolean) + name: Source + isExternal: true + href: OpenTK.Audio.OpenAL.AL.html#OpenTK_Audio_OpenAL_AL_Source_System_Int32_OpenTK_Audio_OpenAL_ALSourceb_System_Boolean_ + - name: ( + - uid: System.Int32 + name: Integer + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ',' + - name: " " + - uid: OpenTK.Audio.OpenAL.ALSourceb + name: ALSourceb + href: OpenTK.Audio.OpenAL.ALSourceb.html + - name: ',' + - name: " " + - uid: System.Boolean + name: Boolean + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: ) +- uid: OpenTK.Audio.OpenAL.AL.GetSource(System.Int32,OpenTK.Audio.OpenAL.ALSourceb) + commentId: M:OpenTK.Audio.OpenAL.AL.GetSource(System.Int32,OpenTK.Audio.OpenAL.ALSourceb) + isExternal: true + href: OpenTK.Audio.OpenAL.AL.html#OpenTK_Audio_OpenAL_AL_GetSource_System_Int32_OpenTK_Audio_OpenAL_ALSourceb_ + name: GetSource(int, ALSourceb) + nameWithType: AL.GetSource(int, ALSourceb) + fullName: OpenTK.Audio.OpenAL.AL.GetSource(int, OpenTK.Audio.OpenAL.ALSourceb) + nameWithType.vb: AL.GetSource(Integer, ALSourceb) + fullName.vb: OpenTK.Audio.OpenAL.AL.GetSource(Integer, OpenTK.Audio.OpenAL.ALSourceb) + name.vb: GetSource(Integer, ALSourceb) + spec.csharp: + - uid: OpenTK.Audio.OpenAL.AL.GetSource(System.Int32,OpenTK.Audio.OpenAL.ALSourceb) + name: GetSource + href: OpenTK.Audio.OpenAL.AL.html#OpenTK_Audio_OpenAL_AL_GetSource_System_Int32_OpenTK_Audio_OpenAL_ALSourceb_ + - name: ( + - uid: System.Int32 + name: int + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ',' + - name: " " + - uid: OpenTK.Audio.OpenAL.ALSourceb + name: ALSourceb + href: OpenTK.Audio.OpenAL.ALSourceb.html + - name: ) + spec.vb: + - uid: OpenTK.Audio.OpenAL.AL.GetSource(System.Int32,OpenTK.Audio.OpenAL.ALSourceb) + name: GetSource + href: OpenTK.Audio.OpenAL.AL.html#OpenTK_Audio_OpenAL_AL_GetSource_System_Int32_OpenTK_Audio_OpenAL_ALSourceb_ + - name: ( + - uid: System.Int32 + name: Integer + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ',' + - name: " " + - uid: OpenTK.Audio.OpenAL.ALSourceb + name: ALSourceb + href: OpenTK.Audio.OpenAL.ALSourceb.html + - name: ) - uid: OpenTK.Audio.OpenAL commentId: N:OpenTK.Audio.OpenAL href: OpenTK.html diff --git a/api/OpenTK.Audio.OpenAL.ALSourcef.yml b/api/OpenTK.Audio.OpenAL.ALSourcef.yml index c889cb09..37860286 100644 --- a/api/OpenTK.Audio.OpenAL.ALSourcef.yml +++ b/api/OpenTK.Audio.OpenAL.ALSourcef.yml @@ -27,17 +27,13 @@ items: fullName: OpenTK.Audio.OpenAL.ALSourcef type: Enum source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ALSourcef - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\ALEnums.cs startLine: 47 assemblies: - OpenTK.Audio.OpenAL namespace: OpenTK.Audio.OpenAL - summary: A list of valid 32-bit Float Source/GetSource parameters. + summary: A list of valid 32-bit Float / parameters. example: [] syntax: content: public enum ALSourcef @@ -54,12 +50,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALSourcef.ReferenceDistance type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ReferenceDistance - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\ALEnums.cs startLine: 50 assemblies: - OpenTK.Audio.OpenAL @@ -82,17 +74,13 @@ items: fullName: OpenTK.Audio.OpenAL.ALSourcef.MaxDistance type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MaxDistance - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\ALEnums.cs startLine: 53 assemblies: - OpenTK.Audio.OpenAL namespace: OpenTK.Audio.OpenAL - summary: 'Indicate distance above which Sources are not attenuated using the inverse clamped distance model. Default: float.PositiveInfinity Type: float Range: [0.0f - float.PositiveInfinity]' + summary: 'Indicate distance above which Sources are not attenuated using the inverse clamped distance model. Default: float.PositiveInfinity Type: float Range: [0.0f - float.PositiveInfinity].' example: [] syntax: content: MaxDistance = 4131 @@ -110,17 +98,13 @@ items: fullName: OpenTK.Audio.OpenAL.ALSourcef.RolloffFactor type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: RolloffFactor - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\ALEnums.cs startLine: 56 assemblies: - OpenTK.Audio.OpenAL namespace: OpenTK.Audio.OpenAL - summary: 'Source specific rolloff factor. Type: float Range: [0.0f - float.PositiveInfinity]' + summary: 'Source specific rolloff factor. Type: float Range: [0.0f - float.PositiveInfinity].' example: [] syntax: content: RolloffFactor = 4129 @@ -138,17 +122,13 @@ items: fullName: OpenTK.Audio.OpenAL.ALSourcef.Pitch type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Pitch - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\ALEnums.cs startLine: 59 assemblies: - OpenTK.Audio.OpenAL namespace: OpenTK.Audio.OpenAL - summary: 'Specify the pitch to be applied, either at Source, or on mixer results, at Listener. Range: [0.5f - 2.0f] Default: 1.0f' + summary: 'Specify the pitch to be applied, either at Source, or on mixer results, at Listener. Range: [0.5f - 2.0f] Default: 1.0f.' example: [] syntax: content: Pitch = 4099 @@ -166,12 +146,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALSourcef.Gain type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Gain - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\ALEnums.cs startLine: 62 assemblies: - OpenTK.Audio.OpenAL @@ -194,17 +170,13 @@ items: fullName: OpenTK.Audio.OpenAL.ALSourcef.MinGain type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MinGain - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\ALEnums.cs startLine: 65 assemblies: - OpenTK.Audio.OpenAL namespace: OpenTK.Audio.OpenAL - summary: 'Indicate minimum Source attenuation. Type: float Range: [0.0f - 1.0f] (Logarthmic)' + summary: 'Indicate minimum Source attenuation. Type: float Range: [0.0f - 1.0f] (Logarthmic).' example: [] syntax: content: MinGain = 4109 @@ -222,17 +194,13 @@ items: fullName: OpenTK.Audio.OpenAL.ALSourcef.MaxGain type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MaxGain - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\ALEnums.cs startLine: 68 assemblies: - OpenTK.Audio.OpenAL namespace: OpenTK.Audio.OpenAL - summary: 'Indicate maximum Source attenuation. Type: float Range: [0.0f - 1.0f] (Logarthmic)' + summary: 'Indicate maximum Source attenuation. Type: float Range: [0.0f - 1.0f] (Logarthmic).' example: [] syntax: content: MaxGain = 4110 @@ -250,17 +218,13 @@ items: fullName: OpenTK.Audio.OpenAL.ALSourcef.ConeInnerAngle type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ConeInnerAngle - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\ALEnums.cs startLine: 71 assemblies: - OpenTK.Audio.OpenAL namespace: OpenTK.Audio.OpenAL - summary: 'Directional Source, inner cone angle, in degrees. Range: [0-360] Default: 360' + summary: 'Directional Source, inner cone angle, in degrees. Range: [0-360] Default: 360.' example: [] syntax: content: ConeInnerAngle = 4097 @@ -278,17 +242,13 @@ items: fullName: OpenTK.Audio.OpenAL.ALSourcef.ConeOuterAngle type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ConeOuterAngle - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\ALEnums.cs startLine: 74 assemblies: - OpenTK.Audio.OpenAL namespace: OpenTK.Audio.OpenAL - summary: 'Directional Source, outer cone angle, in degrees. Range: [0-360] Default: 360' + summary: 'Directional Source, outer cone angle, in degrees. Range: [0-360] Default: 360.' example: [] syntax: content: ConeOuterAngle = 4098 @@ -306,17 +266,13 @@ items: fullName: OpenTK.Audio.OpenAL.ALSourcef.ConeOuterGain type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ConeOuterGain - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\ALEnums.cs startLine: 77 assemblies: - OpenTK.Audio.OpenAL namespace: OpenTK.Audio.OpenAL - summary: 'Directional Source, outer cone gain. Default: 0.0f Range: [0.0f - 1.0] (Logarithmic)' + summary: 'Directional Source, outer cone gain. Default: 0.0f Range: [0.0f - 1.0] (Logarithmic).' example: [] syntax: content: ConeOuterGain = 4130 @@ -334,12 +290,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALSourcef.SecOffset type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SecOffset - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\ALEnums.cs startLine: 80 assemblies: - OpenTK.Audio.OpenAL @@ -362,17 +314,13 @@ items: fullName: OpenTK.Audio.OpenAL.ALSourcef.EfxAirAbsorptionFactor type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: EfxAirAbsorptionFactor - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\ALEnums.cs startLine: 83 assemblies: - OpenTK.Audio.OpenAL namespace: OpenTK.Audio.OpenAL - summary: '(EFX Extension) This property is a multiplier on the amount of Air Absorption applied to the Source. The AL_AIR_ABSORPTION_FACTOR is multiplied by an internal Air Absorption Gain HF value of 0.994 (-0.05dB) per meter which represents normal atmospheric humidity and temperature. Range [0.0f .. 10.0f] Default: 0.0f' + summary: '(EFX Extension) This property is a multiplier on the amount of Air Absorption applied to the Source. The AL_AIR_ABSORPTION_FACTOR is multiplied by an internal Air Absorption Gain HF value of 0.994 (-0.05dB) per meter which represents normal atmospheric humidity and temperature. Range [0.0f .. 10.0f] Default: 0.0f.' example: [] syntax: content: EfxAirAbsorptionFactor = 131079 @@ -390,17 +338,13 @@ items: fullName: OpenTK.Audio.OpenAL.ALSourcef.EfxRoomRolloffFactor type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: EfxRoomRolloffFactor - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\ALEnums.cs startLine: 86 assemblies: - OpenTK.Audio.OpenAL namespace: OpenTK.Audio.OpenAL - summary: '(EFX Extension) This property is defined the same way as the Reverb Room Rolloff property: it is one of two methods available in the Effect Extension to attenuate the reflected sound (early reflections and reverberation) according to source-listener distance. Range [0.0f .. 10.0f] Default: 0.0f' + summary: '(EFX Extension) This property is defined the same way as the Reverb Room Rolloff property: it is one of two methods available in the Effect Extension to attenuate the reflected sound (early reflections and reverberation) according to source-listener distance. Range [0.0f .. 10.0f] Default: 0.0f.' example: [] syntax: content: EfxRoomRolloffFactor = 131080 @@ -418,23 +362,113 @@ items: fullName: OpenTK.Audio.OpenAL.ALSourcef.EfxConeOuterGainHighFrequency type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: EfxConeOuterGainHighFrequency - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\ALEnums.cs startLine: 89 assemblies: - OpenTK.Audio.OpenAL namespace: OpenTK.Audio.OpenAL - summary: '(EFX Extension) A directed Source points in a specified direction. The Source sounds at full volume when the listener is directly in front of the source; it is attenuated as the listener circles the Source away from the front. Range [0.0f .. 1.0f] Default: 1.0f' + summary: '(EFX Extension) A directed Source points in a specified direction. The Source sounds at full volume when the listener is directly in front of the source; it is attenuated as the listener circles the Source away from the front. Range [0.0f .. 1.0f] Default: 1.0f.' example: [] syntax: content: EfxConeOuterGainHighFrequency = 131081 return: type: OpenTK.Audio.OpenAL.ALSourcef references: +- uid: OpenTK.Audio.OpenAL.AL.Source(System.Int32,OpenTK.Audio.OpenAL.ALSourcef,System.Single) + commentId: M:OpenTK.Audio.OpenAL.AL.Source(System.Int32,OpenTK.Audio.OpenAL.ALSourcef,System.Single) + isExternal: true + href: OpenTK.Audio.OpenAL.AL.html#OpenTK_Audio_OpenAL_AL_Source_System_Int32_OpenTK_Audio_OpenAL_ALSourcef_System_Single_ + name: Source(int, ALSourcef, float) + nameWithType: AL.Source(int, ALSourcef, float) + fullName: OpenTK.Audio.OpenAL.AL.Source(int, OpenTK.Audio.OpenAL.ALSourcef, float) + nameWithType.vb: AL.Source(Integer, ALSourcef, Single) + fullName.vb: OpenTK.Audio.OpenAL.AL.Source(Integer, OpenTK.Audio.OpenAL.ALSourcef, Single) + name.vb: Source(Integer, ALSourcef, Single) + spec.csharp: + - uid: OpenTK.Audio.OpenAL.AL.Source(System.Int32,OpenTK.Audio.OpenAL.ALSourcef,System.Single) + name: Source + isExternal: true + href: OpenTK.Audio.OpenAL.AL.html#OpenTK_Audio_OpenAL_AL_Source_System_Int32_OpenTK_Audio_OpenAL_ALSourcef_System_Single_ + - name: ( + - uid: System.Int32 + name: int + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ',' + - name: " " + - uid: OpenTK.Audio.OpenAL.ALSourcef + name: ALSourcef + href: OpenTK.Audio.OpenAL.ALSourcef.html + - name: ',' + - name: " " + - uid: System.Single + name: float + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.single + - name: ) + spec.vb: + - uid: OpenTK.Audio.OpenAL.AL.Source(System.Int32,OpenTK.Audio.OpenAL.ALSourcef,System.Single) + name: Source + isExternal: true + href: OpenTK.Audio.OpenAL.AL.html#OpenTK_Audio_OpenAL_AL_Source_System_Int32_OpenTK_Audio_OpenAL_ALSourcef_System_Single_ + - name: ( + - uid: System.Int32 + name: Integer + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ',' + - name: " " + - uid: OpenTK.Audio.OpenAL.ALSourcef + name: ALSourcef + href: OpenTK.Audio.OpenAL.ALSourcef.html + - name: ',' + - name: " " + - uid: System.Single + name: Single + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.single + - name: ) +- uid: OpenTK.Audio.OpenAL.AL.GetSource(System.Int32,OpenTK.Audio.OpenAL.ALSourcef) + commentId: M:OpenTK.Audio.OpenAL.AL.GetSource(System.Int32,OpenTK.Audio.OpenAL.ALSourcef) + isExternal: true + href: OpenTK.Audio.OpenAL.AL.html#OpenTK_Audio_OpenAL_AL_GetSource_System_Int32_OpenTK_Audio_OpenAL_ALSourcef_ + name: GetSource(int, ALSourcef) + nameWithType: AL.GetSource(int, ALSourcef) + fullName: OpenTK.Audio.OpenAL.AL.GetSource(int, OpenTK.Audio.OpenAL.ALSourcef) + nameWithType.vb: AL.GetSource(Integer, ALSourcef) + fullName.vb: OpenTK.Audio.OpenAL.AL.GetSource(Integer, OpenTK.Audio.OpenAL.ALSourcef) + name.vb: GetSource(Integer, ALSourcef) + spec.csharp: + - uid: OpenTK.Audio.OpenAL.AL.GetSource(System.Int32,OpenTK.Audio.OpenAL.ALSourcef) + name: GetSource + href: OpenTK.Audio.OpenAL.AL.html#OpenTK_Audio_OpenAL_AL_GetSource_System_Int32_OpenTK_Audio_OpenAL_ALSourcef_ + - name: ( + - uid: System.Int32 + name: int + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ',' + - name: " " + - uid: OpenTK.Audio.OpenAL.ALSourcef + name: ALSourcef + href: OpenTK.Audio.OpenAL.ALSourcef.html + - name: ) + spec.vb: + - uid: OpenTK.Audio.OpenAL.AL.GetSource(System.Int32,OpenTK.Audio.OpenAL.ALSourcef) + name: GetSource + href: OpenTK.Audio.OpenAL.AL.html#OpenTK_Audio_OpenAL_AL_GetSource_System_Int32_OpenTK_Audio_OpenAL_ALSourcef_ + - name: ( + - uid: System.Int32 + name: Integer + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ',' + - name: " " + - uid: OpenTK.Audio.OpenAL.ALSourcef + name: ALSourcef + href: OpenTK.Audio.OpenAL.ALSourcef.html + - name: ) - uid: OpenTK.Audio.OpenAL commentId: N:OpenTK.Audio.OpenAL href: OpenTK.html diff --git a/api/OpenTK.Audio.OpenAL.ALSourcei.yml b/api/OpenTK.Audio.OpenAL.ALSourcei.yml index 37fb0dbc..58ae6ebc 100644 --- a/api/OpenTK.Audio.OpenAL.ALSourcei.yml +++ b/api/OpenTK.Audio.OpenAL.ALSourcei.yml @@ -18,17 +18,13 @@ items: fullName: OpenTK.Audio.OpenAL.ALSourcei type: Enum source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ALSourcei - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\ALEnums.cs startLine: 125 assemblies: - OpenTK.Audio.OpenAL namespace: OpenTK.Audio.OpenAL - summary: A list of valid Int32 Source parameters. + summary: A list of valid Int32 parameters. example: [] syntax: content: public enum ALSourcei @@ -45,12 +41,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALSourcei.ByteOffset type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ByteOffset - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\ALEnums.cs startLine: 128 assemblies: - OpenTK.Audio.OpenAL @@ -73,12 +65,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALSourcei.SampleOffset type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SampleOffset - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\ALEnums.cs startLine: 131 assemblies: - OpenTK.Audio.OpenAL @@ -101,12 +89,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALSourcei.Buffer type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Buffer - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\ALEnums.cs startLine: 134 assemblies: - OpenTK.Audio.OpenAL @@ -129,17 +113,13 @@ items: fullName: OpenTK.Audio.OpenAL.ALSourcei.SourceType type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SourceType - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\ALEnums.cs startLine: 137 assemblies: - OpenTK.Audio.OpenAL namespace: OpenTK.Audio.OpenAL - summary: Source type (Static, Streaming or undetermined). Use enum AlSourceType for comparison + summary: Source type (Static, Streaming or undetermined). Use enum AlSourceType for comparison. example: [] syntax: content: SourceType = 4135 @@ -157,12 +137,8 @@ items: fullName: OpenTK.Audio.OpenAL.ALSourcei.EfxDirectFilter type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: EfxDirectFilter - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/AL/ALEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\AL\ALEnums.cs startLine: 140 assemblies: - OpenTK.Audio.OpenAL @@ -174,6 +150,60 @@ items: return: type: OpenTK.Audio.OpenAL.ALSourcei references: +- uid: OpenTK.Audio.OpenAL.AL.Source(System.Int32,OpenTK.Audio.OpenAL.ALSourcei,System.Int32) + commentId: M:OpenTK.Audio.OpenAL.AL.Source(System.Int32,OpenTK.Audio.OpenAL.ALSourcei,System.Int32) + isExternal: true + href: OpenTK.Audio.OpenAL.AL.html#OpenTK_Audio_OpenAL_AL_Source_System_Int32_OpenTK_Audio_OpenAL_ALSourcei_System_Int32_ + name: Source(int, ALSourcei, int) + nameWithType: AL.Source(int, ALSourcei, int) + fullName: OpenTK.Audio.OpenAL.AL.Source(int, OpenTK.Audio.OpenAL.ALSourcei, int) + nameWithType.vb: AL.Source(Integer, ALSourcei, Integer) + fullName.vb: OpenTK.Audio.OpenAL.AL.Source(Integer, OpenTK.Audio.OpenAL.ALSourcei, Integer) + name.vb: Source(Integer, ALSourcei, Integer) + spec.csharp: + - uid: OpenTK.Audio.OpenAL.AL.Source(System.Int32,OpenTK.Audio.OpenAL.ALSourcei,System.Int32) + name: Source + isExternal: true + href: OpenTK.Audio.OpenAL.AL.html#OpenTK_Audio_OpenAL_AL_Source_System_Int32_OpenTK_Audio_OpenAL_ALSourcei_System_Int32_ + - name: ( + - uid: System.Int32 + name: int + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ',' + - name: " " + - uid: OpenTK.Audio.OpenAL.ALSourcei + name: ALSourcei + href: OpenTK.Audio.OpenAL.ALSourcei.html + - name: ',' + - name: " " + - uid: System.Int32 + name: int + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ) + spec.vb: + - uid: OpenTK.Audio.OpenAL.AL.Source(System.Int32,OpenTK.Audio.OpenAL.ALSourcei,System.Int32) + name: Source + isExternal: true + href: OpenTK.Audio.OpenAL.AL.html#OpenTK_Audio_OpenAL_AL_Source_System_Int32_OpenTK_Audio_OpenAL_ALSourcei_System_Int32_ + - name: ( + - uid: System.Int32 + name: Integer + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ',' + - name: " " + - uid: OpenTK.Audio.OpenAL.ALSourcei + name: ALSourcei + href: OpenTK.Audio.OpenAL.ALSourcei.html + - name: ',' + - name: " " + - uid: System.Int32 + name: Integer + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ) - uid: OpenTK.Audio.OpenAL commentId: N:OpenTK.Audio.OpenAL href: OpenTK.html diff --git a/api/OpenTK.Audio.OpenAL.AlcContextAttributes.yml b/api/OpenTK.Audio.OpenAL.AlcContextAttributes.yml index 162bf463..9232a86e 100644 --- a/api/OpenTK.Audio.OpenAL.AlcContextAttributes.yml +++ b/api/OpenTK.Audio.OpenAL.AlcContextAttributes.yml @@ -19,12 +19,8 @@ items: fullName: OpenTK.Audio.OpenAL.AlcContextAttributes type: Enum source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/ALC/ALCEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: AlcContextAttributes - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/ALC/ALCEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\ALC\ALCEnums.cs startLine: 17 assemblies: - OpenTK.Audio.OpenAL @@ -46,17 +42,13 @@ items: fullName: OpenTK.Audio.OpenAL.AlcContextAttributes.Frequency type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/ALC/ALCEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Frequency - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/ALC/ALCEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\ALC\ALCEnums.cs startLine: 20 assemblies: - OpenTK.Audio.OpenAL namespace: OpenTK.Audio.OpenAL - summary: Followed by System.Int32 Hz + summary: Followed by System.Int32 Hz. example: [] syntax: content: Frequency = 4103 @@ -74,17 +66,13 @@ items: fullName: OpenTK.Audio.OpenAL.AlcContextAttributes.Refresh type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/ALC/ALCEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Refresh - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/ALC/ALCEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\ALC\ALCEnums.cs startLine: 23 assemblies: - OpenTK.Audio.OpenAL namespace: OpenTK.Audio.OpenAL - summary: Followed by System.Int32 Hz + summary: Followed by System.Int32 Hz. example: [] syntax: content: Refresh = 4104 @@ -102,17 +90,13 @@ items: fullName: OpenTK.Audio.OpenAL.AlcContextAttributes.Sync type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/ALC/ALCEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Sync - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/ALC/ALCEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\ALC\ALCEnums.cs startLine: 26 assemblies: - OpenTK.Audio.OpenAL namespace: OpenTK.Audio.OpenAL - summary: Followed by AlBoolean.True, or AlBoolean.False + summary: Followed by AlBoolean.True, or AlBoolean.False. example: [] syntax: content: Sync = 4105 @@ -130,17 +114,13 @@ items: fullName: OpenTK.Audio.OpenAL.AlcContextAttributes.MonoSources type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/ALC/ALCEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MonoSources - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/ALC/ALCEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\ALC\ALCEnums.cs startLine: 29 assemblies: - OpenTK.Audio.OpenAL namespace: OpenTK.Audio.OpenAL - summary: Followed by System.Int32 Num of requested Mono (3D) Sources + summary: Followed by System.Int32 Num of requested Mono (3D) Sources. example: [] syntax: content: MonoSources = 4112 @@ -158,17 +138,13 @@ items: fullName: OpenTK.Audio.OpenAL.AlcContextAttributes.StereoSources type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/ALC/ALCEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: StereoSources - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/ALC/ALCEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\ALC\ALCEnums.cs startLine: 32 assemblies: - OpenTK.Audio.OpenAL namespace: OpenTK.Audio.OpenAL - summary: Followed by System.Int32 Num of requested Stereo Sources + summary: Followed by System.Int32 Num of requested Stereo Sources. example: [] syntax: content: StereoSources = 4113 @@ -186,17 +162,13 @@ items: fullName: OpenTK.Audio.OpenAL.AlcContextAttributes.EfxMaxAuxiliarySends type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/ALC/ALCEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: EfxMaxAuxiliarySends - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/ALC/ALCEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\ALC\ALCEnums.cs startLine: 35 assemblies: - OpenTK.Audio.OpenAL namespace: OpenTK.Audio.OpenAL - summary: '(EFX Extension) This Context property can be passed to OpenAL during Context creation (alcCreateContext) to request a maximum number of Auxiliary Sends desired on each Source. It is not guaranteed that the desired number of sends will be available, so an application should query this property after creating the context using alcGetIntergerv. Default: 2' + summary: '(EFX Extension) This Context property can be passed to OpenAL during Context creation (alcCreateContext) to request a maximum number of Auxiliary Sends desired on each Source. It is not guaranteed that the desired number of sends will be available, so an application should query this property after creating the context using alcGetIntergerv. Default: 2.' example: [] syntax: content: EfxMaxAuxiliarySends = 131075 diff --git a/api/OpenTK.Audio.OpenAL.AlcError.yml b/api/OpenTK.Audio.OpenAL.AlcError.yml index ac31d4c9..19b831d4 100644 --- a/api/OpenTK.Audio.OpenAL.AlcError.yml +++ b/api/OpenTK.Audio.OpenAL.AlcError.yml @@ -19,17 +19,13 @@ items: fullName: OpenTK.Audio.OpenAL.AlcError type: Enum source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/ALC/ALCEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: AlcError - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/ALC/ALCEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\ALC\ALCEnums.cs startLine: 41 assemblies: - OpenTK.Audio.OpenAL namespace: OpenTK.Audio.OpenAL - summary: Defines OpenAL context errors. + summary: Defines OpenAL context errors returned by . example: [] syntax: content: public enum AlcError @@ -46,12 +42,8 @@ items: fullName: OpenTK.Audio.OpenAL.AlcError.NoError type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/ALC/ALCEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: NoError - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/ALC/ALCEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\ALC\ALCEnums.cs startLine: 44 assemblies: - OpenTK.Audio.OpenAL @@ -74,12 +66,8 @@ items: fullName: OpenTK.Audio.OpenAL.AlcError.InvalidDevice type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/ALC/ALCEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: InvalidDevice - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/ALC/ALCEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\ALC\ALCEnums.cs startLine: 47 assemblies: - OpenTK.Audio.OpenAL @@ -102,12 +90,8 @@ items: fullName: OpenTK.Audio.OpenAL.AlcError.InvalidContext type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/ALC/ALCEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: InvalidContext - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/ALC/ALCEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\ALC\ALCEnums.cs startLine: 50 assemblies: - OpenTK.Audio.OpenAL @@ -130,12 +114,8 @@ items: fullName: OpenTK.Audio.OpenAL.AlcError.InvalidEnum type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/ALC/ALCEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: InvalidEnum - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/ALC/ALCEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\ALC\ALCEnums.cs startLine: 53 assemblies: - OpenTK.Audio.OpenAL @@ -158,12 +138,8 @@ items: fullName: OpenTK.Audio.OpenAL.AlcError.InvalidValue type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/ALC/ALCEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: InvalidValue - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/ALC/ALCEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\ALC\ALCEnums.cs startLine: 56 assemblies: - OpenTK.Audio.OpenAL @@ -186,12 +162,8 @@ items: fullName: OpenTK.Audio.OpenAL.AlcError.OutOfMemory type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/ALC/ALCEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: OutOfMemory - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/ALC/ALCEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\ALC\ALCEnums.cs startLine: 59 assemblies: - OpenTK.Audio.OpenAL @@ -203,6 +175,33 @@ items: return: type: OpenTK.Audio.OpenAL.AlcError references: +- uid: OpenTK.Audio.OpenAL.ALC.GetError(OpenTK.Audio.OpenAL.ALDevice) + commentId: M:OpenTK.Audio.OpenAL.ALC.GetError(OpenTK.Audio.OpenAL.ALDevice) + isExternal: true + href: OpenTK.Audio.OpenAL.ALC.html#OpenTK_Audio_OpenAL_ALC_GetError_OpenTK_Audio_OpenAL_ALDevice_ + name: GetError(ALDevice) + nameWithType: ALC.GetError(ALDevice) + fullName: OpenTK.Audio.OpenAL.ALC.GetError(OpenTK.Audio.OpenAL.ALDevice) + spec.csharp: + - uid: OpenTK.Audio.OpenAL.ALC.GetError(OpenTK.Audio.OpenAL.ALDevice) + name: GetError + isExternal: true + href: OpenTK.Audio.OpenAL.ALC.html#OpenTK_Audio_OpenAL_ALC_GetError_OpenTK_Audio_OpenAL_ALDevice_ + - name: ( + - uid: OpenTK.Audio.OpenAL.ALDevice + name: ALDevice + href: OpenTK.Audio.OpenAL.ALDevice.html + - name: ) + spec.vb: + - uid: OpenTK.Audio.OpenAL.ALC.GetError(OpenTK.Audio.OpenAL.ALDevice) + name: GetError + isExternal: true + href: OpenTK.Audio.OpenAL.ALC.html#OpenTK_Audio_OpenAL_ALC_GetError_OpenTK_Audio_OpenAL_ALDevice_ + - name: ( + - uid: OpenTK.Audio.OpenAL.ALDevice + name: ALDevice + href: OpenTK.Audio.OpenAL.ALDevice.html + - name: ) - uid: OpenTK.Audio.OpenAL commentId: N:OpenTK.Audio.OpenAL href: OpenTK.html diff --git a/api/OpenTK.Audio.OpenAL.AlcGetInteger.yml b/api/OpenTK.Audio.OpenAL.AlcGetInteger.yml index 03bb0a48..50e64c5a 100644 --- a/api/OpenTK.Audio.OpenAL.AlcGetInteger.yml +++ b/api/OpenTK.Audio.OpenAL.AlcGetInteger.yml @@ -21,12 +21,8 @@ items: fullName: OpenTK.Audio.OpenAL.AlcGetInteger type: Enum source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/ALC/ALCEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: AlcGetInteger - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/ALC/ALCEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\ALC\ALCEnums.cs startLine: 109 assemblies: - OpenTK.Audio.OpenAL @@ -48,12 +44,8 @@ items: fullName: OpenTK.Audio.OpenAL.AlcGetInteger.MajorVersion type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/ALC/ALCEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MajorVersion - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/ALC/ALCEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\ALC\ALCEnums.cs startLine: 112 assemblies: - OpenTK.Audio.OpenAL @@ -76,12 +68,8 @@ items: fullName: OpenTK.Audio.OpenAL.AlcGetInteger.MinorVersion type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/ALC/ALCEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MinorVersion - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/ALC/ALCEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\ALC\ALCEnums.cs startLine: 115 assemblies: - OpenTK.Audio.OpenAL @@ -104,12 +92,8 @@ items: fullName: OpenTK.Audio.OpenAL.AlcGetInteger.AttributesSize type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/ALC/ALCEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: AttributesSize - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/ALC/ALCEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\ALC\ALCEnums.cs startLine: 118 assemblies: - OpenTK.Audio.OpenAL @@ -132,12 +116,8 @@ items: fullName: OpenTK.Audio.OpenAL.AlcGetInteger.AllAttributes type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/ALC/ALCEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: AllAttributes - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/ALC/ALCEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\ALC\ALCEnums.cs startLine: 121 assemblies: - OpenTK.Audio.OpenAL @@ -160,12 +140,8 @@ items: fullName: OpenTK.Audio.OpenAL.AlcGetInteger.CaptureSamples type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/ALC/ALCEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CaptureSamples - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/ALC/ALCEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\ALC\ALCEnums.cs startLine: 124 assemblies: - OpenTK.Audio.OpenAL @@ -188,12 +164,8 @@ items: fullName: OpenTK.Audio.OpenAL.AlcGetInteger.EfxMajorVersion type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/ALC/ALCEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: EfxMajorVersion - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/ALC/ALCEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\ALC\ALCEnums.cs startLine: 127 assemblies: - OpenTK.Audio.OpenAL @@ -216,12 +188,8 @@ items: fullName: OpenTK.Audio.OpenAL.AlcGetInteger.EfxMinorVersion type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/ALC/ALCEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: EfxMinorVersion - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/ALC/ALCEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\ALC\ALCEnums.cs startLine: 130 assemblies: - OpenTK.Audio.OpenAL @@ -244,17 +212,13 @@ items: fullName: OpenTK.Audio.OpenAL.AlcGetInteger.EfxMaxAuxiliarySends type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/ALC/ALCEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: EfxMaxAuxiliarySends - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/ALC/ALCEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\ALC\ALCEnums.cs startLine: 133 assemblies: - OpenTK.Audio.OpenAL namespace: OpenTK.Audio.OpenAL - summary: '(EFX Extension) This Context property can be passed to OpenAL during Context creation (alcCreateContext) to request a maximum number of Auxiliary Sends desired on each Source. It is not guaranteed that the desired number of sends will be available, so an application should query this property after creating the context using alcGetIntergerv. Default: 2' + summary: '(EFX Extension) This Context property can be passed to OpenAL during Context creation (alcCreateContext) to request a maximum number of Auxiliary Sends desired on each Source. It is not guaranteed that the desired number of sends will be available, so an application should query this property after creating the context using alcGetIntergerv. Default: 2.' example: [] syntax: content: EfxMaxAuxiliarySends = 131075 diff --git a/api/OpenTK.Audio.OpenAL.AlcGetString.yml b/api/OpenTK.Audio.OpenAL.AlcGetString.yml index 5d985a83..838eba18 100644 --- a/api/OpenTK.Audio.OpenAL.AlcGetString.yml +++ b/api/OpenTK.Audio.OpenAL.AlcGetString.yml @@ -20,12 +20,8 @@ items: fullName: OpenTK.Audio.OpenAL.AlcGetString type: Enum source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/ALC/ALCEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: AlcGetString - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/ALC/ALCEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\ALC\ALCEnums.cs startLine: 65 assemblies: - OpenTK.Audio.OpenAL @@ -47,12 +43,8 @@ items: fullName: OpenTK.Audio.OpenAL.AlcGetString.DefaultDeviceSpecifier type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/ALC/ALCEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DefaultDeviceSpecifier - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/ALC/ALCEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\ALC\ALCEnums.cs startLine: 68 assemblies: - OpenTK.Audio.OpenAL @@ -75,12 +67,8 @@ items: fullName: OpenTK.Audio.OpenAL.AlcGetString.Extensions type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/ALC/ALCEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Extensions - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/ALC/ALCEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\ALC\ALCEnums.cs startLine: 71 assemblies: - OpenTK.Audio.OpenAL @@ -103,17 +91,13 @@ items: fullName: OpenTK.Audio.OpenAL.AlcGetString.CaptureDefaultDeviceSpecifier type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/ALC/ALCEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CaptureDefaultDeviceSpecifier - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/ALC/ALCEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\ALC\ALCEnums.cs startLine: 74 assemblies: - OpenTK.Audio.OpenAL namespace: OpenTK.Audio.OpenAL - summary: The name of the default capture device + summary: The name of the default capture device. example: [] syntax: content: CaptureDefaultDeviceSpecifier = 785 @@ -131,12 +115,8 @@ items: fullName: OpenTK.Audio.OpenAL.AlcGetString.DefaultAllDevicesSpecifier type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/ALC/ALCEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DefaultAllDevicesSpecifier - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/ALC/ALCEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\ALC\ALCEnums.cs startLine: 77 assemblies: - OpenTK.Audio.OpenAL @@ -159,17 +139,13 @@ items: fullName: OpenTK.Audio.OpenAL.AlcGetString.CaptureDeviceSpecifier type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/ALC/ALCEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CaptureDeviceSpecifier - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/ALC/ALCEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\ALC\ALCEnums.cs startLine: 82 assemblies: - OpenTK.Audio.OpenAL namespace: OpenTK.Audio.OpenAL - summary: Will only return the first Device, not a list. Use AlcGetStringList.CaptureDeviceSpecifier. ALC_EXT_CAPTURE_EXT + summary: Will only return the first Device, not a list. Use AlcGetStringList.CaptureDeviceSpecifier. ALC_EXT_CAPTURE_EXT. example: [] syntax: content: CaptureDeviceSpecifier = 784 @@ -187,17 +163,13 @@ items: fullName: OpenTK.Audio.OpenAL.AlcGetString.DeviceSpecifier type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/ALC/ALCEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DeviceSpecifier - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/ALC/ALCEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\ALC\ALCEnums.cs startLine: 85 assemblies: - OpenTK.Audio.OpenAL namespace: OpenTK.Audio.OpenAL - summary: Will only return the first Device, not a list. Use AlcGetStringList.DeviceSpecifier + summary: Will only return the first Device, not a list. Use AlcGetStringList.DeviceSpecifier. example: [] syntax: content: DeviceSpecifier = 4101 @@ -215,17 +187,13 @@ items: fullName: OpenTK.Audio.OpenAL.AlcGetString.AllDevicesSpecifier type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/ALC/ALCEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: AllDevicesSpecifier - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/ALC/ALCEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\ALC\ALCEnums.cs startLine: 88 assemblies: - OpenTK.Audio.OpenAL namespace: OpenTK.Audio.OpenAL - summary: Will only return the first Device, not a list. Use AlcGetStringList.AllDevicesSpecifier + summary: Will only return the first Device, not a list. Use AlcGetStringList.AllDevicesSpecifier. example: [] syntax: content: AllDevicesSpecifier = 4115 diff --git a/api/OpenTK.Audio.OpenAL.AlcGetStringList.yml b/api/OpenTK.Audio.OpenAL.AlcGetStringList.yml index 93fae98d..042c5281 100644 --- a/api/OpenTK.Audio.OpenAL.AlcGetStringList.yml +++ b/api/OpenTK.Audio.OpenAL.AlcGetStringList.yml @@ -16,12 +16,8 @@ items: fullName: OpenTK.Audio.OpenAL.AlcGetStringList type: Enum source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/ALC/ALCEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: AlcGetStringList - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/ALC/ALCEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\ALC\ALCEnums.cs startLine: 94 assemblies: - OpenTK.Audio.OpenAL @@ -43,17 +39,13 @@ items: fullName: OpenTK.Audio.OpenAL.AlcGetStringList.CaptureDeviceSpecifier type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/ALC/ALCEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CaptureDeviceSpecifier - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/ALC/ALCEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\ALC\ALCEnums.cs startLine: 97 assemblies: - OpenTK.Audio.OpenAL namespace: OpenTK.Audio.OpenAL - summary: The name of the specified capture device, or a list of all available capture devices if no capture device is specified. ALC_EXT_CAPTURE_EXT + summary: The name of the specified capture device, or a list of all available capture devices if no capture device is specified. ALC_EXT_CAPTURE_EXT. example: [] syntax: content: CaptureDeviceSpecifier = 784 @@ -71,17 +63,13 @@ items: fullName: OpenTK.Audio.OpenAL.AlcGetStringList.DeviceSpecifier type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/ALC/ALCEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DeviceSpecifier - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/ALC/ALCEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\ALC\ALCEnums.cs startLine: 100 assemblies: - OpenTK.Audio.OpenAL namespace: OpenTK.Audio.OpenAL - summary: The specifier strings for all available devices. ALC_ENUMERATION_EXT + summary: The specifier strings for all available devices. ALC_ENUMERATION_EXT. example: [] syntax: content: DeviceSpecifier = 4101 @@ -99,17 +87,13 @@ items: fullName: OpenTK.Audio.OpenAL.AlcGetStringList.AllDevicesSpecifier type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/ALC/ALCEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: AllDevicesSpecifier - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/ALC/ALCEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\ALC\ALCEnums.cs startLine: 103 assemblies: - OpenTK.Audio.OpenAL namespace: OpenTK.Audio.OpenAL - summary: The specifier strings for all available devices. ALC_ENUMERATE_ALL_EXT + summary: The specifier strings for all available devices. ALC_ENUMERATE_ALL_EXT. example: [] syntax: content: AllDevicesSpecifier = 4115 diff --git a/api/OpenTK.Audio.OpenAL.BufferLoopPoint.yml b/api/OpenTK.Audio.OpenAL.BufferLoopPoint.yml index d6e9e29d..e77cfbc8 100644 --- a/api/OpenTK.Audio.OpenAL.BufferLoopPoint.yml +++ b/api/OpenTK.Audio.OpenAL.BufferLoopPoint.yml @@ -14,12 +14,8 @@ items: fullName: OpenTK.Audio.OpenAL.BufferLoopPoint type: Enum source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/SOFT.LoopPoints/Enums/BufferLoopPoint.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: BufferLoopPoint - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/SOFT.LoopPoints/Enums/BufferLoopPoint.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\SOFT.LoopPoints\Enums\BufferLoopPoint.cs startLine: 6 assemblies: - OpenTK.Audio.OpenAL @@ -39,12 +35,8 @@ items: fullName: OpenTK.Audio.OpenAL.BufferLoopPoint.LoopPointsSOFT type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/SOFT.LoopPoints/Enums/BufferLoopPoint.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: LoopPointsSOFT - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/SOFT.LoopPoints/Enums/BufferLoopPoint.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\SOFT.LoopPoints\Enums\BufferLoopPoint.cs startLine: 29 assemblies: - OpenTK.Audio.OpenAL diff --git a/api/OpenTK.Audio.OpenAL.DoubleBufferFormat.yml b/api/OpenTK.Audio.OpenAL.DoubleBufferFormat.yml index ca35d700..a81732c8 100644 --- a/api/OpenTK.Audio.OpenAL.DoubleBufferFormat.yml +++ b/api/OpenTK.Audio.OpenAL.DoubleBufferFormat.yml @@ -15,12 +15,8 @@ items: fullName: OpenTK.Audio.OpenAL.DoubleBufferFormat type: Enum source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/EXT.Double/Enums/DoubleBufferFormat.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DoubleBufferFormat - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/EXT.Double/Enums/DoubleBufferFormat.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\EXT.Double\Enums\DoubleBufferFormat.cs startLine: 14 assemblies: - OpenTK.Audio.OpenAL @@ -42,12 +38,8 @@ items: fullName: OpenTK.Audio.OpenAL.DoubleBufferFormat.Mono type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/EXT.Double/Enums/DoubleBufferFormat.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Mono - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/EXT.Double/Enums/DoubleBufferFormat.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\EXT.Double\Enums\DoubleBufferFormat.cs startLine: 19 assemblies: - OpenTK.Audio.OpenAL @@ -70,12 +62,8 @@ items: fullName: OpenTK.Audio.OpenAL.DoubleBufferFormat.Stereo type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/EXT.Double/Enums/DoubleBufferFormat.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Stereo - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/EXT.Double/Enums/DoubleBufferFormat.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\EXT.Double\Enums\DoubleBufferFormat.cs startLine: 24 assemblies: - OpenTK.Audio.OpenAL diff --git a/api/OpenTK.Audio.OpenAL.EFXContextAttributes.yml b/api/OpenTK.Audio.OpenAL.EFXContextAttributes.yml index 22b9200d..6c5f98ae 100644 --- a/api/OpenTK.Audio.OpenAL.EFXContextAttributes.yml +++ b/api/OpenTK.Audio.OpenAL.EFXContextAttributes.yml @@ -14,12 +14,8 @@ items: fullName: OpenTK.Audio.OpenAL.EFXContextAttributes type: Enum source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EFXContextAttributes.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: EFXContextAttributes - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EFXContextAttributes.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\EFXContextAttributes.cs startLine: 14 assemblies: - OpenTK.Audio.OpenAL @@ -41,12 +37,8 @@ items: fullName: OpenTK.Audio.OpenAL.EFXContextAttributes.MaxAuxiliarySends type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EFXContextAttributes.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MaxAuxiliarySends - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EFXContextAttributes.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\EFXContextAttributes.cs startLine: 24 assemblies: - OpenTK.Audio.OpenAL diff --git a/api/OpenTK.Audio.OpenAL.EFXContextInteger.yml b/api/OpenTK.Audio.OpenAL.EFXContextInteger.yml index 9606fa83..45367914 100644 --- a/api/OpenTK.Audio.OpenAL.EFXContextInteger.yml +++ b/api/OpenTK.Audio.OpenAL.EFXContextInteger.yml @@ -16,12 +16,8 @@ items: fullName: OpenTK.Audio.OpenAL.EFXContextInteger type: Enum source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EFXContextInteger.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: EFXContextInteger - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EFXContextInteger.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\EFXContextInteger.cs startLine: 14 assemblies: - OpenTK.Audio.OpenAL @@ -43,12 +39,8 @@ items: fullName: OpenTK.Audio.OpenAL.EFXContextInteger.EFXMajorVersion type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EFXContextInteger.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: EFXMajorVersion - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EFXContextInteger.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\EFXContextInteger.cs startLine: 21 assemblies: - OpenTK.Audio.OpenAL @@ -76,12 +68,8 @@ items: fullName: OpenTK.Audio.OpenAL.EFXContextInteger.EFXMinorVersion type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EFXContextInteger.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: EFXMinorVersion - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EFXContextInteger.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\EFXContextInteger.cs startLine: 28 assemblies: - OpenTK.Audio.OpenAL @@ -109,12 +97,8 @@ items: fullName: OpenTK.Audio.OpenAL.EFXContextInteger.MaxAuxiliarySends type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EFXContextInteger.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MaxAuxiliarySends - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EFXContextInteger.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\EFXContextInteger.cs startLine: 38 assemblies: - OpenTK.Audio.OpenAL diff --git a/api/OpenTK.Audio.OpenAL.EFXListenerFloat.yml b/api/OpenTK.Audio.OpenAL.EFXListenerFloat.yml index 147738a0..fdbe2e11 100644 --- a/api/OpenTK.Audio.OpenAL.EFXListenerFloat.yml +++ b/api/OpenTK.Audio.OpenAL.EFXListenerFloat.yml @@ -14,17 +14,13 @@ items: fullName: OpenTK.Audio.OpenAL.EFXListenerFloat type: Enum source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EFXListenerFloat.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: EFXListenerFloat - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EFXListenerFloat.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\EFXListenerFloat.cs startLine: 14 assemblies: - OpenTK.Audio.OpenAL namespace: OpenTK.Audio.OpenAL - summary: A list of valid Listener/GetListener parameters. + summary: A list of valid / parameters. example: [] syntax: content: public enum EFXListenerFloat @@ -41,12 +37,8 @@ items: fullName: OpenTK.Audio.OpenAL.EFXListenerFloat.EfxMetersPerUnit type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EFXListenerFloat.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: EfxMetersPerUnit - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EFXListenerFloat.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\EFXListenerFloat.cs startLine: 26 assemblies: - OpenTK.Audio.OpenAL @@ -83,6 +75,98 @@ references: nameWithType.vb: Single fullName.vb: Single name.vb: Single +- uid: OpenTK.Audio.OpenAL.ALC.EFX.Listener(System.Int32,OpenTK.Audio.OpenAL.EFXListenerFloat,System.Single) + commentId: M:OpenTK.Audio.OpenAL.ALC.EFX.Listener(System.Int32,OpenTK.Audio.OpenAL.EFXListenerFloat,System.Single) + isExternal: true + href: OpenTK.Audio.OpenAL.ALC.EFX.html#OpenTK_Audio_OpenAL_ALC_EFX_Listener_System_Int32_OpenTK_Audio_OpenAL_EFXListenerFloat_System_Single_ + name: Listener(int, EFXListenerFloat, float) + nameWithType: ALC.EFX.Listener(int, EFXListenerFloat, float) + fullName: OpenTK.Audio.OpenAL.ALC.EFX.Listener(int, OpenTK.Audio.OpenAL.EFXListenerFloat, float) + nameWithType.vb: ALC.EFX.Listener(Integer, EFXListenerFloat, Single) + fullName.vb: OpenTK.Audio.OpenAL.ALC.EFX.Listener(Integer, OpenTK.Audio.OpenAL.EFXListenerFloat, Single) + name.vb: Listener(Integer, EFXListenerFloat, Single) + spec.csharp: + - uid: OpenTK.Audio.OpenAL.ALC.EFX.Listener(System.Int32,OpenTK.Audio.OpenAL.EFXListenerFloat,System.Single) + name: Listener + href: OpenTK.Audio.OpenAL.ALC.EFX.html#OpenTK_Audio_OpenAL_ALC_EFX_Listener_System_Int32_OpenTK_Audio_OpenAL_EFXListenerFloat_System_Single_ + - name: ( + - uid: System.Int32 + name: int + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ',' + - name: " " + - uid: OpenTK.Audio.OpenAL.EFXListenerFloat + name: EFXListenerFloat + href: OpenTK.Audio.OpenAL.EFXListenerFloat.html + - name: ',' + - name: " " + - uid: System.Single + name: float + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.single + - name: ) + spec.vb: + - uid: OpenTK.Audio.OpenAL.ALC.EFX.Listener(System.Int32,OpenTK.Audio.OpenAL.EFXListenerFloat,System.Single) + name: Listener + href: OpenTK.Audio.OpenAL.ALC.EFX.html#OpenTK_Audio_OpenAL_ALC_EFX_Listener_System_Int32_OpenTK_Audio_OpenAL_EFXListenerFloat_System_Single_ + - name: ( + - uid: System.Int32 + name: Integer + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ',' + - name: " " + - uid: OpenTK.Audio.OpenAL.EFXListenerFloat + name: EFXListenerFloat + href: OpenTK.Audio.OpenAL.EFXListenerFloat.html + - name: ',' + - name: " " + - uid: System.Single + name: Single + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.single + - name: ) +- uid: OpenTK.Audio.OpenAL.ALC.EFX.GetListener(System.Int32,OpenTK.Audio.OpenAL.EFXListenerFloat) + commentId: M:OpenTK.Audio.OpenAL.ALC.EFX.GetListener(System.Int32,OpenTK.Audio.OpenAL.EFXListenerFloat) + isExternal: true + href: OpenTK.Audio.OpenAL.ALC.EFX.html#OpenTK_Audio_OpenAL_ALC_EFX_GetListener_System_Int32_OpenTK_Audio_OpenAL_EFXListenerFloat_ + name: GetListener(int, EFXListenerFloat) + nameWithType: ALC.EFX.GetListener(int, EFXListenerFloat) + fullName: OpenTK.Audio.OpenAL.ALC.EFX.GetListener(int, OpenTK.Audio.OpenAL.EFXListenerFloat) + nameWithType.vb: ALC.EFX.GetListener(Integer, EFXListenerFloat) + fullName.vb: OpenTK.Audio.OpenAL.ALC.EFX.GetListener(Integer, OpenTK.Audio.OpenAL.EFXListenerFloat) + name.vb: GetListener(Integer, EFXListenerFloat) + spec.csharp: + - uid: OpenTK.Audio.OpenAL.ALC.EFX.GetListener(System.Int32,OpenTK.Audio.OpenAL.EFXListenerFloat) + name: GetListener + href: OpenTK.Audio.OpenAL.ALC.EFX.html#OpenTK_Audio_OpenAL_ALC_EFX_GetListener_System_Int32_OpenTK_Audio_OpenAL_EFXListenerFloat_ + - name: ( + - uid: System.Int32 + name: int + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ',' + - name: " " + - uid: OpenTK.Audio.OpenAL.EFXListenerFloat + name: EFXListenerFloat + href: OpenTK.Audio.OpenAL.EFXListenerFloat.html + - name: ) + spec.vb: + - uid: OpenTK.Audio.OpenAL.ALC.EFX.GetListener(System.Int32,OpenTK.Audio.OpenAL.EFXListenerFloat) + name: GetListener + href: OpenTK.Audio.OpenAL.ALC.EFX.html#OpenTK_Audio_OpenAL_ALC_EFX_GetListener_System_Int32_OpenTK_Audio_OpenAL_EFXListenerFloat_ + - name: ( + - uid: System.Int32 + name: Integer + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ',' + - name: " " + - uid: OpenTK.Audio.OpenAL.EFXListenerFloat + name: EFXListenerFloat + href: OpenTK.Audio.OpenAL.EFXListenerFloat.html + - name: ) - uid: OpenTK.Audio.OpenAL commentId: N:OpenTK.Audio.OpenAL href: OpenTK.html diff --git a/api/OpenTK.Audio.OpenAL.EFXSourceBoolean.yml b/api/OpenTK.Audio.OpenAL.EFXSourceBoolean.yml index 2b49bda6..fbf2aab1 100644 --- a/api/OpenTK.Audio.OpenAL.EFXSourceBoolean.yml +++ b/api/OpenTK.Audio.OpenAL.EFXSourceBoolean.yml @@ -16,17 +16,13 @@ items: fullName: OpenTK.Audio.OpenAL.EFXSourceBoolean type: Enum source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EFXSourceBoolean.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: EFXSourceBoolean - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EFXSourceBoolean.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\EFXSourceBoolean.cs startLine: 14 assemblies: - OpenTK.Audio.OpenAL namespace: OpenTK.Audio.OpenAL - summary: A list of valid Source/GetSource parameters. + summary: A list of valid / parameters. example: [] syntax: content: public enum EFXSourceBoolean @@ -43,12 +39,8 @@ items: fullName: OpenTK.Audio.OpenAL.EFXSourceBoolean.DirectFilterGainHighFrequencyAuto type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EFXSourceBoolean.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DirectFilterGainHighFrequencyAuto - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EFXSourceBoolean.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\EFXSourceBoolean.cs startLine: 23 assemblies: - OpenTK.Audio.OpenAL @@ -79,12 +71,8 @@ items: fullName: OpenTK.Audio.OpenAL.EFXSourceBoolean.AuxiliarySendFilterGainAuto type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EFXSourceBoolean.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: AuxiliarySendFilterGainAuto - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EFXSourceBoolean.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\EFXSourceBoolean.cs startLine: 32 assemblies: - OpenTK.Audio.OpenAL @@ -115,12 +103,8 @@ items: fullName: OpenTK.Audio.OpenAL.EFXSourceBoolean.AuxiliarySendFilterGainHighFrequencyAuto type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EFXSourceBoolean.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: AuxiliarySendFilterGainHighFrequencyAuto - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EFXSourceBoolean.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\EFXSourceBoolean.cs startLine: 42 assemblies: - OpenTK.Audio.OpenAL @@ -153,6 +137,98 @@ references: nameWithType.vb: Boolean fullName.vb: Boolean name.vb: Boolean +- uid: OpenTK.Audio.OpenAL.ALC.EFX.Source(System.Int32,OpenTK.Audio.OpenAL.EFXSourceBoolean,System.Boolean) + commentId: M:OpenTK.Audio.OpenAL.ALC.EFX.Source(System.Int32,OpenTK.Audio.OpenAL.EFXSourceBoolean,System.Boolean) + isExternal: true + href: OpenTK.Audio.OpenAL.ALC.EFX.html#OpenTK_Audio_OpenAL_ALC_EFX_Source_System_Int32_OpenTK_Audio_OpenAL_EFXSourceBoolean_System_Boolean_ + name: Source(int, EFXSourceBoolean, bool) + nameWithType: ALC.EFX.Source(int, EFXSourceBoolean, bool) + fullName: OpenTK.Audio.OpenAL.ALC.EFX.Source(int, OpenTK.Audio.OpenAL.EFXSourceBoolean, bool) + nameWithType.vb: ALC.EFX.Source(Integer, EFXSourceBoolean, Boolean) + fullName.vb: OpenTK.Audio.OpenAL.ALC.EFX.Source(Integer, OpenTK.Audio.OpenAL.EFXSourceBoolean, Boolean) + name.vb: Source(Integer, EFXSourceBoolean, Boolean) + spec.csharp: + - uid: OpenTK.Audio.OpenAL.ALC.EFX.Source(System.Int32,OpenTK.Audio.OpenAL.EFXSourceBoolean,System.Boolean) + name: Source + href: OpenTK.Audio.OpenAL.ALC.EFX.html#OpenTK_Audio_OpenAL_ALC_EFX_Source_System_Int32_OpenTK_Audio_OpenAL_EFXSourceBoolean_System_Boolean_ + - name: ( + - uid: System.Int32 + name: int + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ',' + - name: " " + - uid: OpenTK.Audio.OpenAL.EFXSourceBoolean + name: EFXSourceBoolean + href: OpenTK.Audio.OpenAL.EFXSourceBoolean.html + - name: ',' + - name: " " + - uid: System.Boolean + name: bool + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: ) + spec.vb: + - uid: OpenTK.Audio.OpenAL.ALC.EFX.Source(System.Int32,OpenTK.Audio.OpenAL.EFXSourceBoolean,System.Boolean) + name: Source + href: OpenTK.Audio.OpenAL.ALC.EFX.html#OpenTK_Audio_OpenAL_ALC_EFX_Source_System_Int32_OpenTK_Audio_OpenAL_EFXSourceBoolean_System_Boolean_ + - name: ( + - uid: System.Int32 + name: Integer + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ',' + - name: " " + - uid: OpenTK.Audio.OpenAL.EFXSourceBoolean + name: EFXSourceBoolean + href: OpenTK.Audio.OpenAL.EFXSourceBoolean.html + - name: ',' + - name: " " + - uid: System.Boolean + name: Boolean + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: ) +- uid: OpenTK.Audio.OpenAL.ALC.EFX.GetSource(System.Int32,OpenTK.Audio.OpenAL.EFXSourceBoolean) + commentId: M:OpenTK.Audio.OpenAL.ALC.EFX.GetSource(System.Int32,OpenTK.Audio.OpenAL.EFXSourceBoolean) + isExternal: true + href: OpenTK.Audio.OpenAL.ALC.EFX.html#OpenTK_Audio_OpenAL_ALC_EFX_GetSource_System_Int32_OpenTK_Audio_OpenAL_EFXSourceBoolean_ + name: GetSource(int, EFXSourceBoolean) + nameWithType: ALC.EFX.GetSource(int, EFXSourceBoolean) + fullName: OpenTK.Audio.OpenAL.ALC.EFX.GetSource(int, OpenTK.Audio.OpenAL.EFXSourceBoolean) + nameWithType.vb: ALC.EFX.GetSource(Integer, EFXSourceBoolean) + fullName.vb: OpenTK.Audio.OpenAL.ALC.EFX.GetSource(Integer, OpenTK.Audio.OpenAL.EFXSourceBoolean) + name.vb: GetSource(Integer, EFXSourceBoolean) + spec.csharp: + - uid: OpenTK.Audio.OpenAL.ALC.EFX.GetSource(System.Int32,OpenTK.Audio.OpenAL.EFXSourceBoolean) + name: GetSource + href: OpenTK.Audio.OpenAL.ALC.EFX.html#OpenTK_Audio_OpenAL_ALC_EFX_GetSource_System_Int32_OpenTK_Audio_OpenAL_EFXSourceBoolean_ + - name: ( + - uid: System.Int32 + name: int + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ',' + - name: " " + - uid: OpenTK.Audio.OpenAL.EFXSourceBoolean + name: EFXSourceBoolean + href: OpenTK.Audio.OpenAL.EFXSourceBoolean.html + - name: ) + spec.vb: + - uid: OpenTK.Audio.OpenAL.ALC.EFX.GetSource(System.Int32,OpenTK.Audio.OpenAL.EFXSourceBoolean) + name: GetSource + href: OpenTK.Audio.OpenAL.ALC.EFX.html#OpenTK_Audio_OpenAL_ALC_EFX_GetSource_System_Int32_OpenTK_Audio_OpenAL_EFXSourceBoolean_ + - name: ( + - uid: System.Int32 + name: Integer + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ',' + - name: " " + - uid: OpenTK.Audio.OpenAL.EFXSourceBoolean + name: EFXSourceBoolean + href: OpenTK.Audio.OpenAL.EFXSourceBoolean.html + - name: ) - uid: OpenTK.Audio.OpenAL commentId: N:OpenTK.Audio.OpenAL href: OpenTK.html diff --git a/api/OpenTK.Audio.OpenAL.EFXSourceFloat.yml b/api/OpenTK.Audio.OpenAL.EFXSourceFloat.yml index e5e145f1..49406a2a 100644 --- a/api/OpenTK.Audio.OpenAL.EFXSourceFloat.yml +++ b/api/OpenTK.Audio.OpenAL.EFXSourceFloat.yml @@ -16,17 +16,13 @@ items: fullName: OpenTK.Audio.OpenAL.EFXSourceFloat type: Enum source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EFXSourceFloat.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: EFXSourceFloat - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EFXSourceFloat.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\EFXSourceFloat.cs startLine: 14 assemblies: - OpenTK.Audio.OpenAL namespace: OpenTK.Audio.OpenAL - summary: A list of valid Source/GetSource parameters. + summary: A list of valid / parameters. example: [] syntax: content: public enum EFXSourceFloat @@ -43,12 +39,8 @@ items: fullName: OpenTK.Audio.OpenAL.EFXSourceFloat.AirAbsorptionFactor type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EFXSourceFloat.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: AirAbsorptionFactor - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EFXSourceFloat.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\EFXSourceFloat.cs startLine: 24 assemblies: - OpenTK.Audio.OpenAL @@ -81,12 +73,8 @@ items: fullName: OpenTK.Audio.OpenAL.EFXSourceFloat.RoomRolloffFactor type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EFXSourceFloat.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: RoomRolloffFactor - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EFXSourceFloat.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\EFXSourceFloat.cs startLine: 34 assemblies: - OpenTK.Audio.OpenAL @@ -119,12 +107,8 @@ items: fullName: OpenTK.Audio.OpenAL.EFXSourceFloat.ConeOuterGainHighFrequency type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EFXSourceFloat.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ConeOuterGainHighFrequency - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EFXSourceFloat.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\EFXSourceFloat.cs startLine: 44 assemblies: - OpenTK.Audio.OpenAL @@ -157,6 +141,98 @@ references: nameWithType.vb: Single fullName.vb: Single name.vb: Single +- uid: OpenTK.Audio.OpenAL.ALC.EFX.Source(System.Int32,OpenTK.Audio.OpenAL.EFXSourceFloat,System.Single) + commentId: M:OpenTK.Audio.OpenAL.ALC.EFX.Source(System.Int32,OpenTK.Audio.OpenAL.EFXSourceFloat,System.Single) + isExternal: true + href: OpenTK.Audio.OpenAL.ALC.EFX.html#OpenTK_Audio_OpenAL_ALC_EFX_Source_System_Int32_OpenTK_Audio_OpenAL_EFXSourceFloat_System_Single_ + name: Source(int, EFXSourceFloat, float) + nameWithType: ALC.EFX.Source(int, EFXSourceFloat, float) + fullName: OpenTK.Audio.OpenAL.ALC.EFX.Source(int, OpenTK.Audio.OpenAL.EFXSourceFloat, float) + nameWithType.vb: ALC.EFX.Source(Integer, EFXSourceFloat, Single) + fullName.vb: OpenTK.Audio.OpenAL.ALC.EFX.Source(Integer, OpenTK.Audio.OpenAL.EFXSourceFloat, Single) + name.vb: Source(Integer, EFXSourceFloat, Single) + spec.csharp: + - uid: OpenTK.Audio.OpenAL.ALC.EFX.Source(System.Int32,OpenTK.Audio.OpenAL.EFXSourceFloat,System.Single) + name: Source + href: OpenTK.Audio.OpenAL.ALC.EFX.html#OpenTK_Audio_OpenAL_ALC_EFX_Source_System_Int32_OpenTK_Audio_OpenAL_EFXSourceFloat_System_Single_ + - name: ( + - uid: System.Int32 + name: int + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ',' + - name: " " + - uid: OpenTK.Audio.OpenAL.EFXSourceFloat + name: EFXSourceFloat + href: OpenTK.Audio.OpenAL.EFXSourceFloat.html + - name: ',' + - name: " " + - uid: System.Single + name: float + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.single + - name: ) + spec.vb: + - uid: OpenTK.Audio.OpenAL.ALC.EFX.Source(System.Int32,OpenTK.Audio.OpenAL.EFXSourceFloat,System.Single) + name: Source + href: OpenTK.Audio.OpenAL.ALC.EFX.html#OpenTK_Audio_OpenAL_ALC_EFX_Source_System_Int32_OpenTK_Audio_OpenAL_EFXSourceFloat_System_Single_ + - name: ( + - uid: System.Int32 + name: Integer + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ',' + - name: " " + - uid: OpenTK.Audio.OpenAL.EFXSourceFloat + name: EFXSourceFloat + href: OpenTK.Audio.OpenAL.EFXSourceFloat.html + - name: ',' + - name: " " + - uid: System.Single + name: Single + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.single + - name: ) +- uid: OpenTK.Audio.OpenAL.ALC.EFX.GetSource(System.Int32,OpenTK.Audio.OpenAL.EFXSourceFloat) + commentId: M:OpenTK.Audio.OpenAL.ALC.EFX.GetSource(System.Int32,OpenTK.Audio.OpenAL.EFXSourceFloat) + isExternal: true + href: OpenTK.Audio.OpenAL.ALC.EFX.html#OpenTK_Audio_OpenAL_ALC_EFX_GetSource_System_Int32_OpenTK_Audio_OpenAL_EFXSourceFloat_ + name: GetSource(int, EFXSourceFloat) + nameWithType: ALC.EFX.GetSource(int, EFXSourceFloat) + fullName: OpenTK.Audio.OpenAL.ALC.EFX.GetSource(int, OpenTK.Audio.OpenAL.EFXSourceFloat) + nameWithType.vb: ALC.EFX.GetSource(Integer, EFXSourceFloat) + fullName.vb: OpenTK.Audio.OpenAL.ALC.EFX.GetSource(Integer, OpenTK.Audio.OpenAL.EFXSourceFloat) + name.vb: GetSource(Integer, EFXSourceFloat) + spec.csharp: + - uid: OpenTK.Audio.OpenAL.ALC.EFX.GetSource(System.Int32,OpenTK.Audio.OpenAL.EFXSourceFloat) + name: GetSource + href: OpenTK.Audio.OpenAL.ALC.EFX.html#OpenTK_Audio_OpenAL_ALC_EFX_GetSource_System_Int32_OpenTK_Audio_OpenAL_EFXSourceFloat_ + - name: ( + - uid: System.Int32 + name: int + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ',' + - name: " " + - uid: OpenTK.Audio.OpenAL.EFXSourceFloat + name: EFXSourceFloat + href: OpenTK.Audio.OpenAL.EFXSourceFloat.html + - name: ) + spec.vb: + - uid: OpenTK.Audio.OpenAL.ALC.EFX.GetSource(System.Int32,OpenTK.Audio.OpenAL.EFXSourceFloat) + name: GetSource + href: OpenTK.Audio.OpenAL.ALC.EFX.html#OpenTK_Audio_OpenAL_ALC_EFX_GetSource_System_Int32_OpenTK_Audio_OpenAL_EFXSourceFloat_ + - name: ( + - uid: System.Int32 + name: Integer + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ',' + - name: " " + - uid: OpenTK.Audio.OpenAL.EFXSourceFloat + name: EFXSourceFloat + href: OpenTK.Audio.OpenAL.EFXSourceFloat.html + - name: ) - uid: OpenTK.Audio.OpenAL commentId: N:OpenTK.Audio.OpenAL href: OpenTK.html diff --git a/api/OpenTK.Audio.OpenAL.EFXSourceInteger.yml b/api/OpenTK.Audio.OpenAL.EFXSourceInteger.yml index 7b24c5d2..25ed5df6 100644 --- a/api/OpenTK.Audio.OpenAL.EFXSourceInteger.yml +++ b/api/OpenTK.Audio.OpenAL.EFXSourceInteger.yml @@ -14,17 +14,13 @@ items: fullName: OpenTK.Audio.OpenAL.EFXSourceInteger type: Enum source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EFXSourceInteger.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: EFXSourceInteger - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EFXSourceInteger.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\EFXSourceInteger.cs startLine: 14 assemblies: - OpenTK.Audio.OpenAL namespace: OpenTK.Audio.OpenAL - summary: A list of valid Source/GetSource parameters. + summary: A list of valid / parameters. example: [] syntax: content: public enum EFXSourceInteger @@ -41,12 +37,8 @@ items: fullName: OpenTK.Audio.OpenAL.EFXSourceInteger.DirectFilter type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EFXSourceInteger.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DirectFilter - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EFXSourceInteger.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\EFXSourceInteger.cs startLine: 19 assemblies: - OpenTK.Audio.OpenAL @@ -69,6 +61,98 @@ references: nameWithType.vb: Integer fullName.vb: Integer name.vb: Integer +- uid: OpenTK.Audio.OpenAL.ALC.EFX.Source(System.Int32,OpenTK.Audio.OpenAL.EFXSourceInteger,System.Int32) + commentId: M:OpenTK.Audio.OpenAL.ALC.EFX.Source(System.Int32,OpenTK.Audio.OpenAL.EFXSourceInteger,System.Int32) + isExternal: true + href: OpenTK.Audio.OpenAL.ALC.EFX.html#OpenTK_Audio_OpenAL_ALC_EFX_Source_System_Int32_OpenTK_Audio_OpenAL_EFXSourceInteger_System_Int32_ + name: Source(int, EFXSourceInteger, int) + nameWithType: ALC.EFX.Source(int, EFXSourceInteger, int) + fullName: OpenTK.Audio.OpenAL.ALC.EFX.Source(int, OpenTK.Audio.OpenAL.EFXSourceInteger, int) + nameWithType.vb: ALC.EFX.Source(Integer, EFXSourceInteger, Integer) + fullName.vb: OpenTK.Audio.OpenAL.ALC.EFX.Source(Integer, OpenTK.Audio.OpenAL.EFXSourceInteger, Integer) + name.vb: Source(Integer, EFXSourceInteger, Integer) + spec.csharp: + - uid: OpenTK.Audio.OpenAL.ALC.EFX.Source(System.Int32,OpenTK.Audio.OpenAL.EFXSourceInteger,System.Int32) + name: Source + href: OpenTK.Audio.OpenAL.ALC.EFX.html#OpenTK_Audio_OpenAL_ALC_EFX_Source_System_Int32_OpenTK_Audio_OpenAL_EFXSourceInteger_System_Int32_ + - name: ( + - uid: System.Int32 + name: int + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ',' + - name: " " + - uid: OpenTK.Audio.OpenAL.EFXSourceInteger + name: EFXSourceInteger + href: OpenTK.Audio.OpenAL.EFXSourceInteger.html + - name: ',' + - name: " " + - uid: System.Int32 + name: int + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ) + spec.vb: + - uid: OpenTK.Audio.OpenAL.ALC.EFX.Source(System.Int32,OpenTK.Audio.OpenAL.EFXSourceInteger,System.Int32) + name: Source + href: OpenTK.Audio.OpenAL.ALC.EFX.html#OpenTK_Audio_OpenAL_ALC_EFX_Source_System_Int32_OpenTK_Audio_OpenAL_EFXSourceInteger_System_Int32_ + - name: ( + - uid: System.Int32 + name: Integer + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ',' + - name: " " + - uid: OpenTK.Audio.OpenAL.EFXSourceInteger + name: EFXSourceInteger + href: OpenTK.Audio.OpenAL.EFXSourceInteger.html + - name: ',' + - name: " " + - uid: System.Int32 + name: Integer + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ) +- uid: OpenTK.Audio.OpenAL.ALC.EFX.GetSource(System.Int32,OpenTK.Audio.OpenAL.EFXSourceInteger) + commentId: M:OpenTK.Audio.OpenAL.ALC.EFX.GetSource(System.Int32,OpenTK.Audio.OpenAL.EFXSourceInteger) + isExternal: true + href: OpenTK.Audio.OpenAL.ALC.EFX.html#OpenTK_Audio_OpenAL_ALC_EFX_GetSource_System_Int32_OpenTK_Audio_OpenAL_EFXSourceInteger_ + name: GetSource(int, EFXSourceInteger) + nameWithType: ALC.EFX.GetSource(int, EFXSourceInteger) + fullName: OpenTK.Audio.OpenAL.ALC.EFX.GetSource(int, OpenTK.Audio.OpenAL.EFXSourceInteger) + nameWithType.vb: ALC.EFX.GetSource(Integer, EFXSourceInteger) + fullName.vb: OpenTK.Audio.OpenAL.ALC.EFX.GetSource(Integer, OpenTK.Audio.OpenAL.EFXSourceInteger) + name.vb: GetSource(Integer, EFXSourceInteger) + spec.csharp: + - uid: OpenTK.Audio.OpenAL.ALC.EFX.GetSource(System.Int32,OpenTK.Audio.OpenAL.EFXSourceInteger) + name: GetSource + href: OpenTK.Audio.OpenAL.ALC.EFX.html#OpenTK_Audio_OpenAL_ALC_EFX_GetSource_System_Int32_OpenTK_Audio_OpenAL_EFXSourceInteger_ + - name: ( + - uid: System.Int32 + name: int + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ',' + - name: " " + - uid: OpenTK.Audio.OpenAL.EFXSourceInteger + name: EFXSourceInteger + href: OpenTK.Audio.OpenAL.EFXSourceInteger.html + - name: ) + spec.vb: + - uid: OpenTK.Audio.OpenAL.ALC.EFX.GetSource(System.Int32,OpenTK.Audio.OpenAL.EFXSourceInteger) + name: GetSource + href: OpenTK.Audio.OpenAL.ALC.EFX.html#OpenTK_Audio_OpenAL_ALC_EFX_GetSource_System_Int32_OpenTK_Audio_OpenAL_EFXSourceInteger_ + - name: ( + - uid: System.Int32 + name: Integer + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ',' + - name: " " + - uid: OpenTK.Audio.OpenAL.EFXSourceInteger + name: EFXSourceInteger + href: OpenTK.Audio.OpenAL.EFXSourceInteger.html + - name: ) - uid: OpenTK.Audio.OpenAL commentId: N:OpenTK.Audio.OpenAL href: OpenTK.html diff --git a/api/OpenTK.Audio.OpenAL.EFXSourceInteger3.yml b/api/OpenTK.Audio.OpenAL.EFXSourceInteger3.yml index 5e59c3cd..5a6497db 100644 --- a/api/OpenTK.Audio.OpenAL.EFXSourceInteger3.yml +++ b/api/OpenTK.Audio.OpenAL.EFXSourceInteger3.yml @@ -14,17 +14,13 @@ items: fullName: OpenTK.Audio.OpenAL.EFXSourceInteger3 type: Enum source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EFXSourceInteger3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: EFXSourceInteger3 - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EFXSourceInteger3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\EFXSourceInteger3.cs startLine: 14 assemblies: - OpenTK.Audio.OpenAL namespace: OpenTK.Audio.OpenAL - summary: A list of valid Source/GetSource parameters. + summary: A list of valid / parameters. example: [] syntax: content: public enum EFXSourceInteger3 @@ -41,12 +37,8 @@ items: fullName: OpenTK.Audio.OpenAL.EFXSourceInteger3.AuxiliarySendFilter type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EFXSourceInteger3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: AuxiliarySendFilter - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EFXSourceInteger3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\EFXSourceInteger3.cs startLine: 22 assemblies: - OpenTK.Audio.OpenAL @@ -76,6 +68,164 @@ references: nameWithType.vb: Integer fullName.vb: Integer name.vb: Integer +- uid: OpenTK.Audio.OpenAL.ALC.EFX.Source(System.Int32,OpenTK.Audio.OpenAL.EFXSourceInteger3,System.Int32,System.Int32,System.Int32) + commentId: M:OpenTK.Audio.OpenAL.ALC.EFX.Source(System.Int32,OpenTK.Audio.OpenAL.EFXSourceInteger3,System.Int32,System.Int32,System.Int32) + isExternal: true + href: OpenTK.Audio.OpenAL.ALC.EFX.html#OpenTK_Audio_OpenAL_ALC_EFX_Source_System_Int32_OpenTK_Audio_OpenAL_EFXSourceInteger3_System_Int32_System_Int32_System_Int32_ + name: Source(int, EFXSourceInteger3, int, int, int) + nameWithType: ALC.EFX.Source(int, EFXSourceInteger3, int, int, int) + fullName: OpenTK.Audio.OpenAL.ALC.EFX.Source(int, OpenTK.Audio.OpenAL.EFXSourceInteger3, int, int, int) + nameWithType.vb: ALC.EFX.Source(Integer, EFXSourceInteger3, Integer, Integer, Integer) + fullName.vb: OpenTK.Audio.OpenAL.ALC.EFX.Source(Integer, OpenTK.Audio.OpenAL.EFXSourceInteger3, Integer, Integer, Integer) + name.vb: Source(Integer, EFXSourceInteger3, Integer, Integer, Integer) + spec.csharp: + - uid: OpenTK.Audio.OpenAL.ALC.EFX.Source(System.Int32,OpenTK.Audio.OpenAL.EFXSourceInteger3,System.Int32,System.Int32,System.Int32) + name: Source + href: OpenTK.Audio.OpenAL.ALC.EFX.html#OpenTK_Audio_OpenAL_ALC_EFX_Source_System_Int32_OpenTK_Audio_OpenAL_EFXSourceInteger3_System_Int32_System_Int32_System_Int32_ + - name: ( + - uid: System.Int32 + name: int + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ',' + - name: " " + - uid: OpenTK.Audio.OpenAL.EFXSourceInteger3 + name: EFXSourceInteger3 + href: OpenTK.Audio.OpenAL.EFXSourceInteger3.html + - name: ',' + - name: " " + - uid: System.Int32 + name: int + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ',' + - name: " " + - uid: System.Int32 + name: int + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ',' + - name: " " + - uid: System.Int32 + name: int + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ) + spec.vb: + - uid: OpenTK.Audio.OpenAL.ALC.EFX.Source(System.Int32,OpenTK.Audio.OpenAL.EFXSourceInteger3,System.Int32,System.Int32,System.Int32) + name: Source + href: OpenTK.Audio.OpenAL.ALC.EFX.html#OpenTK_Audio_OpenAL_ALC_EFX_Source_System_Int32_OpenTK_Audio_OpenAL_EFXSourceInteger3_System_Int32_System_Int32_System_Int32_ + - name: ( + - uid: System.Int32 + name: Integer + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ',' + - name: " " + - uid: OpenTK.Audio.OpenAL.EFXSourceInteger3 + name: EFXSourceInteger3 + href: OpenTK.Audio.OpenAL.EFXSourceInteger3.html + - name: ',' + - name: " " + - uid: System.Int32 + name: Integer + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ',' + - name: " " + - uid: System.Int32 + name: Integer + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ',' + - name: " " + - uid: System.Int32 + name: Integer + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ) +- uid: OpenTK.Audio.OpenAL.ALC.EFX.GetSource(System.Int32,OpenTK.Audio.OpenAL.EFXSourceInteger3,System.Int32@,System.Int32@,System.Int32@) + commentId: M:OpenTK.Audio.OpenAL.ALC.EFX.GetSource(System.Int32,OpenTK.Audio.OpenAL.EFXSourceInteger3,System.Int32@,System.Int32@,System.Int32@) + isExternal: true + href: OpenTK.Audio.OpenAL.ALC.EFX.html#OpenTK_Audio_OpenAL_ALC_EFX_GetSource_System_Int32_OpenTK_Audio_OpenAL_EFXSourceInteger3_System_Int32__System_Int32__System_Int32__ + name: GetSource(int, EFXSourceInteger3, out int, out int, out int) + nameWithType: ALC.EFX.GetSource(int, EFXSourceInteger3, out int, out int, out int) + fullName: OpenTK.Audio.OpenAL.ALC.EFX.GetSource(int, OpenTK.Audio.OpenAL.EFXSourceInteger3, out int, out int, out int) + nameWithType.vb: ALC.EFX.GetSource(Integer, EFXSourceInteger3, Integer, Integer, Integer) + fullName.vb: OpenTK.Audio.OpenAL.ALC.EFX.GetSource(Integer, OpenTK.Audio.OpenAL.EFXSourceInteger3, Integer, Integer, Integer) + name.vb: GetSource(Integer, EFXSourceInteger3, Integer, Integer, Integer) + spec.csharp: + - uid: OpenTK.Audio.OpenAL.ALC.EFX.GetSource(System.Int32,OpenTK.Audio.OpenAL.EFXSourceInteger3,System.Int32@,System.Int32@,System.Int32@) + name: GetSource + href: OpenTK.Audio.OpenAL.ALC.EFX.html#OpenTK_Audio_OpenAL_ALC_EFX_GetSource_System_Int32_OpenTK_Audio_OpenAL_EFXSourceInteger3_System_Int32__System_Int32__System_Int32__ + - name: ( + - uid: System.Int32 + name: int + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ',' + - name: " " + - uid: OpenTK.Audio.OpenAL.EFXSourceInteger3 + name: EFXSourceInteger3 + href: OpenTK.Audio.OpenAL.EFXSourceInteger3.html + - name: ',' + - name: " " + - name: out + - name: " " + - uid: System.Int32 + name: int + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ',' + - name: " " + - name: out + - name: " " + - uid: System.Int32 + name: int + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ',' + - name: " " + - name: out + - name: " " + - uid: System.Int32 + name: int + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ) + spec.vb: + - uid: OpenTK.Audio.OpenAL.ALC.EFX.GetSource(System.Int32,OpenTK.Audio.OpenAL.EFXSourceInteger3,System.Int32@,System.Int32@,System.Int32@) + name: GetSource + href: OpenTK.Audio.OpenAL.ALC.EFX.html#OpenTK_Audio_OpenAL_ALC_EFX_GetSource_System_Int32_OpenTK_Audio_OpenAL_EFXSourceInteger3_System_Int32__System_Int32__System_Int32__ + - name: ( + - uid: System.Int32 + name: Integer + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ',' + - name: " " + - uid: OpenTK.Audio.OpenAL.EFXSourceInteger3 + name: EFXSourceInteger3 + href: OpenTK.Audio.OpenAL.EFXSourceInteger3.html + - name: ',' + - name: " " + - uid: System.Int32 + name: Integer + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ',' + - name: " " + - uid: System.Int32 + name: Integer + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ',' + - name: " " + - uid: System.Int32 + name: Integer + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ) - uid: OpenTK.Audio.OpenAL commentId: N:OpenTK.Audio.OpenAL href: OpenTK.html diff --git a/api/OpenTK.Audio.OpenAL.EffectFloat.yml b/api/OpenTK.Audio.OpenAL.EffectFloat.yml index 4ddd5117..b55d4af2 100644 --- a/api/OpenTK.Audio.OpenAL.EffectFloat.yml +++ b/api/OpenTK.Audio.OpenAL.EffectFloat.yml @@ -81,17 +81,13 @@ items: fullName: OpenTK.Audio.OpenAL.EffectFloat type: Enum source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectFloat.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: EffectFloat - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectFloat.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\EffectFloat.cs startLine: 14 assemblies: - OpenTK.Audio.OpenAL namespace: OpenTK.Audio.OpenAL - summary: A list of valid 32-bit Float Effect/GetEffect parameters. + summary: A list of valid 32-bit Float / parameters. example: [] syntax: content: public enum EffectFloat @@ -108,12 +104,8 @@ items: fullName: OpenTK.Audio.OpenAL.EffectFloat.ReverbDensity type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectFloat.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ReverbDensity - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectFloat.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\EffectFloat.cs startLine: 20 assemblies: - OpenTK.Audio.OpenAL @@ -121,7 +113,7 @@ items: summary: >- Reverb Modal Density controls the coloration of the late reverb. Lowering the value adds more coloration to - the late reverb. Range [0.0f .. 1.0f] Default: 1.0f + the late reverb. Range [0.0f .. 1.0f] Default: 1.0f. example: [] syntax: content: ReverbDensity = 1 @@ -139,12 +131,8 @@ items: fullName: OpenTK.Audio.OpenAL.EffectFloat.ReverbDiffusion type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectFloat.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ReverbDiffusion - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectFloat.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\EffectFloat.cs startLine: 28 assemblies: - OpenTK.Audio.OpenAL @@ -156,7 +144,7 @@ items: noticeable with percussive sound sources. If you set a diffusion value of 0.0f, the later reverberation sounds like - a succession of distinct echoes. Range [0.0f .. 1.0f] Default: 1.0f + a succession of distinct echoes. Range [0.0f .. 1.0f] Default: 1.0f. example: [] syntax: content: ReverbDiffusion = 2 @@ -174,12 +162,8 @@ items: fullName: OpenTK.Audio.OpenAL.EffectFloat.ReverbGain type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectFloat.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ReverbGain - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectFloat.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\EffectFloat.cs startLine: 35 assemblies: - OpenTK.Audio.OpenAL @@ -189,7 +173,7 @@ items: reverberation - that the reverb effect adds to all sound sources. Ranges from 1.0 (0db) (the maximum amount) to 0.0 - (-100db) (no reflected sound at all) are accepted. Units: Linear gain Range [0.0f .. 1.0f] Default: 0.32f + (-100db) (no reflected sound at all) are accepted. Units: Linear gain Range [0.0f .. 1.0f] Default: 0.32f. example: [] syntax: content: ReverbGain = 3 @@ -207,12 +191,8 @@ items: fullName: OpenTK.Audio.OpenAL.EffectFloat.ReverbGainHF type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectFloat.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ReverbGainHF - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectFloat.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\EffectFloat.cs startLine: 43 assemblies: - OpenTK.Audio.OpenAL @@ -224,7 +204,7 @@ items: of the reverb effect. Ranges from 1.0f (0db) (no filter) to 0.0f (-100db) (virtually no reflected sound) are - accepted. Units: Linear gain Range [0.0f .. 1.0f] Default: 0.89f + accepted. Units: Linear gain Range [0.0f .. 1.0f] Default: 0.89f. example: [] syntax: content: ReverbGainHF = 4 @@ -242,12 +222,8 @@ items: fullName: OpenTK.Audio.OpenAL.EffectFloat.ReverbDecayTime type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectFloat.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ReverbDecayTime - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectFloat.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\EffectFloat.cs startLine: 50 assemblies: - OpenTK.Audio.OpenAL @@ -257,7 +233,7 @@ items: very dead surfaces) to 20.0 (typically a large room with very live surfaces). Unit: Seconds Range [0.1f .. 20.0f] - Default: 1.49f + Default: 1.49f. example: [] syntax: content: ReverbDecayTime = 5 @@ -275,12 +251,8 @@ items: fullName: OpenTK.Audio.OpenAL.EffectFloat.ReverbDecayHFRatio type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectFloat.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ReverbDecayHFRatio - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectFloat.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\EffectFloat.cs startLine: 57 assemblies: - OpenTK.Audio.OpenAL @@ -290,7 +262,7 @@ items: high-frequency decay time relative to the time set by Decay Time.. Unit: linear multiplier Range [0.1f .. 2.0f] - Default: 0.83f + Default: 0.83f. example: [] syntax: content: ReverbDecayHFRatio = 6 @@ -308,12 +280,8 @@ items: fullName: OpenTK.Audio.OpenAL.EffectFloat.ReverbReflectionsGain type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectFloat.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ReverbReflectionsGain - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectFloat.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\EffectFloat.cs startLine: 65 assemblies: - OpenTK.Audio.OpenAL @@ -325,7 +293,7 @@ items: initial reflections at all), and is corrected by the value of the Gain property. Unit: Linear gain Range [0.0f .. - 3.16f] Default: 0.05f + 3.16f] Default: 0.05f. example: [] syntax: content: ReverbReflectionsGain = 7 @@ -343,12 +311,8 @@ items: fullName: OpenTK.Audio.OpenAL.EffectFloat.ReverbReflectionsDelay type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectFloat.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ReverbReflectionsDelay - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectFloat.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\EffectFloat.cs startLine: 72 assemblies: - OpenTK.Audio.OpenAL @@ -358,7 +322,7 @@ items: source to the first reflection from the source. It ranges from 0 to 300 milliseconds. Unit: Seconds Range [0.0f .. - 0.3f] Default: 0.007f + 0.3f] Default: 0.007f. example: [] syntax: content: ReverbReflectionsDelay = 8 @@ -376,12 +340,8 @@ items: fullName: OpenTK.Audio.OpenAL.EffectFloat.ReverbLateReverbGain type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectFloat.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ReverbLateReverbGain - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectFloat.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\EffectFloat.cs startLine: 79 assemblies: - OpenTK.Audio.OpenAL @@ -391,7 +351,7 @@ items: property. The value of Late Reverb Gain ranges from a maximum of 10.0f (+20 dB) to a minimum of 0.0f (-100 dB) (no - late reverberation at all). Unit: Linear gain Range [0.0f .. 10.0f] Default: 1.26f + late reverberation at all). Unit: Linear gain Range [0.0f .. 10.0f] Default: 1.26f. example: [] syntax: content: ReverbLateReverbGain = 9 @@ -409,12 +369,8 @@ items: fullName: OpenTK.Audio.OpenAL.EffectFloat.ReverbLateReverbDelay type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectFloat.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ReverbLateReverbDelay - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectFloat.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\EffectFloat.cs startLine: 86 assemblies: - OpenTK.Audio.OpenAL @@ -424,7 +380,7 @@ items: initial reflection (the first of the early reflections). It ranges from 0 to 100 milliseconds. Unit: Seconds Range - [0.0f .. 0.1f] Default: 0.011f + [0.0f .. 0.1f] Default: 0.011f. example: [] syntax: content: ReverbLateReverbDelay = 10 @@ -442,12 +398,8 @@ items: fullName: OpenTK.Audio.OpenAL.EffectFloat.ReverbAirAbsorptionGainHF type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectFloat.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ReverbAirAbsorptionGainHF - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectFloat.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\EffectFloat.cs startLine: 93 assemblies: - OpenTK.Audio.OpenAL @@ -457,7 +409,7 @@ items: the propagation medium and applies to reflected sound only. Unit: Linear gain per meter Range [0.892f .. 1.0f] - Default: 0.994f + Default: 0.994f. example: [] syntax: content: ReverbAirAbsorptionGainHF = 11 @@ -475,12 +427,8 @@ items: fullName: OpenTK.Audio.OpenAL.EffectFloat.ReverbRoomRolloffFactor type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectFloat.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ReverbRoomRolloffFactor - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectFloat.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\EffectFloat.cs startLine: 101 assemblies: - OpenTK.Audio.OpenAL @@ -492,7 +440,7 @@ items: Rolloff Factor, but operates on reverb sound instead of direct-path sound. Unit: Linear multiplier Range [0.0f .. - 10.0f] Default: 0.0f + 10.0f] Default: 0.0f. example: [] syntax: content: ReverbRoomRolloffFactor = 12 @@ -510,12 +458,8 @@ items: fullName: OpenTK.Audio.OpenAL.EffectFloat.ChorusRate type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectFloat.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ChorusRate - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectFloat.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\EffectFloat.cs startLine: 107 assemblies: - OpenTK.Audio.OpenAL @@ -523,7 +467,7 @@ items: summary: >- This property sets the modulation rate of the low-frequency oscillator that controls the delay time of the - delayed signals. Unit: Hz Range [0.0f .. 10.0f] Default: 1.1f + delayed signals. Unit: Hz Range [0.0f .. 10.0f] Default: 1.1f. example: [] syntax: content: ChorusRate = 3 @@ -541,12 +485,8 @@ items: fullName: OpenTK.Audio.OpenAL.EffectFloat.ChorusDepth type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectFloat.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ChorusDepth - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectFloat.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\EffectFloat.cs startLine: 113 assemblies: - OpenTK.Audio.OpenAL @@ -554,7 +494,7 @@ items: summary: >- This property controls the amount by which the delay time is modulated by the low-frequency oscillator. Range - [0.0f .. 1.0f] Default: 0.1f + [0.0f .. 1.0f] Default: 0.1f. example: [] syntax: content: ChorusDepth = 4 @@ -572,12 +512,8 @@ items: fullName: OpenTK.Audio.OpenAL.EffectFloat.ChorusFeedback type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectFloat.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ChorusFeedback - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectFloat.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\EffectFloat.cs startLine: 120 assemblies: - OpenTK.Audio.OpenAL @@ -587,7 +523,7 @@ items: Negative values will reverse the phase of the feedback signal. At full magnitude the identical sample will repeat - endlessly. Range [-1.0f .. +1.0f] Default: +0.25f + endlessly. Range [-1.0f .. +1.0f] Default: +0.25f. example: [] syntax: content: ChorusFeedback = 5 @@ -605,12 +541,8 @@ items: fullName: OpenTK.Audio.OpenAL.EffectFloat.ChorusDelay type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectFloat.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ChorusDelay - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectFloat.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\EffectFloat.cs startLine: 127 assemblies: - OpenTK.Audio.OpenAL @@ -620,7 +552,7 @@ items: feedback, the amount of time between iterations of the sample. Larger values lower the pitch. Unit: Seconds Range - [0.0f .. 0.016f] Default: 0.016f + [0.0f .. 0.016f] Default: 0.016f. example: [] syntax: content: ChorusDelay = 6 @@ -638,12 +570,8 @@ items: fullName: OpenTK.Audio.OpenAL.EffectFloat.DistortionEdge type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectFloat.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DistortionEdge - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectFloat.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\EffectFloat.cs startLine: 133 assemblies: - OpenTK.Audio.OpenAL @@ -651,7 +579,7 @@ items: summary: >- This property controls the shape of the distortion. The higher the value for Edge, the "dirtier" and "fuzzier" - the effect. Range [0.0f .. 1.0f] Default: 0.2f + the effect. Range [0.0f .. 1.0f] Default: 0.2f. example: [] syntax: content: DistortionEdge = 1 @@ -669,17 +597,13 @@ items: fullName: OpenTK.Audio.OpenAL.EffectFloat.DistortionGain type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectFloat.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DistortionGain - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectFloat.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\EffectFloat.cs startLine: 138 assemblies: - OpenTK.Audio.OpenAL namespace: OpenTK.Audio.OpenAL - summary: 'This property allows you to attenuate the distorted sound. Range [0.01f .. 1.0f] Default: 0.05f' + summary: 'This property allows you to attenuate the distorted sound. Range [0.01f .. 1.0f] Default: 0.05f.' example: [] syntax: content: DistortionGain = 2 @@ -697,12 +621,8 @@ items: fullName: OpenTK.Audio.OpenAL.EffectFloat.DistortionLowpassCutoff type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectFloat.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DistortionLowpassCutoff - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectFloat.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\EffectFloat.cs startLine: 144 assemblies: - OpenTK.Audio.OpenAL @@ -710,7 +630,7 @@ items: summary: >- Input signals can have a low pass filter applied, to limit the amount of high frequency signal feeding into - the distortion effect. Unit: Hz Range [80.0f .. 24000.0f] Default: 8000.0f + the distortion effect. Unit: Hz Range [80.0f .. 24000.0f] Default: 8000.0f. example: [] syntax: content: DistortionLowpassCutoff = 3 @@ -728,12 +648,8 @@ items: fullName: OpenTK.Audio.OpenAL.EffectFloat.DistortionEQCenter type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectFloat.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DistortionEQCenter - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectFloat.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\EffectFloat.cs startLine: 150 assemblies: - OpenTK.Audio.OpenAL @@ -741,7 +657,7 @@ items: summary: >- This property controls the frequency at which the post-distortion attenuation (Distortion Gain) is active. - Unit: Hz Range [80.0f .. 24000.0f] Default: 3600.0f + Unit: Hz Range [80.0f .. 24000.0f] Default: 3600.0f. example: [] syntax: content: DistortionEQCenter = 4 @@ -759,12 +675,8 @@ items: fullName: OpenTK.Audio.OpenAL.EffectFloat.DistortionEQBandwidth type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectFloat.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DistortionEQBandwidth - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectFloat.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\EffectFloat.cs startLine: 156 assemblies: - OpenTK.Audio.OpenAL @@ -772,7 +684,7 @@ items: summary: >- This property controls the bandwidth of the post-distortion attenuation. Unit: Hz Range [80.0f .. 24000.0f] - Default: 3600.0f + Default: 3600.0f. example: [] syntax: content: DistortionEQBandwidth = 5 @@ -790,12 +702,8 @@ items: fullName: OpenTK.Audio.OpenAL.EffectFloat.EchoDelay type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectFloat.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: EchoDelay - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectFloat.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\EffectFloat.cs startLine: 163 assemblies: - OpenTK.Audio.OpenAL @@ -805,7 +713,7 @@ items: Subsequently, the value for Echo Delay is used to determine the time delay between each "second tap" and the next - "first tap". Unit: Seconds Range [0.0f .. 0.207f] Default: 0.1f + "first tap". Unit: Seconds Range [0.0f .. 0.207f] Default: 0.1f. example: [] syntax: content: EchoDelay = 1 @@ -823,12 +731,8 @@ items: fullName: OpenTK.Audio.OpenAL.EffectFloat.EchoLRDelay type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectFloat.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: EchoLRDelay - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectFloat.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\EffectFloat.cs startLine: 170 assemblies: - OpenTK.Audio.OpenAL @@ -838,7 +742,7 @@ items: Echo LR Delay is used to determine the time delay between each "first tap" and the next "second tap". Unit: Seconds - Range [0.0f .. 0.404f] Default: 0.1f + Range [0.0f .. 0.404f] Default: 0.1f. example: [] syntax: content: EchoLRDelay = 2 @@ -856,12 +760,8 @@ items: fullName: OpenTK.Audio.OpenAL.EffectFloat.EchoDamping type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectFloat.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: EchoDamping - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectFloat.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\EffectFloat.cs startLine: 177 assemblies: - OpenTK.Audio.OpenAL @@ -871,7 +771,7 @@ items: fed back for further echoes, damping results in an echo which progressively gets softer in tone as well as - intensity. Range [0.0f .. 0.99f] Default: 0.5f + intensity. Range [0.0f .. 0.99f] Default: 0.5f. example: [] syntax: content: EchoDamping = 3 @@ -889,12 +789,8 @@ items: fullName: OpenTK.Audio.OpenAL.EffectFloat.EchoFeedback type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectFloat.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: EchoFeedback - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectFloat.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\EffectFloat.cs startLine: 184 assemblies: - OpenTK.Audio.OpenAL @@ -904,7 +800,7 @@ items: create "cascading" echoes. At full magnitude, the identical sample will repeat endlessly. Below full magnitude, the - sample will repeat and fade. Range [0.0f .. 1.0f] Default: 0.5f + sample will repeat and fade. Range [0.0f .. 1.0f] Default: 0.5f. example: [] syntax: content: EchoFeedback = 4 @@ -922,12 +818,8 @@ items: fullName: OpenTK.Audio.OpenAL.EffectFloat.EchoSpread type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectFloat.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: EchoSpread - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectFloat.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\EffectFloat.cs startLine: 191 assemblies: - OpenTK.Audio.OpenAL @@ -937,7 +829,7 @@ items: be panned hard left, and the second "tap" hard right. –1.0f gives the opposite result and values near to 0.0f - result in less emphasized panning. Range [-1.0f .. +1.0f] Default: -1.0f + result in less emphasized panning. Range [-1.0f .. +1.0f] Default: -1.0f. example: [] syntax: content: EchoSpread = 5 @@ -955,12 +847,8 @@ items: fullName: OpenTK.Audio.OpenAL.EffectFloat.FlangerRate type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectFloat.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: FlangerRate - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectFloat.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\EffectFloat.cs startLine: 197 assemblies: - OpenTK.Audio.OpenAL @@ -968,7 +856,7 @@ items: summary: >- The number of times per second the low-frequency oscillator controlling the amount of delay repeats. Range - [0.0f .. 10.0f] Default: 0.27f + [0.0f .. 10.0f] Default: 0.27f. example: [] syntax: content: FlangerRate = 3 @@ -986,12 +874,8 @@ items: fullName: OpenTK.Audio.OpenAL.EffectFloat.FlangerDepth type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectFloat.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: FlangerDepth - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectFloat.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\EffectFloat.cs startLine: 203 assemblies: - OpenTK.Audio.OpenAL @@ -999,7 +883,7 @@ items: summary: >- The ratio by which the delay time is modulated by the low-frequency oscillator. Range [0.0f .. 1.0f] Default: - 1.0f + 1.0f. example: [] syntax: content: FlangerDepth = 4 @@ -1017,12 +901,8 @@ items: fullName: OpenTK.Audio.OpenAL.EffectFloat.FlangerFeedback type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectFloat.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: FlangerFeedback - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectFloat.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\EffectFloat.cs startLine: 209 assemblies: - OpenTK.Audio.OpenAL @@ -1030,7 +910,7 @@ items: summary: >- This is the amount of the output signal level fed back into the effect's input. A negative value will reverse - the phase of the feedback signal. Range [-1.0f .. +1.0f] Default: -0.5f + the phase of the feedback signal. Range [-1.0f .. +1.0f] Default: -0.5f. example: [] syntax: content: FlangerFeedback = 5 @@ -1048,12 +928,8 @@ items: fullName: OpenTK.Audio.OpenAL.EffectFloat.FlangerDelay type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectFloat.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: FlangerDelay - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectFloat.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\EffectFloat.cs startLine: 216 assemblies: - OpenTK.Audio.OpenAL @@ -1063,7 +939,7 @@ items: property it's the amount of time between iterations of the sample. Unit: Seconds Range [0.0f .. 0.004f] Default: - 0.002f + 0.002f. example: [] syntax: content: FlangerDelay = 6 @@ -1081,12 +957,8 @@ items: fullName: OpenTK.Audio.OpenAL.EffectFloat.FrequencyShifterFrequency type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectFloat.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: FrequencyShifterFrequency - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectFloat.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\EffectFloat.cs startLine: 223 assemblies: - OpenTK.Audio.OpenAL @@ -1096,7 +968,7 @@ items: may produce phaser effects, spatial effects or a slight pitch-shift. As the carrier frequency increases, the timbre - of the sound is affected. Unit: Hz Range [0.0f .. 24000.0f] Default: 0.0f + of the sound is affected. Unit: Hz Range [0.0f .. 24000.0f] Default: 0.0f. example: [] syntax: content: FrequencyShifterFrequency = 1 @@ -1114,12 +986,8 @@ items: fullName: OpenTK.Audio.OpenAL.EffectFloat.VocalMorpherRate type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectFloat.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: VocalMorpherRate - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectFloat.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\EffectFloat.cs startLine: 229 assemblies: - OpenTK.Audio.OpenAL @@ -1127,7 +995,7 @@ items: summary: >- This controls the frequency of the low-frequency oscillator used to morph between the two phoneme filters. - Unit: Hz Range [0.0f .. 10.0f] Default: 1.41f + Unit: Hz Range [0.0f .. 10.0f] Default: 1.41f. example: [] syntax: content: VocalMorpherRate = 6 @@ -1145,12 +1013,8 @@ items: fullName: OpenTK.Audio.OpenAL.EffectFloat.RingModulatorFrequency type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectFloat.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: RingModulatorFrequency - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectFloat.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\EffectFloat.cs startLine: 235 assemblies: - OpenTK.Audio.OpenAL @@ -1158,7 +1022,7 @@ items: summary: >- This is the frequency of the carrier signal. If the carrier signal is slowly varying (less than 20 Hz), the - result is a slow amplitude variation effect (tremolo). Unit: Hz Range [0.0f .. 8000.0f] Default: 440.0f + result is a slow amplitude variation effect (tremolo). Unit: Hz Range [0.0f .. 8000.0f] Default: 440.0f. example: [] syntax: content: RingModulatorFrequency = 1 @@ -1176,12 +1040,8 @@ items: fullName: OpenTK.Audio.OpenAL.EffectFloat.RingModulatorHighpassCutoff type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectFloat.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: RingModulatorHighpassCutoff - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectFloat.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\EffectFloat.cs startLine: 241 assemblies: - OpenTK.Audio.OpenAL @@ -1189,7 +1049,7 @@ items: summary: >- This controls the cutoff frequency at which the input signal is high-pass filtered before being ring - modulated. Unit: Hz Range [0.0f .. 24000.0f] Default: 800.0f + modulated. Unit: Hz Range [0.0f .. 24000.0f] Default: 800.0f. example: [] syntax: content: RingModulatorHighpassCutoff = 2 @@ -1207,12 +1067,8 @@ items: fullName: OpenTK.Audio.OpenAL.EffectFloat.AutowahAttackTime type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectFloat.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: AutowahAttackTime - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectFloat.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\EffectFloat.cs startLine: 247 assemblies: - OpenTK.Audio.OpenAL @@ -1220,7 +1076,7 @@ items: summary: >- This property controls the time the filtering effect takes to sweep from minimum to maximum center frequency - when it is triggered by input signal. Unit: Seconds Range [0.0001f .. 1.0f] Default: 0.06f + when it is triggered by input signal. Unit: Seconds Range [0.0001f .. 1.0f] Default: 0.06f. example: [] syntax: content: AutowahAttackTime = 1 @@ -1238,12 +1094,8 @@ items: fullName: OpenTK.Audio.OpenAL.EffectFloat.AutowahReleaseTime type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectFloat.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: AutowahReleaseTime - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectFloat.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\EffectFloat.cs startLine: 253 assemblies: - OpenTK.Audio.OpenAL @@ -1251,7 +1103,7 @@ items: summary: >- This property controls the time the filtering effect takes to sweep from maximum back to base center - frequency, when the input signal ends. Unit: Seconds Range [0.0001f .. 1.0f] Default: 0.06f + frequency, when the input signal ends. Unit: Seconds Range [0.0001f .. 1.0f] Default: 0.06f. example: [] syntax: content: AutowahReleaseTime = 2 @@ -1269,12 +1121,8 @@ items: fullName: OpenTK.Audio.OpenAL.EffectFloat.AutowahResonance type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectFloat.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: AutowahResonance - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectFloat.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\EffectFloat.cs startLine: 259 assemblies: - OpenTK.Audio.OpenAL @@ -1282,7 +1130,7 @@ items: summary: >- This property controls the resonant peak, sometimes known as emphasis or Q, of the auto-wah band-pass filter. - Range [2.0f .. 1000.0f] Default: 1000.0f + Range [2.0f .. 1000.0f] Default: 1000.0f. example: [] syntax: content: AutowahResonance = 3 @@ -1300,12 +1148,8 @@ items: fullName: OpenTK.Audio.OpenAL.EffectFloat.AutowahPeakGain type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectFloat.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: AutowahPeakGain - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectFloat.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\EffectFloat.cs startLine: 265 assemblies: - OpenTK.Audio.OpenAL @@ -1313,7 +1157,7 @@ items: summary: >- This property controls the input signal level at which the band-pass filter will be fully opened. Range - [0.00003f .. 31621.0f] Default: 11.22f + [0.00003f .. 31621.0f] Default: 11.22f. example: [] syntax: content: AutowahPeakGain = 4 @@ -1331,12 +1175,8 @@ items: fullName: OpenTK.Audio.OpenAL.EffectFloat.EqualizerLowGain type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectFloat.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: EqualizerLowGain - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectFloat.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\EffectFloat.cs startLine: 271 assemblies: - OpenTK.Audio.OpenAL @@ -1344,7 +1184,7 @@ items: summary: >- This property controls amount of cut or boost on the low frequency range. Range [0.126f .. 7.943f] Default: - 1.0f + 1.0f. example: [] syntax: content: EqualizerLowGain = 1 @@ -1362,12 +1202,8 @@ items: fullName: OpenTK.Audio.OpenAL.EffectFloat.EqualizerLowCutoff type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectFloat.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: EqualizerLowCutoff - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectFloat.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\EffectFloat.cs startLine: 277 assemblies: - OpenTK.Audio.OpenAL @@ -1375,7 +1211,7 @@ items: summary: >- This property controls the low frequency below which signal will be cut off. Unit: Hz Range [50.0f .. 800.0f] - Default: 200.0f + Default: 200.0f. example: [] syntax: content: EqualizerLowCutoff = 2 @@ -1393,17 +1229,13 @@ items: fullName: OpenTK.Audio.OpenAL.EffectFloat.EqualizerMid1Gain type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectFloat.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: EqualizerMid1Gain - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectFloat.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\EffectFloat.cs startLine: 282 assemblies: - OpenTK.Audio.OpenAL namespace: OpenTK.Audio.OpenAL - summary: 'This property allows you to cut/boost signal on the "mid1" range. Range [0.126f .. 7.943f] Default: 1.0f' + summary: 'This property allows you to cut/boost signal on the "mid1" range. Range [0.126f .. 7.943f] Default: 1.0f.' example: [] syntax: content: EqualizerMid1Gain = 3 @@ -1421,12 +1253,8 @@ items: fullName: OpenTK.Audio.OpenAL.EffectFloat.EqualizerMid1Center type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectFloat.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: EqualizerMid1Center - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectFloat.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\EffectFloat.cs startLine: 288 assemblies: - OpenTK.Audio.OpenAL @@ -1434,7 +1262,7 @@ items: summary: >- This property sets the center frequency for the "mid1" range. Unit: Hz Range [200.0f .. 3000.0f] Default: - 500.0f + 500.0f. example: [] syntax: content: EqualizerMid1Center = 4 @@ -1452,17 +1280,13 @@ items: fullName: OpenTK.Audio.OpenAL.EffectFloat.EqualizerMid1Width type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectFloat.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: EqualizerMid1Width - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectFloat.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\EffectFloat.cs startLine: 293 assemblies: - OpenTK.Audio.OpenAL namespace: OpenTK.Audio.OpenAL - summary: 'This property controls the width of the "mid1" range. Range [0.01f .. 1.0f] Default: 1.0f' + summary: 'This property controls the width of the "mid1" range. Range [0.01f .. 1.0f] Default: 1.0f.' example: [] syntax: content: EqualizerMid1Width = 5 @@ -1480,17 +1304,13 @@ items: fullName: OpenTK.Audio.OpenAL.EffectFloat.EqualizerMid2Gain type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectFloat.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: EqualizerMid2Gain - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectFloat.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\EffectFloat.cs startLine: 298 assemblies: - OpenTK.Audio.OpenAL namespace: OpenTK.Audio.OpenAL - summary: 'This property allows you to cut/boost signal on the "mid2" range. Range [0.126f .. 7.943f] Default: 1.0f' + summary: 'This property allows you to cut/boost signal on the "mid2" range. Range [0.126f .. 7.943f] Default: 1.0f.' example: [] syntax: content: EqualizerMid2Gain = 6 @@ -1508,12 +1328,8 @@ items: fullName: OpenTK.Audio.OpenAL.EffectFloat.EqualizerMid2Center type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectFloat.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: EqualizerMid2Center - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectFloat.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\EffectFloat.cs startLine: 304 assemblies: - OpenTK.Audio.OpenAL @@ -1521,7 +1337,7 @@ items: summary: >- This property sets the center frequency for the "mid2" range. Unit: Hz Range [1000.0f .. 8000.0f] Default: - 3000.0f + 3000.0f. example: [] syntax: content: EqualizerMid2Center = 7 @@ -1539,17 +1355,13 @@ items: fullName: OpenTK.Audio.OpenAL.EffectFloat.EqualizerMid2Width type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectFloat.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: EqualizerMid2Width - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectFloat.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\EffectFloat.cs startLine: 309 assemblies: - OpenTK.Audio.OpenAL namespace: OpenTK.Audio.OpenAL - summary: 'This property controls the width of the "mid2" range. Range [0.01f .. 1.0f] Default: 1.0f' + summary: 'This property controls the width of the "mid2" range. Range [0.01f .. 1.0f] Default: 1.0f.' example: [] syntax: content: EqualizerMid2Width = 8 @@ -1567,17 +1379,13 @@ items: fullName: OpenTK.Audio.OpenAL.EffectFloat.EqualizerHighGain type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectFloat.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: EqualizerHighGain - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectFloat.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\EffectFloat.cs startLine: 314 assemblies: - OpenTK.Audio.OpenAL namespace: OpenTK.Audio.OpenAL - summary: 'This property allows to cut/boost the signal at high frequencies. Range [0.126f .. 7.943f] Default: 1.0f' + summary: 'This property allows to cut/boost the signal at high frequencies. Range [0.126f .. 7.943f] Default: 1.0f.' example: [] syntax: content: EqualizerHighGain = 9 @@ -1595,12 +1403,8 @@ items: fullName: OpenTK.Audio.OpenAL.EffectFloat.EqualizerHighCutoff type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectFloat.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: EqualizerHighCutoff - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectFloat.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\EffectFloat.cs startLine: 320 assemblies: - OpenTK.Audio.OpenAL @@ -1608,7 +1412,7 @@ items: summary: >- This property controls the high frequency above which signal will be cut off. Unit: Hz Range [4000.0f .. - 16000.0f] Default: 6000.0f + 16000.0f] Default: 6000.0f. example: [] syntax: content: EqualizerHighCutoff = 10 @@ -1626,17 +1430,13 @@ items: fullName: OpenTK.Audio.OpenAL.EffectFloat.EaxReverbDensity type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectFloat.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: EaxReverbDensity - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectFloat.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\EffectFloat.cs startLine: 325 assemblies: - OpenTK.Audio.OpenAL namespace: OpenTK.Audio.OpenAL - summary: 'Reverb Modal Density controls the coloration of the late reverb. Range [0.0f .. 1.0f] Default: 1.0f' + summary: 'Reverb Modal Density controls the coloration of the late reverb. Range [0.0f .. 1.0f] Default: 1.0f.' example: [] syntax: content: EaxReverbDensity = 1 @@ -1654,12 +1454,8 @@ items: fullName: OpenTK.Audio.OpenAL.EffectFloat.EaxReverbDiffusion type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectFloat.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: EaxReverbDiffusion - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectFloat.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\EffectFloat.cs startLine: 331 assemblies: - OpenTK.Audio.OpenAL @@ -1667,7 +1463,7 @@ items: summary: >- The Reverb Diffusion property controls the echo density in the reverberation decay. Range [0.0f .. 1.0f] - Default: 1.0f + Default: 1.0f. example: [] syntax: content: EaxReverbDiffusion = 2 @@ -1685,12 +1481,8 @@ items: fullName: OpenTK.Audio.OpenAL.EffectFloat.EaxReverbGain type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectFloat.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: EaxReverbGain - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectFloat.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\EffectFloat.cs startLine: 338 assemblies: - OpenTK.Audio.OpenAL @@ -1700,7 +1492,7 @@ items: characteristic of rooms with highly reflective walls and/or small dimensions. Unit: Linear gain Range [0.0f .. - 1.0f] Default: 0.32f + 1.0f] Default: 0.32f. example: [] syntax: content: EaxReverbGain = 3 @@ -1718,12 +1510,8 @@ items: fullName: OpenTK.Audio.OpenAL.EffectFloat.EaxReverbGainHF type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectFloat.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: EaxReverbGainHF - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectFloat.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\EffectFloat.cs startLine: 345 assemblies: - OpenTK.Audio.OpenAL @@ -1733,7 +1521,7 @@ items: use this property to give a room specific spectral characteristic. Unit: Linear gain Range [0.0f .. 1.0f] Default: - 0.89f + 0.89f. example: [] syntax: content: EaxReverbGainHF = 4 @@ -1751,12 +1539,8 @@ items: fullName: OpenTK.Audio.OpenAL.EffectFloat.EaxReverbGainLF type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectFloat.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: EaxReverbGainLF - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectFloat.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\EffectFloat.cs startLine: 351 assemblies: - OpenTK.Audio.OpenAL @@ -1764,7 +1548,7 @@ items: summary: >- Gain LF is the low frequency counterpart to Gain HF. Use this to reduce or boost the low frequency content in - an environment. Unit: Linear gain Range [0.0f .. 1.0f] Default: 1.0f + an environment. Unit: Linear gain Range [0.0f .. 1.0f] Default: 1.0f. example: [] syntax: content: EaxReverbGainLF = 5 @@ -1782,12 +1566,8 @@ items: fullName: OpenTK.Audio.OpenAL.EffectFloat.EaxReverbDecayTime type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectFloat.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: EaxReverbDecayTime - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectFloat.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\EffectFloat.cs startLine: 358 assemblies: - OpenTK.Audio.OpenAL @@ -1797,7 +1577,7 @@ items: very dead surfaces) to 20.0f (typically a large room with very live surfaces). Unit: Seconds Range [0.1f .. 20.0f] - Default: 1.49f + Default: 1.49f. example: [] syntax: content: EaxReverbDecayTime = 6 @@ -1815,12 +1595,8 @@ items: fullName: OpenTK.Audio.OpenAL.EffectFloat.EaxReverbDecayHFRatio type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectFloat.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: EaxReverbDecayHFRatio - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectFloat.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\EffectFloat.cs startLine: 365 assemblies: - OpenTK.Audio.OpenAL @@ -1830,7 +1606,7 @@ items: changing this value, you are changing the amount of time it takes for the high frequencies to decay compared to the - mid frequencies of the reverb. Range [0.1f .. 2.0f] Default: 0.83f + mid frequencies of the reverb. Range [0.1f .. 2.0f] Default: 0.83f. example: [] syntax: content: EaxReverbDecayHFRatio = 7 @@ -1848,12 +1624,8 @@ items: fullName: OpenTK.Audio.OpenAL.EffectFloat.EaxReverbDecayLFRatio type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectFloat.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: EaxReverbDecayLFRatio - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectFloat.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\EffectFloat.cs startLine: 371 assemblies: - OpenTK.Audio.OpenAL @@ -1861,7 +1633,7 @@ items: summary: >- Decay LF Ratio scales the decay time of low frequencies in the reverberation in the same manner that Decay HF - Ratio handles high frequencies. Unit: Linear multiplier Range [0.1f .. 2.0f] Default: 1.0f + Ratio handles high frequencies. Unit: Linear multiplier Range [0.1f .. 2.0f] Default: 1.0f. example: [] syntax: content: EaxReverbDecayLFRatio = 8 @@ -1879,12 +1651,8 @@ items: fullName: OpenTK.Audio.OpenAL.EffectFloat.EaxReverbReflectionsGain type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectFloat.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: EaxReverbReflectionsGain - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectFloat.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\EffectFloat.cs startLine: 377 assemblies: - OpenTK.Audio.OpenAL @@ -1892,7 +1660,7 @@ items: summary: >- Reflections Gain sets the level of the early reflections in an environment. Early reflections are used as a - cue for determining the size of the environment we are in. Unit: Linear gain Range [0.0f .. 3.16f] Default: 0.05f + cue for determining the size of the environment we are in. Unit: Linear gain Range [0.0f .. 3.16f] Default: 0.05f. example: [] syntax: content: EaxReverbReflectionsGain = 9 @@ -1910,12 +1678,8 @@ items: fullName: OpenTK.Audio.OpenAL.EffectFloat.EaxReverbReflectionsDelay type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectFloat.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: EaxReverbReflectionsDelay - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectFloat.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\EffectFloat.cs startLine: 383 assemblies: - OpenTK.Audio.OpenAL @@ -1923,7 +1687,7 @@ items: summary: >- Reflections Delay controls the amount of time it takes for the first reflected wave front to reach the - listener, relative to the arrival of the direct-path sound. Unit: Seconds Range [0.0f .. 0.3f] Default: 0.007f + listener, relative to the arrival of the direct-path sound. Unit: Seconds Range [0.0f .. 0.3f] Default: 0.007f. example: [] syntax: content: EaxReverbReflectionsDelay = 10 @@ -1941,12 +1705,8 @@ items: fullName: OpenTK.Audio.OpenAL.EffectFloat.EaxReverbLateReverbGain type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectFloat.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: EaxReverbLateReverbGain - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectFloat.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\EffectFloat.cs startLine: 389 assemblies: - OpenTK.Audio.OpenAL @@ -1954,7 +1714,7 @@ items: summary: >- The Late Reverb Gain property controls the overall amount of later reverberation relative to the Gain - property. Range [0.0f .. 10.0f] Default: 1.26f + property. Range [0.0f .. 10.0f] Default: 1.26f. example: [] syntax: content: EaxReverbLateReverbGain = 12 @@ -1972,12 +1732,8 @@ items: fullName: OpenTK.Audio.OpenAL.EffectFloat.EaxReverbLateReverbDelay type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectFloat.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: EaxReverbLateReverbDelay - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectFloat.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\EffectFloat.cs startLine: 396 assemblies: - OpenTK.Audio.OpenAL @@ -1987,7 +1743,7 @@ items: initial reflection (the first of the early reflections). It ranges from 0 to 100 milliseconds. Unit: Seconds Range - [0.0f .. 0.1f] Default: 0.011f + [0.0f .. 0.1f] Default: 0.011f. example: [] syntax: content: EaxReverbLateReverbDelay = 13 @@ -2005,12 +1761,8 @@ items: fullName: OpenTK.Audio.OpenAL.EffectFloat.EaxReverbEchoTime type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectFloat.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: EaxReverbEchoTime - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectFloat.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\EffectFloat.cs startLine: 402 assemblies: - OpenTK.Audio.OpenAL @@ -2018,7 +1770,7 @@ items: summary: >- Echo Time controls the rate at which the cyclic echo repeats itself along the reverberation decay. Range - [0.075f .. 0.25f] Default: 0.25f + [0.075f .. 0.25f] Default: 0.25f. example: [] syntax: content: EaxReverbEchoTime = 15 @@ -2036,12 +1788,8 @@ items: fullName: OpenTK.Audio.OpenAL.EffectFloat.EaxReverbEchoDepth type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectFloat.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: EaxReverbEchoDepth - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectFloat.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\EffectFloat.cs startLine: 408 assemblies: - OpenTK.Audio.OpenAL @@ -2049,7 +1797,7 @@ items: summary: >- Echo Depth introduces a cyclic echo in the reverberation decay, which will be noticeable with transient or - percussive sounds. Range [0.0f .. 1.0f] Default: 0.0f + percussive sounds. Range [0.0f .. 1.0f] Default: 0.0f. example: [] syntax: content: EaxReverbEchoDepth = 16 @@ -2067,12 +1815,8 @@ items: fullName: OpenTK.Audio.OpenAL.EffectFloat.EaxReverbModulationTime type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectFloat.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: EaxReverbModulationTime - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectFloat.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\EffectFloat.cs startLine: 414 assemblies: - OpenTK.Audio.OpenAL @@ -2080,7 +1824,7 @@ items: summary: >- Modulation Time controls the speed of the rate of periodic changes in pitch (vibrato). Range [0.04f .. 4.0f] - Default: 0.25f + Default: 0.25f. example: [] syntax: content: EaxReverbModulationTime = 17 @@ -2098,12 +1842,8 @@ items: fullName: OpenTK.Audio.OpenAL.EffectFloat.EaxReverbModulationDepth type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectFloat.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: EaxReverbModulationDepth - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectFloat.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\EffectFloat.cs startLine: 421 assemblies: - OpenTK.Audio.OpenAL @@ -2113,7 +1853,7 @@ items: the perceived effect by reducing the mixing of overlapping reflections in the reverberation decay. Range [0.0f .. - 1.0f] Default: 0.0f + 1.0f] Default: 0.0f. example: [] syntax: content: EaxReverbModulationDepth = 18 @@ -2131,12 +1871,8 @@ items: fullName: OpenTK.Audio.OpenAL.EffectFloat.EaxReverbAirAbsorptionGainHF type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectFloat.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: EaxReverbAirAbsorptionGainHF - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectFloat.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\EffectFloat.cs startLine: 427 assemblies: - OpenTK.Audio.OpenAL @@ -2144,7 +1880,7 @@ items: summary: >- The Air Absorption Gain HF property controls the distance-dependent attenuation at high frequencies caused by - the propagation medium. It applies to reflected sound only. Range [0.892f .. 1.0f] Default: 0.994f + the propagation medium. It applies to reflected sound only. Range [0.892f .. 1.0f] Default: 0.994f. example: [] syntax: content: EaxReverbAirAbsorptionGainHF = 19 @@ -2162,12 +1898,8 @@ items: fullName: OpenTK.Audio.OpenAL.EffectFloat.EaxReverbHFReference type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectFloat.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: EaxReverbHFReference - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectFloat.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\EffectFloat.cs startLine: 433 assemblies: - OpenTK.Audio.OpenAL @@ -2175,7 +1907,7 @@ items: summary: >- The property HF reference determines the frequency at which the high-frequency effects created by Reverb - properties are measured. Unit: Hz Range [1000.0f .. 20000.0f] Default: 5000.0f + properties are measured. Unit: Hz Range [1000.0f .. 20000.0f] Default: 5000.0f. example: [] syntax: content: EaxReverbHFReference = 20 @@ -2193,12 +1925,8 @@ items: fullName: OpenTK.Audio.OpenAL.EffectFloat.EaxReverbLFReference type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectFloat.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: EaxReverbLFReference - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectFloat.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\EffectFloat.cs startLine: 439 assemblies: - OpenTK.Audio.OpenAL @@ -2206,7 +1934,7 @@ items: summary: >- The property LF reference determines the frequency at which the low-frequency effects created by Reverb - properties are measured. Unit: Hz Range [20.0f .. 1000.0f] Default: 250.0f + properties are measured. Unit: Hz Range [20.0f .. 1000.0f] Default: 250.0f. example: [] syntax: content: EaxReverbLFReference = 21 @@ -2224,12 +1952,8 @@ items: fullName: OpenTK.Audio.OpenAL.EffectFloat.EaxReverbRoomRolloffFactor type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectFloat.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: EaxReverbRoomRolloffFactor - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectFloat.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\EffectFloat.cs startLine: 446 assemblies: - OpenTK.Audio.OpenAL @@ -2239,13 +1963,105 @@ items: both reflections and reverberation) according to source-listener distance. It's defined the same way as OpenAL - Rolloff Factor, but operates on reverb sound instead of direct-path sound. Range [0.0f .. 10.0f] Default: 0.0f + Rolloff Factor, but operates on reverb sound instead of direct-path sound. Range [0.0f .. 10.0f] Default: 0.0f. example: [] syntax: content: EaxReverbRoomRolloffFactor = 22 return: type: OpenTK.Audio.OpenAL.EffectFloat references: +- uid: OpenTK.Audio.OpenAL.ALC.EFX.Effect(System.Int32,OpenTK.Audio.OpenAL.EffectFloat,System.Single) + commentId: M:OpenTK.Audio.OpenAL.ALC.EFX.Effect(System.Int32,OpenTK.Audio.OpenAL.EffectFloat,System.Single) + isExternal: true + href: OpenTK.Audio.OpenAL.ALC.EFX.html#OpenTK_Audio_OpenAL_ALC_EFX_Effect_System_Int32_OpenTK_Audio_OpenAL_EffectFloat_System_Single_ + name: Effect(int, EffectFloat, float) + nameWithType: ALC.EFX.Effect(int, EffectFloat, float) + fullName: OpenTK.Audio.OpenAL.ALC.EFX.Effect(int, OpenTK.Audio.OpenAL.EffectFloat, float) + nameWithType.vb: ALC.EFX.Effect(Integer, EffectFloat, Single) + fullName.vb: OpenTK.Audio.OpenAL.ALC.EFX.Effect(Integer, OpenTK.Audio.OpenAL.EffectFloat, Single) + name.vb: Effect(Integer, EffectFloat, Single) + spec.csharp: + - uid: OpenTK.Audio.OpenAL.ALC.EFX.Effect(System.Int32,OpenTK.Audio.OpenAL.EffectFloat,System.Single) + name: Effect + href: OpenTK.Audio.OpenAL.ALC.EFX.html#OpenTK_Audio_OpenAL_ALC_EFX_Effect_System_Int32_OpenTK_Audio_OpenAL_EffectFloat_System_Single_ + - name: ( + - uid: System.Int32 + name: int + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ',' + - name: " " + - uid: OpenTK.Audio.OpenAL.EffectFloat + name: EffectFloat + href: OpenTK.Audio.OpenAL.EffectFloat.html + - name: ',' + - name: " " + - uid: System.Single + name: float + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.single + - name: ) + spec.vb: + - uid: OpenTK.Audio.OpenAL.ALC.EFX.Effect(System.Int32,OpenTK.Audio.OpenAL.EffectFloat,System.Single) + name: Effect + href: OpenTK.Audio.OpenAL.ALC.EFX.html#OpenTK_Audio_OpenAL_ALC_EFX_Effect_System_Int32_OpenTK_Audio_OpenAL_EffectFloat_System_Single_ + - name: ( + - uid: System.Int32 + name: Integer + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ',' + - name: " " + - uid: OpenTK.Audio.OpenAL.EffectFloat + name: EffectFloat + href: OpenTK.Audio.OpenAL.EffectFloat.html + - name: ',' + - name: " " + - uid: System.Single + name: Single + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.single + - name: ) +- uid: OpenTK.Audio.OpenAL.ALC.EFX.GetEffect(System.Int32,OpenTK.Audio.OpenAL.EffectFloat) + commentId: M:OpenTK.Audio.OpenAL.ALC.EFX.GetEffect(System.Int32,OpenTK.Audio.OpenAL.EffectFloat) + isExternal: true + href: OpenTK.Audio.OpenAL.ALC.EFX.html#OpenTK_Audio_OpenAL_ALC_EFX_GetEffect_System_Int32_OpenTK_Audio_OpenAL_EffectFloat_ + name: GetEffect(int, EffectFloat) + nameWithType: ALC.EFX.GetEffect(int, EffectFloat) + fullName: OpenTK.Audio.OpenAL.ALC.EFX.GetEffect(int, OpenTK.Audio.OpenAL.EffectFloat) + nameWithType.vb: ALC.EFX.GetEffect(Integer, EffectFloat) + fullName.vb: OpenTK.Audio.OpenAL.ALC.EFX.GetEffect(Integer, OpenTK.Audio.OpenAL.EffectFloat) + name.vb: GetEffect(Integer, EffectFloat) + spec.csharp: + - uid: OpenTK.Audio.OpenAL.ALC.EFX.GetEffect(System.Int32,OpenTK.Audio.OpenAL.EffectFloat) + name: GetEffect + href: OpenTK.Audio.OpenAL.ALC.EFX.html#OpenTK_Audio_OpenAL_ALC_EFX_GetEffect_System_Int32_OpenTK_Audio_OpenAL_EffectFloat_ + - name: ( + - uid: System.Int32 + name: int + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ',' + - name: " " + - uid: OpenTK.Audio.OpenAL.EffectFloat + name: EffectFloat + href: OpenTK.Audio.OpenAL.EffectFloat.html + - name: ) + spec.vb: + - uid: OpenTK.Audio.OpenAL.ALC.EFX.GetEffect(System.Int32,OpenTK.Audio.OpenAL.EffectFloat) + name: GetEffect + href: OpenTK.Audio.OpenAL.ALC.EFX.html#OpenTK_Audio_OpenAL_ALC_EFX_GetEffect_System_Int32_OpenTK_Audio_OpenAL_EffectFloat_ + - name: ( + - uid: System.Int32 + name: Integer + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ',' + - name: " " + - uid: OpenTK.Audio.OpenAL.EffectFloat + name: EffectFloat + href: OpenTK.Audio.OpenAL.EffectFloat.html + - name: ) - uid: OpenTK.Audio.OpenAL commentId: N:OpenTK.Audio.OpenAL href: OpenTK.html diff --git a/api/OpenTK.Audio.OpenAL.EffectInteger.yml b/api/OpenTK.Audio.OpenAL.EffectInteger.yml index 04087bbf..d0af108b 100644 --- a/api/OpenTK.Audio.OpenAL.EffectInteger.yml +++ b/api/OpenTK.Audio.OpenAL.EffectInteger.yml @@ -31,17 +31,13 @@ items: fullName: OpenTK.Audio.OpenAL.EffectInteger type: Enum source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectInteger.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: EffectInteger - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectInteger.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\EffectInteger.cs startLine: 14 assemblies: - OpenTK.Audio.OpenAL namespace: OpenTK.Audio.OpenAL - summary: A list of valid Int32 Effect/GetEffect parameters. + summary: A list of valid Int32 / parameters. example: [] syntax: content: public enum EffectInteger @@ -58,12 +54,8 @@ items: fullName: OpenTK.Audio.OpenAL.EffectInteger.ChorusWaveform type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectInteger.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ChorusWaveform - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectInteger.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\EffectInteger.cs startLine: 20 assemblies: - OpenTK.Audio.OpenAL @@ -71,7 +63,7 @@ items: summary: >- This property sets the waveform shape of the low-frequency oscillator that controls the delay time of the - delayed signals. Unit: (0) Sinusoid, (1) Triangle Range [0 .. 1] Default: 1 + delayed signals. Unit: (0) Sinusoid, (1) Triangle Range [0 .. 1] Default: 1. example: [] syntax: content: ChorusWaveform = 1 @@ -89,12 +81,8 @@ items: fullName: OpenTK.Audio.OpenAL.EffectInteger.ChorusPhase type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectInteger.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ChorusPhase - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectInteger.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\EffectInteger.cs startLine: 26 assemblies: - OpenTK.Audio.OpenAL @@ -102,7 +90,7 @@ items: summary: >- This property controls the phase difference between the left and right low-frequency oscillators. At zero - degrees the two low-frequency oscillators are synchronized. Unit: Degrees Range [-180 .. 180] Default: 90 + degrees the two low-frequency oscillators are synchronized. Unit: Degrees Range [-180 .. 180] Default: 90. example: [] syntax: content: ChorusPhase = 2 @@ -120,12 +108,8 @@ items: fullName: OpenTK.Audio.OpenAL.EffectInteger.FlangerWaveform type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectInteger.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: FlangerWaveform - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectInteger.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\EffectInteger.cs startLine: 32 assemblies: - OpenTK.Audio.OpenAL @@ -133,7 +117,7 @@ items: summary: >- Selects the shape of the low-frequency oscillator waveform that controls the amount of the delay of the - sampled signal. Unit: (0) Sinusoid, (1) Triangle Range [0 .. 1] Default: 1 + sampled signal. Unit: (0) Sinusoid, (1) Triangle Range [0 .. 1] Default: 1. example: [] syntax: content: FlangerWaveform = 1 @@ -151,12 +135,8 @@ items: fullName: OpenTK.Audio.OpenAL.EffectInteger.FlangerPhase type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectInteger.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: FlangerPhase - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectInteger.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\EffectInteger.cs startLine: 38 assemblies: - OpenTK.Audio.OpenAL @@ -164,7 +144,7 @@ items: summary: >- This changes the phase difference between the left and right low-frequency oscillator's. At zero degrees the - two low-frequency oscillators are synchronized. Range [-180 .. +180] Default: 0 + two low-frequency oscillators are synchronized. Range [-180 .. +180] Default: 0. example: [] syntax: content: FlangerPhase = 2 @@ -182,12 +162,8 @@ items: fullName: OpenTK.Audio.OpenAL.EffectInteger.FrequencyShifterLeftDirection type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectInteger.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: FrequencyShifterLeftDirection - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectInteger.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\EffectInteger.cs startLine: 44 assemblies: - OpenTK.Audio.OpenAL @@ -195,7 +171,7 @@ items: summary: >- These select which internal signals are added together to produce the output. Unit: (0) Down, (1) Up, (2) Off - Range [0 .. 2] Default: 0 + Range [0 .. 2] Default: 0. example: [] syntax: content: FrequencyShifterLeftDirection = 2 @@ -213,12 +189,8 @@ items: fullName: OpenTK.Audio.OpenAL.EffectInteger.FrequencyShifterRightDirection type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectInteger.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: FrequencyShifterRightDirection - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectInteger.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\EffectInteger.cs startLine: 50 assemblies: - OpenTK.Audio.OpenAL @@ -226,7 +198,7 @@ items: summary: >- These select which internal signals are added together to produce the output. Unit: (0) Down, (1) Up, (2) Off - Range [0 .. 2] Default: 0 + Range [0 .. 2] Default: 0. example: [] syntax: content: FrequencyShifterRightDirection = 3 @@ -244,12 +216,8 @@ items: fullName: OpenTK.Audio.OpenAL.EffectInteger.VocalMorpherPhonemeA type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectInteger.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: VocalMorpherPhonemeA - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectInteger.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\EffectInteger.cs startLine: 58 assemblies: - OpenTK.Audio.OpenAL @@ -261,7 +229,7 @@ items: effects, vocal-like wind effects, etc. Unit: Use enum EfxFormantFilterSettings Range [0 .. 29] Default: 0, "Phoneme - A" + A". example: [] syntax: content: VocalMorpherPhonemeA = 1 @@ -279,12 +247,8 @@ items: fullName: OpenTK.Audio.OpenAL.EffectInteger.VocalMorpherPhonemeACoarseTuning type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectInteger.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: VocalMorpherPhonemeACoarseTuning - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectInteger.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\EffectInteger.cs startLine: 64 assemblies: - OpenTK.Audio.OpenAL @@ -292,7 +256,7 @@ items: summary: >- This is used to adjust the pitch of phoneme filter A in 1-semitone increments. Unit: Semitones Range [-24 .. - +24] Default: 0 + +24] Default: 0. example: [] syntax: content: VocalMorpherPhonemeACoarseTuning = 2 @@ -310,12 +274,8 @@ items: fullName: OpenTK.Audio.OpenAL.EffectInteger.VocalMorpherPhonemeB type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectInteger.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: VocalMorpherPhonemeB - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectInteger.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\EffectInteger.cs startLine: 72 assemblies: - OpenTK.Audio.OpenAL @@ -327,7 +287,7 @@ items: effects, vocal-like wind effects, etc. Unit: Use enum EfxFormantFilterSettings Range [0 .. 29] Default: 10, - "Phoneme ER" + "Phoneme ER". example: [] syntax: content: VocalMorpherPhonemeB = 3 @@ -345,12 +305,8 @@ items: fullName: OpenTK.Audio.OpenAL.EffectInteger.VocalMorpherPhonemeBCoarseTuning type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectInteger.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: VocalMorpherPhonemeBCoarseTuning - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectInteger.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\EffectInteger.cs startLine: 78 assemblies: - OpenTK.Audio.OpenAL @@ -358,7 +314,7 @@ items: summary: >- This is used to adjust the pitch of phoneme filter B in 1-semitone increments. Unit: Semitones Range [-24 .. - +24] Default: 0 + +24] Default: 0. example: [] syntax: content: VocalMorpherPhonemeBCoarseTuning = 4 @@ -376,12 +332,8 @@ items: fullName: OpenTK.Audio.OpenAL.EffectInteger.VocalMorpherWaveform type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectInteger.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: VocalMorpherWaveform - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectInteger.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\EffectInteger.cs startLine: 84 assemblies: - OpenTK.Audio.OpenAL @@ -389,7 +341,7 @@ items: summary: >- This controls the shape of the low-frequency oscillator used to morph between the two phoneme filters. Unit: - (0) Sinusoid, (1) Triangle, (2) Sawtooth Range [0 .. 2] Default: 0 + (0) Sinusoid, (1) Triangle, (2) Sawtooth Range [0 .. 2] Default: 0. example: [] syntax: content: VocalMorpherWaveform = 5 @@ -407,12 +359,8 @@ items: fullName: OpenTK.Audio.OpenAL.EffectInteger.PitchShifterCoarseTune type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectInteger.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: PitchShifterCoarseTune - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectInteger.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\EffectInteger.cs startLine: 90 assemblies: - OpenTK.Audio.OpenAL @@ -420,7 +368,7 @@ items: summary: >- This sets the number of semitones by which the pitch is shifted. There are 12 semitones per octave. Unit: - Semitones Range [-12 .. +12] Default: +12 + Semitones Range [-12 .. +12] Default: +12. example: [] syntax: content: PitchShifterCoarseTune = 1 @@ -438,12 +386,8 @@ items: fullName: OpenTK.Audio.OpenAL.EffectInteger.PitchShifterFineTune type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectInteger.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: PitchShifterFineTune - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectInteger.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\EffectInteger.cs startLine: 96 assemblies: - OpenTK.Audio.OpenAL @@ -451,7 +395,7 @@ items: summary: >- This sets the number of cents between Semitones a pitch is shifted. A Cent is 1/100th of a Semitone. Unit: - Cents Range [-50 .. +50] Default: 0 + Cents Range [-50 .. +50] Default: 0. example: [] syntax: content: PitchShifterFineTune = 2 @@ -469,12 +413,8 @@ items: fullName: OpenTK.Audio.OpenAL.EffectInteger.RingModulatorWaveform type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectInteger.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: RingModulatorWaveform - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectInteger.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\EffectInteger.cs startLine: 102 assemblies: - OpenTK.Audio.OpenAL @@ -482,7 +422,7 @@ items: summary: >- This controls which waveform is used as the carrier signal. Traditional ring modulator and tremolo effects - generally use a sinusoidal carrier. Unit: (0) Sinusoid, (1) Sawtooth, (2) Square Range [0 .. 2] Default: 0 + generally use a sinusoidal carrier. Unit: (0) Sinusoid, (1) Sawtooth, (2) Square Range [0 .. 2] Default: 0. example: [] syntax: content: RingModulatorWaveform = 3 @@ -500,12 +440,8 @@ items: fullName: OpenTK.Audio.OpenAL.EffectInteger.CompressorOnoff type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectInteger.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CompressorOnoff - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectInteger.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\EffectInteger.cs startLine: 108 assemblies: - OpenTK.Audio.OpenAL @@ -513,7 +449,7 @@ items: summary: >- Enabling this will result in audio exhibiting smaller variation in intensity between the loudest and quietest - portions. Unit: (0) Off, (1) On Range [0 .. 1] Default: 1 + portions. Unit: (0) Off, (1) On Range [0 .. 1] Default: 1. example: [] syntax: content: CompressorOnoff = 1 @@ -531,12 +467,8 @@ items: fullName: OpenTK.Audio.OpenAL.EffectInteger.ReverbDecayHFLimit type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectInteger.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ReverbDecayHFLimit - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectInteger.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\EffectInteger.cs startLine: 114 assemblies: - OpenTK.Audio.OpenAL @@ -544,7 +476,7 @@ items: summary: >- When this flag is set, the high-frequency decay time automatically stays below a limit value that's derived - from the setting of the property Air Absorption HF. Unit: (0) False, (1) True Range [False, True] Default: True + from the setting of the property Air Absorption HF. Unit: (0) False, (1) True Range [False, True] Default: True. example: [] syntax: content: ReverbDecayHFLimit = 13 @@ -562,12 +494,8 @@ items: fullName: OpenTK.Audio.OpenAL.EffectInteger.EaxReverbDecayHFLimit type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectInteger.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: EaxReverbDecayHFLimit - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectInteger.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\EffectInteger.cs startLine: 120 assemblies: - OpenTK.Audio.OpenAL @@ -575,7 +503,7 @@ items: summary: >- When this flag is set, the high-frequency decay time automatically stays below a limit value that's derived - from the setting of the property AirAbsorptionGainHF. Unit: (0) False, (1) True Range [False, True] Default: True + from the setting of the property AirAbsorptionGainHF. Unit: (0) False, (1) True Range [False, True] Default: True. example: [] syntax: content: EaxReverbDecayHFLimit = 23 @@ -593,12 +521,8 @@ items: fullName: OpenTK.Audio.OpenAL.EffectInteger.EffectType type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectInteger.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: EffectType - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectInteger.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\EffectInteger.cs startLine: 125 assemblies: - OpenTK.Audio.OpenAL @@ -610,6 +534,98 @@ items: return: type: OpenTK.Audio.OpenAL.EffectInteger references: +- uid: OpenTK.Audio.OpenAL.ALC.EFX.Effect(System.Int32,OpenTK.Audio.OpenAL.EffectInteger,System.Int32) + commentId: M:OpenTK.Audio.OpenAL.ALC.EFX.Effect(System.Int32,OpenTK.Audio.OpenAL.EffectInteger,System.Int32) + isExternal: true + href: OpenTK.Audio.OpenAL.ALC.EFX.html#OpenTK_Audio_OpenAL_ALC_EFX_Effect_System_Int32_OpenTK_Audio_OpenAL_EffectInteger_System_Int32_ + name: Effect(int, EffectInteger, int) + nameWithType: ALC.EFX.Effect(int, EffectInteger, int) + fullName: OpenTK.Audio.OpenAL.ALC.EFX.Effect(int, OpenTK.Audio.OpenAL.EffectInteger, int) + nameWithType.vb: ALC.EFX.Effect(Integer, EffectInteger, Integer) + fullName.vb: OpenTK.Audio.OpenAL.ALC.EFX.Effect(Integer, OpenTK.Audio.OpenAL.EffectInteger, Integer) + name.vb: Effect(Integer, EffectInteger, Integer) + spec.csharp: + - uid: OpenTK.Audio.OpenAL.ALC.EFX.Effect(System.Int32,OpenTK.Audio.OpenAL.EffectInteger,System.Int32) + name: Effect + href: OpenTK.Audio.OpenAL.ALC.EFX.html#OpenTK_Audio_OpenAL_ALC_EFX_Effect_System_Int32_OpenTK_Audio_OpenAL_EffectInteger_System_Int32_ + - name: ( + - uid: System.Int32 + name: int + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ',' + - name: " " + - uid: OpenTK.Audio.OpenAL.EffectInteger + name: EffectInteger + href: OpenTK.Audio.OpenAL.EffectInteger.html + - name: ',' + - name: " " + - uid: System.Int32 + name: int + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ) + spec.vb: + - uid: OpenTK.Audio.OpenAL.ALC.EFX.Effect(System.Int32,OpenTK.Audio.OpenAL.EffectInteger,System.Int32) + name: Effect + href: OpenTK.Audio.OpenAL.ALC.EFX.html#OpenTK_Audio_OpenAL_ALC_EFX_Effect_System_Int32_OpenTK_Audio_OpenAL_EffectInteger_System_Int32_ + - name: ( + - uid: System.Int32 + name: Integer + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ',' + - name: " " + - uid: OpenTK.Audio.OpenAL.EffectInteger + name: EffectInteger + href: OpenTK.Audio.OpenAL.EffectInteger.html + - name: ',' + - name: " " + - uid: System.Int32 + name: Integer + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ) +- uid: OpenTK.Audio.OpenAL.ALC.EFX.GetEffect(System.Int32,OpenTK.Audio.OpenAL.EffectInteger) + commentId: M:OpenTK.Audio.OpenAL.ALC.EFX.GetEffect(System.Int32,OpenTK.Audio.OpenAL.EffectInteger) + isExternal: true + href: OpenTK.Audio.OpenAL.ALC.EFX.html#OpenTK_Audio_OpenAL_ALC_EFX_GetEffect_System_Int32_OpenTK_Audio_OpenAL_EffectInteger_ + name: GetEffect(int, EffectInteger) + nameWithType: ALC.EFX.GetEffect(int, EffectInteger) + fullName: OpenTK.Audio.OpenAL.ALC.EFX.GetEffect(int, OpenTK.Audio.OpenAL.EffectInteger) + nameWithType.vb: ALC.EFX.GetEffect(Integer, EffectInteger) + fullName.vb: OpenTK.Audio.OpenAL.ALC.EFX.GetEffect(Integer, OpenTK.Audio.OpenAL.EffectInteger) + name.vb: GetEffect(Integer, EffectInteger) + spec.csharp: + - uid: OpenTK.Audio.OpenAL.ALC.EFX.GetEffect(System.Int32,OpenTK.Audio.OpenAL.EffectInteger) + name: GetEffect + href: OpenTK.Audio.OpenAL.ALC.EFX.html#OpenTK_Audio_OpenAL_ALC_EFX_GetEffect_System_Int32_OpenTK_Audio_OpenAL_EffectInteger_ + - name: ( + - uid: System.Int32 + name: int + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ',' + - name: " " + - uid: OpenTK.Audio.OpenAL.EffectInteger + name: EffectInteger + href: OpenTK.Audio.OpenAL.EffectInteger.html + - name: ) + spec.vb: + - uid: OpenTK.Audio.OpenAL.ALC.EFX.GetEffect(System.Int32,OpenTK.Audio.OpenAL.EffectInteger) + name: GetEffect + href: OpenTK.Audio.OpenAL.ALC.EFX.html#OpenTK_Audio_OpenAL_ALC_EFX_GetEffect_System_Int32_OpenTK_Audio_OpenAL_EffectInteger_ + - name: ( + - uid: System.Int32 + name: Integer + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ',' + - name: " " + - uid: OpenTK.Audio.OpenAL.EffectInteger + name: EffectInteger + href: OpenTK.Audio.OpenAL.EffectInteger.html + - name: ) - uid: OpenTK.Audio.OpenAL commentId: N:OpenTK.Audio.OpenAL href: OpenTK.html diff --git a/api/OpenTK.Audio.OpenAL.EffectSlotFloat.yml b/api/OpenTK.Audio.OpenAL.EffectSlotFloat.yml index aa3e2f5f..facfc0d2 100644 --- a/api/OpenTK.Audio.OpenAL.EffectSlotFloat.yml +++ b/api/OpenTK.Audio.OpenAL.EffectSlotFloat.yml @@ -14,17 +14,13 @@ items: fullName: OpenTK.Audio.OpenAL.EffectSlotFloat type: Enum source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectSlotFloat.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: EffectSlotFloat - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectSlotFloat.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\EffectSlotFloat.cs startLine: 14 assemblies: - OpenTK.Audio.OpenAL namespace: OpenTK.Audio.OpenAL - summary: A list of valid AuxiliaryEffectSlot/GetAuxiliaryEffectSlot parameters. + summary: A list of valid / parameters. example: [] syntax: content: public enum EffectSlotFloat @@ -41,12 +37,8 @@ items: fullName: OpenTK.Audio.OpenAL.EffectSlotFloat.Gain type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectSlotFloat.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Gain - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectSlotFloat.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\EffectSlotFloat.cs startLine: 23 assemblies: - OpenTK.Audio.OpenAL @@ -77,6 +69,98 @@ references: nameWithType.vb: Single fullName.vb: Single name.vb: Single +- uid: OpenTK.Audio.OpenAL.ALC.EFX.AuxiliaryEffectSlot(System.Int32,OpenTK.Audio.OpenAL.EffectSlotFloat,System.Single) + commentId: M:OpenTK.Audio.OpenAL.ALC.EFX.AuxiliaryEffectSlot(System.Int32,OpenTK.Audio.OpenAL.EffectSlotFloat,System.Single) + isExternal: true + href: OpenTK.Audio.OpenAL.ALC.EFX.html#OpenTK_Audio_OpenAL_ALC_EFX_AuxiliaryEffectSlot_System_Int32_OpenTK_Audio_OpenAL_EffectSlotFloat_System_Single_ + name: AuxiliaryEffectSlot(int, EffectSlotFloat, float) + nameWithType: ALC.EFX.AuxiliaryEffectSlot(int, EffectSlotFloat, float) + fullName: OpenTK.Audio.OpenAL.ALC.EFX.AuxiliaryEffectSlot(int, OpenTK.Audio.OpenAL.EffectSlotFloat, float) + nameWithType.vb: ALC.EFX.AuxiliaryEffectSlot(Integer, EffectSlotFloat, Single) + fullName.vb: OpenTK.Audio.OpenAL.ALC.EFX.AuxiliaryEffectSlot(Integer, OpenTK.Audio.OpenAL.EffectSlotFloat, Single) + name.vb: AuxiliaryEffectSlot(Integer, EffectSlotFloat, Single) + spec.csharp: + - uid: OpenTK.Audio.OpenAL.ALC.EFX.AuxiliaryEffectSlot(System.Int32,OpenTK.Audio.OpenAL.EffectSlotFloat,System.Single) + name: AuxiliaryEffectSlot + href: OpenTK.Audio.OpenAL.ALC.EFX.html#OpenTK_Audio_OpenAL_ALC_EFX_AuxiliaryEffectSlot_System_Int32_OpenTK_Audio_OpenAL_EffectSlotFloat_System_Single_ + - name: ( + - uid: System.Int32 + name: int + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ',' + - name: " " + - uid: OpenTK.Audio.OpenAL.EffectSlotFloat + name: EffectSlotFloat + href: OpenTK.Audio.OpenAL.EffectSlotFloat.html + - name: ',' + - name: " " + - uid: System.Single + name: float + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.single + - name: ) + spec.vb: + - uid: OpenTK.Audio.OpenAL.ALC.EFX.AuxiliaryEffectSlot(System.Int32,OpenTK.Audio.OpenAL.EffectSlotFloat,System.Single) + name: AuxiliaryEffectSlot + href: OpenTK.Audio.OpenAL.ALC.EFX.html#OpenTK_Audio_OpenAL_ALC_EFX_AuxiliaryEffectSlot_System_Int32_OpenTK_Audio_OpenAL_EffectSlotFloat_System_Single_ + - name: ( + - uid: System.Int32 + name: Integer + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ',' + - name: " " + - uid: OpenTK.Audio.OpenAL.EffectSlotFloat + name: EffectSlotFloat + href: OpenTK.Audio.OpenAL.EffectSlotFloat.html + - name: ',' + - name: " " + - uid: System.Single + name: Single + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.single + - name: ) +- uid: OpenTK.Audio.OpenAL.ALC.EFX.GetAuxiliaryEffectSlot(System.Int32,OpenTK.Audio.OpenAL.EffectSlotFloat) + commentId: M:OpenTK.Audio.OpenAL.ALC.EFX.GetAuxiliaryEffectSlot(System.Int32,OpenTK.Audio.OpenAL.EffectSlotFloat) + isExternal: true + href: OpenTK.Audio.OpenAL.ALC.EFX.html#OpenTK_Audio_OpenAL_ALC_EFX_GetAuxiliaryEffectSlot_System_Int32_OpenTK_Audio_OpenAL_EffectSlotFloat_ + name: GetAuxiliaryEffectSlot(int, EffectSlotFloat) + nameWithType: ALC.EFX.GetAuxiliaryEffectSlot(int, EffectSlotFloat) + fullName: OpenTK.Audio.OpenAL.ALC.EFX.GetAuxiliaryEffectSlot(int, OpenTK.Audio.OpenAL.EffectSlotFloat) + nameWithType.vb: ALC.EFX.GetAuxiliaryEffectSlot(Integer, EffectSlotFloat) + fullName.vb: OpenTK.Audio.OpenAL.ALC.EFX.GetAuxiliaryEffectSlot(Integer, OpenTK.Audio.OpenAL.EffectSlotFloat) + name.vb: GetAuxiliaryEffectSlot(Integer, EffectSlotFloat) + spec.csharp: + - uid: OpenTK.Audio.OpenAL.ALC.EFX.GetAuxiliaryEffectSlot(System.Int32,OpenTK.Audio.OpenAL.EffectSlotFloat) + name: GetAuxiliaryEffectSlot + href: OpenTK.Audio.OpenAL.ALC.EFX.html#OpenTK_Audio_OpenAL_ALC_EFX_GetAuxiliaryEffectSlot_System_Int32_OpenTK_Audio_OpenAL_EffectSlotFloat_ + - name: ( + - uid: System.Int32 + name: int + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ',' + - name: " " + - uid: OpenTK.Audio.OpenAL.EffectSlotFloat + name: EffectSlotFloat + href: OpenTK.Audio.OpenAL.EffectSlotFloat.html + - name: ) + spec.vb: + - uid: OpenTK.Audio.OpenAL.ALC.EFX.GetAuxiliaryEffectSlot(System.Int32,OpenTK.Audio.OpenAL.EffectSlotFloat) + name: GetAuxiliaryEffectSlot + href: OpenTK.Audio.OpenAL.ALC.EFX.html#OpenTK_Audio_OpenAL_ALC_EFX_GetAuxiliaryEffectSlot_System_Int32_OpenTK_Audio_OpenAL_EffectSlotFloat_ + - name: ( + - uid: System.Int32 + name: Integer + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ',' + - name: " " + - uid: OpenTK.Audio.OpenAL.EffectSlotFloat + name: EffectSlotFloat + href: OpenTK.Audio.OpenAL.EffectSlotFloat.html + - name: ) - uid: OpenTK.Audio.OpenAL commentId: N:OpenTK.Audio.OpenAL href: OpenTK.html diff --git a/api/OpenTK.Audio.OpenAL.EffectSlotInteger.yml b/api/OpenTK.Audio.OpenAL.EffectSlotInteger.yml index 013f447e..2ecc266a 100644 --- a/api/OpenTK.Audio.OpenAL.EffectSlotInteger.yml +++ b/api/OpenTK.Audio.OpenAL.EffectSlotInteger.yml @@ -15,17 +15,13 @@ items: fullName: OpenTK.Audio.OpenAL.EffectSlotInteger type: Enum source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectSlotInteger.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: EffectSlotInteger - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectSlotInteger.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\EffectSlotInteger.cs startLine: 14 assemblies: - OpenTK.Audio.OpenAL namespace: OpenTK.Audio.OpenAL - summary: A list of valid AuxiliaryEffectSlot/GetAuxiliaryEffectSlot parameters. + summary: A list of valid / parameters. example: [] syntax: content: public enum EffectSlotInteger @@ -42,12 +38,8 @@ items: fullName: OpenTK.Audio.OpenAL.EffectSlotInteger.Effect type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectSlotInteger.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Effect - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectSlotInteger.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\EffectSlotInteger.cs startLine: 22 assemblies: - OpenTK.Audio.OpenAL @@ -77,12 +69,8 @@ items: fullName: OpenTK.Audio.OpenAL.EffectSlotInteger.AuxiliarySendAuto type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectSlotInteger.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: AuxiliarySendAuto - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectSlotInteger.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\EffectSlotInteger.cs startLine: 29 assemblies: - OpenTK.Audio.OpenAL @@ -110,6 +98,98 @@ references: nameWithType.vb: Integer fullName.vb: Integer name.vb: Integer +- uid: OpenTK.Audio.OpenAL.ALC.EFX.AuxiliaryEffectSlot(System.Int32,OpenTK.Audio.OpenAL.EffectSlotInteger,System.Int32) + commentId: M:OpenTK.Audio.OpenAL.ALC.EFX.AuxiliaryEffectSlot(System.Int32,OpenTK.Audio.OpenAL.EffectSlotInteger,System.Int32) + isExternal: true + href: OpenTK.Audio.OpenAL.ALC.EFX.html#OpenTK_Audio_OpenAL_ALC_EFX_AuxiliaryEffectSlot_System_Int32_OpenTK_Audio_OpenAL_EffectSlotInteger_System_Int32_ + name: AuxiliaryEffectSlot(int, EffectSlotInteger, int) + nameWithType: ALC.EFX.AuxiliaryEffectSlot(int, EffectSlotInteger, int) + fullName: OpenTK.Audio.OpenAL.ALC.EFX.AuxiliaryEffectSlot(int, OpenTK.Audio.OpenAL.EffectSlotInteger, int) + nameWithType.vb: ALC.EFX.AuxiliaryEffectSlot(Integer, EffectSlotInteger, Integer) + fullName.vb: OpenTK.Audio.OpenAL.ALC.EFX.AuxiliaryEffectSlot(Integer, OpenTK.Audio.OpenAL.EffectSlotInteger, Integer) + name.vb: AuxiliaryEffectSlot(Integer, EffectSlotInteger, Integer) + spec.csharp: + - uid: OpenTK.Audio.OpenAL.ALC.EFX.AuxiliaryEffectSlot(System.Int32,OpenTK.Audio.OpenAL.EffectSlotInteger,System.Int32) + name: AuxiliaryEffectSlot + href: OpenTK.Audio.OpenAL.ALC.EFX.html#OpenTK_Audio_OpenAL_ALC_EFX_AuxiliaryEffectSlot_System_Int32_OpenTK_Audio_OpenAL_EffectSlotInteger_System_Int32_ + - name: ( + - uid: System.Int32 + name: int + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ',' + - name: " " + - uid: OpenTK.Audio.OpenAL.EffectSlotInteger + name: EffectSlotInteger + href: OpenTK.Audio.OpenAL.EffectSlotInteger.html + - name: ',' + - name: " " + - uid: System.Int32 + name: int + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ) + spec.vb: + - uid: OpenTK.Audio.OpenAL.ALC.EFX.AuxiliaryEffectSlot(System.Int32,OpenTK.Audio.OpenAL.EffectSlotInteger,System.Int32) + name: AuxiliaryEffectSlot + href: OpenTK.Audio.OpenAL.ALC.EFX.html#OpenTK_Audio_OpenAL_ALC_EFX_AuxiliaryEffectSlot_System_Int32_OpenTK_Audio_OpenAL_EffectSlotInteger_System_Int32_ + - name: ( + - uid: System.Int32 + name: Integer + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ',' + - name: " " + - uid: OpenTK.Audio.OpenAL.EffectSlotInteger + name: EffectSlotInteger + href: OpenTK.Audio.OpenAL.EffectSlotInteger.html + - name: ',' + - name: " " + - uid: System.Int32 + name: Integer + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ) +- uid: OpenTK.Audio.OpenAL.ALC.EFX.GetAuxiliaryEffectSlot(System.Int32,OpenTK.Audio.OpenAL.EffectSlotInteger) + commentId: M:OpenTK.Audio.OpenAL.ALC.EFX.GetAuxiliaryEffectSlot(System.Int32,OpenTK.Audio.OpenAL.EffectSlotInteger) + isExternal: true + href: OpenTK.Audio.OpenAL.ALC.EFX.html#OpenTK_Audio_OpenAL_ALC_EFX_GetAuxiliaryEffectSlot_System_Int32_OpenTK_Audio_OpenAL_EffectSlotInteger_ + name: GetAuxiliaryEffectSlot(int, EffectSlotInteger) + nameWithType: ALC.EFX.GetAuxiliaryEffectSlot(int, EffectSlotInteger) + fullName: OpenTK.Audio.OpenAL.ALC.EFX.GetAuxiliaryEffectSlot(int, OpenTK.Audio.OpenAL.EffectSlotInteger) + nameWithType.vb: ALC.EFX.GetAuxiliaryEffectSlot(Integer, EffectSlotInteger) + fullName.vb: OpenTK.Audio.OpenAL.ALC.EFX.GetAuxiliaryEffectSlot(Integer, OpenTK.Audio.OpenAL.EffectSlotInteger) + name.vb: GetAuxiliaryEffectSlot(Integer, EffectSlotInteger) + spec.csharp: + - uid: OpenTK.Audio.OpenAL.ALC.EFX.GetAuxiliaryEffectSlot(System.Int32,OpenTK.Audio.OpenAL.EffectSlotInteger) + name: GetAuxiliaryEffectSlot + href: OpenTK.Audio.OpenAL.ALC.EFX.html#OpenTK_Audio_OpenAL_ALC_EFX_GetAuxiliaryEffectSlot_System_Int32_OpenTK_Audio_OpenAL_EffectSlotInteger_ + - name: ( + - uid: System.Int32 + name: int + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ',' + - name: " " + - uid: OpenTK.Audio.OpenAL.EffectSlotInteger + name: EffectSlotInteger + href: OpenTK.Audio.OpenAL.EffectSlotInteger.html + - name: ) + spec.vb: + - uid: OpenTK.Audio.OpenAL.ALC.EFX.GetAuxiliaryEffectSlot(System.Int32,OpenTK.Audio.OpenAL.EffectSlotInteger) + name: GetAuxiliaryEffectSlot + href: OpenTK.Audio.OpenAL.ALC.EFX.html#OpenTK_Audio_OpenAL_ALC_EFX_GetAuxiliaryEffectSlot_System_Int32_OpenTK_Audio_OpenAL_EffectSlotInteger_ + - name: ( + - uid: System.Int32 + name: Integer + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ',' + - name: " " + - uid: OpenTK.Audio.OpenAL.EffectSlotInteger + name: EffectSlotInteger + href: OpenTK.Audio.OpenAL.EffectSlotInteger.html + - name: ) - uid: OpenTK.Audio.OpenAL commentId: N:OpenTK.Audio.OpenAL href: OpenTK.html diff --git a/api/OpenTK.Audio.OpenAL.EffectType.yml b/api/OpenTK.Audio.OpenAL.EffectType.yml index 6b7a094f..ea8c6513 100644 --- a/api/OpenTK.Audio.OpenAL.EffectType.yml +++ b/api/OpenTK.Audio.OpenAL.EffectType.yml @@ -27,17 +27,13 @@ items: fullName: OpenTK.Audio.OpenAL.EffectType type: Enum source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectType.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: EffectType - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectType.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\EffectType.cs startLine: 14 assemblies: - OpenTK.Audio.OpenAL namespace: OpenTK.Audio.OpenAL - summary: Effect type definitions to be used with EfxEffecti.EffectType. + summary: Effect type definitions to be used with . example: [] syntax: content: public enum EffectType @@ -54,12 +50,8 @@ items: fullName: OpenTK.Audio.OpenAL.EffectType.Null type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectType.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: "Null" - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectType.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\EffectType.cs startLine: 19 assemblies: - OpenTK.Audio.OpenAL @@ -82,12 +74,8 @@ items: fullName: OpenTK.Audio.OpenAL.EffectType.Reverb type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectType.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Reverb - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectType.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\EffectType.cs startLine: 25 assemblies: - OpenTK.Audio.OpenAL @@ -113,12 +101,8 @@ items: fullName: OpenTK.Audio.OpenAL.EffectType.Chorus type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectType.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Chorus - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectType.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\EffectType.cs startLine: 31 assemblies: - OpenTK.Audio.OpenAL @@ -144,12 +128,8 @@ items: fullName: OpenTK.Audio.OpenAL.EffectType.Distortion type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectType.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Distortion - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectType.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\EffectType.cs startLine: 37 assemblies: - OpenTK.Audio.OpenAL @@ -175,12 +155,8 @@ items: fullName: OpenTK.Audio.OpenAL.EffectType.Echo type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectType.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Echo - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectType.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\EffectType.cs startLine: 42 assemblies: - OpenTK.Audio.OpenAL @@ -203,12 +179,8 @@ items: fullName: OpenTK.Audio.OpenAL.EffectType.Flanger type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectType.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Flanger - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectType.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\EffectType.cs startLine: 47 assemblies: - OpenTK.Audio.OpenAL @@ -231,12 +203,8 @@ items: fullName: OpenTK.Audio.OpenAL.EffectType.FrequencyShifter type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectType.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: FrequencyShifter - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectType.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\EffectType.cs startLine: 53 assemblies: - OpenTK.Audio.OpenAL @@ -262,12 +230,8 @@ items: fullName: OpenTK.Audio.OpenAL.EffectType.VocalMorpher type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectType.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: VocalMorpher - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectType.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\EffectType.cs startLine: 59 assemblies: - OpenTK.Audio.OpenAL @@ -293,12 +257,8 @@ items: fullName: OpenTK.Audio.OpenAL.EffectType.PitchShifter type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectType.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: PitchShifter - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectType.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\EffectType.cs startLine: 65 assemblies: - OpenTK.Audio.OpenAL @@ -324,12 +284,8 @@ items: fullName: OpenTK.Audio.OpenAL.EffectType.RingModulator type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectType.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: RingModulator - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectType.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\EffectType.cs startLine: 71 assemblies: - OpenTK.Audio.OpenAL @@ -355,12 +311,8 @@ items: fullName: OpenTK.Audio.OpenAL.EffectType.Autowah type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectType.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Autowah - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectType.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\EffectType.cs startLine: 77 assemblies: - OpenTK.Audio.OpenAL @@ -386,12 +338,8 @@ items: fullName: OpenTK.Audio.OpenAL.EffectType.Compressor type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectType.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Compressor - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectType.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\EffectType.cs startLine: 83 assemblies: - OpenTK.Audio.OpenAL @@ -417,12 +365,8 @@ items: fullName: OpenTK.Audio.OpenAL.EffectType.Equalizer type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectType.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Equalizer - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectType.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\EffectType.cs startLine: 88 assemblies: - OpenTK.Audio.OpenAL @@ -445,12 +389,8 @@ items: fullName: OpenTK.Audio.OpenAL.EffectType.EaxReverb type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectType.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: EaxReverb - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectType.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\EffectType.cs startLine: 94 assemblies: - OpenTK.Audio.OpenAL @@ -465,6 +405,12 @@ items: return: type: OpenTK.Audio.OpenAL.EffectType references: +- uid: OpenTK.Audio.OpenAL.EffectInteger.EffectType + commentId: F:OpenTK.Audio.OpenAL.EffectInteger.EffectType + href: OpenTK.Audio.OpenAL.EffectInteger.html#OpenTK_Audio_OpenAL_EffectInteger_EffectType + name: EffectType + nameWithType: EffectInteger.EffectType + fullName: OpenTK.Audio.OpenAL.EffectInteger.EffectType - uid: OpenTK.Audio.OpenAL commentId: N:OpenTK.Audio.OpenAL href: OpenTK.html diff --git a/api/OpenTK.Audio.OpenAL.EffectVector3.yml b/api/OpenTK.Audio.OpenAL.EffectVector3.yml index a1f0fefc..1bb31a71 100644 --- a/api/OpenTK.Audio.OpenAL.EffectVector3.yml +++ b/api/OpenTK.Audio.OpenAL.EffectVector3.yml @@ -15,17 +15,13 @@ items: fullName: OpenTK.Audio.OpenAL.EffectVector3 type: Enum source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectVector3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: EffectVector3 - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectVector3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\EffectVector3.cs startLine: 14 assemblies: - OpenTK.Audio.OpenAL namespace: OpenTK.Audio.OpenAL - summary: A list of valid Math.Vector3 Effect/GetEffect parameters. + summary: A list of valid / parameters. example: [] syntax: content: public enum EffectVector3 @@ -42,12 +38,8 @@ items: fullName: OpenTK.Audio.OpenAL.EffectVector3.EaxReverbLateReverbPan type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectVector3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: EaxReverbLateReverbPan - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectVector3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\EffectVector3.cs startLine: 20 assemblies: - OpenTK.Audio.OpenAL @@ -55,7 +47,7 @@ items: summary: >- Reverb Pan does for the Reverb what Reflections Pan does for the Reflections. Unit: Vector3 of length 0f to 1f - Default: {0.0f, 0.0f, 0.0f} + Default: {0.0f, 0.0f, 0.0f}. example: [] syntax: content: EaxReverbLateReverbPan = 14 @@ -73,12 +65,8 @@ items: fullName: OpenTK.Audio.OpenAL.EffectVector3.EaxReverbReflectionsPan type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectVector3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: EaxReverbReflectionsPan - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/EffectVector3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\EffectVector3.cs startLine: 28 assemblies: - OpenTK.Audio.OpenAL @@ -90,13 +78,112 @@ items: are towards this direction. For legacy reasons this Vector3 follows a left-handed co-ordinate system! Note that - OpenAL uses a right-handed coordinate system. Unit: Vector3 of length 0f to 1f Default: {0.0f, 0.0f, 0.0f} + OpenAL uses a right-handed coordinate system. Unit: Vector3 of length 0f to 1f Default: {0.0f, 0.0f, 0.0f}. example: [] syntax: content: EaxReverbReflectionsPan = 11 return: type: OpenTK.Audio.OpenAL.EffectVector3 references: +- uid: OpenTK.Mathematics.Vector3 + commentId: T:OpenTK.Mathematics.Vector3 + parent: OpenTK.Mathematics + href: OpenTK.Mathematics.Vector3.html + name: Vector3 + nameWithType: Vector3 + fullName: OpenTK.Mathematics.Vector3 +- uid: OpenTK.Audio.OpenAL.ALC.EFX.Effect(System.Int32,OpenTK.Audio.OpenAL.EffectVector3,OpenTK.Mathematics.Vector3@) + commentId: M:OpenTK.Audio.OpenAL.ALC.EFX.Effect(System.Int32,OpenTK.Audio.OpenAL.EffectVector3,OpenTK.Mathematics.Vector3@) + isExternal: true + href: OpenTK.Audio.OpenAL.ALC.EFX.html#OpenTK_Audio_OpenAL_ALC_EFX_Effect_System_Int32_OpenTK_Audio_OpenAL_EffectVector3_OpenTK_Mathematics_Vector3__ + name: Effect(int, EffectVector3, ref Vector3) + nameWithType: ALC.EFX.Effect(int, EffectVector3, ref Vector3) + fullName: OpenTK.Audio.OpenAL.ALC.EFX.Effect(int, OpenTK.Audio.OpenAL.EffectVector3, ref OpenTK.Mathematics.Vector3) + nameWithType.vb: ALC.EFX.Effect(Integer, EffectVector3, Vector3) + fullName.vb: OpenTK.Audio.OpenAL.ALC.EFX.Effect(Integer, OpenTK.Audio.OpenAL.EffectVector3, OpenTK.Mathematics.Vector3) + name.vb: Effect(Integer, EffectVector3, Vector3) + spec.csharp: + - uid: OpenTK.Audio.OpenAL.ALC.EFX.Effect(System.Int32,OpenTK.Audio.OpenAL.EffectVector3,OpenTK.Mathematics.Vector3@) + name: Effect + href: OpenTK.Audio.OpenAL.ALC.EFX.html#OpenTK_Audio_OpenAL_ALC_EFX_Effect_System_Int32_OpenTK_Audio_OpenAL_EffectVector3_OpenTK_Mathematics_Vector3__ + - name: ( + - uid: System.Int32 + name: int + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ',' + - name: " " + - uid: OpenTK.Audio.OpenAL.EffectVector3 + name: EffectVector3 + href: OpenTK.Audio.OpenAL.EffectVector3.html + - name: ',' + - name: " " + - name: ref + - name: " " + - uid: OpenTK.Mathematics.Vector3 + name: Vector3 + href: OpenTK.Mathematics.Vector3.html + - name: ) + spec.vb: + - uid: OpenTK.Audio.OpenAL.ALC.EFX.Effect(System.Int32,OpenTK.Audio.OpenAL.EffectVector3,OpenTK.Mathematics.Vector3@) + name: Effect + href: OpenTK.Audio.OpenAL.ALC.EFX.html#OpenTK_Audio_OpenAL_ALC_EFX_Effect_System_Int32_OpenTK_Audio_OpenAL_EffectVector3_OpenTK_Mathematics_Vector3__ + - name: ( + - uid: System.Int32 + name: Integer + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ',' + - name: " " + - uid: OpenTK.Audio.OpenAL.EffectVector3 + name: EffectVector3 + href: OpenTK.Audio.OpenAL.EffectVector3.html + - name: ',' + - name: " " + - uid: OpenTK.Mathematics.Vector3 + name: Vector3 + href: OpenTK.Mathematics.Vector3.html + - name: ) +- uid: OpenTK.Audio.OpenAL.ALC.EFX.GetEffect(System.Int32,OpenTK.Audio.OpenAL.EffectVector3) + commentId: M:OpenTK.Audio.OpenAL.ALC.EFX.GetEffect(System.Int32,OpenTK.Audio.OpenAL.EffectVector3) + isExternal: true + href: OpenTK.Audio.OpenAL.ALC.EFX.html#OpenTK_Audio_OpenAL_ALC_EFX_GetEffect_System_Int32_OpenTK_Audio_OpenAL_EffectVector3_ + name: GetEffect(int, EffectVector3) + nameWithType: ALC.EFX.GetEffect(int, EffectVector3) + fullName: OpenTK.Audio.OpenAL.ALC.EFX.GetEffect(int, OpenTK.Audio.OpenAL.EffectVector3) + nameWithType.vb: ALC.EFX.GetEffect(Integer, EffectVector3) + fullName.vb: OpenTK.Audio.OpenAL.ALC.EFX.GetEffect(Integer, OpenTK.Audio.OpenAL.EffectVector3) + name.vb: GetEffect(Integer, EffectVector3) + spec.csharp: + - uid: OpenTK.Audio.OpenAL.ALC.EFX.GetEffect(System.Int32,OpenTK.Audio.OpenAL.EffectVector3) + name: GetEffect + href: OpenTK.Audio.OpenAL.ALC.EFX.html#OpenTK_Audio_OpenAL_ALC_EFX_GetEffect_System_Int32_OpenTK_Audio_OpenAL_EffectVector3_ + - name: ( + - uid: System.Int32 + name: int + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ',' + - name: " " + - uid: OpenTK.Audio.OpenAL.EffectVector3 + name: EffectVector3 + href: OpenTK.Audio.OpenAL.EffectVector3.html + - name: ) + spec.vb: + - uid: OpenTK.Audio.OpenAL.ALC.EFX.GetEffect(System.Int32,OpenTK.Audio.OpenAL.EffectVector3) + name: GetEffect + href: OpenTK.Audio.OpenAL.ALC.EFX.html#OpenTK_Audio_OpenAL_ALC_EFX_GetEffect_System_Int32_OpenTK_Audio_OpenAL_EffectVector3_ + - name: ( + - uid: System.Int32 + name: Integer + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ',' + - name: " " + - uid: OpenTK.Audio.OpenAL.EffectVector3 + name: EffectVector3 + href: OpenTK.Audio.OpenAL.EffectVector3.html + - name: ) - uid: OpenTK.Audio.OpenAL commentId: N:OpenTK.Audio.OpenAL href: OpenTK.html @@ -127,6 +214,28 @@ references: - uid: OpenTK.Audio.OpenAL name: OpenAL href: OpenTK.Audio.OpenAL.html +- uid: OpenTK.Mathematics + commentId: N:OpenTK.Mathematics + href: OpenTK.html + name: OpenTK.Mathematics + nameWithType: OpenTK.Mathematics + fullName: OpenTK.Mathematics + spec.csharp: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Mathematics + name: Mathematics + href: OpenTK.Mathematics.html + spec.vb: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Mathematics + name: Mathematics + href: OpenTK.Mathematics.html - uid: OpenTK.Audio.OpenAL.EffectVector3 commentId: T:OpenTK.Audio.OpenAL.EffectVector3 parent: OpenTK.Audio.OpenAL diff --git a/api/OpenTK.Audio.OpenAL.FilterFloat.yml b/api/OpenTK.Audio.OpenAL.FilterFloat.yml index 90c2bbae..35491b3c 100644 --- a/api/OpenTK.Audio.OpenAL.FilterFloat.yml +++ b/api/OpenTK.Audio.OpenAL.FilterFloat.yml @@ -20,17 +20,13 @@ items: fullName: OpenTK.Audio.OpenAL.FilterFloat type: Enum source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/FilterFloat.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: FilterFloat - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/FilterFloat.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\FilterFloat.cs startLine: 14 assemblies: - OpenTK.Audio.OpenAL namespace: OpenTK.Audio.OpenAL - summary: A list of valid Filter/GetFilter parameters. + summary: A list of valid / parameters. example: [] syntax: content: public enum FilterFloat @@ -47,17 +43,13 @@ items: fullName: OpenTK.Audio.OpenAL.FilterFloat.LowpassGain type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/FilterFloat.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: LowpassGain - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/FilterFloat.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\FilterFloat.cs startLine: 19 assemblies: - OpenTK.Audio.OpenAL namespace: OpenTK.Audio.OpenAL - summary: 'Range [0.0f .. 1.0f] Default: 1.0f' + summary: 'Range [0.0f .. 1.0f] Default: 1.0f.' example: [] syntax: content: LowpassGain = 1 @@ -75,17 +67,13 @@ items: fullName: OpenTK.Audio.OpenAL.FilterFloat.LowpassGainHF type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/FilterFloat.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: LowpassGainHF - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/FilterFloat.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\FilterFloat.cs startLine: 24 assemblies: - OpenTK.Audio.OpenAL namespace: OpenTK.Audio.OpenAL - summary: 'Range [0.0f .. 1.0f] Default: 1.0f' + summary: 'Range [0.0f .. 1.0f] Default: 1.0f.' example: [] syntax: content: LowpassGainHF = 2 @@ -103,17 +91,13 @@ items: fullName: OpenTK.Audio.OpenAL.FilterFloat.HighpassGain type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/FilterFloat.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: HighpassGain - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/FilterFloat.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\FilterFloat.cs startLine: 29 assemblies: - OpenTK.Audio.OpenAL namespace: OpenTK.Audio.OpenAL - summary: 'Range [0.0f .. 1.0f] Default: 1.0f' + summary: 'Range [0.0f .. 1.0f] Default: 1.0f.' example: [] syntax: content: HighpassGain = 1 @@ -131,17 +115,13 @@ items: fullName: OpenTK.Audio.OpenAL.FilterFloat.HighpassGainLF type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/FilterFloat.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: HighpassGainLF - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/FilterFloat.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\FilterFloat.cs startLine: 34 assemblies: - OpenTK.Audio.OpenAL namespace: OpenTK.Audio.OpenAL - summary: 'Range [0.0f .. 1.0f] Default: 1.0f' + summary: 'Range [0.0f .. 1.0f] Default: 1.0f.' example: [] syntax: content: HighpassGainLF = 2 @@ -159,17 +139,13 @@ items: fullName: OpenTK.Audio.OpenAL.FilterFloat.BandpassGain type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/FilterFloat.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: BandpassGain - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/FilterFloat.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\FilterFloat.cs startLine: 39 assemblies: - OpenTK.Audio.OpenAL namespace: OpenTK.Audio.OpenAL - summary: 'Range [0.0f .. 1.0f] Default: 1.0f' + summary: 'Range [0.0f .. 1.0f] Default: 1.0f.' example: [] syntax: content: BandpassGain = 1 @@ -187,17 +163,13 @@ items: fullName: OpenTK.Audio.OpenAL.FilterFloat.BandpassGainLF type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/FilterFloat.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: BandpassGainLF - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/FilterFloat.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\FilterFloat.cs startLine: 44 assemblies: - OpenTK.Audio.OpenAL namespace: OpenTK.Audio.OpenAL - summary: 'Range [0.0f .. 1.0f] Default: 1.0f' + summary: 'Range [0.0f .. 1.0f] Default: 1.0f.' example: [] syntax: content: BandpassGainLF = 2 @@ -215,17 +187,13 @@ items: fullName: OpenTK.Audio.OpenAL.FilterFloat.BandpassGainHF type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/FilterFloat.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: BandpassGainHF - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/FilterFloat.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\FilterFloat.cs startLine: 49 assemblies: - OpenTK.Audio.OpenAL namespace: OpenTK.Audio.OpenAL - summary: 'Range [0.0f .. 1.0f] Default: 1.0f' + summary: 'Range [0.0f .. 1.0f] Default: 1.0f.' example: [] syntax: content: BandpassGainHF = 3 @@ -243,6 +211,98 @@ references: nameWithType.vb: Single fullName.vb: Single name.vb: Single +- uid: OpenTK.Audio.OpenAL.ALC.EFX.Filter(System.Int32,OpenTK.Audio.OpenAL.FilterFloat,System.Single) + commentId: M:OpenTK.Audio.OpenAL.ALC.EFX.Filter(System.Int32,OpenTK.Audio.OpenAL.FilterFloat,System.Single) + isExternal: true + href: OpenTK.Audio.OpenAL.ALC.EFX.html#OpenTK_Audio_OpenAL_ALC_EFX_Filter_System_Int32_OpenTK_Audio_OpenAL_FilterFloat_System_Single_ + name: Filter(int, FilterFloat, float) + nameWithType: ALC.EFX.Filter(int, FilterFloat, float) + fullName: OpenTK.Audio.OpenAL.ALC.EFX.Filter(int, OpenTK.Audio.OpenAL.FilterFloat, float) + nameWithType.vb: ALC.EFX.Filter(Integer, FilterFloat, Single) + fullName.vb: OpenTK.Audio.OpenAL.ALC.EFX.Filter(Integer, OpenTK.Audio.OpenAL.FilterFloat, Single) + name.vb: Filter(Integer, FilterFloat, Single) + spec.csharp: + - uid: OpenTK.Audio.OpenAL.ALC.EFX.Filter(System.Int32,OpenTK.Audio.OpenAL.FilterFloat,System.Single) + name: Filter + href: OpenTK.Audio.OpenAL.ALC.EFX.html#OpenTK_Audio_OpenAL_ALC_EFX_Filter_System_Int32_OpenTK_Audio_OpenAL_FilterFloat_System_Single_ + - name: ( + - uid: System.Int32 + name: int + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ',' + - name: " " + - uid: OpenTK.Audio.OpenAL.FilterFloat + name: FilterFloat + href: OpenTK.Audio.OpenAL.FilterFloat.html + - name: ',' + - name: " " + - uid: System.Single + name: float + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.single + - name: ) + spec.vb: + - uid: OpenTK.Audio.OpenAL.ALC.EFX.Filter(System.Int32,OpenTK.Audio.OpenAL.FilterFloat,System.Single) + name: Filter + href: OpenTK.Audio.OpenAL.ALC.EFX.html#OpenTK_Audio_OpenAL_ALC_EFX_Filter_System_Int32_OpenTK_Audio_OpenAL_FilterFloat_System_Single_ + - name: ( + - uid: System.Int32 + name: Integer + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ',' + - name: " " + - uid: OpenTK.Audio.OpenAL.FilterFloat + name: FilterFloat + href: OpenTK.Audio.OpenAL.FilterFloat.html + - name: ',' + - name: " " + - uid: System.Single + name: Single + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.single + - name: ) +- uid: OpenTK.Audio.OpenAL.ALC.EFX.GetFilter(System.Int32,OpenTK.Audio.OpenAL.FilterFloat) + commentId: M:OpenTK.Audio.OpenAL.ALC.EFX.GetFilter(System.Int32,OpenTK.Audio.OpenAL.FilterFloat) + isExternal: true + href: OpenTK.Audio.OpenAL.ALC.EFX.html#OpenTK_Audio_OpenAL_ALC_EFX_GetFilter_System_Int32_OpenTK_Audio_OpenAL_FilterFloat_ + name: GetFilter(int, FilterFloat) + nameWithType: ALC.EFX.GetFilter(int, FilterFloat) + fullName: OpenTK.Audio.OpenAL.ALC.EFX.GetFilter(int, OpenTK.Audio.OpenAL.FilterFloat) + nameWithType.vb: ALC.EFX.GetFilter(Integer, FilterFloat) + fullName.vb: OpenTK.Audio.OpenAL.ALC.EFX.GetFilter(Integer, OpenTK.Audio.OpenAL.FilterFloat) + name.vb: GetFilter(Integer, FilterFloat) + spec.csharp: + - uid: OpenTK.Audio.OpenAL.ALC.EFX.GetFilter(System.Int32,OpenTK.Audio.OpenAL.FilterFloat) + name: GetFilter + href: OpenTK.Audio.OpenAL.ALC.EFX.html#OpenTK_Audio_OpenAL_ALC_EFX_GetFilter_System_Int32_OpenTK_Audio_OpenAL_FilterFloat_ + - name: ( + - uid: System.Int32 + name: int + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ',' + - name: " " + - uid: OpenTK.Audio.OpenAL.FilterFloat + name: FilterFloat + href: OpenTK.Audio.OpenAL.FilterFloat.html + - name: ) + spec.vb: + - uid: OpenTK.Audio.OpenAL.ALC.EFX.GetFilter(System.Int32,OpenTK.Audio.OpenAL.FilterFloat) + name: GetFilter + href: OpenTK.Audio.OpenAL.ALC.EFX.html#OpenTK_Audio_OpenAL_ALC_EFX_GetFilter_System_Int32_OpenTK_Audio_OpenAL_FilterFloat_ + - name: ( + - uid: System.Int32 + name: Integer + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ',' + - name: " " + - uid: OpenTK.Audio.OpenAL.FilterFloat + name: FilterFloat + href: OpenTK.Audio.OpenAL.FilterFloat.html + - name: ) - uid: OpenTK.Audio.OpenAL commentId: N:OpenTK.Audio.OpenAL href: OpenTK.html diff --git a/api/OpenTK.Audio.OpenAL.FilterInteger.yml b/api/OpenTK.Audio.OpenAL.FilterInteger.yml index d9c1d16e..55bfd54d 100644 --- a/api/OpenTK.Audio.OpenAL.FilterInteger.yml +++ b/api/OpenTK.Audio.OpenAL.FilterInteger.yml @@ -14,17 +14,13 @@ items: fullName: OpenTK.Audio.OpenAL.FilterInteger type: Enum source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/FilterInteger.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: FilterInteger - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/FilterInteger.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\FilterInteger.cs startLine: 14 assemblies: - OpenTK.Audio.OpenAL namespace: OpenTK.Audio.OpenAL - summary: A list of valid Filter/GetFilter parameters. + summary: A list of valid / parameters. example: [] syntax: content: public enum FilterInteger @@ -41,12 +37,8 @@ items: fullName: OpenTK.Audio.OpenAL.FilterInteger.FilterType type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/FilterInteger.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: FilterType - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/FilterInteger.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\FilterInteger.cs startLine: 19 assemblies: - OpenTK.Audio.OpenAL @@ -69,6 +61,98 @@ references: nameWithType.vb: Integer fullName.vb: Integer name.vb: Integer +- uid: OpenTK.Audio.OpenAL.ALC.EFX.Filter(System.Int32,OpenTK.Audio.OpenAL.FilterInteger,System.Int32) + commentId: M:OpenTK.Audio.OpenAL.ALC.EFX.Filter(System.Int32,OpenTK.Audio.OpenAL.FilterInteger,System.Int32) + isExternal: true + href: OpenTK.Audio.OpenAL.ALC.EFX.html#OpenTK_Audio_OpenAL_ALC_EFX_Filter_System_Int32_OpenTK_Audio_OpenAL_FilterInteger_System_Int32_ + name: Filter(int, FilterInteger, int) + nameWithType: ALC.EFX.Filter(int, FilterInteger, int) + fullName: OpenTK.Audio.OpenAL.ALC.EFX.Filter(int, OpenTK.Audio.OpenAL.FilterInteger, int) + nameWithType.vb: ALC.EFX.Filter(Integer, FilterInteger, Integer) + fullName.vb: OpenTK.Audio.OpenAL.ALC.EFX.Filter(Integer, OpenTK.Audio.OpenAL.FilterInteger, Integer) + name.vb: Filter(Integer, FilterInteger, Integer) + spec.csharp: + - uid: OpenTK.Audio.OpenAL.ALC.EFX.Filter(System.Int32,OpenTK.Audio.OpenAL.FilterInteger,System.Int32) + name: Filter + href: OpenTK.Audio.OpenAL.ALC.EFX.html#OpenTK_Audio_OpenAL_ALC_EFX_Filter_System_Int32_OpenTK_Audio_OpenAL_FilterInteger_System_Int32_ + - name: ( + - uid: System.Int32 + name: int + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ',' + - name: " " + - uid: OpenTK.Audio.OpenAL.FilterInteger + name: FilterInteger + href: OpenTK.Audio.OpenAL.FilterInteger.html + - name: ',' + - name: " " + - uid: System.Int32 + name: int + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ) + spec.vb: + - uid: OpenTK.Audio.OpenAL.ALC.EFX.Filter(System.Int32,OpenTK.Audio.OpenAL.FilterInteger,System.Int32) + name: Filter + href: OpenTK.Audio.OpenAL.ALC.EFX.html#OpenTK_Audio_OpenAL_ALC_EFX_Filter_System_Int32_OpenTK_Audio_OpenAL_FilterInteger_System_Int32_ + - name: ( + - uid: System.Int32 + name: Integer + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ',' + - name: " " + - uid: OpenTK.Audio.OpenAL.FilterInteger + name: FilterInteger + href: OpenTK.Audio.OpenAL.FilterInteger.html + - name: ',' + - name: " " + - uid: System.Int32 + name: Integer + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ) +- uid: OpenTK.Audio.OpenAL.ALC.EFX.GetFilter(System.Int32,OpenTK.Audio.OpenAL.FilterInteger) + commentId: M:OpenTK.Audio.OpenAL.ALC.EFX.GetFilter(System.Int32,OpenTK.Audio.OpenAL.FilterInteger) + isExternal: true + href: OpenTK.Audio.OpenAL.ALC.EFX.html#OpenTK_Audio_OpenAL_ALC_EFX_GetFilter_System_Int32_OpenTK_Audio_OpenAL_FilterInteger_ + name: GetFilter(int, FilterInteger) + nameWithType: ALC.EFX.GetFilter(int, FilterInteger) + fullName: OpenTK.Audio.OpenAL.ALC.EFX.GetFilter(int, OpenTK.Audio.OpenAL.FilterInteger) + nameWithType.vb: ALC.EFX.GetFilter(Integer, FilterInteger) + fullName.vb: OpenTK.Audio.OpenAL.ALC.EFX.GetFilter(Integer, OpenTK.Audio.OpenAL.FilterInteger) + name.vb: GetFilter(Integer, FilterInteger) + spec.csharp: + - uid: OpenTK.Audio.OpenAL.ALC.EFX.GetFilter(System.Int32,OpenTK.Audio.OpenAL.FilterInteger) + name: GetFilter + href: OpenTK.Audio.OpenAL.ALC.EFX.html#OpenTK_Audio_OpenAL_ALC_EFX_GetFilter_System_Int32_OpenTK_Audio_OpenAL_FilterInteger_ + - name: ( + - uid: System.Int32 + name: int + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ',' + - name: " " + - uid: OpenTK.Audio.OpenAL.FilterInteger + name: FilterInteger + href: OpenTK.Audio.OpenAL.FilterInteger.html + - name: ) + spec.vb: + - uid: OpenTK.Audio.OpenAL.ALC.EFX.GetFilter(System.Int32,OpenTK.Audio.OpenAL.FilterInteger) + name: GetFilter + href: OpenTK.Audio.OpenAL.ALC.EFX.html#OpenTK_Audio_OpenAL_ALC_EFX_GetFilter_System_Int32_OpenTK_Audio_OpenAL_FilterInteger_ + - name: ( + - uid: System.Int32 + name: Integer + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ',' + - name: " " + - uid: OpenTK.Audio.OpenAL.FilterInteger + name: FilterInteger + href: OpenTK.Audio.OpenAL.FilterInteger.html + - name: ) - uid: OpenTK.Audio.OpenAL commentId: N:OpenTK.Audio.OpenAL href: OpenTK.html diff --git a/api/OpenTK.Audio.OpenAL.FilterType.yml b/api/OpenTK.Audio.OpenAL.FilterType.yml index 1ac35f54..f746cfc5 100644 --- a/api/OpenTK.Audio.OpenAL.FilterType.yml +++ b/api/OpenTK.Audio.OpenAL.FilterType.yml @@ -17,17 +17,13 @@ items: fullName: OpenTK.Audio.OpenAL.FilterType type: Enum source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/FilterType.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: FilterType - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/FilterType.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\FilterType.cs startLine: 14 assemblies: - OpenTK.Audio.OpenAL namespace: OpenTK.Audio.OpenAL - summary: Filter type definitions to be used with EfxFilteri.FilterType. + summary: Filter type definitions to be used with . example: [] syntax: content: public enum FilterType @@ -44,12 +40,8 @@ items: fullName: OpenTK.Audio.OpenAL.FilterType.Null type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/FilterType.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: "Null" - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/FilterType.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\FilterType.cs startLine: 19 assemblies: - OpenTK.Audio.OpenAL @@ -72,12 +64,8 @@ items: fullName: OpenTK.Audio.OpenAL.FilterType.Lowpass type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/FilterType.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Lowpass - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/FilterType.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\FilterType.cs startLine: 24 assemblies: - OpenTK.Audio.OpenAL @@ -100,17 +88,13 @@ items: fullName: OpenTK.Audio.OpenAL.FilterType.Highpass type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/FilterType.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Highpass - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/FilterType.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\FilterType.cs startLine: 29 assemblies: - OpenTK.Audio.OpenAL namespace: OpenTK.Audio.OpenAL - summary: Currently not implemented. A high-pass filter is used to remove low frequency content from a signal. + summary: A high-pass filter is used to remove low frequency content from a signal. example: [] syntax: content: Highpass = 2 @@ -128,23 +112,25 @@ items: fullName: OpenTK.Audio.OpenAL.FilterType.Bandpass type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/FilterType.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Bandpass - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/FilterType.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\FilterType.cs startLine: 34 assemblies: - OpenTK.Audio.OpenAL namespace: OpenTK.Audio.OpenAL - summary: Currently not implemented. A band-pass filter is used to remove high and low frequency content from a signal. + summary: A band-pass filter is used to remove high and low frequency content from a signal. example: [] syntax: content: Bandpass = 3 return: type: OpenTK.Audio.OpenAL.FilterType references: +- uid: OpenTK.Audio.OpenAL.FilterInteger.FilterType + commentId: F:OpenTK.Audio.OpenAL.FilterInteger.FilterType + href: OpenTK.Audio.OpenAL.FilterInteger.html#OpenTK_Audio_OpenAL_FilterInteger_FilterType + name: FilterType + nameWithType: FilterInteger.FilterType + fullName: OpenTK.Audio.OpenAL.FilterInteger.FilterType - uid: OpenTK.Audio.OpenAL commentId: N:OpenTK.Audio.OpenAL href: OpenTK.html diff --git a/api/OpenTK.Audio.OpenAL.FloatBufferFormat.yml b/api/OpenTK.Audio.OpenAL.FloatBufferFormat.yml index 713280b2..ebbeb326 100644 --- a/api/OpenTK.Audio.OpenAL.FloatBufferFormat.yml +++ b/api/OpenTK.Audio.OpenAL.FloatBufferFormat.yml @@ -15,12 +15,8 @@ items: fullName: OpenTK.Audio.OpenAL.FloatBufferFormat type: Enum source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/EXT.Float32/Enums/FloatBufferFormat.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: FloatBufferFormat - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/EXT.Float32/Enums/FloatBufferFormat.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\EXT.Float32\Enums\FloatBufferFormat.cs startLine: 14 assemblies: - OpenTK.Audio.OpenAL @@ -42,12 +38,8 @@ items: fullName: OpenTK.Audio.OpenAL.FloatBufferFormat.Mono type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/EXT.Float32/Enums/FloatBufferFormat.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Mono - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/EXT.Float32/Enums/FloatBufferFormat.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\EXT.Float32\Enums\FloatBufferFormat.cs startLine: 19 assemblies: - OpenTK.Audio.OpenAL @@ -70,12 +62,8 @@ items: fullName: OpenTK.Audio.OpenAL.FloatBufferFormat.Stereo type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/EXT.Float32/Enums/FloatBufferFormat.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Stereo - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/EXT.Float32/Enums/FloatBufferFormat.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\EXT.Float32\Enums\FloatBufferFormat.cs startLine: 24 assemblies: - OpenTK.Audio.OpenAL diff --git a/api/OpenTK.Audio.OpenAL.FormantFilterSettings.yml b/api/OpenTK.Audio.OpenAL.FormantFilterSettings.yml index 2f7c529f..e424d48b 100644 --- a/api/OpenTK.Audio.OpenAL.FormantFilterSettings.yml +++ b/api/OpenTK.Audio.OpenAL.FormantFilterSettings.yml @@ -43,12 +43,8 @@ items: fullName: OpenTK.Audio.OpenAL.FormantFilterSettings type: Enum source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/FormantFilterSettings.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: FormantFilterSettings - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/FormantFilterSettings.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\FormantFilterSettings.cs startLine: 16 assemblies: - OpenTK.Audio.OpenAL @@ -58,7 +54,7 @@ items: effect that will be heard. If these two parameters are set to different phonemes, the filtering effect will morph - between the two settings at a rate specified by EfxEffectf.VocalMorpherRate. + between the two settings at a rate specified by . example: [] syntax: content: public enum FormantFilterSettings @@ -75,12 +71,8 @@ items: fullName: OpenTK.Audio.OpenAL.FormantFilterSettings.VocalMorpherPhonemeA type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/FormantFilterSettings.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: VocalMorpherPhonemeA - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/FormantFilterSettings.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\FormantFilterSettings.cs startLine: 21 assemblies: - OpenTK.Audio.OpenAL @@ -103,12 +95,8 @@ items: fullName: OpenTK.Audio.OpenAL.FormantFilterSettings.VocalMorpherPhonemeE type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/FormantFilterSettings.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: VocalMorpherPhonemeE - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/FormantFilterSettings.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\FormantFilterSettings.cs startLine: 26 assemblies: - OpenTK.Audio.OpenAL @@ -131,12 +119,8 @@ items: fullName: OpenTK.Audio.OpenAL.FormantFilterSettings.VocalMorpherPhonemeI type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/FormantFilterSettings.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: VocalMorpherPhonemeI - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/FormantFilterSettings.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\FormantFilterSettings.cs startLine: 31 assemblies: - OpenTK.Audio.OpenAL @@ -159,12 +143,8 @@ items: fullName: OpenTK.Audio.OpenAL.FormantFilterSettings.VocalMorpherPhonemeO type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/FormantFilterSettings.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: VocalMorpherPhonemeO - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/FormantFilterSettings.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\FormantFilterSettings.cs startLine: 36 assemblies: - OpenTK.Audio.OpenAL @@ -187,12 +167,8 @@ items: fullName: OpenTK.Audio.OpenAL.FormantFilterSettings.VocalMorpherPhonemeU type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/FormantFilterSettings.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: VocalMorpherPhonemeU - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/FormantFilterSettings.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\FormantFilterSettings.cs startLine: 41 assemblies: - OpenTK.Audio.OpenAL @@ -215,12 +191,8 @@ items: fullName: OpenTK.Audio.OpenAL.FormantFilterSettings.VocalMorpherPhonemeAA type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/FormantFilterSettings.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: VocalMorpherPhonemeAA - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/FormantFilterSettings.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\FormantFilterSettings.cs startLine: 46 assemblies: - OpenTK.Audio.OpenAL @@ -243,12 +215,8 @@ items: fullName: OpenTK.Audio.OpenAL.FormantFilterSettings.VocalMorpherPhonemeAE type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/FormantFilterSettings.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: VocalMorpherPhonemeAE - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/FormantFilterSettings.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\FormantFilterSettings.cs startLine: 51 assemblies: - OpenTK.Audio.OpenAL @@ -271,12 +239,8 @@ items: fullName: OpenTK.Audio.OpenAL.FormantFilterSettings.VocalMorpherPhonemeAH type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/FormantFilterSettings.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: VocalMorpherPhonemeAH - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/FormantFilterSettings.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\FormantFilterSettings.cs startLine: 56 assemblies: - OpenTK.Audio.OpenAL @@ -299,12 +263,8 @@ items: fullName: OpenTK.Audio.OpenAL.FormantFilterSettings.VocalMorpherPhonemeAO type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/FormantFilterSettings.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: VocalMorpherPhonemeAO - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/FormantFilterSettings.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\FormantFilterSettings.cs startLine: 61 assemblies: - OpenTK.Audio.OpenAL @@ -327,12 +287,8 @@ items: fullName: OpenTK.Audio.OpenAL.FormantFilterSettings.VocalMorpherPhonemeEH type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/FormantFilterSettings.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: VocalMorpherPhonemeEH - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/FormantFilterSettings.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\FormantFilterSettings.cs startLine: 66 assemblies: - OpenTK.Audio.OpenAL @@ -355,12 +311,8 @@ items: fullName: OpenTK.Audio.OpenAL.FormantFilterSettings.VocalMorpherPhonemeER type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/FormantFilterSettings.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: VocalMorpherPhonemeER - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/FormantFilterSettings.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\FormantFilterSettings.cs startLine: 71 assemblies: - OpenTK.Audio.OpenAL @@ -383,12 +335,8 @@ items: fullName: OpenTK.Audio.OpenAL.FormantFilterSettings.VocalMorpherPhonemeIH type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/FormantFilterSettings.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: VocalMorpherPhonemeIH - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/FormantFilterSettings.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\FormantFilterSettings.cs startLine: 76 assemblies: - OpenTK.Audio.OpenAL @@ -411,12 +359,8 @@ items: fullName: OpenTK.Audio.OpenAL.FormantFilterSettings.VocalMorpherPhonemeIY type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/FormantFilterSettings.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: VocalMorpherPhonemeIY - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/FormantFilterSettings.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\FormantFilterSettings.cs startLine: 81 assemblies: - OpenTK.Audio.OpenAL @@ -439,12 +383,8 @@ items: fullName: OpenTK.Audio.OpenAL.FormantFilterSettings.VocalMorpherPhonemeUH type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/FormantFilterSettings.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: VocalMorpherPhonemeUH - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/FormantFilterSettings.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\FormantFilterSettings.cs startLine: 86 assemblies: - OpenTK.Audio.OpenAL @@ -467,12 +407,8 @@ items: fullName: OpenTK.Audio.OpenAL.FormantFilterSettings.VocalMorpherPhonemeUW type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/FormantFilterSettings.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: VocalMorpherPhonemeUW - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/FormantFilterSettings.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\FormantFilterSettings.cs startLine: 91 assemblies: - OpenTK.Audio.OpenAL @@ -495,12 +431,8 @@ items: fullName: OpenTK.Audio.OpenAL.FormantFilterSettings.VocalMorpherPhonemeB type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/FormantFilterSettings.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: VocalMorpherPhonemeB - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/FormantFilterSettings.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\FormantFilterSettings.cs startLine: 96 assemblies: - OpenTK.Audio.OpenAL @@ -523,12 +455,8 @@ items: fullName: OpenTK.Audio.OpenAL.FormantFilterSettings.VocalMorpherPhonemeD type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/FormantFilterSettings.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: VocalMorpherPhonemeD - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/FormantFilterSettings.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\FormantFilterSettings.cs startLine: 101 assemblies: - OpenTK.Audio.OpenAL @@ -551,12 +479,8 @@ items: fullName: OpenTK.Audio.OpenAL.FormantFilterSettings.VocalMorpherPhonemeF type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/FormantFilterSettings.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: VocalMorpherPhonemeF - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/FormantFilterSettings.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\FormantFilterSettings.cs startLine: 106 assemblies: - OpenTK.Audio.OpenAL @@ -579,12 +503,8 @@ items: fullName: OpenTK.Audio.OpenAL.FormantFilterSettings.VocalMorpherPhonemeG type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/FormantFilterSettings.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: VocalMorpherPhonemeG - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/FormantFilterSettings.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\FormantFilterSettings.cs startLine: 111 assemblies: - OpenTK.Audio.OpenAL @@ -607,12 +527,8 @@ items: fullName: OpenTK.Audio.OpenAL.FormantFilterSettings.VocalMorpherPhonemeJ type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/FormantFilterSettings.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: VocalMorpherPhonemeJ - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/FormantFilterSettings.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\FormantFilterSettings.cs startLine: 116 assemblies: - OpenTK.Audio.OpenAL @@ -635,12 +551,8 @@ items: fullName: OpenTK.Audio.OpenAL.FormantFilterSettings.VocalMorpherPhonemeK type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/FormantFilterSettings.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: VocalMorpherPhonemeK - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/FormantFilterSettings.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\FormantFilterSettings.cs startLine: 121 assemblies: - OpenTK.Audio.OpenAL @@ -663,12 +575,8 @@ items: fullName: OpenTK.Audio.OpenAL.FormantFilterSettings.VocalMorpherPhonemeL type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/FormantFilterSettings.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: VocalMorpherPhonemeL - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/FormantFilterSettings.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\FormantFilterSettings.cs startLine: 126 assemblies: - OpenTK.Audio.OpenAL @@ -691,12 +599,8 @@ items: fullName: OpenTK.Audio.OpenAL.FormantFilterSettings.VocalMorpherPhonemeM type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/FormantFilterSettings.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: VocalMorpherPhonemeM - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/FormantFilterSettings.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\FormantFilterSettings.cs startLine: 131 assemblies: - OpenTK.Audio.OpenAL @@ -719,12 +623,8 @@ items: fullName: OpenTK.Audio.OpenAL.FormantFilterSettings.VocalMorpherPhonemeN type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/FormantFilterSettings.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: VocalMorpherPhonemeN - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/FormantFilterSettings.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\FormantFilterSettings.cs startLine: 136 assemblies: - OpenTK.Audio.OpenAL @@ -747,12 +647,8 @@ items: fullName: OpenTK.Audio.OpenAL.FormantFilterSettings.VocalMorpherPhonemeP type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/FormantFilterSettings.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: VocalMorpherPhonemeP - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/FormantFilterSettings.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\FormantFilterSettings.cs startLine: 141 assemblies: - OpenTK.Audio.OpenAL @@ -775,12 +671,8 @@ items: fullName: OpenTK.Audio.OpenAL.FormantFilterSettings.VocalMorpherPhonemeR type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/FormantFilterSettings.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: VocalMorpherPhonemeR - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/FormantFilterSettings.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\FormantFilterSettings.cs startLine: 146 assemblies: - OpenTK.Audio.OpenAL @@ -803,12 +695,8 @@ items: fullName: OpenTK.Audio.OpenAL.FormantFilterSettings.VocalMorpherPhonemeS type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/FormantFilterSettings.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: VocalMorpherPhonemeS - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/FormantFilterSettings.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\FormantFilterSettings.cs startLine: 151 assemblies: - OpenTK.Audio.OpenAL @@ -831,12 +719,8 @@ items: fullName: OpenTK.Audio.OpenAL.FormantFilterSettings.VocalMorpherPhonemeT type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/FormantFilterSettings.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: VocalMorpherPhonemeT - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/FormantFilterSettings.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\FormantFilterSettings.cs startLine: 156 assemblies: - OpenTK.Audio.OpenAL @@ -859,12 +743,8 @@ items: fullName: OpenTK.Audio.OpenAL.FormantFilterSettings.VocalMorpherPhonemeV type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/FormantFilterSettings.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: VocalMorpherPhonemeV - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/FormantFilterSettings.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\FormantFilterSettings.cs startLine: 161 assemblies: - OpenTK.Audio.OpenAL @@ -887,12 +767,8 @@ items: fullName: OpenTK.Audio.OpenAL.FormantFilterSettings.VocalMorpherPhonemeZ type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/FormantFilterSettings.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: VocalMorpherPhonemeZ - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/FormantFilterSettings.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\FormantFilterSettings.cs startLine: 166 assemblies: - OpenTK.Audio.OpenAL @@ -904,6 +780,12 @@ items: return: type: OpenTK.Audio.OpenAL.FormantFilterSettings references: +- uid: OpenTK.Audio.OpenAL.EffectFloat.VocalMorpherRate + commentId: F:OpenTK.Audio.OpenAL.EffectFloat.VocalMorpherRate + href: OpenTK.Audio.OpenAL.EffectFloat.html#OpenTK_Audio_OpenAL_EffectFloat_VocalMorpherRate + name: VocalMorpherRate + nameWithType: EffectFloat.VocalMorpherRate + fullName: OpenTK.Audio.OpenAL.EffectFloat.VocalMorpherRate - uid: OpenTK.Audio.OpenAL commentId: N:OpenTK.Audio.OpenAL href: OpenTK.html diff --git a/api/OpenTK.Audio.OpenAL.GetEnumerateAllContextString.yml b/api/OpenTK.Audio.OpenAL.GetEnumerateAllContextString.yml index 20f731de..9c6b8172 100644 --- a/api/OpenTK.Audio.OpenAL.GetEnumerateAllContextString.yml +++ b/api/OpenTK.Audio.OpenAL.GetEnumerateAllContextString.yml @@ -15,12 +15,8 @@ items: fullName: OpenTK.Audio.OpenAL.GetEnumerateAllContextString type: Enum source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EnumerateAll/Enums/GetEnumerateAllContextString.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetEnumerateAllContextString - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EnumerateAll/Enums/GetEnumerateAllContextString.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EnumerateAll\Enums\GetEnumerateAllContextString.cs startLine: 14 assemblies: - OpenTK.Audio.OpenAL @@ -42,12 +38,8 @@ items: fullName: OpenTK.Audio.OpenAL.GetEnumerateAllContextString.DefaultAllDevicesSpecifier type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EnumerateAll/Enums/GetEnumerateAllContextString.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DefaultAllDevicesSpecifier - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EnumerateAll/Enums/GetEnumerateAllContextString.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EnumerateAll\Enums\GetEnumerateAllContextString.cs startLine: 19 assemblies: - OpenTK.Audio.OpenAL @@ -70,12 +62,8 @@ items: fullName: OpenTK.Audio.OpenAL.GetEnumerateAllContextString.AllDevicesSpecifier type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EnumerateAll/Enums/GetEnumerateAllContextString.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: AllDevicesSpecifier - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EnumerateAll/Enums/GetEnumerateAllContextString.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EnumerateAll\Enums\GetEnumerateAllContextString.cs startLine: 24 assemblies: - OpenTK.Audio.OpenAL diff --git a/api/OpenTK.Audio.OpenAL.GetEnumerateAllContextStringList.yml b/api/OpenTK.Audio.OpenAL.GetEnumerateAllContextStringList.yml index d6bf1036..b50a6ba5 100644 --- a/api/OpenTK.Audio.OpenAL.GetEnumerateAllContextStringList.yml +++ b/api/OpenTK.Audio.OpenAL.GetEnumerateAllContextStringList.yml @@ -14,12 +14,8 @@ items: fullName: OpenTK.Audio.OpenAL.GetEnumerateAllContextStringList type: Enum source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EnumerateAll/Enums/GetEnumerateAllContextStringList.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetEnumerateAllContextStringList - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EnumerateAll/Enums/GetEnumerateAllContextStringList.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EnumerateAll\Enums\GetEnumerateAllContextStringList.cs startLine: 14 assemblies: - OpenTK.Audio.OpenAL @@ -41,12 +37,8 @@ items: fullName: OpenTK.Audio.OpenAL.GetEnumerateAllContextStringList.AllDevicesSpecifier type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EnumerateAll/Enums/GetEnumerateAllContextStringList.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: AllDevicesSpecifier - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EnumerateAll/Enums/GetEnumerateAllContextStringList.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EnumerateAll\Enums\GetEnumerateAllContextStringList.cs startLine: 19 assemblies: - OpenTK.Audio.OpenAL diff --git a/api/OpenTK.Audio.OpenAL.GetEnumerationString.yml b/api/OpenTK.Audio.OpenAL.GetEnumerationString.yml index 336f779b..5cddde83 100644 --- a/api/OpenTK.Audio.OpenAL.GetEnumerationString.yml +++ b/api/OpenTK.Audio.OpenAL.GetEnumerationString.yml @@ -17,12 +17,8 @@ items: fullName: OpenTK.Audio.OpenAL.GetEnumerationString type: Enum source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/ALC/ALCEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetEnumerationString - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/ALC/ALCEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\ALC\ALCEnums.cs startLine: 139 assemblies: - OpenTK.Audio.OpenAL @@ -44,17 +40,13 @@ items: fullName: OpenTK.Audio.OpenAL.GetEnumerationString.DefaultDeviceSpecifier type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/ALC/ALCEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DefaultDeviceSpecifier - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/ALC/ALCEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\ALC\ALCEnums.cs startLine: 144 assemblies: - OpenTK.Audio.OpenAL namespace: OpenTK.Audio.OpenAL - summary: Gets the specifier for the default device. ALC_ENUMERATION_EXT + summary: Gets the specifier for the default device. ALC_ENUMERATION_EXT. example: [] syntax: content: DefaultDeviceSpecifier = 4100 @@ -72,12 +64,8 @@ items: fullName: OpenTK.Audio.OpenAL.GetEnumerationString.DeviceSpecifier type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/ALC/ALCEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DeviceSpecifier - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/ALC/ALCEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\ALC\ALCEnums.cs startLine: 150 assemblies: - OpenTK.Audio.OpenAL @@ -85,7 +73,7 @@ items: summary: >- Gets a specific output device's specifier. - Can also be used without a device to get a list of all available output devices, see . ALC_ENUMERATION_EXT + Can also be used without a device to get a list of all available output devices, see . ALC_ENUMERATION_EXT. example: [] syntax: content: DeviceSpecifier = 4101 @@ -103,17 +91,13 @@ items: fullName: OpenTK.Audio.OpenAL.GetEnumerationString.DefaultCaptureDeviceSpecifier type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/ALC/ALCEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DefaultCaptureDeviceSpecifier - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/ALC/ALCEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\ALC\ALCEnums.cs startLine: 155 assemblies: - OpenTK.Audio.OpenAL namespace: OpenTK.Audio.OpenAL - summary: Gets the specifier for the default capture device. ALC_ENUMERATION_EXT + summary: Gets the specifier for the default capture device. ALC_ENUMERATION_EXT. example: [] syntax: content: DefaultCaptureDeviceSpecifier = 785 @@ -131,12 +115,8 @@ items: fullName: OpenTK.Audio.OpenAL.GetEnumerationString.CaptureDeviceSpecifier type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/ALC/ALCEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CaptureDeviceSpecifier - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/ALC/ALCEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\ALC\ALCEnums.cs startLine: 161 assemblies: - OpenTK.Audio.OpenAL @@ -144,7 +124,7 @@ items: summary: >- Gets a specific capture device's specifier. - Can also be used without a device to get a list of all available capture devices, see . ALC_ENUMERATION_EXT + Can also be used without a device to get a list of all available capture devices, see . ALC_ENUMERATION_EXT. example: [] syntax: content: CaptureDeviceSpecifier = 784 diff --git a/api/OpenTK.Audio.OpenAL.GetEnumerationStringList.yml b/api/OpenTK.Audio.OpenAL.GetEnumerationStringList.yml index e50d9a48..ff02720e 100644 --- a/api/OpenTK.Audio.OpenAL.GetEnumerationStringList.yml +++ b/api/OpenTK.Audio.OpenAL.GetEnumerationStringList.yml @@ -15,12 +15,8 @@ items: fullName: OpenTK.Audio.OpenAL.GetEnumerationStringList type: Enum source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/ALC/ALCEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetEnumerationStringList - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/ALC/ALCEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\ALC\ALCEnums.cs startLine: 167 assemblies: - OpenTK.Audio.OpenAL @@ -42,12 +38,8 @@ items: fullName: OpenTK.Audio.OpenAL.GetEnumerationStringList.DeviceSpecifier type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/ALC/ALCEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DeviceSpecifier - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/ALC/ALCEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\ALC\ALCEnums.cs startLine: 173 assemblies: - OpenTK.Audio.OpenAL @@ -55,7 +47,7 @@ items: summary: >- Gets the specifier strings for all available output devices. - Can also be used to get the specifier for a specific device, see . ALC_ENUMERATION_EXT + Can also be used to get the specifier for a specific device, see . ALC_ENUMERATION_EXT. example: [] syntax: content: DeviceSpecifier = 4101 @@ -73,12 +65,8 @@ items: fullName: OpenTK.Audio.OpenAL.GetEnumerationStringList.CaptureDeviceSpecifier type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/ALC/ALCEnums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CaptureDeviceSpecifier - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/ALC/ALCEnums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\ALC\ALCEnums.cs startLine: 179 assemblies: - OpenTK.Audio.OpenAL @@ -86,7 +74,7 @@ items: summary: >- Gets the specifier strings for all available capture devices. - Can also be used to get the specifier for a specific capture device, see . ALC_ENUMERATION_EXT + Can also be used to get the specifier for a specific capture device, see . ALC_ENUMERATION_EXT. example: [] syntax: content: CaptureDeviceSpecifier = 784 diff --git a/api/OpenTK.Audio.OpenAL.GetInteger64.yml b/api/OpenTK.Audio.OpenAL.GetInteger64.yml index e2e0c531..f547024d 100644 --- a/api/OpenTK.Audio.OpenAL.GetInteger64.yml +++ b/api/OpenTK.Audio.OpenAL.GetInteger64.yml @@ -16,12 +16,8 @@ items: fullName: OpenTK.Audio.OpenAL.GetInteger64 type: Enum source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/SOFT.DeviceClock/Enums/GetInteger64.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetInteger64 - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/SOFT.DeviceClock/Enums/GetInteger64.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\SOFT.DeviceClock\Enums\GetInteger64.cs startLine: 6 assemblies: - OpenTK.Audio.OpenAL @@ -41,12 +37,8 @@ items: fullName: OpenTK.Audio.OpenAL.GetInteger64.DeviceClock type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/SOFT.DeviceClock/Enums/GetInteger64.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DeviceClock - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/SOFT.DeviceClock/Enums/GetInteger64.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\SOFT.DeviceClock\Enums\GetInteger64.cs startLine: 14 assemblies: - OpenTK.Audio.OpenAL @@ -58,7 +50,7 @@ items: NULL is an invalid device. - ALC_DEVICE_CLOCK_SOFT + ALC_DEVICE_CLOCK_SOFT. example: [] syntax: content: DeviceClock = 5632 @@ -76,12 +68,8 @@ items: fullName: OpenTK.Audio.OpenAL.GetInteger64.DeviceLatency type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/SOFT.DeviceClock/Enums/GetInteger64.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DeviceLatency - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/SOFT.DeviceClock/Enums/GetInteger64.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\SOFT.DeviceClock\Enums\GetInteger64.cs startLine: 22 assemblies: - OpenTK.Audio.OpenAL @@ -93,7 +81,7 @@ items: NULL is an invalid device. - ALC_DEVICE_LATENCY_SOFT + ALC_DEVICE_LATENCY_SOFT. example: [] syntax: content: DeviceLatency = 5633 @@ -111,12 +99,8 @@ items: fullName: OpenTK.Audio.OpenAL.GetInteger64.DeviceClockLatency type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/SOFT.DeviceClock/Enums/GetInteger64.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DeviceClockLatency - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/SOFT.DeviceClock/Enums/GetInteger64.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\SOFT.DeviceClock\Enums\GetInteger64.cs startLine: 30 assemblies: - OpenTK.Audio.OpenAL @@ -128,7 +112,7 @@ items: NULL is an invalid device. - ALC_DEVICE_CLOCK_LATENCY_SOFT + ALC_DEVICE_CLOCK_LATENCY_SOFT. example: [] syntax: content: DeviceClockLatency = 5634 diff --git a/api/OpenTK.Audio.OpenAL.MaxAuxiliarySends.yml b/api/OpenTK.Audio.OpenAL.MaxAuxiliarySends.yml index e1f98432..36aa496e 100644 --- a/api/OpenTK.Audio.OpenAL.MaxAuxiliarySends.yml +++ b/api/OpenTK.Audio.OpenAL.MaxAuxiliarySends.yml @@ -18,20 +18,13 @@ items: fullName: OpenTK.Audio.OpenAL.MaxAuxiliarySends type: Enum source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/MaxAuxiliarySends.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MaxAuxiliarySends - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/MaxAuxiliarySends.cs - startLine: 15 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\MaxAuxiliarySends.cs + startLine: 14 assemblies: - OpenTK.Audio.OpenAL namespace: OpenTK.Audio.OpenAL - summary: >- - May be passed at context construction time to indicate the number of desired auxiliary effect slot sends per - - source. + summary: May be passed at context construction time to indicate the number of desired auxiliary effect slot sends per source. example: [] syntax: content: public enum MaxAuxiliarySends @@ -48,13 +41,9 @@ items: fullName: OpenTK.Audio.OpenAL.MaxAuxiliarySends.UseDriverDefault type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/MaxAuxiliarySends.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: UseDriverDefault - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/MaxAuxiliarySends.cs - startLine: 20 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\MaxAuxiliarySends.cs + startLine: 19 assemblies: - OpenTK.Audio.OpenAL namespace: OpenTK.Audio.OpenAL @@ -76,13 +65,9 @@ items: fullName: OpenTK.Audio.OpenAL.MaxAuxiliarySends.One type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/MaxAuxiliarySends.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: One - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/MaxAuxiliarySends.cs - startLine: 25 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\MaxAuxiliarySends.cs + startLine: 24 assemblies: - OpenTK.Audio.OpenAL namespace: OpenTK.Audio.OpenAL @@ -104,13 +89,9 @@ items: fullName: OpenTK.Audio.OpenAL.MaxAuxiliarySends.Two type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/MaxAuxiliarySends.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Two - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/MaxAuxiliarySends.cs - startLine: 30 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\MaxAuxiliarySends.cs + startLine: 29 assemblies: - OpenTK.Audio.OpenAL namespace: OpenTK.Audio.OpenAL @@ -132,13 +113,9 @@ items: fullName: OpenTK.Audio.OpenAL.MaxAuxiliarySends.Three type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/MaxAuxiliarySends.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Three - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/MaxAuxiliarySends.cs - startLine: 35 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\MaxAuxiliarySends.cs + startLine: 34 assemblies: - OpenTK.Audio.OpenAL namespace: OpenTK.Audio.OpenAL @@ -160,13 +137,9 @@ items: fullName: OpenTK.Audio.OpenAL.MaxAuxiliarySends.Four type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/MaxAuxiliarySends.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Four - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Enums/MaxAuxiliarySends.cs - startLine: 40 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Enums\MaxAuxiliarySends.cs + startLine: 39 assemblies: - OpenTK.Audio.OpenAL namespace: OpenTK.Audio.OpenAL diff --git a/api/OpenTK.Audio.OpenAL.OpenALLibraryNameContainer.yml b/api/OpenTK.Audio.OpenAL.OpenALLibraryNameContainer.yml index 0c54e725..2b374a78 100644 --- a/api/OpenTK.Audio.OpenAL.OpenALLibraryNameContainer.yml +++ b/api/OpenTK.Audio.OpenAL.OpenALLibraryNameContainer.yml @@ -20,12 +20,8 @@ items: fullName: OpenTK.Audio.OpenAL.OpenALLibraryNameContainer type: Class source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/OpenALLibraryNameContainer.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: OpenALLibraryNameContainer - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/OpenALLibraryNameContainer.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\OpenALLibraryNameContainer.cs startLine: 17 assemblies: - OpenTK.Audio.OpenAL @@ -57,12 +53,8 @@ items: fullName: OpenTK.Audio.OpenAL.OpenALLibraryNameContainer.OverridePath type: Property source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/OpenALLibraryNameContainer.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: OverridePath - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/OpenALLibraryNameContainer.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\OpenALLibraryNameContainer.cs startLine: 23 assemblies: - OpenTK.Audio.OpenAL @@ -91,12 +83,8 @@ items: fullName: OpenTK.Audio.OpenAL.OpenALLibraryNameContainer.Windows type: Property source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/OpenALLibraryNameContainer.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Windows - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/OpenALLibraryNameContainer.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\OpenALLibraryNameContainer.cs startLine: 28 assemblies: - OpenTK.Audio.OpenAL @@ -122,12 +110,8 @@ items: fullName: OpenTK.Audio.OpenAL.OpenALLibraryNameContainer.Linux type: Property source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/OpenALLibraryNameContainer.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Linux - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/OpenALLibraryNameContainer.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\OpenALLibraryNameContainer.cs startLine: 33 assemblies: - OpenTK.Audio.OpenAL @@ -153,12 +137,8 @@ items: fullName: OpenTK.Audio.OpenAL.OpenALLibraryNameContainer.MacOS type: Property source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/OpenALLibraryNameContainer.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MacOS - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/OpenALLibraryNameContainer.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\OpenALLibraryNameContainer.cs startLine: 38 assemblies: - OpenTK.Audio.OpenAL @@ -184,12 +164,8 @@ items: fullName: OpenTK.Audio.OpenAL.OpenALLibraryNameContainer.Android type: Property source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/OpenALLibraryNameContainer.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Android - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/OpenALLibraryNameContainer.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\OpenALLibraryNameContainer.cs startLine: 43 assemblies: - OpenTK.Audio.OpenAL @@ -215,12 +191,8 @@ items: fullName: OpenTK.Audio.OpenAL.OpenALLibraryNameContainer.IOS type: Property source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/OpenALLibraryNameContainer.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: IOS - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/OpenALLibraryNameContainer.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\OpenALLibraryNameContainer.cs startLine: 48 assemblies: - OpenTK.Audio.OpenAL @@ -246,12 +218,8 @@ items: fullName: OpenTK.Audio.OpenAL.OpenALLibraryNameContainer.GetLibraryName() type: Method source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/OpenALLibraryNameContainer.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetLibraryName - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/OpenALLibraryNameContainer.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\OpenALLibraryNameContainer.cs startLine: 54 assemblies: - OpenTK.Audio.OpenAL diff --git a/api/OpenTK.Audio.OpenAL.ReverbPresets.yml b/api/OpenTK.Audio.OpenAL.ReverbPresets.yml index b8f2bd2d..a144f49d 100644 --- a/api/OpenTK.Audio.OpenAL.ReverbPresets.yml +++ b/api/OpenTK.Audio.OpenAL.ReverbPresets.yml @@ -126,12 +126,8 @@ items: fullName: OpenTK.Audio.OpenAL.ReverbPresets type: Class source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ReverbPresets - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Presets\ReverbPresets.cs startLine: 16 assemblies: - OpenTK.Audio.OpenAL @@ -163,12 +159,8 @@ items: fullName: OpenTK.Audio.OpenAL.ReverbPresets.Generic type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Generic - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Presets\ReverbPresets.cs startLine: 21 assemblies: - OpenTK.Audio.OpenAL @@ -192,12 +184,8 @@ items: fullName: OpenTK.Audio.OpenAL.ReverbPresets.PaddedCell type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: PaddedCell - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Presets\ReverbPresets.cs startLine: 51 assemblies: - OpenTK.Audio.OpenAL @@ -221,12 +209,8 @@ items: fullName: OpenTK.Audio.OpenAL.ReverbPresets.Room type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Room - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Presets\ReverbPresets.cs startLine: 81 assemblies: - OpenTK.Audio.OpenAL @@ -250,12 +234,8 @@ items: fullName: OpenTK.Audio.OpenAL.ReverbPresets.Bathroom type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Bathroom - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Presets\ReverbPresets.cs startLine: 111 assemblies: - OpenTK.Audio.OpenAL @@ -279,12 +259,8 @@ items: fullName: OpenTK.Audio.OpenAL.ReverbPresets.LivingRoom type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: LivingRoom - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Presets\ReverbPresets.cs startLine: 141 assemblies: - OpenTK.Audio.OpenAL @@ -308,12 +284,8 @@ items: fullName: OpenTK.Audio.OpenAL.ReverbPresets.StoneRoom type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: StoneRoom - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Presets\ReverbPresets.cs startLine: 171 assemblies: - OpenTK.Audio.OpenAL @@ -337,12 +309,8 @@ items: fullName: OpenTK.Audio.OpenAL.ReverbPresets.Auditorium type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Auditorium - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Presets\ReverbPresets.cs startLine: 201 assemblies: - OpenTK.Audio.OpenAL @@ -366,12 +334,8 @@ items: fullName: OpenTK.Audio.OpenAL.ReverbPresets.ConcertHall type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ConcertHall - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Presets\ReverbPresets.cs startLine: 231 assemblies: - OpenTK.Audio.OpenAL @@ -395,12 +359,8 @@ items: fullName: OpenTK.Audio.OpenAL.ReverbPresets.Cave type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Cave - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Presets\ReverbPresets.cs startLine: 261 assemblies: - OpenTK.Audio.OpenAL @@ -424,12 +384,8 @@ items: fullName: OpenTK.Audio.OpenAL.ReverbPresets.Arena type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Arena - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Presets\ReverbPresets.cs startLine: 291 assemblies: - OpenTK.Audio.OpenAL @@ -453,12 +409,8 @@ items: fullName: OpenTK.Audio.OpenAL.ReverbPresets.Hangar type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Hangar - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Presets\ReverbPresets.cs startLine: 321 assemblies: - OpenTK.Audio.OpenAL @@ -482,12 +434,8 @@ items: fullName: OpenTK.Audio.OpenAL.ReverbPresets.CarpetedHallway type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CarpetedHallway - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Presets\ReverbPresets.cs startLine: 351 assemblies: - OpenTK.Audio.OpenAL @@ -511,12 +459,8 @@ items: fullName: OpenTK.Audio.OpenAL.ReverbPresets.Hallway type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Hallway - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Presets\ReverbPresets.cs startLine: 381 assemblies: - OpenTK.Audio.OpenAL @@ -540,12 +484,8 @@ items: fullName: OpenTK.Audio.OpenAL.ReverbPresets.StoneCorridor type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: StoneCorridor - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Presets\ReverbPresets.cs startLine: 411 assemblies: - OpenTK.Audio.OpenAL @@ -569,12 +509,8 @@ items: fullName: OpenTK.Audio.OpenAL.ReverbPresets.Alley type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Alley - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Presets\ReverbPresets.cs startLine: 441 assemblies: - OpenTK.Audio.OpenAL @@ -598,12 +534,8 @@ items: fullName: OpenTK.Audio.OpenAL.ReverbPresets.Forest type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Forest - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Presets\ReverbPresets.cs startLine: 471 assemblies: - OpenTK.Audio.OpenAL @@ -627,12 +559,8 @@ items: fullName: OpenTK.Audio.OpenAL.ReverbPresets.City type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: City - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Presets\ReverbPresets.cs startLine: 501 assemblies: - OpenTK.Audio.OpenAL @@ -656,12 +584,8 @@ items: fullName: OpenTK.Audio.OpenAL.ReverbPresets.Mountains type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Mountains - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Presets\ReverbPresets.cs startLine: 531 assemblies: - OpenTK.Audio.OpenAL @@ -685,12 +609,8 @@ items: fullName: OpenTK.Audio.OpenAL.ReverbPresets.Quarry type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Quarry - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Presets\ReverbPresets.cs startLine: 561 assemblies: - OpenTK.Audio.OpenAL @@ -714,12 +634,8 @@ items: fullName: OpenTK.Audio.OpenAL.ReverbPresets.Plain type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Plain - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Presets\ReverbPresets.cs startLine: 591 assemblies: - OpenTK.Audio.OpenAL @@ -743,12 +659,8 @@ items: fullName: OpenTK.Audio.OpenAL.ReverbPresets.ParkingLot type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ParkingLot - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Presets\ReverbPresets.cs startLine: 621 assemblies: - OpenTK.Audio.OpenAL @@ -772,12 +684,8 @@ items: fullName: OpenTK.Audio.OpenAL.ReverbPresets.Sewerpipe type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Sewerpipe - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Presets\ReverbPresets.cs startLine: 651 assemblies: - OpenTK.Audio.OpenAL @@ -801,12 +709,8 @@ items: fullName: OpenTK.Audio.OpenAL.ReverbPresets.Underwater type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Underwater - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Presets\ReverbPresets.cs startLine: 681 assemblies: - OpenTK.Audio.OpenAL @@ -830,12 +734,8 @@ items: fullName: OpenTK.Audio.OpenAL.ReverbPresets.Drugged type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Drugged - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Presets\ReverbPresets.cs startLine: 711 assemblies: - OpenTK.Audio.OpenAL @@ -859,12 +759,8 @@ items: fullName: OpenTK.Audio.OpenAL.ReverbPresets.Dizzy type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Dizzy - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Presets\ReverbPresets.cs startLine: 741 assemblies: - OpenTK.Audio.OpenAL @@ -888,12 +784,8 @@ items: fullName: OpenTK.Audio.OpenAL.ReverbPresets.Psychotic type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Psychotic - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Presets\ReverbPresets.cs startLine: 771 assemblies: - OpenTK.Audio.OpenAL @@ -917,12 +809,8 @@ items: fullName: OpenTK.Audio.OpenAL.ReverbPresets.CastleSmallRoom type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CastleSmallRoom - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Presets\ReverbPresets.cs startLine: 803 assemblies: - OpenTK.Audio.OpenAL @@ -946,12 +834,8 @@ items: fullName: OpenTK.Audio.OpenAL.ReverbPresets.CastleShortPassage type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CastleShortPassage - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Presets\ReverbPresets.cs startLine: 833 assemblies: - OpenTK.Audio.OpenAL @@ -975,12 +859,8 @@ items: fullName: OpenTK.Audio.OpenAL.ReverbPresets.CastleMediumRoom type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CastleMediumRoom - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Presets\ReverbPresets.cs startLine: 863 assemblies: - OpenTK.Audio.OpenAL @@ -1004,12 +884,8 @@ items: fullName: OpenTK.Audio.OpenAL.ReverbPresets.CastleLargeRoom type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CastleLargeRoom - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Presets\ReverbPresets.cs startLine: 893 assemblies: - OpenTK.Audio.OpenAL @@ -1033,12 +909,8 @@ items: fullName: OpenTK.Audio.OpenAL.ReverbPresets.CastleLongPassage type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CastleLongPassage - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Presets\ReverbPresets.cs startLine: 923 assemblies: - OpenTK.Audio.OpenAL @@ -1062,12 +934,8 @@ items: fullName: OpenTK.Audio.OpenAL.ReverbPresets.CastleHall type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CastleHall - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Presets\ReverbPresets.cs startLine: 953 assemblies: - OpenTK.Audio.OpenAL @@ -1091,12 +959,8 @@ items: fullName: OpenTK.Audio.OpenAL.ReverbPresets.CastleCupboard type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CastleCupboard - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Presets\ReverbPresets.cs startLine: 983 assemblies: - OpenTK.Audio.OpenAL @@ -1120,12 +984,8 @@ items: fullName: OpenTK.Audio.OpenAL.ReverbPresets.CastleCourtyard type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CastleCourtyard - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Presets\ReverbPresets.cs startLine: 1013 assemblies: - OpenTK.Audio.OpenAL @@ -1149,12 +1009,8 @@ items: fullName: OpenTK.Audio.OpenAL.ReverbPresets.CastleAlcove type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CastleAlcove - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Presets\ReverbPresets.cs startLine: 1043 assemblies: - OpenTK.Audio.OpenAL @@ -1178,12 +1034,8 @@ items: fullName: OpenTK.Audio.OpenAL.ReverbPresets.FactorySmallRoom type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: FactorySmallRoom - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Presets\ReverbPresets.cs startLine: 1075 assemblies: - OpenTK.Audio.OpenAL @@ -1207,12 +1059,8 @@ items: fullName: OpenTK.Audio.OpenAL.ReverbPresets.FactoryShortPassage type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: FactoryShortPassage - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Presets\ReverbPresets.cs startLine: 1105 assemblies: - OpenTK.Audio.OpenAL @@ -1236,12 +1084,8 @@ items: fullName: OpenTK.Audio.OpenAL.ReverbPresets.FactoryMediumRoom type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: FactoryMediumRoom - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Presets\ReverbPresets.cs startLine: 1135 assemblies: - OpenTK.Audio.OpenAL @@ -1265,12 +1109,8 @@ items: fullName: OpenTK.Audio.OpenAL.ReverbPresets.FactoryLargeRoom type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: FactoryLargeRoom - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Presets\ReverbPresets.cs startLine: 1165 assemblies: - OpenTK.Audio.OpenAL @@ -1294,12 +1134,8 @@ items: fullName: OpenTK.Audio.OpenAL.ReverbPresets.FactoryLongPassage type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: FactoryLongPassage - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Presets\ReverbPresets.cs startLine: 1195 assemblies: - OpenTK.Audio.OpenAL @@ -1323,12 +1159,8 @@ items: fullName: OpenTK.Audio.OpenAL.ReverbPresets.FactoryHall type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: FactoryHall - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Presets\ReverbPresets.cs startLine: 1225 assemblies: - OpenTK.Audio.OpenAL @@ -1352,12 +1184,8 @@ items: fullName: OpenTK.Audio.OpenAL.ReverbPresets.FactoryCupboard type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: FactoryCupboard - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Presets\ReverbPresets.cs startLine: 1255 assemblies: - OpenTK.Audio.OpenAL @@ -1381,12 +1209,8 @@ items: fullName: OpenTK.Audio.OpenAL.ReverbPresets.FactoryCourtyard type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: FactoryCourtyard - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Presets\ReverbPresets.cs startLine: 1285 assemblies: - OpenTK.Audio.OpenAL @@ -1410,12 +1234,8 @@ items: fullName: OpenTK.Audio.OpenAL.ReverbPresets.FactoryAlcove type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: FactoryAlcove - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Presets\ReverbPresets.cs startLine: 1315 assemblies: - OpenTK.Audio.OpenAL @@ -1439,12 +1259,8 @@ items: fullName: OpenTK.Audio.OpenAL.ReverbPresets.IcePalaceSmallRoom type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: IcePalaceSmallRoom - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Presets\ReverbPresets.cs startLine: 1347 assemblies: - OpenTK.Audio.OpenAL @@ -1468,12 +1284,8 @@ items: fullName: OpenTK.Audio.OpenAL.ReverbPresets.IcePalaceShortPassage type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: IcePalaceShortPassage - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Presets\ReverbPresets.cs startLine: 1377 assemblies: - OpenTK.Audio.OpenAL @@ -1497,12 +1309,8 @@ items: fullName: OpenTK.Audio.OpenAL.ReverbPresets.IcePalaceMediumRoom type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: IcePalaceMediumRoom - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Presets\ReverbPresets.cs startLine: 1407 assemblies: - OpenTK.Audio.OpenAL @@ -1526,12 +1334,8 @@ items: fullName: OpenTK.Audio.OpenAL.ReverbPresets.IcePalaceLargeRoom type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: IcePalaceLargeRoom - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Presets\ReverbPresets.cs startLine: 1437 assemblies: - OpenTK.Audio.OpenAL @@ -1555,12 +1359,8 @@ items: fullName: OpenTK.Audio.OpenAL.ReverbPresets.IcePalaceLongPassage type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: IcePalaceLongPassage - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Presets\ReverbPresets.cs startLine: 1467 assemblies: - OpenTK.Audio.OpenAL @@ -1584,12 +1384,8 @@ items: fullName: OpenTK.Audio.OpenAL.ReverbPresets.IcePalaceHall type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: IcePalaceHall - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Presets\ReverbPresets.cs startLine: 1497 assemblies: - OpenTK.Audio.OpenAL @@ -1613,12 +1409,8 @@ items: fullName: OpenTK.Audio.OpenAL.ReverbPresets.IcePalaceCupboard type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: IcePalaceCupboard - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Presets\ReverbPresets.cs startLine: 1527 assemblies: - OpenTK.Audio.OpenAL @@ -1642,12 +1434,8 @@ items: fullName: OpenTK.Audio.OpenAL.ReverbPresets.IcePalaceCourtyard type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: IcePalaceCourtyard - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Presets\ReverbPresets.cs startLine: 1557 assemblies: - OpenTK.Audio.OpenAL @@ -1671,12 +1459,8 @@ items: fullName: OpenTK.Audio.OpenAL.ReverbPresets.IcePalaceAlcove type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: IcePalaceAlcove - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Presets\ReverbPresets.cs startLine: 1587 assemblies: - OpenTK.Audio.OpenAL @@ -1700,12 +1484,8 @@ items: fullName: OpenTK.Audio.OpenAL.ReverbPresets.SpaceStationSmallRoom type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SpaceStationSmallRoom - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Presets\ReverbPresets.cs startLine: 1619 assemblies: - OpenTK.Audio.OpenAL @@ -1729,12 +1509,8 @@ items: fullName: OpenTK.Audio.OpenAL.ReverbPresets.SpaceStationShortPassage type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SpaceStationShortPassage - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Presets\ReverbPresets.cs startLine: 1649 assemblies: - OpenTK.Audio.OpenAL @@ -1758,12 +1534,8 @@ items: fullName: OpenTK.Audio.OpenAL.ReverbPresets.SpaceStationMediumRoom type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SpaceStationMediumRoom - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Presets\ReverbPresets.cs startLine: 1679 assemblies: - OpenTK.Audio.OpenAL @@ -1787,12 +1559,8 @@ items: fullName: OpenTK.Audio.OpenAL.ReverbPresets.SpaceStationLargeRoom type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SpaceStationLargeRoom - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Presets\ReverbPresets.cs startLine: 1709 assemblies: - OpenTK.Audio.OpenAL @@ -1816,12 +1584,8 @@ items: fullName: OpenTK.Audio.OpenAL.ReverbPresets.SpaceStationLongPassage type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SpaceStationLongPassage - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Presets\ReverbPresets.cs startLine: 1739 assemblies: - OpenTK.Audio.OpenAL @@ -1845,12 +1609,8 @@ items: fullName: OpenTK.Audio.OpenAL.ReverbPresets.SpaceStationHall type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SpaceStationHall - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Presets\ReverbPresets.cs startLine: 1769 assemblies: - OpenTK.Audio.OpenAL @@ -1874,12 +1634,8 @@ items: fullName: OpenTK.Audio.OpenAL.ReverbPresets.SpaceStationCupboard type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SpaceStationCupboard - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Presets\ReverbPresets.cs startLine: 1799 assemblies: - OpenTK.Audio.OpenAL @@ -1903,12 +1659,8 @@ items: fullName: OpenTK.Audio.OpenAL.ReverbPresets.SpaceStationAlcove type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SpaceStationAlcove - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Presets\ReverbPresets.cs startLine: 1829 assemblies: - OpenTK.Audio.OpenAL @@ -1932,12 +1684,8 @@ items: fullName: OpenTK.Audio.OpenAL.ReverbPresets.WoodenGalleonSmallRoom type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: WoodenGalleonSmallRoom - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Presets\ReverbPresets.cs startLine: 1861 assemblies: - OpenTK.Audio.OpenAL @@ -1961,12 +1709,8 @@ items: fullName: OpenTK.Audio.OpenAL.ReverbPresets.WoodenGalleonShortPassage type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: WoodenGalleonShortPassage - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Presets\ReverbPresets.cs startLine: 1891 assemblies: - OpenTK.Audio.OpenAL @@ -1990,12 +1734,8 @@ items: fullName: OpenTK.Audio.OpenAL.ReverbPresets.WoodenGalleonMediumRoom type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: WoodenGalleonMediumRoom - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Presets\ReverbPresets.cs startLine: 1921 assemblies: - OpenTK.Audio.OpenAL @@ -2019,12 +1759,8 @@ items: fullName: OpenTK.Audio.OpenAL.ReverbPresets.WoodenGalleonLargeRoom type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: WoodenGalleonLargeRoom - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Presets\ReverbPresets.cs startLine: 1951 assemblies: - OpenTK.Audio.OpenAL @@ -2048,12 +1784,8 @@ items: fullName: OpenTK.Audio.OpenAL.ReverbPresets.WoodenGalleonLongPassage type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: WoodenGalleonLongPassage - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Presets\ReverbPresets.cs startLine: 1981 assemblies: - OpenTK.Audio.OpenAL @@ -2077,12 +1809,8 @@ items: fullName: OpenTK.Audio.OpenAL.ReverbPresets.WoodenGalleonHall type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: WoodenGalleonHall - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Presets\ReverbPresets.cs startLine: 2011 assemblies: - OpenTK.Audio.OpenAL @@ -2106,12 +1834,8 @@ items: fullName: OpenTK.Audio.OpenAL.ReverbPresets.WoodenGalleonCupboard type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: WoodenGalleonCupboard - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Presets\ReverbPresets.cs startLine: 2041 assemblies: - OpenTK.Audio.OpenAL @@ -2135,12 +1859,8 @@ items: fullName: OpenTK.Audio.OpenAL.ReverbPresets.WoodenGalleonCourtyard type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: WoodenGalleonCourtyard - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Presets\ReverbPresets.cs startLine: 2071 assemblies: - OpenTK.Audio.OpenAL @@ -2164,12 +1884,8 @@ items: fullName: OpenTK.Audio.OpenAL.ReverbPresets.WoodenGalleonAlcove type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: WoodenGalleonAlcove - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Presets\ReverbPresets.cs startLine: 2101 assemblies: - OpenTK.Audio.OpenAL @@ -2193,12 +1909,8 @@ items: fullName: OpenTK.Audio.OpenAL.ReverbPresets.SportEmptyStadium type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SportEmptyStadium - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Presets\ReverbPresets.cs startLine: 2133 assemblies: - OpenTK.Audio.OpenAL @@ -2222,12 +1934,8 @@ items: fullName: OpenTK.Audio.OpenAL.ReverbPresets.SportSquashCourt type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SportSquashCourt - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Presets\ReverbPresets.cs startLine: 2163 assemblies: - OpenTK.Audio.OpenAL @@ -2251,12 +1959,8 @@ items: fullName: OpenTK.Audio.OpenAL.ReverbPresets.SportSmallSwimmingPool type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SportSmallSwimmingPool - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Presets\ReverbPresets.cs startLine: 2193 assemblies: - OpenTK.Audio.OpenAL @@ -2280,12 +1984,8 @@ items: fullName: OpenTK.Audio.OpenAL.ReverbPresets.SportLargeSwimmingPool type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SportLargeSwimmingPool - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Presets\ReverbPresets.cs startLine: 2223 assemblies: - OpenTK.Audio.OpenAL @@ -2309,12 +2009,8 @@ items: fullName: OpenTK.Audio.OpenAL.ReverbPresets.SportGymnasium type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SportGymnasium - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Presets\ReverbPresets.cs startLine: 2253 assemblies: - OpenTK.Audio.OpenAL @@ -2338,12 +2034,8 @@ items: fullName: OpenTK.Audio.OpenAL.ReverbPresets.SportFullStadium type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SportFullStadium - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Presets\ReverbPresets.cs startLine: 2283 assemblies: - OpenTK.Audio.OpenAL @@ -2367,12 +2059,8 @@ items: fullName: OpenTK.Audio.OpenAL.ReverbPresets.SportStadiumTannoy type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SportStadiumTannoy - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Presets\ReverbPresets.cs startLine: 2313 assemblies: - OpenTK.Audio.OpenAL @@ -2396,12 +2084,8 @@ items: fullName: OpenTK.Audio.OpenAL.ReverbPresets.PrefabWorkshop type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: PrefabWorkshop - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Presets\ReverbPresets.cs startLine: 2345 assemblies: - OpenTK.Audio.OpenAL @@ -2425,12 +2109,8 @@ items: fullName: OpenTK.Audio.OpenAL.ReverbPresets.PrefabSchoolRoom type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: PrefabSchoolRoom - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Presets\ReverbPresets.cs startLine: 2375 assemblies: - OpenTK.Audio.OpenAL @@ -2454,12 +2134,8 @@ items: fullName: OpenTK.Audio.OpenAL.ReverbPresets.PrefabPractiseRoom type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: PrefabPractiseRoom - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Presets\ReverbPresets.cs startLine: 2405 assemblies: - OpenTK.Audio.OpenAL @@ -2483,12 +2159,8 @@ items: fullName: OpenTK.Audio.OpenAL.ReverbPresets.PrefabOuthouse type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: PrefabOuthouse - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Presets\ReverbPresets.cs startLine: 2435 assemblies: - OpenTK.Audio.OpenAL @@ -2512,12 +2184,8 @@ items: fullName: OpenTK.Audio.OpenAL.ReverbPresets.PrefabCaravan type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: PrefabCaravan - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Presets\ReverbPresets.cs startLine: 2465 assemblies: - OpenTK.Audio.OpenAL @@ -2541,12 +2209,8 @@ items: fullName: OpenTK.Audio.OpenAL.ReverbPresets.DomeTomb type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DomeTomb - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Presets\ReverbPresets.cs startLine: 2497 assemblies: - OpenTK.Audio.OpenAL @@ -2570,12 +2234,8 @@ items: fullName: OpenTK.Audio.OpenAL.ReverbPresets.PipeSmall type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: PipeSmall - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Presets\ReverbPresets.cs startLine: 2527 assemblies: - OpenTK.Audio.OpenAL @@ -2599,12 +2259,8 @@ items: fullName: OpenTK.Audio.OpenAL.ReverbPresets.DomeSaintPauls type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DomeSaintPauls - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Presets\ReverbPresets.cs startLine: 2557 assemblies: - OpenTK.Audio.OpenAL @@ -2628,12 +2284,8 @@ items: fullName: OpenTK.Audio.OpenAL.ReverbPresets.PipeLongThin type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: PipeLongThin - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Presets\ReverbPresets.cs startLine: 2587 assemblies: - OpenTK.Audio.OpenAL @@ -2657,12 +2309,8 @@ items: fullName: OpenTK.Audio.OpenAL.ReverbPresets.PipeLarge type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: PipeLarge - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Presets\ReverbPresets.cs startLine: 2617 assemblies: - OpenTK.Audio.OpenAL @@ -2686,12 +2334,8 @@ items: fullName: OpenTK.Audio.OpenAL.ReverbPresets.PipeResonant type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: PipeResonant - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Presets\ReverbPresets.cs startLine: 2647 assemblies: - OpenTK.Audio.OpenAL @@ -2715,12 +2359,8 @@ items: fullName: OpenTK.Audio.OpenAL.ReverbPresets.OutdoorsBackyard type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: OutdoorsBackyard - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Presets\ReverbPresets.cs startLine: 2679 assemblies: - OpenTK.Audio.OpenAL @@ -2744,12 +2384,8 @@ items: fullName: OpenTK.Audio.OpenAL.ReverbPresets.OutdoorsRollingPlains type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: OutdoorsRollingPlains - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Presets\ReverbPresets.cs startLine: 2709 assemblies: - OpenTK.Audio.OpenAL @@ -2773,12 +2409,8 @@ items: fullName: OpenTK.Audio.OpenAL.ReverbPresets.OutdoorsDeepCanyon type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: OutdoorsDeepCanyon - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Presets\ReverbPresets.cs startLine: 2739 assemblies: - OpenTK.Audio.OpenAL @@ -2802,12 +2434,8 @@ items: fullName: OpenTK.Audio.OpenAL.ReverbPresets.OutdoorsCreek type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: OutdoorsCreek - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Presets\ReverbPresets.cs startLine: 2769 assemblies: - OpenTK.Audio.OpenAL @@ -2831,12 +2459,8 @@ items: fullName: OpenTK.Audio.OpenAL.ReverbPresets.OutdoorsValley type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: OutdoorsValley - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Presets\ReverbPresets.cs startLine: 2799 assemblies: - OpenTK.Audio.OpenAL @@ -2860,12 +2484,8 @@ items: fullName: OpenTK.Audio.OpenAL.ReverbPresets.MoodHeaven type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MoodHeaven - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Presets\ReverbPresets.cs startLine: 2831 assemblies: - OpenTK.Audio.OpenAL @@ -2889,12 +2509,8 @@ items: fullName: OpenTK.Audio.OpenAL.ReverbPresets.MoodHell type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MoodHell - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Presets\ReverbPresets.cs startLine: 2861 assemblies: - OpenTK.Audio.OpenAL @@ -2918,12 +2534,8 @@ items: fullName: OpenTK.Audio.OpenAL.ReverbPresets.MoodMemory type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MoodMemory - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Presets\ReverbPresets.cs startLine: 2891 assemblies: - OpenTK.Audio.OpenAL @@ -2947,12 +2559,8 @@ items: fullName: OpenTK.Audio.OpenAL.ReverbPresets.DrivingCommentator type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DrivingCommentator - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Presets\ReverbPresets.cs startLine: 2923 assemblies: - OpenTK.Audio.OpenAL @@ -2976,12 +2584,8 @@ items: fullName: OpenTK.Audio.OpenAL.ReverbPresets.DrivingPitGarage type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DrivingPitGarage - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Presets\ReverbPresets.cs startLine: 2953 assemblies: - OpenTK.Audio.OpenAL @@ -3005,12 +2609,8 @@ items: fullName: OpenTK.Audio.OpenAL.ReverbPresets.DrivingInCarRacer type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DrivingInCarRacer - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Presets\ReverbPresets.cs startLine: 2983 assemblies: - OpenTK.Audio.OpenAL @@ -3034,12 +2634,8 @@ items: fullName: OpenTK.Audio.OpenAL.ReverbPresets.DrivingInCarSports type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DrivingInCarSports - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Presets\ReverbPresets.cs startLine: 3013 assemblies: - OpenTK.Audio.OpenAL @@ -3063,12 +2659,8 @@ items: fullName: OpenTK.Audio.OpenAL.ReverbPresets.DrivingInCarLuxury type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DrivingInCarLuxury - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Presets\ReverbPresets.cs startLine: 3043 assemblies: - OpenTK.Audio.OpenAL @@ -3092,12 +2684,8 @@ items: fullName: OpenTK.Audio.OpenAL.ReverbPresets.DrivingFullGrandStand type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DrivingFullGrandStand - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Presets\ReverbPresets.cs startLine: 3073 assemblies: - OpenTK.Audio.OpenAL @@ -3121,12 +2709,8 @@ items: fullName: OpenTK.Audio.OpenAL.ReverbPresets.DrivingEmptyGrandStand type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DrivingEmptyGrandStand - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Presets\ReverbPresets.cs startLine: 3103 assemblies: - OpenTK.Audio.OpenAL @@ -3150,12 +2734,8 @@ items: fullName: OpenTK.Audio.OpenAL.ReverbPresets.DrivingTunnel type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DrivingTunnel - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Presets\ReverbPresets.cs startLine: 3133 assemblies: - OpenTK.Audio.OpenAL @@ -3179,12 +2759,8 @@ items: fullName: OpenTK.Audio.OpenAL.ReverbPresets.CityStreets type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CityStreets - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Presets\ReverbPresets.cs startLine: 3165 assemblies: - OpenTK.Audio.OpenAL @@ -3208,12 +2784,8 @@ items: fullName: OpenTK.Audio.OpenAL.ReverbPresets.CitySubway type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CitySubway - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Presets\ReverbPresets.cs startLine: 3195 assemblies: - OpenTK.Audio.OpenAL @@ -3237,12 +2809,8 @@ items: fullName: OpenTK.Audio.OpenAL.ReverbPresets.CityMuseum type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CityMuseum - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Presets\ReverbPresets.cs startLine: 3225 assemblies: - OpenTK.Audio.OpenAL @@ -3266,12 +2834,8 @@ items: fullName: OpenTK.Audio.OpenAL.ReverbPresets.CityLibrary type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CityLibrary - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Presets\ReverbPresets.cs startLine: 3255 assemblies: - OpenTK.Audio.OpenAL @@ -3295,12 +2859,8 @@ items: fullName: OpenTK.Audio.OpenAL.ReverbPresets.CityUnderpass type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CityUnderpass - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Presets\ReverbPresets.cs startLine: 3285 assemblies: - OpenTK.Audio.OpenAL @@ -3324,12 +2884,8 @@ items: fullName: OpenTK.Audio.OpenAL.ReverbPresets.CityAbandoned type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CityAbandoned - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Presets\ReverbPresets.cs startLine: 3315 assemblies: - OpenTK.Audio.OpenAL @@ -3353,12 +2909,8 @@ items: fullName: OpenTK.Audio.OpenAL.ReverbPresets.DustyRoom type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DustyRoom - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Presets\ReverbPresets.cs startLine: 3347 assemblies: - OpenTK.Audio.OpenAL @@ -3382,12 +2934,8 @@ items: fullName: OpenTK.Audio.OpenAL.ReverbPresets.Chapel type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Chapel - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Presets\ReverbPresets.cs startLine: 3377 assemblies: - OpenTK.Audio.OpenAL @@ -3411,12 +2959,8 @@ items: fullName: OpenTK.Audio.OpenAL.ReverbPresets.SmallWaterRoom type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SmallWaterRoom - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbPresets.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Presets\ReverbPresets.cs startLine: 3407 assemblies: - OpenTK.Audio.OpenAL diff --git a/api/OpenTK.Audio.OpenAL.ReverbProperties.yml b/api/OpenTK.Audio.OpenAL.ReverbProperties.yml index 9a53cbe8..dfe4c678 100644 --- a/api/OpenTK.Audio.OpenAL.ReverbProperties.yml +++ b/api/OpenTK.Audio.OpenAL.ReverbProperties.yml @@ -37,12 +37,8 @@ items: fullName: OpenTK.Audio.OpenAL.ReverbProperties type: Struct source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbProperties.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ReverbProperties - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbProperties.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Presets\ReverbProperties.cs startLine: 16 assemblies: - OpenTK.Audio.OpenAL @@ -71,12 +67,8 @@ items: fullName: OpenTK.Audio.OpenAL.ReverbProperties.Density type: Property source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbProperties.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Density - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbProperties.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Presets\ReverbProperties.cs startLine: 21 assemblies: - OpenTK.Audio.OpenAL @@ -102,12 +94,8 @@ items: fullName: OpenTK.Audio.OpenAL.ReverbProperties.Diffusion type: Property source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbProperties.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Diffusion - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbProperties.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Presets\ReverbProperties.cs startLine: 26 assemblies: - OpenTK.Audio.OpenAL @@ -133,12 +121,8 @@ items: fullName: OpenTK.Audio.OpenAL.ReverbProperties.Gain type: Property source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbProperties.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Gain - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbProperties.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Presets\ReverbProperties.cs startLine: 31 assemblies: - OpenTK.Audio.OpenAL @@ -164,12 +148,8 @@ items: fullName: OpenTK.Audio.OpenAL.ReverbProperties.GainHF type: Property source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbProperties.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GainHF - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbProperties.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Presets\ReverbProperties.cs startLine: 36 assemblies: - OpenTK.Audio.OpenAL @@ -195,12 +175,8 @@ items: fullName: OpenTK.Audio.OpenAL.ReverbProperties.GainLF type: Property source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbProperties.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GainLF - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbProperties.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Presets\ReverbProperties.cs startLine: 41 assemblies: - OpenTK.Audio.OpenAL @@ -226,12 +202,8 @@ items: fullName: OpenTK.Audio.OpenAL.ReverbProperties.DecayTime type: Property source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbProperties.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DecayTime - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbProperties.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Presets\ReverbProperties.cs startLine: 46 assemblies: - OpenTK.Audio.OpenAL @@ -257,12 +229,8 @@ items: fullName: OpenTK.Audio.OpenAL.ReverbProperties.DecayHFRatio type: Property source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbProperties.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DecayHFRatio - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbProperties.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Presets\ReverbProperties.cs startLine: 51 assemblies: - OpenTK.Audio.OpenAL @@ -288,12 +256,8 @@ items: fullName: OpenTK.Audio.OpenAL.ReverbProperties.DecayLFRatio type: Property source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbProperties.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DecayLFRatio - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbProperties.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Presets\ReverbProperties.cs startLine: 56 assemblies: - OpenTK.Audio.OpenAL @@ -319,12 +283,8 @@ items: fullName: OpenTK.Audio.OpenAL.ReverbProperties.ReflectionsGain type: Property source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbProperties.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ReflectionsGain - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbProperties.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Presets\ReverbProperties.cs startLine: 61 assemblies: - OpenTK.Audio.OpenAL @@ -350,12 +310,8 @@ items: fullName: OpenTK.Audio.OpenAL.ReverbProperties.ReflectionsDelay type: Property source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbProperties.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ReflectionsDelay - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbProperties.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Presets\ReverbProperties.cs startLine: 66 assemblies: - OpenTK.Audio.OpenAL @@ -381,12 +337,8 @@ items: fullName: OpenTK.Audio.OpenAL.ReverbProperties.ReflectionsPan type: Property source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbProperties.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ReflectionsPan - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbProperties.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Presets\ReverbProperties.cs startLine: 71 assemblies: - OpenTK.Audio.OpenAL @@ -412,12 +364,8 @@ items: fullName: OpenTK.Audio.OpenAL.ReverbProperties.LateReverbGain type: Property source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbProperties.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: LateReverbGain - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbProperties.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Presets\ReverbProperties.cs startLine: 76 assemblies: - OpenTK.Audio.OpenAL @@ -443,12 +391,8 @@ items: fullName: OpenTK.Audio.OpenAL.ReverbProperties.LateReverbDelay type: Property source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbProperties.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: LateReverbDelay - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbProperties.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Presets\ReverbProperties.cs startLine: 81 assemblies: - OpenTK.Audio.OpenAL @@ -474,12 +418,8 @@ items: fullName: OpenTK.Audio.OpenAL.ReverbProperties.LateReverbPan type: Property source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbProperties.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: LateReverbPan - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbProperties.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Presets\ReverbProperties.cs startLine: 86 assemblies: - OpenTK.Audio.OpenAL @@ -505,12 +445,8 @@ items: fullName: OpenTK.Audio.OpenAL.ReverbProperties.EchoTime type: Property source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbProperties.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: EchoTime - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbProperties.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Presets\ReverbProperties.cs startLine: 91 assemblies: - OpenTK.Audio.OpenAL @@ -536,12 +472,8 @@ items: fullName: OpenTK.Audio.OpenAL.ReverbProperties.EchoDepth type: Property source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbProperties.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: EchoDepth - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbProperties.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Presets\ReverbProperties.cs startLine: 96 assemblies: - OpenTK.Audio.OpenAL @@ -567,12 +499,8 @@ items: fullName: OpenTK.Audio.OpenAL.ReverbProperties.ModulationTime type: Property source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbProperties.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ModulationTime - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbProperties.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Presets\ReverbProperties.cs startLine: 101 assemblies: - OpenTK.Audio.OpenAL @@ -598,12 +526,8 @@ items: fullName: OpenTK.Audio.OpenAL.ReverbProperties.ModulationDepth type: Property source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbProperties.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ModulationDepth - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbProperties.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Presets\ReverbProperties.cs startLine: 106 assemblies: - OpenTK.Audio.OpenAL @@ -629,12 +553,8 @@ items: fullName: OpenTK.Audio.OpenAL.ReverbProperties.AirAbsorptionGainHF type: Property source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbProperties.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: AirAbsorptionGainHF - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbProperties.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Presets\ReverbProperties.cs startLine: 111 assemblies: - OpenTK.Audio.OpenAL @@ -660,12 +580,8 @@ items: fullName: OpenTK.Audio.OpenAL.ReverbProperties.HFReference type: Property source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbProperties.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: HFReference - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbProperties.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Presets\ReverbProperties.cs startLine: 116 assemblies: - OpenTK.Audio.OpenAL @@ -691,12 +607,8 @@ items: fullName: OpenTK.Audio.OpenAL.ReverbProperties.LFReference type: Property source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbProperties.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: LFReference - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbProperties.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Presets\ReverbProperties.cs startLine: 121 assemblies: - OpenTK.Audio.OpenAL @@ -722,12 +634,8 @@ items: fullName: OpenTK.Audio.OpenAL.ReverbProperties.RoomRolloffFactor type: Property source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbProperties.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: RoomRolloffFactor - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbProperties.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Presets\ReverbProperties.cs startLine: 126 assemblies: - OpenTK.Audio.OpenAL @@ -753,12 +661,8 @@ items: fullName: OpenTK.Audio.OpenAL.ReverbProperties.DecayHFLimit type: Property source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbProperties.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DecayHFLimit - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbProperties.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Presets\ReverbProperties.cs startLine: 131 assemblies: - OpenTK.Audio.OpenAL @@ -784,12 +688,8 @@ items: fullName: OpenTK.Audio.OpenAL.ReverbProperties.ReverbProperties(float, float, float, float, float, float, float, float, float, float, OpenTK.Mathematics.Vector3, float, float, OpenTK.Mathematics.Vector3, float, float, float, float, float, float, float, float, int) type: Constructor source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbProperties.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/Creative.EFX/Presets/ReverbProperties.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\Creative.EFX\Presets\ReverbProperties.cs startLine: 159 assemblies: - OpenTK.Audio.OpenAL diff --git a/api/OpenTK.Audio.OpenAL.SourceDouble.yml b/api/OpenTK.Audio.OpenAL.SourceDouble.yml index 81a181f8..56167a84 100644 --- a/api/OpenTK.Audio.OpenAL.SourceDouble.yml +++ b/api/OpenTK.Audio.OpenAL.SourceDouble.yml @@ -14,12 +14,8 @@ items: fullName: OpenTK.Audio.OpenAL.SourceDouble type: Enum source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/SOFT.DeviceClock/Enums/SourceDouble.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SourceDouble - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/SOFT.DeviceClock/Enums/SourceDouble.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\SOFT.DeviceClock\Enums\SourceDouble.cs startLine: 6 assemblies: - OpenTK.Audio.OpenAL @@ -39,12 +35,8 @@ items: fullName: OpenTK.Audio.OpenAL.SourceDouble.SecOffsetClock type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/SOFT.DeviceClock/Enums/SourceDouble.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SecOffsetClock - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/SOFT.DeviceClock/Enums/SourceDouble.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\SOFT.DeviceClock\Enums\SourceDouble.cs startLine: 21 assemblies: - OpenTK.Audio.OpenAL diff --git a/api/OpenTK.Audio.OpenAL.SourceInteger64.yml b/api/OpenTK.Audio.OpenAL.SourceInteger64.yml index b1d3d815..9fc3b7ab 100644 --- a/api/OpenTK.Audio.OpenAL.SourceInteger64.yml +++ b/api/OpenTK.Audio.OpenAL.SourceInteger64.yml @@ -14,12 +14,8 @@ items: fullName: OpenTK.Audio.OpenAL.SourceInteger64 type: Enum source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/SOFT.DeviceClock/Enums/SourceInteger64.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SourceInteger64 - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/SOFT.DeviceClock/Enums/SourceInteger64.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\SOFT.DeviceClock\Enums\SourceInteger64.cs startLine: 6 assemblies: - OpenTK.Audio.OpenAL @@ -39,12 +35,8 @@ items: fullName: OpenTK.Audio.OpenAL.SourceInteger64.SampleOffsetClock type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/SOFT.DeviceClock/Enums/SourceInteger64.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SampleOffsetClock - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/SOFT.DeviceClock/Enums/SourceInteger64.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\SOFT.DeviceClock\Enums\SourceInteger64.cs startLine: 21 assemblies: - OpenTK.Audio.OpenAL diff --git a/api/OpenTK.Audio.OpenAL.SourceLatencyVector2d.yml b/api/OpenTK.Audio.OpenAL.SourceLatencyVector2d.yml index 4532209d..43ce911c 100644 --- a/api/OpenTK.Audio.OpenAL.SourceLatencyVector2d.yml +++ b/api/OpenTK.Audio.OpenAL.SourceLatencyVector2d.yml @@ -14,12 +14,8 @@ items: fullName: OpenTK.Audio.OpenAL.SourceLatencyVector2d type: Enum source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/SOFT.SourceLatency/Enums/SourceLatencyVector2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SourceLatencyVector2d - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/SOFT.SourceLatency/Enums/SourceLatencyVector2.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\SOFT.SourceLatency\Enums\SourceLatencyVector2.cs startLine: 18 assemblies: - OpenTK.Audio.OpenAL @@ -39,12 +35,8 @@ items: fullName: OpenTK.Audio.OpenAL.SourceLatencyVector2d.SecOffsetLatency type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/SOFT.SourceLatency/Enums/SourceLatencyVector2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SecOffsetLatency - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/SOFT.SourceLatency/Enums/SourceLatencyVector2.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\SOFT.SourceLatency\Enums\SourceLatencyVector2.cs startLine: 26 assemblies: - OpenTK.Audio.OpenAL @@ -54,7 +46,7 @@ items: expressed in seconds. This attribute is read-only. - AL_SEC_OFFSET_LATENCY_SOFT + AL_SEC_OFFSET_LATENCY_SOFT. example: [] syntax: content: SecOffsetLatency = 4609 diff --git a/api/OpenTK.Audio.OpenAL.SourceLatencyVector2i.yml b/api/OpenTK.Audio.OpenAL.SourceLatencyVector2i.yml index 8c053613..937ebf2f 100644 --- a/api/OpenTK.Audio.OpenAL.SourceLatencyVector2i.yml +++ b/api/OpenTK.Audio.OpenAL.SourceLatencyVector2i.yml @@ -14,12 +14,8 @@ items: fullName: OpenTK.Audio.OpenAL.SourceLatencyVector2i type: Enum source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/SOFT.SourceLatency/Enums/SourceLatencyVector2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SourceLatencyVector2i - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/SOFT.SourceLatency/Enums/SourceLatencyVector2.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\SOFT.SourceLatency\Enums\SourceLatencyVector2.cs startLine: 6 assemblies: - OpenTK.Audio.OpenAL @@ -39,12 +35,8 @@ items: fullName: OpenTK.Audio.OpenAL.SourceLatencyVector2i.SampleOffsetLatency type: Field source: - remote: - path: src/OpenAL/OpenTK.Audio.OpenAL/Extensions/SOFT.SourceLatency/Enums/SourceLatencyVector2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SampleOffsetLatency - path: opentk/src/OpenAL/OpenTK.Audio.OpenAL/Extensions/SOFT.SourceLatency/Enums/SourceLatencyVector2.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenAL\OpenTK.Audio.OpenAL\Extensions\SOFT.SourceLatency\Enums\SourceLatencyVector2.cs startLine: 14 assemblies: - OpenTK.Audio.OpenAL @@ -56,7 +48,7 @@ items: of a second). This attribute is read-only. - AL_SAMPLE_OFFSET_LATENCY_SOFT + AL_SAMPLE_OFFSET_LATENCY_SOFT. example: [] syntax: content: SampleOffsetLatency = 4608 diff --git a/api/OpenTK.Compute.Native.CLBase.yml b/api/OpenTK.Compute.Native.CLBase.yml index e61e19be..ca16ed59 100644 --- a/api/OpenTK.Compute.Native.CLBase.yml +++ b/api/OpenTK.Compute.Native.CLBase.yml @@ -14,12 +14,8 @@ items: fullName: OpenTK.Compute.Native.CLBase type: Class source: - remote: - path: src/OpenTK.Compute/Native/CLBase.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CLBase - path: opentk/src/OpenTK.Compute/Native/CLBase.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\Native\CLBase.cs startLine: 7 assemblies: - OpenTK.Compute @@ -54,12 +50,8 @@ items: fullName: OpenTK.Compute.Native.CLBase.RegisterOpenCLResolver() type: Method source: - remote: - path: src/OpenTK.Compute/Native/CLBase.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: RegisterOpenCLResolver - path: opentk/src/OpenTK.Compute/Native/CLBase.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\Native\CLBase.cs startLine: 13 assemblies: - OpenTK.Compute diff --git a/api/OpenTK.Compute.OpenCL.AddressingMode.yml b/api/OpenTK.Compute.OpenCL.AddressingMode.yml index 963aa12a..9f70c23b 100644 --- a/api/OpenTK.Compute.OpenCL.AddressingMode.yml +++ b/api/OpenTK.Compute.OpenCL.AddressingMode.yml @@ -18,12 +18,8 @@ items: fullName: OpenTK.Compute.OpenCL.AddressingMode type: Enum source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: AddressingMode - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 346 assemblies: - OpenTK.Compute @@ -43,12 +39,8 @@ items: fullName: OpenTK.Compute.OpenCL.AddressingMode.None type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: None - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 348 assemblies: - OpenTK.Compute @@ -69,12 +61,8 @@ items: fullName: OpenTK.Compute.OpenCL.AddressingMode.ClampToEdge type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ClampToEdge - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 349 assemblies: - OpenTK.Compute @@ -95,12 +83,8 @@ items: fullName: OpenTK.Compute.OpenCL.AddressingMode.Clamp type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Clamp - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 350 assemblies: - OpenTK.Compute @@ -121,12 +105,8 @@ items: fullName: OpenTK.Compute.OpenCL.AddressingMode.Repeat type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Repeat - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 351 assemblies: - OpenTK.Compute @@ -147,12 +127,8 @@ items: fullName: OpenTK.Compute.OpenCL.AddressingMode.MirroredRepeat type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MirroredRepeat - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 352 assemblies: - OpenTK.Compute diff --git a/api/OpenTK.Compute.OpenCL.BufferCreateType.yml b/api/OpenTK.Compute.OpenCL.BufferCreateType.yml index 630d9e81..e8f6ec3b 100644 --- a/api/OpenTK.Compute.OpenCL.BufferCreateType.yml +++ b/api/OpenTK.Compute.OpenCL.BufferCreateType.yml @@ -14,12 +14,8 @@ items: fullName: OpenTK.Compute.OpenCL.BufferCreateType type: Enum source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: BufferCreateType - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 214 assemblies: - OpenTK.Compute @@ -39,12 +35,8 @@ items: fullName: OpenTK.Compute.OpenCL.BufferCreateType.Region type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Region - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 216 assemblies: - OpenTK.Compute diff --git a/api/OpenTK.Compute.OpenCL.CL.ClEventCallback.yml b/api/OpenTK.Compute.OpenCL.CL.ClEventCallback.yml index 30bef2ec..e0fa9ac4 100644 --- a/api/OpenTK.Compute.OpenCL.CL.ClEventCallback.yml +++ b/api/OpenTK.Compute.OpenCL.CL.ClEventCallback.yml @@ -13,12 +13,8 @@ items: fullName: OpenTK.Compute.OpenCL.CL.ClEventCallback type: Delegate source: - remote: - path: src/OpenTK.Compute/OpenCL/CL.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ClEventCallback - path: opentk/src/OpenTK.Compute/OpenCL/CL.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CL.cs startLine: 16 assemblies: - OpenTK.Compute diff --git a/api/OpenTK.Compute.OpenCL.CL.yml b/api/OpenTK.Compute.OpenCL.CL.yml index adcbf472..1c024bbc 100644 --- a/api/OpenTK.Compute.OpenCL.CL.yml +++ b/api/OpenTK.Compute.OpenCL.CL.yml @@ -178,12 +178,8 @@ items: fullName: OpenTK.Compute.OpenCL.CL type: Class source: - remote: - path: src/OpenTK.Compute/OpenCL/CL.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CL - path: opentk/src/OpenTK.Compute/OpenCL/CL.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CL.cs startLine: 6 assemblies: - OpenTK.Compute @@ -257,12 +253,8 @@ items: fullName: OpenTK.Compute.OpenCL.CL.GetPlatformIds(out OpenTK.Compute.OpenCL.CLPlatform[]) type: Method source: - remote: - path: src/OpenTK.Compute/OpenCL/CL.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetPlatformIds - path: opentk/src/OpenTK.Compute/OpenCL/CL.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CL.cs startLine: 41 assemblies: - OpenTK.Compute @@ -334,12 +326,8 @@ items: fullName: OpenTK.Compute.OpenCL.CL.GetPlatformInfo(OpenTK.Compute.OpenCL.CLPlatform, OpenTK.Compute.OpenCL.PlatformInfo, out byte[]) type: Method source: - remote: - path: src/OpenTK.Compute/OpenCL/CL.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetPlatformInfo - path: opentk/src/OpenTK.Compute/OpenCL/CL.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CL.cs startLine: 58 assemblies: - OpenTK.Compute @@ -410,12 +398,8 @@ items: fullName: OpenTK.Compute.OpenCL.CL.GetDeviceIds(OpenTK.Compute.OpenCL.CLPlatform, OpenTK.Compute.OpenCL.DeviceType, out OpenTK.Compute.OpenCL.CLDevice[]) type: Method source: - remote: - path: src/OpenTK.Compute/OpenCL/CL.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetDeviceIds - path: opentk/src/OpenTK.Compute/OpenCL/CL.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CL.cs startLine: 80 assemblies: - OpenTK.Compute @@ -486,12 +470,8 @@ items: fullName: OpenTK.Compute.OpenCL.CL.GetDeviceInfo(OpenTK.Compute.OpenCL.CLDevice, OpenTK.Compute.OpenCL.DeviceInfo, out byte[]) type: Method source: - remote: - path: src/OpenTK.Compute/OpenCL/CL.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetDeviceInfo - path: opentk/src/OpenTK.Compute/OpenCL/CL.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CL.cs startLine: 98 assemblies: - OpenTK.Compute @@ -741,12 +721,8 @@ items: fullName: OpenTK.Compute.OpenCL.CL.CreateContext(nint, OpenTK.Compute.OpenCL.CLDevice[], nint, nint, out OpenTK.Compute.OpenCL.CLResultCode) type: Method source: - remote: - path: src/OpenTK.Compute/OpenCL/CL.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateContext - path: opentk/src/OpenTK.Compute/OpenCL/CL.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CL.cs startLine: 160 assemblies: - OpenTK.Compute @@ -823,12 +799,8 @@ items: fullName: OpenTK.Compute.OpenCL.CL.CreateContext(nint[], OpenTK.Compute.OpenCL.CLDevice[], nint, nint, out OpenTK.Compute.OpenCL.CLResultCode) type: Method source: - remote: - path: src/OpenTK.Compute/OpenCL/CL.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateContext - path: opentk/src/OpenTK.Compute/OpenCL/CL.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CL.cs startLine: 179 assemblies: - OpenTK.Compute @@ -1025,12 +997,8 @@ items: fullName: OpenTK.Compute.OpenCL.CL.GetContextInfo(OpenTK.Compute.OpenCL.CLContext, OpenTK.Compute.OpenCL.ContextInfo, out byte[]) type: Method source: - remote: - path: src/OpenTK.Compute/OpenCL/CL.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetContextInfo - path: opentk/src/OpenTK.Compute/OpenCL/CL.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CL.cs startLine: 224 assemblies: - OpenTK.Compute @@ -1185,12 +1153,8 @@ items: fullName: OpenTK.Compute.OpenCL.CL.GetCommandQueueInfo(OpenTK.Compute.OpenCL.CLCommandQueue, OpenTK.Compute.OpenCL.CommandQueueInfo, out byte[]) type: Method source: - remote: - path: src/OpenTK.Compute/OpenCL/CL.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetCommandQueueInfo - path: opentk/src/OpenTK.Compute/OpenCL/CL.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CL.cs startLine: 265 assemblies: - OpenTK.Compute @@ -1261,12 +1225,8 @@ items: fullName: OpenTK.Compute.OpenCL.CL.CreateBuffer(OpenTK.Compute.OpenCL.CLContext, OpenTK.Compute.OpenCL.MemoryFlags, T[], out OpenTK.Compute.OpenCL.CLResultCode) type: Method source: - remote: - path: src/OpenTK.Compute/OpenCL/CL.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateBuffer - path: opentk/src/OpenTK.Compute/OpenCL/CL.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CL.cs startLine: 288 assemblies: - OpenTK.Compute @@ -1305,12 +1265,8 @@ items: fullName: OpenTK.Compute.OpenCL.CL.CreateBuffer(OpenTK.Compute.OpenCL.CLContext, OpenTK.Compute.OpenCL.MemoryFlags, System.Span, out OpenTK.Compute.OpenCL.CLResultCode) type: Method source: - remote: - path: src/OpenTK.Compute/OpenCL/CL.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateBuffer - path: opentk/src/OpenTK.Compute/OpenCL/CL.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CL.cs startLine: 302 assemblies: - OpenTK.Compute @@ -1705,12 +1661,8 @@ items: fullName: OpenTK.Compute.OpenCL.CL.GetSupportedImageFormats(OpenTK.Compute.OpenCL.CLContext, OpenTK.Compute.OpenCL.MemoryFlags, OpenTK.Compute.OpenCL.MemoryObjectType, out OpenTK.Compute.OpenCL.ImageFormat[]) type: Method source: - remote: - path: src/OpenTK.Compute/OpenCL/CL.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetSupportedImageFormats - path: opentk/src/OpenTK.Compute/OpenCL/CL.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CL.cs startLine: 409 assemblies: - OpenTK.Compute @@ -1891,12 +1843,8 @@ items: fullName: OpenTK.Compute.OpenCL.CL.GetMemObjectInfo(nint, OpenTK.Compute.OpenCL.MemoryObjectInfo, out byte[]) type: Method source: - remote: - path: src/OpenTK.Compute/OpenCL/CL.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetMemObjectInfo - path: opentk/src/OpenTK.Compute/OpenCL/CL.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CL.cs startLine: 448 assemblies: - OpenTK.Compute @@ -1931,12 +1879,8 @@ items: fullName: OpenTK.Compute.OpenCL.CL.GetMemObjectInfo(OpenTK.Compute.OpenCL.CLBuffer, OpenTK.Compute.OpenCL.MemoryObjectInfo, out byte[]) type: Method source: - remote: - path: src/OpenTK.Compute/OpenCL/CL.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetMemObjectInfo - path: opentk/src/OpenTK.Compute/OpenCL/CL.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CL.cs startLine: 459 assemblies: - OpenTK.Compute @@ -1971,12 +1915,8 @@ items: fullName: OpenTK.Compute.OpenCL.CL.GetMemObjectInfo(OpenTK.Compute.OpenCL.CLImage, OpenTK.Compute.OpenCL.MemoryObjectInfo, out byte[]) type: Method source: - remote: - path: src/OpenTK.Compute/OpenCL/CL.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetMemObjectInfo - path: opentk/src/OpenTK.Compute/OpenCL/CL.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CL.cs startLine: 468 assemblies: - OpenTK.Compute @@ -2011,12 +1951,8 @@ items: fullName: OpenTK.Compute.OpenCL.CL.GetMemObjectInfo(OpenTK.Compute.OpenCL.CLPipe, OpenTK.Compute.OpenCL.MemoryObjectInfo, out byte[]) type: Method source: - remote: - path: src/OpenTK.Compute/OpenCL/CL.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetMemObjectInfo - path: opentk/src/OpenTK.Compute/OpenCL/CL.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CL.cs startLine: 477 assemblies: - OpenTK.Compute @@ -2087,12 +2023,8 @@ items: fullName: OpenTK.Compute.OpenCL.CL.GetImageInfo(OpenTK.Compute.OpenCL.CLImage, OpenTK.Compute.OpenCL.ImageInfo, out byte[]) type: Method source: - remote: - path: src/OpenTK.Compute/OpenCL/CL.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetImageInfo - path: opentk/src/OpenTK.Compute/OpenCL/CL.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CL.cs startLine: 494 assemblies: - OpenTK.Compute @@ -2163,12 +2095,8 @@ items: fullName: OpenTK.Compute.OpenCL.CL.GetPipeInfo(OpenTK.Compute.OpenCL.CLPipe, OpenTK.Compute.OpenCL.PipeInfo, out byte[]) type: Method source: - remote: - path: src/OpenTK.Compute/OpenCL/CL.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetPipeInfo - path: opentk/src/OpenTK.Compute/OpenCL/CL.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CL.cs startLine: 512 assemblies: - OpenTK.Compute @@ -2513,12 +2441,8 @@ items: fullName: OpenTK.Compute.OpenCL.CL.GetSamplerInfo(OpenTK.Compute.OpenCL.CLSampler, OpenTK.Compute.OpenCL.SamplerInfo, out byte[]) type: Method source: - remote: - path: src/OpenTK.Compute/OpenCL/CL.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetSamplerInfo - path: opentk/src/OpenTK.Compute/OpenCL/CL.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CL.cs startLine: 593 assemblies: - OpenTK.Compute @@ -2589,12 +2513,8 @@ items: fullName: OpenTK.Compute.OpenCL.CL.CreateProgramWithSource(OpenTK.Compute.OpenCL.CLContext, string, out OpenTK.Compute.OpenCL.CLResultCode) type: Method source: - remote: - path: src/OpenTK.Compute/OpenCL/CL.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateProgramWithSource - path: opentk/src/OpenTK.Compute/OpenCL/CL.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CL.cs startLine: 615 assemblies: - OpenTK.Compute @@ -2827,12 +2747,8 @@ items: fullName: OpenTK.Compute.OpenCL.CL.BuildProgram(OpenTK.Compute.OpenCL.CLProgram, OpenTK.Compute.OpenCL.CLDevice[], string, OpenTK.Compute.OpenCL.CL.ClEventCallback) type: Method source: - remote: - path: src/OpenTK.Compute/OpenCL/CL.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: BuildProgram - path: opentk/src/OpenTK.Compute/OpenCL/CL.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CL.cs startLine: 668 assemblies: - OpenTK.Compute @@ -3084,12 +3000,8 @@ items: fullName: OpenTK.Compute.OpenCL.CL.GetProgramInfo(OpenTK.Compute.OpenCL.CLProgram, OpenTK.Compute.OpenCL.ProgramInfo, out byte[]) type: Method source: - remote: - path: src/OpenTK.Compute/OpenCL/CL.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetProgramInfo - path: opentk/src/OpenTK.Compute/OpenCL/CL.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CL.cs startLine: 725 assemblies: - OpenTK.Compute @@ -3162,12 +3074,8 @@ items: fullName: OpenTK.Compute.OpenCL.CL.GetProgramBuildInfo(OpenTK.Compute.OpenCL.CLProgram, OpenTK.Compute.OpenCL.CLDevice, OpenTK.Compute.OpenCL.ProgramBuildInfo, out byte[]) type: Method source: - remote: - path: src/OpenTK.Compute/OpenCL/CL.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetProgramBuildInfo - path: opentk/src/OpenTK.Compute/OpenCL/CL.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CL.cs startLine: 743 assemblies: - OpenTK.Compute @@ -3270,12 +3178,8 @@ items: fullName: OpenTK.Compute.OpenCL.CL.CreateKernelsInProgram(OpenTK.Compute.OpenCL.CLProgram, out OpenTK.Compute.OpenCL.CLKernel[]) type: Method source: - remote: - path: src/OpenTK.Compute/OpenCL/CL.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateKernelsInProgram - path: opentk/src/OpenTK.Compute/OpenCL/CL.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CL.cs startLine: 773 assemblies: - OpenTK.Compute @@ -3422,12 +3326,8 @@ items: fullName: OpenTK.Compute.OpenCL.CL.SetKernelArg(OpenTK.Compute.OpenCL.CLKernel, uint, in T) type: Method source: - remote: - path: src/OpenTK.Compute/OpenCL/CL.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetKernelArg - path: opentk/src/OpenTK.Compute/OpenCL/CL.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CL.cs startLine: 809 assemblies: - OpenTK.Compute @@ -3566,12 +3466,8 @@ items: fullName: OpenTK.Compute.OpenCL.CL.GetKernelInfo(OpenTK.Compute.OpenCL.CLKernel, OpenTK.Compute.OpenCL.KernelInfo, out byte[]) type: Method source: - remote: - path: src/OpenTK.Compute/OpenCL/CL.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetKernelInfo - path: opentk/src/OpenTK.Compute/OpenCL/CL.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CL.cs startLine: 842 assemblies: - OpenTK.Compute @@ -3644,12 +3540,8 @@ items: fullName: OpenTK.Compute.OpenCL.CL.GetKernelArgInfo(OpenTK.Compute.OpenCL.CLKernel, uint, OpenTK.Compute.OpenCL.KernelArgInfo, out byte[]) type: Method source: - remote: - path: src/OpenTK.Compute/OpenCL/CL.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetKernelArgInfo - path: opentk/src/OpenTK.Compute/OpenCL/CL.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CL.cs startLine: 860 assemblies: - OpenTK.Compute @@ -3724,12 +3616,8 @@ items: fullName: OpenTK.Compute.OpenCL.CL.GetKernelWorkGroupInfo(OpenTK.Compute.OpenCL.CLKernel, OpenTK.Compute.OpenCL.CLDevice, OpenTK.Compute.OpenCL.KernelWorkGroupInfo, out byte[]) type: Method source: - remote: - path: src/OpenTK.Compute/OpenCL/CL.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetKernelWorkGroupInfo - path: opentk/src/OpenTK.Compute/OpenCL/CL.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CL.cs startLine: 879 assemblies: - OpenTK.Compute @@ -3874,12 +3762,8 @@ items: fullName: OpenTK.Compute.OpenCL.CL.GetEventInfo(OpenTK.Compute.OpenCL.CLEvent, OpenTK.Compute.OpenCL.EventInfo, out byte[]) type: Method source: - remote: - path: src/OpenTK.Compute/OpenCL/CL.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetEventInfo - path: opentk/src/OpenTK.Compute/OpenCL/CL.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CL.cs startLine: 918 assemblies: - OpenTK.Compute @@ -4058,12 +3942,8 @@ items: fullName: OpenTK.Compute.OpenCL.CL.SetEventCallback(OpenTK.Compute.OpenCL.CLEvent, int, OpenTK.Compute.OpenCL.CL.ClEventCallback) type: Method source: - remote: - path: src/OpenTK.Compute/OpenCL/CL.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetEventCallback - path: opentk/src/OpenTK.Compute/OpenCL/CL.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CL.cs startLine: 959 assemblies: - OpenTK.Compute @@ -4134,12 +4014,8 @@ items: fullName: OpenTK.Compute.OpenCL.CL.GetEventProfilingInfo(OpenTK.Compute.OpenCL.CLEvent, OpenTK.Compute.OpenCL.ProfilingInfo, out byte[]) type: Method source: - remote: - path: src/OpenTK.Compute/OpenCL/CL.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetEventProfilingInfo - path: opentk/src/OpenTK.Compute/OpenCL/CL.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CL.cs startLine: 980 assemblies: - OpenTK.Compute @@ -4268,12 +4144,8 @@ items: fullName: OpenTK.Compute.OpenCL.CL.EnqueueReadBuffer(OpenTK.Compute.OpenCL.CLCommandQueue, OpenTK.Compute.OpenCL.CLBuffer, bool, nuint, T[], OpenTK.Compute.OpenCL.CLEvent[], out OpenTK.Compute.OpenCL.CLEvent) type: Method source: - remote: - path: src/OpenTK.Compute/OpenCL/CL.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: EnqueueReadBuffer - path: opentk/src/OpenTK.Compute/OpenCL/CL.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CL.cs startLine: 1020 assemblies: - OpenTK.Compute @@ -4318,12 +4190,8 @@ items: fullName: OpenTK.Compute.OpenCL.CL.EnqueueReadBuffer(OpenTK.Compute.OpenCL.CLCommandQueue, OpenTK.Compute.OpenCL.CLBuffer, bool, nuint, System.Span, OpenTK.Compute.OpenCL.CLEvent[], out OpenTK.Compute.OpenCL.CLEvent) type: Method source: - remote: - path: src/OpenTK.Compute/OpenCL/CL.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: EnqueueReadBuffer - path: opentk/src/OpenTK.Compute/OpenCL/CL.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CL.cs startLine: 1038 assemblies: - OpenTK.Compute @@ -4422,12 +4290,8 @@ items: fullName: OpenTK.Compute.OpenCL.CL.EnqueueReadBufferRect(OpenTK.Compute.OpenCL.CLCommandQueue, OpenTK.Compute.OpenCL.CLBuffer, bool, nuint[], nuint[], nuint[], nuint, nuint, nuint, nuint, T[], OpenTK.Compute.OpenCL.CLEvent[], out OpenTK.Compute.OpenCL.CLEvent) type: Method source: - remote: - path: src/OpenTK.Compute/OpenCL/CL.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: EnqueueReadBufferRect - path: opentk/src/OpenTK.Compute/OpenCL/CL.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CL.cs startLine: 1065 assemblies: - OpenTK.Compute @@ -4484,12 +4348,8 @@ items: fullName: OpenTK.Compute.OpenCL.CL.EnqueueReadBufferRect(OpenTK.Compute.OpenCL.CLCommandQueue, OpenTK.Compute.OpenCL.CLBuffer, bool, nuint[], nuint[], nuint[], nuint, nuint, nuint, nuint, System.Span, OpenTK.Compute.OpenCL.CLEvent[], out OpenTK.Compute.OpenCL.CLEvent) type: Method source: - remote: - path: src/OpenTK.Compute/OpenCL/CL.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: EnqueueReadBufferRect - path: opentk/src/OpenTK.Compute/OpenCL/CL.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CL.cs startLine: 1084 assemblies: - OpenTK.Compute @@ -4590,12 +4450,8 @@ items: fullName: OpenTK.Compute.OpenCL.CL.EnqueueWriteBuffer(OpenTK.Compute.OpenCL.CLCommandQueue, OpenTK.Compute.OpenCL.CLBuffer, bool, nuint, T[], OpenTK.Compute.OpenCL.CLEvent[], out OpenTK.Compute.OpenCL.CLEvent) type: Method source: - remote: - path: src/OpenTK.Compute/OpenCL/CL.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: EnqueueWriteBuffer - path: opentk/src/OpenTK.Compute/OpenCL/CL.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CL.cs startLine: 1113 assemblies: - OpenTK.Compute @@ -4640,12 +4496,8 @@ items: fullName: OpenTK.Compute.OpenCL.CL.EnqueueWriteBuffer(OpenTK.Compute.OpenCL.CLCommandQueue, OpenTK.Compute.OpenCL.CLBuffer, bool, nuint, System.Span, OpenTK.Compute.OpenCL.CLEvent[], out OpenTK.Compute.OpenCL.CLEvent) type: Method source: - remote: - path: src/OpenTK.Compute/OpenCL/CL.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: EnqueueWriteBuffer - path: opentk/src/OpenTK.Compute/OpenCL/CL.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CL.cs startLine: 1131 assemblies: - OpenTK.Compute @@ -4744,12 +4596,8 @@ items: fullName: OpenTK.Compute.OpenCL.CL.EnqueueWriteBufferRect(OpenTK.Compute.OpenCL.CLCommandQueue, OpenTK.Compute.OpenCL.CLBuffer, bool, nuint[], nuint[], nuint[], nuint, nuint, nuint, nuint, T[], OpenTK.Compute.OpenCL.CLEvent[], out OpenTK.Compute.OpenCL.CLEvent) type: Method source: - remote: - path: src/OpenTK.Compute/OpenCL/CL.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: EnqueueWriteBufferRect - path: opentk/src/OpenTK.Compute/OpenCL/CL.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CL.cs startLine: 1159 assemblies: - OpenTK.Compute @@ -4806,12 +4654,8 @@ items: fullName: OpenTK.Compute.OpenCL.CL.EnqueueWriteBufferRect(OpenTK.Compute.OpenCL.CLCommandQueue, OpenTK.Compute.OpenCL.CLBuffer, bool, nuint[], nuint[], nuint[], nuint, nuint, nuint, nuint, System.Span, OpenTK.Compute.OpenCL.CLEvent[], out OpenTK.Compute.OpenCL.CLEvent) type: Method source: - remote: - path: src/OpenTK.Compute/OpenCL/CL.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: EnqueueWriteBufferRect - path: opentk/src/OpenTK.Compute/OpenCL/CL.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CL.cs startLine: 1178 assemblies: - OpenTK.Compute @@ -4912,12 +4756,8 @@ items: fullName: OpenTK.Compute.OpenCL.CL.EnqueueFillBuffer(OpenTK.Compute.OpenCL.CLCommandQueue, OpenTK.Compute.OpenCL.CLBuffer, T[], nuint, nuint, OpenTK.Compute.OpenCL.CLEvent[], out OpenTK.Compute.OpenCL.CLEvent) type: Method source: - remote: - path: src/OpenTK.Compute/OpenCL/CL.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: EnqueueFillBuffer - path: opentk/src/OpenTK.Compute/OpenCL/CL.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CL.cs startLine: 1207 assemblies: - OpenTK.Compute diff --git a/api/OpenTK.Compute.OpenCL.CLBuffer.yml b/api/OpenTK.Compute.OpenCL.CLBuffer.yml index 192082e1..8f3262ea 100644 --- a/api/OpenTK.Compute.OpenCL.CLBuffer.yml +++ b/api/OpenTK.Compute.OpenCL.CLBuffer.yml @@ -21,12 +21,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLBuffer type: Struct source: - remote: - path: src/OpenTK.Compute/OpenCL/CLBuffer.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CLBuffer - path: opentk/src/OpenTK.Compute/OpenCL/CLBuffer.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLBuffer.cs startLine: 5 assemblies: - OpenTK.Compute @@ -53,12 +49,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLBuffer.Handle type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/CLBuffer.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Handle - path: opentk/src/OpenTK.Compute/OpenCL/CLBuffer.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLBuffer.cs startLine: 7 assemblies: - OpenTK.Compute @@ -80,12 +72,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLBuffer.CLBuffer(nint) type: Constructor source: - remote: - path: src/OpenTK.Compute/OpenCL/CLBuffer.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Compute/OpenCL/CLBuffer.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLBuffer.cs startLine: 9 assemblies: - OpenTK.Compute @@ -112,12 +100,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLBuffer.Equals(OpenTK.Compute.OpenCL.CLBuffer) type: Method source: - remote: - path: src/OpenTK.Compute/OpenCL/CLBuffer.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Equals - path: opentk/src/OpenTK.Compute/OpenCL/CLBuffer.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLBuffer.cs startLine: 14 assemblies: - OpenTK.Compute @@ -149,12 +133,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLBuffer.Equals(object) type: Method source: - remote: - path: src/OpenTK.Compute/OpenCL/CLBuffer.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Equals - path: opentk/src/OpenTK.Compute/OpenCL/CLBuffer.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLBuffer.cs startLine: 19 assemblies: - OpenTK.Compute @@ -188,12 +168,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLBuffer.GetHashCode() type: Method source: - remote: - path: src/OpenTK.Compute/OpenCL/CLBuffer.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetHashCode - path: opentk/src/OpenTK.Compute/OpenCL/CLBuffer.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLBuffer.cs startLine: 24 assemblies: - OpenTK.Compute @@ -220,12 +196,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLBuffer.operator ==(OpenTK.Compute.OpenCL.CLBuffer, OpenTK.Compute.OpenCL.CLBuffer) type: Operator source: - remote: - path: src/OpenTK.Compute/OpenCL/CLBuffer.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Equality - path: opentk/src/OpenTK.Compute/OpenCL/CLBuffer.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLBuffer.cs startLine: 29 assemblies: - OpenTK.Compute @@ -256,12 +228,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLBuffer.operator !=(OpenTK.Compute.OpenCL.CLBuffer, OpenTK.Compute.OpenCL.CLBuffer) type: Operator source: - remote: - path: src/OpenTK.Compute/OpenCL/CLBuffer.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Inequality - path: opentk/src/OpenTK.Compute/OpenCL/CLBuffer.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLBuffer.cs startLine: 34 assemblies: - OpenTK.Compute @@ -292,12 +260,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLBuffer.implicit operator nint(OpenTK.Compute.OpenCL.CLBuffer) type: Operator source: - remote: - path: src/OpenTK.Compute/OpenCL/CLBuffer.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Implicit - path: opentk/src/OpenTK.Compute/OpenCL/CLBuffer.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLBuffer.cs startLine: 39 assemblies: - OpenTK.Compute diff --git a/api/OpenTK.Compute.OpenCL.CLCommandQueue.yml b/api/OpenTK.Compute.OpenCL.CLCommandQueue.yml index 2d1c45f3..a6c71d30 100644 --- a/api/OpenTK.Compute.OpenCL.CLCommandQueue.yml +++ b/api/OpenTK.Compute.OpenCL.CLCommandQueue.yml @@ -21,12 +21,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLCommandQueue type: Struct source: - remote: - path: src/OpenTK.Compute/OpenCL/CLCommandQueue.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CLCommandQueue - path: opentk/src/OpenTK.Compute/OpenCL/CLCommandQueue.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLCommandQueue.cs startLine: 5 assemblies: - OpenTK.Compute @@ -53,12 +49,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLCommandQueue.Handle type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/CLCommandQueue.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Handle - path: opentk/src/OpenTK.Compute/OpenCL/CLCommandQueue.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLCommandQueue.cs startLine: 7 assemblies: - OpenTK.Compute @@ -80,12 +72,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLCommandQueue.CLCommandQueue(nint) type: Constructor source: - remote: - path: src/OpenTK.Compute/OpenCL/CLCommandQueue.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Compute/OpenCL/CLCommandQueue.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLCommandQueue.cs startLine: 9 assemblies: - OpenTK.Compute @@ -112,12 +100,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLCommandQueue.Equals(OpenTK.Compute.OpenCL.CLCommandQueue) type: Method source: - remote: - path: src/OpenTK.Compute/OpenCL/CLCommandQueue.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Equals - path: opentk/src/OpenTK.Compute/OpenCL/CLCommandQueue.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLCommandQueue.cs startLine: 14 assemblies: - OpenTK.Compute @@ -149,12 +133,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLCommandQueue.Equals(object) type: Method source: - remote: - path: src/OpenTK.Compute/OpenCL/CLCommandQueue.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Equals - path: opentk/src/OpenTK.Compute/OpenCL/CLCommandQueue.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLCommandQueue.cs startLine: 19 assemblies: - OpenTK.Compute @@ -188,12 +168,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLCommandQueue.GetHashCode() type: Method source: - remote: - path: src/OpenTK.Compute/OpenCL/CLCommandQueue.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetHashCode - path: opentk/src/OpenTK.Compute/OpenCL/CLCommandQueue.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLCommandQueue.cs startLine: 24 assemblies: - OpenTK.Compute @@ -220,12 +196,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLCommandQueue.operator ==(OpenTK.Compute.OpenCL.CLCommandQueue, OpenTK.Compute.OpenCL.CLCommandQueue) type: Operator source: - remote: - path: src/OpenTK.Compute/OpenCL/CLCommandQueue.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Equality - path: opentk/src/OpenTK.Compute/OpenCL/CLCommandQueue.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLCommandQueue.cs startLine: 29 assemblies: - OpenTK.Compute @@ -256,12 +228,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLCommandQueue.operator !=(OpenTK.Compute.OpenCL.CLCommandQueue, OpenTK.Compute.OpenCL.CLCommandQueue) type: Operator source: - remote: - path: src/OpenTK.Compute/OpenCL/CLCommandQueue.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Inequality - path: opentk/src/OpenTK.Compute/OpenCL/CLCommandQueue.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLCommandQueue.cs startLine: 34 assemblies: - OpenTK.Compute @@ -292,12 +260,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLCommandQueue.implicit operator nint(OpenTK.Compute.OpenCL.CLCommandQueue) type: Operator source: - remote: - path: src/OpenTK.Compute/OpenCL/CLCommandQueue.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Implicit - path: opentk/src/OpenTK.Compute/OpenCL/CLCommandQueue.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLCommandQueue.cs startLine: 39 assemblies: - OpenTK.Compute diff --git a/api/OpenTK.Compute.OpenCL.CLContext.yml b/api/OpenTK.Compute.OpenCL.CLContext.yml index 836c2c25..42578be2 100644 --- a/api/OpenTK.Compute.OpenCL.CLContext.yml +++ b/api/OpenTK.Compute.OpenCL.CLContext.yml @@ -21,12 +21,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLContext type: Struct source: - remote: - path: src/OpenTK.Compute/OpenCL/CLContext.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CLContext - path: opentk/src/OpenTK.Compute/OpenCL/CLContext.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLContext.cs startLine: 5 assemblies: - OpenTK.Compute @@ -53,12 +49,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLContext.Handle type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/CLContext.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Handle - path: opentk/src/OpenTK.Compute/OpenCL/CLContext.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLContext.cs startLine: 7 assemblies: - OpenTK.Compute @@ -80,12 +72,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLContext.CLContext(nint) type: Constructor source: - remote: - path: src/OpenTK.Compute/OpenCL/CLContext.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Compute/OpenCL/CLContext.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLContext.cs startLine: 9 assemblies: - OpenTK.Compute @@ -112,12 +100,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLContext.Equals(OpenTK.Compute.OpenCL.CLContext) type: Method source: - remote: - path: src/OpenTK.Compute/OpenCL/CLContext.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Equals - path: opentk/src/OpenTK.Compute/OpenCL/CLContext.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLContext.cs startLine: 14 assemblies: - OpenTK.Compute @@ -149,12 +133,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLContext.Equals(object) type: Method source: - remote: - path: src/OpenTK.Compute/OpenCL/CLContext.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Equals - path: opentk/src/OpenTK.Compute/OpenCL/CLContext.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLContext.cs startLine: 19 assemblies: - OpenTK.Compute @@ -188,12 +168,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLContext.GetHashCode() type: Method source: - remote: - path: src/OpenTK.Compute/OpenCL/CLContext.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetHashCode - path: opentk/src/OpenTK.Compute/OpenCL/CLContext.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLContext.cs startLine: 24 assemblies: - OpenTK.Compute @@ -220,12 +196,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLContext.operator ==(OpenTK.Compute.OpenCL.CLContext, OpenTK.Compute.OpenCL.CLContext) type: Operator source: - remote: - path: src/OpenTK.Compute/OpenCL/CLContext.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Equality - path: opentk/src/OpenTK.Compute/OpenCL/CLContext.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLContext.cs startLine: 29 assemblies: - OpenTK.Compute @@ -256,12 +228,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLContext.operator !=(OpenTK.Compute.OpenCL.CLContext, OpenTK.Compute.OpenCL.CLContext) type: Operator source: - remote: - path: src/OpenTK.Compute/OpenCL/CLContext.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Inequality - path: opentk/src/OpenTK.Compute/OpenCL/CLContext.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLContext.cs startLine: 34 assemblies: - OpenTK.Compute @@ -292,12 +260,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLContext.implicit operator nint(OpenTK.Compute.OpenCL.CLContext) type: Operator source: - remote: - path: src/OpenTK.Compute/OpenCL/CLContext.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Implicit - path: opentk/src/OpenTK.Compute/OpenCL/CLContext.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLContext.cs startLine: 39 assemblies: - OpenTK.Compute diff --git a/api/OpenTK.Compute.OpenCL.CLDevice.yml b/api/OpenTK.Compute.OpenCL.CLDevice.yml index 6e91cc76..08dd184e 100644 --- a/api/OpenTK.Compute.OpenCL.CLDevice.yml +++ b/api/OpenTK.Compute.OpenCL.CLDevice.yml @@ -21,12 +21,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLDevice type: Struct source: - remote: - path: src/OpenTK.Compute/OpenCL/CLDevice.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CLDevice - path: opentk/src/OpenTK.Compute/OpenCL/CLDevice.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLDevice.cs startLine: 5 assemblies: - OpenTK.Compute @@ -53,12 +49,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLDevice.Handle type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/CLDevice.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Handle - path: opentk/src/OpenTK.Compute/OpenCL/CLDevice.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLDevice.cs startLine: 7 assemblies: - OpenTK.Compute @@ -80,12 +72,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLDevice.CLDevice(nint) type: Constructor source: - remote: - path: src/OpenTK.Compute/OpenCL/CLDevice.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Compute/OpenCL/CLDevice.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLDevice.cs startLine: 9 assemblies: - OpenTK.Compute @@ -112,12 +100,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLDevice.Equals(OpenTK.Compute.OpenCL.CLDevice) type: Method source: - remote: - path: src/OpenTK.Compute/OpenCL/CLDevice.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Equals - path: opentk/src/OpenTK.Compute/OpenCL/CLDevice.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLDevice.cs startLine: 14 assemblies: - OpenTK.Compute @@ -149,12 +133,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLDevice.Equals(object) type: Method source: - remote: - path: src/OpenTK.Compute/OpenCL/CLDevice.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Equals - path: opentk/src/OpenTK.Compute/OpenCL/CLDevice.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLDevice.cs startLine: 19 assemblies: - OpenTK.Compute @@ -188,12 +168,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLDevice.GetHashCode() type: Method source: - remote: - path: src/OpenTK.Compute/OpenCL/CLDevice.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetHashCode - path: opentk/src/OpenTK.Compute/OpenCL/CLDevice.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLDevice.cs startLine: 24 assemblies: - OpenTK.Compute @@ -220,12 +196,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLDevice.operator ==(OpenTK.Compute.OpenCL.CLDevice, OpenTK.Compute.OpenCL.CLDevice) type: Operator source: - remote: - path: src/OpenTK.Compute/OpenCL/CLDevice.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Equality - path: opentk/src/OpenTK.Compute/OpenCL/CLDevice.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLDevice.cs startLine: 29 assemblies: - OpenTK.Compute @@ -256,12 +228,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLDevice.operator !=(OpenTK.Compute.OpenCL.CLDevice, OpenTK.Compute.OpenCL.CLDevice) type: Operator source: - remote: - path: src/OpenTK.Compute/OpenCL/CLDevice.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Inequality - path: opentk/src/OpenTK.Compute/OpenCL/CLDevice.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLDevice.cs startLine: 34 assemblies: - OpenTK.Compute @@ -292,12 +260,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLDevice.implicit operator nint(OpenTK.Compute.OpenCL.CLDevice) type: Operator source: - remote: - path: src/OpenTK.Compute/OpenCL/CLDevice.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Implicit - path: opentk/src/OpenTK.Compute/OpenCL/CLDevice.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLDevice.cs startLine: 39 assemblies: - OpenTK.Compute diff --git a/api/OpenTK.Compute.OpenCL.CLEvent.yml b/api/OpenTK.Compute.OpenCL.CLEvent.yml index 7bad2aeb..9963423b 100644 --- a/api/OpenTK.Compute.OpenCL.CLEvent.yml +++ b/api/OpenTK.Compute.OpenCL.CLEvent.yml @@ -21,12 +21,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLEvent type: Struct source: - remote: - path: src/OpenTK.Compute/OpenCL/CLEvent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CLEvent - path: opentk/src/OpenTK.Compute/OpenCL/CLEvent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLEvent.cs startLine: 5 assemblies: - OpenTK.Compute @@ -53,12 +49,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLEvent.Handle type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/CLEvent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Handle - path: opentk/src/OpenTK.Compute/OpenCL/CLEvent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLEvent.cs startLine: 7 assemblies: - OpenTK.Compute @@ -80,12 +72,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLEvent.CLEvent(nint) type: Constructor source: - remote: - path: src/OpenTK.Compute/OpenCL/CLEvent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Compute/OpenCL/CLEvent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLEvent.cs startLine: 9 assemblies: - OpenTK.Compute @@ -112,12 +100,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLEvent.Equals(OpenTK.Compute.OpenCL.CLEvent) type: Method source: - remote: - path: src/OpenTK.Compute/OpenCL/CLEvent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Equals - path: opentk/src/OpenTK.Compute/OpenCL/CLEvent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLEvent.cs startLine: 14 assemblies: - OpenTK.Compute @@ -149,12 +133,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLEvent.Equals(object) type: Method source: - remote: - path: src/OpenTK.Compute/OpenCL/CLEvent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Equals - path: opentk/src/OpenTK.Compute/OpenCL/CLEvent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLEvent.cs startLine: 19 assemblies: - OpenTK.Compute @@ -188,12 +168,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLEvent.GetHashCode() type: Method source: - remote: - path: src/OpenTK.Compute/OpenCL/CLEvent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetHashCode - path: opentk/src/OpenTK.Compute/OpenCL/CLEvent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLEvent.cs startLine: 24 assemblies: - OpenTK.Compute @@ -220,12 +196,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLEvent.operator ==(OpenTK.Compute.OpenCL.CLEvent, OpenTK.Compute.OpenCL.CLEvent) type: Operator source: - remote: - path: src/OpenTK.Compute/OpenCL/CLEvent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Equality - path: opentk/src/OpenTK.Compute/OpenCL/CLEvent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLEvent.cs startLine: 29 assemblies: - OpenTK.Compute @@ -256,12 +228,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLEvent.operator !=(OpenTK.Compute.OpenCL.CLEvent, OpenTK.Compute.OpenCL.CLEvent) type: Operator source: - remote: - path: src/OpenTK.Compute/OpenCL/CLEvent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Inequality - path: opentk/src/OpenTK.Compute/OpenCL/CLEvent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLEvent.cs startLine: 34 assemblies: - OpenTK.Compute @@ -292,12 +260,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLEvent.implicit operator nint(OpenTK.Compute.OpenCL.CLEvent) type: Operator source: - remote: - path: src/OpenTK.Compute/OpenCL/CLEvent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Implicit - path: opentk/src/OpenTK.Compute/OpenCL/CLEvent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLEvent.cs startLine: 39 assemblies: - OpenTK.Compute diff --git a/api/OpenTK.Compute.OpenCL.CLGL.ContextInfo.yml b/api/OpenTK.Compute.OpenCL.CLGL.ContextInfo.yml index 71689252..4a499cc9 100644 --- a/api/OpenTK.Compute.OpenCL.CLGL.ContextInfo.yml +++ b/api/OpenTK.Compute.OpenCL.CLGL.ContextInfo.yml @@ -15,12 +15,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLGL.ContextInfo type: Enum source: - remote: - path: src/OpenTK.Compute/OpenCL/CLGL.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ContextInfo - path: opentk/src/OpenTK.Compute/OpenCL/CLGL.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLGL.cs startLine: 179 assemblies: - OpenTK.Compute @@ -40,12 +36,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLGL.ContextInfo.CurrentDeviceForGlContextKHR type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/CLGL.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CurrentDeviceForGlContextKHR - path: opentk/src/OpenTK.Compute/OpenCL/CLGL.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLGL.cs startLine: 181 assemblies: - OpenTK.Compute @@ -66,12 +58,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLGL.ContextInfo.DevicesForGlContextKHR type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/CLGL.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DevicesForGlContextKHR - path: opentk/src/OpenTK.Compute/OpenCL/CLGL.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLGL.cs startLine: 182 assemblies: - OpenTK.Compute diff --git a/api/OpenTK.Compute.OpenCL.CLGL.ContextProperties.yml b/api/OpenTK.Compute.OpenCL.CLGL.ContextProperties.yml index 8a96d066..5ad6ffea 100644 --- a/api/OpenTK.Compute.OpenCL.CLGL.ContextProperties.yml +++ b/api/OpenTK.Compute.OpenCL.CLGL.ContextProperties.yml @@ -18,12 +18,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLGL.ContextProperties type: Enum source: - remote: - path: src/OpenTK.Compute/OpenCL/CLGL.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ContextProperties - path: opentk/src/OpenTK.Compute/OpenCL/CLGL.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLGL.cs startLine: 185 assemblies: - OpenTK.Compute @@ -43,12 +39,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLGL.ContextProperties.GlContextKHR type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/CLGL.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GlContextKHR - path: opentk/src/OpenTK.Compute/OpenCL/CLGL.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLGL.cs startLine: 187 assemblies: - OpenTK.Compute @@ -69,12 +61,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLGL.ContextProperties.EglDisplayKHR type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/CLGL.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: EglDisplayKHR - path: opentk/src/OpenTK.Compute/OpenCL/CLGL.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLGL.cs startLine: 188 assemblies: - OpenTK.Compute @@ -95,12 +83,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLGL.ContextProperties.GlxDisplayKHR type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/CLGL.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GlxDisplayKHR - path: opentk/src/OpenTK.Compute/OpenCL/CLGL.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLGL.cs startLine: 189 assemblies: - OpenTK.Compute @@ -121,12 +105,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLGL.ContextProperties.WglHDCKHR type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/CLGL.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: WglHDCKHR - path: opentk/src/OpenTK.Compute/OpenCL/CLGL.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLGL.cs startLine: 190 assemblies: - OpenTK.Compute @@ -147,12 +127,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLGL.ContextProperties.CglShareGroupKHR type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/CLGL.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CglShareGroupKHR - path: opentk/src/OpenTK.Compute/OpenCL/CLGL.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLGL.cs startLine: 191 assemblies: - OpenTK.Compute diff --git a/api/OpenTK.Compute.OpenCL.CLGL.ObjectType.yml b/api/OpenTK.Compute.OpenCL.CLGL.ObjectType.yml index 6735fbaf..d5a1f382 100644 --- a/api/OpenTK.Compute.OpenCL.CLGL.ObjectType.yml +++ b/api/OpenTK.Compute.OpenCL.CLGL.ObjectType.yml @@ -21,12 +21,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLGL.ObjectType type: Enum source: - remote: - path: src/OpenTK.Compute/OpenCL/CLGL.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ObjectType - path: opentk/src/OpenTK.Compute/OpenCL/CLGL.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLGL.cs startLine: 10 assemblies: - OpenTK.Compute @@ -46,12 +42,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLGL.ObjectType.ObjectBuffer type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/CLGL.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ObjectBuffer - path: opentk/src/OpenTK.Compute/OpenCL/CLGL.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLGL.cs startLine: 12 assemblies: - OpenTK.Compute @@ -72,12 +64,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLGL.ObjectType.ObjectTexture2D type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/CLGL.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ObjectTexture2D - path: opentk/src/OpenTK.Compute/OpenCL/CLGL.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLGL.cs startLine: 13 assemblies: - OpenTK.Compute @@ -98,12 +86,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLGL.ObjectType.ObjectTexture3D type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/CLGL.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ObjectTexture3D - path: opentk/src/OpenTK.Compute/OpenCL/CLGL.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLGL.cs startLine: 14 assemblies: - OpenTK.Compute @@ -124,12 +108,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLGL.ObjectType.ObjectRenderBuffer type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/CLGL.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ObjectRenderBuffer - path: opentk/src/OpenTK.Compute/OpenCL/CLGL.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLGL.cs startLine: 15 assemblies: - OpenTK.Compute @@ -150,12 +130,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLGL.ObjectType.ObjectTexture2DArray type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/CLGL.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ObjectTexture2DArray - path: opentk/src/OpenTK.Compute/OpenCL/CLGL.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLGL.cs startLine: 20 assemblies: - OpenTK.Compute @@ -178,12 +154,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLGL.ObjectType.ObjectTexture1D type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/CLGL.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ObjectTexture1D - path: opentk/src/OpenTK.Compute/OpenCL/CLGL.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLGL.cs startLine: 25 assemblies: - OpenTK.Compute @@ -206,12 +178,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLGL.ObjectType.ObjectTexture1DArray type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/CLGL.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ObjectTexture1DArray - path: opentk/src/OpenTK.Compute/OpenCL/CLGL.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLGL.cs startLine: 30 assemblies: - OpenTK.Compute @@ -234,12 +202,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLGL.ObjectType.ObjectTextureBuffer type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/CLGL.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ObjectTextureBuffer - path: opentk/src/OpenTK.Compute/OpenCL/CLGL.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLGL.cs startLine: 35 assemblies: - OpenTK.Compute diff --git a/api/OpenTK.Compute.OpenCL.CLGL.TextureInfo.yml b/api/OpenTK.Compute.OpenCL.CLGL.TextureInfo.yml index 047f6a32..e9e4b7f0 100644 --- a/api/OpenTK.Compute.OpenCL.CLGL.TextureInfo.yml +++ b/api/OpenTK.Compute.OpenCL.CLGL.TextureInfo.yml @@ -16,12 +16,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLGL.TextureInfo type: Enum source: - remote: - path: src/OpenTK.Compute/OpenCL/CLGL.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TextureInfo - path: opentk/src/OpenTK.Compute/OpenCL/CLGL.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLGL.cs startLine: 38 assemblies: - OpenTK.Compute @@ -41,12 +37,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLGL.TextureInfo.TextureTarget type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/CLGL.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TextureTarget - path: opentk/src/OpenTK.Compute/OpenCL/CLGL.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLGL.cs startLine: 40 assemblies: - OpenTK.Compute @@ -67,12 +59,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLGL.TextureInfo.MipmapLevel type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/CLGL.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MipmapLevel - path: opentk/src/OpenTK.Compute/OpenCL/CLGL.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLGL.cs startLine: 41 assemblies: - OpenTK.Compute @@ -93,12 +81,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLGL.TextureInfo.NumSamples type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/CLGL.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: NumSamples - path: opentk/src/OpenTK.Compute/OpenCL/CLGL.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLGL.cs startLine: 46 assemblies: - OpenTK.Compute diff --git a/api/OpenTK.Compute.OpenCL.CLGL.yml b/api/OpenTK.Compute.OpenCL.CLGL.yml index b19265f0..58bc0a05 100644 --- a/api/OpenTK.Compute.OpenCL.CLGL.yml +++ b/api/OpenTK.Compute.OpenCL.CLGL.yml @@ -24,12 +24,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLGL type: Class source: - remote: - path: src/OpenTK.Compute/OpenCL/CLGL.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CLGL - path: opentk/src/OpenTK.Compute/OpenCL/CLGL.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLGL.cs startLine: 8 assemblies: - OpenTK.Compute diff --git a/api/OpenTK.Compute.OpenCL.CLImage.yml b/api/OpenTK.Compute.OpenCL.CLImage.yml index df14ff9a..6406c67e 100644 --- a/api/OpenTK.Compute.OpenCL.CLImage.yml +++ b/api/OpenTK.Compute.OpenCL.CLImage.yml @@ -21,12 +21,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLImage type: Struct source: - remote: - path: src/OpenTK.Compute/OpenCL/CLImage.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CLImage - path: opentk/src/OpenTK.Compute/OpenCL/CLImage.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLImage.cs startLine: 5 assemblies: - OpenTK.Compute @@ -53,12 +49,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLImage.Handle type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/CLImage.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Handle - path: opentk/src/OpenTK.Compute/OpenCL/CLImage.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLImage.cs startLine: 7 assemblies: - OpenTK.Compute @@ -80,12 +72,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLImage.CLImage(nint) type: Constructor source: - remote: - path: src/OpenTK.Compute/OpenCL/CLImage.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Compute/OpenCL/CLImage.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLImage.cs startLine: 9 assemblies: - OpenTK.Compute @@ -112,12 +100,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLImage.Equals(OpenTK.Compute.OpenCL.CLImage) type: Method source: - remote: - path: src/OpenTK.Compute/OpenCL/CLImage.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Equals - path: opentk/src/OpenTK.Compute/OpenCL/CLImage.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLImage.cs startLine: 14 assemblies: - OpenTK.Compute @@ -149,12 +133,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLImage.Equals(object) type: Method source: - remote: - path: src/OpenTK.Compute/OpenCL/CLImage.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Equals - path: opentk/src/OpenTK.Compute/OpenCL/CLImage.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLImage.cs startLine: 19 assemblies: - OpenTK.Compute @@ -188,12 +168,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLImage.GetHashCode() type: Method source: - remote: - path: src/OpenTK.Compute/OpenCL/CLImage.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetHashCode - path: opentk/src/OpenTK.Compute/OpenCL/CLImage.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLImage.cs startLine: 24 assemblies: - OpenTK.Compute @@ -220,12 +196,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLImage.operator ==(OpenTK.Compute.OpenCL.CLImage, OpenTK.Compute.OpenCL.CLImage) type: Operator source: - remote: - path: src/OpenTK.Compute/OpenCL/CLImage.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Equality - path: opentk/src/OpenTK.Compute/OpenCL/CLImage.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLImage.cs startLine: 29 assemblies: - OpenTK.Compute @@ -256,12 +228,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLImage.operator !=(OpenTK.Compute.OpenCL.CLImage, OpenTK.Compute.OpenCL.CLImage) type: Operator source: - remote: - path: src/OpenTK.Compute/OpenCL/CLImage.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Inequality - path: opentk/src/OpenTK.Compute/OpenCL/CLImage.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLImage.cs startLine: 34 assemblies: - OpenTK.Compute @@ -292,12 +260,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLImage.implicit operator nint(OpenTK.Compute.OpenCL.CLImage) type: Operator source: - remote: - path: src/OpenTK.Compute/OpenCL/CLImage.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Implicit - path: opentk/src/OpenTK.Compute/OpenCL/CLImage.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLImage.cs startLine: 39 assemblies: - OpenTK.Compute diff --git a/api/OpenTK.Compute.OpenCL.CLKernel.yml b/api/OpenTK.Compute.OpenCL.CLKernel.yml index c8263875..b00cc833 100644 --- a/api/OpenTK.Compute.OpenCL.CLKernel.yml +++ b/api/OpenTK.Compute.OpenCL.CLKernel.yml @@ -21,12 +21,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLKernel type: Struct source: - remote: - path: src/OpenTK.Compute/OpenCL/CLKernel.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CLKernel - path: opentk/src/OpenTK.Compute/OpenCL/CLKernel.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLKernel.cs startLine: 5 assemblies: - OpenTK.Compute @@ -53,12 +49,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLKernel.Handle type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/CLKernel.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Handle - path: opentk/src/OpenTK.Compute/OpenCL/CLKernel.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLKernel.cs startLine: 7 assemblies: - OpenTK.Compute @@ -80,12 +72,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLKernel.CLKernel(nint) type: Constructor source: - remote: - path: src/OpenTK.Compute/OpenCL/CLKernel.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Compute/OpenCL/CLKernel.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLKernel.cs startLine: 9 assemblies: - OpenTK.Compute @@ -112,12 +100,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLKernel.Equals(OpenTK.Compute.OpenCL.CLKernel) type: Method source: - remote: - path: src/OpenTK.Compute/OpenCL/CLKernel.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Equals - path: opentk/src/OpenTK.Compute/OpenCL/CLKernel.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLKernel.cs startLine: 14 assemblies: - OpenTK.Compute @@ -149,12 +133,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLKernel.Equals(object) type: Method source: - remote: - path: src/OpenTK.Compute/OpenCL/CLKernel.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Equals - path: opentk/src/OpenTK.Compute/OpenCL/CLKernel.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLKernel.cs startLine: 19 assemblies: - OpenTK.Compute @@ -188,12 +168,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLKernel.GetHashCode() type: Method source: - remote: - path: src/OpenTK.Compute/OpenCL/CLKernel.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetHashCode - path: opentk/src/OpenTK.Compute/OpenCL/CLKernel.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLKernel.cs startLine: 24 assemblies: - OpenTK.Compute @@ -220,12 +196,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLKernel.operator ==(OpenTK.Compute.OpenCL.CLKernel, OpenTK.Compute.OpenCL.CLKernel) type: Operator source: - remote: - path: src/OpenTK.Compute/OpenCL/CLKernel.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Equality - path: opentk/src/OpenTK.Compute/OpenCL/CLKernel.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLKernel.cs startLine: 29 assemblies: - OpenTK.Compute @@ -256,12 +228,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLKernel.operator !=(OpenTK.Compute.OpenCL.CLKernel, OpenTK.Compute.OpenCL.CLKernel) type: Operator source: - remote: - path: src/OpenTK.Compute/OpenCL/CLKernel.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Inequality - path: opentk/src/OpenTK.Compute/OpenCL/CLKernel.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLKernel.cs startLine: 34 assemblies: - OpenTK.Compute @@ -292,12 +260,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLKernel.implicit operator nint(OpenTK.Compute.OpenCL.CLKernel) type: Operator source: - remote: - path: src/OpenTK.Compute/OpenCL/CLKernel.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Implicit - path: opentk/src/OpenTK.Compute/OpenCL/CLKernel.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLKernel.cs startLine: 39 assemblies: - OpenTK.Compute diff --git a/api/OpenTK.Compute.OpenCL.CLPipe.yml b/api/OpenTK.Compute.OpenCL.CLPipe.yml index b988a891..b88ecec8 100644 --- a/api/OpenTK.Compute.OpenCL.CLPipe.yml +++ b/api/OpenTK.Compute.OpenCL.CLPipe.yml @@ -21,12 +21,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLPipe type: Struct source: - remote: - path: src/OpenTK.Compute/OpenCL/CLPipe.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CLPipe - path: opentk/src/OpenTK.Compute/OpenCL/CLPipe.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLPipe.cs startLine: 5 assemblies: - OpenTK.Compute @@ -53,12 +49,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLPipe.Handle type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/CLPipe.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Handle - path: opentk/src/OpenTK.Compute/OpenCL/CLPipe.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLPipe.cs startLine: 7 assemblies: - OpenTK.Compute @@ -80,12 +72,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLPipe.CLPipe(nint) type: Constructor source: - remote: - path: src/OpenTK.Compute/OpenCL/CLPipe.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Compute/OpenCL/CLPipe.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLPipe.cs startLine: 9 assemblies: - OpenTK.Compute @@ -112,12 +100,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLPipe.Equals(OpenTK.Compute.OpenCL.CLPipe) type: Method source: - remote: - path: src/OpenTK.Compute/OpenCL/CLPipe.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Equals - path: opentk/src/OpenTK.Compute/OpenCL/CLPipe.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLPipe.cs startLine: 14 assemblies: - OpenTK.Compute @@ -149,12 +133,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLPipe.Equals(object) type: Method source: - remote: - path: src/OpenTK.Compute/OpenCL/CLPipe.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Equals - path: opentk/src/OpenTK.Compute/OpenCL/CLPipe.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLPipe.cs startLine: 19 assemblies: - OpenTK.Compute @@ -188,12 +168,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLPipe.GetHashCode() type: Method source: - remote: - path: src/OpenTK.Compute/OpenCL/CLPipe.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetHashCode - path: opentk/src/OpenTK.Compute/OpenCL/CLPipe.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLPipe.cs startLine: 24 assemblies: - OpenTK.Compute @@ -220,12 +196,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLPipe.operator ==(OpenTK.Compute.OpenCL.CLPipe, OpenTK.Compute.OpenCL.CLPipe) type: Operator source: - remote: - path: src/OpenTK.Compute/OpenCL/CLPipe.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Equality - path: opentk/src/OpenTK.Compute/OpenCL/CLPipe.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLPipe.cs startLine: 29 assemblies: - OpenTK.Compute @@ -256,12 +228,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLPipe.operator !=(OpenTK.Compute.OpenCL.CLPipe, OpenTK.Compute.OpenCL.CLPipe) type: Operator source: - remote: - path: src/OpenTK.Compute/OpenCL/CLPipe.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Inequality - path: opentk/src/OpenTK.Compute/OpenCL/CLPipe.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLPipe.cs startLine: 34 assemblies: - OpenTK.Compute @@ -292,12 +260,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLPipe.implicit operator nint(OpenTK.Compute.OpenCL.CLPipe) type: Operator source: - remote: - path: src/OpenTK.Compute/OpenCL/CLPipe.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Implicit - path: opentk/src/OpenTK.Compute/OpenCL/CLPipe.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLPipe.cs startLine: 39 assemblies: - OpenTK.Compute diff --git a/api/OpenTK.Compute.OpenCL.CLPlatform.yml b/api/OpenTK.Compute.OpenCL.CLPlatform.yml index 16478323..81b92390 100644 --- a/api/OpenTK.Compute.OpenCL.CLPlatform.yml +++ b/api/OpenTK.Compute.OpenCL.CLPlatform.yml @@ -21,12 +21,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLPlatform type: Struct source: - remote: - path: src/OpenTK.Compute/OpenCL/CLPlatform.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CLPlatform - path: opentk/src/OpenTK.Compute/OpenCL/CLPlatform.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLPlatform.cs startLine: 5 assemblies: - OpenTK.Compute @@ -53,12 +49,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLPlatform.Handle type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/CLPlatform.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Handle - path: opentk/src/OpenTK.Compute/OpenCL/CLPlatform.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLPlatform.cs startLine: 7 assemblies: - OpenTK.Compute @@ -80,12 +72,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLPlatform.CLPlatform(nint) type: Constructor source: - remote: - path: src/OpenTK.Compute/OpenCL/CLPlatform.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Compute/OpenCL/CLPlatform.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLPlatform.cs startLine: 9 assemblies: - OpenTK.Compute @@ -112,12 +100,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLPlatform.Equals(OpenTK.Compute.OpenCL.CLPlatform) type: Method source: - remote: - path: src/OpenTK.Compute/OpenCL/CLPlatform.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Equals - path: opentk/src/OpenTK.Compute/OpenCL/CLPlatform.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLPlatform.cs startLine: 14 assemblies: - OpenTK.Compute @@ -149,12 +133,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLPlatform.Equals(object) type: Method source: - remote: - path: src/OpenTK.Compute/OpenCL/CLPlatform.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Equals - path: opentk/src/OpenTK.Compute/OpenCL/CLPlatform.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLPlatform.cs startLine: 19 assemblies: - OpenTK.Compute @@ -188,12 +168,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLPlatform.GetHashCode() type: Method source: - remote: - path: src/OpenTK.Compute/OpenCL/CLPlatform.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetHashCode - path: opentk/src/OpenTK.Compute/OpenCL/CLPlatform.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLPlatform.cs startLine: 24 assemblies: - OpenTK.Compute @@ -220,12 +196,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLPlatform.operator ==(OpenTK.Compute.OpenCL.CLPlatform, OpenTK.Compute.OpenCL.CLPlatform) type: Operator source: - remote: - path: src/OpenTK.Compute/OpenCL/CLPlatform.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Equality - path: opentk/src/OpenTK.Compute/OpenCL/CLPlatform.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLPlatform.cs startLine: 29 assemblies: - OpenTK.Compute @@ -256,12 +228,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLPlatform.operator !=(OpenTK.Compute.OpenCL.CLPlatform, OpenTK.Compute.OpenCL.CLPlatform) type: Operator source: - remote: - path: src/OpenTK.Compute/OpenCL/CLPlatform.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Inequality - path: opentk/src/OpenTK.Compute/OpenCL/CLPlatform.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLPlatform.cs startLine: 34 assemblies: - OpenTK.Compute @@ -292,12 +260,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLPlatform.implicit operator nint(OpenTK.Compute.OpenCL.CLPlatform) type: Operator source: - remote: - path: src/OpenTK.Compute/OpenCL/CLPlatform.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Implicit - path: opentk/src/OpenTK.Compute/OpenCL/CLPlatform.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLPlatform.cs startLine: 39 assemblies: - OpenTK.Compute diff --git a/api/OpenTK.Compute.OpenCL.CLProgram.yml b/api/OpenTK.Compute.OpenCL.CLProgram.yml index db144468..eaa739b1 100644 --- a/api/OpenTK.Compute.OpenCL.CLProgram.yml +++ b/api/OpenTK.Compute.OpenCL.CLProgram.yml @@ -21,12 +21,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLProgram type: Struct source: - remote: - path: src/OpenTK.Compute/OpenCL/CLProgram.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CLProgram - path: opentk/src/OpenTK.Compute/OpenCL/CLProgram.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLProgram.cs startLine: 5 assemblies: - OpenTK.Compute @@ -53,12 +49,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLProgram.Handle type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/CLProgram.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Handle - path: opentk/src/OpenTK.Compute/OpenCL/CLProgram.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLProgram.cs startLine: 7 assemblies: - OpenTK.Compute @@ -80,12 +72,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLProgram.CLProgram(nint) type: Constructor source: - remote: - path: src/OpenTK.Compute/OpenCL/CLProgram.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Compute/OpenCL/CLProgram.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLProgram.cs startLine: 9 assemblies: - OpenTK.Compute @@ -112,12 +100,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLProgram.Equals(OpenTK.Compute.OpenCL.CLProgram) type: Method source: - remote: - path: src/OpenTK.Compute/OpenCL/CLProgram.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Equals - path: opentk/src/OpenTK.Compute/OpenCL/CLProgram.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLProgram.cs startLine: 14 assemblies: - OpenTK.Compute @@ -149,12 +133,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLProgram.Equals(object) type: Method source: - remote: - path: src/OpenTK.Compute/OpenCL/CLProgram.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Equals - path: opentk/src/OpenTK.Compute/OpenCL/CLProgram.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLProgram.cs startLine: 19 assemblies: - OpenTK.Compute @@ -188,12 +168,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLProgram.GetHashCode() type: Method source: - remote: - path: src/OpenTK.Compute/OpenCL/CLProgram.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetHashCode - path: opentk/src/OpenTK.Compute/OpenCL/CLProgram.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLProgram.cs startLine: 24 assemblies: - OpenTK.Compute @@ -220,12 +196,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLProgram.operator ==(OpenTK.Compute.OpenCL.CLProgram, OpenTK.Compute.OpenCL.CLProgram) type: Operator source: - remote: - path: src/OpenTK.Compute/OpenCL/CLProgram.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Equality - path: opentk/src/OpenTK.Compute/OpenCL/CLProgram.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLProgram.cs startLine: 29 assemblies: - OpenTK.Compute @@ -256,12 +228,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLProgram.operator !=(OpenTK.Compute.OpenCL.CLProgram, OpenTK.Compute.OpenCL.CLProgram) type: Operator source: - remote: - path: src/OpenTK.Compute/OpenCL/CLProgram.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Inequality - path: opentk/src/OpenTK.Compute/OpenCL/CLProgram.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLProgram.cs startLine: 34 assemblies: - OpenTK.Compute @@ -292,12 +260,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLProgram.implicit operator nint(OpenTK.Compute.OpenCL.CLProgram) type: Operator source: - remote: - path: src/OpenTK.Compute/OpenCL/CLProgram.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Implicit - path: opentk/src/OpenTK.Compute/OpenCL/CLProgram.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLProgram.cs startLine: 39 assemblies: - OpenTK.Compute diff --git a/api/OpenTK.Compute.OpenCL.CLResultCode.yml b/api/OpenTK.Compute.OpenCL.CLResultCode.yml index 09af734e..4c39ba1f 100644 --- a/api/OpenTK.Compute.OpenCL.CLResultCode.yml +++ b/api/OpenTK.Compute.OpenCL.CLResultCode.yml @@ -102,12 +102,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLResultCode type: Enum source: - remote: - path: src/OpenTK.Compute/OpenCL/CLResultCode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CLResultCode - path: opentk/src/OpenTK.Compute/OpenCL/CLResultCode.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLResultCode.cs startLine: 3 assemblies: - OpenTK.Compute @@ -127,12 +123,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLResultCode.Success type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/CLResultCode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Success - path: opentk/src/OpenTK.Compute/OpenCL/CLResultCode.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLResultCode.cs startLine: 5 assemblies: - OpenTK.Compute @@ -153,12 +145,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLResultCode.DeviceNotFound type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/CLResultCode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DeviceNotFound - path: opentk/src/OpenTK.Compute/OpenCL/CLResultCode.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLResultCode.cs startLine: 9 assemblies: - OpenTK.Compute @@ -179,12 +167,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLResultCode.DeviceNotAvailable type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/CLResultCode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DeviceNotAvailable - path: opentk/src/OpenTK.Compute/OpenCL/CLResultCode.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLResultCode.cs startLine: 10 assemblies: - OpenTK.Compute @@ -205,12 +189,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLResultCode.CompilerNotAvailable type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/CLResultCode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CompilerNotAvailable - path: opentk/src/OpenTK.Compute/OpenCL/CLResultCode.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLResultCode.cs startLine: 11 assemblies: - OpenTK.Compute @@ -231,12 +211,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLResultCode.MemObjectAllocationFailure type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/CLResultCode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MemObjectAllocationFailure - path: opentk/src/OpenTK.Compute/OpenCL/CLResultCode.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLResultCode.cs startLine: 12 assemblies: - OpenTK.Compute @@ -257,12 +233,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLResultCode.OutOfResources type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/CLResultCode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: OutOfResources - path: opentk/src/OpenTK.Compute/OpenCL/CLResultCode.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLResultCode.cs startLine: 13 assemblies: - OpenTK.Compute @@ -283,12 +255,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLResultCode.OutOfHostMemory type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/CLResultCode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: OutOfHostMemory - path: opentk/src/OpenTK.Compute/OpenCL/CLResultCode.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLResultCode.cs startLine: 14 assemblies: - OpenTK.Compute @@ -309,12 +277,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLResultCode.ProfilingInformationNotAvailable type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/CLResultCode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ProfilingInformationNotAvailable - path: opentk/src/OpenTK.Compute/OpenCL/CLResultCode.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLResultCode.cs startLine: 15 assemblies: - OpenTK.Compute @@ -335,12 +299,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLResultCode.MemCopyOverlap type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/CLResultCode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MemCopyOverlap - path: opentk/src/OpenTK.Compute/OpenCL/CLResultCode.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLResultCode.cs startLine: 16 assemblies: - OpenTK.Compute @@ -361,12 +321,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLResultCode.ImageFormatMismatch type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/CLResultCode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ImageFormatMismatch - path: opentk/src/OpenTK.Compute/OpenCL/CLResultCode.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLResultCode.cs startLine: 17 assemblies: - OpenTK.Compute @@ -387,12 +343,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLResultCode.ImageFormatNotSupported type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/CLResultCode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ImageFormatNotSupported - path: opentk/src/OpenTK.Compute/OpenCL/CLResultCode.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLResultCode.cs startLine: 18 assemblies: - OpenTK.Compute @@ -413,12 +365,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLResultCode.BuildProgramFailure type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/CLResultCode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: BuildProgramFailure - path: opentk/src/OpenTK.Compute/OpenCL/CLResultCode.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLResultCode.cs startLine: 19 assemblies: - OpenTK.Compute @@ -439,12 +387,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLResultCode.MapFailure type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/CLResultCode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MapFailure - path: opentk/src/OpenTK.Compute/OpenCL/CLResultCode.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLResultCode.cs startLine: 20 assemblies: - OpenTK.Compute @@ -465,12 +409,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLResultCode.MisalignedSubBufferOffset type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/CLResultCode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MisalignedSubBufferOffset - path: opentk/src/OpenTK.Compute/OpenCL/CLResultCode.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLResultCode.cs startLine: 21 assemblies: - OpenTK.Compute @@ -491,12 +431,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLResultCode.ExecStatusErrorForEventsInWaitList type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/CLResultCode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ExecStatusErrorForEventsInWaitList - path: opentk/src/OpenTK.Compute/OpenCL/CLResultCode.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLResultCode.cs startLine: 22 assemblies: - OpenTK.Compute @@ -517,12 +453,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLResultCode.CompileProgramFailure type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/CLResultCode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CompileProgramFailure - path: opentk/src/OpenTK.Compute/OpenCL/CLResultCode.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLResultCode.cs startLine: 23 assemblies: - OpenTK.Compute @@ -543,12 +475,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLResultCode.LinkerNotAvailable type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/CLResultCode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: LinkerNotAvailable - path: opentk/src/OpenTK.Compute/OpenCL/CLResultCode.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLResultCode.cs startLine: 24 assemblies: - OpenTK.Compute @@ -569,12 +497,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLResultCode.LinkProgramFailure type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/CLResultCode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: LinkProgramFailure - path: opentk/src/OpenTK.Compute/OpenCL/CLResultCode.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLResultCode.cs startLine: 25 assemblies: - OpenTK.Compute @@ -595,12 +519,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLResultCode.DevicePartitionFailed type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/CLResultCode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DevicePartitionFailed - path: opentk/src/OpenTK.Compute/OpenCL/CLResultCode.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLResultCode.cs startLine: 26 assemblies: - OpenTK.Compute @@ -621,12 +541,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLResultCode.KernelArgInfoNotAvailable type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/CLResultCode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: KernelArgInfoNotAvailable - path: opentk/src/OpenTK.Compute/OpenCL/CLResultCode.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLResultCode.cs startLine: 27 assemblies: - OpenTK.Compute @@ -647,12 +563,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLResultCode.InvalidValue type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/CLResultCode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: InvalidValue - path: opentk/src/OpenTK.Compute/OpenCL/CLResultCode.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLResultCode.cs startLine: 33 assemblies: - OpenTK.Compute @@ -673,12 +585,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLResultCode.InvalidDeviceType type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/CLResultCode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: InvalidDeviceType - path: opentk/src/OpenTK.Compute/OpenCL/CLResultCode.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLResultCode.cs startLine: 34 assemblies: - OpenTK.Compute @@ -699,12 +607,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLResultCode.InvalidPlatform type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/CLResultCode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: InvalidPlatform - path: opentk/src/OpenTK.Compute/OpenCL/CLResultCode.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLResultCode.cs startLine: 35 assemblies: - OpenTK.Compute @@ -725,12 +629,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLResultCode.InvalidDevice type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/CLResultCode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: InvalidDevice - path: opentk/src/OpenTK.Compute/OpenCL/CLResultCode.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLResultCode.cs startLine: 36 assemblies: - OpenTK.Compute @@ -751,12 +651,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLResultCode.InvalidContext type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/CLResultCode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: InvalidContext - path: opentk/src/OpenTK.Compute/OpenCL/CLResultCode.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLResultCode.cs startLine: 37 assemblies: - OpenTK.Compute @@ -777,12 +673,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLResultCode.InvalidQueueProperties type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/CLResultCode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: InvalidQueueProperties - path: opentk/src/OpenTK.Compute/OpenCL/CLResultCode.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLResultCode.cs startLine: 38 assemblies: - OpenTK.Compute @@ -803,12 +695,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLResultCode.InvalidCommandQueue type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/CLResultCode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: InvalidCommandQueue - path: opentk/src/OpenTK.Compute/OpenCL/CLResultCode.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLResultCode.cs startLine: 39 assemblies: - OpenTK.Compute @@ -829,12 +717,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLResultCode.InvalidHostPtr type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/CLResultCode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: InvalidHostPtr - path: opentk/src/OpenTK.Compute/OpenCL/CLResultCode.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLResultCode.cs startLine: 40 assemblies: - OpenTK.Compute @@ -855,12 +739,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLResultCode.InvalidMemObject type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/CLResultCode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: InvalidMemObject - path: opentk/src/OpenTK.Compute/OpenCL/CLResultCode.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLResultCode.cs startLine: 41 assemblies: - OpenTK.Compute @@ -881,12 +761,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLResultCode.InvalidImageFormatDescriptor type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/CLResultCode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: InvalidImageFormatDescriptor - path: opentk/src/OpenTK.Compute/OpenCL/CLResultCode.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLResultCode.cs startLine: 42 assemblies: - OpenTK.Compute @@ -907,12 +783,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLResultCode.InvalidImageSize type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/CLResultCode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: InvalidImageSize - path: opentk/src/OpenTK.Compute/OpenCL/CLResultCode.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLResultCode.cs startLine: 43 assemblies: - OpenTK.Compute @@ -933,12 +805,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLResultCode.InvalidSampler type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/CLResultCode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: InvalidSampler - path: opentk/src/OpenTK.Compute/OpenCL/CLResultCode.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLResultCode.cs startLine: 44 assemblies: - OpenTK.Compute @@ -959,12 +827,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLResultCode.InvalidBinary type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/CLResultCode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: InvalidBinary - path: opentk/src/OpenTK.Compute/OpenCL/CLResultCode.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLResultCode.cs startLine: 45 assemblies: - OpenTK.Compute @@ -985,12 +849,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLResultCode.InvalidBuildOptions type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/CLResultCode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: InvalidBuildOptions - path: opentk/src/OpenTK.Compute/OpenCL/CLResultCode.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLResultCode.cs startLine: 46 assemblies: - OpenTK.Compute @@ -1011,12 +871,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLResultCode.InvalidProgram type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/CLResultCode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: InvalidProgram - path: opentk/src/OpenTK.Compute/OpenCL/CLResultCode.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLResultCode.cs startLine: 47 assemblies: - OpenTK.Compute @@ -1037,12 +893,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLResultCode.InvalidProgramExecutable type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/CLResultCode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: InvalidProgramExecutable - path: opentk/src/OpenTK.Compute/OpenCL/CLResultCode.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLResultCode.cs startLine: 48 assemblies: - OpenTK.Compute @@ -1063,12 +915,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLResultCode.InvalidKernelName type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/CLResultCode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: InvalidKernelName - path: opentk/src/OpenTK.Compute/OpenCL/CLResultCode.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLResultCode.cs startLine: 49 assemblies: - OpenTK.Compute @@ -1089,12 +937,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLResultCode.InvalidKernelDefinition type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/CLResultCode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: InvalidKernelDefinition - path: opentk/src/OpenTK.Compute/OpenCL/CLResultCode.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLResultCode.cs startLine: 50 assemblies: - OpenTK.Compute @@ -1115,12 +959,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLResultCode.InvalidKernel type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/CLResultCode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: InvalidKernel - path: opentk/src/OpenTK.Compute/OpenCL/CLResultCode.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLResultCode.cs startLine: 51 assemblies: - OpenTK.Compute @@ -1141,12 +981,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLResultCode.InvalidArgIndex type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/CLResultCode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: InvalidArgIndex - path: opentk/src/OpenTK.Compute/OpenCL/CLResultCode.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLResultCode.cs startLine: 52 assemblies: - OpenTK.Compute @@ -1167,12 +1003,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLResultCode.InvalidArgValue type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/CLResultCode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: InvalidArgValue - path: opentk/src/OpenTK.Compute/OpenCL/CLResultCode.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLResultCode.cs startLine: 53 assemblies: - OpenTK.Compute @@ -1193,12 +1025,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLResultCode.InvalidArgSize type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/CLResultCode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: InvalidArgSize - path: opentk/src/OpenTK.Compute/OpenCL/CLResultCode.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLResultCode.cs startLine: 54 assemblies: - OpenTK.Compute @@ -1219,12 +1047,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLResultCode.InvalidKernelArgs type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/CLResultCode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: InvalidKernelArgs - path: opentk/src/OpenTK.Compute/OpenCL/CLResultCode.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLResultCode.cs startLine: 55 assemblies: - OpenTK.Compute @@ -1245,12 +1069,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLResultCode.InvalidWorkDimension type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/CLResultCode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: InvalidWorkDimension - path: opentk/src/OpenTK.Compute/OpenCL/CLResultCode.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLResultCode.cs startLine: 56 assemblies: - OpenTK.Compute @@ -1271,12 +1091,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLResultCode.InvalidWorkGroupSize type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/CLResultCode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: InvalidWorkGroupSize - path: opentk/src/OpenTK.Compute/OpenCL/CLResultCode.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLResultCode.cs startLine: 57 assemblies: - OpenTK.Compute @@ -1297,12 +1113,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLResultCode.InvalidWorkItemSize type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/CLResultCode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: InvalidWorkItemSize - path: opentk/src/OpenTK.Compute/OpenCL/CLResultCode.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLResultCode.cs startLine: 58 assemblies: - OpenTK.Compute @@ -1323,12 +1135,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLResultCode.InvalidGlobalOffset type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/CLResultCode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: InvalidGlobalOffset - path: opentk/src/OpenTK.Compute/OpenCL/CLResultCode.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLResultCode.cs startLine: 59 assemblies: - OpenTK.Compute @@ -1349,12 +1157,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLResultCode.InvalidEventWaitList type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/CLResultCode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: InvalidEventWaitList - path: opentk/src/OpenTK.Compute/OpenCL/CLResultCode.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLResultCode.cs startLine: 60 assemblies: - OpenTK.Compute @@ -1375,12 +1179,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLResultCode.InvalidEvent type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/CLResultCode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: InvalidEvent - path: opentk/src/OpenTK.Compute/OpenCL/CLResultCode.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLResultCode.cs startLine: 61 assemblies: - OpenTK.Compute @@ -1401,12 +1201,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLResultCode.InvalidOperation type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/CLResultCode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: InvalidOperation - path: opentk/src/OpenTK.Compute/OpenCL/CLResultCode.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLResultCode.cs startLine: 62 assemblies: - OpenTK.Compute @@ -1427,12 +1223,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLResultCode.InvalidGlObject type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/CLResultCode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: InvalidGlObject - path: opentk/src/OpenTK.Compute/OpenCL/CLResultCode.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLResultCode.cs startLine: 63 assemblies: - OpenTK.Compute @@ -1453,12 +1245,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLResultCode.InvalidBufferSize type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/CLResultCode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: InvalidBufferSize - path: opentk/src/OpenTK.Compute/OpenCL/CLResultCode.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLResultCode.cs startLine: 64 assemblies: - OpenTK.Compute @@ -1479,12 +1267,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLResultCode.InvalidMipLevel type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/CLResultCode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: InvalidMipLevel - path: opentk/src/OpenTK.Compute/OpenCL/CLResultCode.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLResultCode.cs startLine: 65 assemblies: - OpenTK.Compute @@ -1505,12 +1289,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLResultCode.InvalidGlobalWorkSize type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/CLResultCode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: InvalidGlobalWorkSize - path: opentk/src/OpenTK.Compute/OpenCL/CLResultCode.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLResultCode.cs startLine: 66 assemblies: - OpenTK.Compute @@ -1531,12 +1311,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLResultCode.InvalidProperty type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/CLResultCode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: InvalidProperty - path: opentk/src/OpenTK.Compute/OpenCL/CLResultCode.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLResultCode.cs startLine: 67 assemblies: - OpenTK.Compute @@ -1557,12 +1333,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLResultCode.InvalidImageDescriptor type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/CLResultCode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: InvalidImageDescriptor - path: opentk/src/OpenTK.Compute/OpenCL/CLResultCode.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLResultCode.cs startLine: 68 assemblies: - OpenTK.Compute @@ -1583,12 +1355,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLResultCode.InvalidCompilerOptions type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/CLResultCode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: InvalidCompilerOptions - path: opentk/src/OpenTK.Compute/OpenCL/CLResultCode.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLResultCode.cs startLine: 69 assemblies: - OpenTK.Compute @@ -1609,12 +1377,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLResultCode.InvalidLinkerOptions type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/CLResultCode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: InvalidLinkerOptions - path: opentk/src/OpenTK.Compute/OpenCL/CLResultCode.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLResultCode.cs startLine: 70 assemblies: - OpenTK.Compute @@ -1635,12 +1399,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLResultCode.InvalidDevicePartitionCount type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/CLResultCode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: InvalidDevicePartitionCount - path: opentk/src/OpenTK.Compute/OpenCL/CLResultCode.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLResultCode.cs startLine: 71 assemblies: - OpenTK.Compute @@ -1661,12 +1421,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLResultCode.InvalidPipeSize type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/CLResultCode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: InvalidPipeSize - path: opentk/src/OpenTK.Compute/OpenCL/CLResultCode.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLResultCode.cs startLine: 72 assemblies: - OpenTK.Compute @@ -1687,12 +1443,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLResultCode.InvalidDeviceQueue type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/CLResultCode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: InvalidDeviceQueue - path: opentk/src/OpenTK.Compute/OpenCL/CLResultCode.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLResultCode.cs startLine: 73 assemblies: - OpenTK.Compute @@ -1713,12 +1465,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLResultCode.InvalidGlShaderGroupReferenceKhr type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/CLResultCode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: InvalidGlShaderGroupReferenceKhr - path: opentk/src/OpenTK.Compute/OpenCL/CLResultCode.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLResultCode.cs startLine: 79 assemblies: - OpenTK.Compute @@ -1739,12 +1487,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLResultCode.PlatformNotFoundKhr type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/CLResultCode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: PlatformNotFoundKhr - path: opentk/src/OpenTK.Compute/OpenCL/CLResultCode.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLResultCode.cs startLine: 80 assemblies: - OpenTK.Compute @@ -1765,12 +1509,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLResultCode.InvalidD3D10DeviceKhr type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/CLResultCode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: InvalidD3D10DeviceKhr - path: opentk/src/OpenTK.Compute/OpenCL/CLResultCode.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLResultCode.cs startLine: 81 assemblies: - OpenTK.Compute @@ -1791,12 +1531,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLResultCode.InvalidD3D10ResourceKhr type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/CLResultCode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: InvalidD3D10ResourceKhr - path: opentk/src/OpenTK.Compute/OpenCL/CLResultCode.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLResultCode.cs startLine: 82 assemblies: - OpenTK.Compute @@ -1817,12 +1553,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLResultCode.D3D10ResourceAlreadyAcquiredKhr type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/CLResultCode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: D3D10ResourceAlreadyAcquiredKhr - path: opentk/src/OpenTK.Compute/OpenCL/CLResultCode.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLResultCode.cs startLine: 83 assemblies: - OpenTK.Compute @@ -1843,12 +1575,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLResultCode.D3D10ResourceNotAcquiredKhr type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/CLResultCode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: D3D10ResourceNotAcquiredKhr - path: opentk/src/OpenTK.Compute/OpenCL/CLResultCode.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLResultCode.cs startLine: 84 assemblies: - OpenTK.Compute @@ -1869,12 +1597,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLResultCode.InvalidD3D11DeviceKhr type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/CLResultCode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: InvalidD3D11DeviceKhr - path: opentk/src/OpenTK.Compute/OpenCL/CLResultCode.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLResultCode.cs startLine: 85 assemblies: - OpenTK.Compute @@ -1895,12 +1619,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLResultCode.InvalidD3D11ResourceKhr type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/CLResultCode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: InvalidD3D11ResourceKhr - path: opentk/src/OpenTK.Compute/OpenCL/CLResultCode.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLResultCode.cs startLine: 86 assemblies: - OpenTK.Compute @@ -1921,12 +1641,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLResultCode.D3D11ResourceAlreadyAcquiredKhr type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/CLResultCode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: D3D11ResourceAlreadyAcquiredKhr - path: opentk/src/OpenTK.Compute/OpenCL/CLResultCode.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLResultCode.cs startLine: 87 assemblies: - OpenTK.Compute @@ -1947,12 +1663,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLResultCode.D3D11ResourceNotAcquiredKhr type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/CLResultCode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: D3D11ResourceNotAcquiredKhr - path: opentk/src/OpenTK.Compute/OpenCL/CLResultCode.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLResultCode.cs startLine: 88 assemblies: - OpenTK.Compute @@ -1973,12 +1685,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLResultCode.InvalidD3D9DeviceNv type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/CLResultCode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: InvalidD3D9DeviceNv - path: opentk/src/OpenTK.Compute/OpenCL/CLResultCode.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLResultCode.cs startLine: 90 assemblies: - OpenTK.Compute @@ -1999,12 +1707,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLResultCode.InvalidDx9DeviceIntel type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/CLResultCode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: InvalidDx9DeviceIntel - path: opentk/src/OpenTK.Compute/OpenCL/CLResultCode.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLResultCode.cs startLine: 91 assemblies: - OpenTK.Compute @@ -2025,12 +1729,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLResultCode.InvalidD3D9ResourceNv type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/CLResultCode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: InvalidD3D9ResourceNv - path: opentk/src/OpenTK.Compute/OpenCL/CLResultCode.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLResultCode.cs startLine: 93 assemblies: - OpenTK.Compute @@ -2051,12 +1751,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLResultCode.InvalidDx9ResourceIntel type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/CLResultCode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: InvalidDx9ResourceIntel - path: opentk/src/OpenTK.Compute/OpenCL/CLResultCode.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLResultCode.cs startLine: 94 assemblies: - OpenTK.Compute @@ -2077,12 +1773,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLResultCode.D3D9ResourceAlreadyAcquiredNv type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/CLResultCode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: D3D9ResourceAlreadyAcquiredNv - path: opentk/src/OpenTK.Compute/OpenCL/CLResultCode.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLResultCode.cs startLine: 96 assemblies: - OpenTK.Compute @@ -2103,12 +1795,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLResultCode.Dx9ResourceAlreadyAcquiredIntel type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/CLResultCode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Dx9ResourceAlreadyAcquiredIntel - path: opentk/src/OpenTK.Compute/OpenCL/CLResultCode.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLResultCode.cs startLine: 97 assemblies: - OpenTK.Compute @@ -2129,12 +1817,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLResultCode.D3D9ResourceNotAcquiredNv type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/CLResultCode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: D3D9ResourceNotAcquiredNv - path: opentk/src/OpenTK.Compute/OpenCL/CLResultCode.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLResultCode.cs startLine: 99 assemblies: - OpenTK.Compute @@ -2155,12 +1839,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLResultCode.Dx9ResourceNotAcquiredIntel type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/CLResultCode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Dx9ResourceNotAcquiredIntel - path: opentk/src/OpenTK.Compute/OpenCL/CLResultCode.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLResultCode.cs startLine: 100 assemblies: - OpenTK.Compute @@ -2181,12 +1861,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLResultCode.EglResourceNotAcquiredKhr type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/CLResultCode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: EglResourceNotAcquiredKhr - path: opentk/src/OpenTK.Compute/OpenCL/CLResultCode.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLResultCode.cs startLine: 102 assemblies: - OpenTK.Compute @@ -2207,12 +1883,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLResultCode.InvalidEglObjectKhr type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/CLResultCode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: InvalidEglObjectKhr - path: opentk/src/OpenTK.Compute/OpenCL/CLResultCode.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLResultCode.cs startLine: 103 assemblies: - OpenTK.Compute @@ -2233,12 +1905,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLResultCode.InvalidAcceleratorIntel type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/CLResultCode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: InvalidAcceleratorIntel - path: opentk/src/OpenTK.Compute/OpenCL/CLResultCode.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLResultCode.cs startLine: 104 assemblies: - OpenTK.Compute @@ -2259,12 +1927,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLResultCode.InvalidAcceleratorTypeIntel type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/CLResultCode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: InvalidAcceleratorTypeIntel - path: opentk/src/OpenTK.Compute/OpenCL/CLResultCode.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLResultCode.cs startLine: 105 assemblies: - OpenTK.Compute @@ -2285,12 +1949,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLResultCode.InvalidAcceleratorDescriptorIntel type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/CLResultCode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: InvalidAcceleratorDescriptorIntel - path: opentk/src/OpenTK.Compute/OpenCL/CLResultCode.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLResultCode.cs startLine: 106 assemblies: - OpenTK.Compute @@ -2311,12 +1971,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLResultCode.AcceleratorTypeNotSupportedIntel type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/CLResultCode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: AcceleratorTypeNotSupportedIntel - path: opentk/src/OpenTK.Compute/OpenCL/CLResultCode.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLResultCode.cs startLine: 107 assemblies: - OpenTK.Compute @@ -2337,12 +1993,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLResultCode.InvalidVaApiMediaAdapterIntel type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/CLResultCode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: InvalidVaApiMediaAdapterIntel - path: opentk/src/OpenTK.Compute/OpenCL/CLResultCode.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLResultCode.cs startLine: 108 assemblies: - OpenTK.Compute @@ -2363,12 +2015,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLResultCode.InvalidVaApiMediaSurfaceIntel type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/CLResultCode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: InvalidVaApiMediaSurfaceIntel - path: opentk/src/OpenTK.Compute/OpenCL/CLResultCode.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLResultCode.cs startLine: 109 assemblies: - OpenTK.Compute @@ -2389,12 +2037,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLResultCode.VaApiMediaSurfaceAlreadyAcquiredIntel type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/CLResultCode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: VaApiMediaSurfaceAlreadyAcquiredIntel - path: opentk/src/OpenTK.Compute/OpenCL/CLResultCode.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLResultCode.cs startLine: 110 assemblies: - OpenTK.Compute @@ -2415,12 +2059,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLResultCode.VaApiMediaSurfaceNotAcquiredIntel type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/CLResultCode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: VaApiMediaSurfaceNotAcquiredIntel - path: opentk/src/OpenTK.Compute/OpenCL/CLResultCode.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLResultCode.cs startLine: 111 assemblies: - OpenTK.Compute diff --git a/api/OpenTK.Compute.OpenCL.CLSampler.yml b/api/OpenTK.Compute.OpenCL.CLSampler.yml index 346ff0ca..0449d8f1 100644 --- a/api/OpenTK.Compute.OpenCL.CLSampler.yml +++ b/api/OpenTK.Compute.OpenCL.CLSampler.yml @@ -21,12 +21,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLSampler type: Struct source: - remote: - path: src/OpenTK.Compute/OpenCL/CLSampler.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CLSampler - path: opentk/src/OpenTK.Compute/OpenCL/CLSampler.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLSampler.cs startLine: 5 assemblies: - OpenTK.Compute @@ -53,12 +49,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLSampler.Handle type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/CLSampler.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Handle - path: opentk/src/OpenTK.Compute/OpenCL/CLSampler.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLSampler.cs startLine: 7 assemblies: - OpenTK.Compute @@ -80,12 +72,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLSampler.CLSampler(nint) type: Constructor source: - remote: - path: src/OpenTK.Compute/OpenCL/CLSampler.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Compute/OpenCL/CLSampler.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLSampler.cs startLine: 9 assemblies: - OpenTK.Compute @@ -112,12 +100,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLSampler.Equals(OpenTK.Compute.OpenCL.CLSampler) type: Method source: - remote: - path: src/OpenTK.Compute/OpenCL/CLSampler.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Equals - path: opentk/src/OpenTK.Compute/OpenCL/CLSampler.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLSampler.cs startLine: 14 assemblies: - OpenTK.Compute @@ -149,12 +133,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLSampler.Equals(object) type: Method source: - remote: - path: src/OpenTK.Compute/OpenCL/CLSampler.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Equals - path: opentk/src/OpenTK.Compute/OpenCL/CLSampler.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLSampler.cs startLine: 19 assemblies: - OpenTK.Compute @@ -188,12 +168,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLSampler.GetHashCode() type: Method source: - remote: - path: src/OpenTK.Compute/OpenCL/CLSampler.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetHashCode - path: opentk/src/OpenTK.Compute/OpenCL/CLSampler.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLSampler.cs startLine: 24 assemblies: - OpenTK.Compute @@ -220,12 +196,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLSampler.operator ==(OpenTK.Compute.OpenCL.CLSampler, OpenTK.Compute.OpenCL.CLSampler) type: Operator source: - remote: - path: src/OpenTK.Compute/OpenCL/CLSampler.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Equality - path: opentk/src/OpenTK.Compute/OpenCL/CLSampler.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLSampler.cs startLine: 29 assemblies: - OpenTK.Compute @@ -256,12 +228,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLSampler.operator !=(OpenTK.Compute.OpenCL.CLSampler, OpenTK.Compute.OpenCL.CLSampler) type: Operator source: - remote: - path: src/OpenTK.Compute/OpenCL/CLSampler.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Inequality - path: opentk/src/OpenTK.Compute/OpenCL/CLSampler.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLSampler.cs startLine: 34 assemblies: - OpenTK.Compute @@ -292,12 +260,8 @@ items: fullName: OpenTK.Compute.OpenCL.CLSampler.implicit operator nint(OpenTK.Compute.OpenCL.CLSampler) type: Operator source: - remote: - path: src/OpenTK.Compute/OpenCL/CLSampler.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Implicit - path: opentk/src/OpenTK.Compute/OpenCL/CLSampler.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\CLSampler.cs startLine: 39 assemblies: - OpenTK.Compute diff --git a/api/OpenTK.Compute.OpenCL.ChannelOrder.yml b/api/OpenTK.Compute.OpenCL.ChannelOrder.yml index 829f43a7..d86452b3 100644 --- a/api/OpenTK.Compute.OpenCL.ChannelOrder.yml +++ b/api/OpenTK.Compute.OpenCL.ChannelOrder.yml @@ -33,12 +33,8 @@ items: fullName: OpenTK.Compute.OpenCL.ChannelOrder type: Enum source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ChannelOrder - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 246 assemblies: - OpenTK.Compute @@ -58,12 +54,8 @@ items: fullName: OpenTK.Compute.OpenCL.ChannelOrder.R type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: R - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 248 assemblies: - OpenTK.Compute @@ -84,12 +76,8 @@ items: fullName: OpenTK.Compute.OpenCL.ChannelOrder.A type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: A - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 249 assemblies: - OpenTK.Compute @@ -110,12 +98,8 @@ items: fullName: OpenTK.Compute.OpenCL.ChannelOrder.Rg type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Rg - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 250 assemblies: - OpenTK.Compute @@ -136,12 +120,8 @@ items: fullName: OpenTK.Compute.OpenCL.ChannelOrder.Ra type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Ra - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 251 assemblies: - OpenTK.Compute @@ -162,12 +142,8 @@ items: fullName: OpenTK.Compute.OpenCL.ChannelOrder.Rgb type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Rgb - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 252 assemblies: - OpenTK.Compute @@ -188,12 +164,8 @@ items: fullName: OpenTK.Compute.OpenCL.ChannelOrder.Rgba type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Rgba - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 253 assemblies: - OpenTK.Compute @@ -214,12 +186,8 @@ items: fullName: OpenTK.Compute.OpenCL.ChannelOrder.Bgra type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Bgra - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 254 assemblies: - OpenTK.Compute @@ -240,12 +208,8 @@ items: fullName: OpenTK.Compute.OpenCL.ChannelOrder.Argb type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Argb - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 255 assemblies: - OpenTK.Compute @@ -266,12 +230,8 @@ items: fullName: OpenTK.Compute.OpenCL.ChannelOrder.Intensity type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Intensity - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 256 assemblies: - OpenTK.Compute @@ -292,12 +252,8 @@ items: fullName: OpenTK.Compute.OpenCL.ChannelOrder.Luminance type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Luminance - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 257 assemblies: - OpenTK.Compute @@ -318,12 +274,8 @@ items: fullName: OpenTK.Compute.OpenCL.ChannelOrder.Rx type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Rx - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 258 assemblies: - OpenTK.Compute @@ -344,12 +296,8 @@ items: fullName: OpenTK.Compute.OpenCL.ChannelOrder.Rgx type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Rgx - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 259 assemblies: - OpenTK.Compute @@ -370,12 +318,8 @@ items: fullName: OpenTK.Compute.OpenCL.ChannelOrder.Rgbx type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Rgbx - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 260 assemblies: - OpenTK.Compute @@ -396,12 +340,8 @@ items: fullName: OpenTK.Compute.OpenCL.ChannelOrder.Depth type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Depth - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 261 assemblies: - OpenTK.Compute @@ -422,12 +362,8 @@ items: fullName: OpenTK.Compute.OpenCL.ChannelOrder.DepthStencil type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DepthStencil - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 262 assemblies: - OpenTK.Compute @@ -448,12 +384,8 @@ items: fullName: OpenTK.Compute.OpenCL.ChannelOrder.Srgb type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Srgb - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 263 assemblies: - OpenTK.Compute @@ -474,12 +406,8 @@ items: fullName: OpenTK.Compute.OpenCL.ChannelOrder.Srgbx type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Srgbx - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 264 assemblies: - OpenTK.Compute @@ -500,12 +428,8 @@ items: fullName: OpenTK.Compute.OpenCL.ChannelOrder.Srgba type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Srgba - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 265 assemblies: - OpenTK.Compute @@ -526,12 +450,8 @@ items: fullName: OpenTK.Compute.OpenCL.ChannelOrder.Sbgra type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Sbgra - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 266 assemblies: - OpenTK.Compute @@ -552,12 +472,8 @@ items: fullName: OpenTK.Compute.OpenCL.ChannelOrder.Abgr type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Abgr - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 267 assemblies: - OpenTK.Compute diff --git a/api/OpenTK.Compute.OpenCL.ChannelType.yml b/api/OpenTK.Compute.OpenCL.ChannelType.yml index 7e27999a..ff602bfa 100644 --- a/api/OpenTK.Compute.OpenCL.ChannelType.yml +++ b/api/OpenTK.Compute.OpenCL.ChannelType.yml @@ -30,12 +30,8 @@ items: fullName: OpenTK.Compute.OpenCL.ChannelType type: Enum source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ChannelType - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 270 assemblies: - OpenTK.Compute @@ -55,12 +51,8 @@ items: fullName: OpenTK.Compute.OpenCL.ChannelType.NormalizedSignedInteger8 type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: NormalizedSignedInteger8 - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 272 assemblies: - OpenTK.Compute @@ -81,12 +73,8 @@ items: fullName: OpenTK.Compute.OpenCL.ChannelType.NormalizedSignedInteger16 type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: NormalizedSignedInteger16 - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 273 assemblies: - OpenTK.Compute @@ -107,12 +95,8 @@ items: fullName: OpenTK.Compute.OpenCL.ChannelType.NormalizedUnsignedInteger8 type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: NormalizedUnsignedInteger8 - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 274 assemblies: - OpenTK.Compute @@ -133,12 +117,8 @@ items: fullName: OpenTK.Compute.OpenCL.ChannelType.NormalizedUnsignedInteger16 type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: NormalizedUnsignedInteger16 - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 275 assemblies: - OpenTK.Compute @@ -159,12 +139,8 @@ items: fullName: OpenTK.Compute.OpenCL.ChannelType.NormalizedUnsignedShortFloat565 type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: NormalizedUnsignedShortFloat565 - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 276 assemblies: - OpenTK.Compute @@ -185,12 +161,8 @@ items: fullName: OpenTK.Compute.OpenCL.ChannelType.NormalizedUnsignedShortFloat555 type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: NormalizedUnsignedShortFloat555 - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 277 assemblies: - OpenTK.Compute @@ -211,12 +183,8 @@ items: fullName: OpenTK.Compute.OpenCL.ChannelType.NormalizedUnsignedInteger101010 type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: NormalizedUnsignedInteger101010 - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 278 assemblies: - OpenTK.Compute @@ -237,12 +205,8 @@ items: fullName: OpenTK.Compute.OpenCL.ChannelType.SignedInteger8 type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SignedInteger8 - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 279 assemblies: - OpenTK.Compute @@ -263,12 +227,8 @@ items: fullName: OpenTK.Compute.OpenCL.ChannelType.SignedInteger16 type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SignedInteger16 - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 280 assemblies: - OpenTK.Compute @@ -289,12 +249,8 @@ items: fullName: OpenTK.Compute.OpenCL.ChannelType.SignedInteger32 type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SignedInteger32 - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 281 assemblies: - OpenTK.Compute @@ -315,12 +271,8 @@ items: fullName: OpenTK.Compute.OpenCL.ChannelType.UnsignedInteger8 type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: UnsignedInteger8 - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 282 assemblies: - OpenTK.Compute @@ -341,12 +293,8 @@ items: fullName: OpenTK.Compute.OpenCL.ChannelType.UnsignedInteger16 type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: UnsignedInteger16 - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 283 assemblies: - OpenTK.Compute @@ -367,12 +315,8 @@ items: fullName: OpenTK.Compute.OpenCL.ChannelType.UnsignedInteger32 type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: UnsignedInteger32 - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 284 assemblies: - OpenTK.Compute @@ -393,12 +337,8 @@ items: fullName: OpenTK.Compute.OpenCL.ChannelType.HalfFloat type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: HalfFloat - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 285 assemblies: - OpenTK.Compute @@ -419,12 +359,8 @@ items: fullName: OpenTK.Compute.OpenCL.ChannelType.Float type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Float - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 286 assemblies: - OpenTK.Compute @@ -445,12 +381,8 @@ items: fullName: OpenTK.Compute.OpenCL.ChannelType.NormalizedUnsignedInteger24 type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: NormalizedUnsignedInteger24 - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 287 assemblies: - OpenTK.Compute @@ -471,12 +403,8 @@ items: fullName: OpenTK.Compute.OpenCL.ChannelType.NormalizedUnsignedInteger101010Version2 type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: NormalizedUnsignedInteger101010Version2 - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 288 assemblies: - OpenTK.Compute diff --git a/api/OpenTK.Compute.OpenCL.CommandExecutionStatus.yml b/api/OpenTK.Compute.OpenCL.CommandExecutionStatus.yml index 63d4c734..74e2acf1 100644 --- a/api/OpenTK.Compute.OpenCL.CommandExecutionStatus.yml +++ b/api/OpenTK.Compute.OpenCL.CommandExecutionStatus.yml @@ -18,12 +18,8 @@ items: fullName: OpenTK.Compute.OpenCL.CommandExecutionStatus type: Enum source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CommandExecutionStatus - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 431 assemblies: - OpenTK.Compute @@ -43,12 +39,8 @@ items: fullName: OpenTK.Compute.OpenCL.CommandExecutionStatus.Error type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Error - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 433 assemblies: - OpenTK.Compute @@ -69,12 +61,8 @@ items: fullName: OpenTK.Compute.OpenCL.CommandExecutionStatus.Complete type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Complete - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 434 assemblies: - OpenTK.Compute @@ -95,12 +83,8 @@ items: fullName: OpenTK.Compute.OpenCL.CommandExecutionStatus.Running type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Running - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 435 assemblies: - OpenTK.Compute @@ -121,12 +105,8 @@ items: fullName: OpenTK.Compute.OpenCL.CommandExecutionStatus.Submitted type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Submitted - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 436 assemblies: - OpenTK.Compute @@ -147,12 +127,8 @@ items: fullName: OpenTK.Compute.OpenCL.CommandExecutionStatus.Queued type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Queued - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 437 assemblies: - OpenTK.Compute diff --git a/api/OpenTK.Compute.OpenCL.CommandQueueInfo.yml b/api/OpenTK.Compute.OpenCL.CommandQueueInfo.yml index b4db7e1c..3b3d49d2 100644 --- a/api/OpenTK.Compute.OpenCL.CommandQueueInfo.yml +++ b/api/OpenTK.Compute.OpenCL.CommandQueueInfo.yml @@ -19,12 +19,8 @@ items: fullName: OpenTK.Compute.OpenCL.CommandQueueInfo type: Enum source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CommandQueueInfo - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 167 assemblies: - OpenTK.Compute @@ -44,12 +40,8 @@ items: fullName: OpenTK.Compute.OpenCL.CommandQueueInfo.Context type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Context - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 169 assemblies: - OpenTK.Compute @@ -70,12 +62,8 @@ items: fullName: OpenTK.Compute.OpenCL.CommandQueueInfo.Device type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Device - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 170 assemblies: - OpenTK.Compute @@ -96,12 +84,8 @@ items: fullName: OpenTK.Compute.OpenCL.CommandQueueInfo.ReferenceCount type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ReferenceCount - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 171 assemblies: - OpenTK.Compute @@ -122,12 +106,8 @@ items: fullName: OpenTK.Compute.OpenCL.CommandQueueInfo.Properties type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Properties - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 172 assemblies: - OpenTK.Compute @@ -148,12 +128,8 @@ items: fullName: OpenTK.Compute.OpenCL.CommandQueueInfo.Size type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Size - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 173 assemblies: - OpenTK.Compute @@ -174,12 +150,8 @@ items: fullName: OpenTK.Compute.OpenCL.CommandQueueInfo.DeviceDefault type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DeviceDefault - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 174 assemblies: - OpenTK.Compute diff --git a/api/OpenTK.Compute.OpenCL.CommandQueueProperty.yml b/api/OpenTK.Compute.OpenCL.CommandQueueProperty.yml index fe8b23a9..fa91eb3a 100644 --- a/api/OpenTK.Compute.OpenCL.CommandQueueProperty.yml +++ b/api/OpenTK.Compute.OpenCL.CommandQueueProperty.yml @@ -13,12 +13,8 @@ items: fullName: OpenTK.Compute.OpenCL.CommandQueueProperty type: Enum source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CommandQueueProperty - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 464 assemblies: - OpenTK.Compute diff --git a/api/OpenTK.Compute.OpenCL.ContextInfo.yml b/api/OpenTK.Compute.OpenCL.ContextInfo.yml index a2c598cc..8b6daadd 100644 --- a/api/OpenTK.Compute.OpenCL.ContextInfo.yml +++ b/api/OpenTK.Compute.OpenCL.ContextInfo.yml @@ -17,12 +17,8 @@ items: fullName: OpenTK.Compute.OpenCL.ContextInfo type: Enum source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ContextInfo - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 159 assemblies: - OpenTK.Compute @@ -42,12 +38,8 @@ items: fullName: OpenTK.Compute.OpenCL.ContextInfo.ReferenceCount type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ReferenceCount - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 161 assemblies: - OpenTK.Compute @@ -68,12 +60,8 @@ items: fullName: OpenTK.Compute.OpenCL.ContextInfo.Devices type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Devices - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 162 assemblies: - OpenTK.Compute @@ -94,12 +82,8 @@ items: fullName: OpenTK.Compute.OpenCL.ContextInfo.Properties type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Properties - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 163 assemblies: - OpenTK.Compute @@ -120,12 +104,8 @@ items: fullName: OpenTK.Compute.OpenCL.ContextInfo.NumberOfDevices type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: NumberOfDevices - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 164 assemblies: - OpenTK.Compute diff --git a/api/OpenTK.Compute.OpenCL.ContextProperties.yml b/api/OpenTK.Compute.OpenCL.ContextProperties.yml index bc05138c..bd5b86be 100644 --- a/api/OpenTK.Compute.OpenCL.ContextProperties.yml +++ b/api/OpenTK.Compute.OpenCL.ContextProperties.yml @@ -27,12 +27,8 @@ items: fullName: OpenTK.Compute.OpenCL.ContextProperties type: Enum source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ContextProperties - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 6 assemblies: - OpenTK.Compute @@ -52,12 +48,8 @@ items: fullName: OpenTK.Compute.OpenCL.ContextProperties.ContextPlatform type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ContextPlatform - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 8 assemblies: - OpenTK.Compute @@ -78,12 +70,8 @@ items: fullName: OpenTK.Compute.OpenCL.ContextProperties.InteropUserSync type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: InteropUserSync - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 9 assemblies: - OpenTK.Compute @@ -104,12 +92,8 @@ items: fullName: OpenTK.Compute.OpenCL.ContextProperties.GlContextKHR type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GlContextKHR - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 11 assemblies: - OpenTK.Compute @@ -130,12 +114,8 @@ items: fullName: OpenTK.Compute.OpenCL.ContextProperties.EglDisplayKHR type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: EglDisplayKHR - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 12 assemblies: - OpenTK.Compute @@ -156,12 +136,8 @@ items: fullName: OpenTK.Compute.OpenCL.ContextProperties.GlxDisplayKHR type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GlxDisplayKHR - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 13 assemblies: - OpenTK.Compute @@ -182,12 +158,8 @@ items: fullName: OpenTK.Compute.OpenCL.ContextProperties.WglHDCKHR type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: WglHDCKHR - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 14 assemblies: - OpenTK.Compute @@ -208,12 +180,8 @@ items: fullName: OpenTK.Compute.OpenCL.ContextProperties.CglShareGroupKHR type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CglShareGroupKHR - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 15 assemblies: - OpenTK.Compute @@ -234,12 +202,8 @@ items: fullName: OpenTK.Compute.OpenCL.ContextProperties.D3D10DeviceKHR type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: D3D10DeviceKHR - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 17 assemblies: - OpenTK.Compute @@ -260,12 +224,8 @@ items: fullName: OpenTK.Compute.OpenCL.ContextProperties.AdapterD3D9KHR type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: AdapterD3D9KHR - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 19 assemblies: - OpenTK.Compute @@ -286,12 +246,8 @@ items: fullName: OpenTK.Compute.OpenCL.ContextProperties.AdapterD3D9EXKHR type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: AdapterD3D9EXKHR - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 20 assemblies: - OpenTK.Compute @@ -312,12 +268,8 @@ items: fullName: OpenTK.Compute.OpenCL.ContextProperties.AdapterDXVAKHR type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: AdapterDXVAKHR - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 21 assemblies: - OpenTK.Compute @@ -338,12 +290,8 @@ items: fullName: OpenTK.Compute.OpenCL.ContextProperties.D3D11DeviceKHR type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: D3D11DeviceKHR - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 23 assemblies: - OpenTK.Compute @@ -364,12 +312,8 @@ items: fullName: OpenTK.Compute.OpenCL.ContextProperties.MemoryInitializeKHR type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MemoryInitializeKHR - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 25 assemblies: - OpenTK.Compute @@ -390,12 +334,8 @@ items: fullName: OpenTK.Compute.OpenCL.ContextProperties.TerminateKHR type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TerminateKHR - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 26 assemblies: - OpenTK.Compute diff --git a/api/OpenTK.Compute.OpenCL.DeviceInfo.yml b/api/OpenTK.Compute.OpenCL.DeviceInfo.yml index 1442ac83..f11392d4 100644 --- a/api/OpenTK.Compute.OpenCL.DeviceInfo.yml +++ b/api/OpenTK.Compute.OpenCL.DeviceInfo.yml @@ -110,12 +110,8 @@ items: fullName: OpenTK.Compute.OpenCL.DeviceInfo type: Enum source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DeviceInfo - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 51 assemblies: - OpenTK.Compute @@ -135,12 +131,8 @@ items: fullName: OpenTK.Compute.OpenCL.DeviceInfo.Type type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Type - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 53 assemblies: - OpenTK.Compute @@ -161,12 +153,8 @@ items: fullName: OpenTK.Compute.OpenCL.DeviceInfo.VendorId type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: VendorId - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 54 assemblies: - OpenTK.Compute @@ -187,12 +175,8 @@ items: fullName: OpenTK.Compute.OpenCL.DeviceInfo.MaximumComputeUnits type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MaximumComputeUnits - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 55 assemblies: - OpenTK.Compute @@ -213,12 +197,8 @@ items: fullName: OpenTK.Compute.OpenCL.DeviceInfo.MaximumWorkItemDimensions type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MaximumWorkItemDimensions - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 56 assemblies: - OpenTK.Compute @@ -239,12 +219,8 @@ items: fullName: OpenTK.Compute.OpenCL.DeviceInfo.MaximumWorkGroupSize type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MaximumWorkGroupSize - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 57 assemblies: - OpenTK.Compute @@ -265,12 +241,8 @@ items: fullName: OpenTK.Compute.OpenCL.DeviceInfo.MaximumWorkItemSizes type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MaximumWorkItemSizes - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 58 assemblies: - OpenTK.Compute @@ -291,12 +263,8 @@ items: fullName: OpenTK.Compute.OpenCL.DeviceInfo.PreferredVectorWidthChar type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: PreferredVectorWidthChar - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 59 assemblies: - OpenTK.Compute @@ -317,12 +285,8 @@ items: fullName: OpenTK.Compute.OpenCL.DeviceInfo.PreferredVectorWidthShort type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: PreferredVectorWidthShort - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 60 assemblies: - OpenTK.Compute @@ -343,12 +307,8 @@ items: fullName: OpenTK.Compute.OpenCL.DeviceInfo.PreferredVectorWidthInt type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: PreferredVectorWidthInt - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 61 assemblies: - OpenTK.Compute @@ -369,12 +329,8 @@ items: fullName: OpenTK.Compute.OpenCL.DeviceInfo.PreferredVectorWidthLong type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: PreferredVectorWidthLong - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 62 assemblies: - OpenTK.Compute @@ -395,12 +351,8 @@ items: fullName: OpenTK.Compute.OpenCL.DeviceInfo.PreferredVectorWidthFloat type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: PreferredVectorWidthFloat - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 63 assemblies: - OpenTK.Compute @@ -421,12 +373,8 @@ items: fullName: OpenTK.Compute.OpenCL.DeviceInfo.PreferredVectorWidthDouble type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: PreferredVectorWidthDouble - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 64 assemblies: - OpenTK.Compute @@ -447,12 +395,8 @@ items: fullName: OpenTK.Compute.OpenCL.DeviceInfo.MaximumClockFrequency type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MaximumClockFrequency - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 65 assemblies: - OpenTK.Compute @@ -473,12 +417,8 @@ items: fullName: OpenTK.Compute.OpenCL.DeviceInfo.AddressBits type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: AddressBits - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 66 assemblies: - OpenTK.Compute @@ -499,12 +439,8 @@ items: fullName: OpenTK.Compute.OpenCL.DeviceInfo.MaximumReadImageArguments type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MaximumReadImageArguments - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 67 assemblies: - OpenTK.Compute @@ -525,12 +461,8 @@ items: fullName: OpenTK.Compute.OpenCL.DeviceInfo.MaximumWriteImageArguments type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MaximumWriteImageArguments - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 68 assemblies: - OpenTK.Compute @@ -551,12 +483,8 @@ items: fullName: OpenTK.Compute.OpenCL.DeviceInfo.MaximumMemoryAllocationSize type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MaximumMemoryAllocationSize - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 69 assemblies: - OpenTK.Compute @@ -577,12 +505,8 @@ items: fullName: OpenTK.Compute.OpenCL.DeviceInfo.Image2DMaximumWidth type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Image2DMaximumWidth - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 70 assemblies: - OpenTK.Compute @@ -603,12 +527,8 @@ items: fullName: OpenTK.Compute.OpenCL.DeviceInfo.Image2DMaximumHeight type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Image2DMaximumHeight - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 71 assemblies: - OpenTK.Compute @@ -629,12 +549,8 @@ items: fullName: OpenTK.Compute.OpenCL.DeviceInfo.Image3DMaximumWidth type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Image3DMaximumWidth - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 72 assemblies: - OpenTK.Compute @@ -655,12 +571,8 @@ items: fullName: OpenTK.Compute.OpenCL.DeviceInfo.Image3DMaximumHeight type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Image3DMaximumHeight - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 73 assemblies: - OpenTK.Compute @@ -681,12 +593,8 @@ items: fullName: OpenTK.Compute.OpenCL.DeviceInfo.Image3DMaximumDepth type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Image3DMaximumDepth - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 74 assemblies: - OpenTK.Compute @@ -707,12 +615,8 @@ items: fullName: OpenTK.Compute.OpenCL.DeviceInfo.ImageSupport type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ImageSupport - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 75 assemblies: - OpenTK.Compute @@ -733,12 +637,8 @@ items: fullName: OpenTK.Compute.OpenCL.DeviceInfo.MaximumParameterSize type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MaximumParameterSize - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 76 assemblies: - OpenTK.Compute @@ -759,12 +659,8 @@ items: fullName: OpenTK.Compute.OpenCL.DeviceInfo.MaximumSamplers type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MaximumSamplers - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 77 assemblies: - OpenTK.Compute @@ -785,12 +681,8 @@ items: fullName: OpenTK.Compute.OpenCL.DeviceInfo.MemoryBaseAddressAlignment type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MemoryBaseAddressAlignment - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 78 assemblies: - OpenTK.Compute @@ -811,12 +703,8 @@ items: fullName: OpenTK.Compute.OpenCL.DeviceInfo.MinimumDataTypeAlignmentSize type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MinimumDataTypeAlignmentSize - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 80 assemblies: - OpenTK.Compute @@ -850,12 +738,8 @@ items: fullName: OpenTK.Compute.OpenCL.DeviceInfo.SingleFloatingPointConfiguration type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SingleFloatingPointConfiguration - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 82 assemblies: - OpenTK.Compute @@ -876,12 +760,8 @@ items: fullName: OpenTK.Compute.OpenCL.DeviceInfo.GlobalMemoryCacheType type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GlobalMemoryCacheType - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 83 assemblies: - OpenTK.Compute @@ -902,12 +782,8 @@ items: fullName: OpenTK.Compute.OpenCL.DeviceInfo.GlobalMemoryCachelineSize type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GlobalMemoryCachelineSize - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 84 assemblies: - OpenTK.Compute @@ -928,12 +804,8 @@ items: fullName: OpenTK.Compute.OpenCL.DeviceInfo.GlobalMemoryCacheSize type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GlobalMemoryCacheSize - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 85 assemblies: - OpenTK.Compute @@ -954,12 +826,8 @@ items: fullName: OpenTK.Compute.OpenCL.DeviceInfo.GlobalMemorySize type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GlobalMemorySize - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 86 assemblies: - OpenTK.Compute @@ -980,12 +848,8 @@ items: fullName: OpenTK.Compute.OpenCL.DeviceInfo.MaximumConstantBufferSize type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MaximumConstantBufferSize - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 87 assemblies: - OpenTK.Compute @@ -1006,12 +870,8 @@ items: fullName: OpenTK.Compute.OpenCL.DeviceInfo.MaximumConstantArguments type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MaximumConstantArguments - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 88 assemblies: - OpenTK.Compute @@ -1032,12 +892,8 @@ items: fullName: OpenTK.Compute.OpenCL.DeviceInfo.LocalMemoryType type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: LocalMemoryType - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 89 assemblies: - OpenTK.Compute @@ -1058,12 +914,8 @@ items: fullName: OpenTK.Compute.OpenCL.DeviceInfo.LocalMemorySize type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: LocalMemorySize - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 90 assemblies: - OpenTK.Compute @@ -1084,12 +936,8 @@ items: fullName: OpenTK.Compute.OpenCL.DeviceInfo.ErrorCorrectionSupport type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ErrorCorrectionSupport - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 91 assemblies: - OpenTK.Compute @@ -1110,12 +958,8 @@ items: fullName: OpenTK.Compute.OpenCL.DeviceInfo.ProfilingTimerResolution type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ProfilingTimerResolution - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 92 assemblies: - OpenTK.Compute @@ -1136,12 +980,8 @@ items: fullName: OpenTK.Compute.OpenCL.DeviceInfo.EndianLittle type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: EndianLittle - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 93 assemblies: - OpenTK.Compute @@ -1162,12 +1002,8 @@ items: fullName: OpenTK.Compute.OpenCL.DeviceInfo.Available type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Available - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 94 assemblies: - OpenTK.Compute @@ -1188,12 +1024,8 @@ items: fullName: OpenTK.Compute.OpenCL.DeviceInfo.CompilerAvailable type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CompilerAvailable - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 95 assemblies: - OpenTK.Compute @@ -1214,12 +1046,8 @@ items: fullName: OpenTK.Compute.OpenCL.DeviceInfo.ExecutionCapabilities type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ExecutionCapabilities - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 96 assemblies: - OpenTK.Compute @@ -1240,12 +1068,8 @@ items: fullName: OpenTK.Compute.OpenCL.DeviceInfo.QueueProperties type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: QueueProperties - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 98 assemblies: - OpenTK.Compute @@ -1279,12 +1103,8 @@ items: fullName: OpenTK.Compute.OpenCL.DeviceInfo.QueueOnHostProperties type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: QueueOnHostProperties - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 100 assemblies: - OpenTK.Compute @@ -1305,12 +1125,8 @@ items: fullName: OpenTK.Compute.OpenCL.DeviceInfo.Name type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Name - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 102 assemblies: - OpenTK.Compute @@ -1331,12 +1147,8 @@ items: fullName: OpenTK.Compute.OpenCL.DeviceInfo.Vendor type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Vendor - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 103 assemblies: - OpenTK.Compute @@ -1357,12 +1169,8 @@ items: fullName: OpenTK.Compute.OpenCL.DeviceInfo.DriverVersion type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DriverVersion - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 104 assemblies: - OpenTK.Compute @@ -1383,12 +1191,8 @@ items: fullName: OpenTK.Compute.OpenCL.DeviceInfo.Profile type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Profile - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 105 assemblies: - OpenTK.Compute @@ -1409,12 +1213,8 @@ items: fullName: OpenTK.Compute.OpenCL.DeviceInfo.Version type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Version - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 106 assemblies: - OpenTK.Compute @@ -1435,12 +1235,8 @@ items: fullName: OpenTK.Compute.OpenCL.DeviceInfo.Extensions type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Extensions - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 107 assemblies: - OpenTK.Compute @@ -1461,12 +1257,8 @@ items: fullName: OpenTK.Compute.OpenCL.DeviceInfo.Platform type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Platform - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 108 assemblies: - OpenTK.Compute @@ -1487,12 +1279,8 @@ items: fullName: OpenTK.Compute.OpenCL.DeviceInfo.DoubleFloatingPointConfiguration type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DoubleFloatingPointConfiguration - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 109 assemblies: - OpenTK.Compute @@ -1513,12 +1301,8 @@ items: fullName: OpenTK.Compute.OpenCL.DeviceInfo.HalfFloatingPointConfiguration type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: HalfFloatingPointConfiguration - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 110 assemblies: - OpenTK.Compute @@ -1539,12 +1323,8 @@ items: fullName: OpenTK.Compute.OpenCL.DeviceInfo.PreferredVectorWidthHalf type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: PreferredVectorWidthHalf - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 111 assemblies: - OpenTK.Compute @@ -1565,12 +1345,8 @@ items: fullName: OpenTK.Compute.OpenCL.DeviceInfo.HostUnifiedMemory type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: HostUnifiedMemory - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 113 assemblies: - OpenTK.Compute @@ -1604,12 +1380,8 @@ items: fullName: OpenTK.Compute.OpenCL.DeviceInfo.NativeVectorWidthChar type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: NativeVectorWidthChar - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 115 assemblies: - OpenTK.Compute @@ -1630,12 +1402,8 @@ items: fullName: OpenTK.Compute.OpenCL.DeviceInfo.NativeVectorWidthShort type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: NativeVectorWidthShort - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 116 assemblies: - OpenTK.Compute @@ -1656,12 +1424,8 @@ items: fullName: OpenTK.Compute.OpenCL.DeviceInfo.NativeVectorWidthInt type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: NativeVectorWidthInt - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 117 assemblies: - OpenTK.Compute @@ -1682,12 +1446,8 @@ items: fullName: OpenTK.Compute.OpenCL.DeviceInfo.NativeVectorWidthLong type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: NativeVectorWidthLong - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 118 assemblies: - OpenTK.Compute @@ -1708,12 +1468,8 @@ items: fullName: OpenTK.Compute.OpenCL.DeviceInfo.NativeVectorWidthFloat type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: NativeVectorWidthFloat - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 119 assemblies: - OpenTK.Compute @@ -1734,12 +1490,8 @@ items: fullName: OpenTK.Compute.OpenCL.DeviceInfo.NativeVectorWidthDouble type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: NativeVectorWidthDouble - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 120 assemblies: - OpenTK.Compute @@ -1760,12 +1512,8 @@ items: fullName: OpenTK.Compute.OpenCL.DeviceInfo.NativeVectorWidthHalf type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: NativeVectorWidthHalf - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 121 assemblies: - OpenTK.Compute @@ -1786,12 +1534,8 @@ items: fullName: OpenTK.Compute.OpenCL.DeviceInfo.OpenClCVersion type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: OpenClCVersion - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 122 assemblies: - OpenTK.Compute @@ -1812,12 +1556,8 @@ items: fullName: OpenTK.Compute.OpenCL.DeviceInfo.LinkerAvailable type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: LinkerAvailable - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 123 assemblies: - OpenTK.Compute @@ -1838,12 +1578,8 @@ items: fullName: OpenTK.Compute.OpenCL.DeviceInfo.BuiltInKernels type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: BuiltInKernels - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 124 assemblies: - OpenTK.Compute @@ -1864,12 +1600,8 @@ items: fullName: OpenTK.Compute.OpenCL.DeviceInfo.ImageMaximumBufferSize type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ImageMaximumBufferSize - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 125 assemblies: - OpenTK.Compute @@ -1890,12 +1622,8 @@ items: fullName: OpenTK.Compute.OpenCL.DeviceInfo.ImageMaximumArraySize type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ImageMaximumArraySize - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 126 assemblies: - OpenTK.Compute @@ -1916,12 +1644,8 @@ items: fullName: OpenTK.Compute.OpenCL.DeviceInfo.ParentDevice type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ParentDevice - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 127 assemblies: - OpenTK.Compute @@ -1942,12 +1666,8 @@ items: fullName: OpenTK.Compute.OpenCL.DeviceInfo.PartitionMaximumSubDevices type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: PartitionMaximumSubDevices - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 128 assemblies: - OpenTK.Compute @@ -1968,12 +1688,8 @@ items: fullName: OpenTK.Compute.OpenCL.DeviceInfo.PartitionProperties type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: PartitionProperties - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 129 assemblies: - OpenTK.Compute @@ -1994,12 +1710,8 @@ items: fullName: OpenTK.Compute.OpenCL.DeviceInfo.PartitionAffinityDomain type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: PartitionAffinityDomain - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 130 assemblies: - OpenTK.Compute @@ -2020,12 +1732,8 @@ items: fullName: OpenTK.Compute.OpenCL.DeviceInfo.PartitionType type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: PartitionType - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 131 assemblies: - OpenTK.Compute @@ -2046,12 +1754,8 @@ items: fullName: OpenTK.Compute.OpenCL.DeviceInfo.ReferenceCount type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ReferenceCount - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 132 assemblies: - OpenTK.Compute @@ -2072,12 +1776,8 @@ items: fullName: OpenTK.Compute.OpenCL.DeviceInfo.PreferredInteropUserSync type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: PreferredInteropUserSync - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 133 assemblies: - OpenTK.Compute @@ -2098,12 +1798,8 @@ items: fullName: OpenTK.Compute.OpenCL.DeviceInfo.PrintfBufferSize type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: PrintfBufferSize - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 134 assemblies: - OpenTK.Compute @@ -2124,12 +1820,8 @@ items: fullName: OpenTK.Compute.OpenCL.DeviceInfo.ImagePitchAlignment type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ImagePitchAlignment - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 135 assemblies: - OpenTK.Compute @@ -2150,12 +1842,8 @@ items: fullName: OpenTK.Compute.OpenCL.DeviceInfo.ImageBaseAddressAlignment type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ImageBaseAddressAlignment - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 136 assemblies: - OpenTK.Compute @@ -2176,12 +1864,8 @@ items: fullName: OpenTK.Compute.OpenCL.DeviceInfo.MaximumReadWriteImageArguments type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MaximumReadWriteImageArguments - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 137 assemblies: - OpenTK.Compute @@ -2202,12 +1886,8 @@ items: fullName: OpenTK.Compute.OpenCL.DeviceInfo.MaximumGlobalVariableSize type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MaximumGlobalVariableSize - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 138 assemblies: - OpenTK.Compute @@ -2228,12 +1908,8 @@ items: fullName: OpenTK.Compute.OpenCL.DeviceInfo.QueueOnDeviceProperties type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: QueueOnDeviceProperties - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 139 assemblies: - OpenTK.Compute @@ -2254,12 +1930,8 @@ items: fullName: OpenTK.Compute.OpenCL.DeviceInfo.QueueOnDevicePreferredSize type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: QueueOnDevicePreferredSize - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 140 assemblies: - OpenTK.Compute @@ -2280,12 +1952,8 @@ items: fullName: OpenTK.Compute.OpenCL.DeviceInfo.QueueOnDeviceMaximumSize type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: QueueOnDeviceMaximumSize - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 141 assemblies: - OpenTK.Compute @@ -2306,12 +1974,8 @@ items: fullName: OpenTK.Compute.OpenCL.DeviceInfo.MaximumOnDeviceQueues type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MaximumOnDeviceQueues - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 142 assemblies: - OpenTK.Compute @@ -2332,12 +1996,8 @@ items: fullName: OpenTK.Compute.OpenCL.DeviceInfo.MaximumOnDeviceEvents type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MaximumOnDeviceEvents - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 143 assemblies: - OpenTK.Compute @@ -2358,12 +2018,8 @@ items: fullName: OpenTK.Compute.OpenCL.DeviceInfo.SvmCapabilities type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SvmCapabilities - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 144 assemblies: - OpenTK.Compute @@ -2384,12 +2040,8 @@ items: fullName: OpenTK.Compute.OpenCL.DeviceInfo.GlobalVariablePreferredTotalSize type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GlobalVariablePreferredTotalSize - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 145 assemblies: - OpenTK.Compute @@ -2410,12 +2062,8 @@ items: fullName: OpenTK.Compute.OpenCL.DeviceInfo.MaximumPipeArguments type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MaximumPipeArguments - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 146 assemblies: - OpenTK.Compute @@ -2436,12 +2084,8 @@ items: fullName: OpenTK.Compute.OpenCL.DeviceInfo.PipeMaximumActiveReservations type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: PipeMaximumActiveReservations - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 147 assemblies: - OpenTK.Compute @@ -2462,12 +2106,8 @@ items: fullName: OpenTK.Compute.OpenCL.DeviceInfo.PipeMaximumPacketSize type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: PipeMaximumPacketSize - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 148 assemblies: - OpenTK.Compute @@ -2488,12 +2128,8 @@ items: fullName: OpenTK.Compute.OpenCL.DeviceInfo.PreferredPlatformAtomicAlignment type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: PreferredPlatformAtomicAlignment - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 149 assemblies: - OpenTK.Compute @@ -2514,12 +2150,8 @@ items: fullName: OpenTK.Compute.OpenCL.DeviceInfo.PreferredGlobalAtomicAlignment type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: PreferredGlobalAtomicAlignment - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 150 assemblies: - OpenTK.Compute @@ -2540,12 +2172,8 @@ items: fullName: OpenTK.Compute.OpenCL.DeviceInfo.PreferredLocalAtomicAlignment type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: PreferredLocalAtomicAlignment - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 151 assemblies: - OpenTK.Compute @@ -2566,12 +2194,8 @@ items: fullName: OpenTK.Compute.OpenCL.DeviceInfo.IntermediateLanguageVersion type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: IntermediateLanguageVersion - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 152 assemblies: - OpenTK.Compute @@ -2592,12 +2216,8 @@ items: fullName: OpenTK.Compute.OpenCL.DeviceInfo.MaximumNumberOfSubGroups type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MaximumNumberOfSubGroups - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 153 assemblies: - OpenTK.Compute @@ -2618,12 +2238,8 @@ items: fullName: OpenTK.Compute.OpenCL.DeviceInfo.SubGroupIndependentForwardProgress type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SubGroupIndependentForwardProgress - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 154 assemblies: - OpenTK.Compute @@ -2644,12 +2260,8 @@ items: fullName: OpenTK.Compute.OpenCL.DeviceInfo.TerminateCapabilityKhr type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TerminateCapabilityKhr - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 155 assemblies: - OpenTK.Compute @@ -2670,12 +2282,8 @@ items: fullName: OpenTK.Compute.OpenCL.DeviceInfo.SpirVersion type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SpirVersion - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 156 assemblies: - OpenTK.Compute diff --git a/api/OpenTK.Compute.OpenCL.DeviceType.yml b/api/OpenTK.Compute.OpenCL.DeviceType.yml index 2c316f26..5126b5f7 100644 --- a/api/OpenTK.Compute.OpenCL.DeviceType.yml +++ b/api/OpenTK.Compute.OpenCL.DeviceType.yml @@ -19,12 +19,8 @@ items: fullName: OpenTK.Compute.OpenCL.DeviceType type: Enum source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DeviceType - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 40 assemblies: - OpenTK.Compute @@ -54,12 +50,8 @@ items: fullName: OpenTK.Compute.OpenCL.DeviceType.Default type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Default - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 43 assemblies: - OpenTK.Compute @@ -80,12 +72,8 @@ items: fullName: OpenTK.Compute.OpenCL.DeviceType.Cpu type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Cpu - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 44 assemblies: - OpenTK.Compute @@ -106,12 +94,8 @@ items: fullName: OpenTK.Compute.OpenCL.DeviceType.Gpu type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Gpu - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 45 assemblies: - OpenTK.Compute @@ -132,12 +116,8 @@ items: fullName: OpenTK.Compute.OpenCL.DeviceType.Accelerator type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Accelerator - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 46 assemblies: - OpenTK.Compute @@ -158,12 +138,8 @@ items: fullName: OpenTK.Compute.OpenCL.DeviceType.Custom type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Custom - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 47 assemblies: - OpenTK.Compute @@ -184,12 +160,8 @@ items: fullName: OpenTK.Compute.OpenCL.DeviceType.All type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: All - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 48 assemblies: - OpenTK.Compute diff --git a/api/OpenTK.Compute.OpenCL.EventInfo.yml b/api/OpenTK.Compute.OpenCL.EventInfo.yml index 2cf9dc50..80a8ad0c 100644 --- a/api/OpenTK.Compute.OpenCL.EventInfo.yml +++ b/api/OpenTK.Compute.OpenCL.EventInfo.yml @@ -18,12 +18,8 @@ items: fullName: OpenTK.Compute.OpenCL.EventInfo type: Enum source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: EventInfo - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 422 assemblies: - OpenTK.Compute @@ -43,12 +39,8 @@ items: fullName: OpenTK.Compute.OpenCL.EventInfo.CommandQueue type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CommandQueue - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 424 assemblies: - OpenTK.Compute @@ -69,12 +61,8 @@ items: fullName: OpenTK.Compute.OpenCL.EventInfo.CommandType type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CommandType - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 425 assemblies: - OpenTK.Compute @@ -95,12 +83,8 @@ items: fullName: OpenTK.Compute.OpenCL.EventInfo.ReferenceCount type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ReferenceCount - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 426 assemblies: - OpenTK.Compute @@ -121,12 +105,8 @@ items: fullName: OpenTK.Compute.OpenCL.EventInfo.CommandExecutionStatus type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CommandExecutionStatus - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 427 assemblies: - OpenTK.Compute @@ -147,12 +127,8 @@ items: fullName: OpenTK.Compute.OpenCL.EventInfo.Context type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Context - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 428 assemblies: - OpenTK.Compute diff --git a/api/OpenTK.Compute.OpenCL.FilterMode.yml b/api/OpenTK.Compute.OpenCL.FilterMode.yml index 724f050d..db6b64bf 100644 --- a/api/OpenTK.Compute.OpenCL.FilterMode.yml +++ b/api/OpenTK.Compute.OpenCL.FilterMode.yml @@ -15,12 +15,8 @@ items: fullName: OpenTK.Compute.OpenCL.FilterMode type: Enum source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: FilterMode - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 340 assemblies: - OpenTK.Compute @@ -40,12 +36,8 @@ items: fullName: OpenTK.Compute.OpenCL.FilterMode.Nearest type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Nearest - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 342 assemblies: - OpenTK.Compute @@ -66,12 +58,8 @@ items: fullName: OpenTK.Compute.OpenCL.FilterMode.Linear type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Linear - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 343 assemblies: - OpenTK.Compute diff --git a/api/OpenTK.Compute.OpenCL.ImageDescription.yml b/api/OpenTK.Compute.OpenCL.ImageDescription.yml index ec60483c..dc9e0ce7 100644 --- a/api/OpenTK.Compute.OpenCL.ImageDescription.yml +++ b/api/OpenTK.Compute.OpenCL.ImageDescription.yml @@ -27,12 +27,8 @@ items: fullName: OpenTK.Compute.OpenCL.ImageDescription type: Struct source: - remote: - path: src/OpenTK.Compute/OpenCL/Structs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ImageDescription - path: opentk/src/OpenTK.Compute/OpenCL/Structs.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Structs.cs startLine: 11 assemblies: - OpenTK.Compute @@ -59,12 +55,8 @@ items: fullName: OpenTK.Compute.OpenCL.ImageDescription.ImageType type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Structs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ImageType - path: opentk/src/OpenTK.Compute/OpenCL/Structs.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Structs.cs startLine: 13 assemblies: - OpenTK.Compute @@ -86,12 +78,8 @@ items: fullName: OpenTK.Compute.OpenCL.ImageDescription.Width type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Structs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Width - path: opentk/src/OpenTK.Compute/OpenCL/Structs.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Structs.cs startLine: 14 assemblies: - OpenTK.Compute @@ -113,12 +101,8 @@ items: fullName: OpenTK.Compute.OpenCL.ImageDescription.Height type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Structs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Height - path: opentk/src/OpenTK.Compute/OpenCL/Structs.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Structs.cs startLine: 15 assemblies: - OpenTK.Compute @@ -140,12 +124,8 @@ items: fullName: OpenTK.Compute.OpenCL.ImageDescription.Depth type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Structs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Depth - path: opentk/src/OpenTK.Compute/OpenCL/Structs.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Structs.cs startLine: 16 assemblies: - OpenTK.Compute @@ -167,12 +147,8 @@ items: fullName: OpenTK.Compute.OpenCL.ImageDescription.ArraySize type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Structs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ArraySize - path: opentk/src/OpenTK.Compute/OpenCL/Structs.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Structs.cs startLine: 17 assemblies: - OpenTK.Compute @@ -194,12 +170,8 @@ items: fullName: OpenTK.Compute.OpenCL.ImageDescription.RowPitch type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Structs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: RowPitch - path: opentk/src/OpenTK.Compute/OpenCL/Structs.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Structs.cs startLine: 18 assemblies: - OpenTK.Compute @@ -221,12 +193,8 @@ items: fullName: OpenTK.Compute.OpenCL.ImageDescription.SlicePitch type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Structs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SlicePitch - path: opentk/src/OpenTK.Compute/OpenCL/Structs.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Structs.cs startLine: 19 assemblies: - OpenTK.Compute @@ -248,12 +216,8 @@ items: fullName: OpenTK.Compute.OpenCL.ImageDescription.MipLevels type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Structs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MipLevels - path: opentk/src/OpenTK.Compute/OpenCL/Structs.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Structs.cs startLine: 20 assemblies: - OpenTK.Compute @@ -275,12 +239,8 @@ items: fullName: OpenTK.Compute.OpenCL.ImageDescription.Samples type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Structs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Samples - path: opentk/src/OpenTK.Compute/OpenCL/Structs.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Structs.cs startLine: 21 assemblies: - OpenTK.Compute @@ -302,12 +262,8 @@ items: fullName: OpenTK.Compute.OpenCL.ImageDescription.Buffer type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Structs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Buffer - path: opentk/src/OpenTK.Compute/OpenCL/Structs.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Structs.cs startLine: 22 assemblies: - OpenTK.Compute @@ -329,12 +285,8 @@ items: fullName: OpenTK.Compute.OpenCL.ImageDescription.Create2D(uint, uint) type: Method source: - remote: - path: src/OpenTK.Compute/OpenCL/Structs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Create2D - path: opentk/src/OpenTK.Compute/OpenCL/Structs.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Structs.cs startLine: 24 assemblies: - OpenTK.Compute @@ -365,12 +317,8 @@ items: fullName: OpenTK.Compute.OpenCL.ImageDescription.Create2D(uint, uint, uint) type: Method source: - remote: - path: src/OpenTK.Compute/OpenCL/Structs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Create2D - path: opentk/src/OpenTK.Compute/OpenCL/Structs.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Structs.cs startLine: 35 assemblies: - OpenTK.Compute @@ -403,12 +351,8 @@ items: fullName: OpenTK.Compute.OpenCL.ImageDescription.Create3D(uint, uint, uint) type: Method source: - remote: - path: src/OpenTK.Compute/OpenCL/Structs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Create3D - path: opentk/src/OpenTK.Compute/OpenCL/Structs.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Structs.cs startLine: 47 assemblies: - OpenTK.Compute @@ -441,12 +385,8 @@ items: fullName: OpenTK.Compute.OpenCL.ImageDescription.Create3D(uint, uint, uint, uint, uint) type: Method source: - remote: - path: src/OpenTK.Compute/OpenCL/Structs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Create3D - path: opentk/src/OpenTK.Compute/OpenCL/Structs.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Structs.cs startLine: 58 assemblies: - OpenTK.Compute diff --git a/api/OpenTK.Compute.OpenCL.ImageFormat.yml b/api/OpenTK.Compute.OpenCL.ImageFormat.yml index 51b6930e..f0088089 100644 --- a/api/OpenTK.Compute.OpenCL.ImageFormat.yml +++ b/api/OpenTK.Compute.OpenCL.ImageFormat.yml @@ -15,12 +15,8 @@ items: fullName: OpenTK.Compute.OpenCL.ImageFormat type: Struct source: - remote: - path: src/OpenTK.Compute/OpenCL/Structs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ImageFormat - path: opentk/src/OpenTK.Compute/OpenCL/Structs.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Structs.cs startLine: 5 assemblies: - OpenTK.Compute @@ -47,12 +43,8 @@ items: fullName: OpenTK.Compute.OpenCL.ImageFormat.ChannelOrder type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Structs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ChannelOrder - path: opentk/src/OpenTK.Compute/OpenCL/Structs.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Structs.cs startLine: 7 assemblies: - OpenTK.Compute @@ -74,12 +66,8 @@ items: fullName: OpenTK.Compute.OpenCL.ImageFormat.ChannelType type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Structs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ChannelType - path: opentk/src/OpenTK.Compute/OpenCL/Structs.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Structs.cs startLine: 8 assemblies: - OpenTK.Compute diff --git a/api/OpenTK.Compute.OpenCL.ImageInfo.yml b/api/OpenTK.Compute.OpenCL.ImageInfo.yml index 42c4d22b..903ebff2 100644 --- a/api/OpenTK.Compute.OpenCL.ImageInfo.yml +++ b/api/OpenTK.Compute.OpenCL.ImageInfo.yml @@ -24,12 +24,8 @@ items: fullName: OpenTK.Compute.OpenCL.ImageInfo type: Enum source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ImageInfo - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 231 assemblies: - OpenTK.Compute @@ -49,12 +45,8 @@ items: fullName: OpenTK.Compute.OpenCL.ImageInfo.Format type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Format - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 233 assemblies: - OpenTK.Compute @@ -75,12 +67,8 @@ items: fullName: OpenTK.Compute.OpenCL.ImageInfo.ElementSize type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ElementSize - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 234 assemblies: - OpenTK.Compute @@ -101,12 +89,8 @@ items: fullName: OpenTK.Compute.OpenCL.ImageInfo.RowPitch type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: RowPitch - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 235 assemblies: - OpenTK.Compute @@ -127,12 +111,8 @@ items: fullName: OpenTK.Compute.OpenCL.ImageInfo.SlicePitch type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SlicePitch - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 236 assemblies: - OpenTK.Compute @@ -153,12 +133,8 @@ items: fullName: OpenTK.Compute.OpenCL.ImageInfo.Width type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Width - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 237 assemblies: - OpenTK.Compute @@ -179,12 +155,8 @@ items: fullName: OpenTK.Compute.OpenCL.ImageInfo.Height type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Height - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 238 assemblies: - OpenTK.Compute @@ -205,12 +177,8 @@ items: fullName: OpenTK.Compute.OpenCL.ImageInfo.Depth type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Depth - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 239 assemblies: - OpenTK.Compute @@ -231,12 +199,8 @@ items: fullName: OpenTK.Compute.OpenCL.ImageInfo.ArraySize type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ArraySize - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 240 assemblies: - OpenTK.Compute @@ -257,12 +221,8 @@ items: fullName: OpenTK.Compute.OpenCL.ImageInfo.Buffer type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Buffer - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 241 assemblies: - OpenTK.Compute @@ -283,12 +243,8 @@ items: fullName: OpenTK.Compute.OpenCL.ImageInfo.NumberOfMipLevels type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: NumberOfMipLevels - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 242 assemblies: - OpenTK.Compute @@ -309,12 +265,8 @@ items: fullName: OpenTK.Compute.OpenCL.ImageInfo.NumberOfSamples type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: NumberOfSamples - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 243 assemblies: - OpenTK.Compute diff --git a/api/OpenTK.Compute.OpenCL.KernelArgInfo.yml b/api/OpenTK.Compute.OpenCL.KernelArgInfo.yml index 3fe280e4..0e138b91 100644 --- a/api/OpenTK.Compute.OpenCL.KernelArgInfo.yml +++ b/api/OpenTK.Compute.OpenCL.KernelArgInfo.yml @@ -18,12 +18,8 @@ items: fullName: OpenTK.Compute.OpenCL.KernelArgInfo type: Enum source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: KernelArgInfo - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 396 assemblies: - OpenTK.Compute @@ -43,12 +39,8 @@ items: fullName: OpenTK.Compute.OpenCL.KernelArgInfo.AddressQualifier type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: AddressQualifier - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 398 assemblies: - OpenTK.Compute @@ -69,12 +61,8 @@ items: fullName: OpenTK.Compute.OpenCL.KernelArgInfo.AccessQualifier type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: AccessQualifier - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 399 assemblies: - OpenTK.Compute @@ -95,12 +83,8 @@ items: fullName: OpenTK.Compute.OpenCL.KernelArgInfo.TypeName type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TypeName - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 400 assemblies: - OpenTK.Compute @@ -121,12 +105,8 @@ items: fullName: OpenTK.Compute.OpenCL.KernelArgInfo.TypeQualifier type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TypeQualifier - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 401 assemblies: - OpenTK.Compute @@ -147,12 +127,8 @@ items: fullName: OpenTK.Compute.OpenCL.KernelArgInfo.Name type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Name - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 402 assemblies: - OpenTK.Compute diff --git a/api/OpenTK.Compute.OpenCL.KernelExecInfo.yml b/api/OpenTK.Compute.OpenCL.KernelExecInfo.yml index b4467140..39e5e307 100644 --- a/api/OpenTK.Compute.OpenCL.KernelExecInfo.yml +++ b/api/OpenTK.Compute.OpenCL.KernelExecInfo.yml @@ -15,12 +15,8 @@ items: fullName: OpenTK.Compute.OpenCL.KernelExecInfo type: Enum source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: KernelExecInfo - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 378 assemblies: - OpenTK.Compute @@ -40,12 +36,8 @@ items: fullName: OpenTK.Compute.OpenCL.KernelExecInfo.SvmPointers type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SvmPointers - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 380 assemblies: - OpenTK.Compute @@ -66,12 +58,8 @@ items: fullName: OpenTK.Compute.OpenCL.KernelExecInfo.SvmFineGrainSystem type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SvmFineGrainSystem - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 381 assemblies: - OpenTK.Compute diff --git a/api/OpenTK.Compute.OpenCL.KernelInfo.yml b/api/OpenTK.Compute.OpenCL.KernelInfo.yml index 23cb78e3..fc322689 100644 --- a/api/OpenTK.Compute.OpenCL.KernelInfo.yml +++ b/api/OpenTK.Compute.OpenCL.KernelInfo.yml @@ -21,12 +21,8 @@ items: fullName: OpenTK.Compute.OpenCL.KernelInfo type: Enum source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: KernelInfo - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 384 assemblies: - OpenTK.Compute @@ -46,12 +42,8 @@ items: fullName: OpenTK.Compute.OpenCL.KernelInfo.FunctionName type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: FunctionName - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 386 assemblies: - OpenTK.Compute @@ -72,12 +64,8 @@ items: fullName: OpenTK.Compute.OpenCL.KernelInfo.NumberOfArguments type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: NumberOfArguments - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 387 assemblies: - OpenTK.Compute @@ -98,12 +86,8 @@ items: fullName: OpenTK.Compute.OpenCL.KernelInfo.ReferenceCount type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ReferenceCount - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 388 assemblies: - OpenTK.Compute @@ -124,12 +108,8 @@ items: fullName: OpenTK.Compute.OpenCL.KernelInfo.Context type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Context - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 389 assemblies: - OpenTK.Compute @@ -150,12 +130,8 @@ items: fullName: OpenTK.Compute.OpenCL.KernelInfo.Program type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Program - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 390 assemblies: - OpenTK.Compute @@ -176,12 +152,8 @@ items: fullName: OpenTK.Compute.OpenCL.KernelInfo.Attributes type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Attributes - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 391 assemblies: - OpenTK.Compute @@ -202,12 +174,8 @@ items: fullName: OpenTK.Compute.OpenCL.KernelInfo.MaxNumberOfSubGroups type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MaxNumberOfSubGroups - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 392 assemblies: - OpenTK.Compute @@ -228,12 +196,8 @@ items: fullName: OpenTK.Compute.OpenCL.KernelInfo.CompileNumberOfSubGroups type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CompileNumberOfSubGroups - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 393 assemblies: - OpenTK.Compute diff --git a/api/OpenTK.Compute.OpenCL.KernelSubGroupInfo.yml b/api/OpenTK.Compute.OpenCL.KernelSubGroupInfo.yml index e80dac36..6cd625b7 100644 --- a/api/OpenTK.Compute.OpenCL.KernelSubGroupInfo.yml +++ b/api/OpenTK.Compute.OpenCL.KernelSubGroupInfo.yml @@ -16,12 +16,8 @@ items: fullName: OpenTK.Compute.OpenCL.KernelSubGroupInfo type: Enum source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: KernelSubGroupInfo - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 415 assemblies: - OpenTK.Compute @@ -41,12 +37,8 @@ items: fullName: OpenTK.Compute.OpenCL.KernelSubGroupInfo.MaximumSubGroupSizeForNdRange type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MaximumSubGroupSizeForNdRange - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 417 assemblies: - OpenTK.Compute @@ -67,12 +59,8 @@ items: fullName: OpenTK.Compute.OpenCL.KernelSubGroupInfo.SubGroupCountForNdRange type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SubGroupCountForNdRange - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 418 assemblies: - OpenTK.Compute @@ -93,12 +81,8 @@ items: fullName: OpenTK.Compute.OpenCL.KernelSubGroupInfo.LocalSizeForSubGroupCount type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: LocalSizeForSubGroupCount - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 419 assemblies: - OpenTK.Compute diff --git a/api/OpenTK.Compute.OpenCL.KernelWorkGroupInfo.yml b/api/OpenTK.Compute.OpenCL.KernelWorkGroupInfo.yml index 7b5e52f0..11a0a353 100644 --- a/api/OpenTK.Compute.OpenCL.KernelWorkGroupInfo.yml +++ b/api/OpenTK.Compute.OpenCL.KernelWorkGroupInfo.yml @@ -19,12 +19,8 @@ items: fullName: OpenTK.Compute.OpenCL.KernelWorkGroupInfo type: Enum source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: KernelWorkGroupInfo - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 405 assemblies: - OpenTK.Compute @@ -44,12 +40,8 @@ items: fullName: OpenTK.Compute.OpenCL.KernelWorkGroupInfo.WorkGroupSize type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: WorkGroupSize - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 407 assemblies: - OpenTK.Compute @@ -70,12 +62,8 @@ items: fullName: OpenTK.Compute.OpenCL.KernelWorkGroupInfo.CompileWorkGroupSize type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CompileWorkGroupSize - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 408 assemblies: - OpenTK.Compute @@ -96,12 +84,8 @@ items: fullName: OpenTK.Compute.OpenCL.KernelWorkGroupInfo.LocalMemorySize type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: LocalMemorySize - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 409 assemblies: - OpenTK.Compute @@ -122,12 +106,8 @@ items: fullName: OpenTK.Compute.OpenCL.KernelWorkGroupInfo.PreferredWorkGroupSizeMultiple type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: PreferredWorkGroupSizeMultiple - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 410 assemblies: - OpenTK.Compute @@ -148,12 +128,8 @@ items: fullName: OpenTK.Compute.OpenCL.KernelWorkGroupInfo.PrivateMemorySize type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: PrivateMemorySize - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 411 assemblies: - OpenTK.Compute @@ -174,12 +150,8 @@ items: fullName: OpenTK.Compute.OpenCL.KernelWorkGroupInfo.GlobalWorkSize type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GlobalWorkSize - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 412 assemblies: - OpenTK.Compute diff --git a/api/OpenTK.Compute.OpenCL.MapFlags.yml b/api/OpenTK.Compute.OpenCL.MapFlags.yml index 3b0cdc4e..830a1b3f 100644 --- a/api/OpenTK.Compute.OpenCL.MapFlags.yml +++ b/api/OpenTK.Compute.OpenCL.MapFlags.yml @@ -16,12 +16,8 @@ items: fullName: OpenTK.Compute.OpenCL.MapFlags type: Enum source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MapFlags - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 449 assemblies: - OpenTK.Compute @@ -51,12 +47,8 @@ items: fullName: OpenTK.Compute.OpenCL.MapFlags.Read type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Read - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 452 assemblies: - OpenTK.Compute @@ -77,12 +69,8 @@ items: fullName: OpenTK.Compute.OpenCL.MapFlags.Write type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Write - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 453 assemblies: - OpenTK.Compute @@ -103,12 +91,8 @@ items: fullName: OpenTK.Compute.OpenCL.MapFlags.WriteInvalidateRegion type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: WriteInvalidateRegion - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 454 assemblies: - OpenTK.Compute diff --git a/api/OpenTK.Compute.OpenCL.MemoryFlags.yml b/api/OpenTK.Compute.OpenCL.MemoryFlags.yml index 92fcdb21..c86f1979 100644 --- a/api/OpenTK.Compute.OpenCL.MemoryFlags.yml +++ b/api/OpenTK.Compute.OpenCL.MemoryFlags.yml @@ -36,12 +36,8 @@ items: fullName: OpenTK.Compute.OpenCL.MemoryFlags type: Enum source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MemoryFlags - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 177 assemblies: - OpenTK.Compute @@ -71,12 +67,8 @@ items: fullName: OpenTK.Compute.OpenCL.MemoryFlags.ReadWrite type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ReadWrite - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 180 assemblies: - OpenTK.Compute @@ -97,12 +89,8 @@ items: fullName: OpenTK.Compute.OpenCL.MemoryFlags.WriteOnly type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: WriteOnly - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 181 assemblies: - OpenTK.Compute @@ -123,12 +111,8 @@ items: fullName: OpenTK.Compute.OpenCL.MemoryFlags.ReadOnly type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ReadOnly - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 182 assemblies: - OpenTK.Compute @@ -149,12 +133,8 @@ items: fullName: OpenTK.Compute.OpenCL.MemoryFlags.UseHostPtr type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: UseHostPtr - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 183 assemblies: - OpenTK.Compute @@ -175,12 +155,8 @@ items: fullName: OpenTK.Compute.OpenCL.MemoryFlags.AllocHostPtr type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: AllocHostPtr - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 184 assemblies: - OpenTK.Compute @@ -201,12 +177,8 @@ items: fullName: OpenTK.Compute.OpenCL.MemoryFlags.CopyHostPtr type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CopyHostPtr - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 185 assemblies: - OpenTK.Compute @@ -227,12 +199,8 @@ items: fullName: OpenTK.Compute.OpenCL.MemoryFlags.HostWriteOnly type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: HostWriteOnly - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 188 assemblies: - OpenTK.Compute @@ -253,12 +221,8 @@ items: fullName: OpenTK.Compute.OpenCL.MemoryFlags.HostReadOnly type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: HostReadOnly - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 189 assemblies: - OpenTK.Compute @@ -279,12 +243,8 @@ items: fullName: OpenTK.Compute.OpenCL.MemoryFlags.HostNoAccess type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: HostNoAccess - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 190 assemblies: - OpenTK.Compute @@ -305,12 +265,8 @@ items: fullName: OpenTK.Compute.OpenCL.MemoryFlags.SvmFineGrainBuffer type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SvmFineGrainBuffer - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 191 assemblies: - OpenTK.Compute @@ -331,12 +287,8 @@ items: fullName: OpenTK.Compute.OpenCL.MemoryFlags.SvmAtomics type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SvmAtomics - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 192 assemblies: - OpenTK.Compute @@ -357,12 +309,8 @@ items: fullName: OpenTK.Compute.OpenCL.MemoryFlags.KernelReadAndWrite type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: KernelReadAndWrite - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 193 assemblies: - OpenTK.Compute @@ -383,12 +331,8 @@ items: fullName: OpenTK.Compute.OpenCL.MemoryFlags.NoAccessIntel type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: NoAccessIntel - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 195 assemblies: - OpenTK.Compute @@ -409,12 +353,8 @@ items: fullName: OpenTK.Compute.OpenCL.MemoryFlags.AccessFlagsUnrestrictedIntel type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: AccessFlagsUnrestrictedIntel - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 196 assemblies: - OpenTK.Compute @@ -435,12 +375,8 @@ items: fullName: OpenTK.Compute.OpenCL.MemoryFlags.UseUncachedCpuMemoryImg type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: UseUncachedCpuMemoryImg - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 197 assemblies: - OpenTK.Compute @@ -461,12 +397,8 @@ items: fullName: OpenTK.Compute.OpenCL.MemoryFlags.UseCachedCpuMemoryImg type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: UseCachedCpuMemoryImg - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 198 assemblies: - OpenTK.Compute @@ -487,12 +419,8 @@ items: fullName: OpenTK.Compute.OpenCL.MemoryFlags.UseGrallocPtrImg type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: UseGrallocPtrImg - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 199 assemblies: - OpenTK.Compute @@ -513,12 +441,8 @@ items: fullName: OpenTK.Compute.OpenCL.MemoryFlags.ExtHostPtrQcom type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ExtHostPtrQcom - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 200 assemblies: - OpenTK.Compute @@ -539,12 +463,8 @@ items: fullName: OpenTK.Compute.OpenCL.MemoryFlags.CL_MEM_RESERVED0_ARM type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CL_MEM_RESERVED0_ARM - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 207 assemblies: - OpenTK.Compute @@ -565,12 +485,8 @@ items: fullName: OpenTK.Compute.OpenCL.MemoryFlags.CL_MEM_RESERVED1_ARM type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CL_MEM_RESERVED1_ARM - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 208 assemblies: - OpenTK.Compute @@ -591,12 +507,8 @@ items: fullName: OpenTK.Compute.OpenCL.MemoryFlags.CL_MEM_RESERVED2_ARM type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CL_MEM_RESERVED2_ARM - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 209 assemblies: - OpenTK.Compute @@ -617,12 +529,8 @@ items: fullName: OpenTK.Compute.OpenCL.MemoryFlags.CL_MEM_RESERVED3_ARM type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CL_MEM_RESERVED3_ARM - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 210 assemblies: - OpenTK.Compute @@ -643,12 +551,8 @@ items: fullName: OpenTK.Compute.OpenCL.MemoryFlags.CL_MEM_RESERVED4_ARM type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CL_MEM_RESERVED4_ARM - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 211 assemblies: - OpenTK.Compute diff --git a/api/OpenTK.Compute.OpenCL.MemoryMigrationFlags.yml b/api/OpenTK.Compute.OpenCL.MemoryMigrationFlags.yml index 385899d8..ef5b510a 100644 --- a/api/OpenTK.Compute.OpenCL.MemoryMigrationFlags.yml +++ b/api/OpenTK.Compute.OpenCL.MemoryMigrationFlags.yml @@ -15,12 +15,8 @@ items: fullName: OpenTK.Compute.OpenCL.MemoryMigrationFlags type: Enum source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MemoryMigrationFlags - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 457 assemblies: - OpenTK.Compute @@ -50,12 +46,8 @@ items: fullName: OpenTK.Compute.OpenCL.MemoryMigrationFlags.Host type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Host - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 460 assemblies: - OpenTK.Compute @@ -76,12 +68,8 @@ items: fullName: OpenTK.Compute.OpenCL.MemoryMigrationFlags.ContentUndefined type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ContentUndefined - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 461 assemblies: - OpenTK.Compute diff --git a/api/OpenTK.Compute.OpenCL.MemoryObjectInfo.yml b/api/OpenTK.Compute.OpenCL.MemoryObjectInfo.yml index 243dcd08..da34b0f8 100644 --- a/api/OpenTK.Compute.OpenCL.MemoryObjectInfo.yml +++ b/api/OpenTK.Compute.OpenCL.MemoryObjectInfo.yml @@ -23,12 +23,8 @@ items: fullName: OpenTK.Compute.OpenCL.MemoryObjectInfo type: Enum source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MemoryObjectInfo - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 291 assemblies: - OpenTK.Compute @@ -48,12 +44,8 @@ items: fullName: OpenTK.Compute.OpenCL.MemoryObjectInfo.Type type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Type - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 293 assemblies: - OpenTK.Compute @@ -74,12 +66,8 @@ items: fullName: OpenTK.Compute.OpenCL.MemoryObjectInfo.Flags type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Flags - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 294 assemblies: - OpenTK.Compute @@ -100,12 +88,8 @@ items: fullName: OpenTK.Compute.OpenCL.MemoryObjectInfo.Size type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Size - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 295 assemblies: - OpenTK.Compute @@ -126,12 +110,8 @@ items: fullName: OpenTK.Compute.OpenCL.MemoryObjectInfo.HostPointer type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: HostPointer - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 296 assemblies: - OpenTK.Compute @@ -152,12 +132,8 @@ items: fullName: OpenTK.Compute.OpenCL.MemoryObjectInfo.MapCount type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MapCount - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 297 assemblies: - OpenTK.Compute @@ -178,12 +154,8 @@ items: fullName: OpenTK.Compute.OpenCL.MemoryObjectInfo.ReferenceCount type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ReferenceCount - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 298 assemblies: - OpenTK.Compute @@ -204,12 +176,8 @@ items: fullName: OpenTK.Compute.OpenCL.MemoryObjectInfo.Context type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Context - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 299 assemblies: - OpenTK.Compute @@ -230,12 +198,8 @@ items: fullName: OpenTK.Compute.OpenCL.MemoryObjectInfo.AssociatedMemoryObject type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: AssociatedMemoryObject - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 300 assemblies: - OpenTK.Compute @@ -256,12 +220,8 @@ items: fullName: OpenTK.Compute.OpenCL.MemoryObjectInfo.Offset type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Offset - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 301 assemblies: - OpenTK.Compute @@ -282,12 +242,8 @@ items: fullName: OpenTK.Compute.OpenCL.MemoryObjectInfo.UsesSvmPointer type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: UsesSvmPointer - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 302 assemblies: - OpenTK.Compute diff --git a/api/OpenTK.Compute.OpenCL.MemoryObjectType.yml b/api/OpenTK.Compute.OpenCL.MemoryObjectType.yml index d67dd0a6..0b3713e2 100644 --- a/api/OpenTK.Compute.OpenCL.MemoryObjectType.yml +++ b/api/OpenTK.Compute.OpenCL.MemoryObjectType.yml @@ -21,12 +21,8 @@ items: fullName: OpenTK.Compute.OpenCL.MemoryObjectType type: Enum source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MemoryObjectType - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 219 assemblies: - OpenTK.Compute @@ -46,12 +42,8 @@ items: fullName: OpenTK.Compute.OpenCL.MemoryObjectType.Buffer type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Buffer - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 221 assemblies: - OpenTK.Compute @@ -72,12 +64,8 @@ items: fullName: OpenTK.Compute.OpenCL.MemoryObjectType.Image2D type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Image2D - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 222 assemblies: - OpenTK.Compute @@ -98,12 +86,8 @@ items: fullName: OpenTK.Compute.OpenCL.MemoryObjectType.Image3D type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Image3D - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 223 assemblies: - OpenTK.Compute @@ -124,12 +108,8 @@ items: fullName: OpenTK.Compute.OpenCL.MemoryObjectType.Image2DArray type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Image2DArray - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 224 assemblies: - OpenTK.Compute @@ -150,12 +130,8 @@ items: fullName: OpenTK.Compute.OpenCL.MemoryObjectType.Image1D type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Image1D - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 225 assemblies: - OpenTK.Compute @@ -176,12 +152,8 @@ items: fullName: OpenTK.Compute.OpenCL.MemoryObjectType.Image1DArray type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Image1DArray - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 226 assemblies: - OpenTK.Compute @@ -202,12 +174,8 @@ items: fullName: OpenTK.Compute.OpenCL.MemoryObjectType.Image1DBuffer type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Image1DBuffer - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 227 assemblies: - OpenTK.Compute @@ -228,12 +196,8 @@ items: fullName: OpenTK.Compute.OpenCL.MemoryObjectType.Pipe type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Pipe - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 228 assemblies: - OpenTK.Compute diff --git a/api/OpenTK.Compute.OpenCL.OpenCLLibraryNameContainer.yml b/api/OpenTK.Compute.OpenCL.OpenCLLibraryNameContainer.yml index 00e13db3..fc7ee2cc 100644 --- a/api/OpenTK.Compute.OpenCL.OpenCLLibraryNameContainer.yml +++ b/api/OpenTK.Compute.OpenCL.OpenCLLibraryNameContainer.yml @@ -20,12 +20,8 @@ items: fullName: OpenTK.Compute.OpenCL.OpenCLLibraryNameContainer type: Class source: - remote: - path: src/OpenTK.Compute/OpenCL/OpenCLLibraryNameContainer.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: OpenCLLibraryNameContainer - path: opentk/src/OpenTK.Compute/OpenCL/OpenCLLibraryNameContainer.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\OpenCLLibraryNameContainer.cs startLine: 8 assemblies: - OpenTK.Compute @@ -57,12 +53,8 @@ items: fullName: OpenTK.Compute.OpenCL.OpenCLLibraryNameContainer.OverridePath type: Property source: - remote: - path: src/OpenTK.Compute/OpenCL/OpenCLLibraryNameContainer.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: OverridePath - path: opentk/src/OpenTK.Compute/OpenCL/OpenCLLibraryNameContainer.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\OpenCLLibraryNameContainer.cs startLine: 14 assemblies: - OpenTK.Compute @@ -91,12 +83,8 @@ items: fullName: OpenTK.Compute.OpenCL.OpenCLLibraryNameContainer.Linux type: Property source: - remote: - path: src/OpenTK.Compute/OpenCL/OpenCLLibraryNameContainer.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Linux - path: opentk/src/OpenTK.Compute/OpenCL/OpenCLLibraryNameContainer.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\OpenCLLibraryNameContainer.cs startLine: 16 assemblies: - OpenTK.Compute @@ -120,12 +108,8 @@ items: fullName: OpenTK.Compute.OpenCL.OpenCLLibraryNameContainer.MacOS type: Property source: - remote: - path: src/OpenTK.Compute/OpenCL/OpenCLLibraryNameContainer.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MacOS - path: opentk/src/OpenTK.Compute/OpenCL/OpenCLLibraryNameContainer.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\OpenCLLibraryNameContainer.cs startLine: 21 assemblies: - OpenTK.Compute @@ -151,12 +135,8 @@ items: fullName: OpenTK.Compute.OpenCL.OpenCLLibraryNameContainer.Android type: Property source: - remote: - path: src/OpenTK.Compute/OpenCL/OpenCLLibraryNameContainer.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Android - path: opentk/src/OpenTK.Compute/OpenCL/OpenCLLibraryNameContainer.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\OpenCLLibraryNameContainer.cs startLine: 23 assemblies: - OpenTK.Compute @@ -180,12 +160,8 @@ items: fullName: OpenTK.Compute.OpenCL.OpenCLLibraryNameContainer.IOS type: Property source: - remote: - path: src/OpenTK.Compute/OpenCL/OpenCLLibraryNameContainer.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: IOS - path: opentk/src/OpenTK.Compute/OpenCL/OpenCLLibraryNameContainer.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\OpenCLLibraryNameContainer.cs startLine: 28 assemblies: - OpenTK.Compute @@ -211,12 +187,8 @@ items: fullName: OpenTK.Compute.OpenCL.OpenCLLibraryNameContainer.Windows type: Property source: - remote: - path: src/OpenTK.Compute/OpenCL/OpenCLLibraryNameContainer.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Windows - path: opentk/src/OpenTK.Compute/OpenCL/OpenCLLibraryNameContainer.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\OpenCLLibraryNameContainer.cs startLine: 33 assemblies: - OpenTK.Compute @@ -242,12 +214,8 @@ items: fullName: OpenTK.Compute.OpenCL.OpenCLLibraryNameContainer.GetLibraryName() type: Method source: - remote: - path: src/OpenTK.Compute/OpenCL/OpenCLLibraryNameContainer.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetLibraryName - path: opentk/src/OpenTK.Compute/OpenCL/OpenCLLibraryNameContainer.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\OpenCLLibraryNameContainer.cs startLine: 39 assemblies: - OpenTK.Compute diff --git a/api/OpenTK.Compute.OpenCL.PipeInfo.yml b/api/OpenTK.Compute.OpenCL.PipeInfo.yml index fcbcb2b4..da25d41e 100644 --- a/api/OpenTK.Compute.OpenCL.PipeInfo.yml +++ b/api/OpenTK.Compute.OpenCL.PipeInfo.yml @@ -15,12 +15,8 @@ items: fullName: OpenTK.Compute.OpenCL.PipeInfo type: Enum source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: PipeInfo - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 305 assemblies: - OpenTK.Compute @@ -40,12 +36,8 @@ items: fullName: OpenTK.Compute.OpenCL.PipeInfo.PacketSize type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: PacketSize - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 307 assemblies: - OpenTK.Compute @@ -66,12 +58,8 @@ items: fullName: OpenTK.Compute.OpenCL.PipeInfo.MaximumNumberOfPackets type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MaximumNumberOfPackets - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 308 assemblies: - OpenTK.Compute diff --git a/api/OpenTK.Compute.OpenCL.PlatformInfo.yml b/api/OpenTK.Compute.OpenCL.PlatformInfo.yml index a4a9e980..f13e59e7 100644 --- a/api/OpenTK.Compute.OpenCL.PlatformInfo.yml +++ b/api/OpenTK.Compute.OpenCL.PlatformInfo.yml @@ -20,12 +20,8 @@ items: fullName: OpenTK.Compute.OpenCL.PlatformInfo type: Enum source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: PlatformInfo - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 29 assemblies: - OpenTK.Compute @@ -45,12 +41,8 @@ items: fullName: OpenTK.Compute.OpenCL.PlatformInfo.Profile type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Profile - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 31 assemblies: - OpenTK.Compute @@ -71,12 +63,8 @@ items: fullName: OpenTK.Compute.OpenCL.PlatformInfo.Version type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Version - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 32 assemblies: - OpenTK.Compute @@ -97,12 +85,8 @@ items: fullName: OpenTK.Compute.OpenCL.PlatformInfo.Name type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Name - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 33 assemblies: - OpenTK.Compute @@ -123,12 +107,8 @@ items: fullName: OpenTK.Compute.OpenCL.PlatformInfo.Vendor type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Vendor - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 34 assemblies: - OpenTK.Compute @@ -149,12 +129,8 @@ items: fullName: OpenTK.Compute.OpenCL.PlatformInfo.Extensions type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Extensions - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 35 assemblies: - OpenTK.Compute @@ -175,12 +151,8 @@ items: fullName: OpenTK.Compute.OpenCL.PlatformInfo.PlatformHostTimerResolution type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: PlatformHostTimerResolution - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 36 assemblies: - OpenTK.Compute @@ -201,12 +173,8 @@ items: fullName: OpenTK.Compute.OpenCL.PlatformInfo.PlatformIcdSuffix type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: PlatformIcdSuffix - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 37 assemblies: - OpenTK.Compute diff --git a/api/OpenTK.Compute.OpenCL.ProfilingInfo.yml b/api/OpenTK.Compute.OpenCL.ProfilingInfo.yml index e57fbd0f..bc9b4ed0 100644 --- a/api/OpenTK.Compute.OpenCL.ProfilingInfo.yml +++ b/api/OpenTK.Compute.OpenCL.ProfilingInfo.yml @@ -18,12 +18,8 @@ items: fullName: OpenTK.Compute.OpenCL.ProfilingInfo type: Enum source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ProfilingInfo - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 440 assemblies: - OpenTK.Compute @@ -43,12 +39,8 @@ items: fullName: OpenTK.Compute.OpenCL.ProfilingInfo.CommandQueued type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CommandQueued - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 442 assemblies: - OpenTK.Compute @@ -69,12 +61,8 @@ items: fullName: OpenTK.Compute.OpenCL.ProfilingInfo.CommandSubmit type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CommandSubmit - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 443 assemblies: - OpenTK.Compute @@ -95,12 +83,8 @@ items: fullName: OpenTK.Compute.OpenCL.ProfilingInfo.CommandStart type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CommandStart - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 444 assemblies: - OpenTK.Compute @@ -121,12 +105,8 @@ items: fullName: OpenTK.Compute.OpenCL.ProfilingInfo.CommandEnd type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CommandEnd - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 445 assemblies: - OpenTK.Compute @@ -147,12 +127,8 @@ items: fullName: OpenTK.Compute.OpenCL.ProfilingInfo.CommandComplete type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CommandComplete - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 446 assemblies: - OpenTK.Compute diff --git a/api/OpenTK.Compute.OpenCL.ProgramBuildInfo.yml b/api/OpenTK.Compute.OpenCL.ProgramBuildInfo.yml index d3a4cb6b..47907efd 100644 --- a/api/OpenTK.Compute.OpenCL.ProgramBuildInfo.yml +++ b/api/OpenTK.Compute.OpenCL.ProgramBuildInfo.yml @@ -18,12 +18,8 @@ items: fullName: OpenTK.Compute.OpenCL.ProgramBuildInfo type: Enum source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ProgramBuildInfo - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 369 assemblies: - OpenTK.Compute @@ -43,12 +39,8 @@ items: fullName: OpenTK.Compute.OpenCL.ProgramBuildInfo.Status type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Status - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 371 assemblies: - OpenTK.Compute @@ -69,12 +61,8 @@ items: fullName: OpenTK.Compute.OpenCL.ProgramBuildInfo.Options type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Options - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 372 assemblies: - OpenTK.Compute @@ -95,12 +83,8 @@ items: fullName: OpenTK.Compute.OpenCL.ProgramBuildInfo.Log type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Log - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 373 assemblies: - OpenTK.Compute @@ -121,12 +105,8 @@ items: fullName: OpenTK.Compute.OpenCL.ProgramBuildInfo.BinaryType type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: BinaryType - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 374 assemblies: - OpenTK.Compute @@ -147,12 +127,8 @@ items: fullName: OpenTK.Compute.OpenCL.ProgramBuildInfo.GlobalVariableTotalSize type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GlobalVariableTotalSize - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 375 assemblies: - OpenTK.Compute diff --git a/api/OpenTK.Compute.OpenCL.ProgramInfo.yml b/api/OpenTK.Compute.OpenCL.ProgramInfo.yml index 8087809f..229271fc 100644 --- a/api/OpenTK.Compute.OpenCL.ProgramInfo.yml +++ b/api/OpenTK.Compute.OpenCL.ProgramInfo.yml @@ -23,12 +23,8 @@ items: fullName: OpenTK.Compute.OpenCL.ProgramInfo type: Enum source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ProgramInfo - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 355 assemblies: - OpenTK.Compute @@ -48,12 +44,8 @@ items: fullName: OpenTK.Compute.OpenCL.ProgramInfo.ReferenceCount type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ReferenceCount - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 357 assemblies: - OpenTK.Compute @@ -74,12 +66,8 @@ items: fullName: OpenTK.Compute.OpenCL.ProgramInfo.Context type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Context - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 358 assemblies: - OpenTK.Compute @@ -100,12 +88,8 @@ items: fullName: OpenTK.Compute.OpenCL.ProgramInfo.NumberOfDevices type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: NumberOfDevices - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 359 assemblies: - OpenTK.Compute @@ -126,12 +110,8 @@ items: fullName: OpenTK.Compute.OpenCL.ProgramInfo.Devices type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Devices - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 360 assemblies: - OpenTK.Compute @@ -152,12 +132,8 @@ items: fullName: OpenTK.Compute.OpenCL.ProgramInfo.Source type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Source - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 361 assemblies: - OpenTK.Compute @@ -178,12 +154,8 @@ items: fullName: OpenTK.Compute.OpenCL.ProgramInfo.BinarySizes type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: BinarySizes - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 362 assemblies: - OpenTK.Compute @@ -204,12 +176,8 @@ items: fullName: OpenTK.Compute.OpenCL.ProgramInfo.Binaries type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Binaries - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 363 assemblies: - OpenTK.Compute @@ -230,12 +198,8 @@ items: fullName: OpenTK.Compute.OpenCL.ProgramInfo.NumberOfKernels type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: NumberOfKernels - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 364 assemblies: - OpenTK.Compute @@ -256,12 +220,8 @@ items: fullName: OpenTK.Compute.OpenCL.ProgramInfo.KernelNames type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: KernelNames - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 365 assemblies: - OpenTK.Compute @@ -282,12 +242,8 @@ items: fullName: OpenTK.Compute.OpenCL.ProgramInfo.Il type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Il - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 366 assemblies: - OpenTK.Compute diff --git a/api/OpenTK.Compute.OpenCL.SamplerInfo.yml b/api/OpenTK.Compute.OpenCL.SamplerInfo.yml index 673b8a3a..03736855 100644 --- a/api/OpenTK.Compute.OpenCL.SamplerInfo.yml +++ b/api/OpenTK.Compute.OpenCL.SamplerInfo.yml @@ -21,12 +21,8 @@ items: fullName: OpenTK.Compute.OpenCL.SamplerInfo type: Enum source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SamplerInfo - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 328 assemblies: - OpenTK.Compute @@ -46,12 +42,8 @@ items: fullName: OpenTK.Compute.OpenCL.SamplerInfo.ReferenceCount type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ReferenceCount - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 330 assemblies: - OpenTK.Compute @@ -72,12 +64,8 @@ items: fullName: OpenTK.Compute.OpenCL.SamplerInfo.Context type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Context - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 331 assemblies: - OpenTK.Compute @@ -98,12 +86,8 @@ items: fullName: OpenTK.Compute.OpenCL.SamplerInfo.NormalizedCoordinates type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: NormalizedCoordinates - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 332 assemblies: - OpenTK.Compute @@ -124,12 +108,8 @@ items: fullName: OpenTK.Compute.OpenCL.SamplerInfo.AddressingMode type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: AddressingMode - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 333 assemblies: - OpenTK.Compute @@ -150,12 +130,8 @@ items: fullName: OpenTK.Compute.OpenCL.SamplerInfo.FilterMode type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: FilterMode - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 334 assemblies: - OpenTK.Compute @@ -176,12 +152,8 @@ items: fullName: OpenTK.Compute.OpenCL.SamplerInfo.MipFilterMode type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MipFilterMode - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 335 assemblies: - OpenTK.Compute @@ -202,12 +174,8 @@ items: fullName: OpenTK.Compute.OpenCL.SamplerInfo.LodMinimum type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: LodMinimum - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 336 assemblies: - OpenTK.Compute @@ -228,12 +196,8 @@ items: fullName: OpenTK.Compute.OpenCL.SamplerInfo.LodMaximum type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: LodMaximum - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 337 assemblies: - OpenTK.Compute diff --git a/api/OpenTK.Compute.OpenCL.SvmMemoryFlags.yml b/api/OpenTK.Compute.OpenCL.SvmMemoryFlags.yml index 09dfc10a..5054032e 100644 --- a/api/OpenTK.Compute.OpenCL.SvmMemoryFlags.yml +++ b/api/OpenTK.Compute.OpenCL.SvmMemoryFlags.yml @@ -25,12 +25,8 @@ items: fullName: OpenTK.Compute.OpenCL.SvmMemoryFlags type: Enum source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SvmMemoryFlags - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 311 assemblies: - OpenTK.Compute @@ -60,12 +56,8 @@ items: fullName: OpenTK.Compute.OpenCL.SvmMemoryFlags.ReadWrite type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ReadWrite - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 314 assemblies: - OpenTK.Compute @@ -86,12 +78,8 @@ items: fullName: OpenTK.Compute.OpenCL.SvmMemoryFlags.WriteOnly type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: WriteOnly - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 315 assemblies: - OpenTK.Compute @@ -112,12 +100,8 @@ items: fullName: OpenTK.Compute.OpenCL.SvmMemoryFlags.ReadOnly type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ReadOnly - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 316 assemblies: - OpenTK.Compute @@ -138,12 +122,8 @@ items: fullName: OpenTK.Compute.OpenCL.SvmMemoryFlags.UseHostPointer type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: UseHostPointer - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 317 assemblies: - OpenTK.Compute @@ -164,12 +144,8 @@ items: fullName: OpenTK.Compute.OpenCL.SvmMemoryFlags.AllocateHostPointer type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: AllocateHostPointer - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 318 assemblies: - OpenTK.Compute @@ -190,12 +166,8 @@ items: fullName: OpenTK.Compute.OpenCL.SvmMemoryFlags.CopyHostPointer type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CopyHostPointer - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 319 assemblies: - OpenTK.Compute @@ -216,12 +188,8 @@ items: fullName: OpenTK.Compute.OpenCL.SvmMemoryFlags.HostWriteOnly type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: HostWriteOnly - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 320 assemblies: - OpenTK.Compute @@ -242,12 +210,8 @@ items: fullName: OpenTK.Compute.OpenCL.SvmMemoryFlags.HostReadOnly type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: HostReadOnly - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 321 assemblies: - OpenTK.Compute @@ -268,12 +232,8 @@ items: fullName: OpenTK.Compute.OpenCL.SvmMemoryFlags.HostNoAccess type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: HostNoAccess - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 322 assemblies: - OpenTK.Compute @@ -294,12 +254,8 @@ items: fullName: OpenTK.Compute.OpenCL.SvmMemoryFlags.SvmFineGrainBuffer type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SvmFineGrainBuffer - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 323 assemblies: - OpenTK.Compute @@ -320,12 +276,8 @@ items: fullName: OpenTK.Compute.OpenCL.SvmMemoryFlags.SvmAtomics type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SvmAtomics - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 324 assemblies: - OpenTK.Compute @@ -346,12 +298,8 @@ items: fullName: OpenTK.Compute.OpenCL.SvmMemoryFlags.KernelReadAndWrite type: Field source: - remote: - path: src/OpenTK.Compute/OpenCL/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: KernelReadAndWrite - path: opentk/src/OpenTK.Compute/OpenCL/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Compute\OpenCL\Enums.cs startLine: 325 assemblies: - OpenTK.Compute diff --git a/api/OpenTK.Core.Exceptions.BindingsNotRewrittenException.yml b/api/OpenTK.Core.Exceptions.BindingsNotRewrittenException.yml index f62d2731..2c5c36c6 100644 --- a/api/OpenTK.Core.Exceptions.BindingsNotRewrittenException.yml +++ b/api/OpenTK.Core.Exceptions.BindingsNotRewrittenException.yml @@ -14,12 +14,8 @@ items: fullName: OpenTK.Core.Exceptions.BindingsNotRewrittenException type: Class source: - remote: - path: src/OpenTK.Core/Exceptions/BindingsNotRewrittenException.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: BindingsNotRewrittenException - path: opentk/src/OpenTK.Core/Exceptions/BindingsNotRewrittenException.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Core\Exceptions\BindingsNotRewrittenException.cs startLine: 32 assemblies: - OpenTK.Core @@ -36,7 +32,6 @@ items: - System.Runtime.Serialization.ISerializable inheritedMembers: - System.Exception.GetBaseException - - System.Exception.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) - System.Exception.GetType - System.Exception.ToString - System.Exception.Data @@ -65,12 +60,8 @@ items: fullName: OpenTK.Core.Exceptions.BindingsNotRewrittenException.BindingsNotRewrittenException() type: Constructor source: - remote: - path: src/OpenTK.Core/Exceptions/BindingsNotRewrittenException.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Core/Exceptions/BindingsNotRewrittenException.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Core\Exceptions\BindingsNotRewrittenException.cs startLine: 37 assemblies: - OpenTK.Core @@ -164,48 +155,6 @@ references: href: https://learn.microsoft.com/dotnet/api/system.exception.getbaseexception - name: ( - name: ) -- uid: System.Exception.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) - commentId: M:System.Exception.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) - parent: System.Exception - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.exception.getobjectdata - name: GetObjectData(SerializationInfo, StreamingContext) - nameWithType: Exception.GetObjectData(SerializationInfo, StreamingContext) - fullName: System.Exception.GetObjectData(System.Runtime.Serialization.SerializationInfo, System.Runtime.Serialization.StreamingContext) - spec.csharp: - - uid: System.Exception.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) - name: GetObjectData - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.exception.getobjectdata - - name: ( - - uid: System.Runtime.Serialization.SerializationInfo - name: SerializationInfo - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.runtime.serialization.serializationinfo - - name: ',' - - name: " " - - uid: System.Runtime.Serialization.StreamingContext - name: StreamingContext - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.runtime.serialization.streamingcontext - - name: ) - spec.vb: - - uid: System.Exception.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) - name: GetObjectData - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.exception.getobjectdata - - name: ( - - uid: System.Runtime.Serialization.SerializationInfo - name: SerializationInfo - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.runtime.serialization.serializationinfo - - name: ',' - - name: " " - - uid: System.Runtime.Serialization.StreamingContext - name: StreamingContext - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.runtime.serialization.streamingcontext - - name: ) - uid: System.Exception.GetType commentId: M:System.Exception.GetType parent: System.Exception diff --git a/api/OpenTK.Core.Exceptions.ExtensionNotSupportedException.yml b/api/OpenTK.Core.Exceptions.ExtensionNotSupportedException.yml index 9a8146a7..66466ff9 100644 --- a/api/OpenTK.Core.Exceptions.ExtensionNotSupportedException.yml +++ b/api/OpenTK.Core.Exceptions.ExtensionNotSupportedException.yml @@ -16,12 +16,8 @@ items: fullName: OpenTK.Core.Exceptions.ExtensionNotSupportedException type: Class source: - remote: - path: src/OpenTK.Core/Exceptions/ExtensionNotSupportedException.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ExtensionNotSupportedException - path: opentk/src/OpenTK.Core/Exceptions/ExtensionNotSupportedException.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Core\Exceptions\ExtensionNotSupportedException.cs startLine: 32 assemblies: - OpenTK.Core @@ -38,7 +34,6 @@ items: - System.Runtime.Serialization.ISerializable inheritedMembers: - System.Exception.GetBaseException - - System.Exception.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) - System.Exception.GetType - System.Exception.ToString - System.Exception.Data @@ -67,12 +62,8 @@ items: fullName: OpenTK.Core.Exceptions.ExtensionNotSupportedException.Extension type: Property source: - remote: - path: src/OpenTK.Core/Exceptions/ExtensionNotSupportedException.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Extension - path: opentk/src/OpenTK.Core/Exceptions/ExtensionNotSupportedException.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Core\Exceptions\ExtensionNotSupportedException.cs startLine: 37 assemblies: - OpenTK.Core @@ -98,12 +89,8 @@ items: fullName: OpenTK.Core.Exceptions.ExtensionNotSupportedException.ExtensionNotSupportedException(string) type: Constructor source: - remote: - path: src/OpenTK.Core/Exceptions/ExtensionNotSupportedException.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Core/Exceptions/ExtensionNotSupportedException.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Core\Exceptions\ExtensionNotSupportedException.cs startLine: 43 assemblies: - OpenTK.Core @@ -133,12 +120,8 @@ items: fullName: OpenTK.Core.Exceptions.ExtensionNotSupportedException.ExtensionNotSupportedException(string, string) type: Constructor source: - remote: - path: src/OpenTK.Core/Exceptions/ExtensionNotSupportedException.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Core/Exceptions/ExtensionNotSupportedException.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Core\Exceptions\ExtensionNotSupportedException.cs startLine: 53 assemblies: - OpenTK.Core @@ -239,48 +222,6 @@ references: href: https://learn.microsoft.com/dotnet/api/system.exception.getbaseexception - name: ( - name: ) -- uid: System.Exception.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) - commentId: M:System.Exception.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) - parent: System.Exception - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.exception.getobjectdata - name: GetObjectData(SerializationInfo, StreamingContext) - nameWithType: Exception.GetObjectData(SerializationInfo, StreamingContext) - fullName: System.Exception.GetObjectData(System.Runtime.Serialization.SerializationInfo, System.Runtime.Serialization.StreamingContext) - spec.csharp: - - uid: System.Exception.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) - name: GetObjectData - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.exception.getobjectdata - - name: ( - - uid: System.Runtime.Serialization.SerializationInfo - name: SerializationInfo - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.runtime.serialization.serializationinfo - - name: ',' - - name: " " - - uid: System.Runtime.Serialization.StreamingContext - name: StreamingContext - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.runtime.serialization.streamingcontext - - name: ) - spec.vb: - - uid: System.Exception.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) - name: GetObjectData - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.exception.getobjectdata - - name: ( - - uid: System.Runtime.Serialization.SerializationInfo - name: SerializationInfo - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.runtime.serialization.serializationinfo - - name: ',' - - name: " " - - uid: System.Runtime.Serialization.StreamingContext - name: StreamingContext - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.runtime.serialization.streamingcontext - - name: ) - uid: System.Exception.GetType commentId: M:System.Exception.GetType parent: System.Exception diff --git a/api/OpenTK.Core.Native.AutoGeneratedAttribute.yml b/api/OpenTK.Core.Native.AutoGeneratedAttribute.yml index 66765afa..3af08d3a 100644 --- a/api/OpenTK.Core.Native.AutoGeneratedAttribute.yml +++ b/api/OpenTK.Core.Native.AutoGeneratedAttribute.yml @@ -17,12 +17,8 @@ items: fullName: OpenTK.Core.Native.AutoGeneratedAttribute type: Class source: - remote: - path: src/OpenTK.Core/Native/AutoGeneratedAttribute.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: AutoGeneratedAttribute - path: opentk/src/OpenTK.Core/Native/AutoGeneratedAttribute.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Core\Native\AutoGeneratedAttribute.cs startLine: 32 assemblies: - OpenTK.Core @@ -105,12 +101,8 @@ items: fullName: OpenTK.Core.Native.AutoGeneratedAttribute.Category type: Property source: - remote: - path: src/OpenTK.Core/Native/AutoGeneratedAttribute.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Category - path: opentk/src/OpenTK.Core/Native/AutoGeneratedAttribute.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Core\Native\AutoGeneratedAttribute.cs startLine: 38 assemblies: - OpenTK.Core @@ -136,12 +128,8 @@ items: fullName: OpenTK.Core.Native.AutoGeneratedAttribute.EntryPoint type: Property source: - remote: - path: src/OpenTK.Core/Native/AutoGeneratedAttribute.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: EntryPoint - path: opentk/src/OpenTK.Core/Native/AutoGeneratedAttribute.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Core\Native\AutoGeneratedAttribute.cs startLine: 43 assemblies: - OpenTK.Core @@ -167,12 +155,8 @@ items: fullName: OpenTK.Core.Native.AutoGeneratedAttribute.Version type: Property source: - remote: - path: src/OpenTK.Core/Native/AutoGeneratedAttribute.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Version - path: opentk/src/OpenTK.Core/Native/AutoGeneratedAttribute.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Core\Native\AutoGeneratedAttribute.cs startLine: 48 assemblies: - OpenTK.Core @@ -198,12 +182,8 @@ items: fullName: OpenTK.Core.Native.AutoGeneratedAttribute.Source type: Property source: - remote: - path: src/OpenTK.Core/Native/AutoGeneratedAttribute.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Source - path: opentk/src/OpenTK.Core/Native/AutoGeneratedAttribute.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Core\Native\AutoGeneratedAttribute.cs startLine: 53 assemblies: - OpenTK.Core diff --git a/api/OpenTK.Core.Native.CountAttribute.yml b/api/OpenTK.Core.Native.CountAttribute.yml index c0da5e45..41db8aa2 100644 --- a/api/OpenTK.Core.Native.CountAttribute.yml +++ b/api/OpenTK.Core.Native.CountAttribute.yml @@ -16,12 +16,8 @@ items: fullName: OpenTK.Core.Native.CountAttribute type: Class source: - remote: - path: src/OpenTK.Core/Native/CountAttribute.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CountAttribute - path: opentk/src/OpenTK.Core/Native/CountAttribute.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Core\Native\CountAttribute.cs startLine: 7 assemblies: - OpenTK.Core @@ -101,12 +97,8 @@ items: fullName: OpenTK.Core.Native.CountAttribute.Count type: Property source: - remote: - path: src/OpenTK.Core/Native/CountAttribute.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Count - path: opentk/src/OpenTK.Core/Native/CountAttribute.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Core\Native\CountAttribute.cs startLine: 13 assemblies: - OpenTK.Core @@ -132,12 +124,8 @@ items: fullName: OpenTK.Core.Native.CountAttribute.Parameter type: Property source: - remote: - path: src/OpenTK.Core/Native/CountAttribute.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Parameter - path: opentk/src/OpenTK.Core/Native/CountAttribute.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Core\Native\CountAttribute.cs startLine: 18 assemblies: - OpenTK.Core @@ -163,12 +151,8 @@ items: fullName: OpenTK.Core.Native.CountAttribute.Computed type: Property source: - remote: - path: src/OpenTK.Core/Native/CountAttribute.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Computed - path: opentk/src/OpenTK.Core/Native/CountAttribute.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Core\Native\CountAttribute.cs startLine: 23 assemblies: - OpenTK.Core diff --git a/api/OpenTK.Core.Native.MarshalTk.yml b/api/OpenTK.Core.Native.MarshalTk.yml index aa2376a1..b15a61ee 100644 --- a/api/OpenTK.Core.Native.MarshalTk.yml +++ b/api/OpenTK.Core.Native.MarshalTk.yml @@ -5,9 +5,12 @@ items: id: MarshalTk parent: OpenTK.Core.Native children: + - OpenTK.Core.Native.MarshalTk.FreeAnsiStringArrayPtr(System.Byte**,System.UInt32) - OpenTK.Core.Native.MarshalTk.FreeStringArrayPtr(System.IntPtr,System.Int32) - OpenTK.Core.Native.MarshalTk.FreeStringPtr(System.IntPtr) + - OpenTK.Core.Native.MarshalTk.MarshalAnsiStringArrayPtrToStringArray(System.Byte**,System.UInt32) - OpenTK.Core.Native.MarshalTk.MarshalPtrToString(System.IntPtr) + - OpenTK.Core.Native.MarshalTk.MarshalStringArrayToAnsiStringArrayPtr(System.Span{System.String},System.UInt32@) - OpenTK.Core.Native.MarshalTk.MarshalStringArrayToPtr(System.String[]) - OpenTK.Core.Native.MarshalTk.MarshalStringToPtr(System.String) langs: @@ -18,12 +21,8 @@ items: fullName: OpenTK.Core.Native.MarshalTk type: Class source: - remote: - path: src/OpenTK.Core/Native/MarshalTk.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MarshalTk - path: opentk/src/OpenTK.Core/Native/MarshalTk.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Core\Native\MarshalTk.cs startLine: 9 assemblies: - OpenTK.Core @@ -55,12 +54,8 @@ items: fullName: OpenTK.Core.Native.MarshalTk.MarshalPtrToString(nint) type: Method source: - remote: - path: src/OpenTK.Core/Native/MarshalTk.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MarshalPtrToString - path: opentk/src/OpenTK.Core/Native/MarshalTk.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Core\Native\MarshalTk.cs startLine: 19 assemblies: - OpenTK.Core @@ -96,12 +91,8 @@ items: fullName: OpenTK.Core.Native.MarshalTk.MarshalStringToPtr(string) type: Method source: - remote: - path: src/OpenTK.Core/Native/MarshalTk.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MarshalStringToPtr - path: opentk/src/OpenTK.Core/Native/MarshalTk.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Core\Native\MarshalTk.cs startLine: 50 assemblies: - OpenTK.Core @@ -142,12 +133,8 @@ items: fullName: OpenTK.Core.Native.MarshalTk.FreeStringPtr(nint) type: Method source: - remote: - path: src/OpenTK.Core/Native/MarshalTk.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: FreeStringPtr - path: opentk/src/OpenTK.Core/Native/MarshalTk.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Core\Native\MarshalTk.cs startLine: 85 assemblies: - OpenTK.Core @@ -177,12 +164,8 @@ items: fullName: OpenTK.Core.Native.MarshalTk.MarshalStringArrayToPtr(string[]) type: Method source: - remote: - path: src/OpenTK.Core/Native/MarshalTk.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MarshalStringArrayToPtr - path: opentk/src/OpenTK.Core/Native/MarshalTk.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Core\Native\MarshalTk.cs startLine: 96 assemblies: - OpenTK.Core @@ -218,12 +201,8 @@ items: fullName: OpenTK.Core.Native.MarshalTk.FreeStringArrayPtr(nint, int) type: Method source: - remote: - path: src/OpenTK.Core/Native/MarshalTk.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: FreeStringArrayPtr - path: opentk/src/OpenTK.Core/Native/MarshalTk.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Core\Native\MarshalTk.cs startLine: 137 assemblies: - OpenTK.Core @@ -244,6 +223,117 @@ items: nameWithType.vb: MarshalTk.FreeStringArrayPtr(IntPtr, Integer) fullName.vb: OpenTK.Core.Native.MarshalTk.FreeStringArrayPtr(System.IntPtr, Integer) name.vb: FreeStringArrayPtr(IntPtr, Integer) +- uid: OpenTK.Core.Native.MarshalTk.MarshalAnsiStringArrayPtrToStringArray(System.Byte**,System.UInt32) + commentId: M:OpenTK.Core.Native.MarshalTk.MarshalAnsiStringArrayPtrToStringArray(System.Byte**,System.UInt32) + id: MarshalAnsiStringArrayPtrToStringArray(System.Byte**,System.UInt32) + parent: OpenTK.Core.Native.MarshalTk + langs: + - csharp + - vb + name: MarshalAnsiStringArrayPtrToStringArray(byte**, uint) + nameWithType: MarshalTk.MarshalAnsiStringArrayPtrToStringArray(byte**, uint) + fullName: OpenTK.Core.Native.MarshalTk.MarshalAnsiStringArrayPtrToStringArray(byte**, uint) + type: Method + source: + id: MarshalAnsiStringArrayPtrToStringArray + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Core\Native\MarshalTk.cs + startLine: 153 + assemblies: + - OpenTK.Core + namespace: OpenTK.Core.Native + summary: Marshals a ansi string array into a . + example: [] + syntax: + content: public static string[] MarshalAnsiStringArrayPtrToStringArray(byte** strArrayPtr, uint length) + parameters: + - id: strArrayPtr + type: System.Byte** + description: The ansi string array pointer. + - id: length + type: System.UInt32 + description: The number of strings in the array. + return: + type: System.String[] + description: The managed string array. + content.vb: Public Shared Function MarshalAnsiStringArrayPtrToStringArray(strArrayPtr As Byte**, length As UInteger) As String() + overload: OpenTK.Core.Native.MarshalTk.MarshalAnsiStringArrayPtrToStringArray* + nameWithType.vb: MarshalTk.MarshalAnsiStringArrayPtrToStringArray(Byte**, UInteger) + fullName.vb: OpenTK.Core.Native.MarshalTk.MarshalAnsiStringArrayPtrToStringArray(Byte**, UInteger) + name.vb: MarshalAnsiStringArrayPtrToStringArray(Byte**, UInteger) +- uid: OpenTK.Core.Native.MarshalTk.MarshalStringArrayToAnsiStringArrayPtr(System.Span{System.String},System.UInt32@) + commentId: M:OpenTK.Core.Native.MarshalTk.MarshalStringArrayToAnsiStringArrayPtr(System.Span{System.String},System.UInt32@) + id: MarshalStringArrayToAnsiStringArrayPtr(System.Span{System.String},System.UInt32@) + parent: OpenTK.Core.Native.MarshalTk + langs: + - csharp + - vb + name: MarshalStringArrayToAnsiStringArrayPtr(Span, out uint) + nameWithType: MarshalTk.MarshalStringArrayToAnsiStringArrayPtr(Span, out uint) + fullName: OpenTK.Core.Native.MarshalTk.MarshalStringArrayToAnsiStringArrayPtr(System.Span, out uint) + type: Method + source: + id: MarshalStringArrayToAnsiStringArrayPtr + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Core\Native\MarshalTk.cs + startLine: 171 + assemblies: + - OpenTK.Core + namespace: OpenTK.Core.Native + summary: >- + Converts a span of strings into an unmanged ansi string array. + + Use to free the array. + example: [] + syntax: + content: public static byte** MarshalStringArrayToAnsiStringArrayPtr(Span stringArray, out uint count) + parameters: + - id: stringArray + type: System.Span{System.String} + description: The span of strings to marshal. + - id: count + type: System.UInt32 + description: The number of strings in the unmanged array. The same as the length of the array. + return: + type: System.Byte** + description: The unmanaged ansi string array. + content.vb: Public Shared Function MarshalStringArrayToAnsiStringArrayPtr(stringArray As Span(Of String), count As UInteger) As Byte** + overload: OpenTK.Core.Native.MarshalTk.MarshalStringArrayToAnsiStringArrayPtr* + nameWithType.vb: MarshalTk.MarshalStringArrayToAnsiStringArrayPtr(Span(Of String), UInteger) + fullName.vb: OpenTK.Core.Native.MarshalTk.MarshalStringArrayToAnsiStringArrayPtr(System.Span(Of String), UInteger) + name.vb: MarshalStringArrayToAnsiStringArrayPtr(Span(Of String), UInteger) +- uid: OpenTK.Core.Native.MarshalTk.FreeAnsiStringArrayPtr(System.Byte**,System.UInt32) + commentId: M:OpenTK.Core.Native.MarshalTk.FreeAnsiStringArrayPtr(System.Byte**,System.UInt32) + id: FreeAnsiStringArrayPtr(System.Byte**,System.UInt32) + parent: OpenTK.Core.Native.MarshalTk + langs: + - csharp + - vb + name: FreeAnsiStringArrayPtr(byte**, uint) + nameWithType: MarshalTk.FreeAnsiStringArrayPtr(byte**, uint) + fullName: OpenTK.Core.Native.MarshalTk.FreeAnsiStringArrayPtr(byte**, uint) + type: Method + source: + id: FreeAnsiStringArrayPtr + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Core\Native\MarshalTk.cs + startLine: 187 + assemblies: + - OpenTK.Core + namespace: OpenTK.Core.Native + summary: Frees unmanaged ansi string arrays allocated by . + example: [] + syntax: + content: public static void FreeAnsiStringArrayPtr(byte** strArrayPtr, uint count) + parameters: + - id: strArrayPtr + type: System.Byte** + description: The unmanaged ansi string array. + - id: count + type: System.UInt32 + description: The number of strings in the array. + content.vb: Public Shared Sub FreeAnsiStringArrayPtr(strArrayPtr As Byte**, count As UInteger) + overload: OpenTK.Core.Native.MarshalTk.FreeAnsiStringArrayPtr* + nameWithType.vb: MarshalTk.FreeAnsiStringArrayPtr(Byte**, UInteger) + fullName.vb: OpenTK.Core.Native.MarshalTk.FreeAnsiStringArrayPtr(Byte**, UInteger) + name.vb: FreeAnsiStringArrayPtr(Byte**, UInteger) references: - uid: OpenTK.Core.Native commentId: N:OpenTK.Core.Native @@ -598,3 +688,228 @@ references: nameWithType.vb: Integer fullName.vb: Integer name.vb: Integer +- uid: byte** + commentId: T:byte** + isExternal: true +- uid: string[] + commentId: T:string[] + isExternal: true +- uid: OpenTK.Core.Native.MarshalTk.MarshalAnsiStringArrayPtrToStringArray* + commentId: Overload:OpenTK.Core.Native.MarshalTk.MarshalAnsiStringArrayPtrToStringArray + href: OpenTK.Core.Native.MarshalTk.html#OpenTK_Core_Native_MarshalTk_MarshalAnsiStringArrayPtrToStringArray_System_Byte___System_UInt32_ + name: MarshalAnsiStringArrayPtrToStringArray + nameWithType: MarshalTk.MarshalAnsiStringArrayPtrToStringArray + fullName: OpenTK.Core.Native.MarshalTk.MarshalAnsiStringArrayPtrToStringArray +- uid: System.Byte** + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.byte + name: byte** + nameWithType: byte** + fullName: byte** + nameWithType.vb: Byte** + fullName.vb: Byte** + name.vb: Byte** + spec.csharp: + - uid: System.Byte + name: byte + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.byte + - name: '*' + - name: '*' + spec.vb: + - uid: System.Byte + name: Byte + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.byte + - name: '*' + - name: '*' +- uid: System.UInt32 + commentId: T:System.UInt32 + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.uint32 + name: uint + nameWithType: uint + fullName: uint + nameWithType.vb: UInteger + fullName.vb: UInteger + name.vb: UInteger +- uid: OpenTK.Core.Native.MarshalTk.FreeAnsiStringArrayPtr(System.Byte**,System.UInt32) + commentId: M:OpenTK.Core.Native.MarshalTk.FreeAnsiStringArrayPtr(System.Byte**,System.UInt32) + isExternal: true + href: OpenTK.Core.Native.MarshalTk.html#OpenTK_Core_Native_MarshalTk_FreeAnsiStringArrayPtr_System_Byte___System_UInt32_ + name: FreeAnsiStringArrayPtr(byte**, uint) + nameWithType: MarshalTk.FreeAnsiStringArrayPtr(byte**, uint) + fullName: OpenTK.Core.Native.MarshalTk.FreeAnsiStringArrayPtr(byte**, uint) + nameWithType.vb: MarshalTk.FreeAnsiStringArrayPtr(Byte**, UInteger) + fullName.vb: OpenTK.Core.Native.MarshalTk.FreeAnsiStringArrayPtr(Byte**, UInteger) + name.vb: FreeAnsiStringArrayPtr(Byte**, UInteger) + spec.csharp: + - uid: OpenTK.Core.Native.MarshalTk.FreeAnsiStringArrayPtr(System.Byte**,System.UInt32) + name: FreeAnsiStringArrayPtr + href: OpenTK.Core.Native.MarshalTk.html#OpenTK_Core_Native_MarshalTk_FreeAnsiStringArrayPtr_System_Byte___System_UInt32_ + - name: ( + - uid: System.Byte + name: byte + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.byte + - name: '*' + - name: '*' + - name: ',' + - name: " " + - uid: System.UInt32 + name: uint + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.uint32 + - name: ) + spec.vb: + - uid: OpenTK.Core.Native.MarshalTk.FreeAnsiStringArrayPtr(System.Byte**,System.UInt32) + name: FreeAnsiStringArrayPtr + href: OpenTK.Core.Native.MarshalTk.html#OpenTK_Core_Native_MarshalTk_FreeAnsiStringArrayPtr_System_Byte___System_UInt32_ + - name: ( + - uid: System.Byte + name: Byte + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.byte + - name: '*' + - name: '*' + - name: ',' + - name: " " + - uid: System.UInt32 + name: UInteger + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.uint32 + - name: ) +- uid: OpenTK.Core.Native.MarshalTk.MarshalStringArrayToAnsiStringArrayPtr* + commentId: Overload:OpenTK.Core.Native.MarshalTk.MarshalStringArrayToAnsiStringArrayPtr + href: OpenTK.Core.Native.MarshalTk.html#OpenTK_Core_Native_MarshalTk_MarshalStringArrayToAnsiStringArrayPtr_System_Span_System_String__System_UInt32__ + name: MarshalStringArrayToAnsiStringArrayPtr + nameWithType: MarshalTk.MarshalStringArrayToAnsiStringArrayPtr + fullName: OpenTK.Core.Native.MarshalTk.MarshalStringArrayToAnsiStringArrayPtr +- uid: System.Span{System.String} + commentId: T:System.Span{System.String} + parent: System + definition: System.Span`1 + href: https://learn.microsoft.com/dotnet/api/system.span-1 + name: Span + nameWithType: Span + fullName: System.Span + nameWithType.vb: Span(Of String) + fullName.vb: System.Span(Of String) + name.vb: Span(Of String) + spec.csharp: + - uid: System.Span`1 + name: Span + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.span-1 + - name: < + - uid: System.String + name: string + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: '>' + spec.vb: + - uid: System.Span`1 + name: Span + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.span-1 + - name: ( + - name: Of + - name: " " + - uid: System.String + name: String + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ) +- uid: System.Span`1 + commentId: T:System.Span`1 + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.span-1 + name: Span + nameWithType: Span + fullName: System.Span + nameWithType.vb: Span(Of T) + fullName.vb: System.Span(Of T) + name.vb: Span(Of T) + spec.csharp: + - uid: System.Span`1 + name: Span + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.span-1 + - name: < + - name: T + - name: '>' + spec.vb: + - uid: System.Span`1 + name: Span + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.span-1 + - name: ( + - name: Of + - name: " " + - name: T + - name: ) +- uid: OpenTK.Core.Native.MarshalTk.MarshalStringArrayToAnsiStringArrayPtr(System.Span{System.String},System.UInt32@) + commentId: M:OpenTK.Core.Native.MarshalTk.MarshalStringArrayToAnsiStringArrayPtr(System.Span{System.String},System.UInt32@) + isExternal: true + href: OpenTK.Core.Native.MarshalTk.html#OpenTK_Core_Native_MarshalTk_MarshalStringArrayToAnsiStringArrayPtr_System_Span_System_String__System_UInt32__ + name: MarshalStringArrayToAnsiStringArrayPtr(Span, out uint) + nameWithType: MarshalTk.MarshalStringArrayToAnsiStringArrayPtr(Span, out uint) + fullName: OpenTK.Core.Native.MarshalTk.MarshalStringArrayToAnsiStringArrayPtr(System.Span, out uint) + nameWithType.vb: MarshalTk.MarshalStringArrayToAnsiStringArrayPtr(Span(Of String), UInteger) + fullName.vb: OpenTK.Core.Native.MarshalTk.MarshalStringArrayToAnsiStringArrayPtr(System.Span(Of String), UInteger) + name.vb: MarshalStringArrayToAnsiStringArrayPtr(Span(Of String), UInteger) + spec.csharp: + - uid: OpenTK.Core.Native.MarshalTk.MarshalStringArrayToAnsiStringArrayPtr(System.Span{System.String},System.UInt32@) + name: MarshalStringArrayToAnsiStringArrayPtr + href: OpenTK.Core.Native.MarshalTk.html#OpenTK_Core_Native_MarshalTk_MarshalStringArrayToAnsiStringArrayPtr_System_Span_System_String__System_UInt32__ + - name: ( + - uid: System.Span`1 + name: Span + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.span-1 + - name: < + - uid: System.String + name: string + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: '>' + - name: ',' + - name: " " + - name: out + - name: " " + - uid: System.UInt32 + name: uint + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.uint32 + - name: ) + spec.vb: + - uid: OpenTK.Core.Native.MarshalTk.MarshalStringArrayToAnsiStringArrayPtr(System.Span{System.String},System.UInt32@) + name: MarshalStringArrayToAnsiStringArrayPtr + href: OpenTK.Core.Native.MarshalTk.html#OpenTK_Core_Native_MarshalTk_MarshalStringArrayToAnsiStringArrayPtr_System_Span_System_String__System_UInt32__ + - name: ( + - uid: System.Span`1 + name: Span + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.span-1 + - name: ( + - name: Of + - name: " " + - uid: System.String + name: String + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ) + - name: ',' + - name: " " + - uid: System.UInt32 + name: UInteger + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.uint32 + - name: ) +- uid: OpenTK.Core.Native.MarshalTk.FreeAnsiStringArrayPtr* + commentId: Overload:OpenTK.Core.Native.MarshalTk.FreeAnsiStringArrayPtr + href: OpenTK.Core.Native.MarshalTk.html#OpenTK_Core_Native_MarshalTk_FreeAnsiStringArrayPtr_System_Byte___System_UInt32_ + name: FreeAnsiStringArrayPtr + nameWithType: MarshalTk.FreeAnsiStringArrayPtr + fullName: OpenTK.Core.Native.MarshalTk.FreeAnsiStringArrayPtr diff --git a/api/OpenTK.Core.Native.SlotAttribute.yml b/api/OpenTK.Core.Native.SlotAttribute.yml index b7cb29a4..c959c3eb 100644 --- a/api/OpenTK.Core.Native.SlotAttribute.yml +++ b/api/OpenTK.Core.Native.SlotAttribute.yml @@ -14,12 +14,8 @@ items: fullName: OpenTK.Core.Native.SlotAttribute type: Class source: - remote: - path: src/OpenTK.Core/Native/SlotAttribute.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SlotAttribute - path: opentk/src/OpenTK.Core/Native/SlotAttribute.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Core\Native\SlotAttribute.cs startLine: 35 assemblies: - OpenTK.Core @@ -111,12 +107,8 @@ items: fullName: OpenTK.Core.Native.SlotAttribute.SlotAttribute(int) type: Constructor source: - remote: - path: src/OpenTK.Core/Native/SlotAttribute.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Core/Native/SlotAttribute.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Core\Native\SlotAttribute.cs startLine: 48 assemblies: - OpenTK.Core diff --git a/api/OpenTK.Core.Platform.AppTheme.yml b/api/OpenTK.Core.Platform.AppTheme.yml deleted file mode 100644 index 1200ff13..00000000 --- a/api/OpenTK.Core.Platform.AppTheme.yml +++ /dev/null @@ -1,155 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: OpenTK.Core.Platform.AppTheme - commentId: T:OpenTK.Core.Platform.AppTheme - id: AppTheme - parent: OpenTK.Core.Platform - children: - - OpenTK.Core.Platform.AppTheme.Dark - - OpenTK.Core.Platform.AppTheme.Light - - OpenTK.Core.Platform.AppTheme.NoPreference - langs: - - csharp - - vb - name: AppTheme - nameWithType: AppTheme - fullName: OpenTK.Core.Platform.AppTheme - type: Enum - source: - remote: - path: src/OpenTK.Core/Platform/Enums/ThemeInfo.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: AppTheme - path: opentk/src/OpenTK.Core/Platform/Enums/ThemeInfo.cs - startLine: 11 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Enum representing a theme setting. - example: [] - syntax: - content: public enum AppTheme - content.vb: Public Enum AppTheme -- uid: OpenTK.Core.Platform.AppTheme.NoPreference - commentId: F:OpenTK.Core.Platform.AppTheme.NoPreference - id: NoPreference - parent: OpenTK.Core.Platform.AppTheme - langs: - - csharp - - vb - name: NoPreference - nameWithType: AppTheme.NoPreference - fullName: OpenTK.Core.Platform.AppTheme.NoPreference - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/ThemeInfo.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: NoPreference - path: opentk/src/OpenTK.Core/Platform/Enums/ThemeInfo.cs - startLine: 16 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: No preference for theme. - example: [] - syntax: - content: NoPreference = 0 - return: - type: OpenTK.Core.Platform.AppTheme -- uid: OpenTK.Core.Platform.AppTheme.Light - commentId: F:OpenTK.Core.Platform.AppTheme.Light - id: Light - parent: OpenTK.Core.Platform.AppTheme - langs: - - csharp - - vb - name: Light - nameWithType: AppTheme.Light - fullName: OpenTK.Core.Platform.AppTheme.Light - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/ThemeInfo.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Light - path: opentk/src/OpenTK.Core/Platform/Enums/ThemeInfo.cs - startLine: 21 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: A light theme is preferred. - example: [] - syntax: - content: Light = 1 - return: - type: OpenTK.Core.Platform.AppTheme -- uid: OpenTK.Core.Platform.AppTheme.Dark - commentId: F:OpenTK.Core.Platform.AppTheme.Dark - id: Dark - parent: OpenTK.Core.Platform.AppTheme - langs: - - csharp - - vb - name: Dark - nameWithType: AppTheme.Dark - fullName: OpenTK.Core.Platform.AppTheme.Dark - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/ThemeInfo.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Dark - path: opentk/src/OpenTK.Core/Platform/Enums/ThemeInfo.cs - startLine: 26 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: A dark theme is preferred. - example: [] - syntax: - content: Dark = 2 - return: - type: OpenTK.Core.Platform.AppTheme -references: -- uid: OpenTK.Core.Platform - commentId: N:OpenTK.Core.Platform - href: OpenTK.html - name: OpenTK.Core.Platform - nameWithType: OpenTK.Core.Platform - fullName: OpenTK.Core.Platform - spec.csharp: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform - name: Platform - href: OpenTK.Core.Platform.html - spec.vb: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform - name: Platform - href: OpenTK.Core.Platform.html -- uid: OpenTK.Core.Platform.AppTheme - commentId: T:OpenTK.Core.Platform.AppTheme - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.AppTheme.html - name: AppTheme - nameWithType: AppTheme - fullName: OpenTK.Core.Platform.AppTheme diff --git a/api/OpenTK.Core.Platform.BatteryStatus.yml b/api/OpenTK.Core.Platform.BatteryStatus.yml deleted file mode 100644 index 659f38aa..00000000 --- a/api/OpenTK.Core.Platform.BatteryStatus.yml +++ /dev/null @@ -1,162 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: OpenTK.Core.Platform.BatteryStatus - commentId: T:OpenTK.Core.Platform.BatteryStatus - id: BatteryStatus - parent: OpenTK.Core.Platform - children: - - OpenTK.Core.Platform.BatteryStatus.HasSystemBattery - - OpenTK.Core.Platform.BatteryStatus.NoSystemBattery - - OpenTK.Core.Platform.BatteryStatus.Unknown - langs: - - csharp - - vb - name: BatteryStatus - nameWithType: BatteryStatus - fullName: OpenTK.Core.Platform.BatteryStatus - type: Enum - source: - remote: - path: src/OpenTK.Core/Platform/Enums/BatteryStatus.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: BatteryStatus - path: opentk/src/OpenTK.Core/Platform/Enums/BatteryStatus.cs - startLine: 11 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Whether the computer has a battery or if it doesn't, or if the computers battery status is unknown. - example: [] - syntax: - content: public enum BatteryStatus - content.vb: Public Enum BatteryStatus -- uid: OpenTK.Core.Platform.BatteryStatus.Unknown - commentId: F:OpenTK.Core.Platform.BatteryStatus.Unknown - id: Unknown - parent: OpenTK.Core.Platform.BatteryStatus - langs: - - csharp - - vb - name: Unknown - nameWithType: BatteryStatus.Unknown - fullName: OpenTK.Core.Platform.BatteryStatus.Unknown - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/BatteryStatus.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Unknown - path: opentk/src/OpenTK.Core/Platform/Enums/BatteryStatus.cs - startLine: 16 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: The battery status of the computer is indeterminable. - example: [] - syntax: - content: Unknown = 0 - return: - type: OpenTK.Core.Platform.BatteryStatus -- uid: OpenTK.Core.Platform.BatteryStatus.NoSystemBattery - commentId: F:OpenTK.Core.Platform.BatteryStatus.NoSystemBattery - id: NoSystemBattery - parent: OpenTK.Core.Platform.BatteryStatus - langs: - - csharp - - vb - name: NoSystemBattery - nameWithType: BatteryStatus.NoSystemBattery - fullName: OpenTK.Core.Platform.BatteryStatus.NoSystemBattery - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/BatteryStatus.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: NoSystemBattery - path: opentk/src/OpenTK.Core/Platform/Enums/BatteryStatus.cs - startLine: 21 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: The computer does not have a battery. - example: [] - syntax: - content: NoSystemBattery = 1 - return: - type: OpenTK.Core.Platform.BatteryStatus -- uid: OpenTK.Core.Platform.BatteryStatus.HasSystemBattery - commentId: F:OpenTK.Core.Platform.BatteryStatus.HasSystemBattery - id: HasSystemBattery - parent: OpenTK.Core.Platform.BatteryStatus - langs: - - csharp - - vb - name: HasSystemBattery - nameWithType: BatteryStatus.HasSystemBattery - fullName: OpenTK.Core.Platform.BatteryStatus.HasSystemBattery - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/BatteryStatus.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: HasSystemBattery - path: opentk/src/OpenTK.Core/Platform/Enums/BatteryStatus.cs - startLine: 26 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: The computer has a battery, for more information see . - example: [] - syntax: - content: HasSystemBattery = 2 - return: - type: OpenTK.Core.Platform.BatteryStatus -references: -- uid: OpenTK.Core.Platform - commentId: N:OpenTK.Core.Platform - href: OpenTK.html - name: OpenTK.Core.Platform - nameWithType: OpenTK.Core.Platform - fullName: OpenTK.Core.Platform - spec.csharp: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform - name: Platform - href: OpenTK.Core.Platform.html - spec.vb: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform - name: Platform - href: OpenTK.Core.Platform.html -- uid: OpenTK.Core.Platform.BatteryStatus - commentId: T:OpenTK.Core.Platform.BatteryStatus - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.BatteryStatus.html - name: BatteryStatus - nameWithType: BatteryStatus - fullName: OpenTK.Core.Platform.BatteryStatus -- uid: OpenTK.Core.Platform.BatteryInfo - commentId: T:OpenTK.Core.Platform.BatteryInfo - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.BatteryInfo.html - name: BatteryInfo - nameWithType: BatteryInfo - fullName: OpenTK.Core.Platform.BatteryInfo diff --git a/api/OpenTK.Core.Platform.ClipboardFormat.yml b/api/OpenTK.Core.Platform.ClipboardFormat.yml deleted file mode 100644 index 18e2dad4..00000000 --- a/api/OpenTK.Core.Platform.ClipboardFormat.yml +++ /dev/null @@ -1,227 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: OpenTK.Core.Platform.ClipboardFormat - commentId: T:OpenTK.Core.Platform.ClipboardFormat - id: ClipboardFormat - parent: OpenTK.Core.Platform - children: - - OpenTK.Core.Platform.ClipboardFormat.Audio - - OpenTK.Core.Platform.ClipboardFormat.Bitmap - - OpenTK.Core.Platform.ClipboardFormat.Files - - OpenTK.Core.Platform.ClipboardFormat.None - - OpenTK.Core.Platform.ClipboardFormat.Text - langs: - - csharp - - vb - name: ClipboardFormat - nameWithType: ClipboardFormat - fullName: OpenTK.Core.Platform.ClipboardFormat - type: Enum - source: - remote: - path: src/OpenTK.Core/Platform/Enums/ClipboardFormat.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: ClipboardFormat - path: opentk/src/OpenTK.Core/Platform/Enums/ClipboardFormat.cs - startLine: 11 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Represents a clipboard data format. - example: [] - syntax: - content: public enum ClipboardFormat - content.vb: Public Enum ClipboardFormat -- uid: OpenTK.Core.Platform.ClipboardFormat.None - commentId: F:OpenTK.Core.Platform.ClipboardFormat.None - id: None - parent: OpenTK.Core.Platform.ClipboardFormat - langs: - - csharp - - vb - name: None - nameWithType: ClipboardFormat.None - fullName: OpenTK.Core.Platform.ClipboardFormat.None - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/ClipboardFormat.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: None - path: opentk/src/OpenTK.Core/Platform/Enums/ClipboardFormat.cs - startLine: 16 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Unknown format, or the clipboard is empty. - example: [] - syntax: - content: None = 0 - return: - type: OpenTK.Core.Platform.ClipboardFormat -- uid: OpenTK.Core.Platform.ClipboardFormat.Text - commentId: F:OpenTK.Core.Platform.ClipboardFormat.Text - id: Text - parent: OpenTK.Core.Platform.ClipboardFormat - langs: - - csharp - - vb - name: Text - nameWithType: ClipboardFormat.Text - fullName: OpenTK.Core.Platform.ClipboardFormat.Text - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/ClipboardFormat.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Text - path: opentk/src/OpenTK.Core/Platform/Enums/ClipboardFormat.cs - startLine: 21 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Unicode text. - example: [] - syntax: - content: Text = 1 - return: - type: OpenTK.Core.Platform.ClipboardFormat -- uid: OpenTK.Core.Platform.ClipboardFormat.Audio - commentId: F:OpenTK.Core.Platform.ClipboardFormat.Audio - id: Audio - parent: OpenTK.Core.Platform.ClipboardFormat - langs: - - csharp - - vb - name: Audio - nameWithType: ClipboardFormat.Audio - fullName: OpenTK.Core.Platform.ClipboardFormat.Audio - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/ClipboardFormat.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Audio - path: opentk/src/OpenTK.Core/Platform/Enums/ClipboardFormat.cs - startLine: 26 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Audio data. See . - example: [] - syntax: - content: Audio = 2 - return: - type: OpenTK.Core.Platform.ClipboardFormat -- uid: OpenTK.Core.Platform.ClipboardFormat.Bitmap - commentId: F:OpenTK.Core.Platform.ClipboardFormat.Bitmap - id: Bitmap - parent: OpenTK.Core.Platform.ClipboardFormat - langs: - - csharp - - vb - name: Bitmap - nameWithType: ClipboardFormat.Bitmap - fullName: OpenTK.Core.Platform.ClipboardFormat.Bitmap - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/ClipboardFormat.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Bitmap - path: opentk/src/OpenTK.Core/Platform/Enums/ClipboardFormat.cs - startLine: 31 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: A bitmap. See . - example: [] - syntax: - content: Bitmap = 3 - return: - type: OpenTK.Core.Platform.ClipboardFormat -- uid: OpenTK.Core.Platform.ClipboardFormat.Files - commentId: F:OpenTK.Core.Platform.ClipboardFormat.Files - id: Files - parent: OpenTK.Core.Platform.ClipboardFormat - langs: - - csharp - - vb - name: Files - nameWithType: ClipboardFormat.Files - fullName: OpenTK.Core.Platform.ClipboardFormat.Files - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/ClipboardFormat.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Files - path: opentk/src/OpenTK.Core/Platform/Enums/ClipboardFormat.cs - startLine: 36 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: A list of files and directories. - example: [] - syntax: - content: Files = 5 - return: - type: OpenTK.Core.Platform.ClipboardFormat -references: -- uid: OpenTK.Core.Platform - commentId: N:OpenTK.Core.Platform - href: OpenTK.html - name: OpenTK.Core.Platform - nameWithType: OpenTK.Core.Platform - fullName: OpenTK.Core.Platform - spec.csharp: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform - name: Platform - href: OpenTK.Core.Platform.html - spec.vb: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform - name: Platform - href: OpenTK.Core.Platform.html -- uid: OpenTK.Core.Platform.ClipboardFormat - commentId: T:OpenTK.Core.Platform.ClipboardFormat - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.ClipboardFormat.html - name: ClipboardFormat - nameWithType: ClipboardFormat - fullName: OpenTK.Core.Platform.ClipboardFormat -- uid: OpenTK.Core.Platform.AudioData - commentId: T:OpenTK.Core.Platform.AudioData - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.AudioData.html - name: AudioData - nameWithType: AudioData - fullName: OpenTK.Core.Platform.AudioData -- uid: OpenTK.Core.Platform.Bitmap - commentId: T:OpenTK.Core.Platform.Bitmap - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.Bitmap.html - name: Bitmap - nameWithType: Bitmap - fullName: OpenTK.Core.Platform.Bitmap diff --git a/api/OpenTK.Core.Platform.ComponentSet.yml b/api/OpenTK.Core.Platform.ComponentSet.yml deleted file mode 100644 index 2a5ab144..00000000 --- a/api/OpenTK.Core.Platform.ComponentSet.yml +++ /dev/null @@ -1,1125 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: OpenTK.Core.Platform.ComponentSet - commentId: T:OpenTK.Core.Platform.ComponentSet - id: ComponentSet - parent: OpenTK.Core.Platform - children: - - OpenTK.Core.Platform.ComponentSet.Clipboard - - OpenTK.Core.Platform.ComponentSet.Cursor - - OpenTK.Core.Platform.ComponentSet.Display - - OpenTK.Core.Platform.ComponentSet.Icon - - OpenTK.Core.Platform.ComponentSet.Initialized - - OpenTK.Core.Platform.ComponentSet.Item(OpenTK.Core.Platform.PalComponents) - - OpenTK.Core.Platform.ComponentSet.Joystick - - OpenTK.Core.Platform.ComponentSet.Keyboard - - OpenTK.Core.Platform.ComponentSet.Logger - - OpenTK.Core.Platform.ComponentSet.Mouse - - OpenTK.Core.Platform.ComponentSet.Name - - OpenTK.Core.Platform.ComponentSet.OpenGL - - OpenTK.Core.Platform.ComponentSet.Provides - - OpenTK.Core.Platform.ComponentSet.Shell - - OpenTK.Core.Platform.ComponentSet.Surface - - OpenTK.Core.Platform.ComponentSet.Window - langs: - - csharp - - vb - name: ComponentSet - nameWithType: ComponentSet - fullName: OpenTK.Core.Platform.ComponentSet - type: Class - source: - remote: - path: src/OpenTK.Core/Platform/ComponentSet.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: ComponentSet - path: opentk/src/OpenTK.Core/Platform/ComponentSet.cs - startLine: 13 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: A set of platform abstraction layer components. - example: [] - syntax: - content: 'public class ComponentSet : IClipboardComponent, ICursorComponent, IDisplayComponent, IIconComponent, IKeyboardComponent, IMouseComponent, IOpenGLComponent, ISurfaceComponent, IWindowComponent, IShellComponent, IJoystickComponent, IPalComponent' - content.vb: Public Class ComponentSet Implements IClipboardComponent, ICursorComponent, IDisplayComponent, IIconComponent, IKeyboardComponent, IMouseComponent, IOpenGLComponent, ISurfaceComponent, IWindowComponent, IShellComponent, IJoystickComponent, IPalComponent - inheritance: - - System.Object - implements: - - OpenTK.Core.Platform.IClipboardComponent - - OpenTK.Core.Platform.ICursorComponent - - OpenTK.Core.Platform.IDisplayComponent - - OpenTK.Core.Platform.IIconComponent - - OpenTK.Core.Platform.IKeyboardComponent - - OpenTK.Core.Platform.IMouseComponent - - OpenTK.Core.Platform.IOpenGLComponent - - OpenTK.Core.Platform.ISurfaceComponent - - OpenTK.Core.Platform.IWindowComponent - - OpenTK.Core.Platform.IShellComponent - - OpenTK.Core.Platform.IJoystickComponent - - OpenTK.Core.Platform.IPalComponent - inheritedMembers: - - System.Object.Equals(System.Object) - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetHashCode - - System.Object.GetType - - System.Object.MemberwiseClone - - System.Object.ReferenceEquals(System.Object,System.Object) - - System.Object.ToString -- uid: OpenTK.Core.Platform.ComponentSet.Window - commentId: P:OpenTK.Core.Platform.ComponentSet.Window - id: Window - parent: OpenTK.Core.Platform.ComponentSet - langs: - - csharp - - vb - name: Window - nameWithType: ComponentSet.Window - fullName: OpenTK.Core.Platform.ComponentSet.Window - type: Property - source: - remote: - path: src/OpenTK.Core/Platform/ComponentSet.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Window - path: opentk/src/OpenTK.Core/Platform/ComponentSet.cs - startLine: 38 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: public IWindowComponent Window { get; } - parameters: [] - return: - type: OpenTK.Core.Platform.IWindowComponent - content.vb: Public ReadOnly Property Window As IWindowComponent - overload: OpenTK.Core.Platform.ComponentSet.Window* -- uid: OpenTK.Core.Platform.ComponentSet.Surface - commentId: P:OpenTK.Core.Platform.ComponentSet.Surface - id: Surface - parent: OpenTK.Core.Platform.ComponentSet - langs: - - csharp - - vb - name: Surface - nameWithType: ComponentSet.Surface - fullName: OpenTK.Core.Platform.ComponentSet.Surface - type: Property - source: - remote: - path: src/OpenTK.Core/Platform/ComponentSet.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Surface - path: opentk/src/OpenTK.Core/Platform/ComponentSet.cs - startLine: 40 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: public ISurfaceComponent Surface { get; } - parameters: [] - return: - type: OpenTK.Core.Platform.ISurfaceComponent - content.vb: Public ReadOnly Property Surface As ISurfaceComponent - overload: OpenTK.Core.Platform.ComponentSet.Surface* -- uid: OpenTK.Core.Platform.ComponentSet.OpenGL - commentId: P:OpenTK.Core.Platform.ComponentSet.OpenGL - id: OpenGL - parent: OpenTK.Core.Platform.ComponentSet - langs: - - csharp - - vb - name: OpenGL - nameWithType: ComponentSet.OpenGL - fullName: OpenTK.Core.Platform.ComponentSet.OpenGL - type: Property - source: - remote: - path: src/OpenTK.Core/Platform/ComponentSet.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: OpenGL - path: opentk/src/OpenTK.Core/Platform/ComponentSet.cs - startLine: 42 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: public IOpenGLComponent OpenGL { get; } - parameters: [] - return: - type: OpenTK.Core.Platform.IOpenGLComponent - content.vb: Public ReadOnly Property OpenGL As IOpenGLComponent - overload: OpenTK.Core.Platform.ComponentSet.OpenGL* -- uid: OpenTK.Core.Platform.ComponentSet.Display - commentId: P:OpenTK.Core.Platform.ComponentSet.Display - id: Display - parent: OpenTK.Core.Platform.ComponentSet - langs: - - csharp - - vb - name: Display - nameWithType: ComponentSet.Display - fullName: OpenTK.Core.Platform.ComponentSet.Display - type: Property - source: - remote: - path: src/OpenTK.Core/Platform/ComponentSet.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Display - path: opentk/src/OpenTK.Core/Platform/ComponentSet.cs - startLine: 44 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: public IDisplayComponent Display { get; } - parameters: [] - return: - type: OpenTK.Core.Platform.IDisplayComponent - content.vb: Public ReadOnly Property Display As IDisplayComponent - overload: OpenTK.Core.Platform.ComponentSet.Display* -- uid: OpenTK.Core.Platform.ComponentSet.Shell - commentId: P:OpenTK.Core.Platform.ComponentSet.Shell - id: Shell - parent: OpenTK.Core.Platform.ComponentSet - langs: - - csharp - - vb - name: Shell - nameWithType: ComponentSet.Shell - fullName: OpenTK.Core.Platform.ComponentSet.Shell - type: Property - source: - remote: - path: src/OpenTK.Core/Platform/ComponentSet.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Shell - path: opentk/src/OpenTK.Core/Platform/ComponentSet.cs - startLine: 46 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: public IShellComponent Shell { get; } - parameters: [] - return: - type: OpenTK.Core.Platform.IShellComponent - content.vb: Public ReadOnly Property Shell As IShellComponent - overload: OpenTK.Core.Platform.ComponentSet.Shell* -- uid: OpenTK.Core.Platform.ComponentSet.Mouse - commentId: P:OpenTK.Core.Platform.ComponentSet.Mouse - id: Mouse - parent: OpenTK.Core.Platform.ComponentSet - langs: - - csharp - - vb - name: Mouse - nameWithType: ComponentSet.Mouse - fullName: OpenTK.Core.Platform.ComponentSet.Mouse - type: Property - source: - remote: - path: src/OpenTK.Core/Platform/ComponentSet.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Mouse - path: opentk/src/OpenTK.Core/Platform/ComponentSet.cs - startLine: 48 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: public IMouseComponent Mouse { get; } - parameters: [] - return: - type: OpenTK.Core.Platform.IMouseComponent - content.vb: Public ReadOnly Property Mouse As IMouseComponent - overload: OpenTK.Core.Platform.ComponentSet.Mouse* -- uid: OpenTK.Core.Platform.ComponentSet.Keyboard - commentId: P:OpenTK.Core.Platform.ComponentSet.Keyboard - id: Keyboard - parent: OpenTK.Core.Platform.ComponentSet - langs: - - csharp - - vb - name: Keyboard - nameWithType: ComponentSet.Keyboard - fullName: OpenTK.Core.Platform.ComponentSet.Keyboard - type: Property - source: - remote: - path: src/OpenTK.Core/Platform/ComponentSet.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Keyboard - path: opentk/src/OpenTK.Core/Platform/ComponentSet.cs - startLine: 50 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: public IKeyboardComponent Keyboard { get; } - parameters: [] - return: - type: OpenTK.Core.Platform.IKeyboardComponent - content.vb: Public ReadOnly Property Keyboard As IKeyboardComponent - overload: OpenTK.Core.Platform.ComponentSet.Keyboard* -- uid: OpenTK.Core.Platform.ComponentSet.Cursor - commentId: P:OpenTK.Core.Platform.ComponentSet.Cursor - id: Cursor - parent: OpenTK.Core.Platform.ComponentSet - langs: - - csharp - - vb - name: Cursor - nameWithType: ComponentSet.Cursor - fullName: OpenTK.Core.Platform.ComponentSet.Cursor - type: Property - source: - remote: - path: src/OpenTK.Core/Platform/ComponentSet.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Cursor - path: opentk/src/OpenTK.Core/Platform/ComponentSet.cs - startLine: 52 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: public ICursorComponent Cursor { get; } - parameters: [] - return: - type: OpenTK.Core.Platform.ICursorComponent - content.vb: Public ReadOnly Property Cursor As ICursorComponent - overload: OpenTK.Core.Platform.ComponentSet.Cursor* -- uid: OpenTK.Core.Platform.ComponentSet.Icon - commentId: P:OpenTK.Core.Platform.ComponentSet.Icon - id: Icon - parent: OpenTK.Core.Platform.ComponentSet - langs: - - csharp - - vb - name: Icon - nameWithType: ComponentSet.Icon - fullName: OpenTK.Core.Platform.ComponentSet.Icon - type: Property - source: - remote: - path: src/OpenTK.Core/Platform/ComponentSet.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Icon - path: opentk/src/OpenTK.Core/Platform/ComponentSet.cs - startLine: 54 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: public IIconComponent Icon { get; } - parameters: [] - return: - type: OpenTK.Core.Platform.IIconComponent - content.vb: Public ReadOnly Property Icon As IIconComponent - overload: OpenTK.Core.Platform.ComponentSet.Icon* -- uid: OpenTK.Core.Platform.ComponentSet.Clipboard - commentId: P:OpenTK.Core.Platform.ComponentSet.Clipboard - id: Clipboard - parent: OpenTK.Core.Platform.ComponentSet - langs: - - csharp - - vb - name: Clipboard - nameWithType: ComponentSet.Clipboard - fullName: OpenTK.Core.Platform.ComponentSet.Clipboard - type: Property - source: - remote: - path: src/OpenTK.Core/Platform/ComponentSet.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Clipboard - path: opentk/src/OpenTK.Core/Platform/ComponentSet.cs - startLine: 56 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: public IClipboardComponent Clipboard { get; } - parameters: [] - return: - type: OpenTK.Core.Platform.IClipboardComponent - content.vb: Public ReadOnly Property Clipboard As IClipboardComponent - overload: OpenTK.Core.Platform.ComponentSet.Clipboard* -- uid: OpenTK.Core.Platform.ComponentSet.Joystick - commentId: P:OpenTK.Core.Platform.ComponentSet.Joystick - id: Joystick - parent: OpenTK.Core.Platform.ComponentSet - langs: - - csharp - - vb - name: Joystick - nameWithType: ComponentSet.Joystick - fullName: OpenTK.Core.Platform.ComponentSet.Joystick - type: Property - source: - remote: - path: src/OpenTK.Core/Platform/ComponentSet.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Joystick - path: opentk/src/OpenTK.Core/Platform/ComponentSet.cs - startLine: 58 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: public IJoystickComponent Joystick { get; } - parameters: [] - return: - type: OpenTK.Core.Platform.IJoystickComponent - content.vb: Public ReadOnly Property Joystick As IJoystickComponent - overload: OpenTK.Core.Platform.ComponentSet.Joystick* -- uid: OpenTK.Core.Platform.ComponentSet.Initialized - commentId: P:OpenTK.Core.Platform.ComponentSet.Initialized - id: Initialized - parent: OpenTK.Core.Platform.ComponentSet - langs: - - csharp - - vb - name: Initialized - nameWithType: ComponentSet.Initialized - fullName: OpenTK.Core.Platform.ComponentSet.Initialized - type: Property - source: - remote: - path: src/OpenTK.Core/Platform/ComponentSet.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Initialized - path: opentk/src/OpenTK.Core/Platform/ComponentSet.cs - startLine: 66 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Indicated whether the component set has been initialized. - remarks: An initialized component set cannot be modified. - example: [] - syntax: - content: public bool Initialized { get; } - parameters: [] - return: - type: System.Boolean - content.vb: Public Property Initialized As Boolean - overload: OpenTK.Core.Platform.ComponentSet.Initialized* -- uid: OpenTK.Core.Platform.ComponentSet.Name - commentId: P:OpenTK.Core.Platform.ComponentSet.Name - id: Name - parent: OpenTK.Core.Platform.ComponentSet - langs: - - csharp - - vb - name: Name - nameWithType: ComponentSet.Name - fullName: OpenTK.Core.Platform.ComponentSet.Name - type: Property - source: - remote: - path: src/OpenTK.Core/Platform/ComponentSet.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Name - path: opentk/src/OpenTK.Core/Platform/ComponentSet.cs - startLine: 69 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Name of the abstraction layer component. - example: [] - syntax: - content: public string Name { get; } - parameters: [] - return: - type: System.String - content.vb: Public ReadOnly Property Name As String - overload: OpenTK.Core.Platform.ComponentSet.Name* - implements: - - OpenTK.Core.Platform.IPalComponent.Name -- uid: OpenTK.Core.Platform.ComponentSet.Provides - commentId: P:OpenTK.Core.Platform.ComponentSet.Provides - id: Provides - parent: OpenTK.Core.Platform.ComponentSet - langs: - - csharp - - vb - name: Provides - nameWithType: ComponentSet.Provides - fullName: OpenTK.Core.Platform.ComponentSet.Provides - type: Property - source: - remote: - path: src/OpenTK.Core/Platform/ComponentSet.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Provides - path: opentk/src/OpenTK.Core/Platform/ComponentSet.cs - startLine: 129 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Specifies which PAL components this object provides. - example: [] - syntax: - content: public PalComponents Provides { get; } - parameters: [] - return: - type: OpenTK.Core.Platform.PalComponents - content.vb: Public ReadOnly Property Provides As PalComponents - overload: OpenTK.Core.Platform.ComponentSet.Provides* - implements: - - OpenTK.Core.Platform.IPalComponent.Provides -- uid: OpenTK.Core.Platform.ComponentSet.Logger - commentId: P:OpenTK.Core.Platform.ComponentSet.Logger - id: Logger - parent: OpenTK.Core.Platform.ComponentSet - langs: - - csharp - - vb - name: Logger - nameWithType: ComponentSet.Logger - fullName: OpenTK.Core.Platform.ComponentSet.Logger - type: Property - source: - remote: - path: src/OpenTK.Core/Platform/ComponentSet.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Logger - path: opentk/src/OpenTK.Core/Platform/ComponentSet.cs - startLine: 143 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Provides a logger for this component. - example: [] - syntax: - content: public ILogger? Logger { get; set; } - parameters: [] - return: - type: OpenTK.Core.Utility.ILogger - content.vb: Public Property Logger As ILogger - overload: OpenTK.Core.Platform.ComponentSet.Logger* - implements: - - OpenTK.Core.Platform.IPalComponent.Logger -- uid: OpenTK.Core.Platform.ComponentSet.Item(OpenTK.Core.Platform.PalComponents) - commentId: P:OpenTK.Core.Platform.ComponentSet.Item(OpenTK.Core.Platform.PalComponents) - id: Item(OpenTK.Core.Platform.PalComponents) - parent: OpenTK.Core.Platform.ComponentSet - langs: - - csharp - - vb - name: this[PalComponents] - nameWithType: ComponentSet.this[PalComponents] - fullName: OpenTK.Core.Platform.ComponentSet.this[OpenTK.Core.Platform.PalComponents] - type: Property - source: - remote: - path: src/OpenTK.Core/Platform/ComponentSet.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: this[] - path: opentk/src/OpenTK.Core/Platform/ComponentSet.cs - startLine: 185 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Get or set which components are in the set. - example: [] - syntax: - content: public IPalComponent? this[PalComponents which] { get; set; } - parameters: - - id: which - type: OpenTK.Core.Platform.PalComponents - description: The component group. - return: - type: OpenTK.Core.Platform.IPalComponent - content.vb: Public Default Property this[](which As PalComponents) As IPalComponent - overload: OpenTK.Core.Platform.ComponentSet.Item* - exceptions: - - type: System.NotImplementedException - commentId: T:System.NotImplementedException - description: Not implemented, yet. - - type: System.ArgumentException - commentId: T:System.ArgumentException - description: The given which enum should only contain bit set for get. - - type: OpenTK.Core.Platform.PalException - commentId: T:OpenTK.Core.Platform.PalException - description: Raised when the set is modified after initialization. - nameWithType.vb: ComponentSet.this[](PalComponents) - fullName.vb: OpenTK.Core.Platform.ComponentSet.this[](OpenTK.Core.Platform.PalComponents) - name.vb: this[](PalComponents) -references: -- uid: OpenTK.Core.Platform - commentId: N:OpenTK.Core.Platform - href: OpenTK.html - name: OpenTK.Core.Platform - nameWithType: OpenTK.Core.Platform - fullName: OpenTK.Core.Platform - spec.csharp: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform - name: Platform - href: OpenTK.Core.Platform.html - spec.vb: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform - name: Platform - href: OpenTK.Core.Platform.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: OpenTK.Core.Platform.IClipboardComponent - commentId: T:OpenTK.Core.Platform.IClipboardComponent - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.IClipboardComponent.html - name: IClipboardComponent - nameWithType: IClipboardComponent - fullName: OpenTK.Core.Platform.IClipboardComponent -- uid: OpenTK.Core.Platform.ICursorComponent - commentId: T:OpenTK.Core.Platform.ICursorComponent - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.ICursorComponent.html - name: ICursorComponent - nameWithType: ICursorComponent - fullName: OpenTK.Core.Platform.ICursorComponent -- uid: OpenTK.Core.Platform.IDisplayComponent - commentId: T:OpenTK.Core.Platform.IDisplayComponent - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.IDisplayComponent.html - name: IDisplayComponent - nameWithType: IDisplayComponent - fullName: OpenTK.Core.Platform.IDisplayComponent -- uid: OpenTK.Core.Platform.IIconComponent - commentId: T:OpenTK.Core.Platform.IIconComponent - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.IIconComponent.html - name: IIconComponent - nameWithType: IIconComponent - fullName: OpenTK.Core.Platform.IIconComponent -- uid: OpenTK.Core.Platform.IKeyboardComponent - commentId: T:OpenTK.Core.Platform.IKeyboardComponent - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.IKeyboardComponent.html - name: IKeyboardComponent - nameWithType: IKeyboardComponent - fullName: OpenTK.Core.Platform.IKeyboardComponent -- uid: OpenTK.Core.Platform.IMouseComponent - commentId: T:OpenTK.Core.Platform.IMouseComponent - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.IMouseComponent.html - name: IMouseComponent - nameWithType: IMouseComponent - fullName: OpenTK.Core.Platform.IMouseComponent -- uid: OpenTK.Core.Platform.IOpenGLComponent - commentId: T:OpenTK.Core.Platform.IOpenGLComponent - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.IOpenGLComponent.html - name: IOpenGLComponent - nameWithType: IOpenGLComponent - fullName: OpenTK.Core.Platform.IOpenGLComponent -- uid: OpenTK.Core.Platform.ISurfaceComponent - commentId: T:OpenTK.Core.Platform.ISurfaceComponent - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.ISurfaceComponent.html - name: ISurfaceComponent - nameWithType: ISurfaceComponent - fullName: OpenTK.Core.Platform.ISurfaceComponent -- uid: OpenTK.Core.Platform.IWindowComponent - commentId: T:OpenTK.Core.Platform.IWindowComponent - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.IWindowComponent.html - name: IWindowComponent - nameWithType: IWindowComponent - fullName: OpenTK.Core.Platform.IWindowComponent -- uid: OpenTK.Core.Platform.IShellComponent - commentId: T:OpenTK.Core.Platform.IShellComponent - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.IShellComponent.html - name: IShellComponent - nameWithType: IShellComponent - fullName: OpenTK.Core.Platform.IShellComponent -- uid: OpenTK.Core.Platform.IJoystickComponent - commentId: T:OpenTK.Core.Platform.IJoystickComponent - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.IJoystickComponent.html - name: IJoystickComponent - nameWithType: IJoystickComponent - fullName: OpenTK.Core.Platform.IJoystickComponent -- uid: OpenTK.Core.Platform.IPalComponent - commentId: T:OpenTK.Core.Platform.IPalComponent - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.IPalComponent.html - name: IPalComponent - nameWithType: IPalComponent - fullName: OpenTK.Core.Platform.IPalComponent -- uid: System.Object.Equals(System.Object) - commentId: M:System.Object.Equals(System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - name: Equals(object) - nameWithType: object.Equals(object) - fullName: object.Equals(object) - nameWithType.vb: Object.Equals(Object) - fullName.vb: Object.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetHashCode - commentId: M:System.Object.GetHashCode - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - name: GetHashCode() - nameWithType: object.GetHashCode() - fullName: object.GetHashCode() - nameWithType.vb: Object.GetHashCode() - fullName.vb: Object.GetHashCode() - spec.csharp: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.MemberwiseClone - commentId: M:System.Object.MemberwiseClone - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - name: MemberwiseClone() - nameWithType: object.MemberwiseClone() - fullName: object.MemberwiseClone() - nameWithType.vb: Object.MemberwiseClone() - fullName.vb: Object.MemberwiseClone() - spec.csharp: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) - spec.vb: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.ToString - commentId: M:System.Object.ToString - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - name: ToString() - nameWithType: object.ToString() - fullName: object.ToString() - nameWithType.vb: Object.ToString() - fullName.vb: Object.ToString() - spec.csharp: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) - spec.vb: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: OpenTK.Core.Platform.ComponentSet.Window* - commentId: Overload:OpenTK.Core.Platform.ComponentSet.Window - href: OpenTK.Core.Platform.ComponentSet.html#OpenTK_Core_Platform_ComponentSet_Window - name: Window - nameWithType: ComponentSet.Window - fullName: OpenTK.Core.Platform.ComponentSet.Window -- uid: OpenTK.Core.Platform.ComponentSet.Surface* - commentId: Overload:OpenTK.Core.Platform.ComponentSet.Surface - href: OpenTK.Core.Platform.ComponentSet.html#OpenTK_Core_Platform_ComponentSet_Surface - name: Surface - nameWithType: ComponentSet.Surface - fullName: OpenTK.Core.Platform.ComponentSet.Surface -- uid: OpenTK.Core.Platform.ComponentSet.OpenGL* - commentId: Overload:OpenTK.Core.Platform.ComponentSet.OpenGL - href: OpenTK.Core.Platform.ComponentSet.html#OpenTK_Core_Platform_ComponentSet_OpenGL - name: OpenGL - nameWithType: ComponentSet.OpenGL - fullName: OpenTK.Core.Platform.ComponentSet.OpenGL -- uid: OpenTK.Core.Platform.ComponentSet.Display* - commentId: Overload:OpenTK.Core.Platform.ComponentSet.Display - href: OpenTK.Core.Platform.ComponentSet.html#OpenTK_Core_Platform_ComponentSet_Display - name: Display - nameWithType: ComponentSet.Display - fullName: OpenTK.Core.Platform.ComponentSet.Display -- uid: OpenTK.Core.Platform.ComponentSet.Shell* - commentId: Overload:OpenTK.Core.Platform.ComponentSet.Shell - href: OpenTK.Core.Platform.ComponentSet.html#OpenTK_Core_Platform_ComponentSet_Shell - name: Shell - nameWithType: ComponentSet.Shell - fullName: OpenTK.Core.Platform.ComponentSet.Shell -- uid: OpenTK.Core.Platform.ComponentSet.Mouse* - commentId: Overload:OpenTK.Core.Platform.ComponentSet.Mouse - href: OpenTK.Core.Platform.ComponentSet.html#OpenTK_Core_Platform_ComponentSet_Mouse - name: Mouse - nameWithType: ComponentSet.Mouse - fullName: OpenTK.Core.Platform.ComponentSet.Mouse -- uid: OpenTK.Core.Platform.ComponentSet.Keyboard* - commentId: Overload:OpenTK.Core.Platform.ComponentSet.Keyboard - href: OpenTK.Core.Platform.ComponentSet.html#OpenTK_Core_Platform_ComponentSet_Keyboard - name: Keyboard - nameWithType: ComponentSet.Keyboard - fullName: OpenTK.Core.Platform.ComponentSet.Keyboard -- uid: OpenTK.Core.Platform.ComponentSet.Cursor* - commentId: Overload:OpenTK.Core.Platform.ComponentSet.Cursor - href: OpenTK.Core.Platform.ComponentSet.html#OpenTK_Core_Platform_ComponentSet_Cursor - name: Cursor - nameWithType: ComponentSet.Cursor - fullName: OpenTK.Core.Platform.ComponentSet.Cursor -- uid: OpenTK.Core.Platform.ComponentSet.Icon* - commentId: Overload:OpenTK.Core.Platform.ComponentSet.Icon - href: OpenTK.Core.Platform.ComponentSet.html#OpenTK_Core_Platform_ComponentSet_Icon - name: Icon - nameWithType: ComponentSet.Icon - fullName: OpenTK.Core.Platform.ComponentSet.Icon -- uid: OpenTK.Core.Platform.ComponentSet.Clipboard* - commentId: Overload:OpenTK.Core.Platform.ComponentSet.Clipboard - href: OpenTK.Core.Platform.ComponentSet.html#OpenTK_Core_Platform_ComponentSet_Clipboard - name: Clipboard - nameWithType: ComponentSet.Clipboard - fullName: OpenTK.Core.Platform.ComponentSet.Clipboard -- uid: OpenTK.Core.Platform.ComponentSet.Joystick* - commentId: Overload:OpenTK.Core.Platform.ComponentSet.Joystick - href: OpenTK.Core.Platform.ComponentSet.html#OpenTK_Core_Platform_ComponentSet_Joystick - name: Joystick - nameWithType: ComponentSet.Joystick - fullName: OpenTK.Core.Platform.ComponentSet.Joystick -- uid: OpenTK.Core.Platform.ComponentSet.Initialized* - commentId: Overload:OpenTK.Core.Platform.ComponentSet.Initialized - href: OpenTK.Core.Platform.ComponentSet.html#OpenTK_Core_Platform_ComponentSet_Initialized - name: Initialized - nameWithType: ComponentSet.Initialized - fullName: OpenTK.Core.Platform.ComponentSet.Initialized -- uid: System.Boolean - commentId: T:System.Boolean - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - name: bool - nameWithType: bool - fullName: bool - nameWithType.vb: Boolean - fullName.vb: Boolean - name.vb: Boolean -- uid: OpenTK.Core.Platform.ComponentSet.Name* - commentId: Overload:OpenTK.Core.Platform.ComponentSet.Name - href: OpenTK.Core.Platform.ComponentSet.html#OpenTK_Core_Platform_ComponentSet_Name - name: Name - nameWithType: ComponentSet.Name - fullName: OpenTK.Core.Platform.ComponentSet.Name -- uid: OpenTK.Core.Platform.IPalComponent.Name - commentId: P:OpenTK.Core.Platform.IPalComponent.Name - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Name - name: Name - nameWithType: IPalComponent.Name - fullName: OpenTK.Core.Platform.IPalComponent.Name -- uid: System.String - commentId: T:System.String - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - name: string - nameWithType: string - fullName: string - nameWithType.vb: String - fullName.vb: String - name.vb: String -- uid: OpenTK.Core.Platform.ComponentSet.Provides* - commentId: Overload:OpenTK.Core.Platform.ComponentSet.Provides - href: OpenTK.Core.Platform.ComponentSet.html#OpenTK_Core_Platform_ComponentSet_Provides - name: Provides - nameWithType: ComponentSet.Provides - fullName: OpenTK.Core.Platform.ComponentSet.Provides -- uid: OpenTK.Core.Platform.IPalComponent.Provides - commentId: P:OpenTK.Core.Platform.IPalComponent.Provides - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Provides - name: Provides - nameWithType: IPalComponent.Provides - fullName: OpenTK.Core.Platform.IPalComponent.Provides -- uid: OpenTK.Core.Platform.PalComponents - commentId: T:OpenTK.Core.Platform.PalComponents - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.PalComponents.html - name: PalComponents - nameWithType: PalComponents - fullName: OpenTK.Core.Platform.PalComponents -- uid: OpenTK.Core.Platform.ComponentSet.Logger* - commentId: Overload:OpenTK.Core.Platform.ComponentSet.Logger - href: OpenTK.Core.Platform.ComponentSet.html#OpenTK_Core_Platform_ComponentSet_Logger - name: Logger - nameWithType: ComponentSet.Logger - fullName: OpenTK.Core.Platform.ComponentSet.Logger -- uid: OpenTK.Core.Platform.IPalComponent.Logger - commentId: P:OpenTK.Core.Platform.IPalComponent.Logger - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Logger - name: Logger - nameWithType: IPalComponent.Logger - fullName: OpenTK.Core.Platform.IPalComponent.Logger -- uid: OpenTK.Core.Utility.ILogger - commentId: T:OpenTK.Core.Utility.ILogger - parent: OpenTK.Core.Utility - href: OpenTK.Core.Utility.ILogger.html - name: ILogger - nameWithType: ILogger - fullName: OpenTK.Core.Utility.ILogger -- uid: OpenTK.Core.Utility - commentId: N:OpenTK.Core.Utility - href: OpenTK.html - name: OpenTK.Core.Utility - nameWithType: OpenTK.Core.Utility - fullName: OpenTK.Core.Utility - spec.csharp: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Utility - name: Utility - href: OpenTK.Core.Utility.html - spec.vb: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Utility - name: Utility - href: OpenTK.Core.Utility.html -- uid: System.NotImplementedException - commentId: T:System.NotImplementedException - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.notimplementedexception - name: NotImplementedException - nameWithType: NotImplementedException - fullName: System.NotImplementedException -- uid: System.ArgumentException - commentId: T:System.ArgumentException - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.argumentexception - name: ArgumentException - nameWithType: ArgumentException - fullName: System.ArgumentException -- uid: OpenTK.Core.Platform.PalException - commentId: T:OpenTK.Core.Platform.PalException - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.PalException.html - name: PalException - nameWithType: PalException - fullName: OpenTK.Core.Platform.PalException -- uid: OpenTK.Core.Platform.ComponentSet.Item* - commentId: Overload:OpenTK.Core.Platform.ComponentSet.Item - href: OpenTK.Core.Platform.ComponentSet.html#OpenTK_Core_Platform_ComponentSet_Item_OpenTK_Core_Platform_PalComponents_ - name: this - nameWithType: ComponentSet.this - fullName: OpenTK.Core.Platform.ComponentSet.this - nameWithType.vb: ComponentSet.this[] - fullName.vb: OpenTK.Core.Platform.ComponentSet.this[] - name.vb: this[] diff --git a/api/OpenTK.Core.Platform.ContextDepthBits.yml b/api/OpenTK.Core.Platform.ContextDepthBits.yml deleted file mode 100644 index 8bca1c9b..00000000 --- a/api/OpenTK.Core.Platform.ContextDepthBits.yml +++ /dev/null @@ -1,184 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: OpenTK.Core.Platform.ContextDepthBits - commentId: T:OpenTK.Core.Platform.ContextDepthBits - id: ContextDepthBits - parent: OpenTK.Core.Platform - children: - - OpenTK.Core.Platform.ContextDepthBits.Depth16 - - OpenTK.Core.Platform.ContextDepthBits.Depth24 - - OpenTK.Core.Platform.ContextDepthBits.Depth32 - - OpenTK.Core.Platform.ContextDepthBits.None - langs: - - csharp - - vb - name: ContextDepthBits - nameWithType: ContextDepthBits - fullName: OpenTK.Core.Platform.ContextDepthBits - type: Enum - source: - remote: - path: src/OpenTK.Core/Platform/ContextSettings.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: ContextDepthBits - path: opentk/src/OpenTK.Core/Platform/ContextSettings.cs - startLine: 517 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Represents the number of depth bits of the context depth backbuffer. - example: [] - syntax: - content: public enum ContextDepthBits - content.vb: Public Enum ContextDepthBits -- uid: OpenTK.Core.Platform.ContextDepthBits.None - commentId: F:OpenTK.Core.Platform.ContextDepthBits.None - id: None - parent: OpenTK.Core.Platform.ContextDepthBits - langs: - - csharp - - vb - name: None - nameWithType: ContextDepthBits.None - fullName: OpenTK.Core.Platform.ContextDepthBits.None - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/ContextSettings.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: None - path: opentk/src/OpenTK.Core/Platform/ContextSettings.cs - startLine: 522 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: No depth buffer. - example: [] - syntax: - content: None = 0 - return: - type: OpenTK.Core.Platform.ContextDepthBits -- uid: OpenTK.Core.Platform.ContextDepthBits.Depth16 - commentId: F:OpenTK.Core.Platform.ContextDepthBits.Depth16 - id: Depth16 - parent: OpenTK.Core.Platform.ContextDepthBits - langs: - - csharp - - vb - name: Depth16 - nameWithType: ContextDepthBits.Depth16 - fullName: OpenTK.Core.Platform.ContextDepthBits.Depth16 - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/ContextSettings.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Depth16 - path: opentk/src/OpenTK.Core/Platform/ContextSettings.cs - startLine: 527 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: 16-bit depth buffer. - example: [] - syntax: - content: Depth16 = 16 - return: - type: OpenTK.Core.Platform.ContextDepthBits -- uid: OpenTK.Core.Platform.ContextDepthBits.Depth24 - commentId: F:OpenTK.Core.Platform.ContextDepthBits.Depth24 - id: Depth24 - parent: OpenTK.Core.Platform.ContextDepthBits - langs: - - csharp - - vb - name: Depth24 - nameWithType: ContextDepthBits.Depth24 - fullName: OpenTK.Core.Platform.ContextDepthBits.Depth24 - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/ContextSettings.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Depth24 - path: opentk/src/OpenTK.Core/Platform/ContextSettings.cs - startLine: 532 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: 24-bit depth buffer. - example: [] - syntax: - content: Depth24 = 24 - return: - type: OpenTK.Core.Platform.ContextDepthBits -- uid: OpenTK.Core.Platform.ContextDepthBits.Depth32 - commentId: F:OpenTK.Core.Platform.ContextDepthBits.Depth32 - id: Depth32 - parent: OpenTK.Core.Platform.ContextDepthBits - langs: - - csharp - - vb - name: Depth32 - nameWithType: ContextDepthBits.Depth32 - fullName: OpenTK.Core.Platform.ContextDepthBits.Depth32 - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/ContextSettings.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Depth32 - path: opentk/src/OpenTK.Core/Platform/ContextSettings.cs - startLine: 537 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: 32-bit depth buffer. - example: [] - syntax: - content: Depth32 = 32 - return: - type: OpenTK.Core.Platform.ContextDepthBits -references: -- uid: OpenTK.Core.Platform - commentId: N:OpenTK.Core.Platform - href: OpenTK.html - name: OpenTK.Core.Platform - nameWithType: OpenTK.Core.Platform - fullName: OpenTK.Core.Platform - spec.csharp: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform - name: Platform - href: OpenTK.Core.Platform.html - spec.vb: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform - name: Platform - href: OpenTK.Core.Platform.html -- uid: OpenTK.Core.Platform.ContextDepthBits - commentId: T:OpenTK.Core.Platform.ContextDepthBits - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.ContextDepthBits.html - name: ContextDepthBits - nameWithType: ContextDepthBits - fullName: OpenTK.Core.Platform.ContextDepthBits diff --git a/api/OpenTK.Core.Platform.ContextPixelFormat.yml b/api/OpenTK.Core.Platform.ContextPixelFormat.yml deleted file mode 100644 index 0f7e3a37..00000000 --- a/api/OpenTK.Core.Platform.ContextPixelFormat.yml +++ /dev/null @@ -1,170 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: OpenTK.Core.Platform.ContextPixelFormat - commentId: T:OpenTK.Core.Platform.ContextPixelFormat - id: ContextPixelFormat - parent: OpenTK.Core.Platform - children: - - OpenTK.Core.Platform.ContextPixelFormat.RGBA - - OpenTK.Core.Platform.ContextPixelFormat.RGBAFloat - - OpenTK.Core.Platform.ContextPixelFormat.RGBAPackedFloat - langs: - - csharp - - vb - name: ContextPixelFormat - nameWithType: ContextPixelFormat - fullName: OpenTK.Core.Platform.ContextPixelFormat - type: Enum - source: - remote: - path: src/OpenTK.Core/Platform/ContextSettings.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: ContextPixelFormat - path: opentk/src/OpenTK.Core/Platform/ContextSettings.cs - startLine: 470 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: >- - Defined the pixel format type of the context. - - This is used to differentiate between "normal" fixed point LDR formats - - and floating point HDR formats. - example: [] - syntax: - content: public enum ContextPixelFormat - content.vb: Public Enum ContextPixelFormat -- uid: OpenTK.Core.Platform.ContextPixelFormat.RGBA - commentId: F:OpenTK.Core.Platform.ContextPixelFormat.RGBA - id: RGBA - parent: OpenTK.Core.Platform.ContextPixelFormat - langs: - - csharp - - vb - name: RGBA - nameWithType: ContextPixelFormat.RGBA - fullName: OpenTK.Core.Platform.ContextPixelFormat.RGBA - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/ContextSettings.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: RGBA - path: opentk/src/OpenTK.Core/Platform/ContextSettings.cs - startLine: 475 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Normal fixed point RGBA format specified by the color bits. - example: [] - syntax: - content: RGBA = 0 - return: - type: OpenTK.Core.Platform.ContextPixelFormat -- uid: OpenTK.Core.Platform.ContextPixelFormat.RGBAFloat - commentId: F:OpenTK.Core.Platform.ContextPixelFormat.RGBAFloat - id: RGBAFloat - parent: OpenTK.Core.Platform.ContextPixelFormat - langs: - - csharp - - vb - name: RGBAFloat - nameWithType: ContextPixelFormat.RGBAFloat - fullName: OpenTK.Core.Platform.ContextPixelFormat.RGBAFloat - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/ContextSettings.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: RGBAFloat - path: opentk/src/OpenTK.Core/Platform/ContextSettings.cs - startLine: 483 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: >- - Floating point RGBA pixel format specified by - - ARB_color_buffer_float - - or - - WGL_ATI_pixel_format_float. - example: [] - syntax: - content: RGBAFloat = 1 - return: - type: OpenTK.Core.Platform.ContextPixelFormat -- uid: OpenTK.Core.Platform.ContextPixelFormat.RGBAPackedFloat - commentId: F:OpenTK.Core.Platform.ContextPixelFormat.RGBAPackedFloat - id: RGBAPackedFloat - parent: OpenTK.Core.Platform.ContextPixelFormat - langs: - - csharp - - vb - name: RGBAPackedFloat - nameWithType: ContextPixelFormat.RGBAPackedFloat - fullName: OpenTK.Core.Platform.ContextPixelFormat.RGBAPackedFloat - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/ContextSettings.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: RGBAPackedFloat - path: opentk/src/OpenTK.Core/Platform/ContextSettings.cs - startLine: 489 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: >- - From EXT_packed_float. - - Pixel format is unsigned 10F_11F_11F format. - example: [] - syntax: - content: RGBAPackedFloat = 2 - return: - type: OpenTK.Core.Platform.ContextPixelFormat -references: -- uid: OpenTK.Core.Platform - commentId: N:OpenTK.Core.Platform - href: OpenTK.html - name: OpenTK.Core.Platform - nameWithType: OpenTK.Core.Platform - fullName: OpenTK.Core.Platform - spec.csharp: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform - name: Platform - href: OpenTK.Core.Platform.html - spec.vb: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform - name: Platform - href: OpenTK.Core.Platform.html -- uid: OpenTK.Core.Platform.ContextPixelFormat - commentId: T:OpenTK.Core.Platform.ContextPixelFormat - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.ContextPixelFormat.html - name: ContextPixelFormat - nameWithType: ContextPixelFormat - fullName: OpenTK.Core.Platform.ContextPixelFormat diff --git a/api/OpenTK.Core.Platform.ContextReleaseBehaviour.yml b/api/OpenTK.Core.Platform.ContextReleaseBehaviour.yml deleted file mode 100644 index 8311fc1e..00000000 --- a/api/OpenTK.Core.Platform.ContextReleaseBehaviour.yml +++ /dev/null @@ -1,126 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: OpenTK.Core.Platform.ContextReleaseBehaviour - commentId: T:OpenTK.Core.Platform.ContextReleaseBehaviour - id: ContextReleaseBehaviour - parent: OpenTK.Core.Platform - children: - - OpenTK.Core.Platform.ContextReleaseBehaviour.Flush - - OpenTK.Core.Platform.ContextReleaseBehaviour.None - langs: - - csharp - - vb - name: ContextReleaseBehaviour - nameWithType: ContextReleaseBehaviour - fullName: OpenTK.Core.Platform.ContextReleaseBehaviour - type: Enum - source: - remote: - path: src/OpenTK.Core/Platform/ContextSettings.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: ContextReleaseBehaviour - path: opentk/src/OpenTK.Core/Platform/ContextSettings.cs - startLine: 575 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: See KHR_context_flush_control extension for details. - example: [] - syntax: - content: public enum ContextReleaseBehaviour - content.vb: Public Enum ContextReleaseBehaviour -- uid: OpenTK.Core.Platform.ContextReleaseBehaviour.None - commentId: F:OpenTK.Core.Platform.ContextReleaseBehaviour.None - id: None - parent: OpenTK.Core.Platform.ContextReleaseBehaviour - langs: - - csharp - - vb - name: None - nameWithType: ContextReleaseBehaviour.None - fullName: OpenTK.Core.Platform.ContextReleaseBehaviour.None - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/ContextSettings.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: None - path: opentk/src/OpenTK.Core/Platform/ContextSettings.cs - startLine: 580 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: No flush is done when the context is released (made not current). - example: [] - syntax: - content: None = 0 - return: - type: OpenTK.Core.Platform.ContextReleaseBehaviour -- uid: OpenTK.Core.Platform.ContextReleaseBehaviour.Flush - commentId: F:OpenTK.Core.Platform.ContextReleaseBehaviour.Flush - id: Flush - parent: OpenTK.Core.Platform.ContextReleaseBehaviour - langs: - - csharp - - vb - name: Flush - nameWithType: ContextReleaseBehaviour.Flush - fullName: OpenTK.Core.Platform.ContextReleaseBehaviour.Flush - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/ContextSettings.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Flush - path: opentk/src/OpenTK.Core/Platform/ContextSettings.cs - startLine: 585 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: A flush is done when the context is released (made not current). - example: [] - syntax: - content: Flush = 1 - return: - type: OpenTK.Core.Platform.ContextReleaseBehaviour -references: -- uid: OpenTK.Core.Platform - commentId: N:OpenTK.Core.Platform - href: OpenTK.html - name: OpenTK.Core.Platform - nameWithType: OpenTK.Core.Platform - fullName: OpenTK.Core.Platform - spec.csharp: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform - name: Platform - href: OpenTK.Core.Platform.html - spec.vb: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform - name: Platform - href: OpenTK.Core.Platform.html -- uid: OpenTK.Core.Platform.ContextReleaseBehaviour - commentId: T:OpenTK.Core.Platform.ContextReleaseBehaviour - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.ContextReleaseBehaviour.html - name: ContextReleaseBehaviour - nameWithType: ContextReleaseBehaviour - fullName: OpenTK.Core.Platform.ContextReleaseBehaviour diff --git a/api/OpenTK.Core.Platform.ContextResetNotificationStrategy.yml b/api/OpenTK.Core.Platform.ContextResetNotificationStrategy.yml deleted file mode 100644 index d1bb6315..00000000 --- a/api/OpenTK.Core.Platform.ContextResetNotificationStrategy.yml +++ /dev/null @@ -1,122 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: OpenTK.Core.Platform.ContextResetNotificationStrategy - commentId: T:OpenTK.Core.Platform.ContextResetNotificationStrategy - id: ContextResetNotificationStrategy - parent: OpenTK.Core.Platform - children: - - OpenTK.Core.Platform.ContextResetNotificationStrategy.LoseContextOnReset - - OpenTK.Core.Platform.ContextResetNotificationStrategy.NoResetNotification - langs: - - csharp - - vb - name: ContextResetNotificationStrategy - nameWithType: ContextResetNotificationStrategy - fullName: OpenTK.Core.Platform.ContextResetNotificationStrategy - type: Enum - source: - remote: - path: src/OpenTK.Core/Platform/ContextSettings.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: ContextResetNotificationStrategy - path: opentk/src/OpenTK.Core/Platform/ContextSettings.cs - startLine: 566 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: See GL_ARB_robustness extension for details. - example: [] - syntax: - content: public enum ContextResetNotificationStrategy - content.vb: Public Enum ContextResetNotificationStrategy -- uid: OpenTK.Core.Platform.ContextResetNotificationStrategy.NoResetNotification - commentId: F:OpenTK.Core.Platform.ContextResetNotificationStrategy.NoResetNotification - id: NoResetNotification - parent: OpenTK.Core.Platform.ContextResetNotificationStrategy - langs: - - csharp - - vb - name: NoResetNotification - nameWithType: ContextResetNotificationStrategy.NoResetNotification - fullName: OpenTK.Core.Platform.ContextResetNotificationStrategy.NoResetNotification - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/ContextSettings.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: NoResetNotification - path: opentk/src/OpenTK.Core/Platform/ContextSettings.cs - startLine: 568 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: NoResetNotification = 0 - return: - type: OpenTK.Core.Platform.ContextResetNotificationStrategy -- uid: OpenTK.Core.Platform.ContextResetNotificationStrategy.LoseContextOnReset - commentId: F:OpenTK.Core.Platform.ContextResetNotificationStrategy.LoseContextOnReset - id: LoseContextOnReset - parent: OpenTK.Core.Platform.ContextResetNotificationStrategy - langs: - - csharp - - vb - name: LoseContextOnReset - nameWithType: ContextResetNotificationStrategy.LoseContextOnReset - fullName: OpenTK.Core.Platform.ContextResetNotificationStrategy.LoseContextOnReset - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/ContextSettings.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: LoseContextOnReset - path: opentk/src/OpenTK.Core/Platform/ContextSettings.cs - startLine: 569 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: LoseContextOnReset = 1 - return: - type: OpenTK.Core.Platform.ContextResetNotificationStrategy -references: -- uid: OpenTK.Core.Platform - commentId: N:OpenTK.Core.Platform - href: OpenTK.html - name: OpenTK.Core.Platform - nameWithType: OpenTK.Core.Platform - fullName: OpenTK.Core.Platform - spec.csharp: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform - name: Platform - href: OpenTK.Core.Platform.html - spec.vb: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform - name: Platform - href: OpenTK.Core.Platform.html -- uid: OpenTK.Core.Platform.ContextResetNotificationStrategy - commentId: T:OpenTK.Core.Platform.ContextResetNotificationStrategy - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.ContextResetNotificationStrategy.html - name: ContextResetNotificationStrategy - nameWithType: ContextResetNotificationStrategy - fullName: OpenTK.Core.Platform.ContextResetNotificationStrategy diff --git a/api/OpenTK.Core.Platform.ContextSettings.yml b/api/OpenTK.Core.Platform.ContextSettings.yml deleted file mode 100644 index 11bda74a..00000000 --- a/api/OpenTK.Core.Platform.ContextSettings.yml +++ /dev/null @@ -1,724 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: OpenTK.Core.Platform.ContextSettings - commentId: T:OpenTK.Core.Platform.ContextSettings - id: ContextSettings - parent: OpenTK.Core.Platform - children: - - OpenTK.Core.Platform.ContextSettings.AlphaBits - - OpenTK.Core.Platform.ContextSettings.BlueBits - - OpenTK.Core.Platform.ContextSettings.DepthBits - - OpenTK.Core.Platform.ContextSettings.DoubleBuffer - - OpenTK.Core.Platform.ContextSettings.GreenBits - - OpenTK.Core.Platform.ContextSettings.Multisample - - OpenTK.Core.Platform.ContextSettings.RedBits - - OpenTK.Core.Platform.ContextSettings.Samples - - OpenTK.Core.Platform.ContextSettings.StencilBits - - OpenTK.Core.Platform.ContextSettings.sRGBFramebuffer - langs: - - csharp - - vb - name: ContextSettings - nameWithType: ContextSettings - fullName: OpenTK.Core.Platform.ContextSettings - type: Class - source: - remote: - path: src/OpenTK.Core/Platform/ContextSettings.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: ContextSettings - path: opentk/src/OpenTK.Core/Platform/ContextSettings.cs - startLine: 13 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Settings for creating OpenGL contexts. - example: [] - syntax: - content: public class ContextSettings - content.vb: Public Class ContextSettings - inheritance: - - System.Object - inheritedMembers: - - System.Object.Equals(System.Object) - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetHashCode - - System.Object.GetType - - System.Object.MemberwiseClone - - System.Object.ReferenceEquals(System.Object,System.Object) - - System.Object.ToString -- uid: OpenTK.Core.Platform.ContextSettings.DoubleBuffer - commentId: P:OpenTK.Core.Platform.ContextSettings.DoubleBuffer - id: DoubleBuffer - parent: OpenTK.Core.Platform.ContextSettings - langs: - - csharp - - vb - name: DoubleBuffer - nameWithType: ContextSettings.DoubleBuffer - fullName: OpenTK.Core.Platform.ContextSettings.DoubleBuffer - type: Property - source: - remote: - path: src/OpenTK.Core/Platform/ContextSettings.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: DoubleBuffer - path: opentk/src/OpenTK.Core/Platform/ContextSettings.cs - startLine: 18 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: If double buffering should be enabled. - example: [] - syntax: - content: public bool DoubleBuffer { get; set; } - parameters: [] - return: - type: System.Boolean - content.vb: Public Property DoubleBuffer As Boolean - overload: OpenTK.Core.Platform.ContextSettings.DoubleBuffer* -- uid: OpenTK.Core.Platform.ContextSettings.sRGBFramebuffer - commentId: P:OpenTK.Core.Platform.ContextSettings.sRGBFramebuffer - id: sRGBFramebuffer - parent: OpenTK.Core.Platform.ContextSettings - langs: - - csharp - - vb - name: sRGBFramebuffer - nameWithType: ContextSettings.sRGBFramebuffer - fullName: OpenTK.Core.Platform.ContextSettings.sRGBFramebuffer - type: Property - source: - remote: - path: src/OpenTK.Core/Platform/ContextSettings.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: sRGBFramebuffer - path: opentk/src/OpenTK.Core/Platform/ContextSettings.cs - startLine: 23 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: If sRGB default framebuffer should be enabled. - example: [] - syntax: - content: public bool sRGBFramebuffer { get; set; } - parameters: [] - return: - type: System.Boolean - content.vb: Public Property sRGBFramebuffer As Boolean - overload: OpenTK.Core.Platform.ContextSettings.sRGBFramebuffer* -- uid: OpenTK.Core.Platform.ContextSettings.Multisample - commentId: P:OpenTK.Core.Platform.ContextSettings.Multisample - id: Multisample - parent: OpenTK.Core.Platform.ContextSettings - langs: - - csharp - - vb - name: Multisample - nameWithType: ContextSettings.Multisample - fullName: OpenTK.Core.Platform.ContextSettings.Multisample - type: Property - source: - remote: - path: src/OpenTK.Core/Platform/ContextSettings.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Multisample - path: opentk/src/OpenTK.Core/Platform/ContextSettings.cs - startLine: 28 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: If the backbuffer should support multisample. - example: [] - syntax: - content: public bool Multisample { get; set; } - parameters: [] - return: - type: System.Boolean - content.vb: Public Property Multisample As Boolean - overload: OpenTK.Core.Platform.ContextSettings.Multisample* -- uid: OpenTK.Core.Platform.ContextSettings.Samples - commentId: P:OpenTK.Core.Platform.ContextSettings.Samples - id: Samples - parent: OpenTK.Core.Platform.ContextSettings - langs: - - csharp - - vb - name: Samples - nameWithType: ContextSettings.Samples - fullName: OpenTK.Core.Platform.ContextSettings.Samples - type: Property - source: - remote: - path: src/OpenTK.Core/Platform/ContextSettings.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Samples - path: opentk/src/OpenTK.Core/Platform/ContextSettings.cs - startLine: 33 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: How many samples the backbuffer should have if it supports multisampling. - example: [] - syntax: - content: public int Samples { get; set; } - parameters: [] - return: - type: System.Int32 - content.vb: Public Property Samples As Integer - overload: OpenTK.Core.Platform.ContextSettings.Samples* -- uid: OpenTK.Core.Platform.ContextSettings.RedBits - commentId: P:OpenTK.Core.Platform.ContextSettings.RedBits - id: RedBits - parent: OpenTK.Core.Platform.ContextSettings - langs: - - csharp - - vb - name: RedBits - nameWithType: ContextSettings.RedBits - fullName: OpenTK.Core.Platform.ContextSettings.RedBits - type: Property - source: - remote: - path: src/OpenTK.Core/Platform/ContextSettings.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: RedBits - path: opentk/src/OpenTK.Core/Platform/ContextSettings.cs - startLine: 38 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: The number of bits to represent the red channel. - example: [] - syntax: - content: public int RedBits { get; set; } - parameters: [] - return: - type: System.Int32 - content.vb: Public Property RedBits As Integer - overload: OpenTK.Core.Platform.ContextSettings.RedBits* -- uid: OpenTK.Core.Platform.ContextSettings.GreenBits - commentId: P:OpenTK.Core.Platform.ContextSettings.GreenBits - id: GreenBits - parent: OpenTK.Core.Platform.ContextSettings - langs: - - csharp - - vb - name: GreenBits - nameWithType: ContextSettings.GreenBits - fullName: OpenTK.Core.Platform.ContextSettings.GreenBits - type: Property - source: - remote: - path: src/OpenTK.Core/Platform/ContextSettings.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: GreenBits - path: opentk/src/OpenTK.Core/Platform/ContextSettings.cs - startLine: 43 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: The number of bits to represent the green channel. - example: [] - syntax: - content: public int GreenBits { get; set; } - parameters: [] - return: - type: System.Int32 - content.vb: Public Property GreenBits As Integer - overload: OpenTK.Core.Platform.ContextSettings.GreenBits* -- uid: OpenTK.Core.Platform.ContextSettings.BlueBits - commentId: P:OpenTK.Core.Platform.ContextSettings.BlueBits - id: BlueBits - parent: OpenTK.Core.Platform.ContextSettings - langs: - - csharp - - vb - name: BlueBits - nameWithType: ContextSettings.BlueBits - fullName: OpenTK.Core.Platform.ContextSettings.BlueBits - type: Property - source: - remote: - path: src/OpenTK.Core/Platform/ContextSettings.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: BlueBits - path: opentk/src/OpenTK.Core/Platform/ContextSettings.cs - startLine: 48 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: The number of bits to represent the blue channel. - example: [] - syntax: - content: public int BlueBits { get; set; } - parameters: [] - return: - type: System.Int32 - content.vb: Public Property BlueBits As Integer - overload: OpenTK.Core.Platform.ContextSettings.BlueBits* -- uid: OpenTK.Core.Platform.ContextSettings.AlphaBits - commentId: P:OpenTK.Core.Platform.ContextSettings.AlphaBits - id: AlphaBits - parent: OpenTK.Core.Platform.ContextSettings - langs: - - csharp - - vb - name: AlphaBits - nameWithType: ContextSettings.AlphaBits - fullName: OpenTK.Core.Platform.ContextSettings.AlphaBits - type: Property - source: - remote: - path: src/OpenTK.Core/Platform/ContextSettings.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: AlphaBits - path: opentk/src/OpenTK.Core/Platform/ContextSettings.cs - startLine: 53 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: The number of bits to represent the alpha channel. - example: [] - syntax: - content: public int AlphaBits { get; set; } - parameters: [] - return: - type: System.Int32 - content.vb: Public Property AlphaBits As Integer - overload: OpenTK.Core.Platform.ContextSettings.AlphaBits* -- uid: OpenTK.Core.Platform.ContextSettings.DepthBits - commentId: P:OpenTK.Core.Platform.ContextSettings.DepthBits - id: DepthBits - parent: OpenTK.Core.Platform.ContextSettings - langs: - - csharp - - vb - name: DepthBits - nameWithType: ContextSettings.DepthBits - fullName: OpenTK.Core.Platform.ContextSettings.DepthBits - type: Property - source: - remote: - path: src/OpenTK.Core/Platform/ContextSettings.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: DepthBits - path: opentk/src/OpenTK.Core/Platform/ContextSettings.cs - startLine: 58 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: The number of bits to represent the depth backbuffer. - example: [] - syntax: - content: public ContextDepthBits DepthBits { get; set; } - parameters: [] - return: - type: OpenTK.Core.Platform.ContextDepthBits - content.vb: Public Property DepthBits As ContextDepthBits - overload: OpenTK.Core.Platform.ContextSettings.DepthBits* -- uid: OpenTK.Core.Platform.ContextSettings.StencilBits - commentId: P:OpenTK.Core.Platform.ContextSettings.StencilBits - id: StencilBits - parent: OpenTK.Core.Platform.ContextSettings - langs: - - csharp - - vb - name: StencilBits - nameWithType: ContextSettings.StencilBits - fullName: OpenTK.Core.Platform.ContextSettings.StencilBits - type: Property - source: - remote: - path: src/OpenTK.Core/Platform/ContextSettings.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: StencilBits - path: opentk/src/OpenTK.Core/Platform/ContextSettings.cs - startLine: 63 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: The number of bits to represent the stencil backbuffer. - example: [] - syntax: - content: public ContextStencilBits StencilBits { get; set; } - parameters: [] - return: - type: OpenTK.Core.Platform.ContextStencilBits - content.vb: Public Property StencilBits As ContextStencilBits - overload: OpenTK.Core.Platform.ContextSettings.StencilBits* -references: -- uid: OpenTK.Core.Platform - commentId: N:OpenTK.Core.Platform - href: OpenTK.html - name: OpenTK.Core.Platform - nameWithType: OpenTK.Core.Platform - fullName: OpenTK.Core.Platform - spec.csharp: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform - name: Platform - href: OpenTK.Core.Platform.html - spec.vb: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform - name: Platform - href: OpenTK.Core.Platform.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: System.Object.Equals(System.Object) - commentId: M:System.Object.Equals(System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - name: Equals(object) - nameWithType: object.Equals(object) - fullName: object.Equals(object) - nameWithType.vb: Object.Equals(Object) - fullName.vb: Object.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetHashCode - commentId: M:System.Object.GetHashCode - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - name: GetHashCode() - nameWithType: object.GetHashCode() - fullName: object.GetHashCode() - nameWithType.vb: Object.GetHashCode() - fullName.vb: Object.GetHashCode() - spec.csharp: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.MemberwiseClone - commentId: M:System.Object.MemberwiseClone - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - name: MemberwiseClone() - nameWithType: object.MemberwiseClone() - fullName: object.MemberwiseClone() - nameWithType.vb: Object.MemberwiseClone() - fullName.vb: Object.MemberwiseClone() - spec.csharp: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) - spec.vb: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.ToString - commentId: M:System.Object.ToString - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - name: ToString() - nameWithType: object.ToString() - fullName: object.ToString() - nameWithType.vb: Object.ToString() - fullName.vb: Object.ToString() - spec.csharp: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) - spec.vb: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: OpenTK.Core.Platform.ContextSettings.DoubleBuffer* - commentId: Overload:OpenTK.Core.Platform.ContextSettings.DoubleBuffer - href: OpenTK.Core.Platform.ContextSettings.html#OpenTK_Core_Platform_ContextSettings_DoubleBuffer - name: DoubleBuffer - nameWithType: ContextSettings.DoubleBuffer - fullName: OpenTK.Core.Platform.ContextSettings.DoubleBuffer -- uid: System.Boolean - commentId: T:System.Boolean - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - name: bool - nameWithType: bool - fullName: bool - nameWithType.vb: Boolean - fullName.vb: Boolean - name.vb: Boolean -- uid: OpenTK.Core.Platform.ContextSettings.sRGBFramebuffer* - commentId: Overload:OpenTK.Core.Platform.ContextSettings.sRGBFramebuffer - href: OpenTK.Core.Platform.ContextSettings.html#OpenTK_Core_Platform_ContextSettings_sRGBFramebuffer - name: sRGBFramebuffer - nameWithType: ContextSettings.sRGBFramebuffer - fullName: OpenTK.Core.Platform.ContextSettings.sRGBFramebuffer -- uid: OpenTK.Core.Platform.ContextSettings.Multisample* - commentId: Overload:OpenTK.Core.Platform.ContextSettings.Multisample - href: OpenTK.Core.Platform.ContextSettings.html#OpenTK_Core_Platform_ContextSettings_Multisample - name: Multisample - nameWithType: ContextSettings.Multisample - fullName: OpenTK.Core.Platform.ContextSettings.Multisample -- uid: OpenTK.Core.Platform.ContextSettings.Samples* - commentId: Overload:OpenTK.Core.Platform.ContextSettings.Samples - href: OpenTK.Core.Platform.ContextSettings.html#OpenTK_Core_Platform_ContextSettings_Samples - name: Samples - nameWithType: ContextSettings.Samples - fullName: OpenTK.Core.Platform.ContextSettings.Samples -- uid: System.Int32 - commentId: T:System.Int32 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - name: int - nameWithType: int - fullName: int - nameWithType.vb: Integer - fullName.vb: Integer - name.vb: Integer -- uid: OpenTK.Core.Platform.ContextSettings.RedBits* - commentId: Overload:OpenTK.Core.Platform.ContextSettings.RedBits - href: OpenTK.Core.Platform.ContextSettings.html#OpenTK_Core_Platform_ContextSettings_RedBits - name: RedBits - nameWithType: ContextSettings.RedBits - fullName: OpenTK.Core.Platform.ContextSettings.RedBits -- uid: OpenTK.Core.Platform.ContextSettings.GreenBits* - commentId: Overload:OpenTK.Core.Platform.ContextSettings.GreenBits - href: OpenTK.Core.Platform.ContextSettings.html#OpenTK_Core_Platform_ContextSettings_GreenBits - name: GreenBits - nameWithType: ContextSettings.GreenBits - fullName: OpenTK.Core.Platform.ContextSettings.GreenBits -- uid: OpenTK.Core.Platform.ContextSettings.BlueBits* - commentId: Overload:OpenTK.Core.Platform.ContextSettings.BlueBits - href: OpenTK.Core.Platform.ContextSettings.html#OpenTK_Core_Platform_ContextSettings_BlueBits - name: BlueBits - nameWithType: ContextSettings.BlueBits - fullName: OpenTK.Core.Platform.ContextSettings.BlueBits -- uid: OpenTK.Core.Platform.ContextSettings.AlphaBits* - commentId: Overload:OpenTK.Core.Platform.ContextSettings.AlphaBits - href: OpenTK.Core.Platform.ContextSettings.html#OpenTK_Core_Platform_ContextSettings_AlphaBits - name: AlphaBits - nameWithType: ContextSettings.AlphaBits - fullName: OpenTK.Core.Platform.ContextSettings.AlphaBits -- uid: OpenTK.Core.Platform.ContextSettings.DepthBits* - commentId: Overload:OpenTK.Core.Platform.ContextSettings.DepthBits - href: OpenTK.Core.Platform.ContextSettings.html#OpenTK_Core_Platform_ContextSettings_DepthBits - name: DepthBits - nameWithType: ContextSettings.DepthBits - fullName: OpenTK.Core.Platform.ContextSettings.DepthBits -- uid: OpenTK.Core.Platform.ContextDepthBits - commentId: T:OpenTK.Core.Platform.ContextDepthBits - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.ContextDepthBits.html - name: ContextDepthBits - nameWithType: ContextDepthBits - fullName: OpenTK.Core.Platform.ContextDepthBits -- uid: OpenTK.Core.Platform.ContextSettings.StencilBits* - commentId: Overload:OpenTK.Core.Platform.ContextSettings.StencilBits - href: OpenTK.Core.Platform.ContextSettings.html#OpenTK_Core_Platform_ContextSettings_StencilBits - name: StencilBits - nameWithType: ContextSettings.StencilBits - fullName: OpenTK.Core.Platform.ContextSettings.StencilBits -- uid: OpenTK.Core.Platform.ContextStencilBits - commentId: T:OpenTK.Core.Platform.ContextStencilBits - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.ContextStencilBits.html - name: ContextStencilBits - nameWithType: ContextStencilBits - fullName: OpenTK.Core.Platform.ContextStencilBits diff --git a/api/OpenTK.Core.Platform.ContextStencilBits.yml b/api/OpenTK.Core.Platform.ContextStencilBits.yml deleted file mode 100644 index 42c2f841..00000000 --- a/api/OpenTK.Core.Platform.ContextStencilBits.yml +++ /dev/null @@ -1,155 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: OpenTK.Core.Platform.ContextStencilBits - commentId: T:OpenTK.Core.Platform.ContextStencilBits - id: ContextStencilBits - parent: OpenTK.Core.Platform - children: - - OpenTK.Core.Platform.ContextStencilBits.None - - OpenTK.Core.Platform.ContextStencilBits.Stencil1 - - OpenTK.Core.Platform.ContextStencilBits.Stencil8 - langs: - - csharp - - vb - name: ContextStencilBits - nameWithType: ContextStencilBits - fullName: OpenTK.Core.Platform.ContextStencilBits - type: Enum - source: - remote: - path: src/OpenTK.Core/Platform/ContextSettings.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: ContextStencilBits - path: opentk/src/OpenTK.Core/Platform/ContextSettings.cs - startLine: 545 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Represents the number of depth bits of the context stencil backbuffer. - example: [] - syntax: - content: public enum ContextStencilBits - content.vb: Public Enum ContextStencilBits -- uid: OpenTK.Core.Platform.ContextStencilBits.None - commentId: F:OpenTK.Core.Platform.ContextStencilBits.None - id: None - parent: OpenTK.Core.Platform.ContextStencilBits - langs: - - csharp - - vb - name: None - nameWithType: ContextStencilBits.None - fullName: OpenTK.Core.Platform.ContextStencilBits.None - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/ContextSettings.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: None - path: opentk/src/OpenTK.Core/Platform/ContextSettings.cs - startLine: 550 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: No stencil bits needed. - example: [] - syntax: - content: None = 0 - return: - type: OpenTK.Core.Platform.ContextStencilBits -- uid: OpenTK.Core.Platform.ContextStencilBits.Stencil1 - commentId: F:OpenTK.Core.Platform.ContextStencilBits.Stencil1 - id: Stencil1 - parent: OpenTK.Core.Platform.ContextStencilBits - langs: - - csharp - - vb - name: Stencil1 - nameWithType: ContextStencilBits.Stencil1 - fullName: OpenTK.Core.Platform.ContextStencilBits.Stencil1 - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/ContextSettings.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Stencil1 - path: opentk/src/OpenTK.Core/Platform/ContextSettings.cs - startLine: 555 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: 1-bit stencil buffer. - example: [] - syntax: - content: Stencil1 = 1 - return: - type: OpenTK.Core.Platform.ContextStencilBits -- uid: OpenTK.Core.Platform.ContextStencilBits.Stencil8 - commentId: F:OpenTK.Core.Platform.ContextStencilBits.Stencil8 - id: Stencil8 - parent: OpenTK.Core.Platform.ContextStencilBits - langs: - - csharp - - vb - name: Stencil8 - nameWithType: ContextStencilBits.Stencil8 - fullName: OpenTK.Core.Platform.ContextStencilBits.Stencil8 - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/ContextSettings.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Stencil8 - path: opentk/src/OpenTK.Core/Platform/ContextSettings.cs - startLine: 560 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: 8-bit stencil buffer. - example: [] - syntax: - content: Stencil8 = 8 - return: - type: OpenTK.Core.Platform.ContextStencilBits -references: -- uid: OpenTK.Core.Platform - commentId: N:OpenTK.Core.Platform - href: OpenTK.html - name: OpenTK.Core.Platform - nameWithType: OpenTK.Core.Platform - fullName: OpenTK.Core.Platform - spec.csharp: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform - name: Platform - href: OpenTK.Core.Platform.html - spec.vb: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform - name: Platform - href: OpenTK.Core.Platform.html -- uid: OpenTK.Core.Platform.ContextStencilBits - commentId: T:OpenTK.Core.Platform.ContextStencilBits - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.ContextStencilBits.html - name: ContextStencilBits - nameWithType: ContextStencilBits - fullName: OpenTK.Core.Platform.ContextStencilBits diff --git a/api/OpenTK.Core.Platform.ContextSwapMethod.yml b/api/OpenTK.Core.Platform.ContextSwapMethod.yml deleted file mode 100644 index 5e5bd57d..00000000 --- a/api/OpenTK.Core.Platform.ContextSwapMethod.yml +++ /dev/null @@ -1,158 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: OpenTK.Core.Platform.ContextSwapMethod - commentId: T:OpenTK.Core.Platform.ContextSwapMethod - id: ContextSwapMethod - parent: OpenTK.Core.Platform - children: - - OpenTK.Core.Platform.ContextSwapMethod.Copy - - OpenTK.Core.Platform.ContextSwapMethod.Exchange - - OpenTK.Core.Platform.ContextSwapMethod.Undefined - langs: - - csharp - - vb - name: ContextSwapMethod - nameWithType: ContextSwapMethod - fullName: OpenTK.Core.Platform.ContextSwapMethod - type: Enum - source: - remote: - path: src/OpenTK.Core/Platform/ContextSettings.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: ContextSwapMethod - path: opentk/src/OpenTK.Core/Platform/ContextSettings.cs - startLine: 495 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Defines differnet semantics for what happens to the backbuffer after a swap. - example: [] - syntax: - content: public enum ContextSwapMethod - content.vb: Public Enum ContextSwapMethod -- uid: OpenTK.Core.Platform.ContextSwapMethod.Undefined - commentId: F:OpenTK.Core.Platform.ContextSwapMethod.Undefined - id: Undefined - parent: OpenTK.Core.Platform.ContextSwapMethod - langs: - - csharp - - vb - name: Undefined - nameWithType: ContextSwapMethod.Undefined - fullName: OpenTK.Core.Platform.ContextSwapMethod.Undefined - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/ContextSettings.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Undefined - path: opentk/src/OpenTK.Core/Platform/ContextSettings.cs - startLine: 500 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: The contents of the backbuffer after a swap is undefined. - example: [] - syntax: - content: Undefined = 0 - return: - type: OpenTK.Core.Platform.ContextSwapMethod -- uid: OpenTK.Core.Platform.ContextSwapMethod.Exchange - commentId: F:OpenTK.Core.Platform.ContextSwapMethod.Exchange - id: Exchange - parent: OpenTK.Core.Platform.ContextSwapMethod - langs: - - csharp - - vb - name: Exchange - nameWithType: ContextSwapMethod.Exchange - fullName: OpenTK.Core.Platform.ContextSwapMethod.Exchange - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/ContextSettings.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Exchange - path: opentk/src/OpenTK.Core/Platform/ContextSettings.cs - startLine: 505 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: The contents of the frontbuffer and backbuffer are exchanged after a swap. - example: [] - syntax: - content: Exchange = 1 - return: - type: OpenTK.Core.Platform.ContextSwapMethod -- uid: OpenTK.Core.Platform.ContextSwapMethod.Copy - commentId: F:OpenTK.Core.Platform.ContextSwapMethod.Copy - id: Copy - parent: OpenTK.Core.Platform.ContextSwapMethod - langs: - - csharp - - vb - name: Copy - nameWithType: ContextSwapMethod.Copy - fullName: OpenTK.Core.Platform.ContextSwapMethod.Copy - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/ContextSettings.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Copy - path: opentk/src/OpenTK.Core/Platform/ContextSettings.cs - startLine: 511 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: >- - The contents of the backbuffer are copied to the frontbuffer during a swap. - - Leaving the contents of the backbuffer unchanged. - example: [] - syntax: - content: Copy = 2 - return: - type: OpenTK.Core.Platform.ContextSwapMethod -references: -- uid: OpenTK.Core.Platform - commentId: N:OpenTK.Core.Platform - href: OpenTK.html - name: OpenTK.Core.Platform - nameWithType: OpenTK.Core.Platform - fullName: OpenTK.Core.Platform - spec.csharp: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform - name: Platform - href: OpenTK.Core.Platform.html - spec.vb: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform - name: Platform - href: OpenTK.Core.Platform.html -- uid: OpenTK.Core.Platform.ContextSwapMethod - commentId: T:OpenTK.Core.Platform.ContextSwapMethod - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.ContextSwapMethod.html - name: ContextSwapMethod - nameWithType: ContextSwapMethod - fullName: OpenTK.Core.Platform.ContextSwapMethod diff --git a/api/OpenTK.Core.Platform.ContextValues.yml b/api/OpenTK.Core.Platform.ContextValues.yml deleted file mode 100644 index 234e89b5..00000000 --- a/api/OpenTK.Core.Platform.ContextValues.yml +++ /dev/null @@ -1,1986 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: OpenTK.Core.Platform.ContextValues - commentId: T:OpenTK.Core.Platform.ContextValues - id: ContextValues - parent: OpenTK.Core.Platform - children: - - OpenTK.Core.Platform.ContextValues.#ctor(System.UInt64,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Boolean,System.Boolean,OpenTK.Core.Platform.ContextPixelFormat,OpenTK.Core.Platform.ContextSwapMethod,System.Int32) - - OpenTK.Core.Platform.ContextValues.AlphaBits - - OpenTK.Core.Platform.ContextValues.BlueBits - - OpenTK.Core.Platform.ContextValues.DefaultValuesSelector(System.Collections.Generic.IReadOnlyList{OpenTK.Core.Platform.ContextValues},OpenTK.Core.Platform.ContextValues,OpenTK.Core.Utility.ILogger) - - OpenTK.Core.Platform.ContextValues.DepthBits - - OpenTK.Core.Platform.ContextValues.DoubleBuffered - - OpenTK.Core.Platform.ContextValues.Equals(OpenTK.Core.Platform.ContextValues) - - OpenTK.Core.Platform.ContextValues.Equals(System.Object) - - OpenTK.Core.Platform.ContextValues.GetHashCode - - OpenTK.Core.Platform.ContextValues.GreenBits - - OpenTK.Core.Platform.ContextValues.HasEqualColorBits(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues) - - OpenTK.Core.Platform.ContextValues.HasEqualDepthBits(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues) - - OpenTK.Core.Platform.ContextValues.HasEqualDoubleBuffer(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues) - - OpenTK.Core.Platform.ContextValues.HasEqualMSAA(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues) - - OpenTK.Core.Platform.ContextValues.HasEqualPixelFormat(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues) - - OpenTK.Core.Platform.ContextValues.HasEqualSRGB(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues) - - OpenTK.Core.Platform.ContextValues.HasEqualStencilBits(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues) - - OpenTK.Core.Platform.ContextValues.HasEqualSwapMethod(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues) - - OpenTK.Core.Platform.ContextValues.HasGreaterOrEqualColorBits(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues) - - OpenTK.Core.Platform.ContextValues.HasGreaterOrEqualDepthBits(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues) - - OpenTK.Core.Platform.ContextValues.HasGreaterOrEqualStencilBits(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues) - - OpenTK.Core.Platform.ContextValues.HasLessOrEqualColorBits(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues) - - OpenTK.Core.Platform.ContextValues.HasLessOrEqualDepthBits(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues) - - OpenTK.Core.Platform.ContextValues.HasLessOrEqualStencilBits(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues) - - OpenTK.Core.Platform.ContextValues.ID - - OpenTK.Core.Platform.ContextValues.IsEqualExcludingID(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues) - - OpenTK.Core.Platform.ContextValues.PixelFormat - - OpenTK.Core.Platform.ContextValues.RedBits - - OpenTK.Core.Platform.ContextValues.SRGBFramebuffer - - OpenTK.Core.Platform.ContextValues.Samples - - OpenTK.Core.Platform.ContextValues.StencilBits - - OpenTK.Core.Platform.ContextValues.SwapMethod - - OpenTK.Core.Platform.ContextValues.ToString - - OpenTK.Core.Platform.ContextValues.op_Equality(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues) - - OpenTK.Core.Platform.ContextValues.op_Inequality(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues) - langs: - - csharp - - vb - name: ContextValues - nameWithType: ContextValues - fullName: OpenTK.Core.Platform.ContextValues - type: Struct - source: - remote: - path: src/OpenTK.Core/Platform/ContextSettings.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: ContextValues - path: opentk/src/OpenTK.Core/Platform/ContextSettings.cs - startLine: 18 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: 'public struct ContextValues : IEquatable' - content.vb: Public Structure ContextValues Implements IEquatable(Of ContextValues) - implements: - - System.IEquatable{OpenTK.Core.Platform.ContextValues} - inheritedMembers: - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.ReferenceEquals(System.Object,System.Object) -- uid: OpenTK.Core.Platform.ContextValues.ID - commentId: F:OpenTK.Core.Platform.ContextValues.ID - id: ID - parent: OpenTK.Core.Platform.ContextValues - langs: - - csharp - - vb - name: ID - nameWithType: ContextValues.ID - fullName: OpenTK.Core.Platform.ContextValues.ID - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/ContextSettings.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: ID - path: opentk/src/OpenTK.Core/Platform/ContextSettings.cs - startLine: 20 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: public ulong ID - return: - type: System.UInt64 - content.vb: Public ID As ULong -- uid: OpenTK.Core.Platform.ContextValues.RedBits - commentId: F:OpenTK.Core.Platform.ContextValues.RedBits - id: RedBits - parent: OpenTK.Core.Platform.ContextValues - langs: - - csharp - - vb - name: RedBits - nameWithType: ContextValues.RedBits - fullName: OpenTK.Core.Platform.ContextValues.RedBits - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/ContextSettings.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: RedBits - path: opentk/src/OpenTK.Core/Platform/ContextSettings.cs - startLine: 22 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: public int RedBits - return: - type: System.Int32 - content.vb: Public RedBits As Integer -- uid: OpenTK.Core.Platform.ContextValues.GreenBits - commentId: F:OpenTK.Core.Platform.ContextValues.GreenBits - id: GreenBits - parent: OpenTK.Core.Platform.ContextValues - langs: - - csharp - - vb - name: GreenBits - nameWithType: ContextValues.GreenBits - fullName: OpenTK.Core.Platform.ContextValues.GreenBits - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/ContextSettings.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: GreenBits - path: opentk/src/OpenTK.Core/Platform/ContextSettings.cs - startLine: 23 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: public int GreenBits - return: - type: System.Int32 - content.vb: Public GreenBits As Integer -- uid: OpenTK.Core.Platform.ContextValues.BlueBits - commentId: F:OpenTK.Core.Platform.ContextValues.BlueBits - id: BlueBits - parent: OpenTK.Core.Platform.ContextValues - langs: - - csharp - - vb - name: BlueBits - nameWithType: ContextValues.BlueBits - fullName: OpenTK.Core.Platform.ContextValues.BlueBits - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/ContextSettings.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: BlueBits - path: opentk/src/OpenTK.Core/Platform/ContextSettings.cs - startLine: 24 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: public int BlueBits - return: - type: System.Int32 - content.vb: Public BlueBits As Integer -- uid: OpenTK.Core.Platform.ContextValues.AlphaBits - commentId: F:OpenTK.Core.Platform.ContextValues.AlphaBits - id: AlphaBits - parent: OpenTK.Core.Platform.ContextValues - langs: - - csharp - - vb - name: AlphaBits - nameWithType: ContextValues.AlphaBits - fullName: OpenTK.Core.Platform.ContextValues.AlphaBits - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/ContextSettings.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: AlphaBits - path: opentk/src/OpenTK.Core/Platform/ContextSettings.cs - startLine: 25 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: public int AlphaBits - return: - type: System.Int32 - content.vb: Public AlphaBits As Integer -- uid: OpenTK.Core.Platform.ContextValues.DepthBits - commentId: F:OpenTK.Core.Platform.ContextValues.DepthBits - id: DepthBits - parent: OpenTK.Core.Platform.ContextValues - langs: - - csharp - - vb - name: DepthBits - nameWithType: ContextValues.DepthBits - fullName: OpenTK.Core.Platform.ContextValues.DepthBits - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/ContextSettings.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: DepthBits - path: opentk/src/OpenTK.Core/Platform/ContextSettings.cs - startLine: 26 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: public int DepthBits - return: - type: System.Int32 - content.vb: Public DepthBits As Integer -- uid: OpenTK.Core.Platform.ContextValues.StencilBits - commentId: F:OpenTK.Core.Platform.ContextValues.StencilBits - id: StencilBits - parent: OpenTK.Core.Platform.ContextValues - langs: - - csharp - - vb - name: StencilBits - nameWithType: ContextValues.StencilBits - fullName: OpenTK.Core.Platform.ContextValues.StencilBits - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/ContextSettings.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: StencilBits - path: opentk/src/OpenTK.Core/Platform/ContextSettings.cs - startLine: 27 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: public int StencilBits - return: - type: System.Int32 - content.vb: Public StencilBits As Integer -- uid: OpenTK.Core.Platform.ContextValues.DoubleBuffered - commentId: F:OpenTK.Core.Platform.ContextValues.DoubleBuffered - id: DoubleBuffered - parent: OpenTK.Core.Platform.ContextValues - langs: - - csharp - - vb - name: DoubleBuffered - nameWithType: ContextValues.DoubleBuffered - fullName: OpenTK.Core.Platform.ContextValues.DoubleBuffered - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/ContextSettings.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: DoubleBuffered - path: opentk/src/OpenTK.Core/Platform/ContextSettings.cs - startLine: 28 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: public bool DoubleBuffered - return: - type: System.Boolean - content.vb: Public DoubleBuffered As Boolean -- uid: OpenTK.Core.Platform.ContextValues.SRGBFramebuffer - commentId: F:OpenTK.Core.Platform.ContextValues.SRGBFramebuffer - id: SRGBFramebuffer - parent: OpenTK.Core.Platform.ContextValues - langs: - - csharp - - vb - name: SRGBFramebuffer - nameWithType: ContextValues.SRGBFramebuffer - fullName: OpenTK.Core.Platform.ContextValues.SRGBFramebuffer - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/ContextSettings.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: SRGBFramebuffer - path: opentk/src/OpenTK.Core/Platform/ContextSettings.cs - startLine: 29 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: public bool SRGBFramebuffer - return: - type: System.Boolean - content.vb: Public SRGBFramebuffer As Boolean -- uid: OpenTK.Core.Platform.ContextValues.PixelFormat - commentId: F:OpenTK.Core.Platform.ContextValues.PixelFormat - id: PixelFormat - parent: OpenTK.Core.Platform.ContextValues - langs: - - csharp - - vb - name: PixelFormat - nameWithType: ContextValues.PixelFormat - fullName: OpenTK.Core.Platform.ContextValues.PixelFormat - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/ContextSettings.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: PixelFormat - path: opentk/src/OpenTK.Core/Platform/ContextSettings.cs - startLine: 30 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: public ContextPixelFormat PixelFormat - return: - type: OpenTK.Core.Platform.ContextPixelFormat - content.vb: Public PixelFormat As ContextPixelFormat -- uid: OpenTK.Core.Platform.ContextValues.SwapMethod - commentId: F:OpenTK.Core.Platform.ContextValues.SwapMethod - id: SwapMethod - parent: OpenTK.Core.Platform.ContextValues - langs: - - csharp - - vb - name: SwapMethod - nameWithType: ContextValues.SwapMethod - fullName: OpenTK.Core.Platform.ContextValues.SwapMethod - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/ContextSettings.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: SwapMethod - path: opentk/src/OpenTK.Core/Platform/ContextSettings.cs - startLine: 31 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: public ContextSwapMethod SwapMethod - return: - type: OpenTK.Core.Platform.ContextSwapMethod - content.vb: Public SwapMethod As ContextSwapMethod -- uid: OpenTK.Core.Platform.ContextValues.Samples - commentId: F:OpenTK.Core.Platform.ContextValues.Samples - id: Samples - parent: OpenTK.Core.Platform.ContextValues - langs: - - csharp - - vb - name: Samples - nameWithType: ContextValues.Samples - fullName: OpenTK.Core.Platform.ContextValues.Samples - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/ContextSettings.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Samples - path: opentk/src/OpenTK.Core/Platform/ContextSettings.cs - startLine: 32 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: public int Samples - return: - type: System.Int32 - content.vb: Public Samples As Integer -- uid: OpenTK.Core.Platform.ContextValues.DefaultValuesSelector(System.Collections.Generic.IReadOnlyList{OpenTK.Core.Platform.ContextValues},OpenTK.Core.Platform.ContextValues,OpenTK.Core.Utility.ILogger) - commentId: M:OpenTK.Core.Platform.ContextValues.DefaultValuesSelector(System.Collections.Generic.IReadOnlyList{OpenTK.Core.Platform.ContextValues},OpenTK.Core.Platform.ContextValues,OpenTK.Core.Utility.ILogger) - id: DefaultValuesSelector(System.Collections.Generic.IReadOnlyList{OpenTK.Core.Platform.ContextValues},OpenTK.Core.Platform.ContextValues,OpenTK.Core.Utility.ILogger) - parent: OpenTK.Core.Platform.ContextValues - langs: - - csharp - - vb - name: DefaultValuesSelector(IReadOnlyList, ContextValues, ILogger?) - nameWithType: ContextValues.DefaultValuesSelector(IReadOnlyList, ContextValues, ILogger?) - fullName: OpenTK.Core.Platform.ContextValues.DefaultValuesSelector(System.Collections.Generic.IReadOnlyList, OpenTK.Core.Platform.ContextValues, OpenTK.Core.Utility.ILogger?) - type: Method - source: - remote: - path: src/OpenTK.Core/Platform/ContextSettings.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: DefaultValuesSelector - path: opentk/src/OpenTK.Core/Platform/ContextSettings.cs - startLine: 58 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: >- - Default context values selector. Prioritizes the requested values with a series of "relaxations" to find a close match.
- - The relaxations are done in the following order: - -
  1. If no exact match is found try find a format with a larger number of color, depth, or stencil bits.
  2. If == false is requested, == true formats will be accepted.
  3. If == , any swap method will be accepted.
  4. If == true, accept == false formats.
  5. Accept any .
  6. Decrement by one at a time until 0 and see if any alternative sample counts are possible.
  7. Accept any .
  8. Allow one of color bits (, , , and ), , or to be lower than requested.
  9. Allow two of color bits (, , , and ), , or to be lower than requested.
  10. Relax all bit requirements.
  11. If all relaxations fail, select the first option in the list.
- example: [] - syntax: - content: public static int DefaultValuesSelector(IReadOnlyList options, ContextValues requested, ILogger? logger) - parameters: - - id: options - type: System.Collections.Generic.IReadOnlyList{OpenTK.Core.Platform.ContextValues} - description: The possible context values. - - id: requested - type: OpenTK.Core.Platform.ContextValues - description: The requested context values. - - id: logger - type: OpenTK.Core.Utility.ILogger - description: A logger to use for logging. - return: - type: System.Int32 - description: The index of the selected "best match" context values. - content.vb: Public Shared Function DefaultValuesSelector(options As IReadOnlyList(Of ContextValues), requested As ContextValues, logger As ILogger) As Integer - overload: OpenTK.Core.Platform.ContextValues.DefaultValuesSelector* - nameWithType.vb: ContextValues.DefaultValuesSelector(IReadOnlyList(Of ContextValues), ContextValues, ILogger) - fullName.vb: OpenTK.Core.Platform.ContextValues.DefaultValuesSelector(System.Collections.Generic.IReadOnlyList(Of OpenTK.Core.Platform.ContextValues), OpenTK.Core.Platform.ContextValues, OpenTK.Core.Utility.ILogger) - name.vb: DefaultValuesSelector(IReadOnlyList(Of ContextValues), ContextValues, ILogger) -- uid: OpenTK.Core.Platform.ContextValues.IsEqualExcludingID(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues) - commentId: M:OpenTK.Core.Platform.ContextValues.IsEqualExcludingID(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues) - id: IsEqualExcludingID(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues) - parent: OpenTK.Core.Platform.ContextValues - langs: - - csharp - - vb - name: IsEqualExcludingID(ContextValues, ContextValues) - nameWithType: ContextValues.IsEqualExcludingID(ContextValues, ContextValues) - fullName: OpenTK.Core.Platform.ContextValues.IsEqualExcludingID(OpenTK.Core.Platform.ContextValues, OpenTK.Core.Platform.ContextValues) - type: Method - source: - remote: - path: src/OpenTK.Core/Platform/ContextSettings.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: IsEqualExcludingID - path: opentk/src/OpenTK.Core/Platform/ContextSettings.cs - startLine: 289 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: public static bool IsEqualExcludingID(ContextValues option, ContextValues requested) - parameters: - - id: option - type: OpenTK.Core.Platform.ContextValues - - id: requested - type: OpenTK.Core.Platform.ContextValues - return: - type: System.Boolean - content.vb: Public Shared Function IsEqualExcludingID([option] As ContextValues, requested As ContextValues) As Boolean - overload: OpenTK.Core.Platform.ContextValues.IsEqualExcludingID* -- uid: OpenTK.Core.Platform.ContextValues.HasEqualColorBits(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues) - commentId: M:OpenTK.Core.Platform.ContextValues.HasEqualColorBits(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues) - id: HasEqualColorBits(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues) - parent: OpenTK.Core.Platform.ContextValues - langs: - - csharp - - vb - name: HasEqualColorBits(ContextValues, ContextValues) - nameWithType: ContextValues.HasEqualColorBits(ContextValues, ContextValues) - fullName: OpenTK.Core.Platform.ContextValues.HasEqualColorBits(OpenTK.Core.Platform.ContextValues, OpenTK.Core.Platform.ContextValues) - type: Method - source: - remote: - path: src/OpenTK.Core/Platform/ContextSettings.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: HasEqualColorBits - path: opentk/src/OpenTK.Core/Platform/ContextSettings.cs - startLine: 304 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: public static bool HasEqualColorBits(ContextValues option, ContextValues requested) - parameters: - - id: option - type: OpenTK.Core.Platform.ContextValues - - id: requested - type: OpenTK.Core.Platform.ContextValues - return: - type: System.Boolean - content.vb: Public Shared Function HasEqualColorBits([option] As ContextValues, requested As ContextValues) As Boolean - overload: OpenTK.Core.Platform.ContextValues.HasEqualColorBits* -- uid: OpenTK.Core.Platform.ContextValues.HasGreaterOrEqualColorBits(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues) - commentId: M:OpenTK.Core.Platform.ContextValues.HasGreaterOrEqualColorBits(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues) - id: HasGreaterOrEqualColorBits(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues) - parent: OpenTK.Core.Platform.ContextValues - langs: - - csharp - - vb - name: HasGreaterOrEqualColorBits(ContextValues, ContextValues) - nameWithType: ContextValues.HasGreaterOrEqualColorBits(ContextValues, ContextValues) - fullName: OpenTK.Core.Platform.ContextValues.HasGreaterOrEqualColorBits(OpenTK.Core.Platform.ContextValues, OpenTK.Core.Platform.ContextValues) - type: Method - source: - remote: - path: src/OpenTK.Core/Platform/ContextSettings.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: HasGreaterOrEqualColorBits - path: opentk/src/OpenTK.Core/Platform/ContextSettings.cs - startLine: 312 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: public static bool HasGreaterOrEqualColorBits(ContextValues option, ContextValues requested) - parameters: - - id: option - type: OpenTK.Core.Platform.ContextValues - - id: requested - type: OpenTK.Core.Platform.ContextValues - return: - type: System.Boolean - content.vb: Public Shared Function HasGreaterOrEqualColorBits([option] As ContextValues, requested As ContextValues) As Boolean - overload: OpenTK.Core.Platform.ContextValues.HasGreaterOrEqualColorBits* -- uid: OpenTK.Core.Platform.ContextValues.HasLessOrEqualColorBits(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues) - commentId: M:OpenTK.Core.Platform.ContextValues.HasLessOrEqualColorBits(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues) - id: HasLessOrEqualColorBits(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues) - parent: OpenTK.Core.Platform.ContextValues - langs: - - csharp - - vb - name: HasLessOrEqualColorBits(ContextValues, ContextValues) - nameWithType: ContextValues.HasLessOrEqualColorBits(ContextValues, ContextValues) - fullName: OpenTK.Core.Platform.ContextValues.HasLessOrEqualColorBits(OpenTK.Core.Platform.ContextValues, OpenTK.Core.Platform.ContextValues) - type: Method - source: - remote: - path: src/OpenTK.Core/Platform/ContextSettings.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: HasLessOrEqualColorBits - path: opentk/src/OpenTK.Core/Platform/ContextSettings.cs - startLine: 320 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: public static bool HasLessOrEqualColorBits(ContextValues option, ContextValues requested) - parameters: - - id: option - type: OpenTK.Core.Platform.ContextValues - - id: requested - type: OpenTK.Core.Platform.ContextValues - return: - type: System.Boolean - content.vb: Public Shared Function HasLessOrEqualColorBits([option] As ContextValues, requested As ContextValues) As Boolean - overload: OpenTK.Core.Platform.ContextValues.HasLessOrEqualColorBits* -- uid: OpenTK.Core.Platform.ContextValues.HasEqualDepthBits(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues) - commentId: M:OpenTK.Core.Platform.ContextValues.HasEqualDepthBits(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues) - id: HasEqualDepthBits(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues) - parent: OpenTK.Core.Platform.ContextValues - langs: - - csharp - - vb - name: HasEqualDepthBits(ContextValues, ContextValues) - nameWithType: ContextValues.HasEqualDepthBits(ContextValues, ContextValues) - fullName: OpenTK.Core.Platform.ContextValues.HasEqualDepthBits(OpenTK.Core.Platform.ContextValues, OpenTK.Core.Platform.ContextValues) - type: Method - source: - remote: - path: src/OpenTK.Core/Platform/ContextSettings.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: HasEqualDepthBits - path: opentk/src/OpenTK.Core/Platform/ContextSettings.cs - startLine: 328 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: public static bool HasEqualDepthBits(ContextValues option, ContextValues requested) - parameters: - - id: option - type: OpenTK.Core.Platform.ContextValues - - id: requested - type: OpenTK.Core.Platform.ContextValues - return: - type: System.Boolean - content.vb: Public Shared Function HasEqualDepthBits([option] As ContextValues, requested As ContextValues) As Boolean - overload: OpenTK.Core.Platform.ContextValues.HasEqualDepthBits* -- uid: OpenTK.Core.Platform.ContextValues.HasGreaterOrEqualDepthBits(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues) - commentId: M:OpenTK.Core.Platform.ContextValues.HasGreaterOrEqualDepthBits(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues) - id: HasGreaterOrEqualDepthBits(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues) - parent: OpenTK.Core.Platform.ContextValues - langs: - - csharp - - vb - name: HasGreaterOrEqualDepthBits(ContextValues, ContextValues) - nameWithType: ContextValues.HasGreaterOrEqualDepthBits(ContextValues, ContextValues) - fullName: OpenTK.Core.Platform.ContextValues.HasGreaterOrEqualDepthBits(OpenTK.Core.Platform.ContextValues, OpenTK.Core.Platform.ContextValues) - type: Method - source: - remote: - path: src/OpenTK.Core/Platform/ContextSettings.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: HasGreaterOrEqualDepthBits - path: opentk/src/OpenTK.Core/Platform/ContextSettings.cs - startLine: 333 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: public static bool HasGreaterOrEqualDepthBits(ContextValues option, ContextValues requested) - parameters: - - id: option - type: OpenTK.Core.Platform.ContextValues - - id: requested - type: OpenTK.Core.Platform.ContextValues - return: - type: System.Boolean - content.vb: Public Shared Function HasGreaterOrEqualDepthBits([option] As ContextValues, requested As ContextValues) As Boolean - overload: OpenTK.Core.Platform.ContextValues.HasGreaterOrEqualDepthBits* -- uid: OpenTK.Core.Platform.ContextValues.HasLessOrEqualDepthBits(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues) - commentId: M:OpenTK.Core.Platform.ContextValues.HasLessOrEqualDepthBits(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues) - id: HasLessOrEqualDepthBits(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues) - parent: OpenTK.Core.Platform.ContextValues - langs: - - csharp - - vb - name: HasLessOrEqualDepthBits(ContextValues, ContextValues) - nameWithType: ContextValues.HasLessOrEqualDepthBits(ContextValues, ContextValues) - fullName: OpenTK.Core.Platform.ContextValues.HasLessOrEqualDepthBits(OpenTK.Core.Platform.ContextValues, OpenTK.Core.Platform.ContextValues) - type: Method - source: - remote: - path: src/OpenTK.Core/Platform/ContextSettings.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: HasLessOrEqualDepthBits - path: opentk/src/OpenTK.Core/Platform/ContextSettings.cs - startLine: 338 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: public static bool HasLessOrEqualDepthBits(ContextValues option, ContextValues requested) - parameters: - - id: option - type: OpenTK.Core.Platform.ContextValues - - id: requested - type: OpenTK.Core.Platform.ContextValues - return: - type: System.Boolean - content.vb: Public Shared Function HasLessOrEqualDepthBits([option] As ContextValues, requested As ContextValues) As Boolean - overload: OpenTK.Core.Platform.ContextValues.HasLessOrEqualDepthBits* -- uid: OpenTK.Core.Platform.ContextValues.HasEqualStencilBits(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues) - commentId: M:OpenTK.Core.Platform.ContextValues.HasEqualStencilBits(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues) - id: HasEqualStencilBits(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues) - parent: OpenTK.Core.Platform.ContextValues - langs: - - csharp - - vb - name: HasEqualStencilBits(ContextValues, ContextValues) - nameWithType: ContextValues.HasEqualStencilBits(ContextValues, ContextValues) - fullName: OpenTK.Core.Platform.ContextValues.HasEqualStencilBits(OpenTK.Core.Platform.ContextValues, OpenTK.Core.Platform.ContextValues) - type: Method - source: - remote: - path: src/OpenTK.Core/Platform/ContextSettings.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: HasEqualStencilBits - path: opentk/src/OpenTK.Core/Platform/ContextSettings.cs - startLine: 343 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: public static bool HasEqualStencilBits(ContextValues option, ContextValues requested) - parameters: - - id: option - type: OpenTK.Core.Platform.ContextValues - - id: requested - type: OpenTK.Core.Platform.ContextValues - return: - type: System.Boolean - content.vb: Public Shared Function HasEqualStencilBits([option] As ContextValues, requested As ContextValues) As Boolean - overload: OpenTK.Core.Platform.ContextValues.HasEqualStencilBits* -- uid: OpenTK.Core.Platform.ContextValues.HasGreaterOrEqualStencilBits(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues) - commentId: M:OpenTK.Core.Platform.ContextValues.HasGreaterOrEqualStencilBits(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues) - id: HasGreaterOrEqualStencilBits(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues) - parent: OpenTK.Core.Platform.ContextValues - langs: - - csharp - - vb - name: HasGreaterOrEqualStencilBits(ContextValues, ContextValues) - nameWithType: ContextValues.HasGreaterOrEqualStencilBits(ContextValues, ContextValues) - fullName: OpenTK.Core.Platform.ContextValues.HasGreaterOrEqualStencilBits(OpenTK.Core.Platform.ContextValues, OpenTK.Core.Platform.ContextValues) - type: Method - source: - remote: - path: src/OpenTK.Core/Platform/ContextSettings.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: HasGreaterOrEqualStencilBits - path: opentk/src/OpenTK.Core/Platform/ContextSettings.cs - startLine: 348 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: public static bool HasGreaterOrEqualStencilBits(ContextValues option, ContextValues requested) - parameters: - - id: option - type: OpenTK.Core.Platform.ContextValues - - id: requested - type: OpenTK.Core.Platform.ContextValues - return: - type: System.Boolean - content.vb: Public Shared Function HasGreaterOrEqualStencilBits([option] As ContextValues, requested As ContextValues) As Boolean - overload: OpenTK.Core.Platform.ContextValues.HasGreaterOrEqualStencilBits* -- uid: OpenTK.Core.Platform.ContextValues.HasLessOrEqualStencilBits(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues) - commentId: M:OpenTK.Core.Platform.ContextValues.HasLessOrEqualStencilBits(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues) - id: HasLessOrEqualStencilBits(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues) - parent: OpenTK.Core.Platform.ContextValues - langs: - - csharp - - vb - name: HasLessOrEqualStencilBits(ContextValues, ContextValues) - nameWithType: ContextValues.HasLessOrEqualStencilBits(ContextValues, ContextValues) - fullName: OpenTK.Core.Platform.ContextValues.HasLessOrEqualStencilBits(OpenTK.Core.Platform.ContextValues, OpenTK.Core.Platform.ContextValues) - type: Method - source: - remote: - path: src/OpenTK.Core/Platform/ContextSettings.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: HasLessOrEqualStencilBits - path: opentk/src/OpenTK.Core/Platform/ContextSettings.cs - startLine: 353 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: public static bool HasLessOrEqualStencilBits(ContextValues option, ContextValues requested) - parameters: - - id: option - type: OpenTK.Core.Platform.ContextValues - - id: requested - type: OpenTK.Core.Platform.ContextValues - return: - type: System.Boolean - content.vb: Public Shared Function HasLessOrEqualStencilBits([option] As ContextValues, requested As ContextValues) As Boolean - overload: OpenTK.Core.Platform.ContextValues.HasLessOrEqualStencilBits* -- uid: OpenTK.Core.Platform.ContextValues.HasEqualMSAA(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues) - commentId: M:OpenTK.Core.Platform.ContextValues.HasEqualMSAA(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues) - id: HasEqualMSAA(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues) - parent: OpenTK.Core.Platform.ContextValues - langs: - - csharp - - vb - name: HasEqualMSAA(ContextValues, ContextValues) - nameWithType: ContextValues.HasEqualMSAA(ContextValues, ContextValues) - fullName: OpenTK.Core.Platform.ContextValues.HasEqualMSAA(OpenTK.Core.Platform.ContextValues, OpenTK.Core.Platform.ContextValues) - type: Method - source: - remote: - path: src/OpenTK.Core/Platform/ContextSettings.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: HasEqualMSAA - path: opentk/src/OpenTK.Core/Platform/ContextSettings.cs - startLine: 358 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: public static bool HasEqualMSAA(ContextValues option, ContextValues requested) - parameters: - - id: option - type: OpenTK.Core.Platform.ContextValues - - id: requested - type: OpenTK.Core.Platform.ContextValues - return: - type: System.Boolean - content.vb: Public Shared Function HasEqualMSAA([option] As ContextValues, requested As ContextValues) As Boolean - overload: OpenTK.Core.Platform.ContextValues.HasEqualMSAA* -- uid: OpenTK.Core.Platform.ContextValues.HasEqualDoubleBuffer(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues) - commentId: M:OpenTK.Core.Platform.ContextValues.HasEqualDoubleBuffer(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues) - id: HasEqualDoubleBuffer(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues) - parent: OpenTK.Core.Platform.ContextValues - langs: - - csharp - - vb - name: HasEqualDoubleBuffer(ContextValues, ContextValues) - nameWithType: ContextValues.HasEqualDoubleBuffer(ContextValues, ContextValues) - fullName: OpenTK.Core.Platform.ContextValues.HasEqualDoubleBuffer(OpenTK.Core.Platform.ContextValues, OpenTK.Core.Platform.ContextValues) - type: Method - source: - remote: - path: src/OpenTK.Core/Platform/ContextSettings.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: HasEqualDoubleBuffer - path: opentk/src/OpenTK.Core/Platform/ContextSettings.cs - startLine: 363 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: public static bool HasEqualDoubleBuffer(ContextValues option, ContextValues requested) - parameters: - - id: option - type: OpenTK.Core.Platform.ContextValues - - id: requested - type: OpenTK.Core.Platform.ContextValues - return: - type: System.Boolean - content.vb: Public Shared Function HasEqualDoubleBuffer([option] As ContextValues, requested As ContextValues) As Boolean - overload: OpenTK.Core.Platform.ContextValues.HasEqualDoubleBuffer* -- uid: OpenTK.Core.Platform.ContextValues.HasEqualSRGB(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues) - commentId: M:OpenTK.Core.Platform.ContextValues.HasEqualSRGB(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues) - id: HasEqualSRGB(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues) - parent: OpenTK.Core.Platform.ContextValues - langs: - - csharp - - vb - name: HasEqualSRGB(ContextValues, ContextValues) - nameWithType: ContextValues.HasEqualSRGB(ContextValues, ContextValues) - fullName: OpenTK.Core.Platform.ContextValues.HasEqualSRGB(OpenTK.Core.Platform.ContextValues, OpenTK.Core.Platform.ContextValues) - type: Method - source: - remote: - path: src/OpenTK.Core/Platform/ContextSettings.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: HasEqualSRGB - path: opentk/src/OpenTK.Core/Platform/ContextSettings.cs - startLine: 368 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: public static bool HasEqualSRGB(ContextValues option, ContextValues requested) - parameters: - - id: option - type: OpenTK.Core.Platform.ContextValues - - id: requested - type: OpenTK.Core.Platform.ContextValues - return: - type: System.Boolean - content.vb: Public Shared Function HasEqualSRGB([option] As ContextValues, requested As ContextValues) As Boolean - overload: OpenTK.Core.Platform.ContextValues.HasEqualSRGB* -- uid: OpenTK.Core.Platform.ContextValues.HasEqualPixelFormat(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues) - commentId: M:OpenTK.Core.Platform.ContextValues.HasEqualPixelFormat(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues) - id: HasEqualPixelFormat(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues) - parent: OpenTK.Core.Platform.ContextValues - langs: - - csharp - - vb - name: HasEqualPixelFormat(ContextValues, ContextValues) - nameWithType: ContextValues.HasEqualPixelFormat(ContextValues, ContextValues) - fullName: OpenTK.Core.Platform.ContextValues.HasEqualPixelFormat(OpenTK.Core.Platform.ContextValues, OpenTK.Core.Platform.ContextValues) - type: Method - source: - remote: - path: src/OpenTK.Core/Platform/ContextSettings.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: HasEqualPixelFormat - path: opentk/src/OpenTK.Core/Platform/ContextSettings.cs - startLine: 373 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: public static bool HasEqualPixelFormat(ContextValues option, ContextValues requested) - parameters: - - id: option - type: OpenTK.Core.Platform.ContextValues - - id: requested - type: OpenTK.Core.Platform.ContextValues - return: - type: System.Boolean - content.vb: Public Shared Function HasEqualPixelFormat([option] As ContextValues, requested As ContextValues) As Boolean - overload: OpenTK.Core.Platform.ContextValues.HasEqualPixelFormat* -- uid: OpenTK.Core.Platform.ContextValues.HasEqualSwapMethod(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues) - commentId: M:OpenTK.Core.Platform.ContextValues.HasEqualSwapMethod(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues) - id: HasEqualSwapMethod(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues) - parent: OpenTK.Core.Platform.ContextValues - langs: - - csharp - - vb - name: HasEqualSwapMethod(ContextValues, ContextValues) - nameWithType: ContextValues.HasEqualSwapMethod(ContextValues, ContextValues) - fullName: OpenTK.Core.Platform.ContextValues.HasEqualSwapMethod(OpenTK.Core.Platform.ContextValues, OpenTK.Core.Platform.ContextValues) - type: Method - source: - remote: - path: src/OpenTK.Core/Platform/ContextSettings.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: HasEqualSwapMethod - path: opentk/src/OpenTK.Core/Platform/ContextSettings.cs - startLine: 378 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: public static bool HasEqualSwapMethod(ContextValues option, ContextValues requested) - parameters: - - id: option - type: OpenTK.Core.Platform.ContextValues - - id: requested - type: OpenTK.Core.Platform.ContextValues - return: - type: System.Boolean - content.vb: Public Shared Function HasEqualSwapMethod([option] As ContextValues, requested As ContextValues) As Boolean - overload: OpenTK.Core.Platform.ContextValues.HasEqualSwapMethod* -- uid: OpenTK.Core.Platform.ContextValues.#ctor(System.UInt64,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Boolean,System.Boolean,OpenTK.Core.Platform.ContextPixelFormat,OpenTK.Core.Platform.ContextSwapMethod,System.Int32) - commentId: M:OpenTK.Core.Platform.ContextValues.#ctor(System.UInt64,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Boolean,System.Boolean,OpenTK.Core.Platform.ContextPixelFormat,OpenTK.Core.Platform.ContextSwapMethod,System.Int32) - id: '#ctor(System.UInt64,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Boolean,System.Boolean,OpenTK.Core.Platform.ContextPixelFormat,OpenTK.Core.Platform.ContextSwapMethod,System.Int32)' - parent: OpenTK.Core.Platform.ContextValues - langs: - - csharp - - vb - name: ContextValues(ulong, int, int, int, int, int, int, bool, bool, ContextPixelFormat, ContextSwapMethod, int) - nameWithType: ContextValues.ContextValues(ulong, int, int, int, int, int, int, bool, bool, ContextPixelFormat, ContextSwapMethod, int) - fullName: OpenTK.Core.Platform.ContextValues.ContextValues(ulong, int, int, int, int, int, int, bool, bool, OpenTK.Core.Platform.ContextPixelFormat, OpenTK.Core.Platform.ContextSwapMethod, int) - type: Constructor - source: - remote: - path: src/OpenTK.Core/Platform/ContextSettings.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: .ctor - path: opentk/src/OpenTK.Core/Platform/ContextSettings.cs - startLine: 383 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: public ContextValues(ulong id, int redBits, int greenBits, int blueBits, int alphaBits, int depthBits, int stencilBits, bool doubleBuffered, bool sRGBFramebuffer, ContextPixelFormat pixelFormat, ContextSwapMethod swapMethod, int samples) - parameters: - - id: id - type: System.UInt64 - - id: redBits - type: System.Int32 - - id: greenBits - type: System.Int32 - - id: blueBits - type: System.Int32 - - id: alphaBits - type: System.Int32 - - id: depthBits - type: System.Int32 - - id: stencilBits - type: System.Int32 - - id: doubleBuffered - type: System.Boolean - - id: sRGBFramebuffer - type: System.Boolean - - id: pixelFormat - type: OpenTK.Core.Platform.ContextPixelFormat - - id: swapMethod - type: OpenTK.Core.Platform.ContextSwapMethod - - id: samples - type: System.Int32 - content.vb: Public Sub New(id As ULong, redBits As Integer, greenBits As Integer, blueBits As Integer, alphaBits As Integer, depthBits As Integer, stencilBits As Integer, doubleBuffered As Boolean, sRGBFramebuffer As Boolean, pixelFormat As ContextPixelFormat, swapMethod As ContextSwapMethod, samples As Integer) - overload: OpenTK.Core.Platform.ContextValues.#ctor* - nameWithType.vb: ContextValues.New(ULong, Integer, Integer, Integer, Integer, Integer, Integer, Boolean, Boolean, ContextPixelFormat, ContextSwapMethod, Integer) - fullName.vb: OpenTK.Core.Platform.ContextValues.New(ULong, Integer, Integer, Integer, Integer, Integer, Integer, Boolean, Boolean, OpenTK.Core.Platform.ContextPixelFormat, OpenTK.Core.Platform.ContextSwapMethod, Integer) - name.vb: New(ULong, Integer, Integer, Integer, Integer, Integer, Integer, Boolean, Boolean, ContextPixelFormat, ContextSwapMethod, Integer) -- uid: OpenTK.Core.Platform.ContextValues.Equals(System.Object) - commentId: M:OpenTK.Core.Platform.ContextValues.Equals(System.Object) - id: Equals(System.Object) - parent: OpenTK.Core.Platform.ContextValues - langs: - - csharp - - vb - name: Equals(object?) - nameWithType: ContextValues.Equals(object?) - fullName: OpenTK.Core.Platform.ContextValues.Equals(object?) - type: Method - source: - remote: - path: src/OpenTK.Core/Platform/ContextSettings.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Equals - path: opentk/src/OpenTK.Core/Platform/ContextSettings.cs - startLine: 399 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Indicates whether this instance and a specified object are equal. - example: [] - syntax: - content: public override bool Equals(object? obj) - parameters: - - id: obj - type: System.Object - description: The object to compare with the current instance. - return: - type: System.Boolean - description: true if obj and this instance are the same type and represent the same value; otherwise, false. - content.vb: Public Overrides Function Equals(obj As Object) As Boolean - overridden: System.ValueType.Equals(System.Object) - overload: OpenTK.Core.Platform.ContextValues.Equals* - nameWithType.vb: ContextValues.Equals(Object) - fullName.vb: OpenTK.Core.Platform.ContextValues.Equals(Object) - name.vb: Equals(Object) -- uid: OpenTK.Core.Platform.ContextValues.Equals(OpenTK.Core.Platform.ContextValues) - commentId: M:OpenTK.Core.Platform.ContextValues.Equals(OpenTK.Core.Platform.ContextValues) - id: Equals(OpenTK.Core.Platform.ContextValues) - parent: OpenTK.Core.Platform.ContextValues - langs: - - csharp - - vb - name: Equals(ContextValues) - nameWithType: ContextValues.Equals(ContextValues) - fullName: OpenTK.Core.Platform.ContextValues.Equals(OpenTK.Core.Platform.ContextValues) - type: Method - source: - remote: - path: src/OpenTK.Core/Platform/ContextSettings.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Equals - path: opentk/src/OpenTK.Core/Platform/ContextSettings.cs - startLine: 404 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Indicates whether the current object is equal to another object of the same type. - example: [] - syntax: - content: public bool Equals(ContextValues other) - parameters: - - id: other - type: OpenTK.Core.Platform.ContextValues - description: An object to compare with this object. - return: - type: System.Boolean - description: true if the current object is equal to the other parameter; otherwise, false. - content.vb: Public Function Equals(other As ContextValues) As Boolean - overload: OpenTK.Core.Platform.ContextValues.Equals* - implements: - - System.IEquatable{OpenTK.Core.Platform.ContextValues}.Equals(OpenTK.Core.Platform.ContextValues) -- uid: OpenTK.Core.Platform.ContextValues.GetHashCode - commentId: M:OpenTK.Core.Platform.ContextValues.GetHashCode - id: GetHashCode - parent: OpenTK.Core.Platform.ContextValues - langs: - - csharp - - vb - name: GetHashCode() - nameWithType: ContextValues.GetHashCode() - fullName: OpenTK.Core.Platform.ContextValues.GetHashCode() - type: Method - source: - remote: - path: src/OpenTK.Core/Platform/ContextSettings.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: GetHashCode - path: opentk/src/OpenTK.Core/Platform/ContextSettings.cs - startLine: 420 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Returns the hash code for this instance. - example: [] - syntax: - content: public override int GetHashCode() - return: - type: System.Int32 - description: A 32-bit signed integer that is the hash code for this instance. - content.vb: Public Overrides Function GetHashCode() As Integer - overridden: System.ValueType.GetHashCode - overload: OpenTK.Core.Platform.ContextValues.GetHashCode* -- uid: OpenTK.Core.Platform.ContextValues.op_Equality(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues) - commentId: M:OpenTK.Core.Platform.ContextValues.op_Equality(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues) - id: op_Equality(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues) - parent: OpenTK.Core.Platform.ContextValues - langs: - - csharp - - vb - name: operator ==(ContextValues, ContextValues) - nameWithType: ContextValues.operator ==(ContextValues, ContextValues) - fullName: OpenTK.Core.Platform.ContextValues.operator ==(OpenTK.Core.Platform.ContextValues, OpenTK.Core.Platform.ContextValues) - type: Operator - source: - remote: - path: src/OpenTK.Core/Platform/ContextSettings.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: op_Equality - path: opentk/src/OpenTK.Core/Platform/ContextSettings.cs - startLine: 438 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: public static bool operator ==(ContextValues left, ContextValues right) - parameters: - - id: left - type: OpenTK.Core.Platform.ContextValues - - id: right - type: OpenTK.Core.Platform.ContextValues - return: - type: System.Boolean - content.vb: Public Shared Operator =(left As ContextValues, right As ContextValues) As Boolean - overload: OpenTK.Core.Platform.ContextValues.op_Equality* - nameWithType.vb: ContextValues.=(ContextValues, ContextValues) - fullName.vb: OpenTK.Core.Platform.ContextValues.=(OpenTK.Core.Platform.ContextValues, OpenTK.Core.Platform.ContextValues) - name.vb: =(ContextValues, ContextValues) -- uid: OpenTK.Core.Platform.ContextValues.op_Inequality(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues) - commentId: M:OpenTK.Core.Platform.ContextValues.op_Inequality(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues) - id: op_Inequality(OpenTK.Core.Platform.ContextValues,OpenTK.Core.Platform.ContextValues) - parent: OpenTK.Core.Platform.ContextValues - langs: - - csharp - - vb - name: operator !=(ContextValues, ContextValues) - nameWithType: ContextValues.operator !=(ContextValues, ContextValues) - fullName: OpenTK.Core.Platform.ContextValues.operator !=(OpenTK.Core.Platform.ContextValues, OpenTK.Core.Platform.ContextValues) - type: Operator - source: - remote: - path: src/OpenTK.Core/Platform/ContextSettings.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: op_Inequality - path: opentk/src/OpenTK.Core/Platform/ContextSettings.cs - startLine: 443 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: public static bool operator !=(ContextValues left, ContextValues right) - parameters: - - id: left - type: OpenTK.Core.Platform.ContextValues - - id: right - type: OpenTK.Core.Platform.ContextValues - return: - type: System.Boolean - content.vb: Public Shared Operator <>(left As ContextValues, right As ContextValues) As Boolean - overload: OpenTK.Core.Platform.ContextValues.op_Inequality* - nameWithType.vb: ContextValues.<>(ContextValues, ContextValues) - fullName.vb: OpenTK.Core.Platform.ContextValues.<>(OpenTK.Core.Platform.ContextValues, OpenTK.Core.Platform.ContextValues) - name.vb: <>(ContextValues, ContextValues) -- uid: OpenTK.Core.Platform.ContextValues.ToString - commentId: M:OpenTK.Core.Platform.ContextValues.ToString - id: ToString - parent: OpenTK.Core.Platform.ContextValues - langs: - - csharp - - vb - name: ToString() - nameWithType: ContextValues.ToString() - fullName: OpenTK.Core.Platform.ContextValues.ToString() - type: Method - source: - remote: - path: src/OpenTK.Core/Platform/ContextSettings.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: ToString - path: opentk/src/OpenTK.Core/Platform/ContextSettings.cs - startLine: 448 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Returns the fully qualified type name of this instance. - example: [] - syntax: - content: public override readonly string ToString() - return: - type: System.String - description: The fully qualified type name. - content.vb: Public Overrides Function ToString() As String - overridden: System.ValueType.ToString - overload: OpenTK.Core.Platform.ContextValues.ToString* -references: -- uid: OpenTK.Core.Platform - commentId: N:OpenTK.Core.Platform - href: OpenTK.html - name: OpenTK.Core.Platform - nameWithType: OpenTK.Core.Platform - fullName: OpenTK.Core.Platform - spec.csharp: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform - name: Platform - href: OpenTK.Core.Platform.html - spec.vb: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform - name: Platform - href: OpenTK.Core.Platform.html -- uid: System.IEquatable{OpenTK.Core.Platform.ContextValues} - commentId: T:System.IEquatable{OpenTK.Core.Platform.ContextValues} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of ContextValues) - fullName.vb: System.IEquatable(Of OpenTK.Core.Platform.ContextValues) - name.vb: IEquatable(Of ContextValues) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: OpenTK.Core.Platform.ContextValues - name: ContextValues - href: OpenTK.Core.Platform.ContextValues.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: OpenTK.Core.Platform.ContextValues - name: ContextValues - href: OpenTK.Core.Platform.ContextValues.html - - name: ) -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: System.UInt64 - commentId: T:System.UInt64 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint64 - name: ulong - nameWithType: ulong - fullName: ulong - nameWithType.vb: ULong - fullName.vb: ULong - name.vb: ULong -- uid: System.Int32 - commentId: T:System.Int32 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - name: int - nameWithType: int - fullName: int - nameWithType.vb: Integer - fullName.vb: Integer - name.vb: Integer -- uid: System.Boolean - commentId: T:System.Boolean - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - name: bool - nameWithType: bool - fullName: bool - nameWithType.vb: Boolean - fullName.vb: Boolean - name.vb: Boolean -- uid: OpenTK.Core.Platform.ContextPixelFormat - commentId: T:OpenTK.Core.Platform.ContextPixelFormat - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.ContextPixelFormat.html - name: ContextPixelFormat - nameWithType: ContextPixelFormat - fullName: OpenTK.Core.Platform.ContextPixelFormat -- uid: OpenTK.Core.Platform.ContextSwapMethod - commentId: T:OpenTK.Core.Platform.ContextSwapMethod - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.ContextSwapMethod.html - name: ContextSwapMethod - nameWithType: ContextSwapMethod - fullName: OpenTK.Core.Platform.ContextSwapMethod -- uid: OpenTK.Core.Platform.ContextValues.SRGBFramebuffer - commentId: F:OpenTK.Core.Platform.ContextValues.SRGBFramebuffer - href: OpenTK.Core.Platform.ContextValues.html#OpenTK_Core_Platform_ContextValues_SRGBFramebuffer - name: SRGBFramebuffer - nameWithType: ContextValues.SRGBFramebuffer - fullName: OpenTK.Core.Platform.ContextValues.SRGBFramebuffer -- uid: OpenTK.Core.Platform.ContextValues.SwapMethod - commentId: F:OpenTK.Core.Platform.ContextValues.SwapMethod - href: OpenTK.Core.Platform.ContextValues.html#OpenTK_Core_Platform_ContextValues_SwapMethod - name: SwapMethod - nameWithType: ContextValues.SwapMethod - fullName: OpenTK.Core.Platform.ContextValues.SwapMethod -- uid: OpenTK.Core.Platform.ContextSwapMethod.Undefined - commentId: F:OpenTK.Core.Platform.ContextSwapMethod.Undefined - href: OpenTK.Core.Platform.ContextSwapMethod.html#OpenTK_Core_Platform_ContextSwapMethod_Undefined - name: Undefined - nameWithType: ContextSwapMethod.Undefined - fullName: OpenTK.Core.Platform.ContextSwapMethod.Undefined -- uid: OpenTK.Core.Platform.ContextValues.PixelFormat - commentId: F:OpenTK.Core.Platform.ContextValues.PixelFormat - href: OpenTK.Core.Platform.ContextValues.html#OpenTK_Core_Platform_ContextValues_PixelFormat - name: PixelFormat - nameWithType: ContextValues.PixelFormat - fullName: OpenTK.Core.Platform.ContextValues.PixelFormat -- uid: OpenTK.Core.Platform.ContextValues.Samples - commentId: F:OpenTK.Core.Platform.ContextValues.Samples - href: OpenTK.Core.Platform.ContextValues.html#OpenTK_Core_Platform_ContextValues_Samples - name: Samples - nameWithType: ContextValues.Samples - fullName: OpenTK.Core.Platform.ContextValues.Samples -- uid: OpenTK.Core.Platform.ContextValues.RedBits - commentId: F:OpenTK.Core.Platform.ContextValues.RedBits - href: OpenTK.Core.Platform.ContextValues.html#OpenTK_Core_Platform_ContextValues_RedBits - name: RedBits - nameWithType: ContextValues.RedBits - fullName: OpenTK.Core.Platform.ContextValues.RedBits -- uid: OpenTK.Core.Platform.ContextValues.GreenBits - commentId: F:OpenTK.Core.Platform.ContextValues.GreenBits - href: OpenTK.Core.Platform.ContextValues.html#OpenTK_Core_Platform_ContextValues_GreenBits - name: GreenBits - nameWithType: ContextValues.GreenBits - fullName: OpenTK.Core.Platform.ContextValues.GreenBits -- uid: OpenTK.Core.Platform.ContextValues.BlueBits - commentId: F:OpenTK.Core.Platform.ContextValues.BlueBits - href: OpenTK.Core.Platform.ContextValues.html#OpenTK_Core_Platform_ContextValues_BlueBits - name: BlueBits - nameWithType: ContextValues.BlueBits - fullName: OpenTK.Core.Platform.ContextValues.BlueBits -- uid: OpenTK.Core.Platform.ContextValues.AlphaBits - commentId: F:OpenTK.Core.Platform.ContextValues.AlphaBits - href: OpenTK.Core.Platform.ContextValues.html#OpenTK_Core_Platform_ContextValues_AlphaBits - name: AlphaBits - nameWithType: ContextValues.AlphaBits - fullName: OpenTK.Core.Platform.ContextValues.AlphaBits -- uid: OpenTK.Core.Platform.ContextValues.DepthBits - commentId: F:OpenTK.Core.Platform.ContextValues.DepthBits - href: OpenTK.Core.Platform.ContextValues.html#OpenTK_Core_Platform_ContextValues_DepthBits - name: DepthBits - nameWithType: ContextValues.DepthBits - fullName: OpenTK.Core.Platform.ContextValues.DepthBits -- uid: OpenTK.Core.Platform.ContextValues.StencilBits - commentId: F:OpenTK.Core.Platform.ContextValues.StencilBits - href: OpenTK.Core.Platform.ContextValues.html#OpenTK_Core_Platform_ContextValues_StencilBits - name: StencilBits - nameWithType: ContextValues.StencilBits - fullName: OpenTK.Core.Platform.ContextValues.StencilBits -- uid: OpenTK.Core.Platform.ContextValues.DefaultValuesSelector* - commentId: Overload:OpenTK.Core.Platform.ContextValues.DefaultValuesSelector - href: OpenTK.Core.Platform.ContextValues.html#OpenTK_Core_Platform_ContextValues_DefaultValuesSelector_System_Collections_Generic_IReadOnlyList_OpenTK_Core_Platform_ContextValues__OpenTK_Core_Platform_ContextValues_OpenTK_Core_Utility_ILogger_ - name: DefaultValuesSelector - nameWithType: ContextValues.DefaultValuesSelector - fullName: OpenTK.Core.Platform.ContextValues.DefaultValuesSelector -- uid: System.Collections.Generic.IReadOnlyList{OpenTK.Core.Platform.ContextValues} - commentId: T:System.Collections.Generic.IReadOnlyList{OpenTK.Core.Platform.ContextValues} - parent: System.Collections.Generic - definition: System.Collections.Generic.IReadOnlyList`1 - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 - name: IReadOnlyList - nameWithType: IReadOnlyList - fullName: System.Collections.Generic.IReadOnlyList - nameWithType.vb: IReadOnlyList(Of ContextValues) - fullName.vb: System.Collections.Generic.IReadOnlyList(Of OpenTK.Core.Platform.ContextValues) - name.vb: IReadOnlyList(Of ContextValues) - spec.csharp: - - uid: System.Collections.Generic.IReadOnlyList`1 - name: IReadOnlyList - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 - - name: < - - uid: OpenTK.Core.Platform.ContextValues - name: ContextValues - href: OpenTK.Core.Platform.ContextValues.html - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IReadOnlyList`1 - name: IReadOnlyList - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 - - name: ( - - name: Of - - name: " " - - uid: OpenTK.Core.Platform.ContextValues - name: ContextValues - href: OpenTK.Core.Platform.ContextValues.html - - name: ) -- uid: OpenTK.Core.Platform.ContextValues - commentId: T:OpenTK.Core.Platform.ContextValues - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.ContextValues.html - name: ContextValues - nameWithType: ContextValues - fullName: OpenTK.Core.Platform.ContextValues -- uid: OpenTK.Core.Utility.ILogger - commentId: T:OpenTK.Core.Utility.ILogger - parent: OpenTK.Core.Utility - href: OpenTK.Core.Utility.ILogger.html - name: ILogger - nameWithType: ILogger - fullName: OpenTK.Core.Utility.ILogger -- uid: System.Collections.Generic.IReadOnlyList`1 - commentId: T:System.Collections.Generic.IReadOnlyList`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 - name: IReadOnlyList - nameWithType: IReadOnlyList - fullName: System.Collections.Generic.IReadOnlyList - nameWithType.vb: IReadOnlyList(Of T) - fullName.vb: System.Collections.Generic.IReadOnlyList(Of T) - name.vb: IReadOnlyList(Of T) - spec.csharp: - - uid: System.Collections.Generic.IReadOnlyList`1 - name: IReadOnlyList - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IReadOnlyList`1 - name: IReadOnlyList - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: System.Collections.Generic - commentId: N:System.Collections.Generic - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System.Collections.Generic - nameWithType: System.Collections.Generic - fullName: System.Collections.Generic - spec.csharp: - - uid: System - name: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - - name: . - - uid: System.Collections - name: Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections - - name: . - - uid: System.Collections.Generic - name: Generic - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic - spec.vb: - - uid: System - name: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - - name: . - - uid: System.Collections - name: Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections - - name: . - - uid: System.Collections.Generic - name: Generic - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic -- uid: OpenTK.Core.Utility - commentId: N:OpenTK.Core.Utility - href: OpenTK.html - name: OpenTK.Core.Utility - nameWithType: OpenTK.Core.Utility - fullName: OpenTK.Core.Utility - spec.csharp: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Utility - name: Utility - href: OpenTK.Core.Utility.html - spec.vb: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Utility - name: Utility - href: OpenTK.Core.Utility.html -- uid: OpenTK.Core.Platform.ContextValues.IsEqualExcludingID* - commentId: Overload:OpenTK.Core.Platform.ContextValues.IsEqualExcludingID - href: OpenTK.Core.Platform.ContextValues.html#OpenTK_Core_Platform_ContextValues_IsEqualExcludingID_OpenTK_Core_Platform_ContextValues_OpenTK_Core_Platform_ContextValues_ - name: IsEqualExcludingID - nameWithType: ContextValues.IsEqualExcludingID - fullName: OpenTK.Core.Platform.ContextValues.IsEqualExcludingID -- uid: OpenTK.Core.Platform.ContextValues.HasEqualColorBits* - commentId: Overload:OpenTK.Core.Platform.ContextValues.HasEqualColorBits - href: OpenTK.Core.Platform.ContextValues.html#OpenTK_Core_Platform_ContextValues_HasEqualColorBits_OpenTK_Core_Platform_ContextValues_OpenTK_Core_Platform_ContextValues_ - name: HasEqualColorBits - nameWithType: ContextValues.HasEqualColorBits - fullName: OpenTK.Core.Platform.ContextValues.HasEqualColorBits -- uid: OpenTK.Core.Platform.ContextValues.HasGreaterOrEqualColorBits* - commentId: Overload:OpenTK.Core.Platform.ContextValues.HasGreaterOrEqualColorBits - href: OpenTK.Core.Platform.ContextValues.html#OpenTK_Core_Platform_ContextValues_HasGreaterOrEqualColorBits_OpenTK_Core_Platform_ContextValues_OpenTK_Core_Platform_ContextValues_ - name: HasGreaterOrEqualColorBits - nameWithType: ContextValues.HasGreaterOrEqualColorBits - fullName: OpenTK.Core.Platform.ContextValues.HasGreaterOrEqualColorBits -- uid: OpenTK.Core.Platform.ContextValues.HasLessOrEqualColorBits* - commentId: Overload:OpenTK.Core.Platform.ContextValues.HasLessOrEqualColorBits - href: OpenTK.Core.Platform.ContextValues.html#OpenTK_Core_Platform_ContextValues_HasLessOrEqualColorBits_OpenTK_Core_Platform_ContextValues_OpenTK_Core_Platform_ContextValues_ - name: HasLessOrEqualColorBits - nameWithType: ContextValues.HasLessOrEqualColorBits - fullName: OpenTK.Core.Platform.ContextValues.HasLessOrEqualColorBits -- uid: OpenTK.Core.Platform.ContextValues.HasEqualDepthBits* - commentId: Overload:OpenTK.Core.Platform.ContextValues.HasEqualDepthBits - href: OpenTK.Core.Platform.ContextValues.html#OpenTK_Core_Platform_ContextValues_HasEqualDepthBits_OpenTK_Core_Platform_ContextValues_OpenTK_Core_Platform_ContextValues_ - name: HasEqualDepthBits - nameWithType: ContextValues.HasEqualDepthBits - fullName: OpenTK.Core.Platform.ContextValues.HasEqualDepthBits -- uid: OpenTK.Core.Platform.ContextValues.HasGreaterOrEqualDepthBits* - commentId: Overload:OpenTK.Core.Platform.ContextValues.HasGreaterOrEqualDepthBits - href: OpenTK.Core.Platform.ContextValues.html#OpenTK_Core_Platform_ContextValues_HasGreaterOrEqualDepthBits_OpenTK_Core_Platform_ContextValues_OpenTK_Core_Platform_ContextValues_ - name: HasGreaterOrEqualDepthBits - nameWithType: ContextValues.HasGreaterOrEqualDepthBits - fullName: OpenTK.Core.Platform.ContextValues.HasGreaterOrEqualDepthBits -- uid: OpenTK.Core.Platform.ContextValues.HasLessOrEqualDepthBits* - commentId: Overload:OpenTK.Core.Platform.ContextValues.HasLessOrEqualDepthBits - href: OpenTK.Core.Platform.ContextValues.html#OpenTK_Core_Platform_ContextValues_HasLessOrEqualDepthBits_OpenTK_Core_Platform_ContextValues_OpenTK_Core_Platform_ContextValues_ - name: HasLessOrEqualDepthBits - nameWithType: ContextValues.HasLessOrEqualDepthBits - fullName: OpenTK.Core.Platform.ContextValues.HasLessOrEqualDepthBits -- uid: OpenTK.Core.Platform.ContextValues.HasEqualStencilBits* - commentId: Overload:OpenTK.Core.Platform.ContextValues.HasEqualStencilBits - href: OpenTK.Core.Platform.ContextValues.html#OpenTK_Core_Platform_ContextValues_HasEqualStencilBits_OpenTK_Core_Platform_ContextValues_OpenTK_Core_Platform_ContextValues_ - name: HasEqualStencilBits - nameWithType: ContextValues.HasEqualStencilBits - fullName: OpenTK.Core.Platform.ContextValues.HasEqualStencilBits -- uid: OpenTK.Core.Platform.ContextValues.HasGreaterOrEqualStencilBits* - commentId: Overload:OpenTK.Core.Platform.ContextValues.HasGreaterOrEqualStencilBits - href: OpenTK.Core.Platform.ContextValues.html#OpenTK_Core_Platform_ContextValues_HasGreaterOrEqualStencilBits_OpenTK_Core_Platform_ContextValues_OpenTK_Core_Platform_ContextValues_ - name: HasGreaterOrEqualStencilBits - nameWithType: ContextValues.HasGreaterOrEqualStencilBits - fullName: OpenTK.Core.Platform.ContextValues.HasGreaterOrEqualStencilBits -- uid: OpenTK.Core.Platform.ContextValues.HasLessOrEqualStencilBits* - commentId: Overload:OpenTK.Core.Platform.ContextValues.HasLessOrEqualStencilBits - href: OpenTK.Core.Platform.ContextValues.html#OpenTK_Core_Platform_ContextValues_HasLessOrEqualStencilBits_OpenTK_Core_Platform_ContextValues_OpenTK_Core_Platform_ContextValues_ - name: HasLessOrEqualStencilBits - nameWithType: ContextValues.HasLessOrEqualStencilBits - fullName: OpenTK.Core.Platform.ContextValues.HasLessOrEqualStencilBits -- uid: OpenTK.Core.Platform.ContextValues.HasEqualMSAA* - commentId: Overload:OpenTK.Core.Platform.ContextValues.HasEqualMSAA - href: OpenTK.Core.Platform.ContextValues.html#OpenTK_Core_Platform_ContextValues_HasEqualMSAA_OpenTK_Core_Platform_ContextValues_OpenTK_Core_Platform_ContextValues_ - name: HasEqualMSAA - nameWithType: ContextValues.HasEqualMSAA - fullName: OpenTK.Core.Platform.ContextValues.HasEqualMSAA -- uid: OpenTK.Core.Platform.ContextValues.HasEqualDoubleBuffer* - commentId: Overload:OpenTK.Core.Platform.ContextValues.HasEqualDoubleBuffer - href: OpenTK.Core.Platform.ContextValues.html#OpenTK_Core_Platform_ContextValues_HasEqualDoubleBuffer_OpenTK_Core_Platform_ContextValues_OpenTK_Core_Platform_ContextValues_ - name: HasEqualDoubleBuffer - nameWithType: ContextValues.HasEqualDoubleBuffer - fullName: OpenTK.Core.Platform.ContextValues.HasEqualDoubleBuffer -- uid: OpenTK.Core.Platform.ContextValues.HasEqualSRGB* - commentId: Overload:OpenTK.Core.Platform.ContextValues.HasEqualSRGB - href: OpenTK.Core.Platform.ContextValues.html#OpenTK_Core_Platform_ContextValues_HasEqualSRGB_OpenTK_Core_Platform_ContextValues_OpenTK_Core_Platform_ContextValues_ - name: HasEqualSRGB - nameWithType: ContextValues.HasEqualSRGB - fullName: OpenTK.Core.Platform.ContextValues.HasEqualSRGB -- uid: OpenTK.Core.Platform.ContextValues.HasEqualPixelFormat* - commentId: Overload:OpenTK.Core.Platform.ContextValues.HasEqualPixelFormat - href: OpenTK.Core.Platform.ContextValues.html#OpenTK_Core_Platform_ContextValues_HasEqualPixelFormat_OpenTK_Core_Platform_ContextValues_OpenTK_Core_Platform_ContextValues_ - name: HasEqualPixelFormat - nameWithType: ContextValues.HasEqualPixelFormat - fullName: OpenTK.Core.Platform.ContextValues.HasEqualPixelFormat -- uid: OpenTK.Core.Platform.ContextValues.HasEqualSwapMethod* - commentId: Overload:OpenTK.Core.Platform.ContextValues.HasEqualSwapMethod - href: OpenTK.Core.Platform.ContextValues.html#OpenTK_Core_Platform_ContextValues_HasEqualSwapMethod_OpenTK_Core_Platform_ContextValues_OpenTK_Core_Platform_ContextValues_ - name: HasEqualSwapMethod - nameWithType: ContextValues.HasEqualSwapMethod - fullName: OpenTK.Core.Platform.ContextValues.HasEqualSwapMethod -- uid: OpenTK.Core.Platform.ContextValues.#ctor* - commentId: Overload:OpenTK.Core.Platform.ContextValues.#ctor - href: OpenTK.Core.Platform.ContextValues.html#OpenTK_Core_Platform_ContextValues__ctor_System_UInt64_System_Int32_System_Int32_System_Int32_System_Int32_System_Int32_System_Int32_System_Boolean_System_Boolean_OpenTK_Core_Platform_ContextPixelFormat_OpenTK_Core_Platform_ContextSwapMethod_System_Int32_ - name: ContextValues - nameWithType: ContextValues.ContextValues - fullName: OpenTK.Core.Platform.ContextValues.ContextValues - nameWithType.vb: ContextValues.New - fullName.vb: OpenTK.Core.Platform.ContextValues.New - name.vb: New -- uid: System.ValueType.Equals(System.Object) - commentId: M:System.ValueType.Equals(System.Object) - parent: System.ValueType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals - name: Equals(object) - nameWithType: ValueType.Equals(object) - fullName: System.ValueType.Equals(object) - nameWithType.vb: ValueType.Equals(Object) - fullName.vb: System.ValueType.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: System.ValueType.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.ValueType.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: OpenTK.Core.Platform.ContextValues.Equals* - commentId: Overload:OpenTK.Core.Platform.ContextValues.Equals - href: OpenTK.Core.Platform.ContextValues.html#OpenTK_Core_Platform_ContextValues_Equals_System_Object_ - name: Equals - nameWithType: ContextValues.Equals - fullName: OpenTK.Core.Platform.ContextValues.Equals -- uid: System.ValueType - commentId: T:System.ValueType - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype - name: ValueType - nameWithType: ValueType - fullName: System.ValueType -- uid: System.IEquatable{OpenTK.Core.Platform.ContextValues}.Equals(OpenTK.Core.Platform.ContextValues) - commentId: M:System.IEquatable{OpenTK.Core.Platform.ContextValues}.Equals(OpenTK.Core.Platform.ContextValues) - parent: System.IEquatable{OpenTK.Core.Platform.ContextValues} - definition: System.IEquatable`1.Equals(`0) - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals - name: Equals(ContextValues) - nameWithType: IEquatable.Equals(ContextValues) - fullName: System.IEquatable.Equals(OpenTK.Core.Platform.ContextValues) - nameWithType.vb: IEquatable(Of ContextValues).Equals(ContextValues) - fullName.vb: System.IEquatable(Of OpenTK.Core.Platform.ContextValues).Equals(OpenTK.Core.Platform.ContextValues) - spec.csharp: - - uid: System.IEquatable{OpenTK.Core.Platform.ContextValues}.Equals(OpenTK.Core.Platform.ContextValues) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals - - name: ( - - uid: OpenTK.Core.Platform.ContextValues - name: ContextValues - href: OpenTK.Core.Platform.ContextValues.html - - name: ) - spec.vb: - - uid: System.IEquatable{OpenTK.Core.Platform.ContextValues}.Equals(OpenTK.Core.Platform.ContextValues) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals - - name: ( - - uid: OpenTK.Core.Platform.ContextValues - name: ContextValues - href: OpenTK.Core.Platform.ContextValues.html - - name: ) -- uid: System.IEquatable`1.Equals(`0) - commentId: M:System.IEquatable`1.Equals(`0) - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals - name: Equals(T) - nameWithType: IEquatable.Equals(T) - fullName: System.IEquatable.Equals(T) - nameWithType.vb: IEquatable(Of T).Equals(T) - fullName.vb: System.IEquatable(Of T).Equals(T) - spec.csharp: - - uid: System.IEquatable`1.Equals(`0) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals - - name: ( - - name: T - - name: ) - spec.vb: - - uid: System.IEquatable`1.Equals(`0) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals - - name: ( - - name: T - - name: ) -- uid: System.ValueType.GetHashCode - commentId: M:System.ValueType.GetHashCode - parent: System.ValueType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - name: GetHashCode() - nameWithType: ValueType.GetHashCode() - fullName: System.ValueType.GetHashCode() - spec.csharp: - - uid: System.ValueType.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - - name: ( - - name: ) - spec.vb: - - uid: System.ValueType.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - - name: ( - - name: ) -- uid: OpenTK.Core.Platform.ContextValues.GetHashCode* - commentId: Overload:OpenTK.Core.Platform.ContextValues.GetHashCode - href: OpenTK.Core.Platform.ContextValues.html#OpenTK_Core_Platform_ContextValues_GetHashCode - name: GetHashCode - nameWithType: ContextValues.GetHashCode - fullName: OpenTK.Core.Platform.ContextValues.GetHashCode -- uid: OpenTK.Core.Platform.ContextValues.op_Equality* - commentId: Overload:OpenTK.Core.Platform.ContextValues.op_Equality - href: OpenTK.Core.Platform.ContextValues.html#OpenTK_Core_Platform_ContextValues_op_Equality_OpenTK_Core_Platform_ContextValues_OpenTK_Core_Platform_ContextValues_ - name: operator == - nameWithType: ContextValues.operator == - fullName: OpenTK.Core.Platform.ContextValues.operator == - nameWithType.vb: ContextValues.= - fullName.vb: OpenTK.Core.Platform.ContextValues.= - name.vb: = - spec.csharp: - - name: operator - - name: " " - - uid: OpenTK.Core.Platform.ContextValues.op_Equality* - name: == - href: OpenTK.Core.Platform.ContextValues.html#OpenTK_Core_Platform_ContextValues_op_Equality_OpenTK_Core_Platform_ContextValues_OpenTK_Core_Platform_ContextValues_ -- uid: OpenTK.Core.Platform.ContextValues.op_Inequality* - commentId: Overload:OpenTK.Core.Platform.ContextValues.op_Inequality - href: OpenTK.Core.Platform.ContextValues.html#OpenTK_Core_Platform_ContextValues_op_Inequality_OpenTK_Core_Platform_ContextValues_OpenTK_Core_Platform_ContextValues_ - name: operator != - nameWithType: ContextValues.operator != - fullName: OpenTK.Core.Platform.ContextValues.operator != - nameWithType.vb: ContextValues.<> - fullName.vb: OpenTK.Core.Platform.ContextValues.<> - name.vb: <> - spec.csharp: - - name: operator - - name: " " - - uid: OpenTK.Core.Platform.ContextValues.op_Inequality* - name: '!=' - href: OpenTK.Core.Platform.ContextValues.html#OpenTK_Core_Platform_ContextValues_op_Inequality_OpenTK_Core_Platform_ContextValues_OpenTK_Core_Platform_ContextValues_ -- uid: System.ValueType.ToString - commentId: M:System.ValueType.ToString - parent: System.ValueType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - name: ToString() - nameWithType: ValueType.ToString() - fullName: System.ValueType.ToString() - spec.csharp: - - uid: System.ValueType.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - - name: ( - - name: ) - spec.vb: - - uid: System.ValueType.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - - name: ( - - name: ) -- uid: OpenTK.Core.Platform.ContextValues.ToString* - commentId: Overload:OpenTK.Core.Platform.ContextValues.ToString - href: OpenTK.Core.Platform.ContextValues.html#OpenTK_Core_Platform_ContextValues_ToString - name: ToString - nameWithType: ContextValues.ToString - fullName: OpenTK.Core.Platform.ContextValues.ToString -- uid: System.String - commentId: T:System.String - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - name: string - nameWithType: string - fullName: string - nameWithType.vb: String - fullName.vb: String - name.vb: String diff --git a/api/OpenTK.Core.Platform.CursorCaptureMode.yml b/api/OpenTK.Core.Platform.CursorCaptureMode.yml deleted file mode 100644 index b3a62892..00000000 --- a/api/OpenTK.Core.Platform.CursorCaptureMode.yml +++ /dev/null @@ -1,168 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: OpenTK.Core.Platform.CursorCaptureMode - commentId: T:OpenTK.Core.Platform.CursorCaptureMode - id: CursorCaptureMode - parent: OpenTK.Core.Platform - children: - - OpenTK.Core.Platform.CursorCaptureMode.Confined - - OpenTK.Core.Platform.CursorCaptureMode.Locked - - OpenTK.Core.Platform.CursorCaptureMode.Normal - langs: - - csharp - - vb - name: CursorCaptureMode - nameWithType: CursorCaptureMode - fullName: OpenTK.Core.Platform.CursorCaptureMode - type: Enum - source: - remote: - path: src/OpenTK.Core/Platform/Enums/CaptureMode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: CursorCaptureMode - path: opentk/src/OpenTK.Core/Platform/Enums/CaptureMode.cs - startLine: 11 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Cursor capture modes. - example: [] - syntax: - content: public enum CursorCaptureMode - content.vb: Public Enum CursorCaptureMode -- uid: OpenTK.Core.Platform.CursorCaptureMode.Normal - commentId: F:OpenTK.Core.Platform.CursorCaptureMode.Normal - id: Normal - parent: OpenTK.Core.Platform.CursorCaptureMode - langs: - - csharp - - vb - name: Normal - nameWithType: CursorCaptureMode.Normal - fullName: OpenTK.Core.Platform.CursorCaptureMode.Normal - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/CaptureMode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Normal - path: opentk/src/OpenTK.Core/Platform/Enums/CaptureMode.cs - startLine: 16 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: The cursor is not captured. - example: [] - syntax: - content: Normal = 0 - return: - type: OpenTK.Core.Platform.CursorCaptureMode -- uid: OpenTK.Core.Platform.CursorCaptureMode.Confined - commentId: F:OpenTK.Core.Platform.CursorCaptureMode.Confined - id: Confined - parent: OpenTK.Core.Platform.CursorCaptureMode - langs: - - csharp - - vb - name: Confined - nameWithType: CursorCaptureMode.Confined - fullName: OpenTK.Core.Platform.CursorCaptureMode.Confined - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/CaptureMode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Confined - path: opentk/src/OpenTK.Core/Platform/Enums/CaptureMode.cs - startLine: 21 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: The cursor is confined to the bounds of the window. - example: [] - syntax: - content: Confined = 1 - return: - type: OpenTK.Core.Platform.CursorCaptureMode -- uid: OpenTK.Core.Platform.CursorCaptureMode.Locked - commentId: F:OpenTK.Core.Platform.CursorCaptureMode.Locked - id: Locked - parent: OpenTK.Core.Platform.CursorCaptureMode - langs: - - csharp - - vb - name: Locked - nameWithType: CursorCaptureMode.Locked - fullName: OpenTK.Core.Platform.CursorCaptureMode.Locked - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/CaptureMode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Locked - path: opentk/src/OpenTK.Core/Platform/Enums/CaptureMode.cs - startLine: 32 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: >- -

- - The cursor is locked to the center of the window. Useful for e.g. FPS games. - -

- -

- - In this mode the cursor has a virtual position that can go to arbitrary coordinates, this allows the mouse delta to always grow. - - Checking the mouse cursor position while capturing the cursor will not return a coordinate that corresponds to the screen. - -

- example: [] - syntax: - content: Locked = 2 - return: - type: OpenTK.Core.Platform.CursorCaptureMode -references: -- uid: OpenTK.Core.Platform - commentId: N:OpenTK.Core.Platform - href: OpenTK.html - name: OpenTK.Core.Platform - nameWithType: OpenTK.Core.Platform - fullName: OpenTK.Core.Platform - spec.csharp: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform - name: Platform - href: OpenTK.Core.Platform.html - spec.vb: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform - name: Platform - href: OpenTK.Core.Platform.html -- uid: OpenTK.Core.Platform.CursorCaptureMode - commentId: T:OpenTK.Core.Platform.CursorCaptureMode - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.CursorCaptureMode.html - name: CursorCaptureMode - nameWithType: CursorCaptureMode - fullName: OpenTK.Core.Platform.CursorCaptureMode diff --git a/api/OpenTK.Core.Platform.GamepadBatteryType.yml b/api/OpenTK.Core.Platform.GamepadBatteryType.yml deleted file mode 100644 index 44c3d71f..00000000 --- a/api/OpenTK.Core.Platform.GamepadBatteryType.yml +++ /dev/null @@ -1,184 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: OpenTK.Core.Platform.GamepadBatteryType - commentId: T:OpenTK.Core.Platform.GamepadBatteryType - id: GamepadBatteryType - parent: OpenTK.Core.Platform - children: - - OpenTK.Core.Platform.GamepadBatteryType.Alkaline - - OpenTK.Core.Platform.GamepadBatteryType.NiMH - - OpenTK.Core.Platform.GamepadBatteryType.Unknown - - OpenTK.Core.Platform.GamepadBatteryType.Wired - langs: - - csharp - - vb - name: GamepadBatteryType - nameWithType: GamepadBatteryType - fullName: OpenTK.Core.Platform.GamepadBatteryType - type: Enum - source: - remote: - path: src/OpenTK.Core/Platform/GamepadBatteryInfo.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: GamepadBatteryType - path: opentk/src/OpenTK.Core/Platform/GamepadBatteryInfo.cs - startLine: 11 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Represents a type of battery in a gamepad. - example: [] - syntax: - content: public enum GamepadBatteryType - content.vb: Public Enum GamepadBatteryType -- uid: OpenTK.Core.Platform.GamepadBatteryType.Unknown - commentId: F:OpenTK.Core.Platform.GamepadBatteryType.Unknown - id: Unknown - parent: OpenTK.Core.Platform.GamepadBatteryType - langs: - - csharp - - vb - name: Unknown - nameWithType: GamepadBatteryType.Unknown - fullName: OpenTK.Core.Platform.GamepadBatteryType.Unknown - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/GamepadBatteryInfo.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Unknown - path: opentk/src/OpenTK.Core/Platform/GamepadBatteryInfo.cs - startLine: 16 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: The type of battery is unknown. - example: [] - syntax: - content: Unknown = 0 - return: - type: OpenTK.Core.Platform.GamepadBatteryType -- uid: OpenTK.Core.Platform.GamepadBatteryType.Wired - commentId: F:OpenTK.Core.Platform.GamepadBatteryType.Wired - id: Wired - parent: OpenTK.Core.Platform.GamepadBatteryType - langs: - - csharp - - vb - name: Wired - nameWithType: GamepadBatteryType.Wired - fullName: OpenTK.Core.Platform.GamepadBatteryType.Wired - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/GamepadBatteryInfo.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Wired - path: opentk/src/OpenTK.Core/Platform/GamepadBatteryInfo.cs - startLine: 21 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: The gamepad is wired. - example: [] - syntax: - content: Wired = 1 - return: - type: OpenTK.Core.Platform.GamepadBatteryType -- uid: OpenTK.Core.Platform.GamepadBatteryType.Alkaline - commentId: F:OpenTK.Core.Platform.GamepadBatteryType.Alkaline - id: Alkaline - parent: OpenTK.Core.Platform.GamepadBatteryType - langs: - - csharp - - vb - name: Alkaline - nameWithType: GamepadBatteryType.Alkaline - fullName: OpenTK.Core.Platform.GamepadBatteryType.Alkaline - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/GamepadBatteryInfo.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Alkaline - path: opentk/src/OpenTK.Core/Platform/GamepadBatteryInfo.cs - startLine: 26 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: The gamepad has an alkaline battery. - example: [] - syntax: - content: Alkaline = 2 - return: - type: OpenTK.Core.Platform.GamepadBatteryType -- uid: OpenTK.Core.Platform.GamepadBatteryType.NiMH - commentId: F:OpenTK.Core.Platform.GamepadBatteryType.NiMH - id: NiMH - parent: OpenTK.Core.Platform.GamepadBatteryType - langs: - - csharp - - vb - name: NiMH - nameWithType: GamepadBatteryType.NiMH - fullName: OpenTK.Core.Platform.GamepadBatteryType.NiMH - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/GamepadBatteryInfo.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: NiMH - path: opentk/src/OpenTK.Core/Platform/GamepadBatteryInfo.cs - startLine: 31 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: The gamepad has a nickel metal hydride battery. - example: [] - syntax: - content: NiMH = 3 - return: - type: OpenTK.Core.Platform.GamepadBatteryType -references: -- uid: OpenTK.Core.Platform - commentId: N:OpenTK.Core.Platform - href: OpenTK.html - name: OpenTK.Core.Platform - nameWithType: OpenTK.Core.Platform - fullName: OpenTK.Core.Platform - spec.csharp: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform - name: Platform - href: OpenTK.Core.Platform.html - spec.vb: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform - name: Platform - href: OpenTK.Core.Platform.html -- uid: OpenTK.Core.Platform.GamepadBatteryType - commentId: T:OpenTK.Core.Platform.GamepadBatteryType - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.GamepadBatteryType.html - name: GamepadBatteryType - nameWithType: GamepadBatteryType - fullName: OpenTK.Core.Platform.GamepadBatteryType diff --git a/api/OpenTK.Core.Platform.GraphicsApi.yml b/api/OpenTK.Core.Platform.GraphicsApi.yml deleted file mode 100644 index b446b5c6..00000000 --- a/api/OpenTK.Core.Platform.GraphicsApi.yml +++ /dev/null @@ -1,184 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: OpenTK.Core.Platform.GraphicsApi - commentId: T:OpenTK.Core.Platform.GraphicsApi - id: GraphicsApi - parent: OpenTK.Core.Platform - children: - - OpenTK.Core.Platform.GraphicsApi.None - - OpenTK.Core.Platform.GraphicsApi.OpenGL - - OpenTK.Core.Platform.GraphicsApi.OpenGLES - - OpenTK.Core.Platform.GraphicsApi.Vulkan - langs: - - csharp - - vb - name: GraphicsApi - nameWithType: GraphicsApi - fullName: OpenTK.Core.Platform.GraphicsApi - type: Enum - source: - remote: - path: src/OpenTK.Core/Platform/Enums/GraphicsApi.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: GraphicsApi - path: opentk/src/OpenTK.Core/Platform/Enums/GraphicsApi.cs - startLine: 5 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Graphics API types. - example: [] - syntax: - content: public enum GraphicsApi - content.vb: Public Enum GraphicsApi -- uid: OpenTK.Core.Platform.GraphicsApi.None - commentId: F:OpenTK.Core.Platform.GraphicsApi.None - id: None - parent: OpenTK.Core.Platform.GraphicsApi - langs: - - csharp - - vb - name: None - nameWithType: GraphicsApi.None - fullName: OpenTK.Core.Platform.GraphicsApi.None - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/GraphicsApi.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: None - path: opentk/src/OpenTK.Core/Platform/Enums/GraphicsApi.cs - startLine: 10 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: No graphics API. - example: [] - syntax: - content: None = 0 - return: - type: OpenTK.Core.Platform.GraphicsApi -- uid: OpenTK.Core.Platform.GraphicsApi.OpenGL - commentId: F:OpenTK.Core.Platform.GraphicsApi.OpenGL - id: OpenGL - parent: OpenTK.Core.Platform.GraphicsApi - langs: - - csharp - - vb - name: OpenGL - nameWithType: GraphicsApi.OpenGL - fullName: OpenTK.Core.Platform.GraphicsApi.OpenGL - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/GraphicsApi.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: OpenGL - path: opentk/src/OpenTK.Core/Platform/Enums/GraphicsApi.cs - startLine: 15 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Desktop OpenGL API. - example: [] - syntax: - content: OpenGL = 1 - return: - type: OpenTK.Core.Platform.GraphicsApi -- uid: OpenTK.Core.Platform.GraphicsApi.OpenGLES - commentId: F:OpenTK.Core.Platform.GraphicsApi.OpenGLES - id: OpenGLES - parent: OpenTK.Core.Platform.GraphicsApi - langs: - - csharp - - vb - name: OpenGLES - nameWithType: GraphicsApi.OpenGLES - fullName: OpenTK.Core.Platform.GraphicsApi.OpenGLES - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/GraphicsApi.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: OpenGLES - path: opentk/src/OpenTK.Core/Platform/Enums/GraphicsApi.cs - startLine: 20 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Embedded OpenGL ES API. - example: [] - syntax: - content: OpenGLES = 2 - return: - type: OpenTK.Core.Platform.GraphicsApi -- uid: OpenTK.Core.Platform.GraphicsApi.Vulkan - commentId: F:OpenTK.Core.Platform.GraphicsApi.Vulkan - id: Vulkan - parent: OpenTK.Core.Platform.GraphicsApi - langs: - - csharp - - vb - name: Vulkan - nameWithType: GraphicsApi.Vulkan - fullName: OpenTK.Core.Platform.GraphicsApi.Vulkan - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/GraphicsApi.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Vulkan - path: opentk/src/OpenTK.Core/Platform/Enums/GraphicsApi.cs - startLine: 25 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Vulkan API. - example: [] - syntax: - content: Vulkan = 3 - return: - type: OpenTK.Core.Platform.GraphicsApi -references: -- uid: OpenTK.Core.Platform - commentId: N:OpenTK.Core.Platform - href: OpenTK.html - name: OpenTK.Core.Platform - nameWithType: OpenTK.Core.Platform - fullName: OpenTK.Core.Platform - spec.csharp: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform - name: Platform - href: OpenTK.Core.Platform.html - spec.vb: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform - name: Platform - href: OpenTK.Core.Platform.html -- uid: OpenTK.Core.Platform.GraphicsApi - commentId: T:OpenTK.Core.Platform.GraphicsApi - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.GraphicsApi.html - name: GraphicsApi - nameWithType: GraphicsApi - fullName: OpenTK.Core.Platform.GraphicsApi diff --git a/api/OpenTK.Core.Platform.HitType.yml b/api/OpenTK.Core.Platform.HitType.yml deleted file mode 100644 index 4c0f1611..00000000 --- a/api/OpenTK.Core.Platform.HitType.yml +++ /dev/null @@ -1,387 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: OpenTK.Core.Platform.HitType - commentId: T:OpenTK.Core.Platform.HitType - id: HitType - parent: OpenTK.Core.Platform - children: - - OpenTK.Core.Platform.HitType.Default - - OpenTK.Core.Platform.HitType.Draggable - - OpenTK.Core.Platform.HitType.Normal - - OpenTK.Core.Platform.HitType.ResizeBottom - - OpenTK.Core.Platform.HitType.ResizeBottomLeft - - OpenTK.Core.Platform.HitType.ResizeBottomRight - - OpenTK.Core.Platform.HitType.ResizeLeft - - OpenTK.Core.Platform.HitType.ResizeRight - - OpenTK.Core.Platform.HitType.ResizeTop - - OpenTK.Core.Platform.HitType.ResizeTopLeft - - OpenTK.Core.Platform.HitType.ResizeTopRight - langs: - - csharp - - vb - name: HitType - nameWithType: HitType - fullName: OpenTK.Core.Platform.HitType - type: Enum - source: - remote: - path: src/OpenTK.Core/Platform/Enums/HitType.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: HitType - path: opentk/src/OpenTK.Core/Platform/Enums/HitType.cs - startLine: 11 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Type of window hit. - example: [] - syntax: - content: public enum HitType - content.vb: Public Enum HitType -- uid: OpenTK.Core.Platform.HitType.Default - commentId: F:OpenTK.Core.Platform.HitType.Default - id: Default - parent: OpenTK.Core.Platform.HitType - langs: - - csharp - - vb - name: Default - nameWithType: HitType.Default - fullName: OpenTK.Core.Platform.HitType.Default - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/HitType.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Default - path: opentk/src/OpenTK.Core/Platform/Enums/HitType.cs - startLine: 16 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Do what would be done if no hit test delegate was set. - example: [] - syntax: - content: Default = 0 - return: - type: OpenTK.Core.Platform.HitType -- uid: OpenTK.Core.Platform.HitType.Normal - commentId: F:OpenTK.Core.Platform.HitType.Normal - id: Normal - parent: OpenTK.Core.Platform.HitType - langs: - - csharp - - vb - name: Normal - nameWithType: HitType.Normal - fullName: OpenTK.Core.Platform.HitType.Normal - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/HitType.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Normal - path: opentk/src/OpenTK.Core/Platform/Enums/HitType.cs - startLine: 24 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: The client area of the window. - example: [] - syntax: - content: Normal = 1 - return: - type: OpenTK.Core.Platform.HitType -- uid: OpenTK.Core.Platform.HitType.Draggable - commentId: F:OpenTK.Core.Platform.HitType.Draggable - id: Draggable - parent: OpenTK.Core.Platform.HitType - langs: - - csharp - - vb - name: Draggable - nameWithType: HitType.Draggable - fullName: OpenTK.Core.Platform.HitType.Draggable - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/HitType.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Draggable - path: opentk/src/OpenTK.Core/Platform/Enums/HitType.cs - startLine: 29 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: A part of the window that can be used to move the window. - example: [] - syntax: - content: Draggable = 2 - return: - type: OpenTK.Core.Platform.HitType -- uid: OpenTK.Core.Platform.HitType.ResizeTopLeft - commentId: F:OpenTK.Core.Platform.HitType.ResizeTopLeft - id: ResizeTopLeft - parent: OpenTK.Core.Platform.HitType - langs: - - csharp - - vb - name: ResizeTopLeft - nameWithType: HitType.ResizeTopLeft - fullName: OpenTK.Core.Platform.HitType.ResizeTopLeft - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/HitType.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: ResizeTopLeft - path: opentk/src/OpenTK.Core/Platform/Enums/HitType.cs - startLine: 34 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: The top left resizeable part of the window. - example: [] - syntax: - content: ResizeTopLeft = 3 - return: - type: OpenTK.Core.Platform.HitType -- uid: OpenTK.Core.Platform.HitType.ResizeTop - commentId: F:OpenTK.Core.Platform.HitType.ResizeTop - id: ResizeTop - parent: OpenTK.Core.Platform.HitType - langs: - - csharp - - vb - name: ResizeTop - nameWithType: HitType.ResizeTop - fullName: OpenTK.Core.Platform.HitType.ResizeTop - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/HitType.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: ResizeTop - path: opentk/src/OpenTK.Core/Platform/Enums/HitType.cs - startLine: 39 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: The top resizeable part of the window. - example: [] - syntax: - content: ResizeTop = 4 - return: - type: OpenTK.Core.Platform.HitType -- uid: OpenTK.Core.Platform.HitType.ResizeTopRight - commentId: F:OpenTK.Core.Platform.HitType.ResizeTopRight - id: ResizeTopRight - parent: OpenTK.Core.Platform.HitType - langs: - - csharp - - vb - name: ResizeTopRight - nameWithType: HitType.ResizeTopRight - fullName: OpenTK.Core.Platform.HitType.ResizeTopRight - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/HitType.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: ResizeTopRight - path: opentk/src/OpenTK.Core/Platform/Enums/HitType.cs - startLine: 44 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: The top right resizeable part of the window. - example: [] - syntax: - content: ResizeTopRight = 5 - return: - type: OpenTK.Core.Platform.HitType -- uid: OpenTK.Core.Platform.HitType.ResizeRight - commentId: F:OpenTK.Core.Platform.HitType.ResizeRight - id: ResizeRight - parent: OpenTK.Core.Platform.HitType - langs: - - csharp - - vb - name: ResizeRight - nameWithType: HitType.ResizeRight - fullName: OpenTK.Core.Platform.HitType.ResizeRight - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/HitType.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: ResizeRight - path: opentk/src/OpenTK.Core/Platform/Enums/HitType.cs - startLine: 49 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: The right resizeable part of the window. - example: [] - syntax: - content: ResizeRight = 6 - return: - type: OpenTK.Core.Platform.HitType -- uid: OpenTK.Core.Platform.HitType.ResizeBottomRight - commentId: F:OpenTK.Core.Platform.HitType.ResizeBottomRight - id: ResizeBottomRight - parent: OpenTK.Core.Platform.HitType - langs: - - csharp - - vb - name: ResizeBottomRight - nameWithType: HitType.ResizeBottomRight - fullName: OpenTK.Core.Platform.HitType.ResizeBottomRight - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/HitType.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: ResizeBottomRight - path: opentk/src/OpenTK.Core/Platform/Enums/HitType.cs - startLine: 54 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: The bottom right resizeable part of the window. - example: [] - syntax: - content: ResizeBottomRight = 7 - return: - type: OpenTK.Core.Platform.HitType -- uid: OpenTK.Core.Platform.HitType.ResizeBottom - commentId: F:OpenTK.Core.Platform.HitType.ResizeBottom - id: ResizeBottom - parent: OpenTK.Core.Platform.HitType - langs: - - csharp - - vb - name: ResizeBottom - nameWithType: HitType.ResizeBottom - fullName: OpenTK.Core.Platform.HitType.ResizeBottom - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/HitType.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: ResizeBottom - path: opentk/src/OpenTK.Core/Platform/Enums/HitType.cs - startLine: 59 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: The bottom resizeable part of the window. - example: [] - syntax: - content: ResizeBottom = 8 - return: - type: OpenTK.Core.Platform.HitType -- uid: OpenTK.Core.Platform.HitType.ResizeBottomLeft - commentId: F:OpenTK.Core.Platform.HitType.ResizeBottomLeft - id: ResizeBottomLeft - parent: OpenTK.Core.Platform.HitType - langs: - - csharp - - vb - name: ResizeBottomLeft - nameWithType: HitType.ResizeBottomLeft - fullName: OpenTK.Core.Platform.HitType.ResizeBottomLeft - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/HitType.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: ResizeBottomLeft - path: opentk/src/OpenTK.Core/Platform/Enums/HitType.cs - startLine: 64 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: The bottom left resizeable part of the window. - example: [] - syntax: - content: ResizeBottomLeft = 9 - return: - type: OpenTK.Core.Platform.HitType -- uid: OpenTK.Core.Platform.HitType.ResizeLeft - commentId: F:OpenTK.Core.Platform.HitType.ResizeLeft - id: ResizeLeft - parent: OpenTK.Core.Platform.HitType - langs: - - csharp - - vb - name: ResizeLeft - nameWithType: HitType.ResizeLeft - fullName: OpenTK.Core.Platform.HitType.ResizeLeft - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/HitType.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: ResizeLeft - path: opentk/src/OpenTK.Core/Platform/Enums/HitType.cs - startLine: 69 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: The left resizeable part of the window. - example: [] - syntax: - content: ResizeLeft = 10 - return: - type: OpenTK.Core.Platform.HitType -references: -- uid: OpenTK.Core.Platform - commentId: N:OpenTK.Core.Platform - href: OpenTK.html - name: OpenTK.Core.Platform - nameWithType: OpenTK.Core.Platform - fullName: OpenTK.Core.Platform - spec.csharp: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform - name: Platform - href: OpenTK.Core.Platform.html - spec.vb: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform - name: Platform - href: OpenTK.Core.Platform.html -- uid: OpenTK.Core.Platform.HitType - commentId: T:OpenTK.Core.Platform.HitType - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.HitType.html - name: HitType - nameWithType: HitType - fullName: OpenTK.Core.Platform.HitType diff --git a/api/OpenTK.Core.Platform.IClipboardComponent.yml b/api/OpenTK.Core.Platform.IClipboardComponent.yml deleted file mode 100644 index 59e54d92..00000000 --- a/api/OpenTK.Core.Platform.IClipboardComponent.yml +++ /dev/null @@ -1,625 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: OpenTK.Core.Platform.IClipboardComponent - commentId: T:OpenTK.Core.Platform.IClipboardComponent - id: IClipboardComponent - parent: OpenTK.Core.Platform - children: - - OpenTK.Core.Platform.IClipboardComponent.GetClipboardAudio - - OpenTK.Core.Platform.IClipboardComponent.GetClipboardBitmap - - OpenTK.Core.Platform.IClipboardComponent.GetClipboardFiles - - OpenTK.Core.Platform.IClipboardComponent.GetClipboardFormat - - OpenTK.Core.Platform.IClipboardComponent.GetClipboardText - - OpenTK.Core.Platform.IClipboardComponent.SetClipboardText(System.String) - - OpenTK.Core.Platform.IClipboardComponent.SupportedFormats - langs: - - csharp - - vb - name: IClipboardComponent - nameWithType: IClipboardComponent - fullName: OpenTK.Core.Platform.IClipboardComponent - type: Interface - source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/IClipboardComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: IClipboardComponent - path: opentk/src/OpenTK.Core/Platform/Interfaces/IClipboardComponent.cs - startLine: 14 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Interface for drivers which provide the clipboard component of the platform abstraction layer. - example: [] - syntax: - content: 'public interface IClipboardComponent : IPalComponent' - content.vb: Public Interface IClipboardComponent Inherits IPalComponent - inheritedMembers: - - OpenTK.Core.Platform.IPalComponent.Name - - OpenTK.Core.Platform.IPalComponent.Provides - - OpenTK.Core.Platform.IPalComponent.Logger - - OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) -- uid: OpenTK.Core.Platform.IClipboardComponent.SupportedFormats - commentId: P:OpenTK.Core.Platform.IClipboardComponent.SupportedFormats - id: SupportedFormats - parent: OpenTK.Core.Platform.IClipboardComponent - langs: - - csharp - - vb - name: SupportedFormats - nameWithType: IClipboardComponent.SupportedFormats - fullName: OpenTK.Core.Platform.IClipboardComponent.SupportedFormats - type: Property - source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/IClipboardComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: SupportedFormats - path: opentk/src/OpenTK.Core/Platform/Interfaces/IClipboardComponent.cs - startLine: 19 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: A list of formats that this clipboard component supports. - example: [] - syntax: - content: IReadOnlyList SupportedFormats { get; } - parameters: [] - return: - type: System.Collections.Generic.IReadOnlyList{OpenTK.Core.Platform.ClipboardFormat} - content.vb: ReadOnly Property SupportedFormats As IReadOnlyList(Of ClipboardFormat) - overload: OpenTK.Core.Platform.IClipboardComponent.SupportedFormats* -- uid: OpenTK.Core.Platform.IClipboardComponent.GetClipboardFormat - commentId: M:OpenTK.Core.Platform.IClipboardComponent.GetClipboardFormat - id: GetClipboardFormat - parent: OpenTK.Core.Platform.IClipboardComponent - langs: - - csharp - - vb - name: GetClipboardFormat() - nameWithType: IClipboardComponent.GetClipboardFormat() - fullName: OpenTK.Core.Platform.IClipboardComponent.GetClipboardFormat() - type: Method - source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/IClipboardComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: GetClipboardFormat - path: opentk/src/OpenTK.Core/Platform/Interfaces/IClipboardComponent.cs - startLine: 25 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Gets the format of the data currently in the clipboard. - example: [] - syntax: - content: ClipboardFormat GetClipboardFormat() - return: - type: OpenTK.Core.Platform.ClipboardFormat - description: The format of the data currently in the clipboard. - content.vb: Function GetClipboardFormat() As ClipboardFormat - overload: OpenTK.Core.Platform.IClipboardComponent.GetClipboardFormat* -- uid: OpenTK.Core.Platform.IClipboardComponent.SetClipboardText(System.String) - commentId: M:OpenTK.Core.Platform.IClipboardComponent.SetClipboardText(System.String) - id: SetClipboardText(System.String) - parent: OpenTK.Core.Platform.IClipboardComponent - langs: - - csharp - - vb - name: SetClipboardText(string) - nameWithType: IClipboardComponent.SetClipboardText(string) - fullName: OpenTK.Core.Platform.IClipboardComponent.SetClipboardText(string) - type: Method - source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/IClipboardComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: SetClipboardText - path: opentk/src/OpenTK.Core/Platform/Interfaces/IClipboardComponent.cs - startLine: 31 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Sets the string currently in the clipboard. - example: [] - syntax: - content: void SetClipboardText(string text) - parameters: - - id: text - type: System.String - description: The text to put on the clipboard. - content.vb: Sub SetClipboardText(text As String) - overload: OpenTK.Core.Platform.IClipboardComponent.SetClipboardText* - nameWithType.vb: IClipboardComponent.SetClipboardText(String) - fullName.vb: OpenTK.Core.Platform.IClipboardComponent.SetClipboardText(String) - name.vb: SetClipboardText(String) -- uid: OpenTK.Core.Platform.IClipboardComponent.GetClipboardText - commentId: M:OpenTK.Core.Platform.IClipboardComponent.GetClipboardText - id: GetClipboardText - parent: OpenTK.Core.Platform.IClipboardComponent - langs: - - csharp - - vb - name: GetClipboardText() - nameWithType: IClipboardComponent.GetClipboardText() - fullName: OpenTK.Core.Platform.IClipboardComponent.GetClipboardText() - type: Method - source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/IClipboardComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: GetClipboardText - path: opentk/src/OpenTK.Core/Platform/Interfaces/IClipboardComponent.cs - startLine: 38 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: >- - Returns the string currently in the clipboard. - - This function returns null if the current clipboard data doesn't have the format. - example: [] - syntax: - content: string? GetClipboardText() - return: - type: System.String - description: The string currently in the clipboard, or null. - content.vb: Function GetClipboardText() As String - overload: OpenTK.Core.Platform.IClipboardComponent.GetClipboardText* -- uid: OpenTK.Core.Platform.IClipboardComponent.GetClipboardAudio - commentId: M:OpenTK.Core.Platform.IClipboardComponent.GetClipboardAudio - id: GetClipboardAudio - parent: OpenTK.Core.Platform.IClipboardComponent - langs: - - csharp - - vb - name: GetClipboardAudio() - nameWithType: IClipboardComponent.GetClipboardAudio() - fullName: OpenTK.Core.Platform.IClipboardComponent.GetClipboardAudio() - type: Method - source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/IClipboardComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: GetClipboardAudio - path: opentk/src/OpenTK.Core/Platform/Interfaces/IClipboardComponent.cs - startLine: 45 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: >- - Gets the audio data currently in the clipboard. - - This function returns null if the current clipboard data doesn't have the format. - example: [] - syntax: - content: AudioData? GetClipboardAudio() - return: - type: OpenTK.Core.Platform.AudioData - description: The audio data currently in the clipboard. - content.vb: Function GetClipboardAudio() As AudioData - overload: OpenTK.Core.Platform.IClipboardComponent.GetClipboardAudio* -- uid: OpenTK.Core.Platform.IClipboardComponent.GetClipboardBitmap - commentId: M:OpenTK.Core.Platform.IClipboardComponent.GetClipboardBitmap - id: GetClipboardBitmap - parent: OpenTK.Core.Platform.IClipboardComponent - langs: - - csharp - - vb - name: GetClipboardBitmap() - nameWithType: IClipboardComponent.GetClipboardBitmap() - fullName: OpenTK.Core.Platform.IClipboardComponent.GetClipboardBitmap() - type: Method - source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/IClipboardComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: GetClipboardBitmap - path: opentk/src/OpenTK.Core/Platform/Interfaces/IClipboardComponent.cs - startLine: 53 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: >- - Gets the bitmap currently in the clipboard. - - This function returns null if the current clipboard data doesn't have the format. - example: [] - syntax: - content: Bitmap? GetClipboardBitmap() - return: - type: OpenTK.Core.Platform.Bitmap - description: The bitmap currently in the clipboard. - content.vb: Function GetClipboardBitmap() As Bitmap - overload: OpenTK.Core.Platform.IClipboardComponent.GetClipboardBitmap* -- uid: OpenTK.Core.Platform.IClipboardComponent.GetClipboardFiles - commentId: M:OpenTK.Core.Platform.IClipboardComponent.GetClipboardFiles - id: GetClipboardFiles - parent: OpenTK.Core.Platform.IClipboardComponent - langs: - - csharp - - vb - name: GetClipboardFiles() - nameWithType: IClipboardComponent.GetClipboardFiles() - fullName: OpenTK.Core.Platform.IClipboardComponent.GetClipboardFiles() - type: Method - source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/IClipboardComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: GetClipboardFiles - path: opentk/src/OpenTK.Core/Platform/Interfaces/IClipboardComponent.cs - startLine: 60 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: >- - Gets a list of files and directories currently in the clipboard. - - This function returns null if the current clipboard data doesn't have the format. - example: [] - syntax: - content: List? GetClipboardFiles() - return: - type: System.Collections.Generic.List{System.String} - description: The list of files and directories currently in the clipboard. - content.vb: Function GetClipboardFiles() As List(Of String) - overload: OpenTK.Core.Platform.IClipboardComponent.GetClipboardFiles* -references: -- uid: OpenTK.Core.Platform - commentId: N:OpenTK.Core.Platform - href: OpenTK.html - name: OpenTK.Core.Platform - nameWithType: OpenTK.Core.Platform - fullName: OpenTK.Core.Platform - spec.csharp: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform - name: Platform - href: OpenTK.Core.Platform.html - spec.vb: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform - name: Platform - href: OpenTK.Core.Platform.html -- uid: OpenTK.Core.Platform.IPalComponent.Name - commentId: P:OpenTK.Core.Platform.IPalComponent.Name - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Name - name: Name - nameWithType: IPalComponent.Name - fullName: OpenTK.Core.Platform.IPalComponent.Name -- uid: OpenTK.Core.Platform.IPalComponent.Provides - commentId: P:OpenTK.Core.Platform.IPalComponent.Provides - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Provides - name: Provides - nameWithType: IPalComponent.Provides - fullName: OpenTK.Core.Platform.IPalComponent.Provides -- uid: OpenTK.Core.Platform.IPalComponent.Logger - commentId: P:OpenTK.Core.Platform.IPalComponent.Logger - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Logger - name: Logger - nameWithType: IPalComponent.Logger - fullName: OpenTK.Core.Platform.IPalComponent.Logger -- uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - commentId: M:OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ - name: Initialize(ToolkitOptions) - nameWithType: IPalComponent.Initialize(ToolkitOptions) - fullName: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - spec.csharp: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ - - name: ( - - uid: OpenTK.Core.Platform.ToolkitOptions - name: ToolkitOptions - href: OpenTK.Core.Platform.ToolkitOptions.html - - name: ) - spec.vb: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ - - name: ( - - uid: OpenTK.Core.Platform.ToolkitOptions - name: ToolkitOptions - href: OpenTK.Core.Platform.ToolkitOptions.html - - name: ) -- uid: OpenTK.Core.Platform.IPalComponent - commentId: T:OpenTK.Core.Platform.IPalComponent - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.IPalComponent.html - name: IPalComponent - nameWithType: IPalComponent - fullName: OpenTK.Core.Platform.IPalComponent -- uid: OpenTK.Core.Platform.IClipboardComponent.SupportedFormats* - commentId: Overload:OpenTK.Core.Platform.IClipboardComponent.SupportedFormats - href: OpenTK.Core.Platform.IClipboardComponent.html#OpenTK_Core_Platform_IClipboardComponent_SupportedFormats - name: SupportedFormats - nameWithType: IClipboardComponent.SupportedFormats - fullName: OpenTK.Core.Platform.IClipboardComponent.SupportedFormats -- uid: System.Collections.Generic.IReadOnlyList{OpenTK.Core.Platform.ClipboardFormat} - commentId: T:System.Collections.Generic.IReadOnlyList{OpenTK.Core.Platform.ClipboardFormat} - parent: System.Collections.Generic - definition: System.Collections.Generic.IReadOnlyList`1 - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 - name: IReadOnlyList - nameWithType: IReadOnlyList - fullName: System.Collections.Generic.IReadOnlyList - nameWithType.vb: IReadOnlyList(Of ClipboardFormat) - fullName.vb: System.Collections.Generic.IReadOnlyList(Of OpenTK.Core.Platform.ClipboardFormat) - name.vb: IReadOnlyList(Of ClipboardFormat) - spec.csharp: - - uid: System.Collections.Generic.IReadOnlyList`1 - name: IReadOnlyList - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 - - name: < - - uid: OpenTK.Core.Platform.ClipboardFormat - name: ClipboardFormat - href: OpenTK.Core.Platform.ClipboardFormat.html - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IReadOnlyList`1 - name: IReadOnlyList - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 - - name: ( - - name: Of - - name: " " - - uid: OpenTK.Core.Platform.ClipboardFormat - name: ClipboardFormat - href: OpenTK.Core.Platform.ClipboardFormat.html - - name: ) -- uid: System.Collections.Generic.IReadOnlyList`1 - commentId: T:System.Collections.Generic.IReadOnlyList`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 - name: IReadOnlyList - nameWithType: IReadOnlyList - fullName: System.Collections.Generic.IReadOnlyList - nameWithType.vb: IReadOnlyList(Of T) - fullName.vb: System.Collections.Generic.IReadOnlyList(Of T) - name.vb: IReadOnlyList(Of T) - spec.csharp: - - uid: System.Collections.Generic.IReadOnlyList`1 - name: IReadOnlyList - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IReadOnlyList`1 - name: IReadOnlyList - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: System.Collections.Generic - commentId: N:System.Collections.Generic - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System.Collections.Generic - nameWithType: System.Collections.Generic - fullName: System.Collections.Generic - spec.csharp: - - uid: System - name: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - - name: . - - uid: System.Collections - name: Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections - - name: . - - uid: System.Collections.Generic - name: Generic - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic - spec.vb: - - uid: System - name: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - - name: . - - uid: System.Collections - name: Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections - - name: . - - uid: System.Collections.Generic - name: Generic - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic -- uid: OpenTK.Core.Platform.IClipboardComponent.GetClipboardFormat* - commentId: Overload:OpenTK.Core.Platform.IClipboardComponent.GetClipboardFormat - href: OpenTK.Core.Platform.IClipboardComponent.html#OpenTK_Core_Platform_IClipboardComponent_GetClipboardFormat - name: GetClipboardFormat - nameWithType: IClipboardComponent.GetClipboardFormat - fullName: OpenTK.Core.Platform.IClipboardComponent.GetClipboardFormat -- uid: OpenTK.Core.Platform.ClipboardFormat - commentId: T:OpenTK.Core.Platform.ClipboardFormat - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.ClipboardFormat.html - name: ClipboardFormat - nameWithType: ClipboardFormat - fullName: OpenTK.Core.Platform.ClipboardFormat -- uid: OpenTK.Core.Platform.IClipboardComponent.SetClipboardText* - commentId: Overload:OpenTK.Core.Platform.IClipboardComponent.SetClipboardText - href: OpenTK.Core.Platform.IClipboardComponent.html#OpenTK_Core_Platform_IClipboardComponent_SetClipboardText_System_String_ - name: SetClipboardText - nameWithType: IClipboardComponent.SetClipboardText - fullName: OpenTK.Core.Platform.IClipboardComponent.SetClipboardText -- uid: System.String - commentId: T:System.String - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - name: string - nameWithType: string - fullName: string - nameWithType.vb: String - fullName.vb: String - name.vb: String -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: OpenTK.Core.Platform.ClipboardFormat.Text - commentId: F:OpenTK.Core.Platform.ClipboardFormat.Text - href: OpenTK.Core.Platform.ClipboardFormat.html#OpenTK_Core_Platform_ClipboardFormat_Text - name: Text - nameWithType: ClipboardFormat.Text - fullName: OpenTK.Core.Platform.ClipboardFormat.Text -- uid: OpenTK.Core.Platform.IClipboardComponent.GetClipboardText* - commentId: Overload:OpenTK.Core.Platform.IClipboardComponent.GetClipboardText - href: OpenTK.Core.Platform.IClipboardComponent.html#OpenTK_Core_Platform_IClipboardComponent_GetClipboardText - name: GetClipboardText - nameWithType: IClipboardComponent.GetClipboardText - fullName: OpenTK.Core.Platform.IClipboardComponent.GetClipboardText -- uid: OpenTK.Core.Platform.ClipboardFormat.Audio - commentId: F:OpenTK.Core.Platform.ClipboardFormat.Audio - href: OpenTK.Core.Platform.ClipboardFormat.html#OpenTK_Core_Platform_ClipboardFormat_Audio - name: Audio - nameWithType: ClipboardFormat.Audio - fullName: OpenTK.Core.Platform.ClipboardFormat.Audio -- uid: OpenTK.Core.Platform.IClipboardComponent.GetClipboardAudio* - commentId: Overload:OpenTK.Core.Platform.IClipboardComponent.GetClipboardAudio - href: OpenTK.Core.Platform.IClipboardComponent.html#OpenTK_Core_Platform_IClipboardComponent_GetClipboardAudio - name: GetClipboardAudio - nameWithType: IClipboardComponent.GetClipboardAudio - fullName: OpenTK.Core.Platform.IClipboardComponent.GetClipboardAudio -- uid: OpenTK.Core.Platform.AudioData - commentId: T:OpenTK.Core.Platform.AudioData - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.AudioData.html - name: AudioData - nameWithType: AudioData - fullName: OpenTK.Core.Platform.AudioData -- uid: OpenTK.Core.Platform.ClipboardFormat.Bitmap - commentId: F:OpenTK.Core.Platform.ClipboardFormat.Bitmap - href: OpenTK.Core.Platform.ClipboardFormat.html#OpenTK_Core_Platform_ClipboardFormat_Bitmap - name: Bitmap - nameWithType: ClipboardFormat.Bitmap - fullName: OpenTK.Core.Platform.ClipboardFormat.Bitmap -- uid: OpenTK.Core.Platform.IClipboardComponent.GetClipboardBitmap* - commentId: Overload:OpenTK.Core.Platform.IClipboardComponent.GetClipboardBitmap - href: OpenTK.Core.Platform.IClipboardComponent.html#OpenTK_Core_Platform_IClipboardComponent_GetClipboardBitmap - name: GetClipboardBitmap - nameWithType: IClipboardComponent.GetClipboardBitmap - fullName: OpenTK.Core.Platform.IClipboardComponent.GetClipboardBitmap -- uid: OpenTK.Core.Platform.Bitmap - commentId: T:OpenTK.Core.Platform.Bitmap - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.Bitmap.html - name: Bitmap - nameWithType: Bitmap - fullName: OpenTK.Core.Platform.Bitmap -- uid: OpenTK.Core.Platform.ClipboardFormat.Files - commentId: F:OpenTK.Core.Platform.ClipboardFormat.Files - href: OpenTK.Core.Platform.ClipboardFormat.html#OpenTK_Core_Platform_ClipboardFormat_Files - name: Files - nameWithType: ClipboardFormat.Files - fullName: OpenTK.Core.Platform.ClipboardFormat.Files -- uid: OpenTK.Core.Platform.IClipboardComponent.GetClipboardFiles* - commentId: Overload:OpenTK.Core.Platform.IClipboardComponent.GetClipboardFiles - href: OpenTK.Core.Platform.IClipboardComponent.html#OpenTK_Core_Platform_IClipboardComponent_GetClipboardFiles - name: GetClipboardFiles - nameWithType: IClipboardComponent.GetClipboardFiles - fullName: OpenTK.Core.Platform.IClipboardComponent.GetClipboardFiles -- uid: System.Collections.Generic.List{System.String} - commentId: T:System.Collections.Generic.List{System.String} - parent: System.Collections.Generic - definition: System.Collections.Generic.List`1 - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 - name: List - nameWithType: List - fullName: System.Collections.Generic.List - nameWithType.vb: List(Of String) - fullName.vb: System.Collections.Generic.List(Of String) - name.vb: List(Of String) - spec.csharp: - - uid: System.Collections.Generic.List`1 - name: List - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 - - name: < - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: '>' - spec.vb: - - uid: System.Collections.Generic.List`1 - name: List - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 - - name: ( - - name: Of - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: System.Collections.Generic.List`1 - commentId: T:System.Collections.Generic.List`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 - name: List - nameWithType: List - fullName: System.Collections.Generic.List - nameWithType.vb: List(Of T) - fullName.vb: System.Collections.Generic.List(Of T) - name.vb: List(Of T) - spec.csharp: - - uid: System.Collections.Generic.List`1 - name: List - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.Collections.Generic.List`1 - name: List - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) diff --git a/api/OpenTK.Core.Platform.ICursorComponent.yml b/api/OpenTK.Core.Platform.ICursorComponent.yml deleted file mode 100644 index 39e6619e..00000000 --- a/api/OpenTK.Core.Platform.ICursorComponent.yml +++ /dev/null @@ -1,908 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: OpenTK.Core.Platform.ICursorComponent - commentId: T:OpenTK.Core.Platform.ICursorComponent - id: ICursorComponent - parent: OpenTK.Core.Platform - children: - - OpenTK.Core.Platform.ICursorComponent.CanInspectSystemCursors - - OpenTK.Core.Platform.ICursorComponent.CanLoadSystemCursors - - OpenTK.Core.Platform.ICursorComponent.Create(OpenTK.Core.Platform.SystemCursorType) - - OpenTK.Core.Platform.ICursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.Int32,System.Int32) - - OpenTK.Core.Platform.ICursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.ReadOnlySpan{System.Byte},System.Int32,System.Int32) - - OpenTK.Core.Platform.ICursorComponent.Destroy(OpenTK.Core.Platform.CursorHandle) - - OpenTK.Core.Platform.ICursorComponent.GetHotspot(OpenTK.Core.Platform.CursorHandle,System.Int32@,System.Int32@) - - OpenTK.Core.Platform.ICursorComponent.GetSize(OpenTK.Core.Platform.CursorHandle,System.Int32@,System.Int32@) - - OpenTK.Core.Platform.ICursorComponent.IsSystemCursor(OpenTK.Core.Platform.CursorHandle) - langs: - - csharp - - vb - name: ICursorComponent - nameWithType: ICursorComponent - fullName: OpenTK.Core.Platform.ICursorComponent - type: Interface - source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/ICursorComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: ICursorComponent - path: opentk/src/OpenTK.Core/Platform/Interfaces/ICursorComponent.cs - startLine: 8 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Interface for drivers which provide the cursor component of the platform abstraction layer. - example: [] - syntax: - content: 'public interface ICursorComponent : IPalComponent' - content.vb: Public Interface ICursorComponent Inherits IPalComponent - inheritedMembers: - - OpenTK.Core.Platform.IPalComponent.Name - - OpenTK.Core.Platform.IPalComponent.Provides - - OpenTK.Core.Platform.IPalComponent.Logger - - OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) -- uid: OpenTK.Core.Platform.ICursorComponent.CanLoadSystemCursors - commentId: P:OpenTK.Core.Platform.ICursorComponent.CanLoadSystemCursors - id: CanLoadSystemCursors - parent: OpenTK.Core.Platform.ICursorComponent - langs: - - csharp - - vb - name: CanLoadSystemCursors - nameWithType: ICursorComponent.CanLoadSystemCursors - fullName: OpenTK.Core.Platform.ICursorComponent.CanLoadSystemCursors - type: Property - source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/ICursorComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: CanLoadSystemCursors - path: opentk/src/OpenTK.Core/Platform/Interfaces/ICursorComponent.cs - startLine: 14 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: True if the driver can load system cursors. - example: [] - syntax: - content: bool CanLoadSystemCursors { get; } - parameters: [] - return: - type: System.Boolean - content.vb: ReadOnly Property CanLoadSystemCursors As Boolean - overload: OpenTK.Core.Platform.ICursorComponent.CanLoadSystemCursors* - seealso: - - linkId: OpenTK.Core.Platform.ICursorComponent.Create(OpenTK.Core.Platform.SystemCursorType) - commentId: M:OpenTK.Core.Platform.ICursorComponent.Create(OpenTK.Core.Platform.SystemCursorType) -- uid: OpenTK.Core.Platform.ICursorComponent.CanInspectSystemCursors - commentId: P:OpenTK.Core.Platform.ICursorComponent.CanInspectSystemCursors - id: CanInspectSystemCursors - parent: OpenTK.Core.Platform.ICursorComponent - langs: - - csharp - - vb - name: CanInspectSystemCursors - nameWithType: ICursorComponent.CanInspectSystemCursors - fullName: OpenTK.Core.Platform.ICursorComponent.CanInspectSystemCursors - type: Property - source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/ICursorComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: CanInspectSystemCursors - path: opentk/src/OpenTK.Core/Platform/Interfaces/ICursorComponent.cs - startLine: 23 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: >- - True if the backend supports inspecting system cursor handles. - - If true, functions like and works on system cursors. - - If false, these functions will fail. - example: [] - syntax: - content: bool CanInspectSystemCursors { get; } - parameters: [] - return: - type: System.Boolean - content.vb: ReadOnly Property CanInspectSystemCursors As Boolean - overload: OpenTK.Core.Platform.ICursorComponent.CanInspectSystemCursors* - seealso: - - linkId: OpenTK.Core.Platform.ICursorComponent.GetSize(OpenTK.Core.Platform.CursorHandle,System.Int32@,System.Int32@) - commentId: M:OpenTK.Core.Platform.ICursorComponent.GetSize(OpenTK.Core.Platform.CursorHandle,System.Int32@,System.Int32@) - - linkId: OpenTK.Core.Platform.ICursorComponent.GetHotspot(OpenTK.Core.Platform.CursorHandle,System.Int32@,System.Int32@) - commentId: M:OpenTK.Core.Platform.ICursorComponent.GetHotspot(OpenTK.Core.Platform.CursorHandle,System.Int32@,System.Int32@) -- uid: OpenTK.Core.Platform.ICursorComponent.Create(OpenTK.Core.Platform.SystemCursorType) - commentId: M:OpenTK.Core.Platform.ICursorComponent.Create(OpenTK.Core.Platform.SystemCursorType) - id: Create(OpenTK.Core.Platform.SystemCursorType) - parent: OpenTK.Core.Platform.ICursorComponent - langs: - - csharp - - vb - name: Create(SystemCursorType) - nameWithType: ICursorComponent.Create(SystemCursorType) - fullName: OpenTK.Core.Platform.ICursorComponent.Create(OpenTK.Core.Platform.SystemCursorType) - type: Method - source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/ICursorComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Create - path: opentk/src/OpenTK.Core/Platform/Interfaces/ICursorComponent.cs - startLine: 38 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Create a standard system cursor. - remarks: This function is only supported if is true. - example: [] - syntax: - content: CursorHandle Create(SystemCursorType systemCursor) - parameters: - - id: systemCursor - type: OpenTK.Core.Platform.SystemCursorType - description: Type of the standard cursor to load. - return: - type: OpenTK.Core.Platform.CursorHandle - description: A handle to the created cursor. - content.vb: Function Create(systemCursor As SystemCursorType) As CursorHandle - overload: OpenTK.Core.Platform.ICursorComponent.Create* - exceptions: - - type: OpenTK.Core.Platform.PalNotImplementedException - commentId: T:OpenTK.Core.Platform.PalNotImplementedException - description: Driver does not implement this function. See . - - type: OpenTK.Core.Platform.PlatformException - commentId: T:OpenTK.Core.Platform.PlatformException - description: System does not provide cursor type selected by systemCursor. -- uid: OpenTK.Core.Platform.ICursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.Int32,System.Int32) - commentId: M:OpenTK.Core.Platform.ICursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.Int32,System.Int32) - id: Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.Int32,System.Int32) - parent: OpenTK.Core.Platform.ICursorComponent - langs: - - csharp - - vb - name: Create(int, int, ReadOnlySpan, int, int) - nameWithType: ICursorComponent.Create(int, int, ReadOnlySpan, int, int) - fullName: OpenTK.Core.Platform.ICursorComponent.Create(int, int, System.ReadOnlySpan, int, int) - type: Method - source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/ICursorComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Create - path: opentk/src/OpenTK.Core/Platform/Interfaces/ICursorComponent.cs - startLine: 51 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Load a cursor image from memory. - example: [] - syntax: - content: CursorHandle Create(int width, int height, ReadOnlySpan image, int hotspotX, int hotspotY) - parameters: - - id: width - type: System.Int32 - description: Width of the cursor image. - - id: height - type: System.Int32 - description: Height of the cursor image. - - id: image - type: System.ReadOnlySpan{System.Byte} - description: Buffer containing image data. - - id: hotspotX - type: System.Int32 - description: The x coordinate of the cursor hotspot. - - id: hotspotY - type: System.Int32 - description: The y coordinate of the cursor hotspot. - return: - type: OpenTK.Core.Platform.CursorHandle - description: A handle to the created cursor. - content.vb: Function Create(width As Integer, height As Integer, image As ReadOnlySpan(Of Byte), hotspotX As Integer, hotspotY As Integer) As CursorHandle - overload: OpenTK.Core.Platform.ICursorComponent.Create* - exceptions: - - type: System.ArgumentOutOfRangeException - commentId: T:System.ArgumentOutOfRangeException - description: width or height is negative. - - type: System.ArgumentException - commentId: T:System.ArgumentException - description: image is smaller than specified dimensions. - nameWithType.vb: ICursorComponent.Create(Integer, Integer, ReadOnlySpan(Of Byte), Integer, Integer) - fullName.vb: OpenTK.Core.Platform.ICursorComponent.Create(Integer, Integer, System.ReadOnlySpan(Of Byte), Integer, Integer) - name.vb: Create(Integer, Integer, ReadOnlySpan(Of Byte), Integer, Integer) -- uid: OpenTK.Core.Platform.ICursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.ReadOnlySpan{System.Byte},System.Int32,System.Int32) - commentId: M:OpenTK.Core.Platform.ICursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.ReadOnlySpan{System.Byte},System.Int32,System.Int32) - id: Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.ReadOnlySpan{System.Byte},System.Int32,System.Int32) - parent: OpenTK.Core.Platform.ICursorComponent - langs: - - csharp - - vb - name: Create(int, int, ReadOnlySpan, ReadOnlySpan, int, int) - nameWithType: ICursorComponent.Create(int, int, ReadOnlySpan, ReadOnlySpan, int, int) - fullName: OpenTK.Core.Platform.ICursorComponent.Create(int, int, System.ReadOnlySpan, System.ReadOnlySpan, int, int) - type: Method - source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/ICursorComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Create - path: opentk/src/OpenTK.Core/Platform/Interfaces/ICursorComponent.cs - startLine: 67 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Load a cursor image from memory. - example: [] - syntax: - content: CursorHandle Create(int width, int height, ReadOnlySpan colorData, ReadOnlySpan maskData, int hotspotX, int hotspotY) - parameters: - - id: width - type: System.Int32 - description: Width of the cursor image. - - id: height - type: System.Int32 - description: Height of the cursor image. - - id: colorData - type: System.ReadOnlySpan{System.Byte} - description: Buffer containing color data. - - id: maskData - type: System.ReadOnlySpan{System.Byte} - description: Buffer containing mask data. - - id: hotspotX - type: System.Int32 - description: The x coordinate of the cursor hotspot. - - id: hotspotY - type: System.Int32 - description: The y coordinate of the cursor hotspot. - return: - type: OpenTK.Core.Platform.CursorHandle - description: A handle to the created handle. - content.vb: Function Create(width As Integer, height As Integer, colorData As ReadOnlySpan(Of Byte), maskData As ReadOnlySpan(Of Byte), hotspotX As Integer, hotspotY As Integer) As CursorHandle - overload: OpenTK.Core.Platform.ICursorComponent.Create* - exceptions: - - type: System.ArgumentOutOfRangeException - commentId: T:System.ArgumentOutOfRangeException - description: width or height is negative. - - type: System.ArgumentException - commentId: T:System.ArgumentException - description: colorData or maskData is smaller than specified dimensions. - nameWithType.vb: ICursorComponent.Create(Integer, Integer, ReadOnlySpan(Of Byte), ReadOnlySpan(Of Byte), Integer, Integer) - fullName.vb: OpenTK.Core.Platform.ICursorComponent.Create(Integer, Integer, System.ReadOnlySpan(Of Byte), System.ReadOnlySpan(Of Byte), Integer, Integer) - name.vb: Create(Integer, Integer, ReadOnlySpan(Of Byte), ReadOnlySpan(Of Byte), Integer, Integer) -- uid: OpenTK.Core.Platform.ICursorComponent.Destroy(OpenTK.Core.Platform.CursorHandle) - commentId: M:OpenTK.Core.Platform.ICursorComponent.Destroy(OpenTK.Core.Platform.CursorHandle) - id: Destroy(OpenTK.Core.Platform.CursorHandle) - parent: OpenTK.Core.Platform.ICursorComponent - langs: - - csharp - - vb - name: Destroy(CursorHandle) - nameWithType: ICursorComponent.Destroy(CursorHandle) - fullName: OpenTK.Core.Platform.ICursorComponent.Destroy(OpenTK.Core.Platform.CursorHandle) - type: Method - source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/ICursorComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Destroy - path: opentk/src/OpenTK.Core/Platform/Interfaces/ICursorComponent.cs - startLine: 74 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Destroy a cursor object. - example: [] - syntax: - content: void Destroy(CursorHandle handle) - parameters: - - id: handle - type: OpenTK.Core.Platform.CursorHandle - description: Handle to a cursor object. - content.vb: Sub Destroy(handle As CursorHandle) - overload: OpenTK.Core.Platform.ICursorComponent.Destroy* - exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: handle is null. -- uid: OpenTK.Core.Platform.ICursorComponent.IsSystemCursor(OpenTK.Core.Platform.CursorHandle) - commentId: M:OpenTK.Core.Platform.ICursorComponent.IsSystemCursor(OpenTK.Core.Platform.CursorHandle) - id: IsSystemCursor(OpenTK.Core.Platform.CursorHandle) - parent: OpenTK.Core.Platform.ICursorComponent - langs: - - csharp - - vb - name: IsSystemCursor(CursorHandle) - nameWithType: ICursorComponent.IsSystemCursor(CursorHandle) - fullName: OpenTK.Core.Platform.ICursorComponent.IsSystemCursor(OpenTK.Core.Platform.CursorHandle) - type: Method - source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/ICursorComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: IsSystemCursor - path: opentk/src/OpenTK.Core/Platform/Interfaces/ICursorComponent.cs - startLine: 82 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Returns true if this cursor is a system cursor. - example: [] - syntax: - content: bool IsSystemCursor(CursorHandle handle) - parameters: - - id: handle - type: OpenTK.Core.Platform.CursorHandle - description: Handle to a cursor. - return: - type: System.Boolean - description: If the cursor is a system cursor or not. - content.vb: Function IsSystemCursor(handle As CursorHandle) As Boolean - overload: OpenTK.Core.Platform.ICursorComponent.IsSystemCursor* - seealso: - - linkId: OpenTK.Core.Platform.ICursorComponent.Create(OpenTK.Core.Platform.SystemCursorType) - commentId: M:OpenTK.Core.Platform.ICursorComponent.Create(OpenTK.Core.Platform.SystemCursorType) -- uid: OpenTK.Core.Platform.ICursorComponent.GetSize(OpenTK.Core.Platform.CursorHandle,System.Int32@,System.Int32@) - commentId: M:OpenTK.Core.Platform.ICursorComponent.GetSize(OpenTK.Core.Platform.CursorHandle,System.Int32@,System.Int32@) - id: GetSize(OpenTK.Core.Platform.CursorHandle,System.Int32@,System.Int32@) - parent: OpenTK.Core.Platform.ICursorComponent - langs: - - csharp - - vb - name: GetSize(CursorHandle, out int, out int) - nameWithType: ICursorComponent.GetSize(CursorHandle, out int, out int) - fullName: OpenTK.Core.Platform.ICursorComponent.GetSize(OpenTK.Core.Platform.CursorHandle, out int, out int) - type: Method - source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/ICursorComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: GetSize - path: opentk/src/OpenTK.Core/Platform/Interfaces/ICursorComponent.cs - startLine: 96 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Get the size of the cursor image. - remarks: If handle is a system cursor and is false this function will fail. - example: [] - syntax: - content: void GetSize(CursorHandle handle, out int width, out int height) - parameters: - - id: handle - type: OpenTK.Core.Platform.CursorHandle - description: Handle to a cursor object. - - id: width - type: System.Int32 - description: Width of the cursor. - - id: height - type: System.Int32 - description: Height of the cursor. - content.vb: Sub GetSize(handle As CursorHandle, width As Integer, height As Integer) - overload: OpenTK.Core.Platform.ICursorComponent.GetSize* - exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: handle is null. - seealso: - - linkId: OpenTK.Core.Platform.ICursorComponent.IsSystemCursor(OpenTK.Core.Platform.CursorHandle) - commentId: M:OpenTK.Core.Platform.ICursorComponent.IsSystemCursor(OpenTK.Core.Platform.CursorHandle) - - linkId: OpenTK.Core.Platform.ICursorComponent.CanInspectSystemCursors - commentId: P:OpenTK.Core.Platform.ICursorComponent.CanInspectSystemCursors - nameWithType.vb: ICursorComponent.GetSize(CursorHandle, Integer, Integer) - fullName.vb: OpenTK.Core.Platform.ICursorComponent.GetSize(OpenTK.Core.Platform.CursorHandle, Integer, Integer) - name.vb: GetSize(CursorHandle, Integer, Integer) -- uid: OpenTK.Core.Platform.ICursorComponent.GetHotspot(OpenTK.Core.Platform.CursorHandle,System.Int32@,System.Int32@) - commentId: M:OpenTK.Core.Platform.ICursorComponent.GetHotspot(OpenTK.Core.Platform.CursorHandle,System.Int32@,System.Int32@) - id: GetHotspot(OpenTK.Core.Platform.CursorHandle,System.Int32@,System.Int32@) - parent: OpenTK.Core.Platform.ICursorComponent - langs: - - csharp - - vb - name: GetHotspot(CursorHandle, out int, out int) - nameWithType: ICursorComponent.GetHotspot(CursorHandle, out int, out int) - fullName: OpenTK.Core.Platform.ICursorComponent.GetHotspot(OpenTK.Core.Platform.CursorHandle, out int, out int) - type: Method - source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/ICursorComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: GetHotspot - path: opentk/src/OpenTK.Core/Platform/Interfaces/ICursorComponent.cs - startLine: 111 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: >- - Get the hotspot location of the mouse cursor. - - Getting the hotspot of a system cursor is not guaranteed to be possible, check before trying. - remarks: If handle is a system cursor and is false this function will fail. - example: [] - syntax: - content: void GetHotspot(CursorHandle handle, out int x, out int y) - parameters: - - id: handle - type: OpenTK.Core.Platform.CursorHandle - description: Handle to a cursor object. - - id: x - type: System.Int32 - description: X coordinate of the hotspot. - - id: y - type: System.Int32 - description: Y coordinate of the hotspot. - content.vb: Sub GetHotspot(handle As CursorHandle, x As Integer, y As Integer) - overload: OpenTK.Core.Platform.ICursorComponent.GetHotspot* - exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: handle is null. - seealso: - - linkId: OpenTK.Core.Platform.ICursorComponent.IsSystemCursor(OpenTK.Core.Platform.CursorHandle) - commentId: M:OpenTK.Core.Platform.ICursorComponent.IsSystemCursor(OpenTK.Core.Platform.CursorHandle) - - linkId: OpenTK.Core.Platform.ICursorComponent.CanInspectSystemCursors - commentId: P:OpenTK.Core.Platform.ICursorComponent.CanInspectSystemCursors - nameWithType.vb: ICursorComponent.GetHotspot(CursorHandle, Integer, Integer) - fullName.vb: OpenTK.Core.Platform.ICursorComponent.GetHotspot(OpenTK.Core.Platform.CursorHandle, Integer, Integer) - name.vb: GetHotspot(CursorHandle, Integer, Integer) -references: -- uid: OpenTK.Core.Platform - commentId: N:OpenTK.Core.Platform - href: OpenTK.html - name: OpenTK.Core.Platform - nameWithType: OpenTK.Core.Platform - fullName: OpenTK.Core.Platform - spec.csharp: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform - name: Platform - href: OpenTK.Core.Platform.html - spec.vb: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform - name: Platform - href: OpenTK.Core.Platform.html -- uid: OpenTK.Core.Platform.IPalComponent.Name - commentId: P:OpenTK.Core.Platform.IPalComponent.Name - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Name - name: Name - nameWithType: IPalComponent.Name - fullName: OpenTK.Core.Platform.IPalComponent.Name -- uid: OpenTK.Core.Platform.IPalComponent.Provides - commentId: P:OpenTK.Core.Platform.IPalComponent.Provides - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Provides - name: Provides - nameWithType: IPalComponent.Provides - fullName: OpenTK.Core.Platform.IPalComponent.Provides -- uid: OpenTK.Core.Platform.IPalComponent.Logger - commentId: P:OpenTK.Core.Platform.IPalComponent.Logger - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Logger - name: Logger - nameWithType: IPalComponent.Logger - fullName: OpenTK.Core.Platform.IPalComponent.Logger -- uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - commentId: M:OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ - name: Initialize(ToolkitOptions) - nameWithType: IPalComponent.Initialize(ToolkitOptions) - fullName: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - spec.csharp: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ - - name: ( - - uid: OpenTK.Core.Platform.ToolkitOptions - name: ToolkitOptions - href: OpenTK.Core.Platform.ToolkitOptions.html - - name: ) - spec.vb: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ - - name: ( - - uid: OpenTK.Core.Platform.ToolkitOptions - name: ToolkitOptions - href: OpenTK.Core.Platform.ToolkitOptions.html - - name: ) -- uid: OpenTK.Core.Platform.IPalComponent - commentId: T:OpenTK.Core.Platform.IPalComponent - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.IPalComponent.html - name: IPalComponent - nameWithType: IPalComponent - fullName: OpenTK.Core.Platform.IPalComponent -- uid: OpenTK.Core.Platform.ICursorComponent.Create(OpenTK.Core.Platform.SystemCursorType) - commentId: M:OpenTK.Core.Platform.ICursorComponent.Create(OpenTK.Core.Platform.SystemCursorType) - parent: OpenTK.Core.Platform.ICursorComponent - href: OpenTK.Core.Platform.ICursorComponent.html#OpenTK_Core_Platform_ICursorComponent_Create_OpenTK_Core_Platform_SystemCursorType_ - name: Create(SystemCursorType) - nameWithType: ICursorComponent.Create(SystemCursorType) - fullName: OpenTK.Core.Platform.ICursorComponent.Create(OpenTK.Core.Platform.SystemCursorType) - spec.csharp: - - uid: OpenTK.Core.Platform.ICursorComponent.Create(OpenTK.Core.Platform.SystemCursorType) - name: Create - href: OpenTK.Core.Platform.ICursorComponent.html#OpenTK_Core_Platform_ICursorComponent_Create_OpenTK_Core_Platform_SystemCursorType_ - - name: ( - - uid: OpenTK.Core.Platform.SystemCursorType - name: SystemCursorType - href: OpenTK.Core.Platform.SystemCursorType.html - - name: ) - spec.vb: - - uid: OpenTK.Core.Platform.ICursorComponent.Create(OpenTK.Core.Platform.SystemCursorType) - name: Create - href: OpenTK.Core.Platform.ICursorComponent.html#OpenTK_Core_Platform_ICursorComponent_Create_OpenTK_Core_Platform_SystemCursorType_ - - name: ( - - uid: OpenTK.Core.Platform.SystemCursorType - name: SystemCursorType - href: OpenTK.Core.Platform.SystemCursorType.html - - name: ) -- uid: OpenTK.Core.Platform.ICursorComponent.CanLoadSystemCursors* - commentId: Overload:OpenTK.Core.Platform.ICursorComponent.CanLoadSystemCursors - href: OpenTK.Core.Platform.ICursorComponent.html#OpenTK_Core_Platform_ICursorComponent_CanLoadSystemCursors - name: CanLoadSystemCursors - nameWithType: ICursorComponent.CanLoadSystemCursors - fullName: OpenTK.Core.Platform.ICursorComponent.CanLoadSystemCursors -- uid: System.Boolean - commentId: T:System.Boolean - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - name: bool - nameWithType: bool - fullName: bool - nameWithType.vb: Boolean - fullName.vb: Boolean - name.vb: Boolean -- uid: OpenTK.Core.Platform.ICursorComponent - commentId: T:OpenTK.Core.Platform.ICursorComponent - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.ICursorComponent.html - name: ICursorComponent - nameWithType: ICursorComponent - fullName: OpenTK.Core.Platform.ICursorComponent -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: OpenTK.Core.Platform.ICursorComponent.GetSize(OpenTK.Core.Platform.CursorHandle,System.Int32@,System.Int32@) - commentId: M:OpenTK.Core.Platform.ICursorComponent.GetSize(OpenTK.Core.Platform.CursorHandle,System.Int32@,System.Int32@) - parent: OpenTK.Core.Platform.ICursorComponent - isExternal: true - href: OpenTK.Core.Platform.ICursorComponent.html#OpenTK_Core_Platform_ICursorComponent_GetSize_OpenTK_Core_Platform_CursorHandle_System_Int32__System_Int32__ - name: GetSize(CursorHandle, out int, out int) - nameWithType: ICursorComponent.GetSize(CursorHandle, out int, out int) - fullName: OpenTK.Core.Platform.ICursorComponent.GetSize(OpenTK.Core.Platform.CursorHandle, out int, out int) - nameWithType.vb: ICursorComponent.GetSize(CursorHandle, Integer, Integer) - fullName.vb: OpenTK.Core.Platform.ICursorComponent.GetSize(OpenTK.Core.Platform.CursorHandle, Integer, Integer) - name.vb: GetSize(CursorHandle, Integer, Integer) - spec.csharp: - - uid: OpenTK.Core.Platform.ICursorComponent.GetSize(OpenTK.Core.Platform.CursorHandle,System.Int32@,System.Int32@) - name: GetSize - href: OpenTK.Core.Platform.ICursorComponent.html#OpenTK_Core_Platform_ICursorComponent_GetSize_OpenTK_Core_Platform_CursorHandle_System_Int32__System_Int32__ - - name: ( - - uid: OpenTK.Core.Platform.CursorHandle - name: CursorHandle - href: OpenTK.Core.Platform.CursorHandle.html - - name: ',' - - name: " " - - name: out - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - name: out - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) - spec.vb: - - uid: OpenTK.Core.Platform.ICursorComponent.GetSize(OpenTK.Core.Platform.CursorHandle,System.Int32@,System.Int32@) - name: GetSize - href: OpenTK.Core.Platform.ICursorComponent.html#OpenTK_Core_Platform_ICursorComponent_GetSize_OpenTK_Core_Platform_CursorHandle_System_Int32__System_Int32__ - - name: ( - - uid: OpenTK.Core.Platform.CursorHandle - name: CursorHandle - href: OpenTK.Core.Platform.CursorHandle.html - - name: ',' - - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) -- uid: OpenTK.Core.Platform.ICursorComponent.GetHotspot(OpenTK.Core.Platform.CursorHandle,System.Int32@,System.Int32@) - commentId: M:OpenTK.Core.Platform.ICursorComponent.GetHotspot(OpenTK.Core.Platform.CursorHandle,System.Int32@,System.Int32@) - parent: OpenTK.Core.Platform.ICursorComponent - isExternal: true - href: OpenTK.Core.Platform.ICursorComponent.html#OpenTK_Core_Platform_ICursorComponent_GetHotspot_OpenTK_Core_Platform_CursorHandle_System_Int32__System_Int32__ - name: GetHotspot(CursorHandle, out int, out int) - nameWithType: ICursorComponent.GetHotspot(CursorHandle, out int, out int) - fullName: OpenTK.Core.Platform.ICursorComponent.GetHotspot(OpenTK.Core.Platform.CursorHandle, out int, out int) - nameWithType.vb: ICursorComponent.GetHotspot(CursorHandle, Integer, Integer) - fullName.vb: OpenTK.Core.Platform.ICursorComponent.GetHotspot(OpenTK.Core.Platform.CursorHandle, Integer, Integer) - name.vb: GetHotspot(CursorHandle, Integer, Integer) - spec.csharp: - - uid: OpenTK.Core.Platform.ICursorComponent.GetHotspot(OpenTK.Core.Platform.CursorHandle,System.Int32@,System.Int32@) - name: GetHotspot - href: OpenTK.Core.Platform.ICursorComponent.html#OpenTK_Core_Platform_ICursorComponent_GetHotspot_OpenTK_Core_Platform_CursorHandle_System_Int32__System_Int32__ - - name: ( - - uid: OpenTK.Core.Platform.CursorHandle - name: CursorHandle - href: OpenTK.Core.Platform.CursorHandle.html - - name: ',' - - name: " " - - name: out - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - name: out - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) - spec.vb: - - uid: OpenTK.Core.Platform.ICursorComponent.GetHotspot(OpenTK.Core.Platform.CursorHandle,System.Int32@,System.Int32@) - name: GetHotspot - href: OpenTK.Core.Platform.ICursorComponent.html#OpenTK_Core_Platform_ICursorComponent_GetHotspot_OpenTK_Core_Platform_CursorHandle_System_Int32__System_Int32__ - - name: ( - - uid: OpenTK.Core.Platform.CursorHandle - name: CursorHandle - href: OpenTK.Core.Platform.CursorHandle.html - - name: ',' - - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) -- uid: OpenTK.Core.Platform.ICursorComponent.CanInspectSystemCursors* - commentId: Overload:OpenTK.Core.Platform.ICursorComponent.CanInspectSystemCursors - href: OpenTK.Core.Platform.ICursorComponent.html#OpenTK_Core_Platform_ICursorComponent_CanInspectSystemCursors - name: CanInspectSystemCursors - nameWithType: ICursorComponent.CanInspectSystemCursors - fullName: OpenTK.Core.Platform.ICursorComponent.CanInspectSystemCursors -- uid: OpenTK.Core.Platform.ICursorComponent.CanLoadSystemCursors - commentId: P:OpenTK.Core.Platform.ICursorComponent.CanLoadSystemCursors - parent: OpenTK.Core.Platform.ICursorComponent - href: OpenTK.Core.Platform.ICursorComponent.html#OpenTK_Core_Platform_ICursorComponent_CanLoadSystemCursors - name: CanLoadSystemCursors - nameWithType: ICursorComponent.CanLoadSystemCursors - fullName: OpenTK.Core.Platform.ICursorComponent.CanLoadSystemCursors -- uid: OpenTK.Core.Platform.PalNotImplementedException - commentId: T:OpenTK.Core.Platform.PalNotImplementedException - href: OpenTK.Core.Platform.PalNotImplementedException.html - name: PalNotImplementedException - nameWithType: PalNotImplementedException - fullName: OpenTK.Core.Platform.PalNotImplementedException -- uid: OpenTK.Core.Platform.PlatformException - commentId: T:OpenTK.Core.Platform.PlatformException - href: OpenTK.Core.Platform.PlatformException.html - name: PlatformException - nameWithType: PlatformException - fullName: OpenTK.Core.Platform.PlatformException -- uid: OpenTK.Core.Platform.ICursorComponent.Create* - commentId: Overload:OpenTK.Core.Platform.ICursorComponent.Create - href: OpenTK.Core.Platform.ICursorComponent.html#OpenTK_Core_Platform_ICursorComponent_Create_OpenTK_Core_Platform_SystemCursorType_ - name: Create - nameWithType: ICursorComponent.Create - fullName: OpenTK.Core.Platform.ICursorComponent.Create -- uid: OpenTK.Core.Platform.SystemCursorType - commentId: T:OpenTK.Core.Platform.SystemCursorType - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.SystemCursorType.html - name: SystemCursorType - nameWithType: SystemCursorType - fullName: OpenTK.Core.Platform.SystemCursorType -- uid: OpenTK.Core.Platform.CursorHandle - commentId: T:OpenTK.Core.Platform.CursorHandle - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.CursorHandle.html - name: CursorHandle - nameWithType: CursorHandle - fullName: OpenTK.Core.Platform.CursorHandle -- uid: System.ArgumentOutOfRangeException - commentId: T:System.ArgumentOutOfRangeException - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.argumentoutofrangeexception - name: ArgumentOutOfRangeException - nameWithType: ArgumentOutOfRangeException - fullName: System.ArgumentOutOfRangeException -- uid: System.ArgumentException - commentId: T:System.ArgumentException - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.argumentexception - name: ArgumentException - nameWithType: ArgumentException - fullName: System.ArgumentException -- uid: System.Int32 - commentId: T:System.Int32 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - name: int - nameWithType: int - fullName: int - nameWithType.vb: Integer - fullName.vb: Integer - name.vb: Integer -- uid: System.ReadOnlySpan{System.Byte} - commentId: T:System.ReadOnlySpan{System.Byte} - parent: System - definition: System.ReadOnlySpan`1 - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - name: ReadOnlySpan - nameWithType: ReadOnlySpan - fullName: System.ReadOnlySpan - nameWithType.vb: ReadOnlySpan(Of Byte) - fullName.vb: System.ReadOnlySpan(Of Byte) - name.vb: ReadOnlySpan(Of Byte) - spec.csharp: - - uid: System.ReadOnlySpan`1 - name: ReadOnlySpan - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - - name: < - - uid: System.Byte - name: byte - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.byte - - name: '>' - spec.vb: - - uid: System.ReadOnlySpan`1 - name: ReadOnlySpan - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - - name: ( - - name: Of - - name: " " - - uid: System.Byte - name: Byte - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.byte - - name: ) -- uid: System.ReadOnlySpan`1 - commentId: T:System.ReadOnlySpan`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - name: ReadOnlySpan - nameWithType: ReadOnlySpan - fullName: System.ReadOnlySpan - nameWithType.vb: ReadOnlySpan(Of T) - fullName.vb: System.ReadOnlySpan(Of T) - name.vb: ReadOnlySpan(Of T) - spec.csharp: - - uid: System.ReadOnlySpan`1 - name: ReadOnlySpan - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.ReadOnlySpan`1 - name: ReadOnlySpan - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: System.ArgumentNullException - commentId: T:System.ArgumentNullException - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.argumentnullexception - name: ArgumentNullException - nameWithType: ArgumentNullException - fullName: System.ArgumentNullException -- uid: OpenTK.Core.Platform.ICursorComponent.Destroy* - commentId: Overload:OpenTK.Core.Platform.ICursorComponent.Destroy - href: OpenTK.Core.Platform.ICursorComponent.html#OpenTK_Core_Platform_ICursorComponent_Destroy_OpenTK_Core_Platform_CursorHandle_ - name: Destroy - nameWithType: ICursorComponent.Destroy - fullName: OpenTK.Core.Platform.ICursorComponent.Destroy -- uid: OpenTK.Core.Platform.ICursorComponent.IsSystemCursor* - commentId: Overload:OpenTK.Core.Platform.ICursorComponent.IsSystemCursor - href: OpenTK.Core.Platform.ICursorComponent.html#OpenTK_Core_Platform_ICursorComponent_IsSystemCursor_OpenTK_Core_Platform_CursorHandle_ - name: IsSystemCursor - nameWithType: ICursorComponent.IsSystemCursor - fullName: OpenTK.Core.Platform.ICursorComponent.IsSystemCursor -- uid: OpenTK.Core.Platform.ICursorComponent.IsSystemCursor(OpenTK.Core.Platform.CursorHandle) - commentId: M:OpenTK.Core.Platform.ICursorComponent.IsSystemCursor(OpenTK.Core.Platform.CursorHandle) - parent: OpenTK.Core.Platform.ICursorComponent - href: OpenTK.Core.Platform.ICursorComponent.html#OpenTK_Core_Platform_ICursorComponent_IsSystemCursor_OpenTK_Core_Platform_CursorHandle_ - name: IsSystemCursor(CursorHandle) - nameWithType: ICursorComponent.IsSystemCursor(CursorHandle) - fullName: OpenTK.Core.Platform.ICursorComponent.IsSystemCursor(OpenTK.Core.Platform.CursorHandle) - spec.csharp: - - uid: OpenTK.Core.Platform.ICursorComponent.IsSystemCursor(OpenTK.Core.Platform.CursorHandle) - name: IsSystemCursor - href: OpenTK.Core.Platform.ICursorComponent.html#OpenTK_Core_Platform_ICursorComponent_IsSystemCursor_OpenTK_Core_Platform_CursorHandle_ - - name: ( - - uid: OpenTK.Core.Platform.CursorHandle - name: CursorHandle - href: OpenTK.Core.Platform.CursorHandle.html - - name: ) - spec.vb: - - uid: OpenTK.Core.Platform.ICursorComponent.IsSystemCursor(OpenTK.Core.Platform.CursorHandle) - name: IsSystemCursor - href: OpenTK.Core.Platform.ICursorComponent.html#OpenTK_Core_Platform_ICursorComponent_IsSystemCursor_OpenTK_Core_Platform_CursorHandle_ - - name: ( - - uid: OpenTK.Core.Platform.CursorHandle - name: CursorHandle - href: OpenTK.Core.Platform.CursorHandle.html - - name: ) -- uid: OpenTK.Core.Platform.ICursorComponent.CanInspectSystemCursors - commentId: P:OpenTK.Core.Platform.ICursorComponent.CanInspectSystemCursors - parent: OpenTK.Core.Platform.ICursorComponent - href: OpenTK.Core.Platform.ICursorComponent.html#OpenTK_Core_Platform_ICursorComponent_CanInspectSystemCursors - name: CanInspectSystemCursors - nameWithType: ICursorComponent.CanInspectSystemCursors - fullName: OpenTK.Core.Platform.ICursorComponent.CanInspectSystemCursors -- uid: OpenTK.Core.Platform.ICursorComponent.GetSize* - commentId: Overload:OpenTK.Core.Platform.ICursorComponent.GetSize - href: OpenTK.Core.Platform.ICursorComponent.html#OpenTK_Core_Platform_ICursorComponent_GetSize_OpenTK_Core_Platform_CursorHandle_System_Int32__System_Int32__ - name: GetSize - nameWithType: ICursorComponent.GetSize - fullName: OpenTK.Core.Platform.ICursorComponent.GetSize -- uid: OpenTK.Core.Platform.ICursorComponent.GetHotspot* - commentId: Overload:OpenTK.Core.Platform.ICursorComponent.GetHotspot - href: OpenTK.Core.Platform.ICursorComponent.html#OpenTK_Core_Platform_ICursorComponent_GetHotspot_OpenTK_Core_Platform_CursorHandle_System_Int32__System_Int32__ - name: GetHotspot - nameWithType: ICursorComponent.GetHotspot - fullName: OpenTK.Core.Platform.ICursorComponent.GetHotspot diff --git a/api/OpenTK.Core.Platform.IDialogComponent.yml b/api/OpenTK.Core.Platform.IDialogComponent.yml deleted file mode 100644 index e7c063de..00000000 --- a/api/OpenTK.Core.Platform.IDialogComponent.yml +++ /dev/null @@ -1,433 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: OpenTK.Core.Platform.IDialogComponent - commentId: T:OpenTK.Core.Platform.IDialogComponent - id: IDialogComponent - parent: OpenTK.Core.Platform - children: - - OpenTK.Core.Platform.IDialogComponent.CanTargetFolders - - OpenTK.Core.Platform.IDialogComponent.ShowOpenDialog(OpenTK.Core.Platform.WindowHandle,System.String,System.String,OpenTK.Core.Platform.DialogFileFilter[],OpenTK.Core.Platform.OpenDialogOptions) - - OpenTK.Core.Platform.IDialogComponent.ShowSaveDialog(OpenTK.Core.Platform.WindowHandle,System.String,System.String,OpenTK.Core.Platform.DialogFileFilter[],OpenTK.Core.Platform.SaveDialogOptions) - langs: - - csharp - - vb - name: IDialogComponent - nameWithType: IDialogComponent - fullName: OpenTK.Core.Platform.IDialogComponent - type: Interface - source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/IDialogComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: IDialogComponent - path: opentk/src/OpenTK.Core/Platform/Interfaces/IDialogComponent.cs - startLine: 10 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: 'public interface IDialogComponent : IPalComponent' - content.vb: Public Interface IDialogComponent Inherits IPalComponent - inheritedMembers: - - OpenTK.Core.Platform.IPalComponent.Name - - OpenTK.Core.Platform.IPalComponent.Provides - - OpenTK.Core.Platform.IPalComponent.Logger - - OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) -- uid: OpenTK.Core.Platform.IDialogComponent.CanTargetFolders - commentId: P:OpenTK.Core.Platform.IDialogComponent.CanTargetFolders - id: CanTargetFolders - parent: OpenTK.Core.Platform.IDialogComponent - langs: - - csharp - - vb - name: CanTargetFolders - nameWithType: IDialogComponent.CanTargetFolders - fullName: OpenTK.Core.Platform.IDialogComponent.CanTargetFolders - type: Property - source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/IDialogComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: CanTargetFolders - path: opentk/src/OpenTK.Core/Platform/Interfaces/IDialogComponent.cs - startLine: 16 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: >- - If the value of this property is true and will work. - - Otherwise these flags will be ignored. - example: [] - syntax: - content: bool CanTargetFolders { get; } - parameters: [] - return: - type: System.Boolean - content.vb: ReadOnly Property CanTargetFolders As Boolean - overload: OpenTK.Core.Platform.IDialogComponent.CanTargetFolders* -- uid: OpenTK.Core.Platform.IDialogComponent.ShowOpenDialog(OpenTK.Core.Platform.WindowHandle,System.String,System.String,OpenTK.Core.Platform.DialogFileFilter[],OpenTK.Core.Platform.OpenDialogOptions) - commentId: M:OpenTK.Core.Platform.IDialogComponent.ShowOpenDialog(OpenTK.Core.Platform.WindowHandle,System.String,System.String,OpenTK.Core.Platform.DialogFileFilter[],OpenTK.Core.Platform.OpenDialogOptions) - id: ShowOpenDialog(OpenTK.Core.Platform.WindowHandle,System.String,System.String,OpenTK.Core.Platform.DialogFileFilter[],OpenTK.Core.Platform.OpenDialogOptions) - parent: OpenTK.Core.Platform.IDialogComponent - langs: - - csharp - - vb - name: ShowOpenDialog(WindowHandle, string, string, DialogFileFilter[]?, OpenDialogOptions) - nameWithType: IDialogComponent.ShowOpenDialog(WindowHandle, string, string, DialogFileFilter[]?, OpenDialogOptions) - fullName: OpenTK.Core.Platform.IDialogComponent.ShowOpenDialog(OpenTK.Core.Platform.WindowHandle, string, string, OpenTK.Core.Platform.DialogFileFilter[]?, OpenTK.Core.Platform.OpenDialogOptions) - type: Method - source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/IDialogComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: ShowOpenDialog - path: opentk/src/OpenTK.Core/Platform/Interfaces/IDialogComponent.cs - startLine: 20 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: List? ShowOpenDialog(WindowHandle parent, string title, string directory, DialogFileFilter[]? allowedExtensions, OpenDialogOptions options) - parameters: - - id: parent - type: OpenTK.Core.Platform.WindowHandle - - id: title - type: System.String - - id: directory - type: System.String - - id: allowedExtensions - type: OpenTK.Core.Platform.DialogFileFilter[] - - id: options - type: OpenTK.Core.Platform.OpenDialogOptions - return: - type: System.Collections.Generic.List{System.String} - content.vb: Function ShowOpenDialog(parent As WindowHandle, title As String, directory As String, allowedExtensions As DialogFileFilter(), options As OpenDialogOptions) As List(Of String) - overload: OpenTK.Core.Platform.IDialogComponent.ShowOpenDialog* - nameWithType.vb: IDialogComponent.ShowOpenDialog(WindowHandle, String, String, DialogFileFilter(), OpenDialogOptions) - fullName.vb: OpenTK.Core.Platform.IDialogComponent.ShowOpenDialog(OpenTK.Core.Platform.WindowHandle, String, String, OpenTK.Core.Platform.DialogFileFilter(), OpenTK.Core.Platform.OpenDialogOptions) - name.vb: ShowOpenDialog(WindowHandle, String, String, DialogFileFilter(), OpenDialogOptions) -- uid: OpenTK.Core.Platform.IDialogComponent.ShowSaveDialog(OpenTK.Core.Platform.WindowHandle,System.String,System.String,OpenTK.Core.Platform.DialogFileFilter[],OpenTK.Core.Platform.SaveDialogOptions) - commentId: M:OpenTK.Core.Platform.IDialogComponent.ShowSaveDialog(OpenTK.Core.Platform.WindowHandle,System.String,System.String,OpenTK.Core.Platform.DialogFileFilter[],OpenTK.Core.Platform.SaveDialogOptions) - id: ShowSaveDialog(OpenTK.Core.Platform.WindowHandle,System.String,System.String,OpenTK.Core.Platform.DialogFileFilter[],OpenTK.Core.Platform.SaveDialogOptions) - parent: OpenTK.Core.Platform.IDialogComponent - langs: - - csharp - - vb - name: ShowSaveDialog(WindowHandle, string, string, DialogFileFilter[]?, SaveDialogOptions) - nameWithType: IDialogComponent.ShowSaveDialog(WindowHandle, string, string, DialogFileFilter[]?, SaveDialogOptions) - fullName: OpenTK.Core.Platform.IDialogComponent.ShowSaveDialog(OpenTK.Core.Platform.WindowHandle, string, string, OpenTK.Core.Platform.DialogFileFilter[]?, OpenTK.Core.Platform.SaveDialogOptions) - type: Method - source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/IDialogComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: ShowSaveDialog - path: opentk/src/OpenTK.Core/Platform/Interfaces/IDialogComponent.cs - startLine: 23 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: string? ShowSaveDialog(WindowHandle parent, string title, string directory, DialogFileFilter[]? allowedExtensions, SaveDialogOptions options) - parameters: - - id: parent - type: OpenTK.Core.Platform.WindowHandle - - id: title - type: System.String - - id: directory - type: System.String - - id: allowedExtensions - type: OpenTK.Core.Platform.DialogFileFilter[] - - id: options - type: OpenTK.Core.Platform.SaveDialogOptions - return: - type: System.String - content.vb: Function ShowSaveDialog(parent As WindowHandle, title As String, directory As String, allowedExtensions As DialogFileFilter(), options As SaveDialogOptions) As String - overload: OpenTK.Core.Platform.IDialogComponent.ShowSaveDialog* - nameWithType.vb: IDialogComponent.ShowSaveDialog(WindowHandle, String, String, DialogFileFilter(), SaveDialogOptions) - fullName.vb: OpenTK.Core.Platform.IDialogComponent.ShowSaveDialog(OpenTK.Core.Platform.WindowHandle, String, String, OpenTK.Core.Platform.DialogFileFilter(), OpenTK.Core.Platform.SaveDialogOptions) - name.vb: ShowSaveDialog(WindowHandle, String, String, DialogFileFilter(), SaveDialogOptions) -references: -- uid: OpenTK.Core.Platform - commentId: N:OpenTK.Core.Platform - href: OpenTK.html - name: OpenTK.Core.Platform - nameWithType: OpenTK.Core.Platform - fullName: OpenTK.Core.Platform - spec.csharp: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform - name: Platform - href: OpenTK.Core.Platform.html - spec.vb: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform - name: Platform - href: OpenTK.Core.Platform.html -- uid: OpenTK.Core.Platform.IPalComponent.Name - commentId: P:OpenTK.Core.Platform.IPalComponent.Name - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Name - name: Name - nameWithType: IPalComponent.Name - fullName: OpenTK.Core.Platform.IPalComponent.Name -- uid: OpenTK.Core.Platform.IPalComponent.Provides - commentId: P:OpenTK.Core.Platform.IPalComponent.Provides - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Provides - name: Provides - nameWithType: IPalComponent.Provides - fullName: OpenTK.Core.Platform.IPalComponent.Provides -- uid: OpenTK.Core.Platform.IPalComponent.Logger - commentId: P:OpenTK.Core.Platform.IPalComponent.Logger - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Logger - name: Logger - nameWithType: IPalComponent.Logger - fullName: OpenTK.Core.Platform.IPalComponent.Logger -- uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - commentId: M:OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ - name: Initialize(ToolkitOptions) - nameWithType: IPalComponent.Initialize(ToolkitOptions) - fullName: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - spec.csharp: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ - - name: ( - - uid: OpenTK.Core.Platform.ToolkitOptions - name: ToolkitOptions - href: OpenTK.Core.Platform.ToolkitOptions.html - - name: ) - spec.vb: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ - - name: ( - - uid: OpenTK.Core.Platform.ToolkitOptions - name: ToolkitOptions - href: OpenTK.Core.Platform.ToolkitOptions.html - - name: ) -- uid: OpenTK.Core.Platform.IPalComponent - commentId: T:OpenTK.Core.Platform.IPalComponent - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.IPalComponent.html - name: IPalComponent - nameWithType: IPalComponent - fullName: OpenTK.Core.Platform.IPalComponent -- uid: OpenTK.Core.Platform.OpenDialogOptions.SelectDirectory - commentId: F:OpenTK.Core.Platform.OpenDialogOptions.SelectDirectory - href: OpenTK.Core.Platform.OpenDialogOptions.html#OpenTK_Core_Platform_OpenDialogOptions_SelectDirectory - name: SelectDirectory - nameWithType: OpenDialogOptions.SelectDirectory - fullName: OpenTK.Core.Platform.OpenDialogOptions.SelectDirectory -- uid: OpenTK.Core.Platform.IDialogComponent.CanTargetFolders* - commentId: Overload:OpenTK.Core.Platform.IDialogComponent.CanTargetFolders - href: OpenTK.Core.Platform.IDialogComponent.html#OpenTK_Core_Platform_IDialogComponent_CanTargetFolders - name: CanTargetFolders - nameWithType: IDialogComponent.CanTargetFolders - fullName: OpenTK.Core.Platform.IDialogComponent.CanTargetFolders -- uid: System.Boolean - commentId: T:System.Boolean - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - name: bool - nameWithType: bool - fullName: bool - nameWithType.vb: Boolean - fullName.vb: Boolean - name.vb: Boolean -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: OpenTK.Core.Platform.IDialogComponent.ShowOpenDialog* - commentId: Overload:OpenTK.Core.Platform.IDialogComponent.ShowOpenDialog - href: OpenTK.Core.Platform.IDialogComponent.html#OpenTK_Core_Platform_IDialogComponent_ShowOpenDialog_OpenTK_Core_Platform_WindowHandle_System_String_System_String_OpenTK_Core_Platform_DialogFileFilter___OpenTK_Core_Platform_OpenDialogOptions_ - name: ShowOpenDialog - nameWithType: IDialogComponent.ShowOpenDialog - fullName: OpenTK.Core.Platform.IDialogComponent.ShowOpenDialog -- uid: OpenTK.Core.Platform.WindowHandle - commentId: T:OpenTK.Core.Platform.WindowHandle - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.WindowHandle.html - name: WindowHandle - nameWithType: WindowHandle - fullName: OpenTK.Core.Platform.WindowHandle -- uid: System.String - commentId: T:System.String - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - name: string - nameWithType: string - fullName: string - nameWithType.vb: String - fullName.vb: String - name.vb: String -- uid: OpenTK.Core.Platform.DialogFileFilter[] - isExternal: true - href: OpenTK.Core.Platform.DialogFileFilter.html - name: DialogFileFilter[] - nameWithType: DialogFileFilter[] - fullName: OpenTK.Core.Platform.DialogFileFilter[] - nameWithType.vb: DialogFileFilter() - fullName.vb: OpenTK.Core.Platform.DialogFileFilter() - name.vb: DialogFileFilter() - spec.csharp: - - uid: OpenTK.Core.Platform.DialogFileFilter - name: DialogFileFilter - href: OpenTK.Core.Platform.DialogFileFilter.html - - name: '[' - - name: ']' - spec.vb: - - uid: OpenTK.Core.Platform.DialogFileFilter - name: DialogFileFilter - href: OpenTK.Core.Platform.DialogFileFilter.html - - name: ( - - name: ) -- uid: OpenTK.Core.Platform.OpenDialogOptions - commentId: T:OpenTK.Core.Platform.OpenDialogOptions - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.OpenDialogOptions.html - name: OpenDialogOptions - nameWithType: OpenDialogOptions - fullName: OpenTK.Core.Platform.OpenDialogOptions -- uid: System.Collections.Generic.List{System.String} - commentId: T:System.Collections.Generic.List{System.String} - parent: System.Collections.Generic - definition: System.Collections.Generic.List`1 - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 - name: List - nameWithType: List - fullName: System.Collections.Generic.List - nameWithType.vb: List(Of String) - fullName.vb: System.Collections.Generic.List(Of String) - name.vb: List(Of String) - spec.csharp: - - uid: System.Collections.Generic.List`1 - name: List - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 - - name: < - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: '>' - spec.vb: - - uid: System.Collections.Generic.List`1 - name: List - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 - - name: ( - - name: Of - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: System.Collections.Generic.List`1 - commentId: T:System.Collections.Generic.List`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 - name: List - nameWithType: List - fullName: System.Collections.Generic.List - nameWithType.vb: List(Of T) - fullName.vb: System.Collections.Generic.List(Of T) - name.vb: List(Of T) - spec.csharp: - - uid: System.Collections.Generic.List`1 - name: List - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.Collections.Generic.List`1 - name: List - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: System.Collections.Generic - commentId: N:System.Collections.Generic - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System.Collections.Generic - nameWithType: System.Collections.Generic - fullName: System.Collections.Generic - spec.csharp: - - uid: System - name: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - - name: . - - uid: System.Collections - name: Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections - - name: . - - uid: System.Collections.Generic - name: Generic - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic - spec.vb: - - uid: System - name: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - - name: . - - uid: System.Collections - name: Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections - - name: . - - uid: System.Collections.Generic - name: Generic - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic -- uid: OpenTK.Core.Platform.IDialogComponent.ShowSaveDialog* - commentId: Overload:OpenTK.Core.Platform.IDialogComponent.ShowSaveDialog - href: OpenTK.Core.Platform.IDialogComponent.html#OpenTK_Core_Platform_IDialogComponent_ShowSaveDialog_OpenTK_Core_Platform_WindowHandle_System_String_System_String_OpenTK_Core_Platform_DialogFileFilter___OpenTK_Core_Platform_SaveDialogOptions_ - name: ShowSaveDialog - nameWithType: IDialogComponent.ShowSaveDialog - fullName: OpenTK.Core.Platform.IDialogComponent.ShowSaveDialog -- uid: OpenTK.Core.Platform.SaveDialogOptions - commentId: T:OpenTK.Core.Platform.SaveDialogOptions - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.SaveDialogOptions.html - name: SaveDialogOptions - nameWithType: SaveDialogOptions - fullName: OpenTK.Core.Platform.SaveDialogOptions diff --git a/api/OpenTK.Core.Platform.IDisplayComponent.yml b/api/OpenTK.Core.Platform.IDisplayComponent.yml deleted file mode 100644 index 84f80e4d..00000000 --- a/api/OpenTK.Core.Platform.IDisplayComponent.yml +++ /dev/null @@ -1,905 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: OpenTK.Core.Platform.IDisplayComponent - commentId: T:OpenTK.Core.Platform.IDisplayComponent - id: IDisplayComponent - parent: OpenTK.Core.Platform - children: - - OpenTK.Core.Platform.IDisplayComponent.CanGetVirtualPosition - - OpenTK.Core.Platform.IDisplayComponent.Close(OpenTK.Core.Platform.DisplayHandle) - - OpenTK.Core.Platform.IDisplayComponent.GetDisplayCount - - OpenTK.Core.Platform.IDisplayComponent.GetDisplayScale(OpenTK.Core.Platform.DisplayHandle,System.Single@,System.Single@) - - OpenTK.Core.Platform.IDisplayComponent.GetName(OpenTK.Core.Platform.DisplayHandle) - - OpenTK.Core.Platform.IDisplayComponent.GetRefreshRate(OpenTK.Core.Platform.DisplayHandle,System.Single@) - - OpenTK.Core.Platform.IDisplayComponent.GetResolution(OpenTK.Core.Platform.DisplayHandle,System.Int32@,System.Int32@) - - OpenTK.Core.Platform.IDisplayComponent.GetSupportedVideoModes(OpenTK.Core.Platform.DisplayHandle) - - OpenTK.Core.Platform.IDisplayComponent.GetVideoMode(OpenTK.Core.Platform.DisplayHandle,OpenTK.Core.Platform.VideoMode@) - - OpenTK.Core.Platform.IDisplayComponent.GetVirtualPosition(OpenTK.Core.Platform.DisplayHandle,System.Int32@,System.Int32@) - - OpenTK.Core.Platform.IDisplayComponent.GetWorkArea(OpenTK.Core.Platform.DisplayHandle,OpenTK.Mathematics.Box2i@) - - OpenTK.Core.Platform.IDisplayComponent.IsPrimary(OpenTK.Core.Platform.DisplayHandle) - - OpenTK.Core.Platform.IDisplayComponent.Open(System.Int32) - - OpenTK.Core.Platform.IDisplayComponent.OpenPrimary - langs: - - csharp - - vb - name: IDisplayComponent - nameWithType: IDisplayComponent - fullName: OpenTK.Core.Platform.IDisplayComponent - type: Interface - source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/IDisplayComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: IDisplayComponent - path: opentk/src/OpenTK.Core/Platform/Interfaces/IDisplayComponent.cs - startLine: 8 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Interface for drivers which provide the display component. - example: [] - syntax: - content: 'public interface IDisplayComponent : IPalComponent' - content.vb: Public Interface IDisplayComponent Inherits IPalComponent - inheritedMembers: - - OpenTK.Core.Platform.IPalComponent.Name - - OpenTK.Core.Platform.IPalComponent.Provides - - OpenTK.Core.Platform.IPalComponent.Logger - - OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) -- uid: OpenTK.Core.Platform.IDisplayComponent.CanGetVirtualPosition - commentId: P:OpenTK.Core.Platform.IDisplayComponent.CanGetVirtualPosition - id: CanGetVirtualPosition - parent: OpenTK.Core.Platform.IDisplayComponent - langs: - - csharp - - vb - name: CanGetVirtualPosition - nameWithType: IDisplayComponent.CanGetVirtualPosition - fullName: OpenTK.Core.Platform.IDisplayComponent.CanGetVirtualPosition - type: Property - source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/IDisplayComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: CanGetVirtualPosition - path: opentk/src/OpenTK.Core/Platform/Interfaces/IDisplayComponent.cs - startLine: 15 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: True if the driver can get the virtual position of the display. - example: [] - syntax: - content: bool CanGetVirtualPosition { get; } - parameters: [] - return: - type: System.Boolean - content.vb: ReadOnly Property CanGetVirtualPosition As Boolean - overload: OpenTK.Core.Platform.IDisplayComponent.CanGetVirtualPosition* -- uid: OpenTK.Core.Platform.IDisplayComponent.GetDisplayCount - commentId: M:OpenTK.Core.Platform.IDisplayComponent.GetDisplayCount - id: GetDisplayCount - parent: OpenTK.Core.Platform.IDisplayComponent - langs: - - csharp - - vb - name: GetDisplayCount() - nameWithType: IDisplayComponent.GetDisplayCount() - fullName: OpenTK.Core.Platform.IDisplayComponent.GetDisplayCount() - type: Method - source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/IDisplayComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: GetDisplayCount - path: opentk/src/OpenTK.Core/Platform/Interfaces/IDisplayComponent.cs - startLine: 21 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Get the number of available displays. - example: [] - syntax: - content: int GetDisplayCount() - return: - type: System.Int32 - description: Number of displays available. - content.vb: Function GetDisplayCount() As Integer - overload: OpenTK.Core.Platform.IDisplayComponent.GetDisplayCount* -- uid: OpenTK.Core.Platform.IDisplayComponent.Open(System.Int32) - commentId: M:OpenTK.Core.Platform.IDisplayComponent.Open(System.Int32) - id: Open(System.Int32) - parent: OpenTK.Core.Platform.IDisplayComponent - langs: - - csharp - - vb - name: Open(int) - nameWithType: IDisplayComponent.Open(int) - fullName: OpenTK.Core.Platform.IDisplayComponent.Open(int) - type: Method - source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/IDisplayComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Open - path: opentk/src/OpenTK.Core/Platform/Interfaces/IDisplayComponent.cs - startLine: 34 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Create a display handle to the indexed display. - example: [] - syntax: - content: DisplayHandle Open(int index) - parameters: - - id: index - type: System.Int32 - description: The display index to create a display handle to. - return: - type: OpenTK.Core.Platform.DisplayHandle - description: Handle to the display. - content.vb: Function Open(index As Integer) As DisplayHandle - overload: OpenTK.Core.Platform.IDisplayComponent.Open* - exceptions: - - type: System.ArgumentOutOfRangeException - commentId: T:System.ArgumentOutOfRangeException - description: index is out of range. - nameWithType.vb: IDisplayComponent.Open(Integer) - fullName.vb: OpenTK.Core.Platform.IDisplayComponent.Open(Integer) - name.vb: Open(Integer) -- uid: OpenTK.Core.Platform.IDisplayComponent.OpenPrimary - commentId: M:OpenTK.Core.Platform.IDisplayComponent.OpenPrimary - id: OpenPrimary - parent: OpenTK.Core.Platform.IDisplayComponent - langs: - - csharp - - vb - name: OpenPrimary() - nameWithType: IDisplayComponent.OpenPrimary() - fullName: OpenTK.Core.Platform.IDisplayComponent.OpenPrimary() - type: Method - source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/IDisplayComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: OpenPrimary - path: opentk/src/OpenTK.Core/Platform/Interfaces/IDisplayComponent.cs - startLine: 40 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Create a display handle to the primary display. - example: [] - syntax: - content: DisplayHandle OpenPrimary() - return: - type: OpenTK.Core.Platform.DisplayHandle - description: Handle to the primary display. - content.vb: Function OpenPrimary() As DisplayHandle - overload: OpenTK.Core.Platform.IDisplayComponent.OpenPrimary* -- uid: OpenTK.Core.Platform.IDisplayComponent.Close(OpenTK.Core.Platform.DisplayHandle) - commentId: M:OpenTK.Core.Platform.IDisplayComponent.Close(OpenTK.Core.Platform.DisplayHandle) - id: Close(OpenTK.Core.Platform.DisplayHandle) - parent: OpenTK.Core.Platform.IDisplayComponent - langs: - - csharp - - vb - name: Close(DisplayHandle) - nameWithType: IDisplayComponent.Close(DisplayHandle) - fullName: OpenTK.Core.Platform.IDisplayComponent.Close(OpenTK.Core.Platform.DisplayHandle) - type: Method - source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/IDisplayComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Close - path: opentk/src/OpenTK.Core/Platform/Interfaces/IDisplayComponent.cs - startLine: 47 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Destroy a display handle. - example: [] - syntax: - content: void Close(DisplayHandle handle) - parameters: - - id: handle - type: OpenTK.Core.Platform.DisplayHandle - description: Handle to a display. - content.vb: Sub Close(handle As DisplayHandle) - overload: OpenTK.Core.Platform.IDisplayComponent.Close* - exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: handle is null. -- uid: OpenTK.Core.Platform.IDisplayComponent.IsPrimary(OpenTK.Core.Platform.DisplayHandle) - commentId: M:OpenTK.Core.Platform.IDisplayComponent.IsPrimary(OpenTK.Core.Platform.DisplayHandle) - id: IsPrimary(OpenTK.Core.Platform.DisplayHandle) - parent: OpenTK.Core.Platform.IDisplayComponent - langs: - - csharp - - vb - name: IsPrimary(DisplayHandle) - nameWithType: IDisplayComponent.IsPrimary(DisplayHandle) - fullName: OpenTK.Core.Platform.IDisplayComponent.IsPrimary(OpenTK.Core.Platform.DisplayHandle) - type: Method - source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/IDisplayComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: IsPrimary - path: opentk/src/OpenTK.Core/Platform/Interfaces/IDisplayComponent.cs - startLine: 54 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Checks if a display is the primary display or not. - example: [] - syntax: - content: bool IsPrimary(DisplayHandle handle) - parameters: - - id: handle - type: OpenTK.Core.Platform.DisplayHandle - description: The display to check whether or not is the primary display. - return: - type: System.Boolean - description: If this display is the primary display. - content.vb: Function IsPrimary(handle As DisplayHandle) As Boolean - overload: OpenTK.Core.Platform.IDisplayComponent.IsPrimary* -- uid: OpenTK.Core.Platform.IDisplayComponent.GetName(OpenTK.Core.Platform.DisplayHandle) - commentId: M:OpenTK.Core.Platform.IDisplayComponent.GetName(OpenTK.Core.Platform.DisplayHandle) - id: GetName(OpenTK.Core.Platform.DisplayHandle) - parent: OpenTK.Core.Platform.IDisplayComponent - langs: - - csharp - - vb - name: GetName(DisplayHandle) - nameWithType: IDisplayComponent.GetName(DisplayHandle) - fullName: OpenTK.Core.Platform.IDisplayComponent.GetName(OpenTK.Core.Platform.DisplayHandle) - type: Method - source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/IDisplayComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: GetName - path: opentk/src/OpenTK.Core/Platform/Interfaces/IDisplayComponent.cs - startLine: 62 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Get the friendly name of a display. - example: [] - syntax: - content: string GetName(DisplayHandle handle) - parameters: - - id: handle - type: OpenTK.Core.Platform.DisplayHandle - description: Handle to a display. - return: - type: System.String - description: Display name. - content.vb: Function GetName(handle As DisplayHandle) As String - overload: OpenTK.Core.Platform.IDisplayComponent.GetName* - exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: handle is null. -- uid: OpenTK.Core.Platform.IDisplayComponent.GetVideoMode(OpenTK.Core.Platform.DisplayHandle,OpenTK.Core.Platform.VideoMode@) - commentId: M:OpenTK.Core.Platform.IDisplayComponent.GetVideoMode(OpenTK.Core.Platform.DisplayHandle,OpenTK.Core.Platform.VideoMode@) - id: GetVideoMode(OpenTK.Core.Platform.DisplayHandle,OpenTK.Core.Platform.VideoMode@) - parent: OpenTK.Core.Platform.IDisplayComponent - langs: - - csharp - - vb - name: GetVideoMode(DisplayHandle, out VideoMode) - nameWithType: IDisplayComponent.GetVideoMode(DisplayHandle, out VideoMode) - fullName: OpenTK.Core.Platform.IDisplayComponent.GetVideoMode(OpenTK.Core.Platform.DisplayHandle, out OpenTK.Core.Platform.VideoMode) - type: Method - source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/IDisplayComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: GetVideoMode - path: opentk/src/OpenTK.Core/Platform/Interfaces/IDisplayComponent.cs - startLine: 70 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Get the active video mode of a display. - example: [] - syntax: - content: void GetVideoMode(DisplayHandle handle, out VideoMode mode) - parameters: - - id: handle - type: OpenTK.Core.Platform.DisplayHandle - description: Handle to a display. - - id: mode - type: OpenTK.Core.Platform.VideoMode - description: Active video mode of display. - content.vb: Sub GetVideoMode(handle As DisplayHandle, mode As VideoMode) - overload: OpenTK.Core.Platform.IDisplayComponent.GetVideoMode* - exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: handle is null. - nameWithType.vb: IDisplayComponent.GetVideoMode(DisplayHandle, VideoMode) - fullName.vb: OpenTK.Core.Platform.IDisplayComponent.GetVideoMode(OpenTK.Core.Platform.DisplayHandle, OpenTK.Core.Platform.VideoMode) - name.vb: GetVideoMode(DisplayHandle, VideoMode) -- uid: OpenTK.Core.Platform.IDisplayComponent.GetSupportedVideoModes(OpenTK.Core.Platform.DisplayHandle) - commentId: M:OpenTK.Core.Platform.IDisplayComponent.GetSupportedVideoModes(OpenTK.Core.Platform.DisplayHandle) - id: GetSupportedVideoModes(OpenTK.Core.Platform.DisplayHandle) - parent: OpenTK.Core.Platform.IDisplayComponent - langs: - - csharp - - vb - name: GetSupportedVideoModes(DisplayHandle) - nameWithType: IDisplayComponent.GetSupportedVideoModes(DisplayHandle) - fullName: OpenTK.Core.Platform.IDisplayComponent.GetSupportedVideoModes(OpenTK.Core.Platform.DisplayHandle) - type: Method - source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/IDisplayComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: GetSupportedVideoModes - path: opentk/src/OpenTK.Core/Platform/Interfaces/IDisplayComponent.cs - startLine: 78 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Get all supported video modes for a specific display. - example: [] - syntax: - content: VideoMode[] GetSupportedVideoModes(DisplayHandle handle) - parameters: - - id: handle - type: OpenTK.Core.Platform.DisplayHandle - description: Handle to a display. - return: - type: OpenTK.Core.Platform.VideoMode[] - description: An array of all supported video modes. - content.vb: Function GetSupportedVideoModes(handle As DisplayHandle) As VideoMode() - overload: OpenTK.Core.Platform.IDisplayComponent.GetSupportedVideoModes* - exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: handle is null. -- uid: OpenTK.Core.Platform.IDisplayComponent.GetVirtualPosition(OpenTK.Core.Platform.DisplayHandle,System.Int32@,System.Int32@) - commentId: M:OpenTK.Core.Platform.IDisplayComponent.GetVirtualPosition(OpenTK.Core.Platform.DisplayHandle,System.Int32@,System.Int32@) - id: GetVirtualPosition(OpenTK.Core.Platform.DisplayHandle,System.Int32@,System.Int32@) - parent: OpenTK.Core.Platform.IDisplayComponent - langs: - - csharp - - vb - name: GetVirtualPosition(DisplayHandle, out int, out int) - nameWithType: IDisplayComponent.GetVirtualPosition(DisplayHandle, out int, out int) - fullName: OpenTK.Core.Platform.IDisplayComponent.GetVirtualPosition(OpenTK.Core.Platform.DisplayHandle, out int, out int) - type: Method - source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/IDisplayComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: GetVirtualPosition - path: opentk/src/OpenTK.Core/Platform/Interfaces/IDisplayComponent.cs - startLine: 88 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Get the position of the display in the virtual desktop. - example: [] - syntax: - content: void GetVirtualPosition(DisplayHandle handle, out int x, out int y) - parameters: - - id: handle - type: OpenTK.Core.Platform.DisplayHandle - description: Handle to a display. - - id: x - type: System.Int32 - description: Virtual X coordinate of the display. - - id: y - type: System.Int32 - description: Virtual Y coordinate of the display. - content.vb: Sub GetVirtualPosition(handle As DisplayHandle, x As Integer, y As Integer) - overload: OpenTK.Core.Platform.IDisplayComponent.GetVirtualPosition* - exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: handle is null. - - type: OpenTK.Core.Platform.PalNotImplementedException - commentId: T:OpenTK.Core.Platform.PalNotImplementedException - description: Driver cannot get display virtual position. See . - nameWithType.vb: IDisplayComponent.GetVirtualPosition(DisplayHandle, Integer, Integer) - fullName.vb: OpenTK.Core.Platform.IDisplayComponent.GetVirtualPosition(OpenTK.Core.Platform.DisplayHandle, Integer, Integer) - name.vb: GetVirtualPosition(DisplayHandle, Integer, Integer) -- uid: OpenTK.Core.Platform.IDisplayComponent.GetResolution(OpenTK.Core.Platform.DisplayHandle,System.Int32@,System.Int32@) - commentId: M:OpenTK.Core.Platform.IDisplayComponent.GetResolution(OpenTK.Core.Platform.DisplayHandle,System.Int32@,System.Int32@) - id: GetResolution(OpenTK.Core.Platform.DisplayHandle,System.Int32@,System.Int32@) - parent: OpenTK.Core.Platform.IDisplayComponent - langs: - - csharp - - vb - name: GetResolution(DisplayHandle, out int, out int) - nameWithType: IDisplayComponent.GetResolution(DisplayHandle, out int, out int) - fullName: OpenTK.Core.Platform.IDisplayComponent.GetResolution(OpenTK.Core.Platform.DisplayHandle, out int, out int) - type: Method - source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/IDisplayComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: GetResolution - path: opentk/src/OpenTK.Core/Platform/Interfaces/IDisplayComponent.cs - startLine: 97 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Get the resolution of the specified display. - example: [] - syntax: - content: void GetResolution(DisplayHandle handle, out int width, out int height) - parameters: - - id: handle - type: OpenTK.Core.Platform.DisplayHandle - description: Handle to a display. - - id: width - type: System.Int32 - description: The horizontal resolution of the display. - - id: height - type: System.Int32 - description: The vertical resolution of the display. - content.vb: Sub GetResolution(handle As DisplayHandle, width As Integer, height As Integer) - overload: OpenTK.Core.Platform.IDisplayComponent.GetResolution* - exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: handle is null. - nameWithType.vb: IDisplayComponent.GetResolution(DisplayHandle, Integer, Integer) - fullName.vb: OpenTK.Core.Platform.IDisplayComponent.GetResolution(OpenTK.Core.Platform.DisplayHandle, Integer, Integer) - name.vb: GetResolution(DisplayHandle, Integer, Integer) -- uid: OpenTK.Core.Platform.IDisplayComponent.GetWorkArea(OpenTK.Core.Platform.DisplayHandle,OpenTK.Mathematics.Box2i@) - commentId: M:OpenTK.Core.Platform.IDisplayComponent.GetWorkArea(OpenTK.Core.Platform.DisplayHandle,OpenTK.Mathematics.Box2i@) - id: GetWorkArea(OpenTK.Core.Platform.DisplayHandle,OpenTK.Mathematics.Box2i@) - parent: OpenTK.Core.Platform.IDisplayComponent - langs: - - csharp - - vb - name: GetWorkArea(DisplayHandle, out Box2i) - nameWithType: IDisplayComponent.GetWorkArea(DisplayHandle, out Box2i) - fullName: OpenTK.Core.Platform.IDisplayComponent.GetWorkArea(OpenTK.Core.Platform.DisplayHandle, out OpenTK.Mathematics.Box2i) - type: Method - source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/IDisplayComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: GetWorkArea - path: opentk/src/OpenTK.Core/Platform/Interfaces/IDisplayComponent.cs - startLine: 105 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: >- - Get the work area of this display. - - The work area is the area of the display that is not covered by task bars or menu bars. - example: [] - syntax: - content: void GetWorkArea(DisplayHandle handle, out Box2i area) - parameters: - - id: handle - type: OpenTK.Core.Platform.DisplayHandle - description: Handle to a display. - - id: area - type: OpenTK.Mathematics.Box2i - description: The work area of the display. - content.vb: Sub GetWorkArea(handle As DisplayHandle, area As Box2i) - overload: OpenTK.Core.Platform.IDisplayComponent.GetWorkArea* - nameWithType.vb: IDisplayComponent.GetWorkArea(DisplayHandle, Box2i) - fullName.vb: OpenTK.Core.Platform.IDisplayComponent.GetWorkArea(OpenTK.Core.Platform.DisplayHandle, OpenTK.Mathematics.Box2i) - name.vb: GetWorkArea(DisplayHandle, Box2i) -- uid: OpenTK.Core.Platform.IDisplayComponent.GetRefreshRate(OpenTK.Core.Platform.DisplayHandle,System.Single@) - commentId: M:OpenTK.Core.Platform.IDisplayComponent.GetRefreshRate(OpenTK.Core.Platform.DisplayHandle,System.Single@) - id: GetRefreshRate(OpenTK.Core.Platform.DisplayHandle,System.Single@) - parent: OpenTK.Core.Platform.IDisplayComponent - langs: - - csharp - - vb - name: GetRefreshRate(DisplayHandle, out float) - nameWithType: IDisplayComponent.GetRefreshRate(DisplayHandle, out float) - fullName: OpenTK.Core.Platform.IDisplayComponent.GetRefreshRate(OpenTK.Core.Platform.DisplayHandle, out float) - type: Method - source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/IDisplayComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: GetRefreshRate - path: opentk/src/OpenTK.Core/Platform/Interfaces/IDisplayComponent.cs - startLine: 112 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Get the refresh rate if the specified display. - example: [] - syntax: - content: void GetRefreshRate(DisplayHandle handle, out float refreshRate) - parameters: - - id: handle - type: OpenTK.Core.Platform.DisplayHandle - description: Handle to a display. - - id: refreshRate - type: System.Single - description: The refresh rate of the display. - content.vb: Sub GetRefreshRate(handle As DisplayHandle, refreshRate As Single) - overload: OpenTK.Core.Platform.IDisplayComponent.GetRefreshRate* - nameWithType.vb: IDisplayComponent.GetRefreshRate(DisplayHandle, Single) - fullName.vb: OpenTK.Core.Platform.IDisplayComponent.GetRefreshRate(OpenTK.Core.Platform.DisplayHandle, Single) - name.vb: GetRefreshRate(DisplayHandle, Single) -- uid: OpenTK.Core.Platform.IDisplayComponent.GetDisplayScale(OpenTK.Core.Platform.DisplayHandle,System.Single@,System.Single@) - commentId: M:OpenTK.Core.Platform.IDisplayComponent.GetDisplayScale(OpenTK.Core.Platform.DisplayHandle,System.Single@,System.Single@) - id: GetDisplayScale(OpenTK.Core.Platform.DisplayHandle,System.Single@,System.Single@) - parent: OpenTK.Core.Platform.IDisplayComponent - langs: - - csharp - - vb - name: GetDisplayScale(DisplayHandle, out float, out float) - nameWithType: IDisplayComponent.GetDisplayScale(DisplayHandle, out float, out float) - fullName: OpenTK.Core.Platform.IDisplayComponent.GetDisplayScale(OpenTK.Core.Platform.DisplayHandle, out float, out float) - type: Method - source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/IDisplayComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: GetDisplayScale - path: opentk/src/OpenTK.Core/Platform/Interfaces/IDisplayComponent.cs - startLine: 120 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Get the scale of the display. - example: [] - syntax: - content: void GetDisplayScale(DisplayHandle handle, out float scaleX, out float scaleY) - parameters: - - id: handle - type: OpenTK.Core.Platform.DisplayHandle - description: Handle to a display. - - id: scaleX - type: System.Single - description: The X-axis scale of the monitor. - - id: scaleY - type: System.Single - description: The Y-axis scale of the monitor. - content.vb: Sub GetDisplayScale(handle As DisplayHandle, scaleX As Single, scaleY As Single) - overload: OpenTK.Core.Platform.IDisplayComponent.GetDisplayScale* - nameWithType.vb: IDisplayComponent.GetDisplayScale(DisplayHandle, Single, Single) - fullName.vb: OpenTK.Core.Platform.IDisplayComponent.GetDisplayScale(OpenTK.Core.Platform.DisplayHandle, Single, Single) - name.vb: GetDisplayScale(DisplayHandle, Single, Single) -references: -- uid: OpenTK.Core.Platform - commentId: N:OpenTK.Core.Platform - href: OpenTK.html - name: OpenTK.Core.Platform - nameWithType: OpenTK.Core.Platform - fullName: OpenTK.Core.Platform - spec.csharp: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform - name: Platform - href: OpenTK.Core.Platform.html - spec.vb: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform - name: Platform - href: OpenTK.Core.Platform.html -- uid: OpenTK.Core.Platform.IPalComponent.Name - commentId: P:OpenTK.Core.Platform.IPalComponent.Name - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Name - name: Name - nameWithType: IPalComponent.Name - fullName: OpenTK.Core.Platform.IPalComponent.Name -- uid: OpenTK.Core.Platform.IPalComponent.Provides - commentId: P:OpenTK.Core.Platform.IPalComponent.Provides - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Provides - name: Provides - nameWithType: IPalComponent.Provides - fullName: OpenTK.Core.Platform.IPalComponent.Provides -- uid: OpenTK.Core.Platform.IPalComponent.Logger - commentId: P:OpenTK.Core.Platform.IPalComponent.Logger - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Logger - name: Logger - nameWithType: IPalComponent.Logger - fullName: OpenTK.Core.Platform.IPalComponent.Logger -- uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - commentId: M:OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ - name: Initialize(ToolkitOptions) - nameWithType: IPalComponent.Initialize(ToolkitOptions) - fullName: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - spec.csharp: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ - - name: ( - - uid: OpenTK.Core.Platform.ToolkitOptions - name: ToolkitOptions - href: OpenTK.Core.Platform.ToolkitOptions.html - - name: ) - spec.vb: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ - - name: ( - - uid: OpenTK.Core.Platform.ToolkitOptions - name: ToolkitOptions - href: OpenTK.Core.Platform.ToolkitOptions.html - - name: ) -- uid: OpenTK.Core.Platform.IPalComponent - commentId: T:OpenTK.Core.Platform.IPalComponent - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.IPalComponent.html - name: IPalComponent - nameWithType: IPalComponent - fullName: OpenTK.Core.Platform.IPalComponent -- uid: OpenTK.Core.Platform.IDisplayComponent.CanGetVirtualPosition* - commentId: Overload:OpenTK.Core.Platform.IDisplayComponent.CanGetVirtualPosition - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_CanGetVirtualPosition - name: CanGetVirtualPosition - nameWithType: IDisplayComponent.CanGetVirtualPosition - fullName: OpenTK.Core.Platform.IDisplayComponent.CanGetVirtualPosition -- uid: System.Boolean - commentId: T:System.Boolean - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - name: bool - nameWithType: bool - fullName: bool - nameWithType.vb: Boolean - fullName.vb: Boolean - name.vb: Boolean -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: OpenTK.Core.Platform.IDisplayComponent.GetDisplayCount* - commentId: Overload:OpenTK.Core.Platform.IDisplayComponent.GetDisplayCount - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_GetDisplayCount - name: GetDisplayCount - nameWithType: IDisplayComponent.GetDisplayCount - fullName: OpenTK.Core.Platform.IDisplayComponent.GetDisplayCount -- uid: System.Int32 - commentId: T:System.Int32 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - name: int - nameWithType: int - fullName: int - nameWithType.vb: Integer - fullName.vb: Integer - name.vb: Integer -- uid: System.ArgumentOutOfRangeException - commentId: T:System.ArgumentOutOfRangeException - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.argumentoutofrangeexception - name: ArgumentOutOfRangeException - nameWithType: ArgumentOutOfRangeException - fullName: System.ArgumentOutOfRangeException -- uid: OpenTK.Core.Platform.IDisplayComponent.Open* - commentId: Overload:OpenTK.Core.Platform.IDisplayComponent.Open - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_Open_System_Int32_ - name: Open - nameWithType: IDisplayComponent.Open - fullName: OpenTK.Core.Platform.IDisplayComponent.Open -- uid: OpenTK.Core.Platform.DisplayHandle - commentId: T:OpenTK.Core.Platform.DisplayHandle - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.DisplayHandle.html - name: DisplayHandle - nameWithType: DisplayHandle - fullName: OpenTK.Core.Platform.DisplayHandle -- uid: OpenTK.Core.Platform.IDisplayComponent.OpenPrimary* - commentId: Overload:OpenTK.Core.Platform.IDisplayComponent.OpenPrimary - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_OpenPrimary - name: OpenPrimary - nameWithType: IDisplayComponent.OpenPrimary - fullName: OpenTK.Core.Platform.IDisplayComponent.OpenPrimary -- uid: System.ArgumentNullException - commentId: T:System.ArgumentNullException - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.argumentnullexception - name: ArgumentNullException - nameWithType: ArgumentNullException - fullName: System.ArgumentNullException -- uid: OpenTK.Core.Platform.IDisplayComponent.Close* - commentId: Overload:OpenTK.Core.Platform.IDisplayComponent.Close - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_Close_OpenTK_Core_Platform_DisplayHandle_ - name: Close - nameWithType: IDisplayComponent.Close - fullName: OpenTK.Core.Platform.IDisplayComponent.Close -- uid: OpenTK.Core.Platform.IDisplayComponent.IsPrimary* - commentId: Overload:OpenTK.Core.Platform.IDisplayComponent.IsPrimary - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_IsPrimary_OpenTK_Core_Platform_DisplayHandle_ - name: IsPrimary - nameWithType: IDisplayComponent.IsPrimary - fullName: OpenTK.Core.Platform.IDisplayComponent.IsPrimary -- uid: OpenTK.Core.Platform.IDisplayComponent.GetName* - commentId: Overload:OpenTK.Core.Platform.IDisplayComponent.GetName - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_GetName_OpenTK_Core_Platform_DisplayHandle_ - name: GetName - nameWithType: IDisplayComponent.GetName - fullName: OpenTK.Core.Platform.IDisplayComponent.GetName -- uid: System.String - commentId: T:System.String - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - name: string - nameWithType: string - fullName: string - nameWithType.vb: String - fullName.vb: String - name.vb: String -- uid: OpenTK.Core.Platform.IDisplayComponent.GetVideoMode* - commentId: Overload:OpenTK.Core.Platform.IDisplayComponent.GetVideoMode - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_GetVideoMode_OpenTK_Core_Platform_DisplayHandle_OpenTK_Core_Platform_VideoMode__ - name: GetVideoMode - nameWithType: IDisplayComponent.GetVideoMode - fullName: OpenTK.Core.Platform.IDisplayComponent.GetVideoMode -- uid: OpenTK.Core.Platform.VideoMode - commentId: T:OpenTK.Core.Platform.VideoMode - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.VideoMode.html - name: VideoMode - nameWithType: VideoMode - fullName: OpenTK.Core.Platform.VideoMode -- uid: OpenTK.Core.Platform.IDisplayComponent.GetSupportedVideoModes* - commentId: Overload:OpenTK.Core.Platform.IDisplayComponent.GetSupportedVideoModes - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_GetSupportedVideoModes_OpenTK_Core_Platform_DisplayHandle_ - name: GetSupportedVideoModes - nameWithType: IDisplayComponent.GetSupportedVideoModes - fullName: OpenTK.Core.Platform.IDisplayComponent.GetSupportedVideoModes -- uid: OpenTK.Core.Platform.VideoMode[] - isExternal: true - href: OpenTK.Core.Platform.VideoMode.html - name: VideoMode[] - nameWithType: VideoMode[] - fullName: OpenTK.Core.Platform.VideoMode[] - nameWithType.vb: VideoMode() - fullName.vb: OpenTK.Core.Platform.VideoMode() - name.vb: VideoMode() - spec.csharp: - - uid: OpenTK.Core.Platform.VideoMode - name: VideoMode - href: OpenTK.Core.Platform.VideoMode.html - - name: '[' - - name: ']' - spec.vb: - - uid: OpenTK.Core.Platform.VideoMode - name: VideoMode - href: OpenTK.Core.Platform.VideoMode.html - - name: ( - - name: ) -- uid: OpenTK.Core.Platform.IDisplayComponent.CanGetVirtualPosition - commentId: P:OpenTK.Core.Platform.IDisplayComponent.CanGetVirtualPosition - parent: OpenTK.Core.Platform.IDisplayComponent - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_CanGetVirtualPosition - name: CanGetVirtualPosition - nameWithType: IDisplayComponent.CanGetVirtualPosition - fullName: OpenTK.Core.Platform.IDisplayComponent.CanGetVirtualPosition -- uid: OpenTK.Core.Platform.PalNotImplementedException - commentId: T:OpenTK.Core.Platform.PalNotImplementedException - href: OpenTK.Core.Platform.PalNotImplementedException.html - name: PalNotImplementedException - nameWithType: PalNotImplementedException - fullName: OpenTK.Core.Platform.PalNotImplementedException -- uid: OpenTK.Core.Platform.IDisplayComponent.GetVirtualPosition* - commentId: Overload:OpenTK.Core.Platform.IDisplayComponent.GetVirtualPosition - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_GetVirtualPosition_OpenTK_Core_Platform_DisplayHandle_System_Int32__System_Int32__ - name: GetVirtualPosition - nameWithType: IDisplayComponent.GetVirtualPosition - fullName: OpenTK.Core.Platform.IDisplayComponent.GetVirtualPosition -- uid: OpenTK.Core.Platform.IDisplayComponent - commentId: T:OpenTK.Core.Platform.IDisplayComponent - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.IDisplayComponent.html - name: IDisplayComponent - nameWithType: IDisplayComponent - fullName: OpenTK.Core.Platform.IDisplayComponent -- uid: OpenTK.Core.Platform.IDisplayComponent.GetResolution* - commentId: Overload:OpenTK.Core.Platform.IDisplayComponent.GetResolution - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_GetResolution_OpenTK_Core_Platform_DisplayHandle_System_Int32__System_Int32__ - name: GetResolution - nameWithType: IDisplayComponent.GetResolution - fullName: OpenTK.Core.Platform.IDisplayComponent.GetResolution -- uid: OpenTK.Core.Platform.IDisplayComponent.GetWorkArea* - commentId: Overload:OpenTK.Core.Platform.IDisplayComponent.GetWorkArea - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_GetWorkArea_OpenTK_Core_Platform_DisplayHandle_OpenTK_Mathematics_Box2i__ - name: GetWorkArea - nameWithType: IDisplayComponent.GetWorkArea - fullName: OpenTK.Core.Platform.IDisplayComponent.GetWorkArea -- uid: OpenTK.Mathematics.Box2i - commentId: T:OpenTK.Mathematics.Box2i - parent: OpenTK.Mathematics - href: OpenTK.Mathematics.Box2i.html - name: Box2i - nameWithType: Box2i - fullName: OpenTK.Mathematics.Box2i -- uid: OpenTK.Mathematics - commentId: N:OpenTK.Mathematics - href: OpenTK.html - name: OpenTK.Mathematics - nameWithType: OpenTK.Mathematics - fullName: OpenTK.Mathematics - spec.csharp: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Mathematics - name: Mathematics - href: OpenTK.Mathematics.html - spec.vb: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Mathematics - name: Mathematics - href: OpenTK.Mathematics.html -- uid: OpenTK.Core.Platform.IDisplayComponent.GetRefreshRate* - commentId: Overload:OpenTK.Core.Platform.IDisplayComponent.GetRefreshRate - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_GetRefreshRate_OpenTK_Core_Platform_DisplayHandle_System_Single__ - name: GetRefreshRate - nameWithType: IDisplayComponent.GetRefreshRate - fullName: OpenTK.Core.Platform.IDisplayComponent.GetRefreshRate -- uid: System.Single - commentId: T:System.Single - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.single - name: float - nameWithType: float - fullName: float - nameWithType.vb: Single - fullName.vb: Single - name.vb: Single -- uid: OpenTK.Core.Platform.IDisplayComponent.GetDisplayScale* - commentId: Overload:OpenTK.Core.Platform.IDisplayComponent.GetDisplayScale - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_GetDisplayScale_OpenTK_Core_Platform_DisplayHandle_System_Single__System_Single__ - name: GetDisplayScale - nameWithType: IDisplayComponent.GetDisplayScale - fullName: OpenTK.Core.Platform.IDisplayComponent.GetDisplayScale diff --git a/api/OpenTK.Core.Platform.IIconComponent.yml b/api/OpenTK.Core.Platform.IIconComponent.yml deleted file mode 100644 index 2f4d6534..00000000 --- a/api/OpenTK.Core.Platform.IIconComponent.yml +++ /dev/null @@ -1,500 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: OpenTK.Core.Platform.IIconComponent - commentId: T:OpenTK.Core.Platform.IIconComponent - id: IIconComponent - parent: OpenTK.Core.Platform - children: - - OpenTK.Core.Platform.IIconComponent.CanLoadSystemIcons - - OpenTK.Core.Platform.IIconComponent.Create(OpenTK.Core.Platform.SystemIconType) - - OpenTK.Core.Platform.IIconComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte}) - - OpenTK.Core.Platform.IIconComponent.Destroy(OpenTK.Core.Platform.IconHandle) - - OpenTK.Core.Platform.IIconComponent.GetSize(OpenTK.Core.Platform.IconHandle,System.Int32@,System.Int32@) - langs: - - csharp - - vb - name: IIconComponent - nameWithType: IIconComponent - fullName: OpenTK.Core.Platform.IIconComponent - type: Interface - source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/IIconComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: IIconComponent - path: opentk/src/OpenTK.Core/Platform/Interfaces/IIconComponent.cs - startLine: 8 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Interface for PAL drivers which provide the icon component. - example: [] - syntax: - content: 'public interface IIconComponent : IPalComponent' - content.vb: Public Interface IIconComponent Inherits IPalComponent - inheritedMembers: - - OpenTK.Core.Platform.IPalComponent.Name - - OpenTK.Core.Platform.IPalComponent.Provides - - OpenTK.Core.Platform.IPalComponent.Logger - - OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) -- uid: OpenTK.Core.Platform.IIconComponent.CanLoadSystemIcons - commentId: P:OpenTK.Core.Platform.IIconComponent.CanLoadSystemIcons - id: CanLoadSystemIcons - parent: OpenTK.Core.Platform.IIconComponent - langs: - - csharp - - vb - name: CanLoadSystemIcons - nameWithType: IIconComponent.CanLoadSystemIcons - fullName: OpenTK.Core.Platform.IIconComponent.CanLoadSystemIcons - type: Property - source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/IIconComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: CanLoadSystemIcons - path: opentk/src/OpenTK.Core/Platform/Interfaces/IIconComponent.cs - startLine: 14 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: >- - True if icon objects can be populated from common system icons. - - If this is true, then will work, otherwise an exception will be thrown. - example: [] - syntax: - content: bool CanLoadSystemIcons { get; } - parameters: [] - return: - type: System.Boolean - content.vb: ReadOnly Property CanLoadSystemIcons As Boolean - overload: OpenTK.Core.Platform.IIconComponent.CanLoadSystemIcons* -- uid: OpenTK.Core.Platform.IIconComponent.Create(OpenTK.Core.Platform.SystemIconType) - commentId: M:OpenTK.Core.Platform.IIconComponent.Create(OpenTK.Core.Platform.SystemIconType) - id: Create(OpenTK.Core.Platform.SystemIconType) - parent: OpenTK.Core.Platform.IIconComponent - langs: - - csharp - - vb - name: Create(SystemIconType) - nameWithType: IIconComponent.Create(SystemIconType) - fullName: OpenTK.Core.Platform.IIconComponent.Create(OpenTK.Core.Platform.SystemIconType) - type: Method - source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/IIconComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Create - path: opentk/src/OpenTK.Core/Platform/Interfaces/IIconComponent.cs - startLine: 23 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: >- - Load a system icon. - - Only works if is true. - example: [] - syntax: - content: IconHandle Create(SystemIconType systemIcon) - parameters: - - id: systemIcon - type: OpenTK.Core.Platform.SystemIconType - description: The system icon to create. - return: - type: OpenTK.Core.Platform.IconHandle - description: A handle to the created system icon. - content.vb: Function Create(systemIcon As SystemIconType) As IconHandle - overload: OpenTK.Core.Platform.IIconComponent.Create* - seealso: - - linkId: OpenTK.Core.Platform.IIconComponent.CanLoadSystemIcons - commentId: P:OpenTK.Core.Platform.IIconComponent.CanLoadSystemIcons -- uid: OpenTK.Core.Platform.IIconComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte}) - commentId: M:OpenTK.Core.Platform.IIconComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte}) - id: Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte}) - parent: OpenTK.Core.Platform.IIconComponent - langs: - - csharp - - vb - name: Create(int, int, ReadOnlySpan) - nameWithType: IIconComponent.Create(int, int, ReadOnlySpan) - fullName: OpenTK.Core.Platform.IIconComponent.Create(int, int, System.ReadOnlySpan) - type: Method - source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/IIconComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Create - path: opentk/src/OpenTK.Core/Platform/Interfaces/IIconComponent.cs - startLine: 33 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Load an icon object with image data. - example: [] - syntax: - content: IconHandle Create(int width, int height, ReadOnlySpan data) - parameters: - - id: width - type: System.Int32 - description: Width of the bitmap. - - id: height - type: System.Int32 - description: Height of the bitmap. - - id: data - type: System.ReadOnlySpan{System.Byte} - description: Image data to load into icon. - return: - type: OpenTK.Core.Platform.IconHandle - description: A handle to the created icon. - content.vb: Function Create(width As Integer, height As Integer, data As ReadOnlySpan(Of Byte)) As IconHandle - overload: OpenTK.Core.Platform.IIconComponent.Create* - nameWithType.vb: IIconComponent.Create(Integer, Integer, ReadOnlySpan(Of Byte)) - fullName.vb: OpenTK.Core.Platform.IIconComponent.Create(Integer, Integer, System.ReadOnlySpan(Of Byte)) - name.vb: Create(Integer, Integer, ReadOnlySpan(Of Byte)) -- uid: OpenTK.Core.Platform.IIconComponent.Destroy(OpenTK.Core.Platform.IconHandle) - commentId: M:OpenTK.Core.Platform.IIconComponent.Destroy(OpenTK.Core.Platform.IconHandle) - id: Destroy(OpenTK.Core.Platform.IconHandle) - parent: OpenTK.Core.Platform.IIconComponent - langs: - - csharp - - vb - name: Destroy(IconHandle) - nameWithType: IIconComponent.Destroy(IconHandle) - fullName: OpenTK.Core.Platform.IIconComponent.Destroy(OpenTK.Core.Platform.IconHandle) - type: Method - source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/IIconComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Destroy - path: opentk/src/OpenTK.Core/Platform/Interfaces/IIconComponent.cs - startLine: 40 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Destroy an icon object. - example: [] - syntax: - content: void Destroy(IconHandle handle) - parameters: - - id: handle - type: OpenTK.Core.Platform.IconHandle - description: Handle to the icon object to destroy. - content.vb: Sub Destroy(handle As IconHandle) - overload: OpenTK.Core.Platform.IIconComponent.Destroy* - exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: handle is null. -- uid: OpenTK.Core.Platform.IIconComponent.GetSize(OpenTK.Core.Platform.IconHandle,System.Int32@,System.Int32@) - commentId: M:OpenTK.Core.Platform.IIconComponent.GetSize(OpenTK.Core.Platform.IconHandle,System.Int32@,System.Int32@) - id: GetSize(OpenTK.Core.Platform.IconHandle,System.Int32@,System.Int32@) - parent: OpenTK.Core.Platform.IIconComponent - langs: - - csharp - - vb - name: GetSize(IconHandle, out int, out int) - nameWithType: IIconComponent.GetSize(IconHandle, out int, out int) - fullName: OpenTK.Core.Platform.IIconComponent.GetSize(OpenTK.Core.Platform.IconHandle, out int, out int) - type: Method - source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/IIconComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: GetSize - path: opentk/src/OpenTK.Core/Platform/Interfaces/IIconComponent.cs - startLine: 49 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Get the dimensions of a icon object. - example: [] - syntax: - content: void GetSize(IconHandle handle, out int width, out int height) - parameters: - - id: handle - type: OpenTK.Core.Platform.IconHandle - description: Handle to icon object. - - id: width - type: System.Int32 - description: Width of the icon. - - id: height - type: System.Int32 - description: Height of icon. - content.vb: Sub GetSize(handle As IconHandle, width As Integer, height As Integer) - overload: OpenTK.Core.Platform.IIconComponent.GetSize* - exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: handle is null. - nameWithType.vb: IIconComponent.GetSize(IconHandle, Integer, Integer) - fullName.vb: OpenTK.Core.Platform.IIconComponent.GetSize(OpenTK.Core.Platform.IconHandle, Integer, Integer) - name.vb: GetSize(IconHandle, Integer, Integer) -references: -- uid: OpenTK.Core.Platform - commentId: N:OpenTK.Core.Platform - href: OpenTK.html - name: OpenTK.Core.Platform - nameWithType: OpenTK.Core.Platform - fullName: OpenTK.Core.Platform - spec.csharp: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform - name: Platform - href: OpenTK.Core.Platform.html - spec.vb: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform - name: Platform - href: OpenTK.Core.Platform.html -- uid: OpenTK.Core.Platform.IPalComponent.Name - commentId: P:OpenTK.Core.Platform.IPalComponent.Name - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Name - name: Name - nameWithType: IPalComponent.Name - fullName: OpenTK.Core.Platform.IPalComponent.Name -- uid: OpenTK.Core.Platform.IPalComponent.Provides - commentId: P:OpenTK.Core.Platform.IPalComponent.Provides - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Provides - name: Provides - nameWithType: IPalComponent.Provides - fullName: OpenTK.Core.Platform.IPalComponent.Provides -- uid: OpenTK.Core.Platform.IPalComponent.Logger - commentId: P:OpenTK.Core.Platform.IPalComponent.Logger - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Logger - name: Logger - nameWithType: IPalComponent.Logger - fullName: OpenTK.Core.Platform.IPalComponent.Logger -- uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - commentId: M:OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ - name: Initialize(ToolkitOptions) - nameWithType: IPalComponent.Initialize(ToolkitOptions) - fullName: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - spec.csharp: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ - - name: ( - - uid: OpenTK.Core.Platform.ToolkitOptions - name: ToolkitOptions - href: OpenTK.Core.Platform.ToolkitOptions.html - - name: ) - spec.vb: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ - - name: ( - - uid: OpenTK.Core.Platform.ToolkitOptions - name: ToolkitOptions - href: OpenTK.Core.Platform.ToolkitOptions.html - - name: ) -- uid: OpenTK.Core.Platform.IPalComponent - commentId: T:OpenTK.Core.Platform.IPalComponent - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.IPalComponent.html - name: IPalComponent - nameWithType: IPalComponent - fullName: OpenTK.Core.Platform.IPalComponent -- uid: OpenTK.Core.Platform.IIconComponent.Create(OpenTK.Core.Platform.SystemIconType) - commentId: M:OpenTK.Core.Platform.IIconComponent.Create(OpenTK.Core.Platform.SystemIconType) - parent: OpenTK.Core.Platform.IIconComponent - href: OpenTK.Core.Platform.IIconComponent.html#OpenTK_Core_Platform_IIconComponent_Create_OpenTK_Core_Platform_SystemIconType_ - name: Create(SystemIconType) - nameWithType: IIconComponent.Create(SystemIconType) - fullName: OpenTK.Core.Platform.IIconComponent.Create(OpenTK.Core.Platform.SystemIconType) - spec.csharp: - - uid: OpenTK.Core.Platform.IIconComponent.Create(OpenTK.Core.Platform.SystemIconType) - name: Create - href: OpenTK.Core.Platform.IIconComponent.html#OpenTK_Core_Platform_IIconComponent_Create_OpenTK_Core_Platform_SystemIconType_ - - name: ( - - uid: OpenTK.Core.Platform.SystemIconType - name: SystemIconType - href: OpenTK.Core.Platform.SystemIconType.html - - name: ) - spec.vb: - - uid: OpenTK.Core.Platform.IIconComponent.Create(OpenTK.Core.Platform.SystemIconType) - name: Create - href: OpenTK.Core.Platform.IIconComponent.html#OpenTK_Core_Platform_IIconComponent_Create_OpenTK_Core_Platform_SystemIconType_ - - name: ( - - uid: OpenTK.Core.Platform.SystemIconType - name: SystemIconType - href: OpenTK.Core.Platform.SystemIconType.html - - name: ) -- uid: OpenTK.Core.Platform.IIconComponent.CanLoadSystemIcons* - commentId: Overload:OpenTK.Core.Platform.IIconComponent.CanLoadSystemIcons - href: OpenTK.Core.Platform.IIconComponent.html#OpenTK_Core_Platform_IIconComponent_CanLoadSystemIcons - name: CanLoadSystemIcons - nameWithType: IIconComponent.CanLoadSystemIcons - fullName: OpenTK.Core.Platform.IIconComponent.CanLoadSystemIcons -- uid: System.Boolean - commentId: T:System.Boolean - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - name: bool - nameWithType: bool - fullName: bool - nameWithType.vb: Boolean - fullName.vb: Boolean - name.vb: Boolean -- uid: OpenTK.Core.Platform.IIconComponent - commentId: T:OpenTK.Core.Platform.IIconComponent - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.IIconComponent.html - name: IIconComponent - nameWithType: IIconComponent - fullName: OpenTK.Core.Platform.IIconComponent -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: OpenTK.Core.Platform.IIconComponent.CanLoadSystemIcons - commentId: P:OpenTK.Core.Platform.IIconComponent.CanLoadSystemIcons - parent: OpenTK.Core.Platform.IIconComponent - href: OpenTK.Core.Platform.IIconComponent.html#OpenTK_Core_Platform_IIconComponent_CanLoadSystemIcons - name: CanLoadSystemIcons - nameWithType: IIconComponent.CanLoadSystemIcons - fullName: OpenTK.Core.Platform.IIconComponent.CanLoadSystemIcons -- uid: OpenTK.Core.Platform.IIconComponent.Create* - commentId: Overload:OpenTK.Core.Platform.IIconComponent.Create - href: OpenTK.Core.Platform.IIconComponent.html#OpenTK_Core_Platform_IIconComponent_Create_OpenTK_Core_Platform_SystemIconType_ - name: Create - nameWithType: IIconComponent.Create - fullName: OpenTK.Core.Platform.IIconComponent.Create -- uid: OpenTK.Core.Platform.SystemIconType - commentId: T:OpenTK.Core.Platform.SystemIconType - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.SystemIconType.html - name: SystemIconType - nameWithType: SystemIconType - fullName: OpenTK.Core.Platform.SystemIconType -- uid: OpenTK.Core.Platform.IconHandle - commentId: T:OpenTK.Core.Platform.IconHandle - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.IconHandle.html - name: IconHandle - nameWithType: IconHandle - fullName: OpenTK.Core.Platform.IconHandle -- uid: System.Int32 - commentId: T:System.Int32 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - name: int - nameWithType: int - fullName: int - nameWithType.vb: Integer - fullName.vb: Integer - name.vb: Integer -- uid: System.ReadOnlySpan{System.Byte} - commentId: T:System.ReadOnlySpan{System.Byte} - parent: System - definition: System.ReadOnlySpan`1 - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - name: ReadOnlySpan - nameWithType: ReadOnlySpan - fullName: System.ReadOnlySpan - nameWithType.vb: ReadOnlySpan(Of Byte) - fullName.vb: System.ReadOnlySpan(Of Byte) - name.vb: ReadOnlySpan(Of Byte) - spec.csharp: - - uid: System.ReadOnlySpan`1 - name: ReadOnlySpan - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - - name: < - - uid: System.Byte - name: byte - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.byte - - name: '>' - spec.vb: - - uid: System.ReadOnlySpan`1 - name: ReadOnlySpan - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - - name: ( - - name: Of - - name: " " - - uid: System.Byte - name: Byte - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.byte - - name: ) -- uid: System.ReadOnlySpan`1 - commentId: T:System.ReadOnlySpan`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - name: ReadOnlySpan - nameWithType: ReadOnlySpan - fullName: System.ReadOnlySpan - nameWithType.vb: ReadOnlySpan(Of T) - fullName.vb: System.ReadOnlySpan(Of T) - name.vb: ReadOnlySpan(Of T) - spec.csharp: - - uid: System.ReadOnlySpan`1 - name: ReadOnlySpan - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.ReadOnlySpan`1 - name: ReadOnlySpan - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: System.ArgumentNullException - commentId: T:System.ArgumentNullException - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.argumentnullexception - name: ArgumentNullException - nameWithType: ArgumentNullException - fullName: System.ArgumentNullException -- uid: OpenTK.Core.Platform.IIconComponent.Destroy* - commentId: Overload:OpenTK.Core.Platform.IIconComponent.Destroy - href: OpenTK.Core.Platform.IIconComponent.html#OpenTK_Core_Platform_IIconComponent_Destroy_OpenTK_Core_Platform_IconHandle_ - name: Destroy - nameWithType: IIconComponent.Destroy - fullName: OpenTK.Core.Platform.IIconComponent.Destroy -- uid: OpenTK.Core.Platform.IIconComponent.GetSize* - commentId: Overload:OpenTK.Core.Platform.IIconComponent.GetSize - href: OpenTK.Core.Platform.IIconComponent.html#OpenTK_Core_Platform_IIconComponent_GetSize_OpenTK_Core_Platform_IconHandle_System_Int32__System_Int32__ - name: GetSize - nameWithType: IIconComponent.GetSize - fullName: OpenTK.Core.Platform.IIconComponent.GetSize diff --git a/api/OpenTK.Core.Platform.IJoystickComponent.yml b/api/OpenTK.Core.Platform.IJoystickComponent.yml deleted file mode 100644 index f1685f20..00000000 --- a/api/OpenTK.Core.Platform.IJoystickComponent.yml +++ /dev/null @@ -1,706 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: OpenTK.Core.Platform.IJoystickComponent - commentId: T:OpenTK.Core.Platform.IJoystickComponent - id: IJoystickComponent - parent: OpenTK.Core.Platform - children: - - OpenTK.Core.Platform.IJoystickComponent.Close(OpenTK.Core.Platform.JoystickHandle) - - OpenTK.Core.Platform.IJoystickComponent.GetAxis(OpenTK.Core.Platform.JoystickHandle,OpenTK.Core.Platform.JoystickAxis) - - OpenTK.Core.Platform.IJoystickComponent.GetButton(OpenTK.Core.Platform.JoystickHandle,OpenTK.Core.Platform.JoystickButton) - - OpenTK.Core.Platform.IJoystickComponent.GetGuid(OpenTK.Core.Platform.JoystickHandle) - - OpenTK.Core.Platform.IJoystickComponent.GetName(OpenTK.Core.Platform.JoystickHandle) - - OpenTK.Core.Platform.IJoystickComponent.IsConnected(System.Int32) - - OpenTK.Core.Platform.IJoystickComponent.LeftDeadzone - - OpenTK.Core.Platform.IJoystickComponent.Open(System.Int32) - - OpenTK.Core.Platform.IJoystickComponent.RightDeadzone - - OpenTK.Core.Platform.IJoystickComponent.SetVibration(OpenTK.Core.Platform.JoystickHandle,System.Single,System.Single) - - OpenTK.Core.Platform.IJoystickComponent.TriggerThreshold - - OpenTK.Core.Platform.IJoystickComponent.TryGetBatteryInfo(OpenTK.Core.Platform.JoystickHandle,OpenTK.Core.Platform.GamepadBatteryInfo@) - langs: - - csharp - - vb - name: IJoystickComponent - nameWithType: IJoystickComponent - fullName: OpenTK.Core.Platform.IJoystickComponent - type: Interface - source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/IJoystickComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: IJoystickComponent - path: opentk/src/OpenTK.Core/Platform/Interfaces/IJoystickComponent.cs - startLine: 12 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Interface for interacting with joysticks. - example: [] - syntax: - content: 'public interface IJoystickComponent : IPalComponent' - content.vb: Public Interface IJoystickComponent Inherits IPalComponent - inheritedMembers: - - OpenTK.Core.Platform.IPalComponent.Name - - OpenTK.Core.Platform.IPalComponent.Provides - - OpenTK.Core.Platform.IPalComponent.Logger - - OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) -- uid: OpenTK.Core.Platform.IJoystickComponent.LeftDeadzone - commentId: P:OpenTK.Core.Platform.IJoystickComponent.LeftDeadzone - id: LeftDeadzone - parent: OpenTK.Core.Platform.IJoystickComponent - langs: - - csharp - - vb - name: LeftDeadzone - nameWithType: IJoystickComponent.LeftDeadzone - fullName: OpenTK.Core.Platform.IJoystickComponent.LeftDeadzone - type: Property - source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/IJoystickComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: LeftDeadzone - path: opentk/src/OpenTK.Core/Platform/Interfaces/IJoystickComponent.cs - startLine: 27 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: The recommended deadzone value for the left analog stick. - example: [] - syntax: - content: float LeftDeadzone { get; } - parameters: [] - return: - type: System.Single - content.vb: ReadOnly Property LeftDeadzone As Single - overload: OpenTK.Core.Platform.IJoystickComponent.LeftDeadzone* -- uid: OpenTK.Core.Platform.IJoystickComponent.RightDeadzone - commentId: P:OpenTK.Core.Platform.IJoystickComponent.RightDeadzone - id: RightDeadzone - parent: OpenTK.Core.Platform.IJoystickComponent - langs: - - csharp - - vb - name: RightDeadzone - nameWithType: IJoystickComponent.RightDeadzone - fullName: OpenTK.Core.Platform.IJoystickComponent.RightDeadzone - type: Property - source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/IJoystickComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: RightDeadzone - path: opentk/src/OpenTK.Core/Platform/Interfaces/IJoystickComponent.cs - startLine: 32 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: The recommended deadzone value for the right analog stick. - example: [] - syntax: - content: float RightDeadzone { get; } - parameters: [] - return: - type: System.Single - content.vb: ReadOnly Property RightDeadzone As Single - overload: OpenTK.Core.Platform.IJoystickComponent.RightDeadzone* -- uid: OpenTK.Core.Platform.IJoystickComponent.TriggerThreshold - commentId: P:OpenTK.Core.Platform.IJoystickComponent.TriggerThreshold - id: TriggerThreshold - parent: OpenTK.Core.Platform.IJoystickComponent - langs: - - csharp - - vb - name: TriggerThreshold - nameWithType: IJoystickComponent.TriggerThreshold - fullName: OpenTK.Core.Platform.IJoystickComponent.TriggerThreshold - type: Property - source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/IJoystickComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: TriggerThreshold - path: opentk/src/OpenTK.Core/Platform/Interfaces/IJoystickComponent.cs - startLine: 37 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: The recommended threshold for considering the left or right trigger pressed. - example: [] - syntax: - content: float TriggerThreshold { get; } - parameters: [] - return: - type: System.Single - content.vb: ReadOnly Property TriggerThreshold As Single - overload: OpenTK.Core.Platform.IJoystickComponent.TriggerThreshold* -- uid: OpenTK.Core.Platform.IJoystickComponent.IsConnected(System.Int32) - commentId: M:OpenTK.Core.Platform.IJoystickComponent.IsConnected(System.Int32) - id: IsConnected(System.Int32) - parent: OpenTK.Core.Platform.IJoystickComponent - langs: - - csharp - - vb - name: IsConnected(int) - nameWithType: IJoystickComponent.IsConnected(int) - fullName: OpenTK.Core.Platform.IJoystickComponent.IsConnected(int) - type: Method - source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/IJoystickComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: IsConnected - path: opentk/src/OpenTK.Core/Platform/Interfaces/IJoystickComponent.cs - startLine: 44 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Checks wether a joystick with the specific index is present on the system or not. - example: [] - syntax: - content: bool IsConnected(int index) - parameters: - - id: index - type: System.Int32 - description: The index of the joystick. - return: - type: System.Boolean - description: If a joystick with the specified index is connected. - content.vb: Function IsConnected(index As Integer) As Boolean - overload: OpenTK.Core.Platform.IJoystickComponent.IsConnected* - nameWithType.vb: IJoystickComponent.IsConnected(Integer) - fullName.vb: OpenTK.Core.Platform.IJoystickComponent.IsConnected(Integer) - name.vb: IsConnected(Integer) -- uid: OpenTK.Core.Platform.IJoystickComponent.Open(System.Int32) - commentId: M:OpenTK.Core.Platform.IJoystickComponent.Open(System.Int32) - id: Open(System.Int32) - parent: OpenTK.Core.Platform.IJoystickComponent - langs: - - csharp - - vb - name: Open(int) - nameWithType: IJoystickComponent.Open(int) - fullName: OpenTK.Core.Platform.IJoystickComponent.Open(int) - type: Method - source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/IJoystickComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Open - path: opentk/src/OpenTK.Core/Platform/Interfaces/IJoystickComponent.cs - startLine: 51 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Opens a handle to a specific joystick. - example: [] - syntax: - content: JoystickHandle Open(int index) - parameters: - - id: index - type: System.Int32 - description: The player index of the joystick to open. - return: - type: OpenTK.Core.Platform.JoystickHandle - description: The opened joystick handle. - content.vb: Function Open(index As Integer) As JoystickHandle - overload: OpenTK.Core.Platform.IJoystickComponent.Open* - nameWithType.vb: IJoystickComponent.Open(Integer) - fullName.vb: OpenTK.Core.Platform.IJoystickComponent.Open(Integer) - name.vb: Open(Integer) -- uid: OpenTK.Core.Platform.IJoystickComponent.Close(OpenTK.Core.Platform.JoystickHandle) - commentId: M:OpenTK.Core.Platform.IJoystickComponent.Close(OpenTK.Core.Platform.JoystickHandle) - id: Close(OpenTK.Core.Platform.JoystickHandle) - parent: OpenTK.Core.Platform.IJoystickComponent - langs: - - csharp - - vb - name: Close(JoystickHandle) - nameWithType: IJoystickComponent.Close(JoystickHandle) - fullName: OpenTK.Core.Platform.IJoystickComponent.Close(OpenTK.Core.Platform.JoystickHandle) - type: Method - source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/IJoystickComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Close - path: opentk/src/OpenTK.Core/Platform/Interfaces/IJoystickComponent.cs - startLine: 57 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Closes a handle to a joystick. - example: [] - syntax: - content: void Close(JoystickHandle handle) - parameters: - - id: handle - type: OpenTK.Core.Platform.JoystickHandle - description: The joystick handle. - content.vb: Sub Close(handle As JoystickHandle) - overload: OpenTK.Core.Platform.IJoystickComponent.Close* -- uid: OpenTK.Core.Platform.IJoystickComponent.GetGuid(OpenTK.Core.Platform.JoystickHandle) - commentId: M:OpenTK.Core.Platform.IJoystickComponent.GetGuid(OpenTK.Core.Platform.JoystickHandle) - id: GetGuid(OpenTK.Core.Platform.JoystickHandle) - parent: OpenTK.Core.Platform.IJoystickComponent - langs: - - csharp - - vb - name: GetGuid(JoystickHandle) - nameWithType: IJoystickComponent.GetGuid(JoystickHandle) - fullName: OpenTK.Core.Platform.IJoystickComponent.GetGuid(OpenTK.Core.Platform.JoystickHandle) - type: Method - source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/IJoystickComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: GetGuid - path: opentk/src/OpenTK.Core/Platform/Interfaces/IJoystickComponent.cs - startLine: 59 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: Guid GetGuid(JoystickHandle handle) - parameters: - - id: handle - type: OpenTK.Core.Platform.JoystickHandle - return: - type: System.Guid - content.vb: Function GetGuid(handle As JoystickHandle) As Guid - overload: OpenTK.Core.Platform.IJoystickComponent.GetGuid* -- uid: OpenTK.Core.Platform.IJoystickComponent.GetName(OpenTK.Core.Platform.JoystickHandle) - commentId: M:OpenTK.Core.Platform.IJoystickComponent.GetName(OpenTK.Core.Platform.JoystickHandle) - id: GetName(OpenTK.Core.Platform.JoystickHandle) - parent: OpenTK.Core.Platform.IJoystickComponent - langs: - - csharp - - vb - name: GetName(JoystickHandle) - nameWithType: IJoystickComponent.GetName(JoystickHandle) - fullName: OpenTK.Core.Platform.IJoystickComponent.GetName(OpenTK.Core.Platform.JoystickHandle) - type: Method - source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/IJoystickComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: GetName - path: opentk/src/OpenTK.Core/Platform/Interfaces/IJoystickComponent.cs - startLine: 61 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: string GetName(JoystickHandle handle) - parameters: - - id: handle - type: OpenTK.Core.Platform.JoystickHandle - return: - type: System.String - content.vb: Function GetName(handle As JoystickHandle) As String - overload: OpenTK.Core.Platform.IJoystickComponent.GetName* -- uid: OpenTK.Core.Platform.IJoystickComponent.GetAxis(OpenTK.Core.Platform.JoystickHandle,OpenTK.Core.Platform.JoystickAxis) - commentId: M:OpenTK.Core.Platform.IJoystickComponent.GetAxis(OpenTK.Core.Platform.JoystickHandle,OpenTK.Core.Platform.JoystickAxis) - id: GetAxis(OpenTK.Core.Platform.JoystickHandle,OpenTK.Core.Platform.JoystickAxis) - parent: OpenTK.Core.Platform.IJoystickComponent - langs: - - csharp - - vb - name: GetAxis(JoystickHandle, JoystickAxis) - nameWithType: IJoystickComponent.GetAxis(JoystickHandle, JoystickAxis) - fullName: OpenTK.Core.Platform.IJoystickComponent.GetAxis(OpenTK.Core.Platform.JoystickHandle, OpenTK.Core.Platform.JoystickAxis) - type: Method - source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/IJoystickComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: GetAxis - path: opentk/src/OpenTK.Core/Platform/Interfaces/IJoystickComponent.cs - startLine: 70 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: >- - Gets the value of a specific joystick axis. - - This value is in the range [-1, 1] for analog sticks, and [0, 1] for triggers. - example: [] - syntax: - content: float GetAxis(JoystickHandle handle, JoystickAxis axis) - parameters: - - id: handle - type: OpenTK.Core.Platform.JoystickHandle - description: A handle to a joystick. - - id: axis - type: OpenTK.Core.Platform.JoystickAxis - description: The joystick axis to get. - return: - type: System.Single - description: The joystick axis value. - content.vb: Function GetAxis(handle As JoystickHandle, axis As JoystickAxis) As Single - overload: OpenTK.Core.Platform.IJoystickComponent.GetAxis* -- uid: OpenTK.Core.Platform.IJoystickComponent.GetButton(OpenTK.Core.Platform.JoystickHandle,OpenTK.Core.Platform.JoystickButton) - commentId: M:OpenTK.Core.Platform.IJoystickComponent.GetButton(OpenTK.Core.Platform.JoystickHandle,OpenTK.Core.Platform.JoystickButton) - id: GetButton(OpenTK.Core.Platform.JoystickHandle,OpenTK.Core.Platform.JoystickButton) - parent: OpenTK.Core.Platform.IJoystickComponent - langs: - - csharp - - vb - name: GetButton(JoystickHandle, JoystickButton) - nameWithType: IJoystickComponent.GetButton(JoystickHandle, JoystickButton) - fullName: OpenTK.Core.Platform.IJoystickComponent.GetButton(OpenTK.Core.Platform.JoystickHandle, OpenTK.Core.Platform.JoystickButton) - type: Method - source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/IJoystickComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: GetButton - path: opentk/src/OpenTK.Core/Platform/Interfaces/IJoystickComponent.cs - startLine: 78 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Get the pressed state of a specific joystick button. - example: [] - syntax: - content: bool GetButton(JoystickHandle handle, JoystickButton button) - parameters: - - id: handle - type: OpenTK.Core.Platform.JoystickHandle - description: A handle to a joystick. - - id: button - type: OpenTK.Core.Platform.JoystickButton - description: The joystick button to get. - return: - type: System.Boolean - description: True if the specified button is pressed or false if the button is released. - content.vb: Function GetButton(handle As JoystickHandle, button As JoystickButton) As Boolean - overload: OpenTK.Core.Platform.IJoystickComponent.GetButton* -- uid: OpenTK.Core.Platform.IJoystickComponent.SetVibration(OpenTK.Core.Platform.JoystickHandle,System.Single,System.Single) - commentId: M:OpenTK.Core.Platform.IJoystickComponent.SetVibration(OpenTK.Core.Platform.JoystickHandle,System.Single,System.Single) - id: SetVibration(OpenTK.Core.Platform.JoystickHandle,System.Single,System.Single) - parent: OpenTK.Core.Platform.IJoystickComponent - langs: - - csharp - - vb - name: SetVibration(JoystickHandle, float, float) - nameWithType: IJoystickComponent.SetVibration(JoystickHandle, float, float) - fullName: OpenTK.Core.Platform.IJoystickComponent.SetVibration(OpenTK.Core.Platform.JoystickHandle, float, float) - type: Method - source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/IJoystickComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: SetVibration - path: opentk/src/OpenTK.Core/Platform/Interfaces/IJoystickComponent.cs - startLine: 80 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: bool SetVibration(JoystickHandle handle, float lowFreqIntensity, float highFreqIntensity) - parameters: - - id: handle - type: OpenTK.Core.Platform.JoystickHandle - - id: lowFreqIntensity - type: System.Single - - id: highFreqIntensity - type: System.Single - return: - type: System.Boolean - content.vb: Function SetVibration(handle As JoystickHandle, lowFreqIntensity As Single, highFreqIntensity As Single) As Boolean - overload: OpenTK.Core.Platform.IJoystickComponent.SetVibration* - nameWithType.vb: IJoystickComponent.SetVibration(JoystickHandle, Single, Single) - fullName.vb: OpenTK.Core.Platform.IJoystickComponent.SetVibration(OpenTK.Core.Platform.JoystickHandle, Single, Single) - name.vb: SetVibration(JoystickHandle, Single, Single) -- uid: OpenTK.Core.Platform.IJoystickComponent.TryGetBatteryInfo(OpenTK.Core.Platform.JoystickHandle,OpenTK.Core.Platform.GamepadBatteryInfo@) - commentId: M:OpenTK.Core.Platform.IJoystickComponent.TryGetBatteryInfo(OpenTK.Core.Platform.JoystickHandle,OpenTK.Core.Platform.GamepadBatteryInfo@) - id: TryGetBatteryInfo(OpenTK.Core.Platform.JoystickHandle,OpenTK.Core.Platform.GamepadBatteryInfo@) - parent: OpenTK.Core.Platform.IJoystickComponent - langs: - - csharp - - vb - name: TryGetBatteryInfo(JoystickHandle, out GamepadBatteryInfo) - nameWithType: IJoystickComponent.TryGetBatteryInfo(JoystickHandle, out GamepadBatteryInfo) - fullName: OpenTK.Core.Platform.IJoystickComponent.TryGetBatteryInfo(OpenTK.Core.Platform.JoystickHandle, out OpenTK.Core.Platform.GamepadBatteryInfo) - type: Method - source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/IJoystickComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: TryGetBatteryInfo - path: opentk/src/OpenTK.Core/Platform/Interfaces/IJoystickComponent.cs - startLine: 82 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: bool TryGetBatteryInfo(JoystickHandle handle, out GamepadBatteryInfo batteryInfo) - parameters: - - id: handle - type: OpenTK.Core.Platform.JoystickHandle - - id: batteryInfo - type: OpenTK.Core.Platform.GamepadBatteryInfo - return: - type: System.Boolean - content.vb: Function TryGetBatteryInfo(handle As JoystickHandle, batteryInfo As GamepadBatteryInfo) As Boolean - overload: OpenTK.Core.Platform.IJoystickComponent.TryGetBatteryInfo* - nameWithType.vb: IJoystickComponent.TryGetBatteryInfo(JoystickHandle, GamepadBatteryInfo) - fullName.vb: OpenTK.Core.Platform.IJoystickComponent.TryGetBatteryInfo(OpenTK.Core.Platform.JoystickHandle, OpenTK.Core.Platform.GamepadBatteryInfo) - name.vb: TryGetBatteryInfo(JoystickHandle, GamepadBatteryInfo) -references: -- uid: OpenTK.Core.Platform - commentId: N:OpenTK.Core.Platform - href: OpenTK.html - name: OpenTK.Core.Platform - nameWithType: OpenTK.Core.Platform - fullName: OpenTK.Core.Platform - spec.csharp: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform - name: Platform - href: OpenTK.Core.Platform.html - spec.vb: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform - name: Platform - href: OpenTK.Core.Platform.html -- uid: OpenTK.Core.Platform.IPalComponent.Name - commentId: P:OpenTK.Core.Platform.IPalComponent.Name - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Name - name: Name - nameWithType: IPalComponent.Name - fullName: OpenTK.Core.Platform.IPalComponent.Name -- uid: OpenTK.Core.Platform.IPalComponent.Provides - commentId: P:OpenTK.Core.Platform.IPalComponent.Provides - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Provides - name: Provides - nameWithType: IPalComponent.Provides - fullName: OpenTK.Core.Platform.IPalComponent.Provides -- uid: OpenTK.Core.Platform.IPalComponent.Logger - commentId: P:OpenTK.Core.Platform.IPalComponent.Logger - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Logger - name: Logger - nameWithType: IPalComponent.Logger - fullName: OpenTK.Core.Platform.IPalComponent.Logger -- uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - commentId: M:OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ - name: Initialize(ToolkitOptions) - nameWithType: IPalComponent.Initialize(ToolkitOptions) - fullName: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - spec.csharp: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ - - name: ( - - uid: OpenTK.Core.Platform.ToolkitOptions - name: ToolkitOptions - href: OpenTK.Core.Platform.ToolkitOptions.html - - name: ) - spec.vb: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ - - name: ( - - uid: OpenTK.Core.Platform.ToolkitOptions - name: ToolkitOptions - href: OpenTK.Core.Platform.ToolkitOptions.html - - name: ) -- uid: OpenTK.Core.Platform.IPalComponent - commentId: T:OpenTK.Core.Platform.IPalComponent - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.IPalComponent.html - name: IPalComponent - nameWithType: IPalComponent - fullName: OpenTK.Core.Platform.IPalComponent -- uid: OpenTK.Core.Platform.IJoystickComponent.LeftDeadzone* - commentId: Overload:OpenTK.Core.Platform.IJoystickComponent.LeftDeadzone - href: OpenTK.Core.Platform.IJoystickComponent.html#OpenTK_Core_Platform_IJoystickComponent_LeftDeadzone - name: LeftDeadzone - nameWithType: IJoystickComponent.LeftDeadzone - fullName: OpenTK.Core.Platform.IJoystickComponent.LeftDeadzone -- uid: System.Single - commentId: T:System.Single - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.single - name: float - nameWithType: float - fullName: float - nameWithType.vb: Single - fullName.vb: Single - name.vb: Single -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: OpenTK.Core.Platform.IJoystickComponent.RightDeadzone* - commentId: Overload:OpenTK.Core.Platform.IJoystickComponent.RightDeadzone - href: OpenTK.Core.Platform.IJoystickComponent.html#OpenTK_Core_Platform_IJoystickComponent_RightDeadzone - name: RightDeadzone - nameWithType: IJoystickComponent.RightDeadzone - fullName: OpenTK.Core.Platform.IJoystickComponent.RightDeadzone -- uid: OpenTK.Core.Platform.IJoystickComponent.TriggerThreshold* - commentId: Overload:OpenTK.Core.Platform.IJoystickComponent.TriggerThreshold - href: OpenTK.Core.Platform.IJoystickComponent.html#OpenTK_Core_Platform_IJoystickComponent_TriggerThreshold - name: TriggerThreshold - nameWithType: IJoystickComponent.TriggerThreshold - fullName: OpenTK.Core.Platform.IJoystickComponent.TriggerThreshold -- uid: OpenTK.Core.Platform.IJoystickComponent.IsConnected* - commentId: Overload:OpenTK.Core.Platform.IJoystickComponent.IsConnected - href: OpenTK.Core.Platform.IJoystickComponent.html#OpenTK_Core_Platform_IJoystickComponent_IsConnected_System_Int32_ - name: IsConnected - nameWithType: IJoystickComponent.IsConnected - fullName: OpenTK.Core.Platform.IJoystickComponent.IsConnected -- uid: System.Int32 - commentId: T:System.Int32 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - name: int - nameWithType: int - fullName: int - nameWithType.vb: Integer - fullName.vb: Integer - name.vb: Integer -- uid: System.Boolean - commentId: T:System.Boolean - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - name: bool - nameWithType: bool - fullName: bool - nameWithType.vb: Boolean - fullName.vb: Boolean - name.vb: Boolean -- uid: OpenTK.Core.Platform.IJoystickComponent.Open* - commentId: Overload:OpenTK.Core.Platform.IJoystickComponent.Open - href: OpenTK.Core.Platform.IJoystickComponent.html#OpenTK_Core_Platform_IJoystickComponent_Open_System_Int32_ - name: Open - nameWithType: IJoystickComponent.Open - fullName: OpenTK.Core.Platform.IJoystickComponent.Open -- uid: OpenTK.Core.Platform.JoystickHandle - commentId: T:OpenTK.Core.Platform.JoystickHandle - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.JoystickHandle.html - name: JoystickHandle - nameWithType: JoystickHandle - fullName: OpenTK.Core.Platform.JoystickHandle -- uid: OpenTK.Core.Platform.IJoystickComponent.Close* - commentId: Overload:OpenTK.Core.Platform.IJoystickComponent.Close - href: OpenTK.Core.Platform.IJoystickComponent.html#OpenTK_Core_Platform_IJoystickComponent_Close_OpenTK_Core_Platform_JoystickHandle_ - name: Close - nameWithType: IJoystickComponent.Close - fullName: OpenTK.Core.Platform.IJoystickComponent.Close -- uid: OpenTK.Core.Platform.IJoystickComponent.GetGuid* - commentId: Overload:OpenTK.Core.Platform.IJoystickComponent.GetGuid - href: OpenTK.Core.Platform.IJoystickComponent.html#OpenTK_Core_Platform_IJoystickComponent_GetGuid_OpenTK_Core_Platform_JoystickHandle_ - name: GetGuid - nameWithType: IJoystickComponent.GetGuid - fullName: OpenTK.Core.Platform.IJoystickComponent.GetGuid -- uid: System.Guid - commentId: T:System.Guid - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.guid - name: Guid - nameWithType: Guid - fullName: System.Guid -- uid: OpenTK.Core.Platform.IJoystickComponent.GetName* - commentId: Overload:OpenTK.Core.Platform.IJoystickComponent.GetName - href: OpenTK.Core.Platform.IJoystickComponent.html#OpenTK_Core_Platform_IJoystickComponent_GetName_OpenTK_Core_Platform_JoystickHandle_ - name: GetName - nameWithType: IJoystickComponent.GetName - fullName: OpenTK.Core.Platform.IJoystickComponent.GetName -- uid: System.String - commentId: T:System.String - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - name: string - nameWithType: string - fullName: string - nameWithType.vb: String - fullName.vb: String - name.vb: String -- uid: OpenTK.Core.Platform.IJoystickComponent.GetAxis* - commentId: Overload:OpenTK.Core.Platform.IJoystickComponent.GetAxis - href: OpenTK.Core.Platform.IJoystickComponent.html#OpenTK_Core_Platform_IJoystickComponent_GetAxis_OpenTK_Core_Platform_JoystickHandle_OpenTK_Core_Platform_JoystickAxis_ - name: GetAxis - nameWithType: IJoystickComponent.GetAxis - fullName: OpenTK.Core.Platform.IJoystickComponent.GetAxis -- uid: OpenTK.Core.Platform.JoystickAxis - commentId: T:OpenTK.Core.Platform.JoystickAxis - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.JoystickAxis.html - name: JoystickAxis - nameWithType: JoystickAxis - fullName: OpenTK.Core.Platform.JoystickAxis -- uid: OpenTK.Core.Platform.IJoystickComponent.GetButton* - commentId: Overload:OpenTK.Core.Platform.IJoystickComponent.GetButton - href: OpenTK.Core.Platform.IJoystickComponent.html#OpenTK_Core_Platform_IJoystickComponent_GetButton_OpenTK_Core_Platform_JoystickHandle_OpenTK_Core_Platform_JoystickButton_ - name: GetButton - nameWithType: IJoystickComponent.GetButton - fullName: OpenTK.Core.Platform.IJoystickComponent.GetButton -- uid: OpenTK.Core.Platform.JoystickButton - commentId: T:OpenTK.Core.Platform.JoystickButton - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.JoystickButton.html - name: JoystickButton - nameWithType: JoystickButton - fullName: OpenTK.Core.Platform.JoystickButton -- uid: OpenTK.Core.Platform.IJoystickComponent.SetVibration* - commentId: Overload:OpenTK.Core.Platform.IJoystickComponent.SetVibration - href: OpenTK.Core.Platform.IJoystickComponent.html#OpenTK_Core_Platform_IJoystickComponent_SetVibration_OpenTK_Core_Platform_JoystickHandle_System_Single_System_Single_ - name: SetVibration - nameWithType: IJoystickComponent.SetVibration - fullName: OpenTK.Core.Platform.IJoystickComponent.SetVibration -- uid: OpenTK.Core.Platform.IJoystickComponent.TryGetBatteryInfo* - commentId: Overload:OpenTK.Core.Platform.IJoystickComponent.TryGetBatteryInfo - href: OpenTK.Core.Platform.IJoystickComponent.html#OpenTK_Core_Platform_IJoystickComponent_TryGetBatteryInfo_OpenTK_Core_Platform_JoystickHandle_OpenTK_Core_Platform_GamepadBatteryInfo__ - name: TryGetBatteryInfo - nameWithType: IJoystickComponent.TryGetBatteryInfo - fullName: OpenTK.Core.Platform.IJoystickComponent.TryGetBatteryInfo -- uid: OpenTK.Core.Platform.GamepadBatteryInfo - commentId: T:OpenTK.Core.Platform.GamepadBatteryInfo - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.GamepadBatteryInfo.html - name: GamepadBatteryInfo - nameWithType: GamepadBatteryInfo - fullName: OpenTK.Core.Platform.GamepadBatteryInfo diff --git a/api/OpenTK.Core.Platform.IKeyboardComponent.yml b/api/OpenTK.Core.Platform.IKeyboardComponent.yml deleted file mode 100644 index 1da651c1..00000000 --- a/api/OpenTK.Core.Platform.IKeyboardComponent.yml +++ /dev/null @@ -1,731 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: OpenTK.Core.Platform.IKeyboardComponent - commentId: T:OpenTK.Core.Platform.IKeyboardComponent - id: IKeyboardComponent - parent: OpenTK.Core.Platform - children: - - OpenTK.Core.Platform.IKeyboardComponent.BeginIme(OpenTK.Core.Platform.WindowHandle) - - OpenTK.Core.Platform.IKeyboardComponent.EndIme(OpenTK.Core.Platform.WindowHandle) - - OpenTK.Core.Platform.IKeyboardComponent.GetActiveKeyboardLayout(OpenTK.Core.Platform.WindowHandle) - - OpenTK.Core.Platform.IKeyboardComponent.GetAvailableKeyboardLayouts - - OpenTK.Core.Platform.IKeyboardComponent.GetKeyFromScancode(OpenTK.Core.Platform.Scancode) - - OpenTK.Core.Platform.IKeyboardComponent.GetKeyboardModifiers - - OpenTK.Core.Platform.IKeyboardComponent.GetKeyboardState(System.Boolean[]) - - OpenTK.Core.Platform.IKeyboardComponent.GetScancodeFromKey(OpenTK.Core.Platform.Key) - - OpenTK.Core.Platform.IKeyboardComponent.SetImeRectangle(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) - - OpenTK.Core.Platform.IKeyboardComponent.SupportsIme - - OpenTK.Core.Platform.IKeyboardComponent.SupportsLayouts - langs: - - csharp - - vb - name: IKeyboardComponent - nameWithType: IKeyboardComponent - fullName: OpenTK.Core.Platform.IKeyboardComponent - type: Interface - source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/IKeyboardComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: IKeyboardComponent - path: opentk/src/OpenTK.Core/Platform/Interfaces/IKeyboardComponent.cs - startLine: 7 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: PAL driver for global keyboard information. - example: [] - syntax: - content: 'public interface IKeyboardComponent : IPalComponent' - content.vb: Public Interface IKeyboardComponent Inherits IPalComponent - inheritedMembers: - - OpenTK.Core.Platform.IPalComponent.Name - - OpenTK.Core.Platform.IPalComponent.Provides - - OpenTK.Core.Platform.IPalComponent.Logger - - OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) -- uid: OpenTK.Core.Platform.IKeyboardComponent.SupportsLayouts - commentId: P:OpenTK.Core.Platform.IKeyboardComponent.SupportsLayouts - id: SupportsLayouts - parent: OpenTK.Core.Platform.IKeyboardComponent - langs: - - csharp - - vb - name: SupportsLayouts - nameWithType: IKeyboardComponent.SupportsLayouts - fullName: OpenTK.Core.Platform.IKeyboardComponent.SupportsLayouts - type: Property - source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/IKeyboardComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: SupportsLayouts - path: opentk/src/OpenTK.Core/Platform/Interfaces/IKeyboardComponent.cs - startLine: 16 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: True if the driver supports keyboard layout functions. - example: [] - syntax: - content: bool SupportsLayouts { get; } - parameters: [] - return: - type: System.Boolean - content.vb: ReadOnly Property SupportsLayouts As Boolean - overload: OpenTK.Core.Platform.IKeyboardComponent.SupportsLayouts* -- uid: OpenTK.Core.Platform.IKeyboardComponent.SupportsIme - commentId: P:OpenTK.Core.Platform.IKeyboardComponent.SupportsIme - id: SupportsIme - parent: OpenTK.Core.Platform.IKeyboardComponent - langs: - - csharp - - vb - name: SupportsIme - nameWithType: IKeyboardComponent.SupportsIme - fullName: OpenTK.Core.Platform.IKeyboardComponent.SupportsIme - type: Property - source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/IKeyboardComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: SupportsIme - path: opentk/src/OpenTK.Core/Platform/Interfaces/IKeyboardComponent.cs - startLine: 21 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: True if the driver supports input method editor functions. - example: [] - syntax: - content: bool SupportsIme { get; } - parameters: [] - return: - type: System.Boolean - content.vb: ReadOnly Property SupportsIme As Boolean - overload: OpenTK.Core.Platform.IKeyboardComponent.SupportsIme* -- uid: OpenTK.Core.Platform.IKeyboardComponent.GetActiveKeyboardLayout(OpenTK.Core.Platform.WindowHandle) - commentId: M:OpenTK.Core.Platform.IKeyboardComponent.GetActiveKeyboardLayout(OpenTK.Core.Platform.WindowHandle) - id: GetActiveKeyboardLayout(OpenTK.Core.Platform.WindowHandle) - parent: OpenTK.Core.Platform.IKeyboardComponent - langs: - - csharp - - vb - name: GetActiveKeyboardLayout(WindowHandle?) - nameWithType: IKeyboardComponent.GetActiveKeyboardLayout(WindowHandle?) - fullName: OpenTK.Core.Platform.IKeyboardComponent.GetActiveKeyboardLayout(OpenTK.Core.Platform.WindowHandle?) - type: Method - source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/IKeyboardComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: GetActiveKeyboardLayout - path: opentk/src/OpenTK.Core/Platform/Interfaces/IKeyboardComponent.cs - startLine: 29 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Get the active keyboard layout. - example: [] - syntax: - content: string GetActiveKeyboardLayout(WindowHandle? handle) - parameters: - - id: handle - type: OpenTK.Core.Platform.WindowHandle - description: (optional) Handle to a window to query the layout for. Ignored on systems where keyboard layout is global. - return: - type: System.String - description: A string which describes the active keyboard layout. - content.vb: Function GetActiveKeyboardLayout(handle As WindowHandle) As String - overload: OpenTK.Core.Platform.IKeyboardComponent.GetActiveKeyboardLayout* - exceptions: - - type: OpenTK.Core.Platform.PalNotImplementedException - commentId: T:OpenTK.Core.Platform.PalNotImplementedException - description: Driver cannot query active keyboard layout. - nameWithType.vb: IKeyboardComponent.GetActiveKeyboardLayout(WindowHandle) - fullName.vb: OpenTK.Core.Platform.IKeyboardComponent.GetActiveKeyboardLayout(OpenTK.Core.Platform.WindowHandle) - name.vb: GetActiveKeyboardLayout(WindowHandle) -- uid: OpenTK.Core.Platform.IKeyboardComponent.GetAvailableKeyboardLayouts - commentId: M:OpenTK.Core.Platform.IKeyboardComponent.GetAvailableKeyboardLayouts - id: GetAvailableKeyboardLayouts - parent: OpenTK.Core.Platform.IKeyboardComponent - langs: - - csharp - - vb - name: GetAvailableKeyboardLayouts() - nameWithType: IKeyboardComponent.GetAvailableKeyboardLayouts() - fullName: OpenTK.Core.Platform.IKeyboardComponent.GetAvailableKeyboardLayouts() - type: Method - source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/IKeyboardComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: GetAvailableKeyboardLayouts - path: opentk/src/OpenTK.Core/Platform/Interfaces/IKeyboardComponent.cs - startLine: 35 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: See list of possible keyboard layouts for this system. - example: [] - syntax: - content: string[] GetAvailableKeyboardLayouts() - return: - type: System.String[] - description: Array containing possible keyboard layouts. - content.vb: Function GetAvailableKeyboardLayouts() As String() - overload: OpenTK.Core.Platform.IKeyboardComponent.GetAvailableKeyboardLayouts* -- uid: OpenTK.Core.Platform.IKeyboardComponent.GetScancodeFromKey(OpenTK.Core.Platform.Key) - commentId: M:OpenTK.Core.Platform.IKeyboardComponent.GetScancodeFromKey(OpenTK.Core.Platform.Key) - id: GetScancodeFromKey(OpenTK.Core.Platform.Key) - parent: OpenTK.Core.Platform.IKeyboardComponent - langs: - - csharp - - vb - name: GetScancodeFromKey(Key) - nameWithType: IKeyboardComponent.GetScancodeFromKey(Key) - fullName: OpenTK.Core.Platform.IKeyboardComponent.GetScancodeFromKey(OpenTK.Core.Platform.Key) - type: Method - source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/IKeyboardComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: GetScancodeFromKey - path: opentk/src/OpenTK.Core/Platform/Interfaces/IKeyboardComponent.cs - startLine: 48 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: >- - Gets the associated with the specified . - - The Key to Scancode mapping is not 1 to 1, multiple scancodes can produce the same key. - - This function will return one of the scancodes that produce the key. - - This function uses the current keyboard layout to determine the mapping. - example: [] - syntax: - content: Scancode GetScancodeFromKey(Key key) - parameters: - - id: key - type: OpenTK.Core.Platform.Key - description: The key. - return: - type: OpenTK.Core.Platform.Scancode - description: >- - The that produces the - - or if no scancode produces the key. - content.vb: Function GetScancodeFromKey(key As Key) As Scancode - overload: OpenTK.Core.Platform.IKeyboardComponent.GetScancodeFromKey* -- uid: OpenTK.Core.Platform.IKeyboardComponent.GetKeyFromScancode(OpenTK.Core.Platform.Scancode) - commentId: M:OpenTK.Core.Platform.IKeyboardComponent.GetKeyFromScancode(OpenTK.Core.Platform.Scancode) - id: GetKeyFromScancode(OpenTK.Core.Platform.Scancode) - parent: OpenTK.Core.Platform.IKeyboardComponent - langs: - - csharp - - vb - name: GetKeyFromScancode(Scancode) - nameWithType: IKeyboardComponent.GetKeyFromScancode(Scancode) - fullName: OpenTK.Core.Platform.IKeyboardComponent.GetKeyFromScancode(OpenTK.Core.Platform.Scancode) - type: Method - source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/IKeyboardComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: GetKeyFromScancode - path: opentk/src/OpenTK.Core/Platform/Interfaces/IKeyboardComponent.cs - startLine: 59 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: >- - Gets the associated with the specidied . - - This function uses the current keyboard layout to determine the mapping. - example: [] - syntax: - content: Key GetKeyFromScancode(Scancode scancode) - parameters: - - id: scancode - type: OpenTK.Core.Platform.Scancode - description: The scancode. - return: - type: OpenTK.Core.Platform.Key - description: >- - The associated with the - - or if the scancode can't be mapped to a key. - content.vb: Function GetKeyFromScancode(scancode As Scancode) As Key - overload: OpenTK.Core.Platform.IKeyboardComponent.GetKeyFromScancode* -- uid: OpenTK.Core.Platform.IKeyboardComponent.GetKeyboardState(System.Boolean[]) - commentId: M:OpenTK.Core.Platform.IKeyboardComponent.GetKeyboardState(System.Boolean[]) - id: GetKeyboardState(System.Boolean[]) - parent: OpenTK.Core.Platform.IKeyboardComponent - langs: - - csharp - - vb - name: GetKeyboardState(bool[]) - nameWithType: IKeyboardComponent.GetKeyboardState(bool[]) - fullName: OpenTK.Core.Platform.IKeyboardComponent.GetKeyboardState(bool[]) - type: Method - source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/IKeyboardComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: GetKeyboardState - path: opentk/src/OpenTK.Core/Platform/Interfaces/IKeyboardComponent.cs - startLine: 67 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: >- - Copies the current state of the keyboard into the specified array. - - This array should be indexed using values. - - The length of this array should be an array able to hold all possible values. - example: [] - syntax: - content: void GetKeyboardState(bool[] keyboardState) - parameters: - - id: keyboardState - type: System.Boolean[] - description: An array to be filled with the keyboard state. - content.vb: Sub GetKeyboardState(keyboardState As Boolean()) - overload: OpenTK.Core.Platform.IKeyboardComponent.GetKeyboardState* - nameWithType.vb: IKeyboardComponent.GetKeyboardState(Boolean()) - fullName.vb: OpenTK.Core.Platform.IKeyboardComponent.GetKeyboardState(Boolean()) - name.vb: GetKeyboardState(Boolean()) -- uid: OpenTK.Core.Platform.IKeyboardComponent.GetKeyboardModifiers - commentId: M:OpenTK.Core.Platform.IKeyboardComponent.GetKeyboardModifiers - id: GetKeyboardModifiers - parent: OpenTK.Core.Platform.IKeyboardComponent - langs: - - csharp - - vb - name: GetKeyboardModifiers() - nameWithType: IKeyboardComponent.GetKeyboardModifiers() - fullName: OpenTK.Core.Platform.IKeyboardComponent.GetKeyboardModifiers() - type: Method - source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/IKeyboardComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: GetKeyboardModifiers - path: opentk/src/OpenTK.Core/Platform/Interfaces/IKeyboardComponent.cs - startLine: 73 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Gets the current keyboard modifiers. - example: [] - syntax: - content: KeyModifier GetKeyboardModifiers() - return: - type: OpenTK.Core.Platform.KeyModifier - description: The current keyboard modifiers. - content.vb: Function GetKeyboardModifiers() As KeyModifier - overload: OpenTK.Core.Platform.IKeyboardComponent.GetKeyboardModifiers* -- uid: OpenTK.Core.Platform.IKeyboardComponent.BeginIme(OpenTK.Core.Platform.WindowHandle) - commentId: M:OpenTK.Core.Platform.IKeyboardComponent.BeginIme(OpenTK.Core.Platform.WindowHandle) - id: BeginIme(OpenTK.Core.Platform.WindowHandle) - parent: OpenTK.Core.Platform.IKeyboardComponent - langs: - - csharp - - vb - name: BeginIme(WindowHandle) - nameWithType: IKeyboardComponent.BeginIme(WindowHandle) - fullName: OpenTK.Core.Platform.IKeyboardComponent.BeginIme(OpenTK.Core.Platform.WindowHandle) - type: Method - source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/IKeyboardComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: BeginIme - path: opentk/src/OpenTK.Core/Platform/Interfaces/IKeyboardComponent.cs - startLine: 81 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Invoke input method editor. - example: [] - syntax: - content: void BeginIme(WindowHandle window) - parameters: - - id: window - type: OpenTK.Core.Platform.WindowHandle - description: The window corresponding to this IME window. - content.vb: Sub BeginIme(window As WindowHandle) - overload: OpenTK.Core.Platform.IKeyboardComponent.BeginIme* -- uid: OpenTK.Core.Platform.IKeyboardComponent.SetImeRectangle(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) - commentId: M:OpenTK.Core.Platform.IKeyboardComponent.SetImeRectangle(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) - id: SetImeRectangle(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) - parent: OpenTK.Core.Platform.IKeyboardComponent - langs: - - csharp - - vb - name: SetImeRectangle(WindowHandle, int, int, int, int) - nameWithType: IKeyboardComponent.SetImeRectangle(WindowHandle, int, int, int, int) - fullName: OpenTK.Core.Platform.IKeyboardComponent.SetImeRectangle(OpenTK.Core.Platform.WindowHandle, int, int, int, int) - type: Method - source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/IKeyboardComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: SetImeRectangle - path: opentk/src/OpenTK.Core/Platform/Interfaces/IKeyboardComponent.cs - startLine: 91 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Set the rectangle to which the IME interface will appear relative to. - example: [] - syntax: - content: void SetImeRectangle(WindowHandle window, int x, int y, int width, int height) - parameters: - - id: window - type: OpenTK.Core.Platform.WindowHandle - description: The window corresponding to this IME window. - - id: x - type: System.Int32 - description: X coordinate of the rectangle in desktop coordinates. - - id: y - type: System.Int32 - description: Y coordinate of the rectangle in desktop coordinates. - - id: width - type: System.Int32 - description: Width of the rectangle in desktop units. - - id: height - type: System.Int32 - description: Height of the rectangle in desktop units. - content.vb: Sub SetImeRectangle(window As WindowHandle, x As Integer, y As Integer, width As Integer, height As Integer) - overload: OpenTK.Core.Platform.IKeyboardComponent.SetImeRectangle* - nameWithType.vb: IKeyboardComponent.SetImeRectangle(WindowHandle, Integer, Integer, Integer, Integer) - fullName.vb: OpenTK.Core.Platform.IKeyboardComponent.SetImeRectangle(OpenTK.Core.Platform.WindowHandle, Integer, Integer, Integer, Integer) - name.vb: SetImeRectangle(WindowHandle, Integer, Integer, Integer, Integer) -- uid: OpenTK.Core.Platform.IKeyboardComponent.EndIme(OpenTK.Core.Platform.WindowHandle) - commentId: M:OpenTK.Core.Platform.IKeyboardComponent.EndIme(OpenTK.Core.Platform.WindowHandle) - id: EndIme(OpenTK.Core.Platform.WindowHandle) - parent: OpenTK.Core.Platform.IKeyboardComponent - langs: - - csharp - - vb - name: EndIme(WindowHandle) - nameWithType: IKeyboardComponent.EndIme(WindowHandle) - fullName: OpenTK.Core.Platform.IKeyboardComponent.EndIme(OpenTK.Core.Platform.WindowHandle) - type: Method - source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/IKeyboardComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: EndIme - path: opentk/src/OpenTK.Core/Platform/Interfaces/IKeyboardComponent.cs - startLine: 97 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Finish input method editor. - example: [] - syntax: - content: void EndIme(WindowHandle window) - parameters: - - id: window - type: OpenTK.Core.Platform.WindowHandle - description: The window corresponding to this IME window. - content.vb: Sub EndIme(window As WindowHandle) - overload: OpenTK.Core.Platform.IKeyboardComponent.EndIme* -references: -- uid: OpenTK.Core.Platform - commentId: N:OpenTK.Core.Platform - href: OpenTK.html - name: OpenTK.Core.Platform - nameWithType: OpenTK.Core.Platform - fullName: OpenTK.Core.Platform - spec.csharp: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform - name: Platform - href: OpenTK.Core.Platform.html - spec.vb: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform - name: Platform - href: OpenTK.Core.Platform.html -- uid: OpenTK.Core.Platform.IPalComponent.Name - commentId: P:OpenTK.Core.Platform.IPalComponent.Name - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Name - name: Name - nameWithType: IPalComponent.Name - fullName: OpenTK.Core.Platform.IPalComponent.Name -- uid: OpenTK.Core.Platform.IPalComponent.Provides - commentId: P:OpenTK.Core.Platform.IPalComponent.Provides - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Provides - name: Provides - nameWithType: IPalComponent.Provides - fullName: OpenTK.Core.Platform.IPalComponent.Provides -- uid: OpenTK.Core.Platform.IPalComponent.Logger - commentId: P:OpenTK.Core.Platform.IPalComponent.Logger - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Logger - name: Logger - nameWithType: IPalComponent.Logger - fullName: OpenTK.Core.Platform.IPalComponent.Logger -- uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - commentId: M:OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ - name: Initialize(ToolkitOptions) - nameWithType: IPalComponent.Initialize(ToolkitOptions) - fullName: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - spec.csharp: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ - - name: ( - - uid: OpenTK.Core.Platform.ToolkitOptions - name: ToolkitOptions - href: OpenTK.Core.Platform.ToolkitOptions.html - - name: ) - spec.vb: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ - - name: ( - - uid: OpenTK.Core.Platform.ToolkitOptions - name: ToolkitOptions - href: OpenTK.Core.Platform.ToolkitOptions.html - - name: ) -- uid: OpenTK.Core.Platform.IPalComponent - commentId: T:OpenTK.Core.Platform.IPalComponent - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.IPalComponent.html - name: IPalComponent - nameWithType: IPalComponent - fullName: OpenTK.Core.Platform.IPalComponent -- uid: OpenTK.Core.Platform.IKeyboardComponent.SupportsLayouts* - commentId: Overload:OpenTK.Core.Platform.IKeyboardComponent.SupportsLayouts - href: OpenTK.Core.Platform.IKeyboardComponent.html#OpenTK_Core_Platform_IKeyboardComponent_SupportsLayouts - name: SupportsLayouts - nameWithType: IKeyboardComponent.SupportsLayouts - fullName: OpenTK.Core.Platform.IKeyboardComponent.SupportsLayouts -- uid: System.Boolean - commentId: T:System.Boolean - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - name: bool - nameWithType: bool - fullName: bool - nameWithType.vb: Boolean - fullName.vb: Boolean - name.vb: Boolean -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: OpenTK.Core.Platform.IKeyboardComponent.SupportsIme* - commentId: Overload:OpenTK.Core.Platform.IKeyboardComponent.SupportsIme - href: OpenTK.Core.Platform.IKeyboardComponent.html#OpenTK_Core_Platform_IKeyboardComponent_SupportsIme - name: SupportsIme - nameWithType: IKeyboardComponent.SupportsIme - fullName: OpenTK.Core.Platform.IKeyboardComponent.SupportsIme -- uid: OpenTK.Core.Platform.PalNotImplementedException - commentId: T:OpenTK.Core.Platform.PalNotImplementedException - href: OpenTK.Core.Platform.PalNotImplementedException.html - name: PalNotImplementedException - nameWithType: PalNotImplementedException - fullName: OpenTK.Core.Platform.PalNotImplementedException -- uid: OpenTK.Core.Platform.IKeyboardComponent.GetActiveKeyboardLayout* - commentId: Overload:OpenTK.Core.Platform.IKeyboardComponent.GetActiveKeyboardLayout - href: OpenTK.Core.Platform.IKeyboardComponent.html#OpenTK_Core_Platform_IKeyboardComponent_GetActiveKeyboardLayout_OpenTK_Core_Platform_WindowHandle_ - name: GetActiveKeyboardLayout - nameWithType: IKeyboardComponent.GetActiveKeyboardLayout - fullName: OpenTK.Core.Platform.IKeyboardComponent.GetActiveKeyboardLayout -- uid: OpenTK.Core.Platform.WindowHandle - commentId: T:OpenTK.Core.Platform.WindowHandle - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.WindowHandle.html - name: WindowHandle - nameWithType: WindowHandle - fullName: OpenTK.Core.Platform.WindowHandle -- uid: System.String - commentId: T:System.String - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - name: string - nameWithType: string - fullName: string - nameWithType.vb: String - fullName.vb: String - name.vb: String -- uid: OpenTK.Core.Platform.IKeyboardComponent.GetAvailableKeyboardLayouts* - commentId: Overload:OpenTK.Core.Platform.IKeyboardComponent.GetAvailableKeyboardLayouts - href: OpenTK.Core.Platform.IKeyboardComponent.html#OpenTK_Core_Platform_IKeyboardComponent_GetAvailableKeyboardLayouts - name: GetAvailableKeyboardLayouts - nameWithType: IKeyboardComponent.GetAvailableKeyboardLayouts - fullName: OpenTK.Core.Platform.IKeyboardComponent.GetAvailableKeyboardLayouts -- uid: System.String[] - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - name: string[] - nameWithType: string[] - fullName: string[] - nameWithType.vb: String() - fullName.vb: String() - name.vb: String() - spec.csharp: - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: '[' - - name: ']' - spec.vb: - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ( - - name: ) -- uid: OpenTK.Core.Platform.Scancode - commentId: T:OpenTK.Core.Platform.Scancode - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.Scancode.html - name: Scancode - nameWithType: Scancode - fullName: OpenTK.Core.Platform.Scancode -- uid: OpenTK.Core.Platform.Key - commentId: T:OpenTK.Core.Platform.Key - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.Key.html - name: Key - nameWithType: Key - fullName: OpenTK.Core.Platform.Key -- uid: OpenTK.Core.Platform.Scancode.Unknown - commentId: F:OpenTK.Core.Platform.Scancode.Unknown - href: OpenTK.Core.Platform.Scancode.html#OpenTK_Core_Platform_Scancode_Unknown - name: Unknown - nameWithType: Scancode.Unknown - fullName: OpenTK.Core.Platform.Scancode.Unknown -- uid: OpenTK.Core.Platform.IKeyboardComponent.GetScancodeFromKey* - commentId: Overload:OpenTK.Core.Platform.IKeyboardComponent.GetScancodeFromKey - href: OpenTK.Core.Platform.IKeyboardComponent.html#OpenTK_Core_Platform_IKeyboardComponent_GetScancodeFromKey_OpenTK_Core_Platform_Key_ - name: GetScancodeFromKey - nameWithType: IKeyboardComponent.GetScancodeFromKey - fullName: OpenTK.Core.Platform.IKeyboardComponent.GetScancodeFromKey -- uid: OpenTK.Core.Platform.Key.Unknown - commentId: F:OpenTK.Core.Platform.Key.Unknown - href: OpenTK.Core.Platform.Key.html#OpenTK_Core_Platform_Key_Unknown - name: Unknown - nameWithType: Key.Unknown - fullName: OpenTK.Core.Platform.Key.Unknown -- uid: OpenTK.Core.Platform.IKeyboardComponent.GetKeyFromScancode* - commentId: Overload:OpenTK.Core.Platform.IKeyboardComponent.GetKeyFromScancode - href: OpenTK.Core.Platform.IKeyboardComponent.html#OpenTK_Core_Platform_IKeyboardComponent_GetKeyFromScancode_OpenTK_Core_Platform_Scancode_ - name: GetKeyFromScancode - nameWithType: IKeyboardComponent.GetKeyFromScancode - fullName: OpenTK.Core.Platform.IKeyboardComponent.GetKeyFromScancode -- uid: OpenTK.Core.Platform.IKeyboardComponent.GetKeyboardState* - commentId: Overload:OpenTK.Core.Platform.IKeyboardComponent.GetKeyboardState - href: OpenTK.Core.Platform.IKeyboardComponent.html#OpenTK_Core_Platform_IKeyboardComponent_GetKeyboardState_System_Boolean___ - name: GetKeyboardState - nameWithType: IKeyboardComponent.GetKeyboardState - fullName: OpenTK.Core.Platform.IKeyboardComponent.GetKeyboardState -- uid: System.Boolean[] - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - name: bool[] - nameWithType: bool[] - fullName: bool[] - nameWithType.vb: Boolean() - fullName.vb: Boolean() - name.vb: Boolean() - spec.csharp: - - uid: System.Boolean - name: bool - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: '[' - - name: ']' - spec.vb: - - uid: System.Boolean - name: Boolean - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ( - - name: ) -- uid: OpenTK.Core.Platform.IKeyboardComponent.GetKeyboardModifiers* - commentId: Overload:OpenTK.Core.Platform.IKeyboardComponent.GetKeyboardModifiers - href: OpenTK.Core.Platform.IKeyboardComponent.html#OpenTK_Core_Platform_IKeyboardComponent_GetKeyboardModifiers - name: GetKeyboardModifiers - nameWithType: IKeyboardComponent.GetKeyboardModifiers - fullName: OpenTK.Core.Platform.IKeyboardComponent.GetKeyboardModifiers -- uid: OpenTK.Core.Platform.KeyModifier - commentId: T:OpenTK.Core.Platform.KeyModifier - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.KeyModifier.html - name: KeyModifier - nameWithType: KeyModifier - fullName: OpenTK.Core.Platform.KeyModifier -- uid: OpenTK.Core.Platform.IKeyboardComponent.BeginIme* - commentId: Overload:OpenTK.Core.Platform.IKeyboardComponent.BeginIme - href: OpenTK.Core.Platform.IKeyboardComponent.html#OpenTK_Core_Platform_IKeyboardComponent_BeginIme_OpenTK_Core_Platform_WindowHandle_ - name: BeginIme - nameWithType: IKeyboardComponent.BeginIme - fullName: OpenTK.Core.Platform.IKeyboardComponent.BeginIme -- uid: OpenTK.Core.Platform.IKeyboardComponent.SetImeRectangle* - commentId: Overload:OpenTK.Core.Platform.IKeyboardComponent.SetImeRectangle - href: OpenTK.Core.Platform.IKeyboardComponent.html#OpenTK_Core_Platform_IKeyboardComponent_SetImeRectangle_OpenTK_Core_Platform_WindowHandle_System_Int32_System_Int32_System_Int32_System_Int32_ - name: SetImeRectangle - nameWithType: IKeyboardComponent.SetImeRectangle - fullName: OpenTK.Core.Platform.IKeyboardComponent.SetImeRectangle -- uid: System.Int32 - commentId: T:System.Int32 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - name: int - nameWithType: int - fullName: int - nameWithType.vb: Integer - fullName.vb: Integer - name.vb: Integer -- uid: OpenTK.Core.Platform.IKeyboardComponent.EndIme* - commentId: Overload:OpenTK.Core.Platform.IKeyboardComponent.EndIme - href: OpenTK.Core.Platform.IKeyboardComponent.html#OpenTK_Core_Platform_IKeyboardComponent_EndIme_OpenTK_Core_Platform_WindowHandle_ - name: EndIme - nameWithType: IKeyboardComponent.EndIme - fullName: OpenTK.Core.Platform.IKeyboardComponent.EndIme diff --git a/api/OpenTK.Core.Platform.IMouseComponent.yml b/api/OpenTK.Core.Platform.IMouseComponent.yml deleted file mode 100644 index 6ac822af..00000000 --- a/api/OpenTK.Core.Platform.IMouseComponent.yml +++ /dev/null @@ -1,325 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: OpenTK.Core.Platform.IMouseComponent - commentId: T:OpenTK.Core.Platform.IMouseComponent - id: IMouseComponent - parent: OpenTK.Core.Platform - children: - - OpenTK.Core.Platform.IMouseComponent.CanSetMousePosition - - OpenTK.Core.Platform.IMouseComponent.GetMouseState(OpenTK.Core.Platform.MouseState@) - - OpenTK.Core.Platform.IMouseComponent.GetPosition(System.Int32@,System.Int32@) - - OpenTK.Core.Platform.IMouseComponent.SetPosition(System.Int32,System.Int32) - langs: - - csharp - - vb - name: IMouseComponent - nameWithType: IMouseComponent - fullName: OpenTK.Core.Platform.IMouseComponent - type: Interface - source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/IMouseComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: IMouseComponent - path: opentk/src/OpenTK.Core/Platform/Interfaces/IMouseComponent.cs - startLine: 31 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Base interface for drivers which implement the mouse component. - example: [] - syntax: - content: 'public interface IMouseComponent : IPalComponent' - content.vb: Public Interface IMouseComponent Inherits IPalComponent - inheritedMembers: - - OpenTK.Core.Platform.IPalComponent.Name - - OpenTK.Core.Platform.IPalComponent.Provides - - OpenTK.Core.Platform.IPalComponent.Logger - - OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) -- uid: OpenTK.Core.Platform.IMouseComponent.CanSetMousePosition - commentId: P:OpenTK.Core.Platform.IMouseComponent.CanSetMousePosition - id: CanSetMousePosition - parent: OpenTK.Core.Platform.IMouseComponent - langs: - - csharp - - vb - name: CanSetMousePosition - nameWithType: IMouseComponent.CanSetMousePosition - fullName: OpenTK.Core.Platform.IMouseComponent.CanSetMousePosition - type: Property - source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/IMouseComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: CanSetMousePosition - path: opentk/src/OpenTK.Core/Platform/Interfaces/IMouseComponent.cs - startLine: 36 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: If it's possible to set the position of the mouse. - example: [] - syntax: - content: bool CanSetMousePosition { get; } - parameters: [] - return: - type: System.Boolean - content.vb: ReadOnly Property CanSetMousePosition As Boolean - overload: OpenTK.Core.Platform.IMouseComponent.CanSetMousePosition* -- uid: OpenTK.Core.Platform.IMouseComponent.GetPosition(System.Int32@,System.Int32@) - commentId: M:OpenTK.Core.Platform.IMouseComponent.GetPosition(System.Int32@,System.Int32@) - id: GetPosition(System.Int32@,System.Int32@) - parent: OpenTK.Core.Platform.IMouseComponent - langs: - - csharp - - vb - name: GetPosition(out int, out int) - nameWithType: IMouseComponent.GetPosition(out int, out int) - fullName: OpenTK.Core.Platform.IMouseComponent.GetPosition(out int, out int) - type: Method - source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/IMouseComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: GetPosition - path: opentk/src/OpenTK.Core/Platform/Interfaces/IMouseComponent.cs - startLine: 47 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Get the mouse cursor position. - example: [] - syntax: - content: void GetPosition(out int x, out int y) - parameters: - - id: x - type: System.Int32 - description: X coordinate of the mouse in desktop space. - - id: y - type: System.Int32 - description: Y coordinate of the mouse in desktop space. - content.vb: Sub GetPosition(x As Integer, y As Integer) - overload: OpenTK.Core.Platform.IMouseComponent.GetPosition* - nameWithType.vb: IMouseComponent.GetPosition(Integer, Integer) - fullName.vb: OpenTK.Core.Platform.IMouseComponent.GetPosition(Integer, Integer) - name.vb: GetPosition(Integer, Integer) -- uid: OpenTK.Core.Platform.IMouseComponent.SetPosition(System.Int32,System.Int32) - commentId: M:OpenTK.Core.Platform.IMouseComponent.SetPosition(System.Int32,System.Int32) - id: SetPosition(System.Int32,System.Int32) - parent: OpenTK.Core.Platform.IMouseComponent - langs: - - csharp - - vb - name: SetPosition(int, int) - nameWithType: IMouseComponent.SetPosition(int, int) - fullName: OpenTK.Core.Platform.IMouseComponent.SetPosition(int, int) - type: Method - source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/IMouseComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: SetPosition - path: opentk/src/OpenTK.Core/Platform/Interfaces/IMouseComponent.cs - startLine: 54 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Set the mouse cursor position. - example: [] - syntax: - content: void SetPosition(int x, int y) - parameters: - - id: x - type: System.Int32 - description: X coordinate of the mouse in desktop space. - - id: y - type: System.Int32 - description: Y coordinate of the mouse in desktop space. - content.vb: Sub SetPosition(x As Integer, y As Integer) - overload: OpenTK.Core.Platform.IMouseComponent.SetPosition* - nameWithType.vb: IMouseComponent.SetPosition(Integer, Integer) - fullName.vb: OpenTK.Core.Platform.IMouseComponent.SetPosition(Integer, Integer) - name.vb: SetPosition(Integer, Integer) -- uid: OpenTK.Core.Platform.IMouseComponent.GetMouseState(OpenTK.Core.Platform.MouseState@) - commentId: M:OpenTK.Core.Platform.IMouseComponent.GetMouseState(OpenTK.Core.Platform.MouseState@) - id: GetMouseState(OpenTK.Core.Platform.MouseState@) - parent: OpenTK.Core.Platform.IMouseComponent - langs: - - csharp - - vb - name: GetMouseState(out MouseState) - nameWithType: IMouseComponent.GetMouseState(out MouseState) - fullName: OpenTK.Core.Platform.IMouseComponent.GetMouseState(out OpenTK.Core.Platform.MouseState) - type: Method - source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/IMouseComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: GetMouseState - path: opentk/src/OpenTK.Core/Platform/Interfaces/IMouseComponent.cs - startLine: 60 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Fills the state struct with the current mouse state. - example: [] - syntax: - content: void GetMouseState(out MouseState state) - parameters: - - id: state - type: OpenTK.Core.Platform.MouseState - description: The current mouse state. - content.vb: Sub GetMouseState(state As MouseState) - overload: OpenTK.Core.Platform.IMouseComponent.GetMouseState* - nameWithType.vb: IMouseComponent.GetMouseState(MouseState) - fullName.vb: OpenTK.Core.Platform.IMouseComponent.GetMouseState(OpenTK.Core.Platform.MouseState) - name.vb: GetMouseState(MouseState) -references: -- uid: OpenTK.Core.Platform - commentId: N:OpenTK.Core.Platform - href: OpenTK.html - name: OpenTK.Core.Platform - nameWithType: OpenTK.Core.Platform - fullName: OpenTK.Core.Platform - spec.csharp: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform - name: Platform - href: OpenTK.Core.Platform.html - spec.vb: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform - name: Platform - href: OpenTK.Core.Platform.html -- uid: OpenTK.Core.Platform.IPalComponent.Name - commentId: P:OpenTK.Core.Platform.IPalComponent.Name - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Name - name: Name - nameWithType: IPalComponent.Name - fullName: OpenTK.Core.Platform.IPalComponent.Name -- uid: OpenTK.Core.Platform.IPalComponent.Provides - commentId: P:OpenTK.Core.Platform.IPalComponent.Provides - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Provides - name: Provides - nameWithType: IPalComponent.Provides - fullName: OpenTK.Core.Platform.IPalComponent.Provides -- uid: OpenTK.Core.Platform.IPalComponent.Logger - commentId: P:OpenTK.Core.Platform.IPalComponent.Logger - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Logger - name: Logger - nameWithType: IPalComponent.Logger - fullName: OpenTK.Core.Platform.IPalComponent.Logger -- uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - commentId: M:OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ - name: Initialize(ToolkitOptions) - nameWithType: IPalComponent.Initialize(ToolkitOptions) - fullName: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - spec.csharp: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ - - name: ( - - uid: OpenTK.Core.Platform.ToolkitOptions - name: ToolkitOptions - href: OpenTK.Core.Platform.ToolkitOptions.html - - name: ) - spec.vb: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ - - name: ( - - uid: OpenTK.Core.Platform.ToolkitOptions - name: ToolkitOptions - href: OpenTK.Core.Platform.ToolkitOptions.html - - name: ) -- uid: OpenTK.Core.Platform.IPalComponent - commentId: T:OpenTK.Core.Platform.IPalComponent - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.IPalComponent.html - name: IPalComponent - nameWithType: IPalComponent - fullName: OpenTK.Core.Platform.IPalComponent -- uid: OpenTK.Core.Platform.IMouseComponent.CanSetMousePosition* - commentId: Overload:OpenTK.Core.Platform.IMouseComponent.CanSetMousePosition - href: OpenTK.Core.Platform.IMouseComponent.html#OpenTK_Core_Platform_IMouseComponent_CanSetMousePosition - name: CanSetMousePosition - nameWithType: IMouseComponent.CanSetMousePosition - fullName: OpenTK.Core.Platform.IMouseComponent.CanSetMousePosition -- uid: System.Boolean - commentId: T:System.Boolean - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - name: bool - nameWithType: bool - fullName: bool - nameWithType.vb: Boolean - fullName.vb: Boolean - name.vb: Boolean -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: OpenTK.Core.Platform.IMouseComponent.GetPosition* - commentId: Overload:OpenTK.Core.Platform.IMouseComponent.GetPosition - href: OpenTK.Core.Platform.IMouseComponent.html#OpenTK_Core_Platform_IMouseComponent_GetPosition_System_Int32__System_Int32__ - name: GetPosition - nameWithType: IMouseComponent.GetPosition - fullName: OpenTK.Core.Platform.IMouseComponent.GetPosition -- uid: System.Int32 - commentId: T:System.Int32 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - name: int - nameWithType: int - fullName: int - nameWithType.vb: Integer - fullName.vb: Integer - name.vb: Integer -- uid: OpenTK.Core.Platform.IMouseComponent.SetPosition* - commentId: Overload:OpenTK.Core.Platform.IMouseComponent.SetPosition - href: OpenTK.Core.Platform.IMouseComponent.html#OpenTK_Core_Platform_IMouseComponent_SetPosition_System_Int32_System_Int32_ - name: SetPosition - nameWithType: IMouseComponent.SetPosition - fullName: OpenTK.Core.Platform.IMouseComponent.SetPosition -- uid: OpenTK.Core.Platform.IMouseComponent.GetMouseState* - commentId: Overload:OpenTK.Core.Platform.IMouseComponent.GetMouseState - href: OpenTK.Core.Platform.IMouseComponent.html#OpenTK_Core_Platform_IMouseComponent_GetMouseState_OpenTK_Core_Platform_MouseState__ - name: GetMouseState - nameWithType: IMouseComponent.GetMouseState - fullName: OpenTK.Core.Platform.IMouseComponent.GetMouseState -- uid: OpenTK.Core.Platform.MouseState - commentId: T:OpenTK.Core.Platform.MouseState - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.MouseState.html - name: MouseState - nameWithType: MouseState - fullName: OpenTK.Core.Platform.MouseState diff --git a/api/OpenTK.Core.Platform.IOpenGLComponent.yml b/api/OpenTK.Core.Platform.IOpenGLComponent.yml deleted file mode 100644 index 7b607630..00000000 --- a/api/OpenTK.Core.Platform.IOpenGLComponent.yml +++ /dev/null @@ -1,779 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: OpenTK.Core.Platform.IOpenGLComponent - commentId: T:OpenTK.Core.Platform.IOpenGLComponent - id: IOpenGLComponent - parent: OpenTK.Core.Platform - children: - - OpenTK.Core.Platform.IOpenGLComponent.CanCreateFromSurface - - OpenTK.Core.Platform.IOpenGLComponent.CanCreateFromWindow - - OpenTK.Core.Platform.IOpenGLComponent.CanShareContexts - - OpenTK.Core.Platform.IOpenGLComponent.CreateFromSurface - - OpenTK.Core.Platform.IOpenGLComponent.CreateFromWindow(OpenTK.Core.Platform.WindowHandle) - - OpenTK.Core.Platform.IOpenGLComponent.DestroyContext(OpenTK.Core.Platform.OpenGLContextHandle) - - OpenTK.Core.Platform.IOpenGLComponent.GetBindingsContext(OpenTK.Core.Platform.OpenGLContextHandle) - - OpenTK.Core.Platform.IOpenGLComponent.GetCurrentContext - - OpenTK.Core.Platform.IOpenGLComponent.GetProcedureAddress(OpenTK.Core.Platform.OpenGLContextHandle,System.String) - - OpenTK.Core.Platform.IOpenGLComponent.GetSharedContext(OpenTK.Core.Platform.OpenGLContextHandle) - - OpenTK.Core.Platform.IOpenGLComponent.GetSwapInterval - - OpenTK.Core.Platform.IOpenGLComponent.SetCurrentContext(OpenTK.Core.Platform.OpenGLContextHandle) - - OpenTK.Core.Platform.IOpenGLComponent.SetSwapInterval(System.Int32) - - OpenTK.Core.Platform.IOpenGLComponent.SwapBuffers(OpenTK.Core.Platform.OpenGLContextHandle) - langs: - - csharp - - vb - name: IOpenGLComponent - nameWithType: IOpenGLComponent - fullName: OpenTK.Core.Platform.IOpenGLComponent - type: Interface - source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/IOpenGLComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: IOpenGLComponent - path: opentk/src/OpenTK.Core/Platform/Interfaces/IOpenGLComponent.cs - startLine: 10 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Interface for drivers which provide the PAL OpenGL Component. - example: [] - syntax: - content: 'public interface IOpenGLComponent : IPalComponent' - content.vb: Public Interface IOpenGLComponent Inherits IPalComponent - inheritedMembers: - - OpenTK.Core.Platform.IPalComponent.Name - - OpenTK.Core.Platform.IPalComponent.Provides - - OpenTK.Core.Platform.IPalComponent.Logger - - OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) -- uid: OpenTK.Core.Platform.IOpenGLComponent.CanShareContexts - commentId: P:OpenTK.Core.Platform.IOpenGLComponent.CanShareContexts - id: CanShareContexts - parent: OpenTK.Core.Platform.IOpenGLComponent - langs: - - csharp - - vb - name: CanShareContexts - nameWithType: IOpenGLComponent.CanShareContexts - fullName: OpenTK.Core.Platform.IOpenGLComponent.CanShareContexts - type: Property - source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/IOpenGLComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: CanShareContexts - path: opentk/src/OpenTK.Core/Platform/Interfaces/IOpenGLComponent.cs - startLine: 15 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: True if the component driver has the capability to share display lists between OpenGL contexts. - example: [] - syntax: - content: bool CanShareContexts { get; } - parameters: [] - return: - type: System.Boolean - content.vb: ReadOnly Property CanShareContexts As Boolean - overload: OpenTK.Core.Platform.IOpenGLComponent.CanShareContexts* -- uid: OpenTK.Core.Platform.IOpenGLComponent.CanCreateFromWindow - commentId: P:OpenTK.Core.Platform.IOpenGLComponent.CanCreateFromWindow - id: CanCreateFromWindow - parent: OpenTK.Core.Platform.IOpenGLComponent - langs: - - csharp - - vb - name: CanCreateFromWindow - nameWithType: IOpenGLComponent.CanCreateFromWindow - fullName: OpenTK.Core.Platform.IOpenGLComponent.CanCreateFromWindow - type: Property - source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/IOpenGLComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: CanCreateFromWindow - path: opentk/src/OpenTK.Core/Platform/Interfaces/IOpenGLComponent.cs - startLine: 20 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: True if the component driver can create a context from windows. - example: [] - syntax: - content: bool CanCreateFromWindow { get; } - parameters: [] - return: - type: System.Boolean - content.vb: ReadOnly Property CanCreateFromWindow As Boolean - overload: OpenTK.Core.Platform.IOpenGLComponent.CanCreateFromWindow* -- uid: OpenTK.Core.Platform.IOpenGLComponent.CanCreateFromSurface - commentId: P:OpenTK.Core.Platform.IOpenGLComponent.CanCreateFromSurface - id: CanCreateFromSurface - parent: OpenTK.Core.Platform.IOpenGLComponent - langs: - - csharp - - vb - name: CanCreateFromSurface - nameWithType: IOpenGLComponent.CanCreateFromSurface - fullName: OpenTK.Core.Platform.IOpenGLComponent.CanCreateFromSurface - type: Property - source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/IOpenGLComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: CanCreateFromSurface - path: opentk/src/OpenTK.Core/Platform/Interfaces/IOpenGLComponent.cs - startLine: 25 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: True if the component driver can create a context from surfaces. - example: [] - syntax: - content: bool CanCreateFromSurface { get; } - parameters: [] - return: - type: System.Boolean - content.vb: ReadOnly Property CanCreateFromSurface As Boolean - overload: OpenTK.Core.Platform.IOpenGLComponent.CanCreateFromSurface* -- uid: OpenTK.Core.Platform.IOpenGLComponent.CreateFromSurface - commentId: M:OpenTK.Core.Platform.IOpenGLComponent.CreateFromSurface - id: CreateFromSurface - parent: OpenTK.Core.Platform.IOpenGLComponent - langs: - - csharp - - vb - name: CreateFromSurface() - nameWithType: IOpenGLComponent.CreateFromSurface() - fullName: OpenTK.Core.Platform.IOpenGLComponent.CreateFromSurface() - type: Method - source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/IOpenGLComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: CreateFromSurface - path: opentk/src/OpenTK.Core/Platform/Interfaces/IOpenGLComponent.cs - startLine: 31 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Create and OpenGL context for a surface. - example: [] - syntax: - content: OpenGLContextHandle CreateFromSurface() - return: - type: OpenTK.Core.Platform.OpenGLContextHandle - description: An OpenGL context handle. - content.vb: Function CreateFromSurface() As OpenGLContextHandle - overload: OpenTK.Core.Platform.IOpenGLComponent.CreateFromSurface* -- uid: OpenTK.Core.Platform.IOpenGLComponent.CreateFromWindow(OpenTK.Core.Platform.WindowHandle) - commentId: M:OpenTK.Core.Platform.IOpenGLComponent.CreateFromWindow(OpenTK.Core.Platform.WindowHandle) - id: CreateFromWindow(OpenTK.Core.Platform.WindowHandle) - parent: OpenTK.Core.Platform.IOpenGLComponent - langs: - - csharp - - vb - name: CreateFromWindow(WindowHandle) - nameWithType: IOpenGLComponent.CreateFromWindow(WindowHandle) - fullName: OpenTK.Core.Platform.IOpenGLComponent.CreateFromWindow(OpenTK.Core.Platform.WindowHandle) - type: Method - source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/IOpenGLComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: CreateFromWindow - path: opentk/src/OpenTK.Core/Platform/Interfaces/IOpenGLComponent.cs - startLine: 40 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Create an OpenGL context for a window. - example: [] - syntax: - content: OpenGLContextHandle CreateFromWindow(WindowHandle handle) - parameters: - - id: handle - type: OpenTK.Core.Platform.WindowHandle - description: The window for which the OpenGL context should be created. - return: - type: OpenTK.Core.Platform.OpenGLContextHandle - description: An OpenGL context handle. - content.vb: Function CreateFromWindow(handle As WindowHandle) As OpenGLContextHandle - overload: OpenTK.Core.Platform.IOpenGLComponent.CreateFromWindow* -- uid: OpenTK.Core.Platform.IOpenGLComponent.DestroyContext(OpenTK.Core.Platform.OpenGLContextHandle) - commentId: M:OpenTK.Core.Platform.IOpenGLComponent.DestroyContext(OpenTK.Core.Platform.OpenGLContextHandle) - id: DestroyContext(OpenTK.Core.Platform.OpenGLContextHandle) - parent: OpenTK.Core.Platform.IOpenGLComponent - langs: - - csharp - - vb - name: DestroyContext(OpenGLContextHandle) - nameWithType: IOpenGLComponent.DestroyContext(OpenGLContextHandle) - fullName: OpenTK.Core.Platform.IOpenGLComponent.DestroyContext(OpenTK.Core.Platform.OpenGLContextHandle) - type: Method - source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/IOpenGLComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: DestroyContext - path: opentk/src/OpenTK.Core/Platform/Interfaces/IOpenGLComponent.cs - startLine: 47 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Destroy an OpenGL context. - example: [] - syntax: - content: void DestroyContext(OpenGLContextHandle handle) - parameters: - - id: handle - type: OpenTK.Core.Platform.OpenGLContextHandle - description: Handle to the OpenGL context to destroy. - content.vb: Sub DestroyContext(handle As OpenGLContextHandle) - overload: OpenTK.Core.Platform.IOpenGLComponent.DestroyContext* - exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: OpenGL context handle is null. -- uid: OpenTK.Core.Platform.IOpenGLComponent.GetBindingsContext(OpenTK.Core.Platform.OpenGLContextHandle) - commentId: M:OpenTK.Core.Platform.IOpenGLComponent.GetBindingsContext(OpenTK.Core.Platform.OpenGLContextHandle) - id: GetBindingsContext(OpenTK.Core.Platform.OpenGLContextHandle) - parent: OpenTK.Core.Platform.IOpenGLComponent - langs: - - csharp - - vb - name: GetBindingsContext(OpenGLContextHandle) - nameWithType: IOpenGLComponent.GetBindingsContext(OpenGLContextHandle) - fullName: OpenTK.Core.Platform.IOpenGLComponent.GetBindingsContext(OpenTK.Core.Platform.OpenGLContextHandle) - type: Method - source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/IOpenGLComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: GetBindingsContext - path: opentk/src/OpenTK.Core/Platform/Interfaces/IOpenGLComponent.cs - startLine: 54 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Gets a from an . - example: [] - syntax: - content: IBindingsContext GetBindingsContext(OpenGLContextHandle handle) - parameters: - - id: handle - type: OpenTK.Core.Platform.OpenGLContextHandle - description: The handle to get a bindings context for. - return: - type: OpenTK.IBindingsContext - description: The created bindings context. - content.vb: Function GetBindingsContext(handle As OpenGLContextHandle) As IBindingsContext - overload: OpenTK.Core.Platform.IOpenGLComponent.GetBindingsContext* -- uid: OpenTK.Core.Platform.IOpenGLComponent.GetProcedureAddress(OpenTK.Core.Platform.OpenGLContextHandle,System.String) - commentId: M:OpenTK.Core.Platform.IOpenGLComponent.GetProcedureAddress(OpenTK.Core.Platform.OpenGLContextHandle,System.String) - id: GetProcedureAddress(OpenTK.Core.Platform.OpenGLContextHandle,System.String) - parent: OpenTK.Core.Platform.IOpenGLComponent - langs: - - csharp - - vb - name: GetProcedureAddress(OpenGLContextHandle, string) - nameWithType: IOpenGLComponent.GetProcedureAddress(OpenGLContextHandle, string) - fullName: OpenTK.Core.Platform.IOpenGLComponent.GetProcedureAddress(OpenTK.Core.Platform.OpenGLContextHandle, string) - type: Method - source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/IOpenGLComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: GetProcedureAddress - path: opentk/src/OpenTK.Core/Platform/Interfaces/IOpenGLComponent.cs - startLine: 63 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Get the procedure address for an OpenGL command. - example: [] - syntax: - content: nint GetProcedureAddress(OpenGLContextHandle handle, string procedureName) - parameters: - - id: handle - type: OpenTK.Core.Platform.OpenGLContextHandle - description: Handle to an OpenGL context. - - id: procedureName - type: System.String - description: Name of the OpenGL command. - return: - type: System.IntPtr - description: The procedure address to the OpenGL command. - content.vb: Function GetProcedureAddress(handle As OpenGLContextHandle, procedureName As String) As IntPtr - overload: OpenTK.Core.Platform.IOpenGLComponent.GetProcedureAddress* - exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: OpenGL context handle or procedure name is null. - nameWithType.vb: IOpenGLComponent.GetProcedureAddress(OpenGLContextHandle, String) - fullName.vb: OpenTK.Core.Platform.IOpenGLComponent.GetProcedureAddress(OpenTK.Core.Platform.OpenGLContextHandle, String) - name.vb: GetProcedureAddress(OpenGLContextHandle, String) -- uid: OpenTK.Core.Platform.IOpenGLComponent.GetCurrentContext - commentId: M:OpenTK.Core.Platform.IOpenGLComponent.GetCurrentContext - id: GetCurrentContext - parent: OpenTK.Core.Platform.IOpenGLComponent - langs: - - csharp - - vb - name: GetCurrentContext() - nameWithType: IOpenGLComponent.GetCurrentContext() - fullName: OpenTK.Core.Platform.IOpenGLComponent.GetCurrentContext() - type: Method - source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/IOpenGLComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: GetCurrentContext - path: opentk/src/OpenTK.Core/Platform/Interfaces/IOpenGLComponent.cs - startLine: 69 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Get the current OpenGL context for this thread. - example: [] - syntax: - content: OpenGLContextHandle? GetCurrentContext() - return: - type: OpenTK.Core.Platform.OpenGLContextHandle - description: Handle to the current OpenGL context, null if none are current. - content.vb: Function GetCurrentContext() As OpenGLContextHandle - overload: OpenTK.Core.Platform.IOpenGLComponent.GetCurrentContext* -- uid: OpenTK.Core.Platform.IOpenGLComponent.SetCurrentContext(OpenTK.Core.Platform.OpenGLContextHandle) - commentId: M:OpenTK.Core.Platform.IOpenGLComponent.SetCurrentContext(OpenTK.Core.Platform.OpenGLContextHandle) - id: SetCurrentContext(OpenTK.Core.Platform.OpenGLContextHandle) - parent: OpenTK.Core.Platform.IOpenGLComponent - langs: - - csharp - - vb - name: SetCurrentContext(OpenGLContextHandle?) - nameWithType: IOpenGLComponent.SetCurrentContext(OpenGLContextHandle?) - fullName: OpenTK.Core.Platform.IOpenGLComponent.SetCurrentContext(OpenTK.Core.Platform.OpenGLContextHandle?) - type: Method - source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/IOpenGLComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: SetCurrentContext - path: opentk/src/OpenTK.Core/Platform/Interfaces/IOpenGLComponent.cs - startLine: 77 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Set the current OpenGL context for this thread. - example: [] - syntax: - content: bool SetCurrentContext(OpenGLContextHandle? handle) - parameters: - - id: handle - type: OpenTK.Core.Platform.OpenGLContextHandle - description: Handle to the OpenGL context to make current, or null to make none current. - return: - type: System.Boolean - description: True when the OpenGL context is successfully made current. - content.vb: Function SetCurrentContext(handle As OpenGLContextHandle) As Boolean - overload: OpenTK.Core.Platform.IOpenGLComponent.SetCurrentContext* - nameWithType.vb: IOpenGLComponent.SetCurrentContext(OpenGLContextHandle) - fullName.vb: OpenTK.Core.Platform.IOpenGLComponent.SetCurrentContext(OpenTK.Core.Platform.OpenGLContextHandle) - name.vb: SetCurrentContext(OpenGLContextHandle) -- uid: OpenTK.Core.Platform.IOpenGLComponent.GetSharedContext(OpenTK.Core.Platform.OpenGLContextHandle) - commentId: M:OpenTK.Core.Platform.IOpenGLComponent.GetSharedContext(OpenTK.Core.Platform.OpenGLContextHandle) - id: GetSharedContext(OpenTK.Core.Platform.OpenGLContextHandle) - parent: OpenTK.Core.Platform.IOpenGLComponent - langs: - - csharp - - vb - name: GetSharedContext(OpenGLContextHandle) - nameWithType: IOpenGLComponent.GetSharedContext(OpenGLContextHandle) - fullName: OpenTK.Core.Platform.IOpenGLComponent.GetSharedContext(OpenTK.Core.Platform.OpenGLContextHandle) - type: Method - source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/IOpenGLComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: GetSharedContext - path: opentk/src/OpenTK.Core/Platform/Interfaces/IOpenGLComponent.cs - startLine: 84 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Gets the context which the given context shares display lists with. - example: [] - syntax: - content: OpenGLContextHandle? GetSharedContext(OpenGLContextHandle handle) - parameters: - - id: handle - type: OpenTK.Core.Platform.OpenGLContextHandle - description: Handle to the OpenGL context. - return: - type: OpenTK.Core.Platform.OpenGLContextHandle - description: Handle to the OpenGL context the given context shares display lists with. - content.vb: Function GetSharedContext(handle As OpenGLContextHandle) As OpenGLContextHandle - overload: OpenTK.Core.Platform.IOpenGLComponent.GetSharedContext* -- uid: OpenTK.Core.Platform.IOpenGLComponent.SetSwapInterval(System.Int32) - commentId: M:OpenTK.Core.Platform.IOpenGLComponent.SetSwapInterval(System.Int32) - id: SetSwapInterval(System.Int32) - parent: OpenTK.Core.Platform.IOpenGLComponent - langs: - - csharp - - vb - name: SetSwapInterval(int) - nameWithType: IOpenGLComponent.SetSwapInterval(int) - fullName: OpenTK.Core.Platform.IOpenGLComponent.SetSwapInterval(int) - type: Method - source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/IOpenGLComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: SetSwapInterval - path: opentk/src/OpenTK.Core/Platform/Interfaces/IOpenGLComponent.cs - startLine: 91 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Sets the swap interval of the current OpenGL context. - example: [] - syntax: - content: void SetSwapInterval(int interval) - parameters: - - id: interval - type: System.Int32 - description: The new swap interval. - content.vb: Sub SetSwapInterval(interval As Integer) - overload: OpenTK.Core.Platform.IOpenGLComponent.SetSwapInterval* - nameWithType.vb: IOpenGLComponent.SetSwapInterval(Integer) - fullName.vb: OpenTK.Core.Platform.IOpenGLComponent.SetSwapInterval(Integer) - name.vb: SetSwapInterval(Integer) -- uid: OpenTK.Core.Platform.IOpenGLComponent.GetSwapInterval - commentId: M:OpenTK.Core.Platform.IOpenGLComponent.GetSwapInterval - id: GetSwapInterval - parent: OpenTK.Core.Platform.IOpenGLComponent - langs: - - csharp - - vb - name: GetSwapInterval() - nameWithType: IOpenGLComponent.GetSwapInterval() - fullName: OpenTK.Core.Platform.IOpenGLComponent.GetSwapInterval() - type: Method - source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/IOpenGLComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: GetSwapInterval - path: opentk/src/OpenTK.Core/Platform/Interfaces/IOpenGLComponent.cs - startLine: 98 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Gets the swap interval of the current OpenGL context. - example: [] - syntax: - content: int GetSwapInterval() - return: - type: System.Int32 - description: The current swap interval. - content.vb: Function GetSwapInterval() As Integer - overload: OpenTK.Core.Platform.IOpenGLComponent.GetSwapInterval* -- uid: OpenTK.Core.Platform.IOpenGLComponent.SwapBuffers(OpenTK.Core.Platform.OpenGLContextHandle) - commentId: M:OpenTK.Core.Platform.IOpenGLComponent.SwapBuffers(OpenTK.Core.Platform.OpenGLContextHandle) - id: SwapBuffers(OpenTK.Core.Platform.OpenGLContextHandle) - parent: OpenTK.Core.Platform.IOpenGLComponent - langs: - - csharp - - vb - name: SwapBuffers(OpenGLContextHandle) - nameWithType: IOpenGLComponent.SwapBuffers(OpenGLContextHandle) - fullName: OpenTK.Core.Platform.IOpenGLComponent.SwapBuffers(OpenTK.Core.Platform.OpenGLContextHandle) - type: Method - source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/IOpenGLComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: SwapBuffers - path: opentk/src/OpenTK.Core/Platform/Interfaces/IOpenGLComponent.cs - startLine: 104 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Swaps the buffer of the specified context. - example: [] - syntax: - content: void SwapBuffers(OpenGLContextHandle handle) - parameters: - - id: handle - type: OpenTK.Core.Platform.OpenGLContextHandle - description: Handle to the context. - content.vb: Sub SwapBuffers(handle As OpenGLContextHandle) - overload: OpenTK.Core.Platform.IOpenGLComponent.SwapBuffers* -references: -- uid: OpenTK.Core.Platform - commentId: N:OpenTK.Core.Platform - href: OpenTK.html - name: OpenTK.Core.Platform - nameWithType: OpenTK.Core.Platform - fullName: OpenTK.Core.Platform - spec.csharp: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform - name: Platform - href: OpenTK.Core.Platform.html - spec.vb: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform - name: Platform - href: OpenTK.Core.Platform.html -- uid: OpenTK.Core.Platform.IPalComponent.Name - commentId: P:OpenTK.Core.Platform.IPalComponent.Name - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Name - name: Name - nameWithType: IPalComponent.Name - fullName: OpenTK.Core.Platform.IPalComponent.Name -- uid: OpenTK.Core.Platform.IPalComponent.Provides - commentId: P:OpenTK.Core.Platform.IPalComponent.Provides - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Provides - name: Provides - nameWithType: IPalComponent.Provides - fullName: OpenTK.Core.Platform.IPalComponent.Provides -- uid: OpenTK.Core.Platform.IPalComponent.Logger - commentId: P:OpenTK.Core.Platform.IPalComponent.Logger - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Logger - name: Logger - nameWithType: IPalComponent.Logger - fullName: OpenTK.Core.Platform.IPalComponent.Logger -- uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - commentId: M:OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ - name: Initialize(ToolkitOptions) - nameWithType: IPalComponent.Initialize(ToolkitOptions) - fullName: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - spec.csharp: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ - - name: ( - - uid: OpenTK.Core.Platform.ToolkitOptions - name: ToolkitOptions - href: OpenTK.Core.Platform.ToolkitOptions.html - - name: ) - spec.vb: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ - - name: ( - - uid: OpenTK.Core.Platform.ToolkitOptions - name: ToolkitOptions - href: OpenTK.Core.Platform.ToolkitOptions.html - - name: ) -- uid: OpenTK.Core.Platform.IPalComponent - commentId: T:OpenTK.Core.Platform.IPalComponent - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.IPalComponent.html - name: IPalComponent - nameWithType: IPalComponent - fullName: OpenTK.Core.Platform.IPalComponent -- uid: OpenTK.Core.Platform.IOpenGLComponent.CanShareContexts* - commentId: Overload:OpenTK.Core.Platform.IOpenGLComponent.CanShareContexts - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_CanShareContexts - name: CanShareContexts - nameWithType: IOpenGLComponent.CanShareContexts - fullName: OpenTK.Core.Platform.IOpenGLComponent.CanShareContexts -- uid: System.Boolean - commentId: T:System.Boolean - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - name: bool - nameWithType: bool - fullName: bool - nameWithType.vb: Boolean - fullName.vb: Boolean - name.vb: Boolean -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: OpenTK.Core.Platform.IOpenGLComponent.CanCreateFromWindow* - commentId: Overload:OpenTK.Core.Platform.IOpenGLComponent.CanCreateFromWindow - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_CanCreateFromWindow - name: CanCreateFromWindow - nameWithType: IOpenGLComponent.CanCreateFromWindow - fullName: OpenTK.Core.Platform.IOpenGLComponent.CanCreateFromWindow -- uid: OpenTK.Core.Platform.IOpenGLComponent.CanCreateFromSurface* - commentId: Overload:OpenTK.Core.Platform.IOpenGLComponent.CanCreateFromSurface - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_CanCreateFromSurface - name: CanCreateFromSurface - nameWithType: IOpenGLComponent.CanCreateFromSurface - fullName: OpenTK.Core.Platform.IOpenGLComponent.CanCreateFromSurface -- uid: OpenTK.Core.Platform.IOpenGLComponent.CreateFromSurface* - commentId: Overload:OpenTK.Core.Platform.IOpenGLComponent.CreateFromSurface - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_CreateFromSurface - name: CreateFromSurface - nameWithType: IOpenGLComponent.CreateFromSurface - fullName: OpenTK.Core.Platform.IOpenGLComponent.CreateFromSurface -- uid: OpenTK.Core.Platform.OpenGLContextHandle - commentId: T:OpenTK.Core.Platform.OpenGLContextHandle - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.OpenGLContextHandle.html - name: OpenGLContextHandle - nameWithType: OpenGLContextHandle - fullName: OpenTK.Core.Platform.OpenGLContextHandle -- uid: OpenTK.Core.Platform.IOpenGLComponent.CreateFromWindow* - commentId: Overload:OpenTK.Core.Platform.IOpenGLComponent.CreateFromWindow - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_CreateFromWindow_OpenTK_Core_Platform_WindowHandle_ - name: CreateFromWindow - nameWithType: IOpenGLComponent.CreateFromWindow - fullName: OpenTK.Core.Platform.IOpenGLComponent.CreateFromWindow -- uid: OpenTK.Core.Platform.WindowHandle - commentId: T:OpenTK.Core.Platform.WindowHandle - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.WindowHandle.html - name: WindowHandle - nameWithType: WindowHandle - fullName: OpenTK.Core.Platform.WindowHandle -- uid: System.ArgumentNullException - commentId: T:System.ArgumentNullException - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.argumentnullexception - name: ArgumentNullException - nameWithType: ArgumentNullException - fullName: System.ArgumentNullException -- uid: OpenTK.Core.Platform.IOpenGLComponent.DestroyContext* - commentId: Overload:OpenTK.Core.Platform.IOpenGLComponent.DestroyContext - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_DestroyContext_OpenTK_Core_Platform_OpenGLContextHandle_ - name: DestroyContext - nameWithType: IOpenGLComponent.DestroyContext - fullName: OpenTK.Core.Platform.IOpenGLComponent.DestroyContext -- uid: OpenTK.IBindingsContext - commentId: T:OpenTK.IBindingsContext - parent: OpenTK - href: OpenTK.IBindingsContext.html - name: IBindingsContext - nameWithType: IBindingsContext - fullName: OpenTK.IBindingsContext -- uid: OpenTK.Core.Platform.IOpenGLComponent.GetBindingsContext* - commentId: Overload:OpenTK.Core.Platform.IOpenGLComponent.GetBindingsContext - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_GetBindingsContext_OpenTK_Core_Platform_OpenGLContextHandle_ - name: GetBindingsContext - nameWithType: IOpenGLComponent.GetBindingsContext - fullName: OpenTK.Core.Platform.IOpenGLComponent.GetBindingsContext -- uid: OpenTK - commentId: N:OpenTK - href: OpenTK.html - name: OpenTK - nameWithType: OpenTK - fullName: OpenTK -- uid: OpenTK.Core.Platform.IOpenGLComponent.GetProcedureAddress* - commentId: Overload:OpenTK.Core.Platform.IOpenGLComponent.GetProcedureAddress - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_GetProcedureAddress_OpenTK_Core_Platform_OpenGLContextHandle_System_String_ - name: GetProcedureAddress - nameWithType: IOpenGLComponent.GetProcedureAddress - fullName: OpenTK.Core.Platform.IOpenGLComponent.GetProcedureAddress -- uid: System.String - commentId: T:System.String - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - name: string - nameWithType: string - fullName: string - nameWithType.vb: String - fullName.vb: String - name.vb: String -- uid: System.IntPtr - commentId: T:System.IntPtr - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: nint - nameWithType: nint - fullName: nint - nameWithType.vb: IntPtr - fullName.vb: System.IntPtr - name.vb: IntPtr -- uid: OpenTK.Core.Platform.IOpenGLComponent.GetCurrentContext* - commentId: Overload:OpenTK.Core.Platform.IOpenGLComponent.GetCurrentContext - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_GetCurrentContext - name: GetCurrentContext - nameWithType: IOpenGLComponent.GetCurrentContext - fullName: OpenTK.Core.Platform.IOpenGLComponent.GetCurrentContext -- uid: OpenTK.Core.Platform.IOpenGLComponent.SetCurrentContext* - commentId: Overload:OpenTK.Core.Platform.IOpenGLComponent.SetCurrentContext - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_SetCurrentContext_OpenTK_Core_Platform_OpenGLContextHandle_ - name: SetCurrentContext - nameWithType: IOpenGLComponent.SetCurrentContext - fullName: OpenTK.Core.Platform.IOpenGLComponent.SetCurrentContext -- uid: OpenTK.Core.Platform.IOpenGLComponent.GetSharedContext* - commentId: Overload:OpenTK.Core.Platform.IOpenGLComponent.GetSharedContext - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_GetSharedContext_OpenTK_Core_Platform_OpenGLContextHandle_ - name: GetSharedContext - nameWithType: IOpenGLComponent.GetSharedContext - fullName: OpenTK.Core.Platform.IOpenGLComponent.GetSharedContext -- uid: OpenTK.Core.Platform.IOpenGLComponent.SetSwapInterval* - commentId: Overload:OpenTK.Core.Platform.IOpenGLComponent.SetSwapInterval - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_SetSwapInterval_System_Int32_ - name: SetSwapInterval - nameWithType: IOpenGLComponent.SetSwapInterval - fullName: OpenTK.Core.Platform.IOpenGLComponent.SetSwapInterval -- uid: System.Int32 - commentId: T:System.Int32 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - name: int - nameWithType: int - fullName: int - nameWithType.vb: Integer - fullName.vb: Integer - name.vb: Integer -- uid: OpenTK.Core.Platform.IOpenGLComponent.GetSwapInterval* - commentId: Overload:OpenTK.Core.Platform.IOpenGLComponent.GetSwapInterval - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_GetSwapInterval - name: GetSwapInterval - nameWithType: IOpenGLComponent.GetSwapInterval - fullName: OpenTK.Core.Platform.IOpenGLComponent.GetSwapInterval -- uid: OpenTK.Core.Platform.IOpenGLComponent.SwapBuffers* - commentId: Overload:OpenTK.Core.Platform.IOpenGLComponent.SwapBuffers - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_SwapBuffers_OpenTK_Core_Platform_OpenGLContextHandle_ - name: SwapBuffers - nameWithType: IOpenGLComponent.SwapBuffers - fullName: OpenTK.Core.Platform.IOpenGLComponent.SwapBuffers diff --git a/api/OpenTK.Core.Platform.IPalComponent.yml b/api/OpenTK.Core.Platform.IPalComponent.yml deleted file mode 100644 index 6373f358..00000000 --- a/api/OpenTK.Core.Platform.IPalComponent.yml +++ /dev/null @@ -1,283 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: OpenTK.Core.Platform.IPalComponent - commentId: T:OpenTK.Core.Platform.IPalComponent - id: IPalComponent - parent: OpenTK.Core.Platform - children: - - OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - - OpenTK.Core.Platform.IPalComponent.Logger - - OpenTK.Core.Platform.IPalComponent.Name - - OpenTK.Core.Platform.IPalComponent.Provides - langs: - - csharp - - vb - name: IPalComponent - nameWithType: IPalComponent - fullName: OpenTK.Core.Platform.IPalComponent - type: Interface - source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/IPalComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: IPalComponent - path: opentk/src/OpenTK.Core/Platform/Interfaces/IPalComponent.cs - startLine: 34 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Common interface for all platform abstraction layer components. - example: [] - syntax: - content: public interface IPalComponent - content.vb: Public Interface IPalComponent -- uid: OpenTK.Core.Platform.IPalComponent.Name - commentId: P:OpenTK.Core.Platform.IPalComponent.Name - id: Name - parent: OpenTK.Core.Platform.IPalComponent - langs: - - csharp - - vb - name: Name - nameWithType: IPalComponent.Name - fullName: OpenTK.Core.Platform.IPalComponent.Name - type: Property - source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/IPalComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Name - path: opentk/src/OpenTK.Core/Platform/Interfaces/IPalComponent.cs - startLine: 39 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Name of the abstraction layer component. - example: [] - syntax: - content: string Name { get; } - parameters: [] - return: - type: System.String - content.vb: ReadOnly Property Name As String - overload: OpenTK.Core.Platform.IPalComponent.Name* -- uid: OpenTK.Core.Platform.IPalComponent.Provides - commentId: P:OpenTK.Core.Platform.IPalComponent.Provides - id: Provides - parent: OpenTK.Core.Platform.IPalComponent - langs: - - csharp - - vb - name: Provides - nameWithType: IPalComponent.Provides - fullName: OpenTK.Core.Platform.IPalComponent.Provides - type: Property - source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/IPalComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Provides - path: opentk/src/OpenTK.Core/Platform/Interfaces/IPalComponent.cs - startLine: 44 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Specifies which PAL components this object provides. - example: [] - syntax: - content: PalComponents Provides { get; } - parameters: [] - return: - type: OpenTK.Core.Platform.PalComponents - content.vb: ReadOnly Property Provides As PalComponents - overload: OpenTK.Core.Platform.IPalComponent.Provides* -- uid: OpenTK.Core.Platform.IPalComponent.Logger - commentId: P:OpenTK.Core.Platform.IPalComponent.Logger - id: Logger - parent: OpenTK.Core.Platform.IPalComponent - langs: - - csharp - - vb - name: Logger - nameWithType: IPalComponent.Logger - fullName: OpenTK.Core.Platform.IPalComponent.Logger - type: Property - source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/IPalComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Logger - path: opentk/src/OpenTK.Core/Platform/Interfaces/IPalComponent.cs - startLine: 49 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Provides a logger for this component. - example: [] - syntax: - content: ILogger? Logger { get; set; } - parameters: [] - return: - type: OpenTK.Core.Utility.ILogger - content.vb: Property Logger As ILogger - overload: OpenTK.Core.Platform.IPalComponent.Logger* -- uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - commentId: M:OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - id: Initialize(OpenTK.Core.Platform.ToolkitOptions) - parent: OpenTK.Core.Platform.IPalComponent - langs: - - csharp - - vb - name: Initialize(ToolkitOptions) - nameWithType: IPalComponent.Initialize(ToolkitOptions) - fullName: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - type: Method - source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/IPalComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Initialize - path: opentk/src/OpenTK.Core/Platform/Interfaces/IPalComponent.cs - startLine: 55 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Initialize the component. - example: [] - syntax: - content: void Initialize(ToolkitOptions options) - parameters: - - id: options - type: OpenTK.Core.Platform.ToolkitOptions - description: The options to initialize the component with. - content.vb: Sub Initialize(options As ToolkitOptions) - overload: OpenTK.Core.Platform.IPalComponent.Initialize* -references: -- uid: OpenTK.Core.Platform - commentId: N:OpenTK.Core.Platform - href: OpenTK.html - name: OpenTK.Core.Platform - nameWithType: OpenTK.Core.Platform - fullName: OpenTK.Core.Platform - spec.csharp: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform - name: Platform - href: OpenTK.Core.Platform.html - spec.vb: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform - name: Platform - href: OpenTK.Core.Platform.html -- uid: OpenTK.Core.Platform.IPalComponent.Name* - commentId: Overload:OpenTK.Core.Platform.IPalComponent.Name - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Name - name: Name - nameWithType: IPalComponent.Name - fullName: OpenTK.Core.Platform.IPalComponent.Name -- uid: System.String - commentId: T:System.String - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - name: string - nameWithType: string - fullName: string - nameWithType.vb: String - fullName.vb: String - name.vb: String -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: OpenTK.Core.Platform.IPalComponent.Provides* - commentId: Overload:OpenTK.Core.Platform.IPalComponent.Provides - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Provides - name: Provides - nameWithType: IPalComponent.Provides - fullName: OpenTK.Core.Platform.IPalComponent.Provides -- uid: OpenTK.Core.Platform.PalComponents - commentId: T:OpenTK.Core.Platform.PalComponents - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.PalComponents.html - name: PalComponents - nameWithType: PalComponents - fullName: OpenTK.Core.Platform.PalComponents -- uid: OpenTK.Core.Platform.IPalComponent.Logger* - commentId: Overload:OpenTK.Core.Platform.IPalComponent.Logger - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Logger - name: Logger - nameWithType: IPalComponent.Logger - fullName: OpenTK.Core.Platform.IPalComponent.Logger -- uid: OpenTK.Core.Utility.ILogger - commentId: T:OpenTK.Core.Utility.ILogger - parent: OpenTK.Core.Utility - href: OpenTK.Core.Utility.ILogger.html - name: ILogger - nameWithType: ILogger - fullName: OpenTK.Core.Utility.ILogger -- uid: OpenTK.Core.Utility - commentId: N:OpenTK.Core.Utility - href: OpenTK.html - name: OpenTK.Core.Utility - nameWithType: OpenTK.Core.Utility - fullName: OpenTK.Core.Utility - spec.csharp: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Utility - name: Utility - href: OpenTK.Core.Utility.html - spec.vb: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Utility - name: Utility - href: OpenTK.Core.Utility.html -- uid: OpenTK.Core.Platform.IPalComponent.Initialize* - commentId: Overload:OpenTK.Core.Platform.IPalComponent.Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ - name: Initialize - nameWithType: IPalComponent.Initialize - fullName: OpenTK.Core.Platform.IPalComponent.Initialize -- uid: OpenTK.Core.Platform.ToolkitOptions - commentId: T:OpenTK.Core.Platform.ToolkitOptions - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.ToolkitOptions.html - name: ToolkitOptions - nameWithType: ToolkitOptions - fullName: OpenTK.Core.Platform.ToolkitOptions diff --git a/api/OpenTK.Core.Platform.IShellComponent.yml b/api/OpenTK.Core.Platform.IShellComponent.yml deleted file mode 100644 index 8e694c20..00000000 --- a/api/OpenTK.Core.Platform.IShellComponent.yml +++ /dev/null @@ -1,343 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: OpenTK.Core.Platform.IShellComponent - commentId: T:OpenTK.Core.Platform.IShellComponent - id: IShellComponent - parent: OpenTK.Core.Platform - children: - - OpenTK.Core.Platform.IShellComponent.AllowScreenSaver(System.Boolean) - - OpenTK.Core.Platform.IShellComponent.GetBatteryInfo(OpenTK.Core.Platform.BatteryInfo@) - - OpenTK.Core.Platform.IShellComponent.GetPreferredTheme - - OpenTK.Core.Platform.IShellComponent.GetSystemMemoryInformation - langs: - - csharp - - vb - name: IShellComponent - nameWithType: IShellComponent - fullName: OpenTK.Core.Platform.IShellComponent - type: Interface - source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/IShellComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: IShellComponent - path: opentk/src/OpenTK.Core/Platform/Interfaces/IShellComponent.cs - startLine: 12 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Interface for interacting with operating system features. - example: [] - syntax: - content: 'public interface IShellComponent : IPalComponent' - content.vb: Public Interface IShellComponent Inherits IPalComponent - inheritedMembers: - - OpenTK.Core.Platform.IPalComponent.Name - - OpenTK.Core.Platform.IPalComponent.Provides - - OpenTK.Core.Platform.IPalComponent.Logger - - OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) -- uid: OpenTK.Core.Platform.IShellComponent.AllowScreenSaver(System.Boolean) - commentId: M:OpenTK.Core.Platform.IShellComponent.AllowScreenSaver(System.Boolean) - id: AllowScreenSaver(System.Boolean) - parent: OpenTK.Core.Platform.IShellComponent - langs: - - csharp - - vb - name: AllowScreenSaver(bool) - nameWithType: IShellComponent.AllowScreenSaver(bool) - fullName: OpenTK.Core.Platform.IShellComponent.AllowScreenSaver(bool) - type: Method - source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/IShellComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: AllowScreenSaver - path: opentk/src/OpenTK.Core/Platform/Interfaces/IShellComponent.cs - startLine: 23 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: >- - Sets whether or not a screensaver is allowed to draw on top of the window. - - For games with long cutscenes it would be appropriate to set this to false, - - while tools that act like normal applications should set this to true. - - By default this setting is untouched. - example: [] - syntax: - content: void AllowScreenSaver(bool allow) - parameters: - - id: allow - type: System.Boolean - description: Whether to allow screensavers to appear while the application is running. - content.vb: Sub AllowScreenSaver(allow As Boolean) - overload: OpenTK.Core.Platform.IShellComponent.AllowScreenSaver* - nameWithType.vb: IShellComponent.AllowScreenSaver(Boolean) - fullName.vb: OpenTK.Core.Platform.IShellComponent.AllowScreenSaver(Boolean) - name.vb: AllowScreenSaver(Boolean) -- uid: OpenTK.Core.Platform.IShellComponent.GetBatteryInfo(OpenTK.Core.Platform.BatteryInfo@) - commentId: M:OpenTK.Core.Platform.IShellComponent.GetBatteryInfo(OpenTK.Core.Platform.BatteryInfo@) - id: GetBatteryInfo(OpenTK.Core.Platform.BatteryInfo@) - parent: OpenTK.Core.Platform.IShellComponent - langs: - - csharp - - vb - name: GetBatteryInfo(out BatteryInfo) - nameWithType: IShellComponent.GetBatteryInfo(out BatteryInfo) - fullName: OpenTK.Core.Platform.IShellComponent.GetBatteryInfo(out OpenTK.Core.Platform.BatteryInfo) - type: Method - source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/IShellComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: GetBatteryInfo - path: opentk/src/OpenTK.Core/Platform/Interfaces/IShellComponent.cs - startLine: 31 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Gets the battery status of the computer. - example: [] - syntax: - content: BatteryStatus GetBatteryInfo(out BatteryInfo batteryInfo) - parameters: - - id: batteryInfo - type: OpenTK.Core.Platform.BatteryInfo - description: >- - The battery status of the computer, - this is only filled with values when is returned. - return: - type: OpenTK.Core.Platform.BatteryStatus - description: Whether the computer has a battery or not, or if this function failed. - content.vb: Function GetBatteryInfo(batteryInfo As BatteryInfo) As BatteryStatus - overload: OpenTK.Core.Platform.IShellComponent.GetBatteryInfo* - nameWithType.vb: IShellComponent.GetBatteryInfo(BatteryInfo) - fullName.vb: OpenTK.Core.Platform.IShellComponent.GetBatteryInfo(OpenTK.Core.Platform.BatteryInfo) - name.vb: GetBatteryInfo(BatteryInfo) -- uid: OpenTK.Core.Platform.IShellComponent.GetPreferredTheme - commentId: M:OpenTK.Core.Platform.IShellComponent.GetPreferredTheme - id: GetPreferredTheme - parent: OpenTK.Core.Platform.IShellComponent - langs: - - csharp - - vb - name: GetPreferredTheme() - nameWithType: IShellComponent.GetPreferredTheme() - fullName: OpenTK.Core.Platform.IShellComponent.GetPreferredTheme() - type: Method - source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/IShellComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: GetPreferredTheme - path: opentk/src/OpenTK.Core/Platform/Interfaces/IShellComponent.cs - startLine: 39 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Gets the user preference for application theme. - example: [] - syntax: - content: ThemeInfo GetPreferredTheme() - return: - type: OpenTK.Core.Platform.ThemeInfo - description: The user set preferred theme. - content.vb: Function GetPreferredTheme() As ThemeInfo - overload: OpenTK.Core.Platform.IShellComponent.GetPreferredTheme* -- uid: OpenTK.Core.Platform.IShellComponent.GetSystemMemoryInformation - commentId: M:OpenTK.Core.Platform.IShellComponent.GetSystemMemoryInformation - id: GetSystemMemoryInformation - parent: OpenTK.Core.Platform.IShellComponent - langs: - - csharp - - vb - name: GetSystemMemoryInformation() - nameWithType: IShellComponent.GetSystemMemoryInformation() - fullName: OpenTK.Core.Platform.IShellComponent.GetSystemMemoryInformation() - type: Method - source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/IShellComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: GetSystemMemoryInformation - path: opentk/src/OpenTK.Core/Platform/Interfaces/IShellComponent.cs - startLine: 45 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Gets information about the memory of the device and the current status. - example: [] - syntax: - content: SystemMemoryInfo GetSystemMemoryInformation() - return: - type: OpenTK.Core.Platform.SystemMemoryInfo - description: The memory info. - content.vb: Function GetSystemMemoryInformation() As SystemMemoryInfo - overload: OpenTK.Core.Platform.IShellComponent.GetSystemMemoryInformation* -references: -- uid: OpenTK.Core.Platform - commentId: N:OpenTK.Core.Platform - href: OpenTK.html - name: OpenTK.Core.Platform - nameWithType: OpenTK.Core.Platform - fullName: OpenTK.Core.Platform - spec.csharp: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform - name: Platform - href: OpenTK.Core.Platform.html - spec.vb: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform - name: Platform - href: OpenTK.Core.Platform.html -- uid: OpenTK.Core.Platform.IPalComponent.Name - commentId: P:OpenTK.Core.Platform.IPalComponent.Name - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Name - name: Name - nameWithType: IPalComponent.Name - fullName: OpenTK.Core.Platform.IPalComponent.Name -- uid: OpenTK.Core.Platform.IPalComponent.Provides - commentId: P:OpenTK.Core.Platform.IPalComponent.Provides - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Provides - name: Provides - nameWithType: IPalComponent.Provides - fullName: OpenTK.Core.Platform.IPalComponent.Provides -- uid: OpenTK.Core.Platform.IPalComponent.Logger - commentId: P:OpenTK.Core.Platform.IPalComponent.Logger - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Logger - name: Logger - nameWithType: IPalComponent.Logger - fullName: OpenTK.Core.Platform.IPalComponent.Logger -- uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - commentId: M:OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ - name: Initialize(ToolkitOptions) - nameWithType: IPalComponent.Initialize(ToolkitOptions) - fullName: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - spec.csharp: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ - - name: ( - - uid: OpenTK.Core.Platform.ToolkitOptions - name: ToolkitOptions - href: OpenTK.Core.Platform.ToolkitOptions.html - - name: ) - spec.vb: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ - - name: ( - - uid: OpenTK.Core.Platform.ToolkitOptions - name: ToolkitOptions - href: OpenTK.Core.Platform.ToolkitOptions.html - - name: ) -- uid: OpenTK.Core.Platform.IPalComponent - commentId: T:OpenTK.Core.Platform.IPalComponent - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.IPalComponent.html - name: IPalComponent - nameWithType: IPalComponent - fullName: OpenTK.Core.Platform.IPalComponent -- uid: OpenTK.Core.Platform.IShellComponent.AllowScreenSaver* - commentId: Overload:OpenTK.Core.Platform.IShellComponent.AllowScreenSaver - href: OpenTK.Core.Platform.IShellComponent.html#OpenTK_Core_Platform_IShellComponent_AllowScreenSaver_System_Boolean_ - name: AllowScreenSaver - nameWithType: IShellComponent.AllowScreenSaver - fullName: OpenTK.Core.Platform.IShellComponent.AllowScreenSaver -- uid: System.Boolean - commentId: T:System.Boolean - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - name: bool - nameWithType: bool - fullName: bool - nameWithType.vb: Boolean - fullName.vb: Boolean - name.vb: Boolean -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: OpenTK.Core.Platform.BatteryStatus.HasSystemBattery - commentId: F:OpenTK.Core.Platform.BatteryStatus.HasSystemBattery - href: OpenTK.Core.Platform.BatteryStatus.html#OpenTK_Core_Platform_BatteryStatus_HasSystemBattery - name: HasSystemBattery - nameWithType: BatteryStatus.HasSystemBattery - fullName: OpenTK.Core.Platform.BatteryStatus.HasSystemBattery -- uid: OpenTK.Core.Platform.IShellComponent.GetBatteryInfo* - commentId: Overload:OpenTK.Core.Platform.IShellComponent.GetBatteryInfo - href: OpenTK.Core.Platform.IShellComponent.html#OpenTK_Core_Platform_IShellComponent_GetBatteryInfo_OpenTK_Core_Platform_BatteryInfo__ - name: GetBatteryInfo - nameWithType: IShellComponent.GetBatteryInfo - fullName: OpenTK.Core.Platform.IShellComponent.GetBatteryInfo -- uid: OpenTK.Core.Platform.BatteryInfo - commentId: T:OpenTK.Core.Platform.BatteryInfo - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.BatteryInfo.html - name: BatteryInfo - nameWithType: BatteryInfo - fullName: OpenTK.Core.Platform.BatteryInfo -- uid: OpenTK.Core.Platform.BatteryStatus - commentId: T:OpenTK.Core.Platform.BatteryStatus - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.BatteryStatus.html - name: BatteryStatus - nameWithType: BatteryStatus - fullName: OpenTK.Core.Platform.BatteryStatus -- uid: OpenTK.Core.Platform.IShellComponent.GetPreferredTheme* - commentId: Overload:OpenTK.Core.Platform.IShellComponent.GetPreferredTheme - href: OpenTK.Core.Platform.IShellComponent.html#OpenTK_Core_Platform_IShellComponent_GetPreferredTheme - name: GetPreferredTheme - nameWithType: IShellComponent.GetPreferredTheme - fullName: OpenTK.Core.Platform.IShellComponent.GetPreferredTheme -- uid: OpenTK.Core.Platform.ThemeInfo - commentId: T:OpenTK.Core.Platform.ThemeInfo - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.ThemeInfo.html - name: ThemeInfo - nameWithType: ThemeInfo - fullName: OpenTK.Core.Platform.ThemeInfo -- uid: OpenTK.Core.Platform.IShellComponent.GetSystemMemoryInformation* - commentId: Overload:OpenTK.Core.Platform.IShellComponent.GetSystemMemoryInformation - href: OpenTK.Core.Platform.IShellComponent.html#OpenTK_Core_Platform_IShellComponent_GetSystemMemoryInformation - name: GetSystemMemoryInformation - nameWithType: IShellComponent.GetSystemMemoryInformation - fullName: OpenTK.Core.Platform.IShellComponent.GetSystemMemoryInformation -- uid: OpenTK.Core.Platform.SystemMemoryInfo - commentId: T:OpenTK.Core.Platform.SystemMemoryInfo - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.SystemMemoryInfo.html - name: SystemMemoryInfo - nameWithType: SystemMemoryInfo - fullName: OpenTK.Core.Platform.SystemMemoryInfo diff --git a/api/OpenTK.Core.Platform.ISurfaceComponent.yml b/api/OpenTK.Core.Platform.ISurfaceComponent.yml deleted file mode 100644 index 31ae294b..00000000 --- a/api/OpenTK.Core.Platform.ISurfaceComponent.yml +++ /dev/null @@ -1,409 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: OpenTK.Core.Platform.ISurfaceComponent - commentId: T:OpenTK.Core.Platform.ISurfaceComponent - id: ISurfaceComponent - parent: OpenTK.Core.Platform - children: - - OpenTK.Core.Platform.ISurfaceComponent.Create - - OpenTK.Core.Platform.ISurfaceComponent.Destroy(OpenTK.Core.Platform.SurfaceHandle) - - OpenTK.Core.Platform.ISurfaceComponent.GetClientSize(OpenTK.Core.Platform.SurfaceHandle,System.Int32@,System.Int32@) - - OpenTK.Core.Platform.ISurfaceComponent.GetDisplay(OpenTK.Core.Platform.SurfaceHandle) - - OpenTK.Core.Platform.ISurfaceComponent.GetType(OpenTK.Core.Platform.SurfaceHandle) - - OpenTK.Core.Platform.ISurfaceComponent.SetDisplay(OpenTK.Core.Platform.SurfaceHandle,OpenTK.Core.Platform.DisplayHandle) - langs: - - csharp - - vb - name: ISurfaceComponent - nameWithType: ISurfaceComponent - fullName: OpenTK.Core.Platform.ISurfaceComponent - type: Interface - source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/ISurfaceComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: ISurfaceComponent - path: opentk/src/OpenTK.Core/Platform/Interfaces/ISurfaceComponent.cs - startLine: 5 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Interface for drivers which provide the surface component of the platform abstraction layer. - example: [] - syntax: - content: 'public interface ISurfaceComponent : IPalComponent' - content.vb: Public Interface ISurfaceComponent Inherits IPalComponent - inheritedMembers: - - OpenTK.Core.Platform.IPalComponent.Name - - OpenTK.Core.Platform.IPalComponent.Provides - - OpenTK.Core.Platform.IPalComponent.Logger - - OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) -- uid: OpenTK.Core.Platform.ISurfaceComponent.Create - commentId: M:OpenTK.Core.Platform.ISurfaceComponent.Create - id: Create - parent: OpenTK.Core.Platform.ISurfaceComponent - langs: - - csharp - - vb - name: Create() - nameWithType: ISurfaceComponent.Create() - fullName: OpenTK.Core.Platform.ISurfaceComponent.Create() - type: Method - source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/ISurfaceComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Create - path: opentk/src/OpenTK.Core/Platform/Interfaces/ISurfaceComponent.cs - startLine: 11 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Create a surface object. - example: [] - syntax: - content: SurfaceHandle Create() - return: - type: OpenTK.Core.Platform.SurfaceHandle - description: A surface object. - content.vb: Function Create() As SurfaceHandle - overload: OpenTK.Core.Platform.ISurfaceComponent.Create* -- uid: OpenTK.Core.Platform.ISurfaceComponent.Destroy(OpenTK.Core.Platform.SurfaceHandle) - commentId: M:OpenTK.Core.Platform.ISurfaceComponent.Destroy(OpenTK.Core.Platform.SurfaceHandle) - id: Destroy(OpenTK.Core.Platform.SurfaceHandle) - parent: OpenTK.Core.Platform.ISurfaceComponent - langs: - - csharp - - vb - name: Destroy(SurfaceHandle) - nameWithType: ISurfaceComponent.Destroy(SurfaceHandle) - fullName: OpenTK.Core.Platform.ISurfaceComponent.Destroy(OpenTK.Core.Platform.SurfaceHandle) - type: Method - source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/ISurfaceComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Destroy - path: opentk/src/OpenTK.Core/Platform/Interfaces/ISurfaceComponent.cs - startLine: 17 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Destroy a surface object. - example: [] - syntax: - content: void Destroy(SurfaceHandle handle) - parameters: - - id: handle - type: OpenTK.Core.Platform.SurfaceHandle - description: Handle to a surface. - content.vb: Sub Destroy(handle As SurfaceHandle) - overload: OpenTK.Core.Platform.ISurfaceComponent.Destroy* -- uid: OpenTK.Core.Platform.ISurfaceComponent.GetType(OpenTK.Core.Platform.SurfaceHandle) - commentId: M:OpenTK.Core.Platform.ISurfaceComponent.GetType(OpenTK.Core.Platform.SurfaceHandle) - id: GetType(OpenTK.Core.Platform.SurfaceHandle) - parent: OpenTK.Core.Platform.ISurfaceComponent - langs: - - csharp - - vb - name: GetType(SurfaceHandle) - nameWithType: ISurfaceComponent.GetType(SurfaceHandle) - fullName: OpenTK.Core.Platform.ISurfaceComponent.GetType(OpenTK.Core.Platform.SurfaceHandle) - type: Method - source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/ISurfaceComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: GetType - path: opentk/src/OpenTK.Core/Platform/Interfaces/ISurfaceComponent.cs - startLine: 24 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Get surface type. - example: [] - syntax: - content: SurfaceType GetType(SurfaceHandle handle) - parameters: - - id: handle - type: OpenTK.Core.Platform.SurfaceHandle - description: Handle to a surface object. - return: - type: OpenTK.Core.Platform.SurfaceType - description: The surface type. - content.vb: Function [GetType](handle As SurfaceHandle) As SurfaceType - overload: OpenTK.Core.Platform.ISurfaceComponent.GetType* -- uid: OpenTK.Core.Platform.ISurfaceComponent.GetDisplay(OpenTK.Core.Platform.SurfaceHandle) - commentId: M:OpenTK.Core.Platform.ISurfaceComponent.GetDisplay(OpenTK.Core.Platform.SurfaceHandle) - id: GetDisplay(OpenTK.Core.Platform.SurfaceHandle) - parent: OpenTK.Core.Platform.ISurfaceComponent - langs: - - csharp - - vb - name: GetDisplay(SurfaceHandle) - nameWithType: ISurfaceComponent.GetDisplay(SurfaceHandle) - fullName: OpenTK.Core.Platform.ISurfaceComponent.GetDisplay(OpenTK.Core.Platform.SurfaceHandle) - type: Method - source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/ISurfaceComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: GetDisplay - path: opentk/src/OpenTK.Core/Platform/Interfaces/ISurfaceComponent.cs - startLine: 31 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Get the display the surface is in. - example: [] - syntax: - content: DisplayHandle GetDisplay(SurfaceHandle handle) - parameters: - - id: handle - type: OpenTK.Core.Platform.SurfaceHandle - description: Handle to a surface. - return: - type: OpenTK.Core.Platform.DisplayHandle - description: Handle to the display the surface is in. - content.vb: Function GetDisplay(handle As SurfaceHandle) As DisplayHandle - overload: OpenTK.Core.Platform.ISurfaceComponent.GetDisplay* -- uid: OpenTK.Core.Platform.ISurfaceComponent.SetDisplay(OpenTK.Core.Platform.SurfaceHandle,OpenTK.Core.Platform.DisplayHandle) - commentId: M:OpenTK.Core.Platform.ISurfaceComponent.SetDisplay(OpenTK.Core.Platform.SurfaceHandle,OpenTK.Core.Platform.DisplayHandle) - id: SetDisplay(OpenTK.Core.Platform.SurfaceHandle,OpenTK.Core.Platform.DisplayHandle) - parent: OpenTK.Core.Platform.ISurfaceComponent - langs: - - csharp - - vb - name: SetDisplay(SurfaceHandle, DisplayHandle) - nameWithType: ISurfaceComponent.SetDisplay(SurfaceHandle, DisplayHandle) - fullName: OpenTK.Core.Platform.ISurfaceComponent.SetDisplay(OpenTK.Core.Platform.SurfaceHandle, OpenTK.Core.Platform.DisplayHandle) - type: Method - source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/ISurfaceComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: SetDisplay - path: opentk/src/OpenTK.Core/Platform/Interfaces/ISurfaceComponent.cs - startLine: 38 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Set the display the surface is in. - example: [] - syntax: - content: void SetDisplay(SurfaceHandle handle, DisplayHandle display) - parameters: - - id: handle - type: OpenTK.Core.Platform.SurfaceHandle - description: Handle to a surface. - - id: display - type: OpenTK.Core.Platform.DisplayHandle - description: Handle to the display to set the surface to. - content.vb: Sub SetDisplay(handle As SurfaceHandle, display As DisplayHandle) - overload: OpenTK.Core.Platform.ISurfaceComponent.SetDisplay* -- uid: OpenTK.Core.Platform.ISurfaceComponent.GetClientSize(OpenTK.Core.Platform.SurfaceHandle,System.Int32@,System.Int32@) - commentId: M:OpenTK.Core.Platform.ISurfaceComponent.GetClientSize(OpenTK.Core.Platform.SurfaceHandle,System.Int32@,System.Int32@) - id: GetClientSize(OpenTK.Core.Platform.SurfaceHandle,System.Int32@,System.Int32@) - parent: OpenTK.Core.Platform.ISurfaceComponent - langs: - - csharp - - vb - name: GetClientSize(SurfaceHandle, out int, out int) - nameWithType: ISurfaceComponent.GetClientSize(SurfaceHandle, out int, out int) - fullName: OpenTK.Core.Platform.ISurfaceComponent.GetClientSize(OpenTK.Core.Platform.SurfaceHandle, out int, out int) - type: Method - source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/ISurfaceComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: GetClientSize - path: opentk/src/OpenTK.Core/Platform/Interfaces/ISurfaceComponent.cs - startLine: 46 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Get the client size of the surface. - example: [] - syntax: - content: void GetClientSize(SurfaceHandle handle, out int width, out int height) - parameters: - - id: handle - type: OpenTK.Core.Platform.SurfaceHandle - description: Handle to a surface. - - id: width - type: System.Int32 - description: Width of the surface. - - id: height - type: System.Int32 - description: Height of the surface. - content.vb: Sub GetClientSize(handle As SurfaceHandle, width As Integer, height As Integer) - overload: OpenTK.Core.Platform.ISurfaceComponent.GetClientSize* - nameWithType.vb: ISurfaceComponent.GetClientSize(SurfaceHandle, Integer, Integer) - fullName.vb: OpenTK.Core.Platform.ISurfaceComponent.GetClientSize(OpenTK.Core.Platform.SurfaceHandle, Integer, Integer) - name.vb: GetClientSize(SurfaceHandle, Integer, Integer) -references: -- uid: OpenTK.Core.Platform - commentId: N:OpenTK.Core.Platform - href: OpenTK.html - name: OpenTK.Core.Platform - nameWithType: OpenTK.Core.Platform - fullName: OpenTK.Core.Platform - spec.csharp: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform - name: Platform - href: OpenTK.Core.Platform.html - spec.vb: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform - name: Platform - href: OpenTK.Core.Platform.html -- uid: OpenTK.Core.Platform.IPalComponent.Name - commentId: P:OpenTK.Core.Platform.IPalComponent.Name - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Name - name: Name - nameWithType: IPalComponent.Name - fullName: OpenTK.Core.Platform.IPalComponent.Name -- uid: OpenTK.Core.Platform.IPalComponent.Provides - commentId: P:OpenTK.Core.Platform.IPalComponent.Provides - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Provides - name: Provides - nameWithType: IPalComponent.Provides - fullName: OpenTK.Core.Platform.IPalComponent.Provides -- uid: OpenTK.Core.Platform.IPalComponent.Logger - commentId: P:OpenTK.Core.Platform.IPalComponent.Logger - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Logger - name: Logger - nameWithType: IPalComponent.Logger - fullName: OpenTK.Core.Platform.IPalComponent.Logger -- uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - commentId: M:OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ - name: Initialize(ToolkitOptions) - nameWithType: IPalComponent.Initialize(ToolkitOptions) - fullName: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - spec.csharp: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ - - name: ( - - uid: OpenTK.Core.Platform.ToolkitOptions - name: ToolkitOptions - href: OpenTK.Core.Platform.ToolkitOptions.html - - name: ) - spec.vb: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ - - name: ( - - uid: OpenTK.Core.Platform.ToolkitOptions - name: ToolkitOptions - href: OpenTK.Core.Platform.ToolkitOptions.html - - name: ) -- uid: OpenTK.Core.Platform.IPalComponent - commentId: T:OpenTK.Core.Platform.IPalComponent - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.IPalComponent.html - name: IPalComponent - nameWithType: IPalComponent - fullName: OpenTK.Core.Platform.IPalComponent -- uid: OpenTK.Core.Platform.ISurfaceComponent.Create* - commentId: Overload:OpenTK.Core.Platform.ISurfaceComponent.Create - href: OpenTK.Core.Platform.ISurfaceComponent.html#OpenTK_Core_Platform_ISurfaceComponent_Create - name: Create - nameWithType: ISurfaceComponent.Create - fullName: OpenTK.Core.Platform.ISurfaceComponent.Create -- uid: OpenTK.Core.Platform.SurfaceHandle - commentId: T:OpenTK.Core.Platform.SurfaceHandle - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.SurfaceHandle.html - name: SurfaceHandle - nameWithType: SurfaceHandle - fullName: OpenTK.Core.Platform.SurfaceHandle -- uid: OpenTK.Core.Platform.ISurfaceComponent.Destroy* - commentId: Overload:OpenTK.Core.Platform.ISurfaceComponent.Destroy - href: OpenTK.Core.Platform.ISurfaceComponent.html#OpenTK_Core_Platform_ISurfaceComponent_Destroy_OpenTK_Core_Platform_SurfaceHandle_ - name: Destroy - nameWithType: ISurfaceComponent.Destroy - fullName: OpenTK.Core.Platform.ISurfaceComponent.Destroy -- uid: OpenTK.Core.Platform.ISurfaceComponent.GetType* - commentId: Overload:OpenTK.Core.Platform.ISurfaceComponent.GetType - href: OpenTK.Core.Platform.ISurfaceComponent.html#OpenTK_Core_Platform_ISurfaceComponent_GetType_OpenTK_Core_Platform_SurfaceHandle_ - name: GetType - nameWithType: ISurfaceComponent.GetType - fullName: OpenTK.Core.Platform.ISurfaceComponent.GetType -- uid: OpenTK.Core.Platform.SurfaceType - commentId: T:OpenTK.Core.Platform.SurfaceType - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.SurfaceType.html - name: SurfaceType - nameWithType: SurfaceType - fullName: OpenTK.Core.Platform.SurfaceType -- uid: OpenTK.Core.Platform.ISurfaceComponent.GetDisplay* - commentId: Overload:OpenTK.Core.Platform.ISurfaceComponent.GetDisplay - href: OpenTK.Core.Platform.ISurfaceComponent.html#OpenTK_Core_Platform_ISurfaceComponent_GetDisplay_OpenTK_Core_Platform_SurfaceHandle_ - name: GetDisplay - nameWithType: ISurfaceComponent.GetDisplay - fullName: OpenTK.Core.Platform.ISurfaceComponent.GetDisplay -- uid: OpenTK.Core.Platform.DisplayHandle - commentId: T:OpenTK.Core.Platform.DisplayHandle - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.DisplayHandle.html - name: DisplayHandle - nameWithType: DisplayHandle - fullName: OpenTK.Core.Platform.DisplayHandle -- uid: OpenTK.Core.Platform.ISurfaceComponent.SetDisplay* - commentId: Overload:OpenTK.Core.Platform.ISurfaceComponent.SetDisplay - href: OpenTK.Core.Platform.ISurfaceComponent.html#OpenTK_Core_Platform_ISurfaceComponent_SetDisplay_OpenTK_Core_Platform_SurfaceHandle_OpenTK_Core_Platform_DisplayHandle_ - name: SetDisplay - nameWithType: ISurfaceComponent.SetDisplay - fullName: OpenTK.Core.Platform.ISurfaceComponent.SetDisplay -- uid: OpenTK.Core.Platform.ISurfaceComponent.GetClientSize* - commentId: Overload:OpenTK.Core.Platform.ISurfaceComponent.GetClientSize - href: OpenTK.Core.Platform.ISurfaceComponent.html#OpenTK_Core_Platform_ISurfaceComponent_GetClientSize_OpenTK_Core_Platform_SurfaceHandle_System_Int32__System_Int32__ - name: GetClientSize - nameWithType: ISurfaceComponent.GetClientSize - fullName: OpenTK.Core.Platform.ISurfaceComponent.GetClientSize -- uid: System.Int32 - commentId: T:System.Int32 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - name: int - nameWithType: int - fullName: int - nameWithType.vb: Integer - fullName.vb: Integer - name.vb: Integer -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System diff --git a/api/OpenTK.Core.Platform.IWindowComponent.yml b/api/OpenTK.Core.Platform.IWindowComponent.yml deleted file mode 100644 index f45859e9..00000000 --- a/api/OpenTK.Core.Platform.IWindowComponent.yml +++ /dev/null @@ -1,3172 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: OpenTK.Core.Platform.IWindowComponent - commentId: T:OpenTK.Core.Platform.IWindowComponent - id: IWindowComponent - parent: OpenTK.Core.Platform - children: - - OpenTK.Core.Platform.IWindowComponent.CanCaptureCursor - - OpenTK.Core.Platform.IWindowComponent.CanGetDisplay - - OpenTK.Core.Platform.IWindowComponent.CanSetCursor - - OpenTK.Core.Platform.IWindowComponent.CanSetIcon - - OpenTK.Core.Platform.IWindowComponent.ClientToScreen(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) - - OpenTK.Core.Platform.IWindowComponent.Create(OpenTK.Core.Platform.GraphicsApiHints) - - OpenTK.Core.Platform.IWindowComponent.Destroy(OpenTK.Core.Platform.WindowHandle) - - OpenTK.Core.Platform.IWindowComponent.FocusWindow(OpenTK.Core.Platform.WindowHandle) - - OpenTK.Core.Platform.IWindowComponent.GetBorderStyle(OpenTK.Core.Platform.WindowHandle) - - OpenTK.Core.Platform.IWindowComponent.GetBounds(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) - - OpenTK.Core.Platform.IWindowComponent.GetClientBounds(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) - - OpenTK.Core.Platform.IWindowComponent.GetClientPosition(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) - - OpenTK.Core.Platform.IWindowComponent.GetClientSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) - - OpenTK.Core.Platform.IWindowComponent.GetCursorCaptureMode(OpenTK.Core.Platform.WindowHandle) - - OpenTK.Core.Platform.IWindowComponent.GetDisplay(OpenTK.Core.Platform.WindowHandle) - - OpenTK.Core.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) - - OpenTK.Core.Platform.IWindowComponent.GetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle@) - - OpenTK.Core.Platform.IWindowComponent.GetIcon(OpenTK.Core.Platform.WindowHandle) - - OpenTK.Core.Platform.IWindowComponent.GetMaxClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) - - OpenTK.Core.Platform.IWindowComponent.GetMinClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) - - OpenTK.Core.Platform.IWindowComponent.GetMode(OpenTK.Core.Platform.WindowHandle) - - OpenTK.Core.Platform.IWindowComponent.GetPosition(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) - - OpenTK.Core.Platform.IWindowComponent.GetScaleFactor(OpenTK.Core.Platform.WindowHandle,System.Single@,System.Single@) - - OpenTK.Core.Platform.IWindowComponent.GetSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) - - OpenTK.Core.Platform.IWindowComponent.GetTitle(OpenTK.Core.Platform.WindowHandle) - - OpenTK.Core.Platform.IWindowComponent.IsAlwaysOnTop(OpenTK.Core.Platform.WindowHandle) - - OpenTK.Core.Platform.IWindowComponent.IsFocused(OpenTK.Core.Platform.WindowHandle) - - OpenTK.Core.Platform.IWindowComponent.IsWindowDestroyed(OpenTK.Core.Platform.WindowHandle) - - OpenTK.Core.Platform.IWindowComponent.ProcessEvents(System.Boolean) - - OpenTK.Core.Platform.IWindowComponent.RequestAttention(OpenTK.Core.Platform.WindowHandle) - - OpenTK.Core.Platform.IWindowComponent.ScreenToClient(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) - - OpenTK.Core.Platform.IWindowComponent.SetAlwaysOnTop(OpenTK.Core.Platform.WindowHandle,System.Boolean) - - OpenTK.Core.Platform.IWindowComponent.SetBorderStyle(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.WindowBorderStyle) - - OpenTK.Core.Platform.IWindowComponent.SetBounds(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) - - OpenTK.Core.Platform.IWindowComponent.SetClientBounds(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) - - OpenTK.Core.Platform.IWindowComponent.SetClientPosition(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) - - OpenTK.Core.Platform.IWindowComponent.SetClientSize(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) - - OpenTK.Core.Platform.IWindowComponent.SetCursor(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.CursorHandle) - - OpenTK.Core.Platform.IWindowComponent.SetCursorCaptureMode(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.CursorCaptureMode) - - OpenTK.Core.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle) - - OpenTK.Core.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle,OpenTK.Core.Platform.VideoMode) - - OpenTK.Core.Platform.IWindowComponent.SetHitTestCallback(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.HitTest) - - OpenTK.Core.Platform.IWindowComponent.SetIcon(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.IconHandle) - - OpenTK.Core.Platform.IWindowComponent.SetMaxClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) - - OpenTK.Core.Platform.IWindowComponent.SetMinClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) - - OpenTK.Core.Platform.IWindowComponent.SetMode(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.WindowMode) - - OpenTK.Core.Platform.IWindowComponent.SetPosition(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) - - OpenTK.Core.Platform.IWindowComponent.SetSize(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) - - OpenTK.Core.Platform.IWindowComponent.SetTitle(OpenTK.Core.Platform.WindowHandle,System.String) - - OpenTK.Core.Platform.IWindowComponent.SupportedEvents - - OpenTK.Core.Platform.IWindowComponent.SupportedModes - - OpenTK.Core.Platform.IWindowComponent.SupportedStyles - langs: - - csharp - - vb - name: IWindowComponent - nameWithType: IWindowComponent - fullName: OpenTK.Core.Platform.IWindowComponent - type: Interface - source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/IWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: IWindowComponent - path: opentk/src/OpenTK.Core/Platform/Interfaces/IWindowComponent.cs - startLine: 24 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Interface for abstraction layer drivers which implement the window component. - example: [] - syntax: - content: 'public interface IWindowComponent : IPalComponent' - content.vb: Public Interface IWindowComponent Inherits IPalComponent - inheritedMembers: - - OpenTK.Core.Platform.IPalComponent.Name - - OpenTK.Core.Platform.IPalComponent.Provides - - OpenTK.Core.Platform.IPalComponent.Logger - - OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) -- uid: OpenTK.Core.Platform.IWindowComponent.CanSetIcon - commentId: P:OpenTK.Core.Platform.IWindowComponent.CanSetIcon - id: CanSetIcon - parent: OpenTK.Core.Platform.IWindowComponent - langs: - - csharp - - vb - name: CanSetIcon - nameWithType: IWindowComponent.CanSetIcon - fullName: OpenTK.Core.Platform.IWindowComponent.CanSetIcon - type: Property - source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/IWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: CanSetIcon - path: opentk/src/OpenTK.Core/Platform/Interfaces/IWindowComponent.cs - startLine: 31 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: True when the driver supports setting the window icon. - example: [] - syntax: - content: bool CanSetIcon { get; } - parameters: [] - return: - type: System.Boolean - content.vb: ReadOnly Property CanSetIcon As Boolean - overload: OpenTK.Core.Platform.IWindowComponent.CanSetIcon* -- uid: OpenTK.Core.Platform.IWindowComponent.CanGetDisplay - commentId: P:OpenTK.Core.Platform.IWindowComponent.CanGetDisplay - id: CanGetDisplay - parent: OpenTK.Core.Platform.IWindowComponent - langs: - - csharp - - vb - name: CanGetDisplay - nameWithType: IWindowComponent.CanGetDisplay - fullName: OpenTK.Core.Platform.IWindowComponent.CanGetDisplay - type: Property - source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/IWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: CanGetDisplay - path: opentk/src/OpenTK.Core/Platform/Interfaces/IWindowComponent.cs - startLine: 36 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: True when the driver can provide the display the window is in. - example: [] - syntax: - content: bool CanGetDisplay { get; } - parameters: [] - return: - type: System.Boolean - content.vb: ReadOnly Property CanGetDisplay As Boolean - overload: OpenTK.Core.Platform.IWindowComponent.CanGetDisplay* -- uid: OpenTK.Core.Platform.IWindowComponent.CanSetCursor - commentId: P:OpenTK.Core.Platform.IWindowComponent.CanSetCursor - id: CanSetCursor - parent: OpenTK.Core.Platform.IWindowComponent - langs: - - csharp - - vb - name: CanSetCursor - nameWithType: IWindowComponent.CanSetCursor - fullName: OpenTK.Core.Platform.IWindowComponent.CanSetCursor - type: Property - source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/IWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: CanSetCursor - path: opentk/src/OpenTK.Core/Platform/Interfaces/IWindowComponent.cs - startLine: 41 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: True when the driver supports setting the cursor of the window. - example: [] - syntax: - content: bool CanSetCursor { get; } - parameters: [] - return: - type: System.Boolean - content.vb: ReadOnly Property CanSetCursor As Boolean - overload: OpenTK.Core.Platform.IWindowComponent.CanSetCursor* -- uid: OpenTK.Core.Platform.IWindowComponent.CanCaptureCursor - commentId: P:OpenTK.Core.Platform.IWindowComponent.CanCaptureCursor - id: CanCaptureCursor - parent: OpenTK.Core.Platform.IWindowComponent - langs: - - csharp - - vb - name: CanCaptureCursor - nameWithType: IWindowComponent.CanCaptureCursor - fullName: OpenTK.Core.Platform.IWindowComponent.CanCaptureCursor - type: Property - source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/IWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: CanCaptureCursor - path: opentk/src/OpenTK.Core/Platform/Interfaces/IWindowComponent.cs - startLine: 46 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: True when the driver supports capturing the cursor in a window. - example: [] - syntax: - content: bool CanCaptureCursor { get; } - parameters: [] - return: - type: System.Boolean - content.vb: ReadOnly Property CanCaptureCursor As Boolean - overload: OpenTK.Core.Platform.IWindowComponent.CanCaptureCursor* -- uid: OpenTK.Core.Platform.IWindowComponent.SupportedEvents - commentId: P:OpenTK.Core.Platform.IWindowComponent.SupportedEvents - id: SupportedEvents - parent: OpenTK.Core.Platform.IWindowComponent - langs: - - csharp - - vb - name: SupportedEvents - nameWithType: IWindowComponent.SupportedEvents - fullName: OpenTK.Core.Platform.IWindowComponent.SupportedEvents - type: Property - source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/IWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: SupportedEvents - path: opentk/src/OpenTK.Core/Platform/Interfaces/IWindowComponent.cs - startLine: 51 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Read-only list of event types the driver supports. - example: [] - syntax: - content: IReadOnlyList SupportedEvents { get; } - parameters: [] - return: - type: System.Collections.Generic.IReadOnlyList{OpenTK.Core.Platform.PlatformEventType} - content.vb: ReadOnly Property SupportedEvents As IReadOnlyList(Of PlatformEventType) - overload: OpenTK.Core.Platform.IWindowComponent.SupportedEvents* -- uid: OpenTK.Core.Platform.IWindowComponent.SupportedStyles - commentId: P:OpenTK.Core.Platform.IWindowComponent.SupportedStyles - id: SupportedStyles - parent: OpenTK.Core.Platform.IWindowComponent - langs: - - csharp - - vb - name: SupportedStyles - nameWithType: IWindowComponent.SupportedStyles - fullName: OpenTK.Core.Platform.IWindowComponent.SupportedStyles - type: Property - source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/IWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: SupportedStyles - path: opentk/src/OpenTK.Core/Platform/Interfaces/IWindowComponent.cs - startLine: 56 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Read-only list of window styles the driver supports. - example: [] - syntax: - content: IReadOnlyList SupportedStyles { get; } - parameters: [] - return: - type: System.Collections.Generic.IReadOnlyList{OpenTK.Core.Platform.WindowBorderStyle} - content.vb: ReadOnly Property SupportedStyles As IReadOnlyList(Of WindowBorderStyle) - overload: OpenTK.Core.Platform.IWindowComponent.SupportedStyles* -- uid: OpenTK.Core.Platform.IWindowComponent.SupportedModes - commentId: P:OpenTK.Core.Platform.IWindowComponent.SupportedModes - id: SupportedModes - parent: OpenTK.Core.Platform.IWindowComponent - langs: - - csharp - - vb - name: SupportedModes - nameWithType: IWindowComponent.SupportedModes - fullName: OpenTK.Core.Platform.IWindowComponent.SupportedModes - type: Property - source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/IWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: SupportedModes - path: opentk/src/OpenTK.Core/Platform/Interfaces/IWindowComponent.cs - startLine: 61 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Read-only list of window modes the driver supports. - example: [] - syntax: - content: IReadOnlyList SupportedModes { get; } - parameters: [] - return: - type: System.Collections.Generic.IReadOnlyList{OpenTK.Core.Platform.WindowMode} - content.vb: ReadOnly Property SupportedModes As IReadOnlyList(Of WindowMode) - overload: OpenTK.Core.Platform.IWindowComponent.SupportedModes* -- uid: OpenTK.Core.Platform.IWindowComponent.ProcessEvents(System.Boolean) - commentId: M:OpenTK.Core.Platform.IWindowComponent.ProcessEvents(System.Boolean) - id: ProcessEvents(System.Boolean) - parent: OpenTK.Core.Platform.IWindowComponent - langs: - - csharp - - vb - name: ProcessEvents(bool) - nameWithType: IWindowComponent.ProcessEvents(bool) - fullName: OpenTK.Core.Platform.IWindowComponent.ProcessEvents(bool) - type: Method - source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/IWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: ProcessEvents - path: opentk/src/OpenTK.Core/Platform/Interfaces/IWindowComponent.cs - startLine: 67 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Processes platform events and sends them to the . - example: [] - syntax: - content: void ProcessEvents(bool waitForEvents = false) - parameters: - - id: waitForEvents - type: System.Boolean - description: Specifies if this function should wait for events or return immediately if there are no events. - content.vb: Sub ProcessEvents(waitForEvents As Boolean = False) - overload: OpenTK.Core.Platform.IWindowComponent.ProcessEvents* - nameWithType.vb: IWindowComponent.ProcessEvents(Boolean) - fullName.vb: OpenTK.Core.Platform.IWindowComponent.ProcessEvents(Boolean) - name.vb: ProcessEvents(Boolean) -- uid: OpenTK.Core.Platform.IWindowComponent.Create(OpenTK.Core.Platform.GraphicsApiHints) - commentId: M:OpenTK.Core.Platform.IWindowComponent.Create(OpenTK.Core.Platform.GraphicsApiHints) - id: Create(OpenTK.Core.Platform.GraphicsApiHints) - parent: OpenTK.Core.Platform.IWindowComponent - langs: - - csharp - - vb - name: Create(GraphicsApiHints) - nameWithType: IWindowComponent.Create(GraphicsApiHints) - fullName: OpenTK.Core.Platform.IWindowComponent.Create(OpenTK.Core.Platform.GraphicsApiHints) - type: Method - source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/IWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Create - path: opentk/src/OpenTK.Core/Platform/Interfaces/IWindowComponent.cs - startLine: 76 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Create a window object. - example: [] - syntax: - content: WindowHandle Create(GraphicsApiHints hints) - parameters: - - id: hints - type: OpenTK.Core.Platform.GraphicsApiHints - description: Graphics API hints to be passed to the operating system. - return: - type: OpenTK.Core.Platform.WindowHandle - description: Handle to the new window object. - content.vb: Function Create(hints As GraphicsApiHints) As WindowHandle - overload: OpenTK.Core.Platform.IWindowComponent.Create* -- uid: OpenTK.Core.Platform.IWindowComponent.Destroy(OpenTK.Core.Platform.WindowHandle) - commentId: M:OpenTK.Core.Platform.IWindowComponent.Destroy(OpenTK.Core.Platform.WindowHandle) - id: Destroy(OpenTK.Core.Platform.WindowHandle) - parent: OpenTK.Core.Platform.IWindowComponent - langs: - - csharp - - vb - name: Destroy(WindowHandle) - nameWithType: IWindowComponent.Destroy(WindowHandle) - fullName: OpenTK.Core.Platform.IWindowComponent.Destroy(OpenTK.Core.Platform.WindowHandle) - type: Method - source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/IWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Destroy - path: opentk/src/OpenTK.Core/Platform/Interfaces/IWindowComponent.cs - startLine: 83 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Destroy a window object. - example: [] - syntax: - content: void Destroy(WindowHandle handle) - parameters: - - id: handle - type: OpenTK.Core.Platform.WindowHandle - description: Handle to a window object. - content.vb: Sub Destroy(handle As WindowHandle) - overload: OpenTK.Core.Platform.IWindowComponent.Destroy* - exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: handle is null. -- uid: OpenTK.Core.Platform.IWindowComponent.IsWindowDestroyed(OpenTK.Core.Platform.WindowHandle) - commentId: M:OpenTK.Core.Platform.IWindowComponent.IsWindowDestroyed(OpenTK.Core.Platform.WindowHandle) - id: IsWindowDestroyed(OpenTK.Core.Platform.WindowHandle) - parent: OpenTK.Core.Platform.IWindowComponent - langs: - - csharp - - vb - name: IsWindowDestroyed(WindowHandle) - nameWithType: IWindowComponent.IsWindowDestroyed(WindowHandle) - fullName: OpenTK.Core.Platform.IWindowComponent.IsWindowDestroyed(OpenTK.Core.Platform.WindowHandle) - type: Method - source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/IWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: IsWindowDestroyed - path: opentk/src/OpenTK.Core/Platform/Interfaces/IWindowComponent.cs - startLine: 90 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Checks if has been called on this handle. - example: [] - syntax: - content: bool IsWindowDestroyed(WindowHandle handle) - parameters: - - id: handle - type: OpenTK.Core.Platform.WindowHandle - description: The window handle to check if it's destroyed or not. - return: - type: System.Boolean - description: If was called with the window handle. - content.vb: Function IsWindowDestroyed(handle As WindowHandle) As Boolean - overload: OpenTK.Core.Platform.IWindowComponent.IsWindowDestroyed* -- uid: OpenTK.Core.Platform.IWindowComponent.GetTitle(OpenTK.Core.Platform.WindowHandle) - commentId: M:OpenTK.Core.Platform.IWindowComponent.GetTitle(OpenTK.Core.Platform.WindowHandle) - id: GetTitle(OpenTK.Core.Platform.WindowHandle) - parent: OpenTK.Core.Platform.IWindowComponent - langs: - - csharp - - vb - name: GetTitle(WindowHandle) - nameWithType: IWindowComponent.GetTitle(WindowHandle) - fullName: OpenTK.Core.Platform.IWindowComponent.GetTitle(OpenTK.Core.Platform.WindowHandle) - type: Method - source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/IWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: GetTitle - path: opentk/src/OpenTK.Core/Platform/Interfaces/IWindowComponent.cs - startLine: 98 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Get the title of a window. - example: [] - syntax: - content: string GetTitle(WindowHandle handle) - parameters: - - id: handle - type: OpenTK.Core.Platform.WindowHandle - description: Handle to a window. - return: - type: System.String - description: The title of the window. - content.vb: Function GetTitle(handle As WindowHandle) As String - overload: OpenTK.Core.Platform.IWindowComponent.GetTitle* - exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: handle is null. -- uid: OpenTK.Core.Platform.IWindowComponent.SetTitle(OpenTK.Core.Platform.WindowHandle,System.String) - commentId: M:OpenTK.Core.Platform.IWindowComponent.SetTitle(OpenTK.Core.Platform.WindowHandle,System.String) - id: SetTitle(OpenTK.Core.Platform.WindowHandle,System.String) - parent: OpenTK.Core.Platform.IWindowComponent - langs: - - csharp - - vb - name: SetTitle(WindowHandle, string) - nameWithType: IWindowComponent.SetTitle(WindowHandle, string) - fullName: OpenTK.Core.Platform.IWindowComponent.SetTitle(OpenTK.Core.Platform.WindowHandle, string) - type: Method - source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/IWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: SetTitle - path: opentk/src/OpenTK.Core/Platform/Interfaces/IWindowComponent.cs - startLine: 108 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Set the title of a window. - example: [] - syntax: - content: void SetTitle(WindowHandle handle, string title) - parameters: - - id: handle - type: OpenTK.Core.Platform.WindowHandle - description: Handle to a window. - - id: title - type: System.String - description: New window title string. - content.vb: Sub SetTitle(handle As WindowHandle, title As String) - overload: OpenTK.Core.Platform.IWindowComponent.SetTitle* - exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: handle or title is null. - nameWithType.vb: IWindowComponent.SetTitle(WindowHandle, String) - fullName.vb: OpenTK.Core.Platform.IWindowComponent.SetTitle(OpenTK.Core.Platform.WindowHandle, String) - name.vb: SetTitle(WindowHandle, String) -- uid: OpenTK.Core.Platform.IWindowComponent.GetIcon(OpenTK.Core.Platform.WindowHandle) - commentId: M:OpenTK.Core.Platform.IWindowComponent.GetIcon(OpenTK.Core.Platform.WindowHandle) - id: GetIcon(OpenTK.Core.Platform.WindowHandle) - parent: OpenTK.Core.Platform.IWindowComponent - langs: - - csharp - - vb - name: GetIcon(WindowHandle) - nameWithType: IWindowComponent.GetIcon(WindowHandle) - fullName: OpenTK.Core.Platform.IWindowComponent.GetIcon(OpenTK.Core.Platform.WindowHandle) - type: Method - source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/IWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: GetIcon - path: opentk/src/OpenTK.Core/Platform/Interfaces/IWindowComponent.cs - startLine: 119 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Get a handle to the window icon object. - example: [] - syntax: - content: IconHandle? GetIcon(WindowHandle handle) - parameters: - - id: handle - type: OpenTK.Core.Platform.WindowHandle - description: Handle to a window. - return: - type: OpenTK.Core.Platform.IconHandle - description: Handle to the windows icon object, or null if none is set. - content.vb: Function GetIcon(handle As WindowHandle) As IconHandle - overload: OpenTK.Core.Platform.IWindowComponent.GetIcon* - exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: handle is null. - - type: OpenTK.Core.Platform.PalNotImplementedException - commentId: T:OpenTK.Core.Platform.PalNotImplementedException - description: Driver does not support getting the window icon. See . -- uid: OpenTK.Core.Platform.IWindowComponent.SetIcon(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.IconHandle) - commentId: M:OpenTK.Core.Platform.IWindowComponent.SetIcon(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.IconHandle) - id: SetIcon(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.IconHandle) - parent: OpenTK.Core.Platform.IWindowComponent - langs: - - csharp - - vb - name: SetIcon(WindowHandle, IconHandle) - nameWithType: IWindowComponent.SetIcon(WindowHandle, IconHandle) - fullName: OpenTK.Core.Platform.IWindowComponent.SetIcon(OpenTK.Core.Platform.WindowHandle, OpenTK.Core.Platform.IconHandle) - type: Method - source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/IWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: SetIcon - path: opentk/src/OpenTK.Core/Platform/Interfaces/IWindowComponent.cs - startLine: 130 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Set window icon object handle. - example: [] - syntax: - content: void SetIcon(WindowHandle handle, IconHandle icon) - parameters: - - id: handle - type: OpenTK.Core.Platform.WindowHandle - description: Handle to a window. - - id: icon - type: OpenTK.Core.Platform.IconHandle - description: Handle to an icon object, or null to revert to default. - content.vb: Sub SetIcon(handle As WindowHandle, icon As IconHandle) - overload: OpenTK.Core.Platform.IWindowComponent.SetIcon* - exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: handle or icon is null. - - type: OpenTK.Core.Platform.PalNotImplementedException - commentId: T:OpenTK.Core.Platform.PalNotImplementedException - description: Driver does not support setting the window icon. See . -- uid: OpenTK.Core.Platform.IWindowComponent.GetPosition(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) - commentId: M:OpenTK.Core.Platform.IWindowComponent.GetPosition(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) - id: GetPosition(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) - parent: OpenTK.Core.Platform.IWindowComponent - langs: - - csharp - - vb - name: GetPosition(WindowHandle, out int, out int) - nameWithType: IWindowComponent.GetPosition(WindowHandle, out int, out int) - fullName: OpenTK.Core.Platform.IWindowComponent.GetPosition(OpenTK.Core.Platform.WindowHandle, out int, out int) - type: Method - source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/IWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: GetPosition - path: opentk/src/OpenTK.Core/Platform/Interfaces/IWindowComponent.cs - startLine: 139 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Get the window position in display coordinates (top left origin). - example: [] - syntax: - content: void GetPosition(WindowHandle handle, out int x, out int y) - parameters: - - id: handle - type: OpenTK.Core.Platform.WindowHandle - description: Handle to a window. - - id: x - type: System.Int32 - description: X coordinate of the window. - - id: y - type: System.Int32 - description: Y coordinate of the window. - content.vb: Sub GetPosition(handle As WindowHandle, x As Integer, y As Integer) - overload: OpenTK.Core.Platform.IWindowComponent.GetPosition* - exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: handle is null. - nameWithType.vb: IWindowComponent.GetPosition(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Core.Platform.IWindowComponent.GetPosition(OpenTK.Core.Platform.WindowHandle, Integer, Integer) - name.vb: GetPosition(WindowHandle, Integer, Integer) -- uid: OpenTK.Core.Platform.IWindowComponent.SetPosition(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) - commentId: M:OpenTK.Core.Platform.IWindowComponent.SetPosition(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) - id: SetPosition(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) - parent: OpenTK.Core.Platform.IWindowComponent - langs: - - csharp - - vb - name: SetPosition(WindowHandle, int, int) - nameWithType: IWindowComponent.SetPosition(WindowHandle, int, int) - fullName: OpenTK.Core.Platform.IWindowComponent.SetPosition(OpenTK.Core.Platform.WindowHandle, int, int) - type: Method - source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/IWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: SetPosition - path: opentk/src/OpenTK.Core/Platform/Interfaces/IWindowComponent.cs - startLine: 148 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Set the window position in display coordinates (top left origin). - example: [] - syntax: - content: void SetPosition(WindowHandle handle, int x, int y) - parameters: - - id: handle - type: OpenTK.Core.Platform.WindowHandle - description: Handle to a window. - - id: x - type: System.Int32 - description: New X coordinate of the window. - - id: y - type: System.Int32 - description: New Y coordinate of the window. - content.vb: Sub SetPosition(handle As WindowHandle, x As Integer, y As Integer) - overload: OpenTK.Core.Platform.IWindowComponent.SetPosition* - exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: handle is null. - nameWithType.vb: IWindowComponent.SetPosition(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Core.Platform.IWindowComponent.SetPosition(OpenTK.Core.Platform.WindowHandle, Integer, Integer) - name.vb: SetPosition(WindowHandle, Integer, Integer) -- uid: OpenTK.Core.Platform.IWindowComponent.GetSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) - commentId: M:OpenTK.Core.Platform.IWindowComponent.GetSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) - id: GetSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) - parent: OpenTK.Core.Platform.IWindowComponent - langs: - - csharp - - vb - name: GetSize(WindowHandle, out int, out int) - nameWithType: IWindowComponent.GetSize(WindowHandle, out int, out int) - fullName: OpenTK.Core.Platform.IWindowComponent.GetSize(OpenTK.Core.Platform.WindowHandle, out int, out int) - type: Method - source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/IWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: GetSize - path: opentk/src/OpenTK.Core/Platform/Interfaces/IWindowComponent.cs - startLine: 157 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Get the size of the window. - example: [] - syntax: - content: void GetSize(WindowHandle handle, out int width, out int height) - parameters: - - id: handle - type: OpenTK.Core.Platform.WindowHandle - description: Handle to a window. - - id: width - type: System.Int32 - description: Width of the window in pixels. - - id: height - type: System.Int32 - description: Height of the window in pixels. - content.vb: Sub GetSize(handle As WindowHandle, width As Integer, height As Integer) - overload: OpenTK.Core.Platform.IWindowComponent.GetSize* - exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: handle is null. - nameWithType.vb: IWindowComponent.GetSize(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Core.Platform.IWindowComponent.GetSize(OpenTK.Core.Platform.WindowHandle, Integer, Integer) - name.vb: GetSize(WindowHandle, Integer, Integer) -- uid: OpenTK.Core.Platform.IWindowComponent.SetSize(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) - commentId: M:OpenTK.Core.Platform.IWindowComponent.SetSize(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) - id: SetSize(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) - parent: OpenTK.Core.Platform.IWindowComponent - langs: - - csharp - - vb - name: SetSize(WindowHandle, int, int) - nameWithType: IWindowComponent.SetSize(WindowHandle, int, int) - fullName: OpenTK.Core.Platform.IWindowComponent.SetSize(OpenTK.Core.Platform.WindowHandle, int, int) - type: Method - source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/IWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: SetSize - path: opentk/src/OpenTK.Core/Platform/Interfaces/IWindowComponent.cs - startLine: 166 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Set the size of the window. - example: [] - syntax: - content: void SetSize(WindowHandle handle, int width, int height) - parameters: - - id: handle - type: OpenTK.Core.Platform.WindowHandle - description: Handle to a window. - - id: width - type: System.Int32 - description: New width of the window in pixels. - - id: height - type: System.Int32 - description: New height of the window in pixels. - content.vb: Sub SetSize(handle As WindowHandle, width As Integer, height As Integer) - overload: OpenTK.Core.Platform.IWindowComponent.SetSize* - exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: handle is null. - nameWithType.vb: IWindowComponent.SetSize(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Core.Platform.IWindowComponent.SetSize(OpenTK.Core.Platform.WindowHandle, Integer, Integer) - name.vb: SetSize(WindowHandle, Integer, Integer) -- uid: OpenTK.Core.Platform.IWindowComponent.GetBounds(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) - commentId: M:OpenTK.Core.Platform.IWindowComponent.GetBounds(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) - id: GetBounds(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) - parent: OpenTK.Core.Platform.IWindowComponent - langs: - - csharp - - vb - name: GetBounds(WindowHandle, out int, out int, out int, out int) - nameWithType: IWindowComponent.GetBounds(WindowHandle, out int, out int, out int, out int) - fullName: OpenTK.Core.Platform.IWindowComponent.GetBounds(OpenTK.Core.Platform.WindowHandle, out int, out int, out int, out int) - type: Method - source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/IWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: GetBounds - path: opentk/src/OpenTK.Core/Platform/Interfaces/IWindowComponent.cs - startLine: 176 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Get the bounds of the window. - example: [] - syntax: - content: void GetBounds(WindowHandle handle, out int x, out int y, out int width, out int height) - parameters: - - id: handle - type: OpenTK.Core.Platform.WindowHandle - description: Handle to a window. - - id: x - type: System.Int32 - description: X coordinate of the window. - - id: y - type: System.Int32 - description: Y coordinate of the window. - - id: width - type: System.Int32 - description: Width of the window in pixels. - - id: height - type: System.Int32 - description: Height of the window in pixels. - content.vb: Sub GetBounds(handle As WindowHandle, x As Integer, y As Integer, width As Integer, height As Integer) - overload: OpenTK.Core.Platform.IWindowComponent.GetBounds* - nameWithType.vb: IWindowComponent.GetBounds(WindowHandle, Integer, Integer, Integer, Integer) - fullName.vb: OpenTK.Core.Platform.IWindowComponent.GetBounds(OpenTK.Core.Platform.WindowHandle, Integer, Integer, Integer, Integer) - name.vb: GetBounds(WindowHandle, Integer, Integer, Integer, Integer) -- uid: OpenTK.Core.Platform.IWindowComponent.SetBounds(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) - commentId: M:OpenTK.Core.Platform.IWindowComponent.SetBounds(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) - id: SetBounds(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) - parent: OpenTK.Core.Platform.IWindowComponent - langs: - - csharp - - vb - name: SetBounds(WindowHandle, int, int, int, int) - nameWithType: IWindowComponent.SetBounds(WindowHandle, int, int, int, int) - fullName: OpenTK.Core.Platform.IWindowComponent.SetBounds(OpenTK.Core.Platform.WindowHandle, int, int, int, int) - type: Method - source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/IWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: SetBounds - path: opentk/src/OpenTK.Core/Platform/Interfaces/IWindowComponent.cs - startLine: 186 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Set the bounds of the window. - example: [] - syntax: - content: void SetBounds(WindowHandle handle, int x, int y, int width, int height) - parameters: - - id: handle - type: OpenTK.Core.Platform.WindowHandle - description: Handle to a window. - - id: x - type: System.Int32 - description: New X coordinate of the window. - - id: y - type: System.Int32 - description: New Y coordinate of the window. - - id: width - type: System.Int32 - description: New width of the window in pixels. - - id: height - type: System.Int32 - description: New height of the window in pixels. - content.vb: Sub SetBounds(handle As WindowHandle, x As Integer, y As Integer, width As Integer, height As Integer) - overload: OpenTK.Core.Platform.IWindowComponent.SetBounds* - nameWithType.vb: IWindowComponent.SetBounds(WindowHandle, Integer, Integer, Integer, Integer) - fullName.vb: OpenTK.Core.Platform.IWindowComponent.SetBounds(OpenTK.Core.Platform.WindowHandle, Integer, Integer, Integer, Integer) - name.vb: SetBounds(WindowHandle, Integer, Integer, Integer, Integer) -- uid: OpenTK.Core.Platform.IWindowComponent.GetClientPosition(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) - commentId: M:OpenTK.Core.Platform.IWindowComponent.GetClientPosition(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) - id: GetClientPosition(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) - parent: OpenTK.Core.Platform.IWindowComponent - langs: - - csharp - - vb - name: GetClientPosition(WindowHandle, out int, out int) - nameWithType: IWindowComponent.GetClientPosition(WindowHandle, out int, out int) - fullName: OpenTK.Core.Platform.IWindowComponent.GetClientPosition(OpenTK.Core.Platform.WindowHandle, out int, out int) - type: Method - source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/IWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: GetClientPosition - path: opentk/src/OpenTK.Core/Platform/Interfaces/IWindowComponent.cs - startLine: 195 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Get the position of the client area (drawing area) of a window. - example: [] - syntax: - content: void GetClientPosition(WindowHandle handle, out int x, out int y) - parameters: - - id: handle - type: OpenTK.Core.Platform.WindowHandle - description: Handle to a window. - - id: x - type: System.Int32 - description: X coordinate of the client area. - - id: y - type: System.Int32 - description: Y coordinate of the client area. - content.vb: Sub GetClientPosition(handle As WindowHandle, x As Integer, y As Integer) - overload: OpenTK.Core.Platform.IWindowComponent.GetClientPosition* - exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: handle is null. - nameWithType.vb: IWindowComponent.GetClientPosition(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Core.Platform.IWindowComponent.GetClientPosition(OpenTK.Core.Platform.WindowHandle, Integer, Integer) - name.vb: GetClientPosition(WindowHandle, Integer, Integer) -- uid: OpenTK.Core.Platform.IWindowComponent.SetClientPosition(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) - commentId: M:OpenTK.Core.Platform.IWindowComponent.SetClientPosition(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) - id: SetClientPosition(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) - parent: OpenTK.Core.Platform.IWindowComponent - langs: - - csharp - - vb - name: SetClientPosition(WindowHandle, int, int) - nameWithType: IWindowComponent.SetClientPosition(WindowHandle, int, int) - fullName: OpenTK.Core.Platform.IWindowComponent.SetClientPosition(OpenTK.Core.Platform.WindowHandle, int, int) - type: Method - source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/IWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: SetClientPosition - path: opentk/src/OpenTK.Core/Platform/Interfaces/IWindowComponent.cs - startLine: 204 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Set the position of the client area (drawing area) of a window. - example: [] - syntax: - content: void SetClientPosition(WindowHandle handle, int x, int y) - parameters: - - id: handle - type: OpenTK.Core.Platform.WindowHandle - description: Handle to a window. - - id: x - type: System.Int32 - description: New X coordinate of the client area. - - id: y - type: System.Int32 - description: New Y coordinate of the client area. - content.vb: Sub SetClientPosition(handle As WindowHandle, x As Integer, y As Integer) - overload: OpenTK.Core.Platform.IWindowComponent.SetClientPosition* - exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: handle is null. - nameWithType.vb: IWindowComponent.SetClientPosition(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Core.Platform.IWindowComponent.SetClientPosition(OpenTK.Core.Platform.WindowHandle, Integer, Integer) - name.vb: SetClientPosition(WindowHandle, Integer, Integer) -- uid: OpenTK.Core.Platform.IWindowComponent.GetClientSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) - commentId: M:OpenTK.Core.Platform.IWindowComponent.GetClientSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) - id: GetClientSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) - parent: OpenTK.Core.Platform.IWindowComponent - langs: - - csharp - - vb - name: GetClientSize(WindowHandle, out int, out int) - nameWithType: IWindowComponent.GetClientSize(WindowHandle, out int, out int) - fullName: OpenTK.Core.Platform.IWindowComponent.GetClientSize(OpenTK.Core.Platform.WindowHandle, out int, out int) - type: Method - source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/IWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: GetClientSize - path: opentk/src/OpenTK.Core/Platform/Interfaces/IWindowComponent.cs - startLine: 213 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Get the size of the client area (drawing area) of a window. - example: [] - syntax: - content: void GetClientSize(WindowHandle handle, out int width, out int height) - parameters: - - id: handle - type: OpenTK.Core.Platform.WindowHandle - description: Handle to a window. - - id: width - type: System.Int32 - description: Width of the client area in pixels. - - id: height - type: System.Int32 - description: Height of the client area in pixels. - content.vb: Sub GetClientSize(handle As WindowHandle, width As Integer, height As Integer) - overload: OpenTK.Core.Platform.IWindowComponent.GetClientSize* - exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: handle is null. - nameWithType.vb: IWindowComponent.GetClientSize(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Core.Platform.IWindowComponent.GetClientSize(OpenTK.Core.Platform.WindowHandle, Integer, Integer) - name.vb: GetClientSize(WindowHandle, Integer, Integer) -- uid: OpenTK.Core.Platform.IWindowComponent.SetClientSize(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) - commentId: M:OpenTK.Core.Platform.IWindowComponent.SetClientSize(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) - id: SetClientSize(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) - parent: OpenTK.Core.Platform.IWindowComponent - langs: - - csharp - - vb - name: SetClientSize(WindowHandle, int, int) - nameWithType: IWindowComponent.SetClientSize(WindowHandle, int, int) - fullName: OpenTK.Core.Platform.IWindowComponent.SetClientSize(OpenTK.Core.Platform.WindowHandle, int, int) - type: Method - source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/IWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: SetClientSize - path: opentk/src/OpenTK.Core/Platform/Interfaces/IWindowComponent.cs - startLine: 222 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Set the size of the client area (drawing area) of a window. - example: [] - syntax: - content: void SetClientSize(WindowHandle handle, int width, int height) - parameters: - - id: handle - type: OpenTK.Core.Platform.WindowHandle - description: Handle to a window. - - id: width - type: System.Int32 - description: New width of the client area in pixels. - - id: height - type: System.Int32 - description: New height of the client area in pixels. - content.vb: Sub SetClientSize(handle As WindowHandle, width As Integer, height As Integer) - overload: OpenTK.Core.Platform.IWindowComponent.SetClientSize* - exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: handle is null. - nameWithType.vb: IWindowComponent.SetClientSize(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Core.Platform.IWindowComponent.SetClientSize(OpenTK.Core.Platform.WindowHandle, Integer, Integer) - name.vb: SetClientSize(WindowHandle, Integer, Integer) -- uid: OpenTK.Core.Platform.IWindowComponent.GetClientBounds(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) - commentId: M:OpenTK.Core.Platform.IWindowComponent.GetClientBounds(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) - id: GetClientBounds(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) - parent: OpenTK.Core.Platform.IWindowComponent - langs: - - csharp - - vb - name: GetClientBounds(WindowHandle, out int, out int, out int, out int) - nameWithType: IWindowComponent.GetClientBounds(WindowHandle, out int, out int, out int, out int) - fullName: OpenTK.Core.Platform.IWindowComponent.GetClientBounds(OpenTK.Core.Platform.WindowHandle, out int, out int, out int, out int) - type: Method - source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/IWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: GetClientBounds - path: opentk/src/OpenTK.Core/Platform/Interfaces/IWindowComponent.cs - startLine: 232 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Get the client area bounds (drawing area) of a window. - example: [] - syntax: - content: void GetClientBounds(WindowHandle handle, out int x, out int y, out int width, out int height) - parameters: - - id: handle - type: OpenTK.Core.Platform.WindowHandle - description: Handle to a window. - - id: x - type: System.Int32 - description: X coordinate of the client area. - - id: y - type: System.Int32 - description: Y coordinate of the client area. - - id: width - type: System.Int32 - description: Width of the client area in pixels. - - id: height - type: System.Int32 - description: Height of the client area in pixels. - content.vb: Sub GetClientBounds(handle As WindowHandle, x As Integer, y As Integer, width As Integer, height As Integer) - overload: OpenTK.Core.Platform.IWindowComponent.GetClientBounds* - nameWithType.vb: IWindowComponent.GetClientBounds(WindowHandle, Integer, Integer, Integer, Integer) - fullName.vb: OpenTK.Core.Platform.IWindowComponent.GetClientBounds(OpenTK.Core.Platform.WindowHandle, Integer, Integer, Integer, Integer) - name.vb: GetClientBounds(WindowHandle, Integer, Integer, Integer, Integer) -- uid: OpenTK.Core.Platform.IWindowComponent.SetClientBounds(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) - commentId: M:OpenTK.Core.Platform.IWindowComponent.SetClientBounds(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) - id: SetClientBounds(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) - parent: OpenTK.Core.Platform.IWindowComponent - langs: - - csharp - - vb - name: SetClientBounds(WindowHandle, int, int, int, int) - nameWithType: IWindowComponent.SetClientBounds(WindowHandle, int, int, int, int) - fullName: OpenTK.Core.Platform.IWindowComponent.SetClientBounds(OpenTK.Core.Platform.WindowHandle, int, int, int, int) - type: Method - source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/IWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: SetClientBounds - path: opentk/src/OpenTK.Core/Platform/Interfaces/IWindowComponent.cs - startLine: 242 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Set the client area bounds (drawing area) of a window. - example: [] - syntax: - content: void SetClientBounds(WindowHandle handle, int x, int y, int width, int height) - parameters: - - id: handle - type: OpenTK.Core.Platform.WindowHandle - description: Handle to a window. - - id: x - type: System.Int32 - description: New X coordinate of the client area. - - id: y - type: System.Int32 - description: New Y coordinate of the client area. - - id: width - type: System.Int32 - description: New width of the client area in pixels. - - id: height - type: System.Int32 - description: New height of the client area in pixels. - content.vb: Sub SetClientBounds(handle As WindowHandle, x As Integer, y As Integer, width As Integer, height As Integer) - overload: OpenTK.Core.Platform.IWindowComponent.SetClientBounds* - nameWithType.vb: IWindowComponent.SetClientBounds(WindowHandle, Integer, Integer, Integer, Integer) - fullName.vb: OpenTK.Core.Platform.IWindowComponent.SetClientBounds(OpenTK.Core.Platform.WindowHandle, Integer, Integer, Integer, Integer) - name.vb: SetClientBounds(WindowHandle, Integer, Integer, Integer, Integer) -- uid: OpenTK.Core.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) - commentId: M:OpenTK.Core.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) - id: GetFramebufferSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) - parent: OpenTK.Core.Platform.IWindowComponent - langs: - - csharp - - vb - name: GetFramebufferSize(WindowHandle, out int, out int) - nameWithType: IWindowComponent.GetFramebufferSize(WindowHandle, out int, out int) - fullName: OpenTK.Core.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Core.Platform.WindowHandle, out int, out int) - type: Method - source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/IWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: GetFramebufferSize - path: opentk/src/OpenTK.Core/Platform/Interfaces/IWindowComponent.cs - startLine: 251 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: >- - Get the size of the window framebuffer in pixels. - - Use this value when calls to graphics APIs that want pixels, e.g. GL.Viewport(). - example: [] - syntax: - content: void GetFramebufferSize(WindowHandle handle, out int width, out int height) - parameters: - - id: handle - type: OpenTK.Core.Platform.WindowHandle - description: Handle to a window. - - id: width - type: System.Int32 - description: Width in pixels of the window framebuffer. - - id: height - type: System.Int32 - description: Height in pixels of the window framebuffer. - content.vb: Sub GetFramebufferSize(handle As WindowHandle, width As Integer, height As Integer) - overload: OpenTK.Core.Platform.IWindowComponent.GetFramebufferSize* - nameWithType.vb: IWindowComponent.GetFramebufferSize(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Core.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Core.Platform.WindowHandle, Integer, Integer) - name.vb: GetFramebufferSize(WindowHandle, Integer, Integer) -- uid: OpenTK.Core.Platform.IWindowComponent.GetMaxClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) - commentId: M:OpenTK.Core.Platform.IWindowComponent.GetMaxClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) - id: GetMaxClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) - parent: OpenTK.Core.Platform.IWindowComponent - langs: - - csharp - - vb - name: GetMaxClientSize(WindowHandle, out int?, out int?) - nameWithType: IWindowComponent.GetMaxClientSize(WindowHandle, out int?, out int?) - fullName: OpenTK.Core.Platform.IWindowComponent.GetMaxClientSize(OpenTK.Core.Platform.WindowHandle, out int?, out int?) - type: Method - source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/IWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: GetMaxClientSize - path: opentk/src/OpenTK.Core/Platform/Interfaces/IWindowComponent.cs - startLine: 259 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Gets the maximum size of the client area. - example: [] - syntax: - content: void GetMaxClientSize(WindowHandle handle, out int? width, out int? height) - parameters: - - id: handle - type: OpenTK.Core.Platform.WindowHandle - description: Handle to a window. - - id: width - type: System.Nullable{System.Int32} - description: The maximum width of the client area of the window, or null if no limit is set. - - id: height - type: System.Nullable{System.Int32} - description: The maximum height of the client area of the window, or null if no limit is set. - content.vb: Sub GetMaxClientSize(handle As WindowHandle, width As Integer?, height As Integer?) - overload: OpenTK.Core.Platform.IWindowComponent.GetMaxClientSize* - nameWithType.vb: IWindowComponent.GetMaxClientSize(WindowHandle, Integer?, Integer?) - fullName.vb: OpenTK.Core.Platform.IWindowComponent.GetMaxClientSize(OpenTK.Core.Platform.WindowHandle, Integer?, Integer?) - name.vb: GetMaxClientSize(WindowHandle, Integer?, Integer?) -- uid: OpenTK.Core.Platform.IWindowComponent.SetMaxClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) - commentId: M:OpenTK.Core.Platform.IWindowComponent.SetMaxClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) - id: SetMaxClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) - parent: OpenTK.Core.Platform.IWindowComponent - langs: - - csharp - - vb - name: SetMaxClientSize(WindowHandle, int?, int?) - nameWithType: IWindowComponent.SetMaxClientSize(WindowHandle, int?, int?) - fullName: OpenTK.Core.Platform.IWindowComponent.SetMaxClientSize(OpenTK.Core.Platform.WindowHandle, int?, int?) - type: Method - source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/IWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: SetMaxClientSize - path: opentk/src/OpenTK.Core/Platform/Interfaces/IWindowComponent.cs - startLine: 267 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Sets the maximum size of the client area. - example: [] - syntax: - content: void SetMaxClientSize(WindowHandle handle, int? width, int? height) - parameters: - - id: handle - type: OpenTK.Core.Platform.WindowHandle - description: Handle to a window. - - id: width - type: System.Nullable{System.Int32} - description: New maximum width of the client area of the window, or null to remove limit. - - id: height - type: System.Nullable{System.Int32} - description: New maximum height of the client area of the window, or null to remove limit. - content.vb: Sub SetMaxClientSize(handle As WindowHandle, width As Integer?, height As Integer?) - overload: OpenTK.Core.Platform.IWindowComponent.SetMaxClientSize* - nameWithType.vb: IWindowComponent.SetMaxClientSize(WindowHandle, Integer?, Integer?) - fullName.vb: OpenTK.Core.Platform.IWindowComponent.SetMaxClientSize(OpenTK.Core.Platform.WindowHandle, Integer?, Integer?) - name.vb: SetMaxClientSize(WindowHandle, Integer?, Integer?) -- uid: OpenTK.Core.Platform.IWindowComponent.GetMinClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) - commentId: M:OpenTK.Core.Platform.IWindowComponent.GetMinClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) - id: GetMinClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) - parent: OpenTK.Core.Platform.IWindowComponent - langs: - - csharp - - vb - name: GetMinClientSize(WindowHandle, out int?, out int?) - nameWithType: IWindowComponent.GetMinClientSize(WindowHandle, out int?, out int?) - fullName: OpenTK.Core.Platform.IWindowComponent.GetMinClientSize(OpenTK.Core.Platform.WindowHandle, out int?, out int?) - type: Method - source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/IWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: GetMinClientSize - path: opentk/src/OpenTK.Core/Platform/Interfaces/IWindowComponent.cs - startLine: 275 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Gets the minimum size of the client area. - example: [] - syntax: - content: void GetMinClientSize(WindowHandle handle, out int? width, out int? height) - parameters: - - id: handle - type: OpenTK.Core.Platform.WindowHandle - description: Handle to a window. - - id: width - type: System.Nullable{System.Int32} - description: The minimum width of the client area of the window, or null if no limit is set. - - id: height - type: System.Nullable{System.Int32} - description: The minimum height of the client area of the window, or null if no limit is set. - content.vb: Sub GetMinClientSize(handle As WindowHandle, width As Integer?, height As Integer?) - overload: OpenTK.Core.Platform.IWindowComponent.GetMinClientSize* - nameWithType.vb: IWindowComponent.GetMinClientSize(WindowHandle, Integer?, Integer?) - fullName.vb: OpenTK.Core.Platform.IWindowComponent.GetMinClientSize(OpenTK.Core.Platform.WindowHandle, Integer?, Integer?) - name.vb: GetMinClientSize(WindowHandle, Integer?, Integer?) -- uid: OpenTK.Core.Platform.IWindowComponent.SetMinClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) - commentId: M:OpenTK.Core.Platform.IWindowComponent.SetMinClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) - id: SetMinClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) - parent: OpenTK.Core.Platform.IWindowComponent - langs: - - csharp - - vb - name: SetMinClientSize(WindowHandle, int?, int?) - nameWithType: IWindowComponent.SetMinClientSize(WindowHandle, int?, int?) - fullName: OpenTK.Core.Platform.IWindowComponent.SetMinClientSize(OpenTK.Core.Platform.WindowHandle, int?, int?) - type: Method - source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/IWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: SetMinClientSize - path: opentk/src/OpenTK.Core/Platform/Interfaces/IWindowComponent.cs - startLine: 283 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Sets the minimum size of the client area. - example: [] - syntax: - content: void SetMinClientSize(WindowHandle handle, int? width, int? height) - parameters: - - id: handle - type: OpenTK.Core.Platform.WindowHandle - description: Handle to a window. - - id: width - type: System.Nullable{System.Int32} - description: New minimum width of the client area of the window, or null to remove limit. - - id: height - type: System.Nullable{System.Int32} - description: New minimum height of the client area of the window, or null to remove limit. - content.vb: Sub SetMinClientSize(handle As WindowHandle, width As Integer?, height As Integer?) - overload: OpenTK.Core.Platform.IWindowComponent.SetMinClientSize* - nameWithType.vb: IWindowComponent.SetMinClientSize(WindowHandle, Integer?, Integer?) - fullName.vb: OpenTK.Core.Platform.IWindowComponent.SetMinClientSize(OpenTK.Core.Platform.WindowHandle, Integer?, Integer?) - name.vb: SetMinClientSize(WindowHandle, Integer?, Integer?) -- uid: OpenTK.Core.Platform.IWindowComponent.GetDisplay(OpenTK.Core.Platform.WindowHandle) - commentId: M:OpenTK.Core.Platform.IWindowComponent.GetDisplay(OpenTK.Core.Platform.WindowHandle) - id: GetDisplay(OpenTK.Core.Platform.WindowHandle) - parent: OpenTK.Core.Platform.IWindowComponent - langs: - - csharp - - vb - name: GetDisplay(WindowHandle) - nameWithType: IWindowComponent.GetDisplay(WindowHandle) - fullName: OpenTK.Core.Platform.IWindowComponent.GetDisplay(OpenTK.Core.Platform.WindowHandle) - type: Method - source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/IWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: GetDisplay - path: opentk/src/OpenTK.Core/Platform/Interfaces/IWindowComponent.cs - startLine: 294 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Get the display handle a window is in. - example: [] - syntax: - content: DisplayHandle GetDisplay(WindowHandle handle) - parameters: - - id: handle - type: OpenTK.Core.Platform.WindowHandle - description: Handle to a window. - return: - type: OpenTK.Core.Platform.DisplayHandle - description: The display handle the window is in. - content.vb: Function GetDisplay(handle As WindowHandle) As DisplayHandle - overload: OpenTK.Core.Platform.IWindowComponent.GetDisplay* - exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: handle is null. - - type: OpenTK.Core.Platform.PalNotImplementedException - commentId: T:OpenTK.Core.Platform.PalNotImplementedException - description: Driver does not support finding the window display. . -- uid: OpenTK.Core.Platform.IWindowComponent.GetMode(OpenTK.Core.Platform.WindowHandle) - commentId: M:OpenTK.Core.Platform.IWindowComponent.GetMode(OpenTK.Core.Platform.WindowHandle) - id: GetMode(OpenTK.Core.Platform.WindowHandle) - parent: OpenTK.Core.Platform.IWindowComponent - langs: - - csharp - - vb - name: GetMode(WindowHandle) - nameWithType: IWindowComponent.GetMode(WindowHandle) - fullName: OpenTK.Core.Platform.IWindowComponent.GetMode(OpenTK.Core.Platform.WindowHandle) - type: Method - source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/IWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: GetMode - path: opentk/src/OpenTK.Core/Platform/Interfaces/IWindowComponent.cs - startLine: 302 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Get the mode of a window. - example: [] - syntax: - content: WindowMode GetMode(WindowHandle handle) - parameters: - - id: handle - type: OpenTK.Core.Platform.WindowHandle - description: Handle to a window. - return: - type: OpenTK.Core.Platform.WindowMode - description: The mode of the window. - content.vb: Function GetMode(handle As WindowHandle) As WindowMode - overload: OpenTK.Core.Platform.IWindowComponent.GetMode* - exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: handle is null. -- uid: OpenTK.Core.Platform.IWindowComponent.SetMode(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.WindowMode) - commentId: M:OpenTK.Core.Platform.IWindowComponent.SetMode(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.WindowMode) - id: SetMode(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.WindowMode) - parent: OpenTK.Core.Platform.IWindowComponent - langs: - - csharp - - vb - name: SetMode(WindowHandle, WindowMode) - nameWithType: IWindowComponent.SetMode(WindowHandle, WindowMode) - fullName: OpenTK.Core.Platform.IWindowComponent.SetMode(OpenTK.Core.Platform.WindowHandle, OpenTK.Core.Platform.WindowMode) - type: Method - source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/IWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: SetMode - path: opentk/src/OpenTK.Core/Platform/Interfaces/IWindowComponent.cs - startLine: 320 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Set the mode of a window. - remarks: >- - Setting or - - will make the window fullscreen in the nearest monitor to the window location. - - Use or - - to explicitly set the monitor. - example: [] - syntax: - content: void SetMode(WindowHandle handle, WindowMode mode) - parameters: - - id: handle - type: OpenTK.Core.Platform.WindowHandle - description: Handle to a window. - - id: mode - type: OpenTK.Core.Platform.WindowMode - description: The new mode of the window. - content.vb: Sub SetMode(handle As WindowHandle, mode As WindowMode) - overload: OpenTK.Core.Platform.IWindowComponent.SetMode* - exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: handle is null. - - type: System.ArgumentOutOfRangeException - commentId: T:System.ArgumentOutOfRangeException - description: mode is an invalid value. - - type: OpenTK.Core.Platform.PalNotImplementedException - commentId: T:OpenTK.Core.Platform.PalNotImplementedException - description: Driver does not support the value set by mode. See . -- uid: OpenTK.Core.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle) - commentId: M:OpenTK.Core.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle) - id: SetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle) - parent: OpenTK.Core.Platform.IWindowComponent - langs: - - csharp - - vb - name: SetFullscreenDisplay(WindowHandle, DisplayHandle?) - nameWithType: IWindowComponent.SetFullscreenDisplay(WindowHandle, DisplayHandle?) - fullName: OpenTK.Core.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle, OpenTK.Core.Platform.DisplayHandle?) - type: Method - source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/IWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: SetFullscreenDisplay - path: opentk/src/OpenTK.Core/Platform/Interfaces/IWindowComponent.cs - startLine: 331 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: >- - Put a window into 'windowed fullscreen' on a specified display or the display the window is displayed on. - - If display is null then the window will be made fullscreen on the 'nearest' display. - remarks: To make an 'exclusive fullscreen' window see . - example: [] - syntax: - content: void SetFullscreenDisplay(WindowHandle handle, DisplayHandle? display) - parameters: - - id: handle - type: OpenTK.Core.Platform.WindowHandle - description: The window to make fullscreen. - - id: display - type: OpenTK.Core.Platform.DisplayHandle - description: The display to make the window fullscreen on. - content.vb: Sub SetFullscreenDisplay(handle As WindowHandle, display As DisplayHandle) - overload: OpenTK.Core.Platform.IWindowComponent.SetFullscreenDisplay* - nameWithType.vb: IWindowComponent.SetFullscreenDisplay(WindowHandle, DisplayHandle) - fullName.vb: OpenTK.Core.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle, OpenTK.Core.Platform.DisplayHandle) - name.vb: SetFullscreenDisplay(WindowHandle, DisplayHandle) -- uid: OpenTK.Core.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle,OpenTK.Core.Platform.VideoMode) - commentId: M:OpenTK.Core.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle,OpenTK.Core.Platform.VideoMode) - id: SetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle,OpenTK.Core.Platform.VideoMode) - parent: OpenTK.Core.Platform.IWindowComponent - langs: - - csharp - - vb - name: SetFullscreenDisplay(WindowHandle, DisplayHandle, VideoMode) - nameWithType: IWindowComponent.SetFullscreenDisplay(WindowHandle, DisplayHandle, VideoMode) - fullName: OpenTK.Core.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle, OpenTK.Core.Platform.DisplayHandle, OpenTK.Core.Platform.VideoMode) - type: Method - source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/IWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: SetFullscreenDisplay - path: opentk/src/OpenTK.Core/Platform/Interfaces/IWindowComponent.cs - startLine: 344 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: >- - Put a window into 'exclusive fullscreen' on a specified display and change the video mode to the specified video mode. - - Only video modes accuired using - - are expected to work. - remarks: To make an 'windowed fullscreen' window see . - example: [] - syntax: - content: void SetFullscreenDisplay(WindowHandle handle, DisplayHandle display, VideoMode videoMode) - parameters: - - id: handle - type: OpenTK.Core.Platform.WindowHandle - description: The window to make fullscreen. - - id: display - type: OpenTK.Core.Platform.DisplayHandle - description: The display to make the window fullscreen on. - - id: videoMode - type: OpenTK.Core.Platform.VideoMode - description: The video mode to use when making the window fullscreen. - content.vb: Sub SetFullscreenDisplay(handle As WindowHandle, display As DisplayHandle, videoMode As VideoMode) - overload: OpenTK.Core.Platform.IWindowComponent.SetFullscreenDisplay* -- uid: OpenTK.Core.Platform.IWindowComponent.GetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle@) - commentId: M:OpenTK.Core.Platform.IWindowComponent.GetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle@) - id: GetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle@) - parent: OpenTK.Core.Platform.IWindowComponent - langs: - - csharp - - vb - name: GetFullscreenDisplay(WindowHandle, out DisplayHandle?) - nameWithType: IWindowComponent.GetFullscreenDisplay(WindowHandle, out DisplayHandle?) - fullName: OpenTK.Core.Platform.IWindowComponent.GetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle, out OpenTK.Core.Platform.DisplayHandle?) - type: Method - source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/IWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: GetFullscreenDisplay - path: opentk/src/OpenTK.Core/Platform/Interfaces/IWindowComponent.cs - startLine: 352 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Gets the display that the specified window is fullscreen on, if the window is fullscreen. - example: [] - syntax: - content: bool GetFullscreenDisplay(WindowHandle handle, out DisplayHandle? display) - parameters: - - id: handle - type: OpenTK.Core.Platform.WindowHandle - description: The window handle. - - id: display - type: OpenTK.Core.Platform.DisplayHandle - description: The display where the window is fullscreen or null if the window is not fullscreen. - return: - type: System.Boolean - description: true if the window was fullscreen, false otherwise. - content.vb: Function GetFullscreenDisplay(handle As WindowHandle, display As DisplayHandle) As Boolean - overload: OpenTK.Core.Platform.IWindowComponent.GetFullscreenDisplay* - nameWithType.vb: IWindowComponent.GetFullscreenDisplay(WindowHandle, DisplayHandle) - fullName.vb: OpenTK.Core.Platform.IWindowComponent.GetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle, OpenTK.Core.Platform.DisplayHandle) - name.vb: GetFullscreenDisplay(WindowHandle, DisplayHandle) -- uid: OpenTK.Core.Platform.IWindowComponent.GetBorderStyle(OpenTK.Core.Platform.WindowHandle) - commentId: M:OpenTK.Core.Platform.IWindowComponent.GetBorderStyle(OpenTK.Core.Platform.WindowHandle) - id: GetBorderStyle(OpenTK.Core.Platform.WindowHandle) - parent: OpenTK.Core.Platform.IWindowComponent - langs: - - csharp - - vb - name: GetBorderStyle(WindowHandle) - nameWithType: IWindowComponent.GetBorderStyle(WindowHandle) - fullName: OpenTK.Core.Platform.IWindowComponent.GetBorderStyle(OpenTK.Core.Platform.WindowHandle) - type: Method - source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/IWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: GetBorderStyle - path: opentk/src/OpenTK.Core/Platform/Interfaces/IWindowComponent.cs - startLine: 360 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Get the border style of a window. - example: [] - syntax: - content: WindowBorderStyle GetBorderStyle(WindowHandle handle) - parameters: - - id: handle - type: OpenTK.Core.Platform.WindowHandle - description: Handle to window. - return: - type: OpenTK.Core.Platform.WindowBorderStyle - description: The border style of the window. - content.vb: Function GetBorderStyle(handle As WindowHandle) As WindowBorderStyle - overload: OpenTK.Core.Platform.IWindowComponent.GetBorderStyle* - exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: handle is null. -- uid: OpenTK.Core.Platform.IWindowComponent.SetBorderStyle(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.WindowBorderStyle) - commentId: M:OpenTK.Core.Platform.IWindowComponent.SetBorderStyle(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.WindowBorderStyle) - id: SetBorderStyle(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.WindowBorderStyle) - parent: OpenTK.Core.Platform.IWindowComponent - langs: - - csharp - - vb - name: SetBorderStyle(WindowHandle, WindowBorderStyle) - nameWithType: IWindowComponent.SetBorderStyle(WindowHandle, WindowBorderStyle) - fullName: OpenTK.Core.Platform.IWindowComponent.SetBorderStyle(OpenTK.Core.Platform.WindowHandle, OpenTK.Core.Platform.WindowBorderStyle) - type: Method - source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/IWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: SetBorderStyle - path: opentk/src/OpenTK.Core/Platform/Interfaces/IWindowComponent.cs - startLine: 372 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Set the border style of a window. - example: [] - syntax: - content: void SetBorderStyle(WindowHandle handle, WindowBorderStyle style) - parameters: - - id: handle - type: OpenTK.Core.Platform.WindowHandle - description: Handle to a window. - - id: style - type: OpenTK.Core.Platform.WindowBorderStyle - description: The new border style of the window. - content.vb: Sub SetBorderStyle(handle As WindowHandle, style As WindowBorderStyle) - overload: OpenTK.Core.Platform.IWindowComponent.SetBorderStyle* - exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: handle is null. - - type: System.ArgumentOutOfRangeException - commentId: T:System.ArgumentOutOfRangeException - description: style is an invalid value. - - type: OpenTK.Core.Platform.PalNotImplementedException - commentId: T:OpenTK.Core.Platform.PalNotImplementedException - description: Driver does not support the value set by style. See . -- uid: OpenTK.Core.Platform.IWindowComponent.SetAlwaysOnTop(OpenTK.Core.Platform.WindowHandle,System.Boolean) - commentId: M:OpenTK.Core.Platform.IWindowComponent.SetAlwaysOnTop(OpenTK.Core.Platform.WindowHandle,System.Boolean) - id: SetAlwaysOnTop(OpenTK.Core.Platform.WindowHandle,System.Boolean) - parent: OpenTK.Core.Platform.IWindowComponent - langs: - - csharp - - vb - name: SetAlwaysOnTop(WindowHandle, bool) - nameWithType: IWindowComponent.SetAlwaysOnTop(WindowHandle, bool) - fullName: OpenTK.Core.Platform.IWindowComponent.SetAlwaysOnTop(OpenTK.Core.Platform.WindowHandle, bool) - type: Method - source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/IWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: SetAlwaysOnTop - path: opentk/src/OpenTK.Core/Platform/Interfaces/IWindowComponent.cs - startLine: 379 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Set if the window is an always on top window or not. - example: [] - syntax: - content: void SetAlwaysOnTop(WindowHandle handle, bool floating) - parameters: - - id: handle - type: OpenTK.Core.Platform.WindowHandle - description: A handle to the window to make always on top. - - id: floating - type: System.Boolean - description: Whether the window should be always on top or not. - content.vb: Sub SetAlwaysOnTop(handle As WindowHandle, floating As Boolean) - overload: OpenTK.Core.Platform.IWindowComponent.SetAlwaysOnTop* - nameWithType.vb: IWindowComponent.SetAlwaysOnTop(WindowHandle, Boolean) - fullName.vb: OpenTK.Core.Platform.IWindowComponent.SetAlwaysOnTop(OpenTK.Core.Platform.WindowHandle, Boolean) - name.vb: SetAlwaysOnTop(WindowHandle, Boolean) -- uid: OpenTK.Core.Platform.IWindowComponent.IsAlwaysOnTop(OpenTK.Core.Platform.WindowHandle) - commentId: M:OpenTK.Core.Platform.IWindowComponent.IsAlwaysOnTop(OpenTK.Core.Platform.WindowHandle) - id: IsAlwaysOnTop(OpenTK.Core.Platform.WindowHandle) - parent: OpenTK.Core.Platform.IWindowComponent - langs: - - csharp - - vb - name: IsAlwaysOnTop(WindowHandle) - nameWithType: IWindowComponent.IsAlwaysOnTop(WindowHandle) - fullName: OpenTK.Core.Platform.IWindowComponent.IsAlwaysOnTop(OpenTK.Core.Platform.WindowHandle) - type: Method - source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/IWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: IsAlwaysOnTop - path: opentk/src/OpenTK.Core/Platform/Interfaces/IWindowComponent.cs - startLine: 386 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Gets if the current window is always on top or not. - example: [] - syntax: - content: bool IsAlwaysOnTop(WindowHandle handle) - parameters: - - id: handle - type: OpenTK.Core.Platform.WindowHandle - description: A handle to the window to get whether or not is always on top. - return: - type: System.Boolean - description: Whether the window is always on top or not. - content.vb: Function IsAlwaysOnTop(handle As WindowHandle) As Boolean - overload: OpenTK.Core.Platform.IWindowComponent.IsAlwaysOnTop* -- uid: OpenTK.Core.Platform.IWindowComponent.SetHitTestCallback(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.HitTest) - commentId: M:OpenTK.Core.Platform.IWindowComponent.SetHitTestCallback(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.HitTest) - id: SetHitTestCallback(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.HitTest) - parent: OpenTK.Core.Platform.IWindowComponent - langs: - - csharp - - vb - name: SetHitTestCallback(WindowHandle, HitTest?) - nameWithType: IWindowComponent.SetHitTestCallback(WindowHandle, HitTest?) - fullName: OpenTK.Core.Platform.IWindowComponent.SetHitTestCallback(OpenTK.Core.Platform.WindowHandle, OpenTK.Core.Platform.HitTest?) - type: Method - source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/IWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: SetHitTestCallback - path: opentk/src/OpenTK.Core/Platform/Interfaces/IWindowComponent.cs - startLine: 398 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: >- - Sets a delegate that is used for hit testing. - - Hit testing allows the user to specify if a click should start a drag or resize operation on the window. - - - Hit testing is not always done in respone to the user clicking the mouse. - - The operating system can do hit testing for any reason and doesn't need to be in respose to some user action. - - It is recommended to keep this code efficient as it will be called often. - example: [] - syntax: - content: void SetHitTestCallback(WindowHandle handle, HitTest? test) - parameters: - - id: handle - type: OpenTK.Core.Platform.WindowHandle - description: The window for which this hit test delegate should be used for. - - id: test - type: OpenTK.Core.Platform.HitTest - description: The hit test delegate. - content.vb: Sub SetHitTestCallback(handle As WindowHandle, test As HitTest) - overload: OpenTK.Core.Platform.IWindowComponent.SetHitTestCallback* - nameWithType.vb: IWindowComponent.SetHitTestCallback(WindowHandle, HitTest) - fullName.vb: OpenTK.Core.Platform.IWindowComponent.SetHitTestCallback(OpenTK.Core.Platform.WindowHandle, OpenTK.Core.Platform.HitTest) - name.vb: SetHitTestCallback(WindowHandle, HitTest) -- uid: OpenTK.Core.Platform.IWindowComponent.SetCursor(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.CursorHandle) - commentId: M:OpenTK.Core.Platform.IWindowComponent.SetCursor(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.CursorHandle) - id: SetCursor(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.CursorHandle) - parent: OpenTK.Core.Platform.IWindowComponent - langs: - - csharp - - vb - name: SetCursor(WindowHandle, CursorHandle?) - nameWithType: IWindowComponent.SetCursor(WindowHandle, CursorHandle?) - fullName: OpenTK.Core.Platform.IWindowComponent.SetCursor(OpenTK.Core.Platform.WindowHandle, OpenTK.Core.Platform.CursorHandle?) - type: Method - source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/IWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: SetCursor - path: opentk/src/OpenTK.Core/Platform/Interfaces/IWindowComponent.cs - startLine: 411 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Set the cursor object for a window. - example: [] - syntax: - content: void SetCursor(WindowHandle handle, CursorHandle? cursor) - parameters: - - id: handle - type: OpenTK.Core.Platform.WindowHandle - description: Handle to a window. - - id: cursor - type: OpenTK.Core.Platform.CursorHandle - description: Handle to a cursor object, or null for hidden cursor. - content.vb: Sub SetCursor(handle As WindowHandle, cursor As CursorHandle) - overload: OpenTK.Core.Platform.IWindowComponent.SetCursor* - exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: handle is null. - - type: OpenTK.Core.Platform.PalNotImplementedException - commentId: T:OpenTK.Core.Platform.PalNotImplementedException - description: Driver does not support setting the window mouse cursor. See . - nameWithType.vb: IWindowComponent.SetCursor(WindowHandle, CursorHandle) - fullName.vb: OpenTK.Core.Platform.IWindowComponent.SetCursor(OpenTK.Core.Platform.WindowHandle, OpenTK.Core.Platform.CursorHandle) - name.vb: SetCursor(WindowHandle, CursorHandle) -- uid: OpenTK.Core.Platform.IWindowComponent.GetCursorCaptureMode(OpenTK.Core.Platform.WindowHandle) - commentId: M:OpenTK.Core.Platform.IWindowComponent.GetCursorCaptureMode(OpenTK.Core.Platform.WindowHandle) - id: GetCursorCaptureMode(OpenTK.Core.Platform.WindowHandle) - parent: OpenTK.Core.Platform.IWindowComponent - langs: - - csharp - - vb - name: GetCursorCaptureMode(WindowHandle) - nameWithType: IWindowComponent.GetCursorCaptureMode(WindowHandle) - fullName: OpenTK.Core.Platform.IWindowComponent.GetCursorCaptureMode(OpenTK.Core.Platform.WindowHandle) - type: Method - source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/IWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: GetCursorCaptureMode - path: opentk/src/OpenTK.Core/Platform/Interfaces/IWindowComponent.cs - startLine: 418 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Gets the current cursor capture mode. See for more details. - example: [] - syntax: - content: CursorCaptureMode GetCursorCaptureMode(WindowHandle handle) - parameters: - - id: handle - type: OpenTK.Core.Platform.WindowHandle - description: Handle to a window. - return: - type: OpenTK.Core.Platform.CursorCaptureMode - description: The current cursor capture mode. - content.vb: Function GetCursorCaptureMode(handle As WindowHandle) As CursorCaptureMode - overload: OpenTK.Core.Platform.IWindowComponent.GetCursorCaptureMode* -- uid: OpenTK.Core.Platform.IWindowComponent.SetCursorCaptureMode(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.CursorCaptureMode) - commentId: M:OpenTK.Core.Platform.IWindowComponent.SetCursorCaptureMode(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.CursorCaptureMode) - id: SetCursorCaptureMode(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.CursorCaptureMode) - parent: OpenTK.Core.Platform.IWindowComponent - langs: - - csharp - - vb - name: SetCursorCaptureMode(WindowHandle, CursorCaptureMode) - nameWithType: IWindowComponent.SetCursorCaptureMode(WindowHandle, CursorCaptureMode) - fullName: OpenTK.Core.Platform.IWindowComponent.SetCursorCaptureMode(OpenTK.Core.Platform.WindowHandle, OpenTK.Core.Platform.CursorCaptureMode) - type: Method - source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/IWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: SetCursorCaptureMode - path: opentk/src/OpenTK.Core/Platform/Interfaces/IWindowComponent.cs - startLine: 426 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: >- - Sets the cursor capture mode of the window. - - A cursor can be confined to the bounds of the window, or locked to the center of the window. - example: [] - syntax: - content: void SetCursorCaptureMode(WindowHandle handle, CursorCaptureMode mode) - parameters: - - id: handle - type: OpenTK.Core.Platform.WindowHandle - description: Handle to a window. - - id: mode - type: OpenTK.Core.Platform.CursorCaptureMode - description: The cursor capture mode. - content.vb: Sub SetCursorCaptureMode(handle As WindowHandle, mode As CursorCaptureMode) - overload: OpenTK.Core.Platform.IWindowComponent.SetCursorCaptureMode* -- uid: OpenTK.Core.Platform.IWindowComponent.IsFocused(OpenTK.Core.Platform.WindowHandle) - commentId: M:OpenTK.Core.Platform.IWindowComponent.IsFocused(OpenTK.Core.Platform.WindowHandle) - id: IsFocused(OpenTK.Core.Platform.WindowHandle) - parent: OpenTK.Core.Platform.IWindowComponent - langs: - - csharp - - vb - name: IsFocused(WindowHandle) - nameWithType: IWindowComponent.IsFocused(WindowHandle) - fullName: OpenTK.Core.Platform.IWindowComponent.IsFocused(OpenTK.Core.Platform.WindowHandle) - type: Method - source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/IWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: IsFocused - path: opentk/src/OpenTK.Core/Platform/Interfaces/IWindowComponent.cs - startLine: 433 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Returns true if the given window has input focus. - example: [] - syntax: - content: bool IsFocused(WindowHandle handle) - parameters: - - id: handle - type: OpenTK.Core.Platform.WindowHandle - description: Handle to a window. - return: - type: System.Boolean - description: If the window has input focus. - content.vb: Function IsFocused(handle As WindowHandle) As Boolean - overload: OpenTK.Core.Platform.IWindowComponent.IsFocused* -- uid: OpenTK.Core.Platform.IWindowComponent.FocusWindow(OpenTK.Core.Platform.WindowHandle) - commentId: M:OpenTK.Core.Platform.IWindowComponent.FocusWindow(OpenTK.Core.Platform.WindowHandle) - id: FocusWindow(OpenTK.Core.Platform.WindowHandle) - parent: OpenTK.Core.Platform.IWindowComponent - langs: - - csharp - - vb - name: FocusWindow(WindowHandle) - nameWithType: IWindowComponent.FocusWindow(WindowHandle) - fullName: OpenTK.Core.Platform.IWindowComponent.FocusWindow(OpenTK.Core.Platform.WindowHandle) - type: Method - source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/IWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: FocusWindow - path: opentk/src/OpenTK.Core/Platform/Interfaces/IWindowComponent.cs - startLine: 439 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Gives the window input focus. - example: [] - syntax: - content: void FocusWindow(WindowHandle handle) - parameters: - - id: handle - type: OpenTK.Core.Platform.WindowHandle - description: Handle to the window to focus. - content.vb: Sub FocusWindow(handle As WindowHandle) - overload: OpenTK.Core.Platform.IWindowComponent.FocusWindow* -- uid: OpenTK.Core.Platform.IWindowComponent.RequestAttention(OpenTK.Core.Platform.WindowHandle) - commentId: M:OpenTK.Core.Platform.IWindowComponent.RequestAttention(OpenTK.Core.Platform.WindowHandle) - id: RequestAttention(OpenTK.Core.Platform.WindowHandle) - parent: OpenTK.Core.Platform.IWindowComponent - langs: - - csharp - - vb - name: RequestAttention(WindowHandle) - nameWithType: IWindowComponent.RequestAttention(WindowHandle) - fullName: OpenTK.Core.Platform.IWindowComponent.RequestAttention(OpenTK.Core.Platform.WindowHandle) - type: Method - source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/IWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: RequestAttention - path: opentk/src/OpenTK.Core/Platform/Interfaces/IWindowComponent.cs - startLine: 445 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Requests that the user pay attention to the window. - example: [] - syntax: - content: void RequestAttention(WindowHandle handle) - parameters: - - id: handle - type: OpenTK.Core.Platform.WindowHandle - description: A handle to the window that requests attention. - content.vb: Sub RequestAttention(handle As WindowHandle) - overload: OpenTK.Core.Platform.IWindowComponent.RequestAttention* -- uid: OpenTK.Core.Platform.IWindowComponent.ScreenToClient(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) - commentId: M:OpenTK.Core.Platform.IWindowComponent.ScreenToClient(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) - id: ScreenToClient(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) - parent: OpenTK.Core.Platform.IWindowComponent - langs: - - csharp - - vb - name: ScreenToClient(WindowHandle, int, int, out int, out int) - nameWithType: IWindowComponent.ScreenToClient(WindowHandle, int, int, out int, out int) - fullName: OpenTK.Core.Platform.IWindowComponent.ScreenToClient(OpenTK.Core.Platform.WindowHandle, int, int, out int, out int) - type: Method - source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/IWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: ScreenToClient - path: opentk/src/OpenTK.Core/Platform/Interfaces/IWindowComponent.cs - startLine: 456 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Converts screen coordinates to window relative coordinates. - example: [] - syntax: - content: void ScreenToClient(WindowHandle handle, int x, int y, out int clientX, out int clientY) - parameters: - - id: handle - type: OpenTK.Core.Platform.WindowHandle - description: The window handle. - - id: x - type: System.Int32 - description: The screen x coordinate. - - id: y - type: System.Int32 - description: The screen y coordinate. - - id: clientX - type: System.Int32 - description: The client x coordinate. - - id: clientY - type: System.Int32 - description: The client y coordinate. - content.vb: Sub ScreenToClient(handle As WindowHandle, x As Integer, y As Integer, clientX As Integer, clientY As Integer) - overload: OpenTK.Core.Platform.IWindowComponent.ScreenToClient* - nameWithType.vb: IWindowComponent.ScreenToClient(WindowHandle, Integer, Integer, Integer, Integer) - fullName.vb: OpenTK.Core.Platform.IWindowComponent.ScreenToClient(OpenTK.Core.Platform.WindowHandle, Integer, Integer, Integer, Integer) - name.vb: ScreenToClient(WindowHandle, Integer, Integer, Integer, Integer) -- uid: OpenTK.Core.Platform.IWindowComponent.ClientToScreen(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) - commentId: M:OpenTK.Core.Platform.IWindowComponent.ClientToScreen(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) - id: ClientToScreen(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) - parent: OpenTK.Core.Platform.IWindowComponent - langs: - - csharp - - vb - name: ClientToScreen(WindowHandle, int, int, out int, out int) - nameWithType: IWindowComponent.ClientToScreen(WindowHandle, int, int, out int, out int) - fullName: OpenTK.Core.Platform.IWindowComponent.ClientToScreen(OpenTK.Core.Platform.WindowHandle, int, int, out int, out int) - type: Method - source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/IWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: ClientToScreen - path: opentk/src/OpenTK.Core/Platform/Interfaces/IWindowComponent.cs - startLine: 467 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Converts window relative coordinates to screen coordinates. - example: [] - syntax: - content: void ClientToScreen(WindowHandle handle, int clientX, int clientY, out int x, out int y) - parameters: - - id: handle - type: OpenTK.Core.Platform.WindowHandle - description: The window handle. - - id: clientX - type: System.Int32 - description: The client x coordinate. - - id: clientY - type: System.Int32 - description: The client y coordinate. - - id: x - type: System.Int32 - description: The screen x coordinate. - - id: y - type: System.Int32 - description: The screen y coordinate. - content.vb: Sub ClientToScreen(handle As WindowHandle, clientX As Integer, clientY As Integer, x As Integer, y As Integer) - overload: OpenTK.Core.Platform.IWindowComponent.ClientToScreen* - nameWithType.vb: IWindowComponent.ClientToScreen(WindowHandle, Integer, Integer, Integer, Integer) - fullName.vb: OpenTK.Core.Platform.IWindowComponent.ClientToScreen(OpenTK.Core.Platform.WindowHandle, Integer, Integer, Integer, Integer) - name.vb: ClientToScreen(WindowHandle, Integer, Integer, Integer, Integer) -- uid: OpenTK.Core.Platform.IWindowComponent.GetScaleFactor(OpenTK.Core.Platform.WindowHandle,System.Single@,System.Single@) - commentId: M:OpenTK.Core.Platform.IWindowComponent.GetScaleFactor(OpenTK.Core.Platform.WindowHandle,System.Single@,System.Single@) - id: GetScaleFactor(OpenTK.Core.Platform.WindowHandle,System.Single@,System.Single@) - parent: OpenTK.Core.Platform.IWindowComponent - langs: - - csharp - - vb - name: GetScaleFactor(WindowHandle, out float, out float) - nameWithType: IWindowComponent.GetScaleFactor(WindowHandle, out float, out float) - fullName: OpenTK.Core.Platform.IWindowComponent.GetScaleFactor(OpenTK.Core.Platform.WindowHandle, out float, out float) - type: Method - source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/IWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: GetScaleFactor - path: opentk/src/OpenTK.Core/Platform/Interfaces/IWindowComponent.cs - startLine: 476 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Returns the current scale factor of this window. - example: [] - syntax: - content: void GetScaleFactor(WindowHandle handle, out float scaleX, out float scaleY) - parameters: - - id: handle - type: OpenTK.Core.Platform.WindowHandle - description: The window handle. - - id: scaleX - type: System.Single - description: The x scale factor of the window. - - id: scaleY - type: System.Single - description: The y scale factor of the window. - content.vb: Sub GetScaleFactor(handle As WindowHandle, scaleX As Single, scaleY As Single) - overload: OpenTK.Core.Platform.IWindowComponent.GetScaleFactor* - seealso: - - linkId: OpenTK.Core.Platform.WindowScaleChangeEventArgs - commentId: T:OpenTK.Core.Platform.WindowScaleChangeEventArgs - nameWithType.vb: IWindowComponent.GetScaleFactor(WindowHandle, Single, Single) - fullName.vb: OpenTK.Core.Platform.IWindowComponent.GetScaleFactor(OpenTK.Core.Platform.WindowHandle, Single, Single) - name.vb: GetScaleFactor(WindowHandle, Single, Single) -references: -- uid: OpenTK.Core.Platform - commentId: N:OpenTK.Core.Platform - href: OpenTK.html - name: OpenTK.Core.Platform - nameWithType: OpenTK.Core.Platform - fullName: OpenTK.Core.Platform - spec.csharp: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform - name: Platform - href: OpenTK.Core.Platform.html - spec.vb: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform - name: Platform - href: OpenTK.Core.Platform.html -- uid: OpenTK.Core.Platform.IPalComponent.Name - commentId: P:OpenTK.Core.Platform.IPalComponent.Name - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Name - name: Name - nameWithType: IPalComponent.Name - fullName: OpenTK.Core.Platform.IPalComponent.Name -- uid: OpenTK.Core.Platform.IPalComponent.Provides - commentId: P:OpenTK.Core.Platform.IPalComponent.Provides - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Provides - name: Provides - nameWithType: IPalComponent.Provides - fullName: OpenTK.Core.Platform.IPalComponent.Provides -- uid: OpenTK.Core.Platform.IPalComponent.Logger - commentId: P:OpenTK.Core.Platform.IPalComponent.Logger - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Logger - name: Logger - nameWithType: IPalComponent.Logger - fullName: OpenTK.Core.Platform.IPalComponent.Logger -- uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - commentId: M:OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ - name: Initialize(ToolkitOptions) - nameWithType: IPalComponent.Initialize(ToolkitOptions) - fullName: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - spec.csharp: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ - - name: ( - - uid: OpenTK.Core.Platform.ToolkitOptions - name: ToolkitOptions - href: OpenTK.Core.Platform.ToolkitOptions.html - - name: ) - spec.vb: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ - - name: ( - - uid: OpenTK.Core.Platform.ToolkitOptions - name: ToolkitOptions - href: OpenTK.Core.Platform.ToolkitOptions.html - - name: ) -- uid: OpenTK.Core.Platform.IPalComponent - commentId: T:OpenTK.Core.Platform.IPalComponent - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.IPalComponent.html - name: IPalComponent - nameWithType: IPalComponent - fullName: OpenTK.Core.Platform.IPalComponent -- uid: OpenTK.Core.Platform.IWindowComponent.CanSetIcon* - commentId: Overload:OpenTK.Core.Platform.IWindowComponent.CanSetIcon - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_CanSetIcon - name: CanSetIcon - nameWithType: IWindowComponent.CanSetIcon - fullName: OpenTK.Core.Platform.IWindowComponent.CanSetIcon -- uid: System.Boolean - commentId: T:System.Boolean - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - name: bool - nameWithType: bool - fullName: bool - nameWithType.vb: Boolean - fullName.vb: Boolean - name.vb: Boolean -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: OpenTK.Core.Platform.IWindowComponent.CanGetDisplay* - commentId: Overload:OpenTK.Core.Platform.IWindowComponent.CanGetDisplay - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_CanGetDisplay - name: CanGetDisplay - nameWithType: IWindowComponent.CanGetDisplay - fullName: OpenTK.Core.Platform.IWindowComponent.CanGetDisplay -- uid: OpenTK.Core.Platform.IWindowComponent.CanSetCursor* - commentId: Overload:OpenTK.Core.Platform.IWindowComponent.CanSetCursor - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_CanSetCursor - name: CanSetCursor - nameWithType: IWindowComponent.CanSetCursor - fullName: OpenTK.Core.Platform.IWindowComponent.CanSetCursor -- uid: OpenTK.Core.Platform.IWindowComponent.CanCaptureCursor* - commentId: Overload:OpenTK.Core.Platform.IWindowComponent.CanCaptureCursor - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_CanCaptureCursor - name: CanCaptureCursor - nameWithType: IWindowComponent.CanCaptureCursor - fullName: OpenTK.Core.Platform.IWindowComponent.CanCaptureCursor -- uid: OpenTK.Core.Platform.IWindowComponent.SupportedEvents* - commentId: Overload:OpenTK.Core.Platform.IWindowComponent.SupportedEvents - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SupportedEvents - name: SupportedEvents - nameWithType: IWindowComponent.SupportedEvents - fullName: OpenTK.Core.Platform.IWindowComponent.SupportedEvents -- uid: System.Collections.Generic.IReadOnlyList{OpenTK.Core.Platform.PlatformEventType} - commentId: T:System.Collections.Generic.IReadOnlyList{OpenTK.Core.Platform.PlatformEventType} - parent: System.Collections.Generic - definition: System.Collections.Generic.IReadOnlyList`1 - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 - name: IReadOnlyList - nameWithType: IReadOnlyList - fullName: System.Collections.Generic.IReadOnlyList - nameWithType.vb: IReadOnlyList(Of PlatformEventType) - fullName.vb: System.Collections.Generic.IReadOnlyList(Of OpenTK.Core.Platform.PlatformEventType) - name.vb: IReadOnlyList(Of PlatformEventType) - spec.csharp: - - uid: System.Collections.Generic.IReadOnlyList`1 - name: IReadOnlyList - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 - - name: < - - uid: OpenTK.Core.Platform.PlatformEventType - name: PlatformEventType - href: OpenTK.Core.Platform.PlatformEventType.html - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IReadOnlyList`1 - name: IReadOnlyList - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 - - name: ( - - name: Of - - name: " " - - uid: OpenTK.Core.Platform.PlatformEventType - name: PlatformEventType - href: OpenTK.Core.Platform.PlatformEventType.html - - name: ) -- uid: System.Collections.Generic.IReadOnlyList`1 - commentId: T:System.Collections.Generic.IReadOnlyList`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 - name: IReadOnlyList - nameWithType: IReadOnlyList - fullName: System.Collections.Generic.IReadOnlyList - nameWithType.vb: IReadOnlyList(Of T) - fullName.vb: System.Collections.Generic.IReadOnlyList(Of T) - name.vb: IReadOnlyList(Of T) - spec.csharp: - - uid: System.Collections.Generic.IReadOnlyList`1 - name: IReadOnlyList - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IReadOnlyList`1 - name: IReadOnlyList - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: System.Collections.Generic - commentId: N:System.Collections.Generic - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System.Collections.Generic - nameWithType: System.Collections.Generic - fullName: System.Collections.Generic - spec.csharp: - - uid: System - name: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - - name: . - - uid: System.Collections - name: Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections - - name: . - - uid: System.Collections.Generic - name: Generic - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic - spec.vb: - - uid: System - name: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - - name: . - - uid: System.Collections - name: Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections - - name: . - - uid: System.Collections.Generic - name: Generic - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic -- uid: OpenTK.Core.Platform.IWindowComponent.SupportedStyles* - commentId: Overload:OpenTK.Core.Platform.IWindowComponent.SupportedStyles - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SupportedStyles - name: SupportedStyles - nameWithType: IWindowComponent.SupportedStyles - fullName: OpenTK.Core.Platform.IWindowComponent.SupportedStyles -- uid: System.Collections.Generic.IReadOnlyList{OpenTK.Core.Platform.WindowBorderStyle} - commentId: T:System.Collections.Generic.IReadOnlyList{OpenTK.Core.Platform.WindowBorderStyle} - parent: System.Collections.Generic - definition: System.Collections.Generic.IReadOnlyList`1 - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 - name: IReadOnlyList - nameWithType: IReadOnlyList - fullName: System.Collections.Generic.IReadOnlyList - nameWithType.vb: IReadOnlyList(Of WindowBorderStyle) - fullName.vb: System.Collections.Generic.IReadOnlyList(Of OpenTK.Core.Platform.WindowBorderStyle) - name.vb: IReadOnlyList(Of WindowBorderStyle) - spec.csharp: - - uid: System.Collections.Generic.IReadOnlyList`1 - name: IReadOnlyList - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 - - name: < - - uid: OpenTK.Core.Platform.WindowBorderStyle - name: WindowBorderStyle - href: OpenTK.Core.Platform.WindowBorderStyle.html - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IReadOnlyList`1 - name: IReadOnlyList - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 - - name: ( - - name: Of - - name: " " - - uid: OpenTK.Core.Platform.WindowBorderStyle - name: WindowBorderStyle - href: OpenTK.Core.Platform.WindowBorderStyle.html - - name: ) -- uid: OpenTK.Core.Platform.IWindowComponent.SupportedModes* - commentId: Overload:OpenTK.Core.Platform.IWindowComponent.SupportedModes - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SupportedModes - name: SupportedModes - nameWithType: IWindowComponent.SupportedModes - fullName: OpenTK.Core.Platform.IWindowComponent.SupportedModes -- uid: System.Collections.Generic.IReadOnlyList{OpenTK.Core.Platform.WindowMode} - commentId: T:System.Collections.Generic.IReadOnlyList{OpenTK.Core.Platform.WindowMode} - parent: System.Collections.Generic - definition: System.Collections.Generic.IReadOnlyList`1 - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 - name: IReadOnlyList - nameWithType: IReadOnlyList - fullName: System.Collections.Generic.IReadOnlyList - nameWithType.vb: IReadOnlyList(Of WindowMode) - fullName.vb: System.Collections.Generic.IReadOnlyList(Of OpenTK.Core.Platform.WindowMode) - name.vb: IReadOnlyList(Of WindowMode) - spec.csharp: - - uid: System.Collections.Generic.IReadOnlyList`1 - name: IReadOnlyList - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 - - name: < - - uid: OpenTK.Core.Platform.WindowMode - name: WindowMode - href: OpenTK.Core.Platform.WindowMode.html - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IReadOnlyList`1 - name: IReadOnlyList - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 - - name: ( - - name: Of - - name: " " - - uid: OpenTK.Core.Platform.WindowMode - name: WindowMode - href: OpenTK.Core.Platform.WindowMode.html - - name: ) -- uid: OpenTK.Core.Platform.EventQueue - commentId: T:OpenTK.Core.Platform.EventQueue - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.EventQueue.html - name: EventQueue - nameWithType: EventQueue - fullName: OpenTK.Core.Platform.EventQueue -- uid: OpenTK.Core.Platform.IWindowComponent.ProcessEvents* - commentId: Overload:OpenTK.Core.Platform.IWindowComponent.ProcessEvents - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_ProcessEvents_System_Boolean_ - name: ProcessEvents - nameWithType: IWindowComponent.ProcessEvents - fullName: OpenTK.Core.Platform.IWindowComponent.ProcessEvents -- uid: OpenTK.Core.Platform.IWindowComponent.Create* - commentId: Overload:OpenTK.Core.Platform.IWindowComponent.Create - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_Create_OpenTK_Core_Platform_GraphicsApiHints_ - name: Create - nameWithType: IWindowComponent.Create - fullName: OpenTK.Core.Platform.IWindowComponent.Create -- uid: OpenTK.Core.Platform.GraphicsApiHints - commentId: T:OpenTK.Core.Platform.GraphicsApiHints - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.GraphicsApiHints.html - name: GraphicsApiHints - nameWithType: GraphicsApiHints - fullName: OpenTK.Core.Platform.GraphicsApiHints -- uid: OpenTK.Core.Platform.WindowHandle - commentId: T:OpenTK.Core.Platform.WindowHandle - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.WindowHandle.html - name: WindowHandle - nameWithType: WindowHandle - fullName: OpenTK.Core.Platform.WindowHandle -- uid: System.ArgumentNullException - commentId: T:System.ArgumentNullException - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.argumentnullexception - name: ArgumentNullException - nameWithType: ArgumentNullException - fullName: System.ArgumentNullException -- uid: OpenTK.Core.Platform.IWindowComponent.Destroy* - commentId: Overload:OpenTK.Core.Platform.IWindowComponent.Destroy - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_Destroy_OpenTK_Core_Platform_WindowHandle_ - name: Destroy - nameWithType: IWindowComponent.Destroy - fullName: OpenTK.Core.Platform.IWindowComponent.Destroy -- uid: OpenTK.Core.Platform.IWindowComponent.Destroy(OpenTK.Core.Platform.WindowHandle) - commentId: M:OpenTK.Core.Platform.IWindowComponent.Destroy(OpenTK.Core.Platform.WindowHandle) - parent: OpenTK.Core.Platform.IWindowComponent - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_Destroy_OpenTK_Core_Platform_WindowHandle_ - name: Destroy(WindowHandle) - nameWithType: IWindowComponent.Destroy(WindowHandle) - fullName: OpenTK.Core.Platform.IWindowComponent.Destroy(OpenTK.Core.Platform.WindowHandle) - spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.Destroy(OpenTK.Core.Platform.WindowHandle) - name: Destroy - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_Destroy_OpenTK_Core_Platform_WindowHandle_ - - name: ( - - uid: OpenTK.Core.Platform.WindowHandle - name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html - - name: ) - spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.Destroy(OpenTK.Core.Platform.WindowHandle) - name: Destroy - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_Destroy_OpenTK_Core_Platform_WindowHandle_ - - name: ( - - uid: OpenTK.Core.Platform.WindowHandle - name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html - - name: ) -- uid: OpenTK.Core.Platform.IWindowComponent.IsWindowDestroyed* - commentId: Overload:OpenTK.Core.Platform.IWindowComponent.IsWindowDestroyed - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_IsWindowDestroyed_OpenTK_Core_Platform_WindowHandle_ - name: IsWindowDestroyed - nameWithType: IWindowComponent.IsWindowDestroyed - fullName: OpenTK.Core.Platform.IWindowComponent.IsWindowDestroyed -- uid: OpenTK.Core.Platform.IWindowComponent - commentId: T:OpenTK.Core.Platform.IWindowComponent - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.IWindowComponent.html - name: IWindowComponent - nameWithType: IWindowComponent - fullName: OpenTK.Core.Platform.IWindowComponent -- uid: OpenTK.Core.Platform.IWindowComponent.GetTitle* - commentId: Overload:OpenTK.Core.Platform.IWindowComponent.GetTitle - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetTitle_OpenTK_Core_Platform_WindowHandle_ - name: GetTitle - nameWithType: IWindowComponent.GetTitle - fullName: OpenTK.Core.Platform.IWindowComponent.GetTitle -- uid: System.String - commentId: T:System.String - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - name: string - nameWithType: string - fullName: string - nameWithType.vb: String - fullName.vb: String - name.vb: String -- uid: OpenTK.Core.Platform.IWindowComponent.SetTitle* - commentId: Overload:OpenTK.Core.Platform.IWindowComponent.SetTitle - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetTitle_OpenTK_Core_Platform_WindowHandle_System_String_ - name: SetTitle - nameWithType: IWindowComponent.SetTitle - fullName: OpenTK.Core.Platform.IWindowComponent.SetTitle -- uid: OpenTK.Core.Platform.IWindowComponent.CanSetIcon - commentId: P:OpenTK.Core.Platform.IWindowComponent.CanSetIcon - parent: OpenTK.Core.Platform.IWindowComponent - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_CanSetIcon - name: CanSetIcon - nameWithType: IWindowComponent.CanSetIcon - fullName: OpenTK.Core.Platform.IWindowComponent.CanSetIcon -- uid: OpenTK.Core.Platform.PalNotImplementedException - commentId: T:OpenTK.Core.Platform.PalNotImplementedException - href: OpenTK.Core.Platform.PalNotImplementedException.html - name: PalNotImplementedException - nameWithType: PalNotImplementedException - fullName: OpenTK.Core.Platform.PalNotImplementedException -- uid: OpenTK.Core.Platform.IWindowComponent.GetIcon* - commentId: Overload:OpenTK.Core.Platform.IWindowComponent.GetIcon - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetIcon_OpenTK_Core_Platform_WindowHandle_ - name: GetIcon - nameWithType: IWindowComponent.GetIcon - fullName: OpenTK.Core.Platform.IWindowComponent.GetIcon -- uid: OpenTK.Core.Platform.IconHandle - commentId: T:OpenTK.Core.Platform.IconHandle - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.IconHandle.html - name: IconHandle - nameWithType: IconHandle - fullName: OpenTK.Core.Platform.IconHandle -- uid: OpenTK.Core.Platform.IWindowComponent.SetIcon* - commentId: Overload:OpenTK.Core.Platform.IWindowComponent.SetIcon - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetIcon_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_IconHandle_ - name: SetIcon - nameWithType: IWindowComponent.SetIcon - fullName: OpenTK.Core.Platform.IWindowComponent.SetIcon -- uid: OpenTK.Core.Platform.IWindowComponent.GetPosition* - commentId: Overload:OpenTK.Core.Platform.IWindowComponent.GetPosition - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetPosition_OpenTK_Core_Platform_WindowHandle_System_Int32__System_Int32__ - name: GetPosition - nameWithType: IWindowComponent.GetPosition - fullName: OpenTK.Core.Platform.IWindowComponent.GetPosition -- uid: System.Int32 - commentId: T:System.Int32 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - name: int - nameWithType: int - fullName: int - nameWithType.vb: Integer - fullName.vb: Integer - name.vb: Integer -- uid: OpenTK.Core.Platform.IWindowComponent.SetPosition* - commentId: Overload:OpenTK.Core.Platform.IWindowComponent.SetPosition - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetPosition_OpenTK_Core_Platform_WindowHandle_System_Int32_System_Int32_ - name: SetPosition - nameWithType: IWindowComponent.SetPosition - fullName: OpenTK.Core.Platform.IWindowComponent.SetPosition -- uid: OpenTK.Core.Platform.IWindowComponent.GetSize* - commentId: Overload:OpenTK.Core.Platform.IWindowComponent.GetSize - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetSize_OpenTK_Core_Platform_WindowHandle_System_Int32__System_Int32__ - name: GetSize - nameWithType: IWindowComponent.GetSize - fullName: OpenTK.Core.Platform.IWindowComponent.GetSize -- uid: OpenTK.Core.Platform.IWindowComponent.SetSize* - commentId: Overload:OpenTK.Core.Platform.IWindowComponent.SetSize - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetSize_OpenTK_Core_Platform_WindowHandle_System_Int32_System_Int32_ - name: SetSize - nameWithType: IWindowComponent.SetSize - fullName: OpenTK.Core.Platform.IWindowComponent.SetSize -- uid: OpenTK.Core.Platform.IWindowComponent.GetBounds* - commentId: Overload:OpenTK.Core.Platform.IWindowComponent.GetBounds - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetBounds_OpenTK_Core_Platform_WindowHandle_System_Int32__System_Int32__System_Int32__System_Int32__ - name: GetBounds - nameWithType: IWindowComponent.GetBounds - fullName: OpenTK.Core.Platform.IWindowComponent.GetBounds -- uid: OpenTK.Core.Platform.IWindowComponent.SetBounds* - commentId: Overload:OpenTK.Core.Platform.IWindowComponent.SetBounds - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetBounds_OpenTK_Core_Platform_WindowHandle_System_Int32_System_Int32_System_Int32_System_Int32_ - name: SetBounds - nameWithType: IWindowComponent.SetBounds - fullName: OpenTK.Core.Platform.IWindowComponent.SetBounds -- uid: OpenTK.Core.Platform.IWindowComponent.GetClientPosition* - commentId: Overload:OpenTK.Core.Platform.IWindowComponent.GetClientPosition - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetClientPosition_OpenTK_Core_Platform_WindowHandle_System_Int32__System_Int32__ - name: GetClientPosition - nameWithType: IWindowComponent.GetClientPosition - fullName: OpenTK.Core.Platform.IWindowComponent.GetClientPosition -- uid: OpenTK.Core.Platform.IWindowComponent.SetClientPosition* - commentId: Overload:OpenTK.Core.Platform.IWindowComponent.SetClientPosition - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetClientPosition_OpenTK_Core_Platform_WindowHandle_System_Int32_System_Int32_ - name: SetClientPosition - nameWithType: IWindowComponent.SetClientPosition - fullName: OpenTK.Core.Platform.IWindowComponent.SetClientPosition -- uid: OpenTK.Core.Platform.IWindowComponent.GetClientSize* - commentId: Overload:OpenTK.Core.Platform.IWindowComponent.GetClientSize - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetClientSize_OpenTK_Core_Platform_WindowHandle_System_Int32__System_Int32__ - name: GetClientSize - nameWithType: IWindowComponent.GetClientSize - fullName: OpenTK.Core.Platform.IWindowComponent.GetClientSize -- uid: OpenTK.Core.Platform.IWindowComponent.SetClientSize* - commentId: Overload:OpenTK.Core.Platform.IWindowComponent.SetClientSize - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetClientSize_OpenTK_Core_Platform_WindowHandle_System_Int32_System_Int32_ - name: SetClientSize - nameWithType: IWindowComponent.SetClientSize - fullName: OpenTK.Core.Platform.IWindowComponent.SetClientSize -- uid: OpenTK.Core.Platform.IWindowComponent.GetClientBounds* - commentId: Overload:OpenTK.Core.Platform.IWindowComponent.GetClientBounds - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetClientBounds_OpenTK_Core_Platform_WindowHandle_System_Int32__System_Int32__System_Int32__System_Int32__ - name: GetClientBounds - nameWithType: IWindowComponent.GetClientBounds - fullName: OpenTK.Core.Platform.IWindowComponent.GetClientBounds -- uid: OpenTK.Core.Platform.IWindowComponent.SetClientBounds* - commentId: Overload:OpenTK.Core.Platform.IWindowComponent.SetClientBounds - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetClientBounds_OpenTK_Core_Platform_WindowHandle_System_Int32_System_Int32_System_Int32_System_Int32_ - name: SetClientBounds - nameWithType: IWindowComponent.SetClientBounds - fullName: OpenTK.Core.Platform.IWindowComponent.SetClientBounds -- uid: OpenTK.Core.Platform.IWindowComponent.GetFramebufferSize* - commentId: Overload:OpenTK.Core.Platform.IWindowComponent.GetFramebufferSize - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetFramebufferSize_OpenTK_Core_Platform_WindowHandle_System_Int32__System_Int32__ - name: GetFramebufferSize - nameWithType: IWindowComponent.GetFramebufferSize - fullName: OpenTK.Core.Platform.IWindowComponent.GetFramebufferSize -- uid: OpenTK.Core.Platform.IWindowComponent.GetMaxClientSize* - commentId: Overload:OpenTK.Core.Platform.IWindowComponent.GetMaxClientSize - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetMaxClientSize_OpenTK_Core_Platform_WindowHandle_System_Nullable_System_Int32___System_Nullable_System_Int32___ - name: GetMaxClientSize - nameWithType: IWindowComponent.GetMaxClientSize - fullName: OpenTK.Core.Platform.IWindowComponent.GetMaxClientSize -- uid: System.Nullable{System.Int32} - commentId: T:System.Nullable{System.Int32} - parent: System - definition: System.Nullable`1 - href: https://learn.microsoft.com/dotnet/api/system.int32 - name: int? - nameWithType: int? - fullName: int? - nameWithType.vb: Integer? - fullName.vb: Integer? - name.vb: Integer? - spec.csharp: - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '?' - spec.vb: - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '?' -- uid: System.Nullable`1 - commentId: T:System.Nullable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.nullable-1 - name: Nullable - nameWithType: Nullable - fullName: System.Nullable - nameWithType.vb: Nullable(Of T) - fullName.vb: System.Nullable(Of T) - name.vb: Nullable(Of T) - spec.csharp: - - uid: System.Nullable`1 - name: Nullable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.nullable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.Nullable`1 - name: Nullable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.nullable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: OpenTK.Core.Platform.IWindowComponent.SetMaxClientSize* - commentId: Overload:OpenTK.Core.Platform.IWindowComponent.SetMaxClientSize - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetMaxClientSize_OpenTK_Core_Platform_WindowHandle_System_Nullable_System_Int32__System_Nullable_System_Int32__ - name: SetMaxClientSize - nameWithType: IWindowComponent.SetMaxClientSize - fullName: OpenTK.Core.Platform.IWindowComponent.SetMaxClientSize -- uid: OpenTK.Core.Platform.IWindowComponent.GetMinClientSize* - commentId: Overload:OpenTK.Core.Platform.IWindowComponent.GetMinClientSize - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetMinClientSize_OpenTK_Core_Platform_WindowHandle_System_Nullable_System_Int32___System_Nullable_System_Int32___ - name: GetMinClientSize - nameWithType: IWindowComponent.GetMinClientSize - fullName: OpenTK.Core.Platform.IWindowComponent.GetMinClientSize -- uid: OpenTK.Core.Platform.IWindowComponent.SetMinClientSize* - commentId: Overload:OpenTK.Core.Platform.IWindowComponent.SetMinClientSize - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetMinClientSize_OpenTK_Core_Platform_WindowHandle_System_Nullable_System_Int32__System_Nullable_System_Int32__ - name: SetMinClientSize - nameWithType: IWindowComponent.SetMinClientSize - fullName: OpenTK.Core.Platform.IWindowComponent.SetMinClientSize -- uid: OpenTK.Core.Platform.IWindowComponent.CanGetDisplay - commentId: P:OpenTK.Core.Platform.IWindowComponent.CanGetDisplay - parent: OpenTK.Core.Platform.IWindowComponent - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_CanGetDisplay - name: CanGetDisplay - nameWithType: IWindowComponent.CanGetDisplay - fullName: OpenTK.Core.Platform.IWindowComponent.CanGetDisplay -- uid: OpenTK.Core.Platform.IWindowComponent.GetDisplay* - commentId: Overload:OpenTK.Core.Platform.IWindowComponent.GetDisplay - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetDisplay_OpenTK_Core_Platform_WindowHandle_ - name: GetDisplay - nameWithType: IWindowComponent.GetDisplay - fullName: OpenTK.Core.Platform.IWindowComponent.GetDisplay -- uid: OpenTK.Core.Platform.DisplayHandle - commentId: T:OpenTK.Core.Platform.DisplayHandle - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.DisplayHandle.html - name: DisplayHandle - nameWithType: DisplayHandle - fullName: OpenTK.Core.Platform.DisplayHandle -- uid: OpenTK.Core.Platform.IWindowComponent.GetMode* - commentId: Overload:OpenTK.Core.Platform.IWindowComponent.GetMode - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetMode_OpenTK_Core_Platform_WindowHandle_ - name: GetMode - nameWithType: IWindowComponent.GetMode - fullName: OpenTK.Core.Platform.IWindowComponent.GetMode -- uid: OpenTK.Core.Platform.WindowMode - commentId: T:OpenTK.Core.Platform.WindowMode - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.WindowMode.html - name: WindowMode - nameWithType: WindowMode - fullName: OpenTK.Core.Platform.WindowMode -- uid: OpenTK.Core.Platform.IWindowComponent.SupportedModes - commentId: P:OpenTK.Core.Platform.IWindowComponent.SupportedModes - parent: OpenTK.Core.Platform.IWindowComponent - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SupportedModes - name: SupportedModes - nameWithType: IWindowComponent.SupportedModes - fullName: OpenTK.Core.Platform.IWindowComponent.SupportedModes -- uid: OpenTK.Core.Platform.WindowMode.WindowedFullscreen - commentId: F:OpenTK.Core.Platform.WindowMode.WindowedFullscreen - href: OpenTK.Core.Platform.WindowMode.html#OpenTK_Core_Platform_WindowMode_WindowedFullscreen - name: WindowedFullscreen - nameWithType: WindowMode.WindowedFullscreen - fullName: OpenTK.Core.Platform.WindowMode.WindowedFullscreen -- uid: OpenTK.Core.Platform.WindowMode.ExclusiveFullscreen - commentId: F:OpenTK.Core.Platform.WindowMode.ExclusiveFullscreen - href: OpenTK.Core.Platform.WindowMode.html#OpenTK_Core_Platform_WindowMode_ExclusiveFullscreen - name: ExclusiveFullscreen - nameWithType: WindowMode.ExclusiveFullscreen - fullName: OpenTK.Core.Platform.WindowMode.ExclusiveFullscreen -- uid: OpenTK.Core.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle) - commentId: M:OpenTK.Core.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle) - parent: OpenTK.Core.Platform.IWindowComponent - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetFullscreenDisplay_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_DisplayHandle_ - name: SetFullscreenDisplay(WindowHandle, DisplayHandle) - nameWithType: IWindowComponent.SetFullscreenDisplay(WindowHandle, DisplayHandle) - fullName: OpenTK.Core.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle, OpenTK.Core.Platform.DisplayHandle) - spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle) - name: SetFullscreenDisplay - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetFullscreenDisplay_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_DisplayHandle_ - - name: ( - - uid: OpenTK.Core.Platform.WindowHandle - name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html - - name: ',' - - name: " " - - uid: OpenTK.Core.Platform.DisplayHandle - name: DisplayHandle - href: OpenTK.Core.Platform.DisplayHandle.html - - name: ) - spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle) - name: SetFullscreenDisplay - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetFullscreenDisplay_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_DisplayHandle_ - - name: ( - - uid: OpenTK.Core.Platform.WindowHandle - name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html - - name: ',' - - name: " " - - uid: OpenTK.Core.Platform.DisplayHandle - name: DisplayHandle - href: OpenTK.Core.Platform.DisplayHandle.html - - name: ) -- uid: OpenTK.Core.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle,OpenTK.Core.Platform.VideoMode) - commentId: M:OpenTK.Core.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle,OpenTK.Core.Platform.VideoMode) - parent: OpenTK.Core.Platform.IWindowComponent - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetFullscreenDisplay_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_DisplayHandle_OpenTK_Core_Platform_VideoMode_ - name: SetFullscreenDisplay(WindowHandle, DisplayHandle, VideoMode) - nameWithType: IWindowComponent.SetFullscreenDisplay(WindowHandle, DisplayHandle, VideoMode) - fullName: OpenTK.Core.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle, OpenTK.Core.Platform.DisplayHandle, OpenTK.Core.Platform.VideoMode) - spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle,OpenTK.Core.Platform.VideoMode) - name: SetFullscreenDisplay - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetFullscreenDisplay_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_DisplayHandle_OpenTK_Core_Platform_VideoMode_ - - name: ( - - uid: OpenTK.Core.Platform.WindowHandle - name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html - - name: ',' - - name: " " - - uid: OpenTK.Core.Platform.DisplayHandle - name: DisplayHandle - href: OpenTK.Core.Platform.DisplayHandle.html - - name: ',' - - name: " " - - uid: OpenTK.Core.Platform.VideoMode - name: VideoMode - href: OpenTK.Core.Platform.VideoMode.html - - name: ) - spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle,OpenTK.Core.Platform.VideoMode) - name: SetFullscreenDisplay - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetFullscreenDisplay_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_DisplayHandle_OpenTK_Core_Platform_VideoMode_ - - name: ( - - uid: OpenTK.Core.Platform.WindowHandle - name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html - - name: ',' - - name: " " - - uid: OpenTK.Core.Platform.DisplayHandle - name: DisplayHandle - href: OpenTK.Core.Platform.DisplayHandle.html - - name: ',' - - name: " " - - uid: OpenTK.Core.Platform.VideoMode - name: VideoMode - href: OpenTK.Core.Platform.VideoMode.html - - name: ) -- uid: System.ArgumentOutOfRangeException - commentId: T:System.ArgumentOutOfRangeException - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.argumentoutofrangeexception - name: ArgumentOutOfRangeException - nameWithType: ArgumentOutOfRangeException - fullName: System.ArgumentOutOfRangeException -- uid: OpenTK.Core.Platform.IWindowComponent.SetMode* - commentId: Overload:OpenTK.Core.Platform.IWindowComponent.SetMode - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetMode_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_WindowMode_ - name: SetMode - nameWithType: IWindowComponent.SetMode - fullName: OpenTK.Core.Platform.IWindowComponent.SetMode -- uid: OpenTK.Core.Platform.IWindowComponent.SetFullscreenDisplay* - commentId: Overload:OpenTK.Core.Platform.IWindowComponent.SetFullscreenDisplay - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetFullscreenDisplay_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_DisplayHandle_ - name: SetFullscreenDisplay - nameWithType: IWindowComponent.SetFullscreenDisplay - fullName: OpenTK.Core.Platform.IWindowComponent.SetFullscreenDisplay -- uid: OpenTK.Core.Platform.IDisplayComponent.GetSupportedVideoModes(OpenTK.Core.Platform.DisplayHandle) - commentId: M:OpenTK.Core.Platform.IDisplayComponent.GetSupportedVideoModes(OpenTK.Core.Platform.DisplayHandle) - parent: OpenTK.Core.Platform.IDisplayComponent - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_GetSupportedVideoModes_OpenTK_Core_Platform_DisplayHandle_ - name: GetSupportedVideoModes(DisplayHandle) - nameWithType: IDisplayComponent.GetSupportedVideoModes(DisplayHandle) - fullName: OpenTK.Core.Platform.IDisplayComponent.GetSupportedVideoModes(OpenTK.Core.Platform.DisplayHandle) - spec.csharp: - - uid: OpenTK.Core.Platform.IDisplayComponent.GetSupportedVideoModes(OpenTK.Core.Platform.DisplayHandle) - name: GetSupportedVideoModes - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_GetSupportedVideoModes_OpenTK_Core_Platform_DisplayHandle_ - - name: ( - - uid: OpenTK.Core.Platform.DisplayHandle - name: DisplayHandle - href: OpenTK.Core.Platform.DisplayHandle.html - - name: ) - spec.vb: - - uid: OpenTK.Core.Platform.IDisplayComponent.GetSupportedVideoModes(OpenTK.Core.Platform.DisplayHandle) - name: GetSupportedVideoModes - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_GetSupportedVideoModes_OpenTK_Core_Platform_DisplayHandle_ - - name: ( - - uid: OpenTK.Core.Platform.DisplayHandle - name: DisplayHandle - href: OpenTK.Core.Platform.DisplayHandle.html - - name: ) -- uid: OpenTK.Core.Platform.VideoMode - commentId: T:OpenTK.Core.Platform.VideoMode - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.VideoMode.html - name: VideoMode - nameWithType: VideoMode - fullName: OpenTK.Core.Platform.VideoMode -- uid: OpenTK.Core.Platform.IDisplayComponent - commentId: T:OpenTK.Core.Platform.IDisplayComponent - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.IDisplayComponent.html - name: IDisplayComponent - nameWithType: IDisplayComponent - fullName: OpenTK.Core.Platform.IDisplayComponent -- uid: OpenTK.Core.Platform.IWindowComponent.GetFullscreenDisplay* - commentId: Overload:OpenTK.Core.Platform.IWindowComponent.GetFullscreenDisplay - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetFullscreenDisplay_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_DisplayHandle__ - name: GetFullscreenDisplay - nameWithType: IWindowComponent.GetFullscreenDisplay - fullName: OpenTK.Core.Platform.IWindowComponent.GetFullscreenDisplay -- uid: OpenTK.Core.Platform.IWindowComponent.GetBorderStyle* - commentId: Overload:OpenTK.Core.Platform.IWindowComponent.GetBorderStyle - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetBorderStyle_OpenTK_Core_Platform_WindowHandle_ - name: GetBorderStyle - nameWithType: IWindowComponent.GetBorderStyle - fullName: OpenTK.Core.Platform.IWindowComponent.GetBorderStyle -- uid: OpenTK.Core.Platform.WindowBorderStyle - commentId: T:OpenTK.Core.Platform.WindowBorderStyle - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.WindowBorderStyle.html - name: WindowBorderStyle - nameWithType: WindowBorderStyle - fullName: OpenTK.Core.Platform.WindowBorderStyle -- uid: OpenTK.Core.Platform.IWindowComponent.SupportedStyles - commentId: P:OpenTK.Core.Platform.IWindowComponent.SupportedStyles - parent: OpenTK.Core.Platform.IWindowComponent - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SupportedStyles - name: SupportedStyles - nameWithType: IWindowComponent.SupportedStyles - fullName: OpenTK.Core.Platform.IWindowComponent.SupportedStyles -- uid: OpenTK.Core.Platform.IWindowComponent.SetBorderStyle* - commentId: Overload:OpenTK.Core.Platform.IWindowComponent.SetBorderStyle - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetBorderStyle_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_WindowBorderStyle_ - name: SetBorderStyle - nameWithType: IWindowComponent.SetBorderStyle - fullName: OpenTK.Core.Platform.IWindowComponent.SetBorderStyle -- uid: OpenTK.Core.Platform.IWindowComponent.SetAlwaysOnTop* - commentId: Overload:OpenTK.Core.Platform.IWindowComponent.SetAlwaysOnTop - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetAlwaysOnTop_OpenTK_Core_Platform_WindowHandle_System_Boolean_ - name: SetAlwaysOnTop - nameWithType: IWindowComponent.SetAlwaysOnTop - fullName: OpenTK.Core.Platform.IWindowComponent.SetAlwaysOnTop -- uid: OpenTK.Core.Platform.IWindowComponent.IsAlwaysOnTop* - commentId: Overload:OpenTK.Core.Platform.IWindowComponent.IsAlwaysOnTop - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_IsAlwaysOnTop_OpenTK_Core_Platform_WindowHandle_ - name: IsAlwaysOnTop - nameWithType: IWindowComponent.IsAlwaysOnTop - fullName: OpenTK.Core.Platform.IWindowComponent.IsAlwaysOnTop -- uid: OpenTK.Core.Platform.IWindowComponent.SetHitTestCallback* - commentId: Overload:OpenTK.Core.Platform.IWindowComponent.SetHitTestCallback - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetHitTestCallback_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_HitTest_ - name: SetHitTestCallback - nameWithType: IWindowComponent.SetHitTestCallback - fullName: OpenTK.Core.Platform.IWindowComponent.SetHitTestCallback -- uid: OpenTK.Core.Platform.HitTest - commentId: T:OpenTK.Core.Platform.HitTest - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.HitTest.html - name: HitTest - nameWithType: HitTest - fullName: OpenTK.Core.Platform.HitTest -- uid: OpenTK.Core.Platform.IWindowComponent.CanSetCursor - commentId: P:OpenTK.Core.Platform.IWindowComponent.CanSetCursor - parent: OpenTK.Core.Platform.IWindowComponent - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_CanSetCursor - name: CanSetCursor - nameWithType: IWindowComponent.CanSetCursor - fullName: OpenTK.Core.Platform.IWindowComponent.CanSetCursor -- uid: OpenTK.Core.Platform.IWindowComponent.SetCursor* - commentId: Overload:OpenTK.Core.Platform.IWindowComponent.SetCursor - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetCursor_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_CursorHandle_ - name: SetCursor - nameWithType: IWindowComponent.SetCursor - fullName: OpenTK.Core.Platform.IWindowComponent.SetCursor -- uid: OpenTK.Core.Platform.CursorHandle - commentId: T:OpenTK.Core.Platform.CursorHandle - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.CursorHandle.html - name: CursorHandle - nameWithType: CursorHandle - fullName: OpenTK.Core.Platform.CursorHandle -- uid: OpenTK.Core.Platform.IWindowComponent.SetCursorCaptureMode(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.CursorCaptureMode) - commentId: M:OpenTK.Core.Platform.IWindowComponent.SetCursorCaptureMode(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.CursorCaptureMode) - parent: OpenTK.Core.Platform.IWindowComponent - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetCursorCaptureMode_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_CursorCaptureMode_ - name: SetCursorCaptureMode(WindowHandle, CursorCaptureMode) - nameWithType: IWindowComponent.SetCursorCaptureMode(WindowHandle, CursorCaptureMode) - fullName: OpenTK.Core.Platform.IWindowComponent.SetCursorCaptureMode(OpenTK.Core.Platform.WindowHandle, OpenTK.Core.Platform.CursorCaptureMode) - spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.SetCursorCaptureMode(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.CursorCaptureMode) - name: SetCursorCaptureMode - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetCursorCaptureMode_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_CursorCaptureMode_ - - name: ( - - uid: OpenTK.Core.Platform.WindowHandle - name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html - - name: ',' - - name: " " - - uid: OpenTK.Core.Platform.CursorCaptureMode - name: CursorCaptureMode - href: OpenTK.Core.Platform.CursorCaptureMode.html - - name: ) - spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.SetCursorCaptureMode(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.CursorCaptureMode) - name: SetCursorCaptureMode - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetCursorCaptureMode_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_CursorCaptureMode_ - - name: ( - - uid: OpenTK.Core.Platform.WindowHandle - name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html - - name: ',' - - name: " " - - uid: OpenTK.Core.Platform.CursorCaptureMode - name: CursorCaptureMode - href: OpenTK.Core.Platform.CursorCaptureMode.html - - name: ) -- uid: OpenTK.Core.Platform.IWindowComponent.GetCursorCaptureMode* - commentId: Overload:OpenTK.Core.Platform.IWindowComponent.GetCursorCaptureMode - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetCursorCaptureMode_OpenTK_Core_Platform_WindowHandle_ - name: GetCursorCaptureMode - nameWithType: IWindowComponent.GetCursorCaptureMode - fullName: OpenTK.Core.Platform.IWindowComponent.GetCursorCaptureMode -- uid: OpenTK.Core.Platform.CursorCaptureMode - commentId: T:OpenTK.Core.Platform.CursorCaptureMode - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.CursorCaptureMode.html - name: CursorCaptureMode - nameWithType: CursorCaptureMode - fullName: OpenTK.Core.Platform.CursorCaptureMode -- uid: OpenTK.Core.Platform.IWindowComponent.SetCursorCaptureMode* - commentId: Overload:OpenTK.Core.Platform.IWindowComponent.SetCursorCaptureMode - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetCursorCaptureMode_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_CursorCaptureMode_ - name: SetCursorCaptureMode - nameWithType: IWindowComponent.SetCursorCaptureMode - fullName: OpenTK.Core.Platform.IWindowComponent.SetCursorCaptureMode -- uid: OpenTK.Core.Platform.IWindowComponent.IsFocused* - commentId: Overload:OpenTK.Core.Platform.IWindowComponent.IsFocused - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_IsFocused_OpenTK_Core_Platform_WindowHandle_ - name: IsFocused - nameWithType: IWindowComponent.IsFocused - fullName: OpenTK.Core.Platform.IWindowComponent.IsFocused -- uid: OpenTK.Core.Platform.IWindowComponent.FocusWindow* - commentId: Overload:OpenTK.Core.Platform.IWindowComponent.FocusWindow - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_FocusWindow_OpenTK_Core_Platform_WindowHandle_ - name: FocusWindow - nameWithType: IWindowComponent.FocusWindow - fullName: OpenTK.Core.Platform.IWindowComponent.FocusWindow -- uid: OpenTK.Core.Platform.IWindowComponent.RequestAttention* - commentId: Overload:OpenTK.Core.Platform.IWindowComponent.RequestAttention - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_RequestAttention_OpenTK_Core_Platform_WindowHandle_ - name: RequestAttention - nameWithType: IWindowComponent.RequestAttention - fullName: OpenTK.Core.Platform.IWindowComponent.RequestAttention -- uid: OpenTK.Core.Platform.IWindowComponent.ScreenToClient* - commentId: Overload:OpenTK.Core.Platform.IWindowComponent.ScreenToClient - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_ScreenToClient_OpenTK_Core_Platform_WindowHandle_System_Int32_System_Int32_System_Int32__System_Int32__ - name: ScreenToClient - nameWithType: IWindowComponent.ScreenToClient - fullName: OpenTK.Core.Platform.IWindowComponent.ScreenToClient -- uid: OpenTK.Core.Platform.IWindowComponent.ClientToScreen* - commentId: Overload:OpenTK.Core.Platform.IWindowComponent.ClientToScreen - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_ClientToScreen_OpenTK_Core_Platform_WindowHandle_System_Int32_System_Int32_System_Int32__System_Int32__ - name: ClientToScreen - nameWithType: IWindowComponent.ClientToScreen - fullName: OpenTK.Core.Platform.IWindowComponent.ClientToScreen -- uid: OpenTK.Core.Platform.WindowScaleChangeEventArgs - commentId: T:OpenTK.Core.Platform.WindowScaleChangeEventArgs - href: OpenTK.Core.Platform.WindowScaleChangeEventArgs.html - name: WindowScaleChangeEventArgs - nameWithType: WindowScaleChangeEventArgs - fullName: OpenTK.Core.Platform.WindowScaleChangeEventArgs -- uid: OpenTK.Core.Platform.IWindowComponent.GetScaleFactor* - commentId: Overload:OpenTK.Core.Platform.IWindowComponent.GetScaleFactor - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetScaleFactor_OpenTK_Core_Platform_WindowHandle_System_Single__System_Single__ - name: GetScaleFactor - nameWithType: IWindowComponent.GetScaleFactor - fullName: OpenTK.Core.Platform.IWindowComponent.GetScaleFactor -- uid: System.Single - commentId: T:System.Single - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.single - name: float - nameWithType: float - fullName: float - nameWithType.vb: Single - fullName.vb: Single - name.vb: Single diff --git a/api/OpenTK.Core.Platform.JoystickAxis.yml b/api/OpenTK.Core.Platform.JoystickAxis.yml deleted file mode 100644 index 321aa7bf..00000000 --- a/api/OpenTK.Core.Platform.JoystickAxis.yml +++ /dev/null @@ -1,230 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: OpenTK.Core.Platform.JoystickAxis - commentId: T:OpenTK.Core.Platform.JoystickAxis - id: JoystickAxis - parent: OpenTK.Core.Platform - children: - - OpenTK.Core.Platform.JoystickAxis.LeftTrigger - - OpenTK.Core.Platform.JoystickAxis.LeftXAxis - - OpenTK.Core.Platform.JoystickAxis.LeftYAxis - - OpenTK.Core.Platform.JoystickAxis.RightTrigger - - OpenTK.Core.Platform.JoystickAxis.RightXAxis - - OpenTK.Core.Platform.JoystickAxis.RightYAxis - langs: - - csharp - - vb - name: JoystickAxis - nameWithType: JoystickAxis - fullName: OpenTK.Core.Platform.JoystickAxis - type: Enum - source: - remote: - path: src/OpenTK.Core/Platform/Enums/JoystickAxis.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: JoystickAxis - path: opentk/src/OpenTK.Core/Platform/Enums/JoystickAxis.cs - startLine: 11 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Represents a joysick axis. - example: [] - syntax: - content: public enum JoystickAxis - content.vb: Public Enum JoystickAxis -- uid: OpenTK.Core.Platform.JoystickAxis.LeftXAxis - commentId: F:OpenTK.Core.Platform.JoystickAxis.LeftXAxis - id: LeftXAxis - parent: OpenTK.Core.Platform.JoystickAxis - langs: - - csharp - - vb - name: LeftXAxis - nameWithType: JoystickAxis.LeftXAxis - fullName: OpenTK.Core.Platform.JoystickAxis.LeftXAxis - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/JoystickAxis.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: LeftXAxis - path: opentk/src/OpenTK.Core/Platform/Enums/JoystickAxis.cs - startLine: 13 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: LeftXAxis = 0 - return: - type: OpenTK.Core.Platform.JoystickAxis -- uid: OpenTK.Core.Platform.JoystickAxis.LeftYAxis - commentId: F:OpenTK.Core.Platform.JoystickAxis.LeftYAxis - id: LeftYAxis - parent: OpenTK.Core.Platform.JoystickAxis - langs: - - csharp - - vb - name: LeftYAxis - nameWithType: JoystickAxis.LeftYAxis - fullName: OpenTK.Core.Platform.JoystickAxis.LeftYAxis - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/JoystickAxis.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: LeftYAxis - path: opentk/src/OpenTK.Core/Platform/Enums/JoystickAxis.cs - startLine: 14 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: LeftYAxis = 1 - return: - type: OpenTK.Core.Platform.JoystickAxis -- uid: OpenTK.Core.Platform.JoystickAxis.RightYAxis - commentId: F:OpenTK.Core.Platform.JoystickAxis.RightYAxis - id: RightYAxis - parent: OpenTK.Core.Platform.JoystickAxis - langs: - - csharp - - vb - name: RightYAxis - nameWithType: JoystickAxis.RightYAxis - fullName: OpenTK.Core.Platform.JoystickAxis.RightYAxis - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/JoystickAxis.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: RightYAxis - path: opentk/src/OpenTK.Core/Platform/Enums/JoystickAxis.cs - startLine: 16 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: RightYAxis = 2 - return: - type: OpenTK.Core.Platform.JoystickAxis -- uid: OpenTK.Core.Platform.JoystickAxis.RightXAxis - commentId: F:OpenTK.Core.Platform.JoystickAxis.RightXAxis - id: RightXAxis - parent: OpenTK.Core.Platform.JoystickAxis - langs: - - csharp - - vb - name: RightXAxis - nameWithType: JoystickAxis.RightXAxis - fullName: OpenTK.Core.Platform.JoystickAxis.RightXAxis - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/JoystickAxis.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: RightXAxis - path: opentk/src/OpenTK.Core/Platform/Enums/JoystickAxis.cs - startLine: 17 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: RightXAxis = 3 - return: - type: OpenTK.Core.Platform.JoystickAxis -- uid: OpenTK.Core.Platform.JoystickAxis.LeftTrigger - commentId: F:OpenTK.Core.Platform.JoystickAxis.LeftTrigger - id: LeftTrigger - parent: OpenTK.Core.Platform.JoystickAxis - langs: - - csharp - - vb - name: LeftTrigger - nameWithType: JoystickAxis.LeftTrigger - fullName: OpenTK.Core.Platform.JoystickAxis.LeftTrigger - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/JoystickAxis.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: LeftTrigger - path: opentk/src/OpenTK.Core/Platform/Enums/JoystickAxis.cs - startLine: 19 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: LeftTrigger = 4 - return: - type: OpenTK.Core.Platform.JoystickAxis -- uid: OpenTK.Core.Platform.JoystickAxis.RightTrigger - commentId: F:OpenTK.Core.Platform.JoystickAxis.RightTrigger - id: RightTrigger - parent: OpenTK.Core.Platform.JoystickAxis - langs: - - csharp - - vb - name: RightTrigger - nameWithType: JoystickAxis.RightTrigger - fullName: OpenTK.Core.Platform.JoystickAxis.RightTrigger - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/JoystickAxis.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: RightTrigger - path: opentk/src/OpenTK.Core/Platform/Enums/JoystickAxis.cs - startLine: 20 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: RightTrigger = 5 - return: - type: OpenTK.Core.Platform.JoystickAxis -references: -- uid: OpenTK.Core.Platform - commentId: N:OpenTK.Core.Platform - href: OpenTK.html - name: OpenTK.Core.Platform - nameWithType: OpenTK.Core.Platform - fullName: OpenTK.Core.Platform - spec.csharp: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform - name: Platform - href: OpenTK.Core.Platform.html - spec.vb: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform - name: Platform - href: OpenTK.Core.Platform.html -- uid: OpenTK.Core.Platform.JoystickAxis - commentId: T:OpenTK.Core.Platform.JoystickAxis - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.JoystickAxis.html - name: JoystickAxis - nameWithType: JoystickAxis - fullName: OpenTK.Core.Platform.JoystickAxis diff --git a/api/OpenTK.Core.Platform.JoystickButton.yml b/api/OpenTK.Core.Platform.JoystickButton.yml deleted file mode 100644 index b15eabd8..00000000 --- a/api/OpenTK.Core.Platform.JoystickButton.yml +++ /dev/null @@ -1,446 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: OpenTK.Core.Platform.JoystickButton - commentId: T:OpenTK.Core.Platform.JoystickButton - id: JoystickButton - parent: OpenTK.Core.Platform - children: - - OpenTK.Core.Platform.JoystickButton.A - - OpenTK.Core.Platform.JoystickButton.B - - OpenTK.Core.Platform.JoystickButton.Back - - OpenTK.Core.Platform.JoystickButton.DPadDown - - OpenTK.Core.Platform.JoystickButton.DPadLeft - - OpenTK.Core.Platform.JoystickButton.DPadRight - - OpenTK.Core.Platform.JoystickButton.DPadUp - - OpenTK.Core.Platform.JoystickButton.LeftShoulder - - OpenTK.Core.Platform.JoystickButton.LeftThumb - - OpenTK.Core.Platform.JoystickButton.RightShoulder - - OpenTK.Core.Platform.JoystickButton.RightThumb - - OpenTK.Core.Platform.JoystickButton.Start - - OpenTK.Core.Platform.JoystickButton.X - - OpenTK.Core.Platform.JoystickButton.Y - langs: - - csharp - - vb - name: JoystickButton - nameWithType: JoystickButton - fullName: OpenTK.Core.Platform.JoystickButton - type: Enum - source: - remote: - path: src/OpenTK.Core/Platform/Enums/JoystickButton.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: JoystickButton - path: opentk/src/OpenTK.Core/Platform/Enums/JoystickButton.cs - startLine: 11 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Represents a button on a joystick. - example: [] - syntax: - content: public enum JoystickButton - content.vb: Public Enum JoystickButton -- uid: OpenTK.Core.Platform.JoystickButton.A - commentId: F:OpenTK.Core.Platform.JoystickButton.A - id: A - parent: OpenTK.Core.Platform.JoystickButton - langs: - - csharp - - vb - name: A - nameWithType: JoystickButton.A - fullName: OpenTK.Core.Platform.JoystickButton.A - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/JoystickButton.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: A - path: opentk/src/OpenTK.Core/Platform/Enums/JoystickButton.cs - startLine: 13 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: A = 0 - return: - type: OpenTK.Core.Platform.JoystickButton -- uid: OpenTK.Core.Platform.JoystickButton.B - commentId: F:OpenTK.Core.Platform.JoystickButton.B - id: B - parent: OpenTK.Core.Platform.JoystickButton - langs: - - csharp - - vb - name: B - nameWithType: JoystickButton.B - fullName: OpenTK.Core.Platform.JoystickButton.B - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/JoystickButton.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: B - path: opentk/src/OpenTK.Core/Platform/Enums/JoystickButton.cs - startLine: 14 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: B = 1 - return: - type: OpenTK.Core.Platform.JoystickButton -- uid: OpenTK.Core.Platform.JoystickButton.X - commentId: F:OpenTK.Core.Platform.JoystickButton.X - id: X - parent: OpenTK.Core.Platform.JoystickButton - langs: - - csharp - - vb - name: X - nameWithType: JoystickButton.X - fullName: OpenTK.Core.Platform.JoystickButton.X - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/JoystickButton.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: X - path: opentk/src/OpenTK.Core/Platform/Enums/JoystickButton.cs - startLine: 15 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: X = 2 - return: - type: OpenTK.Core.Platform.JoystickButton -- uid: OpenTK.Core.Platform.JoystickButton.Y - commentId: F:OpenTK.Core.Platform.JoystickButton.Y - id: Y - parent: OpenTK.Core.Platform.JoystickButton - langs: - - csharp - - vb - name: Y - nameWithType: JoystickButton.Y - fullName: OpenTK.Core.Platform.JoystickButton.Y - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/JoystickButton.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Y - path: opentk/src/OpenTK.Core/Platform/Enums/JoystickButton.cs - startLine: 16 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: Y = 3 - return: - type: OpenTK.Core.Platform.JoystickButton -- uid: OpenTK.Core.Platform.JoystickButton.Start - commentId: F:OpenTK.Core.Platform.JoystickButton.Start - id: Start - parent: OpenTK.Core.Platform.JoystickButton - langs: - - csharp - - vb - name: Start - nameWithType: JoystickButton.Start - fullName: OpenTK.Core.Platform.JoystickButton.Start - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/JoystickButton.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Start - path: opentk/src/OpenTK.Core/Platform/Enums/JoystickButton.cs - startLine: 17 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: Start = 4 - return: - type: OpenTK.Core.Platform.JoystickButton -- uid: OpenTK.Core.Platform.JoystickButton.Back - commentId: F:OpenTK.Core.Platform.JoystickButton.Back - id: Back - parent: OpenTK.Core.Platform.JoystickButton - langs: - - csharp - - vb - name: Back - nameWithType: JoystickButton.Back - fullName: OpenTK.Core.Platform.JoystickButton.Back - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/JoystickButton.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Back - path: opentk/src/OpenTK.Core/Platform/Enums/JoystickButton.cs - startLine: 18 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: Back = 5 - return: - type: OpenTK.Core.Platform.JoystickButton -- uid: OpenTK.Core.Platform.JoystickButton.LeftThumb - commentId: F:OpenTK.Core.Platform.JoystickButton.LeftThumb - id: LeftThumb - parent: OpenTK.Core.Platform.JoystickButton - langs: - - csharp - - vb - name: LeftThumb - nameWithType: JoystickButton.LeftThumb - fullName: OpenTK.Core.Platform.JoystickButton.LeftThumb - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/JoystickButton.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: LeftThumb - path: opentk/src/OpenTK.Core/Platform/Enums/JoystickButton.cs - startLine: 19 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: LeftThumb = 6 - return: - type: OpenTK.Core.Platform.JoystickButton -- uid: OpenTK.Core.Platform.JoystickButton.RightThumb - commentId: F:OpenTK.Core.Platform.JoystickButton.RightThumb - id: RightThumb - parent: OpenTK.Core.Platform.JoystickButton - langs: - - csharp - - vb - name: RightThumb - nameWithType: JoystickButton.RightThumb - fullName: OpenTK.Core.Platform.JoystickButton.RightThumb - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/JoystickButton.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: RightThumb - path: opentk/src/OpenTK.Core/Platform/Enums/JoystickButton.cs - startLine: 20 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: RightThumb = 7 - return: - type: OpenTK.Core.Platform.JoystickButton -- uid: OpenTK.Core.Platform.JoystickButton.LeftShoulder - commentId: F:OpenTK.Core.Platform.JoystickButton.LeftShoulder - id: LeftShoulder - parent: OpenTK.Core.Platform.JoystickButton - langs: - - csharp - - vb - name: LeftShoulder - nameWithType: JoystickButton.LeftShoulder - fullName: OpenTK.Core.Platform.JoystickButton.LeftShoulder - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/JoystickButton.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: LeftShoulder - path: opentk/src/OpenTK.Core/Platform/Enums/JoystickButton.cs - startLine: 21 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: LeftShoulder = 8 - return: - type: OpenTK.Core.Platform.JoystickButton -- uid: OpenTK.Core.Platform.JoystickButton.RightShoulder - commentId: F:OpenTK.Core.Platform.JoystickButton.RightShoulder - id: RightShoulder - parent: OpenTK.Core.Platform.JoystickButton - langs: - - csharp - - vb - name: RightShoulder - nameWithType: JoystickButton.RightShoulder - fullName: OpenTK.Core.Platform.JoystickButton.RightShoulder - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/JoystickButton.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: RightShoulder - path: opentk/src/OpenTK.Core/Platform/Enums/JoystickButton.cs - startLine: 22 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: RightShoulder = 9 - return: - type: OpenTK.Core.Platform.JoystickButton -- uid: OpenTK.Core.Platform.JoystickButton.DPadUp - commentId: F:OpenTK.Core.Platform.JoystickButton.DPadUp - id: DPadUp - parent: OpenTK.Core.Platform.JoystickButton - langs: - - csharp - - vb - name: DPadUp - nameWithType: JoystickButton.DPadUp - fullName: OpenTK.Core.Platform.JoystickButton.DPadUp - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/JoystickButton.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: DPadUp - path: opentk/src/OpenTK.Core/Platform/Enums/JoystickButton.cs - startLine: 23 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: DPadUp = 10 - return: - type: OpenTK.Core.Platform.JoystickButton -- uid: OpenTK.Core.Platform.JoystickButton.DPadDown - commentId: F:OpenTK.Core.Platform.JoystickButton.DPadDown - id: DPadDown - parent: OpenTK.Core.Platform.JoystickButton - langs: - - csharp - - vb - name: DPadDown - nameWithType: JoystickButton.DPadDown - fullName: OpenTK.Core.Platform.JoystickButton.DPadDown - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/JoystickButton.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: DPadDown - path: opentk/src/OpenTK.Core/Platform/Enums/JoystickButton.cs - startLine: 24 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: DPadDown = 11 - return: - type: OpenTK.Core.Platform.JoystickButton -- uid: OpenTK.Core.Platform.JoystickButton.DPadLeft - commentId: F:OpenTK.Core.Platform.JoystickButton.DPadLeft - id: DPadLeft - parent: OpenTK.Core.Platform.JoystickButton - langs: - - csharp - - vb - name: DPadLeft - nameWithType: JoystickButton.DPadLeft - fullName: OpenTK.Core.Platform.JoystickButton.DPadLeft - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/JoystickButton.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: DPadLeft - path: opentk/src/OpenTK.Core/Platform/Enums/JoystickButton.cs - startLine: 25 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: DPadLeft = 12 - return: - type: OpenTK.Core.Platform.JoystickButton -- uid: OpenTK.Core.Platform.JoystickButton.DPadRight - commentId: F:OpenTK.Core.Platform.JoystickButton.DPadRight - id: DPadRight - parent: OpenTK.Core.Platform.JoystickButton - langs: - - csharp - - vb - name: DPadRight - nameWithType: JoystickButton.DPadRight - fullName: OpenTK.Core.Platform.JoystickButton.DPadRight - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/JoystickButton.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: DPadRight - path: opentk/src/OpenTK.Core/Platform/Enums/JoystickButton.cs - startLine: 26 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: DPadRight = 13 - return: - type: OpenTK.Core.Platform.JoystickButton -references: -- uid: OpenTK.Core.Platform - commentId: N:OpenTK.Core.Platform - href: OpenTK.html - name: OpenTK.Core.Platform - nameWithType: OpenTK.Core.Platform - fullName: OpenTK.Core.Platform - spec.csharp: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform - name: Platform - href: OpenTK.Core.Platform.html - spec.vb: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform - name: Platform - href: OpenTK.Core.Platform.html -- uid: OpenTK.Core.Platform.JoystickButton - commentId: T:OpenTK.Core.Platform.JoystickButton - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.JoystickButton.html - name: JoystickButton - nameWithType: JoystickButton - fullName: OpenTK.Core.Platform.JoystickButton diff --git a/api/OpenTK.Core.Platform.Key.yml b/api/OpenTK.Core.Platform.Key.yml deleted file mode 100644 index f4361b0a..00000000 --- a/api/OpenTK.Core.Platform.Key.yml +++ /dev/null @@ -1,3888 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: OpenTK.Core.Platform.Key - commentId: T:OpenTK.Core.Platform.Key - id: Key - parent: OpenTK.Core.Platform - children: - - OpenTK.Core.Platform.Key.A - - OpenTK.Core.Platform.Key.Application - - OpenTK.Core.Platform.Key.B - - OpenTK.Core.Platform.Key.Backspace - - OpenTK.Core.Platform.Key.C - - OpenTK.Core.Platform.Key.CapsLock - - OpenTK.Core.Platform.Key.Comma - - OpenTK.Core.Platform.Key.D - - OpenTK.Core.Platform.Key.D0 - - OpenTK.Core.Platform.Key.D1 - - OpenTK.Core.Platform.Key.D2 - - OpenTK.Core.Platform.Key.D3 - - OpenTK.Core.Platform.Key.D4 - - OpenTK.Core.Platform.Key.D5 - - OpenTK.Core.Platform.Key.D6 - - OpenTK.Core.Platform.Key.D7 - - OpenTK.Core.Platform.Key.D8 - - OpenTK.Core.Platform.Key.D9 - - OpenTK.Core.Platform.Key.Delete - - OpenTK.Core.Platform.Key.DownArrow - - OpenTK.Core.Platform.Key.E - - OpenTK.Core.Platform.Key.End - - OpenTK.Core.Platform.Key.Escape - - OpenTK.Core.Platform.Key.F - - OpenTK.Core.Platform.Key.F1 - - OpenTK.Core.Platform.Key.F10 - - OpenTK.Core.Platform.Key.F11 - - OpenTK.Core.Platform.Key.F12 - - OpenTK.Core.Platform.Key.F13 - - OpenTK.Core.Platform.Key.F14 - - OpenTK.Core.Platform.Key.F15 - - OpenTK.Core.Platform.Key.F16 - - OpenTK.Core.Platform.Key.F17 - - OpenTK.Core.Platform.Key.F18 - - OpenTK.Core.Platform.Key.F19 - - OpenTK.Core.Platform.Key.F2 - - OpenTK.Core.Platform.Key.F20 - - OpenTK.Core.Platform.Key.F21 - - OpenTK.Core.Platform.Key.F22 - - OpenTK.Core.Platform.Key.F23 - - OpenTK.Core.Platform.Key.F24 - - OpenTK.Core.Platform.Key.F3 - - OpenTK.Core.Platform.Key.F4 - - OpenTK.Core.Platform.Key.F5 - - OpenTK.Core.Platform.Key.F6 - - OpenTK.Core.Platform.Key.F7 - - OpenTK.Core.Platform.Key.F8 - - OpenTK.Core.Platform.Key.F9 - - OpenTK.Core.Platform.Key.G - - OpenTK.Core.Platform.Key.H - - OpenTK.Core.Platform.Key.Help - - OpenTK.Core.Platform.Key.Home - - OpenTK.Core.Platform.Key.I - - OpenTK.Core.Platform.Key.Insert - - OpenTK.Core.Platform.Key.J - - OpenTK.Core.Platform.Key.K - - OpenTK.Core.Platform.Key.Keypad0 - - OpenTK.Core.Platform.Key.Keypad1 - - OpenTK.Core.Platform.Key.Keypad2 - - OpenTK.Core.Platform.Key.Keypad3 - - OpenTK.Core.Platform.Key.Keypad4 - - OpenTK.Core.Platform.Key.Keypad5 - - OpenTK.Core.Platform.Key.Keypad6 - - OpenTK.Core.Platform.Key.Keypad7 - - OpenTK.Core.Platform.Key.Keypad8 - - OpenTK.Core.Platform.Key.Keypad9 - - OpenTK.Core.Platform.Key.KeypadAdd - - OpenTK.Core.Platform.Key.KeypadDecimal - - OpenTK.Core.Platform.Key.KeypadDivide - - OpenTK.Core.Platform.Key.KeypadEnter - - OpenTK.Core.Platform.Key.KeypadEqual - - OpenTK.Core.Platform.Key.KeypadMultiply - - OpenTK.Core.Platform.Key.KeypadSeparator - - OpenTK.Core.Platform.Key.KeypadSubtract - - OpenTK.Core.Platform.Key.L - - OpenTK.Core.Platform.Key.LeftAlt - - OpenTK.Core.Platform.Key.LeftArrow - - OpenTK.Core.Platform.Key.LeftControl - - OpenTK.Core.Platform.Key.LeftGUI - - OpenTK.Core.Platform.Key.LeftShift - - OpenTK.Core.Platform.Key.M - - OpenTK.Core.Platform.Key.Minus - - OpenTK.Core.Platform.Key.Mute - - OpenTK.Core.Platform.Key.N - - OpenTK.Core.Platform.Key.NextTrack - - OpenTK.Core.Platform.Key.NumLock - - OpenTK.Core.Platform.Key.O - - OpenTK.Core.Platform.Key.OEM1 - - OpenTK.Core.Platform.Key.OEM102 - - OpenTK.Core.Platform.Key.OEM2 - - OpenTK.Core.Platform.Key.OEM3 - - OpenTK.Core.Platform.Key.OEM4 - - OpenTK.Core.Platform.Key.OEM5 - - OpenTK.Core.Platform.Key.OEM6 - - OpenTK.Core.Platform.Key.OEM7 - - OpenTK.Core.Platform.Key.OEM8 - - OpenTK.Core.Platform.Key.P - - OpenTK.Core.Platform.Key.PageDown - - OpenTK.Core.Platform.Key.PageUp - - OpenTK.Core.Platform.Key.PauseBreak - - OpenTK.Core.Platform.Key.Period - - OpenTK.Core.Platform.Key.PlayPause - - OpenTK.Core.Platform.Key.Plus - - OpenTK.Core.Platform.Key.PreviousTrack - - OpenTK.Core.Platform.Key.PrintScreen - - OpenTK.Core.Platform.Key.Q - - OpenTK.Core.Platform.Key.R - - OpenTK.Core.Platform.Key.Return - - OpenTK.Core.Platform.Key.RightAlt - - OpenTK.Core.Platform.Key.RightArrow - - OpenTK.Core.Platform.Key.RightControl - - OpenTK.Core.Platform.Key.RightGUI - - OpenTK.Core.Platform.Key.RightShift - - OpenTK.Core.Platform.Key.S - - OpenTK.Core.Platform.Key.ScrollLock - - OpenTK.Core.Platform.Key.Sleep - - OpenTK.Core.Platform.Key.Space - - OpenTK.Core.Platform.Key.Stop - - OpenTK.Core.Platform.Key.T - - OpenTK.Core.Platform.Key.Tab - - OpenTK.Core.Platform.Key.U - - OpenTK.Core.Platform.Key.Unknown - - OpenTK.Core.Platform.Key.UpArrow - - OpenTK.Core.Platform.Key.V - - OpenTK.Core.Platform.Key.VolumeDown - - OpenTK.Core.Platform.Key.VolumeUp - - OpenTK.Core.Platform.Key.W - - OpenTK.Core.Platform.Key.X - - OpenTK.Core.Platform.Key.Y - - OpenTK.Core.Platform.Key.Z - langs: - - csharp - - vb - name: Key - nameWithType: Key - fullName: OpenTK.Core.Platform.Key - type: Enum - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Key.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Key - path: opentk/src/OpenTK.Core/Platform/Enums/Key.cs - startLine: 9 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: public enum Key - content.vb: Public Enum Key -- uid: OpenTK.Core.Platform.Key.Unknown - commentId: F:OpenTK.Core.Platform.Key.Unknown - id: Unknown - parent: OpenTK.Core.Platform.Key - langs: - - csharp - - vb - name: Unknown - nameWithType: Key.Unknown - fullName: OpenTK.Core.Platform.Key.Unknown - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Key.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Unknown - path: opentk/src/OpenTK.Core/Platform/Enums/Key.cs - startLine: 15 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: >- - An unknown key. - - This is likely an error. - example: [] - syntax: - content: Unknown = 0 - return: - type: OpenTK.Core.Platform.Key -- uid: OpenTK.Core.Platform.Key.Backspace - commentId: F:OpenTK.Core.Platform.Key.Backspace - id: Backspace - parent: OpenTK.Core.Platform.Key - langs: - - csharp - - vb - name: Backspace - nameWithType: Key.Backspace - fullName: OpenTK.Core.Platform.Key.Backspace - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Key.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Backspace - path: opentk/src/OpenTK.Core/Platform/Enums/Key.cs - startLine: 22 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: The backspace key. - example: [] - syntax: - content: Backspace = 1 - return: - type: OpenTK.Core.Platform.Key -- uid: OpenTK.Core.Platform.Key.Tab - commentId: F:OpenTK.Core.Platform.Key.Tab - id: Tab - parent: OpenTK.Core.Platform.Key - langs: - - csharp - - vb - name: Tab - nameWithType: Key.Tab - fullName: OpenTK.Core.Platform.Key.Tab - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Key.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Tab - path: opentk/src/OpenTK.Core/Platform/Enums/Key.cs - startLine: 26 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: The tab key. - example: [] - syntax: - content: Tab = 2 - return: - type: OpenTK.Core.Platform.Key -- uid: OpenTK.Core.Platform.Key.Return - commentId: F:OpenTK.Core.Platform.Key.Return - id: Return - parent: OpenTK.Core.Platform.Key - langs: - - csharp - - vb - name: Return - nameWithType: Key.Return - fullName: OpenTK.Core.Platform.Key.Return - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Key.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Return - path: opentk/src/OpenTK.Core/Platform/Enums/Key.cs - startLine: 30 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: The return/enter key. - example: [] - syntax: - content: Return = 3 - return: - type: OpenTK.Core.Platform.Key -- uid: OpenTK.Core.Platform.Key.Escape - commentId: F:OpenTK.Core.Platform.Key.Escape - id: Escape - parent: OpenTK.Core.Platform.Key - langs: - - csharp - - vb - name: Escape - nameWithType: Key.Escape - fullName: OpenTK.Core.Platform.Key.Escape - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Key.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Escape - path: opentk/src/OpenTK.Core/Platform/Enums/Key.cs - startLine: 34 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: The escape key. - example: [] - syntax: - content: Escape = 4 - return: - type: OpenTK.Core.Platform.Key -- uid: OpenTK.Core.Platform.Key.Space - commentId: F:OpenTK.Core.Platform.Key.Space - id: Space - parent: OpenTK.Core.Platform.Key - langs: - - csharp - - vb - name: Space - nameWithType: Key.Space - fullName: OpenTK.Core.Platform.Key.Space - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Key.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Space - path: opentk/src/OpenTK.Core/Platform/Enums/Key.cs - startLine: 39 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: The space key. - example: [] - syntax: - content: Space = 32 - return: - type: OpenTK.Core.Platform.Key -- uid: OpenTK.Core.Platform.Key.D0 - commentId: F:OpenTK.Core.Platform.Key.D0 - id: D0 - parent: OpenTK.Core.Platform.Key - langs: - - csharp - - vb - name: D0 - nameWithType: Key.D0 - fullName: OpenTK.Core.Platform.Key.D0 - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Key.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: D0 - path: opentk/src/OpenTK.Core/Platform/Enums/Key.cs - startLine: 44 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: The 0 key. - example: [] - syntax: - content: D0 = 48 - return: - type: OpenTK.Core.Platform.Key -- uid: OpenTK.Core.Platform.Key.D1 - commentId: F:OpenTK.Core.Platform.Key.D1 - id: D1 - parent: OpenTK.Core.Platform.Key - langs: - - csharp - - vb - name: D1 - nameWithType: Key.D1 - fullName: OpenTK.Core.Platform.Key.D1 - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Key.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: D1 - path: opentk/src/OpenTK.Core/Platform/Enums/Key.cs - startLine: 48 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: The 1 key. - example: [] - syntax: - content: D1 = 49 - return: - type: OpenTK.Core.Platform.Key -- uid: OpenTK.Core.Platform.Key.D2 - commentId: F:OpenTK.Core.Platform.Key.D2 - id: D2 - parent: OpenTK.Core.Platform.Key - langs: - - csharp - - vb - name: D2 - nameWithType: Key.D2 - fullName: OpenTK.Core.Platform.Key.D2 - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Key.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: D2 - path: opentk/src/OpenTK.Core/Platform/Enums/Key.cs - startLine: 52 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: The 2 key. - example: [] - syntax: - content: D2 = 50 - return: - type: OpenTK.Core.Platform.Key -- uid: OpenTK.Core.Platform.Key.D3 - commentId: F:OpenTK.Core.Platform.Key.D3 - id: D3 - parent: OpenTK.Core.Platform.Key - langs: - - csharp - - vb - name: D3 - nameWithType: Key.D3 - fullName: OpenTK.Core.Platform.Key.D3 - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Key.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: D3 - path: opentk/src/OpenTK.Core/Platform/Enums/Key.cs - startLine: 56 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: The 3 key. - example: [] - syntax: - content: D3 = 51 - return: - type: OpenTK.Core.Platform.Key -- uid: OpenTK.Core.Platform.Key.D4 - commentId: F:OpenTK.Core.Platform.Key.D4 - id: D4 - parent: OpenTK.Core.Platform.Key - langs: - - csharp - - vb - name: D4 - nameWithType: Key.D4 - fullName: OpenTK.Core.Platform.Key.D4 - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Key.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: D4 - path: opentk/src/OpenTK.Core/Platform/Enums/Key.cs - startLine: 60 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: The 4 key. - example: [] - syntax: - content: D4 = 52 - return: - type: OpenTK.Core.Platform.Key -- uid: OpenTK.Core.Platform.Key.D5 - commentId: F:OpenTK.Core.Platform.Key.D5 - id: D5 - parent: OpenTK.Core.Platform.Key - langs: - - csharp - - vb - name: D5 - nameWithType: Key.D5 - fullName: OpenTK.Core.Platform.Key.D5 - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Key.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: D5 - path: opentk/src/OpenTK.Core/Platform/Enums/Key.cs - startLine: 64 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: The 5 key. - example: [] - syntax: - content: D5 = 53 - return: - type: OpenTK.Core.Platform.Key -- uid: OpenTK.Core.Platform.Key.D6 - commentId: F:OpenTK.Core.Platform.Key.D6 - id: D6 - parent: OpenTK.Core.Platform.Key - langs: - - csharp - - vb - name: D6 - nameWithType: Key.D6 - fullName: OpenTK.Core.Platform.Key.D6 - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Key.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: D6 - path: opentk/src/OpenTK.Core/Platform/Enums/Key.cs - startLine: 68 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: The 6 key. - example: [] - syntax: - content: D6 = 54 - return: - type: OpenTK.Core.Platform.Key -- uid: OpenTK.Core.Platform.Key.D7 - commentId: F:OpenTK.Core.Platform.Key.D7 - id: D7 - parent: OpenTK.Core.Platform.Key - langs: - - csharp - - vb - name: D7 - nameWithType: Key.D7 - fullName: OpenTK.Core.Platform.Key.D7 - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Key.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: D7 - path: opentk/src/OpenTK.Core/Platform/Enums/Key.cs - startLine: 72 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: The 7 key. - example: [] - syntax: - content: D7 = 55 - return: - type: OpenTK.Core.Platform.Key -- uid: OpenTK.Core.Platform.Key.D8 - commentId: F:OpenTK.Core.Platform.Key.D8 - id: D8 - parent: OpenTK.Core.Platform.Key - langs: - - csharp - - vb - name: D8 - nameWithType: Key.D8 - fullName: OpenTK.Core.Platform.Key.D8 - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Key.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: D8 - path: opentk/src/OpenTK.Core/Platform/Enums/Key.cs - startLine: 76 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: The 8 key. - example: [] - syntax: - content: D8 = 56 - return: - type: OpenTK.Core.Platform.Key -- uid: OpenTK.Core.Platform.Key.D9 - commentId: F:OpenTK.Core.Platform.Key.D9 - id: D9 - parent: OpenTK.Core.Platform.Key - langs: - - csharp - - vb - name: D9 - nameWithType: Key.D9 - fullName: OpenTK.Core.Platform.Key.D9 - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Key.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: D9 - path: opentk/src/OpenTK.Core/Platform/Enums/Key.cs - startLine: 80 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: The 9 key. - example: [] - syntax: - content: D9 = 57 - return: - type: OpenTK.Core.Platform.Key -- uid: OpenTK.Core.Platform.Key.A - commentId: F:OpenTK.Core.Platform.Key.A - id: A - parent: OpenTK.Core.Platform.Key - langs: - - csharp - - vb - name: A - nameWithType: Key.A - fullName: OpenTK.Core.Platform.Key.A - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Key.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: A - path: opentk/src/OpenTK.Core/Platform/Enums/Key.cs - startLine: 85 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: The A key. - example: [] - syntax: - content: A = 65 - return: - type: OpenTK.Core.Platform.Key -- uid: OpenTK.Core.Platform.Key.B - commentId: F:OpenTK.Core.Platform.Key.B - id: B - parent: OpenTK.Core.Platform.Key - langs: - - csharp - - vb - name: B - nameWithType: Key.B - fullName: OpenTK.Core.Platform.Key.B - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Key.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: B - path: opentk/src/OpenTK.Core/Platform/Enums/Key.cs - startLine: 89 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: The B key. - example: [] - syntax: - content: B = 66 - return: - type: OpenTK.Core.Platform.Key -- uid: OpenTK.Core.Platform.Key.C - commentId: F:OpenTK.Core.Platform.Key.C - id: C - parent: OpenTK.Core.Platform.Key - langs: - - csharp - - vb - name: C - nameWithType: Key.C - fullName: OpenTK.Core.Platform.Key.C - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Key.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: C - path: opentk/src/OpenTK.Core/Platform/Enums/Key.cs - startLine: 93 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: The C key. - example: [] - syntax: - content: C = 67 - return: - type: OpenTK.Core.Platform.Key -- uid: OpenTK.Core.Platform.Key.D - commentId: F:OpenTK.Core.Platform.Key.D - id: D - parent: OpenTK.Core.Platform.Key - langs: - - csharp - - vb - name: D - nameWithType: Key.D - fullName: OpenTK.Core.Platform.Key.D - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Key.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: D - path: opentk/src/OpenTK.Core/Platform/Enums/Key.cs - startLine: 97 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: The D key. - example: [] - syntax: - content: D = 68 - return: - type: OpenTK.Core.Platform.Key -- uid: OpenTK.Core.Platform.Key.E - commentId: F:OpenTK.Core.Platform.Key.E - id: E - parent: OpenTK.Core.Platform.Key - langs: - - csharp - - vb - name: E - nameWithType: Key.E - fullName: OpenTK.Core.Platform.Key.E - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Key.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: E - path: opentk/src/OpenTK.Core/Platform/Enums/Key.cs - startLine: 101 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: The E key. - example: [] - syntax: - content: E = 69 - return: - type: OpenTK.Core.Platform.Key -- uid: OpenTK.Core.Platform.Key.F - commentId: F:OpenTK.Core.Platform.Key.F - id: F - parent: OpenTK.Core.Platform.Key - langs: - - csharp - - vb - name: F - nameWithType: Key.F - fullName: OpenTK.Core.Platform.Key.F - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Key.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: F - path: opentk/src/OpenTK.Core/Platform/Enums/Key.cs - startLine: 105 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: The F key. - example: [] - syntax: - content: F = 70 - return: - type: OpenTK.Core.Platform.Key -- uid: OpenTK.Core.Platform.Key.G - commentId: F:OpenTK.Core.Platform.Key.G - id: G - parent: OpenTK.Core.Platform.Key - langs: - - csharp - - vb - name: G - nameWithType: Key.G - fullName: OpenTK.Core.Platform.Key.G - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Key.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: G - path: opentk/src/OpenTK.Core/Platform/Enums/Key.cs - startLine: 109 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: The G key. - example: [] - syntax: - content: G = 71 - return: - type: OpenTK.Core.Platform.Key -- uid: OpenTK.Core.Platform.Key.H - commentId: F:OpenTK.Core.Platform.Key.H - id: H - parent: OpenTK.Core.Platform.Key - langs: - - csharp - - vb - name: H - nameWithType: Key.H - fullName: OpenTK.Core.Platform.Key.H - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Key.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: H - path: opentk/src/OpenTK.Core/Platform/Enums/Key.cs - startLine: 113 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: The H key. - example: [] - syntax: - content: H = 72 - return: - type: OpenTK.Core.Platform.Key -- uid: OpenTK.Core.Platform.Key.I - commentId: F:OpenTK.Core.Platform.Key.I - id: I - parent: OpenTK.Core.Platform.Key - langs: - - csharp - - vb - name: I - nameWithType: Key.I - fullName: OpenTK.Core.Platform.Key.I - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Key.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: I - path: opentk/src/OpenTK.Core/Platform/Enums/Key.cs - startLine: 117 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: The I key. - example: [] - syntax: - content: I = 73 - return: - type: OpenTK.Core.Platform.Key -- uid: OpenTK.Core.Platform.Key.J - commentId: F:OpenTK.Core.Platform.Key.J - id: J - parent: OpenTK.Core.Platform.Key - langs: - - csharp - - vb - name: J - nameWithType: Key.J - fullName: OpenTK.Core.Platform.Key.J - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Key.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: J - path: opentk/src/OpenTK.Core/Platform/Enums/Key.cs - startLine: 121 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: The J key. - example: [] - syntax: - content: J = 74 - return: - type: OpenTK.Core.Platform.Key -- uid: OpenTK.Core.Platform.Key.K - commentId: F:OpenTK.Core.Platform.Key.K - id: K - parent: OpenTK.Core.Platform.Key - langs: - - csharp - - vb - name: K - nameWithType: Key.K - fullName: OpenTK.Core.Platform.Key.K - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Key.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: K - path: opentk/src/OpenTK.Core/Platform/Enums/Key.cs - startLine: 125 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: The K key. - example: [] - syntax: - content: K = 75 - return: - type: OpenTK.Core.Platform.Key -- uid: OpenTK.Core.Platform.Key.L - commentId: F:OpenTK.Core.Platform.Key.L - id: L - parent: OpenTK.Core.Platform.Key - langs: - - csharp - - vb - name: L - nameWithType: Key.L - fullName: OpenTK.Core.Platform.Key.L - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Key.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: L - path: opentk/src/OpenTK.Core/Platform/Enums/Key.cs - startLine: 129 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: The L key. - example: [] - syntax: - content: L = 76 - return: - type: OpenTK.Core.Platform.Key -- uid: OpenTK.Core.Platform.Key.M - commentId: F:OpenTK.Core.Platform.Key.M - id: M - parent: OpenTK.Core.Platform.Key - langs: - - csharp - - vb - name: M - nameWithType: Key.M - fullName: OpenTK.Core.Platform.Key.M - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Key.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: M - path: opentk/src/OpenTK.Core/Platform/Enums/Key.cs - startLine: 133 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: The M key. - example: [] - syntax: - content: M = 77 - return: - type: OpenTK.Core.Platform.Key -- uid: OpenTK.Core.Platform.Key.N - commentId: F:OpenTK.Core.Platform.Key.N - id: N - parent: OpenTK.Core.Platform.Key - langs: - - csharp - - vb - name: N - nameWithType: Key.N - fullName: OpenTK.Core.Platform.Key.N - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Key.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: N - path: opentk/src/OpenTK.Core/Platform/Enums/Key.cs - startLine: 137 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: The N key. - example: [] - syntax: - content: N = 78 - return: - type: OpenTK.Core.Platform.Key -- uid: OpenTK.Core.Platform.Key.O - commentId: F:OpenTK.Core.Platform.Key.O - id: O - parent: OpenTK.Core.Platform.Key - langs: - - csharp - - vb - name: O - nameWithType: Key.O - fullName: OpenTK.Core.Platform.Key.O - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Key.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: O - path: opentk/src/OpenTK.Core/Platform/Enums/Key.cs - startLine: 141 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: The O key. - example: [] - syntax: - content: O = 79 - return: - type: OpenTK.Core.Platform.Key -- uid: OpenTK.Core.Platform.Key.P - commentId: F:OpenTK.Core.Platform.Key.P - id: P - parent: OpenTK.Core.Platform.Key - langs: - - csharp - - vb - name: P - nameWithType: Key.P - fullName: OpenTK.Core.Platform.Key.P - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Key.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: P - path: opentk/src/OpenTK.Core/Platform/Enums/Key.cs - startLine: 145 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: The P key. - example: [] - syntax: - content: P = 80 - return: - type: OpenTK.Core.Platform.Key -- uid: OpenTK.Core.Platform.Key.Q - commentId: F:OpenTK.Core.Platform.Key.Q - id: Q - parent: OpenTK.Core.Platform.Key - langs: - - csharp - - vb - name: Q - nameWithType: Key.Q - fullName: OpenTK.Core.Platform.Key.Q - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Key.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Q - path: opentk/src/OpenTK.Core/Platform/Enums/Key.cs - startLine: 149 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: The Q key. - example: [] - syntax: - content: Q = 81 - return: - type: OpenTK.Core.Platform.Key -- uid: OpenTK.Core.Platform.Key.R - commentId: F:OpenTK.Core.Platform.Key.R - id: R - parent: OpenTK.Core.Platform.Key - langs: - - csharp - - vb - name: R - nameWithType: Key.R - fullName: OpenTK.Core.Platform.Key.R - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Key.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: R - path: opentk/src/OpenTK.Core/Platform/Enums/Key.cs - startLine: 153 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: The R key. - example: [] - syntax: - content: R = 82 - return: - type: OpenTK.Core.Platform.Key -- uid: OpenTK.Core.Platform.Key.S - commentId: F:OpenTK.Core.Platform.Key.S - id: S - parent: OpenTK.Core.Platform.Key - langs: - - csharp - - vb - name: S - nameWithType: Key.S - fullName: OpenTK.Core.Platform.Key.S - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Key.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: S - path: opentk/src/OpenTK.Core/Platform/Enums/Key.cs - startLine: 157 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: The S key. - example: [] - syntax: - content: S = 83 - return: - type: OpenTK.Core.Platform.Key -- uid: OpenTK.Core.Platform.Key.T - commentId: F:OpenTK.Core.Platform.Key.T - id: T - parent: OpenTK.Core.Platform.Key - langs: - - csharp - - vb - name: T - nameWithType: Key.T - fullName: OpenTK.Core.Platform.Key.T - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Key.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: T - path: opentk/src/OpenTK.Core/Platform/Enums/Key.cs - startLine: 161 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: The T key. - example: [] - syntax: - content: T = 84 - return: - type: OpenTK.Core.Platform.Key -- uid: OpenTK.Core.Platform.Key.U - commentId: F:OpenTK.Core.Platform.Key.U - id: U - parent: OpenTK.Core.Platform.Key - langs: - - csharp - - vb - name: U - nameWithType: Key.U - fullName: OpenTK.Core.Platform.Key.U - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Key.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: U - path: opentk/src/OpenTK.Core/Platform/Enums/Key.cs - startLine: 165 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: The U key. - example: [] - syntax: - content: U = 85 - return: - type: OpenTK.Core.Platform.Key -- uid: OpenTK.Core.Platform.Key.V - commentId: F:OpenTK.Core.Platform.Key.V - id: V - parent: OpenTK.Core.Platform.Key - langs: - - csharp - - vb - name: V - nameWithType: Key.V - fullName: OpenTK.Core.Platform.Key.V - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Key.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: V - path: opentk/src/OpenTK.Core/Platform/Enums/Key.cs - startLine: 169 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: The V key. - example: [] - syntax: - content: V = 86 - return: - type: OpenTK.Core.Platform.Key -- uid: OpenTK.Core.Platform.Key.W - commentId: F:OpenTK.Core.Platform.Key.W - id: W - parent: OpenTK.Core.Platform.Key - langs: - - csharp - - vb - name: W - nameWithType: Key.W - fullName: OpenTK.Core.Platform.Key.W - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Key.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: W - path: opentk/src/OpenTK.Core/Platform/Enums/Key.cs - startLine: 173 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: The W key. - example: [] - syntax: - content: W = 87 - return: - type: OpenTK.Core.Platform.Key -- uid: OpenTK.Core.Platform.Key.X - commentId: F:OpenTK.Core.Platform.Key.X - id: X - parent: OpenTK.Core.Platform.Key - langs: - - csharp - - vb - name: X - nameWithType: Key.X - fullName: OpenTK.Core.Platform.Key.X - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Key.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: X - path: opentk/src/OpenTK.Core/Platform/Enums/Key.cs - startLine: 177 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: The X key. - example: [] - syntax: - content: X = 88 - return: - type: OpenTK.Core.Platform.Key -- uid: OpenTK.Core.Platform.Key.Y - commentId: F:OpenTK.Core.Platform.Key.Y - id: Y - parent: OpenTK.Core.Platform.Key - langs: - - csharp - - vb - name: Y - nameWithType: Key.Y - fullName: OpenTK.Core.Platform.Key.Y - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Key.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Y - path: opentk/src/OpenTK.Core/Platform/Enums/Key.cs - startLine: 181 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: The Y key. - example: [] - syntax: - content: Y = 89 - return: - type: OpenTK.Core.Platform.Key -- uid: OpenTK.Core.Platform.Key.Z - commentId: F:OpenTK.Core.Platform.Key.Z - id: Z - parent: OpenTK.Core.Platform.Key - langs: - - csharp - - vb - name: Z - nameWithType: Key.Z - fullName: OpenTK.Core.Platform.Key.Z - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Key.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Z - path: opentk/src/OpenTK.Core/Platform/Enums/Key.cs - startLine: 185 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: The Z key. - example: [] - syntax: - content: Z = 90 - return: - type: OpenTK.Core.Platform.Key -- uid: OpenTK.Core.Platform.Key.LeftShift - commentId: F:OpenTK.Core.Platform.Key.LeftShift - id: LeftShift - parent: OpenTK.Core.Platform.Key - langs: - - csharp - - vb - name: LeftShift - nameWithType: Key.LeftShift - fullName: OpenTK.Core.Platform.Key.LeftShift - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Key.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: LeftShift - path: opentk/src/OpenTK.Core/Platform/Enums/Key.cs - startLine: 190 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: The left shift key. - example: [] - syntax: - content: LeftShift = 91 - return: - type: OpenTK.Core.Platform.Key -- uid: OpenTK.Core.Platform.Key.RightShift - commentId: F:OpenTK.Core.Platform.Key.RightShift - id: RightShift - parent: OpenTK.Core.Platform.Key - langs: - - csharp - - vb - name: RightShift - nameWithType: Key.RightShift - fullName: OpenTK.Core.Platform.Key.RightShift - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Key.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: RightShift - path: opentk/src/OpenTK.Core/Platform/Enums/Key.cs - startLine: 194 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: The right shift key. - example: [] - syntax: - content: RightShift = 92 - return: - type: OpenTK.Core.Platform.Key -- uid: OpenTK.Core.Platform.Key.LeftControl - commentId: F:OpenTK.Core.Platform.Key.LeftControl - id: LeftControl - parent: OpenTK.Core.Platform.Key - langs: - - csharp - - vb - name: LeftControl - nameWithType: Key.LeftControl - fullName: OpenTK.Core.Platform.Key.LeftControl - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Key.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: LeftControl - path: opentk/src/OpenTK.Core/Platform/Enums/Key.cs - startLine: 198 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: The left control key. - example: [] - syntax: - content: LeftControl = 93 - return: - type: OpenTK.Core.Platform.Key -- uid: OpenTK.Core.Platform.Key.RightControl - commentId: F:OpenTK.Core.Platform.Key.RightControl - id: RightControl - parent: OpenTK.Core.Platform.Key - langs: - - csharp - - vb - name: RightControl - nameWithType: Key.RightControl - fullName: OpenTK.Core.Platform.Key.RightControl - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Key.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: RightControl - path: opentk/src/OpenTK.Core/Platform/Enums/Key.cs - startLine: 202 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: The right control key. - example: [] - syntax: - content: RightControl = 94 - return: - type: OpenTK.Core.Platform.Key -- uid: OpenTK.Core.Platform.Key.LeftAlt - commentId: F:OpenTK.Core.Platform.Key.LeftAlt - id: LeftAlt - parent: OpenTK.Core.Platform.Key - langs: - - csharp - - vb - name: LeftAlt - nameWithType: Key.LeftAlt - fullName: OpenTK.Core.Platform.Key.LeftAlt - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Key.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: LeftAlt - path: opentk/src/OpenTK.Core/Platform/Enums/Key.cs - startLine: 206 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: The left alt key (left Option on mac). - example: [] - syntax: - content: LeftAlt = 95 - return: - type: OpenTK.Core.Platform.Key -- uid: OpenTK.Core.Platform.Key.RightAlt - commentId: F:OpenTK.Core.Platform.Key.RightAlt - id: RightAlt - parent: OpenTK.Core.Platform.Key - langs: - - csharp - - vb - name: RightAlt - nameWithType: Key.RightAlt - fullName: OpenTK.Core.Platform.Key.RightAlt - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Key.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: RightAlt - path: opentk/src/OpenTK.Core/Platform/Enums/Key.cs - startLine: 210 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: The right alt (alt-gr) key (right Option on mac). - example: [] - syntax: - content: RightAlt = 96 - return: - type: OpenTK.Core.Platform.Key -- uid: OpenTK.Core.Platform.Key.LeftGUI - commentId: F:OpenTK.Core.Platform.Key.LeftGUI - id: LeftGUI - parent: OpenTK.Core.Platform.Key - langs: - - csharp - - vb - name: LeftGUI - nameWithType: Key.LeftGUI - fullName: OpenTK.Core.Platform.Key.LeftGUI - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Key.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: LeftGUI - path: opentk/src/OpenTK.Core/Platform/Enums/Key.cs - startLine: 216 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: >- - The left "OS" key. - - On windows this is the left windows key. - - On macOS this is the left Command key. - example: [] - syntax: - content: LeftGUI = 97 - return: - type: OpenTK.Core.Platform.Key -- uid: OpenTK.Core.Platform.Key.RightGUI - commentId: F:OpenTK.Core.Platform.Key.RightGUI - id: RightGUI - parent: OpenTK.Core.Platform.Key - langs: - - csharp - - vb - name: RightGUI - nameWithType: Key.RightGUI - fullName: OpenTK.Core.Platform.Key.RightGUI - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Key.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: RightGUI - path: opentk/src/OpenTK.Core/Platform/Enums/Key.cs - startLine: 222 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: >- - The right "OS" key. - - On windows this is the right windows key. - - On macOS this is the right Command key. - example: [] - syntax: - content: RightGUI = 98 - return: - type: OpenTK.Core.Platform.Key -- uid: OpenTK.Core.Platform.Key.CapsLock - commentId: F:OpenTK.Core.Platform.Key.CapsLock - id: CapsLock - parent: OpenTK.Core.Platform.Key - langs: - - csharp - - vb - name: CapsLock - nameWithType: Key.CapsLock - fullName: OpenTK.Core.Platform.Key.CapsLock - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Key.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: CapsLock - path: opentk/src/OpenTK.Core/Platform/Enums/Key.cs - startLine: 227 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: The caps lock key. - example: [] - syntax: - content: CapsLock = 99 - return: - type: OpenTK.Core.Platform.Key -- uid: OpenTK.Core.Platform.Key.NumLock - commentId: F:OpenTK.Core.Platform.Key.NumLock - id: NumLock - parent: OpenTK.Core.Platform.Key - langs: - - csharp - - vb - name: NumLock - nameWithType: Key.NumLock - fullName: OpenTK.Core.Platform.Key.NumLock - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Key.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: NumLock - path: opentk/src/OpenTK.Core/Platform/Enums/Key.cs - startLine: 232 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: The num lock key. - example: [] - syntax: - content: NumLock = 100 - return: - type: OpenTK.Core.Platform.Key -- uid: OpenTK.Core.Platform.Key.Keypad0 - commentId: F:OpenTK.Core.Platform.Key.Keypad0 - id: Keypad0 - parent: OpenTK.Core.Platform.Key - langs: - - csharp - - vb - name: Keypad0 - nameWithType: Key.Keypad0 - fullName: OpenTK.Core.Platform.Key.Keypad0 - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Key.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Keypad0 - path: opentk/src/OpenTK.Core/Platform/Enums/Key.cs - startLine: 236 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: The keypad 0 key. - example: [] - syntax: - content: Keypad0 = 101 - return: - type: OpenTK.Core.Platform.Key -- uid: OpenTK.Core.Platform.Key.Keypad1 - commentId: F:OpenTK.Core.Platform.Key.Keypad1 - id: Keypad1 - parent: OpenTK.Core.Platform.Key - langs: - - csharp - - vb - name: Keypad1 - nameWithType: Key.Keypad1 - fullName: OpenTK.Core.Platform.Key.Keypad1 - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Key.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Keypad1 - path: opentk/src/OpenTK.Core/Platform/Enums/Key.cs - startLine: 240 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: The keypad 1 key. - example: [] - syntax: - content: Keypad1 = 102 - return: - type: OpenTK.Core.Platform.Key -- uid: OpenTK.Core.Platform.Key.Keypad2 - commentId: F:OpenTK.Core.Platform.Key.Keypad2 - id: Keypad2 - parent: OpenTK.Core.Platform.Key - langs: - - csharp - - vb - name: Keypad2 - nameWithType: Key.Keypad2 - fullName: OpenTK.Core.Platform.Key.Keypad2 - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Key.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Keypad2 - path: opentk/src/OpenTK.Core/Platform/Enums/Key.cs - startLine: 244 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: The keypad 2 key. - example: [] - syntax: - content: Keypad2 = 103 - return: - type: OpenTK.Core.Platform.Key -- uid: OpenTK.Core.Platform.Key.Keypad3 - commentId: F:OpenTK.Core.Platform.Key.Keypad3 - id: Keypad3 - parent: OpenTK.Core.Platform.Key - langs: - - csharp - - vb - name: Keypad3 - nameWithType: Key.Keypad3 - fullName: OpenTK.Core.Platform.Key.Keypad3 - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Key.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Keypad3 - path: opentk/src/OpenTK.Core/Platform/Enums/Key.cs - startLine: 248 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: The keypad 3 key. - example: [] - syntax: - content: Keypad3 = 104 - return: - type: OpenTK.Core.Platform.Key -- uid: OpenTK.Core.Platform.Key.Keypad4 - commentId: F:OpenTK.Core.Platform.Key.Keypad4 - id: Keypad4 - parent: OpenTK.Core.Platform.Key - langs: - - csharp - - vb - name: Keypad4 - nameWithType: Key.Keypad4 - fullName: OpenTK.Core.Platform.Key.Keypad4 - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Key.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Keypad4 - path: opentk/src/OpenTK.Core/Platform/Enums/Key.cs - startLine: 252 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: The keypad 4 key. - example: [] - syntax: - content: Keypad4 = 105 - return: - type: OpenTK.Core.Platform.Key -- uid: OpenTK.Core.Platform.Key.Keypad5 - commentId: F:OpenTK.Core.Platform.Key.Keypad5 - id: Keypad5 - parent: OpenTK.Core.Platform.Key - langs: - - csharp - - vb - name: Keypad5 - nameWithType: Key.Keypad5 - fullName: OpenTK.Core.Platform.Key.Keypad5 - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Key.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Keypad5 - path: opentk/src/OpenTK.Core/Platform/Enums/Key.cs - startLine: 256 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: The keypad 5 key. - example: [] - syntax: - content: Keypad5 = 106 - return: - type: OpenTK.Core.Platform.Key -- uid: OpenTK.Core.Platform.Key.Keypad6 - commentId: F:OpenTK.Core.Platform.Key.Keypad6 - id: Keypad6 - parent: OpenTK.Core.Platform.Key - langs: - - csharp - - vb - name: Keypad6 - nameWithType: Key.Keypad6 - fullName: OpenTK.Core.Platform.Key.Keypad6 - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Key.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Keypad6 - path: opentk/src/OpenTK.Core/Platform/Enums/Key.cs - startLine: 260 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: The keypad 6 key. - example: [] - syntax: - content: Keypad6 = 107 - return: - type: OpenTK.Core.Platform.Key -- uid: OpenTK.Core.Platform.Key.Keypad7 - commentId: F:OpenTK.Core.Platform.Key.Keypad7 - id: Keypad7 - parent: OpenTK.Core.Platform.Key - langs: - - csharp - - vb - name: Keypad7 - nameWithType: Key.Keypad7 - fullName: OpenTK.Core.Platform.Key.Keypad7 - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Key.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Keypad7 - path: opentk/src/OpenTK.Core/Platform/Enums/Key.cs - startLine: 264 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: The keypad 7 key. - example: [] - syntax: - content: Keypad7 = 108 - return: - type: OpenTK.Core.Platform.Key -- uid: OpenTK.Core.Platform.Key.Keypad8 - commentId: F:OpenTK.Core.Platform.Key.Keypad8 - id: Keypad8 - parent: OpenTK.Core.Platform.Key - langs: - - csharp - - vb - name: Keypad8 - nameWithType: Key.Keypad8 - fullName: OpenTK.Core.Platform.Key.Keypad8 - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Key.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Keypad8 - path: opentk/src/OpenTK.Core/Platform/Enums/Key.cs - startLine: 268 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: The keypad 8 key. - example: [] - syntax: - content: Keypad8 = 109 - return: - type: OpenTK.Core.Platform.Key -- uid: OpenTK.Core.Platform.Key.Keypad9 - commentId: F:OpenTK.Core.Platform.Key.Keypad9 - id: Keypad9 - parent: OpenTK.Core.Platform.Key - langs: - - csharp - - vb - name: Keypad9 - nameWithType: Key.Keypad9 - fullName: OpenTK.Core.Platform.Key.Keypad9 - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Key.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Keypad9 - path: opentk/src/OpenTK.Core/Platform/Enums/Key.cs - startLine: 272 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: The keypad 9 key. - example: [] - syntax: - content: Keypad9 = 110 - return: - type: OpenTK.Core.Platform.Key -- uid: OpenTK.Core.Platform.Key.KeypadDecimal - commentId: F:OpenTK.Core.Platform.Key.KeypadDecimal - id: KeypadDecimal - parent: OpenTK.Core.Platform.Key - langs: - - csharp - - vb - name: KeypadDecimal - nameWithType: Key.KeypadDecimal - fullName: OpenTK.Core.Platform.Key.KeypadDecimal - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Key.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: KeypadDecimal - path: opentk/src/OpenTK.Core/Platform/Enums/Key.cs - startLine: 276 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: The keypad decimal point key. - example: [] - syntax: - content: KeypadDecimal = 111 - return: - type: OpenTK.Core.Platform.Key -- uid: OpenTK.Core.Platform.Key.KeypadDivide - commentId: F:OpenTK.Core.Platform.Key.KeypadDivide - id: KeypadDivide - parent: OpenTK.Core.Platform.Key - langs: - - csharp - - vb - name: KeypadDivide - nameWithType: Key.KeypadDivide - fullName: OpenTK.Core.Platform.Key.KeypadDivide - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Key.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: KeypadDivide - path: opentk/src/OpenTK.Core/Platform/Enums/Key.cs - startLine: 280 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: The keypad divide key. - example: [] - syntax: - content: KeypadDivide = 112 - return: - type: OpenTK.Core.Platform.Key -- uid: OpenTK.Core.Platform.Key.KeypadMultiply - commentId: F:OpenTK.Core.Platform.Key.KeypadMultiply - id: KeypadMultiply - parent: OpenTK.Core.Platform.Key - langs: - - csharp - - vb - name: KeypadMultiply - nameWithType: Key.KeypadMultiply - fullName: OpenTK.Core.Platform.Key.KeypadMultiply - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Key.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: KeypadMultiply - path: opentk/src/OpenTK.Core/Platform/Enums/Key.cs - startLine: 284 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: The keypad multiply key. - example: [] - syntax: - content: KeypadMultiply = 113 - return: - type: OpenTK.Core.Platform.Key -- uid: OpenTK.Core.Platform.Key.KeypadSubtract - commentId: F:OpenTK.Core.Platform.Key.KeypadSubtract - id: KeypadSubtract - parent: OpenTK.Core.Platform.Key - langs: - - csharp - - vb - name: KeypadSubtract - nameWithType: Key.KeypadSubtract - fullName: OpenTK.Core.Platform.Key.KeypadSubtract - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Key.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: KeypadSubtract - path: opentk/src/OpenTK.Core/Platform/Enums/Key.cs - startLine: 288 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: The keypad subtract key. - example: [] - syntax: - content: KeypadSubtract = 114 - return: - type: OpenTK.Core.Platform.Key -- uid: OpenTK.Core.Platform.Key.KeypadAdd - commentId: F:OpenTK.Core.Platform.Key.KeypadAdd - id: KeypadAdd - parent: OpenTK.Core.Platform.Key - langs: - - csharp - - vb - name: KeypadAdd - nameWithType: Key.KeypadAdd - fullName: OpenTK.Core.Platform.Key.KeypadAdd - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Key.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: KeypadAdd - path: opentk/src/OpenTK.Core/Platform/Enums/Key.cs - startLine: 292 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: The keypad add key. - example: [] - syntax: - content: KeypadAdd = 115 - return: - type: OpenTK.Core.Platform.Key -- uid: OpenTK.Core.Platform.Key.KeypadSeparator - commentId: F:OpenTK.Core.Platform.Key.KeypadSeparator - id: KeypadSeparator - parent: OpenTK.Core.Platform.Key - langs: - - csharp - - vb - name: KeypadSeparator - nameWithType: Key.KeypadSeparator - fullName: OpenTK.Core.Platform.Key.KeypadSeparator - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Key.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: KeypadSeparator - path: opentk/src/OpenTK.Core/Platform/Enums/Key.cs - startLine: 296 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: The keypad separator key. - example: [] - syntax: - content: KeypadSeparator = 116 - return: - type: OpenTK.Core.Platform.Key -- uid: OpenTK.Core.Platform.Key.KeypadEnter - commentId: F:OpenTK.Core.Platform.Key.KeypadEnter - id: KeypadEnter - parent: OpenTK.Core.Platform.Key - langs: - - csharp - - vb - name: KeypadEnter - nameWithType: Key.KeypadEnter - fullName: OpenTK.Core.Platform.Key.KeypadEnter - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Key.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: KeypadEnter - path: opentk/src/OpenTK.Core/Platform/Enums/Key.cs - startLine: 300 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: The keypad enter key. - example: [] - syntax: - content: KeypadEnter = 117 - return: - type: OpenTK.Core.Platform.Key -- uid: OpenTK.Core.Platform.Key.KeypadEqual - commentId: F:OpenTK.Core.Platform.Key.KeypadEqual - id: KeypadEqual - parent: OpenTK.Core.Platform.Key - langs: - - csharp - - vb - name: KeypadEqual - nameWithType: Key.KeypadEqual - fullName: OpenTK.Core.Platform.Key.KeypadEqual - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Key.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: KeypadEqual - path: opentk/src/OpenTK.Core/Platform/Enums/Key.cs - startLine: 304 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: The keypad equals key. - example: [] - syntax: - content: KeypadEqual = 118 - return: - type: OpenTK.Core.Platform.Key -- uid: OpenTK.Core.Platform.Key.PrintScreen - commentId: F:OpenTK.Core.Platform.Key.PrintScreen - id: PrintScreen - parent: OpenTK.Core.Platform.Key - langs: - - csharp - - vb - name: PrintScreen - nameWithType: Key.PrintScreen - fullName: OpenTK.Core.Platform.Key.PrintScreen - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Key.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: PrintScreen - path: opentk/src/OpenTK.Core/Platform/Enums/Key.cs - startLine: 309 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: The print screen key. - example: [] - syntax: - content: PrintScreen = 119 - return: - type: OpenTK.Core.Platform.Key -- uid: OpenTK.Core.Platform.Key.ScrollLock - commentId: F:OpenTK.Core.Platform.Key.ScrollLock - id: ScrollLock - parent: OpenTK.Core.Platform.Key - langs: - - csharp - - vb - name: ScrollLock - nameWithType: Key.ScrollLock - fullName: OpenTK.Core.Platform.Key.ScrollLock - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Key.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: ScrollLock - path: opentk/src/OpenTK.Core/Platform/Enums/Key.cs - startLine: 313 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: The scroll lock key. - example: [] - syntax: - content: ScrollLock = 120 - return: - type: OpenTK.Core.Platform.Key -- uid: OpenTK.Core.Platform.Key.PauseBreak - commentId: F:OpenTK.Core.Platform.Key.PauseBreak - id: PauseBreak - parent: OpenTK.Core.Platform.Key - langs: - - csharp - - vb - name: PauseBreak - nameWithType: Key.PauseBreak - fullName: OpenTK.Core.Platform.Key.PauseBreak - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Key.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: PauseBreak - path: opentk/src/OpenTK.Core/Platform/Enums/Key.cs - startLine: 317 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: The pause/break key. - example: [] - syntax: - content: PauseBreak = 121 - return: - type: OpenTK.Core.Platform.Key -- uid: OpenTK.Core.Platform.Key.Insert - commentId: F:OpenTK.Core.Platform.Key.Insert - id: Insert - parent: OpenTK.Core.Platform.Key - langs: - - csharp - - vb - name: Insert - nameWithType: Key.Insert - fullName: OpenTK.Core.Platform.Key.Insert - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Key.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Insert - path: opentk/src/OpenTK.Core/Platform/Enums/Key.cs - startLine: 322 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: The insert key. - example: [] - syntax: - content: Insert = 122 - return: - type: OpenTK.Core.Platform.Key -- uid: OpenTK.Core.Platform.Key.Delete - commentId: F:OpenTK.Core.Platform.Key.Delete - id: Delete - parent: OpenTK.Core.Platform.Key - langs: - - csharp - - vb - name: Delete - nameWithType: Key.Delete - fullName: OpenTK.Core.Platform.Key.Delete - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Key.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Delete - path: opentk/src/OpenTK.Core/Platform/Enums/Key.cs - startLine: 326 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: The delete key. - example: [] - syntax: - content: Delete = 123 - return: - type: OpenTK.Core.Platform.Key -- uid: OpenTK.Core.Platform.Key.Home - commentId: F:OpenTK.Core.Platform.Key.Home - id: Home - parent: OpenTK.Core.Platform.Key - langs: - - csharp - - vb - name: Home - nameWithType: Key.Home - fullName: OpenTK.Core.Platform.Key.Home - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Key.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Home - path: opentk/src/OpenTK.Core/Platform/Enums/Key.cs - startLine: 330 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: The home key. - example: [] - syntax: - content: Home = 124 - return: - type: OpenTK.Core.Platform.Key -- uid: OpenTK.Core.Platform.Key.End - commentId: F:OpenTK.Core.Platform.Key.End - id: End - parent: OpenTK.Core.Platform.Key - langs: - - csharp - - vb - name: End - nameWithType: Key.End - fullName: OpenTK.Core.Platform.Key.End - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Key.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: End - path: opentk/src/OpenTK.Core/Platform/Enums/Key.cs - startLine: 334 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: End key. - example: [] - syntax: - content: End = 125 - return: - type: OpenTK.Core.Platform.Key -- uid: OpenTK.Core.Platform.Key.PageUp - commentId: F:OpenTK.Core.Platform.Key.PageUp - id: PageUp - parent: OpenTK.Core.Platform.Key - langs: - - csharp - - vb - name: PageUp - nameWithType: Key.PageUp - fullName: OpenTK.Core.Platform.Key.PageUp - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Key.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: PageUp - path: opentk/src/OpenTK.Core/Platform/Enums/Key.cs - startLine: 338 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Page Up key. - example: [] - syntax: - content: PageUp = 126 - return: - type: OpenTK.Core.Platform.Key -- uid: OpenTK.Core.Platform.Key.PageDown - commentId: F:OpenTK.Core.Platform.Key.PageDown - id: PageDown - parent: OpenTK.Core.Platform.Key - langs: - - csharp - - vb - name: PageDown - nameWithType: Key.PageDown - fullName: OpenTK.Core.Platform.Key.PageDown - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Key.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: PageDown - path: opentk/src/OpenTK.Core/Platform/Enums/Key.cs - startLine: 342 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Page Down key. - example: [] - syntax: - content: PageDown = 127 - return: - type: OpenTK.Core.Platform.Key -- uid: OpenTK.Core.Platform.Key.LeftArrow - commentId: F:OpenTK.Core.Platform.Key.LeftArrow - id: LeftArrow - parent: OpenTK.Core.Platform.Key - langs: - - csharp - - vb - name: LeftArrow - nameWithType: Key.LeftArrow - fullName: OpenTK.Core.Platform.Key.LeftArrow - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Key.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: LeftArrow - path: opentk/src/OpenTK.Core/Platform/Enums/Key.cs - startLine: 347 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: The left arrow key. - example: [] - syntax: - content: LeftArrow = 128 - return: - type: OpenTK.Core.Platform.Key -- uid: OpenTK.Core.Platform.Key.RightArrow - commentId: F:OpenTK.Core.Platform.Key.RightArrow - id: RightArrow - parent: OpenTK.Core.Platform.Key - langs: - - csharp - - vb - name: RightArrow - nameWithType: Key.RightArrow - fullName: OpenTK.Core.Platform.Key.RightArrow - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Key.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: RightArrow - path: opentk/src/OpenTK.Core/Platform/Enums/Key.cs - startLine: 351 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: The right arrow key. - example: [] - syntax: - content: RightArrow = 129 - return: - type: OpenTK.Core.Platform.Key -- uid: OpenTK.Core.Platform.Key.UpArrow - commentId: F:OpenTK.Core.Platform.Key.UpArrow - id: UpArrow - parent: OpenTK.Core.Platform.Key - langs: - - csharp - - vb - name: UpArrow - nameWithType: Key.UpArrow - fullName: OpenTK.Core.Platform.Key.UpArrow - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Key.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: UpArrow - path: opentk/src/OpenTK.Core/Platform/Enums/Key.cs - startLine: 355 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: The up arrow key. - example: [] - syntax: - content: UpArrow = 130 - return: - type: OpenTK.Core.Platform.Key -- uid: OpenTK.Core.Platform.Key.DownArrow - commentId: F:OpenTK.Core.Platform.Key.DownArrow - id: DownArrow - parent: OpenTK.Core.Platform.Key - langs: - - csharp - - vb - name: DownArrow - nameWithType: Key.DownArrow - fullName: OpenTK.Core.Platform.Key.DownArrow - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Key.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: DownArrow - path: opentk/src/OpenTK.Core/Platform/Enums/Key.cs - startLine: 359 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: The down arrow key. - example: [] - syntax: - content: DownArrow = 131 - return: - type: OpenTK.Core.Platform.Key -- uid: OpenTK.Core.Platform.Key.Application - commentId: F:OpenTK.Core.Platform.Key.Application - id: Application - parent: OpenTK.Core.Platform.Key - langs: - - csharp - - vb - name: Application - nameWithType: Key.Application - fullName: OpenTK.Core.Platform.Key.Application - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Key.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Application - path: opentk/src/OpenTK.Core/Platform/Enums/Key.cs - startLine: 365 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: >- - The application key. - - This usually opens a context menu, in the same way that right click does. - example: [] - syntax: - content: Application = 132 - return: - type: OpenTK.Core.Platform.Key -- uid: OpenTK.Core.Platform.Key.Help - commentId: F:OpenTK.Core.Platform.Key.Help - id: Help - parent: OpenTK.Core.Platform.Key - langs: - - csharp - - vb - name: Help - nameWithType: Key.Help - fullName: OpenTK.Core.Platform.Key.Help - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Key.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Help - path: opentk/src/OpenTK.Core/Platform/Enums/Key.cs - startLine: 371 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: The help key. - example: [] - syntax: - content: Help = 133 - return: - type: OpenTK.Core.Platform.Key -- uid: OpenTK.Core.Platform.Key.F1 - commentId: F:OpenTK.Core.Platform.Key.F1 - id: F1 - parent: OpenTK.Core.Platform.Key - langs: - - csharp - - vb - name: F1 - nameWithType: Key.F1 - fullName: OpenTK.Core.Platform.Key.F1 - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Key.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: F1 - path: opentk/src/OpenTK.Core/Platform/Enums/Key.cs - startLine: 376 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: The 1st function key. - example: [] - syntax: - content: F1 = 134 - return: - type: OpenTK.Core.Platform.Key -- uid: OpenTK.Core.Platform.Key.F2 - commentId: F:OpenTK.Core.Platform.Key.F2 - id: F2 - parent: OpenTK.Core.Platform.Key - langs: - - csharp - - vb - name: F2 - nameWithType: Key.F2 - fullName: OpenTK.Core.Platform.Key.F2 - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Key.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: F2 - path: opentk/src/OpenTK.Core/Platform/Enums/Key.cs - startLine: 380 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: The 2nd function key. - example: [] - syntax: - content: F2 = 135 - return: - type: OpenTK.Core.Platform.Key -- uid: OpenTK.Core.Platform.Key.F3 - commentId: F:OpenTK.Core.Platform.Key.F3 - id: F3 - parent: OpenTK.Core.Platform.Key - langs: - - csharp - - vb - name: F3 - nameWithType: Key.F3 - fullName: OpenTK.Core.Platform.Key.F3 - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Key.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: F3 - path: opentk/src/OpenTK.Core/Platform/Enums/Key.cs - startLine: 384 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: The 3rd function key. - example: [] - syntax: - content: F3 = 136 - return: - type: OpenTK.Core.Platform.Key -- uid: OpenTK.Core.Platform.Key.F4 - commentId: F:OpenTK.Core.Platform.Key.F4 - id: F4 - parent: OpenTK.Core.Platform.Key - langs: - - csharp - - vb - name: F4 - nameWithType: Key.F4 - fullName: OpenTK.Core.Platform.Key.F4 - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Key.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: F4 - path: opentk/src/OpenTK.Core/Platform/Enums/Key.cs - startLine: 388 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: The 4th function key. - example: [] - syntax: - content: F4 = 137 - return: - type: OpenTK.Core.Platform.Key -- uid: OpenTK.Core.Platform.Key.F5 - commentId: F:OpenTK.Core.Platform.Key.F5 - id: F5 - parent: OpenTK.Core.Platform.Key - langs: - - csharp - - vb - name: F5 - nameWithType: Key.F5 - fullName: OpenTK.Core.Platform.Key.F5 - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Key.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: F5 - path: opentk/src/OpenTK.Core/Platform/Enums/Key.cs - startLine: 392 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: The 5th function key. - example: [] - syntax: - content: F5 = 138 - return: - type: OpenTK.Core.Platform.Key -- uid: OpenTK.Core.Platform.Key.F6 - commentId: F:OpenTK.Core.Platform.Key.F6 - id: F6 - parent: OpenTK.Core.Platform.Key - langs: - - csharp - - vb - name: F6 - nameWithType: Key.F6 - fullName: OpenTK.Core.Platform.Key.F6 - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Key.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: F6 - path: opentk/src/OpenTK.Core/Platform/Enums/Key.cs - startLine: 396 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: The 6th function key. - example: [] - syntax: - content: F6 = 139 - return: - type: OpenTK.Core.Platform.Key -- uid: OpenTK.Core.Platform.Key.F7 - commentId: F:OpenTK.Core.Platform.Key.F7 - id: F7 - parent: OpenTK.Core.Platform.Key - langs: - - csharp - - vb - name: F7 - nameWithType: Key.F7 - fullName: OpenTK.Core.Platform.Key.F7 - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Key.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: F7 - path: opentk/src/OpenTK.Core/Platform/Enums/Key.cs - startLine: 400 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: The 7th function key. - example: [] - syntax: - content: F7 = 140 - return: - type: OpenTK.Core.Platform.Key -- uid: OpenTK.Core.Platform.Key.F8 - commentId: F:OpenTK.Core.Platform.Key.F8 - id: F8 - parent: OpenTK.Core.Platform.Key - langs: - - csharp - - vb - name: F8 - nameWithType: Key.F8 - fullName: OpenTK.Core.Platform.Key.F8 - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Key.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: F8 - path: opentk/src/OpenTK.Core/Platform/Enums/Key.cs - startLine: 404 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: The 8th function key. - example: [] - syntax: - content: F8 = 141 - return: - type: OpenTK.Core.Platform.Key -- uid: OpenTK.Core.Platform.Key.F9 - commentId: F:OpenTK.Core.Platform.Key.F9 - id: F9 - parent: OpenTK.Core.Platform.Key - langs: - - csharp - - vb - name: F9 - nameWithType: Key.F9 - fullName: OpenTK.Core.Platform.Key.F9 - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Key.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: F9 - path: opentk/src/OpenTK.Core/Platform/Enums/Key.cs - startLine: 408 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: The 9th function key. - example: [] - syntax: - content: F9 = 142 - return: - type: OpenTK.Core.Platform.Key -- uid: OpenTK.Core.Platform.Key.F10 - commentId: F:OpenTK.Core.Platform.Key.F10 - id: F10 - parent: OpenTK.Core.Platform.Key - langs: - - csharp - - vb - name: F10 - nameWithType: Key.F10 - fullName: OpenTK.Core.Platform.Key.F10 - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Key.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: F10 - path: opentk/src/OpenTK.Core/Platform/Enums/Key.cs - startLine: 412 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: The 10th function key. - example: [] - syntax: - content: F10 = 143 - return: - type: OpenTK.Core.Platform.Key -- uid: OpenTK.Core.Platform.Key.F11 - commentId: F:OpenTK.Core.Platform.Key.F11 - id: F11 - parent: OpenTK.Core.Platform.Key - langs: - - csharp - - vb - name: F11 - nameWithType: Key.F11 - fullName: OpenTK.Core.Platform.Key.F11 - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Key.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: F11 - path: opentk/src/OpenTK.Core/Platform/Enums/Key.cs - startLine: 416 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: The 11th function key. - example: [] - syntax: - content: F11 = 144 - return: - type: OpenTK.Core.Platform.Key -- uid: OpenTK.Core.Platform.Key.F12 - commentId: F:OpenTK.Core.Platform.Key.F12 - id: F12 - parent: OpenTK.Core.Platform.Key - langs: - - csharp - - vb - name: F12 - nameWithType: Key.F12 - fullName: OpenTK.Core.Platform.Key.F12 - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Key.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: F12 - path: opentk/src/OpenTK.Core/Platform/Enums/Key.cs - startLine: 420 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: The 12th function key. - example: [] - syntax: - content: F12 = 145 - return: - type: OpenTK.Core.Platform.Key -- uid: OpenTK.Core.Platform.Key.F13 - commentId: F:OpenTK.Core.Platform.Key.F13 - id: F13 - parent: OpenTK.Core.Platform.Key - langs: - - csharp - - vb - name: F13 - nameWithType: Key.F13 - fullName: OpenTK.Core.Platform.Key.F13 - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Key.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: F13 - path: opentk/src/OpenTK.Core/Platform/Enums/Key.cs - startLine: 424 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: The 13th function key. - example: [] - syntax: - content: F13 = 146 - return: - type: OpenTK.Core.Platform.Key -- uid: OpenTK.Core.Platform.Key.F14 - commentId: F:OpenTK.Core.Platform.Key.F14 - id: F14 - parent: OpenTK.Core.Platform.Key - langs: - - csharp - - vb - name: F14 - nameWithType: Key.F14 - fullName: OpenTK.Core.Platform.Key.F14 - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Key.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: F14 - path: opentk/src/OpenTK.Core/Platform/Enums/Key.cs - startLine: 428 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: The 14th function key. - example: [] - syntax: - content: F14 = 147 - return: - type: OpenTK.Core.Platform.Key -- uid: OpenTK.Core.Platform.Key.F15 - commentId: F:OpenTK.Core.Platform.Key.F15 - id: F15 - parent: OpenTK.Core.Platform.Key - langs: - - csharp - - vb - name: F15 - nameWithType: Key.F15 - fullName: OpenTK.Core.Platform.Key.F15 - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Key.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: F15 - path: opentk/src/OpenTK.Core/Platform/Enums/Key.cs - startLine: 432 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: The 15th function key. - example: [] - syntax: - content: F15 = 148 - return: - type: OpenTK.Core.Platform.Key -- uid: OpenTK.Core.Platform.Key.F16 - commentId: F:OpenTK.Core.Platform.Key.F16 - id: F16 - parent: OpenTK.Core.Platform.Key - langs: - - csharp - - vb - name: F16 - nameWithType: Key.F16 - fullName: OpenTK.Core.Platform.Key.F16 - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Key.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: F16 - path: opentk/src/OpenTK.Core/Platform/Enums/Key.cs - startLine: 436 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: The 16th function key. - example: [] - syntax: - content: F16 = 149 - return: - type: OpenTK.Core.Platform.Key -- uid: OpenTK.Core.Platform.Key.F17 - commentId: F:OpenTK.Core.Platform.Key.F17 - id: F17 - parent: OpenTK.Core.Platform.Key - langs: - - csharp - - vb - name: F17 - nameWithType: Key.F17 - fullName: OpenTK.Core.Platform.Key.F17 - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Key.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: F17 - path: opentk/src/OpenTK.Core/Platform/Enums/Key.cs - startLine: 440 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: The 17th function key. - example: [] - syntax: - content: F17 = 150 - return: - type: OpenTK.Core.Platform.Key -- uid: OpenTK.Core.Platform.Key.F18 - commentId: F:OpenTK.Core.Platform.Key.F18 - id: F18 - parent: OpenTK.Core.Platform.Key - langs: - - csharp - - vb - name: F18 - nameWithType: Key.F18 - fullName: OpenTK.Core.Platform.Key.F18 - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Key.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: F18 - path: opentk/src/OpenTK.Core/Platform/Enums/Key.cs - startLine: 444 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: The 18th function key. - example: [] - syntax: - content: F18 = 151 - return: - type: OpenTK.Core.Platform.Key -- uid: OpenTK.Core.Platform.Key.F19 - commentId: F:OpenTK.Core.Platform.Key.F19 - id: F19 - parent: OpenTK.Core.Platform.Key - langs: - - csharp - - vb - name: F19 - nameWithType: Key.F19 - fullName: OpenTK.Core.Platform.Key.F19 - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Key.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: F19 - path: opentk/src/OpenTK.Core/Platform/Enums/Key.cs - startLine: 448 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: The 19th function key. - example: [] - syntax: - content: F19 = 152 - return: - type: OpenTK.Core.Platform.Key -- uid: OpenTK.Core.Platform.Key.F20 - commentId: F:OpenTK.Core.Platform.Key.F20 - id: F20 - parent: OpenTK.Core.Platform.Key - langs: - - csharp - - vb - name: F20 - nameWithType: Key.F20 - fullName: OpenTK.Core.Platform.Key.F20 - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Key.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: F20 - path: opentk/src/OpenTK.Core/Platform/Enums/Key.cs - startLine: 452 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: The 20th function key. - example: [] - syntax: - content: F20 = 153 - return: - type: OpenTK.Core.Platform.Key -- uid: OpenTK.Core.Platform.Key.F21 - commentId: F:OpenTK.Core.Platform.Key.F21 - id: F21 - parent: OpenTK.Core.Platform.Key - langs: - - csharp - - vb - name: F21 - nameWithType: Key.F21 - fullName: OpenTK.Core.Platform.Key.F21 - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Key.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: F21 - path: opentk/src/OpenTK.Core/Platform/Enums/Key.cs - startLine: 456 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: The 21st function key. - example: [] - syntax: - content: F21 = 154 - return: - type: OpenTK.Core.Platform.Key -- uid: OpenTK.Core.Platform.Key.F22 - commentId: F:OpenTK.Core.Platform.Key.F22 - id: F22 - parent: OpenTK.Core.Platform.Key - langs: - - csharp - - vb - name: F22 - nameWithType: Key.F22 - fullName: OpenTK.Core.Platform.Key.F22 - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Key.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: F22 - path: opentk/src/OpenTK.Core/Platform/Enums/Key.cs - startLine: 460 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: The 22nd function key. - example: [] - syntax: - content: F22 = 155 - return: - type: OpenTK.Core.Platform.Key -- uid: OpenTK.Core.Platform.Key.F23 - commentId: F:OpenTK.Core.Platform.Key.F23 - id: F23 - parent: OpenTK.Core.Platform.Key - langs: - - csharp - - vb - name: F23 - nameWithType: Key.F23 - fullName: OpenTK.Core.Platform.Key.F23 - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Key.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: F23 - path: opentk/src/OpenTK.Core/Platform/Enums/Key.cs - startLine: 464 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: The 23rd function key. - example: [] - syntax: - content: F23 = 156 - return: - type: OpenTK.Core.Platform.Key -- uid: OpenTK.Core.Platform.Key.F24 - commentId: F:OpenTK.Core.Platform.Key.F24 - id: F24 - parent: OpenTK.Core.Platform.Key - langs: - - csharp - - vb - name: F24 - nameWithType: Key.F24 - fullName: OpenTK.Core.Platform.Key.F24 - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Key.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: F24 - path: opentk/src/OpenTK.Core/Platform/Enums/Key.cs - startLine: 468 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: The 24th function key. - example: [] - syntax: - content: F24 = 157 - return: - type: OpenTK.Core.Platform.Key -- uid: OpenTK.Core.Platform.Key.Sleep - commentId: F:OpenTK.Core.Platform.Key.Sleep - id: Sleep - parent: OpenTK.Core.Platform.Key - langs: - - csharp - - vb - name: Sleep - nameWithType: Key.Sleep - fullName: OpenTK.Core.Platform.Key.Sleep - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Key.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Sleep - path: opentk/src/OpenTK.Core/Platform/Enums/Key.cs - startLine: 473 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: The computer sleep key. - example: [] - syntax: - content: Sleep = 158 - return: - type: OpenTK.Core.Platform.Key -- uid: OpenTK.Core.Platform.Key.Plus - commentId: F:OpenTK.Core.Platform.Key.Plus - id: Plus - parent: OpenTK.Core.Platform.Key - langs: - - csharp - - vb - name: Plus - nameWithType: Key.Plus - fullName: OpenTK.Core.Platform.Key.Plus - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Key.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Plus - path: opentk/src/OpenTK.Core/Platform/Enums/Key.cs - startLine: 478 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: The plus key. - example: [] - syntax: - content: Plus = 159 - return: - type: OpenTK.Core.Platform.Key -- uid: OpenTK.Core.Platform.Key.Comma - commentId: F:OpenTK.Core.Platform.Key.Comma - id: Comma - parent: OpenTK.Core.Platform.Key - langs: - - csharp - - vb - name: Comma - nameWithType: Key.Comma - fullName: OpenTK.Core.Platform.Key.Comma - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Key.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Comma - path: opentk/src/OpenTK.Core/Platform/Enums/Key.cs - startLine: 482 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: The comma key. - example: [] - syntax: - content: Comma = 160 - return: - type: OpenTK.Core.Platform.Key -- uid: OpenTK.Core.Platform.Key.Minus - commentId: F:OpenTK.Core.Platform.Key.Minus - id: Minus - parent: OpenTK.Core.Platform.Key - langs: - - csharp - - vb - name: Minus - nameWithType: Key.Minus - fullName: OpenTK.Core.Platform.Key.Minus - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Key.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Minus - path: opentk/src/OpenTK.Core/Platform/Enums/Key.cs - startLine: 486 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: The minus key. - example: [] - syntax: - content: Minus = 161 - return: - type: OpenTK.Core.Platform.Key -- uid: OpenTK.Core.Platform.Key.Period - commentId: F:OpenTK.Core.Platform.Key.Period - id: Period - parent: OpenTK.Core.Platform.Key - langs: - - csharp - - vb - name: Period - nameWithType: Key.Period - fullName: OpenTK.Core.Platform.Key.Period - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Key.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Period - path: opentk/src/OpenTK.Core/Platform/Enums/Key.cs - startLine: 490 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: The period key. - example: [] - syntax: - content: Period = 162 - return: - type: OpenTK.Core.Platform.Key -- uid: OpenTK.Core.Platform.Key.OEM1 - commentId: F:OpenTK.Core.Platform.Key.OEM1 - id: OEM1 - parent: OpenTK.Core.Platform.Key - langs: - - csharp - - vb - name: OEM1 - nameWithType: Key.OEM1 - fullName: OpenTK.Core.Platform.Key.OEM1 - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Key.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: OEM1 - path: opentk/src/OpenTK.Core/Platform/Enums/Key.cs - startLine: 505 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: >- - Used for various characters depending on keyboard layout. - -
In the US keyboard layout this is the ;: key.
In the nordic layout this is the ¨^~ key.
- example: [] - syntax: - content: OEM1 = 163 - return: - type: OpenTK.Core.Platform.Key -- uid: OpenTK.Core.Platform.Key.OEM2 - commentId: F:OpenTK.Core.Platform.Key.OEM2 - id: OEM2 - parent: OpenTK.Core.Platform.Key - langs: - - csharp - - vb - name: OEM2 - nameWithType: Key.OEM2 - fullName: OpenTK.Core.Platform.Key.OEM2 - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Key.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: OEM2 - path: opentk/src/OpenTK.Core/Platform/Enums/Key.cs - startLine: 513 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: >- - Used for various characters depending on keyboard layout. - -
In the US keyboard layout this is the /? key.
In the nordic layout this is the '* key.
- example: [] - syntax: - content: OEM2 = 164 - return: - type: OpenTK.Core.Platform.Key -- uid: OpenTK.Core.Platform.Key.OEM3 - commentId: F:OpenTK.Core.Platform.Key.OEM3 - id: OEM3 - parent: OpenTK.Core.Platform.Key - langs: - - csharp - - vb - name: OEM3 - nameWithType: Key.OEM3 - fullName: OpenTK.Core.Platform.Key.OEM3 - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Key.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: OEM3 - path: opentk/src/OpenTK.Core/Platform/Enums/Key.cs - startLine: 521 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: >- - Used for various characters depending on keyboard layout. - -
In the US keyboard layout this is the `~ key.
In the nordic layout this is the ÖØÆ key.
- example: [] - syntax: - content: OEM3 = 165 - return: - type: OpenTK.Core.Platform.Key -- uid: OpenTK.Core.Platform.Key.OEM4 - commentId: F:OpenTK.Core.Platform.Key.OEM4 - id: OEM4 - parent: OpenTK.Core.Platform.Key - langs: - - csharp - - vb - name: OEM4 - nameWithType: Key.OEM4 - fullName: OpenTK.Core.Platform.Key.OEM4 - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Key.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: OEM4 - path: opentk/src/OpenTK.Core/Platform/Enums/Key.cs - startLine: 529 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: >- - Used for various characters depending on keyboard layout. - -
In the US keyboard layout this is the [{ key.
In the nordic layout this is the ´` key.
- example: [] - syntax: - content: OEM4 = 166 - return: - type: OpenTK.Core.Platform.Key -- uid: OpenTK.Core.Platform.Key.OEM5 - commentId: F:OpenTK.Core.Platform.Key.OEM5 - id: OEM5 - parent: OpenTK.Core.Platform.Key - langs: - - csharp - - vb - name: OEM5 - nameWithType: Key.OEM5 - fullName: OpenTK.Core.Platform.Key.OEM5 - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Key.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: OEM5 - path: opentk/src/OpenTK.Core/Platform/Enums/Key.cs - startLine: 537 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: >- - Used for various characters depending on keyboard layout. - -
In the US keyboard layout this is the \| key.
In the nordic layout this is the §½ key.
- example: [] - syntax: - content: OEM5 = 167 - return: - type: OpenTK.Core.Platform.Key -- uid: OpenTK.Core.Platform.Key.OEM6 - commentId: F:OpenTK.Core.Platform.Key.OEM6 - id: OEM6 - parent: OpenTK.Core.Platform.Key - langs: - - csharp - - vb - name: OEM6 - nameWithType: Key.OEM6 - fullName: OpenTK.Core.Platform.Key.OEM6 - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Key.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: OEM6 - path: opentk/src/OpenTK.Core/Platform/Enums/Key.cs - startLine: 545 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: >- - Used for various characters depending on keyboard layout. - -
In the US keyboard layout this is the ]} key.
In the nordic layout this is the Ã… key.
- example: [] - syntax: - content: OEM6 = 168 - return: - type: OpenTK.Core.Platform.Key -- uid: OpenTK.Core.Platform.Key.OEM7 - commentId: F:OpenTK.Core.Platform.Key.OEM7 - id: OEM7 - parent: OpenTK.Core.Platform.Key - langs: - - csharp - - vb - name: OEM7 - nameWithType: Key.OEM7 - fullName: OpenTK.Core.Platform.Key.OEM7 - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Key.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: OEM7 - path: opentk/src/OpenTK.Core/Platform/Enums/Key.cs - startLine: 553 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: >- - Used for various characters depending on keyboard layout. - -
In the US keyboard layout this is the '" key.
In the nordic layout this is the ÄÆØ key.
- example: [] - syntax: - content: OEM7 = 169 - return: - type: OpenTK.Core.Platform.Key -- uid: OpenTK.Core.Platform.Key.OEM8 - commentId: F:OpenTK.Core.Platform.Key.OEM8 - id: OEM8 - parent: OpenTK.Core.Platform.Key - langs: - - csharp - - vb - name: OEM8 - nameWithType: Key.OEM8 - fullName: OpenTK.Core.Platform.Key.OEM8 - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Key.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: OEM8 - path: opentk/src/OpenTK.Core/Platform/Enums/Key.cs - startLine: 557 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Used for various characters, depends on keyboard. - example: [] - syntax: - content: OEM8 = 170 - return: - type: OpenTK.Core.Platform.Key -- uid: OpenTK.Core.Platform.Key.OEM102 - commentId: F:OpenTK.Core.Platform.Key.OEM102 - id: OEM102 - parent: OpenTK.Core.Platform.Key - langs: - - csharp - - vb - name: OEM102 - nameWithType: Key.OEM102 - fullName: OpenTK.Core.Platform.Key.OEM102 - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Key.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: OEM102 - path: opentk/src/OpenTK.Core/Platform/Enums/Key.cs - startLine: 564 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: >- - The <> keys on the US standard keyboard, - - or the \\| key on the non-US 102-key keyboard. - example: [] - syntax: - content: OEM102 = 171 - return: - type: OpenTK.Core.Platform.Key -- uid: OpenTK.Core.Platform.Key.PlayPause - commentId: F:OpenTK.Core.Platform.Key.PlayPause - id: PlayPause - parent: OpenTK.Core.Platform.Key - langs: - - csharp - - vb - name: PlayPause - nameWithType: Key.PlayPause - fullName: OpenTK.Core.Platform.Key.PlayPause - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Key.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: PlayPause - path: opentk/src/OpenTK.Core/Platform/Enums/Key.cs - startLine: 570 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: >- - The media play/pause key. - - Used for playing and pausing music. - example: [] - syntax: - content: PlayPause = 172 - return: - type: OpenTK.Core.Platform.Key -- uid: OpenTK.Core.Platform.Key.NextTrack - commentId: F:OpenTK.Core.Platform.Key.NextTrack - id: NextTrack - parent: OpenTK.Core.Platform.Key - langs: - - csharp - - vb - name: NextTrack - nameWithType: Key.NextTrack - fullName: OpenTK.Core.Platform.Key.NextTrack - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Key.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: NextTrack - path: opentk/src/OpenTK.Core/Platform/Enums/Key.cs - startLine: 575 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: >- - The next track key. - - Used to go to the next media track. - example: [] - syntax: - content: NextTrack = 173 - return: - type: OpenTK.Core.Platform.Key -- uid: OpenTK.Core.Platform.Key.PreviousTrack - commentId: F:OpenTK.Core.Platform.Key.PreviousTrack - id: PreviousTrack - parent: OpenTK.Core.Platform.Key - langs: - - csharp - - vb - name: PreviousTrack - nameWithType: Key.PreviousTrack - fullName: OpenTK.Core.Platform.Key.PreviousTrack - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Key.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: PreviousTrack - path: opentk/src/OpenTK.Core/Platform/Enums/Key.cs - startLine: 580 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: >- - The previous track key. - - Used to go the previous media track. - example: [] - syntax: - content: PreviousTrack = 174 - return: - type: OpenTK.Core.Platform.Key -- uid: OpenTK.Core.Platform.Key.Stop - commentId: F:OpenTK.Core.Platform.Key.Stop - id: Stop - parent: OpenTK.Core.Platform.Key - langs: - - csharp - - vb - name: Stop - nameWithType: Key.Stop - fullName: OpenTK.Core.Platform.Key.Stop - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Key.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Stop - path: opentk/src/OpenTK.Core/Platform/Enums/Key.cs - startLine: 585 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: >- - The media stop key. - - Used to stop any playing media. - example: [] - syntax: - content: Stop = 175 - return: - type: OpenTK.Core.Platform.Key -- uid: OpenTK.Core.Platform.Key.Mute - commentId: F:OpenTK.Core.Platform.Key.Mute - id: Mute - parent: OpenTK.Core.Platform.Key - langs: - - csharp - - vb - name: Mute - nameWithType: Key.Mute - fullName: OpenTK.Core.Platform.Key.Mute - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Key.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Mute - path: opentk/src/OpenTK.Core/Platform/Enums/Key.cs - startLine: 589 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: The mute key. - example: [] - syntax: - content: Mute = 176 - return: - type: OpenTK.Core.Platform.Key -- uid: OpenTK.Core.Platform.Key.VolumeUp - commentId: F:OpenTK.Core.Platform.Key.VolumeUp - id: VolumeUp - parent: OpenTK.Core.Platform.Key - langs: - - csharp - - vb - name: VolumeUp - nameWithType: Key.VolumeUp - fullName: OpenTK.Core.Platform.Key.VolumeUp - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Key.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: VolumeUp - path: opentk/src/OpenTK.Core/Platform/Enums/Key.cs - startLine: 593 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: The volume up key. - example: [] - syntax: - content: VolumeUp = 177 - return: - type: OpenTK.Core.Platform.Key -- uid: OpenTK.Core.Platform.Key.VolumeDown - commentId: F:OpenTK.Core.Platform.Key.VolumeDown - id: VolumeDown - parent: OpenTK.Core.Platform.Key - langs: - - csharp - - vb - name: VolumeDown - nameWithType: Key.VolumeDown - fullName: OpenTK.Core.Platform.Key.VolumeDown - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Key.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: VolumeDown - path: opentk/src/OpenTK.Core/Platform/Enums/Key.cs - startLine: 597 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: The media volume down key. - example: [] - syntax: - content: VolumeDown = 178 - return: - type: OpenTK.Core.Platform.Key -references: -- uid: OpenTK.Core.Platform - commentId: N:OpenTK.Core.Platform - href: OpenTK.html - name: OpenTK.Core.Platform - nameWithType: OpenTK.Core.Platform - fullName: OpenTK.Core.Platform - spec.csharp: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform - name: Platform - href: OpenTK.Core.Platform.html - spec.vb: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform - name: Platform - href: OpenTK.Core.Platform.html -- uid: OpenTK.Core.Platform.Key - commentId: T:OpenTK.Core.Platform.Key - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.Key.html - name: Key - nameWithType: Key - fullName: OpenTK.Core.Platform.Key diff --git a/api/OpenTK.Core.Platform.KeyModifier.yml b/api/OpenTK.Core.Platform.KeyModifier.yml deleted file mode 100644 index caad036e..00000000 --- a/api/OpenTK.Core.Platform.KeyModifier.yml +++ /dev/null @@ -1,608 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: OpenTK.Core.Platform.KeyModifier - commentId: T:OpenTK.Core.Platform.KeyModifier - id: KeyModifier - parent: OpenTK.Core.Platform - children: - - OpenTK.Core.Platform.KeyModifier.Alt - - OpenTK.Core.Platform.KeyModifier.CapsLock - - OpenTK.Core.Platform.KeyModifier.Control - - OpenTK.Core.Platform.KeyModifier.GUI - - OpenTK.Core.Platform.KeyModifier.LeftAlt - - OpenTK.Core.Platform.KeyModifier.LeftControl - - OpenTK.Core.Platform.KeyModifier.LeftGUI - - OpenTK.Core.Platform.KeyModifier.LeftShift - - OpenTK.Core.Platform.KeyModifier.None - - OpenTK.Core.Platform.KeyModifier.NumLock - - OpenTK.Core.Platform.KeyModifier.RightAlt - - OpenTK.Core.Platform.KeyModifier.RightControl - - OpenTK.Core.Platform.KeyModifier.RightGUI - - OpenTK.Core.Platform.KeyModifier.RightShift - - OpenTK.Core.Platform.KeyModifier.ScrollLock - - OpenTK.Core.Platform.KeyModifier.Shift - langs: - - csharp - - vb - name: KeyModifier - nameWithType: KeyModifier - fullName: OpenTK.Core.Platform.KeyModifier - type: Enum - source: - remote: - path: src/OpenTK.Core/Platform/Enums/KeyModifier.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: KeyModifier - path: opentk/src/OpenTK.Core/Platform/Enums/KeyModifier.cs - startLine: 11 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Flags indicating keyboard modifiers. - example: [] - syntax: - content: >- - [Flags] - - public enum KeyModifier - content.vb: >- - - - Public Enum KeyModifier - attributes: - - type: System.FlagsAttribute - ctor: System.FlagsAttribute.#ctor - arguments: [] -- uid: OpenTK.Core.Platform.KeyModifier.None - commentId: F:OpenTK.Core.Platform.KeyModifier.None - id: None - parent: OpenTK.Core.Platform.KeyModifier - langs: - - csharp - - vb - name: None - nameWithType: KeyModifier.None - fullName: OpenTK.Core.Platform.KeyModifier.None - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/KeyModifier.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: None - path: opentk/src/OpenTK.Core/Platform/Enums/KeyModifier.cs - startLine: 18 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: If no modifiers or locks are active. - example: [] - syntax: - content: None = 0 - return: - type: OpenTK.Core.Platform.KeyModifier -- uid: OpenTK.Core.Platform.KeyModifier.LeftShift - commentId: F:OpenTK.Core.Platform.KeyModifier.LeftShift - id: LeftShift - parent: OpenTK.Core.Platform.KeyModifier - langs: - - csharp - - vb - name: LeftShift - nameWithType: KeyModifier.LeftShift - fullName: OpenTK.Core.Platform.KeyModifier.LeftShift - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/KeyModifier.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: LeftShift - path: opentk/src/OpenTK.Core/Platform/Enums/KeyModifier.cs - startLine: 23 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: If is down. - example: [] - syntax: - content: LeftShift = 1 - return: - type: OpenTK.Core.Platform.KeyModifier -- uid: OpenTK.Core.Platform.KeyModifier.RightShift - commentId: F:OpenTK.Core.Platform.KeyModifier.RightShift - id: RightShift - parent: OpenTK.Core.Platform.KeyModifier - langs: - - csharp - - vb - name: RightShift - nameWithType: KeyModifier.RightShift - fullName: OpenTK.Core.Platform.KeyModifier.RightShift - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/KeyModifier.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: RightShift - path: opentk/src/OpenTK.Core/Platform/Enums/KeyModifier.cs - startLine: 28 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: If is down. - example: [] - syntax: - content: RightShift = 2 - return: - type: OpenTK.Core.Platform.KeyModifier -- uid: OpenTK.Core.Platform.KeyModifier.LeftControl - commentId: F:OpenTK.Core.Platform.KeyModifier.LeftControl - id: LeftControl - parent: OpenTK.Core.Platform.KeyModifier - langs: - - csharp - - vb - name: LeftControl - nameWithType: KeyModifier.LeftControl - fullName: OpenTK.Core.Platform.KeyModifier.LeftControl - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/KeyModifier.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: LeftControl - path: opentk/src/OpenTK.Core/Platform/Enums/KeyModifier.cs - startLine: 33 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: If is down. - example: [] - syntax: - content: LeftControl = 4 - return: - type: OpenTK.Core.Platform.KeyModifier -- uid: OpenTK.Core.Platform.KeyModifier.RightControl - commentId: F:OpenTK.Core.Platform.KeyModifier.RightControl - id: RightControl - parent: OpenTK.Core.Platform.KeyModifier - langs: - - csharp - - vb - name: RightControl - nameWithType: KeyModifier.RightControl - fullName: OpenTK.Core.Platform.KeyModifier.RightControl - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/KeyModifier.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: RightControl - path: opentk/src/OpenTK.Core/Platform/Enums/KeyModifier.cs - startLine: 38 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: If is down. - example: [] - syntax: - content: RightControl = 8 - return: - type: OpenTK.Core.Platform.KeyModifier -- uid: OpenTK.Core.Platform.KeyModifier.LeftAlt - commentId: F:OpenTK.Core.Platform.KeyModifier.LeftAlt - id: LeftAlt - parent: OpenTK.Core.Platform.KeyModifier - langs: - - csharp - - vb - name: LeftAlt - nameWithType: KeyModifier.LeftAlt - fullName: OpenTK.Core.Platform.KeyModifier.LeftAlt - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/KeyModifier.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: LeftAlt - path: opentk/src/OpenTK.Core/Platform/Enums/KeyModifier.cs - startLine: 43 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: If is down. - example: [] - syntax: - content: LeftAlt = 16 - return: - type: OpenTK.Core.Platform.KeyModifier -- uid: OpenTK.Core.Platform.KeyModifier.RightAlt - commentId: F:OpenTK.Core.Platform.KeyModifier.RightAlt - id: RightAlt - parent: OpenTK.Core.Platform.KeyModifier - langs: - - csharp - - vb - name: RightAlt - nameWithType: KeyModifier.RightAlt - fullName: OpenTK.Core.Platform.KeyModifier.RightAlt - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/KeyModifier.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: RightAlt - path: opentk/src/OpenTK.Core/Platform/Enums/KeyModifier.cs - startLine: 48 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: If is down. - example: [] - syntax: - content: RightAlt = 32 - return: - type: OpenTK.Core.Platform.KeyModifier -- uid: OpenTK.Core.Platform.KeyModifier.LeftGUI - commentId: F:OpenTK.Core.Platform.KeyModifier.LeftGUI - id: LeftGUI - parent: OpenTK.Core.Platform.KeyModifier - langs: - - csharp - - vb - name: LeftGUI - nameWithType: KeyModifier.LeftGUI - fullName: OpenTK.Core.Platform.KeyModifier.LeftGUI - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/KeyModifier.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: LeftGUI - path: opentk/src/OpenTK.Core/Platform/Enums/KeyModifier.cs - startLine: 53 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: If is down. - example: [] - syntax: - content: LeftGUI = 64 - return: - type: OpenTK.Core.Platform.KeyModifier -- uid: OpenTK.Core.Platform.KeyModifier.RightGUI - commentId: F:OpenTK.Core.Platform.KeyModifier.RightGUI - id: RightGUI - parent: OpenTK.Core.Platform.KeyModifier - langs: - - csharp - - vb - name: RightGUI - nameWithType: KeyModifier.RightGUI - fullName: OpenTK.Core.Platform.KeyModifier.RightGUI - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/KeyModifier.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: RightGUI - path: opentk/src/OpenTK.Core/Platform/Enums/KeyModifier.cs - startLine: 58 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: If is down. - example: [] - syntax: - content: RightGUI = 128 - return: - type: OpenTK.Core.Platform.KeyModifier -- uid: OpenTK.Core.Platform.KeyModifier.Shift - commentId: F:OpenTK.Core.Platform.KeyModifier.Shift - id: Shift - parent: OpenTK.Core.Platform.KeyModifier - langs: - - csharp - - vb - name: Shift - nameWithType: KeyModifier.Shift - fullName: OpenTK.Core.Platform.KeyModifier.Shift - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/KeyModifier.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Shift - path: opentk/src/OpenTK.Core/Platform/Enums/KeyModifier.cs - startLine: 63 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: If any of or are down. - example: [] - syntax: - content: Shift = 256 - return: - type: OpenTK.Core.Platform.KeyModifier -- uid: OpenTK.Core.Platform.KeyModifier.Control - commentId: F:OpenTK.Core.Platform.KeyModifier.Control - id: Control - parent: OpenTK.Core.Platform.KeyModifier - langs: - - csharp - - vb - name: Control - nameWithType: KeyModifier.Control - fullName: OpenTK.Core.Platform.KeyModifier.Control - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/KeyModifier.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Control - path: opentk/src/OpenTK.Core/Platform/Enums/KeyModifier.cs - startLine: 68 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: If any of or are down. - example: [] - syntax: - content: Control = 512 - return: - type: OpenTK.Core.Platform.KeyModifier -- uid: OpenTK.Core.Platform.KeyModifier.Alt - commentId: F:OpenTK.Core.Platform.KeyModifier.Alt - id: Alt - parent: OpenTK.Core.Platform.KeyModifier - langs: - - csharp - - vb - name: Alt - nameWithType: KeyModifier.Alt - fullName: OpenTK.Core.Platform.KeyModifier.Alt - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/KeyModifier.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Alt - path: opentk/src/OpenTK.Core/Platform/Enums/KeyModifier.cs - startLine: 73 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: If any of or are down. - example: [] - syntax: - content: Alt = 1024 - return: - type: OpenTK.Core.Platform.KeyModifier -- uid: OpenTK.Core.Platform.KeyModifier.GUI - commentId: F:OpenTK.Core.Platform.KeyModifier.GUI - id: GUI - parent: OpenTK.Core.Platform.KeyModifier - langs: - - csharp - - vb - name: GUI - nameWithType: KeyModifier.GUI - fullName: OpenTK.Core.Platform.KeyModifier.GUI - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/KeyModifier.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: GUI - path: opentk/src/OpenTK.Core/Platform/Enums/KeyModifier.cs - startLine: 78 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: If any of or are down. - example: [] - syntax: - content: GUI = 2048 - return: - type: OpenTK.Core.Platform.KeyModifier -- uid: OpenTK.Core.Platform.KeyModifier.NumLock - commentId: F:OpenTK.Core.Platform.KeyModifier.NumLock - id: NumLock - parent: OpenTK.Core.Platform.KeyModifier - langs: - - csharp - - vb - name: NumLock - nameWithType: KeyModifier.NumLock - fullName: OpenTK.Core.Platform.KeyModifier.NumLock - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/KeyModifier.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: NumLock - path: opentk/src/OpenTK.Core/Platform/Enums/KeyModifier.cs - startLine: 83 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: If is toggled on. - example: [] - syntax: - content: NumLock = 1048576 - return: - type: OpenTK.Core.Platform.KeyModifier -- uid: OpenTK.Core.Platform.KeyModifier.CapsLock - commentId: F:OpenTK.Core.Platform.KeyModifier.CapsLock - id: CapsLock - parent: OpenTK.Core.Platform.KeyModifier - langs: - - csharp - - vb - name: CapsLock - nameWithType: KeyModifier.CapsLock - fullName: OpenTK.Core.Platform.KeyModifier.CapsLock - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/KeyModifier.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: CapsLock - path: opentk/src/OpenTK.Core/Platform/Enums/KeyModifier.cs - startLine: 88 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: If is toggled on. - example: [] - syntax: - content: CapsLock = 2097152 - return: - type: OpenTK.Core.Platform.KeyModifier -- uid: OpenTK.Core.Platform.KeyModifier.ScrollLock - commentId: F:OpenTK.Core.Platform.KeyModifier.ScrollLock - id: ScrollLock - parent: OpenTK.Core.Platform.KeyModifier - langs: - - csharp - - vb - name: ScrollLock - nameWithType: KeyModifier.ScrollLock - fullName: OpenTK.Core.Platform.KeyModifier.ScrollLock - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/KeyModifier.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: ScrollLock - path: opentk/src/OpenTK.Core/Platform/Enums/KeyModifier.cs - startLine: 93 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Is is toggled on. - example: [] - syntax: - content: ScrollLock = 4194304 - return: - type: OpenTK.Core.Platform.KeyModifier -references: -- uid: OpenTK.Core.Platform - commentId: N:OpenTK.Core.Platform - href: OpenTK.html - name: OpenTK.Core.Platform - nameWithType: OpenTK.Core.Platform - fullName: OpenTK.Core.Platform - spec.csharp: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform - name: Platform - href: OpenTK.Core.Platform.html - spec.vb: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform - name: Platform - href: OpenTK.Core.Platform.html -- uid: OpenTK.Core.Platform.KeyModifier - commentId: T:OpenTK.Core.Platform.KeyModifier - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.KeyModifier.html - name: KeyModifier - nameWithType: KeyModifier - fullName: OpenTK.Core.Platform.KeyModifier -- uid: OpenTK.Core.Platform.Key.LeftShift - commentId: F:OpenTK.Core.Platform.Key.LeftShift - href: OpenTK.Core.Platform.Key.html#OpenTK_Core_Platform_Key_LeftShift - name: LeftShift - nameWithType: Key.LeftShift - fullName: OpenTK.Core.Platform.Key.LeftShift -- uid: OpenTK.Core.Platform.Key.RightShift - commentId: F:OpenTK.Core.Platform.Key.RightShift - href: OpenTK.Core.Platform.Key.html#OpenTK_Core_Platform_Key_RightShift - name: RightShift - nameWithType: Key.RightShift - fullName: OpenTK.Core.Platform.Key.RightShift -- uid: OpenTK.Core.Platform.Key.LeftControl - commentId: F:OpenTK.Core.Platform.Key.LeftControl - href: OpenTK.Core.Platform.Key.html#OpenTK_Core_Platform_Key_LeftControl - name: LeftControl - nameWithType: Key.LeftControl - fullName: OpenTK.Core.Platform.Key.LeftControl -- uid: OpenTK.Core.Platform.Key.RightControl - commentId: F:OpenTK.Core.Platform.Key.RightControl - href: OpenTK.Core.Platform.Key.html#OpenTK_Core_Platform_Key_RightControl - name: RightControl - nameWithType: Key.RightControl - fullName: OpenTK.Core.Platform.Key.RightControl -- uid: OpenTK.Core.Platform.Key.LeftAlt - commentId: F:OpenTK.Core.Platform.Key.LeftAlt - href: OpenTK.Core.Platform.Key.html#OpenTK_Core_Platform_Key_LeftAlt - name: LeftAlt - nameWithType: Key.LeftAlt - fullName: OpenTK.Core.Platform.Key.LeftAlt -- uid: OpenTK.Core.Platform.Key.RightAlt - commentId: F:OpenTK.Core.Platform.Key.RightAlt - href: OpenTK.Core.Platform.Key.html#OpenTK_Core_Platform_Key_RightAlt - name: RightAlt - nameWithType: Key.RightAlt - fullName: OpenTK.Core.Platform.Key.RightAlt -- uid: OpenTK.Core.Platform.Key.LeftGUI - commentId: F:OpenTK.Core.Platform.Key.LeftGUI - href: OpenTK.Core.Platform.Key.html#OpenTK_Core_Platform_Key_LeftGUI - name: LeftGUI - nameWithType: Key.LeftGUI - fullName: OpenTK.Core.Platform.Key.LeftGUI -- uid: OpenTK.Core.Platform.Key.RightGUI - commentId: F:OpenTK.Core.Platform.Key.RightGUI - href: OpenTK.Core.Platform.Key.html#OpenTK_Core_Platform_Key_RightGUI - name: RightGUI - nameWithType: Key.RightGUI - fullName: OpenTK.Core.Platform.Key.RightGUI -- uid: OpenTK.Core.Platform.Key.NumLock - commentId: F:OpenTK.Core.Platform.Key.NumLock - href: OpenTK.Core.Platform.Key.html#OpenTK_Core_Platform_Key_NumLock - name: NumLock - nameWithType: Key.NumLock - fullName: OpenTK.Core.Platform.Key.NumLock -- uid: OpenTK.Core.Platform.Key.CapsLock - commentId: F:OpenTK.Core.Platform.Key.CapsLock - href: OpenTK.Core.Platform.Key.html#OpenTK_Core_Platform_Key_CapsLock - name: CapsLock - nameWithType: Key.CapsLock - fullName: OpenTK.Core.Platform.Key.CapsLock -- uid: OpenTK.Core.Platform.Key.ScrollLock - commentId: F:OpenTK.Core.Platform.Key.ScrollLock - href: OpenTK.Core.Platform.Key.html#OpenTK_Core_Platform_Key_ScrollLock - name: ScrollLock - nameWithType: Key.ScrollLock - fullName: OpenTK.Core.Platform.Key.ScrollLock diff --git a/api/OpenTK.Core.Platform.MouseButton.yml b/api/OpenTK.Core.Platform.MouseButton.yml deleted file mode 100644 index 8ee38d82..00000000 --- a/api/OpenTK.Core.Platform.MouseButton.yml +++ /dev/null @@ -1,300 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: OpenTK.Core.Platform.MouseButton - commentId: T:OpenTK.Core.Platform.MouseButton - id: MouseButton - parent: OpenTK.Core.Platform - children: - - OpenTK.Core.Platform.MouseButton.Button1 - - OpenTK.Core.Platform.MouseButton.Button2 - - OpenTK.Core.Platform.MouseButton.Button3 - - OpenTK.Core.Platform.MouseButton.Button4 - - OpenTK.Core.Platform.MouseButton.Button5 - - OpenTK.Core.Platform.MouseButton.Button6 - - OpenTK.Core.Platform.MouseButton.Button7 - - OpenTK.Core.Platform.MouseButton.Button8 - langs: - - csharp - - vb - name: MouseButton - nameWithType: MouseButton - fullName: OpenTK.Core.Platform.MouseButton - type: Enum - source: - remote: - path: src/OpenTK.Core/Platform/Enums/MouseButton.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: MouseButton - path: opentk/src/OpenTK.Core/Platform/Enums/MouseButton.cs - startLine: 7 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Enumeration of mouse buttons. - example: [] - syntax: - content: public enum MouseButton - content.vb: Public Enum MouseButton -- uid: OpenTK.Core.Platform.MouseButton.Button1 - commentId: F:OpenTK.Core.Platform.MouseButton.Button1 - id: Button1 - parent: OpenTK.Core.Platform.MouseButton - langs: - - csharp - - vb - name: Button1 - nameWithType: MouseButton.Button1 - fullName: OpenTK.Core.Platform.MouseButton.Button1 - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/MouseButton.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Button1 - path: opentk/src/OpenTK.Core/Platform/Enums/MouseButton.cs - startLine: 14 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: The primary mouse button (usually the left one). - example: [] - syntax: - content: Button1 = 0 - return: - type: OpenTK.Core.Platform.MouseButton -- uid: OpenTK.Core.Platform.MouseButton.Button2 - commentId: F:OpenTK.Core.Platform.MouseButton.Button2 - id: Button2 - parent: OpenTK.Core.Platform.MouseButton - langs: - - csharp - - vb - name: Button2 - nameWithType: MouseButton.Button2 - fullName: OpenTK.Core.Platform.MouseButton.Button2 - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/MouseButton.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Button2 - path: opentk/src/OpenTK.Core/Platform/Enums/MouseButton.cs - startLine: 19 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: The secondary mouse button (usually the right one). - example: [] - syntax: - content: Button2 = 1 - return: - type: OpenTK.Core.Platform.MouseButton -- uid: OpenTK.Core.Platform.MouseButton.Button3 - commentId: F:OpenTK.Core.Platform.MouseButton.Button3 - id: Button3 - parent: OpenTK.Core.Platform.MouseButton - langs: - - csharp - - vb - name: Button3 - nameWithType: MouseButton.Button3 - fullName: OpenTK.Core.Platform.MouseButton.Button3 - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/MouseButton.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Button3 - path: opentk/src/OpenTK.Core/Platform/Enums/MouseButton.cs - startLine: 24 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: The tertiary mouse button (usually in the mouse wheel). - example: [] - syntax: - content: Button3 = 2 - return: - type: OpenTK.Core.Platform.MouseButton -- uid: OpenTK.Core.Platform.MouseButton.Button4 - commentId: F:OpenTK.Core.Platform.MouseButton.Button4 - id: Button4 - parent: OpenTK.Core.Platform.MouseButton - langs: - - csharp - - vb - name: Button4 - nameWithType: MouseButton.Button4 - fullName: OpenTK.Core.Platform.MouseButton.Button4 - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/MouseButton.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Button4 - path: opentk/src/OpenTK.Core/Platform/Enums/MouseButton.cs - startLine: 29 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Auxiliary mouse button. - example: [] - syntax: - content: Button4 = 3 - return: - type: OpenTK.Core.Platform.MouseButton -- uid: OpenTK.Core.Platform.MouseButton.Button5 - commentId: F:OpenTK.Core.Platform.MouseButton.Button5 - id: Button5 - parent: OpenTK.Core.Platform.MouseButton - langs: - - csharp - - vb - name: Button5 - nameWithType: MouseButton.Button5 - fullName: OpenTK.Core.Platform.MouseButton.Button5 - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/MouseButton.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Button5 - path: opentk/src/OpenTK.Core/Platform/Enums/MouseButton.cs - startLine: 34 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Auxiliary mouse button. - example: [] - syntax: - content: Button5 = 4 - return: - type: OpenTK.Core.Platform.MouseButton -- uid: OpenTK.Core.Platform.MouseButton.Button6 - commentId: F:OpenTK.Core.Platform.MouseButton.Button6 - id: Button6 - parent: OpenTK.Core.Platform.MouseButton - langs: - - csharp - - vb - name: Button6 - nameWithType: MouseButton.Button6 - fullName: OpenTK.Core.Platform.MouseButton.Button6 - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/MouseButton.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Button6 - path: opentk/src/OpenTK.Core/Platform/Enums/MouseButton.cs - startLine: 39 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Auxiliary mouse button. - example: [] - syntax: - content: Button6 = 5 - return: - type: OpenTK.Core.Platform.MouseButton -- uid: OpenTK.Core.Platform.MouseButton.Button7 - commentId: F:OpenTK.Core.Platform.MouseButton.Button7 - id: Button7 - parent: OpenTK.Core.Platform.MouseButton - langs: - - csharp - - vb - name: Button7 - nameWithType: MouseButton.Button7 - fullName: OpenTK.Core.Platform.MouseButton.Button7 - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/MouseButton.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Button7 - path: opentk/src/OpenTK.Core/Platform/Enums/MouseButton.cs - startLine: 44 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Auxiliary mouse button. - example: [] - syntax: - content: Button7 = 6 - return: - type: OpenTK.Core.Platform.MouseButton -- uid: OpenTK.Core.Platform.MouseButton.Button8 - commentId: F:OpenTK.Core.Platform.MouseButton.Button8 - id: Button8 - parent: OpenTK.Core.Platform.MouseButton - langs: - - csharp - - vb - name: Button8 - nameWithType: MouseButton.Button8 - fullName: OpenTK.Core.Platform.MouseButton.Button8 - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/MouseButton.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Button8 - path: opentk/src/OpenTK.Core/Platform/Enums/MouseButton.cs - startLine: 49 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Auxiliary mouse button. - example: [] - syntax: - content: Button8 = 7 - return: - type: OpenTK.Core.Platform.MouseButton -references: -- uid: OpenTK.Core.Platform - commentId: N:OpenTK.Core.Platform - href: OpenTK.html - name: OpenTK.Core.Platform - nameWithType: OpenTK.Core.Platform - fullName: OpenTK.Core.Platform - spec.csharp: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform - name: Platform - href: OpenTK.Core.Platform.html - spec.vb: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform - name: Platform - href: OpenTK.Core.Platform.html -- uid: OpenTK.Core.Platform.MouseButton - commentId: T:OpenTK.Core.Platform.MouseButton - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.MouseButton.html - name: MouseButton - nameWithType: MouseButton - fullName: OpenTK.Core.Platform.MouseButton diff --git a/api/OpenTK.Core.Platform.MouseButtonFlags.yml b/api/OpenTK.Core.Platform.MouseButtonFlags.yml deleted file mode 100644 index 790526de..00000000 --- a/api/OpenTK.Core.Platform.MouseButtonFlags.yml +++ /dev/null @@ -1,310 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: OpenTK.Core.Platform.MouseButtonFlags - commentId: T:OpenTK.Core.Platform.MouseButtonFlags - id: MouseButtonFlags - parent: OpenTK.Core.Platform - children: - - OpenTK.Core.Platform.MouseButtonFlags.Button1 - - OpenTK.Core.Platform.MouseButtonFlags.Button2 - - OpenTK.Core.Platform.MouseButtonFlags.Button3 - - OpenTK.Core.Platform.MouseButtonFlags.Button4 - - OpenTK.Core.Platform.MouseButtonFlags.Button5 - - OpenTK.Core.Platform.MouseButtonFlags.Button6 - - OpenTK.Core.Platform.MouseButtonFlags.Button7 - - OpenTK.Core.Platform.MouseButtonFlags.Button8 - langs: - - csharp - - vb - name: MouseButtonFlags - nameWithType: MouseButtonFlags - fullName: OpenTK.Core.Platform.MouseButtonFlags - type: Enum - source: - remote: - path: src/OpenTK.Core/Platform/Enums/MouseButton.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: MouseButtonFlags - path: opentk/src/OpenTK.Core/Platform/Enums/MouseButton.cs - startLine: 55 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Mouse button flags. - example: [] - syntax: - content: >- - [Flags] - - public enum MouseButtonFlags - content.vb: >- - - - Public Enum MouseButtonFlags - attributes: - - type: System.FlagsAttribute - ctor: System.FlagsAttribute.#ctor - arguments: [] -- uid: OpenTK.Core.Platform.MouseButtonFlags.Button1 - commentId: F:OpenTK.Core.Platform.MouseButtonFlags.Button1 - id: Button1 - parent: OpenTK.Core.Platform.MouseButtonFlags - langs: - - csharp - - vb - name: Button1 - nameWithType: MouseButtonFlags.Button1 - fullName: OpenTK.Core.Platform.MouseButtonFlags.Button1 - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/MouseButton.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Button1 - path: opentk/src/OpenTK.Core/Platform/Enums/MouseButton.cs - startLine: 61 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Indicates that the primary mouse button (usually the left one) is pressed. - example: [] - syntax: - content: Button1 = 1 - return: - type: OpenTK.Core.Platform.MouseButtonFlags -- uid: OpenTK.Core.Platform.MouseButtonFlags.Button2 - commentId: F:OpenTK.Core.Platform.MouseButtonFlags.Button2 - id: Button2 - parent: OpenTK.Core.Platform.MouseButtonFlags - langs: - - csharp - - vb - name: Button2 - nameWithType: MouseButtonFlags.Button2 - fullName: OpenTK.Core.Platform.MouseButtonFlags.Button2 - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/MouseButton.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Button2 - path: opentk/src/OpenTK.Core/Platform/Enums/MouseButton.cs - startLine: 66 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Indicates that the secondary mouse button (usually the right one) is pressed. - example: [] - syntax: - content: Button2 = 2 - return: - type: OpenTK.Core.Platform.MouseButtonFlags -- uid: OpenTK.Core.Platform.MouseButtonFlags.Button3 - commentId: F:OpenTK.Core.Platform.MouseButtonFlags.Button3 - id: Button3 - parent: OpenTK.Core.Platform.MouseButtonFlags - langs: - - csharp - - vb - name: Button3 - nameWithType: MouseButtonFlags.Button3 - fullName: OpenTK.Core.Platform.MouseButtonFlags.Button3 - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/MouseButton.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Button3 - path: opentk/src/OpenTK.Core/Platform/Enums/MouseButton.cs - startLine: 71 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Indicates that the tertiary mouse button (usually in the mouse wheel) is pressed. - example: [] - syntax: - content: Button3 = 4 - return: - type: OpenTK.Core.Platform.MouseButtonFlags -- uid: OpenTK.Core.Platform.MouseButtonFlags.Button4 - commentId: F:OpenTK.Core.Platform.MouseButtonFlags.Button4 - id: Button4 - parent: OpenTK.Core.Platform.MouseButtonFlags - langs: - - csharp - - vb - name: Button4 - nameWithType: MouseButtonFlags.Button4 - fullName: OpenTK.Core.Platform.MouseButtonFlags.Button4 - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/MouseButton.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Button4 - path: opentk/src/OpenTK.Core/Platform/Enums/MouseButton.cs - startLine: 76 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Indicates that auxiliary mouse button 1 is pressed. - example: [] - syntax: - content: Button4 = 8 - return: - type: OpenTK.Core.Platform.MouseButtonFlags -- uid: OpenTK.Core.Platform.MouseButtonFlags.Button5 - commentId: F:OpenTK.Core.Platform.MouseButtonFlags.Button5 - id: Button5 - parent: OpenTK.Core.Platform.MouseButtonFlags - langs: - - csharp - - vb - name: Button5 - nameWithType: MouseButtonFlags.Button5 - fullName: OpenTK.Core.Platform.MouseButtonFlags.Button5 - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/MouseButton.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Button5 - path: opentk/src/OpenTK.Core/Platform/Enums/MouseButton.cs - startLine: 81 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Indicates that auxiliary mouse button 2 is pressed. - example: [] - syntax: - content: Button5 = 16 - return: - type: OpenTK.Core.Platform.MouseButtonFlags -- uid: OpenTK.Core.Platform.MouseButtonFlags.Button6 - commentId: F:OpenTK.Core.Platform.MouseButtonFlags.Button6 - id: Button6 - parent: OpenTK.Core.Platform.MouseButtonFlags - langs: - - csharp - - vb - name: Button6 - nameWithType: MouseButtonFlags.Button6 - fullName: OpenTK.Core.Platform.MouseButtonFlags.Button6 - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/MouseButton.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Button6 - path: opentk/src/OpenTK.Core/Platform/Enums/MouseButton.cs - startLine: 86 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Indicates that auxiliary mouse button 3 is pressed. - example: [] - syntax: - content: Button6 = 32 - return: - type: OpenTK.Core.Platform.MouseButtonFlags -- uid: OpenTK.Core.Platform.MouseButtonFlags.Button7 - commentId: F:OpenTK.Core.Platform.MouseButtonFlags.Button7 - id: Button7 - parent: OpenTK.Core.Platform.MouseButtonFlags - langs: - - csharp - - vb - name: Button7 - nameWithType: MouseButtonFlags.Button7 - fullName: OpenTK.Core.Platform.MouseButtonFlags.Button7 - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/MouseButton.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Button7 - path: opentk/src/OpenTK.Core/Platform/Enums/MouseButton.cs - startLine: 91 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Indicates that auxiliary mouse button 4 is pressed. - example: [] - syntax: - content: Button7 = 64 - return: - type: OpenTK.Core.Platform.MouseButtonFlags -- uid: OpenTK.Core.Platform.MouseButtonFlags.Button8 - commentId: F:OpenTK.Core.Platform.MouseButtonFlags.Button8 - id: Button8 - parent: OpenTK.Core.Platform.MouseButtonFlags - langs: - - csharp - - vb - name: Button8 - nameWithType: MouseButtonFlags.Button8 - fullName: OpenTK.Core.Platform.MouseButtonFlags.Button8 - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/MouseButton.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Button8 - path: opentk/src/OpenTK.Core/Platform/Enums/MouseButton.cs - startLine: 96 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Indicates that auxiliary mouse button 5 is pressed. - example: [] - syntax: - content: Button8 = 128 - return: - type: OpenTK.Core.Platform.MouseButtonFlags -references: -- uid: OpenTK.Core.Platform - commentId: N:OpenTK.Core.Platform - href: OpenTK.html - name: OpenTK.Core.Platform - nameWithType: OpenTK.Core.Platform - fullName: OpenTK.Core.Platform - spec.csharp: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform - name: Platform - href: OpenTK.Core.Platform.html - spec.vb: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform - name: Platform - href: OpenTK.Core.Platform.html -- uid: OpenTK.Core.Platform.MouseButtonFlags - commentId: T:OpenTK.Core.Platform.MouseButtonFlags - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.MouseButtonFlags.html - name: MouseButtonFlags - nameWithType: MouseButtonFlags - fullName: OpenTK.Core.Platform.MouseButtonFlags diff --git a/api/OpenTK.Core.Platform.OpenDialogOptions.yml b/api/OpenTK.Core.Platform.OpenDialogOptions.yml deleted file mode 100644 index 709f618a..00000000 --- a/api/OpenTK.Core.Platform.OpenDialogOptions.yml +++ /dev/null @@ -1,136 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: OpenTK.Core.Platform.OpenDialogOptions - commentId: T:OpenTK.Core.Platform.OpenDialogOptions - id: OpenDialogOptions - parent: OpenTK.Core.Platform - children: - - OpenTK.Core.Platform.OpenDialogOptions.AllowMultiSelect - - OpenTK.Core.Platform.OpenDialogOptions.SelectDirectory - langs: - - csharp - - vb - name: OpenDialogOptions - nameWithType: OpenDialogOptions - fullName: OpenTK.Core.Platform.OpenDialogOptions - type: Enum - source: - remote: - path: src/OpenTK.Core/Platform/Enums/OpenDialogOptions.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: OpenDialogOptions - path: opentk/src/OpenTK.Core/Platform/Enums/OpenDialogOptions.cs - startLine: 11 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Options for open dialogs. - example: [] - syntax: - content: >- - [Flags] - - public enum OpenDialogOptions - content.vb: >- - - - Public Enum OpenDialogOptions - attributes: - - type: System.FlagsAttribute - ctor: System.FlagsAttribute.#ctor - arguments: [] -- uid: OpenTK.Core.Platform.OpenDialogOptions.AllowMultiSelect - commentId: F:OpenTK.Core.Platform.OpenDialogOptions.AllowMultiSelect - id: AllowMultiSelect - parent: OpenTK.Core.Platform.OpenDialogOptions - langs: - - csharp - - vb - name: AllowMultiSelect - nameWithType: OpenDialogOptions.AllowMultiSelect - fullName: OpenTK.Core.Platform.OpenDialogOptions.AllowMultiSelect - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/OpenDialogOptions.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: AllowMultiSelect - path: opentk/src/OpenTK.Core/Platform/Enums/OpenDialogOptions.cs - startLine: 17 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Allows multiple items to be selected. - example: [] - syntax: - content: AllowMultiSelect = 1 - return: - type: OpenTK.Core.Platform.OpenDialogOptions -- uid: OpenTK.Core.Platform.OpenDialogOptions.SelectDirectory - commentId: F:OpenTK.Core.Platform.OpenDialogOptions.SelectDirectory - id: SelectDirectory - parent: OpenTK.Core.Platform.OpenDialogOptions - langs: - - csharp - - vb - name: SelectDirectory - nameWithType: OpenDialogOptions.SelectDirectory - fullName: OpenTK.Core.Platform.OpenDialogOptions.SelectDirectory - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/OpenDialogOptions.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: SelectDirectory - path: opentk/src/OpenTK.Core/Platform/Enums/OpenDialogOptions.cs - startLine: 23 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Select directories instead of files. - example: [] - syntax: - content: SelectDirectory = 2 - return: - type: OpenTK.Core.Platform.OpenDialogOptions -references: -- uid: OpenTK.Core.Platform - commentId: N:OpenTK.Core.Platform - href: OpenTK.html - name: OpenTK.Core.Platform - nameWithType: OpenTK.Core.Platform - fullName: OpenTK.Core.Platform - spec.csharp: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform - name: Platform - href: OpenTK.Core.Platform.html - spec.vb: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform - name: Platform - href: OpenTK.Core.Platform.html -- uid: OpenTK.Core.Platform.OpenDialogOptions - commentId: T:OpenTK.Core.Platform.OpenDialogOptions - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.OpenDialogOptions.html - name: OpenDialogOptions - nameWithType: OpenDialogOptions - fullName: OpenTK.Core.Platform.OpenDialogOptions diff --git a/api/OpenTK.Core.Platform.OpenGLGraphicsApiHints.yml b/api/OpenTK.Core.Platform.OpenGLGraphicsApiHints.yml deleted file mode 100644 index 7f2541aa..00000000 --- a/api/OpenTK.Core.Platform.OpenGLGraphicsApiHints.yml +++ /dev/null @@ -1,1579 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: OpenTK.Core.Platform.OpenGLGraphicsApiHints - commentId: T:OpenTK.Core.Platform.OpenGLGraphicsApiHints - id: OpenGLGraphicsApiHints - parent: OpenTK.Core.Platform - children: - - OpenTK.Core.Platform.OpenGLGraphicsApiHints.#ctor - - OpenTK.Core.Platform.OpenGLGraphicsApiHints.AlphaColorBits - - OpenTK.Core.Platform.OpenGLGraphicsApiHints.Api - - OpenTK.Core.Platform.OpenGLGraphicsApiHints.BlueColorBits - - OpenTK.Core.Platform.OpenGLGraphicsApiHints.Copy - - OpenTK.Core.Platform.OpenGLGraphicsApiHints.DebugFlag - - OpenTK.Core.Platform.OpenGLGraphicsApiHints.DepthBits - - OpenTK.Core.Platform.OpenGLGraphicsApiHints.DoubleBuffer - - OpenTK.Core.Platform.OpenGLGraphicsApiHints.ForwardCompatibleFlag - - OpenTK.Core.Platform.OpenGLGraphicsApiHints.GreenColorBits - - OpenTK.Core.Platform.OpenGLGraphicsApiHints.Multisamples - - OpenTK.Core.Platform.OpenGLGraphicsApiHints.NoError - - OpenTK.Core.Platform.OpenGLGraphicsApiHints.PixelFormat - - OpenTK.Core.Platform.OpenGLGraphicsApiHints.Profile - - OpenTK.Core.Platform.OpenGLGraphicsApiHints.RedColorBits - - OpenTK.Core.Platform.OpenGLGraphicsApiHints.ReleaseBehaviour - - OpenTK.Core.Platform.OpenGLGraphicsApiHints.ResetIsolation - - OpenTK.Core.Platform.OpenGLGraphicsApiHints.ResetNotificationStrategy - - OpenTK.Core.Platform.OpenGLGraphicsApiHints.RobustnessFlag - - OpenTK.Core.Platform.OpenGLGraphicsApiHints.Selector - - OpenTK.Core.Platform.OpenGLGraphicsApiHints.SharedContext - - OpenTK.Core.Platform.OpenGLGraphicsApiHints.StencilBits - - OpenTK.Core.Platform.OpenGLGraphicsApiHints.SwapMethod - - OpenTK.Core.Platform.OpenGLGraphicsApiHints.UseFlushControl - - OpenTK.Core.Platform.OpenGLGraphicsApiHints.UseSelectorOnMacOS - - OpenTK.Core.Platform.OpenGLGraphicsApiHints.Version - - OpenTK.Core.Platform.OpenGLGraphicsApiHints.sRGBFramebuffer - langs: - - csharp - - vb - name: OpenGLGraphicsApiHints - nameWithType: OpenGLGraphicsApiHints - fullName: OpenTK.Core.Platform.OpenGLGraphicsApiHints - type: Class - source: - remote: - path: src/OpenTK.Core/Platform/OpenGLGraphicsApiHints.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: OpenGLGraphicsApiHints - path: opentk/src/OpenTK.Core/Platform/OpenGLGraphicsApiHints.cs - startLine: 9 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Graphics API hints for OpenGL family of APIs. - example: [] - syntax: - content: 'public class OpenGLGraphicsApiHints : GraphicsApiHints' - content.vb: Public Class OpenGLGraphicsApiHints Inherits GraphicsApiHints - inheritance: - - System.Object - - OpenTK.Core.Platform.GraphicsApiHints - inheritedMembers: - - System.Object.Equals(System.Object) - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetHashCode - - System.Object.GetType - - System.Object.MemberwiseClone - - System.Object.ReferenceEquals(System.Object,System.Object) - - System.Object.ToString -- uid: OpenTK.Core.Platform.OpenGLGraphicsApiHints.Api - commentId: P:OpenTK.Core.Platform.OpenGLGraphicsApiHints.Api - id: Api - parent: OpenTK.Core.Platform.OpenGLGraphicsApiHints - langs: - - csharp - - vb - name: Api - nameWithType: OpenGLGraphicsApiHints.Api - fullName: OpenTK.Core.Platform.OpenGLGraphicsApiHints.Api - type: Property - source: - remote: - path: src/OpenTK.Core/Platform/OpenGLGraphicsApiHints.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Api - path: opentk/src/OpenTK.Core/Platform/OpenGLGraphicsApiHints.cs - startLine: 12 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Which graphics API the hints are for. - example: [] - syntax: - content: public override GraphicsApi Api { get; } - parameters: [] - return: - type: OpenTK.Core.Platform.GraphicsApi - content.vb: Public Overrides ReadOnly Property Api As GraphicsApi - overridden: OpenTK.Core.Platform.GraphicsApiHints.Api - overload: OpenTK.Core.Platform.OpenGLGraphicsApiHints.Api* -- uid: OpenTK.Core.Platform.OpenGLGraphicsApiHints.Version - commentId: P:OpenTK.Core.Platform.OpenGLGraphicsApiHints.Version - id: Version - parent: OpenTK.Core.Platform.OpenGLGraphicsApiHints - langs: - - csharp - - vb - name: Version - nameWithType: OpenGLGraphicsApiHints.Version - fullName: OpenTK.Core.Platform.OpenGLGraphicsApiHints.Version - type: Property - source: - remote: - path: src/OpenTK.Core/Platform/OpenGLGraphicsApiHints.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Version - path: opentk/src/OpenTK.Core/Platform/OpenGLGraphicsApiHints.cs - startLine: 17 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: OpenGL version to create. - example: [] - syntax: - content: public Version Version { get; set; } - parameters: [] - return: - type: System.Version - content.vb: Public Property Version As Version - overload: OpenTK.Core.Platform.OpenGLGraphicsApiHints.Version* -- uid: OpenTK.Core.Platform.OpenGLGraphicsApiHints.RedColorBits - commentId: P:OpenTK.Core.Platform.OpenGLGraphicsApiHints.RedColorBits - id: RedColorBits - parent: OpenTK.Core.Platform.OpenGLGraphicsApiHints - langs: - - csharp - - vb - name: RedColorBits - nameWithType: OpenGLGraphicsApiHints.RedColorBits - fullName: OpenTK.Core.Platform.OpenGLGraphicsApiHints.RedColorBits - type: Property - source: - remote: - path: src/OpenTK.Core/Platform/OpenGLGraphicsApiHints.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: RedColorBits - path: opentk/src/OpenTK.Core/Platform/OpenGLGraphicsApiHints.cs - startLine: 27 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Number of bits for red color channel. - example: [] - syntax: - content: public int RedColorBits { get; set; } - parameters: [] - return: - type: System.Int32 - content.vb: Public Property RedColorBits As Integer - overload: OpenTK.Core.Platform.OpenGLGraphicsApiHints.RedColorBits* -- uid: OpenTK.Core.Platform.OpenGLGraphicsApiHints.GreenColorBits - commentId: P:OpenTK.Core.Platform.OpenGLGraphicsApiHints.GreenColorBits - id: GreenColorBits - parent: OpenTK.Core.Platform.OpenGLGraphicsApiHints - langs: - - csharp - - vb - name: GreenColorBits - nameWithType: OpenGLGraphicsApiHints.GreenColorBits - fullName: OpenTK.Core.Platform.OpenGLGraphicsApiHints.GreenColorBits - type: Property - source: - remote: - path: src/OpenTK.Core/Platform/OpenGLGraphicsApiHints.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: GreenColorBits - path: opentk/src/OpenTK.Core/Platform/OpenGLGraphicsApiHints.cs - startLine: 32 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Number of bits for green color channel. - example: [] - syntax: - content: public int GreenColorBits { get; set; } - parameters: [] - return: - type: System.Int32 - content.vb: Public Property GreenColorBits As Integer - overload: OpenTK.Core.Platform.OpenGLGraphicsApiHints.GreenColorBits* -- uid: OpenTK.Core.Platform.OpenGLGraphicsApiHints.BlueColorBits - commentId: P:OpenTK.Core.Platform.OpenGLGraphicsApiHints.BlueColorBits - id: BlueColorBits - parent: OpenTK.Core.Platform.OpenGLGraphicsApiHints - langs: - - csharp - - vb - name: BlueColorBits - nameWithType: OpenGLGraphicsApiHints.BlueColorBits - fullName: OpenTK.Core.Platform.OpenGLGraphicsApiHints.BlueColorBits - type: Property - source: - remote: - path: src/OpenTK.Core/Platform/OpenGLGraphicsApiHints.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: BlueColorBits - path: opentk/src/OpenTK.Core/Platform/OpenGLGraphicsApiHints.cs - startLine: 37 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Number of bits for blue color channel. - example: [] - syntax: - content: public int BlueColorBits { get; set; } - parameters: [] - return: - type: System.Int32 - content.vb: Public Property BlueColorBits As Integer - overload: OpenTK.Core.Platform.OpenGLGraphicsApiHints.BlueColorBits* -- uid: OpenTK.Core.Platform.OpenGLGraphicsApiHints.AlphaColorBits - commentId: P:OpenTK.Core.Platform.OpenGLGraphicsApiHints.AlphaColorBits - id: AlphaColorBits - parent: OpenTK.Core.Platform.OpenGLGraphicsApiHints - langs: - - csharp - - vb - name: AlphaColorBits - nameWithType: OpenGLGraphicsApiHints.AlphaColorBits - fullName: OpenTK.Core.Platform.OpenGLGraphicsApiHints.AlphaColorBits - type: Property - source: - remote: - path: src/OpenTK.Core/Platform/OpenGLGraphicsApiHints.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: AlphaColorBits - path: opentk/src/OpenTK.Core/Platform/OpenGLGraphicsApiHints.cs - startLine: 42 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Number of bits for alpha color channel. - example: [] - syntax: - content: public int AlphaColorBits { get; set; } - parameters: [] - return: - type: System.Int32 - content.vb: Public Property AlphaColorBits As Integer - overload: OpenTK.Core.Platform.OpenGLGraphicsApiHints.AlphaColorBits* -- uid: OpenTK.Core.Platform.OpenGLGraphicsApiHints.StencilBits - commentId: P:OpenTK.Core.Platform.OpenGLGraphicsApiHints.StencilBits - id: StencilBits - parent: OpenTK.Core.Platform.OpenGLGraphicsApiHints - langs: - - csharp - - vb - name: StencilBits - nameWithType: OpenGLGraphicsApiHints.StencilBits - fullName: OpenTK.Core.Platform.OpenGLGraphicsApiHints.StencilBits - type: Property - source: - remote: - path: src/OpenTK.Core/Platform/OpenGLGraphicsApiHints.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: StencilBits - path: opentk/src/OpenTK.Core/Platform/OpenGLGraphicsApiHints.cs - startLine: 47 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Number of bits for stencil buffer. - example: [] - syntax: - content: public ContextStencilBits StencilBits { get; set; } - parameters: [] - return: - type: OpenTK.Core.Platform.ContextStencilBits - content.vb: Public Property StencilBits As ContextStencilBits - overload: OpenTK.Core.Platform.OpenGLGraphicsApiHints.StencilBits* -- uid: OpenTK.Core.Platform.OpenGLGraphicsApiHints.DepthBits - commentId: P:OpenTK.Core.Platform.OpenGLGraphicsApiHints.DepthBits - id: DepthBits - parent: OpenTK.Core.Platform.OpenGLGraphicsApiHints - langs: - - csharp - - vb - name: DepthBits - nameWithType: OpenGLGraphicsApiHints.DepthBits - fullName: OpenTK.Core.Platform.OpenGLGraphicsApiHints.DepthBits - type: Property - source: - remote: - path: src/OpenTK.Core/Platform/OpenGLGraphicsApiHints.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: DepthBits - path: opentk/src/OpenTK.Core/Platform/OpenGLGraphicsApiHints.cs - startLine: 52 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Number of bits for depth buffer. - example: [] - syntax: - content: public ContextDepthBits DepthBits { get; set; } - parameters: [] - return: - type: OpenTK.Core.Platform.ContextDepthBits - content.vb: Public Property DepthBits As ContextDepthBits - overload: OpenTK.Core.Platform.OpenGLGraphicsApiHints.DepthBits* -- uid: OpenTK.Core.Platform.OpenGLGraphicsApiHints.Multisamples - commentId: P:OpenTK.Core.Platform.OpenGLGraphicsApiHints.Multisamples - id: Multisamples - parent: OpenTK.Core.Platform.OpenGLGraphicsApiHints - langs: - - csharp - - vb - name: Multisamples - nameWithType: OpenGLGraphicsApiHints.Multisamples - fullName: OpenTK.Core.Platform.OpenGLGraphicsApiHints.Multisamples - type: Property - source: - remote: - path: src/OpenTK.Core/Platform/OpenGLGraphicsApiHints.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Multisamples - path: opentk/src/OpenTK.Core/Platform/OpenGLGraphicsApiHints.cs - startLine: 57 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Number of MSAA samples. - example: [] - syntax: - content: public int Multisamples { get; set; } - parameters: [] - return: - type: System.Int32 - content.vb: Public Property Multisamples As Integer - overload: OpenTK.Core.Platform.OpenGLGraphicsApiHints.Multisamples* -- uid: OpenTK.Core.Platform.OpenGLGraphicsApiHints.DoubleBuffer - commentId: P:OpenTK.Core.Platform.OpenGLGraphicsApiHints.DoubleBuffer - id: DoubleBuffer - parent: OpenTK.Core.Platform.OpenGLGraphicsApiHints - langs: - - csharp - - vb - name: DoubleBuffer - nameWithType: OpenGLGraphicsApiHints.DoubleBuffer - fullName: OpenTK.Core.Platform.OpenGLGraphicsApiHints.DoubleBuffer - type: Property - source: - remote: - path: src/OpenTK.Core/Platform/OpenGLGraphicsApiHints.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: DoubleBuffer - path: opentk/src/OpenTK.Core/Platform/OpenGLGraphicsApiHints.cs - startLine: 62 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Enable double buffering. - example: [] - syntax: - content: public bool DoubleBuffer { get; set; } - parameters: [] - return: - type: System.Boolean - content.vb: Public Property DoubleBuffer As Boolean - overload: OpenTK.Core.Platform.OpenGLGraphicsApiHints.DoubleBuffer* -- uid: OpenTK.Core.Platform.OpenGLGraphicsApiHints.sRGBFramebuffer - commentId: P:OpenTK.Core.Platform.OpenGLGraphicsApiHints.sRGBFramebuffer - id: sRGBFramebuffer - parent: OpenTK.Core.Platform.OpenGLGraphicsApiHints - langs: - - csharp - - vb - name: sRGBFramebuffer - nameWithType: OpenGLGraphicsApiHints.sRGBFramebuffer - fullName: OpenTK.Core.Platform.OpenGLGraphicsApiHints.sRGBFramebuffer - type: Property - source: - remote: - path: src/OpenTK.Core/Platform/OpenGLGraphicsApiHints.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: sRGBFramebuffer - path: opentk/src/OpenTK.Core/Platform/OpenGLGraphicsApiHints.cs - startLine: 67 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Makes the backbuffer support sRGB. - example: [] - syntax: - content: public bool sRGBFramebuffer { get; set; } - parameters: [] - return: - type: System.Boolean - content.vb: Public Property sRGBFramebuffer As Boolean - overload: OpenTK.Core.Platform.OpenGLGraphicsApiHints.sRGBFramebuffer* -- uid: OpenTK.Core.Platform.OpenGLGraphicsApiHints.PixelFormat - commentId: P:OpenTK.Core.Platform.OpenGLGraphicsApiHints.PixelFormat - id: PixelFormat - parent: OpenTK.Core.Platform.OpenGLGraphicsApiHints - langs: - - csharp - - vb - name: PixelFormat - nameWithType: OpenGLGraphicsApiHints.PixelFormat - fullName: OpenTK.Core.Platform.OpenGLGraphicsApiHints.PixelFormat - type: Property - source: - remote: - path: src/OpenTK.Core/Platform/OpenGLGraphicsApiHints.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: PixelFormat - path: opentk/src/OpenTK.Core/Platform/OpenGLGraphicsApiHints.cs - startLine: 76 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: >- - The pixel format of the context. - - This differentiates between "normal" fixed point LDR formats - - and floating point HDR formats. - - Use or for HDR support. - - Is by default. - example: [] - syntax: - content: public ContextPixelFormat PixelFormat { get; set; } - parameters: [] - return: - type: OpenTK.Core.Platform.ContextPixelFormat - content.vb: Public Property PixelFormat As ContextPixelFormat - overload: OpenTK.Core.Platform.OpenGLGraphicsApiHints.PixelFormat* -- uid: OpenTK.Core.Platform.OpenGLGraphicsApiHints.SwapMethod - commentId: P:OpenTK.Core.Platform.OpenGLGraphicsApiHints.SwapMethod - id: SwapMethod - parent: OpenTK.Core.Platform.OpenGLGraphicsApiHints - langs: - - csharp - - vb - name: SwapMethod - nameWithType: OpenGLGraphicsApiHints.SwapMethod - fullName: OpenTK.Core.Platform.OpenGLGraphicsApiHints.SwapMethod - type: Property - source: - remote: - path: src/OpenTK.Core/Platform/OpenGLGraphicsApiHints.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: SwapMethod - path: opentk/src/OpenTK.Core/Platform/OpenGLGraphicsApiHints.cs - startLine: 82 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: >- - The swap method to use for the context. - - Is by default. - example: [] - syntax: - content: public ContextSwapMethod SwapMethod { get; set; } - parameters: [] - return: - type: OpenTK.Core.Platform.ContextSwapMethod - content.vb: Public Property SwapMethod As ContextSwapMethod - overload: OpenTK.Core.Platform.OpenGLGraphicsApiHints.SwapMethod* -- uid: OpenTK.Core.Platform.OpenGLGraphicsApiHints.Profile - commentId: P:OpenTK.Core.Platform.OpenGLGraphicsApiHints.Profile - id: Profile - parent: OpenTK.Core.Platform.OpenGLGraphicsApiHints - langs: - - csharp - - vb - name: Profile - nameWithType: OpenGLGraphicsApiHints.Profile - fullName: OpenTK.Core.Platform.OpenGLGraphicsApiHints.Profile - type: Property - source: - remote: - path: src/OpenTK.Core/Platform/OpenGLGraphicsApiHints.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Profile - path: opentk/src/OpenTK.Core/Platform/OpenGLGraphicsApiHints.cs - startLine: 87 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: The OpenGL profile to request. - example: [] - syntax: - content: public OpenGLProfile Profile { get; set; } - parameters: [] - return: - type: OpenTK.Core.Platform.OpenGLProfile - content.vb: Public Property Profile As OpenGLProfile - overload: OpenTK.Core.Platform.OpenGLGraphicsApiHints.Profile* -- uid: OpenTK.Core.Platform.OpenGLGraphicsApiHints.ForwardCompatibleFlag - commentId: P:OpenTK.Core.Platform.OpenGLGraphicsApiHints.ForwardCompatibleFlag - id: ForwardCompatibleFlag - parent: OpenTK.Core.Platform.OpenGLGraphicsApiHints - langs: - - csharp - - vb - name: ForwardCompatibleFlag - nameWithType: OpenGLGraphicsApiHints.ForwardCompatibleFlag - fullName: OpenTK.Core.Platform.OpenGLGraphicsApiHints.ForwardCompatibleFlag - type: Property - source: - remote: - path: src/OpenTK.Core/Platform/OpenGLGraphicsApiHints.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: ForwardCompatibleFlag - path: opentk/src/OpenTK.Core/Platform/OpenGLGraphicsApiHints.cs - startLine: 92 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: If the forward compatible flag should be set or not. - example: [] - syntax: - content: public bool ForwardCompatibleFlag { get; set; } - parameters: [] - return: - type: System.Boolean - content.vb: Public Property ForwardCompatibleFlag As Boolean - overload: OpenTK.Core.Platform.OpenGLGraphicsApiHints.ForwardCompatibleFlag* -- uid: OpenTK.Core.Platform.OpenGLGraphicsApiHints.DebugFlag - commentId: P:OpenTK.Core.Platform.OpenGLGraphicsApiHints.DebugFlag - id: DebugFlag - parent: OpenTK.Core.Platform.OpenGLGraphicsApiHints - langs: - - csharp - - vb - name: DebugFlag - nameWithType: OpenGLGraphicsApiHints.DebugFlag - fullName: OpenTK.Core.Platform.OpenGLGraphicsApiHints.DebugFlag - type: Property - source: - remote: - path: src/OpenTK.Core/Platform/OpenGLGraphicsApiHints.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: DebugFlag - path: opentk/src/OpenTK.Core/Platform/OpenGLGraphicsApiHints.cs - startLine: 97 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: If the debug flag should be set or not. - example: [] - syntax: - content: public bool DebugFlag { get; set; } - parameters: [] - return: - type: System.Boolean - content.vb: Public Property DebugFlag As Boolean - overload: OpenTK.Core.Platform.OpenGLGraphicsApiHints.DebugFlag* -- uid: OpenTK.Core.Platform.OpenGLGraphicsApiHints.RobustnessFlag - commentId: P:OpenTK.Core.Platform.OpenGLGraphicsApiHints.RobustnessFlag - id: RobustnessFlag - parent: OpenTK.Core.Platform.OpenGLGraphicsApiHints - langs: - - csharp - - vb - name: RobustnessFlag - nameWithType: OpenGLGraphicsApiHints.RobustnessFlag - fullName: OpenTK.Core.Platform.OpenGLGraphicsApiHints.RobustnessFlag - type: Property - source: - remote: - path: src/OpenTK.Core/Platform/OpenGLGraphicsApiHints.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: RobustnessFlag - path: opentk/src/OpenTK.Core/Platform/OpenGLGraphicsApiHints.cs - startLine: 102 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: If the robustness flag should be set or not. - example: [] - syntax: - content: public bool RobustnessFlag { get; set; } - parameters: [] - return: - type: System.Boolean - content.vb: Public Property RobustnessFlag As Boolean - overload: OpenTK.Core.Platform.OpenGLGraphicsApiHints.RobustnessFlag* -- uid: OpenTK.Core.Platform.OpenGLGraphicsApiHints.ResetNotificationStrategy - commentId: P:OpenTK.Core.Platform.OpenGLGraphicsApiHints.ResetNotificationStrategy - id: ResetNotificationStrategy - parent: OpenTK.Core.Platform.OpenGLGraphicsApiHints - langs: - - csharp - - vb - name: ResetNotificationStrategy - nameWithType: OpenGLGraphicsApiHints.ResetNotificationStrategy - fullName: OpenTK.Core.Platform.OpenGLGraphicsApiHints.ResetNotificationStrategy - type: Property - source: - remote: - path: src/OpenTK.Core/Platform/OpenGLGraphicsApiHints.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: ResetNotificationStrategy - path: opentk/src/OpenTK.Core/Platform/OpenGLGraphicsApiHints.cs - startLine: 109 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: >- - The reset notification strategy to use if is set to true. - - See GL_ARB_robustness for details. - - Default value is . - example: [] - syntax: - content: public ContextResetNotificationStrategy ResetNotificationStrategy { get; set; } - parameters: [] - return: - type: OpenTK.Core.Platform.ContextResetNotificationStrategy - content.vb: Public Property ResetNotificationStrategy As ContextResetNotificationStrategy - overload: OpenTK.Core.Platform.OpenGLGraphicsApiHints.ResetNotificationStrategy* -- uid: OpenTK.Core.Platform.OpenGLGraphicsApiHints.ResetIsolation - commentId: P:OpenTK.Core.Platform.OpenGLGraphicsApiHints.ResetIsolation - id: ResetIsolation - parent: OpenTK.Core.Platform.OpenGLGraphicsApiHints - langs: - - csharp - - vb - name: ResetIsolation - nameWithType: OpenGLGraphicsApiHints.ResetIsolation - fullName: OpenTK.Core.Platform.OpenGLGraphicsApiHints.ResetIsolation - type: Property - source: - remote: - path: src/OpenTK.Core/Platform/OpenGLGraphicsApiHints.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: ResetIsolation - path: opentk/src/OpenTK.Core/Platform/OpenGLGraphicsApiHints.cs - startLine: 115 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: >- - See GL_ARB_robustness_isolation. - - needs to be . - example: [] - syntax: - content: public bool ResetIsolation { get; set; } - parameters: [] - return: - type: System.Boolean - content.vb: Public Property ResetIsolation As Boolean - overload: OpenTK.Core.Platform.OpenGLGraphicsApiHints.ResetIsolation* -- uid: OpenTK.Core.Platform.OpenGLGraphicsApiHints.NoError - commentId: P:OpenTK.Core.Platform.OpenGLGraphicsApiHints.NoError - id: NoError - parent: OpenTK.Core.Platform.OpenGLGraphicsApiHints - langs: - - csharp - - vb - name: NoError - nameWithType: OpenGLGraphicsApiHints.NoError - fullName: OpenTK.Core.Platform.OpenGLGraphicsApiHints.NoError - type: Property - source: - remote: - path: src/OpenTK.Core/Platform/OpenGLGraphicsApiHints.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: NoError - path: opentk/src/OpenTK.Core/Platform/OpenGLGraphicsApiHints.cs - startLine: 122 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: >- - If the "no error" flag should be set or not. - - See KHR_no_error. - - Cannot be enabled while or is set. - example: [] - syntax: - content: public bool NoError { get; set; } - parameters: [] - return: - type: System.Boolean - content.vb: Public Property NoError As Boolean - overload: OpenTK.Core.Platform.OpenGLGraphicsApiHints.NoError* -- uid: OpenTK.Core.Platform.OpenGLGraphicsApiHints.UseFlushControl - commentId: P:OpenTK.Core.Platform.OpenGLGraphicsApiHints.UseFlushControl - id: UseFlushControl - parent: OpenTK.Core.Platform.OpenGLGraphicsApiHints - langs: - - csharp - - vb - name: UseFlushControl - nameWithType: OpenGLGraphicsApiHints.UseFlushControl - fullName: OpenTK.Core.Platform.OpenGLGraphicsApiHints.UseFlushControl - type: Property - source: - remote: - path: src/OpenTK.Core/Platform/OpenGLGraphicsApiHints.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: UseFlushControl - path: opentk/src/OpenTK.Core/Platform/OpenGLGraphicsApiHints.cs - startLine: 128 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: >- - Whether to use KHR_context_flush_control (if available) or not. - - See for flush control options. - example: [] - syntax: - content: public bool UseFlushControl { get; set; } - parameters: [] - return: - type: System.Boolean - content.vb: Public Property UseFlushControl As Boolean - overload: OpenTK.Core.Platform.OpenGLGraphicsApiHints.UseFlushControl* -- uid: OpenTK.Core.Platform.OpenGLGraphicsApiHints.ReleaseBehaviour - commentId: P:OpenTK.Core.Platform.OpenGLGraphicsApiHints.ReleaseBehaviour - id: ReleaseBehaviour - parent: OpenTK.Core.Platform.OpenGLGraphicsApiHints - langs: - - csharp - - vb - name: ReleaseBehaviour - nameWithType: OpenGLGraphicsApiHints.ReleaseBehaviour - fullName: OpenTK.Core.Platform.OpenGLGraphicsApiHints.ReleaseBehaviour - type: Property - source: - remote: - path: src/OpenTK.Core/Platform/OpenGLGraphicsApiHints.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: ReleaseBehaviour - path: opentk/src/OpenTK.Core/Platform/OpenGLGraphicsApiHints.cs - startLine: 134 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: >- - If is true then this controls the context release behaviour when the context is changed. - - Is by default. - example: [] - syntax: - content: public ContextReleaseBehaviour ReleaseBehaviour { get; set; } - parameters: [] - return: - type: OpenTK.Core.Platform.ContextReleaseBehaviour - content.vb: Public Property ReleaseBehaviour As ContextReleaseBehaviour - overload: OpenTK.Core.Platform.OpenGLGraphicsApiHints.ReleaseBehaviour* -- uid: OpenTK.Core.Platform.OpenGLGraphicsApiHints.SharedContext - commentId: P:OpenTK.Core.Platform.OpenGLGraphicsApiHints.SharedContext - id: SharedContext - parent: OpenTK.Core.Platform.OpenGLGraphicsApiHints - langs: - - csharp - - vb - name: SharedContext - nameWithType: OpenGLGraphicsApiHints.SharedContext - fullName: OpenTK.Core.Platform.OpenGLGraphicsApiHints.SharedContext - type: Property - source: - remote: - path: src/OpenTK.Core/Platform/OpenGLGraphicsApiHints.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: SharedContext - path: opentk/src/OpenTK.Core/Platform/OpenGLGraphicsApiHints.cs - startLine: 139 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: A context to enable context sharing with. - example: [] - syntax: - content: public OpenGLContextHandle? SharedContext { get; set; } - parameters: [] - return: - type: OpenTK.Core.Platform.OpenGLContextHandle - content.vb: Public Property SharedContext As OpenGLContextHandle - overload: OpenTK.Core.Platform.OpenGLGraphicsApiHints.SharedContext* -- uid: OpenTK.Core.Platform.OpenGLGraphicsApiHints.Selector - commentId: P:OpenTK.Core.Platform.OpenGLGraphicsApiHints.Selector - id: Selector - parent: OpenTK.Core.Platform.OpenGLGraphicsApiHints - langs: - - csharp - - vb - name: Selector - nameWithType: OpenGLGraphicsApiHints.Selector - fullName: OpenTK.Core.Platform.OpenGLGraphicsApiHints.Selector - type: Property - source: - remote: - path: src/OpenTK.Core/Platform/OpenGLGraphicsApiHints.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Selector - path: opentk/src/OpenTK.Core/Platform/OpenGLGraphicsApiHints.cs - startLine: 144 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: A callback that can be used to select appropriate backbuffer values. - example: [] - syntax: - content: public ContextValueSelector Selector { get; set; } - parameters: [] - return: - type: OpenTK.Core.Platform.ContextValueSelector - content.vb: Public Property Selector As ContextValueSelector - overload: OpenTK.Core.Platform.OpenGLGraphicsApiHints.Selector* -- uid: OpenTK.Core.Platform.OpenGLGraphicsApiHints.UseSelectorOnMacOS - commentId: P:OpenTK.Core.Platform.OpenGLGraphicsApiHints.UseSelectorOnMacOS - id: UseSelectorOnMacOS - parent: OpenTK.Core.Platform.OpenGLGraphicsApiHints - langs: - - csharp - - vb - name: UseSelectorOnMacOS - nameWithType: OpenGLGraphicsApiHints.UseSelectorOnMacOS - fullName: OpenTK.Core.Platform.OpenGLGraphicsApiHints.UseSelectorOnMacOS - type: Property - source: - remote: - path: src/OpenTK.Core/Platform/OpenGLGraphicsApiHints.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: UseSelectorOnMacOS - path: opentk/src/OpenTK.Core/Platform/OpenGLGraphicsApiHints.cs - startLine: 150 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: >- - Enumerating on macOS is slow, so by default is not used on macOS. - - When this property is false the default platform selection of context values are used, which tries to find a closest match. - example: [] - syntax: - content: public bool UseSelectorOnMacOS { get; set; } - parameters: [] - return: - type: System.Boolean - content.vb: Public Property UseSelectorOnMacOS As Boolean - overload: OpenTK.Core.Platform.OpenGLGraphicsApiHints.UseSelectorOnMacOS* -- uid: OpenTK.Core.Platform.OpenGLGraphicsApiHints.#ctor - commentId: M:OpenTK.Core.Platform.OpenGLGraphicsApiHints.#ctor - id: '#ctor' - parent: OpenTK.Core.Platform.OpenGLGraphicsApiHints - langs: - - csharp - - vb - name: OpenGLGraphicsApiHints() - nameWithType: OpenGLGraphicsApiHints.OpenGLGraphicsApiHints() - fullName: OpenTK.Core.Platform.OpenGLGraphicsApiHints.OpenGLGraphicsApiHints() - type: Constructor - source: - remote: - path: src/OpenTK.Core/Platform/OpenGLGraphicsApiHints.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: .ctor - path: opentk/src/OpenTK.Core/Platform/OpenGLGraphicsApiHints.cs - startLine: 155 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Initializes a new instance of the class. - example: [] - syntax: - content: public OpenGLGraphicsApiHints() - content.vb: Public Sub New() - overload: OpenTK.Core.Platform.OpenGLGraphicsApiHints.#ctor* - nameWithType.vb: OpenGLGraphicsApiHints.New() - fullName.vb: OpenTK.Core.Platform.OpenGLGraphicsApiHints.New() - name.vb: New() -- uid: OpenTK.Core.Platform.OpenGLGraphicsApiHints.Copy - commentId: M:OpenTK.Core.Platform.OpenGLGraphicsApiHints.Copy - id: Copy - parent: OpenTK.Core.Platform.OpenGLGraphicsApiHints - langs: - - csharp - - vb - name: Copy() - nameWithType: OpenGLGraphicsApiHints.Copy() - fullName: OpenTK.Core.Platform.OpenGLGraphicsApiHints.Copy() - type: Method - source: - remote: - path: src/OpenTK.Core/Platform/OpenGLGraphicsApiHints.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Copy - path: opentk/src/OpenTK.Core/Platform/OpenGLGraphicsApiHints.cs - startLine: 163 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Make a memberwise copy of these settings. - example: [] - syntax: - content: public OpenGLGraphicsApiHints Copy() - return: - type: OpenTK.Core.Platform.OpenGLGraphicsApiHints - description: The copied settings. - content.vb: Public Function Copy() As OpenGLGraphicsApiHints - overload: OpenTK.Core.Platform.OpenGLGraphicsApiHints.Copy* -references: -- uid: OpenTK.Core.Platform - commentId: N:OpenTK.Core.Platform - href: OpenTK.html - name: OpenTK.Core.Platform - nameWithType: OpenTK.Core.Platform - fullName: OpenTK.Core.Platform - spec.csharp: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform - name: Platform - href: OpenTK.Core.Platform.html - spec.vb: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform - name: Platform - href: OpenTK.Core.Platform.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: OpenTK.Core.Platform.GraphicsApiHints - commentId: T:OpenTK.Core.Platform.GraphicsApiHints - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.GraphicsApiHints.html - name: GraphicsApiHints - nameWithType: GraphicsApiHints - fullName: OpenTK.Core.Platform.GraphicsApiHints -- uid: System.Object.Equals(System.Object) - commentId: M:System.Object.Equals(System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - name: Equals(object) - nameWithType: object.Equals(object) - fullName: object.Equals(object) - nameWithType.vb: Object.Equals(Object) - fullName.vb: Object.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetHashCode - commentId: M:System.Object.GetHashCode - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - name: GetHashCode() - nameWithType: object.GetHashCode() - fullName: object.GetHashCode() - nameWithType.vb: Object.GetHashCode() - fullName.vb: Object.GetHashCode() - spec.csharp: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.MemberwiseClone - commentId: M:System.Object.MemberwiseClone - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - name: MemberwiseClone() - nameWithType: object.MemberwiseClone() - fullName: object.MemberwiseClone() - nameWithType.vb: Object.MemberwiseClone() - fullName.vb: Object.MemberwiseClone() - spec.csharp: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) - spec.vb: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.ToString - commentId: M:System.Object.ToString - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - name: ToString() - nameWithType: object.ToString() - fullName: object.ToString() - nameWithType.vb: Object.ToString() - fullName.vb: Object.ToString() - spec.csharp: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) - spec.vb: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: OpenTK.Core.Platform.GraphicsApiHints.Api - commentId: P:OpenTK.Core.Platform.GraphicsApiHints.Api - parent: OpenTK.Core.Platform.GraphicsApiHints - href: OpenTK.Core.Platform.GraphicsApiHints.html#OpenTK_Core_Platform_GraphicsApiHints_Api - name: Api - nameWithType: GraphicsApiHints.Api - fullName: OpenTK.Core.Platform.GraphicsApiHints.Api -- uid: OpenTK.Core.Platform.OpenGLGraphicsApiHints.Api* - commentId: Overload:OpenTK.Core.Platform.OpenGLGraphicsApiHints.Api - href: OpenTK.Core.Platform.OpenGLGraphicsApiHints.html#OpenTK_Core_Platform_OpenGLGraphicsApiHints_Api - name: Api - nameWithType: OpenGLGraphicsApiHints.Api - fullName: OpenTK.Core.Platform.OpenGLGraphicsApiHints.Api -- uid: OpenTK.Core.Platform.GraphicsApi - commentId: T:OpenTK.Core.Platform.GraphicsApi - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.GraphicsApi.html - name: GraphicsApi - nameWithType: GraphicsApi - fullName: OpenTK.Core.Platform.GraphicsApi -- uid: OpenTK.Core.Platform.OpenGLGraphicsApiHints.Version* - commentId: Overload:OpenTK.Core.Platform.OpenGLGraphicsApiHints.Version - href: OpenTK.Core.Platform.OpenGLGraphicsApiHints.html#OpenTK_Core_Platform_OpenGLGraphicsApiHints_Version - name: Version - nameWithType: OpenGLGraphicsApiHints.Version - fullName: OpenTK.Core.Platform.OpenGLGraphicsApiHints.Version -- uid: System.Version - commentId: T:System.Version - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.version - name: Version - nameWithType: Version - fullName: System.Version -- uid: OpenTK.Core.Platform.OpenGLGraphicsApiHints.RedColorBits* - commentId: Overload:OpenTK.Core.Platform.OpenGLGraphicsApiHints.RedColorBits - href: OpenTK.Core.Platform.OpenGLGraphicsApiHints.html#OpenTK_Core_Platform_OpenGLGraphicsApiHints_RedColorBits - name: RedColorBits - nameWithType: OpenGLGraphicsApiHints.RedColorBits - fullName: OpenTK.Core.Platform.OpenGLGraphicsApiHints.RedColorBits -- uid: System.Int32 - commentId: T:System.Int32 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - name: int - nameWithType: int - fullName: int - nameWithType.vb: Integer - fullName.vb: Integer - name.vb: Integer -- uid: OpenTK.Core.Platform.OpenGLGraphicsApiHints.GreenColorBits* - commentId: Overload:OpenTK.Core.Platform.OpenGLGraphicsApiHints.GreenColorBits - href: OpenTK.Core.Platform.OpenGLGraphicsApiHints.html#OpenTK_Core_Platform_OpenGLGraphicsApiHints_GreenColorBits - name: GreenColorBits - nameWithType: OpenGLGraphicsApiHints.GreenColorBits - fullName: OpenTK.Core.Platform.OpenGLGraphicsApiHints.GreenColorBits -- uid: OpenTK.Core.Platform.OpenGLGraphicsApiHints.BlueColorBits* - commentId: Overload:OpenTK.Core.Platform.OpenGLGraphicsApiHints.BlueColorBits - href: OpenTK.Core.Platform.OpenGLGraphicsApiHints.html#OpenTK_Core_Platform_OpenGLGraphicsApiHints_BlueColorBits - name: BlueColorBits - nameWithType: OpenGLGraphicsApiHints.BlueColorBits - fullName: OpenTK.Core.Platform.OpenGLGraphicsApiHints.BlueColorBits -- uid: OpenTK.Core.Platform.OpenGLGraphicsApiHints.AlphaColorBits* - commentId: Overload:OpenTK.Core.Platform.OpenGLGraphicsApiHints.AlphaColorBits - href: OpenTK.Core.Platform.OpenGLGraphicsApiHints.html#OpenTK_Core_Platform_OpenGLGraphicsApiHints_AlphaColorBits - name: AlphaColorBits - nameWithType: OpenGLGraphicsApiHints.AlphaColorBits - fullName: OpenTK.Core.Platform.OpenGLGraphicsApiHints.AlphaColorBits -- uid: OpenTK.Core.Platform.OpenGLGraphicsApiHints.StencilBits* - commentId: Overload:OpenTK.Core.Platform.OpenGLGraphicsApiHints.StencilBits - href: OpenTK.Core.Platform.OpenGLGraphicsApiHints.html#OpenTK_Core_Platform_OpenGLGraphicsApiHints_StencilBits - name: StencilBits - nameWithType: OpenGLGraphicsApiHints.StencilBits - fullName: OpenTK.Core.Platform.OpenGLGraphicsApiHints.StencilBits -- uid: OpenTK.Core.Platform.ContextStencilBits - commentId: T:OpenTK.Core.Platform.ContextStencilBits - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.ContextStencilBits.html - name: ContextStencilBits - nameWithType: ContextStencilBits - fullName: OpenTK.Core.Platform.ContextStencilBits -- uid: OpenTK.Core.Platform.OpenGLGraphicsApiHints.DepthBits* - commentId: Overload:OpenTK.Core.Platform.OpenGLGraphicsApiHints.DepthBits - href: OpenTK.Core.Platform.OpenGLGraphicsApiHints.html#OpenTK_Core_Platform_OpenGLGraphicsApiHints_DepthBits - name: DepthBits - nameWithType: OpenGLGraphicsApiHints.DepthBits - fullName: OpenTK.Core.Platform.OpenGLGraphicsApiHints.DepthBits -- uid: OpenTK.Core.Platform.ContextDepthBits - commentId: T:OpenTK.Core.Platform.ContextDepthBits - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.ContextDepthBits.html - name: ContextDepthBits - nameWithType: ContextDepthBits - fullName: OpenTK.Core.Platform.ContextDepthBits -- uid: OpenTK.Core.Platform.OpenGLGraphicsApiHints.Multisamples* - commentId: Overload:OpenTK.Core.Platform.OpenGLGraphicsApiHints.Multisamples - href: OpenTK.Core.Platform.OpenGLGraphicsApiHints.html#OpenTK_Core_Platform_OpenGLGraphicsApiHints_Multisamples - name: Multisamples - nameWithType: OpenGLGraphicsApiHints.Multisamples - fullName: OpenTK.Core.Platform.OpenGLGraphicsApiHints.Multisamples -- uid: OpenTK.Core.Platform.OpenGLGraphicsApiHints.DoubleBuffer* - commentId: Overload:OpenTK.Core.Platform.OpenGLGraphicsApiHints.DoubleBuffer - href: OpenTK.Core.Platform.OpenGLGraphicsApiHints.html#OpenTK_Core_Platform_OpenGLGraphicsApiHints_DoubleBuffer - name: DoubleBuffer - nameWithType: OpenGLGraphicsApiHints.DoubleBuffer - fullName: OpenTK.Core.Platform.OpenGLGraphicsApiHints.DoubleBuffer -- uid: System.Boolean - commentId: T:System.Boolean - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - name: bool - nameWithType: bool - fullName: bool - nameWithType.vb: Boolean - fullName.vb: Boolean - name.vb: Boolean -- uid: OpenTK.Core.Platform.OpenGLGraphicsApiHints.sRGBFramebuffer* - commentId: Overload:OpenTK.Core.Platform.OpenGLGraphicsApiHints.sRGBFramebuffer - href: OpenTK.Core.Platform.OpenGLGraphicsApiHints.html#OpenTK_Core_Platform_OpenGLGraphicsApiHints_sRGBFramebuffer - name: sRGBFramebuffer - nameWithType: OpenGLGraphicsApiHints.sRGBFramebuffer - fullName: OpenTK.Core.Platform.OpenGLGraphicsApiHints.sRGBFramebuffer -- uid: OpenTK.Core.Platform.ContextPixelFormat.RGBAFloat - commentId: F:OpenTK.Core.Platform.ContextPixelFormat.RGBAFloat - href: OpenTK.Core.Platform.ContextPixelFormat.html#OpenTK_Core_Platform_ContextPixelFormat_RGBAFloat - name: RGBAFloat - nameWithType: ContextPixelFormat.RGBAFloat - fullName: OpenTK.Core.Platform.ContextPixelFormat.RGBAFloat -- uid: OpenTK.Core.Platform.ContextPixelFormat.RGBAPackedFloat - commentId: F:OpenTK.Core.Platform.ContextPixelFormat.RGBAPackedFloat - href: OpenTK.Core.Platform.ContextPixelFormat.html#OpenTK_Core_Platform_ContextPixelFormat_RGBAPackedFloat - name: RGBAPackedFloat - nameWithType: ContextPixelFormat.RGBAPackedFloat - fullName: OpenTK.Core.Platform.ContextPixelFormat.RGBAPackedFloat -- uid: OpenTK.Core.Platform.ContextPixelFormat.RGBA - commentId: F:OpenTK.Core.Platform.ContextPixelFormat.RGBA - href: OpenTK.Core.Platform.ContextPixelFormat.html#OpenTK_Core_Platform_ContextPixelFormat_RGBA - name: RGBA - nameWithType: ContextPixelFormat.RGBA - fullName: OpenTK.Core.Platform.ContextPixelFormat.RGBA -- uid: OpenTK.Core.Platform.OpenGLGraphicsApiHints.PixelFormat* - commentId: Overload:OpenTK.Core.Platform.OpenGLGraphicsApiHints.PixelFormat - href: OpenTK.Core.Platform.OpenGLGraphicsApiHints.html#OpenTK_Core_Platform_OpenGLGraphicsApiHints_PixelFormat - name: PixelFormat - nameWithType: OpenGLGraphicsApiHints.PixelFormat - fullName: OpenTK.Core.Platform.OpenGLGraphicsApiHints.PixelFormat -- uid: OpenTK.Core.Platform.ContextPixelFormat - commentId: T:OpenTK.Core.Platform.ContextPixelFormat - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.ContextPixelFormat.html - name: ContextPixelFormat - nameWithType: ContextPixelFormat - fullName: OpenTK.Core.Platform.ContextPixelFormat -- uid: OpenTK.Core.Platform.ContextSwapMethod.Undefined - commentId: F:OpenTK.Core.Platform.ContextSwapMethod.Undefined - href: OpenTK.Core.Platform.ContextSwapMethod.html#OpenTK_Core_Platform_ContextSwapMethod_Undefined - name: Undefined - nameWithType: ContextSwapMethod.Undefined - fullName: OpenTK.Core.Platform.ContextSwapMethod.Undefined -- uid: OpenTK.Core.Platform.OpenGLGraphicsApiHints.SwapMethod* - commentId: Overload:OpenTK.Core.Platform.OpenGLGraphicsApiHints.SwapMethod - href: OpenTK.Core.Platform.OpenGLGraphicsApiHints.html#OpenTK_Core_Platform_OpenGLGraphicsApiHints_SwapMethod - name: SwapMethod - nameWithType: OpenGLGraphicsApiHints.SwapMethod - fullName: OpenTK.Core.Platform.OpenGLGraphicsApiHints.SwapMethod -- uid: OpenTK.Core.Platform.ContextSwapMethod - commentId: T:OpenTK.Core.Platform.ContextSwapMethod - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.ContextSwapMethod.html - name: ContextSwapMethod - nameWithType: ContextSwapMethod - fullName: OpenTK.Core.Platform.ContextSwapMethod -- uid: OpenTK.Core.Platform.OpenGLGraphicsApiHints.Profile* - commentId: Overload:OpenTK.Core.Platform.OpenGLGraphicsApiHints.Profile - href: OpenTK.Core.Platform.OpenGLGraphicsApiHints.html#OpenTK_Core_Platform_OpenGLGraphicsApiHints_Profile - name: Profile - nameWithType: OpenGLGraphicsApiHints.Profile - fullName: OpenTK.Core.Platform.OpenGLGraphicsApiHints.Profile -- uid: OpenTK.Core.Platform.OpenGLProfile - commentId: T:OpenTK.Core.Platform.OpenGLProfile - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.OpenGLProfile.html - name: OpenGLProfile - nameWithType: OpenGLProfile - fullName: OpenTK.Core.Platform.OpenGLProfile -- uid: OpenTK.Core.Platform.OpenGLGraphicsApiHints.ForwardCompatibleFlag* - commentId: Overload:OpenTK.Core.Platform.OpenGLGraphicsApiHints.ForwardCompatibleFlag - href: OpenTK.Core.Platform.OpenGLGraphicsApiHints.html#OpenTK_Core_Platform_OpenGLGraphicsApiHints_ForwardCompatibleFlag - name: ForwardCompatibleFlag - nameWithType: OpenGLGraphicsApiHints.ForwardCompatibleFlag - fullName: OpenTK.Core.Platform.OpenGLGraphicsApiHints.ForwardCompatibleFlag -- uid: OpenTK.Core.Platform.OpenGLGraphicsApiHints.DebugFlag* - commentId: Overload:OpenTK.Core.Platform.OpenGLGraphicsApiHints.DebugFlag - href: OpenTK.Core.Platform.OpenGLGraphicsApiHints.html#OpenTK_Core_Platform_OpenGLGraphicsApiHints_DebugFlag - name: DebugFlag - nameWithType: OpenGLGraphicsApiHints.DebugFlag - fullName: OpenTK.Core.Platform.OpenGLGraphicsApiHints.DebugFlag -- uid: OpenTK.Core.Platform.OpenGLGraphicsApiHints.RobustnessFlag* - commentId: Overload:OpenTK.Core.Platform.OpenGLGraphicsApiHints.RobustnessFlag - href: OpenTK.Core.Platform.OpenGLGraphicsApiHints.html#OpenTK_Core_Platform_OpenGLGraphicsApiHints_RobustnessFlag - name: RobustnessFlag - nameWithType: OpenGLGraphicsApiHints.RobustnessFlag - fullName: OpenTK.Core.Platform.OpenGLGraphicsApiHints.RobustnessFlag -- uid: OpenTK.Core.Platform.OpenGLGraphicsApiHints.RobustnessFlag - commentId: P:OpenTK.Core.Platform.OpenGLGraphicsApiHints.RobustnessFlag - href: OpenTK.Core.Platform.OpenGLGraphicsApiHints.html#OpenTK_Core_Platform_OpenGLGraphicsApiHints_RobustnessFlag - name: RobustnessFlag - nameWithType: OpenGLGraphicsApiHints.RobustnessFlag - fullName: OpenTK.Core.Platform.OpenGLGraphicsApiHints.RobustnessFlag -- uid: OpenTK.Core.Platform.ContextResetNotificationStrategy.NoResetNotification - commentId: F:OpenTK.Core.Platform.ContextResetNotificationStrategy.NoResetNotification - href: OpenTK.Core.Platform.ContextResetNotificationStrategy.html#OpenTK_Core_Platform_ContextResetNotificationStrategy_NoResetNotification - name: NoResetNotification - nameWithType: ContextResetNotificationStrategy.NoResetNotification - fullName: OpenTK.Core.Platform.ContextResetNotificationStrategy.NoResetNotification -- uid: OpenTK.Core.Platform.OpenGLGraphicsApiHints.ResetNotificationStrategy* - commentId: Overload:OpenTK.Core.Platform.OpenGLGraphicsApiHints.ResetNotificationStrategy - href: OpenTK.Core.Platform.OpenGLGraphicsApiHints.html#OpenTK_Core_Platform_OpenGLGraphicsApiHints_ResetNotificationStrategy - name: ResetNotificationStrategy - nameWithType: OpenGLGraphicsApiHints.ResetNotificationStrategy - fullName: OpenTK.Core.Platform.OpenGLGraphicsApiHints.ResetNotificationStrategy -- uid: OpenTK.Core.Platform.ContextResetNotificationStrategy - commentId: T:OpenTK.Core.Platform.ContextResetNotificationStrategy - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.ContextResetNotificationStrategy.html - name: ContextResetNotificationStrategy - nameWithType: ContextResetNotificationStrategy - fullName: OpenTK.Core.Platform.ContextResetNotificationStrategy -- uid: OpenTK.Core.Platform.OpenGLGraphicsApiHints.ResetNotificationStrategy - commentId: P:OpenTK.Core.Platform.OpenGLGraphicsApiHints.ResetNotificationStrategy - href: OpenTK.Core.Platform.OpenGLGraphicsApiHints.html#OpenTK_Core_Platform_OpenGLGraphicsApiHints_ResetNotificationStrategy - name: ResetNotificationStrategy - nameWithType: OpenGLGraphicsApiHints.ResetNotificationStrategy - fullName: OpenTK.Core.Platform.OpenGLGraphicsApiHints.ResetNotificationStrategy -- uid: OpenTK.Core.Platform.ContextResetNotificationStrategy.LoseContextOnReset - commentId: F:OpenTK.Core.Platform.ContextResetNotificationStrategy.LoseContextOnReset - href: OpenTK.Core.Platform.ContextResetNotificationStrategy.html#OpenTK_Core_Platform_ContextResetNotificationStrategy_LoseContextOnReset - name: LoseContextOnReset - nameWithType: ContextResetNotificationStrategy.LoseContextOnReset - fullName: OpenTK.Core.Platform.ContextResetNotificationStrategy.LoseContextOnReset -- uid: OpenTK.Core.Platform.OpenGLGraphicsApiHints.ResetIsolation* - commentId: Overload:OpenTK.Core.Platform.OpenGLGraphicsApiHints.ResetIsolation - href: OpenTK.Core.Platform.OpenGLGraphicsApiHints.html#OpenTK_Core_Platform_OpenGLGraphicsApiHints_ResetIsolation - name: ResetIsolation - nameWithType: OpenGLGraphicsApiHints.ResetIsolation - fullName: OpenTK.Core.Platform.OpenGLGraphicsApiHints.ResetIsolation -- uid: OpenTK.Core.Platform.OpenGLGraphicsApiHints.DebugFlag - commentId: P:OpenTK.Core.Platform.OpenGLGraphicsApiHints.DebugFlag - href: OpenTK.Core.Platform.OpenGLGraphicsApiHints.html#OpenTK_Core_Platform_OpenGLGraphicsApiHints_DebugFlag - name: DebugFlag - nameWithType: OpenGLGraphicsApiHints.DebugFlag - fullName: OpenTK.Core.Platform.OpenGLGraphicsApiHints.DebugFlag -- uid: OpenTK.Core.Platform.OpenGLGraphicsApiHints.NoError* - commentId: Overload:OpenTK.Core.Platform.OpenGLGraphicsApiHints.NoError - href: OpenTK.Core.Platform.OpenGLGraphicsApiHints.html#OpenTK_Core_Platform_OpenGLGraphicsApiHints_NoError - name: NoError - nameWithType: OpenGLGraphicsApiHints.NoError - fullName: OpenTK.Core.Platform.OpenGLGraphicsApiHints.NoError -- uid: OpenTK.Core.Platform.OpenGLGraphicsApiHints.ReleaseBehaviour - commentId: P:OpenTK.Core.Platform.OpenGLGraphicsApiHints.ReleaseBehaviour - href: OpenTK.Core.Platform.OpenGLGraphicsApiHints.html#OpenTK_Core_Platform_OpenGLGraphicsApiHints_ReleaseBehaviour - name: ReleaseBehaviour - nameWithType: OpenGLGraphicsApiHints.ReleaseBehaviour - fullName: OpenTK.Core.Platform.OpenGLGraphicsApiHints.ReleaseBehaviour -- uid: OpenTK.Core.Platform.OpenGLGraphicsApiHints.UseFlushControl* - commentId: Overload:OpenTK.Core.Platform.OpenGLGraphicsApiHints.UseFlushControl - href: OpenTK.Core.Platform.OpenGLGraphicsApiHints.html#OpenTK_Core_Platform_OpenGLGraphicsApiHints_UseFlushControl - name: UseFlushControl - nameWithType: OpenGLGraphicsApiHints.UseFlushControl - fullName: OpenTK.Core.Platform.OpenGLGraphicsApiHints.UseFlushControl -- uid: OpenTK.Core.Platform.OpenGLGraphicsApiHints.UseFlushControl - commentId: P:OpenTK.Core.Platform.OpenGLGraphicsApiHints.UseFlushControl - href: OpenTK.Core.Platform.OpenGLGraphicsApiHints.html#OpenTK_Core_Platform_OpenGLGraphicsApiHints_UseFlushControl - name: UseFlushControl - nameWithType: OpenGLGraphicsApiHints.UseFlushControl - fullName: OpenTK.Core.Platform.OpenGLGraphicsApiHints.UseFlushControl -- uid: OpenTK.Core.Platform.ContextReleaseBehaviour.Flush - commentId: F:OpenTK.Core.Platform.ContextReleaseBehaviour.Flush - href: OpenTK.Core.Platform.ContextReleaseBehaviour.html#OpenTK_Core_Platform_ContextReleaseBehaviour_Flush - name: Flush - nameWithType: ContextReleaseBehaviour.Flush - fullName: OpenTK.Core.Platform.ContextReleaseBehaviour.Flush -- uid: OpenTK.Core.Platform.OpenGLGraphicsApiHints.ReleaseBehaviour* - commentId: Overload:OpenTK.Core.Platform.OpenGLGraphicsApiHints.ReleaseBehaviour - href: OpenTK.Core.Platform.OpenGLGraphicsApiHints.html#OpenTK_Core_Platform_OpenGLGraphicsApiHints_ReleaseBehaviour - name: ReleaseBehaviour - nameWithType: OpenGLGraphicsApiHints.ReleaseBehaviour - fullName: OpenTK.Core.Platform.OpenGLGraphicsApiHints.ReleaseBehaviour -- uid: OpenTK.Core.Platform.ContextReleaseBehaviour - commentId: T:OpenTK.Core.Platform.ContextReleaseBehaviour - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.ContextReleaseBehaviour.html - name: ContextReleaseBehaviour - nameWithType: ContextReleaseBehaviour - fullName: OpenTK.Core.Platform.ContextReleaseBehaviour -- uid: OpenTK.Core.Platform.OpenGLGraphicsApiHints.SharedContext* - commentId: Overload:OpenTK.Core.Platform.OpenGLGraphicsApiHints.SharedContext - href: OpenTK.Core.Platform.OpenGLGraphicsApiHints.html#OpenTK_Core_Platform_OpenGLGraphicsApiHints_SharedContext - name: SharedContext - nameWithType: OpenGLGraphicsApiHints.SharedContext - fullName: OpenTK.Core.Platform.OpenGLGraphicsApiHints.SharedContext -- uid: OpenTK.Core.Platform.OpenGLContextHandle - commentId: T:OpenTK.Core.Platform.OpenGLContextHandle - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.OpenGLContextHandle.html - name: OpenGLContextHandle - nameWithType: OpenGLContextHandle - fullName: OpenTK.Core.Platform.OpenGLContextHandle -- uid: OpenTK.Core.Platform.OpenGLGraphicsApiHints.Selector* - commentId: Overload:OpenTK.Core.Platform.OpenGLGraphicsApiHints.Selector - href: OpenTK.Core.Platform.OpenGLGraphicsApiHints.html#OpenTK_Core_Platform_OpenGLGraphicsApiHints_Selector - name: Selector - nameWithType: OpenGLGraphicsApiHints.Selector - fullName: OpenTK.Core.Platform.OpenGLGraphicsApiHints.Selector -- uid: OpenTK.Core.Platform.ContextValueSelector - commentId: T:OpenTK.Core.Platform.ContextValueSelector - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.ContextValueSelector.html - name: ContextValueSelector - nameWithType: ContextValueSelector - fullName: OpenTK.Core.Platform.ContextValueSelector -- uid: OpenTK.Core.Platform.ContextValues - commentId: T:OpenTK.Core.Platform.ContextValues - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.ContextValues.html - name: ContextValues - nameWithType: ContextValues - fullName: OpenTK.Core.Platform.ContextValues -- uid: OpenTK.Core.Platform.OpenGLGraphicsApiHints.Selector - commentId: P:OpenTK.Core.Platform.OpenGLGraphicsApiHints.Selector - href: OpenTK.Core.Platform.OpenGLGraphicsApiHints.html#OpenTK_Core_Platform_OpenGLGraphicsApiHints_Selector - name: Selector - nameWithType: OpenGLGraphicsApiHints.Selector - fullName: OpenTK.Core.Platform.OpenGLGraphicsApiHints.Selector -- uid: OpenTK.Core.Platform.OpenGLGraphicsApiHints.UseSelectorOnMacOS* - commentId: Overload:OpenTK.Core.Platform.OpenGLGraphicsApiHints.UseSelectorOnMacOS - href: OpenTK.Core.Platform.OpenGLGraphicsApiHints.html#OpenTK_Core_Platform_OpenGLGraphicsApiHints_UseSelectorOnMacOS - name: UseSelectorOnMacOS - nameWithType: OpenGLGraphicsApiHints.UseSelectorOnMacOS - fullName: OpenTK.Core.Platform.OpenGLGraphicsApiHints.UseSelectorOnMacOS -- uid: OpenTK.Core.Platform.OpenGLGraphicsApiHints - commentId: T:OpenTK.Core.Platform.OpenGLGraphicsApiHints - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.OpenGLGraphicsApiHints.html - name: OpenGLGraphicsApiHints - nameWithType: OpenGLGraphicsApiHints - fullName: OpenTK.Core.Platform.OpenGLGraphicsApiHints -- uid: OpenTK.Core.Platform.OpenGLGraphicsApiHints.#ctor* - commentId: Overload:OpenTK.Core.Platform.OpenGLGraphicsApiHints.#ctor - href: OpenTK.Core.Platform.OpenGLGraphicsApiHints.html#OpenTK_Core_Platform_OpenGLGraphicsApiHints__ctor - name: OpenGLGraphicsApiHints - nameWithType: OpenGLGraphicsApiHints.OpenGLGraphicsApiHints - fullName: OpenTK.Core.Platform.OpenGLGraphicsApiHints.OpenGLGraphicsApiHints - nameWithType.vb: OpenGLGraphicsApiHints.New - fullName.vb: OpenTK.Core.Platform.OpenGLGraphicsApiHints.New - name.vb: New -- uid: OpenTK.Core.Platform.OpenGLGraphicsApiHints.Copy* - commentId: Overload:OpenTK.Core.Platform.OpenGLGraphicsApiHints.Copy - href: OpenTK.Core.Platform.OpenGLGraphicsApiHints.html#OpenTK_Core_Platform_OpenGLGraphicsApiHints_Copy - name: Copy - nameWithType: OpenGLGraphicsApiHints.Copy - fullName: OpenTK.Core.Platform.OpenGLGraphicsApiHints.Copy diff --git a/api/OpenTK.Core.Platform.OpenGLProfile.yml b/api/OpenTK.Core.Platform.OpenGLProfile.yml deleted file mode 100644 index 0c6c554a..00000000 --- a/api/OpenTK.Core.Platform.OpenGLProfile.yml +++ /dev/null @@ -1,155 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: OpenTK.Core.Platform.OpenGLProfile - commentId: T:OpenTK.Core.Platform.OpenGLProfile - id: OpenGLProfile - parent: OpenTK.Core.Platform - children: - - OpenTK.Core.Platform.OpenGLProfile.Compatibility - - OpenTK.Core.Platform.OpenGLProfile.Core - - OpenTK.Core.Platform.OpenGLProfile.None - langs: - - csharp - - vb - name: OpenGLProfile - nameWithType: OpenGLProfile - fullName: OpenTK.Core.Platform.OpenGLProfile - type: Enum - source: - remote: - path: src/OpenTK.Core/Platform/Enums/OpenGLProfile.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: OpenGLProfile - path: opentk/src/OpenTK.Core/Platform/Enums/OpenGLProfile.cs - startLine: 5 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: OpenGL Profile. - example: [] - syntax: - content: public enum OpenGLProfile - content.vb: Public Enum OpenGLProfile -- uid: OpenTK.Core.Platform.OpenGLProfile.None - commentId: F:OpenTK.Core.Platform.OpenGLProfile.None - id: None - parent: OpenTK.Core.Platform.OpenGLProfile - langs: - - csharp - - vb - name: None - nameWithType: OpenGLProfile.None - fullName: OpenTK.Core.Platform.OpenGLProfile.None - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/OpenGLProfile.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: None - path: opentk/src/OpenTK.Core/Platform/Enums/OpenGLProfile.cs - startLine: 10 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: No OpenGL profile. - example: [] - syntax: - content: None = 0 - return: - type: OpenTK.Core.Platform.OpenGLProfile -- uid: OpenTK.Core.Platform.OpenGLProfile.Core - commentId: F:OpenTK.Core.Platform.OpenGLProfile.Core - id: Core - parent: OpenTK.Core.Platform.OpenGLProfile - langs: - - csharp - - vb - name: Core - nameWithType: OpenGLProfile.Core - fullName: OpenTK.Core.Platform.OpenGLProfile.Core - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/OpenGLProfile.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Core - path: opentk/src/OpenTK.Core/Platform/Enums/OpenGLProfile.cs - startLine: 15 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: OpenGL Core profile. - example: [] - syntax: - content: Core = 1 - return: - type: OpenTK.Core.Platform.OpenGLProfile -- uid: OpenTK.Core.Platform.OpenGLProfile.Compatibility - commentId: F:OpenTK.Core.Platform.OpenGLProfile.Compatibility - id: Compatibility - parent: OpenTK.Core.Platform.OpenGLProfile - langs: - - csharp - - vb - name: Compatibility - nameWithType: OpenGLProfile.Compatibility - fullName: OpenTK.Core.Platform.OpenGLProfile.Compatibility - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/OpenGLProfile.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Compatibility - path: opentk/src/OpenTK.Core/Platform/Enums/OpenGLProfile.cs - startLine: 20 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: OpenGL Compatibility profile. - example: [] - syntax: - content: Compatibility = 2 - return: - type: OpenTK.Core.Platform.OpenGLProfile -references: -- uid: OpenTK.Core.Platform - commentId: N:OpenTK.Core.Platform - href: OpenTK.html - name: OpenTK.Core.Platform - nameWithType: OpenTK.Core.Platform - fullName: OpenTK.Core.Platform - spec.csharp: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform - name: Platform - href: OpenTK.Core.Platform.html - spec.vb: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform - name: Platform - href: OpenTK.Core.Platform.html -- uid: OpenTK.Core.Platform.OpenGLProfile - commentId: T:OpenTK.Core.Platform.OpenGLProfile - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.OpenGLProfile.html - name: OpenGLProfile - nameWithType: OpenGLProfile - fullName: OpenTK.Core.Platform.OpenGLProfile diff --git a/api/OpenTK.Core.Platform.PalComponents.yml b/api/OpenTK.Core.Platform.PalComponents.yml deleted file mode 100644 index eab6230f..00000000 --- a/api/OpenTK.Core.Platform.PalComponents.yml +++ /dev/null @@ -1,484 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: OpenTK.Core.Platform.PalComponents - commentId: T:OpenTK.Core.Platform.PalComponents - id: PalComponents - parent: OpenTK.Core.Platform - children: - - OpenTK.Core.Platform.PalComponents.Clipboard - - OpenTK.Core.Platform.PalComponents.ControllerInput - - OpenTK.Core.Platform.PalComponents.Dialog - - OpenTK.Core.Platform.PalComponents.Display - - OpenTK.Core.Platform.PalComponents.Joystick - - OpenTK.Core.Platform.PalComponents.KeyboardInput - - OpenTK.Core.Platform.PalComponents.MiceInput - - OpenTK.Core.Platform.PalComponents.MouseCursor - - OpenTK.Core.Platform.PalComponents.OpenGL - - OpenTK.Core.Platform.PalComponents.Shell - - OpenTK.Core.Platform.PalComponents.Surface - - OpenTK.Core.Platform.PalComponents.Vulkan - - OpenTK.Core.Platform.PalComponents.Window - - OpenTK.Core.Platform.PalComponents.WindowIcon - langs: - - csharp - - vb - name: PalComponents - nameWithType: PalComponents - fullName: OpenTK.Core.Platform.PalComponents - type: Enum - source: - remote: - path: src/OpenTK.Core/Platform/Enums/PalComponents.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: PalComponents - path: opentk/src/OpenTK.Core/Platform/Enums/PalComponents.cs - startLine: 32 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Enumeration for all available platform abstraction layer components. - example: [] - syntax: - content: >- - [Flags] - - public enum PalComponents - content.vb: >- - - - Public Enum PalComponents - attributes: - - type: System.FlagsAttribute - ctor: System.FlagsAttribute.#ctor - arguments: [] -- uid: OpenTK.Core.Platform.PalComponents.OpenGL - commentId: F:OpenTK.Core.Platform.PalComponents.OpenGL - id: OpenGL - parent: OpenTK.Core.Platform.PalComponents - langs: - - csharp - - vb - name: OpenGL - nameWithType: PalComponents.OpenGL - fullName: OpenTK.Core.Platform.PalComponents.OpenGL - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/PalComponents.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: OpenGL - path: opentk/src/OpenTK.Core/Platform/Enums/PalComponents.cs - startLine: 38 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Abstraction layer provides the OpenGL component. - example: [] - syntax: - content: OpenGL = 1 - return: - type: OpenTK.Core.Platform.PalComponents -- uid: OpenTK.Core.Platform.PalComponents.Vulkan - commentId: F:OpenTK.Core.Platform.PalComponents.Vulkan - id: Vulkan - parent: OpenTK.Core.Platform.PalComponents - langs: - - csharp - - vb - name: Vulkan - nameWithType: PalComponents.Vulkan - fullName: OpenTK.Core.Platform.PalComponents.Vulkan - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/PalComponents.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Vulkan - path: opentk/src/OpenTK.Core/Platform/Enums/PalComponents.cs - startLine: 43 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Abstraction layer provides the Vulkan component. - example: [] - syntax: - content: Vulkan = 2 - return: - type: OpenTK.Core.Platform.PalComponents -- uid: OpenTK.Core.Platform.PalComponents.WindowIcon - commentId: F:OpenTK.Core.Platform.PalComponents.WindowIcon - id: WindowIcon - parent: OpenTK.Core.Platform.PalComponents - langs: - - csharp - - vb - name: WindowIcon - nameWithType: PalComponents.WindowIcon - fullName: OpenTK.Core.Platform.PalComponents.WindowIcon - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/PalComponents.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: WindowIcon - path: opentk/src/OpenTK.Core/Platform/Enums/PalComponents.cs - startLine: 48 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Abstraction layer provides the window icon component. - example: [] - syntax: - content: WindowIcon = 4 - return: - type: OpenTK.Core.Platform.PalComponents -- uid: OpenTK.Core.Platform.PalComponents.MouseCursor - commentId: F:OpenTK.Core.Platform.PalComponents.MouseCursor - id: MouseCursor - parent: OpenTK.Core.Platform.PalComponents - langs: - - csharp - - vb - name: MouseCursor - nameWithType: PalComponents.MouseCursor - fullName: OpenTK.Core.Platform.PalComponents.MouseCursor - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/PalComponents.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: MouseCursor - path: opentk/src/OpenTK.Core/Platform/Enums/PalComponents.cs - startLine: 53 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Abstraction layer provides the cursor component. - example: [] - syntax: - content: MouseCursor = 8 - return: - type: OpenTK.Core.Platform.PalComponents -- uid: OpenTK.Core.Platform.PalComponents.Window - commentId: F:OpenTK.Core.Platform.PalComponents.Window - id: Window - parent: OpenTK.Core.Platform.PalComponents - langs: - - csharp - - vb - name: Window - nameWithType: PalComponents.Window - fullName: OpenTK.Core.Platform.PalComponents.Window - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/PalComponents.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Window - path: opentk/src/OpenTK.Core/Platform/Enums/PalComponents.cs - startLine: 58 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Abstraction layer provides the window component. - example: [] - syntax: - content: Window = 16 - return: - type: OpenTK.Core.Platform.PalComponents -- uid: OpenTK.Core.Platform.PalComponents.Surface - commentId: F:OpenTK.Core.Platform.PalComponents.Surface - id: Surface - parent: OpenTK.Core.Platform.PalComponents - langs: - - csharp - - vb - name: Surface - nameWithType: PalComponents.Surface - fullName: OpenTK.Core.Platform.PalComponents.Surface - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/PalComponents.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Surface - path: opentk/src/OpenTK.Core/Platform/Enums/PalComponents.cs - startLine: 63 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Abstraction layer provides the surface component. - example: [] - syntax: - content: Surface = 32 - return: - type: OpenTK.Core.Platform.PalComponents -- uid: OpenTK.Core.Platform.PalComponents.Display - commentId: F:OpenTK.Core.Platform.PalComponents.Display - id: Display - parent: OpenTK.Core.Platform.PalComponents - langs: - - csharp - - vb - name: Display - nameWithType: PalComponents.Display - fullName: OpenTK.Core.Platform.PalComponents.Display - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/PalComponents.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Display - path: opentk/src/OpenTK.Core/Platform/Enums/PalComponents.cs - startLine: 68 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Abstraction layer provides the display component. - example: [] - syntax: - content: Display = 64 - return: - type: OpenTK.Core.Platform.PalComponents -- uid: OpenTK.Core.Platform.PalComponents.MiceInput - commentId: F:OpenTK.Core.Platform.PalComponents.MiceInput - id: MiceInput - parent: OpenTK.Core.Platform.PalComponents - langs: - - csharp - - vb - name: MiceInput - nameWithType: PalComponents.MiceInput - fullName: OpenTK.Core.Platform.PalComponents.MiceInput - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/PalComponents.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: MiceInput - path: opentk/src/OpenTK.Core/Platform/Enums/PalComponents.cs - startLine: 73 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Abstraction layer provides the mouse input component. - example: [] - syntax: - content: MiceInput = 128 - return: - type: OpenTK.Core.Platform.PalComponents -- uid: OpenTK.Core.Platform.PalComponents.KeyboardInput - commentId: F:OpenTK.Core.Platform.PalComponents.KeyboardInput - id: KeyboardInput - parent: OpenTK.Core.Platform.PalComponents - langs: - - csharp - - vb - name: KeyboardInput - nameWithType: PalComponents.KeyboardInput - fullName: OpenTK.Core.Platform.PalComponents.KeyboardInput - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/PalComponents.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: KeyboardInput - path: opentk/src/OpenTK.Core/Platform/Enums/PalComponents.cs - startLine: 78 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Abstraction layer provides the keyboard input component. - example: [] - syntax: - content: KeyboardInput = 256 - return: - type: OpenTK.Core.Platform.PalComponents -- uid: OpenTK.Core.Platform.PalComponents.ControllerInput - commentId: F:OpenTK.Core.Platform.PalComponents.ControllerInput - id: ControllerInput - parent: OpenTK.Core.Platform.PalComponents - langs: - - csharp - - vb - name: ControllerInput - nameWithType: PalComponents.ControllerInput - fullName: OpenTK.Core.Platform.PalComponents.ControllerInput - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/PalComponents.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: ControllerInput - path: opentk/src/OpenTK.Core/Platform/Enums/PalComponents.cs - startLine: 83 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Abstraction layer provides the controller input component. - example: [] - syntax: - content: ControllerInput = 512 - return: - type: OpenTK.Core.Platform.PalComponents -- uid: OpenTK.Core.Platform.PalComponents.Clipboard - commentId: F:OpenTK.Core.Platform.PalComponents.Clipboard - id: Clipboard - parent: OpenTK.Core.Platform.PalComponents - langs: - - csharp - - vb - name: Clipboard - nameWithType: PalComponents.Clipboard - fullName: OpenTK.Core.Platform.PalComponents.Clipboard - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/PalComponents.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Clipboard - path: opentk/src/OpenTK.Core/Platform/Enums/PalComponents.cs - startLine: 88 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Abstraction layer provides the clipboard component. - example: [] - syntax: - content: Clipboard = 1024 - return: - type: OpenTK.Core.Platform.PalComponents -- uid: OpenTK.Core.Platform.PalComponents.Shell - commentId: F:OpenTK.Core.Platform.PalComponents.Shell - id: Shell - parent: OpenTK.Core.Platform.PalComponents - langs: - - csharp - - vb - name: Shell - nameWithType: PalComponents.Shell - fullName: OpenTK.Core.Platform.PalComponents.Shell - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/PalComponents.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Shell - path: opentk/src/OpenTK.Core/Platform/Enums/PalComponents.cs - startLine: 93 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Abstraction layer provides the shell component. - example: [] - syntax: - content: Shell = 2048 - return: - type: OpenTK.Core.Platform.PalComponents -- uid: OpenTK.Core.Platform.PalComponents.Joystick - commentId: F:OpenTK.Core.Platform.PalComponents.Joystick - id: Joystick - parent: OpenTK.Core.Platform.PalComponents - langs: - - csharp - - vb - name: Joystick - nameWithType: PalComponents.Joystick - fullName: OpenTK.Core.Platform.PalComponents.Joystick - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/PalComponents.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Joystick - path: opentk/src/OpenTK.Core/Platform/Enums/PalComponents.cs - startLine: 98 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Abstraction layer provides the joystick component. - example: [] - syntax: - content: Joystick = 4096 - return: - type: OpenTK.Core.Platform.PalComponents -- uid: OpenTK.Core.Platform.PalComponents.Dialog - commentId: F:OpenTK.Core.Platform.PalComponents.Dialog - id: Dialog - parent: OpenTK.Core.Platform.PalComponents - langs: - - csharp - - vb - name: Dialog - nameWithType: PalComponents.Dialog - fullName: OpenTK.Core.Platform.PalComponents.Dialog - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/PalComponents.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Dialog - path: opentk/src/OpenTK.Core/Platform/Enums/PalComponents.cs - startLine: 103 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Abstraction layer provides the dialog component. - example: [] - syntax: - content: Dialog = 8192 - return: - type: OpenTK.Core.Platform.PalComponents -references: -- uid: OpenTK.Core.Platform - commentId: N:OpenTK.Core.Platform - href: OpenTK.html - name: OpenTK.Core.Platform - nameWithType: OpenTK.Core.Platform - fullName: OpenTK.Core.Platform - spec.csharp: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform - name: Platform - href: OpenTK.Core.Platform.html - spec.vb: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform - name: Platform - href: OpenTK.Core.Platform.html -- uid: OpenTK.Core.Platform.PalComponents - commentId: T:OpenTK.Core.Platform.PalComponents - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.PalComponents.html - name: PalComponents - nameWithType: PalComponents - fullName: OpenTK.Core.Platform.PalComponents diff --git a/api/OpenTK.Core.Platform.PlatformEventType.yml b/api/OpenTK.Core.Platform.PlatformEventType.yml deleted file mode 100644 index 44d5b8d1..00000000 --- a/api/OpenTK.Core.Platform.PlatformEventType.yml +++ /dev/null @@ -1,701 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: OpenTK.Core.Platform.PlatformEventType - commentId: T:OpenTK.Core.Platform.PlatformEventType - id: PlatformEventType - parent: OpenTK.Core.Platform - children: - - OpenTK.Core.Platform.PlatformEventType.ClipboardUpdate - - OpenTK.Core.Platform.PlatformEventType.Close - - OpenTK.Core.Platform.PlatformEventType.DisplayConnectionChanged - - OpenTK.Core.Platform.PlatformEventType.FileDrop - - OpenTK.Core.Platform.PlatformEventType.Focus - - OpenTK.Core.Platform.PlatformEventType.InputLanguageChanged - - OpenTK.Core.Platform.PlatformEventType.KeyDown - - OpenTK.Core.Platform.PlatformEventType.KeyUp - - OpenTK.Core.Platform.PlatformEventType.MouseDown - - OpenTK.Core.Platform.PlatformEventType.MouseEnter - - OpenTK.Core.Platform.PlatformEventType.MouseMove - - OpenTK.Core.Platform.PlatformEventType.MouseUp - - OpenTK.Core.Platform.PlatformEventType.NoOperation - - OpenTK.Core.Platform.PlatformEventType.PowerStateChange - - OpenTK.Core.Platform.PlatformEventType.Scroll - - OpenTK.Core.Platform.PlatformEventType.TextEditing - - OpenTK.Core.Platform.PlatformEventType.TextInput - - OpenTK.Core.Platform.PlatformEventType.ThemeChange - - OpenTK.Core.Platform.PlatformEventType.WindowFramebufferResize - - OpenTK.Core.Platform.PlatformEventType.WindowModeChange - - OpenTK.Core.Platform.PlatformEventType.WindowMove - - OpenTK.Core.Platform.PlatformEventType.WindowResize - - OpenTK.Core.Platform.PlatformEventType.WindowScaleChange - langs: - - csharp - - vb - name: PlatformEventType - nameWithType: PlatformEventType - fullName: OpenTK.Core.Platform.PlatformEventType - type: Enum - source: - remote: - path: src/OpenTK.Core/Platform/Enums/PlatformEventType.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: PlatformEventType - path: opentk/src/OpenTK.Core/Platform/Enums/PlatformEventType.cs - startLine: 5 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Enumeration of all OpenTK window events. - example: [] - syntax: - content: public enum PlatformEventType - content.vb: Public Enum PlatformEventType -- uid: OpenTK.Core.Platform.PlatformEventType.NoOperation - commentId: F:OpenTK.Core.Platform.PlatformEventType.NoOperation - id: NoOperation - parent: OpenTK.Core.Platform.PlatformEventType - langs: - - csharp - - vb - name: NoOperation - nameWithType: PlatformEventType.NoOperation - fullName: OpenTK.Core.Platform.PlatformEventType.NoOperation - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/PlatformEventType.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: NoOperation - path: opentk/src/OpenTK.Core/Platform/Enums/PlatformEventType.cs - startLine: 12 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: A no operation event, for testing purposes. - example: [] - syntax: - content: NoOperation = 0 - return: - type: OpenTK.Core.Platform.PlatformEventType -- uid: OpenTK.Core.Platform.PlatformEventType.Close - commentId: F:OpenTK.Core.Platform.PlatformEventType.Close - id: Close - parent: OpenTK.Core.Platform.PlatformEventType - langs: - - csharp - - vb - name: Close - nameWithType: PlatformEventType.Close - fullName: OpenTK.Core.Platform.PlatformEventType.Close - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/PlatformEventType.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Close - path: opentk/src/OpenTK.Core/Platform/Enums/PlatformEventType.cs - startLine: 14 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: Close = 1 - return: - type: OpenTK.Core.Platform.PlatformEventType -- uid: OpenTK.Core.Platform.PlatformEventType.Focus - commentId: F:OpenTK.Core.Platform.PlatformEventType.Focus - id: Focus - parent: OpenTK.Core.Platform.PlatformEventType - langs: - - csharp - - vb - name: Focus - nameWithType: PlatformEventType.Focus - fullName: OpenTK.Core.Platform.PlatformEventType.Focus - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/PlatformEventType.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Focus - path: opentk/src/OpenTK.Core/Platform/Enums/PlatformEventType.cs - startLine: 16 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: Focus = 2 - return: - type: OpenTK.Core.Platform.PlatformEventType -- uid: OpenTK.Core.Platform.PlatformEventType.WindowMove - commentId: F:OpenTK.Core.Platform.PlatformEventType.WindowMove - id: WindowMove - parent: OpenTK.Core.Platform.PlatformEventType - langs: - - csharp - - vb - name: WindowMove - nameWithType: PlatformEventType.WindowMove - fullName: OpenTK.Core.Platform.PlatformEventType.WindowMove - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/PlatformEventType.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: WindowMove - path: opentk/src/OpenTK.Core/Platform/Enums/PlatformEventType.cs - startLine: 17 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: WindowMove = 3 - return: - type: OpenTK.Core.Platform.PlatformEventType -- uid: OpenTK.Core.Platform.PlatformEventType.WindowResize - commentId: F:OpenTK.Core.Platform.PlatformEventType.WindowResize - id: WindowResize - parent: OpenTK.Core.Platform.PlatformEventType - langs: - - csharp - - vb - name: WindowResize - nameWithType: PlatformEventType.WindowResize - fullName: OpenTK.Core.Platform.PlatformEventType.WindowResize - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/PlatformEventType.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: WindowResize - path: opentk/src/OpenTK.Core/Platform/Enums/PlatformEventType.cs - startLine: 18 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: WindowResize = 4 - return: - type: OpenTK.Core.Platform.PlatformEventType -- uid: OpenTK.Core.Platform.PlatformEventType.WindowFramebufferResize - commentId: F:OpenTK.Core.Platform.PlatformEventType.WindowFramebufferResize - id: WindowFramebufferResize - parent: OpenTK.Core.Platform.PlatformEventType - langs: - - csharp - - vb - name: WindowFramebufferResize - nameWithType: PlatformEventType.WindowFramebufferResize - fullName: OpenTK.Core.Platform.PlatformEventType.WindowFramebufferResize - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/PlatformEventType.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: WindowFramebufferResize - path: opentk/src/OpenTK.Core/Platform/Enums/PlatformEventType.cs - startLine: 19 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: WindowFramebufferResize = 5 - return: - type: OpenTK.Core.Platform.PlatformEventType -- uid: OpenTK.Core.Platform.PlatformEventType.WindowModeChange - commentId: F:OpenTK.Core.Platform.PlatformEventType.WindowModeChange - id: WindowModeChange - parent: OpenTK.Core.Platform.PlatformEventType - langs: - - csharp - - vb - name: WindowModeChange - nameWithType: PlatformEventType.WindowModeChange - fullName: OpenTK.Core.Platform.PlatformEventType.WindowModeChange - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/PlatformEventType.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: WindowModeChange - path: opentk/src/OpenTK.Core/Platform/Enums/PlatformEventType.cs - startLine: 21 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: WindowModeChange = 6 - return: - type: OpenTK.Core.Platform.PlatformEventType -- uid: OpenTK.Core.Platform.PlatformEventType.WindowScaleChange - commentId: F:OpenTK.Core.Platform.PlatformEventType.WindowScaleChange - id: WindowScaleChange - parent: OpenTK.Core.Platform.PlatformEventType - langs: - - csharp - - vb - name: WindowScaleChange - nameWithType: PlatformEventType.WindowScaleChange - fullName: OpenTK.Core.Platform.PlatformEventType.WindowScaleChange - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/PlatformEventType.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: WindowScaleChange - path: opentk/src/OpenTK.Core/Platform/Enums/PlatformEventType.cs - startLine: 23 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: WindowScaleChange = 7 - return: - type: OpenTK.Core.Platform.PlatformEventType -- uid: OpenTK.Core.Platform.PlatformEventType.MouseEnter - commentId: F:OpenTK.Core.Platform.PlatformEventType.MouseEnter - id: MouseEnter - parent: OpenTK.Core.Platform.PlatformEventType - langs: - - csharp - - vb - name: MouseEnter - nameWithType: PlatformEventType.MouseEnter - fullName: OpenTK.Core.Platform.PlatformEventType.MouseEnter - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/PlatformEventType.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: MouseEnter - path: opentk/src/OpenTK.Core/Platform/Enums/PlatformEventType.cs - startLine: 25 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: MouseEnter = 8 - return: - type: OpenTK.Core.Platform.PlatformEventType -- uid: OpenTK.Core.Platform.PlatformEventType.MouseMove - commentId: F:OpenTK.Core.Platform.PlatformEventType.MouseMove - id: MouseMove - parent: OpenTK.Core.Platform.PlatformEventType - langs: - - csharp - - vb - name: MouseMove - nameWithType: PlatformEventType.MouseMove - fullName: OpenTK.Core.Platform.PlatformEventType.MouseMove - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/PlatformEventType.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: MouseMove - path: opentk/src/OpenTK.Core/Platform/Enums/PlatformEventType.cs - startLine: 30 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Signifies the event is of type . - example: [] - syntax: - content: MouseMove = 9 - return: - type: OpenTK.Core.Platform.PlatformEventType -- uid: OpenTK.Core.Platform.PlatformEventType.MouseDown - commentId: F:OpenTK.Core.Platform.PlatformEventType.MouseDown - id: MouseDown - parent: OpenTK.Core.Platform.PlatformEventType - langs: - - csharp - - vb - name: MouseDown - nameWithType: PlatformEventType.MouseDown - fullName: OpenTK.Core.Platform.PlatformEventType.MouseDown - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/PlatformEventType.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: MouseDown - path: opentk/src/OpenTK.Core/Platform/Enums/PlatformEventType.cs - startLine: 33 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: MouseDown = 10 - return: - type: OpenTK.Core.Platform.PlatformEventType -- uid: OpenTK.Core.Platform.PlatformEventType.MouseUp - commentId: F:OpenTK.Core.Platform.PlatformEventType.MouseUp - id: MouseUp - parent: OpenTK.Core.Platform.PlatformEventType - langs: - - csharp - - vb - name: MouseUp - nameWithType: PlatformEventType.MouseUp - fullName: OpenTK.Core.Platform.PlatformEventType.MouseUp - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/PlatformEventType.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: MouseUp - path: opentk/src/OpenTK.Core/Platform/Enums/PlatformEventType.cs - startLine: 34 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: MouseUp = 11 - return: - type: OpenTK.Core.Platform.PlatformEventType -- uid: OpenTK.Core.Platform.PlatformEventType.Scroll - commentId: F:OpenTK.Core.Platform.PlatformEventType.Scroll - id: Scroll - parent: OpenTK.Core.Platform.PlatformEventType - langs: - - csharp - - vb - name: Scroll - nameWithType: PlatformEventType.Scroll - fullName: OpenTK.Core.Platform.PlatformEventType.Scroll - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/PlatformEventType.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Scroll - path: opentk/src/OpenTK.Core/Platform/Enums/PlatformEventType.cs - startLine: 36 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: Scroll = 12 - return: - type: OpenTK.Core.Platform.PlatformEventType -- uid: OpenTK.Core.Platform.PlatformEventType.KeyDown - commentId: F:OpenTK.Core.Platform.PlatformEventType.KeyDown - id: KeyDown - parent: OpenTK.Core.Platform.PlatformEventType - langs: - - csharp - - vb - name: KeyDown - nameWithType: PlatformEventType.KeyDown - fullName: OpenTK.Core.Platform.PlatformEventType.KeyDown - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/PlatformEventType.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: KeyDown - path: opentk/src/OpenTK.Core/Platform/Enums/PlatformEventType.cs - startLine: 39 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: KeyDown = 13 - return: - type: OpenTK.Core.Platform.PlatformEventType -- uid: OpenTK.Core.Platform.PlatformEventType.KeyUp - commentId: F:OpenTK.Core.Platform.PlatformEventType.KeyUp - id: KeyUp - parent: OpenTK.Core.Platform.PlatformEventType - langs: - - csharp - - vb - name: KeyUp - nameWithType: PlatformEventType.KeyUp - fullName: OpenTK.Core.Platform.PlatformEventType.KeyUp - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/PlatformEventType.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: KeyUp - path: opentk/src/OpenTK.Core/Platform/Enums/PlatformEventType.cs - startLine: 40 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: KeyUp = 14 - return: - type: OpenTK.Core.Platform.PlatformEventType -- uid: OpenTK.Core.Platform.PlatformEventType.TextInput - commentId: F:OpenTK.Core.Platform.PlatformEventType.TextInput - id: TextInput - parent: OpenTK.Core.Platform.PlatformEventType - langs: - - csharp - - vb - name: TextInput - nameWithType: PlatformEventType.TextInput - fullName: OpenTK.Core.Platform.PlatformEventType.TextInput - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/PlatformEventType.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: TextInput - path: opentk/src/OpenTK.Core/Platform/Enums/PlatformEventType.cs - startLine: 42 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: TextInput = 15 - return: - type: OpenTK.Core.Platform.PlatformEventType -- uid: OpenTK.Core.Platform.PlatformEventType.TextEditing - commentId: F:OpenTK.Core.Platform.PlatformEventType.TextEditing - id: TextEditing - parent: OpenTK.Core.Platform.PlatformEventType - langs: - - csharp - - vb - name: TextEditing - nameWithType: PlatformEventType.TextEditing - fullName: OpenTK.Core.Platform.PlatformEventType.TextEditing - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/PlatformEventType.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: TextEditing - path: opentk/src/OpenTK.Core/Platform/Enums/PlatformEventType.cs - startLine: 43 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: TextEditing = 16 - return: - type: OpenTK.Core.Platform.PlatformEventType -- uid: OpenTK.Core.Platform.PlatformEventType.InputLanguageChanged - commentId: F:OpenTK.Core.Platform.PlatformEventType.InputLanguageChanged - id: InputLanguageChanged - parent: OpenTK.Core.Platform.PlatformEventType - langs: - - csharp - - vb - name: InputLanguageChanged - nameWithType: PlatformEventType.InputLanguageChanged - fullName: OpenTK.Core.Platform.PlatformEventType.InputLanguageChanged - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/PlatformEventType.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: InputLanguageChanged - path: opentk/src/OpenTK.Core/Platform/Enums/PlatformEventType.cs - startLine: 45 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: InputLanguageChanged = 17 - return: - type: OpenTK.Core.Platform.PlatformEventType -- uid: OpenTK.Core.Platform.PlatformEventType.FileDrop - commentId: F:OpenTK.Core.Platform.PlatformEventType.FileDrop - id: FileDrop - parent: OpenTK.Core.Platform.PlatformEventType - langs: - - csharp - - vb - name: FileDrop - nameWithType: PlatformEventType.FileDrop - fullName: OpenTK.Core.Platform.PlatformEventType.FileDrop - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/PlatformEventType.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: FileDrop - path: opentk/src/OpenTK.Core/Platform/Enums/PlatformEventType.cs - startLine: 47 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: FileDrop = 18 - return: - type: OpenTK.Core.Platform.PlatformEventType -- uid: OpenTK.Core.Platform.PlatformEventType.ClipboardUpdate - commentId: F:OpenTK.Core.Platform.PlatformEventType.ClipboardUpdate - id: ClipboardUpdate - parent: OpenTK.Core.Platform.PlatformEventType - langs: - - csharp - - vb - name: ClipboardUpdate - nameWithType: PlatformEventType.ClipboardUpdate - fullName: OpenTK.Core.Platform.PlatformEventType.ClipboardUpdate - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/PlatformEventType.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: ClipboardUpdate - path: opentk/src/OpenTK.Core/Platform/Enums/PlatformEventType.cs - startLine: 52 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Is raised when the contents of the clipboard is changed. - example: [] - syntax: - content: ClipboardUpdate = 19 - return: - type: OpenTK.Core.Platform.PlatformEventType -- uid: OpenTK.Core.Platform.PlatformEventType.ThemeChange - commentId: F:OpenTK.Core.Platform.PlatformEventType.ThemeChange - id: ThemeChange - parent: OpenTK.Core.Platform.PlatformEventType - langs: - - csharp - - vb - name: ThemeChange - nameWithType: PlatformEventType.ThemeChange - fullName: OpenTK.Core.Platform.PlatformEventType.ThemeChange - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/PlatformEventType.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: ThemeChange - path: opentk/src/OpenTK.Core/Platform/Enums/PlatformEventType.cs - startLine: 54 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: ThemeChange = 20 - return: - type: OpenTK.Core.Platform.PlatformEventType -- uid: OpenTK.Core.Platform.PlatformEventType.DisplayConnectionChanged - commentId: F:OpenTK.Core.Platform.PlatformEventType.DisplayConnectionChanged - id: DisplayConnectionChanged - parent: OpenTK.Core.Platform.PlatformEventType - langs: - - csharp - - vb - name: DisplayConnectionChanged - nameWithType: PlatformEventType.DisplayConnectionChanged - fullName: OpenTK.Core.Platform.PlatformEventType.DisplayConnectionChanged - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/PlatformEventType.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: DisplayConnectionChanged - path: opentk/src/OpenTK.Core/Platform/Enums/PlatformEventType.cs - startLine: 56 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: DisplayConnectionChanged = 21 - return: - type: OpenTK.Core.Platform.PlatformEventType -- uid: OpenTK.Core.Platform.PlatformEventType.PowerStateChange - commentId: F:OpenTK.Core.Platform.PlatformEventType.PowerStateChange - id: PowerStateChange - parent: OpenTK.Core.Platform.PlatformEventType - langs: - - csharp - - vb - name: PowerStateChange - nameWithType: PlatformEventType.PowerStateChange - fullName: OpenTK.Core.Platform.PlatformEventType.PowerStateChange - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/PlatformEventType.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: PowerStateChange - path: opentk/src/OpenTK.Core/Platform/Enums/PlatformEventType.cs - startLine: 58 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: PowerStateChange = 22 - return: - type: OpenTK.Core.Platform.PlatformEventType -references: -- uid: OpenTK.Core.Platform - commentId: N:OpenTK.Core.Platform - href: OpenTK.html - name: OpenTK.Core.Platform - nameWithType: OpenTK.Core.Platform - fullName: OpenTK.Core.Platform - spec.csharp: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform - name: Platform - href: OpenTK.Core.Platform.html - spec.vb: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform - name: Platform - href: OpenTK.Core.Platform.html -- uid: OpenTK.Core.Platform.PlatformEventType - commentId: T:OpenTK.Core.Platform.PlatformEventType - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.PlatformEventType.html - name: PlatformEventType - nameWithType: PlatformEventType - fullName: OpenTK.Core.Platform.PlatformEventType -- uid: OpenTK.Core.Platform.MouseMoveEventArgs - commentId: T:OpenTK.Core.Platform.MouseMoveEventArgs - href: OpenTK.Core.Platform.MouseMoveEventArgs.html - name: MouseMoveEventArgs - nameWithType: MouseMoveEventArgs - fullName: OpenTK.Core.Platform.MouseMoveEventArgs diff --git a/api/OpenTK.Core.Platform.SaveDialogOptions.yml b/api/OpenTK.Core.Platform.SaveDialogOptions.yml deleted file mode 100644 index b7c9d95d..00000000 --- a/api/OpenTK.Core.Platform.SaveDialogOptions.yml +++ /dev/null @@ -1,71 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: OpenTK.Core.Platform.SaveDialogOptions - commentId: T:OpenTK.Core.Platform.SaveDialogOptions - id: SaveDialogOptions - parent: OpenTK.Core.Platform - children: [] - langs: - - csharp - - vb - name: SaveDialogOptions - nameWithType: SaveDialogOptions - fullName: OpenTK.Core.Platform.SaveDialogOptions - type: Enum - source: - remote: - path: src/OpenTK.Core/Platform/Enums/SaveDialogOptions.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: SaveDialogOptions - path: opentk/src/OpenTK.Core/Platform/Enums/SaveDialogOptions.cs - startLine: 11 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Options for save dialogs. - example: [] - syntax: - content: >- - [Flags] - - public enum SaveDialogOptions - content.vb: >- - - - Public Enum SaveDialogOptions - attributes: - - type: System.FlagsAttribute - ctor: System.FlagsAttribute.#ctor - arguments: [] -references: -- uid: OpenTK.Core.Platform - commentId: N:OpenTK.Core.Platform - href: OpenTK.html - name: OpenTK.Core.Platform - nameWithType: OpenTK.Core.Platform - fullName: OpenTK.Core.Platform - spec.csharp: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform - name: Platform - href: OpenTK.Core.Platform.html - spec.vb: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform - name: Platform - href: OpenTK.Core.Platform.html diff --git a/api/OpenTK.Core.Platform.Scancode.yml b/api/OpenTK.Core.Platform.Scancode.yml deleted file mode 100644 index ad81957c..00000000 --- a/api/OpenTK.Core.Platform.Scancode.yml +++ /dev/null @@ -1,3879 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: OpenTK.Core.Platform.Scancode - commentId: T:OpenTK.Core.Platform.Scancode - id: Scancode - parent: OpenTK.Core.Platform - children: - - OpenTK.Core.Platform.Scancode.A - - OpenTK.Core.Platform.Scancode.Application - - OpenTK.Core.Platform.Scancode.B - - OpenTK.Core.Platform.Scancode.Backspace - - OpenTK.Core.Platform.Scancode.C - - OpenTK.Core.Platform.Scancode.CapsLock - - OpenTK.Core.Platform.Scancode.Comma - - OpenTK.Core.Platform.Scancode.D - - OpenTK.Core.Platform.Scancode.D0 - - OpenTK.Core.Platform.Scancode.D1 - - OpenTK.Core.Platform.Scancode.D2 - - OpenTK.Core.Platform.Scancode.D3 - - OpenTK.Core.Platform.Scancode.D4 - - OpenTK.Core.Platform.Scancode.D5 - - OpenTK.Core.Platform.Scancode.D6 - - OpenTK.Core.Platform.Scancode.D7 - - OpenTK.Core.Platform.Scancode.D8 - - OpenTK.Core.Platform.Scancode.D9 - - OpenTK.Core.Platform.Scancode.Dash - - OpenTK.Core.Platform.Scancode.Delete - - OpenTK.Core.Platform.Scancode.DownArrow - - OpenTK.Core.Platform.Scancode.E - - OpenTK.Core.Platform.Scancode.End - - OpenTK.Core.Platform.Scancode.Equals - - OpenTK.Core.Platform.Scancode.Escape - - OpenTK.Core.Platform.Scancode.F - - OpenTK.Core.Platform.Scancode.F1 - - OpenTK.Core.Platform.Scancode.F10 - - OpenTK.Core.Platform.Scancode.F11 - - OpenTK.Core.Platform.Scancode.F12 - - OpenTK.Core.Platform.Scancode.F13 - - OpenTK.Core.Platform.Scancode.F14 - - OpenTK.Core.Platform.Scancode.F15 - - OpenTK.Core.Platform.Scancode.F16 - - OpenTK.Core.Platform.Scancode.F17 - - OpenTK.Core.Platform.Scancode.F18 - - OpenTK.Core.Platform.Scancode.F19 - - OpenTK.Core.Platform.Scancode.F2 - - OpenTK.Core.Platform.Scancode.F20 - - OpenTK.Core.Platform.Scancode.F21 - - OpenTK.Core.Platform.Scancode.F22 - - OpenTK.Core.Platform.Scancode.F23 - - OpenTK.Core.Platform.Scancode.F24 - - OpenTK.Core.Platform.Scancode.F3 - - OpenTK.Core.Platform.Scancode.F4 - - OpenTK.Core.Platform.Scancode.F5 - - OpenTK.Core.Platform.Scancode.F6 - - OpenTK.Core.Platform.Scancode.F7 - - OpenTK.Core.Platform.Scancode.F8 - - OpenTK.Core.Platform.Scancode.F9 - - OpenTK.Core.Platform.Scancode.G - - OpenTK.Core.Platform.Scancode.GraveAccent - - OpenTK.Core.Platform.Scancode.H - - OpenTK.Core.Platform.Scancode.Home - - OpenTK.Core.Platform.Scancode.I - - OpenTK.Core.Platform.Scancode.Insert - - OpenTK.Core.Platform.Scancode.International1 - - OpenTK.Core.Platform.Scancode.International2 - - OpenTK.Core.Platform.Scancode.International3 - - OpenTK.Core.Platform.Scancode.International4 - - OpenTK.Core.Platform.Scancode.International5 - - OpenTK.Core.Platform.Scancode.International6 - - OpenTK.Core.Platform.Scancode.J - - OpenTK.Core.Platform.Scancode.K - - OpenTK.Core.Platform.Scancode.Keypad0 - - OpenTK.Core.Platform.Scancode.Keypad1 - - OpenTK.Core.Platform.Scancode.Keypad2 - - OpenTK.Core.Platform.Scancode.Keypad3 - - OpenTK.Core.Platform.Scancode.Keypad4 - - OpenTK.Core.Platform.Scancode.Keypad5 - - OpenTK.Core.Platform.Scancode.Keypad6 - - OpenTK.Core.Platform.Scancode.Keypad7 - - OpenTK.Core.Platform.Scancode.Keypad8 - - OpenTK.Core.Platform.Scancode.Keypad9 - - OpenTK.Core.Platform.Scancode.KeypadComma - - OpenTK.Core.Platform.Scancode.KeypadDash - - OpenTK.Core.Platform.Scancode.KeypadEnter - - OpenTK.Core.Platform.Scancode.KeypadEquals - - OpenTK.Core.Platform.Scancode.KeypadForwardSlash - - OpenTK.Core.Platform.Scancode.KeypadPeriod - - OpenTK.Core.Platform.Scancode.KeypadPlus - - OpenTK.Core.Platform.Scancode.KeypadStar - - OpenTK.Core.Platform.Scancode.L - - OpenTK.Core.Platform.Scancode.LANG1 - - OpenTK.Core.Platform.Scancode.LANG2 - - OpenTK.Core.Platform.Scancode.LANG3 - - OpenTK.Core.Platform.Scancode.LANG4 - - OpenTK.Core.Platform.Scancode.LANG5 - - OpenTK.Core.Platform.Scancode.LeftAlt - - OpenTK.Core.Platform.Scancode.LeftApostrophe - - OpenTK.Core.Platform.Scancode.LeftArrow - - OpenTK.Core.Platform.Scancode.LeftBrace - - OpenTK.Core.Platform.Scancode.LeftControl - - OpenTK.Core.Platform.Scancode.LeftGUI - - OpenTK.Core.Platform.Scancode.LeftShift - - OpenTK.Core.Platform.Scancode.M - - OpenTK.Core.Platform.Scancode.Mute - - OpenTK.Core.Platform.Scancode.N - - OpenTK.Core.Platform.Scancode.NonUSSlashBar - - OpenTK.Core.Platform.Scancode.NumLock - - OpenTK.Core.Platform.Scancode.O - - OpenTK.Core.Platform.Scancode.P - - OpenTK.Core.Platform.Scancode.PageDown - - OpenTK.Core.Platform.Scancode.PageUp - - OpenTK.Core.Platform.Scancode.Pause - - OpenTK.Core.Platform.Scancode.Period - - OpenTK.Core.Platform.Scancode.Pipe - - OpenTK.Core.Platform.Scancode.PlayPause - - OpenTK.Core.Platform.Scancode.PrintScreen - - OpenTK.Core.Platform.Scancode.Q - - OpenTK.Core.Platform.Scancode.QuestionMark - - OpenTK.Core.Platform.Scancode.R - - OpenTK.Core.Platform.Scancode.Return - - OpenTK.Core.Platform.Scancode.RightAlt - - OpenTK.Core.Platform.Scancode.RightArrow - - OpenTK.Core.Platform.Scancode.RightBrace - - OpenTK.Core.Platform.Scancode.RightControl - - OpenTK.Core.Platform.Scancode.RightGUI - - OpenTK.Core.Platform.Scancode.RightShift - - OpenTK.Core.Platform.Scancode.S - - OpenTK.Core.Platform.Scancode.ScanNextTrack - - OpenTK.Core.Platform.Scancode.ScanPreviousTrack - - OpenTK.Core.Platform.Scancode.ScrollLock - - OpenTK.Core.Platform.Scancode.SemiColon - - OpenTK.Core.Platform.Scancode.Spacebar - - OpenTK.Core.Platform.Scancode.Stop - - OpenTK.Core.Platform.Scancode.SystemPowerDown - - OpenTK.Core.Platform.Scancode.SystemSleep - - OpenTK.Core.Platform.Scancode.SystemWakeUp - - OpenTK.Core.Platform.Scancode.T - - OpenTK.Core.Platform.Scancode.Tab - - OpenTK.Core.Platform.Scancode.U - - OpenTK.Core.Platform.Scancode.Unknown - - OpenTK.Core.Platform.Scancode.UpArrow - - OpenTK.Core.Platform.Scancode.V - - OpenTK.Core.Platform.Scancode.VolumeDecrement - - OpenTK.Core.Platform.Scancode.VolumeIncrement - - OpenTK.Core.Platform.Scancode.W - - OpenTK.Core.Platform.Scancode.X - - OpenTK.Core.Platform.Scancode.Y - - OpenTK.Core.Platform.Scancode.Z - langs: - - csharp - - vb - name: Scancode - nameWithType: Scancode - fullName: OpenTK.Core.Platform.Scancode - type: Enum - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Scancode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Scancode - path: opentk/src/OpenTK.Core/Platform/Enums/Scancode.cs - startLine: 8 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: public enum Scancode - content.vb: Public Enum Scancode -- uid: OpenTK.Core.Platform.Scancode.Unknown - commentId: F:OpenTK.Core.Platform.Scancode.Unknown - id: Unknown - parent: OpenTK.Core.Platform.Scancode - langs: - - csharp - - vb - name: Unknown - nameWithType: Scancode.Unknown - fullName: OpenTK.Core.Platform.Scancode.Unknown - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Scancode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Unknown - path: opentk/src/OpenTK.Core/Platform/Enums/Scancode.cs - startLine: 14 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: Unknown = 0 - return: - type: OpenTK.Core.Platform.Scancode -- uid: OpenTK.Core.Platform.Scancode.A - commentId: F:OpenTK.Core.Platform.Scancode.A - id: A - parent: OpenTK.Core.Platform.Scancode - langs: - - csharp - - vb - name: A - nameWithType: Scancode.A - fullName: OpenTK.Core.Platform.Scancode.A - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Scancode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: A - path: opentk/src/OpenTK.Core/Platform/Enums/Scancode.cs - startLine: 16 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: A = 1 - return: - type: OpenTK.Core.Platform.Scancode -- uid: OpenTK.Core.Platform.Scancode.B - commentId: F:OpenTK.Core.Platform.Scancode.B - id: B - parent: OpenTK.Core.Platform.Scancode - langs: - - csharp - - vb - name: B - nameWithType: Scancode.B - fullName: OpenTK.Core.Platform.Scancode.B - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Scancode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: B - path: opentk/src/OpenTK.Core/Platform/Enums/Scancode.cs - startLine: 16 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: B = 2 - return: - type: OpenTK.Core.Platform.Scancode -- uid: OpenTK.Core.Platform.Scancode.C - commentId: F:OpenTK.Core.Platform.Scancode.C - id: C - parent: OpenTK.Core.Platform.Scancode - langs: - - csharp - - vb - name: C - nameWithType: Scancode.C - fullName: OpenTK.Core.Platform.Scancode.C - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Scancode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: C - path: opentk/src/OpenTK.Core/Platform/Enums/Scancode.cs - startLine: 16 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: C = 3 - return: - type: OpenTK.Core.Platform.Scancode -- uid: OpenTK.Core.Platform.Scancode.D - commentId: F:OpenTK.Core.Platform.Scancode.D - id: D - parent: OpenTK.Core.Platform.Scancode - langs: - - csharp - - vb - name: D - nameWithType: Scancode.D - fullName: OpenTK.Core.Platform.Scancode.D - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Scancode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: D - path: opentk/src/OpenTK.Core/Platform/Enums/Scancode.cs - startLine: 16 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: D = 4 - return: - type: OpenTK.Core.Platform.Scancode -- uid: OpenTK.Core.Platform.Scancode.E - commentId: F:OpenTK.Core.Platform.Scancode.E - id: E - parent: OpenTK.Core.Platform.Scancode - langs: - - csharp - - vb - name: E - nameWithType: Scancode.E - fullName: OpenTK.Core.Platform.Scancode.E - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Scancode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: E - path: opentk/src/OpenTK.Core/Platform/Enums/Scancode.cs - startLine: 16 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: E = 5 - return: - type: OpenTK.Core.Platform.Scancode -- uid: OpenTK.Core.Platform.Scancode.F - commentId: F:OpenTK.Core.Platform.Scancode.F - id: F - parent: OpenTK.Core.Platform.Scancode - langs: - - csharp - - vb - name: F - nameWithType: Scancode.F - fullName: OpenTK.Core.Platform.Scancode.F - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Scancode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: F - path: opentk/src/OpenTK.Core/Platform/Enums/Scancode.cs - startLine: 16 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: F = 6 - return: - type: OpenTK.Core.Platform.Scancode -- uid: OpenTK.Core.Platform.Scancode.G - commentId: F:OpenTK.Core.Platform.Scancode.G - id: G - parent: OpenTK.Core.Platform.Scancode - langs: - - csharp - - vb - name: G - nameWithType: Scancode.G - fullName: OpenTK.Core.Platform.Scancode.G - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Scancode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: G - path: opentk/src/OpenTK.Core/Platform/Enums/Scancode.cs - startLine: 16 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: G = 7 - return: - type: OpenTK.Core.Platform.Scancode -- uid: OpenTK.Core.Platform.Scancode.H - commentId: F:OpenTK.Core.Platform.Scancode.H - id: H - parent: OpenTK.Core.Platform.Scancode - langs: - - csharp - - vb - name: H - nameWithType: Scancode.H - fullName: OpenTK.Core.Platform.Scancode.H - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Scancode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: H - path: opentk/src/OpenTK.Core/Platform/Enums/Scancode.cs - startLine: 16 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: H = 8 - return: - type: OpenTK.Core.Platform.Scancode -- uid: OpenTK.Core.Platform.Scancode.I - commentId: F:OpenTK.Core.Platform.Scancode.I - id: I - parent: OpenTK.Core.Platform.Scancode - langs: - - csharp - - vb - name: I - nameWithType: Scancode.I - fullName: OpenTK.Core.Platform.Scancode.I - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Scancode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: I - path: opentk/src/OpenTK.Core/Platform/Enums/Scancode.cs - startLine: 16 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: I = 9 - return: - type: OpenTK.Core.Platform.Scancode -- uid: OpenTK.Core.Platform.Scancode.J - commentId: F:OpenTK.Core.Platform.Scancode.J - id: J - parent: OpenTK.Core.Platform.Scancode - langs: - - csharp - - vb - name: J - nameWithType: Scancode.J - fullName: OpenTK.Core.Platform.Scancode.J - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Scancode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: J - path: opentk/src/OpenTK.Core/Platform/Enums/Scancode.cs - startLine: 16 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: J = 10 - return: - type: OpenTK.Core.Platform.Scancode -- uid: OpenTK.Core.Platform.Scancode.K - commentId: F:OpenTK.Core.Platform.Scancode.K - id: K - parent: OpenTK.Core.Platform.Scancode - langs: - - csharp - - vb - name: K - nameWithType: Scancode.K - fullName: OpenTK.Core.Platform.Scancode.K - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Scancode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: K - path: opentk/src/OpenTK.Core/Platform/Enums/Scancode.cs - startLine: 16 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: K = 11 - return: - type: OpenTK.Core.Platform.Scancode -- uid: OpenTK.Core.Platform.Scancode.L - commentId: F:OpenTK.Core.Platform.Scancode.L - id: L - parent: OpenTK.Core.Platform.Scancode - langs: - - csharp - - vb - name: L - nameWithType: Scancode.L - fullName: OpenTK.Core.Platform.Scancode.L - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Scancode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: L - path: opentk/src/OpenTK.Core/Platform/Enums/Scancode.cs - startLine: 16 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: L = 12 - return: - type: OpenTK.Core.Platform.Scancode -- uid: OpenTK.Core.Platform.Scancode.M - commentId: F:OpenTK.Core.Platform.Scancode.M - id: M - parent: OpenTK.Core.Platform.Scancode - langs: - - csharp - - vb - name: M - nameWithType: Scancode.M - fullName: OpenTK.Core.Platform.Scancode.M - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Scancode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: M - path: opentk/src/OpenTK.Core/Platform/Enums/Scancode.cs - startLine: 16 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: M = 13 - return: - type: OpenTK.Core.Platform.Scancode -- uid: OpenTK.Core.Platform.Scancode.N - commentId: F:OpenTK.Core.Platform.Scancode.N - id: N - parent: OpenTK.Core.Platform.Scancode - langs: - - csharp - - vb - name: N - nameWithType: Scancode.N - fullName: OpenTK.Core.Platform.Scancode.N - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Scancode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: N - path: opentk/src/OpenTK.Core/Platform/Enums/Scancode.cs - startLine: 16 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: N = 14 - return: - type: OpenTK.Core.Platform.Scancode -- uid: OpenTK.Core.Platform.Scancode.O - commentId: F:OpenTK.Core.Platform.Scancode.O - id: O - parent: OpenTK.Core.Platform.Scancode - langs: - - csharp - - vb - name: O - nameWithType: Scancode.O - fullName: OpenTK.Core.Platform.Scancode.O - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Scancode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: O - path: opentk/src/OpenTK.Core/Platform/Enums/Scancode.cs - startLine: 16 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: O = 15 - return: - type: OpenTK.Core.Platform.Scancode -- uid: OpenTK.Core.Platform.Scancode.P - commentId: F:OpenTK.Core.Platform.Scancode.P - id: P - parent: OpenTK.Core.Platform.Scancode - langs: - - csharp - - vb - name: P - nameWithType: Scancode.P - fullName: OpenTK.Core.Platform.Scancode.P - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Scancode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: P - path: opentk/src/OpenTK.Core/Platform/Enums/Scancode.cs - startLine: 16 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: P = 16 - return: - type: OpenTK.Core.Platform.Scancode -- uid: OpenTK.Core.Platform.Scancode.Q - commentId: F:OpenTK.Core.Platform.Scancode.Q - id: Q - parent: OpenTK.Core.Platform.Scancode - langs: - - csharp - - vb - name: Q - nameWithType: Scancode.Q - fullName: OpenTK.Core.Platform.Scancode.Q - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Scancode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Q - path: opentk/src/OpenTK.Core/Platform/Enums/Scancode.cs - startLine: 16 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: Q = 17 - return: - type: OpenTK.Core.Platform.Scancode -- uid: OpenTK.Core.Platform.Scancode.R - commentId: F:OpenTK.Core.Platform.Scancode.R - id: R - parent: OpenTK.Core.Platform.Scancode - langs: - - csharp - - vb - name: R - nameWithType: Scancode.R - fullName: OpenTK.Core.Platform.Scancode.R - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Scancode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: R - path: opentk/src/OpenTK.Core/Platform/Enums/Scancode.cs - startLine: 16 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: R = 18 - return: - type: OpenTK.Core.Platform.Scancode -- uid: OpenTK.Core.Platform.Scancode.S - commentId: F:OpenTK.Core.Platform.Scancode.S - id: S - parent: OpenTK.Core.Platform.Scancode - langs: - - csharp - - vb - name: S - nameWithType: Scancode.S - fullName: OpenTK.Core.Platform.Scancode.S - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Scancode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: S - path: opentk/src/OpenTK.Core/Platform/Enums/Scancode.cs - startLine: 16 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: S = 19 - return: - type: OpenTK.Core.Platform.Scancode -- uid: OpenTK.Core.Platform.Scancode.T - commentId: F:OpenTK.Core.Platform.Scancode.T - id: T - parent: OpenTK.Core.Platform.Scancode - langs: - - csharp - - vb - name: T - nameWithType: Scancode.T - fullName: OpenTK.Core.Platform.Scancode.T - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Scancode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: T - path: opentk/src/OpenTK.Core/Platform/Enums/Scancode.cs - startLine: 16 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: T = 20 - return: - type: OpenTK.Core.Platform.Scancode -- uid: OpenTK.Core.Platform.Scancode.U - commentId: F:OpenTK.Core.Platform.Scancode.U - id: U - parent: OpenTK.Core.Platform.Scancode - langs: - - csharp - - vb - name: U - nameWithType: Scancode.U - fullName: OpenTK.Core.Platform.Scancode.U - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Scancode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: U - path: opentk/src/OpenTK.Core/Platform/Enums/Scancode.cs - startLine: 16 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: U = 21 - return: - type: OpenTK.Core.Platform.Scancode -- uid: OpenTK.Core.Platform.Scancode.V - commentId: F:OpenTK.Core.Platform.Scancode.V - id: V - parent: OpenTK.Core.Platform.Scancode - langs: - - csharp - - vb - name: V - nameWithType: Scancode.V - fullName: OpenTK.Core.Platform.Scancode.V - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Scancode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: V - path: opentk/src/OpenTK.Core/Platform/Enums/Scancode.cs - startLine: 16 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: V = 22 - return: - type: OpenTK.Core.Platform.Scancode -- uid: OpenTK.Core.Platform.Scancode.W - commentId: F:OpenTK.Core.Platform.Scancode.W - id: W - parent: OpenTK.Core.Platform.Scancode - langs: - - csharp - - vb - name: W - nameWithType: Scancode.W - fullName: OpenTK.Core.Platform.Scancode.W - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Scancode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: W - path: opentk/src/OpenTK.Core/Platform/Enums/Scancode.cs - startLine: 16 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: W = 23 - return: - type: OpenTK.Core.Platform.Scancode -- uid: OpenTK.Core.Platform.Scancode.X - commentId: F:OpenTK.Core.Platform.Scancode.X - id: X - parent: OpenTK.Core.Platform.Scancode - langs: - - csharp - - vb - name: X - nameWithType: Scancode.X - fullName: OpenTK.Core.Platform.Scancode.X - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Scancode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: X - path: opentk/src/OpenTK.Core/Platform/Enums/Scancode.cs - startLine: 16 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: X = 24 - return: - type: OpenTK.Core.Platform.Scancode -- uid: OpenTK.Core.Platform.Scancode.Y - commentId: F:OpenTK.Core.Platform.Scancode.Y - id: Y - parent: OpenTK.Core.Platform.Scancode - langs: - - csharp - - vb - name: Y - nameWithType: Scancode.Y - fullName: OpenTK.Core.Platform.Scancode.Y - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Scancode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Y - path: opentk/src/OpenTK.Core/Platform/Enums/Scancode.cs - startLine: 16 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: Y = 25 - return: - type: OpenTK.Core.Platform.Scancode -- uid: OpenTK.Core.Platform.Scancode.Z - commentId: F:OpenTK.Core.Platform.Scancode.Z - id: Z - parent: OpenTK.Core.Platform.Scancode - langs: - - csharp - - vb - name: Z - nameWithType: Scancode.Z - fullName: OpenTK.Core.Platform.Scancode.Z - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Scancode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Z - path: opentk/src/OpenTK.Core/Platform/Enums/Scancode.cs - startLine: 16 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: Z = 26 - return: - type: OpenTK.Core.Platform.Scancode -- uid: OpenTK.Core.Platform.Scancode.D1 - commentId: F:OpenTK.Core.Platform.Scancode.D1 - id: D1 - parent: OpenTK.Core.Platform.Scancode - langs: - - csharp - - vb - name: D1 - nameWithType: Scancode.D1 - fullName: OpenTK.Core.Platform.Scancode.D1 - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Scancode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: D1 - path: opentk/src/OpenTK.Core/Platform/Enums/Scancode.cs - startLine: 18 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: D1 = 27 - return: - type: OpenTK.Core.Platform.Scancode -- uid: OpenTK.Core.Platform.Scancode.D2 - commentId: F:OpenTK.Core.Platform.Scancode.D2 - id: D2 - parent: OpenTK.Core.Platform.Scancode - langs: - - csharp - - vb - name: D2 - nameWithType: Scancode.D2 - fullName: OpenTK.Core.Platform.Scancode.D2 - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Scancode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: D2 - path: opentk/src/OpenTK.Core/Platform/Enums/Scancode.cs - startLine: 18 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: D2 = 28 - return: - type: OpenTK.Core.Platform.Scancode -- uid: OpenTK.Core.Platform.Scancode.D3 - commentId: F:OpenTK.Core.Platform.Scancode.D3 - id: D3 - parent: OpenTK.Core.Platform.Scancode - langs: - - csharp - - vb - name: D3 - nameWithType: Scancode.D3 - fullName: OpenTK.Core.Platform.Scancode.D3 - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Scancode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: D3 - path: opentk/src/OpenTK.Core/Platform/Enums/Scancode.cs - startLine: 18 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: D3 = 29 - return: - type: OpenTK.Core.Platform.Scancode -- uid: OpenTK.Core.Platform.Scancode.D4 - commentId: F:OpenTK.Core.Platform.Scancode.D4 - id: D4 - parent: OpenTK.Core.Platform.Scancode - langs: - - csharp - - vb - name: D4 - nameWithType: Scancode.D4 - fullName: OpenTK.Core.Platform.Scancode.D4 - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Scancode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: D4 - path: opentk/src/OpenTK.Core/Platform/Enums/Scancode.cs - startLine: 18 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: D4 = 30 - return: - type: OpenTK.Core.Platform.Scancode -- uid: OpenTK.Core.Platform.Scancode.D5 - commentId: F:OpenTK.Core.Platform.Scancode.D5 - id: D5 - parent: OpenTK.Core.Platform.Scancode - langs: - - csharp - - vb - name: D5 - nameWithType: Scancode.D5 - fullName: OpenTK.Core.Platform.Scancode.D5 - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Scancode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: D5 - path: opentk/src/OpenTK.Core/Platform/Enums/Scancode.cs - startLine: 18 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: D5 = 31 - return: - type: OpenTK.Core.Platform.Scancode -- uid: OpenTK.Core.Platform.Scancode.D6 - commentId: F:OpenTK.Core.Platform.Scancode.D6 - id: D6 - parent: OpenTK.Core.Platform.Scancode - langs: - - csharp - - vb - name: D6 - nameWithType: Scancode.D6 - fullName: OpenTK.Core.Platform.Scancode.D6 - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Scancode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: D6 - path: opentk/src/OpenTK.Core/Platform/Enums/Scancode.cs - startLine: 18 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: D6 = 32 - return: - type: OpenTK.Core.Platform.Scancode -- uid: OpenTK.Core.Platform.Scancode.D7 - commentId: F:OpenTK.Core.Platform.Scancode.D7 - id: D7 - parent: OpenTK.Core.Platform.Scancode - langs: - - csharp - - vb - name: D7 - nameWithType: Scancode.D7 - fullName: OpenTK.Core.Platform.Scancode.D7 - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Scancode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: D7 - path: opentk/src/OpenTK.Core/Platform/Enums/Scancode.cs - startLine: 18 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: D7 = 33 - return: - type: OpenTK.Core.Platform.Scancode -- uid: OpenTK.Core.Platform.Scancode.D8 - commentId: F:OpenTK.Core.Platform.Scancode.D8 - id: D8 - parent: OpenTK.Core.Platform.Scancode - langs: - - csharp - - vb - name: D8 - nameWithType: Scancode.D8 - fullName: OpenTK.Core.Platform.Scancode.D8 - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Scancode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: D8 - path: opentk/src/OpenTK.Core/Platform/Enums/Scancode.cs - startLine: 18 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: D8 = 34 - return: - type: OpenTK.Core.Platform.Scancode -- uid: OpenTK.Core.Platform.Scancode.D9 - commentId: F:OpenTK.Core.Platform.Scancode.D9 - id: D9 - parent: OpenTK.Core.Platform.Scancode - langs: - - csharp - - vb - name: D9 - nameWithType: Scancode.D9 - fullName: OpenTK.Core.Platform.Scancode.D9 - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Scancode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: D9 - path: opentk/src/OpenTK.Core/Platform/Enums/Scancode.cs - startLine: 18 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: D9 = 35 - return: - type: OpenTK.Core.Platform.Scancode -- uid: OpenTK.Core.Platform.Scancode.D0 - commentId: F:OpenTK.Core.Platform.Scancode.D0 - id: D0 - parent: OpenTK.Core.Platform.Scancode - langs: - - csharp - - vb - name: D0 - nameWithType: Scancode.D0 - fullName: OpenTK.Core.Platform.Scancode.D0 - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Scancode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: D0 - path: opentk/src/OpenTK.Core/Platform/Enums/Scancode.cs - startLine: 18 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: D0 = 36 - return: - type: OpenTK.Core.Platform.Scancode -- uid: OpenTK.Core.Platform.Scancode.Return - commentId: F:OpenTK.Core.Platform.Scancode.Return - id: Return - parent: OpenTK.Core.Platform.Scancode - langs: - - csharp - - vb - name: Return - nameWithType: Scancode.Return - fullName: OpenTK.Core.Platform.Scancode.Return - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Scancode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Return - path: opentk/src/OpenTK.Core/Platform/Enums/Scancode.cs - startLine: 20 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: Return = 37 - return: - type: OpenTK.Core.Platform.Scancode -- uid: OpenTK.Core.Platform.Scancode.Escape - commentId: F:OpenTK.Core.Platform.Scancode.Escape - id: Escape - parent: OpenTK.Core.Platform.Scancode - langs: - - csharp - - vb - name: Escape - nameWithType: Scancode.Escape - fullName: OpenTK.Core.Platform.Scancode.Escape - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Scancode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Escape - path: opentk/src/OpenTK.Core/Platform/Enums/Scancode.cs - startLine: 21 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: Escape = 38 - return: - type: OpenTK.Core.Platform.Scancode -- uid: OpenTK.Core.Platform.Scancode.Backspace - commentId: F:OpenTK.Core.Platform.Scancode.Backspace - id: Backspace - parent: OpenTK.Core.Platform.Scancode - langs: - - csharp - - vb - name: Backspace - nameWithType: Scancode.Backspace - fullName: OpenTK.Core.Platform.Scancode.Backspace - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Scancode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Backspace - path: opentk/src/OpenTK.Core/Platform/Enums/Scancode.cs - startLine: 24 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Delete. - example: [] - syntax: - content: Backspace = 39 - return: - type: OpenTK.Core.Platform.Scancode -- uid: OpenTK.Core.Platform.Scancode.Tab - commentId: F:OpenTK.Core.Platform.Scancode.Tab - id: Tab - parent: OpenTK.Core.Platform.Scancode - langs: - - csharp - - vb - name: Tab - nameWithType: Scancode.Tab - fullName: OpenTK.Core.Platform.Scancode.Tab - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Scancode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Tab - path: opentk/src/OpenTK.Core/Platform/Enums/Scancode.cs - startLine: 25 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: Tab = 40 - return: - type: OpenTK.Core.Platform.Scancode -- uid: OpenTK.Core.Platform.Scancode.Spacebar - commentId: F:OpenTK.Core.Platform.Scancode.Spacebar - id: Spacebar - parent: OpenTK.Core.Platform.Scancode - langs: - - csharp - - vb - name: Spacebar - nameWithType: Scancode.Spacebar - fullName: OpenTK.Core.Platform.Scancode.Spacebar - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Scancode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Spacebar - path: opentk/src/OpenTK.Core/Platform/Enums/Scancode.cs - startLine: 26 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: Spacebar = 41 - return: - type: OpenTK.Core.Platform.Scancode -- uid: OpenTK.Core.Platform.Scancode.Dash - commentId: F:OpenTK.Core.Platform.Scancode.Dash - id: Dash - parent: OpenTK.Core.Platform.Scancode - langs: - - csharp - - vb - name: Dash - nameWithType: Scancode.Dash - fullName: OpenTK.Core.Platform.Scancode.Dash - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Scancode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Dash - path: opentk/src/OpenTK.Core/Platform/Enums/Scancode.cs - startLine: 29 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Dash and Underscore. - example: [] - syntax: - content: Dash = 42 - return: - type: OpenTK.Core.Platform.Scancode -- uid: OpenTK.Core.Platform.Scancode.Equals - commentId: F:OpenTK.Core.Platform.Scancode.Equals - id: Equals - parent: OpenTK.Core.Platform.Scancode - langs: - - csharp - - vb - name: Equals - nameWithType: Scancode.Equals - fullName: OpenTK.Core.Platform.Scancode.Equals - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Scancode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Equals - path: opentk/src/OpenTK.Core/Platform/Enums/Scancode.cs - startLine: 30 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: Equals = 43 - return: - type: OpenTK.Core.Platform.Scancode -- uid: OpenTK.Core.Platform.Scancode.LeftBrace - commentId: F:OpenTK.Core.Platform.Scancode.LeftBrace - id: LeftBrace - parent: OpenTK.Core.Platform.Scancode - langs: - - csharp - - vb - name: LeftBrace - nameWithType: Scancode.LeftBrace - fullName: OpenTK.Core.Platform.Scancode.LeftBrace - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Scancode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: LeftBrace - path: opentk/src/OpenTK.Core/Platform/Enums/Scancode.cs - startLine: 31 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: LeftBrace = 44 - return: - type: OpenTK.Core.Platform.Scancode -- uid: OpenTK.Core.Platform.Scancode.RightBrace - commentId: F:OpenTK.Core.Platform.Scancode.RightBrace - id: RightBrace - parent: OpenTK.Core.Platform.Scancode - langs: - - csharp - - vb - name: RightBrace - nameWithType: Scancode.RightBrace - fullName: OpenTK.Core.Platform.Scancode.RightBrace - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Scancode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: RightBrace - path: opentk/src/OpenTK.Core/Platform/Enums/Scancode.cs - startLine: 32 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: RightBrace = 45 - return: - type: OpenTK.Core.Platform.Scancode -- uid: OpenTK.Core.Platform.Scancode.Pipe - commentId: F:OpenTK.Core.Platform.Scancode.Pipe - id: Pipe - parent: OpenTK.Core.Platform.Scancode - langs: - - csharp - - vb - name: Pipe - nameWithType: Scancode.Pipe - fullName: OpenTK.Core.Platform.Scancode.Pipe - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Scancode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Pipe - path: opentk/src/OpenTK.Core/Platform/Enums/Scancode.cs - startLine: 35 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Pipe and Slash, NonUS. - example: [] - syntax: - content: Pipe = 46 - return: - type: OpenTK.Core.Platform.Scancode -- uid: OpenTK.Core.Platform.Scancode.SemiColon - commentId: F:OpenTK.Core.Platform.Scancode.SemiColon - id: SemiColon - parent: OpenTK.Core.Platform.Scancode - langs: - - csharp - - vb - name: SemiColon - nameWithType: Scancode.SemiColon - fullName: OpenTK.Core.Platform.Scancode.SemiColon - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Scancode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: SemiColon - path: opentk/src/OpenTK.Core/Platform/Enums/Scancode.cs - startLine: 36 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: SemiColon = 47 - return: - type: OpenTK.Core.Platform.Scancode -- uid: OpenTK.Core.Platform.Scancode.LeftApostrophe - commentId: F:OpenTK.Core.Platform.Scancode.LeftApostrophe - id: LeftApostrophe - parent: OpenTK.Core.Platform.Scancode - langs: - - csharp - - vb - name: LeftApostrophe - nameWithType: Scancode.LeftApostrophe - fullName: OpenTK.Core.Platform.Scancode.LeftApostrophe - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Scancode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: LeftApostrophe - path: opentk/src/OpenTK.Core/Platform/Enums/Scancode.cs - startLine: 38 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: LeftApostrophe = 48 - return: - type: OpenTK.Core.Platform.Scancode -- uid: OpenTK.Core.Platform.Scancode.GraveAccent - commentId: F:OpenTK.Core.Platform.Scancode.GraveAccent - id: GraveAccent - parent: OpenTK.Core.Platform.Scancode - langs: - - csharp - - vb - name: GraveAccent - nameWithType: Scancode.GraveAccent - fullName: OpenTK.Core.Platform.Scancode.GraveAccent - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Scancode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: GraveAccent - path: opentk/src/OpenTK.Core/Platform/Enums/Scancode.cs - startLine: 39 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: GraveAccent = 49 - return: - type: OpenTK.Core.Platform.Scancode -- uid: OpenTK.Core.Platform.Scancode.Comma - commentId: F:OpenTK.Core.Platform.Scancode.Comma - id: Comma - parent: OpenTK.Core.Platform.Scancode - langs: - - csharp - - vb - name: Comma - nameWithType: Scancode.Comma - fullName: OpenTK.Core.Platform.Scancode.Comma - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Scancode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Comma - path: opentk/src/OpenTK.Core/Platform/Enums/Scancode.cs - startLine: 40 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: Comma = 50 - return: - type: OpenTK.Core.Platform.Scancode -- uid: OpenTK.Core.Platform.Scancode.Period - commentId: F:OpenTK.Core.Platform.Scancode.Period - id: Period - parent: OpenTK.Core.Platform.Scancode - langs: - - csharp - - vb - name: Period - nameWithType: Scancode.Period - fullName: OpenTK.Core.Platform.Scancode.Period - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Scancode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Period - path: opentk/src/OpenTK.Core/Platform/Enums/Scancode.cs - startLine: 41 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: Period = 51 - return: - type: OpenTK.Core.Platform.Scancode -- uid: OpenTK.Core.Platform.Scancode.QuestionMark - commentId: F:OpenTK.Core.Platform.Scancode.QuestionMark - id: QuestionMark - parent: OpenTK.Core.Platform.Scancode - langs: - - csharp - - vb - name: QuestionMark - nameWithType: Scancode.QuestionMark - fullName: OpenTK.Core.Platform.Scancode.QuestionMark - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Scancode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: QuestionMark - path: opentk/src/OpenTK.Core/Platform/Enums/Scancode.cs - startLine: 43 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: QuestionMark = 52 - return: - type: OpenTK.Core.Platform.Scancode -- uid: OpenTK.Core.Platform.Scancode.CapsLock - commentId: F:OpenTK.Core.Platform.Scancode.CapsLock - id: CapsLock - parent: OpenTK.Core.Platform.Scancode - langs: - - csharp - - vb - name: CapsLock - nameWithType: Scancode.CapsLock - fullName: OpenTK.Core.Platform.Scancode.CapsLock - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Scancode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: CapsLock - path: opentk/src/OpenTK.Core/Platform/Enums/Scancode.cs - startLine: 44 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: CapsLock = 53 - return: - type: OpenTK.Core.Platform.Scancode -- uid: OpenTK.Core.Platform.Scancode.F1 - commentId: F:OpenTK.Core.Platform.Scancode.F1 - id: F1 - parent: OpenTK.Core.Platform.Scancode - langs: - - csharp - - vb - name: F1 - nameWithType: Scancode.F1 - fullName: OpenTK.Core.Platform.Scancode.F1 - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Scancode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: F1 - path: opentk/src/OpenTK.Core/Platform/Enums/Scancode.cs - startLine: 45 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: F1 = 54 - return: - type: OpenTK.Core.Platform.Scancode -- uid: OpenTK.Core.Platform.Scancode.F2 - commentId: F:OpenTK.Core.Platform.Scancode.F2 - id: F2 - parent: OpenTK.Core.Platform.Scancode - langs: - - csharp - - vb - name: F2 - nameWithType: Scancode.F2 - fullName: OpenTK.Core.Platform.Scancode.F2 - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Scancode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: F2 - path: opentk/src/OpenTK.Core/Platform/Enums/Scancode.cs - startLine: 45 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: F2 = 55 - return: - type: OpenTK.Core.Platform.Scancode -- uid: OpenTK.Core.Platform.Scancode.F3 - commentId: F:OpenTK.Core.Platform.Scancode.F3 - id: F3 - parent: OpenTK.Core.Platform.Scancode - langs: - - csharp - - vb - name: F3 - nameWithType: Scancode.F3 - fullName: OpenTK.Core.Platform.Scancode.F3 - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Scancode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: F3 - path: opentk/src/OpenTK.Core/Platform/Enums/Scancode.cs - startLine: 45 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: F3 = 56 - return: - type: OpenTK.Core.Platform.Scancode -- uid: OpenTK.Core.Platform.Scancode.F4 - commentId: F:OpenTK.Core.Platform.Scancode.F4 - id: F4 - parent: OpenTK.Core.Platform.Scancode - langs: - - csharp - - vb - name: F4 - nameWithType: Scancode.F4 - fullName: OpenTK.Core.Platform.Scancode.F4 - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Scancode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: F4 - path: opentk/src/OpenTK.Core/Platform/Enums/Scancode.cs - startLine: 45 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: F4 = 57 - return: - type: OpenTK.Core.Platform.Scancode -- uid: OpenTK.Core.Platform.Scancode.F5 - commentId: F:OpenTK.Core.Platform.Scancode.F5 - id: F5 - parent: OpenTK.Core.Platform.Scancode - langs: - - csharp - - vb - name: F5 - nameWithType: Scancode.F5 - fullName: OpenTK.Core.Platform.Scancode.F5 - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Scancode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: F5 - path: opentk/src/OpenTK.Core/Platform/Enums/Scancode.cs - startLine: 45 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: F5 = 58 - return: - type: OpenTK.Core.Platform.Scancode -- uid: OpenTK.Core.Platform.Scancode.F6 - commentId: F:OpenTK.Core.Platform.Scancode.F6 - id: F6 - parent: OpenTK.Core.Platform.Scancode - langs: - - csharp - - vb - name: F6 - nameWithType: Scancode.F6 - fullName: OpenTK.Core.Platform.Scancode.F6 - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Scancode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: F6 - path: opentk/src/OpenTK.Core/Platform/Enums/Scancode.cs - startLine: 45 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: F6 = 59 - return: - type: OpenTK.Core.Platform.Scancode -- uid: OpenTK.Core.Platform.Scancode.F7 - commentId: F:OpenTK.Core.Platform.Scancode.F7 - id: F7 - parent: OpenTK.Core.Platform.Scancode - langs: - - csharp - - vb - name: F7 - nameWithType: Scancode.F7 - fullName: OpenTK.Core.Platform.Scancode.F7 - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Scancode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: F7 - path: opentk/src/OpenTK.Core/Platform/Enums/Scancode.cs - startLine: 45 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: F7 = 60 - return: - type: OpenTK.Core.Platform.Scancode -- uid: OpenTK.Core.Platform.Scancode.F8 - commentId: F:OpenTK.Core.Platform.Scancode.F8 - id: F8 - parent: OpenTK.Core.Platform.Scancode - langs: - - csharp - - vb - name: F8 - nameWithType: Scancode.F8 - fullName: OpenTK.Core.Platform.Scancode.F8 - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Scancode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: F8 - path: opentk/src/OpenTK.Core/Platform/Enums/Scancode.cs - startLine: 45 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: F8 = 61 - return: - type: OpenTK.Core.Platform.Scancode -- uid: OpenTK.Core.Platform.Scancode.F9 - commentId: F:OpenTK.Core.Platform.Scancode.F9 - id: F9 - parent: OpenTK.Core.Platform.Scancode - langs: - - csharp - - vb - name: F9 - nameWithType: Scancode.F9 - fullName: OpenTK.Core.Platform.Scancode.F9 - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Scancode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: F9 - path: opentk/src/OpenTK.Core/Platform/Enums/Scancode.cs - startLine: 45 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: F9 = 62 - return: - type: OpenTK.Core.Platform.Scancode -- uid: OpenTK.Core.Platform.Scancode.F10 - commentId: F:OpenTK.Core.Platform.Scancode.F10 - id: F10 - parent: OpenTK.Core.Platform.Scancode - langs: - - csharp - - vb - name: F10 - nameWithType: Scancode.F10 - fullName: OpenTK.Core.Platform.Scancode.F10 - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Scancode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: F10 - path: opentk/src/OpenTK.Core/Platform/Enums/Scancode.cs - startLine: 45 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: F10 = 63 - return: - type: OpenTK.Core.Platform.Scancode -- uid: OpenTK.Core.Platform.Scancode.F11 - commentId: F:OpenTK.Core.Platform.Scancode.F11 - id: F11 - parent: OpenTK.Core.Platform.Scancode - langs: - - csharp - - vb - name: F11 - nameWithType: Scancode.F11 - fullName: OpenTK.Core.Platform.Scancode.F11 - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Scancode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: F11 - path: opentk/src/OpenTK.Core/Platform/Enums/Scancode.cs - startLine: 45 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: F11 = 64 - return: - type: OpenTK.Core.Platform.Scancode -- uid: OpenTK.Core.Platform.Scancode.F12 - commentId: F:OpenTK.Core.Platform.Scancode.F12 - id: F12 - parent: OpenTK.Core.Platform.Scancode - langs: - - csharp - - vb - name: F12 - nameWithType: Scancode.F12 - fullName: OpenTK.Core.Platform.Scancode.F12 - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Scancode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: F12 - path: opentk/src/OpenTK.Core/Platform/Enums/Scancode.cs - startLine: 45 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: F12 = 65 - return: - type: OpenTK.Core.Platform.Scancode -- uid: OpenTK.Core.Platform.Scancode.F13 - commentId: F:OpenTK.Core.Platform.Scancode.F13 - id: F13 - parent: OpenTK.Core.Platform.Scancode - langs: - - csharp - - vb - name: F13 - nameWithType: Scancode.F13 - fullName: OpenTK.Core.Platform.Scancode.F13 - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Scancode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: F13 - path: opentk/src/OpenTK.Core/Platform/Enums/Scancode.cs - startLine: 46 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: F13 = 66 - return: - type: OpenTK.Core.Platform.Scancode -- uid: OpenTK.Core.Platform.Scancode.F14 - commentId: F:OpenTK.Core.Platform.Scancode.F14 - id: F14 - parent: OpenTK.Core.Platform.Scancode - langs: - - csharp - - vb - name: F14 - nameWithType: Scancode.F14 - fullName: OpenTK.Core.Platform.Scancode.F14 - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Scancode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: F14 - path: opentk/src/OpenTK.Core/Platform/Enums/Scancode.cs - startLine: 46 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: F14 = 67 - return: - type: OpenTK.Core.Platform.Scancode -- uid: OpenTK.Core.Platform.Scancode.F15 - commentId: F:OpenTK.Core.Platform.Scancode.F15 - id: F15 - parent: OpenTK.Core.Platform.Scancode - langs: - - csharp - - vb - name: F15 - nameWithType: Scancode.F15 - fullName: OpenTK.Core.Platform.Scancode.F15 - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Scancode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: F15 - path: opentk/src/OpenTK.Core/Platform/Enums/Scancode.cs - startLine: 46 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: F15 = 68 - return: - type: OpenTK.Core.Platform.Scancode -- uid: OpenTK.Core.Platform.Scancode.F16 - commentId: F:OpenTK.Core.Platform.Scancode.F16 - id: F16 - parent: OpenTK.Core.Platform.Scancode - langs: - - csharp - - vb - name: F16 - nameWithType: Scancode.F16 - fullName: OpenTK.Core.Platform.Scancode.F16 - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Scancode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: F16 - path: opentk/src/OpenTK.Core/Platform/Enums/Scancode.cs - startLine: 46 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: F16 = 69 - return: - type: OpenTK.Core.Platform.Scancode -- uid: OpenTK.Core.Platform.Scancode.F17 - commentId: F:OpenTK.Core.Platform.Scancode.F17 - id: F17 - parent: OpenTK.Core.Platform.Scancode - langs: - - csharp - - vb - name: F17 - nameWithType: Scancode.F17 - fullName: OpenTK.Core.Platform.Scancode.F17 - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Scancode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: F17 - path: opentk/src/OpenTK.Core/Platform/Enums/Scancode.cs - startLine: 46 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: F17 = 70 - return: - type: OpenTK.Core.Platform.Scancode -- uid: OpenTK.Core.Platform.Scancode.F18 - commentId: F:OpenTK.Core.Platform.Scancode.F18 - id: F18 - parent: OpenTK.Core.Platform.Scancode - langs: - - csharp - - vb - name: F18 - nameWithType: Scancode.F18 - fullName: OpenTK.Core.Platform.Scancode.F18 - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Scancode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: F18 - path: opentk/src/OpenTK.Core/Platform/Enums/Scancode.cs - startLine: 46 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: F18 = 71 - return: - type: OpenTK.Core.Platform.Scancode -- uid: OpenTK.Core.Platform.Scancode.F19 - commentId: F:OpenTK.Core.Platform.Scancode.F19 - id: F19 - parent: OpenTK.Core.Platform.Scancode - langs: - - csharp - - vb - name: F19 - nameWithType: Scancode.F19 - fullName: OpenTK.Core.Platform.Scancode.F19 - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Scancode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: F19 - path: opentk/src/OpenTK.Core/Platform/Enums/Scancode.cs - startLine: 46 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: F19 = 72 - return: - type: OpenTK.Core.Platform.Scancode -- uid: OpenTK.Core.Platform.Scancode.F20 - commentId: F:OpenTK.Core.Platform.Scancode.F20 - id: F20 - parent: OpenTK.Core.Platform.Scancode - langs: - - csharp - - vb - name: F20 - nameWithType: Scancode.F20 - fullName: OpenTK.Core.Platform.Scancode.F20 - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Scancode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: F20 - path: opentk/src/OpenTK.Core/Platform/Enums/Scancode.cs - startLine: 46 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: F20 = 73 - return: - type: OpenTK.Core.Platform.Scancode -- uid: OpenTK.Core.Platform.Scancode.F21 - commentId: F:OpenTK.Core.Platform.Scancode.F21 - id: F21 - parent: OpenTK.Core.Platform.Scancode - langs: - - csharp - - vb - name: F21 - nameWithType: Scancode.F21 - fullName: OpenTK.Core.Platform.Scancode.F21 - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Scancode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: F21 - path: opentk/src/OpenTK.Core/Platform/Enums/Scancode.cs - startLine: 46 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: F21 = 74 - return: - type: OpenTK.Core.Platform.Scancode -- uid: OpenTK.Core.Platform.Scancode.F22 - commentId: F:OpenTK.Core.Platform.Scancode.F22 - id: F22 - parent: OpenTK.Core.Platform.Scancode - langs: - - csharp - - vb - name: F22 - nameWithType: Scancode.F22 - fullName: OpenTK.Core.Platform.Scancode.F22 - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Scancode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: F22 - path: opentk/src/OpenTK.Core/Platform/Enums/Scancode.cs - startLine: 46 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: F22 = 75 - return: - type: OpenTK.Core.Platform.Scancode -- uid: OpenTK.Core.Platform.Scancode.F23 - commentId: F:OpenTK.Core.Platform.Scancode.F23 - id: F23 - parent: OpenTK.Core.Platform.Scancode - langs: - - csharp - - vb - name: F23 - nameWithType: Scancode.F23 - fullName: OpenTK.Core.Platform.Scancode.F23 - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Scancode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: F23 - path: opentk/src/OpenTK.Core/Platform/Enums/Scancode.cs - startLine: 46 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: F23 = 76 - return: - type: OpenTK.Core.Platform.Scancode -- uid: OpenTK.Core.Platform.Scancode.F24 - commentId: F:OpenTK.Core.Platform.Scancode.F24 - id: F24 - parent: OpenTK.Core.Platform.Scancode - langs: - - csharp - - vb - name: F24 - nameWithType: Scancode.F24 - fullName: OpenTK.Core.Platform.Scancode.F24 - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Scancode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: F24 - path: opentk/src/OpenTK.Core/Platform/Enums/Scancode.cs - startLine: 46 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: F24 = 77 - return: - type: OpenTK.Core.Platform.Scancode -- uid: OpenTK.Core.Platform.Scancode.PrintScreen - commentId: F:OpenTK.Core.Platform.Scancode.PrintScreen - id: PrintScreen - parent: OpenTK.Core.Platform.Scancode - langs: - - csharp - - vb - name: PrintScreen - nameWithType: Scancode.PrintScreen - fullName: OpenTK.Core.Platform.Scancode.PrintScreen - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Scancode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: PrintScreen - path: opentk/src/OpenTK.Core/Platform/Enums/Scancode.cs - startLine: 49 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: PrintScreen = 78 - return: - type: OpenTK.Core.Platform.Scancode -- uid: OpenTK.Core.Platform.Scancode.ScrollLock - commentId: F:OpenTK.Core.Platform.Scancode.ScrollLock - id: ScrollLock - parent: OpenTK.Core.Platform.Scancode - langs: - - csharp - - vb - name: ScrollLock - nameWithType: Scancode.ScrollLock - fullName: OpenTK.Core.Platform.Scancode.ScrollLock - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Scancode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: ScrollLock - path: opentk/src/OpenTK.Core/Platform/Enums/Scancode.cs - startLine: 50 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: ScrollLock = 79 - return: - type: OpenTK.Core.Platform.Scancode -- uid: OpenTK.Core.Platform.Scancode.Pause - commentId: F:OpenTK.Core.Platform.Scancode.Pause - id: Pause - parent: OpenTK.Core.Platform.Scancode - langs: - - csharp - - vb - name: Pause - nameWithType: Scancode.Pause - fullName: OpenTK.Core.Platform.Scancode.Pause - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Scancode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Pause - path: opentk/src/OpenTK.Core/Platform/Enums/Scancode.cs - startLine: 51 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: Pause = 80 - return: - type: OpenTK.Core.Platform.Scancode -- uid: OpenTK.Core.Platform.Scancode.Insert - commentId: F:OpenTK.Core.Platform.Scancode.Insert - id: Insert - parent: OpenTK.Core.Platform.Scancode - langs: - - csharp - - vb - name: Insert - nameWithType: Scancode.Insert - fullName: OpenTK.Core.Platform.Scancode.Insert - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Scancode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Insert - path: opentk/src/OpenTK.Core/Platform/Enums/Scancode.cs - startLine: 52 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: Insert = 81 - return: - type: OpenTK.Core.Platform.Scancode -- uid: OpenTK.Core.Platform.Scancode.Home - commentId: F:OpenTK.Core.Platform.Scancode.Home - id: Home - parent: OpenTK.Core.Platform.Scancode - langs: - - csharp - - vb - name: Home - nameWithType: Scancode.Home - fullName: OpenTK.Core.Platform.Scancode.Home - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Scancode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Home - path: opentk/src/OpenTK.Core/Platform/Enums/Scancode.cs - startLine: 53 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: Home = 82 - return: - type: OpenTK.Core.Platform.Scancode -- uid: OpenTK.Core.Platform.Scancode.PageUp - commentId: F:OpenTK.Core.Platform.Scancode.PageUp - id: PageUp - parent: OpenTK.Core.Platform.Scancode - langs: - - csharp - - vb - name: PageUp - nameWithType: Scancode.PageUp - fullName: OpenTK.Core.Platform.Scancode.PageUp - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Scancode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: PageUp - path: opentk/src/OpenTK.Core/Platform/Enums/Scancode.cs - startLine: 54 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: PageUp = 83 - return: - type: OpenTK.Core.Platform.Scancode -- uid: OpenTK.Core.Platform.Scancode.Delete - commentId: F:OpenTK.Core.Platform.Scancode.Delete - id: Delete - parent: OpenTK.Core.Platform.Scancode - langs: - - csharp - - vb - name: Delete - nameWithType: Scancode.Delete - fullName: OpenTK.Core.Platform.Scancode.Delete - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Scancode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Delete - path: opentk/src/OpenTK.Core/Platform/Enums/Scancode.cs - startLine: 55 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: Delete = 84 - return: - type: OpenTK.Core.Platform.Scancode -- uid: OpenTK.Core.Platform.Scancode.End - commentId: F:OpenTK.Core.Platform.Scancode.End - id: End - parent: OpenTK.Core.Platform.Scancode - langs: - - csharp - - vb - name: End - nameWithType: Scancode.End - fullName: OpenTK.Core.Platform.Scancode.End - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Scancode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: End - path: opentk/src/OpenTK.Core/Platform/Enums/Scancode.cs - startLine: 56 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: End = 85 - return: - type: OpenTK.Core.Platform.Scancode -- uid: OpenTK.Core.Platform.Scancode.PageDown - commentId: F:OpenTK.Core.Platform.Scancode.PageDown - id: PageDown - parent: OpenTK.Core.Platform.Scancode - langs: - - csharp - - vb - name: PageDown - nameWithType: Scancode.PageDown - fullName: OpenTK.Core.Platform.Scancode.PageDown - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Scancode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: PageDown - path: opentk/src/OpenTK.Core/Platform/Enums/Scancode.cs - startLine: 57 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: PageDown = 86 - return: - type: OpenTK.Core.Platform.Scancode -- uid: OpenTK.Core.Platform.Scancode.RightArrow - commentId: F:OpenTK.Core.Platform.Scancode.RightArrow - id: RightArrow - parent: OpenTK.Core.Platform.Scancode - langs: - - csharp - - vb - name: RightArrow - nameWithType: Scancode.RightArrow - fullName: OpenTK.Core.Platform.Scancode.RightArrow - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Scancode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: RightArrow - path: opentk/src/OpenTK.Core/Platform/Enums/Scancode.cs - startLine: 58 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: RightArrow = 87 - return: - type: OpenTK.Core.Platform.Scancode -- uid: OpenTK.Core.Platform.Scancode.LeftArrow - commentId: F:OpenTK.Core.Platform.Scancode.LeftArrow - id: LeftArrow - parent: OpenTK.Core.Platform.Scancode - langs: - - csharp - - vb - name: LeftArrow - nameWithType: Scancode.LeftArrow - fullName: OpenTK.Core.Platform.Scancode.LeftArrow - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Scancode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: LeftArrow - path: opentk/src/OpenTK.Core/Platform/Enums/Scancode.cs - startLine: 59 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: LeftArrow = 88 - return: - type: OpenTK.Core.Platform.Scancode -- uid: OpenTK.Core.Platform.Scancode.DownArrow - commentId: F:OpenTK.Core.Platform.Scancode.DownArrow - id: DownArrow - parent: OpenTK.Core.Platform.Scancode - langs: - - csharp - - vb - name: DownArrow - nameWithType: Scancode.DownArrow - fullName: OpenTK.Core.Platform.Scancode.DownArrow - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Scancode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: DownArrow - path: opentk/src/OpenTK.Core/Platform/Enums/Scancode.cs - startLine: 60 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: DownArrow = 89 - return: - type: OpenTK.Core.Platform.Scancode -- uid: OpenTK.Core.Platform.Scancode.UpArrow - commentId: F:OpenTK.Core.Platform.Scancode.UpArrow - id: UpArrow - parent: OpenTK.Core.Platform.Scancode - langs: - - csharp - - vb - name: UpArrow - nameWithType: Scancode.UpArrow - fullName: OpenTK.Core.Platform.Scancode.UpArrow - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Scancode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: UpArrow - path: opentk/src/OpenTK.Core/Platform/Enums/Scancode.cs - startLine: 61 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: UpArrow = 90 - return: - type: OpenTK.Core.Platform.Scancode -- uid: OpenTK.Core.Platform.Scancode.NumLock - commentId: F:OpenTK.Core.Platform.Scancode.NumLock - id: NumLock - parent: OpenTK.Core.Platform.Scancode - langs: - - csharp - - vb - name: NumLock - nameWithType: Scancode.NumLock - fullName: OpenTK.Core.Platform.Scancode.NumLock - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Scancode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: NumLock - path: opentk/src/OpenTK.Core/Platform/Enums/Scancode.cs - startLine: 62 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: NumLock = 91 - return: - type: OpenTK.Core.Platform.Scancode -- uid: OpenTK.Core.Platform.Scancode.KeypadEnter - commentId: F:OpenTK.Core.Platform.Scancode.KeypadEnter - id: KeypadEnter - parent: OpenTK.Core.Platform.Scancode - langs: - - csharp - - vb - name: KeypadEnter - nameWithType: Scancode.KeypadEnter - fullName: OpenTK.Core.Platform.Scancode.KeypadEnter - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Scancode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: KeypadEnter - path: opentk/src/OpenTK.Core/Platform/Enums/Scancode.cs - startLine: 63 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: KeypadEnter = 92 - return: - type: OpenTK.Core.Platform.Scancode -- uid: OpenTK.Core.Platform.Scancode.Keypad1 - commentId: F:OpenTK.Core.Platform.Scancode.Keypad1 - id: Keypad1 - parent: OpenTK.Core.Platform.Scancode - langs: - - csharp - - vb - name: Keypad1 - nameWithType: Scancode.Keypad1 - fullName: OpenTK.Core.Platform.Scancode.Keypad1 - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Scancode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Keypad1 - path: opentk/src/OpenTK.Core/Platform/Enums/Scancode.cs - startLine: 64 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: Keypad1 = 93 - return: - type: OpenTK.Core.Platform.Scancode -- uid: OpenTK.Core.Platform.Scancode.Keypad2 - commentId: F:OpenTK.Core.Platform.Scancode.Keypad2 - id: Keypad2 - parent: OpenTK.Core.Platform.Scancode - langs: - - csharp - - vb - name: Keypad2 - nameWithType: Scancode.Keypad2 - fullName: OpenTK.Core.Platform.Scancode.Keypad2 - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Scancode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Keypad2 - path: opentk/src/OpenTK.Core/Platform/Enums/Scancode.cs - startLine: 64 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: Keypad2 = 94 - return: - type: OpenTK.Core.Platform.Scancode -- uid: OpenTK.Core.Platform.Scancode.Keypad3 - commentId: F:OpenTK.Core.Platform.Scancode.Keypad3 - id: Keypad3 - parent: OpenTK.Core.Platform.Scancode - langs: - - csharp - - vb - name: Keypad3 - nameWithType: Scancode.Keypad3 - fullName: OpenTK.Core.Platform.Scancode.Keypad3 - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Scancode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Keypad3 - path: opentk/src/OpenTK.Core/Platform/Enums/Scancode.cs - startLine: 64 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: Keypad3 = 95 - return: - type: OpenTK.Core.Platform.Scancode -- uid: OpenTK.Core.Platform.Scancode.Keypad4 - commentId: F:OpenTK.Core.Platform.Scancode.Keypad4 - id: Keypad4 - parent: OpenTK.Core.Platform.Scancode - langs: - - csharp - - vb - name: Keypad4 - nameWithType: Scancode.Keypad4 - fullName: OpenTK.Core.Platform.Scancode.Keypad4 - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Scancode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Keypad4 - path: opentk/src/OpenTK.Core/Platform/Enums/Scancode.cs - startLine: 64 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: Keypad4 = 96 - return: - type: OpenTK.Core.Platform.Scancode -- uid: OpenTK.Core.Platform.Scancode.Keypad5 - commentId: F:OpenTK.Core.Platform.Scancode.Keypad5 - id: Keypad5 - parent: OpenTK.Core.Platform.Scancode - langs: - - csharp - - vb - name: Keypad5 - nameWithType: Scancode.Keypad5 - fullName: OpenTK.Core.Platform.Scancode.Keypad5 - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Scancode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Keypad5 - path: opentk/src/OpenTK.Core/Platform/Enums/Scancode.cs - startLine: 64 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: Keypad5 = 97 - return: - type: OpenTK.Core.Platform.Scancode -- uid: OpenTK.Core.Platform.Scancode.Keypad6 - commentId: F:OpenTK.Core.Platform.Scancode.Keypad6 - id: Keypad6 - parent: OpenTK.Core.Platform.Scancode - langs: - - csharp - - vb - name: Keypad6 - nameWithType: Scancode.Keypad6 - fullName: OpenTK.Core.Platform.Scancode.Keypad6 - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Scancode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Keypad6 - path: opentk/src/OpenTK.Core/Platform/Enums/Scancode.cs - startLine: 64 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: Keypad6 = 98 - return: - type: OpenTK.Core.Platform.Scancode -- uid: OpenTK.Core.Platform.Scancode.Keypad7 - commentId: F:OpenTK.Core.Platform.Scancode.Keypad7 - id: Keypad7 - parent: OpenTK.Core.Platform.Scancode - langs: - - csharp - - vb - name: Keypad7 - nameWithType: Scancode.Keypad7 - fullName: OpenTK.Core.Platform.Scancode.Keypad7 - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Scancode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Keypad7 - path: opentk/src/OpenTK.Core/Platform/Enums/Scancode.cs - startLine: 64 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: Keypad7 = 99 - return: - type: OpenTK.Core.Platform.Scancode -- uid: OpenTK.Core.Platform.Scancode.Keypad8 - commentId: F:OpenTK.Core.Platform.Scancode.Keypad8 - id: Keypad8 - parent: OpenTK.Core.Platform.Scancode - langs: - - csharp - - vb - name: Keypad8 - nameWithType: Scancode.Keypad8 - fullName: OpenTK.Core.Platform.Scancode.Keypad8 - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Scancode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Keypad8 - path: opentk/src/OpenTK.Core/Platform/Enums/Scancode.cs - startLine: 64 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: Keypad8 = 100 - return: - type: OpenTK.Core.Platform.Scancode -- uid: OpenTK.Core.Platform.Scancode.Keypad9 - commentId: F:OpenTK.Core.Platform.Scancode.Keypad9 - id: Keypad9 - parent: OpenTK.Core.Platform.Scancode - langs: - - csharp - - vb - name: Keypad9 - nameWithType: Scancode.Keypad9 - fullName: OpenTK.Core.Platform.Scancode.Keypad9 - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Scancode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Keypad9 - path: opentk/src/OpenTK.Core/Platform/Enums/Scancode.cs - startLine: 64 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: Keypad9 = 101 - return: - type: OpenTK.Core.Platform.Scancode -- uid: OpenTK.Core.Platform.Scancode.Keypad0 - commentId: F:OpenTK.Core.Platform.Scancode.Keypad0 - id: Keypad0 - parent: OpenTK.Core.Platform.Scancode - langs: - - csharp - - vb - name: Keypad0 - nameWithType: Scancode.Keypad0 - fullName: OpenTK.Core.Platform.Scancode.Keypad0 - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Scancode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Keypad0 - path: opentk/src/OpenTK.Core/Platform/Enums/Scancode.cs - startLine: 64 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: Keypad0 = 102 - return: - type: OpenTK.Core.Platform.Scancode -- uid: OpenTK.Core.Platform.Scancode.KeypadForwardSlash - commentId: F:OpenTK.Core.Platform.Scancode.KeypadForwardSlash - id: KeypadForwardSlash - parent: OpenTK.Core.Platform.Scancode - langs: - - csharp - - vb - name: KeypadForwardSlash - nameWithType: Scancode.KeypadForwardSlash - fullName: OpenTK.Core.Platform.Scancode.KeypadForwardSlash - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Scancode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: KeypadForwardSlash - path: opentk/src/OpenTK.Core/Platform/Enums/Scancode.cs - startLine: 66 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: KeypadForwardSlash = 103 - return: - type: OpenTK.Core.Platform.Scancode -- uid: OpenTK.Core.Platform.Scancode.KeypadPeriod - commentId: F:OpenTK.Core.Platform.Scancode.KeypadPeriod - id: KeypadPeriod - parent: OpenTK.Core.Platform.Scancode - langs: - - csharp - - vb - name: KeypadPeriod - nameWithType: Scancode.KeypadPeriod - fullName: OpenTK.Core.Platform.Scancode.KeypadPeriod - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Scancode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: KeypadPeriod - path: opentk/src/OpenTK.Core/Platform/Enums/Scancode.cs - startLine: 68 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: KeypadPeriod = 104 - return: - type: OpenTK.Core.Platform.Scancode -- uid: OpenTK.Core.Platform.Scancode.KeypadStar - commentId: F:OpenTK.Core.Platform.Scancode.KeypadStar - id: KeypadStar - parent: OpenTK.Core.Platform.Scancode - langs: - - csharp - - vb - name: KeypadStar - nameWithType: Scancode.KeypadStar - fullName: OpenTK.Core.Platform.Scancode.KeypadStar - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Scancode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: KeypadStar - path: opentk/src/OpenTK.Core/Platform/Enums/Scancode.cs - startLine: 70 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: KeypadStar = 105 - return: - type: OpenTK.Core.Platform.Scancode -- uid: OpenTK.Core.Platform.Scancode.KeypadDash - commentId: F:OpenTK.Core.Platform.Scancode.KeypadDash - id: KeypadDash - parent: OpenTK.Core.Platform.Scancode - langs: - - csharp - - vb - name: KeypadDash - nameWithType: Scancode.KeypadDash - fullName: OpenTK.Core.Platform.Scancode.KeypadDash - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Scancode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: KeypadDash - path: opentk/src/OpenTK.Core/Platform/Enums/Scancode.cs - startLine: 71 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: KeypadDash = 106 - return: - type: OpenTK.Core.Platform.Scancode -- uid: OpenTK.Core.Platform.Scancode.KeypadPlus - commentId: F:OpenTK.Core.Platform.Scancode.KeypadPlus - id: KeypadPlus - parent: OpenTK.Core.Platform.Scancode - langs: - - csharp - - vb - name: KeypadPlus - nameWithType: Scancode.KeypadPlus - fullName: OpenTK.Core.Platform.Scancode.KeypadPlus - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Scancode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: KeypadPlus - path: opentk/src/OpenTK.Core/Platform/Enums/Scancode.cs - startLine: 72 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: KeypadPlus = 107 - return: - type: OpenTK.Core.Platform.Scancode -- uid: OpenTK.Core.Platform.Scancode.KeypadEquals - commentId: F:OpenTK.Core.Platform.Scancode.KeypadEquals - id: KeypadEquals - parent: OpenTK.Core.Platform.Scancode - langs: - - csharp - - vb - name: KeypadEquals - nameWithType: Scancode.KeypadEquals - fullName: OpenTK.Core.Platform.Scancode.KeypadEquals - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Scancode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: KeypadEquals - path: opentk/src/OpenTK.Core/Platform/Enums/Scancode.cs - startLine: 73 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: KeypadEquals = 108 - return: - type: OpenTK.Core.Platform.Scancode -- uid: OpenTK.Core.Platform.Scancode.KeypadComma - commentId: F:OpenTK.Core.Platform.Scancode.KeypadComma - id: KeypadComma - parent: OpenTK.Core.Platform.Scancode - langs: - - csharp - - vb - name: KeypadComma - nameWithType: Scancode.KeypadComma - fullName: OpenTK.Core.Platform.Scancode.KeypadComma - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Scancode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: KeypadComma - path: opentk/src/OpenTK.Core/Platform/Enums/Scancode.cs - startLine: 74 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: KeypadComma = 109 - return: - type: OpenTK.Core.Platform.Scancode -- uid: OpenTK.Core.Platform.Scancode.NonUSSlashBar - commentId: F:OpenTK.Core.Platform.Scancode.NonUSSlashBar - id: NonUSSlashBar - parent: OpenTK.Core.Platform.Scancode - langs: - - csharp - - vb - name: NonUSSlashBar - nameWithType: Scancode.NonUSSlashBar - fullName: OpenTK.Core.Platform.Scancode.NonUSSlashBar - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Scancode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: NonUSSlashBar - path: opentk/src/OpenTK.Core/Platform/Enums/Scancode.cs - startLine: 76 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: NonUSSlashBar = 110 - return: - type: OpenTK.Core.Platform.Scancode -- uid: OpenTK.Core.Platform.Scancode.Application - commentId: F:OpenTK.Core.Platform.Scancode.Application - id: Application - parent: OpenTK.Core.Platform.Scancode - langs: - - csharp - - vb - name: Application - nameWithType: Scancode.Application - fullName: OpenTK.Core.Platform.Scancode.Application - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Scancode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Application - path: opentk/src/OpenTK.Core/Platform/Enums/Scancode.cs - startLine: 77 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: Application = 111 - return: - type: OpenTK.Core.Platform.Scancode -- uid: OpenTK.Core.Platform.Scancode.International1 - commentId: F:OpenTK.Core.Platform.Scancode.International1 - id: International1 - parent: OpenTK.Core.Platform.Scancode - langs: - - csharp - - vb - name: International1 - nameWithType: Scancode.International1 - fullName: OpenTK.Core.Platform.Scancode.International1 - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Scancode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: International1 - path: opentk/src/OpenTK.Core/Platform/Enums/Scancode.cs - startLine: 79 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: International1 = 112 - return: - type: OpenTK.Core.Platform.Scancode -- uid: OpenTK.Core.Platform.Scancode.International2 - commentId: F:OpenTK.Core.Platform.Scancode.International2 - id: International2 - parent: OpenTK.Core.Platform.Scancode - langs: - - csharp - - vb - name: International2 - nameWithType: Scancode.International2 - fullName: OpenTK.Core.Platform.Scancode.International2 - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Scancode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: International2 - path: opentk/src/OpenTK.Core/Platform/Enums/Scancode.cs - startLine: 80 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: International2 = 113 - return: - type: OpenTK.Core.Platform.Scancode -- uid: OpenTK.Core.Platform.Scancode.International3 - commentId: F:OpenTK.Core.Platform.Scancode.International3 - id: International3 - parent: OpenTK.Core.Platform.Scancode - langs: - - csharp - - vb - name: International3 - nameWithType: Scancode.International3 - fullName: OpenTK.Core.Platform.Scancode.International3 - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Scancode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: International3 - path: opentk/src/OpenTK.Core/Platform/Enums/Scancode.cs - startLine: 81 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: International3 = 114 - return: - type: OpenTK.Core.Platform.Scancode -- uid: OpenTK.Core.Platform.Scancode.International4 - commentId: F:OpenTK.Core.Platform.Scancode.International4 - id: International4 - parent: OpenTK.Core.Platform.Scancode - langs: - - csharp - - vb - name: International4 - nameWithType: Scancode.International4 - fullName: OpenTK.Core.Platform.Scancode.International4 - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Scancode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: International4 - path: opentk/src/OpenTK.Core/Platform/Enums/Scancode.cs - startLine: 82 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: International4 = 115 - return: - type: OpenTK.Core.Platform.Scancode -- uid: OpenTK.Core.Platform.Scancode.International5 - commentId: F:OpenTK.Core.Platform.Scancode.International5 - id: International5 - parent: OpenTK.Core.Platform.Scancode - langs: - - csharp - - vb - name: International5 - nameWithType: Scancode.International5 - fullName: OpenTK.Core.Platform.Scancode.International5 - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Scancode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: International5 - path: opentk/src/OpenTK.Core/Platform/Enums/Scancode.cs - startLine: 83 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: International5 = 116 - return: - type: OpenTK.Core.Platform.Scancode -- uid: OpenTK.Core.Platform.Scancode.International6 - commentId: F:OpenTK.Core.Platform.Scancode.International6 - id: International6 - parent: OpenTK.Core.Platform.Scancode - langs: - - csharp - - vb - name: International6 - nameWithType: Scancode.International6 - fullName: OpenTK.Core.Platform.Scancode.International6 - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Scancode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: International6 - path: opentk/src/OpenTK.Core/Platform/Enums/Scancode.cs - startLine: 84 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: International6 = 117 - return: - type: OpenTK.Core.Platform.Scancode -- uid: OpenTK.Core.Platform.Scancode.LANG1 - commentId: F:OpenTK.Core.Platform.Scancode.LANG1 - id: LANG1 - parent: OpenTK.Core.Platform.Scancode - langs: - - csharp - - vb - name: LANG1 - nameWithType: Scancode.LANG1 - fullName: OpenTK.Core.Platform.Scancode.LANG1 - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Scancode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: LANG1 - path: opentk/src/OpenTK.Core/Platform/Enums/Scancode.cs - startLine: 87 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: LANG1 = 118 - return: - type: OpenTK.Core.Platform.Scancode -- uid: OpenTK.Core.Platform.Scancode.LANG2 - commentId: F:OpenTK.Core.Platform.Scancode.LANG2 - id: LANG2 - parent: OpenTK.Core.Platform.Scancode - langs: - - csharp - - vb - name: LANG2 - nameWithType: Scancode.LANG2 - fullName: OpenTK.Core.Platform.Scancode.LANG2 - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Scancode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: LANG2 - path: opentk/src/OpenTK.Core/Platform/Enums/Scancode.cs - startLine: 88 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: LANG2 = 119 - return: - type: OpenTK.Core.Platform.Scancode -- uid: OpenTK.Core.Platform.Scancode.LANG3 - commentId: F:OpenTK.Core.Platform.Scancode.LANG3 - id: LANG3 - parent: OpenTK.Core.Platform.Scancode - langs: - - csharp - - vb - name: LANG3 - nameWithType: Scancode.LANG3 - fullName: OpenTK.Core.Platform.Scancode.LANG3 - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Scancode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: LANG3 - path: opentk/src/OpenTK.Core/Platform/Enums/Scancode.cs - startLine: 89 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: LANG3 = 120 - return: - type: OpenTK.Core.Platform.Scancode -- uid: OpenTK.Core.Platform.Scancode.LANG4 - commentId: F:OpenTK.Core.Platform.Scancode.LANG4 - id: LANG4 - parent: OpenTK.Core.Platform.Scancode - langs: - - csharp - - vb - name: LANG4 - nameWithType: Scancode.LANG4 - fullName: OpenTK.Core.Platform.Scancode.LANG4 - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Scancode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: LANG4 - path: opentk/src/OpenTK.Core/Platform/Enums/Scancode.cs - startLine: 90 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: LANG4 = 121 - return: - type: OpenTK.Core.Platform.Scancode -- uid: OpenTK.Core.Platform.Scancode.LANG5 - commentId: F:OpenTK.Core.Platform.Scancode.LANG5 - id: LANG5 - parent: OpenTK.Core.Platform.Scancode - langs: - - csharp - - vb - name: LANG5 - nameWithType: Scancode.LANG5 - fullName: OpenTK.Core.Platform.Scancode.LANG5 - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Scancode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: LANG5 - path: opentk/src/OpenTK.Core/Platform/Enums/Scancode.cs - startLine: 91 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: LANG5 = 122 - return: - type: OpenTK.Core.Platform.Scancode -- uid: OpenTK.Core.Platform.Scancode.LeftControl - commentId: F:OpenTK.Core.Platform.Scancode.LeftControl - id: LeftControl - parent: OpenTK.Core.Platform.Scancode - langs: - - csharp - - vb - name: LeftControl - nameWithType: Scancode.LeftControl - fullName: OpenTK.Core.Platform.Scancode.LeftControl - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Scancode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: LeftControl - path: opentk/src/OpenTK.Core/Platform/Enums/Scancode.cs - startLine: 94 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: LeftControl = 123 - return: - type: OpenTK.Core.Platform.Scancode -- uid: OpenTK.Core.Platform.Scancode.LeftShift - commentId: F:OpenTK.Core.Platform.Scancode.LeftShift - id: LeftShift - parent: OpenTK.Core.Platform.Scancode - langs: - - csharp - - vb - name: LeftShift - nameWithType: Scancode.LeftShift - fullName: OpenTK.Core.Platform.Scancode.LeftShift - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Scancode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: LeftShift - path: opentk/src/OpenTK.Core/Platform/Enums/Scancode.cs - startLine: 95 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: LeftShift = 124 - return: - type: OpenTK.Core.Platform.Scancode -- uid: OpenTK.Core.Platform.Scancode.LeftAlt - commentId: F:OpenTK.Core.Platform.Scancode.LeftAlt - id: LeftAlt - parent: OpenTK.Core.Platform.Scancode - langs: - - csharp - - vb - name: LeftAlt - nameWithType: Scancode.LeftAlt - fullName: OpenTK.Core.Platform.Scancode.LeftAlt - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Scancode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: LeftAlt - path: opentk/src/OpenTK.Core/Platform/Enums/Scancode.cs - startLine: 97 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: LeftAlt = 125 - return: - type: OpenTK.Core.Platform.Scancode -- uid: OpenTK.Core.Platform.Scancode.LeftGUI - commentId: F:OpenTK.Core.Platform.Scancode.LeftGUI - id: LeftGUI - parent: OpenTK.Core.Platform.Scancode - langs: - - csharp - - vb - name: LeftGUI - nameWithType: Scancode.LeftGUI - fullName: OpenTK.Core.Platform.Scancode.LeftGUI - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Scancode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: LeftGUI - path: opentk/src/OpenTK.Core/Platform/Enums/Scancode.cs - startLine: 98 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: LeftGUI = 126 - return: - type: OpenTK.Core.Platform.Scancode -- uid: OpenTK.Core.Platform.Scancode.RightControl - commentId: F:OpenTK.Core.Platform.Scancode.RightControl - id: RightControl - parent: OpenTK.Core.Platform.Scancode - langs: - - csharp - - vb - name: RightControl - nameWithType: Scancode.RightControl - fullName: OpenTK.Core.Platform.Scancode.RightControl - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Scancode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: RightControl - path: opentk/src/OpenTK.Core/Platform/Enums/Scancode.cs - startLine: 100 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: RightControl = 127 - return: - type: OpenTK.Core.Platform.Scancode -- uid: OpenTK.Core.Platform.Scancode.RightShift - commentId: F:OpenTK.Core.Platform.Scancode.RightShift - id: RightShift - parent: OpenTK.Core.Platform.Scancode - langs: - - csharp - - vb - name: RightShift - nameWithType: Scancode.RightShift - fullName: OpenTK.Core.Platform.Scancode.RightShift - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Scancode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: RightShift - path: opentk/src/OpenTK.Core/Platform/Enums/Scancode.cs - startLine: 101 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: RightShift = 128 - return: - type: OpenTK.Core.Platform.Scancode -- uid: OpenTK.Core.Platform.Scancode.RightAlt - commentId: F:OpenTK.Core.Platform.Scancode.RightAlt - id: RightAlt - parent: OpenTK.Core.Platform.Scancode - langs: - - csharp - - vb - name: RightAlt - nameWithType: Scancode.RightAlt - fullName: OpenTK.Core.Platform.Scancode.RightAlt - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Scancode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: RightAlt - path: opentk/src/OpenTK.Core/Platform/Enums/Scancode.cs - startLine: 103 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: RightAlt = 129 - return: - type: OpenTK.Core.Platform.Scancode -- uid: OpenTK.Core.Platform.Scancode.RightGUI - commentId: F:OpenTK.Core.Platform.Scancode.RightGUI - id: RightGUI - parent: OpenTK.Core.Platform.Scancode - langs: - - csharp - - vb - name: RightGUI - nameWithType: Scancode.RightGUI - fullName: OpenTK.Core.Platform.Scancode.RightGUI - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Scancode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: RightGUI - path: opentk/src/OpenTK.Core/Platform/Enums/Scancode.cs - startLine: 104 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: RightGUI = 130 - return: - type: OpenTK.Core.Platform.Scancode -- uid: OpenTK.Core.Platform.Scancode.SystemPowerDown - commentId: F:OpenTK.Core.Platform.Scancode.SystemPowerDown - id: SystemPowerDown - parent: OpenTK.Core.Platform.Scancode - langs: - - csharp - - vb - name: SystemPowerDown - nameWithType: Scancode.SystemPowerDown - fullName: OpenTK.Core.Platform.Scancode.SystemPowerDown - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Scancode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: SystemPowerDown - path: opentk/src/OpenTK.Core/Platform/Enums/Scancode.cs - startLine: 106 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: SystemPowerDown = 131 - return: - type: OpenTK.Core.Platform.Scancode -- uid: OpenTK.Core.Platform.Scancode.SystemSleep - commentId: F:OpenTK.Core.Platform.Scancode.SystemSleep - id: SystemSleep - parent: OpenTK.Core.Platform.Scancode - langs: - - csharp - - vb - name: SystemSleep - nameWithType: Scancode.SystemSleep - fullName: OpenTK.Core.Platform.Scancode.SystemSleep - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Scancode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: SystemSleep - path: opentk/src/OpenTK.Core/Platform/Enums/Scancode.cs - startLine: 107 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: SystemSleep = 132 - return: - type: OpenTK.Core.Platform.Scancode -- uid: OpenTK.Core.Platform.Scancode.SystemWakeUp - commentId: F:OpenTK.Core.Platform.Scancode.SystemWakeUp - id: SystemWakeUp - parent: OpenTK.Core.Platform.Scancode - langs: - - csharp - - vb - name: SystemWakeUp - nameWithType: Scancode.SystemWakeUp - fullName: OpenTK.Core.Platform.Scancode.SystemWakeUp - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Scancode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: SystemWakeUp - path: opentk/src/OpenTK.Core/Platform/Enums/Scancode.cs - startLine: 108 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: SystemWakeUp = 133 - return: - type: OpenTK.Core.Platform.Scancode -- uid: OpenTK.Core.Platform.Scancode.ScanNextTrack - commentId: F:OpenTK.Core.Platform.Scancode.ScanNextTrack - id: ScanNextTrack - parent: OpenTK.Core.Platform.Scancode - langs: - - csharp - - vb - name: ScanNextTrack - nameWithType: Scancode.ScanNextTrack - fullName: OpenTK.Core.Platform.Scancode.ScanNextTrack - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Scancode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: ScanNextTrack - path: opentk/src/OpenTK.Core/Platform/Enums/Scancode.cs - startLine: 110 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: ScanNextTrack = 134 - return: - type: OpenTK.Core.Platform.Scancode -- uid: OpenTK.Core.Platform.Scancode.ScanPreviousTrack - commentId: F:OpenTK.Core.Platform.Scancode.ScanPreviousTrack - id: ScanPreviousTrack - parent: OpenTK.Core.Platform.Scancode - langs: - - csharp - - vb - name: ScanPreviousTrack - nameWithType: Scancode.ScanPreviousTrack - fullName: OpenTK.Core.Platform.Scancode.ScanPreviousTrack - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Scancode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: ScanPreviousTrack - path: opentk/src/OpenTK.Core/Platform/Enums/Scancode.cs - startLine: 110 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: ScanPreviousTrack = 135 - return: - type: OpenTK.Core.Platform.Scancode -- uid: OpenTK.Core.Platform.Scancode.Stop - commentId: F:OpenTK.Core.Platform.Scancode.Stop - id: Stop - parent: OpenTK.Core.Platform.Scancode - langs: - - csharp - - vb - name: Stop - nameWithType: Scancode.Stop - fullName: OpenTK.Core.Platform.Scancode.Stop - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Scancode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Stop - path: opentk/src/OpenTK.Core/Platform/Enums/Scancode.cs - startLine: 111 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: Stop = 136 - return: - type: OpenTK.Core.Platform.Scancode -- uid: OpenTK.Core.Platform.Scancode.PlayPause - commentId: F:OpenTK.Core.Platform.Scancode.PlayPause - id: PlayPause - parent: OpenTK.Core.Platform.Scancode - langs: - - csharp - - vb - name: PlayPause - nameWithType: Scancode.PlayPause - fullName: OpenTK.Core.Platform.Scancode.PlayPause - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Scancode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: PlayPause - path: opentk/src/OpenTK.Core/Platform/Enums/Scancode.cs - startLine: 111 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: PlayPause = 137 - return: - type: OpenTK.Core.Platform.Scancode -- uid: OpenTK.Core.Platform.Scancode.Mute - commentId: F:OpenTK.Core.Platform.Scancode.Mute - id: Mute - parent: OpenTK.Core.Platform.Scancode - langs: - - csharp - - vb - name: Mute - nameWithType: Scancode.Mute - fullName: OpenTK.Core.Platform.Scancode.Mute - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Scancode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Mute - path: opentk/src/OpenTK.Core/Platform/Enums/Scancode.cs - startLine: 111 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: Mute = 138 - return: - type: OpenTK.Core.Platform.Scancode -- uid: OpenTK.Core.Platform.Scancode.VolumeIncrement - commentId: F:OpenTK.Core.Platform.Scancode.VolumeIncrement - id: VolumeIncrement - parent: OpenTK.Core.Platform.Scancode - langs: - - csharp - - vb - name: VolumeIncrement - nameWithType: Scancode.VolumeIncrement - fullName: OpenTK.Core.Platform.Scancode.VolumeIncrement - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Scancode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: VolumeIncrement - path: opentk/src/OpenTK.Core/Platform/Enums/Scancode.cs - startLine: 112 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: VolumeIncrement = 139 - return: - type: OpenTK.Core.Platform.Scancode -- uid: OpenTK.Core.Platform.Scancode.VolumeDecrement - commentId: F:OpenTK.Core.Platform.Scancode.VolumeDecrement - id: VolumeDecrement - parent: OpenTK.Core.Platform.Scancode - langs: - - csharp - - vb - name: VolumeDecrement - nameWithType: Scancode.VolumeDecrement - fullName: OpenTK.Core.Platform.Scancode.VolumeDecrement - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/Scancode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: VolumeDecrement - path: opentk/src/OpenTK.Core/Platform/Enums/Scancode.cs - startLine: 112 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - syntax: - content: VolumeDecrement = 140 - return: - type: OpenTK.Core.Platform.Scancode -references: -- uid: OpenTK.Core.Platform - commentId: N:OpenTK.Core.Platform - href: OpenTK.html - name: OpenTK.Core.Platform - nameWithType: OpenTK.Core.Platform - fullName: OpenTK.Core.Platform - spec.csharp: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform - name: Platform - href: OpenTK.Core.Platform.html - spec.vb: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform - name: Platform - href: OpenTK.Core.Platform.html -- uid: OpenTK.Core.Platform.Scancode - commentId: T:OpenTK.Core.Platform.Scancode - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.Scancode.html - name: Scancode - nameWithType: Scancode - fullName: OpenTK.Core.Platform.Scancode diff --git a/api/OpenTK.Core.Platform.SurfaceType.yml b/api/OpenTK.Core.Platform.SurfaceType.yml deleted file mode 100644 index a5304bc7..00000000 --- a/api/OpenTK.Core.Platform.SurfaceType.yml +++ /dev/null @@ -1,126 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: OpenTK.Core.Platform.SurfaceType - commentId: T:OpenTK.Core.Platform.SurfaceType - id: SurfaceType - parent: OpenTK.Core.Platform - children: - - OpenTK.Core.Platform.SurfaceType.Control - - OpenTK.Core.Platform.SurfaceType.Display - langs: - - csharp - - vb - name: SurfaceType - nameWithType: SurfaceType - fullName: OpenTK.Core.Platform.SurfaceType - type: Enum - source: - remote: - path: src/OpenTK.Core/Platform/Enums/SurfaceType.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: SurfaceType - path: opentk/src/OpenTK.Core/Platform/Enums/SurfaceType.cs - startLine: 5 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Enumeration of surface types. - example: [] - syntax: - content: public enum SurfaceType - content.vb: Public Enum SurfaceType -- uid: OpenTK.Core.Platform.SurfaceType.Display - commentId: F:OpenTK.Core.Platform.SurfaceType.Display - id: Display - parent: OpenTK.Core.Platform.SurfaceType - langs: - - csharp - - vb - name: Display - nameWithType: SurfaceType.Display - fullName: OpenTK.Core.Platform.SurfaceType.Display - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/SurfaceType.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Display - path: opentk/src/OpenTK.Core/Platform/Enums/SurfaceType.cs - startLine: 10 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: A type of surface which spans an entire display. - example: [] - syntax: - content: Display = 0 - return: - type: OpenTK.Core.Platform.SurfaceType -- uid: OpenTK.Core.Platform.SurfaceType.Control - commentId: F:OpenTK.Core.Platform.SurfaceType.Control - id: Control - parent: OpenTK.Core.Platform.SurfaceType - langs: - - csharp - - vb - name: Control - nameWithType: SurfaceType.Control - fullName: OpenTK.Core.Platform.SurfaceType.Control - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/SurfaceType.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Control - path: opentk/src/OpenTK.Core/Platform/Enums/SurfaceType.cs - startLine: 15 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: A type of surface which is embedded in a container. - example: [] - syntax: - content: Control = 1 - return: - type: OpenTK.Core.Platform.SurfaceType -references: -- uid: OpenTK.Core.Platform - commentId: N:OpenTK.Core.Platform - href: OpenTK.html - name: OpenTK.Core.Platform - nameWithType: OpenTK.Core.Platform - fullName: OpenTK.Core.Platform - spec.csharp: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform - name: Platform - href: OpenTK.Core.Platform.html - spec.vb: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform - name: Platform - href: OpenTK.Core.Platform.html -- uid: OpenTK.Core.Platform.SurfaceType - commentId: T:OpenTK.Core.Platform.SurfaceType - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.SurfaceType.html - name: SurfaceType - nameWithType: SurfaceType - fullName: OpenTK.Core.Platform.SurfaceType diff --git a/api/OpenTK.Core.Platform.SystemCursorType.yml b/api/OpenTK.Core.Platform.SystemCursorType.yml deleted file mode 100644 index dfa116ee..00000000 --- a/api/OpenTK.Core.Platform.SystemCursorType.yml +++ /dev/null @@ -1,770 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: OpenTK.Core.Platform.SystemCursorType - commentId: T:OpenTK.Core.Platform.SystemCursorType - id: SystemCursorType - parent: OpenTK.Core.Platform - children: - - OpenTK.Core.Platform.SystemCursorType.ArrowE - - OpenTK.Core.Platform.SystemCursorType.ArrowEW - - OpenTK.Core.Platform.SystemCursorType.ArrowFourway - - OpenTK.Core.Platform.SystemCursorType.ArrowN - - OpenTK.Core.Platform.SystemCursorType.ArrowNE - - OpenTK.Core.Platform.SystemCursorType.ArrowNESW - - OpenTK.Core.Platform.SystemCursorType.ArrowNS - - OpenTK.Core.Platform.SystemCursorType.ArrowNW - - OpenTK.Core.Platform.SystemCursorType.ArrowNWSE - - OpenTK.Core.Platform.SystemCursorType.ArrowS - - OpenTK.Core.Platform.SystemCursorType.ArrowSE - - OpenTK.Core.Platform.SystemCursorType.ArrowSW - - OpenTK.Core.Platform.SystemCursorType.ArrowUp - - OpenTK.Core.Platform.SystemCursorType.ArrowW - - OpenTK.Core.Platform.SystemCursorType.Cross - - OpenTK.Core.Platform.SystemCursorType.Default - - OpenTK.Core.Platform.SystemCursorType.Forbidden - - OpenTK.Core.Platform.SystemCursorType.Hand - - OpenTK.Core.Platform.SystemCursorType.Help - - OpenTK.Core.Platform.SystemCursorType.Loading - - OpenTK.Core.Platform.SystemCursorType.TextBeam - - OpenTK.Core.Platform.SystemCursorType.Wait - langs: - - csharp - - vb - name: SystemCursorType - nameWithType: SystemCursorType - fullName: OpenTK.Core.Platform.SystemCursorType - type: Enum - source: - remote: - path: src/OpenTK.Core/Platform/Enums/SystemCursorType.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: SystemCursorType - path: opentk/src/OpenTK.Core/Platform/Enums/SystemCursorType.cs - startLine: 7 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Represents system mouse cursor icons. - example: [] - syntax: - content: public enum SystemCursorType - content.vb: Public Enum SystemCursorType -- uid: OpenTK.Core.Platform.SystemCursorType.Default - commentId: F:OpenTK.Core.Platform.SystemCursorType.Default - id: Default - parent: OpenTK.Core.Platform.SystemCursorType - langs: - - csharp - - vb - name: Default - nameWithType: SystemCursorType.Default - fullName: OpenTK.Core.Platform.SystemCursorType.Default - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/SystemCursorType.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Default - path: opentk/src/OpenTK.Core/Platform/Enums/SystemCursorType.cs - startLine: 12 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Default mouse cursor. - example: [] - syntax: - content: Default = 1 - return: - type: OpenTK.Core.Platform.SystemCursorType -- uid: OpenTK.Core.Platform.SystemCursorType.Loading - commentId: F:OpenTK.Core.Platform.SystemCursorType.Loading - id: Loading - parent: OpenTK.Core.Platform.SystemCursorType - langs: - - csharp - - vb - name: Loading - nameWithType: SystemCursorType.Loading - fullName: OpenTK.Core.Platform.SystemCursorType.Loading - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/SystemCursorType.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Loading - path: opentk/src/OpenTK.Core/Platform/Enums/SystemCursorType.cs - startLine: 17 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: A mouse cursor to tell the user something is loading (like an arrow with an hour glass.) - example: [] - syntax: - content: Loading = 2 - return: - type: OpenTK.Core.Platform.SystemCursorType -- uid: OpenTK.Core.Platform.SystemCursorType.Wait - commentId: F:OpenTK.Core.Platform.SystemCursorType.Wait - id: Wait - parent: OpenTK.Core.Platform.SystemCursorType - langs: - - csharp - - vb - name: Wait - nameWithType: SystemCursorType.Wait - fullName: OpenTK.Core.Platform.SystemCursorType.Wait - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/SystemCursorType.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Wait - path: opentk/src/OpenTK.Core/Platform/Enums/SystemCursorType.cs - startLine: 22 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: A mouse cursor to tell the user to wait. (like an hour glass). - example: [] - syntax: - content: Wait = 3 - return: - type: OpenTK.Core.Platform.SystemCursorType -- uid: OpenTK.Core.Platform.SystemCursorType.Cross - commentId: F:OpenTK.Core.Platform.SystemCursorType.Cross - id: Cross - parent: OpenTK.Core.Platform.SystemCursorType - langs: - - csharp - - vb - name: Cross - nameWithType: SystemCursorType.Cross - fullName: OpenTK.Core.Platform.SystemCursorType.Cross - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/SystemCursorType.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Cross - path: opentk/src/OpenTK.Core/Platform/Enums/SystemCursorType.cs - startLine: 27 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: A cursor with a cross. - example: [] - syntax: - content: Cross = 4 - return: - type: OpenTK.Core.Platform.SystemCursorType -- uid: OpenTK.Core.Platform.SystemCursorType.Hand - commentId: F:OpenTK.Core.Platform.SystemCursorType.Hand - id: Hand - parent: OpenTK.Core.Platform.SystemCursorType - langs: - - csharp - - vb - name: Hand - nameWithType: SystemCursorType.Hand - fullName: OpenTK.Core.Platform.SystemCursorType.Hand - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/SystemCursorType.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Hand - path: opentk/src/OpenTK.Core/Platform/Enums/SystemCursorType.cs - startLine: 32 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: A cursor with a hand. - example: [] - syntax: - content: Hand = 5 - return: - type: OpenTK.Core.Platform.SystemCursorType -- uid: OpenTK.Core.Platform.SystemCursorType.Help - commentId: F:OpenTK.Core.Platform.SystemCursorType.Help - id: Help - parent: OpenTK.Core.Platform.SystemCursorType - langs: - - csharp - - vb - name: Help - nameWithType: SystemCursorType.Help - fullName: OpenTK.Core.Platform.SystemCursorType.Help - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/SystemCursorType.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Help - path: opentk/src/OpenTK.Core/Platform/Enums/SystemCursorType.cs - startLine: 37 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: A cursor with a quetion mark. - example: [] - syntax: - content: Help = 6 - return: - type: OpenTK.Core.Platform.SystemCursorType -- uid: OpenTK.Core.Platform.SystemCursorType.TextBeam - commentId: F:OpenTK.Core.Platform.SystemCursorType.TextBeam - id: TextBeam - parent: OpenTK.Core.Platform.SystemCursorType - langs: - - csharp - - vb - name: TextBeam - nameWithType: SystemCursorType.TextBeam - fullName: OpenTK.Core.Platform.SystemCursorType.TextBeam - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/SystemCursorType.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: TextBeam - path: opentk/src/OpenTK.Core/Platform/Enums/SystemCursorType.cs - startLine: 42 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: A cursor which is displayed when text is selectable. - example: [] - syntax: - content: TextBeam = 7 - return: - type: OpenTK.Core.Platform.SystemCursorType -- uid: OpenTK.Core.Platform.SystemCursorType.Forbidden - commentId: F:OpenTK.Core.Platform.SystemCursorType.Forbidden - id: Forbidden - parent: OpenTK.Core.Platform.SystemCursorType - langs: - - csharp - - vb - name: Forbidden - nameWithType: SystemCursorType.Forbidden - fullName: OpenTK.Core.Platform.SystemCursorType.Forbidden - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/SystemCursorType.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Forbidden - path: opentk/src/OpenTK.Core/Platform/Enums/SystemCursorType.cs - startLine: 47 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: A cursor which tells the user they can't do something (like a crossed out red circle.) - example: [] - syntax: - content: Forbidden = 8 - return: - type: OpenTK.Core.Platform.SystemCursorType -- uid: OpenTK.Core.Platform.SystemCursorType.ArrowFourway - commentId: F:OpenTK.Core.Platform.SystemCursorType.ArrowFourway - id: ArrowFourway - parent: OpenTK.Core.Platform.SystemCursorType - langs: - - csharp - - vb - name: ArrowFourway - nameWithType: SystemCursorType.ArrowFourway - fullName: OpenTK.Core.Platform.SystemCursorType.ArrowFourway - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/SystemCursorType.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: ArrowFourway - path: opentk/src/OpenTK.Core/Platform/Enums/SystemCursorType.cs - startLine: 52 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: A cursor with arrows pointing in all four direction. - example: [] - syntax: - content: ArrowFourway = 9 - return: - type: OpenTK.Core.Platform.SystemCursorType -- uid: OpenTK.Core.Platform.SystemCursorType.ArrowNS - commentId: F:OpenTK.Core.Platform.SystemCursorType.ArrowNS - id: ArrowNS - parent: OpenTK.Core.Platform.SystemCursorType - langs: - - csharp - - vb - name: ArrowNS - nameWithType: SystemCursorType.ArrowNS - fullName: OpenTK.Core.Platform.SystemCursorType.ArrowNS - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/SystemCursorType.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: ArrowNS - path: opentk/src/OpenTK.Core/Platform/Enums/SystemCursorType.cs - startLine: 57 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: A resize cursor with arrows pointing north and south. - example: [] - syntax: - content: ArrowNS = 10 - return: - type: OpenTK.Core.Platform.SystemCursorType -- uid: OpenTK.Core.Platform.SystemCursorType.ArrowEW - commentId: F:OpenTK.Core.Platform.SystemCursorType.ArrowEW - id: ArrowEW - parent: OpenTK.Core.Platform.SystemCursorType - langs: - - csharp - - vb - name: ArrowEW - nameWithType: SystemCursorType.ArrowEW - fullName: OpenTK.Core.Platform.SystemCursorType.ArrowEW - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/SystemCursorType.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: ArrowEW - path: opentk/src/OpenTK.Core/Platform/Enums/SystemCursorType.cs - startLine: 62 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: A resize cursor with arrows pointing east and west. - example: [] - syntax: - content: ArrowEW = 11 - return: - type: OpenTK.Core.Platform.SystemCursorType -- uid: OpenTK.Core.Platform.SystemCursorType.ArrowNESW - commentId: F:OpenTK.Core.Platform.SystemCursorType.ArrowNESW - id: ArrowNESW - parent: OpenTK.Core.Platform.SystemCursorType - langs: - - csharp - - vb - name: ArrowNESW - nameWithType: SystemCursorType.ArrowNESW - fullName: OpenTK.Core.Platform.SystemCursorType.ArrowNESW - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/SystemCursorType.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: ArrowNESW - path: opentk/src/OpenTK.Core/Platform/Enums/SystemCursorType.cs - startLine: 67 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: A resize cursor with arrows pointing northeast and southwest. - example: [] - syntax: - content: ArrowNESW = 12 - return: - type: OpenTK.Core.Platform.SystemCursorType -- uid: OpenTK.Core.Platform.SystemCursorType.ArrowNWSE - commentId: F:OpenTK.Core.Platform.SystemCursorType.ArrowNWSE - id: ArrowNWSE - parent: OpenTK.Core.Platform.SystemCursorType - langs: - - csharp - - vb - name: ArrowNWSE - nameWithType: SystemCursorType.ArrowNWSE - fullName: OpenTK.Core.Platform.SystemCursorType.ArrowNWSE - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/SystemCursorType.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: ArrowNWSE - path: opentk/src/OpenTK.Core/Platform/Enums/SystemCursorType.cs - startLine: 72 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: A resize cursor with arrows pointing northwest and southeast. - example: [] - syntax: - content: ArrowNWSE = 13 - return: - type: OpenTK.Core.Platform.SystemCursorType -- uid: OpenTK.Core.Platform.SystemCursorType.ArrowUp - commentId: F:OpenTK.Core.Platform.SystemCursorType.ArrowUp - id: ArrowUp - parent: OpenTK.Core.Platform.SystemCursorType - langs: - - csharp - - vb - name: ArrowUp - nameWithType: SystemCursorType.ArrowUp - fullName: OpenTK.Core.Platform.SystemCursorType.ArrowUp - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/SystemCursorType.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: ArrowUp - path: opentk/src/OpenTK.Core/Platform/Enums/SystemCursorType.cs - startLine: 77 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: A cursor pointing up. - example: [] - syntax: - content: ArrowUp = 14 - return: - type: OpenTK.Core.Platform.SystemCursorType -- uid: OpenTK.Core.Platform.SystemCursorType.ArrowN - commentId: F:OpenTK.Core.Platform.SystemCursorType.ArrowN - id: ArrowN - parent: OpenTK.Core.Platform.SystemCursorType - langs: - - csharp - - vb - name: ArrowN - nameWithType: SystemCursorType.ArrowN - fullName: OpenTK.Core.Platform.SystemCursorType.ArrowN - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/SystemCursorType.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: ArrowN - path: opentk/src/OpenTK.Core/Platform/Enums/SystemCursorType.cs - startLine: 84 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: >- - A resize cursor pointing north.
- - On windows this is the same as .
- - On macos and X11 this will be an arrow pointing north. - example: [] - syntax: - content: ArrowN = 15 - return: - type: OpenTK.Core.Platform.SystemCursorType -- uid: OpenTK.Core.Platform.SystemCursorType.ArrowE - commentId: F:OpenTK.Core.Platform.SystemCursorType.ArrowE - id: ArrowE - parent: OpenTK.Core.Platform.SystemCursorType - langs: - - csharp - - vb - name: ArrowE - nameWithType: SystemCursorType.ArrowE - fullName: OpenTK.Core.Platform.SystemCursorType.ArrowE - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/SystemCursorType.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: ArrowE - path: opentk/src/OpenTK.Core/Platform/Enums/SystemCursorType.cs - startLine: 91 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: >- - A resize cursor pointing east.
- - On windows this is the same as .
- - On macos and X11 this will be an arrow pointing east. - example: [] - syntax: - content: ArrowE = 16 - return: - type: OpenTK.Core.Platform.SystemCursorType -- uid: OpenTK.Core.Platform.SystemCursorType.ArrowS - commentId: F:OpenTK.Core.Platform.SystemCursorType.ArrowS - id: ArrowS - parent: OpenTK.Core.Platform.SystemCursorType - langs: - - csharp - - vb - name: ArrowS - nameWithType: SystemCursorType.ArrowS - fullName: OpenTK.Core.Platform.SystemCursorType.ArrowS - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/SystemCursorType.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: ArrowS - path: opentk/src/OpenTK.Core/Platform/Enums/SystemCursorType.cs - startLine: 98 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: >- - A resize cursor pointing south.
- - On windows this is the same as .
- - On macos and X11 this will be an arrow pointing south. - example: [] - syntax: - content: ArrowS = 17 - return: - type: OpenTK.Core.Platform.SystemCursorType -- uid: OpenTK.Core.Platform.SystemCursorType.ArrowW - commentId: F:OpenTK.Core.Platform.SystemCursorType.ArrowW - id: ArrowW - parent: OpenTK.Core.Platform.SystemCursorType - langs: - - csharp - - vb - name: ArrowW - nameWithType: SystemCursorType.ArrowW - fullName: OpenTK.Core.Platform.SystemCursorType.ArrowW - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/SystemCursorType.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: ArrowW - path: opentk/src/OpenTK.Core/Platform/Enums/SystemCursorType.cs - startLine: 105 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: >- - A resize cursor pointing west.
- - On windows this is the same as .
- - On macos and X11 this will be an arrow pointing west. - example: [] - syntax: - content: ArrowW = 18 - return: - type: OpenTK.Core.Platform.SystemCursorType -- uid: OpenTK.Core.Platform.SystemCursorType.ArrowNE - commentId: F:OpenTK.Core.Platform.SystemCursorType.ArrowNE - id: ArrowNE - parent: OpenTK.Core.Platform.SystemCursorType - langs: - - csharp - - vb - name: ArrowNE - nameWithType: SystemCursorType.ArrowNE - fullName: OpenTK.Core.Platform.SystemCursorType.ArrowNE - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/SystemCursorType.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: ArrowNE - path: opentk/src/OpenTK.Core/Platform/Enums/SystemCursorType.cs - startLine: 112 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: >- - A resize cursor pointing northeast.
- - On windows this is the same as .
- - On macos and X11 this will be an arrow pointing northeast. - example: [] - syntax: - content: ArrowNE = 19 - return: - type: OpenTK.Core.Platform.SystemCursorType -- uid: OpenTK.Core.Platform.SystemCursorType.ArrowSE - commentId: F:OpenTK.Core.Platform.SystemCursorType.ArrowSE - id: ArrowSE - parent: OpenTK.Core.Platform.SystemCursorType - langs: - - csharp - - vb - name: ArrowSE - nameWithType: SystemCursorType.ArrowSE - fullName: OpenTK.Core.Platform.SystemCursorType.ArrowSE - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/SystemCursorType.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: ArrowSE - path: opentk/src/OpenTK.Core/Platform/Enums/SystemCursorType.cs - startLine: 119 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: >- - A resize cursor pointing southeast.
- - On windows this is the same as .
- - On macos and X11 this will be an arrow pointing southeast. - example: [] - syntax: - content: ArrowSE = 20 - return: - type: OpenTK.Core.Platform.SystemCursorType -- uid: OpenTK.Core.Platform.SystemCursorType.ArrowSW - commentId: F:OpenTK.Core.Platform.SystemCursorType.ArrowSW - id: ArrowSW - parent: OpenTK.Core.Platform.SystemCursorType - langs: - - csharp - - vb - name: ArrowSW - nameWithType: SystemCursorType.ArrowSW - fullName: OpenTK.Core.Platform.SystemCursorType.ArrowSW - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/SystemCursorType.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: ArrowSW - path: opentk/src/OpenTK.Core/Platform/Enums/SystemCursorType.cs - startLine: 126 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: >- - A resize cursor pointing southwest.
- - On windows this is the same as .
- - On macos and X11 this will be an arrow pointing southwest. - example: [] - syntax: - content: ArrowSW = 21 - return: - type: OpenTK.Core.Platform.SystemCursorType -- uid: OpenTK.Core.Platform.SystemCursorType.ArrowNW - commentId: F:OpenTK.Core.Platform.SystemCursorType.ArrowNW - id: ArrowNW - parent: OpenTK.Core.Platform.SystemCursorType - langs: - - csharp - - vb - name: ArrowNW - nameWithType: SystemCursorType.ArrowNW - fullName: OpenTK.Core.Platform.SystemCursorType.ArrowNW - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/SystemCursorType.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: ArrowNW - path: opentk/src/OpenTK.Core/Platform/Enums/SystemCursorType.cs - startLine: 133 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: >- - A resize cursor pointing northwest.
- - On windows this is the same as .
- - On macos and X11 this will be an arrow pointing northwest. - example: [] - syntax: - content: ArrowNW = 22 - return: - type: OpenTK.Core.Platform.SystemCursorType -references: -- uid: OpenTK.Core.Platform - commentId: N:OpenTK.Core.Platform - href: OpenTK.html - name: OpenTK.Core.Platform - nameWithType: OpenTK.Core.Platform - fullName: OpenTK.Core.Platform - spec.csharp: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform - name: Platform - href: OpenTK.Core.Platform.html - spec.vb: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform - name: Platform - href: OpenTK.Core.Platform.html -- uid: OpenTK.Core.Platform.SystemCursorType - commentId: T:OpenTK.Core.Platform.SystemCursorType - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.SystemCursorType.html - name: SystemCursorType - nameWithType: SystemCursorType - fullName: OpenTK.Core.Platform.SystemCursorType -- uid: OpenTK.Core.Platform.SystemCursorType.ArrowNS - commentId: F:OpenTK.Core.Platform.SystemCursorType.ArrowNS - href: OpenTK.Core.Platform.SystemCursorType.html#OpenTK_Core_Platform_SystemCursorType_ArrowNS - name: ArrowNS - nameWithType: SystemCursorType.ArrowNS - fullName: OpenTK.Core.Platform.SystemCursorType.ArrowNS -- uid: OpenTK.Core.Platform.SystemCursorType.ArrowEW - commentId: F:OpenTK.Core.Platform.SystemCursorType.ArrowEW - href: OpenTK.Core.Platform.SystemCursorType.html#OpenTK_Core_Platform_SystemCursorType_ArrowEW - name: ArrowEW - nameWithType: SystemCursorType.ArrowEW - fullName: OpenTK.Core.Platform.SystemCursorType.ArrowEW -- uid: OpenTK.Core.Platform.SystemCursorType.ArrowNESW - commentId: F:OpenTK.Core.Platform.SystemCursorType.ArrowNESW - href: OpenTK.Core.Platform.SystemCursorType.html#OpenTK_Core_Platform_SystemCursorType_ArrowNESW - name: ArrowNESW - nameWithType: SystemCursorType.ArrowNESW - fullName: OpenTK.Core.Platform.SystemCursorType.ArrowNESW -- uid: OpenTK.Core.Platform.SystemCursorType.ArrowNWSE - commentId: F:OpenTK.Core.Platform.SystemCursorType.ArrowNWSE - href: OpenTK.Core.Platform.SystemCursorType.html#OpenTK_Core_Platform_SystemCursorType_ArrowNWSE - name: ArrowNWSE - nameWithType: SystemCursorType.ArrowNWSE - fullName: OpenTK.Core.Platform.SystemCursorType.ArrowNWSE diff --git a/api/OpenTK.Core.Platform.SystemIconType.yml b/api/OpenTK.Core.Platform.SystemIconType.yml deleted file mode 100644 index e14a3959..00000000 --- a/api/OpenTK.Core.Platform.SystemIconType.yml +++ /dev/null @@ -1,271 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: OpenTK.Core.Platform.SystemIconType - commentId: T:OpenTK.Core.Platform.SystemIconType - id: SystemIconType - parent: OpenTK.Core.Platform - children: - - OpenTK.Core.Platform.SystemIconType.Default - - OpenTK.Core.Platform.SystemIconType.Error - - OpenTK.Core.Platform.SystemIconType.Information - - OpenTK.Core.Platform.SystemIconType.OperatingSystem - - OpenTK.Core.Platform.SystemIconType.Question - - OpenTK.Core.Platform.SystemIconType.Shield - - OpenTK.Core.Platform.SystemIconType.Warning - langs: - - csharp - - vb - name: SystemIconType - nameWithType: SystemIconType - fullName: OpenTK.Core.Platform.SystemIconType - type: Enum - source: - remote: - path: src/OpenTK.Core/Platform/Enums/SystemIconType.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: SystemIconType - path: opentk/src/OpenTK.Core/Platform/Enums/SystemIconType.cs - startLine: 19 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Enumeration of system icons based on the Win32 base icon set. - example: [] - syntax: - content: public enum SystemIconType - content.vb: Public Enum SystemIconType -- uid: OpenTK.Core.Platform.SystemIconType.Default - commentId: F:OpenTK.Core.Platform.SystemIconType.Default - id: Default - parent: OpenTK.Core.Platform.SystemIconType - langs: - - csharp - - vb - name: Default - nameWithType: SystemIconType.Default - fullName: OpenTK.Core.Platform.SystemIconType.Default - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/SystemIconType.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Default - path: opentk/src/OpenTK.Core/Platform/Enums/SystemIconType.cs - startLine: 24 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Default icon for applications. - example: [] - syntax: - content: Default = 1 - return: - type: OpenTK.Core.Platform.SystemIconType -- uid: OpenTK.Core.Platform.SystemIconType.Error - commentId: F:OpenTK.Core.Platform.SystemIconType.Error - id: Error - parent: OpenTK.Core.Platform.SystemIconType - langs: - - csharp - - vb - name: Error - nameWithType: SystemIconType.Error - fullName: OpenTK.Core.Platform.SystemIconType.Error - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/SystemIconType.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Error - path: opentk/src/OpenTK.Core/Platform/Enums/SystemIconType.cs - startLine: 29 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Error icon. - example: [] - syntax: - content: Error = 2 - return: - type: OpenTK.Core.Platform.SystemIconType -- uid: OpenTK.Core.Platform.SystemIconType.Information - commentId: F:OpenTK.Core.Platform.SystemIconType.Information - id: Information - parent: OpenTK.Core.Platform.SystemIconType - langs: - - csharp - - vb - name: Information - nameWithType: SystemIconType.Information - fullName: OpenTK.Core.Platform.SystemIconType.Information - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/SystemIconType.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Information - path: opentk/src/OpenTK.Core/Platform/Enums/SystemIconType.cs - startLine: 34 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: An icon with an encircled letter I. - example: [] - syntax: - content: Information = 3 - return: - type: OpenTK.Core.Platform.SystemIconType -- uid: OpenTK.Core.Platform.SystemIconType.Question - commentId: F:OpenTK.Core.Platform.SystemIconType.Question - id: Question - parent: OpenTK.Core.Platform.SystemIconType - langs: - - csharp - - vb - name: Question - nameWithType: SystemIconType.Question - fullName: OpenTK.Core.Platform.SystemIconType.Question - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/SystemIconType.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Question - path: opentk/src/OpenTK.Core/Platform/Enums/SystemIconType.cs - startLine: 39 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: An icon with a question mark. - example: [] - syntax: - content: Question = 4 - return: - type: OpenTK.Core.Platform.SystemIconType -- uid: OpenTK.Core.Platform.SystemIconType.Shield - commentId: F:OpenTK.Core.Platform.SystemIconType.Shield - id: Shield - parent: OpenTK.Core.Platform.SystemIconType - langs: - - csharp - - vb - name: Shield - nameWithType: SystemIconType.Shield - fullName: OpenTK.Core.Platform.SystemIconType.Shield - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/SystemIconType.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Shield - path: opentk/src/OpenTK.Core/Platform/Enums/SystemIconType.cs - startLine: 44 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: An icon related to security and super user priveleges. - example: [] - syntax: - content: Shield = 5 - return: - type: OpenTK.Core.Platform.SystemIconType -- uid: OpenTK.Core.Platform.SystemIconType.Warning - commentId: F:OpenTK.Core.Platform.SystemIconType.Warning - id: Warning - parent: OpenTK.Core.Platform.SystemIconType - langs: - - csharp - - vb - name: Warning - nameWithType: SystemIconType.Warning - fullName: OpenTK.Core.Platform.SystemIconType.Warning - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/SystemIconType.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Warning - path: opentk/src/OpenTK.Core/Platform/Enums/SystemIconType.cs - startLine: 49 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: An icon which represents a warning. - example: [] - syntax: - content: Warning = 6 - return: - type: OpenTK.Core.Platform.SystemIconType -- uid: OpenTK.Core.Platform.SystemIconType.OperatingSystem - commentId: F:OpenTK.Core.Platform.SystemIconType.OperatingSystem - id: OperatingSystem - parent: OpenTK.Core.Platform.SystemIconType - langs: - - csharp - - vb - name: OperatingSystem - nameWithType: SystemIconType.OperatingSystem - fullName: OpenTK.Core.Platform.SystemIconType.OperatingSystem - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/SystemIconType.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: OperatingSystem - path: opentk/src/OpenTK.Core/Platform/Enums/SystemIconType.cs - startLine: 55 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: An icon displaying the operating system logo. - example: [] - syntax: - content: OperatingSystem = 7 - return: - type: OpenTK.Core.Platform.SystemIconType -references: -- uid: OpenTK.Core.Platform - commentId: N:OpenTK.Core.Platform - href: OpenTK.html - name: OpenTK.Core.Platform - nameWithType: OpenTK.Core.Platform - fullName: OpenTK.Core.Platform - spec.csharp: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform - name: Platform - href: OpenTK.Core.Platform.html - spec.vb: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform - name: Platform - href: OpenTK.Core.Platform.html -- uid: OpenTK.Core.Platform.SystemIconType - commentId: T:OpenTK.Core.Platform.SystemIconType - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.SystemIconType.html - name: SystemIconType - nameWithType: SystemIconType - fullName: OpenTK.Core.Platform.SystemIconType diff --git a/api/OpenTK.Core.Platform.WindowBorderStyle.yml b/api/OpenTK.Core.Platform.WindowBorderStyle.yml deleted file mode 100644 index 3bfcdd8d..00000000 --- a/api/OpenTK.Core.Platform.WindowBorderStyle.yml +++ /dev/null @@ -1,187 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: OpenTK.Core.Platform.WindowBorderStyle - commentId: T:OpenTK.Core.Platform.WindowBorderStyle - id: WindowBorderStyle - parent: OpenTK.Core.Platform - children: - - OpenTK.Core.Platform.WindowBorderStyle.Borderless - - OpenTK.Core.Platform.WindowBorderStyle.FixedBorder - - OpenTK.Core.Platform.WindowBorderStyle.ResizableBorder - - OpenTK.Core.Platform.WindowBorderStyle.ToolBox - langs: - - csharp - - vb - name: WindowBorderStyle - nameWithType: WindowBorderStyle - fullName: OpenTK.Core.Platform.WindowBorderStyle - type: Enum - source: - remote: - path: src/OpenTK.Core/Platform/Enums/WindowBorderStyle.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: WindowBorderStyle - path: opentk/src/OpenTK.Core/Platform/Enums/WindowBorderStyle.cs - startLine: 7 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: The window border style. - example: [] - syntax: - content: public enum WindowBorderStyle - content.vb: Public Enum WindowBorderStyle -- uid: OpenTK.Core.Platform.WindowBorderStyle.Borderless - commentId: F:OpenTK.Core.Platform.WindowBorderStyle.Borderless - id: Borderless - parent: OpenTK.Core.Platform.WindowBorderStyle - langs: - - csharp - - vb - name: Borderless - nameWithType: WindowBorderStyle.Borderless - fullName: OpenTK.Core.Platform.WindowBorderStyle.Borderless - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/WindowBorderStyle.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Borderless - path: opentk/src/OpenTK.Core/Platform/Enums/WindowBorderStyle.cs - startLine: 12 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Borderless window. - example: [] - syntax: - content: Borderless = 0 - return: - type: OpenTK.Core.Platform.WindowBorderStyle -- uid: OpenTK.Core.Platform.WindowBorderStyle.FixedBorder - commentId: F:OpenTK.Core.Platform.WindowBorderStyle.FixedBorder - id: FixedBorder - parent: OpenTK.Core.Platform.WindowBorderStyle - langs: - - csharp - - vb - name: FixedBorder - nameWithType: WindowBorderStyle.FixedBorder - fullName: OpenTK.Core.Platform.WindowBorderStyle.FixedBorder - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/WindowBorderStyle.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: FixedBorder - path: opentk/src/OpenTK.Core/Platform/Enums/WindowBorderStyle.cs - startLine: 17 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Non-resizeable window border. - example: [] - syntax: - content: FixedBorder = 1 - return: - type: OpenTK.Core.Platform.WindowBorderStyle -- uid: OpenTK.Core.Platform.WindowBorderStyle.ResizableBorder - commentId: F:OpenTK.Core.Platform.WindowBorderStyle.ResizableBorder - id: ResizableBorder - parent: OpenTK.Core.Platform.WindowBorderStyle - langs: - - csharp - - vb - name: ResizableBorder - nameWithType: WindowBorderStyle.ResizableBorder - fullName: OpenTK.Core.Platform.WindowBorderStyle.ResizableBorder - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/WindowBorderStyle.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: ResizableBorder - path: opentk/src/OpenTK.Core/Platform/Enums/WindowBorderStyle.cs - startLine: 22 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Resizeable window border. - example: [] - syntax: - content: ResizableBorder = 2 - return: - type: OpenTK.Core.Platform.WindowBorderStyle -- uid: OpenTK.Core.Platform.WindowBorderStyle.ToolBox - commentId: F:OpenTK.Core.Platform.WindowBorderStyle.ToolBox - id: ToolBox - parent: OpenTK.Core.Platform.WindowBorderStyle - langs: - - csharp - - vb - name: ToolBox - nameWithType: WindowBorderStyle.ToolBox - fullName: OpenTK.Core.Platform.WindowBorderStyle.ToolBox - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/WindowBorderStyle.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: ToolBox - path: opentk/src/OpenTK.Core/Platform/Enums/WindowBorderStyle.cs - startLine: 28 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: >- - A tool window. - - A tool window is a window does not appear in the taskbar and does not appear in the window swticher (ALT+TAB). - example: [] - syntax: - content: ToolBox = 3 - return: - type: OpenTK.Core.Platform.WindowBorderStyle -references: -- uid: OpenTK.Core.Platform - commentId: N:OpenTK.Core.Platform - href: OpenTK.html - name: OpenTK.Core.Platform - nameWithType: OpenTK.Core.Platform - fullName: OpenTK.Core.Platform - spec.csharp: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform - name: Platform - href: OpenTK.Core.Platform.html - spec.vb: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform - name: Platform - href: OpenTK.Core.Platform.html -- uid: OpenTK.Core.Platform.WindowBorderStyle - commentId: T:OpenTK.Core.Platform.WindowBorderStyle - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.WindowBorderStyle.html - name: WindowBorderStyle - nameWithType: WindowBorderStyle - fullName: OpenTK.Core.Platform.WindowBorderStyle diff --git a/api/OpenTK.Core.Platform.WindowDpiChangeEventArgs.yml b/api/OpenTK.Core.Platform.WindowDpiChangeEventArgs.yml deleted file mode 100644 index e4a934e0..00000000 --- a/api/OpenTK.Core.Platform.WindowDpiChangeEventArgs.yml +++ /dev/null @@ -1,591 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: OpenTK.Core.Platform.WindowDpiChangeEventArgs - commentId: T:OpenTK.Core.Platform.WindowDpiChangeEventArgs - id: WindowDpiChangeEventArgs - parent: OpenTK.Core.Platform - children: - - OpenTK.Core.Platform.WindowDpiChangeEventArgs.#ctor(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Single,System.Single) - - OpenTK.Core.Platform.WindowDpiChangeEventArgs.DpiX - - OpenTK.Core.Platform.WindowDpiChangeEventArgs.DpiY - - OpenTK.Core.Platform.WindowDpiChangeEventArgs.ScaleX - - OpenTK.Core.Platform.WindowDpiChangeEventArgs.ScaleY - langs: - - csharp - - vb - name: WindowDpiChangeEventArgs - nameWithType: WindowDpiChangeEventArgs - fullName: OpenTK.Core.Platform.WindowDpiChangeEventArgs - type: Class - source: - remote: - path: src/OpenTK.Core/Platform/WindowEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: WindowDpiChangeEventArgs - path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs - startLine: 129 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: >- - This event is triggered when the DPI of a window changes. - - This can happen if the window is moved between monitors with - - different DPI scaling settings or if the user changes DPI settings. - example: [] - syntax: - content: 'public class WindowDpiChangeEventArgs : WindowEventArgs' - content.vb: Public Class WindowDpiChangeEventArgs Inherits WindowEventArgs - inheritance: - - System.Object - - System.EventArgs - - OpenTK.Core.Platform.WindowEventArgs - inheritedMembers: - - OpenTK.Core.Platform.WindowEventArgs.Window - - System.EventArgs.Empty - - System.Object.Equals(System.Object) - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetHashCode - - System.Object.GetType - - System.Object.MemberwiseClone - - System.Object.ReferenceEquals(System.Object,System.Object) - - System.Object.ToString -- uid: OpenTK.Core.Platform.WindowDpiChangeEventArgs.DpiX - commentId: P:OpenTK.Core.Platform.WindowDpiChangeEventArgs.DpiX - id: DpiX - parent: OpenTK.Core.Platform.WindowDpiChangeEventArgs - langs: - - csharp - - vb - name: DpiX - nameWithType: WindowDpiChangeEventArgs.DpiX - fullName: OpenTK.Core.Platform.WindowDpiChangeEventArgs.DpiX - type: Property - source: - remote: - path: src/OpenTK.Core/Platform/WindowEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: DpiX - path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs - startLine: 134 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: The new DPI value in the x-axis. - example: [] - syntax: - content: public int DpiX { get; } - parameters: [] - return: - type: System.Int32 - content.vb: Public Property DpiX As Integer - overload: OpenTK.Core.Platform.WindowDpiChangeEventArgs.DpiX* -- uid: OpenTK.Core.Platform.WindowDpiChangeEventArgs.DpiY - commentId: P:OpenTK.Core.Platform.WindowDpiChangeEventArgs.DpiY - id: DpiY - parent: OpenTK.Core.Platform.WindowDpiChangeEventArgs - langs: - - csharp - - vb - name: DpiY - nameWithType: WindowDpiChangeEventArgs.DpiY - fullName: OpenTK.Core.Platform.WindowDpiChangeEventArgs.DpiY - type: Property - source: - remote: - path: src/OpenTK.Core/Platform/WindowEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: DpiY - path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs - startLine: 139 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: The new DPI value in the y-axis. - example: [] - syntax: - content: public int DpiY { get; } - parameters: [] - return: - type: System.Int32 - content.vb: Public Property DpiY As Integer - overload: OpenTK.Core.Platform.WindowDpiChangeEventArgs.DpiY* -- uid: OpenTK.Core.Platform.WindowDpiChangeEventArgs.ScaleX - commentId: P:OpenTK.Core.Platform.WindowDpiChangeEventArgs.ScaleX - id: ScaleX - parent: OpenTK.Core.Platform.WindowDpiChangeEventArgs - langs: - - csharp - - vb - name: ScaleX - nameWithType: WindowDpiChangeEventArgs.ScaleX - fullName: OpenTK.Core.Platform.WindowDpiChangeEventArgs.ScaleX - type: Property - source: - remote: - path: src/OpenTK.Core/Platform/WindowEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: ScaleX - path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs - startLine: 144 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: The new scale value in the x-axis. - example: [] - syntax: - content: public float ScaleX { get; } - parameters: [] - return: - type: System.Single - content.vb: Public Property ScaleX As Single - overload: OpenTK.Core.Platform.WindowDpiChangeEventArgs.ScaleX* -- uid: OpenTK.Core.Platform.WindowDpiChangeEventArgs.ScaleY - commentId: P:OpenTK.Core.Platform.WindowDpiChangeEventArgs.ScaleY - id: ScaleY - parent: OpenTK.Core.Platform.WindowDpiChangeEventArgs - langs: - - csharp - - vb - name: ScaleY - nameWithType: WindowDpiChangeEventArgs.ScaleY - fullName: OpenTK.Core.Platform.WindowDpiChangeEventArgs.ScaleY - type: Property - source: - remote: - path: src/OpenTK.Core/Platform/WindowEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: ScaleY - path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs - startLine: 149 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: The new scale value in the y-axis. - example: [] - syntax: - content: public float ScaleY { get; } - parameters: [] - return: - type: System.Single - content.vb: Public Property ScaleY As Single - overload: OpenTK.Core.Platform.WindowDpiChangeEventArgs.ScaleY* -- uid: OpenTK.Core.Platform.WindowDpiChangeEventArgs.#ctor(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Single,System.Single) - commentId: M:OpenTK.Core.Platform.WindowDpiChangeEventArgs.#ctor(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Single,System.Single) - id: '#ctor(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Single,System.Single)' - parent: OpenTK.Core.Platform.WindowDpiChangeEventArgs - langs: - - csharp - - vb - name: WindowDpiChangeEventArgs(WindowHandle, int, int, float, float) - nameWithType: WindowDpiChangeEventArgs.WindowDpiChangeEventArgs(WindowHandle, int, int, float, float) - fullName: OpenTK.Core.Platform.WindowDpiChangeEventArgs.WindowDpiChangeEventArgs(OpenTK.Core.Platform.WindowHandle, int, int, float, float) - type: Constructor - source: - remote: - path: src/OpenTK.Core/Platform/WindowEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: .ctor - path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs - startLine: 159 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Initializes a new instance of the class. - example: [] - syntax: - content: public WindowDpiChangeEventArgs(WindowHandle window, int dpiX, int dpiY, float scaleX, float scaleY) - parameters: - - id: window - type: OpenTK.Core.Platform.WindowHandle - description: The window whose dpi has changed. - - id: dpiX - type: System.Int32 - description: The new x axis dpi. - - id: dpiY - type: System.Int32 - description: The new y axis dpi. - - id: scaleX - type: System.Single - description: The new x axis scale factor. - - id: scaleY - type: System.Single - description: The new y axis scale factor. - content.vb: Public Sub New(window As WindowHandle, dpiX As Integer, dpiY As Integer, scaleX As Single, scaleY As Single) - overload: OpenTK.Core.Platform.WindowDpiChangeEventArgs.#ctor* - nameWithType.vb: WindowDpiChangeEventArgs.New(WindowHandle, Integer, Integer, Single, Single) - fullName.vb: OpenTK.Core.Platform.WindowDpiChangeEventArgs.New(OpenTK.Core.Platform.WindowHandle, Integer, Integer, Single, Single) - name.vb: New(WindowHandle, Integer, Integer, Single, Single) -references: -- uid: OpenTK.Core.Platform - commentId: N:OpenTK.Core.Platform - href: OpenTK.html - name: OpenTK.Core.Platform - nameWithType: OpenTK.Core.Platform - fullName: OpenTK.Core.Platform - spec.csharp: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform - name: Platform - href: OpenTK.Core.Platform.html - spec.vb: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform - name: Platform - href: OpenTK.Core.Platform.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: System.EventArgs - commentId: T:System.EventArgs - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.eventargs - name: EventArgs - nameWithType: EventArgs - fullName: System.EventArgs -- uid: OpenTK.Core.Platform.WindowEventArgs - commentId: T:OpenTK.Core.Platform.WindowEventArgs - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.WindowEventArgs.html - name: WindowEventArgs - nameWithType: WindowEventArgs - fullName: OpenTK.Core.Platform.WindowEventArgs -- uid: OpenTK.Core.Platform.WindowEventArgs.Window - commentId: P:OpenTK.Core.Platform.WindowEventArgs.Window - parent: OpenTK.Core.Platform.WindowEventArgs - href: OpenTK.Core.Platform.WindowEventArgs.html#OpenTK_Core_Platform_WindowEventArgs_Window - name: Window - nameWithType: WindowEventArgs.Window - fullName: OpenTK.Core.Platform.WindowEventArgs.Window -- uid: System.EventArgs.Empty - commentId: F:System.EventArgs.Empty - parent: System.EventArgs - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.eventargs.empty - name: Empty - nameWithType: EventArgs.Empty - fullName: System.EventArgs.Empty -- uid: System.Object.Equals(System.Object) - commentId: M:System.Object.Equals(System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - name: Equals(object) - nameWithType: object.Equals(object) - fullName: object.Equals(object) - nameWithType.vb: Object.Equals(Object) - fullName.vb: Object.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetHashCode - commentId: M:System.Object.GetHashCode - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - name: GetHashCode() - nameWithType: object.GetHashCode() - fullName: object.GetHashCode() - nameWithType.vb: Object.GetHashCode() - fullName.vb: Object.GetHashCode() - spec.csharp: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.MemberwiseClone - commentId: M:System.Object.MemberwiseClone - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - name: MemberwiseClone() - nameWithType: object.MemberwiseClone() - fullName: object.MemberwiseClone() - nameWithType.vb: Object.MemberwiseClone() - fullName.vb: Object.MemberwiseClone() - spec.csharp: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) - spec.vb: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.ToString - commentId: M:System.Object.ToString - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - name: ToString() - nameWithType: object.ToString() - fullName: object.ToString() - nameWithType.vb: Object.ToString() - fullName.vb: Object.ToString() - spec.csharp: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) - spec.vb: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: OpenTK.Core.Platform.WindowDpiChangeEventArgs.DpiX* - commentId: Overload:OpenTK.Core.Platform.WindowDpiChangeEventArgs.DpiX - href: OpenTK.Core.Platform.WindowDpiChangeEventArgs.html#OpenTK_Core_Platform_WindowDpiChangeEventArgs_DpiX - name: DpiX - nameWithType: WindowDpiChangeEventArgs.DpiX - fullName: OpenTK.Core.Platform.WindowDpiChangeEventArgs.DpiX -- uid: System.Int32 - commentId: T:System.Int32 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - name: int - nameWithType: int - fullName: int - nameWithType.vb: Integer - fullName.vb: Integer - name.vb: Integer -- uid: OpenTK.Core.Platform.WindowDpiChangeEventArgs.DpiY* - commentId: Overload:OpenTK.Core.Platform.WindowDpiChangeEventArgs.DpiY - href: OpenTK.Core.Platform.WindowDpiChangeEventArgs.html#OpenTK_Core_Platform_WindowDpiChangeEventArgs_DpiY - name: DpiY - nameWithType: WindowDpiChangeEventArgs.DpiY - fullName: OpenTK.Core.Platform.WindowDpiChangeEventArgs.DpiY -- uid: OpenTK.Core.Platform.WindowDpiChangeEventArgs.ScaleX* - commentId: Overload:OpenTK.Core.Platform.WindowDpiChangeEventArgs.ScaleX - href: OpenTK.Core.Platform.WindowDpiChangeEventArgs.html#OpenTK_Core_Platform_WindowDpiChangeEventArgs_ScaleX - name: ScaleX - nameWithType: WindowDpiChangeEventArgs.ScaleX - fullName: OpenTK.Core.Platform.WindowDpiChangeEventArgs.ScaleX -- uid: System.Single - commentId: T:System.Single - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.single - name: float - nameWithType: float - fullName: float - nameWithType.vb: Single - fullName.vb: Single - name.vb: Single -- uid: OpenTK.Core.Platform.WindowDpiChangeEventArgs.ScaleY* - commentId: Overload:OpenTK.Core.Platform.WindowDpiChangeEventArgs.ScaleY - href: OpenTK.Core.Platform.WindowDpiChangeEventArgs.html#OpenTK_Core_Platform_WindowDpiChangeEventArgs_ScaleY - name: ScaleY - nameWithType: WindowDpiChangeEventArgs.ScaleY - fullName: OpenTK.Core.Platform.WindowDpiChangeEventArgs.ScaleY -- uid: OpenTK.Core.Platform.WindowDpiChangeEventArgs - commentId: T:OpenTK.Core.Platform.WindowDpiChangeEventArgs - href: OpenTK.Core.Platform.WindowDpiChangeEventArgs.html - name: WindowDpiChangeEventArgs - nameWithType: WindowDpiChangeEventArgs - fullName: OpenTK.Core.Platform.WindowDpiChangeEventArgs -- uid: OpenTK.Core.Platform.WindowDpiChangeEventArgs.#ctor* - commentId: Overload:OpenTK.Core.Platform.WindowDpiChangeEventArgs.#ctor - href: OpenTK.Core.Platform.WindowDpiChangeEventArgs.html#OpenTK_Core_Platform_WindowDpiChangeEventArgs__ctor_OpenTK_Core_Platform_WindowHandle_System_Int32_System_Int32_System_Single_System_Single_ - name: WindowDpiChangeEventArgs - nameWithType: WindowDpiChangeEventArgs.WindowDpiChangeEventArgs - fullName: OpenTK.Core.Platform.WindowDpiChangeEventArgs.WindowDpiChangeEventArgs - nameWithType.vb: WindowDpiChangeEventArgs.New - fullName.vb: OpenTK.Core.Platform.WindowDpiChangeEventArgs.New - name.vb: New -- uid: OpenTK.Core.Platform.WindowHandle - commentId: T:OpenTK.Core.Platform.WindowHandle - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.WindowHandle.html - name: WindowHandle - nameWithType: WindowHandle - fullName: OpenTK.Core.Platform.WindowHandle diff --git a/api/OpenTK.Core.Platform.WindowEventHandler.yml b/api/OpenTK.Core.Platform.WindowEventHandler.yml deleted file mode 100644 index 57b99128..00000000 --- a/api/OpenTK.Core.Platform.WindowEventHandler.yml +++ /dev/null @@ -1,112 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: OpenTK.Core.Platform.WindowEventHandler - commentId: T:OpenTK.Core.Platform.WindowEventHandler - id: WindowEventHandler - parent: OpenTK.Core.Platform - children: [] - langs: - - csharp - - vb - name: WindowEventHandler - nameWithType: WindowEventHandler - fullName: OpenTK.Core.Platform.WindowEventHandler - type: Delegate - source: - remote: - path: src/OpenTK.Core/Platform/WindowEventHandler.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: WindowEventHandler - path: opentk/src/OpenTK.Core/Platform/WindowEventHandler.cs - startLine: 28 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Event handler delegate for processing window events. - example: - - >- -
void MyWindowEventHandler(WindowHandle handle, WindowEventType type, WindowEventArgs args)
-
-    {
-        switch(type)
-        {
-            case WindowEventType.Move:
-                // Implementation of which is left as an exercise to the reader:
-                MyMoveEventHandler(handle, (WindowMoveEventArgs)args);
-                break;
-            default:
-                OpenTK.Core.Platform.Window.DefaultEventHandler(handle, type, args);
-                break;
-        }
-    }
-
-
-    // Usage:
-
-    OpenTK.Core.Platform.Window.ProcessEvents(handle, MyWindowEventHandler);
- syntax: - content: public delegate void WindowEventHandler(WindowHandle handle, PlatformEventType type, WindowEventArgs args) - parameters: - - id: handle - type: OpenTK.Core.Platform.WindowHandle - description: The window handle receiving the event. - - id: type - type: OpenTK.Core.Platform.PlatformEventType - description: The type of the event. - - id: args - type: OpenTK.Core.Platform.WindowEventArgs - description: Arguments associated with the event. - content.vb: Public Delegate Sub WindowEventHandler(handle As WindowHandle, type As PlatformEventType, args As WindowEventArgs) -references: -- uid: OpenTK.Core.Platform - commentId: N:OpenTK.Core.Platform - href: OpenTK.html - name: OpenTK.Core.Platform - nameWithType: OpenTK.Core.Platform - fullName: OpenTK.Core.Platform - spec.csharp: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform - name: Platform - href: OpenTK.Core.Platform.html - spec.vb: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform - name: Platform - href: OpenTK.Core.Platform.html -- uid: OpenTK.Core.Platform.WindowHandle - commentId: T:OpenTK.Core.Platform.WindowHandle - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.WindowHandle.html - name: WindowHandle - nameWithType: WindowHandle - fullName: OpenTK.Core.Platform.WindowHandle -- uid: OpenTK.Core.Platform.PlatformEventType - commentId: T:OpenTK.Core.Platform.PlatformEventType - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.PlatformEventType.html - name: PlatformEventType - nameWithType: PlatformEventType - fullName: OpenTK.Core.Platform.PlatformEventType -- uid: OpenTK.Core.Platform.WindowEventArgs - commentId: T:OpenTK.Core.Platform.WindowEventArgs - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.WindowEventArgs.html - name: WindowEventArgs - nameWithType: WindowEventArgs - fullName: OpenTK.Core.Platform.WindowEventArgs diff --git a/api/OpenTK.Core.Platform.WindowMode.yml b/api/OpenTK.Core.Platform.WindowMode.yml deleted file mode 100644 index 737ff509..00000000 --- a/api/OpenTK.Core.Platform.WindowMode.yml +++ /dev/null @@ -1,242 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: OpenTK.Core.Platform.WindowMode - commentId: T:OpenTK.Core.Platform.WindowMode - id: WindowMode - parent: OpenTK.Core.Platform - children: - - OpenTK.Core.Platform.WindowMode.ExclusiveFullscreen - - OpenTK.Core.Platform.WindowMode.Hidden - - OpenTK.Core.Platform.WindowMode.Maximized - - OpenTK.Core.Platform.WindowMode.Minimized - - OpenTK.Core.Platform.WindowMode.Normal - - OpenTK.Core.Platform.WindowMode.WindowedFullscreen - langs: - - csharp - - vb - name: WindowMode - nameWithType: WindowMode - fullName: OpenTK.Core.Platform.WindowMode - type: Enum - source: - remote: - path: src/OpenTK.Core/Platform/Enums/WindowMode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: WindowMode - path: opentk/src/OpenTK.Core/Platform/Enums/WindowMode.cs - startLine: 5 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: An enumeration of OpenTK window modes. - example: [] - syntax: - content: public enum WindowMode - content.vb: Public Enum WindowMode -- uid: OpenTK.Core.Platform.WindowMode.Hidden - commentId: F:OpenTK.Core.Platform.WindowMode.Hidden - id: Hidden - parent: OpenTK.Core.Platform.WindowMode - langs: - - csharp - - vb - name: Hidden - nameWithType: WindowMode.Hidden - fullName: OpenTK.Core.Platform.WindowMode.Hidden - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/WindowMode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Hidden - path: opentk/src/OpenTK.Core/Platform/Enums/WindowMode.cs - startLine: 10 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Hidden mode hides the window completely from sight. - example: [] - syntax: - content: Hidden = 0 - return: - type: OpenTK.Core.Platform.WindowMode -- uid: OpenTK.Core.Platform.WindowMode.Minimized - commentId: F:OpenTK.Core.Platform.WindowMode.Minimized - id: Minimized - parent: OpenTK.Core.Platform.WindowMode - langs: - - csharp - - vb - name: Minimized - nameWithType: WindowMode.Minimized - fullName: OpenTK.Core.Platform.WindowMode.Minimized - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/WindowMode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Minimized - path: opentk/src/OpenTK.Core/Platform/Enums/WindowMode.cs - startLine: 15 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: The window is displayed on the task bar but its contents are hidden. - example: [] - syntax: - content: Minimized = 1 - return: - type: OpenTK.Core.Platform.WindowMode -- uid: OpenTK.Core.Platform.WindowMode.Normal - commentId: F:OpenTK.Core.Platform.WindowMode.Normal - id: Normal - parent: OpenTK.Core.Platform.WindowMode - langs: - - csharp - - vb - name: Normal - nameWithType: WindowMode.Normal - fullName: OpenTK.Core.Platform.WindowMode.Normal - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/WindowMode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Normal - path: opentk/src/OpenTK.Core/Platform/Enums/WindowMode.cs - startLine: 20 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: The window is visible. - example: [] - syntax: - content: Normal = 2 - return: - type: OpenTK.Core.Platform.WindowMode -- uid: OpenTK.Core.Platform.WindowMode.Maximized - commentId: F:OpenTK.Core.Platform.WindowMode.Maximized - id: Maximized - parent: OpenTK.Core.Platform.WindowMode - langs: - - csharp - - vb - name: Maximized - nameWithType: WindowMode.Maximized - fullName: OpenTK.Core.Platform.WindowMode.Maximized - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/WindowMode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Maximized - path: opentk/src/OpenTK.Core/Platform/Enums/WindowMode.cs - startLine: 25 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: The window covers the entire desktop area, except system trays. - example: [] - syntax: - content: Maximized = 3 - return: - type: OpenTK.Core.Platform.WindowMode -- uid: OpenTK.Core.Platform.WindowMode.WindowedFullscreen - commentId: F:OpenTK.Core.Platform.WindowMode.WindowedFullscreen - id: WindowedFullscreen - parent: OpenTK.Core.Platform.WindowMode - langs: - - csharp - - vb - name: WindowedFullscreen - nameWithType: WindowMode.WindowedFullscreen - fullName: OpenTK.Core.Platform.WindowMode.WindowedFullscreen - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/WindowMode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: WindowedFullscreen - path: opentk/src/OpenTK.Core/Platform/Enums/WindowMode.cs - startLine: 30 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Window covers the entire screen, as a window. - example: [] - syntax: - content: WindowedFullscreen = 4 - return: - type: OpenTK.Core.Platform.WindowMode -- uid: OpenTK.Core.Platform.WindowMode.ExclusiveFullscreen - commentId: F:OpenTK.Core.Platform.WindowMode.ExclusiveFullscreen - id: ExclusiveFullscreen - parent: OpenTK.Core.Platform.WindowMode - langs: - - csharp - - vb - name: ExclusiveFullscreen - nameWithType: WindowMode.ExclusiveFullscreen - fullName: OpenTK.Core.Platform.WindowMode.ExclusiveFullscreen - type: Field - source: - remote: - path: src/OpenTK.Core/Platform/Enums/WindowMode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: ExclusiveFullscreen - path: opentk/src/OpenTK.Core/Platform/Enums/WindowMode.cs - startLine: 35 - assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: The window takes exclusive ownership of the display. - example: [] - syntax: - content: ExclusiveFullscreen = 5 - return: - type: OpenTK.Core.Platform.WindowMode -references: -- uid: OpenTK.Core.Platform - commentId: N:OpenTK.Core.Platform - href: OpenTK.html - name: OpenTK.Core.Platform - nameWithType: OpenTK.Core.Platform - fullName: OpenTK.Core.Platform - spec.csharp: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform - name: Platform - href: OpenTK.Core.Platform.html - spec.vb: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform - name: Platform - href: OpenTK.Core.Platform.html -- uid: OpenTK.Core.Platform.WindowMode - commentId: T:OpenTK.Core.Platform.WindowMode - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.WindowMode.html - name: WindowMode - nameWithType: WindowMode - fullName: OpenTK.Core.Platform.WindowMode diff --git a/api/OpenTK.Core.Platform.yml b/api/OpenTK.Core.Platform.yml deleted file mode 100644 index 504ea362..00000000 --- a/api/OpenTK.Core.Platform.yml +++ /dev/null @@ -1,802 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: OpenTK.Core.Platform - commentId: N:OpenTK.Core.Platform - id: OpenTK.Core.Platform - children: - - OpenTK.Core.Platform.AppTheme - - OpenTK.Core.Platform.AudioData - - OpenTK.Core.Platform.BatteryInfo - - OpenTK.Core.Platform.BatteryStatus - - OpenTK.Core.Platform.Bitmap - - OpenTK.Core.Platform.ClipboardFormat - - OpenTK.Core.Platform.ClipboardUpdateEventArgs - - OpenTK.Core.Platform.CloseEventArgs - - OpenTK.Core.Platform.ContextDepthBits - - OpenTK.Core.Platform.ContextPixelFormat - - OpenTK.Core.Platform.ContextReleaseBehaviour - - OpenTK.Core.Platform.ContextResetNotificationStrategy - - OpenTK.Core.Platform.ContextStencilBits - - OpenTK.Core.Platform.ContextSwapMethod - - OpenTK.Core.Platform.ContextValueSelector - - OpenTK.Core.Platform.ContextValues - - OpenTK.Core.Platform.CursorCaptureMode - - OpenTK.Core.Platform.CursorHandle - - OpenTK.Core.Platform.DialogFileFilter - - OpenTK.Core.Platform.DisplayConnectionChangedEventArgs - - OpenTK.Core.Platform.DisplayHandle - - OpenTK.Core.Platform.DisplayResolution - - OpenTK.Core.Platform.EventQueue - - OpenTK.Core.Platform.FileDropEventArgs - - OpenTK.Core.Platform.FocusEventArgs - - OpenTK.Core.Platform.GamepadBatteryInfo - - OpenTK.Core.Platform.GamepadBatteryType - - OpenTK.Core.Platform.GraphicsApi - - OpenTK.Core.Platform.GraphicsApiHints - - OpenTK.Core.Platform.HitTest - - OpenTK.Core.Platform.HitType - - OpenTK.Core.Platform.IClipboardComponent - - OpenTK.Core.Platform.ICursorComponent - - OpenTK.Core.Platform.IDialogComponent - - OpenTK.Core.Platform.IDisplayComponent - - OpenTK.Core.Platform.IIconComponent - - OpenTK.Core.Platform.IJoystickComponent - - OpenTK.Core.Platform.IKeyboardComponent - - OpenTK.Core.Platform.IMouseComponent - - OpenTK.Core.Platform.IOpenGLComponent - - OpenTK.Core.Platform.IPalComponent - - OpenTK.Core.Platform.IShellComponent - - OpenTK.Core.Platform.ISurfaceComponent - - OpenTK.Core.Platform.IWindowComponent - - OpenTK.Core.Platform.IconHandle - - OpenTK.Core.Platform.InputLanguageChangedEventArgs - - OpenTK.Core.Platform.JoystickAxis - - OpenTK.Core.Platform.JoystickButton - - OpenTK.Core.Platform.JoystickHandle - - OpenTK.Core.Platform.Key - - OpenTK.Core.Platform.KeyDownEventArgs - - OpenTK.Core.Platform.KeyModifier - - OpenTK.Core.Platform.KeyUpEventArgs - - OpenTK.Core.Platform.MouseButton - - OpenTK.Core.Platform.MouseButtonDownEventArgs - - OpenTK.Core.Platform.MouseButtonFlags - - OpenTK.Core.Platform.MouseButtonUpEventArgs - - OpenTK.Core.Platform.MouseEnterEventArgs - - OpenTK.Core.Platform.MouseHandle - - OpenTK.Core.Platform.MouseMoveEventArgs - - OpenTK.Core.Platform.MouseState - - OpenTK.Core.Platform.OpenDialogOptions - - OpenTK.Core.Platform.OpenGLContextHandle - - OpenTK.Core.Platform.OpenGLGraphicsApiHints - - OpenTK.Core.Platform.OpenGLProfile - - OpenTK.Core.Platform.Pal2BindingsContext - - OpenTK.Core.Platform.PalComponents - - OpenTK.Core.Platform.PalException - - OpenTK.Core.Platform.PalHandle - - OpenTK.Core.Platform.PalNotImplementedException - - OpenTK.Core.Platform.PlatformEventHandler - - OpenTK.Core.Platform.PlatformEventType - - OpenTK.Core.Platform.PlatformException - - OpenTK.Core.Platform.PowerStateChangeEventArgs - - OpenTK.Core.Platform.SaveDialogOptions - - OpenTK.Core.Platform.Scancode - - OpenTK.Core.Platform.ScrollEventArgs - - OpenTK.Core.Platform.SurfaceHandle - - OpenTK.Core.Platform.SurfaceType - - OpenTK.Core.Platform.SystemCursorType - - OpenTK.Core.Platform.SystemIconType - - OpenTK.Core.Platform.SystemMemoryInfo - - OpenTK.Core.Platform.TextEditingEventArgs - - OpenTK.Core.Platform.TextInputEventArgs - - OpenTK.Core.Platform.ThemeChangeEventArgs - - OpenTK.Core.Platform.ThemeInfo - - OpenTK.Core.Platform.ToolkitOptions - - OpenTK.Core.Platform.VideoMode - - OpenTK.Core.Platform.WindowBorderStyle - - OpenTK.Core.Platform.WindowEventArgs - - OpenTK.Core.Platform.WindowEventHandler - - OpenTK.Core.Platform.WindowFramebufferResizeEventArgs - - OpenTK.Core.Platform.WindowHandle - - OpenTK.Core.Platform.WindowMode - - OpenTK.Core.Platform.WindowModeChangeEventArgs - - OpenTK.Core.Platform.WindowMoveEventArgs - - OpenTK.Core.Platform.WindowResizeEventArgs - - OpenTK.Core.Platform.WindowScaleChangeEventArgs - langs: - - csharp - - vb - name: OpenTK.Core.Platform - nameWithType: OpenTK.Core.Platform - fullName: OpenTK.Core.Platform - type: Namespace - assemblies: - - OpenTK.Core -references: -- uid: OpenTK.Core.Platform.AudioData - commentId: T:OpenTK.Core.Platform.AudioData - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.AudioData.html - name: AudioData - nameWithType: AudioData - fullName: OpenTK.Core.Platform.AudioData -- uid: OpenTK.Core.Platform.BatteryInfo - commentId: T:OpenTK.Core.Platform.BatteryInfo - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.BatteryInfo.html - name: BatteryInfo - nameWithType: BatteryInfo - fullName: OpenTK.Core.Platform.BatteryInfo -- uid: OpenTK.Core.Platform.Bitmap - commentId: T:OpenTK.Core.Platform.Bitmap - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.Bitmap.html - name: Bitmap - nameWithType: Bitmap - fullName: OpenTK.Core.Platform.Bitmap -- uid: OpenTK.Core.Platform.ContextValueSelector - commentId: T:OpenTK.Core.Platform.ContextValueSelector - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.ContextValueSelector.html - name: ContextValueSelector - nameWithType: ContextValueSelector - fullName: OpenTK.Core.Platform.ContextValueSelector -- uid: OpenTK.Core.Platform.ContextValues - commentId: T:OpenTK.Core.Platform.ContextValues - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.ContextValues.html - name: ContextValues - nameWithType: ContextValues - fullName: OpenTK.Core.Platform.ContextValues -- uid: OpenTK.Core.Platform.ContextPixelFormat - commentId: T:OpenTK.Core.Platform.ContextPixelFormat - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.ContextPixelFormat.html - name: ContextPixelFormat - nameWithType: ContextPixelFormat - fullName: OpenTK.Core.Platform.ContextPixelFormat -- uid: OpenTK.Core.Platform.ContextSwapMethod - commentId: T:OpenTK.Core.Platform.ContextSwapMethod - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.ContextSwapMethod.html - name: ContextSwapMethod - nameWithType: ContextSwapMethod - fullName: OpenTK.Core.Platform.ContextSwapMethod -- uid: OpenTK.Core.Platform.ContextDepthBits - commentId: T:OpenTK.Core.Platform.ContextDepthBits - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.ContextDepthBits.html - name: ContextDepthBits - nameWithType: ContextDepthBits - fullName: OpenTK.Core.Platform.ContextDepthBits -- uid: OpenTK.Core.Platform.ContextStencilBits - commentId: T:OpenTK.Core.Platform.ContextStencilBits - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.ContextStencilBits.html - name: ContextStencilBits - nameWithType: ContextStencilBits - fullName: OpenTK.Core.Platform.ContextStencilBits -- uid: OpenTK.Core.Platform.ContextResetNotificationStrategy - commentId: T:OpenTK.Core.Platform.ContextResetNotificationStrategy - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.ContextResetNotificationStrategy.html - name: ContextResetNotificationStrategy - nameWithType: ContextResetNotificationStrategy - fullName: OpenTK.Core.Platform.ContextResetNotificationStrategy -- uid: OpenTK.Core.Platform.ContextReleaseBehaviour - commentId: T:OpenTK.Core.Platform.ContextReleaseBehaviour - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.ContextReleaseBehaviour.html - name: ContextReleaseBehaviour - nameWithType: ContextReleaseBehaviour - fullName: OpenTK.Core.Platform.ContextReleaseBehaviour -- uid: OpenTK.Core.Platform.DialogFileFilter - commentId: T:OpenTK.Core.Platform.DialogFileFilter - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.DialogFileFilter.html - name: DialogFileFilter - nameWithType: DialogFileFilter - fullName: OpenTK.Core.Platform.DialogFileFilter -- uid: OpenTK.Core.Platform.DisplayResolution - commentId: T:OpenTK.Core.Platform.DisplayResolution - href: OpenTK.Core.Platform.DisplayResolution.html - name: DisplayResolution - nameWithType: DisplayResolution - fullName: OpenTK.Core.Platform.DisplayResolution -- uid: OpenTK.Core.Platform.BatteryStatus - commentId: T:OpenTK.Core.Platform.BatteryStatus - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.BatteryStatus.html - name: BatteryStatus - nameWithType: BatteryStatus - fullName: OpenTK.Core.Platform.BatteryStatus -- uid: OpenTK.Core.Platform.CursorCaptureMode - commentId: T:OpenTK.Core.Platform.CursorCaptureMode - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.CursorCaptureMode.html - name: CursorCaptureMode - nameWithType: CursorCaptureMode - fullName: OpenTK.Core.Platform.CursorCaptureMode -- uid: OpenTK.Core.Platform.ClipboardFormat - commentId: T:OpenTK.Core.Platform.ClipboardFormat - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.ClipboardFormat.html - name: ClipboardFormat - nameWithType: ClipboardFormat - fullName: OpenTK.Core.Platform.ClipboardFormat -- uid: OpenTK.Core.Platform.GraphicsApi - commentId: T:OpenTK.Core.Platform.GraphicsApi - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.GraphicsApi.html - name: GraphicsApi - nameWithType: GraphicsApi - fullName: OpenTK.Core.Platform.GraphicsApi -- uid: OpenTK.Core.Platform.HitType - commentId: T:OpenTK.Core.Platform.HitType - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.HitType.html - name: HitType - nameWithType: HitType - fullName: OpenTK.Core.Platform.HitType -- uid: OpenTK.Core.Platform.JoystickAxis - commentId: T:OpenTK.Core.Platform.JoystickAxis - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.JoystickAxis.html - name: JoystickAxis - nameWithType: JoystickAxis - fullName: OpenTK.Core.Platform.JoystickAxis -- uid: OpenTK.Core.Platform.JoystickButton - commentId: T:OpenTK.Core.Platform.JoystickButton - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.JoystickButton.html - name: JoystickButton - nameWithType: JoystickButton - fullName: OpenTK.Core.Platform.JoystickButton -- uid: OpenTK.Core.Platform.Key - commentId: T:OpenTK.Core.Platform.Key - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.Key.html - name: Key - nameWithType: Key - fullName: OpenTK.Core.Platform.Key -- uid: OpenTK.Core.Platform.KeyModifier - commentId: T:OpenTK.Core.Platform.KeyModifier - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.KeyModifier.html - name: KeyModifier - nameWithType: KeyModifier - fullName: OpenTK.Core.Platform.KeyModifier -- uid: OpenTK.Core.Platform.MouseButton - commentId: T:OpenTK.Core.Platform.MouseButton - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.MouseButton.html - name: MouseButton - nameWithType: MouseButton - fullName: OpenTK.Core.Platform.MouseButton -- uid: OpenTK.Core.Platform.MouseButtonFlags - commentId: T:OpenTK.Core.Platform.MouseButtonFlags - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.MouseButtonFlags.html - name: MouseButtonFlags - nameWithType: MouseButtonFlags - fullName: OpenTK.Core.Platform.MouseButtonFlags -- uid: OpenTK.Core.Platform.OpenDialogOptions - commentId: T:OpenTK.Core.Platform.OpenDialogOptions - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.OpenDialogOptions.html - name: OpenDialogOptions - nameWithType: OpenDialogOptions - fullName: OpenTK.Core.Platform.OpenDialogOptions -- uid: OpenTK.Core.Platform.OpenGLProfile - commentId: T:OpenTK.Core.Platform.OpenGLProfile - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.OpenGLProfile.html - name: OpenGLProfile - nameWithType: OpenGLProfile - fullName: OpenTK.Core.Platform.OpenGLProfile -- uid: OpenTK.Core.Platform.PalComponents - commentId: T:OpenTK.Core.Platform.PalComponents - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.PalComponents.html - name: PalComponents - nameWithType: PalComponents - fullName: OpenTK.Core.Platform.PalComponents -- uid: OpenTK.Core.Platform.PlatformEventType - commentId: T:OpenTK.Core.Platform.PlatformEventType - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.PlatformEventType.html - name: PlatformEventType - nameWithType: PlatformEventType - fullName: OpenTK.Core.Platform.PlatformEventType -- uid: OpenTK.Core.Platform.SaveDialogOptions - commentId: T:OpenTK.Core.Platform.SaveDialogOptions - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.SaveDialogOptions.html - name: SaveDialogOptions - nameWithType: SaveDialogOptions - fullName: OpenTK.Core.Platform.SaveDialogOptions -- uid: OpenTK.Core.Platform.Scancode - commentId: T:OpenTK.Core.Platform.Scancode - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.Scancode.html - name: Scancode - nameWithType: Scancode - fullName: OpenTK.Core.Platform.Scancode -- uid: OpenTK.Core.Platform.SurfaceType - commentId: T:OpenTK.Core.Platform.SurfaceType - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.SurfaceType.html - name: SurfaceType - nameWithType: SurfaceType - fullName: OpenTK.Core.Platform.SurfaceType -- uid: OpenTK.Core.Platform.SystemCursorType - commentId: T:OpenTK.Core.Platform.SystemCursorType - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.SystemCursorType.html - name: SystemCursorType - nameWithType: SystemCursorType - fullName: OpenTK.Core.Platform.SystemCursorType -- uid: OpenTK.Core.Platform.SystemIconType - commentId: T:OpenTK.Core.Platform.SystemIconType - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.SystemIconType.html - name: SystemIconType - nameWithType: SystemIconType - fullName: OpenTK.Core.Platform.SystemIconType -- uid: OpenTK.Core.Platform.AppTheme - commentId: T:OpenTK.Core.Platform.AppTheme - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.AppTheme.html - name: AppTheme - nameWithType: AppTheme - fullName: OpenTK.Core.Platform.AppTheme -- uid: OpenTK.Core.Platform.ThemeInfo - commentId: T:OpenTK.Core.Platform.ThemeInfo - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.ThemeInfo.html - name: ThemeInfo - nameWithType: ThemeInfo - fullName: OpenTK.Core.Platform.ThemeInfo -- uid: OpenTK.Core.Platform.WindowBorderStyle - commentId: T:OpenTK.Core.Platform.WindowBorderStyle - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.WindowBorderStyle.html - name: WindowBorderStyle - nameWithType: WindowBorderStyle - fullName: OpenTK.Core.Platform.WindowBorderStyle -- uid: OpenTK.Core.Platform.WindowMode - commentId: T:OpenTK.Core.Platform.WindowMode - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.WindowMode.html - name: WindowMode - nameWithType: WindowMode - fullName: OpenTK.Core.Platform.WindowMode -- uid: OpenTK.Core.Platform.PlatformEventHandler - commentId: T:OpenTK.Core.Platform.PlatformEventHandler - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.PlatformEventHandler.html - name: PlatformEventHandler - nameWithType: PlatformEventHandler - fullName: OpenTK.Core.Platform.PlatformEventHandler -- uid: OpenTK.Core.Platform.EventQueue - commentId: T:OpenTK.Core.Platform.EventQueue - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.EventQueue.html - name: EventQueue - nameWithType: EventQueue - fullName: OpenTK.Core.Platform.EventQueue -- uid: OpenTK.Core.Platform.GamepadBatteryType - commentId: T:OpenTK.Core.Platform.GamepadBatteryType - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.GamepadBatteryType.html - name: GamepadBatteryType - nameWithType: GamepadBatteryType - fullName: OpenTK.Core.Platform.GamepadBatteryType -- uid: OpenTK.Core.Platform.GamepadBatteryInfo - commentId: T:OpenTK.Core.Platform.GamepadBatteryInfo - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.GamepadBatteryInfo.html - name: GamepadBatteryInfo - nameWithType: GamepadBatteryInfo - fullName: OpenTK.Core.Platform.GamepadBatteryInfo -- uid: OpenTK.Core.Platform.GraphicsApiHints - commentId: T:OpenTK.Core.Platform.GraphicsApiHints - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.GraphicsApiHints.html - name: GraphicsApiHints - nameWithType: GraphicsApiHints - fullName: OpenTK.Core.Platform.GraphicsApiHints -- uid: OpenTK.Core.Platform.CursorHandle - commentId: T:OpenTK.Core.Platform.CursorHandle - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.CursorHandle.html - name: CursorHandle - nameWithType: CursorHandle - fullName: OpenTK.Core.Platform.CursorHandle -- uid: OpenTK.Core.Platform.DisplayHandle - commentId: T:OpenTK.Core.Platform.DisplayHandle - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.DisplayHandle.html - name: DisplayHandle - nameWithType: DisplayHandle - fullName: OpenTK.Core.Platform.DisplayHandle -- uid: OpenTK.Core.Platform.IconHandle - commentId: T:OpenTK.Core.Platform.IconHandle - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.IconHandle.html - name: IconHandle - nameWithType: IconHandle - fullName: OpenTK.Core.Platform.IconHandle -- uid: OpenTK.Core.Platform.JoystickHandle - commentId: T:OpenTK.Core.Platform.JoystickHandle - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.JoystickHandle.html - name: JoystickHandle - nameWithType: JoystickHandle - fullName: OpenTK.Core.Platform.JoystickHandle -- uid: OpenTK.Core.Platform.MouseHandle - commentId: T:OpenTK.Core.Platform.MouseHandle - href: OpenTK.Core.Platform.MouseHandle.html - name: MouseHandle - nameWithType: MouseHandle - fullName: OpenTK.Core.Platform.MouseHandle -- uid: OpenTK.Core.Platform.OpenGLContextHandle - commentId: T:OpenTK.Core.Platform.OpenGLContextHandle - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.OpenGLContextHandle.html - name: OpenGLContextHandle - nameWithType: OpenGLContextHandle - fullName: OpenTK.Core.Platform.OpenGLContextHandle -- uid: OpenTK.Core.Platform.PalHandle - commentId: T:OpenTK.Core.Platform.PalHandle - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.PalHandle.html - name: PalHandle - nameWithType: PalHandle - fullName: OpenTK.Core.Platform.PalHandle -- uid: OpenTK.Core.Platform.SurfaceHandle - commentId: T:OpenTK.Core.Platform.SurfaceHandle - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.SurfaceHandle.html - name: SurfaceHandle - nameWithType: SurfaceHandle - fullName: OpenTK.Core.Platform.SurfaceHandle -- uid: OpenTK.Core.Platform.WindowHandle - commentId: T:OpenTK.Core.Platform.WindowHandle - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.WindowHandle.html - name: WindowHandle - nameWithType: WindowHandle - fullName: OpenTK.Core.Platform.WindowHandle -- uid: OpenTK.Core.Platform.IClipboardComponent - commentId: T:OpenTK.Core.Platform.IClipboardComponent - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.IClipboardComponent.html - name: IClipboardComponent - nameWithType: IClipboardComponent - fullName: OpenTK.Core.Platform.IClipboardComponent -- uid: OpenTK.Core.Platform.ICursorComponent - commentId: T:OpenTK.Core.Platform.ICursorComponent - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.ICursorComponent.html - name: ICursorComponent - nameWithType: ICursorComponent - fullName: OpenTK.Core.Platform.ICursorComponent -- uid: OpenTK.Core.Platform.IDialogComponent - commentId: T:OpenTK.Core.Platform.IDialogComponent - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.IDialogComponent.html - name: IDialogComponent - nameWithType: IDialogComponent - fullName: OpenTK.Core.Platform.IDialogComponent -- uid: OpenTK.Core.Platform.IDisplayComponent - commentId: T:OpenTK.Core.Platform.IDisplayComponent - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.IDisplayComponent.html - name: IDisplayComponent - nameWithType: IDisplayComponent - fullName: OpenTK.Core.Platform.IDisplayComponent -- uid: OpenTK.Core.Platform.IIconComponent - commentId: T:OpenTK.Core.Platform.IIconComponent - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.IIconComponent.html - name: IIconComponent - nameWithType: IIconComponent - fullName: OpenTK.Core.Platform.IIconComponent -- uid: OpenTK.Core.Platform.IJoystickComponent - commentId: T:OpenTK.Core.Platform.IJoystickComponent - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.IJoystickComponent.html - name: IJoystickComponent - nameWithType: IJoystickComponent - fullName: OpenTK.Core.Platform.IJoystickComponent -- uid: OpenTK.Core.Platform.IKeyboardComponent - commentId: T:OpenTK.Core.Platform.IKeyboardComponent - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.IKeyboardComponent.html - name: IKeyboardComponent - nameWithType: IKeyboardComponent - fullName: OpenTK.Core.Platform.IKeyboardComponent -- uid: OpenTK.Core.Platform.MouseState - commentId: T:OpenTK.Core.Platform.MouseState - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.MouseState.html - name: MouseState - nameWithType: MouseState - fullName: OpenTK.Core.Platform.MouseState -- uid: OpenTK.Core.Platform.IMouseComponent - commentId: T:OpenTK.Core.Platform.IMouseComponent - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.IMouseComponent.html - name: IMouseComponent - nameWithType: IMouseComponent - fullName: OpenTK.Core.Platform.IMouseComponent -- uid: OpenTK.Core.Platform.IOpenGLComponent - commentId: T:OpenTK.Core.Platform.IOpenGLComponent - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.IOpenGLComponent.html - name: IOpenGLComponent - nameWithType: IOpenGLComponent - fullName: OpenTK.Core.Platform.IOpenGLComponent -- uid: OpenTK.Core.Platform.IPalComponent - commentId: T:OpenTK.Core.Platform.IPalComponent - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.IPalComponent.html - name: IPalComponent - nameWithType: IPalComponent - fullName: OpenTK.Core.Platform.IPalComponent -- uid: OpenTK.Core.Platform.IShellComponent - commentId: T:OpenTK.Core.Platform.IShellComponent - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.IShellComponent.html - name: IShellComponent - nameWithType: IShellComponent - fullName: OpenTK.Core.Platform.IShellComponent -- uid: OpenTK.Core.Platform.ISurfaceComponent - commentId: T:OpenTK.Core.Platform.ISurfaceComponent - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.ISurfaceComponent.html - name: ISurfaceComponent - nameWithType: ISurfaceComponent - fullName: OpenTK.Core.Platform.ISurfaceComponent -- uid: OpenTK.Core.Platform.HitTest - commentId: T:OpenTK.Core.Platform.HitTest - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.HitTest.html - name: HitTest - nameWithType: HitTest - fullName: OpenTK.Core.Platform.HitTest -- uid: OpenTK.Core.Platform.IWindowComponent - commentId: T:OpenTK.Core.Platform.IWindowComponent - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.IWindowComponent.html - name: IWindowComponent - nameWithType: IWindowComponent - fullName: OpenTK.Core.Platform.IWindowComponent -- uid: OpenTK.Core.Platform.OpenGLGraphicsApiHints - commentId: T:OpenTK.Core.Platform.OpenGLGraphicsApiHints - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.OpenGLGraphicsApiHints.html - name: OpenGLGraphicsApiHints - nameWithType: OpenGLGraphicsApiHints - fullName: OpenTK.Core.Platform.OpenGLGraphicsApiHints -- uid: OpenTK.Core.Platform.Pal2BindingsContext - commentId: T:OpenTK.Core.Platform.Pal2BindingsContext - href: OpenTK.Core.Platform.Pal2BindingsContext.html - name: Pal2BindingsContext - nameWithType: Pal2BindingsContext - fullName: OpenTK.Core.Platform.Pal2BindingsContext -- uid: OpenTK.Core.Platform.PalException - commentId: T:OpenTK.Core.Platform.PalException - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.PalException.html - name: PalException - nameWithType: PalException - fullName: OpenTK.Core.Platform.PalException -- uid: OpenTK.Core.Platform.PalNotImplementedException - commentId: T:OpenTK.Core.Platform.PalNotImplementedException - href: OpenTK.Core.Platform.PalNotImplementedException.html - name: PalNotImplementedException - nameWithType: PalNotImplementedException - fullName: OpenTK.Core.Platform.PalNotImplementedException -- uid: OpenTK.Core.Platform.PlatformException - commentId: T:OpenTK.Core.Platform.PlatformException - href: OpenTK.Core.Platform.PlatformException.html - name: PlatformException - nameWithType: PlatformException - fullName: OpenTK.Core.Platform.PlatformException -- uid: OpenTK.Core.Platform.SystemMemoryInfo - commentId: T:OpenTK.Core.Platform.SystemMemoryInfo - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.SystemMemoryInfo.html - name: SystemMemoryInfo - nameWithType: SystemMemoryInfo - fullName: OpenTK.Core.Platform.SystemMemoryInfo -- uid: OpenTK.Core.Platform.ToolkitOptions - commentId: T:OpenTK.Core.Platform.ToolkitOptions - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.ToolkitOptions.html - name: ToolkitOptions - nameWithType: ToolkitOptions - fullName: OpenTK.Core.Platform.ToolkitOptions -- uid: OpenTK.Core.Platform.VideoMode - commentId: T:OpenTK.Core.Platform.VideoMode - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.VideoMode.html - name: VideoMode - nameWithType: VideoMode - fullName: OpenTK.Core.Platform.VideoMode -- uid: OpenTK.Core.Platform.WindowEventArgs - commentId: T:OpenTK.Core.Platform.WindowEventArgs - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.WindowEventArgs.html - name: WindowEventArgs - nameWithType: WindowEventArgs - fullName: OpenTK.Core.Platform.WindowEventArgs -- uid: OpenTK.Core.Platform.FocusEventArgs - commentId: T:OpenTK.Core.Platform.FocusEventArgs - href: OpenTK.Core.Platform.FocusEventArgs.html - name: FocusEventArgs - nameWithType: FocusEventArgs - fullName: OpenTK.Core.Platform.FocusEventArgs -- uid: OpenTK.Core.Platform.WindowMoveEventArgs - commentId: T:OpenTK.Core.Platform.WindowMoveEventArgs - href: OpenTK.Core.Platform.WindowMoveEventArgs.html - name: WindowMoveEventArgs - nameWithType: WindowMoveEventArgs - fullName: OpenTK.Core.Platform.WindowMoveEventArgs -- uid: OpenTK.Core.Platform.WindowResizeEventArgs - commentId: T:OpenTK.Core.Platform.WindowResizeEventArgs - href: OpenTK.Core.Platform.WindowResizeEventArgs.html - name: WindowResizeEventArgs - nameWithType: WindowResizeEventArgs - fullName: OpenTK.Core.Platform.WindowResizeEventArgs -- uid: OpenTK.Core.Platform.WindowFramebufferResizeEventArgs - commentId: T:OpenTK.Core.Platform.WindowFramebufferResizeEventArgs - href: OpenTK.Core.Platform.WindowFramebufferResizeEventArgs.html - name: WindowFramebufferResizeEventArgs - nameWithType: WindowFramebufferResizeEventArgs - fullName: OpenTK.Core.Platform.WindowFramebufferResizeEventArgs -- uid: OpenTK.Core.Platform.WindowModeChangeEventArgs - commentId: T:OpenTK.Core.Platform.WindowModeChangeEventArgs - href: OpenTK.Core.Platform.WindowModeChangeEventArgs.html - name: WindowModeChangeEventArgs - nameWithType: WindowModeChangeEventArgs - fullName: OpenTK.Core.Platform.WindowModeChangeEventArgs -- uid: OpenTK.Core.Platform.WindowScaleChangeEventArgs - commentId: T:OpenTK.Core.Platform.WindowScaleChangeEventArgs - href: OpenTK.Core.Platform.WindowScaleChangeEventArgs.html - name: WindowScaleChangeEventArgs - nameWithType: WindowScaleChangeEventArgs - fullName: OpenTK.Core.Platform.WindowScaleChangeEventArgs -- uid: OpenTK.Core.Platform.KeyDownEventArgs - commentId: T:OpenTK.Core.Platform.KeyDownEventArgs - href: OpenTK.Core.Platform.KeyDownEventArgs.html - name: KeyDownEventArgs - nameWithType: KeyDownEventArgs - fullName: OpenTK.Core.Platform.KeyDownEventArgs -- uid: OpenTK.Core.Platform.KeyUpEventArgs - commentId: T:OpenTK.Core.Platform.KeyUpEventArgs - href: OpenTK.Core.Platform.KeyUpEventArgs.html - name: KeyUpEventArgs - nameWithType: KeyUpEventArgs - fullName: OpenTK.Core.Platform.KeyUpEventArgs -- uid: OpenTK.Core.Platform.TextInputEventArgs - commentId: T:OpenTK.Core.Platform.TextInputEventArgs - href: OpenTK.Core.Platform.TextInputEventArgs.html - name: TextInputEventArgs - nameWithType: TextInputEventArgs - fullName: OpenTK.Core.Platform.TextInputEventArgs -- uid: OpenTK.Core.Platform.TextEditingEventArgs - commentId: T:OpenTK.Core.Platform.TextEditingEventArgs - href: OpenTK.Core.Platform.TextEditingEventArgs.html - name: TextEditingEventArgs - nameWithType: TextEditingEventArgs - fullName: OpenTK.Core.Platform.TextEditingEventArgs -- uid: OpenTK.Core.Platform.InputLanguageChangedEventArgs - commentId: T:OpenTK.Core.Platform.InputLanguageChangedEventArgs - href: OpenTK.Core.Platform.InputLanguageChangedEventArgs.html - name: InputLanguageChangedEventArgs - nameWithType: InputLanguageChangedEventArgs - fullName: OpenTK.Core.Platform.InputLanguageChangedEventArgs -- uid: OpenTK.Core.Platform.MouseEnterEventArgs - commentId: T:OpenTK.Core.Platform.MouseEnterEventArgs - href: OpenTK.Core.Platform.MouseEnterEventArgs.html - name: MouseEnterEventArgs - nameWithType: MouseEnterEventArgs - fullName: OpenTK.Core.Platform.MouseEnterEventArgs -- uid: OpenTK.Core.Platform.MouseMoveEventArgs - commentId: T:OpenTK.Core.Platform.MouseMoveEventArgs - href: OpenTK.Core.Platform.MouseMoveEventArgs.html - name: MouseMoveEventArgs - nameWithType: MouseMoveEventArgs - fullName: OpenTK.Core.Platform.MouseMoveEventArgs -- uid: OpenTK.Core.Platform.MouseButtonDownEventArgs - commentId: T:OpenTK.Core.Platform.MouseButtonDownEventArgs - href: OpenTK.Core.Platform.MouseButtonDownEventArgs.html - name: MouseButtonDownEventArgs - nameWithType: MouseButtonDownEventArgs - fullName: OpenTK.Core.Platform.MouseButtonDownEventArgs -- uid: OpenTK.Core.Platform.MouseButtonUpEventArgs - commentId: T:OpenTK.Core.Platform.MouseButtonUpEventArgs - href: OpenTK.Core.Platform.MouseButtonUpEventArgs.html - name: MouseButtonUpEventArgs - nameWithType: MouseButtonUpEventArgs - fullName: OpenTK.Core.Platform.MouseButtonUpEventArgs -- uid: OpenTK.Core.Platform.ScrollEventArgs - commentId: T:OpenTK.Core.Platform.ScrollEventArgs - href: OpenTK.Core.Platform.ScrollEventArgs.html - name: ScrollEventArgs - nameWithType: ScrollEventArgs - fullName: OpenTK.Core.Platform.ScrollEventArgs -- uid: OpenTK.Core.Platform.CloseEventArgs - commentId: T:OpenTK.Core.Platform.CloseEventArgs - href: OpenTK.Core.Platform.CloseEventArgs.html - name: CloseEventArgs - nameWithType: CloseEventArgs - fullName: OpenTK.Core.Platform.CloseEventArgs -- uid: OpenTK.Core.Platform.FileDropEventArgs - commentId: T:OpenTK.Core.Platform.FileDropEventArgs - href: OpenTK.Core.Platform.FileDropEventArgs.html - name: FileDropEventArgs - nameWithType: FileDropEventArgs - fullName: OpenTK.Core.Platform.FileDropEventArgs -- uid: OpenTK.Core.Platform.ClipboardUpdateEventArgs - commentId: T:OpenTK.Core.Platform.ClipboardUpdateEventArgs - href: OpenTK.Core.Platform.ClipboardUpdateEventArgs.html - name: ClipboardUpdateEventArgs - nameWithType: ClipboardUpdateEventArgs - fullName: OpenTK.Core.Platform.ClipboardUpdateEventArgs -- uid: OpenTK.Core.Platform.ThemeChangeEventArgs - commentId: T:OpenTK.Core.Platform.ThemeChangeEventArgs - href: OpenTK.Core.Platform.ThemeChangeEventArgs.html - name: ThemeChangeEventArgs - nameWithType: ThemeChangeEventArgs - fullName: OpenTK.Core.Platform.ThemeChangeEventArgs -- uid: OpenTK.Core.Platform.DisplayConnectionChangedEventArgs - commentId: T:OpenTK.Core.Platform.DisplayConnectionChangedEventArgs - href: OpenTK.Core.Platform.DisplayConnectionChangedEventArgs.html - name: DisplayConnectionChangedEventArgs - nameWithType: DisplayConnectionChangedEventArgs - fullName: OpenTK.Core.Platform.DisplayConnectionChangedEventArgs -- uid: OpenTK.Core.Platform.PowerStateChangeEventArgs - commentId: T:OpenTK.Core.Platform.PowerStateChangeEventArgs - href: OpenTK.Core.Platform.PowerStateChangeEventArgs.html - name: PowerStateChangeEventArgs - nameWithType: PowerStateChangeEventArgs - fullName: OpenTK.Core.Platform.PowerStateChangeEventArgs -- uid: OpenTK.Core.Platform.WindowEventHandler - commentId: T:OpenTK.Core.Platform.WindowEventHandler - href: OpenTK.Core.Platform.WindowEventHandler.html - name: WindowEventHandler - nameWithType: WindowEventHandler - fullName: OpenTK.Core.Platform.WindowEventHandler -- uid: OpenTK.Core.Platform - commentId: N:OpenTK.Core.Platform - href: OpenTK.html - name: OpenTK.Core.Platform - nameWithType: OpenTK.Core.Platform - fullName: OpenTK.Core.Platform - spec.csharp: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform - name: Platform - href: OpenTK.Core.Platform.html - spec.vb: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform - name: Platform - href: OpenTK.Core.Platform.html diff --git a/api/OpenTK.Core.Utility.ConsoleLogger.yml b/api/OpenTK.Core.Utility.ConsoleLogger.yml index 645646e9..87230675 100644 --- a/api/OpenTK.Core.Utility.ConsoleLogger.yml +++ b/api/OpenTK.Core.Utility.ConsoleLogger.yml @@ -14,12 +14,8 @@ items: fullName: OpenTK.Core.Utility.ConsoleLogger type: Class source: - remote: - path: src/OpenTK.Core/Utility/ConsoleLogger.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ConsoleLogger - path: opentk/src/OpenTK.Core/Utility/ConsoleLogger.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Core\Utility\ConsoleLogger.cs startLine: 13 assemblies: - OpenTK.Core @@ -53,12 +49,8 @@ items: fullName: OpenTK.Core.Utility.ConsoleLogger.Filter type: Property source: - remote: - path: src/OpenTK.Core/Utility/ConsoleLogger.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Filter - path: opentk/src/OpenTK.Core/Utility/ConsoleLogger.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Core\Utility\ConsoleLogger.cs startLine: 16 assemblies: - OpenTK.Core diff --git a/api/OpenTK.Core.Utility.DebugFileLogger.yml b/api/OpenTK.Core.Utility.DebugFileLogger.yml index 95de7e7b..b06724c4 100644 --- a/api/OpenTK.Core.Utility.DebugFileLogger.yml +++ b/api/OpenTK.Core.Utility.DebugFileLogger.yml @@ -16,12 +16,8 @@ items: fullName: OpenTK.Core.Utility.DebugFileLogger type: Class source: - remote: - path: src/OpenTK.Core/Utility/DebugFileLogger.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DebugFileLogger - path: opentk/src/OpenTK.Core/Utility/DebugFileLogger.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Core\Utility\DebugFileLogger.cs startLine: 12 assemblies: - OpenTK.Core @@ -55,12 +51,8 @@ items: fullName: OpenTK.Core.Utility.DebugFileLogger.Filter type: Property source: - remote: - path: src/OpenTK.Core/Utility/DebugFileLogger.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Filter - path: opentk/src/OpenTK.Core/Utility/DebugFileLogger.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Core\Utility\DebugFileLogger.cs startLine: 15 assemblies: - OpenTK.Core @@ -91,12 +83,8 @@ items: fullName: OpenTK.Core.Utility.DebugFileLogger.Writer type: Property source: - remote: - path: src/OpenTK.Core/Utility/DebugFileLogger.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Writer - path: opentk/src/OpenTK.Core/Utility/DebugFileLogger.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Core\Utility\DebugFileLogger.cs startLine: 20 assemblies: - OpenTK.Core @@ -122,12 +110,8 @@ items: fullName: OpenTK.Core.Utility.DebugFileLogger.DebugFileLogger(string) type: Constructor source: - remote: - path: src/OpenTK.Core/Utility/DebugFileLogger.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Core/Utility/DebugFileLogger.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Core\Utility\DebugFileLogger.cs startLine: 26 assemblies: - OpenTK.Core diff --git a/api/OpenTK.Core.Utility.DebugLogger.yml b/api/OpenTK.Core.Utility.DebugLogger.yml index 2a6c2f84..8f81d002 100644 --- a/api/OpenTK.Core.Utility.DebugLogger.yml +++ b/api/OpenTK.Core.Utility.DebugLogger.yml @@ -14,12 +14,8 @@ items: fullName: OpenTK.Core.Utility.DebugLogger type: Class source: - remote: - path: src/OpenTK.Core/Utility/DebugLogger.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DebugLogger - path: opentk/src/OpenTK.Core/Utility/DebugLogger.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Core\Utility\DebugLogger.cs startLine: 13 assemblies: - OpenTK.Core @@ -53,12 +49,8 @@ items: fullName: OpenTK.Core.Utility.DebugLogger.Filter type: Property source: - remote: - path: src/OpenTK.Core/Utility/DebugLogger.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Filter - path: opentk/src/OpenTK.Core/Utility/DebugLogger.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Core\Utility\DebugLogger.cs startLine: 16 assemblies: - OpenTK.Core diff --git a/api/OpenTK.Core.Utility.ILogger.yml b/api/OpenTK.Core.Utility.ILogger.yml index e7ceaa38..f4408e65 100644 --- a/api/OpenTK.Core.Utility.ILogger.yml +++ b/api/OpenTK.Core.Utility.ILogger.yml @@ -21,13 +21,9 @@ items: fullName: OpenTK.Core.Utility.ILogger type: Interface source: - remote: - path: src/OpenTK.Core/Utility/ILogger.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ILogger - path: opentk/src/OpenTK.Core/Utility/ILogger.cs - startLine: 40 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Core\Utility\ILogger.cs + startLine: 42 assemblies: - OpenTK.Core namespace: OpenTK.Core.Utility @@ -48,13 +44,9 @@ items: fullName: OpenTK.Core.Utility.ILogger.Filter type: Property source: - remote: - path: src/OpenTK.Core/Utility/ILogger.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Filter - path: opentk/src/OpenTK.Core/Utility/ILogger.cs - startLine: 46 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Core\Utility\ILogger.cs + startLine: 48 assemblies: - OpenTK.Core namespace: OpenTK.Core.Utility @@ -82,13 +74,9 @@ items: fullName: OpenTK.Core.Utility.ILogger.LogInternal(string, OpenTK.Core.Utility.LogLevel, string, int, string) type: Method source: - remote: - path: src/OpenTK.Core/Utility/ILogger.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: LogInternal - path: opentk/src/OpenTK.Core/Utility/ILogger.cs - startLine: 57 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Core\Utility\ILogger.cs + startLine: 59 assemblies: - OpenTK.Core namespace: OpenTK.Core.Utility @@ -132,13 +120,9 @@ items: fullName: OpenTK.Core.Utility.ILogger.Log(string, OpenTK.Core.Utility.LogLevel, string, int, string) type: Method source: - remote: - path: src/OpenTK.Core/Utility/ILogger.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Log - path: opentk/src/OpenTK.Core/Utility/ILogger.cs - startLine: 67 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Core\Utility\ILogger.cs + startLine: 69 assemblies: - OpenTK.Core namespace: OpenTK.Core.Utility @@ -179,13 +163,9 @@ items: fullName: OpenTK.Core.Utility.ILogger.LogDebug(string, string, int, string) type: Method source: - remote: - path: src/OpenTK.Core/Utility/ILogger.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: LogDebug - path: opentk/src/OpenTK.Core/Utility/ILogger.cs - startLine: 76 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Core\Utility\ILogger.cs + startLine: 78 assemblies: - OpenTK.Core namespace: OpenTK.Core.Utility @@ -223,13 +203,9 @@ items: fullName: OpenTK.Core.Utility.ILogger.LogInfo(string, string, int, string) type: Method source: - remote: - path: src/OpenTK.Core/Utility/ILogger.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: LogInfo - path: opentk/src/OpenTK.Core/Utility/ILogger.cs - startLine: 85 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Core\Utility\ILogger.cs + startLine: 87 assemblies: - OpenTK.Core namespace: OpenTK.Core.Utility @@ -267,13 +243,9 @@ items: fullName: OpenTK.Core.Utility.ILogger.LogWarning(string, string, int, string) type: Method source: - remote: - path: src/OpenTK.Core/Utility/ILogger.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: LogWarning - path: opentk/src/OpenTK.Core/Utility/ILogger.cs - startLine: 94 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Core\Utility\ILogger.cs + startLine: 96 assemblies: - OpenTK.Core namespace: OpenTK.Core.Utility @@ -311,13 +283,9 @@ items: fullName: OpenTK.Core.Utility.ILogger.LogError(string, string, int, string) type: Method source: - remote: - path: src/OpenTK.Core/Utility/ILogger.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: LogError - path: opentk/src/OpenTK.Core/Utility/ILogger.cs - startLine: 103 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Core\Utility\ILogger.cs + startLine: 105 assemblies: - OpenTK.Core namespace: OpenTK.Core.Utility @@ -355,13 +323,9 @@ items: fullName: OpenTK.Core.Utility.ILogger.Flush() type: Method source: - remote: - path: src/OpenTK.Core/Utility/ILogger.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Flush - path: opentk/src/OpenTK.Core/Utility/ILogger.cs - startLine: 110 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Core\Utility\ILogger.cs + startLine: 112 assemblies: - OpenTK.Core namespace: OpenTK.Core.Utility diff --git a/api/OpenTK.Core.Utility.LogLevel.yml b/api/OpenTK.Core.Utility.LogLevel.yml index eeeb6e7b..9687cead 100644 --- a/api/OpenTK.Core.Utility.LogLevel.yml +++ b/api/OpenTK.Core.Utility.LogLevel.yml @@ -17,12 +17,8 @@ items: fullName: OpenTK.Core.Utility.LogLevel type: Enum source: - remote: - path: src/OpenTK.Core/Utility/ILogger.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: LogLevel - path: opentk/src/OpenTK.Core/Utility/ILogger.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Core\Utility\ILogger.cs startLine: 13 assemblies: - OpenTK.Core @@ -47,12 +43,8 @@ items: fullName: OpenTK.Core.Utility.LogLevel.Debug type: Field source: - remote: - path: src/OpenTK.Core/Utility/ILogger.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Debug - path: opentk/src/OpenTK.Core/Utility/ILogger.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Core\Utility\ILogger.cs startLine: 18 assemblies: - OpenTK.Core @@ -75,13 +67,9 @@ items: fullName: OpenTK.Core.Utility.LogLevel.Info type: Field source: - remote: - path: src/OpenTK.Core/Utility/ILogger.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Info - path: opentk/src/OpenTK.Core/Utility/ILogger.cs - startLine: 23 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Core\Utility\ILogger.cs + startLine: 25 assemblies: - OpenTK.Core namespace: OpenTK.Core.Utility @@ -103,13 +91,9 @@ items: fullName: OpenTK.Core.Utility.LogLevel.Warning type: Field source: - remote: - path: src/OpenTK.Core/Utility/ILogger.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Warning - path: opentk/src/OpenTK.Core/Utility/ILogger.cs - startLine: 28 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Core\Utility\ILogger.cs + startLine: 30 assemblies: - OpenTK.Core namespace: OpenTK.Core.Utility @@ -131,13 +115,9 @@ items: fullName: OpenTK.Core.Utility.LogLevel.Error type: Field source: - remote: - path: src/OpenTK.Core/Utility/ILogger.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Error - path: opentk/src/OpenTK.Core/Utility/ILogger.cs - startLine: 34 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Core\Utility\ILogger.cs + startLine: 36 assemblies: - OpenTK.Core namespace: OpenTK.Core.Utility diff --git a/api/OpenTK.Core.Utils.yml b/api/OpenTK.Core.Utils.yml index fab634a0..a3e003a7 100644 --- a/api/OpenTK.Core.Utils.yml +++ b/api/OpenTK.Core.Utils.yml @@ -15,12 +15,8 @@ items: fullName: OpenTK.Core.Utils type: Class source: - remote: - path: src/OpenTK.Core/Utility/Utils.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Utils - path: opentk/src/OpenTK.Core/Utility/Utils.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Core\Utility\Utils.cs startLine: 11 assemblies: - OpenTK.Core @@ -52,12 +48,8 @@ items: fullName: OpenTK.Core.Utils.AccurateSleep(double, int) type: Method source: - remote: - path: src/OpenTK.Core/Utility/Utils.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: AccurateSleep - path: opentk/src/OpenTK.Core/Utility/Utils.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Core\Utility\Utils.cs startLine: 28 assemblies: - OpenTK.Core @@ -103,12 +95,8 @@ items: fullName: OpenTK.Core.Utils.FromTszString(char*, int) type: Method source: - remote: - path: src/OpenTK.Core/Utility/Utils.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: FromTszString - path: opentk/src/OpenTK.Core/Utility/Utils.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Core\Utility\Utils.cs startLine: 51 assemblies: - OpenTK.Core diff --git a/api/OpenTK.Graphics.BufferHandle.yml b/api/OpenTK.Graphics.BufferHandle.yml index 1d35c60f..62d79667 100644 --- a/api/OpenTK.Graphics.BufferHandle.yml +++ b/api/OpenTK.Graphics.BufferHandle.yml @@ -23,12 +23,8 @@ items: fullName: OpenTK.Graphics.BufferHandle type: Struct source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: BufferHandle - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 923 assemblies: - OpenTK.Graphics @@ -55,12 +51,8 @@ items: fullName: OpenTK.Graphics.BufferHandle.Zero type: Field source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Zero - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 925 assemblies: - OpenTK.Graphics @@ -82,12 +74,8 @@ items: fullName: OpenTK.Graphics.BufferHandle.Handle type: Field source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Handle - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 927 assemblies: - OpenTK.Graphics @@ -109,12 +97,8 @@ items: fullName: OpenTK.Graphics.BufferHandle.BufferHandle(int) type: Constructor source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 929 assemblies: - OpenTK.Graphics @@ -141,12 +125,8 @@ items: fullName: OpenTK.Graphics.BufferHandle.Equals(object?) type: Method source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Equals - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 934 assemblies: - OpenTK.Graphics @@ -180,12 +160,8 @@ items: fullName: OpenTK.Graphics.BufferHandle.Equals(OpenTK.Graphics.BufferHandle) type: Method source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Equals - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 939 assemblies: - OpenTK.Graphics @@ -217,12 +193,8 @@ items: fullName: OpenTK.Graphics.BufferHandle.GetHashCode() type: Method source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetHashCode - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 944 assemblies: - OpenTK.Graphics @@ -249,12 +221,8 @@ items: fullName: OpenTK.Graphics.BufferHandle.operator ==(OpenTK.Graphics.BufferHandle, OpenTK.Graphics.BufferHandle) type: Operator source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Equality - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 949 assemblies: - OpenTK.Graphics @@ -285,12 +253,8 @@ items: fullName: OpenTK.Graphics.BufferHandle.operator !=(OpenTK.Graphics.BufferHandle, OpenTK.Graphics.BufferHandle) type: Operator source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Inequality - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 954 assemblies: - OpenTK.Graphics @@ -321,12 +285,8 @@ items: fullName: OpenTK.Graphics.BufferHandle.explicit operator OpenTK.Graphics.BufferHandle(int) type: Operator source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Explicit - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 959 assemblies: - OpenTK.Graphics @@ -355,12 +315,8 @@ items: fullName: OpenTK.Graphics.BufferHandle.explicit operator int(OpenTK.Graphics.BufferHandle) type: Operator source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Explicit - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 960 assemblies: - OpenTK.Graphics diff --git a/api/OpenTK.Graphics.CLContext.yml b/api/OpenTK.Graphics.CLContext.yml index bbe7489f..26360b68 100644 --- a/api/OpenTK.Graphics.CLContext.yml +++ b/api/OpenTK.Graphics.CLContext.yml @@ -22,12 +22,8 @@ items: fullName: OpenTK.Graphics.CLContext type: Struct source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CLContext - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 640 assemblies: - OpenTK.Graphics @@ -54,12 +50,8 @@ items: fullName: OpenTK.Graphics.CLContext.Value type: Field source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Value - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 642 assemblies: - OpenTK.Graphics @@ -81,12 +73,8 @@ items: fullName: OpenTK.Graphics.CLContext.CLContext(nint) type: Constructor source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 644 assemblies: - OpenTK.Graphics @@ -113,12 +101,8 @@ items: fullName: OpenTK.Graphics.CLContext.Equals(object?) type: Method source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Equals - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 649 assemblies: - OpenTK.Graphics @@ -152,12 +136,8 @@ items: fullName: OpenTK.Graphics.CLContext.Equals(OpenTK.Graphics.CLContext) type: Method source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Equals - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 654 assemblies: - OpenTK.Graphics @@ -189,12 +169,8 @@ items: fullName: OpenTK.Graphics.CLContext.GetHashCode() type: Method source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetHashCode - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 659 assemblies: - OpenTK.Graphics @@ -221,12 +197,8 @@ items: fullName: OpenTK.Graphics.CLContext.operator ==(OpenTK.Graphics.CLContext, OpenTK.Graphics.CLContext) type: Operator source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Equality - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 664 assemblies: - OpenTK.Graphics @@ -257,12 +229,8 @@ items: fullName: OpenTK.Graphics.CLContext.operator !=(OpenTK.Graphics.CLContext, OpenTK.Graphics.CLContext) type: Operator source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Inequality - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 669 assemblies: - OpenTK.Graphics @@ -293,12 +261,8 @@ items: fullName: OpenTK.Graphics.CLContext.explicit operator OpenTK.Graphics.CLContext(nint) type: Operator source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Explicit - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 674 assemblies: - OpenTK.Graphics @@ -327,12 +291,8 @@ items: fullName: OpenTK.Graphics.CLContext.explicit operator nint(OpenTK.Graphics.CLContext) type: Operator source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Explicit - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 675 assemblies: - OpenTK.Graphics diff --git a/api/OpenTK.Graphics.CLEvent.yml b/api/OpenTK.Graphics.CLEvent.yml index afe765a7..05a556cd 100644 --- a/api/OpenTK.Graphics.CLEvent.yml +++ b/api/OpenTK.Graphics.CLEvent.yml @@ -22,12 +22,8 @@ items: fullName: OpenTK.Graphics.CLEvent type: Struct source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CLEvent - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 678 assemblies: - OpenTK.Graphics @@ -54,12 +50,8 @@ items: fullName: OpenTK.Graphics.CLEvent.Value type: Field source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Value - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 680 assemblies: - OpenTK.Graphics @@ -81,12 +73,8 @@ items: fullName: OpenTK.Graphics.CLEvent.CLEvent(nint) type: Constructor source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 682 assemblies: - OpenTK.Graphics @@ -113,12 +101,8 @@ items: fullName: OpenTK.Graphics.CLEvent.Equals(object?) type: Method source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Equals - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 687 assemblies: - OpenTK.Graphics @@ -152,12 +136,8 @@ items: fullName: OpenTK.Graphics.CLEvent.Equals(OpenTK.Graphics.CLEvent) type: Method source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Equals - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 692 assemblies: - OpenTK.Graphics @@ -189,12 +169,8 @@ items: fullName: OpenTK.Graphics.CLEvent.GetHashCode() type: Method source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetHashCode - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 697 assemblies: - OpenTK.Graphics @@ -221,12 +197,8 @@ items: fullName: OpenTK.Graphics.CLEvent.operator ==(OpenTK.Graphics.CLEvent, OpenTK.Graphics.CLEvent) type: Operator source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Equality - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 702 assemblies: - OpenTK.Graphics @@ -257,12 +229,8 @@ items: fullName: OpenTK.Graphics.CLEvent.operator !=(OpenTK.Graphics.CLEvent, OpenTK.Graphics.CLEvent) type: Operator source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Inequality - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 707 assemblies: - OpenTK.Graphics @@ -293,12 +261,8 @@ items: fullName: OpenTK.Graphics.CLEvent.explicit operator OpenTK.Graphics.CLEvent(nint) type: Operator source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Explicit - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 712 assemblies: - OpenTK.Graphics @@ -327,12 +291,8 @@ items: fullName: OpenTK.Graphics.CLEvent.explicit operator nint(OpenTK.Graphics.CLEvent) type: Operator source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Explicit - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 713 assemblies: - OpenTK.Graphics diff --git a/api/OpenTK.Graphics.DisplayListHandle.yml b/api/OpenTK.Graphics.DisplayListHandle.yml index 8ae3e3f4..8a3a861b 100644 --- a/api/OpenTK.Graphics.DisplayListHandle.yml +++ b/api/OpenTK.Graphics.DisplayListHandle.yml @@ -23,12 +23,8 @@ items: fullName: OpenTK.Graphics.DisplayListHandle type: Struct source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DisplayListHandle - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 1243 assemblies: - OpenTK.Graphics @@ -55,12 +51,8 @@ items: fullName: OpenTK.Graphics.DisplayListHandle.Zero type: Field source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Zero - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 1245 assemblies: - OpenTK.Graphics @@ -82,12 +74,8 @@ items: fullName: OpenTK.Graphics.DisplayListHandle.Handle type: Field source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Handle - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 1247 assemblies: - OpenTK.Graphics @@ -109,12 +97,8 @@ items: fullName: OpenTK.Graphics.DisplayListHandle.DisplayListHandle(int) type: Constructor source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 1249 assemblies: - OpenTK.Graphics @@ -141,12 +125,8 @@ items: fullName: OpenTK.Graphics.DisplayListHandle.Equals(object?) type: Method source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Equals - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 1254 assemblies: - OpenTK.Graphics @@ -180,12 +160,8 @@ items: fullName: OpenTK.Graphics.DisplayListHandle.Equals(OpenTK.Graphics.DisplayListHandle) type: Method source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Equals - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 1259 assemblies: - OpenTK.Graphics @@ -217,12 +193,8 @@ items: fullName: OpenTK.Graphics.DisplayListHandle.GetHashCode() type: Method source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetHashCode - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 1264 assemblies: - OpenTK.Graphics @@ -249,12 +221,8 @@ items: fullName: OpenTK.Graphics.DisplayListHandle.operator ==(OpenTK.Graphics.DisplayListHandle, OpenTK.Graphics.DisplayListHandle) type: Operator source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Equality - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 1269 assemblies: - OpenTK.Graphics @@ -285,12 +253,8 @@ items: fullName: OpenTK.Graphics.DisplayListHandle.operator !=(OpenTK.Graphics.DisplayListHandle, OpenTK.Graphics.DisplayListHandle) type: Operator source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Inequality - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 1274 assemblies: - OpenTK.Graphics @@ -321,12 +285,8 @@ items: fullName: OpenTK.Graphics.DisplayListHandle.explicit operator OpenTK.Graphics.DisplayListHandle(int) type: Operator source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Explicit - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 1279 assemblies: - OpenTK.Graphics @@ -355,12 +315,8 @@ items: fullName: OpenTK.Graphics.DisplayListHandle.explicit operator int(OpenTK.Graphics.DisplayListHandle) type: Operator source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Explicit - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 1280 assemblies: - OpenTK.Graphics diff --git a/api/OpenTK.Graphics.Egl.Egl.yml b/api/OpenTK.Graphics.Egl.Egl.yml index 112c3456..fe1d48b7 100644 --- a/api/OpenTK.Graphics.Egl.Egl.yml +++ b/api/OpenTK.Graphics.Egl.Egl.yml @@ -193,12 +193,8 @@ items: fullName: OpenTK.Graphics.Egl.Egl type: Class source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Egl - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 100 assemblies: - OpenTK.Graphics @@ -228,12 +224,8 @@ items: fullName: OpenTK.Graphics.Egl.Egl.DEFAULT_DISPLAY type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DEFAULT_DISPLAY - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 103 assemblies: - OpenTK.Graphics @@ -255,12 +247,8 @@ items: fullName: OpenTK.Graphics.Egl.Egl.NO_SURFACE type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: NO_SURFACE - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 105 assemblies: - OpenTK.Graphics @@ -282,12 +270,8 @@ items: fullName: OpenTK.Graphics.Egl.Egl.NO_CONTEXT type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: NO_CONTEXT - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 106 assemblies: - OpenTK.Graphics @@ -309,12 +293,8 @@ items: fullName: OpenTK.Graphics.Egl.Egl.CONTEXT_MAJOR_VERSION type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CONTEXT_MAJOR_VERSION - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 108 assemblies: - OpenTK.Graphics @@ -336,12 +316,8 @@ items: fullName: OpenTK.Graphics.Egl.Egl.CONTEXT_MINOR_VERSION type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CONTEXT_MINOR_VERSION - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 109 assemblies: - OpenTK.Graphics @@ -363,12 +339,8 @@ items: fullName: OpenTK.Graphics.Egl.Egl.CONTEXT_OPENGL_DEBUG type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CONTEXT_OPENGL_DEBUG - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 111 assemblies: - OpenTK.Graphics @@ -390,12 +362,8 @@ items: fullName: OpenTK.Graphics.Egl.Egl.VERSION_1_0 type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: VERSION_1_0 - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 113 assemblies: - OpenTK.Graphics @@ -417,12 +385,8 @@ items: fullName: OpenTK.Graphics.Egl.Egl.VERSION_1_1 type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: VERSION_1_1 - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 114 assemblies: - OpenTK.Graphics @@ -444,12 +408,8 @@ items: fullName: OpenTK.Graphics.Egl.Egl.VERSION_1_2 type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: VERSION_1_2 - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 115 assemblies: - OpenTK.Graphics @@ -471,12 +431,8 @@ items: fullName: OpenTK.Graphics.Egl.Egl.VERSION_1_3 type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: VERSION_1_3 - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 116 assemblies: - OpenTK.Graphics @@ -498,12 +454,8 @@ items: fullName: OpenTK.Graphics.Egl.Egl.VERSION_1_4 type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: VERSION_1_4 - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 117 assemblies: - OpenTK.Graphics @@ -525,12 +477,8 @@ items: fullName: OpenTK.Graphics.Egl.Egl.FALSE type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: "FALSE" - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 118 assemblies: - OpenTK.Graphics @@ -552,12 +500,8 @@ items: fullName: OpenTK.Graphics.Egl.Egl.TRUE type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: "TRUE" - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 119 assemblies: - OpenTK.Graphics @@ -579,12 +523,8 @@ items: fullName: OpenTK.Graphics.Egl.Egl.DONT_CARE type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DONT_CARE - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 120 assemblies: - OpenTK.Graphics @@ -606,12 +546,8 @@ items: fullName: OpenTK.Graphics.Egl.Egl.CONTEXT_LOST type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CONTEXT_LOST - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 121 assemblies: - OpenTK.Graphics @@ -633,12 +569,8 @@ items: fullName: OpenTK.Graphics.Egl.Egl.BUFFER_SIZE type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: BUFFER_SIZE - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 122 assemblies: - OpenTK.Graphics @@ -660,12 +592,8 @@ items: fullName: OpenTK.Graphics.Egl.Egl.ALPHA_SIZE type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ALPHA_SIZE - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 123 assemblies: - OpenTK.Graphics @@ -687,12 +615,8 @@ items: fullName: OpenTK.Graphics.Egl.Egl.BLUE_SIZE type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: BLUE_SIZE - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 124 assemblies: - OpenTK.Graphics @@ -714,12 +638,8 @@ items: fullName: OpenTK.Graphics.Egl.Egl.GREEN_SIZE type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GREEN_SIZE - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 125 assemblies: - OpenTK.Graphics @@ -741,12 +661,8 @@ items: fullName: OpenTK.Graphics.Egl.Egl.RED_SIZE type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: RED_SIZE - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 126 assemblies: - OpenTK.Graphics @@ -768,12 +684,8 @@ items: fullName: OpenTK.Graphics.Egl.Egl.DEPTH_SIZE type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DEPTH_SIZE - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 127 assemblies: - OpenTK.Graphics @@ -795,12 +707,8 @@ items: fullName: OpenTK.Graphics.Egl.Egl.STENCIL_SIZE type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: STENCIL_SIZE - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 128 assemblies: - OpenTK.Graphics @@ -822,12 +730,8 @@ items: fullName: OpenTK.Graphics.Egl.Egl.CONFIG_CAVEAT type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CONFIG_CAVEAT - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 129 assemblies: - OpenTK.Graphics @@ -849,12 +753,8 @@ items: fullName: OpenTK.Graphics.Egl.Egl.CONFIG_ID type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CONFIG_ID - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 130 assemblies: - OpenTK.Graphics @@ -876,12 +776,8 @@ items: fullName: OpenTK.Graphics.Egl.Egl.LEVEL type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: LEVEL - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 131 assemblies: - OpenTK.Graphics @@ -903,12 +799,8 @@ items: fullName: OpenTK.Graphics.Egl.Egl.MAX_PBUFFER_HEIGHT type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MAX_PBUFFER_HEIGHT - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 132 assemblies: - OpenTK.Graphics @@ -930,12 +822,8 @@ items: fullName: OpenTK.Graphics.Egl.Egl.MAX_PBUFFER_PIXELS type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MAX_PBUFFER_PIXELS - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 133 assemblies: - OpenTK.Graphics @@ -957,12 +845,8 @@ items: fullName: OpenTK.Graphics.Egl.Egl.MAX_PBUFFER_WIDTH type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MAX_PBUFFER_WIDTH - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 134 assemblies: - OpenTK.Graphics @@ -984,12 +868,8 @@ items: fullName: OpenTK.Graphics.Egl.Egl.NATIVE_RENDERABLE type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: NATIVE_RENDERABLE - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 135 assemblies: - OpenTK.Graphics @@ -1011,12 +891,8 @@ items: fullName: OpenTK.Graphics.Egl.Egl.NATIVE_VISUAL_ID type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: NATIVE_VISUAL_ID - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 136 assemblies: - OpenTK.Graphics @@ -1038,12 +914,8 @@ items: fullName: OpenTK.Graphics.Egl.Egl.NATIVE_VISUAL_TYPE type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: NATIVE_VISUAL_TYPE - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 137 assemblies: - OpenTK.Graphics @@ -1065,12 +937,8 @@ items: fullName: OpenTK.Graphics.Egl.Egl.PRESERVED_RESOURCES type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: PRESERVED_RESOURCES - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 138 assemblies: - OpenTK.Graphics @@ -1092,12 +960,8 @@ items: fullName: OpenTK.Graphics.Egl.Egl.SAMPLES type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SAMPLES - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 139 assemblies: - OpenTK.Graphics @@ -1119,12 +983,8 @@ items: fullName: OpenTK.Graphics.Egl.Egl.SAMPLE_BUFFERS type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SAMPLE_BUFFERS - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 140 assemblies: - OpenTK.Graphics @@ -1146,12 +1006,8 @@ items: fullName: OpenTK.Graphics.Egl.Egl.SURFACE_TYPE type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SURFACE_TYPE - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 141 assemblies: - OpenTK.Graphics @@ -1173,12 +1029,8 @@ items: fullName: OpenTK.Graphics.Egl.Egl.TRANSPARENT_TYPE type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TRANSPARENT_TYPE - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 142 assemblies: - OpenTK.Graphics @@ -1200,12 +1052,8 @@ items: fullName: OpenTK.Graphics.Egl.Egl.TRANSPARENT_BLUE_VALUE type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TRANSPARENT_BLUE_VALUE - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 143 assemblies: - OpenTK.Graphics @@ -1227,12 +1075,8 @@ items: fullName: OpenTK.Graphics.Egl.Egl.TRANSPARENT_GREEN_VALUE type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TRANSPARENT_GREEN_VALUE - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 144 assemblies: - OpenTK.Graphics @@ -1254,12 +1098,8 @@ items: fullName: OpenTK.Graphics.Egl.Egl.TRANSPARENT_RED_VALUE type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TRANSPARENT_RED_VALUE - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 145 assemblies: - OpenTK.Graphics @@ -1281,12 +1121,8 @@ items: fullName: OpenTK.Graphics.Egl.Egl.NONE type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: NONE - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 146 assemblies: - OpenTK.Graphics @@ -1308,12 +1144,8 @@ items: fullName: OpenTK.Graphics.Egl.Egl.BIND_TO_TEXTURE_RGB type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: BIND_TO_TEXTURE_RGB - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 147 assemblies: - OpenTK.Graphics @@ -1335,12 +1167,8 @@ items: fullName: OpenTK.Graphics.Egl.Egl.BIND_TO_TEXTURE_RGBA type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: BIND_TO_TEXTURE_RGBA - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 148 assemblies: - OpenTK.Graphics @@ -1362,12 +1190,8 @@ items: fullName: OpenTK.Graphics.Egl.Egl.MIN_SWAP_INTERVAL type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MIN_SWAP_INTERVAL - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 149 assemblies: - OpenTK.Graphics @@ -1389,12 +1213,8 @@ items: fullName: OpenTK.Graphics.Egl.Egl.MAX_SWAP_INTERVAL type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MAX_SWAP_INTERVAL - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 150 assemblies: - OpenTK.Graphics @@ -1416,12 +1236,8 @@ items: fullName: OpenTK.Graphics.Egl.Egl.LUMINANCE_SIZE type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: LUMINANCE_SIZE - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 151 assemblies: - OpenTK.Graphics @@ -1443,12 +1259,8 @@ items: fullName: OpenTK.Graphics.Egl.Egl.ALPHA_MASK_SIZE type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ALPHA_MASK_SIZE - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 152 assemblies: - OpenTK.Graphics @@ -1470,12 +1282,8 @@ items: fullName: OpenTK.Graphics.Egl.Egl.COLOR_BUFFER_TYPE type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: COLOR_BUFFER_TYPE - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 153 assemblies: - OpenTK.Graphics @@ -1497,12 +1305,8 @@ items: fullName: OpenTK.Graphics.Egl.Egl.RENDERABLE_TYPE type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: RENDERABLE_TYPE - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 154 assemblies: - OpenTK.Graphics @@ -1524,12 +1328,8 @@ items: fullName: OpenTK.Graphics.Egl.Egl.MATCH_NATIVE_PIXMAP type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MATCH_NATIVE_PIXMAP - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 155 assemblies: - OpenTK.Graphics @@ -1551,12 +1351,8 @@ items: fullName: OpenTK.Graphics.Egl.Egl.CONFORMANT type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CONFORMANT - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 156 assemblies: - OpenTK.Graphics @@ -1578,12 +1374,8 @@ items: fullName: OpenTK.Graphics.Egl.Egl.SLOW_CONFIG type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SLOW_CONFIG - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 157 assemblies: - OpenTK.Graphics @@ -1605,12 +1397,8 @@ items: fullName: OpenTK.Graphics.Egl.Egl.NON_CONFORMANT_CONFIG type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: NON_CONFORMANT_CONFIG - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 158 assemblies: - OpenTK.Graphics @@ -1632,12 +1420,8 @@ items: fullName: OpenTK.Graphics.Egl.Egl.TRANSPARENT_RGB type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TRANSPARENT_RGB - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 159 assemblies: - OpenTK.Graphics @@ -1659,12 +1443,8 @@ items: fullName: OpenTK.Graphics.Egl.Egl.RGB_BUFFER type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: RGB_BUFFER - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 160 assemblies: - OpenTK.Graphics @@ -1686,12 +1466,8 @@ items: fullName: OpenTK.Graphics.Egl.Egl.LUMINANCE_BUFFER type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: LUMINANCE_BUFFER - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 161 assemblies: - OpenTK.Graphics @@ -1713,12 +1489,8 @@ items: fullName: OpenTK.Graphics.Egl.Egl.NO_TEXTURE type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: NO_TEXTURE - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 162 assemblies: - OpenTK.Graphics @@ -1740,12 +1512,8 @@ items: fullName: OpenTK.Graphics.Egl.Egl.TEXTURE_RGB type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TEXTURE_RGB - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 163 assemblies: - OpenTK.Graphics @@ -1767,12 +1535,8 @@ items: fullName: OpenTK.Graphics.Egl.Egl.TEXTURE_RGBA type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TEXTURE_RGBA - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 164 assemblies: - OpenTK.Graphics @@ -1794,12 +1558,8 @@ items: fullName: OpenTK.Graphics.Egl.Egl.TEXTURE_2D type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TEXTURE_2D - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 165 assemblies: - OpenTK.Graphics @@ -1821,12 +1581,8 @@ items: fullName: OpenTK.Graphics.Egl.Egl.PBUFFER_BIT type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: PBUFFER_BIT - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 166 assemblies: - OpenTK.Graphics @@ -1848,12 +1604,8 @@ items: fullName: OpenTK.Graphics.Egl.Egl.PIXMAP_BIT type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: PIXMAP_BIT - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 167 assemblies: - OpenTK.Graphics @@ -1875,12 +1627,8 @@ items: fullName: OpenTK.Graphics.Egl.Egl.WINDOW_BIT type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: WINDOW_BIT - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 168 assemblies: - OpenTK.Graphics @@ -1902,12 +1650,8 @@ items: fullName: OpenTK.Graphics.Egl.Egl.VG_COLORSPACE_LINEAR_BIT type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: VG_COLORSPACE_LINEAR_BIT - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 169 assemblies: - OpenTK.Graphics @@ -1929,12 +1673,8 @@ items: fullName: OpenTK.Graphics.Egl.Egl.VG_ALPHA_FORMAT_PRE_BIT type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: VG_ALPHA_FORMAT_PRE_BIT - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 170 assemblies: - OpenTK.Graphics @@ -1956,12 +1696,8 @@ items: fullName: OpenTK.Graphics.Egl.Egl.MULTISAMPLE_RESOLVE_BOX_BIT type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MULTISAMPLE_RESOLVE_BOX_BIT - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 171 assemblies: - OpenTK.Graphics @@ -1983,12 +1719,8 @@ items: fullName: OpenTK.Graphics.Egl.Egl.SWAP_BEHAVIOR_PRESERVED_BIT type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SWAP_BEHAVIOR_PRESERVED_BIT - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 172 assemblies: - OpenTK.Graphics @@ -2010,12 +1742,8 @@ items: fullName: OpenTK.Graphics.Egl.Egl.OPENGL_ES_BIT type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: OPENGL_ES_BIT - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 173 assemblies: - OpenTK.Graphics @@ -2037,12 +1765,8 @@ items: fullName: OpenTK.Graphics.Egl.Egl.OPENVG_BIT type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: OPENVG_BIT - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 174 assemblies: - OpenTK.Graphics @@ -2064,12 +1788,8 @@ items: fullName: OpenTK.Graphics.Egl.Egl.OPENGL_ES2_BIT type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: OPENGL_ES2_BIT - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 175 assemblies: - OpenTK.Graphics @@ -2091,12 +1811,8 @@ items: fullName: OpenTK.Graphics.Egl.Egl.OPENGL_BIT type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: OPENGL_BIT - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 176 assemblies: - OpenTK.Graphics @@ -2118,12 +1834,8 @@ items: fullName: OpenTK.Graphics.Egl.Egl.OPENGL_ES3_BIT type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: OPENGL_ES3_BIT - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 177 assemblies: - OpenTK.Graphics @@ -2145,12 +1857,8 @@ items: fullName: OpenTK.Graphics.Egl.Egl.VENDOR type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: VENDOR - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 178 assemblies: - OpenTK.Graphics @@ -2172,12 +1880,8 @@ items: fullName: OpenTK.Graphics.Egl.Egl.VERSION type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: VERSION - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 179 assemblies: - OpenTK.Graphics @@ -2199,12 +1903,8 @@ items: fullName: OpenTK.Graphics.Egl.Egl.EXTENSIONS type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: EXTENSIONS - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 180 assemblies: - OpenTK.Graphics @@ -2226,12 +1926,8 @@ items: fullName: OpenTK.Graphics.Egl.Egl.CLIENT_APIS type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CLIENT_APIS - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 181 assemblies: - OpenTK.Graphics @@ -2253,12 +1949,8 @@ items: fullName: OpenTK.Graphics.Egl.Egl.HEIGHT type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: HEIGHT - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 182 assemblies: - OpenTK.Graphics @@ -2280,12 +1972,8 @@ items: fullName: OpenTK.Graphics.Egl.Egl.WIDTH type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: WIDTH - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 183 assemblies: - OpenTK.Graphics @@ -2307,12 +1995,8 @@ items: fullName: OpenTK.Graphics.Egl.Egl.LARGEST_PBUFFER type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: LARGEST_PBUFFER - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 184 assemblies: - OpenTK.Graphics @@ -2334,12 +2018,8 @@ items: fullName: OpenTK.Graphics.Egl.Egl.TEXTURE_FORMAT type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TEXTURE_FORMAT - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 185 assemblies: - OpenTK.Graphics @@ -2361,12 +2041,8 @@ items: fullName: OpenTK.Graphics.Egl.Egl.TEXTURE_TARGET type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TEXTURE_TARGET - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 186 assemblies: - OpenTK.Graphics @@ -2388,12 +2064,8 @@ items: fullName: OpenTK.Graphics.Egl.Egl.MIPMAP_TEXTURE type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MIPMAP_TEXTURE - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 187 assemblies: - OpenTK.Graphics @@ -2415,12 +2087,8 @@ items: fullName: OpenTK.Graphics.Egl.Egl.MIPMAP_LEVEL type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MIPMAP_LEVEL - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 188 assemblies: - OpenTK.Graphics @@ -2442,12 +2110,8 @@ items: fullName: OpenTK.Graphics.Egl.Egl.RENDER_BUFFER type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: RENDER_BUFFER - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 189 assemblies: - OpenTK.Graphics @@ -2469,12 +2133,8 @@ items: fullName: OpenTK.Graphics.Egl.Egl.VG_COLORSPACE type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: VG_COLORSPACE - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 190 assemblies: - OpenTK.Graphics @@ -2496,12 +2156,8 @@ items: fullName: OpenTK.Graphics.Egl.Egl.VG_ALPHA_FORMAT type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: VG_ALPHA_FORMAT - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 191 assemblies: - OpenTK.Graphics @@ -2523,12 +2179,8 @@ items: fullName: OpenTK.Graphics.Egl.Egl.HORIZONTAL_RESOLUTION type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: HORIZONTAL_RESOLUTION - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 192 assemblies: - OpenTK.Graphics @@ -2550,12 +2202,8 @@ items: fullName: OpenTK.Graphics.Egl.Egl.VERTICAL_RESOLUTION type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: VERTICAL_RESOLUTION - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 193 assemblies: - OpenTK.Graphics @@ -2577,12 +2225,8 @@ items: fullName: OpenTK.Graphics.Egl.Egl.PIXEL_ASPECT_RATIO type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: PIXEL_ASPECT_RATIO - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 194 assemblies: - OpenTK.Graphics @@ -2604,12 +2248,8 @@ items: fullName: OpenTK.Graphics.Egl.Egl.SWAP_BEHAVIOR type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SWAP_BEHAVIOR - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 195 assemblies: - OpenTK.Graphics @@ -2631,12 +2271,8 @@ items: fullName: OpenTK.Graphics.Egl.Egl.MULTISAMPLE_RESOLVE type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MULTISAMPLE_RESOLVE - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 196 assemblies: - OpenTK.Graphics @@ -2658,12 +2294,8 @@ items: fullName: OpenTK.Graphics.Egl.Egl.BACK_BUFFER type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: BACK_BUFFER - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 197 assemblies: - OpenTK.Graphics @@ -2685,12 +2317,8 @@ items: fullName: OpenTK.Graphics.Egl.Egl.SINGLE_BUFFER type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SINGLE_BUFFER - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 198 assemblies: - OpenTK.Graphics @@ -2712,12 +2340,8 @@ items: fullName: OpenTK.Graphics.Egl.Egl.VG_COLORSPACE_sRGB type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: VG_COLORSPACE_sRGB - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 199 assemblies: - OpenTK.Graphics @@ -2739,12 +2363,8 @@ items: fullName: OpenTK.Graphics.Egl.Egl.VG_COLORSPACE_LINEAR type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: VG_COLORSPACE_LINEAR - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 200 assemblies: - OpenTK.Graphics @@ -2766,12 +2386,8 @@ items: fullName: OpenTK.Graphics.Egl.Egl.VG_ALPHA_FORMAT_NONPRE type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: VG_ALPHA_FORMAT_NONPRE - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 201 assemblies: - OpenTK.Graphics @@ -2793,12 +2409,8 @@ items: fullName: OpenTK.Graphics.Egl.Egl.VG_ALPHA_FORMAT_PRE type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: VG_ALPHA_FORMAT_PRE - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 202 assemblies: - OpenTK.Graphics @@ -2820,12 +2432,8 @@ items: fullName: OpenTK.Graphics.Egl.Egl.DISPLAY_SCALING type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DISPLAY_SCALING - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 203 assemblies: - OpenTK.Graphics @@ -2847,12 +2455,8 @@ items: fullName: OpenTK.Graphics.Egl.Egl.UNKNOWN type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: UNKNOWN - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 204 assemblies: - OpenTK.Graphics @@ -2874,12 +2478,8 @@ items: fullName: OpenTK.Graphics.Egl.Egl.BUFFER_PRESERVED type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: BUFFER_PRESERVED - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 205 assemblies: - OpenTK.Graphics @@ -2901,12 +2501,8 @@ items: fullName: OpenTK.Graphics.Egl.Egl.BUFFER_DESTROYED type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: BUFFER_DESTROYED - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 206 assemblies: - OpenTK.Graphics @@ -2928,12 +2524,8 @@ items: fullName: OpenTK.Graphics.Egl.Egl.OPENVG_IMAGE type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: OPENVG_IMAGE - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 207 assemblies: - OpenTK.Graphics @@ -2955,12 +2547,8 @@ items: fullName: OpenTK.Graphics.Egl.Egl.CONTEXT_CLIENT_TYPE type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CONTEXT_CLIENT_TYPE - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 208 assemblies: - OpenTK.Graphics @@ -2982,12 +2570,8 @@ items: fullName: OpenTK.Graphics.Egl.Egl.CONTEXT_CLIENT_VERSION type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CONTEXT_CLIENT_VERSION - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 209 assemblies: - OpenTK.Graphics @@ -3009,12 +2593,8 @@ items: fullName: OpenTK.Graphics.Egl.Egl.MULTISAMPLE_RESOLVE_DEFAULT type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MULTISAMPLE_RESOLVE_DEFAULT - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 210 assemblies: - OpenTK.Graphics @@ -3036,12 +2616,8 @@ items: fullName: OpenTK.Graphics.Egl.Egl.MULTISAMPLE_RESOLVE_BOX type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MULTISAMPLE_RESOLVE_BOX - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 211 assemblies: - OpenTK.Graphics @@ -3063,12 +2639,8 @@ items: fullName: OpenTK.Graphics.Egl.Egl.OPENGL_ES_API type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: OPENGL_ES_API - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 212 assemblies: - OpenTK.Graphics @@ -3090,12 +2662,8 @@ items: fullName: OpenTK.Graphics.Egl.Egl.OPENVG_API type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: OPENVG_API - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 213 assemblies: - OpenTK.Graphics @@ -3117,12 +2685,8 @@ items: fullName: OpenTK.Graphics.Egl.Egl.OPENGL_API type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: OPENGL_API - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 214 assemblies: - OpenTK.Graphics @@ -3144,12 +2708,8 @@ items: fullName: OpenTK.Graphics.Egl.Egl.DRAW type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DRAW - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 215 assemblies: - OpenTK.Graphics @@ -3171,12 +2731,8 @@ items: fullName: OpenTK.Graphics.Egl.Egl.READ type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: READ - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 216 assemblies: - OpenTK.Graphics @@ -3198,12 +2754,8 @@ items: fullName: OpenTK.Graphics.Egl.Egl.CORE_NATIVE_ENGINE type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CORE_NATIVE_ENGINE - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 217 assemblies: - OpenTK.Graphics @@ -3225,12 +2777,8 @@ items: fullName: OpenTK.Graphics.Egl.Egl.COLORSPACE type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: COLORSPACE - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 218 assemblies: - OpenTK.Graphics @@ -3252,12 +2800,8 @@ items: fullName: OpenTK.Graphics.Egl.Egl.ALPHA_FORMAT type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ALPHA_FORMAT - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 219 assemblies: - OpenTK.Graphics @@ -3279,12 +2823,8 @@ items: fullName: OpenTK.Graphics.Egl.Egl.COLORSPACE_sRGB type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: COLORSPACE_sRGB - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 220 assemblies: - OpenTK.Graphics @@ -3306,12 +2846,8 @@ items: fullName: OpenTK.Graphics.Egl.Egl.COLORSPACE_LINEAR type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: COLORSPACE_LINEAR - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 221 assemblies: - OpenTK.Graphics @@ -3333,12 +2869,8 @@ items: fullName: OpenTK.Graphics.Egl.Egl.ALPHA_FORMAT_NONPRE type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ALPHA_FORMAT_NONPRE - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 222 assemblies: - OpenTK.Graphics @@ -3360,12 +2892,8 @@ items: fullName: OpenTK.Graphics.Egl.Egl.ALPHA_FORMAT_PRE type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ALPHA_FORMAT_PRE - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 223 assemblies: - OpenTK.Graphics @@ -3387,12 +2915,8 @@ items: fullName: OpenTK.Graphics.Egl.Egl.D3D_TEXTURE_2D_SHARE_HANDLE_ANGLE type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: D3D_TEXTURE_2D_SHARE_HANDLE_ANGLE - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 226 assemblies: - OpenTK.Graphics @@ -3414,12 +2938,8 @@ items: fullName: OpenTK.Graphics.Egl.Egl.FIXED_SIZE_ANGLE type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: FIXED_SIZE_ANGLE - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 228 assemblies: - OpenTK.Graphics @@ -3503,12 +3023,8 @@ items: fullName: OpenTK.Graphics.Egl.Egl.SOFTWARE_DISPLAY_ANGLE type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SOFTWARE_DISPLAY_ANGLE - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 237 assemblies: - OpenTK.Graphics @@ -3530,12 +3046,8 @@ items: fullName: OpenTK.Graphics.Egl.Egl.D3D11_ELSE_D3D9_DISPLAY_ANGLE type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: D3D11_ELSE_D3D9_DISPLAY_ANGLE - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 239 assemblies: - OpenTK.Graphics @@ -3557,12 +3069,8 @@ items: fullName: OpenTK.Graphics.Egl.Egl.D3D11_ONLY_DISPLAY_ANGLE type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: D3D11_ONLY_DISPLAY_ANGLE - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 240 assemblies: - OpenTK.Graphics @@ -3584,12 +3092,8 @@ items: fullName: OpenTK.Graphics.Egl.Egl.D3D9_DEVICE_ANGLE type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: D3D9_DEVICE_ANGLE - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 242 assemblies: - OpenTK.Graphics @@ -3611,12 +3115,8 @@ items: fullName: OpenTK.Graphics.Egl.Egl.D3D11_DEVICE_ANGLE type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: D3D11_DEVICE_ANGLE - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 243 assemblies: - OpenTK.Graphics @@ -3638,12 +3138,8 @@ items: fullName: OpenTK.Graphics.Egl.Egl.PLATFORM_ANGLE_ANGLE type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: PLATFORM_ANGLE_ANGLE - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 245 assemblies: - OpenTK.Graphics @@ -3665,12 +3161,8 @@ items: fullName: OpenTK.Graphics.Egl.Egl.PLATFORM_ANGLE_TYPE_ANGLE type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: PLATFORM_ANGLE_TYPE_ANGLE - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 246 assemblies: - OpenTK.Graphics @@ -3692,12 +3184,8 @@ items: fullName: OpenTK.Graphics.Egl.Egl.PLATFORM_ANGLE_MAX_VERSION_MAJOR_ANGLE type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: PLATFORM_ANGLE_MAX_VERSION_MAJOR_ANGLE - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 247 assemblies: - OpenTK.Graphics @@ -3719,12 +3207,8 @@ items: fullName: OpenTK.Graphics.Egl.Egl.PLATFORM_ANGLE_MAX_VERSION_MINOR_ANGLE type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: PLATFORM_ANGLE_MAX_VERSION_MINOR_ANGLE - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 248 assemblies: - OpenTK.Graphics @@ -3746,12 +3230,8 @@ items: fullName: OpenTK.Graphics.Egl.Egl.PLATFORM_ANGLE_TYPE_DEFAULT_ANGLE type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: PLATFORM_ANGLE_TYPE_DEFAULT_ANGLE - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 249 assemblies: - OpenTK.Graphics @@ -3773,12 +3253,8 @@ items: fullName: OpenTK.Graphics.Egl.Egl.PLATFORM_ANGLE_TYPE_D3D9_ANGLE type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: PLATFORM_ANGLE_TYPE_D3D9_ANGLE - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 251 assemblies: - OpenTK.Graphics @@ -3800,12 +3276,8 @@ items: fullName: OpenTK.Graphics.Egl.Egl.PLATFORM_ANGLE_TYPE_D3D11_ANGLE type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: PLATFORM_ANGLE_TYPE_D3D11_ANGLE - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 252 assemblies: - OpenTK.Graphics @@ -3827,12 +3299,8 @@ items: fullName: OpenTK.Graphics.Egl.Egl.PLATFORM_ANGLE_DEVICE_TYPE_ANGLE type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: PLATFORM_ANGLE_DEVICE_TYPE_ANGLE - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 253 assemblies: - OpenTK.Graphics @@ -3854,12 +3322,8 @@ items: fullName: OpenTK.Graphics.Egl.Egl.PLATFORM_ANGLE_DEVICE_TYPE_HARDWARE_ANGLE type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: PLATFORM_ANGLE_DEVICE_TYPE_HARDWARE_ANGLE - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 254 assemblies: - OpenTK.Graphics @@ -3881,12 +3345,8 @@ items: fullName: OpenTK.Graphics.Egl.Egl.PLATFORM_ANGLE_DEVICE_TYPE_WARP_ANGLE type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: PLATFORM_ANGLE_DEVICE_TYPE_WARP_ANGLE - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 255 assemblies: - OpenTK.Graphics @@ -3908,12 +3368,8 @@ items: fullName: OpenTK.Graphics.Egl.Egl.PLATFORM_ANGLE_DEVICE_TYPE_REFERENCE_ANGLE type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: PLATFORM_ANGLE_DEVICE_TYPE_REFERENCE_ANGLE - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 256 assemblies: - OpenTK.Graphics @@ -3935,12 +3391,8 @@ items: fullName: OpenTK.Graphics.Egl.Egl.PLATFORM_ANGLE_ENABLE_AUTOMATIC_TRIM_ANGLE type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: PLATFORM_ANGLE_ENABLE_AUTOMATIC_TRIM_ANGLE - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 257 assemblies: - OpenTK.Graphics @@ -3962,12 +3414,8 @@ items: fullName: OpenTK.Graphics.Egl.Egl.PLATFORM_ANGLE_TYPE_OPENGL_ANGLE type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: PLATFORM_ANGLE_TYPE_OPENGL_ANGLE - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 259 assemblies: - OpenTK.Graphics @@ -3989,12 +3437,8 @@ items: fullName: OpenTK.Graphics.Egl.Egl.PLATFORM_ANGLE_TYPE_OPENGLES_ANGLE type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: PLATFORM_ANGLE_TYPE_OPENGLES_ANGLE - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 260 assemblies: - OpenTK.Graphics @@ -4016,12 +3460,8 @@ items: fullName: OpenTK.Graphics.Egl.Egl.EGL_D3D_TEXTURE_2D_SHARE_HANDLE_ANGLE type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: EGL_D3D_TEXTURE_2D_SHARE_HANDLE_ANGLE - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 262 assemblies: - OpenTK.Graphics @@ -4168,15 +3608,15 @@ items: langs: - csharp - vb - name: GetConfigs(nint, nint[], int, out int) - nameWithType: Egl.GetConfigs(nint, nint[], int, out int) - fullName: OpenTK.Graphics.Egl.Egl.GetConfigs(nint, nint[], int, out int) + name: GetConfigs(nint, nint[]?, int, out int) + nameWithType: Egl.GetConfigs(nint, nint[]?, int, out int) + fullName: OpenTK.Graphics.Egl.Egl.GetConfigs(nint, nint[]?, int, out int) type: Method assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Egl syntax: - content: public static extern bool GetConfigs(nint dpy, nint[] configs, int config_size, out int num_config) + content: public static extern bool GetConfigs(nint dpy, nint[]? configs, int config_size, out int num_config) parameters: - id: dpy type: System.IntPtr @@ -4662,12 +4102,8 @@ items: fullName: OpenTK.Graphics.Egl.Egl.CreateContext(nint, nint, nint, int[]?) type: Method source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateContext - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 347 assemblies: - OpenTK.Graphics @@ -5110,12 +4546,8 @@ items: fullName: OpenTK.Graphics.Egl.Egl.IsSupported type: Property source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: IsSupported - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 411 assemblies: - OpenTK.Graphics diff --git a/api/OpenTK.Graphics.Egl.EglException.yml b/api/OpenTK.Graphics.Egl.EglException.yml index b9057f22..16309fb6 100644 --- a/api/OpenTK.Graphics.Egl.EglException.yml +++ b/api/OpenTK.Graphics.Egl.EglException.yml @@ -15,12 +15,8 @@ items: fullName: OpenTK.Graphics.Egl.EglException type: Class source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: EglException - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 91 assemblies: - OpenTK.Graphics @@ -35,7 +31,6 @@ items: - System.Runtime.Serialization.ISerializable inheritedMembers: - System.Exception.GetBaseException - - System.Exception.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) - System.Exception.GetType - System.Exception.ToString - System.Exception.Data @@ -64,12 +59,8 @@ items: fullName: OpenTK.Graphics.Egl.EglException.EglException() type: Constructor source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 93 assemblies: - OpenTK.Graphics @@ -93,12 +84,8 @@ items: fullName: OpenTK.Graphics.Egl.EglException.EglException(string) type: Constructor source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 96 assemblies: - OpenTK.Graphics @@ -193,48 +180,6 @@ references: href: https://learn.microsoft.com/dotnet/api/system.exception.getbaseexception - name: ( - name: ) -- uid: System.Exception.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) - commentId: M:System.Exception.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) - parent: System.Exception - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.exception.getobjectdata - name: GetObjectData(SerializationInfo, StreamingContext) - nameWithType: Exception.GetObjectData(SerializationInfo, StreamingContext) - fullName: System.Exception.GetObjectData(System.Runtime.Serialization.SerializationInfo, System.Runtime.Serialization.StreamingContext) - spec.csharp: - - uid: System.Exception.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) - name: GetObjectData - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.exception.getobjectdata - - name: ( - - uid: System.Runtime.Serialization.SerializationInfo - name: SerializationInfo - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.runtime.serialization.serializationinfo - - name: ',' - - name: " " - - uid: System.Runtime.Serialization.StreamingContext - name: StreamingContext - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.runtime.serialization.streamingcontext - - name: ) - spec.vb: - - uid: System.Exception.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) - name: GetObjectData - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.exception.getobjectdata - - name: ( - - uid: System.Runtime.Serialization.SerializationInfo - name: SerializationInfo - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.runtime.serialization.serializationinfo - - name: ',' - - name: " " - - uid: System.Runtime.Serialization.StreamingContext - name: StreamingContext - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.runtime.serialization.streamingcontext - - name: ) - uid: System.Exception.GetType commentId: M:System.Exception.GetType parent: System.Exception diff --git a/api/OpenTK.Graphics.Egl.ErrorCode.yml b/api/OpenTK.Graphics.Egl.ErrorCode.yml index 89353109..21a638d0 100644 --- a/api/OpenTK.Graphics.Egl.ErrorCode.yml +++ b/api/OpenTK.Graphics.Egl.ErrorCode.yml @@ -28,12 +28,8 @@ items: fullName: OpenTK.Graphics.Egl.ErrorCode type: Enum source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ErrorCode - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 61 assemblies: - OpenTK.Graphics @@ -53,12 +49,8 @@ items: fullName: OpenTK.Graphics.Egl.ErrorCode.SUCCESS type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SUCCESS - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 63 assemblies: - OpenTK.Graphics @@ -79,12 +71,8 @@ items: fullName: OpenTK.Graphics.Egl.ErrorCode.NOT_INITIALIZED type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: NOT_INITIALIZED - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 64 assemblies: - OpenTK.Graphics @@ -105,12 +93,8 @@ items: fullName: OpenTK.Graphics.Egl.ErrorCode.BAD_ACCESS type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: BAD_ACCESS - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 65 assemblies: - OpenTK.Graphics @@ -131,12 +115,8 @@ items: fullName: OpenTK.Graphics.Egl.ErrorCode.BAD_ALLOC type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: BAD_ALLOC - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 66 assemblies: - OpenTK.Graphics @@ -157,12 +137,8 @@ items: fullName: OpenTK.Graphics.Egl.ErrorCode.BAD_ATTRIBUTE type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: BAD_ATTRIBUTE - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 67 assemblies: - OpenTK.Graphics @@ -183,12 +159,8 @@ items: fullName: OpenTK.Graphics.Egl.ErrorCode.BAD_CONFIG type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: BAD_CONFIG - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 68 assemblies: - OpenTK.Graphics @@ -209,12 +181,8 @@ items: fullName: OpenTK.Graphics.Egl.ErrorCode.BAD_CONTEXT type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: BAD_CONTEXT - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 69 assemblies: - OpenTK.Graphics @@ -235,12 +203,8 @@ items: fullName: OpenTK.Graphics.Egl.ErrorCode.BAD_CURRENT_SURFACE type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: BAD_CURRENT_SURFACE - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 70 assemblies: - OpenTK.Graphics @@ -261,12 +225,8 @@ items: fullName: OpenTK.Graphics.Egl.ErrorCode.BAD_DISPLAY type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: BAD_DISPLAY - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 71 assemblies: - OpenTK.Graphics @@ -287,12 +247,8 @@ items: fullName: OpenTK.Graphics.Egl.ErrorCode.BAD_MATCH type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: BAD_MATCH - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 72 assemblies: - OpenTK.Graphics @@ -313,12 +269,8 @@ items: fullName: OpenTK.Graphics.Egl.ErrorCode.BAD_NATIVE_PIXMAP type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: BAD_NATIVE_PIXMAP - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 73 assemblies: - OpenTK.Graphics @@ -339,12 +291,8 @@ items: fullName: OpenTK.Graphics.Egl.ErrorCode.BAD_NATIVE_WINDOW type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: BAD_NATIVE_WINDOW - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 74 assemblies: - OpenTK.Graphics @@ -365,12 +313,8 @@ items: fullName: OpenTK.Graphics.Egl.ErrorCode.BAD_PARAMETER type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: BAD_PARAMETER - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 75 assemblies: - OpenTK.Graphics @@ -391,12 +335,8 @@ items: fullName: OpenTK.Graphics.Egl.ErrorCode.BAD_SURFACE type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: BAD_SURFACE - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 76 assemblies: - OpenTK.Graphics @@ -417,12 +357,8 @@ items: fullName: OpenTK.Graphics.Egl.ErrorCode.CONTEXT_LOST type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CONTEXT_LOST - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 77 assemblies: - OpenTK.Graphics diff --git a/api/OpenTK.Graphics.Egl.RenderApi.yml b/api/OpenTK.Graphics.Egl.RenderApi.yml index 9ae298dc..e885deb6 100644 --- a/api/OpenTK.Graphics.Egl.RenderApi.yml +++ b/api/OpenTK.Graphics.Egl.RenderApi.yml @@ -16,12 +16,8 @@ items: fullName: OpenTK.Graphics.Egl.RenderApi type: Enum source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: RenderApi - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 44 assemblies: - OpenTK.Graphics @@ -41,12 +37,8 @@ items: fullName: OpenTK.Graphics.Egl.RenderApi.ES type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ES - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 46 assemblies: - OpenTK.Graphics @@ -67,12 +59,8 @@ items: fullName: OpenTK.Graphics.Egl.RenderApi.GL type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GL - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 47 assemblies: - OpenTK.Graphics @@ -93,12 +81,8 @@ items: fullName: OpenTK.Graphics.Egl.RenderApi.VG type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: VG - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 48 assemblies: - OpenTK.Graphics diff --git a/api/OpenTK.Graphics.Egl.RenderableFlags.yml b/api/OpenTK.Graphics.Egl.RenderableFlags.yml index 7cdaae8d..65b1d2b8 100644 --- a/api/OpenTK.Graphics.Egl.RenderableFlags.yml +++ b/api/OpenTK.Graphics.Egl.RenderableFlags.yml @@ -18,12 +18,8 @@ items: fullName: OpenTK.Graphics.Egl.RenderableFlags type: Enum source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: RenderableFlags - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 51 assemblies: - OpenTK.Graphics @@ -53,12 +49,8 @@ items: fullName: OpenTK.Graphics.Egl.RenderableFlags.ES type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ES - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 54 assemblies: - OpenTK.Graphics @@ -79,12 +71,8 @@ items: fullName: OpenTK.Graphics.Egl.RenderableFlags.ES2 type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ES2 - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 55 assemblies: - OpenTK.Graphics @@ -105,12 +93,8 @@ items: fullName: OpenTK.Graphics.Egl.RenderableFlags.ES3 type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ES3 - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 56 assemblies: - OpenTK.Graphics @@ -131,12 +115,8 @@ items: fullName: OpenTK.Graphics.Egl.RenderableFlags.GL type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GL - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 57 assemblies: - OpenTK.Graphics @@ -157,12 +137,8 @@ items: fullName: OpenTK.Graphics.Egl.RenderableFlags.VG type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: VG - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 58 assemblies: - OpenTK.Graphics diff --git a/api/OpenTK.Graphics.Egl.SurfaceType.yml b/api/OpenTK.Graphics.Egl.SurfaceType.yml index f34e9090..01f8d4c1 100644 --- a/api/OpenTK.Graphics.Egl.SurfaceType.yml +++ b/api/OpenTK.Graphics.Egl.SurfaceType.yml @@ -20,12 +20,8 @@ items: fullName: OpenTK.Graphics.Egl.SurfaceType type: Enum source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SurfaceType - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 80 assemblies: - OpenTK.Graphics @@ -45,12 +41,8 @@ items: fullName: OpenTK.Graphics.Egl.SurfaceType.PBUFFER_BIT type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: PBUFFER_BIT - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 82 assemblies: - OpenTK.Graphics @@ -71,12 +63,8 @@ items: fullName: OpenTK.Graphics.Egl.SurfaceType.PIXMAP_BIT type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: PIXMAP_BIT - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 83 assemblies: - OpenTK.Graphics @@ -97,12 +85,8 @@ items: fullName: OpenTK.Graphics.Egl.SurfaceType.WINDOW_BIT type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: WINDOW_BIT - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 84 assemblies: - OpenTK.Graphics @@ -123,12 +107,8 @@ items: fullName: OpenTK.Graphics.Egl.SurfaceType.VG_COLORSPACE_LINEAR_BIT type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: VG_COLORSPACE_LINEAR_BIT - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 85 assemblies: - OpenTK.Graphics @@ -149,12 +129,8 @@ items: fullName: OpenTK.Graphics.Egl.SurfaceType.VG_ALPHA_FORMAT_PRE_BIT type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: VG_ALPHA_FORMAT_PRE_BIT - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 86 assemblies: - OpenTK.Graphics @@ -175,12 +151,8 @@ items: fullName: OpenTK.Graphics.Egl.SurfaceType.MULTISAMPLE_RESOLVE_BOX_BIT type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MULTISAMPLE_RESOLVE_BOX_BIT - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 87 assemblies: - OpenTK.Graphics @@ -201,12 +173,8 @@ items: fullName: OpenTK.Graphics.Egl.SurfaceType.SWAP_BEHAVIOR_PRESERVED_BIT type: Field source: - remote: - path: src/OpenTK.Graphics/Egl/Egl.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SWAP_BEHAVIOR_PRESERVED_BIT - path: opentk/src/OpenTK.Graphics/Egl/Egl.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs startLine: 88 assemblies: - OpenTK.Graphics diff --git a/api/OpenTK.Graphics.FramebufferHandle.yml b/api/OpenTK.Graphics.FramebufferHandle.yml index fd40cd02..e27af4bc 100644 --- a/api/OpenTK.Graphics.FramebufferHandle.yml +++ b/api/OpenTK.Graphics.FramebufferHandle.yml @@ -23,12 +23,8 @@ items: fullName: OpenTK.Graphics.FramebufferHandle type: Struct source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: FramebufferHandle - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 1043 assemblies: - OpenTK.Graphics @@ -55,12 +51,8 @@ items: fullName: OpenTK.Graphics.FramebufferHandle.Zero type: Field source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Zero - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 1045 assemblies: - OpenTK.Graphics @@ -82,12 +74,8 @@ items: fullName: OpenTK.Graphics.FramebufferHandle.Handle type: Field source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Handle - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 1047 assemblies: - OpenTK.Graphics @@ -109,12 +97,8 @@ items: fullName: OpenTK.Graphics.FramebufferHandle.FramebufferHandle(int) type: Constructor source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 1049 assemblies: - OpenTK.Graphics @@ -141,12 +125,8 @@ items: fullName: OpenTK.Graphics.FramebufferHandle.Equals(object?) type: Method source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Equals - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 1054 assemblies: - OpenTK.Graphics @@ -180,12 +160,8 @@ items: fullName: OpenTK.Graphics.FramebufferHandle.Equals(OpenTK.Graphics.FramebufferHandle) type: Method source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Equals - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 1059 assemblies: - OpenTK.Graphics @@ -217,12 +193,8 @@ items: fullName: OpenTK.Graphics.FramebufferHandle.GetHashCode() type: Method source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetHashCode - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 1064 assemblies: - OpenTK.Graphics @@ -249,12 +221,8 @@ items: fullName: OpenTK.Graphics.FramebufferHandle.operator ==(OpenTK.Graphics.FramebufferHandle, OpenTK.Graphics.FramebufferHandle) type: Operator source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Equality - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 1069 assemblies: - OpenTK.Graphics @@ -285,12 +253,8 @@ items: fullName: OpenTK.Graphics.FramebufferHandle.operator !=(OpenTK.Graphics.FramebufferHandle, OpenTK.Graphics.FramebufferHandle) type: Operator source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Inequality - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 1074 assemblies: - OpenTK.Graphics @@ -321,12 +285,8 @@ items: fullName: OpenTK.Graphics.FramebufferHandle.explicit operator OpenTK.Graphics.FramebufferHandle(int) type: Operator source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Explicit - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 1079 assemblies: - OpenTK.Graphics @@ -355,12 +315,8 @@ items: fullName: OpenTK.Graphics.FramebufferHandle.explicit operator int(OpenTK.Graphics.FramebufferHandle) type: Operator source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Explicit - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 1080 assemblies: - OpenTK.Graphics diff --git a/api/OpenTK.Graphics.GLHandleARB.yml b/api/OpenTK.Graphics.GLHandleARB.yml index 41bf4475..731bbbb2 100644 --- a/api/OpenTK.Graphics.GLHandleARB.yml +++ b/api/OpenTK.Graphics.GLHandleARB.yml @@ -24,12 +24,8 @@ items: fullName: OpenTK.Graphics.GLHandleARB type: Struct source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GLHandleARB - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 754 assemblies: - OpenTK.Graphics @@ -56,12 +52,8 @@ items: fullName: OpenTK.Graphics.GLHandleARB.GLHandleARB(uint) type: Constructor source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 760 assemblies: - OpenTK.Graphics @@ -88,12 +80,8 @@ items: fullName: OpenTK.Graphics.GLHandleARB.GLHandleARB(nint) type: Constructor source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 766 assemblies: - OpenTK.Graphics @@ -120,12 +108,8 @@ items: fullName: OpenTK.Graphics.GLHandleARB.Equals(object?) type: Method source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Equals - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 772 assemblies: - OpenTK.Graphics @@ -159,12 +143,8 @@ items: fullName: OpenTK.Graphics.GLHandleARB.Equals(OpenTK.Graphics.GLHandleARB) type: Method source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Equals - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 777 assemblies: - OpenTK.Graphics @@ -196,12 +176,8 @@ items: fullName: OpenTK.Graphics.GLHandleARB.GetHashCode() type: Method source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetHashCode - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 782 assemblies: - OpenTK.Graphics @@ -228,12 +204,8 @@ items: fullName: OpenTK.Graphics.GLHandleARB.operator ==(OpenTK.Graphics.GLHandleARB, OpenTK.Graphics.GLHandleARB) type: Operator source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Equality - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 787 assemblies: - OpenTK.Graphics @@ -264,12 +236,8 @@ items: fullName: OpenTK.Graphics.GLHandleARB.operator !=(OpenTK.Graphics.GLHandleARB, OpenTK.Graphics.GLHandleARB) type: Operator source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Inequality - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 792 assemblies: - OpenTK.Graphics @@ -300,12 +268,8 @@ items: fullName: OpenTK.Graphics.GLHandleARB.explicit operator OpenTK.Graphics.GLHandleARB(uint) type: Operator source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Explicit - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 797 assemblies: - OpenTK.Graphics @@ -334,12 +298,8 @@ items: fullName: OpenTK.Graphics.GLHandleARB.explicit operator OpenTK.Graphics.GLHandleARB(nint) type: Operator source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Explicit - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 798 assemblies: - OpenTK.Graphics @@ -368,12 +328,8 @@ items: fullName: OpenTK.Graphics.GLHandleARB.explicit operator uint(OpenTK.Graphics.GLHandleARB) type: Operator source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Explicit - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 799 assemblies: - OpenTK.Graphics @@ -402,12 +358,8 @@ items: fullName: OpenTK.Graphics.GLHandleARB.explicit operator nint(OpenTK.Graphics.GLHandleARB) type: Operator source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Explicit - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 800 assemblies: - OpenTK.Graphics diff --git a/api/OpenTK.Graphics.GLLoader.yml b/api/OpenTK.Graphics.GLLoader.yml index 59c24acf..4e3c06ee 100644 --- a/api/OpenTK.Graphics.GLLoader.yml +++ b/api/OpenTK.Graphics.GLLoader.yml @@ -14,12 +14,8 @@ items: fullName: OpenTK.Graphics.GLLoader type: Class source: - remote: - path: src/OpenTK.Graphics/GLLoader.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GLLoader - path: opentk/src/OpenTK.Graphics/GLLoader.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLLoader.cs startLine: 7 assemblies: - OpenTK.Graphics @@ -51,12 +47,8 @@ items: fullName: OpenTK.Graphics.GLLoader.LoadBindings(OpenTK.IBindingsContext) type: Method source: - remote: - path: src/OpenTK.Graphics/GLLoader.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: LoadBindings - path: opentk/src/OpenTK.Graphics/GLLoader.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLLoader.cs startLine: 18 assemblies: - OpenTK.Graphics diff --git a/api/OpenTK.Graphics.GLSync.yml b/api/OpenTK.Graphics.GLSync.yml index 815995e4..a0c4932c 100644 --- a/api/OpenTK.Graphics.GLSync.yml +++ b/api/OpenTK.Graphics.GLSync.yml @@ -22,12 +22,8 @@ items: fullName: OpenTK.Graphics.GLSync type: Struct source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GLSync - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 716 assemblies: - OpenTK.Graphics @@ -54,12 +50,8 @@ items: fullName: OpenTK.Graphics.GLSync.Value type: Field source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Value - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 718 assemblies: - OpenTK.Graphics @@ -81,12 +73,8 @@ items: fullName: OpenTK.Graphics.GLSync.GLSync(nint) type: Constructor source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 720 assemblies: - OpenTK.Graphics @@ -113,12 +101,8 @@ items: fullName: OpenTK.Graphics.GLSync.Equals(object?) type: Method source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Equals - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 725 assemblies: - OpenTK.Graphics @@ -152,12 +136,8 @@ items: fullName: OpenTK.Graphics.GLSync.Equals(OpenTK.Graphics.GLSync) type: Method source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Equals - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 730 assemblies: - OpenTK.Graphics @@ -189,12 +169,8 @@ items: fullName: OpenTK.Graphics.GLSync.GetHashCode() type: Method source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetHashCode - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 735 assemblies: - OpenTK.Graphics @@ -221,12 +197,8 @@ items: fullName: OpenTK.Graphics.GLSync.operator ==(OpenTK.Graphics.GLSync, OpenTK.Graphics.GLSync) type: Operator source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Equality - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 740 assemblies: - OpenTK.Graphics @@ -257,12 +229,8 @@ items: fullName: OpenTK.Graphics.GLSync.operator !=(OpenTK.Graphics.GLSync, OpenTK.Graphics.GLSync) type: Operator source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Inequality - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 745 assemblies: - OpenTK.Graphics @@ -293,12 +261,8 @@ items: fullName: OpenTK.Graphics.GLSync.explicit operator OpenTK.Graphics.GLSync(nint) type: Operator source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Explicit - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 750 assemblies: - OpenTK.Graphics @@ -327,12 +291,8 @@ items: fullName: OpenTK.Graphics.GLSync.explicit operator nint(OpenTK.Graphics.GLSync) type: Operator source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Explicit - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 751 assemblies: - OpenTK.Graphics diff --git a/api/OpenTK.Graphics.GLXLoader.BindingsContext.yml b/api/OpenTK.Graphics.GLXLoader.BindingsContext.yml index 3bf36848..4a1dccb1 100644 --- a/api/OpenTK.Graphics.GLXLoader.BindingsContext.yml +++ b/api/OpenTK.Graphics.GLXLoader.BindingsContext.yml @@ -14,12 +14,8 @@ items: fullName: OpenTK.Graphics.GLXLoader.BindingsContext type: Class source: - remote: - path: src/OpenTK.Graphics/GLXLoader.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: BindingsContext - path: opentk/src/OpenTK.Graphics/GLXLoader.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLXLoader.cs startLine: 13 assemblies: - OpenTK.Graphics @@ -49,12 +45,8 @@ items: fullName: OpenTK.Graphics.GLXLoader.BindingsContext.GetProcAddress(string) type: Method source: - remote: - path: src/OpenTK.Graphics/GLXLoader.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetProcAddress - path: opentk/src/OpenTK.Graphics/GLXLoader.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLXLoader.cs startLine: 15 assemblies: - OpenTK.Graphics diff --git a/api/OpenTK.Graphics.GLXLoader.yml b/api/OpenTK.Graphics.GLXLoader.yml index bc998118..c58073c7 100644 --- a/api/OpenTK.Graphics.GLXLoader.yml +++ b/api/OpenTK.Graphics.GLXLoader.yml @@ -13,12 +13,8 @@ items: fullName: OpenTK.Graphics.GLXLoader type: Class source: - remote: - path: src/OpenTK.Graphics/GLXLoader.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GLXLoader - path: opentk/src/OpenTK.Graphics/GLXLoader.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLXLoader.cs startLine: 11 assemblies: - OpenTK.Graphics diff --git a/api/OpenTK.Graphics.Glx.All.yml b/api/OpenTK.Graphics.Glx.All.yml index bcce15eb..bf267aae 100644 --- a/api/OpenTK.Graphics.Glx.All.yml +++ b/api/OpenTK.Graphics.Glx.All.yml @@ -306,12 +306,8 @@ items: fullName: OpenTK.Graphics.Glx.All type: Enum source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: All - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 8 assemblies: - OpenTK.Graphics @@ -331,12 +327,8 @@ items: fullName: OpenTK.Graphics.Glx.All.ContextReleaseBehaviorNoneArb type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ContextReleaseBehaviorNoneArb - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 10 assemblies: - OpenTK.Graphics @@ -357,12 +349,8 @@ items: fullName: OpenTK.Graphics.Glx.All.Pbufferclobber type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Pbufferclobber - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 11 assemblies: - OpenTK.Graphics @@ -383,12 +371,8 @@ items: fullName: OpenTK.Graphics.Glx.All.StereoNotifyExt type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: StereoNotifyExt - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 12 assemblies: - OpenTK.Graphics @@ -409,12 +393,8 @@ items: fullName: OpenTK.Graphics.Glx.All.SyncFrameSgix type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SyncFrameSgix - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 13 assemblies: - OpenTK.Graphics @@ -435,12 +415,8 @@ items: fullName: OpenTK.Graphics.Glx.All._3dfxWindowModeMesa type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _3dfxWindowModeMesa - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 14 assemblies: - OpenTK.Graphics @@ -461,12 +437,8 @@ items: fullName: OpenTK.Graphics.Glx.All.BadScreen type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: BadScreen - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 15 assemblies: - OpenTK.Graphics @@ -487,12 +459,8 @@ items: fullName: OpenTK.Graphics.Glx.All.Bufferswapcomplete type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Bufferswapcomplete - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 16 assemblies: - OpenTK.Graphics @@ -513,12 +481,8 @@ items: fullName: OpenTK.Graphics.Glx.All.ContextCoreProfileBitArb type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ContextCoreProfileBitArb - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 17 assemblies: - OpenTK.Graphics @@ -539,12 +503,8 @@ items: fullName: OpenTK.Graphics.Glx.All.ContextDebugBitArb type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ContextDebugBitArb - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 18 assemblies: - OpenTK.Graphics @@ -565,12 +525,8 @@ items: fullName: OpenTK.Graphics.Glx.All.FrontLeftBufferBit type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: FrontLeftBufferBit - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 19 assemblies: - OpenTK.Graphics @@ -591,12 +547,8 @@ items: fullName: OpenTK.Graphics.Glx.All.FrontLeftBufferBitSgix type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: FrontLeftBufferBitSgix - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 20 assemblies: - OpenTK.Graphics @@ -617,12 +569,8 @@ items: fullName: OpenTK.Graphics.Glx.All.HyperpipeDisplayPipeSgix type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: HyperpipeDisplayPipeSgix - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 21 assemblies: - OpenTK.Graphics @@ -643,12 +591,8 @@ items: fullName: OpenTK.Graphics.Glx.All.PipeRectSgix type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: PipeRectSgix - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 22 assemblies: - OpenTK.Graphics @@ -669,12 +613,8 @@ items: fullName: OpenTK.Graphics.Glx.All.RgbaBit type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: RgbaBit - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 23 assemblies: - OpenTK.Graphics @@ -695,12 +635,8 @@ items: fullName: OpenTK.Graphics.Glx.All.RgbaBitSgix type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: RgbaBitSgix - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 24 assemblies: - OpenTK.Graphics @@ -721,12 +657,8 @@ items: fullName: OpenTK.Graphics.Glx.All.StereoNotifyMaskExt type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: StereoNotifyMaskExt - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 25 assemblies: - OpenTK.Graphics @@ -747,12 +679,8 @@ items: fullName: OpenTK.Graphics.Glx.All.SyncSwapSgix type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SyncSwapSgix - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 26 assemblies: - OpenTK.Graphics @@ -773,12 +701,8 @@ items: fullName: OpenTK.Graphics.Glx.All.Texture1dBitExt type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Texture1dBitExt - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 27 assemblies: - OpenTK.Graphics @@ -799,12 +723,8 @@ items: fullName: OpenTK.Graphics.Glx.All.UseGl type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: UseGl - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 28 assemblies: - OpenTK.Graphics @@ -825,12 +745,8 @@ items: fullName: OpenTK.Graphics.Glx.All.Vendor type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Vendor - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 29 assemblies: - OpenTK.Graphics @@ -851,12 +767,8 @@ items: fullName: OpenTK.Graphics.Glx.All.WindowBit type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: WindowBit - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 30 assemblies: - OpenTK.Graphics @@ -877,12 +789,8 @@ items: fullName: OpenTK.Graphics.Glx.All.WindowBitSgix type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: WindowBitSgix - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 31 assemblies: - OpenTK.Graphics @@ -903,12 +811,8 @@ items: fullName: OpenTK.Graphics.Glx.All._3dfxFullscreenModeMesa type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _3dfxFullscreenModeMesa - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 32 assemblies: - OpenTK.Graphics @@ -929,12 +833,8 @@ items: fullName: OpenTK.Graphics.Glx.All.BadAttribute type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: BadAttribute - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 33 assemblies: - OpenTK.Graphics @@ -955,12 +855,8 @@ items: fullName: OpenTK.Graphics.Glx.All.BufferSize type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: BufferSize - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 34 assemblies: - OpenTK.Graphics @@ -981,12 +877,8 @@ items: fullName: OpenTK.Graphics.Glx.All.ColorIndexBit type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ColorIndexBit - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 35 assemblies: - OpenTK.Graphics @@ -1007,12 +899,8 @@ items: fullName: OpenTK.Graphics.Glx.All.ColorIndexBitSgix type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ColorIndexBitSgix - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 36 assemblies: - OpenTK.Graphics @@ -1033,12 +921,8 @@ items: fullName: OpenTK.Graphics.Glx.All.ContextCompatibilityProfileBitArb type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ContextCompatibilityProfileBitArb - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 37 assemblies: - OpenTK.Graphics @@ -1059,12 +943,8 @@ items: fullName: OpenTK.Graphics.Glx.All.ContextForwardCompatibleBitArb type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ContextForwardCompatibleBitArb - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 38 assemblies: - OpenTK.Graphics @@ -1085,12 +965,8 @@ items: fullName: OpenTK.Graphics.Glx.All.FrontRightBufferBit type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: FrontRightBufferBit - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 39 assemblies: - OpenTK.Graphics @@ -1111,12 +987,8 @@ items: fullName: OpenTK.Graphics.Glx.All.FrontRightBufferBitSgix type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: FrontRightBufferBitSgix - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 40 assemblies: - OpenTK.Graphics @@ -1137,12 +1009,8 @@ items: fullName: OpenTK.Graphics.Glx.All.HyperpipeRenderPipeSgix type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: HyperpipeRenderPipeSgix - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 41 assemblies: - OpenTK.Graphics @@ -1163,12 +1031,8 @@ items: fullName: OpenTK.Graphics.Glx.All.PipeRectLimitsSgix type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: PipeRectLimitsSgix - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 42 assemblies: - OpenTK.Graphics @@ -1189,12 +1053,8 @@ items: fullName: OpenTK.Graphics.Glx.All.PixmapBit type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: PixmapBit - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 43 assemblies: - OpenTK.Graphics @@ -1215,12 +1075,8 @@ items: fullName: OpenTK.Graphics.Glx.All.PixmapBitSgix type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: PixmapBitSgix - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 44 assemblies: - OpenTK.Graphics @@ -1241,12 +1097,8 @@ items: fullName: OpenTK.Graphics.Glx.All.Texture2dBitExt type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Texture2dBitExt - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 45 assemblies: - OpenTK.Graphics @@ -1267,12 +1119,8 @@ items: fullName: OpenTK.Graphics.Glx.All.Version type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Version - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 46 assemblies: - OpenTK.Graphics @@ -1293,12 +1141,8 @@ items: fullName: OpenTK.Graphics.Glx.All.Extensions type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Extensions - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 47 assemblies: - OpenTK.Graphics @@ -1319,12 +1163,8 @@ items: fullName: OpenTK.Graphics.Glx.All.HyperpipeStereoSgix type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: HyperpipeStereoSgix - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 48 assemblies: - OpenTK.Graphics @@ -1345,12 +1185,8 @@ items: fullName: OpenTK.Graphics.Glx.All.Level type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Level - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 49 assemblies: - OpenTK.Graphics @@ -1371,12 +1207,8 @@ items: fullName: OpenTK.Graphics.Glx.All.NoExtension type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: NoExtension - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 50 assemblies: - OpenTK.Graphics @@ -1397,12 +1229,8 @@ items: fullName: OpenTK.Graphics.Glx.All.BackLeftBufferBit type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: BackLeftBufferBit - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 51 assemblies: - OpenTK.Graphics @@ -1423,12 +1251,8 @@ items: fullName: OpenTK.Graphics.Glx.All.BackLeftBufferBitSgix type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: BackLeftBufferBitSgix - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 52 assemblies: - OpenTK.Graphics @@ -1449,12 +1273,8 @@ items: fullName: OpenTK.Graphics.Glx.All.BadVisual type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: BadVisual - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 53 assemblies: - OpenTK.Graphics @@ -1475,12 +1295,8 @@ items: fullName: OpenTK.Graphics.Glx.All.ContextEs2ProfileBitExt type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ContextEs2ProfileBitExt - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 54 assemblies: - OpenTK.Graphics @@ -1501,12 +1317,8 @@ items: fullName: OpenTK.Graphics.Glx.All.ContextEsProfileBitExt type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ContextEsProfileBitExt - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 55 assemblies: - OpenTK.Graphics @@ -1527,12 +1339,8 @@ items: fullName: OpenTK.Graphics.Glx.All.ContextRobustAccessBitArb type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ContextRobustAccessBitArb - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 56 assemblies: - OpenTK.Graphics @@ -1553,12 +1361,8 @@ items: fullName: OpenTK.Graphics.Glx.All.HyperpipePixelAverageSgix type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: HyperpipePixelAverageSgix - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 57 assemblies: - OpenTK.Graphics @@ -1579,12 +1383,8 @@ items: fullName: OpenTK.Graphics.Glx.All.PbufferBit type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: PbufferBit - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 58 assemblies: - OpenTK.Graphics @@ -1605,12 +1405,8 @@ items: fullName: OpenTK.Graphics.Glx.All.PbufferBitSgix type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: PbufferBitSgix - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 59 assemblies: - OpenTK.Graphics @@ -1631,12 +1427,8 @@ items: fullName: OpenTK.Graphics.Glx.All.Rgba type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Rgba - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 60 assemblies: - OpenTK.Graphics @@ -1657,12 +1449,8 @@ items: fullName: OpenTK.Graphics.Glx.All.RgbaFloatBitArb type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: RgbaFloatBitArb - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 61 assemblies: - OpenTK.Graphics @@ -1683,12 +1471,8 @@ items: fullName: OpenTK.Graphics.Glx.All.TextureRectangleBitExt type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TextureRectangleBitExt - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 62 assemblies: - OpenTK.Graphics @@ -1709,12 +1493,8 @@ items: fullName: OpenTK.Graphics.Glx.All.BadContext type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: BadContext - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 63 assemblies: - OpenTK.Graphics @@ -1735,12 +1515,8 @@ items: fullName: OpenTK.Graphics.Glx.All.Doublebuffer type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Doublebuffer - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 64 assemblies: - OpenTK.Graphics @@ -1761,12 +1537,8 @@ items: fullName: OpenTK.Graphics.Glx.All.BadValue type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: BadValue - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 65 assemblies: - OpenTK.Graphics @@ -1787,12 +1559,8 @@ items: fullName: OpenTK.Graphics.Glx.All.Stereo type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Stereo - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 66 assemblies: - OpenTK.Graphics @@ -1813,12 +1581,8 @@ items: fullName: OpenTK.Graphics.Glx.All.AuxBuffers type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: AuxBuffers - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 67 assemblies: - OpenTK.Graphics @@ -1839,12 +1603,8 @@ items: fullName: OpenTK.Graphics.Glx.All.BadEnum type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: BadEnum - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 68 assemblies: - OpenTK.Graphics @@ -1865,12 +1625,8 @@ items: fullName: OpenTK.Graphics.Glx.All.BackRightBufferBit type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: BackRightBufferBit - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 69 assemblies: - OpenTK.Graphics @@ -1891,12 +1647,8 @@ items: fullName: OpenTK.Graphics.Glx.All.BackRightBufferBitSgix type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: BackRightBufferBitSgix - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 70 assemblies: - OpenTK.Graphics @@ -1917,12 +1669,8 @@ items: fullName: OpenTK.Graphics.Glx.All.ContextResetIsolationBitArb type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ContextResetIsolationBitArb - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 71 assemblies: - OpenTK.Graphics @@ -1943,12 +1691,8 @@ items: fullName: OpenTK.Graphics.Glx.All.RedSize type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: RedSize - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 72 assemblies: - OpenTK.Graphics @@ -1969,12 +1713,8 @@ items: fullName: OpenTK.Graphics.Glx.All.RgbaUnsignedFloatBitExt type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: RgbaUnsignedFloatBitExt - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 73 assemblies: - OpenTK.Graphics @@ -1995,12 +1735,8 @@ items: fullName: OpenTK.Graphics.Glx.All.GreenSize type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GreenSize - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 74 assemblies: - OpenTK.Graphics @@ -2021,12 +1757,8 @@ items: fullName: OpenTK.Graphics.Glx.All.BlueSize type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: BlueSize - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 75 assemblies: - OpenTK.Graphics @@ -2047,12 +1779,8 @@ items: fullName: OpenTK.Graphics.Glx.All.AlphaSize type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: AlphaSize - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 76 assemblies: - OpenTK.Graphics @@ -2073,12 +1801,8 @@ items: fullName: OpenTK.Graphics.Glx.All.DepthSize type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DepthSize - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 77 assemblies: - OpenTK.Graphics @@ -2099,12 +1823,8 @@ items: fullName: OpenTK.Graphics.Glx.All.StencilSize type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: StencilSize - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 78 assemblies: - OpenTK.Graphics @@ -2125,12 +1845,8 @@ items: fullName: OpenTK.Graphics.Glx.All.AccumRedSize type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: AccumRedSize - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 79 assemblies: - OpenTK.Graphics @@ -2151,12 +1867,8 @@ items: fullName: OpenTK.Graphics.Glx.All.AccumGreenSize type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: AccumGreenSize - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 80 assemblies: - OpenTK.Graphics @@ -2177,12 +1889,8 @@ items: fullName: OpenTK.Graphics.Glx.All.AccumBlueSize type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: AccumBlueSize - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 81 assemblies: - OpenTK.Graphics @@ -2203,12 +1911,8 @@ items: fullName: OpenTK.Graphics.Glx.All.AuxBuffersBit type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: AuxBuffersBit - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 82 assemblies: - OpenTK.Graphics @@ -2229,12 +1933,8 @@ items: fullName: OpenTK.Graphics.Glx.All.AuxBuffersBitSgix type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: AuxBuffersBitSgix - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 83 assemblies: - OpenTK.Graphics @@ -2255,12 +1955,8 @@ items: fullName: OpenTK.Graphics.Glx.All.AccumAlphaSize type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: AccumAlphaSize - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 84 assemblies: - OpenTK.Graphics @@ -2281,12 +1977,8 @@ items: fullName: OpenTK.Graphics.Glx.All.NumberEvents type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: NumberEvents - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 85 assemblies: - OpenTK.Graphics @@ -2307,12 +1999,8 @@ items: fullName: OpenTK.Graphics.Glx.All.ConfigCaveat type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ConfigCaveat - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 86 assemblies: - OpenTK.Graphics @@ -2333,12 +2021,8 @@ items: fullName: OpenTK.Graphics.Glx.All.DepthBufferBit type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DepthBufferBit - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 87 assemblies: - OpenTK.Graphics @@ -2359,12 +2043,8 @@ items: fullName: OpenTK.Graphics.Glx.All.DepthBufferBitSgix type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DepthBufferBitSgix - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 88 assemblies: - OpenTK.Graphics @@ -2385,12 +2065,8 @@ items: fullName: OpenTK.Graphics.Glx.All.VisualCaveatExt type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: VisualCaveatExt - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 89 assemblies: - OpenTK.Graphics @@ -2411,12 +2087,8 @@ items: fullName: OpenTK.Graphics.Glx.All.XVisualType type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: XVisualType - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 90 assemblies: - OpenTK.Graphics @@ -2437,12 +2109,8 @@ items: fullName: OpenTK.Graphics.Glx.All.XVisualTypeExt type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: XVisualTypeExt - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 91 assemblies: - OpenTK.Graphics @@ -2463,12 +2131,8 @@ items: fullName: OpenTK.Graphics.Glx.All.TransparentType type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TransparentType - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 92 assemblies: - OpenTK.Graphics @@ -2489,12 +2153,8 @@ items: fullName: OpenTK.Graphics.Glx.All.TransparentTypeExt type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TransparentTypeExt - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 93 assemblies: - OpenTK.Graphics @@ -2515,12 +2175,8 @@ items: fullName: OpenTK.Graphics.Glx.All.TransparentIndexValue type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TransparentIndexValue - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 94 assemblies: - OpenTK.Graphics @@ -2541,12 +2197,8 @@ items: fullName: OpenTK.Graphics.Glx.All.TransparentIndexValueExt type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TransparentIndexValueExt - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 95 assemblies: - OpenTK.Graphics @@ -2567,12 +2219,8 @@ items: fullName: OpenTK.Graphics.Glx.All.TransparentRedValue type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TransparentRedValue - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 96 assemblies: - OpenTK.Graphics @@ -2593,12 +2241,8 @@ items: fullName: OpenTK.Graphics.Glx.All.TransparentRedValueExt type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TransparentRedValueExt - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 97 assemblies: - OpenTK.Graphics @@ -2619,12 +2263,8 @@ items: fullName: OpenTK.Graphics.Glx.All.TransparentGreenValue type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TransparentGreenValue - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 98 assemblies: - OpenTK.Graphics @@ -2645,12 +2285,8 @@ items: fullName: OpenTK.Graphics.Glx.All.TransparentGreenValueExt type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TransparentGreenValueExt - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 99 assemblies: - OpenTK.Graphics @@ -2671,12 +2307,8 @@ items: fullName: OpenTK.Graphics.Glx.All.TransparentBlueValue type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TransparentBlueValue - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 100 assemblies: - OpenTK.Graphics @@ -2697,12 +2329,8 @@ items: fullName: OpenTK.Graphics.Glx.All.TransparentBlueValueExt type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TransparentBlueValueExt - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 101 assemblies: - OpenTK.Graphics @@ -2723,12 +2351,8 @@ items: fullName: OpenTK.Graphics.Glx.All.TransparentAlphaValue type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TransparentAlphaValue - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 102 assemblies: - OpenTK.Graphics @@ -2749,12 +2373,8 @@ items: fullName: OpenTK.Graphics.Glx.All.TransparentAlphaValueExt type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TransparentAlphaValueExt - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 103 assemblies: - OpenTK.Graphics @@ -2775,12 +2395,8 @@ items: fullName: OpenTK.Graphics.Glx.All.StencilBufferBit type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: StencilBufferBit - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 104 assemblies: - OpenTK.Graphics @@ -2801,12 +2417,8 @@ items: fullName: OpenTK.Graphics.Glx.All.StencilBufferBitSgix type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: StencilBufferBitSgix - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 105 assemblies: - OpenTK.Graphics @@ -2827,12 +2439,8 @@ items: fullName: OpenTK.Graphics.Glx.All.HyperpipePipeNameLengthSgix type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: HyperpipePipeNameLengthSgix - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 106 assemblies: - OpenTK.Graphics @@ -2853,12 +2461,8 @@ items: fullName: OpenTK.Graphics.Glx.All.BadHyperpipeConfigSgix type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: BadHyperpipeConfigSgix - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 107 assemblies: - OpenTK.Graphics @@ -2879,12 +2483,8 @@ items: fullName: OpenTK.Graphics.Glx.All.BadHyperpipeSgix type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: BadHyperpipeSgix - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 108 assemblies: - OpenTK.Graphics @@ -2905,12 +2505,8 @@ items: fullName: OpenTK.Graphics.Glx.All.AccumBufferBit type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: AccumBufferBit - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 109 assemblies: - OpenTK.Graphics @@ -2931,12 +2527,8 @@ items: fullName: OpenTK.Graphics.Glx.All.AccumBufferBitSgix type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: AccumBufferBitSgix - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 110 assemblies: - OpenTK.Graphics @@ -2957,12 +2549,8 @@ items: fullName: OpenTK.Graphics.Glx.All.SampleBuffersBitSgix type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SampleBuffersBitSgix - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 111 assemblies: - OpenTK.Graphics @@ -2983,12 +2571,8 @@ items: fullName: OpenTK.Graphics.Glx.All.GpuVendorAmd type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GpuVendorAmd - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 112 assemblies: - OpenTK.Graphics @@ -3009,12 +2593,8 @@ items: fullName: OpenTK.Graphics.Glx.All.GpuRendererStringAmd type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GpuRendererStringAmd - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 113 assemblies: - OpenTK.Graphics @@ -3035,12 +2615,8 @@ items: fullName: OpenTK.Graphics.Glx.All.GpuOpenglVersionStringAmd type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GpuOpenglVersionStringAmd - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 114 assemblies: - OpenTK.Graphics @@ -3061,12 +2637,8 @@ items: fullName: OpenTK.Graphics.Glx.All.ContextMajorVersionArb type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ContextMajorVersionArb - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 115 assemblies: - OpenTK.Graphics @@ -3087,12 +2659,8 @@ items: fullName: OpenTK.Graphics.Glx.All.ContextMinorVersionArb type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ContextMinorVersionArb - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 116 assemblies: - OpenTK.Graphics @@ -3113,12 +2681,8 @@ items: fullName: OpenTK.Graphics.Glx.All.ContextFlagsArb type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ContextFlagsArb - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 117 assemblies: - OpenTK.Graphics @@ -3139,12 +2703,8 @@ items: fullName: OpenTK.Graphics.Glx.All.ContextAllowBufferByteOrderMismatchArb type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ContextAllowBufferByteOrderMismatchArb - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 118 assemblies: - OpenTK.Graphics @@ -3165,12 +2725,8 @@ items: fullName: OpenTK.Graphics.Glx.All.ContextReleaseBehaviorArb type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ContextReleaseBehaviorArb - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 119 assemblies: - OpenTK.Graphics @@ -3191,12 +2747,8 @@ items: fullName: OpenTK.Graphics.Glx.All.ContextReleaseBehaviorFlushArb type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ContextReleaseBehaviorFlushArb - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 120 assemblies: - OpenTK.Graphics @@ -3217,12 +2769,8 @@ items: fullName: OpenTK.Graphics.Glx.All.ContextMultigpuAttribNv type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ContextMultigpuAttribNv - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 121 assemblies: - OpenTK.Graphics @@ -3243,12 +2791,8 @@ items: fullName: OpenTK.Graphics.Glx.All.ContextMultigpuAttribSingleNv type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ContextMultigpuAttribSingleNv - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 122 assemblies: - OpenTK.Graphics @@ -3269,12 +2813,8 @@ items: fullName: OpenTK.Graphics.Glx.All.ContextMultigpuAttribAfrNv type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ContextMultigpuAttribAfrNv - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 123 assemblies: - OpenTK.Graphics @@ -3295,12 +2835,8 @@ items: fullName: OpenTK.Graphics.Glx.All.ContextMultigpuAttribMulticastNv type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ContextMultigpuAttribMulticastNv - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 124 assemblies: - OpenTK.Graphics @@ -3321,12 +2857,8 @@ items: fullName: OpenTK.Graphics.Glx.All.ContextMultigpuAttribMultiDisplayMulticastNv type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ContextMultigpuAttribMultiDisplayMulticastNv - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 125 assemblies: - OpenTK.Graphics @@ -3347,12 +2879,8 @@ items: fullName: OpenTK.Graphics.Glx.All.FloatComponentsNv type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: FloatComponentsNv - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 126 assemblies: - OpenTK.Graphics @@ -3373,12 +2901,8 @@ items: fullName: OpenTK.Graphics.Glx.All.RgbaUnsignedFloatTypeExt type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: RgbaUnsignedFloatTypeExt - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 127 assemblies: - OpenTK.Graphics @@ -3399,12 +2923,8 @@ items: fullName: OpenTK.Graphics.Glx.All.FramebufferSrgbCapableArb type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: FramebufferSrgbCapableArb - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 128 assemblies: - OpenTK.Graphics @@ -3425,12 +2945,8 @@ items: fullName: OpenTK.Graphics.Glx.All.FramebufferSrgbCapableExt type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: FramebufferSrgbCapableExt - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 129 assemblies: - OpenTK.Graphics @@ -3451,12 +2967,8 @@ items: fullName: OpenTK.Graphics.Glx.All.ColorSamplesNv type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ColorSamplesNv - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 130 assemblies: - OpenTK.Graphics @@ -3477,12 +2989,8 @@ items: fullName: OpenTK.Graphics.Glx.All.RgbaFloatTypeArb type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: RgbaFloatTypeArb - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 131 assemblies: - OpenTK.Graphics @@ -3503,12 +3011,8 @@ items: fullName: OpenTK.Graphics.Glx.All.VideoOutColorNv type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: VideoOutColorNv - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 132 assemblies: - OpenTK.Graphics @@ -3529,12 +3033,8 @@ items: fullName: OpenTK.Graphics.Glx.All.VideoOutAlphaNv type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: VideoOutAlphaNv - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 133 assemblies: - OpenTK.Graphics @@ -3555,12 +3055,8 @@ items: fullName: OpenTK.Graphics.Glx.All.VideoOutDepthNv type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: VideoOutDepthNv - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 134 assemblies: - OpenTK.Graphics @@ -3581,12 +3077,8 @@ items: fullName: OpenTK.Graphics.Glx.All.VideoOutColorAndAlphaNv type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: VideoOutColorAndAlphaNv - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 135 assemblies: - OpenTK.Graphics @@ -3607,12 +3099,8 @@ items: fullName: OpenTK.Graphics.Glx.All.VideoOutColorAndDepthNv type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: VideoOutColorAndDepthNv - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 136 assemblies: - OpenTK.Graphics @@ -3633,12 +3121,8 @@ items: fullName: OpenTK.Graphics.Glx.All.VideoOutFrameNv type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: VideoOutFrameNv - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 137 assemblies: - OpenTK.Graphics @@ -3659,12 +3143,8 @@ items: fullName: OpenTK.Graphics.Glx.All.VideoOutField1Nv type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: VideoOutField1Nv - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 138 assemblies: - OpenTK.Graphics @@ -3685,12 +3165,8 @@ items: fullName: OpenTK.Graphics.Glx.All.VideoOutField2Nv type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: VideoOutField2Nv - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 139 assemblies: - OpenTK.Graphics @@ -3711,12 +3187,8 @@ items: fullName: OpenTK.Graphics.Glx.All.VideoOutStackedFields12Nv type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: VideoOutStackedFields12Nv - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 140 assemblies: - OpenTK.Graphics @@ -3737,12 +3209,8 @@ items: fullName: OpenTK.Graphics.Glx.All.VideoOutStackedFields21Nv type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: VideoOutStackedFields21Nv - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 141 assemblies: - OpenTK.Graphics @@ -3763,12 +3231,8 @@ items: fullName: OpenTK.Graphics.Glx.All.DeviceIdNv type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DeviceIdNv - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 142 assemblies: - OpenTK.Graphics @@ -3789,12 +3253,8 @@ items: fullName: OpenTK.Graphics.Glx.All.UniqueIdNv type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: UniqueIdNv - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 143 assemblies: - OpenTK.Graphics @@ -3815,12 +3275,8 @@ items: fullName: OpenTK.Graphics.Glx.All.NumVideoCaptureSlotsNv type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: NumVideoCaptureSlotsNv - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 144 assemblies: - OpenTK.Graphics @@ -3841,12 +3297,8 @@ items: fullName: OpenTK.Graphics.Glx.All.BindToTextureRgbExt type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: BindToTextureRgbExt - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 145 assemblies: - OpenTK.Graphics @@ -3867,12 +3319,8 @@ items: fullName: OpenTK.Graphics.Glx.All.BindToTextureRgbaExt type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: BindToTextureRgbaExt - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 146 assemblies: - OpenTK.Graphics @@ -3893,12 +3341,8 @@ items: fullName: OpenTK.Graphics.Glx.All.BindToMipmapTextureExt type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: BindToMipmapTextureExt - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 147 assemblies: - OpenTK.Graphics @@ -3919,12 +3363,8 @@ items: fullName: OpenTK.Graphics.Glx.All.BindToTextureTargetsExt type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: BindToTextureTargetsExt - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 148 assemblies: - OpenTK.Graphics @@ -3945,12 +3385,8 @@ items: fullName: OpenTK.Graphics.Glx.All.YInvertedExt type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: YInvertedExt - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 149 assemblies: - OpenTK.Graphics @@ -3971,12 +3407,8 @@ items: fullName: OpenTK.Graphics.Glx.All.TextureFormatExt type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TextureFormatExt - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 150 assemblies: - OpenTK.Graphics @@ -3997,12 +3429,8 @@ items: fullName: OpenTK.Graphics.Glx.All.TextureTargetExt type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TextureTargetExt - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 151 assemblies: - OpenTK.Graphics @@ -4023,12 +3451,8 @@ items: fullName: OpenTK.Graphics.Glx.All.MipmapTextureExt type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MipmapTextureExt - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 152 assemblies: - OpenTK.Graphics @@ -4049,12 +3473,8 @@ items: fullName: OpenTK.Graphics.Glx.All.TextureFormatNoneExt type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TextureFormatNoneExt - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 153 assemblies: - OpenTK.Graphics @@ -4075,12 +3495,8 @@ items: fullName: OpenTK.Graphics.Glx.All.TextureFormatRgbExt type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TextureFormatRgbExt - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 154 assemblies: - OpenTK.Graphics @@ -4101,12 +3517,8 @@ items: fullName: OpenTK.Graphics.Glx.All.TextureFormatRgbaExt type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TextureFormatRgbaExt - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 155 assemblies: - OpenTK.Graphics @@ -4127,12 +3539,8 @@ items: fullName: OpenTK.Graphics.Glx.All.Texture1dExt type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Texture1dExt - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 156 assemblies: - OpenTK.Graphics @@ -4153,12 +3561,8 @@ items: fullName: OpenTK.Graphics.Glx.All.Texture2dExt type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Texture2dExt - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 157 assemblies: - OpenTK.Graphics @@ -4179,12 +3583,8 @@ items: fullName: OpenTK.Graphics.Glx.All.TextureRectangleExt type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TextureRectangleExt - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 158 assemblies: - OpenTK.Graphics @@ -4205,12 +3605,8 @@ items: fullName: OpenTK.Graphics.Glx.All.FrontExt type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: FrontExt - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 159 assemblies: - OpenTK.Graphics @@ -4231,12 +3627,8 @@ items: fullName: OpenTK.Graphics.Glx.All.FrontLeftExt type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: FrontLeftExt - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 160 assemblies: - OpenTK.Graphics @@ -4257,12 +3649,8 @@ items: fullName: OpenTK.Graphics.Glx.All.FrontRightExt type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: FrontRightExt - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 161 assemblies: - OpenTK.Graphics @@ -4283,12 +3671,8 @@ items: fullName: OpenTK.Graphics.Glx.All.BackExt type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: BackExt - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 162 assemblies: - OpenTK.Graphics @@ -4309,12 +3693,8 @@ items: fullName: OpenTK.Graphics.Glx.All.BackLeftExt type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: BackLeftExt - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 163 assemblies: - OpenTK.Graphics @@ -4335,12 +3715,8 @@ items: fullName: OpenTK.Graphics.Glx.All.BackRightExt type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: BackRightExt - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 164 assemblies: - OpenTK.Graphics @@ -4361,12 +3737,8 @@ items: fullName: OpenTK.Graphics.Glx.All.Aux0Ext type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Aux0Ext - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 165 assemblies: - OpenTK.Graphics @@ -4387,12 +3759,8 @@ items: fullName: OpenTK.Graphics.Glx.All.Aux1Ext type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Aux1Ext - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 166 assemblies: - OpenTK.Graphics @@ -4413,12 +3781,8 @@ items: fullName: OpenTK.Graphics.Glx.All.Aux2Ext type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Aux2Ext - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 167 assemblies: - OpenTK.Graphics @@ -4439,12 +3803,8 @@ items: fullName: OpenTK.Graphics.Glx.All.Aux3Ext type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Aux3Ext - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 168 assemblies: - OpenTK.Graphics @@ -4465,12 +3825,8 @@ items: fullName: OpenTK.Graphics.Glx.All.Aux4Ext type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Aux4Ext - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 169 assemblies: - OpenTK.Graphics @@ -4491,12 +3847,8 @@ items: fullName: OpenTK.Graphics.Glx.All.Aux5Ext type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Aux5Ext - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 170 assemblies: - OpenTK.Graphics @@ -4517,12 +3869,8 @@ items: fullName: OpenTK.Graphics.Glx.All.Aux6Ext type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Aux6Ext - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 171 assemblies: - OpenTK.Graphics @@ -4543,12 +3891,8 @@ items: fullName: OpenTK.Graphics.Glx.All.Aux7Ext type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Aux7Ext - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 172 assemblies: - OpenTK.Graphics @@ -4569,12 +3913,8 @@ items: fullName: OpenTK.Graphics.Glx.All.Aux8Ext type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Aux8Ext - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 173 assemblies: - OpenTK.Graphics @@ -4595,12 +3935,8 @@ items: fullName: OpenTK.Graphics.Glx.All.Aux9Ext type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Aux9Ext - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 174 assemblies: - OpenTK.Graphics @@ -4621,12 +3957,8 @@ items: fullName: OpenTK.Graphics.Glx.All.NumVideoSlotsNv type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: NumVideoSlotsNv - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 175 assemblies: - OpenTK.Graphics @@ -4647,12 +3979,8 @@ items: fullName: OpenTK.Graphics.Glx.All.SwapIntervalExt type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SwapIntervalExt - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 176 assemblies: - OpenTK.Graphics @@ -4673,12 +4001,8 @@ items: fullName: OpenTK.Graphics.Glx.All.MaxSwapIntervalExt type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MaxSwapIntervalExt - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 177 assemblies: - OpenTK.Graphics @@ -4699,12 +4023,8 @@ items: fullName: OpenTK.Graphics.Glx.All.LateSwapsTearExt type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: LateSwapsTearExt - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 178 assemblies: - OpenTK.Graphics @@ -4725,12 +4045,8 @@ items: fullName: OpenTK.Graphics.Glx.All.BackBufferAgeExt type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: BackBufferAgeExt - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 179 assemblies: - OpenTK.Graphics @@ -4751,12 +4067,8 @@ items: fullName: OpenTK.Graphics.Glx.All.StereoTreeExt type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: StereoTreeExt - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 180 assemblies: - OpenTK.Graphics @@ -4777,12 +4089,8 @@ items: fullName: OpenTK.Graphics.Glx.All.VendorNamesExt type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: VendorNamesExt - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 181 assemblies: - OpenTK.Graphics @@ -4803,12 +4111,8 @@ items: fullName: OpenTK.Graphics.Glx.All.GenerateResetOnVideoMemoryPurgeNv type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GenerateResetOnVideoMemoryPurgeNv - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 182 assemblies: - OpenTK.Graphics @@ -4829,12 +4133,8 @@ items: fullName: OpenTK.Graphics.Glx.All.GpuFastestTargetGpusAmd type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GpuFastestTargetGpusAmd - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 183 assemblies: - OpenTK.Graphics @@ -4855,12 +4155,8 @@ items: fullName: OpenTK.Graphics.Glx.All.GpuRamAmd type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GpuRamAmd - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 184 assemblies: - OpenTK.Graphics @@ -4881,12 +4177,8 @@ items: fullName: OpenTK.Graphics.Glx.All.GpuClockAmd type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GpuClockAmd - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 185 assemblies: - OpenTK.Graphics @@ -4907,12 +4199,8 @@ items: fullName: OpenTK.Graphics.Glx.All.GpuNumPipesAmd type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GpuNumPipesAmd - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 186 assemblies: - OpenTK.Graphics @@ -4933,12 +4221,8 @@ items: fullName: OpenTK.Graphics.Glx.All.GpuNumSimdAmd type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GpuNumSimdAmd - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 187 assemblies: - OpenTK.Graphics @@ -4959,12 +4243,8 @@ items: fullName: OpenTK.Graphics.Glx.All.GpuNumRbAmd type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GpuNumRbAmd - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 188 assemblies: - OpenTK.Graphics @@ -4985,12 +4265,8 @@ items: fullName: OpenTK.Graphics.Glx.All.GpuNumSpiAmd type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GpuNumSpiAmd - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 189 assemblies: - OpenTK.Graphics @@ -5011,12 +4287,8 @@ items: fullName: OpenTK.Graphics.Glx.All.ContextPriorityLevelExt type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ContextPriorityLevelExt - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 190 assemblies: - OpenTK.Graphics @@ -5037,12 +4309,8 @@ items: fullName: OpenTK.Graphics.Glx.All.ContextPriorityHighExt type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ContextPriorityHighExt - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 191 assemblies: - OpenTK.Graphics @@ -5063,12 +4331,8 @@ items: fullName: OpenTK.Graphics.Glx.All.ContextPriorityMediumExt type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ContextPriorityMediumExt - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 192 assemblies: - OpenTK.Graphics @@ -5089,12 +4353,8 @@ items: fullName: OpenTK.Graphics.Glx.All.ContextPriorityLowExt type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ContextPriorityLowExt - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 193 assemblies: - OpenTK.Graphics @@ -5115,12 +4375,8 @@ items: fullName: OpenTK.Graphics.Glx.All.ContextOpenglNoErrorArb type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ContextOpenglNoErrorArb - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 194 assemblies: - OpenTK.Graphics @@ -5141,12 +4397,8 @@ items: fullName: OpenTK.Graphics.Glx.All.None type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: None - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 195 assemblies: - OpenTK.Graphics @@ -5167,12 +4419,8 @@ items: fullName: OpenTK.Graphics.Glx.All.NoneExt type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: NoneExt - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 196 assemblies: - OpenTK.Graphics @@ -5193,12 +4441,8 @@ items: fullName: OpenTK.Graphics.Glx.All.SlowConfig type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SlowConfig - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 197 assemblies: - OpenTK.Graphics @@ -5219,12 +4463,8 @@ items: fullName: OpenTK.Graphics.Glx.All.SlowVisualExt type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SlowVisualExt - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 198 assemblies: - OpenTK.Graphics @@ -5245,12 +4485,8 @@ items: fullName: OpenTK.Graphics.Glx.All.TrueColor type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TrueColor - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 199 assemblies: - OpenTK.Graphics @@ -5271,12 +4507,8 @@ items: fullName: OpenTK.Graphics.Glx.All.TrueColorExt type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TrueColorExt - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 200 assemblies: - OpenTK.Graphics @@ -5297,12 +4529,8 @@ items: fullName: OpenTK.Graphics.Glx.All.DirectColor type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DirectColor - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 201 assemblies: - OpenTK.Graphics @@ -5323,12 +4551,8 @@ items: fullName: OpenTK.Graphics.Glx.All.DirectColorExt type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DirectColorExt - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 202 assemblies: - OpenTK.Graphics @@ -5349,12 +4573,8 @@ items: fullName: OpenTK.Graphics.Glx.All.PseudoColor type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: PseudoColor - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 203 assemblies: - OpenTK.Graphics @@ -5375,12 +4595,8 @@ items: fullName: OpenTK.Graphics.Glx.All.PseudoColorExt type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: PseudoColorExt - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 204 assemblies: - OpenTK.Graphics @@ -5401,12 +4617,8 @@ items: fullName: OpenTK.Graphics.Glx.All.StaticColor type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: StaticColor - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 205 assemblies: - OpenTK.Graphics @@ -5427,12 +4639,8 @@ items: fullName: OpenTK.Graphics.Glx.All.StaticColorExt type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: StaticColorExt - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 206 assemblies: - OpenTK.Graphics @@ -5453,12 +4661,8 @@ items: fullName: OpenTK.Graphics.Glx.All.GrayScale type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GrayScale - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 207 assemblies: - OpenTK.Graphics @@ -5479,12 +4683,8 @@ items: fullName: OpenTK.Graphics.Glx.All.GrayScaleExt type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GrayScaleExt - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 208 assemblies: - OpenTK.Graphics @@ -5505,12 +4705,8 @@ items: fullName: OpenTK.Graphics.Glx.All.StaticGray type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: StaticGray - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 209 assemblies: - OpenTK.Graphics @@ -5531,12 +4727,8 @@ items: fullName: OpenTK.Graphics.Glx.All.StaticGrayExt type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: StaticGrayExt - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 210 assemblies: - OpenTK.Graphics @@ -5557,12 +4749,8 @@ items: fullName: OpenTK.Graphics.Glx.All.TransparentRgb type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TransparentRgb - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 211 assemblies: - OpenTK.Graphics @@ -5583,12 +4771,8 @@ items: fullName: OpenTK.Graphics.Glx.All.TransparentRgbExt type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TransparentRgbExt - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 212 assemblies: - OpenTK.Graphics @@ -5609,12 +4793,8 @@ items: fullName: OpenTK.Graphics.Glx.All.TransparentIndex type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TransparentIndex - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 213 assemblies: - OpenTK.Graphics @@ -5635,12 +4815,8 @@ items: fullName: OpenTK.Graphics.Glx.All.TransparentIndexExt type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TransparentIndexExt - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 214 assemblies: - OpenTK.Graphics @@ -5661,12 +4837,8 @@ items: fullName: OpenTK.Graphics.Glx.All.ShareContextExt type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ShareContextExt - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 215 assemblies: - OpenTK.Graphics @@ -5687,12 +4859,8 @@ items: fullName: OpenTK.Graphics.Glx.All.VisualId type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: VisualId - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 216 assemblies: - OpenTK.Graphics @@ -5713,12 +4881,8 @@ items: fullName: OpenTK.Graphics.Glx.All.VisualIdExt type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: VisualIdExt - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 217 assemblies: - OpenTK.Graphics @@ -5739,12 +4903,8 @@ items: fullName: OpenTK.Graphics.Glx.All.Screen type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Screen - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 218 assemblies: - OpenTK.Graphics @@ -5765,12 +4925,8 @@ items: fullName: OpenTK.Graphics.Glx.All.ScreenExt type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ScreenExt - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 219 assemblies: - OpenTK.Graphics @@ -5791,12 +4947,8 @@ items: fullName: OpenTK.Graphics.Glx.All.NonConformantConfig type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: NonConformantConfig - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 220 assemblies: - OpenTK.Graphics @@ -5817,12 +4969,8 @@ items: fullName: OpenTK.Graphics.Glx.All.NonConformantVisualExt type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: NonConformantVisualExt - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 221 assemblies: - OpenTK.Graphics @@ -5843,12 +4991,8 @@ items: fullName: OpenTK.Graphics.Glx.All.DrawableType type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DrawableType - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 222 assemblies: - OpenTK.Graphics @@ -5869,12 +5013,8 @@ items: fullName: OpenTK.Graphics.Glx.All.DrawableTypeSgix type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DrawableTypeSgix - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 223 assemblies: - OpenTK.Graphics @@ -5895,12 +5035,8 @@ items: fullName: OpenTK.Graphics.Glx.All.RenderType type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: RenderType - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 224 assemblies: - OpenTK.Graphics @@ -5921,12 +5057,8 @@ items: fullName: OpenTK.Graphics.Glx.All.RenderTypeSgix type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: RenderTypeSgix - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 225 assemblies: - OpenTK.Graphics @@ -5947,12 +5079,8 @@ items: fullName: OpenTK.Graphics.Glx.All.XRenderable type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: XRenderable - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 226 assemblies: - OpenTK.Graphics @@ -5973,12 +5101,8 @@ items: fullName: OpenTK.Graphics.Glx.All.XRenderableSgix type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: XRenderableSgix - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 227 assemblies: - OpenTK.Graphics @@ -5999,12 +5123,8 @@ items: fullName: OpenTK.Graphics.Glx.All.FbconfigId type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: FbconfigId - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 228 assemblies: - OpenTK.Graphics @@ -6025,12 +5145,8 @@ items: fullName: OpenTK.Graphics.Glx.All.FbconfigIdSgix type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: FbconfigIdSgix - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 229 assemblies: - OpenTK.Graphics @@ -6051,12 +5167,8 @@ items: fullName: OpenTK.Graphics.Glx.All.RgbaType type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: RgbaType - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 230 assemblies: - OpenTK.Graphics @@ -6077,12 +5189,8 @@ items: fullName: OpenTK.Graphics.Glx.All.RgbaTypeSgix type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: RgbaTypeSgix - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 231 assemblies: - OpenTK.Graphics @@ -6103,12 +5211,8 @@ items: fullName: OpenTK.Graphics.Glx.All.ColorIndexType type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ColorIndexType - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 232 assemblies: - OpenTK.Graphics @@ -6129,12 +5233,8 @@ items: fullName: OpenTK.Graphics.Glx.All.ColorIndexTypeSgix type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ColorIndexTypeSgix - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 233 assemblies: - OpenTK.Graphics @@ -6155,12 +5255,8 @@ items: fullName: OpenTK.Graphics.Glx.All.MaxPbufferWidth type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MaxPbufferWidth - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 234 assemblies: - OpenTK.Graphics @@ -6181,12 +5277,8 @@ items: fullName: OpenTK.Graphics.Glx.All.MaxPbufferWidthSgix type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MaxPbufferWidthSgix - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 235 assemblies: - OpenTK.Graphics @@ -6207,12 +5299,8 @@ items: fullName: OpenTK.Graphics.Glx.All.MaxPbufferHeight type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MaxPbufferHeight - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 236 assemblies: - OpenTK.Graphics @@ -6233,12 +5321,8 @@ items: fullName: OpenTK.Graphics.Glx.All.MaxPbufferHeightSgix type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MaxPbufferHeightSgix - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 237 assemblies: - OpenTK.Graphics @@ -6259,12 +5343,8 @@ items: fullName: OpenTK.Graphics.Glx.All.MaxPbufferPixels type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MaxPbufferPixels - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 238 assemblies: - OpenTK.Graphics @@ -6285,12 +5365,8 @@ items: fullName: OpenTK.Graphics.Glx.All.MaxPbufferPixelsSgix type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MaxPbufferPixelsSgix - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 239 assemblies: - OpenTK.Graphics @@ -6311,12 +5387,8 @@ items: fullName: OpenTK.Graphics.Glx.All.OptimalPbufferWidthSgix type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: OptimalPbufferWidthSgix - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 240 assemblies: - OpenTK.Graphics @@ -6337,12 +5409,8 @@ items: fullName: OpenTK.Graphics.Glx.All.OptimalPbufferHeightSgix type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: OptimalPbufferHeightSgix - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 241 assemblies: - OpenTK.Graphics @@ -6363,12 +5431,8 @@ items: fullName: OpenTK.Graphics.Glx.All.PreservedContents type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: PreservedContents - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 242 assemblies: - OpenTK.Graphics @@ -6389,12 +5453,8 @@ items: fullName: OpenTK.Graphics.Glx.All.PreservedContentsSgix type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: PreservedContentsSgix - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 243 assemblies: - OpenTK.Graphics @@ -6415,12 +5475,8 @@ items: fullName: OpenTK.Graphics.Glx.All.LargestPbuffer type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: LargestPbuffer - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 244 assemblies: - OpenTK.Graphics @@ -6441,12 +5497,8 @@ items: fullName: OpenTK.Graphics.Glx.All.LargestPbufferSgix type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: LargestPbufferSgix - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 245 assemblies: - OpenTK.Graphics @@ -6467,12 +5519,8 @@ items: fullName: OpenTK.Graphics.Glx.All.Width type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Width - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 246 assemblies: - OpenTK.Graphics @@ -6493,12 +5541,8 @@ items: fullName: OpenTK.Graphics.Glx.All.WidthSgix type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: WidthSgix - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 247 assemblies: - OpenTK.Graphics @@ -6519,12 +5563,8 @@ items: fullName: OpenTK.Graphics.Glx.All.Height type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Height - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 248 assemblies: - OpenTK.Graphics @@ -6545,12 +5585,8 @@ items: fullName: OpenTK.Graphics.Glx.All.HeightSgix type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: HeightSgix - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 249 assemblies: - OpenTK.Graphics @@ -6571,12 +5607,8 @@ items: fullName: OpenTK.Graphics.Glx.All.EventMask type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: EventMask - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 250 assemblies: - OpenTK.Graphics @@ -6597,12 +5629,8 @@ items: fullName: OpenTK.Graphics.Glx.All.EventMaskSgix type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: EventMaskSgix - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 251 assemblies: - OpenTK.Graphics @@ -6623,12 +5651,8 @@ items: fullName: OpenTK.Graphics.Glx.All.Damaged type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Damaged - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 252 assemblies: - OpenTK.Graphics @@ -6649,12 +5673,8 @@ items: fullName: OpenTK.Graphics.Glx.All.DamagedSgix type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DamagedSgix - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 253 assemblies: - OpenTK.Graphics @@ -6675,12 +5695,8 @@ items: fullName: OpenTK.Graphics.Glx.All.Saved type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Saved - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 254 assemblies: - OpenTK.Graphics @@ -6701,12 +5717,8 @@ items: fullName: OpenTK.Graphics.Glx.All.SavedSgix type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SavedSgix - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 255 assemblies: - OpenTK.Graphics @@ -6727,12 +5739,8 @@ items: fullName: OpenTK.Graphics.Glx.All.Window type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Window - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 256 assemblies: - OpenTK.Graphics @@ -6753,12 +5761,8 @@ items: fullName: OpenTK.Graphics.Glx.All.WindowSgix type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: WindowSgix - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 257 assemblies: - OpenTK.Graphics @@ -6779,12 +5783,8 @@ items: fullName: OpenTK.Graphics.Glx.All.Pbuffer type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Pbuffer - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 258 assemblies: - OpenTK.Graphics @@ -6805,12 +5805,8 @@ items: fullName: OpenTK.Graphics.Glx.All.PbufferSgix type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: PbufferSgix - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 259 assemblies: - OpenTK.Graphics @@ -6831,12 +5827,8 @@ items: fullName: OpenTK.Graphics.Glx.All.DigitalMediaPbufferSgix type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DigitalMediaPbufferSgix - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 260 assemblies: - OpenTK.Graphics @@ -6857,12 +5849,8 @@ items: fullName: OpenTK.Graphics.Glx.All.BlendedRgbaSgis type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: BlendedRgbaSgis - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 261 assemblies: - OpenTK.Graphics @@ -6883,12 +5871,8 @@ items: fullName: OpenTK.Graphics.Glx.All.MultisampleSubRectWidthSgis type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MultisampleSubRectWidthSgis - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 262 assemblies: - OpenTK.Graphics @@ -6909,12 +5893,8 @@ items: fullName: OpenTK.Graphics.Glx.All.MultisampleSubRectHeightSgis type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MultisampleSubRectHeightSgis - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 263 assemblies: - OpenTK.Graphics @@ -6935,12 +5915,8 @@ items: fullName: OpenTK.Graphics.Glx.All.VisualSelectGroupSgix type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: VisualSelectGroupSgix - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 264 assemblies: - OpenTK.Graphics @@ -6961,12 +5937,8 @@ items: fullName: OpenTK.Graphics.Glx.All.HyperpipeIdSgix type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: HyperpipeIdSgix - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 265 assemblies: - OpenTK.Graphics @@ -6987,12 +5959,8 @@ items: fullName: OpenTK.Graphics.Glx.All.PbufferHeight type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: PbufferHeight - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 266 assemblies: - OpenTK.Graphics @@ -7013,12 +5981,8 @@ items: fullName: OpenTK.Graphics.Glx.All.PbufferWidth type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: PbufferWidth - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 267 assemblies: - OpenTK.Graphics @@ -7039,12 +6003,8 @@ items: fullName: OpenTK.Graphics.Glx.All.SampleBuffers3dfx type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SampleBuffers3dfx - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 268 assemblies: - OpenTK.Graphics @@ -7065,12 +6025,8 @@ items: fullName: OpenTK.Graphics.Glx.All.Samples3dfx type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Samples3dfx - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 269 assemblies: - OpenTK.Graphics @@ -7091,12 +6047,8 @@ items: fullName: OpenTK.Graphics.Glx.All.SwapMethodOml type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SwapMethodOml - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 270 assemblies: - OpenTK.Graphics @@ -7117,12 +6069,8 @@ items: fullName: OpenTK.Graphics.Glx.All.SwapExchangeOml type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SwapExchangeOml - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 271 assemblies: - OpenTK.Graphics @@ -7143,12 +6091,8 @@ items: fullName: OpenTK.Graphics.Glx.All.SwapCopyOml type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SwapCopyOml - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 272 assemblies: - OpenTK.Graphics @@ -7169,12 +6113,8 @@ items: fullName: OpenTK.Graphics.Glx.All.SwapUndefinedOml type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SwapUndefinedOml - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 273 assemblies: - OpenTK.Graphics @@ -7195,12 +6135,8 @@ items: fullName: OpenTK.Graphics.Glx.All.ExchangeCompleteIntel type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ExchangeCompleteIntel - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 274 assemblies: - OpenTK.Graphics @@ -7221,12 +6157,8 @@ items: fullName: OpenTK.Graphics.Glx.All.CopyCompleteIntel type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CopyCompleteIntel - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 275 assemblies: - OpenTK.Graphics @@ -7247,12 +6179,8 @@ items: fullName: OpenTK.Graphics.Glx.All.FlipCompleteIntel type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: FlipCompleteIntel - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 276 assemblies: - OpenTK.Graphics @@ -7273,12 +6201,8 @@ items: fullName: OpenTK.Graphics.Glx.All.RendererVendorIdMesa type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: RendererVendorIdMesa - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 277 assemblies: - OpenTK.Graphics @@ -7299,12 +6223,8 @@ items: fullName: OpenTK.Graphics.Glx.All.RendererDeviceIdMesa type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: RendererDeviceIdMesa - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 278 assemblies: - OpenTK.Graphics @@ -7325,12 +6245,8 @@ items: fullName: OpenTK.Graphics.Glx.All.RendererVersionMesa type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: RendererVersionMesa - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 279 assemblies: - OpenTK.Graphics @@ -7351,12 +6267,8 @@ items: fullName: OpenTK.Graphics.Glx.All.RendererAcceleratedMesa type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: RendererAcceleratedMesa - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 280 assemblies: - OpenTK.Graphics @@ -7377,12 +6289,8 @@ items: fullName: OpenTK.Graphics.Glx.All.RendererVideoMemoryMesa type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: RendererVideoMemoryMesa - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 281 assemblies: - OpenTK.Graphics @@ -7403,12 +6311,8 @@ items: fullName: OpenTK.Graphics.Glx.All.RendererUnifiedMemoryArchitectureMesa type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: RendererUnifiedMemoryArchitectureMesa - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 282 assemblies: - OpenTK.Graphics @@ -7429,12 +6333,8 @@ items: fullName: OpenTK.Graphics.Glx.All.RendererPreferredProfileMesa type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: RendererPreferredProfileMesa - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 283 assemblies: - OpenTK.Graphics @@ -7455,12 +6355,8 @@ items: fullName: OpenTK.Graphics.Glx.All.RendererOpenglCoreProfileVersionMesa type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: RendererOpenglCoreProfileVersionMesa - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 284 assemblies: - OpenTK.Graphics @@ -7481,12 +6377,8 @@ items: fullName: OpenTK.Graphics.Glx.All.RendererOpenglCompatibilityProfileVersionMesa type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: RendererOpenglCompatibilityProfileVersionMesa - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 285 assemblies: - OpenTK.Graphics @@ -7507,12 +6399,8 @@ items: fullName: OpenTK.Graphics.Glx.All.RendererOpenglEsProfileVersionMesa type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: RendererOpenglEsProfileVersionMesa - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 286 assemblies: - OpenTK.Graphics @@ -7533,12 +6421,8 @@ items: fullName: OpenTK.Graphics.Glx.All.RendererOpenglEs2ProfileVersionMesa type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: RendererOpenglEs2ProfileVersionMesa - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 287 assemblies: - OpenTK.Graphics @@ -7559,12 +6443,8 @@ items: fullName: OpenTK.Graphics.Glx.All.LoseContextOnResetArb type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: LoseContextOnResetArb - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 288 assemblies: - OpenTK.Graphics @@ -7585,12 +6465,8 @@ items: fullName: OpenTK.Graphics.Glx.All.ContextResetNotificationStrategyArb type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ContextResetNotificationStrategyArb - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 289 assemblies: - OpenTK.Graphics @@ -7611,12 +6487,8 @@ items: fullName: OpenTK.Graphics.Glx.All.NoResetNotificationArb type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: NoResetNotificationArb - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 290 assemblies: - OpenTK.Graphics @@ -7637,12 +6509,8 @@ items: fullName: OpenTK.Graphics.Glx.All.ContextProfileMaskArb type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ContextProfileMaskArb - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 291 assemblies: - OpenTK.Graphics @@ -7663,12 +6531,8 @@ items: fullName: OpenTK.Graphics.Glx.All.SampleBuffers type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SampleBuffers - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 292 assemblies: - OpenTK.Graphics @@ -7689,12 +6553,8 @@ items: fullName: OpenTK.Graphics.Glx.All.SampleBuffersArb type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SampleBuffersArb - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 293 assemblies: - OpenTK.Graphics @@ -7715,12 +6575,8 @@ items: fullName: OpenTK.Graphics.Glx.All.SampleBuffersSgis type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SampleBuffersSgis - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 294 assemblies: - OpenTK.Graphics @@ -7741,12 +6597,8 @@ items: fullName: OpenTK.Graphics.Glx.All.CoverageSamplesNv type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CoverageSamplesNv - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 295 assemblies: - OpenTK.Graphics @@ -7767,12 +6619,8 @@ items: fullName: OpenTK.Graphics.Glx.All.Samples type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Samples - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 296 assemblies: - OpenTK.Graphics @@ -7793,12 +6641,8 @@ items: fullName: OpenTK.Graphics.Glx.All.SamplesArb type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SamplesArb - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 297 assemblies: - OpenTK.Graphics @@ -7819,12 +6663,8 @@ items: fullName: OpenTK.Graphics.Glx.All.SamplesSgis type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SamplesSgis - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 298 assemblies: - OpenTK.Graphics @@ -7845,12 +6685,8 @@ items: fullName: OpenTK.Graphics.Glx.All.BufferSwapCompleteIntelMask type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: BufferSwapCompleteIntelMask - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 299 assemblies: - OpenTK.Graphics @@ -7871,12 +6707,8 @@ items: fullName: OpenTK.Graphics.Glx.All.BufferClobberMaskSgix type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: BufferClobberMaskSgix - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 300 assemblies: - OpenTK.Graphics @@ -7897,12 +6729,8 @@ items: fullName: OpenTK.Graphics.Glx.All.PbufferClobberMask type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: PbufferClobberMask - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 301 assemblies: - OpenTK.Graphics @@ -7923,12 +6751,8 @@ items: fullName: OpenTK.Graphics.Glx.All.DontCare type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DontCare - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 302 assemblies: - OpenTK.Graphics diff --git a/api/OpenTK.Graphics.Glx.Colormap.yml b/api/OpenTK.Graphics.Glx.Colormap.yml index 1e93e967..46dfa340 100644 --- a/api/OpenTK.Graphics.Glx.Colormap.yml +++ b/api/OpenTK.Graphics.Glx.Colormap.yml @@ -17,12 +17,8 @@ items: fullName: OpenTK.Graphics.Glx.Colormap type: Struct source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Colormap - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 164 assemblies: - OpenTK.Graphics @@ -51,12 +47,8 @@ items: fullName: OpenTK.Graphics.Glx.Colormap.XID type: Field source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: XID - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 169 assemblies: - OpenTK.Graphics @@ -80,12 +72,8 @@ items: fullName: OpenTK.Graphics.Glx.Colormap.Colormap(nuint) type: Constructor source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 175 assemblies: - OpenTK.Graphics @@ -115,12 +103,8 @@ items: fullName: OpenTK.Graphics.Glx.Colormap.explicit operator nuint(OpenTK.Graphics.Glx.Colormap) type: Operator source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Explicit - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 180 assemblies: - OpenTK.Graphics @@ -149,12 +133,8 @@ items: fullName: OpenTK.Graphics.Glx.Colormap.explicit operator OpenTK.Graphics.Glx.Colormap(nuint) type: Operator source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Explicit - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 181 assemblies: - OpenTK.Graphics diff --git a/api/OpenTK.Graphics.Glx.DisplayPtr.yml b/api/OpenTK.Graphics.Glx.DisplayPtr.yml index 12e9e333..ce20b45a 100644 --- a/api/OpenTK.Graphics.Glx.DisplayPtr.yml +++ b/api/OpenTK.Graphics.Glx.DisplayPtr.yml @@ -17,12 +17,8 @@ items: fullName: OpenTK.Graphics.Glx.DisplayPtr type: Struct source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DisplayPtr - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 49 assemblies: - OpenTK.Graphics @@ -51,12 +47,8 @@ items: fullName: OpenTK.Graphics.Glx.DisplayPtr.Value type: Field source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Value - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 54 assemblies: - OpenTK.Graphics @@ -80,12 +72,8 @@ items: fullName: OpenTK.Graphics.Glx.DisplayPtr.DisplayPtr(nint) type: Constructor source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 60 assemblies: - OpenTK.Graphics @@ -115,12 +103,8 @@ items: fullName: OpenTK.Graphics.Glx.DisplayPtr.explicit operator nint(OpenTK.Graphics.Glx.DisplayPtr) type: Operator source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Explicit - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 65 assemblies: - OpenTK.Graphics @@ -149,12 +133,8 @@ items: fullName: OpenTK.Graphics.Glx.DisplayPtr.explicit operator OpenTK.Graphics.Glx.DisplayPtr(nint) type: Operator source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Explicit - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 66 assemblies: - OpenTK.Graphics diff --git a/api/OpenTK.Graphics.Glx.Font.yml b/api/OpenTK.Graphics.Glx.Font.yml index d05c75e4..76ac8289 100644 --- a/api/OpenTK.Graphics.Glx.Font.yml +++ b/api/OpenTK.Graphics.Glx.Font.yml @@ -17,12 +17,8 @@ items: fullName: OpenTK.Graphics.Glx.Font type: Struct source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Font - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 118 assemblies: - OpenTK.Graphics @@ -51,12 +47,8 @@ items: fullName: OpenTK.Graphics.Glx.Font.XID type: Field source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: XID - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 123 assemblies: - OpenTK.Graphics @@ -80,12 +72,8 @@ items: fullName: OpenTK.Graphics.Glx.Font.Font(nuint) type: Constructor source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 129 assemblies: - OpenTK.Graphics @@ -115,12 +103,8 @@ items: fullName: OpenTK.Graphics.Glx.Font.explicit operator nuint(OpenTK.Graphics.Glx.Font) type: Operator source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Explicit - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 134 assemblies: - OpenTK.Graphics @@ -149,12 +133,8 @@ items: fullName: OpenTK.Graphics.Glx.Font.explicit operator OpenTK.Graphics.Glx.Font(nuint) type: Operator source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Explicit - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 135 assemblies: - OpenTK.Graphics diff --git a/api/OpenTK.Graphics.Glx.GLXAttribute.yml b/api/OpenTK.Graphics.Glx.GLXAttribute.yml index 55e40810..294ca6f1 100644 --- a/api/OpenTK.Graphics.Glx.GLXAttribute.yml +++ b/api/OpenTK.Graphics.Glx.GLXAttribute.yml @@ -46,12 +46,8 @@ items: fullName: OpenTK.Graphics.Glx.GLXAttribute type: Enum source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GLXAttribute - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 304 assemblies: - OpenTK.Graphics @@ -71,12 +67,8 @@ items: fullName: OpenTK.Graphics.Glx.GLXAttribute.UseGl type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: UseGl - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 306 assemblies: - OpenTK.Graphics @@ -97,12 +89,8 @@ items: fullName: OpenTK.Graphics.Glx.GLXAttribute.BufferSize type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: BufferSize - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 307 assemblies: - OpenTK.Graphics @@ -123,12 +111,8 @@ items: fullName: OpenTK.Graphics.Glx.GLXAttribute.Level type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Level - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 308 assemblies: - OpenTK.Graphics @@ -149,12 +133,8 @@ items: fullName: OpenTK.Graphics.Glx.GLXAttribute.Rgba type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Rgba - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 309 assemblies: - OpenTK.Graphics @@ -175,12 +155,8 @@ items: fullName: OpenTK.Graphics.Glx.GLXAttribute.Doublebuffer type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Doublebuffer - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 310 assemblies: - OpenTK.Graphics @@ -201,12 +177,8 @@ items: fullName: OpenTK.Graphics.Glx.GLXAttribute.Stereo type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Stereo - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 311 assemblies: - OpenTK.Graphics @@ -227,12 +199,8 @@ items: fullName: OpenTK.Graphics.Glx.GLXAttribute.AuxBuffers type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: AuxBuffers - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 312 assemblies: - OpenTK.Graphics @@ -253,12 +221,8 @@ items: fullName: OpenTK.Graphics.Glx.GLXAttribute.RedSize type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: RedSize - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 313 assemblies: - OpenTK.Graphics @@ -279,12 +243,8 @@ items: fullName: OpenTK.Graphics.Glx.GLXAttribute.GreenSize type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GreenSize - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 314 assemblies: - OpenTK.Graphics @@ -305,12 +265,8 @@ items: fullName: OpenTK.Graphics.Glx.GLXAttribute.BlueSize type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: BlueSize - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 315 assemblies: - OpenTK.Graphics @@ -331,12 +287,8 @@ items: fullName: OpenTK.Graphics.Glx.GLXAttribute.AlphaSize type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: AlphaSize - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 316 assemblies: - OpenTK.Graphics @@ -357,12 +309,8 @@ items: fullName: OpenTK.Graphics.Glx.GLXAttribute.DepthSize type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DepthSize - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 317 assemblies: - OpenTK.Graphics @@ -383,12 +331,8 @@ items: fullName: OpenTK.Graphics.Glx.GLXAttribute.StencilSize type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: StencilSize - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 318 assemblies: - OpenTK.Graphics @@ -409,12 +353,8 @@ items: fullName: OpenTK.Graphics.Glx.GLXAttribute.AccumRedSize type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: AccumRedSize - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 319 assemblies: - OpenTK.Graphics @@ -435,12 +375,8 @@ items: fullName: OpenTK.Graphics.Glx.GLXAttribute.AccumGreenSize type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: AccumGreenSize - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 320 assemblies: - OpenTK.Graphics @@ -461,12 +397,8 @@ items: fullName: OpenTK.Graphics.Glx.GLXAttribute.AccumBlueSize type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: AccumBlueSize - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 321 assemblies: - OpenTK.Graphics @@ -487,12 +419,8 @@ items: fullName: OpenTK.Graphics.Glx.GLXAttribute.AccumAlphaSize type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: AccumAlphaSize - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 322 assemblies: - OpenTK.Graphics @@ -513,12 +441,8 @@ items: fullName: OpenTK.Graphics.Glx.GLXAttribute.ConfigCaveat type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ConfigCaveat - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 323 assemblies: - OpenTK.Graphics @@ -539,12 +463,8 @@ items: fullName: OpenTK.Graphics.Glx.GLXAttribute.VisualCaveatExt type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: VisualCaveatExt - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 324 assemblies: - OpenTK.Graphics @@ -565,12 +485,8 @@ items: fullName: OpenTK.Graphics.Glx.GLXAttribute.XVisualType type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: XVisualType - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 325 assemblies: - OpenTK.Graphics @@ -591,12 +507,8 @@ items: fullName: OpenTK.Graphics.Glx.GLXAttribute.XVisualTypeExt type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: XVisualTypeExt - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 326 assemblies: - OpenTK.Graphics @@ -617,12 +529,8 @@ items: fullName: OpenTK.Graphics.Glx.GLXAttribute.TransparentType type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TransparentType - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 327 assemblies: - OpenTK.Graphics @@ -643,12 +551,8 @@ items: fullName: OpenTK.Graphics.Glx.GLXAttribute.TransparentTypeExt type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TransparentTypeExt - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 328 assemblies: - OpenTK.Graphics @@ -669,12 +573,8 @@ items: fullName: OpenTK.Graphics.Glx.GLXAttribute.TransparentIndexValue type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TransparentIndexValue - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 329 assemblies: - OpenTK.Graphics @@ -695,12 +595,8 @@ items: fullName: OpenTK.Graphics.Glx.GLXAttribute.TransparentIndexValueExt type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TransparentIndexValueExt - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 330 assemblies: - OpenTK.Graphics @@ -721,12 +617,8 @@ items: fullName: OpenTK.Graphics.Glx.GLXAttribute.TransparentRedValue type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TransparentRedValue - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 331 assemblies: - OpenTK.Graphics @@ -747,12 +639,8 @@ items: fullName: OpenTK.Graphics.Glx.GLXAttribute.TransparentRedValueExt type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TransparentRedValueExt - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 332 assemblies: - OpenTK.Graphics @@ -773,12 +661,8 @@ items: fullName: OpenTK.Graphics.Glx.GLXAttribute.TransparentGreenValue type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TransparentGreenValue - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 333 assemblies: - OpenTK.Graphics @@ -799,12 +683,8 @@ items: fullName: OpenTK.Graphics.Glx.GLXAttribute.TransparentGreenValueExt type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TransparentGreenValueExt - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 334 assemblies: - OpenTK.Graphics @@ -825,12 +705,8 @@ items: fullName: OpenTK.Graphics.Glx.GLXAttribute.TransparentBlueValue type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TransparentBlueValue - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 335 assemblies: - OpenTK.Graphics @@ -851,12 +727,8 @@ items: fullName: OpenTK.Graphics.Glx.GLXAttribute.TransparentBlueValueExt type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TransparentBlueValueExt - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 336 assemblies: - OpenTK.Graphics @@ -877,12 +749,8 @@ items: fullName: OpenTK.Graphics.Glx.GLXAttribute.TransparentAlphaValue type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TransparentAlphaValue - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 337 assemblies: - OpenTK.Graphics @@ -903,12 +771,8 @@ items: fullName: OpenTK.Graphics.Glx.GLXAttribute.TransparentAlphaValueExt type: Field source: - remote: - path: src/OpenTK.Graphics/Glx/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TransparentAlphaValueExt - path: opentk/src/OpenTK.Graphics/Glx/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs startLine: 338 assemblies: - OpenTK.Graphics diff --git a/api/OpenTK.Graphics.Glx.GLXContext.yml b/api/OpenTK.Graphics.Glx.GLXContext.yml index 34f28d55..3c3bdc4f 100644 --- a/api/OpenTK.Graphics.Glx.GLXContext.yml +++ b/api/OpenTK.Graphics.Glx.GLXContext.yml @@ -17,12 +17,8 @@ items: fullName: OpenTK.Graphics.Glx.GLXContext type: Struct source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GLXContext - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 272 assemblies: - OpenTK.Graphics @@ -51,12 +47,8 @@ items: fullName: OpenTK.Graphics.Glx.GLXContext.Value type: Field source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Value - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 274 assemblies: - OpenTK.Graphics @@ -78,12 +70,8 @@ items: fullName: OpenTK.Graphics.Glx.GLXContext.GLXContext(nint) type: Constructor source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 276 assemblies: - OpenTK.Graphics @@ -110,12 +98,8 @@ items: fullName: OpenTK.Graphics.Glx.GLXContext.explicit operator OpenTK.Graphics.Glx.GLXContext(nint) type: Operator source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Explicit - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 281 assemblies: - OpenTK.Graphics @@ -144,12 +128,8 @@ items: fullName: OpenTK.Graphics.Glx.GLXContext.explicit operator nint(OpenTK.Graphics.Glx.GLXContext) type: Operator source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Explicit - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 282 assemblies: - OpenTK.Graphics diff --git a/api/OpenTK.Graphics.Glx.GLXContextID.yml b/api/OpenTK.Graphics.Glx.GLXContextID.yml index b0e82e96..e3975390 100644 --- a/api/OpenTK.Graphics.Glx.GLXContextID.yml +++ b/api/OpenTK.Graphics.Glx.GLXContextID.yml @@ -17,12 +17,8 @@ items: fullName: OpenTK.Graphics.Glx.GLXContextID type: Struct source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GLXContextID - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 249 assemblies: - OpenTK.Graphics @@ -51,12 +47,8 @@ items: fullName: OpenTK.Graphics.Glx.GLXContextID.XID type: Field source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: XID - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 254 assemblies: - OpenTK.Graphics @@ -80,12 +72,8 @@ items: fullName: OpenTK.Graphics.Glx.GLXContextID.GLXContextID(nuint) type: Constructor source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 260 assemblies: - OpenTK.Graphics @@ -115,12 +103,8 @@ items: fullName: OpenTK.Graphics.Glx.GLXContextID.explicit operator nuint(OpenTK.Graphics.Glx.GLXContextID) type: Operator source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Explicit - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 265 assemblies: - OpenTK.Graphics @@ -149,12 +133,8 @@ items: fullName: OpenTK.Graphics.Glx.GLXContextID.explicit operator OpenTK.Graphics.Glx.GLXContextID(nuint) type: Operator source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Explicit - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 266 assemblies: - OpenTK.Graphics diff --git a/api/OpenTK.Graphics.Glx.GLXDrawable.yml b/api/OpenTK.Graphics.Glx.GLXDrawable.yml index 993acc6e..191a87b5 100644 --- a/api/OpenTK.Graphics.Glx.GLXDrawable.yml +++ b/api/OpenTK.Graphics.Glx.GLXDrawable.yml @@ -17,12 +17,8 @@ items: fullName: OpenTK.Graphics.Glx.GLXDrawable type: Struct source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GLXDrawable - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 311 assemblies: - OpenTK.Graphics @@ -51,12 +47,8 @@ items: fullName: OpenTK.Graphics.Glx.GLXDrawable.XID type: Field source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: XID - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 316 assemblies: - OpenTK.Graphics @@ -80,12 +72,8 @@ items: fullName: OpenTK.Graphics.Glx.GLXDrawable.GLXDrawable(nuint) type: Constructor source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 322 assemblies: - OpenTK.Graphics @@ -115,12 +103,8 @@ items: fullName: OpenTK.Graphics.Glx.GLXDrawable.explicit operator nuint(OpenTK.Graphics.Glx.GLXDrawable) type: Operator source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Explicit - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 327 assemblies: - OpenTK.Graphics @@ -149,12 +133,8 @@ items: fullName: OpenTK.Graphics.Glx.GLXDrawable.explicit operator OpenTK.Graphics.Glx.GLXDrawable(nuint) type: Operator source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Explicit - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 328 assemblies: - OpenTK.Graphics diff --git a/api/OpenTK.Graphics.Glx.GLXFBConfig.yml b/api/OpenTK.Graphics.Glx.GLXFBConfig.yml index 5e4a66dc..3888aee5 100644 --- a/api/OpenTK.Graphics.Glx.GLXFBConfig.yml +++ b/api/OpenTK.Graphics.Glx.GLXFBConfig.yml @@ -17,12 +17,8 @@ items: fullName: OpenTK.Graphics.Glx.GLXFBConfig type: Struct source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GLXFBConfig - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 233 assemblies: - OpenTK.Graphics @@ -51,12 +47,8 @@ items: fullName: OpenTK.Graphics.Glx.GLXFBConfig.Value type: Field source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Value - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 235 assemblies: - OpenTK.Graphics @@ -78,12 +70,8 @@ items: fullName: OpenTK.Graphics.Glx.GLXFBConfig.GLXFBConfig(nint) type: Constructor source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 237 assemblies: - OpenTK.Graphics @@ -110,12 +98,8 @@ items: fullName: OpenTK.Graphics.Glx.GLXFBConfig.explicit operator OpenTK.Graphics.Glx.GLXFBConfig(nint) type: Operator source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Explicit - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 242 assemblies: - OpenTK.Graphics @@ -144,12 +128,8 @@ items: fullName: OpenTK.Graphics.Glx.GLXFBConfig.explicit operator nint(OpenTK.Graphics.Glx.GLXFBConfig) type: Operator source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Explicit - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 243 assemblies: - OpenTK.Graphics diff --git a/api/OpenTK.Graphics.Glx.GLXFBConfigID.yml b/api/OpenTK.Graphics.Glx.GLXFBConfigID.yml index 43ec5092..9d2d21c5 100644 --- a/api/OpenTK.Graphics.Glx.GLXFBConfigID.yml +++ b/api/OpenTK.Graphics.Glx.GLXFBConfigID.yml @@ -17,12 +17,8 @@ items: fullName: OpenTK.Graphics.Glx.GLXFBConfigID type: Struct source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GLXFBConfigID - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 210 assemblies: - OpenTK.Graphics @@ -51,12 +47,8 @@ items: fullName: OpenTK.Graphics.Glx.GLXFBConfigID.XID type: Field source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: XID - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 215 assemblies: - OpenTK.Graphics @@ -80,12 +72,8 @@ items: fullName: OpenTK.Graphics.Glx.GLXFBConfigID.GLXFBConfigID(nuint) type: Constructor source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 221 assemblies: - OpenTK.Graphics @@ -115,12 +103,8 @@ items: fullName: OpenTK.Graphics.Glx.GLXFBConfigID.explicit operator nuint(OpenTK.Graphics.Glx.GLXFBConfigID) type: Operator source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Explicit - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 226 assemblies: - OpenTK.Graphics @@ -149,12 +133,8 @@ items: fullName: OpenTK.Graphics.Glx.GLXFBConfigID.explicit operator OpenTK.Graphics.Glx.GLXFBConfigID(nuint) type: Operator source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Explicit - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 227 assemblies: - OpenTK.Graphics diff --git a/api/OpenTK.Graphics.Glx.GLXFBConfigIDSGIX.yml b/api/OpenTK.Graphics.Glx.GLXFBConfigIDSGIX.yml index 5017cb3c..0c88d8f4 100644 --- a/api/OpenTK.Graphics.Glx.GLXFBConfigIDSGIX.yml +++ b/api/OpenTK.Graphics.Glx.GLXFBConfigIDSGIX.yml @@ -17,12 +17,8 @@ items: fullName: OpenTK.Graphics.Glx.GLXFBConfigIDSGIX type: Struct source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GLXFBConfigIDSGIX - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 426 assemblies: - OpenTK.Graphics @@ -51,12 +47,8 @@ items: fullName: OpenTK.Graphics.Glx.GLXFBConfigIDSGIX.XID type: Field source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: XID - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 431 assemblies: - OpenTK.Graphics @@ -80,12 +72,8 @@ items: fullName: OpenTK.Graphics.Glx.GLXFBConfigIDSGIX.GLXFBConfigIDSGIX(nuint) type: Constructor source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 437 assemblies: - OpenTK.Graphics @@ -115,12 +103,8 @@ items: fullName: OpenTK.Graphics.Glx.GLXFBConfigIDSGIX.explicit operator nuint(OpenTK.Graphics.Glx.GLXFBConfigIDSGIX) type: Operator source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Explicit - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 442 assemblies: - OpenTK.Graphics @@ -149,12 +133,8 @@ items: fullName: OpenTK.Graphics.Glx.GLXFBConfigIDSGIX.explicit operator OpenTK.Graphics.Glx.GLXFBConfigIDSGIX(nuint) type: Operator source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Explicit - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 443 assemblies: - OpenTK.Graphics diff --git a/api/OpenTK.Graphics.Glx.GLXFBConfigSGIX.yml b/api/OpenTK.Graphics.Glx.GLXFBConfigSGIX.yml index 68d97b47..dd2450f1 100644 --- a/api/OpenTK.Graphics.Glx.GLXFBConfigSGIX.yml +++ b/api/OpenTK.Graphics.Glx.GLXFBConfigSGIX.yml @@ -17,12 +17,8 @@ items: fullName: OpenTK.Graphics.Glx.GLXFBConfigSGIX type: Struct source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GLXFBConfigSGIX - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 449 assemblies: - OpenTK.Graphics @@ -51,12 +47,8 @@ items: fullName: OpenTK.Graphics.Glx.GLXFBConfigSGIX.Value type: Field source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Value - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 451 assemblies: - OpenTK.Graphics @@ -78,12 +70,8 @@ items: fullName: OpenTK.Graphics.Glx.GLXFBConfigSGIX.GLXFBConfigSGIX(nint) type: Constructor source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 453 assemblies: - OpenTK.Graphics @@ -110,12 +98,8 @@ items: fullName: OpenTK.Graphics.Glx.GLXFBConfigSGIX.explicit operator OpenTK.Graphics.Glx.GLXFBConfigSGIX(nint) type: Operator source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Explicit - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 458 assemblies: - OpenTK.Graphics @@ -144,12 +128,8 @@ items: fullName: OpenTK.Graphics.Glx.GLXFBConfigSGIX.explicit operator nint(OpenTK.Graphics.Glx.GLXFBConfigSGIX) type: Operator source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Explicit - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 459 assemblies: - OpenTK.Graphics diff --git a/api/OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX.yml b/api/OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX.yml index 514a3d86..cce5d5fb 100644 --- a/api/OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX.yml +++ b/api/OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX.yml @@ -17,12 +17,8 @@ items: fullName: OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX type: Struct source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GLXHyperpipeConfigSGIX - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 509 assemblies: - OpenTK.Graphics @@ -49,12 +45,8 @@ items: fullName: OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX.PipeName type: Field source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: PipeName - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 511 assemblies: - OpenTK.Graphics @@ -76,12 +68,8 @@ items: fullName: OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX.Channel type: Field source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Channel - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 512 assemblies: - OpenTK.Graphics @@ -103,12 +91,8 @@ items: fullName: OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX.ParticipationType type: Field source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ParticipationType - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 513 assemblies: - OpenTK.Graphics @@ -130,12 +114,8 @@ items: fullName: OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX.TimeSlice type: Field source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TimeSlice - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 514 assemblies: - OpenTK.Graphics diff --git a/api/OpenTK.Graphics.Glx.GLXHyperpipeNetworkSGIX.yml b/api/OpenTK.Graphics.Glx.GLXHyperpipeNetworkSGIX.yml index ff296ebb..8e95c548 100644 --- a/api/OpenTK.Graphics.Glx.GLXHyperpipeNetworkSGIX.yml +++ b/api/OpenTK.Graphics.Glx.GLXHyperpipeNetworkSGIX.yml @@ -15,12 +15,8 @@ items: fullName: OpenTK.Graphics.Glx.GLXHyperpipeNetworkSGIX type: Struct source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GLXHyperpipeNetworkSGIX - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 517 assemblies: - OpenTK.Graphics @@ -47,12 +43,8 @@ items: fullName: OpenTK.Graphics.Glx.GLXHyperpipeNetworkSGIX.PipeName type: Field source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: PipeName - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 519 assemblies: - OpenTK.Graphics @@ -74,12 +66,8 @@ items: fullName: OpenTK.Graphics.Glx.GLXHyperpipeNetworkSGIX.NetworkId type: Field source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: NetworkId - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 520 assemblies: - OpenTK.Graphics diff --git a/api/OpenTK.Graphics.Glx.GLXPbuffer.yml b/api/OpenTK.Graphics.Glx.GLXPbuffer.yml index 547454ad..01e9c755 100644 --- a/api/OpenTK.Graphics.Glx.GLXPbuffer.yml +++ b/api/OpenTK.Graphics.Glx.GLXPbuffer.yml @@ -17,12 +17,8 @@ items: fullName: OpenTK.Graphics.Glx.GLXPbuffer type: Struct source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GLXPbuffer - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 357 assemblies: - OpenTK.Graphics @@ -51,12 +47,8 @@ items: fullName: OpenTK.Graphics.Glx.GLXPbuffer.XID type: Field source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: XID - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 362 assemblies: - OpenTK.Graphics @@ -80,12 +72,8 @@ items: fullName: OpenTK.Graphics.Glx.GLXPbuffer.GLXPbuffer(nuint) type: Constructor source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 368 assemblies: - OpenTK.Graphics @@ -115,12 +103,8 @@ items: fullName: OpenTK.Graphics.Glx.GLXPbuffer.explicit operator nuint(OpenTK.Graphics.Glx.GLXPbuffer) type: Operator source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Explicit - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 373 assemblies: - OpenTK.Graphics @@ -149,12 +133,8 @@ items: fullName: OpenTK.Graphics.Glx.GLXPbuffer.explicit operator OpenTK.Graphics.Glx.GLXPbuffer(nuint) type: Operator source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Explicit - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 374 assemblies: - OpenTK.Graphics diff --git a/api/OpenTK.Graphics.Glx.GLXPbufferSGIX.yml b/api/OpenTK.Graphics.Glx.GLXPbufferSGIX.yml index 363dd1a6..713363df 100644 --- a/api/OpenTK.Graphics.Glx.GLXPbufferSGIX.yml +++ b/api/OpenTK.Graphics.Glx.GLXPbufferSGIX.yml @@ -17,12 +17,8 @@ items: fullName: OpenTK.Graphics.Glx.GLXPbufferSGIX type: Struct source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GLXPbufferSGIX - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 465 assemblies: - OpenTK.Graphics @@ -51,12 +47,8 @@ items: fullName: OpenTK.Graphics.Glx.GLXPbufferSGIX.XID type: Field source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: XID - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 470 assemblies: - OpenTK.Graphics @@ -80,12 +72,8 @@ items: fullName: OpenTK.Graphics.Glx.GLXPbufferSGIX.GLXPbufferSGIX(nuint) type: Constructor source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 476 assemblies: - OpenTK.Graphics @@ -115,12 +103,8 @@ items: fullName: OpenTK.Graphics.Glx.GLXPbufferSGIX.explicit operator nuint(OpenTK.Graphics.Glx.GLXPbufferSGIX) type: Operator source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Explicit - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 481 assemblies: - OpenTK.Graphics @@ -149,12 +133,8 @@ items: fullName: OpenTK.Graphics.Glx.GLXPbufferSGIX.explicit operator OpenTK.Graphics.Glx.GLXPbufferSGIX(nuint) type: Operator source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Explicit - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 482 assemblies: - OpenTK.Graphics diff --git a/api/OpenTK.Graphics.Glx.GLXPixmap.yml b/api/OpenTK.Graphics.Glx.GLXPixmap.yml index 8140d281..3ba98844 100644 --- a/api/OpenTK.Graphics.Glx.GLXPixmap.yml +++ b/api/OpenTK.Graphics.Glx.GLXPixmap.yml @@ -17,12 +17,8 @@ items: fullName: OpenTK.Graphics.Glx.GLXPixmap type: Struct source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GLXPixmap - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 288 assemblies: - OpenTK.Graphics @@ -51,12 +47,8 @@ items: fullName: OpenTK.Graphics.Glx.GLXPixmap.XID type: Field source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: XID - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 293 assemblies: - OpenTK.Graphics @@ -80,12 +72,8 @@ items: fullName: OpenTK.Graphics.Glx.GLXPixmap.GLXPixmap(nuint) type: Constructor source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 299 assemblies: - OpenTK.Graphics @@ -115,12 +103,8 @@ items: fullName: OpenTK.Graphics.Glx.GLXPixmap.explicit operator nuint(OpenTK.Graphics.Glx.GLXPixmap) type: Operator source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Explicit - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 304 assemblies: - OpenTK.Graphics @@ -149,12 +133,8 @@ items: fullName: OpenTK.Graphics.Glx.GLXPixmap.explicit operator OpenTK.Graphics.Glx.GLXPixmap(nuint) type: Operator source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Explicit - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 305 assemblies: - OpenTK.Graphics diff --git a/api/OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV.yml b/api/OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV.yml index 6f7c61a6..b69550c6 100644 --- a/api/OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV.yml +++ b/api/OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV.yml @@ -17,12 +17,8 @@ items: fullName: OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV type: Struct source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GLXVideoCaptureDeviceNV - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 380 assemblies: - OpenTK.Graphics @@ -51,12 +47,8 @@ items: fullName: OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV.XID type: Field source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: XID - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 385 assemblies: - OpenTK.Graphics @@ -80,12 +72,8 @@ items: fullName: OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV.GLXVideoCaptureDeviceNV(nuint) type: Constructor source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 391 assemblies: - OpenTK.Graphics @@ -115,12 +103,8 @@ items: fullName: OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV.explicit operator nuint(OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV) type: Operator source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Explicit - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 396 assemblies: - OpenTK.Graphics @@ -149,12 +133,8 @@ items: fullName: OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV.explicit operator OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV(nuint) type: Operator source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Explicit - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 397 assemblies: - OpenTK.Graphics diff --git a/api/OpenTK.Graphics.Glx.GLXVideoDeviceNV.yml b/api/OpenTK.Graphics.Glx.GLXVideoDeviceNV.yml index 36b15913..ab65dc9e 100644 --- a/api/OpenTK.Graphics.Glx.GLXVideoDeviceNV.yml +++ b/api/OpenTK.Graphics.Glx.GLXVideoDeviceNV.yml @@ -17,12 +17,8 @@ items: fullName: OpenTK.Graphics.Glx.GLXVideoDeviceNV type: Struct source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GLXVideoDeviceNV - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 488 assemblies: - OpenTK.Graphics @@ -51,12 +47,8 @@ items: fullName: OpenTK.Graphics.Glx.GLXVideoDeviceNV.VideoDevice type: Field source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: VideoDevice - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 493 assemblies: - OpenTK.Graphics @@ -80,12 +72,8 @@ items: fullName: OpenTK.Graphics.Glx.GLXVideoDeviceNV.GLXVideoDeviceNV(uint) type: Constructor source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 499 assemblies: - OpenTK.Graphics @@ -115,12 +103,8 @@ items: fullName: OpenTK.Graphics.Glx.GLXVideoDeviceNV.explicit operator uint(OpenTK.Graphics.Glx.GLXVideoDeviceNV) type: Operator source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Explicit - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 504 assemblies: - OpenTK.Graphics @@ -149,12 +133,8 @@ items: fullName: OpenTK.Graphics.Glx.GLXVideoDeviceNV.explicit operator OpenTK.Graphics.Glx.GLXVideoDeviceNV(uint) type: Operator source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Explicit - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 505 assemblies: - OpenTK.Graphics diff --git a/api/OpenTK.Graphics.Glx.GLXVideoSourceSGIX.yml b/api/OpenTK.Graphics.Glx.GLXVideoSourceSGIX.yml index a2ec50aa..3e2dac13 100644 --- a/api/OpenTK.Graphics.Glx.GLXVideoSourceSGIX.yml +++ b/api/OpenTK.Graphics.Glx.GLXVideoSourceSGIX.yml @@ -17,12 +17,8 @@ items: fullName: OpenTK.Graphics.Glx.GLXVideoSourceSGIX type: Struct source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GLXVideoSourceSGIX - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 403 assemblies: - OpenTK.Graphics @@ -51,12 +47,8 @@ items: fullName: OpenTK.Graphics.Glx.GLXVideoSourceSGIX.XID type: Field source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: XID - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 408 assemblies: - OpenTK.Graphics @@ -80,12 +72,8 @@ items: fullName: OpenTK.Graphics.Glx.GLXVideoSourceSGIX.GLXVideoSourceSGIX(nuint) type: Constructor source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 414 assemblies: - OpenTK.Graphics @@ -115,12 +103,8 @@ items: fullName: OpenTK.Graphics.Glx.GLXVideoSourceSGIX.explicit operator nuint(OpenTK.Graphics.Glx.GLXVideoSourceSGIX) type: Operator source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Explicit - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 419 assemblies: - OpenTK.Graphics @@ -149,12 +133,8 @@ items: fullName: OpenTK.Graphics.Glx.GLXVideoSourceSGIX.explicit operator OpenTK.Graphics.Glx.GLXVideoSourceSGIX(nuint) type: Operator source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Explicit - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 420 assemblies: - OpenTK.Graphics diff --git a/api/OpenTK.Graphics.Glx.GLXWindow.yml b/api/OpenTK.Graphics.Glx.GLXWindow.yml index 34bd4487..5895f346 100644 --- a/api/OpenTK.Graphics.Glx.GLXWindow.yml +++ b/api/OpenTK.Graphics.Glx.GLXWindow.yml @@ -17,12 +17,8 @@ items: fullName: OpenTK.Graphics.Glx.GLXWindow type: Struct source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GLXWindow - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 334 assemblies: - OpenTK.Graphics @@ -51,12 +47,8 @@ items: fullName: OpenTK.Graphics.Glx.GLXWindow.XID type: Field source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: XID - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 339 assemblies: - OpenTK.Graphics @@ -80,12 +72,8 @@ items: fullName: OpenTK.Graphics.Glx.GLXWindow.GLXWindow(nuint) type: Constructor source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 345 assemblies: - OpenTK.Graphics @@ -115,12 +103,8 @@ items: fullName: OpenTK.Graphics.Glx.GLXWindow.explicit operator nuint(OpenTK.Graphics.Glx.GLXWindow) type: Operator source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Explicit - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 350 assemblies: - OpenTK.Graphics @@ -149,12 +133,8 @@ items: fullName: OpenTK.Graphics.Glx.GLXWindow.explicit operator OpenTK.Graphics.Glx.GLXWindow(nuint) type: Operator source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Explicit - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 351 assemblies: - OpenTK.Graphics diff --git a/api/OpenTK.Graphics.Glx.Glx.AMD.yml b/api/OpenTK.Graphics.Glx.Glx.AMD.yml index f3349ee4..61f3f1cb 100644 --- a/api/OpenTK.Graphics.Glx.Glx.AMD.yml +++ b/api/OpenTK.Graphics.Glx.Glx.AMD.yml @@ -9,14 +9,20 @@ items: - OpenTK.Graphics.Glx.Glx.AMD.CreateAssociatedContextAMD(System.UInt32,OpenTK.Graphics.Glx.GLXContext) - OpenTK.Graphics.Glx.Glx.AMD.CreateAssociatedContextAttribsAMD(System.UInt32,OpenTK.Graphics.Glx.GLXContext,System.Int32*) - OpenTK.Graphics.Glx.Glx.AMD.CreateAssociatedContextAttribsAMD(System.UInt32,OpenTK.Graphics.Glx.GLXContext,System.Int32@) + - OpenTK.Graphics.Glx.Glx.AMD.CreateAssociatedContextAttribsAMD(System.UInt32,OpenTK.Graphics.Glx.GLXContext,System.Int32[]) + - OpenTK.Graphics.Glx.Glx.AMD.CreateAssociatedContextAttribsAMD(System.UInt32,OpenTK.Graphics.Glx.GLXContext,System.ReadOnlySpan{System.Int32}) - OpenTK.Graphics.Glx.Glx.AMD.DeleteAssociatedContextAMD(OpenTK.Graphics.Glx.GLXContext) - OpenTK.Graphics.Glx.Glx.AMD.GetContextGPUIDAMD(OpenTK.Graphics.Glx.GLXContext) - OpenTK.Graphics.Glx.Glx.AMD.GetCurrentAssociatedContextAMD + - OpenTK.Graphics.Glx.Glx.AMD.GetGPUIDsAMD(System.UInt32,System.Span{System.UInt32}) - OpenTK.Graphics.Glx.Glx.AMD.GetGPUIDsAMD(System.UInt32,System.UInt32*) - OpenTK.Graphics.Glx.Glx.AMD.GetGPUIDsAMD(System.UInt32,System.UInt32@) + - OpenTK.Graphics.Glx.Glx.AMD.GetGPUIDsAMD(System.UInt32,System.UInt32[]) - OpenTK.Graphics.Glx.Glx.AMD.GetGPUInfoAMD(System.UInt32,System.Int32,OpenTK.Graphics.Glx.All,System.UInt32,System.IntPtr) - OpenTK.Graphics.Glx.Glx.AMD.GetGPUInfoAMD(System.UInt32,System.Int32,OpenTK.Graphics.Glx.All,System.UInt32,System.Void*) + - OpenTK.Graphics.Glx.Glx.AMD.GetGPUInfoAMD``1(System.UInt32,System.Int32,OpenTK.Graphics.Glx.All,System.UInt32,System.Span{``0}) - OpenTK.Graphics.Glx.Glx.AMD.GetGPUInfoAMD``1(System.UInt32,System.Int32,OpenTK.Graphics.Glx.All,System.UInt32,``0@) + - OpenTK.Graphics.Glx.Glx.AMD.GetGPUInfoAMD``1(System.UInt32,System.Int32,OpenTK.Graphics.Glx.All,System.UInt32,``0[]) - OpenTK.Graphics.Glx.Glx.AMD.MakeAssociatedContextCurrentAMD(OpenTK.Graphics.Glx.GLXContext) langs: - csharp @@ -26,13 +32,9 @@ items: fullName: OpenTK.Graphics.Glx.Glx.AMD type: Class source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: AMD - path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 179 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 469 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -63,17 +65,18 @@ items: fullName: OpenTK.Graphics.Glx.Glx.AMD.BlitContextFramebufferAMD(OpenTK.Graphics.Glx.GLXContext, int, int, int, int, int, int, int, int, uint, OpenTK.Graphics.Glx.All) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: BlitContextFramebufferAMD - path: opentk/src/OpenTK.Graphics/Glx/GLX.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs startLine: 132 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx - summary: '[requires: GLX_AMD_gpu_association] [entry point: glXBlitContextFramebufferAMD]
' + summary: >- + [requires: GLX_AMD_gpu_association] + + [entry point: glXBlitContextFramebufferAMD] + +
example: [] syntax: content: public static void BlitContextFramebufferAMD(GLXContext dstCtx, int srcX0, int srcY0, int srcX1, int srcY1, int dstX0, int dstY0, int dstX1, int dstY1, uint mask, All filter) @@ -117,17 +120,18 @@ items: fullName: OpenTK.Graphics.Glx.Glx.AMD.CreateAssociatedContextAMD(uint, OpenTK.Graphics.Glx.GLXContext) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateAssociatedContextAMD - path: opentk/src/OpenTK.Graphics/Glx/GLX.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs startLine: 135 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx - summary: '[requires: GLX_AMD_gpu_association] [entry point: glXCreateAssociatedContextAMD]
' + summary: >- + [requires: GLX_AMD_gpu_association] + + [entry point: glXCreateAssociatedContextAMD] + +
example: [] syntax: content: public static GLXContext CreateAssociatedContextAMD(uint id, GLXContext share_list) @@ -155,17 +159,18 @@ items: fullName: OpenTK.Graphics.Glx.Glx.AMD.CreateAssociatedContextAttribsAMD(uint, OpenTK.Graphics.Glx.GLXContext, int*) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateAssociatedContextAttribsAMD - path: opentk/src/OpenTK.Graphics/Glx/GLX.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs startLine: 138 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx - summary: '[requires: GLX_AMD_gpu_association] [entry point: glXCreateAssociatedContextAttribsAMD]
' + summary: >- + [requires: GLX_AMD_gpu_association] + + [entry point: glXCreateAssociatedContextAttribsAMD] + +
example: [] syntax: content: public static GLXContext CreateAssociatedContextAttribsAMD(uint id, GLXContext share_context, int* attribList) @@ -195,17 +200,18 @@ items: fullName: OpenTK.Graphics.Glx.Glx.AMD.DeleteAssociatedContextAMD(OpenTK.Graphics.Glx.GLXContext) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DeleteAssociatedContextAMD - path: opentk/src/OpenTK.Graphics/Glx/GLX.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs startLine: 141 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx - summary: '[requires: GLX_AMD_gpu_association] [entry point: glXDeleteAssociatedContextAMD]
' + summary: >- + [requires: GLX_AMD_gpu_association] + + [entry point: glXDeleteAssociatedContextAMD] + +
example: [] syntax: content: public static bool DeleteAssociatedContextAMD(GLXContext ctx) @@ -228,17 +234,18 @@ items: fullName: OpenTK.Graphics.Glx.Glx.AMD.GetContextGPUIDAMD(OpenTK.Graphics.Glx.GLXContext) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetContextGPUIDAMD - path: opentk/src/OpenTK.Graphics/Glx/GLX.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs startLine: 144 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx - summary: '[requires: GLX_AMD_gpu_association] [entry point: glXGetContextGPUIDAMD]
' + summary: >- + [requires: GLX_AMD_gpu_association] + + [entry point: glXGetContextGPUIDAMD] + +
example: [] syntax: content: public static uint GetContextGPUIDAMD(GLXContext ctx) @@ -261,17 +268,18 @@ items: fullName: OpenTK.Graphics.Glx.Glx.AMD.GetCurrentAssociatedContextAMD() type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetCurrentAssociatedContextAMD - path: opentk/src/OpenTK.Graphics/Glx/GLX.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs startLine: 147 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx - summary: '[requires: GLX_AMD_gpu_association] [entry point: glXGetCurrentAssociatedContextAMD]
' + summary: >- + [requires: GLX_AMD_gpu_association] + + [entry point: glXGetCurrentAssociatedContextAMD] + +
example: [] syntax: content: public static GLXContext GetCurrentAssociatedContextAMD() @@ -291,17 +299,18 @@ items: fullName: OpenTK.Graphics.Glx.Glx.AMD.GetGPUIDsAMD(uint, uint*) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetGPUIDsAMD - path: opentk/src/OpenTK.Graphics/Glx/GLX.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs startLine: 150 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx - summary: '[requires: GLX_AMD_gpu_association] [entry point: glXGetGPUIDsAMD]
' + summary: >- + [requires: GLX_AMD_gpu_association] + + [entry point: glXGetGPUIDsAMD] + +
example: [] syntax: content: public static uint GetGPUIDsAMD(uint maxCount, uint* ids) @@ -329,17 +338,18 @@ items: fullName: OpenTK.Graphics.Glx.Glx.AMD.GetGPUInfoAMD(uint, int, OpenTK.Graphics.Glx.All, uint, void*) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetGPUInfoAMD - path: opentk/src/OpenTK.Graphics/Glx/GLX.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs startLine: 153 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx - summary: '[requires: GLX_AMD_gpu_association] [entry point: glXGetGPUInfoAMD]
' + summary: >- + [requires: GLX_AMD_gpu_association] + + [entry point: glXGetGPUInfoAMD] + +
example: [] syntax: content: public static int GetGPUInfoAMD(uint id, int property, All dataType, uint size, void* data) @@ -373,17 +383,18 @@ items: fullName: OpenTK.Graphics.Glx.Glx.AMD.MakeAssociatedContextCurrentAMD(OpenTK.Graphics.Glx.GLXContext) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MakeAssociatedContextCurrentAMD - path: opentk/src/OpenTK.Graphics/Glx/GLX.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs startLine: 156 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx - summary: '[requires: GLX_AMD_gpu_association] [entry point: glXMakeAssociatedContextCurrentAMD]
' + summary: >- + [requires: GLX_AMD_gpu_association] + + [entry point: glXMakeAssociatedContextCurrentAMD] + +
example: [] syntax: content: public static bool MakeAssociatedContextCurrentAMD(GLXContext ctx) @@ -394,6 +405,88 @@ items: type: System.Boolean content.vb: Public Shared Function MakeAssociatedContextCurrentAMD(ctx As GLXContext) As Boolean overload: OpenTK.Graphics.Glx.Glx.AMD.MakeAssociatedContextCurrentAMD* +- uid: OpenTK.Graphics.Glx.Glx.AMD.CreateAssociatedContextAttribsAMD(System.UInt32,OpenTK.Graphics.Glx.GLXContext,System.ReadOnlySpan{System.Int32}) + commentId: M:OpenTK.Graphics.Glx.Glx.AMD.CreateAssociatedContextAttribsAMD(System.UInt32,OpenTK.Graphics.Glx.GLXContext,System.ReadOnlySpan{System.Int32}) + id: CreateAssociatedContextAttribsAMD(System.UInt32,OpenTK.Graphics.Glx.GLXContext,System.ReadOnlySpan{System.Int32}) + parent: OpenTK.Graphics.Glx.Glx.AMD + langs: + - csharp + - vb + name: CreateAssociatedContextAttribsAMD(uint, GLXContext, ReadOnlySpan) + nameWithType: Glx.AMD.CreateAssociatedContextAttribsAMD(uint, GLXContext, ReadOnlySpan) + fullName: OpenTK.Graphics.Glx.Glx.AMD.CreateAssociatedContextAttribsAMD(uint, OpenTK.Graphics.Glx.GLXContext, System.ReadOnlySpan) + type: Method + source: + id: CreateAssociatedContextAttribsAMD + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 472 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Glx + summary: >- + [requires: GLX_AMD_gpu_association] + + [entry point: glXCreateAssociatedContextAttribsAMD] + +
+ example: [] + syntax: + content: public static GLXContext CreateAssociatedContextAttribsAMD(uint id, GLXContext share_context, ReadOnlySpan attribList) + parameters: + - id: id + type: System.UInt32 + - id: share_context + type: OpenTK.Graphics.Glx.GLXContext + - id: attribList + type: System.ReadOnlySpan{System.Int32} + return: + type: OpenTK.Graphics.Glx.GLXContext + content.vb: Public Shared Function CreateAssociatedContextAttribsAMD(id As UInteger, share_context As GLXContext, attribList As ReadOnlySpan(Of Integer)) As GLXContext + overload: OpenTK.Graphics.Glx.Glx.AMD.CreateAssociatedContextAttribsAMD* + nameWithType.vb: Glx.AMD.CreateAssociatedContextAttribsAMD(UInteger, GLXContext, ReadOnlySpan(Of Integer)) + fullName.vb: OpenTK.Graphics.Glx.Glx.AMD.CreateAssociatedContextAttribsAMD(UInteger, OpenTK.Graphics.Glx.GLXContext, System.ReadOnlySpan(Of Integer)) + name.vb: CreateAssociatedContextAttribsAMD(UInteger, GLXContext, ReadOnlySpan(Of Integer)) +- uid: OpenTK.Graphics.Glx.Glx.AMD.CreateAssociatedContextAttribsAMD(System.UInt32,OpenTK.Graphics.Glx.GLXContext,System.Int32[]) + commentId: M:OpenTK.Graphics.Glx.Glx.AMD.CreateAssociatedContextAttribsAMD(System.UInt32,OpenTK.Graphics.Glx.GLXContext,System.Int32[]) + id: CreateAssociatedContextAttribsAMD(System.UInt32,OpenTK.Graphics.Glx.GLXContext,System.Int32[]) + parent: OpenTK.Graphics.Glx.Glx.AMD + langs: + - csharp + - vb + name: CreateAssociatedContextAttribsAMD(uint, GLXContext, int[]) + nameWithType: Glx.AMD.CreateAssociatedContextAttribsAMD(uint, GLXContext, int[]) + fullName: OpenTK.Graphics.Glx.Glx.AMD.CreateAssociatedContextAttribsAMD(uint, OpenTK.Graphics.Glx.GLXContext, int[]) + type: Method + source: + id: CreateAssociatedContextAttribsAMD + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 482 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Glx + summary: >- + [requires: GLX_AMD_gpu_association] + + [entry point: glXCreateAssociatedContextAttribsAMD] + +
+ example: [] + syntax: + content: public static GLXContext CreateAssociatedContextAttribsAMD(uint id, GLXContext share_context, int[] attribList) + parameters: + - id: id + type: System.UInt32 + - id: share_context + type: OpenTK.Graphics.Glx.GLXContext + - id: attribList + type: System.Int32[] + return: + type: OpenTK.Graphics.Glx.GLXContext + content.vb: Public Shared Function CreateAssociatedContextAttribsAMD(id As UInteger, share_context As GLXContext, attribList As Integer()) As GLXContext + overload: OpenTK.Graphics.Glx.Glx.AMD.CreateAssociatedContextAttribsAMD* + nameWithType.vb: Glx.AMD.CreateAssociatedContextAttribsAMD(UInteger, GLXContext, Integer()) + fullName.vb: OpenTK.Graphics.Glx.Glx.AMD.CreateAssociatedContextAttribsAMD(UInteger, OpenTK.Graphics.Glx.GLXContext, Integer()) + name.vb: CreateAssociatedContextAttribsAMD(UInteger, GLXContext, Integer()) - uid: OpenTK.Graphics.Glx.Glx.AMD.CreateAssociatedContextAttribsAMD(System.UInt32,OpenTK.Graphics.Glx.GLXContext,System.Int32@) commentId: M:OpenTK.Graphics.Glx.Glx.AMD.CreateAssociatedContextAttribsAMD(System.UInt32,OpenTK.Graphics.Glx.GLXContext,System.Int32@) id: CreateAssociatedContextAttribsAMD(System.UInt32,OpenTK.Graphics.Glx.GLXContext,System.Int32@) @@ -406,13 +499,9 @@ items: fullName: OpenTK.Graphics.Glx.Glx.AMD.CreateAssociatedContextAttribsAMD(uint, OpenTK.Graphics.Glx.GLXContext, in int) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateAssociatedContextAttribsAMD - path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 182 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 492 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -439,6 +528,84 @@ items: nameWithType.vb: Glx.AMD.CreateAssociatedContextAttribsAMD(UInteger, GLXContext, Integer) fullName.vb: OpenTK.Graphics.Glx.Glx.AMD.CreateAssociatedContextAttribsAMD(UInteger, OpenTK.Graphics.Glx.GLXContext, Integer) name.vb: CreateAssociatedContextAttribsAMD(UInteger, GLXContext, Integer) +- uid: OpenTK.Graphics.Glx.Glx.AMD.GetGPUIDsAMD(System.UInt32,System.Span{System.UInt32}) + commentId: M:OpenTK.Graphics.Glx.Glx.AMD.GetGPUIDsAMD(System.UInt32,System.Span{System.UInt32}) + id: GetGPUIDsAMD(System.UInt32,System.Span{System.UInt32}) + parent: OpenTK.Graphics.Glx.Glx.AMD + langs: + - csharp + - vb + name: GetGPUIDsAMD(uint, Span) + nameWithType: Glx.AMD.GetGPUIDsAMD(uint, Span) + fullName: OpenTK.Graphics.Glx.Glx.AMD.GetGPUIDsAMD(uint, System.Span) + type: Method + source: + id: GetGPUIDsAMD + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 502 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Glx + summary: >- + [requires: GLX_AMD_gpu_association] + + [entry point: glXGetGPUIDsAMD] + +
+ example: [] + syntax: + content: public static uint GetGPUIDsAMD(uint maxCount, Span ids) + parameters: + - id: maxCount + type: System.UInt32 + - id: ids + type: System.Span{System.UInt32} + return: + type: System.UInt32 + content.vb: Public Shared Function GetGPUIDsAMD(maxCount As UInteger, ids As Span(Of UInteger)) As UInteger + overload: OpenTK.Graphics.Glx.Glx.AMD.GetGPUIDsAMD* + nameWithType.vb: Glx.AMD.GetGPUIDsAMD(UInteger, Span(Of UInteger)) + fullName.vb: OpenTK.Graphics.Glx.Glx.AMD.GetGPUIDsAMD(UInteger, System.Span(Of UInteger)) + name.vb: GetGPUIDsAMD(UInteger, Span(Of UInteger)) +- uid: OpenTK.Graphics.Glx.Glx.AMD.GetGPUIDsAMD(System.UInt32,System.UInt32[]) + commentId: M:OpenTK.Graphics.Glx.Glx.AMD.GetGPUIDsAMD(System.UInt32,System.UInt32[]) + id: GetGPUIDsAMD(System.UInt32,System.UInt32[]) + parent: OpenTK.Graphics.Glx.Glx.AMD + langs: + - csharp + - vb + name: GetGPUIDsAMD(uint, uint[]) + nameWithType: Glx.AMD.GetGPUIDsAMD(uint, uint[]) + fullName: OpenTK.Graphics.Glx.Glx.AMD.GetGPUIDsAMD(uint, uint[]) + type: Method + source: + id: GetGPUIDsAMD + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 512 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Glx + summary: >- + [requires: GLX_AMD_gpu_association] + + [entry point: glXGetGPUIDsAMD] + +
+ example: [] + syntax: + content: public static uint GetGPUIDsAMD(uint maxCount, uint[] ids) + parameters: + - id: maxCount + type: System.UInt32 + - id: ids + type: System.UInt32[] + return: + type: System.UInt32 + content.vb: Public Shared Function GetGPUIDsAMD(maxCount As UInteger, ids As UInteger()) As UInteger + overload: OpenTK.Graphics.Glx.Glx.AMD.GetGPUIDsAMD* + nameWithType.vb: Glx.AMD.GetGPUIDsAMD(UInteger, UInteger()) + fullName.vb: OpenTK.Graphics.Glx.Glx.AMD.GetGPUIDsAMD(UInteger, UInteger()) + name.vb: GetGPUIDsAMD(UInteger, UInteger()) - uid: OpenTK.Graphics.Glx.Glx.AMD.GetGPUIDsAMD(System.UInt32,System.UInt32@) commentId: M:OpenTK.Graphics.Glx.Glx.AMD.GetGPUIDsAMD(System.UInt32,System.UInt32@) id: GetGPUIDsAMD(System.UInt32,System.UInt32@) @@ -451,13 +618,9 @@ items: fullName: OpenTK.Graphics.Glx.Glx.AMD.GetGPUIDsAMD(uint, ref uint) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetGPUIDsAMD - path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 192 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 522 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -494,13 +657,9 @@ items: fullName: OpenTK.Graphics.Glx.Glx.AMD.GetGPUInfoAMD(uint, int, OpenTK.Graphics.Glx.All, uint, nint) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetGPUInfoAMD - path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 202 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 532 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -531,6 +690,100 @@ items: nameWithType.vb: Glx.AMD.GetGPUInfoAMD(UInteger, Integer, All, UInteger, IntPtr) fullName.vb: OpenTK.Graphics.Glx.Glx.AMD.GetGPUInfoAMD(UInteger, Integer, OpenTK.Graphics.Glx.All, UInteger, System.IntPtr) name.vb: GetGPUInfoAMD(UInteger, Integer, All, UInteger, IntPtr) +- uid: OpenTK.Graphics.Glx.Glx.AMD.GetGPUInfoAMD``1(System.UInt32,System.Int32,OpenTK.Graphics.Glx.All,System.UInt32,System.Span{``0}) + commentId: M:OpenTK.Graphics.Glx.Glx.AMD.GetGPUInfoAMD``1(System.UInt32,System.Int32,OpenTK.Graphics.Glx.All,System.UInt32,System.Span{``0}) + id: GetGPUInfoAMD``1(System.UInt32,System.Int32,OpenTK.Graphics.Glx.All,System.UInt32,System.Span{``0}) + parent: OpenTK.Graphics.Glx.Glx.AMD + langs: + - csharp + - vb + name: GetGPUInfoAMD(uint, int, All, uint, Span) + nameWithType: Glx.AMD.GetGPUInfoAMD(uint, int, All, uint, Span) + fullName: OpenTK.Graphics.Glx.Glx.AMD.GetGPUInfoAMD(uint, int, OpenTK.Graphics.Glx.All, uint, System.Span) + type: Method + source: + id: GetGPUInfoAMD + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 540 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Glx + summary: >- + [requires: GLX_AMD_gpu_association] + + [entry point: glXGetGPUInfoAMD] + +
+ example: [] + syntax: + content: 'public static int GetGPUInfoAMD(uint id, int property, All dataType, uint size, Span data) where T1 : unmanaged' + parameters: + - id: id + type: System.UInt32 + - id: property + type: System.Int32 + - id: dataType + type: OpenTK.Graphics.Glx.All + - id: size + type: System.UInt32 + - id: data + type: System.Span{{T1}} + typeParameters: + - id: T1 + return: + type: System.Int32 + content.vb: Public Shared Function GetGPUInfoAMD(Of T1 As Structure)(id As UInteger, [property] As Integer, dataType As All, size As UInteger, data As Span(Of T1)) As Integer + overload: OpenTK.Graphics.Glx.Glx.AMD.GetGPUInfoAMD* + nameWithType.vb: Glx.AMD.GetGPUInfoAMD(Of T1)(UInteger, Integer, All, UInteger, Span(Of T1)) + fullName.vb: OpenTK.Graphics.Glx.Glx.AMD.GetGPUInfoAMD(Of T1)(UInteger, Integer, OpenTK.Graphics.Glx.All, UInteger, System.Span(Of T1)) + name.vb: GetGPUInfoAMD(Of T1)(UInteger, Integer, All, UInteger, Span(Of T1)) +- uid: OpenTK.Graphics.Glx.Glx.AMD.GetGPUInfoAMD``1(System.UInt32,System.Int32,OpenTK.Graphics.Glx.All,System.UInt32,``0[]) + commentId: M:OpenTK.Graphics.Glx.Glx.AMD.GetGPUInfoAMD``1(System.UInt32,System.Int32,OpenTK.Graphics.Glx.All,System.UInt32,``0[]) + id: GetGPUInfoAMD``1(System.UInt32,System.Int32,OpenTK.Graphics.Glx.All,System.UInt32,``0[]) + parent: OpenTK.Graphics.Glx.Glx.AMD + langs: + - csharp + - vb + name: GetGPUInfoAMD(uint, int, All, uint, T1[]) + nameWithType: Glx.AMD.GetGPUInfoAMD(uint, int, All, uint, T1[]) + fullName: OpenTK.Graphics.Glx.Glx.AMD.GetGPUInfoAMD(uint, int, OpenTK.Graphics.Glx.All, uint, T1[]) + type: Method + source: + id: GetGPUInfoAMD + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 551 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Glx + summary: >- + [requires: GLX_AMD_gpu_association] + + [entry point: glXGetGPUInfoAMD] + +
+ example: [] + syntax: + content: 'public static int GetGPUInfoAMD(uint id, int property, All dataType, uint size, T1[] data) where T1 : unmanaged' + parameters: + - id: id + type: System.UInt32 + - id: property + type: System.Int32 + - id: dataType + type: OpenTK.Graphics.Glx.All + - id: size + type: System.UInt32 + - id: data + type: '{T1}[]' + typeParameters: + - id: T1 + return: + type: System.Int32 + content.vb: Public Shared Function GetGPUInfoAMD(Of T1 As Structure)(id As UInteger, [property] As Integer, dataType As All, size As UInteger, data As T1()) As Integer + overload: OpenTK.Graphics.Glx.Glx.AMD.GetGPUInfoAMD* + nameWithType.vb: Glx.AMD.GetGPUInfoAMD(Of T1)(UInteger, Integer, All, UInteger, T1()) + fullName.vb: OpenTK.Graphics.Glx.Glx.AMD.GetGPUInfoAMD(Of T1)(UInteger, Integer, OpenTK.Graphics.Glx.All, UInteger, T1()) + name.vb: GetGPUInfoAMD(Of T1)(UInteger, Integer, All, UInteger, T1()) - uid: OpenTK.Graphics.Glx.Glx.AMD.GetGPUInfoAMD``1(System.UInt32,System.Int32,OpenTK.Graphics.Glx.All,System.UInt32,``0@) commentId: M:OpenTK.Graphics.Glx.Glx.AMD.GetGPUInfoAMD``1(System.UInt32,System.Int32,OpenTK.Graphics.Glx.All,System.UInt32,``0@) id: GetGPUInfoAMD``1(System.UInt32,System.Int32,OpenTK.Graphics.Glx.All,System.UInt32,``0@) @@ -543,13 +796,9 @@ items: fullName: OpenTK.Graphics.Glx.Glx.AMD.GetGPUInfoAMD(uint, int, OpenTK.Graphics.Glx.All, uint, ref T1) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetGPUInfoAMD - path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 210 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 562 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -1014,6 +1263,178 @@ references: name: MakeAssociatedContextCurrentAMD nameWithType: Glx.AMD.MakeAssociatedContextCurrentAMD fullName: OpenTK.Graphics.Glx.Glx.AMD.MakeAssociatedContextCurrentAMD +- uid: System.ReadOnlySpan{System.Int32} + commentId: T:System.ReadOnlySpan{System.Int32} + parent: System + definition: System.ReadOnlySpan`1 + href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 + name: ReadOnlySpan + nameWithType: ReadOnlySpan + fullName: System.ReadOnlySpan + nameWithType.vb: ReadOnlySpan(Of Integer) + fullName.vb: System.ReadOnlySpan(Of Integer) + name.vb: ReadOnlySpan(Of Integer) + spec.csharp: + - uid: System.ReadOnlySpan`1 + name: ReadOnlySpan + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 + - name: < + - uid: System.Int32 + name: int + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: '>' + spec.vb: + - uid: System.ReadOnlySpan`1 + name: ReadOnlySpan + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 + - name: ( + - name: Of + - name: " " + - uid: System.Int32 + name: Integer + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ) +- uid: System.ReadOnlySpan`1 + commentId: T:System.ReadOnlySpan`1 + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 + name: ReadOnlySpan + nameWithType: ReadOnlySpan + fullName: System.ReadOnlySpan + nameWithType.vb: ReadOnlySpan(Of T) + fullName.vb: System.ReadOnlySpan(Of T) + name.vb: ReadOnlySpan(Of T) + spec.csharp: + - uid: System.ReadOnlySpan`1 + name: ReadOnlySpan + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 + - name: < + - name: T + - name: '>' + spec.vb: + - uid: System.ReadOnlySpan`1 + name: ReadOnlySpan + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 + - name: ( + - name: Of + - name: " " + - name: T + - name: ) +- uid: System.Int32[] + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + name: int[] + nameWithType: int[] + fullName: int[] + nameWithType.vb: Integer() + fullName.vb: Integer() + name.vb: Integer() + spec.csharp: + - uid: System.Int32 + name: int + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: '[' + - name: ']' + spec.vb: + - uid: System.Int32 + name: Integer + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ( + - name: ) +- uid: System.Span{System.UInt32} + commentId: T:System.Span{System.UInt32} + parent: System + definition: System.Span`1 + href: https://learn.microsoft.com/dotnet/api/system.span-1 + name: Span + nameWithType: Span + fullName: System.Span + nameWithType.vb: Span(Of UInteger) + fullName.vb: System.Span(Of UInteger) + name.vb: Span(Of UInteger) + spec.csharp: + - uid: System.Span`1 + name: Span + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.span-1 + - name: < + - uid: System.UInt32 + name: uint + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.uint32 + - name: '>' + spec.vb: + - uid: System.Span`1 + name: Span + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.span-1 + - name: ( + - name: Of + - name: " " + - uid: System.UInt32 + name: UInteger + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.uint32 + - name: ) +- uid: System.Span`1 + commentId: T:System.Span`1 + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.span-1 + name: Span + nameWithType: Span + fullName: System.Span + nameWithType.vb: Span(Of T) + fullName.vb: System.Span(Of T) + name.vb: Span(Of T) + spec.csharp: + - uid: System.Span`1 + name: Span + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.span-1 + - name: < + - name: T + - name: '>' + spec.vb: + - uid: System.Span`1 + name: Span + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.span-1 + - name: ( + - name: Of + - name: " " + - name: T + - name: ) +- uid: System.UInt32[] + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.uint32 + name: uint[] + nameWithType: uint[] + fullName: uint[] + nameWithType.vb: UInteger() + fullName.vb: UInteger() + name.vb: UInteger() + spec.csharp: + - uid: System.UInt32 + name: uint + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.uint32 + - name: '[' + - name: ']' + spec.vb: + - uid: System.UInt32 + name: UInteger + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.uint32 + - name: ( + - name: ) - uid: System.IntPtr commentId: T:System.IntPtr parent: System @@ -1025,6 +1446,51 @@ references: nameWithType.vb: IntPtr fullName.vb: System.IntPtr name.vb: IntPtr +- uid: System.Span{{T1}} + commentId: T:System.Span{``0} + parent: System + definition: System.Span`1 + href: https://learn.microsoft.com/dotnet/api/system.span-1 + name: Span + nameWithType: Span + fullName: System.Span + nameWithType.vb: Span(Of T1) + fullName.vb: System.Span(Of T1) + name.vb: Span(Of T1) + spec.csharp: + - uid: System.Span`1 + name: Span + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.span-1 + - name: < + - name: T1 + - name: '>' + spec.vb: + - uid: System.Span`1 + name: Span + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.span-1 + - name: ( + - name: Of + - name: " " + - name: T1 + - name: ) +- uid: '{T1}[]' + isExternal: true + name: T1[] + nameWithType: T1[] + fullName: T1[] + nameWithType.vb: T1() + fullName.vb: T1() + name.vb: T1() + spec.csharp: + - name: T1 + - name: '[' + - name: ']' + spec.vb: + - name: T1 + - name: ( + - name: ) - uid: '{T1}' commentId: '!:T1' definition: T1 diff --git a/api/OpenTK.Graphics.Glx.Glx.ARB.yml b/api/OpenTK.Graphics.Glx.Glx.ARB.yml index 3ad8c709..7e0c2cce 100644 --- a/api/OpenTK.Graphics.Glx.Glx.ARB.yml +++ b/api/OpenTK.Graphics.Glx.Glx.ARB.yml @@ -7,8 +7,12 @@ items: children: - OpenTK.Graphics.Glx.Glx.ARB.CreateContextAttribsARB(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.GLXContext,System.Boolean,System.Int32*) - OpenTK.Graphics.Glx.Glx.ARB.CreateContextAttribsARB(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.GLXContext,System.Boolean,System.Int32@) + - OpenTK.Graphics.Glx.Glx.ARB.CreateContextAttribsARB(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.GLXContext,System.Boolean,System.Int32[]) + - OpenTK.Graphics.Glx.Glx.ARB.CreateContextAttribsARB(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.GLXContext,System.Boolean,System.ReadOnlySpan{System.Int32}) - OpenTK.Graphics.Glx.Glx.ARB.GetProcAddressARB(System.Byte*) - OpenTK.Graphics.Glx.Glx.ARB.GetProcAddressARB(System.Byte@) + - OpenTK.Graphics.Glx.Glx.ARB.GetProcAddressARB(System.Byte[]) + - OpenTK.Graphics.Glx.Glx.ARB.GetProcAddressARB(System.ReadOnlySpan{System.Byte}) langs: - csharp - vb @@ -17,13 +21,9 @@ items: fullName: OpenTK.Graphics.Glx.Glx.ARB type: Class source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ARB - path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 221 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 573 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -54,17 +54,18 @@ items: fullName: OpenTK.Graphics.Glx.Glx.ARB.CreateContextAttribsARB(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfig, OpenTK.Graphics.Glx.GLXContext, bool, int*) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateContextAttribsARB - path: opentk/src/OpenTK.Graphics/Glx/GLX.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs startLine: 163 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx - summary: '[requires: GLX_ARB_create_context] [entry point: glXCreateContextAttribsARB]
' + summary: >- + [requires: GLX_ARB_create_context] + + [entry point: glXCreateContextAttribsARB] + +
example: [] syntax: content: public static GLXContext CreateContextAttribsARB(DisplayPtr dpy, GLXFBConfig config, GLXContext share_context, bool direct, int* attrib_list) @@ -98,17 +99,18 @@ items: fullName: OpenTK.Graphics.Glx.Glx.ARB.GetProcAddressARB(byte*) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetProcAddressARB - path: opentk/src/OpenTK.Graphics/Glx/GLX.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs startLine: 166 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx - summary: '[requires: GLX_ARB_get_proc_address] [entry point: glXGetProcAddressARB]
' + summary: >- + [requires: GLX_ARB_get_proc_address] + + [entry point: glXGetProcAddressARB] + +
example: [] syntax: content: public static nint GetProcAddressARB(byte* procName) @@ -122,6 +124,96 @@ items: nameWithType.vb: Glx.ARB.GetProcAddressARB(Byte*) fullName.vb: OpenTK.Graphics.Glx.Glx.ARB.GetProcAddressARB(Byte*) name.vb: GetProcAddressARB(Byte*) +- uid: OpenTK.Graphics.Glx.Glx.ARB.CreateContextAttribsARB(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.GLXContext,System.Boolean,System.ReadOnlySpan{System.Int32}) + commentId: M:OpenTK.Graphics.Glx.Glx.ARB.CreateContextAttribsARB(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.GLXContext,System.Boolean,System.ReadOnlySpan{System.Int32}) + id: CreateContextAttribsARB(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.GLXContext,System.Boolean,System.ReadOnlySpan{System.Int32}) + parent: OpenTK.Graphics.Glx.Glx.ARB + langs: + - csharp + - vb + name: CreateContextAttribsARB(DisplayPtr, GLXFBConfig, GLXContext, bool, ReadOnlySpan) + nameWithType: Glx.ARB.CreateContextAttribsARB(DisplayPtr, GLXFBConfig, GLXContext, bool, ReadOnlySpan) + fullName: OpenTK.Graphics.Glx.Glx.ARB.CreateContextAttribsARB(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfig, OpenTK.Graphics.Glx.GLXContext, bool, System.ReadOnlySpan) + type: Method + source: + id: CreateContextAttribsARB + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 576 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Glx + summary: >- + [requires: GLX_ARB_create_context] + + [entry point: glXCreateContextAttribsARB] + +
+ example: [] + syntax: + content: public static GLXContext CreateContextAttribsARB(DisplayPtr dpy, GLXFBConfig config, GLXContext share_context, bool direct, ReadOnlySpan attrib_list) + parameters: + - id: dpy + type: OpenTK.Graphics.Glx.DisplayPtr + - id: config + type: OpenTK.Graphics.Glx.GLXFBConfig + - id: share_context + type: OpenTK.Graphics.Glx.GLXContext + - id: direct + type: System.Boolean + - id: attrib_list + type: System.ReadOnlySpan{System.Int32} + return: + type: OpenTK.Graphics.Glx.GLXContext + content.vb: Public Shared Function CreateContextAttribsARB(dpy As DisplayPtr, config As GLXFBConfig, share_context As GLXContext, direct As Boolean, attrib_list As ReadOnlySpan(Of Integer)) As GLXContext + overload: OpenTK.Graphics.Glx.Glx.ARB.CreateContextAttribsARB* + nameWithType.vb: Glx.ARB.CreateContextAttribsARB(DisplayPtr, GLXFBConfig, GLXContext, Boolean, ReadOnlySpan(Of Integer)) + fullName.vb: OpenTK.Graphics.Glx.Glx.ARB.CreateContextAttribsARB(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfig, OpenTK.Graphics.Glx.GLXContext, Boolean, System.ReadOnlySpan(Of Integer)) + name.vb: CreateContextAttribsARB(DisplayPtr, GLXFBConfig, GLXContext, Boolean, ReadOnlySpan(Of Integer)) +- uid: OpenTK.Graphics.Glx.Glx.ARB.CreateContextAttribsARB(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.GLXContext,System.Boolean,System.Int32[]) + commentId: M:OpenTK.Graphics.Glx.Glx.ARB.CreateContextAttribsARB(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.GLXContext,System.Boolean,System.Int32[]) + id: CreateContextAttribsARB(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.GLXContext,System.Boolean,System.Int32[]) + parent: OpenTK.Graphics.Glx.Glx.ARB + langs: + - csharp + - vb + name: CreateContextAttribsARB(DisplayPtr, GLXFBConfig, GLXContext, bool, int[]) + nameWithType: Glx.ARB.CreateContextAttribsARB(DisplayPtr, GLXFBConfig, GLXContext, bool, int[]) + fullName: OpenTK.Graphics.Glx.Glx.ARB.CreateContextAttribsARB(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfig, OpenTK.Graphics.Glx.GLXContext, bool, int[]) + type: Method + source: + id: CreateContextAttribsARB + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 586 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Glx + summary: >- + [requires: GLX_ARB_create_context] + + [entry point: glXCreateContextAttribsARB] + +
+ example: [] + syntax: + content: public static GLXContext CreateContextAttribsARB(DisplayPtr dpy, GLXFBConfig config, GLXContext share_context, bool direct, int[] attrib_list) + parameters: + - id: dpy + type: OpenTK.Graphics.Glx.DisplayPtr + - id: config + type: OpenTK.Graphics.Glx.GLXFBConfig + - id: share_context + type: OpenTK.Graphics.Glx.GLXContext + - id: direct + type: System.Boolean + - id: attrib_list + type: System.Int32[] + return: + type: OpenTK.Graphics.Glx.GLXContext + content.vb: Public Shared Function CreateContextAttribsARB(dpy As DisplayPtr, config As GLXFBConfig, share_context As GLXContext, direct As Boolean, attrib_list As Integer()) As GLXContext + overload: OpenTK.Graphics.Glx.Glx.ARB.CreateContextAttribsARB* + nameWithType.vb: Glx.ARB.CreateContextAttribsARB(DisplayPtr, GLXFBConfig, GLXContext, Boolean, Integer()) + fullName.vb: OpenTK.Graphics.Glx.Glx.ARB.CreateContextAttribsARB(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfig, OpenTK.Graphics.Glx.GLXContext, Boolean, Integer()) + name.vb: CreateContextAttribsARB(DisplayPtr, GLXFBConfig, GLXContext, Boolean, Integer()) - uid: OpenTK.Graphics.Glx.Glx.ARB.CreateContextAttribsARB(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.GLXContext,System.Boolean,System.Int32@) commentId: M:OpenTK.Graphics.Glx.Glx.ARB.CreateContextAttribsARB(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.GLXContext,System.Boolean,System.Int32@) id: CreateContextAttribsARB(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.GLXContext,System.Boolean,System.Int32@) @@ -134,13 +226,9 @@ items: fullName: OpenTK.Graphics.Glx.Glx.ARB.CreateContextAttribsARB(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfig, OpenTK.Graphics.Glx.GLXContext, bool, in int) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateContextAttribsARB - path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 224 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 596 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -171,6 +259,80 @@ items: nameWithType.vb: Glx.ARB.CreateContextAttribsARB(DisplayPtr, GLXFBConfig, GLXContext, Boolean, Integer) fullName.vb: OpenTK.Graphics.Glx.Glx.ARB.CreateContextAttribsARB(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfig, OpenTK.Graphics.Glx.GLXContext, Boolean, Integer) name.vb: CreateContextAttribsARB(DisplayPtr, GLXFBConfig, GLXContext, Boolean, Integer) +- uid: OpenTK.Graphics.Glx.Glx.ARB.GetProcAddressARB(System.ReadOnlySpan{System.Byte}) + commentId: M:OpenTK.Graphics.Glx.Glx.ARB.GetProcAddressARB(System.ReadOnlySpan{System.Byte}) + id: GetProcAddressARB(System.ReadOnlySpan{System.Byte}) + parent: OpenTK.Graphics.Glx.Glx.ARB + langs: + - csharp + - vb + name: GetProcAddressARB(ReadOnlySpan) + nameWithType: Glx.ARB.GetProcAddressARB(ReadOnlySpan) + fullName: OpenTK.Graphics.Glx.Glx.ARB.GetProcAddressARB(System.ReadOnlySpan) + type: Method + source: + id: GetProcAddressARB + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 606 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Glx + summary: >- + [requires: GLX_ARB_get_proc_address] + + [entry point: glXGetProcAddressARB] + +
+ example: [] + syntax: + content: public static nint GetProcAddressARB(ReadOnlySpan procName) + parameters: + - id: procName + type: System.ReadOnlySpan{System.Byte} + return: + type: System.IntPtr + content.vb: Public Shared Function GetProcAddressARB(procName As ReadOnlySpan(Of Byte)) As IntPtr + overload: OpenTK.Graphics.Glx.Glx.ARB.GetProcAddressARB* + nameWithType.vb: Glx.ARB.GetProcAddressARB(ReadOnlySpan(Of Byte)) + fullName.vb: OpenTK.Graphics.Glx.Glx.ARB.GetProcAddressARB(System.ReadOnlySpan(Of Byte)) + name.vb: GetProcAddressARB(ReadOnlySpan(Of Byte)) +- uid: OpenTK.Graphics.Glx.Glx.ARB.GetProcAddressARB(System.Byte[]) + commentId: M:OpenTK.Graphics.Glx.Glx.ARB.GetProcAddressARB(System.Byte[]) + id: GetProcAddressARB(System.Byte[]) + parent: OpenTK.Graphics.Glx.Glx.ARB + langs: + - csharp + - vb + name: GetProcAddressARB(byte[]) + nameWithType: Glx.ARB.GetProcAddressARB(byte[]) + fullName: OpenTK.Graphics.Glx.Glx.ARB.GetProcAddressARB(byte[]) + type: Method + source: + id: GetProcAddressARB + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 616 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Glx + summary: >- + [requires: GLX_ARB_get_proc_address] + + [entry point: glXGetProcAddressARB] + +
+ example: [] + syntax: + content: public static nint GetProcAddressARB(byte[] procName) + parameters: + - id: procName + type: System.Byte[] + return: + type: System.IntPtr + content.vb: Public Shared Function GetProcAddressARB(procName As Byte()) As IntPtr + overload: OpenTK.Graphics.Glx.Glx.ARB.GetProcAddressARB* + nameWithType.vb: Glx.ARB.GetProcAddressARB(Byte()) + fullName.vb: OpenTK.Graphics.Glx.Glx.ARB.GetProcAddressARB(Byte()) + name.vb: GetProcAddressARB(Byte()) - uid: OpenTK.Graphics.Glx.Glx.ARB.GetProcAddressARB(System.Byte@) commentId: M:OpenTK.Graphics.Glx.Glx.ARB.GetProcAddressARB(System.Byte@) id: GetProcAddressARB(System.Byte@) @@ -183,13 +345,9 @@ items: fullName: OpenTK.Graphics.Glx.Glx.ARB.GetProcAddressARB(in byte) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetProcAddressARB - path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 234 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 626 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -577,6 +735,92 @@ references: nameWithType.vb: IntPtr fullName.vb: System.IntPtr name.vb: IntPtr +- uid: System.ReadOnlySpan{System.Int32} + commentId: T:System.ReadOnlySpan{System.Int32} + parent: System + definition: System.ReadOnlySpan`1 + href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 + name: ReadOnlySpan + nameWithType: ReadOnlySpan + fullName: System.ReadOnlySpan + nameWithType.vb: ReadOnlySpan(Of Integer) + fullName.vb: System.ReadOnlySpan(Of Integer) + name.vb: ReadOnlySpan(Of Integer) + spec.csharp: + - uid: System.ReadOnlySpan`1 + name: ReadOnlySpan + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 + - name: < + - uid: System.Int32 + name: int + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: '>' + spec.vb: + - uid: System.ReadOnlySpan`1 + name: ReadOnlySpan + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 + - name: ( + - name: Of + - name: " " + - uid: System.Int32 + name: Integer + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ) +- uid: System.ReadOnlySpan`1 + commentId: T:System.ReadOnlySpan`1 + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 + name: ReadOnlySpan + nameWithType: ReadOnlySpan + fullName: System.ReadOnlySpan + nameWithType.vb: ReadOnlySpan(Of T) + fullName.vb: System.ReadOnlySpan(Of T) + name.vb: ReadOnlySpan(Of T) + spec.csharp: + - uid: System.ReadOnlySpan`1 + name: ReadOnlySpan + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 + - name: < + - name: T + - name: '>' + spec.vb: + - uid: System.ReadOnlySpan`1 + name: ReadOnlySpan + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 + - name: ( + - name: Of + - name: " " + - name: T + - name: ) +- uid: System.Int32[] + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + name: int[] + nameWithType: int[] + fullName: int[] + nameWithType.vb: Integer() + fullName.vb: Integer() + name.vb: Integer() + spec.csharp: + - uid: System.Int32 + name: int + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: '[' + - name: ']' + spec.vb: + - uid: System.Int32 + name: Integer + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ( + - name: ) - uid: System.Int32 commentId: T:System.Int32 parent: System @@ -588,6 +832,64 @@ references: nameWithType.vb: Integer fullName.vb: Integer name.vb: Integer +- uid: System.ReadOnlySpan{System.Byte} + commentId: T:System.ReadOnlySpan{System.Byte} + parent: System + definition: System.ReadOnlySpan`1 + href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 + name: ReadOnlySpan + nameWithType: ReadOnlySpan + fullName: System.ReadOnlySpan + nameWithType.vb: ReadOnlySpan(Of Byte) + fullName.vb: System.ReadOnlySpan(Of Byte) + name.vb: ReadOnlySpan(Of Byte) + spec.csharp: + - uid: System.ReadOnlySpan`1 + name: ReadOnlySpan + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 + - name: < + - uid: System.Byte + name: byte + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.byte + - name: '>' + spec.vb: + - uid: System.ReadOnlySpan`1 + name: ReadOnlySpan + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 + - name: ( + - name: Of + - name: " " + - uid: System.Byte + name: Byte + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.byte + - name: ) +- uid: System.Byte[] + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.byte + name: byte[] + nameWithType: byte[] + fullName: byte[] + nameWithType.vb: Byte() + fullName.vb: Byte() + name.vb: Byte() + spec.csharp: + - uid: System.Byte + name: byte + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.byte + - name: '[' + - name: ']' + spec.vb: + - uid: System.Byte + name: Byte + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.byte + - name: ( + - name: ) - uid: System.Byte commentId: T:System.Byte parent: System diff --git a/api/OpenTK.Graphics.Glx.Glx.EXT.yml b/api/OpenTK.Graphics.Glx.Glx.EXT.yml index 8d2b214a..75429cb3 100644 --- a/api/OpenTK.Graphics.Glx.Glx.EXT.yml +++ b/api/OpenTK.Graphics.Glx.Glx.EXT.yml @@ -7,12 +7,16 @@ items: children: - OpenTK.Graphics.Glx.Glx.EXT.BindTexImageEXT(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32,System.Int32*) - OpenTK.Graphics.Glx.Glx.EXT.BindTexImageEXT(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32,System.Int32@) + - OpenTK.Graphics.Glx.Glx.EXT.BindTexImageEXT(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32,System.Int32[]) + - OpenTK.Graphics.Glx.Glx.EXT.BindTexImageEXT(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32,System.ReadOnlySpan{System.Int32}) - OpenTK.Graphics.Glx.Glx.EXT.FreeContextEXT(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext) - OpenTK.Graphics.Glx.Glx.EXT.GetContextIDEXT(OpenTK.Graphics.Glx.GLXContext) - OpenTK.Graphics.Glx.Glx.EXT.GetCurrentDisplayEXT - OpenTK.Graphics.Glx.Glx.EXT.ImportContextEXT(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContextID) - OpenTK.Graphics.Glx.Glx.EXT.QueryContextInfoEXT(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext,System.Int32,System.Int32*) - OpenTK.Graphics.Glx.Glx.EXT.QueryContextInfoEXT(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext,System.Int32,System.Int32@) + - OpenTK.Graphics.Glx.Glx.EXT.QueryContextInfoEXT(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext,System.Int32,System.Int32[]) + - OpenTK.Graphics.Glx.Glx.EXT.QueryContextInfoEXT(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext,System.Int32,System.Span{System.Int32}) - OpenTK.Graphics.Glx.Glx.EXT.ReleaseTexImageEXT(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32) - OpenTK.Graphics.Glx.Glx.EXT.SwapIntervalEXT(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32) langs: @@ -23,13 +27,9 @@ items: fullName: OpenTK.Graphics.Glx.Glx.EXT type: Class source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: EXT - path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 244 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 636 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -60,17 +60,18 @@ items: fullName: OpenTK.Graphics.Glx.Glx.EXT.BindTexImageEXT(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, int, int*) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: BindTexImageEXT - path: opentk/src/OpenTK.Graphics/Glx/GLX.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs startLine: 173 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx - summary: '[requires: GLX_EXT_texture_from_pixmap] [entry point: glXBindTexImageEXT]
' + summary: >- + [requires: GLX_EXT_texture_from_pixmap] + + [entry point: glXBindTexImageEXT] + +
example: [] syntax: content: public static void BindTexImageEXT(DisplayPtr dpy, GLXDrawable drawable, int buffer, int* attrib_list) @@ -100,17 +101,18 @@ items: fullName: OpenTK.Graphics.Glx.Glx.EXT.FreeContextEXT(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXContext) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: FreeContextEXT - path: opentk/src/OpenTK.Graphics/Glx/GLX.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs startLine: 176 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx - summary: '[requires: GLX_EXT_import_context] [entry point: glXFreeContextEXT]
' + summary: >- + [requires: GLX_EXT_import_context] + + [entry point: glXFreeContextEXT] + +
example: [] syntax: content: public static void FreeContextEXT(DisplayPtr dpy, GLXContext context) @@ -133,17 +135,18 @@ items: fullName: OpenTK.Graphics.Glx.Glx.EXT.GetContextIDEXT(OpenTK.Graphics.Glx.GLXContext) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetContextIDEXT - path: opentk/src/OpenTK.Graphics/Glx/GLX.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs startLine: 179 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx - summary: '[requires: GLX_EXT_import_context] [entry point: glXGetContextIDEXT]
' + summary: >- + [requires: GLX_EXT_import_context] + + [entry point: glXGetContextIDEXT] + +
example: [] syntax: content: public static GLXContextID GetContextIDEXT(GLXContext context) @@ -166,17 +169,18 @@ items: fullName: OpenTK.Graphics.Glx.Glx.EXT.GetCurrentDisplayEXT() type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetCurrentDisplayEXT - path: opentk/src/OpenTK.Graphics/Glx/GLX.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs startLine: 182 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx - summary: '[requires: GLX_EXT_import_context] [entry point: glXGetCurrentDisplayEXT]
' + summary: >- + [requires: GLX_EXT_import_context] + + [entry point: glXGetCurrentDisplayEXT] + +
example: [] syntax: content: public static DisplayPtr GetCurrentDisplayEXT() @@ -196,17 +200,18 @@ items: fullName: OpenTK.Graphics.Glx.Glx.EXT.ImportContextEXT(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXContextID) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ImportContextEXT - path: opentk/src/OpenTK.Graphics/Glx/GLX.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs startLine: 185 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx - summary: '[requires: GLX_EXT_import_context] [entry point: glXImportContextEXT]
' + summary: >- + [requires: GLX_EXT_import_context] + + [entry point: glXImportContextEXT] + +
example: [] syntax: content: public static GLXContext ImportContextEXT(DisplayPtr dpy, GLXContextID contextID) @@ -231,17 +236,18 @@ items: fullName: OpenTK.Graphics.Glx.Glx.EXT.QueryContextInfoEXT(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXContext, int, int*) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: QueryContextInfoEXT - path: opentk/src/OpenTK.Graphics/Glx/GLX.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs startLine: 188 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx - summary: '[requires: GLX_EXT_import_context] [entry point: glXQueryContextInfoEXT]
' + summary: >- + [requires: GLX_EXT_import_context] + + [entry point: glXQueryContextInfoEXT] + +
example: [] syntax: content: public static int QueryContextInfoEXT(DisplayPtr dpy, GLXContext context, int attribute, int* value) @@ -273,17 +279,18 @@ items: fullName: OpenTK.Graphics.Glx.Glx.EXT.ReleaseTexImageEXT(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, int) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ReleaseTexImageEXT - path: opentk/src/OpenTK.Graphics/Glx/GLX.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs startLine: 191 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx - summary: '[requires: GLX_EXT_texture_from_pixmap] [entry point: glXReleaseTexImageEXT]
' + summary: >- + [requires: GLX_EXT_texture_from_pixmap] + + [entry point: glXReleaseTexImageEXT] + +
example: [] syntax: content: public static void ReleaseTexImageEXT(DisplayPtr dpy, GLXDrawable drawable, int buffer) @@ -311,17 +318,18 @@ items: fullName: OpenTK.Graphics.Glx.Glx.EXT.SwapIntervalEXT(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, int) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SwapIntervalEXT - path: opentk/src/OpenTK.Graphics/Glx/GLX.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs startLine: 194 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx - summary: '[requires: GLX_EXT_swap_control] [entry point: glXSwapIntervalEXT]
' + summary: >- + [requires: GLX_EXT_swap_control] + + [entry point: glXSwapIntervalEXT] + +
example: [] syntax: content: public static void SwapIntervalEXT(DisplayPtr dpy, GLXDrawable drawable, int interval) @@ -337,6 +345,88 @@ items: nameWithType.vb: Glx.EXT.SwapIntervalEXT(DisplayPtr, GLXDrawable, Integer) fullName.vb: OpenTK.Graphics.Glx.Glx.EXT.SwapIntervalEXT(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, Integer) name.vb: SwapIntervalEXT(DisplayPtr, GLXDrawable, Integer) +- uid: OpenTK.Graphics.Glx.Glx.EXT.BindTexImageEXT(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32,System.ReadOnlySpan{System.Int32}) + commentId: M:OpenTK.Graphics.Glx.Glx.EXT.BindTexImageEXT(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32,System.ReadOnlySpan{System.Int32}) + id: BindTexImageEXT(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32,System.ReadOnlySpan{System.Int32}) + parent: OpenTK.Graphics.Glx.Glx.EXT + langs: + - csharp + - vb + name: BindTexImageEXT(DisplayPtr, GLXDrawable, int, ReadOnlySpan) + nameWithType: Glx.EXT.BindTexImageEXT(DisplayPtr, GLXDrawable, int, ReadOnlySpan) + fullName: OpenTK.Graphics.Glx.Glx.EXT.BindTexImageEXT(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, int, System.ReadOnlySpan) + type: Method + source: + id: BindTexImageEXT + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 639 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Glx + summary: >- + [requires: GLX_EXT_texture_from_pixmap] + + [entry point: glXBindTexImageEXT] + +
+ example: [] + syntax: + content: public static void BindTexImageEXT(DisplayPtr dpy, GLXDrawable drawable, int buffer, ReadOnlySpan attrib_list) + parameters: + - id: dpy + type: OpenTK.Graphics.Glx.DisplayPtr + - id: drawable + type: OpenTK.Graphics.Glx.GLXDrawable + - id: buffer + type: System.Int32 + - id: attrib_list + type: System.ReadOnlySpan{System.Int32} + content.vb: Public Shared Sub BindTexImageEXT(dpy As DisplayPtr, drawable As GLXDrawable, buffer As Integer, attrib_list As ReadOnlySpan(Of Integer)) + overload: OpenTK.Graphics.Glx.Glx.EXT.BindTexImageEXT* + nameWithType.vb: Glx.EXT.BindTexImageEXT(DisplayPtr, GLXDrawable, Integer, ReadOnlySpan(Of Integer)) + fullName.vb: OpenTK.Graphics.Glx.Glx.EXT.BindTexImageEXT(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, Integer, System.ReadOnlySpan(Of Integer)) + name.vb: BindTexImageEXT(DisplayPtr, GLXDrawable, Integer, ReadOnlySpan(Of Integer)) +- uid: OpenTK.Graphics.Glx.Glx.EXT.BindTexImageEXT(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32,System.Int32[]) + commentId: M:OpenTK.Graphics.Glx.Glx.EXT.BindTexImageEXT(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32,System.Int32[]) + id: BindTexImageEXT(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32,System.Int32[]) + parent: OpenTK.Graphics.Glx.Glx.EXT + langs: + - csharp + - vb + name: BindTexImageEXT(DisplayPtr, GLXDrawable, int, int[]) + nameWithType: Glx.EXT.BindTexImageEXT(DisplayPtr, GLXDrawable, int, int[]) + fullName: OpenTK.Graphics.Glx.Glx.EXT.BindTexImageEXT(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, int, int[]) + type: Method + source: + id: BindTexImageEXT + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 647 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Glx + summary: >- + [requires: GLX_EXT_texture_from_pixmap] + + [entry point: glXBindTexImageEXT] + +
+ example: [] + syntax: + content: public static void BindTexImageEXT(DisplayPtr dpy, GLXDrawable drawable, int buffer, int[] attrib_list) + parameters: + - id: dpy + type: OpenTK.Graphics.Glx.DisplayPtr + - id: drawable + type: OpenTK.Graphics.Glx.GLXDrawable + - id: buffer + type: System.Int32 + - id: attrib_list + type: System.Int32[] + content.vb: Public Shared Sub BindTexImageEXT(dpy As DisplayPtr, drawable As GLXDrawable, buffer As Integer, attrib_list As Integer()) + overload: OpenTK.Graphics.Glx.Glx.EXT.BindTexImageEXT* + nameWithType.vb: Glx.EXT.BindTexImageEXT(DisplayPtr, GLXDrawable, Integer, Integer()) + fullName.vb: OpenTK.Graphics.Glx.Glx.EXT.BindTexImageEXT(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, Integer, Integer()) + name.vb: BindTexImageEXT(DisplayPtr, GLXDrawable, Integer, Integer()) - uid: OpenTK.Graphics.Glx.Glx.EXT.BindTexImageEXT(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32,System.Int32@) commentId: M:OpenTK.Graphics.Glx.Glx.EXT.BindTexImageEXT(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32,System.Int32@) id: BindTexImageEXT(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32,System.Int32@) @@ -349,13 +439,9 @@ items: fullName: OpenTK.Graphics.Glx.Glx.EXT.BindTexImageEXT(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, int, in int) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: BindTexImageEXT - path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 247 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 655 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -382,6 +468,92 @@ items: nameWithType.vb: Glx.EXT.BindTexImageEXT(DisplayPtr, GLXDrawable, Integer, Integer) fullName.vb: OpenTK.Graphics.Glx.Glx.EXT.BindTexImageEXT(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, Integer, Integer) name.vb: BindTexImageEXT(DisplayPtr, GLXDrawable, Integer, Integer) +- uid: OpenTK.Graphics.Glx.Glx.EXT.QueryContextInfoEXT(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext,System.Int32,System.Span{System.Int32}) + commentId: M:OpenTK.Graphics.Glx.Glx.EXT.QueryContextInfoEXT(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext,System.Int32,System.Span{System.Int32}) + id: QueryContextInfoEXT(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext,System.Int32,System.Span{System.Int32}) + parent: OpenTK.Graphics.Glx.Glx.EXT + langs: + - csharp + - vb + name: QueryContextInfoEXT(DisplayPtr, GLXContext, int, Span) + nameWithType: Glx.EXT.QueryContextInfoEXT(DisplayPtr, GLXContext, int, Span) + fullName: OpenTK.Graphics.Glx.Glx.EXT.QueryContextInfoEXT(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXContext, int, System.Span) + type: Method + source: + id: QueryContextInfoEXT + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 663 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Glx + summary: >- + [requires: GLX_EXT_import_context] + + [entry point: glXQueryContextInfoEXT] + +
+ example: [] + syntax: + content: public static int QueryContextInfoEXT(DisplayPtr dpy, GLXContext context, int attribute, Span value) + parameters: + - id: dpy + type: OpenTK.Graphics.Glx.DisplayPtr + - id: context + type: OpenTK.Graphics.Glx.GLXContext + - id: attribute + type: System.Int32 + - id: value + type: System.Span{System.Int32} + return: + type: System.Int32 + content.vb: Public Shared Function QueryContextInfoEXT(dpy As DisplayPtr, context As GLXContext, attribute As Integer, value As Span(Of Integer)) As Integer + overload: OpenTK.Graphics.Glx.Glx.EXT.QueryContextInfoEXT* + nameWithType.vb: Glx.EXT.QueryContextInfoEXT(DisplayPtr, GLXContext, Integer, Span(Of Integer)) + fullName.vb: OpenTK.Graphics.Glx.Glx.EXT.QueryContextInfoEXT(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXContext, Integer, System.Span(Of Integer)) + name.vb: QueryContextInfoEXT(DisplayPtr, GLXContext, Integer, Span(Of Integer)) +- uid: OpenTK.Graphics.Glx.Glx.EXT.QueryContextInfoEXT(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext,System.Int32,System.Int32[]) + commentId: M:OpenTK.Graphics.Glx.Glx.EXT.QueryContextInfoEXT(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext,System.Int32,System.Int32[]) + id: QueryContextInfoEXT(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext,System.Int32,System.Int32[]) + parent: OpenTK.Graphics.Glx.Glx.EXT + langs: + - csharp + - vb + name: QueryContextInfoEXT(DisplayPtr, GLXContext, int, int[]) + nameWithType: Glx.EXT.QueryContextInfoEXT(DisplayPtr, GLXContext, int, int[]) + fullName: OpenTK.Graphics.Glx.Glx.EXT.QueryContextInfoEXT(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXContext, int, int[]) + type: Method + source: + id: QueryContextInfoEXT + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 673 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Glx + summary: >- + [requires: GLX_EXT_import_context] + + [entry point: glXQueryContextInfoEXT] + +
+ example: [] + syntax: + content: public static int QueryContextInfoEXT(DisplayPtr dpy, GLXContext context, int attribute, int[] value) + parameters: + - id: dpy + type: OpenTK.Graphics.Glx.DisplayPtr + - id: context + type: OpenTK.Graphics.Glx.GLXContext + - id: attribute + type: System.Int32 + - id: value + type: System.Int32[] + return: + type: System.Int32 + content.vb: Public Shared Function QueryContextInfoEXT(dpy As DisplayPtr, context As GLXContext, attribute As Integer, value As Integer()) As Integer + overload: OpenTK.Graphics.Glx.Glx.EXT.QueryContextInfoEXT* + nameWithType.vb: Glx.EXT.QueryContextInfoEXT(DisplayPtr, GLXContext, Integer, Integer()) + fullName.vb: OpenTK.Graphics.Glx.Glx.EXT.QueryContextInfoEXT(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXContext, Integer, Integer()) + name.vb: QueryContextInfoEXT(DisplayPtr, GLXContext, Integer, Integer()) - uid: OpenTK.Graphics.Glx.Glx.EXT.QueryContextInfoEXT(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext,System.Int32,System.Int32@) commentId: M:OpenTK.Graphics.Glx.Glx.EXT.QueryContextInfoEXT(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext,System.Int32,System.Int32@) id: QueryContextInfoEXT(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext,System.Int32,System.Int32@) @@ -394,13 +566,9 @@ items: fullName: OpenTK.Graphics.Glx.Glx.EXT.QueryContextInfoEXT(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXContext, int, ref int) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: QueryContextInfoEXT - path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 255 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 683 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -805,3 +973,152 @@ references: name: SwapIntervalEXT nameWithType: Glx.EXT.SwapIntervalEXT fullName: OpenTK.Graphics.Glx.Glx.EXT.SwapIntervalEXT +- uid: System.ReadOnlySpan{System.Int32} + commentId: T:System.ReadOnlySpan{System.Int32} + parent: System + definition: System.ReadOnlySpan`1 + href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 + name: ReadOnlySpan + nameWithType: ReadOnlySpan + fullName: System.ReadOnlySpan + nameWithType.vb: ReadOnlySpan(Of Integer) + fullName.vb: System.ReadOnlySpan(Of Integer) + name.vb: ReadOnlySpan(Of Integer) + spec.csharp: + - uid: System.ReadOnlySpan`1 + name: ReadOnlySpan + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 + - name: < + - uid: System.Int32 + name: int + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: '>' + spec.vb: + - uid: System.ReadOnlySpan`1 + name: ReadOnlySpan + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 + - name: ( + - name: Of + - name: " " + - uid: System.Int32 + name: Integer + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ) +- uid: System.ReadOnlySpan`1 + commentId: T:System.ReadOnlySpan`1 + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 + name: ReadOnlySpan + nameWithType: ReadOnlySpan + fullName: System.ReadOnlySpan + nameWithType.vb: ReadOnlySpan(Of T) + fullName.vb: System.ReadOnlySpan(Of T) + name.vb: ReadOnlySpan(Of T) + spec.csharp: + - uid: System.ReadOnlySpan`1 + name: ReadOnlySpan + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 + - name: < + - name: T + - name: '>' + spec.vb: + - uid: System.ReadOnlySpan`1 + name: ReadOnlySpan + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 + - name: ( + - name: Of + - name: " " + - name: T + - name: ) +- uid: System.Int32[] + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + name: int[] + nameWithType: int[] + fullName: int[] + nameWithType.vb: Integer() + fullName.vb: Integer() + name.vb: Integer() + spec.csharp: + - uid: System.Int32 + name: int + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: '[' + - name: ']' + spec.vb: + - uid: System.Int32 + name: Integer + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ( + - name: ) +- uid: System.Span{System.Int32} + commentId: T:System.Span{System.Int32} + parent: System + definition: System.Span`1 + href: https://learn.microsoft.com/dotnet/api/system.span-1 + name: Span + nameWithType: Span + fullName: System.Span + nameWithType.vb: Span(Of Integer) + fullName.vb: System.Span(Of Integer) + name.vb: Span(Of Integer) + spec.csharp: + - uid: System.Span`1 + name: Span + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.span-1 + - name: < + - uid: System.Int32 + name: int + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: '>' + spec.vb: + - uid: System.Span`1 + name: Span + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.span-1 + - name: ( + - name: Of + - name: " " + - uid: System.Int32 + name: Integer + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ) +- uid: System.Span`1 + commentId: T:System.Span`1 + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.span-1 + name: Span + nameWithType: Span + fullName: System.Span + nameWithType.vb: Span(Of T) + fullName.vb: System.Span(Of T) + name.vb: Span(Of T) + spec.csharp: + - uid: System.Span`1 + name: Span + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.span-1 + - name: < + - name: T + - name: '>' + spec.vb: + - uid: System.Span`1 + name: Span + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.span-1 + - name: ( + - name: Of + - name: " " + - name: T + - name: ) diff --git a/api/OpenTK.Graphics.Glx.Glx.MESA.yml b/api/OpenTK.Graphics.Glx.Glx.MESA.yml index b93e05af..7b1680cc 100644 --- a/api/OpenTK.Graphics.Glx.Glx.MESA.yml +++ b/api/OpenTK.Graphics.Glx.Glx.MESA.yml @@ -9,14 +9,20 @@ items: - OpenTK.Graphics.Glx.Glx.MESA.CreateGLXPixmapMESA(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.XVisualInfoPtr,OpenTK.Graphics.Glx.Pixmap,OpenTK.Graphics.Glx.Colormap) - OpenTK.Graphics.Glx.Glx.MESA.GetAGPOffsetMESA(System.IntPtr) - OpenTK.Graphics.Glx.Glx.MESA.GetAGPOffsetMESA(System.Void*) + - OpenTK.Graphics.Glx.Glx.MESA.GetAGPOffsetMESA``1(System.ReadOnlySpan{``0}) - OpenTK.Graphics.Glx.Glx.MESA.GetAGPOffsetMESA``1(``0@) + - OpenTK.Graphics.Glx.Glx.MESA.GetAGPOffsetMESA``1(``0[]) - OpenTK.Graphics.Glx.Glx.MESA.GetSwapIntervalMESA + - OpenTK.Graphics.Glx.Glx.MESA.QueryCurrentRendererIntegerMESA(System.Int32,System.Span{System.UInt32}) - OpenTK.Graphics.Glx.Glx.MESA.QueryCurrentRendererIntegerMESA(System.Int32,System.UInt32*) - OpenTK.Graphics.Glx.Glx.MESA.QueryCurrentRendererIntegerMESA(System.Int32,System.UInt32@) + - OpenTK.Graphics.Glx.Glx.MESA.QueryCurrentRendererIntegerMESA(System.Int32,System.UInt32[]) - OpenTK.Graphics.Glx.Glx.MESA.QueryCurrentRendererStringMESA(System.Int32) - OpenTK.Graphics.Glx.Glx.MESA.QueryCurrentRendererStringMESA_(System.Int32) + - OpenTK.Graphics.Glx.Glx.MESA.QueryRendererIntegerMESA(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.Span{System.UInt32}) - OpenTK.Graphics.Glx.Glx.MESA.QueryRendererIntegerMESA(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.UInt32*) - OpenTK.Graphics.Glx.Glx.MESA.QueryRendererIntegerMESA(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.UInt32@) + - OpenTK.Graphics.Glx.Glx.MESA.QueryRendererIntegerMESA(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.UInt32[]) - OpenTK.Graphics.Glx.Glx.MESA.QueryRendererStringMESA(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32) - OpenTK.Graphics.Glx.Glx.MESA.QueryRendererStringMESA_(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32) - OpenTK.Graphics.Glx.Glx.MESA.ReleaseBuffersMESA(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable) @@ -30,13 +36,9 @@ items: fullName: OpenTK.Graphics.Glx.Glx.MESA type: Class source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MESA - path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 265 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 693 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -67,17 +69,18 @@ items: fullName: OpenTK.Graphics.Glx.Glx.MESA.CopySubBufferMESA(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, int, int, int, int) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CopySubBufferMESA - path: opentk/src/OpenTK.Graphics/Glx/GLX.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs startLine: 201 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx - summary: '[requires: GLX_MESA_copy_sub_buffer] [entry point: glXCopySubBufferMESA]
' + summary: >- + [requires: GLX_MESA_copy_sub_buffer] + + [entry point: glXCopySubBufferMESA] + +
example: [] syntax: content: public static void CopySubBufferMESA(DisplayPtr dpy, GLXDrawable drawable, int x, int y, int width, int height) @@ -111,17 +114,18 @@ items: fullName: OpenTK.Graphics.Glx.Glx.MESA.CreateGLXPixmapMESA(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.XVisualInfoPtr, OpenTK.Graphics.Glx.Pixmap, OpenTK.Graphics.Glx.Colormap) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateGLXPixmapMESA - path: opentk/src/OpenTK.Graphics/Glx/GLX.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs startLine: 204 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx - summary: '[requires: GLX_MESA_pixmap_colormap] [entry point: glXCreateGLXPixmapMESA]
' + summary: >- + [requires: GLX_MESA_pixmap_colormap] + + [entry point: glXCreateGLXPixmapMESA] + +
example: [] syntax: content: public static GLXPixmap CreateGLXPixmapMESA(DisplayPtr dpy, XVisualInfoPtr visual, Pixmap pixmap, Colormap cmap) @@ -150,17 +154,18 @@ items: fullName: OpenTK.Graphics.Glx.Glx.MESA.GetAGPOffsetMESA(void*) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetAGPOffsetMESA - path: opentk/src/OpenTK.Graphics/Glx/GLX.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs startLine: 207 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx - summary: '[requires: GLX_MESA_agp_offset] [entry point: glXGetAGPOffsetMESA]
' + summary: >- + [requires: GLX_MESA_agp_offset] + + [entry point: glXGetAGPOffsetMESA] + +
example: [] syntax: content: public static uint GetAGPOffsetMESA(void* pointer) @@ -186,17 +191,18 @@ items: fullName: OpenTK.Graphics.Glx.Glx.MESA.GetSwapIntervalMESA() type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetSwapIntervalMESA - path: opentk/src/OpenTK.Graphics/Glx/GLX.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs startLine: 210 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx - summary: '[requires: GLX_MESA_swap_control] [entry point: glXGetSwapIntervalMESA]
' + summary: >- + [requires: GLX_MESA_swap_control] + + [entry point: glXGetSwapIntervalMESA] + +
example: [] syntax: content: public static int GetSwapIntervalMESA() @@ -216,17 +222,18 @@ items: fullName: OpenTK.Graphics.Glx.Glx.MESA.QueryCurrentRendererIntegerMESA(int, uint*) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: QueryCurrentRendererIntegerMESA - path: opentk/src/OpenTK.Graphics/Glx/GLX.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs startLine: 213 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx - summary: '[requires: GLX_MESA_query_renderer] [entry point: glXQueryCurrentRendererIntegerMESA]
' + summary: >- + [requires: GLX_MESA_query_renderer] + + [entry point: glXQueryCurrentRendererIntegerMESA] + +
example: [] syntax: content: public static bool QueryCurrentRendererIntegerMESA(int attribute, uint* value) @@ -254,17 +261,18 @@ items: fullName: OpenTK.Graphics.Glx.Glx.MESA.QueryCurrentRendererStringMESA_(int) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: QueryCurrentRendererStringMESA_ - path: opentk/src/OpenTK.Graphics/Glx/GLX.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs startLine: 216 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx - summary: '[requires: GLX_MESA_query_renderer] [entry point: glXQueryCurrentRendererStringMESA]
' + summary: >- + [requires: GLX_MESA_query_renderer] + + [entry point: glXQueryCurrentRendererStringMESA] + +
example: [] syntax: content: public static byte* QueryCurrentRendererStringMESA_(int attribute) @@ -290,17 +298,18 @@ items: fullName: OpenTK.Graphics.Glx.Glx.MESA.QueryRendererIntegerMESA(OpenTK.Graphics.Glx.DisplayPtr, int, int, int, uint*) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: QueryRendererIntegerMESA - path: opentk/src/OpenTK.Graphics/Glx/GLX.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs startLine: 219 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx - summary: '[requires: GLX_MESA_query_renderer] [entry point: glXQueryRendererIntegerMESA]
' + summary: >- + [requires: GLX_MESA_query_renderer] + + [entry point: glXQueryRendererIntegerMESA] + +
example: [] syntax: content: public static bool QueryRendererIntegerMESA(DisplayPtr dpy, int screen, int renderer, int attribute, uint* value) @@ -334,17 +343,18 @@ items: fullName: OpenTK.Graphics.Glx.Glx.MESA.QueryRendererStringMESA_(OpenTK.Graphics.Glx.DisplayPtr, int, int, int) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: QueryRendererStringMESA_ - path: opentk/src/OpenTK.Graphics/Glx/GLX.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs startLine: 222 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx - summary: '[requires: GLX_MESA_query_renderer] [entry point: glXQueryRendererStringMESA]
' + summary: >- + [requires: GLX_MESA_query_renderer] + + [entry point: glXQueryRendererStringMESA] + +
example: [] syntax: content: public static byte* QueryRendererStringMESA_(DisplayPtr dpy, int screen, int renderer, int attribute) @@ -376,17 +386,18 @@ items: fullName: OpenTK.Graphics.Glx.Glx.MESA.ReleaseBuffersMESA(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ReleaseBuffersMESA - path: opentk/src/OpenTK.Graphics/Glx/GLX.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs startLine: 225 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx - summary: '[requires: GLX_MESA_release_buffers] [entry point: glXReleaseBuffersMESA]
' + summary: >- + [requires: GLX_MESA_release_buffers] + + [entry point: glXReleaseBuffersMESA] + +
example: [] syntax: content: public static bool ReleaseBuffersMESA(DisplayPtr dpy, GLXDrawable drawable) @@ -411,17 +422,18 @@ items: fullName: OpenTK.Graphics.Glx.Glx.MESA.Set3DfxModeMESA(int) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Set3DfxModeMESA - path: opentk/src/OpenTK.Graphics/Glx/GLX.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs startLine: 228 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx - summary: '[requires: GLX_MESA_set_3dfx_mode] [entry point: glXSet3DfxModeMESA]
' + summary: >- + [requires: GLX_MESA_set_3dfx_mode] + + [entry point: glXSet3DfxModeMESA] + +
example: [] syntax: content: public static bool Set3DfxModeMESA(int mode) @@ -447,17 +459,18 @@ items: fullName: OpenTK.Graphics.Glx.Glx.MESA.SwapIntervalMESA(uint) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SwapIntervalMESA - path: opentk/src/OpenTK.Graphics/Glx/GLX.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs startLine: 231 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx - summary: '[requires: GLX_MESA_swap_control] [entry point: glXSwapIntervalMESA]
' + summary: >- + [requires: GLX_MESA_swap_control] + + [entry point: glXSwapIntervalMESA] + +
example: [] syntax: content: public static int SwapIntervalMESA(uint interval) @@ -483,13 +496,9 @@ items: fullName: OpenTK.Graphics.Glx.Glx.MESA.GetAGPOffsetMESA(nint) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetAGPOffsetMESA - path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 268 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 696 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -512,6 +521,84 @@ items: nameWithType.vb: Glx.MESA.GetAGPOffsetMESA(IntPtr) fullName.vb: OpenTK.Graphics.Glx.Glx.MESA.GetAGPOffsetMESA(System.IntPtr) name.vb: GetAGPOffsetMESA(IntPtr) +- uid: OpenTK.Graphics.Glx.Glx.MESA.GetAGPOffsetMESA``1(System.ReadOnlySpan{``0}) + commentId: M:OpenTK.Graphics.Glx.Glx.MESA.GetAGPOffsetMESA``1(System.ReadOnlySpan{``0}) + id: GetAGPOffsetMESA``1(System.ReadOnlySpan{``0}) + parent: OpenTK.Graphics.Glx.Glx.MESA + langs: + - csharp + - vb + name: GetAGPOffsetMESA(ReadOnlySpan) + nameWithType: Glx.MESA.GetAGPOffsetMESA(ReadOnlySpan) + fullName: OpenTK.Graphics.Glx.Glx.MESA.GetAGPOffsetMESA(System.ReadOnlySpan) + type: Method + source: + id: GetAGPOffsetMESA + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 704 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Glx + summary: >- + [requires: GLX_MESA_agp_offset] + + [entry point: glXGetAGPOffsetMESA] + +
+ example: [] + syntax: + content: 'public static uint GetAGPOffsetMESA(ReadOnlySpan pointer) where T1 : unmanaged' + parameters: + - id: pointer + type: System.ReadOnlySpan{{T1}} + typeParameters: + - id: T1 + return: + type: System.UInt32 + content.vb: Public Shared Function GetAGPOffsetMESA(Of T1 As Structure)(pointer As ReadOnlySpan(Of T1)) As UInteger + overload: OpenTK.Graphics.Glx.Glx.MESA.GetAGPOffsetMESA* + nameWithType.vb: Glx.MESA.GetAGPOffsetMESA(Of T1)(ReadOnlySpan(Of T1)) + fullName.vb: OpenTK.Graphics.Glx.Glx.MESA.GetAGPOffsetMESA(Of T1)(System.ReadOnlySpan(Of T1)) + name.vb: GetAGPOffsetMESA(Of T1)(ReadOnlySpan(Of T1)) +- uid: OpenTK.Graphics.Glx.Glx.MESA.GetAGPOffsetMESA``1(``0[]) + commentId: M:OpenTK.Graphics.Glx.Glx.MESA.GetAGPOffsetMESA``1(``0[]) + id: GetAGPOffsetMESA``1(``0[]) + parent: OpenTK.Graphics.Glx.Glx.MESA + langs: + - csharp + - vb + name: GetAGPOffsetMESA(T1[]) + nameWithType: Glx.MESA.GetAGPOffsetMESA(T1[]) + fullName: OpenTK.Graphics.Glx.Glx.MESA.GetAGPOffsetMESA(T1[]) + type: Method + source: + id: GetAGPOffsetMESA + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 715 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Glx + summary: >- + [requires: GLX_MESA_agp_offset] + + [entry point: glXGetAGPOffsetMESA] + +
+ example: [] + syntax: + content: 'public static uint GetAGPOffsetMESA(T1[] pointer) where T1 : unmanaged' + parameters: + - id: pointer + type: '{T1}[]' + typeParameters: + - id: T1 + return: + type: System.UInt32 + content.vb: Public Shared Function GetAGPOffsetMESA(Of T1 As Structure)(pointer As T1()) As UInteger + overload: OpenTK.Graphics.Glx.Glx.MESA.GetAGPOffsetMESA* + nameWithType.vb: Glx.MESA.GetAGPOffsetMESA(Of T1)(T1()) + fullName.vb: OpenTK.Graphics.Glx.Glx.MESA.GetAGPOffsetMESA(Of T1)(T1()) + name.vb: GetAGPOffsetMESA(Of T1)(T1()) - uid: OpenTK.Graphics.Glx.Glx.MESA.GetAGPOffsetMESA``1(``0@) commentId: M:OpenTK.Graphics.Glx.Glx.MESA.GetAGPOffsetMESA``1(``0@) id: GetAGPOffsetMESA``1(``0@) @@ -524,13 +611,9 @@ items: fullName: OpenTK.Graphics.Glx.Glx.MESA.GetAGPOffsetMESA(in T1) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetAGPOffsetMESA - path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 276 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 726 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -555,6 +638,84 @@ items: nameWithType.vb: Glx.MESA.GetAGPOffsetMESA(Of T1)(T1) fullName.vb: OpenTK.Graphics.Glx.Glx.MESA.GetAGPOffsetMESA(Of T1)(T1) name.vb: GetAGPOffsetMESA(Of T1)(T1) +- uid: OpenTK.Graphics.Glx.Glx.MESA.QueryCurrentRendererIntegerMESA(System.Int32,System.Span{System.UInt32}) + commentId: M:OpenTK.Graphics.Glx.Glx.MESA.QueryCurrentRendererIntegerMESA(System.Int32,System.Span{System.UInt32}) + id: QueryCurrentRendererIntegerMESA(System.Int32,System.Span{System.UInt32}) + parent: OpenTK.Graphics.Glx.Glx.MESA + langs: + - csharp + - vb + name: QueryCurrentRendererIntegerMESA(int, Span) + nameWithType: Glx.MESA.QueryCurrentRendererIntegerMESA(int, Span) + fullName: OpenTK.Graphics.Glx.Glx.MESA.QueryCurrentRendererIntegerMESA(int, System.Span) + type: Method + source: + id: QueryCurrentRendererIntegerMESA + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 737 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Glx + summary: >- + [requires: GLX_MESA_query_renderer] + + [entry point: glXQueryCurrentRendererIntegerMESA] + +
+ example: [] + syntax: + content: public static bool QueryCurrentRendererIntegerMESA(int attribute, Span value) + parameters: + - id: attribute + type: System.Int32 + - id: value + type: System.Span{System.UInt32} + return: + type: System.Boolean + content.vb: Public Shared Function QueryCurrentRendererIntegerMESA(attribute As Integer, value As Span(Of UInteger)) As Boolean + overload: OpenTK.Graphics.Glx.Glx.MESA.QueryCurrentRendererIntegerMESA* + nameWithType.vb: Glx.MESA.QueryCurrentRendererIntegerMESA(Integer, Span(Of UInteger)) + fullName.vb: OpenTK.Graphics.Glx.Glx.MESA.QueryCurrentRendererIntegerMESA(Integer, System.Span(Of UInteger)) + name.vb: QueryCurrentRendererIntegerMESA(Integer, Span(Of UInteger)) +- uid: OpenTK.Graphics.Glx.Glx.MESA.QueryCurrentRendererIntegerMESA(System.Int32,System.UInt32[]) + commentId: M:OpenTK.Graphics.Glx.Glx.MESA.QueryCurrentRendererIntegerMESA(System.Int32,System.UInt32[]) + id: QueryCurrentRendererIntegerMESA(System.Int32,System.UInt32[]) + parent: OpenTK.Graphics.Glx.Glx.MESA + langs: + - csharp + - vb + name: QueryCurrentRendererIntegerMESA(int, uint[]) + nameWithType: Glx.MESA.QueryCurrentRendererIntegerMESA(int, uint[]) + fullName: OpenTK.Graphics.Glx.Glx.MESA.QueryCurrentRendererIntegerMESA(int, uint[]) + type: Method + source: + id: QueryCurrentRendererIntegerMESA + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 747 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Glx + summary: >- + [requires: GLX_MESA_query_renderer] + + [entry point: glXQueryCurrentRendererIntegerMESA] + +
+ example: [] + syntax: + content: public static bool QueryCurrentRendererIntegerMESA(int attribute, uint[] value) + parameters: + - id: attribute + type: System.Int32 + - id: value + type: System.UInt32[] + return: + type: System.Boolean + content.vb: Public Shared Function QueryCurrentRendererIntegerMESA(attribute As Integer, value As UInteger()) As Boolean + overload: OpenTK.Graphics.Glx.Glx.MESA.QueryCurrentRendererIntegerMESA* + nameWithType.vb: Glx.MESA.QueryCurrentRendererIntegerMESA(Integer, UInteger()) + fullName.vb: OpenTK.Graphics.Glx.Glx.MESA.QueryCurrentRendererIntegerMESA(Integer, UInteger()) + name.vb: QueryCurrentRendererIntegerMESA(Integer, UInteger()) - uid: OpenTK.Graphics.Glx.Glx.MESA.QueryCurrentRendererIntegerMESA(System.Int32,System.UInt32@) commentId: M:OpenTK.Graphics.Glx.Glx.MESA.QueryCurrentRendererIntegerMESA(System.Int32,System.UInt32@) id: QueryCurrentRendererIntegerMESA(System.Int32,System.UInt32@) @@ -567,13 +728,9 @@ items: fullName: OpenTK.Graphics.Glx.Glx.MESA.QueryCurrentRendererIntegerMESA(int, ref uint) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: QueryCurrentRendererIntegerMESA - path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 287 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 757 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -610,13 +767,9 @@ items: fullName: OpenTK.Graphics.Glx.Glx.MESA.QueryCurrentRendererStringMESA(int) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: QueryCurrentRendererStringMESA - path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 297 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 767 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -633,6 +786,96 @@ items: nameWithType.vb: Glx.MESA.QueryCurrentRendererStringMESA(Integer) fullName.vb: OpenTK.Graphics.Glx.Glx.MESA.QueryCurrentRendererStringMESA(Integer) name.vb: QueryCurrentRendererStringMESA(Integer) +- uid: OpenTK.Graphics.Glx.Glx.MESA.QueryRendererIntegerMESA(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.Span{System.UInt32}) + commentId: M:OpenTK.Graphics.Glx.Glx.MESA.QueryRendererIntegerMESA(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.Span{System.UInt32}) + id: QueryRendererIntegerMESA(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.Span{System.UInt32}) + parent: OpenTK.Graphics.Glx.Glx.MESA + langs: + - csharp + - vb + name: QueryRendererIntegerMESA(DisplayPtr, int, int, int, Span) + nameWithType: Glx.MESA.QueryRendererIntegerMESA(DisplayPtr, int, int, int, Span) + fullName: OpenTK.Graphics.Glx.Glx.MESA.QueryRendererIntegerMESA(OpenTK.Graphics.Glx.DisplayPtr, int, int, int, System.Span) + type: Method + source: + id: QueryRendererIntegerMESA + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 776 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Glx + summary: >- + [requires: GLX_MESA_query_renderer] + + [entry point: glXQueryRendererIntegerMESA] + +
+ example: [] + syntax: + content: public static bool QueryRendererIntegerMESA(DisplayPtr dpy, int screen, int renderer, int attribute, Span value) + parameters: + - id: dpy + type: OpenTK.Graphics.Glx.DisplayPtr + - id: screen + type: System.Int32 + - id: renderer + type: System.Int32 + - id: attribute + type: System.Int32 + - id: value + type: System.Span{System.UInt32} + return: + type: System.Boolean + content.vb: Public Shared Function QueryRendererIntegerMESA(dpy As DisplayPtr, screen As Integer, renderer As Integer, attribute As Integer, value As Span(Of UInteger)) As Boolean + overload: OpenTK.Graphics.Glx.Glx.MESA.QueryRendererIntegerMESA* + nameWithType.vb: Glx.MESA.QueryRendererIntegerMESA(DisplayPtr, Integer, Integer, Integer, Span(Of UInteger)) + fullName.vb: OpenTK.Graphics.Glx.Glx.MESA.QueryRendererIntegerMESA(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer, Integer, System.Span(Of UInteger)) + name.vb: QueryRendererIntegerMESA(DisplayPtr, Integer, Integer, Integer, Span(Of UInteger)) +- uid: OpenTK.Graphics.Glx.Glx.MESA.QueryRendererIntegerMESA(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.UInt32[]) + commentId: M:OpenTK.Graphics.Glx.Glx.MESA.QueryRendererIntegerMESA(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.UInt32[]) + id: QueryRendererIntegerMESA(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.UInt32[]) + parent: OpenTK.Graphics.Glx.Glx.MESA + langs: + - csharp + - vb + name: QueryRendererIntegerMESA(DisplayPtr, int, int, int, uint[]) + nameWithType: Glx.MESA.QueryRendererIntegerMESA(DisplayPtr, int, int, int, uint[]) + fullName: OpenTK.Graphics.Glx.Glx.MESA.QueryRendererIntegerMESA(OpenTK.Graphics.Glx.DisplayPtr, int, int, int, uint[]) + type: Method + source: + id: QueryRendererIntegerMESA + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 786 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Glx + summary: >- + [requires: GLX_MESA_query_renderer] + + [entry point: glXQueryRendererIntegerMESA] + +
+ example: [] + syntax: + content: public static bool QueryRendererIntegerMESA(DisplayPtr dpy, int screen, int renderer, int attribute, uint[] value) + parameters: + - id: dpy + type: OpenTK.Graphics.Glx.DisplayPtr + - id: screen + type: System.Int32 + - id: renderer + type: System.Int32 + - id: attribute + type: System.Int32 + - id: value + type: System.UInt32[] + return: + type: System.Boolean + content.vb: Public Shared Function QueryRendererIntegerMESA(dpy As DisplayPtr, screen As Integer, renderer As Integer, attribute As Integer, value As UInteger()) As Boolean + overload: OpenTK.Graphics.Glx.Glx.MESA.QueryRendererIntegerMESA* + nameWithType.vb: Glx.MESA.QueryRendererIntegerMESA(DisplayPtr, Integer, Integer, Integer, UInteger()) + fullName.vb: OpenTK.Graphics.Glx.Glx.MESA.QueryRendererIntegerMESA(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer, Integer, UInteger()) + name.vb: QueryRendererIntegerMESA(DisplayPtr, Integer, Integer, Integer, UInteger()) - uid: OpenTK.Graphics.Glx.Glx.MESA.QueryRendererIntegerMESA(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.UInt32@) commentId: M:OpenTK.Graphics.Glx.Glx.MESA.QueryRendererIntegerMESA(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.UInt32@) id: QueryRendererIntegerMESA(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.UInt32@) @@ -645,13 +888,9 @@ items: fullName: OpenTK.Graphics.Glx.Glx.MESA.QueryRendererIntegerMESA(OpenTK.Graphics.Glx.DisplayPtr, int, int, int, ref uint) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: QueryRendererIntegerMESA - path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 306 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 796 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -694,13 +933,9 @@ items: fullName: OpenTK.Graphics.Glx.Glx.MESA.QueryRendererStringMESA(OpenTK.Graphics.Glx.DisplayPtr, int, int, int) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: QueryRendererStringMESA - path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 316 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 806 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -1206,6 +1441,79 @@ references: nameWithType.vb: IntPtr fullName.vb: System.IntPtr name.vb: IntPtr +- uid: System.ReadOnlySpan{{T1}} + commentId: T:System.ReadOnlySpan{``0} + parent: System + definition: System.ReadOnlySpan`1 + href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 + name: ReadOnlySpan + nameWithType: ReadOnlySpan + fullName: System.ReadOnlySpan + nameWithType.vb: ReadOnlySpan(Of T1) + fullName.vb: System.ReadOnlySpan(Of T1) + name.vb: ReadOnlySpan(Of T1) + spec.csharp: + - uid: System.ReadOnlySpan`1 + name: ReadOnlySpan + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 + - name: < + - name: T1 + - name: '>' + spec.vb: + - uid: System.ReadOnlySpan`1 + name: ReadOnlySpan + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 + - name: ( + - name: Of + - name: " " + - name: T1 + - name: ) +- uid: System.ReadOnlySpan`1 + commentId: T:System.ReadOnlySpan`1 + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 + name: ReadOnlySpan + nameWithType: ReadOnlySpan + fullName: System.ReadOnlySpan + nameWithType.vb: ReadOnlySpan(Of T) + fullName.vb: System.ReadOnlySpan(Of T) + name.vb: ReadOnlySpan(Of T) + spec.csharp: + - uid: System.ReadOnlySpan`1 + name: ReadOnlySpan + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 + - name: < + - name: T + - name: '>' + spec.vb: + - uid: System.ReadOnlySpan`1 + name: ReadOnlySpan + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 + - name: ( + - name: Of + - name: " " + - name: T + - name: ) +- uid: '{T1}[]' + isExternal: true + name: T1[] + nameWithType: T1[] + fullName: T1[] + nameWithType.vb: T1() + fullName.vb: T1() + name.vb: T1() + spec.csharp: + - name: T1 + - name: '[' + - name: ']' + spec.vb: + - name: T1 + - name: ( + - name: ) - uid: '{T1}' commentId: '!:T1' definition: T1 @@ -1216,6 +1524,92 @@ references: name: T1 nameWithType: T1 fullName: T1 +- uid: System.Span{System.UInt32} + commentId: T:System.Span{System.UInt32} + parent: System + definition: System.Span`1 + href: https://learn.microsoft.com/dotnet/api/system.span-1 + name: Span + nameWithType: Span + fullName: System.Span + nameWithType.vb: Span(Of UInteger) + fullName.vb: System.Span(Of UInteger) + name.vb: Span(Of UInteger) + spec.csharp: + - uid: System.Span`1 + name: Span + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.span-1 + - name: < + - uid: System.UInt32 + name: uint + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.uint32 + - name: '>' + spec.vb: + - uid: System.Span`1 + name: Span + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.span-1 + - name: ( + - name: Of + - name: " " + - uid: System.UInt32 + name: UInteger + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.uint32 + - name: ) +- uid: System.Span`1 + commentId: T:System.Span`1 + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.span-1 + name: Span + nameWithType: Span + fullName: System.Span + nameWithType.vb: Span(Of T) + fullName.vb: System.Span(Of T) + name.vb: Span(Of T) + spec.csharp: + - uid: System.Span`1 + name: Span + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.span-1 + - name: < + - name: T + - name: '>' + spec.vb: + - uid: System.Span`1 + name: Span + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.span-1 + - name: ( + - name: Of + - name: " " + - name: T + - name: ) +- uid: System.UInt32[] + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.uint32 + name: uint[] + nameWithType: uint[] + fullName: uint[] + nameWithType.vb: UInteger() + fullName.vb: UInteger() + name.vb: UInteger() + spec.csharp: + - uid: System.UInt32 + name: uint + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.uint32 + - name: '[' + - name: ']' + spec.vb: + - uid: System.UInt32 + name: UInteger + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.uint32 + - name: ( + - name: ) - uid: OpenTK.Graphics.Glx.Glx.MESA.QueryCurrentRendererStringMESA* commentId: Overload:OpenTK.Graphics.Glx.Glx.MESA.QueryCurrentRendererStringMESA href: OpenTK.Graphics.Glx.Glx.MESA.html#OpenTK_Graphics_Glx_Glx_MESA_QueryCurrentRendererStringMESA_System_Int32_ diff --git a/api/OpenTK.Graphics.Glx.Glx.NV.yml b/api/OpenTK.Graphics.Glx.Glx.NV.yml index 4a54b807..99bcab2a 100644 --- a/api/OpenTK.Graphics.Glx.Glx.NV.yml +++ b/api/OpenTK.Graphics.Glx.Glx.NV.yml @@ -9,35 +9,55 @@ items: - OpenTK.Graphics.Glx.Glx.NV.BindVideoCaptureDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,System.UInt32,OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV) - OpenTK.Graphics.Glx.Glx.NV.BindVideoDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,System.UInt32,System.UInt32,System.Int32*) - OpenTK.Graphics.Glx.Glx.NV.BindVideoDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,System.UInt32,System.UInt32,System.Int32@) + - OpenTK.Graphics.Glx.Glx.NV.BindVideoDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,System.UInt32,System.UInt32,System.Int32[]) + - OpenTK.Graphics.Glx.Glx.NV.BindVideoDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,System.UInt32,System.UInt32,System.ReadOnlySpan{System.Int32}) - OpenTK.Graphics.Glx.Glx.NV.BindVideoImageNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXVideoDeviceNV,OpenTK.Graphics.Glx.GLXPbuffer,System.Int32) - OpenTK.Graphics.Glx.Glx.NV.CopyBufferSubDataNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext,OpenTK.Graphics.Glx.GLXContext,OpenTK.Graphics.Glx.All,OpenTK.Graphics.Glx.All,System.IntPtr,System.IntPtr,System.IntPtr) - OpenTK.Graphics.Glx.Glx.NV.CopyImageSubDataNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext,System.UInt32,OpenTK.Graphics.Glx.All,System.Int32,System.Int32,System.Int32,System.Int32,OpenTK.Graphics.Glx.GLXContext,System.UInt32,OpenTK.Graphics.Glx.All,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32) - OpenTK.Graphics.Glx.Glx.NV.DelayBeforeSwapNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Single) - OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoCaptureDevicesNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32*) - OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoCaptureDevicesNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32@) + - OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoCaptureDevicesNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32[]) + - OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoCaptureDevicesNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Span{System.Int32}) - OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoDevicesNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32*) - OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoDevicesNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32@) + - OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoDevicesNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32[]) + - OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoDevicesNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Span{System.Int32}) - OpenTK.Graphics.Glx.Glx.NV.GetVideoDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,OpenTK.Graphics.Glx.GLXVideoDeviceNV*) - OpenTK.Graphics.Glx.Glx.NV.GetVideoDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,OpenTK.Graphics.Glx.GLXVideoDeviceNV@) + - OpenTK.Graphics.Glx.Glx.NV.GetVideoDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,OpenTK.Graphics.Glx.GLXVideoDeviceNV[]) + - OpenTK.Graphics.Glx.Glx.NV.GetVideoDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Span{OpenTK.Graphics.Glx.GLXVideoDeviceNV}) + - OpenTK.Graphics.Glx.Glx.NV.GetVideoInfoNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,OpenTK.Graphics.Glx.GLXVideoDeviceNV,System.Span{System.UInt64},System.Span{System.UInt64}) - OpenTK.Graphics.Glx.Glx.NV.GetVideoInfoNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,OpenTK.Graphics.Glx.GLXVideoDeviceNV,System.UInt64*,System.UInt64*) - OpenTK.Graphics.Glx.Glx.NV.GetVideoInfoNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,OpenTK.Graphics.Glx.GLXVideoDeviceNV,System.UInt64@,System.UInt64@) + - OpenTK.Graphics.Glx.Glx.NV.GetVideoInfoNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,OpenTK.Graphics.Glx.GLXVideoDeviceNV,System.UInt64[],System.UInt64[]) - OpenTK.Graphics.Glx.Glx.NV.JoinSwapGroupNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.UInt32) - OpenTK.Graphics.Glx.Glx.NV.LockVideoCaptureDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV) - OpenTK.Graphics.Glx.Glx.NV.NamedCopyBufferSubDataNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext,OpenTK.Graphics.Glx.GLXContext,System.UInt32,System.UInt32,System.IntPtr,System.IntPtr,System.IntPtr) + - OpenTK.Graphics.Glx.Glx.NV.QueryFrameCountNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Span{System.UInt32}) - OpenTK.Graphics.Glx.Glx.NV.QueryFrameCountNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.UInt32*) - OpenTK.Graphics.Glx.Glx.NV.QueryFrameCountNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.UInt32@) + - OpenTK.Graphics.Glx.Glx.NV.QueryFrameCountNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.UInt32[]) + - OpenTK.Graphics.Glx.Glx.NV.QueryMaxSwapGroupsNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Span{System.UInt32},System.Span{System.UInt32}) - OpenTK.Graphics.Glx.Glx.NV.QueryMaxSwapGroupsNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.UInt32*,System.UInt32*) - OpenTK.Graphics.Glx.Glx.NV.QueryMaxSwapGroupsNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.UInt32@,System.UInt32@) + - OpenTK.Graphics.Glx.Glx.NV.QueryMaxSwapGroupsNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.UInt32[],System.UInt32[]) + - OpenTK.Graphics.Glx.Glx.NV.QuerySwapGroupNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Span{System.UInt32},System.Span{System.UInt32}) - OpenTK.Graphics.Glx.Glx.NV.QuerySwapGroupNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.UInt32*,System.UInt32*) - OpenTK.Graphics.Glx.Glx.NV.QuerySwapGroupNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.UInt32@,System.UInt32@) + - OpenTK.Graphics.Glx.Glx.NV.QuerySwapGroupNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.UInt32[],System.UInt32[]) - OpenTK.Graphics.Glx.Glx.NV.QueryVideoCaptureDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV,System.Int32,System.Int32*) - OpenTK.Graphics.Glx.Glx.NV.QueryVideoCaptureDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV,System.Int32,System.Int32@) + - OpenTK.Graphics.Glx.Glx.NV.QueryVideoCaptureDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV,System.Int32,System.Int32[]) + - OpenTK.Graphics.Glx.Glx.NV.QueryVideoCaptureDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV,System.Int32,System.Span{System.Int32}) - OpenTK.Graphics.Glx.Glx.NV.ReleaseVideoCaptureDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV) - OpenTK.Graphics.Glx.Glx.NV.ReleaseVideoDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,OpenTK.Graphics.Glx.GLXVideoDeviceNV) - OpenTK.Graphics.Glx.Glx.NV.ReleaseVideoImageNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXPbuffer) - OpenTK.Graphics.Glx.Glx.NV.ResetFrameCountNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32) + - OpenTK.Graphics.Glx.Glx.NV.SendPbufferToVideoNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXPbuffer,System.Int32,System.Span{System.UInt64},System.Boolean) - OpenTK.Graphics.Glx.Glx.NV.SendPbufferToVideoNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXPbuffer,System.Int32,System.UInt64*,System.Boolean) - OpenTK.Graphics.Glx.Glx.NV.SendPbufferToVideoNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXPbuffer,System.Int32,System.UInt64@,System.Boolean) + - OpenTK.Graphics.Glx.Glx.NV.SendPbufferToVideoNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXPbuffer,System.Int32,System.UInt64[],System.Boolean) langs: - csharp - vb @@ -46,13 +66,9 @@ items: fullName: OpenTK.Graphics.Glx.Glx.NV type: Class source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: NV - path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 325 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 815 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -83,17 +99,18 @@ items: fullName: OpenTK.Graphics.Glx.Glx.NV.BindSwapBarrierNV(OpenTK.Graphics.Glx.DisplayPtr, uint, uint) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: BindSwapBarrierNV - path: opentk/src/OpenTK.Graphics/Glx/GLX.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs startLine: 238 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx - summary: '[requires: GLX_NV_swap_group] [entry point: glXBindSwapBarrierNV]
' + summary: >- + [requires: GLX_NV_swap_group] + + [entry point: glXBindSwapBarrierNV] + +
example: [] syntax: content: public static bool BindSwapBarrierNV(DisplayPtr dpy, uint group, uint barrier) @@ -123,17 +140,18 @@ items: fullName: OpenTK.Graphics.Glx.Glx.NV.BindVideoCaptureDeviceNV(OpenTK.Graphics.Glx.DisplayPtr, uint, OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: BindVideoCaptureDeviceNV - path: opentk/src/OpenTK.Graphics/Glx/GLX.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs startLine: 241 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx - summary: '[requires: GLX_NV_video_capture] [entry point: glXBindVideoCaptureDeviceNV]
' + summary: >- + [requires: GLX_NV_video_capture] + + [entry point: glXBindVideoCaptureDeviceNV] + +
example: [] syntax: content: public static int BindVideoCaptureDeviceNV(DisplayPtr dpy, uint video_capture_slot, GLXVideoCaptureDeviceNV device) @@ -163,17 +181,18 @@ items: fullName: OpenTK.Graphics.Glx.Glx.NV.BindVideoDeviceNV(OpenTK.Graphics.Glx.DisplayPtr, uint, uint, int*) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: BindVideoDeviceNV - path: opentk/src/OpenTK.Graphics/Glx/GLX.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs startLine: 244 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx - summary: '[requires: GLX_NV_present_video] [entry point: glXBindVideoDeviceNV]
' + summary: >- + [requires: GLX_NV_present_video] + + [entry point: glXBindVideoDeviceNV] + +
example: [] syntax: content: public static int BindVideoDeviceNV(DisplayPtr dpy, uint video_slot, uint video_device, int* attrib_list) @@ -205,17 +224,18 @@ items: fullName: OpenTK.Graphics.Glx.Glx.NV.BindVideoImageNV(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXVideoDeviceNV, OpenTK.Graphics.Glx.GLXPbuffer, int) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: BindVideoImageNV - path: opentk/src/OpenTK.Graphics/Glx/GLX.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs startLine: 247 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx - summary: '[requires: GLX_NV_video_out] [entry point: glXBindVideoImageNV]
' + summary: >- + [requires: GLX_NV_video_out] + + [entry point: glXBindVideoImageNV] + +
example: [] syntax: content: public static int BindVideoImageNV(DisplayPtr dpy, GLXVideoDeviceNV VideoDevice, GLXPbuffer pbuf, int iVideoBuffer) @@ -247,17 +267,18 @@ items: fullName: OpenTK.Graphics.Glx.Glx.NV.CopyBufferSubDataNV(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXContext, OpenTK.Graphics.Glx.GLXContext, OpenTK.Graphics.Glx.All, OpenTK.Graphics.Glx.All, nint, nint, nint) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CopyBufferSubDataNV - path: opentk/src/OpenTK.Graphics/Glx/GLX.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs startLine: 250 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx - summary: '[requires: GLX_NV_copy_buffer] [entry point: glXCopyBufferSubDataNV]
' + summary: >- + [requires: GLX_NV_copy_buffer] + + [entry point: glXCopyBufferSubDataNV] + +
example: [] syntax: content: public static void CopyBufferSubDataNV(DisplayPtr dpy, GLXContext readCtx, GLXContext writeCtx, All readTarget, All writeTarget, nint readOffset, nint writeOffset, nint size) @@ -295,17 +316,18 @@ items: fullName: OpenTK.Graphics.Glx.Glx.NV.CopyImageSubDataNV(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXContext, uint, OpenTK.Graphics.Glx.All, int, int, int, int, OpenTK.Graphics.Glx.GLXContext, uint, OpenTK.Graphics.Glx.All, int, int, int, int, int, int, int) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CopyImageSubDataNV - path: opentk/src/OpenTK.Graphics/Glx/GLX.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs startLine: 253 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx - summary: '[requires: GLX_NV_copy_image] [entry point: glXCopyImageSubDataNV]
' + summary: >- + [requires: GLX_NV_copy_image] + + [entry point: glXCopyImageSubDataNV] + +
example: [] syntax: content: public static void CopyImageSubDataNV(DisplayPtr dpy, GLXContext srcCtx, uint srcName, All srcTarget, int srcLevel, int srcX, int srcY, int srcZ, GLXContext dstCtx, uint dstName, All dstTarget, int dstLevel, int dstX, int dstY, int dstZ, int width, int height, int depth) @@ -363,17 +385,18 @@ items: fullName: OpenTK.Graphics.Glx.Glx.NV.DelayBeforeSwapNV(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, float) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DelayBeforeSwapNV - path: opentk/src/OpenTK.Graphics/Glx/GLX.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs startLine: 256 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx - summary: '[requires: GLX_NV_delay_before_swap] [entry point: glXDelayBeforeSwapNV]
' + summary: >- + [requires: GLX_NV_delay_before_swap] + + [entry point: glXDelayBeforeSwapNV] + +
example: [] syntax: content: public static bool DelayBeforeSwapNV(DisplayPtr dpy, GLXDrawable drawable, float seconds) @@ -403,17 +426,18 @@ items: fullName: OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoCaptureDevicesNV(OpenTK.Graphics.Glx.DisplayPtr, int, int*) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: EnumerateVideoCaptureDevicesNV - path: opentk/src/OpenTK.Graphics/Glx/GLX.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs startLine: 259 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx - summary: '[requires: GLX_NV_video_capture] [entry point: glXEnumerateVideoCaptureDevicesNV]
' + summary: >- + [requires: GLX_NV_video_capture] + + [entry point: glXEnumerateVideoCaptureDevicesNV] + +
example: [] syntax: content: public static GLXVideoCaptureDeviceNV* EnumerateVideoCaptureDevicesNV(DisplayPtr dpy, int screen, int* nelements) @@ -443,17 +467,18 @@ items: fullName: OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoDevicesNV(OpenTK.Graphics.Glx.DisplayPtr, int, int*) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: EnumerateVideoDevicesNV - path: opentk/src/OpenTK.Graphics/Glx/GLX.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs startLine: 262 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx - summary: '[requires: GLX_NV_present_video] [entry point: glXEnumerateVideoDevicesNV]
' + summary: >- + [requires: GLX_NV_present_video] + + [entry point: glXEnumerateVideoDevicesNV] + +
example: [] syntax: content: public static uint* EnumerateVideoDevicesNV(DisplayPtr dpy, int screen, int* nelements) @@ -483,17 +508,18 @@ items: fullName: OpenTK.Graphics.Glx.Glx.NV.GetVideoDeviceNV(OpenTK.Graphics.Glx.DisplayPtr, int, int, OpenTK.Graphics.Glx.GLXVideoDeviceNV*) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetVideoDeviceNV - path: opentk/src/OpenTK.Graphics/Glx/GLX.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs startLine: 265 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx - summary: '[requires: GLX_NV_video_out] [entry point: glXGetVideoDeviceNV]
' + summary: >- + [requires: GLX_NV_video_out] + + [entry point: glXGetVideoDeviceNV] + +
example: [] syntax: content: public static int GetVideoDeviceNV(DisplayPtr dpy, int screen, int numVideoDevices, GLXVideoDeviceNV* pVideoDevice) @@ -525,17 +551,18 @@ items: fullName: OpenTK.Graphics.Glx.Glx.NV.GetVideoInfoNV(OpenTK.Graphics.Glx.DisplayPtr, int, OpenTK.Graphics.Glx.GLXVideoDeviceNV, ulong*, ulong*) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetVideoInfoNV - path: opentk/src/OpenTK.Graphics/Glx/GLX.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs startLine: 268 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx - summary: '[requires: GLX_NV_video_out] [entry point: glXGetVideoInfoNV]
' + summary: >- + [requires: GLX_NV_video_out] + + [entry point: glXGetVideoInfoNV] + +
example: [] syntax: content: public static int GetVideoInfoNV(DisplayPtr dpy, int screen, GLXVideoDeviceNV VideoDevice, ulong* pulCounterOutputPbuffer, ulong* pulCounterOutputVideo) @@ -569,17 +596,18 @@ items: fullName: OpenTK.Graphics.Glx.Glx.NV.JoinSwapGroupNV(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, uint) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: JoinSwapGroupNV - path: opentk/src/OpenTK.Graphics/Glx/GLX.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs startLine: 271 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx - summary: '[requires: GLX_NV_swap_group] [entry point: glXJoinSwapGroupNV]
' + summary: >- + [requires: GLX_NV_swap_group] + + [entry point: glXJoinSwapGroupNV] + +
example: [] syntax: content: public static bool JoinSwapGroupNV(DisplayPtr dpy, GLXDrawable drawable, uint group) @@ -609,17 +637,18 @@ items: fullName: OpenTK.Graphics.Glx.Glx.NV.LockVideoCaptureDeviceNV(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: LockVideoCaptureDeviceNV - path: opentk/src/OpenTK.Graphics/Glx/GLX.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs startLine: 274 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx - summary: '[requires: GLX_NV_video_capture] [entry point: glXLockVideoCaptureDeviceNV]
' + summary: >- + [requires: GLX_NV_video_capture] + + [entry point: glXLockVideoCaptureDeviceNV] + +
example: [] syntax: content: public static void LockVideoCaptureDeviceNV(DisplayPtr dpy, GLXVideoCaptureDeviceNV device) @@ -642,17 +671,18 @@ items: fullName: OpenTK.Graphics.Glx.Glx.NV.NamedCopyBufferSubDataNV(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXContext, OpenTK.Graphics.Glx.GLXContext, uint, uint, nint, nint, nint) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: NamedCopyBufferSubDataNV - path: opentk/src/OpenTK.Graphics/Glx/GLX.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs startLine: 277 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx - summary: '[requires: GLX_NV_copy_buffer] [entry point: glXNamedCopyBufferSubDataNV]
' + summary: >- + [requires: GLX_NV_copy_buffer] + + [entry point: glXNamedCopyBufferSubDataNV] + +
example: [] syntax: content: public static void NamedCopyBufferSubDataNV(DisplayPtr dpy, GLXContext readCtx, GLXContext writeCtx, uint readBuffer, uint writeBuffer, nint readOffset, nint writeOffset, nint size) @@ -690,17 +720,18 @@ items: fullName: OpenTK.Graphics.Glx.Glx.NV.QueryFrameCountNV(OpenTK.Graphics.Glx.DisplayPtr, int, uint*) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: QueryFrameCountNV - path: opentk/src/OpenTK.Graphics/Glx/GLX.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs startLine: 280 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx - summary: '[requires: GLX_NV_swap_group] [entry point: glXQueryFrameCountNV]
' + summary: >- + [requires: GLX_NV_swap_group] + + [entry point: glXQueryFrameCountNV] + +
example: [] syntax: content: public static bool QueryFrameCountNV(DisplayPtr dpy, int screen, uint* count) @@ -730,17 +761,18 @@ items: fullName: OpenTK.Graphics.Glx.Glx.NV.QueryMaxSwapGroupsNV(OpenTK.Graphics.Glx.DisplayPtr, int, uint*, uint*) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: QueryMaxSwapGroupsNV - path: opentk/src/OpenTK.Graphics/Glx/GLX.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs startLine: 283 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx - summary: '[requires: GLX_NV_swap_group] [entry point: glXQueryMaxSwapGroupsNV]
' + summary: >- + [requires: GLX_NV_swap_group] + + [entry point: glXQueryMaxSwapGroupsNV] + +
example: [] syntax: content: public static bool QueryMaxSwapGroupsNV(DisplayPtr dpy, int screen, uint* maxGroups, uint* maxBarriers) @@ -772,17 +804,18 @@ items: fullName: OpenTK.Graphics.Glx.Glx.NV.QuerySwapGroupNV(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, uint*, uint*) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: QuerySwapGroupNV - path: opentk/src/OpenTK.Graphics/Glx/GLX.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs startLine: 286 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx - summary: '[requires: GLX_NV_swap_group] [entry point: glXQuerySwapGroupNV]
' + summary: >- + [requires: GLX_NV_swap_group] + + [entry point: glXQuerySwapGroupNV] + +
example: [] syntax: content: public static bool QuerySwapGroupNV(DisplayPtr dpy, GLXDrawable drawable, uint* group, uint* barrier) @@ -814,17 +847,18 @@ items: fullName: OpenTK.Graphics.Glx.Glx.NV.QueryVideoCaptureDeviceNV(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV, int, int*) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: QueryVideoCaptureDeviceNV - path: opentk/src/OpenTK.Graphics/Glx/GLX.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs startLine: 289 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx - summary: '[requires: GLX_NV_video_capture] [entry point: glXQueryVideoCaptureDeviceNV]
' + summary: >- + [requires: GLX_NV_video_capture] + + [entry point: glXQueryVideoCaptureDeviceNV] + +
example: [] syntax: content: public static int QueryVideoCaptureDeviceNV(DisplayPtr dpy, GLXVideoCaptureDeviceNV device, int attribute, int* value) @@ -856,17 +890,18 @@ items: fullName: OpenTK.Graphics.Glx.Glx.NV.ReleaseVideoCaptureDeviceNV(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ReleaseVideoCaptureDeviceNV - path: opentk/src/OpenTK.Graphics/Glx/GLX.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs startLine: 292 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx - summary: '[requires: GLX_NV_video_capture] [entry point: glXReleaseVideoCaptureDeviceNV]
' + summary: >- + [requires: GLX_NV_video_capture] + + [entry point: glXReleaseVideoCaptureDeviceNV] + +
example: [] syntax: content: public static void ReleaseVideoCaptureDeviceNV(DisplayPtr dpy, GLXVideoCaptureDeviceNV device) @@ -889,17 +924,18 @@ items: fullName: OpenTK.Graphics.Glx.Glx.NV.ReleaseVideoDeviceNV(OpenTK.Graphics.Glx.DisplayPtr, int, OpenTK.Graphics.Glx.GLXVideoDeviceNV) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ReleaseVideoDeviceNV - path: opentk/src/OpenTK.Graphics/Glx/GLX.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs startLine: 295 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx - summary: '[requires: GLX_NV_video_out] [entry point: glXReleaseVideoDeviceNV]
' + summary: >- + [requires: GLX_NV_video_out] + + [entry point: glXReleaseVideoDeviceNV] + +
example: [] syntax: content: public static int ReleaseVideoDeviceNV(DisplayPtr dpy, int screen, GLXVideoDeviceNV VideoDevice) @@ -929,17 +965,18 @@ items: fullName: OpenTK.Graphics.Glx.Glx.NV.ReleaseVideoImageNV(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXPbuffer) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ReleaseVideoImageNV - path: opentk/src/OpenTK.Graphics/Glx/GLX.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs startLine: 298 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx - summary: '[requires: GLX_NV_video_out] [entry point: glXReleaseVideoImageNV]
' + summary: >- + [requires: GLX_NV_video_out] + + [entry point: glXReleaseVideoImageNV] + +
example: [] syntax: content: public static int ReleaseVideoImageNV(DisplayPtr dpy, GLXPbuffer pbuf) @@ -964,17 +1001,18 @@ items: fullName: OpenTK.Graphics.Glx.Glx.NV.ResetFrameCountNV(OpenTK.Graphics.Glx.DisplayPtr, int) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ResetFrameCountNV - path: opentk/src/OpenTK.Graphics/Glx/GLX.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs startLine: 301 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx - summary: '[requires: GLX_NV_swap_group] [entry point: glXResetFrameCountNV]
' + summary: >- + [requires: GLX_NV_swap_group] + + [entry point: glXResetFrameCountNV] + +
example: [] syntax: content: public static bool ResetFrameCountNV(DisplayPtr dpy, int screen) @@ -1002,17 +1040,18 @@ items: fullName: OpenTK.Graphics.Glx.Glx.NV.SendPbufferToVideoNV(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXPbuffer, int, ulong*, bool) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SendPbufferToVideoNV - path: opentk/src/OpenTK.Graphics/Glx/GLX.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs startLine: 304 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx - summary: '[requires: GLX_NV_video_out] [entry point: glXSendPbufferToVideoNV]
' + summary: >- + [requires: GLX_NV_video_out] + + [entry point: glXSendPbufferToVideoNV] + +
example: [] syntax: content: public static int SendPbufferToVideoNV(DisplayPtr dpy, GLXPbuffer pbuf, int iBufferType, ulong* pulCounterPbuffer, bool bBlock) @@ -1034,6 +1073,92 @@ items: nameWithType.vb: Glx.NV.SendPbufferToVideoNV(DisplayPtr, GLXPbuffer, Integer, ULong*, Boolean) fullName.vb: OpenTK.Graphics.Glx.Glx.NV.SendPbufferToVideoNV(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXPbuffer, Integer, ULong*, Boolean) name.vb: SendPbufferToVideoNV(DisplayPtr, GLXPbuffer, Integer, ULong*, Boolean) +- uid: OpenTK.Graphics.Glx.Glx.NV.BindVideoDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,System.UInt32,System.UInt32,System.ReadOnlySpan{System.Int32}) + commentId: M:OpenTK.Graphics.Glx.Glx.NV.BindVideoDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,System.UInt32,System.UInt32,System.ReadOnlySpan{System.Int32}) + id: BindVideoDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,System.UInt32,System.UInt32,System.ReadOnlySpan{System.Int32}) + parent: OpenTK.Graphics.Glx.Glx.NV + langs: + - csharp + - vb + name: BindVideoDeviceNV(DisplayPtr, uint, uint, ReadOnlySpan) + nameWithType: Glx.NV.BindVideoDeviceNV(DisplayPtr, uint, uint, ReadOnlySpan) + fullName: OpenTK.Graphics.Glx.Glx.NV.BindVideoDeviceNV(OpenTK.Graphics.Glx.DisplayPtr, uint, uint, System.ReadOnlySpan) + type: Method + source: + id: BindVideoDeviceNV + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 818 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Glx + summary: >- + [requires: GLX_NV_present_video] + + [entry point: glXBindVideoDeviceNV] + +
+ example: [] + syntax: + content: public static int BindVideoDeviceNV(DisplayPtr dpy, uint video_slot, uint video_device, ReadOnlySpan attrib_list) + parameters: + - id: dpy + type: OpenTK.Graphics.Glx.DisplayPtr + - id: video_slot + type: System.UInt32 + - id: video_device + type: System.UInt32 + - id: attrib_list + type: System.ReadOnlySpan{System.Int32} + return: + type: System.Int32 + content.vb: Public Shared Function BindVideoDeviceNV(dpy As DisplayPtr, video_slot As UInteger, video_device As UInteger, attrib_list As ReadOnlySpan(Of Integer)) As Integer + overload: OpenTK.Graphics.Glx.Glx.NV.BindVideoDeviceNV* + nameWithType.vb: Glx.NV.BindVideoDeviceNV(DisplayPtr, UInteger, UInteger, ReadOnlySpan(Of Integer)) + fullName.vb: OpenTK.Graphics.Glx.Glx.NV.BindVideoDeviceNV(OpenTK.Graphics.Glx.DisplayPtr, UInteger, UInteger, System.ReadOnlySpan(Of Integer)) + name.vb: BindVideoDeviceNV(DisplayPtr, UInteger, UInteger, ReadOnlySpan(Of Integer)) +- uid: OpenTK.Graphics.Glx.Glx.NV.BindVideoDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,System.UInt32,System.UInt32,System.Int32[]) + commentId: M:OpenTK.Graphics.Glx.Glx.NV.BindVideoDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,System.UInt32,System.UInt32,System.Int32[]) + id: BindVideoDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,System.UInt32,System.UInt32,System.Int32[]) + parent: OpenTK.Graphics.Glx.Glx.NV + langs: + - csharp + - vb + name: BindVideoDeviceNV(DisplayPtr, uint, uint, int[]) + nameWithType: Glx.NV.BindVideoDeviceNV(DisplayPtr, uint, uint, int[]) + fullName: OpenTK.Graphics.Glx.Glx.NV.BindVideoDeviceNV(OpenTK.Graphics.Glx.DisplayPtr, uint, uint, int[]) + type: Method + source: + id: BindVideoDeviceNV + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 828 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Glx + summary: >- + [requires: GLX_NV_present_video] + + [entry point: glXBindVideoDeviceNV] + +
+ example: [] + syntax: + content: public static int BindVideoDeviceNV(DisplayPtr dpy, uint video_slot, uint video_device, int[] attrib_list) + parameters: + - id: dpy + type: OpenTK.Graphics.Glx.DisplayPtr + - id: video_slot + type: System.UInt32 + - id: video_device + type: System.UInt32 + - id: attrib_list + type: System.Int32[] + return: + type: System.Int32 + content.vb: Public Shared Function BindVideoDeviceNV(dpy As DisplayPtr, video_slot As UInteger, video_device As UInteger, attrib_list As Integer()) As Integer + overload: OpenTK.Graphics.Glx.Glx.NV.BindVideoDeviceNV* + nameWithType.vb: Glx.NV.BindVideoDeviceNV(DisplayPtr, UInteger, UInteger, Integer()) + fullName.vb: OpenTK.Graphics.Glx.Glx.NV.BindVideoDeviceNV(OpenTK.Graphics.Glx.DisplayPtr, UInteger, UInteger, Integer()) + name.vb: BindVideoDeviceNV(DisplayPtr, UInteger, UInteger, Integer()) - uid: OpenTK.Graphics.Glx.Glx.NV.BindVideoDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,System.UInt32,System.UInt32,System.Int32@) commentId: M:OpenTK.Graphics.Glx.Glx.NV.BindVideoDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,System.UInt32,System.UInt32,System.Int32@) id: BindVideoDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,System.UInt32,System.UInt32,System.Int32@) @@ -1046,13 +1171,9 @@ items: fullName: OpenTK.Graphics.Glx.Glx.NV.BindVideoDeviceNV(OpenTK.Graphics.Glx.DisplayPtr, uint, uint, in int) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: BindVideoDeviceNV - path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 328 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 838 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -1081,25 +1202,21 @@ items: nameWithType.vb: Glx.NV.BindVideoDeviceNV(DisplayPtr, UInteger, UInteger, Integer) fullName.vb: OpenTK.Graphics.Glx.Glx.NV.BindVideoDeviceNV(OpenTK.Graphics.Glx.DisplayPtr, UInteger, UInteger, Integer) name.vb: BindVideoDeviceNV(DisplayPtr, UInteger, UInteger, Integer) -- uid: OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoCaptureDevicesNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32@) - commentId: M:OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoCaptureDevicesNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32@) - id: EnumerateVideoCaptureDevicesNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32@) +- uid: OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoCaptureDevicesNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Span{System.Int32}) + commentId: M:OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoCaptureDevicesNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Span{System.Int32}) + id: EnumerateVideoCaptureDevicesNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Span{System.Int32}) parent: OpenTK.Graphics.Glx.Glx.NV langs: - csharp - vb - name: EnumerateVideoCaptureDevicesNV(DisplayPtr, int, ref int) - nameWithType: Glx.NV.EnumerateVideoCaptureDevicesNV(DisplayPtr, int, ref int) - fullName: OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoCaptureDevicesNV(OpenTK.Graphics.Glx.DisplayPtr, int, ref int) + name: EnumerateVideoCaptureDevicesNV(DisplayPtr, int, Span) + nameWithType: Glx.NV.EnumerateVideoCaptureDevicesNV(DisplayPtr, int, Span) + fullName: OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoCaptureDevicesNV(OpenTK.Graphics.Glx.DisplayPtr, int, System.Span) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: EnumerateVideoCaptureDevicesNV - path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 338 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 848 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -1111,132 +1228,460 @@ items:
example: [] syntax: - content: public static GLXVideoCaptureDeviceNV* EnumerateVideoCaptureDevicesNV(DisplayPtr dpy, int screen, ref int nelements) + content: public static GLXVideoCaptureDeviceNV* EnumerateVideoCaptureDevicesNV(DisplayPtr dpy, int screen, Span nelements) parameters: - id: dpy type: OpenTK.Graphics.Glx.DisplayPtr - id: screen type: System.Int32 - id: nelements - type: System.Int32 + type: System.Span{System.Int32} return: type: OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV* - content.vb: Public Shared Function EnumerateVideoCaptureDevicesNV(dpy As DisplayPtr, screen As Integer, nelements As Integer) As GLXVideoCaptureDeviceNV* + content.vb: Public Shared Function EnumerateVideoCaptureDevicesNV(dpy As DisplayPtr, screen As Integer, nelements As Span(Of Integer)) As GLXVideoCaptureDeviceNV* overload: OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoCaptureDevicesNV* - nameWithType.vb: Glx.NV.EnumerateVideoCaptureDevicesNV(DisplayPtr, Integer, Integer) - fullName.vb: OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoCaptureDevicesNV(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer) - name.vb: EnumerateVideoCaptureDevicesNV(DisplayPtr, Integer, Integer) -- uid: OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoDevicesNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32@) - commentId: M:OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoDevicesNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32@) - id: EnumerateVideoDevicesNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32@) + nameWithType.vb: Glx.NV.EnumerateVideoCaptureDevicesNV(DisplayPtr, Integer, Span(Of Integer)) + fullName.vb: OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoCaptureDevicesNV(OpenTK.Graphics.Glx.DisplayPtr, Integer, System.Span(Of Integer)) + name.vb: EnumerateVideoCaptureDevicesNV(DisplayPtr, Integer, Span(Of Integer)) +- uid: OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoCaptureDevicesNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32[]) + commentId: M:OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoCaptureDevicesNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32[]) + id: EnumerateVideoCaptureDevicesNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32[]) parent: OpenTK.Graphics.Glx.Glx.NV langs: - csharp - vb - name: EnumerateVideoDevicesNV(DisplayPtr, int, ref int) - nameWithType: Glx.NV.EnumerateVideoDevicesNV(DisplayPtr, int, ref int) - fullName: OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoDevicesNV(OpenTK.Graphics.Glx.DisplayPtr, int, ref int) + name: EnumerateVideoCaptureDevicesNV(DisplayPtr, int, int[]) + nameWithType: Glx.NV.EnumerateVideoCaptureDevicesNV(DisplayPtr, int, int[]) + fullName: OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoCaptureDevicesNV(OpenTK.Graphics.Glx.DisplayPtr, int, int[]) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: EnumerateVideoDevicesNV - path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 348 + id: EnumerateVideoCaptureDevicesNV + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 858 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx summary: >- - [requires: GLX_NV_present_video] + [requires: GLX_NV_video_capture] - [entry point: glXEnumerateVideoDevicesNV] + [entry point: glXEnumerateVideoCaptureDevicesNV]
example: [] syntax: - content: public static uint* EnumerateVideoDevicesNV(DisplayPtr dpy, int screen, ref int nelements) + content: public static GLXVideoCaptureDeviceNV* EnumerateVideoCaptureDevicesNV(DisplayPtr dpy, int screen, int[] nelements) parameters: - id: dpy type: OpenTK.Graphics.Glx.DisplayPtr - id: screen type: System.Int32 - id: nelements - type: System.Int32 + type: System.Int32[] return: - type: System.UInt32* - content.vb: Public Shared Function EnumerateVideoDevicesNV(dpy As DisplayPtr, screen As Integer, nelements As Integer) As UInteger* - overload: OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoDevicesNV* - nameWithType.vb: Glx.NV.EnumerateVideoDevicesNV(DisplayPtr, Integer, Integer) - fullName.vb: OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoDevicesNV(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer) - name.vb: EnumerateVideoDevicesNV(DisplayPtr, Integer, Integer) -- uid: OpenTK.Graphics.Glx.Glx.NV.GetVideoDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,OpenTK.Graphics.Glx.GLXVideoDeviceNV@) - commentId: M:OpenTK.Graphics.Glx.Glx.NV.GetVideoDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,OpenTK.Graphics.Glx.GLXVideoDeviceNV@) - id: GetVideoDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,OpenTK.Graphics.Glx.GLXVideoDeviceNV@) + type: OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV* + content.vb: Public Shared Function EnumerateVideoCaptureDevicesNV(dpy As DisplayPtr, screen As Integer, nelements As Integer()) As GLXVideoCaptureDeviceNV* + overload: OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoCaptureDevicesNV* + nameWithType.vb: Glx.NV.EnumerateVideoCaptureDevicesNV(DisplayPtr, Integer, Integer()) + fullName.vb: OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoCaptureDevicesNV(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer()) + name.vb: EnumerateVideoCaptureDevicesNV(DisplayPtr, Integer, Integer()) +- uid: OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoCaptureDevicesNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32@) + commentId: M:OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoCaptureDevicesNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32@) + id: EnumerateVideoCaptureDevicesNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32@) parent: OpenTK.Graphics.Glx.Glx.NV langs: - csharp - vb - name: GetVideoDeviceNV(DisplayPtr, int, int, ref GLXVideoDeviceNV) - nameWithType: Glx.NV.GetVideoDeviceNV(DisplayPtr, int, int, ref GLXVideoDeviceNV) - fullName: OpenTK.Graphics.Glx.Glx.NV.GetVideoDeviceNV(OpenTK.Graphics.Glx.DisplayPtr, int, int, ref OpenTK.Graphics.Glx.GLXVideoDeviceNV) + name: EnumerateVideoCaptureDevicesNV(DisplayPtr, int, ref int) + nameWithType: Glx.NV.EnumerateVideoCaptureDevicesNV(DisplayPtr, int, ref int) + fullName: OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoCaptureDevicesNV(OpenTK.Graphics.Glx.DisplayPtr, int, ref int) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: GetVideoDeviceNV - path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 358 + id: EnumerateVideoCaptureDevicesNV + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 868 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx summary: >- - [requires: GLX_NV_video_out] + [requires: GLX_NV_video_capture] - [entry point: glXGetVideoDeviceNV] + [entry point: glXEnumerateVideoCaptureDevicesNV]
example: [] syntax: - content: public static int GetVideoDeviceNV(DisplayPtr dpy, int screen, int numVideoDevices, ref GLXVideoDeviceNV pVideoDevice) + content: public static GLXVideoCaptureDeviceNV* EnumerateVideoCaptureDevicesNV(DisplayPtr dpy, int screen, ref int nelements) parameters: - id: dpy type: OpenTK.Graphics.Glx.DisplayPtr - id: screen type: System.Int32 - - id: numVideoDevices + - id: nelements type: System.Int32 - - id: pVideoDevice - type: OpenTK.Graphics.Glx.GLXVideoDeviceNV return: - type: System.Int32 - content.vb: Public Shared Function GetVideoDeviceNV(dpy As DisplayPtr, screen As Integer, numVideoDevices As Integer, pVideoDevice As GLXVideoDeviceNV) As Integer - overload: OpenTK.Graphics.Glx.Glx.NV.GetVideoDeviceNV* - nameWithType.vb: Glx.NV.GetVideoDeviceNV(DisplayPtr, Integer, Integer, GLXVideoDeviceNV) - fullName.vb: OpenTK.Graphics.Glx.Glx.NV.GetVideoDeviceNV(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer, OpenTK.Graphics.Glx.GLXVideoDeviceNV) - name.vb: GetVideoDeviceNV(DisplayPtr, Integer, Integer, GLXVideoDeviceNV) -- uid: OpenTK.Graphics.Glx.Glx.NV.GetVideoInfoNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,OpenTK.Graphics.Glx.GLXVideoDeviceNV,System.UInt64@,System.UInt64@) - commentId: M:OpenTK.Graphics.Glx.Glx.NV.GetVideoInfoNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,OpenTK.Graphics.Glx.GLXVideoDeviceNV,System.UInt64@,System.UInt64@) - id: GetVideoInfoNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,OpenTK.Graphics.Glx.GLXVideoDeviceNV,System.UInt64@,System.UInt64@) + type: OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV* + content.vb: Public Shared Function EnumerateVideoCaptureDevicesNV(dpy As DisplayPtr, screen As Integer, nelements As Integer) As GLXVideoCaptureDeviceNV* + overload: OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoCaptureDevicesNV* + nameWithType.vb: Glx.NV.EnumerateVideoCaptureDevicesNV(DisplayPtr, Integer, Integer) + fullName.vb: OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoCaptureDevicesNV(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer) + name.vb: EnumerateVideoCaptureDevicesNV(DisplayPtr, Integer, Integer) +- uid: OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoDevicesNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Span{System.Int32}) + commentId: M:OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoDevicesNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Span{System.Int32}) + id: EnumerateVideoDevicesNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Span{System.Int32}) parent: OpenTK.Graphics.Glx.Glx.NV langs: - csharp - vb - name: GetVideoInfoNV(DisplayPtr, int, GLXVideoDeviceNV, ref ulong, ref ulong) - nameWithType: Glx.NV.GetVideoInfoNV(DisplayPtr, int, GLXVideoDeviceNV, ref ulong, ref ulong) - fullName: OpenTK.Graphics.Glx.Glx.NV.GetVideoInfoNV(OpenTK.Graphics.Glx.DisplayPtr, int, OpenTK.Graphics.Glx.GLXVideoDeviceNV, ref ulong, ref ulong) + name: EnumerateVideoDevicesNV(DisplayPtr, int, Span) + nameWithType: Glx.NV.EnumerateVideoDevicesNV(DisplayPtr, int, Span) + fullName: OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoDevicesNV(OpenTK.Graphics.Glx.DisplayPtr, int, System.Span) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: GetVideoInfoNV - path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 368 + id: EnumerateVideoDevicesNV + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 878 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Glx + summary: >- + [requires: GLX_NV_present_video] + + [entry point: glXEnumerateVideoDevicesNV] + +
+ example: [] + syntax: + content: public static uint* EnumerateVideoDevicesNV(DisplayPtr dpy, int screen, Span nelements) + parameters: + - id: dpy + type: OpenTK.Graphics.Glx.DisplayPtr + - id: screen + type: System.Int32 + - id: nelements + type: System.Span{System.Int32} + return: + type: System.UInt32* + content.vb: Public Shared Function EnumerateVideoDevicesNV(dpy As DisplayPtr, screen As Integer, nelements As Span(Of Integer)) As UInteger* + overload: OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoDevicesNV* + nameWithType.vb: Glx.NV.EnumerateVideoDevicesNV(DisplayPtr, Integer, Span(Of Integer)) + fullName.vb: OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoDevicesNV(OpenTK.Graphics.Glx.DisplayPtr, Integer, System.Span(Of Integer)) + name.vb: EnumerateVideoDevicesNV(DisplayPtr, Integer, Span(Of Integer)) +- uid: OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoDevicesNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32[]) + commentId: M:OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoDevicesNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32[]) + id: EnumerateVideoDevicesNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32[]) + parent: OpenTK.Graphics.Glx.Glx.NV + langs: + - csharp + - vb + name: EnumerateVideoDevicesNV(DisplayPtr, int, int[]) + nameWithType: Glx.NV.EnumerateVideoDevicesNV(DisplayPtr, int, int[]) + fullName: OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoDevicesNV(OpenTK.Graphics.Glx.DisplayPtr, int, int[]) + type: Method + source: + id: EnumerateVideoDevicesNV + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 888 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Glx + summary: >- + [requires: GLX_NV_present_video] + + [entry point: glXEnumerateVideoDevicesNV] + +
+ example: [] + syntax: + content: public static uint* EnumerateVideoDevicesNV(DisplayPtr dpy, int screen, int[] nelements) + parameters: + - id: dpy + type: OpenTK.Graphics.Glx.DisplayPtr + - id: screen + type: System.Int32 + - id: nelements + type: System.Int32[] + return: + type: System.UInt32* + content.vb: Public Shared Function EnumerateVideoDevicesNV(dpy As DisplayPtr, screen As Integer, nelements As Integer()) As UInteger* + overload: OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoDevicesNV* + nameWithType.vb: Glx.NV.EnumerateVideoDevicesNV(DisplayPtr, Integer, Integer()) + fullName.vb: OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoDevicesNV(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer()) + name.vb: EnumerateVideoDevicesNV(DisplayPtr, Integer, Integer()) +- uid: OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoDevicesNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32@) + commentId: M:OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoDevicesNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32@) + id: EnumerateVideoDevicesNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32@) + parent: OpenTK.Graphics.Glx.Glx.NV + langs: + - csharp + - vb + name: EnumerateVideoDevicesNV(DisplayPtr, int, ref int) + nameWithType: Glx.NV.EnumerateVideoDevicesNV(DisplayPtr, int, ref int) + fullName: OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoDevicesNV(OpenTK.Graphics.Glx.DisplayPtr, int, ref int) + type: Method + source: + id: EnumerateVideoDevicesNV + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 898 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Glx + summary: >- + [requires: GLX_NV_present_video] + + [entry point: glXEnumerateVideoDevicesNV] + +
+ example: [] + syntax: + content: public static uint* EnumerateVideoDevicesNV(DisplayPtr dpy, int screen, ref int nelements) + parameters: + - id: dpy + type: OpenTK.Graphics.Glx.DisplayPtr + - id: screen + type: System.Int32 + - id: nelements + type: System.Int32 + return: + type: System.UInt32* + content.vb: Public Shared Function EnumerateVideoDevicesNV(dpy As DisplayPtr, screen As Integer, nelements As Integer) As UInteger* + overload: OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoDevicesNV* + nameWithType.vb: Glx.NV.EnumerateVideoDevicesNV(DisplayPtr, Integer, Integer) + fullName.vb: OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoDevicesNV(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer) + name.vb: EnumerateVideoDevicesNV(DisplayPtr, Integer, Integer) +- uid: OpenTK.Graphics.Glx.Glx.NV.GetVideoDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Span{OpenTK.Graphics.Glx.GLXVideoDeviceNV}) + commentId: M:OpenTK.Graphics.Glx.Glx.NV.GetVideoDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Span{OpenTK.Graphics.Glx.GLXVideoDeviceNV}) + id: GetVideoDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Span{OpenTK.Graphics.Glx.GLXVideoDeviceNV}) + parent: OpenTK.Graphics.Glx.Glx.NV + langs: + - csharp + - vb + name: GetVideoDeviceNV(DisplayPtr, int, int, Span) + nameWithType: Glx.NV.GetVideoDeviceNV(DisplayPtr, int, int, Span) + fullName: OpenTK.Graphics.Glx.Glx.NV.GetVideoDeviceNV(OpenTK.Graphics.Glx.DisplayPtr, int, int, System.Span) + type: Method + source: + id: GetVideoDeviceNV + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 908 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Glx + summary: >- + [requires: GLX_NV_video_out] + + [entry point: glXGetVideoDeviceNV] + +
+ example: [] + syntax: + content: public static int GetVideoDeviceNV(DisplayPtr dpy, int screen, int numVideoDevices, Span pVideoDevice) + parameters: + - id: dpy + type: OpenTK.Graphics.Glx.DisplayPtr + - id: screen + type: System.Int32 + - id: numVideoDevices + type: System.Int32 + - id: pVideoDevice + type: System.Span{OpenTK.Graphics.Glx.GLXVideoDeviceNV} + return: + type: System.Int32 + content.vb: Public Shared Function GetVideoDeviceNV(dpy As DisplayPtr, screen As Integer, numVideoDevices As Integer, pVideoDevice As Span(Of GLXVideoDeviceNV)) As Integer + overload: OpenTK.Graphics.Glx.Glx.NV.GetVideoDeviceNV* + nameWithType.vb: Glx.NV.GetVideoDeviceNV(DisplayPtr, Integer, Integer, Span(Of GLXVideoDeviceNV)) + fullName.vb: OpenTK.Graphics.Glx.Glx.NV.GetVideoDeviceNV(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer, System.Span(Of OpenTK.Graphics.Glx.GLXVideoDeviceNV)) + name.vb: GetVideoDeviceNV(DisplayPtr, Integer, Integer, Span(Of GLXVideoDeviceNV)) +- uid: OpenTK.Graphics.Glx.Glx.NV.GetVideoDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,OpenTK.Graphics.Glx.GLXVideoDeviceNV[]) + commentId: M:OpenTK.Graphics.Glx.Glx.NV.GetVideoDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,OpenTK.Graphics.Glx.GLXVideoDeviceNV[]) + id: GetVideoDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,OpenTK.Graphics.Glx.GLXVideoDeviceNV[]) + parent: OpenTK.Graphics.Glx.Glx.NV + langs: + - csharp + - vb + name: GetVideoDeviceNV(DisplayPtr, int, int, GLXVideoDeviceNV[]) + nameWithType: Glx.NV.GetVideoDeviceNV(DisplayPtr, int, int, GLXVideoDeviceNV[]) + fullName: OpenTK.Graphics.Glx.Glx.NV.GetVideoDeviceNV(OpenTK.Graphics.Glx.DisplayPtr, int, int, OpenTK.Graphics.Glx.GLXVideoDeviceNV[]) + type: Method + source: + id: GetVideoDeviceNV + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 918 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Glx + summary: >- + [requires: GLX_NV_video_out] + + [entry point: glXGetVideoDeviceNV] + +
+ example: [] + syntax: + content: public static int GetVideoDeviceNV(DisplayPtr dpy, int screen, int numVideoDevices, GLXVideoDeviceNV[] pVideoDevice) + parameters: + - id: dpy + type: OpenTK.Graphics.Glx.DisplayPtr + - id: screen + type: System.Int32 + - id: numVideoDevices + type: System.Int32 + - id: pVideoDevice + type: OpenTK.Graphics.Glx.GLXVideoDeviceNV[] + return: + type: System.Int32 + content.vb: Public Shared Function GetVideoDeviceNV(dpy As DisplayPtr, screen As Integer, numVideoDevices As Integer, pVideoDevice As GLXVideoDeviceNV()) As Integer + overload: OpenTK.Graphics.Glx.Glx.NV.GetVideoDeviceNV* + nameWithType.vb: Glx.NV.GetVideoDeviceNV(DisplayPtr, Integer, Integer, GLXVideoDeviceNV()) + fullName.vb: OpenTK.Graphics.Glx.Glx.NV.GetVideoDeviceNV(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer, OpenTK.Graphics.Glx.GLXVideoDeviceNV()) + name.vb: GetVideoDeviceNV(DisplayPtr, Integer, Integer, GLXVideoDeviceNV()) +- uid: OpenTK.Graphics.Glx.Glx.NV.GetVideoDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,OpenTK.Graphics.Glx.GLXVideoDeviceNV@) + commentId: M:OpenTK.Graphics.Glx.Glx.NV.GetVideoDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,OpenTK.Graphics.Glx.GLXVideoDeviceNV@) + id: GetVideoDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,OpenTK.Graphics.Glx.GLXVideoDeviceNV@) + parent: OpenTK.Graphics.Glx.Glx.NV + langs: + - csharp + - vb + name: GetVideoDeviceNV(DisplayPtr, int, int, ref GLXVideoDeviceNV) + nameWithType: Glx.NV.GetVideoDeviceNV(DisplayPtr, int, int, ref GLXVideoDeviceNV) + fullName: OpenTK.Graphics.Glx.Glx.NV.GetVideoDeviceNV(OpenTK.Graphics.Glx.DisplayPtr, int, int, ref OpenTK.Graphics.Glx.GLXVideoDeviceNV) + type: Method + source: + id: GetVideoDeviceNV + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 928 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Glx + summary: >- + [requires: GLX_NV_video_out] + + [entry point: glXGetVideoDeviceNV] + +
+ example: [] + syntax: + content: public static int GetVideoDeviceNV(DisplayPtr dpy, int screen, int numVideoDevices, ref GLXVideoDeviceNV pVideoDevice) + parameters: + - id: dpy + type: OpenTK.Graphics.Glx.DisplayPtr + - id: screen + type: System.Int32 + - id: numVideoDevices + type: System.Int32 + - id: pVideoDevice + type: OpenTK.Graphics.Glx.GLXVideoDeviceNV + return: + type: System.Int32 + content.vb: Public Shared Function GetVideoDeviceNV(dpy As DisplayPtr, screen As Integer, numVideoDevices As Integer, pVideoDevice As GLXVideoDeviceNV) As Integer + overload: OpenTK.Graphics.Glx.Glx.NV.GetVideoDeviceNV* + nameWithType.vb: Glx.NV.GetVideoDeviceNV(DisplayPtr, Integer, Integer, GLXVideoDeviceNV) + fullName.vb: OpenTK.Graphics.Glx.Glx.NV.GetVideoDeviceNV(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer, OpenTK.Graphics.Glx.GLXVideoDeviceNV) + name.vb: GetVideoDeviceNV(DisplayPtr, Integer, Integer, GLXVideoDeviceNV) +- uid: OpenTK.Graphics.Glx.Glx.NV.GetVideoInfoNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,OpenTK.Graphics.Glx.GLXVideoDeviceNV,System.Span{System.UInt64},System.Span{System.UInt64}) + commentId: M:OpenTK.Graphics.Glx.Glx.NV.GetVideoInfoNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,OpenTK.Graphics.Glx.GLXVideoDeviceNV,System.Span{System.UInt64},System.Span{System.UInt64}) + id: GetVideoInfoNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,OpenTK.Graphics.Glx.GLXVideoDeviceNV,System.Span{System.UInt64},System.Span{System.UInt64}) + parent: OpenTK.Graphics.Glx.Glx.NV + langs: + - csharp + - vb + name: GetVideoInfoNV(DisplayPtr, int, GLXVideoDeviceNV, Span, Span) + nameWithType: Glx.NV.GetVideoInfoNV(DisplayPtr, int, GLXVideoDeviceNV, Span, Span) + fullName: OpenTK.Graphics.Glx.Glx.NV.GetVideoInfoNV(OpenTK.Graphics.Glx.DisplayPtr, int, OpenTK.Graphics.Glx.GLXVideoDeviceNV, System.Span, System.Span) + type: Method + source: + id: GetVideoInfoNV + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 938 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Glx + summary: >- + [requires: GLX_NV_video_out] + + [entry point: glXGetVideoInfoNV] + +
+ example: [] + syntax: + content: public static int GetVideoInfoNV(DisplayPtr dpy, int screen, GLXVideoDeviceNV VideoDevice, Span pulCounterOutputPbuffer, Span pulCounterOutputVideo) + parameters: + - id: dpy + type: OpenTK.Graphics.Glx.DisplayPtr + - id: screen + type: System.Int32 + - id: VideoDevice + type: OpenTK.Graphics.Glx.GLXVideoDeviceNV + - id: pulCounterOutputPbuffer + type: System.Span{System.UInt64} + - id: pulCounterOutputVideo + type: System.Span{System.UInt64} + return: + type: System.Int32 + content.vb: Public Shared Function GetVideoInfoNV(dpy As DisplayPtr, screen As Integer, VideoDevice As GLXVideoDeviceNV, pulCounterOutputPbuffer As Span(Of ULong), pulCounterOutputVideo As Span(Of ULong)) As Integer + overload: OpenTK.Graphics.Glx.Glx.NV.GetVideoInfoNV* + nameWithType.vb: Glx.NV.GetVideoInfoNV(DisplayPtr, Integer, GLXVideoDeviceNV, Span(Of ULong), Span(Of ULong)) + fullName.vb: OpenTK.Graphics.Glx.Glx.NV.GetVideoInfoNV(OpenTK.Graphics.Glx.DisplayPtr, Integer, OpenTK.Graphics.Glx.GLXVideoDeviceNV, System.Span(Of ULong), System.Span(Of ULong)) + name.vb: GetVideoInfoNV(DisplayPtr, Integer, GLXVideoDeviceNV, Span(Of ULong), Span(Of ULong)) +- uid: OpenTK.Graphics.Glx.Glx.NV.GetVideoInfoNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,OpenTK.Graphics.Glx.GLXVideoDeviceNV,System.UInt64[],System.UInt64[]) + commentId: M:OpenTK.Graphics.Glx.Glx.NV.GetVideoInfoNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,OpenTK.Graphics.Glx.GLXVideoDeviceNV,System.UInt64[],System.UInt64[]) + id: GetVideoInfoNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,OpenTK.Graphics.Glx.GLXVideoDeviceNV,System.UInt64[],System.UInt64[]) + parent: OpenTK.Graphics.Glx.Glx.NV + langs: + - csharp + - vb + name: GetVideoInfoNV(DisplayPtr, int, GLXVideoDeviceNV, ulong[], ulong[]) + nameWithType: Glx.NV.GetVideoInfoNV(DisplayPtr, int, GLXVideoDeviceNV, ulong[], ulong[]) + fullName: OpenTK.Graphics.Glx.Glx.NV.GetVideoInfoNV(OpenTK.Graphics.Glx.DisplayPtr, int, OpenTK.Graphics.Glx.GLXVideoDeviceNV, ulong[], ulong[]) + type: Method + source: + id: GetVideoInfoNV + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 951 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Glx + summary: >- + [requires: GLX_NV_video_out] + + [entry point: glXGetVideoInfoNV] + +
+ example: [] + syntax: + content: public static int GetVideoInfoNV(DisplayPtr dpy, int screen, GLXVideoDeviceNV VideoDevice, ulong[] pulCounterOutputPbuffer, ulong[] pulCounterOutputVideo) + parameters: + - id: dpy + type: OpenTK.Graphics.Glx.DisplayPtr + - id: screen + type: System.Int32 + - id: VideoDevice + type: OpenTK.Graphics.Glx.GLXVideoDeviceNV + - id: pulCounterOutputPbuffer + type: System.UInt64[] + - id: pulCounterOutputVideo + type: System.UInt64[] + return: + type: System.Int32 + content.vb: Public Shared Function GetVideoInfoNV(dpy As DisplayPtr, screen As Integer, VideoDevice As GLXVideoDeviceNV, pulCounterOutputPbuffer As ULong(), pulCounterOutputVideo As ULong()) As Integer + overload: OpenTK.Graphics.Glx.Glx.NV.GetVideoInfoNV* + nameWithType.vb: Glx.NV.GetVideoInfoNV(DisplayPtr, Integer, GLXVideoDeviceNV, ULong(), ULong()) + fullName.vb: OpenTK.Graphics.Glx.Glx.NV.GetVideoInfoNV(OpenTK.Graphics.Glx.DisplayPtr, Integer, OpenTK.Graphics.Glx.GLXVideoDeviceNV, ULong(), ULong()) + name.vb: GetVideoInfoNV(DisplayPtr, Integer, GLXVideoDeviceNV, ULong(), ULong()) +- uid: OpenTK.Graphics.Glx.Glx.NV.GetVideoInfoNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,OpenTK.Graphics.Glx.GLXVideoDeviceNV,System.UInt64@,System.UInt64@) + commentId: M:OpenTK.Graphics.Glx.Glx.NV.GetVideoInfoNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,OpenTK.Graphics.Glx.GLXVideoDeviceNV,System.UInt64@,System.UInt64@) + id: GetVideoInfoNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,OpenTK.Graphics.Glx.GLXVideoDeviceNV,System.UInt64@,System.UInt64@) + parent: OpenTK.Graphics.Glx.Glx.NV + langs: + - csharp + - vb + name: GetVideoInfoNV(DisplayPtr, int, GLXVideoDeviceNV, ref ulong, ref ulong) + nameWithType: Glx.NV.GetVideoInfoNV(DisplayPtr, int, GLXVideoDeviceNV, ref ulong, ref ulong) + fullName: OpenTK.Graphics.Glx.Glx.NV.GetVideoInfoNV(OpenTK.Graphics.Glx.DisplayPtr, int, OpenTK.Graphics.Glx.GLXVideoDeviceNV, ref ulong, ref ulong) + type: Method + source: + id: GetVideoInfoNV + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 964 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -1267,6 +1712,88 @@ items: nameWithType.vb: Glx.NV.GetVideoInfoNV(DisplayPtr, Integer, GLXVideoDeviceNV, ULong, ULong) fullName.vb: OpenTK.Graphics.Glx.Glx.NV.GetVideoInfoNV(OpenTK.Graphics.Glx.DisplayPtr, Integer, OpenTK.Graphics.Glx.GLXVideoDeviceNV, ULong, ULong) name.vb: GetVideoInfoNV(DisplayPtr, Integer, GLXVideoDeviceNV, ULong, ULong) +- uid: OpenTK.Graphics.Glx.Glx.NV.QueryFrameCountNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Span{System.UInt32}) + commentId: M:OpenTK.Graphics.Glx.Glx.NV.QueryFrameCountNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Span{System.UInt32}) + id: QueryFrameCountNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Span{System.UInt32}) + parent: OpenTK.Graphics.Glx.Glx.NV + langs: + - csharp + - vb + name: QueryFrameCountNV(DisplayPtr, int, Span) + nameWithType: Glx.NV.QueryFrameCountNV(DisplayPtr, int, Span) + fullName: OpenTK.Graphics.Glx.Glx.NV.QueryFrameCountNV(OpenTK.Graphics.Glx.DisplayPtr, int, System.Span) + type: Method + source: + id: QueryFrameCountNV + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 975 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Glx + summary: >- + [requires: GLX_NV_swap_group] + + [entry point: glXQueryFrameCountNV] + +
+ example: [] + syntax: + content: public static bool QueryFrameCountNV(DisplayPtr dpy, int screen, Span count) + parameters: + - id: dpy + type: OpenTK.Graphics.Glx.DisplayPtr + - id: screen + type: System.Int32 + - id: count + type: System.Span{System.UInt32} + return: + type: System.Boolean + content.vb: Public Shared Function QueryFrameCountNV(dpy As DisplayPtr, screen As Integer, count As Span(Of UInteger)) As Boolean + overload: OpenTK.Graphics.Glx.Glx.NV.QueryFrameCountNV* + nameWithType.vb: Glx.NV.QueryFrameCountNV(DisplayPtr, Integer, Span(Of UInteger)) + fullName.vb: OpenTK.Graphics.Glx.Glx.NV.QueryFrameCountNV(OpenTK.Graphics.Glx.DisplayPtr, Integer, System.Span(Of UInteger)) + name.vb: QueryFrameCountNV(DisplayPtr, Integer, Span(Of UInteger)) +- uid: OpenTK.Graphics.Glx.Glx.NV.QueryFrameCountNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.UInt32[]) + commentId: M:OpenTK.Graphics.Glx.Glx.NV.QueryFrameCountNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.UInt32[]) + id: QueryFrameCountNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.UInt32[]) + parent: OpenTK.Graphics.Glx.Glx.NV + langs: + - csharp + - vb + name: QueryFrameCountNV(DisplayPtr, int, uint[]) + nameWithType: Glx.NV.QueryFrameCountNV(DisplayPtr, int, uint[]) + fullName: OpenTK.Graphics.Glx.Glx.NV.QueryFrameCountNV(OpenTK.Graphics.Glx.DisplayPtr, int, uint[]) + type: Method + source: + id: QueryFrameCountNV + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 985 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Glx + summary: >- + [requires: GLX_NV_swap_group] + + [entry point: glXQueryFrameCountNV] + +
+ example: [] + syntax: + content: public static bool QueryFrameCountNV(DisplayPtr dpy, int screen, uint[] count) + parameters: + - id: dpy + type: OpenTK.Graphics.Glx.DisplayPtr + - id: screen + type: System.Int32 + - id: count + type: System.UInt32[] + return: + type: System.Boolean + content.vb: Public Shared Function QueryFrameCountNV(dpy As DisplayPtr, screen As Integer, count As UInteger()) As Boolean + overload: OpenTK.Graphics.Glx.Glx.NV.QueryFrameCountNV* + nameWithType.vb: Glx.NV.QueryFrameCountNV(DisplayPtr, Integer, UInteger()) + fullName.vb: OpenTK.Graphics.Glx.Glx.NV.QueryFrameCountNV(OpenTK.Graphics.Glx.DisplayPtr, Integer, UInteger()) + name.vb: QueryFrameCountNV(DisplayPtr, Integer, UInteger()) - uid: OpenTK.Graphics.Glx.Glx.NV.QueryFrameCountNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.UInt32@) commentId: M:OpenTK.Graphics.Glx.Glx.NV.QueryFrameCountNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.UInt32@) id: QueryFrameCountNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.UInt32@) @@ -1279,13 +1806,9 @@ items: fullName: OpenTK.Graphics.Glx.Glx.NV.QueryFrameCountNV(OpenTK.Graphics.Glx.DisplayPtr, int, ref uint) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: QueryFrameCountNV - path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 379 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 995 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -1312,6 +1835,92 @@ items: nameWithType.vb: Glx.NV.QueryFrameCountNV(DisplayPtr, Integer, UInteger) fullName.vb: OpenTK.Graphics.Glx.Glx.NV.QueryFrameCountNV(OpenTK.Graphics.Glx.DisplayPtr, Integer, UInteger) name.vb: QueryFrameCountNV(DisplayPtr, Integer, UInteger) +- uid: OpenTK.Graphics.Glx.Glx.NV.QueryMaxSwapGroupsNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Span{System.UInt32},System.Span{System.UInt32}) + commentId: M:OpenTK.Graphics.Glx.Glx.NV.QueryMaxSwapGroupsNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Span{System.UInt32},System.Span{System.UInt32}) + id: QueryMaxSwapGroupsNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Span{System.UInt32},System.Span{System.UInt32}) + parent: OpenTK.Graphics.Glx.Glx.NV + langs: + - csharp + - vb + name: QueryMaxSwapGroupsNV(DisplayPtr, int, Span, Span) + nameWithType: Glx.NV.QueryMaxSwapGroupsNV(DisplayPtr, int, Span, Span) + fullName: OpenTK.Graphics.Glx.Glx.NV.QueryMaxSwapGroupsNV(OpenTK.Graphics.Glx.DisplayPtr, int, System.Span, System.Span) + type: Method + source: + id: QueryMaxSwapGroupsNV + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 1005 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Glx + summary: >- + [requires: GLX_NV_swap_group] + + [entry point: glXQueryMaxSwapGroupsNV] + +
+ example: [] + syntax: + content: public static bool QueryMaxSwapGroupsNV(DisplayPtr dpy, int screen, Span maxGroups, Span maxBarriers) + parameters: + - id: dpy + type: OpenTK.Graphics.Glx.DisplayPtr + - id: screen + type: System.Int32 + - id: maxGroups + type: System.Span{System.UInt32} + - id: maxBarriers + type: System.Span{System.UInt32} + return: + type: System.Boolean + content.vb: Public Shared Function QueryMaxSwapGroupsNV(dpy As DisplayPtr, screen As Integer, maxGroups As Span(Of UInteger), maxBarriers As Span(Of UInteger)) As Boolean + overload: OpenTK.Graphics.Glx.Glx.NV.QueryMaxSwapGroupsNV* + nameWithType.vb: Glx.NV.QueryMaxSwapGroupsNV(DisplayPtr, Integer, Span(Of UInteger), Span(Of UInteger)) + fullName.vb: OpenTK.Graphics.Glx.Glx.NV.QueryMaxSwapGroupsNV(OpenTK.Graphics.Glx.DisplayPtr, Integer, System.Span(Of UInteger), System.Span(Of UInteger)) + name.vb: QueryMaxSwapGroupsNV(DisplayPtr, Integer, Span(Of UInteger), Span(Of UInteger)) +- uid: OpenTK.Graphics.Glx.Glx.NV.QueryMaxSwapGroupsNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.UInt32[],System.UInt32[]) + commentId: M:OpenTK.Graphics.Glx.Glx.NV.QueryMaxSwapGroupsNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.UInt32[],System.UInt32[]) + id: QueryMaxSwapGroupsNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.UInt32[],System.UInt32[]) + parent: OpenTK.Graphics.Glx.Glx.NV + langs: + - csharp + - vb + name: QueryMaxSwapGroupsNV(DisplayPtr, int, uint[], uint[]) + nameWithType: Glx.NV.QueryMaxSwapGroupsNV(DisplayPtr, int, uint[], uint[]) + fullName: OpenTK.Graphics.Glx.Glx.NV.QueryMaxSwapGroupsNV(OpenTK.Graphics.Glx.DisplayPtr, int, uint[], uint[]) + type: Method + source: + id: QueryMaxSwapGroupsNV + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 1018 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Glx + summary: >- + [requires: GLX_NV_swap_group] + + [entry point: glXQueryMaxSwapGroupsNV] + +
+ example: [] + syntax: + content: public static bool QueryMaxSwapGroupsNV(DisplayPtr dpy, int screen, uint[] maxGroups, uint[] maxBarriers) + parameters: + - id: dpy + type: OpenTK.Graphics.Glx.DisplayPtr + - id: screen + type: System.Int32 + - id: maxGroups + type: System.UInt32[] + - id: maxBarriers + type: System.UInt32[] + return: + type: System.Boolean + content.vb: Public Shared Function QueryMaxSwapGroupsNV(dpy As DisplayPtr, screen As Integer, maxGroups As UInteger(), maxBarriers As UInteger()) As Boolean + overload: OpenTK.Graphics.Glx.Glx.NV.QueryMaxSwapGroupsNV* + nameWithType.vb: Glx.NV.QueryMaxSwapGroupsNV(DisplayPtr, Integer, UInteger(), UInteger()) + fullName.vb: OpenTK.Graphics.Glx.Glx.NV.QueryMaxSwapGroupsNV(OpenTK.Graphics.Glx.DisplayPtr, Integer, UInteger(), UInteger()) + name.vb: QueryMaxSwapGroupsNV(DisplayPtr, Integer, UInteger(), UInteger()) - uid: OpenTK.Graphics.Glx.Glx.NV.QueryMaxSwapGroupsNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.UInt32@,System.UInt32@) commentId: M:OpenTK.Graphics.Glx.Glx.NV.QueryMaxSwapGroupsNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.UInt32@,System.UInt32@) id: QueryMaxSwapGroupsNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.UInt32@,System.UInt32@) @@ -1324,13 +1933,9 @@ items: fullName: OpenTK.Graphics.Glx.Glx.NV.QueryMaxSwapGroupsNV(OpenTK.Graphics.Glx.DisplayPtr, int, ref uint, ref uint) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: QueryMaxSwapGroupsNV - path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 389 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 1031 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -1348,64 +1953,232 @@ items: type: OpenTK.Graphics.Glx.DisplayPtr - id: screen type: System.Int32 - - id: maxGroups - type: System.UInt32 - - id: maxBarriers - type: System.UInt32 + - id: maxGroups + type: System.UInt32 + - id: maxBarriers + type: System.UInt32 + return: + type: System.Boolean + content.vb: Public Shared Function QueryMaxSwapGroupsNV(dpy As DisplayPtr, screen As Integer, maxGroups As UInteger, maxBarriers As UInteger) As Boolean + overload: OpenTK.Graphics.Glx.Glx.NV.QueryMaxSwapGroupsNV* + nameWithType.vb: Glx.NV.QueryMaxSwapGroupsNV(DisplayPtr, Integer, UInteger, UInteger) + fullName.vb: OpenTK.Graphics.Glx.Glx.NV.QueryMaxSwapGroupsNV(OpenTK.Graphics.Glx.DisplayPtr, Integer, UInteger, UInteger) + name.vb: QueryMaxSwapGroupsNV(DisplayPtr, Integer, UInteger, UInteger) +- uid: OpenTK.Graphics.Glx.Glx.NV.QuerySwapGroupNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Span{System.UInt32},System.Span{System.UInt32}) + commentId: M:OpenTK.Graphics.Glx.Glx.NV.QuerySwapGroupNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Span{System.UInt32},System.Span{System.UInt32}) + id: QuerySwapGroupNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Span{System.UInt32},System.Span{System.UInt32}) + parent: OpenTK.Graphics.Glx.Glx.NV + langs: + - csharp + - vb + name: QuerySwapGroupNV(DisplayPtr, GLXDrawable, Span, Span) + nameWithType: Glx.NV.QuerySwapGroupNV(DisplayPtr, GLXDrawable, Span, Span) + fullName: OpenTK.Graphics.Glx.Glx.NV.QuerySwapGroupNV(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, System.Span, System.Span) + type: Method + source: + id: QuerySwapGroupNV + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 1042 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Glx + summary: >- + [requires: GLX_NV_swap_group] + + [entry point: glXQuerySwapGroupNV] + +
+ example: [] + syntax: + content: public static bool QuerySwapGroupNV(DisplayPtr dpy, GLXDrawable drawable, Span group, Span barrier) + parameters: + - id: dpy + type: OpenTK.Graphics.Glx.DisplayPtr + - id: drawable + type: OpenTK.Graphics.Glx.GLXDrawable + - id: group + type: System.Span{System.UInt32} + - id: barrier + type: System.Span{System.UInt32} + return: + type: System.Boolean + content.vb: Public Shared Function QuerySwapGroupNV(dpy As DisplayPtr, drawable As GLXDrawable, group As Span(Of UInteger), barrier As Span(Of UInteger)) As Boolean + overload: OpenTK.Graphics.Glx.Glx.NV.QuerySwapGroupNV* + nameWithType.vb: Glx.NV.QuerySwapGroupNV(DisplayPtr, GLXDrawable, Span(Of UInteger), Span(Of UInteger)) + fullName.vb: OpenTK.Graphics.Glx.Glx.NV.QuerySwapGroupNV(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, System.Span(Of UInteger), System.Span(Of UInteger)) + name.vb: QuerySwapGroupNV(DisplayPtr, GLXDrawable, Span(Of UInteger), Span(Of UInteger)) +- uid: OpenTK.Graphics.Glx.Glx.NV.QuerySwapGroupNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.UInt32[],System.UInt32[]) + commentId: M:OpenTK.Graphics.Glx.Glx.NV.QuerySwapGroupNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.UInt32[],System.UInt32[]) + id: QuerySwapGroupNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.UInt32[],System.UInt32[]) + parent: OpenTK.Graphics.Glx.Glx.NV + langs: + - csharp + - vb + name: QuerySwapGroupNV(DisplayPtr, GLXDrawable, uint[], uint[]) + nameWithType: Glx.NV.QuerySwapGroupNV(DisplayPtr, GLXDrawable, uint[], uint[]) + fullName: OpenTK.Graphics.Glx.Glx.NV.QuerySwapGroupNV(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, uint[], uint[]) + type: Method + source: + id: QuerySwapGroupNV + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 1055 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Glx + summary: >- + [requires: GLX_NV_swap_group] + + [entry point: glXQuerySwapGroupNV] + +
+ example: [] + syntax: + content: public static bool QuerySwapGroupNV(DisplayPtr dpy, GLXDrawable drawable, uint[] group, uint[] barrier) + parameters: + - id: dpy + type: OpenTK.Graphics.Glx.DisplayPtr + - id: drawable + type: OpenTK.Graphics.Glx.GLXDrawable + - id: group + type: System.UInt32[] + - id: barrier + type: System.UInt32[] + return: + type: System.Boolean + content.vb: Public Shared Function QuerySwapGroupNV(dpy As DisplayPtr, drawable As GLXDrawable, group As UInteger(), barrier As UInteger()) As Boolean + overload: OpenTK.Graphics.Glx.Glx.NV.QuerySwapGroupNV* + nameWithType.vb: Glx.NV.QuerySwapGroupNV(DisplayPtr, GLXDrawable, UInteger(), UInteger()) + fullName.vb: OpenTK.Graphics.Glx.Glx.NV.QuerySwapGroupNV(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, UInteger(), UInteger()) + name.vb: QuerySwapGroupNV(DisplayPtr, GLXDrawable, UInteger(), UInteger()) +- uid: OpenTK.Graphics.Glx.Glx.NV.QuerySwapGroupNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.UInt32@,System.UInt32@) + commentId: M:OpenTK.Graphics.Glx.Glx.NV.QuerySwapGroupNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.UInt32@,System.UInt32@) + id: QuerySwapGroupNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.UInt32@,System.UInt32@) + parent: OpenTK.Graphics.Glx.Glx.NV + langs: + - csharp + - vb + name: QuerySwapGroupNV(DisplayPtr, GLXDrawable, ref uint, ref uint) + nameWithType: Glx.NV.QuerySwapGroupNV(DisplayPtr, GLXDrawable, ref uint, ref uint) + fullName: OpenTK.Graphics.Glx.Glx.NV.QuerySwapGroupNV(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, ref uint, ref uint) + type: Method + source: + id: QuerySwapGroupNV + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 1068 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Glx + summary: >- + [requires: GLX_NV_swap_group] + + [entry point: glXQuerySwapGroupNV] + +
+ example: [] + syntax: + content: public static bool QuerySwapGroupNV(DisplayPtr dpy, GLXDrawable drawable, ref uint group, ref uint barrier) + parameters: + - id: dpy + type: OpenTK.Graphics.Glx.DisplayPtr + - id: drawable + type: OpenTK.Graphics.Glx.GLXDrawable + - id: group + type: System.UInt32 + - id: barrier + type: System.UInt32 + return: + type: System.Boolean + content.vb: Public Shared Function QuerySwapGroupNV(dpy As DisplayPtr, drawable As GLXDrawable, group As UInteger, barrier As UInteger) As Boolean + overload: OpenTK.Graphics.Glx.Glx.NV.QuerySwapGroupNV* + nameWithType.vb: Glx.NV.QuerySwapGroupNV(DisplayPtr, GLXDrawable, UInteger, UInteger) + fullName.vb: OpenTK.Graphics.Glx.Glx.NV.QuerySwapGroupNV(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, UInteger, UInteger) + name.vb: QuerySwapGroupNV(DisplayPtr, GLXDrawable, UInteger, UInteger) +- uid: OpenTK.Graphics.Glx.Glx.NV.QueryVideoCaptureDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV,System.Int32,System.Span{System.Int32}) + commentId: M:OpenTK.Graphics.Glx.Glx.NV.QueryVideoCaptureDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV,System.Int32,System.Span{System.Int32}) + id: QueryVideoCaptureDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV,System.Int32,System.Span{System.Int32}) + parent: OpenTK.Graphics.Glx.Glx.NV + langs: + - csharp + - vb + name: QueryVideoCaptureDeviceNV(DisplayPtr, GLXVideoCaptureDeviceNV, int, Span) + nameWithType: Glx.NV.QueryVideoCaptureDeviceNV(DisplayPtr, GLXVideoCaptureDeviceNV, int, Span) + fullName: OpenTK.Graphics.Glx.Glx.NV.QueryVideoCaptureDeviceNV(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV, int, System.Span) + type: Method + source: + id: QueryVideoCaptureDeviceNV + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 1079 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Glx + summary: >- + [requires: GLX_NV_video_capture] + + [entry point: glXQueryVideoCaptureDeviceNV] + +
+ example: [] + syntax: + content: public static int QueryVideoCaptureDeviceNV(DisplayPtr dpy, GLXVideoCaptureDeviceNV device, int attribute, Span value) + parameters: + - id: dpy + type: OpenTK.Graphics.Glx.DisplayPtr + - id: device + type: OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV + - id: attribute + type: System.Int32 + - id: value + type: System.Span{System.Int32} return: - type: System.Boolean - content.vb: Public Shared Function QueryMaxSwapGroupsNV(dpy As DisplayPtr, screen As Integer, maxGroups As UInteger, maxBarriers As UInteger) As Boolean - overload: OpenTK.Graphics.Glx.Glx.NV.QueryMaxSwapGroupsNV* - nameWithType.vb: Glx.NV.QueryMaxSwapGroupsNV(DisplayPtr, Integer, UInteger, UInteger) - fullName.vb: OpenTK.Graphics.Glx.Glx.NV.QueryMaxSwapGroupsNV(OpenTK.Graphics.Glx.DisplayPtr, Integer, UInteger, UInteger) - name.vb: QueryMaxSwapGroupsNV(DisplayPtr, Integer, UInteger, UInteger) -- uid: OpenTK.Graphics.Glx.Glx.NV.QuerySwapGroupNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.UInt32@,System.UInt32@) - commentId: M:OpenTK.Graphics.Glx.Glx.NV.QuerySwapGroupNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.UInt32@,System.UInt32@) - id: QuerySwapGroupNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.UInt32@,System.UInt32@) + type: System.Int32 + content.vb: Public Shared Function QueryVideoCaptureDeviceNV(dpy As DisplayPtr, device As GLXVideoCaptureDeviceNV, attribute As Integer, value As Span(Of Integer)) As Integer + overload: OpenTK.Graphics.Glx.Glx.NV.QueryVideoCaptureDeviceNV* + nameWithType.vb: Glx.NV.QueryVideoCaptureDeviceNV(DisplayPtr, GLXVideoCaptureDeviceNV, Integer, Span(Of Integer)) + fullName.vb: OpenTK.Graphics.Glx.Glx.NV.QueryVideoCaptureDeviceNV(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV, Integer, System.Span(Of Integer)) + name.vb: QueryVideoCaptureDeviceNV(DisplayPtr, GLXVideoCaptureDeviceNV, Integer, Span(Of Integer)) +- uid: OpenTK.Graphics.Glx.Glx.NV.QueryVideoCaptureDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV,System.Int32,System.Int32[]) + commentId: M:OpenTK.Graphics.Glx.Glx.NV.QueryVideoCaptureDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV,System.Int32,System.Int32[]) + id: QueryVideoCaptureDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV,System.Int32,System.Int32[]) parent: OpenTK.Graphics.Glx.Glx.NV langs: - csharp - vb - name: QuerySwapGroupNV(DisplayPtr, GLXDrawable, ref uint, ref uint) - nameWithType: Glx.NV.QuerySwapGroupNV(DisplayPtr, GLXDrawable, ref uint, ref uint) - fullName: OpenTK.Graphics.Glx.Glx.NV.QuerySwapGroupNV(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, ref uint, ref uint) + name: QueryVideoCaptureDeviceNV(DisplayPtr, GLXVideoCaptureDeviceNV, int, int[]) + nameWithType: Glx.NV.QueryVideoCaptureDeviceNV(DisplayPtr, GLXVideoCaptureDeviceNV, int, int[]) + fullName: OpenTK.Graphics.Glx.Glx.NV.QueryVideoCaptureDeviceNV(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV, int, int[]) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: QuerySwapGroupNV - path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 400 + id: QueryVideoCaptureDeviceNV + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 1089 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx summary: >- - [requires: GLX_NV_swap_group] + [requires: GLX_NV_video_capture] - [entry point: glXQuerySwapGroupNV] + [entry point: glXQueryVideoCaptureDeviceNV]
example: [] syntax: - content: public static bool QuerySwapGroupNV(DisplayPtr dpy, GLXDrawable drawable, ref uint group, ref uint barrier) + content: public static int QueryVideoCaptureDeviceNV(DisplayPtr dpy, GLXVideoCaptureDeviceNV device, int attribute, int[] value) parameters: - id: dpy type: OpenTK.Graphics.Glx.DisplayPtr - - id: drawable - type: OpenTK.Graphics.Glx.GLXDrawable - - id: group - type: System.UInt32 - - id: barrier - type: System.UInt32 + - id: device + type: OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV + - id: attribute + type: System.Int32 + - id: value + type: System.Int32[] return: - type: System.Boolean - content.vb: Public Shared Function QuerySwapGroupNV(dpy As DisplayPtr, drawable As GLXDrawable, group As UInteger, barrier As UInteger) As Boolean - overload: OpenTK.Graphics.Glx.Glx.NV.QuerySwapGroupNV* - nameWithType.vb: Glx.NV.QuerySwapGroupNV(DisplayPtr, GLXDrawable, UInteger, UInteger) - fullName.vb: OpenTK.Graphics.Glx.Glx.NV.QuerySwapGroupNV(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, UInteger, UInteger) - name.vb: QuerySwapGroupNV(DisplayPtr, GLXDrawable, UInteger, UInteger) + type: System.Int32 + content.vb: Public Shared Function QueryVideoCaptureDeviceNV(dpy As DisplayPtr, device As GLXVideoCaptureDeviceNV, attribute As Integer, value As Integer()) As Integer + overload: OpenTK.Graphics.Glx.Glx.NV.QueryVideoCaptureDeviceNV* + nameWithType.vb: Glx.NV.QueryVideoCaptureDeviceNV(DisplayPtr, GLXVideoCaptureDeviceNV, Integer, Integer()) + fullName.vb: OpenTK.Graphics.Glx.Glx.NV.QueryVideoCaptureDeviceNV(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV, Integer, Integer()) + name.vb: QueryVideoCaptureDeviceNV(DisplayPtr, GLXVideoCaptureDeviceNV, Integer, Integer()) - uid: OpenTK.Graphics.Glx.Glx.NV.QueryVideoCaptureDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV,System.Int32,System.Int32@) commentId: M:OpenTK.Graphics.Glx.Glx.NV.QueryVideoCaptureDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV,System.Int32,System.Int32@) id: QueryVideoCaptureDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV,System.Int32,System.Int32@) @@ -1418,13 +2191,9 @@ items: fullName: OpenTK.Graphics.Glx.Glx.NV.QueryVideoCaptureDeviceNV(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV, int, ref int) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: QueryVideoCaptureDeviceNV - path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 411 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 1099 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -1453,6 +2222,96 @@ items: nameWithType.vb: Glx.NV.QueryVideoCaptureDeviceNV(DisplayPtr, GLXVideoCaptureDeviceNV, Integer, Integer) fullName.vb: OpenTK.Graphics.Glx.Glx.NV.QueryVideoCaptureDeviceNV(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV, Integer, Integer) name.vb: QueryVideoCaptureDeviceNV(DisplayPtr, GLXVideoCaptureDeviceNV, Integer, Integer) +- uid: OpenTK.Graphics.Glx.Glx.NV.SendPbufferToVideoNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXPbuffer,System.Int32,System.Span{System.UInt64},System.Boolean) + commentId: M:OpenTK.Graphics.Glx.Glx.NV.SendPbufferToVideoNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXPbuffer,System.Int32,System.Span{System.UInt64},System.Boolean) + id: SendPbufferToVideoNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXPbuffer,System.Int32,System.Span{System.UInt64},System.Boolean) + parent: OpenTK.Graphics.Glx.Glx.NV + langs: + - csharp + - vb + name: SendPbufferToVideoNV(DisplayPtr, GLXPbuffer, int, Span, bool) + nameWithType: Glx.NV.SendPbufferToVideoNV(DisplayPtr, GLXPbuffer, int, Span, bool) + fullName: OpenTK.Graphics.Glx.Glx.NV.SendPbufferToVideoNV(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXPbuffer, int, System.Span, bool) + type: Method + source: + id: SendPbufferToVideoNV + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 1109 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Glx + summary: >- + [requires: GLX_NV_video_out] + + [entry point: glXSendPbufferToVideoNV] + +
+ example: [] + syntax: + content: public static int SendPbufferToVideoNV(DisplayPtr dpy, GLXPbuffer pbuf, int iBufferType, Span pulCounterPbuffer, bool bBlock) + parameters: + - id: dpy + type: OpenTK.Graphics.Glx.DisplayPtr + - id: pbuf + type: OpenTK.Graphics.Glx.GLXPbuffer + - id: iBufferType + type: System.Int32 + - id: pulCounterPbuffer + type: System.Span{System.UInt64} + - id: bBlock + type: System.Boolean + return: + type: System.Int32 + content.vb: Public Shared Function SendPbufferToVideoNV(dpy As DisplayPtr, pbuf As GLXPbuffer, iBufferType As Integer, pulCounterPbuffer As Span(Of ULong), bBlock As Boolean) As Integer + overload: OpenTK.Graphics.Glx.Glx.NV.SendPbufferToVideoNV* + nameWithType.vb: Glx.NV.SendPbufferToVideoNV(DisplayPtr, GLXPbuffer, Integer, Span(Of ULong), Boolean) + fullName.vb: OpenTK.Graphics.Glx.Glx.NV.SendPbufferToVideoNV(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXPbuffer, Integer, System.Span(Of ULong), Boolean) + name.vb: SendPbufferToVideoNV(DisplayPtr, GLXPbuffer, Integer, Span(Of ULong), Boolean) +- uid: OpenTK.Graphics.Glx.Glx.NV.SendPbufferToVideoNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXPbuffer,System.Int32,System.UInt64[],System.Boolean) + commentId: M:OpenTK.Graphics.Glx.Glx.NV.SendPbufferToVideoNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXPbuffer,System.Int32,System.UInt64[],System.Boolean) + id: SendPbufferToVideoNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXPbuffer,System.Int32,System.UInt64[],System.Boolean) + parent: OpenTK.Graphics.Glx.Glx.NV + langs: + - csharp + - vb + name: SendPbufferToVideoNV(DisplayPtr, GLXPbuffer, int, ulong[], bool) + nameWithType: Glx.NV.SendPbufferToVideoNV(DisplayPtr, GLXPbuffer, int, ulong[], bool) + fullName: OpenTK.Graphics.Glx.Glx.NV.SendPbufferToVideoNV(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXPbuffer, int, ulong[], bool) + type: Method + source: + id: SendPbufferToVideoNV + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 1119 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Glx + summary: >- + [requires: GLX_NV_video_out] + + [entry point: glXSendPbufferToVideoNV] + +
+ example: [] + syntax: + content: public static int SendPbufferToVideoNV(DisplayPtr dpy, GLXPbuffer pbuf, int iBufferType, ulong[] pulCounterPbuffer, bool bBlock) + parameters: + - id: dpy + type: OpenTK.Graphics.Glx.DisplayPtr + - id: pbuf + type: OpenTK.Graphics.Glx.GLXPbuffer + - id: iBufferType + type: System.Int32 + - id: pulCounterPbuffer + type: System.UInt64[] + - id: bBlock + type: System.Boolean + return: + type: System.Int32 + content.vb: Public Shared Function SendPbufferToVideoNV(dpy As DisplayPtr, pbuf As GLXPbuffer, iBufferType As Integer, pulCounterPbuffer As ULong(), bBlock As Boolean) As Integer + overload: OpenTK.Graphics.Glx.Glx.NV.SendPbufferToVideoNV* + nameWithType.vb: Glx.NV.SendPbufferToVideoNV(DisplayPtr, GLXPbuffer, Integer, ULong(), Boolean) + fullName.vb: OpenTK.Graphics.Glx.Glx.NV.SendPbufferToVideoNV(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXPbuffer, Integer, ULong(), Boolean) + name.vb: SendPbufferToVideoNV(DisplayPtr, GLXPbuffer, Integer, ULong(), Boolean) - uid: OpenTK.Graphics.Glx.Glx.NV.SendPbufferToVideoNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXPbuffer,System.Int32,System.UInt64@,System.Boolean) commentId: M:OpenTK.Graphics.Glx.Glx.NV.SendPbufferToVideoNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXPbuffer,System.Int32,System.UInt64@,System.Boolean) id: SendPbufferToVideoNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXPbuffer,System.Int32,System.UInt64@,System.Boolean) @@ -1465,13 +2324,9 @@ items: fullName: OpenTK.Graphics.Glx.Glx.NV.SendPbufferToVideoNV(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXPbuffer, int, ref ulong, bool) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SendPbufferToVideoNV - path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 421 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 1129 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -2107,6 +2962,267 @@ references: name: SendPbufferToVideoNV nameWithType: Glx.NV.SendPbufferToVideoNV fullName: OpenTK.Graphics.Glx.Glx.NV.SendPbufferToVideoNV +- uid: System.ReadOnlySpan{System.Int32} + commentId: T:System.ReadOnlySpan{System.Int32} + parent: System + definition: System.ReadOnlySpan`1 + href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 + name: ReadOnlySpan + nameWithType: ReadOnlySpan + fullName: System.ReadOnlySpan + nameWithType.vb: ReadOnlySpan(Of Integer) + fullName.vb: System.ReadOnlySpan(Of Integer) + name.vb: ReadOnlySpan(Of Integer) + spec.csharp: + - uid: System.ReadOnlySpan`1 + name: ReadOnlySpan + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 + - name: < + - uid: System.Int32 + name: int + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: '>' + spec.vb: + - uid: System.ReadOnlySpan`1 + name: ReadOnlySpan + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 + - name: ( + - name: Of + - name: " " + - uid: System.Int32 + name: Integer + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ) +- uid: System.ReadOnlySpan`1 + commentId: T:System.ReadOnlySpan`1 + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 + name: ReadOnlySpan + nameWithType: ReadOnlySpan + fullName: System.ReadOnlySpan + nameWithType.vb: ReadOnlySpan(Of T) + fullName.vb: System.ReadOnlySpan(Of T) + name.vb: ReadOnlySpan(Of T) + spec.csharp: + - uid: System.ReadOnlySpan`1 + name: ReadOnlySpan + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 + - name: < + - name: T + - name: '>' + spec.vb: + - uid: System.ReadOnlySpan`1 + name: ReadOnlySpan + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 + - name: ( + - name: Of + - name: " " + - name: T + - name: ) +- uid: System.Int32[] + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + name: int[] + nameWithType: int[] + fullName: int[] + nameWithType.vb: Integer() + fullName.vb: Integer() + name.vb: Integer() + spec.csharp: + - uid: System.Int32 + name: int + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: '[' + - name: ']' + spec.vb: + - uid: System.Int32 + name: Integer + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ( + - name: ) +- uid: System.Span{System.Int32} + commentId: T:System.Span{System.Int32} + parent: System + definition: System.Span`1 + href: https://learn.microsoft.com/dotnet/api/system.span-1 + name: Span + nameWithType: Span + fullName: System.Span + nameWithType.vb: Span(Of Integer) + fullName.vb: System.Span(Of Integer) + name.vb: Span(Of Integer) + spec.csharp: + - uid: System.Span`1 + name: Span + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.span-1 + - name: < + - uid: System.Int32 + name: int + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: '>' + spec.vb: + - uid: System.Span`1 + name: Span + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.span-1 + - name: ( + - name: Of + - name: " " + - uid: System.Int32 + name: Integer + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ) +- uid: System.Span`1 + commentId: T:System.Span`1 + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.span-1 + name: Span + nameWithType: Span + fullName: System.Span + nameWithType.vb: Span(Of T) + fullName.vb: System.Span(Of T) + name.vb: Span(Of T) + spec.csharp: + - uid: System.Span`1 + name: Span + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.span-1 + - name: < + - name: T + - name: '>' + spec.vb: + - uid: System.Span`1 + name: Span + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.span-1 + - name: ( + - name: Of + - name: " " + - name: T + - name: ) +- uid: System.Span{OpenTK.Graphics.Glx.GLXVideoDeviceNV} + commentId: T:System.Span{OpenTK.Graphics.Glx.GLXVideoDeviceNV} + parent: System + definition: System.Span`1 + href: https://learn.microsoft.com/dotnet/api/system.span-1 + name: Span + nameWithType: Span + fullName: System.Span + nameWithType.vb: Span(Of GLXVideoDeviceNV) + fullName.vb: System.Span(Of OpenTK.Graphics.Glx.GLXVideoDeviceNV) + name.vb: Span(Of GLXVideoDeviceNV) + spec.csharp: + - uid: System.Span`1 + name: Span + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.span-1 + - name: < + - uid: OpenTK.Graphics.Glx.GLXVideoDeviceNV + name: GLXVideoDeviceNV + href: OpenTK.Graphics.Glx.GLXVideoDeviceNV.html + - name: '>' + spec.vb: + - uid: System.Span`1 + name: Span + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.span-1 + - name: ( + - name: Of + - name: " " + - uid: OpenTK.Graphics.Glx.GLXVideoDeviceNV + name: GLXVideoDeviceNV + href: OpenTK.Graphics.Glx.GLXVideoDeviceNV.html + - name: ) +- uid: OpenTK.Graphics.Glx.GLXVideoDeviceNV[] + isExternal: true + href: OpenTK.Graphics.Glx.GLXVideoDeviceNV.html + name: GLXVideoDeviceNV[] + nameWithType: GLXVideoDeviceNV[] + fullName: OpenTK.Graphics.Glx.GLXVideoDeviceNV[] + nameWithType.vb: GLXVideoDeviceNV() + fullName.vb: OpenTK.Graphics.Glx.GLXVideoDeviceNV() + name.vb: GLXVideoDeviceNV() + spec.csharp: + - uid: OpenTK.Graphics.Glx.GLXVideoDeviceNV + name: GLXVideoDeviceNV + href: OpenTK.Graphics.Glx.GLXVideoDeviceNV.html + - name: '[' + - name: ']' + spec.vb: + - uid: OpenTK.Graphics.Glx.GLXVideoDeviceNV + name: GLXVideoDeviceNV + href: OpenTK.Graphics.Glx.GLXVideoDeviceNV.html + - name: ( + - name: ) +- uid: System.Span{System.UInt64} + commentId: T:System.Span{System.UInt64} + parent: System + definition: System.Span`1 + href: https://learn.microsoft.com/dotnet/api/system.span-1 + name: Span + nameWithType: Span + fullName: System.Span + nameWithType.vb: Span(Of ULong) + fullName.vb: System.Span(Of ULong) + name.vb: Span(Of ULong) + spec.csharp: + - uid: System.Span`1 + name: Span + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.span-1 + - name: < + - uid: System.UInt64 + name: ulong + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.uint64 + - name: '>' + spec.vb: + - uid: System.Span`1 + name: Span + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.span-1 + - name: ( + - name: Of + - name: " " + - uid: System.UInt64 + name: ULong + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.uint64 + - name: ) +- uid: System.UInt64[] + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.uint64 + name: ulong[] + nameWithType: ulong[] + fullName: ulong[] + nameWithType.vb: ULong() + fullName.vb: ULong() + name.vb: ULong() + spec.csharp: + - uid: System.UInt64 + name: ulong + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.uint64 + - name: '[' + - name: ']' + spec.vb: + - uid: System.UInt64 + name: ULong + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.uint64 + - name: ( + - name: ) - uid: System.UInt64 commentId: T:System.UInt64 parent: System @@ -2118,3 +3234,61 @@ references: nameWithType.vb: ULong fullName.vb: ULong name.vb: ULong +- uid: System.Span{System.UInt32} + commentId: T:System.Span{System.UInt32} + parent: System + definition: System.Span`1 + href: https://learn.microsoft.com/dotnet/api/system.span-1 + name: Span + nameWithType: Span + fullName: System.Span + nameWithType.vb: Span(Of UInteger) + fullName.vb: System.Span(Of UInteger) + name.vb: Span(Of UInteger) + spec.csharp: + - uid: System.Span`1 + name: Span + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.span-1 + - name: < + - uid: System.UInt32 + name: uint + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.uint32 + - name: '>' + spec.vb: + - uid: System.Span`1 + name: Span + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.span-1 + - name: ( + - name: Of + - name: " " + - uid: System.UInt32 + name: UInteger + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.uint32 + - name: ) +- uid: System.UInt32[] + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.uint32 + name: uint[] + nameWithType: uint[] + fullName: uint[] + nameWithType.vb: UInteger() + fullName.vb: UInteger() + name.vb: UInteger() + spec.csharp: + - uid: System.UInt32 + name: uint + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.uint32 + - name: '[' + - name: ']' + spec.vb: + - uid: System.UInt32 + name: UInteger + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.uint32 + - name: ( + - name: ) diff --git a/api/OpenTK.Graphics.Glx.Glx.OML.yml b/api/OpenTK.Graphics.Glx.Glx.OML.yml index 983de90c..dfaf89be 100644 --- a/api/OpenTK.Graphics.Glx.Glx.OML.yml +++ b/api/OpenTK.Graphics.Glx.Glx.OML.yml @@ -7,13 +7,21 @@ items: children: - OpenTK.Graphics.Glx.Glx.OML.GetMscRateOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32*,System.Int32*) - OpenTK.Graphics.Glx.Glx.OML.GetMscRateOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32@,System.Int32@) + - OpenTK.Graphics.Glx.Glx.OML.GetMscRateOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32[],System.Int32[]) + - OpenTK.Graphics.Glx.Glx.OML.GetMscRateOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Span{System.Int32},System.Span{System.Int32}) - OpenTK.Graphics.Glx.Glx.OML.GetSyncValuesOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int64*,System.Int64*,System.Int64*) - OpenTK.Graphics.Glx.Glx.OML.GetSyncValuesOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int64@,System.Int64@,System.Int64@) + - OpenTK.Graphics.Glx.Glx.OML.GetSyncValuesOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int64[],System.Int64[],System.Int64[]) + - OpenTK.Graphics.Glx.Glx.OML.GetSyncValuesOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Span{System.Int64},System.Span{System.Int64},System.Span{System.Int64}) - OpenTK.Graphics.Glx.Glx.OML.SwapBuffersMscOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int64,System.Int64,System.Int64) - OpenTK.Graphics.Glx.Glx.OML.WaitForMscOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int64,System.Int64,System.Int64,System.Int64*,System.Int64*,System.Int64*) - OpenTK.Graphics.Glx.Glx.OML.WaitForMscOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int64,System.Int64,System.Int64,System.Int64@,System.Int64@,System.Int64@) + - OpenTK.Graphics.Glx.Glx.OML.WaitForMscOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int64,System.Int64,System.Int64,System.Int64[],System.Int64[],System.Int64[]) + - OpenTK.Graphics.Glx.Glx.OML.WaitForMscOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int64,System.Int64,System.Int64,System.Span{System.Int64},System.Span{System.Int64},System.Span{System.Int64}) - OpenTK.Graphics.Glx.Glx.OML.WaitForSbcOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int64,System.Int64*,System.Int64*,System.Int64*) - OpenTK.Graphics.Glx.Glx.OML.WaitForSbcOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int64,System.Int64@,System.Int64@,System.Int64@) + - OpenTK.Graphics.Glx.Glx.OML.WaitForSbcOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int64,System.Int64[],System.Int64[],System.Int64[]) + - OpenTK.Graphics.Glx.Glx.OML.WaitForSbcOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int64,System.Span{System.Int64},System.Span{System.Int64},System.Span{System.Int64}) langs: - csharp - vb @@ -22,13 +30,9 @@ items: fullName: OpenTK.Graphics.Glx.Glx.OML type: Class source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: OML - path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 431 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 1139 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -59,17 +63,18 @@ items: fullName: OpenTK.Graphics.Glx.Glx.OML.GetMscRateOML(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, int*, int*) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetMscRateOML - path: opentk/src/OpenTK.Graphics/Glx/GLX.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs startLine: 311 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx - summary: '[requires: GLX_OML_sync_control] [entry point: glXGetMscRateOML]
' + summary: >- + [requires: GLX_OML_sync_control] + + [entry point: glXGetMscRateOML] + +
example: [] syntax: content: public static bool GetMscRateOML(DisplayPtr dpy, GLXDrawable drawable, int* numerator, int* denominator) @@ -101,17 +106,18 @@ items: fullName: OpenTK.Graphics.Glx.Glx.OML.GetSyncValuesOML(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, long*, long*, long*) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetSyncValuesOML - path: opentk/src/OpenTK.Graphics/Glx/GLX.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs startLine: 314 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx - summary: '[requires: GLX_OML_sync_control] [entry point: glXGetSyncValuesOML]
' + summary: >- + [requires: GLX_OML_sync_control] + + [entry point: glXGetSyncValuesOML] + +
example: [] syntax: content: public static bool GetSyncValuesOML(DisplayPtr dpy, GLXDrawable drawable, long* ust, long* msc, long* sbc) @@ -145,17 +151,18 @@ items: fullName: OpenTK.Graphics.Glx.Glx.OML.SwapBuffersMscOML(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, long, long, long) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SwapBuffersMscOML - path: opentk/src/OpenTK.Graphics/Glx/GLX.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs startLine: 317 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx - summary: '[requires: GLX_OML_sync_control] [entry point: glXSwapBuffersMscOML]
' + summary: >- + [requires: GLX_OML_sync_control] + + [entry point: glXSwapBuffersMscOML] + +
example: [] syntax: content: public static long SwapBuffersMscOML(DisplayPtr dpy, GLXDrawable drawable, long target_msc, long divisor, long remainder) @@ -189,17 +196,18 @@ items: fullName: OpenTK.Graphics.Glx.Glx.OML.WaitForMscOML(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, long, long, long, long*, long*, long*) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: WaitForMscOML - path: opentk/src/OpenTK.Graphics/Glx/GLX.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs startLine: 320 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx - summary: '[requires: GLX_OML_sync_control] [entry point: glXWaitForMscOML]
' + summary: >- + [requires: GLX_OML_sync_control] + + [entry point: glXWaitForMscOML] + +
example: [] syntax: content: public static bool WaitForMscOML(DisplayPtr dpy, GLXDrawable drawable, long target_msc, long divisor, long remainder, long* ust, long* msc, long* sbc) @@ -239,17 +247,18 @@ items: fullName: OpenTK.Graphics.Glx.Glx.OML.WaitForSbcOML(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, long, long*, long*, long*) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: WaitForSbcOML - path: opentk/src/OpenTK.Graphics/Glx/GLX.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs startLine: 323 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx - summary: '[requires: GLX_OML_sync_control] [entry point: glXWaitForSbcOML]
' + summary: >- + [requires: GLX_OML_sync_control] + + [entry point: glXWaitForSbcOML] + +
example: [] syntax: content: public static bool WaitForSbcOML(DisplayPtr dpy, GLXDrawable drawable, long target_sbc, long* ust, long* msc, long* sbc) @@ -273,6 +282,92 @@ items: nameWithType.vb: Glx.OML.WaitForSbcOML(DisplayPtr, GLXDrawable, Long, Long*, Long*, Long*) fullName.vb: OpenTK.Graphics.Glx.Glx.OML.WaitForSbcOML(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, Long, Long*, Long*, Long*) name.vb: WaitForSbcOML(DisplayPtr, GLXDrawable, Long, Long*, Long*, Long*) +- uid: OpenTK.Graphics.Glx.Glx.OML.GetMscRateOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Span{System.Int32},System.Span{System.Int32}) + commentId: M:OpenTK.Graphics.Glx.Glx.OML.GetMscRateOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Span{System.Int32},System.Span{System.Int32}) + id: GetMscRateOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Span{System.Int32},System.Span{System.Int32}) + parent: OpenTK.Graphics.Glx.Glx.OML + langs: + - csharp + - vb + name: GetMscRateOML(DisplayPtr, GLXDrawable, Span, Span) + nameWithType: Glx.OML.GetMscRateOML(DisplayPtr, GLXDrawable, Span, Span) + fullName: OpenTK.Graphics.Glx.Glx.OML.GetMscRateOML(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, System.Span, System.Span) + type: Method + source: + id: GetMscRateOML + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 1142 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Glx + summary: >- + [requires: GLX_OML_sync_control] + + [entry point: glXGetMscRateOML] + +
+ example: [] + syntax: + content: public static bool GetMscRateOML(DisplayPtr dpy, GLXDrawable drawable, Span numerator, Span denominator) + parameters: + - id: dpy + type: OpenTK.Graphics.Glx.DisplayPtr + - id: drawable + type: OpenTK.Graphics.Glx.GLXDrawable + - id: numerator + type: System.Span{System.Int32} + - id: denominator + type: System.Span{System.Int32} + return: + type: System.Boolean + content.vb: Public Shared Function GetMscRateOML(dpy As DisplayPtr, drawable As GLXDrawable, numerator As Span(Of Integer), denominator As Span(Of Integer)) As Boolean + overload: OpenTK.Graphics.Glx.Glx.OML.GetMscRateOML* + nameWithType.vb: Glx.OML.GetMscRateOML(DisplayPtr, GLXDrawable, Span(Of Integer), Span(Of Integer)) + fullName.vb: OpenTK.Graphics.Glx.Glx.OML.GetMscRateOML(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, System.Span(Of Integer), System.Span(Of Integer)) + name.vb: GetMscRateOML(DisplayPtr, GLXDrawable, Span(Of Integer), Span(Of Integer)) +- uid: OpenTK.Graphics.Glx.Glx.OML.GetMscRateOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32[],System.Int32[]) + commentId: M:OpenTK.Graphics.Glx.Glx.OML.GetMscRateOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32[],System.Int32[]) + id: GetMscRateOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32[],System.Int32[]) + parent: OpenTK.Graphics.Glx.Glx.OML + langs: + - csharp + - vb + name: GetMscRateOML(DisplayPtr, GLXDrawable, int[], int[]) + nameWithType: Glx.OML.GetMscRateOML(DisplayPtr, GLXDrawable, int[], int[]) + fullName: OpenTK.Graphics.Glx.Glx.OML.GetMscRateOML(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, int[], int[]) + type: Method + source: + id: GetMscRateOML + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 1155 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Glx + summary: >- + [requires: GLX_OML_sync_control] + + [entry point: glXGetMscRateOML] + +
+ example: [] + syntax: + content: public static bool GetMscRateOML(DisplayPtr dpy, GLXDrawable drawable, int[] numerator, int[] denominator) + parameters: + - id: dpy + type: OpenTK.Graphics.Glx.DisplayPtr + - id: drawable + type: OpenTK.Graphics.Glx.GLXDrawable + - id: numerator + type: System.Int32[] + - id: denominator + type: System.Int32[] + return: + type: System.Boolean + content.vb: Public Shared Function GetMscRateOML(dpy As DisplayPtr, drawable As GLXDrawable, numerator As Integer(), denominator As Integer()) As Boolean + overload: OpenTK.Graphics.Glx.Glx.OML.GetMscRateOML* + nameWithType.vb: Glx.OML.GetMscRateOML(DisplayPtr, GLXDrawable, Integer(), Integer()) + fullName.vb: OpenTK.Graphics.Glx.Glx.OML.GetMscRateOML(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, Integer(), Integer()) + name.vb: GetMscRateOML(DisplayPtr, GLXDrawable, Integer(), Integer()) - uid: OpenTK.Graphics.Glx.Glx.OML.GetMscRateOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32@,System.Int32@) commentId: M:OpenTK.Graphics.Glx.Glx.OML.GetMscRateOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32@,System.Int32@) id: GetMscRateOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32@,System.Int32@) @@ -285,13 +380,9 @@ items: fullName: OpenTK.Graphics.Glx.Glx.OML.GetMscRateOML(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, ref int, ref int) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetMscRateOML - path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 434 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 1168 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -320,6 +411,96 @@ items: nameWithType.vb: Glx.OML.GetMscRateOML(DisplayPtr, GLXDrawable, Integer, Integer) fullName.vb: OpenTK.Graphics.Glx.Glx.OML.GetMscRateOML(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, Integer, Integer) name.vb: GetMscRateOML(DisplayPtr, GLXDrawable, Integer, Integer) +- uid: OpenTK.Graphics.Glx.Glx.OML.GetSyncValuesOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Span{System.Int64},System.Span{System.Int64},System.Span{System.Int64}) + commentId: M:OpenTK.Graphics.Glx.Glx.OML.GetSyncValuesOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Span{System.Int64},System.Span{System.Int64},System.Span{System.Int64}) + id: GetSyncValuesOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Span{System.Int64},System.Span{System.Int64},System.Span{System.Int64}) + parent: OpenTK.Graphics.Glx.Glx.OML + langs: + - csharp + - vb + name: GetSyncValuesOML(DisplayPtr, GLXDrawable, Span, Span, Span) + nameWithType: Glx.OML.GetSyncValuesOML(DisplayPtr, GLXDrawable, Span, Span, Span) + fullName: OpenTK.Graphics.Glx.Glx.OML.GetSyncValuesOML(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, System.Span, System.Span, System.Span) + type: Method + source: + id: GetSyncValuesOML + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 1179 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Glx + summary: >- + [requires: GLX_OML_sync_control] + + [entry point: glXGetSyncValuesOML] + +
+ example: [] + syntax: + content: public static bool GetSyncValuesOML(DisplayPtr dpy, GLXDrawable drawable, Span ust, Span msc, Span sbc) + parameters: + - id: dpy + type: OpenTK.Graphics.Glx.DisplayPtr + - id: drawable + type: OpenTK.Graphics.Glx.GLXDrawable + - id: ust + type: System.Span{System.Int64} + - id: msc + type: System.Span{System.Int64} + - id: sbc + type: System.Span{System.Int64} + return: + type: System.Boolean + content.vb: Public Shared Function GetSyncValuesOML(dpy As DisplayPtr, drawable As GLXDrawable, ust As Span(Of Long), msc As Span(Of Long), sbc As Span(Of Long)) As Boolean + overload: OpenTK.Graphics.Glx.Glx.OML.GetSyncValuesOML* + nameWithType.vb: Glx.OML.GetSyncValuesOML(DisplayPtr, GLXDrawable, Span(Of Long), Span(Of Long), Span(Of Long)) + fullName.vb: OpenTK.Graphics.Glx.Glx.OML.GetSyncValuesOML(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, System.Span(Of Long), System.Span(Of Long), System.Span(Of Long)) + name.vb: GetSyncValuesOML(DisplayPtr, GLXDrawable, Span(Of Long), Span(Of Long), Span(Of Long)) +- uid: OpenTK.Graphics.Glx.Glx.OML.GetSyncValuesOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int64[],System.Int64[],System.Int64[]) + commentId: M:OpenTK.Graphics.Glx.Glx.OML.GetSyncValuesOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int64[],System.Int64[],System.Int64[]) + id: GetSyncValuesOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int64[],System.Int64[],System.Int64[]) + parent: OpenTK.Graphics.Glx.Glx.OML + langs: + - csharp + - vb + name: GetSyncValuesOML(DisplayPtr, GLXDrawable, long[], long[], long[]) + nameWithType: Glx.OML.GetSyncValuesOML(DisplayPtr, GLXDrawable, long[], long[], long[]) + fullName: OpenTK.Graphics.Glx.Glx.OML.GetSyncValuesOML(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, long[], long[], long[]) + type: Method + source: + id: GetSyncValuesOML + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 1195 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Glx + summary: >- + [requires: GLX_OML_sync_control] + + [entry point: glXGetSyncValuesOML] + +
+ example: [] + syntax: + content: public static bool GetSyncValuesOML(DisplayPtr dpy, GLXDrawable drawable, long[] ust, long[] msc, long[] sbc) + parameters: + - id: dpy + type: OpenTK.Graphics.Glx.DisplayPtr + - id: drawable + type: OpenTK.Graphics.Glx.GLXDrawable + - id: ust + type: System.Int64[] + - id: msc + type: System.Int64[] + - id: sbc + type: System.Int64[] + return: + type: System.Boolean + content.vb: Public Shared Function GetSyncValuesOML(dpy As DisplayPtr, drawable As GLXDrawable, ust As Long(), msc As Long(), sbc As Long()) As Boolean + overload: OpenTK.Graphics.Glx.Glx.OML.GetSyncValuesOML* + nameWithType.vb: Glx.OML.GetSyncValuesOML(DisplayPtr, GLXDrawable, Long(), Long(), Long()) + fullName.vb: OpenTK.Graphics.Glx.Glx.OML.GetSyncValuesOML(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, Long(), Long(), Long()) + name.vb: GetSyncValuesOML(DisplayPtr, GLXDrawable, Long(), Long(), Long()) - uid: OpenTK.Graphics.Glx.Glx.OML.GetSyncValuesOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int64@,System.Int64@,System.Int64@) commentId: M:OpenTK.Graphics.Glx.Glx.OML.GetSyncValuesOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int64@,System.Int64@,System.Int64@) id: GetSyncValuesOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int64@,System.Int64@,System.Int64@) @@ -332,13 +513,9 @@ items: fullName: OpenTK.Graphics.Glx.Glx.OML.GetSyncValuesOML(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, ref long, ref long, ref long) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetSyncValuesOML - path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 445 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 1211 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -369,6 +546,108 @@ items: nameWithType.vb: Glx.OML.GetSyncValuesOML(DisplayPtr, GLXDrawable, Long, Long, Long) fullName.vb: OpenTK.Graphics.Glx.Glx.OML.GetSyncValuesOML(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, Long, Long, Long) name.vb: GetSyncValuesOML(DisplayPtr, GLXDrawable, Long, Long, Long) +- uid: OpenTK.Graphics.Glx.Glx.OML.WaitForMscOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int64,System.Int64,System.Int64,System.Span{System.Int64},System.Span{System.Int64},System.Span{System.Int64}) + commentId: M:OpenTK.Graphics.Glx.Glx.OML.WaitForMscOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int64,System.Int64,System.Int64,System.Span{System.Int64},System.Span{System.Int64},System.Span{System.Int64}) + id: WaitForMscOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int64,System.Int64,System.Int64,System.Span{System.Int64},System.Span{System.Int64},System.Span{System.Int64}) + parent: OpenTK.Graphics.Glx.Glx.OML + langs: + - csharp + - vb + name: WaitForMscOML(DisplayPtr, GLXDrawable, long, long, long, Span, Span, Span) + nameWithType: Glx.OML.WaitForMscOML(DisplayPtr, GLXDrawable, long, long, long, Span, Span, Span) + fullName: OpenTK.Graphics.Glx.Glx.OML.WaitForMscOML(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, long, long, long, System.Span, System.Span, System.Span) + type: Method + source: + id: WaitForMscOML + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 1223 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Glx + summary: >- + [requires: GLX_OML_sync_control] + + [entry point: glXWaitForMscOML] + +
+ example: [] + syntax: + content: public static bool WaitForMscOML(DisplayPtr dpy, GLXDrawable drawable, long target_msc, long divisor, long remainder, Span ust, Span msc, Span sbc) + parameters: + - id: dpy + type: OpenTK.Graphics.Glx.DisplayPtr + - id: drawable + type: OpenTK.Graphics.Glx.GLXDrawable + - id: target_msc + type: System.Int64 + - id: divisor + type: System.Int64 + - id: remainder + type: System.Int64 + - id: ust + type: System.Span{System.Int64} + - id: msc + type: System.Span{System.Int64} + - id: sbc + type: System.Span{System.Int64} + return: + type: System.Boolean + content.vb: Public Shared Function WaitForMscOML(dpy As DisplayPtr, drawable As GLXDrawable, target_msc As Long, divisor As Long, remainder As Long, ust As Span(Of Long), msc As Span(Of Long), sbc As Span(Of Long)) As Boolean + overload: OpenTK.Graphics.Glx.Glx.OML.WaitForMscOML* + nameWithType.vb: Glx.OML.WaitForMscOML(DisplayPtr, GLXDrawable, Long, Long, Long, Span(Of Long), Span(Of Long), Span(Of Long)) + fullName.vb: OpenTK.Graphics.Glx.Glx.OML.WaitForMscOML(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, Long, Long, Long, System.Span(Of Long), System.Span(Of Long), System.Span(Of Long)) + name.vb: WaitForMscOML(DisplayPtr, GLXDrawable, Long, Long, Long, Span(Of Long), Span(Of Long), Span(Of Long)) +- uid: OpenTK.Graphics.Glx.Glx.OML.WaitForMscOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int64,System.Int64,System.Int64,System.Int64[],System.Int64[],System.Int64[]) + commentId: M:OpenTK.Graphics.Glx.Glx.OML.WaitForMscOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int64,System.Int64,System.Int64,System.Int64[],System.Int64[],System.Int64[]) + id: WaitForMscOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int64,System.Int64,System.Int64,System.Int64[],System.Int64[],System.Int64[]) + parent: OpenTK.Graphics.Glx.Glx.OML + langs: + - csharp + - vb + name: WaitForMscOML(DisplayPtr, GLXDrawable, long, long, long, long[], long[], long[]) + nameWithType: Glx.OML.WaitForMscOML(DisplayPtr, GLXDrawable, long, long, long, long[], long[], long[]) + fullName: OpenTK.Graphics.Glx.Glx.OML.WaitForMscOML(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, long, long, long, long[], long[], long[]) + type: Method + source: + id: WaitForMscOML + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 1239 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Glx + summary: >- + [requires: GLX_OML_sync_control] + + [entry point: glXWaitForMscOML] + +
+ example: [] + syntax: + content: public static bool WaitForMscOML(DisplayPtr dpy, GLXDrawable drawable, long target_msc, long divisor, long remainder, long[] ust, long[] msc, long[] sbc) + parameters: + - id: dpy + type: OpenTK.Graphics.Glx.DisplayPtr + - id: drawable + type: OpenTK.Graphics.Glx.GLXDrawable + - id: target_msc + type: System.Int64 + - id: divisor + type: System.Int64 + - id: remainder + type: System.Int64 + - id: ust + type: System.Int64[] + - id: msc + type: System.Int64[] + - id: sbc + type: System.Int64[] + return: + type: System.Boolean + content.vb: Public Shared Function WaitForMscOML(dpy As DisplayPtr, drawable As GLXDrawable, target_msc As Long, divisor As Long, remainder As Long, ust As Long(), msc As Long(), sbc As Long()) As Boolean + overload: OpenTK.Graphics.Glx.Glx.OML.WaitForMscOML* + nameWithType.vb: Glx.OML.WaitForMscOML(DisplayPtr, GLXDrawable, Long, Long, Long, Long(), Long(), Long()) + fullName.vb: OpenTK.Graphics.Glx.Glx.OML.WaitForMscOML(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, Long, Long, Long, Long(), Long(), Long()) + name.vb: WaitForMscOML(DisplayPtr, GLXDrawable, Long, Long, Long, Long(), Long(), Long()) - uid: OpenTK.Graphics.Glx.Glx.OML.WaitForMscOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int64,System.Int64,System.Int64,System.Int64@,System.Int64@,System.Int64@) commentId: M:OpenTK.Graphics.Glx.Glx.OML.WaitForMscOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int64,System.Int64,System.Int64,System.Int64@,System.Int64@,System.Int64@) id: WaitForMscOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int64,System.Int64,System.Int64,System.Int64@,System.Int64@,System.Int64@) @@ -381,13 +660,9 @@ items: fullName: OpenTK.Graphics.Glx.Glx.OML.WaitForMscOML(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, long, long, long, ref long, ref long, ref long) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: WaitForMscOML - path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 457 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 1255 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -424,6 +699,100 @@ items: nameWithType.vb: Glx.OML.WaitForMscOML(DisplayPtr, GLXDrawable, Long, Long, Long, Long, Long, Long) fullName.vb: OpenTK.Graphics.Glx.Glx.OML.WaitForMscOML(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, Long, Long, Long, Long, Long, Long) name.vb: WaitForMscOML(DisplayPtr, GLXDrawable, Long, Long, Long, Long, Long, Long) +- uid: OpenTK.Graphics.Glx.Glx.OML.WaitForSbcOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int64,System.Span{System.Int64},System.Span{System.Int64},System.Span{System.Int64}) + commentId: M:OpenTK.Graphics.Glx.Glx.OML.WaitForSbcOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int64,System.Span{System.Int64},System.Span{System.Int64},System.Span{System.Int64}) + id: WaitForSbcOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int64,System.Span{System.Int64},System.Span{System.Int64},System.Span{System.Int64}) + parent: OpenTK.Graphics.Glx.Glx.OML + langs: + - csharp + - vb + name: WaitForSbcOML(DisplayPtr, GLXDrawable, long, Span, Span, Span) + nameWithType: Glx.OML.WaitForSbcOML(DisplayPtr, GLXDrawable, long, Span, Span, Span) + fullName: OpenTK.Graphics.Glx.Glx.OML.WaitForSbcOML(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, long, System.Span, System.Span, System.Span) + type: Method + source: + id: WaitForSbcOML + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 1267 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Glx + summary: >- + [requires: GLX_OML_sync_control] + + [entry point: glXWaitForSbcOML] + +
+ example: [] + syntax: + content: public static bool WaitForSbcOML(DisplayPtr dpy, GLXDrawable drawable, long target_sbc, Span ust, Span msc, Span sbc) + parameters: + - id: dpy + type: OpenTK.Graphics.Glx.DisplayPtr + - id: drawable + type: OpenTK.Graphics.Glx.GLXDrawable + - id: target_sbc + type: System.Int64 + - id: ust + type: System.Span{System.Int64} + - id: msc + type: System.Span{System.Int64} + - id: sbc + type: System.Span{System.Int64} + return: + type: System.Boolean + content.vb: Public Shared Function WaitForSbcOML(dpy As DisplayPtr, drawable As GLXDrawable, target_sbc As Long, ust As Span(Of Long), msc As Span(Of Long), sbc As Span(Of Long)) As Boolean + overload: OpenTK.Graphics.Glx.Glx.OML.WaitForSbcOML* + nameWithType.vb: Glx.OML.WaitForSbcOML(DisplayPtr, GLXDrawable, Long, Span(Of Long), Span(Of Long), Span(Of Long)) + fullName.vb: OpenTK.Graphics.Glx.Glx.OML.WaitForSbcOML(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, Long, System.Span(Of Long), System.Span(Of Long), System.Span(Of Long)) + name.vb: WaitForSbcOML(DisplayPtr, GLXDrawable, Long, Span(Of Long), Span(Of Long), Span(Of Long)) +- uid: OpenTK.Graphics.Glx.Glx.OML.WaitForSbcOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int64,System.Int64[],System.Int64[],System.Int64[]) + commentId: M:OpenTK.Graphics.Glx.Glx.OML.WaitForSbcOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int64,System.Int64[],System.Int64[],System.Int64[]) + id: WaitForSbcOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int64,System.Int64[],System.Int64[],System.Int64[]) + parent: OpenTK.Graphics.Glx.Glx.OML + langs: + - csharp + - vb + name: WaitForSbcOML(DisplayPtr, GLXDrawable, long, long[], long[], long[]) + nameWithType: Glx.OML.WaitForSbcOML(DisplayPtr, GLXDrawable, long, long[], long[], long[]) + fullName: OpenTK.Graphics.Glx.Glx.OML.WaitForSbcOML(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, long, long[], long[], long[]) + type: Method + source: + id: WaitForSbcOML + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 1283 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Glx + summary: >- + [requires: GLX_OML_sync_control] + + [entry point: glXWaitForSbcOML] + +
+ example: [] + syntax: + content: public static bool WaitForSbcOML(DisplayPtr dpy, GLXDrawable drawable, long target_sbc, long[] ust, long[] msc, long[] sbc) + parameters: + - id: dpy + type: OpenTK.Graphics.Glx.DisplayPtr + - id: drawable + type: OpenTK.Graphics.Glx.GLXDrawable + - id: target_sbc + type: System.Int64 + - id: ust + type: System.Int64[] + - id: msc + type: System.Int64[] + - id: sbc + type: System.Int64[] + return: + type: System.Boolean + content.vb: Public Shared Function WaitForSbcOML(dpy As DisplayPtr, drawable As GLXDrawable, target_sbc As Long, ust As Long(), msc As Long(), sbc As Long()) As Boolean + overload: OpenTK.Graphics.Glx.Glx.OML.WaitForSbcOML* + nameWithType.vb: Glx.OML.WaitForSbcOML(DisplayPtr, GLXDrawable, Long, Long(), Long(), Long()) + fullName.vb: OpenTK.Graphics.Glx.Glx.OML.WaitForSbcOML(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, Long, Long(), Long(), Long()) + name.vb: WaitForSbcOML(DisplayPtr, GLXDrawable, Long, Long(), Long(), Long()) - uid: OpenTK.Graphics.Glx.Glx.OML.WaitForSbcOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int64,System.Int64@,System.Int64@,System.Int64@) commentId: M:OpenTK.Graphics.Glx.Glx.OML.WaitForSbcOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int64,System.Int64@,System.Int64@,System.Int64@) id: WaitForSbcOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int64,System.Int64@,System.Int64@,System.Int64@) @@ -436,13 +805,9 @@ items: fullName: OpenTK.Graphics.Glx.Glx.OML.WaitForSbcOML(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, long, ref long, ref long, ref long) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: WaitForSbcOML - path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 469 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 1299 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -851,6 +1216,92 @@ references: name: WaitForSbcOML nameWithType: Glx.OML.WaitForSbcOML fullName: OpenTK.Graphics.Glx.Glx.OML.WaitForSbcOML +- uid: System.Span{System.Int32} + commentId: T:System.Span{System.Int32} + parent: System + definition: System.Span`1 + href: https://learn.microsoft.com/dotnet/api/system.span-1 + name: Span + nameWithType: Span + fullName: System.Span + nameWithType.vb: Span(Of Integer) + fullName.vb: System.Span(Of Integer) + name.vb: Span(Of Integer) + spec.csharp: + - uid: System.Span`1 + name: Span + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.span-1 + - name: < + - uid: System.Int32 + name: int + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: '>' + spec.vb: + - uid: System.Span`1 + name: Span + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.span-1 + - name: ( + - name: Of + - name: " " + - uid: System.Int32 + name: Integer + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ) +- uid: System.Span`1 + commentId: T:System.Span`1 + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.span-1 + name: Span + nameWithType: Span + fullName: System.Span + nameWithType.vb: Span(Of T) + fullName.vb: System.Span(Of T) + name.vb: Span(Of T) + spec.csharp: + - uid: System.Span`1 + name: Span + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.span-1 + - name: < + - name: T + - name: '>' + spec.vb: + - uid: System.Span`1 + name: Span + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.span-1 + - name: ( + - name: Of + - name: " " + - name: T + - name: ) +- uid: System.Int32[] + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + name: int[] + nameWithType: int[] + fullName: int[] + nameWithType.vb: Integer() + fullName.vb: Integer() + name.vb: Integer() + spec.csharp: + - uid: System.Int32 + name: int + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: '[' + - name: ']' + spec.vb: + - uid: System.Int32 + name: Integer + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ( + - name: ) - uid: System.Int32 commentId: T:System.Int32 parent: System @@ -862,3 +1313,61 @@ references: nameWithType.vb: Integer fullName.vb: Integer name.vb: Integer +- uid: System.Span{System.Int64} + commentId: T:System.Span{System.Int64} + parent: System + definition: System.Span`1 + href: https://learn.microsoft.com/dotnet/api/system.span-1 + name: Span + nameWithType: Span + fullName: System.Span + nameWithType.vb: Span(Of Long) + fullName.vb: System.Span(Of Long) + name.vb: Span(Of Long) + spec.csharp: + - uid: System.Span`1 + name: Span + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.span-1 + - name: < + - uid: System.Int64 + name: long + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int64 + - name: '>' + spec.vb: + - uid: System.Span`1 + name: Span + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.span-1 + - name: ( + - name: Of + - name: " " + - uid: System.Int64 + name: Long + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int64 + - name: ) +- uid: System.Int64[] + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int64 + name: long[] + nameWithType: long[] + fullName: long[] + nameWithType.vb: Long() + fullName.vb: Long() + name.vb: Long() + spec.csharp: + - uid: System.Int64 + name: long + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int64 + - name: '[' + - name: ']' + spec.vb: + - uid: System.Int64 + name: Long + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int64 + - name: ( + - name: ) diff --git a/api/OpenTK.Graphics.Glx.Glx.SGI.yml b/api/OpenTK.Graphics.Glx.Glx.SGI.yml index 1b22a06a..01900a56 100644 --- a/api/OpenTK.Graphics.Glx.Glx.SGI.yml +++ b/api/OpenTK.Graphics.Glx.Glx.SGI.yml @@ -7,12 +7,16 @@ items: children: - OpenTK.Graphics.Glx.Glx.SGI.CushionSGI(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.Window,System.Single) - OpenTK.Graphics.Glx.Glx.SGI.GetCurrentReadDrawableSGI + - OpenTK.Graphics.Glx.Glx.SGI.GetVideoSyncSGI(System.Span{System.UInt32}) - OpenTK.Graphics.Glx.Glx.SGI.GetVideoSyncSGI(System.UInt32*) - OpenTK.Graphics.Glx.Glx.SGI.GetVideoSyncSGI(System.UInt32@) + - OpenTK.Graphics.Glx.Glx.SGI.GetVideoSyncSGI(System.UInt32[]) - OpenTK.Graphics.Glx.Glx.SGI.MakeCurrentReadSGI(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,OpenTK.Graphics.Glx.GLXDrawable,OpenTK.Graphics.Glx.GLXContext) - OpenTK.Graphics.Glx.Glx.SGI.SwapIntervalSGI(System.Int32) + - OpenTK.Graphics.Glx.Glx.SGI.WaitVideoSyncSGI(System.Int32,System.Int32,System.Span{System.UInt32}) - OpenTK.Graphics.Glx.Glx.SGI.WaitVideoSyncSGI(System.Int32,System.Int32,System.UInt32*) - OpenTK.Graphics.Glx.Glx.SGI.WaitVideoSyncSGI(System.Int32,System.Int32,System.UInt32@) + - OpenTK.Graphics.Glx.Glx.SGI.WaitVideoSyncSGI(System.Int32,System.Int32,System.UInt32[]) langs: - csharp - vb @@ -21,13 +25,9 @@ items: fullName: OpenTK.Graphics.Glx.Glx.SGI type: Class source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SGI - path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 481 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 1311 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -58,17 +58,18 @@ items: fullName: OpenTK.Graphics.Glx.Glx.SGI.CushionSGI(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.Window, float) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CushionSGI - path: opentk/src/OpenTK.Graphics/Glx/GLX.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs startLine: 330 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx - summary: '[requires: GLX_SGI_cushion] [entry point: glXCushionSGI]
' + summary: >- + [requires: GLX_SGI_cushion] + + [entry point: glXCushionSGI] + +
example: [] syntax: content: public static void CushionSGI(DisplayPtr dpy, Window window, float cushion) @@ -96,17 +97,18 @@ items: fullName: OpenTK.Graphics.Glx.Glx.SGI.GetCurrentReadDrawableSGI() type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetCurrentReadDrawableSGI - path: opentk/src/OpenTK.Graphics/Glx/GLX.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs startLine: 333 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx - summary: '[requires: GLX_SGI_make_current_read] [entry point: glXGetCurrentReadDrawableSGI]
' + summary: >- + [requires: GLX_SGI_make_current_read] + + [entry point: glXGetCurrentReadDrawableSGI] + +
example: [] syntax: content: public static GLXDrawable GetCurrentReadDrawableSGI() @@ -126,17 +128,18 @@ items: fullName: OpenTK.Graphics.Glx.Glx.SGI.GetVideoSyncSGI(uint*) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetVideoSyncSGI - path: opentk/src/OpenTK.Graphics/Glx/GLX.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs startLine: 336 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx - summary: '[requires: GLX_SGI_video_sync] [entry point: glXGetVideoSyncSGI]
' + summary: >- + [requires: GLX_SGI_video_sync] + + [entry point: glXGetVideoSyncSGI] + +
example: [] syntax: content: public static int GetVideoSyncSGI(uint* count) @@ -162,17 +165,18 @@ items: fullName: OpenTK.Graphics.Glx.Glx.SGI.MakeCurrentReadSGI(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, OpenTK.Graphics.Glx.GLXDrawable, OpenTK.Graphics.Glx.GLXContext) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MakeCurrentReadSGI - path: opentk/src/OpenTK.Graphics/Glx/GLX.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs startLine: 339 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx - summary: '[requires: GLX_SGI_make_current_read] [entry point: glXMakeCurrentReadSGI]
' + summary: >- + [requires: GLX_SGI_make_current_read] + + [entry point: glXMakeCurrentReadSGI] + +
example: [] syntax: content: public static bool MakeCurrentReadSGI(DisplayPtr dpy, GLXDrawable draw, GLXDrawable read, GLXContext ctx) @@ -201,17 +205,18 @@ items: fullName: OpenTK.Graphics.Glx.Glx.SGI.SwapIntervalSGI(int) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SwapIntervalSGI - path: opentk/src/OpenTK.Graphics/Glx/GLX.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs startLine: 342 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx - summary: '[requires: GLX_SGI_swap_control] [entry point: glXSwapIntervalSGI]
' + summary: >- + [requires: GLX_SGI_swap_control] + + [entry point: glXSwapIntervalSGI] + +
example: [] syntax: content: public static int SwapIntervalSGI(int interval) @@ -237,17 +242,18 @@ items: fullName: OpenTK.Graphics.Glx.Glx.SGI.WaitVideoSyncSGI(int, int, uint*) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: WaitVideoSyncSGI - path: opentk/src/OpenTK.Graphics/Glx/GLX.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs startLine: 345 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx - summary: '[requires: GLX_SGI_video_sync] [entry point: glXWaitVideoSyncSGI]
' + summary: >- + [requires: GLX_SGI_video_sync] + + [entry point: glXWaitVideoSyncSGI] + +
example: [] syntax: content: public static int WaitVideoSyncSGI(int divisor, int remainder, uint* count) @@ -265,6 +271,80 @@ items: nameWithType.vb: Glx.SGI.WaitVideoSyncSGI(Integer, Integer, UInteger*) fullName.vb: OpenTK.Graphics.Glx.Glx.SGI.WaitVideoSyncSGI(Integer, Integer, UInteger*) name.vb: WaitVideoSyncSGI(Integer, Integer, UInteger*) +- uid: OpenTK.Graphics.Glx.Glx.SGI.GetVideoSyncSGI(System.Span{System.UInt32}) + commentId: M:OpenTK.Graphics.Glx.Glx.SGI.GetVideoSyncSGI(System.Span{System.UInt32}) + id: GetVideoSyncSGI(System.Span{System.UInt32}) + parent: OpenTK.Graphics.Glx.Glx.SGI + langs: + - csharp + - vb + name: GetVideoSyncSGI(Span) + nameWithType: Glx.SGI.GetVideoSyncSGI(Span) + fullName: OpenTK.Graphics.Glx.Glx.SGI.GetVideoSyncSGI(System.Span) + type: Method + source: + id: GetVideoSyncSGI + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 1314 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Glx + summary: >- + [requires: GLX_SGI_video_sync] + + [entry point: glXGetVideoSyncSGI] + +
+ example: [] + syntax: + content: public static int GetVideoSyncSGI(Span count) + parameters: + - id: count + type: System.Span{System.UInt32} + return: + type: System.Int32 + content.vb: Public Shared Function GetVideoSyncSGI(count As Span(Of UInteger)) As Integer + overload: OpenTK.Graphics.Glx.Glx.SGI.GetVideoSyncSGI* + nameWithType.vb: Glx.SGI.GetVideoSyncSGI(Span(Of UInteger)) + fullName.vb: OpenTK.Graphics.Glx.Glx.SGI.GetVideoSyncSGI(System.Span(Of UInteger)) + name.vb: GetVideoSyncSGI(Span(Of UInteger)) +- uid: OpenTK.Graphics.Glx.Glx.SGI.GetVideoSyncSGI(System.UInt32[]) + commentId: M:OpenTK.Graphics.Glx.Glx.SGI.GetVideoSyncSGI(System.UInt32[]) + id: GetVideoSyncSGI(System.UInt32[]) + parent: OpenTK.Graphics.Glx.Glx.SGI + langs: + - csharp + - vb + name: GetVideoSyncSGI(uint[]) + nameWithType: Glx.SGI.GetVideoSyncSGI(uint[]) + fullName: OpenTK.Graphics.Glx.Glx.SGI.GetVideoSyncSGI(uint[]) + type: Method + source: + id: GetVideoSyncSGI + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 1324 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Glx + summary: >- + [requires: GLX_SGI_video_sync] + + [entry point: glXGetVideoSyncSGI] + +
+ example: [] + syntax: + content: public static int GetVideoSyncSGI(uint[] count) + parameters: + - id: count + type: System.UInt32[] + return: + type: System.Int32 + content.vb: Public Shared Function GetVideoSyncSGI(count As UInteger()) As Integer + overload: OpenTK.Graphics.Glx.Glx.SGI.GetVideoSyncSGI* + nameWithType.vb: Glx.SGI.GetVideoSyncSGI(UInteger()) + fullName.vb: OpenTK.Graphics.Glx.Glx.SGI.GetVideoSyncSGI(UInteger()) + name.vb: GetVideoSyncSGI(UInteger()) - uid: OpenTK.Graphics.Glx.Glx.SGI.GetVideoSyncSGI(System.UInt32@) commentId: M:OpenTK.Graphics.Glx.Glx.SGI.GetVideoSyncSGI(System.UInt32@) id: GetVideoSyncSGI(System.UInt32@) @@ -277,13 +357,9 @@ items: fullName: OpenTK.Graphics.Glx.Glx.SGI.GetVideoSyncSGI(ref uint) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetVideoSyncSGI - path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 484 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 1334 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -306,6 +382,88 @@ items: nameWithType.vb: Glx.SGI.GetVideoSyncSGI(UInteger) fullName.vb: OpenTK.Graphics.Glx.Glx.SGI.GetVideoSyncSGI(UInteger) name.vb: GetVideoSyncSGI(UInteger) +- uid: OpenTK.Graphics.Glx.Glx.SGI.WaitVideoSyncSGI(System.Int32,System.Int32,System.Span{System.UInt32}) + commentId: M:OpenTK.Graphics.Glx.Glx.SGI.WaitVideoSyncSGI(System.Int32,System.Int32,System.Span{System.UInt32}) + id: WaitVideoSyncSGI(System.Int32,System.Int32,System.Span{System.UInt32}) + parent: OpenTK.Graphics.Glx.Glx.SGI + langs: + - csharp + - vb + name: WaitVideoSyncSGI(int, int, Span) + nameWithType: Glx.SGI.WaitVideoSyncSGI(int, int, Span) + fullName: OpenTK.Graphics.Glx.Glx.SGI.WaitVideoSyncSGI(int, int, System.Span) + type: Method + source: + id: WaitVideoSyncSGI + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 1344 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Glx + summary: >- + [requires: GLX_SGI_video_sync] + + [entry point: glXWaitVideoSyncSGI] + +
+ example: [] + syntax: + content: public static int WaitVideoSyncSGI(int divisor, int remainder, Span count) + parameters: + - id: divisor + type: System.Int32 + - id: remainder + type: System.Int32 + - id: count + type: System.Span{System.UInt32} + return: + type: System.Int32 + content.vb: Public Shared Function WaitVideoSyncSGI(divisor As Integer, remainder As Integer, count As Span(Of UInteger)) As Integer + overload: OpenTK.Graphics.Glx.Glx.SGI.WaitVideoSyncSGI* + nameWithType.vb: Glx.SGI.WaitVideoSyncSGI(Integer, Integer, Span(Of UInteger)) + fullName.vb: OpenTK.Graphics.Glx.Glx.SGI.WaitVideoSyncSGI(Integer, Integer, System.Span(Of UInteger)) + name.vb: WaitVideoSyncSGI(Integer, Integer, Span(Of UInteger)) +- uid: OpenTK.Graphics.Glx.Glx.SGI.WaitVideoSyncSGI(System.Int32,System.Int32,System.UInt32[]) + commentId: M:OpenTK.Graphics.Glx.Glx.SGI.WaitVideoSyncSGI(System.Int32,System.Int32,System.UInt32[]) + id: WaitVideoSyncSGI(System.Int32,System.Int32,System.UInt32[]) + parent: OpenTK.Graphics.Glx.Glx.SGI + langs: + - csharp + - vb + name: WaitVideoSyncSGI(int, int, uint[]) + nameWithType: Glx.SGI.WaitVideoSyncSGI(int, int, uint[]) + fullName: OpenTK.Graphics.Glx.Glx.SGI.WaitVideoSyncSGI(int, int, uint[]) + type: Method + source: + id: WaitVideoSyncSGI + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 1354 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Glx + summary: >- + [requires: GLX_SGI_video_sync] + + [entry point: glXWaitVideoSyncSGI] + +
+ example: [] + syntax: + content: public static int WaitVideoSyncSGI(int divisor, int remainder, uint[] count) + parameters: + - id: divisor + type: System.Int32 + - id: remainder + type: System.Int32 + - id: count + type: System.UInt32[] + return: + type: System.Int32 + content.vb: Public Shared Function WaitVideoSyncSGI(divisor As Integer, remainder As Integer, count As UInteger()) As Integer + overload: OpenTK.Graphics.Glx.Glx.SGI.WaitVideoSyncSGI* + nameWithType.vb: Glx.SGI.WaitVideoSyncSGI(Integer, Integer, UInteger()) + fullName.vb: OpenTK.Graphics.Glx.Glx.SGI.WaitVideoSyncSGI(Integer, Integer, UInteger()) + name.vb: WaitVideoSyncSGI(Integer, Integer, UInteger()) - uid: OpenTK.Graphics.Glx.Glx.SGI.WaitVideoSyncSGI(System.Int32,System.Int32,System.UInt32@) commentId: M:OpenTK.Graphics.Glx.Glx.SGI.WaitVideoSyncSGI(System.Int32,System.Int32,System.UInt32@) id: WaitVideoSyncSGI(System.Int32,System.Int32,System.UInt32@) @@ -318,13 +476,9 @@ items: fullName: OpenTK.Graphics.Glx.Glx.SGI.WaitVideoSyncSGI(int, int, ref uint) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: WaitVideoSyncSGI - path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 494 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 1364 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -737,6 +891,92 @@ references: name: WaitVideoSyncSGI nameWithType: Glx.SGI.WaitVideoSyncSGI fullName: OpenTK.Graphics.Glx.Glx.SGI.WaitVideoSyncSGI +- uid: System.Span{System.UInt32} + commentId: T:System.Span{System.UInt32} + parent: System + definition: System.Span`1 + href: https://learn.microsoft.com/dotnet/api/system.span-1 + name: Span + nameWithType: Span + fullName: System.Span + nameWithType.vb: Span(Of UInteger) + fullName.vb: System.Span(Of UInteger) + name.vb: Span(Of UInteger) + spec.csharp: + - uid: System.Span`1 + name: Span + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.span-1 + - name: < + - uid: System.UInt32 + name: uint + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.uint32 + - name: '>' + spec.vb: + - uid: System.Span`1 + name: Span + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.span-1 + - name: ( + - name: Of + - name: " " + - uid: System.UInt32 + name: UInteger + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.uint32 + - name: ) +- uid: System.Span`1 + commentId: T:System.Span`1 + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.span-1 + name: Span + nameWithType: Span + fullName: System.Span + nameWithType.vb: Span(Of T) + fullName.vb: System.Span(Of T) + name.vb: Span(Of T) + spec.csharp: + - uid: System.Span`1 + name: Span + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.span-1 + - name: < + - name: T + - name: '>' + spec.vb: + - uid: System.Span`1 + name: Span + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.span-1 + - name: ( + - name: Of + - name: " " + - name: T + - name: ) +- uid: System.UInt32[] + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.uint32 + name: uint[] + nameWithType: uint[] + fullName: uint[] + nameWithType.vb: UInteger() + fullName.vb: UInteger() + name.vb: UInteger() + spec.csharp: + - uid: System.UInt32 + name: uint + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.uint32 + - name: '[' + - name: ']' + spec.vb: + - uid: System.UInt32 + name: UInteger + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.uint32 + - name: ( + - name: ) - uid: System.UInt32 commentId: T:System.UInt32 parent: System diff --git a/api/OpenTK.Graphics.Glx.Glx.SGIX.yml b/api/OpenTK.Graphics.Glx.Glx.SGIX.yml index 9a24139b..c149699f 100644 --- a/api/OpenTK.Graphics.Glx.Glx.SGIX.yml +++ b/api/OpenTK.Graphics.Glx.Glx.SGIX.yml @@ -12,42 +12,70 @@ items: - OpenTK.Graphics.Glx.Glx.SGIX.ChannelRectSyncSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,OpenTK.Graphics.Glx.All) - OpenTK.Graphics.Glx.Glx.SGIX.ChooseFBConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32*,System.Int32*) - OpenTK.Graphics.Glx.Glx.SGIX.ChooseFBConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32@,System.Int32@) + - OpenTK.Graphics.Glx.Glx.SGIX.ChooseFBConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32[],System.Int32[]) + - OpenTK.Graphics.Glx.Glx.SGIX.ChooseFBConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Span{System.Int32},System.Span{System.Int32}) - OpenTK.Graphics.Glx.Glx.SGIX.CreateContextWithConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfigSGIX,System.Int32,OpenTK.Graphics.Glx.GLXContext,System.Boolean) - OpenTK.Graphics.Glx.Glx.SGIX.CreateGLXPbufferSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfigSGIX,System.UInt32,System.UInt32,System.Int32*) - OpenTK.Graphics.Glx.Glx.SGIX.CreateGLXPbufferSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfigSGIX,System.UInt32,System.UInt32,System.Int32@) + - OpenTK.Graphics.Glx.Glx.SGIX.CreateGLXPbufferSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfigSGIX,System.UInt32,System.UInt32,System.Int32[]) + - OpenTK.Graphics.Glx.Glx.SGIX.CreateGLXPbufferSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfigSGIX,System.UInt32,System.UInt32,System.Span{System.Int32}) - OpenTK.Graphics.Glx.Glx.SGIX.CreateGLXPixmapWithConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfigSGIX,OpenTK.Graphics.Glx.Pixmap) - OpenTK.Graphics.Glx.Glx.SGIX.DestroyGLXPbufferSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXPbufferSGIX) - OpenTK.Graphics.Glx.Glx.SGIX.DestroyHyperpipeConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32) - OpenTK.Graphics.Glx.Glx.SGIX.GetFBConfigAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfigSGIX,System.Int32,System.Int32*) - OpenTK.Graphics.Glx.Glx.SGIX.GetFBConfigAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfigSGIX,System.Int32,System.Int32@) + - OpenTK.Graphics.Glx.Glx.SGIX.GetFBConfigAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfigSGIX,System.Int32,System.Int32[]) + - OpenTK.Graphics.Glx.Glx.SGIX.GetFBConfigAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfigSGIX,System.Int32,System.Span{System.Int32}) - OpenTK.Graphics.Glx.Glx.SGIX.GetFBConfigFromVisualSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.XVisualInfoPtr) + - OpenTK.Graphics.Glx.Glx.SGIX.GetSelectedEventSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Span{System.UInt64}) - OpenTK.Graphics.Glx.Glx.SGIX.GetSelectedEventSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.UInt64*) - OpenTK.Graphics.Glx.Glx.SGIX.GetSelectedEventSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.UInt64@) + - OpenTK.Graphics.Glx.Glx.SGIX.GetSelectedEventSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.UInt64[]) - OpenTK.Graphics.Glx.Glx.SGIX.GetVisualFromFBConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfigSGIX) - OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.IntPtr) - OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.Void*) + - OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeAttribSGIX``1(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.Span{``0}) - OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeAttribSGIX``1(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,``0@) + - OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeAttribSGIX``1(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,``0[]) - OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX*,System.Int32*) - OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX@,System.Int32@) + - OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX[],System.Int32[]) + - OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Span{OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX},System.Span{System.Int32}) - OpenTK.Graphics.Glx.Glx.SGIX.JoinSwapGroupSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,OpenTK.Graphics.Glx.GLXDrawable) - OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelDeltasSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32*,System.Int32*,System.Int32*,System.Int32*) - OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelDeltasSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32@,System.Int32@,System.Int32@,System.Int32@) + - OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelDeltasSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32[],System.Int32[],System.Int32[],System.Int32[]) + - OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelDeltasSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Span{System.Int32},System.Span{System.Int32},System.Span{System.Int32},System.Span{System.Int32}) - OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelRectSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32*,System.Int32*,System.Int32*,System.Int32*) - OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelRectSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32@,System.Int32@,System.Int32@,System.Int32@) + - OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelRectSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32[],System.Int32[],System.Int32[],System.Int32[]) + - OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelRectSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Span{System.Int32},System.Span{System.Int32},System.Span{System.Int32},System.Span{System.Int32}) + - OpenTK.Graphics.Glx.Glx.SGIX.QueryGLXPbufferSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXPbufferSGIX,System.Int32,System.Span{System.UInt32}) - OpenTK.Graphics.Glx.Glx.SGIX.QueryGLXPbufferSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXPbufferSGIX,System.Int32,System.UInt32*) - OpenTK.Graphics.Glx.Glx.SGIX.QueryGLXPbufferSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXPbufferSGIX,System.Int32,System.UInt32@) + - OpenTK.Graphics.Glx.Glx.SGIX.QueryGLXPbufferSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXPbufferSGIX,System.Int32,System.UInt32[]) - OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.IntPtr) - OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.Void*) + - OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeAttribSGIX``1(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.Span{``0}) - OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeAttribSGIX``1(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,``0@) + - OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeAttribSGIX``1(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,``0[]) - OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeBestAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.IntPtr,System.IntPtr) - OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeBestAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.Void*,System.Void*) + - OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeBestAttribSGIX``2(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.Span{``0},System.Span{``1}) - OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeBestAttribSGIX``2(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,``0@,``1@) + - OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeBestAttribSGIX``2(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,``0[],``1[]) - OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32*) - OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32@) + - OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32[]) + - OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Span{System.Int32}) - OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeNetworkSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32*) - OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeNetworkSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32@) + - OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeNetworkSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32[]) + - OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeNetworkSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Span{System.Int32}) - OpenTK.Graphics.Glx.Glx.SGIX.QueryMaxSwapBarriersSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32*) - OpenTK.Graphics.Glx.Glx.SGIX.QueryMaxSwapBarriersSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32@) + - OpenTK.Graphics.Glx.Glx.SGIX.QueryMaxSwapBarriersSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32[]) + - OpenTK.Graphics.Glx.Glx.SGIX.QueryMaxSwapBarriersSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Span{System.Int32}) - OpenTK.Graphics.Glx.Glx.SGIX.SelectEventSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.UInt64) langs: - csharp @@ -57,13 +85,9 @@ items: fullName: OpenTK.Graphics.Glx.Glx.SGIX type: Class source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SGIX - path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 504 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 1374 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -94,17 +118,18 @@ items: fullName: OpenTK.Graphics.Glx.Glx.SGIX.BindChannelToWindowSGIX(OpenTK.Graphics.Glx.DisplayPtr, int, int, OpenTK.Graphics.Glx.Window) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: BindChannelToWindowSGIX - path: opentk/src/OpenTK.Graphics/Glx/GLX.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs startLine: 352 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx - summary: '[requires: GLX_SGIX_video_resize] [entry point: glXBindChannelToWindowSGIX]
' + summary: >- + [requires: GLX_SGIX_video_resize] + + [entry point: glXBindChannelToWindowSGIX] + +
example: [] syntax: content: public static int BindChannelToWindowSGIX(DisplayPtr display, int screen, int channel, Window window) @@ -136,17 +161,18 @@ items: fullName: OpenTK.Graphics.Glx.Glx.SGIX.BindHyperpipeSGIX(OpenTK.Graphics.Glx.DisplayPtr, int) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: BindHyperpipeSGIX - path: opentk/src/OpenTK.Graphics/Glx/GLX.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs startLine: 355 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx - summary: '[requires: GLX_SGIX_hyperpipe] [entry point: glXBindHyperpipeSGIX]
' + summary: >- + [requires: GLX_SGIX_hyperpipe] + + [entry point: glXBindHyperpipeSGIX] + +
example: [] syntax: content: public static int BindHyperpipeSGIX(DisplayPtr dpy, int hpId) @@ -174,17 +200,18 @@ items: fullName: OpenTK.Graphics.Glx.Glx.SGIX.BindSwapBarrierSGIX(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, int) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: BindSwapBarrierSGIX - path: opentk/src/OpenTK.Graphics/Glx/GLX.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs startLine: 358 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx - summary: '[requires: GLX_SGIX_swap_barrier] [entry point: glXBindSwapBarrierSGIX]
' + summary: >- + [requires: GLX_SGIX_swap_barrier] + + [entry point: glXBindSwapBarrierSGIX] + +
example: [] syntax: content: public static void BindSwapBarrierSGIX(DisplayPtr dpy, GLXDrawable drawable, int barrier) @@ -212,17 +239,18 @@ items: fullName: OpenTK.Graphics.Glx.Glx.SGIX.ChannelRectSGIX(OpenTK.Graphics.Glx.DisplayPtr, int, int, int, int, int, int) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ChannelRectSGIX - path: opentk/src/OpenTK.Graphics/Glx/GLX.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs startLine: 361 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx - summary: '[requires: GLX_SGIX_video_resize] [entry point: glXChannelRectSGIX]
' + summary: >- + [requires: GLX_SGIX_video_resize] + + [entry point: glXChannelRectSGIX] + +
example: [] syntax: content: public static int ChannelRectSGIX(DisplayPtr display, int screen, int channel, int x, int y, int w, int h) @@ -260,17 +288,18 @@ items: fullName: OpenTK.Graphics.Glx.Glx.SGIX.ChannelRectSyncSGIX(OpenTK.Graphics.Glx.DisplayPtr, int, int, OpenTK.Graphics.Glx.All) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ChannelRectSyncSGIX - path: opentk/src/OpenTK.Graphics/Glx/GLX.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs startLine: 364 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx - summary: '[requires: GLX_SGIX_video_resize] [entry point: glXChannelRectSyncSGIX]
' + summary: >- + [requires: GLX_SGIX_video_resize] + + [entry point: glXChannelRectSyncSGIX] + +
example: [] syntax: content: public static int ChannelRectSyncSGIX(DisplayPtr display, int screen, int channel, All synctype) @@ -302,17 +331,18 @@ items: fullName: OpenTK.Graphics.Glx.Glx.SGIX.ChooseFBConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr, int, int*, int*) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ChooseFBConfigSGIX - path: opentk/src/OpenTK.Graphics/Glx/GLX.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs startLine: 367 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx - summary: '[requires: GLX_SGIX_fbconfig] [entry point: glXChooseFBConfigSGIX]
' + summary: >- + [requires: GLX_SGIX_fbconfig] + + [entry point: glXChooseFBConfigSGIX] + +
example: [] syntax: content: public static GLXFBConfigSGIX* ChooseFBConfigSGIX(DisplayPtr dpy, int screen, int* attrib_list, int* nelements) @@ -344,17 +374,18 @@ items: fullName: OpenTK.Graphics.Glx.Glx.SGIX.CreateContextWithConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfigSGIX, int, OpenTK.Graphics.Glx.GLXContext, bool) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateContextWithConfigSGIX - path: opentk/src/OpenTK.Graphics/Glx/GLX.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs startLine: 370 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx - summary: '[requires: GLX_SGIX_fbconfig] [entry point: glXCreateContextWithConfigSGIX]
' + summary: >- + [requires: GLX_SGIX_fbconfig] + + [entry point: glXCreateContextWithConfigSGIX] + +
example: [] syntax: content: public static GLXContext CreateContextWithConfigSGIX(DisplayPtr dpy, GLXFBConfigSGIX config, int render_type, GLXContext share_list, bool direct) @@ -388,17 +419,18 @@ items: fullName: OpenTK.Graphics.Glx.Glx.SGIX.CreateGLXPbufferSGIX(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfigSGIX, uint, uint, int*) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateGLXPbufferSGIX - path: opentk/src/OpenTK.Graphics/Glx/GLX.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs startLine: 373 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx - summary: '[requires: GLX_SGIX_pbuffer] [entry point: glXCreateGLXPbufferSGIX]
' + summary: >- + [requires: GLX_SGIX_pbuffer] + + [entry point: glXCreateGLXPbufferSGIX] + +
example: [] syntax: content: public static GLXPbufferSGIX CreateGLXPbufferSGIX(DisplayPtr dpy, GLXFBConfigSGIX config, uint width, uint height, int* attrib_list) @@ -432,17 +464,18 @@ items: fullName: OpenTK.Graphics.Glx.Glx.SGIX.CreateGLXPixmapWithConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfigSGIX, OpenTK.Graphics.Glx.Pixmap) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateGLXPixmapWithConfigSGIX - path: opentk/src/OpenTK.Graphics/Glx/GLX.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs startLine: 376 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx - summary: '[requires: GLX_SGIX_fbconfig] [entry point: glXCreateGLXPixmapWithConfigSGIX]
' + summary: >- + [requires: GLX_SGIX_fbconfig] + + [entry point: glXCreateGLXPixmapWithConfigSGIX] + +
example: [] syntax: content: public static GLXPixmap CreateGLXPixmapWithConfigSGIX(DisplayPtr dpy, GLXFBConfigSGIX config, Pixmap pixmap) @@ -469,17 +502,18 @@ items: fullName: OpenTK.Graphics.Glx.Glx.SGIX.DestroyGLXPbufferSGIX(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXPbufferSGIX) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DestroyGLXPbufferSGIX - path: opentk/src/OpenTK.Graphics/Glx/GLX.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs startLine: 379 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx - summary: '[requires: GLX_SGIX_pbuffer] [entry point: glXDestroyGLXPbufferSGIX]
' + summary: >- + [requires: GLX_SGIX_pbuffer] + + [entry point: glXDestroyGLXPbufferSGIX] + +
example: [] syntax: content: public static void DestroyGLXPbufferSGIX(DisplayPtr dpy, GLXPbufferSGIX pbuf) @@ -502,17 +536,18 @@ items: fullName: OpenTK.Graphics.Glx.Glx.SGIX.DestroyHyperpipeConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr, int) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DestroyHyperpipeConfigSGIX - path: opentk/src/OpenTK.Graphics/Glx/GLX.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs startLine: 382 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx - summary: '[requires: GLX_SGIX_hyperpipe] [entry point: glXDestroyHyperpipeConfigSGIX]
' + summary: >- + [requires: GLX_SGIX_hyperpipe] + + [entry point: glXDestroyHyperpipeConfigSGIX] + +
example: [] syntax: content: public static int DestroyHyperpipeConfigSGIX(DisplayPtr dpy, int hpId) @@ -540,17 +575,18 @@ items: fullName: OpenTK.Graphics.Glx.Glx.SGIX.GetFBConfigAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfigSGIX, int, int*) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetFBConfigAttribSGIX - path: opentk/src/OpenTK.Graphics/Glx/GLX.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs startLine: 385 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx - summary: '[requires: GLX_SGIX_fbconfig] [entry point: glXGetFBConfigAttribSGIX]
' + summary: >- + [requires: GLX_SGIX_fbconfig] + + [entry point: glXGetFBConfigAttribSGIX] + +
example: [] syntax: content: public static int GetFBConfigAttribSGIX(DisplayPtr dpy, GLXFBConfigSGIX config, int attribute, int* value) @@ -582,17 +618,18 @@ items: fullName: OpenTK.Graphics.Glx.Glx.SGIX.GetFBConfigFromVisualSGIX(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.XVisualInfoPtr) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetFBConfigFromVisualSGIX - path: opentk/src/OpenTK.Graphics/Glx/GLX.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs startLine: 388 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx - summary: '[requires: GLX_SGIX_fbconfig] [entry point: glXGetFBConfigFromVisualSGIX]
' + summary: >- + [requires: GLX_SGIX_fbconfig] + + [entry point: glXGetFBConfigFromVisualSGIX] + +
example: [] syntax: content: public static GLXFBConfigSGIX GetFBConfigFromVisualSGIX(DisplayPtr dpy, XVisualInfoPtr vis) @@ -617,17 +654,18 @@ items: fullName: OpenTK.Graphics.Glx.Glx.SGIX.GetSelectedEventSGIX(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, ulong*) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetSelectedEventSGIX - path: opentk/src/OpenTK.Graphics/Glx/GLX.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs startLine: 391 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx - summary: '[requires: GLX_SGIX_pbuffer] [entry point: glXGetSelectedEventSGIX]
' + summary: >- + [requires: GLX_SGIX_pbuffer] + + [entry point: glXGetSelectedEventSGIX] + +
example: [] syntax: content: public static void GetSelectedEventSGIX(DisplayPtr dpy, GLXDrawable drawable, ulong* mask) @@ -655,17 +693,18 @@ items: fullName: OpenTK.Graphics.Glx.Glx.SGIX.GetVisualFromFBConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfigSGIX) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetVisualFromFBConfigSGIX - path: opentk/src/OpenTK.Graphics/Glx/GLX.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs startLine: 394 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx - summary: '[requires: GLX_SGIX_fbconfig] [entry point: glXGetVisualFromFBConfigSGIX]
' + summary: >- + [requires: GLX_SGIX_fbconfig] + + [entry point: glXGetVisualFromFBConfigSGIX] + +
example: [] syntax: content: public static XVisualInfoPtr GetVisualFromFBConfigSGIX(DisplayPtr dpy, GLXFBConfigSGIX config) @@ -690,17 +729,18 @@ items: fullName: OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr, int, int, int, void*) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: HyperpipeAttribSGIX - path: opentk/src/OpenTK.Graphics/Glx/GLX.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs startLine: 397 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx - summary: '[requires: GLX_SGIX_hyperpipe] [entry point: glXHyperpipeAttribSGIX]
' + summary: >- + [requires: GLX_SGIX_hyperpipe] + + [entry point: glXHyperpipeAttribSGIX] + +
example: [] syntax: content: public static int HyperpipeAttribSGIX(DisplayPtr dpy, int timeSlice, int attrib, int size, void* attribList) @@ -734,17 +774,18 @@ items: fullName: OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr, int, int, OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX*, int*) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: HyperpipeConfigSGIX - path: opentk/src/OpenTK.Graphics/Glx/GLX.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs startLine: 400 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx - summary: '[requires: GLX_SGIX_hyperpipe] [entry point: glXHyperpipeConfigSGIX]
' + summary: >- + [requires: GLX_SGIX_hyperpipe] + + [entry point: glXHyperpipeConfigSGIX] + +
example: [] syntax: content: public static int HyperpipeConfigSGIX(DisplayPtr dpy, int networkId, int npipes, GLXHyperpipeConfigSGIX* cfg, int* hpId) @@ -778,17 +819,18 @@ items: fullName: OpenTK.Graphics.Glx.Glx.SGIX.JoinSwapGroupSGIX(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, OpenTK.Graphics.Glx.GLXDrawable) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: JoinSwapGroupSGIX - path: opentk/src/OpenTK.Graphics/Glx/GLX.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs startLine: 403 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx - summary: '[requires: GLX_SGIX_swap_group] [entry point: glXJoinSwapGroupSGIX]
' + summary: >- + [requires: GLX_SGIX_swap_group] + + [entry point: glXJoinSwapGroupSGIX] + +
example: [] syntax: content: public static void JoinSwapGroupSGIX(DisplayPtr dpy, GLXDrawable drawable, GLXDrawable member) @@ -813,17 +855,18 @@ items: fullName: OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelDeltasSGIX(OpenTK.Graphics.Glx.DisplayPtr, int, int, int*, int*, int*, int*) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: QueryChannelDeltasSGIX - path: opentk/src/OpenTK.Graphics/Glx/GLX.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs startLine: 406 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx - summary: '[requires: GLX_SGIX_video_resize] [entry point: glXQueryChannelDeltasSGIX]
' + summary: >- + [requires: GLX_SGIX_video_resize] + + [entry point: glXQueryChannelDeltasSGIX] + +
example: [] syntax: content: public static int QueryChannelDeltasSGIX(DisplayPtr display, int screen, int channel, int* x, int* y, int* w, int* h) @@ -861,17 +904,18 @@ items: fullName: OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelRectSGIX(OpenTK.Graphics.Glx.DisplayPtr, int, int, int*, int*, int*, int*) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: QueryChannelRectSGIX - path: opentk/src/OpenTK.Graphics/Glx/GLX.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs startLine: 409 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx - summary: '[requires: GLX_SGIX_video_resize] [entry point: glXQueryChannelRectSGIX]
' + summary: >- + [requires: GLX_SGIX_video_resize] + + [entry point: glXQueryChannelRectSGIX] + +
example: [] syntax: content: public static int QueryChannelRectSGIX(DisplayPtr display, int screen, int channel, int* dx, int* dy, int* dw, int* dh) @@ -909,17 +953,18 @@ items: fullName: OpenTK.Graphics.Glx.Glx.SGIX.QueryGLXPbufferSGIX(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXPbufferSGIX, int, uint*) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: QueryGLXPbufferSGIX - path: opentk/src/OpenTK.Graphics/Glx/GLX.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs startLine: 412 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx - summary: '[requires: GLX_SGIX_pbuffer] [entry point: glXQueryGLXPbufferSGIX]
' + summary: >- + [requires: GLX_SGIX_pbuffer] + + [entry point: glXQueryGLXPbufferSGIX] + +
example: [] syntax: content: public static void QueryGLXPbufferSGIX(DisplayPtr dpy, GLXPbufferSGIX pbuf, int attribute, uint* value) @@ -949,17 +994,18 @@ items: fullName: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr, int, int, int, void*) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: QueryHyperpipeAttribSGIX - path: opentk/src/OpenTK.Graphics/Glx/GLX.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs startLine: 415 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx - summary: '[requires: GLX_SGIX_hyperpipe] [entry point: glXQueryHyperpipeAttribSGIX]
' + summary: >- + [requires: GLX_SGIX_hyperpipe] + + [entry point: glXQueryHyperpipeAttribSGIX] + +
example: [] syntax: content: public static int QueryHyperpipeAttribSGIX(DisplayPtr dpy, int timeSlice, int attrib, int size, void* returnAttribList) @@ -993,17 +1039,18 @@ items: fullName: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeBestAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr, int, int, int, void*, void*) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: QueryHyperpipeBestAttribSGIX - path: opentk/src/OpenTK.Graphics/Glx/GLX.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs startLine: 418 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx - summary: '[requires: GLX_SGIX_hyperpipe] [entry point: glXQueryHyperpipeBestAttribSGIX]
' + summary: >- + [requires: GLX_SGIX_hyperpipe] + + [entry point: glXQueryHyperpipeBestAttribSGIX] + +
example: [] syntax: content: public static int QueryHyperpipeBestAttribSGIX(DisplayPtr dpy, int timeSlice, int attrib, int size, void* attribList, void* returnAttribList) @@ -1039,17 +1086,18 @@ items: fullName: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr, int, int*) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: QueryHyperpipeConfigSGIX - path: opentk/src/OpenTK.Graphics/Glx/GLX.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs startLine: 421 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx - summary: '[requires: GLX_SGIX_hyperpipe] [entry point: glXQueryHyperpipeConfigSGIX]
' + summary: >- + [requires: GLX_SGIX_hyperpipe] + + [entry point: glXQueryHyperpipeConfigSGIX] + +
example: [] syntax: content: public static GLXHyperpipeConfigSGIX* QueryHyperpipeConfigSGIX(DisplayPtr dpy, int hpId, int* npipes) @@ -1079,17 +1127,18 @@ items: fullName: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeNetworkSGIX(OpenTK.Graphics.Glx.DisplayPtr, int*) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: QueryHyperpipeNetworkSGIX - path: opentk/src/OpenTK.Graphics/Glx/GLX.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs startLine: 424 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx - summary: '[requires: GLX_SGIX_hyperpipe] [entry point: glXQueryHyperpipeNetworkSGIX]
' + summary: >- + [requires: GLX_SGIX_hyperpipe] + + [entry point: glXQueryHyperpipeNetworkSGIX] + +
example: [] syntax: content: public static GLXHyperpipeNetworkSGIX* QueryHyperpipeNetworkSGIX(DisplayPtr dpy, int* npipes) @@ -1117,17 +1166,18 @@ items: fullName: OpenTK.Graphics.Glx.Glx.SGIX.QueryMaxSwapBarriersSGIX(OpenTK.Graphics.Glx.DisplayPtr, int, int*) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: QueryMaxSwapBarriersSGIX - path: opentk/src/OpenTK.Graphics/Glx/GLX.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs startLine: 427 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx - summary: '[requires: GLX_SGIX_swap_barrier] [entry point: glXQueryMaxSwapBarriersSGIX]
' + summary: >- + [requires: GLX_SGIX_swap_barrier] + + [entry point: glXQueryMaxSwapBarriersSGIX] + +
example: [] syntax: content: public static bool QueryMaxSwapBarriersSGIX(DisplayPtr dpy, int screen, int* max) @@ -1157,17 +1207,18 @@ items: fullName: OpenTK.Graphics.Glx.Glx.SGIX.SelectEventSGIX(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, ulong) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SelectEventSGIX - path: opentk/src/OpenTK.Graphics/Glx/GLX.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs startLine: 430 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx - summary: '[requires: GLX_SGIX_pbuffer] [entry point: glXSelectEventSGIX]
' + summary: >- + [requires: GLX_SGIX_pbuffer] + + [entry point: glXSelectEventSGIX] + +
example: [] syntax: content: public static void SelectEventSGIX(DisplayPtr dpy, GLXDrawable drawable, ulong mask) @@ -1183,6 +1234,92 @@ items: nameWithType.vb: Glx.SGIX.SelectEventSGIX(DisplayPtr, GLXDrawable, ULong) fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.SelectEventSGIX(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, ULong) name.vb: SelectEventSGIX(DisplayPtr, GLXDrawable, ULong) +- uid: OpenTK.Graphics.Glx.Glx.SGIX.ChooseFBConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Span{System.Int32},System.Span{System.Int32}) + commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.ChooseFBConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Span{System.Int32},System.Span{System.Int32}) + id: ChooseFBConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Span{System.Int32},System.Span{System.Int32}) + parent: OpenTK.Graphics.Glx.Glx.SGIX + langs: + - csharp + - vb + name: ChooseFBConfigSGIX(DisplayPtr, int, Span, Span) + nameWithType: Glx.SGIX.ChooseFBConfigSGIX(DisplayPtr, int, Span, Span) + fullName: OpenTK.Graphics.Glx.Glx.SGIX.ChooseFBConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr, int, System.Span, System.Span) + type: Method + source: + id: ChooseFBConfigSGIX + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 1377 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Glx + summary: >- + [requires: GLX_SGIX_fbconfig] + + [entry point: glXChooseFBConfigSGIX] + +
+ example: [] + syntax: + content: public static GLXFBConfigSGIX* ChooseFBConfigSGIX(DisplayPtr dpy, int screen, Span attrib_list, Span nelements) + parameters: + - id: dpy + type: OpenTK.Graphics.Glx.DisplayPtr + - id: screen + type: System.Int32 + - id: attrib_list + type: System.Span{System.Int32} + - id: nelements + type: System.Span{System.Int32} + return: + type: OpenTK.Graphics.Glx.GLXFBConfigSGIX* + content.vb: Public Shared Function ChooseFBConfigSGIX(dpy As DisplayPtr, screen As Integer, attrib_list As Span(Of Integer), nelements As Span(Of Integer)) As GLXFBConfigSGIX* + overload: OpenTK.Graphics.Glx.Glx.SGIX.ChooseFBConfigSGIX* + nameWithType.vb: Glx.SGIX.ChooseFBConfigSGIX(DisplayPtr, Integer, Span(Of Integer), Span(Of Integer)) + fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.ChooseFBConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr, Integer, System.Span(Of Integer), System.Span(Of Integer)) + name.vb: ChooseFBConfigSGIX(DisplayPtr, Integer, Span(Of Integer), Span(Of Integer)) +- uid: OpenTK.Graphics.Glx.Glx.SGIX.ChooseFBConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32[],System.Int32[]) + commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.ChooseFBConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32[],System.Int32[]) + id: ChooseFBConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32[],System.Int32[]) + parent: OpenTK.Graphics.Glx.Glx.SGIX + langs: + - csharp + - vb + name: ChooseFBConfigSGIX(DisplayPtr, int, int[], int[]) + nameWithType: Glx.SGIX.ChooseFBConfigSGIX(DisplayPtr, int, int[], int[]) + fullName: OpenTK.Graphics.Glx.Glx.SGIX.ChooseFBConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr, int, int[], int[]) + type: Method + source: + id: ChooseFBConfigSGIX + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 1390 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Glx + summary: >- + [requires: GLX_SGIX_fbconfig] + + [entry point: glXChooseFBConfigSGIX] + +
+ example: [] + syntax: + content: public static GLXFBConfigSGIX* ChooseFBConfigSGIX(DisplayPtr dpy, int screen, int[] attrib_list, int[] nelements) + parameters: + - id: dpy + type: OpenTK.Graphics.Glx.DisplayPtr + - id: screen + type: System.Int32 + - id: attrib_list + type: System.Int32[] + - id: nelements + type: System.Int32[] + return: + type: OpenTK.Graphics.Glx.GLXFBConfigSGIX* + content.vb: Public Shared Function ChooseFBConfigSGIX(dpy As DisplayPtr, screen As Integer, attrib_list As Integer(), nelements As Integer()) As GLXFBConfigSGIX* + overload: OpenTK.Graphics.Glx.Glx.SGIX.ChooseFBConfigSGIX* + nameWithType.vb: Glx.SGIX.ChooseFBConfigSGIX(DisplayPtr, Integer, Integer(), Integer()) + fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.ChooseFBConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer(), Integer()) + name.vb: ChooseFBConfigSGIX(DisplayPtr, Integer, Integer(), Integer()) - uid: OpenTK.Graphics.Glx.Glx.SGIX.ChooseFBConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32@,System.Int32@) commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.ChooseFBConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32@,System.Int32@) id: ChooseFBConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32@,System.Int32@) @@ -1195,13 +1332,9 @@ items: fullName: OpenTK.Graphics.Glx.Glx.SGIX.ChooseFBConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr, int, ref int, ref int) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ChooseFBConfigSGIX - path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 507 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 1403 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -1230,25 +1363,21 @@ items: nameWithType.vb: Glx.SGIX.ChooseFBConfigSGIX(DisplayPtr, Integer, Integer, Integer) fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.ChooseFBConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer, Integer) name.vb: ChooseFBConfigSGIX(DisplayPtr, Integer, Integer, Integer) -- uid: OpenTK.Graphics.Glx.Glx.SGIX.CreateGLXPbufferSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfigSGIX,System.UInt32,System.UInt32,System.Int32@) - commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.CreateGLXPbufferSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfigSGIX,System.UInt32,System.UInt32,System.Int32@) - id: CreateGLXPbufferSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfigSGIX,System.UInt32,System.UInt32,System.Int32@) +- uid: OpenTK.Graphics.Glx.Glx.SGIX.CreateGLXPbufferSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfigSGIX,System.UInt32,System.UInt32,System.Span{System.Int32}) + commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.CreateGLXPbufferSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfigSGIX,System.UInt32,System.UInt32,System.Span{System.Int32}) + id: CreateGLXPbufferSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfigSGIX,System.UInt32,System.UInt32,System.Span{System.Int32}) parent: OpenTK.Graphics.Glx.Glx.SGIX langs: - csharp - vb - name: CreateGLXPbufferSGIX(DisplayPtr, GLXFBConfigSGIX, uint, uint, ref int) - nameWithType: Glx.SGIX.CreateGLXPbufferSGIX(DisplayPtr, GLXFBConfigSGIX, uint, uint, ref int) - fullName: OpenTK.Graphics.Glx.Glx.SGIX.CreateGLXPbufferSGIX(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfigSGIX, uint, uint, ref int) + name: CreateGLXPbufferSGIX(DisplayPtr, GLXFBConfigSGIX, uint, uint, Span) + nameWithType: Glx.SGIX.CreateGLXPbufferSGIX(DisplayPtr, GLXFBConfigSGIX, uint, uint, Span) + fullName: OpenTK.Graphics.Glx.Glx.SGIX.CreateGLXPbufferSGIX(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfigSGIX, uint, uint, System.Span) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateGLXPbufferSGIX - path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 518 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 1414 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -1260,7 +1389,7 @@ items:
example: [] syntax: - content: public static GLXPbufferSGIX CreateGLXPbufferSGIX(DisplayPtr dpy, GLXFBConfigSGIX config, uint width, uint height, ref int attrib_list) + content: public static GLXPbufferSGIX CreateGLXPbufferSGIX(DisplayPtr dpy, GLXFBConfigSGIX config, uint width, uint height, Span attrib_list) parameters: - id: dpy type: OpenTK.Graphics.Glx.DisplayPtr @@ -1271,80 +1400,326 @@ items: - id: height type: System.UInt32 - id: attrib_list - type: System.Int32 + type: System.Span{System.Int32} return: type: OpenTK.Graphics.Glx.GLXPbufferSGIX - content.vb: Public Shared Function CreateGLXPbufferSGIX(dpy As DisplayPtr, config As GLXFBConfigSGIX, width As UInteger, height As UInteger, attrib_list As Integer) As GLXPbufferSGIX + content.vb: Public Shared Function CreateGLXPbufferSGIX(dpy As DisplayPtr, config As GLXFBConfigSGIX, width As UInteger, height As UInteger, attrib_list As Span(Of Integer)) As GLXPbufferSGIX overload: OpenTK.Graphics.Glx.Glx.SGIX.CreateGLXPbufferSGIX* - nameWithType.vb: Glx.SGIX.CreateGLXPbufferSGIX(DisplayPtr, GLXFBConfigSGIX, UInteger, UInteger, Integer) - fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.CreateGLXPbufferSGIX(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfigSGIX, UInteger, UInteger, Integer) - name.vb: CreateGLXPbufferSGIX(DisplayPtr, GLXFBConfigSGIX, UInteger, UInteger, Integer) -- uid: OpenTK.Graphics.Glx.Glx.SGIX.GetFBConfigAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfigSGIX,System.Int32,System.Int32@) - commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.GetFBConfigAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfigSGIX,System.Int32,System.Int32@) - id: GetFBConfigAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfigSGIX,System.Int32,System.Int32@) + nameWithType.vb: Glx.SGIX.CreateGLXPbufferSGIX(DisplayPtr, GLXFBConfigSGIX, UInteger, UInteger, Span(Of Integer)) + fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.CreateGLXPbufferSGIX(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfigSGIX, UInteger, UInteger, System.Span(Of Integer)) + name.vb: CreateGLXPbufferSGIX(DisplayPtr, GLXFBConfigSGIX, UInteger, UInteger, Span(Of Integer)) +- uid: OpenTK.Graphics.Glx.Glx.SGIX.CreateGLXPbufferSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfigSGIX,System.UInt32,System.UInt32,System.Int32[]) + commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.CreateGLXPbufferSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfigSGIX,System.UInt32,System.UInt32,System.Int32[]) + id: CreateGLXPbufferSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfigSGIX,System.UInt32,System.UInt32,System.Int32[]) parent: OpenTK.Graphics.Glx.Glx.SGIX langs: - csharp - vb - name: GetFBConfigAttribSGIX(DisplayPtr, GLXFBConfigSGIX, int, ref int) - nameWithType: Glx.SGIX.GetFBConfigAttribSGIX(DisplayPtr, GLXFBConfigSGIX, int, ref int) - fullName: OpenTK.Graphics.Glx.Glx.SGIX.GetFBConfigAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfigSGIX, int, ref int) + name: CreateGLXPbufferSGIX(DisplayPtr, GLXFBConfigSGIX, uint, uint, int[]) + nameWithType: Glx.SGIX.CreateGLXPbufferSGIX(DisplayPtr, GLXFBConfigSGIX, uint, uint, int[]) + fullName: OpenTK.Graphics.Glx.Glx.SGIX.CreateGLXPbufferSGIX(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfigSGIX, uint, uint, int[]) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: GetFBConfigAttribSGIX - path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 528 + id: CreateGLXPbufferSGIX + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 1424 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx summary: >- - [requires: GLX_SGIX_fbconfig] + [requires: GLX_SGIX_pbuffer] - [entry point: glXGetFBConfigAttribSGIX] + [entry point: glXCreateGLXPbufferSGIX]
example: [] syntax: - content: public static int GetFBConfigAttribSGIX(DisplayPtr dpy, GLXFBConfigSGIX config, int attribute, ref int value) + content: public static GLXPbufferSGIX CreateGLXPbufferSGIX(DisplayPtr dpy, GLXFBConfigSGIX config, uint width, uint height, int[] attrib_list) parameters: - id: dpy type: OpenTK.Graphics.Glx.DisplayPtr - id: config type: OpenTK.Graphics.Glx.GLXFBConfigSGIX - - id: attribute - type: System.Int32 - - id: value - type: System.Int32 + - id: width + type: System.UInt32 + - id: height + type: System.UInt32 + - id: attrib_list + type: System.Int32[] return: - type: System.Int32 - content.vb: Public Shared Function GetFBConfigAttribSGIX(dpy As DisplayPtr, config As GLXFBConfigSGIX, attribute As Integer, value As Integer) As Integer - overload: OpenTK.Graphics.Glx.Glx.SGIX.GetFBConfigAttribSGIX* - nameWithType.vb: Glx.SGIX.GetFBConfigAttribSGIX(DisplayPtr, GLXFBConfigSGIX, Integer, Integer) - fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.GetFBConfigAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfigSGIX, Integer, Integer) - name.vb: GetFBConfigAttribSGIX(DisplayPtr, GLXFBConfigSGIX, Integer, Integer) -- uid: OpenTK.Graphics.Glx.Glx.SGIX.GetSelectedEventSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.UInt64@) - commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.GetSelectedEventSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.UInt64@) - id: GetSelectedEventSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.UInt64@) + type: OpenTK.Graphics.Glx.GLXPbufferSGIX + content.vb: Public Shared Function CreateGLXPbufferSGIX(dpy As DisplayPtr, config As GLXFBConfigSGIX, width As UInteger, height As UInteger, attrib_list As Integer()) As GLXPbufferSGIX + overload: OpenTK.Graphics.Glx.Glx.SGIX.CreateGLXPbufferSGIX* + nameWithType.vb: Glx.SGIX.CreateGLXPbufferSGIX(DisplayPtr, GLXFBConfigSGIX, UInteger, UInteger, Integer()) + fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.CreateGLXPbufferSGIX(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfigSGIX, UInteger, UInteger, Integer()) + name.vb: CreateGLXPbufferSGIX(DisplayPtr, GLXFBConfigSGIX, UInteger, UInteger, Integer()) +- uid: OpenTK.Graphics.Glx.Glx.SGIX.CreateGLXPbufferSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfigSGIX,System.UInt32,System.UInt32,System.Int32@) + commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.CreateGLXPbufferSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfigSGIX,System.UInt32,System.UInt32,System.Int32@) + id: CreateGLXPbufferSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfigSGIX,System.UInt32,System.UInt32,System.Int32@) parent: OpenTK.Graphics.Glx.Glx.SGIX langs: - csharp - vb - name: GetSelectedEventSGIX(DisplayPtr, GLXDrawable, ref ulong) - nameWithType: Glx.SGIX.GetSelectedEventSGIX(DisplayPtr, GLXDrawable, ref ulong) - fullName: OpenTK.Graphics.Glx.Glx.SGIX.GetSelectedEventSGIX(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, ref ulong) - type: Method + name: CreateGLXPbufferSGIX(DisplayPtr, GLXFBConfigSGIX, uint, uint, ref int) + nameWithType: Glx.SGIX.CreateGLXPbufferSGIX(DisplayPtr, GLXFBConfigSGIX, uint, uint, ref int) + fullName: OpenTK.Graphics.Glx.Glx.SGIX.CreateGLXPbufferSGIX(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfigSGIX, uint, uint, ref int) + type: Method + source: + id: CreateGLXPbufferSGIX + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 1434 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Glx + summary: >- + [requires: GLX_SGIX_pbuffer] + + [entry point: glXCreateGLXPbufferSGIX] + +
+ example: [] + syntax: + content: public static GLXPbufferSGIX CreateGLXPbufferSGIX(DisplayPtr dpy, GLXFBConfigSGIX config, uint width, uint height, ref int attrib_list) + parameters: + - id: dpy + type: OpenTK.Graphics.Glx.DisplayPtr + - id: config + type: OpenTK.Graphics.Glx.GLXFBConfigSGIX + - id: width + type: System.UInt32 + - id: height + type: System.UInt32 + - id: attrib_list + type: System.Int32 + return: + type: OpenTK.Graphics.Glx.GLXPbufferSGIX + content.vb: Public Shared Function CreateGLXPbufferSGIX(dpy As DisplayPtr, config As GLXFBConfigSGIX, width As UInteger, height As UInteger, attrib_list As Integer) As GLXPbufferSGIX + overload: OpenTK.Graphics.Glx.Glx.SGIX.CreateGLXPbufferSGIX* + nameWithType.vb: Glx.SGIX.CreateGLXPbufferSGIX(DisplayPtr, GLXFBConfigSGIX, UInteger, UInteger, Integer) + fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.CreateGLXPbufferSGIX(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfigSGIX, UInteger, UInteger, Integer) + name.vb: CreateGLXPbufferSGIX(DisplayPtr, GLXFBConfigSGIX, UInteger, UInteger, Integer) +- uid: OpenTK.Graphics.Glx.Glx.SGIX.GetFBConfigAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfigSGIX,System.Int32,System.Span{System.Int32}) + commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.GetFBConfigAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfigSGIX,System.Int32,System.Span{System.Int32}) + id: GetFBConfigAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfigSGIX,System.Int32,System.Span{System.Int32}) + parent: OpenTK.Graphics.Glx.Glx.SGIX + langs: + - csharp + - vb + name: GetFBConfigAttribSGIX(DisplayPtr, GLXFBConfigSGIX, int, Span) + nameWithType: Glx.SGIX.GetFBConfigAttribSGIX(DisplayPtr, GLXFBConfigSGIX, int, Span) + fullName: OpenTK.Graphics.Glx.Glx.SGIX.GetFBConfigAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfigSGIX, int, System.Span) + type: Method + source: + id: GetFBConfigAttribSGIX + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 1444 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Glx + summary: >- + [requires: GLX_SGIX_fbconfig] + + [entry point: glXGetFBConfigAttribSGIX] + +
+ example: [] + syntax: + content: public static int GetFBConfigAttribSGIX(DisplayPtr dpy, GLXFBConfigSGIX config, int attribute, Span value) + parameters: + - id: dpy + type: OpenTK.Graphics.Glx.DisplayPtr + - id: config + type: OpenTK.Graphics.Glx.GLXFBConfigSGIX + - id: attribute + type: System.Int32 + - id: value + type: System.Span{System.Int32} + return: + type: System.Int32 + content.vb: Public Shared Function GetFBConfigAttribSGIX(dpy As DisplayPtr, config As GLXFBConfigSGIX, attribute As Integer, value As Span(Of Integer)) As Integer + overload: OpenTK.Graphics.Glx.Glx.SGIX.GetFBConfigAttribSGIX* + nameWithType.vb: Glx.SGIX.GetFBConfigAttribSGIX(DisplayPtr, GLXFBConfigSGIX, Integer, Span(Of Integer)) + fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.GetFBConfigAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfigSGIX, Integer, System.Span(Of Integer)) + name.vb: GetFBConfigAttribSGIX(DisplayPtr, GLXFBConfigSGIX, Integer, Span(Of Integer)) +- uid: OpenTK.Graphics.Glx.Glx.SGIX.GetFBConfigAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfigSGIX,System.Int32,System.Int32[]) + commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.GetFBConfigAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfigSGIX,System.Int32,System.Int32[]) + id: GetFBConfigAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfigSGIX,System.Int32,System.Int32[]) + parent: OpenTK.Graphics.Glx.Glx.SGIX + langs: + - csharp + - vb + name: GetFBConfigAttribSGIX(DisplayPtr, GLXFBConfigSGIX, int, int[]) + nameWithType: Glx.SGIX.GetFBConfigAttribSGIX(DisplayPtr, GLXFBConfigSGIX, int, int[]) + fullName: OpenTK.Graphics.Glx.Glx.SGIX.GetFBConfigAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfigSGIX, int, int[]) + type: Method + source: + id: GetFBConfigAttribSGIX + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 1454 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Glx + summary: >- + [requires: GLX_SGIX_fbconfig] + + [entry point: glXGetFBConfigAttribSGIX] + +
+ example: [] + syntax: + content: public static int GetFBConfigAttribSGIX(DisplayPtr dpy, GLXFBConfigSGIX config, int attribute, int[] value) + parameters: + - id: dpy + type: OpenTK.Graphics.Glx.DisplayPtr + - id: config + type: OpenTK.Graphics.Glx.GLXFBConfigSGIX + - id: attribute + type: System.Int32 + - id: value + type: System.Int32[] + return: + type: System.Int32 + content.vb: Public Shared Function GetFBConfigAttribSGIX(dpy As DisplayPtr, config As GLXFBConfigSGIX, attribute As Integer, value As Integer()) As Integer + overload: OpenTK.Graphics.Glx.Glx.SGIX.GetFBConfigAttribSGIX* + nameWithType.vb: Glx.SGIX.GetFBConfigAttribSGIX(DisplayPtr, GLXFBConfigSGIX, Integer, Integer()) + fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.GetFBConfigAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfigSGIX, Integer, Integer()) + name.vb: GetFBConfigAttribSGIX(DisplayPtr, GLXFBConfigSGIX, Integer, Integer()) +- uid: OpenTK.Graphics.Glx.Glx.SGIX.GetFBConfigAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfigSGIX,System.Int32,System.Int32@) + commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.GetFBConfigAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfigSGIX,System.Int32,System.Int32@) + id: GetFBConfigAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfigSGIX,System.Int32,System.Int32@) + parent: OpenTK.Graphics.Glx.Glx.SGIX + langs: + - csharp + - vb + name: GetFBConfigAttribSGIX(DisplayPtr, GLXFBConfigSGIX, int, ref int) + nameWithType: Glx.SGIX.GetFBConfigAttribSGIX(DisplayPtr, GLXFBConfigSGIX, int, ref int) + fullName: OpenTK.Graphics.Glx.Glx.SGIX.GetFBConfigAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfigSGIX, int, ref int) + type: Method + source: + id: GetFBConfigAttribSGIX + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 1464 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Glx + summary: >- + [requires: GLX_SGIX_fbconfig] + + [entry point: glXGetFBConfigAttribSGIX] + +
+ example: [] + syntax: + content: public static int GetFBConfigAttribSGIX(DisplayPtr dpy, GLXFBConfigSGIX config, int attribute, ref int value) + parameters: + - id: dpy + type: OpenTK.Graphics.Glx.DisplayPtr + - id: config + type: OpenTK.Graphics.Glx.GLXFBConfigSGIX + - id: attribute + type: System.Int32 + - id: value + type: System.Int32 + return: + type: System.Int32 + content.vb: Public Shared Function GetFBConfigAttribSGIX(dpy As DisplayPtr, config As GLXFBConfigSGIX, attribute As Integer, value As Integer) As Integer + overload: OpenTK.Graphics.Glx.Glx.SGIX.GetFBConfigAttribSGIX* + nameWithType.vb: Glx.SGIX.GetFBConfigAttribSGIX(DisplayPtr, GLXFBConfigSGIX, Integer, Integer) + fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.GetFBConfigAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfigSGIX, Integer, Integer) + name.vb: GetFBConfigAttribSGIX(DisplayPtr, GLXFBConfigSGIX, Integer, Integer) +- uid: OpenTK.Graphics.Glx.Glx.SGIX.GetSelectedEventSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Span{System.UInt64}) + commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.GetSelectedEventSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Span{System.UInt64}) + id: GetSelectedEventSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Span{System.UInt64}) + parent: OpenTK.Graphics.Glx.Glx.SGIX + langs: + - csharp + - vb + name: GetSelectedEventSGIX(DisplayPtr, GLXDrawable, Span) + nameWithType: Glx.SGIX.GetSelectedEventSGIX(DisplayPtr, GLXDrawable, Span) + fullName: OpenTK.Graphics.Glx.Glx.SGIX.GetSelectedEventSGIX(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, System.Span) + type: Method + source: + id: GetSelectedEventSGIX + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 1474 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Glx + summary: >- + [requires: GLX_SGIX_pbuffer] + + [entry point: glXGetSelectedEventSGIX] + +
+ example: [] + syntax: + content: public static void GetSelectedEventSGIX(DisplayPtr dpy, GLXDrawable drawable, Span mask) + parameters: + - id: dpy + type: OpenTK.Graphics.Glx.DisplayPtr + - id: drawable + type: OpenTK.Graphics.Glx.GLXDrawable + - id: mask + type: System.Span{System.UInt64} + content.vb: Public Shared Sub GetSelectedEventSGIX(dpy As DisplayPtr, drawable As GLXDrawable, mask As Span(Of ULong)) + overload: OpenTK.Graphics.Glx.Glx.SGIX.GetSelectedEventSGIX* + nameWithType.vb: Glx.SGIX.GetSelectedEventSGIX(DisplayPtr, GLXDrawable, Span(Of ULong)) + fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.GetSelectedEventSGIX(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, System.Span(Of ULong)) + name.vb: GetSelectedEventSGIX(DisplayPtr, GLXDrawable, Span(Of ULong)) +- uid: OpenTK.Graphics.Glx.Glx.SGIX.GetSelectedEventSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.UInt64[]) + commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.GetSelectedEventSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.UInt64[]) + id: GetSelectedEventSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.UInt64[]) + parent: OpenTK.Graphics.Glx.Glx.SGIX + langs: + - csharp + - vb + name: GetSelectedEventSGIX(DisplayPtr, GLXDrawable, ulong[]) + nameWithType: Glx.SGIX.GetSelectedEventSGIX(DisplayPtr, GLXDrawable, ulong[]) + fullName: OpenTK.Graphics.Glx.Glx.SGIX.GetSelectedEventSGIX(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, ulong[]) + type: Method + source: + id: GetSelectedEventSGIX + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 1482 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Glx + summary: >- + [requires: GLX_SGIX_pbuffer] + + [entry point: glXGetSelectedEventSGIX] + +
+ example: [] + syntax: + content: public static void GetSelectedEventSGIX(DisplayPtr dpy, GLXDrawable drawable, ulong[] mask) + parameters: + - id: dpy + type: OpenTK.Graphics.Glx.DisplayPtr + - id: drawable + type: OpenTK.Graphics.Glx.GLXDrawable + - id: mask + type: System.UInt64[] + content.vb: Public Shared Sub GetSelectedEventSGIX(dpy As DisplayPtr, drawable As GLXDrawable, mask As ULong()) + overload: OpenTK.Graphics.Glx.Glx.SGIX.GetSelectedEventSGIX* + nameWithType.vb: Glx.SGIX.GetSelectedEventSGIX(DisplayPtr, GLXDrawable, ULong()) + fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.GetSelectedEventSGIX(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, ULong()) + name.vb: GetSelectedEventSGIX(DisplayPtr, GLXDrawable, ULong()) +- uid: OpenTK.Graphics.Glx.Glx.SGIX.GetSelectedEventSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.UInt64@) + commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.GetSelectedEventSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.UInt64@) + id: GetSelectedEventSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.UInt64@) + parent: OpenTK.Graphics.Glx.Glx.SGIX + langs: + - csharp + - vb + name: GetSelectedEventSGIX(DisplayPtr, GLXDrawable, ref ulong) + nameWithType: Glx.SGIX.GetSelectedEventSGIX(DisplayPtr, GLXDrawable, ref ulong) + fullName: OpenTK.Graphics.Glx.Glx.SGIX.GetSelectedEventSGIX(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, ref ulong) + type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetSelectedEventSGIX - path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 538 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 1490 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -1381,13 +1756,9 @@ items: fullName: OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr, int, int, int, nint) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: HyperpipeAttribSGIX - path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 546 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 1498 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -1418,25 +1789,21 @@ items: nameWithType.vb: Glx.SGIX.HyperpipeAttribSGIX(DisplayPtr, Integer, Integer, Integer, IntPtr) fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer, Integer, System.IntPtr) name.vb: HyperpipeAttribSGIX(DisplayPtr, Integer, Integer, Integer, IntPtr) -- uid: OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeAttribSGIX``1(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,``0@) - commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeAttribSGIX``1(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,``0@) - id: HyperpipeAttribSGIX``1(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,``0@) +- uid: OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeAttribSGIX``1(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.Span{``0}) + commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeAttribSGIX``1(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.Span{``0}) + id: HyperpipeAttribSGIX``1(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.Span{``0}) parent: OpenTK.Graphics.Glx.Glx.SGIX langs: - csharp - vb - name: HyperpipeAttribSGIX(DisplayPtr, int, int, int, ref T1) - nameWithType: Glx.SGIX.HyperpipeAttribSGIX(DisplayPtr, int, int, int, ref T1) - fullName: OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr, int, int, int, ref T1) + name: HyperpipeAttribSGIX(DisplayPtr, int, int, int, Span) + nameWithType: Glx.SGIX.HyperpipeAttribSGIX(DisplayPtr, int, int, int, Span) + fullName: OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr, int, int, int, System.Span) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: HyperpipeAttribSGIX - path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 554 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 1506 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -1448,7 +1815,7 @@ items:
example: [] syntax: - content: 'public static int HyperpipeAttribSGIX(DisplayPtr dpy, int timeSlice, int attrib, int size, ref T1 attribList) where T1 : unmanaged' + content: 'public static int HyperpipeAttribSGIX(DisplayPtr dpy, int timeSlice, int attrib, int size, Span attribList) where T1 : unmanaged' parameters: - id: dpy type: OpenTK.Graphics.Glx.DisplayPtr @@ -1459,466 +1826,1246 @@ items: - id: size type: System.Int32 - id: attribList - type: '{T1}' + type: System.Span{{T1}} typeParameters: - id: T1 return: type: System.Int32 - content.vb: Public Shared Function HyperpipeAttribSGIX(Of T1 As Structure)(dpy As DisplayPtr, timeSlice As Integer, attrib As Integer, size As Integer, attribList As T1) As Integer + content.vb: Public Shared Function HyperpipeAttribSGIX(Of T1 As Structure)(dpy As DisplayPtr, timeSlice As Integer, attrib As Integer, size As Integer, attribList As Span(Of T1)) As Integer overload: OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeAttribSGIX* - nameWithType.vb: Glx.SGIX.HyperpipeAttribSGIX(Of T1)(DisplayPtr, Integer, Integer, Integer, T1) - fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeAttribSGIX(Of T1)(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer, Integer, T1) - name.vb: HyperpipeAttribSGIX(Of T1)(DisplayPtr, Integer, Integer, Integer, T1) -- uid: OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX@,System.Int32@) - commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX@,System.Int32@) - id: HyperpipeConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX@,System.Int32@) + nameWithType.vb: Glx.SGIX.HyperpipeAttribSGIX(Of T1)(DisplayPtr, Integer, Integer, Integer, Span(Of T1)) + fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeAttribSGIX(Of T1)(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer, Integer, System.Span(Of T1)) + name.vb: HyperpipeAttribSGIX(Of T1)(DisplayPtr, Integer, Integer, Integer, Span(Of T1)) +- uid: OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeAttribSGIX``1(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,``0[]) + commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeAttribSGIX``1(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,``0[]) + id: HyperpipeAttribSGIX``1(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,``0[]) parent: OpenTK.Graphics.Glx.Glx.SGIX langs: - csharp - vb - name: HyperpipeConfigSGIX(DisplayPtr, int, int, ref GLXHyperpipeConfigSGIX, ref int) - nameWithType: Glx.SGIX.HyperpipeConfigSGIX(DisplayPtr, int, int, ref GLXHyperpipeConfigSGIX, ref int) - fullName: OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr, int, int, ref OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX, ref int) + name: HyperpipeAttribSGIX(DisplayPtr, int, int, int, T1[]) + nameWithType: Glx.SGIX.HyperpipeAttribSGIX(DisplayPtr, int, int, int, T1[]) + fullName: OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr, int, int, int, T1[]) + type: Method + source: + id: HyperpipeAttribSGIX + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 1517 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Glx + summary: >- + [requires: GLX_SGIX_hyperpipe] + + [entry point: glXHyperpipeAttribSGIX] + +
+ example: [] + syntax: + content: 'public static int HyperpipeAttribSGIX(DisplayPtr dpy, int timeSlice, int attrib, int size, T1[] attribList) where T1 : unmanaged' + parameters: + - id: dpy + type: OpenTK.Graphics.Glx.DisplayPtr + - id: timeSlice + type: System.Int32 + - id: attrib + type: System.Int32 + - id: size + type: System.Int32 + - id: attribList + type: '{T1}[]' + typeParameters: + - id: T1 + return: + type: System.Int32 + content.vb: Public Shared Function HyperpipeAttribSGIX(Of T1 As Structure)(dpy As DisplayPtr, timeSlice As Integer, attrib As Integer, size As Integer, attribList As T1()) As Integer + overload: OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeAttribSGIX* + nameWithType.vb: Glx.SGIX.HyperpipeAttribSGIX(Of T1)(DisplayPtr, Integer, Integer, Integer, T1()) + fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeAttribSGIX(Of T1)(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer, Integer, T1()) + name.vb: HyperpipeAttribSGIX(Of T1)(DisplayPtr, Integer, Integer, Integer, T1()) +- uid: OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeAttribSGIX``1(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,``0@) + commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeAttribSGIX``1(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,``0@) + id: HyperpipeAttribSGIX``1(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,``0@) + parent: OpenTK.Graphics.Glx.Glx.SGIX + langs: + - csharp + - vb + name: HyperpipeAttribSGIX(DisplayPtr, int, int, int, ref T1) + nameWithType: Glx.SGIX.HyperpipeAttribSGIX(DisplayPtr, int, int, int, ref T1) + fullName: OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr, int, int, int, ref T1) + type: Method + source: + id: HyperpipeAttribSGIX + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 1528 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Glx + summary: >- + [requires: GLX_SGIX_hyperpipe] + + [entry point: glXHyperpipeAttribSGIX] + +
+ example: [] + syntax: + content: 'public static int HyperpipeAttribSGIX(DisplayPtr dpy, int timeSlice, int attrib, int size, ref T1 attribList) where T1 : unmanaged' + parameters: + - id: dpy + type: OpenTK.Graphics.Glx.DisplayPtr + - id: timeSlice + type: System.Int32 + - id: attrib + type: System.Int32 + - id: size + type: System.Int32 + - id: attribList + type: '{T1}' + typeParameters: + - id: T1 + return: + type: System.Int32 + content.vb: Public Shared Function HyperpipeAttribSGIX(Of T1 As Structure)(dpy As DisplayPtr, timeSlice As Integer, attrib As Integer, size As Integer, attribList As T1) As Integer + overload: OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeAttribSGIX* + nameWithType.vb: Glx.SGIX.HyperpipeAttribSGIX(Of T1)(DisplayPtr, Integer, Integer, Integer, T1) + fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeAttribSGIX(Of T1)(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer, Integer, T1) + name.vb: HyperpipeAttribSGIX(Of T1)(DisplayPtr, Integer, Integer, Integer, T1) +- uid: OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Span{OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX},System.Span{System.Int32}) + commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Span{OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX},System.Span{System.Int32}) + id: HyperpipeConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Span{OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX},System.Span{System.Int32}) + parent: OpenTK.Graphics.Glx.Glx.SGIX + langs: + - csharp + - vb + name: HyperpipeConfigSGIX(DisplayPtr, int, int, Span, Span) + nameWithType: Glx.SGIX.HyperpipeConfigSGIX(DisplayPtr, int, int, Span, Span) + fullName: OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr, int, int, System.Span, System.Span) + type: Method + source: + id: HyperpipeConfigSGIX + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 1539 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Glx + summary: >- + [requires: GLX_SGIX_hyperpipe] + + [entry point: glXHyperpipeConfigSGIX] + +
+ example: [] + syntax: + content: public static int HyperpipeConfigSGIX(DisplayPtr dpy, int networkId, int npipes, Span cfg, Span hpId) + parameters: + - id: dpy + type: OpenTK.Graphics.Glx.DisplayPtr + - id: networkId + type: System.Int32 + - id: npipes + type: System.Int32 + - id: cfg + type: System.Span{OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX} + - id: hpId + type: System.Span{System.Int32} + return: + type: System.Int32 + content.vb: Public Shared Function HyperpipeConfigSGIX(dpy As DisplayPtr, networkId As Integer, npipes As Integer, cfg As Span(Of GLXHyperpipeConfigSGIX), hpId As Span(Of Integer)) As Integer + overload: OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeConfigSGIX* + nameWithType.vb: Glx.SGIX.HyperpipeConfigSGIX(DisplayPtr, Integer, Integer, Span(Of GLXHyperpipeConfigSGIX), Span(Of Integer)) + fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer, System.Span(Of OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX), System.Span(Of Integer)) + name.vb: HyperpipeConfigSGIX(DisplayPtr, Integer, Integer, Span(Of GLXHyperpipeConfigSGIX), Span(Of Integer)) +- uid: OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX[],System.Int32[]) + commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX[],System.Int32[]) + id: HyperpipeConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX[],System.Int32[]) + parent: OpenTK.Graphics.Glx.Glx.SGIX + langs: + - csharp + - vb + name: HyperpipeConfigSGIX(DisplayPtr, int, int, GLXHyperpipeConfigSGIX[], int[]) + nameWithType: Glx.SGIX.HyperpipeConfigSGIX(DisplayPtr, int, int, GLXHyperpipeConfigSGIX[], int[]) + fullName: OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr, int, int, OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX[], int[]) + type: Method + source: + id: HyperpipeConfigSGIX + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 1552 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Glx + summary: >- + [requires: GLX_SGIX_hyperpipe] + + [entry point: glXHyperpipeConfigSGIX] + +
+ example: [] + syntax: + content: public static int HyperpipeConfigSGIX(DisplayPtr dpy, int networkId, int npipes, GLXHyperpipeConfigSGIX[] cfg, int[] hpId) + parameters: + - id: dpy + type: OpenTK.Graphics.Glx.DisplayPtr + - id: networkId + type: System.Int32 + - id: npipes + type: System.Int32 + - id: cfg + type: OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX[] + - id: hpId + type: System.Int32[] + return: + type: System.Int32 + content.vb: Public Shared Function HyperpipeConfigSGIX(dpy As DisplayPtr, networkId As Integer, npipes As Integer, cfg As GLXHyperpipeConfigSGIX(), hpId As Integer()) As Integer + overload: OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeConfigSGIX* + nameWithType.vb: Glx.SGIX.HyperpipeConfigSGIX(DisplayPtr, Integer, Integer, GLXHyperpipeConfigSGIX(), Integer()) + fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer, OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX(), Integer()) + name.vb: HyperpipeConfigSGIX(DisplayPtr, Integer, Integer, GLXHyperpipeConfigSGIX(), Integer()) +- uid: OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX@,System.Int32@) + commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX@,System.Int32@) + id: HyperpipeConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX@,System.Int32@) + parent: OpenTK.Graphics.Glx.Glx.SGIX + langs: + - csharp + - vb + name: HyperpipeConfigSGIX(DisplayPtr, int, int, ref GLXHyperpipeConfigSGIX, ref int) + nameWithType: Glx.SGIX.HyperpipeConfigSGIX(DisplayPtr, int, int, ref GLXHyperpipeConfigSGIX, ref int) + fullName: OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr, int, int, ref OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX, ref int) + type: Method + source: + id: HyperpipeConfigSGIX + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 1565 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Glx + summary: >- + [requires: GLX_SGIX_hyperpipe] + + [entry point: glXHyperpipeConfigSGIX] + +
+ example: [] + syntax: + content: public static int HyperpipeConfigSGIX(DisplayPtr dpy, int networkId, int npipes, ref GLXHyperpipeConfigSGIX cfg, ref int hpId) + parameters: + - id: dpy + type: OpenTK.Graphics.Glx.DisplayPtr + - id: networkId + type: System.Int32 + - id: npipes + type: System.Int32 + - id: cfg + type: OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX + - id: hpId + type: System.Int32 + return: + type: System.Int32 + content.vb: Public Shared Function HyperpipeConfigSGIX(dpy As DisplayPtr, networkId As Integer, npipes As Integer, cfg As GLXHyperpipeConfigSGIX, hpId As Integer) As Integer + overload: OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeConfigSGIX* + nameWithType.vb: Glx.SGIX.HyperpipeConfigSGIX(DisplayPtr, Integer, Integer, GLXHyperpipeConfigSGIX, Integer) + fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer, OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX, Integer) + name.vb: HyperpipeConfigSGIX(DisplayPtr, Integer, Integer, GLXHyperpipeConfigSGIX, Integer) +- uid: OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelDeltasSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Span{System.Int32},System.Span{System.Int32},System.Span{System.Int32},System.Span{System.Int32}) + commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelDeltasSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Span{System.Int32},System.Span{System.Int32},System.Span{System.Int32},System.Span{System.Int32}) + id: QueryChannelDeltasSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Span{System.Int32},System.Span{System.Int32},System.Span{System.Int32},System.Span{System.Int32}) + parent: OpenTK.Graphics.Glx.Glx.SGIX + langs: + - csharp + - vb + name: QueryChannelDeltasSGIX(DisplayPtr, int, int, Span, Span, Span, Span) + nameWithType: Glx.SGIX.QueryChannelDeltasSGIX(DisplayPtr, int, int, Span, Span, Span, Span) + fullName: OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelDeltasSGIX(OpenTK.Graphics.Glx.DisplayPtr, int, int, System.Span, System.Span, System.Span, System.Span) + type: Method + source: + id: QueryChannelDeltasSGIX + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 1576 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Glx + summary: >- + [requires: GLX_SGIX_video_resize] + + [entry point: glXQueryChannelDeltasSGIX] + +
+ example: [] + syntax: + content: public static int QueryChannelDeltasSGIX(DisplayPtr display, int screen, int channel, Span x, Span y, Span w, Span h) + parameters: + - id: display + type: OpenTK.Graphics.Glx.DisplayPtr + - id: screen + type: System.Int32 + - id: channel + type: System.Int32 + - id: x + type: System.Span{System.Int32} + - id: y + type: System.Span{System.Int32} + - id: w + type: System.Span{System.Int32} + - id: h + type: System.Span{System.Int32} + return: + type: System.Int32 + content.vb: Public Shared Function QueryChannelDeltasSGIX(display As DisplayPtr, screen As Integer, channel As Integer, x As Span(Of Integer), y As Span(Of Integer), w As Span(Of Integer), h As Span(Of Integer)) As Integer + overload: OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelDeltasSGIX* + nameWithType.vb: Glx.SGIX.QueryChannelDeltasSGIX(DisplayPtr, Integer, Integer, Span(Of Integer), Span(Of Integer), Span(Of Integer), Span(Of Integer)) + fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelDeltasSGIX(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer, System.Span(Of Integer), System.Span(Of Integer), System.Span(Of Integer), System.Span(Of Integer)) + name.vb: QueryChannelDeltasSGIX(DisplayPtr, Integer, Integer, Span(Of Integer), Span(Of Integer), Span(Of Integer), Span(Of Integer)) +- uid: OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelDeltasSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32[],System.Int32[],System.Int32[],System.Int32[]) + commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelDeltasSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32[],System.Int32[],System.Int32[],System.Int32[]) + id: QueryChannelDeltasSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32[],System.Int32[],System.Int32[],System.Int32[]) + parent: OpenTK.Graphics.Glx.Glx.SGIX + langs: + - csharp + - vb + name: QueryChannelDeltasSGIX(DisplayPtr, int, int, int[], int[], int[], int[]) + nameWithType: Glx.SGIX.QueryChannelDeltasSGIX(DisplayPtr, int, int, int[], int[], int[], int[]) + fullName: OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelDeltasSGIX(OpenTK.Graphics.Glx.DisplayPtr, int, int, int[], int[], int[], int[]) + type: Method + source: + id: QueryChannelDeltasSGIX + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 1595 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Glx + summary: >- + [requires: GLX_SGIX_video_resize] + + [entry point: glXQueryChannelDeltasSGIX] + +
+ example: [] + syntax: + content: public static int QueryChannelDeltasSGIX(DisplayPtr display, int screen, int channel, int[] x, int[] y, int[] w, int[] h) + parameters: + - id: display + type: OpenTK.Graphics.Glx.DisplayPtr + - id: screen + type: System.Int32 + - id: channel + type: System.Int32 + - id: x + type: System.Int32[] + - id: y + type: System.Int32[] + - id: w + type: System.Int32[] + - id: h + type: System.Int32[] + return: + type: System.Int32 + content.vb: Public Shared Function QueryChannelDeltasSGIX(display As DisplayPtr, screen As Integer, channel As Integer, x As Integer(), y As Integer(), w As Integer(), h As Integer()) As Integer + overload: OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelDeltasSGIX* + nameWithType.vb: Glx.SGIX.QueryChannelDeltasSGIX(DisplayPtr, Integer, Integer, Integer(), Integer(), Integer(), Integer()) + fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelDeltasSGIX(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer, Integer(), Integer(), Integer(), Integer()) + name.vb: QueryChannelDeltasSGIX(DisplayPtr, Integer, Integer, Integer(), Integer(), Integer(), Integer()) +- uid: OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelDeltasSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32@,System.Int32@,System.Int32@,System.Int32@) + commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelDeltasSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32@,System.Int32@,System.Int32@,System.Int32@) + id: QueryChannelDeltasSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32@,System.Int32@,System.Int32@,System.Int32@) + parent: OpenTK.Graphics.Glx.Glx.SGIX + langs: + - csharp + - vb + name: QueryChannelDeltasSGIX(DisplayPtr, int, int, ref int, ref int, ref int, ref int) + nameWithType: Glx.SGIX.QueryChannelDeltasSGIX(DisplayPtr, int, int, ref int, ref int, ref int, ref int) + fullName: OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelDeltasSGIX(OpenTK.Graphics.Glx.DisplayPtr, int, int, ref int, ref int, ref int, ref int) + type: Method + source: + id: QueryChannelDeltasSGIX + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 1614 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Glx + summary: >- + [requires: GLX_SGIX_video_resize] + + [entry point: glXQueryChannelDeltasSGIX] + +
+ example: [] + syntax: + content: public static int QueryChannelDeltasSGIX(DisplayPtr display, int screen, int channel, ref int x, ref int y, ref int w, ref int h) + parameters: + - id: display + type: OpenTK.Graphics.Glx.DisplayPtr + - id: screen + type: System.Int32 + - id: channel + type: System.Int32 + - id: x + type: System.Int32 + - id: y + type: System.Int32 + - id: w + type: System.Int32 + - id: h + type: System.Int32 + return: + type: System.Int32 + content.vb: Public Shared Function QueryChannelDeltasSGIX(display As DisplayPtr, screen As Integer, channel As Integer, x As Integer, y As Integer, w As Integer, h As Integer) As Integer + overload: OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelDeltasSGIX* + nameWithType.vb: Glx.SGIX.QueryChannelDeltasSGIX(DisplayPtr, Integer, Integer, Integer, Integer, Integer, Integer) + fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelDeltasSGIX(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer, Integer, Integer, Integer, Integer) + name.vb: QueryChannelDeltasSGIX(DisplayPtr, Integer, Integer, Integer, Integer, Integer, Integer) +- uid: OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelRectSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Span{System.Int32},System.Span{System.Int32},System.Span{System.Int32},System.Span{System.Int32}) + commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelRectSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Span{System.Int32},System.Span{System.Int32},System.Span{System.Int32},System.Span{System.Int32}) + id: QueryChannelRectSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Span{System.Int32},System.Span{System.Int32},System.Span{System.Int32},System.Span{System.Int32}) + parent: OpenTK.Graphics.Glx.Glx.SGIX + langs: + - csharp + - vb + name: QueryChannelRectSGIX(DisplayPtr, int, int, Span, Span, Span, Span) + nameWithType: Glx.SGIX.QueryChannelRectSGIX(DisplayPtr, int, int, Span, Span, Span, Span) + fullName: OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelRectSGIX(OpenTK.Graphics.Glx.DisplayPtr, int, int, System.Span, System.Span, System.Span, System.Span) + type: Method + source: + id: QueryChannelRectSGIX + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 1627 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Glx + summary: >- + [requires: GLX_SGIX_video_resize] + + [entry point: glXQueryChannelRectSGIX] + +
+ example: [] + syntax: + content: public static int QueryChannelRectSGIX(DisplayPtr display, int screen, int channel, Span dx, Span dy, Span dw, Span dh) + parameters: + - id: display + type: OpenTK.Graphics.Glx.DisplayPtr + - id: screen + type: System.Int32 + - id: channel + type: System.Int32 + - id: dx + type: System.Span{System.Int32} + - id: dy + type: System.Span{System.Int32} + - id: dw + type: System.Span{System.Int32} + - id: dh + type: System.Span{System.Int32} + return: + type: System.Int32 + content.vb: Public Shared Function QueryChannelRectSGIX(display As DisplayPtr, screen As Integer, channel As Integer, dx As Span(Of Integer), dy As Span(Of Integer), dw As Span(Of Integer), dh As Span(Of Integer)) As Integer + overload: OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelRectSGIX* + nameWithType.vb: Glx.SGIX.QueryChannelRectSGIX(DisplayPtr, Integer, Integer, Span(Of Integer), Span(Of Integer), Span(Of Integer), Span(Of Integer)) + fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelRectSGIX(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer, System.Span(Of Integer), System.Span(Of Integer), System.Span(Of Integer), System.Span(Of Integer)) + name.vb: QueryChannelRectSGIX(DisplayPtr, Integer, Integer, Span(Of Integer), Span(Of Integer), Span(Of Integer), Span(Of Integer)) +- uid: OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelRectSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32[],System.Int32[],System.Int32[],System.Int32[]) + commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelRectSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32[],System.Int32[],System.Int32[],System.Int32[]) + id: QueryChannelRectSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32[],System.Int32[],System.Int32[],System.Int32[]) + parent: OpenTK.Graphics.Glx.Glx.SGIX + langs: + - csharp + - vb + name: QueryChannelRectSGIX(DisplayPtr, int, int, int[], int[], int[], int[]) + nameWithType: Glx.SGIX.QueryChannelRectSGIX(DisplayPtr, int, int, int[], int[], int[], int[]) + fullName: OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelRectSGIX(OpenTK.Graphics.Glx.DisplayPtr, int, int, int[], int[], int[], int[]) + type: Method + source: + id: QueryChannelRectSGIX + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 1646 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Glx + summary: >- + [requires: GLX_SGIX_video_resize] + + [entry point: glXQueryChannelRectSGIX] + +
+ example: [] + syntax: + content: public static int QueryChannelRectSGIX(DisplayPtr display, int screen, int channel, int[] dx, int[] dy, int[] dw, int[] dh) + parameters: + - id: display + type: OpenTK.Graphics.Glx.DisplayPtr + - id: screen + type: System.Int32 + - id: channel + type: System.Int32 + - id: dx + type: System.Int32[] + - id: dy + type: System.Int32[] + - id: dw + type: System.Int32[] + - id: dh + type: System.Int32[] + return: + type: System.Int32 + content.vb: Public Shared Function QueryChannelRectSGIX(display As DisplayPtr, screen As Integer, channel As Integer, dx As Integer(), dy As Integer(), dw As Integer(), dh As Integer()) As Integer + overload: OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelRectSGIX* + nameWithType.vb: Glx.SGIX.QueryChannelRectSGIX(DisplayPtr, Integer, Integer, Integer(), Integer(), Integer(), Integer()) + fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelRectSGIX(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer, Integer(), Integer(), Integer(), Integer()) + name.vb: QueryChannelRectSGIX(DisplayPtr, Integer, Integer, Integer(), Integer(), Integer(), Integer()) +- uid: OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelRectSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32@,System.Int32@,System.Int32@,System.Int32@) + commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelRectSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32@,System.Int32@,System.Int32@,System.Int32@) + id: QueryChannelRectSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32@,System.Int32@,System.Int32@,System.Int32@) + parent: OpenTK.Graphics.Glx.Glx.SGIX + langs: + - csharp + - vb + name: QueryChannelRectSGIX(DisplayPtr, int, int, ref int, ref int, ref int, ref int) + nameWithType: Glx.SGIX.QueryChannelRectSGIX(DisplayPtr, int, int, ref int, ref int, ref int, ref int) + fullName: OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelRectSGIX(OpenTK.Graphics.Glx.DisplayPtr, int, int, ref int, ref int, ref int, ref int) + type: Method + source: + id: QueryChannelRectSGIX + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 1665 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Glx + summary: >- + [requires: GLX_SGIX_video_resize] + + [entry point: glXQueryChannelRectSGIX] + +
+ example: [] + syntax: + content: public static int QueryChannelRectSGIX(DisplayPtr display, int screen, int channel, ref int dx, ref int dy, ref int dw, ref int dh) + parameters: + - id: display + type: OpenTK.Graphics.Glx.DisplayPtr + - id: screen + type: System.Int32 + - id: channel + type: System.Int32 + - id: dx + type: System.Int32 + - id: dy + type: System.Int32 + - id: dw + type: System.Int32 + - id: dh + type: System.Int32 + return: + type: System.Int32 + content.vb: Public Shared Function QueryChannelRectSGIX(display As DisplayPtr, screen As Integer, channel As Integer, dx As Integer, dy As Integer, dw As Integer, dh As Integer) As Integer + overload: OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelRectSGIX* + nameWithType.vb: Glx.SGIX.QueryChannelRectSGIX(DisplayPtr, Integer, Integer, Integer, Integer, Integer, Integer) + fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelRectSGIX(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer, Integer, Integer, Integer, Integer) + name.vb: QueryChannelRectSGIX(DisplayPtr, Integer, Integer, Integer, Integer, Integer, Integer) +- uid: OpenTK.Graphics.Glx.Glx.SGIX.QueryGLXPbufferSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXPbufferSGIX,System.Int32,System.Span{System.UInt32}) + commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.QueryGLXPbufferSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXPbufferSGIX,System.Int32,System.Span{System.UInt32}) + id: QueryGLXPbufferSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXPbufferSGIX,System.Int32,System.Span{System.UInt32}) + parent: OpenTK.Graphics.Glx.Glx.SGIX + langs: + - csharp + - vb + name: QueryGLXPbufferSGIX(DisplayPtr, GLXPbufferSGIX, int, Span) + nameWithType: Glx.SGIX.QueryGLXPbufferSGIX(DisplayPtr, GLXPbufferSGIX, int, Span) + fullName: OpenTK.Graphics.Glx.Glx.SGIX.QueryGLXPbufferSGIX(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXPbufferSGIX, int, System.Span) + type: Method + source: + id: QueryGLXPbufferSGIX + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 1678 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Glx + summary: >- + [requires: GLX_SGIX_pbuffer] + + [entry point: glXQueryGLXPbufferSGIX] + +
+ example: [] + syntax: + content: public static void QueryGLXPbufferSGIX(DisplayPtr dpy, GLXPbufferSGIX pbuf, int attribute, Span value) + parameters: + - id: dpy + type: OpenTK.Graphics.Glx.DisplayPtr + - id: pbuf + type: OpenTK.Graphics.Glx.GLXPbufferSGIX + - id: attribute + type: System.Int32 + - id: value + type: System.Span{System.UInt32} + content.vb: Public Shared Sub QueryGLXPbufferSGIX(dpy As DisplayPtr, pbuf As GLXPbufferSGIX, attribute As Integer, value As Span(Of UInteger)) + overload: OpenTK.Graphics.Glx.Glx.SGIX.QueryGLXPbufferSGIX* + nameWithType.vb: Glx.SGIX.QueryGLXPbufferSGIX(DisplayPtr, GLXPbufferSGIX, Integer, Span(Of UInteger)) + fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.QueryGLXPbufferSGIX(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXPbufferSGIX, Integer, System.Span(Of UInteger)) + name.vb: QueryGLXPbufferSGIX(DisplayPtr, GLXPbufferSGIX, Integer, Span(Of UInteger)) +- uid: OpenTK.Graphics.Glx.Glx.SGIX.QueryGLXPbufferSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXPbufferSGIX,System.Int32,System.UInt32[]) + commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.QueryGLXPbufferSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXPbufferSGIX,System.Int32,System.UInt32[]) + id: QueryGLXPbufferSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXPbufferSGIX,System.Int32,System.UInt32[]) + parent: OpenTK.Graphics.Glx.Glx.SGIX + langs: + - csharp + - vb + name: QueryGLXPbufferSGIX(DisplayPtr, GLXPbufferSGIX, int, uint[]) + nameWithType: Glx.SGIX.QueryGLXPbufferSGIX(DisplayPtr, GLXPbufferSGIX, int, uint[]) + fullName: OpenTK.Graphics.Glx.Glx.SGIX.QueryGLXPbufferSGIX(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXPbufferSGIX, int, uint[]) + type: Method + source: + id: QueryGLXPbufferSGIX + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 1686 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Glx + summary: >- + [requires: GLX_SGIX_pbuffer] + + [entry point: glXQueryGLXPbufferSGIX] + +
+ example: [] + syntax: + content: public static void QueryGLXPbufferSGIX(DisplayPtr dpy, GLXPbufferSGIX pbuf, int attribute, uint[] value) + parameters: + - id: dpy + type: OpenTK.Graphics.Glx.DisplayPtr + - id: pbuf + type: OpenTK.Graphics.Glx.GLXPbufferSGIX + - id: attribute + type: System.Int32 + - id: value + type: System.UInt32[] + content.vb: Public Shared Sub QueryGLXPbufferSGIX(dpy As DisplayPtr, pbuf As GLXPbufferSGIX, attribute As Integer, value As UInteger()) + overload: OpenTK.Graphics.Glx.Glx.SGIX.QueryGLXPbufferSGIX* + nameWithType.vb: Glx.SGIX.QueryGLXPbufferSGIX(DisplayPtr, GLXPbufferSGIX, Integer, UInteger()) + fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.QueryGLXPbufferSGIX(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXPbufferSGIX, Integer, UInteger()) + name.vb: QueryGLXPbufferSGIX(DisplayPtr, GLXPbufferSGIX, Integer, UInteger()) +- uid: OpenTK.Graphics.Glx.Glx.SGIX.QueryGLXPbufferSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXPbufferSGIX,System.Int32,System.UInt32@) + commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.QueryGLXPbufferSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXPbufferSGIX,System.Int32,System.UInt32@) + id: QueryGLXPbufferSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXPbufferSGIX,System.Int32,System.UInt32@) + parent: OpenTK.Graphics.Glx.Glx.SGIX + langs: + - csharp + - vb + name: QueryGLXPbufferSGIX(DisplayPtr, GLXPbufferSGIX, int, ref uint) + nameWithType: Glx.SGIX.QueryGLXPbufferSGIX(DisplayPtr, GLXPbufferSGIX, int, ref uint) + fullName: OpenTK.Graphics.Glx.Glx.SGIX.QueryGLXPbufferSGIX(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXPbufferSGIX, int, ref uint) + type: Method + source: + id: QueryGLXPbufferSGIX + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 1694 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Glx + summary: >- + [requires: GLX_SGIX_pbuffer] + + [entry point: glXQueryGLXPbufferSGIX] + +
+ example: [] + syntax: + content: public static void QueryGLXPbufferSGIX(DisplayPtr dpy, GLXPbufferSGIX pbuf, int attribute, ref uint value) + parameters: + - id: dpy + type: OpenTK.Graphics.Glx.DisplayPtr + - id: pbuf + type: OpenTK.Graphics.Glx.GLXPbufferSGIX + - id: attribute + type: System.Int32 + - id: value + type: System.UInt32 + content.vb: Public Shared Sub QueryGLXPbufferSGIX(dpy As DisplayPtr, pbuf As GLXPbufferSGIX, attribute As Integer, value As UInteger) + overload: OpenTK.Graphics.Glx.Glx.SGIX.QueryGLXPbufferSGIX* + nameWithType.vb: Glx.SGIX.QueryGLXPbufferSGIX(DisplayPtr, GLXPbufferSGIX, Integer, UInteger) + fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.QueryGLXPbufferSGIX(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXPbufferSGIX, Integer, UInteger) + name.vb: QueryGLXPbufferSGIX(DisplayPtr, GLXPbufferSGIX, Integer, UInteger) +- uid: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.IntPtr) + commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.IntPtr) + id: QueryHyperpipeAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.IntPtr) + parent: OpenTK.Graphics.Glx.Glx.SGIX + langs: + - csharp + - vb + name: QueryHyperpipeAttribSGIX(DisplayPtr, int, int, int, nint) + nameWithType: Glx.SGIX.QueryHyperpipeAttribSGIX(DisplayPtr, int, int, int, nint) + fullName: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr, int, int, int, nint) + type: Method + source: + id: QueryHyperpipeAttribSGIX + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 1702 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Glx + summary: >- + [requires: GLX_SGIX_hyperpipe] + + [entry point: glXQueryHyperpipeAttribSGIX] + +
+ example: [] + syntax: + content: public static int QueryHyperpipeAttribSGIX(DisplayPtr dpy, int timeSlice, int attrib, int size, nint returnAttribList) + parameters: + - id: dpy + type: OpenTK.Graphics.Glx.DisplayPtr + - id: timeSlice + type: System.Int32 + - id: attrib + type: System.Int32 + - id: size + type: System.Int32 + - id: returnAttribList + type: System.IntPtr + return: + type: System.Int32 + content.vb: Public Shared Function QueryHyperpipeAttribSGIX(dpy As DisplayPtr, timeSlice As Integer, attrib As Integer, size As Integer, returnAttribList As IntPtr) As Integer + overload: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeAttribSGIX* + nameWithType.vb: Glx.SGIX.QueryHyperpipeAttribSGIX(DisplayPtr, Integer, Integer, Integer, IntPtr) + fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer, Integer, System.IntPtr) + name.vb: QueryHyperpipeAttribSGIX(DisplayPtr, Integer, Integer, Integer, IntPtr) +- uid: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeAttribSGIX``1(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.Span{``0}) + commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeAttribSGIX``1(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.Span{``0}) + id: QueryHyperpipeAttribSGIX``1(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.Span{``0}) + parent: OpenTK.Graphics.Glx.Glx.SGIX + langs: + - csharp + - vb + name: QueryHyperpipeAttribSGIX(DisplayPtr, int, int, int, Span) + nameWithType: Glx.SGIX.QueryHyperpipeAttribSGIX(DisplayPtr, int, int, int, Span) + fullName: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr, int, int, int, System.Span) + type: Method + source: + id: QueryHyperpipeAttribSGIX + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 1710 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Glx + summary: >- + [requires: GLX_SGIX_hyperpipe] + + [entry point: glXQueryHyperpipeAttribSGIX] + +
+ example: [] + syntax: + content: 'public static int QueryHyperpipeAttribSGIX(DisplayPtr dpy, int timeSlice, int attrib, int size, Span returnAttribList) where T1 : unmanaged' + parameters: + - id: dpy + type: OpenTK.Graphics.Glx.DisplayPtr + - id: timeSlice + type: System.Int32 + - id: attrib + type: System.Int32 + - id: size + type: System.Int32 + - id: returnAttribList + type: System.Span{{T1}} + typeParameters: + - id: T1 + return: + type: System.Int32 + content.vb: Public Shared Function QueryHyperpipeAttribSGIX(Of T1 As Structure)(dpy As DisplayPtr, timeSlice As Integer, attrib As Integer, size As Integer, returnAttribList As Span(Of T1)) As Integer + overload: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeAttribSGIX* + nameWithType.vb: Glx.SGIX.QueryHyperpipeAttribSGIX(Of T1)(DisplayPtr, Integer, Integer, Integer, Span(Of T1)) + fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeAttribSGIX(Of T1)(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer, Integer, System.Span(Of T1)) + name.vb: QueryHyperpipeAttribSGIX(Of T1)(DisplayPtr, Integer, Integer, Integer, Span(Of T1)) +- uid: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeAttribSGIX``1(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,``0[]) + commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeAttribSGIX``1(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,``0[]) + id: QueryHyperpipeAttribSGIX``1(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,``0[]) + parent: OpenTK.Graphics.Glx.Glx.SGIX + langs: + - csharp + - vb + name: QueryHyperpipeAttribSGIX(DisplayPtr, int, int, int, T1[]) + nameWithType: Glx.SGIX.QueryHyperpipeAttribSGIX(DisplayPtr, int, int, int, T1[]) + fullName: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr, int, int, int, T1[]) + type: Method + source: + id: QueryHyperpipeAttribSGIX + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 1721 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Glx + summary: >- + [requires: GLX_SGIX_hyperpipe] + + [entry point: glXQueryHyperpipeAttribSGIX] + +
+ example: [] + syntax: + content: 'public static int QueryHyperpipeAttribSGIX(DisplayPtr dpy, int timeSlice, int attrib, int size, T1[] returnAttribList) where T1 : unmanaged' + parameters: + - id: dpy + type: OpenTK.Graphics.Glx.DisplayPtr + - id: timeSlice + type: System.Int32 + - id: attrib + type: System.Int32 + - id: size + type: System.Int32 + - id: returnAttribList + type: '{T1}[]' + typeParameters: + - id: T1 + return: + type: System.Int32 + content.vb: Public Shared Function QueryHyperpipeAttribSGIX(Of T1 As Structure)(dpy As DisplayPtr, timeSlice As Integer, attrib As Integer, size As Integer, returnAttribList As T1()) As Integer + overload: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeAttribSGIX* + nameWithType.vb: Glx.SGIX.QueryHyperpipeAttribSGIX(Of T1)(DisplayPtr, Integer, Integer, Integer, T1()) + fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeAttribSGIX(Of T1)(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer, Integer, T1()) + name.vb: QueryHyperpipeAttribSGIX(Of T1)(DisplayPtr, Integer, Integer, Integer, T1()) +- uid: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeAttribSGIX``1(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,``0@) + commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeAttribSGIX``1(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,``0@) + id: QueryHyperpipeAttribSGIX``1(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,``0@) + parent: OpenTK.Graphics.Glx.Glx.SGIX + langs: + - csharp + - vb + name: QueryHyperpipeAttribSGIX(DisplayPtr, int, int, int, ref T1) + nameWithType: Glx.SGIX.QueryHyperpipeAttribSGIX(DisplayPtr, int, int, int, ref T1) + fullName: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr, int, int, int, ref T1) + type: Method + source: + id: QueryHyperpipeAttribSGIX + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 1732 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Glx + summary: >- + [requires: GLX_SGIX_hyperpipe] + + [entry point: glXQueryHyperpipeAttribSGIX] + +
+ example: [] + syntax: + content: 'public static int QueryHyperpipeAttribSGIX(DisplayPtr dpy, int timeSlice, int attrib, int size, ref T1 returnAttribList) where T1 : unmanaged' + parameters: + - id: dpy + type: OpenTK.Graphics.Glx.DisplayPtr + - id: timeSlice + type: System.Int32 + - id: attrib + type: System.Int32 + - id: size + type: System.Int32 + - id: returnAttribList + type: '{T1}' + typeParameters: + - id: T1 + return: + type: System.Int32 + content.vb: Public Shared Function QueryHyperpipeAttribSGIX(Of T1 As Structure)(dpy As DisplayPtr, timeSlice As Integer, attrib As Integer, size As Integer, returnAttribList As T1) As Integer + overload: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeAttribSGIX* + nameWithType.vb: Glx.SGIX.QueryHyperpipeAttribSGIX(Of T1)(DisplayPtr, Integer, Integer, Integer, T1) + fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeAttribSGIX(Of T1)(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer, Integer, T1) + name.vb: QueryHyperpipeAttribSGIX(Of T1)(DisplayPtr, Integer, Integer, Integer, T1) +- uid: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeBestAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.IntPtr,System.IntPtr) + commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeBestAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.IntPtr,System.IntPtr) + id: QueryHyperpipeBestAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.IntPtr,System.IntPtr) + parent: OpenTK.Graphics.Glx.Glx.SGIX + langs: + - csharp + - vb + name: QueryHyperpipeBestAttribSGIX(DisplayPtr, int, int, int, nint, nint) + nameWithType: Glx.SGIX.QueryHyperpipeBestAttribSGIX(DisplayPtr, int, int, int, nint, nint) + fullName: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeBestAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr, int, int, int, nint, nint) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: HyperpipeConfigSGIX - path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 565 + id: QueryHyperpipeBestAttribSGIX + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 1743 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx summary: >- [requires: GLX_SGIX_hyperpipe] - [entry point: glXHyperpipeConfigSGIX] + [entry point: glXQueryHyperpipeBestAttribSGIX]
example: [] syntax: - content: public static int HyperpipeConfigSGIX(DisplayPtr dpy, int networkId, int npipes, ref GLXHyperpipeConfigSGIX cfg, ref int hpId) + content: public static int QueryHyperpipeBestAttribSGIX(DisplayPtr dpy, int timeSlice, int attrib, int size, nint attribList, nint returnAttribList) parameters: - id: dpy type: OpenTK.Graphics.Glx.DisplayPtr - - id: networkId + - id: timeSlice type: System.Int32 - - id: npipes + - id: attrib type: System.Int32 - - id: cfg - type: OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX - - id: hpId + - id: size type: System.Int32 + - id: attribList + type: System.IntPtr + - id: returnAttribList + type: System.IntPtr return: type: System.Int32 - content.vb: Public Shared Function HyperpipeConfigSGIX(dpy As DisplayPtr, networkId As Integer, npipes As Integer, cfg As GLXHyperpipeConfigSGIX, hpId As Integer) As Integer - overload: OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeConfigSGIX* - nameWithType.vb: Glx.SGIX.HyperpipeConfigSGIX(DisplayPtr, Integer, Integer, GLXHyperpipeConfigSGIX, Integer) - fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer, OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX, Integer) - name.vb: HyperpipeConfigSGIX(DisplayPtr, Integer, Integer, GLXHyperpipeConfigSGIX, Integer) -- uid: OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelDeltasSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32@,System.Int32@,System.Int32@,System.Int32@) - commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelDeltasSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32@,System.Int32@,System.Int32@,System.Int32@) - id: QueryChannelDeltasSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32@,System.Int32@,System.Int32@,System.Int32@) + content.vb: Public Shared Function QueryHyperpipeBestAttribSGIX(dpy As DisplayPtr, timeSlice As Integer, attrib As Integer, size As Integer, attribList As IntPtr, returnAttribList As IntPtr) As Integer + overload: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeBestAttribSGIX* + nameWithType.vb: Glx.SGIX.QueryHyperpipeBestAttribSGIX(DisplayPtr, Integer, Integer, Integer, IntPtr, IntPtr) + fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeBestAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer, Integer, System.IntPtr, System.IntPtr) + name.vb: QueryHyperpipeBestAttribSGIX(DisplayPtr, Integer, Integer, Integer, IntPtr, IntPtr) +- uid: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeBestAttribSGIX``2(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.Span{``0},System.Span{``1}) + commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeBestAttribSGIX``2(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.Span{``0},System.Span{``1}) + id: QueryHyperpipeBestAttribSGIX``2(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.Span{``0},System.Span{``1}) parent: OpenTK.Graphics.Glx.Glx.SGIX langs: - csharp - vb - name: QueryChannelDeltasSGIX(DisplayPtr, int, int, ref int, ref int, ref int, ref int) - nameWithType: Glx.SGIX.QueryChannelDeltasSGIX(DisplayPtr, int, int, ref int, ref int, ref int, ref int) - fullName: OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelDeltasSGIX(OpenTK.Graphics.Glx.DisplayPtr, int, int, ref int, ref int, ref int, ref int) + name: QueryHyperpipeBestAttribSGIX(DisplayPtr, int, int, int, Span, Span) + nameWithType: Glx.SGIX.QueryHyperpipeBestAttribSGIX(DisplayPtr, int, int, int, Span, Span) + fullName: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeBestAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr, int, int, int, System.Span, System.Span) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: QueryChannelDeltasSGIX - path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 576 + id: QueryHyperpipeBestAttribSGIX + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 1752 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx summary: >- - [requires: GLX_SGIX_video_resize] + [requires: GLX_SGIX_hyperpipe] - [entry point: glXQueryChannelDeltasSGIX] + [entry point: glXQueryHyperpipeBestAttribSGIX]
example: [] syntax: - content: public static int QueryChannelDeltasSGIX(DisplayPtr display, int screen, int channel, ref int x, ref int y, ref int w, ref int h) + content: 'public static int QueryHyperpipeBestAttribSGIX(DisplayPtr dpy, int timeSlice, int attrib, int size, Span attribList, Span returnAttribList) where T1 : unmanaged where T2 : unmanaged' parameters: - - id: display + - id: dpy type: OpenTK.Graphics.Glx.DisplayPtr - - id: screen - type: System.Int32 - - id: channel - type: System.Int32 - - id: x - type: System.Int32 - - id: y + - id: timeSlice type: System.Int32 - - id: w + - id: attrib type: System.Int32 - - id: h + - id: size type: System.Int32 + - id: attribList + type: System.Span{{T1}} + - id: returnAttribList + type: System.Span{{T2}} + typeParameters: + - id: T1 + - id: T2 return: type: System.Int32 - content.vb: Public Shared Function QueryChannelDeltasSGIX(display As DisplayPtr, screen As Integer, channel As Integer, x As Integer, y As Integer, w As Integer, h As Integer) As Integer - overload: OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelDeltasSGIX* - nameWithType.vb: Glx.SGIX.QueryChannelDeltasSGIX(DisplayPtr, Integer, Integer, Integer, Integer, Integer, Integer) - fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelDeltasSGIX(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer, Integer, Integer, Integer, Integer) - name.vb: QueryChannelDeltasSGIX(DisplayPtr, Integer, Integer, Integer, Integer, Integer, Integer) -- uid: OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelRectSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32@,System.Int32@,System.Int32@,System.Int32@) - commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelRectSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32@,System.Int32@,System.Int32@,System.Int32@) - id: QueryChannelRectSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32@,System.Int32@,System.Int32@,System.Int32@) + content.vb: Public Shared Function QueryHyperpipeBestAttribSGIX(Of T1 As Structure, T2 As Structure)(dpy As DisplayPtr, timeSlice As Integer, attrib As Integer, size As Integer, attribList As Span(Of T1), returnAttribList As Span(Of T2)) As Integer + overload: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeBestAttribSGIX* + nameWithType.vb: Glx.SGIX.QueryHyperpipeBestAttribSGIX(Of T1, T2)(DisplayPtr, Integer, Integer, Integer, Span(Of T1), Span(Of T2)) + fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeBestAttribSGIX(Of T1, T2)(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer, Integer, System.Span(Of T1), System.Span(Of T2)) + name.vb: QueryHyperpipeBestAttribSGIX(Of T1, T2)(DisplayPtr, Integer, Integer, Integer, Span(Of T1), Span(Of T2)) +- uid: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeBestAttribSGIX``2(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,``0[],``1[]) + commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeBestAttribSGIX``2(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,``0[],``1[]) + id: QueryHyperpipeBestAttribSGIX``2(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,``0[],``1[]) parent: OpenTK.Graphics.Glx.Glx.SGIX langs: - csharp - vb - name: QueryChannelRectSGIX(DisplayPtr, int, int, ref int, ref int, ref int, ref int) - nameWithType: Glx.SGIX.QueryChannelRectSGIX(DisplayPtr, int, int, ref int, ref int, ref int, ref int) - fullName: OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelRectSGIX(OpenTK.Graphics.Glx.DisplayPtr, int, int, ref int, ref int, ref int, ref int) + name: QueryHyperpipeBestAttribSGIX(DisplayPtr, int, int, int, T1[], T2[]) + nameWithType: Glx.SGIX.QueryHyperpipeBestAttribSGIX(DisplayPtr, int, int, int, T1[], T2[]) + fullName: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeBestAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr, int, int, int, T1[], T2[]) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: QueryChannelRectSGIX - path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 589 + id: QueryHyperpipeBestAttribSGIX + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 1767 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx summary: >- - [requires: GLX_SGIX_video_resize] + [requires: GLX_SGIX_hyperpipe] - [entry point: glXQueryChannelRectSGIX] + [entry point: glXQueryHyperpipeBestAttribSGIX]
example: [] syntax: - content: public static int QueryChannelRectSGIX(DisplayPtr display, int screen, int channel, ref int dx, ref int dy, ref int dw, ref int dh) + content: 'public static int QueryHyperpipeBestAttribSGIX(DisplayPtr dpy, int timeSlice, int attrib, int size, T1[] attribList, T2[] returnAttribList) where T1 : unmanaged where T2 : unmanaged' parameters: - - id: display + - id: dpy type: OpenTK.Graphics.Glx.DisplayPtr - - id: screen - type: System.Int32 - - id: channel - type: System.Int32 - - id: dx - type: System.Int32 - - id: dy + - id: timeSlice type: System.Int32 - - id: dw + - id: attrib type: System.Int32 - - id: dh + - id: size type: System.Int32 + - id: attribList + type: '{T1}[]' + - id: returnAttribList + type: '{T2}[]' + typeParameters: + - id: T1 + - id: T2 return: type: System.Int32 - content.vb: Public Shared Function QueryChannelRectSGIX(display As DisplayPtr, screen As Integer, channel As Integer, dx As Integer, dy As Integer, dw As Integer, dh As Integer) As Integer - overload: OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelRectSGIX* - nameWithType.vb: Glx.SGIX.QueryChannelRectSGIX(DisplayPtr, Integer, Integer, Integer, Integer, Integer, Integer) - fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelRectSGIX(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer, Integer, Integer, Integer, Integer) - name.vb: QueryChannelRectSGIX(DisplayPtr, Integer, Integer, Integer, Integer, Integer, Integer) -- uid: OpenTK.Graphics.Glx.Glx.SGIX.QueryGLXPbufferSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXPbufferSGIX,System.Int32,System.UInt32@) - commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.QueryGLXPbufferSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXPbufferSGIX,System.Int32,System.UInt32@) - id: QueryGLXPbufferSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXPbufferSGIX,System.Int32,System.UInt32@) + content.vb: Public Shared Function QueryHyperpipeBestAttribSGIX(Of T1 As Structure, T2 As Structure)(dpy As DisplayPtr, timeSlice As Integer, attrib As Integer, size As Integer, attribList As T1(), returnAttribList As T2()) As Integer + overload: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeBestAttribSGIX* + nameWithType.vb: Glx.SGIX.QueryHyperpipeBestAttribSGIX(Of T1, T2)(DisplayPtr, Integer, Integer, Integer, T1(), T2()) + fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeBestAttribSGIX(Of T1, T2)(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer, Integer, T1(), T2()) + name.vb: QueryHyperpipeBestAttribSGIX(Of T1, T2)(DisplayPtr, Integer, Integer, Integer, T1(), T2()) +- uid: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeBestAttribSGIX``2(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,``0@,``1@) + commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeBestAttribSGIX``2(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,``0@,``1@) + id: QueryHyperpipeBestAttribSGIX``2(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,``0@,``1@) parent: OpenTK.Graphics.Glx.Glx.SGIX langs: - csharp - vb - name: QueryGLXPbufferSGIX(DisplayPtr, GLXPbufferSGIX, int, ref uint) - nameWithType: Glx.SGIX.QueryGLXPbufferSGIX(DisplayPtr, GLXPbufferSGIX, int, ref uint) - fullName: OpenTK.Graphics.Glx.Glx.SGIX.QueryGLXPbufferSGIX(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXPbufferSGIX, int, ref uint) + name: QueryHyperpipeBestAttribSGIX(DisplayPtr, int, int, int, ref T1, ref T2) + nameWithType: Glx.SGIX.QueryHyperpipeBestAttribSGIX(DisplayPtr, int, int, int, ref T1, ref T2) + fullName: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeBestAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr, int, int, int, ref T1, ref T2) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: QueryGLXPbufferSGIX - path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 602 + id: QueryHyperpipeBestAttribSGIX + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 1782 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx summary: >- - [requires: GLX_SGIX_pbuffer] + [requires: GLX_SGIX_hyperpipe] - [entry point: glXQueryGLXPbufferSGIX] + [entry point: glXQueryHyperpipeBestAttribSGIX]
example: [] syntax: - content: public static void QueryGLXPbufferSGIX(DisplayPtr dpy, GLXPbufferSGIX pbuf, int attribute, ref uint value) + content: 'public static int QueryHyperpipeBestAttribSGIX(DisplayPtr dpy, int timeSlice, int attrib, int size, ref T1 attribList, ref T2 returnAttribList) where T1 : unmanaged where T2 : unmanaged' parameters: - id: dpy type: OpenTK.Graphics.Glx.DisplayPtr - - id: pbuf - type: OpenTK.Graphics.Glx.GLXPbufferSGIX - - id: attribute + - id: timeSlice type: System.Int32 - - id: value - type: System.UInt32 - content.vb: Public Shared Sub QueryGLXPbufferSGIX(dpy As DisplayPtr, pbuf As GLXPbufferSGIX, attribute As Integer, value As UInteger) - overload: OpenTK.Graphics.Glx.Glx.SGIX.QueryGLXPbufferSGIX* - nameWithType.vb: Glx.SGIX.QueryGLXPbufferSGIX(DisplayPtr, GLXPbufferSGIX, Integer, UInteger) - fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.QueryGLXPbufferSGIX(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXPbufferSGIX, Integer, UInteger) - name.vb: QueryGLXPbufferSGIX(DisplayPtr, GLXPbufferSGIX, Integer, UInteger) -- uid: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.IntPtr) - commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.IntPtr) - id: QueryHyperpipeAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.IntPtr) + - id: attrib + type: System.Int32 + - id: size + type: System.Int32 + - id: attribList + type: '{T1}' + - id: returnAttribList + type: '{T2}' + typeParameters: + - id: T1 + - id: T2 + return: + type: System.Int32 + content.vb: Public Shared Function QueryHyperpipeBestAttribSGIX(Of T1 As Structure, T2 As Structure)(dpy As DisplayPtr, timeSlice As Integer, attrib As Integer, size As Integer, attribList As T1, returnAttribList As T2) As Integer + overload: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeBestAttribSGIX* + nameWithType.vb: Glx.SGIX.QueryHyperpipeBestAttribSGIX(Of T1, T2)(DisplayPtr, Integer, Integer, Integer, T1, T2) + fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeBestAttribSGIX(Of T1, T2)(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer, Integer, T1, T2) + name.vb: QueryHyperpipeBestAttribSGIX(Of T1, T2)(DisplayPtr, Integer, Integer, Integer, T1, T2) +- uid: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Span{System.Int32}) + commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Span{System.Int32}) + id: QueryHyperpipeConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Span{System.Int32}) parent: OpenTK.Graphics.Glx.Glx.SGIX langs: - csharp - vb - name: QueryHyperpipeAttribSGIX(DisplayPtr, int, int, int, nint) - nameWithType: Glx.SGIX.QueryHyperpipeAttribSGIX(DisplayPtr, int, int, int, nint) - fullName: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr, int, int, int, nint) + name: QueryHyperpipeConfigSGIX(DisplayPtr, int, Span) + nameWithType: Glx.SGIX.QueryHyperpipeConfigSGIX(DisplayPtr, int, Span) + fullName: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr, int, System.Span) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: QueryHyperpipeAttribSGIX - path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 610 + id: QueryHyperpipeConfigSGIX + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 1795 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx summary: >- [requires: GLX_SGIX_hyperpipe] - [entry point: glXQueryHyperpipeAttribSGIX] + [entry point: glXQueryHyperpipeConfigSGIX]
example: [] syntax: - content: public static int QueryHyperpipeAttribSGIX(DisplayPtr dpy, int timeSlice, int attrib, int size, nint returnAttribList) + content: public static GLXHyperpipeConfigSGIX* QueryHyperpipeConfigSGIX(DisplayPtr dpy, int hpId, Span npipes) parameters: - id: dpy type: OpenTK.Graphics.Glx.DisplayPtr - - id: timeSlice - type: System.Int32 - - id: attrib - type: System.Int32 - - id: size + - id: hpId type: System.Int32 - - id: returnAttribList - type: System.IntPtr + - id: npipes + type: System.Span{System.Int32} return: - type: System.Int32 - content.vb: Public Shared Function QueryHyperpipeAttribSGIX(dpy As DisplayPtr, timeSlice As Integer, attrib As Integer, size As Integer, returnAttribList As IntPtr) As Integer - overload: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeAttribSGIX* - nameWithType.vb: Glx.SGIX.QueryHyperpipeAttribSGIX(DisplayPtr, Integer, Integer, Integer, IntPtr) - fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer, Integer, System.IntPtr) - name.vb: QueryHyperpipeAttribSGIX(DisplayPtr, Integer, Integer, Integer, IntPtr) -- uid: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeAttribSGIX``1(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,``0@) - commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeAttribSGIX``1(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,``0@) - id: QueryHyperpipeAttribSGIX``1(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,``0@) + type: OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX* + content.vb: Public Shared Function QueryHyperpipeConfigSGIX(dpy As DisplayPtr, hpId As Integer, npipes As Span(Of Integer)) As GLXHyperpipeConfigSGIX* + overload: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeConfigSGIX* + nameWithType.vb: Glx.SGIX.QueryHyperpipeConfigSGIX(DisplayPtr, Integer, Span(Of Integer)) + fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr, Integer, System.Span(Of Integer)) + name.vb: QueryHyperpipeConfigSGIX(DisplayPtr, Integer, Span(Of Integer)) +- uid: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32[]) + commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32[]) + id: QueryHyperpipeConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32[]) parent: OpenTK.Graphics.Glx.Glx.SGIX langs: - csharp - vb - name: QueryHyperpipeAttribSGIX(DisplayPtr, int, int, int, ref T1) - nameWithType: Glx.SGIX.QueryHyperpipeAttribSGIX(DisplayPtr, int, int, int, ref T1) - fullName: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr, int, int, int, ref T1) + name: QueryHyperpipeConfigSGIX(DisplayPtr, int, int[]) + nameWithType: Glx.SGIX.QueryHyperpipeConfigSGIX(DisplayPtr, int, int[]) + fullName: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr, int, int[]) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: QueryHyperpipeAttribSGIX - path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 618 + id: QueryHyperpipeConfigSGIX + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 1805 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx summary: >- [requires: GLX_SGIX_hyperpipe] - [entry point: glXQueryHyperpipeAttribSGIX] + [entry point: glXQueryHyperpipeConfigSGIX]
example: [] syntax: - content: 'public static int QueryHyperpipeAttribSGIX(DisplayPtr dpy, int timeSlice, int attrib, int size, ref T1 returnAttribList) where T1 : unmanaged' + content: public static GLXHyperpipeConfigSGIX* QueryHyperpipeConfigSGIX(DisplayPtr dpy, int hpId, int[] npipes) parameters: - id: dpy type: OpenTK.Graphics.Glx.DisplayPtr - - id: timeSlice - type: System.Int32 - - id: attrib - type: System.Int32 - - id: size + - id: hpId type: System.Int32 - - id: returnAttribList - type: '{T1}' - typeParameters: - - id: T1 + - id: npipes + type: System.Int32[] return: - type: System.Int32 - content.vb: Public Shared Function QueryHyperpipeAttribSGIX(Of T1 As Structure)(dpy As DisplayPtr, timeSlice As Integer, attrib As Integer, size As Integer, returnAttribList As T1) As Integer - overload: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeAttribSGIX* - nameWithType.vb: Glx.SGIX.QueryHyperpipeAttribSGIX(Of T1)(DisplayPtr, Integer, Integer, Integer, T1) - fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeAttribSGIX(Of T1)(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer, Integer, T1) - name.vb: QueryHyperpipeAttribSGIX(Of T1)(DisplayPtr, Integer, Integer, Integer, T1) -- uid: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeBestAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.IntPtr,System.IntPtr) - commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeBestAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.IntPtr,System.IntPtr) - id: QueryHyperpipeBestAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.IntPtr,System.IntPtr) + type: OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX* + content.vb: Public Shared Function QueryHyperpipeConfigSGIX(dpy As DisplayPtr, hpId As Integer, npipes As Integer()) As GLXHyperpipeConfigSGIX* + overload: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeConfigSGIX* + nameWithType.vb: Glx.SGIX.QueryHyperpipeConfigSGIX(DisplayPtr, Integer, Integer()) + fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer()) + name.vb: QueryHyperpipeConfigSGIX(DisplayPtr, Integer, Integer()) +- uid: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32@) + commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32@) + id: QueryHyperpipeConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32@) parent: OpenTK.Graphics.Glx.Glx.SGIX langs: - csharp - vb - name: QueryHyperpipeBestAttribSGIX(DisplayPtr, int, int, int, nint, nint) - nameWithType: Glx.SGIX.QueryHyperpipeBestAttribSGIX(DisplayPtr, int, int, int, nint, nint) - fullName: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeBestAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr, int, int, int, nint, nint) + name: QueryHyperpipeConfigSGIX(DisplayPtr, int, ref int) + nameWithType: Glx.SGIX.QueryHyperpipeConfigSGIX(DisplayPtr, int, ref int) + fullName: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr, int, ref int) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: QueryHyperpipeBestAttribSGIX - path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 629 + id: QueryHyperpipeConfigSGIX + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 1815 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx summary: >- [requires: GLX_SGIX_hyperpipe] - [entry point: glXQueryHyperpipeBestAttribSGIX] + [entry point: glXQueryHyperpipeConfigSGIX]
example: [] syntax: - content: public static int QueryHyperpipeBestAttribSGIX(DisplayPtr dpy, int timeSlice, int attrib, int size, nint attribList, nint returnAttribList) + content: public static GLXHyperpipeConfigSGIX* QueryHyperpipeConfigSGIX(DisplayPtr dpy, int hpId, ref int npipes) parameters: - id: dpy type: OpenTK.Graphics.Glx.DisplayPtr - - id: timeSlice - type: System.Int32 - - id: attrib + - id: hpId type: System.Int32 - - id: size + - id: npipes type: System.Int32 - - id: attribList - type: System.IntPtr - - id: returnAttribList - type: System.IntPtr return: - type: System.Int32 - content.vb: Public Shared Function QueryHyperpipeBestAttribSGIX(dpy As DisplayPtr, timeSlice As Integer, attrib As Integer, size As Integer, attribList As IntPtr, returnAttribList As IntPtr) As Integer - overload: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeBestAttribSGIX* - nameWithType.vb: Glx.SGIX.QueryHyperpipeBestAttribSGIX(DisplayPtr, Integer, Integer, Integer, IntPtr, IntPtr) - fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeBestAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer, Integer, System.IntPtr, System.IntPtr) - name.vb: QueryHyperpipeBestAttribSGIX(DisplayPtr, Integer, Integer, Integer, IntPtr, IntPtr) -- uid: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeBestAttribSGIX``2(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,``0@,``1@) - commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeBestAttribSGIX``2(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,``0@,``1@) - id: QueryHyperpipeBestAttribSGIX``2(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,``0@,``1@) + type: OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX* + content.vb: Public Shared Function QueryHyperpipeConfigSGIX(dpy As DisplayPtr, hpId As Integer, npipes As Integer) As GLXHyperpipeConfigSGIX* + overload: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeConfigSGIX* + nameWithType.vb: Glx.SGIX.QueryHyperpipeConfigSGIX(DisplayPtr, Integer, Integer) + fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer) + name.vb: QueryHyperpipeConfigSGIX(DisplayPtr, Integer, Integer) +- uid: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeNetworkSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Span{System.Int32}) + commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeNetworkSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Span{System.Int32}) + id: QueryHyperpipeNetworkSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Span{System.Int32}) parent: OpenTK.Graphics.Glx.Glx.SGIX langs: - csharp - vb - name: QueryHyperpipeBestAttribSGIX(DisplayPtr, int, int, int, ref T1, ref T2) - nameWithType: Glx.SGIX.QueryHyperpipeBestAttribSGIX(DisplayPtr, int, int, int, ref T1, ref T2) - fullName: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeBestAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr, int, int, int, ref T1, ref T2) + name: QueryHyperpipeNetworkSGIX(DisplayPtr, Span) + nameWithType: Glx.SGIX.QueryHyperpipeNetworkSGIX(DisplayPtr, Span) + fullName: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeNetworkSGIX(OpenTK.Graphics.Glx.DisplayPtr, System.Span) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: QueryHyperpipeBestAttribSGIX - path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 638 + id: QueryHyperpipeNetworkSGIX + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 1825 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx summary: >- [requires: GLX_SGIX_hyperpipe] - [entry point: glXQueryHyperpipeBestAttribSGIX] + [entry point: glXQueryHyperpipeNetworkSGIX]
example: [] syntax: - content: 'public static int QueryHyperpipeBestAttribSGIX(DisplayPtr dpy, int timeSlice, int attrib, int size, ref T1 attribList, ref T2 returnAttribList) where T1 : unmanaged where T2 : unmanaged' + content: public static GLXHyperpipeNetworkSGIX* QueryHyperpipeNetworkSGIX(DisplayPtr dpy, Span npipes) parameters: - id: dpy type: OpenTK.Graphics.Glx.DisplayPtr - - id: timeSlice - type: System.Int32 - - id: attrib - type: System.Int32 - - id: size - type: System.Int32 - - id: attribList - type: '{T1}' - - id: returnAttribList - type: '{T2}' - typeParameters: - - id: T1 - - id: T2 + - id: npipes + type: System.Span{System.Int32} return: - type: System.Int32 - content.vb: Public Shared Function QueryHyperpipeBestAttribSGIX(Of T1 As Structure, T2 As Structure)(dpy As DisplayPtr, timeSlice As Integer, attrib As Integer, size As Integer, attribList As T1, returnAttribList As T2) As Integer - overload: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeBestAttribSGIX* - nameWithType.vb: Glx.SGIX.QueryHyperpipeBestAttribSGIX(Of T1, T2)(DisplayPtr, Integer, Integer, Integer, T1, T2) - fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeBestAttribSGIX(Of T1, T2)(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer, Integer, T1, T2) - name.vb: QueryHyperpipeBestAttribSGIX(Of T1, T2)(DisplayPtr, Integer, Integer, Integer, T1, T2) -- uid: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32@) - commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32@) - id: QueryHyperpipeConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32@) + type: OpenTK.Graphics.Glx.GLXHyperpipeNetworkSGIX* + content.vb: Public Shared Function QueryHyperpipeNetworkSGIX(dpy As DisplayPtr, npipes As Span(Of Integer)) As GLXHyperpipeNetworkSGIX* + overload: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeNetworkSGIX* + nameWithType.vb: Glx.SGIX.QueryHyperpipeNetworkSGIX(DisplayPtr, Span(Of Integer)) + fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeNetworkSGIX(OpenTK.Graphics.Glx.DisplayPtr, System.Span(Of Integer)) + name.vb: QueryHyperpipeNetworkSGIX(DisplayPtr, Span(Of Integer)) +- uid: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeNetworkSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32[]) + commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeNetworkSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32[]) + id: QueryHyperpipeNetworkSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32[]) parent: OpenTK.Graphics.Glx.Glx.SGIX langs: - csharp - vb - name: QueryHyperpipeConfigSGIX(DisplayPtr, int, ref int) - nameWithType: Glx.SGIX.QueryHyperpipeConfigSGIX(DisplayPtr, int, ref int) - fullName: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr, int, ref int) + name: QueryHyperpipeNetworkSGIX(DisplayPtr, int[]) + nameWithType: Glx.SGIX.QueryHyperpipeNetworkSGIX(DisplayPtr, int[]) + fullName: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeNetworkSGIX(OpenTK.Graphics.Glx.DisplayPtr, int[]) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: QueryHyperpipeConfigSGIX - path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 651 + id: QueryHyperpipeNetworkSGIX + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 1835 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx summary: >- [requires: GLX_SGIX_hyperpipe] - [entry point: glXQueryHyperpipeConfigSGIX] + [entry point: glXQueryHyperpipeNetworkSGIX]
example: [] syntax: - content: public static GLXHyperpipeConfigSGIX* QueryHyperpipeConfigSGIX(DisplayPtr dpy, int hpId, ref int npipes) + content: public static GLXHyperpipeNetworkSGIX* QueryHyperpipeNetworkSGIX(DisplayPtr dpy, int[] npipes) parameters: - id: dpy type: OpenTK.Graphics.Glx.DisplayPtr - - id: hpId - type: System.Int32 - id: npipes - type: System.Int32 + type: System.Int32[] return: - type: OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX* - content.vb: Public Shared Function QueryHyperpipeConfigSGIX(dpy As DisplayPtr, hpId As Integer, npipes As Integer) As GLXHyperpipeConfigSGIX* - overload: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeConfigSGIX* - nameWithType.vb: Glx.SGIX.QueryHyperpipeConfigSGIX(DisplayPtr, Integer, Integer) - fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer) - name.vb: QueryHyperpipeConfigSGIX(DisplayPtr, Integer, Integer) + type: OpenTK.Graphics.Glx.GLXHyperpipeNetworkSGIX* + content.vb: Public Shared Function QueryHyperpipeNetworkSGIX(dpy As DisplayPtr, npipes As Integer()) As GLXHyperpipeNetworkSGIX* + overload: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeNetworkSGIX* + nameWithType.vb: Glx.SGIX.QueryHyperpipeNetworkSGIX(DisplayPtr, Integer()) + fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeNetworkSGIX(OpenTK.Graphics.Glx.DisplayPtr, Integer()) + name.vb: QueryHyperpipeNetworkSGIX(DisplayPtr, Integer()) - uid: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeNetworkSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32@) commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeNetworkSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32@) id: QueryHyperpipeNetworkSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32@) @@ -1931,13 +3078,9 @@ items: fullName: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeNetworkSGIX(OpenTK.Graphics.Glx.DisplayPtr, ref int) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: QueryHyperpipeNetworkSGIX - path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 661 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 1845 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -1962,6 +3105,88 @@ items: nameWithType.vb: Glx.SGIX.QueryHyperpipeNetworkSGIX(DisplayPtr, Integer) fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeNetworkSGIX(OpenTK.Graphics.Glx.DisplayPtr, Integer) name.vb: QueryHyperpipeNetworkSGIX(DisplayPtr, Integer) +- uid: OpenTK.Graphics.Glx.Glx.SGIX.QueryMaxSwapBarriersSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Span{System.Int32}) + commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.QueryMaxSwapBarriersSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Span{System.Int32}) + id: QueryMaxSwapBarriersSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Span{System.Int32}) + parent: OpenTK.Graphics.Glx.Glx.SGIX + langs: + - csharp + - vb + name: QueryMaxSwapBarriersSGIX(DisplayPtr, int, Span) + nameWithType: Glx.SGIX.QueryMaxSwapBarriersSGIX(DisplayPtr, int, Span) + fullName: OpenTK.Graphics.Glx.Glx.SGIX.QueryMaxSwapBarriersSGIX(OpenTK.Graphics.Glx.DisplayPtr, int, System.Span) + type: Method + source: + id: QueryMaxSwapBarriersSGIX + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 1855 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Glx + summary: >- + [requires: GLX_SGIX_swap_barrier] + + [entry point: glXQueryMaxSwapBarriersSGIX] + +
+ example: [] + syntax: + content: public static bool QueryMaxSwapBarriersSGIX(DisplayPtr dpy, int screen, Span max) + parameters: + - id: dpy + type: OpenTK.Graphics.Glx.DisplayPtr + - id: screen + type: System.Int32 + - id: max + type: System.Span{System.Int32} + return: + type: System.Boolean + content.vb: Public Shared Function QueryMaxSwapBarriersSGIX(dpy As DisplayPtr, screen As Integer, max As Span(Of Integer)) As Boolean + overload: OpenTK.Graphics.Glx.Glx.SGIX.QueryMaxSwapBarriersSGIX* + nameWithType.vb: Glx.SGIX.QueryMaxSwapBarriersSGIX(DisplayPtr, Integer, Span(Of Integer)) + fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.QueryMaxSwapBarriersSGIX(OpenTK.Graphics.Glx.DisplayPtr, Integer, System.Span(Of Integer)) + name.vb: QueryMaxSwapBarriersSGIX(DisplayPtr, Integer, Span(Of Integer)) +- uid: OpenTK.Graphics.Glx.Glx.SGIX.QueryMaxSwapBarriersSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32[]) + commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.QueryMaxSwapBarriersSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32[]) + id: QueryMaxSwapBarriersSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32[]) + parent: OpenTK.Graphics.Glx.Glx.SGIX + langs: + - csharp + - vb + name: QueryMaxSwapBarriersSGIX(DisplayPtr, int, int[]) + nameWithType: Glx.SGIX.QueryMaxSwapBarriersSGIX(DisplayPtr, int, int[]) + fullName: OpenTK.Graphics.Glx.Glx.SGIX.QueryMaxSwapBarriersSGIX(OpenTK.Graphics.Glx.DisplayPtr, int, int[]) + type: Method + source: + id: QueryMaxSwapBarriersSGIX + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 1865 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Glx + summary: >- + [requires: GLX_SGIX_swap_barrier] + + [entry point: glXQueryMaxSwapBarriersSGIX] + +
+ example: [] + syntax: + content: public static bool QueryMaxSwapBarriersSGIX(DisplayPtr dpy, int screen, int[] max) + parameters: + - id: dpy + type: OpenTK.Graphics.Glx.DisplayPtr + - id: screen + type: System.Int32 + - id: max + type: System.Int32[] + return: + type: System.Boolean + content.vb: Public Shared Function QueryMaxSwapBarriersSGIX(dpy As DisplayPtr, screen As Integer, max As Integer()) As Boolean + overload: OpenTK.Graphics.Glx.Glx.SGIX.QueryMaxSwapBarriersSGIX* + nameWithType.vb: Glx.SGIX.QueryMaxSwapBarriersSGIX(DisplayPtr, Integer, Integer()) + fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.QueryMaxSwapBarriersSGIX(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer()) + name.vb: QueryMaxSwapBarriersSGIX(DisplayPtr, Integer, Integer()) - uid: OpenTK.Graphics.Glx.Glx.SGIX.QueryMaxSwapBarriersSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32@) commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.QueryMaxSwapBarriersSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32@) id: QueryMaxSwapBarriersSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32@) @@ -1974,13 +3199,9 @@ items: fullName: OpenTK.Graphics.Glx.Glx.SGIX.QueryMaxSwapBarriersSGIX(OpenTK.Graphics.Glx.DisplayPtr, int, ref int) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: QueryMaxSwapBarriersSGIX - path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 671 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 1875 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -2683,6 +3904,150 @@ references: nameWithType.vb: ULong fullName.vb: ULong name.vb: ULong +- uid: System.Span{System.Int32} + commentId: T:System.Span{System.Int32} + parent: System + definition: System.Span`1 + href: https://learn.microsoft.com/dotnet/api/system.span-1 + name: Span + nameWithType: Span + fullName: System.Span + nameWithType.vb: Span(Of Integer) + fullName.vb: System.Span(Of Integer) + name.vb: Span(Of Integer) + spec.csharp: + - uid: System.Span`1 + name: Span + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.span-1 + - name: < + - uid: System.Int32 + name: int + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: '>' + spec.vb: + - uid: System.Span`1 + name: Span + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.span-1 + - name: ( + - name: Of + - name: " " + - uid: System.Int32 + name: Integer + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ) +- uid: System.Span`1 + commentId: T:System.Span`1 + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.span-1 + name: Span + nameWithType: Span + fullName: System.Span + nameWithType.vb: Span(Of T) + fullName.vb: System.Span(Of T) + name.vb: Span(Of T) + spec.csharp: + - uid: System.Span`1 + name: Span + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.span-1 + - name: < + - name: T + - name: '>' + spec.vb: + - uid: System.Span`1 + name: Span + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.span-1 + - name: ( + - name: Of + - name: " " + - name: T + - name: ) +- uid: System.Int32[] + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + name: int[] + nameWithType: int[] + fullName: int[] + nameWithType.vb: Integer() + fullName.vb: Integer() + name.vb: Integer() + spec.csharp: + - uid: System.Int32 + name: int + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: '[' + - name: ']' + spec.vb: + - uid: System.Int32 + name: Integer + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ( + - name: ) +- uid: System.Span{System.UInt64} + commentId: T:System.Span{System.UInt64} + parent: System + definition: System.Span`1 + href: https://learn.microsoft.com/dotnet/api/system.span-1 + name: Span + nameWithType: Span + fullName: System.Span + nameWithType.vb: Span(Of ULong) + fullName.vb: System.Span(Of ULong) + name.vb: Span(Of ULong) + spec.csharp: + - uid: System.Span`1 + name: Span + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.span-1 + - name: < + - uid: System.UInt64 + name: ulong + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.uint64 + - name: '>' + spec.vb: + - uid: System.Span`1 + name: Span + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.span-1 + - name: ( + - name: Of + - name: " " + - uid: System.UInt64 + name: ULong + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.uint64 + - name: ) +- uid: System.UInt64[] + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.uint64 + name: ulong[] + nameWithType: ulong[] + fullName: ulong[] + nameWithType.vb: ULong() + fullName.vb: ULong() + name.vb: ULong() + spec.csharp: + - uid: System.UInt64 + name: ulong + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.uint64 + - name: '[' + - name: ']' + spec.vb: + - uid: System.UInt64 + name: ULong + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.uint64 + - name: ( + - name: ) - uid: System.IntPtr commentId: T:System.IntPtr parent: System @@ -2694,6 +4059,51 @@ references: nameWithType.vb: IntPtr fullName.vb: System.IntPtr name.vb: IntPtr +- uid: System.Span{{T1}} + commentId: T:System.Span{``0} + parent: System + definition: System.Span`1 + href: https://learn.microsoft.com/dotnet/api/system.span-1 + name: Span + nameWithType: Span + fullName: System.Span + nameWithType.vb: Span(Of T1) + fullName.vb: System.Span(Of T1) + name.vb: Span(Of T1) + spec.csharp: + - uid: System.Span`1 + name: Span + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.span-1 + - name: < + - name: T1 + - name: '>' + spec.vb: + - uid: System.Span`1 + name: Span + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.span-1 + - name: ( + - name: Of + - name: " " + - name: T1 + - name: ) +- uid: '{T1}[]' + isExternal: true + name: T1[] + nameWithType: T1[] + fullName: T1[] + nameWithType.vb: T1() + fullName.vb: T1() + name.vb: T1() + spec.csharp: + - name: T1 + - name: '[' + - name: ']' + spec.vb: + - name: T1 + - name: ( + - name: ) - uid: '{T1}' commentId: '!:T1' definition: T1 @@ -2704,6 +4114,60 @@ references: name: T1 nameWithType: T1 fullName: T1 +- uid: System.Span{OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX} + commentId: T:System.Span{OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX} + parent: System + definition: System.Span`1 + href: https://learn.microsoft.com/dotnet/api/system.span-1 + name: Span + nameWithType: Span + fullName: System.Span + nameWithType.vb: Span(Of GLXHyperpipeConfigSGIX) + fullName.vb: System.Span(Of OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX) + name.vb: Span(Of GLXHyperpipeConfigSGIX) + spec.csharp: + - uid: System.Span`1 + name: Span + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.span-1 + - name: < + - uid: OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX + name: GLXHyperpipeConfigSGIX + href: OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX.html + - name: '>' + spec.vb: + - uid: System.Span`1 + name: Span + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.span-1 + - name: ( + - name: Of + - name: " " + - uid: OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX + name: GLXHyperpipeConfigSGIX + href: OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX.html + - name: ) +- uid: OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX[] + isExternal: true + href: OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX.html + name: GLXHyperpipeConfigSGIX[] + nameWithType: GLXHyperpipeConfigSGIX[] + fullName: OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX[] + nameWithType.vb: GLXHyperpipeConfigSGIX() + fullName.vb: OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX() + name.vb: GLXHyperpipeConfigSGIX() + spec.csharp: + - uid: OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX + name: GLXHyperpipeConfigSGIX + href: OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX.html + - name: '[' + - name: ']' + spec.vb: + - uid: OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX + name: GLXHyperpipeConfigSGIX + href: OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX.html + - name: ( + - name: ) - uid: OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX commentId: T:OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX parent: OpenTK.Graphics.Glx @@ -2711,6 +4175,109 @@ references: name: GLXHyperpipeConfigSGIX nameWithType: GLXHyperpipeConfigSGIX fullName: OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX +- uid: System.Span{System.UInt32} + commentId: T:System.Span{System.UInt32} + parent: System + definition: System.Span`1 + href: https://learn.microsoft.com/dotnet/api/system.span-1 + name: Span + nameWithType: Span + fullName: System.Span + nameWithType.vb: Span(Of UInteger) + fullName.vb: System.Span(Of UInteger) + name.vb: Span(Of UInteger) + spec.csharp: + - uid: System.Span`1 + name: Span + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.span-1 + - name: < + - uid: System.UInt32 + name: uint + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.uint32 + - name: '>' + spec.vb: + - uid: System.Span`1 + name: Span + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.span-1 + - name: ( + - name: Of + - name: " " + - uid: System.UInt32 + name: UInteger + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.uint32 + - name: ) +- uid: System.UInt32[] + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.uint32 + name: uint[] + nameWithType: uint[] + fullName: uint[] + nameWithType.vb: UInteger() + fullName.vb: UInteger() + name.vb: UInteger() + spec.csharp: + - uid: System.UInt32 + name: uint + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.uint32 + - name: '[' + - name: ']' + spec.vb: + - uid: System.UInt32 + name: UInteger + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.uint32 + - name: ( + - name: ) +- uid: System.Span{{T2}} + commentId: T:System.Span{``1} + parent: System + definition: System.Span`1 + href: https://learn.microsoft.com/dotnet/api/system.span-1 + name: Span + nameWithType: Span + fullName: System.Span + nameWithType.vb: Span(Of T2) + fullName.vb: System.Span(Of T2) + name.vb: Span(Of T2) + spec.csharp: + - uid: System.Span`1 + name: Span + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.span-1 + - name: < + - name: T2 + - name: '>' + spec.vb: + - uid: System.Span`1 + name: Span + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.span-1 + - name: ( + - name: Of + - name: " " + - name: T2 + - name: ) +- uid: '{T2}[]' + isExternal: true + name: T2[] + nameWithType: T2[] + fullName: T2[] + nameWithType.vb: T2() + fullName.vb: T2() + name.vb: T2() + spec.csharp: + - name: T2 + - name: '[' + - name: ']' + spec.vb: + - name: T2 + - name: ( + - name: ) - uid: '{T2}' commentId: '!:T2' definition: T2 diff --git a/api/OpenTK.Graphics.Glx.Glx.SUN.yml b/api/OpenTK.Graphics.Glx.Glx.SUN.yml index b5ebac13..f697cefc 100644 --- a/api/OpenTK.Graphics.Glx.Glx.SUN.yml +++ b/api/OpenTK.Graphics.Glx.Glx.SUN.yml @@ -5,8 +5,10 @@ items: id: Glx.SUN parent: OpenTK.Graphics.Glx children: + - OpenTK.Graphics.Glx.Glx.SUN.GetTransparentIndexSUN(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.Window,OpenTK.Graphics.Glx.Window,System.Span{System.UInt64}) - OpenTK.Graphics.Glx.Glx.SUN.GetTransparentIndexSUN(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.Window,OpenTK.Graphics.Glx.Window,System.UInt64*) - OpenTK.Graphics.Glx.Glx.SUN.GetTransparentIndexSUN(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.Window,OpenTK.Graphics.Glx.Window,System.UInt64@) + - OpenTK.Graphics.Glx.Glx.SUN.GetTransparentIndexSUN(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.Window,OpenTK.Graphics.Glx.Window,System.UInt64[]) langs: - csharp - vb @@ -15,13 +17,9 @@ items: fullName: OpenTK.Graphics.Glx.Glx.SUN type: Class source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SUN - path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 681 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 1885 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -52,17 +50,18 @@ items: fullName: OpenTK.Graphics.Glx.Glx.SUN.GetTransparentIndexSUN(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.Window, OpenTK.Graphics.Glx.Window, ulong*) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetTransparentIndexSUN - path: opentk/src/OpenTK.Graphics/Glx/GLX.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs startLine: 437 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx - summary: '[requires: GLX_SUN_get_transparent_index] [entry point: glXGetTransparentIndexSUN]
' + summary: >- + [requires: GLX_SUN_get_transparent_index] + + [entry point: glXGetTransparentIndexSUN] + +
example: [] syntax: content: public static int GetTransparentIndexSUN(DisplayPtr dpy, Window overlay, Window underlay, ulong* pTransparentIndex) @@ -82,6 +81,92 @@ items: nameWithType.vb: Glx.SUN.GetTransparentIndexSUN(DisplayPtr, Window, Window, ULong*) fullName.vb: OpenTK.Graphics.Glx.Glx.SUN.GetTransparentIndexSUN(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.Window, OpenTK.Graphics.Glx.Window, ULong*) name.vb: GetTransparentIndexSUN(DisplayPtr, Window, Window, ULong*) +- uid: OpenTK.Graphics.Glx.Glx.SUN.GetTransparentIndexSUN(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.Window,OpenTK.Graphics.Glx.Window,System.Span{System.UInt64}) + commentId: M:OpenTK.Graphics.Glx.Glx.SUN.GetTransparentIndexSUN(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.Window,OpenTK.Graphics.Glx.Window,System.Span{System.UInt64}) + id: GetTransparentIndexSUN(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.Window,OpenTK.Graphics.Glx.Window,System.Span{System.UInt64}) + parent: OpenTK.Graphics.Glx.Glx.SUN + langs: + - csharp + - vb + name: GetTransparentIndexSUN(DisplayPtr, Window, Window, Span) + nameWithType: Glx.SUN.GetTransparentIndexSUN(DisplayPtr, Window, Window, Span) + fullName: OpenTK.Graphics.Glx.Glx.SUN.GetTransparentIndexSUN(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.Window, OpenTK.Graphics.Glx.Window, System.Span) + type: Method + source: + id: GetTransparentIndexSUN + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 1888 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Glx + summary: >- + [requires: GLX_SUN_get_transparent_index] + + [entry point: glXGetTransparentIndexSUN] + +
+ example: [] + syntax: + content: public static int GetTransparentIndexSUN(DisplayPtr dpy, Window overlay, Window underlay, Span pTransparentIndex) + parameters: + - id: dpy + type: OpenTK.Graphics.Glx.DisplayPtr + - id: overlay + type: OpenTK.Graphics.Glx.Window + - id: underlay + type: OpenTK.Graphics.Glx.Window + - id: pTransparentIndex + type: System.Span{System.UInt64} + return: + type: System.Int32 + content.vb: Public Shared Function GetTransparentIndexSUN(dpy As DisplayPtr, overlay As Window, underlay As Window, pTransparentIndex As Span(Of ULong)) As Integer + overload: OpenTK.Graphics.Glx.Glx.SUN.GetTransparentIndexSUN* + nameWithType.vb: Glx.SUN.GetTransparentIndexSUN(DisplayPtr, Window, Window, Span(Of ULong)) + fullName.vb: OpenTK.Graphics.Glx.Glx.SUN.GetTransparentIndexSUN(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.Window, OpenTK.Graphics.Glx.Window, System.Span(Of ULong)) + name.vb: GetTransparentIndexSUN(DisplayPtr, Window, Window, Span(Of ULong)) +- uid: OpenTK.Graphics.Glx.Glx.SUN.GetTransparentIndexSUN(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.Window,OpenTK.Graphics.Glx.Window,System.UInt64[]) + commentId: M:OpenTK.Graphics.Glx.Glx.SUN.GetTransparentIndexSUN(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.Window,OpenTK.Graphics.Glx.Window,System.UInt64[]) + id: GetTransparentIndexSUN(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.Window,OpenTK.Graphics.Glx.Window,System.UInt64[]) + parent: OpenTK.Graphics.Glx.Glx.SUN + langs: + - csharp + - vb + name: GetTransparentIndexSUN(DisplayPtr, Window, Window, ulong[]) + nameWithType: Glx.SUN.GetTransparentIndexSUN(DisplayPtr, Window, Window, ulong[]) + fullName: OpenTK.Graphics.Glx.Glx.SUN.GetTransparentIndexSUN(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.Window, OpenTK.Graphics.Glx.Window, ulong[]) + type: Method + source: + id: GetTransparentIndexSUN + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 1898 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Glx + summary: >- + [requires: GLX_SUN_get_transparent_index] + + [entry point: glXGetTransparentIndexSUN] + +
+ example: [] + syntax: + content: public static int GetTransparentIndexSUN(DisplayPtr dpy, Window overlay, Window underlay, ulong[] pTransparentIndex) + parameters: + - id: dpy + type: OpenTK.Graphics.Glx.DisplayPtr + - id: overlay + type: OpenTK.Graphics.Glx.Window + - id: underlay + type: OpenTK.Graphics.Glx.Window + - id: pTransparentIndex + type: System.UInt64[] + return: + type: System.Int32 + content.vb: Public Shared Function GetTransparentIndexSUN(dpy As DisplayPtr, overlay As Window, underlay As Window, pTransparentIndex As ULong()) As Integer + overload: OpenTK.Graphics.Glx.Glx.SUN.GetTransparentIndexSUN* + nameWithType.vb: Glx.SUN.GetTransparentIndexSUN(DisplayPtr, Window, Window, ULong()) + fullName.vb: OpenTK.Graphics.Glx.Glx.SUN.GetTransparentIndexSUN(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.Window, OpenTK.Graphics.Glx.Window, ULong()) + name.vb: GetTransparentIndexSUN(DisplayPtr, Window, Window, ULong()) - uid: OpenTK.Graphics.Glx.Glx.SUN.GetTransparentIndexSUN(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.Window,OpenTK.Graphics.Glx.Window,System.UInt64@) commentId: M:OpenTK.Graphics.Glx.Glx.SUN.GetTransparentIndexSUN(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.Window,OpenTK.Graphics.Glx.Window,System.UInt64@) id: GetTransparentIndexSUN(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.Window,OpenTK.Graphics.Glx.Window,System.UInt64@) @@ -94,13 +179,9 @@ items: fullName: OpenTK.Graphics.Glx.Glx.SUN.GetTransparentIndexSUN(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.Window, OpenTK.Graphics.Glx.Window, ref ulong) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetTransparentIndexSUN - path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 684 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 1908 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -449,6 +530,92 @@ references: nameWithType.vb: Integer fullName.vb: Integer name.vb: Integer +- uid: System.Span{System.UInt64} + commentId: T:System.Span{System.UInt64} + parent: System + definition: System.Span`1 + href: https://learn.microsoft.com/dotnet/api/system.span-1 + name: Span + nameWithType: Span + fullName: System.Span + nameWithType.vb: Span(Of ULong) + fullName.vb: System.Span(Of ULong) + name.vb: Span(Of ULong) + spec.csharp: + - uid: System.Span`1 + name: Span + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.span-1 + - name: < + - uid: System.UInt64 + name: ulong + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.uint64 + - name: '>' + spec.vb: + - uid: System.Span`1 + name: Span + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.span-1 + - name: ( + - name: Of + - name: " " + - uid: System.UInt64 + name: ULong + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.uint64 + - name: ) +- uid: System.Span`1 + commentId: T:System.Span`1 + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.span-1 + name: Span + nameWithType: Span + fullName: System.Span + nameWithType.vb: Span(Of T) + fullName.vb: System.Span(Of T) + name.vb: Span(Of T) + spec.csharp: + - uid: System.Span`1 + name: Span + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.span-1 + - name: < + - name: T + - name: '>' + spec.vb: + - uid: System.Span`1 + name: Span + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.span-1 + - name: ( + - name: Of + - name: " " + - name: T + - name: ) +- uid: System.UInt64[] + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.uint64 + name: ulong[] + nameWithType: ulong[] + fullName: ulong[] + nameWithType.vb: ULong() + fullName.vb: ULong() + name.vb: ULong() + spec.csharp: + - uid: System.UInt64 + name: ulong + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.uint64 + - name: '[' + - name: ']' + spec.vb: + - uid: System.UInt64 + name: ULong + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.uint64 + - name: ( + - name: ) - uid: System.UInt64 commentId: T:System.UInt64 parent: System diff --git a/api/OpenTK.Graphics.Glx.Glx.yml b/api/OpenTK.Graphics.Glx.Glx.yml index 6f69fbd9..bec756be 100644 --- a/api/OpenTK.Graphics.Glx.Glx.yml +++ b/api/OpenTK.Graphics.Glx.Glx.yml @@ -7,18 +7,28 @@ items: children: - OpenTK.Graphics.Glx.Glx.ChooseFBConfig(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32*,System.Int32*) - OpenTK.Graphics.Glx.Glx.ChooseFBConfig(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32@,System.Int32@) + - OpenTK.Graphics.Glx.Glx.ChooseFBConfig(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32[],System.Int32[]) + - OpenTK.Graphics.Glx.Glx.ChooseFBConfig(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.ReadOnlySpan{System.Int32},System.Span{System.Int32}) - OpenTK.Graphics.Glx.Glx.ChooseVisual(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32*) - OpenTK.Graphics.Glx.Glx.ChooseVisual(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32@) + - OpenTK.Graphics.Glx.Glx.ChooseVisual(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32[]) + - OpenTK.Graphics.Glx.Glx.ChooseVisual(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Span{System.Int32}) - OpenTK.Graphics.Glx.Glx.CopyContext(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext,OpenTK.Graphics.Glx.GLXContext,System.UInt64) - OpenTK.Graphics.Glx.Glx.CreateContext(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.XVisualInfoPtr,OpenTK.Graphics.Glx.GLXContext,System.Boolean) - OpenTK.Graphics.Glx.Glx.CreateGLXPixmap(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.XVisualInfoPtr,OpenTK.Graphics.Glx.Pixmap) - OpenTK.Graphics.Glx.Glx.CreateNewContext(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,System.Int32,OpenTK.Graphics.Glx.GLXContext,System.Boolean) - OpenTK.Graphics.Glx.Glx.CreatePbuffer(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,System.Int32*) - OpenTK.Graphics.Glx.Glx.CreatePbuffer(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,System.Int32@) + - OpenTK.Graphics.Glx.Glx.CreatePbuffer(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,System.Int32[]) + - OpenTK.Graphics.Glx.Glx.CreatePbuffer(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,System.ReadOnlySpan{System.Int32}) - OpenTK.Graphics.Glx.Glx.CreatePixmap(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.Pixmap,System.Int32*) - OpenTK.Graphics.Glx.Glx.CreatePixmap(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.Pixmap,System.Int32@) + - OpenTK.Graphics.Glx.Glx.CreatePixmap(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.Pixmap,System.Int32[]) + - OpenTK.Graphics.Glx.Glx.CreatePixmap(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.Pixmap,System.ReadOnlySpan{System.Int32}) - OpenTK.Graphics.Glx.Glx.CreateWindow(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.Window,System.Int32*) - OpenTK.Graphics.Glx.Glx.CreateWindow(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.Window,System.Int32@) + - OpenTK.Graphics.Glx.Glx.CreateWindow(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.Window,System.Int32[]) + - OpenTK.Graphics.Glx.Glx.CreateWindow(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.Window,System.ReadOnlySpan{System.Int32}) - OpenTK.Graphics.Glx.Glx.DestroyContext(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext) - OpenTK.Graphics.Glx.Glx.DestroyGLXPixmap(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXPixmap) - OpenTK.Graphics.Glx.Glx.DestroyPbuffer(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXPbuffer) @@ -28,34 +38,52 @@ items: - OpenTK.Graphics.Glx.Glx.GetClientString_(OpenTK.Graphics.Glx.DisplayPtr,System.Int32) - OpenTK.Graphics.Glx.Glx.GetConfig(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.XVisualInfoPtr,System.Int32,System.Int32*) - OpenTK.Graphics.Glx.Glx.GetConfig(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.XVisualInfoPtr,System.Int32,System.Int32@) + - OpenTK.Graphics.Glx.Glx.GetConfig(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.XVisualInfoPtr,System.Int32,System.Int32[]) + - OpenTK.Graphics.Glx.Glx.GetConfig(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.XVisualInfoPtr,System.Int32,System.Span{System.Int32}) - OpenTK.Graphics.Glx.Glx.GetCurrentContext - OpenTK.Graphics.Glx.Glx.GetCurrentDisplay - OpenTK.Graphics.Glx.Glx.GetCurrentDrawable - OpenTK.Graphics.Glx.Glx.GetCurrentReadDrawable - OpenTK.Graphics.Glx.Glx.GetFBConfig(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32@) + - OpenTK.Graphics.Glx.Glx.GetFBConfig(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32[]) + - OpenTK.Graphics.Glx.Glx.GetFBConfig(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Span{System.Int32}) - OpenTK.Graphics.Glx.Glx.GetFBConfigAttrib(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,System.Int32,System.Int32*) - OpenTK.Graphics.Glx.Glx.GetFBConfigAttrib(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,System.Int32,System.Int32@) + - OpenTK.Graphics.Glx.Glx.GetFBConfigAttrib(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,System.Int32,System.Int32[]) + - OpenTK.Graphics.Glx.Glx.GetFBConfigAttrib(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,System.Int32,System.Span{System.Int32}) - OpenTK.Graphics.Glx.Glx.GetFBConfigs(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32*) - OpenTK.Graphics.Glx.Glx.GetProcAddress(System.Byte*) - OpenTK.Graphics.Glx.Glx.GetProcAddress(System.Byte@) + - OpenTK.Graphics.Glx.Glx.GetProcAddress(System.Byte[]) + - OpenTK.Graphics.Glx.Glx.GetProcAddress(System.ReadOnlySpan{System.Byte}) + - OpenTK.Graphics.Glx.Glx.GetSelectedEvent(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Span{System.UInt64}) - OpenTK.Graphics.Glx.Glx.GetSelectedEvent(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.UInt64*) - OpenTK.Graphics.Glx.Glx.GetSelectedEvent(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.UInt64@) + - OpenTK.Graphics.Glx.Glx.GetSelectedEvent(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.UInt64[]) - OpenTK.Graphics.Glx.Glx.GetVisualFromFBConfig(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig) - OpenTK.Graphics.Glx.Glx.IsDirect(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext) - OpenTK.Graphics.Glx.Glx.MakeContextCurrent(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,OpenTK.Graphics.Glx.GLXDrawable,OpenTK.Graphics.Glx.GLXContext) - OpenTK.Graphics.Glx.Glx.MakeCurrent(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,OpenTK.Graphics.Glx.GLXContext) - OpenTK.Graphics.Glx.Glx.QueryContext(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext,System.Int32,System.Int32*) - OpenTK.Graphics.Glx.Glx.QueryContext(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext,System.Int32,System.Int32@) + - OpenTK.Graphics.Glx.Glx.QueryContext(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext,System.Int32,System.Int32[]) + - OpenTK.Graphics.Glx.Glx.QueryContext(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext,System.Int32,System.Span{System.Int32}) + - OpenTK.Graphics.Glx.Glx.QueryDrawable(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32,System.Span{System.UInt32}) - OpenTK.Graphics.Glx.Glx.QueryDrawable(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32,System.UInt32*) - OpenTK.Graphics.Glx.Glx.QueryDrawable(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32,System.UInt32@) + - OpenTK.Graphics.Glx.Glx.QueryDrawable(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32,System.UInt32[]) - OpenTK.Graphics.Glx.Glx.QueryExtension(OpenTK.Graphics.Glx.DisplayPtr,System.Int32*,System.Int32*) - OpenTK.Graphics.Glx.Glx.QueryExtension(OpenTK.Graphics.Glx.DisplayPtr,System.Int32@,System.Int32@) + - OpenTK.Graphics.Glx.Glx.QueryExtension(OpenTK.Graphics.Glx.DisplayPtr,System.Int32[],System.Int32[]) + - OpenTK.Graphics.Glx.Glx.QueryExtension(OpenTK.Graphics.Glx.DisplayPtr,System.Span{System.Int32},System.Span{System.Int32}) - OpenTK.Graphics.Glx.Glx.QueryExtensionsString(OpenTK.Graphics.Glx.DisplayPtr,System.Int32) - OpenTK.Graphics.Glx.Glx.QueryExtensionsString_(OpenTK.Graphics.Glx.DisplayPtr,System.Int32) - OpenTK.Graphics.Glx.Glx.QueryServerString(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32) - OpenTK.Graphics.Glx.Glx.QueryServerString_(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32) - OpenTK.Graphics.Glx.Glx.QueryVersion(OpenTK.Graphics.Glx.DisplayPtr,System.Int32*,System.Int32*) - OpenTK.Graphics.Glx.Glx.QueryVersion(OpenTK.Graphics.Glx.DisplayPtr,System.Int32@,System.Int32@) + - OpenTK.Graphics.Glx.Glx.QueryVersion(OpenTK.Graphics.Glx.DisplayPtr,System.Int32[],System.Int32[]) + - OpenTK.Graphics.Glx.Glx.QueryVersion(OpenTK.Graphics.Glx.DisplayPtr,System.Span{System.Int32},System.Span{System.Int32}) - OpenTK.Graphics.Glx.Glx.SelectEvent(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.UInt64) - OpenTK.Graphics.Glx.Glx.SwapBuffers(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable) - OpenTK.Graphics.Glx.Glx.UseXFont(OpenTK.Graphics.Glx.Font,System.Int32,System.Int32,System.Int32) @@ -69,12 +97,8 @@ items: fullName: OpenTK.Graphics.Glx.Glx type: Class source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Glx - path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs startLine: 11 assemblies: - OpenTK.Graphics @@ -104,17 +128,18 @@ items: fullName: OpenTK.Graphics.Glx.Glx.ChooseFBConfig(OpenTK.Graphics.Glx.DisplayPtr, int, int*, int*) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ChooseFBConfig - path: opentk/src/OpenTK.Graphics/Glx/GLX.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs startLine: 12 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx - summary: '[requires: v1.3] [entry point: glXChooseFBConfig]
' + summary: >- + [requires: v1.3] + + [entry point: glXChooseFBConfig] + +
example: [] syntax: content: public static GLXFBConfig* ChooseFBConfig(DisplayPtr dpy, int screen, int* attrib_list, int* nelements) @@ -146,17 +171,18 @@ items: fullName: OpenTK.Graphics.Glx.Glx.ChooseVisual(OpenTK.Graphics.Glx.DisplayPtr, int, int*) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ChooseVisual - path: opentk/src/OpenTK.Graphics/Glx/GLX.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs startLine: 15 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx - summary: '[requires: v1.0] [entry point: glXChooseVisual]
' + summary: >- + [requires: v1.0] + + [entry point: glXChooseVisual] + +
example: [] syntax: content: public static XVisualInfoPtr ChooseVisual(DisplayPtr dpy, int screen, int* attribList) @@ -186,17 +212,18 @@ items: fullName: OpenTK.Graphics.Glx.Glx.CopyContext(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXContext, OpenTK.Graphics.Glx.GLXContext, ulong) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CopyContext - path: opentk/src/OpenTK.Graphics/Glx/GLX.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs startLine: 18 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx - summary: '[requires: v1.0] [entry point: glXCopyContext]
' + summary: >- + [requires: v1.0] + + [entry point: glXCopyContext] + +
example: [] syntax: content: public static void CopyContext(DisplayPtr dpy, GLXContext src, GLXContext dst, ulong mask) @@ -226,17 +253,18 @@ items: fullName: OpenTK.Graphics.Glx.Glx.CreateContext(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.XVisualInfoPtr, OpenTK.Graphics.Glx.GLXContext, bool) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateContext - path: opentk/src/OpenTK.Graphics/Glx/GLX.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs startLine: 21 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx - summary: '[requires: v1.0] [entry point: glXCreateContext]
' + summary: >- + [requires: v1.0] + + [entry point: glXCreateContext] + +
example: [] syntax: content: public static GLXContext CreateContext(DisplayPtr dpy, XVisualInfoPtr vis, GLXContext shareList, bool direct) @@ -268,17 +296,18 @@ items: fullName: OpenTK.Graphics.Glx.Glx.CreateGLXPixmap(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.XVisualInfoPtr, OpenTK.Graphics.Glx.Pixmap) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateGLXPixmap - path: opentk/src/OpenTK.Graphics/Glx/GLX.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs startLine: 24 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx - summary: '[requires: v1.0] [entry point: glXCreateGLXPixmap]
' + summary: >- + [requires: v1.0] + + [entry point: glXCreateGLXPixmap] + +
example: [] syntax: content: public static GLXPixmap CreateGLXPixmap(DisplayPtr dpy, XVisualInfoPtr visual, Pixmap pixmap) @@ -305,17 +334,18 @@ items: fullName: OpenTK.Graphics.Glx.Glx.CreateNewContext(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfig, int, OpenTK.Graphics.Glx.GLXContext, bool) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateNewContext - path: opentk/src/OpenTK.Graphics/Glx/GLX.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs startLine: 27 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx - summary: '[requires: v1.3] [entry point: glXCreateNewContext]
' + summary: >- + [requires: v1.3] + + [entry point: glXCreateNewContext] + +
example: [] syntax: content: public static GLXContext CreateNewContext(DisplayPtr dpy, GLXFBConfig config, int render_type, GLXContext share_list, bool direct) @@ -349,17 +379,18 @@ items: fullName: OpenTK.Graphics.Glx.Glx.CreatePbuffer(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfig, int*) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreatePbuffer - path: opentk/src/OpenTK.Graphics/Glx/GLX.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs startLine: 30 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx - summary: '[requires: v1.3] [entry point: glXCreatePbuffer]
' + summary: >- + [requires: v1.3] + + [entry point: glXCreatePbuffer] + +
example: [] syntax: content: public static GLXPbuffer CreatePbuffer(DisplayPtr dpy, GLXFBConfig config, int* attrib_list) @@ -389,17 +420,18 @@ items: fullName: OpenTK.Graphics.Glx.Glx.CreatePixmap(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfig, OpenTK.Graphics.Glx.Pixmap, int*) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreatePixmap - path: opentk/src/OpenTK.Graphics/Glx/GLX.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs startLine: 33 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx - summary: '[requires: v1.3] [entry point: glXCreatePixmap]
' + summary: >- + [requires: v1.3] + + [entry point: glXCreatePixmap] + +
example: [] syntax: content: public static GLXPixmap CreatePixmap(DisplayPtr dpy, GLXFBConfig config, Pixmap pixmap, int* attrib_list) @@ -431,17 +463,18 @@ items: fullName: OpenTK.Graphics.Glx.Glx.CreateWindow(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfig, OpenTK.Graphics.Glx.Window, int*) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateWindow - path: opentk/src/OpenTK.Graphics/Glx/GLX.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs startLine: 36 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx - summary: '[requires: v1.3] [entry point: glXCreateWindow]
' + summary: >- + [requires: v1.3] + + [entry point: glXCreateWindow] + +
example: [] syntax: content: public static GLXWindow CreateWindow(DisplayPtr dpy, GLXFBConfig config, Window win, int* attrib_list) @@ -473,17 +506,18 @@ items: fullName: OpenTK.Graphics.Glx.Glx.DestroyContext(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXContext) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DestroyContext - path: opentk/src/OpenTK.Graphics/Glx/GLX.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs startLine: 39 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx - summary: '[requires: v1.0] [entry point: glXDestroyContext]
' + summary: >- + [requires: v1.0] + + [entry point: glXDestroyContext] + +
example: [] syntax: content: public static void DestroyContext(DisplayPtr dpy, GLXContext ctx) @@ -506,17 +540,18 @@ items: fullName: OpenTK.Graphics.Glx.Glx.DestroyGLXPixmap(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXPixmap) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DestroyGLXPixmap - path: opentk/src/OpenTK.Graphics/Glx/GLX.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs startLine: 42 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx - summary: '[requires: v1.0] [entry point: glXDestroyGLXPixmap]
' + summary: >- + [requires: v1.0] + + [entry point: glXDestroyGLXPixmap] + +
example: [] syntax: content: public static void DestroyGLXPixmap(DisplayPtr dpy, GLXPixmap pixmap) @@ -539,17 +574,18 @@ items: fullName: OpenTK.Graphics.Glx.Glx.DestroyPbuffer(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXPbuffer) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DestroyPbuffer - path: opentk/src/OpenTK.Graphics/Glx/GLX.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs startLine: 45 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx - summary: '[requires: v1.3] [entry point: glXDestroyPbuffer]
' + summary: >- + [requires: v1.3] + + [entry point: glXDestroyPbuffer] + +
example: [] syntax: content: public static void DestroyPbuffer(DisplayPtr dpy, GLXPbuffer pbuf) @@ -572,17 +608,18 @@ items: fullName: OpenTK.Graphics.Glx.Glx.DestroyPixmap(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXPixmap) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DestroyPixmap - path: opentk/src/OpenTK.Graphics/Glx/GLX.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs startLine: 48 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx - summary: '[requires: v1.3] [entry point: glXDestroyPixmap]
' + summary: >- + [requires: v1.3] + + [entry point: glXDestroyPixmap] + +
example: [] syntax: content: public static void DestroyPixmap(DisplayPtr dpy, GLXPixmap pixmap) @@ -605,17 +642,18 @@ items: fullName: OpenTK.Graphics.Glx.Glx.DestroyWindow(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXWindow) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DestroyWindow - path: opentk/src/OpenTK.Graphics/Glx/GLX.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs startLine: 51 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx - summary: '[requires: v1.3] [entry point: glXDestroyWindow]
' + summary: >- + [requires: v1.3] + + [entry point: glXDestroyWindow] + +
example: [] syntax: content: public static void DestroyWindow(DisplayPtr dpy, GLXWindow win) @@ -638,17 +676,18 @@ items: fullName: OpenTK.Graphics.Glx.Glx.GetClientString_(OpenTK.Graphics.Glx.DisplayPtr, int) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetClientString_ - path: opentk/src/OpenTK.Graphics/Glx/GLX.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs startLine: 54 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx - summary: '[requires: v1.1] [entry point: glXGetClientString]
' + summary: >- + [requires: v1.1] + + [entry point: glXGetClientString] + +
example: [] syntax: content: public static byte* GetClientString_(DisplayPtr dpy, int name) @@ -676,17 +715,18 @@ items: fullName: OpenTK.Graphics.Glx.Glx.GetConfig(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.XVisualInfoPtr, int, int*) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetConfig - path: opentk/src/OpenTK.Graphics/Glx/GLX.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs startLine: 57 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx - summary: '[requires: v1.0] [entry point: glXGetConfig]
' + summary: >- + [requires: v1.0] + + [entry point: glXGetConfig] + +
example: [] syntax: content: public static int GetConfig(DisplayPtr dpy, XVisualInfoPtr visual, int attrib, int* value) @@ -718,17 +758,18 @@ items: fullName: OpenTK.Graphics.Glx.Glx.GetCurrentContext() type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetCurrentContext - path: opentk/src/OpenTK.Graphics/Glx/GLX.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs startLine: 60 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx - summary: '[requires: v1.0] [entry point: glXGetCurrentContext]
' + summary: >- + [requires: v1.0] + + [entry point: glXGetCurrentContext] + +
example: [] syntax: content: public static GLXContext GetCurrentContext() @@ -748,17 +789,18 @@ items: fullName: OpenTK.Graphics.Glx.Glx.GetCurrentDisplay() type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetCurrentDisplay - path: opentk/src/OpenTK.Graphics/Glx/GLX.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs startLine: 63 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx - summary: '[requires: v1.2] [entry point: glXGetCurrentDisplay]
' + summary: >- + [requires: v1.2] + + [entry point: glXGetCurrentDisplay] + +
example: [] syntax: content: public static DisplayPtr GetCurrentDisplay() @@ -778,17 +820,18 @@ items: fullName: OpenTK.Graphics.Glx.Glx.GetCurrentDrawable() type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetCurrentDrawable - path: opentk/src/OpenTK.Graphics/Glx/GLX.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs startLine: 66 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx - summary: '[requires: v1.0] [entry point: glXGetCurrentDrawable]
' + summary: >- + [requires: v1.0] + + [entry point: glXGetCurrentDrawable] + +
example: [] syntax: content: public static GLXDrawable GetCurrentDrawable() @@ -808,17 +851,18 @@ items: fullName: OpenTK.Graphics.Glx.Glx.GetCurrentReadDrawable() type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetCurrentReadDrawable - path: opentk/src/OpenTK.Graphics/Glx/GLX.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs startLine: 69 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx - summary: '[requires: v1.3] [entry point: glXGetCurrentReadDrawable]
' + summary: >- + [requires: v1.3] + + [entry point: glXGetCurrentReadDrawable] + +
example: [] syntax: content: public static GLXDrawable GetCurrentReadDrawable() @@ -838,17 +882,18 @@ items: fullName: OpenTK.Graphics.Glx.Glx.GetFBConfigAttrib(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfig, int, int*) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetFBConfigAttrib - path: opentk/src/OpenTK.Graphics/Glx/GLX.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs startLine: 72 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx - summary: '[requires: v1.3] [entry point: glXGetFBConfigAttrib]
' + summary: >- + [requires: v1.3] + + [entry point: glXGetFBConfigAttrib] + +
example: [] syntax: content: public static int GetFBConfigAttrib(DisplayPtr dpy, GLXFBConfig config, int attribute, int* value) @@ -880,17 +925,18 @@ items: fullName: OpenTK.Graphics.Glx.Glx.GetFBConfigs(OpenTK.Graphics.Glx.DisplayPtr, int, int*) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetFBConfigs - path: opentk/src/OpenTK.Graphics/Glx/GLX.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs startLine: 75 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx - summary: '[requires: v1.3] [entry point: glXGetFBConfigs]
' + summary: >- + [requires: v1.3] + + [entry point: glXGetFBConfigs] + +
example: [] syntax: content: public static GLXFBConfig* GetFBConfigs(DisplayPtr dpy, int screen, int* nelements) @@ -920,17 +966,18 @@ items: fullName: OpenTK.Graphics.Glx.Glx.GetProcAddress(byte*) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetProcAddress - path: opentk/src/OpenTK.Graphics/Glx/GLX.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs startLine: 78 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx - summary: '[requires: v1.4] [entry point: glXGetProcAddress]
' + summary: >- + [requires: v1.4] + + [entry point: glXGetProcAddress] + +
example: [] syntax: content: public static nint GetProcAddress(byte* procName) @@ -956,17 +1003,18 @@ items: fullName: OpenTK.Graphics.Glx.Glx.GetSelectedEvent(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, ulong*) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetSelectedEvent - path: opentk/src/OpenTK.Graphics/Glx/GLX.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs startLine: 81 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx - summary: '[requires: v1.3] [entry point: glXGetSelectedEvent]
' + summary: >- + [requires: v1.3] + + [entry point: glXGetSelectedEvent] + +
example: [] syntax: content: public static void GetSelectedEvent(DisplayPtr dpy, GLXDrawable draw, ulong* event_mask) @@ -994,17 +1042,18 @@ items: fullName: OpenTK.Graphics.Glx.Glx.GetVisualFromFBConfig(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfig) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetVisualFromFBConfig - path: opentk/src/OpenTK.Graphics/Glx/GLX.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs startLine: 84 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx - summary: '[requires: v1.3] [entry point: glXGetVisualFromFBConfig]
' + summary: >- + [requires: v1.3] + + [entry point: glXGetVisualFromFBConfig] + +
example: [] syntax: content: public static XVisualInfoPtr GetVisualFromFBConfig(DisplayPtr dpy, GLXFBConfig config) @@ -1029,17 +1078,18 @@ items: fullName: OpenTK.Graphics.Glx.Glx.IsDirect(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXContext) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: IsDirect - path: opentk/src/OpenTK.Graphics/Glx/GLX.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs startLine: 87 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx - summary: '[requires: v1.0] [entry point: glXIsDirect]
' + summary: >- + [requires: v1.0] + + [entry point: glXIsDirect] + +
example: [] syntax: content: public static bool IsDirect(DisplayPtr dpy, GLXContext ctx) @@ -1064,17 +1114,18 @@ items: fullName: OpenTK.Graphics.Glx.Glx.MakeContextCurrent(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, OpenTK.Graphics.Glx.GLXDrawable, OpenTK.Graphics.Glx.GLXContext) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MakeContextCurrent - path: opentk/src/OpenTK.Graphics/Glx/GLX.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs startLine: 90 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx - summary: '[requires: v1.3] [entry point: glXMakeContextCurrent]
' + summary: >- + [requires: v1.3] + + [entry point: glXMakeContextCurrent] + +
example: [] syntax: content: public static bool MakeContextCurrent(DisplayPtr dpy, GLXDrawable draw, GLXDrawable read, GLXContext ctx) @@ -1103,17 +1154,18 @@ items: fullName: OpenTK.Graphics.Glx.Glx.MakeCurrent(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, OpenTK.Graphics.Glx.GLXContext) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MakeCurrent - path: opentk/src/OpenTK.Graphics/Glx/GLX.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs startLine: 93 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx - summary: '[requires: v1.0] [entry point: glXMakeCurrent]
' + summary: >- + [requires: v1.0] + + [entry point: glXMakeCurrent] + +
example: [] syntax: content: public static bool MakeCurrent(DisplayPtr dpy, GLXDrawable drawable, GLXContext ctx) @@ -1140,17 +1192,18 @@ items: fullName: OpenTK.Graphics.Glx.Glx.QueryContext(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXContext, int, int*) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: QueryContext - path: opentk/src/OpenTK.Graphics/Glx/GLX.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs startLine: 96 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx - summary: '[requires: v1.3] [entry point: glXQueryContext]
' + summary: >- + [requires: v1.3] + + [entry point: glXQueryContext] + +
example: [] syntax: content: public static int QueryContext(DisplayPtr dpy, GLXContext ctx, int attribute, int* value) @@ -1182,17 +1235,18 @@ items: fullName: OpenTK.Graphics.Glx.Glx.QueryDrawable(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, int, uint*) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: QueryDrawable - path: opentk/src/OpenTK.Graphics/Glx/GLX.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs startLine: 99 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx - summary: '[requires: v1.3] [entry point: glXQueryDrawable]
' + summary: >- + [requires: v1.3] + + [entry point: glXQueryDrawable] + +
example: [] syntax: content: public static void QueryDrawable(DisplayPtr dpy, GLXDrawable draw, int attribute, uint* value) @@ -1222,17 +1276,18 @@ items: fullName: OpenTK.Graphics.Glx.Glx.QueryExtension(OpenTK.Graphics.Glx.DisplayPtr, int*, int*) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: QueryExtension - path: opentk/src/OpenTK.Graphics/Glx/GLX.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs startLine: 102 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx - summary: '[requires: v1.0] [entry point: glXQueryExtension]
' + summary: >- + [requires: v1.0] + + [entry point: glXQueryExtension] + +
example: [] syntax: content: public static bool QueryExtension(DisplayPtr dpy, int* errorb, int* @event) @@ -1262,17 +1317,18 @@ items: fullName: OpenTK.Graphics.Glx.Glx.QueryExtensionsString_(OpenTK.Graphics.Glx.DisplayPtr, int) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: QueryExtensionsString_ - path: opentk/src/OpenTK.Graphics/Glx/GLX.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs startLine: 105 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx - summary: '[requires: v1.1] [entry point: glXQueryExtensionsString]
' + summary: >- + [requires: v1.1] + + [entry point: glXQueryExtensionsString] + +
example: [] syntax: content: public static byte* QueryExtensionsString_(DisplayPtr dpy, int screen) @@ -1300,17 +1356,18 @@ items: fullName: OpenTK.Graphics.Glx.Glx.QueryServerString_(OpenTK.Graphics.Glx.DisplayPtr, int, int) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: QueryServerString_ - path: opentk/src/OpenTK.Graphics/Glx/GLX.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs startLine: 108 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx - summary: '[requires: v1.1] [entry point: glXQueryServerString]
' + summary: >- + [requires: v1.1] + + [entry point: glXQueryServerString] + +
example: [] syntax: content: public static byte* QueryServerString_(DisplayPtr dpy, int screen, int name) @@ -1340,17 +1397,18 @@ items: fullName: OpenTK.Graphics.Glx.Glx.QueryVersion(OpenTK.Graphics.Glx.DisplayPtr, int*, int*) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: QueryVersion - path: opentk/src/OpenTK.Graphics/Glx/GLX.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs startLine: 111 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx - summary: '[requires: v1.0] [entry point: glXQueryVersion]
' + summary: >- + [requires: v1.0] + + [entry point: glXQueryVersion] + +
example: [] syntax: content: public static bool QueryVersion(DisplayPtr dpy, int* maj, int* min) @@ -1380,17 +1438,18 @@ items: fullName: OpenTK.Graphics.Glx.Glx.SelectEvent(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, ulong) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SelectEvent - path: opentk/src/OpenTK.Graphics/Glx/GLX.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs startLine: 114 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx - summary: '[requires: v1.3] [entry point: glXSelectEvent]
' + summary: >- + [requires: v1.3] + + [entry point: glXSelectEvent] + +
example: [] syntax: content: public static void SelectEvent(DisplayPtr dpy, GLXDrawable draw, ulong event_mask) @@ -1418,17 +1477,18 @@ items: fullName: OpenTK.Graphics.Glx.Glx.SwapBuffers(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SwapBuffers - path: opentk/src/OpenTK.Graphics/Glx/GLX.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs startLine: 117 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx - summary: '[requires: v1.0] [entry point: glXSwapBuffers]
' + summary: >- + [requires: v1.0] + + [entry point: glXSwapBuffers] + +
example: [] syntax: content: public static void SwapBuffers(DisplayPtr dpy, GLXDrawable drawable) @@ -1451,17 +1511,18 @@ items: fullName: OpenTK.Graphics.Glx.Glx.UseXFont(OpenTK.Graphics.Glx.Font, int, int, int) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: UseXFont - path: opentk/src/OpenTK.Graphics/Glx/GLX.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs startLine: 120 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx - summary: '[requires: v1.0] [entry point: glXUseXFont]
' + summary: >- + [requires: v1.0] + + [entry point: glXUseXFont] + +
example: [] syntax: content: public static void UseXFont(Font font, int first, int count, int list) @@ -1491,17 +1552,18 @@ items: fullName: OpenTK.Graphics.Glx.Glx.WaitGL() type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: WaitGL - path: opentk/src/OpenTK.Graphics/Glx/GLX.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs startLine: 123 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx - summary: '[requires: v1.0] [entry point: glXWaitGL]
' + summary: >- + [requires: v1.0] + + [entry point: glXWaitGL] + +
example: [] syntax: content: public static void WaitGL() @@ -1519,40 +1581,37 @@ items: fullName: OpenTK.Graphics.Glx.Glx.WaitX() type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: WaitX - path: opentk/src/OpenTK.Graphics/Glx/GLX.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs startLine: 126 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx - summary: '[requires: v1.0] [entry point: glXWaitX]
' + summary: >- + [requires: v1.0] + + [entry point: glXWaitX] + +
example: [] syntax: content: public static void WaitX() content.vb: Public Shared Sub WaitX() overload: OpenTK.Graphics.Glx.Glx.WaitX* -- uid: OpenTK.Graphics.Glx.Glx.ChooseFBConfig(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32@,System.Int32@) - commentId: M:OpenTK.Graphics.Glx.Glx.ChooseFBConfig(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32@,System.Int32@) - id: ChooseFBConfig(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32@,System.Int32@) +- uid: OpenTK.Graphics.Glx.Glx.ChooseFBConfig(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.ReadOnlySpan{System.Int32},System.Span{System.Int32}) + commentId: M:OpenTK.Graphics.Glx.Glx.ChooseFBConfig(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.ReadOnlySpan{System.Int32},System.Span{System.Int32}) + id: ChooseFBConfig(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.ReadOnlySpan{System.Int32},System.Span{System.Int32}) parent: OpenTK.Graphics.Glx.Glx langs: - csharp - vb - name: ChooseFBConfig(DisplayPtr, int, in int, ref int) - nameWithType: Glx.ChooseFBConfig(DisplayPtr, int, in int, ref int) - fullName: OpenTK.Graphics.Glx.Glx.ChooseFBConfig(OpenTK.Graphics.Glx.DisplayPtr, int, in int, ref int) + name: ChooseFBConfig(DisplayPtr, int, ReadOnlySpan, Span) + nameWithType: Glx.ChooseFBConfig(DisplayPtr, int, ReadOnlySpan, Span) + fullName: OpenTK.Graphics.Glx.Glx.ChooseFBConfig(OpenTK.Graphics.Glx.DisplayPtr, int, System.ReadOnlySpan, System.Span) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ChooseFBConfig - path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs startLine: 14 assemblies: - OpenTK.Graphics @@ -1565,459 +1624,1247 @@ items:
example: [] syntax: - content: public static GLXFBConfig* ChooseFBConfig(DisplayPtr dpy, int screen, in int attrib_list, ref int nelements) + content: public static GLXFBConfig* ChooseFBConfig(DisplayPtr dpy, int screen, ReadOnlySpan attrib_list, Span nelements) parameters: - id: dpy type: OpenTK.Graphics.Glx.DisplayPtr - id: screen type: System.Int32 - id: attrib_list - type: System.Int32 + type: System.ReadOnlySpan{System.Int32} - id: nelements - type: System.Int32 + type: System.Span{System.Int32} return: type: OpenTK.Graphics.Glx.GLXFBConfig* - content.vb: Public Shared Function ChooseFBConfig(dpy As DisplayPtr, screen As Integer, attrib_list As Integer, nelements As Integer) As GLXFBConfig* + content.vb: Public Shared Function ChooseFBConfig(dpy As DisplayPtr, screen As Integer, attrib_list As ReadOnlySpan(Of Integer), nelements As Span(Of Integer)) As GLXFBConfig* overload: OpenTK.Graphics.Glx.Glx.ChooseFBConfig* - nameWithType.vb: Glx.ChooseFBConfig(DisplayPtr, Integer, Integer, Integer) - fullName.vb: OpenTK.Graphics.Glx.Glx.ChooseFBConfig(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer, Integer) - name.vb: ChooseFBConfig(DisplayPtr, Integer, Integer, Integer) -- uid: OpenTK.Graphics.Glx.Glx.ChooseVisual(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32@) - commentId: M:OpenTK.Graphics.Glx.Glx.ChooseVisual(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32@) - id: ChooseVisual(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32@) + nameWithType.vb: Glx.ChooseFBConfig(DisplayPtr, Integer, ReadOnlySpan(Of Integer), Span(Of Integer)) + fullName.vb: OpenTK.Graphics.Glx.Glx.ChooseFBConfig(OpenTK.Graphics.Glx.DisplayPtr, Integer, System.ReadOnlySpan(Of Integer), System.Span(Of Integer)) + name.vb: ChooseFBConfig(DisplayPtr, Integer, ReadOnlySpan(Of Integer), Span(Of Integer)) +- uid: OpenTK.Graphics.Glx.Glx.ChooseFBConfig(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32[],System.Int32[]) + commentId: M:OpenTK.Graphics.Glx.Glx.ChooseFBConfig(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32[],System.Int32[]) + id: ChooseFBConfig(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32[],System.Int32[]) parent: OpenTK.Graphics.Glx.Glx langs: - csharp - vb - name: ChooseVisual(DisplayPtr, int, ref int) - nameWithType: Glx.ChooseVisual(DisplayPtr, int, ref int) - fullName: OpenTK.Graphics.Glx.Glx.ChooseVisual(OpenTK.Graphics.Glx.DisplayPtr, int, ref int) + name: ChooseFBConfig(DisplayPtr, int, int[], int[]) + nameWithType: Glx.ChooseFBConfig(DisplayPtr, int, int[], int[]) + fullName: OpenTK.Graphics.Glx.Glx.ChooseFBConfig(OpenTK.Graphics.Glx.DisplayPtr, int, int[], int[]) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: ChooseVisual - path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 25 + id: ChooseFBConfig + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 27 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx summary: >- - [requires: v1.0] + [requires: v1.3] - [entry point: glXChooseVisual] + [entry point: glXChooseFBConfig]
example: [] syntax: - content: public static XVisualInfoPtr ChooseVisual(DisplayPtr dpy, int screen, ref int attribList) + content: public static GLXFBConfig* ChooseFBConfig(DisplayPtr dpy, int screen, int[] attrib_list, int[] nelements) parameters: - id: dpy type: OpenTK.Graphics.Glx.DisplayPtr - id: screen type: System.Int32 - - id: attribList - type: System.Int32 + - id: attrib_list + type: System.Int32[] + - id: nelements + type: System.Int32[] return: - type: OpenTK.Graphics.Glx.XVisualInfoPtr - content.vb: Public Shared Function ChooseVisual(dpy As DisplayPtr, screen As Integer, attribList As Integer) As XVisualInfoPtr - overload: OpenTK.Graphics.Glx.Glx.ChooseVisual* - nameWithType.vb: Glx.ChooseVisual(DisplayPtr, Integer, Integer) - fullName.vb: OpenTK.Graphics.Glx.Glx.ChooseVisual(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer) - name.vb: ChooseVisual(DisplayPtr, Integer, Integer) -- uid: OpenTK.Graphics.Glx.Glx.CreatePbuffer(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,System.Int32@) - commentId: M:OpenTK.Graphics.Glx.Glx.CreatePbuffer(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,System.Int32@) - id: CreatePbuffer(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,System.Int32@) + type: OpenTK.Graphics.Glx.GLXFBConfig* + content.vb: Public Shared Function ChooseFBConfig(dpy As DisplayPtr, screen As Integer, attrib_list As Integer(), nelements As Integer()) As GLXFBConfig* + overload: OpenTK.Graphics.Glx.Glx.ChooseFBConfig* + nameWithType.vb: Glx.ChooseFBConfig(DisplayPtr, Integer, Integer(), Integer()) + fullName.vb: OpenTK.Graphics.Glx.Glx.ChooseFBConfig(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer(), Integer()) + name.vb: ChooseFBConfig(DisplayPtr, Integer, Integer(), Integer()) +- uid: OpenTK.Graphics.Glx.Glx.ChooseFBConfig(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32@,System.Int32@) + commentId: M:OpenTK.Graphics.Glx.Glx.ChooseFBConfig(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32@,System.Int32@) + id: ChooseFBConfig(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32@,System.Int32@) parent: OpenTK.Graphics.Glx.Glx langs: - csharp - vb - name: CreatePbuffer(DisplayPtr, GLXFBConfig, in int) - nameWithType: Glx.CreatePbuffer(DisplayPtr, GLXFBConfig, in int) - fullName: OpenTK.Graphics.Glx.Glx.CreatePbuffer(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfig, in int) + name: ChooseFBConfig(DisplayPtr, int, in int, ref int) + nameWithType: Glx.ChooseFBConfig(DisplayPtr, int, in int, ref int) + fullName: OpenTK.Graphics.Glx.Glx.ChooseFBConfig(OpenTK.Graphics.Glx.DisplayPtr, int, in int, ref int) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: CreatePbuffer - path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 35 + id: ChooseFBConfig + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 40 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx summary: >- [requires: v1.3] - [entry point: glXCreatePbuffer] + [entry point: glXChooseFBConfig]
example: [] syntax: - content: public static GLXPbuffer CreatePbuffer(DisplayPtr dpy, GLXFBConfig config, in int attrib_list) + content: public static GLXFBConfig* ChooseFBConfig(DisplayPtr dpy, int screen, in int attrib_list, ref int nelements) parameters: - id: dpy type: OpenTK.Graphics.Glx.DisplayPtr - - id: config - type: OpenTK.Graphics.Glx.GLXFBConfig + - id: screen + type: System.Int32 - id: attrib_list type: System.Int32 + - id: nelements + type: System.Int32 return: - type: OpenTK.Graphics.Glx.GLXPbuffer - content.vb: Public Shared Function CreatePbuffer(dpy As DisplayPtr, config As GLXFBConfig, attrib_list As Integer) As GLXPbuffer - overload: OpenTK.Graphics.Glx.Glx.CreatePbuffer* - nameWithType.vb: Glx.CreatePbuffer(DisplayPtr, GLXFBConfig, Integer) - fullName.vb: OpenTK.Graphics.Glx.Glx.CreatePbuffer(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfig, Integer) - name.vb: CreatePbuffer(DisplayPtr, GLXFBConfig, Integer) -- uid: OpenTK.Graphics.Glx.Glx.CreatePixmap(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.Pixmap,System.Int32@) - commentId: M:OpenTK.Graphics.Glx.Glx.CreatePixmap(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.Pixmap,System.Int32@) - id: CreatePixmap(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.Pixmap,System.Int32@) + type: OpenTK.Graphics.Glx.GLXFBConfig* + content.vb: Public Shared Function ChooseFBConfig(dpy As DisplayPtr, screen As Integer, attrib_list As Integer, nelements As Integer) As GLXFBConfig* + overload: OpenTK.Graphics.Glx.Glx.ChooseFBConfig* + nameWithType.vb: Glx.ChooseFBConfig(DisplayPtr, Integer, Integer, Integer) + fullName.vb: OpenTK.Graphics.Glx.Glx.ChooseFBConfig(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer, Integer) + name.vb: ChooseFBConfig(DisplayPtr, Integer, Integer, Integer) +- uid: OpenTK.Graphics.Glx.Glx.ChooseVisual(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Span{System.Int32}) + commentId: M:OpenTK.Graphics.Glx.Glx.ChooseVisual(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Span{System.Int32}) + id: ChooseVisual(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Span{System.Int32}) parent: OpenTK.Graphics.Glx.Glx langs: - csharp - vb - name: CreatePixmap(DisplayPtr, GLXFBConfig, Pixmap, in int) - nameWithType: Glx.CreatePixmap(DisplayPtr, GLXFBConfig, Pixmap, in int) - fullName: OpenTK.Graphics.Glx.Glx.CreatePixmap(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfig, OpenTK.Graphics.Glx.Pixmap, in int) + name: ChooseVisual(DisplayPtr, int, Span) + nameWithType: Glx.ChooseVisual(DisplayPtr, int, Span) + fullName: OpenTK.Graphics.Glx.Glx.ChooseVisual(OpenTK.Graphics.Glx.DisplayPtr, int, System.Span) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: CreatePixmap - path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 45 + id: ChooseVisual + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 51 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx summary: >- - [requires: v1.3] + [requires: v1.0] - [entry point: glXCreatePixmap] + [entry point: glXChooseVisual]
example: [] syntax: - content: public static GLXPixmap CreatePixmap(DisplayPtr dpy, GLXFBConfig config, Pixmap pixmap, in int attrib_list) + content: public static XVisualInfoPtr ChooseVisual(DisplayPtr dpy, int screen, Span attribList) parameters: - id: dpy type: OpenTK.Graphics.Glx.DisplayPtr - - id: config - type: OpenTK.Graphics.Glx.GLXFBConfig - - id: pixmap - type: OpenTK.Graphics.Glx.Pixmap - - id: attrib_list + - id: screen type: System.Int32 + - id: attribList + type: System.Span{System.Int32} return: - type: OpenTK.Graphics.Glx.GLXPixmap - content.vb: Public Shared Function CreatePixmap(dpy As DisplayPtr, config As GLXFBConfig, pixmap As Pixmap, attrib_list As Integer) As GLXPixmap - overload: OpenTK.Graphics.Glx.Glx.CreatePixmap* - nameWithType.vb: Glx.CreatePixmap(DisplayPtr, GLXFBConfig, Pixmap, Integer) - fullName.vb: OpenTK.Graphics.Glx.Glx.CreatePixmap(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfig, OpenTK.Graphics.Glx.Pixmap, Integer) - name.vb: CreatePixmap(DisplayPtr, GLXFBConfig, Pixmap, Integer) -- uid: OpenTK.Graphics.Glx.Glx.CreateWindow(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.Window,System.Int32@) - commentId: M:OpenTK.Graphics.Glx.Glx.CreateWindow(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.Window,System.Int32@) - id: CreateWindow(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.Window,System.Int32@) + type: OpenTK.Graphics.Glx.XVisualInfoPtr + content.vb: Public Shared Function ChooseVisual(dpy As DisplayPtr, screen As Integer, attribList As Span(Of Integer)) As XVisualInfoPtr + overload: OpenTK.Graphics.Glx.Glx.ChooseVisual* + nameWithType.vb: Glx.ChooseVisual(DisplayPtr, Integer, Span(Of Integer)) + fullName.vb: OpenTK.Graphics.Glx.Glx.ChooseVisual(OpenTK.Graphics.Glx.DisplayPtr, Integer, System.Span(Of Integer)) + name.vb: ChooseVisual(DisplayPtr, Integer, Span(Of Integer)) +- uid: OpenTK.Graphics.Glx.Glx.ChooseVisual(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32[]) + commentId: M:OpenTK.Graphics.Glx.Glx.ChooseVisual(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32[]) + id: ChooseVisual(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32[]) parent: OpenTK.Graphics.Glx.Glx langs: - csharp - vb - name: CreateWindow(DisplayPtr, GLXFBConfig, Window, in int) - nameWithType: Glx.CreateWindow(DisplayPtr, GLXFBConfig, Window, in int) - fullName: OpenTK.Graphics.Glx.Glx.CreateWindow(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfig, OpenTK.Graphics.Glx.Window, in int) + name: ChooseVisual(DisplayPtr, int, int[]) + nameWithType: Glx.ChooseVisual(DisplayPtr, int, int[]) + fullName: OpenTK.Graphics.Glx.Glx.ChooseVisual(OpenTK.Graphics.Glx.DisplayPtr, int, int[]) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: CreateWindow - path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 55 + id: ChooseVisual + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 61 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx summary: >- - [requires: v1.3] + [requires: v1.0] - [entry point: glXCreateWindow] + [entry point: glXChooseVisual]
example: [] syntax: - content: public static GLXWindow CreateWindow(DisplayPtr dpy, GLXFBConfig config, Window win, in int attrib_list) + content: public static XVisualInfoPtr ChooseVisual(DisplayPtr dpy, int screen, int[] attribList) parameters: - id: dpy type: OpenTK.Graphics.Glx.DisplayPtr - - id: config - type: OpenTK.Graphics.Glx.GLXFBConfig - - id: win - type: OpenTK.Graphics.Glx.Window - - id: attrib_list + - id: screen type: System.Int32 + - id: attribList + type: System.Int32[] return: - type: OpenTK.Graphics.Glx.GLXWindow - content.vb: Public Shared Function CreateWindow(dpy As DisplayPtr, config As GLXFBConfig, win As Window, attrib_list As Integer) As GLXWindow - overload: OpenTK.Graphics.Glx.Glx.CreateWindow* - nameWithType.vb: Glx.CreateWindow(DisplayPtr, GLXFBConfig, Window, Integer) - fullName.vb: OpenTK.Graphics.Glx.Glx.CreateWindow(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfig, OpenTK.Graphics.Glx.Window, Integer) - name.vb: CreateWindow(DisplayPtr, GLXFBConfig, Window, Integer) -- uid: OpenTK.Graphics.Glx.Glx.GetClientString(OpenTK.Graphics.Glx.DisplayPtr,System.Int32) - commentId: M:OpenTK.Graphics.Glx.Glx.GetClientString(OpenTK.Graphics.Glx.DisplayPtr,System.Int32) - id: GetClientString(OpenTK.Graphics.Glx.DisplayPtr,System.Int32) + type: OpenTK.Graphics.Glx.XVisualInfoPtr + content.vb: Public Shared Function ChooseVisual(dpy As DisplayPtr, screen As Integer, attribList As Integer()) As XVisualInfoPtr + overload: OpenTK.Graphics.Glx.Glx.ChooseVisual* + nameWithType.vb: Glx.ChooseVisual(DisplayPtr, Integer, Integer()) + fullName.vb: OpenTK.Graphics.Glx.Glx.ChooseVisual(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer()) + name.vb: ChooseVisual(DisplayPtr, Integer, Integer()) +- uid: OpenTK.Graphics.Glx.Glx.ChooseVisual(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32@) + commentId: M:OpenTK.Graphics.Glx.Glx.ChooseVisual(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32@) + id: ChooseVisual(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32@) parent: OpenTK.Graphics.Glx.Glx langs: - csharp - vb - name: GetClientString(DisplayPtr, int) - nameWithType: Glx.GetClientString(DisplayPtr, int) - fullName: OpenTK.Graphics.Glx.Glx.GetClientString(OpenTK.Graphics.Glx.DisplayPtr, int) + name: ChooseVisual(DisplayPtr, int, ref int) + nameWithType: Glx.ChooseVisual(DisplayPtr, int, ref int) + fullName: OpenTK.Graphics.Glx.Glx.ChooseVisual(OpenTK.Graphics.Glx.DisplayPtr, int, ref int) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: GetClientString - path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 65 + id: ChooseVisual + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 71 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx + summary: >- + [requires: v1.0] + + [entry point: glXChooseVisual] + +
example: [] syntax: - content: public static string? GetClientString(DisplayPtr dpy, int name) + content: public static XVisualInfoPtr ChooseVisual(DisplayPtr dpy, int screen, ref int attribList) parameters: - id: dpy type: OpenTK.Graphics.Glx.DisplayPtr - - id: name + - id: screen + type: System.Int32 + - id: attribList type: System.Int32 return: - type: System.String - content.vb: Public Shared Function GetClientString(dpy As DisplayPtr, name As Integer) As String - overload: OpenTK.Graphics.Glx.Glx.GetClientString* - nameWithType.vb: Glx.GetClientString(DisplayPtr, Integer) - fullName.vb: OpenTK.Graphics.Glx.Glx.GetClientString(OpenTK.Graphics.Glx.DisplayPtr, Integer) - name.vb: GetClientString(DisplayPtr, Integer) -- uid: OpenTK.Graphics.Glx.Glx.GetConfig(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.XVisualInfoPtr,System.Int32,System.Int32@) - commentId: M:OpenTK.Graphics.Glx.Glx.GetConfig(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.XVisualInfoPtr,System.Int32,System.Int32@) - id: GetConfig(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.XVisualInfoPtr,System.Int32,System.Int32@) + type: OpenTK.Graphics.Glx.XVisualInfoPtr + content.vb: Public Shared Function ChooseVisual(dpy As DisplayPtr, screen As Integer, attribList As Integer) As XVisualInfoPtr + overload: OpenTK.Graphics.Glx.Glx.ChooseVisual* + nameWithType.vb: Glx.ChooseVisual(DisplayPtr, Integer, Integer) + fullName.vb: OpenTK.Graphics.Glx.Glx.ChooseVisual(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer) + name.vb: ChooseVisual(DisplayPtr, Integer, Integer) +- uid: OpenTK.Graphics.Glx.Glx.CreatePbuffer(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,System.ReadOnlySpan{System.Int32}) + commentId: M:OpenTK.Graphics.Glx.Glx.CreatePbuffer(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,System.ReadOnlySpan{System.Int32}) + id: CreatePbuffer(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,System.ReadOnlySpan{System.Int32}) parent: OpenTK.Graphics.Glx.Glx langs: - csharp - vb - name: GetConfig(DisplayPtr, XVisualInfoPtr, int, ref int) - nameWithType: Glx.GetConfig(DisplayPtr, XVisualInfoPtr, int, ref int) - fullName: OpenTK.Graphics.Glx.Glx.GetConfig(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.XVisualInfoPtr, int, ref int) + name: CreatePbuffer(DisplayPtr, GLXFBConfig, ReadOnlySpan) + nameWithType: Glx.CreatePbuffer(DisplayPtr, GLXFBConfig, ReadOnlySpan) + fullName: OpenTK.Graphics.Glx.Glx.CreatePbuffer(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfig, System.ReadOnlySpan) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: GetConfig - path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 74 + id: CreatePbuffer + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 81 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx summary: >- - [requires: v1.0] + [requires: v1.3] - [entry point: glXGetConfig] + [entry point: glXCreatePbuffer]
example: [] syntax: - content: public static int GetConfig(DisplayPtr dpy, XVisualInfoPtr visual, int attrib, ref int value) + content: public static GLXPbuffer CreatePbuffer(DisplayPtr dpy, GLXFBConfig config, ReadOnlySpan attrib_list) parameters: - id: dpy type: OpenTK.Graphics.Glx.DisplayPtr - - id: visual - type: OpenTK.Graphics.Glx.XVisualInfoPtr - - id: attrib - type: System.Int32 - - id: value - type: System.Int32 + - id: config + type: OpenTK.Graphics.Glx.GLXFBConfig + - id: attrib_list + type: System.ReadOnlySpan{System.Int32} return: - type: System.Int32 - content.vb: Public Shared Function GetConfig(dpy As DisplayPtr, visual As XVisualInfoPtr, attrib As Integer, value As Integer) As Integer - overload: OpenTK.Graphics.Glx.Glx.GetConfig* - nameWithType.vb: Glx.GetConfig(DisplayPtr, XVisualInfoPtr, Integer, Integer) - fullName.vb: OpenTK.Graphics.Glx.Glx.GetConfig(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.XVisualInfoPtr, Integer, Integer) - name.vb: GetConfig(DisplayPtr, XVisualInfoPtr, Integer, Integer) -- uid: OpenTK.Graphics.Glx.Glx.GetFBConfigAttrib(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,System.Int32,System.Int32@) - commentId: M:OpenTK.Graphics.Glx.Glx.GetFBConfigAttrib(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,System.Int32,System.Int32@) - id: GetFBConfigAttrib(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,System.Int32,System.Int32@) + type: OpenTK.Graphics.Glx.GLXPbuffer + content.vb: Public Shared Function CreatePbuffer(dpy As DisplayPtr, config As GLXFBConfig, attrib_list As ReadOnlySpan(Of Integer)) As GLXPbuffer + overload: OpenTK.Graphics.Glx.Glx.CreatePbuffer* + nameWithType.vb: Glx.CreatePbuffer(DisplayPtr, GLXFBConfig, ReadOnlySpan(Of Integer)) + fullName.vb: OpenTK.Graphics.Glx.Glx.CreatePbuffer(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfig, System.ReadOnlySpan(Of Integer)) + name.vb: CreatePbuffer(DisplayPtr, GLXFBConfig, ReadOnlySpan(Of Integer)) +- uid: OpenTK.Graphics.Glx.Glx.CreatePbuffer(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,System.Int32[]) + commentId: M:OpenTK.Graphics.Glx.Glx.CreatePbuffer(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,System.Int32[]) + id: CreatePbuffer(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,System.Int32[]) parent: OpenTK.Graphics.Glx.Glx langs: - csharp - vb - name: GetFBConfigAttrib(DisplayPtr, GLXFBConfig, int, ref int) - nameWithType: Glx.GetFBConfigAttrib(DisplayPtr, GLXFBConfig, int, ref int) - fullName: OpenTK.Graphics.Glx.Glx.GetFBConfigAttrib(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfig, int, ref int) + name: CreatePbuffer(DisplayPtr, GLXFBConfig, int[]) + nameWithType: Glx.CreatePbuffer(DisplayPtr, GLXFBConfig, int[]) + fullName: OpenTK.Graphics.Glx.Glx.CreatePbuffer(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfig, int[]) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: GetFBConfigAttrib - path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 84 + id: CreatePbuffer + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 91 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx summary: >- [requires: v1.3] - [entry point: glXGetFBConfigAttrib] + [entry point: glXCreatePbuffer]
example: [] syntax: - content: public static int GetFBConfigAttrib(DisplayPtr dpy, GLXFBConfig config, int attribute, ref int value) + content: public static GLXPbuffer CreatePbuffer(DisplayPtr dpy, GLXFBConfig config, int[] attrib_list) parameters: - id: dpy type: OpenTK.Graphics.Glx.DisplayPtr - id: config type: OpenTK.Graphics.Glx.GLXFBConfig - - id: attribute - type: System.Int32 - - id: value - type: System.Int32 + - id: attrib_list + type: System.Int32[] return: - type: System.Int32 - content.vb: Public Shared Function GetFBConfigAttrib(dpy As DisplayPtr, config As GLXFBConfig, attribute As Integer, value As Integer) As Integer - overload: OpenTK.Graphics.Glx.Glx.GetFBConfigAttrib* - nameWithType.vb: Glx.GetFBConfigAttrib(DisplayPtr, GLXFBConfig, Integer, Integer) - fullName.vb: OpenTK.Graphics.Glx.Glx.GetFBConfigAttrib(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfig, Integer, Integer) - name.vb: GetFBConfigAttrib(DisplayPtr, GLXFBConfig, Integer, Integer) -- uid: OpenTK.Graphics.Glx.Glx.GetFBConfig(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32@) - commentId: M:OpenTK.Graphics.Glx.Glx.GetFBConfig(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32@) - id: GetFBConfig(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32@) + type: OpenTK.Graphics.Glx.GLXPbuffer + content.vb: Public Shared Function CreatePbuffer(dpy As DisplayPtr, config As GLXFBConfig, attrib_list As Integer()) As GLXPbuffer + overload: OpenTK.Graphics.Glx.Glx.CreatePbuffer* + nameWithType.vb: Glx.CreatePbuffer(DisplayPtr, GLXFBConfig, Integer()) + fullName.vb: OpenTK.Graphics.Glx.Glx.CreatePbuffer(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfig, Integer()) + name.vb: CreatePbuffer(DisplayPtr, GLXFBConfig, Integer()) +- uid: OpenTK.Graphics.Glx.Glx.CreatePbuffer(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,System.Int32@) + commentId: M:OpenTK.Graphics.Glx.Glx.CreatePbuffer(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,System.Int32@) + id: CreatePbuffer(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,System.Int32@) parent: OpenTK.Graphics.Glx.Glx langs: - csharp - vb - name: GetFBConfig(DisplayPtr, int, ref int) - nameWithType: Glx.GetFBConfig(DisplayPtr, int, ref int) - fullName: OpenTK.Graphics.Glx.Glx.GetFBConfig(OpenTK.Graphics.Glx.DisplayPtr, int, ref int) + name: CreatePbuffer(DisplayPtr, GLXFBConfig, in int) + nameWithType: Glx.CreatePbuffer(DisplayPtr, GLXFBConfig, in int) + fullName: OpenTK.Graphics.Glx.Glx.CreatePbuffer(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfig, in int) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: GetFBConfig - path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 94 + id: CreatePbuffer + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 101 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx summary: >- [requires: v1.3] - [entry point: glXGetFBConfigs] + [entry point: glXCreatePbuffer]
example: [] syntax: - content: public static GLXFBConfig* GetFBConfig(DisplayPtr dpy, int screen, ref int nelements) + content: public static GLXPbuffer CreatePbuffer(DisplayPtr dpy, GLXFBConfig config, in int attrib_list) parameters: - id: dpy type: OpenTK.Graphics.Glx.DisplayPtr - - id: screen - type: System.Int32 - - id: nelements + - id: config + type: OpenTK.Graphics.Glx.GLXFBConfig + - id: attrib_list type: System.Int32 return: - type: OpenTK.Graphics.Glx.GLXFBConfig* - content.vb: Public Shared Function GetFBConfig(dpy As DisplayPtr, screen As Integer, nelements As Integer) As GLXFBConfig* - overload: OpenTK.Graphics.Glx.Glx.GetFBConfig* - nameWithType.vb: Glx.GetFBConfig(DisplayPtr, Integer, Integer) - fullName.vb: OpenTK.Graphics.Glx.Glx.GetFBConfig(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer) - name.vb: GetFBConfig(DisplayPtr, Integer, Integer) -- uid: OpenTK.Graphics.Glx.Glx.GetProcAddress(System.Byte@) - commentId: M:OpenTK.Graphics.Glx.Glx.GetProcAddress(System.Byte@) - id: GetProcAddress(System.Byte@) + type: OpenTK.Graphics.Glx.GLXPbuffer + content.vb: Public Shared Function CreatePbuffer(dpy As DisplayPtr, config As GLXFBConfig, attrib_list As Integer) As GLXPbuffer + overload: OpenTK.Graphics.Glx.Glx.CreatePbuffer* + nameWithType.vb: Glx.CreatePbuffer(DisplayPtr, GLXFBConfig, Integer) + fullName.vb: OpenTK.Graphics.Glx.Glx.CreatePbuffer(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfig, Integer) + name.vb: CreatePbuffer(DisplayPtr, GLXFBConfig, Integer) +- uid: OpenTK.Graphics.Glx.Glx.CreatePixmap(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.Pixmap,System.ReadOnlySpan{System.Int32}) + commentId: M:OpenTK.Graphics.Glx.Glx.CreatePixmap(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.Pixmap,System.ReadOnlySpan{System.Int32}) + id: CreatePixmap(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.Pixmap,System.ReadOnlySpan{System.Int32}) parent: OpenTK.Graphics.Glx.Glx langs: - csharp - vb - name: GetProcAddress(in byte) - nameWithType: Glx.GetProcAddress(in byte) - fullName: OpenTK.Graphics.Glx.Glx.GetProcAddress(in byte) + name: CreatePixmap(DisplayPtr, GLXFBConfig, Pixmap, ReadOnlySpan) + nameWithType: Glx.CreatePixmap(DisplayPtr, GLXFBConfig, Pixmap, ReadOnlySpan) + fullName: OpenTK.Graphics.Glx.Glx.CreatePixmap(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfig, OpenTK.Graphics.Glx.Pixmap, System.ReadOnlySpan) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: GetProcAddress - path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 104 + id: CreatePixmap + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 111 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx summary: >- - [requires: v1.4] + [requires: v1.3] - [entry point: glXGetProcAddress] + [entry point: glXCreatePixmap]
example: [] syntax: - content: public static nint GetProcAddress(in byte procName) + content: public static GLXPixmap CreatePixmap(DisplayPtr dpy, GLXFBConfig config, Pixmap pixmap, ReadOnlySpan attrib_list) parameters: - - id: procName - type: System.Byte + - id: dpy + type: OpenTK.Graphics.Glx.DisplayPtr + - id: config + type: OpenTK.Graphics.Glx.GLXFBConfig + - id: pixmap + type: OpenTK.Graphics.Glx.Pixmap + - id: attrib_list + type: System.ReadOnlySpan{System.Int32} return: - type: System.IntPtr - content.vb: Public Shared Function GetProcAddress(procName As Byte) As IntPtr - overload: OpenTK.Graphics.Glx.Glx.GetProcAddress* - nameWithType.vb: Glx.GetProcAddress(Byte) - fullName.vb: OpenTK.Graphics.Glx.Glx.GetProcAddress(Byte) - name.vb: GetProcAddress(Byte) -- uid: OpenTK.Graphics.Glx.Glx.GetSelectedEvent(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.UInt64@) - commentId: M:OpenTK.Graphics.Glx.Glx.GetSelectedEvent(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.UInt64@) - id: GetSelectedEvent(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.UInt64@) + type: OpenTK.Graphics.Glx.GLXPixmap + content.vb: Public Shared Function CreatePixmap(dpy As DisplayPtr, config As GLXFBConfig, pixmap As Pixmap, attrib_list As ReadOnlySpan(Of Integer)) As GLXPixmap + overload: OpenTK.Graphics.Glx.Glx.CreatePixmap* + nameWithType.vb: Glx.CreatePixmap(DisplayPtr, GLXFBConfig, Pixmap, ReadOnlySpan(Of Integer)) + fullName.vb: OpenTK.Graphics.Glx.Glx.CreatePixmap(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfig, OpenTK.Graphics.Glx.Pixmap, System.ReadOnlySpan(Of Integer)) + name.vb: CreatePixmap(DisplayPtr, GLXFBConfig, Pixmap, ReadOnlySpan(Of Integer)) +- uid: OpenTK.Graphics.Glx.Glx.CreatePixmap(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.Pixmap,System.Int32[]) + commentId: M:OpenTK.Graphics.Glx.Glx.CreatePixmap(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.Pixmap,System.Int32[]) + id: CreatePixmap(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.Pixmap,System.Int32[]) parent: OpenTK.Graphics.Glx.Glx langs: - csharp - vb - name: GetSelectedEvent(DisplayPtr, GLXDrawable, ref ulong) - nameWithType: Glx.GetSelectedEvent(DisplayPtr, GLXDrawable, ref ulong) - fullName: OpenTK.Graphics.Glx.Glx.GetSelectedEvent(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, ref ulong) + name: CreatePixmap(DisplayPtr, GLXFBConfig, Pixmap, int[]) + nameWithType: Glx.CreatePixmap(DisplayPtr, GLXFBConfig, Pixmap, int[]) + fullName: OpenTK.Graphics.Glx.Glx.CreatePixmap(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfig, OpenTK.Graphics.Glx.Pixmap, int[]) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: GetSelectedEvent - path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 114 + id: CreatePixmap + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 121 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx summary: >- [requires: v1.3] - [entry point: glXGetSelectedEvent] + [entry point: glXCreatePixmap]
example: [] syntax: - content: public static void GetSelectedEvent(DisplayPtr dpy, GLXDrawable draw, ref ulong event_mask) + content: public static GLXPixmap CreatePixmap(DisplayPtr dpy, GLXFBConfig config, Pixmap pixmap, int[] attrib_list) parameters: - id: dpy type: OpenTK.Graphics.Glx.DisplayPtr - - id: draw + - id: config + type: OpenTK.Graphics.Glx.GLXFBConfig + - id: pixmap + type: OpenTK.Graphics.Glx.Pixmap + - id: attrib_list + type: System.Int32[] + return: + type: OpenTK.Graphics.Glx.GLXPixmap + content.vb: Public Shared Function CreatePixmap(dpy As DisplayPtr, config As GLXFBConfig, pixmap As Pixmap, attrib_list As Integer()) As GLXPixmap + overload: OpenTK.Graphics.Glx.Glx.CreatePixmap* + nameWithType.vb: Glx.CreatePixmap(DisplayPtr, GLXFBConfig, Pixmap, Integer()) + fullName.vb: OpenTK.Graphics.Glx.Glx.CreatePixmap(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfig, OpenTK.Graphics.Glx.Pixmap, Integer()) + name.vb: CreatePixmap(DisplayPtr, GLXFBConfig, Pixmap, Integer()) +- uid: OpenTK.Graphics.Glx.Glx.CreatePixmap(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.Pixmap,System.Int32@) + commentId: M:OpenTK.Graphics.Glx.Glx.CreatePixmap(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.Pixmap,System.Int32@) + id: CreatePixmap(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.Pixmap,System.Int32@) + parent: OpenTK.Graphics.Glx.Glx + langs: + - csharp + - vb + name: CreatePixmap(DisplayPtr, GLXFBConfig, Pixmap, in int) + nameWithType: Glx.CreatePixmap(DisplayPtr, GLXFBConfig, Pixmap, in int) + fullName: OpenTK.Graphics.Glx.Glx.CreatePixmap(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfig, OpenTK.Graphics.Glx.Pixmap, in int) + type: Method + source: + id: CreatePixmap + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 131 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Glx + summary: >- + [requires: v1.3] + + [entry point: glXCreatePixmap] + +
+ example: [] + syntax: + content: public static GLXPixmap CreatePixmap(DisplayPtr dpy, GLXFBConfig config, Pixmap pixmap, in int attrib_list) + parameters: + - id: dpy + type: OpenTK.Graphics.Glx.DisplayPtr + - id: config + type: OpenTK.Graphics.Glx.GLXFBConfig + - id: pixmap + type: OpenTK.Graphics.Glx.Pixmap + - id: attrib_list + type: System.Int32 + return: + type: OpenTK.Graphics.Glx.GLXPixmap + content.vb: Public Shared Function CreatePixmap(dpy As DisplayPtr, config As GLXFBConfig, pixmap As Pixmap, attrib_list As Integer) As GLXPixmap + overload: OpenTK.Graphics.Glx.Glx.CreatePixmap* + nameWithType.vb: Glx.CreatePixmap(DisplayPtr, GLXFBConfig, Pixmap, Integer) + fullName.vb: OpenTK.Graphics.Glx.Glx.CreatePixmap(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfig, OpenTK.Graphics.Glx.Pixmap, Integer) + name.vb: CreatePixmap(DisplayPtr, GLXFBConfig, Pixmap, Integer) +- uid: OpenTK.Graphics.Glx.Glx.CreateWindow(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.Window,System.ReadOnlySpan{System.Int32}) + commentId: M:OpenTK.Graphics.Glx.Glx.CreateWindow(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.Window,System.ReadOnlySpan{System.Int32}) + id: CreateWindow(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.Window,System.ReadOnlySpan{System.Int32}) + parent: OpenTK.Graphics.Glx.Glx + langs: + - csharp + - vb + name: CreateWindow(DisplayPtr, GLXFBConfig, Window, ReadOnlySpan) + nameWithType: Glx.CreateWindow(DisplayPtr, GLXFBConfig, Window, ReadOnlySpan) + fullName: OpenTK.Graphics.Glx.Glx.CreateWindow(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfig, OpenTK.Graphics.Glx.Window, System.ReadOnlySpan) + type: Method + source: + id: CreateWindow + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 141 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Glx + summary: >- + [requires: v1.3] + + [entry point: glXCreateWindow] + +
+ example: [] + syntax: + content: public static GLXWindow CreateWindow(DisplayPtr dpy, GLXFBConfig config, Window win, ReadOnlySpan attrib_list) + parameters: + - id: dpy + type: OpenTK.Graphics.Glx.DisplayPtr + - id: config + type: OpenTK.Graphics.Glx.GLXFBConfig + - id: win + type: OpenTK.Graphics.Glx.Window + - id: attrib_list + type: System.ReadOnlySpan{System.Int32} + return: + type: OpenTK.Graphics.Glx.GLXWindow + content.vb: Public Shared Function CreateWindow(dpy As DisplayPtr, config As GLXFBConfig, win As Window, attrib_list As ReadOnlySpan(Of Integer)) As GLXWindow + overload: OpenTK.Graphics.Glx.Glx.CreateWindow* + nameWithType.vb: Glx.CreateWindow(DisplayPtr, GLXFBConfig, Window, ReadOnlySpan(Of Integer)) + fullName.vb: OpenTK.Graphics.Glx.Glx.CreateWindow(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfig, OpenTK.Graphics.Glx.Window, System.ReadOnlySpan(Of Integer)) + name.vb: CreateWindow(DisplayPtr, GLXFBConfig, Window, ReadOnlySpan(Of Integer)) +- uid: OpenTK.Graphics.Glx.Glx.CreateWindow(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.Window,System.Int32[]) + commentId: M:OpenTK.Graphics.Glx.Glx.CreateWindow(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.Window,System.Int32[]) + id: CreateWindow(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.Window,System.Int32[]) + parent: OpenTK.Graphics.Glx.Glx + langs: + - csharp + - vb + name: CreateWindow(DisplayPtr, GLXFBConfig, Window, int[]) + nameWithType: Glx.CreateWindow(DisplayPtr, GLXFBConfig, Window, int[]) + fullName: OpenTK.Graphics.Glx.Glx.CreateWindow(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfig, OpenTK.Graphics.Glx.Window, int[]) + type: Method + source: + id: CreateWindow + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 151 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Glx + summary: >- + [requires: v1.3] + + [entry point: glXCreateWindow] + +
+ example: [] + syntax: + content: public static GLXWindow CreateWindow(DisplayPtr dpy, GLXFBConfig config, Window win, int[] attrib_list) + parameters: + - id: dpy + type: OpenTK.Graphics.Glx.DisplayPtr + - id: config + type: OpenTK.Graphics.Glx.GLXFBConfig + - id: win + type: OpenTK.Graphics.Glx.Window + - id: attrib_list + type: System.Int32[] + return: + type: OpenTK.Graphics.Glx.GLXWindow + content.vb: Public Shared Function CreateWindow(dpy As DisplayPtr, config As GLXFBConfig, win As Window, attrib_list As Integer()) As GLXWindow + overload: OpenTK.Graphics.Glx.Glx.CreateWindow* + nameWithType.vb: Glx.CreateWindow(DisplayPtr, GLXFBConfig, Window, Integer()) + fullName.vb: OpenTK.Graphics.Glx.Glx.CreateWindow(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfig, OpenTK.Graphics.Glx.Window, Integer()) + name.vb: CreateWindow(DisplayPtr, GLXFBConfig, Window, Integer()) +- uid: OpenTK.Graphics.Glx.Glx.CreateWindow(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.Window,System.Int32@) + commentId: M:OpenTK.Graphics.Glx.Glx.CreateWindow(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.Window,System.Int32@) + id: CreateWindow(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.Window,System.Int32@) + parent: OpenTK.Graphics.Glx.Glx + langs: + - csharp + - vb + name: CreateWindow(DisplayPtr, GLXFBConfig, Window, in int) + nameWithType: Glx.CreateWindow(DisplayPtr, GLXFBConfig, Window, in int) + fullName: OpenTK.Graphics.Glx.Glx.CreateWindow(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfig, OpenTK.Graphics.Glx.Window, in int) + type: Method + source: + id: CreateWindow + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 161 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Glx + summary: >- + [requires: v1.3] + + [entry point: glXCreateWindow] + +
+ example: [] + syntax: + content: public static GLXWindow CreateWindow(DisplayPtr dpy, GLXFBConfig config, Window win, in int attrib_list) + parameters: + - id: dpy + type: OpenTK.Graphics.Glx.DisplayPtr + - id: config + type: OpenTK.Graphics.Glx.GLXFBConfig + - id: win + type: OpenTK.Graphics.Glx.Window + - id: attrib_list + type: System.Int32 + return: + type: OpenTK.Graphics.Glx.GLXWindow + content.vb: Public Shared Function CreateWindow(dpy As DisplayPtr, config As GLXFBConfig, win As Window, attrib_list As Integer) As GLXWindow + overload: OpenTK.Graphics.Glx.Glx.CreateWindow* + nameWithType.vb: Glx.CreateWindow(DisplayPtr, GLXFBConfig, Window, Integer) + fullName.vb: OpenTK.Graphics.Glx.Glx.CreateWindow(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfig, OpenTK.Graphics.Glx.Window, Integer) + name.vb: CreateWindow(DisplayPtr, GLXFBConfig, Window, Integer) +- uid: OpenTK.Graphics.Glx.Glx.GetClientString(OpenTK.Graphics.Glx.DisplayPtr,System.Int32) + commentId: M:OpenTK.Graphics.Glx.Glx.GetClientString(OpenTK.Graphics.Glx.DisplayPtr,System.Int32) + id: GetClientString(OpenTK.Graphics.Glx.DisplayPtr,System.Int32) + parent: OpenTK.Graphics.Glx.Glx + langs: + - csharp + - vb + name: GetClientString(DisplayPtr, int) + nameWithType: Glx.GetClientString(DisplayPtr, int) + fullName: OpenTK.Graphics.Glx.Glx.GetClientString(OpenTK.Graphics.Glx.DisplayPtr, int) + type: Method + source: + id: GetClientString + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 171 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Glx + example: [] + syntax: + content: public static string? GetClientString(DisplayPtr dpy, int name) + parameters: + - id: dpy + type: OpenTK.Graphics.Glx.DisplayPtr + - id: name + type: System.Int32 + return: + type: System.String + content.vb: Public Shared Function GetClientString(dpy As DisplayPtr, name As Integer) As String + overload: OpenTK.Graphics.Glx.Glx.GetClientString* + nameWithType.vb: Glx.GetClientString(DisplayPtr, Integer) + fullName.vb: OpenTK.Graphics.Glx.Glx.GetClientString(OpenTK.Graphics.Glx.DisplayPtr, Integer) + name.vb: GetClientString(DisplayPtr, Integer) +- uid: OpenTK.Graphics.Glx.Glx.GetConfig(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.XVisualInfoPtr,System.Int32,System.Span{System.Int32}) + commentId: M:OpenTK.Graphics.Glx.Glx.GetConfig(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.XVisualInfoPtr,System.Int32,System.Span{System.Int32}) + id: GetConfig(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.XVisualInfoPtr,System.Int32,System.Span{System.Int32}) + parent: OpenTK.Graphics.Glx.Glx + langs: + - csharp + - vb + name: GetConfig(DisplayPtr, XVisualInfoPtr, int, Span) + nameWithType: Glx.GetConfig(DisplayPtr, XVisualInfoPtr, int, Span) + fullName: OpenTK.Graphics.Glx.Glx.GetConfig(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.XVisualInfoPtr, int, System.Span) + type: Method + source: + id: GetConfig + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 180 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Glx + summary: >- + [requires: v1.0] + + [entry point: glXGetConfig] + +
+ example: [] + syntax: + content: public static int GetConfig(DisplayPtr dpy, XVisualInfoPtr visual, int attrib, Span value) + parameters: + - id: dpy + type: OpenTK.Graphics.Glx.DisplayPtr + - id: visual + type: OpenTK.Graphics.Glx.XVisualInfoPtr + - id: attrib + type: System.Int32 + - id: value + type: System.Span{System.Int32} + return: + type: System.Int32 + content.vb: Public Shared Function GetConfig(dpy As DisplayPtr, visual As XVisualInfoPtr, attrib As Integer, value As Span(Of Integer)) As Integer + overload: OpenTK.Graphics.Glx.Glx.GetConfig* + nameWithType.vb: Glx.GetConfig(DisplayPtr, XVisualInfoPtr, Integer, Span(Of Integer)) + fullName.vb: OpenTK.Graphics.Glx.Glx.GetConfig(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.XVisualInfoPtr, Integer, System.Span(Of Integer)) + name.vb: GetConfig(DisplayPtr, XVisualInfoPtr, Integer, Span(Of Integer)) +- uid: OpenTK.Graphics.Glx.Glx.GetConfig(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.XVisualInfoPtr,System.Int32,System.Int32[]) + commentId: M:OpenTK.Graphics.Glx.Glx.GetConfig(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.XVisualInfoPtr,System.Int32,System.Int32[]) + id: GetConfig(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.XVisualInfoPtr,System.Int32,System.Int32[]) + parent: OpenTK.Graphics.Glx.Glx + langs: + - csharp + - vb + name: GetConfig(DisplayPtr, XVisualInfoPtr, int, int[]) + nameWithType: Glx.GetConfig(DisplayPtr, XVisualInfoPtr, int, int[]) + fullName: OpenTK.Graphics.Glx.Glx.GetConfig(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.XVisualInfoPtr, int, int[]) + type: Method + source: + id: GetConfig + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 190 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Glx + summary: >- + [requires: v1.0] + + [entry point: glXGetConfig] + +
+ example: [] + syntax: + content: public static int GetConfig(DisplayPtr dpy, XVisualInfoPtr visual, int attrib, int[] value) + parameters: + - id: dpy + type: OpenTK.Graphics.Glx.DisplayPtr + - id: visual + type: OpenTK.Graphics.Glx.XVisualInfoPtr + - id: attrib + type: System.Int32 + - id: value + type: System.Int32[] + return: + type: System.Int32 + content.vb: Public Shared Function GetConfig(dpy As DisplayPtr, visual As XVisualInfoPtr, attrib As Integer, value As Integer()) As Integer + overload: OpenTK.Graphics.Glx.Glx.GetConfig* + nameWithType.vb: Glx.GetConfig(DisplayPtr, XVisualInfoPtr, Integer, Integer()) + fullName.vb: OpenTK.Graphics.Glx.Glx.GetConfig(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.XVisualInfoPtr, Integer, Integer()) + name.vb: GetConfig(DisplayPtr, XVisualInfoPtr, Integer, Integer()) +- uid: OpenTK.Graphics.Glx.Glx.GetConfig(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.XVisualInfoPtr,System.Int32,System.Int32@) + commentId: M:OpenTK.Graphics.Glx.Glx.GetConfig(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.XVisualInfoPtr,System.Int32,System.Int32@) + id: GetConfig(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.XVisualInfoPtr,System.Int32,System.Int32@) + parent: OpenTK.Graphics.Glx.Glx + langs: + - csharp + - vb + name: GetConfig(DisplayPtr, XVisualInfoPtr, int, ref int) + nameWithType: Glx.GetConfig(DisplayPtr, XVisualInfoPtr, int, ref int) + fullName: OpenTK.Graphics.Glx.Glx.GetConfig(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.XVisualInfoPtr, int, ref int) + type: Method + source: + id: GetConfig + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 200 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Glx + summary: >- + [requires: v1.0] + + [entry point: glXGetConfig] + +
+ example: [] + syntax: + content: public static int GetConfig(DisplayPtr dpy, XVisualInfoPtr visual, int attrib, ref int value) + parameters: + - id: dpy + type: OpenTK.Graphics.Glx.DisplayPtr + - id: visual + type: OpenTK.Graphics.Glx.XVisualInfoPtr + - id: attrib + type: System.Int32 + - id: value + type: System.Int32 + return: + type: System.Int32 + content.vb: Public Shared Function GetConfig(dpy As DisplayPtr, visual As XVisualInfoPtr, attrib As Integer, value As Integer) As Integer + overload: OpenTK.Graphics.Glx.Glx.GetConfig* + nameWithType.vb: Glx.GetConfig(DisplayPtr, XVisualInfoPtr, Integer, Integer) + fullName.vb: OpenTK.Graphics.Glx.Glx.GetConfig(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.XVisualInfoPtr, Integer, Integer) + name.vb: GetConfig(DisplayPtr, XVisualInfoPtr, Integer, Integer) +- uid: OpenTK.Graphics.Glx.Glx.GetFBConfigAttrib(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,System.Int32,System.Span{System.Int32}) + commentId: M:OpenTK.Graphics.Glx.Glx.GetFBConfigAttrib(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,System.Int32,System.Span{System.Int32}) + id: GetFBConfigAttrib(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,System.Int32,System.Span{System.Int32}) + parent: OpenTK.Graphics.Glx.Glx + langs: + - csharp + - vb + name: GetFBConfigAttrib(DisplayPtr, GLXFBConfig, int, Span) + nameWithType: Glx.GetFBConfigAttrib(DisplayPtr, GLXFBConfig, int, Span) + fullName: OpenTK.Graphics.Glx.Glx.GetFBConfigAttrib(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfig, int, System.Span) + type: Method + source: + id: GetFBConfigAttrib + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 210 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Glx + summary: >- + [requires: v1.3] + + [entry point: glXGetFBConfigAttrib] + +
+ example: [] + syntax: + content: public static int GetFBConfigAttrib(DisplayPtr dpy, GLXFBConfig config, int attribute, Span value) + parameters: + - id: dpy + type: OpenTK.Graphics.Glx.DisplayPtr + - id: config + type: OpenTK.Graphics.Glx.GLXFBConfig + - id: attribute + type: System.Int32 + - id: value + type: System.Span{System.Int32} + return: + type: System.Int32 + content.vb: Public Shared Function GetFBConfigAttrib(dpy As DisplayPtr, config As GLXFBConfig, attribute As Integer, value As Span(Of Integer)) As Integer + overload: OpenTK.Graphics.Glx.Glx.GetFBConfigAttrib* + nameWithType.vb: Glx.GetFBConfigAttrib(DisplayPtr, GLXFBConfig, Integer, Span(Of Integer)) + fullName.vb: OpenTK.Graphics.Glx.Glx.GetFBConfigAttrib(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfig, Integer, System.Span(Of Integer)) + name.vb: GetFBConfigAttrib(DisplayPtr, GLXFBConfig, Integer, Span(Of Integer)) +- uid: OpenTK.Graphics.Glx.Glx.GetFBConfigAttrib(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,System.Int32,System.Int32[]) + commentId: M:OpenTK.Graphics.Glx.Glx.GetFBConfigAttrib(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,System.Int32,System.Int32[]) + id: GetFBConfigAttrib(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,System.Int32,System.Int32[]) + parent: OpenTK.Graphics.Glx.Glx + langs: + - csharp + - vb + name: GetFBConfigAttrib(DisplayPtr, GLXFBConfig, int, int[]) + nameWithType: Glx.GetFBConfigAttrib(DisplayPtr, GLXFBConfig, int, int[]) + fullName: OpenTK.Graphics.Glx.Glx.GetFBConfigAttrib(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfig, int, int[]) + type: Method + source: + id: GetFBConfigAttrib + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 220 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Glx + summary: >- + [requires: v1.3] + + [entry point: glXGetFBConfigAttrib] + +
+ example: [] + syntax: + content: public static int GetFBConfigAttrib(DisplayPtr dpy, GLXFBConfig config, int attribute, int[] value) + parameters: + - id: dpy + type: OpenTK.Graphics.Glx.DisplayPtr + - id: config + type: OpenTK.Graphics.Glx.GLXFBConfig + - id: attribute + type: System.Int32 + - id: value + type: System.Int32[] + return: + type: System.Int32 + content.vb: Public Shared Function GetFBConfigAttrib(dpy As DisplayPtr, config As GLXFBConfig, attribute As Integer, value As Integer()) As Integer + overload: OpenTK.Graphics.Glx.Glx.GetFBConfigAttrib* + nameWithType.vb: Glx.GetFBConfigAttrib(DisplayPtr, GLXFBConfig, Integer, Integer()) + fullName.vb: OpenTK.Graphics.Glx.Glx.GetFBConfigAttrib(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfig, Integer, Integer()) + name.vb: GetFBConfigAttrib(DisplayPtr, GLXFBConfig, Integer, Integer()) +- uid: OpenTK.Graphics.Glx.Glx.GetFBConfigAttrib(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,System.Int32,System.Int32@) + commentId: M:OpenTK.Graphics.Glx.Glx.GetFBConfigAttrib(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,System.Int32,System.Int32@) + id: GetFBConfigAttrib(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,System.Int32,System.Int32@) + parent: OpenTK.Graphics.Glx.Glx + langs: + - csharp + - vb + name: GetFBConfigAttrib(DisplayPtr, GLXFBConfig, int, ref int) + nameWithType: Glx.GetFBConfigAttrib(DisplayPtr, GLXFBConfig, int, ref int) + fullName: OpenTK.Graphics.Glx.Glx.GetFBConfigAttrib(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfig, int, ref int) + type: Method + source: + id: GetFBConfigAttrib + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 230 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Glx + summary: >- + [requires: v1.3] + + [entry point: glXGetFBConfigAttrib] + +
+ example: [] + syntax: + content: public static int GetFBConfigAttrib(DisplayPtr dpy, GLXFBConfig config, int attribute, ref int value) + parameters: + - id: dpy + type: OpenTK.Graphics.Glx.DisplayPtr + - id: config + type: OpenTK.Graphics.Glx.GLXFBConfig + - id: attribute + type: System.Int32 + - id: value + type: System.Int32 + return: + type: System.Int32 + content.vb: Public Shared Function GetFBConfigAttrib(dpy As DisplayPtr, config As GLXFBConfig, attribute As Integer, value As Integer) As Integer + overload: OpenTK.Graphics.Glx.Glx.GetFBConfigAttrib* + nameWithType.vb: Glx.GetFBConfigAttrib(DisplayPtr, GLXFBConfig, Integer, Integer) + fullName.vb: OpenTK.Graphics.Glx.Glx.GetFBConfigAttrib(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfig, Integer, Integer) + name.vb: GetFBConfigAttrib(DisplayPtr, GLXFBConfig, Integer, Integer) +- uid: OpenTK.Graphics.Glx.Glx.GetFBConfig(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Span{System.Int32}) + commentId: M:OpenTK.Graphics.Glx.Glx.GetFBConfig(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Span{System.Int32}) + id: GetFBConfig(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Span{System.Int32}) + parent: OpenTK.Graphics.Glx.Glx + langs: + - csharp + - vb + name: GetFBConfig(DisplayPtr, int, Span) + nameWithType: Glx.GetFBConfig(DisplayPtr, int, Span) + fullName: OpenTK.Graphics.Glx.Glx.GetFBConfig(OpenTK.Graphics.Glx.DisplayPtr, int, System.Span) + type: Method + source: + id: GetFBConfig + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 240 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Glx + summary: >- + [requires: v1.3] + + [entry point: glXGetFBConfigs] + +
+ example: [] + syntax: + content: public static GLXFBConfig* GetFBConfig(DisplayPtr dpy, int screen, Span nelements) + parameters: + - id: dpy + type: OpenTK.Graphics.Glx.DisplayPtr + - id: screen + type: System.Int32 + - id: nelements + type: System.Span{System.Int32} + return: + type: OpenTK.Graphics.Glx.GLXFBConfig* + content.vb: Public Shared Function GetFBConfig(dpy As DisplayPtr, screen As Integer, nelements As Span(Of Integer)) As GLXFBConfig* + overload: OpenTK.Graphics.Glx.Glx.GetFBConfig* + nameWithType.vb: Glx.GetFBConfig(DisplayPtr, Integer, Span(Of Integer)) + fullName.vb: OpenTK.Graphics.Glx.Glx.GetFBConfig(OpenTK.Graphics.Glx.DisplayPtr, Integer, System.Span(Of Integer)) + name.vb: GetFBConfig(DisplayPtr, Integer, Span(Of Integer)) +- uid: OpenTK.Graphics.Glx.Glx.GetFBConfig(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32[]) + commentId: M:OpenTK.Graphics.Glx.Glx.GetFBConfig(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32[]) + id: GetFBConfig(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32[]) + parent: OpenTK.Graphics.Glx.Glx + langs: + - csharp + - vb + name: GetFBConfig(DisplayPtr, int, int[]) + nameWithType: Glx.GetFBConfig(DisplayPtr, int, int[]) + fullName: OpenTK.Graphics.Glx.Glx.GetFBConfig(OpenTK.Graphics.Glx.DisplayPtr, int, int[]) + type: Method + source: + id: GetFBConfig + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 250 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Glx + summary: >- + [requires: v1.3] + + [entry point: glXGetFBConfigs] + +
+ example: [] + syntax: + content: public static GLXFBConfig* GetFBConfig(DisplayPtr dpy, int screen, int[] nelements) + parameters: + - id: dpy + type: OpenTK.Graphics.Glx.DisplayPtr + - id: screen + type: System.Int32 + - id: nelements + type: System.Int32[] + return: + type: OpenTK.Graphics.Glx.GLXFBConfig* + content.vb: Public Shared Function GetFBConfig(dpy As DisplayPtr, screen As Integer, nelements As Integer()) As GLXFBConfig* + overload: OpenTK.Graphics.Glx.Glx.GetFBConfig* + nameWithType.vb: Glx.GetFBConfig(DisplayPtr, Integer, Integer()) + fullName.vb: OpenTK.Graphics.Glx.Glx.GetFBConfig(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer()) + name.vb: GetFBConfig(DisplayPtr, Integer, Integer()) +- uid: OpenTK.Graphics.Glx.Glx.GetFBConfig(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32@) + commentId: M:OpenTK.Graphics.Glx.Glx.GetFBConfig(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32@) + id: GetFBConfig(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32@) + parent: OpenTK.Graphics.Glx.Glx + langs: + - csharp + - vb + name: GetFBConfig(DisplayPtr, int, ref int) + nameWithType: Glx.GetFBConfig(DisplayPtr, int, ref int) + fullName: OpenTK.Graphics.Glx.Glx.GetFBConfig(OpenTK.Graphics.Glx.DisplayPtr, int, ref int) + type: Method + source: + id: GetFBConfig + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 260 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Glx + summary: >- + [requires: v1.3] + + [entry point: glXGetFBConfigs] + +
+ example: [] + syntax: + content: public static GLXFBConfig* GetFBConfig(DisplayPtr dpy, int screen, ref int nelements) + parameters: + - id: dpy + type: OpenTK.Graphics.Glx.DisplayPtr + - id: screen + type: System.Int32 + - id: nelements + type: System.Int32 + return: + type: OpenTK.Graphics.Glx.GLXFBConfig* + content.vb: Public Shared Function GetFBConfig(dpy As DisplayPtr, screen As Integer, nelements As Integer) As GLXFBConfig* + overload: OpenTK.Graphics.Glx.Glx.GetFBConfig* + nameWithType.vb: Glx.GetFBConfig(DisplayPtr, Integer, Integer) + fullName.vb: OpenTK.Graphics.Glx.Glx.GetFBConfig(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer) + name.vb: GetFBConfig(DisplayPtr, Integer, Integer) +- uid: OpenTK.Graphics.Glx.Glx.GetProcAddress(System.ReadOnlySpan{System.Byte}) + commentId: M:OpenTK.Graphics.Glx.Glx.GetProcAddress(System.ReadOnlySpan{System.Byte}) + id: GetProcAddress(System.ReadOnlySpan{System.Byte}) + parent: OpenTK.Graphics.Glx.Glx + langs: + - csharp + - vb + name: GetProcAddress(ReadOnlySpan) + nameWithType: Glx.GetProcAddress(ReadOnlySpan) + fullName: OpenTK.Graphics.Glx.Glx.GetProcAddress(System.ReadOnlySpan) + type: Method + source: + id: GetProcAddress + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 270 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Glx + summary: >- + [requires: v1.4] + + [entry point: glXGetProcAddress] + +
+ example: [] + syntax: + content: public static nint GetProcAddress(ReadOnlySpan procName) + parameters: + - id: procName + type: System.ReadOnlySpan{System.Byte} + return: + type: System.IntPtr + content.vb: Public Shared Function GetProcAddress(procName As ReadOnlySpan(Of Byte)) As IntPtr + overload: OpenTK.Graphics.Glx.Glx.GetProcAddress* + nameWithType.vb: Glx.GetProcAddress(ReadOnlySpan(Of Byte)) + fullName.vb: OpenTK.Graphics.Glx.Glx.GetProcAddress(System.ReadOnlySpan(Of Byte)) + name.vb: GetProcAddress(ReadOnlySpan(Of Byte)) +- uid: OpenTK.Graphics.Glx.Glx.GetProcAddress(System.Byte[]) + commentId: M:OpenTK.Graphics.Glx.Glx.GetProcAddress(System.Byte[]) + id: GetProcAddress(System.Byte[]) + parent: OpenTK.Graphics.Glx.Glx + langs: + - csharp + - vb + name: GetProcAddress(byte[]) + nameWithType: Glx.GetProcAddress(byte[]) + fullName: OpenTK.Graphics.Glx.Glx.GetProcAddress(byte[]) + type: Method + source: + id: GetProcAddress + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 280 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Glx + summary: >- + [requires: v1.4] + + [entry point: glXGetProcAddress] + +
+ example: [] + syntax: + content: public static nint GetProcAddress(byte[] procName) + parameters: + - id: procName + type: System.Byte[] + return: + type: System.IntPtr + content.vb: Public Shared Function GetProcAddress(procName As Byte()) As IntPtr + overload: OpenTK.Graphics.Glx.Glx.GetProcAddress* + nameWithType.vb: Glx.GetProcAddress(Byte()) + fullName.vb: OpenTK.Graphics.Glx.Glx.GetProcAddress(Byte()) + name.vb: GetProcAddress(Byte()) +- uid: OpenTK.Graphics.Glx.Glx.GetProcAddress(System.Byte@) + commentId: M:OpenTK.Graphics.Glx.Glx.GetProcAddress(System.Byte@) + id: GetProcAddress(System.Byte@) + parent: OpenTK.Graphics.Glx.Glx + langs: + - csharp + - vb + name: GetProcAddress(in byte) + nameWithType: Glx.GetProcAddress(in byte) + fullName: OpenTK.Graphics.Glx.Glx.GetProcAddress(in byte) + type: Method + source: + id: GetProcAddress + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 290 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Glx + summary: >- + [requires: v1.4] + + [entry point: glXGetProcAddress] + +
+ example: [] + syntax: + content: public static nint GetProcAddress(in byte procName) + parameters: + - id: procName + type: System.Byte + return: + type: System.IntPtr + content.vb: Public Shared Function GetProcAddress(procName As Byte) As IntPtr + overload: OpenTK.Graphics.Glx.Glx.GetProcAddress* + nameWithType.vb: Glx.GetProcAddress(Byte) + fullName.vb: OpenTK.Graphics.Glx.Glx.GetProcAddress(Byte) + name.vb: GetProcAddress(Byte) +- uid: OpenTK.Graphics.Glx.Glx.GetSelectedEvent(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Span{System.UInt64}) + commentId: M:OpenTK.Graphics.Glx.Glx.GetSelectedEvent(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Span{System.UInt64}) + id: GetSelectedEvent(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Span{System.UInt64}) + parent: OpenTK.Graphics.Glx.Glx + langs: + - csharp + - vb + name: GetSelectedEvent(DisplayPtr, GLXDrawable, Span) + nameWithType: Glx.GetSelectedEvent(DisplayPtr, GLXDrawable, Span) + fullName: OpenTK.Graphics.Glx.Glx.GetSelectedEvent(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, System.Span) + type: Method + source: + id: GetSelectedEvent + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 300 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Glx + summary: >- + [requires: v1.3] + + [entry point: glXGetSelectedEvent] + +
+ example: [] + syntax: + content: public static void GetSelectedEvent(DisplayPtr dpy, GLXDrawable draw, Span event_mask) + parameters: + - id: dpy + type: OpenTK.Graphics.Glx.DisplayPtr + - id: draw + type: OpenTK.Graphics.Glx.GLXDrawable + - id: event_mask + type: System.Span{System.UInt64} + content.vb: Public Shared Sub GetSelectedEvent(dpy As DisplayPtr, draw As GLXDrawable, event_mask As Span(Of ULong)) + overload: OpenTK.Graphics.Glx.Glx.GetSelectedEvent* + nameWithType.vb: Glx.GetSelectedEvent(DisplayPtr, GLXDrawable, Span(Of ULong)) + fullName.vb: OpenTK.Graphics.Glx.Glx.GetSelectedEvent(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, System.Span(Of ULong)) + name.vb: GetSelectedEvent(DisplayPtr, GLXDrawable, Span(Of ULong)) +- uid: OpenTK.Graphics.Glx.Glx.GetSelectedEvent(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.UInt64[]) + commentId: M:OpenTK.Graphics.Glx.Glx.GetSelectedEvent(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.UInt64[]) + id: GetSelectedEvent(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.UInt64[]) + parent: OpenTK.Graphics.Glx.Glx + langs: + - csharp + - vb + name: GetSelectedEvent(DisplayPtr, GLXDrawable, ulong[]) + nameWithType: Glx.GetSelectedEvent(DisplayPtr, GLXDrawable, ulong[]) + fullName: OpenTK.Graphics.Glx.Glx.GetSelectedEvent(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, ulong[]) + type: Method + source: + id: GetSelectedEvent + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 308 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Glx + summary: >- + [requires: v1.3] + + [entry point: glXGetSelectedEvent] + +
+ example: [] + syntax: + content: public static void GetSelectedEvent(DisplayPtr dpy, GLXDrawable draw, ulong[] event_mask) + parameters: + - id: dpy + type: OpenTK.Graphics.Glx.DisplayPtr + - id: draw + type: OpenTK.Graphics.Glx.GLXDrawable + - id: event_mask + type: System.UInt64[] + content.vb: Public Shared Sub GetSelectedEvent(dpy As DisplayPtr, draw As GLXDrawable, event_mask As ULong()) + overload: OpenTK.Graphics.Glx.Glx.GetSelectedEvent* + nameWithType.vb: Glx.GetSelectedEvent(DisplayPtr, GLXDrawable, ULong()) + fullName.vb: OpenTK.Graphics.Glx.Glx.GetSelectedEvent(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, ULong()) + name.vb: GetSelectedEvent(DisplayPtr, GLXDrawable, ULong()) +- uid: OpenTK.Graphics.Glx.Glx.GetSelectedEvent(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.UInt64@) + commentId: M:OpenTK.Graphics.Glx.Glx.GetSelectedEvent(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.UInt64@) + id: GetSelectedEvent(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.UInt64@) + parent: OpenTK.Graphics.Glx.Glx + langs: + - csharp + - vb + name: GetSelectedEvent(DisplayPtr, GLXDrawable, ref ulong) + nameWithType: Glx.GetSelectedEvent(DisplayPtr, GLXDrawable, ref ulong) + fullName: OpenTK.Graphics.Glx.Glx.GetSelectedEvent(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, ref ulong) + type: Method + source: + id: GetSelectedEvent + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 316 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Glx + summary: >- + [requires: v1.3] + + [entry point: glXGetSelectedEvent] + +
+ example: [] + syntax: + content: public static void GetSelectedEvent(DisplayPtr dpy, GLXDrawable draw, ref ulong event_mask) + parameters: + - id: dpy + type: OpenTK.Graphics.Glx.DisplayPtr + - id: draw type: OpenTK.Graphics.Glx.GLXDrawable - id: event_mask type: System.UInt64 @@ -2026,6 +2873,92 @@ items: nameWithType.vb: Glx.GetSelectedEvent(DisplayPtr, GLXDrawable, ULong) fullName.vb: OpenTK.Graphics.Glx.Glx.GetSelectedEvent(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, ULong) name.vb: GetSelectedEvent(DisplayPtr, GLXDrawable, ULong) +- uid: OpenTK.Graphics.Glx.Glx.QueryContext(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext,System.Int32,System.Span{System.Int32}) + commentId: M:OpenTK.Graphics.Glx.Glx.QueryContext(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext,System.Int32,System.Span{System.Int32}) + id: QueryContext(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext,System.Int32,System.Span{System.Int32}) + parent: OpenTK.Graphics.Glx.Glx + langs: + - csharp + - vb + name: QueryContext(DisplayPtr, GLXContext, int, Span) + nameWithType: Glx.QueryContext(DisplayPtr, GLXContext, int, Span) + fullName: OpenTK.Graphics.Glx.Glx.QueryContext(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXContext, int, System.Span) + type: Method + source: + id: QueryContext + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 324 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Glx + summary: >- + [requires: v1.3] + + [entry point: glXQueryContext] + +
+ example: [] + syntax: + content: public static int QueryContext(DisplayPtr dpy, GLXContext ctx, int attribute, Span value) + parameters: + - id: dpy + type: OpenTK.Graphics.Glx.DisplayPtr + - id: ctx + type: OpenTK.Graphics.Glx.GLXContext + - id: attribute + type: System.Int32 + - id: value + type: System.Span{System.Int32} + return: + type: System.Int32 + content.vb: Public Shared Function QueryContext(dpy As DisplayPtr, ctx As GLXContext, attribute As Integer, value As Span(Of Integer)) As Integer + overload: OpenTK.Graphics.Glx.Glx.QueryContext* + nameWithType.vb: Glx.QueryContext(DisplayPtr, GLXContext, Integer, Span(Of Integer)) + fullName.vb: OpenTK.Graphics.Glx.Glx.QueryContext(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXContext, Integer, System.Span(Of Integer)) + name.vb: QueryContext(DisplayPtr, GLXContext, Integer, Span(Of Integer)) +- uid: OpenTK.Graphics.Glx.Glx.QueryContext(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext,System.Int32,System.Int32[]) + commentId: M:OpenTK.Graphics.Glx.Glx.QueryContext(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext,System.Int32,System.Int32[]) + id: QueryContext(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext,System.Int32,System.Int32[]) + parent: OpenTK.Graphics.Glx.Glx + langs: + - csharp + - vb + name: QueryContext(DisplayPtr, GLXContext, int, int[]) + nameWithType: Glx.QueryContext(DisplayPtr, GLXContext, int, int[]) + fullName: OpenTK.Graphics.Glx.Glx.QueryContext(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXContext, int, int[]) + type: Method + source: + id: QueryContext + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 334 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Glx + summary: >- + [requires: v1.3] + + [entry point: glXQueryContext] + +
+ example: [] + syntax: + content: public static int QueryContext(DisplayPtr dpy, GLXContext ctx, int attribute, int[] value) + parameters: + - id: dpy + type: OpenTK.Graphics.Glx.DisplayPtr + - id: ctx + type: OpenTK.Graphics.Glx.GLXContext + - id: attribute + type: System.Int32 + - id: value + type: System.Int32[] + return: + type: System.Int32 + content.vb: Public Shared Function QueryContext(dpy As DisplayPtr, ctx As GLXContext, attribute As Integer, value As Integer()) As Integer + overload: OpenTK.Graphics.Glx.Glx.QueryContext* + nameWithType.vb: Glx.QueryContext(DisplayPtr, GLXContext, Integer, Integer()) + fullName.vb: OpenTK.Graphics.Glx.Glx.QueryContext(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXContext, Integer, Integer()) + name.vb: QueryContext(DisplayPtr, GLXContext, Integer, Integer()) - uid: OpenTK.Graphics.Glx.Glx.QueryContext(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext,System.Int32,System.Int32@) commentId: M:OpenTK.Graphics.Glx.Glx.QueryContext(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext,System.Int32,System.Int32@) id: QueryContext(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext,System.Int32,System.Int32@) @@ -2038,86 +2971,242 @@ items: fullName: OpenTK.Graphics.Glx.Glx.QueryContext(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXContext, int, ref int) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: QueryContext - path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 122 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 344 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Glx + summary: >- + [requires: v1.3] + + [entry point: glXQueryContext] + +
+ example: [] + syntax: + content: public static int QueryContext(DisplayPtr dpy, GLXContext ctx, int attribute, ref int value) + parameters: + - id: dpy + type: OpenTK.Graphics.Glx.DisplayPtr + - id: ctx + type: OpenTK.Graphics.Glx.GLXContext + - id: attribute + type: System.Int32 + - id: value + type: System.Int32 + return: + type: System.Int32 + content.vb: Public Shared Function QueryContext(dpy As DisplayPtr, ctx As GLXContext, attribute As Integer, value As Integer) As Integer + overload: OpenTK.Graphics.Glx.Glx.QueryContext* + nameWithType.vb: Glx.QueryContext(DisplayPtr, GLXContext, Integer, Integer) + fullName.vb: OpenTK.Graphics.Glx.Glx.QueryContext(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXContext, Integer, Integer) + name.vb: QueryContext(DisplayPtr, GLXContext, Integer, Integer) +- uid: OpenTK.Graphics.Glx.Glx.QueryDrawable(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32,System.Span{System.UInt32}) + commentId: M:OpenTK.Graphics.Glx.Glx.QueryDrawable(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32,System.Span{System.UInt32}) + id: QueryDrawable(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32,System.Span{System.UInt32}) + parent: OpenTK.Graphics.Glx.Glx + langs: + - csharp + - vb + name: QueryDrawable(DisplayPtr, GLXDrawable, int, Span) + nameWithType: Glx.QueryDrawable(DisplayPtr, GLXDrawable, int, Span) + fullName: OpenTK.Graphics.Glx.Glx.QueryDrawable(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, int, System.Span) + type: Method + source: + id: QueryDrawable + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 354 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Glx + summary: >- + [requires: v1.3] + + [entry point: glXQueryDrawable] + +
+ example: [] + syntax: + content: public static void QueryDrawable(DisplayPtr dpy, GLXDrawable draw, int attribute, Span value) + parameters: + - id: dpy + type: OpenTK.Graphics.Glx.DisplayPtr + - id: draw + type: OpenTK.Graphics.Glx.GLXDrawable + - id: attribute + type: System.Int32 + - id: value + type: System.Span{System.UInt32} + content.vb: Public Shared Sub QueryDrawable(dpy As DisplayPtr, draw As GLXDrawable, attribute As Integer, value As Span(Of UInteger)) + overload: OpenTK.Graphics.Glx.Glx.QueryDrawable* + nameWithType.vb: Glx.QueryDrawable(DisplayPtr, GLXDrawable, Integer, Span(Of UInteger)) + fullName.vb: OpenTK.Graphics.Glx.Glx.QueryDrawable(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, Integer, System.Span(Of UInteger)) + name.vb: QueryDrawable(DisplayPtr, GLXDrawable, Integer, Span(Of UInteger)) +- uid: OpenTK.Graphics.Glx.Glx.QueryDrawable(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32,System.UInt32[]) + commentId: M:OpenTK.Graphics.Glx.Glx.QueryDrawable(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32,System.UInt32[]) + id: QueryDrawable(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32,System.UInt32[]) + parent: OpenTK.Graphics.Glx.Glx + langs: + - csharp + - vb + name: QueryDrawable(DisplayPtr, GLXDrawable, int, uint[]) + nameWithType: Glx.QueryDrawable(DisplayPtr, GLXDrawable, int, uint[]) + fullName: OpenTK.Graphics.Glx.Glx.QueryDrawable(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, int, uint[]) + type: Method + source: + id: QueryDrawable + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 362 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Glx + summary: >- + [requires: v1.3] + + [entry point: glXQueryDrawable] + +
+ example: [] + syntax: + content: public static void QueryDrawable(DisplayPtr dpy, GLXDrawable draw, int attribute, uint[] value) + parameters: + - id: dpy + type: OpenTK.Graphics.Glx.DisplayPtr + - id: draw + type: OpenTK.Graphics.Glx.GLXDrawable + - id: attribute + type: System.Int32 + - id: value + type: System.UInt32[] + content.vb: Public Shared Sub QueryDrawable(dpy As DisplayPtr, draw As GLXDrawable, attribute As Integer, value As UInteger()) + overload: OpenTK.Graphics.Glx.Glx.QueryDrawable* + nameWithType.vb: Glx.QueryDrawable(DisplayPtr, GLXDrawable, Integer, UInteger()) + fullName.vb: OpenTK.Graphics.Glx.Glx.QueryDrawable(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, Integer, UInteger()) + name.vb: QueryDrawable(DisplayPtr, GLXDrawable, Integer, UInteger()) +- uid: OpenTK.Graphics.Glx.Glx.QueryDrawable(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32,System.UInt32@) + commentId: M:OpenTK.Graphics.Glx.Glx.QueryDrawable(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32,System.UInt32@) + id: QueryDrawable(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32,System.UInt32@) + parent: OpenTK.Graphics.Glx.Glx + langs: + - csharp + - vb + name: QueryDrawable(DisplayPtr, GLXDrawable, int, ref uint) + nameWithType: Glx.QueryDrawable(DisplayPtr, GLXDrawable, int, ref uint) + fullName: OpenTK.Graphics.Glx.Glx.QueryDrawable(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, int, ref uint) + type: Method + source: + id: QueryDrawable + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 370 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Glx + summary: >- + [requires: v1.3] + + [entry point: glXQueryDrawable] + +
+ example: [] + syntax: + content: public static void QueryDrawable(DisplayPtr dpy, GLXDrawable draw, int attribute, ref uint value) + parameters: + - id: dpy + type: OpenTK.Graphics.Glx.DisplayPtr + - id: draw + type: OpenTK.Graphics.Glx.GLXDrawable + - id: attribute + type: System.Int32 + - id: value + type: System.UInt32 + content.vb: Public Shared Sub QueryDrawable(dpy As DisplayPtr, draw As GLXDrawable, attribute As Integer, value As UInteger) + overload: OpenTK.Graphics.Glx.Glx.QueryDrawable* + nameWithType.vb: Glx.QueryDrawable(DisplayPtr, GLXDrawable, Integer, UInteger) + fullName.vb: OpenTK.Graphics.Glx.Glx.QueryDrawable(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, Integer, UInteger) + name.vb: QueryDrawable(DisplayPtr, GLXDrawable, Integer, UInteger) +- uid: OpenTK.Graphics.Glx.Glx.QueryExtension(OpenTK.Graphics.Glx.DisplayPtr,System.Span{System.Int32},System.Span{System.Int32}) + commentId: M:OpenTK.Graphics.Glx.Glx.QueryExtension(OpenTK.Graphics.Glx.DisplayPtr,System.Span{System.Int32},System.Span{System.Int32}) + id: QueryExtension(OpenTK.Graphics.Glx.DisplayPtr,System.Span{System.Int32},System.Span{System.Int32}) + parent: OpenTK.Graphics.Glx.Glx + langs: + - csharp + - vb + name: QueryExtension(DisplayPtr, Span, Span) + nameWithType: Glx.QueryExtension(DisplayPtr, Span, Span) + fullName: OpenTK.Graphics.Glx.Glx.QueryExtension(OpenTK.Graphics.Glx.DisplayPtr, System.Span, System.Span) + type: Method + source: + id: QueryExtension + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 378 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx summary: >- - [requires: v1.3] + [requires: v1.0] - [entry point: glXQueryContext] + [entry point: glXQueryExtension]
example: [] syntax: - content: public static int QueryContext(DisplayPtr dpy, GLXContext ctx, int attribute, ref int value) + content: public static bool QueryExtension(DisplayPtr dpy, Span errorb, Span @event) parameters: - id: dpy type: OpenTK.Graphics.Glx.DisplayPtr - - id: ctx - type: OpenTK.Graphics.Glx.GLXContext - - id: attribute - type: System.Int32 - - id: value - type: System.Int32 + - id: errorb + type: System.Span{System.Int32} + - id: event + type: System.Span{System.Int32} return: - type: System.Int32 - content.vb: Public Shared Function QueryContext(dpy As DisplayPtr, ctx As GLXContext, attribute As Integer, value As Integer) As Integer - overload: OpenTK.Graphics.Glx.Glx.QueryContext* - nameWithType.vb: Glx.QueryContext(DisplayPtr, GLXContext, Integer, Integer) - fullName.vb: OpenTK.Graphics.Glx.Glx.QueryContext(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXContext, Integer, Integer) - name.vb: QueryContext(DisplayPtr, GLXContext, Integer, Integer) -- uid: OpenTK.Graphics.Glx.Glx.QueryDrawable(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32,System.UInt32@) - commentId: M:OpenTK.Graphics.Glx.Glx.QueryDrawable(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32,System.UInt32@) - id: QueryDrawable(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32,System.UInt32@) + type: System.Boolean + content.vb: Public Shared Function QueryExtension(dpy As DisplayPtr, errorb As Span(Of Integer), [event] As Span(Of Integer)) As Boolean + overload: OpenTK.Graphics.Glx.Glx.QueryExtension* + nameWithType.vb: Glx.QueryExtension(DisplayPtr, Span(Of Integer), Span(Of Integer)) + fullName.vb: OpenTK.Graphics.Glx.Glx.QueryExtension(OpenTK.Graphics.Glx.DisplayPtr, System.Span(Of Integer), System.Span(Of Integer)) + name.vb: QueryExtension(DisplayPtr, Span(Of Integer), Span(Of Integer)) +- uid: OpenTK.Graphics.Glx.Glx.QueryExtension(OpenTK.Graphics.Glx.DisplayPtr,System.Int32[],System.Int32[]) + commentId: M:OpenTK.Graphics.Glx.Glx.QueryExtension(OpenTK.Graphics.Glx.DisplayPtr,System.Int32[],System.Int32[]) + id: QueryExtension(OpenTK.Graphics.Glx.DisplayPtr,System.Int32[],System.Int32[]) parent: OpenTK.Graphics.Glx.Glx langs: - csharp - vb - name: QueryDrawable(DisplayPtr, GLXDrawable, int, ref uint) - nameWithType: Glx.QueryDrawable(DisplayPtr, GLXDrawable, int, ref uint) - fullName: OpenTK.Graphics.Glx.Glx.QueryDrawable(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, int, ref uint) + name: QueryExtension(DisplayPtr, int[], int[]) + nameWithType: Glx.QueryExtension(DisplayPtr, int[], int[]) + fullName: OpenTK.Graphics.Glx.Glx.QueryExtension(OpenTK.Graphics.Glx.DisplayPtr, int[], int[]) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: QueryDrawable - path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 132 + id: QueryExtension + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 391 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx summary: >- - [requires: v1.3] + [requires: v1.0] - [entry point: glXQueryDrawable] + [entry point: glXQueryExtension]
example: [] syntax: - content: public static void QueryDrawable(DisplayPtr dpy, GLXDrawable draw, int attribute, ref uint value) + content: public static bool QueryExtension(DisplayPtr dpy, int[] errorb, int[] @event) parameters: - id: dpy type: OpenTK.Graphics.Glx.DisplayPtr - - id: draw - type: OpenTK.Graphics.Glx.GLXDrawable - - id: attribute - type: System.Int32 - - id: value - type: System.UInt32 - content.vb: Public Shared Sub QueryDrawable(dpy As DisplayPtr, draw As GLXDrawable, attribute As Integer, value As UInteger) - overload: OpenTK.Graphics.Glx.Glx.QueryDrawable* - nameWithType.vb: Glx.QueryDrawable(DisplayPtr, GLXDrawable, Integer, UInteger) - fullName.vb: OpenTK.Graphics.Glx.Glx.QueryDrawable(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, Integer, UInteger) - name.vb: QueryDrawable(DisplayPtr, GLXDrawable, Integer, UInteger) + - id: errorb + type: System.Int32[] + - id: event + type: System.Int32[] + return: + type: System.Boolean + content.vb: Public Shared Function QueryExtension(dpy As DisplayPtr, errorb As Integer(), [event] As Integer()) As Boolean + overload: OpenTK.Graphics.Glx.Glx.QueryExtension* + nameWithType.vb: Glx.QueryExtension(DisplayPtr, Integer(), Integer()) + fullName.vb: OpenTK.Graphics.Glx.Glx.QueryExtension(OpenTK.Graphics.Glx.DisplayPtr, Integer(), Integer()) + name.vb: QueryExtension(DisplayPtr, Integer(), Integer()) - uid: OpenTK.Graphics.Glx.Glx.QueryExtension(OpenTK.Graphics.Glx.DisplayPtr,System.Int32@,System.Int32@) commentId: M:OpenTK.Graphics.Glx.Glx.QueryExtension(OpenTK.Graphics.Glx.DisplayPtr,System.Int32@,System.Int32@) id: QueryExtension(OpenTK.Graphics.Glx.DisplayPtr,System.Int32@,System.Int32@) @@ -2130,13 +3219,9 @@ items: fullName: OpenTK.Graphics.Glx.Glx.QueryExtension(OpenTK.Graphics.Glx.DisplayPtr, ref int, ref int) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: QueryExtension - path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 140 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 404 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -2175,13 +3260,9 @@ items: fullName: OpenTK.Graphics.Glx.Glx.QueryExtensionsString(OpenTK.Graphics.Glx.DisplayPtr, int) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: QueryExtensionsString - path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 151 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 415 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -2212,13 +3293,9 @@ items: fullName: OpenTK.Graphics.Glx.Glx.QueryServerString(OpenTK.Graphics.Glx.DisplayPtr, int, int) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: QueryServerString - path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 160 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 424 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -2239,6 +3316,88 @@ items: nameWithType.vb: Glx.QueryServerString(DisplayPtr, Integer, Integer) fullName.vb: OpenTK.Graphics.Glx.Glx.QueryServerString(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer) name.vb: QueryServerString(DisplayPtr, Integer, Integer) +- uid: OpenTK.Graphics.Glx.Glx.QueryVersion(OpenTK.Graphics.Glx.DisplayPtr,System.Span{System.Int32},System.Span{System.Int32}) + commentId: M:OpenTK.Graphics.Glx.Glx.QueryVersion(OpenTK.Graphics.Glx.DisplayPtr,System.Span{System.Int32},System.Span{System.Int32}) + id: QueryVersion(OpenTK.Graphics.Glx.DisplayPtr,System.Span{System.Int32},System.Span{System.Int32}) + parent: OpenTK.Graphics.Glx.Glx + langs: + - csharp + - vb + name: QueryVersion(DisplayPtr, Span, Span) + nameWithType: Glx.QueryVersion(DisplayPtr, Span, Span) + fullName: OpenTK.Graphics.Glx.Glx.QueryVersion(OpenTK.Graphics.Glx.DisplayPtr, System.Span, System.Span) + type: Method + source: + id: QueryVersion + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 433 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Glx + summary: >- + [requires: v1.0] + + [entry point: glXQueryVersion] + +
+ example: [] + syntax: + content: public static bool QueryVersion(DisplayPtr dpy, Span maj, Span min) + parameters: + - id: dpy + type: OpenTK.Graphics.Glx.DisplayPtr + - id: maj + type: System.Span{System.Int32} + - id: min + type: System.Span{System.Int32} + return: + type: System.Boolean + content.vb: Public Shared Function QueryVersion(dpy As DisplayPtr, maj As Span(Of Integer), min As Span(Of Integer)) As Boolean + overload: OpenTK.Graphics.Glx.Glx.QueryVersion* + nameWithType.vb: Glx.QueryVersion(DisplayPtr, Span(Of Integer), Span(Of Integer)) + fullName.vb: OpenTK.Graphics.Glx.Glx.QueryVersion(OpenTK.Graphics.Glx.DisplayPtr, System.Span(Of Integer), System.Span(Of Integer)) + name.vb: QueryVersion(DisplayPtr, Span(Of Integer), Span(Of Integer)) +- uid: OpenTK.Graphics.Glx.Glx.QueryVersion(OpenTK.Graphics.Glx.DisplayPtr,System.Int32[],System.Int32[]) + commentId: M:OpenTK.Graphics.Glx.Glx.QueryVersion(OpenTK.Graphics.Glx.DisplayPtr,System.Int32[],System.Int32[]) + id: QueryVersion(OpenTK.Graphics.Glx.DisplayPtr,System.Int32[],System.Int32[]) + parent: OpenTK.Graphics.Glx.Glx + langs: + - csharp + - vb + name: QueryVersion(DisplayPtr, int[], int[]) + nameWithType: Glx.QueryVersion(DisplayPtr, int[], int[]) + fullName: OpenTK.Graphics.Glx.Glx.QueryVersion(OpenTK.Graphics.Glx.DisplayPtr, int[], int[]) + type: Method + source: + id: QueryVersion + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 446 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Glx + summary: >- + [requires: v1.0] + + [entry point: glXQueryVersion] + +
+ example: [] + syntax: + content: public static bool QueryVersion(DisplayPtr dpy, int[] maj, int[] min) + parameters: + - id: dpy + type: OpenTK.Graphics.Glx.DisplayPtr + - id: maj + type: System.Int32[] + - id: min + type: System.Int32[] + return: + type: System.Boolean + content.vb: Public Shared Function QueryVersion(dpy As DisplayPtr, maj As Integer(), min As Integer()) As Boolean + overload: OpenTK.Graphics.Glx.Glx.QueryVersion* + nameWithType.vb: Glx.QueryVersion(DisplayPtr, Integer(), Integer()) + fullName.vb: OpenTK.Graphics.Glx.Glx.QueryVersion(OpenTK.Graphics.Glx.DisplayPtr, Integer(), Integer()) + name.vb: QueryVersion(DisplayPtr, Integer(), Integer()) - uid: OpenTK.Graphics.Glx.Glx.QueryVersion(OpenTK.Graphics.Glx.DisplayPtr,System.Int32@,System.Int32@) commentId: M:OpenTK.Graphics.Glx.Glx.QueryVersion(OpenTK.Graphics.Glx.DisplayPtr,System.Int32@,System.Int32@) id: QueryVersion(OpenTK.Graphics.Glx.DisplayPtr,System.Int32@,System.Int32@) @@ -2251,13 +3410,9 @@ items: fullName: OpenTK.Graphics.Glx.Glx.QueryVersion(OpenTK.Graphics.Glx.DisplayPtr, ref int, ref int) type: Method source: - remote: - path: src/OpenTK.Graphics/Glx/GLX.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: QueryVersion - path: opentk/src/OpenTK.Graphics/Glx/GLX.Overloads.cs - startLine: 169 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs + startLine: 459 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Glx @@ -3007,6 +4162,155 @@ references: name: WaitX nameWithType: Glx.WaitX fullName: OpenTK.Graphics.Glx.Glx.WaitX +- uid: System.ReadOnlySpan{System.Int32} + commentId: T:System.ReadOnlySpan{System.Int32} + parent: System + definition: System.ReadOnlySpan`1 + href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 + name: ReadOnlySpan + nameWithType: ReadOnlySpan + fullName: System.ReadOnlySpan + nameWithType.vb: ReadOnlySpan(Of Integer) + fullName.vb: System.ReadOnlySpan(Of Integer) + name.vb: ReadOnlySpan(Of Integer) + spec.csharp: + - uid: System.ReadOnlySpan`1 + name: ReadOnlySpan + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 + - name: < + - uid: System.Int32 + name: int + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: '>' + spec.vb: + - uid: System.ReadOnlySpan`1 + name: ReadOnlySpan + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 + - name: ( + - name: Of + - name: " " + - uid: System.Int32 + name: Integer + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ) +- uid: System.Span{System.Int32} + commentId: T:System.Span{System.Int32} + parent: System + definition: System.Span`1 + href: https://learn.microsoft.com/dotnet/api/system.span-1 + name: Span + nameWithType: Span + fullName: System.Span + nameWithType.vb: Span(Of Integer) + fullName.vb: System.Span(Of Integer) + name.vb: Span(Of Integer) + spec.csharp: + - uid: System.Span`1 + name: Span + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.span-1 + - name: < + - uid: System.Int32 + name: int + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: '>' + spec.vb: + - uid: System.Span`1 + name: Span + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.span-1 + - name: ( + - name: Of + - name: " " + - uid: System.Int32 + name: Integer + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ) +- uid: System.ReadOnlySpan`1 + commentId: T:System.ReadOnlySpan`1 + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 + name: ReadOnlySpan + nameWithType: ReadOnlySpan + fullName: System.ReadOnlySpan + nameWithType.vb: ReadOnlySpan(Of T) + fullName.vb: System.ReadOnlySpan(Of T) + name.vb: ReadOnlySpan(Of T) + spec.csharp: + - uid: System.ReadOnlySpan`1 + name: ReadOnlySpan + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 + - name: < + - name: T + - name: '>' + spec.vb: + - uid: System.ReadOnlySpan`1 + name: ReadOnlySpan + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 + - name: ( + - name: Of + - name: " " + - name: T + - name: ) +- uid: System.Span`1 + commentId: T:System.Span`1 + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.span-1 + name: Span + nameWithType: Span + fullName: System.Span + nameWithType.vb: Span(Of T) + fullName.vb: System.Span(Of T) + name.vb: Span(Of T) + spec.csharp: + - uid: System.Span`1 + name: Span + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.span-1 + - name: < + - name: T + - name: '>' + spec.vb: + - uid: System.Span`1 + name: Span + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.span-1 + - name: ( + - name: Of + - name: " " + - name: T + - name: ) +- uid: System.Int32[] + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + name: int[] + nameWithType: int[] + fullName: int[] + nameWithType.vb: Integer() + fullName.vb: Integer() + name.vb: Integer() + spec.csharp: + - uid: System.Int32 + name: int + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: '[' + - name: ']' + spec.vb: + - uid: System.Int32 + name: Integer + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ( + - name: ) - uid: OpenTK.Graphics.Glx.Glx.GetClientString* commentId: Overload:OpenTK.Graphics.Glx.Glx.GetClientString href: OpenTK.Graphics.Glx.Glx.html#OpenTK_Graphics_Glx_Glx_GetClientString_OpenTK_Graphics_Glx_DisplayPtr_System_Int32_ @@ -3026,10 +4330,68 @@ references: name.vb: String - uid: OpenTK.Graphics.Glx.Glx.GetFBConfig* commentId: Overload:OpenTK.Graphics.Glx.Glx.GetFBConfig - href: OpenTK.Graphics.Glx.Glx.html#OpenTK_Graphics_Glx_Glx_GetFBConfig_OpenTK_Graphics_Glx_DisplayPtr_System_Int32_System_Int32__ + href: OpenTK.Graphics.Glx.Glx.html#OpenTK_Graphics_Glx_Glx_GetFBConfig_OpenTK_Graphics_Glx_DisplayPtr_System_Int32_System_Span_System_Int32__ name: GetFBConfig nameWithType: Glx.GetFBConfig fullName: OpenTK.Graphics.Glx.Glx.GetFBConfig +- uid: System.ReadOnlySpan{System.Byte} + commentId: T:System.ReadOnlySpan{System.Byte} + parent: System + definition: System.ReadOnlySpan`1 + href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 + name: ReadOnlySpan + nameWithType: ReadOnlySpan + fullName: System.ReadOnlySpan + nameWithType.vb: ReadOnlySpan(Of Byte) + fullName.vb: System.ReadOnlySpan(Of Byte) + name.vb: ReadOnlySpan(Of Byte) + spec.csharp: + - uid: System.ReadOnlySpan`1 + name: ReadOnlySpan + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 + - name: < + - uid: System.Byte + name: byte + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.byte + - name: '>' + spec.vb: + - uid: System.ReadOnlySpan`1 + name: ReadOnlySpan + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 + - name: ( + - name: Of + - name: " " + - uid: System.Byte + name: Byte + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.byte + - name: ) +- uid: System.Byte[] + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.byte + name: byte[] + nameWithType: byte[] + fullName: byte[] + nameWithType.vb: Byte() + fullName.vb: Byte() + name.vb: Byte() + spec.csharp: + - uid: System.Byte + name: byte + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.byte + - name: '[' + - name: ']' + spec.vb: + - uid: System.Byte + name: Byte + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.byte + - name: ( + - name: ) - uid: System.Byte commentId: T:System.Byte parent: System @@ -3041,6 +4403,122 @@ references: nameWithType.vb: Byte fullName.vb: Byte name.vb: Byte +- uid: System.Span{System.UInt64} + commentId: T:System.Span{System.UInt64} + parent: System + definition: System.Span`1 + href: https://learn.microsoft.com/dotnet/api/system.span-1 + name: Span + nameWithType: Span + fullName: System.Span + nameWithType.vb: Span(Of ULong) + fullName.vb: System.Span(Of ULong) + name.vb: Span(Of ULong) + spec.csharp: + - uid: System.Span`1 + name: Span + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.span-1 + - name: < + - uid: System.UInt64 + name: ulong + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.uint64 + - name: '>' + spec.vb: + - uid: System.Span`1 + name: Span + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.span-1 + - name: ( + - name: Of + - name: " " + - uid: System.UInt64 + name: ULong + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.uint64 + - name: ) +- uid: System.UInt64[] + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.uint64 + name: ulong[] + nameWithType: ulong[] + fullName: ulong[] + nameWithType.vb: ULong() + fullName.vb: ULong() + name.vb: ULong() + spec.csharp: + - uid: System.UInt64 + name: ulong + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.uint64 + - name: '[' + - name: ']' + spec.vb: + - uid: System.UInt64 + name: ULong + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.uint64 + - name: ( + - name: ) +- uid: System.Span{System.UInt32} + commentId: T:System.Span{System.UInt32} + parent: System + definition: System.Span`1 + href: https://learn.microsoft.com/dotnet/api/system.span-1 + name: Span + nameWithType: Span + fullName: System.Span + nameWithType.vb: Span(Of UInteger) + fullName.vb: System.Span(Of UInteger) + name.vb: Span(Of UInteger) + spec.csharp: + - uid: System.Span`1 + name: Span + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.span-1 + - name: < + - uid: System.UInt32 + name: uint + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.uint32 + - name: '>' + spec.vb: + - uid: System.Span`1 + name: Span + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.span-1 + - name: ( + - name: Of + - name: " " + - uid: System.UInt32 + name: UInteger + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.uint32 + - name: ) +- uid: System.UInt32[] + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.uint32 + name: uint[] + nameWithType: uint[] + fullName: uint[] + nameWithType.vb: UInteger() + fullName.vb: UInteger() + name.vb: UInteger() + spec.csharp: + - uid: System.UInt32 + name: uint + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.uint32 + - name: '[' + - name: ']' + spec.vb: + - uid: System.UInt32 + name: UInteger + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.uint32 + - name: ( + - name: ) - uid: System.UInt32 commentId: T:System.UInt32 parent: System diff --git a/api/OpenTK.Graphics.Glx.GlxPointers.yml b/api/OpenTK.Graphics.Glx.GlxPointers.yml index 9b0411ed..c7999b6c 100644 --- a/api/OpenTK.Graphics.Glx.GlxPointers.yml +++ b/api/OpenTK.Graphics.Glx.GlxPointers.yml @@ -144,12 +144,8 @@ items: fullName: OpenTK.Graphics.Glx.GlxPointers type: Class source: - remote: - path: src/OpenTK.Graphics/GLX.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GlxPointers - path: opentk/src/OpenTK.Graphics/GLX.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs startLine: 8 assemblies: - OpenTK.Graphics @@ -181,12 +177,8 @@ items: fullName: OpenTK.Graphics.Glx.GlxPointers._glXBindChannelToWindowSGIX_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/GLX.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _glXBindChannelToWindowSGIX_fnptr - path: opentk/src/OpenTK.Graphics/GLX.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs startLine: 11 assemblies: - OpenTK.Graphics @@ -210,12 +202,8 @@ items: fullName: OpenTK.Graphics.Glx.GlxPointers._glXBindHyperpipeSGIX_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/GLX.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _glXBindHyperpipeSGIX_fnptr - path: opentk/src/OpenTK.Graphics/GLX.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs startLine: 20 assemblies: - OpenTK.Graphics @@ -239,12 +227,8 @@ items: fullName: OpenTK.Graphics.Glx.GlxPointers._glXBindSwapBarrierNV_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/GLX.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _glXBindSwapBarrierNV_fnptr - path: opentk/src/OpenTK.Graphics/GLX.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs startLine: 29 assemblies: - OpenTK.Graphics @@ -268,12 +252,8 @@ items: fullName: OpenTK.Graphics.Glx.GlxPointers._glXBindSwapBarrierSGIX_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/GLX.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _glXBindSwapBarrierSGIX_fnptr - path: opentk/src/OpenTK.Graphics/GLX.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs startLine: 38 assemblies: - OpenTK.Graphics @@ -297,12 +277,8 @@ items: fullName: OpenTK.Graphics.Glx.GlxPointers._glXBindTexImageEXT_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/GLX.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _glXBindTexImageEXT_fnptr - path: opentk/src/OpenTK.Graphics/GLX.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs startLine: 47 assemblies: - OpenTK.Graphics @@ -326,12 +302,8 @@ items: fullName: OpenTK.Graphics.Glx.GlxPointers._glXBindVideoCaptureDeviceNV_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/GLX.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _glXBindVideoCaptureDeviceNV_fnptr - path: opentk/src/OpenTK.Graphics/GLX.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs startLine: 56 assemblies: - OpenTK.Graphics @@ -355,12 +327,8 @@ items: fullName: OpenTK.Graphics.Glx.GlxPointers._glXBindVideoDeviceNV_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/GLX.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _glXBindVideoDeviceNV_fnptr - path: opentk/src/OpenTK.Graphics/GLX.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs startLine: 65 assemblies: - OpenTK.Graphics @@ -384,12 +352,8 @@ items: fullName: OpenTK.Graphics.Glx.GlxPointers._glXBindVideoImageNV_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/GLX.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _glXBindVideoImageNV_fnptr - path: opentk/src/OpenTK.Graphics/GLX.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs startLine: 74 assemblies: - OpenTK.Graphics @@ -413,12 +377,8 @@ items: fullName: OpenTK.Graphics.Glx.GlxPointers._glXBlitContextFramebufferAMD_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/GLX.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _glXBlitContextFramebufferAMD_fnptr - path: opentk/src/OpenTK.Graphics/GLX.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs startLine: 83 assemblies: - OpenTK.Graphics @@ -442,12 +402,8 @@ items: fullName: OpenTK.Graphics.Glx.GlxPointers._glXChannelRectSGIX_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/GLX.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _glXChannelRectSGIX_fnptr - path: opentk/src/OpenTK.Graphics/GLX.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs startLine: 92 assemblies: - OpenTK.Graphics @@ -471,12 +427,8 @@ items: fullName: OpenTK.Graphics.Glx.GlxPointers._glXChannelRectSyncSGIX_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/GLX.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _glXChannelRectSyncSGIX_fnptr - path: opentk/src/OpenTK.Graphics/GLX.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs startLine: 101 assemblies: - OpenTK.Graphics @@ -500,12 +452,8 @@ items: fullName: OpenTK.Graphics.Glx.GlxPointers._glXChooseFBConfig_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/GLX.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _glXChooseFBConfig_fnptr - path: opentk/src/OpenTK.Graphics/GLX.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs startLine: 110 assemblies: - OpenTK.Graphics @@ -529,12 +477,8 @@ items: fullName: OpenTK.Graphics.Glx.GlxPointers._glXChooseFBConfigSGIX_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/GLX.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _glXChooseFBConfigSGIX_fnptr - path: opentk/src/OpenTK.Graphics/GLX.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs startLine: 119 assemblies: - OpenTK.Graphics @@ -558,12 +502,8 @@ items: fullName: OpenTK.Graphics.Glx.GlxPointers._glXChooseVisual_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/GLX.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _glXChooseVisual_fnptr - path: opentk/src/OpenTK.Graphics/GLX.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs startLine: 128 assemblies: - OpenTK.Graphics @@ -587,12 +527,8 @@ items: fullName: OpenTK.Graphics.Glx.GlxPointers._glXCopyBufferSubDataNV_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/GLX.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _glXCopyBufferSubDataNV_fnptr - path: opentk/src/OpenTK.Graphics/GLX.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs startLine: 137 assemblies: - OpenTK.Graphics @@ -616,12 +552,8 @@ items: fullName: OpenTK.Graphics.Glx.GlxPointers._glXCopyContext_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/GLX.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _glXCopyContext_fnptr - path: opentk/src/OpenTK.Graphics/GLX.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs startLine: 146 assemblies: - OpenTK.Graphics @@ -645,12 +577,8 @@ items: fullName: OpenTK.Graphics.Glx.GlxPointers._glXCopyImageSubDataNV_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/GLX.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _glXCopyImageSubDataNV_fnptr - path: opentk/src/OpenTK.Graphics/GLX.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs startLine: 155 assemblies: - OpenTK.Graphics @@ -674,12 +602,8 @@ items: fullName: OpenTK.Graphics.Glx.GlxPointers._glXCopySubBufferMESA_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/GLX.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _glXCopySubBufferMESA_fnptr - path: opentk/src/OpenTK.Graphics/GLX.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs startLine: 164 assemblies: - OpenTK.Graphics @@ -703,12 +627,8 @@ items: fullName: OpenTK.Graphics.Glx.GlxPointers._glXCreateAssociatedContextAMD_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/GLX.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _glXCreateAssociatedContextAMD_fnptr - path: opentk/src/OpenTK.Graphics/GLX.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs startLine: 173 assemblies: - OpenTK.Graphics @@ -732,12 +652,8 @@ items: fullName: OpenTK.Graphics.Glx.GlxPointers._glXCreateAssociatedContextAttribsAMD_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/GLX.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _glXCreateAssociatedContextAttribsAMD_fnptr - path: opentk/src/OpenTK.Graphics/GLX.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs startLine: 182 assemblies: - OpenTK.Graphics @@ -761,12 +677,8 @@ items: fullName: OpenTK.Graphics.Glx.GlxPointers._glXCreateContext_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/GLX.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _glXCreateContext_fnptr - path: opentk/src/OpenTK.Graphics/GLX.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs startLine: 191 assemblies: - OpenTK.Graphics @@ -790,12 +702,8 @@ items: fullName: OpenTK.Graphics.Glx.GlxPointers._glXCreateContextAttribsARB_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/GLX.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _glXCreateContextAttribsARB_fnptr - path: opentk/src/OpenTK.Graphics/GLX.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs startLine: 200 assemblies: - OpenTK.Graphics @@ -819,12 +727,8 @@ items: fullName: OpenTK.Graphics.Glx.GlxPointers._glXCreateContextWithConfigSGIX_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/GLX.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _glXCreateContextWithConfigSGIX_fnptr - path: opentk/src/OpenTK.Graphics/GLX.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs startLine: 209 assemblies: - OpenTK.Graphics @@ -848,12 +752,8 @@ items: fullName: OpenTK.Graphics.Glx.GlxPointers._glXCreateGLXPbufferSGIX_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/GLX.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _glXCreateGLXPbufferSGIX_fnptr - path: opentk/src/OpenTK.Graphics/GLX.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs startLine: 218 assemblies: - OpenTK.Graphics @@ -877,12 +777,8 @@ items: fullName: OpenTK.Graphics.Glx.GlxPointers._glXCreateGLXPixmap_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/GLX.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _glXCreateGLXPixmap_fnptr - path: opentk/src/OpenTK.Graphics/GLX.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs startLine: 227 assemblies: - OpenTK.Graphics @@ -906,12 +802,8 @@ items: fullName: OpenTK.Graphics.Glx.GlxPointers._glXCreateGLXPixmapMESA_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/GLX.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _glXCreateGLXPixmapMESA_fnptr - path: opentk/src/OpenTK.Graphics/GLX.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs startLine: 236 assemblies: - OpenTK.Graphics @@ -935,12 +827,8 @@ items: fullName: OpenTK.Graphics.Glx.GlxPointers._glXCreateGLXPixmapWithConfigSGIX_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/GLX.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _glXCreateGLXPixmapWithConfigSGIX_fnptr - path: opentk/src/OpenTK.Graphics/GLX.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs startLine: 245 assemblies: - OpenTK.Graphics @@ -964,12 +852,8 @@ items: fullName: OpenTK.Graphics.Glx.GlxPointers._glXCreateNewContext_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/GLX.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _glXCreateNewContext_fnptr - path: opentk/src/OpenTK.Graphics/GLX.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs startLine: 254 assemblies: - OpenTK.Graphics @@ -993,12 +877,8 @@ items: fullName: OpenTK.Graphics.Glx.GlxPointers._glXCreatePbuffer_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/GLX.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _glXCreatePbuffer_fnptr - path: opentk/src/OpenTK.Graphics/GLX.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs startLine: 263 assemblies: - OpenTK.Graphics @@ -1022,12 +902,8 @@ items: fullName: OpenTK.Graphics.Glx.GlxPointers._glXCreatePixmap_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/GLX.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _glXCreatePixmap_fnptr - path: opentk/src/OpenTK.Graphics/GLX.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs startLine: 272 assemblies: - OpenTK.Graphics @@ -1051,12 +927,8 @@ items: fullName: OpenTK.Graphics.Glx.GlxPointers._glXCreateWindow_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/GLX.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _glXCreateWindow_fnptr - path: opentk/src/OpenTK.Graphics/GLX.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs startLine: 281 assemblies: - OpenTK.Graphics @@ -1080,12 +952,8 @@ items: fullName: OpenTK.Graphics.Glx.GlxPointers._glXCushionSGI_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/GLX.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _glXCushionSGI_fnptr - path: opentk/src/OpenTK.Graphics/GLX.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs startLine: 290 assemblies: - OpenTK.Graphics @@ -1109,12 +977,8 @@ items: fullName: OpenTK.Graphics.Glx.GlxPointers._glXDelayBeforeSwapNV_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/GLX.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _glXDelayBeforeSwapNV_fnptr - path: opentk/src/OpenTK.Graphics/GLX.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs startLine: 299 assemblies: - OpenTK.Graphics @@ -1138,12 +1002,8 @@ items: fullName: OpenTK.Graphics.Glx.GlxPointers._glXDeleteAssociatedContextAMD_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/GLX.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _glXDeleteAssociatedContextAMD_fnptr - path: opentk/src/OpenTK.Graphics/GLX.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs startLine: 308 assemblies: - OpenTK.Graphics @@ -1167,12 +1027,8 @@ items: fullName: OpenTK.Graphics.Glx.GlxPointers._glXDestroyContext_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/GLX.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _glXDestroyContext_fnptr - path: opentk/src/OpenTK.Graphics/GLX.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs startLine: 317 assemblies: - OpenTK.Graphics @@ -1196,12 +1052,8 @@ items: fullName: OpenTK.Graphics.Glx.GlxPointers._glXDestroyGLXPbufferSGIX_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/GLX.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _glXDestroyGLXPbufferSGIX_fnptr - path: opentk/src/OpenTK.Graphics/GLX.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs startLine: 326 assemblies: - OpenTK.Graphics @@ -1225,12 +1077,8 @@ items: fullName: OpenTK.Graphics.Glx.GlxPointers._glXDestroyGLXPixmap_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/GLX.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _glXDestroyGLXPixmap_fnptr - path: opentk/src/OpenTK.Graphics/GLX.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs startLine: 335 assemblies: - OpenTK.Graphics @@ -1254,12 +1102,8 @@ items: fullName: OpenTK.Graphics.Glx.GlxPointers._glXDestroyHyperpipeConfigSGIX_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/GLX.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _glXDestroyHyperpipeConfigSGIX_fnptr - path: opentk/src/OpenTK.Graphics/GLX.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs startLine: 344 assemblies: - OpenTK.Graphics @@ -1283,12 +1127,8 @@ items: fullName: OpenTK.Graphics.Glx.GlxPointers._glXDestroyPbuffer_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/GLX.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _glXDestroyPbuffer_fnptr - path: opentk/src/OpenTK.Graphics/GLX.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs startLine: 353 assemblies: - OpenTK.Graphics @@ -1312,12 +1152,8 @@ items: fullName: OpenTK.Graphics.Glx.GlxPointers._glXDestroyPixmap_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/GLX.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _glXDestroyPixmap_fnptr - path: opentk/src/OpenTK.Graphics/GLX.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs startLine: 362 assemblies: - OpenTK.Graphics @@ -1341,12 +1177,8 @@ items: fullName: OpenTK.Graphics.Glx.GlxPointers._glXDestroyWindow_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/GLX.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _glXDestroyWindow_fnptr - path: opentk/src/OpenTK.Graphics/GLX.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs startLine: 371 assemblies: - OpenTK.Graphics @@ -1370,12 +1202,8 @@ items: fullName: OpenTK.Graphics.Glx.GlxPointers._glXEnumerateVideoCaptureDevicesNV_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/GLX.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _glXEnumerateVideoCaptureDevicesNV_fnptr - path: opentk/src/OpenTK.Graphics/GLX.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs startLine: 380 assemblies: - OpenTK.Graphics @@ -1399,12 +1227,8 @@ items: fullName: OpenTK.Graphics.Glx.GlxPointers._glXEnumerateVideoDevicesNV_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/GLX.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _glXEnumerateVideoDevicesNV_fnptr - path: opentk/src/OpenTK.Graphics/GLX.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs startLine: 389 assemblies: - OpenTK.Graphics @@ -1428,12 +1252,8 @@ items: fullName: OpenTK.Graphics.Glx.GlxPointers._glXFreeContextEXT_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/GLX.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _glXFreeContextEXT_fnptr - path: opentk/src/OpenTK.Graphics/GLX.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs startLine: 398 assemblies: - OpenTK.Graphics @@ -1457,12 +1277,8 @@ items: fullName: OpenTK.Graphics.Glx.GlxPointers._glXGetAGPOffsetMESA_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/GLX.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _glXGetAGPOffsetMESA_fnptr - path: opentk/src/OpenTK.Graphics/GLX.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs startLine: 407 assemblies: - OpenTK.Graphics @@ -1486,12 +1302,8 @@ items: fullName: OpenTK.Graphics.Glx.GlxPointers._glXGetClientString_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/GLX.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _glXGetClientString_fnptr - path: opentk/src/OpenTK.Graphics/GLX.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs startLine: 416 assemblies: - OpenTK.Graphics @@ -1515,12 +1327,8 @@ items: fullName: OpenTK.Graphics.Glx.GlxPointers._glXGetConfig_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/GLX.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _glXGetConfig_fnptr - path: opentk/src/OpenTK.Graphics/GLX.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs startLine: 425 assemblies: - OpenTK.Graphics @@ -1544,12 +1352,8 @@ items: fullName: OpenTK.Graphics.Glx.GlxPointers._glXGetContextGPUIDAMD_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/GLX.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _glXGetContextGPUIDAMD_fnptr - path: opentk/src/OpenTK.Graphics/GLX.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs startLine: 434 assemblies: - OpenTK.Graphics @@ -1573,12 +1377,8 @@ items: fullName: OpenTK.Graphics.Glx.GlxPointers._glXGetContextIDEXT_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/GLX.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _glXGetContextIDEXT_fnptr - path: opentk/src/OpenTK.Graphics/GLX.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs startLine: 443 assemblies: - OpenTK.Graphics @@ -1602,12 +1402,8 @@ items: fullName: OpenTK.Graphics.Glx.GlxPointers._glXGetCurrentAssociatedContextAMD_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/GLX.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _glXGetCurrentAssociatedContextAMD_fnptr - path: opentk/src/OpenTK.Graphics/GLX.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs startLine: 452 assemblies: - OpenTK.Graphics @@ -1631,12 +1427,8 @@ items: fullName: OpenTK.Graphics.Glx.GlxPointers._glXGetCurrentContext_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/GLX.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _glXGetCurrentContext_fnptr - path: opentk/src/OpenTK.Graphics/GLX.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs startLine: 461 assemblies: - OpenTK.Graphics @@ -1660,12 +1452,8 @@ items: fullName: OpenTK.Graphics.Glx.GlxPointers._glXGetCurrentDisplay_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/GLX.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _glXGetCurrentDisplay_fnptr - path: opentk/src/OpenTK.Graphics/GLX.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs startLine: 470 assemblies: - OpenTK.Graphics @@ -1689,12 +1477,8 @@ items: fullName: OpenTK.Graphics.Glx.GlxPointers._glXGetCurrentDisplayEXT_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/GLX.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _glXGetCurrentDisplayEXT_fnptr - path: opentk/src/OpenTK.Graphics/GLX.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs startLine: 479 assemblies: - OpenTK.Graphics @@ -1718,12 +1502,8 @@ items: fullName: OpenTK.Graphics.Glx.GlxPointers._glXGetCurrentDrawable_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/GLX.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _glXGetCurrentDrawable_fnptr - path: opentk/src/OpenTK.Graphics/GLX.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs startLine: 488 assemblies: - OpenTK.Graphics @@ -1747,12 +1527,8 @@ items: fullName: OpenTK.Graphics.Glx.GlxPointers._glXGetCurrentReadDrawable_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/GLX.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _glXGetCurrentReadDrawable_fnptr - path: opentk/src/OpenTK.Graphics/GLX.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs startLine: 497 assemblies: - OpenTK.Graphics @@ -1776,12 +1552,8 @@ items: fullName: OpenTK.Graphics.Glx.GlxPointers._glXGetCurrentReadDrawableSGI_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/GLX.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _glXGetCurrentReadDrawableSGI_fnptr - path: opentk/src/OpenTK.Graphics/GLX.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs startLine: 506 assemblies: - OpenTK.Graphics @@ -1805,12 +1577,8 @@ items: fullName: OpenTK.Graphics.Glx.GlxPointers._glXGetFBConfigAttrib_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/GLX.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _glXGetFBConfigAttrib_fnptr - path: opentk/src/OpenTK.Graphics/GLX.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs startLine: 515 assemblies: - OpenTK.Graphics @@ -1834,12 +1602,8 @@ items: fullName: OpenTK.Graphics.Glx.GlxPointers._glXGetFBConfigAttribSGIX_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/GLX.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _glXGetFBConfigAttribSGIX_fnptr - path: opentk/src/OpenTK.Graphics/GLX.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs startLine: 524 assemblies: - OpenTK.Graphics @@ -1863,12 +1627,8 @@ items: fullName: OpenTK.Graphics.Glx.GlxPointers._glXGetFBConfigFromVisualSGIX_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/GLX.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _glXGetFBConfigFromVisualSGIX_fnptr - path: opentk/src/OpenTK.Graphics/GLX.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs startLine: 533 assemblies: - OpenTK.Graphics @@ -1892,12 +1652,8 @@ items: fullName: OpenTK.Graphics.Glx.GlxPointers._glXGetFBConfigs_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/GLX.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _glXGetFBConfigs_fnptr - path: opentk/src/OpenTK.Graphics/GLX.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs startLine: 542 assemblies: - OpenTK.Graphics @@ -1921,12 +1677,8 @@ items: fullName: OpenTK.Graphics.Glx.GlxPointers._glXGetGPUIDsAMD_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/GLX.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _glXGetGPUIDsAMD_fnptr - path: opentk/src/OpenTK.Graphics/GLX.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs startLine: 551 assemblies: - OpenTK.Graphics @@ -1950,12 +1702,8 @@ items: fullName: OpenTK.Graphics.Glx.GlxPointers._glXGetGPUInfoAMD_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/GLX.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _glXGetGPUInfoAMD_fnptr - path: opentk/src/OpenTK.Graphics/GLX.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs startLine: 560 assemblies: - OpenTK.Graphics @@ -1979,12 +1727,8 @@ items: fullName: OpenTK.Graphics.Glx.GlxPointers._glXGetMscRateOML_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/GLX.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _glXGetMscRateOML_fnptr - path: opentk/src/OpenTK.Graphics/GLX.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs startLine: 569 assemblies: - OpenTK.Graphics @@ -2008,12 +1752,8 @@ items: fullName: OpenTK.Graphics.Glx.GlxPointers._glXGetProcAddress_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/GLX.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _glXGetProcAddress_fnptr - path: opentk/src/OpenTK.Graphics/GLX.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs startLine: 578 assemblies: - OpenTK.Graphics @@ -2037,12 +1777,8 @@ items: fullName: OpenTK.Graphics.Glx.GlxPointers._glXGetProcAddressARB_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/GLX.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _glXGetProcAddressARB_fnptr - path: opentk/src/OpenTK.Graphics/GLX.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs startLine: 587 assemblies: - OpenTK.Graphics @@ -2066,12 +1802,8 @@ items: fullName: OpenTK.Graphics.Glx.GlxPointers._glXGetSelectedEvent_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/GLX.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _glXGetSelectedEvent_fnptr - path: opentk/src/OpenTK.Graphics/GLX.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs startLine: 596 assemblies: - OpenTK.Graphics @@ -2095,12 +1827,8 @@ items: fullName: OpenTK.Graphics.Glx.GlxPointers._glXGetSelectedEventSGIX_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/GLX.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _glXGetSelectedEventSGIX_fnptr - path: opentk/src/OpenTK.Graphics/GLX.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs startLine: 605 assemblies: - OpenTK.Graphics @@ -2124,12 +1852,8 @@ items: fullName: OpenTK.Graphics.Glx.GlxPointers._glXGetSwapIntervalMESA_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/GLX.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _glXGetSwapIntervalMESA_fnptr - path: opentk/src/OpenTK.Graphics/GLX.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs startLine: 614 assemblies: - OpenTK.Graphics @@ -2153,12 +1877,8 @@ items: fullName: OpenTK.Graphics.Glx.GlxPointers._glXGetSyncValuesOML_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/GLX.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _glXGetSyncValuesOML_fnptr - path: opentk/src/OpenTK.Graphics/GLX.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs startLine: 623 assemblies: - OpenTK.Graphics @@ -2182,12 +1902,8 @@ items: fullName: OpenTK.Graphics.Glx.GlxPointers._glXGetTransparentIndexSUN_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/GLX.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _glXGetTransparentIndexSUN_fnptr - path: opentk/src/OpenTK.Graphics/GLX.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs startLine: 632 assemblies: - OpenTK.Graphics @@ -2211,12 +1927,8 @@ items: fullName: OpenTK.Graphics.Glx.GlxPointers._glXGetVideoDeviceNV_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/GLX.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _glXGetVideoDeviceNV_fnptr - path: opentk/src/OpenTK.Graphics/GLX.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs startLine: 641 assemblies: - OpenTK.Graphics @@ -2240,12 +1952,8 @@ items: fullName: OpenTK.Graphics.Glx.GlxPointers._glXGetVideoInfoNV_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/GLX.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _glXGetVideoInfoNV_fnptr - path: opentk/src/OpenTK.Graphics/GLX.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs startLine: 650 assemblies: - OpenTK.Graphics @@ -2269,12 +1977,8 @@ items: fullName: OpenTK.Graphics.Glx.GlxPointers._glXGetVideoSyncSGI_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/GLX.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _glXGetVideoSyncSGI_fnptr - path: opentk/src/OpenTK.Graphics/GLX.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs startLine: 659 assemblies: - OpenTK.Graphics @@ -2298,12 +2002,8 @@ items: fullName: OpenTK.Graphics.Glx.GlxPointers._glXGetVisualFromFBConfig_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/GLX.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _glXGetVisualFromFBConfig_fnptr - path: opentk/src/OpenTK.Graphics/GLX.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs startLine: 668 assemblies: - OpenTK.Graphics @@ -2327,12 +2027,8 @@ items: fullName: OpenTK.Graphics.Glx.GlxPointers._glXGetVisualFromFBConfigSGIX_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/GLX.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _glXGetVisualFromFBConfigSGIX_fnptr - path: opentk/src/OpenTK.Graphics/GLX.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs startLine: 677 assemblies: - OpenTK.Graphics @@ -2356,12 +2052,8 @@ items: fullName: OpenTK.Graphics.Glx.GlxPointers._glXHyperpipeAttribSGIX_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/GLX.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _glXHyperpipeAttribSGIX_fnptr - path: opentk/src/OpenTK.Graphics/GLX.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs startLine: 686 assemblies: - OpenTK.Graphics @@ -2385,12 +2077,8 @@ items: fullName: OpenTK.Graphics.Glx.GlxPointers._glXHyperpipeConfigSGIX_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/GLX.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _glXHyperpipeConfigSGIX_fnptr - path: opentk/src/OpenTK.Graphics/GLX.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs startLine: 695 assemblies: - OpenTK.Graphics @@ -2414,12 +2102,8 @@ items: fullName: OpenTK.Graphics.Glx.GlxPointers._glXImportContextEXT_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/GLX.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _glXImportContextEXT_fnptr - path: opentk/src/OpenTK.Graphics/GLX.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs startLine: 704 assemblies: - OpenTK.Graphics @@ -2443,12 +2127,8 @@ items: fullName: OpenTK.Graphics.Glx.GlxPointers._glXIsDirect_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/GLX.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _glXIsDirect_fnptr - path: opentk/src/OpenTK.Graphics/GLX.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs startLine: 713 assemblies: - OpenTK.Graphics @@ -2472,12 +2152,8 @@ items: fullName: OpenTK.Graphics.Glx.GlxPointers._glXJoinSwapGroupNV_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/GLX.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _glXJoinSwapGroupNV_fnptr - path: opentk/src/OpenTK.Graphics/GLX.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs startLine: 722 assemblies: - OpenTK.Graphics @@ -2501,12 +2177,8 @@ items: fullName: OpenTK.Graphics.Glx.GlxPointers._glXJoinSwapGroupSGIX_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/GLX.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _glXJoinSwapGroupSGIX_fnptr - path: opentk/src/OpenTK.Graphics/GLX.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs startLine: 731 assemblies: - OpenTK.Graphics @@ -2530,12 +2202,8 @@ items: fullName: OpenTK.Graphics.Glx.GlxPointers._glXLockVideoCaptureDeviceNV_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/GLX.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _glXLockVideoCaptureDeviceNV_fnptr - path: opentk/src/OpenTK.Graphics/GLX.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs startLine: 740 assemblies: - OpenTK.Graphics @@ -2559,12 +2227,8 @@ items: fullName: OpenTK.Graphics.Glx.GlxPointers._glXMakeAssociatedContextCurrentAMD_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/GLX.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _glXMakeAssociatedContextCurrentAMD_fnptr - path: opentk/src/OpenTK.Graphics/GLX.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs startLine: 749 assemblies: - OpenTK.Graphics @@ -2588,12 +2252,8 @@ items: fullName: OpenTK.Graphics.Glx.GlxPointers._glXMakeContextCurrent_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/GLX.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _glXMakeContextCurrent_fnptr - path: opentk/src/OpenTK.Graphics/GLX.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs startLine: 758 assemblies: - OpenTK.Graphics @@ -2617,12 +2277,8 @@ items: fullName: OpenTK.Graphics.Glx.GlxPointers._glXMakeCurrent_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/GLX.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _glXMakeCurrent_fnptr - path: opentk/src/OpenTK.Graphics/GLX.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs startLine: 767 assemblies: - OpenTK.Graphics @@ -2646,12 +2302,8 @@ items: fullName: OpenTK.Graphics.Glx.GlxPointers._glXMakeCurrentReadSGI_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/GLX.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _glXMakeCurrentReadSGI_fnptr - path: opentk/src/OpenTK.Graphics/GLX.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs startLine: 776 assemblies: - OpenTK.Graphics @@ -2675,12 +2327,8 @@ items: fullName: OpenTK.Graphics.Glx.GlxPointers._glXNamedCopyBufferSubDataNV_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/GLX.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _glXNamedCopyBufferSubDataNV_fnptr - path: opentk/src/OpenTK.Graphics/GLX.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs startLine: 785 assemblies: - OpenTK.Graphics @@ -2704,12 +2352,8 @@ items: fullName: OpenTK.Graphics.Glx.GlxPointers._glXQueryChannelDeltasSGIX_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/GLX.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _glXQueryChannelDeltasSGIX_fnptr - path: opentk/src/OpenTK.Graphics/GLX.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs startLine: 794 assemblies: - OpenTK.Graphics @@ -2733,12 +2377,8 @@ items: fullName: OpenTK.Graphics.Glx.GlxPointers._glXQueryChannelRectSGIX_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/GLX.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _glXQueryChannelRectSGIX_fnptr - path: opentk/src/OpenTK.Graphics/GLX.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs startLine: 803 assemblies: - OpenTK.Graphics @@ -2762,12 +2402,8 @@ items: fullName: OpenTK.Graphics.Glx.GlxPointers._glXQueryContext_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/GLX.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _glXQueryContext_fnptr - path: opentk/src/OpenTK.Graphics/GLX.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs startLine: 812 assemblies: - OpenTK.Graphics @@ -2791,12 +2427,8 @@ items: fullName: OpenTK.Graphics.Glx.GlxPointers._glXQueryContextInfoEXT_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/GLX.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _glXQueryContextInfoEXT_fnptr - path: opentk/src/OpenTK.Graphics/GLX.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs startLine: 821 assemblies: - OpenTK.Graphics @@ -2820,12 +2452,8 @@ items: fullName: OpenTK.Graphics.Glx.GlxPointers._glXQueryCurrentRendererIntegerMESA_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/GLX.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _glXQueryCurrentRendererIntegerMESA_fnptr - path: opentk/src/OpenTK.Graphics/GLX.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs startLine: 830 assemblies: - OpenTK.Graphics @@ -2849,12 +2477,8 @@ items: fullName: OpenTK.Graphics.Glx.GlxPointers._glXQueryCurrentRendererStringMESA_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/GLX.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _glXQueryCurrentRendererStringMESA_fnptr - path: opentk/src/OpenTK.Graphics/GLX.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs startLine: 839 assemblies: - OpenTK.Graphics @@ -2878,12 +2502,8 @@ items: fullName: OpenTK.Graphics.Glx.GlxPointers._glXQueryDrawable_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/GLX.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _glXQueryDrawable_fnptr - path: opentk/src/OpenTK.Graphics/GLX.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs startLine: 848 assemblies: - OpenTK.Graphics @@ -2907,12 +2527,8 @@ items: fullName: OpenTK.Graphics.Glx.GlxPointers._glXQueryExtension_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/GLX.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _glXQueryExtension_fnptr - path: opentk/src/OpenTK.Graphics/GLX.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs startLine: 857 assemblies: - OpenTK.Graphics @@ -2936,12 +2552,8 @@ items: fullName: OpenTK.Graphics.Glx.GlxPointers._glXQueryExtensionsString_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/GLX.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _glXQueryExtensionsString_fnptr - path: opentk/src/OpenTK.Graphics/GLX.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs startLine: 866 assemblies: - OpenTK.Graphics @@ -2965,12 +2577,8 @@ items: fullName: OpenTK.Graphics.Glx.GlxPointers._glXQueryFrameCountNV_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/GLX.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _glXQueryFrameCountNV_fnptr - path: opentk/src/OpenTK.Graphics/GLX.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs startLine: 875 assemblies: - OpenTK.Graphics @@ -2994,12 +2602,8 @@ items: fullName: OpenTK.Graphics.Glx.GlxPointers._glXQueryGLXPbufferSGIX_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/GLX.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _glXQueryGLXPbufferSGIX_fnptr - path: opentk/src/OpenTK.Graphics/GLX.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs startLine: 884 assemblies: - OpenTK.Graphics @@ -3023,12 +2627,8 @@ items: fullName: OpenTK.Graphics.Glx.GlxPointers._glXQueryHyperpipeAttribSGIX_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/GLX.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _glXQueryHyperpipeAttribSGIX_fnptr - path: opentk/src/OpenTK.Graphics/GLX.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs startLine: 893 assemblies: - OpenTK.Graphics @@ -3052,12 +2652,8 @@ items: fullName: OpenTK.Graphics.Glx.GlxPointers._glXQueryHyperpipeBestAttribSGIX_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/GLX.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _glXQueryHyperpipeBestAttribSGIX_fnptr - path: opentk/src/OpenTK.Graphics/GLX.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs startLine: 902 assemblies: - OpenTK.Graphics @@ -3081,12 +2677,8 @@ items: fullName: OpenTK.Graphics.Glx.GlxPointers._glXQueryHyperpipeConfigSGIX_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/GLX.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _glXQueryHyperpipeConfigSGIX_fnptr - path: opentk/src/OpenTK.Graphics/GLX.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs startLine: 911 assemblies: - OpenTK.Graphics @@ -3110,12 +2702,8 @@ items: fullName: OpenTK.Graphics.Glx.GlxPointers._glXQueryHyperpipeNetworkSGIX_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/GLX.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _glXQueryHyperpipeNetworkSGIX_fnptr - path: opentk/src/OpenTK.Graphics/GLX.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs startLine: 920 assemblies: - OpenTK.Graphics @@ -3139,12 +2727,8 @@ items: fullName: OpenTK.Graphics.Glx.GlxPointers._glXQueryMaxSwapBarriersSGIX_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/GLX.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _glXQueryMaxSwapBarriersSGIX_fnptr - path: opentk/src/OpenTK.Graphics/GLX.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs startLine: 929 assemblies: - OpenTK.Graphics @@ -3168,12 +2752,8 @@ items: fullName: OpenTK.Graphics.Glx.GlxPointers._glXQueryMaxSwapGroupsNV_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/GLX.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _glXQueryMaxSwapGroupsNV_fnptr - path: opentk/src/OpenTK.Graphics/GLX.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs startLine: 938 assemblies: - OpenTK.Graphics @@ -3197,12 +2777,8 @@ items: fullName: OpenTK.Graphics.Glx.GlxPointers._glXQueryRendererIntegerMESA_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/GLX.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _glXQueryRendererIntegerMESA_fnptr - path: opentk/src/OpenTK.Graphics/GLX.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs startLine: 947 assemblies: - OpenTK.Graphics @@ -3226,12 +2802,8 @@ items: fullName: OpenTK.Graphics.Glx.GlxPointers._glXQueryRendererStringMESA_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/GLX.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _glXQueryRendererStringMESA_fnptr - path: opentk/src/OpenTK.Graphics/GLX.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs startLine: 956 assemblies: - OpenTK.Graphics @@ -3255,12 +2827,8 @@ items: fullName: OpenTK.Graphics.Glx.GlxPointers._glXQueryServerString_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/GLX.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _glXQueryServerString_fnptr - path: opentk/src/OpenTK.Graphics/GLX.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs startLine: 965 assemblies: - OpenTK.Graphics @@ -3284,12 +2852,8 @@ items: fullName: OpenTK.Graphics.Glx.GlxPointers._glXQuerySwapGroupNV_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/GLX.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _glXQuerySwapGroupNV_fnptr - path: opentk/src/OpenTK.Graphics/GLX.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs startLine: 974 assemblies: - OpenTK.Graphics @@ -3313,12 +2877,8 @@ items: fullName: OpenTK.Graphics.Glx.GlxPointers._glXQueryVersion_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/GLX.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _glXQueryVersion_fnptr - path: opentk/src/OpenTK.Graphics/GLX.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs startLine: 983 assemblies: - OpenTK.Graphics @@ -3342,12 +2902,8 @@ items: fullName: OpenTK.Graphics.Glx.GlxPointers._glXQueryVideoCaptureDeviceNV_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/GLX.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _glXQueryVideoCaptureDeviceNV_fnptr - path: opentk/src/OpenTK.Graphics/GLX.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs startLine: 992 assemblies: - OpenTK.Graphics @@ -3371,12 +2927,8 @@ items: fullName: OpenTK.Graphics.Glx.GlxPointers._glXReleaseBuffersMESA_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/GLX.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _glXReleaseBuffersMESA_fnptr - path: opentk/src/OpenTK.Graphics/GLX.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs startLine: 1001 assemblies: - OpenTK.Graphics @@ -3400,12 +2952,8 @@ items: fullName: OpenTK.Graphics.Glx.GlxPointers._glXReleaseTexImageEXT_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/GLX.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _glXReleaseTexImageEXT_fnptr - path: opentk/src/OpenTK.Graphics/GLX.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs startLine: 1010 assemblies: - OpenTK.Graphics @@ -3429,12 +2977,8 @@ items: fullName: OpenTK.Graphics.Glx.GlxPointers._glXReleaseVideoCaptureDeviceNV_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/GLX.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _glXReleaseVideoCaptureDeviceNV_fnptr - path: opentk/src/OpenTK.Graphics/GLX.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs startLine: 1019 assemblies: - OpenTK.Graphics @@ -3458,12 +3002,8 @@ items: fullName: OpenTK.Graphics.Glx.GlxPointers._glXReleaseVideoDeviceNV_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/GLX.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _glXReleaseVideoDeviceNV_fnptr - path: opentk/src/OpenTK.Graphics/GLX.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs startLine: 1028 assemblies: - OpenTK.Graphics @@ -3487,12 +3027,8 @@ items: fullName: OpenTK.Graphics.Glx.GlxPointers._glXReleaseVideoImageNV_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/GLX.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _glXReleaseVideoImageNV_fnptr - path: opentk/src/OpenTK.Graphics/GLX.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs startLine: 1037 assemblies: - OpenTK.Graphics @@ -3516,12 +3052,8 @@ items: fullName: OpenTK.Graphics.Glx.GlxPointers._glXResetFrameCountNV_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/GLX.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _glXResetFrameCountNV_fnptr - path: opentk/src/OpenTK.Graphics/GLX.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs startLine: 1046 assemblies: - OpenTK.Graphics @@ -3545,12 +3077,8 @@ items: fullName: OpenTK.Graphics.Glx.GlxPointers._glXSelectEvent_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/GLX.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _glXSelectEvent_fnptr - path: opentk/src/OpenTK.Graphics/GLX.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs startLine: 1055 assemblies: - OpenTK.Graphics @@ -3574,12 +3102,8 @@ items: fullName: OpenTK.Graphics.Glx.GlxPointers._glXSelectEventSGIX_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/GLX.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _glXSelectEventSGIX_fnptr - path: opentk/src/OpenTK.Graphics/GLX.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs startLine: 1064 assemblies: - OpenTK.Graphics @@ -3603,12 +3127,8 @@ items: fullName: OpenTK.Graphics.Glx.GlxPointers._glXSendPbufferToVideoNV_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/GLX.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _glXSendPbufferToVideoNV_fnptr - path: opentk/src/OpenTK.Graphics/GLX.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs startLine: 1073 assemblies: - OpenTK.Graphics @@ -3632,12 +3152,8 @@ items: fullName: OpenTK.Graphics.Glx.GlxPointers._glXSet3DfxModeMESA_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/GLX.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _glXSet3DfxModeMESA_fnptr - path: opentk/src/OpenTK.Graphics/GLX.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs startLine: 1082 assemblies: - OpenTK.Graphics @@ -3661,12 +3177,8 @@ items: fullName: OpenTK.Graphics.Glx.GlxPointers._glXSwapBuffers_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/GLX.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _glXSwapBuffers_fnptr - path: opentk/src/OpenTK.Graphics/GLX.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs startLine: 1091 assemblies: - OpenTK.Graphics @@ -3690,12 +3202,8 @@ items: fullName: OpenTK.Graphics.Glx.GlxPointers._glXSwapBuffersMscOML_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/GLX.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _glXSwapBuffersMscOML_fnptr - path: opentk/src/OpenTK.Graphics/GLX.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs startLine: 1100 assemblies: - OpenTK.Graphics @@ -3719,12 +3227,8 @@ items: fullName: OpenTK.Graphics.Glx.GlxPointers._glXSwapIntervalEXT_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/GLX.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _glXSwapIntervalEXT_fnptr - path: opentk/src/OpenTK.Graphics/GLX.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs startLine: 1109 assemblies: - OpenTK.Graphics @@ -3748,12 +3252,8 @@ items: fullName: OpenTK.Graphics.Glx.GlxPointers._glXSwapIntervalMESA_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/GLX.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _glXSwapIntervalMESA_fnptr - path: opentk/src/OpenTK.Graphics/GLX.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs startLine: 1118 assemblies: - OpenTK.Graphics @@ -3777,12 +3277,8 @@ items: fullName: OpenTK.Graphics.Glx.GlxPointers._glXSwapIntervalSGI_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/GLX.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _glXSwapIntervalSGI_fnptr - path: opentk/src/OpenTK.Graphics/GLX.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs startLine: 1127 assemblies: - OpenTK.Graphics @@ -3806,12 +3302,8 @@ items: fullName: OpenTK.Graphics.Glx.GlxPointers._glXUseXFont_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/GLX.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _glXUseXFont_fnptr - path: opentk/src/OpenTK.Graphics/GLX.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs startLine: 1136 assemblies: - OpenTK.Graphics @@ -3835,12 +3327,8 @@ items: fullName: OpenTK.Graphics.Glx.GlxPointers._glXWaitForMscOML_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/GLX.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _glXWaitForMscOML_fnptr - path: opentk/src/OpenTK.Graphics/GLX.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs startLine: 1145 assemblies: - OpenTK.Graphics @@ -3864,12 +3352,8 @@ items: fullName: OpenTK.Graphics.Glx.GlxPointers._glXWaitForSbcOML_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/GLX.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _glXWaitForSbcOML_fnptr - path: opentk/src/OpenTK.Graphics/GLX.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs startLine: 1154 assemblies: - OpenTK.Graphics @@ -3893,12 +3377,8 @@ items: fullName: OpenTK.Graphics.Glx.GlxPointers._glXWaitGL_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/GLX.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _glXWaitGL_fnptr - path: opentk/src/OpenTK.Graphics/GLX.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs startLine: 1163 assemblies: - OpenTK.Graphics @@ -3922,12 +3402,8 @@ items: fullName: OpenTK.Graphics.Glx.GlxPointers._glXWaitVideoSyncSGI_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/GLX.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _glXWaitVideoSyncSGI_fnptr - path: opentk/src/OpenTK.Graphics/GLX.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs startLine: 1172 assemblies: - OpenTK.Graphics @@ -3951,12 +3427,8 @@ items: fullName: OpenTK.Graphics.Glx.GlxPointers._glXWaitX_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/GLX.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _glXWaitX_fnptr - path: opentk/src/OpenTK.Graphics/GLX.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs startLine: 1181 assemblies: - OpenTK.Graphics diff --git a/api/OpenTK.Graphics.Glx.Pixmap.yml b/api/OpenTK.Graphics.Glx.Pixmap.yml index 260f0875..f51fa8a7 100644 --- a/api/OpenTK.Graphics.Glx.Pixmap.yml +++ b/api/OpenTK.Graphics.Glx.Pixmap.yml @@ -17,12 +17,8 @@ items: fullName: OpenTK.Graphics.Glx.Pixmap type: Struct source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Pixmap - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 141 assemblies: - OpenTK.Graphics @@ -51,12 +47,8 @@ items: fullName: OpenTK.Graphics.Glx.Pixmap.XID type: Field source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: XID - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 146 assemblies: - OpenTK.Graphics @@ -80,12 +72,8 @@ items: fullName: OpenTK.Graphics.Glx.Pixmap.Pixmap(nuint) type: Constructor source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 152 assemblies: - OpenTK.Graphics @@ -115,12 +103,8 @@ items: fullName: OpenTK.Graphics.Glx.Pixmap.explicit operator nuint(OpenTK.Graphics.Glx.Pixmap) type: Operator source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Explicit - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 157 assemblies: - OpenTK.Graphics @@ -149,12 +133,8 @@ items: fullName: OpenTK.Graphics.Glx.Pixmap.explicit operator OpenTK.Graphics.Glx.Pixmap(nuint) type: Operator source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Explicit - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 158 assemblies: - OpenTK.Graphics diff --git a/api/OpenTK.Graphics.Glx.ScreenPtr.yml b/api/OpenTK.Graphics.Glx.ScreenPtr.yml index 481cd8c8..31b14148 100644 --- a/api/OpenTK.Graphics.Glx.ScreenPtr.yml +++ b/api/OpenTK.Graphics.Glx.ScreenPtr.yml @@ -17,12 +17,8 @@ items: fullName: OpenTK.Graphics.Glx.ScreenPtr type: Struct source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ScreenPtr - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 72 assemblies: - OpenTK.Graphics @@ -51,12 +47,8 @@ items: fullName: OpenTK.Graphics.Glx.ScreenPtr.Value type: Field source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Value - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 77 assemblies: - OpenTK.Graphics @@ -80,12 +72,8 @@ items: fullName: OpenTK.Graphics.Glx.ScreenPtr.ScreenPtr(nint) type: Constructor source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 83 assemblies: - OpenTK.Graphics @@ -115,12 +103,8 @@ items: fullName: OpenTK.Graphics.Glx.ScreenPtr.explicit operator nint(OpenTK.Graphics.Glx.ScreenPtr) type: Operator source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Explicit - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 88 assemblies: - OpenTK.Graphics @@ -149,12 +133,8 @@ items: fullName: OpenTK.Graphics.Glx.ScreenPtr.explicit operator OpenTK.Graphics.Glx.ScreenPtr(nint) type: Operator source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Explicit - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 89 assemblies: - OpenTK.Graphics diff --git a/api/OpenTK.Graphics.Glx.Window.yml b/api/OpenTK.Graphics.Glx.Window.yml index 2387e913..382848e8 100644 --- a/api/OpenTK.Graphics.Glx.Window.yml +++ b/api/OpenTK.Graphics.Glx.Window.yml @@ -17,12 +17,8 @@ items: fullName: OpenTK.Graphics.Glx.Window type: Struct source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Window - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 95 assemblies: - OpenTK.Graphics @@ -51,12 +47,8 @@ items: fullName: OpenTK.Graphics.Glx.Window.XID type: Field source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: XID - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 100 assemblies: - OpenTK.Graphics @@ -80,12 +72,8 @@ items: fullName: OpenTK.Graphics.Glx.Window.Window(nuint) type: Constructor source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 106 assemblies: - OpenTK.Graphics @@ -115,12 +103,8 @@ items: fullName: OpenTK.Graphics.Glx.Window.explicit operator nuint(OpenTK.Graphics.Glx.Window) type: Operator source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Explicit - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 111 assemblies: - OpenTK.Graphics @@ -149,12 +133,8 @@ items: fullName: OpenTK.Graphics.Glx.Window.explicit operator OpenTK.Graphics.Glx.Window(nuint) type: Operator source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Explicit - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 112 assemblies: - OpenTK.Graphics diff --git a/api/OpenTK.Graphics.Glx.XVisualInfo.yml b/api/OpenTK.Graphics.Glx.XVisualInfo.yml deleted file mode 100644 index 14f3608c..00000000 --- a/api/OpenTK.Graphics.Glx.XVisualInfo.yml +++ /dev/null @@ -1,285 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: OpenTK.Graphics.Glx.XVisualInfo - commentId: T:OpenTK.Graphics.Glx.XVisualInfo - id: XVisualInfo - parent: OpenTK.Graphics.Glx - children: [] - langs: - - csharp - - vb - name: XVisualInfo - nameWithType: XVisualInfo - fullName: OpenTK.Graphics.Glx.XVisualInfo - type: Struct - source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: XVisualInfo - path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 155 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: Opaque struct for X11 XVisualInfo. - example: [] - syntax: - content: public struct XVisualInfo - content.vb: Public Structure XVisualInfo - inheritedMembers: - - System.ValueType.Equals(System.Object) - - System.ValueType.GetHashCode - - System.ValueType.ToString - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.ReferenceEquals(System.Object,System.Object) -references: -- uid: OpenTK.Graphics.Glx - commentId: N:OpenTK.Graphics.Glx - href: OpenTK.html - name: OpenTK.Graphics.Glx - nameWithType: OpenTK.Graphics.Glx - fullName: OpenTK.Graphics.Glx - spec.csharp: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Glx - name: Glx - href: OpenTK.Graphics.Glx.html - spec.vb: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Glx - name: Glx - href: OpenTK.Graphics.Glx.html -- uid: System.ValueType.Equals(System.Object) - commentId: M:System.ValueType.Equals(System.Object) - parent: System.ValueType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals - name: Equals(object) - nameWithType: ValueType.Equals(object) - fullName: System.ValueType.Equals(object) - nameWithType.vb: ValueType.Equals(Object) - fullName.vb: System.ValueType.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: System.ValueType.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.ValueType.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.ValueType.GetHashCode - commentId: M:System.ValueType.GetHashCode - parent: System.ValueType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - name: GetHashCode() - nameWithType: ValueType.GetHashCode() - fullName: System.ValueType.GetHashCode() - spec.csharp: - - uid: System.ValueType.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - - name: ( - - name: ) - spec.vb: - - uid: System.ValueType.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - - name: ( - - name: ) -- uid: System.ValueType.ToString - commentId: M:System.ValueType.ToString - parent: System.ValueType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - name: ToString() - nameWithType: ValueType.ToString() - fullName: System.ValueType.ToString() - spec.csharp: - - uid: System.ValueType.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - - name: ( - - name: ) - spec.vb: - - uid: System.ValueType.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - - name: ( - - name: ) -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.ValueType - commentId: T:System.ValueType - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype - name: ValueType - nameWithType: ValueType - fullName: System.ValueType -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System diff --git a/api/OpenTK.Graphics.Glx.XVisualInfoPtr.yml b/api/OpenTK.Graphics.Glx.XVisualInfoPtr.yml index 95d06900..362116c2 100644 --- a/api/OpenTK.Graphics.Glx.XVisualInfoPtr.yml +++ b/api/OpenTK.Graphics.Glx.XVisualInfoPtr.yml @@ -17,12 +17,8 @@ items: fullName: OpenTK.Graphics.Glx.XVisualInfoPtr type: Struct source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: XVisualInfoPtr - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 187 assemblies: - OpenTK.Graphics @@ -51,12 +47,8 @@ items: fullName: OpenTK.Graphics.Glx.XVisualInfoPtr.Value type: Field source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Value - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 192 assemblies: - OpenTK.Graphics @@ -80,12 +72,8 @@ items: fullName: OpenTK.Graphics.Glx.XVisualInfoPtr.XVisualInfoPtr(nint) type: Constructor source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 198 assemblies: - OpenTK.Graphics @@ -115,12 +103,8 @@ items: fullName: OpenTK.Graphics.Glx.XVisualInfoPtr.explicit operator nint(OpenTK.Graphics.Glx.XVisualInfoPtr) type: Operator source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Explicit - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 203 assemblies: - OpenTK.Graphics @@ -149,12 +133,8 @@ items: fullName: OpenTK.Graphics.Glx.XVisualInfoPtr.explicit operator OpenTK.Graphics.Glx.XVisualInfoPtr(nint) type: Operator source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Explicit - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 204 assemblies: - OpenTK.Graphics diff --git a/api/OpenTK.Graphics.PerfQueryHandle.yml b/api/OpenTK.Graphics.PerfQueryHandle.yml index 7576350a..730a2c66 100644 --- a/api/OpenTK.Graphics.PerfQueryHandle.yml +++ b/api/OpenTK.Graphics.PerfQueryHandle.yml @@ -23,12 +23,8 @@ items: fullName: OpenTK.Graphics.PerfQueryHandle type: Struct source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: PerfQueryHandle - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 1283 assemblies: - OpenTK.Graphics @@ -55,12 +51,8 @@ items: fullName: OpenTK.Graphics.PerfQueryHandle.Zero type: Field source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Zero - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 1285 assemblies: - OpenTK.Graphics @@ -82,12 +74,8 @@ items: fullName: OpenTK.Graphics.PerfQueryHandle.Handle type: Field source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Handle - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 1287 assemblies: - OpenTK.Graphics @@ -109,12 +97,8 @@ items: fullName: OpenTK.Graphics.PerfQueryHandle.PerfQueryHandle(int) type: Constructor source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 1289 assemblies: - OpenTK.Graphics @@ -141,12 +125,8 @@ items: fullName: OpenTK.Graphics.PerfQueryHandle.Equals(object?) type: Method source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Equals - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 1294 assemblies: - OpenTK.Graphics @@ -180,12 +160,8 @@ items: fullName: OpenTK.Graphics.PerfQueryHandle.Equals(OpenTK.Graphics.PerfQueryHandle) type: Method source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Equals - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 1299 assemblies: - OpenTK.Graphics @@ -217,12 +193,8 @@ items: fullName: OpenTK.Graphics.PerfQueryHandle.GetHashCode() type: Method source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetHashCode - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 1304 assemblies: - OpenTK.Graphics @@ -249,12 +221,8 @@ items: fullName: OpenTK.Graphics.PerfQueryHandle.operator ==(OpenTK.Graphics.PerfQueryHandle, OpenTK.Graphics.PerfQueryHandle) type: Operator source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Equality - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 1309 assemblies: - OpenTK.Graphics @@ -285,12 +253,8 @@ items: fullName: OpenTK.Graphics.PerfQueryHandle.operator !=(OpenTK.Graphics.PerfQueryHandle, OpenTK.Graphics.PerfQueryHandle) type: Operator source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Inequality - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 1314 assemblies: - OpenTK.Graphics @@ -321,12 +285,8 @@ items: fullName: OpenTK.Graphics.PerfQueryHandle.explicit operator OpenTK.Graphics.PerfQueryHandle(int) type: Operator source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Explicit - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 1319 assemblies: - OpenTK.Graphics @@ -355,12 +315,8 @@ items: fullName: OpenTK.Graphics.PerfQueryHandle.explicit operator int(OpenTK.Graphics.PerfQueryHandle) type: Operator source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Explicit - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 1320 assemblies: - OpenTK.Graphics diff --git a/api/OpenTK.Graphics.ProgramHandle.yml b/api/OpenTK.Graphics.ProgramHandle.yml index c48efd90..0a148e46 100644 --- a/api/OpenTK.Graphics.ProgramHandle.yml +++ b/api/OpenTK.Graphics.ProgramHandle.yml @@ -23,12 +23,8 @@ items: fullName: OpenTK.Graphics.ProgramHandle type: Struct source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ProgramHandle - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 803 assemblies: - OpenTK.Graphics @@ -55,12 +51,8 @@ items: fullName: OpenTK.Graphics.ProgramHandle.Zero type: Field source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Zero - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 805 assemblies: - OpenTK.Graphics @@ -82,12 +74,8 @@ items: fullName: OpenTK.Graphics.ProgramHandle.Handle type: Field source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Handle - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 807 assemblies: - OpenTK.Graphics @@ -109,12 +97,8 @@ items: fullName: OpenTK.Graphics.ProgramHandle.ProgramHandle(int) type: Constructor source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 809 assemblies: - OpenTK.Graphics @@ -141,12 +125,8 @@ items: fullName: OpenTK.Graphics.ProgramHandle.Equals(object?) type: Method source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Equals - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 814 assemblies: - OpenTK.Graphics @@ -180,12 +160,8 @@ items: fullName: OpenTK.Graphics.ProgramHandle.Equals(OpenTK.Graphics.ProgramHandle) type: Method source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Equals - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 819 assemblies: - OpenTK.Graphics @@ -217,12 +193,8 @@ items: fullName: OpenTK.Graphics.ProgramHandle.GetHashCode() type: Method source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetHashCode - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 824 assemblies: - OpenTK.Graphics @@ -249,12 +221,8 @@ items: fullName: OpenTK.Graphics.ProgramHandle.operator ==(OpenTK.Graphics.ProgramHandle, OpenTK.Graphics.ProgramHandle) type: Operator source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Equality - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 829 assemblies: - OpenTK.Graphics @@ -285,12 +253,8 @@ items: fullName: OpenTK.Graphics.ProgramHandle.operator !=(OpenTK.Graphics.ProgramHandle, OpenTK.Graphics.ProgramHandle) type: Operator source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Inequality - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 834 assemblies: - OpenTK.Graphics @@ -321,12 +285,8 @@ items: fullName: OpenTK.Graphics.ProgramHandle.explicit operator OpenTK.Graphics.ProgramHandle(int) type: Operator source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Explicit - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 839 assemblies: - OpenTK.Graphics @@ -355,12 +315,8 @@ items: fullName: OpenTK.Graphics.ProgramHandle.explicit operator int(OpenTK.Graphics.ProgramHandle) type: Operator source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Explicit - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 840 assemblies: - OpenTK.Graphics diff --git a/api/OpenTK.Graphics.ProgramPipelineHandle.yml b/api/OpenTK.Graphics.ProgramPipelineHandle.yml index bf4bfde5..7c4b8e3b 100644 --- a/api/OpenTK.Graphics.ProgramPipelineHandle.yml +++ b/api/OpenTK.Graphics.ProgramPipelineHandle.yml @@ -23,12 +23,8 @@ items: fullName: OpenTK.Graphics.ProgramPipelineHandle type: Struct source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ProgramPipelineHandle - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 843 assemblies: - OpenTK.Graphics @@ -55,12 +51,8 @@ items: fullName: OpenTK.Graphics.ProgramPipelineHandle.Zero type: Field source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Zero - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 845 assemblies: - OpenTK.Graphics @@ -82,12 +74,8 @@ items: fullName: OpenTK.Graphics.ProgramPipelineHandle.Handle type: Field source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Handle - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 847 assemblies: - OpenTK.Graphics @@ -109,12 +97,8 @@ items: fullName: OpenTK.Graphics.ProgramPipelineHandle.ProgramPipelineHandle(int) type: Constructor source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 849 assemblies: - OpenTK.Graphics @@ -141,12 +125,8 @@ items: fullName: OpenTK.Graphics.ProgramPipelineHandle.Equals(object?) type: Method source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Equals - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 854 assemblies: - OpenTK.Graphics @@ -180,12 +160,8 @@ items: fullName: OpenTK.Graphics.ProgramPipelineHandle.Equals(OpenTK.Graphics.ProgramPipelineHandle) type: Method source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Equals - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 859 assemblies: - OpenTK.Graphics @@ -217,12 +193,8 @@ items: fullName: OpenTK.Graphics.ProgramPipelineHandle.GetHashCode() type: Method source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetHashCode - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 864 assemblies: - OpenTK.Graphics @@ -249,12 +221,8 @@ items: fullName: OpenTK.Graphics.ProgramPipelineHandle.operator ==(OpenTK.Graphics.ProgramPipelineHandle, OpenTK.Graphics.ProgramPipelineHandle) type: Operator source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Equality - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 869 assemblies: - OpenTK.Graphics @@ -285,12 +253,8 @@ items: fullName: OpenTK.Graphics.ProgramPipelineHandle.operator !=(OpenTK.Graphics.ProgramPipelineHandle, OpenTK.Graphics.ProgramPipelineHandle) type: Operator source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Inequality - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 874 assemblies: - OpenTK.Graphics @@ -321,12 +285,8 @@ items: fullName: OpenTK.Graphics.ProgramPipelineHandle.explicit operator OpenTK.Graphics.ProgramPipelineHandle(int) type: Operator source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Explicit - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 879 assemblies: - OpenTK.Graphics @@ -355,12 +315,8 @@ items: fullName: OpenTK.Graphics.ProgramPipelineHandle.explicit operator int(OpenTK.Graphics.ProgramPipelineHandle) type: Operator source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Explicit - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 880 assemblies: - OpenTK.Graphics diff --git a/api/OpenTK.Graphics.QueryHandle.yml b/api/OpenTK.Graphics.QueryHandle.yml index 84d4fa20..a421ae76 100644 --- a/api/OpenTK.Graphics.QueryHandle.yml +++ b/api/OpenTK.Graphics.QueryHandle.yml @@ -23,12 +23,8 @@ items: fullName: OpenTK.Graphics.QueryHandle type: Struct source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: QueryHandle - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 1003 assemblies: - OpenTK.Graphics @@ -55,12 +51,8 @@ items: fullName: OpenTK.Graphics.QueryHandle.Zero type: Field source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Zero - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 1005 assemblies: - OpenTK.Graphics @@ -82,12 +74,8 @@ items: fullName: OpenTK.Graphics.QueryHandle.Handle type: Field source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Handle - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 1007 assemblies: - OpenTK.Graphics @@ -109,12 +97,8 @@ items: fullName: OpenTK.Graphics.QueryHandle.QueryHandle(int) type: Constructor source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 1009 assemblies: - OpenTK.Graphics @@ -141,12 +125,8 @@ items: fullName: OpenTK.Graphics.QueryHandle.Equals(object?) type: Method source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Equals - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 1014 assemblies: - OpenTK.Graphics @@ -180,12 +160,8 @@ items: fullName: OpenTK.Graphics.QueryHandle.Equals(OpenTK.Graphics.QueryHandle) type: Method source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Equals - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 1019 assemblies: - OpenTK.Graphics @@ -217,12 +193,8 @@ items: fullName: OpenTK.Graphics.QueryHandle.GetHashCode() type: Method source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetHashCode - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 1024 assemblies: - OpenTK.Graphics @@ -249,12 +221,8 @@ items: fullName: OpenTK.Graphics.QueryHandle.operator ==(OpenTK.Graphics.QueryHandle, OpenTK.Graphics.QueryHandle) type: Operator source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Equality - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 1029 assemblies: - OpenTK.Graphics @@ -285,12 +253,8 @@ items: fullName: OpenTK.Graphics.QueryHandle.operator !=(OpenTK.Graphics.QueryHandle, OpenTK.Graphics.QueryHandle) type: Operator source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Inequality - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 1034 assemblies: - OpenTK.Graphics @@ -321,12 +285,8 @@ items: fullName: OpenTK.Graphics.QueryHandle.explicit operator OpenTK.Graphics.QueryHandle(int) type: Operator source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Explicit - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 1039 assemblies: - OpenTK.Graphics @@ -355,12 +315,8 @@ items: fullName: OpenTK.Graphics.QueryHandle.explicit operator int(OpenTK.Graphics.QueryHandle) type: Operator source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Explicit - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 1040 assemblies: - OpenTK.Graphics diff --git a/api/OpenTK.Graphics.RenderbufferHandle.yml b/api/OpenTK.Graphics.RenderbufferHandle.yml index 98b97681..ac4a0e6d 100644 --- a/api/OpenTK.Graphics.RenderbufferHandle.yml +++ b/api/OpenTK.Graphics.RenderbufferHandle.yml @@ -23,12 +23,8 @@ items: fullName: OpenTK.Graphics.RenderbufferHandle type: Struct source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: RenderbufferHandle - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 1083 assemblies: - OpenTK.Graphics @@ -55,12 +51,8 @@ items: fullName: OpenTK.Graphics.RenderbufferHandle.Zero type: Field source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Zero - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 1085 assemblies: - OpenTK.Graphics @@ -82,12 +74,8 @@ items: fullName: OpenTK.Graphics.RenderbufferHandle.Handle type: Field source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Handle - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 1087 assemblies: - OpenTK.Graphics @@ -109,12 +97,8 @@ items: fullName: OpenTK.Graphics.RenderbufferHandle.RenderbufferHandle(int) type: Constructor source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 1089 assemblies: - OpenTK.Graphics @@ -141,12 +125,8 @@ items: fullName: OpenTK.Graphics.RenderbufferHandle.Equals(object?) type: Method source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Equals - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 1094 assemblies: - OpenTK.Graphics @@ -180,12 +160,8 @@ items: fullName: OpenTK.Graphics.RenderbufferHandle.Equals(OpenTK.Graphics.RenderbufferHandle) type: Method source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Equals - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 1099 assemblies: - OpenTK.Graphics @@ -217,12 +193,8 @@ items: fullName: OpenTK.Graphics.RenderbufferHandle.GetHashCode() type: Method source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetHashCode - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 1104 assemblies: - OpenTK.Graphics @@ -249,12 +221,8 @@ items: fullName: OpenTK.Graphics.RenderbufferHandle.operator ==(OpenTK.Graphics.RenderbufferHandle, OpenTK.Graphics.RenderbufferHandle) type: Operator source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Equality - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 1109 assemblies: - OpenTK.Graphics @@ -285,12 +253,8 @@ items: fullName: OpenTK.Graphics.RenderbufferHandle.operator !=(OpenTK.Graphics.RenderbufferHandle, OpenTK.Graphics.RenderbufferHandle) type: Operator source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Inequality - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 1114 assemblies: - OpenTK.Graphics @@ -321,12 +285,8 @@ items: fullName: OpenTK.Graphics.RenderbufferHandle.explicit operator OpenTK.Graphics.RenderbufferHandle(int) type: Operator source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Explicit - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 1119 assemblies: - OpenTK.Graphics @@ -355,12 +315,8 @@ items: fullName: OpenTK.Graphics.RenderbufferHandle.explicit operator int(OpenTK.Graphics.RenderbufferHandle) type: Operator source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Explicit - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 1120 assemblies: - OpenTK.Graphics diff --git a/api/OpenTK.Graphics.SamplerHandle.yml b/api/OpenTK.Graphics.SamplerHandle.yml index 05b319d0..a85de8c2 100644 --- a/api/OpenTK.Graphics.SamplerHandle.yml +++ b/api/OpenTK.Graphics.SamplerHandle.yml @@ -23,12 +23,8 @@ items: fullName: OpenTK.Graphics.SamplerHandle type: Struct source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SamplerHandle - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 1123 assemblies: - OpenTK.Graphics @@ -55,12 +51,8 @@ items: fullName: OpenTK.Graphics.SamplerHandle.Zero type: Field source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Zero - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 1125 assemblies: - OpenTK.Graphics @@ -82,12 +74,8 @@ items: fullName: OpenTK.Graphics.SamplerHandle.Handle type: Field source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Handle - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 1127 assemblies: - OpenTK.Graphics @@ -109,12 +97,8 @@ items: fullName: OpenTK.Graphics.SamplerHandle.SamplerHandle(int) type: Constructor source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 1129 assemblies: - OpenTK.Graphics @@ -141,12 +125,8 @@ items: fullName: OpenTK.Graphics.SamplerHandle.Equals(object?) type: Method source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Equals - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 1134 assemblies: - OpenTK.Graphics @@ -180,12 +160,8 @@ items: fullName: OpenTK.Graphics.SamplerHandle.Equals(OpenTK.Graphics.SamplerHandle) type: Method source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Equals - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 1139 assemblies: - OpenTK.Graphics @@ -217,12 +193,8 @@ items: fullName: OpenTK.Graphics.SamplerHandle.GetHashCode() type: Method source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetHashCode - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 1144 assemblies: - OpenTK.Graphics @@ -249,12 +221,8 @@ items: fullName: OpenTK.Graphics.SamplerHandle.operator ==(OpenTK.Graphics.SamplerHandle, OpenTK.Graphics.SamplerHandle) type: Operator source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Equality - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 1149 assemblies: - OpenTK.Graphics @@ -285,12 +253,8 @@ items: fullName: OpenTK.Graphics.SamplerHandle.operator !=(OpenTK.Graphics.SamplerHandle, OpenTK.Graphics.SamplerHandle) type: Operator source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Inequality - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 1154 assemblies: - OpenTK.Graphics @@ -321,12 +285,8 @@ items: fullName: OpenTK.Graphics.SamplerHandle.explicit operator OpenTK.Graphics.SamplerHandle(int) type: Operator source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Explicit - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 1159 assemblies: - OpenTK.Graphics @@ -355,12 +315,8 @@ items: fullName: OpenTK.Graphics.SamplerHandle.explicit operator int(OpenTK.Graphics.SamplerHandle) type: Operator source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Explicit - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 1160 assemblies: - OpenTK.Graphics diff --git a/api/OpenTK.Graphics.ShaderHandle.yml b/api/OpenTK.Graphics.ShaderHandle.yml index 9429a285..7edb8432 100644 --- a/api/OpenTK.Graphics.ShaderHandle.yml +++ b/api/OpenTK.Graphics.ShaderHandle.yml @@ -23,12 +23,8 @@ items: fullName: OpenTK.Graphics.ShaderHandle type: Struct source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ShaderHandle - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 963 assemblies: - OpenTK.Graphics @@ -55,12 +51,8 @@ items: fullName: OpenTK.Graphics.ShaderHandle.Zero type: Field source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Zero - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 965 assemblies: - OpenTK.Graphics @@ -82,12 +74,8 @@ items: fullName: OpenTK.Graphics.ShaderHandle.Handle type: Field source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Handle - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 967 assemblies: - OpenTK.Graphics @@ -109,12 +97,8 @@ items: fullName: OpenTK.Graphics.ShaderHandle.ShaderHandle(int) type: Constructor source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 969 assemblies: - OpenTK.Graphics @@ -141,12 +125,8 @@ items: fullName: OpenTK.Graphics.ShaderHandle.Equals(object?) type: Method source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Equals - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 974 assemblies: - OpenTK.Graphics @@ -180,12 +160,8 @@ items: fullName: OpenTK.Graphics.ShaderHandle.Equals(OpenTK.Graphics.ShaderHandle) type: Method source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Equals - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 979 assemblies: - OpenTK.Graphics @@ -217,12 +193,8 @@ items: fullName: OpenTK.Graphics.ShaderHandle.GetHashCode() type: Method source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetHashCode - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 984 assemblies: - OpenTK.Graphics @@ -249,12 +221,8 @@ items: fullName: OpenTK.Graphics.ShaderHandle.operator ==(OpenTK.Graphics.ShaderHandle, OpenTK.Graphics.ShaderHandle) type: Operator source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Equality - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 989 assemblies: - OpenTK.Graphics @@ -285,12 +253,8 @@ items: fullName: OpenTK.Graphics.ShaderHandle.operator !=(OpenTK.Graphics.ShaderHandle, OpenTK.Graphics.ShaderHandle) type: Operator source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Inequality - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 994 assemblies: - OpenTK.Graphics @@ -321,12 +285,8 @@ items: fullName: OpenTK.Graphics.ShaderHandle.explicit operator OpenTK.Graphics.ShaderHandle(int) type: Operator source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Explicit - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 999 assemblies: - OpenTK.Graphics @@ -355,12 +315,8 @@ items: fullName: OpenTK.Graphics.ShaderHandle.explicit operator int(OpenTK.Graphics.ShaderHandle) type: Operator source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Explicit - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 1000 assemblies: - OpenTK.Graphics diff --git a/api/OpenTK.Graphics.SpecialNumbers.yml b/api/OpenTK.Graphics.SpecialNumbers.yml index 9005ab48..2e9edd7b 100644 --- a/api/OpenTK.Graphics.SpecialNumbers.yml +++ b/api/OpenTK.Graphics.SpecialNumbers.yml @@ -26,12 +26,8 @@ items: fullName: OpenTK.Graphics.SpecialNumbers type: Class source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SpecialNumbers - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 617 assemblies: - OpenTK.Graphics @@ -63,12 +59,8 @@ items: fullName: OpenTK.Graphics.SpecialNumbers.False type: Field source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: "False" - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 619 assemblies: - OpenTK.Graphics @@ -90,12 +82,8 @@ items: fullName: OpenTK.Graphics.SpecialNumbers.NoError type: Field source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: NoError - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 620 assemblies: - OpenTK.Graphics @@ -117,12 +105,8 @@ items: fullName: OpenTK.Graphics.SpecialNumbers.Zero type: Field source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Zero - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 621 assemblies: - OpenTK.Graphics @@ -144,12 +128,8 @@ items: fullName: OpenTK.Graphics.SpecialNumbers.None type: Field source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: None - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 622 assemblies: - OpenTK.Graphics @@ -171,12 +151,8 @@ items: fullName: OpenTK.Graphics.SpecialNumbers.NoneOES type: Field source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: NoneOES - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 623 assemblies: - OpenTK.Graphics @@ -198,12 +174,8 @@ items: fullName: OpenTK.Graphics.SpecialNumbers.True type: Field source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: "True" - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 624 assemblies: - OpenTK.Graphics @@ -225,12 +197,8 @@ items: fullName: OpenTK.Graphics.SpecialNumbers.One type: Field source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: One - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 625 assemblies: - OpenTK.Graphics @@ -252,12 +220,8 @@ items: fullName: OpenTK.Graphics.SpecialNumbers.InvalidIndex type: Field source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: InvalidIndex - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 626 assemblies: - OpenTK.Graphics @@ -279,12 +243,8 @@ items: fullName: OpenTK.Graphics.SpecialNumbers.AllPixelsAMD type: Field source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: AllPixelsAMD - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 627 assemblies: - OpenTK.Graphics @@ -306,12 +266,8 @@ items: fullName: OpenTK.Graphics.SpecialNumbers.TimeoutIgnored type: Field source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TimeoutIgnored - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 628 assemblies: - OpenTK.Graphics @@ -333,12 +289,8 @@ items: fullName: OpenTK.Graphics.SpecialNumbers.TimeoutIgnoredAPPLE type: Field source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TimeoutIgnoredAPPLE - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 629 assemblies: - OpenTK.Graphics @@ -360,12 +312,8 @@ items: fullName: OpenTK.Graphics.SpecialNumbers.UUIDSizeEXT type: Field source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: UUIDSizeEXT - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 636 assemblies: - OpenTK.Graphics @@ -387,12 +335,8 @@ items: fullName: OpenTK.Graphics.SpecialNumbers.LUIDSizeEXT type: Field source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: LUIDSizeEXT - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 637 assemblies: - OpenTK.Graphics diff --git a/api/OpenTK.Graphics.TextureHandle.yml b/api/OpenTK.Graphics.TextureHandle.yml index 82da82db..8f95acce 100644 --- a/api/OpenTK.Graphics.TextureHandle.yml +++ b/api/OpenTK.Graphics.TextureHandle.yml @@ -23,12 +23,8 @@ items: fullName: OpenTK.Graphics.TextureHandle type: Struct source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TextureHandle - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 883 assemblies: - OpenTK.Graphics @@ -55,12 +51,8 @@ items: fullName: OpenTK.Graphics.TextureHandle.Zero type: Field source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Zero - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 885 assemblies: - OpenTK.Graphics @@ -82,12 +74,8 @@ items: fullName: OpenTK.Graphics.TextureHandle.Handle type: Field source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Handle - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 887 assemblies: - OpenTK.Graphics @@ -109,12 +97,8 @@ items: fullName: OpenTK.Graphics.TextureHandle.TextureHandle(int) type: Constructor source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 889 assemblies: - OpenTK.Graphics @@ -141,12 +125,8 @@ items: fullName: OpenTK.Graphics.TextureHandle.Equals(object?) type: Method source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Equals - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 894 assemblies: - OpenTK.Graphics @@ -180,12 +160,8 @@ items: fullName: OpenTK.Graphics.TextureHandle.Equals(OpenTK.Graphics.TextureHandle) type: Method source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Equals - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 899 assemblies: - OpenTK.Graphics @@ -217,12 +193,8 @@ items: fullName: OpenTK.Graphics.TextureHandle.GetHashCode() type: Method source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetHashCode - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 904 assemblies: - OpenTK.Graphics @@ -249,12 +221,8 @@ items: fullName: OpenTK.Graphics.TextureHandle.operator ==(OpenTK.Graphics.TextureHandle, OpenTK.Graphics.TextureHandle) type: Operator source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Equality - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 909 assemblies: - OpenTK.Graphics @@ -285,12 +253,8 @@ items: fullName: OpenTK.Graphics.TextureHandle.operator !=(OpenTK.Graphics.TextureHandle, OpenTK.Graphics.TextureHandle) type: Operator source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Inequality - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 914 assemblies: - OpenTK.Graphics @@ -321,12 +285,8 @@ items: fullName: OpenTK.Graphics.TextureHandle.explicit operator OpenTK.Graphics.TextureHandle(int) type: Operator source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Explicit - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 919 assemblies: - OpenTK.Graphics @@ -355,12 +315,8 @@ items: fullName: OpenTK.Graphics.TextureHandle.explicit operator int(OpenTK.Graphics.TextureHandle) type: Operator source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Explicit - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 920 assemblies: - OpenTK.Graphics diff --git a/api/OpenTK.Graphics.TransformFeedbackHandle.yml b/api/OpenTK.Graphics.TransformFeedbackHandle.yml index 73f484e2..7b9e3cfb 100644 --- a/api/OpenTK.Graphics.TransformFeedbackHandle.yml +++ b/api/OpenTK.Graphics.TransformFeedbackHandle.yml @@ -23,12 +23,8 @@ items: fullName: OpenTK.Graphics.TransformFeedbackHandle type: Struct source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TransformFeedbackHandle - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 1163 assemblies: - OpenTK.Graphics @@ -55,12 +51,8 @@ items: fullName: OpenTK.Graphics.TransformFeedbackHandle.Zero type: Field source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Zero - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 1165 assemblies: - OpenTK.Graphics @@ -82,12 +74,8 @@ items: fullName: OpenTK.Graphics.TransformFeedbackHandle.Handle type: Field source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Handle - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 1167 assemblies: - OpenTK.Graphics @@ -109,12 +97,8 @@ items: fullName: OpenTK.Graphics.TransformFeedbackHandle.TransformFeedbackHandle(int) type: Constructor source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 1169 assemblies: - OpenTK.Graphics @@ -141,12 +125,8 @@ items: fullName: OpenTK.Graphics.TransformFeedbackHandle.Equals(object?) type: Method source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Equals - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 1174 assemblies: - OpenTK.Graphics @@ -180,12 +160,8 @@ items: fullName: OpenTK.Graphics.TransformFeedbackHandle.Equals(OpenTK.Graphics.TransformFeedbackHandle) type: Method source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Equals - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 1179 assemblies: - OpenTK.Graphics @@ -217,12 +193,8 @@ items: fullName: OpenTK.Graphics.TransformFeedbackHandle.GetHashCode() type: Method source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetHashCode - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 1184 assemblies: - OpenTK.Graphics @@ -249,12 +221,8 @@ items: fullName: OpenTK.Graphics.TransformFeedbackHandle.operator ==(OpenTK.Graphics.TransformFeedbackHandle, OpenTK.Graphics.TransformFeedbackHandle) type: Operator source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Equality - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 1189 assemblies: - OpenTK.Graphics @@ -285,12 +253,8 @@ items: fullName: OpenTK.Graphics.TransformFeedbackHandle.operator !=(OpenTK.Graphics.TransformFeedbackHandle, OpenTK.Graphics.TransformFeedbackHandle) type: Operator source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Inequality - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 1194 assemblies: - OpenTK.Graphics @@ -321,12 +285,8 @@ items: fullName: OpenTK.Graphics.TransformFeedbackHandle.explicit operator OpenTK.Graphics.TransformFeedbackHandle(int) type: Operator source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Explicit - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 1199 assemblies: - OpenTK.Graphics @@ -355,12 +315,8 @@ items: fullName: OpenTK.Graphics.TransformFeedbackHandle.explicit operator int(OpenTK.Graphics.TransformFeedbackHandle) type: Operator source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Explicit - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 1200 assemblies: - OpenTK.Graphics diff --git a/api/OpenTK.Graphics.VKLoader.yml b/api/OpenTK.Graphics.VKLoader.yml new file mode 100644 index 00000000..27dccc67 --- /dev/null +++ b/api/OpenTK.Graphics.VKLoader.yml @@ -0,0 +1,532 @@ +### YamlMime:ManagedReference +items: +- uid: OpenTK.Graphics.VKLoader + commentId: T:OpenTK.Graphics.VKLoader + id: VKLoader + parent: OpenTK.Graphics + children: + - OpenTK.Graphics.VKLoader.GetInstanceProcAddress(OpenTK.Graphics.Vulkan.VkInstance,System.String) + - OpenTK.Graphics.VKLoader.GetInstanceProcAddress(System.String) + - OpenTK.Graphics.VKLoader.Init + - OpenTK.Graphics.VKLoader.Instance + - OpenTK.Graphics.VKLoader.SetInstance(OpenTK.Graphics.Vulkan.VkInstance) + - OpenTK.Graphics.VKLoader.VulkanHandle + langs: + - csharp + - vb + name: VKLoader + nameWithType: VKLoader + fullName: OpenTK.Graphics.VKLoader + type: Class + source: + id: VKLoader + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\VKLoader.cs + startLine: 10 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics + syntax: + content: public static class VKLoader + content.vb: Public Module VKLoader + inheritance: + - System.Object + inheritedMembers: + - System.Object.Equals(System.Object) + - System.Object.Equals(System.Object,System.Object) + - System.Object.GetHashCode + - System.Object.GetType + - System.Object.MemberwiseClone + - System.Object.ReferenceEquals(System.Object,System.Object) + - System.Object.ToString +- uid: OpenTK.Graphics.VKLoader.VulkanHandle + commentId: F:OpenTK.Graphics.VKLoader.VulkanHandle + id: VulkanHandle + parent: OpenTK.Graphics.VKLoader + langs: + - csharp + - vb + name: VulkanHandle + nameWithType: VKLoader.VulkanHandle + fullName: OpenTK.Graphics.VKLoader.VulkanHandle + type: Field + source: + id: VulkanHandle + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\VKLoader.cs + startLine: 12 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics + syntax: + content: public static nint VulkanHandle + return: + type: System.IntPtr + content.vb: Public Shared VulkanHandle As IntPtr +- uid: OpenTK.Graphics.VKLoader.Instance + commentId: F:OpenTK.Graphics.VKLoader.Instance + id: Instance + parent: OpenTK.Graphics.VKLoader + langs: + - csharp + - vb + name: Instance + nameWithType: VKLoader.Instance + fullName: OpenTK.Graphics.VKLoader.Instance + type: Field + source: + id: Instance + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\VKLoader.cs + startLine: 14 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics + syntax: + content: public static VkInstance Instance + return: + type: OpenTK.Graphics.Vulkan.VkInstance + content.vb: Public Shared Instance As VkInstance +- uid: OpenTK.Graphics.VKLoader.Init + commentId: M:OpenTK.Graphics.VKLoader.Init + id: Init + parent: OpenTK.Graphics.VKLoader + langs: + - csharp + - vb + name: Init() + nameWithType: VKLoader.Init() + fullName: OpenTK.Graphics.VKLoader.Init() + type: Method + source: + id: Init + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\VKLoader.cs + startLine: 16 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics + syntax: + content: public static void Init() + content.vb: Public Shared Sub Init() + overload: OpenTK.Graphics.VKLoader.Init* +- uid: OpenTK.Graphics.VKLoader.SetInstance(OpenTK.Graphics.Vulkan.VkInstance) + commentId: M:OpenTK.Graphics.VKLoader.SetInstance(OpenTK.Graphics.Vulkan.VkInstance) + id: SetInstance(OpenTK.Graphics.Vulkan.VkInstance) + parent: OpenTK.Graphics.VKLoader + langs: + - csharp + - vb + name: SetInstance(VkInstance) + nameWithType: VKLoader.SetInstance(VkInstance) + fullName: OpenTK.Graphics.VKLoader.SetInstance(OpenTK.Graphics.Vulkan.VkInstance) + type: Method + source: + id: SetInstance + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\VKLoader.cs + startLine: 47 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics + syntax: + content: public static void SetInstance(VkInstance instance) + parameters: + - id: instance + type: OpenTK.Graphics.Vulkan.VkInstance + content.vb: Public Shared Sub SetInstance(instance As VkInstance) + overload: OpenTK.Graphics.VKLoader.SetInstance* +- uid: OpenTK.Graphics.VKLoader.GetInstanceProcAddress(System.String) + commentId: M:OpenTK.Graphics.VKLoader.GetInstanceProcAddress(System.String) + id: GetInstanceProcAddress(System.String) + parent: OpenTK.Graphics.VKLoader + langs: + - csharp + - vb + name: GetInstanceProcAddress(string) + nameWithType: VKLoader.GetInstanceProcAddress(string) + fullName: OpenTK.Graphics.VKLoader.GetInstanceProcAddress(string) + type: Method + source: + id: GetInstanceProcAddress + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\VKLoader.cs + startLine: 52 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics + syntax: + content: public static nint GetInstanceProcAddress(string name) + parameters: + - id: name + type: System.String + return: + type: System.IntPtr + content.vb: Public Shared Function GetInstanceProcAddress(name As String) As IntPtr + overload: OpenTK.Graphics.VKLoader.GetInstanceProcAddress* + nameWithType.vb: VKLoader.GetInstanceProcAddress(String) + fullName.vb: OpenTK.Graphics.VKLoader.GetInstanceProcAddress(String) + name.vb: GetInstanceProcAddress(String) +- uid: OpenTK.Graphics.VKLoader.GetInstanceProcAddress(OpenTK.Graphics.Vulkan.VkInstance,System.String) + commentId: M:OpenTK.Graphics.VKLoader.GetInstanceProcAddress(OpenTK.Graphics.Vulkan.VkInstance,System.String) + id: GetInstanceProcAddress(OpenTK.Graphics.Vulkan.VkInstance,System.String) + parent: OpenTK.Graphics.VKLoader + langs: + - csharp + - vb + name: GetInstanceProcAddress(VkInstance, string) + nameWithType: VKLoader.GetInstanceProcAddress(VkInstance, string) + fullName: OpenTK.Graphics.VKLoader.GetInstanceProcAddress(OpenTK.Graphics.Vulkan.VkInstance, string) + type: Method + source: + id: GetInstanceProcAddress + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\VKLoader.cs + startLine: 57 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics + syntax: + content: public static nint GetInstanceProcAddress(VkInstance instance, string name) + parameters: + - id: instance + type: OpenTK.Graphics.Vulkan.VkInstance + - id: name + type: System.String + return: + type: System.IntPtr + content.vb: Public Shared Function GetInstanceProcAddress(instance As VkInstance, name As String) As IntPtr + overload: OpenTK.Graphics.VKLoader.GetInstanceProcAddress* + nameWithType.vb: VKLoader.GetInstanceProcAddress(VkInstance, String) + fullName.vb: OpenTK.Graphics.VKLoader.GetInstanceProcAddress(OpenTK.Graphics.Vulkan.VkInstance, String) + name.vb: GetInstanceProcAddress(VkInstance, String) +references: +- uid: OpenTK.Graphics + commentId: N:OpenTK.Graphics + href: OpenTK.html + name: OpenTK.Graphics + nameWithType: OpenTK.Graphics + fullName: OpenTK.Graphics + spec.csharp: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Graphics + name: Graphics + href: OpenTK.Graphics.html + spec.vb: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Graphics + name: Graphics + href: OpenTK.Graphics.html +- uid: System.Object + commentId: T:System.Object + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + name: object + nameWithType: object + fullName: object + nameWithType.vb: Object + fullName.vb: Object + name.vb: Object +- uid: System.Object.Equals(System.Object) + commentId: M:System.Object.Equals(System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + name: Equals(object) + nameWithType: object.Equals(object) + fullName: object.Equals(object) + nameWithType.vb: Object.Equals(Object) + fullName.vb: Object.Equals(Object) + name.vb: Equals(Object) + spec.csharp: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.Equals(System.Object,System.Object) + commentId: M:System.Object.Equals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + name: Equals(object, object) + nameWithType: object.Equals(object, object) + fullName: object.Equals(object, object) + nameWithType.vb: Object.Equals(Object, Object) + fullName.vb: Object.Equals(Object, Object) + name.vb: Equals(Object, Object) + spec.csharp: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.GetHashCode + commentId: M:System.Object.GetHashCode + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + name: GetHashCode() + nameWithType: object.GetHashCode() + fullName: object.GetHashCode() + nameWithType.vb: Object.GetHashCode() + fullName.vb: Object.GetHashCode() + spec.csharp: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) +- uid: System.Object.GetType + commentId: M:System.Object.GetType + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + name: GetType() + nameWithType: object.GetType() + fullName: object.GetType() + nameWithType.vb: Object.GetType() + fullName.vb: Object.GetType() + spec.csharp: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) +- uid: System.Object.MemberwiseClone + commentId: M:System.Object.MemberwiseClone + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + name: MemberwiseClone() + nameWithType: object.MemberwiseClone() + fullName: object.MemberwiseClone() + nameWithType.vb: Object.MemberwiseClone() + fullName.vb: Object.MemberwiseClone() + spec.csharp: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) + spec.vb: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) +- uid: System.Object.ReferenceEquals(System.Object,System.Object) + commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + name: ReferenceEquals(object, object) + nameWithType: object.ReferenceEquals(object, object) + fullName: object.ReferenceEquals(object, object) + nameWithType.vb: Object.ReferenceEquals(Object, Object) + fullName.vb: Object.ReferenceEquals(Object, Object) + name.vb: ReferenceEquals(Object, Object) + spec.csharp: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.ToString + commentId: M:System.Object.ToString + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + name: ToString() + nameWithType: object.ToString() + fullName: object.ToString() + nameWithType.vb: Object.ToString() + fullName.vb: Object.ToString() + spec.csharp: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) + spec.vb: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) +- uid: System + commentId: N:System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System + nameWithType: System + fullName: System +- uid: System.IntPtr + commentId: T:System.IntPtr + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.intptr + name: nint + nameWithType: nint + fullName: nint + nameWithType.vb: IntPtr + fullName.vb: System.IntPtr + name.vb: IntPtr +- uid: OpenTK.Graphics.Vulkan.VkInstance + commentId: T:OpenTK.Graphics.Vulkan.VkInstance + parent: OpenTK.Graphics.Vulkan + href: OpenTK.Graphics.Vulkan.VkInstance.html + name: VkInstance + nameWithType: VkInstance + fullName: OpenTK.Graphics.Vulkan.VkInstance +- uid: OpenTK.Graphics.Vulkan + commentId: N:OpenTK.Graphics.Vulkan + href: OpenTK.html + name: OpenTK.Graphics.Vulkan + nameWithType: OpenTK.Graphics.Vulkan + fullName: OpenTK.Graphics.Vulkan + spec.csharp: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Graphics + name: Graphics + href: OpenTK.Graphics.html + - name: . + - uid: OpenTK.Graphics.Vulkan + name: Vulkan + href: OpenTK.Graphics.Vulkan.html + spec.vb: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Graphics + name: Graphics + href: OpenTK.Graphics.html + - name: . + - uid: OpenTK.Graphics.Vulkan + name: Vulkan + href: OpenTK.Graphics.Vulkan.html +- uid: OpenTK.Graphics.VKLoader.Init* + commentId: Overload:OpenTK.Graphics.VKLoader.Init + href: OpenTK.Graphics.VKLoader.html#OpenTK_Graphics_VKLoader_Init + name: Init + nameWithType: VKLoader.Init + fullName: OpenTK.Graphics.VKLoader.Init +- uid: OpenTK.Graphics.VKLoader.SetInstance* + commentId: Overload:OpenTK.Graphics.VKLoader.SetInstance + href: OpenTK.Graphics.VKLoader.html#OpenTK_Graphics_VKLoader_SetInstance_OpenTK_Graphics_Vulkan_VkInstance_ + name: SetInstance + nameWithType: VKLoader.SetInstance + fullName: OpenTK.Graphics.VKLoader.SetInstance +- uid: OpenTK.Graphics.VKLoader.GetInstanceProcAddress* + commentId: Overload:OpenTK.Graphics.VKLoader.GetInstanceProcAddress + href: OpenTK.Graphics.VKLoader.html#OpenTK_Graphics_VKLoader_GetInstanceProcAddress_System_String_ + name: GetInstanceProcAddress + nameWithType: VKLoader.GetInstanceProcAddress + fullName: OpenTK.Graphics.VKLoader.GetInstanceProcAddress +- uid: System.String + commentId: T:System.String + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + name: string + nameWithType: string + fullName: string + nameWithType.vb: String + fullName.vb: String + name.vb: String diff --git a/api/OpenTK.Graphics.VertexArrayHandle.yml b/api/OpenTK.Graphics.VertexArrayHandle.yml index 7bd251a2..a6486533 100644 --- a/api/OpenTK.Graphics.VertexArrayHandle.yml +++ b/api/OpenTK.Graphics.VertexArrayHandle.yml @@ -23,12 +23,8 @@ items: fullName: OpenTK.Graphics.VertexArrayHandle type: Struct source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: VertexArrayHandle - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 1203 assemblies: - OpenTK.Graphics @@ -55,12 +51,8 @@ items: fullName: OpenTK.Graphics.VertexArrayHandle.Zero type: Field source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Zero - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 1205 assemblies: - OpenTK.Graphics @@ -82,12 +74,8 @@ items: fullName: OpenTK.Graphics.VertexArrayHandle.Handle type: Field source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Handle - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 1207 assemblies: - OpenTK.Graphics @@ -109,12 +97,8 @@ items: fullName: OpenTK.Graphics.VertexArrayHandle.VertexArrayHandle(int) type: Constructor source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 1209 assemblies: - OpenTK.Graphics @@ -141,12 +125,8 @@ items: fullName: OpenTK.Graphics.VertexArrayHandle.Equals(object?) type: Method source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Equals - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 1214 assemblies: - OpenTK.Graphics @@ -180,12 +160,8 @@ items: fullName: OpenTK.Graphics.VertexArrayHandle.Equals(OpenTK.Graphics.VertexArrayHandle) type: Method source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Equals - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 1219 assemblies: - OpenTK.Graphics @@ -217,12 +193,8 @@ items: fullName: OpenTK.Graphics.VertexArrayHandle.GetHashCode() type: Method source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetHashCode - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 1224 assemblies: - OpenTK.Graphics @@ -249,12 +221,8 @@ items: fullName: OpenTK.Graphics.VertexArrayHandle.operator ==(OpenTK.Graphics.VertexArrayHandle, OpenTK.Graphics.VertexArrayHandle) type: Operator source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Equality - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 1229 assemblies: - OpenTK.Graphics @@ -285,12 +253,8 @@ items: fullName: OpenTK.Graphics.VertexArrayHandle.operator !=(OpenTK.Graphics.VertexArrayHandle, OpenTK.Graphics.VertexArrayHandle) type: Operator source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Inequality - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 1234 assemblies: - OpenTK.Graphics @@ -321,12 +285,8 @@ items: fullName: OpenTK.Graphics.VertexArrayHandle.explicit operator OpenTK.Graphics.VertexArrayHandle(int) type: Operator source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Explicit - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 1239 assemblies: - OpenTK.Graphics @@ -355,12 +315,8 @@ items: fullName: OpenTK.Graphics.VertexArrayHandle.explicit operator int(OpenTK.Graphics.VertexArrayHandle) type: Operator source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Explicit - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 1240 assemblies: - OpenTK.Graphics diff --git a/api/OpenTK.Graphics.WGLLoader.BindingsContext.yml b/api/OpenTK.Graphics.WGLLoader.BindingsContext.yml index 18d325e7..329f10f4 100644 --- a/api/OpenTK.Graphics.WGLLoader.BindingsContext.yml +++ b/api/OpenTK.Graphics.WGLLoader.BindingsContext.yml @@ -14,12 +14,8 @@ items: fullName: OpenTK.Graphics.WGLLoader.BindingsContext type: Class source: - remote: - path: src/OpenTK.Graphics/WGLLoader.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: BindingsContext - path: opentk/src/OpenTK.Graphics/WGLLoader.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGLLoader.cs startLine: 13 assemblies: - OpenTK.Graphics @@ -49,12 +45,8 @@ items: fullName: OpenTK.Graphics.WGLLoader.BindingsContext.GetProcAddress(string) type: Method source: - remote: - path: src/OpenTK.Graphics/WGLLoader.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetProcAddress - path: opentk/src/OpenTK.Graphics/WGLLoader.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGLLoader.cs startLine: 18 assemblies: - OpenTK.Graphics diff --git a/api/OpenTK.Graphics.WGLLoader.yml b/api/OpenTK.Graphics.WGLLoader.yml index b476163d..5124f36a 100644 --- a/api/OpenTK.Graphics.WGLLoader.yml +++ b/api/OpenTK.Graphics.WGLLoader.yml @@ -13,12 +13,8 @@ items: fullName: OpenTK.Graphics.WGLLoader type: Class source: - remote: - path: src/OpenTK.Graphics/WGLLoader.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: WGLLoader - path: opentk/src/OpenTK.Graphics/WGLLoader.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGLLoader.cs startLine: 11 assemblies: - OpenTK.Graphics diff --git a/api/OpenTK.Graphics.Wgl.AccelerationType.yml b/api/OpenTK.Graphics.Wgl.AccelerationType.yml index 6a9759a7..061c733f 100644 --- a/api/OpenTK.Graphics.Wgl.AccelerationType.yml +++ b/api/OpenTK.Graphics.Wgl.AccelerationType.yml @@ -19,12 +19,8 @@ items: fullName: OpenTK.Graphics.Wgl.AccelerationType type: Enum source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: AccelerationType - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 315 assemblies: - OpenTK.Graphics @@ -44,12 +40,8 @@ items: fullName: OpenTK.Graphics.Wgl.AccelerationType.NoAccelerationArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: NoAccelerationArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 317 assemblies: - OpenTK.Graphics @@ -70,12 +62,8 @@ items: fullName: OpenTK.Graphics.Wgl.AccelerationType.NoAccelerationExt type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: NoAccelerationExt - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 318 assemblies: - OpenTK.Graphics @@ -96,12 +84,8 @@ items: fullName: OpenTK.Graphics.Wgl.AccelerationType.GenericAccelerationArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GenericAccelerationArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 319 assemblies: - OpenTK.Graphics @@ -122,12 +106,8 @@ items: fullName: OpenTK.Graphics.Wgl.AccelerationType.GenericAccelerationExt type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GenericAccelerationExt - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 320 assemblies: - OpenTK.Graphics @@ -148,12 +128,8 @@ items: fullName: OpenTK.Graphics.Wgl.AccelerationType.FullAccelerationArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: FullAccelerationArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 321 assemblies: - OpenTK.Graphics @@ -174,12 +150,8 @@ items: fullName: OpenTK.Graphics.Wgl.AccelerationType.FullAccelerationExt type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: FullAccelerationExt - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 322 assemblies: - OpenTK.Graphics diff --git a/api/OpenTK.Graphics.Wgl.All.yml b/api/OpenTK.Graphics.Wgl.All.yml index 6dcafde7..527e041c 100644 --- a/api/OpenTK.Graphics.Wgl.All.yml +++ b/api/OpenTK.Graphics.Wgl.All.yml @@ -317,12 +317,8 @@ items: fullName: OpenTK.Graphics.Wgl.All type: Enum source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: All - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 8 assemblies: - OpenTK.Graphics @@ -342,12 +338,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.AccessReadOnlyNv type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: AccessReadOnlyNv - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 10 assemblies: - OpenTK.Graphics @@ -368,12 +360,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.ContextReleaseBehaviorNoneArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ContextReleaseBehaviorNoneArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 11 assemblies: - OpenTK.Graphics @@ -394,12 +382,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.FontLines type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: FontLines - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 12 assemblies: - OpenTK.Graphics @@ -420,12 +404,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.None type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: None - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 13 assemblies: - OpenTK.Graphics @@ -446,12 +426,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.AccessReadWriteNv type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: AccessReadWriteNv - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 14 assemblies: - OpenTK.Graphics @@ -472,12 +448,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.ContextCoreProfileBitArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ContextCoreProfileBitArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 15 assemblies: - OpenTK.Graphics @@ -498,12 +470,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.ContextDebugBitArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ContextDebugBitArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 16 assemblies: - OpenTK.Graphics @@ -524,12 +492,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.FontPolygons type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: FontPolygons - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 17 assemblies: - OpenTK.Graphics @@ -550,12 +514,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.FrontColorBufferBitArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: FrontColorBufferBitArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 18 assemblies: - OpenTK.Graphics @@ -576,12 +536,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.ImageBufferMinAccessI3d type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ImageBufferMinAccessI3d - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 19 assemblies: - OpenTK.Graphics @@ -602,12 +558,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.SwapMainPlane type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SwapMainPlane - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 20 assemblies: - OpenTK.Graphics @@ -628,12 +580,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.AccessWriteDiscardNv type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: AccessWriteDiscardNv - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 21 assemblies: - OpenTK.Graphics @@ -654,12 +602,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.BackColorBufferBitArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: BackColorBufferBitArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 22 assemblies: - OpenTK.Graphics @@ -680,12 +624,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.ContextCompatibilityProfileBitArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ContextCompatibilityProfileBitArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 23 assemblies: - OpenTK.Graphics @@ -706,12 +646,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.ContextForwardCompatibleBitArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ContextForwardCompatibleBitArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 24 assemblies: - OpenTK.Graphics @@ -732,12 +668,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.ImageBufferLockI3d type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ImageBufferLockI3d - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 25 assemblies: - OpenTK.Graphics @@ -758,12 +690,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.SwapOverlay1 type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SwapOverlay1 - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 26 assemblies: - OpenTK.Graphics @@ -784,12 +712,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.ContextEs2ProfileBitExt type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ContextEs2ProfileBitExt - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 27 assemblies: - OpenTK.Graphics @@ -810,12 +734,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.ContextEsProfileBitExt type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ContextEsProfileBitExt - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 28 assemblies: - OpenTK.Graphics @@ -836,12 +756,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.ContextRobustAccessBitArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ContextRobustAccessBitArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 29 assemblies: - OpenTK.Graphics @@ -862,12 +778,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.DepthBufferBitArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DepthBufferBitArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 30 assemblies: - OpenTK.Graphics @@ -888,12 +800,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.SwapOverlay2 type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SwapOverlay2 - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 31 assemblies: - OpenTK.Graphics @@ -914,12 +822,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.ContextResetIsolationBitArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ContextResetIsolationBitArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 32 assemblies: - OpenTK.Graphics @@ -940,12 +844,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.StencilBufferBitArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: StencilBufferBitArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 33 assemblies: - OpenTK.Graphics @@ -966,12 +866,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.SwapOverlay3 type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SwapOverlay3 - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 34 assemblies: - OpenTK.Graphics @@ -992,12 +888,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.SwapOverlay4 type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SwapOverlay4 - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 35 assemblies: - OpenTK.Graphics @@ -1018,12 +910,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.SwapOverlay5 type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SwapOverlay5 - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 36 assemblies: - OpenTK.Graphics @@ -1044,12 +932,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.SwapOverlay6 type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SwapOverlay6 - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 37 assemblies: - OpenTK.Graphics @@ -1070,12 +954,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.SwapOverlay7 type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SwapOverlay7 - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 38 assemblies: - OpenTK.Graphics @@ -1096,12 +976,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.SwapOverlay8 type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SwapOverlay8 - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 39 assemblies: - OpenTK.Graphics @@ -1122,12 +998,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.SwapOverlay9 type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SwapOverlay9 - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 40 assemblies: - OpenTK.Graphics @@ -1148,12 +1020,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.SwapOverlay10 type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SwapOverlay10 - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 41 assemblies: - OpenTK.Graphics @@ -1174,12 +1042,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.SwapOverlay11 type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SwapOverlay11 - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 42 assemblies: - OpenTK.Graphics @@ -1200,12 +1064,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.Texture2d type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Texture2d - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 43 assemblies: - OpenTK.Graphics @@ -1226,12 +1086,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.SwapOverlay12 type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SwapOverlay12 - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 44 assemblies: - OpenTK.Graphics @@ -1252,12 +1108,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.GpuVendorAmd type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GpuVendorAmd - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 45 assemblies: - OpenTK.Graphics @@ -1278,12 +1130,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.GpuRendererStringAmd type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GpuRendererStringAmd - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 46 assemblies: - OpenTK.Graphics @@ -1304,12 +1152,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.GpuOpenglVersionStringAmd type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GpuOpenglVersionStringAmd - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 47 assemblies: - OpenTK.Graphics @@ -1330,12 +1174,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.NumberPixelFormatsArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: NumberPixelFormatsArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 48 assemblies: - OpenTK.Graphics @@ -1356,12 +1196,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.NumberPixelFormatsExt type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: NumberPixelFormatsExt - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 49 assemblies: - OpenTK.Graphics @@ -1382,12 +1218,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.SwapOverlay13 type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SwapOverlay13 - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 50 assemblies: - OpenTK.Graphics @@ -1408,12 +1240,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.DrawToWindowArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DrawToWindowArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 51 assemblies: - OpenTK.Graphics @@ -1434,12 +1262,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.DrawToWindowExt type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DrawToWindowExt - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 52 assemblies: - OpenTK.Graphics @@ -1460,12 +1284,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.DrawToBitmapArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DrawToBitmapArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 53 assemblies: - OpenTK.Graphics @@ -1486,12 +1306,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.DrawToBitmapExt type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DrawToBitmapExt - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 54 assemblies: - OpenTK.Graphics @@ -1512,12 +1328,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.AccelerationArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: AccelerationArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 55 assemblies: - OpenTK.Graphics @@ -1538,12 +1350,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.AccelerationExt type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: AccelerationExt - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 56 assemblies: - OpenTK.Graphics @@ -1564,12 +1372,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.NeedPaletteArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: NeedPaletteArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 57 assemblies: - OpenTK.Graphics @@ -1590,12 +1394,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.NeedPaletteExt type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: NeedPaletteExt - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 58 assemblies: - OpenTK.Graphics @@ -1616,12 +1416,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.NeedSystemPaletteArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: NeedSystemPaletteArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 59 assemblies: - OpenTK.Graphics @@ -1642,12 +1438,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.NeedSystemPaletteExt type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: NeedSystemPaletteExt - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 60 assemblies: - OpenTK.Graphics @@ -1668,12 +1460,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.SwapLayerBuffersArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SwapLayerBuffersArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 61 assemblies: - OpenTK.Graphics @@ -1694,12 +1482,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.SwapLayerBuffersExt type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SwapLayerBuffersExt - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 62 assemblies: - OpenTK.Graphics @@ -1720,12 +1504,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.SwapMethodArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SwapMethodArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 63 assemblies: - OpenTK.Graphics @@ -1746,12 +1526,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.SwapMethodExt type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SwapMethodExt - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 64 assemblies: - OpenTK.Graphics @@ -1772,12 +1548,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.NumberOverlaysArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: NumberOverlaysArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 65 assemblies: - OpenTK.Graphics @@ -1798,12 +1570,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.NumberOverlaysExt type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: NumberOverlaysExt - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 66 assemblies: - OpenTK.Graphics @@ -1824,12 +1592,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.NumberUnderlaysArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: NumberUnderlaysArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 67 assemblies: - OpenTK.Graphics @@ -1850,12 +1614,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.NumberUnderlaysExt type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: NumberUnderlaysExt - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 68 assemblies: - OpenTK.Graphics @@ -1876,12 +1636,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.TransparentArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TransparentArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 69 assemblies: - OpenTK.Graphics @@ -1902,12 +1658,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.TransparentExt type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TransparentExt - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 70 assemblies: - OpenTK.Graphics @@ -1928,12 +1680,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.TransparentValueExt type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TransparentValueExt - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 71 assemblies: - OpenTK.Graphics @@ -1954,12 +1702,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.ShareDepthArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ShareDepthArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 72 assemblies: - OpenTK.Graphics @@ -1980,12 +1724,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.ShareDepthExt type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ShareDepthExt - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 73 assemblies: - OpenTK.Graphics @@ -2006,12 +1746,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.ShareStencilArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ShareStencilArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 74 assemblies: - OpenTK.Graphics @@ -2032,12 +1768,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.ShareStencilExt type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ShareStencilExt - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 75 assemblies: - OpenTK.Graphics @@ -2058,12 +1790,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.ShareAccumArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ShareAccumArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 76 assemblies: - OpenTK.Graphics @@ -2084,12 +1812,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.ShareAccumExt type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ShareAccumExt - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 77 assemblies: - OpenTK.Graphics @@ -2110,12 +1834,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.SupportGdiArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SupportGdiArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 78 assemblies: - OpenTK.Graphics @@ -2136,12 +1856,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.SupportGdiExt type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SupportGdiExt - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 79 assemblies: - OpenTK.Graphics @@ -2162,12 +1878,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.SupportOpenglArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SupportOpenglArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 80 assemblies: - OpenTK.Graphics @@ -2188,12 +1900,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.SupportOpenglExt type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SupportOpenglExt - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 81 assemblies: - OpenTK.Graphics @@ -2214,12 +1922,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.DoubleBufferArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DoubleBufferArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 82 assemblies: - OpenTK.Graphics @@ -2240,12 +1944,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.DoubleBufferExt type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DoubleBufferExt - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 83 assemblies: - OpenTK.Graphics @@ -2266,12 +1966,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.StereoArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: StereoArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 84 assemblies: - OpenTK.Graphics @@ -2292,12 +1988,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.StereoExt type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: StereoExt - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 85 assemblies: - OpenTK.Graphics @@ -2318,12 +2010,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.PixelTypeArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: PixelTypeArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 86 assemblies: - OpenTK.Graphics @@ -2344,12 +2032,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.PixelTypeExt type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: PixelTypeExt - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 87 assemblies: - OpenTK.Graphics @@ -2370,12 +2054,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.ColorBitsArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ColorBitsArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 88 assemblies: - OpenTK.Graphics @@ -2396,12 +2076,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.ColorBitsExt type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ColorBitsExt - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 89 assemblies: - OpenTK.Graphics @@ -2422,12 +2098,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.RedBitsArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: RedBitsArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 90 assemblies: - OpenTK.Graphics @@ -2448,12 +2120,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.RedBitsExt type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: RedBitsExt - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 91 assemblies: - OpenTK.Graphics @@ -2474,12 +2142,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.RedShiftArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: RedShiftArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 92 assemblies: - OpenTK.Graphics @@ -2500,12 +2164,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.RedShiftExt type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: RedShiftExt - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 93 assemblies: - OpenTK.Graphics @@ -2526,12 +2186,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.GreenBitsArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GreenBitsArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 94 assemblies: - OpenTK.Graphics @@ -2552,12 +2208,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.GreenBitsExt type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GreenBitsExt - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 95 assemblies: - OpenTK.Graphics @@ -2578,12 +2230,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.GreenShiftArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GreenShiftArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 96 assemblies: - OpenTK.Graphics @@ -2604,12 +2252,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.GreenShiftExt type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GreenShiftExt - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 97 assemblies: - OpenTK.Graphics @@ -2630,12 +2274,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.BlueBitsArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: BlueBitsArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 98 assemblies: - OpenTK.Graphics @@ -2656,12 +2296,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.BlueBitsExt type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: BlueBitsExt - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 99 assemblies: - OpenTK.Graphics @@ -2682,12 +2318,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.BlueShiftArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: BlueShiftArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 100 assemblies: - OpenTK.Graphics @@ -2708,12 +2340,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.BlueShiftExt type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: BlueShiftExt - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 101 assemblies: - OpenTK.Graphics @@ -2734,12 +2362,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.AlphaBitsArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: AlphaBitsArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 102 assemblies: - OpenTK.Graphics @@ -2760,12 +2384,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.AlphaBitsExt type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: AlphaBitsExt - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 103 assemblies: - OpenTK.Graphics @@ -2786,12 +2406,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.AlphaShiftArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: AlphaShiftArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 104 assemblies: - OpenTK.Graphics @@ -2812,12 +2428,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.AlphaShiftExt type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: AlphaShiftExt - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 105 assemblies: - OpenTK.Graphics @@ -2838,12 +2450,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.AccumBitsArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: AccumBitsArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 106 assemblies: - OpenTK.Graphics @@ -2864,12 +2472,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.AccumBitsExt type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: AccumBitsExt - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 107 assemblies: - OpenTK.Graphics @@ -2890,12 +2494,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.AccumRedBitsArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: AccumRedBitsArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 108 assemblies: - OpenTK.Graphics @@ -2916,12 +2516,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.AccumRedBitsExt type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: AccumRedBitsExt - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 109 assemblies: - OpenTK.Graphics @@ -2942,12 +2538,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.AccumGreenBitsArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: AccumGreenBitsArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 110 assemblies: - OpenTK.Graphics @@ -2968,12 +2560,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.AccumGreenBitsExt type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: AccumGreenBitsExt - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 111 assemblies: - OpenTK.Graphics @@ -2994,12 +2582,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.AccumBlueBitsArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: AccumBlueBitsArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 112 assemblies: - OpenTK.Graphics @@ -3020,12 +2604,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.AccumBlueBitsExt type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: AccumBlueBitsExt - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 113 assemblies: - OpenTK.Graphics @@ -3046,12 +2626,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.AccumAlphaBitsArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: AccumAlphaBitsArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 114 assemblies: - OpenTK.Graphics @@ -3072,12 +2648,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.AccumAlphaBitsExt type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: AccumAlphaBitsExt - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 115 assemblies: - OpenTK.Graphics @@ -3098,12 +2670,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.DepthBitsArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DepthBitsArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 116 assemblies: - OpenTK.Graphics @@ -3124,12 +2692,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.DepthBitsExt type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DepthBitsExt - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 117 assemblies: - OpenTK.Graphics @@ -3150,12 +2714,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.StencilBitsArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: StencilBitsArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 118 assemblies: - OpenTK.Graphics @@ -3176,12 +2736,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.StencilBitsExt type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: StencilBitsExt - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 119 assemblies: - OpenTK.Graphics @@ -3202,12 +2758,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.AuxBuffersArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: AuxBuffersArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 120 assemblies: - OpenTK.Graphics @@ -3228,12 +2780,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.AuxBuffersExt type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: AuxBuffersExt - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 121 assemblies: - OpenTK.Graphics @@ -3254,12 +2802,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.NoAccelerationArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: NoAccelerationArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 122 assemblies: - OpenTK.Graphics @@ -3280,12 +2824,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.NoAccelerationExt type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: NoAccelerationExt - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 123 assemblies: - OpenTK.Graphics @@ -3306,12 +2846,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.GenericAccelerationArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GenericAccelerationArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 124 assemblies: - OpenTK.Graphics @@ -3332,12 +2868,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.GenericAccelerationExt type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GenericAccelerationExt - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 125 assemblies: - OpenTK.Graphics @@ -3358,12 +2890,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.FullAccelerationArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: FullAccelerationArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 126 assemblies: - OpenTK.Graphics @@ -3384,12 +2912,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.FullAccelerationExt type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: FullAccelerationExt - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 127 assemblies: - OpenTK.Graphics @@ -3410,12 +2934,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.SwapExchangeArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SwapExchangeArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 128 assemblies: - OpenTK.Graphics @@ -3436,12 +2956,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.SwapExchangeExt type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SwapExchangeExt - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 129 assemblies: - OpenTK.Graphics @@ -3462,12 +2978,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.SwapCopyArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SwapCopyArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 130 assemblies: - OpenTK.Graphics @@ -3488,12 +3000,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.SwapCopyExt type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SwapCopyExt - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 131 assemblies: - OpenTK.Graphics @@ -3514,12 +3022,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.SwapUndefinedArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SwapUndefinedArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 132 assemblies: - OpenTK.Graphics @@ -3540,12 +3044,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.SwapUndefinedExt type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SwapUndefinedExt - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 133 assemblies: - OpenTK.Graphics @@ -3566,12 +3066,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.TypeRgbaArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TypeRgbaArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 134 assemblies: - OpenTK.Graphics @@ -3592,12 +3088,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.TypeRgbaExt type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TypeRgbaExt - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 135 assemblies: - OpenTK.Graphics @@ -3618,12 +3110,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.TypeColorindexArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TypeColorindexArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 136 assemblies: - OpenTK.Graphics @@ -3644,12 +3132,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.TypeColorindexExt type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TypeColorindexExt - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 137 assemblies: - OpenTK.Graphics @@ -3670,12 +3154,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.DrawToPbufferArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DrawToPbufferArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 138 assemblies: - OpenTK.Graphics @@ -3696,12 +3176,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.DrawToPbufferExt type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DrawToPbufferExt - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 139 assemblies: - OpenTK.Graphics @@ -3722,12 +3198,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.MaxPbufferPixelsArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MaxPbufferPixelsArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 140 assemblies: - OpenTK.Graphics @@ -3748,12 +3220,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.MaxPbufferPixelsExt type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MaxPbufferPixelsExt - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 141 assemblies: - OpenTK.Graphics @@ -3774,12 +3242,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.MaxPbufferWidthArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MaxPbufferWidthArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 142 assemblies: - OpenTK.Graphics @@ -3800,12 +3264,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.MaxPbufferWidthExt type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MaxPbufferWidthExt - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 143 assemblies: - OpenTK.Graphics @@ -3826,12 +3286,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.MaxPbufferHeightArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MaxPbufferHeightArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 144 assemblies: - OpenTK.Graphics @@ -3852,12 +3308,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.MaxPbufferHeightExt type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MaxPbufferHeightExt - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 145 assemblies: - OpenTK.Graphics @@ -3878,12 +3330,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.OptimalPbufferWidthExt type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: OptimalPbufferWidthExt - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 146 assemblies: - OpenTK.Graphics @@ -3904,12 +3352,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.OptimalPbufferHeightExt type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: OptimalPbufferHeightExt - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 147 assemblies: - OpenTK.Graphics @@ -3930,12 +3374,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.PbufferLargestArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: PbufferLargestArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 148 assemblies: - OpenTK.Graphics @@ -3956,12 +3396,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.PbufferLargestExt type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: PbufferLargestExt - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 149 assemblies: - OpenTK.Graphics @@ -3982,12 +3418,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.PbufferWidthArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: PbufferWidthArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 150 assemblies: - OpenTK.Graphics @@ -4008,12 +3440,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.PbufferWidthExt type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: PbufferWidthExt - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 151 assemblies: - OpenTK.Graphics @@ -4034,12 +3462,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.PbufferHeightArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: PbufferHeightArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 152 assemblies: - OpenTK.Graphics @@ -4060,12 +3484,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.PbufferHeightExt type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: PbufferHeightExt - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 153 assemblies: - OpenTK.Graphics @@ -4086,12 +3506,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.PbufferLostArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: PbufferLostArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 154 assemblies: - OpenTK.Graphics @@ -4112,12 +3528,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.TransparentRedValueArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TransparentRedValueArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 155 assemblies: - OpenTK.Graphics @@ -4138,12 +3550,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.TransparentGreenValueArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TransparentGreenValueArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 156 assemblies: - OpenTK.Graphics @@ -4164,12 +3572,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.TransparentBlueValueArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TransparentBlueValueArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 157 assemblies: - OpenTK.Graphics @@ -4190,12 +3594,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.TransparentAlphaValueArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TransparentAlphaValueArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 158 assemblies: - OpenTK.Graphics @@ -4216,12 +3616,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.TransparentIndexValueArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TransparentIndexValueArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 159 assemblies: - OpenTK.Graphics @@ -4242,12 +3638,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.DepthFloatExt type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DepthFloatExt - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 160 assemblies: - OpenTK.Graphics @@ -4268,12 +3660,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.SampleBuffersArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SampleBuffersArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 161 assemblies: - OpenTK.Graphics @@ -4294,12 +3682,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.SampleBuffersExt type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SampleBuffersExt - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 162 assemblies: - OpenTK.Graphics @@ -4320,12 +3704,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.CoverageSamplesNv type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CoverageSamplesNv - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 163 assemblies: - OpenTK.Graphics @@ -4346,12 +3726,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.SamplesArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SamplesArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 164 assemblies: - OpenTK.Graphics @@ -4372,12 +3748,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.SamplesExt type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SamplesExt - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 165 assemblies: - OpenTK.Graphics @@ -4398,12 +3770,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.ErrorInvalidPixelTypeArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ErrorInvalidPixelTypeArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 166 assemblies: - OpenTK.Graphics @@ -4424,12 +3792,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.ErrorInvalidPixelTypeExt type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ErrorInvalidPixelTypeExt - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 167 assemblies: - OpenTK.Graphics @@ -4450,12 +3814,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.GenlockSourceMultiviewI3d type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GenlockSourceMultiviewI3d - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 168 assemblies: - OpenTK.Graphics @@ -4476,12 +3836,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.GenlockSourceExternalSyncI3d type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GenlockSourceExternalSyncI3d - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 169 assemblies: - OpenTK.Graphics @@ -4502,12 +3858,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.GenlockSourceExternalFieldI3d type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GenlockSourceExternalFieldI3d - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 170 assemblies: - OpenTK.Graphics @@ -4528,12 +3880,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.GenlockSourceExternalTtlI3d type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GenlockSourceExternalTtlI3d - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 171 assemblies: - OpenTK.Graphics @@ -4554,12 +3902,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.GenlockSourceDigitalSyncI3d type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GenlockSourceDigitalSyncI3d - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 172 assemblies: - OpenTK.Graphics @@ -4580,12 +3924,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.GenlockSourceDigitalFieldI3d type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GenlockSourceDigitalFieldI3d - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 173 assemblies: - OpenTK.Graphics @@ -4606,12 +3946,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.GenlockSourceEdgeFallingI3d type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GenlockSourceEdgeFallingI3d - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 174 assemblies: - OpenTK.Graphics @@ -4632,12 +3968,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.GenlockSourceEdgeRisingI3d type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GenlockSourceEdgeRisingI3d - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 175 assemblies: - OpenTK.Graphics @@ -4658,12 +3990,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.GenlockSourceEdgeBothI3d type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GenlockSourceEdgeBothI3d - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 176 assemblies: - OpenTK.Graphics @@ -4684,12 +4012,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.GammaTableSizeI3d type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GammaTableSizeI3d - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 177 assemblies: - OpenTK.Graphics @@ -4710,12 +4034,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.GammaExcludeDesktopI3d type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GammaExcludeDesktopI3d - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 178 assemblies: - OpenTK.Graphics @@ -4736,12 +4056,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.DigitalVideoCursorAlphaFramebufferI3d type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DigitalVideoCursorAlphaFramebufferI3d - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 179 assemblies: - OpenTK.Graphics @@ -4762,12 +4078,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.DigitalVideoCursorAlphaValueI3d type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DigitalVideoCursorAlphaValueI3d - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 180 assemblies: - OpenTK.Graphics @@ -4788,12 +4100,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.DigitalVideoCursorIncludedI3d type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DigitalVideoCursorIncludedI3d - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 181 assemblies: - OpenTK.Graphics @@ -4814,12 +4122,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.DigitalVideoGammaCorrectedI3d type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DigitalVideoGammaCorrectedI3d - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 182 assemblies: - OpenTK.Graphics @@ -4840,12 +4144,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.ErrorIncompatibleDeviceContextsArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ErrorIncompatibleDeviceContextsArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 183 assemblies: - OpenTK.Graphics @@ -4866,12 +4166,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.StereoEmitterEnable3dl type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: StereoEmitterEnable3dl - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 184 assemblies: - OpenTK.Graphics @@ -4892,12 +4188,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.StereoEmitterDisable3dl type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: StereoEmitterDisable3dl - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 185 assemblies: - OpenTK.Graphics @@ -4918,12 +4210,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.StereoPolarityNormal3dl type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: StereoPolarityNormal3dl - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 186 assemblies: - OpenTK.Graphics @@ -4944,12 +4232,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.StereoPolarityInvert3dl type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: StereoPolarityInvert3dl - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 187 assemblies: - OpenTK.Graphics @@ -4970,12 +4254,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.SampleBuffers3dfx type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SampleBuffers3dfx - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 188 assemblies: - OpenTK.Graphics @@ -4996,12 +4276,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.Samples3dfx type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Samples3dfx - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 189 assemblies: - OpenTK.Graphics @@ -5022,12 +4298,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.BindToTextureRgbArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: BindToTextureRgbArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 190 assemblies: - OpenTK.Graphics @@ -5048,12 +4320,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.BindToTextureRgbaArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: BindToTextureRgbaArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 191 assemblies: - OpenTK.Graphics @@ -5074,12 +4342,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.TextureFormatArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TextureFormatArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 192 assemblies: - OpenTK.Graphics @@ -5100,12 +4364,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.TextureTargetArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TextureTargetArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 193 assemblies: - OpenTK.Graphics @@ -5126,12 +4386,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.MipmapTextureArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MipmapTextureArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 194 assemblies: - OpenTK.Graphics @@ -5152,12 +4408,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.TextureRgbArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TextureRgbArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 195 assemblies: - OpenTK.Graphics @@ -5178,12 +4430,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.TextureRgbaArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TextureRgbaArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 196 assemblies: - OpenTK.Graphics @@ -5204,12 +4452,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.NoTextureArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: NoTextureArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 197 assemblies: - OpenTK.Graphics @@ -5230,12 +4474,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.TextureCubeMapArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TextureCubeMapArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 198 assemblies: - OpenTK.Graphics @@ -5256,12 +4496,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.Texture1dArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Texture1dArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 199 assemblies: - OpenTK.Graphics @@ -5282,12 +4518,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.Texture2dArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Texture2dArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 200 assemblies: - OpenTK.Graphics @@ -5308,12 +4540,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.MipmapLevelArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MipmapLevelArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 201 assemblies: - OpenTK.Graphics @@ -5334,12 +4562,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.CubeMapFaceArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CubeMapFaceArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 202 assemblies: - OpenTK.Graphics @@ -5360,12 +4584,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.TextureCubeMapPositiveXArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TextureCubeMapPositiveXArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 203 assemblies: - OpenTK.Graphics @@ -5386,12 +4606,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.TextureCubeMapNegativeXArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TextureCubeMapNegativeXArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 204 assemblies: - OpenTK.Graphics @@ -5412,12 +4628,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.TextureCubeMapPositiveYArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TextureCubeMapPositiveYArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 205 assemblies: - OpenTK.Graphics @@ -5438,12 +4650,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.TextureCubeMapNegativeYArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TextureCubeMapNegativeYArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 206 assemblies: - OpenTK.Graphics @@ -5464,12 +4672,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.TextureCubeMapPositiveZArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TextureCubeMapPositiveZArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 207 assemblies: - OpenTK.Graphics @@ -5490,12 +4694,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.TextureCubeMapNegativeZArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TextureCubeMapNegativeZArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 208 assemblies: - OpenTK.Graphics @@ -5516,12 +4716,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.FrontLeftArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: FrontLeftArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 209 assemblies: - OpenTK.Graphics @@ -5542,12 +4738,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.FrontRightArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: FrontRightArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 210 assemblies: - OpenTK.Graphics @@ -5568,12 +4760,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.BackLeftArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: BackLeftArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 211 assemblies: - OpenTK.Graphics @@ -5594,12 +4782,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.BackRightArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: BackRightArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 212 assemblies: - OpenTK.Graphics @@ -5620,12 +4804,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.Aux0Arb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Aux0Arb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 213 assemblies: - OpenTK.Graphics @@ -5646,12 +4826,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.Aux1Arb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Aux1Arb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 214 assemblies: - OpenTK.Graphics @@ -5672,12 +4848,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.Aux2Arb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Aux2Arb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 215 assemblies: - OpenTK.Graphics @@ -5698,12 +4870,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.Aux3Arb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Aux3Arb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 216 assemblies: - OpenTK.Graphics @@ -5724,12 +4892,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.Aux4Arb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Aux4Arb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 217 assemblies: - OpenTK.Graphics @@ -5750,12 +4914,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.Aux5Arb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Aux5Arb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 218 assemblies: - OpenTK.Graphics @@ -5776,12 +4936,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.Aux6Arb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Aux6Arb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 219 assemblies: - OpenTK.Graphics @@ -5802,12 +4958,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.Aux7Arb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Aux7Arb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 220 assemblies: - OpenTK.Graphics @@ -5828,12 +4980,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.Aux8Arb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Aux8Arb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 221 assemblies: - OpenTK.Graphics @@ -5854,12 +5002,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.Aux9Arb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Aux9Arb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 222 assemblies: - OpenTK.Graphics @@ -5880,12 +5024,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.ContextMajorVersionArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ContextMajorVersionArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 223 assemblies: - OpenTK.Graphics @@ -5906,12 +5046,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.ContextMinorVersionArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ContextMinorVersionArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 224 assemblies: - OpenTK.Graphics @@ -5932,12 +5068,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.ContextLayerPlaneArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ContextLayerPlaneArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 225 assemblies: - OpenTK.Graphics @@ -5958,12 +5090,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.ContextFlagsArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ContextFlagsArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 226 assemblies: - OpenTK.Graphics @@ -5984,12 +5112,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.ErrorInvalidVersionArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ErrorInvalidVersionArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 227 assemblies: - OpenTK.Graphics @@ -6010,12 +5134,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.ErrorInvalidProfileArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ErrorInvalidProfileArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 228 assemblies: - OpenTK.Graphics @@ -6036,12 +5156,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.ContextReleaseBehaviorArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ContextReleaseBehaviorArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 229 assemblies: - OpenTK.Graphics @@ -6062,12 +5178,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.ContextReleaseBehaviorFlushArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ContextReleaseBehaviorFlushArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 230 assemblies: - OpenTK.Graphics @@ -6088,12 +5200,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.BindToTextureRectangleRgbNv type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: BindToTextureRectangleRgbNv - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 231 assemblies: - OpenTK.Graphics @@ -6114,12 +5222,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.BindToTextureRectangleRgbaNv type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: BindToTextureRectangleRgbaNv - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 232 assemblies: - OpenTK.Graphics @@ -6140,12 +5244,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.TextureRectangleNv type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TextureRectangleNv - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 233 assemblies: - OpenTK.Graphics @@ -6166,12 +5266,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.BindToTextureDepthNv type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: BindToTextureDepthNv - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 234 assemblies: - OpenTK.Graphics @@ -6192,12 +5288,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.BindToTextureRectangleDepthNv type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: BindToTextureRectangleDepthNv - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 235 assemblies: - OpenTK.Graphics @@ -6218,12 +5310,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.DepthTextureFormatNv type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DepthTextureFormatNv - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 236 assemblies: - OpenTK.Graphics @@ -6244,12 +5332,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.TextureDepthComponentNv type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TextureDepthComponentNv - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 237 assemblies: - OpenTK.Graphics @@ -6270,12 +5354,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.DepthComponentNv type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DepthComponentNv - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 238 assemblies: - OpenTK.Graphics @@ -6296,12 +5376,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.TypeRgbaUnsignedFloatExt type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TypeRgbaUnsignedFloatExt - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 239 assemblies: - OpenTK.Graphics @@ -6322,12 +5398,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.FramebufferSrgbCapableArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: FramebufferSrgbCapableArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 240 assemblies: - OpenTK.Graphics @@ -6348,12 +5420,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.FramebufferSrgbCapableExt type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: FramebufferSrgbCapableExt - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 241 assemblies: - OpenTK.Graphics @@ -6374,12 +5442,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.ContextMultigpuAttribNv type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ContextMultigpuAttribNv - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 242 assemblies: - OpenTK.Graphics @@ -6400,12 +5464,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.ContextMultigpuAttribSingleNv type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ContextMultigpuAttribSingleNv - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 243 assemblies: - OpenTK.Graphics @@ -6426,12 +5486,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.ContextMultigpuAttribAfrNv type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ContextMultigpuAttribAfrNv - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 244 assemblies: - OpenTK.Graphics @@ -6452,12 +5508,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.ContextMultigpuAttribMulticastNv type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ContextMultigpuAttribMulticastNv - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 245 assemblies: - OpenTK.Graphics @@ -6478,12 +5530,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.ContextMultigpuAttribMultiDisplayMulticastNv type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ContextMultigpuAttribMultiDisplayMulticastNv - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 246 assemblies: - OpenTK.Graphics @@ -6504,12 +5552,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.FloatComponentsNv type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: FloatComponentsNv - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 247 assemblies: - OpenTK.Graphics @@ -6530,12 +5574,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.BindToTextureRectangleFloatRNv type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: BindToTextureRectangleFloatRNv - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 248 assemblies: - OpenTK.Graphics @@ -6556,12 +5596,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.BindToTextureRectangleFloatRgNv type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: BindToTextureRectangleFloatRgNv - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 249 assemblies: - OpenTK.Graphics @@ -6582,12 +5618,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.BindToTextureRectangleFloatRgbNv type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: BindToTextureRectangleFloatRgbNv - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 250 assemblies: - OpenTK.Graphics @@ -6608,12 +5640,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.BindToTextureRectangleFloatRgbaNv type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: BindToTextureRectangleFloatRgbaNv - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 251 assemblies: - OpenTK.Graphics @@ -6634,12 +5662,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.TextureFloatRNv type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TextureFloatRNv - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 252 assemblies: - OpenTK.Graphics @@ -6660,12 +5684,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.TextureFloatRgNv type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TextureFloatRgNv - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 253 assemblies: - OpenTK.Graphics @@ -6686,12 +5706,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.TextureFloatRgbNv type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TextureFloatRgbNv - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 254 assemblies: - OpenTK.Graphics @@ -6712,12 +5728,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.TextureFloatRgbaNv type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TextureFloatRgbaNv - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 255 assemblies: - OpenTK.Graphics @@ -6738,12 +5750,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.ColorSamplesNv type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ColorSamplesNv - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 256 assemblies: - OpenTK.Graphics @@ -6764,12 +5772,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.BindToVideoRgbNv type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: BindToVideoRgbNv - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 257 assemblies: - OpenTK.Graphics @@ -6790,12 +5794,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.BindToVideoRgbaNv type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: BindToVideoRgbaNv - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 258 assemblies: - OpenTK.Graphics @@ -6816,12 +5816,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.BindToVideoRgbAndDepthNv type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: BindToVideoRgbAndDepthNv - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 259 assemblies: - OpenTK.Graphics @@ -6842,12 +5838,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.VideoOutColorNv type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: VideoOutColorNv - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 260 assemblies: - OpenTK.Graphics @@ -6868,12 +5860,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.VideoOutAlphaNv type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: VideoOutAlphaNv - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 261 assemblies: - OpenTK.Graphics @@ -6894,12 +5882,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.VideoOutDepthNv type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: VideoOutDepthNv - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 262 assemblies: - OpenTK.Graphics @@ -6920,12 +5904,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.VideoOutColorAndAlphaNv type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: VideoOutColorAndAlphaNv - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 263 assemblies: - OpenTK.Graphics @@ -6946,12 +5926,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.VideoOutColorAndDepthNv type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: VideoOutColorAndDepthNv - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 264 assemblies: - OpenTK.Graphics @@ -6972,12 +5948,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.VideoOutFrame type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: VideoOutFrame - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 265 assemblies: - OpenTK.Graphics @@ -6998,12 +5970,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.VideoOutField1 type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: VideoOutField1 - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 266 assemblies: - OpenTK.Graphics @@ -7024,12 +5992,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.VideoOutField2 type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: VideoOutField2 - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 267 assemblies: - OpenTK.Graphics @@ -7050,12 +6014,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.VideoOutStackedFields12 type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: VideoOutStackedFields12 - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 268 assemblies: - OpenTK.Graphics @@ -7076,12 +6036,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.VideoOutStackedFields21 type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: VideoOutStackedFields21 - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 269 assemblies: - OpenTK.Graphics @@ -7102,12 +6058,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.UniqueIdNv type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: UniqueIdNv - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 270 assemblies: - OpenTK.Graphics @@ -7128,12 +6080,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.NumVideoCaptureSlotsNv type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: NumVideoCaptureSlotsNv - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 271 assemblies: - OpenTK.Graphics @@ -7154,12 +6102,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.ErrorIncompatibleAffinityMasksNv type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ErrorIncompatibleAffinityMasksNv - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 272 assemblies: - OpenTK.Graphics @@ -7180,12 +6124,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.ErrorMissingAffinityMaskNv type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ErrorMissingAffinityMaskNv - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 273 assemblies: - OpenTK.Graphics @@ -7206,12 +6146,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.NumVideoSlotsNv type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: NumVideoSlotsNv - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 274 assemblies: - OpenTK.Graphics @@ -7232,12 +6168,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.TypeRgbaFloatArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TypeRgbaFloatArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 275 assemblies: - OpenTK.Graphics @@ -7258,12 +6190,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.TypeRgbaFloatAti type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TypeRgbaFloatAti - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 276 assemblies: - OpenTK.Graphics @@ -7284,12 +6212,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.GpuFastestTargetGpusAmd type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GpuFastestTargetGpusAmd - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 277 assemblies: - OpenTK.Graphics @@ -7310,12 +6234,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.GpuRamAmd type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GpuRamAmd - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 278 assemblies: - OpenTK.Graphics @@ -7336,12 +6256,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.GpuClockAmd type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GpuClockAmd - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 279 assemblies: - OpenTK.Graphics @@ -7362,12 +6278,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.GpuNumPipesAmd type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GpuNumPipesAmd - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 280 assemblies: - OpenTK.Graphics @@ -7388,12 +6300,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.TextureRectangleAti type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TextureRectangleAti - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 281 assemblies: - OpenTK.Graphics @@ -7414,12 +6322,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.GpuNumSimdAmd type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GpuNumSimdAmd - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 282 assemblies: - OpenTK.Graphics @@ -7440,12 +6344,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.GpuNumRbAmd type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GpuNumRbAmd - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 283 assemblies: - OpenTK.Graphics @@ -7466,12 +6366,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.GpuNumSpiAmd type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GpuNumSpiAmd - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 284 assemblies: - OpenTK.Graphics @@ -7492,12 +6388,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.ColorspaceSrgbExt type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ColorspaceSrgbExt - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 285 assemblies: - OpenTK.Graphics @@ -7518,12 +6410,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.ColorspaceLinearExt type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ColorspaceLinearExt - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 286 assemblies: - OpenTK.Graphics @@ -7544,12 +6432,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.ColorspaceExt type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ColorspaceExt - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 287 assemblies: - OpenTK.Graphics @@ -7570,12 +6454,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.ContextOpenglNoErrorArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ContextOpenglNoErrorArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 288 assemblies: - OpenTK.Graphics @@ -7596,12 +6476,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.SwapOverlay14 type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SwapOverlay14 - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 289 assemblies: - OpenTK.Graphics @@ -7622,12 +6498,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.SwapOverlay15 type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SwapOverlay15 - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 290 assemblies: - OpenTK.Graphics @@ -7648,12 +6520,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.Texture3d type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Texture3d - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 291 assemblies: - OpenTK.Graphics @@ -7674,12 +6542,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.LoseContextOnResetArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: LoseContextOnResetArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 292 assemblies: - OpenTK.Graphics @@ -7700,12 +6564,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.ContextResetNotificationStrategyArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ContextResetNotificationStrategyArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 293 assemblies: - OpenTK.Graphics @@ -7726,12 +6586,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.NoResetNotificationArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: NoResetNotificationArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 294 assemblies: - OpenTK.Graphics @@ -7752,12 +6608,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.TextureRectangle type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TextureRectangle - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 295 assemblies: - OpenTK.Graphics @@ -7778,12 +6630,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.TextureCubeMap type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TextureCubeMap - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 296 assemblies: - OpenTK.Graphics @@ -7804,12 +6652,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.Renderbuffer type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Renderbuffer - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 297 assemblies: - OpenTK.Graphics @@ -7830,12 +6674,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.ContextProfileMaskArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ContextProfileMaskArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 298 assemblies: - OpenTK.Graphics @@ -7856,12 +6696,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.SwapUnderlay1 type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SwapUnderlay1 - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 299 assemblies: - OpenTK.Graphics @@ -7882,12 +6718,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.SwapUnderlay2 type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SwapUnderlay2 - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 300 assemblies: - OpenTK.Graphics @@ -7908,12 +6740,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.SwapUnderlay3 type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SwapUnderlay3 - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 301 assemblies: - OpenTK.Graphics @@ -7934,12 +6762,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.SwapUnderlay4 type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SwapUnderlay4 - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 302 assemblies: - OpenTK.Graphics @@ -7960,12 +6784,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.SwapUnderlay5 type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SwapUnderlay5 - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 303 assemblies: - OpenTK.Graphics @@ -7986,12 +6806,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.SwapUnderlay6 type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SwapUnderlay6 - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 304 assemblies: - OpenTK.Graphics @@ -8012,12 +6828,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.SwapUnderlay7 type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SwapUnderlay7 - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 305 assemblies: - OpenTK.Graphics @@ -8038,12 +6850,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.SwapUnderlay8 type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SwapUnderlay8 - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 306 assemblies: - OpenTK.Graphics @@ -8064,12 +6872,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.SwapUnderlay9 type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SwapUnderlay9 - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 307 assemblies: - OpenTK.Graphics @@ -8090,12 +6894,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.SwapUnderlay10 type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SwapUnderlay10 - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 308 assemblies: - OpenTK.Graphics @@ -8116,12 +6916,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.SwapUnderlay11 type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SwapUnderlay11 - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 309 assemblies: - OpenTK.Graphics @@ -8142,12 +6938,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.SwapUnderlay12 type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SwapUnderlay12 - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 310 assemblies: - OpenTK.Graphics @@ -8168,12 +6960,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.SwapUnderlay13 type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SwapUnderlay13 - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 311 assemblies: - OpenTK.Graphics @@ -8194,12 +6982,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.SwapUnderlay14 type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SwapUnderlay14 - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 312 assemblies: - OpenTK.Graphics @@ -8220,12 +7004,8 @@ items: fullName: OpenTK.Graphics.Wgl.All.SwapUnderlay15 type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SwapUnderlay15 - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 313 assemblies: - OpenTK.Graphics diff --git a/api/OpenTK.Graphics.Wgl.ColorBuffer.yml b/api/OpenTK.Graphics.Wgl.ColorBuffer.yml index 2e7daeb1..61dfddee 100644 --- a/api/OpenTK.Graphics.Wgl.ColorBuffer.yml +++ b/api/OpenTK.Graphics.Wgl.ColorBuffer.yml @@ -27,12 +27,8 @@ items: fullName: OpenTK.Graphics.Wgl.ColorBuffer type: Enum source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ColorBuffer - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 325 assemblies: - OpenTK.Graphics @@ -54,12 +50,8 @@ items: fullName: OpenTK.Graphics.Wgl.ColorBuffer.FrontLeftArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: FrontLeftArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 327 assemblies: - OpenTK.Graphics @@ -80,12 +72,8 @@ items: fullName: OpenTK.Graphics.Wgl.ColorBuffer.FrontRightArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: FrontRightArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 328 assemblies: - OpenTK.Graphics @@ -106,12 +94,8 @@ items: fullName: OpenTK.Graphics.Wgl.ColorBuffer.BackLeftArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: BackLeftArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 329 assemblies: - OpenTK.Graphics @@ -132,12 +116,8 @@ items: fullName: OpenTK.Graphics.Wgl.ColorBuffer.BackRightArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: BackRightArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 330 assemblies: - OpenTK.Graphics @@ -158,12 +138,8 @@ items: fullName: OpenTK.Graphics.Wgl.ColorBuffer.Aux0Arb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Aux0Arb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 331 assemblies: - OpenTK.Graphics @@ -184,12 +160,8 @@ items: fullName: OpenTK.Graphics.Wgl.ColorBuffer.Aux1Arb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Aux1Arb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 332 assemblies: - OpenTK.Graphics @@ -210,12 +182,8 @@ items: fullName: OpenTK.Graphics.Wgl.ColorBuffer.Aux2Arb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Aux2Arb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 333 assemblies: - OpenTK.Graphics @@ -236,12 +204,8 @@ items: fullName: OpenTK.Graphics.Wgl.ColorBuffer.Aux3Arb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Aux3Arb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 334 assemblies: - OpenTK.Graphics @@ -262,12 +226,8 @@ items: fullName: OpenTK.Graphics.Wgl.ColorBuffer.Aux4Arb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Aux4Arb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 335 assemblies: - OpenTK.Graphics @@ -288,12 +248,8 @@ items: fullName: OpenTK.Graphics.Wgl.ColorBuffer.Aux5Arb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Aux5Arb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 336 assemblies: - OpenTK.Graphics @@ -314,12 +270,8 @@ items: fullName: OpenTK.Graphics.Wgl.ColorBuffer.Aux6Arb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Aux6Arb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 337 assemblies: - OpenTK.Graphics @@ -340,12 +292,8 @@ items: fullName: OpenTK.Graphics.Wgl.ColorBuffer.Aux7Arb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Aux7Arb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 338 assemblies: - OpenTK.Graphics @@ -366,12 +314,8 @@ items: fullName: OpenTK.Graphics.Wgl.ColorBuffer.Aux8Arb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Aux8Arb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 339 assemblies: - OpenTK.Graphics @@ -392,12 +336,8 @@ items: fullName: OpenTK.Graphics.Wgl.ColorBuffer.Aux9Arb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Aux9Arb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs startLine: 340 assemblies: - OpenTK.Graphics diff --git a/api/OpenTK.Graphics.Wgl.ColorBufferMask.yml b/api/OpenTK.Graphics.Wgl.ColorBufferMask.yml new file mode 100644 index 00000000..afcc77ff --- /dev/null +++ b/api/OpenTK.Graphics.Wgl.ColorBufferMask.yml @@ -0,0 +1,218 @@ +### YamlMime:ManagedReference +items: +- uid: OpenTK.Graphics.Wgl.ColorBufferMask + commentId: T:OpenTK.Graphics.Wgl.ColorBufferMask + id: ColorBufferMask + parent: OpenTK.Graphics.Wgl + children: + - OpenTK.Graphics.Wgl.ColorBufferMask.BackColorBufferBitArb + - OpenTK.Graphics.Wgl.ColorBufferMask.DepthBufferBitArb + - OpenTK.Graphics.Wgl.ColorBufferMask.FrontColorBufferBitArb + - OpenTK.Graphics.Wgl.ColorBufferMask.StencilBufferBitArb + langs: + - csharp + - vb + name: ColorBufferMask + nameWithType: ColorBufferMask + fullName: OpenTK.Graphics.Wgl.ColorBufferMask + type: Enum + source: + id: ColorBufferMask + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 343 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Wgl + summary: Used in + example: [] + syntax: + content: >- + [Flags] + + public enum ColorBufferMask : uint + content.vb: >- + + + Public Enum ColorBufferMask As UInteger + attributes: + - type: System.FlagsAttribute + ctor: System.FlagsAttribute.#ctor + arguments: [] +- uid: OpenTK.Graphics.Wgl.ColorBufferMask.FrontColorBufferBitArb + commentId: F:OpenTK.Graphics.Wgl.ColorBufferMask.FrontColorBufferBitArb + id: FrontColorBufferBitArb + parent: OpenTK.Graphics.Wgl.ColorBufferMask + langs: + - csharp + - vb + name: FrontColorBufferBitArb + nameWithType: ColorBufferMask.FrontColorBufferBitArb + fullName: OpenTK.Graphics.Wgl.ColorBufferMask.FrontColorBufferBitArb + type: Field + source: + id: FrontColorBufferBitArb + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 346 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Wgl + syntax: + content: FrontColorBufferBitArb = 1 + return: + type: OpenTK.Graphics.Wgl.ColorBufferMask +- uid: OpenTK.Graphics.Wgl.ColorBufferMask.BackColorBufferBitArb + commentId: F:OpenTK.Graphics.Wgl.ColorBufferMask.BackColorBufferBitArb + id: BackColorBufferBitArb + parent: OpenTK.Graphics.Wgl.ColorBufferMask + langs: + - csharp + - vb + name: BackColorBufferBitArb + nameWithType: ColorBufferMask.BackColorBufferBitArb + fullName: OpenTK.Graphics.Wgl.ColorBufferMask.BackColorBufferBitArb + type: Field + source: + id: BackColorBufferBitArb + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 347 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Wgl + syntax: + content: BackColorBufferBitArb = 2 + return: + type: OpenTK.Graphics.Wgl.ColorBufferMask +- uid: OpenTK.Graphics.Wgl.ColorBufferMask.DepthBufferBitArb + commentId: F:OpenTK.Graphics.Wgl.ColorBufferMask.DepthBufferBitArb + id: DepthBufferBitArb + parent: OpenTK.Graphics.Wgl.ColorBufferMask + langs: + - csharp + - vb + name: DepthBufferBitArb + nameWithType: ColorBufferMask.DepthBufferBitArb + fullName: OpenTK.Graphics.Wgl.ColorBufferMask.DepthBufferBitArb + type: Field + source: + id: DepthBufferBitArb + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 348 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Wgl + syntax: + content: DepthBufferBitArb = 4 + return: + type: OpenTK.Graphics.Wgl.ColorBufferMask +- uid: OpenTK.Graphics.Wgl.ColorBufferMask.StencilBufferBitArb + commentId: F:OpenTK.Graphics.Wgl.ColorBufferMask.StencilBufferBitArb + id: StencilBufferBitArb + parent: OpenTK.Graphics.Wgl.ColorBufferMask + langs: + - csharp + - vb + name: StencilBufferBitArb + nameWithType: ColorBufferMask.StencilBufferBitArb + fullName: OpenTK.Graphics.Wgl.ColorBufferMask.StencilBufferBitArb + type: Field + source: + id: StencilBufferBitArb + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 349 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Wgl + syntax: + content: StencilBufferBitArb = 8 + return: + type: OpenTK.Graphics.Wgl.ColorBufferMask +references: +- uid: OpenTK.Graphics.Wgl.Wgl.ARB.CreateBufferRegionARB(System.IntPtr,System.Int32,OpenTK.Graphics.Wgl.ColorBufferMask) + commentId: M:OpenTK.Graphics.Wgl.Wgl.ARB.CreateBufferRegionARB(System.IntPtr,System.Int32,OpenTK.Graphics.Wgl.ColorBufferMask) + isExternal: true + href: OpenTK.Graphics.Wgl.Wgl.ARB.html#OpenTK_Graphics_Wgl_Wgl_ARB_CreateBufferRegionARB_System_IntPtr_System_Int32_OpenTK_Graphics_Wgl_ColorBufferMask_ + name: CreateBufferRegionARB(nint, int, ColorBufferMask) + nameWithType: Wgl.ARB.CreateBufferRegionARB(nint, int, ColorBufferMask) + fullName: OpenTK.Graphics.Wgl.Wgl.ARB.CreateBufferRegionARB(nint, int, OpenTK.Graphics.Wgl.ColorBufferMask) + nameWithType.vb: Wgl.ARB.CreateBufferRegionARB(IntPtr, Integer, ColorBufferMask) + fullName.vb: OpenTK.Graphics.Wgl.Wgl.ARB.CreateBufferRegionARB(System.IntPtr, Integer, OpenTK.Graphics.Wgl.ColorBufferMask) + name.vb: CreateBufferRegionARB(IntPtr, Integer, ColorBufferMask) + spec.csharp: + - uid: OpenTK.Graphics.Wgl.Wgl.ARB.CreateBufferRegionARB(System.IntPtr,System.Int32,OpenTK.Graphics.Wgl.ColorBufferMask) + name: CreateBufferRegionARB + href: OpenTK.Graphics.Wgl.Wgl.ARB.html#OpenTK_Graphics_Wgl_Wgl_ARB_CreateBufferRegionARB_System_IntPtr_System_Int32_OpenTK_Graphics_Wgl_ColorBufferMask_ + - name: ( + - uid: System.IntPtr + name: nint + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.intptr + - name: ',' + - name: " " + - uid: System.Int32 + name: int + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ',' + - name: " " + - uid: OpenTK.Graphics.Wgl.ColorBufferMask + name: ColorBufferMask + href: OpenTK.Graphics.Wgl.ColorBufferMask.html + - name: ) + spec.vb: + - uid: OpenTK.Graphics.Wgl.Wgl.ARB.CreateBufferRegionARB(System.IntPtr,System.Int32,OpenTK.Graphics.Wgl.ColorBufferMask) + name: CreateBufferRegionARB + href: OpenTK.Graphics.Wgl.Wgl.ARB.html#OpenTK_Graphics_Wgl_Wgl_ARB_CreateBufferRegionARB_System_IntPtr_System_Int32_OpenTK_Graphics_Wgl_ColorBufferMask_ + - name: ( + - uid: System.IntPtr + name: IntPtr + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.intptr + - name: ',' + - name: " " + - uid: System.Int32 + name: Integer + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ',' + - name: " " + - uid: OpenTK.Graphics.Wgl.ColorBufferMask + name: ColorBufferMask + href: OpenTK.Graphics.Wgl.ColorBufferMask.html + - name: ) +- uid: OpenTK.Graphics.Wgl + commentId: N:OpenTK.Graphics.Wgl + href: OpenTK.html + name: OpenTK.Graphics.Wgl + nameWithType: OpenTK.Graphics.Wgl + fullName: OpenTK.Graphics.Wgl + spec.csharp: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Graphics + name: Graphics + href: OpenTK.Graphics.html + - name: . + - uid: OpenTK.Graphics.Wgl + name: Wgl + href: OpenTK.Graphics.Wgl.html + spec.vb: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Graphics + name: Graphics + href: OpenTK.Graphics.html + - name: . + - uid: OpenTK.Graphics.Wgl + name: Wgl + href: OpenTK.Graphics.Wgl.html +- uid: OpenTK.Graphics.Wgl.ColorBufferMask + commentId: T:OpenTK.Graphics.Wgl.ColorBufferMask + parent: OpenTK.Graphics.Wgl + href: OpenTK.Graphics.Wgl.ColorBufferMask.html + name: ColorBufferMask + nameWithType: ColorBufferMask + fullName: OpenTK.Graphics.Wgl.ColorBufferMask diff --git a/api/OpenTK.Graphics.Wgl.ColorRef.yml b/api/OpenTK.Graphics.Wgl.ColorRef.yml index 26ad45ae..61ef4c20 100644 --- a/api/OpenTK.Graphics.Wgl.ColorRef.yml +++ b/api/OpenTK.Graphics.Wgl.ColorRef.yml @@ -16,12 +16,8 @@ items: fullName: OpenTK.Graphics.Wgl.ColorRef type: Struct source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ColorRef - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 535 assemblies: - OpenTK.Graphics @@ -48,12 +44,8 @@ items: fullName: OpenTK.Graphics.Wgl.ColorRef.Red type: Field source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Red - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 539 assemblies: - OpenTK.Graphics @@ -75,12 +67,8 @@ items: fullName: OpenTK.Graphics.Wgl.ColorRef.Green type: Field source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Green - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 541 assemblies: - OpenTK.Graphics @@ -102,12 +90,8 @@ items: fullName: OpenTK.Graphics.Wgl.ColorRef.Blue type: Field source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Blue - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 543 assemblies: - OpenTK.Graphics diff --git a/api/OpenTK.Graphics.Wgl.ContextAttribs.yml b/api/OpenTK.Graphics.Wgl.ContextAttribs.yml index 4057abf9..f7b814da 100644 --- a/api/OpenTK.Graphics.Wgl.ContextAttribs.yml +++ b/api/OpenTK.Graphics.Wgl.ContextAttribs.yml @@ -18,13 +18,9 @@ items: fullName: OpenTK.Graphics.Wgl.ContextAttribs type: Enum source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ContextAttribs - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 343 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 352 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -45,13 +41,9 @@ items: fullName: OpenTK.Graphics.Wgl.ContextAttribs.ContextMajorVersionArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ContextMajorVersionArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 345 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 354 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -71,13 +63,9 @@ items: fullName: OpenTK.Graphics.Wgl.ContextAttribs.ContextMinorVersionArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ContextMinorVersionArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 346 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 355 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -97,13 +85,9 @@ items: fullName: OpenTK.Graphics.Wgl.ContextAttribs.ContextLayerPlaneArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ContextLayerPlaneArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 347 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 356 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -123,13 +107,9 @@ items: fullName: OpenTK.Graphics.Wgl.ContextAttribs.ContextFlagsArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ContextFlagsArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 348 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 357 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -149,13 +129,9 @@ items: fullName: OpenTK.Graphics.Wgl.ContextAttribs.ContextProfileMaskArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ContextProfileMaskArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 349 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 358 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl diff --git a/api/OpenTK.Graphics.Wgl.ContextAttribute.yml b/api/OpenTK.Graphics.Wgl.ContextAttribute.yml index b867db82..d1acede2 100644 --- a/api/OpenTK.Graphics.Wgl.ContextAttribute.yml +++ b/api/OpenTK.Graphics.Wgl.ContextAttribute.yml @@ -15,13 +15,9 @@ items: fullName: OpenTK.Graphics.Wgl.ContextAttribute type: Enum source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ContextAttribute - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 352 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 361 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -42,13 +38,9 @@ items: fullName: OpenTK.Graphics.Wgl.ContextAttribute.NumVideoCaptureSlotsNv type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: NumVideoCaptureSlotsNv - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 354 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 363 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -68,13 +60,9 @@ items: fullName: OpenTK.Graphics.Wgl.ContextAttribute.NumVideoSlotsNv type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: NumVideoSlotsNv - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 355 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 364 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl diff --git a/api/OpenTK.Graphics.Wgl.ContextFlagsMask.yml b/api/OpenTK.Graphics.Wgl.ContextFlagsMask.yml new file mode 100644 index 00000000..bb633312 --- /dev/null +++ b/api/OpenTK.Graphics.Wgl.ContextFlagsMask.yml @@ -0,0 +1,164 @@ +### YamlMime:ManagedReference +items: +- uid: OpenTK.Graphics.Wgl.ContextFlagsMask + commentId: T:OpenTK.Graphics.Wgl.ContextFlagsMask + id: ContextFlagsMask + parent: OpenTK.Graphics.Wgl + children: + - OpenTK.Graphics.Wgl.ContextFlagsMask.ContextDebugBitArb + - OpenTK.Graphics.Wgl.ContextFlagsMask.ContextForwardCompatibleBitArb + - OpenTK.Graphics.Wgl.ContextFlagsMask.ContextResetIsolationBitArb + - OpenTK.Graphics.Wgl.ContextFlagsMask.ContextRobustAccessBitArb + langs: + - csharp + - vb + name: ContextFlagsMask + nameWithType: ContextFlagsMask + fullName: OpenTK.Graphics.Wgl.ContextFlagsMask + type: Enum + source: + id: ContextFlagsMask + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 366 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Wgl + syntax: + content: >- + [Flags] + + public enum ContextFlagsMask : uint + content.vb: >- + + + Public Enum ContextFlagsMask As UInteger + attributes: + - type: System.FlagsAttribute + ctor: System.FlagsAttribute.#ctor + arguments: [] +- uid: OpenTK.Graphics.Wgl.ContextFlagsMask.ContextDebugBitArb + commentId: F:OpenTK.Graphics.Wgl.ContextFlagsMask.ContextDebugBitArb + id: ContextDebugBitArb + parent: OpenTK.Graphics.Wgl.ContextFlagsMask + langs: + - csharp + - vb + name: ContextDebugBitArb + nameWithType: ContextFlagsMask.ContextDebugBitArb + fullName: OpenTK.Graphics.Wgl.ContextFlagsMask.ContextDebugBitArb + type: Field + source: + id: ContextDebugBitArb + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 369 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Wgl + syntax: + content: ContextDebugBitArb = 1 + return: + type: OpenTK.Graphics.Wgl.ContextFlagsMask +- uid: OpenTK.Graphics.Wgl.ContextFlagsMask.ContextForwardCompatibleBitArb + commentId: F:OpenTK.Graphics.Wgl.ContextFlagsMask.ContextForwardCompatibleBitArb + id: ContextForwardCompatibleBitArb + parent: OpenTK.Graphics.Wgl.ContextFlagsMask + langs: + - csharp + - vb + name: ContextForwardCompatibleBitArb + nameWithType: ContextFlagsMask.ContextForwardCompatibleBitArb + fullName: OpenTK.Graphics.Wgl.ContextFlagsMask.ContextForwardCompatibleBitArb + type: Field + source: + id: ContextForwardCompatibleBitArb + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 370 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Wgl + syntax: + content: ContextForwardCompatibleBitArb = 2 + return: + type: OpenTK.Graphics.Wgl.ContextFlagsMask +- uid: OpenTK.Graphics.Wgl.ContextFlagsMask.ContextRobustAccessBitArb + commentId: F:OpenTK.Graphics.Wgl.ContextFlagsMask.ContextRobustAccessBitArb + id: ContextRobustAccessBitArb + parent: OpenTK.Graphics.Wgl.ContextFlagsMask + langs: + - csharp + - vb + name: ContextRobustAccessBitArb + nameWithType: ContextFlagsMask.ContextRobustAccessBitArb + fullName: OpenTK.Graphics.Wgl.ContextFlagsMask.ContextRobustAccessBitArb + type: Field + source: + id: ContextRobustAccessBitArb + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 371 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Wgl + syntax: + content: ContextRobustAccessBitArb = 4 + return: + type: OpenTK.Graphics.Wgl.ContextFlagsMask +- uid: OpenTK.Graphics.Wgl.ContextFlagsMask.ContextResetIsolationBitArb + commentId: F:OpenTK.Graphics.Wgl.ContextFlagsMask.ContextResetIsolationBitArb + id: ContextResetIsolationBitArb + parent: OpenTK.Graphics.Wgl.ContextFlagsMask + langs: + - csharp + - vb + name: ContextResetIsolationBitArb + nameWithType: ContextFlagsMask.ContextResetIsolationBitArb + fullName: OpenTK.Graphics.Wgl.ContextFlagsMask.ContextResetIsolationBitArb + type: Field + source: + id: ContextResetIsolationBitArb + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 372 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Wgl + syntax: + content: ContextResetIsolationBitArb = 8 + return: + type: OpenTK.Graphics.Wgl.ContextFlagsMask +references: +- uid: OpenTK.Graphics.Wgl + commentId: N:OpenTK.Graphics.Wgl + href: OpenTK.html + name: OpenTK.Graphics.Wgl + nameWithType: OpenTK.Graphics.Wgl + fullName: OpenTK.Graphics.Wgl + spec.csharp: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Graphics + name: Graphics + href: OpenTK.Graphics.html + - name: . + - uid: OpenTK.Graphics.Wgl + name: Wgl + href: OpenTK.Graphics.Wgl.html + spec.vb: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Graphics + name: Graphics + href: OpenTK.Graphics.html + - name: . + - uid: OpenTK.Graphics.Wgl + name: Wgl + href: OpenTK.Graphics.Wgl.html +- uid: OpenTK.Graphics.Wgl.ContextFlagsMask + commentId: T:OpenTK.Graphics.Wgl.ContextFlagsMask + parent: OpenTK.Graphics.Wgl + href: OpenTK.Graphics.Wgl.ContextFlagsMask.html + name: ContextFlagsMask + nameWithType: ContextFlagsMask + fullName: OpenTK.Graphics.Wgl.ContextFlagsMask diff --git a/api/OpenTK.Graphics.Wgl.ContextProfileMask.yml b/api/OpenTK.Graphics.Wgl.ContextProfileMask.yml new file mode 100644 index 00000000..ef50e4b3 --- /dev/null +++ b/api/OpenTK.Graphics.Wgl.ContextProfileMask.yml @@ -0,0 +1,164 @@ +### YamlMime:ManagedReference +items: +- uid: OpenTK.Graphics.Wgl.ContextProfileMask + commentId: T:OpenTK.Graphics.Wgl.ContextProfileMask + id: ContextProfileMask + parent: OpenTK.Graphics.Wgl + children: + - OpenTK.Graphics.Wgl.ContextProfileMask.ContextCompatibilityProfileBitArb + - OpenTK.Graphics.Wgl.ContextProfileMask.ContextCoreProfileBitArb + - OpenTK.Graphics.Wgl.ContextProfileMask.ContextEs2ProfileBitExt + - OpenTK.Graphics.Wgl.ContextProfileMask.ContextEsProfileBitExt + langs: + - csharp + - vb + name: ContextProfileMask + nameWithType: ContextProfileMask + fullName: OpenTK.Graphics.Wgl.ContextProfileMask + type: Enum + source: + id: ContextProfileMask + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 374 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Wgl + syntax: + content: >- + [Flags] + + public enum ContextProfileMask : uint + content.vb: >- + + + Public Enum ContextProfileMask As UInteger + attributes: + - type: System.FlagsAttribute + ctor: System.FlagsAttribute.#ctor + arguments: [] +- uid: OpenTK.Graphics.Wgl.ContextProfileMask.ContextCoreProfileBitArb + commentId: F:OpenTK.Graphics.Wgl.ContextProfileMask.ContextCoreProfileBitArb + id: ContextCoreProfileBitArb + parent: OpenTK.Graphics.Wgl.ContextProfileMask + langs: + - csharp + - vb + name: ContextCoreProfileBitArb + nameWithType: ContextProfileMask.ContextCoreProfileBitArb + fullName: OpenTK.Graphics.Wgl.ContextProfileMask.ContextCoreProfileBitArb + type: Field + source: + id: ContextCoreProfileBitArb + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 377 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Wgl + syntax: + content: ContextCoreProfileBitArb = 1 + return: + type: OpenTK.Graphics.Wgl.ContextProfileMask +- uid: OpenTK.Graphics.Wgl.ContextProfileMask.ContextCompatibilityProfileBitArb + commentId: F:OpenTK.Graphics.Wgl.ContextProfileMask.ContextCompatibilityProfileBitArb + id: ContextCompatibilityProfileBitArb + parent: OpenTK.Graphics.Wgl.ContextProfileMask + langs: + - csharp + - vb + name: ContextCompatibilityProfileBitArb + nameWithType: ContextProfileMask.ContextCompatibilityProfileBitArb + fullName: OpenTK.Graphics.Wgl.ContextProfileMask.ContextCompatibilityProfileBitArb + type: Field + source: + id: ContextCompatibilityProfileBitArb + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 378 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Wgl + syntax: + content: ContextCompatibilityProfileBitArb = 2 + return: + type: OpenTK.Graphics.Wgl.ContextProfileMask +- uid: OpenTK.Graphics.Wgl.ContextProfileMask.ContextEs2ProfileBitExt + commentId: F:OpenTK.Graphics.Wgl.ContextProfileMask.ContextEs2ProfileBitExt + id: ContextEs2ProfileBitExt + parent: OpenTK.Graphics.Wgl.ContextProfileMask + langs: + - csharp + - vb + name: ContextEs2ProfileBitExt + nameWithType: ContextProfileMask.ContextEs2ProfileBitExt + fullName: OpenTK.Graphics.Wgl.ContextProfileMask.ContextEs2ProfileBitExt + type: Field + source: + id: ContextEs2ProfileBitExt + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 379 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Wgl + syntax: + content: ContextEs2ProfileBitExt = 4 + return: + type: OpenTK.Graphics.Wgl.ContextProfileMask +- uid: OpenTK.Graphics.Wgl.ContextProfileMask.ContextEsProfileBitExt + commentId: F:OpenTK.Graphics.Wgl.ContextProfileMask.ContextEsProfileBitExt + id: ContextEsProfileBitExt + parent: OpenTK.Graphics.Wgl.ContextProfileMask + langs: + - csharp + - vb + name: ContextEsProfileBitExt + nameWithType: ContextProfileMask.ContextEsProfileBitExt + fullName: OpenTK.Graphics.Wgl.ContextProfileMask.ContextEsProfileBitExt + type: Field + source: + id: ContextEsProfileBitExt + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 380 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Wgl + syntax: + content: ContextEsProfileBitExt = 4 + return: + type: OpenTK.Graphics.Wgl.ContextProfileMask +references: +- uid: OpenTK.Graphics.Wgl + commentId: N:OpenTK.Graphics.Wgl + href: OpenTK.html + name: OpenTK.Graphics.Wgl + nameWithType: OpenTK.Graphics.Wgl + fullName: OpenTK.Graphics.Wgl + spec.csharp: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Graphics + name: Graphics + href: OpenTK.Graphics.html + - name: . + - uid: OpenTK.Graphics.Wgl + name: Wgl + href: OpenTK.Graphics.Wgl.html + spec.vb: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Graphics + name: Graphics + href: OpenTK.Graphics.html + - name: . + - uid: OpenTK.Graphics.Wgl + name: Wgl + href: OpenTK.Graphics.Wgl.html +- uid: OpenTK.Graphics.Wgl.ContextProfileMask + commentId: T:OpenTK.Graphics.Wgl.ContextProfileMask + parent: OpenTK.Graphics.Wgl + href: OpenTK.Graphics.Wgl.ContextProfileMask.html + name: ContextProfileMask + nameWithType: ContextProfileMask + fullName: OpenTK.Graphics.Wgl.ContextProfileMask diff --git a/api/OpenTK.Graphics.Wgl.WGLDXInteropMaskNV.yml b/api/OpenTK.Graphics.Wgl.DXInteropMaskNV.yml similarity index 53% rename from api/OpenTK.Graphics.Wgl.WGLDXInteropMaskNV.yml rename to api/OpenTK.Graphics.Wgl.DXInteropMaskNV.yml index 1ba84738..838dfff0 100644 --- a/api/OpenTK.Graphics.Wgl.WGLDXInteropMaskNV.yml +++ b/api/OpenTK.Graphics.Wgl.DXInteropMaskNV.yml @@ -1,139 +1,123 @@ ### YamlMime:ManagedReference items: -- uid: OpenTK.Graphics.Wgl.WGLDXInteropMaskNV - commentId: T:OpenTK.Graphics.Wgl.WGLDXInteropMaskNV - id: WGLDXInteropMaskNV +- uid: OpenTK.Graphics.Wgl.DXInteropMaskNV + commentId: T:OpenTK.Graphics.Wgl.DXInteropMaskNV + id: DXInteropMaskNV parent: OpenTK.Graphics.Wgl children: - - OpenTK.Graphics.Wgl.WGLDXInteropMaskNV.AccessReadOnlyNv - - OpenTK.Graphics.Wgl.WGLDXInteropMaskNV.AccessReadWriteNv - - OpenTK.Graphics.Wgl.WGLDXInteropMaskNV.AccessWriteDiscardNv + - OpenTK.Graphics.Wgl.DXInteropMaskNV.AccessReadOnlyNv + - OpenTK.Graphics.Wgl.DXInteropMaskNV.AccessReadWriteNv + - OpenTK.Graphics.Wgl.DXInteropMaskNV.AccessWriteDiscardNv langs: - csharp - vb - name: WGLDXInteropMaskNV - nameWithType: WGLDXInteropMaskNV - fullName: OpenTK.Graphics.Wgl.WGLDXInteropMaskNV + name: DXInteropMaskNV + nameWithType: DXInteropMaskNV + fullName: OpenTK.Graphics.Wgl.DXInteropMaskNV type: Enum source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: WGLDXInteropMaskNV - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 596 + id: DXInteropMaskNV + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 391 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl - summary: Used in , + summary: Used in , example: [] syntax: content: >- [Flags] - public enum WGLDXInteropMaskNV : uint + public enum DXInteropMaskNV : uint content.vb: >- - Public Enum WGLDXInteropMaskNV As UInteger + Public Enum DXInteropMaskNV As UInteger attributes: - type: System.FlagsAttribute ctor: System.FlagsAttribute.#ctor arguments: [] -- uid: OpenTK.Graphics.Wgl.WGLDXInteropMaskNV.AccessReadOnlyNv - commentId: F:OpenTK.Graphics.Wgl.WGLDXInteropMaskNV.AccessReadOnlyNv +- uid: OpenTK.Graphics.Wgl.DXInteropMaskNV.AccessReadOnlyNv + commentId: F:OpenTK.Graphics.Wgl.DXInteropMaskNV.AccessReadOnlyNv id: AccessReadOnlyNv - parent: OpenTK.Graphics.Wgl.WGLDXInteropMaskNV + parent: OpenTK.Graphics.Wgl.DXInteropMaskNV langs: - csharp - vb name: AccessReadOnlyNv - nameWithType: WGLDXInteropMaskNV.AccessReadOnlyNv - fullName: OpenTK.Graphics.Wgl.WGLDXInteropMaskNV.AccessReadOnlyNv + nameWithType: DXInteropMaskNV.AccessReadOnlyNv + fullName: OpenTK.Graphics.Wgl.DXInteropMaskNV.AccessReadOnlyNv type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: AccessReadOnlyNv - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 599 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 394 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl syntax: content: AccessReadOnlyNv = 0 return: - type: OpenTK.Graphics.Wgl.WGLDXInteropMaskNV -- uid: OpenTK.Graphics.Wgl.WGLDXInteropMaskNV.AccessReadWriteNv - commentId: F:OpenTK.Graphics.Wgl.WGLDXInteropMaskNV.AccessReadWriteNv + type: OpenTK.Graphics.Wgl.DXInteropMaskNV +- uid: OpenTK.Graphics.Wgl.DXInteropMaskNV.AccessReadWriteNv + commentId: F:OpenTK.Graphics.Wgl.DXInteropMaskNV.AccessReadWriteNv id: AccessReadWriteNv - parent: OpenTK.Graphics.Wgl.WGLDXInteropMaskNV + parent: OpenTK.Graphics.Wgl.DXInteropMaskNV langs: - csharp - vb name: AccessReadWriteNv - nameWithType: WGLDXInteropMaskNV.AccessReadWriteNv - fullName: OpenTK.Graphics.Wgl.WGLDXInteropMaskNV.AccessReadWriteNv + nameWithType: DXInteropMaskNV.AccessReadWriteNv + fullName: OpenTK.Graphics.Wgl.DXInteropMaskNV.AccessReadWriteNv type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: AccessReadWriteNv - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 600 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 395 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl syntax: content: AccessReadWriteNv = 1 return: - type: OpenTK.Graphics.Wgl.WGLDXInteropMaskNV -- uid: OpenTK.Graphics.Wgl.WGLDXInteropMaskNV.AccessWriteDiscardNv - commentId: F:OpenTK.Graphics.Wgl.WGLDXInteropMaskNV.AccessWriteDiscardNv + type: OpenTK.Graphics.Wgl.DXInteropMaskNV +- uid: OpenTK.Graphics.Wgl.DXInteropMaskNV.AccessWriteDiscardNv + commentId: F:OpenTK.Graphics.Wgl.DXInteropMaskNV.AccessWriteDiscardNv id: AccessWriteDiscardNv - parent: OpenTK.Graphics.Wgl.WGLDXInteropMaskNV + parent: OpenTK.Graphics.Wgl.DXInteropMaskNV langs: - csharp - vb name: AccessWriteDiscardNv - nameWithType: WGLDXInteropMaskNV.AccessWriteDiscardNv - fullName: OpenTK.Graphics.Wgl.WGLDXInteropMaskNV.AccessWriteDiscardNv + nameWithType: DXInteropMaskNV.AccessWriteDiscardNv + fullName: OpenTK.Graphics.Wgl.DXInteropMaskNV.AccessWriteDiscardNv type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: AccessWriteDiscardNv - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 601 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 396 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl syntax: content: AccessWriteDiscardNv = 2 return: - type: OpenTK.Graphics.Wgl.WGLDXInteropMaskNV + type: OpenTK.Graphics.Wgl.DXInteropMaskNV references: -- uid: OpenTK.Graphics.Wgl.Wgl.NV.DXObjectAccessNV(System.IntPtr,OpenTK.Graphics.Wgl.WGLDXInteropMaskNV) - commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.DXObjectAccessNV(System.IntPtr,OpenTK.Graphics.Wgl.WGLDXInteropMaskNV) +- uid: OpenTK.Graphics.Wgl.Wgl.NV.DXObjectAccessNV(System.IntPtr,OpenTK.Graphics.Wgl.DXInteropMaskNV) + commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.DXObjectAccessNV(System.IntPtr,OpenTK.Graphics.Wgl.DXInteropMaskNV) isExternal: true - href: OpenTK.Graphics.Wgl.Wgl.NV.html#OpenTK_Graphics_Wgl_Wgl_NV_DXObjectAccessNV_System_IntPtr_OpenTK_Graphics_Wgl_WGLDXInteropMaskNV_ - name: DXObjectAccessNV(nint, WGLDXInteropMaskNV) - nameWithType: Wgl.NV.DXObjectAccessNV(nint, WGLDXInteropMaskNV) - fullName: OpenTK.Graphics.Wgl.Wgl.NV.DXObjectAccessNV(nint, OpenTK.Graphics.Wgl.WGLDXInteropMaskNV) - nameWithType.vb: Wgl.NV.DXObjectAccessNV(IntPtr, WGLDXInteropMaskNV) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.DXObjectAccessNV(System.IntPtr, OpenTK.Graphics.Wgl.WGLDXInteropMaskNV) - name.vb: DXObjectAccessNV(IntPtr, WGLDXInteropMaskNV) + href: OpenTK.Graphics.Wgl.Wgl.NV.html#OpenTK_Graphics_Wgl_Wgl_NV_DXObjectAccessNV_System_IntPtr_OpenTK_Graphics_Wgl_DXInteropMaskNV_ + name: DXObjectAccessNV(nint, DXInteropMaskNV) + nameWithType: Wgl.NV.DXObjectAccessNV(nint, DXInteropMaskNV) + fullName: OpenTK.Graphics.Wgl.Wgl.NV.DXObjectAccessNV(nint, OpenTK.Graphics.Wgl.DXInteropMaskNV) + nameWithType.vb: Wgl.NV.DXObjectAccessNV(IntPtr, DXInteropMaskNV) + fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.DXObjectAccessNV(System.IntPtr, OpenTK.Graphics.Wgl.DXInteropMaskNV) + name.vb: DXObjectAccessNV(IntPtr, DXInteropMaskNV) spec.csharp: - - uid: OpenTK.Graphics.Wgl.Wgl.NV.DXObjectAccessNV(System.IntPtr,OpenTK.Graphics.Wgl.WGLDXInteropMaskNV) + - uid: OpenTK.Graphics.Wgl.Wgl.NV.DXObjectAccessNV(System.IntPtr,OpenTK.Graphics.Wgl.DXInteropMaskNV) name: DXObjectAccessNV - href: OpenTK.Graphics.Wgl.Wgl.NV.html#OpenTK_Graphics_Wgl_Wgl_NV_DXObjectAccessNV_System_IntPtr_OpenTK_Graphics_Wgl_WGLDXInteropMaskNV_ + href: OpenTK.Graphics.Wgl.Wgl.NV.html#OpenTK_Graphics_Wgl_Wgl_NV_DXObjectAccessNV_System_IntPtr_OpenTK_Graphics_Wgl_DXInteropMaskNV_ - name: ( - uid: System.IntPtr name: nint @@ -141,14 +125,14 @@ references: href: https://learn.microsoft.com/dotnet/api/system.intptr - name: ',' - name: " " - - uid: OpenTK.Graphics.Wgl.WGLDXInteropMaskNV - name: WGLDXInteropMaskNV - href: OpenTK.Graphics.Wgl.WGLDXInteropMaskNV.html + - uid: OpenTK.Graphics.Wgl.DXInteropMaskNV + name: DXInteropMaskNV + href: OpenTK.Graphics.Wgl.DXInteropMaskNV.html - name: ) spec.vb: - - uid: OpenTK.Graphics.Wgl.Wgl.NV.DXObjectAccessNV(System.IntPtr,OpenTK.Graphics.Wgl.WGLDXInteropMaskNV) + - uid: OpenTK.Graphics.Wgl.Wgl.NV.DXObjectAccessNV(System.IntPtr,OpenTK.Graphics.Wgl.DXInteropMaskNV) name: DXObjectAccessNV - href: OpenTK.Graphics.Wgl.Wgl.NV.html#OpenTK_Graphics_Wgl_Wgl_NV_DXObjectAccessNV_System_IntPtr_OpenTK_Graphics_Wgl_WGLDXInteropMaskNV_ + href: OpenTK.Graphics.Wgl.Wgl.NV.html#OpenTK_Graphics_Wgl_Wgl_NV_DXObjectAccessNV_System_IntPtr_OpenTK_Graphics_Wgl_DXInteropMaskNV_ - name: ( - uid: System.IntPtr name: IntPtr @@ -156,24 +140,24 @@ references: href: https://learn.microsoft.com/dotnet/api/system.intptr - name: ',' - name: " " - - uid: OpenTK.Graphics.Wgl.WGLDXInteropMaskNV - name: WGLDXInteropMaskNV - href: OpenTK.Graphics.Wgl.WGLDXInteropMaskNV.html + - uid: OpenTK.Graphics.Wgl.DXInteropMaskNV + name: DXInteropMaskNV + href: OpenTK.Graphics.Wgl.DXInteropMaskNV.html - name: ) -- uid: OpenTK.Graphics.Wgl.Wgl.NV.DXRegisterObjectNV(System.IntPtr,System.Void*,System.UInt32,OpenTK.Graphics.Wgl.ObjectTypeDX,OpenTK.Graphics.Wgl.WGLDXInteropMaskNV) - commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.DXRegisterObjectNV(System.IntPtr,System.Void*,System.UInt32,OpenTK.Graphics.Wgl.ObjectTypeDX,OpenTK.Graphics.Wgl.WGLDXInteropMaskNV) +- uid: OpenTK.Graphics.Wgl.Wgl.NV.DXRegisterObjectNV(System.IntPtr,System.Void*,System.UInt32,OpenTK.Graphics.Wgl.ObjectTypeDX,OpenTK.Graphics.Wgl.DXInteropMaskNV) + commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.DXRegisterObjectNV(System.IntPtr,System.Void*,System.UInt32,OpenTK.Graphics.Wgl.ObjectTypeDX,OpenTK.Graphics.Wgl.DXInteropMaskNV) isExternal: true - href: OpenTK.Graphics.Wgl.Wgl.NV.html#OpenTK_Graphics_Wgl_Wgl_NV_DXRegisterObjectNV_System_IntPtr_System_Void__System_UInt32_OpenTK_Graphics_Wgl_ObjectTypeDX_OpenTK_Graphics_Wgl_WGLDXInteropMaskNV_ - name: DXRegisterObjectNV(nint, void*, uint, ObjectTypeDX, WGLDXInteropMaskNV) - nameWithType: Wgl.NV.DXRegisterObjectNV(nint, void*, uint, ObjectTypeDX, WGLDXInteropMaskNV) - fullName: OpenTK.Graphics.Wgl.Wgl.NV.DXRegisterObjectNV(nint, void*, uint, OpenTK.Graphics.Wgl.ObjectTypeDX, OpenTK.Graphics.Wgl.WGLDXInteropMaskNV) - nameWithType.vb: Wgl.NV.DXRegisterObjectNV(IntPtr, Void*, UInteger, ObjectTypeDX, WGLDXInteropMaskNV) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.DXRegisterObjectNV(System.IntPtr, Void*, UInteger, OpenTK.Graphics.Wgl.ObjectTypeDX, OpenTK.Graphics.Wgl.WGLDXInteropMaskNV) - name.vb: DXRegisterObjectNV(IntPtr, Void*, UInteger, ObjectTypeDX, WGLDXInteropMaskNV) + href: OpenTK.Graphics.Wgl.Wgl.NV.html#OpenTK_Graphics_Wgl_Wgl_NV_DXRegisterObjectNV_System_IntPtr_System_Void__System_UInt32_OpenTK_Graphics_Wgl_ObjectTypeDX_OpenTK_Graphics_Wgl_DXInteropMaskNV_ + name: DXRegisterObjectNV(nint, void*, uint, ObjectTypeDX, DXInteropMaskNV) + nameWithType: Wgl.NV.DXRegisterObjectNV(nint, void*, uint, ObjectTypeDX, DXInteropMaskNV) + fullName: OpenTK.Graphics.Wgl.Wgl.NV.DXRegisterObjectNV(nint, void*, uint, OpenTK.Graphics.Wgl.ObjectTypeDX, OpenTK.Graphics.Wgl.DXInteropMaskNV) + nameWithType.vb: Wgl.NV.DXRegisterObjectNV(IntPtr, Void*, UInteger, ObjectTypeDX, DXInteropMaskNV) + fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.DXRegisterObjectNV(System.IntPtr, Void*, UInteger, OpenTK.Graphics.Wgl.ObjectTypeDX, OpenTK.Graphics.Wgl.DXInteropMaskNV) + name.vb: DXRegisterObjectNV(IntPtr, Void*, UInteger, ObjectTypeDX, DXInteropMaskNV) spec.csharp: - - uid: OpenTK.Graphics.Wgl.Wgl.NV.DXRegisterObjectNV(System.IntPtr,System.Void*,System.UInt32,OpenTK.Graphics.Wgl.ObjectTypeDX,OpenTK.Graphics.Wgl.WGLDXInteropMaskNV) + - uid: OpenTK.Graphics.Wgl.Wgl.NV.DXRegisterObjectNV(System.IntPtr,System.Void*,System.UInt32,OpenTK.Graphics.Wgl.ObjectTypeDX,OpenTK.Graphics.Wgl.DXInteropMaskNV) name: DXRegisterObjectNV - href: OpenTK.Graphics.Wgl.Wgl.NV.html#OpenTK_Graphics_Wgl_Wgl_NV_DXRegisterObjectNV_System_IntPtr_System_Void__System_UInt32_OpenTK_Graphics_Wgl_ObjectTypeDX_OpenTK_Graphics_Wgl_WGLDXInteropMaskNV_ + href: OpenTK.Graphics.Wgl.Wgl.NV.html#OpenTK_Graphics_Wgl_Wgl_NV_DXRegisterObjectNV_System_IntPtr_System_Void__System_UInt32_OpenTK_Graphics_Wgl_ObjectTypeDX_OpenTK_Graphics_Wgl_DXInteropMaskNV_ - name: ( - uid: System.IntPtr name: nint @@ -199,14 +183,14 @@ references: href: OpenTK.Graphics.Wgl.ObjectTypeDX.html - name: ',' - name: " " - - uid: OpenTK.Graphics.Wgl.WGLDXInteropMaskNV - name: WGLDXInteropMaskNV - href: OpenTK.Graphics.Wgl.WGLDXInteropMaskNV.html + - uid: OpenTK.Graphics.Wgl.DXInteropMaskNV + name: DXInteropMaskNV + href: OpenTK.Graphics.Wgl.DXInteropMaskNV.html - name: ) spec.vb: - - uid: OpenTK.Graphics.Wgl.Wgl.NV.DXRegisterObjectNV(System.IntPtr,System.Void*,System.UInt32,OpenTK.Graphics.Wgl.ObjectTypeDX,OpenTK.Graphics.Wgl.WGLDXInteropMaskNV) + - uid: OpenTK.Graphics.Wgl.Wgl.NV.DXRegisterObjectNV(System.IntPtr,System.Void*,System.UInt32,OpenTK.Graphics.Wgl.ObjectTypeDX,OpenTK.Graphics.Wgl.DXInteropMaskNV) name: DXRegisterObjectNV - href: OpenTK.Graphics.Wgl.Wgl.NV.html#OpenTK_Graphics_Wgl_Wgl_NV_DXRegisterObjectNV_System_IntPtr_System_Void__System_UInt32_OpenTK_Graphics_Wgl_ObjectTypeDX_OpenTK_Graphics_Wgl_WGLDXInteropMaskNV_ + href: OpenTK.Graphics.Wgl.Wgl.NV.html#OpenTK_Graphics_Wgl_Wgl_NV_DXRegisterObjectNV_System_IntPtr_System_Void__System_UInt32_OpenTK_Graphics_Wgl_ObjectTypeDX_OpenTK_Graphics_Wgl_DXInteropMaskNV_ - name: ( - uid: System.IntPtr name: IntPtr @@ -232,9 +216,9 @@ references: href: OpenTK.Graphics.Wgl.ObjectTypeDX.html - name: ',' - name: " " - - uid: OpenTK.Graphics.Wgl.WGLDXInteropMaskNV - name: WGLDXInteropMaskNV - href: OpenTK.Graphics.Wgl.WGLDXInteropMaskNV.html + - uid: OpenTK.Graphics.Wgl.DXInteropMaskNV + name: DXInteropMaskNV + href: OpenTK.Graphics.Wgl.DXInteropMaskNV.html - name: ) - uid: OpenTK.Graphics.Wgl commentId: N:OpenTK.Graphics.Wgl @@ -266,10 +250,10 @@ references: - uid: OpenTK.Graphics.Wgl name: Wgl href: OpenTK.Graphics.Wgl.html -- uid: OpenTK.Graphics.Wgl.WGLDXInteropMaskNV - commentId: T:OpenTK.Graphics.Wgl.WGLDXInteropMaskNV +- uid: OpenTK.Graphics.Wgl.DXInteropMaskNV + commentId: T:OpenTK.Graphics.Wgl.DXInteropMaskNV parent: OpenTK.Graphics.Wgl - href: OpenTK.Graphics.Wgl.WGLDXInteropMaskNV.html - name: WGLDXInteropMaskNV - nameWithType: WGLDXInteropMaskNV - fullName: OpenTK.Graphics.Wgl.WGLDXInteropMaskNV + href: OpenTK.Graphics.Wgl.DXInteropMaskNV.html + name: DXInteropMaskNV + nameWithType: DXInteropMaskNV + fullName: OpenTK.Graphics.Wgl.DXInteropMaskNV diff --git a/api/OpenTK.Graphics.Wgl.DigitalVideoAttribute.yml b/api/OpenTK.Graphics.Wgl.DigitalVideoAttribute.yml index 54805174..7ac90d42 100644 --- a/api/OpenTK.Graphics.Wgl.DigitalVideoAttribute.yml +++ b/api/OpenTK.Graphics.Wgl.DigitalVideoAttribute.yml @@ -17,13 +17,9 @@ items: fullName: OpenTK.Graphics.Wgl.DigitalVideoAttribute type: Enum source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DigitalVideoAttribute - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 358 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 383 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -44,13 +40,9 @@ items: fullName: OpenTK.Graphics.Wgl.DigitalVideoAttribute.DigitalVideoCursorAlphaFramebufferI3d type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DigitalVideoCursorAlphaFramebufferI3d - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 360 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 385 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -70,13 +62,9 @@ items: fullName: OpenTK.Graphics.Wgl.DigitalVideoAttribute.DigitalVideoCursorAlphaValueI3d type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DigitalVideoCursorAlphaValueI3d - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 361 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 386 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -96,13 +84,9 @@ items: fullName: OpenTK.Graphics.Wgl.DigitalVideoAttribute.DigitalVideoCursorIncludedI3d type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DigitalVideoCursorIncludedI3d - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 362 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 387 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -122,13 +106,9 @@ items: fullName: OpenTK.Graphics.Wgl.DigitalVideoAttribute.DigitalVideoGammaCorrectedI3d type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DigitalVideoGammaCorrectedI3d - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 363 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 388 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl diff --git a/api/OpenTK.Graphics.Wgl.FontFormat.yml b/api/OpenTK.Graphics.Wgl.FontFormat.yml index 6870855f..d08efba3 100644 --- a/api/OpenTK.Graphics.Wgl.FontFormat.yml +++ b/api/OpenTK.Graphics.Wgl.FontFormat.yml @@ -15,13 +15,9 @@ items: fullName: OpenTK.Graphics.Wgl.FontFormat type: Enum source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: FontFormat - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 366 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 399 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -42,13 +38,9 @@ items: fullName: OpenTK.Graphics.Wgl.FontFormat.FontLines type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: FontLines - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 368 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 401 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -68,13 +60,9 @@ items: fullName: OpenTK.Graphics.Wgl.FontFormat.FontPolygons type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: FontPolygons - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 369 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 402 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl diff --git a/api/OpenTK.Graphics.Wgl.GPUPropertyAMD.yml b/api/OpenTK.Graphics.Wgl.GPUPropertyAMD.yml index 719108a2..fc88e364 100644 --- a/api/OpenTK.Graphics.Wgl.GPUPropertyAMD.yml +++ b/api/OpenTK.Graphics.Wgl.GPUPropertyAMD.yml @@ -22,13 +22,9 @@ items: fullName: OpenTK.Graphics.Wgl.GPUPropertyAMD type: Enum source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GPUPropertyAMD - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 378 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 411 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -49,13 +45,9 @@ items: fullName: OpenTK.Graphics.Wgl.GPUPropertyAMD.GpuVendorAmd type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GpuVendorAmd - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 380 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 413 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -75,13 +67,9 @@ items: fullName: OpenTK.Graphics.Wgl.GPUPropertyAMD.GpuRendererStringAmd type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GpuRendererStringAmd - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 381 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 414 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -101,13 +89,9 @@ items: fullName: OpenTK.Graphics.Wgl.GPUPropertyAMD.GpuOpenglVersionStringAmd type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GpuOpenglVersionStringAmd - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 382 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 415 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -127,13 +111,9 @@ items: fullName: OpenTK.Graphics.Wgl.GPUPropertyAMD.GpuRamAmd type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GpuRamAmd - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 383 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 416 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -153,13 +133,9 @@ items: fullName: OpenTK.Graphics.Wgl.GPUPropertyAMD.GpuClockAmd type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GpuClockAmd - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 384 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 417 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -179,13 +155,9 @@ items: fullName: OpenTK.Graphics.Wgl.GPUPropertyAMD.GpuNumPipesAmd type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GpuNumPipesAmd - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 385 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 418 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -205,13 +177,9 @@ items: fullName: OpenTK.Graphics.Wgl.GPUPropertyAMD.GpuNumSimdAmd type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GpuNumSimdAmd - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 386 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 419 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -231,13 +199,9 @@ items: fullName: OpenTK.Graphics.Wgl.GPUPropertyAMD.GpuNumRbAmd type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GpuNumRbAmd - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 387 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 420 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -257,13 +221,9 @@ items: fullName: OpenTK.Graphics.Wgl.GPUPropertyAMD.GpuNumSpiAmd type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GpuNumSpiAmd - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 388 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 421 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl diff --git a/api/OpenTK.Graphics.Wgl.GammaTableAttribute.yml b/api/OpenTK.Graphics.Wgl.GammaTableAttribute.yml index f9e3e0fe..974bed43 100644 --- a/api/OpenTK.Graphics.Wgl.GammaTableAttribute.yml +++ b/api/OpenTK.Graphics.Wgl.GammaTableAttribute.yml @@ -15,13 +15,9 @@ items: fullName: OpenTK.Graphics.Wgl.GammaTableAttribute type: Enum source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GammaTableAttribute - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 372 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 405 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -42,13 +38,9 @@ items: fullName: OpenTK.Graphics.Wgl.GammaTableAttribute.GammaTableSizeI3d type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GammaTableSizeI3d - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 374 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 407 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -68,13 +60,9 @@ items: fullName: OpenTK.Graphics.Wgl.GammaTableAttribute.GammaExcludeDesktopI3d type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GammaExcludeDesktopI3d - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 375 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 408 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl diff --git a/api/OpenTK.Graphics.Wgl.WGLImageBufferMaskI3D.yml b/api/OpenTK.Graphics.Wgl.ImageBufferMaskI3D.yml similarity index 51% rename from api/OpenTK.Graphics.Wgl.WGLImageBufferMaskI3D.yml rename to api/OpenTK.Graphics.Wgl.ImageBufferMaskI3D.yml index 957e0fac..cfe43640 100644 --- a/api/OpenTK.Graphics.Wgl.WGLImageBufferMaskI3D.yml +++ b/api/OpenTK.Graphics.Wgl.ImageBufferMaskI3D.yml @@ -1,112 +1,100 @@ ### YamlMime:ManagedReference items: -- uid: OpenTK.Graphics.Wgl.WGLImageBufferMaskI3D - commentId: T:OpenTK.Graphics.Wgl.WGLImageBufferMaskI3D - id: WGLImageBufferMaskI3D +- uid: OpenTK.Graphics.Wgl.ImageBufferMaskI3D + commentId: T:OpenTK.Graphics.Wgl.ImageBufferMaskI3D + id: ImageBufferMaskI3D parent: OpenTK.Graphics.Wgl children: - - OpenTK.Graphics.Wgl.WGLImageBufferMaskI3D.ImageBufferLockI3d - - OpenTK.Graphics.Wgl.WGLImageBufferMaskI3D.ImageBufferMinAccessI3d + - OpenTK.Graphics.Wgl.ImageBufferMaskI3D.ImageBufferLockI3d + - OpenTK.Graphics.Wgl.ImageBufferMaskI3D.ImageBufferMinAccessI3d langs: - csharp - vb - name: WGLImageBufferMaskI3D - nameWithType: WGLImageBufferMaskI3D - fullName: OpenTK.Graphics.Wgl.WGLImageBufferMaskI3D + name: ImageBufferMaskI3D + nameWithType: ImageBufferMaskI3D + fullName: OpenTK.Graphics.Wgl.ImageBufferMaskI3D type: Enum source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: WGLImageBufferMaskI3D - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 604 + id: ImageBufferMaskI3D + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 424 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl - summary: Used in + summary: Used in example: [] syntax: content: >- [Flags] - public enum WGLImageBufferMaskI3D : uint + public enum ImageBufferMaskI3D : uint content.vb: >- - Public Enum WGLImageBufferMaskI3D As UInteger + Public Enum ImageBufferMaskI3D As UInteger attributes: - type: System.FlagsAttribute ctor: System.FlagsAttribute.#ctor arguments: [] -- uid: OpenTK.Graphics.Wgl.WGLImageBufferMaskI3D.ImageBufferMinAccessI3d - commentId: F:OpenTK.Graphics.Wgl.WGLImageBufferMaskI3D.ImageBufferMinAccessI3d +- uid: OpenTK.Graphics.Wgl.ImageBufferMaskI3D.ImageBufferMinAccessI3d + commentId: F:OpenTK.Graphics.Wgl.ImageBufferMaskI3D.ImageBufferMinAccessI3d id: ImageBufferMinAccessI3d - parent: OpenTK.Graphics.Wgl.WGLImageBufferMaskI3D + parent: OpenTK.Graphics.Wgl.ImageBufferMaskI3D langs: - csharp - vb name: ImageBufferMinAccessI3d - nameWithType: WGLImageBufferMaskI3D.ImageBufferMinAccessI3d - fullName: OpenTK.Graphics.Wgl.WGLImageBufferMaskI3D.ImageBufferMinAccessI3d + nameWithType: ImageBufferMaskI3D.ImageBufferMinAccessI3d + fullName: OpenTK.Graphics.Wgl.ImageBufferMaskI3D.ImageBufferMinAccessI3d type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ImageBufferMinAccessI3d - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 607 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 427 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl syntax: content: ImageBufferMinAccessI3d = 1 return: - type: OpenTK.Graphics.Wgl.WGLImageBufferMaskI3D -- uid: OpenTK.Graphics.Wgl.WGLImageBufferMaskI3D.ImageBufferLockI3d - commentId: F:OpenTK.Graphics.Wgl.WGLImageBufferMaskI3D.ImageBufferLockI3d + type: OpenTK.Graphics.Wgl.ImageBufferMaskI3D +- uid: OpenTK.Graphics.Wgl.ImageBufferMaskI3D.ImageBufferLockI3d + commentId: F:OpenTK.Graphics.Wgl.ImageBufferMaskI3D.ImageBufferLockI3d id: ImageBufferLockI3d - parent: OpenTK.Graphics.Wgl.WGLImageBufferMaskI3D + parent: OpenTK.Graphics.Wgl.ImageBufferMaskI3D langs: - csharp - vb name: ImageBufferLockI3d - nameWithType: WGLImageBufferMaskI3D.ImageBufferLockI3d - fullName: OpenTK.Graphics.Wgl.WGLImageBufferMaskI3D.ImageBufferLockI3d + nameWithType: ImageBufferMaskI3D.ImageBufferLockI3d + fullName: OpenTK.Graphics.Wgl.ImageBufferMaskI3D.ImageBufferLockI3d type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ImageBufferLockI3d - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 608 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 428 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl syntax: content: ImageBufferLockI3d = 2 return: - type: OpenTK.Graphics.Wgl.WGLImageBufferMaskI3D + type: OpenTK.Graphics.Wgl.ImageBufferMaskI3D references: -- uid: OpenTK.Graphics.Wgl.Wgl.I3D.CreateImageBufferI3D(System.IntPtr,System.UInt32,OpenTK.Graphics.Wgl.WGLImageBufferMaskI3D) - commentId: M:OpenTK.Graphics.Wgl.Wgl.I3D.CreateImageBufferI3D(System.IntPtr,System.UInt32,OpenTK.Graphics.Wgl.WGLImageBufferMaskI3D) +- uid: OpenTK.Graphics.Wgl.Wgl.I3D.CreateImageBufferI3D(System.IntPtr,System.UInt32,OpenTK.Graphics.Wgl.ImageBufferMaskI3D) + commentId: M:OpenTK.Graphics.Wgl.Wgl.I3D.CreateImageBufferI3D(System.IntPtr,System.UInt32,OpenTK.Graphics.Wgl.ImageBufferMaskI3D) isExternal: true - href: OpenTK.Graphics.Wgl.Wgl.I3D.html#OpenTK_Graphics_Wgl_Wgl_I3D_CreateImageBufferI3D_System_IntPtr_System_UInt32_OpenTK_Graphics_Wgl_WGLImageBufferMaskI3D_ - name: CreateImageBufferI3D(nint, uint, WGLImageBufferMaskI3D) - nameWithType: Wgl.I3D.CreateImageBufferI3D(nint, uint, WGLImageBufferMaskI3D) - fullName: OpenTK.Graphics.Wgl.Wgl.I3D.CreateImageBufferI3D(nint, uint, OpenTK.Graphics.Wgl.WGLImageBufferMaskI3D) - nameWithType.vb: Wgl.I3D.CreateImageBufferI3D(IntPtr, UInteger, WGLImageBufferMaskI3D) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.I3D.CreateImageBufferI3D(System.IntPtr, UInteger, OpenTK.Graphics.Wgl.WGLImageBufferMaskI3D) - name.vb: CreateImageBufferI3D(IntPtr, UInteger, WGLImageBufferMaskI3D) + href: OpenTK.Graphics.Wgl.Wgl.I3D.html#OpenTK_Graphics_Wgl_Wgl_I3D_CreateImageBufferI3D_System_IntPtr_System_UInt32_OpenTK_Graphics_Wgl_ImageBufferMaskI3D_ + name: CreateImageBufferI3D(nint, uint, ImageBufferMaskI3D) + nameWithType: Wgl.I3D.CreateImageBufferI3D(nint, uint, ImageBufferMaskI3D) + fullName: OpenTK.Graphics.Wgl.Wgl.I3D.CreateImageBufferI3D(nint, uint, OpenTK.Graphics.Wgl.ImageBufferMaskI3D) + nameWithType.vb: Wgl.I3D.CreateImageBufferI3D(IntPtr, UInteger, ImageBufferMaskI3D) + fullName.vb: OpenTK.Graphics.Wgl.Wgl.I3D.CreateImageBufferI3D(System.IntPtr, UInteger, OpenTK.Graphics.Wgl.ImageBufferMaskI3D) + name.vb: CreateImageBufferI3D(IntPtr, UInteger, ImageBufferMaskI3D) spec.csharp: - - uid: OpenTK.Graphics.Wgl.Wgl.I3D.CreateImageBufferI3D(System.IntPtr,System.UInt32,OpenTK.Graphics.Wgl.WGLImageBufferMaskI3D) + - uid: OpenTK.Graphics.Wgl.Wgl.I3D.CreateImageBufferI3D(System.IntPtr,System.UInt32,OpenTK.Graphics.Wgl.ImageBufferMaskI3D) name: CreateImageBufferI3D - href: OpenTK.Graphics.Wgl.Wgl.I3D.html#OpenTK_Graphics_Wgl_Wgl_I3D_CreateImageBufferI3D_System_IntPtr_System_UInt32_OpenTK_Graphics_Wgl_WGLImageBufferMaskI3D_ + href: OpenTK.Graphics.Wgl.Wgl.I3D.html#OpenTK_Graphics_Wgl_Wgl_I3D_CreateImageBufferI3D_System_IntPtr_System_UInt32_OpenTK_Graphics_Wgl_ImageBufferMaskI3D_ - name: ( - uid: System.IntPtr name: nint @@ -120,14 +108,14 @@ references: href: https://learn.microsoft.com/dotnet/api/system.uint32 - name: ',' - name: " " - - uid: OpenTK.Graphics.Wgl.WGLImageBufferMaskI3D - name: WGLImageBufferMaskI3D - href: OpenTK.Graphics.Wgl.WGLImageBufferMaskI3D.html + - uid: OpenTK.Graphics.Wgl.ImageBufferMaskI3D + name: ImageBufferMaskI3D + href: OpenTK.Graphics.Wgl.ImageBufferMaskI3D.html - name: ) spec.vb: - - uid: OpenTK.Graphics.Wgl.Wgl.I3D.CreateImageBufferI3D(System.IntPtr,System.UInt32,OpenTK.Graphics.Wgl.WGLImageBufferMaskI3D) + - uid: OpenTK.Graphics.Wgl.Wgl.I3D.CreateImageBufferI3D(System.IntPtr,System.UInt32,OpenTK.Graphics.Wgl.ImageBufferMaskI3D) name: CreateImageBufferI3D - href: OpenTK.Graphics.Wgl.Wgl.I3D.html#OpenTK_Graphics_Wgl_Wgl_I3D_CreateImageBufferI3D_System_IntPtr_System_UInt32_OpenTK_Graphics_Wgl_WGLImageBufferMaskI3D_ + href: OpenTK.Graphics.Wgl.Wgl.I3D.html#OpenTK_Graphics_Wgl_Wgl_I3D_CreateImageBufferI3D_System_IntPtr_System_UInt32_OpenTK_Graphics_Wgl_ImageBufferMaskI3D_ - name: ( - uid: System.IntPtr name: IntPtr @@ -141,9 +129,9 @@ references: href: https://learn.microsoft.com/dotnet/api/system.uint32 - name: ',' - name: " " - - uid: OpenTK.Graphics.Wgl.WGLImageBufferMaskI3D - name: WGLImageBufferMaskI3D - href: OpenTK.Graphics.Wgl.WGLImageBufferMaskI3D.html + - uid: OpenTK.Graphics.Wgl.ImageBufferMaskI3D + name: ImageBufferMaskI3D + href: OpenTK.Graphics.Wgl.ImageBufferMaskI3D.html - name: ) - uid: OpenTK.Graphics.Wgl commentId: N:OpenTK.Graphics.Wgl @@ -175,10 +163,10 @@ references: - uid: OpenTK.Graphics.Wgl name: Wgl href: OpenTK.Graphics.Wgl.html -- uid: OpenTK.Graphics.Wgl.WGLImageBufferMaskI3D - commentId: T:OpenTK.Graphics.Wgl.WGLImageBufferMaskI3D +- uid: OpenTK.Graphics.Wgl.ImageBufferMaskI3D + commentId: T:OpenTK.Graphics.Wgl.ImageBufferMaskI3D parent: OpenTK.Graphics.Wgl - href: OpenTK.Graphics.Wgl.WGLImageBufferMaskI3D.html - name: WGLImageBufferMaskI3D - nameWithType: WGLImageBufferMaskI3D - fullName: OpenTK.Graphics.Wgl.WGLImageBufferMaskI3D + href: OpenTK.Graphics.Wgl.ImageBufferMaskI3D.html + name: ImageBufferMaskI3D + nameWithType: ImageBufferMaskI3D + fullName: OpenTK.Graphics.Wgl.ImageBufferMaskI3D diff --git a/api/OpenTK.Graphics.Wgl.LayerPlaneDescriptor.yml b/api/OpenTK.Graphics.Wgl.LayerPlaneDescriptor.yml index fc47645e..4af51b53 100644 --- a/api/OpenTK.Graphics.Wgl.LayerPlaneDescriptor.yml +++ b/api/OpenTK.Graphics.Wgl.LayerPlaneDescriptor.yml @@ -37,12 +37,8 @@ items: fullName: OpenTK.Graphics.Wgl.LayerPlaneDescriptor type: Struct source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: LayerPlaneDescriptor - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 546 assemblies: - OpenTK.Graphics @@ -69,12 +65,8 @@ items: fullName: OpenTK.Graphics.Wgl.LayerPlaneDescriptor.nSize type: Field source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: nSize - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 548 assemblies: - OpenTK.Graphics @@ -96,12 +88,8 @@ items: fullName: OpenTK.Graphics.Wgl.LayerPlaneDescriptor.nVersion type: Field source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: nVersion - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 549 assemblies: - OpenTK.Graphics @@ -123,12 +111,8 @@ items: fullName: OpenTK.Graphics.Wgl.LayerPlaneDescriptor.dwFlags type: Field source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: dwFlags - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 550 assemblies: - OpenTK.Graphics @@ -150,12 +134,8 @@ items: fullName: OpenTK.Graphics.Wgl.LayerPlaneDescriptor.iPixelType type: Field source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: iPixelType - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 551 assemblies: - OpenTK.Graphics @@ -177,12 +157,8 @@ items: fullName: OpenTK.Graphics.Wgl.LayerPlaneDescriptor.cColorBits type: Field source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: cColorBits - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 552 assemblies: - OpenTK.Graphics @@ -204,12 +180,8 @@ items: fullName: OpenTK.Graphics.Wgl.LayerPlaneDescriptor.cRedBits type: Field source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: cRedBits - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 553 assemblies: - OpenTK.Graphics @@ -231,12 +203,8 @@ items: fullName: OpenTK.Graphics.Wgl.LayerPlaneDescriptor.cRedShift type: Field source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: cRedShift - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 554 assemblies: - OpenTK.Graphics @@ -258,12 +226,8 @@ items: fullName: OpenTK.Graphics.Wgl.LayerPlaneDescriptor.cGreenBits type: Field source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: cGreenBits - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 555 assemblies: - OpenTK.Graphics @@ -285,12 +249,8 @@ items: fullName: OpenTK.Graphics.Wgl.LayerPlaneDescriptor.cGreenShift type: Field source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: cGreenShift - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 556 assemblies: - OpenTK.Graphics @@ -312,12 +272,8 @@ items: fullName: OpenTK.Graphics.Wgl.LayerPlaneDescriptor.cBlueBits type: Field source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: cBlueBits - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 557 assemblies: - OpenTK.Graphics @@ -339,12 +295,8 @@ items: fullName: OpenTK.Graphics.Wgl.LayerPlaneDescriptor.cBlueShift type: Field source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: cBlueShift - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 558 assemblies: - OpenTK.Graphics @@ -366,12 +318,8 @@ items: fullName: OpenTK.Graphics.Wgl.LayerPlaneDescriptor.cAlphaBits type: Field source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: cAlphaBits - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 559 assemblies: - OpenTK.Graphics @@ -393,12 +341,8 @@ items: fullName: OpenTK.Graphics.Wgl.LayerPlaneDescriptor.cAlphaShift type: Field source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: cAlphaShift - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 560 assemblies: - OpenTK.Graphics @@ -420,12 +364,8 @@ items: fullName: OpenTK.Graphics.Wgl.LayerPlaneDescriptor.cAccumBits type: Field source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: cAccumBits - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 561 assemblies: - OpenTK.Graphics @@ -447,12 +387,8 @@ items: fullName: OpenTK.Graphics.Wgl.LayerPlaneDescriptor.cAccumRedBits type: Field source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: cAccumRedBits - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 562 assemblies: - OpenTK.Graphics @@ -474,12 +410,8 @@ items: fullName: OpenTK.Graphics.Wgl.LayerPlaneDescriptor.cAccumGreenBits type: Field source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: cAccumGreenBits - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 563 assemblies: - OpenTK.Graphics @@ -501,12 +433,8 @@ items: fullName: OpenTK.Graphics.Wgl.LayerPlaneDescriptor.cAccumBlueBits type: Field source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: cAccumBlueBits - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 564 assemblies: - OpenTK.Graphics @@ -528,12 +456,8 @@ items: fullName: OpenTK.Graphics.Wgl.LayerPlaneDescriptor.cAccumAlphaBits type: Field source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: cAccumAlphaBits - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 565 assemblies: - OpenTK.Graphics @@ -555,12 +479,8 @@ items: fullName: OpenTK.Graphics.Wgl.LayerPlaneDescriptor.cDepthBits type: Field source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: cDepthBits - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 566 assemblies: - OpenTK.Graphics @@ -582,12 +502,8 @@ items: fullName: OpenTK.Graphics.Wgl.LayerPlaneDescriptor.cStencilBits type: Field source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: cStencilBits - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 567 assemblies: - OpenTK.Graphics @@ -609,12 +525,8 @@ items: fullName: OpenTK.Graphics.Wgl.LayerPlaneDescriptor.cAuxBuffers type: Field source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: cAuxBuffers - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 568 assemblies: - OpenTK.Graphics @@ -636,12 +548,8 @@ items: fullName: OpenTK.Graphics.Wgl.LayerPlaneDescriptor.iLayerPlane type: Field source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: iLayerPlane - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 569 assemblies: - OpenTK.Graphics @@ -663,12 +571,8 @@ items: fullName: OpenTK.Graphics.Wgl.LayerPlaneDescriptor.bReserved type: Field source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: bReserved - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 570 assemblies: - OpenTK.Graphics @@ -690,12 +594,8 @@ items: fullName: OpenTK.Graphics.Wgl.LayerPlaneDescriptor.crTransparent type: Field source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: crTransparent - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 571 assemblies: - OpenTK.Graphics diff --git a/api/OpenTK.Graphics.Wgl.LayerPlaneMask.yml b/api/OpenTK.Graphics.Wgl.LayerPlaneMask.yml new file mode 100644 index 00000000..393e4b82 --- /dev/null +++ b/api/OpenTK.Graphics.Wgl.LayerPlaneMask.yml @@ -0,0 +1,903 @@ +### YamlMime:ManagedReference +items: +- uid: OpenTK.Graphics.Wgl.LayerPlaneMask + commentId: T:OpenTK.Graphics.Wgl.LayerPlaneMask + id: LayerPlaneMask + parent: OpenTK.Graphics.Wgl + children: + - OpenTK.Graphics.Wgl.LayerPlaneMask.SwapMainPlane + - OpenTK.Graphics.Wgl.LayerPlaneMask.SwapOverlay1 + - OpenTK.Graphics.Wgl.LayerPlaneMask.SwapOverlay10 + - OpenTK.Graphics.Wgl.LayerPlaneMask.SwapOverlay11 + - OpenTK.Graphics.Wgl.LayerPlaneMask.SwapOverlay12 + - OpenTK.Graphics.Wgl.LayerPlaneMask.SwapOverlay13 + - OpenTK.Graphics.Wgl.LayerPlaneMask.SwapOverlay14 + - OpenTK.Graphics.Wgl.LayerPlaneMask.SwapOverlay15 + - OpenTK.Graphics.Wgl.LayerPlaneMask.SwapOverlay2 + - OpenTK.Graphics.Wgl.LayerPlaneMask.SwapOverlay3 + - OpenTK.Graphics.Wgl.LayerPlaneMask.SwapOverlay4 + - OpenTK.Graphics.Wgl.LayerPlaneMask.SwapOverlay5 + - OpenTK.Graphics.Wgl.LayerPlaneMask.SwapOverlay6 + - OpenTK.Graphics.Wgl.LayerPlaneMask.SwapOverlay7 + - OpenTK.Graphics.Wgl.LayerPlaneMask.SwapOverlay8 + - OpenTK.Graphics.Wgl.LayerPlaneMask.SwapOverlay9 + - OpenTK.Graphics.Wgl.LayerPlaneMask.SwapUnderlay1 + - OpenTK.Graphics.Wgl.LayerPlaneMask.SwapUnderlay10 + - OpenTK.Graphics.Wgl.LayerPlaneMask.SwapUnderlay11 + - OpenTK.Graphics.Wgl.LayerPlaneMask.SwapUnderlay12 + - OpenTK.Graphics.Wgl.LayerPlaneMask.SwapUnderlay13 + - OpenTK.Graphics.Wgl.LayerPlaneMask.SwapUnderlay14 + - OpenTK.Graphics.Wgl.LayerPlaneMask.SwapUnderlay15 + - OpenTK.Graphics.Wgl.LayerPlaneMask.SwapUnderlay2 + - OpenTK.Graphics.Wgl.LayerPlaneMask.SwapUnderlay3 + - OpenTK.Graphics.Wgl.LayerPlaneMask.SwapUnderlay4 + - OpenTK.Graphics.Wgl.LayerPlaneMask.SwapUnderlay5 + - OpenTK.Graphics.Wgl.LayerPlaneMask.SwapUnderlay6 + - OpenTK.Graphics.Wgl.LayerPlaneMask.SwapUnderlay7 + - OpenTK.Graphics.Wgl.LayerPlaneMask.SwapUnderlay8 + - OpenTK.Graphics.Wgl.LayerPlaneMask.SwapUnderlay9 + langs: + - csharp + - vb + name: LayerPlaneMask + nameWithType: LayerPlaneMask + fullName: OpenTK.Graphics.Wgl.LayerPlaneMask + type: Enum + source: + id: LayerPlaneMask + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 431 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Wgl + summary: Used in , + example: [] + syntax: + content: >- + [Flags] + + public enum LayerPlaneMask : uint + content.vb: >- + + + Public Enum LayerPlaneMask As UInteger + attributes: + - type: System.FlagsAttribute + ctor: System.FlagsAttribute.#ctor + arguments: [] +- uid: OpenTK.Graphics.Wgl.LayerPlaneMask.SwapMainPlane + commentId: F:OpenTK.Graphics.Wgl.LayerPlaneMask.SwapMainPlane + id: SwapMainPlane + parent: OpenTK.Graphics.Wgl.LayerPlaneMask + langs: + - csharp + - vb + name: SwapMainPlane + nameWithType: LayerPlaneMask.SwapMainPlane + fullName: OpenTK.Graphics.Wgl.LayerPlaneMask.SwapMainPlane + type: Field + source: + id: SwapMainPlane + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 434 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Wgl + syntax: + content: SwapMainPlane = 1 + return: + type: OpenTK.Graphics.Wgl.LayerPlaneMask +- uid: OpenTK.Graphics.Wgl.LayerPlaneMask.SwapOverlay1 + commentId: F:OpenTK.Graphics.Wgl.LayerPlaneMask.SwapOverlay1 + id: SwapOverlay1 + parent: OpenTK.Graphics.Wgl.LayerPlaneMask + langs: + - csharp + - vb + name: SwapOverlay1 + nameWithType: LayerPlaneMask.SwapOverlay1 + fullName: OpenTK.Graphics.Wgl.LayerPlaneMask.SwapOverlay1 + type: Field + source: + id: SwapOverlay1 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 435 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Wgl + syntax: + content: SwapOverlay1 = 2 + return: + type: OpenTK.Graphics.Wgl.LayerPlaneMask +- uid: OpenTK.Graphics.Wgl.LayerPlaneMask.SwapOverlay2 + commentId: F:OpenTK.Graphics.Wgl.LayerPlaneMask.SwapOverlay2 + id: SwapOverlay2 + parent: OpenTK.Graphics.Wgl.LayerPlaneMask + langs: + - csharp + - vb + name: SwapOverlay2 + nameWithType: LayerPlaneMask.SwapOverlay2 + fullName: OpenTK.Graphics.Wgl.LayerPlaneMask.SwapOverlay2 + type: Field + source: + id: SwapOverlay2 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 436 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Wgl + syntax: + content: SwapOverlay2 = 4 + return: + type: OpenTK.Graphics.Wgl.LayerPlaneMask +- uid: OpenTK.Graphics.Wgl.LayerPlaneMask.SwapOverlay3 + commentId: F:OpenTK.Graphics.Wgl.LayerPlaneMask.SwapOverlay3 + id: SwapOverlay3 + parent: OpenTK.Graphics.Wgl.LayerPlaneMask + langs: + - csharp + - vb + name: SwapOverlay3 + nameWithType: LayerPlaneMask.SwapOverlay3 + fullName: OpenTK.Graphics.Wgl.LayerPlaneMask.SwapOverlay3 + type: Field + source: + id: SwapOverlay3 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 437 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Wgl + syntax: + content: SwapOverlay3 = 8 + return: + type: OpenTK.Graphics.Wgl.LayerPlaneMask +- uid: OpenTK.Graphics.Wgl.LayerPlaneMask.SwapOverlay4 + commentId: F:OpenTK.Graphics.Wgl.LayerPlaneMask.SwapOverlay4 + id: SwapOverlay4 + parent: OpenTK.Graphics.Wgl.LayerPlaneMask + langs: + - csharp + - vb + name: SwapOverlay4 + nameWithType: LayerPlaneMask.SwapOverlay4 + fullName: OpenTK.Graphics.Wgl.LayerPlaneMask.SwapOverlay4 + type: Field + source: + id: SwapOverlay4 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 438 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Wgl + syntax: + content: SwapOverlay4 = 16 + return: + type: OpenTK.Graphics.Wgl.LayerPlaneMask +- uid: OpenTK.Graphics.Wgl.LayerPlaneMask.SwapOverlay5 + commentId: F:OpenTK.Graphics.Wgl.LayerPlaneMask.SwapOverlay5 + id: SwapOverlay5 + parent: OpenTK.Graphics.Wgl.LayerPlaneMask + langs: + - csharp + - vb + name: SwapOverlay5 + nameWithType: LayerPlaneMask.SwapOverlay5 + fullName: OpenTK.Graphics.Wgl.LayerPlaneMask.SwapOverlay5 + type: Field + source: + id: SwapOverlay5 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 439 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Wgl + syntax: + content: SwapOverlay5 = 32 + return: + type: OpenTK.Graphics.Wgl.LayerPlaneMask +- uid: OpenTK.Graphics.Wgl.LayerPlaneMask.SwapOverlay6 + commentId: F:OpenTK.Graphics.Wgl.LayerPlaneMask.SwapOverlay6 + id: SwapOverlay6 + parent: OpenTK.Graphics.Wgl.LayerPlaneMask + langs: + - csharp + - vb + name: SwapOverlay6 + nameWithType: LayerPlaneMask.SwapOverlay6 + fullName: OpenTK.Graphics.Wgl.LayerPlaneMask.SwapOverlay6 + type: Field + source: + id: SwapOverlay6 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 440 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Wgl + syntax: + content: SwapOverlay6 = 64 + return: + type: OpenTK.Graphics.Wgl.LayerPlaneMask +- uid: OpenTK.Graphics.Wgl.LayerPlaneMask.SwapOverlay7 + commentId: F:OpenTK.Graphics.Wgl.LayerPlaneMask.SwapOverlay7 + id: SwapOverlay7 + parent: OpenTK.Graphics.Wgl.LayerPlaneMask + langs: + - csharp + - vb + name: SwapOverlay7 + nameWithType: LayerPlaneMask.SwapOverlay7 + fullName: OpenTK.Graphics.Wgl.LayerPlaneMask.SwapOverlay7 + type: Field + source: + id: SwapOverlay7 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 441 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Wgl + syntax: + content: SwapOverlay7 = 128 + return: + type: OpenTK.Graphics.Wgl.LayerPlaneMask +- uid: OpenTK.Graphics.Wgl.LayerPlaneMask.SwapOverlay8 + commentId: F:OpenTK.Graphics.Wgl.LayerPlaneMask.SwapOverlay8 + id: SwapOverlay8 + parent: OpenTK.Graphics.Wgl.LayerPlaneMask + langs: + - csharp + - vb + name: SwapOverlay8 + nameWithType: LayerPlaneMask.SwapOverlay8 + fullName: OpenTK.Graphics.Wgl.LayerPlaneMask.SwapOverlay8 + type: Field + source: + id: SwapOverlay8 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 442 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Wgl + syntax: + content: SwapOverlay8 = 256 + return: + type: OpenTK.Graphics.Wgl.LayerPlaneMask +- uid: OpenTK.Graphics.Wgl.LayerPlaneMask.SwapOverlay9 + commentId: F:OpenTK.Graphics.Wgl.LayerPlaneMask.SwapOverlay9 + id: SwapOverlay9 + parent: OpenTK.Graphics.Wgl.LayerPlaneMask + langs: + - csharp + - vb + name: SwapOverlay9 + nameWithType: LayerPlaneMask.SwapOverlay9 + fullName: OpenTK.Graphics.Wgl.LayerPlaneMask.SwapOverlay9 + type: Field + source: + id: SwapOverlay9 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 443 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Wgl + syntax: + content: SwapOverlay9 = 512 + return: + type: OpenTK.Graphics.Wgl.LayerPlaneMask +- uid: OpenTK.Graphics.Wgl.LayerPlaneMask.SwapOverlay10 + commentId: F:OpenTK.Graphics.Wgl.LayerPlaneMask.SwapOverlay10 + id: SwapOverlay10 + parent: OpenTK.Graphics.Wgl.LayerPlaneMask + langs: + - csharp + - vb + name: SwapOverlay10 + nameWithType: LayerPlaneMask.SwapOverlay10 + fullName: OpenTK.Graphics.Wgl.LayerPlaneMask.SwapOverlay10 + type: Field + source: + id: SwapOverlay10 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 444 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Wgl + syntax: + content: SwapOverlay10 = 1024 + return: + type: OpenTK.Graphics.Wgl.LayerPlaneMask +- uid: OpenTK.Graphics.Wgl.LayerPlaneMask.SwapOverlay11 + commentId: F:OpenTK.Graphics.Wgl.LayerPlaneMask.SwapOverlay11 + id: SwapOverlay11 + parent: OpenTK.Graphics.Wgl.LayerPlaneMask + langs: + - csharp + - vb + name: SwapOverlay11 + nameWithType: LayerPlaneMask.SwapOverlay11 + fullName: OpenTK.Graphics.Wgl.LayerPlaneMask.SwapOverlay11 + type: Field + source: + id: SwapOverlay11 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 445 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Wgl + syntax: + content: SwapOverlay11 = 2048 + return: + type: OpenTK.Graphics.Wgl.LayerPlaneMask +- uid: OpenTK.Graphics.Wgl.LayerPlaneMask.SwapOverlay12 + commentId: F:OpenTK.Graphics.Wgl.LayerPlaneMask.SwapOverlay12 + id: SwapOverlay12 + parent: OpenTK.Graphics.Wgl.LayerPlaneMask + langs: + - csharp + - vb + name: SwapOverlay12 + nameWithType: LayerPlaneMask.SwapOverlay12 + fullName: OpenTK.Graphics.Wgl.LayerPlaneMask.SwapOverlay12 + type: Field + source: + id: SwapOverlay12 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 446 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Wgl + syntax: + content: SwapOverlay12 = 4096 + return: + type: OpenTK.Graphics.Wgl.LayerPlaneMask +- uid: OpenTK.Graphics.Wgl.LayerPlaneMask.SwapOverlay13 + commentId: F:OpenTK.Graphics.Wgl.LayerPlaneMask.SwapOverlay13 + id: SwapOverlay13 + parent: OpenTK.Graphics.Wgl.LayerPlaneMask + langs: + - csharp + - vb + name: SwapOverlay13 + nameWithType: LayerPlaneMask.SwapOverlay13 + fullName: OpenTK.Graphics.Wgl.LayerPlaneMask.SwapOverlay13 + type: Field + source: + id: SwapOverlay13 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 447 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Wgl + syntax: + content: SwapOverlay13 = 8192 + return: + type: OpenTK.Graphics.Wgl.LayerPlaneMask +- uid: OpenTK.Graphics.Wgl.LayerPlaneMask.SwapOverlay14 + commentId: F:OpenTK.Graphics.Wgl.LayerPlaneMask.SwapOverlay14 + id: SwapOverlay14 + parent: OpenTK.Graphics.Wgl.LayerPlaneMask + langs: + - csharp + - vb + name: SwapOverlay14 + nameWithType: LayerPlaneMask.SwapOverlay14 + fullName: OpenTK.Graphics.Wgl.LayerPlaneMask.SwapOverlay14 + type: Field + source: + id: SwapOverlay14 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 448 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Wgl + syntax: + content: SwapOverlay14 = 16384 + return: + type: OpenTK.Graphics.Wgl.LayerPlaneMask +- uid: OpenTK.Graphics.Wgl.LayerPlaneMask.SwapOverlay15 + commentId: F:OpenTK.Graphics.Wgl.LayerPlaneMask.SwapOverlay15 + id: SwapOverlay15 + parent: OpenTK.Graphics.Wgl.LayerPlaneMask + langs: + - csharp + - vb + name: SwapOverlay15 + nameWithType: LayerPlaneMask.SwapOverlay15 + fullName: OpenTK.Graphics.Wgl.LayerPlaneMask.SwapOverlay15 + type: Field + source: + id: SwapOverlay15 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 449 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Wgl + syntax: + content: SwapOverlay15 = 32768 + return: + type: OpenTK.Graphics.Wgl.LayerPlaneMask +- uid: OpenTK.Graphics.Wgl.LayerPlaneMask.SwapUnderlay1 + commentId: F:OpenTK.Graphics.Wgl.LayerPlaneMask.SwapUnderlay1 + id: SwapUnderlay1 + parent: OpenTK.Graphics.Wgl.LayerPlaneMask + langs: + - csharp + - vb + name: SwapUnderlay1 + nameWithType: LayerPlaneMask.SwapUnderlay1 + fullName: OpenTK.Graphics.Wgl.LayerPlaneMask.SwapUnderlay1 + type: Field + source: + id: SwapUnderlay1 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 450 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Wgl + syntax: + content: SwapUnderlay1 = 65536 + return: + type: OpenTK.Graphics.Wgl.LayerPlaneMask +- uid: OpenTK.Graphics.Wgl.LayerPlaneMask.SwapUnderlay2 + commentId: F:OpenTK.Graphics.Wgl.LayerPlaneMask.SwapUnderlay2 + id: SwapUnderlay2 + parent: OpenTK.Graphics.Wgl.LayerPlaneMask + langs: + - csharp + - vb + name: SwapUnderlay2 + nameWithType: LayerPlaneMask.SwapUnderlay2 + fullName: OpenTK.Graphics.Wgl.LayerPlaneMask.SwapUnderlay2 + type: Field + source: + id: SwapUnderlay2 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 451 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Wgl + syntax: + content: SwapUnderlay2 = 131072 + return: + type: OpenTK.Graphics.Wgl.LayerPlaneMask +- uid: OpenTK.Graphics.Wgl.LayerPlaneMask.SwapUnderlay3 + commentId: F:OpenTK.Graphics.Wgl.LayerPlaneMask.SwapUnderlay3 + id: SwapUnderlay3 + parent: OpenTK.Graphics.Wgl.LayerPlaneMask + langs: + - csharp + - vb + name: SwapUnderlay3 + nameWithType: LayerPlaneMask.SwapUnderlay3 + fullName: OpenTK.Graphics.Wgl.LayerPlaneMask.SwapUnderlay3 + type: Field + source: + id: SwapUnderlay3 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 452 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Wgl + syntax: + content: SwapUnderlay3 = 262144 + return: + type: OpenTK.Graphics.Wgl.LayerPlaneMask +- uid: OpenTK.Graphics.Wgl.LayerPlaneMask.SwapUnderlay4 + commentId: F:OpenTK.Graphics.Wgl.LayerPlaneMask.SwapUnderlay4 + id: SwapUnderlay4 + parent: OpenTK.Graphics.Wgl.LayerPlaneMask + langs: + - csharp + - vb + name: SwapUnderlay4 + nameWithType: LayerPlaneMask.SwapUnderlay4 + fullName: OpenTK.Graphics.Wgl.LayerPlaneMask.SwapUnderlay4 + type: Field + source: + id: SwapUnderlay4 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 453 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Wgl + syntax: + content: SwapUnderlay4 = 524288 + return: + type: OpenTK.Graphics.Wgl.LayerPlaneMask +- uid: OpenTK.Graphics.Wgl.LayerPlaneMask.SwapUnderlay5 + commentId: F:OpenTK.Graphics.Wgl.LayerPlaneMask.SwapUnderlay5 + id: SwapUnderlay5 + parent: OpenTK.Graphics.Wgl.LayerPlaneMask + langs: + - csharp + - vb + name: SwapUnderlay5 + nameWithType: LayerPlaneMask.SwapUnderlay5 + fullName: OpenTK.Graphics.Wgl.LayerPlaneMask.SwapUnderlay5 + type: Field + source: + id: SwapUnderlay5 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 454 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Wgl + syntax: + content: SwapUnderlay5 = 1048576 + return: + type: OpenTK.Graphics.Wgl.LayerPlaneMask +- uid: OpenTK.Graphics.Wgl.LayerPlaneMask.SwapUnderlay6 + commentId: F:OpenTK.Graphics.Wgl.LayerPlaneMask.SwapUnderlay6 + id: SwapUnderlay6 + parent: OpenTK.Graphics.Wgl.LayerPlaneMask + langs: + - csharp + - vb + name: SwapUnderlay6 + nameWithType: LayerPlaneMask.SwapUnderlay6 + fullName: OpenTK.Graphics.Wgl.LayerPlaneMask.SwapUnderlay6 + type: Field + source: + id: SwapUnderlay6 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 455 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Wgl + syntax: + content: SwapUnderlay6 = 2097152 + return: + type: OpenTK.Graphics.Wgl.LayerPlaneMask +- uid: OpenTK.Graphics.Wgl.LayerPlaneMask.SwapUnderlay7 + commentId: F:OpenTK.Graphics.Wgl.LayerPlaneMask.SwapUnderlay7 + id: SwapUnderlay7 + parent: OpenTK.Graphics.Wgl.LayerPlaneMask + langs: + - csharp + - vb + name: SwapUnderlay7 + nameWithType: LayerPlaneMask.SwapUnderlay7 + fullName: OpenTK.Graphics.Wgl.LayerPlaneMask.SwapUnderlay7 + type: Field + source: + id: SwapUnderlay7 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 456 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Wgl + syntax: + content: SwapUnderlay7 = 4194304 + return: + type: OpenTK.Graphics.Wgl.LayerPlaneMask +- uid: OpenTK.Graphics.Wgl.LayerPlaneMask.SwapUnderlay8 + commentId: F:OpenTK.Graphics.Wgl.LayerPlaneMask.SwapUnderlay8 + id: SwapUnderlay8 + parent: OpenTK.Graphics.Wgl.LayerPlaneMask + langs: + - csharp + - vb + name: SwapUnderlay8 + nameWithType: LayerPlaneMask.SwapUnderlay8 + fullName: OpenTK.Graphics.Wgl.LayerPlaneMask.SwapUnderlay8 + type: Field + source: + id: SwapUnderlay8 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 457 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Wgl + syntax: + content: SwapUnderlay8 = 8388608 + return: + type: OpenTK.Graphics.Wgl.LayerPlaneMask +- uid: OpenTK.Graphics.Wgl.LayerPlaneMask.SwapUnderlay9 + commentId: F:OpenTK.Graphics.Wgl.LayerPlaneMask.SwapUnderlay9 + id: SwapUnderlay9 + parent: OpenTK.Graphics.Wgl.LayerPlaneMask + langs: + - csharp + - vb + name: SwapUnderlay9 + nameWithType: LayerPlaneMask.SwapUnderlay9 + fullName: OpenTK.Graphics.Wgl.LayerPlaneMask.SwapUnderlay9 + type: Field + source: + id: SwapUnderlay9 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 458 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Wgl + syntax: + content: SwapUnderlay9 = 16777216 + return: + type: OpenTK.Graphics.Wgl.LayerPlaneMask +- uid: OpenTK.Graphics.Wgl.LayerPlaneMask.SwapUnderlay10 + commentId: F:OpenTK.Graphics.Wgl.LayerPlaneMask.SwapUnderlay10 + id: SwapUnderlay10 + parent: OpenTK.Graphics.Wgl.LayerPlaneMask + langs: + - csharp + - vb + name: SwapUnderlay10 + nameWithType: LayerPlaneMask.SwapUnderlay10 + fullName: OpenTK.Graphics.Wgl.LayerPlaneMask.SwapUnderlay10 + type: Field + source: + id: SwapUnderlay10 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 459 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Wgl + syntax: + content: SwapUnderlay10 = 33554432 + return: + type: OpenTK.Graphics.Wgl.LayerPlaneMask +- uid: OpenTK.Graphics.Wgl.LayerPlaneMask.SwapUnderlay11 + commentId: F:OpenTK.Graphics.Wgl.LayerPlaneMask.SwapUnderlay11 + id: SwapUnderlay11 + parent: OpenTK.Graphics.Wgl.LayerPlaneMask + langs: + - csharp + - vb + name: SwapUnderlay11 + nameWithType: LayerPlaneMask.SwapUnderlay11 + fullName: OpenTK.Graphics.Wgl.LayerPlaneMask.SwapUnderlay11 + type: Field + source: + id: SwapUnderlay11 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 460 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Wgl + syntax: + content: SwapUnderlay11 = 67108864 + return: + type: OpenTK.Graphics.Wgl.LayerPlaneMask +- uid: OpenTK.Graphics.Wgl.LayerPlaneMask.SwapUnderlay12 + commentId: F:OpenTK.Graphics.Wgl.LayerPlaneMask.SwapUnderlay12 + id: SwapUnderlay12 + parent: OpenTK.Graphics.Wgl.LayerPlaneMask + langs: + - csharp + - vb + name: SwapUnderlay12 + nameWithType: LayerPlaneMask.SwapUnderlay12 + fullName: OpenTK.Graphics.Wgl.LayerPlaneMask.SwapUnderlay12 + type: Field + source: + id: SwapUnderlay12 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 461 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Wgl + syntax: + content: SwapUnderlay12 = 134217728 + return: + type: OpenTK.Graphics.Wgl.LayerPlaneMask +- uid: OpenTK.Graphics.Wgl.LayerPlaneMask.SwapUnderlay13 + commentId: F:OpenTK.Graphics.Wgl.LayerPlaneMask.SwapUnderlay13 + id: SwapUnderlay13 + parent: OpenTK.Graphics.Wgl.LayerPlaneMask + langs: + - csharp + - vb + name: SwapUnderlay13 + nameWithType: LayerPlaneMask.SwapUnderlay13 + fullName: OpenTK.Graphics.Wgl.LayerPlaneMask.SwapUnderlay13 + type: Field + source: + id: SwapUnderlay13 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 462 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Wgl + syntax: + content: SwapUnderlay13 = 268435456 + return: + type: OpenTK.Graphics.Wgl.LayerPlaneMask +- uid: OpenTK.Graphics.Wgl.LayerPlaneMask.SwapUnderlay14 + commentId: F:OpenTK.Graphics.Wgl.LayerPlaneMask.SwapUnderlay14 + id: SwapUnderlay14 + parent: OpenTK.Graphics.Wgl.LayerPlaneMask + langs: + - csharp + - vb + name: SwapUnderlay14 + nameWithType: LayerPlaneMask.SwapUnderlay14 + fullName: OpenTK.Graphics.Wgl.LayerPlaneMask.SwapUnderlay14 + type: Field + source: + id: SwapUnderlay14 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 463 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Wgl + syntax: + content: SwapUnderlay14 = 536870912 + return: + type: OpenTK.Graphics.Wgl.LayerPlaneMask +- uid: OpenTK.Graphics.Wgl.LayerPlaneMask.SwapUnderlay15 + commentId: F:OpenTK.Graphics.Wgl.LayerPlaneMask.SwapUnderlay15 + id: SwapUnderlay15 + parent: OpenTK.Graphics.Wgl.LayerPlaneMask + langs: + - csharp + - vb + name: SwapUnderlay15 + nameWithType: LayerPlaneMask.SwapUnderlay15 + fullName: OpenTK.Graphics.Wgl.LayerPlaneMask.SwapUnderlay15 + type: Field + source: + id: SwapUnderlay15 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 464 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Wgl + syntax: + content: SwapUnderlay15 = 1073741824 + return: + type: OpenTK.Graphics.Wgl.LayerPlaneMask +references: +- uid: OpenTK.Graphics.Wgl.Wgl.SwapLayerBuffers(System.IntPtr,OpenTK.Graphics.Wgl.LayerPlaneMask) + commentId: M:OpenTK.Graphics.Wgl.Wgl.SwapLayerBuffers(System.IntPtr,OpenTK.Graphics.Wgl.LayerPlaneMask) + isExternal: true + href: OpenTK.Graphics.Wgl.Wgl.html#OpenTK_Graphics_Wgl_Wgl_SwapLayerBuffers_System_IntPtr_OpenTK_Graphics_Wgl_LayerPlaneMask_ + name: SwapLayerBuffers(nint, LayerPlaneMask) + nameWithType: Wgl.SwapLayerBuffers(nint, LayerPlaneMask) + fullName: OpenTK.Graphics.Wgl.Wgl.SwapLayerBuffers(nint, OpenTK.Graphics.Wgl.LayerPlaneMask) + nameWithType.vb: Wgl.SwapLayerBuffers(IntPtr, LayerPlaneMask) + fullName.vb: OpenTK.Graphics.Wgl.Wgl.SwapLayerBuffers(System.IntPtr, OpenTK.Graphics.Wgl.LayerPlaneMask) + name.vb: SwapLayerBuffers(IntPtr, LayerPlaneMask) + spec.csharp: + - uid: OpenTK.Graphics.Wgl.Wgl.SwapLayerBuffers(System.IntPtr,OpenTK.Graphics.Wgl.LayerPlaneMask) + name: SwapLayerBuffers + href: OpenTK.Graphics.Wgl.Wgl.html#OpenTK_Graphics_Wgl_Wgl_SwapLayerBuffers_System_IntPtr_OpenTK_Graphics_Wgl_LayerPlaneMask_ + - name: ( + - uid: System.IntPtr + name: nint + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.intptr + - name: ',' + - name: " " + - uid: OpenTK.Graphics.Wgl.LayerPlaneMask + name: LayerPlaneMask + href: OpenTK.Graphics.Wgl.LayerPlaneMask.html + - name: ) + spec.vb: + - uid: OpenTK.Graphics.Wgl.Wgl.SwapLayerBuffers(System.IntPtr,OpenTK.Graphics.Wgl.LayerPlaneMask) + name: SwapLayerBuffers + href: OpenTK.Graphics.Wgl.Wgl.html#OpenTK_Graphics_Wgl_Wgl_SwapLayerBuffers_System_IntPtr_OpenTK_Graphics_Wgl_LayerPlaneMask_ + - name: ( + - uid: System.IntPtr + name: IntPtr + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.intptr + - name: ',' + - name: " " + - uid: OpenTK.Graphics.Wgl.LayerPlaneMask + name: LayerPlaneMask + href: OpenTK.Graphics.Wgl.LayerPlaneMask.html + - name: ) +- uid: OpenTK.Graphics.Wgl.Wgl.OML.SwapLayerBuffersMscOML(System.IntPtr,OpenTK.Graphics.Wgl.LayerPlaneMask,System.Int64,System.Int64,System.Int64) + commentId: M:OpenTK.Graphics.Wgl.Wgl.OML.SwapLayerBuffersMscOML(System.IntPtr,OpenTK.Graphics.Wgl.LayerPlaneMask,System.Int64,System.Int64,System.Int64) + isExternal: true + href: OpenTK.Graphics.Wgl.Wgl.OML.html#OpenTK_Graphics_Wgl_Wgl_OML_SwapLayerBuffersMscOML_System_IntPtr_OpenTK_Graphics_Wgl_LayerPlaneMask_System_Int64_System_Int64_System_Int64_ + name: SwapLayerBuffersMscOML(nint, LayerPlaneMask, long, long, long) + nameWithType: Wgl.OML.SwapLayerBuffersMscOML(nint, LayerPlaneMask, long, long, long) + fullName: OpenTK.Graphics.Wgl.Wgl.OML.SwapLayerBuffersMscOML(nint, OpenTK.Graphics.Wgl.LayerPlaneMask, long, long, long) + nameWithType.vb: Wgl.OML.SwapLayerBuffersMscOML(IntPtr, LayerPlaneMask, Long, Long, Long) + fullName.vb: OpenTK.Graphics.Wgl.Wgl.OML.SwapLayerBuffersMscOML(System.IntPtr, OpenTK.Graphics.Wgl.LayerPlaneMask, Long, Long, Long) + name.vb: SwapLayerBuffersMscOML(IntPtr, LayerPlaneMask, Long, Long, Long) + spec.csharp: + - uid: OpenTK.Graphics.Wgl.Wgl.OML.SwapLayerBuffersMscOML(System.IntPtr,OpenTK.Graphics.Wgl.LayerPlaneMask,System.Int64,System.Int64,System.Int64) + name: SwapLayerBuffersMscOML + href: OpenTK.Graphics.Wgl.Wgl.OML.html#OpenTK_Graphics_Wgl_Wgl_OML_SwapLayerBuffersMscOML_System_IntPtr_OpenTK_Graphics_Wgl_LayerPlaneMask_System_Int64_System_Int64_System_Int64_ + - name: ( + - uid: System.IntPtr + name: nint + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.intptr + - name: ',' + - name: " " + - uid: OpenTK.Graphics.Wgl.LayerPlaneMask + name: LayerPlaneMask + href: OpenTK.Graphics.Wgl.LayerPlaneMask.html + - name: ',' + - name: " " + - uid: System.Int64 + name: long + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int64 + - name: ',' + - name: " " + - uid: System.Int64 + name: long + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int64 + - name: ',' + - name: " " + - uid: System.Int64 + name: long + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int64 + - name: ) + spec.vb: + - uid: OpenTK.Graphics.Wgl.Wgl.OML.SwapLayerBuffersMscOML(System.IntPtr,OpenTK.Graphics.Wgl.LayerPlaneMask,System.Int64,System.Int64,System.Int64) + name: SwapLayerBuffersMscOML + href: OpenTK.Graphics.Wgl.Wgl.OML.html#OpenTK_Graphics_Wgl_Wgl_OML_SwapLayerBuffersMscOML_System_IntPtr_OpenTK_Graphics_Wgl_LayerPlaneMask_System_Int64_System_Int64_System_Int64_ + - name: ( + - uid: System.IntPtr + name: IntPtr + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.intptr + - name: ',' + - name: " " + - uid: OpenTK.Graphics.Wgl.LayerPlaneMask + name: LayerPlaneMask + href: OpenTK.Graphics.Wgl.LayerPlaneMask.html + - name: ',' + - name: " " + - uid: System.Int64 + name: Long + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int64 + - name: ',' + - name: " " + - uid: System.Int64 + name: Long + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int64 + - name: ',' + - name: " " + - uid: System.Int64 + name: Long + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int64 + - name: ) +- uid: OpenTK.Graphics.Wgl + commentId: N:OpenTK.Graphics.Wgl + href: OpenTK.html + name: OpenTK.Graphics.Wgl + nameWithType: OpenTK.Graphics.Wgl + fullName: OpenTK.Graphics.Wgl + spec.csharp: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Graphics + name: Graphics + href: OpenTK.Graphics.html + - name: . + - uid: OpenTK.Graphics.Wgl + name: Wgl + href: OpenTK.Graphics.Wgl.html + spec.vb: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Graphics + name: Graphics + href: OpenTK.Graphics.html + - name: . + - uid: OpenTK.Graphics.Wgl + name: Wgl + href: OpenTK.Graphics.Wgl.html +- uid: OpenTK.Graphics.Wgl.LayerPlaneMask + commentId: T:OpenTK.Graphics.Wgl.LayerPlaneMask + parent: OpenTK.Graphics.Wgl + href: OpenTK.Graphics.Wgl.LayerPlaneMask.html + name: LayerPlaneMask + nameWithType: LayerPlaneMask + fullName: OpenTK.Graphics.Wgl.LayerPlaneMask diff --git a/api/OpenTK.Graphics.Wgl.ObjectTypeDX.yml b/api/OpenTK.Graphics.Wgl.ObjectTypeDX.yml index 1a3acabd..62e7a985 100644 --- a/api/OpenTK.Graphics.Wgl.ObjectTypeDX.yml +++ b/api/OpenTK.Graphics.Wgl.ObjectTypeDX.yml @@ -19,17 +19,13 @@ items: fullName: OpenTK.Graphics.Wgl.ObjectTypeDX type: Enum source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ObjectTypeDX - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 391 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 467 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl - summary: Used in + summary: Used in example: [] syntax: content: 'public enum ObjectTypeDX : uint' @@ -46,13 +42,9 @@ items: fullName: OpenTK.Graphics.Wgl.ObjectTypeDX.None type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: None - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 393 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 469 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -72,13 +64,9 @@ items: fullName: OpenTK.Graphics.Wgl.ObjectTypeDX.Texture2d type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Texture2d - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 394 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 470 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -98,13 +86,9 @@ items: fullName: OpenTK.Graphics.Wgl.ObjectTypeDX.Texture3d type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Texture3d - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 395 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 471 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -124,13 +108,9 @@ items: fullName: OpenTK.Graphics.Wgl.ObjectTypeDX.TextureRectangle type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TextureRectangle - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 396 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 472 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -150,13 +130,9 @@ items: fullName: OpenTK.Graphics.Wgl.ObjectTypeDX.TextureCubeMap type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TextureCubeMap - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 397 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 473 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -176,13 +152,9 @@ items: fullName: OpenTK.Graphics.Wgl.ObjectTypeDX.Renderbuffer type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Renderbuffer - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 398 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 474 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -191,20 +163,20 @@ items: return: type: OpenTK.Graphics.Wgl.ObjectTypeDX references: -- uid: OpenTK.Graphics.Wgl.Wgl.NV.DXRegisterObjectNV(System.IntPtr,System.Void*,System.UInt32,OpenTK.Graphics.Wgl.ObjectTypeDX,OpenTK.Graphics.Wgl.WGLDXInteropMaskNV) - commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.DXRegisterObjectNV(System.IntPtr,System.Void*,System.UInt32,OpenTK.Graphics.Wgl.ObjectTypeDX,OpenTK.Graphics.Wgl.WGLDXInteropMaskNV) +- uid: OpenTK.Graphics.Wgl.Wgl.NV.DXRegisterObjectNV(System.IntPtr,System.Void*,System.UInt32,OpenTK.Graphics.Wgl.ObjectTypeDX,OpenTK.Graphics.Wgl.DXInteropMaskNV) + commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.DXRegisterObjectNV(System.IntPtr,System.Void*,System.UInt32,OpenTK.Graphics.Wgl.ObjectTypeDX,OpenTK.Graphics.Wgl.DXInteropMaskNV) isExternal: true - href: OpenTK.Graphics.Wgl.Wgl.NV.html#OpenTK_Graphics_Wgl_Wgl_NV_DXRegisterObjectNV_System_IntPtr_System_Void__System_UInt32_OpenTK_Graphics_Wgl_ObjectTypeDX_OpenTK_Graphics_Wgl_WGLDXInteropMaskNV_ - name: DXRegisterObjectNV(nint, void*, uint, ObjectTypeDX, WGLDXInteropMaskNV) - nameWithType: Wgl.NV.DXRegisterObjectNV(nint, void*, uint, ObjectTypeDX, WGLDXInteropMaskNV) - fullName: OpenTK.Graphics.Wgl.Wgl.NV.DXRegisterObjectNV(nint, void*, uint, OpenTK.Graphics.Wgl.ObjectTypeDX, OpenTK.Graphics.Wgl.WGLDXInteropMaskNV) - nameWithType.vb: Wgl.NV.DXRegisterObjectNV(IntPtr, Void*, UInteger, ObjectTypeDX, WGLDXInteropMaskNV) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.DXRegisterObjectNV(System.IntPtr, Void*, UInteger, OpenTK.Graphics.Wgl.ObjectTypeDX, OpenTK.Graphics.Wgl.WGLDXInteropMaskNV) - name.vb: DXRegisterObjectNV(IntPtr, Void*, UInteger, ObjectTypeDX, WGLDXInteropMaskNV) + href: OpenTK.Graphics.Wgl.Wgl.NV.html#OpenTK_Graphics_Wgl_Wgl_NV_DXRegisterObjectNV_System_IntPtr_System_Void__System_UInt32_OpenTK_Graphics_Wgl_ObjectTypeDX_OpenTK_Graphics_Wgl_DXInteropMaskNV_ + name: DXRegisterObjectNV(nint, void*, uint, ObjectTypeDX, DXInteropMaskNV) + nameWithType: Wgl.NV.DXRegisterObjectNV(nint, void*, uint, ObjectTypeDX, DXInteropMaskNV) + fullName: OpenTK.Graphics.Wgl.Wgl.NV.DXRegisterObjectNV(nint, void*, uint, OpenTK.Graphics.Wgl.ObjectTypeDX, OpenTK.Graphics.Wgl.DXInteropMaskNV) + nameWithType.vb: Wgl.NV.DXRegisterObjectNV(IntPtr, Void*, UInteger, ObjectTypeDX, DXInteropMaskNV) + fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.DXRegisterObjectNV(System.IntPtr, Void*, UInteger, OpenTK.Graphics.Wgl.ObjectTypeDX, OpenTK.Graphics.Wgl.DXInteropMaskNV) + name.vb: DXRegisterObjectNV(IntPtr, Void*, UInteger, ObjectTypeDX, DXInteropMaskNV) spec.csharp: - - uid: OpenTK.Graphics.Wgl.Wgl.NV.DXRegisterObjectNV(System.IntPtr,System.Void*,System.UInt32,OpenTK.Graphics.Wgl.ObjectTypeDX,OpenTK.Graphics.Wgl.WGLDXInteropMaskNV) + - uid: OpenTK.Graphics.Wgl.Wgl.NV.DXRegisterObjectNV(System.IntPtr,System.Void*,System.UInt32,OpenTK.Graphics.Wgl.ObjectTypeDX,OpenTK.Graphics.Wgl.DXInteropMaskNV) name: DXRegisterObjectNV - href: OpenTK.Graphics.Wgl.Wgl.NV.html#OpenTK_Graphics_Wgl_Wgl_NV_DXRegisterObjectNV_System_IntPtr_System_Void__System_UInt32_OpenTK_Graphics_Wgl_ObjectTypeDX_OpenTK_Graphics_Wgl_WGLDXInteropMaskNV_ + href: OpenTK.Graphics.Wgl.Wgl.NV.html#OpenTK_Graphics_Wgl_Wgl_NV_DXRegisterObjectNV_System_IntPtr_System_Void__System_UInt32_OpenTK_Graphics_Wgl_ObjectTypeDX_OpenTK_Graphics_Wgl_DXInteropMaskNV_ - name: ( - uid: System.IntPtr name: nint @@ -230,14 +202,14 @@ references: href: OpenTK.Graphics.Wgl.ObjectTypeDX.html - name: ',' - name: " " - - uid: OpenTK.Graphics.Wgl.WGLDXInteropMaskNV - name: WGLDXInteropMaskNV - href: OpenTK.Graphics.Wgl.WGLDXInteropMaskNV.html + - uid: OpenTK.Graphics.Wgl.DXInteropMaskNV + name: DXInteropMaskNV + href: OpenTK.Graphics.Wgl.DXInteropMaskNV.html - name: ) spec.vb: - - uid: OpenTK.Graphics.Wgl.Wgl.NV.DXRegisterObjectNV(System.IntPtr,System.Void*,System.UInt32,OpenTK.Graphics.Wgl.ObjectTypeDX,OpenTK.Graphics.Wgl.WGLDXInteropMaskNV) + - uid: OpenTK.Graphics.Wgl.Wgl.NV.DXRegisterObjectNV(System.IntPtr,System.Void*,System.UInt32,OpenTK.Graphics.Wgl.ObjectTypeDX,OpenTK.Graphics.Wgl.DXInteropMaskNV) name: DXRegisterObjectNV - href: OpenTK.Graphics.Wgl.Wgl.NV.html#OpenTK_Graphics_Wgl_Wgl_NV_DXRegisterObjectNV_System_IntPtr_System_Void__System_UInt32_OpenTK_Graphics_Wgl_ObjectTypeDX_OpenTK_Graphics_Wgl_WGLDXInteropMaskNV_ + href: OpenTK.Graphics.Wgl.Wgl.NV.html#OpenTK_Graphics_Wgl_Wgl_NV_DXRegisterObjectNV_System_IntPtr_System_Void__System_UInt32_OpenTK_Graphics_Wgl_ObjectTypeDX_OpenTK_Graphics_Wgl_DXInteropMaskNV_ - name: ( - uid: System.IntPtr name: IntPtr @@ -263,9 +235,9 @@ references: href: OpenTK.Graphics.Wgl.ObjectTypeDX.html - name: ',' - name: " " - - uid: OpenTK.Graphics.Wgl.WGLDXInteropMaskNV - name: WGLDXInteropMaskNV - href: OpenTK.Graphics.Wgl.WGLDXInteropMaskNV.html + - uid: OpenTK.Graphics.Wgl.DXInteropMaskNV + name: DXInteropMaskNV + href: OpenTK.Graphics.Wgl.DXInteropMaskNV.html - name: ) - uid: OpenTK.Graphics.Wgl commentId: N:OpenTK.Graphics.Wgl diff --git a/api/OpenTK.Graphics.Wgl.PBufferAttribute.yml b/api/OpenTK.Graphics.Wgl.PBufferAttribute.yml index 86ad8293..f3ddf37f 100644 --- a/api/OpenTK.Graphics.Wgl.PBufferAttribute.yml +++ b/api/OpenTK.Graphics.Wgl.PBufferAttribute.yml @@ -23,13 +23,9 @@ items: fullName: OpenTK.Graphics.Wgl.PBufferAttribute type: Enum source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: PBufferAttribute - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 401 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 477 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -50,13 +46,9 @@ items: fullName: OpenTK.Graphics.Wgl.PBufferAttribute.PbufferWidthArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: PbufferWidthArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 403 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 479 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -76,13 +68,9 @@ items: fullName: OpenTK.Graphics.Wgl.PBufferAttribute.PbufferWidthExt type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: PbufferWidthExt - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 404 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 480 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -102,13 +90,9 @@ items: fullName: OpenTK.Graphics.Wgl.PBufferAttribute.PbufferHeightArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: PbufferHeightArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 405 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 481 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -128,13 +112,9 @@ items: fullName: OpenTK.Graphics.Wgl.PBufferAttribute.PbufferHeightExt type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: PbufferHeightExt - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 406 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 482 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -154,13 +134,9 @@ items: fullName: OpenTK.Graphics.Wgl.PBufferAttribute.PbufferLostArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: PbufferLostArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 407 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 483 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -180,13 +156,9 @@ items: fullName: OpenTK.Graphics.Wgl.PBufferAttribute.TextureFormatArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TextureFormatArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 408 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 484 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -206,13 +178,9 @@ items: fullName: OpenTK.Graphics.Wgl.PBufferAttribute.TextureTargetArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TextureTargetArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 409 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 485 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -232,13 +200,9 @@ items: fullName: OpenTK.Graphics.Wgl.PBufferAttribute.MipmapTextureArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MipmapTextureArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 410 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 486 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -258,13 +222,9 @@ items: fullName: OpenTK.Graphics.Wgl.PBufferAttribute.MipmapLevelArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MipmapLevelArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 411 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 487 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -284,13 +244,9 @@ items: fullName: OpenTK.Graphics.Wgl.PBufferAttribute.CubeMapFaceArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CubeMapFaceArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 412 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 488 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl diff --git a/api/OpenTK.Graphics.Wgl.PBufferCubeMapFace.yml b/api/OpenTK.Graphics.Wgl.PBufferCubeMapFace.yml index 24548bdb..27e29be3 100644 --- a/api/OpenTK.Graphics.Wgl.PBufferCubeMapFace.yml +++ b/api/OpenTK.Graphics.Wgl.PBufferCubeMapFace.yml @@ -19,13 +19,9 @@ items: fullName: OpenTK.Graphics.Wgl.PBufferCubeMapFace type: Enum source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: PBufferCubeMapFace - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 414 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 490 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -44,13 +40,9 @@ items: fullName: OpenTK.Graphics.Wgl.PBufferCubeMapFace.TextureCubeMapPositiveXArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TextureCubeMapPositiveXArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 416 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 492 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -70,13 +62,9 @@ items: fullName: OpenTK.Graphics.Wgl.PBufferCubeMapFace.TextureCubeMapNegativeXArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TextureCubeMapNegativeXArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 417 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 493 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -96,13 +84,9 @@ items: fullName: OpenTK.Graphics.Wgl.PBufferCubeMapFace.TextureCubeMapPositiveYArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TextureCubeMapPositiveYArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 418 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 494 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -122,13 +106,9 @@ items: fullName: OpenTK.Graphics.Wgl.PBufferCubeMapFace.TextureCubeMapNegativeYArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TextureCubeMapNegativeYArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 419 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 495 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -148,13 +128,9 @@ items: fullName: OpenTK.Graphics.Wgl.PBufferCubeMapFace.TextureCubeMapPositiveZArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TextureCubeMapPositiveZArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 420 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 496 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -174,13 +150,9 @@ items: fullName: OpenTK.Graphics.Wgl.PBufferCubeMapFace.TextureCubeMapNegativeZArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TextureCubeMapNegativeZArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 421 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 497 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl diff --git a/api/OpenTK.Graphics.Wgl.PBufferTextureFormat.yml b/api/OpenTK.Graphics.Wgl.PBufferTextureFormat.yml index 995ce941..197c2ae9 100644 --- a/api/OpenTK.Graphics.Wgl.PBufferTextureFormat.yml +++ b/api/OpenTK.Graphics.Wgl.PBufferTextureFormat.yml @@ -16,13 +16,9 @@ items: fullName: OpenTK.Graphics.Wgl.PBufferTextureFormat type: Enum source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: PBufferTextureFormat - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 423 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 499 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -41,13 +37,9 @@ items: fullName: OpenTK.Graphics.Wgl.PBufferTextureFormat.TextureRgbArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TextureRgbArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 425 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 501 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -67,13 +59,9 @@ items: fullName: OpenTK.Graphics.Wgl.PBufferTextureFormat.TextureRgbaArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TextureRgbaArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 426 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 502 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -93,13 +81,9 @@ items: fullName: OpenTK.Graphics.Wgl.PBufferTextureFormat.NoTextureArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: NoTextureArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 427 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 503 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl diff --git a/api/OpenTK.Graphics.Wgl.PBufferTextureTarget.yml b/api/OpenTK.Graphics.Wgl.PBufferTextureTarget.yml index 7317be30..85519fb9 100644 --- a/api/OpenTK.Graphics.Wgl.PBufferTextureTarget.yml +++ b/api/OpenTK.Graphics.Wgl.PBufferTextureTarget.yml @@ -17,13 +17,9 @@ items: fullName: OpenTK.Graphics.Wgl.PBufferTextureTarget type: Enum source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: PBufferTextureTarget - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 429 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 505 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -42,13 +38,9 @@ items: fullName: OpenTK.Graphics.Wgl.PBufferTextureTarget.NoTextureArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: NoTextureArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 431 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 507 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -68,13 +60,9 @@ items: fullName: OpenTK.Graphics.Wgl.PBufferTextureTarget.TextureCubeMapArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TextureCubeMapArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 432 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 508 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -94,13 +82,9 @@ items: fullName: OpenTK.Graphics.Wgl.PBufferTextureTarget.Texture1dArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Texture1dArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 433 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 509 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -120,13 +104,9 @@ items: fullName: OpenTK.Graphics.Wgl.PBufferTextureTarget.Texture2dArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Texture2dArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 434 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 510 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl diff --git a/api/OpenTK.Graphics.Wgl.PixelFormatAttribute.yml b/api/OpenTK.Graphics.Wgl.PixelFormatAttribute.yml index 4d2a08a4..f1eda16d 100644 --- a/api/OpenTK.Graphics.Wgl.PixelFormatAttribute.yml +++ b/api/OpenTK.Graphics.Wgl.PixelFormatAttribute.yml @@ -96,13 +96,9 @@ items: fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute type: Enum source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: PixelFormatAttribute - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 437 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 513 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -123,13 +119,9 @@ items: fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.NumberPixelFormatsArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: NumberPixelFormatsArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 439 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 515 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -149,13 +141,9 @@ items: fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.NumberPixelFormatsExt type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: NumberPixelFormatsExt - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 440 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 516 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -175,13 +163,9 @@ items: fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.DrawToWindowArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DrawToWindowArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 441 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 517 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -201,13 +185,9 @@ items: fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.DrawToWindowExt type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DrawToWindowExt - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 442 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 518 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -227,13 +207,9 @@ items: fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.DrawToBitmapArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DrawToBitmapArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 443 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 519 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -253,13 +229,9 @@ items: fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.DrawToBitmapExt type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DrawToBitmapExt - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 444 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 520 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -279,13 +251,9 @@ items: fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.AccelerationArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: AccelerationArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 445 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 521 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -305,13 +273,9 @@ items: fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.AccelerationExt type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: AccelerationExt - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 446 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 522 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -331,13 +295,9 @@ items: fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.NeedPaletteArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: NeedPaletteArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 447 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 523 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -357,13 +317,9 @@ items: fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.NeedPaletteExt type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: NeedPaletteExt - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 448 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 524 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -383,13 +339,9 @@ items: fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.NeedSystemPaletteArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: NeedSystemPaletteArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 449 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 525 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -409,13 +361,9 @@ items: fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.NeedSystemPaletteExt type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: NeedSystemPaletteExt - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 450 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 526 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -435,13 +383,9 @@ items: fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.SwapLayerBuffersArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SwapLayerBuffersArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 451 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 527 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -461,13 +405,9 @@ items: fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.SwapLayerBuffersExt type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SwapLayerBuffersExt - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 452 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 528 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -487,13 +427,9 @@ items: fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.SwapMethodArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SwapMethodArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 453 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 529 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -513,13 +449,9 @@ items: fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.SwapMethodExt type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SwapMethodExt - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 454 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 530 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -539,13 +471,9 @@ items: fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.NumberOverlaysArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: NumberOverlaysArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 455 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 531 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -565,13 +493,9 @@ items: fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.NumberOverlaysExt type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: NumberOverlaysExt - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 456 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 532 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -591,13 +515,9 @@ items: fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.NumberUnderlaysArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: NumberUnderlaysArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 457 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 533 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -617,13 +537,9 @@ items: fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.NumberUnderlaysExt type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: NumberUnderlaysExt - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 458 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 534 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -643,13 +559,9 @@ items: fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.TransparentArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TransparentArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 459 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 535 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -669,13 +581,9 @@ items: fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.TransparentExt type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TransparentExt - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 460 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 536 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -695,13 +603,9 @@ items: fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.ShareDepthArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ShareDepthArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 461 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 537 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -721,13 +625,9 @@ items: fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.ShareDepthExt type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ShareDepthExt - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 462 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 538 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -747,13 +647,9 @@ items: fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.ShareStencilArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ShareStencilArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 463 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 539 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -773,13 +669,9 @@ items: fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.ShareStencilExt type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ShareStencilExt - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 464 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 540 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -799,13 +691,9 @@ items: fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.ShareAccumArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ShareAccumArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 465 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 541 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -825,13 +713,9 @@ items: fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.ShareAccumExt type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ShareAccumExt - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 466 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 542 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -851,13 +735,9 @@ items: fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.SupportGdiArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SupportGdiArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 467 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 543 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -877,13 +757,9 @@ items: fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.SupportGdiExt type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SupportGdiExt - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 468 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 544 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -903,13 +779,9 @@ items: fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.SupportOpenglArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SupportOpenglArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 469 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 545 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -929,13 +801,9 @@ items: fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.SupportOpenglExt type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SupportOpenglExt - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 470 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 546 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -955,13 +823,9 @@ items: fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.DoubleBufferArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DoubleBufferArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 471 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 547 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -981,13 +845,9 @@ items: fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.DoubleBufferExt type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DoubleBufferExt - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 472 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 548 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -1007,13 +867,9 @@ items: fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.StereoArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: StereoArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 473 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 549 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -1033,13 +889,9 @@ items: fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.StereoExt type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: StereoExt - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 474 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 550 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -1059,13 +911,9 @@ items: fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.PixelTypeArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: PixelTypeArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 475 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 551 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -1085,13 +933,9 @@ items: fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.PixelTypeExt type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: PixelTypeExt - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 476 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 552 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -1111,13 +955,9 @@ items: fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.ColorBitsArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ColorBitsArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 477 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 553 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -1137,13 +977,9 @@ items: fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.ColorBitsExt type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ColorBitsExt - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 478 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 554 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -1163,13 +999,9 @@ items: fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.RedBitsArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: RedBitsArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 479 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 555 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -1189,13 +1021,9 @@ items: fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.RedBitsExt type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: RedBitsExt - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 480 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 556 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -1215,13 +1043,9 @@ items: fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.RedShiftArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: RedShiftArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 481 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 557 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -1241,13 +1065,9 @@ items: fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.RedShiftExt type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: RedShiftExt - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 482 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 558 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -1267,13 +1087,9 @@ items: fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.GreenBitsArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GreenBitsArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 483 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 559 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -1293,13 +1109,9 @@ items: fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.GreenBitsExt type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GreenBitsExt - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 484 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 560 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -1319,13 +1131,9 @@ items: fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.GreenShiftArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GreenShiftArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 485 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 561 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -1345,13 +1153,9 @@ items: fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.GreenShiftExt type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GreenShiftExt - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 486 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 562 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -1371,13 +1175,9 @@ items: fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.BlueBitsArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: BlueBitsArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 487 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 563 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -1397,13 +1197,9 @@ items: fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.BlueBitsExt type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: BlueBitsExt - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 488 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 564 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -1423,13 +1219,9 @@ items: fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.BlueShiftArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: BlueShiftArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 489 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 565 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -1449,13 +1241,9 @@ items: fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.BlueShiftExt type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: BlueShiftExt - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 490 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 566 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -1475,13 +1263,9 @@ items: fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.AlphaBitsArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: AlphaBitsArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 491 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 567 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -1501,13 +1285,9 @@ items: fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.AlphaBitsExt type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: AlphaBitsExt - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 492 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 568 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -1527,13 +1307,9 @@ items: fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.AlphaShiftArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: AlphaShiftArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 493 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 569 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -1553,13 +1329,9 @@ items: fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.AlphaShiftExt type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: AlphaShiftExt - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 494 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 570 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -1579,13 +1351,9 @@ items: fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.AccumBitsArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: AccumBitsArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 495 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 571 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -1605,13 +1373,9 @@ items: fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.AccumBitsExt type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: AccumBitsExt - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 496 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 572 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -1631,13 +1395,9 @@ items: fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.AccumRedBitsArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: AccumRedBitsArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 497 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 573 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -1657,13 +1417,9 @@ items: fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.AccumRedBitsExt type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: AccumRedBitsExt - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 498 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 574 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -1683,13 +1439,9 @@ items: fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.AccumGreenBitsArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: AccumGreenBitsArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 499 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 575 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -1709,13 +1461,9 @@ items: fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.AccumGreenBitsExt type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: AccumGreenBitsExt - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 500 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 576 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -1735,13 +1483,9 @@ items: fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.AccumBlueBitsArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: AccumBlueBitsArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 501 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 577 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -1761,13 +1505,9 @@ items: fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.AccumBlueBitsExt type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: AccumBlueBitsExt - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 502 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 578 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -1787,13 +1527,9 @@ items: fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.AccumAlphaBitsArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: AccumAlphaBitsArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 503 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 579 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -1813,13 +1549,9 @@ items: fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.AccumAlphaBitsExt type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: AccumAlphaBitsExt - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 504 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 580 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -1839,13 +1571,9 @@ items: fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.DepthBitsArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DepthBitsArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 505 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 581 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -1865,13 +1593,9 @@ items: fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.DepthBitsExt type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DepthBitsExt - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 506 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 582 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -1891,13 +1615,9 @@ items: fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.StencilBitsArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: StencilBitsArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 507 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 583 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -1917,13 +1637,9 @@ items: fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.StencilBitsExt type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: StencilBitsExt - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 508 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 584 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -1943,13 +1659,9 @@ items: fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.AuxBuffersArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: AuxBuffersArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 509 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 585 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -1969,13 +1681,9 @@ items: fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.AuxBuffersExt type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: AuxBuffersExt - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 510 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 586 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -1995,13 +1703,9 @@ items: fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.DrawToPbufferArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DrawToPbufferArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 511 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 587 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -2021,13 +1725,9 @@ items: fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.DrawToPbufferExt type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DrawToPbufferExt - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 512 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 588 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -2047,13 +1747,9 @@ items: fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.TransparentRedValueArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TransparentRedValueArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 513 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 589 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -2073,13 +1769,9 @@ items: fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.TransparentGreenValueArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TransparentGreenValueArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 514 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 590 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -2099,13 +1791,9 @@ items: fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.TransparentBlueValueArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TransparentBlueValueArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 515 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 591 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -2125,13 +1813,9 @@ items: fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.TransparentAlphaValueArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TransparentAlphaValueArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 516 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 592 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -2151,13 +1835,9 @@ items: fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.TransparentIndexValueArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TransparentIndexValueArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 517 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 593 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -2177,13 +1857,9 @@ items: fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.SamplesArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SamplesArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 518 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 594 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -2203,13 +1879,9 @@ items: fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.SamplesExt type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SamplesExt - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 519 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 595 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -2229,13 +1901,9 @@ items: fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.FramebufferSrgbCapableArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: FramebufferSrgbCapableArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 520 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 596 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -2255,13 +1923,9 @@ items: fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.FramebufferSrgbCapableExt type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: FramebufferSrgbCapableExt - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 521 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 597 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl diff --git a/api/OpenTK.Graphics.Wgl.PixelFormatDescriptor.yml b/api/OpenTK.Graphics.Wgl.PixelFormatDescriptor.yml index 643f096e..f8060529 100644 --- a/api/OpenTK.Graphics.Wgl.PixelFormatDescriptor.yml +++ b/api/OpenTK.Graphics.Wgl.PixelFormatDescriptor.yml @@ -39,12 +39,8 @@ items: fullName: OpenTK.Graphics.Wgl.PixelFormatDescriptor type: Struct source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: PixelFormatDescriptor - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 574 assemblies: - OpenTK.Graphics @@ -71,12 +67,8 @@ items: fullName: OpenTK.Graphics.Wgl.PixelFormatDescriptor.nSize type: Field source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: nSize - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 576 assemblies: - OpenTK.Graphics @@ -98,12 +90,8 @@ items: fullName: OpenTK.Graphics.Wgl.PixelFormatDescriptor.nVersion type: Field source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: nVersion - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 577 assemblies: - OpenTK.Graphics @@ -125,12 +113,8 @@ items: fullName: OpenTK.Graphics.Wgl.PixelFormatDescriptor.dwFlags type: Field source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: dwFlags - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 578 assemblies: - OpenTK.Graphics @@ -152,12 +136,8 @@ items: fullName: OpenTK.Graphics.Wgl.PixelFormatDescriptor.iPixelType type: Field source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: iPixelType - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 579 assemblies: - OpenTK.Graphics @@ -179,12 +159,8 @@ items: fullName: OpenTK.Graphics.Wgl.PixelFormatDescriptor.cColorBits type: Field source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: cColorBits - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 580 assemblies: - OpenTK.Graphics @@ -206,12 +182,8 @@ items: fullName: OpenTK.Graphics.Wgl.PixelFormatDescriptor.cRedBits type: Field source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: cRedBits - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 581 assemblies: - OpenTK.Graphics @@ -233,12 +205,8 @@ items: fullName: OpenTK.Graphics.Wgl.PixelFormatDescriptor.cRedShift type: Field source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: cRedShift - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 582 assemblies: - OpenTK.Graphics @@ -260,12 +228,8 @@ items: fullName: OpenTK.Graphics.Wgl.PixelFormatDescriptor.cGreenBits type: Field source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: cGreenBits - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 583 assemblies: - OpenTK.Graphics @@ -287,12 +251,8 @@ items: fullName: OpenTK.Graphics.Wgl.PixelFormatDescriptor.cGreenShift type: Field source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: cGreenShift - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 584 assemblies: - OpenTK.Graphics @@ -314,12 +274,8 @@ items: fullName: OpenTK.Graphics.Wgl.PixelFormatDescriptor.cBlueBits type: Field source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: cBlueBits - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 585 assemblies: - OpenTK.Graphics @@ -341,12 +297,8 @@ items: fullName: OpenTK.Graphics.Wgl.PixelFormatDescriptor.cBlueShift type: Field source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: cBlueShift - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 586 assemblies: - OpenTK.Graphics @@ -368,12 +320,8 @@ items: fullName: OpenTK.Graphics.Wgl.PixelFormatDescriptor.cAlphaBits type: Field source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: cAlphaBits - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 587 assemblies: - OpenTK.Graphics @@ -395,12 +343,8 @@ items: fullName: OpenTK.Graphics.Wgl.PixelFormatDescriptor.cAlphaShift type: Field source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: cAlphaShift - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 588 assemblies: - OpenTK.Graphics @@ -422,12 +366,8 @@ items: fullName: OpenTK.Graphics.Wgl.PixelFormatDescriptor.cAccumBits type: Field source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: cAccumBits - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 589 assemblies: - OpenTK.Graphics @@ -449,12 +389,8 @@ items: fullName: OpenTK.Graphics.Wgl.PixelFormatDescriptor.cAccumRedBits type: Field source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: cAccumRedBits - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 590 assemblies: - OpenTK.Graphics @@ -476,12 +412,8 @@ items: fullName: OpenTK.Graphics.Wgl.PixelFormatDescriptor.cAccumGreenBits type: Field source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: cAccumGreenBits - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 591 assemblies: - OpenTK.Graphics @@ -503,12 +435,8 @@ items: fullName: OpenTK.Graphics.Wgl.PixelFormatDescriptor.cAccumBlueBits type: Field source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: cAccumBlueBits - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 592 assemblies: - OpenTK.Graphics @@ -530,12 +458,8 @@ items: fullName: OpenTK.Graphics.Wgl.PixelFormatDescriptor.cAccumAlphaBits type: Field source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: cAccumAlphaBits - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 593 assemblies: - OpenTK.Graphics @@ -557,12 +481,8 @@ items: fullName: OpenTK.Graphics.Wgl.PixelFormatDescriptor.cDepthBits type: Field source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: cDepthBits - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 594 assemblies: - OpenTK.Graphics @@ -584,12 +504,8 @@ items: fullName: OpenTK.Graphics.Wgl.PixelFormatDescriptor.cStencilBits type: Field source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: cStencilBits - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 595 assemblies: - OpenTK.Graphics @@ -611,12 +527,8 @@ items: fullName: OpenTK.Graphics.Wgl.PixelFormatDescriptor.cAuxBuffers type: Field source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: cAuxBuffers - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 596 assemblies: - OpenTK.Graphics @@ -638,12 +550,8 @@ items: fullName: OpenTK.Graphics.Wgl.PixelFormatDescriptor.iLayerType type: Field source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: iLayerType - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 597 assemblies: - OpenTK.Graphics @@ -665,12 +573,8 @@ items: fullName: OpenTK.Graphics.Wgl.PixelFormatDescriptor.bReserved type: Field source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: bReserved - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 598 assemblies: - OpenTK.Graphics @@ -692,12 +596,8 @@ items: fullName: OpenTK.Graphics.Wgl.PixelFormatDescriptor.dwLayerMask type: Field source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: dwLayerMask - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 599 assemblies: - OpenTK.Graphics @@ -719,12 +619,8 @@ items: fullName: OpenTK.Graphics.Wgl.PixelFormatDescriptor.dwVisibleMask type: Field source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: dwVisibleMask - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 600 assemblies: - OpenTK.Graphics @@ -746,12 +642,8 @@ items: fullName: OpenTK.Graphics.Wgl.PixelFormatDescriptor.dwDamageMask type: Field source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: dwDamageMask - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 601 assemblies: - OpenTK.Graphics diff --git a/api/OpenTK.Graphics.Wgl.PixelType.yml b/api/OpenTK.Graphics.Wgl.PixelType.yml index 15473229..6d1ecda2 100644 --- a/api/OpenTK.Graphics.Wgl.PixelType.yml +++ b/api/OpenTK.Graphics.Wgl.PixelType.yml @@ -17,13 +17,9 @@ items: fullName: OpenTK.Graphics.Wgl.PixelType type: Enum source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: PixelType - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 523 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 599 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -42,13 +38,9 @@ items: fullName: OpenTK.Graphics.Wgl.PixelType.TypeRgbaArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TypeRgbaArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 525 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 601 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -68,13 +60,9 @@ items: fullName: OpenTK.Graphics.Wgl.PixelType.TypeRgbaExt type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TypeRgbaExt - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 526 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 602 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -94,13 +82,9 @@ items: fullName: OpenTK.Graphics.Wgl.PixelType.TypeColorindexArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TypeColorindexArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 527 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 603 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -120,13 +104,9 @@ items: fullName: OpenTK.Graphics.Wgl.PixelType.TypeColorindexExt type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TypeColorindexExt - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 528 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 604 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl diff --git a/api/OpenTK.Graphics.Wgl.Rect.yml b/api/OpenTK.Graphics.Wgl.Rect.yml index 2996acb2..7c67aaa5 100644 --- a/api/OpenTK.Graphics.Wgl.Rect.yml +++ b/api/OpenTK.Graphics.Wgl.Rect.yml @@ -17,12 +17,8 @@ items: fullName: OpenTK.Graphics.Wgl.Rect type: Struct source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Rect - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 527 assemblies: - OpenTK.Graphics @@ -49,12 +45,8 @@ items: fullName: OpenTK.Graphics.Wgl.Rect.Left type: Field source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Left - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 529 assemblies: - OpenTK.Graphics @@ -76,12 +68,8 @@ items: fullName: OpenTK.Graphics.Wgl.Rect.Top type: Field source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Top - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 530 assemblies: - OpenTK.Graphics @@ -103,12 +91,8 @@ items: fullName: OpenTK.Graphics.Wgl.Rect.Right type: Field source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Right - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 531 assemblies: - OpenTK.Graphics @@ -130,12 +114,8 @@ items: fullName: OpenTK.Graphics.Wgl.Rect.Bottom type: Field source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Bottom - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 532 assemblies: - OpenTK.Graphics diff --git a/api/OpenTK.Graphics.Wgl.StereoEmitterState.yml b/api/OpenTK.Graphics.Wgl.StereoEmitterState.yml index 0fbfb36a..798573d2 100644 --- a/api/OpenTK.Graphics.Wgl.StereoEmitterState.yml +++ b/api/OpenTK.Graphics.Wgl.StereoEmitterState.yml @@ -17,13 +17,9 @@ items: fullName: OpenTK.Graphics.Wgl.StereoEmitterState type: Enum source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: StereoEmitterState - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 531 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 607 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -44,13 +40,9 @@ items: fullName: OpenTK.Graphics.Wgl.StereoEmitterState.StereoEmitterEnable3dl type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: StereoEmitterEnable3dl - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 533 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 609 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -70,13 +62,9 @@ items: fullName: OpenTK.Graphics.Wgl.StereoEmitterState.StereoEmitterDisable3dl type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: StereoEmitterDisable3dl - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 534 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 610 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -96,13 +84,9 @@ items: fullName: OpenTK.Graphics.Wgl.StereoEmitterState.StereoPolarityNormal3dl type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: StereoPolarityNormal3dl - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 535 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 611 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -122,13 +106,9 @@ items: fullName: OpenTK.Graphics.Wgl.StereoEmitterState.StereoPolarityInvert3dl type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: StereoPolarityInvert3dl - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 536 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 612 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl diff --git a/api/OpenTK.Graphics.Wgl.SwapMethod.yml b/api/OpenTK.Graphics.Wgl.SwapMethod.yml index dbb456d4..5f28dc1f 100644 --- a/api/OpenTK.Graphics.Wgl.SwapMethod.yml +++ b/api/OpenTK.Graphics.Wgl.SwapMethod.yml @@ -19,13 +19,9 @@ items: fullName: OpenTK.Graphics.Wgl.SwapMethod type: Enum source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SwapMethod - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 538 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 614 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -44,13 +40,9 @@ items: fullName: OpenTK.Graphics.Wgl.SwapMethod.SwapExchangeArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SwapExchangeArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 540 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 616 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -70,13 +62,9 @@ items: fullName: OpenTK.Graphics.Wgl.SwapMethod.SwapExchangeExt type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SwapExchangeExt - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 541 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 617 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -96,13 +84,9 @@ items: fullName: OpenTK.Graphics.Wgl.SwapMethod.SwapCopyArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SwapCopyArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 542 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 618 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -122,13 +106,9 @@ items: fullName: OpenTK.Graphics.Wgl.SwapMethod.SwapCopyExt type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SwapCopyExt - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 543 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 619 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -148,13 +128,9 @@ items: fullName: OpenTK.Graphics.Wgl.SwapMethod.SwapUndefinedArb type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SwapUndefinedArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 544 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 620 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -174,13 +150,9 @@ items: fullName: OpenTK.Graphics.Wgl.SwapMethod.SwapUndefinedExt type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SwapUndefinedExt - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 545 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 621 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl diff --git a/api/OpenTK.Graphics.Wgl.VideoCaptureDeviceAttribute.yml b/api/OpenTK.Graphics.Wgl.VideoCaptureDeviceAttribute.yml index cabe6089..5bf9c557 100644 --- a/api/OpenTK.Graphics.Wgl.VideoCaptureDeviceAttribute.yml +++ b/api/OpenTK.Graphics.Wgl.VideoCaptureDeviceAttribute.yml @@ -14,13 +14,9 @@ items: fullName: OpenTK.Graphics.Wgl.VideoCaptureDeviceAttribute type: Enum source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: VideoCaptureDeviceAttribute - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 548 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 624 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -41,13 +37,9 @@ items: fullName: OpenTK.Graphics.Wgl.VideoCaptureDeviceAttribute.UniqueIdNv type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: UniqueIdNv - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 550 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 626 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl diff --git a/api/OpenTK.Graphics.Wgl.VideoOutputBuffer.yml b/api/OpenTK.Graphics.Wgl.VideoOutputBuffer.yml index ce247e63..d959d542 100644 --- a/api/OpenTK.Graphics.Wgl.VideoOutputBuffer.yml +++ b/api/OpenTK.Graphics.Wgl.VideoOutputBuffer.yml @@ -18,13 +18,9 @@ items: fullName: OpenTK.Graphics.Wgl.VideoOutputBuffer type: Enum source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: VideoOutputBuffer - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 553 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 629 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -45,13 +41,9 @@ items: fullName: OpenTK.Graphics.Wgl.VideoOutputBuffer.VideoOutColorNv type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: VideoOutColorNv - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 555 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 631 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -71,13 +63,9 @@ items: fullName: OpenTK.Graphics.Wgl.VideoOutputBuffer.VideoOutAlphaNv type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: VideoOutAlphaNv - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 556 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 632 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -97,13 +85,9 @@ items: fullName: OpenTK.Graphics.Wgl.VideoOutputBuffer.VideoOutDepthNv type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: VideoOutDepthNv - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 557 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 633 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -123,13 +107,9 @@ items: fullName: OpenTK.Graphics.Wgl.VideoOutputBuffer.VideoOutColorAndAlphaNv type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: VideoOutColorAndAlphaNv - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 558 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 634 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -149,13 +129,9 @@ items: fullName: OpenTK.Graphics.Wgl.VideoOutputBuffer.VideoOutColorAndDepthNv type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: VideoOutColorAndDepthNv - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 559 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 635 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl diff --git a/api/OpenTK.Graphics.Wgl.VideoOutputBufferType.yml b/api/OpenTK.Graphics.Wgl.VideoOutputBufferType.yml index 959861df..af9601f6 100644 --- a/api/OpenTK.Graphics.Wgl.VideoOutputBufferType.yml +++ b/api/OpenTK.Graphics.Wgl.VideoOutputBufferType.yml @@ -18,13 +18,9 @@ items: fullName: OpenTK.Graphics.Wgl.VideoOutputBufferType type: Enum source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: VideoOutputBufferType - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 562 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 638 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -45,13 +41,9 @@ items: fullName: OpenTK.Graphics.Wgl.VideoOutputBufferType.VideoOutFrame type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: VideoOutFrame - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 564 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 640 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -71,13 +63,9 @@ items: fullName: OpenTK.Graphics.Wgl.VideoOutputBufferType.VideoOutField1 type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: VideoOutField1 - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 565 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 641 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -97,13 +85,9 @@ items: fullName: OpenTK.Graphics.Wgl.VideoOutputBufferType.VideoOutField2 type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: VideoOutField2 - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 566 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 642 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -123,13 +107,9 @@ items: fullName: OpenTK.Graphics.Wgl.VideoOutputBufferType.VideoOutStackedFields12 type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: VideoOutStackedFields12 - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 567 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 643 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -149,13 +129,9 @@ items: fullName: OpenTK.Graphics.Wgl.VideoOutputBufferType.VideoOutStackedFields21 type: Field source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: VideoOutStackedFields21 - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 568 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs + startLine: 644 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl diff --git a/api/OpenTK.Graphics.Wgl.WGLColorBufferMask.yml b/api/OpenTK.Graphics.Wgl.WGLColorBufferMask.yml deleted file mode 100644 index 3de1132a..00000000 --- a/api/OpenTK.Graphics.Wgl.WGLColorBufferMask.yml +++ /dev/null @@ -1,238 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: OpenTK.Graphics.Wgl.WGLColorBufferMask - commentId: T:OpenTK.Graphics.Wgl.WGLColorBufferMask - id: WGLColorBufferMask - parent: OpenTK.Graphics.Wgl - children: - - OpenTK.Graphics.Wgl.WGLColorBufferMask.BackColorBufferBitArb - - OpenTK.Graphics.Wgl.WGLColorBufferMask.DepthBufferBitArb - - OpenTK.Graphics.Wgl.WGLColorBufferMask.FrontColorBufferBitArb - - OpenTK.Graphics.Wgl.WGLColorBufferMask.StencilBufferBitArb - langs: - - csharp - - vb - name: WGLColorBufferMask - nameWithType: WGLColorBufferMask - fullName: OpenTK.Graphics.Wgl.WGLColorBufferMask - type: Enum - source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: WGLColorBufferMask - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 571 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: Used in - example: [] - syntax: - content: >- - [Flags] - - public enum WGLColorBufferMask : uint - content.vb: >- - - - Public Enum WGLColorBufferMask As UInteger - attributes: - - type: System.FlagsAttribute - ctor: System.FlagsAttribute.#ctor - arguments: [] -- uid: OpenTK.Graphics.Wgl.WGLColorBufferMask.FrontColorBufferBitArb - commentId: F:OpenTK.Graphics.Wgl.WGLColorBufferMask.FrontColorBufferBitArb - id: FrontColorBufferBitArb - parent: OpenTK.Graphics.Wgl.WGLColorBufferMask - langs: - - csharp - - vb - name: FrontColorBufferBitArb - nameWithType: WGLColorBufferMask.FrontColorBufferBitArb - fullName: OpenTK.Graphics.Wgl.WGLColorBufferMask.FrontColorBufferBitArb - type: Field - source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: FrontColorBufferBitArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 574 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: FrontColorBufferBitArb = 1 - return: - type: OpenTK.Graphics.Wgl.WGLColorBufferMask -- uid: OpenTK.Graphics.Wgl.WGLColorBufferMask.BackColorBufferBitArb - commentId: F:OpenTK.Graphics.Wgl.WGLColorBufferMask.BackColorBufferBitArb - id: BackColorBufferBitArb - parent: OpenTK.Graphics.Wgl.WGLColorBufferMask - langs: - - csharp - - vb - name: BackColorBufferBitArb - nameWithType: WGLColorBufferMask.BackColorBufferBitArb - fullName: OpenTK.Graphics.Wgl.WGLColorBufferMask.BackColorBufferBitArb - type: Field - source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: BackColorBufferBitArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 575 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: BackColorBufferBitArb = 2 - return: - type: OpenTK.Graphics.Wgl.WGLColorBufferMask -- uid: OpenTK.Graphics.Wgl.WGLColorBufferMask.DepthBufferBitArb - commentId: F:OpenTK.Graphics.Wgl.WGLColorBufferMask.DepthBufferBitArb - id: DepthBufferBitArb - parent: OpenTK.Graphics.Wgl.WGLColorBufferMask - langs: - - csharp - - vb - name: DepthBufferBitArb - nameWithType: WGLColorBufferMask.DepthBufferBitArb - fullName: OpenTK.Graphics.Wgl.WGLColorBufferMask.DepthBufferBitArb - type: Field - source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: DepthBufferBitArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 576 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: DepthBufferBitArb = 4 - return: - type: OpenTK.Graphics.Wgl.WGLColorBufferMask -- uid: OpenTK.Graphics.Wgl.WGLColorBufferMask.StencilBufferBitArb - commentId: F:OpenTK.Graphics.Wgl.WGLColorBufferMask.StencilBufferBitArb - id: StencilBufferBitArb - parent: OpenTK.Graphics.Wgl.WGLColorBufferMask - langs: - - csharp - - vb - name: StencilBufferBitArb - nameWithType: WGLColorBufferMask.StencilBufferBitArb - fullName: OpenTK.Graphics.Wgl.WGLColorBufferMask.StencilBufferBitArb - type: Field - source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: StencilBufferBitArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 577 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: StencilBufferBitArb = 8 - return: - type: OpenTK.Graphics.Wgl.WGLColorBufferMask -references: -- uid: OpenTK.Graphics.Wgl.Wgl.ARB.CreateBufferRegionARB(System.IntPtr,System.Int32,OpenTK.Graphics.Wgl.WGLColorBufferMask) - commentId: M:OpenTK.Graphics.Wgl.Wgl.ARB.CreateBufferRegionARB(System.IntPtr,System.Int32,OpenTK.Graphics.Wgl.WGLColorBufferMask) - isExternal: true - href: OpenTK.Graphics.Wgl.Wgl.ARB.html#OpenTK_Graphics_Wgl_Wgl_ARB_CreateBufferRegionARB_System_IntPtr_System_Int32_OpenTK_Graphics_Wgl_WGLColorBufferMask_ - name: CreateBufferRegionARB(nint, int, WGLColorBufferMask) - nameWithType: Wgl.ARB.CreateBufferRegionARB(nint, int, WGLColorBufferMask) - fullName: OpenTK.Graphics.Wgl.Wgl.ARB.CreateBufferRegionARB(nint, int, OpenTK.Graphics.Wgl.WGLColorBufferMask) - nameWithType.vb: Wgl.ARB.CreateBufferRegionARB(IntPtr, Integer, WGLColorBufferMask) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.ARB.CreateBufferRegionARB(System.IntPtr, Integer, OpenTK.Graphics.Wgl.WGLColorBufferMask) - name.vb: CreateBufferRegionARB(IntPtr, Integer, WGLColorBufferMask) - spec.csharp: - - uid: OpenTK.Graphics.Wgl.Wgl.ARB.CreateBufferRegionARB(System.IntPtr,System.Int32,OpenTK.Graphics.Wgl.WGLColorBufferMask) - name: CreateBufferRegionARB - href: OpenTK.Graphics.Wgl.Wgl.ARB.html#OpenTK_Graphics_Wgl_Wgl_ARB_CreateBufferRegionARB_System_IntPtr_System_Int32_OpenTK_Graphics_Wgl_WGLColorBufferMask_ - - name: ( - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: OpenTK.Graphics.Wgl.WGLColorBufferMask - name: WGLColorBufferMask - href: OpenTK.Graphics.Wgl.WGLColorBufferMask.html - - name: ) - spec.vb: - - uid: OpenTK.Graphics.Wgl.Wgl.ARB.CreateBufferRegionARB(System.IntPtr,System.Int32,OpenTK.Graphics.Wgl.WGLColorBufferMask) - name: CreateBufferRegionARB - href: OpenTK.Graphics.Wgl.Wgl.ARB.html#OpenTK_Graphics_Wgl_Wgl_ARB_CreateBufferRegionARB_System_IntPtr_System_Int32_OpenTK_Graphics_Wgl_WGLColorBufferMask_ - - name: ( - - uid: System.IntPtr - name: IntPtr - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: OpenTK.Graphics.Wgl.WGLColorBufferMask - name: WGLColorBufferMask - href: OpenTK.Graphics.Wgl.WGLColorBufferMask.html - - name: ) -- uid: OpenTK.Graphics.Wgl - commentId: N:OpenTK.Graphics.Wgl - href: OpenTK.html - name: OpenTK.Graphics.Wgl - nameWithType: OpenTK.Graphics.Wgl - fullName: OpenTK.Graphics.Wgl - spec.csharp: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Wgl - name: Wgl - href: OpenTK.Graphics.Wgl.html - spec.vb: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Wgl - name: Wgl - href: OpenTK.Graphics.Wgl.html -- uid: OpenTK.Graphics.Wgl.WGLColorBufferMask - commentId: T:OpenTK.Graphics.Wgl.WGLColorBufferMask - parent: OpenTK.Graphics.Wgl - href: OpenTK.Graphics.Wgl.WGLColorBufferMask.html - name: WGLColorBufferMask - nameWithType: WGLColorBufferMask - fullName: OpenTK.Graphics.Wgl.WGLColorBufferMask diff --git a/api/OpenTK.Graphics.Wgl.WGLContextFlagsMask.yml b/api/OpenTK.Graphics.Wgl.WGLContextFlagsMask.yml deleted file mode 100644 index 60f4da1e..00000000 --- a/api/OpenTK.Graphics.Wgl.WGLContextFlagsMask.yml +++ /dev/null @@ -1,184 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: OpenTK.Graphics.Wgl.WGLContextFlagsMask - commentId: T:OpenTK.Graphics.Wgl.WGLContextFlagsMask - id: WGLContextFlagsMask - parent: OpenTK.Graphics.Wgl - children: - - OpenTK.Graphics.Wgl.WGLContextFlagsMask.ContextDebugBitArb - - OpenTK.Graphics.Wgl.WGLContextFlagsMask.ContextForwardCompatibleBitArb - - OpenTK.Graphics.Wgl.WGLContextFlagsMask.ContextResetIsolationBitArb - - OpenTK.Graphics.Wgl.WGLContextFlagsMask.ContextRobustAccessBitArb - langs: - - csharp - - vb - name: WGLContextFlagsMask - nameWithType: WGLContextFlagsMask - fullName: OpenTK.Graphics.Wgl.WGLContextFlagsMask - type: Enum - source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: WGLContextFlagsMask - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 579 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: >- - [Flags] - - public enum WGLContextFlagsMask : uint - content.vb: >- - - - Public Enum WGLContextFlagsMask As UInteger - attributes: - - type: System.FlagsAttribute - ctor: System.FlagsAttribute.#ctor - arguments: [] -- uid: OpenTK.Graphics.Wgl.WGLContextFlagsMask.ContextDebugBitArb - commentId: F:OpenTK.Graphics.Wgl.WGLContextFlagsMask.ContextDebugBitArb - id: ContextDebugBitArb - parent: OpenTK.Graphics.Wgl.WGLContextFlagsMask - langs: - - csharp - - vb - name: ContextDebugBitArb - nameWithType: WGLContextFlagsMask.ContextDebugBitArb - fullName: OpenTK.Graphics.Wgl.WGLContextFlagsMask.ContextDebugBitArb - type: Field - source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: ContextDebugBitArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 582 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: ContextDebugBitArb = 1 - return: - type: OpenTK.Graphics.Wgl.WGLContextFlagsMask -- uid: OpenTK.Graphics.Wgl.WGLContextFlagsMask.ContextForwardCompatibleBitArb - commentId: F:OpenTK.Graphics.Wgl.WGLContextFlagsMask.ContextForwardCompatibleBitArb - id: ContextForwardCompatibleBitArb - parent: OpenTK.Graphics.Wgl.WGLContextFlagsMask - langs: - - csharp - - vb - name: ContextForwardCompatibleBitArb - nameWithType: WGLContextFlagsMask.ContextForwardCompatibleBitArb - fullName: OpenTK.Graphics.Wgl.WGLContextFlagsMask.ContextForwardCompatibleBitArb - type: Field - source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: ContextForwardCompatibleBitArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 583 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: ContextForwardCompatibleBitArb = 2 - return: - type: OpenTK.Graphics.Wgl.WGLContextFlagsMask -- uid: OpenTK.Graphics.Wgl.WGLContextFlagsMask.ContextRobustAccessBitArb - commentId: F:OpenTK.Graphics.Wgl.WGLContextFlagsMask.ContextRobustAccessBitArb - id: ContextRobustAccessBitArb - parent: OpenTK.Graphics.Wgl.WGLContextFlagsMask - langs: - - csharp - - vb - name: ContextRobustAccessBitArb - nameWithType: WGLContextFlagsMask.ContextRobustAccessBitArb - fullName: OpenTK.Graphics.Wgl.WGLContextFlagsMask.ContextRobustAccessBitArb - type: Field - source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: ContextRobustAccessBitArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 584 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: ContextRobustAccessBitArb = 4 - return: - type: OpenTK.Graphics.Wgl.WGLContextFlagsMask -- uid: OpenTK.Graphics.Wgl.WGLContextFlagsMask.ContextResetIsolationBitArb - commentId: F:OpenTK.Graphics.Wgl.WGLContextFlagsMask.ContextResetIsolationBitArb - id: ContextResetIsolationBitArb - parent: OpenTK.Graphics.Wgl.WGLContextFlagsMask - langs: - - csharp - - vb - name: ContextResetIsolationBitArb - nameWithType: WGLContextFlagsMask.ContextResetIsolationBitArb - fullName: OpenTK.Graphics.Wgl.WGLContextFlagsMask.ContextResetIsolationBitArb - type: Field - source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: ContextResetIsolationBitArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 585 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: ContextResetIsolationBitArb = 8 - return: - type: OpenTK.Graphics.Wgl.WGLContextFlagsMask -references: -- uid: OpenTK.Graphics.Wgl - commentId: N:OpenTK.Graphics.Wgl - href: OpenTK.html - name: OpenTK.Graphics.Wgl - nameWithType: OpenTK.Graphics.Wgl - fullName: OpenTK.Graphics.Wgl - spec.csharp: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Wgl - name: Wgl - href: OpenTK.Graphics.Wgl.html - spec.vb: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Wgl - name: Wgl - href: OpenTK.Graphics.Wgl.html -- uid: OpenTK.Graphics.Wgl.WGLContextFlagsMask - commentId: T:OpenTK.Graphics.Wgl.WGLContextFlagsMask - parent: OpenTK.Graphics.Wgl - href: OpenTK.Graphics.Wgl.WGLContextFlagsMask.html - name: WGLContextFlagsMask - nameWithType: WGLContextFlagsMask - fullName: OpenTK.Graphics.Wgl.WGLContextFlagsMask diff --git a/api/OpenTK.Graphics.Wgl.WGLContextProfileMask.yml b/api/OpenTK.Graphics.Wgl.WGLContextProfileMask.yml deleted file mode 100644 index f1f61ab6..00000000 --- a/api/OpenTK.Graphics.Wgl.WGLContextProfileMask.yml +++ /dev/null @@ -1,184 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: OpenTK.Graphics.Wgl.WGLContextProfileMask - commentId: T:OpenTK.Graphics.Wgl.WGLContextProfileMask - id: WGLContextProfileMask - parent: OpenTK.Graphics.Wgl - children: - - OpenTK.Graphics.Wgl.WGLContextProfileMask.ContextCompatibilityProfileBitArb - - OpenTK.Graphics.Wgl.WGLContextProfileMask.ContextCoreProfileBitArb - - OpenTK.Graphics.Wgl.WGLContextProfileMask.ContextEs2ProfileBitExt - - OpenTK.Graphics.Wgl.WGLContextProfileMask.ContextEsProfileBitExt - langs: - - csharp - - vb - name: WGLContextProfileMask - nameWithType: WGLContextProfileMask - fullName: OpenTK.Graphics.Wgl.WGLContextProfileMask - type: Enum - source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: WGLContextProfileMask - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 587 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: >- - [Flags] - - public enum WGLContextProfileMask : uint - content.vb: >- - - - Public Enum WGLContextProfileMask As UInteger - attributes: - - type: System.FlagsAttribute - ctor: System.FlagsAttribute.#ctor - arguments: [] -- uid: OpenTK.Graphics.Wgl.WGLContextProfileMask.ContextCoreProfileBitArb - commentId: F:OpenTK.Graphics.Wgl.WGLContextProfileMask.ContextCoreProfileBitArb - id: ContextCoreProfileBitArb - parent: OpenTK.Graphics.Wgl.WGLContextProfileMask - langs: - - csharp - - vb - name: ContextCoreProfileBitArb - nameWithType: WGLContextProfileMask.ContextCoreProfileBitArb - fullName: OpenTK.Graphics.Wgl.WGLContextProfileMask.ContextCoreProfileBitArb - type: Field - source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: ContextCoreProfileBitArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 590 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: ContextCoreProfileBitArb = 1 - return: - type: OpenTK.Graphics.Wgl.WGLContextProfileMask -- uid: OpenTK.Graphics.Wgl.WGLContextProfileMask.ContextCompatibilityProfileBitArb - commentId: F:OpenTK.Graphics.Wgl.WGLContextProfileMask.ContextCompatibilityProfileBitArb - id: ContextCompatibilityProfileBitArb - parent: OpenTK.Graphics.Wgl.WGLContextProfileMask - langs: - - csharp - - vb - name: ContextCompatibilityProfileBitArb - nameWithType: WGLContextProfileMask.ContextCompatibilityProfileBitArb - fullName: OpenTK.Graphics.Wgl.WGLContextProfileMask.ContextCompatibilityProfileBitArb - type: Field - source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: ContextCompatibilityProfileBitArb - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 591 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: ContextCompatibilityProfileBitArb = 2 - return: - type: OpenTK.Graphics.Wgl.WGLContextProfileMask -- uid: OpenTK.Graphics.Wgl.WGLContextProfileMask.ContextEs2ProfileBitExt - commentId: F:OpenTK.Graphics.Wgl.WGLContextProfileMask.ContextEs2ProfileBitExt - id: ContextEs2ProfileBitExt - parent: OpenTK.Graphics.Wgl.WGLContextProfileMask - langs: - - csharp - - vb - name: ContextEs2ProfileBitExt - nameWithType: WGLContextProfileMask.ContextEs2ProfileBitExt - fullName: OpenTK.Graphics.Wgl.WGLContextProfileMask.ContextEs2ProfileBitExt - type: Field - source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: ContextEs2ProfileBitExt - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 592 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: ContextEs2ProfileBitExt = 4 - return: - type: OpenTK.Graphics.Wgl.WGLContextProfileMask -- uid: OpenTK.Graphics.Wgl.WGLContextProfileMask.ContextEsProfileBitExt - commentId: F:OpenTK.Graphics.Wgl.WGLContextProfileMask.ContextEsProfileBitExt - id: ContextEsProfileBitExt - parent: OpenTK.Graphics.Wgl.WGLContextProfileMask - langs: - - csharp - - vb - name: ContextEsProfileBitExt - nameWithType: WGLContextProfileMask.ContextEsProfileBitExt - fullName: OpenTK.Graphics.Wgl.WGLContextProfileMask.ContextEsProfileBitExt - type: Field - source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: ContextEsProfileBitExt - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 593 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: ContextEsProfileBitExt = 4 - return: - type: OpenTK.Graphics.Wgl.WGLContextProfileMask -references: -- uid: OpenTK.Graphics.Wgl - commentId: N:OpenTK.Graphics.Wgl - href: OpenTK.html - name: OpenTK.Graphics.Wgl - nameWithType: OpenTK.Graphics.Wgl - fullName: OpenTK.Graphics.Wgl - spec.csharp: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Wgl - name: Wgl - href: OpenTK.Graphics.Wgl.html - spec.vb: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Wgl - name: Wgl - href: OpenTK.Graphics.Wgl.html -- uid: OpenTK.Graphics.Wgl.WGLContextProfileMask - commentId: T:OpenTK.Graphics.Wgl.WGLContextProfileMask - parent: OpenTK.Graphics.Wgl - href: OpenTK.Graphics.Wgl.WGLContextProfileMask.html - name: WGLContextProfileMask - nameWithType: WGLContextProfileMask - fullName: OpenTK.Graphics.Wgl.WGLContextProfileMask diff --git a/api/OpenTK.Graphics.Wgl.WGLLayerPlaneMask.yml b/api/OpenTK.Graphics.Wgl.WGLLayerPlaneMask.yml deleted file mode 100644 index fde77dac..00000000 --- a/api/OpenTK.Graphics.Wgl.WGLLayerPlaneMask.yml +++ /dev/null @@ -1,1031 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: OpenTK.Graphics.Wgl.WGLLayerPlaneMask - commentId: T:OpenTK.Graphics.Wgl.WGLLayerPlaneMask - id: WGLLayerPlaneMask - parent: OpenTK.Graphics.Wgl - children: - - OpenTK.Graphics.Wgl.WGLLayerPlaneMask.SwapMainPlane - - OpenTK.Graphics.Wgl.WGLLayerPlaneMask.SwapOverlay1 - - OpenTK.Graphics.Wgl.WGLLayerPlaneMask.SwapOverlay10 - - OpenTK.Graphics.Wgl.WGLLayerPlaneMask.SwapOverlay11 - - OpenTK.Graphics.Wgl.WGLLayerPlaneMask.SwapOverlay12 - - OpenTK.Graphics.Wgl.WGLLayerPlaneMask.SwapOverlay13 - - OpenTK.Graphics.Wgl.WGLLayerPlaneMask.SwapOverlay14 - - OpenTK.Graphics.Wgl.WGLLayerPlaneMask.SwapOverlay15 - - OpenTK.Graphics.Wgl.WGLLayerPlaneMask.SwapOverlay2 - - OpenTK.Graphics.Wgl.WGLLayerPlaneMask.SwapOverlay3 - - OpenTK.Graphics.Wgl.WGLLayerPlaneMask.SwapOverlay4 - - OpenTK.Graphics.Wgl.WGLLayerPlaneMask.SwapOverlay5 - - OpenTK.Graphics.Wgl.WGLLayerPlaneMask.SwapOverlay6 - - OpenTK.Graphics.Wgl.WGLLayerPlaneMask.SwapOverlay7 - - OpenTK.Graphics.Wgl.WGLLayerPlaneMask.SwapOverlay8 - - OpenTK.Graphics.Wgl.WGLLayerPlaneMask.SwapOverlay9 - - OpenTK.Graphics.Wgl.WGLLayerPlaneMask.SwapUnderlay1 - - OpenTK.Graphics.Wgl.WGLLayerPlaneMask.SwapUnderlay10 - - OpenTK.Graphics.Wgl.WGLLayerPlaneMask.SwapUnderlay11 - - OpenTK.Graphics.Wgl.WGLLayerPlaneMask.SwapUnderlay12 - - OpenTK.Graphics.Wgl.WGLLayerPlaneMask.SwapUnderlay13 - - OpenTK.Graphics.Wgl.WGLLayerPlaneMask.SwapUnderlay14 - - OpenTK.Graphics.Wgl.WGLLayerPlaneMask.SwapUnderlay15 - - OpenTK.Graphics.Wgl.WGLLayerPlaneMask.SwapUnderlay2 - - OpenTK.Graphics.Wgl.WGLLayerPlaneMask.SwapUnderlay3 - - OpenTK.Graphics.Wgl.WGLLayerPlaneMask.SwapUnderlay4 - - OpenTK.Graphics.Wgl.WGLLayerPlaneMask.SwapUnderlay5 - - OpenTK.Graphics.Wgl.WGLLayerPlaneMask.SwapUnderlay6 - - OpenTK.Graphics.Wgl.WGLLayerPlaneMask.SwapUnderlay7 - - OpenTK.Graphics.Wgl.WGLLayerPlaneMask.SwapUnderlay8 - - OpenTK.Graphics.Wgl.WGLLayerPlaneMask.SwapUnderlay9 - langs: - - csharp - - vb - name: WGLLayerPlaneMask - nameWithType: WGLLayerPlaneMask - fullName: OpenTK.Graphics.Wgl.WGLLayerPlaneMask - type: Enum - source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: WGLLayerPlaneMask - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 611 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: Used in , - example: [] - syntax: - content: >- - [Flags] - - public enum WGLLayerPlaneMask : uint - content.vb: >- - - - Public Enum WGLLayerPlaneMask As UInteger - attributes: - - type: System.FlagsAttribute - ctor: System.FlagsAttribute.#ctor - arguments: [] -- uid: OpenTK.Graphics.Wgl.WGLLayerPlaneMask.SwapMainPlane - commentId: F:OpenTK.Graphics.Wgl.WGLLayerPlaneMask.SwapMainPlane - id: SwapMainPlane - parent: OpenTK.Graphics.Wgl.WGLLayerPlaneMask - langs: - - csharp - - vb - name: SwapMainPlane - nameWithType: WGLLayerPlaneMask.SwapMainPlane - fullName: OpenTK.Graphics.Wgl.WGLLayerPlaneMask.SwapMainPlane - type: Field - source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: SwapMainPlane - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 614 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: SwapMainPlane = 1 - return: - type: OpenTK.Graphics.Wgl.WGLLayerPlaneMask -- uid: OpenTK.Graphics.Wgl.WGLLayerPlaneMask.SwapOverlay1 - commentId: F:OpenTK.Graphics.Wgl.WGLLayerPlaneMask.SwapOverlay1 - id: SwapOverlay1 - parent: OpenTK.Graphics.Wgl.WGLLayerPlaneMask - langs: - - csharp - - vb - name: SwapOverlay1 - nameWithType: WGLLayerPlaneMask.SwapOverlay1 - fullName: OpenTK.Graphics.Wgl.WGLLayerPlaneMask.SwapOverlay1 - type: Field - source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: SwapOverlay1 - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 615 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: SwapOverlay1 = 2 - return: - type: OpenTK.Graphics.Wgl.WGLLayerPlaneMask -- uid: OpenTK.Graphics.Wgl.WGLLayerPlaneMask.SwapOverlay2 - commentId: F:OpenTK.Graphics.Wgl.WGLLayerPlaneMask.SwapOverlay2 - id: SwapOverlay2 - parent: OpenTK.Graphics.Wgl.WGLLayerPlaneMask - langs: - - csharp - - vb - name: SwapOverlay2 - nameWithType: WGLLayerPlaneMask.SwapOverlay2 - fullName: OpenTK.Graphics.Wgl.WGLLayerPlaneMask.SwapOverlay2 - type: Field - source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: SwapOverlay2 - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 616 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: SwapOverlay2 = 4 - return: - type: OpenTK.Graphics.Wgl.WGLLayerPlaneMask -- uid: OpenTK.Graphics.Wgl.WGLLayerPlaneMask.SwapOverlay3 - commentId: F:OpenTK.Graphics.Wgl.WGLLayerPlaneMask.SwapOverlay3 - id: SwapOverlay3 - parent: OpenTK.Graphics.Wgl.WGLLayerPlaneMask - langs: - - csharp - - vb - name: SwapOverlay3 - nameWithType: WGLLayerPlaneMask.SwapOverlay3 - fullName: OpenTK.Graphics.Wgl.WGLLayerPlaneMask.SwapOverlay3 - type: Field - source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: SwapOverlay3 - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 617 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: SwapOverlay3 = 8 - return: - type: OpenTK.Graphics.Wgl.WGLLayerPlaneMask -- uid: OpenTK.Graphics.Wgl.WGLLayerPlaneMask.SwapOverlay4 - commentId: F:OpenTK.Graphics.Wgl.WGLLayerPlaneMask.SwapOverlay4 - id: SwapOverlay4 - parent: OpenTK.Graphics.Wgl.WGLLayerPlaneMask - langs: - - csharp - - vb - name: SwapOverlay4 - nameWithType: WGLLayerPlaneMask.SwapOverlay4 - fullName: OpenTK.Graphics.Wgl.WGLLayerPlaneMask.SwapOverlay4 - type: Field - source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: SwapOverlay4 - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 618 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: SwapOverlay4 = 16 - return: - type: OpenTK.Graphics.Wgl.WGLLayerPlaneMask -- uid: OpenTK.Graphics.Wgl.WGLLayerPlaneMask.SwapOverlay5 - commentId: F:OpenTK.Graphics.Wgl.WGLLayerPlaneMask.SwapOverlay5 - id: SwapOverlay5 - parent: OpenTK.Graphics.Wgl.WGLLayerPlaneMask - langs: - - csharp - - vb - name: SwapOverlay5 - nameWithType: WGLLayerPlaneMask.SwapOverlay5 - fullName: OpenTK.Graphics.Wgl.WGLLayerPlaneMask.SwapOverlay5 - type: Field - source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: SwapOverlay5 - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 619 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: SwapOverlay5 = 32 - return: - type: OpenTK.Graphics.Wgl.WGLLayerPlaneMask -- uid: OpenTK.Graphics.Wgl.WGLLayerPlaneMask.SwapOverlay6 - commentId: F:OpenTK.Graphics.Wgl.WGLLayerPlaneMask.SwapOverlay6 - id: SwapOverlay6 - parent: OpenTK.Graphics.Wgl.WGLLayerPlaneMask - langs: - - csharp - - vb - name: SwapOverlay6 - nameWithType: WGLLayerPlaneMask.SwapOverlay6 - fullName: OpenTK.Graphics.Wgl.WGLLayerPlaneMask.SwapOverlay6 - type: Field - source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: SwapOverlay6 - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 620 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: SwapOverlay6 = 64 - return: - type: OpenTK.Graphics.Wgl.WGLLayerPlaneMask -- uid: OpenTK.Graphics.Wgl.WGLLayerPlaneMask.SwapOverlay7 - commentId: F:OpenTK.Graphics.Wgl.WGLLayerPlaneMask.SwapOverlay7 - id: SwapOverlay7 - parent: OpenTK.Graphics.Wgl.WGLLayerPlaneMask - langs: - - csharp - - vb - name: SwapOverlay7 - nameWithType: WGLLayerPlaneMask.SwapOverlay7 - fullName: OpenTK.Graphics.Wgl.WGLLayerPlaneMask.SwapOverlay7 - type: Field - source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: SwapOverlay7 - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 621 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: SwapOverlay7 = 128 - return: - type: OpenTK.Graphics.Wgl.WGLLayerPlaneMask -- uid: OpenTK.Graphics.Wgl.WGLLayerPlaneMask.SwapOverlay8 - commentId: F:OpenTK.Graphics.Wgl.WGLLayerPlaneMask.SwapOverlay8 - id: SwapOverlay8 - parent: OpenTK.Graphics.Wgl.WGLLayerPlaneMask - langs: - - csharp - - vb - name: SwapOverlay8 - nameWithType: WGLLayerPlaneMask.SwapOverlay8 - fullName: OpenTK.Graphics.Wgl.WGLLayerPlaneMask.SwapOverlay8 - type: Field - source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: SwapOverlay8 - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 622 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: SwapOverlay8 = 256 - return: - type: OpenTK.Graphics.Wgl.WGLLayerPlaneMask -- uid: OpenTK.Graphics.Wgl.WGLLayerPlaneMask.SwapOverlay9 - commentId: F:OpenTK.Graphics.Wgl.WGLLayerPlaneMask.SwapOverlay9 - id: SwapOverlay9 - parent: OpenTK.Graphics.Wgl.WGLLayerPlaneMask - langs: - - csharp - - vb - name: SwapOverlay9 - nameWithType: WGLLayerPlaneMask.SwapOverlay9 - fullName: OpenTK.Graphics.Wgl.WGLLayerPlaneMask.SwapOverlay9 - type: Field - source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: SwapOverlay9 - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 623 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: SwapOverlay9 = 512 - return: - type: OpenTK.Graphics.Wgl.WGLLayerPlaneMask -- uid: OpenTK.Graphics.Wgl.WGLLayerPlaneMask.SwapOverlay10 - commentId: F:OpenTK.Graphics.Wgl.WGLLayerPlaneMask.SwapOverlay10 - id: SwapOverlay10 - parent: OpenTK.Graphics.Wgl.WGLLayerPlaneMask - langs: - - csharp - - vb - name: SwapOverlay10 - nameWithType: WGLLayerPlaneMask.SwapOverlay10 - fullName: OpenTK.Graphics.Wgl.WGLLayerPlaneMask.SwapOverlay10 - type: Field - source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: SwapOverlay10 - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 624 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: SwapOverlay10 = 1024 - return: - type: OpenTK.Graphics.Wgl.WGLLayerPlaneMask -- uid: OpenTK.Graphics.Wgl.WGLLayerPlaneMask.SwapOverlay11 - commentId: F:OpenTK.Graphics.Wgl.WGLLayerPlaneMask.SwapOverlay11 - id: SwapOverlay11 - parent: OpenTK.Graphics.Wgl.WGLLayerPlaneMask - langs: - - csharp - - vb - name: SwapOverlay11 - nameWithType: WGLLayerPlaneMask.SwapOverlay11 - fullName: OpenTK.Graphics.Wgl.WGLLayerPlaneMask.SwapOverlay11 - type: Field - source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: SwapOverlay11 - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 625 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: SwapOverlay11 = 2048 - return: - type: OpenTK.Graphics.Wgl.WGLLayerPlaneMask -- uid: OpenTK.Graphics.Wgl.WGLLayerPlaneMask.SwapOverlay12 - commentId: F:OpenTK.Graphics.Wgl.WGLLayerPlaneMask.SwapOverlay12 - id: SwapOverlay12 - parent: OpenTK.Graphics.Wgl.WGLLayerPlaneMask - langs: - - csharp - - vb - name: SwapOverlay12 - nameWithType: WGLLayerPlaneMask.SwapOverlay12 - fullName: OpenTK.Graphics.Wgl.WGLLayerPlaneMask.SwapOverlay12 - type: Field - source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: SwapOverlay12 - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 626 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: SwapOverlay12 = 4096 - return: - type: OpenTK.Graphics.Wgl.WGLLayerPlaneMask -- uid: OpenTK.Graphics.Wgl.WGLLayerPlaneMask.SwapOverlay13 - commentId: F:OpenTK.Graphics.Wgl.WGLLayerPlaneMask.SwapOverlay13 - id: SwapOverlay13 - parent: OpenTK.Graphics.Wgl.WGLLayerPlaneMask - langs: - - csharp - - vb - name: SwapOverlay13 - nameWithType: WGLLayerPlaneMask.SwapOverlay13 - fullName: OpenTK.Graphics.Wgl.WGLLayerPlaneMask.SwapOverlay13 - type: Field - source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: SwapOverlay13 - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 627 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: SwapOverlay13 = 8192 - return: - type: OpenTK.Graphics.Wgl.WGLLayerPlaneMask -- uid: OpenTK.Graphics.Wgl.WGLLayerPlaneMask.SwapOverlay14 - commentId: F:OpenTK.Graphics.Wgl.WGLLayerPlaneMask.SwapOverlay14 - id: SwapOverlay14 - parent: OpenTK.Graphics.Wgl.WGLLayerPlaneMask - langs: - - csharp - - vb - name: SwapOverlay14 - nameWithType: WGLLayerPlaneMask.SwapOverlay14 - fullName: OpenTK.Graphics.Wgl.WGLLayerPlaneMask.SwapOverlay14 - type: Field - source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: SwapOverlay14 - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 628 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: SwapOverlay14 = 16384 - return: - type: OpenTK.Graphics.Wgl.WGLLayerPlaneMask -- uid: OpenTK.Graphics.Wgl.WGLLayerPlaneMask.SwapOverlay15 - commentId: F:OpenTK.Graphics.Wgl.WGLLayerPlaneMask.SwapOverlay15 - id: SwapOverlay15 - parent: OpenTK.Graphics.Wgl.WGLLayerPlaneMask - langs: - - csharp - - vb - name: SwapOverlay15 - nameWithType: WGLLayerPlaneMask.SwapOverlay15 - fullName: OpenTK.Graphics.Wgl.WGLLayerPlaneMask.SwapOverlay15 - type: Field - source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: SwapOverlay15 - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 629 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: SwapOverlay15 = 32768 - return: - type: OpenTK.Graphics.Wgl.WGLLayerPlaneMask -- uid: OpenTK.Graphics.Wgl.WGLLayerPlaneMask.SwapUnderlay1 - commentId: F:OpenTK.Graphics.Wgl.WGLLayerPlaneMask.SwapUnderlay1 - id: SwapUnderlay1 - parent: OpenTK.Graphics.Wgl.WGLLayerPlaneMask - langs: - - csharp - - vb - name: SwapUnderlay1 - nameWithType: WGLLayerPlaneMask.SwapUnderlay1 - fullName: OpenTK.Graphics.Wgl.WGLLayerPlaneMask.SwapUnderlay1 - type: Field - source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: SwapUnderlay1 - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 630 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: SwapUnderlay1 = 65536 - return: - type: OpenTK.Graphics.Wgl.WGLLayerPlaneMask -- uid: OpenTK.Graphics.Wgl.WGLLayerPlaneMask.SwapUnderlay2 - commentId: F:OpenTK.Graphics.Wgl.WGLLayerPlaneMask.SwapUnderlay2 - id: SwapUnderlay2 - parent: OpenTK.Graphics.Wgl.WGLLayerPlaneMask - langs: - - csharp - - vb - name: SwapUnderlay2 - nameWithType: WGLLayerPlaneMask.SwapUnderlay2 - fullName: OpenTK.Graphics.Wgl.WGLLayerPlaneMask.SwapUnderlay2 - type: Field - source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: SwapUnderlay2 - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 631 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: SwapUnderlay2 = 131072 - return: - type: OpenTK.Graphics.Wgl.WGLLayerPlaneMask -- uid: OpenTK.Graphics.Wgl.WGLLayerPlaneMask.SwapUnderlay3 - commentId: F:OpenTK.Graphics.Wgl.WGLLayerPlaneMask.SwapUnderlay3 - id: SwapUnderlay3 - parent: OpenTK.Graphics.Wgl.WGLLayerPlaneMask - langs: - - csharp - - vb - name: SwapUnderlay3 - nameWithType: WGLLayerPlaneMask.SwapUnderlay3 - fullName: OpenTK.Graphics.Wgl.WGLLayerPlaneMask.SwapUnderlay3 - type: Field - source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: SwapUnderlay3 - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 632 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: SwapUnderlay3 = 262144 - return: - type: OpenTK.Graphics.Wgl.WGLLayerPlaneMask -- uid: OpenTK.Graphics.Wgl.WGLLayerPlaneMask.SwapUnderlay4 - commentId: F:OpenTK.Graphics.Wgl.WGLLayerPlaneMask.SwapUnderlay4 - id: SwapUnderlay4 - parent: OpenTK.Graphics.Wgl.WGLLayerPlaneMask - langs: - - csharp - - vb - name: SwapUnderlay4 - nameWithType: WGLLayerPlaneMask.SwapUnderlay4 - fullName: OpenTK.Graphics.Wgl.WGLLayerPlaneMask.SwapUnderlay4 - type: Field - source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: SwapUnderlay4 - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 633 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: SwapUnderlay4 = 524288 - return: - type: OpenTK.Graphics.Wgl.WGLLayerPlaneMask -- uid: OpenTK.Graphics.Wgl.WGLLayerPlaneMask.SwapUnderlay5 - commentId: F:OpenTK.Graphics.Wgl.WGLLayerPlaneMask.SwapUnderlay5 - id: SwapUnderlay5 - parent: OpenTK.Graphics.Wgl.WGLLayerPlaneMask - langs: - - csharp - - vb - name: SwapUnderlay5 - nameWithType: WGLLayerPlaneMask.SwapUnderlay5 - fullName: OpenTK.Graphics.Wgl.WGLLayerPlaneMask.SwapUnderlay5 - type: Field - source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: SwapUnderlay5 - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 634 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: SwapUnderlay5 = 1048576 - return: - type: OpenTK.Graphics.Wgl.WGLLayerPlaneMask -- uid: OpenTK.Graphics.Wgl.WGLLayerPlaneMask.SwapUnderlay6 - commentId: F:OpenTK.Graphics.Wgl.WGLLayerPlaneMask.SwapUnderlay6 - id: SwapUnderlay6 - parent: OpenTK.Graphics.Wgl.WGLLayerPlaneMask - langs: - - csharp - - vb - name: SwapUnderlay6 - nameWithType: WGLLayerPlaneMask.SwapUnderlay6 - fullName: OpenTK.Graphics.Wgl.WGLLayerPlaneMask.SwapUnderlay6 - type: Field - source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: SwapUnderlay6 - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 635 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: SwapUnderlay6 = 2097152 - return: - type: OpenTK.Graphics.Wgl.WGLLayerPlaneMask -- uid: OpenTK.Graphics.Wgl.WGLLayerPlaneMask.SwapUnderlay7 - commentId: F:OpenTK.Graphics.Wgl.WGLLayerPlaneMask.SwapUnderlay7 - id: SwapUnderlay7 - parent: OpenTK.Graphics.Wgl.WGLLayerPlaneMask - langs: - - csharp - - vb - name: SwapUnderlay7 - nameWithType: WGLLayerPlaneMask.SwapUnderlay7 - fullName: OpenTK.Graphics.Wgl.WGLLayerPlaneMask.SwapUnderlay7 - type: Field - source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: SwapUnderlay7 - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 636 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: SwapUnderlay7 = 4194304 - return: - type: OpenTK.Graphics.Wgl.WGLLayerPlaneMask -- uid: OpenTK.Graphics.Wgl.WGLLayerPlaneMask.SwapUnderlay8 - commentId: F:OpenTK.Graphics.Wgl.WGLLayerPlaneMask.SwapUnderlay8 - id: SwapUnderlay8 - parent: OpenTK.Graphics.Wgl.WGLLayerPlaneMask - langs: - - csharp - - vb - name: SwapUnderlay8 - nameWithType: WGLLayerPlaneMask.SwapUnderlay8 - fullName: OpenTK.Graphics.Wgl.WGLLayerPlaneMask.SwapUnderlay8 - type: Field - source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: SwapUnderlay8 - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 637 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: SwapUnderlay8 = 8388608 - return: - type: OpenTK.Graphics.Wgl.WGLLayerPlaneMask -- uid: OpenTK.Graphics.Wgl.WGLLayerPlaneMask.SwapUnderlay9 - commentId: F:OpenTK.Graphics.Wgl.WGLLayerPlaneMask.SwapUnderlay9 - id: SwapUnderlay9 - parent: OpenTK.Graphics.Wgl.WGLLayerPlaneMask - langs: - - csharp - - vb - name: SwapUnderlay9 - nameWithType: WGLLayerPlaneMask.SwapUnderlay9 - fullName: OpenTK.Graphics.Wgl.WGLLayerPlaneMask.SwapUnderlay9 - type: Field - source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: SwapUnderlay9 - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 638 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: SwapUnderlay9 = 16777216 - return: - type: OpenTK.Graphics.Wgl.WGLLayerPlaneMask -- uid: OpenTK.Graphics.Wgl.WGLLayerPlaneMask.SwapUnderlay10 - commentId: F:OpenTK.Graphics.Wgl.WGLLayerPlaneMask.SwapUnderlay10 - id: SwapUnderlay10 - parent: OpenTK.Graphics.Wgl.WGLLayerPlaneMask - langs: - - csharp - - vb - name: SwapUnderlay10 - nameWithType: WGLLayerPlaneMask.SwapUnderlay10 - fullName: OpenTK.Graphics.Wgl.WGLLayerPlaneMask.SwapUnderlay10 - type: Field - source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: SwapUnderlay10 - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 639 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: SwapUnderlay10 = 33554432 - return: - type: OpenTK.Graphics.Wgl.WGLLayerPlaneMask -- uid: OpenTK.Graphics.Wgl.WGLLayerPlaneMask.SwapUnderlay11 - commentId: F:OpenTK.Graphics.Wgl.WGLLayerPlaneMask.SwapUnderlay11 - id: SwapUnderlay11 - parent: OpenTK.Graphics.Wgl.WGLLayerPlaneMask - langs: - - csharp - - vb - name: SwapUnderlay11 - nameWithType: WGLLayerPlaneMask.SwapUnderlay11 - fullName: OpenTK.Graphics.Wgl.WGLLayerPlaneMask.SwapUnderlay11 - type: Field - source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: SwapUnderlay11 - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 640 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: SwapUnderlay11 = 67108864 - return: - type: OpenTK.Graphics.Wgl.WGLLayerPlaneMask -- uid: OpenTK.Graphics.Wgl.WGLLayerPlaneMask.SwapUnderlay12 - commentId: F:OpenTK.Graphics.Wgl.WGLLayerPlaneMask.SwapUnderlay12 - id: SwapUnderlay12 - parent: OpenTK.Graphics.Wgl.WGLLayerPlaneMask - langs: - - csharp - - vb - name: SwapUnderlay12 - nameWithType: WGLLayerPlaneMask.SwapUnderlay12 - fullName: OpenTK.Graphics.Wgl.WGLLayerPlaneMask.SwapUnderlay12 - type: Field - source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: SwapUnderlay12 - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 641 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: SwapUnderlay12 = 134217728 - return: - type: OpenTK.Graphics.Wgl.WGLLayerPlaneMask -- uid: OpenTK.Graphics.Wgl.WGLLayerPlaneMask.SwapUnderlay13 - commentId: F:OpenTK.Graphics.Wgl.WGLLayerPlaneMask.SwapUnderlay13 - id: SwapUnderlay13 - parent: OpenTK.Graphics.Wgl.WGLLayerPlaneMask - langs: - - csharp - - vb - name: SwapUnderlay13 - nameWithType: WGLLayerPlaneMask.SwapUnderlay13 - fullName: OpenTK.Graphics.Wgl.WGLLayerPlaneMask.SwapUnderlay13 - type: Field - source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: SwapUnderlay13 - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 642 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: SwapUnderlay13 = 268435456 - return: - type: OpenTK.Graphics.Wgl.WGLLayerPlaneMask -- uid: OpenTK.Graphics.Wgl.WGLLayerPlaneMask.SwapUnderlay14 - commentId: F:OpenTK.Graphics.Wgl.WGLLayerPlaneMask.SwapUnderlay14 - id: SwapUnderlay14 - parent: OpenTK.Graphics.Wgl.WGLLayerPlaneMask - langs: - - csharp - - vb - name: SwapUnderlay14 - nameWithType: WGLLayerPlaneMask.SwapUnderlay14 - fullName: OpenTK.Graphics.Wgl.WGLLayerPlaneMask.SwapUnderlay14 - type: Field - source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: SwapUnderlay14 - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 643 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: SwapUnderlay14 = 536870912 - return: - type: OpenTK.Graphics.Wgl.WGLLayerPlaneMask -- uid: OpenTK.Graphics.Wgl.WGLLayerPlaneMask.SwapUnderlay15 - commentId: F:OpenTK.Graphics.Wgl.WGLLayerPlaneMask.SwapUnderlay15 - id: SwapUnderlay15 - parent: OpenTK.Graphics.Wgl.WGLLayerPlaneMask - langs: - - csharp - - vb - name: SwapUnderlay15 - nameWithType: WGLLayerPlaneMask.SwapUnderlay15 - fullName: OpenTK.Graphics.Wgl.WGLLayerPlaneMask.SwapUnderlay15 - type: Field - source: - remote: - path: src/OpenTK.Graphics/Wgl/Enums.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: SwapUnderlay15 - path: opentk/src/OpenTK.Graphics/Wgl/Enums.cs - startLine: 644 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: SwapUnderlay15 = 1073741824 - return: - type: OpenTK.Graphics.Wgl.WGLLayerPlaneMask -references: -- uid: OpenTK.Graphics.Wgl.Wgl.SwapLayerBuffers(System.IntPtr,OpenTK.Graphics.Wgl.WGLLayerPlaneMask) - commentId: M:OpenTK.Graphics.Wgl.Wgl.SwapLayerBuffers(System.IntPtr,OpenTK.Graphics.Wgl.WGLLayerPlaneMask) - isExternal: true - href: OpenTK.Graphics.Wgl.Wgl.html#OpenTK_Graphics_Wgl_Wgl_SwapLayerBuffers_System_IntPtr_OpenTK_Graphics_Wgl_WGLLayerPlaneMask_ - name: SwapLayerBuffers(nint, WGLLayerPlaneMask) - nameWithType: Wgl.SwapLayerBuffers(nint, WGLLayerPlaneMask) - fullName: OpenTK.Graphics.Wgl.Wgl.SwapLayerBuffers(nint, OpenTK.Graphics.Wgl.WGLLayerPlaneMask) - nameWithType.vb: Wgl.SwapLayerBuffers(IntPtr, WGLLayerPlaneMask) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.SwapLayerBuffers(System.IntPtr, OpenTK.Graphics.Wgl.WGLLayerPlaneMask) - name.vb: SwapLayerBuffers(IntPtr, WGLLayerPlaneMask) - spec.csharp: - - uid: OpenTK.Graphics.Wgl.Wgl.SwapLayerBuffers(System.IntPtr,OpenTK.Graphics.Wgl.WGLLayerPlaneMask) - name: SwapLayerBuffers - href: OpenTK.Graphics.Wgl.Wgl.html#OpenTK_Graphics_Wgl_Wgl_SwapLayerBuffers_System_IntPtr_OpenTK_Graphics_Wgl_WGLLayerPlaneMask_ - - name: ( - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: OpenTK.Graphics.Wgl.WGLLayerPlaneMask - name: WGLLayerPlaneMask - href: OpenTK.Graphics.Wgl.WGLLayerPlaneMask.html - - name: ) - spec.vb: - - uid: OpenTK.Graphics.Wgl.Wgl.SwapLayerBuffers(System.IntPtr,OpenTK.Graphics.Wgl.WGLLayerPlaneMask) - name: SwapLayerBuffers - href: OpenTK.Graphics.Wgl.Wgl.html#OpenTK_Graphics_Wgl_Wgl_SwapLayerBuffers_System_IntPtr_OpenTK_Graphics_Wgl_WGLLayerPlaneMask_ - - name: ( - - uid: System.IntPtr - name: IntPtr - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: OpenTK.Graphics.Wgl.WGLLayerPlaneMask - name: WGLLayerPlaneMask - href: OpenTK.Graphics.Wgl.WGLLayerPlaneMask.html - - name: ) -- uid: OpenTK.Graphics.Wgl.Wgl.OML.SwapLayerBuffersMscOML(System.IntPtr,OpenTK.Graphics.Wgl.WGLLayerPlaneMask,System.Int64,System.Int64,System.Int64) - commentId: M:OpenTK.Graphics.Wgl.Wgl.OML.SwapLayerBuffersMscOML(System.IntPtr,OpenTK.Graphics.Wgl.WGLLayerPlaneMask,System.Int64,System.Int64,System.Int64) - isExternal: true - href: OpenTK.Graphics.Wgl.Wgl.OML.html#OpenTK_Graphics_Wgl_Wgl_OML_SwapLayerBuffersMscOML_System_IntPtr_OpenTK_Graphics_Wgl_WGLLayerPlaneMask_System_Int64_System_Int64_System_Int64_ - name: SwapLayerBuffersMscOML(nint, WGLLayerPlaneMask, long, long, long) - nameWithType: Wgl.OML.SwapLayerBuffersMscOML(nint, WGLLayerPlaneMask, long, long, long) - fullName: OpenTK.Graphics.Wgl.Wgl.OML.SwapLayerBuffersMscOML(nint, OpenTK.Graphics.Wgl.WGLLayerPlaneMask, long, long, long) - nameWithType.vb: Wgl.OML.SwapLayerBuffersMscOML(IntPtr, WGLLayerPlaneMask, Long, Long, Long) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.OML.SwapLayerBuffersMscOML(System.IntPtr, OpenTK.Graphics.Wgl.WGLLayerPlaneMask, Long, Long, Long) - name.vb: SwapLayerBuffersMscOML(IntPtr, WGLLayerPlaneMask, Long, Long, Long) - spec.csharp: - - uid: OpenTK.Graphics.Wgl.Wgl.OML.SwapLayerBuffersMscOML(System.IntPtr,OpenTK.Graphics.Wgl.WGLLayerPlaneMask,System.Int64,System.Int64,System.Int64) - name: SwapLayerBuffersMscOML - href: OpenTK.Graphics.Wgl.Wgl.OML.html#OpenTK_Graphics_Wgl_Wgl_OML_SwapLayerBuffersMscOML_System_IntPtr_OpenTK_Graphics_Wgl_WGLLayerPlaneMask_System_Int64_System_Int64_System_Int64_ - - name: ( - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: OpenTK.Graphics.Wgl.WGLLayerPlaneMask - name: WGLLayerPlaneMask - href: OpenTK.Graphics.Wgl.WGLLayerPlaneMask.html - - name: ',' - - name: " " - - uid: System.Int64 - name: long - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int64 - - name: ',' - - name: " " - - uid: System.Int64 - name: long - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int64 - - name: ',' - - name: " " - - uid: System.Int64 - name: long - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int64 - - name: ) - spec.vb: - - uid: OpenTK.Graphics.Wgl.Wgl.OML.SwapLayerBuffersMscOML(System.IntPtr,OpenTK.Graphics.Wgl.WGLLayerPlaneMask,System.Int64,System.Int64,System.Int64) - name: SwapLayerBuffersMscOML - href: OpenTK.Graphics.Wgl.Wgl.OML.html#OpenTK_Graphics_Wgl_Wgl_OML_SwapLayerBuffersMscOML_System_IntPtr_OpenTK_Graphics_Wgl_WGLLayerPlaneMask_System_Int64_System_Int64_System_Int64_ - - name: ( - - uid: System.IntPtr - name: IntPtr - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: OpenTK.Graphics.Wgl.WGLLayerPlaneMask - name: WGLLayerPlaneMask - href: OpenTK.Graphics.Wgl.WGLLayerPlaneMask.html - - name: ',' - - name: " " - - uid: System.Int64 - name: Long - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int64 - - name: ',' - - name: " " - - uid: System.Int64 - name: Long - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int64 - - name: ',' - - name: " " - - uid: System.Int64 - name: Long - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int64 - - name: ) -- uid: OpenTK.Graphics.Wgl - commentId: N:OpenTK.Graphics.Wgl - href: OpenTK.html - name: OpenTK.Graphics.Wgl - nameWithType: OpenTK.Graphics.Wgl - fullName: OpenTK.Graphics.Wgl - spec.csharp: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Wgl - name: Wgl - href: OpenTK.Graphics.Wgl.html - spec.vb: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Wgl - name: Wgl - href: OpenTK.Graphics.Wgl.html -- uid: OpenTK.Graphics.Wgl.WGLLayerPlaneMask - commentId: T:OpenTK.Graphics.Wgl.WGLLayerPlaneMask - parent: OpenTK.Graphics.Wgl - href: OpenTK.Graphics.Wgl.WGLLayerPlaneMask.html - name: WGLLayerPlaneMask - nameWithType: WGLLayerPlaneMask - fullName: OpenTK.Graphics.Wgl.WGLLayerPlaneMask diff --git a/api/OpenTK.Graphics.Wgl.Wgl.AMD.yml b/api/OpenTK.Graphics.Wgl.Wgl.AMD.yml index 60db9b4c..2128ee84 100644 --- a/api/OpenTK.Graphics.Wgl.Wgl.AMD.yml +++ b/api/OpenTK.Graphics.Wgl.Wgl.AMD.yml @@ -9,14 +9,16 @@ items: - OpenTK.Graphics.Wgl.Wgl.AMD.CreateAssociatedContextAMD(System.UInt32) - OpenTK.Graphics.Wgl.Wgl.AMD.CreateAssociatedContextAttribsAMD(System.UInt32,System.IntPtr,System.Int32*) - OpenTK.Graphics.Wgl.Wgl.AMD.CreateAssociatedContextAttribsAMD(System.UInt32,System.IntPtr,System.Int32@) + - OpenTK.Graphics.Wgl.Wgl.AMD.CreateAssociatedContextAttribsAMD(System.UInt32,System.IntPtr,System.Int32[]) + - OpenTK.Graphics.Wgl.Wgl.AMD.CreateAssociatedContextAttribsAMD(System.UInt32,System.IntPtr,System.ReadOnlySpan{System.Int32}) - OpenTK.Graphics.Wgl.Wgl.AMD.DeleteAssociatedContextAMD(System.IntPtr) - OpenTK.Graphics.Wgl.Wgl.AMD.DeleteAssociatedContextAMD_(System.IntPtr) - OpenTK.Graphics.Wgl.Wgl.AMD.GetContextGPUIDAMD(System.IntPtr) - OpenTK.Graphics.Wgl.Wgl.AMD.GetCurrentAssociatedContextAMD - - OpenTK.Graphics.Wgl.Wgl.AMD.GetGPUIDsAMD(System.Span{System.UInt32}) + - OpenTK.Graphics.Wgl.Wgl.AMD.GetGPUIDsAMD(System.UInt32,System.Span{System.UInt32}) - OpenTK.Graphics.Wgl.Wgl.AMD.GetGPUIDsAMD(System.UInt32,System.UInt32*) - OpenTK.Graphics.Wgl.Wgl.AMD.GetGPUIDsAMD(System.UInt32,System.UInt32@) - - OpenTK.Graphics.Wgl.Wgl.AMD.GetGPUIDsAMD(System.UInt32[]) + - OpenTK.Graphics.Wgl.Wgl.AMD.GetGPUIDsAMD(System.UInt32,System.UInt32[]) - OpenTK.Graphics.Wgl.Wgl.AMD.GetGPUInfoAMD(System.UInt32,OpenTK.Graphics.Wgl.GPUPropertyAMD,OpenTK.Graphics.OpenGL.ScalarType,System.UInt32,System.IntPtr) - OpenTK.Graphics.Wgl.Wgl.AMD.GetGPUInfoAMD(System.UInt32,OpenTK.Graphics.Wgl.GPUPropertyAMD,OpenTK.Graphics.OpenGL.ScalarType,System.UInt32,System.Void*) - OpenTK.Graphics.Wgl.Wgl.AMD.GetGPUInfoAMD``1(System.UInt32,OpenTK.Graphics.Wgl.GPUPropertyAMD,OpenTK.Graphics.OpenGL.ScalarType,System.UInt32,System.Span{``0}) @@ -32,13 +34,9 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.AMD type: Class source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: AMD - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 377 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 265 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -69,17 +67,18 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.AMD.BlitContextFramebufferAMD(nint, int, int, int, int, int, int, int, int, OpenTK.Graphics.OpenGL.ClearBufferMask, OpenTK.Graphics.Wgl.All) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: BlitContextFramebufferAMD - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs startLine: 100 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl - summary: '[requires: WGL_AMD_gpu_association] [entry point: wglBlitContextFramebufferAMD]
' + summary: >- + [requires: WGL_AMD_gpu_association] + + [entry point: wglBlitContextFramebufferAMD] + +
example: [] syntax: content: public static void BlitContextFramebufferAMD(nint dstCtx, int srcX0, int srcY0, int srcX1, int srcY1, int dstX0, int dstY0, int dstX1, int dstY1, ClearBufferMask mask, All filter) @@ -123,17 +122,18 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.AMD.CreateAssociatedContextAMD(uint) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateAssociatedContextAMD - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs startLine: 103 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl - summary: '[requires: WGL_AMD_gpu_association] [entry point: wglCreateAssociatedContextAMD]
' + summary: >- + [requires: WGL_AMD_gpu_association] + + [entry point: wglCreateAssociatedContextAMD] + +
example: [] syntax: content: public static nint CreateAssociatedContextAMD(uint id) @@ -159,17 +159,18 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.AMD.CreateAssociatedContextAttribsAMD(uint, nint, int*) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateAssociatedContextAttribsAMD - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs startLine: 106 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl - summary: '[requires: WGL_AMD_gpu_association] [entry point: wglCreateAssociatedContextAttribsAMD]
' + summary: >- + [requires: WGL_AMD_gpu_association] + + [entry point: wglCreateAssociatedContextAttribsAMD] + +
example: [] syntax: content: public static nint CreateAssociatedContextAttribsAMD(uint id, nint hShareContext, int* attribList) @@ -199,17 +200,18 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.AMD.DeleteAssociatedContextAMD_(nint) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DeleteAssociatedContextAMD_ - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs startLine: 109 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl - summary: '[requires: WGL_AMD_gpu_association] [entry point: wglDeleteAssociatedContextAMD]
' + summary: >- + [requires: WGL_AMD_gpu_association] + + [entry point: wglDeleteAssociatedContextAMD] + +
example: [] syntax: content: public static int DeleteAssociatedContextAMD_(nint hglrc) @@ -235,17 +237,18 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.AMD.GetContextGPUIDAMD(nint) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetContextGPUIDAMD - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs startLine: 112 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl - summary: '[requires: WGL_AMD_gpu_association] [entry point: wglGetContextGPUIDAMD]
' + summary: >- + [requires: WGL_AMD_gpu_association] + + [entry point: wglGetContextGPUIDAMD] + +
example: [] syntax: content: public static uint GetContextGPUIDAMD(nint hglrc) @@ -271,17 +274,18 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.AMD.GetCurrentAssociatedContextAMD() type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetCurrentAssociatedContextAMD - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs startLine: 115 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl - summary: '[requires: WGL_AMD_gpu_association] [entry point: wglGetCurrentAssociatedContextAMD]
' + summary: >- + [requires: WGL_AMD_gpu_association] + + [entry point: wglGetCurrentAssociatedContextAMD] + +
example: [] syntax: content: public static nint GetCurrentAssociatedContextAMD() @@ -301,17 +305,18 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.AMD.GetGPUIDsAMD(uint, uint*) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetGPUIDsAMD - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs startLine: 118 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl - summary: '[requires: WGL_AMD_gpu_association] [entry point: wglGetGPUIDsAMD]
' + summary: >- + [requires: WGL_AMD_gpu_association] + + [entry point: wglGetGPUIDsAMD] + +
example: [] syntax: content: public static uint GetGPUIDsAMD(uint maxCount, uint* ids) @@ -339,17 +344,18 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.AMD.GetGPUInfoAMD(uint, OpenTK.Graphics.Wgl.GPUPropertyAMD, OpenTK.Graphics.OpenGL.ScalarType, uint, void*) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetGPUInfoAMD - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs startLine: 121 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl - summary: '[requires: WGL_AMD_gpu_association] [entry point: wglGetGPUInfoAMD]
' + summary: >- + [requires: WGL_AMD_gpu_association] + + [entry point: wglGetGPUInfoAMD] + +
example: [] syntax: content: public static int GetGPUInfoAMD(uint id, GPUPropertyAMD property, ScalarType dataType, uint size, void* data) @@ -383,17 +389,18 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.AMD.MakeAssociatedContextCurrentAMD_(nint) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MakeAssociatedContextCurrentAMD_ - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs startLine: 124 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl - summary: '[requires: WGL_AMD_gpu_association] [entry point: wglMakeAssociatedContextCurrentAMD]
' + summary: >- + [requires: WGL_AMD_gpu_association] + + [entry point: wglMakeAssociatedContextCurrentAMD] + +
example: [] syntax: content: public static int MakeAssociatedContextCurrentAMD_(nint hglrc) @@ -407,6 +414,88 @@ items: nameWithType.vb: Wgl.AMD.MakeAssociatedContextCurrentAMD_(IntPtr) fullName.vb: OpenTK.Graphics.Wgl.Wgl.AMD.MakeAssociatedContextCurrentAMD_(System.IntPtr) name.vb: MakeAssociatedContextCurrentAMD_(IntPtr) +- uid: OpenTK.Graphics.Wgl.Wgl.AMD.CreateAssociatedContextAttribsAMD(System.UInt32,System.IntPtr,System.ReadOnlySpan{System.Int32}) + commentId: M:OpenTK.Graphics.Wgl.Wgl.AMD.CreateAssociatedContextAttribsAMD(System.UInt32,System.IntPtr,System.ReadOnlySpan{System.Int32}) + id: CreateAssociatedContextAttribsAMD(System.UInt32,System.IntPtr,System.ReadOnlySpan{System.Int32}) + parent: OpenTK.Graphics.Wgl.Wgl.AMD + langs: + - csharp + - vb + name: CreateAssociatedContextAttribsAMD(uint, nint, ReadOnlySpan) + nameWithType: Wgl.AMD.CreateAssociatedContextAttribsAMD(uint, nint, ReadOnlySpan) + fullName: OpenTK.Graphics.Wgl.Wgl.AMD.CreateAssociatedContextAttribsAMD(uint, nint, System.ReadOnlySpan) + type: Method + source: + id: CreateAssociatedContextAttribsAMD + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 268 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Wgl + summary: >- + [requires: WGL_AMD_gpu_association] + + [entry point: wglCreateAssociatedContextAttribsAMD] + +
+ example: [] + syntax: + content: public static nint CreateAssociatedContextAttribsAMD(uint id, nint hShareContext, ReadOnlySpan attribList) + parameters: + - id: id + type: System.UInt32 + - id: hShareContext + type: System.IntPtr + - id: attribList + type: System.ReadOnlySpan{System.Int32} + return: + type: System.IntPtr + content.vb: Public Shared Function CreateAssociatedContextAttribsAMD(id As UInteger, hShareContext As IntPtr, attribList As ReadOnlySpan(Of Integer)) As IntPtr + overload: OpenTK.Graphics.Wgl.Wgl.AMD.CreateAssociatedContextAttribsAMD* + nameWithType.vb: Wgl.AMD.CreateAssociatedContextAttribsAMD(UInteger, IntPtr, ReadOnlySpan(Of Integer)) + fullName.vb: OpenTK.Graphics.Wgl.Wgl.AMD.CreateAssociatedContextAttribsAMD(UInteger, System.IntPtr, System.ReadOnlySpan(Of Integer)) + name.vb: CreateAssociatedContextAttribsAMD(UInteger, IntPtr, ReadOnlySpan(Of Integer)) +- uid: OpenTK.Graphics.Wgl.Wgl.AMD.CreateAssociatedContextAttribsAMD(System.UInt32,System.IntPtr,System.Int32[]) + commentId: M:OpenTK.Graphics.Wgl.Wgl.AMD.CreateAssociatedContextAttribsAMD(System.UInt32,System.IntPtr,System.Int32[]) + id: CreateAssociatedContextAttribsAMD(System.UInt32,System.IntPtr,System.Int32[]) + parent: OpenTK.Graphics.Wgl.Wgl.AMD + langs: + - csharp + - vb + name: CreateAssociatedContextAttribsAMD(uint, nint, int[]) + nameWithType: Wgl.AMD.CreateAssociatedContextAttribsAMD(uint, nint, int[]) + fullName: OpenTK.Graphics.Wgl.Wgl.AMD.CreateAssociatedContextAttribsAMD(uint, nint, int[]) + type: Method + source: + id: CreateAssociatedContextAttribsAMD + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 278 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Wgl + summary: >- + [requires: WGL_AMD_gpu_association] + + [entry point: wglCreateAssociatedContextAttribsAMD] + +
+ example: [] + syntax: + content: public static nint CreateAssociatedContextAttribsAMD(uint id, nint hShareContext, int[] attribList) + parameters: + - id: id + type: System.UInt32 + - id: hShareContext + type: System.IntPtr + - id: attribList + type: System.Int32[] + return: + type: System.IntPtr + content.vb: Public Shared Function CreateAssociatedContextAttribsAMD(id As UInteger, hShareContext As IntPtr, attribList As Integer()) As IntPtr + overload: OpenTK.Graphics.Wgl.Wgl.AMD.CreateAssociatedContextAttribsAMD* + nameWithType.vb: Wgl.AMD.CreateAssociatedContextAttribsAMD(UInteger, IntPtr, Integer()) + fullName.vb: OpenTK.Graphics.Wgl.Wgl.AMD.CreateAssociatedContextAttribsAMD(UInteger, System.IntPtr, Integer()) + name.vb: CreateAssociatedContextAttribsAMD(UInteger, IntPtr, Integer()) - uid: OpenTK.Graphics.Wgl.Wgl.AMD.CreateAssociatedContextAttribsAMD(System.UInt32,System.IntPtr,System.Int32@) commentId: M:OpenTK.Graphics.Wgl.Wgl.AMD.CreateAssociatedContextAttribsAMD(System.UInt32,System.IntPtr,System.Int32@) id: CreateAssociatedContextAttribsAMD(System.UInt32,System.IntPtr,System.Int32@) @@ -419,13 +508,9 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.AMD.CreateAssociatedContextAttribsAMD(uint, nint, in int) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateAssociatedContextAttribsAMD - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 380 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 288 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -464,13 +549,9 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.AMD.DeleteAssociatedContextAMD(nint) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DeleteAssociatedContextAMD - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 390 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 298 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -487,25 +568,21 @@ items: nameWithType.vb: Wgl.AMD.DeleteAssociatedContextAMD(IntPtr) fullName.vb: OpenTK.Graphics.Wgl.Wgl.AMD.DeleteAssociatedContextAMD(System.IntPtr) name.vb: DeleteAssociatedContextAMD(IntPtr) -- uid: OpenTK.Graphics.Wgl.Wgl.AMD.GetGPUIDsAMD(System.Span{System.UInt32}) - commentId: M:OpenTK.Graphics.Wgl.Wgl.AMD.GetGPUIDsAMD(System.Span{System.UInt32}) - id: GetGPUIDsAMD(System.Span{System.UInt32}) +- uid: OpenTK.Graphics.Wgl.Wgl.AMD.GetGPUIDsAMD(System.UInt32,System.Span{System.UInt32}) + commentId: M:OpenTK.Graphics.Wgl.Wgl.AMD.GetGPUIDsAMD(System.UInt32,System.Span{System.UInt32}) + id: GetGPUIDsAMD(System.UInt32,System.Span{System.UInt32}) parent: OpenTK.Graphics.Wgl.Wgl.AMD langs: - csharp - vb - name: GetGPUIDsAMD(Span) - nameWithType: Wgl.AMD.GetGPUIDsAMD(Span) - fullName: OpenTK.Graphics.Wgl.Wgl.AMD.GetGPUIDsAMD(System.Span) + name: GetGPUIDsAMD(uint, Span) + nameWithType: Wgl.AMD.GetGPUIDsAMD(uint, Span) + fullName: OpenTK.Graphics.Wgl.Wgl.AMD.GetGPUIDsAMD(uint, System.Span) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetGPUIDsAMD - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 399 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 307 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -517,36 +594,34 @@ items:
example: [] syntax: - content: public static uint GetGPUIDsAMD(Span ids) + content: public static uint GetGPUIDsAMD(uint maxCount, Span ids) parameters: + - id: maxCount + type: System.UInt32 - id: ids type: System.Span{System.UInt32} return: type: System.UInt32 - content.vb: Public Shared Function GetGPUIDsAMD(ids As Span(Of UInteger)) As UInteger + content.vb: Public Shared Function GetGPUIDsAMD(maxCount As UInteger, ids As Span(Of UInteger)) As UInteger overload: OpenTK.Graphics.Wgl.Wgl.AMD.GetGPUIDsAMD* - nameWithType.vb: Wgl.AMD.GetGPUIDsAMD(Span(Of UInteger)) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.AMD.GetGPUIDsAMD(System.Span(Of UInteger)) - name.vb: GetGPUIDsAMD(Span(Of UInteger)) -- uid: OpenTK.Graphics.Wgl.Wgl.AMD.GetGPUIDsAMD(System.UInt32[]) - commentId: M:OpenTK.Graphics.Wgl.Wgl.AMD.GetGPUIDsAMD(System.UInt32[]) - id: GetGPUIDsAMD(System.UInt32[]) + nameWithType.vb: Wgl.AMD.GetGPUIDsAMD(UInteger, Span(Of UInteger)) + fullName.vb: OpenTK.Graphics.Wgl.Wgl.AMD.GetGPUIDsAMD(UInteger, System.Span(Of UInteger)) + name.vb: GetGPUIDsAMD(UInteger, Span(Of UInteger)) +- uid: OpenTK.Graphics.Wgl.Wgl.AMD.GetGPUIDsAMD(System.UInt32,System.UInt32[]) + commentId: M:OpenTK.Graphics.Wgl.Wgl.AMD.GetGPUIDsAMD(System.UInt32,System.UInt32[]) + id: GetGPUIDsAMD(System.UInt32,System.UInt32[]) parent: OpenTK.Graphics.Wgl.Wgl.AMD langs: - csharp - vb - name: GetGPUIDsAMD(uint[]) - nameWithType: Wgl.AMD.GetGPUIDsAMD(uint[]) - fullName: OpenTK.Graphics.Wgl.Wgl.AMD.GetGPUIDsAMD(uint[]) + name: GetGPUIDsAMD(uint, uint[]) + nameWithType: Wgl.AMD.GetGPUIDsAMD(uint, uint[]) + fullName: OpenTK.Graphics.Wgl.Wgl.AMD.GetGPUIDsAMD(uint, uint[]) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetGPUIDsAMD - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 410 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 317 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -558,17 +633,19 @@ items:
example: [] syntax: - content: public static uint GetGPUIDsAMD(uint[] ids) + content: public static uint GetGPUIDsAMD(uint maxCount, uint[] ids) parameters: + - id: maxCount + type: System.UInt32 - id: ids type: System.UInt32[] return: type: System.UInt32 - content.vb: Public Shared Function GetGPUIDsAMD(ids As UInteger()) As UInteger + content.vb: Public Shared Function GetGPUIDsAMD(maxCount As UInteger, ids As UInteger()) As UInteger overload: OpenTK.Graphics.Wgl.Wgl.AMD.GetGPUIDsAMD* - nameWithType.vb: Wgl.AMD.GetGPUIDsAMD(UInteger()) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.AMD.GetGPUIDsAMD(UInteger()) - name.vb: GetGPUIDsAMD(UInteger()) + nameWithType.vb: Wgl.AMD.GetGPUIDsAMD(UInteger, UInteger()) + fullName.vb: OpenTK.Graphics.Wgl.Wgl.AMD.GetGPUIDsAMD(UInteger, UInteger()) + name.vb: GetGPUIDsAMD(UInteger, UInteger()) - uid: OpenTK.Graphics.Wgl.Wgl.AMD.GetGPUIDsAMD(System.UInt32,System.UInt32@) commentId: M:OpenTK.Graphics.Wgl.Wgl.AMD.GetGPUIDsAMD(System.UInt32,System.UInt32@) id: GetGPUIDsAMD(System.UInt32,System.UInt32@) @@ -581,13 +658,9 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.AMD.GetGPUIDsAMD(uint, ref uint) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetGPUIDsAMD - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 421 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 327 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -624,13 +697,9 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.AMD.GetGPUInfoAMD(uint, OpenTK.Graphics.Wgl.GPUPropertyAMD, OpenTK.Graphics.OpenGL.ScalarType, uint, nint) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetGPUInfoAMD - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 431 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 337 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -673,13 +742,9 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.AMD.GetGPUInfoAMD(uint, OpenTK.Graphics.Wgl.GPUPropertyAMD, OpenTK.Graphics.OpenGL.ScalarType, uint, System.Span) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetGPUInfoAMD - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 439 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 345 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -724,13 +789,9 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.AMD.GetGPUInfoAMD(uint, OpenTK.Graphics.Wgl.GPUPropertyAMD, OpenTK.Graphics.OpenGL.ScalarType, uint, T1[]) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetGPUInfoAMD - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 450 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 356 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -775,13 +836,9 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.AMD.GetGPUInfoAMD(uint, OpenTK.Graphics.Wgl.GPUPropertyAMD, OpenTK.Graphics.OpenGL.ScalarType, uint, ref T1) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetGPUInfoAMD - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 461 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 367 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -826,13 +883,9 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.AMD.MakeAssociatedContextCurrentAMD(nint) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MakeAssociatedContextCurrentAMD - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 472 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 378 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -1325,6 +1378,92 @@ references: name: MakeAssociatedContextCurrentAMD_ nameWithType: Wgl.AMD.MakeAssociatedContextCurrentAMD_ fullName: OpenTK.Graphics.Wgl.Wgl.AMD.MakeAssociatedContextCurrentAMD_ +- uid: System.ReadOnlySpan{System.Int32} + commentId: T:System.ReadOnlySpan{System.Int32} + parent: System + definition: System.ReadOnlySpan`1 + href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 + name: ReadOnlySpan + nameWithType: ReadOnlySpan + fullName: System.ReadOnlySpan + nameWithType.vb: ReadOnlySpan(Of Integer) + fullName.vb: System.ReadOnlySpan(Of Integer) + name.vb: ReadOnlySpan(Of Integer) + spec.csharp: + - uid: System.ReadOnlySpan`1 + name: ReadOnlySpan + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 + - name: < + - uid: System.Int32 + name: int + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: '>' + spec.vb: + - uid: System.ReadOnlySpan`1 + name: ReadOnlySpan + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 + - name: ( + - name: Of + - name: " " + - uid: System.Int32 + name: Integer + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ) +- uid: System.ReadOnlySpan`1 + commentId: T:System.ReadOnlySpan`1 + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 + name: ReadOnlySpan + nameWithType: ReadOnlySpan + fullName: System.ReadOnlySpan + nameWithType.vb: ReadOnlySpan(Of T) + fullName.vb: System.ReadOnlySpan(Of T) + name.vb: ReadOnlySpan(Of T) + spec.csharp: + - uid: System.ReadOnlySpan`1 + name: ReadOnlySpan + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 + - name: < + - name: T + - name: '>' + spec.vb: + - uid: System.ReadOnlySpan`1 + name: ReadOnlySpan + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 + - name: ( + - name: Of + - name: " " + - name: T + - name: ) +- uid: System.Int32[] + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + name: int[] + nameWithType: int[] + fullName: int[] + nameWithType.vb: Integer() + fullName.vb: Integer() + name.vb: Integer() + spec.csharp: + - uid: System.Int32 + name: int + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: '[' + - name: ']' + spec.vb: + - uid: System.Int32 + name: Integer + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ( + - name: ) - uid: OpenTK.Graphics.Wgl.Wgl.AMD.DeleteAssociatedContextAMD* commentId: Overload:OpenTK.Graphics.Wgl.Wgl.AMD.DeleteAssociatedContextAMD href: OpenTK.Graphics.Wgl.Wgl.AMD.html#OpenTK_Graphics_Wgl_Wgl_AMD_DeleteAssociatedContextAMD_System_IntPtr_ diff --git a/api/OpenTK.Graphics.Wgl.Wgl.ARB.yml b/api/OpenTK.Graphics.Wgl.Wgl.ARB.yml index 892d9cc0..4ff1127b 100644 --- a/api/OpenTK.Graphics.Wgl.Wgl.ARB.yml +++ b/api/OpenTK.Graphics.Wgl.Wgl.ARB.yml @@ -9,15 +9,17 @@ items: - OpenTK.Graphics.Wgl.Wgl.ARB.BindTexImageARB_(System.IntPtr,OpenTK.Graphics.Wgl.ColorBuffer) - OpenTK.Graphics.Wgl.Wgl.ARB.ChoosePixelFormatARB(System.IntPtr,OpenTK.Graphics.Wgl.PixelFormatAttribute*,System.Single*,System.UInt32,System.Int32*,System.UInt32*) - OpenTK.Graphics.Wgl.Wgl.ARB.ChoosePixelFormatARB(System.IntPtr,OpenTK.Graphics.Wgl.PixelFormatAttribute@,System.Single@,System.UInt32,System.Int32@,System.UInt32@) - - OpenTK.Graphics.Wgl.Wgl.ARB.ChoosePixelFormatARB(System.IntPtr,OpenTK.Graphics.Wgl.PixelFormatAttribute[],System.Single[],System.Int32[],System.UInt32[]) - - OpenTK.Graphics.Wgl.Wgl.ARB.ChoosePixelFormatARB(System.IntPtr,System.ReadOnlySpan{OpenTK.Graphics.Wgl.PixelFormatAttribute},System.ReadOnlySpan{System.Single},System.Span{System.Int32},System.Span{System.UInt32}) - - OpenTK.Graphics.Wgl.Wgl.ARB.CreateBufferRegionARB(System.IntPtr,System.Int32,OpenTK.Graphics.Wgl.WGLColorBufferMask) + - OpenTK.Graphics.Wgl.Wgl.ARB.ChoosePixelFormatARB(System.IntPtr,OpenTK.Graphics.Wgl.PixelFormatAttribute[],System.Single[],System.UInt32,System.Int32[],System.UInt32@) + - OpenTK.Graphics.Wgl.Wgl.ARB.ChoosePixelFormatARB(System.IntPtr,System.ReadOnlySpan{OpenTK.Graphics.Wgl.PixelFormatAttribute},System.ReadOnlySpan{System.Single},System.UInt32,System.Span{System.Int32},System.UInt32@) + - OpenTK.Graphics.Wgl.Wgl.ARB.CreateBufferRegionARB(System.IntPtr,System.Int32,OpenTK.Graphics.Wgl.ColorBufferMask) - OpenTK.Graphics.Wgl.Wgl.ARB.CreateContextAttribsARB(System.IntPtr,System.IntPtr,OpenTK.Graphics.Wgl.ContextAttribs*) - OpenTK.Graphics.Wgl.Wgl.ARB.CreateContextAttribsARB(System.IntPtr,System.IntPtr,OpenTK.Graphics.Wgl.ContextAttribs@) - OpenTK.Graphics.Wgl.Wgl.ARB.CreateContextAttribsARB(System.IntPtr,System.IntPtr,OpenTK.Graphics.Wgl.ContextAttribs[]) - OpenTK.Graphics.Wgl.Wgl.ARB.CreateContextAttribsARB(System.IntPtr,System.IntPtr,System.ReadOnlySpan{OpenTK.Graphics.Wgl.ContextAttribs}) - OpenTK.Graphics.Wgl.Wgl.ARB.CreatePbufferARB(System.IntPtr,System.Int32,System.Int32,System.Int32,System.Int32*) - OpenTK.Graphics.Wgl.Wgl.ARB.CreatePbufferARB(System.IntPtr,System.Int32,System.Int32,System.Int32,System.Int32@) + - OpenTK.Graphics.Wgl.Wgl.ARB.CreatePbufferARB(System.IntPtr,System.Int32,System.Int32,System.Int32,System.Int32[]) + - OpenTK.Graphics.Wgl.Wgl.ARB.CreatePbufferARB(System.IntPtr,System.Int32,System.Int32,System.Int32,System.ReadOnlySpan{System.Int32}) - OpenTK.Graphics.Wgl.Wgl.ARB.DeleteBufferRegionARB(System.IntPtr) - OpenTK.Graphics.Wgl.Wgl.ARB.DestroyPbufferARB(System.IntPtr) - OpenTK.Graphics.Wgl.Wgl.ARB.DestroyPbufferARB_(System.IntPtr) @@ -37,8 +39,6 @@ items: - OpenTK.Graphics.Wgl.Wgl.ARB.MakeContextCurrentARB_(System.IntPtr,System.IntPtr,System.IntPtr) - OpenTK.Graphics.Wgl.Wgl.ARB.QueryPbufferARB(System.IntPtr,OpenTK.Graphics.Wgl.PBufferAttribute,System.Int32*) - OpenTK.Graphics.Wgl.Wgl.ARB.QueryPbufferARB(System.IntPtr,OpenTK.Graphics.Wgl.PBufferAttribute,System.Int32@) - - OpenTK.Graphics.Wgl.Wgl.ARB.QueryPbufferARB(System.IntPtr,OpenTK.Graphics.Wgl.PBufferAttribute,System.Int32[]) - - OpenTK.Graphics.Wgl.Wgl.ARB.QueryPbufferARB(System.IntPtr,OpenTK.Graphics.Wgl.PBufferAttribute,System.Span{System.Int32}) - OpenTK.Graphics.Wgl.Wgl.ARB.ReleasePbufferDCARB(System.IntPtr,System.IntPtr) - OpenTK.Graphics.Wgl.Wgl.ARB.ReleaseTexImageARB(System.IntPtr,OpenTK.Graphics.Wgl.ColorBuffer) - OpenTK.Graphics.Wgl.Wgl.ARB.ReleaseTexImageARB_(System.IntPtr,OpenTK.Graphics.Wgl.ColorBuffer) @@ -48,6 +48,8 @@ items: - OpenTK.Graphics.Wgl.Wgl.ARB.SaveBufferRegionARB_(System.IntPtr,System.Int32,System.Int32,System.Int32,System.Int32) - OpenTK.Graphics.Wgl.Wgl.ARB.SetPbufferAttribARB(System.IntPtr,System.Int32*) - OpenTK.Graphics.Wgl.Wgl.ARB.SetPbufferAttribARB(System.IntPtr,System.Int32@) + - OpenTK.Graphics.Wgl.Wgl.ARB.SetPbufferAttribARB(System.IntPtr,System.Int32[]) + - OpenTK.Graphics.Wgl.Wgl.ARB.SetPbufferAttribARB(System.IntPtr,System.ReadOnlySpan{System.Int32}) langs: - csharp - vb @@ -56,13 +58,9 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.ARB type: Class source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ARB - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 481 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 387 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -93,17 +91,18 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.ARB.BindTexImageARB_(nint, OpenTK.Graphics.Wgl.ColorBuffer) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: BindTexImageARB_ - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs startLine: 131 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl - summary: '[requires: WGL_ARB_render_texture] [entry point: wglBindTexImageARB]
' + summary: >- + [requires: WGL_ARB_render_texture] + + [entry point: wglBindTexImageARB] + +
example: [] syntax: content: public static int BindTexImageARB_(nint hPbuffer, ColorBuffer iBuffer) @@ -131,17 +130,18 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.ARB.ChoosePixelFormatARB(nint, OpenTK.Graphics.Wgl.PixelFormatAttribute*, float*, uint, int*, uint*) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ChoosePixelFormatARB - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs startLine: 134 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl - summary: '[requires: WGL_ARB_pixel_format] [entry point: wglChoosePixelFormatARB]
' + summary: >- + [requires: WGL_ARB_pixel_format] + + [entry point: wglChoosePixelFormatARB] + +
example: [] syntax: content: public static int ChoosePixelFormatARB(nint hdc, PixelFormatAttribute* piAttribIList, float* pfAttribFList, uint nMaxFormats, int* piFormats, uint* nNumFormats) @@ -165,46 +165,47 @@ items: nameWithType.vb: Wgl.ARB.ChoosePixelFormatARB(IntPtr, PixelFormatAttribute*, Single*, UInteger, Integer*, UInteger*) fullName.vb: OpenTK.Graphics.Wgl.Wgl.ARB.ChoosePixelFormatARB(System.IntPtr, OpenTK.Graphics.Wgl.PixelFormatAttribute*, Single*, UInteger, Integer*, UInteger*) name.vb: ChoosePixelFormatARB(IntPtr, PixelFormatAttribute*, Single*, UInteger, Integer*, UInteger*) -- uid: OpenTK.Graphics.Wgl.Wgl.ARB.CreateBufferRegionARB(System.IntPtr,System.Int32,OpenTK.Graphics.Wgl.WGLColorBufferMask) - commentId: M:OpenTK.Graphics.Wgl.Wgl.ARB.CreateBufferRegionARB(System.IntPtr,System.Int32,OpenTK.Graphics.Wgl.WGLColorBufferMask) - id: CreateBufferRegionARB(System.IntPtr,System.Int32,OpenTK.Graphics.Wgl.WGLColorBufferMask) +- uid: OpenTK.Graphics.Wgl.Wgl.ARB.CreateBufferRegionARB(System.IntPtr,System.Int32,OpenTK.Graphics.Wgl.ColorBufferMask) + commentId: M:OpenTK.Graphics.Wgl.Wgl.ARB.CreateBufferRegionARB(System.IntPtr,System.Int32,OpenTK.Graphics.Wgl.ColorBufferMask) + id: CreateBufferRegionARB(System.IntPtr,System.Int32,OpenTK.Graphics.Wgl.ColorBufferMask) parent: OpenTK.Graphics.Wgl.Wgl.ARB langs: - csharp - vb - name: CreateBufferRegionARB(nint, int, WGLColorBufferMask) - nameWithType: Wgl.ARB.CreateBufferRegionARB(nint, int, WGLColorBufferMask) - fullName: OpenTK.Graphics.Wgl.Wgl.ARB.CreateBufferRegionARB(nint, int, OpenTK.Graphics.Wgl.WGLColorBufferMask) + name: CreateBufferRegionARB(nint, int, ColorBufferMask) + nameWithType: Wgl.ARB.CreateBufferRegionARB(nint, int, ColorBufferMask) + fullName: OpenTK.Graphics.Wgl.Wgl.ARB.CreateBufferRegionARB(nint, int, OpenTK.Graphics.Wgl.ColorBufferMask) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateBufferRegionARB - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs startLine: 137 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl - summary: '[requires: WGL_ARB_buffer_region] [entry point: wglCreateBufferRegionARB]
' + summary: >- + [requires: WGL_ARB_buffer_region] + + [entry point: wglCreateBufferRegionARB] + +
example: [] syntax: - content: public static nint CreateBufferRegionARB(nint hDC, int iLayerPlane, WGLColorBufferMask uType) + content: public static nint CreateBufferRegionARB(nint hDC, int iLayerPlane, ColorBufferMask uType) parameters: - id: hDC type: System.IntPtr - id: iLayerPlane type: System.Int32 - id: uType - type: OpenTK.Graphics.Wgl.WGLColorBufferMask + type: OpenTK.Graphics.Wgl.ColorBufferMask return: type: System.IntPtr - content.vb: Public Shared Function CreateBufferRegionARB(hDC As IntPtr, iLayerPlane As Integer, uType As WGLColorBufferMask) As IntPtr + content.vb: Public Shared Function CreateBufferRegionARB(hDC As IntPtr, iLayerPlane As Integer, uType As ColorBufferMask) As IntPtr overload: OpenTK.Graphics.Wgl.Wgl.ARB.CreateBufferRegionARB* - nameWithType.vb: Wgl.ARB.CreateBufferRegionARB(IntPtr, Integer, WGLColorBufferMask) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.ARB.CreateBufferRegionARB(System.IntPtr, Integer, OpenTK.Graphics.Wgl.WGLColorBufferMask) - name.vb: CreateBufferRegionARB(IntPtr, Integer, WGLColorBufferMask) + nameWithType.vb: Wgl.ARB.CreateBufferRegionARB(IntPtr, Integer, ColorBufferMask) + fullName.vb: OpenTK.Graphics.Wgl.Wgl.ARB.CreateBufferRegionARB(System.IntPtr, Integer, OpenTK.Graphics.Wgl.ColorBufferMask) + name.vb: CreateBufferRegionARB(IntPtr, Integer, ColorBufferMask) - uid: OpenTK.Graphics.Wgl.Wgl.ARB.CreateContextAttribsARB(System.IntPtr,System.IntPtr,OpenTK.Graphics.Wgl.ContextAttribs*) commentId: M:OpenTK.Graphics.Wgl.Wgl.ARB.CreateContextAttribsARB(System.IntPtr,System.IntPtr,OpenTK.Graphics.Wgl.ContextAttribs*) id: CreateContextAttribsARB(System.IntPtr,System.IntPtr,OpenTK.Graphics.Wgl.ContextAttribs*) @@ -217,17 +218,18 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.ARB.CreateContextAttribsARB(nint, nint, OpenTK.Graphics.Wgl.ContextAttribs*) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateContextAttribsARB - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs startLine: 140 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl - summary: '[requires: WGL_ARB_create_context] [entry point: wglCreateContextAttribsARB]
' + summary: >- + [requires: WGL_ARB_create_context] + + [entry point: wglCreateContextAttribsARB] + +
example: [] syntax: content: public static nint CreateContextAttribsARB(nint hDC, nint hShareContext, ContextAttribs* attribList) @@ -257,17 +259,18 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.ARB.CreatePbufferARB(nint, int, int, int, int*) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreatePbufferARB - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs startLine: 143 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl - summary: '[requires: WGL_ARB_pbuffer] [entry point: wglCreatePbufferARB]
' + summary: >- + [requires: WGL_ARB_pbuffer] + + [entry point: wglCreatePbufferARB] + +
example: [] syntax: content: public static nint CreatePbufferARB(nint hDC, int iPixelFormat, int iWidth, int iHeight, int* piAttribList) @@ -301,17 +304,18 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.ARB.DeleteBufferRegionARB(nint) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DeleteBufferRegionARB - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs startLine: 146 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl - summary: '[requires: WGL_ARB_buffer_region] [entry point: wglDeleteBufferRegionARB]
' + summary: >- + [requires: WGL_ARB_buffer_region] + + [entry point: wglDeleteBufferRegionARB] + +
example: [] syntax: content: public static void DeleteBufferRegionARB(nint hRegion) @@ -335,17 +339,18 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.ARB.DestroyPbufferARB_(nint) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DestroyPbufferARB_ - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs startLine: 149 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl - summary: '[requires: WGL_ARB_pbuffer] [entry point: wglDestroyPbufferARB]
' + summary: >- + [requires: WGL_ARB_pbuffer] + + [entry point: wglDestroyPbufferARB] + +
example: [] syntax: content: public static int DestroyPbufferARB_(nint hPbuffer) @@ -371,17 +376,18 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.ARB.GetCurrentReadDCARB() type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetCurrentReadDCARB - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs startLine: 152 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl - summary: '[requires: WGL_ARB_make_current_read] [entry point: wglGetCurrentReadDCARB]
' + summary: >- + [requires: WGL_ARB_make_current_read] + + [entry point: wglGetCurrentReadDCARB] + +
example: [] syntax: content: public static nint GetCurrentReadDCARB() @@ -401,17 +407,18 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.ARB.GetExtensionsStringARB_(nint) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetExtensionsStringARB_ - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs startLine: 155 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl - summary: '[requires: WGL_ARB_extensions_string] [entry point: wglGetExtensionsStringARB]
' + summary: >- + [requires: WGL_ARB_extensions_string] + + [entry point: wglGetExtensionsStringARB] + +
example: [] syntax: content: public static byte* GetExtensionsStringARB_(nint hdc) @@ -437,17 +444,18 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.ARB.GetPbufferDCARB(nint) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetPbufferDCARB - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs startLine: 158 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl - summary: '[requires: WGL_ARB_pbuffer] [entry point: wglGetPbufferDCARB]
' + summary: >- + [requires: WGL_ARB_pbuffer] + + [entry point: wglGetPbufferDCARB] + +
example: [] syntax: content: public static nint GetPbufferDCARB(nint hPbuffer) @@ -473,17 +481,18 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.ARB.GetPixelFormatAttribfvARB(nint, int, int, uint, OpenTK.Graphics.Wgl.PixelFormatAttribute*, float*) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetPixelFormatAttribfvARB - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs startLine: 161 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl - summary: '[requires: WGL_ARB_pixel_format] [entry point: wglGetPixelFormatAttribfvARB]
' + summary: >- + [requires: WGL_ARB_pixel_format] + + [entry point: wglGetPixelFormatAttribfvARB] + +
example: [] syntax: content: public static int GetPixelFormatAttribfvARB(nint hdc, int iPixelFormat, int iLayerPlane, uint nAttributes, PixelFormatAttribute* piAttributes, float* pfValues) @@ -519,17 +528,18 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.ARB.GetPixelFormatAttribivARB(nint, int, int, uint, OpenTK.Graphics.Wgl.PixelFormatAttribute*, int*) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetPixelFormatAttribivARB - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs startLine: 164 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl - summary: '[requires: WGL_ARB_pixel_format] [entry point: wglGetPixelFormatAttribivARB]
' + summary: >- + [requires: WGL_ARB_pixel_format] + + [entry point: wglGetPixelFormatAttribivARB] + +
example: [] syntax: content: public static int GetPixelFormatAttribivARB(nint hdc, int iPixelFormat, int iLayerPlane, uint nAttributes, PixelFormatAttribute* piAttributes, int* piValues) @@ -565,17 +575,18 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.ARB.MakeContextCurrentARB_(nint, nint, nint) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MakeContextCurrentARB_ - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs startLine: 167 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl - summary: '[requires: WGL_ARB_make_current_read] [entry point: wglMakeContextCurrentARB]
' + summary: >- + [requires: WGL_ARB_make_current_read] + + [entry point: wglMakeContextCurrentARB] + +
example: [] syntax: content: public static int MakeContextCurrentARB_(nint hDrawDC, nint hReadDC, nint hglrc) @@ -605,17 +616,18 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.ARB.QueryPbufferARB(nint, OpenTK.Graphics.Wgl.PBufferAttribute, int*) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: QueryPbufferARB - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs startLine: 170 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl - summary: '[requires: WGL_ARB_pbuffer] [entry point: wglQueryPbufferARB]
' + summary: >- + [requires: WGL_ARB_pbuffer] + + [entry point: wglQueryPbufferARB] + +
example: [] syntax: content: public static int QueryPbufferARB(nint hPbuffer, PBufferAttribute iAttribute, int* piValue) @@ -645,17 +657,18 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.ARB.ReleasePbufferDCARB(nint, nint) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ReleasePbufferDCARB - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs startLine: 173 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl - summary: '[requires: WGL_ARB_pbuffer] [entry point: wglReleasePbufferDCARB]
' + summary: >- + [requires: WGL_ARB_pbuffer] + + [entry point: wglReleasePbufferDCARB] + +
example: [] syntax: content: public static int ReleasePbufferDCARB(nint hPbuffer, nint hDC) @@ -683,17 +696,18 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.ARB.ReleaseTexImageARB_(nint, OpenTK.Graphics.Wgl.ColorBuffer) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ReleaseTexImageARB_ - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs startLine: 176 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl - summary: '[requires: WGL_ARB_render_texture] [entry point: wglReleaseTexImageARB]
' + summary: >- + [requires: WGL_ARB_render_texture] + + [entry point: wglReleaseTexImageARB] + +
example: [] syntax: content: public static int ReleaseTexImageARB_(nint hPbuffer, ColorBuffer iBuffer) @@ -721,17 +735,18 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.ARB.RestoreBufferRegionARB_(nint, int, int, int, int, int, int) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: RestoreBufferRegionARB_ - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs startLine: 179 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl - summary: '[requires: WGL_ARB_buffer_region] [entry point: wglRestoreBufferRegionARB]
' + summary: >- + [requires: WGL_ARB_buffer_region] + + [entry point: wglRestoreBufferRegionARB] + +
example: [] syntax: content: public static int RestoreBufferRegionARB_(nint hRegion, int x, int y, int width, int height, int xSrc, int ySrc) @@ -769,17 +784,18 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.ARB.SaveBufferRegionARB_(nint, int, int, int, int) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SaveBufferRegionARB_ - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs startLine: 182 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl - summary: '[requires: WGL_ARB_buffer_region] [entry point: wglSaveBufferRegionARB]
' + summary: >- + [requires: WGL_ARB_buffer_region] + + [entry point: wglSaveBufferRegionARB] + +
example: [] syntax: content: public static int SaveBufferRegionARB_(nint hRegion, int x, int y, int width, int height) @@ -813,17 +829,18 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.ARB.SetPbufferAttribARB(nint, int*) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetPbufferAttribARB - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs startLine: 185 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl - summary: '[requires: WGL_ARB_render_texture] [entry point: wglSetPbufferAttribARB]
' + summary: >- + [requires: WGL_ARB_render_texture] + + [entry point: wglSetPbufferAttribARB] + +
example: [] syntax: content: public static int SetPbufferAttribARB(nint hPbuffer, int* piAttribList) @@ -851,13 +868,9 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.ARB.BindTexImageARB(nint, OpenTK.Graphics.Wgl.ColorBuffer) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: BindTexImageARB - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 484 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 390 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -876,25 +889,21 @@ items: nameWithType.vb: Wgl.ARB.BindTexImageARB(IntPtr, ColorBuffer) fullName.vb: OpenTK.Graphics.Wgl.Wgl.ARB.BindTexImageARB(System.IntPtr, OpenTK.Graphics.Wgl.ColorBuffer) name.vb: BindTexImageARB(IntPtr, ColorBuffer) -- uid: OpenTK.Graphics.Wgl.Wgl.ARB.ChoosePixelFormatARB(System.IntPtr,System.ReadOnlySpan{OpenTK.Graphics.Wgl.PixelFormatAttribute},System.ReadOnlySpan{System.Single},System.Span{System.Int32},System.Span{System.UInt32}) - commentId: M:OpenTK.Graphics.Wgl.Wgl.ARB.ChoosePixelFormatARB(System.IntPtr,System.ReadOnlySpan{OpenTK.Graphics.Wgl.PixelFormatAttribute},System.ReadOnlySpan{System.Single},System.Span{System.Int32},System.Span{System.UInt32}) - id: ChoosePixelFormatARB(System.IntPtr,System.ReadOnlySpan{OpenTK.Graphics.Wgl.PixelFormatAttribute},System.ReadOnlySpan{System.Single},System.Span{System.Int32},System.Span{System.UInt32}) +- uid: OpenTK.Graphics.Wgl.Wgl.ARB.ChoosePixelFormatARB(System.IntPtr,System.ReadOnlySpan{OpenTK.Graphics.Wgl.PixelFormatAttribute},System.ReadOnlySpan{System.Single},System.UInt32,System.Span{System.Int32},System.UInt32@) + commentId: M:OpenTK.Graphics.Wgl.Wgl.ARB.ChoosePixelFormatARB(System.IntPtr,System.ReadOnlySpan{OpenTK.Graphics.Wgl.PixelFormatAttribute},System.ReadOnlySpan{System.Single},System.UInt32,System.Span{System.Int32},System.UInt32@) + id: ChoosePixelFormatARB(System.IntPtr,System.ReadOnlySpan{OpenTK.Graphics.Wgl.PixelFormatAttribute},System.ReadOnlySpan{System.Single},System.UInt32,System.Span{System.Int32},System.UInt32@) parent: OpenTK.Graphics.Wgl.Wgl.ARB langs: - csharp - vb - name: ChoosePixelFormatARB(nint, ReadOnlySpan, ReadOnlySpan, Span, Span) - nameWithType: Wgl.ARB.ChoosePixelFormatARB(nint, ReadOnlySpan, ReadOnlySpan, Span, Span) - fullName: OpenTK.Graphics.Wgl.Wgl.ARB.ChoosePixelFormatARB(nint, System.ReadOnlySpan, System.ReadOnlySpan, System.Span, System.Span) + name: ChoosePixelFormatARB(nint, ReadOnlySpan, ReadOnlySpan, uint, Span, out uint) + nameWithType: Wgl.ARB.ChoosePixelFormatARB(nint, ReadOnlySpan, ReadOnlySpan, uint, Span, out uint) + fullName: OpenTK.Graphics.Wgl.Wgl.ARB.ChoosePixelFormatARB(nint, System.ReadOnlySpan, System.ReadOnlySpan, uint, System.Span, out uint) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ChoosePixelFormatARB - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 493 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 399 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -906,7 +915,7 @@ items:
example: [] syntax: - content: public static bool ChoosePixelFormatARB(nint hdc, ReadOnlySpan piAttribIList, ReadOnlySpan pfAttribFList, Span piFormats, Span nNumFormats) + content: public static bool ChoosePixelFormatARB(nint hdc, ReadOnlySpan piAttribIList, ReadOnlySpan pfAttribFList, uint nMaxFormats, Span piFormats, out uint nNumFormats) parameters: - id: hdc type: System.IntPtr @@ -914,36 +923,34 @@ items: type: System.ReadOnlySpan{OpenTK.Graphics.Wgl.PixelFormatAttribute} - id: pfAttribFList type: System.ReadOnlySpan{System.Single} + - id: nMaxFormats + type: System.UInt32 - id: piFormats type: System.Span{System.Int32} - id: nNumFormats - type: System.Span{System.UInt32} + type: System.UInt32 return: type: System.Boolean - content.vb: Public Shared Function ChoosePixelFormatARB(hdc As IntPtr, piAttribIList As ReadOnlySpan(Of PixelFormatAttribute), pfAttribFList As ReadOnlySpan(Of Single), piFormats As Span(Of Integer), nNumFormats As Span(Of UInteger)) As Boolean + content.vb: Public Shared Function ChoosePixelFormatARB(hdc As IntPtr, piAttribIList As ReadOnlySpan(Of PixelFormatAttribute), pfAttribFList As ReadOnlySpan(Of Single), nMaxFormats As UInteger, piFormats As Span(Of Integer), nNumFormats As UInteger) As Boolean overload: OpenTK.Graphics.Wgl.Wgl.ARB.ChoosePixelFormatARB* - nameWithType.vb: Wgl.ARB.ChoosePixelFormatARB(IntPtr, ReadOnlySpan(Of PixelFormatAttribute), ReadOnlySpan(Of Single), Span(Of Integer), Span(Of UInteger)) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.ARB.ChoosePixelFormatARB(System.IntPtr, System.ReadOnlySpan(Of OpenTK.Graphics.Wgl.PixelFormatAttribute), System.ReadOnlySpan(Of Single), System.Span(Of Integer), System.Span(Of UInteger)) - name.vb: ChoosePixelFormatARB(IntPtr, ReadOnlySpan(Of PixelFormatAttribute), ReadOnlySpan(Of Single), Span(Of Integer), Span(Of UInteger)) -- uid: OpenTK.Graphics.Wgl.Wgl.ARB.ChoosePixelFormatARB(System.IntPtr,OpenTK.Graphics.Wgl.PixelFormatAttribute[],System.Single[],System.Int32[],System.UInt32[]) - commentId: M:OpenTK.Graphics.Wgl.Wgl.ARB.ChoosePixelFormatARB(System.IntPtr,OpenTK.Graphics.Wgl.PixelFormatAttribute[],System.Single[],System.Int32[],System.UInt32[]) - id: ChoosePixelFormatARB(System.IntPtr,OpenTK.Graphics.Wgl.PixelFormatAttribute[],System.Single[],System.Int32[],System.UInt32[]) + nameWithType.vb: Wgl.ARB.ChoosePixelFormatARB(IntPtr, ReadOnlySpan(Of PixelFormatAttribute), ReadOnlySpan(Of Single), UInteger, Span(Of Integer), UInteger) + fullName.vb: OpenTK.Graphics.Wgl.Wgl.ARB.ChoosePixelFormatARB(System.IntPtr, System.ReadOnlySpan(Of OpenTK.Graphics.Wgl.PixelFormatAttribute), System.ReadOnlySpan(Of Single), UInteger, System.Span(Of Integer), UInteger) + name.vb: ChoosePixelFormatARB(IntPtr, ReadOnlySpan(Of PixelFormatAttribute), ReadOnlySpan(Of Single), UInteger, Span(Of Integer), UInteger) +- uid: OpenTK.Graphics.Wgl.Wgl.ARB.ChoosePixelFormatARB(System.IntPtr,OpenTK.Graphics.Wgl.PixelFormatAttribute[],System.Single[],System.UInt32,System.Int32[],System.UInt32@) + commentId: M:OpenTK.Graphics.Wgl.Wgl.ARB.ChoosePixelFormatARB(System.IntPtr,OpenTK.Graphics.Wgl.PixelFormatAttribute[],System.Single[],System.UInt32,System.Int32[],System.UInt32@) + id: ChoosePixelFormatARB(System.IntPtr,OpenTK.Graphics.Wgl.PixelFormatAttribute[],System.Single[],System.UInt32,System.Int32[],System.UInt32@) parent: OpenTK.Graphics.Wgl.Wgl.ARB langs: - csharp - vb - name: ChoosePixelFormatARB(nint, PixelFormatAttribute[], float[], int[], uint[]) - nameWithType: Wgl.ARB.ChoosePixelFormatARB(nint, PixelFormatAttribute[], float[], int[], uint[]) - fullName: OpenTK.Graphics.Wgl.Wgl.ARB.ChoosePixelFormatARB(nint, OpenTK.Graphics.Wgl.PixelFormatAttribute[], float[], int[], uint[]) + name: ChoosePixelFormatARB(nint, PixelFormatAttribute[], float[], uint, int[], out uint) + nameWithType: Wgl.ARB.ChoosePixelFormatARB(nint, PixelFormatAttribute[], float[], uint, int[], out uint) + fullName: OpenTK.Graphics.Wgl.Wgl.ARB.ChoosePixelFormatARB(nint, OpenTK.Graphics.Wgl.PixelFormatAttribute[], float[], uint, int[], out uint) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ChoosePixelFormatARB - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 515 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 420 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -955,7 +962,7 @@ items:
example: [] syntax: - content: public static bool ChoosePixelFormatARB(nint hdc, PixelFormatAttribute[] piAttribIList, float[] pfAttribFList, int[] piFormats, uint[] nNumFormats) + content: public static bool ChoosePixelFormatARB(nint hdc, PixelFormatAttribute[] piAttribIList, float[] pfAttribFList, uint nMaxFormats, int[] piFormats, out uint nNumFormats) parameters: - id: hdc type: System.IntPtr @@ -963,17 +970,19 @@ items: type: OpenTK.Graphics.Wgl.PixelFormatAttribute[] - id: pfAttribFList type: System.Single[] + - id: nMaxFormats + type: System.UInt32 - id: piFormats type: System.Int32[] - id: nNumFormats - type: System.UInt32[] + type: System.UInt32 return: type: System.Boolean - content.vb: Public Shared Function ChoosePixelFormatARB(hdc As IntPtr, piAttribIList As PixelFormatAttribute(), pfAttribFList As Single(), piFormats As Integer(), nNumFormats As UInteger()) As Boolean + content.vb: Public Shared Function ChoosePixelFormatARB(hdc As IntPtr, piAttribIList As PixelFormatAttribute(), pfAttribFList As Single(), nMaxFormats As UInteger, piFormats As Integer(), nNumFormats As UInteger) As Boolean overload: OpenTK.Graphics.Wgl.Wgl.ARB.ChoosePixelFormatARB* - nameWithType.vb: Wgl.ARB.ChoosePixelFormatARB(IntPtr, PixelFormatAttribute(), Single(), Integer(), UInteger()) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.ARB.ChoosePixelFormatARB(System.IntPtr, OpenTK.Graphics.Wgl.PixelFormatAttribute(), Single(), Integer(), UInteger()) - name.vb: ChoosePixelFormatARB(IntPtr, PixelFormatAttribute(), Single(), Integer(), UInteger()) + nameWithType.vb: Wgl.ARB.ChoosePixelFormatARB(IntPtr, PixelFormatAttribute(), Single(), UInteger, Integer(), UInteger) + fullName.vb: OpenTK.Graphics.Wgl.Wgl.ARB.ChoosePixelFormatARB(System.IntPtr, OpenTK.Graphics.Wgl.PixelFormatAttribute(), Single(), UInteger, Integer(), UInteger) + name.vb: ChoosePixelFormatARB(IntPtr, PixelFormatAttribute(), Single(), UInteger, Integer(), UInteger) - uid: OpenTK.Graphics.Wgl.Wgl.ARB.ChoosePixelFormatARB(System.IntPtr,OpenTK.Graphics.Wgl.PixelFormatAttribute@,System.Single@,System.UInt32,System.Int32@,System.UInt32@) commentId: M:OpenTK.Graphics.Wgl.Wgl.ARB.ChoosePixelFormatARB(System.IntPtr,OpenTK.Graphics.Wgl.PixelFormatAttribute@,System.Single@,System.UInt32,System.Int32@,System.UInt32@) id: ChoosePixelFormatARB(System.IntPtr,OpenTK.Graphics.Wgl.PixelFormatAttribute@,System.Single@,System.UInt32,System.Int32@,System.UInt32@) @@ -981,18 +990,14 @@ items: langs: - csharp - vb - name: ChoosePixelFormatARB(nint, in PixelFormatAttribute, in float, uint, ref int, ref uint) - nameWithType: Wgl.ARB.ChoosePixelFormatARB(nint, in PixelFormatAttribute, in float, uint, ref int, ref uint) - fullName: OpenTK.Graphics.Wgl.Wgl.ARB.ChoosePixelFormatARB(nint, in OpenTK.Graphics.Wgl.PixelFormatAttribute, in float, uint, ref int, ref uint) + name: ChoosePixelFormatARB(nint, in PixelFormatAttribute, in float, uint, ref int, out uint) + nameWithType: Wgl.ARB.ChoosePixelFormatARB(nint, in PixelFormatAttribute, in float, uint, ref int, out uint) + fullName: OpenTK.Graphics.Wgl.Wgl.ARB.ChoosePixelFormatARB(nint, in OpenTK.Graphics.Wgl.PixelFormatAttribute, in float, uint, ref int, out uint) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ChoosePixelFormatARB - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 537 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 441 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -1004,7 +1009,7 @@ items:
example: [] syntax: - content: public static bool ChoosePixelFormatARB(nint hdc, in PixelFormatAttribute piAttribIList, in float pfAttribFList, uint nMaxFormats, ref int piFormats, ref uint nNumFormats) + content: public static bool ChoosePixelFormatARB(nint hdc, in PixelFormatAttribute piAttribIList, in float pfAttribFList, uint nMaxFormats, ref int piFormats, out uint nNumFormats) parameters: - id: hdc type: System.IntPtr @@ -1037,13 +1042,9 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.ARB.CreateContextAttribsARB(nint, nint, System.ReadOnlySpan) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateContextAttribsARB - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 552 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 456 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -1082,13 +1083,9 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.ARB.CreateContextAttribsARB(nint, nint, OpenTK.Graphics.Wgl.ContextAttribs[]) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateContextAttribsARB - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 562 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 466 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -1127,13 +1124,9 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.ARB.CreateContextAttribsARB(nint, nint, in OpenTK.Graphics.Wgl.ContextAttribs) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateContextAttribsARB - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 572 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 476 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -1160,6 +1153,96 @@ items: nameWithType.vb: Wgl.ARB.CreateContextAttribsARB(IntPtr, IntPtr, ContextAttribs) fullName.vb: OpenTK.Graphics.Wgl.Wgl.ARB.CreateContextAttribsARB(System.IntPtr, System.IntPtr, OpenTK.Graphics.Wgl.ContextAttribs) name.vb: CreateContextAttribsARB(IntPtr, IntPtr, ContextAttribs) +- uid: OpenTK.Graphics.Wgl.Wgl.ARB.CreatePbufferARB(System.IntPtr,System.Int32,System.Int32,System.Int32,System.ReadOnlySpan{System.Int32}) + commentId: M:OpenTK.Graphics.Wgl.Wgl.ARB.CreatePbufferARB(System.IntPtr,System.Int32,System.Int32,System.Int32,System.ReadOnlySpan{System.Int32}) + id: CreatePbufferARB(System.IntPtr,System.Int32,System.Int32,System.Int32,System.ReadOnlySpan{System.Int32}) + parent: OpenTK.Graphics.Wgl.Wgl.ARB + langs: + - csharp + - vb + name: CreatePbufferARB(nint, int, int, int, ReadOnlySpan) + nameWithType: Wgl.ARB.CreatePbufferARB(nint, int, int, int, ReadOnlySpan) + fullName: OpenTK.Graphics.Wgl.Wgl.ARB.CreatePbufferARB(nint, int, int, int, System.ReadOnlySpan) + type: Method + source: + id: CreatePbufferARB + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 486 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Wgl + summary: >- + [requires: WGL_ARB_pbuffer] + + [entry point: wglCreatePbufferARB] + +
+ example: [] + syntax: + content: public static nint CreatePbufferARB(nint hDC, int iPixelFormat, int iWidth, int iHeight, ReadOnlySpan piAttribList) + parameters: + - id: hDC + type: System.IntPtr + - id: iPixelFormat + type: System.Int32 + - id: iWidth + type: System.Int32 + - id: iHeight + type: System.Int32 + - id: piAttribList + type: System.ReadOnlySpan{System.Int32} + return: + type: System.IntPtr + content.vb: Public Shared Function CreatePbufferARB(hDC As IntPtr, iPixelFormat As Integer, iWidth As Integer, iHeight As Integer, piAttribList As ReadOnlySpan(Of Integer)) As IntPtr + overload: OpenTK.Graphics.Wgl.Wgl.ARB.CreatePbufferARB* + nameWithType.vb: Wgl.ARB.CreatePbufferARB(IntPtr, Integer, Integer, Integer, ReadOnlySpan(Of Integer)) + fullName.vb: OpenTK.Graphics.Wgl.Wgl.ARB.CreatePbufferARB(System.IntPtr, Integer, Integer, Integer, System.ReadOnlySpan(Of Integer)) + name.vb: CreatePbufferARB(IntPtr, Integer, Integer, Integer, ReadOnlySpan(Of Integer)) +- uid: OpenTK.Graphics.Wgl.Wgl.ARB.CreatePbufferARB(System.IntPtr,System.Int32,System.Int32,System.Int32,System.Int32[]) + commentId: M:OpenTK.Graphics.Wgl.Wgl.ARB.CreatePbufferARB(System.IntPtr,System.Int32,System.Int32,System.Int32,System.Int32[]) + id: CreatePbufferARB(System.IntPtr,System.Int32,System.Int32,System.Int32,System.Int32[]) + parent: OpenTK.Graphics.Wgl.Wgl.ARB + langs: + - csharp + - vb + name: CreatePbufferARB(nint, int, int, int, int[]) + nameWithType: Wgl.ARB.CreatePbufferARB(nint, int, int, int, int[]) + fullName: OpenTK.Graphics.Wgl.Wgl.ARB.CreatePbufferARB(nint, int, int, int, int[]) + type: Method + source: + id: CreatePbufferARB + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 496 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Wgl + summary: >- + [requires: WGL_ARB_pbuffer] + + [entry point: wglCreatePbufferARB] + +
+ example: [] + syntax: + content: public static nint CreatePbufferARB(nint hDC, int iPixelFormat, int iWidth, int iHeight, int[] piAttribList) + parameters: + - id: hDC + type: System.IntPtr + - id: iPixelFormat + type: System.Int32 + - id: iWidth + type: System.Int32 + - id: iHeight + type: System.Int32 + - id: piAttribList + type: System.Int32[] + return: + type: System.IntPtr + content.vb: Public Shared Function CreatePbufferARB(hDC As IntPtr, iPixelFormat As Integer, iWidth As Integer, iHeight As Integer, piAttribList As Integer()) As IntPtr + overload: OpenTK.Graphics.Wgl.Wgl.ARB.CreatePbufferARB* + nameWithType.vb: Wgl.ARB.CreatePbufferARB(IntPtr, Integer, Integer, Integer, Integer()) + fullName.vb: OpenTK.Graphics.Wgl.Wgl.ARB.CreatePbufferARB(System.IntPtr, Integer, Integer, Integer, Integer()) + name.vb: CreatePbufferARB(IntPtr, Integer, Integer, Integer, Integer()) - uid: OpenTK.Graphics.Wgl.Wgl.ARB.CreatePbufferARB(System.IntPtr,System.Int32,System.Int32,System.Int32,System.Int32@) commentId: M:OpenTK.Graphics.Wgl.Wgl.ARB.CreatePbufferARB(System.IntPtr,System.Int32,System.Int32,System.Int32,System.Int32@) id: CreatePbufferARB(System.IntPtr,System.Int32,System.Int32,System.Int32,System.Int32@) @@ -1172,13 +1255,9 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.ARB.CreatePbufferARB(nint, int, int, int, in int) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreatePbufferARB - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 582 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 506 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -1221,13 +1300,9 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.ARB.DestroyPbufferARB(nint) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DestroyPbufferARB - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 592 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 516 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -1256,13 +1331,9 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.ARB.GetExtensionsStringARB(nint) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetExtensionsStringARB - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 601 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 525 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -1291,13 +1362,9 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.ARB.GetPixelFormatAttribfvARB(nint, int, int, uint, System.ReadOnlySpan, System.Span) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetPixelFormatAttribfvARB - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 610 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 534 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -1342,13 +1409,9 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.ARB.GetPixelFormatAttribfvARB(nint, int, int, uint, OpenTK.Graphics.Wgl.PixelFormatAttribute[], float[]) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetPixelFormatAttribfvARB - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 625 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 549 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -1393,13 +1456,9 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.ARB.GetPixelFormatAttribfvARB(nint, int, int, uint, in OpenTK.Graphics.Wgl.PixelFormatAttribute, ref float) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetPixelFormatAttribfvARB - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 640 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 564 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -1444,13 +1503,9 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.ARB.GetPixelFormatAttribivARB(nint, int, int, uint, System.ReadOnlySpan, System.Span) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetPixelFormatAttribivARB - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 653 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 577 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -1495,13 +1550,9 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.ARB.GetPixelFormatAttribivARB(nint, int, int, uint, OpenTK.Graphics.Wgl.PixelFormatAttribute[], int[]) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetPixelFormatAttribivARB - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 668 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 592 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -1546,13 +1597,9 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.ARB.GetPixelFormatAttribivARB(nint, int, int, uint, in OpenTK.Graphics.Wgl.PixelFormatAttribute, ref int) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetPixelFormatAttribivARB - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 683 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 607 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -1597,13 +1644,9 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.ARB.MakeContextCurrentARB(nint, nint, nint) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MakeContextCurrentARB - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 696 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 620 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -1624,96 +1667,6 @@ items: nameWithType.vb: Wgl.ARB.MakeContextCurrentARB(IntPtr, IntPtr, IntPtr) fullName.vb: OpenTK.Graphics.Wgl.Wgl.ARB.MakeContextCurrentARB(System.IntPtr, System.IntPtr, System.IntPtr) name.vb: MakeContextCurrentARB(IntPtr, IntPtr, IntPtr) -- uid: OpenTK.Graphics.Wgl.Wgl.ARB.QueryPbufferARB(System.IntPtr,OpenTK.Graphics.Wgl.PBufferAttribute,System.Span{System.Int32}) - commentId: M:OpenTK.Graphics.Wgl.Wgl.ARB.QueryPbufferARB(System.IntPtr,OpenTK.Graphics.Wgl.PBufferAttribute,System.Span{System.Int32}) - id: QueryPbufferARB(System.IntPtr,OpenTK.Graphics.Wgl.PBufferAttribute,System.Span{System.Int32}) - parent: OpenTK.Graphics.Wgl.Wgl.ARB - langs: - - csharp - - vb - name: QueryPbufferARB(nint, PBufferAttribute, Span) - nameWithType: Wgl.ARB.QueryPbufferARB(nint, PBufferAttribute, Span) - fullName: OpenTK.Graphics.Wgl.Wgl.ARB.QueryPbufferARB(nint, OpenTK.Graphics.Wgl.PBufferAttribute, System.Span) - type: Method - source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: QueryPbufferARB - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 705 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_ARB_pbuffer] - - [entry point: wglQueryPbufferARB] - -
- example: [] - syntax: - content: public static bool QueryPbufferARB(nint hPbuffer, PBufferAttribute iAttribute, Span piValue) - parameters: - - id: hPbuffer - type: System.IntPtr - - id: iAttribute - type: OpenTK.Graphics.Wgl.PBufferAttribute - - id: piValue - type: System.Span{System.Int32} - return: - type: System.Boolean - content.vb: Public Shared Function QueryPbufferARB(hPbuffer As IntPtr, iAttribute As PBufferAttribute, piValue As Span(Of Integer)) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.ARB.QueryPbufferARB* - nameWithType.vb: Wgl.ARB.QueryPbufferARB(IntPtr, PBufferAttribute, Span(Of Integer)) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.ARB.QueryPbufferARB(System.IntPtr, OpenTK.Graphics.Wgl.PBufferAttribute, System.Span(Of Integer)) - name.vb: QueryPbufferARB(IntPtr, PBufferAttribute, Span(Of Integer)) -- uid: OpenTK.Graphics.Wgl.Wgl.ARB.QueryPbufferARB(System.IntPtr,OpenTK.Graphics.Wgl.PBufferAttribute,System.Int32[]) - commentId: M:OpenTK.Graphics.Wgl.Wgl.ARB.QueryPbufferARB(System.IntPtr,OpenTK.Graphics.Wgl.PBufferAttribute,System.Int32[]) - id: QueryPbufferARB(System.IntPtr,OpenTK.Graphics.Wgl.PBufferAttribute,System.Int32[]) - parent: OpenTK.Graphics.Wgl.Wgl.ARB - langs: - - csharp - - vb - name: QueryPbufferARB(nint, PBufferAttribute, int[]) - nameWithType: Wgl.ARB.QueryPbufferARB(nint, PBufferAttribute, int[]) - fullName: OpenTK.Graphics.Wgl.Wgl.ARB.QueryPbufferARB(nint, OpenTK.Graphics.Wgl.PBufferAttribute, int[]) - type: Method - source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: QueryPbufferARB - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 717 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_ARB_pbuffer] - - [entry point: wglQueryPbufferARB] - -
- example: [] - syntax: - content: public static bool QueryPbufferARB(nint hPbuffer, PBufferAttribute iAttribute, int[] piValue) - parameters: - - id: hPbuffer - type: System.IntPtr - - id: iAttribute - type: OpenTK.Graphics.Wgl.PBufferAttribute - - id: piValue - type: System.Int32[] - return: - type: System.Boolean - content.vb: Public Shared Function QueryPbufferARB(hPbuffer As IntPtr, iAttribute As PBufferAttribute, piValue As Integer()) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.ARB.QueryPbufferARB* - nameWithType.vb: Wgl.ARB.QueryPbufferARB(IntPtr, PBufferAttribute, Integer()) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.ARB.QueryPbufferARB(System.IntPtr, OpenTK.Graphics.Wgl.PBufferAttribute, Integer()) - name.vb: QueryPbufferARB(IntPtr, PBufferAttribute, Integer()) - uid: OpenTK.Graphics.Wgl.Wgl.ARB.QueryPbufferARB(System.IntPtr,OpenTK.Graphics.Wgl.PBufferAttribute,System.Int32@) commentId: M:OpenTK.Graphics.Wgl.Wgl.ARB.QueryPbufferARB(System.IntPtr,OpenTK.Graphics.Wgl.PBufferAttribute,System.Int32@) id: QueryPbufferARB(System.IntPtr,OpenTK.Graphics.Wgl.PBufferAttribute,System.Int32@) @@ -1721,18 +1674,14 @@ items: langs: - csharp - vb - name: QueryPbufferARB(nint, PBufferAttribute, ref int) - nameWithType: Wgl.ARB.QueryPbufferARB(nint, PBufferAttribute, ref int) - fullName: OpenTK.Graphics.Wgl.Wgl.ARB.QueryPbufferARB(nint, OpenTK.Graphics.Wgl.PBufferAttribute, ref int) + name: QueryPbufferARB(nint, PBufferAttribute, out int) + nameWithType: Wgl.ARB.QueryPbufferARB(nint, PBufferAttribute, out int) + fullName: OpenTK.Graphics.Wgl.Wgl.ARB.QueryPbufferARB(nint, OpenTK.Graphics.Wgl.PBufferAttribute, out int) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: QueryPbufferARB - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 729 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 629 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -1744,7 +1693,7 @@ items:
example: [] syntax: - content: public static bool QueryPbufferARB(nint hPbuffer, PBufferAttribute iAttribute, ref int piValue) + content: public static bool QueryPbufferARB(nint hPbuffer, PBufferAttribute iAttribute, out int piValue) parameters: - id: hPbuffer type: System.IntPtr @@ -1771,13 +1720,9 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.ARB.ReleaseTexImageARB(nint, OpenTK.Graphics.Wgl.ColorBuffer) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ReleaseTexImageARB - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 741 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 641 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -1808,13 +1753,9 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.ARB.RestoreBufferRegionARB(nint, int, int, int, int, int, int) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: RestoreBufferRegionARB - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 750 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 650 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -1855,13 +1796,9 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.ARB.SaveBufferRegionARB(nint, int, int, int, int) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SaveBufferRegionARB - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 759 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 659 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -1886,6 +1823,84 @@ items: nameWithType.vb: Wgl.ARB.SaveBufferRegionARB(IntPtr, Integer, Integer, Integer, Integer) fullName.vb: OpenTK.Graphics.Wgl.Wgl.ARB.SaveBufferRegionARB(System.IntPtr, Integer, Integer, Integer, Integer) name.vb: SaveBufferRegionARB(IntPtr, Integer, Integer, Integer, Integer) +- uid: OpenTK.Graphics.Wgl.Wgl.ARB.SetPbufferAttribARB(System.IntPtr,System.ReadOnlySpan{System.Int32}) + commentId: M:OpenTK.Graphics.Wgl.Wgl.ARB.SetPbufferAttribARB(System.IntPtr,System.ReadOnlySpan{System.Int32}) + id: SetPbufferAttribARB(System.IntPtr,System.ReadOnlySpan{System.Int32}) + parent: OpenTK.Graphics.Wgl.Wgl.ARB + langs: + - csharp + - vb + name: SetPbufferAttribARB(nint, ReadOnlySpan) + nameWithType: Wgl.ARB.SetPbufferAttribARB(nint, ReadOnlySpan) + fullName: OpenTK.Graphics.Wgl.Wgl.ARB.SetPbufferAttribARB(nint, System.ReadOnlySpan) + type: Method + source: + id: SetPbufferAttribARB + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 668 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Wgl + summary: >- + [requires: WGL_ARB_render_texture] + + [entry point: wglSetPbufferAttribARB] + +
+ example: [] + syntax: + content: public static bool SetPbufferAttribARB(nint hPbuffer, ReadOnlySpan piAttribList) + parameters: + - id: hPbuffer + type: System.IntPtr + - id: piAttribList + type: System.ReadOnlySpan{System.Int32} + return: + type: System.Boolean + content.vb: Public Shared Function SetPbufferAttribARB(hPbuffer As IntPtr, piAttribList As ReadOnlySpan(Of Integer)) As Boolean + overload: OpenTK.Graphics.Wgl.Wgl.ARB.SetPbufferAttribARB* + nameWithType.vb: Wgl.ARB.SetPbufferAttribARB(IntPtr, ReadOnlySpan(Of Integer)) + fullName.vb: OpenTK.Graphics.Wgl.Wgl.ARB.SetPbufferAttribARB(System.IntPtr, System.ReadOnlySpan(Of Integer)) + name.vb: SetPbufferAttribARB(IntPtr, ReadOnlySpan(Of Integer)) +- uid: OpenTK.Graphics.Wgl.Wgl.ARB.SetPbufferAttribARB(System.IntPtr,System.Int32[]) + commentId: M:OpenTK.Graphics.Wgl.Wgl.ARB.SetPbufferAttribARB(System.IntPtr,System.Int32[]) + id: SetPbufferAttribARB(System.IntPtr,System.Int32[]) + parent: OpenTK.Graphics.Wgl.Wgl.ARB + langs: + - csharp + - vb + name: SetPbufferAttribARB(nint, int[]) + nameWithType: Wgl.ARB.SetPbufferAttribARB(nint, int[]) + fullName: OpenTK.Graphics.Wgl.Wgl.ARB.SetPbufferAttribARB(nint, int[]) + type: Method + source: + id: SetPbufferAttribARB + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 680 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Wgl + summary: >- + [requires: WGL_ARB_render_texture] + + [entry point: wglSetPbufferAttribARB] + +
+ example: [] + syntax: + content: public static bool SetPbufferAttribARB(nint hPbuffer, int[] piAttribList) + parameters: + - id: hPbuffer + type: System.IntPtr + - id: piAttribList + type: System.Int32[] + return: + type: System.Boolean + content.vb: Public Shared Function SetPbufferAttribARB(hPbuffer As IntPtr, piAttribList As Integer()) As Boolean + overload: OpenTK.Graphics.Wgl.Wgl.ARB.SetPbufferAttribARB* + nameWithType.vb: Wgl.ARB.SetPbufferAttribARB(IntPtr, Integer()) + fullName.vb: OpenTK.Graphics.Wgl.Wgl.ARB.SetPbufferAttribARB(System.IntPtr, Integer()) + name.vb: SetPbufferAttribARB(IntPtr, Integer()) - uid: OpenTK.Graphics.Wgl.Wgl.ARB.SetPbufferAttribARB(System.IntPtr,System.Int32@) commentId: M:OpenTK.Graphics.Wgl.Wgl.ARB.SetPbufferAttribARB(System.IntPtr,System.Int32@) id: SetPbufferAttribARB(System.IntPtr,System.Int32@) @@ -1898,13 +1913,9 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.ARB.SetPbufferAttribARB(nint, in int) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetPbufferAttribARB - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 768 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 692 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -2330,17 +2341,17 @@ references: - name: '*' - uid: OpenTK.Graphics.Wgl.Wgl.ARB.CreateBufferRegionARB* commentId: Overload:OpenTK.Graphics.Wgl.Wgl.ARB.CreateBufferRegionARB - href: OpenTK.Graphics.Wgl.Wgl.ARB.html#OpenTK_Graphics_Wgl_Wgl_ARB_CreateBufferRegionARB_System_IntPtr_System_Int32_OpenTK_Graphics_Wgl_WGLColorBufferMask_ + href: OpenTK.Graphics.Wgl.Wgl.ARB.html#OpenTK_Graphics_Wgl_Wgl_ARB_CreateBufferRegionARB_System_IntPtr_System_Int32_OpenTK_Graphics_Wgl_ColorBufferMask_ name: CreateBufferRegionARB nameWithType: Wgl.ARB.CreateBufferRegionARB fullName: OpenTK.Graphics.Wgl.Wgl.ARB.CreateBufferRegionARB -- uid: OpenTK.Graphics.Wgl.WGLColorBufferMask - commentId: T:OpenTK.Graphics.Wgl.WGLColorBufferMask +- uid: OpenTK.Graphics.Wgl.ColorBufferMask + commentId: T:OpenTK.Graphics.Wgl.ColorBufferMask parent: OpenTK.Graphics.Wgl - href: OpenTK.Graphics.Wgl.WGLColorBufferMask.html - name: WGLColorBufferMask - nameWithType: WGLColorBufferMask - fullName: OpenTK.Graphics.Wgl.WGLColorBufferMask + href: OpenTK.Graphics.Wgl.ColorBufferMask.html + name: ColorBufferMask + nameWithType: ColorBufferMask + fullName: OpenTK.Graphics.Wgl.ColorBufferMask - uid: OpenTK.Graphics.Wgl.Wgl.ARB.CreateContextAttribsARB* commentId: Overload:OpenTK.Graphics.Wgl.Wgl.ARB.CreateContextAttribsARB href: OpenTK.Graphics.Wgl.Wgl.ARB.html#OpenTK_Graphics_Wgl_Wgl_ARB_CreateContextAttribsARB_System_IntPtr_System_IntPtr_OpenTK_Graphics_Wgl_ContextAttribs__ @@ -2601,41 +2612,6 @@ references: isExternal: true href: https://learn.microsoft.com/dotnet/api/system.int32 - name: ) -- uid: System.Span{System.UInt32} - commentId: T:System.Span{System.UInt32} - parent: System - definition: System.Span`1 - href: https://learn.microsoft.com/dotnet/api/system.span-1 - name: Span - nameWithType: Span - fullName: System.Span - nameWithType.vb: Span(Of UInteger) - fullName.vb: System.Span(Of UInteger) - name.vb: Span(Of UInteger) - spec.csharp: - - uid: System.Span`1 - name: Span - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.span-1 - - name: < - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: '>' - spec.vb: - - uid: System.Span`1 - name: Span - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.span-1 - - name: ( - - name: Of - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - uid: System.ReadOnlySpan`1 commentId: T:System.ReadOnlySpan`1 isExternal: true @@ -2759,29 +2735,6 @@ references: href: https://learn.microsoft.com/dotnet/api/system.int32 - name: ( - name: ) -- uid: System.UInt32[] - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - name: uint[] - nameWithType: uint[] - fullName: uint[] - nameWithType.vb: UInteger() - fullName.vb: UInteger() - name.vb: UInteger() - spec.csharp: - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: '[' - - name: ']' - spec.vb: - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ( - - name: ) - uid: OpenTK.Graphics.Wgl.PixelFormatAttribute commentId: T:OpenTK.Graphics.Wgl.PixelFormatAttribute parent: OpenTK.Graphics.Wgl @@ -2861,6 +2814,41 @@ references: name: ContextAttribs nameWithType: ContextAttribs fullName: OpenTK.Graphics.Wgl.ContextAttribs +- uid: System.ReadOnlySpan{System.Int32} + commentId: T:System.ReadOnlySpan{System.Int32} + parent: System + definition: System.ReadOnlySpan`1 + href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 + name: ReadOnlySpan + nameWithType: ReadOnlySpan + fullName: System.ReadOnlySpan + nameWithType.vb: ReadOnlySpan(Of Integer) + fullName.vb: System.ReadOnlySpan(Of Integer) + name.vb: ReadOnlySpan(Of Integer) + spec.csharp: + - uid: System.ReadOnlySpan`1 + name: ReadOnlySpan + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 + - name: < + - uid: System.Int32 + name: int + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: '>' + spec.vb: + - uid: System.ReadOnlySpan`1 + name: ReadOnlySpan + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 + - name: ( + - name: Of + - name: " " + - uid: System.Int32 + name: Integer + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ) - uid: OpenTK.Graphics.Wgl.Wgl.ARB.DestroyPbufferARB* commentId: Overload:OpenTK.Graphics.Wgl.Wgl.ARB.DestroyPbufferARB href: OpenTK.Graphics.Wgl.Wgl.ARB.html#OpenTK_Graphics_Wgl_Wgl_ARB_DestroyPbufferARB_System_IntPtr_ diff --git a/api/OpenTK.Graphics.Wgl.Wgl.EXT.yml b/api/OpenTK.Graphics.Wgl.Wgl.EXT.yml index 56ed5e66..fe23f517 100644 --- a/api/OpenTK.Graphics.Wgl.Wgl.EXT.yml +++ b/api/OpenTK.Graphics.Wgl.Wgl.EXT.yml @@ -7,12 +7,14 @@ items: children: - OpenTK.Graphics.Wgl.Wgl.EXT.BindDisplayColorTableEXT(System.UInt16) - OpenTK.Graphics.Wgl.Wgl.EXT.ChoosePixelFormatEXT(System.IntPtr,System.Int32*,System.Single*,System.UInt32,System.Int32*,System.UInt32*) - - OpenTK.Graphics.Wgl.Wgl.EXT.ChoosePixelFormatEXT(System.IntPtr,System.Int32@,System.Single@,System.Int32[],System.UInt32[]) - - OpenTK.Graphics.Wgl.Wgl.EXT.ChoosePixelFormatEXT(System.IntPtr,System.Int32@,System.Single@,System.Span{System.Int32},System.Span{System.UInt32}) - OpenTK.Graphics.Wgl.Wgl.EXT.ChoosePixelFormatEXT(System.IntPtr,System.Int32@,System.Single@,System.UInt32,System.Int32@,System.UInt32@) + - OpenTK.Graphics.Wgl.Wgl.EXT.ChoosePixelFormatEXT(System.IntPtr,System.Int32[],System.Single[],System.UInt32,System.Int32[],System.UInt32@) + - OpenTK.Graphics.Wgl.Wgl.EXT.ChoosePixelFormatEXT(System.IntPtr,System.ReadOnlySpan{System.Int32},System.ReadOnlySpan{System.Single},System.UInt32,System.Span{System.Int32},System.UInt32@) - OpenTK.Graphics.Wgl.Wgl.EXT.CreateDisplayColorTableEXT(System.UInt16) - OpenTK.Graphics.Wgl.Wgl.EXT.CreatePbufferEXT(System.IntPtr,System.Int32,System.Int32,System.Int32,System.Int32*) - OpenTK.Graphics.Wgl.Wgl.EXT.CreatePbufferEXT(System.IntPtr,System.Int32,System.Int32,System.Int32,System.Int32@) + - OpenTK.Graphics.Wgl.Wgl.EXT.CreatePbufferEXT(System.IntPtr,System.Int32,System.Int32,System.Int32,System.Int32[]) + - OpenTK.Graphics.Wgl.Wgl.EXT.CreatePbufferEXT(System.IntPtr,System.Int32,System.Int32,System.Int32,System.ReadOnlySpan{System.Int32}) - OpenTK.Graphics.Wgl.Wgl.EXT.DestroyDisplayColorTableEXT(System.UInt16) - OpenTK.Graphics.Wgl.Wgl.EXT.DestroyPbufferEXT(System.IntPtr) - OpenTK.Graphics.Wgl.Wgl.EXT.DestroyPbufferEXT_(System.IntPtr) @@ -29,16 +31,14 @@ items: - OpenTK.Graphics.Wgl.Wgl.EXT.GetPixelFormatAttribivEXT(System.IntPtr,System.Int32,System.Int32,System.UInt32,OpenTK.Graphics.Wgl.PixelFormatAttribute[],System.Int32[]) - OpenTK.Graphics.Wgl.Wgl.EXT.GetPixelFormatAttribivEXT(System.IntPtr,System.Int32,System.Int32,System.UInt32,System.Span{OpenTK.Graphics.Wgl.PixelFormatAttribute},System.Span{System.Int32}) - OpenTK.Graphics.Wgl.Wgl.EXT.GetSwapIntervalEXT - - OpenTK.Graphics.Wgl.Wgl.EXT.LoadDisplayColorTableEXT(System.ReadOnlySpan{System.UInt16}) + - OpenTK.Graphics.Wgl.Wgl.EXT.LoadDisplayColorTableEXT(System.ReadOnlySpan{System.UInt16},System.UInt32) - OpenTK.Graphics.Wgl.Wgl.EXT.LoadDisplayColorTableEXT(System.UInt16*,System.UInt32) - OpenTK.Graphics.Wgl.Wgl.EXT.LoadDisplayColorTableEXT(System.UInt16@,System.UInt32) - - OpenTK.Graphics.Wgl.Wgl.EXT.LoadDisplayColorTableEXT(System.UInt16[]) + - OpenTK.Graphics.Wgl.Wgl.EXT.LoadDisplayColorTableEXT(System.UInt16[],System.UInt32) - OpenTK.Graphics.Wgl.Wgl.EXT.MakeContextCurrentEXT(System.IntPtr,System.IntPtr,System.IntPtr) - OpenTK.Graphics.Wgl.Wgl.EXT.MakeContextCurrentEXT_(System.IntPtr,System.IntPtr,System.IntPtr) - OpenTK.Graphics.Wgl.Wgl.EXT.QueryPbufferEXT(System.IntPtr,OpenTK.Graphics.Wgl.PBufferAttribute,System.Int32*) - OpenTK.Graphics.Wgl.Wgl.EXT.QueryPbufferEXT(System.IntPtr,OpenTK.Graphics.Wgl.PBufferAttribute,System.Int32@) - - OpenTK.Graphics.Wgl.Wgl.EXT.QueryPbufferEXT(System.IntPtr,OpenTK.Graphics.Wgl.PBufferAttribute,System.Int32[]) - - OpenTK.Graphics.Wgl.Wgl.EXT.QueryPbufferEXT(System.IntPtr,OpenTK.Graphics.Wgl.PBufferAttribute,System.Span{System.Int32}) - OpenTK.Graphics.Wgl.Wgl.EXT.ReleasePbufferDCEXT(System.IntPtr,System.IntPtr) - OpenTK.Graphics.Wgl.Wgl.EXT.SwapIntervalEXT(System.Int32) - OpenTK.Graphics.Wgl.Wgl.EXT.SwapIntervalEXT_(System.Int32) @@ -50,13 +50,9 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.EXT type: Class source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: EXT - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 780 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 704 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -87,17 +83,18 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.EXT.BindDisplayColorTableEXT(ushort) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: BindDisplayColorTableEXT - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs startLine: 192 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl - summary: '[requires: WGL_EXT_display_color_table] [entry point: wglBindDisplayColorTableEXT]
' + summary: >- + [requires: WGL_EXT_display_color_table] + + [entry point: wglBindDisplayColorTableEXT] + +
example: [] syntax: content: public static bool BindDisplayColorTableEXT(ushort id) @@ -123,17 +120,18 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.EXT.ChoosePixelFormatEXT(nint, int*, float*, uint, int*, uint*) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ChoosePixelFormatEXT - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs startLine: 195 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl - summary: '[requires: WGL_EXT_pixel_format] [entry point: wglChoosePixelFormatEXT]
' + summary: >- + [requires: WGL_EXT_pixel_format] + + [entry point: wglChoosePixelFormatEXT] + +
example: [] syntax: content: public static int ChoosePixelFormatEXT(nint hdc, int* piAttribIList, float* pfAttribFList, uint nMaxFormats, int* piFormats, uint* nNumFormats) @@ -169,17 +167,18 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.EXT.CreateDisplayColorTableEXT(ushort) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateDisplayColorTableEXT - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs startLine: 198 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl - summary: '[requires: WGL_EXT_display_color_table] [entry point: wglCreateDisplayColorTableEXT]
' + summary: >- + [requires: WGL_EXT_display_color_table] + + [entry point: wglCreateDisplayColorTableEXT] + +
example: [] syntax: content: public static bool CreateDisplayColorTableEXT(ushort id) @@ -205,17 +204,18 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.EXT.CreatePbufferEXT(nint, int, int, int, int*) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreatePbufferEXT - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs startLine: 201 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl - summary: '[requires: WGL_EXT_pbuffer] [entry point: wglCreatePbufferEXT]
' + summary: >- + [requires: WGL_EXT_pbuffer] + + [entry point: wglCreatePbufferEXT] + +
example: [] syntax: content: public static nint CreatePbufferEXT(nint hDC, int iPixelFormat, int iWidth, int iHeight, int* piAttribList) @@ -249,17 +249,18 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.EXT.DestroyDisplayColorTableEXT(ushort) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DestroyDisplayColorTableEXT - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs startLine: 204 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl - summary: '[requires: WGL_EXT_display_color_table] [entry point: wglDestroyDisplayColorTableEXT]
' + summary: >- + [requires: WGL_EXT_display_color_table] + + [entry point: wglDestroyDisplayColorTableEXT] + +
example: [] syntax: content: public static void DestroyDisplayColorTableEXT(ushort id) @@ -283,17 +284,18 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.EXT.DestroyPbufferEXT_(nint) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DestroyPbufferEXT_ - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs startLine: 207 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl - summary: '[requires: WGL_EXT_pbuffer] [entry point: wglDestroyPbufferEXT]
' + summary: >- + [requires: WGL_EXT_pbuffer] + + [entry point: wglDestroyPbufferEXT] + +
example: [] syntax: content: public static int DestroyPbufferEXT_(nint hPbuffer) @@ -319,17 +321,18 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.EXT.GetCurrentReadDCEXT() type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetCurrentReadDCEXT - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs startLine: 210 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl - summary: '[requires: WGL_EXT_make_current_read] [entry point: wglGetCurrentReadDCEXT]
' + summary: >- + [requires: WGL_EXT_make_current_read] + + [entry point: wglGetCurrentReadDCEXT] + +
example: [] syntax: content: public static nint GetCurrentReadDCEXT() @@ -349,17 +352,18 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.EXT.GetExtensionsStringEXT_() type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetExtensionsStringEXT_ - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs startLine: 213 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl - summary: '[requires: WGL_EXT_extensions_string] [entry point: wglGetExtensionsStringEXT]
' + summary: >- + [requires: WGL_EXT_extensions_string] + + [entry point: wglGetExtensionsStringEXT] + +
example: [] syntax: content: public static byte* GetExtensionsStringEXT_() @@ -379,17 +383,18 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.EXT.GetPbufferDCEXT(nint) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetPbufferDCEXT - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs startLine: 216 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl - summary: '[requires: WGL_EXT_pbuffer] [entry point: wglGetPbufferDCEXT]
' + summary: >- + [requires: WGL_EXT_pbuffer] + + [entry point: wglGetPbufferDCEXT] + +
example: [] syntax: content: public static nint GetPbufferDCEXT(nint hPbuffer) @@ -415,17 +420,18 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.EXT.GetPixelFormatAttribfvEXT(nint, int, int, uint, OpenTK.Graphics.Wgl.PixelFormatAttribute*, float*) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetPixelFormatAttribfvEXT - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs startLine: 219 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl - summary: '[requires: WGL_EXT_pixel_format] [entry point: wglGetPixelFormatAttribfvEXT]
' + summary: >- + [requires: WGL_EXT_pixel_format] + + [entry point: wglGetPixelFormatAttribfvEXT] + +
example: [] syntax: content: public static int GetPixelFormatAttribfvEXT(nint hdc, int iPixelFormat, int iLayerPlane, uint nAttributes, PixelFormatAttribute* piAttributes, float* pfValues) @@ -461,17 +467,18 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.EXT.GetPixelFormatAttribivEXT(nint, int, int, uint, OpenTK.Graphics.Wgl.PixelFormatAttribute*, int*) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetPixelFormatAttribivEXT - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs startLine: 222 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl - summary: '[requires: WGL_EXT_pixel_format] [entry point: wglGetPixelFormatAttribivEXT]
' + summary: >- + [requires: WGL_EXT_pixel_format] + + [entry point: wglGetPixelFormatAttribivEXT] + +
example: [] syntax: content: public static int GetPixelFormatAttribivEXT(nint hdc, int iPixelFormat, int iLayerPlane, uint nAttributes, PixelFormatAttribute* piAttributes, int* piValues) @@ -507,17 +514,18 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.EXT.GetSwapIntervalEXT() type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetSwapIntervalEXT - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs startLine: 225 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl - summary: '[requires: WGL_EXT_swap_control] [entry point: wglGetSwapIntervalEXT]
' + summary: >- + [requires: WGL_EXT_swap_control] + + [entry point: wglGetSwapIntervalEXT] + +
example: [] syntax: content: public static int GetSwapIntervalEXT() @@ -537,17 +545,18 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.EXT.LoadDisplayColorTableEXT(ushort*, uint) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: LoadDisplayColorTableEXT - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs startLine: 228 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl - summary: '[requires: WGL_EXT_display_color_table] [entry point: wglLoadDisplayColorTableEXT]
' + summary: >- + [requires: WGL_EXT_display_color_table] + + [entry point: wglLoadDisplayColorTableEXT] + +
example: [] syntax: content: public static bool LoadDisplayColorTableEXT(ushort* table, uint length) @@ -575,17 +584,18 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.EXT.MakeContextCurrentEXT_(nint, nint, nint) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MakeContextCurrentEXT_ - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs startLine: 231 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl - summary: '[requires: WGL_EXT_make_current_read] [entry point: wglMakeContextCurrentEXT]
' + summary: >- + [requires: WGL_EXT_make_current_read] + + [entry point: wglMakeContextCurrentEXT] + +
example: [] syntax: content: public static int MakeContextCurrentEXT_(nint hDrawDC, nint hReadDC, nint hglrc) @@ -615,17 +625,18 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.EXT.QueryPbufferEXT(nint, OpenTK.Graphics.Wgl.PBufferAttribute, int*) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: QueryPbufferEXT - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs startLine: 234 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl - summary: '[requires: WGL_EXT_pbuffer] [entry point: wglQueryPbufferEXT]
' + summary: >- + [requires: WGL_EXT_pbuffer] + + [entry point: wglQueryPbufferEXT] + +
example: [] syntax: content: public static int QueryPbufferEXT(nint hPbuffer, PBufferAttribute iAttribute, int* piValue) @@ -655,17 +666,18 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.EXT.ReleasePbufferDCEXT(nint, nint) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ReleasePbufferDCEXT - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs startLine: 237 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl - summary: '[requires: WGL_EXT_pbuffer] [entry point: wglReleasePbufferDCEXT]
' + summary: >- + [requires: WGL_EXT_pbuffer] + + [entry point: wglReleasePbufferDCEXT] + +
example: [] syntax: content: public static int ReleasePbufferDCEXT(nint hPbuffer, nint hDC) @@ -693,17 +705,18 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.EXT.SwapIntervalEXT_(int) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SwapIntervalEXT_ - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs startLine: 240 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl - summary: '[requires: WGL_EXT_swap_control] [entry point: wglSwapIntervalEXT]
' + summary: >- + [requires: WGL_EXT_swap_control] + + [entry point: wglSwapIntervalEXT] + +
example: [] syntax: content: public static int SwapIntervalEXT_(int interval) @@ -717,25 +730,21 @@ items: nameWithType.vb: Wgl.EXT.SwapIntervalEXT_(Integer) fullName.vb: OpenTK.Graphics.Wgl.Wgl.EXT.SwapIntervalEXT_(Integer) name.vb: SwapIntervalEXT_(Integer) -- uid: OpenTK.Graphics.Wgl.Wgl.EXT.ChoosePixelFormatEXT(System.IntPtr,System.Int32@,System.Single@,System.Span{System.Int32},System.Span{System.UInt32}) - commentId: M:OpenTK.Graphics.Wgl.Wgl.EXT.ChoosePixelFormatEXT(System.IntPtr,System.Int32@,System.Single@,System.Span{System.Int32},System.Span{System.UInt32}) - id: ChoosePixelFormatEXT(System.IntPtr,System.Int32@,System.Single@,System.Span{System.Int32},System.Span{System.UInt32}) +- uid: OpenTK.Graphics.Wgl.Wgl.EXT.ChoosePixelFormatEXT(System.IntPtr,System.ReadOnlySpan{System.Int32},System.ReadOnlySpan{System.Single},System.UInt32,System.Span{System.Int32},System.UInt32@) + commentId: M:OpenTK.Graphics.Wgl.Wgl.EXT.ChoosePixelFormatEXT(System.IntPtr,System.ReadOnlySpan{System.Int32},System.ReadOnlySpan{System.Single},System.UInt32,System.Span{System.Int32},System.UInt32@) + id: ChoosePixelFormatEXT(System.IntPtr,System.ReadOnlySpan{System.Int32},System.ReadOnlySpan{System.Single},System.UInt32,System.Span{System.Int32},System.UInt32@) parent: OpenTK.Graphics.Wgl.Wgl.EXT langs: - csharp - vb - name: ChoosePixelFormatEXT(nint, in int, in float, Span, Span) - nameWithType: Wgl.EXT.ChoosePixelFormatEXT(nint, in int, in float, Span, Span) - fullName: OpenTK.Graphics.Wgl.Wgl.EXT.ChoosePixelFormatEXT(nint, in int, in float, System.Span, System.Span) + name: ChoosePixelFormatEXT(nint, ReadOnlySpan, ReadOnlySpan, uint, Span, out uint) + nameWithType: Wgl.EXT.ChoosePixelFormatEXT(nint, ReadOnlySpan, ReadOnlySpan, uint, Span, out uint) + fullName: OpenTK.Graphics.Wgl.Wgl.EXT.ChoosePixelFormatEXT(nint, System.ReadOnlySpan, System.ReadOnlySpan, uint, System.Span, out uint) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ChoosePixelFormatEXT - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 783 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 707 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -747,44 +756,42 @@ items:
example: [] syntax: - content: public static bool ChoosePixelFormatEXT(nint hdc, in int piAttribIList, in float pfAttribFList, Span piFormats, Span nNumFormats) + content: public static bool ChoosePixelFormatEXT(nint hdc, ReadOnlySpan piAttribIList, ReadOnlySpan pfAttribFList, uint nMaxFormats, Span piFormats, out uint nNumFormats) parameters: - id: hdc type: System.IntPtr - id: piAttribIList - type: System.Int32 + type: System.ReadOnlySpan{System.Int32} - id: pfAttribFList - type: System.Single + type: System.ReadOnlySpan{System.Single} + - id: nMaxFormats + type: System.UInt32 - id: piFormats type: System.Span{System.Int32} - id: nNumFormats - type: System.Span{System.UInt32} + type: System.UInt32 return: type: System.Boolean - content.vb: Public Shared Function ChoosePixelFormatEXT(hdc As IntPtr, piAttribIList As Integer, pfAttribFList As Single, piFormats As Span(Of Integer), nNumFormats As Span(Of UInteger)) As Boolean + content.vb: Public Shared Function ChoosePixelFormatEXT(hdc As IntPtr, piAttribIList As ReadOnlySpan(Of Integer), pfAttribFList As ReadOnlySpan(Of Single), nMaxFormats As UInteger, piFormats As Span(Of Integer), nNumFormats As UInteger) As Boolean overload: OpenTK.Graphics.Wgl.Wgl.EXT.ChoosePixelFormatEXT* - nameWithType.vb: Wgl.EXT.ChoosePixelFormatEXT(IntPtr, Integer, Single, Span(Of Integer), Span(Of UInteger)) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.EXT.ChoosePixelFormatEXT(System.IntPtr, Integer, Single, System.Span(Of Integer), System.Span(Of UInteger)) - name.vb: ChoosePixelFormatEXT(IntPtr, Integer, Single, Span(Of Integer), Span(Of UInteger)) -- uid: OpenTK.Graphics.Wgl.Wgl.EXT.ChoosePixelFormatEXT(System.IntPtr,System.Int32@,System.Single@,System.Int32[],System.UInt32[]) - commentId: M:OpenTK.Graphics.Wgl.Wgl.EXT.ChoosePixelFormatEXT(System.IntPtr,System.Int32@,System.Single@,System.Int32[],System.UInt32[]) - id: ChoosePixelFormatEXT(System.IntPtr,System.Int32@,System.Single@,System.Int32[],System.UInt32[]) + nameWithType.vb: Wgl.EXT.ChoosePixelFormatEXT(IntPtr, ReadOnlySpan(Of Integer), ReadOnlySpan(Of Single), UInteger, Span(Of Integer), UInteger) + fullName.vb: OpenTK.Graphics.Wgl.Wgl.EXT.ChoosePixelFormatEXT(System.IntPtr, System.ReadOnlySpan(Of Integer), System.ReadOnlySpan(Of Single), UInteger, System.Span(Of Integer), UInteger) + name.vb: ChoosePixelFormatEXT(IntPtr, ReadOnlySpan(Of Integer), ReadOnlySpan(Of Single), UInteger, Span(Of Integer), UInteger) +- uid: OpenTK.Graphics.Wgl.Wgl.EXT.ChoosePixelFormatEXT(System.IntPtr,System.Int32[],System.Single[],System.UInt32,System.Int32[],System.UInt32@) + commentId: M:OpenTK.Graphics.Wgl.Wgl.EXT.ChoosePixelFormatEXT(System.IntPtr,System.Int32[],System.Single[],System.UInt32,System.Int32[],System.UInt32@) + id: ChoosePixelFormatEXT(System.IntPtr,System.Int32[],System.Single[],System.UInt32,System.Int32[],System.UInt32@) parent: OpenTK.Graphics.Wgl.Wgl.EXT langs: - csharp - vb - name: ChoosePixelFormatEXT(nint, in int, in float, int[], uint[]) - nameWithType: Wgl.EXT.ChoosePixelFormatEXT(nint, in int, in float, int[], uint[]) - fullName: OpenTK.Graphics.Wgl.Wgl.EXT.ChoosePixelFormatEXT(nint, in int, in float, int[], uint[]) + name: ChoosePixelFormatEXT(nint, int[], float[], uint, int[], out uint) + nameWithType: Wgl.EXT.ChoosePixelFormatEXT(nint, int[], float[], uint, int[], out uint) + fullName: OpenTK.Graphics.Wgl.Wgl.EXT.ChoosePixelFormatEXT(nint, int[], float[], uint, int[], out uint) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ChoosePixelFormatEXT - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 803 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 728 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -796,25 +803,27 @@ items:
example: [] syntax: - content: public static bool ChoosePixelFormatEXT(nint hdc, in int piAttribIList, in float pfAttribFList, int[] piFormats, uint[] nNumFormats) + content: public static bool ChoosePixelFormatEXT(nint hdc, int[] piAttribIList, float[] pfAttribFList, uint nMaxFormats, int[] piFormats, out uint nNumFormats) parameters: - id: hdc type: System.IntPtr - id: piAttribIList - type: System.Int32 + type: System.Int32[] - id: pfAttribFList - type: System.Single + type: System.Single[] + - id: nMaxFormats + type: System.UInt32 - id: piFormats type: System.Int32[] - id: nNumFormats - type: System.UInt32[] + type: System.UInt32 return: type: System.Boolean - content.vb: Public Shared Function ChoosePixelFormatEXT(hdc As IntPtr, piAttribIList As Integer, pfAttribFList As Single, piFormats As Integer(), nNumFormats As UInteger()) As Boolean + content.vb: Public Shared Function ChoosePixelFormatEXT(hdc As IntPtr, piAttribIList As Integer(), pfAttribFList As Single(), nMaxFormats As UInteger, piFormats As Integer(), nNumFormats As UInteger) As Boolean overload: OpenTK.Graphics.Wgl.Wgl.EXT.ChoosePixelFormatEXT* - nameWithType.vb: Wgl.EXT.ChoosePixelFormatEXT(IntPtr, Integer, Single, Integer(), UInteger()) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.EXT.ChoosePixelFormatEXT(System.IntPtr, Integer, Single, Integer(), UInteger()) - name.vb: ChoosePixelFormatEXT(IntPtr, Integer, Single, Integer(), UInteger()) + nameWithType.vb: Wgl.EXT.ChoosePixelFormatEXT(IntPtr, Integer(), Single(), UInteger, Integer(), UInteger) + fullName.vb: OpenTK.Graphics.Wgl.Wgl.EXT.ChoosePixelFormatEXT(System.IntPtr, Integer(), Single(), UInteger, Integer(), UInteger) + name.vb: ChoosePixelFormatEXT(IntPtr, Integer(), Single(), UInteger, Integer(), UInteger) - uid: OpenTK.Graphics.Wgl.Wgl.EXT.ChoosePixelFormatEXT(System.IntPtr,System.Int32@,System.Single@,System.UInt32,System.Int32@,System.UInt32@) commentId: M:OpenTK.Graphics.Wgl.Wgl.EXT.ChoosePixelFormatEXT(System.IntPtr,System.Int32@,System.Single@,System.UInt32,System.Int32@,System.UInt32@) id: ChoosePixelFormatEXT(System.IntPtr,System.Int32@,System.Single@,System.UInt32,System.Int32@,System.UInt32@) @@ -822,18 +831,14 @@ items: langs: - csharp - vb - name: ChoosePixelFormatEXT(nint, in int, in float, uint, ref int, ref uint) - nameWithType: Wgl.EXT.ChoosePixelFormatEXT(nint, in int, in float, uint, ref int, ref uint) - fullName: OpenTK.Graphics.Wgl.Wgl.EXT.ChoosePixelFormatEXT(nint, in int, in float, uint, ref int, ref uint) + name: ChoosePixelFormatEXT(nint, in int, in float, uint, ref int, out uint) + nameWithType: Wgl.EXT.ChoosePixelFormatEXT(nint, in int, in float, uint, ref int, out uint) + fullName: OpenTK.Graphics.Wgl.Wgl.EXT.ChoosePixelFormatEXT(nint, in int, in float, uint, ref int, out uint) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ChoosePixelFormatEXT - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 823 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 749 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -845,7 +850,7 @@ items:
example: [] syntax: - content: public static bool ChoosePixelFormatEXT(nint hdc, in int piAttribIList, in float pfAttribFList, uint nMaxFormats, ref int piFormats, ref uint nNumFormats) + content: public static bool ChoosePixelFormatEXT(nint hdc, in int piAttribIList, in float pfAttribFList, uint nMaxFormats, ref int piFormats, out uint nNumFormats) parameters: - id: hdc type: System.IntPtr @@ -866,6 +871,96 @@ items: nameWithType.vb: Wgl.EXT.ChoosePixelFormatEXT(IntPtr, Integer, Single, UInteger, Integer, UInteger) fullName.vb: OpenTK.Graphics.Wgl.Wgl.EXT.ChoosePixelFormatEXT(System.IntPtr, Integer, Single, UInteger, Integer, UInteger) name.vb: ChoosePixelFormatEXT(IntPtr, Integer, Single, UInteger, Integer, UInteger) +- uid: OpenTK.Graphics.Wgl.Wgl.EXT.CreatePbufferEXT(System.IntPtr,System.Int32,System.Int32,System.Int32,System.ReadOnlySpan{System.Int32}) + commentId: M:OpenTK.Graphics.Wgl.Wgl.EXT.CreatePbufferEXT(System.IntPtr,System.Int32,System.Int32,System.Int32,System.ReadOnlySpan{System.Int32}) + id: CreatePbufferEXT(System.IntPtr,System.Int32,System.Int32,System.Int32,System.ReadOnlySpan{System.Int32}) + parent: OpenTK.Graphics.Wgl.Wgl.EXT + langs: + - csharp + - vb + name: CreatePbufferEXT(nint, int, int, int, ReadOnlySpan) + nameWithType: Wgl.EXT.CreatePbufferEXT(nint, int, int, int, ReadOnlySpan) + fullName: OpenTK.Graphics.Wgl.Wgl.EXT.CreatePbufferEXT(nint, int, int, int, System.ReadOnlySpan) + type: Method + source: + id: CreatePbufferEXT + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 764 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Wgl + summary: >- + [requires: WGL_EXT_pbuffer] + + [entry point: wglCreatePbufferEXT] + +
+ example: [] + syntax: + content: public static nint CreatePbufferEXT(nint hDC, int iPixelFormat, int iWidth, int iHeight, ReadOnlySpan piAttribList) + parameters: + - id: hDC + type: System.IntPtr + - id: iPixelFormat + type: System.Int32 + - id: iWidth + type: System.Int32 + - id: iHeight + type: System.Int32 + - id: piAttribList + type: System.ReadOnlySpan{System.Int32} + return: + type: System.IntPtr + content.vb: Public Shared Function CreatePbufferEXT(hDC As IntPtr, iPixelFormat As Integer, iWidth As Integer, iHeight As Integer, piAttribList As ReadOnlySpan(Of Integer)) As IntPtr + overload: OpenTK.Graphics.Wgl.Wgl.EXT.CreatePbufferEXT* + nameWithType.vb: Wgl.EXT.CreatePbufferEXT(IntPtr, Integer, Integer, Integer, ReadOnlySpan(Of Integer)) + fullName.vb: OpenTK.Graphics.Wgl.Wgl.EXT.CreatePbufferEXT(System.IntPtr, Integer, Integer, Integer, System.ReadOnlySpan(Of Integer)) + name.vb: CreatePbufferEXT(IntPtr, Integer, Integer, Integer, ReadOnlySpan(Of Integer)) +- uid: OpenTK.Graphics.Wgl.Wgl.EXT.CreatePbufferEXT(System.IntPtr,System.Int32,System.Int32,System.Int32,System.Int32[]) + commentId: M:OpenTK.Graphics.Wgl.Wgl.EXT.CreatePbufferEXT(System.IntPtr,System.Int32,System.Int32,System.Int32,System.Int32[]) + id: CreatePbufferEXT(System.IntPtr,System.Int32,System.Int32,System.Int32,System.Int32[]) + parent: OpenTK.Graphics.Wgl.Wgl.EXT + langs: + - csharp + - vb + name: CreatePbufferEXT(nint, int, int, int, int[]) + nameWithType: Wgl.EXT.CreatePbufferEXT(nint, int, int, int, int[]) + fullName: OpenTK.Graphics.Wgl.Wgl.EXT.CreatePbufferEXT(nint, int, int, int, int[]) + type: Method + source: + id: CreatePbufferEXT + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 774 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Wgl + summary: >- + [requires: WGL_EXT_pbuffer] + + [entry point: wglCreatePbufferEXT] + +
+ example: [] + syntax: + content: public static nint CreatePbufferEXT(nint hDC, int iPixelFormat, int iWidth, int iHeight, int[] piAttribList) + parameters: + - id: hDC + type: System.IntPtr + - id: iPixelFormat + type: System.Int32 + - id: iWidth + type: System.Int32 + - id: iHeight + type: System.Int32 + - id: piAttribList + type: System.Int32[] + return: + type: System.IntPtr + content.vb: Public Shared Function CreatePbufferEXT(hDC As IntPtr, iPixelFormat As Integer, iWidth As Integer, iHeight As Integer, piAttribList As Integer()) As IntPtr + overload: OpenTK.Graphics.Wgl.Wgl.EXT.CreatePbufferEXT* + nameWithType.vb: Wgl.EXT.CreatePbufferEXT(IntPtr, Integer, Integer, Integer, Integer()) + fullName.vb: OpenTK.Graphics.Wgl.Wgl.EXT.CreatePbufferEXT(System.IntPtr, Integer, Integer, Integer, Integer()) + name.vb: CreatePbufferEXT(IntPtr, Integer, Integer, Integer, Integer()) - uid: OpenTK.Graphics.Wgl.Wgl.EXT.CreatePbufferEXT(System.IntPtr,System.Int32,System.Int32,System.Int32,System.Int32@) commentId: M:OpenTK.Graphics.Wgl.Wgl.EXT.CreatePbufferEXT(System.IntPtr,System.Int32,System.Int32,System.Int32,System.Int32@) id: CreatePbufferEXT(System.IntPtr,System.Int32,System.Int32,System.Int32,System.Int32@) @@ -878,13 +973,9 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.EXT.CreatePbufferEXT(nint, int, int, int, in int) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreatePbufferEXT - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 838 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 784 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -927,13 +1018,9 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.EXT.DestroyPbufferEXT(nint) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DestroyPbufferEXT - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 848 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 794 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -962,13 +1049,9 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.EXT.GetExtensionsStringEXT() type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetExtensionsStringEXT - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 857 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 803 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -991,13 +1074,9 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.EXT.GetPixelFormatAttribfvEXT(nint, int, int, uint, System.Span, System.Span) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetPixelFormatAttribfvEXT - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 866 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 812 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -1042,13 +1121,9 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.EXT.GetPixelFormatAttribfvEXT(nint, int, int, uint, OpenTK.Graphics.Wgl.PixelFormatAttribute[], float[]) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetPixelFormatAttribfvEXT - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 881 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 827 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -1088,18 +1163,14 @@ items: langs: - csharp - vb - name: GetPixelFormatAttribfvEXT(nint, int, int, uint, ref PixelFormatAttribute, ref float) - nameWithType: Wgl.EXT.GetPixelFormatAttribfvEXT(nint, int, int, uint, ref PixelFormatAttribute, ref float) - fullName: OpenTK.Graphics.Wgl.Wgl.EXT.GetPixelFormatAttribfvEXT(nint, int, int, uint, ref OpenTK.Graphics.Wgl.PixelFormatAttribute, ref float) + name: GetPixelFormatAttribfvEXT(nint, int, int, uint, in PixelFormatAttribute, ref float) + nameWithType: Wgl.EXT.GetPixelFormatAttribfvEXT(nint, int, int, uint, in PixelFormatAttribute, ref float) + fullName: OpenTK.Graphics.Wgl.Wgl.EXT.GetPixelFormatAttribfvEXT(nint, int, int, uint, in OpenTK.Graphics.Wgl.PixelFormatAttribute, ref float) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetPixelFormatAttribfvEXT - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 896 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 842 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -1111,7 +1182,7 @@ items:
example: [] syntax: - content: public static bool GetPixelFormatAttribfvEXT(nint hdc, int iPixelFormat, int iLayerPlane, uint nAttributes, ref PixelFormatAttribute piAttributes, ref float pfValues) + content: public static bool GetPixelFormatAttribfvEXT(nint hdc, int iPixelFormat, int iLayerPlane, uint nAttributes, in PixelFormatAttribute piAttributes, ref float pfValues) parameters: - id: hdc type: System.IntPtr @@ -1144,13 +1215,9 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.EXT.GetPixelFormatAttribivEXT(nint, int, int, uint, System.Span, System.Span) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetPixelFormatAttribivEXT - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 909 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 855 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -1195,13 +1262,9 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.EXT.GetPixelFormatAttribivEXT(nint, int, int, uint, OpenTK.Graphics.Wgl.PixelFormatAttribute[], int[]) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetPixelFormatAttribivEXT - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 924 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 870 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -1241,18 +1304,14 @@ items: langs: - csharp - vb - name: GetPixelFormatAttribivEXT(nint, int, int, uint, ref PixelFormatAttribute, ref int) - nameWithType: Wgl.EXT.GetPixelFormatAttribivEXT(nint, int, int, uint, ref PixelFormatAttribute, ref int) - fullName: OpenTK.Graphics.Wgl.Wgl.EXT.GetPixelFormatAttribivEXT(nint, int, int, uint, ref OpenTK.Graphics.Wgl.PixelFormatAttribute, ref int) + name: GetPixelFormatAttribivEXT(nint, int, int, uint, in PixelFormatAttribute, ref int) + nameWithType: Wgl.EXT.GetPixelFormatAttribivEXT(nint, int, int, uint, in PixelFormatAttribute, ref int) + fullName: OpenTK.Graphics.Wgl.Wgl.EXT.GetPixelFormatAttribivEXT(nint, int, int, uint, in OpenTK.Graphics.Wgl.PixelFormatAttribute, ref int) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetPixelFormatAttribivEXT - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 939 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 885 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -1264,7 +1323,7 @@ items:
example: [] syntax: - content: public static bool GetPixelFormatAttribivEXT(nint hdc, int iPixelFormat, int iLayerPlane, uint nAttributes, ref PixelFormatAttribute piAttributes, ref int piValues) + content: public static bool GetPixelFormatAttribivEXT(nint hdc, int iPixelFormat, int iLayerPlane, uint nAttributes, in PixelFormatAttribute piAttributes, ref int piValues) parameters: - id: hdc type: System.IntPtr @@ -1285,25 +1344,21 @@ items: nameWithType.vb: Wgl.EXT.GetPixelFormatAttribivEXT(IntPtr, Integer, Integer, UInteger, PixelFormatAttribute, Integer) fullName.vb: OpenTK.Graphics.Wgl.Wgl.EXT.GetPixelFormatAttribivEXT(System.IntPtr, Integer, Integer, UInteger, OpenTK.Graphics.Wgl.PixelFormatAttribute, Integer) name.vb: GetPixelFormatAttribivEXT(IntPtr, Integer, Integer, UInteger, PixelFormatAttribute, Integer) -- uid: OpenTK.Graphics.Wgl.Wgl.EXT.LoadDisplayColorTableEXT(System.ReadOnlySpan{System.UInt16}) - commentId: M:OpenTK.Graphics.Wgl.Wgl.EXT.LoadDisplayColorTableEXT(System.ReadOnlySpan{System.UInt16}) - id: LoadDisplayColorTableEXT(System.ReadOnlySpan{System.UInt16}) +- uid: OpenTK.Graphics.Wgl.Wgl.EXT.LoadDisplayColorTableEXT(System.ReadOnlySpan{System.UInt16},System.UInt32) + commentId: M:OpenTK.Graphics.Wgl.Wgl.EXT.LoadDisplayColorTableEXT(System.ReadOnlySpan{System.UInt16},System.UInt32) + id: LoadDisplayColorTableEXT(System.ReadOnlySpan{System.UInt16},System.UInt32) parent: OpenTK.Graphics.Wgl.Wgl.EXT langs: - csharp - vb - name: LoadDisplayColorTableEXT(ReadOnlySpan) - nameWithType: Wgl.EXT.LoadDisplayColorTableEXT(ReadOnlySpan) - fullName: OpenTK.Graphics.Wgl.Wgl.EXT.LoadDisplayColorTableEXT(System.ReadOnlySpan) + name: LoadDisplayColorTableEXT(ReadOnlySpan, uint) + nameWithType: Wgl.EXT.LoadDisplayColorTableEXT(ReadOnlySpan, uint) + fullName: OpenTK.Graphics.Wgl.Wgl.EXT.LoadDisplayColorTableEXT(System.ReadOnlySpan, uint) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: LoadDisplayColorTableEXT - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 952 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 898 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -1315,36 +1370,34 @@ items:
example: [] syntax: - content: public static bool LoadDisplayColorTableEXT(ReadOnlySpan table) + content: public static bool LoadDisplayColorTableEXT(ReadOnlySpan table, uint length) parameters: - id: table type: System.ReadOnlySpan{System.UInt16} + - id: length + type: System.UInt32 return: type: System.Boolean - content.vb: Public Shared Function LoadDisplayColorTableEXT(table As ReadOnlySpan(Of UShort)) As Boolean + content.vb: Public Shared Function LoadDisplayColorTableEXT(table As ReadOnlySpan(Of UShort), length As UInteger) As Boolean overload: OpenTK.Graphics.Wgl.Wgl.EXT.LoadDisplayColorTableEXT* - nameWithType.vb: Wgl.EXT.LoadDisplayColorTableEXT(ReadOnlySpan(Of UShort)) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.EXT.LoadDisplayColorTableEXT(System.ReadOnlySpan(Of UShort)) - name.vb: LoadDisplayColorTableEXT(ReadOnlySpan(Of UShort)) -- uid: OpenTK.Graphics.Wgl.Wgl.EXT.LoadDisplayColorTableEXT(System.UInt16[]) - commentId: M:OpenTK.Graphics.Wgl.Wgl.EXT.LoadDisplayColorTableEXT(System.UInt16[]) - id: LoadDisplayColorTableEXT(System.UInt16[]) + nameWithType.vb: Wgl.EXT.LoadDisplayColorTableEXT(ReadOnlySpan(Of UShort), UInteger) + fullName.vb: OpenTK.Graphics.Wgl.Wgl.EXT.LoadDisplayColorTableEXT(System.ReadOnlySpan(Of UShort), UInteger) + name.vb: LoadDisplayColorTableEXT(ReadOnlySpan(Of UShort), UInteger) +- uid: OpenTK.Graphics.Wgl.Wgl.EXT.LoadDisplayColorTableEXT(System.UInt16[],System.UInt32) + commentId: M:OpenTK.Graphics.Wgl.Wgl.EXT.LoadDisplayColorTableEXT(System.UInt16[],System.UInt32) + id: LoadDisplayColorTableEXT(System.UInt16[],System.UInt32) parent: OpenTK.Graphics.Wgl.Wgl.EXT langs: - csharp - vb - name: LoadDisplayColorTableEXT(ushort[]) - nameWithType: Wgl.EXT.LoadDisplayColorTableEXT(ushort[]) - fullName: OpenTK.Graphics.Wgl.Wgl.EXT.LoadDisplayColorTableEXT(ushort[]) + name: LoadDisplayColorTableEXT(ushort[], uint) + nameWithType: Wgl.EXT.LoadDisplayColorTableEXT(ushort[], uint) + fullName: OpenTK.Graphics.Wgl.Wgl.EXT.LoadDisplayColorTableEXT(ushort[], uint) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: LoadDisplayColorTableEXT - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 963 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 908 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -1356,17 +1409,19 @@ items:
example: [] syntax: - content: public static bool LoadDisplayColorTableEXT(ushort[] table) + content: public static bool LoadDisplayColorTableEXT(ushort[] table, uint length) parameters: - id: table type: System.UInt16[] + - id: length + type: System.UInt32 return: type: System.Boolean - content.vb: Public Shared Function LoadDisplayColorTableEXT(table As UShort()) As Boolean + content.vb: Public Shared Function LoadDisplayColorTableEXT(table As UShort(), length As UInteger) As Boolean overload: OpenTK.Graphics.Wgl.Wgl.EXT.LoadDisplayColorTableEXT* - nameWithType.vb: Wgl.EXT.LoadDisplayColorTableEXT(UShort()) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.EXT.LoadDisplayColorTableEXT(UShort()) - name.vb: LoadDisplayColorTableEXT(UShort()) + nameWithType.vb: Wgl.EXT.LoadDisplayColorTableEXT(UShort(), UInteger) + fullName.vb: OpenTK.Graphics.Wgl.Wgl.EXT.LoadDisplayColorTableEXT(UShort(), UInteger) + name.vb: LoadDisplayColorTableEXT(UShort(), UInteger) - uid: OpenTK.Graphics.Wgl.Wgl.EXT.LoadDisplayColorTableEXT(System.UInt16@,System.UInt32) commentId: M:OpenTK.Graphics.Wgl.Wgl.EXT.LoadDisplayColorTableEXT(System.UInt16@,System.UInt32) id: LoadDisplayColorTableEXT(System.UInt16@,System.UInt32) @@ -1379,13 +1434,9 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.EXT.LoadDisplayColorTableEXT(in ushort, uint) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: LoadDisplayColorTableEXT - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 974 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 918 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -1422,13 +1473,9 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.EXT.MakeContextCurrentEXT(nint, nint, nint) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MakeContextCurrentEXT - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 984 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 928 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -1449,96 +1496,6 @@ items: nameWithType.vb: Wgl.EXT.MakeContextCurrentEXT(IntPtr, IntPtr, IntPtr) fullName.vb: OpenTK.Graphics.Wgl.Wgl.EXT.MakeContextCurrentEXT(System.IntPtr, System.IntPtr, System.IntPtr) name.vb: MakeContextCurrentEXT(IntPtr, IntPtr, IntPtr) -- uid: OpenTK.Graphics.Wgl.Wgl.EXT.QueryPbufferEXT(System.IntPtr,OpenTK.Graphics.Wgl.PBufferAttribute,System.Span{System.Int32}) - commentId: M:OpenTK.Graphics.Wgl.Wgl.EXT.QueryPbufferEXT(System.IntPtr,OpenTK.Graphics.Wgl.PBufferAttribute,System.Span{System.Int32}) - id: QueryPbufferEXT(System.IntPtr,OpenTK.Graphics.Wgl.PBufferAttribute,System.Span{System.Int32}) - parent: OpenTK.Graphics.Wgl.Wgl.EXT - langs: - - csharp - - vb - name: QueryPbufferEXT(nint, PBufferAttribute, Span) - nameWithType: Wgl.EXT.QueryPbufferEXT(nint, PBufferAttribute, Span) - fullName: OpenTK.Graphics.Wgl.Wgl.EXT.QueryPbufferEXT(nint, OpenTK.Graphics.Wgl.PBufferAttribute, System.Span) - type: Method - source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: QueryPbufferEXT - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 993 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_EXT_pbuffer] - - [entry point: wglQueryPbufferEXT] - -
- example: [] - syntax: - content: public static bool QueryPbufferEXT(nint hPbuffer, PBufferAttribute iAttribute, Span piValue) - parameters: - - id: hPbuffer - type: System.IntPtr - - id: iAttribute - type: OpenTK.Graphics.Wgl.PBufferAttribute - - id: piValue - type: System.Span{System.Int32} - return: - type: System.Boolean - content.vb: Public Shared Function QueryPbufferEXT(hPbuffer As IntPtr, iAttribute As PBufferAttribute, piValue As Span(Of Integer)) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.EXT.QueryPbufferEXT* - nameWithType.vb: Wgl.EXT.QueryPbufferEXT(IntPtr, PBufferAttribute, Span(Of Integer)) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.EXT.QueryPbufferEXT(System.IntPtr, OpenTK.Graphics.Wgl.PBufferAttribute, System.Span(Of Integer)) - name.vb: QueryPbufferEXT(IntPtr, PBufferAttribute, Span(Of Integer)) -- uid: OpenTK.Graphics.Wgl.Wgl.EXT.QueryPbufferEXT(System.IntPtr,OpenTK.Graphics.Wgl.PBufferAttribute,System.Int32[]) - commentId: M:OpenTK.Graphics.Wgl.Wgl.EXT.QueryPbufferEXT(System.IntPtr,OpenTK.Graphics.Wgl.PBufferAttribute,System.Int32[]) - id: QueryPbufferEXT(System.IntPtr,OpenTK.Graphics.Wgl.PBufferAttribute,System.Int32[]) - parent: OpenTK.Graphics.Wgl.Wgl.EXT - langs: - - csharp - - vb - name: QueryPbufferEXT(nint, PBufferAttribute, int[]) - nameWithType: Wgl.EXT.QueryPbufferEXT(nint, PBufferAttribute, int[]) - fullName: OpenTK.Graphics.Wgl.Wgl.EXT.QueryPbufferEXT(nint, OpenTK.Graphics.Wgl.PBufferAttribute, int[]) - type: Method - source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: QueryPbufferEXT - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 1005 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_EXT_pbuffer] - - [entry point: wglQueryPbufferEXT] - -
- example: [] - syntax: - content: public static bool QueryPbufferEXT(nint hPbuffer, PBufferAttribute iAttribute, int[] piValue) - parameters: - - id: hPbuffer - type: System.IntPtr - - id: iAttribute - type: OpenTK.Graphics.Wgl.PBufferAttribute - - id: piValue - type: System.Int32[] - return: - type: System.Boolean - content.vb: Public Shared Function QueryPbufferEXT(hPbuffer As IntPtr, iAttribute As PBufferAttribute, piValue As Integer()) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.EXT.QueryPbufferEXT* - nameWithType.vb: Wgl.EXT.QueryPbufferEXT(IntPtr, PBufferAttribute, Integer()) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.EXT.QueryPbufferEXT(System.IntPtr, OpenTK.Graphics.Wgl.PBufferAttribute, Integer()) - name.vb: QueryPbufferEXT(IntPtr, PBufferAttribute, Integer()) - uid: OpenTK.Graphics.Wgl.Wgl.EXT.QueryPbufferEXT(System.IntPtr,OpenTK.Graphics.Wgl.PBufferAttribute,System.Int32@) commentId: M:OpenTK.Graphics.Wgl.Wgl.EXT.QueryPbufferEXT(System.IntPtr,OpenTK.Graphics.Wgl.PBufferAttribute,System.Int32@) id: QueryPbufferEXT(System.IntPtr,OpenTK.Graphics.Wgl.PBufferAttribute,System.Int32@) @@ -1546,18 +1503,14 @@ items: langs: - csharp - vb - name: QueryPbufferEXT(nint, PBufferAttribute, ref int) - nameWithType: Wgl.EXT.QueryPbufferEXT(nint, PBufferAttribute, ref int) - fullName: OpenTK.Graphics.Wgl.Wgl.EXT.QueryPbufferEXT(nint, OpenTK.Graphics.Wgl.PBufferAttribute, ref int) + name: QueryPbufferEXT(nint, PBufferAttribute, out int) + nameWithType: Wgl.EXT.QueryPbufferEXT(nint, PBufferAttribute, out int) + fullName: OpenTK.Graphics.Wgl.Wgl.EXT.QueryPbufferEXT(nint, OpenTK.Graphics.Wgl.PBufferAttribute, out int) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: QueryPbufferEXT - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 1017 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 937 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -1569,7 +1522,7 @@ items:
example: [] syntax: - content: public static bool QueryPbufferEXT(nint hPbuffer, PBufferAttribute iAttribute, ref int piValue) + content: public static bool QueryPbufferEXT(nint hPbuffer, PBufferAttribute iAttribute, out int piValue) parameters: - id: hPbuffer type: System.IntPtr @@ -1596,13 +1549,9 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.EXT.SwapIntervalEXT(int) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SwapIntervalEXT - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 1029 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 949 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -2172,17 +2121,76 @@ references: name: SwapIntervalEXT_ nameWithType: Wgl.EXT.SwapIntervalEXT_ fullName: OpenTK.Graphics.Wgl.Wgl.EXT.SwapIntervalEXT_ -- uid: System.Single - commentId: T:System.Single +- uid: System.ReadOnlySpan{System.Int32} + commentId: T:System.ReadOnlySpan{System.Int32} parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.single - name: float - nameWithType: float - fullName: float - nameWithType.vb: Single - fullName.vb: Single - name.vb: Single + definition: System.ReadOnlySpan`1 + href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 + name: ReadOnlySpan + nameWithType: ReadOnlySpan + fullName: System.ReadOnlySpan + nameWithType.vb: ReadOnlySpan(Of Integer) + fullName.vb: System.ReadOnlySpan(Of Integer) + name.vb: ReadOnlySpan(Of Integer) + spec.csharp: + - uid: System.ReadOnlySpan`1 + name: ReadOnlySpan + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 + - name: < + - uid: System.Int32 + name: int + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: '>' + spec.vb: + - uid: System.ReadOnlySpan`1 + name: ReadOnlySpan + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 + - name: ( + - name: Of + - name: " " + - uid: System.Int32 + name: Integer + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ) +- uid: System.ReadOnlySpan{System.Single} + commentId: T:System.ReadOnlySpan{System.Single} + parent: System + definition: System.ReadOnlySpan`1 + href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 + name: ReadOnlySpan + nameWithType: ReadOnlySpan + fullName: System.ReadOnlySpan + nameWithType.vb: ReadOnlySpan(Of Single) + fullName.vb: System.ReadOnlySpan(Of Single) + name.vb: ReadOnlySpan(Of Single) + spec.csharp: + - uid: System.ReadOnlySpan`1 + name: ReadOnlySpan + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 + - name: < + - uid: System.Single + name: float + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.single + - name: '>' + spec.vb: + - uid: System.ReadOnlySpan`1 + name: ReadOnlySpan + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 + - name: ( + - name: Of + - name: " " + - uid: System.Single + name: Single + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.single + - name: ) - uid: System.Span{System.Int32} commentId: T:System.Span{System.Int32} parent: System @@ -2218,40 +2226,33 @@ references: isExternal: true href: https://learn.microsoft.com/dotnet/api/system.int32 - name: ) -- uid: System.Span{System.UInt32} - commentId: T:System.Span{System.UInt32} - parent: System - definition: System.Span`1 - href: https://learn.microsoft.com/dotnet/api/system.span-1 - name: Span - nameWithType: Span - fullName: System.Span - nameWithType.vb: Span(Of UInteger) - fullName.vb: System.Span(Of UInteger) - name.vb: Span(Of UInteger) +- uid: System.ReadOnlySpan`1 + commentId: T:System.ReadOnlySpan`1 + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 + name: ReadOnlySpan + nameWithType: ReadOnlySpan + fullName: System.ReadOnlySpan + nameWithType.vb: ReadOnlySpan(Of T) + fullName.vb: System.ReadOnlySpan(Of T) + name.vb: ReadOnlySpan(Of T) spec.csharp: - - uid: System.Span`1 - name: Span + - uid: System.ReadOnlySpan`1 + name: ReadOnlySpan isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.span-1 + href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - name: < - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 + - name: T - name: '>' spec.vb: - - uid: System.Span`1 - name: Span + - uid: System.ReadOnlySpan`1 + name: ReadOnlySpan isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.span-1 + href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - name: ( - name: Of - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 + - name: T - name: ) - uid: System.Span`1 commentId: T:System.Span`1 @@ -2304,29 +2305,40 @@ references: href: https://learn.microsoft.com/dotnet/api/system.int32 - name: ( - name: ) -- uid: System.UInt32[] +- uid: System.Single[] isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - name: uint[] - nameWithType: uint[] - fullName: uint[] - nameWithType.vb: UInteger() - fullName.vb: UInteger() - name.vb: UInteger() + href: https://learn.microsoft.com/dotnet/api/system.single + name: float[] + nameWithType: float[] + fullName: float[] + nameWithType.vb: Single() + fullName.vb: Single() + name.vb: Single() spec.csharp: - - uid: System.UInt32 - name: uint + - uid: System.Single + name: float isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 + href: https://learn.microsoft.com/dotnet/api/system.single - name: '[' - name: ']' spec.vb: - - uid: System.UInt32 - name: UInteger + - uid: System.Single + name: Single isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 + href: https://learn.microsoft.com/dotnet/api/system.single - name: ( - name: ) +- uid: System.Single + commentId: T:System.Single + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.single + name: float + nameWithType: float + fullName: float + nameWithType.vb: Single + fullName.vb: Single + name.vb: Single - uid: OpenTK.Graphics.Wgl.Wgl.EXT.DestroyPbufferEXT* commentId: Overload:OpenTK.Graphics.Wgl.Wgl.EXT.DestroyPbufferEXT href: OpenTK.Graphics.Wgl.Wgl.EXT.html#OpenTK_Graphics_Wgl_Wgl_EXT_DestroyPbufferEXT_System_IntPtr_ @@ -2439,29 +2451,6 @@ references: href: OpenTK.Graphics.Wgl.PixelFormatAttribute.html - name: ( - name: ) -- uid: System.Single[] - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.single - name: float[] - nameWithType: float[] - fullName: float[] - nameWithType.vb: Single() - fullName.vb: Single() - name.vb: Single() - spec.csharp: - - uid: System.Single - name: float - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.single - - name: '[' - - name: ']' - spec.vb: - - uid: System.Single - name: Single - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.single - - name: ( - - name: ) - uid: OpenTK.Graphics.Wgl.PixelFormatAttribute commentId: T:OpenTK.Graphics.Wgl.PixelFormatAttribute parent: OpenTK.Graphics.Wgl @@ -2504,34 +2493,6 @@ references: isExternal: true href: https://learn.microsoft.com/dotnet/api/system.uint16 - name: ) -- uid: System.ReadOnlySpan`1 - commentId: T:System.ReadOnlySpan`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - name: ReadOnlySpan - nameWithType: ReadOnlySpan - fullName: System.ReadOnlySpan - nameWithType.vb: ReadOnlySpan(Of T) - fullName.vb: System.ReadOnlySpan(Of T) - name.vb: ReadOnlySpan(Of T) - spec.csharp: - - uid: System.ReadOnlySpan`1 - name: ReadOnlySpan - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.ReadOnlySpan`1 - name: ReadOnlySpan - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - uid: System.UInt16[] isExternal: true href: https://learn.microsoft.com/dotnet/api/system.uint16 diff --git a/api/OpenTK.Graphics.Wgl.Wgl.I3D.yml b/api/OpenTK.Graphics.Wgl.Wgl.I3D.yml index f961e55f..4a4152cb 100644 --- a/api/OpenTK.Graphics.Wgl.Wgl.I3D.yml +++ b/api/OpenTK.Graphics.Wgl.Wgl.I3D.yml @@ -11,7 +11,7 @@ items: - OpenTK.Graphics.Wgl.Wgl.I3D.AssociateImageBufferEventsI3D(System.IntPtr,System.ReadOnlySpan{System.IntPtr},System.ReadOnlySpan{System.IntPtr},System.ReadOnlySpan{System.UInt32},System.UInt32) - OpenTK.Graphics.Wgl.Wgl.I3D.BeginFrameTrackingI3D - OpenTK.Graphics.Wgl.Wgl.I3D.BeginFrameTrackingI3D_ - - OpenTK.Graphics.Wgl.Wgl.I3D.CreateImageBufferI3D(System.IntPtr,System.UInt32,OpenTK.Graphics.Wgl.WGLImageBufferMaskI3D) + - OpenTK.Graphics.Wgl.Wgl.I3D.CreateImageBufferI3D(System.IntPtr,System.UInt32,OpenTK.Graphics.Wgl.ImageBufferMaskI3D) - OpenTK.Graphics.Wgl.Wgl.I3D.DestroyImageBufferI3D(System.IntPtr,System.IntPtr) - OpenTK.Graphics.Wgl.Wgl.I3D.DestroyImageBufferI3D_(System.IntPtr,System.IntPtr) - OpenTK.Graphics.Wgl.Wgl.I3D.DisableFrameLockI3D @@ -34,72 +34,44 @@ items: - OpenTK.Graphics.Wgl.Wgl.I3D.GenlockSourceI3D_(System.IntPtr,System.UInt32) - OpenTK.Graphics.Wgl.Wgl.I3D.GetDigitalVideoParametersI3D(System.IntPtr,OpenTK.Graphics.Wgl.DigitalVideoAttribute,System.Int32*) - OpenTK.Graphics.Wgl.Wgl.I3D.GetDigitalVideoParametersI3D(System.IntPtr,OpenTK.Graphics.Wgl.DigitalVideoAttribute,System.Int32@) - - OpenTK.Graphics.Wgl.Wgl.I3D.GetDigitalVideoParametersI3D(System.IntPtr,OpenTK.Graphics.Wgl.DigitalVideoAttribute,System.Int32[]) - - OpenTK.Graphics.Wgl.Wgl.I3D.GetDigitalVideoParametersI3D(System.IntPtr,OpenTK.Graphics.Wgl.DigitalVideoAttribute,System.Span{System.Int32}) - OpenTK.Graphics.Wgl.Wgl.I3D.GetFrameUsageI3D(System.Single*) - OpenTK.Graphics.Wgl.Wgl.I3D.GetFrameUsageI3D(System.Single@) - - OpenTK.Graphics.Wgl.Wgl.I3D.GetFrameUsageI3D(System.Single[]) - - OpenTK.Graphics.Wgl.Wgl.I3D.GetFrameUsageI3D(System.Span{System.Single}) - OpenTK.Graphics.Wgl.Wgl.I3D.GetGammaTableI3D(System.IntPtr,System.Int32,System.Span{System.UInt16},System.Span{System.UInt16},System.Span{System.UInt16}) - OpenTK.Graphics.Wgl.Wgl.I3D.GetGammaTableI3D(System.IntPtr,System.Int32,System.UInt16*,System.UInt16*,System.UInt16*) - OpenTK.Graphics.Wgl.Wgl.I3D.GetGammaTableI3D(System.IntPtr,System.Int32,System.UInt16@,System.UInt16@,System.UInt16@) - OpenTK.Graphics.Wgl.Wgl.I3D.GetGammaTableI3D(System.IntPtr,System.Int32,System.UInt16[],System.UInt16[],System.UInt16[]) - OpenTK.Graphics.Wgl.Wgl.I3D.GetGammaTableParametersI3D(System.IntPtr,OpenTK.Graphics.Wgl.GammaTableAttribute,System.Int32*) - OpenTK.Graphics.Wgl.Wgl.I3D.GetGammaTableParametersI3D(System.IntPtr,OpenTK.Graphics.Wgl.GammaTableAttribute,System.Int32@) - - OpenTK.Graphics.Wgl.Wgl.I3D.GetGammaTableParametersI3D(System.IntPtr,OpenTK.Graphics.Wgl.GammaTableAttribute,System.Int32[]) - - OpenTK.Graphics.Wgl.Wgl.I3D.GetGammaTableParametersI3D(System.IntPtr,OpenTK.Graphics.Wgl.GammaTableAttribute,System.Span{System.Int32}) - - OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSampleRateI3D(System.IntPtr,System.Span{System.UInt32}) - OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSampleRateI3D(System.IntPtr,System.UInt32*) - OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSampleRateI3D(System.IntPtr,System.UInt32@) - - OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSampleRateI3D(System.IntPtr,System.UInt32[]) - - OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSourceDelayI3D(System.IntPtr,System.Span{System.UInt32}) - OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSourceDelayI3D(System.IntPtr,System.UInt32*) - OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSourceDelayI3D(System.IntPtr,System.UInt32@) - - OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSourceDelayI3D(System.IntPtr,System.UInt32[]) - - OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSourceEdgeI3D(System.IntPtr,System.Span{System.UInt32}) - OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSourceEdgeI3D(System.IntPtr,System.UInt32*) - OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSourceEdgeI3D(System.IntPtr,System.UInt32@) - - OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSourceEdgeI3D(System.IntPtr,System.UInt32[]) - - OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSourceI3D(System.IntPtr,System.Span{System.UInt32}) - OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSourceI3D(System.IntPtr,System.UInt32*) - OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSourceI3D(System.IntPtr,System.UInt32@) - - OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSourceI3D(System.IntPtr,System.UInt32[]) - OpenTK.Graphics.Wgl.Wgl.I3D.IsEnabledFrameLockI3D(System.Int32*) - OpenTK.Graphics.Wgl.Wgl.I3D.IsEnabledFrameLockI3D(System.Int32@) - - OpenTK.Graphics.Wgl.Wgl.I3D.IsEnabledFrameLockI3D(System.Int32[]) - - OpenTK.Graphics.Wgl.Wgl.I3D.IsEnabledFrameLockI3D(System.Span{System.Int32}) - OpenTK.Graphics.Wgl.Wgl.I3D.IsEnabledGenlockI3D(System.IntPtr,System.Int32*) - OpenTK.Graphics.Wgl.Wgl.I3D.IsEnabledGenlockI3D(System.IntPtr,System.Int32@) - - OpenTK.Graphics.Wgl.Wgl.I3D.IsEnabledGenlockI3D(System.IntPtr,System.Int32[]) - - OpenTK.Graphics.Wgl.Wgl.I3D.IsEnabledGenlockI3D(System.IntPtr,System.Span{System.Int32}) - OpenTK.Graphics.Wgl.Wgl.I3D.QueryFrameLockMasterI3D(System.Int32*) - OpenTK.Graphics.Wgl.Wgl.I3D.QueryFrameLockMasterI3D(System.Int32@) - - OpenTK.Graphics.Wgl.Wgl.I3D.QueryFrameLockMasterI3D(System.Int32[]) - - OpenTK.Graphics.Wgl.Wgl.I3D.QueryFrameLockMasterI3D(System.Span{System.Int32}) - - OpenTK.Graphics.Wgl.Wgl.I3D.QueryFrameTrackingI3D(System.Span{System.UInt32},System.Span{System.UInt32},System.Span{System.Single}) - OpenTK.Graphics.Wgl.Wgl.I3D.QueryFrameTrackingI3D(System.UInt32*,System.UInt32*,System.Single*) - OpenTK.Graphics.Wgl.Wgl.I3D.QueryFrameTrackingI3D(System.UInt32@,System.UInt32@,System.Single@) - - OpenTK.Graphics.Wgl.Wgl.I3D.QueryFrameTrackingI3D(System.UInt32[],System.UInt32[],System.Single[]) - - OpenTK.Graphics.Wgl.Wgl.I3D.QueryGenlockMaxSourceDelayI3D(System.IntPtr,System.Span{System.UInt32},System.Span{System.UInt32}) - OpenTK.Graphics.Wgl.Wgl.I3D.QueryGenlockMaxSourceDelayI3D(System.IntPtr,System.UInt32*,System.UInt32*) - OpenTK.Graphics.Wgl.Wgl.I3D.QueryGenlockMaxSourceDelayI3D(System.IntPtr,System.UInt32@,System.UInt32@) - - OpenTK.Graphics.Wgl.Wgl.I3D.QueryGenlockMaxSourceDelayI3D(System.IntPtr,System.UInt32[],System.UInt32[]) - OpenTK.Graphics.Wgl.Wgl.I3D.ReleaseImageBufferEventsI3D(System.IntPtr,System.IntPtr*,System.UInt32) - OpenTK.Graphics.Wgl.Wgl.I3D.ReleaseImageBufferEventsI3D(System.IntPtr,System.IntPtr@,System.UInt32) - - OpenTK.Graphics.Wgl.Wgl.I3D.ReleaseImageBufferEventsI3D(System.IntPtr,System.IntPtr[]) - - OpenTK.Graphics.Wgl.Wgl.I3D.ReleaseImageBufferEventsI3D(System.IntPtr,System.ReadOnlySpan{System.IntPtr}) + - OpenTK.Graphics.Wgl.Wgl.I3D.ReleaseImageBufferEventsI3D(System.IntPtr,System.IntPtr[],System.UInt32) + - OpenTK.Graphics.Wgl.Wgl.I3D.ReleaseImageBufferEventsI3D(System.IntPtr,System.ReadOnlySpan{System.IntPtr},System.UInt32) - OpenTK.Graphics.Wgl.Wgl.I3D.SetDigitalVideoParametersI3D(System.IntPtr,OpenTK.Graphics.Wgl.DigitalVideoAttribute,System.Int32*) - OpenTK.Graphics.Wgl.Wgl.I3D.SetDigitalVideoParametersI3D(System.IntPtr,OpenTK.Graphics.Wgl.DigitalVideoAttribute,System.Int32@) - - OpenTK.Graphics.Wgl.Wgl.I3D.SetDigitalVideoParametersI3D(System.IntPtr,OpenTK.Graphics.Wgl.DigitalVideoAttribute,System.Int32[]) - - OpenTK.Graphics.Wgl.Wgl.I3D.SetDigitalVideoParametersI3D(System.IntPtr,OpenTK.Graphics.Wgl.DigitalVideoAttribute,System.ReadOnlySpan{System.Int32}) - OpenTK.Graphics.Wgl.Wgl.I3D.SetGammaTableI3D(System.IntPtr,System.Int32,System.ReadOnlySpan{System.UInt16},System.ReadOnlySpan{System.UInt16},System.ReadOnlySpan{System.UInt16}) - OpenTK.Graphics.Wgl.Wgl.I3D.SetGammaTableI3D(System.IntPtr,System.Int32,System.UInt16*,System.UInt16*,System.UInt16*) - OpenTK.Graphics.Wgl.Wgl.I3D.SetGammaTableI3D(System.IntPtr,System.Int32,System.UInt16@,System.UInt16@,System.UInt16@) - OpenTK.Graphics.Wgl.Wgl.I3D.SetGammaTableI3D(System.IntPtr,System.Int32,System.UInt16[],System.UInt16[],System.UInt16[]) - OpenTK.Graphics.Wgl.Wgl.I3D.SetGammaTableParametersI3D(System.IntPtr,OpenTK.Graphics.Wgl.GammaTableAttribute,System.Int32*) - OpenTK.Graphics.Wgl.Wgl.I3D.SetGammaTableParametersI3D(System.IntPtr,OpenTK.Graphics.Wgl.GammaTableAttribute,System.Int32@) - - OpenTK.Graphics.Wgl.Wgl.I3D.SetGammaTableParametersI3D(System.IntPtr,OpenTK.Graphics.Wgl.GammaTableAttribute,System.Int32[]) - - OpenTK.Graphics.Wgl.Wgl.I3D.SetGammaTableParametersI3D(System.IntPtr,OpenTK.Graphics.Wgl.GammaTableAttribute,System.ReadOnlySpan{System.Int32}) langs: - csharp - vb @@ -108,13 +80,9 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.I3D type: Class source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: I3D - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 1038 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 958 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -145,17 +113,18 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.I3D.AssociateImageBufferEventsI3D(nint, nint*, nint*, uint*, uint) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: AssociateImageBufferEventsI3D - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs startLine: 247 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl - summary: '[requires: WGL_I3D_image_buffer] [entry point: wglAssociateImageBufferEventsI3D]
' + summary: >- + [requires: WGL_I3D_image_buffer] + + [entry point: wglAssociateImageBufferEventsI3D] + +
example: [] syntax: content: public static int AssociateImageBufferEventsI3D(nint hDC, nint* pEvent, nint* pAddress, uint* pSize, uint count) @@ -189,17 +158,18 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.I3D.BeginFrameTrackingI3D_() type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: BeginFrameTrackingI3D_ - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs startLine: 250 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl - summary: '[requires: WGL_I3D_swap_frame_usage] [entry point: wglBeginFrameTrackingI3D]
' + summary: >- + [requires: WGL_I3D_swap_frame_usage] + + [entry point: wglBeginFrameTrackingI3D] + +
example: [] syntax: content: public static int BeginFrameTrackingI3D_() @@ -207,46 +177,47 @@ items: type: System.Int32 content.vb: Public Shared Function BeginFrameTrackingI3D_() As Integer overload: OpenTK.Graphics.Wgl.Wgl.I3D.BeginFrameTrackingI3D_* -- uid: OpenTK.Graphics.Wgl.Wgl.I3D.CreateImageBufferI3D(System.IntPtr,System.UInt32,OpenTK.Graphics.Wgl.WGLImageBufferMaskI3D) - commentId: M:OpenTK.Graphics.Wgl.Wgl.I3D.CreateImageBufferI3D(System.IntPtr,System.UInt32,OpenTK.Graphics.Wgl.WGLImageBufferMaskI3D) - id: CreateImageBufferI3D(System.IntPtr,System.UInt32,OpenTK.Graphics.Wgl.WGLImageBufferMaskI3D) +- uid: OpenTK.Graphics.Wgl.Wgl.I3D.CreateImageBufferI3D(System.IntPtr,System.UInt32,OpenTK.Graphics.Wgl.ImageBufferMaskI3D) + commentId: M:OpenTK.Graphics.Wgl.Wgl.I3D.CreateImageBufferI3D(System.IntPtr,System.UInt32,OpenTK.Graphics.Wgl.ImageBufferMaskI3D) + id: CreateImageBufferI3D(System.IntPtr,System.UInt32,OpenTK.Graphics.Wgl.ImageBufferMaskI3D) parent: OpenTK.Graphics.Wgl.Wgl.I3D langs: - csharp - vb - name: CreateImageBufferI3D(nint, uint, WGLImageBufferMaskI3D) - nameWithType: Wgl.I3D.CreateImageBufferI3D(nint, uint, WGLImageBufferMaskI3D) - fullName: OpenTK.Graphics.Wgl.Wgl.I3D.CreateImageBufferI3D(nint, uint, OpenTK.Graphics.Wgl.WGLImageBufferMaskI3D) + name: CreateImageBufferI3D(nint, uint, ImageBufferMaskI3D) + nameWithType: Wgl.I3D.CreateImageBufferI3D(nint, uint, ImageBufferMaskI3D) + fullName: OpenTK.Graphics.Wgl.Wgl.I3D.CreateImageBufferI3D(nint, uint, OpenTK.Graphics.Wgl.ImageBufferMaskI3D) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateImageBufferI3D - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs startLine: 253 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl - summary: '[requires: WGL_I3D_image_buffer] [entry point: wglCreateImageBufferI3D]
' + summary: >- + [requires: WGL_I3D_image_buffer] + + [entry point: wglCreateImageBufferI3D] + +
example: [] syntax: - content: public static nint CreateImageBufferI3D(nint hDC, uint dwSize, WGLImageBufferMaskI3D uFlags) + content: public static nint CreateImageBufferI3D(nint hDC, uint dwSize, ImageBufferMaskI3D uFlags) parameters: - id: hDC type: System.IntPtr - id: dwSize type: System.UInt32 - id: uFlags - type: OpenTK.Graphics.Wgl.WGLImageBufferMaskI3D + type: OpenTK.Graphics.Wgl.ImageBufferMaskI3D return: type: System.IntPtr - content.vb: Public Shared Function CreateImageBufferI3D(hDC As IntPtr, dwSize As UInteger, uFlags As WGLImageBufferMaskI3D) As IntPtr + content.vb: Public Shared Function CreateImageBufferI3D(hDC As IntPtr, dwSize As UInteger, uFlags As ImageBufferMaskI3D) As IntPtr overload: OpenTK.Graphics.Wgl.Wgl.I3D.CreateImageBufferI3D* - nameWithType.vb: Wgl.I3D.CreateImageBufferI3D(IntPtr, UInteger, WGLImageBufferMaskI3D) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.I3D.CreateImageBufferI3D(System.IntPtr, UInteger, OpenTK.Graphics.Wgl.WGLImageBufferMaskI3D) - name.vb: CreateImageBufferI3D(IntPtr, UInteger, WGLImageBufferMaskI3D) + nameWithType.vb: Wgl.I3D.CreateImageBufferI3D(IntPtr, UInteger, ImageBufferMaskI3D) + fullName.vb: OpenTK.Graphics.Wgl.Wgl.I3D.CreateImageBufferI3D(System.IntPtr, UInteger, OpenTK.Graphics.Wgl.ImageBufferMaskI3D) + name.vb: CreateImageBufferI3D(IntPtr, UInteger, ImageBufferMaskI3D) - uid: OpenTK.Graphics.Wgl.Wgl.I3D.DestroyImageBufferI3D_(System.IntPtr,System.IntPtr) commentId: M:OpenTK.Graphics.Wgl.Wgl.I3D.DestroyImageBufferI3D_(System.IntPtr,System.IntPtr) id: DestroyImageBufferI3D_(System.IntPtr,System.IntPtr) @@ -259,17 +230,18 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.I3D.DestroyImageBufferI3D_(nint, nint) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DestroyImageBufferI3D_ - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs startLine: 256 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl - summary: '[requires: WGL_I3D_image_buffer] [entry point: wglDestroyImageBufferI3D]
' + summary: >- + [requires: WGL_I3D_image_buffer] + + [entry point: wglDestroyImageBufferI3D] + +
example: [] syntax: content: public static int DestroyImageBufferI3D_(nint hDC, nint pAddress) @@ -297,17 +269,18 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.I3D.DisableFrameLockI3D_() type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DisableFrameLockI3D_ - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs startLine: 259 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl - summary: '[requires: WGL_I3D_swap_frame_lock] [entry point: wglDisableFrameLockI3D]
' + summary: >- + [requires: WGL_I3D_swap_frame_lock] + + [entry point: wglDisableFrameLockI3D] + +
example: [] syntax: content: public static int DisableFrameLockI3D_() @@ -327,17 +300,18 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.I3D.DisableGenlockI3D_(nint) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DisableGenlockI3D_ - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs startLine: 262 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl - summary: '[requires: WGL_I3D_genlock] [entry point: wglDisableGenlockI3D]
' + summary: >- + [requires: WGL_I3D_genlock] + + [entry point: wglDisableGenlockI3D] + +
example: [] syntax: content: public static int DisableGenlockI3D_(nint hDC) @@ -363,17 +337,18 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.I3D.EnableFrameLockI3D_() type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: EnableFrameLockI3D_ - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs startLine: 265 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl - summary: '[requires: WGL_I3D_swap_frame_lock] [entry point: wglEnableFrameLockI3D]
' + summary: >- + [requires: WGL_I3D_swap_frame_lock] + + [entry point: wglEnableFrameLockI3D] + +
example: [] syntax: content: public static int EnableFrameLockI3D_() @@ -393,17 +368,18 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.I3D.EnableGenlockI3D_(nint) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: EnableGenlockI3D_ - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs startLine: 268 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl - summary: '[requires: WGL_I3D_genlock] [entry point: wglEnableGenlockI3D]
' + summary: >- + [requires: WGL_I3D_genlock] + + [entry point: wglEnableGenlockI3D] + +
example: [] syntax: content: public static int EnableGenlockI3D_(nint hDC) @@ -429,17 +405,18 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.I3D.EndFrameTrackingI3D_() type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: EndFrameTrackingI3D_ - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs startLine: 271 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl - summary: '[requires: WGL_I3D_swap_frame_usage] [entry point: wglEndFrameTrackingI3D]
' + summary: >- + [requires: WGL_I3D_swap_frame_usage] + + [entry point: wglEndFrameTrackingI3D] + +
example: [] syntax: content: public static int EndFrameTrackingI3D_() @@ -459,17 +436,18 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.I3D.GenlockSampleRateI3D_(nint, uint) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GenlockSampleRateI3D_ - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs startLine: 274 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl - summary: '[requires: WGL_I3D_genlock] [entry point: wglGenlockSampleRateI3D]
' + summary: >- + [requires: WGL_I3D_genlock] + + [entry point: wglGenlockSampleRateI3D] + +
example: [] syntax: content: public static int GenlockSampleRateI3D_(nint hDC, uint uRate) @@ -497,17 +475,18 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.I3D.GenlockSourceDelayI3D_(nint, uint) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GenlockSourceDelayI3D_ - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs startLine: 277 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl - summary: '[requires: WGL_I3D_genlock] [entry point: wglGenlockSourceDelayI3D]
' + summary: >- + [requires: WGL_I3D_genlock] + + [entry point: wglGenlockSourceDelayI3D] + +
example: [] syntax: content: public static int GenlockSourceDelayI3D_(nint hDC, uint uDelay) @@ -535,17 +514,18 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.I3D.GenlockSourceEdgeI3D_(nint, uint) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GenlockSourceEdgeI3D_ - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs startLine: 280 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl - summary: '[requires: WGL_I3D_genlock] [entry point: wglGenlockSourceEdgeI3D]
' + summary: >- + [requires: WGL_I3D_genlock] + + [entry point: wglGenlockSourceEdgeI3D] + +
example: [] syntax: content: public static int GenlockSourceEdgeI3D_(nint hDC, uint uEdge) @@ -573,17 +553,18 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.I3D.GenlockSourceI3D_(nint, uint) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GenlockSourceI3D_ - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs startLine: 283 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl - summary: '[requires: WGL_I3D_genlock] [entry point: wglGenlockSourceI3D]
' + summary: >- + [requires: WGL_I3D_genlock] + + [entry point: wglGenlockSourceI3D] + +
example: [] syntax: content: public static int GenlockSourceI3D_(nint hDC, uint uSource) @@ -611,17 +592,18 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.I3D.GetDigitalVideoParametersI3D(nint, OpenTK.Graphics.Wgl.DigitalVideoAttribute, int*) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetDigitalVideoParametersI3D - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs startLine: 286 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl - summary: '[requires: WGL_I3D_digital_video_control] [entry point: wglGetDigitalVideoParametersI3D]
' + summary: >- + [requires: WGL_I3D_digital_video_control] + + [entry point: wglGetDigitalVideoParametersI3D] + +
example: [] syntax: content: public static int GetDigitalVideoParametersI3D(nint hDC, DigitalVideoAttribute iAttribute, int* piValue) @@ -651,17 +633,18 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.I3D.GetFrameUsageI3D(float*) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetFrameUsageI3D - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs startLine: 289 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl - summary: '[requires: WGL_I3D_swap_frame_usage] [entry point: wglGetFrameUsageI3D]
' + summary: >- + [requires: WGL_I3D_swap_frame_usage] + + [entry point: wglGetFrameUsageI3D] + +
example: [] syntax: content: public static int GetFrameUsageI3D(float* pUsage) @@ -687,17 +670,18 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.I3D.GetGammaTableI3D(nint, int, ushort*, ushort*, ushort*) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetGammaTableI3D - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs startLine: 292 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl - summary: '[requires: WGL_I3D_gamma] [entry point: wglGetGammaTableI3D]
' + summary: >- + [requires: WGL_I3D_gamma] + + [entry point: wglGetGammaTableI3D] + +
example: [] syntax: content: public static int GetGammaTableI3D(nint hDC, int iEntries, ushort* puRed, ushort* puGreen, ushort* puBlue) @@ -731,17 +715,18 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.I3D.GetGammaTableParametersI3D(nint, OpenTK.Graphics.Wgl.GammaTableAttribute, int*) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetGammaTableParametersI3D - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs startLine: 295 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl - summary: '[requires: WGL_I3D_gamma] [entry point: wglGetGammaTableParametersI3D]
' + summary: >- + [requires: WGL_I3D_gamma] + + [entry point: wglGetGammaTableParametersI3D] + +
example: [] syntax: content: public static int GetGammaTableParametersI3D(nint hDC, GammaTableAttribute iAttribute, int* piValue) @@ -771,17 +756,18 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSampleRateI3D(nint, uint*) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetGenlockSampleRateI3D - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs startLine: 298 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl - summary: '[requires: WGL_I3D_genlock] [entry point: wglGetGenlockSampleRateI3D]
' + summary: >- + [requires: WGL_I3D_genlock] + + [entry point: wglGetGenlockSampleRateI3D] + +
example: [] syntax: content: public static int GetGenlockSampleRateI3D(nint hDC, uint* uRate) @@ -809,17 +795,18 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSourceDelayI3D(nint, uint*) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetGenlockSourceDelayI3D - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs startLine: 301 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl - summary: '[requires: WGL_I3D_genlock] [entry point: wglGetGenlockSourceDelayI3D]
' + summary: >- + [requires: WGL_I3D_genlock] + + [entry point: wglGetGenlockSourceDelayI3D] + +
example: [] syntax: content: public static int GetGenlockSourceDelayI3D(nint hDC, uint* uDelay) @@ -847,17 +834,18 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSourceEdgeI3D(nint, uint*) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetGenlockSourceEdgeI3D - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs startLine: 304 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl - summary: '[requires: WGL_I3D_genlock] [entry point: wglGetGenlockSourceEdgeI3D]
' + summary: >- + [requires: WGL_I3D_genlock] + + [entry point: wglGetGenlockSourceEdgeI3D] + +
example: [] syntax: content: public static int GetGenlockSourceEdgeI3D(nint hDC, uint* uEdge) @@ -885,17 +873,18 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSourceI3D(nint, uint*) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetGenlockSourceI3D - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs startLine: 307 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl - summary: '[requires: WGL_I3D_genlock] [entry point: wglGetGenlockSourceI3D]
' + summary: >- + [requires: WGL_I3D_genlock] + + [entry point: wglGetGenlockSourceI3D] + +
example: [] syntax: content: public static int GetGenlockSourceI3D(nint hDC, uint* uSource) @@ -923,17 +912,18 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.I3D.IsEnabledFrameLockI3D(int*) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: IsEnabledFrameLockI3D - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs startLine: 310 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl - summary: '[requires: WGL_I3D_swap_frame_lock] [entry point: wglIsEnabledFrameLockI3D]
' + summary: >- + [requires: WGL_I3D_swap_frame_lock] + + [entry point: wglIsEnabledFrameLockI3D] + +
example: [] syntax: content: public static int IsEnabledFrameLockI3D(int* pFlag) @@ -959,17 +949,18 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.I3D.IsEnabledGenlockI3D(nint, int*) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: IsEnabledGenlockI3D - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs startLine: 313 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl - summary: '[requires: WGL_I3D_genlock] [entry point: wglIsEnabledGenlockI3D]
' + summary: >- + [requires: WGL_I3D_genlock] + + [entry point: wglIsEnabledGenlockI3D] + +
example: [] syntax: content: public static int IsEnabledGenlockI3D(nint hDC, int* pFlag) @@ -997,17 +988,18 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.I3D.QueryFrameLockMasterI3D(int*) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: QueryFrameLockMasterI3D - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs startLine: 316 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl - summary: '[requires: WGL_I3D_swap_frame_lock] [entry point: wglQueryFrameLockMasterI3D]
' + summary: >- + [requires: WGL_I3D_swap_frame_lock] + + [entry point: wglQueryFrameLockMasterI3D] + +
example: [] syntax: content: public static int QueryFrameLockMasterI3D(int* pFlag) @@ -1033,17 +1025,18 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.I3D.QueryFrameTrackingI3D(uint*, uint*, float*) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: QueryFrameTrackingI3D - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs startLine: 319 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl - summary: '[requires: WGL_I3D_swap_frame_usage] [entry point: wglQueryFrameTrackingI3D]
' + summary: >- + [requires: WGL_I3D_swap_frame_usage] + + [entry point: wglQueryFrameTrackingI3D] + +
example: [] syntax: content: public static int QueryFrameTrackingI3D(uint* pFrameCount, uint* pMissedFrames, float* pLastMissedUsage) @@ -1073,17 +1066,18 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.I3D.QueryGenlockMaxSourceDelayI3D(nint, uint*, uint*) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: QueryGenlockMaxSourceDelayI3D - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs startLine: 322 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl - summary: '[requires: WGL_I3D_genlock] [entry point: wglQueryGenlockMaxSourceDelayI3D]
' + summary: >- + [requires: WGL_I3D_genlock] + + [entry point: wglQueryGenlockMaxSourceDelayI3D] + +
example: [] syntax: content: public static int QueryGenlockMaxSourceDelayI3D(nint hDC, uint* uMaxLineDelay, uint* uMaxPixelDelay) @@ -1113,17 +1107,18 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.I3D.ReleaseImageBufferEventsI3D(nint, nint*, uint) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ReleaseImageBufferEventsI3D - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs startLine: 325 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl - summary: '[requires: WGL_I3D_image_buffer] [entry point: wglReleaseImageBufferEventsI3D]
' + summary: >- + [requires: WGL_I3D_image_buffer] + + [entry point: wglReleaseImageBufferEventsI3D] + +
example: [] syntax: content: public static int ReleaseImageBufferEventsI3D(nint hDC, nint* pAddress, uint count) @@ -1153,17 +1148,18 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.I3D.SetDigitalVideoParametersI3D(nint, OpenTK.Graphics.Wgl.DigitalVideoAttribute, int*) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetDigitalVideoParametersI3D - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs startLine: 328 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl - summary: '[requires: WGL_I3D_digital_video_control] [entry point: wglSetDigitalVideoParametersI3D]
' + summary: >- + [requires: WGL_I3D_digital_video_control] + + [entry point: wglSetDigitalVideoParametersI3D] + +
example: [] syntax: content: public static int SetDigitalVideoParametersI3D(nint hDC, DigitalVideoAttribute iAttribute, int* piValue) @@ -1193,17 +1189,18 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.I3D.SetGammaTableI3D(nint, int, ushort*, ushort*, ushort*) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetGammaTableI3D - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs startLine: 331 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl - summary: '[requires: WGL_I3D_gamma] [entry point: wglSetGammaTableI3D]
' + summary: >- + [requires: WGL_I3D_gamma] + + [entry point: wglSetGammaTableI3D] + +
example: [] syntax: content: public static int SetGammaTableI3D(nint hDC, int iEntries, ushort* puRed, ushort* puGreen, ushort* puBlue) @@ -1237,17 +1234,18 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.I3D.SetGammaTableParametersI3D(nint, OpenTK.Graphics.Wgl.GammaTableAttribute, int*) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetGammaTableParametersI3D - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs startLine: 334 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl - summary: '[requires: WGL_I3D_gamma] [entry point: wglSetGammaTableParametersI3D]
' + summary: >- + [requires: WGL_I3D_gamma] + + [entry point: wglSetGammaTableParametersI3D] + +
example: [] syntax: content: public static int SetGammaTableParametersI3D(nint hDC, GammaTableAttribute iAttribute, int* piValue) @@ -1277,13 +1275,9 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.I3D.AssociateImageBufferEventsI3D(nint, System.ReadOnlySpan, System.ReadOnlySpan, System.ReadOnlySpan, uint) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: AssociateImageBufferEventsI3D - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 1041 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 961 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -1326,13 +1320,9 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.I3D.AssociateImageBufferEventsI3D(nint, nint[], nint[], uint[], uint) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: AssociateImageBufferEventsI3D - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 1059 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 979 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -1375,13 +1365,9 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.I3D.AssociateImageBufferEventsI3D(nint, in nint, in nint, in uint, uint) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: AssociateImageBufferEventsI3D - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 1077 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 997 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -1424,13 +1410,9 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.I3D.BeginFrameTrackingI3D() type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: BeginFrameTrackingI3D - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 1091 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 1011 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -1453,13 +1435,9 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.I3D.DestroyImageBufferI3D(nint, nint) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DestroyImageBufferI3D - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 1100 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 1020 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -1490,13 +1468,9 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.I3D.DisableFrameLockI3D() type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DisableFrameLockI3D - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 1109 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 1029 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -1519,13 +1493,9 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.I3D.DisableGenlockI3D(nint) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DisableGenlockI3D - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 1118 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 1038 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -1554,13 +1524,9 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.I3D.EnableFrameLockI3D() type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: EnableFrameLockI3D - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 1127 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 1047 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -1583,13 +1549,9 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.I3D.EnableGenlockI3D(nint) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: EnableGenlockI3D - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 1136 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 1056 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -1618,13 +1580,9 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.I3D.EndFrameTrackingI3D() type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: EndFrameTrackingI3D - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 1145 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 1065 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -1647,13 +1605,9 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.I3D.GenlockSampleRateI3D(nint, uint) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GenlockSampleRateI3D - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 1154 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 1074 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -1684,13 +1638,9 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.I3D.GenlockSourceDelayI3D(nint, uint) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GenlockSourceDelayI3D - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 1163 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 1083 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -1721,13 +1671,9 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.I3D.GenlockSourceEdgeI3D(nint, uint) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GenlockSourceEdgeI3D - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 1172 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 1092 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -1758,13 +1704,9 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.I3D.GenlockSourceI3D(nint, uint) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GenlockSourceI3D - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 1181 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 1101 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -1783,25 +1725,21 @@ items: nameWithType.vb: Wgl.I3D.GenlockSourceI3D(IntPtr, UInteger) fullName.vb: OpenTK.Graphics.Wgl.Wgl.I3D.GenlockSourceI3D(System.IntPtr, UInteger) name.vb: GenlockSourceI3D(IntPtr, UInteger) -- uid: OpenTK.Graphics.Wgl.Wgl.I3D.GetDigitalVideoParametersI3D(System.IntPtr,OpenTK.Graphics.Wgl.DigitalVideoAttribute,System.Span{System.Int32}) - commentId: M:OpenTK.Graphics.Wgl.Wgl.I3D.GetDigitalVideoParametersI3D(System.IntPtr,OpenTK.Graphics.Wgl.DigitalVideoAttribute,System.Span{System.Int32}) - id: GetDigitalVideoParametersI3D(System.IntPtr,OpenTK.Graphics.Wgl.DigitalVideoAttribute,System.Span{System.Int32}) +- uid: OpenTK.Graphics.Wgl.Wgl.I3D.GetDigitalVideoParametersI3D(System.IntPtr,OpenTK.Graphics.Wgl.DigitalVideoAttribute,System.Int32@) + commentId: M:OpenTK.Graphics.Wgl.Wgl.I3D.GetDigitalVideoParametersI3D(System.IntPtr,OpenTK.Graphics.Wgl.DigitalVideoAttribute,System.Int32@) + id: GetDigitalVideoParametersI3D(System.IntPtr,OpenTK.Graphics.Wgl.DigitalVideoAttribute,System.Int32@) parent: OpenTK.Graphics.Wgl.Wgl.I3D langs: - csharp - vb - name: GetDigitalVideoParametersI3D(nint, DigitalVideoAttribute, Span) - nameWithType: Wgl.I3D.GetDigitalVideoParametersI3D(nint, DigitalVideoAttribute, Span) - fullName: OpenTK.Graphics.Wgl.Wgl.I3D.GetDigitalVideoParametersI3D(nint, OpenTK.Graphics.Wgl.DigitalVideoAttribute, System.Span) + name: GetDigitalVideoParametersI3D(nint, DigitalVideoAttribute, out int) + nameWithType: Wgl.I3D.GetDigitalVideoParametersI3D(nint, DigitalVideoAttribute, out int) + fullName: OpenTK.Graphics.Wgl.Wgl.I3D.GetDigitalVideoParametersI3D(nint, OpenTK.Graphics.Wgl.DigitalVideoAttribute, out int) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetDigitalVideoParametersI3D - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 1190 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 1110 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -1813,314 +1751,130 @@ items:
example: [] syntax: - content: public static bool GetDigitalVideoParametersI3D(nint hDC, DigitalVideoAttribute iAttribute, Span piValue) + content: public static bool GetDigitalVideoParametersI3D(nint hDC, DigitalVideoAttribute iAttribute, out int piValue) parameters: - id: hDC type: System.IntPtr - id: iAttribute type: OpenTK.Graphics.Wgl.DigitalVideoAttribute - id: piValue - type: System.Span{System.Int32} + type: System.Int32 return: type: System.Boolean - content.vb: Public Shared Function GetDigitalVideoParametersI3D(hDC As IntPtr, iAttribute As DigitalVideoAttribute, piValue As Span(Of Integer)) As Boolean + content.vb: Public Shared Function GetDigitalVideoParametersI3D(hDC As IntPtr, iAttribute As DigitalVideoAttribute, piValue As Integer) As Boolean overload: OpenTK.Graphics.Wgl.Wgl.I3D.GetDigitalVideoParametersI3D* - nameWithType.vb: Wgl.I3D.GetDigitalVideoParametersI3D(IntPtr, DigitalVideoAttribute, Span(Of Integer)) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.I3D.GetDigitalVideoParametersI3D(System.IntPtr, OpenTK.Graphics.Wgl.DigitalVideoAttribute, System.Span(Of Integer)) - name.vb: GetDigitalVideoParametersI3D(IntPtr, DigitalVideoAttribute, Span(Of Integer)) -- uid: OpenTK.Graphics.Wgl.Wgl.I3D.GetDigitalVideoParametersI3D(System.IntPtr,OpenTK.Graphics.Wgl.DigitalVideoAttribute,System.Int32[]) - commentId: M:OpenTK.Graphics.Wgl.Wgl.I3D.GetDigitalVideoParametersI3D(System.IntPtr,OpenTK.Graphics.Wgl.DigitalVideoAttribute,System.Int32[]) - id: GetDigitalVideoParametersI3D(System.IntPtr,OpenTK.Graphics.Wgl.DigitalVideoAttribute,System.Int32[]) + nameWithType.vb: Wgl.I3D.GetDigitalVideoParametersI3D(IntPtr, DigitalVideoAttribute, Integer) + fullName.vb: OpenTK.Graphics.Wgl.Wgl.I3D.GetDigitalVideoParametersI3D(System.IntPtr, OpenTK.Graphics.Wgl.DigitalVideoAttribute, Integer) + name.vb: GetDigitalVideoParametersI3D(IntPtr, DigitalVideoAttribute, Integer) +- uid: OpenTK.Graphics.Wgl.Wgl.I3D.GetFrameUsageI3D(System.Single@) + commentId: M:OpenTK.Graphics.Wgl.Wgl.I3D.GetFrameUsageI3D(System.Single@) + id: GetFrameUsageI3D(System.Single@) parent: OpenTK.Graphics.Wgl.Wgl.I3D langs: - csharp - vb - name: GetDigitalVideoParametersI3D(nint, DigitalVideoAttribute, int[]) - nameWithType: Wgl.I3D.GetDigitalVideoParametersI3D(nint, DigitalVideoAttribute, int[]) - fullName: OpenTK.Graphics.Wgl.Wgl.I3D.GetDigitalVideoParametersI3D(nint, OpenTK.Graphics.Wgl.DigitalVideoAttribute, int[]) + name: GetFrameUsageI3D(out float) + nameWithType: Wgl.I3D.GetFrameUsageI3D(out float) + fullName: OpenTK.Graphics.Wgl.Wgl.I3D.GetFrameUsageI3D(out float) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: GetDigitalVideoParametersI3D - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 1202 + id: GetFrameUsageI3D + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 1122 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl summary: >- - [requires: WGL_I3D_digital_video_control] + [requires: WGL_I3D_swap_frame_usage] - [entry point: wglGetDigitalVideoParametersI3D] + [entry point: wglGetFrameUsageI3D]
example: [] syntax: - content: public static bool GetDigitalVideoParametersI3D(nint hDC, DigitalVideoAttribute iAttribute, int[] piValue) + content: public static bool GetFrameUsageI3D(out float pUsage) parameters: - - id: hDC - type: System.IntPtr - - id: iAttribute - type: OpenTK.Graphics.Wgl.DigitalVideoAttribute - - id: piValue - type: System.Int32[] + - id: pUsage + type: System.Single return: type: System.Boolean - content.vb: Public Shared Function GetDigitalVideoParametersI3D(hDC As IntPtr, iAttribute As DigitalVideoAttribute, piValue As Integer()) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.I3D.GetDigitalVideoParametersI3D* - nameWithType.vb: Wgl.I3D.GetDigitalVideoParametersI3D(IntPtr, DigitalVideoAttribute, Integer()) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.I3D.GetDigitalVideoParametersI3D(System.IntPtr, OpenTK.Graphics.Wgl.DigitalVideoAttribute, Integer()) - name.vb: GetDigitalVideoParametersI3D(IntPtr, DigitalVideoAttribute, Integer()) -- uid: OpenTK.Graphics.Wgl.Wgl.I3D.GetDigitalVideoParametersI3D(System.IntPtr,OpenTK.Graphics.Wgl.DigitalVideoAttribute,System.Int32@) - commentId: M:OpenTK.Graphics.Wgl.Wgl.I3D.GetDigitalVideoParametersI3D(System.IntPtr,OpenTK.Graphics.Wgl.DigitalVideoAttribute,System.Int32@) - id: GetDigitalVideoParametersI3D(System.IntPtr,OpenTK.Graphics.Wgl.DigitalVideoAttribute,System.Int32@) + content.vb: Public Shared Function GetFrameUsageI3D(pUsage As Single) As Boolean + overload: OpenTK.Graphics.Wgl.Wgl.I3D.GetFrameUsageI3D* + nameWithType.vb: Wgl.I3D.GetFrameUsageI3D(Single) + fullName.vb: OpenTK.Graphics.Wgl.Wgl.I3D.GetFrameUsageI3D(Single) + name.vb: GetFrameUsageI3D(Single) +- uid: OpenTK.Graphics.Wgl.Wgl.I3D.GetGammaTableI3D(System.IntPtr,System.Int32,System.Span{System.UInt16},System.Span{System.UInt16},System.Span{System.UInt16}) + commentId: M:OpenTK.Graphics.Wgl.Wgl.I3D.GetGammaTableI3D(System.IntPtr,System.Int32,System.Span{System.UInt16},System.Span{System.UInt16},System.Span{System.UInt16}) + id: GetGammaTableI3D(System.IntPtr,System.Int32,System.Span{System.UInt16},System.Span{System.UInt16},System.Span{System.UInt16}) parent: OpenTK.Graphics.Wgl.Wgl.I3D langs: - csharp - vb - name: GetDigitalVideoParametersI3D(nint, DigitalVideoAttribute, ref int) - nameWithType: Wgl.I3D.GetDigitalVideoParametersI3D(nint, DigitalVideoAttribute, ref int) - fullName: OpenTK.Graphics.Wgl.Wgl.I3D.GetDigitalVideoParametersI3D(nint, OpenTK.Graphics.Wgl.DigitalVideoAttribute, ref int) + name: GetGammaTableI3D(nint, int, Span, Span, Span) + nameWithType: Wgl.I3D.GetGammaTableI3D(nint, int, Span, Span, Span) + fullName: OpenTK.Graphics.Wgl.Wgl.I3D.GetGammaTableI3D(nint, int, System.Span, System.Span, System.Span) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: GetDigitalVideoParametersI3D - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 1214 + id: GetGammaTableI3D + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 1134 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl summary: >- - [requires: WGL_I3D_digital_video_control] + [requires: WGL_I3D_gamma] - [entry point: wglGetDigitalVideoParametersI3D] + [entry point: wglGetGammaTableI3D]
example: [] syntax: - content: public static bool GetDigitalVideoParametersI3D(nint hDC, DigitalVideoAttribute iAttribute, ref int piValue) + content: public static bool GetGammaTableI3D(nint hDC, int iEntries, Span puRed, Span puGreen, Span puBlue) parameters: - id: hDC type: System.IntPtr - - id: iAttribute - type: OpenTK.Graphics.Wgl.DigitalVideoAttribute - - id: piValue + - id: iEntries type: System.Int32 + - id: puRed + type: System.Span{System.UInt16} + - id: puGreen + type: System.Span{System.UInt16} + - id: puBlue + type: System.Span{System.UInt16} return: type: System.Boolean - content.vb: Public Shared Function GetDigitalVideoParametersI3D(hDC As IntPtr, iAttribute As DigitalVideoAttribute, piValue As Integer) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.I3D.GetDigitalVideoParametersI3D* - nameWithType.vb: Wgl.I3D.GetDigitalVideoParametersI3D(IntPtr, DigitalVideoAttribute, Integer) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.I3D.GetDigitalVideoParametersI3D(System.IntPtr, OpenTK.Graphics.Wgl.DigitalVideoAttribute, Integer) - name.vb: GetDigitalVideoParametersI3D(IntPtr, DigitalVideoAttribute, Integer) -- uid: OpenTK.Graphics.Wgl.Wgl.I3D.GetFrameUsageI3D(System.Span{System.Single}) - commentId: M:OpenTK.Graphics.Wgl.Wgl.I3D.GetFrameUsageI3D(System.Span{System.Single}) - id: GetFrameUsageI3D(System.Span{System.Single}) + content.vb: Public Shared Function GetGammaTableI3D(hDC As IntPtr, iEntries As Integer, puRed As Span(Of UShort), puGreen As Span(Of UShort), puBlue As Span(Of UShort)) As Boolean + overload: OpenTK.Graphics.Wgl.Wgl.I3D.GetGammaTableI3D* + nameWithType.vb: Wgl.I3D.GetGammaTableI3D(IntPtr, Integer, Span(Of UShort), Span(Of UShort), Span(Of UShort)) + fullName.vb: OpenTK.Graphics.Wgl.Wgl.I3D.GetGammaTableI3D(System.IntPtr, Integer, System.Span(Of UShort), System.Span(Of UShort), System.Span(Of UShort)) + name.vb: GetGammaTableI3D(IntPtr, Integer, Span(Of UShort), Span(Of UShort), Span(Of UShort)) +- uid: OpenTK.Graphics.Wgl.Wgl.I3D.GetGammaTableI3D(System.IntPtr,System.Int32,System.UInt16[],System.UInt16[],System.UInt16[]) + commentId: M:OpenTK.Graphics.Wgl.Wgl.I3D.GetGammaTableI3D(System.IntPtr,System.Int32,System.UInt16[],System.UInt16[],System.UInt16[]) + id: GetGammaTableI3D(System.IntPtr,System.Int32,System.UInt16[],System.UInt16[],System.UInt16[]) parent: OpenTK.Graphics.Wgl.Wgl.I3D langs: - csharp - vb - name: GetFrameUsageI3D(Span) - nameWithType: Wgl.I3D.GetFrameUsageI3D(Span) - fullName: OpenTK.Graphics.Wgl.Wgl.I3D.GetFrameUsageI3D(System.Span) + name: GetGammaTableI3D(nint, int, ushort[], ushort[], ushort[]) + nameWithType: Wgl.I3D.GetGammaTableI3D(nint, int, ushort[], ushort[], ushort[]) + fullName: OpenTK.Graphics.Wgl.Wgl.I3D.GetGammaTableI3D(nint, int, ushort[], ushort[], ushort[]) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: GetFrameUsageI3D - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 1226 + id: GetGammaTableI3D + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 1152 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl summary: >- - [requires: WGL_I3D_swap_frame_usage] + [requires: WGL_I3D_gamma] - [entry point: wglGetFrameUsageI3D] + [entry point: wglGetGammaTableI3D]
example: [] syntax: - content: public static bool GetFrameUsageI3D(Span pUsage) - parameters: - - id: pUsage - type: System.Span{System.Single} - return: - type: System.Boolean - content.vb: Public Shared Function GetFrameUsageI3D(pUsage As Span(Of Single)) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.I3D.GetFrameUsageI3D* - nameWithType.vb: Wgl.I3D.GetFrameUsageI3D(Span(Of Single)) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.I3D.GetFrameUsageI3D(System.Span(Of Single)) - name.vb: GetFrameUsageI3D(Span(Of Single)) -- uid: OpenTK.Graphics.Wgl.Wgl.I3D.GetFrameUsageI3D(System.Single[]) - commentId: M:OpenTK.Graphics.Wgl.Wgl.I3D.GetFrameUsageI3D(System.Single[]) - id: GetFrameUsageI3D(System.Single[]) - parent: OpenTK.Graphics.Wgl.Wgl.I3D - langs: - - csharp - - vb - name: GetFrameUsageI3D(float[]) - nameWithType: Wgl.I3D.GetFrameUsageI3D(float[]) - fullName: OpenTK.Graphics.Wgl.Wgl.I3D.GetFrameUsageI3D(float[]) - type: Method - source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: GetFrameUsageI3D - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 1238 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_I3D_swap_frame_usage] - - [entry point: wglGetFrameUsageI3D] - -
- example: [] - syntax: - content: public static bool GetFrameUsageI3D(float[] pUsage) - parameters: - - id: pUsage - type: System.Single[] - return: - type: System.Boolean - content.vb: Public Shared Function GetFrameUsageI3D(pUsage As Single()) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.I3D.GetFrameUsageI3D* - nameWithType.vb: Wgl.I3D.GetFrameUsageI3D(Single()) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.I3D.GetFrameUsageI3D(Single()) - name.vb: GetFrameUsageI3D(Single()) -- uid: OpenTK.Graphics.Wgl.Wgl.I3D.GetFrameUsageI3D(System.Single@) - commentId: M:OpenTK.Graphics.Wgl.Wgl.I3D.GetFrameUsageI3D(System.Single@) - id: GetFrameUsageI3D(System.Single@) - parent: OpenTK.Graphics.Wgl.Wgl.I3D - langs: - - csharp - - vb - name: GetFrameUsageI3D(ref float) - nameWithType: Wgl.I3D.GetFrameUsageI3D(ref float) - fullName: OpenTK.Graphics.Wgl.Wgl.I3D.GetFrameUsageI3D(ref float) - type: Method - source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: GetFrameUsageI3D - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 1250 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_I3D_swap_frame_usage] - - [entry point: wglGetFrameUsageI3D] - -
- example: [] - syntax: - content: public static bool GetFrameUsageI3D(ref float pUsage) - parameters: - - id: pUsage - type: System.Single - return: - type: System.Boolean - content.vb: Public Shared Function GetFrameUsageI3D(pUsage As Single) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.I3D.GetFrameUsageI3D* - nameWithType.vb: Wgl.I3D.GetFrameUsageI3D(Single) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.I3D.GetFrameUsageI3D(Single) - name.vb: GetFrameUsageI3D(Single) -- uid: OpenTK.Graphics.Wgl.Wgl.I3D.GetGammaTableI3D(System.IntPtr,System.Int32,System.Span{System.UInt16},System.Span{System.UInt16},System.Span{System.UInt16}) - commentId: M:OpenTK.Graphics.Wgl.Wgl.I3D.GetGammaTableI3D(System.IntPtr,System.Int32,System.Span{System.UInt16},System.Span{System.UInt16},System.Span{System.UInt16}) - id: GetGammaTableI3D(System.IntPtr,System.Int32,System.Span{System.UInt16},System.Span{System.UInt16},System.Span{System.UInt16}) - parent: OpenTK.Graphics.Wgl.Wgl.I3D - langs: - - csharp - - vb - name: GetGammaTableI3D(nint, int, Span, Span, Span) - nameWithType: Wgl.I3D.GetGammaTableI3D(nint, int, Span, Span, Span) - fullName: OpenTK.Graphics.Wgl.Wgl.I3D.GetGammaTableI3D(nint, int, System.Span, System.Span, System.Span) - type: Method - source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: GetGammaTableI3D - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 1262 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_I3D_gamma] - - [entry point: wglGetGammaTableI3D] - -
- example: [] - syntax: - content: public static bool GetGammaTableI3D(nint hDC, int iEntries, Span puRed, Span puGreen, Span puBlue) - parameters: - - id: hDC - type: System.IntPtr - - id: iEntries - type: System.Int32 - - id: puRed - type: System.Span{System.UInt16} - - id: puGreen - type: System.Span{System.UInt16} - - id: puBlue - type: System.Span{System.UInt16} - return: - type: System.Boolean - content.vb: Public Shared Function GetGammaTableI3D(hDC As IntPtr, iEntries As Integer, puRed As Span(Of UShort), puGreen As Span(Of UShort), puBlue As Span(Of UShort)) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.I3D.GetGammaTableI3D* - nameWithType.vb: Wgl.I3D.GetGammaTableI3D(IntPtr, Integer, Span(Of UShort), Span(Of UShort), Span(Of UShort)) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.I3D.GetGammaTableI3D(System.IntPtr, Integer, System.Span(Of UShort), System.Span(Of UShort), System.Span(Of UShort)) - name.vb: GetGammaTableI3D(IntPtr, Integer, Span(Of UShort), Span(Of UShort), Span(Of UShort)) -- uid: OpenTK.Graphics.Wgl.Wgl.I3D.GetGammaTableI3D(System.IntPtr,System.Int32,System.UInt16[],System.UInt16[],System.UInt16[]) - commentId: M:OpenTK.Graphics.Wgl.Wgl.I3D.GetGammaTableI3D(System.IntPtr,System.Int32,System.UInt16[],System.UInt16[],System.UInt16[]) - id: GetGammaTableI3D(System.IntPtr,System.Int32,System.UInt16[],System.UInt16[],System.UInt16[]) - parent: OpenTK.Graphics.Wgl.Wgl.I3D - langs: - - csharp - - vb - name: GetGammaTableI3D(nint, int, ushort[], ushort[], ushort[]) - nameWithType: Wgl.I3D.GetGammaTableI3D(nint, int, ushort[], ushort[], ushort[]) - fullName: OpenTK.Graphics.Wgl.Wgl.I3D.GetGammaTableI3D(nint, int, ushort[], ushort[], ushort[]) - type: Method - source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: GetGammaTableI3D - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 1280 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_I3D_gamma] - - [entry point: wglGetGammaTableI3D] - -
- example: [] - syntax: - content: public static bool GetGammaTableI3D(nint hDC, int iEntries, ushort[] puRed, ushort[] puGreen, ushort[] puBlue) + content: public static bool GetGammaTableI3D(nint hDC, int iEntries, ushort[] puRed, ushort[] puGreen, ushort[] puBlue) parameters: - id: hDC type: System.IntPtr @@ -2151,13 +1905,9 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.I3D.GetGammaTableI3D(nint, int, ref ushort, ref ushort, ref ushort) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetGammaTableI3D - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 1298 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 1170 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -2188,96 +1938,6 @@ items: nameWithType.vb: Wgl.I3D.GetGammaTableI3D(IntPtr, Integer, UShort, UShort, UShort) fullName.vb: OpenTK.Graphics.Wgl.Wgl.I3D.GetGammaTableI3D(System.IntPtr, Integer, UShort, UShort, UShort) name.vb: GetGammaTableI3D(IntPtr, Integer, UShort, UShort, UShort) -- uid: OpenTK.Graphics.Wgl.Wgl.I3D.GetGammaTableParametersI3D(System.IntPtr,OpenTK.Graphics.Wgl.GammaTableAttribute,System.Span{System.Int32}) - commentId: M:OpenTK.Graphics.Wgl.Wgl.I3D.GetGammaTableParametersI3D(System.IntPtr,OpenTK.Graphics.Wgl.GammaTableAttribute,System.Span{System.Int32}) - id: GetGammaTableParametersI3D(System.IntPtr,OpenTK.Graphics.Wgl.GammaTableAttribute,System.Span{System.Int32}) - parent: OpenTK.Graphics.Wgl.Wgl.I3D - langs: - - csharp - - vb - name: GetGammaTableParametersI3D(nint, GammaTableAttribute, Span) - nameWithType: Wgl.I3D.GetGammaTableParametersI3D(nint, GammaTableAttribute, Span) - fullName: OpenTK.Graphics.Wgl.Wgl.I3D.GetGammaTableParametersI3D(nint, OpenTK.Graphics.Wgl.GammaTableAttribute, System.Span) - type: Method - source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: GetGammaTableParametersI3D - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 1312 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_I3D_gamma] - - [entry point: wglGetGammaTableParametersI3D] - -
- example: [] - syntax: - content: public static bool GetGammaTableParametersI3D(nint hDC, GammaTableAttribute iAttribute, Span piValue) - parameters: - - id: hDC - type: System.IntPtr - - id: iAttribute - type: OpenTK.Graphics.Wgl.GammaTableAttribute - - id: piValue - type: System.Span{System.Int32} - return: - type: System.Boolean - content.vb: Public Shared Function GetGammaTableParametersI3D(hDC As IntPtr, iAttribute As GammaTableAttribute, piValue As Span(Of Integer)) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.I3D.GetGammaTableParametersI3D* - nameWithType.vb: Wgl.I3D.GetGammaTableParametersI3D(IntPtr, GammaTableAttribute, Span(Of Integer)) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.I3D.GetGammaTableParametersI3D(System.IntPtr, OpenTK.Graphics.Wgl.GammaTableAttribute, System.Span(Of Integer)) - name.vb: GetGammaTableParametersI3D(IntPtr, GammaTableAttribute, Span(Of Integer)) -- uid: OpenTK.Graphics.Wgl.Wgl.I3D.GetGammaTableParametersI3D(System.IntPtr,OpenTK.Graphics.Wgl.GammaTableAttribute,System.Int32[]) - commentId: M:OpenTK.Graphics.Wgl.Wgl.I3D.GetGammaTableParametersI3D(System.IntPtr,OpenTK.Graphics.Wgl.GammaTableAttribute,System.Int32[]) - id: GetGammaTableParametersI3D(System.IntPtr,OpenTK.Graphics.Wgl.GammaTableAttribute,System.Int32[]) - parent: OpenTK.Graphics.Wgl.Wgl.I3D - langs: - - csharp - - vb - name: GetGammaTableParametersI3D(nint, GammaTableAttribute, int[]) - nameWithType: Wgl.I3D.GetGammaTableParametersI3D(nint, GammaTableAttribute, int[]) - fullName: OpenTK.Graphics.Wgl.Wgl.I3D.GetGammaTableParametersI3D(nint, OpenTK.Graphics.Wgl.GammaTableAttribute, int[]) - type: Method - source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: GetGammaTableParametersI3D - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 1324 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_I3D_gamma] - - [entry point: wglGetGammaTableParametersI3D] - -
- example: [] - syntax: - content: public static bool GetGammaTableParametersI3D(nint hDC, GammaTableAttribute iAttribute, int[] piValue) - parameters: - - id: hDC - type: System.IntPtr - - id: iAttribute - type: OpenTK.Graphics.Wgl.GammaTableAttribute - - id: piValue - type: System.Int32[] - return: - type: System.Boolean - content.vb: Public Shared Function GetGammaTableParametersI3D(hDC As IntPtr, iAttribute As GammaTableAttribute, piValue As Integer()) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.I3D.GetGammaTableParametersI3D* - nameWithType.vb: Wgl.I3D.GetGammaTableParametersI3D(IntPtr, GammaTableAttribute, Integer()) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.I3D.GetGammaTableParametersI3D(System.IntPtr, OpenTK.Graphics.Wgl.GammaTableAttribute, Integer()) - name.vb: GetGammaTableParametersI3D(IntPtr, GammaTableAttribute, Integer()) - uid: OpenTK.Graphics.Wgl.Wgl.I3D.GetGammaTableParametersI3D(System.IntPtr,OpenTK.Graphics.Wgl.GammaTableAttribute,System.Int32@) commentId: M:OpenTK.Graphics.Wgl.Wgl.I3D.GetGammaTableParametersI3D(System.IntPtr,OpenTK.Graphics.Wgl.GammaTableAttribute,System.Int32@) id: GetGammaTableParametersI3D(System.IntPtr,OpenTK.Graphics.Wgl.GammaTableAttribute,System.Int32@) @@ -2285,18 +1945,14 @@ items: langs: - csharp - vb - name: GetGammaTableParametersI3D(nint, GammaTableAttribute, ref int) - nameWithType: Wgl.I3D.GetGammaTableParametersI3D(nint, GammaTableAttribute, ref int) - fullName: OpenTK.Graphics.Wgl.Wgl.I3D.GetGammaTableParametersI3D(nint, OpenTK.Graphics.Wgl.GammaTableAttribute, ref int) + name: GetGammaTableParametersI3D(nint, GammaTableAttribute, out int) + nameWithType: Wgl.I3D.GetGammaTableParametersI3D(nint, GammaTableAttribute, out int) + fullName: OpenTK.Graphics.Wgl.Wgl.I3D.GetGammaTableParametersI3D(nint, OpenTK.Graphics.Wgl.GammaTableAttribute, out int) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetGammaTableParametersI3D - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 1336 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 1184 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -2308,7 +1964,7 @@ items:
example: [] syntax: - content: public static bool GetGammaTableParametersI3D(nint hDC, GammaTableAttribute iAttribute, ref int piValue) + content: public static bool GetGammaTableParametersI3D(nint hDC, GammaTableAttribute iAttribute, out int piValue) parameters: - id: hDC type: System.IntPtr @@ -2323,92 +1979,6 @@ items: nameWithType.vb: Wgl.I3D.GetGammaTableParametersI3D(IntPtr, GammaTableAttribute, Integer) fullName.vb: OpenTK.Graphics.Wgl.Wgl.I3D.GetGammaTableParametersI3D(System.IntPtr, OpenTK.Graphics.Wgl.GammaTableAttribute, Integer) name.vb: GetGammaTableParametersI3D(IntPtr, GammaTableAttribute, Integer) -- uid: OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSampleRateI3D(System.IntPtr,System.Span{System.UInt32}) - commentId: M:OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSampleRateI3D(System.IntPtr,System.Span{System.UInt32}) - id: GetGenlockSampleRateI3D(System.IntPtr,System.Span{System.UInt32}) - parent: OpenTK.Graphics.Wgl.Wgl.I3D - langs: - - csharp - - vb - name: GetGenlockSampleRateI3D(nint, Span) - nameWithType: Wgl.I3D.GetGenlockSampleRateI3D(nint, Span) - fullName: OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSampleRateI3D(nint, System.Span) - type: Method - source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: GetGenlockSampleRateI3D - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 1348 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_I3D_genlock] - - [entry point: wglGetGenlockSampleRateI3D] - -
- example: [] - syntax: - content: public static bool GetGenlockSampleRateI3D(nint hDC, Span uRate) - parameters: - - id: hDC - type: System.IntPtr - - id: uRate - type: System.Span{System.UInt32} - return: - type: System.Boolean - content.vb: Public Shared Function GetGenlockSampleRateI3D(hDC As IntPtr, uRate As Span(Of UInteger)) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSampleRateI3D* - nameWithType.vb: Wgl.I3D.GetGenlockSampleRateI3D(IntPtr, Span(Of UInteger)) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSampleRateI3D(System.IntPtr, System.Span(Of UInteger)) - name.vb: GetGenlockSampleRateI3D(IntPtr, Span(Of UInteger)) -- uid: OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSampleRateI3D(System.IntPtr,System.UInt32[]) - commentId: M:OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSampleRateI3D(System.IntPtr,System.UInt32[]) - id: GetGenlockSampleRateI3D(System.IntPtr,System.UInt32[]) - parent: OpenTK.Graphics.Wgl.Wgl.I3D - langs: - - csharp - - vb - name: GetGenlockSampleRateI3D(nint, uint[]) - nameWithType: Wgl.I3D.GetGenlockSampleRateI3D(nint, uint[]) - fullName: OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSampleRateI3D(nint, uint[]) - type: Method - source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: GetGenlockSampleRateI3D - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 1360 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_I3D_genlock] - - [entry point: wglGetGenlockSampleRateI3D] - -
- example: [] - syntax: - content: public static bool GetGenlockSampleRateI3D(nint hDC, uint[] uRate) - parameters: - - id: hDC - type: System.IntPtr - - id: uRate - type: System.UInt32[] - return: - type: System.Boolean - content.vb: Public Shared Function GetGenlockSampleRateI3D(hDC As IntPtr, uRate As UInteger()) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSampleRateI3D* - nameWithType.vb: Wgl.I3D.GetGenlockSampleRateI3D(IntPtr, UInteger()) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSampleRateI3D(System.IntPtr, UInteger()) - name.vb: GetGenlockSampleRateI3D(IntPtr, UInteger()) - uid: OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSampleRateI3D(System.IntPtr,System.UInt32@) commentId: M:OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSampleRateI3D(System.IntPtr,System.UInt32@) id: GetGenlockSampleRateI3D(System.IntPtr,System.UInt32@) @@ -2416,18 +1986,14 @@ items: langs: - csharp - vb - name: GetGenlockSampleRateI3D(nint, ref uint) - nameWithType: Wgl.I3D.GetGenlockSampleRateI3D(nint, ref uint) - fullName: OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSampleRateI3D(nint, ref uint) + name: GetGenlockSampleRateI3D(nint, out uint) + nameWithType: Wgl.I3D.GetGenlockSampleRateI3D(nint, out uint) + fullName: OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSampleRateI3D(nint, out uint) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetGenlockSampleRateI3D - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 1372 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 1196 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -2439,7 +2005,7 @@ items:
example: [] syntax: - content: public static bool GetGenlockSampleRateI3D(nint hDC, ref uint uRate) + content: public static bool GetGenlockSampleRateI3D(nint hDC, out uint uRate) parameters: - id: hDC type: System.IntPtr @@ -2452,727 +2018,199 @@ items: nameWithType.vb: Wgl.I3D.GetGenlockSampleRateI3D(IntPtr, UInteger) fullName.vb: OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSampleRateI3D(System.IntPtr, UInteger) name.vb: GetGenlockSampleRateI3D(IntPtr, UInteger) -- uid: OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSourceDelayI3D(System.IntPtr,System.Span{System.UInt32}) - commentId: M:OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSourceDelayI3D(System.IntPtr,System.Span{System.UInt32}) - id: GetGenlockSourceDelayI3D(System.IntPtr,System.Span{System.UInt32}) - parent: OpenTK.Graphics.Wgl.Wgl.I3D - langs: - - csharp - - vb - name: GetGenlockSourceDelayI3D(nint, Span) - nameWithType: Wgl.I3D.GetGenlockSourceDelayI3D(nint, Span) - fullName: OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSourceDelayI3D(nint, System.Span) - type: Method - source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: GetGenlockSourceDelayI3D - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 1384 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_I3D_genlock] - - [entry point: wglGetGenlockSourceDelayI3D] - -
- example: [] - syntax: - content: public static bool GetGenlockSourceDelayI3D(nint hDC, Span uDelay) - parameters: - - id: hDC - type: System.IntPtr - - id: uDelay - type: System.Span{System.UInt32} - return: - type: System.Boolean - content.vb: Public Shared Function GetGenlockSourceDelayI3D(hDC As IntPtr, uDelay As Span(Of UInteger)) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSourceDelayI3D* - nameWithType.vb: Wgl.I3D.GetGenlockSourceDelayI3D(IntPtr, Span(Of UInteger)) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSourceDelayI3D(System.IntPtr, System.Span(Of UInteger)) - name.vb: GetGenlockSourceDelayI3D(IntPtr, Span(Of UInteger)) -- uid: OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSourceDelayI3D(System.IntPtr,System.UInt32[]) - commentId: M:OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSourceDelayI3D(System.IntPtr,System.UInt32[]) - id: GetGenlockSourceDelayI3D(System.IntPtr,System.UInt32[]) - parent: OpenTK.Graphics.Wgl.Wgl.I3D - langs: - - csharp - - vb - name: GetGenlockSourceDelayI3D(nint, uint[]) - nameWithType: Wgl.I3D.GetGenlockSourceDelayI3D(nint, uint[]) - fullName: OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSourceDelayI3D(nint, uint[]) - type: Method - source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: GetGenlockSourceDelayI3D - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 1396 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_I3D_genlock] - - [entry point: wglGetGenlockSourceDelayI3D] - -
- example: [] - syntax: - content: public static bool GetGenlockSourceDelayI3D(nint hDC, uint[] uDelay) - parameters: - - id: hDC - type: System.IntPtr - - id: uDelay - type: System.UInt32[] - return: - type: System.Boolean - content.vb: Public Shared Function GetGenlockSourceDelayI3D(hDC As IntPtr, uDelay As UInteger()) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSourceDelayI3D* - nameWithType.vb: Wgl.I3D.GetGenlockSourceDelayI3D(IntPtr, UInteger()) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSourceDelayI3D(System.IntPtr, UInteger()) - name.vb: GetGenlockSourceDelayI3D(IntPtr, UInteger()) - uid: OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSourceDelayI3D(System.IntPtr,System.UInt32@) - commentId: M:OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSourceDelayI3D(System.IntPtr,System.UInt32@) - id: GetGenlockSourceDelayI3D(System.IntPtr,System.UInt32@) - parent: OpenTK.Graphics.Wgl.Wgl.I3D - langs: - - csharp - - vb - name: GetGenlockSourceDelayI3D(nint, ref uint) - nameWithType: Wgl.I3D.GetGenlockSourceDelayI3D(nint, ref uint) - fullName: OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSourceDelayI3D(nint, ref uint) - type: Method - source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: GetGenlockSourceDelayI3D - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 1408 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_I3D_genlock] - - [entry point: wglGetGenlockSourceDelayI3D] - -
- example: [] - syntax: - content: public static bool GetGenlockSourceDelayI3D(nint hDC, ref uint uDelay) - parameters: - - id: hDC - type: System.IntPtr - - id: uDelay - type: System.UInt32 - return: - type: System.Boolean - content.vb: Public Shared Function GetGenlockSourceDelayI3D(hDC As IntPtr, uDelay As UInteger) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSourceDelayI3D* - nameWithType.vb: Wgl.I3D.GetGenlockSourceDelayI3D(IntPtr, UInteger) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSourceDelayI3D(System.IntPtr, UInteger) - name.vb: GetGenlockSourceDelayI3D(IntPtr, UInteger) -- uid: OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSourceEdgeI3D(System.IntPtr,System.Span{System.UInt32}) - commentId: M:OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSourceEdgeI3D(System.IntPtr,System.Span{System.UInt32}) - id: GetGenlockSourceEdgeI3D(System.IntPtr,System.Span{System.UInt32}) - parent: OpenTK.Graphics.Wgl.Wgl.I3D - langs: - - csharp - - vb - name: GetGenlockSourceEdgeI3D(nint, Span) - nameWithType: Wgl.I3D.GetGenlockSourceEdgeI3D(nint, Span) - fullName: OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSourceEdgeI3D(nint, System.Span) - type: Method - source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: GetGenlockSourceEdgeI3D - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 1420 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_I3D_genlock] - - [entry point: wglGetGenlockSourceEdgeI3D] - -
- example: [] - syntax: - content: public static bool GetGenlockSourceEdgeI3D(nint hDC, Span uEdge) - parameters: - - id: hDC - type: System.IntPtr - - id: uEdge - type: System.Span{System.UInt32} - return: - type: System.Boolean - content.vb: Public Shared Function GetGenlockSourceEdgeI3D(hDC As IntPtr, uEdge As Span(Of UInteger)) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSourceEdgeI3D* - nameWithType.vb: Wgl.I3D.GetGenlockSourceEdgeI3D(IntPtr, Span(Of UInteger)) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSourceEdgeI3D(System.IntPtr, System.Span(Of UInteger)) - name.vb: GetGenlockSourceEdgeI3D(IntPtr, Span(Of UInteger)) -- uid: OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSourceEdgeI3D(System.IntPtr,System.UInt32[]) - commentId: M:OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSourceEdgeI3D(System.IntPtr,System.UInt32[]) - id: GetGenlockSourceEdgeI3D(System.IntPtr,System.UInt32[]) - parent: OpenTK.Graphics.Wgl.Wgl.I3D - langs: - - csharp - - vb - name: GetGenlockSourceEdgeI3D(nint, uint[]) - nameWithType: Wgl.I3D.GetGenlockSourceEdgeI3D(nint, uint[]) - fullName: OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSourceEdgeI3D(nint, uint[]) - type: Method - source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: GetGenlockSourceEdgeI3D - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 1432 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_I3D_genlock] - - [entry point: wglGetGenlockSourceEdgeI3D] - -
- example: [] - syntax: - content: public static bool GetGenlockSourceEdgeI3D(nint hDC, uint[] uEdge) - parameters: - - id: hDC - type: System.IntPtr - - id: uEdge - type: System.UInt32[] - return: - type: System.Boolean - content.vb: Public Shared Function GetGenlockSourceEdgeI3D(hDC As IntPtr, uEdge As UInteger()) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSourceEdgeI3D* - nameWithType.vb: Wgl.I3D.GetGenlockSourceEdgeI3D(IntPtr, UInteger()) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSourceEdgeI3D(System.IntPtr, UInteger()) - name.vb: GetGenlockSourceEdgeI3D(IntPtr, UInteger()) -- uid: OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSourceEdgeI3D(System.IntPtr,System.UInt32@) - commentId: M:OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSourceEdgeI3D(System.IntPtr,System.UInt32@) - id: GetGenlockSourceEdgeI3D(System.IntPtr,System.UInt32@) - parent: OpenTK.Graphics.Wgl.Wgl.I3D - langs: - - csharp - - vb - name: GetGenlockSourceEdgeI3D(nint, ref uint) - nameWithType: Wgl.I3D.GetGenlockSourceEdgeI3D(nint, ref uint) - fullName: OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSourceEdgeI3D(nint, ref uint) - type: Method - source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: GetGenlockSourceEdgeI3D - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 1444 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_I3D_genlock] - - [entry point: wglGetGenlockSourceEdgeI3D] - -
- example: [] - syntax: - content: public static bool GetGenlockSourceEdgeI3D(nint hDC, ref uint uEdge) - parameters: - - id: hDC - type: System.IntPtr - - id: uEdge - type: System.UInt32 - return: - type: System.Boolean - content.vb: Public Shared Function GetGenlockSourceEdgeI3D(hDC As IntPtr, uEdge As UInteger) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSourceEdgeI3D* - nameWithType.vb: Wgl.I3D.GetGenlockSourceEdgeI3D(IntPtr, UInteger) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSourceEdgeI3D(System.IntPtr, UInteger) - name.vb: GetGenlockSourceEdgeI3D(IntPtr, UInteger) -- uid: OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSourceI3D(System.IntPtr,System.Span{System.UInt32}) - commentId: M:OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSourceI3D(System.IntPtr,System.Span{System.UInt32}) - id: GetGenlockSourceI3D(System.IntPtr,System.Span{System.UInt32}) - parent: OpenTK.Graphics.Wgl.Wgl.I3D - langs: - - csharp - - vb - name: GetGenlockSourceI3D(nint, Span) - nameWithType: Wgl.I3D.GetGenlockSourceI3D(nint, Span) - fullName: OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSourceI3D(nint, System.Span) - type: Method - source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: GetGenlockSourceI3D - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 1456 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_I3D_genlock] - - [entry point: wglGetGenlockSourceI3D] - -
- example: [] - syntax: - content: public static bool GetGenlockSourceI3D(nint hDC, Span uSource) - parameters: - - id: hDC - type: System.IntPtr - - id: uSource - type: System.Span{System.UInt32} - return: - type: System.Boolean - content.vb: Public Shared Function GetGenlockSourceI3D(hDC As IntPtr, uSource As Span(Of UInteger)) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSourceI3D* - nameWithType.vb: Wgl.I3D.GetGenlockSourceI3D(IntPtr, Span(Of UInteger)) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSourceI3D(System.IntPtr, System.Span(Of UInteger)) - name.vb: GetGenlockSourceI3D(IntPtr, Span(Of UInteger)) -- uid: OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSourceI3D(System.IntPtr,System.UInt32[]) - commentId: M:OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSourceI3D(System.IntPtr,System.UInt32[]) - id: GetGenlockSourceI3D(System.IntPtr,System.UInt32[]) - parent: OpenTK.Graphics.Wgl.Wgl.I3D - langs: - - csharp - - vb - name: GetGenlockSourceI3D(nint, uint[]) - nameWithType: Wgl.I3D.GetGenlockSourceI3D(nint, uint[]) - fullName: OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSourceI3D(nint, uint[]) - type: Method - source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: GetGenlockSourceI3D - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 1468 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_I3D_genlock] - - [entry point: wglGetGenlockSourceI3D] - -
- example: [] - syntax: - content: public static bool GetGenlockSourceI3D(nint hDC, uint[] uSource) - parameters: - - id: hDC - type: System.IntPtr - - id: uSource - type: System.UInt32[] - return: - type: System.Boolean - content.vb: Public Shared Function GetGenlockSourceI3D(hDC As IntPtr, uSource As UInteger()) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSourceI3D* - nameWithType.vb: Wgl.I3D.GetGenlockSourceI3D(IntPtr, UInteger()) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSourceI3D(System.IntPtr, UInteger()) - name.vb: GetGenlockSourceI3D(IntPtr, UInteger()) -- uid: OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSourceI3D(System.IntPtr,System.UInt32@) - commentId: M:OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSourceI3D(System.IntPtr,System.UInt32@) - id: GetGenlockSourceI3D(System.IntPtr,System.UInt32@) - parent: OpenTK.Graphics.Wgl.Wgl.I3D - langs: - - csharp - - vb - name: GetGenlockSourceI3D(nint, ref uint) - nameWithType: Wgl.I3D.GetGenlockSourceI3D(nint, ref uint) - fullName: OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSourceI3D(nint, ref uint) - type: Method - source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: GetGenlockSourceI3D - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 1480 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_I3D_genlock] - - [entry point: wglGetGenlockSourceI3D] - -
- example: [] - syntax: - content: public static bool GetGenlockSourceI3D(nint hDC, ref uint uSource) - parameters: - - id: hDC - type: System.IntPtr - - id: uSource - type: System.UInt32 - return: - type: System.Boolean - content.vb: Public Shared Function GetGenlockSourceI3D(hDC As IntPtr, uSource As UInteger) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSourceI3D* - nameWithType.vb: Wgl.I3D.GetGenlockSourceI3D(IntPtr, UInteger) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSourceI3D(System.IntPtr, UInteger) - name.vb: GetGenlockSourceI3D(IntPtr, UInteger) -- uid: OpenTK.Graphics.Wgl.Wgl.I3D.IsEnabledFrameLockI3D(System.Span{System.Int32}) - commentId: M:OpenTK.Graphics.Wgl.Wgl.I3D.IsEnabledFrameLockI3D(System.Span{System.Int32}) - id: IsEnabledFrameLockI3D(System.Span{System.Int32}) - parent: OpenTK.Graphics.Wgl.Wgl.I3D - langs: - - csharp - - vb - name: IsEnabledFrameLockI3D(Span) - nameWithType: Wgl.I3D.IsEnabledFrameLockI3D(Span) - fullName: OpenTK.Graphics.Wgl.Wgl.I3D.IsEnabledFrameLockI3D(System.Span) - type: Method - source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: IsEnabledFrameLockI3D - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 1492 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_I3D_swap_frame_lock] - - [entry point: wglIsEnabledFrameLockI3D] - -
- example: [] - syntax: - content: public static bool IsEnabledFrameLockI3D(Span pFlag) - parameters: - - id: pFlag - type: System.Span{System.Int32} - return: - type: System.Boolean - content.vb: Public Shared Function IsEnabledFrameLockI3D(pFlag As Span(Of Integer)) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.I3D.IsEnabledFrameLockI3D* - nameWithType.vb: Wgl.I3D.IsEnabledFrameLockI3D(Span(Of Integer)) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.I3D.IsEnabledFrameLockI3D(System.Span(Of Integer)) - name.vb: IsEnabledFrameLockI3D(Span(Of Integer)) -- uid: OpenTK.Graphics.Wgl.Wgl.I3D.IsEnabledFrameLockI3D(System.Int32[]) - commentId: M:OpenTK.Graphics.Wgl.Wgl.I3D.IsEnabledFrameLockI3D(System.Int32[]) - id: IsEnabledFrameLockI3D(System.Int32[]) - parent: OpenTK.Graphics.Wgl.Wgl.I3D - langs: - - csharp - - vb - name: IsEnabledFrameLockI3D(int[]) - nameWithType: Wgl.I3D.IsEnabledFrameLockI3D(int[]) - fullName: OpenTK.Graphics.Wgl.Wgl.I3D.IsEnabledFrameLockI3D(int[]) - type: Method - source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: IsEnabledFrameLockI3D - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 1504 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_I3D_swap_frame_lock] - - [entry point: wglIsEnabledFrameLockI3D] - -
- example: [] - syntax: - content: public static bool IsEnabledFrameLockI3D(int[] pFlag) - parameters: - - id: pFlag - type: System.Int32[] - return: - type: System.Boolean - content.vb: Public Shared Function IsEnabledFrameLockI3D(pFlag As Integer()) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.I3D.IsEnabledFrameLockI3D* - nameWithType.vb: Wgl.I3D.IsEnabledFrameLockI3D(Integer()) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.I3D.IsEnabledFrameLockI3D(Integer()) - name.vb: IsEnabledFrameLockI3D(Integer()) -- uid: OpenTK.Graphics.Wgl.Wgl.I3D.IsEnabledFrameLockI3D(System.Int32@) - commentId: M:OpenTK.Graphics.Wgl.Wgl.I3D.IsEnabledFrameLockI3D(System.Int32@) - id: IsEnabledFrameLockI3D(System.Int32@) - parent: OpenTK.Graphics.Wgl.Wgl.I3D - langs: - - csharp - - vb - name: IsEnabledFrameLockI3D(ref int) - nameWithType: Wgl.I3D.IsEnabledFrameLockI3D(ref int) - fullName: OpenTK.Graphics.Wgl.Wgl.I3D.IsEnabledFrameLockI3D(ref int) - type: Method - source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: IsEnabledFrameLockI3D - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 1516 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_I3D_swap_frame_lock] - - [entry point: wglIsEnabledFrameLockI3D] - -
- example: [] - syntax: - content: public static bool IsEnabledFrameLockI3D(ref int pFlag) - parameters: - - id: pFlag - type: System.Int32 - return: - type: System.Boolean - content.vb: Public Shared Function IsEnabledFrameLockI3D(pFlag As Integer) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.I3D.IsEnabledFrameLockI3D* - nameWithType.vb: Wgl.I3D.IsEnabledFrameLockI3D(Integer) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.I3D.IsEnabledFrameLockI3D(Integer) - name.vb: IsEnabledFrameLockI3D(Integer) -- uid: OpenTK.Graphics.Wgl.Wgl.I3D.IsEnabledGenlockI3D(System.IntPtr,System.Span{System.Int32}) - commentId: M:OpenTK.Graphics.Wgl.Wgl.I3D.IsEnabledGenlockI3D(System.IntPtr,System.Span{System.Int32}) - id: IsEnabledGenlockI3D(System.IntPtr,System.Span{System.Int32}) + commentId: M:OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSourceDelayI3D(System.IntPtr,System.UInt32@) + id: GetGenlockSourceDelayI3D(System.IntPtr,System.UInt32@) parent: OpenTK.Graphics.Wgl.Wgl.I3D langs: - csharp - vb - name: IsEnabledGenlockI3D(nint, Span) - nameWithType: Wgl.I3D.IsEnabledGenlockI3D(nint, Span) - fullName: OpenTK.Graphics.Wgl.Wgl.I3D.IsEnabledGenlockI3D(nint, System.Span) + name: GetGenlockSourceDelayI3D(nint, out uint) + nameWithType: Wgl.I3D.GetGenlockSourceDelayI3D(nint, out uint) + fullName: OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSourceDelayI3D(nint, out uint) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: IsEnabledGenlockI3D - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 1528 + id: GetGenlockSourceDelayI3D + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 1208 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl summary: >- [requires: WGL_I3D_genlock] - [entry point: wglIsEnabledGenlockI3D] + [entry point: wglGetGenlockSourceDelayI3D]
example: [] syntax: - content: public static bool IsEnabledGenlockI3D(nint hDC, Span pFlag) + content: public static bool GetGenlockSourceDelayI3D(nint hDC, out uint uDelay) parameters: - id: hDC type: System.IntPtr - - id: pFlag - type: System.Span{System.Int32} + - id: uDelay + type: System.UInt32 return: type: System.Boolean - content.vb: Public Shared Function IsEnabledGenlockI3D(hDC As IntPtr, pFlag As Span(Of Integer)) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.I3D.IsEnabledGenlockI3D* - nameWithType.vb: Wgl.I3D.IsEnabledGenlockI3D(IntPtr, Span(Of Integer)) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.I3D.IsEnabledGenlockI3D(System.IntPtr, System.Span(Of Integer)) - name.vb: IsEnabledGenlockI3D(IntPtr, Span(Of Integer)) -- uid: OpenTK.Graphics.Wgl.Wgl.I3D.IsEnabledGenlockI3D(System.IntPtr,System.Int32[]) - commentId: M:OpenTK.Graphics.Wgl.Wgl.I3D.IsEnabledGenlockI3D(System.IntPtr,System.Int32[]) - id: IsEnabledGenlockI3D(System.IntPtr,System.Int32[]) + content.vb: Public Shared Function GetGenlockSourceDelayI3D(hDC As IntPtr, uDelay As UInteger) As Boolean + overload: OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSourceDelayI3D* + nameWithType.vb: Wgl.I3D.GetGenlockSourceDelayI3D(IntPtr, UInteger) + fullName.vb: OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSourceDelayI3D(System.IntPtr, UInteger) + name.vb: GetGenlockSourceDelayI3D(IntPtr, UInteger) +- uid: OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSourceEdgeI3D(System.IntPtr,System.UInt32@) + commentId: M:OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSourceEdgeI3D(System.IntPtr,System.UInt32@) + id: GetGenlockSourceEdgeI3D(System.IntPtr,System.UInt32@) parent: OpenTK.Graphics.Wgl.Wgl.I3D langs: - csharp - vb - name: IsEnabledGenlockI3D(nint, int[]) - nameWithType: Wgl.I3D.IsEnabledGenlockI3D(nint, int[]) - fullName: OpenTK.Graphics.Wgl.Wgl.I3D.IsEnabledGenlockI3D(nint, int[]) + name: GetGenlockSourceEdgeI3D(nint, out uint) + nameWithType: Wgl.I3D.GetGenlockSourceEdgeI3D(nint, out uint) + fullName: OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSourceEdgeI3D(nint, out uint) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: IsEnabledGenlockI3D - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 1540 + id: GetGenlockSourceEdgeI3D + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 1220 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl summary: >- [requires: WGL_I3D_genlock] - [entry point: wglIsEnabledGenlockI3D] + [entry point: wglGetGenlockSourceEdgeI3D]
example: [] syntax: - content: public static bool IsEnabledGenlockI3D(nint hDC, int[] pFlag) + content: public static bool GetGenlockSourceEdgeI3D(nint hDC, out uint uEdge) parameters: - id: hDC type: System.IntPtr - - id: pFlag - type: System.Int32[] + - id: uEdge + type: System.UInt32 return: type: System.Boolean - content.vb: Public Shared Function IsEnabledGenlockI3D(hDC As IntPtr, pFlag As Integer()) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.I3D.IsEnabledGenlockI3D* - nameWithType.vb: Wgl.I3D.IsEnabledGenlockI3D(IntPtr, Integer()) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.I3D.IsEnabledGenlockI3D(System.IntPtr, Integer()) - name.vb: IsEnabledGenlockI3D(IntPtr, Integer()) -- uid: OpenTK.Graphics.Wgl.Wgl.I3D.IsEnabledGenlockI3D(System.IntPtr,System.Int32@) - commentId: M:OpenTK.Graphics.Wgl.Wgl.I3D.IsEnabledGenlockI3D(System.IntPtr,System.Int32@) - id: IsEnabledGenlockI3D(System.IntPtr,System.Int32@) + content.vb: Public Shared Function GetGenlockSourceEdgeI3D(hDC As IntPtr, uEdge As UInteger) As Boolean + overload: OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSourceEdgeI3D* + nameWithType.vb: Wgl.I3D.GetGenlockSourceEdgeI3D(IntPtr, UInteger) + fullName.vb: OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSourceEdgeI3D(System.IntPtr, UInteger) + name.vb: GetGenlockSourceEdgeI3D(IntPtr, UInteger) +- uid: OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSourceI3D(System.IntPtr,System.UInt32@) + commentId: M:OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSourceI3D(System.IntPtr,System.UInt32@) + id: GetGenlockSourceI3D(System.IntPtr,System.UInt32@) parent: OpenTK.Graphics.Wgl.Wgl.I3D langs: - csharp - vb - name: IsEnabledGenlockI3D(nint, ref int) - nameWithType: Wgl.I3D.IsEnabledGenlockI3D(nint, ref int) - fullName: OpenTK.Graphics.Wgl.Wgl.I3D.IsEnabledGenlockI3D(nint, ref int) + name: GetGenlockSourceI3D(nint, out uint) + nameWithType: Wgl.I3D.GetGenlockSourceI3D(nint, out uint) + fullName: OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSourceI3D(nint, out uint) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: IsEnabledGenlockI3D - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 1552 + id: GetGenlockSourceI3D + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 1232 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl summary: >- [requires: WGL_I3D_genlock] - [entry point: wglIsEnabledGenlockI3D] + [entry point: wglGetGenlockSourceI3D]
example: [] syntax: - content: public static bool IsEnabledGenlockI3D(nint hDC, ref int pFlag) + content: public static bool GetGenlockSourceI3D(nint hDC, out uint uSource) parameters: - id: hDC type: System.IntPtr - - id: pFlag - type: System.Int32 + - id: uSource + type: System.UInt32 return: type: System.Boolean - content.vb: Public Shared Function IsEnabledGenlockI3D(hDC As IntPtr, pFlag As Integer) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.I3D.IsEnabledGenlockI3D* - nameWithType.vb: Wgl.I3D.IsEnabledGenlockI3D(IntPtr, Integer) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.I3D.IsEnabledGenlockI3D(System.IntPtr, Integer) - name.vb: IsEnabledGenlockI3D(IntPtr, Integer) -- uid: OpenTK.Graphics.Wgl.Wgl.I3D.QueryFrameLockMasterI3D(System.Span{System.Int32}) - commentId: M:OpenTK.Graphics.Wgl.Wgl.I3D.QueryFrameLockMasterI3D(System.Span{System.Int32}) - id: QueryFrameLockMasterI3D(System.Span{System.Int32}) + content.vb: Public Shared Function GetGenlockSourceI3D(hDC As IntPtr, uSource As UInteger) As Boolean + overload: OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSourceI3D* + nameWithType.vb: Wgl.I3D.GetGenlockSourceI3D(IntPtr, UInteger) + fullName.vb: OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSourceI3D(System.IntPtr, UInteger) + name.vb: GetGenlockSourceI3D(IntPtr, UInteger) +- uid: OpenTK.Graphics.Wgl.Wgl.I3D.IsEnabledFrameLockI3D(System.Int32@) + commentId: M:OpenTK.Graphics.Wgl.Wgl.I3D.IsEnabledFrameLockI3D(System.Int32@) + id: IsEnabledFrameLockI3D(System.Int32@) parent: OpenTK.Graphics.Wgl.Wgl.I3D langs: - csharp - vb - name: QueryFrameLockMasterI3D(Span) - nameWithType: Wgl.I3D.QueryFrameLockMasterI3D(Span) - fullName: OpenTK.Graphics.Wgl.Wgl.I3D.QueryFrameLockMasterI3D(System.Span) + name: IsEnabledFrameLockI3D(out int) + nameWithType: Wgl.I3D.IsEnabledFrameLockI3D(out int) + fullName: OpenTK.Graphics.Wgl.Wgl.I3D.IsEnabledFrameLockI3D(out int) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: QueryFrameLockMasterI3D - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 1564 + id: IsEnabledFrameLockI3D + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 1244 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl summary: >- [requires: WGL_I3D_swap_frame_lock] - [entry point: wglQueryFrameLockMasterI3D] + [entry point: wglIsEnabledFrameLockI3D]
example: [] syntax: - content: public static bool QueryFrameLockMasterI3D(Span pFlag) + content: public static bool IsEnabledFrameLockI3D(out int pFlag) parameters: - id: pFlag - type: System.Span{System.Int32} + type: System.Int32 return: type: System.Boolean - content.vb: Public Shared Function QueryFrameLockMasterI3D(pFlag As Span(Of Integer)) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.I3D.QueryFrameLockMasterI3D* - nameWithType.vb: Wgl.I3D.QueryFrameLockMasterI3D(Span(Of Integer)) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.I3D.QueryFrameLockMasterI3D(System.Span(Of Integer)) - name.vb: QueryFrameLockMasterI3D(Span(Of Integer)) -- uid: OpenTK.Graphics.Wgl.Wgl.I3D.QueryFrameLockMasterI3D(System.Int32[]) - commentId: M:OpenTK.Graphics.Wgl.Wgl.I3D.QueryFrameLockMasterI3D(System.Int32[]) - id: QueryFrameLockMasterI3D(System.Int32[]) + content.vb: Public Shared Function IsEnabledFrameLockI3D(pFlag As Integer) As Boolean + overload: OpenTK.Graphics.Wgl.Wgl.I3D.IsEnabledFrameLockI3D* + nameWithType.vb: Wgl.I3D.IsEnabledFrameLockI3D(Integer) + fullName.vb: OpenTK.Graphics.Wgl.Wgl.I3D.IsEnabledFrameLockI3D(Integer) + name.vb: IsEnabledFrameLockI3D(Integer) +- uid: OpenTK.Graphics.Wgl.Wgl.I3D.IsEnabledGenlockI3D(System.IntPtr,System.Int32@) + commentId: M:OpenTK.Graphics.Wgl.Wgl.I3D.IsEnabledGenlockI3D(System.IntPtr,System.Int32@) + id: IsEnabledGenlockI3D(System.IntPtr,System.Int32@) parent: OpenTK.Graphics.Wgl.Wgl.I3D langs: - csharp - vb - name: QueryFrameLockMasterI3D(int[]) - nameWithType: Wgl.I3D.QueryFrameLockMasterI3D(int[]) - fullName: OpenTK.Graphics.Wgl.Wgl.I3D.QueryFrameLockMasterI3D(int[]) + name: IsEnabledGenlockI3D(nint, out int) + nameWithType: Wgl.I3D.IsEnabledGenlockI3D(nint, out int) + fullName: OpenTK.Graphics.Wgl.Wgl.I3D.IsEnabledGenlockI3D(nint, out int) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: QueryFrameLockMasterI3D - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 1576 + id: IsEnabledGenlockI3D + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 1256 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl summary: >- - [requires: WGL_I3D_swap_frame_lock] + [requires: WGL_I3D_genlock] - [entry point: wglQueryFrameLockMasterI3D] + [entry point: wglIsEnabledGenlockI3D]
example: [] syntax: - content: public static bool QueryFrameLockMasterI3D(int[] pFlag) + content: public static bool IsEnabledGenlockI3D(nint hDC, out int pFlag) parameters: + - id: hDC + type: System.IntPtr - id: pFlag - type: System.Int32[] + type: System.Int32 return: type: System.Boolean - content.vb: Public Shared Function QueryFrameLockMasterI3D(pFlag As Integer()) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.I3D.QueryFrameLockMasterI3D* - nameWithType.vb: Wgl.I3D.QueryFrameLockMasterI3D(Integer()) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.I3D.QueryFrameLockMasterI3D(Integer()) - name.vb: QueryFrameLockMasterI3D(Integer()) + content.vb: Public Shared Function IsEnabledGenlockI3D(hDC As IntPtr, pFlag As Integer) As Boolean + overload: OpenTK.Graphics.Wgl.Wgl.I3D.IsEnabledGenlockI3D* + nameWithType.vb: Wgl.I3D.IsEnabledGenlockI3D(IntPtr, Integer) + fullName.vb: OpenTK.Graphics.Wgl.Wgl.I3D.IsEnabledGenlockI3D(System.IntPtr, Integer) + name.vb: IsEnabledGenlockI3D(IntPtr, Integer) - uid: OpenTK.Graphics.Wgl.Wgl.I3D.QueryFrameLockMasterI3D(System.Int32@) commentId: M:OpenTK.Graphics.Wgl.Wgl.I3D.QueryFrameLockMasterI3D(System.Int32@) id: QueryFrameLockMasterI3D(System.Int32@) @@ -3180,18 +2218,14 @@ items: langs: - csharp - vb - name: QueryFrameLockMasterI3D(ref int) - nameWithType: Wgl.I3D.QueryFrameLockMasterI3D(ref int) - fullName: OpenTK.Graphics.Wgl.Wgl.I3D.QueryFrameLockMasterI3D(ref int) + name: QueryFrameLockMasterI3D(out int) + nameWithType: Wgl.I3D.QueryFrameLockMasterI3D(out int) + fullName: OpenTK.Graphics.Wgl.Wgl.I3D.QueryFrameLockMasterI3D(out int) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: QueryFrameLockMasterI3D - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 1588 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 1268 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -3203,7 +2237,7 @@ items:
example: [] syntax: - content: public static bool QueryFrameLockMasterI3D(ref int pFlag) + content: public static bool QueryFrameLockMasterI3D(out int pFlag) parameters: - id: pFlag type: System.Int32 @@ -3214,96 +2248,6 @@ items: nameWithType.vb: Wgl.I3D.QueryFrameLockMasterI3D(Integer) fullName.vb: OpenTK.Graphics.Wgl.Wgl.I3D.QueryFrameLockMasterI3D(Integer) name.vb: QueryFrameLockMasterI3D(Integer) -- uid: OpenTK.Graphics.Wgl.Wgl.I3D.QueryFrameTrackingI3D(System.Span{System.UInt32},System.Span{System.UInt32},System.Span{System.Single}) - commentId: M:OpenTK.Graphics.Wgl.Wgl.I3D.QueryFrameTrackingI3D(System.Span{System.UInt32},System.Span{System.UInt32},System.Span{System.Single}) - id: QueryFrameTrackingI3D(System.Span{System.UInt32},System.Span{System.UInt32},System.Span{System.Single}) - parent: OpenTK.Graphics.Wgl.Wgl.I3D - langs: - - csharp - - vb - name: QueryFrameTrackingI3D(Span, Span, Span) - nameWithType: Wgl.I3D.QueryFrameTrackingI3D(Span, Span, Span) - fullName: OpenTK.Graphics.Wgl.Wgl.I3D.QueryFrameTrackingI3D(System.Span, System.Span, System.Span) - type: Method - source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: QueryFrameTrackingI3D - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 1600 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_I3D_swap_frame_usage] - - [entry point: wglQueryFrameTrackingI3D] - -
- example: [] - syntax: - content: public static bool QueryFrameTrackingI3D(Span pFrameCount, Span pMissedFrames, Span pLastMissedUsage) - parameters: - - id: pFrameCount - type: System.Span{System.UInt32} - - id: pMissedFrames - type: System.Span{System.UInt32} - - id: pLastMissedUsage - type: System.Span{System.Single} - return: - type: System.Boolean - content.vb: Public Shared Function QueryFrameTrackingI3D(pFrameCount As Span(Of UInteger), pMissedFrames As Span(Of UInteger), pLastMissedUsage As Span(Of Single)) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.I3D.QueryFrameTrackingI3D* - nameWithType.vb: Wgl.I3D.QueryFrameTrackingI3D(Span(Of UInteger), Span(Of UInteger), Span(Of Single)) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.I3D.QueryFrameTrackingI3D(System.Span(Of UInteger), System.Span(Of UInteger), System.Span(Of Single)) - name.vb: QueryFrameTrackingI3D(Span(Of UInteger), Span(Of UInteger), Span(Of Single)) -- uid: OpenTK.Graphics.Wgl.Wgl.I3D.QueryFrameTrackingI3D(System.UInt32[],System.UInt32[],System.Single[]) - commentId: M:OpenTK.Graphics.Wgl.Wgl.I3D.QueryFrameTrackingI3D(System.UInt32[],System.UInt32[],System.Single[]) - id: QueryFrameTrackingI3D(System.UInt32[],System.UInt32[],System.Single[]) - parent: OpenTK.Graphics.Wgl.Wgl.I3D - langs: - - csharp - - vb - name: QueryFrameTrackingI3D(uint[], uint[], float[]) - nameWithType: Wgl.I3D.QueryFrameTrackingI3D(uint[], uint[], float[]) - fullName: OpenTK.Graphics.Wgl.Wgl.I3D.QueryFrameTrackingI3D(uint[], uint[], float[]) - type: Method - source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: QueryFrameTrackingI3D - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 1618 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_I3D_swap_frame_usage] - - [entry point: wglQueryFrameTrackingI3D] - -
- example: [] - syntax: - content: public static bool QueryFrameTrackingI3D(uint[] pFrameCount, uint[] pMissedFrames, float[] pLastMissedUsage) - parameters: - - id: pFrameCount - type: System.UInt32[] - - id: pMissedFrames - type: System.UInt32[] - - id: pLastMissedUsage - type: System.Single[] - return: - type: System.Boolean - content.vb: Public Shared Function QueryFrameTrackingI3D(pFrameCount As UInteger(), pMissedFrames As UInteger(), pLastMissedUsage As Single()) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.I3D.QueryFrameTrackingI3D* - nameWithType.vb: Wgl.I3D.QueryFrameTrackingI3D(UInteger(), UInteger(), Single()) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.I3D.QueryFrameTrackingI3D(UInteger(), UInteger(), Single()) - name.vb: QueryFrameTrackingI3D(UInteger(), UInteger(), Single()) - uid: OpenTK.Graphics.Wgl.Wgl.I3D.QueryFrameTrackingI3D(System.UInt32@,System.UInt32@,System.Single@) commentId: M:OpenTK.Graphics.Wgl.Wgl.I3D.QueryFrameTrackingI3D(System.UInt32@,System.UInt32@,System.Single@) id: QueryFrameTrackingI3D(System.UInt32@,System.UInt32@,System.Single@) @@ -3311,18 +2255,14 @@ items: langs: - csharp - vb - name: QueryFrameTrackingI3D(ref uint, ref uint, ref float) - nameWithType: Wgl.I3D.QueryFrameTrackingI3D(ref uint, ref uint, ref float) - fullName: OpenTK.Graphics.Wgl.Wgl.I3D.QueryFrameTrackingI3D(ref uint, ref uint, ref float) + name: QueryFrameTrackingI3D(out uint, out uint, out float) + nameWithType: Wgl.I3D.QueryFrameTrackingI3D(out uint, out uint, out float) + fullName: OpenTK.Graphics.Wgl.Wgl.I3D.QueryFrameTrackingI3D(out uint, out uint, out float) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: QueryFrameTrackingI3D - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 1636 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 1280 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -3334,7 +2274,7 @@ items:
example: [] syntax: - content: public static bool QueryFrameTrackingI3D(ref uint pFrameCount, ref uint pMissedFrames, ref float pLastMissedUsage) + content: public static bool QueryFrameTrackingI3D(out uint pFrameCount, out uint pMissedFrames, out float pLastMissedUsage) parameters: - id: pFrameCount type: System.UInt32 @@ -3349,96 +2289,6 @@ items: nameWithType.vb: Wgl.I3D.QueryFrameTrackingI3D(UInteger, UInteger, Single) fullName.vb: OpenTK.Graphics.Wgl.Wgl.I3D.QueryFrameTrackingI3D(UInteger, UInteger, Single) name.vb: QueryFrameTrackingI3D(UInteger, UInteger, Single) -- uid: OpenTK.Graphics.Wgl.Wgl.I3D.QueryGenlockMaxSourceDelayI3D(System.IntPtr,System.Span{System.UInt32},System.Span{System.UInt32}) - commentId: M:OpenTK.Graphics.Wgl.Wgl.I3D.QueryGenlockMaxSourceDelayI3D(System.IntPtr,System.Span{System.UInt32},System.Span{System.UInt32}) - id: QueryGenlockMaxSourceDelayI3D(System.IntPtr,System.Span{System.UInt32},System.Span{System.UInt32}) - parent: OpenTK.Graphics.Wgl.Wgl.I3D - langs: - - csharp - - vb - name: QueryGenlockMaxSourceDelayI3D(nint, Span, Span) - nameWithType: Wgl.I3D.QueryGenlockMaxSourceDelayI3D(nint, Span, Span) - fullName: OpenTK.Graphics.Wgl.Wgl.I3D.QueryGenlockMaxSourceDelayI3D(nint, System.Span, System.Span) - type: Method - source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: QueryGenlockMaxSourceDelayI3D - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 1650 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_I3D_genlock] - - [entry point: wglQueryGenlockMaxSourceDelayI3D] - -
- example: [] - syntax: - content: public static bool QueryGenlockMaxSourceDelayI3D(nint hDC, Span uMaxLineDelay, Span uMaxPixelDelay) - parameters: - - id: hDC - type: System.IntPtr - - id: uMaxLineDelay - type: System.Span{System.UInt32} - - id: uMaxPixelDelay - type: System.Span{System.UInt32} - return: - type: System.Boolean - content.vb: Public Shared Function QueryGenlockMaxSourceDelayI3D(hDC As IntPtr, uMaxLineDelay As Span(Of UInteger), uMaxPixelDelay As Span(Of UInteger)) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.I3D.QueryGenlockMaxSourceDelayI3D* - nameWithType.vb: Wgl.I3D.QueryGenlockMaxSourceDelayI3D(IntPtr, Span(Of UInteger), Span(Of UInteger)) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.I3D.QueryGenlockMaxSourceDelayI3D(System.IntPtr, System.Span(Of UInteger), System.Span(Of UInteger)) - name.vb: QueryGenlockMaxSourceDelayI3D(IntPtr, Span(Of UInteger), Span(Of UInteger)) -- uid: OpenTK.Graphics.Wgl.Wgl.I3D.QueryGenlockMaxSourceDelayI3D(System.IntPtr,System.UInt32[],System.UInt32[]) - commentId: M:OpenTK.Graphics.Wgl.Wgl.I3D.QueryGenlockMaxSourceDelayI3D(System.IntPtr,System.UInt32[],System.UInt32[]) - id: QueryGenlockMaxSourceDelayI3D(System.IntPtr,System.UInt32[],System.UInt32[]) - parent: OpenTK.Graphics.Wgl.Wgl.I3D - langs: - - csharp - - vb - name: QueryGenlockMaxSourceDelayI3D(nint, uint[], uint[]) - nameWithType: Wgl.I3D.QueryGenlockMaxSourceDelayI3D(nint, uint[], uint[]) - fullName: OpenTK.Graphics.Wgl.Wgl.I3D.QueryGenlockMaxSourceDelayI3D(nint, uint[], uint[]) - type: Method - source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: QueryGenlockMaxSourceDelayI3D - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 1665 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_I3D_genlock] - - [entry point: wglQueryGenlockMaxSourceDelayI3D] - -
- example: [] - syntax: - content: public static bool QueryGenlockMaxSourceDelayI3D(nint hDC, uint[] uMaxLineDelay, uint[] uMaxPixelDelay) - parameters: - - id: hDC - type: System.IntPtr - - id: uMaxLineDelay - type: System.UInt32[] - - id: uMaxPixelDelay - type: System.UInt32[] - return: - type: System.Boolean - content.vb: Public Shared Function QueryGenlockMaxSourceDelayI3D(hDC As IntPtr, uMaxLineDelay As UInteger(), uMaxPixelDelay As UInteger()) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.I3D.QueryGenlockMaxSourceDelayI3D* - nameWithType.vb: Wgl.I3D.QueryGenlockMaxSourceDelayI3D(IntPtr, UInteger(), UInteger()) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.I3D.QueryGenlockMaxSourceDelayI3D(System.IntPtr, UInteger(), UInteger()) - name.vb: QueryGenlockMaxSourceDelayI3D(IntPtr, UInteger(), UInteger()) - uid: OpenTK.Graphics.Wgl.Wgl.I3D.QueryGenlockMaxSourceDelayI3D(System.IntPtr,System.UInt32@,System.UInt32@) commentId: M:OpenTK.Graphics.Wgl.Wgl.I3D.QueryGenlockMaxSourceDelayI3D(System.IntPtr,System.UInt32@,System.UInt32@) id: QueryGenlockMaxSourceDelayI3D(System.IntPtr,System.UInt32@,System.UInt32@) @@ -3446,18 +2296,14 @@ items: langs: - csharp - vb - name: QueryGenlockMaxSourceDelayI3D(nint, ref uint, ref uint) - nameWithType: Wgl.I3D.QueryGenlockMaxSourceDelayI3D(nint, ref uint, ref uint) - fullName: OpenTK.Graphics.Wgl.Wgl.I3D.QueryGenlockMaxSourceDelayI3D(nint, ref uint, ref uint) + name: QueryGenlockMaxSourceDelayI3D(nint, out uint, out uint) + nameWithType: Wgl.I3D.QueryGenlockMaxSourceDelayI3D(nint, out uint, out uint) + fullName: OpenTK.Graphics.Wgl.Wgl.I3D.QueryGenlockMaxSourceDelayI3D(nint, out uint, out uint) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: QueryGenlockMaxSourceDelayI3D - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 1680 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 1294 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -3469,7 +2315,7 @@ items:
example: [] syntax: - content: public static bool QueryGenlockMaxSourceDelayI3D(nint hDC, ref uint uMaxLineDelay, ref uint uMaxPixelDelay) + content: public static bool QueryGenlockMaxSourceDelayI3D(nint hDC, out uint uMaxLineDelay, out uint uMaxPixelDelay) parameters: - id: hDC type: System.IntPtr @@ -3484,25 +2330,21 @@ items: nameWithType.vb: Wgl.I3D.QueryGenlockMaxSourceDelayI3D(IntPtr, UInteger, UInteger) fullName.vb: OpenTK.Graphics.Wgl.Wgl.I3D.QueryGenlockMaxSourceDelayI3D(System.IntPtr, UInteger, UInteger) name.vb: QueryGenlockMaxSourceDelayI3D(IntPtr, UInteger, UInteger) -- uid: OpenTK.Graphics.Wgl.Wgl.I3D.ReleaseImageBufferEventsI3D(System.IntPtr,System.ReadOnlySpan{System.IntPtr}) - commentId: M:OpenTK.Graphics.Wgl.Wgl.I3D.ReleaseImageBufferEventsI3D(System.IntPtr,System.ReadOnlySpan{System.IntPtr}) - id: ReleaseImageBufferEventsI3D(System.IntPtr,System.ReadOnlySpan{System.IntPtr}) +- uid: OpenTK.Graphics.Wgl.Wgl.I3D.ReleaseImageBufferEventsI3D(System.IntPtr,System.ReadOnlySpan{System.IntPtr},System.UInt32) + commentId: M:OpenTK.Graphics.Wgl.Wgl.I3D.ReleaseImageBufferEventsI3D(System.IntPtr,System.ReadOnlySpan{System.IntPtr},System.UInt32) + id: ReleaseImageBufferEventsI3D(System.IntPtr,System.ReadOnlySpan{System.IntPtr},System.UInt32) parent: OpenTK.Graphics.Wgl.Wgl.I3D langs: - csharp - vb - name: ReleaseImageBufferEventsI3D(nint, ReadOnlySpan) - nameWithType: Wgl.I3D.ReleaseImageBufferEventsI3D(nint, ReadOnlySpan) - fullName: OpenTK.Graphics.Wgl.Wgl.I3D.ReleaseImageBufferEventsI3D(nint, System.ReadOnlySpan) + name: ReleaseImageBufferEventsI3D(nint, ReadOnlySpan, uint) + nameWithType: Wgl.I3D.ReleaseImageBufferEventsI3D(nint, ReadOnlySpan, uint) + fullName: OpenTK.Graphics.Wgl.Wgl.I3D.ReleaseImageBufferEventsI3D(nint, System.ReadOnlySpan, uint) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ReleaseImageBufferEventsI3D - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 1693 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 1307 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -3514,38 +2356,36 @@ items:
example: [] syntax: - content: public static bool ReleaseImageBufferEventsI3D(nint hDC, ReadOnlySpan pAddress) + content: public static bool ReleaseImageBufferEventsI3D(nint hDC, ReadOnlySpan pAddress, uint count) parameters: - id: hDC type: System.IntPtr - id: pAddress type: System.ReadOnlySpan{System.IntPtr} + - id: count + type: System.UInt32 return: type: System.Boolean - content.vb: Public Shared Function ReleaseImageBufferEventsI3D(hDC As IntPtr, pAddress As ReadOnlySpan(Of IntPtr)) As Boolean + content.vb: Public Shared Function ReleaseImageBufferEventsI3D(hDC As IntPtr, pAddress As ReadOnlySpan(Of IntPtr), count As UInteger) As Boolean overload: OpenTK.Graphics.Wgl.Wgl.I3D.ReleaseImageBufferEventsI3D* - nameWithType.vb: Wgl.I3D.ReleaseImageBufferEventsI3D(IntPtr, ReadOnlySpan(Of IntPtr)) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.I3D.ReleaseImageBufferEventsI3D(System.IntPtr, System.ReadOnlySpan(Of System.IntPtr)) - name.vb: ReleaseImageBufferEventsI3D(IntPtr, ReadOnlySpan(Of IntPtr)) -- uid: OpenTK.Graphics.Wgl.Wgl.I3D.ReleaseImageBufferEventsI3D(System.IntPtr,System.IntPtr[]) - commentId: M:OpenTK.Graphics.Wgl.Wgl.I3D.ReleaseImageBufferEventsI3D(System.IntPtr,System.IntPtr[]) - id: ReleaseImageBufferEventsI3D(System.IntPtr,System.IntPtr[]) + nameWithType.vb: Wgl.I3D.ReleaseImageBufferEventsI3D(IntPtr, ReadOnlySpan(Of IntPtr), UInteger) + fullName.vb: OpenTK.Graphics.Wgl.Wgl.I3D.ReleaseImageBufferEventsI3D(System.IntPtr, System.ReadOnlySpan(Of System.IntPtr), UInteger) + name.vb: ReleaseImageBufferEventsI3D(IntPtr, ReadOnlySpan(Of IntPtr), UInteger) +- uid: OpenTK.Graphics.Wgl.Wgl.I3D.ReleaseImageBufferEventsI3D(System.IntPtr,System.IntPtr[],System.UInt32) + commentId: M:OpenTK.Graphics.Wgl.Wgl.I3D.ReleaseImageBufferEventsI3D(System.IntPtr,System.IntPtr[],System.UInt32) + id: ReleaseImageBufferEventsI3D(System.IntPtr,System.IntPtr[],System.UInt32) parent: OpenTK.Graphics.Wgl.Wgl.I3D langs: - csharp - vb - name: ReleaseImageBufferEventsI3D(nint, nint[]) - nameWithType: Wgl.I3D.ReleaseImageBufferEventsI3D(nint, nint[]) - fullName: OpenTK.Graphics.Wgl.Wgl.I3D.ReleaseImageBufferEventsI3D(nint, nint[]) + name: ReleaseImageBufferEventsI3D(nint, nint[], uint) + nameWithType: Wgl.I3D.ReleaseImageBufferEventsI3D(nint, nint[], uint) + fullName: OpenTK.Graphics.Wgl.Wgl.I3D.ReleaseImageBufferEventsI3D(nint, nint[], uint) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ReleaseImageBufferEventsI3D - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 1706 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 1319 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -3557,19 +2397,21 @@ items:
example: [] syntax: - content: public static bool ReleaseImageBufferEventsI3D(nint hDC, nint[] pAddress) + content: public static bool ReleaseImageBufferEventsI3D(nint hDC, nint[] pAddress, uint count) parameters: - id: hDC type: System.IntPtr - id: pAddress type: System.IntPtr[] + - id: count + type: System.UInt32 return: type: System.Boolean - content.vb: Public Shared Function ReleaseImageBufferEventsI3D(hDC As IntPtr, pAddress As IntPtr()) As Boolean + content.vb: Public Shared Function ReleaseImageBufferEventsI3D(hDC As IntPtr, pAddress As IntPtr(), count As UInteger) As Boolean overload: OpenTK.Graphics.Wgl.Wgl.I3D.ReleaseImageBufferEventsI3D* - nameWithType.vb: Wgl.I3D.ReleaseImageBufferEventsI3D(IntPtr, IntPtr()) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.I3D.ReleaseImageBufferEventsI3D(System.IntPtr, System.IntPtr()) - name.vb: ReleaseImageBufferEventsI3D(IntPtr, IntPtr()) + nameWithType.vb: Wgl.I3D.ReleaseImageBufferEventsI3D(IntPtr, IntPtr(), UInteger) + fullName.vb: OpenTK.Graphics.Wgl.Wgl.I3D.ReleaseImageBufferEventsI3D(System.IntPtr, System.IntPtr(), UInteger) + name.vb: ReleaseImageBufferEventsI3D(IntPtr, IntPtr(), UInteger) - uid: OpenTK.Graphics.Wgl.Wgl.I3D.ReleaseImageBufferEventsI3D(System.IntPtr,System.IntPtr@,System.UInt32) commentId: M:OpenTK.Graphics.Wgl.Wgl.I3D.ReleaseImageBufferEventsI3D(System.IntPtr,System.IntPtr@,System.UInt32) id: ReleaseImageBufferEventsI3D(System.IntPtr,System.IntPtr@,System.UInt32) @@ -3582,13 +2424,9 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.I3D.ReleaseImageBufferEventsI3D(nint, in nint, uint) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ReleaseImageBufferEventsI3D - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 1719 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 1331 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -3604,107 +2442,17 @@ items: parameters: - id: hDC type: System.IntPtr - - id: pAddress - type: System.IntPtr - - id: count - type: System.UInt32 - return: - type: System.Boolean - content.vb: Public Shared Function ReleaseImageBufferEventsI3D(hDC As IntPtr, pAddress As IntPtr, count As UInteger) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.I3D.ReleaseImageBufferEventsI3D* - nameWithType.vb: Wgl.I3D.ReleaseImageBufferEventsI3D(IntPtr, IntPtr, UInteger) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.I3D.ReleaseImageBufferEventsI3D(System.IntPtr, System.IntPtr, UInteger) - name.vb: ReleaseImageBufferEventsI3D(IntPtr, IntPtr, UInteger) -- uid: OpenTK.Graphics.Wgl.Wgl.I3D.SetDigitalVideoParametersI3D(System.IntPtr,OpenTK.Graphics.Wgl.DigitalVideoAttribute,System.ReadOnlySpan{System.Int32}) - commentId: M:OpenTK.Graphics.Wgl.Wgl.I3D.SetDigitalVideoParametersI3D(System.IntPtr,OpenTK.Graphics.Wgl.DigitalVideoAttribute,System.ReadOnlySpan{System.Int32}) - id: SetDigitalVideoParametersI3D(System.IntPtr,OpenTK.Graphics.Wgl.DigitalVideoAttribute,System.ReadOnlySpan{System.Int32}) - parent: OpenTK.Graphics.Wgl.Wgl.I3D - langs: - - csharp - - vb - name: SetDigitalVideoParametersI3D(nint, DigitalVideoAttribute, ReadOnlySpan) - nameWithType: Wgl.I3D.SetDigitalVideoParametersI3D(nint, DigitalVideoAttribute, ReadOnlySpan) - fullName: OpenTK.Graphics.Wgl.Wgl.I3D.SetDigitalVideoParametersI3D(nint, OpenTK.Graphics.Wgl.DigitalVideoAttribute, System.ReadOnlySpan) - type: Method - source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: SetDigitalVideoParametersI3D - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 1731 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_I3D_digital_video_control] - - [entry point: wglSetDigitalVideoParametersI3D] - -
- example: [] - syntax: - content: public static bool SetDigitalVideoParametersI3D(nint hDC, DigitalVideoAttribute iAttribute, ReadOnlySpan piValue) - parameters: - - id: hDC - type: System.IntPtr - - id: iAttribute - type: OpenTK.Graphics.Wgl.DigitalVideoAttribute - - id: piValue - type: System.ReadOnlySpan{System.Int32} - return: - type: System.Boolean - content.vb: Public Shared Function SetDigitalVideoParametersI3D(hDC As IntPtr, iAttribute As DigitalVideoAttribute, piValue As ReadOnlySpan(Of Integer)) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.I3D.SetDigitalVideoParametersI3D* - nameWithType.vb: Wgl.I3D.SetDigitalVideoParametersI3D(IntPtr, DigitalVideoAttribute, ReadOnlySpan(Of Integer)) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.I3D.SetDigitalVideoParametersI3D(System.IntPtr, OpenTK.Graphics.Wgl.DigitalVideoAttribute, System.ReadOnlySpan(Of Integer)) - name.vb: SetDigitalVideoParametersI3D(IntPtr, DigitalVideoAttribute, ReadOnlySpan(Of Integer)) -- uid: OpenTK.Graphics.Wgl.Wgl.I3D.SetDigitalVideoParametersI3D(System.IntPtr,OpenTK.Graphics.Wgl.DigitalVideoAttribute,System.Int32[]) - commentId: M:OpenTK.Graphics.Wgl.Wgl.I3D.SetDigitalVideoParametersI3D(System.IntPtr,OpenTK.Graphics.Wgl.DigitalVideoAttribute,System.Int32[]) - id: SetDigitalVideoParametersI3D(System.IntPtr,OpenTK.Graphics.Wgl.DigitalVideoAttribute,System.Int32[]) - parent: OpenTK.Graphics.Wgl.Wgl.I3D - langs: - - csharp - - vb - name: SetDigitalVideoParametersI3D(nint, DigitalVideoAttribute, int[]) - nameWithType: Wgl.I3D.SetDigitalVideoParametersI3D(nint, DigitalVideoAttribute, int[]) - fullName: OpenTK.Graphics.Wgl.Wgl.I3D.SetDigitalVideoParametersI3D(nint, OpenTK.Graphics.Wgl.DigitalVideoAttribute, int[]) - type: Method - source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: SetDigitalVideoParametersI3D - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 1743 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_I3D_digital_video_control] - - [entry point: wglSetDigitalVideoParametersI3D] - -
- example: [] - syntax: - content: public static bool SetDigitalVideoParametersI3D(nint hDC, DigitalVideoAttribute iAttribute, int[] piValue) - parameters: - - id: hDC + - id: pAddress type: System.IntPtr - - id: iAttribute - type: OpenTK.Graphics.Wgl.DigitalVideoAttribute - - id: piValue - type: System.Int32[] + - id: count + type: System.UInt32 return: type: System.Boolean - content.vb: Public Shared Function SetDigitalVideoParametersI3D(hDC As IntPtr, iAttribute As DigitalVideoAttribute, piValue As Integer()) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.I3D.SetDigitalVideoParametersI3D* - nameWithType.vb: Wgl.I3D.SetDigitalVideoParametersI3D(IntPtr, DigitalVideoAttribute, Integer()) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.I3D.SetDigitalVideoParametersI3D(System.IntPtr, OpenTK.Graphics.Wgl.DigitalVideoAttribute, Integer()) - name.vb: SetDigitalVideoParametersI3D(IntPtr, DigitalVideoAttribute, Integer()) + content.vb: Public Shared Function ReleaseImageBufferEventsI3D(hDC As IntPtr, pAddress As IntPtr, count As UInteger) As Boolean + overload: OpenTK.Graphics.Wgl.Wgl.I3D.ReleaseImageBufferEventsI3D* + nameWithType.vb: Wgl.I3D.ReleaseImageBufferEventsI3D(IntPtr, IntPtr, UInteger) + fullName.vb: OpenTK.Graphics.Wgl.Wgl.I3D.ReleaseImageBufferEventsI3D(System.IntPtr, System.IntPtr, UInteger) + name.vb: ReleaseImageBufferEventsI3D(IntPtr, IntPtr, UInteger) - uid: OpenTK.Graphics.Wgl.Wgl.I3D.SetDigitalVideoParametersI3D(System.IntPtr,OpenTK.Graphics.Wgl.DigitalVideoAttribute,System.Int32@) commentId: M:OpenTK.Graphics.Wgl.Wgl.I3D.SetDigitalVideoParametersI3D(System.IntPtr,OpenTK.Graphics.Wgl.DigitalVideoAttribute,System.Int32@) id: SetDigitalVideoParametersI3D(System.IntPtr,OpenTK.Graphics.Wgl.DigitalVideoAttribute,System.Int32@) @@ -3717,13 +2465,9 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.I3D.SetDigitalVideoParametersI3D(nint, OpenTK.Graphics.Wgl.DigitalVideoAttribute, in int) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetDigitalVideoParametersI3D - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 1755 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 1343 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -3762,13 +2506,9 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.I3D.SetGammaTableI3D(nint, int, System.ReadOnlySpan, System.ReadOnlySpan, System.ReadOnlySpan) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetGammaTableI3D - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 1767 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 1355 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -3811,13 +2551,9 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.I3D.SetGammaTableI3D(nint, int, ushort[], ushort[], ushort[]) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetGammaTableI3D - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 1785 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 1373 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -3860,13 +2596,9 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.I3D.SetGammaTableI3D(nint, int, in ushort, in ushort, in ushort) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetGammaTableI3D - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 1803 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 1391 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -3897,96 +2629,6 @@ items: nameWithType.vb: Wgl.I3D.SetGammaTableI3D(IntPtr, Integer, UShort, UShort, UShort) fullName.vb: OpenTK.Graphics.Wgl.Wgl.I3D.SetGammaTableI3D(System.IntPtr, Integer, UShort, UShort, UShort) name.vb: SetGammaTableI3D(IntPtr, Integer, UShort, UShort, UShort) -- uid: OpenTK.Graphics.Wgl.Wgl.I3D.SetGammaTableParametersI3D(System.IntPtr,OpenTK.Graphics.Wgl.GammaTableAttribute,System.ReadOnlySpan{System.Int32}) - commentId: M:OpenTK.Graphics.Wgl.Wgl.I3D.SetGammaTableParametersI3D(System.IntPtr,OpenTK.Graphics.Wgl.GammaTableAttribute,System.ReadOnlySpan{System.Int32}) - id: SetGammaTableParametersI3D(System.IntPtr,OpenTK.Graphics.Wgl.GammaTableAttribute,System.ReadOnlySpan{System.Int32}) - parent: OpenTK.Graphics.Wgl.Wgl.I3D - langs: - - csharp - - vb - name: SetGammaTableParametersI3D(nint, GammaTableAttribute, ReadOnlySpan) - nameWithType: Wgl.I3D.SetGammaTableParametersI3D(nint, GammaTableAttribute, ReadOnlySpan) - fullName: OpenTK.Graphics.Wgl.Wgl.I3D.SetGammaTableParametersI3D(nint, OpenTK.Graphics.Wgl.GammaTableAttribute, System.ReadOnlySpan) - type: Method - source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: SetGammaTableParametersI3D - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 1817 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_I3D_gamma] - - [entry point: wglSetGammaTableParametersI3D] - -
- example: [] - syntax: - content: public static bool SetGammaTableParametersI3D(nint hDC, GammaTableAttribute iAttribute, ReadOnlySpan piValue) - parameters: - - id: hDC - type: System.IntPtr - - id: iAttribute - type: OpenTK.Graphics.Wgl.GammaTableAttribute - - id: piValue - type: System.ReadOnlySpan{System.Int32} - return: - type: System.Boolean - content.vb: Public Shared Function SetGammaTableParametersI3D(hDC As IntPtr, iAttribute As GammaTableAttribute, piValue As ReadOnlySpan(Of Integer)) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.I3D.SetGammaTableParametersI3D* - nameWithType.vb: Wgl.I3D.SetGammaTableParametersI3D(IntPtr, GammaTableAttribute, ReadOnlySpan(Of Integer)) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.I3D.SetGammaTableParametersI3D(System.IntPtr, OpenTK.Graphics.Wgl.GammaTableAttribute, System.ReadOnlySpan(Of Integer)) - name.vb: SetGammaTableParametersI3D(IntPtr, GammaTableAttribute, ReadOnlySpan(Of Integer)) -- uid: OpenTK.Graphics.Wgl.Wgl.I3D.SetGammaTableParametersI3D(System.IntPtr,OpenTK.Graphics.Wgl.GammaTableAttribute,System.Int32[]) - commentId: M:OpenTK.Graphics.Wgl.Wgl.I3D.SetGammaTableParametersI3D(System.IntPtr,OpenTK.Graphics.Wgl.GammaTableAttribute,System.Int32[]) - id: SetGammaTableParametersI3D(System.IntPtr,OpenTK.Graphics.Wgl.GammaTableAttribute,System.Int32[]) - parent: OpenTK.Graphics.Wgl.Wgl.I3D - langs: - - csharp - - vb - name: SetGammaTableParametersI3D(nint, GammaTableAttribute, int[]) - nameWithType: Wgl.I3D.SetGammaTableParametersI3D(nint, GammaTableAttribute, int[]) - fullName: OpenTK.Graphics.Wgl.Wgl.I3D.SetGammaTableParametersI3D(nint, OpenTK.Graphics.Wgl.GammaTableAttribute, int[]) - type: Method - source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: SetGammaTableParametersI3D - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 1829 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_I3D_gamma] - - [entry point: wglSetGammaTableParametersI3D] - -
- example: [] - syntax: - content: public static bool SetGammaTableParametersI3D(nint hDC, GammaTableAttribute iAttribute, int[] piValue) - parameters: - - id: hDC - type: System.IntPtr - - id: iAttribute - type: OpenTK.Graphics.Wgl.GammaTableAttribute - - id: piValue - type: System.Int32[] - return: - type: System.Boolean - content.vb: Public Shared Function SetGammaTableParametersI3D(hDC As IntPtr, iAttribute As GammaTableAttribute, piValue As Integer()) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.I3D.SetGammaTableParametersI3D* - nameWithType.vb: Wgl.I3D.SetGammaTableParametersI3D(IntPtr, GammaTableAttribute, Integer()) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.I3D.SetGammaTableParametersI3D(System.IntPtr, OpenTK.Graphics.Wgl.GammaTableAttribute, Integer()) - name.vb: SetGammaTableParametersI3D(IntPtr, GammaTableAttribute, Integer()) - uid: OpenTK.Graphics.Wgl.Wgl.I3D.SetGammaTableParametersI3D(System.IntPtr,OpenTK.Graphics.Wgl.GammaTableAttribute,System.Int32@) commentId: M:OpenTK.Graphics.Wgl.Wgl.I3D.SetGammaTableParametersI3D(System.IntPtr,OpenTK.Graphics.Wgl.GammaTableAttribute,System.Int32@) id: SetGammaTableParametersI3D(System.IntPtr,OpenTK.Graphics.Wgl.GammaTableAttribute,System.Int32@) @@ -3999,13 +2641,9 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.I3D.SetGammaTableParametersI3D(nint, OpenTK.Graphics.Wgl.GammaTableAttribute, in int) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetGammaTableParametersI3D - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 1841 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 1405 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -4389,17 +3027,17 @@ references: fullName: OpenTK.Graphics.Wgl.Wgl.I3D.BeginFrameTrackingI3D_ - uid: OpenTK.Graphics.Wgl.Wgl.I3D.CreateImageBufferI3D* commentId: Overload:OpenTK.Graphics.Wgl.Wgl.I3D.CreateImageBufferI3D - href: OpenTK.Graphics.Wgl.Wgl.I3D.html#OpenTK_Graphics_Wgl_Wgl_I3D_CreateImageBufferI3D_System_IntPtr_System_UInt32_OpenTK_Graphics_Wgl_WGLImageBufferMaskI3D_ + href: OpenTK.Graphics.Wgl.Wgl.I3D.html#OpenTK_Graphics_Wgl_Wgl_I3D_CreateImageBufferI3D_System_IntPtr_System_UInt32_OpenTK_Graphics_Wgl_ImageBufferMaskI3D_ name: CreateImageBufferI3D nameWithType: Wgl.I3D.CreateImageBufferI3D fullName: OpenTK.Graphics.Wgl.Wgl.I3D.CreateImageBufferI3D -- uid: OpenTK.Graphics.Wgl.WGLImageBufferMaskI3D - commentId: T:OpenTK.Graphics.Wgl.WGLImageBufferMaskI3D +- uid: OpenTK.Graphics.Wgl.ImageBufferMaskI3D + commentId: T:OpenTK.Graphics.Wgl.ImageBufferMaskI3D parent: OpenTK.Graphics.Wgl - href: OpenTK.Graphics.Wgl.WGLImageBufferMaskI3D.html - name: WGLImageBufferMaskI3D - nameWithType: WGLImageBufferMaskI3D - fullName: OpenTK.Graphics.Wgl.WGLImageBufferMaskI3D + href: OpenTK.Graphics.Wgl.ImageBufferMaskI3D.html + name: ImageBufferMaskI3D + nameWithType: ImageBufferMaskI3D + fullName: OpenTK.Graphics.Wgl.ImageBufferMaskI3D - uid: OpenTK.Graphics.Wgl.Wgl.I3D.DestroyImageBufferI3D_* commentId: Overload:OpenTK.Graphics.Wgl.Wgl.I3D.DestroyImageBufferI3D_ href: OpenTK.Graphics.Wgl.Wgl.I3D.html#OpenTK_Graphics_Wgl_Wgl_I3D_DestroyImageBufferI3D__System_IntPtr_System_IntPtr_ @@ -4860,27 +3498,38 @@ references: name: GenlockSourceI3D nameWithType: Wgl.I3D.GenlockSourceI3D fullName: OpenTK.Graphics.Wgl.Wgl.I3D.GenlockSourceI3D -- uid: System.Span{System.Int32} - commentId: T:System.Span{System.Int32} +- uid: System.Single + commentId: T:System.Single + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.single + name: float + nameWithType: float + fullName: float + nameWithType.vb: Single + fullName.vb: Single + name.vb: Single +- uid: System.Span{System.UInt16} + commentId: T:System.Span{System.UInt16} parent: System definition: System.Span`1 href: https://learn.microsoft.com/dotnet/api/system.span-1 - name: Span - nameWithType: Span - fullName: System.Span - nameWithType.vb: Span(Of Integer) - fullName.vb: System.Span(Of Integer) - name.vb: Span(Of Integer) + name: Span + nameWithType: Span + fullName: System.Span + nameWithType.vb: Span(Of UShort) + fullName.vb: System.Span(Of UShort) + name.vb: Span(Of UShort) spec.csharp: - uid: System.Span`1 name: Span isExternal: true href: https://learn.microsoft.com/dotnet/api/system.span-1 - name: < - - uid: System.Int32 - name: int + - uid: System.UInt16 + name: ushort isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 + href: https://learn.microsoft.com/dotnet/api/system.uint16 - name: '>' spec.vb: - uid: System.Span`1 @@ -4890,10 +3539,10 @@ references: - name: ( - name: Of - name: " " - - uid: System.Int32 - name: Integer + - uid: System.UInt16 + name: UShort isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 + href: https://learn.microsoft.com/dotnet/api/system.uint16 - name: ) - uid: System.Span`1 commentId: T:System.Span`1 @@ -4923,133 +3572,6 @@ references: - name: " " - name: T - name: ) -- uid: System.Int32[] - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - name: int[] - nameWithType: int[] - fullName: int[] - nameWithType.vb: Integer() - fullName.vb: Integer() - name.vb: Integer() - spec.csharp: - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '[' - - name: ']' - spec.vb: - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ( - - name: ) -- uid: System.Span{System.Single} - commentId: T:System.Span{System.Single} - parent: System - definition: System.Span`1 - href: https://learn.microsoft.com/dotnet/api/system.span-1 - name: Span - nameWithType: Span - fullName: System.Span - nameWithType.vb: Span(Of Single) - fullName.vb: System.Span(Of Single) - name.vb: Span(Of Single) - spec.csharp: - - uid: System.Span`1 - name: Span - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.span-1 - - name: < - - uid: System.Single - name: float - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.single - - name: '>' - spec.vb: - - uid: System.Span`1 - name: Span - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.span-1 - - name: ( - - name: Of - - name: " " - - uid: System.Single - name: Single - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.single - - name: ) -- uid: System.Single[] - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.single - name: float[] - nameWithType: float[] - fullName: float[] - nameWithType.vb: Single() - fullName.vb: Single() - name.vb: Single() - spec.csharp: - - uid: System.Single - name: float - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.single - - name: '[' - - name: ']' - spec.vb: - - uid: System.Single - name: Single - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.single - - name: ( - - name: ) -- uid: System.Single - commentId: T:System.Single - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.single - name: float - nameWithType: float - fullName: float - nameWithType.vb: Single - fullName.vb: Single - name.vb: Single -- uid: System.Span{System.UInt16} - commentId: T:System.Span{System.UInt16} - parent: System - definition: System.Span`1 - href: https://learn.microsoft.com/dotnet/api/system.span-1 - name: Span - nameWithType: Span - fullName: System.Span - nameWithType.vb: Span(Of UShort) - fullName.vb: System.Span(Of UShort) - name.vb: Span(Of UShort) - spec.csharp: - - uid: System.Span`1 - name: Span - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.span-1 - - name: < - - uid: System.UInt16 - name: ushort - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint16 - - name: '>' - spec.vb: - - uid: System.Span`1 - name: Span - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.span-1 - - name: ( - - name: Of - - name: " " - - uid: System.UInt16 - name: UShort - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint16 - - name: ) - uid: System.UInt16[] isExternal: true href: https://learn.microsoft.com/dotnet/api/system.uint16 @@ -5084,76 +3606,6 @@ references: nameWithType.vb: UShort fullName.vb: UShort name.vb: UShort -- uid: System.Span{System.UInt32} - commentId: T:System.Span{System.UInt32} - parent: System - definition: System.Span`1 - href: https://learn.microsoft.com/dotnet/api/system.span-1 - name: Span - nameWithType: Span - fullName: System.Span - nameWithType.vb: Span(Of UInteger) - fullName.vb: System.Span(Of UInteger) - name.vb: Span(Of UInteger) - spec.csharp: - - uid: System.Span`1 - name: Span - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.span-1 - - name: < - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: '>' - spec.vb: - - uid: System.Span`1 - name: Span - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.span-1 - - name: ( - - name: Of - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: System.ReadOnlySpan{System.Int32} - commentId: T:System.ReadOnlySpan{System.Int32} - parent: System - definition: System.ReadOnlySpan`1 - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - name: ReadOnlySpan - nameWithType: ReadOnlySpan - fullName: System.ReadOnlySpan - nameWithType.vb: ReadOnlySpan(Of Integer) - fullName.vb: System.ReadOnlySpan(Of Integer) - name.vb: ReadOnlySpan(Of Integer) - spec.csharp: - - uid: System.ReadOnlySpan`1 - name: ReadOnlySpan - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - - name: < - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '>' - spec.vb: - - uid: System.ReadOnlySpan`1 - name: ReadOnlySpan - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - - name: ( - - name: Of - - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) - uid: System.ReadOnlySpan{System.UInt16} commentId: T:System.ReadOnlySpan{System.UInt16} parent: System diff --git a/api/OpenTK.Graphics.Wgl.Wgl.NV.yml b/api/OpenTK.Graphics.Wgl.Wgl.NV.yml index 9f73d17c..43bd333f 100644 --- a/api/OpenTK.Graphics.Wgl.Wgl.NV.yml +++ b/api/OpenTK.Graphics.Wgl.Wgl.NV.yml @@ -12,39 +12,37 @@ items: - OpenTK.Graphics.Wgl.Wgl.NV.BindVideoCaptureDeviceNV_(System.UInt32,System.IntPtr) - OpenTK.Graphics.Wgl.Wgl.NV.BindVideoDeviceNV(System.IntPtr,System.UInt32,System.IntPtr,System.Int32*) - OpenTK.Graphics.Wgl.Wgl.NV.BindVideoDeviceNV(System.IntPtr,System.UInt32,System.IntPtr,System.Int32@) + - OpenTK.Graphics.Wgl.Wgl.NV.BindVideoDeviceNV(System.IntPtr,System.UInt32,System.IntPtr,System.Int32[]) + - OpenTK.Graphics.Wgl.Wgl.NV.BindVideoDeviceNV(System.IntPtr,System.UInt32,System.IntPtr,System.ReadOnlySpan{System.Int32}) - OpenTK.Graphics.Wgl.Wgl.NV.BindVideoImageNV(System.IntPtr,System.IntPtr,OpenTK.Graphics.Wgl.VideoOutputBuffer) - OpenTK.Graphics.Wgl.Wgl.NV.BindVideoImageNV_(System.IntPtr,System.IntPtr,OpenTK.Graphics.Wgl.VideoOutputBuffer) - OpenTK.Graphics.Wgl.Wgl.NV.CopyImageSubDataNV(System.IntPtr,System.UInt32,OpenTK.Graphics.OpenGL.TextureTarget,System.Int32,System.Int32,System.Int32,System.Int32,System.IntPtr,System.UInt32,OpenTK.Graphics.OpenGL.TextureTarget,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32) - OpenTK.Graphics.Wgl.Wgl.NV.CopyImageSubDataNV_(System.IntPtr,System.UInt32,OpenTK.Graphics.OpenGL.TextureTarget,System.Int32,System.Int32,System.Int32,System.Int32,System.IntPtr,System.UInt32,OpenTK.Graphics.OpenGL.TextureTarget,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32) - OpenTK.Graphics.Wgl.Wgl.NV.CreateAffinityDCNV(System.IntPtr*) - OpenTK.Graphics.Wgl.Wgl.NV.CreateAffinityDCNV(System.IntPtr@) + - OpenTK.Graphics.Wgl.Wgl.NV.CreateAffinityDCNV(System.IntPtr[]) + - OpenTK.Graphics.Wgl.Wgl.NV.CreateAffinityDCNV(System.ReadOnlySpan{System.IntPtr}) - OpenTK.Graphics.Wgl.Wgl.NV.DXCloseDeviceNV(System.IntPtr) - OpenTK.Graphics.Wgl.Wgl.NV.DXCloseDeviceNV_(System.IntPtr) - OpenTK.Graphics.Wgl.Wgl.NV.DXLockObjectsNV(System.IntPtr,System.Int32,System.IntPtr*) - OpenTK.Graphics.Wgl.Wgl.NV.DXLockObjectsNV(System.IntPtr,System.Int32,System.IntPtr@) - - OpenTK.Graphics.Wgl.Wgl.NV.DXLockObjectsNV(System.IntPtr,System.IntPtr[]) - - OpenTK.Graphics.Wgl.Wgl.NV.DXLockObjectsNV(System.IntPtr,System.Span{System.IntPtr}) - - OpenTK.Graphics.Wgl.Wgl.NV.DXObjectAccessNV(System.IntPtr,OpenTK.Graphics.Wgl.WGLDXInteropMaskNV) - - OpenTK.Graphics.Wgl.Wgl.NV.DXObjectAccessNV_(System.IntPtr,OpenTK.Graphics.Wgl.WGLDXInteropMaskNV) + - OpenTK.Graphics.Wgl.Wgl.NV.DXLockObjectsNV(System.IntPtr,System.Int32,System.IntPtr[]) + - OpenTK.Graphics.Wgl.Wgl.NV.DXLockObjectsNV(System.IntPtr,System.Int32,System.Span{System.IntPtr}) + - OpenTK.Graphics.Wgl.Wgl.NV.DXObjectAccessNV(System.IntPtr,OpenTK.Graphics.Wgl.DXInteropMaskNV) + - OpenTK.Graphics.Wgl.Wgl.NV.DXObjectAccessNV_(System.IntPtr,OpenTK.Graphics.Wgl.DXInteropMaskNV) - OpenTK.Graphics.Wgl.Wgl.NV.DXOpenDeviceNV(System.IntPtr) - OpenTK.Graphics.Wgl.Wgl.NV.DXOpenDeviceNV(System.Void*) - - OpenTK.Graphics.Wgl.Wgl.NV.DXOpenDeviceNV``1(System.Span{``0}) - OpenTK.Graphics.Wgl.Wgl.NV.DXOpenDeviceNV``1(``0@) - - OpenTK.Graphics.Wgl.Wgl.NV.DXOpenDeviceNV``1(``0[]) - - OpenTK.Graphics.Wgl.Wgl.NV.DXRegisterObjectNV(System.IntPtr,System.IntPtr,System.UInt32,OpenTK.Graphics.Wgl.ObjectTypeDX,OpenTK.Graphics.Wgl.WGLDXInteropMaskNV) - - OpenTK.Graphics.Wgl.Wgl.NV.DXRegisterObjectNV(System.IntPtr,System.Void*,System.UInt32,OpenTK.Graphics.Wgl.ObjectTypeDX,OpenTK.Graphics.Wgl.WGLDXInteropMaskNV) - - OpenTK.Graphics.Wgl.Wgl.NV.DXRegisterObjectNV``1(System.IntPtr,System.Span{``0},System.UInt32,OpenTK.Graphics.Wgl.ObjectTypeDX,OpenTK.Graphics.Wgl.WGLDXInteropMaskNV) - - OpenTK.Graphics.Wgl.Wgl.NV.DXRegisterObjectNV``1(System.IntPtr,``0@,System.UInt32,OpenTK.Graphics.Wgl.ObjectTypeDX,OpenTK.Graphics.Wgl.WGLDXInteropMaskNV) - - OpenTK.Graphics.Wgl.Wgl.NV.DXRegisterObjectNV``1(System.IntPtr,``0[],System.UInt32,OpenTK.Graphics.Wgl.ObjectTypeDX,OpenTK.Graphics.Wgl.WGLDXInteropMaskNV) + - OpenTK.Graphics.Wgl.Wgl.NV.DXRegisterObjectNV(System.IntPtr,System.IntPtr,System.UInt32,OpenTK.Graphics.Wgl.ObjectTypeDX,OpenTK.Graphics.Wgl.DXInteropMaskNV) + - OpenTK.Graphics.Wgl.Wgl.NV.DXRegisterObjectNV(System.IntPtr,System.Void*,System.UInt32,OpenTK.Graphics.Wgl.ObjectTypeDX,OpenTK.Graphics.Wgl.DXInteropMaskNV) + - OpenTK.Graphics.Wgl.Wgl.NV.DXRegisterObjectNV``1(System.IntPtr,``0@,System.UInt32,OpenTK.Graphics.Wgl.ObjectTypeDX,OpenTK.Graphics.Wgl.DXInteropMaskNV) - OpenTK.Graphics.Wgl.Wgl.NV.DXSetResourceShareHandleNV(System.IntPtr,System.IntPtr) - OpenTK.Graphics.Wgl.Wgl.NV.DXSetResourceShareHandleNV(System.Void*,System.IntPtr) - - OpenTK.Graphics.Wgl.Wgl.NV.DXSetResourceShareHandleNV``1(System.Span{``0},System.IntPtr) - OpenTK.Graphics.Wgl.Wgl.NV.DXSetResourceShareHandleNV``1(``0@,System.IntPtr) - - OpenTK.Graphics.Wgl.Wgl.NV.DXSetResourceShareHandleNV``1(``0[],System.IntPtr) - OpenTK.Graphics.Wgl.Wgl.NV.DXUnlockObjectsNV(System.IntPtr,System.Int32,System.IntPtr*) - OpenTK.Graphics.Wgl.Wgl.NV.DXUnlockObjectsNV(System.IntPtr,System.Int32,System.IntPtr@) - - OpenTK.Graphics.Wgl.Wgl.NV.DXUnlockObjectsNV(System.IntPtr,System.IntPtr[]) - - OpenTK.Graphics.Wgl.Wgl.NV.DXUnlockObjectsNV(System.IntPtr,System.Span{System.IntPtr}) + - OpenTK.Graphics.Wgl.Wgl.NV.DXUnlockObjectsNV(System.IntPtr,System.Int32,System.IntPtr[]) + - OpenTK.Graphics.Wgl.Wgl.NV.DXUnlockObjectsNV(System.IntPtr,System.Int32,System.Span{System.IntPtr}) - OpenTK.Graphics.Wgl.Wgl.NV.DXUnregisterObjectNV(System.IntPtr,System.IntPtr) - OpenTK.Graphics.Wgl.Wgl.NV.DXUnregisterObjectNV_(System.IntPtr,System.IntPtr) - OpenTK.Graphics.Wgl.Wgl.NV.DelayBeforeSwapNV(System.IntPtr,System.Single) @@ -53,53 +51,45 @@ items: - OpenTK.Graphics.Wgl.Wgl.NV.DeleteDCNV_(System.IntPtr) - OpenTK.Graphics.Wgl.Wgl.NV.EnumGpuDevicesNV(System.IntPtr,System.UInt32,OpenTK.Graphics.Wgl._GPU_DEVICE*) - OpenTK.Graphics.Wgl.Wgl.NV.EnumGpuDevicesNV(System.IntPtr,System.UInt32,OpenTK.Graphics.Wgl._GPU_DEVICE@) + - OpenTK.Graphics.Wgl.Wgl.NV.EnumGpuDevicesNV(System.IntPtr,System.UInt32,OpenTK.Graphics.Wgl._GPU_DEVICE[]) + - OpenTK.Graphics.Wgl.Wgl.NV.EnumGpuDevicesNV(System.IntPtr,System.UInt32,System.Span{OpenTK.Graphics.Wgl._GPU_DEVICE}) - OpenTK.Graphics.Wgl.Wgl.NV.EnumGpusFromAffinityDCNV(System.IntPtr,System.UInt32,System.IntPtr*) - OpenTK.Graphics.Wgl.Wgl.NV.EnumGpusFromAffinityDCNV(System.IntPtr,System.UInt32,System.IntPtr@) - - OpenTK.Graphics.Wgl.Wgl.NV.EnumGpusFromAffinityDCNV(System.IntPtr,System.UInt32,System.IntPtr[]) - - OpenTK.Graphics.Wgl.Wgl.NV.EnumGpusFromAffinityDCNV(System.IntPtr,System.UInt32,System.Span{System.IntPtr}) - OpenTK.Graphics.Wgl.Wgl.NV.EnumGpusNV(System.UInt32,System.IntPtr*) - OpenTK.Graphics.Wgl.Wgl.NV.EnumGpusNV(System.UInt32,System.IntPtr@) - - OpenTK.Graphics.Wgl.Wgl.NV.EnumGpusNV(System.UInt32,System.IntPtr[]) - - OpenTK.Graphics.Wgl.Wgl.NV.EnumGpusNV(System.UInt32,System.Span{System.IntPtr}) - OpenTK.Graphics.Wgl.Wgl.NV.EnumerateVideoCaptureDevicesNV(System.IntPtr,System.IntPtr*) - OpenTK.Graphics.Wgl.Wgl.NV.EnumerateVideoCaptureDevicesNV(System.IntPtr,System.IntPtr@) + - OpenTK.Graphics.Wgl.Wgl.NV.EnumerateVideoCaptureDevicesNV(System.IntPtr,System.IntPtr[]) + - OpenTK.Graphics.Wgl.Wgl.NV.EnumerateVideoCaptureDevicesNV(System.IntPtr,System.Span{System.IntPtr}) - OpenTK.Graphics.Wgl.Wgl.NV.EnumerateVideoDevicesNV(System.IntPtr,System.IntPtr*) - OpenTK.Graphics.Wgl.Wgl.NV.EnumerateVideoDevicesNV(System.IntPtr,System.IntPtr@) + - OpenTK.Graphics.Wgl.Wgl.NV.EnumerateVideoDevicesNV(System.IntPtr,System.IntPtr[]) + - OpenTK.Graphics.Wgl.Wgl.NV.EnumerateVideoDevicesNV(System.IntPtr,System.Span{System.IntPtr}) - OpenTK.Graphics.Wgl.Wgl.NV.FreeMemoryNV(System.IntPtr) - OpenTK.Graphics.Wgl.Wgl.NV.FreeMemoryNV(System.Void*) + - OpenTK.Graphics.Wgl.Wgl.NV.FreeMemoryNV``1(System.Span{``0}) - OpenTK.Graphics.Wgl.Wgl.NV.FreeMemoryNV``1(``0@) + - OpenTK.Graphics.Wgl.Wgl.NV.FreeMemoryNV``1(``0[]) - OpenTK.Graphics.Wgl.Wgl.NV.GetVideoDeviceNV(System.IntPtr,System.Int32,System.IntPtr*) - OpenTK.Graphics.Wgl.Wgl.NV.GetVideoDeviceNV(System.IntPtr,System.Int32,System.IntPtr@) - - OpenTK.Graphics.Wgl.Wgl.NV.GetVideoDeviceNV(System.IntPtr,System.IntPtr[]) - - OpenTK.Graphics.Wgl.Wgl.NV.GetVideoDeviceNV(System.IntPtr,System.Span{System.IntPtr}) - - OpenTK.Graphics.Wgl.Wgl.NV.GetVideoInfoNV(System.IntPtr,System.Span{System.UInt64},System.Span{System.UInt64}) + - OpenTK.Graphics.Wgl.Wgl.NV.GetVideoDeviceNV(System.IntPtr,System.Int32,System.IntPtr[]) + - OpenTK.Graphics.Wgl.Wgl.NV.GetVideoDeviceNV(System.IntPtr,System.Int32,System.Span{System.IntPtr}) - OpenTK.Graphics.Wgl.Wgl.NV.GetVideoInfoNV(System.IntPtr,System.UInt64*,System.UInt64*) - OpenTK.Graphics.Wgl.Wgl.NV.GetVideoInfoNV(System.IntPtr,System.UInt64@,System.UInt64@) - - OpenTK.Graphics.Wgl.Wgl.NV.GetVideoInfoNV(System.IntPtr,System.UInt64[],System.UInt64[]) - OpenTK.Graphics.Wgl.Wgl.NV.JoinSwapGroupNV(System.IntPtr,System.UInt32) - OpenTK.Graphics.Wgl.Wgl.NV.JoinSwapGroupNV_(System.IntPtr,System.UInt32) - OpenTK.Graphics.Wgl.Wgl.NV.LockVideoCaptureDeviceNV(System.IntPtr,System.IntPtr) - OpenTK.Graphics.Wgl.Wgl.NV.LockVideoCaptureDeviceNV_(System.IntPtr,System.IntPtr) - OpenTK.Graphics.Wgl.Wgl.NV.QueryCurrentContextNV(OpenTK.Graphics.Wgl.ContextAttribute,System.Int32*) - OpenTK.Graphics.Wgl.Wgl.NV.QueryCurrentContextNV(OpenTK.Graphics.Wgl.ContextAttribute,System.Int32@) - - OpenTK.Graphics.Wgl.Wgl.NV.QueryCurrentContextNV(OpenTK.Graphics.Wgl.ContextAttribute,System.Int32[]) - - OpenTK.Graphics.Wgl.Wgl.NV.QueryCurrentContextNV(OpenTK.Graphics.Wgl.ContextAttribute,System.Span{System.Int32}) - - OpenTK.Graphics.Wgl.Wgl.NV.QueryFrameCountNV(System.IntPtr,System.Span{System.UInt32}) - OpenTK.Graphics.Wgl.Wgl.NV.QueryFrameCountNV(System.IntPtr,System.UInt32*) - OpenTK.Graphics.Wgl.Wgl.NV.QueryFrameCountNV(System.IntPtr,System.UInt32@) - - OpenTK.Graphics.Wgl.Wgl.NV.QueryFrameCountNV(System.IntPtr,System.UInt32[]) - - OpenTK.Graphics.Wgl.Wgl.NV.QueryMaxSwapGroupsNV(System.IntPtr,System.Span{System.UInt32},System.Span{System.UInt32}) - OpenTK.Graphics.Wgl.Wgl.NV.QueryMaxSwapGroupsNV(System.IntPtr,System.UInt32*,System.UInt32*) - OpenTK.Graphics.Wgl.Wgl.NV.QueryMaxSwapGroupsNV(System.IntPtr,System.UInt32@,System.UInt32@) - - OpenTK.Graphics.Wgl.Wgl.NV.QueryMaxSwapGroupsNV(System.IntPtr,System.UInt32[],System.UInt32[]) - - OpenTK.Graphics.Wgl.Wgl.NV.QuerySwapGroupNV(System.IntPtr,System.Span{System.UInt32},System.Span{System.UInt32}) - OpenTK.Graphics.Wgl.Wgl.NV.QuerySwapGroupNV(System.IntPtr,System.UInt32*,System.UInt32*) - OpenTK.Graphics.Wgl.Wgl.NV.QuerySwapGroupNV(System.IntPtr,System.UInt32@,System.UInt32@) - - OpenTK.Graphics.Wgl.Wgl.NV.QuerySwapGroupNV(System.IntPtr,System.UInt32[],System.UInt32[]) - OpenTK.Graphics.Wgl.Wgl.NV.QueryVideoCaptureDeviceNV(System.IntPtr,System.IntPtr,OpenTK.Graphics.Wgl.VideoCaptureDeviceAttribute,System.Int32*) - OpenTK.Graphics.Wgl.Wgl.NV.QueryVideoCaptureDeviceNV(System.IntPtr,System.IntPtr,OpenTK.Graphics.Wgl.VideoCaptureDeviceAttribute,System.Int32@) - - OpenTK.Graphics.Wgl.Wgl.NV.QueryVideoCaptureDeviceNV(System.IntPtr,System.IntPtr,OpenTK.Graphics.Wgl.VideoCaptureDeviceAttribute,System.Int32[]) - - OpenTK.Graphics.Wgl.Wgl.NV.QueryVideoCaptureDeviceNV(System.IntPtr,System.IntPtr,OpenTK.Graphics.Wgl.VideoCaptureDeviceAttribute,System.Span{System.Int32}) - OpenTK.Graphics.Wgl.Wgl.NV.ReleaseVideoCaptureDeviceNV(System.IntPtr,System.IntPtr) - OpenTK.Graphics.Wgl.Wgl.NV.ReleaseVideoCaptureDeviceNV_(System.IntPtr,System.IntPtr) - OpenTK.Graphics.Wgl.Wgl.NV.ReleaseVideoDeviceNV(System.IntPtr) @@ -108,10 +98,8 @@ items: - OpenTK.Graphics.Wgl.Wgl.NV.ReleaseVideoImageNV_(System.IntPtr,OpenTK.Graphics.Wgl.VideoOutputBuffer) - OpenTK.Graphics.Wgl.Wgl.NV.ResetFrameCountNV(System.IntPtr) - OpenTK.Graphics.Wgl.Wgl.NV.ResetFrameCountNV_(System.IntPtr) - - OpenTK.Graphics.Wgl.Wgl.NV.SendPbufferToVideoNV(System.IntPtr,OpenTK.Graphics.Wgl.VideoOutputBufferType,System.Span{System.UInt64},System.Int32) - OpenTK.Graphics.Wgl.Wgl.NV.SendPbufferToVideoNV(System.IntPtr,OpenTK.Graphics.Wgl.VideoOutputBufferType,System.UInt64*,System.Int32) - OpenTK.Graphics.Wgl.Wgl.NV.SendPbufferToVideoNV(System.IntPtr,OpenTK.Graphics.Wgl.VideoOutputBufferType,System.UInt64@,System.Int32) - - OpenTK.Graphics.Wgl.Wgl.NV.SendPbufferToVideoNV(System.IntPtr,OpenTK.Graphics.Wgl.VideoOutputBufferType,System.UInt64[],System.Int32) langs: - csharp - vb @@ -120,13 +108,9 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.NV type: Class source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: NV - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 1853 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 1417 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -157,17 +141,18 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.NV.AllocateMemoryNV(int, float, float, float) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: AllocateMemoryNV - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs startLine: 341 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl - summary: '[requires: WGL_NV_vertex_array_range] [entry point: wglAllocateMemoryNV]
' + summary: >- + [requires: WGL_NV_vertex_array_range] + + [entry point: wglAllocateMemoryNV] + +
example: [] syntax: content: public static void* AllocateMemoryNV(int size, float readfreq, float writefreq, float priority) @@ -199,17 +184,18 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.NV.BindSwapBarrierNV_(uint, uint) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: BindSwapBarrierNV_ - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs startLine: 344 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl - summary: '[requires: WGL_NV_swap_group] [entry point: wglBindSwapBarrierNV]
' + summary: >- + [requires: WGL_NV_swap_group] + + [entry point: wglBindSwapBarrierNV] + +
example: [] syntax: content: public static int BindSwapBarrierNV_(uint group, uint barrier) @@ -237,17 +223,18 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.NV.BindVideoCaptureDeviceNV_(uint, nint) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: BindVideoCaptureDeviceNV_ - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs startLine: 347 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl - summary: '[requires: WGL_NV_video_capture] [entry point: wglBindVideoCaptureDeviceNV]
' + summary: >- + [requires: WGL_NV_video_capture] + + [entry point: wglBindVideoCaptureDeviceNV] + +
example: [] syntax: content: public static int BindVideoCaptureDeviceNV_(uint uVideoSlot, nint hDevice) @@ -275,17 +262,18 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.NV.BindVideoDeviceNV(nint, uint, nint, int*) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: BindVideoDeviceNV - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs startLine: 350 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl - summary: '[requires: WGL_NV_present_video] [entry point: wglBindVideoDeviceNV]
' + summary: >- + [requires: WGL_NV_present_video] + + [entry point: wglBindVideoDeviceNV] + +
example: [] syntax: content: public static int BindVideoDeviceNV(nint hDc, uint uVideoSlot, nint hVideoDevice, int* piAttribList) @@ -317,17 +305,18 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.NV.BindVideoImageNV_(nint, nint, OpenTK.Graphics.Wgl.VideoOutputBuffer) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: BindVideoImageNV_ - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs startLine: 353 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl - summary: '[requires: WGL_NV_video_output] [entry point: wglBindVideoImageNV]
' + summary: >- + [requires: WGL_NV_video_output] + + [entry point: wglBindVideoImageNV] + +
example: [] syntax: content: public static int BindVideoImageNV_(nint hVideoDevice, nint hPbuffer, VideoOutputBuffer iVideoBuffer) @@ -357,17 +346,18 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.NV.CopyImageSubDataNV_(nint, uint, OpenTK.Graphics.OpenGL.TextureTarget, int, int, int, int, nint, uint, OpenTK.Graphics.OpenGL.TextureTarget, int, int, int, int, int, int, int) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CopyImageSubDataNV_ - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs startLine: 356 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl - summary: '[requires: WGL_NV_copy_image] [entry point: wglCopyImageSubDataNV]
' + summary: >- + [requires: WGL_NV_copy_image] + + [entry point: wglCopyImageSubDataNV] + +
example: [] syntax: content: public static int CopyImageSubDataNV_(nint hSrcRC, uint srcName, TextureTarget srcTarget, int srcLevel, int srcX, int srcY, int srcZ, nint hDstRC, uint dstName, TextureTarget dstTarget, int dstLevel, int dstX, int dstY, int dstZ, int width, int height, int depth) @@ -425,17 +415,18 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.NV.CreateAffinityDCNV(nint*) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateAffinityDCNV - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs startLine: 359 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl - summary: '[requires: WGL_NV_gpu_affinity] [entry point: wglCreateAffinityDCNV]
' + summary: >- + [requires: WGL_NV_gpu_affinity] + + [entry point: wglCreateAffinityDCNV] + +
example: [] syntax: content: public static nint CreateAffinityDCNV(nint* phGpuList) @@ -461,17 +452,18 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.NV.DelayBeforeSwapNV_(nint, float) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DelayBeforeSwapNV_ - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs startLine: 362 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl - summary: '[requires: WGL_NV_delay_before_swap] [entry point: wglDelayBeforeSwapNV]
' + summary: >- + [requires: WGL_NV_delay_before_swap] + + [entry point: wglDelayBeforeSwapNV] + +
example: [] syntax: content: public static int DelayBeforeSwapNV_(nint hDC, float seconds) @@ -499,17 +491,18 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.NV.DeleteDCNV_(nint) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DeleteDCNV_ - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs startLine: 365 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl - summary: '[requires: WGL_NV_gpu_affinity] [entry point: wglDeleteDCNV]
' + summary: >- + [requires: WGL_NV_gpu_affinity] + + [entry point: wglDeleteDCNV] + +
example: [] syntax: content: public static int DeleteDCNV_(nint hdc) @@ -535,17 +528,18 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.NV.DXCloseDeviceNV_(nint) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DXCloseDeviceNV_ - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs startLine: 368 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl - summary: '[requires: WGL_NV_DX_interop] [entry point: wglDXCloseDeviceNV]
' + summary: >- + [requires: WGL_NV_DX_interop] + + [entry point: wglDXCloseDeviceNV] + +
example: [] syntax: content: public static int DXCloseDeviceNV_(nint hDevice) @@ -571,17 +565,18 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.NV.DXLockObjectsNV(nint, int, nint*) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DXLockObjectsNV - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs startLine: 371 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl - summary: '[requires: WGL_NV_DX_interop] [entry point: wglDXLockObjectsNV]
' + summary: >- + [requires: WGL_NV_DX_interop] + + [entry point: wglDXLockObjectsNV] + +
example: [] syntax: content: public static int DXLockObjectsNV(nint hDevice, int count, nint* hObjects) @@ -599,44 +594,45 @@ items: nameWithType.vb: Wgl.NV.DXLockObjectsNV(IntPtr, Integer, IntPtr*) fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.DXLockObjectsNV(System.IntPtr, Integer, System.IntPtr*) name.vb: DXLockObjectsNV(IntPtr, Integer, IntPtr*) -- uid: OpenTK.Graphics.Wgl.Wgl.NV.DXObjectAccessNV_(System.IntPtr,OpenTK.Graphics.Wgl.WGLDXInteropMaskNV) - commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.DXObjectAccessNV_(System.IntPtr,OpenTK.Graphics.Wgl.WGLDXInteropMaskNV) - id: DXObjectAccessNV_(System.IntPtr,OpenTK.Graphics.Wgl.WGLDXInteropMaskNV) +- uid: OpenTK.Graphics.Wgl.Wgl.NV.DXObjectAccessNV_(System.IntPtr,OpenTK.Graphics.Wgl.DXInteropMaskNV) + commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.DXObjectAccessNV_(System.IntPtr,OpenTK.Graphics.Wgl.DXInteropMaskNV) + id: DXObjectAccessNV_(System.IntPtr,OpenTK.Graphics.Wgl.DXInteropMaskNV) parent: OpenTK.Graphics.Wgl.Wgl.NV langs: - csharp - vb - name: DXObjectAccessNV_(nint, WGLDXInteropMaskNV) - nameWithType: Wgl.NV.DXObjectAccessNV_(nint, WGLDXInteropMaskNV) - fullName: OpenTK.Graphics.Wgl.Wgl.NV.DXObjectAccessNV_(nint, OpenTK.Graphics.Wgl.WGLDXInteropMaskNV) + name: DXObjectAccessNV_(nint, DXInteropMaskNV) + nameWithType: Wgl.NV.DXObjectAccessNV_(nint, DXInteropMaskNV) + fullName: OpenTK.Graphics.Wgl.Wgl.NV.DXObjectAccessNV_(nint, OpenTK.Graphics.Wgl.DXInteropMaskNV) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DXObjectAccessNV_ - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs startLine: 374 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl - summary: '[requires: WGL_NV_DX_interop] [entry point: wglDXObjectAccessNV]
' + summary: >- + [requires: WGL_NV_DX_interop] + + [entry point: wglDXObjectAccessNV] + +
example: [] syntax: - content: public static int DXObjectAccessNV_(nint hObject, WGLDXInteropMaskNV access) + content: public static int DXObjectAccessNV_(nint hObject, DXInteropMaskNV access) parameters: - id: hObject type: System.IntPtr - id: access - type: OpenTK.Graphics.Wgl.WGLDXInteropMaskNV + type: OpenTK.Graphics.Wgl.DXInteropMaskNV return: type: System.Int32 - content.vb: Public Shared Function DXObjectAccessNV_(hObject As IntPtr, access As WGLDXInteropMaskNV) As Integer + content.vb: Public Shared Function DXObjectAccessNV_(hObject As IntPtr, access As DXInteropMaskNV) As Integer overload: OpenTK.Graphics.Wgl.Wgl.NV.DXObjectAccessNV_* - nameWithType.vb: Wgl.NV.DXObjectAccessNV_(IntPtr, WGLDXInteropMaskNV) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.DXObjectAccessNV_(System.IntPtr, OpenTK.Graphics.Wgl.WGLDXInteropMaskNV) - name.vb: DXObjectAccessNV_(IntPtr, WGLDXInteropMaskNV) + nameWithType.vb: Wgl.NV.DXObjectAccessNV_(IntPtr, DXInteropMaskNV) + fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.DXObjectAccessNV_(System.IntPtr, OpenTK.Graphics.Wgl.DXInteropMaskNV) + name.vb: DXObjectAccessNV_(IntPtr, DXInteropMaskNV) - uid: OpenTK.Graphics.Wgl.Wgl.NV.DXOpenDeviceNV(System.Void*) commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.DXOpenDeviceNV(System.Void*) id: DXOpenDeviceNV(System.Void*) @@ -649,17 +645,18 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.NV.DXOpenDeviceNV(void*) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DXOpenDeviceNV - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs startLine: 377 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl - summary: '[requires: WGL_NV_DX_interop] [entry point: wglDXOpenDeviceNV]
' + summary: >- + [requires: WGL_NV_DX_interop] + + [entry point: wglDXOpenDeviceNV] + +
example: [] syntax: content: public static nint DXOpenDeviceNV(void* dxDevice) @@ -673,32 +670,33 @@ items: nameWithType.vb: Wgl.NV.DXOpenDeviceNV(Void*) fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.DXOpenDeviceNV(Void*) name.vb: DXOpenDeviceNV(Void*) -- uid: OpenTK.Graphics.Wgl.Wgl.NV.DXRegisterObjectNV(System.IntPtr,System.Void*,System.UInt32,OpenTK.Graphics.Wgl.ObjectTypeDX,OpenTK.Graphics.Wgl.WGLDXInteropMaskNV) - commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.DXRegisterObjectNV(System.IntPtr,System.Void*,System.UInt32,OpenTK.Graphics.Wgl.ObjectTypeDX,OpenTK.Graphics.Wgl.WGLDXInteropMaskNV) - id: DXRegisterObjectNV(System.IntPtr,System.Void*,System.UInt32,OpenTK.Graphics.Wgl.ObjectTypeDX,OpenTK.Graphics.Wgl.WGLDXInteropMaskNV) +- uid: OpenTK.Graphics.Wgl.Wgl.NV.DXRegisterObjectNV(System.IntPtr,System.Void*,System.UInt32,OpenTK.Graphics.Wgl.ObjectTypeDX,OpenTK.Graphics.Wgl.DXInteropMaskNV) + commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.DXRegisterObjectNV(System.IntPtr,System.Void*,System.UInt32,OpenTK.Graphics.Wgl.ObjectTypeDX,OpenTK.Graphics.Wgl.DXInteropMaskNV) + id: DXRegisterObjectNV(System.IntPtr,System.Void*,System.UInt32,OpenTK.Graphics.Wgl.ObjectTypeDX,OpenTK.Graphics.Wgl.DXInteropMaskNV) parent: OpenTK.Graphics.Wgl.Wgl.NV langs: - csharp - vb - name: DXRegisterObjectNV(nint, void*, uint, ObjectTypeDX, WGLDXInteropMaskNV) - nameWithType: Wgl.NV.DXRegisterObjectNV(nint, void*, uint, ObjectTypeDX, WGLDXInteropMaskNV) - fullName: OpenTK.Graphics.Wgl.Wgl.NV.DXRegisterObjectNV(nint, void*, uint, OpenTK.Graphics.Wgl.ObjectTypeDX, OpenTK.Graphics.Wgl.WGLDXInteropMaskNV) + name: DXRegisterObjectNV(nint, void*, uint, ObjectTypeDX, DXInteropMaskNV) + nameWithType: Wgl.NV.DXRegisterObjectNV(nint, void*, uint, ObjectTypeDX, DXInteropMaskNV) + fullName: OpenTK.Graphics.Wgl.Wgl.NV.DXRegisterObjectNV(nint, void*, uint, OpenTK.Graphics.Wgl.ObjectTypeDX, OpenTK.Graphics.Wgl.DXInteropMaskNV) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DXRegisterObjectNV - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs startLine: 380 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl - summary: '[requires: WGL_NV_DX_interop] [entry point: wglDXRegisterObjectNV]
' + summary: >- + [requires: WGL_NV_DX_interop] + + [entry point: wglDXRegisterObjectNV] + +
example: [] syntax: - content: public static nint DXRegisterObjectNV(nint hDevice, void* dxObject, uint name, ObjectTypeDX type, WGLDXInteropMaskNV access) + content: public static nint DXRegisterObjectNV(nint hDevice, void* dxObject, uint name, ObjectTypeDX type, DXInteropMaskNV access) parameters: - id: hDevice type: System.IntPtr @@ -709,14 +707,14 @@ items: - id: type type: OpenTK.Graphics.Wgl.ObjectTypeDX - id: access - type: OpenTK.Graphics.Wgl.WGLDXInteropMaskNV + type: OpenTK.Graphics.Wgl.DXInteropMaskNV return: type: System.IntPtr - content.vb: Public Shared Function DXRegisterObjectNV(hDevice As IntPtr, dxObject As Void*, name As UInteger, type As ObjectTypeDX, access As WGLDXInteropMaskNV) As IntPtr + content.vb: Public Shared Function DXRegisterObjectNV(hDevice As IntPtr, dxObject As Void*, name As UInteger, type As ObjectTypeDX, access As DXInteropMaskNV) As IntPtr overload: OpenTK.Graphics.Wgl.Wgl.NV.DXRegisterObjectNV* - nameWithType.vb: Wgl.NV.DXRegisterObjectNV(IntPtr, Void*, UInteger, ObjectTypeDX, WGLDXInteropMaskNV) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.DXRegisterObjectNV(System.IntPtr, Void*, UInteger, OpenTK.Graphics.Wgl.ObjectTypeDX, OpenTK.Graphics.Wgl.WGLDXInteropMaskNV) - name.vb: DXRegisterObjectNV(IntPtr, Void*, UInteger, ObjectTypeDX, WGLDXInteropMaskNV) + nameWithType.vb: Wgl.NV.DXRegisterObjectNV(IntPtr, Void*, UInteger, ObjectTypeDX, DXInteropMaskNV) + fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.DXRegisterObjectNV(System.IntPtr, Void*, UInteger, OpenTK.Graphics.Wgl.ObjectTypeDX, OpenTK.Graphics.Wgl.DXInteropMaskNV) + name.vb: DXRegisterObjectNV(IntPtr, Void*, UInteger, ObjectTypeDX, DXInteropMaskNV) - uid: OpenTK.Graphics.Wgl.Wgl.NV.DXSetResourceShareHandleNV(System.Void*,System.IntPtr) commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.DXSetResourceShareHandleNV(System.Void*,System.IntPtr) id: DXSetResourceShareHandleNV(System.Void*,System.IntPtr) @@ -729,17 +727,18 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.NV.DXSetResourceShareHandleNV(void*, nint) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DXSetResourceShareHandleNV - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs startLine: 383 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl - summary: '[requires: WGL_NV_DX_interop] [entry point: wglDXSetResourceShareHandleNV]
' + summary: >- + [requires: WGL_NV_DX_interop] + + [entry point: wglDXSetResourceShareHandleNV] + +
example: [] syntax: content: public static int DXSetResourceShareHandleNV(void* dxObject, nint shareHandle) @@ -767,17 +766,18 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.NV.DXUnlockObjectsNV(nint, int, nint*) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DXUnlockObjectsNV - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs startLine: 386 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl - summary: '[requires: WGL_NV_DX_interop] [entry point: wglDXUnlockObjectsNV]
' + summary: >- + [requires: WGL_NV_DX_interop] + + [entry point: wglDXUnlockObjectsNV] + +
example: [] syntax: content: public static int DXUnlockObjectsNV(nint hDevice, int count, nint* hObjects) @@ -807,17 +807,18 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.NV.DXUnregisterObjectNV_(nint, nint) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DXUnregisterObjectNV_ - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs startLine: 389 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl - summary: '[requires: WGL_NV_DX_interop] [entry point: wglDXUnregisterObjectNV]
' + summary: >- + [requires: WGL_NV_DX_interop] + + [entry point: wglDXUnregisterObjectNV] + +
example: [] syntax: content: public static int DXUnregisterObjectNV_(nint hDevice, nint hObject) @@ -845,17 +846,18 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.NV.EnumerateVideoCaptureDevicesNV(nint, nint*) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: EnumerateVideoCaptureDevicesNV - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs startLine: 392 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl - summary: '[requires: WGL_NV_video_capture] [entry point: wglEnumerateVideoCaptureDevicesNV]
' + summary: >- + [requires: WGL_NV_video_capture] + + [entry point: wglEnumerateVideoCaptureDevicesNV] + +
example: [] syntax: content: public static uint EnumerateVideoCaptureDevicesNV(nint hDc, nint* phDeviceList) @@ -883,17 +885,18 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.NV.EnumerateVideoDevicesNV(nint, nint*) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: EnumerateVideoDevicesNV - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs startLine: 395 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl - summary: '[requires: WGL_NV_present_video] [entry point: wglEnumerateVideoDevicesNV]
' + summary: >- + [requires: WGL_NV_present_video] + + [entry point: wglEnumerateVideoDevicesNV] + +
example: [] syntax: content: public static int EnumerateVideoDevicesNV(nint hDc, nint* phDeviceList) @@ -921,17 +924,18 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.NV.EnumGpuDevicesNV(nint, uint, OpenTK.Graphics.Wgl._GPU_DEVICE*) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: EnumGpuDevicesNV - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs startLine: 398 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl - summary: '[requires: WGL_NV_gpu_affinity] [entry point: wglEnumGpuDevicesNV]
' + summary: >- + [requires: WGL_NV_gpu_affinity] + + [entry point: wglEnumGpuDevicesNV] + +
example: [] syntax: content: public static int EnumGpuDevicesNV(nint hGpu, uint iDeviceIndex, _GPU_DEVICE* lpGpuDevice) @@ -961,17 +965,18 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.NV.EnumGpusFromAffinityDCNV(nint, uint, nint*) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: EnumGpusFromAffinityDCNV - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs startLine: 401 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl - summary: '[requires: WGL_NV_gpu_affinity] [entry point: wglEnumGpusFromAffinityDCNV]
' + summary: >- + [requires: WGL_NV_gpu_affinity] + + [entry point: wglEnumGpusFromAffinityDCNV] + +
example: [] syntax: content: public static int EnumGpusFromAffinityDCNV(nint hAffinityDC, uint iGpuIndex, nint* hGpu) @@ -1001,17 +1006,18 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.NV.EnumGpusNV(uint, nint*) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: EnumGpusNV - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs startLine: 404 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl - summary: '[requires: WGL_NV_gpu_affinity] [entry point: wglEnumGpusNV]
' + summary: >- + [requires: WGL_NV_gpu_affinity] + + [entry point: wglEnumGpusNV] + +
example: [] syntax: content: public static int EnumGpusNV(uint iGpuIndex, nint* phGpu) @@ -1039,17 +1045,18 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.NV.FreeMemoryNV(void*) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: FreeMemoryNV - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs startLine: 407 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl - summary: '[requires: WGL_NV_vertex_array_range] [entry point: wglFreeMemoryNV]
' + summary: >- + [requires: WGL_NV_vertex_array_range] + + [entry point: wglFreeMemoryNV] + +
example: [] syntax: content: public static void FreeMemoryNV(void* pointer) @@ -1073,17 +1080,18 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.NV.GetVideoDeviceNV(nint, int, nint*) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetVideoDeviceNV - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs startLine: 410 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl - summary: '[requires: WGL_NV_video_output] [entry point: wglGetVideoDeviceNV]
' + summary: >- + [requires: WGL_NV_video_output] + + [entry point: wglGetVideoDeviceNV] + +
example: [] syntax: content: public static int GetVideoDeviceNV(nint hDC, int numDevices, nint* hVideoDevice) @@ -1113,17 +1121,18 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.NV.GetVideoInfoNV(nint, ulong*, ulong*) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetVideoInfoNV - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs startLine: 413 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl - summary: '[requires: WGL_NV_video_output] [entry point: wglGetVideoInfoNV]
' + summary: >- + [requires: WGL_NV_video_output] + + [entry point: wglGetVideoInfoNV] + +
example: [] syntax: content: public static int GetVideoInfoNV(nint hpVideoDevice, ulong* pulCounterOutputPbuffer, ulong* pulCounterOutputVideo) @@ -1153,17 +1162,18 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.NV.JoinSwapGroupNV_(nint, uint) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: JoinSwapGroupNV_ - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs startLine: 416 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl - summary: '[requires: WGL_NV_swap_group] [entry point: wglJoinSwapGroupNV]
' + summary: >- + [requires: WGL_NV_swap_group] + + [entry point: wglJoinSwapGroupNV] + +
example: [] syntax: content: public static int JoinSwapGroupNV_(nint hDC, uint group) @@ -1191,17 +1201,18 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.NV.LockVideoCaptureDeviceNV_(nint, nint) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: LockVideoCaptureDeviceNV_ - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs startLine: 419 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl - summary: '[requires: WGL_NV_video_capture] [entry point: wglLockVideoCaptureDeviceNV]
' + summary: >- + [requires: WGL_NV_video_capture] + + [entry point: wglLockVideoCaptureDeviceNV] + +
example: [] syntax: content: public static int LockVideoCaptureDeviceNV_(nint hDc, nint hDevice) @@ -1229,17 +1240,18 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.NV.QueryCurrentContextNV(OpenTK.Graphics.Wgl.ContextAttribute, int*) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: QueryCurrentContextNV - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs startLine: 422 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl - summary: '[requires: WGL_NV_present_video] [entry point: wglQueryCurrentContextNV]
' + summary: >- + [requires: WGL_NV_present_video] + + [entry point: wglQueryCurrentContextNV] + +
example: [] syntax: content: public static int QueryCurrentContextNV(ContextAttribute iAttribute, int* piValue) @@ -1267,17 +1279,18 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.NV.QueryFrameCountNV(nint, uint*) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: QueryFrameCountNV - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs startLine: 425 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl - summary: '[requires: WGL_NV_swap_group] [entry point: wglQueryFrameCountNV]
' + summary: >- + [requires: WGL_NV_swap_group] + + [entry point: wglQueryFrameCountNV] + +
example: [] syntax: content: public static int QueryFrameCountNV(nint hDC, uint* count) @@ -1305,17 +1318,18 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.NV.QueryMaxSwapGroupsNV(nint, uint*, uint*) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: QueryMaxSwapGroupsNV - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs startLine: 428 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl - summary: '[requires: WGL_NV_swap_group] [entry point: wglQueryMaxSwapGroupsNV]
' + summary: >- + [requires: WGL_NV_swap_group] + + [entry point: wglQueryMaxSwapGroupsNV] + +
example: [] syntax: content: public static int QueryMaxSwapGroupsNV(nint hDC, uint* maxGroups, uint* maxBarriers) @@ -1345,17 +1359,18 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.NV.QuerySwapGroupNV(nint, uint*, uint*) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: QuerySwapGroupNV - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs startLine: 431 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl - summary: '[requires: WGL_NV_swap_group] [entry point: wglQuerySwapGroupNV]
' + summary: >- + [requires: WGL_NV_swap_group] + + [entry point: wglQuerySwapGroupNV] + +
example: [] syntax: content: public static int QuerySwapGroupNV(nint hDC, uint* group, uint* barrier) @@ -1385,17 +1400,18 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.NV.QueryVideoCaptureDeviceNV(nint, nint, OpenTK.Graphics.Wgl.VideoCaptureDeviceAttribute, int*) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: QueryVideoCaptureDeviceNV - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs startLine: 434 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl - summary: '[requires: WGL_NV_video_capture] [entry point: wglQueryVideoCaptureDeviceNV]
' + summary: >- + [requires: WGL_NV_video_capture] + + [entry point: wglQueryVideoCaptureDeviceNV] + +
example: [] syntax: content: public static int QueryVideoCaptureDeviceNV(nint hDc, nint hDevice, VideoCaptureDeviceAttribute iAttribute, int* piValue) @@ -1427,17 +1443,18 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.NV.ReleaseVideoCaptureDeviceNV_(nint, nint) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ReleaseVideoCaptureDeviceNV_ - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs startLine: 437 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl - summary: '[requires: WGL_NV_video_capture] [entry point: wglReleaseVideoCaptureDeviceNV]
' + summary: >- + [requires: WGL_NV_video_capture] + + [entry point: wglReleaseVideoCaptureDeviceNV] + +
example: [] syntax: content: public static int ReleaseVideoCaptureDeviceNV_(nint hDc, nint hDevice) @@ -1465,17 +1482,18 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.NV.ReleaseVideoDeviceNV_(nint) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ReleaseVideoDeviceNV_ - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs startLine: 440 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl - summary: '[requires: WGL_NV_video_output] [entry point: wglReleaseVideoDeviceNV]
' + summary: >- + [requires: WGL_NV_video_output] + + [entry point: wglReleaseVideoDeviceNV] + +
example: [] syntax: content: public static int ReleaseVideoDeviceNV_(nint hVideoDevice) @@ -1501,17 +1519,18 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.NV.ReleaseVideoImageNV_(nint, OpenTK.Graphics.Wgl.VideoOutputBuffer) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ReleaseVideoImageNV_ - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs startLine: 443 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl - summary: '[requires: WGL_NV_video_output] [entry point: wglReleaseVideoImageNV]
' + summary: >- + [requires: WGL_NV_video_output] + + [entry point: wglReleaseVideoImageNV] + +
example: [] syntax: content: public static int ReleaseVideoImageNV_(nint hPbuffer, VideoOutputBuffer iVideoBuffer) @@ -1539,17 +1558,18 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.NV.ResetFrameCountNV_(nint) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ResetFrameCountNV_ - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs startLine: 446 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl - summary: '[requires: WGL_NV_swap_group] [entry point: wglResetFrameCountNV]
' + summary: >- + [requires: WGL_NV_swap_group] + + [entry point: wglResetFrameCountNV] + +
example: [] syntax: content: public static int ResetFrameCountNV_(nint hDC) @@ -1575,17 +1595,18 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.NV.SendPbufferToVideoNV(nint, OpenTK.Graphics.Wgl.VideoOutputBufferType, ulong*, int) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SendPbufferToVideoNV - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs startLine: 449 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl - summary: '[requires: WGL_NV_video_output] [entry point: wglSendPbufferToVideoNV]
' + summary: >- + [requires: WGL_NV_video_output] + + [entry point: wglSendPbufferToVideoNV] + +
example: [] syntax: content: public static int SendPbufferToVideoNV(nint hPbuffer, VideoOutputBufferType iBufferType, ulong* pulCounterPbuffer, int bBlock) @@ -1617,13 +1638,9 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.NV.BindSwapBarrierNV(uint, uint) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: BindSwapBarrierNV - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 1856 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 1420 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -1654,13 +1671,9 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.NV.BindVideoCaptureDeviceNV(uint, nint) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: BindVideoCaptureDeviceNV - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 1865 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 1429 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -1679,25 +1692,21 @@ items: nameWithType.vb: Wgl.NV.BindVideoCaptureDeviceNV(UInteger, IntPtr) fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.BindVideoCaptureDeviceNV(UInteger, System.IntPtr) name.vb: BindVideoCaptureDeviceNV(UInteger, IntPtr) -- uid: OpenTK.Graphics.Wgl.Wgl.NV.BindVideoDeviceNV(System.IntPtr,System.UInt32,System.IntPtr,System.Int32@) - commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.BindVideoDeviceNV(System.IntPtr,System.UInt32,System.IntPtr,System.Int32@) - id: BindVideoDeviceNV(System.IntPtr,System.UInt32,System.IntPtr,System.Int32@) +- uid: OpenTK.Graphics.Wgl.Wgl.NV.BindVideoDeviceNV(System.IntPtr,System.UInt32,System.IntPtr,System.ReadOnlySpan{System.Int32}) + commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.BindVideoDeviceNV(System.IntPtr,System.UInt32,System.IntPtr,System.ReadOnlySpan{System.Int32}) + id: BindVideoDeviceNV(System.IntPtr,System.UInt32,System.IntPtr,System.ReadOnlySpan{System.Int32}) parent: OpenTK.Graphics.Wgl.Wgl.NV langs: - csharp - vb - name: BindVideoDeviceNV(nint, uint, nint, in int) - nameWithType: Wgl.NV.BindVideoDeviceNV(nint, uint, nint, in int) - fullName: OpenTK.Graphics.Wgl.Wgl.NV.BindVideoDeviceNV(nint, uint, nint, in int) + name: BindVideoDeviceNV(nint, uint, nint, ReadOnlySpan) + nameWithType: Wgl.NV.BindVideoDeviceNV(nint, uint, nint, ReadOnlySpan) + fullName: OpenTK.Graphics.Wgl.Wgl.NV.BindVideoDeviceNV(nint, uint, nint, System.ReadOnlySpan) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: BindVideoDeviceNV - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 1874 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 1438 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -1709,7 +1718,7 @@ items:
example: [] syntax: - content: public static bool BindVideoDeviceNV(nint hDc, uint uVideoSlot, nint hVideoDevice, in int piAttribList) + content: public static bool BindVideoDeviceNV(nint hDc, uint uVideoSlot, nint hVideoDevice, ReadOnlySpan piAttribList) parameters: - id: hDc type: System.IntPtr @@ -1718,72 +1727,150 @@ items: - id: hVideoDevice type: System.IntPtr - id: piAttribList - type: System.Int32 + type: System.ReadOnlySpan{System.Int32} return: type: System.Boolean - content.vb: Public Shared Function BindVideoDeviceNV(hDc As IntPtr, uVideoSlot As UInteger, hVideoDevice As IntPtr, piAttribList As Integer) As Boolean + content.vb: Public Shared Function BindVideoDeviceNV(hDc As IntPtr, uVideoSlot As UInteger, hVideoDevice As IntPtr, piAttribList As ReadOnlySpan(Of Integer)) As Boolean overload: OpenTK.Graphics.Wgl.Wgl.NV.BindVideoDeviceNV* - nameWithType.vb: Wgl.NV.BindVideoDeviceNV(IntPtr, UInteger, IntPtr, Integer) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.BindVideoDeviceNV(System.IntPtr, UInteger, System.IntPtr, Integer) - name.vb: BindVideoDeviceNV(IntPtr, UInteger, IntPtr, Integer) -- uid: OpenTK.Graphics.Wgl.Wgl.NV.BindVideoImageNV(System.IntPtr,System.IntPtr,OpenTK.Graphics.Wgl.VideoOutputBuffer) - commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.BindVideoImageNV(System.IntPtr,System.IntPtr,OpenTK.Graphics.Wgl.VideoOutputBuffer) - id: BindVideoImageNV(System.IntPtr,System.IntPtr,OpenTK.Graphics.Wgl.VideoOutputBuffer) + nameWithType.vb: Wgl.NV.BindVideoDeviceNV(IntPtr, UInteger, IntPtr, ReadOnlySpan(Of Integer)) + fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.BindVideoDeviceNV(System.IntPtr, UInteger, System.IntPtr, System.ReadOnlySpan(Of Integer)) + name.vb: BindVideoDeviceNV(IntPtr, UInteger, IntPtr, ReadOnlySpan(Of Integer)) +- uid: OpenTK.Graphics.Wgl.Wgl.NV.BindVideoDeviceNV(System.IntPtr,System.UInt32,System.IntPtr,System.Int32[]) + commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.BindVideoDeviceNV(System.IntPtr,System.UInt32,System.IntPtr,System.Int32[]) + id: BindVideoDeviceNV(System.IntPtr,System.UInt32,System.IntPtr,System.Int32[]) parent: OpenTK.Graphics.Wgl.Wgl.NV langs: - csharp - vb - name: BindVideoImageNV(nint, nint, VideoOutputBuffer) - nameWithType: Wgl.NV.BindVideoImageNV(nint, nint, VideoOutputBuffer) - fullName: OpenTK.Graphics.Wgl.Wgl.NV.BindVideoImageNV(nint, nint, OpenTK.Graphics.Wgl.VideoOutputBuffer) + name: BindVideoDeviceNV(nint, uint, nint, int[]) + nameWithType: Wgl.NV.BindVideoDeviceNV(nint, uint, nint, int[]) + fullName: OpenTK.Graphics.Wgl.Wgl.NV.BindVideoDeviceNV(nint, uint, nint, int[]) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: BindVideoImageNV - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 1886 + id: BindVideoDeviceNV + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 1450 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl + summary: >- + [requires: WGL_NV_present_video] + + [entry point: wglBindVideoDeviceNV] + +
example: [] syntax: - content: public static bool BindVideoImageNV(nint hVideoDevice, nint hPbuffer, VideoOutputBuffer iVideoBuffer) + content: public static bool BindVideoDeviceNV(nint hDc, uint uVideoSlot, nint hVideoDevice, int[] piAttribList) parameters: - - id: hVideoDevice + - id: hDc type: System.IntPtr - - id: hPbuffer + - id: uVideoSlot + type: System.UInt32 + - id: hVideoDevice type: System.IntPtr - - id: iVideoBuffer - type: OpenTK.Graphics.Wgl.VideoOutputBuffer + - id: piAttribList + type: System.Int32[] return: type: System.Boolean - content.vb: Public Shared Function BindVideoImageNV(hVideoDevice As IntPtr, hPbuffer As IntPtr, iVideoBuffer As VideoOutputBuffer) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.NV.BindVideoImageNV* - nameWithType.vb: Wgl.NV.BindVideoImageNV(IntPtr, IntPtr, VideoOutputBuffer) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.BindVideoImageNV(System.IntPtr, System.IntPtr, OpenTK.Graphics.Wgl.VideoOutputBuffer) - name.vb: BindVideoImageNV(IntPtr, IntPtr, VideoOutputBuffer) -- uid: OpenTK.Graphics.Wgl.Wgl.NV.CopyImageSubDataNV(System.IntPtr,System.UInt32,OpenTK.Graphics.OpenGL.TextureTarget,System.Int32,System.Int32,System.Int32,System.Int32,System.IntPtr,System.UInt32,OpenTK.Graphics.OpenGL.TextureTarget,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32) - commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.CopyImageSubDataNV(System.IntPtr,System.UInt32,OpenTK.Graphics.OpenGL.TextureTarget,System.Int32,System.Int32,System.Int32,System.Int32,System.IntPtr,System.UInt32,OpenTK.Graphics.OpenGL.TextureTarget,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32) - id: CopyImageSubDataNV(System.IntPtr,System.UInt32,OpenTK.Graphics.OpenGL.TextureTarget,System.Int32,System.Int32,System.Int32,System.Int32,System.IntPtr,System.UInt32,OpenTK.Graphics.OpenGL.TextureTarget,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32) + content.vb: Public Shared Function BindVideoDeviceNV(hDc As IntPtr, uVideoSlot As UInteger, hVideoDevice As IntPtr, piAttribList As Integer()) As Boolean + overload: OpenTK.Graphics.Wgl.Wgl.NV.BindVideoDeviceNV* + nameWithType.vb: Wgl.NV.BindVideoDeviceNV(IntPtr, UInteger, IntPtr, Integer()) + fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.BindVideoDeviceNV(System.IntPtr, UInteger, System.IntPtr, Integer()) + name.vb: BindVideoDeviceNV(IntPtr, UInteger, IntPtr, Integer()) +- uid: OpenTK.Graphics.Wgl.Wgl.NV.BindVideoDeviceNV(System.IntPtr,System.UInt32,System.IntPtr,System.Int32@) + commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.BindVideoDeviceNV(System.IntPtr,System.UInt32,System.IntPtr,System.Int32@) + id: BindVideoDeviceNV(System.IntPtr,System.UInt32,System.IntPtr,System.Int32@) parent: OpenTK.Graphics.Wgl.Wgl.NV langs: - csharp - vb - name: CopyImageSubDataNV(nint, uint, TextureTarget, int, int, int, int, nint, uint, TextureTarget, int, int, int, int, int, int, int) + name: BindVideoDeviceNV(nint, uint, nint, in int) + nameWithType: Wgl.NV.BindVideoDeviceNV(nint, uint, nint, in int) + fullName: OpenTK.Graphics.Wgl.Wgl.NV.BindVideoDeviceNV(nint, uint, nint, in int) + type: Method + source: + id: BindVideoDeviceNV + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 1462 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Wgl + summary: >- + [requires: WGL_NV_present_video] + + [entry point: wglBindVideoDeviceNV] + +
+ example: [] + syntax: + content: public static bool BindVideoDeviceNV(nint hDc, uint uVideoSlot, nint hVideoDevice, in int piAttribList) + parameters: + - id: hDc + type: System.IntPtr + - id: uVideoSlot + type: System.UInt32 + - id: hVideoDevice + type: System.IntPtr + - id: piAttribList + type: System.Int32 + return: + type: System.Boolean + content.vb: Public Shared Function BindVideoDeviceNV(hDc As IntPtr, uVideoSlot As UInteger, hVideoDevice As IntPtr, piAttribList As Integer) As Boolean + overload: OpenTK.Graphics.Wgl.Wgl.NV.BindVideoDeviceNV* + nameWithType.vb: Wgl.NV.BindVideoDeviceNV(IntPtr, UInteger, IntPtr, Integer) + fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.BindVideoDeviceNV(System.IntPtr, UInteger, System.IntPtr, Integer) + name.vb: BindVideoDeviceNV(IntPtr, UInteger, IntPtr, Integer) +- uid: OpenTK.Graphics.Wgl.Wgl.NV.BindVideoImageNV(System.IntPtr,System.IntPtr,OpenTK.Graphics.Wgl.VideoOutputBuffer) + commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.BindVideoImageNV(System.IntPtr,System.IntPtr,OpenTK.Graphics.Wgl.VideoOutputBuffer) + id: BindVideoImageNV(System.IntPtr,System.IntPtr,OpenTK.Graphics.Wgl.VideoOutputBuffer) + parent: OpenTK.Graphics.Wgl.Wgl.NV + langs: + - csharp + - vb + name: BindVideoImageNV(nint, nint, VideoOutputBuffer) + nameWithType: Wgl.NV.BindVideoImageNV(nint, nint, VideoOutputBuffer) + fullName: OpenTK.Graphics.Wgl.Wgl.NV.BindVideoImageNV(nint, nint, OpenTK.Graphics.Wgl.VideoOutputBuffer) + type: Method + source: + id: BindVideoImageNV + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 1474 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Wgl + example: [] + syntax: + content: public static bool BindVideoImageNV(nint hVideoDevice, nint hPbuffer, VideoOutputBuffer iVideoBuffer) + parameters: + - id: hVideoDevice + type: System.IntPtr + - id: hPbuffer + type: System.IntPtr + - id: iVideoBuffer + type: OpenTK.Graphics.Wgl.VideoOutputBuffer + return: + type: System.Boolean + content.vb: Public Shared Function BindVideoImageNV(hVideoDevice As IntPtr, hPbuffer As IntPtr, iVideoBuffer As VideoOutputBuffer) As Boolean + overload: OpenTK.Graphics.Wgl.Wgl.NV.BindVideoImageNV* + nameWithType.vb: Wgl.NV.BindVideoImageNV(IntPtr, IntPtr, VideoOutputBuffer) + fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.BindVideoImageNV(System.IntPtr, System.IntPtr, OpenTK.Graphics.Wgl.VideoOutputBuffer) + name.vb: BindVideoImageNV(IntPtr, IntPtr, VideoOutputBuffer) +- uid: OpenTK.Graphics.Wgl.Wgl.NV.CopyImageSubDataNV(System.IntPtr,System.UInt32,OpenTK.Graphics.OpenGL.TextureTarget,System.Int32,System.Int32,System.Int32,System.Int32,System.IntPtr,System.UInt32,OpenTK.Graphics.OpenGL.TextureTarget,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32) + commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.CopyImageSubDataNV(System.IntPtr,System.UInt32,OpenTK.Graphics.OpenGL.TextureTarget,System.Int32,System.Int32,System.Int32,System.Int32,System.IntPtr,System.UInt32,OpenTK.Graphics.OpenGL.TextureTarget,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32) + id: CopyImageSubDataNV(System.IntPtr,System.UInt32,OpenTK.Graphics.OpenGL.TextureTarget,System.Int32,System.Int32,System.Int32,System.Int32,System.IntPtr,System.UInt32,OpenTK.Graphics.OpenGL.TextureTarget,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32) + parent: OpenTK.Graphics.Wgl.Wgl.NV + langs: + - csharp + - vb + name: CopyImageSubDataNV(nint, uint, TextureTarget, int, int, int, int, nint, uint, TextureTarget, int, int, int, int, int, int, int) nameWithType: Wgl.NV.CopyImageSubDataNV(nint, uint, TextureTarget, int, int, int, int, nint, uint, TextureTarget, int, int, int, int, int, int, int) fullName: OpenTK.Graphics.Wgl.Wgl.NV.CopyImageSubDataNV(nint, uint, OpenTK.Graphics.OpenGL.TextureTarget, int, int, int, int, nint, uint, OpenTK.Graphics.OpenGL.TextureTarget, int, int, int, int, int, int, int) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CopyImageSubDataNV - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 1895 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 1483 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -1832,6 +1919,80 @@ items: nameWithType.vb: Wgl.NV.CopyImageSubDataNV(IntPtr, UInteger, TextureTarget, Integer, Integer, Integer, Integer, IntPtr, UInteger, TextureTarget, Integer, Integer, Integer, Integer, Integer, Integer, Integer) fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.CopyImageSubDataNV(System.IntPtr, UInteger, OpenTK.Graphics.OpenGL.TextureTarget, Integer, Integer, Integer, Integer, System.IntPtr, UInteger, OpenTK.Graphics.OpenGL.TextureTarget, Integer, Integer, Integer, Integer, Integer, Integer, Integer) name.vb: CopyImageSubDataNV(IntPtr, UInteger, TextureTarget, Integer, Integer, Integer, Integer, IntPtr, UInteger, TextureTarget, Integer, Integer, Integer, Integer, Integer, Integer, Integer) +- uid: OpenTK.Graphics.Wgl.Wgl.NV.CreateAffinityDCNV(System.ReadOnlySpan{System.IntPtr}) + commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.CreateAffinityDCNV(System.ReadOnlySpan{System.IntPtr}) + id: CreateAffinityDCNV(System.ReadOnlySpan{System.IntPtr}) + parent: OpenTK.Graphics.Wgl.Wgl.NV + langs: + - csharp + - vb + name: CreateAffinityDCNV(ReadOnlySpan) + nameWithType: Wgl.NV.CreateAffinityDCNV(ReadOnlySpan) + fullName: OpenTK.Graphics.Wgl.Wgl.NV.CreateAffinityDCNV(System.ReadOnlySpan) + type: Method + source: + id: CreateAffinityDCNV + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 1492 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Wgl + summary: >- + [requires: WGL_NV_gpu_affinity] + + [entry point: wglCreateAffinityDCNV] + +
+ example: [] + syntax: + content: public static nint CreateAffinityDCNV(ReadOnlySpan phGpuList) + parameters: + - id: phGpuList + type: System.ReadOnlySpan{System.IntPtr} + return: + type: System.IntPtr + content.vb: Public Shared Function CreateAffinityDCNV(phGpuList As ReadOnlySpan(Of IntPtr)) As IntPtr + overload: OpenTK.Graphics.Wgl.Wgl.NV.CreateAffinityDCNV* + nameWithType.vb: Wgl.NV.CreateAffinityDCNV(ReadOnlySpan(Of IntPtr)) + fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.CreateAffinityDCNV(System.ReadOnlySpan(Of System.IntPtr)) + name.vb: CreateAffinityDCNV(ReadOnlySpan(Of IntPtr)) +- uid: OpenTK.Graphics.Wgl.Wgl.NV.CreateAffinityDCNV(System.IntPtr[]) + commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.CreateAffinityDCNV(System.IntPtr[]) + id: CreateAffinityDCNV(System.IntPtr[]) + parent: OpenTK.Graphics.Wgl.Wgl.NV + langs: + - csharp + - vb + name: CreateAffinityDCNV(nint[]) + nameWithType: Wgl.NV.CreateAffinityDCNV(nint[]) + fullName: OpenTK.Graphics.Wgl.Wgl.NV.CreateAffinityDCNV(nint[]) + type: Method + source: + id: CreateAffinityDCNV + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 1502 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Wgl + summary: >- + [requires: WGL_NV_gpu_affinity] + + [entry point: wglCreateAffinityDCNV] + +
+ example: [] + syntax: + content: public static nint CreateAffinityDCNV(nint[] phGpuList) + parameters: + - id: phGpuList + type: System.IntPtr[] + return: + type: System.IntPtr + content.vb: Public Shared Function CreateAffinityDCNV(phGpuList As IntPtr()) As IntPtr + overload: OpenTK.Graphics.Wgl.Wgl.NV.CreateAffinityDCNV* + nameWithType.vb: Wgl.NV.CreateAffinityDCNV(IntPtr()) + fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.CreateAffinityDCNV(System.IntPtr()) + name.vb: CreateAffinityDCNV(IntPtr()) - uid: OpenTK.Graphics.Wgl.Wgl.NV.CreateAffinityDCNV(System.IntPtr@) commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.CreateAffinityDCNV(System.IntPtr@) id: CreateAffinityDCNV(System.IntPtr@) @@ -1844,13 +2005,9 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.NV.CreateAffinityDCNV(in nint) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateAffinityDCNV - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 1904 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 1512 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -1885,13 +2042,9 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.NV.DelayBeforeSwapNV(nint, float) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DelayBeforeSwapNV - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 1914 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 1522 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -1922,13 +2075,9 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.NV.DeleteDCNV(nint) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DeleteDCNV - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 1923 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 1531 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -1957,13 +2106,9 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.NV.DXCloseDeviceNV(nint) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DXCloseDeviceNV - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 1932 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 1540 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -1980,25 +2125,21 @@ items: nameWithType.vb: Wgl.NV.DXCloseDeviceNV(IntPtr) fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.DXCloseDeviceNV(System.IntPtr) name.vb: DXCloseDeviceNV(IntPtr) -- uid: OpenTK.Graphics.Wgl.Wgl.NV.DXLockObjectsNV(System.IntPtr,System.Span{System.IntPtr}) - commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.DXLockObjectsNV(System.IntPtr,System.Span{System.IntPtr}) - id: DXLockObjectsNV(System.IntPtr,System.Span{System.IntPtr}) +- uid: OpenTK.Graphics.Wgl.Wgl.NV.DXLockObjectsNV(System.IntPtr,System.Int32,System.Span{System.IntPtr}) + commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.DXLockObjectsNV(System.IntPtr,System.Int32,System.Span{System.IntPtr}) + id: DXLockObjectsNV(System.IntPtr,System.Int32,System.Span{System.IntPtr}) parent: OpenTK.Graphics.Wgl.Wgl.NV langs: - csharp - vb - name: DXLockObjectsNV(nint, Span) - nameWithType: Wgl.NV.DXLockObjectsNV(nint, Span) - fullName: OpenTK.Graphics.Wgl.Wgl.NV.DXLockObjectsNV(nint, System.Span) + name: DXLockObjectsNV(nint, int, Span) + nameWithType: Wgl.NV.DXLockObjectsNV(nint, int, Span) + fullName: OpenTK.Graphics.Wgl.Wgl.NV.DXLockObjectsNV(nint, int, System.Span) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DXLockObjectsNV - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 1941 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 1549 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -2010,38 +2151,36 @@ items:
example: [] syntax: - content: public static bool DXLockObjectsNV(nint hDevice, Span hObjects) + content: public static bool DXLockObjectsNV(nint hDevice, int count, Span hObjects) parameters: - id: hDevice type: System.IntPtr + - id: count + type: System.Int32 - id: hObjects type: System.Span{System.IntPtr} return: type: System.Boolean - content.vb: Public Shared Function DXLockObjectsNV(hDevice As IntPtr, hObjects As Span(Of IntPtr)) As Boolean + content.vb: Public Shared Function DXLockObjectsNV(hDevice As IntPtr, count As Integer, hObjects As Span(Of IntPtr)) As Boolean overload: OpenTK.Graphics.Wgl.Wgl.NV.DXLockObjectsNV* - nameWithType.vb: Wgl.NV.DXLockObjectsNV(IntPtr, Span(Of IntPtr)) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.DXLockObjectsNV(System.IntPtr, System.Span(Of System.IntPtr)) - name.vb: DXLockObjectsNV(IntPtr, Span(Of IntPtr)) -- uid: OpenTK.Graphics.Wgl.Wgl.NV.DXLockObjectsNV(System.IntPtr,System.IntPtr[]) - commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.DXLockObjectsNV(System.IntPtr,System.IntPtr[]) - id: DXLockObjectsNV(System.IntPtr,System.IntPtr[]) + nameWithType.vb: Wgl.NV.DXLockObjectsNV(IntPtr, Integer, Span(Of IntPtr)) + fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.DXLockObjectsNV(System.IntPtr, Integer, System.Span(Of System.IntPtr)) + name.vb: DXLockObjectsNV(IntPtr, Integer, Span(Of IntPtr)) +- uid: OpenTK.Graphics.Wgl.Wgl.NV.DXLockObjectsNV(System.IntPtr,System.Int32,System.IntPtr[]) + commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.DXLockObjectsNV(System.IntPtr,System.Int32,System.IntPtr[]) + id: DXLockObjectsNV(System.IntPtr,System.Int32,System.IntPtr[]) parent: OpenTK.Graphics.Wgl.Wgl.NV langs: - csharp - vb - name: DXLockObjectsNV(nint, nint[]) - nameWithType: Wgl.NV.DXLockObjectsNV(nint, nint[]) - fullName: OpenTK.Graphics.Wgl.Wgl.NV.DXLockObjectsNV(nint, nint[]) + name: DXLockObjectsNV(nint, int, nint[]) + nameWithType: Wgl.NV.DXLockObjectsNV(nint, int, nint[]) + fullName: OpenTK.Graphics.Wgl.Wgl.NV.DXLockObjectsNV(nint, int, nint[]) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DXLockObjectsNV - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 1954 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 1561 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -2053,19 +2192,21 @@ items:
example: [] syntax: - content: public static bool DXLockObjectsNV(nint hDevice, nint[] hObjects) + content: public static bool DXLockObjectsNV(nint hDevice, int count, nint[] hObjects) parameters: - id: hDevice type: System.IntPtr + - id: count + type: System.Int32 - id: hObjects type: System.IntPtr[] return: type: System.Boolean - content.vb: Public Shared Function DXLockObjectsNV(hDevice As IntPtr, hObjects As IntPtr()) As Boolean + content.vb: Public Shared Function DXLockObjectsNV(hDevice As IntPtr, count As Integer, hObjects As IntPtr()) As Boolean overload: OpenTK.Graphics.Wgl.Wgl.NV.DXLockObjectsNV* - nameWithType.vb: Wgl.NV.DXLockObjectsNV(IntPtr, IntPtr()) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.DXLockObjectsNV(System.IntPtr, System.IntPtr()) - name.vb: DXLockObjectsNV(IntPtr, IntPtr()) + nameWithType.vb: Wgl.NV.DXLockObjectsNV(IntPtr, Integer, IntPtr()) + fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.DXLockObjectsNV(System.IntPtr, Integer, System.IntPtr()) + name.vb: DXLockObjectsNV(IntPtr, Integer, IntPtr()) - uid: OpenTK.Graphics.Wgl.Wgl.NV.DXLockObjectsNV(System.IntPtr,System.Int32,System.IntPtr@) commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.DXLockObjectsNV(System.IntPtr,System.Int32,System.IntPtr@) id: DXLockObjectsNV(System.IntPtr,System.Int32,System.IntPtr@) @@ -2073,18 +2214,14 @@ items: langs: - csharp - vb - name: DXLockObjectsNV(nint, int, ref nint) - nameWithType: Wgl.NV.DXLockObjectsNV(nint, int, ref nint) - fullName: OpenTK.Graphics.Wgl.Wgl.NV.DXLockObjectsNV(nint, int, ref nint) + name: DXLockObjectsNV(nint, int, in nint) + nameWithType: Wgl.NV.DXLockObjectsNV(nint, int, in nint) + fullName: OpenTK.Graphics.Wgl.Wgl.NV.DXLockObjectsNV(nint, int, in nint) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DXLockObjectsNV - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 1967 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 1573 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -2096,7 +2233,7 @@ items:
example: [] syntax: - content: public static bool DXLockObjectsNV(nint hDevice, int count, ref nint hObjects) + content: public static bool DXLockObjectsNV(nint hDevice, int count, in nint hObjects) parameters: - id: hDevice type: System.IntPtr @@ -2111,43 +2248,39 @@ items: nameWithType.vb: Wgl.NV.DXLockObjectsNV(IntPtr, Integer, IntPtr) fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.DXLockObjectsNV(System.IntPtr, Integer, System.IntPtr) name.vb: DXLockObjectsNV(IntPtr, Integer, IntPtr) -- uid: OpenTK.Graphics.Wgl.Wgl.NV.DXObjectAccessNV(System.IntPtr,OpenTK.Graphics.Wgl.WGLDXInteropMaskNV) - commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.DXObjectAccessNV(System.IntPtr,OpenTK.Graphics.Wgl.WGLDXInteropMaskNV) - id: DXObjectAccessNV(System.IntPtr,OpenTK.Graphics.Wgl.WGLDXInteropMaskNV) +- uid: OpenTK.Graphics.Wgl.Wgl.NV.DXObjectAccessNV(System.IntPtr,OpenTK.Graphics.Wgl.DXInteropMaskNV) + commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.DXObjectAccessNV(System.IntPtr,OpenTK.Graphics.Wgl.DXInteropMaskNV) + id: DXObjectAccessNV(System.IntPtr,OpenTK.Graphics.Wgl.DXInteropMaskNV) parent: OpenTK.Graphics.Wgl.Wgl.NV langs: - csharp - vb - name: DXObjectAccessNV(nint, WGLDXInteropMaskNV) - nameWithType: Wgl.NV.DXObjectAccessNV(nint, WGLDXInteropMaskNV) - fullName: OpenTK.Graphics.Wgl.Wgl.NV.DXObjectAccessNV(nint, OpenTK.Graphics.Wgl.WGLDXInteropMaskNV) + name: DXObjectAccessNV(nint, DXInteropMaskNV) + nameWithType: Wgl.NV.DXObjectAccessNV(nint, DXInteropMaskNV) + fullName: OpenTK.Graphics.Wgl.Wgl.NV.DXObjectAccessNV(nint, OpenTK.Graphics.Wgl.DXInteropMaskNV) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DXObjectAccessNV - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 1979 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 1585 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl example: [] syntax: - content: public static bool DXObjectAccessNV(nint hObject, WGLDXInteropMaskNV access) + content: public static bool DXObjectAccessNV(nint hObject, DXInteropMaskNV access) parameters: - id: hObject type: System.IntPtr - id: access - type: OpenTK.Graphics.Wgl.WGLDXInteropMaskNV + type: OpenTK.Graphics.Wgl.DXInteropMaskNV return: type: System.Boolean - content.vb: Public Shared Function DXObjectAccessNV(hObject As IntPtr, access As WGLDXInteropMaskNV) As Boolean + content.vb: Public Shared Function DXObjectAccessNV(hObject As IntPtr, access As DXInteropMaskNV) As Boolean overload: OpenTK.Graphics.Wgl.Wgl.NV.DXObjectAccessNV* - nameWithType.vb: Wgl.NV.DXObjectAccessNV(IntPtr, WGLDXInteropMaskNV) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.DXObjectAccessNV(System.IntPtr, OpenTK.Graphics.Wgl.WGLDXInteropMaskNV) - name.vb: DXObjectAccessNV(IntPtr, WGLDXInteropMaskNV) + nameWithType.vb: Wgl.NV.DXObjectAccessNV(IntPtr, DXInteropMaskNV) + fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.DXObjectAccessNV(System.IntPtr, OpenTK.Graphics.Wgl.DXInteropMaskNV) + name.vb: DXObjectAccessNV(IntPtr, DXInteropMaskNV) - uid: OpenTK.Graphics.Wgl.Wgl.NV.DXOpenDeviceNV(System.IntPtr) commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.DXOpenDeviceNV(System.IntPtr) id: DXOpenDeviceNV(System.IntPtr) @@ -2160,13 +2293,9 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.NV.DXOpenDeviceNV(nint) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DXOpenDeviceNV - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 1988 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 1594 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -2189,92 +2318,6 @@ items: nameWithType.vb: Wgl.NV.DXOpenDeviceNV(IntPtr) fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.DXOpenDeviceNV(System.IntPtr) name.vb: DXOpenDeviceNV(IntPtr) -- uid: OpenTK.Graphics.Wgl.Wgl.NV.DXOpenDeviceNV``1(System.Span{``0}) - commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.DXOpenDeviceNV``1(System.Span{``0}) - id: DXOpenDeviceNV``1(System.Span{``0}) - parent: OpenTK.Graphics.Wgl.Wgl.NV - langs: - - csharp - - vb - name: DXOpenDeviceNV(Span) - nameWithType: Wgl.NV.DXOpenDeviceNV(Span) - fullName: OpenTK.Graphics.Wgl.Wgl.NV.DXOpenDeviceNV(System.Span) - type: Method - source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: DXOpenDeviceNV - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 1996 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_NV_DX_interop] - - [entry point: wglDXOpenDeviceNV] - -
- example: [] - syntax: - content: 'public static nint DXOpenDeviceNV(Span dxDevice) where T1 : unmanaged' - parameters: - - id: dxDevice - type: System.Span{{T1}} - typeParameters: - - id: T1 - return: - type: System.IntPtr - content.vb: Public Shared Function DXOpenDeviceNV(Of T1 As Structure)(dxDevice As Span(Of T1)) As IntPtr - overload: OpenTK.Graphics.Wgl.Wgl.NV.DXOpenDeviceNV* - nameWithType.vb: Wgl.NV.DXOpenDeviceNV(Of T1)(Span(Of T1)) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.DXOpenDeviceNV(Of T1)(System.Span(Of T1)) - name.vb: DXOpenDeviceNV(Of T1)(Span(Of T1)) -- uid: OpenTK.Graphics.Wgl.Wgl.NV.DXOpenDeviceNV``1(``0[]) - commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.DXOpenDeviceNV``1(``0[]) - id: DXOpenDeviceNV``1(``0[]) - parent: OpenTK.Graphics.Wgl.Wgl.NV - langs: - - csharp - - vb - name: DXOpenDeviceNV(T1[]) - nameWithType: Wgl.NV.DXOpenDeviceNV(T1[]) - fullName: OpenTK.Graphics.Wgl.Wgl.NV.DXOpenDeviceNV(T1[]) - type: Method - source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: DXOpenDeviceNV - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 2007 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_NV_DX_interop] - - [entry point: wglDXOpenDeviceNV] - -
- example: [] - syntax: - content: 'public static nint DXOpenDeviceNV(T1[] dxDevice) where T1 : unmanaged' - parameters: - - id: dxDevice - type: '{T1}[]' - typeParameters: - - id: T1 - return: - type: System.IntPtr - content.vb: Public Shared Function DXOpenDeviceNV(Of T1 As Structure)(dxDevice As T1()) As IntPtr - overload: OpenTK.Graphics.Wgl.Wgl.NV.DXOpenDeviceNV* - nameWithType.vb: Wgl.NV.DXOpenDeviceNV(Of T1)(T1()) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.DXOpenDeviceNV(Of T1)(T1()) - name.vb: DXOpenDeviceNV(Of T1)(T1()) - uid: OpenTK.Graphics.Wgl.Wgl.NV.DXOpenDeviceNV``1(``0@) commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.DXOpenDeviceNV``1(``0@) id: DXOpenDeviceNV``1(``0@) @@ -2282,18 +2325,14 @@ items: langs: - csharp - vb - name: DXOpenDeviceNV(ref T1) - nameWithType: Wgl.NV.DXOpenDeviceNV(ref T1) - fullName: OpenTK.Graphics.Wgl.Wgl.NV.DXOpenDeviceNV(ref T1) + name: DXOpenDeviceNV(in T1) + nameWithType: Wgl.NV.DXOpenDeviceNV(in T1) + fullName: OpenTK.Graphics.Wgl.Wgl.NV.DXOpenDeviceNV(in T1) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DXOpenDeviceNV - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 2018 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 1602 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -2305,7 +2344,7 @@ items:
example: [] syntax: - content: 'public static nint DXOpenDeviceNV(ref T1 dxDevice) where T1 : unmanaged' + content: 'public static nint DXOpenDeviceNV(in T1 dxDevice) where T1 : unmanaged' parameters: - id: dxDevice type: '{T1}' @@ -2318,74 +2357,21 @@ items: nameWithType.vb: Wgl.NV.DXOpenDeviceNV(Of T1)(T1) fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.DXOpenDeviceNV(Of T1)(T1) name.vb: DXOpenDeviceNV(Of T1)(T1) -- uid: OpenTK.Graphics.Wgl.Wgl.NV.DXRegisterObjectNV(System.IntPtr,System.IntPtr,System.UInt32,OpenTK.Graphics.Wgl.ObjectTypeDX,OpenTK.Graphics.Wgl.WGLDXInteropMaskNV) - commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.DXRegisterObjectNV(System.IntPtr,System.IntPtr,System.UInt32,OpenTK.Graphics.Wgl.ObjectTypeDX,OpenTK.Graphics.Wgl.WGLDXInteropMaskNV) - id: DXRegisterObjectNV(System.IntPtr,System.IntPtr,System.UInt32,OpenTK.Graphics.Wgl.ObjectTypeDX,OpenTK.Graphics.Wgl.WGLDXInteropMaskNV) - parent: OpenTK.Graphics.Wgl.Wgl.NV - langs: - - csharp - - vb - name: DXRegisterObjectNV(nint, nint, uint, ObjectTypeDX, WGLDXInteropMaskNV) - nameWithType: Wgl.NV.DXRegisterObjectNV(nint, nint, uint, ObjectTypeDX, WGLDXInteropMaskNV) - fullName: OpenTK.Graphics.Wgl.Wgl.NV.DXRegisterObjectNV(nint, nint, uint, OpenTK.Graphics.Wgl.ObjectTypeDX, OpenTK.Graphics.Wgl.WGLDXInteropMaskNV) - type: Method - source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: DXRegisterObjectNV - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 2029 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_NV_DX_interop] - - [entry point: wglDXRegisterObjectNV] - -
- example: [] - syntax: - content: public static nint DXRegisterObjectNV(nint hDevice, nint dxObject, uint name, ObjectTypeDX type, WGLDXInteropMaskNV access) - parameters: - - id: hDevice - type: System.IntPtr - - id: dxObject - type: System.IntPtr - - id: name - type: System.UInt32 - - id: type - type: OpenTK.Graphics.Wgl.ObjectTypeDX - - id: access - type: OpenTK.Graphics.Wgl.WGLDXInteropMaskNV - return: - type: System.IntPtr - content.vb: Public Shared Function DXRegisterObjectNV(hDevice As IntPtr, dxObject As IntPtr, name As UInteger, type As ObjectTypeDX, access As WGLDXInteropMaskNV) As IntPtr - overload: OpenTK.Graphics.Wgl.Wgl.NV.DXRegisterObjectNV* - nameWithType.vb: Wgl.NV.DXRegisterObjectNV(IntPtr, IntPtr, UInteger, ObjectTypeDX, WGLDXInteropMaskNV) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.DXRegisterObjectNV(System.IntPtr, System.IntPtr, UInteger, OpenTK.Graphics.Wgl.ObjectTypeDX, OpenTK.Graphics.Wgl.WGLDXInteropMaskNV) - name.vb: DXRegisterObjectNV(IntPtr, IntPtr, UInteger, ObjectTypeDX, WGLDXInteropMaskNV) -- uid: OpenTK.Graphics.Wgl.Wgl.NV.DXRegisterObjectNV``1(System.IntPtr,System.Span{``0},System.UInt32,OpenTK.Graphics.Wgl.ObjectTypeDX,OpenTK.Graphics.Wgl.WGLDXInteropMaskNV) - commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.DXRegisterObjectNV``1(System.IntPtr,System.Span{``0},System.UInt32,OpenTK.Graphics.Wgl.ObjectTypeDX,OpenTK.Graphics.Wgl.WGLDXInteropMaskNV) - id: DXRegisterObjectNV``1(System.IntPtr,System.Span{``0},System.UInt32,OpenTK.Graphics.Wgl.ObjectTypeDX,OpenTK.Graphics.Wgl.WGLDXInteropMaskNV) +- uid: OpenTK.Graphics.Wgl.Wgl.NV.DXRegisterObjectNV(System.IntPtr,System.IntPtr,System.UInt32,OpenTK.Graphics.Wgl.ObjectTypeDX,OpenTK.Graphics.Wgl.DXInteropMaskNV) + commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.DXRegisterObjectNV(System.IntPtr,System.IntPtr,System.UInt32,OpenTK.Graphics.Wgl.ObjectTypeDX,OpenTK.Graphics.Wgl.DXInteropMaskNV) + id: DXRegisterObjectNV(System.IntPtr,System.IntPtr,System.UInt32,OpenTK.Graphics.Wgl.ObjectTypeDX,OpenTK.Graphics.Wgl.DXInteropMaskNV) parent: OpenTK.Graphics.Wgl.Wgl.NV langs: - csharp - vb - name: DXRegisterObjectNV(nint, Span, uint, ObjectTypeDX, WGLDXInteropMaskNV) - nameWithType: Wgl.NV.DXRegisterObjectNV(nint, Span, uint, ObjectTypeDX, WGLDXInteropMaskNV) - fullName: OpenTK.Graphics.Wgl.Wgl.NV.DXRegisterObjectNV(nint, System.Span, uint, OpenTK.Graphics.Wgl.ObjectTypeDX, OpenTK.Graphics.Wgl.WGLDXInteropMaskNV) + name: DXRegisterObjectNV(nint, nint, uint, ObjectTypeDX, DXInteropMaskNV) + nameWithType: Wgl.NV.DXRegisterObjectNV(nint, nint, uint, ObjectTypeDX, DXInteropMaskNV) + fullName: OpenTK.Graphics.Wgl.Wgl.NV.DXRegisterObjectNV(nint, nint, uint, OpenTK.Graphics.Wgl.ObjectTypeDX, OpenTK.Graphics.Wgl.DXInteropMaskNV) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DXRegisterObjectNV - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 2037 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 1613 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -2397,97 +2383,40 @@ items:
example: [] syntax: - content: 'public static nint DXRegisterObjectNV(nint hDevice, Span dxObject, uint name, ObjectTypeDX type, WGLDXInteropMaskNV access) where T1 : unmanaged' + content: public static nint DXRegisterObjectNV(nint hDevice, nint dxObject, uint name, ObjectTypeDX type, DXInteropMaskNV access) parameters: - id: hDevice type: System.IntPtr - id: dxObject - type: System.Span{{T1}} - - id: name - type: System.UInt32 - - id: type - type: OpenTK.Graphics.Wgl.ObjectTypeDX - - id: access - type: OpenTK.Graphics.Wgl.WGLDXInteropMaskNV - typeParameters: - - id: T1 - return: - type: System.IntPtr - content.vb: Public Shared Function DXRegisterObjectNV(Of T1 As Structure)(hDevice As IntPtr, dxObject As Span(Of T1), name As UInteger, type As ObjectTypeDX, access As WGLDXInteropMaskNV) As IntPtr - overload: OpenTK.Graphics.Wgl.Wgl.NV.DXRegisterObjectNV* - nameWithType.vb: Wgl.NV.DXRegisterObjectNV(Of T1)(IntPtr, Span(Of T1), UInteger, ObjectTypeDX, WGLDXInteropMaskNV) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.DXRegisterObjectNV(Of T1)(System.IntPtr, System.Span(Of T1), UInteger, OpenTK.Graphics.Wgl.ObjectTypeDX, OpenTK.Graphics.Wgl.WGLDXInteropMaskNV) - name.vb: DXRegisterObjectNV(Of T1)(IntPtr, Span(Of T1), UInteger, ObjectTypeDX, WGLDXInteropMaskNV) -- uid: OpenTK.Graphics.Wgl.Wgl.NV.DXRegisterObjectNV``1(System.IntPtr,``0[],System.UInt32,OpenTK.Graphics.Wgl.ObjectTypeDX,OpenTK.Graphics.Wgl.WGLDXInteropMaskNV) - commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.DXRegisterObjectNV``1(System.IntPtr,``0[],System.UInt32,OpenTK.Graphics.Wgl.ObjectTypeDX,OpenTK.Graphics.Wgl.WGLDXInteropMaskNV) - id: DXRegisterObjectNV``1(System.IntPtr,``0[],System.UInt32,OpenTK.Graphics.Wgl.ObjectTypeDX,OpenTK.Graphics.Wgl.WGLDXInteropMaskNV) - parent: OpenTK.Graphics.Wgl.Wgl.NV - langs: - - csharp - - vb - name: DXRegisterObjectNV(nint, T1[], uint, ObjectTypeDX, WGLDXInteropMaskNV) - nameWithType: Wgl.NV.DXRegisterObjectNV(nint, T1[], uint, ObjectTypeDX, WGLDXInteropMaskNV) - fullName: OpenTK.Graphics.Wgl.Wgl.NV.DXRegisterObjectNV(nint, T1[], uint, OpenTK.Graphics.Wgl.ObjectTypeDX, OpenTK.Graphics.Wgl.WGLDXInteropMaskNV) - type: Method - source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: DXRegisterObjectNV - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 2048 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_NV_DX_interop] - - [entry point: wglDXRegisterObjectNV] - -
- example: [] - syntax: - content: 'public static nint DXRegisterObjectNV(nint hDevice, T1[] dxObject, uint name, ObjectTypeDX type, WGLDXInteropMaskNV access) where T1 : unmanaged' - parameters: - - id: hDevice type: System.IntPtr - - id: dxObject - type: '{T1}[]' - id: name type: System.UInt32 - id: type type: OpenTK.Graphics.Wgl.ObjectTypeDX - id: access - type: OpenTK.Graphics.Wgl.WGLDXInteropMaskNV - typeParameters: - - id: T1 + type: OpenTK.Graphics.Wgl.DXInteropMaskNV return: type: System.IntPtr - content.vb: Public Shared Function DXRegisterObjectNV(Of T1 As Structure)(hDevice As IntPtr, dxObject As T1(), name As UInteger, type As ObjectTypeDX, access As WGLDXInteropMaskNV) As IntPtr + content.vb: Public Shared Function DXRegisterObjectNV(hDevice As IntPtr, dxObject As IntPtr, name As UInteger, type As ObjectTypeDX, access As DXInteropMaskNV) As IntPtr overload: OpenTK.Graphics.Wgl.Wgl.NV.DXRegisterObjectNV* - nameWithType.vb: Wgl.NV.DXRegisterObjectNV(Of T1)(IntPtr, T1(), UInteger, ObjectTypeDX, WGLDXInteropMaskNV) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.DXRegisterObjectNV(Of T1)(System.IntPtr, T1(), UInteger, OpenTK.Graphics.Wgl.ObjectTypeDX, OpenTK.Graphics.Wgl.WGLDXInteropMaskNV) - name.vb: DXRegisterObjectNV(Of T1)(IntPtr, T1(), UInteger, ObjectTypeDX, WGLDXInteropMaskNV) -- uid: OpenTK.Graphics.Wgl.Wgl.NV.DXRegisterObjectNV``1(System.IntPtr,``0@,System.UInt32,OpenTK.Graphics.Wgl.ObjectTypeDX,OpenTK.Graphics.Wgl.WGLDXInteropMaskNV) - commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.DXRegisterObjectNV``1(System.IntPtr,``0@,System.UInt32,OpenTK.Graphics.Wgl.ObjectTypeDX,OpenTK.Graphics.Wgl.WGLDXInteropMaskNV) - id: DXRegisterObjectNV``1(System.IntPtr,``0@,System.UInt32,OpenTK.Graphics.Wgl.ObjectTypeDX,OpenTK.Graphics.Wgl.WGLDXInteropMaskNV) + nameWithType.vb: Wgl.NV.DXRegisterObjectNV(IntPtr, IntPtr, UInteger, ObjectTypeDX, DXInteropMaskNV) + fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.DXRegisterObjectNV(System.IntPtr, System.IntPtr, UInteger, OpenTK.Graphics.Wgl.ObjectTypeDX, OpenTK.Graphics.Wgl.DXInteropMaskNV) + name.vb: DXRegisterObjectNV(IntPtr, IntPtr, UInteger, ObjectTypeDX, DXInteropMaskNV) +- uid: OpenTK.Graphics.Wgl.Wgl.NV.DXRegisterObjectNV``1(System.IntPtr,``0@,System.UInt32,OpenTK.Graphics.Wgl.ObjectTypeDX,OpenTK.Graphics.Wgl.DXInteropMaskNV) + commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.DXRegisterObjectNV``1(System.IntPtr,``0@,System.UInt32,OpenTK.Graphics.Wgl.ObjectTypeDX,OpenTK.Graphics.Wgl.DXInteropMaskNV) + id: DXRegisterObjectNV``1(System.IntPtr,``0@,System.UInt32,OpenTK.Graphics.Wgl.ObjectTypeDX,OpenTK.Graphics.Wgl.DXInteropMaskNV) parent: OpenTK.Graphics.Wgl.Wgl.NV langs: - csharp - vb - name: DXRegisterObjectNV(nint, ref T1, uint, ObjectTypeDX, WGLDXInteropMaskNV) - nameWithType: Wgl.NV.DXRegisterObjectNV(nint, ref T1, uint, ObjectTypeDX, WGLDXInteropMaskNV) - fullName: OpenTK.Graphics.Wgl.Wgl.NV.DXRegisterObjectNV(nint, ref T1, uint, OpenTK.Graphics.Wgl.ObjectTypeDX, OpenTK.Graphics.Wgl.WGLDXInteropMaskNV) + name: DXRegisterObjectNV(nint, in T1, uint, ObjectTypeDX, DXInteropMaskNV) + nameWithType: Wgl.NV.DXRegisterObjectNV(nint, in T1, uint, ObjectTypeDX, DXInteropMaskNV) + fullName: OpenTK.Graphics.Wgl.Wgl.NV.DXRegisterObjectNV(nint, in T1, uint, OpenTK.Graphics.Wgl.ObjectTypeDX, OpenTK.Graphics.Wgl.DXInteropMaskNV) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DXRegisterObjectNV - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 2059 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 1621 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -2499,7 +2428,7 @@ items:
example: [] syntax: - content: 'public static nint DXRegisterObjectNV(nint hDevice, ref T1 dxObject, uint name, ObjectTypeDX type, WGLDXInteropMaskNV access) where T1 : unmanaged' + content: 'public static nint DXRegisterObjectNV(nint hDevice, in T1 dxObject, uint name, ObjectTypeDX type, DXInteropMaskNV access) where T1 : unmanaged' parameters: - id: hDevice type: System.IntPtr @@ -2510,16 +2439,16 @@ items: - id: type type: OpenTK.Graphics.Wgl.ObjectTypeDX - id: access - type: OpenTK.Graphics.Wgl.WGLDXInteropMaskNV + type: OpenTK.Graphics.Wgl.DXInteropMaskNV typeParameters: - id: T1 return: type: System.IntPtr - content.vb: Public Shared Function DXRegisterObjectNV(Of T1 As Structure)(hDevice As IntPtr, dxObject As T1, name As UInteger, type As ObjectTypeDX, access As WGLDXInteropMaskNV) As IntPtr + content.vb: Public Shared Function DXRegisterObjectNV(Of T1 As Structure)(hDevice As IntPtr, dxObject As T1, name As UInteger, type As ObjectTypeDX, access As DXInteropMaskNV) As IntPtr overload: OpenTK.Graphics.Wgl.Wgl.NV.DXRegisterObjectNV* - nameWithType.vb: Wgl.NV.DXRegisterObjectNV(Of T1)(IntPtr, T1, UInteger, ObjectTypeDX, WGLDXInteropMaskNV) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.DXRegisterObjectNV(Of T1)(System.IntPtr, T1, UInteger, OpenTK.Graphics.Wgl.ObjectTypeDX, OpenTK.Graphics.Wgl.WGLDXInteropMaskNV) - name.vb: DXRegisterObjectNV(Of T1)(IntPtr, T1, UInteger, ObjectTypeDX, WGLDXInteropMaskNV) + nameWithType.vb: Wgl.NV.DXRegisterObjectNV(Of T1)(IntPtr, T1, UInteger, ObjectTypeDX, DXInteropMaskNV) + fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.DXRegisterObjectNV(Of T1)(System.IntPtr, T1, UInteger, OpenTK.Graphics.Wgl.ObjectTypeDX, OpenTK.Graphics.Wgl.DXInteropMaskNV) + name.vb: DXRegisterObjectNV(Of T1)(IntPtr, T1, UInteger, ObjectTypeDX, DXInteropMaskNV) - uid: OpenTK.Graphics.Wgl.Wgl.NV.DXSetResourceShareHandleNV(System.IntPtr,System.IntPtr) commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.DXSetResourceShareHandleNV(System.IntPtr,System.IntPtr) id: DXSetResourceShareHandleNV(System.IntPtr,System.IntPtr) @@ -2532,13 +2461,9 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.NV.DXSetResourceShareHandleNV(nint, nint) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DXSetResourceShareHandleNV - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 2070 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 1632 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -2563,25 +2488,21 @@ items: nameWithType.vb: Wgl.NV.DXSetResourceShareHandleNV(IntPtr, IntPtr) fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.DXSetResourceShareHandleNV(System.IntPtr, System.IntPtr) name.vb: DXSetResourceShareHandleNV(IntPtr, IntPtr) -- uid: OpenTK.Graphics.Wgl.Wgl.NV.DXSetResourceShareHandleNV``1(System.Span{``0},System.IntPtr) - commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.DXSetResourceShareHandleNV``1(System.Span{``0},System.IntPtr) - id: DXSetResourceShareHandleNV``1(System.Span{``0},System.IntPtr) +- uid: OpenTK.Graphics.Wgl.Wgl.NV.DXSetResourceShareHandleNV``1(``0@,System.IntPtr) + commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.DXSetResourceShareHandleNV``1(``0@,System.IntPtr) + id: DXSetResourceShareHandleNV``1(``0@,System.IntPtr) parent: OpenTK.Graphics.Wgl.Wgl.NV langs: - csharp - vb - name: DXSetResourceShareHandleNV(Span, nint) - nameWithType: Wgl.NV.DXSetResourceShareHandleNV(Span, nint) - fullName: OpenTK.Graphics.Wgl.Wgl.NV.DXSetResourceShareHandleNV(System.Span, nint) + name: DXSetResourceShareHandleNV(in T1, nint) + nameWithType: Wgl.NV.DXSetResourceShareHandleNV(in T1, nint) + fullName: OpenTK.Graphics.Wgl.Wgl.NV.DXSetResourceShareHandleNV(in T1, nint) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DXSetResourceShareHandleNV - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 2080 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 1642 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -2593,130 +2514,36 @@ items:
example: [] syntax: - content: 'public static bool DXSetResourceShareHandleNV(Span dxObject, nint shareHandle) where T1 : unmanaged' + content: 'public static bool DXSetResourceShareHandleNV(in T1 dxObject, nint shareHandle) where T1 : unmanaged' parameters: - id: dxObject - type: System.Span{{T1}} + type: '{T1}' - id: shareHandle type: System.IntPtr typeParameters: - id: T1 return: type: System.Boolean - content.vb: Public Shared Function DXSetResourceShareHandleNV(Of T1 As Structure)(dxObject As Span(Of T1), shareHandle As IntPtr) As Boolean + content.vb: Public Shared Function DXSetResourceShareHandleNV(Of T1 As Structure)(dxObject As T1, shareHandle As IntPtr) As Boolean overload: OpenTK.Graphics.Wgl.Wgl.NV.DXSetResourceShareHandleNV* - nameWithType.vb: Wgl.NV.DXSetResourceShareHandleNV(Of T1)(Span(Of T1), IntPtr) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.DXSetResourceShareHandleNV(Of T1)(System.Span(Of T1), System.IntPtr) - name.vb: DXSetResourceShareHandleNV(Of T1)(Span(Of T1), IntPtr) -- uid: OpenTK.Graphics.Wgl.Wgl.NV.DXSetResourceShareHandleNV``1(``0[],System.IntPtr) - commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.DXSetResourceShareHandleNV``1(``0[],System.IntPtr) - id: DXSetResourceShareHandleNV``1(``0[],System.IntPtr) + nameWithType.vb: Wgl.NV.DXSetResourceShareHandleNV(Of T1)(T1, IntPtr) + fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.DXSetResourceShareHandleNV(Of T1)(T1, System.IntPtr) + name.vb: DXSetResourceShareHandleNV(Of T1)(T1, IntPtr) +- uid: OpenTK.Graphics.Wgl.Wgl.NV.DXUnlockObjectsNV(System.IntPtr,System.Int32,System.Span{System.IntPtr}) + commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.DXUnlockObjectsNV(System.IntPtr,System.Int32,System.Span{System.IntPtr}) + id: DXUnlockObjectsNV(System.IntPtr,System.Int32,System.Span{System.IntPtr}) parent: OpenTK.Graphics.Wgl.Wgl.NV langs: - csharp - vb - name: DXSetResourceShareHandleNV(T1[], nint) - nameWithType: Wgl.NV.DXSetResourceShareHandleNV(T1[], nint) - fullName: OpenTK.Graphics.Wgl.Wgl.NV.DXSetResourceShareHandleNV(T1[], nint) + name: DXUnlockObjectsNV(nint, int, Span) + nameWithType: Wgl.NV.DXUnlockObjectsNV(nint, int, Span) + fullName: OpenTK.Graphics.Wgl.Wgl.NV.DXUnlockObjectsNV(nint, int, System.Span) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: DXSetResourceShareHandleNV - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 2093 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_NV_DX_interop] - - [entry point: wglDXSetResourceShareHandleNV] - -
- example: [] - syntax: - content: 'public static bool DXSetResourceShareHandleNV(T1[] dxObject, nint shareHandle) where T1 : unmanaged' - parameters: - - id: dxObject - type: '{T1}[]' - - id: shareHandle - type: System.IntPtr - typeParameters: - - id: T1 - return: - type: System.Boolean - content.vb: Public Shared Function DXSetResourceShareHandleNV(Of T1 As Structure)(dxObject As T1(), shareHandle As IntPtr) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.NV.DXSetResourceShareHandleNV* - nameWithType.vb: Wgl.NV.DXSetResourceShareHandleNV(Of T1)(T1(), IntPtr) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.DXSetResourceShareHandleNV(Of T1)(T1(), System.IntPtr) - name.vb: DXSetResourceShareHandleNV(Of T1)(T1(), IntPtr) -- uid: OpenTK.Graphics.Wgl.Wgl.NV.DXSetResourceShareHandleNV``1(``0@,System.IntPtr) - commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.DXSetResourceShareHandleNV``1(``0@,System.IntPtr) - id: DXSetResourceShareHandleNV``1(``0@,System.IntPtr) - parent: OpenTK.Graphics.Wgl.Wgl.NV - langs: - - csharp - - vb - name: DXSetResourceShareHandleNV(ref T1, nint) - nameWithType: Wgl.NV.DXSetResourceShareHandleNV(ref T1, nint) - fullName: OpenTK.Graphics.Wgl.Wgl.NV.DXSetResourceShareHandleNV(ref T1, nint) - type: Method - source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: DXSetResourceShareHandleNV - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 2106 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_NV_DX_interop] - - [entry point: wglDXSetResourceShareHandleNV] - -
- example: [] - syntax: - content: 'public static bool DXSetResourceShareHandleNV(ref T1 dxObject, nint shareHandle) where T1 : unmanaged' - parameters: - - id: dxObject - type: '{T1}' - - id: shareHandle - type: System.IntPtr - typeParameters: - - id: T1 - return: - type: System.Boolean - content.vb: Public Shared Function DXSetResourceShareHandleNV(Of T1 As Structure)(dxObject As T1, shareHandle As IntPtr) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.NV.DXSetResourceShareHandleNV* - nameWithType.vb: Wgl.NV.DXSetResourceShareHandleNV(Of T1)(T1, IntPtr) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.DXSetResourceShareHandleNV(Of T1)(T1, System.IntPtr) - name.vb: DXSetResourceShareHandleNV(Of T1)(T1, IntPtr) -- uid: OpenTK.Graphics.Wgl.Wgl.NV.DXUnlockObjectsNV(System.IntPtr,System.Span{System.IntPtr}) - commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.DXUnlockObjectsNV(System.IntPtr,System.Span{System.IntPtr}) - id: DXUnlockObjectsNV(System.IntPtr,System.Span{System.IntPtr}) - parent: OpenTK.Graphics.Wgl.Wgl.NV - langs: - - csharp - - vb - name: DXUnlockObjectsNV(nint, Span) - nameWithType: Wgl.NV.DXUnlockObjectsNV(nint, Span) - fullName: OpenTK.Graphics.Wgl.Wgl.NV.DXUnlockObjectsNV(nint, System.Span) - type: Method - source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DXUnlockObjectsNV - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 2119 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 1655 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -2728,38 +2555,36 @@ items:
example: [] syntax: - content: public static bool DXUnlockObjectsNV(nint hDevice, Span hObjects) + content: public static bool DXUnlockObjectsNV(nint hDevice, int count, Span hObjects) parameters: - id: hDevice type: System.IntPtr + - id: count + type: System.Int32 - id: hObjects type: System.Span{System.IntPtr} return: type: System.Boolean - content.vb: Public Shared Function DXUnlockObjectsNV(hDevice As IntPtr, hObjects As Span(Of IntPtr)) As Boolean + content.vb: Public Shared Function DXUnlockObjectsNV(hDevice As IntPtr, count As Integer, hObjects As Span(Of IntPtr)) As Boolean overload: OpenTK.Graphics.Wgl.Wgl.NV.DXUnlockObjectsNV* - nameWithType.vb: Wgl.NV.DXUnlockObjectsNV(IntPtr, Span(Of IntPtr)) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.DXUnlockObjectsNV(System.IntPtr, System.Span(Of System.IntPtr)) - name.vb: DXUnlockObjectsNV(IntPtr, Span(Of IntPtr)) -- uid: OpenTK.Graphics.Wgl.Wgl.NV.DXUnlockObjectsNV(System.IntPtr,System.IntPtr[]) - commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.DXUnlockObjectsNV(System.IntPtr,System.IntPtr[]) - id: DXUnlockObjectsNV(System.IntPtr,System.IntPtr[]) + nameWithType.vb: Wgl.NV.DXUnlockObjectsNV(IntPtr, Integer, Span(Of IntPtr)) + fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.DXUnlockObjectsNV(System.IntPtr, Integer, System.Span(Of System.IntPtr)) + name.vb: DXUnlockObjectsNV(IntPtr, Integer, Span(Of IntPtr)) +- uid: OpenTK.Graphics.Wgl.Wgl.NV.DXUnlockObjectsNV(System.IntPtr,System.Int32,System.IntPtr[]) + commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.DXUnlockObjectsNV(System.IntPtr,System.Int32,System.IntPtr[]) + id: DXUnlockObjectsNV(System.IntPtr,System.Int32,System.IntPtr[]) parent: OpenTK.Graphics.Wgl.Wgl.NV langs: - csharp - vb - name: DXUnlockObjectsNV(nint, nint[]) - nameWithType: Wgl.NV.DXUnlockObjectsNV(nint, nint[]) - fullName: OpenTK.Graphics.Wgl.Wgl.NV.DXUnlockObjectsNV(nint, nint[]) + name: DXUnlockObjectsNV(nint, int, nint[]) + nameWithType: Wgl.NV.DXUnlockObjectsNV(nint, int, nint[]) + fullName: OpenTK.Graphics.Wgl.Wgl.NV.DXUnlockObjectsNV(nint, int, nint[]) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DXUnlockObjectsNV - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 2132 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 1667 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -2771,19 +2596,21 @@ items:
example: [] syntax: - content: public static bool DXUnlockObjectsNV(nint hDevice, nint[] hObjects) + content: public static bool DXUnlockObjectsNV(nint hDevice, int count, nint[] hObjects) parameters: - id: hDevice type: System.IntPtr + - id: count + type: System.Int32 - id: hObjects type: System.IntPtr[] return: type: System.Boolean - content.vb: Public Shared Function DXUnlockObjectsNV(hDevice As IntPtr, hObjects As IntPtr()) As Boolean + content.vb: Public Shared Function DXUnlockObjectsNV(hDevice As IntPtr, count As Integer, hObjects As IntPtr()) As Boolean overload: OpenTK.Graphics.Wgl.Wgl.NV.DXUnlockObjectsNV* - nameWithType.vb: Wgl.NV.DXUnlockObjectsNV(IntPtr, IntPtr()) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.DXUnlockObjectsNV(System.IntPtr, System.IntPtr()) - name.vb: DXUnlockObjectsNV(IntPtr, IntPtr()) + nameWithType.vb: Wgl.NV.DXUnlockObjectsNV(IntPtr, Integer, IntPtr()) + fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.DXUnlockObjectsNV(System.IntPtr, Integer, System.IntPtr()) + name.vb: DXUnlockObjectsNV(IntPtr, Integer, IntPtr()) - uid: OpenTK.Graphics.Wgl.Wgl.NV.DXUnlockObjectsNV(System.IntPtr,System.Int32,System.IntPtr@) commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.DXUnlockObjectsNV(System.IntPtr,System.Int32,System.IntPtr@) id: DXUnlockObjectsNV(System.IntPtr,System.Int32,System.IntPtr@) @@ -2791,18 +2618,14 @@ items: langs: - csharp - vb - name: DXUnlockObjectsNV(nint, int, ref nint) - nameWithType: Wgl.NV.DXUnlockObjectsNV(nint, int, ref nint) - fullName: OpenTK.Graphics.Wgl.Wgl.NV.DXUnlockObjectsNV(nint, int, ref nint) + name: DXUnlockObjectsNV(nint, int, in nint) + nameWithType: Wgl.NV.DXUnlockObjectsNV(nint, int, in nint) + fullName: OpenTK.Graphics.Wgl.Wgl.NV.DXUnlockObjectsNV(nint, int, in nint) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DXUnlockObjectsNV - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 2145 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 1679 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -2814,7 +2637,7 @@ items:
example: [] syntax: - content: public static bool DXUnlockObjectsNV(nint hDevice, int count, ref nint hObjects) + content: public static bool DXUnlockObjectsNV(nint hDevice, int count, in nint hObjects) parameters: - id: hDevice type: System.IntPtr @@ -2841,13 +2664,9 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.NV.DXUnregisterObjectNV(nint, nint) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DXUnregisterObjectNV - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 2157 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 1691 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -2866,6 +2685,84 @@ items: nameWithType.vb: Wgl.NV.DXUnregisterObjectNV(IntPtr, IntPtr) fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.DXUnregisterObjectNV(System.IntPtr, System.IntPtr) name.vb: DXUnregisterObjectNV(IntPtr, IntPtr) +- uid: OpenTK.Graphics.Wgl.Wgl.NV.EnumerateVideoCaptureDevicesNV(System.IntPtr,System.Span{System.IntPtr}) + commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.EnumerateVideoCaptureDevicesNV(System.IntPtr,System.Span{System.IntPtr}) + id: EnumerateVideoCaptureDevicesNV(System.IntPtr,System.Span{System.IntPtr}) + parent: OpenTK.Graphics.Wgl.Wgl.NV + langs: + - csharp + - vb + name: EnumerateVideoCaptureDevicesNV(nint, Span) + nameWithType: Wgl.NV.EnumerateVideoCaptureDevicesNV(nint, Span) + fullName: OpenTK.Graphics.Wgl.Wgl.NV.EnumerateVideoCaptureDevicesNV(nint, System.Span) + type: Method + source: + id: EnumerateVideoCaptureDevicesNV + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 1700 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Wgl + summary: >- + [requires: WGL_NV_video_capture] + + [entry point: wglEnumerateVideoCaptureDevicesNV] + +
+ example: [] + syntax: + content: public static uint EnumerateVideoCaptureDevicesNV(nint hDc, Span phDeviceList) + parameters: + - id: hDc + type: System.IntPtr + - id: phDeviceList + type: System.Span{System.IntPtr} + return: + type: System.UInt32 + content.vb: Public Shared Function EnumerateVideoCaptureDevicesNV(hDc As IntPtr, phDeviceList As Span(Of IntPtr)) As UInteger + overload: OpenTK.Graphics.Wgl.Wgl.NV.EnumerateVideoCaptureDevicesNV* + nameWithType.vb: Wgl.NV.EnumerateVideoCaptureDevicesNV(IntPtr, Span(Of IntPtr)) + fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.EnumerateVideoCaptureDevicesNV(System.IntPtr, System.Span(Of System.IntPtr)) + name.vb: EnumerateVideoCaptureDevicesNV(IntPtr, Span(Of IntPtr)) +- uid: OpenTK.Graphics.Wgl.Wgl.NV.EnumerateVideoCaptureDevicesNV(System.IntPtr,System.IntPtr[]) + commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.EnumerateVideoCaptureDevicesNV(System.IntPtr,System.IntPtr[]) + id: EnumerateVideoCaptureDevicesNV(System.IntPtr,System.IntPtr[]) + parent: OpenTK.Graphics.Wgl.Wgl.NV + langs: + - csharp + - vb + name: EnumerateVideoCaptureDevicesNV(nint, nint[]) + nameWithType: Wgl.NV.EnumerateVideoCaptureDevicesNV(nint, nint[]) + fullName: OpenTK.Graphics.Wgl.Wgl.NV.EnumerateVideoCaptureDevicesNV(nint, nint[]) + type: Method + source: + id: EnumerateVideoCaptureDevicesNV + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 1710 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Wgl + summary: >- + [requires: WGL_NV_video_capture] + + [entry point: wglEnumerateVideoCaptureDevicesNV] + +
+ example: [] + syntax: + content: public static uint EnumerateVideoCaptureDevicesNV(nint hDc, nint[] phDeviceList) + parameters: + - id: hDc + type: System.IntPtr + - id: phDeviceList + type: System.IntPtr[] + return: + type: System.UInt32 + content.vb: Public Shared Function EnumerateVideoCaptureDevicesNV(hDc As IntPtr, phDeviceList As IntPtr()) As UInteger + overload: OpenTK.Graphics.Wgl.Wgl.NV.EnumerateVideoCaptureDevicesNV* + nameWithType.vb: Wgl.NV.EnumerateVideoCaptureDevicesNV(IntPtr, IntPtr()) + fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.EnumerateVideoCaptureDevicesNV(System.IntPtr, System.IntPtr()) + name.vb: EnumerateVideoCaptureDevicesNV(IntPtr, IntPtr()) - uid: OpenTK.Graphics.Wgl.Wgl.NV.EnumerateVideoCaptureDevicesNV(System.IntPtr,System.IntPtr@) commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.EnumerateVideoCaptureDevicesNV(System.IntPtr,System.IntPtr@) id: EnumerateVideoCaptureDevicesNV(System.IntPtr,System.IntPtr@) @@ -2878,13 +2775,9 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.NV.EnumerateVideoCaptureDevicesNV(nint, ref nint) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: EnumerateVideoCaptureDevicesNV - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 2166 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 1720 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -2909,6 +2802,84 @@ items: nameWithType.vb: Wgl.NV.EnumerateVideoCaptureDevicesNV(IntPtr, IntPtr) fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.EnumerateVideoCaptureDevicesNV(System.IntPtr, System.IntPtr) name.vb: EnumerateVideoCaptureDevicesNV(IntPtr, IntPtr) +- uid: OpenTK.Graphics.Wgl.Wgl.NV.EnumerateVideoDevicesNV(System.IntPtr,System.Span{System.IntPtr}) + commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.EnumerateVideoDevicesNV(System.IntPtr,System.Span{System.IntPtr}) + id: EnumerateVideoDevicesNV(System.IntPtr,System.Span{System.IntPtr}) + parent: OpenTK.Graphics.Wgl.Wgl.NV + langs: + - csharp + - vb + name: EnumerateVideoDevicesNV(nint, Span) + nameWithType: Wgl.NV.EnumerateVideoDevicesNV(nint, Span) + fullName: OpenTK.Graphics.Wgl.Wgl.NV.EnumerateVideoDevicesNV(nint, System.Span) + type: Method + source: + id: EnumerateVideoDevicesNV + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 1730 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Wgl + summary: >- + [requires: WGL_NV_present_video] + + [entry point: wglEnumerateVideoDevicesNV] + +
+ example: [] + syntax: + content: public static int EnumerateVideoDevicesNV(nint hDc, Span phDeviceList) + parameters: + - id: hDc + type: System.IntPtr + - id: phDeviceList + type: System.Span{System.IntPtr} + return: + type: System.Int32 + content.vb: Public Shared Function EnumerateVideoDevicesNV(hDc As IntPtr, phDeviceList As Span(Of IntPtr)) As Integer + overload: OpenTK.Graphics.Wgl.Wgl.NV.EnumerateVideoDevicesNV* + nameWithType.vb: Wgl.NV.EnumerateVideoDevicesNV(IntPtr, Span(Of IntPtr)) + fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.EnumerateVideoDevicesNV(System.IntPtr, System.Span(Of System.IntPtr)) + name.vb: EnumerateVideoDevicesNV(IntPtr, Span(Of IntPtr)) +- uid: OpenTK.Graphics.Wgl.Wgl.NV.EnumerateVideoDevicesNV(System.IntPtr,System.IntPtr[]) + commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.EnumerateVideoDevicesNV(System.IntPtr,System.IntPtr[]) + id: EnumerateVideoDevicesNV(System.IntPtr,System.IntPtr[]) + parent: OpenTK.Graphics.Wgl.Wgl.NV + langs: + - csharp + - vb + name: EnumerateVideoDevicesNV(nint, nint[]) + nameWithType: Wgl.NV.EnumerateVideoDevicesNV(nint, nint[]) + fullName: OpenTK.Graphics.Wgl.Wgl.NV.EnumerateVideoDevicesNV(nint, nint[]) + type: Method + source: + id: EnumerateVideoDevicesNV + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 1740 + assemblies: + - OpenTK.Graphics + namespace: OpenTK.Graphics.Wgl + summary: >- + [requires: WGL_NV_present_video] + + [entry point: wglEnumerateVideoDevicesNV] + +
+ example: [] + syntax: + content: public static int EnumerateVideoDevicesNV(nint hDc, nint[] phDeviceList) + parameters: + - id: hDc + type: System.IntPtr + - id: phDeviceList + type: System.IntPtr[] + return: + type: System.Int32 + content.vb: Public Shared Function EnumerateVideoDevicesNV(hDc As IntPtr, phDeviceList As IntPtr()) As Integer + overload: OpenTK.Graphics.Wgl.Wgl.NV.EnumerateVideoDevicesNV* + nameWithType.vb: Wgl.NV.EnumerateVideoDevicesNV(IntPtr, IntPtr()) + fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.EnumerateVideoDevicesNV(System.IntPtr, System.IntPtr()) + name.vb: EnumerateVideoDevicesNV(IntPtr, IntPtr()) - uid: OpenTK.Graphics.Wgl.Wgl.NV.EnumerateVideoDevicesNV(System.IntPtr,System.IntPtr@) commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.EnumerateVideoDevicesNV(System.IntPtr,System.IntPtr@) id: EnumerateVideoDevicesNV(System.IntPtr,System.IntPtr@) @@ -2921,13 +2892,9 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.NV.EnumerateVideoDevicesNV(nint, ref nint) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: EnumerateVideoDevicesNV - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 2176 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 1750 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -2952,25 +2919,21 @@ items: nameWithType.vb: Wgl.NV.EnumerateVideoDevicesNV(IntPtr, IntPtr) fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.EnumerateVideoDevicesNV(System.IntPtr, System.IntPtr) name.vb: EnumerateVideoDevicesNV(IntPtr, IntPtr) -- uid: OpenTK.Graphics.Wgl.Wgl.NV.EnumGpuDevicesNV(System.IntPtr,System.UInt32,OpenTK.Graphics.Wgl._GPU_DEVICE@) - commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.EnumGpuDevicesNV(System.IntPtr,System.UInt32,OpenTK.Graphics.Wgl._GPU_DEVICE@) - id: EnumGpuDevicesNV(System.IntPtr,System.UInt32,OpenTK.Graphics.Wgl._GPU_DEVICE@) +- uid: OpenTK.Graphics.Wgl.Wgl.NV.EnumGpuDevicesNV(System.IntPtr,System.UInt32,System.Span{OpenTK.Graphics.Wgl._GPU_DEVICE}) + commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.EnumGpuDevicesNV(System.IntPtr,System.UInt32,System.Span{OpenTK.Graphics.Wgl._GPU_DEVICE}) + id: EnumGpuDevicesNV(System.IntPtr,System.UInt32,System.Span{OpenTK.Graphics.Wgl._GPU_DEVICE}) parent: OpenTK.Graphics.Wgl.Wgl.NV langs: - csharp - vb - name: EnumGpuDevicesNV(nint, uint, ref _GPU_DEVICE) - nameWithType: Wgl.NV.EnumGpuDevicesNV(nint, uint, ref _GPU_DEVICE) - fullName: OpenTK.Graphics.Wgl.Wgl.NV.EnumGpuDevicesNV(nint, uint, ref OpenTK.Graphics.Wgl._GPU_DEVICE) + name: EnumGpuDevicesNV(nint, uint, Span<_GPU_DEVICE>) + nameWithType: Wgl.NV.EnumGpuDevicesNV(nint, uint, Span<_GPU_DEVICE>) + fullName: OpenTK.Graphics.Wgl.Wgl.NV.EnumGpuDevicesNV(nint, uint, System.Span) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: EnumGpuDevicesNV - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 2186 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 1760 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -2982,111 +2945,103 @@ items:
example: [] syntax: - content: public static bool EnumGpuDevicesNV(nint hGpu, uint iDeviceIndex, ref _GPU_DEVICE lpGpuDevice) + content: public static bool EnumGpuDevicesNV(nint hGpu, uint iDeviceIndex, Span<_GPU_DEVICE> lpGpuDevice) parameters: - id: hGpu type: System.IntPtr - id: iDeviceIndex type: System.UInt32 - id: lpGpuDevice - type: OpenTK.Graphics.Wgl._GPU_DEVICE + type: System.Span{OpenTK.Graphics.Wgl._GPU_DEVICE} return: type: System.Boolean - content.vb: Public Shared Function EnumGpuDevicesNV(hGpu As IntPtr, iDeviceIndex As UInteger, lpGpuDevice As _GPU_DEVICE) As Boolean + content.vb: Public Shared Function EnumGpuDevicesNV(hGpu As IntPtr, iDeviceIndex As UInteger, lpGpuDevice As Span(Of _GPU_DEVICE)) As Boolean overload: OpenTK.Graphics.Wgl.Wgl.NV.EnumGpuDevicesNV* - nameWithType.vb: Wgl.NV.EnumGpuDevicesNV(IntPtr, UInteger, _GPU_DEVICE) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.EnumGpuDevicesNV(System.IntPtr, UInteger, OpenTK.Graphics.Wgl._GPU_DEVICE) - name.vb: EnumGpuDevicesNV(IntPtr, UInteger, _GPU_DEVICE) -- uid: OpenTK.Graphics.Wgl.Wgl.NV.EnumGpusFromAffinityDCNV(System.IntPtr,System.UInt32,System.Span{System.IntPtr}) - commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.EnumGpusFromAffinityDCNV(System.IntPtr,System.UInt32,System.Span{System.IntPtr}) - id: EnumGpusFromAffinityDCNV(System.IntPtr,System.UInt32,System.Span{System.IntPtr}) + nameWithType.vb: Wgl.NV.EnumGpuDevicesNV(IntPtr, UInteger, Span(Of _GPU_DEVICE)) + fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.EnumGpuDevicesNV(System.IntPtr, UInteger, System.Span(Of OpenTK.Graphics.Wgl._GPU_DEVICE)) + name.vb: EnumGpuDevicesNV(IntPtr, UInteger, Span(Of _GPU_DEVICE)) +- uid: OpenTK.Graphics.Wgl.Wgl.NV.EnumGpuDevicesNV(System.IntPtr,System.UInt32,OpenTK.Graphics.Wgl._GPU_DEVICE[]) + commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.EnumGpuDevicesNV(System.IntPtr,System.UInt32,OpenTK.Graphics.Wgl._GPU_DEVICE[]) + id: EnumGpuDevicesNV(System.IntPtr,System.UInt32,OpenTK.Graphics.Wgl._GPU_DEVICE[]) parent: OpenTK.Graphics.Wgl.Wgl.NV langs: - csharp - vb - name: EnumGpusFromAffinityDCNV(nint, uint, Span) - nameWithType: Wgl.NV.EnumGpusFromAffinityDCNV(nint, uint, Span) - fullName: OpenTK.Graphics.Wgl.Wgl.NV.EnumGpusFromAffinityDCNV(nint, uint, System.Span) + name: EnumGpuDevicesNV(nint, uint, _GPU_DEVICE[]) + nameWithType: Wgl.NV.EnumGpuDevicesNV(nint, uint, _GPU_DEVICE[]) + fullName: OpenTK.Graphics.Wgl.Wgl.NV.EnumGpuDevicesNV(nint, uint, OpenTK.Graphics.Wgl._GPU_DEVICE[]) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: EnumGpusFromAffinityDCNV - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 2198 + id: EnumGpuDevicesNV + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 1772 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl summary: >- [requires: WGL_NV_gpu_affinity] - [entry point: wglEnumGpusFromAffinityDCNV] + [entry point: wglEnumGpuDevicesNV]
example: [] syntax: - content: public static bool EnumGpusFromAffinityDCNV(nint hAffinityDC, uint iGpuIndex, Span hGpu) + content: public static bool EnumGpuDevicesNV(nint hGpu, uint iDeviceIndex, _GPU_DEVICE[] lpGpuDevice) parameters: - - id: hAffinityDC + - id: hGpu type: System.IntPtr - - id: iGpuIndex + - id: iDeviceIndex type: System.UInt32 - - id: hGpu - type: System.Span{System.IntPtr} + - id: lpGpuDevice + type: OpenTK.Graphics.Wgl._GPU_DEVICE[] return: type: System.Boolean - content.vb: Public Shared Function EnumGpusFromAffinityDCNV(hAffinityDC As IntPtr, iGpuIndex As UInteger, hGpu As Span(Of IntPtr)) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.NV.EnumGpusFromAffinityDCNV* - nameWithType.vb: Wgl.NV.EnumGpusFromAffinityDCNV(IntPtr, UInteger, Span(Of IntPtr)) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.EnumGpusFromAffinityDCNV(System.IntPtr, UInteger, System.Span(Of System.IntPtr)) - name.vb: EnumGpusFromAffinityDCNV(IntPtr, UInteger, Span(Of IntPtr)) -- uid: OpenTK.Graphics.Wgl.Wgl.NV.EnumGpusFromAffinityDCNV(System.IntPtr,System.UInt32,System.IntPtr[]) - commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.EnumGpusFromAffinityDCNV(System.IntPtr,System.UInt32,System.IntPtr[]) - id: EnumGpusFromAffinityDCNV(System.IntPtr,System.UInt32,System.IntPtr[]) + content.vb: Public Shared Function EnumGpuDevicesNV(hGpu As IntPtr, iDeviceIndex As UInteger, lpGpuDevice As _GPU_DEVICE()) As Boolean + overload: OpenTK.Graphics.Wgl.Wgl.NV.EnumGpuDevicesNV* + nameWithType.vb: Wgl.NV.EnumGpuDevicesNV(IntPtr, UInteger, _GPU_DEVICE()) + fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.EnumGpuDevicesNV(System.IntPtr, UInteger, OpenTK.Graphics.Wgl._GPU_DEVICE()) + name.vb: EnumGpuDevicesNV(IntPtr, UInteger, _GPU_DEVICE()) +- uid: OpenTK.Graphics.Wgl.Wgl.NV.EnumGpuDevicesNV(System.IntPtr,System.UInt32,OpenTK.Graphics.Wgl._GPU_DEVICE@) + commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.EnumGpuDevicesNV(System.IntPtr,System.UInt32,OpenTK.Graphics.Wgl._GPU_DEVICE@) + id: EnumGpuDevicesNV(System.IntPtr,System.UInt32,OpenTK.Graphics.Wgl._GPU_DEVICE@) parent: OpenTK.Graphics.Wgl.Wgl.NV langs: - csharp - vb - name: EnumGpusFromAffinityDCNV(nint, uint, nint[]) - nameWithType: Wgl.NV.EnumGpusFromAffinityDCNV(nint, uint, nint[]) - fullName: OpenTK.Graphics.Wgl.Wgl.NV.EnumGpusFromAffinityDCNV(nint, uint, nint[]) + name: EnumGpuDevicesNV(nint, uint, ref _GPU_DEVICE) + nameWithType: Wgl.NV.EnumGpuDevicesNV(nint, uint, ref _GPU_DEVICE) + fullName: OpenTK.Graphics.Wgl.Wgl.NV.EnumGpuDevicesNV(nint, uint, ref OpenTK.Graphics.Wgl._GPU_DEVICE) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: EnumGpusFromAffinityDCNV - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 2210 + id: EnumGpuDevicesNV + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 1784 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl summary: >- [requires: WGL_NV_gpu_affinity] - [entry point: wglEnumGpusFromAffinityDCNV] + [entry point: wglEnumGpuDevicesNV]
example: [] syntax: - content: public static bool EnumGpusFromAffinityDCNV(nint hAffinityDC, uint iGpuIndex, nint[] hGpu) + content: public static bool EnumGpuDevicesNV(nint hGpu, uint iDeviceIndex, ref _GPU_DEVICE lpGpuDevice) parameters: - - id: hAffinityDC + - id: hGpu type: System.IntPtr - - id: iGpuIndex + - id: iDeviceIndex type: System.UInt32 - - id: hGpu - type: System.IntPtr[] + - id: lpGpuDevice + type: OpenTK.Graphics.Wgl._GPU_DEVICE return: type: System.Boolean - content.vb: Public Shared Function EnumGpusFromAffinityDCNV(hAffinityDC As IntPtr, iGpuIndex As UInteger, hGpu As IntPtr()) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.NV.EnumGpusFromAffinityDCNV* - nameWithType.vb: Wgl.NV.EnumGpusFromAffinityDCNV(IntPtr, UInteger, IntPtr()) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.EnumGpusFromAffinityDCNV(System.IntPtr, UInteger, System.IntPtr()) - name.vb: EnumGpusFromAffinityDCNV(IntPtr, UInteger, IntPtr()) + content.vb: Public Shared Function EnumGpuDevicesNV(hGpu As IntPtr, iDeviceIndex As UInteger, lpGpuDevice As _GPU_DEVICE) As Boolean + overload: OpenTK.Graphics.Wgl.Wgl.NV.EnumGpuDevicesNV* + nameWithType.vb: Wgl.NV.EnumGpuDevicesNV(IntPtr, UInteger, _GPU_DEVICE) + fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.EnumGpuDevicesNV(System.IntPtr, UInteger, OpenTK.Graphics.Wgl._GPU_DEVICE) + name.vb: EnumGpuDevicesNV(IntPtr, UInteger, _GPU_DEVICE) - uid: OpenTK.Graphics.Wgl.Wgl.NV.EnumGpusFromAffinityDCNV(System.IntPtr,System.UInt32,System.IntPtr@) commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.EnumGpusFromAffinityDCNV(System.IntPtr,System.UInt32,System.IntPtr@) id: EnumGpusFromAffinityDCNV(System.IntPtr,System.UInt32,System.IntPtr@) @@ -3094,18 +3049,14 @@ items: langs: - csharp - vb - name: EnumGpusFromAffinityDCNV(nint, uint, ref nint) - nameWithType: Wgl.NV.EnumGpusFromAffinityDCNV(nint, uint, ref nint) - fullName: OpenTK.Graphics.Wgl.Wgl.NV.EnumGpusFromAffinityDCNV(nint, uint, ref nint) + name: EnumGpusFromAffinityDCNV(nint, uint, out nint) + nameWithType: Wgl.NV.EnumGpusFromAffinityDCNV(nint, uint, out nint) + fullName: OpenTK.Graphics.Wgl.Wgl.NV.EnumGpusFromAffinityDCNV(nint, uint, out nint) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: EnumGpusFromAffinityDCNV - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 2222 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 1796 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -3117,7 +3068,7 @@ items:
example: [] syntax: - content: public static bool EnumGpusFromAffinityDCNV(nint hAffinityDC, uint iGpuIndex, ref nint hGpu) + content: public static bool EnumGpusFromAffinityDCNV(nint hAffinityDC, uint iGpuIndex, out nint hGpu) parameters: - id: hAffinityDC type: System.IntPtr @@ -3132,25 +3083,21 @@ items: nameWithType.vb: Wgl.NV.EnumGpusFromAffinityDCNV(IntPtr, UInteger, IntPtr) fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.EnumGpusFromAffinityDCNV(System.IntPtr, UInteger, System.IntPtr) name.vb: EnumGpusFromAffinityDCNV(IntPtr, UInteger, IntPtr) -- uid: OpenTK.Graphics.Wgl.Wgl.NV.EnumGpusNV(System.UInt32,System.Span{System.IntPtr}) - commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.EnumGpusNV(System.UInt32,System.Span{System.IntPtr}) - id: EnumGpusNV(System.UInt32,System.Span{System.IntPtr}) +- uid: OpenTK.Graphics.Wgl.Wgl.NV.EnumGpusNV(System.UInt32,System.IntPtr@) + commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.EnumGpusNV(System.UInt32,System.IntPtr@) + id: EnumGpusNV(System.UInt32,System.IntPtr@) parent: OpenTK.Graphics.Wgl.Wgl.NV langs: - csharp - vb - name: EnumGpusNV(uint, Span) - nameWithType: Wgl.NV.EnumGpusNV(uint, Span) - fullName: OpenTK.Graphics.Wgl.Wgl.NV.EnumGpusNV(uint, System.Span) + name: EnumGpusNV(uint, out nint) + nameWithType: Wgl.NV.EnumGpusNV(uint, out nint) + fullName: OpenTK.Graphics.Wgl.Wgl.NV.EnumGpusNV(uint, out nint) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: EnumGpusNV - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 2234 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 1808 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -3162,124 +3109,106 @@ items:
example: [] syntax: - content: public static bool EnumGpusNV(uint iGpuIndex, Span phGpu) + content: public static bool EnumGpusNV(uint iGpuIndex, out nint phGpu) parameters: - id: iGpuIndex type: System.UInt32 - id: phGpu - type: System.Span{System.IntPtr} + type: System.IntPtr return: type: System.Boolean - content.vb: Public Shared Function EnumGpusNV(iGpuIndex As UInteger, phGpu As Span(Of IntPtr)) As Boolean + content.vb: Public Shared Function EnumGpusNV(iGpuIndex As UInteger, phGpu As IntPtr) As Boolean overload: OpenTK.Graphics.Wgl.Wgl.NV.EnumGpusNV* - nameWithType.vb: Wgl.NV.EnumGpusNV(UInteger, Span(Of IntPtr)) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.EnumGpusNV(UInteger, System.Span(Of System.IntPtr)) - name.vb: EnumGpusNV(UInteger, Span(Of IntPtr)) -- uid: OpenTK.Graphics.Wgl.Wgl.NV.EnumGpusNV(System.UInt32,System.IntPtr[]) - commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.EnumGpusNV(System.UInt32,System.IntPtr[]) - id: EnumGpusNV(System.UInt32,System.IntPtr[]) + nameWithType.vb: Wgl.NV.EnumGpusNV(UInteger, IntPtr) + fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.EnumGpusNV(UInteger, System.IntPtr) + name.vb: EnumGpusNV(UInteger, IntPtr) +- uid: OpenTK.Graphics.Wgl.Wgl.NV.FreeMemoryNV(System.IntPtr) + commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.FreeMemoryNV(System.IntPtr) + id: FreeMemoryNV(System.IntPtr) parent: OpenTK.Graphics.Wgl.Wgl.NV langs: - csharp - vb - name: EnumGpusNV(uint, nint[]) - nameWithType: Wgl.NV.EnumGpusNV(uint, nint[]) - fullName: OpenTK.Graphics.Wgl.Wgl.NV.EnumGpusNV(uint, nint[]) + name: FreeMemoryNV(nint) + nameWithType: Wgl.NV.FreeMemoryNV(nint) + fullName: OpenTK.Graphics.Wgl.Wgl.NV.FreeMemoryNV(nint) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: EnumGpusNV - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 2246 + id: FreeMemoryNV + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 1820 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl summary: >- - [requires: WGL_NV_gpu_affinity] + [requires: WGL_NV_vertex_array_range] - [entry point: wglEnumGpusNV] + [entry point: wglFreeMemoryNV]
example: [] syntax: - content: public static bool EnumGpusNV(uint iGpuIndex, nint[] phGpu) + content: public static void FreeMemoryNV(nint pointer) parameters: - - id: iGpuIndex - type: System.UInt32 - - id: phGpu - type: System.IntPtr[] - return: - type: System.Boolean - content.vb: Public Shared Function EnumGpusNV(iGpuIndex As UInteger, phGpu As IntPtr()) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.NV.EnumGpusNV* - nameWithType.vb: Wgl.NV.EnumGpusNV(UInteger, IntPtr()) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.EnumGpusNV(UInteger, System.IntPtr()) - name.vb: EnumGpusNV(UInteger, IntPtr()) -- uid: OpenTK.Graphics.Wgl.Wgl.NV.EnumGpusNV(System.UInt32,System.IntPtr@) - commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.EnumGpusNV(System.UInt32,System.IntPtr@) - id: EnumGpusNV(System.UInt32,System.IntPtr@) - parent: OpenTK.Graphics.Wgl.Wgl.NV - langs: - - csharp - - vb - name: EnumGpusNV(uint, ref nint) - nameWithType: Wgl.NV.EnumGpusNV(uint, ref nint) - fullName: OpenTK.Graphics.Wgl.Wgl.NV.EnumGpusNV(uint, ref nint) + - id: pointer + type: System.IntPtr + content.vb: Public Shared Sub FreeMemoryNV(pointer As IntPtr) + overload: OpenTK.Graphics.Wgl.Wgl.NV.FreeMemoryNV* + nameWithType.vb: Wgl.NV.FreeMemoryNV(IntPtr) + fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.FreeMemoryNV(System.IntPtr) + name.vb: FreeMemoryNV(IntPtr) +- uid: OpenTK.Graphics.Wgl.Wgl.NV.FreeMemoryNV``1(System.Span{``0}) + commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.FreeMemoryNV``1(System.Span{``0}) + id: FreeMemoryNV``1(System.Span{``0}) + parent: OpenTK.Graphics.Wgl.Wgl.NV + langs: + - csharp + - vb + name: FreeMemoryNV(Span) + nameWithType: Wgl.NV.FreeMemoryNV(Span) + fullName: OpenTK.Graphics.Wgl.Wgl.NV.FreeMemoryNV(System.Span) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: EnumGpusNV - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 2258 + id: FreeMemoryNV + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 1826 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl summary: >- - [requires: WGL_NV_gpu_affinity] + [requires: WGL_NV_vertex_array_range] - [entry point: wglEnumGpusNV] + [entry point: wglFreeMemoryNV]
example: [] syntax: - content: public static bool EnumGpusNV(uint iGpuIndex, ref nint phGpu) + content: 'public static void FreeMemoryNV(Span pointer) where T1 : unmanaged' parameters: - - id: iGpuIndex - type: System.UInt32 - - id: phGpu - type: System.IntPtr - return: - type: System.Boolean - content.vb: Public Shared Function EnumGpusNV(iGpuIndex As UInteger, phGpu As IntPtr) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.NV.EnumGpusNV* - nameWithType.vb: Wgl.NV.EnumGpusNV(UInteger, IntPtr) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.EnumGpusNV(UInteger, System.IntPtr) - name.vb: EnumGpusNV(UInteger, IntPtr) -- uid: OpenTK.Graphics.Wgl.Wgl.NV.FreeMemoryNV(System.IntPtr) - commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.FreeMemoryNV(System.IntPtr) - id: FreeMemoryNV(System.IntPtr) + - id: pointer + type: System.Span{{T1}} + typeParameters: + - id: T1 + content.vb: Public Shared Sub FreeMemoryNV(Of T1 As Structure)(pointer As Span(Of T1)) + overload: OpenTK.Graphics.Wgl.Wgl.NV.FreeMemoryNV* + nameWithType.vb: Wgl.NV.FreeMemoryNV(Of T1)(Span(Of T1)) + fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.FreeMemoryNV(Of T1)(System.Span(Of T1)) + name.vb: FreeMemoryNV(Of T1)(Span(Of T1)) +- uid: OpenTK.Graphics.Wgl.Wgl.NV.FreeMemoryNV``1(``0[]) + commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.FreeMemoryNV``1(``0[]) + id: FreeMemoryNV``1(``0[]) parent: OpenTK.Graphics.Wgl.Wgl.NV langs: - csharp - vb - name: FreeMemoryNV(nint) - nameWithType: Wgl.NV.FreeMemoryNV(nint) - fullName: OpenTK.Graphics.Wgl.Wgl.NV.FreeMemoryNV(nint) + name: FreeMemoryNV(T1[]) + nameWithType: Wgl.NV.FreeMemoryNV(T1[]) + fullName: OpenTK.Graphics.Wgl.Wgl.NV.FreeMemoryNV(T1[]) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: FreeMemoryNV - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 2270 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 1835 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -3291,15 +3220,17 @@ items:
example: [] syntax: - content: public static void FreeMemoryNV(nint pointer) + content: 'public static void FreeMemoryNV(T1[] pointer) where T1 : unmanaged' parameters: - id: pointer - type: System.IntPtr - content.vb: Public Shared Sub FreeMemoryNV(pointer As IntPtr) + type: '{T1}[]' + typeParameters: + - id: T1 + content.vb: Public Shared Sub FreeMemoryNV(Of T1 As Structure)(pointer As T1()) overload: OpenTK.Graphics.Wgl.Wgl.NV.FreeMemoryNV* - nameWithType.vb: Wgl.NV.FreeMemoryNV(IntPtr) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.FreeMemoryNV(System.IntPtr) - name.vb: FreeMemoryNV(IntPtr) + nameWithType.vb: Wgl.NV.FreeMemoryNV(Of T1)(T1()) + fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.FreeMemoryNV(Of T1)(T1()) + name.vb: FreeMemoryNV(Of T1)(T1()) - uid: OpenTK.Graphics.Wgl.Wgl.NV.FreeMemoryNV``1(``0@) commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.FreeMemoryNV``1(``0@) id: FreeMemoryNV``1(``0@) @@ -3312,13 +3243,9 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.NV.FreeMemoryNV(ref T1) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: FreeMemoryNV - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 2276 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 1844 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -3341,25 +3268,21 @@ items: nameWithType.vb: Wgl.NV.FreeMemoryNV(Of T1)(T1) fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.FreeMemoryNV(Of T1)(T1) name.vb: FreeMemoryNV(Of T1)(T1) -- uid: OpenTK.Graphics.Wgl.Wgl.NV.GetVideoDeviceNV(System.IntPtr,System.Span{System.IntPtr}) - commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.GetVideoDeviceNV(System.IntPtr,System.Span{System.IntPtr}) - id: GetVideoDeviceNV(System.IntPtr,System.Span{System.IntPtr}) +- uid: OpenTK.Graphics.Wgl.Wgl.NV.GetVideoDeviceNV(System.IntPtr,System.Int32,System.Span{System.IntPtr}) + commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.GetVideoDeviceNV(System.IntPtr,System.Int32,System.Span{System.IntPtr}) + id: GetVideoDeviceNV(System.IntPtr,System.Int32,System.Span{System.IntPtr}) parent: OpenTK.Graphics.Wgl.Wgl.NV langs: - csharp - vb - name: GetVideoDeviceNV(nint, Span) - nameWithType: Wgl.NV.GetVideoDeviceNV(nint, Span) - fullName: OpenTK.Graphics.Wgl.Wgl.NV.GetVideoDeviceNV(nint, System.Span) + name: GetVideoDeviceNV(nint, int, Span) + nameWithType: Wgl.NV.GetVideoDeviceNV(nint, int, Span) + fullName: OpenTK.Graphics.Wgl.Wgl.NV.GetVideoDeviceNV(nint, int, System.Span) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetVideoDeviceNV - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 2285 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 1853 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -3371,38 +3294,36 @@ items:
example: [] syntax: - content: public static bool GetVideoDeviceNV(nint hDC, Span hVideoDevice) + content: public static bool GetVideoDeviceNV(nint hDC, int numDevices, Span hVideoDevice) parameters: - id: hDC type: System.IntPtr + - id: numDevices + type: System.Int32 - id: hVideoDevice type: System.Span{System.IntPtr} return: type: System.Boolean - content.vb: Public Shared Function GetVideoDeviceNV(hDC As IntPtr, hVideoDevice As Span(Of IntPtr)) As Boolean + content.vb: Public Shared Function GetVideoDeviceNV(hDC As IntPtr, numDevices As Integer, hVideoDevice As Span(Of IntPtr)) As Boolean overload: OpenTK.Graphics.Wgl.Wgl.NV.GetVideoDeviceNV* - nameWithType.vb: Wgl.NV.GetVideoDeviceNV(IntPtr, Span(Of IntPtr)) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.GetVideoDeviceNV(System.IntPtr, System.Span(Of System.IntPtr)) - name.vb: GetVideoDeviceNV(IntPtr, Span(Of IntPtr)) -- uid: OpenTK.Graphics.Wgl.Wgl.NV.GetVideoDeviceNV(System.IntPtr,System.IntPtr[]) - commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.GetVideoDeviceNV(System.IntPtr,System.IntPtr[]) - id: GetVideoDeviceNV(System.IntPtr,System.IntPtr[]) + nameWithType.vb: Wgl.NV.GetVideoDeviceNV(IntPtr, Integer, Span(Of IntPtr)) + fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.GetVideoDeviceNV(System.IntPtr, Integer, System.Span(Of System.IntPtr)) + name.vb: GetVideoDeviceNV(IntPtr, Integer, Span(Of IntPtr)) +- uid: OpenTK.Graphics.Wgl.Wgl.NV.GetVideoDeviceNV(System.IntPtr,System.Int32,System.IntPtr[]) + commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.GetVideoDeviceNV(System.IntPtr,System.Int32,System.IntPtr[]) + id: GetVideoDeviceNV(System.IntPtr,System.Int32,System.IntPtr[]) parent: OpenTK.Graphics.Wgl.Wgl.NV langs: - csharp - vb - name: GetVideoDeviceNV(nint, nint[]) - nameWithType: Wgl.NV.GetVideoDeviceNV(nint, nint[]) - fullName: OpenTK.Graphics.Wgl.Wgl.NV.GetVideoDeviceNV(nint, nint[]) + name: GetVideoDeviceNV(nint, int, nint[]) + nameWithType: Wgl.NV.GetVideoDeviceNV(nint, int, nint[]) + fullName: OpenTK.Graphics.Wgl.Wgl.NV.GetVideoDeviceNV(nint, int, nint[]) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetVideoDeviceNV - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 2298 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 1865 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -3414,19 +3335,21 @@ items:
example: [] syntax: - content: public static bool GetVideoDeviceNV(nint hDC, nint[] hVideoDevice) + content: public static bool GetVideoDeviceNV(nint hDC, int numDevices, nint[] hVideoDevice) parameters: - id: hDC type: System.IntPtr + - id: numDevices + type: System.Int32 - id: hVideoDevice type: System.IntPtr[] return: type: System.Boolean - content.vb: Public Shared Function GetVideoDeviceNV(hDC As IntPtr, hVideoDevice As IntPtr()) As Boolean + content.vb: Public Shared Function GetVideoDeviceNV(hDC As IntPtr, numDevices As Integer, hVideoDevice As IntPtr()) As Boolean overload: OpenTK.Graphics.Wgl.Wgl.NV.GetVideoDeviceNV* - nameWithType.vb: Wgl.NV.GetVideoDeviceNV(IntPtr, IntPtr()) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.GetVideoDeviceNV(System.IntPtr, System.IntPtr()) - name.vb: GetVideoDeviceNV(IntPtr, IntPtr()) + nameWithType.vb: Wgl.NV.GetVideoDeviceNV(IntPtr, Integer, IntPtr()) + fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.GetVideoDeviceNV(System.IntPtr, Integer, System.IntPtr()) + name.vb: GetVideoDeviceNV(IntPtr, Integer, IntPtr()) - uid: OpenTK.Graphics.Wgl.Wgl.NV.GetVideoDeviceNV(System.IntPtr,System.Int32,System.IntPtr@) commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.GetVideoDeviceNV(System.IntPtr,System.Int32,System.IntPtr@) id: GetVideoDeviceNV(System.IntPtr,System.Int32,System.IntPtr@) @@ -3439,13 +3362,9 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.NV.GetVideoDeviceNV(nint, int, ref nint) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetVideoDeviceNV - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 2311 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 1877 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -3472,96 +3391,6 @@ items: nameWithType.vb: Wgl.NV.GetVideoDeviceNV(IntPtr, Integer, IntPtr) fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.GetVideoDeviceNV(System.IntPtr, Integer, System.IntPtr) name.vb: GetVideoDeviceNV(IntPtr, Integer, IntPtr) -- uid: OpenTK.Graphics.Wgl.Wgl.NV.GetVideoInfoNV(System.IntPtr,System.Span{System.UInt64},System.Span{System.UInt64}) - commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.GetVideoInfoNV(System.IntPtr,System.Span{System.UInt64},System.Span{System.UInt64}) - id: GetVideoInfoNV(System.IntPtr,System.Span{System.UInt64},System.Span{System.UInt64}) - parent: OpenTK.Graphics.Wgl.Wgl.NV - langs: - - csharp - - vb - name: GetVideoInfoNV(nint, Span, Span) - nameWithType: Wgl.NV.GetVideoInfoNV(nint, Span, Span) - fullName: OpenTK.Graphics.Wgl.Wgl.NV.GetVideoInfoNV(nint, System.Span, System.Span) - type: Method - source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: GetVideoInfoNV - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 2323 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_NV_video_output] - - [entry point: wglGetVideoInfoNV] - -
- example: [] - syntax: - content: public static bool GetVideoInfoNV(nint hpVideoDevice, Span pulCounterOutputPbuffer, Span pulCounterOutputVideo) - parameters: - - id: hpVideoDevice - type: System.IntPtr - - id: pulCounterOutputPbuffer - type: System.Span{System.UInt64} - - id: pulCounterOutputVideo - type: System.Span{System.UInt64} - return: - type: System.Boolean - content.vb: Public Shared Function GetVideoInfoNV(hpVideoDevice As IntPtr, pulCounterOutputPbuffer As Span(Of ULong), pulCounterOutputVideo As Span(Of ULong)) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.NV.GetVideoInfoNV* - nameWithType.vb: Wgl.NV.GetVideoInfoNV(IntPtr, Span(Of ULong), Span(Of ULong)) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.GetVideoInfoNV(System.IntPtr, System.Span(Of ULong), System.Span(Of ULong)) - name.vb: GetVideoInfoNV(IntPtr, Span(Of ULong), Span(Of ULong)) -- uid: OpenTK.Graphics.Wgl.Wgl.NV.GetVideoInfoNV(System.IntPtr,System.UInt64[],System.UInt64[]) - commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.GetVideoInfoNV(System.IntPtr,System.UInt64[],System.UInt64[]) - id: GetVideoInfoNV(System.IntPtr,System.UInt64[],System.UInt64[]) - parent: OpenTK.Graphics.Wgl.Wgl.NV - langs: - - csharp - - vb - name: GetVideoInfoNV(nint, ulong[], ulong[]) - nameWithType: Wgl.NV.GetVideoInfoNV(nint, ulong[], ulong[]) - fullName: OpenTK.Graphics.Wgl.Wgl.NV.GetVideoInfoNV(nint, ulong[], ulong[]) - type: Method - source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: GetVideoInfoNV - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 2338 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_NV_video_output] - - [entry point: wglGetVideoInfoNV] - -
- example: [] - syntax: - content: public static bool GetVideoInfoNV(nint hpVideoDevice, ulong[] pulCounterOutputPbuffer, ulong[] pulCounterOutputVideo) - parameters: - - id: hpVideoDevice - type: System.IntPtr - - id: pulCounterOutputPbuffer - type: System.UInt64[] - - id: pulCounterOutputVideo - type: System.UInt64[] - return: - type: System.Boolean - content.vb: Public Shared Function GetVideoInfoNV(hpVideoDevice As IntPtr, pulCounterOutputPbuffer As ULong(), pulCounterOutputVideo As ULong()) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.NV.GetVideoInfoNV* - nameWithType.vb: Wgl.NV.GetVideoInfoNV(IntPtr, ULong(), ULong()) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.GetVideoInfoNV(System.IntPtr, ULong(), ULong()) - name.vb: GetVideoInfoNV(IntPtr, ULong(), ULong()) - uid: OpenTK.Graphics.Wgl.Wgl.NV.GetVideoInfoNV(System.IntPtr,System.UInt64@,System.UInt64@) commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.GetVideoInfoNV(System.IntPtr,System.UInt64@,System.UInt64@) id: GetVideoInfoNV(System.IntPtr,System.UInt64@,System.UInt64@) @@ -3569,18 +3398,14 @@ items: langs: - csharp - vb - name: GetVideoInfoNV(nint, ref ulong, ref ulong) - nameWithType: Wgl.NV.GetVideoInfoNV(nint, ref ulong, ref ulong) - fullName: OpenTK.Graphics.Wgl.Wgl.NV.GetVideoInfoNV(nint, ref ulong, ref ulong) + name: GetVideoInfoNV(nint, out ulong, out ulong) + nameWithType: Wgl.NV.GetVideoInfoNV(nint, out ulong, out ulong) + fullName: OpenTK.Graphics.Wgl.Wgl.NV.GetVideoInfoNV(nint, out ulong, out ulong) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetVideoInfoNV - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 2353 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 1889 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -3592,7 +3417,7 @@ items:
example: [] syntax: - content: public static bool GetVideoInfoNV(nint hpVideoDevice, ref ulong pulCounterOutputPbuffer, ref ulong pulCounterOutputVideo) + content: public static bool GetVideoInfoNV(nint hpVideoDevice, out ulong pulCounterOutputPbuffer, out ulong pulCounterOutputVideo) parameters: - id: hpVideoDevice type: System.IntPtr @@ -3619,13 +3444,9 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.NV.JoinSwapGroupNV(nint, uint) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: JoinSwapGroupNV - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 2366 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 1902 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -3656,13 +3477,9 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.NV.LockVideoCaptureDeviceNV(nint, nint) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: LockVideoCaptureDeviceNV - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 2375 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 1911 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -3681,92 +3498,6 @@ items: nameWithType.vb: Wgl.NV.LockVideoCaptureDeviceNV(IntPtr, IntPtr) fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.LockVideoCaptureDeviceNV(System.IntPtr, System.IntPtr) name.vb: LockVideoCaptureDeviceNV(IntPtr, IntPtr) -- uid: OpenTK.Graphics.Wgl.Wgl.NV.QueryCurrentContextNV(OpenTK.Graphics.Wgl.ContextAttribute,System.Span{System.Int32}) - commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.QueryCurrentContextNV(OpenTK.Graphics.Wgl.ContextAttribute,System.Span{System.Int32}) - id: QueryCurrentContextNV(OpenTK.Graphics.Wgl.ContextAttribute,System.Span{System.Int32}) - parent: OpenTK.Graphics.Wgl.Wgl.NV - langs: - - csharp - - vb - name: QueryCurrentContextNV(ContextAttribute, Span) - nameWithType: Wgl.NV.QueryCurrentContextNV(ContextAttribute, Span) - fullName: OpenTK.Graphics.Wgl.Wgl.NV.QueryCurrentContextNV(OpenTK.Graphics.Wgl.ContextAttribute, System.Span) - type: Method - source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: QueryCurrentContextNV - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 2384 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_NV_present_video] - - [entry point: wglQueryCurrentContextNV] - -
- example: [] - syntax: - content: public static bool QueryCurrentContextNV(ContextAttribute iAttribute, Span piValue) - parameters: - - id: iAttribute - type: OpenTK.Graphics.Wgl.ContextAttribute - - id: piValue - type: System.Span{System.Int32} - return: - type: System.Boolean - content.vb: Public Shared Function QueryCurrentContextNV(iAttribute As ContextAttribute, piValue As Span(Of Integer)) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.NV.QueryCurrentContextNV* - nameWithType.vb: Wgl.NV.QueryCurrentContextNV(ContextAttribute, Span(Of Integer)) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.QueryCurrentContextNV(OpenTK.Graphics.Wgl.ContextAttribute, System.Span(Of Integer)) - name.vb: QueryCurrentContextNV(ContextAttribute, Span(Of Integer)) -- uid: OpenTK.Graphics.Wgl.Wgl.NV.QueryCurrentContextNV(OpenTK.Graphics.Wgl.ContextAttribute,System.Int32[]) - commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.QueryCurrentContextNV(OpenTK.Graphics.Wgl.ContextAttribute,System.Int32[]) - id: QueryCurrentContextNV(OpenTK.Graphics.Wgl.ContextAttribute,System.Int32[]) - parent: OpenTK.Graphics.Wgl.Wgl.NV - langs: - - csharp - - vb - name: QueryCurrentContextNV(ContextAttribute, int[]) - nameWithType: Wgl.NV.QueryCurrentContextNV(ContextAttribute, int[]) - fullName: OpenTK.Graphics.Wgl.Wgl.NV.QueryCurrentContextNV(OpenTK.Graphics.Wgl.ContextAttribute, int[]) - type: Method - source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: QueryCurrentContextNV - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 2396 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_NV_present_video] - - [entry point: wglQueryCurrentContextNV] - -
- example: [] - syntax: - content: public static bool QueryCurrentContextNV(ContextAttribute iAttribute, int[] piValue) - parameters: - - id: iAttribute - type: OpenTK.Graphics.Wgl.ContextAttribute - - id: piValue - type: System.Int32[] - return: - type: System.Boolean - content.vb: Public Shared Function QueryCurrentContextNV(iAttribute As ContextAttribute, piValue As Integer()) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.NV.QueryCurrentContextNV* - nameWithType.vb: Wgl.NV.QueryCurrentContextNV(ContextAttribute, Integer()) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.QueryCurrentContextNV(OpenTK.Graphics.Wgl.ContextAttribute, Integer()) - name.vb: QueryCurrentContextNV(ContextAttribute, Integer()) - uid: OpenTK.Graphics.Wgl.Wgl.NV.QueryCurrentContextNV(OpenTK.Graphics.Wgl.ContextAttribute,System.Int32@) commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.QueryCurrentContextNV(OpenTK.Graphics.Wgl.ContextAttribute,System.Int32@) id: QueryCurrentContextNV(OpenTK.Graphics.Wgl.ContextAttribute,System.Int32@) @@ -3774,18 +3505,14 @@ items: langs: - csharp - vb - name: QueryCurrentContextNV(ContextAttribute, ref int) - nameWithType: Wgl.NV.QueryCurrentContextNV(ContextAttribute, ref int) - fullName: OpenTK.Graphics.Wgl.Wgl.NV.QueryCurrentContextNV(OpenTK.Graphics.Wgl.ContextAttribute, ref int) + name: QueryCurrentContextNV(ContextAttribute, out int) + nameWithType: Wgl.NV.QueryCurrentContextNV(ContextAttribute, out int) + fullName: OpenTK.Graphics.Wgl.Wgl.NV.QueryCurrentContextNV(OpenTK.Graphics.Wgl.ContextAttribute, out int) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: QueryCurrentContextNV - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 2408 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 1920 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -3797,7 +3524,7 @@ items:
example: [] syntax: - content: public static bool QueryCurrentContextNV(ContextAttribute iAttribute, ref int piValue) + content: public static bool QueryCurrentContextNV(ContextAttribute iAttribute, out int piValue) parameters: - id: iAttribute type: OpenTK.Graphics.Wgl.ContextAttribute @@ -3810,25 +3537,21 @@ items: nameWithType.vb: Wgl.NV.QueryCurrentContextNV(ContextAttribute, Integer) fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.QueryCurrentContextNV(OpenTK.Graphics.Wgl.ContextAttribute, Integer) name.vb: QueryCurrentContextNV(ContextAttribute, Integer) -- uid: OpenTK.Graphics.Wgl.Wgl.NV.QueryFrameCountNV(System.IntPtr,System.Span{System.UInt32}) - commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.QueryFrameCountNV(System.IntPtr,System.Span{System.UInt32}) - id: QueryFrameCountNV(System.IntPtr,System.Span{System.UInt32}) +- uid: OpenTK.Graphics.Wgl.Wgl.NV.QueryFrameCountNV(System.IntPtr,System.UInt32@) + commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.QueryFrameCountNV(System.IntPtr,System.UInt32@) + id: QueryFrameCountNV(System.IntPtr,System.UInt32@) parent: OpenTK.Graphics.Wgl.Wgl.NV langs: - csharp - vb - name: QueryFrameCountNV(nint, Span) - nameWithType: Wgl.NV.QueryFrameCountNV(nint, Span) - fullName: OpenTK.Graphics.Wgl.Wgl.NV.QueryFrameCountNV(nint, System.Span) + name: QueryFrameCountNV(nint, out uint) + nameWithType: Wgl.NV.QueryFrameCountNV(nint, out uint) + fullName: OpenTK.Graphics.Wgl.Wgl.NV.QueryFrameCountNV(nint, out uint) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: QueryFrameCountNV - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 2420 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 1932 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -3840,545 +3563,169 @@ items:
example: [] syntax: - content: public static bool QueryFrameCountNV(nint hDC, Span count) + content: public static bool QueryFrameCountNV(nint hDC, out uint count) parameters: - id: hDC type: System.IntPtr - id: count - type: System.Span{System.UInt32} + type: System.UInt32 return: type: System.Boolean - content.vb: Public Shared Function QueryFrameCountNV(hDC As IntPtr, count As Span(Of UInteger)) As Boolean + content.vb: Public Shared Function QueryFrameCountNV(hDC As IntPtr, count As UInteger) As Boolean overload: OpenTK.Graphics.Wgl.Wgl.NV.QueryFrameCountNV* - nameWithType.vb: Wgl.NV.QueryFrameCountNV(IntPtr, Span(Of UInteger)) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.QueryFrameCountNV(System.IntPtr, System.Span(Of UInteger)) - name.vb: QueryFrameCountNV(IntPtr, Span(Of UInteger)) -- uid: OpenTK.Graphics.Wgl.Wgl.NV.QueryFrameCountNV(System.IntPtr,System.UInt32[]) - commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.QueryFrameCountNV(System.IntPtr,System.UInt32[]) - id: QueryFrameCountNV(System.IntPtr,System.UInt32[]) + nameWithType.vb: Wgl.NV.QueryFrameCountNV(IntPtr, UInteger) + fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.QueryFrameCountNV(System.IntPtr, UInteger) + name.vb: QueryFrameCountNV(IntPtr, UInteger) +- uid: OpenTK.Graphics.Wgl.Wgl.NV.QueryMaxSwapGroupsNV(System.IntPtr,System.UInt32@,System.UInt32@) + commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.QueryMaxSwapGroupsNV(System.IntPtr,System.UInt32@,System.UInt32@) + id: QueryMaxSwapGroupsNV(System.IntPtr,System.UInt32@,System.UInt32@) parent: OpenTK.Graphics.Wgl.Wgl.NV langs: - csharp - vb - name: QueryFrameCountNV(nint, uint[]) - nameWithType: Wgl.NV.QueryFrameCountNV(nint, uint[]) - fullName: OpenTK.Graphics.Wgl.Wgl.NV.QueryFrameCountNV(nint, uint[]) + name: QueryMaxSwapGroupsNV(nint, out uint, out uint) + nameWithType: Wgl.NV.QueryMaxSwapGroupsNV(nint, out uint, out uint) + fullName: OpenTK.Graphics.Wgl.Wgl.NV.QueryMaxSwapGroupsNV(nint, out uint, out uint) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: QueryFrameCountNV - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 2432 + id: QueryMaxSwapGroupsNV + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 1944 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl summary: >- [requires: WGL_NV_swap_group] - [entry point: wglQueryFrameCountNV] + [entry point: wglQueryMaxSwapGroupsNV]
example: [] syntax: - content: public static bool QueryFrameCountNV(nint hDC, uint[] count) + content: public static bool QueryMaxSwapGroupsNV(nint hDC, out uint maxGroups, out uint maxBarriers) parameters: - id: hDC type: System.IntPtr - - id: count - type: System.UInt32[] + - id: maxGroups + type: System.UInt32 + - id: maxBarriers + type: System.UInt32 return: type: System.Boolean - content.vb: Public Shared Function QueryFrameCountNV(hDC As IntPtr, count As UInteger()) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.NV.QueryFrameCountNV* - nameWithType.vb: Wgl.NV.QueryFrameCountNV(IntPtr, UInteger()) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.QueryFrameCountNV(System.IntPtr, UInteger()) - name.vb: QueryFrameCountNV(IntPtr, UInteger()) -- uid: OpenTK.Graphics.Wgl.Wgl.NV.QueryFrameCountNV(System.IntPtr,System.UInt32@) - commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.QueryFrameCountNV(System.IntPtr,System.UInt32@) - id: QueryFrameCountNV(System.IntPtr,System.UInt32@) + content.vb: Public Shared Function QueryMaxSwapGroupsNV(hDC As IntPtr, maxGroups As UInteger, maxBarriers As UInteger) As Boolean + overload: OpenTK.Graphics.Wgl.Wgl.NV.QueryMaxSwapGroupsNV* + nameWithType.vb: Wgl.NV.QueryMaxSwapGroupsNV(IntPtr, UInteger, UInteger) + fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.QueryMaxSwapGroupsNV(System.IntPtr, UInteger, UInteger) + name.vb: QueryMaxSwapGroupsNV(IntPtr, UInteger, UInteger) +- uid: OpenTK.Graphics.Wgl.Wgl.NV.QuerySwapGroupNV(System.IntPtr,System.UInt32@,System.UInt32@) + commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.QuerySwapGroupNV(System.IntPtr,System.UInt32@,System.UInt32@) + id: QuerySwapGroupNV(System.IntPtr,System.UInt32@,System.UInt32@) parent: OpenTK.Graphics.Wgl.Wgl.NV langs: - csharp - vb - name: QueryFrameCountNV(nint, ref uint) - nameWithType: Wgl.NV.QueryFrameCountNV(nint, ref uint) - fullName: OpenTK.Graphics.Wgl.Wgl.NV.QueryFrameCountNV(nint, ref uint) + name: QuerySwapGroupNV(nint, out uint, out uint) + nameWithType: Wgl.NV.QuerySwapGroupNV(nint, out uint, out uint) + fullName: OpenTK.Graphics.Wgl.Wgl.NV.QuerySwapGroupNV(nint, out uint, out uint) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: QueryFrameCountNV - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 2444 + id: QuerySwapGroupNV + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 1957 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl summary: >- [requires: WGL_NV_swap_group] - [entry point: wglQueryFrameCountNV] + [entry point: wglQuerySwapGroupNV]
example: [] syntax: - content: public static bool QueryFrameCountNV(nint hDC, ref uint count) + content: public static bool QuerySwapGroupNV(nint hDC, out uint group, out uint barrier) parameters: - id: hDC type: System.IntPtr - - id: count + - id: group + type: System.UInt32 + - id: barrier type: System.UInt32 return: type: System.Boolean - content.vb: Public Shared Function QueryFrameCountNV(hDC As IntPtr, count As UInteger) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.NV.QueryFrameCountNV* - nameWithType.vb: Wgl.NV.QueryFrameCountNV(IntPtr, UInteger) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.QueryFrameCountNV(System.IntPtr, UInteger) - name.vb: QueryFrameCountNV(IntPtr, UInteger) -- uid: OpenTK.Graphics.Wgl.Wgl.NV.QueryMaxSwapGroupsNV(System.IntPtr,System.Span{System.UInt32},System.Span{System.UInt32}) - commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.QueryMaxSwapGroupsNV(System.IntPtr,System.Span{System.UInt32},System.Span{System.UInt32}) - id: QueryMaxSwapGroupsNV(System.IntPtr,System.Span{System.UInt32},System.Span{System.UInt32}) + content.vb: Public Shared Function QuerySwapGroupNV(hDC As IntPtr, group As UInteger, barrier As UInteger) As Boolean + overload: OpenTK.Graphics.Wgl.Wgl.NV.QuerySwapGroupNV* + nameWithType.vb: Wgl.NV.QuerySwapGroupNV(IntPtr, UInteger, UInteger) + fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.QuerySwapGroupNV(System.IntPtr, UInteger, UInteger) + name.vb: QuerySwapGroupNV(IntPtr, UInteger, UInteger) +- uid: OpenTK.Graphics.Wgl.Wgl.NV.QueryVideoCaptureDeviceNV(System.IntPtr,System.IntPtr,OpenTK.Graphics.Wgl.VideoCaptureDeviceAttribute,System.Int32@) + commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.QueryVideoCaptureDeviceNV(System.IntPtr,System.IntPtr,OpenTK.Graphics.Wgl.VideoCaptureDeviceAttribute,System.Int32@) + id: QueryVideoCaptureDeviceNV(System.IntPtr,System.IntPtr,OpenTK.Graphics.Wgl.VideoCaptureDeviceAttribute,System.Int32@) parent: OpenTK.Graphics.Wgl.Wgl.NV langs: - csharp - vb - name: QueryMaxSwapGroupsNV(nint, Span, Span) - nameWithType: Wgl.NV.QueryMaxSwapGroupsNV(nint, Span, Span) - fullName: OpenTK.Graphics.Wgl.Wgl.NV.QueryMaxSwapGroupsNV(nint, System.Span, System.Span) + name: QueryVideoCaptureDeviceNV(nint, nint, VideoCaptureDeviceAttribute, out int) + nameWithType: Wgl.NV.QueryVideoCaptureDeviceNV(nint, nint, VideoCaptureDeviceAttribute, out int) + fullName: OpenTK.Graphics.Wgl.Wgl.NV.QueryVideoCaptureDeviceNV(nint, nint, OpenTK.Graphics.Wgl.VideoCaptureDeviceAttribute, out int) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: QueryMaxSwapGroupsNV - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 2456 + id: QueryVideoCaptureDeviceNV + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 1970 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl summary: >- - [requires: WGL_NV_swap_group] + [requires: WGL_NV_video_capture] - [entry point: wglQueryMaxSwapGroupsNV] + [entry point: wglQueryVideoCaptureDeviceNV]
example: [] syntax: - content: public static bool QueryMaxSwapGroupsNV(nint hDC, Span maxGroups, Span maxBarriers) + content: public static bool QueryVideoCaptureDeviceNV(nint hDc, nint hDevice, VideoCaptureDeviceAttribute iAttribute, out int piValue) parameters: - - id: hDC + - id: hDc type: System.IntPtr - - id: maxGroups - type: System.Span{System.UInt32} - - id: maxBarriers - type: System.Span{System.UInt32} + - id: hDevice + type: System.IntPtr + - id: iAttribute + type: OpenTK.Graphics.Wgl.VideoCaptureDeviceAttribute + - id: piValue + type: System.Int32 return: type: System.Boolean - content.vb: Public Shared Function QueryMaxSwapGroupsNV(hDC As IntPtr, maxGroups As Span(Of UInteger), maxBarriers As Span(Of UInteger)) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.NV.QueryMaxSwapGroupsNV* - nameWithType.vb: Wgl.NV.QueryMaxSwapGroupsNV(IntPtr, Span(Of UInteger), Span(Of UInteger)) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.QueryMaxSwapGroupsNV(System.IntPtr, System.Span(Of UInteger), System.Span(Of UInteger)) - name.vb: QueryMaxSwapGroupsNV(IntPtr, Span(Of UInteger), Span(Of UInteger)) -- uid: OpenTK.Graphics.Wgl.Wgl.NV.QueryMaxSwapGroupsNV(System.IntPtr,System.UInt32[],System.UInt32[]) - commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.QueryMaxSwapGroupsNV(System.IntPtr,System.UInt32[],System.UInt32[]) - id: QueryMaxSwapGroupsNV(System.IntPtr,System.UInt32[],System.UInt32[]) + content.vb: Public Shared Function QueryVideoCaptureDeviceNV(hDc As IntPtr, hDevice As IntPtr, iAttribute As VideoCaptureDeviceAttribute, piValue As Integer) As Boolean + overload: OpenTK.Graphics.Wgl.Wgl.NV.QueryVideoCaptureDeviceNV* + nameWithType.vb: Wgl.NV.QueryVideoCaptureDeviceNV(IntPtr, IntPtr, VideoCaptureDeviceAttribute, Integer) + fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.QueryVideoCaptureDeviceNV(System.IntPtr, System.IntPtr, OpenTK.Graphics.Wgl.VideoCaptureDeviceAttribute, Integer) + name.vb: QueryVideoCaptureDeviceNV(IntPtr, IntPtr, VideoCaptureDeviceAttribute, Integer) +- uid: OpenTK.Graphics.Wgl.Wgl.NV.ReleaseVideoCaptureDeviceNV(System.IntPtr,System.IntPtr) + commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.ReleaseVideoCaptureDeviceNV(System.IntPtr,System.IntPtr) + id: ReleaseVideoCaptureDeviceNV(System.IntPtr,System.IntPtr) parent: OpenTK.Graphics.Wgl.Wgl.NV langs: - csharp - vb - name: QueryMaxSwapGroupsNV(nint, uint[], uint[]) - nameWithType: Wgl.NV.QueryMaxSwapGroupsNV(nint, uint[], uint[]) - fullName: OpenTK.Graphics.Wgl.Wgl.NV.QueryMaxSwapGroupsNV(nint, uint[], uint[]) + name: ReleaseVideoCaptureDeviceNV(nint, nint) + nameWithType: Wgl.NV.ReleaseVideoCaptureDeviceNV(nint, nint) + fullName: OpenTK.Graphics.Wgl.Wgl.NV.ReleaseVideoCaptureDeviceNV(nint, nint) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: QueryMaxSwapGroupsNV - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 2471 + id: ReleaseVideoCaptureDeviceNV + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 1982 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_NV_swap_group] - - [entry point: wglQueryMaxSwapGroupsNV] - -
example: [] syntax: - content: public static bool QueryMaxSwapGroupsNV(nint hDC, uint[] maxGroups, uint[] maxBarriers) + content: public static bool ReleaseVideoCaptureDeviceNV(nint hDc, nint hDevice) parameters: - - id: hDC - type: System.IntPtr - - id: maxGroups - type: System.UInt32[] - - id: maxBarriers - type: System.UInt32[] - return: - type: System.Boolean - content.vb: Public Shared Function QueryMaxSwapGroupsNV(hDC As IntPtr, maxGroups As UInteger(), maxBarriers As UInteger()) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.NV.QueryMaxSwapGroupsNV* - nameWithType.vb: Wgl.NV.QueryMaxSwapGroupsNV(IntPtr, UInteger(), UInteger()) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.QueryMaxSwapGroupsNV(System.IntPtr, UInteger(), UInteger()) - name.vb: QueryMaxSwapGroupsNV(IntPtr, UInteger(), UInteger()) -- uid: OpenTK.Graphics.Wgl.Wgl.NV.QueryMaxSwapGroupsNV(System.IntPtr,System.UInt32@,System.UInt32@) - commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.QueryMaxSwapGroupsNV(System.IntPtr,System.UInt32@,System.UInt32@) - id: QueryMaxSwapGroupsNV(System.IntPtr,System.UInt32@,System.UInt32@) - parent: OpenTK.Graphics.Wgl.Wgl.NV - langs: - - csharp - - vb - name: QueryMaxSwapGroupsNV(nint, ref uint, ref uint) - nameWithType: Wgl.NV.QueryMaxSwapGroupsNV(nint, ref uint, ref uint) - fullName: OpenTK.Graphics.Wgl.Wgl.NV.QueryMaxSwapGroupsNV(nint, ref uint, ref uint) - type: Method - source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: QueryMaxSwapGroupsNV - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 2486 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_NV_swap_group] - - [entry point: wglQueryMaxSwapGroupsNV] - -
- example: [] - syntax: - content: public static bool QueryMaxSwapGroupsNV(nint hDC, ref uint maxGroups, ref uint maxBarriers) - parameters: - - id: hDC - type: System.IntPtr - - id: maxGroups - type: System.UInt32 - - id: maxBarriers - type: System.UInt32 - return: - type: System.Boolean - content.vb: Public Shared Function QueryMaxSwapGroupsNV(hDC As IntPtr, maxGroups As UInteger, maxBarriers As UInteger) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.NV.QueryMaxSwapGroupsNV* - nameWithType.vb: Wgl.NV.QueryMaxSwapGroupsNV(IntPtr, UInteger, UInteger) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.QueryMaxSwapGroupsNV(System.IntPtr, UInteger, UInteger) - name.vb: QueryMaxSwapGroupsNV(IntPtr, UInteger, UInteger) -- uid: OpenTK.Graphics.Wgl.Wgl.NV.QuerySwapGroupNV(System.IntPtr,System.Span{System.UInt32},System.Span{System.UInt32}) - commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.QuerySwapGroupNV(System.IntPtr,System.Span{System.UInt32},System.Span{System.UInt32}) - id: QuerySwapGroupNV(System.IntPtr,System.Span{System.UInt32},System.Span{System.UInt32}) - parent: OpenTK.Graphics.Wgl.Wgl.NV - langs: - - csharp - - vb - name: QuerySwapGroupNV(nint, Span, Span) - nameWithType: Wgl.NV.QuerySwapGroupNV(nint, Span, Span) - fullName: OpenTK.Graphics.Wgl.Wgl.NV.QuerySwapGroupNV(nint, System.Span, System.Span) - type: Method - source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: QuerySwapGroupNV - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 2499 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_NV_swap_group] - - [entry point: wglQuerySwapGroupNV] - -
- example: [] - syntax: - content: public static bool QuerySwapGroupNV(nint hDC, Span group, Span barrier) - parameters: - - id: hDC - type: System.IntPtr - - id: group - type: System.Span{System.UInt32} - - id: barrier - type: System.Span{System.UInt32} - return: - type: System.Boolean - content.vb: Public Shared Function QuerySwapGroupNV(hDC As IntPtr, group As Span(Of UInteger), barrier As Span(Of UInteger)) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.NV.QuerySwapGroupNV* - nameWithType.vb: Wgl.NV.QuerySwapGroupNV(IntPtr, Span(Of UInteger), Span(Of UInteger)) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.QuerySwapGroupNV(System.IntPtr, System.Span(Of UInteger), System.Span(Of UInteger)) - name.vb: QuerySwapGroupNV(IntPtr, Span(Of UInteger), Span(Of UInteger)) -- uid: OpenTK.Graphics.Wgl.Wgl.NV.QuerySwapGroupNV(System.IntPtr,System.UInt32[],System.UInt32[]) - commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.QuerySwapGroupNV(System.IntPtr,System.UInt32[],System.UInt32[]) - id: QuerySwapGroupNV(System.IntPtr,System.UInt32[],System.UInt32[]) - parent: OpenTK.Graphics.Wgl.Wgl.NV - langs: - - csharp - - vb - name: QuerySwapGroupNV(nint, uint[], uint[]) - nameWithType: Wgl.NV.QuerySwapGroupNV(nint, uint[], uint[]) - fullName: OpenTK.Graphics.Wgl.Wgl.NV.QuerySwapGroupNV(nint, uint[], uint[]) - type: Method - source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: QuerySwapGroupNV - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 2514 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_NV_swap_group] - - [entry point: wglQuerySwapGroupNV] - -
- example: [] - syntax: - content: public static bool QuerySwapGroupNV(nint hDC, uint[] group, uint[] barrier) - parameters: - - id: hDC - type: System.IntPtr - - id: group - type: System.UInt32[] - - id: barrier - type: System.UInt32[] - return: - type: System.Boolean - content.vb: Public Shared Function QuerySwapGroupNV(hDC As IntPtr, group As UInteger(), barrier As UInteger()) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.NV.QuerySwapGroupNV* - nameWithType.vb: Wgl.NV.QuerySwapGroupNV(IntPtr, UInteger(), UInteger()) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.QuerySwapGroupNV(System.IntPtr, UInteger(), UInteger()) - name.vb: QuerySwapGroupNV(IntPtr, UInteger(), UInteger()) -- uid: OpenTK.Graphics.Wgl.Wgl.NV.QuerySwapGroupNV(System.IntPtr,System.UInt32@,System.UInt32@) - commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.QuerySwapGroupNV(System.IntPtr,System.UInt32@,System.UInt32@) - id: QuerySwapGroupNV(System.IntPtr,System.UInt32@,System.UInt32@) - parent: OpenTK.Graphics.Wgl.Wgl.NV - langs: - - csharp - - vb - name: QuerySwapGroupNV(nint, ref uint, ref uint) - nameWithType: Wgl.NV.QuerySwapGroupNV(nint, ref uint, ref uint) - fullName: OpenTK.Graphics.Wgl.Wgl.NV.QuerySwapGroupNV(nint, ref uint, ref uint) - type: Method - source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: QuerySwapGroupNV - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 2529 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_NV_swap_group] - - [entry point: wglQuerySwapGroupNV] - -
- example: [] - syntax: - content: public static bool QuerySwapGroupNV(nint hDC, ref uint group, ref uint barrier) - parameters: - - id: hDC - type: System.IntPtr - - id: group - type: System.UInt32 - - id: barrier - type: System.UInt32 - return: - type: System.Boolean - content.vb: Public Shared Function QuerySwapGroupNV(hDC As IntPtr, group As UInteger, barrier As UInteger) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.NV.QuerySwapGroupNV* - nameWithType.vb: Wgl.NV.QuerySwapGroupNV(IntPtr, UInteger, UInteger) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.QuerySwapGroupNV(System.IntPtr, UInteger, UInteger) - name.vb: QuerySwapGroupNV(IntPtr, UInteger, UInteger) -- uid: OpenTK.Graphics.Wgl.Wgl.NV.QueryVideoCaptureDeviceNV(System.IntPtr,System.IntPtr,OpenTK.Graphics.Wgl.VideoCaptureDeviceAttribute,System.Span{System.Int32}) - commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.QueryVideoCaptureDeviceNV(System.IntPtr,System.IntPtr,OpenTK.Graphics.Wgl.VideoCaptureDeviceAttribute,System.Span{System.Int32}) - id: QueryVideoCaptureDeviceNV(System.IntPtr,System.IntPtr,OpenTK.Graphics.Wgl.VideoCaptureDeviceAttribute,System.Span{System.Int32}) - parent: OpenTK.Graphics.Wgl.Wgl.NV - langs: - - csharp - - vb - name: QueryVideoCaptureDeviceNV(nint, nint, VideoCaptureDeviceAttribute, Span) - nameWithType: Wgl.NV.QueryVideoCaptureDeviceNV(nint, nint, VideoCaptureDeviceAttribute, Span) - fullName: OpenTK.Graphics.Wgl.Wgl.NV.QueryVideoCaptureDeviceNV(nint, nint, OpenTK.Graphics.Wgl.VideoCaptureDeviceAttribute, System.Span) - type: Method - source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: QueryVideoCaptureDeviceNV - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 2542 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_NV_video_capture] - - [entry point: wglQueryVideoCaptureDeviceNV] - -
- example: [] - syntax: - content: public static bool QueryVideoCaptureDeviceNV(nint hDc, nint hDevice, VideoCaptureDeviceAttribute iAttribute, Span piValue) - parameters: - - id: hDc - type: System.IntPtr - - id: hDevice - type: System.IntPtr - - id: iAttribute - type: OpenTK.Graphics.Wgl.VideoCaptureDeviceAttribute - - id: piValue - type: System.Span{System.Int32} - return: - type: System.Boolean - content.vb: Public Shared Function QueryVideoCaptureDeviceNV(hDc As IntPtr, hDevice As IntPtr, iAttribute As VideoCaptureDeviceAttribute, piValue As Span(Of Integer)) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.NV.QueryVideoCaptureDeviceNV* - nameWithType.vb: Wgl.NV.QueryVideoCaptureDeviceNV(IntPtr, IntPtr, VideoCaptureDeviceAttribute, Span(Of Integer)) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.QueryVideoCaptureDeviceNV(System.IntPtr, System.IntPtr, OpenTK.Graphics.Wgl.VideoCaptureDeviceAttribute, System.Span(Of Integer)) - name.vb: QueryVideoCaptureDeviceNV(IntPtr, IntPtr, VideoCaptureDeviceAttribute, Span(Of Integer)) -- uid: OpenTK.Graphics.Wgl.Wgl.NV.QueryVideoCaptureDeviceNV(System.IntPtr,System.IntPtr,OpenTK.Graphics.Wgl.VideoCaptureDeviceAttribute,System.Int32[]) - commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.QueryVideoCaptureDeviceNV(System.IntPtr,System.IntPtr,OpenTK.Graphics.Wgl.VideoCaptureDeviceAttribute,System.Int32[]) - id: QueryVideoCaptureDeviceNV(System.IntPtr,System.IntPtr,OpenTK.Graphics.Wgl.VideoCaptureDeviceAttribute,System.Int32[]) - parent: OpenTK.Graphics.Wgl.Wgl.NV - langs: - - csharp - - vb - name: QueryVideoCaptureDeviceNV(nint, nint, VideoCaptureDeviceAttribute, int[]) - nameWithType: Wgl.NV.QueryVideoCaptureDeviceNV(nint, nint, VideoCaptureDeviceAttribute, int[]) - fullName: OpenTK.Graphics.Wgl.Wgl.NV.QueryVideoCaptureDeviceNV(nint, nint, OpenTK.Graphics.Wgl.VideoCaptureDeviceAttribute, int[]) - type: Method - source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: QueryVideoCaptureDeviceNV - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 2554 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_NV_video_capture] - - [entry point: wglQueryVideoCaptureDeviceNV] - -
- example: [] - syntax: - content: public static bool QueryVideoCaptureDeviceNV(nint hDc, nint hDevice, VideoCaptureDeviceAttribute iAttribute, int[] piValue) - parameters: - - id: hDc - type: System.IntPtr - - id: hDevice - type: System.IntPtr - - id: iAttribute - type: OpenTK.Graphics.Wgl.VideoCaptureDeviceAttribute - - id: piValue - type: System.Int32[] - return: - type: System.Boolean - content.vb: Public Shared Function QueryVideoCaptureDeviceNV(hDc As IntPtr, hDevice As IntPtr, iAttribute As VideoCaptureDeviceAttribute, piValue As Integer()) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.NV.QueryVideoCaptureDeviceNV* - nameWithType.vb: Wgl.NV.QueryVideoCaptureDeviceNV(IntPtr, IntPtr, VideoCaptureDeviceAttribute, Integer()) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.QueryVideoCaptureDeviceNV(System.IntPtr, System.IntPtr, OpenTK.Graphics.Wgl.VideoCaptureDeviceAttribute, Integer()) - name.vb: QueryVideoCaptureDeviceNV(IntPtr, IntPtr, VideoCaptureDeviceAttribute, Integer()) -- uid: OpenTK.Graphics.Wgl.Wgl.NV.QueryVideoCaptureDeviceNV(System.IntPtr,System.IntPtr,OpenTK.Graphics.Wgl.VideoCaptureDeviceAttribute,System.Int32@) - commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.QueryVideoCaptureDeviceNV(System.IntPtr,System.IntPtr,OpenTK.Graphics.Wgl.VideoCaptureDeviceAttribute,System.Int32@) - id: QueryVideoCaptureDeviceNV(System.IntPtr,System.IntPtr,OpenTK.Graphics.Wgl.VideoCaptureDeviceAttribute,System.Int32@) - parent: OpenTK.Graphics.Wgl.Wgl.NV - langs: - - csharp - - vb - name: QueryVideoCaptureDeviceNV(nint, nint, VideoCaptureDeviceAttribute, ref int) - nameWithType: Wgl.NV.QueryVideoCaptureDeviceNV(nint, nint, VideoCaptureDeviceAttribute, ref int) - fullName: OpenTK.Graphics.Wgl.Wgl.NV.QueryVideoCaptureDeviceNV(nint, nint, OpenTK.Graphics.Wgl.VideoCaptureDeviceAttribute, ref int) - type: Method - source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: QueryVideoCaptureDeviceNV - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 2566 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_NV_video_capture] - - [entry point: wglQueryVideoCaptureDeviceNV] - -
- example: [] - syntax: - content: public static bool QueryVideoCaptureDeviceNV(nint hDc, nint hDevice, VideoCaptureDeviceAttribute iAttribute, ref int piValue) - parameters: - - id: hDc - type: System.IntPtr - - id: hDevice - type: System.IntPtr - - id: iAttribute - type: OpenTK.Graphics.Wgl.VideoCaptureDeviceAttribute - - id: piValue - type: System.Int32 - return: - type: System.Boolean - content.vb: Public Shared Function QueryVideoCaptureDeviceNV(hDc As IntPtr, hDevice As IntPtr, iAttribute As VideoCaptureDeviceAttribute, piValue As Integer) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.NV.QueryVideoCaptureDeviceNV* - nameWithType.vb: Wgl.NV.QueryVideoCaptureDeviceNV(IntPtr, IntPtr, VideoCaptureDeviceAttribute, Integer) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.QueryVideoCaptureDeviceNV(System.IntPtr, System.IntPtr, OpenTK.Graphics.Wgl.VideoCaptureDeviceAttribute, Integer) - name.vb: QueryVideoCaptureDeviceNV(IntPtr, IntPtr, VideoCaptureDeviceAttribute, Integer) -- uid: OpenTK.Graphics.Wgl.Wgl.NV.ReleaseVideoCaptureDeviceNV(System.IntPtr,System.IntPtr) - commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.ReleaseVideoCaptureDeviceNV(System.IntPtr,System.IntPtr) - id: ReleaseVideoCaptureDeviceNV(System.IntPtr,System.IntPtr) - parent: OpenTK.Graphics.Wgl.Wgl.NV - langs: - - csharp - - vb - name: ReleaseVideoCaptureDeviceNV(nint, nint) - nameWithType: Wgl.NV.ReleaseVideoCaptureDeviceNV(nint, nint) - fullName: OpenTK.Graphics.Wgl.Wgl.NV.ReleaseVideoCaptureDeviceNV(nint, nint) - type: Method - source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: ReleaseVideoCaptureDeviceNV - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 2578 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - example: [] - syntax: - content: public static bool ReleaseVideoCaptureDeviceNV(nint hDc, nint hDevice) - parameters: - - id: hDc - type: System.IntPtr - - id: hDevice + - id: hDc + type: System.IntPtr + - id: hDevice type: System.IntPtr return: type: System.Boolean @@ -4399,13 +3746,9 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.NV.ReleaseVideoDeviceNV(nint) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ReleaseVideoDeviceNV - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 2587 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 1991 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -4434,13 +3777,9 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.NV.ReleaseVideoImageNV(nint, OpenTK.Graphics.Wgl.VideoOutputBuffer) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ReleaseVideoImageNV - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 2596 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 2000 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -4471,13 +3810,9 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.NV.ResetFrameCountNV(nint) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ResetFrameCountNV - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 2605 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 2009 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -4494,100 +3829,6 @@ items: nameWithType.vb: Wgl.NV.ResetFrameCountNV(IntPtr) fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.ResetFrameCountNV(System.IntPtr) name.vb: ResetFrameCountNV(IntPtr) -- uid: OpenTK.Graphics.Wgl.Wgl.NV.SendPbufferToVideoNV(System.IntPtr,OpenTK.Graphics.Wgl.VideoOutputBufferType,System.Span{System.UInt64},System.Int32) - commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.SendPbufferToVideoNV(System.IntPtr,OpenTK.Graphics.Wgl.VideoOutputBufferType,System.Span{System.UInt64},System.Int32) - id: SendPbufferToVideoNV(System.IntPtr,OpenTK.Graphics.Wgl.VideoOutputBufferType,System.Span{System.UInt64},System.Int32) - parent: OpenTK.Graphics.Wgl.Wgl.NV - langs: - - csharp - - vb - name: SendPbufferToVideoNV(nint, VideoOutputBufferType, Span, int) - nameWithType: Wgl.NV.SendPbufferToVideoNV(nint, VideoOutputBufferType, Span, int) - fullName: OpenTK.Graphics.Wgl.Wgl.NV.SendPbufferToVideoNV(nint, OpenTK.Graphics.Wgl.VideoOutputBufferType, System.Span, int) - type: Method - source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: SendPbufferToVideoNV - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 2614 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_NV_video_output] - - [entry point: wglSendPbufferToVideoNV] - -
- example: [] - syntax: - content: public static bool SendPbufferToVideoNV(nint hPbuffer, VideoOutputBufferType iBufferType, Span pulCounterPbuffer, int bBlock) - parameters: - - id: hPbuffer - type: System.IntPtr - - id: iBufferType - type: OpenTK.Graphics.Wgl.VideoOutputBufferType - - id: pulCounterPbuffer - type: System.Span{System.UInt64} - - id: bBlock - type: System.Int32 - return: - type: System.Boolean - content.vb: Public Shared Function SendPbufferToVideoNV(hPbuffer As IntPtr, iBufferType As VideoOutputBufferType, pulCounterPbuffer As Span(Of ULong), bBlock As Integer) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.NV.SendPbufferToVideoNV* - nameWithType.vb: Wgl.NV.SendPbufferToVideoNV(IntPtr, VideoOutputBufferType, Span(Of ULong), Integer) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.SendPbufferToVideoNV(System.IntPtr, OpenTK.Graphics.Wgl.VideoOutputBufferType, System.Span(Of ULong), Integer) - name.vb: SendPbufferToVideoNV(IntPtr, VideoOutputBufferType, Span(Of ULong), Integer) -- uid: OpenTK.Graphics.Wgl.Wgl.NV.SendPbufferToVideoNV(System.IntPtr,OpenTK.Graphics.Wgl.VideoOutputBufferType,System.UInt64[],System.Int32) - commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.SendPbufferToVideoNV(System.IntPtr,OpenTK.Graphics.Wgl.VideoOutputBufferType,System.UInt64[],System.Int32) - id: SendPbufferToVideoNV(System.IntPtr,OpenTK.Graphics.Wgl.VideoOutputBufferType,System.UInt64[],System.Int32) - parent: OpenTK.Graphics.Wgl.Wgl.NV - langs: - - csharp - - vb - name: SendPbufferToVideoNV(nint, VideoOutputBufferType, ulong[], int) - nameWithType: Wgl.NV.SendPbufferToVideoNV(nint, VideoOutputBufferType, ulong[], int) - fullName: OpenTK.Graphics.Wgl.Wgl.NV.SendPbufferToVideoNV(nint, OpenTK.Graphics.Wgl.VideoOutputBufferType, ulong[], int) - type: Method - source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: SendPbufferToVideoNV - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 2626 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_NV_video_output] - - [entry point: wglSendPbufferToVideoNV] - -
- example: [] - syntax: - content: public static bool SendPbufferToVideoNV(nint hPbuffer, VideoOutputBufferType iBufferType, ulong[] pulCounterPbuffer, int bBlock) - parameters: - - id: hPbuffer - type: System.IntPtr - - id: iBufferType - type: OpenTK.Graphics.Wgl.VideoOutputBufferType - - id: pulCounterPbuffer - type: System.UInt64[] - - id: bBlock - type: System.Int32 - return: - type: System.Boolean - content.vb: Public Shared Function SendPbufferToVideoNV(hPbuffer As IntPtr, iBufferType As VideoOutputBufferType, pulCounterPbuffer As ULong(), bBlock As Integer) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.NV.SendPbufferToVideoNV* - nameWithType.vb: Wgl.NV.SendPbufferToVideoNV(IntPtr, VideoOutputBufferType, ULong(), Integer) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.SendPbufferToVideoNV(System.IntPtr, OpenTK.Graphics.Wgl.VideoOutputBufferType, ULong(), Integer) - name.vb: SendPbufferToVideoNV(IntPtr, VideoOutputBufferType, ULong(), Integer) - uid: OpenTK.Graphics.Wgl.Wgl.NV.SendPbufferToVideoNV(System.IntPtr,OpenTK.Graphics.Wgl.VideoOutputBufferType,System.UInt64@,System.Int32) commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.SendPbufferToVideoNV(System.IntPtr,OpenTK.Graphics.Wgl.VideoOutputBufferType,System.UInt64@,System.Int32) id: SendPbufferToVideoNV(System.IntPtr,OpenTK.Graphics.Wgl.VideoOutputBufferType,System.UInt64@,System.Int32) @@ -4595,18 +3836,14 @@ items: langs: - csharp - vb - name: SendPbufferToVideoNV(nint, VideoOutputBufferType, ref ulong, int) - nameWithType: Wgl.NV.SendPbufferToVideoNV(nint, VideoOutputBufferType, ref ulong, int) - fullName: OpenTK.Graphics.Wgl.Wgl.NV.SendPbufferToVideoNV(nint, OpenTK.Graphics.Wgl.VideoOutputBufferType, ref ulong, int) + name: SendPbufferToVideoNV(nint, VideoOutputBufferType, out ulong, int) + nameWithType: Wgl.NV.SendPbufferToVideoNV(nint, VideoOutputBufferType, out ulong, int) + fullName: OpenTK.Graphics.Wgl.Wgl.NV.SendPbufferToVideoNV(nint, OpenTK.Graphics.Wgl.VideoOutputBufferType, out ulong, int) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SendPbufferToVideoNV - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 2638 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 2018 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -4618,7 +3855,7 @@ items:
example: [] syntax: - content: public static bool SendPbufferToVideoNV(nint hPbuffer, VideoOutputBufferType iBufferType, ref ulong pulCounterPbuffer, int bBlock) + content: public static bool SendPbufferToVideoNV(nint hPbuffer, VideoOutputBufferType iBufferType, out ulong pulCounterPbuffer, int bBlock) parameters: - id: hPbuffer type: System.IntPtr @@ -5122,17 +4359,17 @@ references: fullName: OpenTK.Graphics.Wgl.Wgl.NV.DXLockObjectsNV - uid: OpenTK.Graphics.Wgl.Wgl.NV.DXObjectAccessNV_* commentId: Overload:OpenTK.Graphics.Wgl.Wgl.NV.DXObjectAccessNV_ - href: OpenTK.Graphics.Wgl.Wgl.NV.html#OpenTK_Graphics_Wgl_Wgl_NV_DXObjectAccessNV__System_IntPtr_OpenTK_Graphics_Wgl_WGLDXInteropMaskNV_ + href: OpenTK.Graphics.Wgl.Wgl.NV.html#OpenTK_Graphics_Wgl_Wgl_NV_DXObjectAccessNV__System_IntPtr_OpenTK_Graphics_Wgl_DXInteropMaskNV_ name: DXObjectAccessNV_ nameWithType: Wgl.NV.DXObjectAccessNV_ fullName: OpenTK.Graphics.Wgl.Wgl.NV.DXObjectAccessNV_ -- uid: OpenTK.Graphics.Wgl.WGLDXInteropMaskNV - commentId: T:OpenTK.Graphics.Wgl.WGLDXInteropMaskNV +- uid: OpenTK.Graphics.Wgl.DXInteropMaskNV + commentId: T:OpenTK.Graphics.Wgl.DXInteropMaskNV parent: OpenTK.Graphics.Wgl - href: OpenTK.Graphics.Wgl.WGLDXInteropMaskNV.html - name: WGLDXInteropMaskNV - nameWithType: WGLDXInteropMaskNV - fullName: OpenTK.Graphics.Wgl.WGLDXInteropMaskNV + href: OpenTK.Graphics.Wgl.DXInteropMaskNV.html + name: DXInteropMaskNV + nameWithType: DXInteropMaskNV + fullName: OpenTK.Graphics.Wgl.DXInteropMaskNV - uid: OpenTK.Graphics.Wgl.Wgl.NV.DXOpenDeviceNV* commentId: Overload:OpenTK.Graphics.Wgl.Wgl.NV.DXOpenDeviceNV href: OpenTK.Graphics.Wgl.Wgl.NV.html#OpenTK_Graphics_Wgl_Wgl_NV_DXOpenDeviceNV_System_Void__ @@ -5141,7 +4378,7 @@ references: fullName: OpenTK.Graphics.Wgl.Wgl.NV.DXOpenDeviceNV - uid: OpenTK.Graphics.Wgl.Wgl.NV.DXRegisterObjectNV* commentId: Overload:OpenTK.Graphics.Wgl.Wgl.NV.DXRegisterObjectNV - href: OpenTK.Graphics.Wgl.Wgl.NV.html#OpenTK_Graphics_Wgl_Wgl_NV_DXRegisterObjectNV_System_IntPtr_System_Void__System_UInt32_OpenTK_Graphics_Wgl_ObjectTypeDX_OpenTK_Graphics_Wgl_WGLDXInteropMaskNV_ + href: OpenTK.Graphics.Wgl.Wgl.NV.html#OpenTK_Graphics_Wgl_Wgl_NV_DXRegisterObjectNV_System_IntPtr_System_Void__System_UInt32_OpenTK_Graphics_Wgl_ObjectTypeDX_OpenTK_Graphics_Wgl_DXInteropMaskNV_ name: DXRegisterObjectNV nameWithType: Wgl.NV.DXRegisterObjectNV fullName: OpenTK.Graphics.Wgl.Wgl.NV.DXRegisterObjectNV @@ -5392,6 +4629,92 @@ references: name: BindVideoCaptureDeviceNV nameWithType: Wgl.NV.BindVideoCaptureDeviceNV fullName: OpenTK.Graphics.Wgl.Wgl.NV.BindVideoCaptureDeviceNV +- uid: System.ReadOnlySpan{System.Int32} + commentId: T:System.ReadOnlySpan{System.Int32} + parent: System + definition: System.ReadOnlySpan`1 + href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 + name: ReadOnlySpan + nameWithType: ReadOnlySpan + fullName: System.ReadOnlySpan + nameWithType.vb: ReadOnlySpan(Of Integer) + fullName.vb: System.ReadOnlySpan(Of Integer) + name.vb: ReadOnlySpan(Of Integer) + spec.csharp: + - uid: System.ReadOnlySpan`1 + name: ReadOnlySpan + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 + - name: < + - uid: System.Int32 + name: int + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: '>' + spec.vb: + - uid: System.ReadOnlySpan`1 + name: ReadOnlySpan + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 + - name: ( + - name: Of + - name: " " + - uid: System.Int32 + name: Integer + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ) +- uid: System.ReadOnlySpan`1 + commentId: T:System.ReadOnlySpan`1 + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 + name: ReadOnlySpan + nameWithType: ReadOnlySpan + fullName: System.ReadOnlySpan + nameWithType.vb: ReadOnlySpan(Of T) + fullName.vb: System.ReadOnlySpan(Of T) + name.vb: ReadOnlySpan(Of T) + spec.csharp: + - uid: System.ReadOnlySpan`1 + name: ReadOnlySpan + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 + - name: < + - name: T + - name: '>' + spec.vb: + - uid: System.ReadOnlySpan`1 + name: ReadOnlySpan + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 + - name: ( + - name: Of + - name: " " + - name: T + - name: ) +- uid: System.Int32[] + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + name: int[] + nameWithType: int[] + fullName: int[] + nameWithType.vb: Integer() + fullName.vb: Integer() + name.vb: Integer() + spec.csharp: + - uid: System.Int32 + name: int + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: '[' + - name: ']' + spec.vb: + - uid: System.Int32 + name: Integer + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ( + - name: ) - uid: OpenTK.Graphics.Wgl.Wgl.NV.BindVideoImageNV* commentId: Overload:OpenTK.Graphics.Wgl.Wgl.NV.BindVideoImageNV href: OpenTK.Graphics.Wgl.Wgl.NV.html#OpenTK_Graphics_Wgl_Wgl_NV_BindVideoImageNV_System_IntPtr_System_IntPtr_OpenTK_Graphics_Wgl_VideoOutputBuffer_ @@ -5404,6 +4727,64 @@ references: name: CopyImageSubDataNV nameWithType: Wgl.NV.CopyImageSubDataNV fullName: OpenTK.Graphics.Wgl.Wgl.NV.CopyImageSubDataNV +- uid: System.ReadOnlySpan{System.IntPtr} + commentId: T:System.ReadOnlySpan{System.IntPtr} + parent: System + definition: System.ReadOnlySpan`1 + href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 + name: ReadOnlySpan + nameWithType: ReadOnlySpan + fullName: System.ReadOnlySpan + nameWithType.vb: ReadOnlySpan(Of IntPtr) + fullName.vb: System.ReadOnlySpan(Of System.IntPtr) + name.vb: ReadOnlySpan(Of IntPtr) + spec.csharp: + - uid: System.ReadOnlySpan`1 + name: ReadOnlySpan + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 + - name: < + - uid: System.IntPtr + name: nint + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.intptr + - name: '>' + spec.vb: + - uid: System.ReadOnlySpan`1 + name: ReadOnlySpan + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 + - name: ( + - name: Of + - name: " " + - uid: System.IntPtr + name: IntPtr + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.intptr + - name: ) +- uid: System.IntPtr[] + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.intptr + name: nint[] + nameWithType: nint[] + fullName: nint[] + nameWithType.vb: IntPtr() + fullName.vb: System.IntPtr() + name.vb: IntPtr() + spec.csharp: + - uid: System.IntPtr + name: nint + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.intptr + - name: '[' + - name: ']' + spec.vb: + - uid: System.IntPtr + name: IntPtr + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.intptr + - name: ( + - name: ) - uid: OpenTK.Graphics.Wgl.Wgl.NV.DelayBeforeSwapNV* commentId: Overload:OpenTK.Graphics.Wgl.Wgl.NV.DelayBeforeSwapNV href: OpenTK.Graphics.Wgl.Wgl.NV.html#OpenTK_Graphics_Wgl_Wgl_NV_DelayBeforeSwapNV_System_IntPtr_System_Single_ @@ -5485,53 +4866,48 @@ references: - name: " " - name: T - name: ) -- uid: System.IntPtr[] - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: nint[] - nameWithType: nint[] - fullName: nint[] - nameWithType.vb: IntPtr() - fullName.vb: System.IntPtr() - name.vb: IntPtr() - spec.csharp: - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: '[' - - name: ']' - spec.vb: - - uid: System.IntPtr - name: IntPtr - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ( - - name: ) - uid: OpenTK.Graphics.Wgl.Wgl.NV.DXObjectAccessNV* commentId: Overload:OpenTK.Graphics.Wgl.Wgl.NV.DXObjectAccessNV - href: OpenTK.Graphics.Wgl.Wgl.NV.html#OpenTK_Graphics_Wgl_Wgl_NV_DXObjectAccessNV_System_IntPtr_OpenTK_Graphics_Wgl_WGLDXInteropMaskNV_ + href: OpenTK.Graphics.Wgl.Wgl.NV.html#OpenTK_Graphics_Wgl_Wgl_NV_DXObjectAccessNV_System_IntPtr_OpenTK_Graphics_Wgl_DXInteropMaskNV_ name: DXObjectAccessNV nameWithType: Wgl.NV.DXObjectAccessNV fullName: OpenTK.Graphics.Wgl.Wgl.NV.DXObjectAccessNV -- uid: System.Span{{T1}} - commentId: T:System.Span{``0} +- uid: '{T1}' + commentId: '!:T1' + definition: T1 + name: T1 + nameWithType: T1 + fullName: T1 +- uid: T1 + name: T1 + nameWithType: T1 + fullName: T1 +- uid: OpenTK.Graphics.Wgl.Wgl.NV.DXUnregisterObjectNV* + commentId: Overload:OpenTK.Graphics.Wgl.Wgl.NV.DXUnregisterObjectNV + href: OpenTK.Graphics.Wgl.Wgl.NV.html#OpenTK_Graphics_Wgl_Wgl_NV_DXUnregisterObjectNV_System_IntPtr_System_IntPtr_ + name: DXUnregisterObjectNV + nameWithType: Wgl.NV.DXUnregisterObjectNV + fullName: OpenTK.Graphics.Wgl.Wgl.NV.DXUnregisterObjectNV +- uid: System.Span{OpenTK.Graphics.Wgl._GPU_DEVICE} + commentId: T:System.Span{OpenTK.Graphics.Wgl._GPU_DEVICE} parent: System definition: System.Span`1 href: https://learn.microsoft.com/dotnet/api/system.span-1 - name: Span - nameWithType: Span - fullName: System.Span - nameWithType.vb: Span(Of T1) - fullName.vb: System.Span(Of T1) - name.vb: Span(Of T1) + name: Span<_GPU_DEVICE> + nameWithType: Span<_GPU_DEVICE> + fullName: System.Span + nameWithType.vb: Span(Of _GPU_DEVICE) + fullName.vb: System.Span(Of OpenTK.Graphics.Wgl._GPU_DEVICE) + name.vb: Span(Of _GPU_DEVICE) spec.csharp: - uid: System.Span`1 name: Span isExternal: true href: https://learn.microsoft.com/dotnet/api/system.span-1 - name: < - - name: T1 + - uid: OpenTK.Graphics.Wgl._GPU_DEVICE + name: _GPU_DEVICE + href: OpenTK.Graphics.Wgl._GPU_DEVICE.html - name: '>' spec.vb: - uid: System.Span`1 @@ -5541,40 +4917,31 @@ references: - name: ( - name: Of - name: " " - - name: T1 + - uid: OpenTK.Graphics.Wgl._GPU_DEVICE + name: _GPU_DEVICE + href: OpenTK.Graphics.Wgl._GPU_DEVICE.html - name: ) -- uid: '{T1}[]' +- uid: OpenTK.Graphics.Wgl._GPU_DEVICE[] isExternal: true - name: T1[] - nameWithType: T1[] - fullName: T1[] - nameWithType.vb: T1() - fullName.vb: T1() - name.vb: T1() + href: OpenTK.Graphics.Wgl._GPU_DEVICE.html + name: _GPU_DEVICE[] + nameWithType: _GPU_DEVICE[] + fullName: OpenTK.Graphics.Wgl._GPU_DEVICE[] + nameWithType.vb: _GPU_DEVICE() + fullName.vb: OpenTK.Graphics.Wgl._GPU_DEVICE() + name.vb: _GPU_DEVICE() spec.csharp: - - name: T1 + - uid: OpenTK.Graphics.Wgl._GPU_DEVICE + name: _GPU_DEVICE + href: OpenTK.Graphics.Wgl._GPU_DEVICE.html - name: '[' - name: ']' spec.vb: - - name: T1 + - uid: OpenTK.Graphics.Wgl._GPU_DEVICE + name: _GPU_DEVICE + href: OpenTK.Graphics.Wgl._GPU_DEVICE.html - name: ( - name: ) -- uid: '{T1}' - commentId: '!:T1' - definition: T1 - name: T1 - nameWithType: T1 - fullName: T1 -- uid: T1 - name: T1 - nameWithType: T1 - fullName: T1 -- uid: OpenTK.Graphics.Wgl.Wgl.NV.DXUnregisterObjectNV* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.NV.DXUnregisterObjectNV - href: OpenTK.Graphics.Wgl.Wgl.NV.html#OpenTK_Graphics_Wgl_Wgl_NV_DXUnregisterObjectNV_System_IntPtr_System_IntPtr_ - name: DXUnregisterObjectNV - nameWithType: Wgl.NV.DXUnregisterObjectNV - fullName: OpenTK.Graphics.Wgl.Wgl.NV.DXUnregisterObjectNV - uid: OpenTK.Graphics.Wgl._GPU_DEVICE commentId: T:OpenTK.Graphics.Wgl._GPU_DEVICE parent: OpenTK.Graphics.Wgl @@ -5582,27 +4949,24 @@ references: name: _GPU_DEVICE nameWithType: _GPU_DEVICE fullName: OpenTK.Graphics.Wgl._GPU_DEVICE -- uid: System.Span{System.UInt64} - commentId: T:System.Span{System.UInt64} +- uid: System.Span{{T1}} + commentId: T:System.Span{``0} parent: System definition: System.Span`1 href: https://learn.microsoft.com/dotnet/api/system.span-1 - name: Span - nameWithType: Span - fullName: System.Span - nameWithType.vb: Span(Of ULong) - fullName.vb: System.Span(Of ULong) - name.vb: Span(Of ULong) + name: Span + nameWithType: Span + fullName: System.Span + nameWithType.vb: Span(Of T1) + fullName.vb: System.Span(Of T1) + name.vb: Span(Of T1) spec.csharp: - uid: System.Span`1 name: Span isExternal: true href: https://learn.microsoft.com/dotnet/api/system.span-1 - name: < - - uid: System.UInt64 - name: ulong - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint64 + - name: T1 - name: '>' spec.vb: - uid: System.Span`1 @@ -5612,32 +4976,22 @@ references: - name: ( - name: Of - name: " " - - uid: System.UInt64 - name: ULong - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint64 + - name: T1 - name: ) -- uid: System.UInt64[] +- uid: '{T1}[]' isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint64 - name: ulong[] - nameWithType: ulong[] - fullName: ulong[] - nameWithType.vb: ULong() - fullName.vb: ULong() - name.vb: ULong() + name: T1[] + nameWithType: T1[] + fullName: T1[] + nameWithType.vb: T1() + fullName.vb: T1() + name.vb: T1() spec.csharp: - - uid: System.UInt64 - name: ulong - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint64 + - name: T1 - name: '[' - name: ']' spec.vb: - - uid: System.UInt64 - name: ULong - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint64 + - name: T1 - name: ( - name: ) - uid: System.UInt64 @@ -5663,122 +5017,6 @@ references: name: LockVideoCaptureDeviceNV nameWithType: Wgl.NV.LockVideoCaptureDeviceNV fullName: OpenTK.Graphics.Wgl.Wgl.NV.LockVideoCaptureDeviceNV -- uid: System.Span{System.Int32} - commentId: T:System.Span{System.Int32} - parent: System - definition: System.Span`1 - href: https://learn.microsoft.com/dotnet/api/system.span-1 - name: Span - nameWithType: Span - fullName: System.Span - nameWithType.vb: Span(Of Integer) - fullName.vb: System.Span(Of Integer) - name.vb: Span(Of Integer) - spec.csharp: - - uid: System.Span`1 - name: Span - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.span-1 - - name: < - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '>' - spec.vb: - - uid: System.Span`1 - name: Span - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.span-1 - - name: ( - - name: Of - - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) -- uid: System.Int32[] - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - name: int[] - nameWithType: int[] - fullName: int[] - nameWithType.vb: Integer() - fullName.vb: Integer() - name.vb: Integer() - spec.csharp: - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '[' - - name: ']' - spec.vb: - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ( - - name: ) -- uid: System.Span{System.UInt32} - commentId: T:System.Span{System.UInt32} - parent: System - definition: System.Span`1 - href: https://learn.microsoft.com/dotnet/api/system.span-1 - name: Span - nameWithType: Span - fullName: System.Span - nameWithType.vb: Span(Of UInteger) - fullName.vb: System.Span(Of UInteger) - name.vb: Span(Of UInteger) - spec.csharp: - - uid: System.Span`1 - name: Span - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.span-1 - - name: < - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: '>' - spec.vb: - - uid: System.Span`1 - name: Span - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.span-1 - - name: ( - - name: Of - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: System.UInt32[] - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - name: uint[] - nameWithType: uint[] - fullName: uint[] - nameWithType.vb: UInteger() - fullName.vb: UInteger() - name.vb: UInteger() - spec.csharp: - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: '[' - - name: ']' - spec.vb: - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ( - - name: ) - uid: OpenTK.Graphics.Wgl.Wgl.NV.ReleaseVideoCaptureDeviceNV* commentId: Overload:OpenTK.Graphics.Wgl.Wgl.NV.ReleaseVideoCaptureDeviceNV href: OpenTK.Graphics.Wgl.Wgl.NV.html#OpenTK_Graphics_Wgl_Wgl_NV_ReleaseVideoCaptureDeviceNV_System_IntPtr_System_IntPtr_ diff --git a/api/OpenTK.Graphics.Wgl.Wgl.OML.yml b/api/OpenTK.Graphics.Wgl.Wgl.OML.yml index 3c6cfcf7..baf65fa1 100644 --- a/api/OpenTK.Graphics.Wgl.Wgl.OML.yml +++ b/api/OpenTK.Graphics.Wgl.Wgl.OML.yml @@ -7,22 +7,14 @@ items: children: - OpenTK.Graphics.Wgl.Wgl.OML.GetMscRateOML(System.IntPtr,System.Int32*,System.Int32*) - OpenTK.Graphics.Wgl.Wgl.OML.GetMscRateOML(System.IntPtr,System.Int32@,System.Int32@) - - OpenTK.Graphics.Wgl.Wgl.OML.GetMscRateOML(System.IntPtr,System.Int32[],System.Int32[]) - - OpenTK.Graphics.Wgl.Wgl.OML.GetMscRateOML(System.IntPtr,System.Span{System.Int32},System.Span{System.Int32}) - OpenTK.Graphics.Wgl.Wgl.OML.GetSyncValuesOML(System.IntPtr,System.Int64*,System.Int64*,System.Int64*) - OpenTK.Graphics.Wgl.Wgl.OML.GetSyncValuesOML(System.IntPtr,System.Int64@,System.Int64@,System.Int64@) - - OpenTK.Graphics.Wgl.Wgl.OML.GetSyncValuesOML(System.IntPtr,System.Int64[],System.Int64[],System.Int64[]) - - OpenTK.Graphics.Wgl.Wgl.OML.GetSyncValuesOML(System.IntPtr,System.Span{System.Int64},System.Span{System.Int64},System.Span{System.Int64}) - OpenTK.Graphics.Wgl.Wgl.OML.SwapBuffersMscOML(System.IntPtr,System.Int64,System.Int64,System.Int64) - - OpenTK.Graphics.Wgl.Wgl.OML.SwapLayerBuffersMscOML(System.IntPtr,OpenTK.Graphics.Wgl.WGLLayerPlaneMask,System.Int64,System.Int64,System.Int64) + - OpenTK.Graphics.Wgl.Wgl.OML.SwapLayerBuffersMscOML(System.IntPtr,OpenTK.Graphics.Wgl.LayerPlaneMask,System.Int64,System.Int64,System.Int64) - OpenTK.Graphics.Wgl.Wgl.OML.WaitForMscOML(System.IntPtr,System.Int64,System.Int64,System.Int64,System.Int64*,System.Int64*,System.Int64*) - OpenTK.Graphics.Wgl.Wgl.OML.WaitForMscOML(System.IntPtr,System.Int64,System.Int64,System.Int64,System.Int64@,System.Int64@,System.Int64@) - - OpenTK.Graphics.Wgl.Wgl.OML.WaitForMscOML(System.IntPtr,System.Int64,System.Int64,System.Int64,System.Int64[],System.Int64[],System.Int64[]) - - OpenTK.Graphics.Wgl.Wgl.OML.WaitForMscOML(System.IntPtr,System.Int64,System.Int64,System.Int64,System.Span{System.Int64},System.Span{System.Int64},System.Span{System.Int64}) - OpenTK.Graphics.Wgl.Wgl.OML.WaitForSbcOML(System.IntPtr,System.Int64,System.Int64*,System.Int64*,System.Int64*) - OpenTK.Graphics.Wgl.Wgl.OML.WaitForSbcOML(System.IntPtr,System.Int64,System.Int64@,System.Int64@,System.Int64@) - - OpenTK.Graphics.Wgl.Wgl.OML.WaitForSbcOML(System.IntPtr,System.Int64,System.Int64[],System.Int64[],System.Int64[]) - - OpenTK.Graphics.Wgl.Wgl.OML.WaitForSbcOML(System.IntPtr,System.Int64,System.Span{System.Int64},System.Span{System.Int64},System.Span{System.Int64}) langs: - csharp - vb @@ -31,13 +23,9 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.OML type: Class source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: OML - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 2650 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 2030 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -68,17 +56,18 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.OML.GetMscRateOML(nint, int*, int*) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetMscRateOML - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs startLine: 456 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl - summary: '[requires: WGL_OML_sync_control] [entry point: wglGetMscRateOML]
' + summary: >- + [requires: WGL_OML_sync_control] + + [entry point: wglGetMscRateOML] + +
example: [] syntax: content: public static int GetMscRateOML(nint hdc, int* numerator, int* denominator) @@ -108,17 +97,18 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.OML.GetSyncValuesOML(nint, long*, long*, long*) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetSyncValuesOML - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs startLine: 459 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl - summary: '[requires: WGL_OML_sync_control] [entry point: wglGetSyncValuesOML]
' + summary: >- + [requires: WGL_OML_sync_control] + + [entry point: wglGetSyncValuesOML] + +
example: [] syntax: content: public static int GetSyncValuesOML(nint hdc, long* ust, long* msc, long* sbc) @@ -150,17 +140,18 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.OML.SwapBuffersMscOML(nint, long, long, long) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SwapBuffersMscOML - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs startLine: 462 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl - summary: '[requires: WGL_OML_sync_control] [entry point: wglSwapBuffersMscOML]
' + summary: >- + [requires: WGL_OML_sync_control] + + [entry point: wglSwapBuffersMscOML] + +
example: [] syntax: content: public static long SwapBuffersMscOML(nint hdc, long target_msc, long divisor, long remainder) @@ -180,37 +171,38 @@ items: nameWithType.vb: Wgl.OML.SwapBuffersMscOML(IntPtr, Long, Long, Long) fullName.vb: OpenTK.Graphics.Wgl.Wgl.OML.SwapBuffersMscOML(System.IntPtr, Long, Long, Long) name.vb: SwapBuffersMscOML(IntPtr, Long, Long, Long) -- uid: OpenTK.Graphics.Wgl.Wgl.OML.SwapLayerBuffersMscOML(System.IntPtr,OpenTK.Graphics.Wgl.WGLLayerPlaneMask,System.Int64,System.Int64,System.Int64) - commentId: M:OpenTK.Graphics.Wgl.Wgl.OML.SwapLayerBuffersMscOML(System.IntPtr,OpenTK.Graphics.Wgl.WGLLayerPlaneMask,System.Int64,System.Int64,System.Int64) - id: SwapLayerBuffersMscOML(System.IntPtr,OpenTK.Graphics.Wgl.WGLLayerPlaneMask,System.Int64,System.Int64,System.Int64) +- uid: OpenTK.Graphics.Wgl.Wgl.OML.SwapLayerBuffersMscOML(System.IntPtr,OpenTK.Graphics.Wgl.LayerPlaneMask,System.Int64,System.Int64,System.Int64) + commentId: M:OpenTK.Graphics.Wgl.Wgl.OML.SwapLayerBuffersMscOML(System.IntPtr,OpenTK.Graphics.Wgl.LayerPlaneMask,System.Int64,System.Int64,System.Int64) + id: SwapLayerBuffersMscOML(System.IntPtr,OpenTK.Graphics.Wgl.LayerPlaneMask,System.Int64,System.Int64,System.Int64) parent: OpenTK.Graphics.Wgl.Wgl.OML langs: - csharp - vb - name: SwapLayerBuffersMscOML(nint, WGLLayerPlaneMask, long, long, long) - nameWithType: Wgl.OML.SwapLayerBuffersMscOML(nint, WGLLayerPlaneMask, long, long, long) - fullName: OpenTK.Graphics.Wgl.Wgl.OML.SwapLayerBuffersMscOML(nint, OpenTK.Graphics.Wgl.WGLLayerPlaneMask, long, long, long) + name: SwapLayerBuffersMscOML(nint, LayerPlaneMask, long, long, long) + nameWithType: Wgl.OML.SwapLayerBuffersMscOML(nint, LayerPlaneMask, long, long, long) + fullName: OpenTK.Graphics.Wgl.Wgl.OML.SwapLayerBuffersMscOML(nint, OpenTK.Graphics.Wgl.LayerPlaneMask, long, long, long) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SwapLayerBuffersMscOML - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs startLine: 465 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl - summary: '[requires: WGL_OML_sync_control] [entry point: wglSwapLayerBuffersMscOML]
' + summary: >- + [requires: WGL_OML_sync_control] + + [entry point: wglSwapLayerBuffersMscOML] + +
example: [] syntax: - content: public static long SwapLayerBuffersMscOML(nint hdc, WGLLayerPlaneMask fuPlanes, long target_msc, long divisor, long remainder) + content: public static long SwapLayerBuffersMscOML(nint hdc, LayerPlaneMask fuPlanes, long target_msc, long divisor, long remainder) parameters: - id: hdc type: System.IntPtr - id: fuPlanes - type: OpenTK.Graphics.Wgl.WGLLayerPlaneMask + type: OpenTK.Graphics.Wgl.LayerPlaneMask - id: target_msc type: System.Int64 - id: divisor @@ -219,11 +211,11 @@ items: type: System.Int64 return: type: System.Int64 - content.vb: Public Shared Function SwapLayerBuffersMscOML(hdc As IntPtr, fuPlanes As WGLLayerPlaneMask, target_msc As Long, divisor As Long, remainder As Long) As Long + content.vb: Public Shared Function SwapLayerBuffersMscOML(hdc As IntPtr, fuPlanes As LayerPlaneMask, target_msc As Long, divisor As Long, remainder As Long) As Long overload: OpenTK.Graphics.Wgl.Wgl.OML.SwapLayerBuffersMscOML* - nameWithType.vb: Wgl.OML.SwapLayerBuffersMscOML(IntPtr, WGLLayerPlaneMask, Long, Long, Long) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.OML.SwapLayerBuffersMscOML(System.IntPtr, OpenTK.Graphics.Wgl.WGLLayerPlaneMask, Long, Long, Long) - name.vb: SwapLayerBuffersMscOML(IntPtr, WGLLayerPlaneMask, Long, Long, Long) + nameWithType.vb: Wgl.OML.SwapLayerBuffersMscOML(IntPtr, LayerPlaneMask, Long, Long, Long) + fullName.vb: OpenTK.Graphics.Wgl.Wgl.OML.SwapLayerBuffersMscOML(System.IntPtr, OpenTK.Graphics.Wgl.LayerPlaneMask, Long, Long, Long) + name.vb: SwapLayerBuffersMscOML(IntPtr, LayerPlaneMask, Long, Long, Long) - uid: OpenTK.Graphics.Wgl.Wgl.OML.WaitForMscOML(System.IntPtr,System.Int64,System.Int64,System.Int64,System.Int64*,System.Int64*,System.Int64*) commentId: M:OpenTK.Graphics.Wgl.Wgl.OML.WaitForMscOML(System.IntPtr,System.Int64,System.Int64,System.Int64,System.Int64*,System.Int64*,System.Int64*) id: WaitForMscOML(System.IntPtr,System.Int64,System.Int64,System.Int64,System.Int64*,System.Int64*,System.Int64*) @@ -236,17 +228,18 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.OML.WaitForMscOML(nint, long, long, long, long*, long*, long*) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: WaitForMscOML - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs startLine: 468 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl - summary: '[requires: WGL_OML_sync_control] [entry point: wglWaitForMscOML]
' + summary: >- + [requires: WGL_OML_sync_control] + + [entry point: wglWaitForMscOML] + +
example: [] syntax: content: public static int WaitForMscOML(nint hdc, long target_msc, long divisor, long remainder, long* ust, long* msc, long* sbc) @@ -284,17 +277,18 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.OML.WaitForSbcOML(nint, long, long*, long*, long*) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: WaitForSbcOML - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs startLine: 471 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl - summary: '[requires: WGL_OML_sync_control] [entry point: wglWaitForSbcOML]
' + summary: >- + [requires: WGL_OML_sync_control] + + [entry point: wglWaitForSbcOML] + +
example: [] syntax: content: public static int WaitForSbcOML(nint hdc, long target_sbc, long* ust, long* msc, long* sbc) @@ -316,96 +310,6 @@ items: nameWithType.vb: Wgl.OML.WaitForSbcOML(IntPtr, Long, Long*, Long*, Long*) fullName.vb: OpenTK.Graphics.Wgl.Wgl.OML.WaitForSbcOML(System.IntPtr, Long, Long*, Long*, Long*) name.vb: WaitForSbcOML(IntPtr, Long, Long*, Long*, Long*) -- uid: OpenTK.Graphics.Wgl.Wgl.OML.GetMscRateOML(System.IntPtr,System.Span{System.Int32},System.Span{System.Int32}) - commentId: M:OpenTK.Graphics.Wgl.Wgl.OML.GetMscRateOML(System.IntPtr,System.Span{System.Int32},System.Span{System.Int32}) - id: GetMscRateOML(System.IntPtr,System.Span{System.Int32},System.Span{System.Int32}) - parent: OpenTK.Graphics.Wgl.Wgl.OML - langs: - - csharp - - vb - name: GetMscRateOML(nint, Span, Span) - nameWithType: Wgl.OML.GetMscRateOML(nint, Span, Span) - fullName: OpenTK.Graphics.Wgl.Wgl.OML.GetMscRateOML(nint, System.Span, System.Span) - type: Method - source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: GetMscRateOML - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 2653 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_OML_sync_control] - - [entry point: wglGetMscRateOML] - -
- example: [] - syntax: - content: public static bool GetMscRateOML(nint hdc, Span numerator, Span denominator) - parameters: - - id: hdc - type: System.IntPtr - - id: numerator - type: System.Span{System.Int32} - - id: denominator - type: System.Span{System.Int32} - return: - type: System.Boolean - content.vb: Public Shared Function GetMscRateOML(hdc As IntPtr, numerator As Span(Of Integer), denominator As Span(Of Integer)) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.OML.GetMscRateOML* - nameWithType.vb: Wgl.OML.GetMscRateOML(IntPtr, Span(Of Integer), Span(Of Integer)) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.OML.GetMscRateOML(System.IntPtr, System.Span(Of Integer), System.Span(Of Integer)) - name.vb: GetMscRateOML(IntPtr, Span(Of Integer), Span(Of Integer)) -- uid: OpenTK.Graphics.Wgl.Wgl.OML.GetMscRateOML(System.IntPtr,System.Int32[],System.Int32[]) - commentId: M:OpenTK.Graphics.Wgl.Wgl.OML.GetMscRateOML(System.IntPtr,System.Int32[],System.Int32[]) - id: GetMscRateOML(System.IntPtr,System.Int32[],System.Int32[]) - parent: OpenTK.Graphics.Wgl.Wgl.OML - langs: - - csharp - - vb - name: GetMscRateOML(nint, int[], int[]) - nameWithType: Wgl.OML.GetMscRateOML(nint, int[], int[]) - fullName: OpenTK.Graphics.Wgl.Wgl.OML.GetMscRateOML(nint, int[], int[]) - type: Method - source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: GetMscRateOML - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 2668 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_OML_sync_control] - - [entry point: wglGetMscRateOML] - -
- example: [] - syntax: - content: public static bool GetMscRateOML(nint hdc, int[] numerator, int[] denominator) - parameters: - - id: hdc - type: System.IntPtr - - id: numerator - type: System.Int32[] - - id: denominator - type: System.Int32[] - return: - type: System.Boolean - content.vb: Public Shared Function GetMscRateOML(hdc As IntPtr, numerator As Integer(), denominator As Integer()) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.OML.GetMscRateOML* - nameWithType.vb: Wgl.OML.GetMscRateOML(IntPtr, Integer(), Integer()) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.OML.GetMscRateOML(System.IntPtr, Integer(), Integer()) - name.vb: GetMscRateOML(IntPtr, Integer(), Integer()) - uid: OpenTK.Graphics.Wgl.Wgl.OML.GetMscRateOML(System.IntPtr,System.Int32@,System.Int32@) commentId: M:OpenTK.Graphics.Wgl.Wgl.OML.GetMscRateOML(System.IntPtr,System.Int32@,System.Int32@) id: GetMscRateOML(System.IntPtr,System.Int32@,System.Int32@) @@ -413,18 +317,14 @@ items: langs: - csharp - vb - name: GetMscRateOML(nint, ref int, ref int) - nameWithType: Wgl.OML.GetMscRateOML(nint, ref int, ref int) - fullName: OpenTK.Graphics.Wgl.Wgl.OML.GetMscRateOML(nint, ref int, ref int) + name: GetMscRateOML(nint, out int, out int) + nameWithType: Wgl.OML.GetMscRateOML(nint, out int, out int) + fullName: OpenTK.Graphics.Wgl.Wgl.OML.GetMscRateOML(nint, out int, out int) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetMscRateOML - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 2683 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 2033 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -436,7 +336,7 @@ items:
example: [] syntax: - content: public static bool GetMscRateOML(nint hdc, ref int numerator, ref int denominator) + content: public static bool GetMscRateOML(nint hdc, out int numerator, out int denominator) parameters: - id: hdc type: System.IntPtr @@ -451,100 +351,6 @@ items: nameWithType.vb: Wgl.OML.GetMscRateOML(IntPtr, Integer, Integer) fullName.vb: OpenTK.Graphics.Wgl.Wgl.OML.GetMscRateOML(System.IntPtr, Integer, Integer) name.vb: GetMscRateOML(IntPtr, Integer, Integer) -- uid: OpenTK.Graphics.Wgl.Wgl.OML.GetSyncValuesOML(System.IntPtr,System.Span{System.Int64},System.Span{System.Int64},System.Span{System.Int64}) - commentId: M:OpenTK.Graphics.Wgl.Wgl.OML.GetSyncValuesOML(System.IntPtr,System.Span{System.Int64},System.Span{System.Int64},System.Span{System.Int64}) - id: GetSyncValuesOML(System.IntPtr,System.Span{System.Int64},System.Span{System.Int64},System.Span{System.Int64}) - parent: OpenTK.Graphics.Wgl.Wgl.OML - langs: - - csharp - - vb - name: GetSyncValuesOML(nint, Span, Span, Span) - nameWithType: Wgl.OML.GetSyncValuesOML(nint, Span, Span, Span) - fullName: OpenTK.Graphics.Wgl.Wgl.OML.GetSyncValuesOML(nint, System.Span, System.Span, System.Span) - type: Method - source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: GetSyncValuesOML - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 2696 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_OML_sync_control] - - [entry point: wglGetSyncValuesOML] - -
- example: [] - syntax: - content: public static bool GetSyncValuesOML(nint hdc, Span ust, Span msc, Span sbc) - parameters: - - id: hdc - type: System.IntPtr - - id: ust - type: System.Span{System.Int64} - - id: msc - type: System.Span{System.Int64} - - id: sbc - type: System.Span{System.Int64} - return: - type: System.Boolean - content.vb: Public Shared Function GetSyncValuesOML(hdc As IntPtr, ust As Span(Of Long), msc As Span(Of Long), sbc As Span(Of Long)) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.OML.GetSyncValuesOML* - nameWithType.vb: Wgl.OML.GetSyncValuesOML(IntPtr, Span(Of Long), Span(Of Long), Span(Of Long)) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.OML.GetSyncValuesOML(System.IntPtr, System.Span(Of Long), System.Span(Of Long), System.Span(Of Long)) - name.vb: GetSyncValuesOML(IntPtr, Span(Of Long), Span(Of Long), Span(Of Long)) -- uid: OpenTK.Graphics.Wgl.Wgl.OML.GetSyncValuesOML(System.IntPtr,System.Int64[],System.Int64[],System.Int64[]) - commentId: M:OpenTK.Graphics.Wgl.Wgl.OML.GetSyncValuesOML(System.IntPtr,System.Int64[],System.Int64[],System.Int64[]) - id: GetSyncValuesOML(System.IntPtr,System.Int64[],System.Int64[],System.Int64[]) - parent: OpenTK.Graphics.Wgl.Wgl.OML - langs: - - csharp - - vb - name: GetSyncValuesOML(nint, long[], long[], long[]) - nameWithType: Wgl.OML.GetSyncValuesOML(nint, long[], long[], long[]) - fullName: OpenTK.Graphics.Wgl.Wgl.OML.GetSyncValuesOML(nint, long[], long[], long[]) - type: Method - source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: GetSyncValuesOML - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 2714 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_OML_sync_control] - - [entry point: wglGetSyncValuesOML] - -
- example: [] - syntax: - content: public static bool GetSyncValuesOML(nint hdc, long[] ust, long[] msc, long[] sbc) - parameters: - - id: hdc - type: System.IntPtr - - id: ust - type: System.Int64[] - - id: msc - type: System.Int64[] - - id: sbc - type: System.Int64[] - return: - type: System.Boolean - content.vb: Public Shared Function GetSyncValuesOML(hdc As IntPtr, ust As Long(), msc As Long(), sbc As Long()) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.OML.GetSyncValuesOML* - nameWithType.vb: Wgl.OML.GetSyncValuesOML(IntPtr, Long(), Long(), Long()) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.OML.GetSyncValuesOML(System.IntPtr, Long(), Long(), Long()) - name.vb: GetSyncValuesOML(IntPtr, Long(), Long(), Long()) - uid: OpenTK.Graphics.Wgl.Wgl.OML.GetSyncValuesOML(System.IntPtr,System.Int64@,System.Int64@,System.Int64@) commentId: M:OpenTK.Graphics.Wgl.Wgl.OML.GetSyncValuesOML(System.IntPtr,System.Int64@,System.Int64@,System.Int64@) id: GetSyncValuesOML(System.IntPtr,System.Int64@,System.Int64@,System.Int64@) @@ -552,18 +358,14 @@ items: langs: - csharp - vb - name: GetSyncValuesOML(nint, ref long, ref long, ref long) - nameWithType: Wgl.OML.GetSyncValuesOML(nint, ref long, ref long, ref long) - fullName: OpenTK.Graphics.Wgl.Wgl.OML.GetSyncValuesOML(nint, ref long, ref long, ref long) + name: GetSyncValuesOML(nint, out long, out long, out long) + nameWithType: Wgl.OML.GetSyncValuesOML(nint, out long, out long, out long) + fullName: OpenTK.Graphics.Wgl.Wgl.OML.GetSyncValuesOML(nint, out long, out long, out long) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetSyncValuesOML - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 2732 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 2046 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -575,7 +377,7 @@ items:
example: [] syntax: - content: public static bool GetSyncValuesOML(nint hdc, ref long ust, ref long msc, ref long sbc) + content: public static bool GetSyncValuesOML(nint hdc, out long ust, out long msc, out long sbc) parameters: - id: hdc type: System.IntPtr @@ -592,112 +394,6 @@ items: nameWithType.vb: Wgl.OML.GetSyncValuesOML(IntPtr, Long, Long, Long) fullName.vb: OpenTK.Graphics.Wgl.Wgl.OML.GetSyncValuesOML(System.IntPtr, Long, Long, Long) name.vb: GetSyncValuesOML(IntPtr, Long, Long, Long) -- uid: OpenTK.Graphics.Wgl.Wgl.OML.WaitForMscOML(System.IntPtr,System.Int64,System.Int64,System.Int64,System.Span{System.Int64},System.Span{System.Int64},System.Span{System.Int64}) - commentId: M:OpenTK.Graphics.Wgl.Wgl.OML.WaitForMscOML(System.IntPtr,System.Int64,System.Int64,System.Int64,System.Span{System.Int64},System.Span{System.Int64},System.Span{System.Int64}) - id: WaitForMscOML(System.IntPtr,System.Int64,System.Int64,System.Int64,System.Span{System.Int64},System.Span{System.Int64},System.Span{System.Int64}) - parent: OpenTK.Graphics.Wgl.Wgl.OML - langs: - - csharp - - vb - name: WaitForMscOML(nint, long, long, long, Span, Span, Span) - nameWithType: Wgl.OML.WaitForMscOML(nint, long, long, long, Span, Span, Span) - fullName: OpenTK.Graphics.Wgl.Wgl.OML.WaitForMscOML(nint, long, long, long, System.Span, System.Span, System.Span) - type: Method - source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: WaitForMscOML - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 2746 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_OML_sync_control] - - [entry point: wglWaitForMscOML] - -
- example: [] - syntax: - content: public static bool WaitForMscOML(nint hdc, long target_msc, long divisor, long remainder, Span ust, Span msc, Span sbc) - parameters: - - id: hdc - type: System.IntPtr - - id: target_msc - type: System.Int64 - - id: divisor - type: System.Int64 - - id: remainder - type: System.Int64 - - id: ust - type: System.Span{System.Int64} - - id: msc - type: System.Span{System.Int64} - - id: sbc - type: System.Span{System.Int64} - return: - type: System.Boolean - content.vb: Public Shared Function WaitForMscOML(hdc As IntPtr, target_msc As Long, divisor As Long, remainder As Long, ust As Span(Of Long), msc As Span(Of Long), sbc As Span(Of Long)) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.OML.WaitForMscOML* - nameWithType.vb: Wgl.OML.WaitForMscOML(IntPtr, Long, Long, Long, Span(Of Long), Span(Of Long), Span(Of Long)) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.OML.WaitForMscOML(System.IntPtr, Long, Long, Long, System.Span(Of Long), System.Span(Of Long), System.Span(Of Long)) - name.vb: WaitForMscOML(IntPtr, Long, Long, Long, Span(Of Long), Span(Of Long), Span(Of Long)) -- uid: OpenTK.Graphics.Wgl.Wgl.OML.WaitForMscOML(System.IntPtr,System.Int64,System.Int64,System.Int64,System.Int64[],System.Int64[],System.Int64[]) - commentId: M:OpenTK.Graphics.Wgl.Wgl.OML.WaitForMscOML(System.IntPtr,System.Int64,System.Int64,System.Int64,System.Int64[],System.Int64[],System.Int64[]) - id: WaitForMscOML(System.IntPtr,System.Int64,System.Int64,System.Int64,System.Int64[],System.Int64[],System.Int64[]) - parent: OpenTK.Graphics.Wgl.Wgl.OML - langs: - - csharp - - vb - name: WaitForMscOML(nint, long, long, long, long[], long[], long[]) - nameWithType: Wgl.OML.WaitForMscOML(nint, long, long, long, long[], long[], long[]) - fullName: OpenTK.Graphics.Wgl.Wgl.OML.WaitForMscOML(nint, long, long, long, long[], long[], long[]) - type: Method - source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: WaitForMscOML - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 2764 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_OML_sync_control] - - [entry point: wglWaitForMscOML] - -
- example: [] - syntax: - content: public static bool WaitForMscOML(nint hdc, long target_msc, long divisor, long remainder, long[] ust, long[] msc, long[] sbc) - parameters: - - id: hdc - type: System.IntPtr - - id: target_msc - type: System.Int64 - - id: divisor - type: System.Int64 - - id: remainder - type: System.Int64 - - id: ust - type: System.Int64[] - - id: msc - type: System.Int64[] - - id: sbc - type: System.Int64[] - return: - type: System.Boolean - content.vb: Public Shared Function WaitForMscOML(hdc As IntPtr, target_msc As Long, divisor As Long, remainder As Long, ust As Long(), msc As Long(), sbc As Long()) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.OML.WaitForMscOML* - nameWithType.vb: Wgl.OML.WaitForMscOML(IntPtr, Long, Long, Long, Long(), Long(), Long()) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.OML.WaitForMscOML(System.IntPtr, Long, Long, Long, Long(), Long(), Long()) - name.vb: WaitForMscOML(IntPtr, Long, Long, Long, Long(), Long(), Long()) - uid: OpenTK.Graphics.Wgl.Wgl.OML.WaitForMscOML(System.IntPtr,System.Int64,System.Int64,System.Int64,System.Int64@,System.Int64@,System.Int64@) commentId: M:OpenTK.Graphics.Wgl.Wgl.OML.WaitForMscOML(System.IntPtr,System.Int64,System.Int64,System.Int64,System.Int64@,System.Int64@,System.Int64@) id: WaitForMscOML(System.IntPtr,System.Int64,System.Int64,System.Int64,System.Int64@,System.Int64@,System.Int64@) @@ -705,18 +401,14 @@ items: langs: - csharp - vb - name: WaitForMscOML(nint, long, long, long, ref long, ref long, ref long) - nameWithType: Wgl.OML.WaitForMscOML(nint, long, long, long, ref long, ref long, ref long) - fullName: OpenTK.Graphics.Wgl.Wgl.OML.WaitForMscOML(nint, long, long, long, ref long, ref long, ref long) + name: WaitForMscOML(nint, long, long, long, out long, out long, out long) + nameWithType: Wgl.OML.WaitForMscOML(nint, long, long, long, out long, out long, out long) + fullName: OpenTK.Graphics.Wgl.Wgl.OML.WaitForMscOML(nint, long, long, long, out long, out long, out long) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: WaitForMscOML - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 2782 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 2060 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -728,7 +420,7 @@ items:
example: [] syntax: - content: public static bool WaitForMscOML(nint hdc, long target_msc, long divisor, long remainder, ref long ust, ref long msc, ref long sbc) + content: public static bool WaitForMscOML(nint hdc, long target_msc, long divisor, long remainder, out long ust, out long msc, out long sbc) parameters: - id: hdc type: System.IntPtr @@ -751,104 +443,6 @@ items: nameWithType.vb: Wgl.OML.WaitForMscOML(IntPtr, Long, Long, Long, Long, Long, Long) fullName.vb: OpenTK.Graphics.Wgl.Wgl.OML.WaitForMscOML(System.IntPtr, Long, Long, Long, Long, Long, Long) name.vb: WaitForMscOML(IntPtr, Long, Long, Long, Long, Long, Long) -- uid: OpenTK.Graphics.Wgl.Wgl.OML.WaitForSbcOML(System.IntPtr,System.Int64,System.Span{System.Int64},System.Span{System.Int64},System.Span{System.Int64}) - commentId: M:OpenTK.Graphics.Wgl.Wgl.OML.WaitForSbcOML(System.IntPtr,System.Int64,System.Span{System.Int64},System.Span{System.Int64},System.Span{System.Int64}) - id: WaitForSbcOML(System.IntPtr,System.Int64,System.Span{System.Int64},System.Span{System.Int64},System.Span{System.Int64}) - parent: OpenTK.Graphics.Wgl.Wgl.OML - langs: - - csharp - - vb - name: WaitForSbcOML(nint, long, Span, Span, Span) - nameWithType: Wgl.OML.WaitForSbcOML(nint, long, Span, Span, Span) - fullName: OpenTK.Graphics.Wgl.Wgl.OML.WaitForSbcOML(nint, long, System.Span, System.Span, System.Span) - type: Method - source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: WaitForSbcOML - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 2796 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_OML_sync_control] - - [entry point: wglWaitForSbcOML] - -
- example: [] - syntax: - content: public static bool WaitForSbcOML(nint hdc, long target_sbc, Span ust, Span msc, Span sbc) - parameters: - - id: hdc - type: System.IntPtr - - id: target_sbc - type: System.Int64 - - id: ust - type: System.Span{System.Int64} - - id: msc - type: System.Span{System.Int64} - - id: sbc - type: System.Span{System.Int64} - return: - type: System.Boolean - content.vb: Public Shared Function WaitForSbcOML(hdc As IntPtr, target_sbc As Long, ust As Span(Of Long), msc As Span(Of Long), sbc As Span(Of Long)) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.OML.WaitForSbcOML* - nameWithType.vb: Wgl.OML.WaitForSbcOML(IntPtr, Long, Span(Of Long), Span(Of Long), Span(Of Long)) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.OML.WaitForSbcOML(System.IntPtr, Long, System.Span(Of Long), System.Span(Of Long), System.Span(Of Long)) - name.vb: WaitForSbcOML(IntPtr, Long, Span(Of Long), Span(Of Long), Span(Of Long)) -- uid: OpenTK.Graphics.Wgl.Wgl.OML.WaitForSbcOML(System.IntPtr,System.Int64,System.Int64[],System.Int64[],System.Int64[]) - commentId: M:OpenTK.Graphics.Wgl.Wgl.OML.WaitForSbcOML(System.IntPtr,System.Int64,System.Int64[],System.Int64[],System.Int64[]) - id: WaitForSbcOML(System.IntPtr,System.Int64,System.Int64[],System.Int64[],System.Int64[]) - parent: OpenTK.Graphics.Wgl.Wgl.OML - langs: - - csharp - - vb - name: WaitForSbcOML(nint, long, long[], long[], long[]) - nameWithType: Wgl.OML.WaitForSbcOML(nint, long, long[], long[], long[]) - fullName: OpenTK.Graphics.Wgl.Wgl.OML.WaitForSbcOML(nint, long, long[], long[], long[]) - type: Method - source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: WaitForSbcOML - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 2814 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_OML_sync_control] - - [entry point: wglWaitForSbcOML] - -
- example: [] - syntax: - content: public static bool WaitForSbcOML(nint hdc, long target_sbc, long[] ust, long[] msc, long[] sbc) - parameters: - - id: hdc - type: System.IntPtr - - id: target_sbc - type: System.Int64 - - id: ust - type: System.Int64[] - - id: msc - type: System.Int64[] - - id: sbc - type: System.Int64[] - return: - type: System.Boolean - content.vb: Public Shared Function WaitForSbcOML(hdc As IntPtr, target_sbc As Long, ust As Long(), msc As Long(), sbc As Long()) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.OML.WaitForSbcOML* - nameWithType.vb: Wgl.OML.WaitForSbcOML(IntPtr, Long, Long(), Long(), Long()) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.OML.WaitForSbcOML(System.IntPtr, Long, Long(), Long(), Long()) - name.vb: WaitForSbcOML(IntPtr, Long, Long(), Long(), Long()) - uid: OpenTK.Graphics.Wgl.Wgl.OML.WaitForSbcOML(System.IntPtr,System.Int64,System.Int64@,System.Int64@,System.Int64@) commentId: M:OpenTK.Graphics.Wgl.Wgl.OML.WaitForSbcOML(System.IntPtr,System.Int64,System.Int64@,System.Int64@,System.Int64@) id: WaitForSbcOML(System.IntPtr,System.Int64,System.Int64@,System.Int64@,System.Int64@) @@ -856,18 +450,14 @@ items: langs: - csharp - vb - name: WaitForSbcOML(nint, long, ref long, ref long, ref long) - nameWithType: Wgl.OML.WaitForSbcOML(nint, long, ref long, ref long, ref long) - fullName: OpenTK.Graphics.Wgl.Wgl.OML.WaitForSbcOML(nint, long, ref long, ref long, ref long) + name: WaitForSbcOML(nint, long, out long, out long, out long) + nameWithType: Wgl.OML.WaitForSbcOML(nint, long, out long, out long, out long) + fullName: OpenTK.Graphics.Wgl.Wgl.OML.WaitForSbcOML(nint, long, out long, out long, out long) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: WaitForSbcOML - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 2832 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 2074 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -879,7 +469,7 @@ items:
example: [] syntax: - content: public static bool WaitForSbcOML(nint hdc, long target_sbc, ref long ust, ref long msc, ref long sbc) + content: public static bool WaitForSbcOML(nint hdc, long target_sbc, out long ust, out long msc, out long sbc) parameters: - id: hdc type: System.IntPtr @@ -1261,17 +851,17 @@ references: name.vb: Long - uid: OpenTK.Graphics.Wgl.Wgl.OML.SwapLayerBuffersMscOML* commentId: Overload:OpenTK.Graphics.Wgl.Wgl.OML.SwapLayerBuffersMscOML - href: OpenTK.Graphics.Wgl.Wgl.OML.html#OpenTK_Graphics_Wgl_Wgl_OML_SwapLayerBuffersMscOML_System_IntPtr_OpenTK_Graphics_Wgl_WGLLayerPlaneMask_System_Int64_System_Int64_System_Int64_ + href: OpenTK.Graphics.Wgl.Wgl.OML.html#OpenTK_Graphics_Wgl_Wgl_OML_SwapLayerBuffersMscOML_System_IntPtr_OpenTK_Graphics_Wgl_LayerPlaneMask_System_Int64_System_Int64_System_Int64_ name: SwapLayerBuffersMscOML nameWithType: Wgl.OML.SwapLayerBuffersMscOML fullName: OpenTK.Graphics.Wgl.Wgl.OML.SwapLayerBuffersMscOML -- uid: OpenTK.Graphics.Wgl.WGLLayerPlaneMask - commentId: T:OpenTK.Graphics.Wgl.WGLLayerPlaneMask +- uid: OpenTK.Graphics.Wgl.LayerPlaneMask + commentId: T:OpenTK.Graphics.Wgl.LayerPlaneMask parent: OpenTK.Graphics.Wgl - href: OpenTK.Graphics.Wgl.WGLLayerPlaneMask.html - name: WGLLayerPlaneMask - nameWithType: WGLLayerPlaneMask - fullName: OpenTK.Graphics.Wgl.WGLLayerPlaneMask + href: OpenTK.Graphics.Wgl.LayerPlaneMask.html + name: LayerPlaneMask + nameWithType: LayerPlaneMask + fullName: OpenTK.Graphics.Wgl.LayerPlaneMask - uid: OpenTK.Graphics.Wgl.Wgl.OML.WaitForMscOML* commentId: Overload:OpenTK.Graphics.Wgl.Wgl.OML.WaitForMscOML href: OpenTK.Graphics.Wgl.Wgl.OML.html#OpenTK_Graphics_Wgl_Wgl_OML_WaitForMscOML_System_IntPtr_System_Int64_System_Int64_System_Int64_System_Int64__System_Int64__System_Int64__ @@ -1284,41 +874,6 @@ references: name: WaitForSbcOML nameWithType: Wgl.OML.WaitForSbcOML fullName: OpenTK.Graphics.Wgl.Wgl.OML.WaitForSbcOML -- uid: System.Span{System.Int32} - commentId: T:System.Span{System.Int32} - parent: System - definition: System.Span`1 - href: https://learn.microsoft.com/dotnet/api/system.span-1 - name: Span - nameWithType: Span - fullName: System.Span - nameWithType.vb: Span(Of Integer) - fullName.vb: System.Span(Of Integer) - name.vb: Span(Of Integer) - spec.csharp: - - uid: System.Span`1 - name: Span - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.span-1 - - name: < - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '>' - spec.vb: - - uid: System.Span`1 - name: Span - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.span-1 - - name: ( - - name: Of - - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) - uid: System.Boolean commentId: T:System.Boolean parent: System @@ -1330,112 +885,3 @@ references: nameWithType.vb: Boolean fullName.vb: Boolean name.vb: Boolean -- uid: System.Span`1 - commentId: T:System.Span`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.span-1 - name: Span - nameWithType: Span - fullName: System.Span - nameWithType.vb: Span(Of T) - fullName.vb: System.Span(Of T) - name.vb: Span(Of T) - spec.csharp: - - uid: System.Span`1 - name: Span - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.span-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.Span`1 - name: Span - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.span-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: System.Int32[] - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - name: int[] - nameWithType: int[] - fullName: int[] - nameWithType.vb: Integer() - fullName.vb: Integer() - name.vb: Integer() - spec.csharp: - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '[' - - name: ']' - spec.vb: - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ( - - name: ) -- uid: System.Span{System.Int64} - commentId: T:System.Span{System.Int64} - parent: System - definition: System.Span`1 - href: https://learn.microsoft.com/dotnet/api/system.span-1 - name: Span - nameWithType: Span - fullName: System.Span - nameWithType.vb: Span(Of Long) - fullName.vb: System.Span(Of Long) - name.vb: Span(Of Long) - spec.csharp: - - uid: System.Span`1 - name: Span - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.span-1 - - name: < - - uid: System.Int64 - name: long - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int64 - - name: '>' - spec.vb: - - uid: System.Span`1 - name: Span - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.span-1 - - name: ( - - name: Of - - name: " " - - uid: System.Int64 - name: Long - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int64 - - name: ) -- uid: System.Int64[] - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int64 - name: long[] - nameWithType: long[] - fullName: long[] - nameWithType.vb: Long() - fullName.vb: Long() - name.vb: Long() - spec.csharp: - - uid: System.Int64 - name: long - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int64 - - name: '[' - - name: ']' - spec.vb: - - uid: System.Int64 - name: Long - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int64 - - name: ( - - name: ) diff --git a/api/OpenTK.Graphics.Wgl.Wgl._3DL.yml b/api/OpenTK.Graphics.Wgl.Wgl._3DL.yml index 7392dde0..d77fbfc5 100644 --- a/api/OpenTK.Graphics.Wgl.Wgl._3DL.yml +++ b/api/OpenTK.Graphics.Wgl.Wgl._3DL.yml @@ -15,13 +15,9 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl._3DL type: Class source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _3DL - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 365 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 253 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -52,17 +48,18 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl._3DL.SetStereoEmitterState3DL_(nint, OpenTK.Graphics.Wgl.StereoEmitterState) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetStereoEmitterState3DL_ - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs startLine: 93 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl - summary: '[requires: WGL_3DL_stereo_control] [entry point: wglSetStereoEmitterState3DL]
' + summary: >- + [requires: WGL_3DL_stereo_control] + + [entry point: wglSetStereoEmitterState3DL] + +
example: [] syntax: content: public static int SetStereoEmitterState3DL_(nint hDC, StereoEmitterState uState) @@ -90,13 +87,9 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl._3DL.SetStereoEmitterState3DL(nint, OpenTK.Graphics.Wgl.StereoEmitterState) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetStereoEmitterState3DL - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 368 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 256 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl diff --git a/api/OpenTK.Graphics.Wgl.Wgl.yml b/api/OpenTK.Graphics.Wgl.Wgl.yml index 30f40736..811c1d14 100644 --- a/api/OpenTK.Graphics.Wgl.Wgl.yml +++ b/api/OpenTK.Graphics.Wgl.Wgl.yml @@ -7,8 +7,6 @@ items: children: - OpenTK.Graphics.Wgl.Wgl.ChoosePixelFormat(System.IntPtr,OpenTK.Graphics.Wgl.PixelFormatDescriptor*) - OpenTK.Graphics.Wgl.Wgl.ChoosePixelFormat(System.IntPtr,OpenTK.Graphics.Wgl.PixelFormatDescriptor@) - - OpenTK.Graphics.Wgl.Wgl.ChoosePixelFormat(System.IntPtr,OpenTK.Graphics.Wgl.PixelFormatDescriptor[]) - - OpenTK.Graphics.Wgl.Wgl.ChoosePixelFormat(System.IntPtr,System.ReadOnlySpan{OpenTK.Graphics.Wgl.PixelFormatDescriptor}) - OpenTK.Graphics.Wgl.Wgl.CopyContext(System.IntPtr,System.IntPtr,OpenTK.Graphics.OpenGL.AttribMask) - OpenTK.Graphics.Wgl.Wgl.CopyContext_(System.IntPtr,System.IntPtr,OpenTK.Graphics.OpenGL.AttribMask) - OpenTK.Graphics.Wgl.Wgl.CreateContext(System.IntPtr) @@ -17,22 +15,16 @@ items: - OpenTK.Graphics.Wgl.Wgl.DeleteContext_(System.IntPtr) - OpenTK.Graphics.Wgl.Wgl.DescribeLayerPlane(System.IntPtr,System.Int32,System.Int32,System.UInt32,OpenTK.Graphics.Wgl.LayerPlaneDescriptor*) - OpenTK.Graphics.Wgl.Wgl.DescribeLayerPlane(System.IntPtr,System.Int32,System.Int32,System.UInt32,OpenTK.Graphics.Wgl.LayerPlaneDescriptor@) - - OpenTK.Graphics.Wgl.Wgl.DescribeLayerPlane(System.IntPtr,System.Int32,System.Int32,System.UInt32,OpenTK.Graphics.Wgl.LayerPlaneDescriptor[]) - - OpenTK.Graphics.Wgl.Wgl.DescribeLayerPlane(System.IntPtr,System.Int32,System.Int32,System.UInt32,System.Span{OpenTK.Graphics.Wgl.LayerPlaneDescriptor}) - OpenTK.Graphics.Wgl.Wgl.DescribePixelFormat(System.IntPtr,System.Int32,System.UInt32,OpenTK.Graphics.Wgl.PixelFormatDescriptor*) - OpenTK.Graphics.Wgl.Wgl.DescribePixelFormat(System.IntPtr,System.Int32,System.UInt32,OpenTK.Graphics.Wgl.PixelFormatDescriptor@) - - OpenTK.Graphics.Wgl.Wgl.DescribePixelFormat(System.IntPtr,System.Int32,System.UInt32,OpenTK.Graphics.Wgl.PixelFormatDescriptor[]) - - OpenTK.Graphics.Wgl.Wgl.DescribePixelFormat(System.IntPtr,System.Int32,System.UInt32,System.Span{OpenTK.Graphics.Wgl.PixelFormatDescriptor}) - OpenTK.Graphics.Wgl.Wgl.GetCurrentContext - OpenTK.Graphics.Wgl.Wgl.GetCurrentDC - OpenTK.Graphics.Wgl.Wgl.GetEnhMetaFilePixelFormat(System.IntPtr,System.UInt32,OpenTK.Graphics.Wgl.PixelFormatDescriptor*) - OpenTK.Graphics.Wgl.Wgl.GetEnhMetaFilePixelFormat(System.IntPtr,System.UInt32,OpenTK.Graphics.Wgl.PixelFormatDescriptor@) - - OpenTK.Graphics.Wgl.Wgl.GetEnhMetaFilePixelFormat(System.IntPtr,System.UInt32,OpenTK.Graphics.Wgl.PixelFormatDescriptor[]) - - OpenTK.Graphics.Wgl.Wgl.GetEnhMetaFilePixelFormat(System.IntPtr,System.UInt32,System.Span{OpenTK.Graphics.Wgl.PixelFormatDescriptor}) - - OpenTK.Graphics.Wgl.Wgl.GetLayerPaletteEntries(System.IntPtr,System.Int32,System.Int32,OpenTK.Graphics.Wgl.ColorRef[]) - OpenTK.Graphics.Wgl.Wgl.GetLayerPaletteEntries(System.IntPtr,System.Int32,System.Int32,System.Int32,OpenTK.Graphics.Wgl.ColorRef*) - OpenTK.Graphics.Wgl.Wgl.GetLayerPaletteEntries(System.IntPtr,System.Int32,System.Int32,System.Int32,OpenTK.Graphics.Wgl.ColorRef@) - - OpenTK.Graphics.Wgl.Wgl.GetLayerPaletteEntries(System.IntPtr,System.Int32,System.Int32,System.Span{OpenTK.Graphics.Wgl.ColorRef}) + - OpenTK.Graphics.Wgl.Wgl.GetLayerPaletteEntries(System.IntPtr,System.Int32,System.Int32,System.Int32,OpenTK.Graphics.Wgl.ColorRef[]) + - OpenTK.Graphics.Wgl.Wgl.GetLayerPaletteEntries(System.IntPtr,System.Int32,System.Int32,System.Int32,System.Span{OpenTK.Graphics.Wgl.ColorRef}) - OpenTK.Graphics.Wgl.Wgl.GetPixelFormat(System.IntPtr) - OpenTK.Graphics.Wgl.Wgl.GetProcAddress(System.Byte*) - OpenTK.Graphics.Wgl.Wgl.GetProcAddress(System.String) @@ -40,20 +32,18 @@ items: - OpenTK.Graphics.Wgl.Wgl.MakeCurrent_(System.IntPtr,System.IntPtr) - OpenTK.Graphics.Wgl.Wgl.RealizeLayerPalette(System.IntPtr,System.Int32,System.Int32) - OpenTK.Graphics.Wgl.Wgl.RealizeLayerPalette_(System.IntPtr,System.Int32,System.Int32) - - OpenTK.Graphics.Wgl.Wgl.SetLayerPaletteEntries(System.IntPtr,System.Int32,System.Int32,OpenTK.Graphics.Wgl.ColorRef[]) - OpenTK.Graphics.Wgl.Wgl.SetLayerPaletteEntries(System.IntPtr,System.Int32,System.Int32,System.Int32,OpenTK.Graphics.Wgl.ColorRef*) - OpenTK.Graphics.Wgl.Wgl.SetLayerPaletteEntries(System.IntPtr,System.Int32,System.Int32,System.Int32,OpenTK.Graphics.Wgl.ColorRef@) - - OpenTK.Graphics.Wgl.Wgl.SetLayerPaletteEntries(System.IntPtr,System.Int32,System.Int32,System.ReadOnlySpan{OpenTK.Graphics.Wgl.ColorRef}) + - OpenTK.Graphics.Wgl.Wgl.SetLayerPaletteEntries(System.IntPtr,System.Int32,System.Int32,System.Int32,OpenTK.Graphics.Wgl.ColorRef[]) + - OpenTK.Graphics.Wgl.Wgl.SetLayerPaletteEntries(System.IntPtr,System.Int32,System.Int32,System.Int32,System.ReadOnlySpan{OpenTK.Graphics.Wgl.ColorRef}) - OpenTK.Graphics.Wgl.Wgl.SetPixelFormat(System.IntPtr,System.Int32,OpenTK.Graphics.Wgl.PixelFormatDescriptor*) - OpenTK.Graphics.Wgl.Wgl.SetPixelFormat(System.IntPtr,System.Int32,OpenTK.Graphics.Wgl.PixelFormatDescriptor@) - - OpenTK.Graphics.Wgl.Wgl.SetPixelFormat(System.IntPtr,System.Int32,OpenTK.Graphics.Wgl.PixelFormatDescriptor[]) - - OpenTK.Graphics.Wgl.Wgl.SetPixelFormat(System.IntPtr,System.Int32,System.ReadOnlySpan{OpenTK.Graphics.Wgl.PixelFormatDescriptor}) - OpenTK.Graphics.Wgl.Wgl.ShareLists(System.IntPtr,System.IntPtr) - OpenTK.Graphics.Wgl.Wgl.ShareLists_(System.IntPtr,System.IntPtr) - OpenTK.Graphics.Wgl.Wgl.SwapBuffers(System.IntPtr) - OpenTK.Graphics.Wgl.Wgl.SwapBuffers_(System.IntPtr) - - OpenTK.Graphics.Wgl.Wgl.SwapLayerBuffers(System.IntPtr,OpenTK.Graphics.Wgl.WGLLayerPlaneMask) - - OpenTK.Graphics.Wgl.Wgl.SwapLayerBuffers_(System.IntPtr,OpenTK.Graphics.Wgl.WGLLayerPlaneMask) + - OpenTK.Graphics.Wgl.Wgl.SwapLayerBuffers(System.IntPtr,OpenTK.Graphics.Wgl.LayerPlaneMask) + - OpenTK.Graphics.Wgl.Wgl.SwapLayerBuffers_(System.IntPtr,OpenTK.Graphics.Wgl.LayerPlaneMask) - OpenTK.Graphics.Wgl.Wgl.UseFontBitmaps(System.IntPtr,System.UInt32,System.UInt32,System.UInt32) - OpenTK.Graphics.Wgl.Wgl.UseFontBitmapsA(System.IntPtr,System.UInt32,System.UInt32,System.UInt32) - OpenTK.Graphics.Wgl.Wgl.UseFontBitmapsA_(System.IntPtr,System.UInt32,System.UInt32,System.UInt32) @@ -74,12 +64,8 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl type: Class source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Wgl - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs startLine: 11 assemblies: - OpenTK.Graphics @@ -109,17 +95,18 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.ChoosePixelFormat(nint, OpenTK.Graphics.Wgl.PixelFormatDescriptor*) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ChoosePixelFormat - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs startLine: 12 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl - summary: '[requires: v1.0] [entry point: ChoosePixelFormat]
' + summary: >- + [requires: v1.0] + + [entry point: ChoosePixelFormat] + +
example: [] syntax: content: public static int ChoosePixelFormat(nint hDc, PixelFormatDescriptor* pPfd) @@ -147,17 +134,18 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.CopyContext_(nint, nint, OpenTK.Graphics.OpenGL.AttribMask) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CopyContext_ - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs startLine: 15 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl - summary: '[requires: v1.0] [entry point: wglCopyContext]
' + summary: >- + [requires: v1.0] + + [entry point: wglCopyContext] + +
example: [] syntax: content: public static int CopyContext_(nint hglrcSrc, nint hglrcDst, AttribMask mask) @@ -187,17 +175,18 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.CreateContext(nint) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateContext - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs startLine: 18 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl - summary: '[requires: v1.0] [entry point: wglCreateContext]
' + summary: >- + [requires: v1.0] + + [entry point: wglCreateContext] + +
example: [] syntax: content: public static nint CreateContext(nint hDc) @@ -223,17 +212,18 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.CreateLayerContext(nint, int) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateLayerContext - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs startLine: 21 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl - summary: '[requires: v1.0] [entry point: wglCreateLayerContext]
' + summary: >- + [requires: v1.0] + + [entry point: wglCreateLayerContext] + +
example: [] syntax: content: public static nint CreateLayerContext(nint hDc, int level) @@ -261,17 +251,18 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.DeleteContext_(nint) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DeleteContext_ - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs startLine: 24 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl - summary: '[requires: v1.0] [entry point: wglDeleteContext]
' + summary: >- + [requires: v1.0] + + [entry point: wglDeleteContext] + +
example: [] syntax: content: public static int DeleteContext_(nint oldContext) @@ -297,17 +288,18 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.DescribeLayerPlane(nint, int, int, uint, OpenTK.Graphics.Wgl.LayerPlaneDescriptor*) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DescribeLayerPlane - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs startLine: 27 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl - summary: '[requires: v1.0] [entry point: wglDescribeLayerPlane]
' + summary: >- + [requires: v1.0] + + [entry point: wglDescribeLayerPlane] + +
example: [] syntax: content: public static int DescribeLayerPlane(nint hDc, int pixelFormat, int layerPlane, uint nBytes, LayerPlaneDescriptor* plpd) @@ -341,17 +333,18 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.DescribePixelFormat(nint, int, uint, OpenTK.Graphics.Wgl.PixelFormatDescriptor*) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DescribePixelFormat - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs startLine: 30 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl - summary: '[requires: v1.0] [entry point: DescribePixelFormat]
' + summary: >- + [requires: v1.0] + + [entry point: DescribePixelFormat] + +
example: [] syntax: content: public static int DescribePixelFormat(nint hdc, int ipfd, uint cjpfd, PixelFormatDescriptor* ppfd) @@ -383,17 +376,18 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.GetCurrentContext() type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetCurrentContext - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs startLine: 33 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl - summary: '[requires: v1.0] [entry point: wglGetCurrentContext]
' + summary: >- + [requires: v1.0] + + [entry point: wglGetCurrentContext] + +
example: [] syntax: content: public static nint GetCurrentContext() @@ -413,17 +407,18 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.GetCurrentDC() type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetCurrentDC - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs startLine: 36 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl - summary: '[requires: v1.0] [entry point: wglGetCurrentDC]
' + summary: >- + [requires: v1.0] + + [entry point: wglGetCurrentDC] + +
example: [] syntax: content: public static nint GetCurrentDC() @@ -443,17 +438,18 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.GetEnhMetaFilePixelFormat(nint, uint, OpenTK.Graphics.Wgl.PixelFormatDescriptor*) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetEnhMetaFilePixelFormat - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs startLine: 39 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl - summary: '[requires: v1.0] [entry point: GetEnhMetaFilePixelFormat]
' + summary: >- + [requires: v1.0] + + [entry point: GetEnhMetaFilePixelFormat] + +
example: [] syntax: content: public static uint GetEnhMetaFilePixelFormat(nint hemf, uint cbBuffer, PixelFormatDescriptor* ppfd) @@ -483,17 +479,18 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.GetLayerPaletteEntries(nint, int, int, int, OpenTK.Graphics.Wgl.ColorRef*) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetLayerPaletteEntries - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs startLine: 42 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl - summary: '[requires: v1.0] [entry point: wglGetLayerPaletteEntries]
' + summary: >- + [requires: v1.0] + + [entry point: wglGetLayerPaletteEntries] + +
example: [] syntax: content: public static int GetLayerPaletteEntries(nint hdc, int iLayerPlane, int iStart, int cEntries, ColorRef* pcr) @@ -527,17 +524,18 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.GetPixelFormat(nint) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetPixelFormat - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs startLine: 45 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl - summary: '[requires: v1.0] [entry point: GetPixelFormat]
' + summary: >- + [requires: v1.0] + + [entry point: GetPixelFormat] + +
example: [] syntax: content: public static int GetPixelFormat(nint hdc) @@ -563,17 +561,18 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.GetProcAddress(byte*) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetProcAddress - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs startLine: 48 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl - summary: '[requires: v1.0] [entry point: wglGetProcAddress]
' + summary: >- + [requires: v1.0] + + [entry point: wglGetProcAddress] + +
example: [] syntax: content: public static nint GetProcAddress(byte* lpszProc) @@ -599,17 +598,18 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.MakeCurrent_(nint, nint) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MakeCurrent_ - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs startLine: 51 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl - summary: '[requires: v1.0] [entry point: wglMakeCurrent]
' + summary: >- + [requires: v1.0] + + [entry point: wglMakeCurrent] + +
example: [] syntax: content: public static int MakeCurrent_(nint hDc, nint newContext) @@ -637,17 +637,18 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.RealizeLayerPalette_(nint, int, int) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: RealizeLayerPalette_ - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs startLine: 54 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl - summary: '[requires: v1.0] [entry point: wglRealizeLayerPalette]
' + summary: >- + [requires: v1.0] + + [entry point: wglRealizeLayerPalette] + +
example: [] syntax: content: public static int RealizeLayerPalette_(nint hdc, int iLayerPlane, int bRealize) @@ -677,17 +678,18 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.SetLayerPaletteEntries(nint, int, int, int, OpenTK.Graphics.Wgl.ColorRef*) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetLayerPaletteEntries - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs startLine: 57 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl - summary: '[requires: v1.0] [entry point: wglSetLayerPaletteEntries]
' + summary: >- + [requires: v1.0] + + [entry point: wglSetLayerPaletteEntries] + +
example: [] syntax: content: public static int SetLayerPaletteEntries(nint hdc, int iLayerPlane, int iStart, int cEntries, ColorRef* pcr) @@ -721,17 +723,18 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.SetPixelFormat(nint, int, OpenTK.Graphics.Wgl.PixelFormatDescriptor*) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetPixelFormat - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs startLine: 60 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl - summary: '[requires: v1.0] [entry point: SetPixelFormat]
' + summary: >- + [requires: v1.0] + + [entry point: SetPixelFormat] + +
example: [] syntax: content: public static int SetPixelFormat(nint hdc, int ipfd, PixelFormatDescriptor* ppfd) @@ -761,17 +764,18 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.ShareLists_(nint, nint) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ShareLists_ - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs startLine: 63 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl - summary: '[requires: v1.0] [entry point: wglShareLists]
' + summary: >- + [requires: v1.0] + + [entry point: wglShareLists] + +
example: [] syntax: content: public static int ShareLists_(nint hrcSrvShare, nint hrcSrvSource) @@ -799,17 +803,18 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.SwapBuffers_(nint) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SwapBuffers_ - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs startLine: 66 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl - summary: '[requires: v1.0] [entry point: SwapBuffers]
' + summary: >- + [requires: v1.0] + + [entry point: SwapBuffers] + +
example: [] syntax: content: public static int SwapBuffers_(nint hdc) @@ -823,44 +828,45 @@ items: nameWithType.vb: Wgl.SwapBuffers_(IntPtr) fullName.vb: OpenTK.Graphics.Wgl.Wgl.SwapBuffers_(System.IntPtr) name.vb: SwapBuffers_(IntPtr) -- uid: OpenTK.Graphics.Wgl.Wgl.SwapLayerBuffers_(System.IntPtr,OpenTK.Graphics.Wgl.WGLLayerPlaneMask) - commentId: M:OpenTK.Graphics.Wgl.Wgl.SwapLayerBuffers_(System.IntPtr,OpenTK.Graphics.Wgl.WGLLayerPlaneMask) - id: SwapLayerBuffers_(System.IntPtr,OpenTK.Graphics.Wgl.WGLLayerPlaneMask) +- uid: OpenTK.Graphics.Wgl.Wgl.SwapLayerBuffers_(System.IntPtr,OpenTK.Graphics.Wgl.LayerPlaneMask) + commentId: M:OpenTK.Graphics.Wgl.Wgl.SwapLayerBuffers_(System.IntPtr,OpenTK.Graphics.Wgl.LayerPlaneMask) + id: SwapLayerBuffers_(System.IntPtr,OpenTK.Graphics.Wgl.LayerPlaneMask) parent: OpenTK.Graphics.Wgl.Wgl langs: - csharp - vb - name: SwapLayerBuffers_(nint, WGLLayerPlaneMask) - nameWithType: Wgl.SwapLayerBuffers_(nint, WGLLayerPlaneMask) - fullName: OpenTK.Graphics.Wgl.Wgl.SwapLayerBuffers_(nint, OpenTK.Graphics.Wgl.WGLLayerPlaneMask) + name: SwapLayerBuffers_(nint, LayerPlaneMask) + nameWithType: Wgl.SwapLayerBuffers_(nint, LayerPlaneMask) + fullName: OpenTK.Graphics.Wgl.Wgl.SwapLayerBuffers_(nint, OpenTK.Graphics.Wgl.LayerPlaneMask) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SwapLayerBuffers_ - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs startLine: 69 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl - summary: '[requires: v1.0] [entry point: wglSwapLayerBuffers]
' + summary: >- + [requires: v1.0] + + [entry point: wglSwapLayerBuffers] + +
example: [] syntax: - content: public static int SwapLayerBuffers_(nint hdc, WGLLayerPlaneMask fuFlags) + content: public static int SwapLayerBuffers_(nint hdc, LayerPlaneMask fuFlags) parameters: - id: hdc type: System.IntPtr - id: fuFlags - type: OpenTK.Graphics.Wgl.WGLLayerPlaneMask + type: OpenTK.Graphics.Wgl.LayerPlaneMask return: type: System.Int32 - content.vb: Public Shared Function SwapLayerBuffers_(hdc As IntPtr, fuFlags As WGLLayerPlaneMask) As Integer + content.vb: Public Shared Function SwapLayerBuffers_(hdc As IntPtr, fuFlags As LayerPlaneMask) As Integer overload: OpenTK.Graphics.Wgl.Wgl.SwapLayerBuffers_* - nameWithType.vb: Wgl.SwapLayerBuffers_(IntPtr, WGLLayerPlaneMask) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.SwapLayerBuffers_(System.IntPtr, OpenTK.Graphics.Wgl.WGLLayerPlaneMask) - name.vb: SwapLayerBuffers_(IntPtr, WGLLayerPlaneMask) + nameWithType.vb: Wgl.SwapLayerBuffers_(IntPtr, LayerPlaneMask) + fullName.vb: OpenTK.Graphics.Wgl.Wgl.SwapLayerBuffers_(System.IntPtr, OpenTK.Graphics.Wgl.LayerPlaneMask) + name.vb: SwapLayerBuffers_(IntPtr, LayerPlaneMask) - uid: OpenTK.Graphics.Wgl.Wgl.UseFontBitmaps_(System.IntPtr,System.UInt32,System.UInt32,System.UInt32) commentId: M:OpenTK.Graphics.Wgl.Wgl.UseFontBitmaps_(System.IntPtr,System.UInt32,System.UInt32,System.UInt32) id: UseFontBitmaps_(System.IntPtr,System.UInt32,System.UInt32,System.UInt32) @@ -873,17 +879,18 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.UseFontBitmaps_(nint, uint, uint, uint) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: UseFontBitmaps_ - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs startLine: 72 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl - summary: '[requires: v1.0] [entry point: wglUseFontBitmaps]
' + summary: >- + [requires: v1.0] + + [entry point: wglUseFontBitmaps] + +
example: [] syntax: content: public static int UseFontBitmaps_(nint hDC, uint first, uint count, uint listBase) @@ -915,17 +922,18 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.UseFontBitmapsA_(nint, uint, uint, uint) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: UseFontBitmapsA_ - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs startLine: 75 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl - summary: '[requires: v1.0] [entry point: wglUseFontBitmapsA]
' + summary: >- + [requires: v1.0] + + [entry point: wglUseFontBitmapsA] + +
example: [] syntax: content: public static int UseFontBitmapsA_(nint hDC, uint first, uint count, uint listBase) @@ -957,17 +965,18 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.UseFontBitmapsW_(nint, uint, uint, uint) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: UseFontBitmapsW_ - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs startLine: 78 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl - summary: '[requires: v1.0] [entry point: wglUseFontBitmapsW]
' + summary: >- + [requires: v1.0] + + [entry point: wglUseFontBitmapsW] + +
example: [] syntax: content: public static int UseFontBitmapsW_(nint hDC, uint first, uint count, uint listBase) @@ -999,17 +1008,18 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.UseFontOutlines_(nint, uint, uint, uint, float, float, OpenTK.Graphics.Wgl.FontFormat, nint) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: UseFontOutlines_ - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs startLine: 81 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl - summary: '[requires: v1.0] [entry point: wglUseFontOutlines]
' + summary: >- + [requires: v1.0] + + [entry point: wglUseFontOutlines] + +
example: [] syntax: content: public static int UseFontOutlines_(nint hDC, uint first, uint count, uint listBase, float deviation, float extrusion, FontFormat format, nint lpgmf) @@ -1049,17 +1059,18 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.UseFontOutlinesA_(nint, uint, uint, uint, float, float, OpenTK.Graphics.Wgl.FontFormat, nint) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: UseFontOutlinesA_ - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs startLine: 84 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl - summary: '[requires: v1.0] [entry point: wglUseFontOutlinesA]
' + summary: >- + [requires: v1.0] + + [entry point: wglUseFontOutlinesA] + +
example: [] syntax: content: public static int UseFontOutlinesA_(nint hDC, uint first, uint count, uint listBase, float deviation, float extrusion, FontFormat format, nint lpgmf) @@ -1099,17 +1110,18 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.UseFontOutlinesW_(nint, uint, uint, uint, float, float, OpenTK.Graphics.Wgl.FontFormat, nint) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Native.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: UseFontOutlinesW_ - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Native.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs startLine: 87 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl - summary: '[requires: v1.0] [entry point: wglUseFontOutlinesW]
' + summary: >- + [requires: v1.0] + + [entry point: wglUseFontOutlinesW] + +
example: [] syntax: content: public static int UseFontOutlinesW_(nint hDC, uint first, uint count, uint listBase, float deviation, float extrusion, FontFormat format, nint lpgmf) @@ -1137,92 +1149,6 @@ items: nameWithType.vb: Wgl.UseFontOutlinesW_(IntPtr, UInteger, UInteger, UInteger, Single, Single, FontFormat, IntPtr) fullName.vb: OpenTK.Graphics.Wgl.Wgl.UseFontOutlinesW_(System.IntPtr, UInteger, UInteger, UInteger, Single, Single, OpenTK.Graphics.Wgl.FontFormat, System.IntPtr) name.vb: UseFontOutlinesW_(IntPtr, UInteger, UInteger, UInteger, Single, Single, FontFormat, IntPtr) -- uid: OpenTK.Graphics.Wgl.Wgl.ChoosePixelFormat(System.IntPtr,System.ReadOnlySpan{OpenTK.Graphics.Wgl.PixelFormatDescriptor}) - commentId: M:OpenTK.Graphics.Wgl.Wgl.ChoosePixelFormat(System.IntPtr,System.ReadOnlySpan{OpenTK.Graphics.Wgl.PixelFormatDescriptor}) - id: ChoosePixelFormat(System.IntPtr,System.ReadOnlySpan{OpenTK.Graphics.Wgl.PixelFormatDescriptor}) - parent: OpenTK.Graphics.Wgl.Wgl - langs: - - csharp - - vb - name: ChoosePixelFormat(nint, ReadOnlySpan) - nameWithType: Wgl.ChoosePixelFormat(nint, ReadOnlySpan) - fullName: OpenTK.Graphics.Wgl.Wgl.ChoosePixelFormat(nint, System.ReadOnlySpan) - type: Method - source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: ChoosePixelFormat - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 14 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: v1.0] - - [entry point: ChoosePixelFormat] - -
- example: [] - syntax: - content: public static int ChoosePixelFormat(nint hDc, ReadOnlySpan pPfd) - parameters: - - id: hDc - type: System.IntPtr - - id: pPfd - type: System.ReadOnlySpan{OpenTK.Graphics.Wgl.PixelFormatDescriptor} - return: - type: System.Int32 - content.vb: Public Shared Function ChoosePixelFormat(hDc As IntPtr, pPfd As ReadOnlySpan(Of PixelFormatDescriptor)) As Integer - overload: OpenTK.Graphics.Wgl.Wgl.ChoosePixelFormat* - nameWithType.vb: Wgl.ChoosePixelFormat(IntPtr, ReadOnlySpan(Of PixelFormatDescriptor)) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.ChoosePixelFormat(System.IntPtr, System.ReadOnlySpan(Of OpenTK.Graphics.Wgl.PixelFormatDescriptor)) - name.vb: ChoosePixelFormat(IntPtr, ReadOnlySpan(Of PixelFormatDescriptor)) -- uid: OpenTK.Graphics.Wgl.Wgl.ChoosePixelFormat(System.IntPtr,OpenTK.Graphics.Wgl.PixelFormatDescriptor[]) - commentId: M:OpenTK.Graphics.Wgl.Wgl.ChoosePixelFormat(System.IntPtr,OpenTK.Graphics.Wgl.PixelFormatDescriptor[]) - id: ChoosePixelFormat(System.IntPtr,OpenTK.Graphics.Wgl.PixelFormatDescriptor[]) - parent: OpenTK.Graphics.Wgl.Wgl - langs: - - csharp - - vb - name: ChoosePixelFormat(nint, PixelFormatDescriptor[]) - nameWithType: Wgl.ChoosePixelFormat(nint, PixelFormatDescriptor[]) - fullName: OpenTK.Graphics.Wgl.Wgl.ChoosePixelFormat(nint, OpenTK.Graphics.Wgl.PixelFormatDescriptor[]) - type: Method - source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: ChoosePixelFormat - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 24 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: v1.0] - - [entry point: ChoosePixelFormat] - -
- example: [] - syntax: - content: public static int ChoosePixelFormat(nint hDc, PixelFormatDescriptor[] pPfd) - parameters: - - id: hDc - type: System.IntPtr - - id: pPfd - type: OpenTK.Graphics.Wgl.PixelFormatDescriptor[] - return: - type: System.Int32 - content.vb: Public Shared Function ChoosePixelFormat(hDc As IntPtr, pPfd As PixelFormatDescriptor()) As Integer - overload: OpenTK.Graphics.Wgl.Wgl.ChoosePixelFormat* - nameWithType.vb: Wgl.ChoosePixelFormat(IntPtr, PixelFormatDescriptor()) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.ChoosePixelFormat(System.IntPtr, OpenTK.Graphics.Wgl.PixelFormatDescriptor()) - name.vb: ChoosePixelFormat(IntPtr, PixelFormatDescriptor()) - uid: OpenTK.Graphics.Wgl.Wgl.ChoosePixelFormat(System.IntPtr,OpenTK.Graphics.Wgl.PixelFormatDescriptor@) commentId: M:OpenTK.Graphics.Wgl.Wgl.ChoosePixelFormat(System.IntPtr,OpenTK.Graphics.Wgl.PixelFormatDescriptor@) id: ChoosePixelFormat(System.IntPtr,OpenTK.Graphics.Wgl.PixelFormatDescriptor@) @@ -1235,13 +1161,9 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.ChoosePixelFormat(nint, in OpenTK.Graphics.Wgl.PixelFormatDescriptor) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ChoosePixelFormat - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 34 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 14 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -1278,13 +1200,9 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.CopyContext(nint, nint, OpenTK.Graphics.OpenGL.AttribMask) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CopyContext - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 44 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 24 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -1317,13 +1235,9 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.DeleteContext(nint) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DeleteContext - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 53 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 33 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -1340,104 +1254,6 @@ items: nameWithType.vb: Wgl.DeleteContext(IntPtr) fullName.vb: OpenTK.Graphics.Wgl.Wgl.DeleteContext(System.IntPtr) name.vb: DeleteContext(IntPtr) -- uid: OpenTK.Graphics.Wgl.Wgl.DescribeLayerPlane(System.IntPtr,System.Int32,System.Int32,System.UInt32,System.Span{OpenTK.Graphics.Wgl.LayerPlaneDescriptor}) - commentId: M:OpenTK.Graphics.Wgl.Wgl.DescribeLayerPlane(System.IntPtr,System.Int32,System.Int32,System.UInt32,System.Span{OpenTK.Graphics.Wgl.LayerPlaneDescriptor}) - id: DescribeLayerPlane(System.IntPtr,System.Int32,System.Int32,System.UInt32,System.Span{OpenTK.Graphics.Wgl.LayerPlaneDescriptor}) - parent: OpenTK.Graphics.Wgl.Wgl - langs: - - csharp - - vb - name: DescribeLayerPlane(nint, int, int, uint, Span) - nameWithType: Wgl.DescribeLayerPlane(nint, int, int, uint, Span) - fullName: OpenTK.Graphics.Wgl.Wgl.DescribeLayerPlane(nint, int, int, uint, System.Span) - type: Method - source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: DescribeLayerPlane - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 62 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: v1.0] - - [entry point: wglDescribeLayerPlane] - -
- example: [] - syntax: - content: public static bool DescribeLayerPlane(nint hDc, int pixelFormat, int layerPlane, uint nBytes, Span plpd) - parameters: - - id: hDc - type: System.IntPtr - - id: pixelFormat - type: System.Int32 - - id: layerPlane - type: System.Int32 - - id: nBytes - type: System.UInt32 - - id: plpd - type: System.Span{OpenTK.Graphics.Wgl.LayerPlaneDescriptor} - return: - type: System.Boolean - content.vb: Public Shared Function DescribeLayerPlane(hDc As IntPtr, pixelFormat As Integer, layerPlane As Integer, nBytes As UInteger, plpd As Span(Of LayerPlaneDescriptor)) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.DescribeLayerPlane* - nameWithType.vb: Wgl.DescribeLayerPlane(IntPtr, Integer, Integer, UInteger, Span(Of LayerPlaneDescriptor)) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.DescribeLayerPlane(System.IntPtr, Integer, Integer, UInteger, System.Span(Of OpenTK.Graphics.Wgl.LayerPlaneDescriptor)) - name.vb: DescribeLayerPlane(IntPtr, Integer, Integer, UInteger, Span(Of LayerPlaneDescriptor)) -- uid: OpenTK.Graphics.Wgl.Wgl.DescribeLayerPlane(System.IntPtr,System.Int32,System.Int32,System.UInt32,OpenTK.Graphics.Wgl.LayerPlaneDescriptor[]) - commentId: M:OpenTK.Graphics.Wgl.Wgl.DescribeLayerPlane(System.IntPtr,System.Int32,System.Int32,System.UInt32,OpenTK.Graphics.Wgl.LayerPlaneDescriptor[]) - id: DescribeLayerPlane(System.IntPtr,System.Int32,System.Int32,System.UInt32,OpenTK.Graphics.Wgl.LayerPlaneDescriptor[]) - parent: OpenTK.Graphics.Wgl.Wgl - langs: - - csharp - - vb - name: DescribeLayerPlane(nint, int, int, uint, LayerPlaneDescriptor[]) - nameWithType: Wgl.DescribeLayerPlane(nint, int, int, uint, LayerPlaneDescriptor[]) - fullName: OpenTK.Graphics.Wgl.Wgl.DescribeLayerPlane(nint, int, int, uint, OpenTK.Graphics.Wgl.LayerPlaneDescriptor[]) - type: Method - source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: DescribeLayerPlane - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 74 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: v1.0] - - [entry point: wglDescribeLayerPlane] - -
- example: [] - syntax: - content: public static bool DescribeLayerPlane(nint hDc, int pixelFormat, int layerPlane, uint nBytes, LayerPlaneDescriptor[] plpd) - parameters: - - id: hDc - type: System.IntPtr - - id: pixelFormat - type: System.Int32 - - id: layerPlane - type: System.Int32 - - id: nBytes - type: System.UInt32 - - id: plpd - type: OpenTK.Graphics.Wgl.LayerPlaneDescriptor[] - return: - type: System.Boolean - content.vb: Public Shared Function DescribeLayerPlane(hDc As IntPtr, pixelFormat As Integer, layerPlane As Integer, nBytes As UInteger, plpd As LayerPlaneDescriptor()) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.DescribeLayerPlane* - nameWithType.vb: Wgl.DescribeLayerPlane(IntPtr, Integer, Integer, UInteger, LayerPlaneDescriptor()) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.DescribeLayerPlane(System.IntPtr, Integer, Integer, UInteger, OpenTK.Graphics.Wgl.LayerPlaneDescriptor()) - name.vb: DescribeLayerPlane(IntPtr, Integer, Integer, UInteger, LayerPlaneDescriptor()) - uid: OpenTK.Graphics.Wgl.Wgl.DescribeLayerPlane(System.IntPtr,System.Int32,System.Int32,System.UInt32,OpenTK.Graphics.Wgl.LayerPlaneDescriptor@) commentId: M:OpenTK.Graphics.Wgl.Wgl.DescribeLayerPlane(System.IntPtr,System.Int32,System.Int32,System.UInt32,OpenTK.Graphics.Wgl.LayerPlaneDescriptor@) id: DescribeLayerPlane(System.IntPtr,System.Int32,System.Int32,System.UInt32,OpenTK.Graphics.Wgl.LayerPlaneDescriptor@) @@ -1445,18 +1261,14 @@ items: langs: - csharp - vb - name: DescribeLayerPlane(nint, int, int, uint, ref LayerPlaneDescriptor) - nameWithType: Wgl.DescribeLayerPlane(nint, int, int, uint, ref LayerPlaneDescriptor) - fullName: OpenTK.Graphics.Wgl.Wgl.DescribeLayerPlane(nint, int, int, uint, ref OpenTK.Graphics.Wgl.LayerPlaneDescriptor) + name: DescribeLayerPlane(nint, int, int, uint, out LayerPlaneDescriptor) + nameWithType: Wgl.DescribeLayerPlane(nint, int, int, uint, out LayerPlaneDescriptor) + fullName: OpenTK.Graphics.Wgl.Wgl.DescribeLayerPlane(nint, int, int, uint, out OpenTK.Graphics.Wgl.LayerPlaneDescriptor) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DescribeLayerPlane - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 86 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 42 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -1468,7 +1280,7 @@ items:
example: [] syntax: - content: public static bool DescribeLayerPlane(nint hDc, int pixelFormat, int layerPlane, uint nBytes, ref LayerPlaneDescriptor plpd) + content: public static bool DescribeLayerPlane(nint hDc, int pixelFormat, int layerPlane, uint nBytes, out LayerPlaneDescriptor plpd) parameters: - id: hDc type: System.IntPtr @@ -1487,100 +1299,6 @@ items: nameWithType.vb: Wgl.DescribeLayerPlane(IntPtr, Integer, Integer, UInteger, LayerPlaneDescriptor) fullName.vb: OpenTK.Graphics.Wgl.Wgl.DescribeLayerPlane(System.IntPtr, Integer, Integer, UInteger, OpenTK.Graphics.Wgl.LayerPlaneDescriptor) name.vb: DescribeLayerPlane(IntPtr, Integer, Integer, UInteger, LayerPlaneDescriptor) -- uid: OpenTK.Graphics.Wgl.Wgl.DescribePixelFormat(System.IntPtr,System.Int32,System.UInt32,System.Span{OpenTK.Graphics.Wgl.PixelFormatDescriptor}) - commentId: M:OpenTK.Graphics.Wgl.Wgl.DescribePixelFormat(System.IntPtr,System.Int32,System.UInt32,System.Span{OpenTK.Graphics.Wgl.PixelFormatDescriptor}) - id: DescribePixelFormat(System.IntPtr,System.Int32,System.UInt32,System.Span{OpenTK.Graphics.Wgl.PixelFormatDescriptor}) - parent: OpenTK.Graphics.Wgl.Wgl - langs: - - csharp - - vb - name: DescribePixelFormat(nint, int, uint, Span) - nameWithType: Wgl.DescribePixelFormat(nint, int, uint, Span) - fullName: OpenTK.Graphics.Wgl.Wgl.DescribePixelFormat(nint, int, uint, System.Span) - type: Method - source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: DescribePixelFormat - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 98 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: v1.0] - - [entry point: DescribePixelFormat] - -
- example: [] - syntax: - content: public static int DescribePixelFormat(nint hdc, int ipfd, uint cjpfd, Span ppfd) - parameters: - - id: hdc - type: System.IntPtr - - id: ipfd - type: System.Int32 - - id: cjpfd - type: System.UInt32 - - id: ppfd - type: System.Span{OpenTK.Graphics.Wgl.PixelFormatDescriptor} - return: - type: System.Int32 - content.vb: Public Shared Function DescribePixelFormat(hdc As IntPtr, ipfd As Integer, cjpfd As UInteger, ppfd As Span(Of PixelFormatDescriptor)) As Integer - overload: OpenTK.Graphics.Wgl.Wgl.DescribePixelFormat* - nameWithType.vb: Wgl.DescribePixelFormat(IntPtr, Integer, UInteger, Span(Of PixelFormatDescriptor)) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.DescribePixelFormat(System.IntPtr, Integer, UInteger, System.Span(Of OpenTK.Graphics.Wgl.PixelFormatDescriptor)) - name.vb: DescribePixelFormat(IntPtr, Integer, UInteger, Span(Of PixelFormatDescriptor)) -- uid: OpenTK.Graphics.Wgl.Wgl.DescribePixelFormat(System.IntPtr,System.Int32,System.UInt32,OpenTK.Graphics.Wgl.PixelFormatDescriptor[]) - commentId: M:OpenTK.Graphics.Wgl.Wgl.DescribePixelFormat(System.IntPtr,System.Int32,System.UInt32,OpenTK.Graphics.Wgl.PixelFormatDescriptor[]) - id: DescribePixelFormat(System.IntPtr,System.Int32,System.UInt32,OpenTK.Graphics.Wgl.PixelFormatDescriptor[]) - parent: OpenTK.Graphics.Wgl.Wgl - langs: - - csharp - - vb - name: DescribePixelFormat(nint, int, uint, PixelFormatDescriptor[]) - nameWithType: Wgl.DescribePixelFormat(nint, int, uint, PixelFormatDescriptor[]) - fullName: OpenTK.Graphics.Wgl.Wgl.DescribePixelFormat(nint, int, uint, OpenTK.Graphics.Wgl.PixelFormatDescriptor[]) - type: Method - source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: DescribePixelFormat - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 108 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: v1.0] - - [entry point: DescribePixelFormat] - -
- example: [] - syntax: - content: public static int DescribePixelFormat(nint hdc, int ipfd, uint cjpfd, PixelFormatDescriptor[] ppfd) - parameters: - - id: hdc - type: System.IntPtr - - id: ipfd - type: System.Int32 - - id: cjpfd - type: System.UInt32 - - id: ppfd - type: OpenTK.Graphics.Wgl.PixelFormatDescriptor[] - return: - type: System.Int32 - content.vb: Public Shared Function DescribePixelFormat(hdc As IntPtr, ipfd As Integer, cjpfd As UInteger, ppfd As PixelFormatDescriptor()) As Integer - overload: OpenTK.Graphics.Wgl.Wgl.DescribePixelFormat* - nameWithType.vb: Wgl.DescribePixelFormat(IntPtr, Integer, UInteger, PixelFormatDescriptor()) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.DescribePixelFormat(System.IntPtr, Integer, UInteger, OpenTK.Graphics.Wgl.PixelFormatDescriptor()) - name.vb: DescribePixelFormat(IntPtr, Integer, UInteger, PixelFormatDescriptor()) - uid: OpenTK.Graphics.Wgl.Wgl.DescribePixelFormat(System.IntPtr,System.Int32,System.UInt32,OpenTK.Graphics.Wgl.PixelFormatDescriptor@) commentId: M:OpenTK.Graphics.Wgl.Wgl.DescribePixelFormat(System.IntPtr,System.Int32,System.UInt32,OpenTK.Graphics.Wgl.PixelFormatDescriptor@) id: DescribePixelFormat(System.IntPtr,System.Int32,System.UInt32,OpenTK.Graphics.Wgl.PixelFormatDescriptor@) @@ -1588,18 +1306,14 @@ items: langs: - csharp - vb - name: DescribePixelFormat(nint, int, uint, ref PixelFormatDescriptor) - nameWithType: Wgl.DescribePixelFormat(nint, int, uint, ref PixelFormatDescriptor) - fullName: OpenTK.Graphics.Wgl.Wgl.DescribePixelFormat(nint, int, uint, ref OpenTK.Graphics.Wgl.PixelFormatDescriptor) + name: DescribePixelFormat(nint, int, uint, out PixelFormatDescriptor) + nameWithType: Wgl.DescribePixelFormat(nint, int, uint, out PixelFormatDescriptor) + fullName: OpenTK.Graphics.Wgl.Wgl.DescribePixelFormat(nint, int, uint, out OpenTK.Graphics.Wgl.PixelFormatDescriptor) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DescribePixelFormat - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 118 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 54 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -1611,7 +1325,7 @@ items:
example: [] syntax: - content: public static int DescribePixelFormat(nint hdc, int ipfd, uint cjpfd, ref PixelFormatDescriptor ppfd) + content: public static int DescribePixelFormat(nint hdc, int ipfd, uint cjpfd, out PixelFormatDescriptor ppfd) parameters: - id: hdc type: System.IntPtr @@ -1628,96 +1342,6 @@ items: nameWithType.vb: Wgl.DescribePixelFormat(IntPtr, Integer, UInteger, PixelFormatDescriptor) fullName.vb: OpenTK.Graphics.Wgl.Wgl.DescribePixelFormat(System.IntPtr, Integer, UInteger, OpenTK.Graphics.Wgl.PixelFormatDescriptor) name.vb: DescribePixelFormat(IntPtr, Integer, UInteger, PixelFormatDescriptor) -- uid: OpenTK.Graphics.Wgl.Wgl.GetEnhMetaFilePixelFormat(System.IntPtr,System.UInt32,System.Span{OpenTK.Graphics.Wgl.PixelFormatDescriptor}) - commentId: M:OpenTK.Graphics.Wgl.Wgl.GetEnhMetaFilePixelFormat(System.IntPtr,System.UInt32,System.Span{OpenTK.Graphics.Wgl.PixelFormatDescriptor}) - id: GetEnhMetaFilePixelFormat(System.IntPtr,System.UInt32,System.Span{OpenTK.Graphics.Wgl.PixelFormatDescriptor}) - parent: OpenTK.Graphics.Wgl.Wgl - langs: - - csharp - - vb - name: GetEnhMetaFilePixelFormat(nint, uint, Span) - nameWithType: Wgl.GetEnhMetaFilePixelFormat(nint, uint, Span) - fullName: OpenTK.Graphics.Wgl.Wgl.GetEnhMetaFilePixelFormat(nint, uint, System.Span) - type: Method - source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: GetEnhMetaFilePixelFormat - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 128 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: v1.0] - - [entry point: GetEnhMetaFilePixelFormat] - -
- example: [] - syntax: - content: public static uint GetEnhMetaFilePixelFormat(nint hemf, uint cbBuffer, Span ppfd) - parameters: - - id: hemf - type: System.IntPtr - - id: cbBuffer - type: System.UInt32 - - id: ppfd - type: System.Span{OpenTK.Graphics.Wgl.PixelFormatDescriptor} - return: - type: System.UInt32 - content.vb: Public Shared Function GetEnhMetaFilePixelFormat(hemf As IntPtr, cbBuffer As UInteger, ppfd As Span(Of PixelFormatDescriptor)) As UInteger - overload: OpenTK.Graphics.Wgl.Wgl.GetEnhMetaFilePixelFormat* - nameWithType.vb: Wgl.GetEnhMetaFilePixelFormat(IntPtr, UInteger, Span(Of PixelFormatDescriptor)) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.GetEnhMetaFilePixelFormat(System.IntPtr, UInteger, System.Span(Of OpenTK.Graphics.Wgl.PixelFormatDescriptor)) - name.vb: GetEnhMetaFilePixelFormat(IntPtr, UInteger, Span(Of PixelFormatDescriptor)) -- uid: OpenTK.Graphics.Wgl.Wgl.GetEnhMetaFilePixelFormat(System.IntPtr,System.UInt32,OpenTK.Graphics.Wgl.PixelFormatDescriptor[]) - commentId: M:OpenTK.Graphics.Wgl.Wgl.GetEnhMetaFilePixelFormat(System.IntPtr,System.UInt32,OpenTK.Graphics.Wgl.PixelFormatDescriptor[]) - id: GetEnhMetaFilePixelFormat(System.IntPtr,System.UInt32,OpenTK.Graphics.Wgl.PixelFormatDescriptor[]) - parent: OpenTK.Graphics.Wgl.Wgl - langs: - - csharp - - vb - name: GetEnhMetaFilePixelFormat(nint, uint, PixelFormatDescriptor[]) - nameWithType: Wgl.GetEnhMetaFilePixelFormat(nint, uint, PixelFormatDescriptor[]) - fullName: OpenTK.Graphics.Wgl.Wgl.GetEnhMetaFilePixelFormat(nint, uint, OpenTK.Graphics.Wgl.PixelFormatDescriptor[]) - type: Method - source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: GetEnhMetaFilePixelFormat - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 138 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: v1.0] - - [entry point: GetEnhMetaFilePixelFormat] - -
- example: [] - syntax: - content: public static uint GetEnhMetaFilePixelFormat(nint hemf, uint cbBuffer, PixelFormatDescriptor[] ppfd) - parameters: - - id: hemf - type: System.IntPtr - - id: cbBuffer - type: System.UInt32 - - id: ppfd - type: OpenTK.Graphics.Wgl.PixelFormatDescriptor[] - return: - type: System.UInt32 - content.vb: Public Shared Function GetEnhMetaFilePixelFormat(hemf As IntPtr, cbBuffer As UInteger, ppfd As PixelFormatDescriptor()) As UInteger - overload: OpenTK.Graphics.Wgl.Wgl.GetEnhMetaFilePixelFormat* - nameWithType.vb: Wgl.GetEnhMetaFilePixelFormat(IntPtr, UInteger, PixelFormatDescriptor()) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.GetEnhMetaFilePixelFormat(System.IntPtr, UInteger, OpenTK.Graphics.Wgl.PixelFormatDescriptor()) - name.vb: GetEnhMetaFilePixelFormat(IntPtr, UInteger, PixelFormatDescriptor()) - uid: OpenTK.Graphics.Wgl.Wgl.GetEnhMetaFilePixelFormat(System.IntPtr,System.UInt32,OpenTK.Graphics.Wgl.PixelFormatDescriptor@) commentId: M:OpenTK.Graphics.Wgl.Wgl.GetEnhMetaFilePixelFormat(System.IntPtr,System.UInt32,OpenTK.Graphics.Wgl.PixelFormatDescriptor@) id: GetEnhMetaFilePixelFormat(System.IntPtr,System.UInt32,OpenTK.Graphics.Wgl.PixelFormatDescriptor@) @@ -1725,18 +1349,14 @@ items: langs: - csharp - vb - name: GetEnhMetaFilePixelFormat(nint, uint, ref PixelFormatDescriptor) - nameWithType: Wgl.GetEnhMetaFilePixelFormat(nint, uint, ref PixelFormatDescriptor) - fullName: OpenTK.Graphics.Wgl.Wgl.GetEnhMetaFilePixelFormat(nint, uint, ref OpenTK.Graphics.Wgl.PixelFormatDescriptor) + name: GetEnhMetaFilePixelFormat(nint, uint, out PixelFormatDescriptor) + nameWithType: Wgl.GetEnhMetaFilePixelFormat(nint, uint, out PixelFormatDescriptor) + fullName: OpenTK.Graphics.Wgl.Wgl.GetEnhMetaFilePixelFormat(nint, uint, out OpenTK.Graphics.Wgl.PixelFormatDescriptor) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetEnhMetaFilePixelFormat - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 148 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 64 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -1748,7 +1368,7 @@ items:
example: [] syntax: - content: public static uint GetEnhMetaFilePixelFormat(nint hemf, uint cbBuffer, ref PixelFormatDescriptor ppfd) + content: public static uint GetEnhMetaFilePixelFormat(nint hemf, uint cbBuffer, out PixelFormatDescriptor ppfd) parameters: - id: hemf type: System.IntPtr @@ -1763,25 +1383,21 @@ items: nameWithType.vb: Wgl.GetEnhMetaFilePixelFormat(IntPtr, UInteger, PixelFormatDescriptor) fullName.vb: OpenTK.Graphics.Wgl.Wgl.GetEnhMetaFilePixelFormat(System.IntPtr, UInteger, OpenTK.Graphics.Wgl.PixelFormatDescriptor) name.vb: GetEnhMetaFilePixelFormat(IntPtr, UInteger, PixelFormatDescriptor) -- uid: OpenTK.Graphics.Wgl.Wgl.GetLayerPaletteEntries(System.IntPtr,System.Int32,System.Int32,System.Span{OpenTK.Graphics.Wgl.ColorRef}) - commentId: M:OpenTK.Graphics.Wgl.Wgl.GetLayerPaletteEntries(System.IntPtr,System.Int32,System.Int32,System.Span{OpenTK.Graphics.Wgl.ColorRef}) - id: GetLayerPaletteEntries(System.IntPtr,System.Int32,System.Int32,System.Span{OpenTK.Graphics.Wgl.ColorRef}) +- uid: OpenTK.Graphics.Wgl.Wgl.GetLayerPaletteEntries(System.IntPtr,System.Int32,System.Int32,System.Int32,System.Span{OpenTK.Graphics.Wgl.ColorRef}) + commentId: M:OpenTK.Graphics.Wgl.Wgl.GetLayerPaletteEntries(System.IntPtr,System.Int32,System.Int32,System.Int32,System.Span{OpenTK.Graphics.Wgl.ColorRef}) + id: GetLayerPaletteEntries(System.IntPtr,System.Int32,System.Int32,System.Int32,System.Span{OpenTK.Graphics.Wgl.ColorRef}) parent: OpenTK.Graphics.Wgl.Wgl langs: - csharp - vb - name: GetLayerPaletteEntries(nint, int, int, Span) - nameWithType: Wgl.GetLayerPaletteEntries(nint, int, int, Span) - fullName: OpenTK.Graphics.Wgl.Wgl.GetLayerPaletteEntries(nint, int, int, System.Span) + name: GetLayerPaletteEntries(nint, int, int, int, Span) + nameWithType: Wgl.GetLayerPaletteEntries(nint, int, int, int, Span) + fullName: OpenTK.Graphics.Wgl.Wgl.GetLayerPaletteEntries(nint, int, int, int, System.Span) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetLayerPaletteEntries - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 158 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 74 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -1793,7 +1409,7 @@ items:
example: [] syntax: - content: public static int GetLayerPaletteEntries(nint hdc, int iLayerPlane, int iStart, Span pcr) + content: public static int GetLayerPaletteEntries(nint hdc, int iLayerPlane, int iStart, int cEntries, Span pcr) parameters: - id: hdc type: System.IntPtr @@ -1801,34 +1417,32 @@ items: type: System.Int32 - id: iStart type: System.Int32 + - id: cEntries + type: System.Int32 - id: pcr type: System.Span{OpenTK.Graphics.Wgl.ColorRef} return: type: System.Int32 - content.vb: Public Shared Function GetLayerPaletteEntries(hdc As IntPtr, iLayerPlane As Integer, iStart As Integer, pcr As Span(Of ColorRef)) As Integer + content.vb: Public Shared Function GetLayerPaletteEntries(hdc As IntPtr, iLayerPlane As Integer, iStart As Integer, cEntries As Integer, pcr As Span(Of ColorRef)) As Integer overload: OpenTK.Graphics.Wgl.Wgl.GetLayerPaletteEntries* - nameWithType.vb: Wgl.GetLayerPaletteEntries(IntPtr, Integer, Integer, Span(Of ColorRef)) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.GetLayerPaletteEntries(System.IntPtr, Integer, Integer, System.Span(Of OpenTK.Graphics.Wgl.ColorRef)) - name.vb: GetLayerPaletteEntries(IntPtr, Integer, Integer, Span(Of ColorRef)) -- uid: OpenTK.Graphics.Wgl.Wgl.GetLayerPaletteEntries(System.IntPtr,System.Int32,System.Int32,OpenTK.Graphics.Wgl.ColorRef[]) - commentId: M:OpenTK.Graphics.Wgl.Wgl.GetLayerPaletteEntries(System.IntPtr,System.Int32,System.Int32,OpenTK.Graphics.Wgl.ColorRef[]) - id: GetLayerPaletteEntries(System.IntPtr,System.Int32,System.Int32,OpenTK.Graphics.Wgl.ColorRef[]) + nameWithType.vb: Wgl.GetLayerPaletteEntries(IntPtr, Integer, Integer, Integer, Span(Of ColorRef)) + fullName.vb: OpenTK.Graphics.Wgl.Wgl.GetLayerPaletteEntries(System.IntPtr, Integer, Integer, Integer, System.Span(Of OpenTK.Graphics.Wgl.ColorRef)) + name.vb: GetLayerPaletteEntries(IntPtr, Integer, Integer, Integer, Span(Of ColorRef)) +- uid: OpenTK.Graphics.Wgl.Wgl.GetLayerPaletteEntries(System.IntPtr,System.Int32,System.Int32,System.Int32,OpenTK.Graphics.Wgl.ColorRef[]) + commentId: M:OpenTK.Graphics.Wgl.Wgl.GetLayerPaletteEntries(System.IntPtr,System.Int32,System.Int32,System.Int32,OpenTK.Graphics.Wgl.ColorRef[]) + id: GetLayerPaletteEntries(System.IntPtr,System.Int32,System.Int32,System.Int32,OpenTK.Graphics.Wgl.ColorRef[]) parent: OpenTK.Graphics.Wgl.Wgl langs: - csharp - vb - name: GetLayerPaletteEntries(nint, int, int, ColorRef[]) - nameWithType: Wgl.GetLayerPaletteEntries(nint, int, int, ColorRef[]) - fullName: OpenTK.Graphics.Wgl.Wgl.GetLayerPaletteEntries(nint, int, int, OpenTK.Graphics.Wgl.ColorRef[]) + name: GetLayerPaletteEntries(nint, int, int, int, ColorRef[]) + nameWithType: Wgl.GetLayerPaletteEntries(nint, int, int, int, ColorRef[]) + fullName: OpenTK.Graphics.Wgl.Wgl.GetLayerPaletteEntries(nint, int, int, int, OpenTK.Graphics.Wgl.ColorRef[]) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetLayerPaletteEntries - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 169 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 84 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -1840,7 +1454,7 @@ items:
example: [] syntax: - content: public static int GetLayerPaletteEntries(nint hdc, int iLayerPlane, int iStart, ColorRef[] pcr) + content: public static int GetLayerPaletteEntries(nint hdc, int iLayerPlane, int iStart, int cEntries, ColorRef[] pcr) parameters: - id: hdc type: System.IntPtr @@ -1848,15 +1462,17 @@ items: type: System.Int32 - id: iStart type: System.Int32 + - id: cEntries + type: System.Int32 - id: pcr type: OpenTK.Graphics.Wgl.ColorRef[] return: type: System.Int32 - content.vb: Public Shared Function GetLayerPaletteEntries(hdc As IntPtr, iLayerPlane As Integer, iStart As Integer, pcr As ColorRef()) As Integer + content.vb: Public Shared Function GetLayerPaletteEntries(hdc As IntPtr, iLayerPlane As Integer, iStart As Integer, cEntries As Integer, pcr As ColorRef()) As Integer overload: OpenTK.Graphics.Wgl.Wgl.GetLayerPaletteEntries* - nameWithType.vb: Wgl.GetLayerPaletteEntries(IntPtr, Integer, Integer, ColorRef()) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.GetLayerPaletteEntries(System.IntPtr, Integer, Integer, OpenTK.Graphics.Wgl.ColorRef()) - name.vb: GetLayerPaletteEntries(IntPtr, Integer, Integer, ColorRef()) + nameWithType.vb: Wgl.GetLayerPaletteEntries(IntPtr, Integer, Integer, Integer, ColorRef()) + fullName.vb: OpenTK.Graphics.Wgl.Wgl.GetLayerPaletteEntries(System.IntPtr, Integer, Integer, Integer, OpenTK.Graphics.Wgl.ColorRef()) + name.vb: GetLayerPaletteEntries(IntPtr, Integer, Integer, Integer, ColorRef()) - uid: OpenTK.Graphics.Wgl.Wgl.GetLayerPaletteEntries(System.IntPtr,System.Int32,System.Int32,System.Int32,OpenTK.Graphics.Wgl.ColorRef@) commentId: M:OpenTK.Graphics.Wgl.Wgl.GetLayerPaletteEntries(System.IntPtr,System.Int32,System.Int32,System.Int32,OpenTK.Graphics.Wgl.ColorRef@) id: GetLayerPaletteEntries(System.IntPtr,System.Int32,System.Int32,System.Int32,OpenTK.Graphics.Wgl.ColorRef@) @@ -1869,13 +1485,9 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.GetLayerPaletteEntries(nint, int, int, int, ref OpenTK.Graphics.Wgl.ColorRef) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetLayerPaletteEntries - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 180 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 94 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -1918,13 +1530,9 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.GetProcAddress(string) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetProcAddress - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 190 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 104 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -1959,13 +1567,9 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.MakeCurrent(nint, nint) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MakeCurrent - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 199 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 113 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -1996,13 +1600,9 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.RealizeLayerPalette(nint, int, int) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: RealizeLayerPalette - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 208 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 122 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -2023,119 +1623,21 @@ items: nameWithType.vb: Wgl.RealizeLayerPalette(IntPtr, Integer, Integer) fullName.vb: OpenTK.Graphics.Wgl.Wgl.RealizeLayerPalette(System.IntPtr, Integer, Integer) name.vb: RealizeLayerPalette(IntPtr, Integer, Integer) -- uid: OpenTK.Graphics.Wgl.Wgl.SetLayerPaletteEntries(System.IntPtr,System.Int32,System.Int32,System.ReadOnlySpan{OpenTK.Graphics.Wgl.ColorRef}) - commentId: M:OpenTK.Graphics.Wgl.Wgl.SetLayerPaletteEntries(System.IntPtr,System.Int32,System.Int32,System.ReadOnlySpan{OpenTK.Graphics.Wgl.ColorRef}) - id: SetLayerPaletteEntries(System.IntPtr,System.Int32,System.Int32,System.ReadOnlySpan{OpenTK.Graphics.Wgl.ColorRef}) - parent: OpenTK.Graphics.Wgl.Wgl - langs: - - csharp - - vb - name: SetLayerPaletteEntries(nint, int, int, ReadOnlySpan) - nameWithType: Wgl.SetLayerPaletteEntries(nint, int, int, ReadOnlySpan) - fullName: OpenTK.Graphics.Wgl.Wgl.SetLayerPaletteEntries(nint, int, int, System.ReadOnlySpan) - type: Method - source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: SetLayerPaletteEntries - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 217 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: v1.0] - - [entry point: wglSetLayerPaletteEntries] - -
- example: [] - syntax: - content: public static int SetLayerPaletteEntries(nint hdc, int iLayerPlane, int iStart, ReadOnlySpan pcr) - parameters: - - id: hdc - type: System.IntPtr - - id: iLayerPlane - type: System.Int32 - - id: iStart - type: System.Int32 - - id: pcr - type: System.ReadOnlySpan{OpenTK.Graphics.Wgl.ColorRef} - return: - type: System.Int32 - content.vb: Public Shared Function SetLayerPaletteEntries(hdc As IntPtr, iLayerPlane As Integer, iStart As Integer, pcr As ReadOnlySpan(Of ColorRef)) As Integer - overload: OpenTK.Graphics.Wgl.Wgl.SetLayerPaletteEntries* - nameWithType.vb: Wgl.SetLayerPaletteEntries(IntPtr, Integer, Integer, ReadOnlySpan(Of ColorRef)) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.SetLayerPaletteEntries(System.IntPtr, Integer, Integer, System.ReadOnlySpan(Of OpenTK.Graphics.Wgl.ColorRef)) - name.vb: SetLayerPaletteEntries(IntPtr, Integer, Integer, ReadOnlySpan(Of ColorRef)) -- uid: OpenTK.Graphics.Wgl.Wgl.SetLayerPaletteEntries(System.IntPtr,System.Int32,System.Int32,OpenTK.Graphics.Wgl.ColorRef[]) - commentId: M:OpenTK.Graphics.Wgl.Wgl.SetLayerPaletteEntries(System.IntPtr,System.Int32,System.Int32,OpenTK.Graphics.Wgl.ColorRef[]) - id: SetLayerPaletteEntries(System.IntPtr,System.Int32,System.Int32,OpenTK.Graphics.Wgl.ColorRef[]) - parent: OpenTK.Graphics.Wgl.Wgl - langs: - - csharp - - vb - name: SetLayerPaletteEntries(nint, int, int, ColorRef[]) - nameWithType: Wgl.SetLayerPaletteEntries(nint, int, int, ColorRef[]) - fullName: OpenTK.Graphics.Wgl.Wgl.SetLayerPaletteEntries(nint, int, int, OpenTK.Graphics.Wgl.ColorRef[]) - type: Method - source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: SetLayerPaletteEntries - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 228 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: v1.0] - - [entry point: wglSetLayerPaletteEntries] - -
- example: [] - syntax: - content: public static int SetLayerPaletteEntries(nint hdc, int iLayerPlane, int iStart, ColorRef[] pcr) - parameters: - - id: hdc - type: System.IntPtr - - id: iLayerPlane - type: System.Int32 - - id: iStart - type: System.Int32 - - id: pcr - type: OpenTK.Graphics.Wgl.ColorRef[] - return: - type: System.Int32 - content.vb: Public Shared Function SetLayerPaletteEntries(hdc As IntPtr, iLayerPlane As Integer, iStart As Integer, pcr As ColorRef()) As Integer - overload: OpenTK.Graphics.Wgl.Wgl.SetLayerPaletteEntries* - nameWithType.vb: Wgl.SetLayerPaletteEntries(IntPtr, Integer, Integer, ColorRef()) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.SetLayerPaletteEntries(System.IntPtr, Integer, Integer, OpenTK.Graphics.Wgl.ColorRef()) - name.vb: SetLayerPaletteEntries(IntPtr, Integer, Integer, ColorRef()) -- uid: OpenTK.Graphics.Wgl.Wgl.SetLayerPaletteEntries(System.IntPtr,System.Int32,System.Int32,System.Int32,OpenTK.Graphics.Wgl.ColorRef@) - commentId: M:OpenTK.Graphics.Wgl.Wgl.SetLayerPaletteEntries(System.IntPtr,System.Int32,System.Int32,System.Int32,OpenTK.Graphics.Wgl.ColorRef@) - id: SetLayerPaletteEntries(System.IntPtr,System.Int32,System.Int32,System.Int32,OpenTK.Graphics.Wgl.ColorRef@) +- uid: OpenTK.Graphics.Wgl.Wgl.SetLayerPaletteEntries(System.IntPtr,System.Int32,System.Int32,System.Int32,System.ReadOnlySpan{OpenTK.Graphics.Wgl.ColorRef}) + commentId: M:OpenTK.Graphics.Wgl.Wgl.SetLayerPaletteEntries(System.IntPtr,System.Int32,System.Int32,System.Int32,System.ReadOnlySpan{OpenTK.Graphics.Wgl.ColorRef}) + id: SetLayerPaletteEntries(System.IntPtr,System.Int32,System.Int32,System.Int32,System.ReadOnlySpan{OpenTK.Graphics.Wgl.ColorRef}) parent: OpenTK.Graphics.Wgl.Wgl langs: - csharp - vb - name: SetLayerPaletteEntries(nint, int, int, int, in ColorRef) - nameWithType: Wgl.SetLayerPaletteEntries(nint, int, int, int, in ColorRef) - fullName: OpenTK.Graphics.Wgl.Wgl.SetLayerPaletteEntries(nint, int, int, int, in OpenTK.Graphics.Wgl.ColorRef) + name: SetLayerPaletteEntries(nint, int, int, int, ReadOnlySpan) + nameWithType: Wgl.SetLayerPaletteEntries(nint, int, int, int, ReadOnlySpan) + fullName: OpenTK.Graphics.Wgl.Wgl.SetLayerPaletteEntries(nint, int, int, int, System.ReadOnlySpan) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetLayerPaletteEntries - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 239 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 131 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -2147,7 +1649,7 @@ items:
example: [] syntax: - content: public static int SetLayerPaletteEntries(nint hdc, int iLayerPlane, int iStart, int cEntries, in ColorRef pcr) + content: public static int SetLayerPaletteEntries(nint hdc, int iLayerPlane, int iStart, int cEntries, ReadOnlySpan pcr) parameters: - id: hdc type: System.IntPtr @@ -2158,104 +1660,104 @@ items: - id: cEntries type: System.Int32 - id: pcr - type: OpenTK.Graphics.Wgl.ColorRef + type: System.ReadOnlySpan{OpenTK.Graphics.Wgl.ColorRef} return: type: System.Int32 - content.vb: Public Shared Function SetLayerPaletteEntries(hdc As IntPtr, iLayerPlane As Integer, iStart As Integer, cEntries As Integer, pcr As ColorRef) As Integer + content.vb: Public Shared Function SetLayerPaletteEntries(hdc As IntPtr, iLayerPlane As Integer, iStart As Integer, cEntries As Integer, pcr As ReadOnlySpan(Of ColorRef)) As Integer overload: OpenTK.Graphics.Wgl.Wgl.SetLayerPaletteEntries* - nameWithType.vb: Wgl.SetLayerPaletteEntries(IntPtr, Integer, Integer, Integer, ColorRef) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.SetLayerPaletteEntries(System.IntPtr, Integer, Integer, Integer, OpenTK.Graphics.Wgl.ColorRef) - name.vb: SetLayerPaletteEntries(IntPtr, Integer, Integer, Integer, ColorRef) -- uid: OpenTK.Graphics.Wgl.Wgl.SetPixelFormat(System.IntPtr,System.Int32,System.ReadOnlySpan{OpenTK.Graphics.Wgl.PixelFormatDescriptor}) - commentId: M:OpenTK.Graphics.Wgl.Wgl.SetPixelFormat(System.IntPtr,System.Int32,System.ReadOnlySpan{OpenTK.Graphics.Wgl.PixelFormatDescriptor}) - id: SetPixelFormat(System.IntPtr,System.Int32,System.ReadOnlySpan{OpenTK.Graphics.Wgl.PixelFormatDescriptor}) + nameWithType.vb: Wgl.SetLayerPaletteEntries(IntPtr, Integer, Integer, Integer, ReadOnlySpan(Of ColorRef)) + fullName.vb: OpenTK.Graphics.Wgl.Wgl.SetLayerPaletteEntries(System.IntPtr, Integer, Integer, Integer, System.ReadOnlySpan(Of OpenTK.Graphics.Wgl.ColorRef)) + name.vb: SetLayerPaletteEntries(IntPtr, Integer, Integer, Integer, ReadOnlySpan(Of ColorRef)) +- uid: OpenTK.Graphics.Wgl.Wgl.SetLayerPaletteEntries(System.IntPtr,System.Int32,System.Int32,System.Int32,OpenTK.Graphics.Wgl.ColorRef[]) + commentId: M:OpenTK.Graphics.Wgl.Wgl.SetLayerPaletteEntries(System.IntPtr,System.Int32,System.Int32,System.Int32,OpenTK.Graphics.Wgl.ColorRef[]) + id: SetLayerPaletteEntries(System.IntPtr,System.Int32,System.Int32,System.Int32,OpenTK.Graphics.Wgl.ColorRef[]) parent: OpenTK.Graphics.Wgl.Wgl langs: - csharp - vb - name: SetPixelFormat(nint, int, ReadOnlySpan) - nameWithType: Wgl.SetPixelFormat(nint, int, ReadOnlySpan) - fullName: OpenTK.Graphics.Wgl.Wgl.SetPixelFormat(nint, int, System.ReadOnlySpan) + name: SetLayerPaletteEntries(nint, int, int, int, ColorRef[]) + nameWithType: Wgl.SetLayerPaletteEntries(nint, int, int, int, ColorRef[]) + fullName: OpenTK.Graphics.Wgl.Wgl.SetLayerPaletteEntries(nint, int, int, int, OpenTK.Graphics.Wgl.ColorRef[]) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: SetPixelFormat - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 249 + id: SetLayerPaletteEntries + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 141 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl summary: >- [requires: v1.0] - [entry point: SetPixelFormat] + [entry point: wglSetLayerPaletteEntries]
example: [] syntax: - content: public static bool SetPixelFormat(nint hdc, int ipfd, ReadOnlySpan ppfd) + content: public static int SetLayerPaletteEntries(nint hdc, int iLayerPlane, int iStart, int cEntries, ColorRef[] pcr) parameters: - id: hdc type: System.IntPtr - - id: ipfd + - id: iLayerPlane type: System.Int32 - - id: ppfd - type: System.ReadOnlySpan{OpenTK.Graphics.Wgl.PixelFormatDescriptor} + - id: iStart + type: System.Int32 + - id: cEntries + type: System.Int32 + - id: pcr + type: OpenTK.Graphics.Wgl.ColorRef[] return: - type: System.Boolean - content.vb: Public Shared Function SetPixelFormat(hdc As IntPtr, ipfd As Integer, ppfd As ReadOnlySpan(Of PixelFormatDescriptor)) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.SetPixelFormat* - nameWithType.vb: Wgl.SetPixelFormat(IntPtr, Integer, ReadOnlySpan(Of PixelFormatDescriptor)) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.SetPixelFormat(System.IntPtr, Integer, System.ReadOnlySpan(Of OpenTK.Graphics.Wgl.PixelFormatDescriptor)) - name.vb: SetPixelFormat(IntPtr, Integer, ReadOnlySpan(Of PixelFormatDescriptor)) -- uid: OpenTK.Graphics.Wgl.Wgl.SetPixelFormat(System.IntPtr,System.Int32,OpenTK.Graphics.Wgl.PixelFormatDescriptor[]) - commentId: M:OpenTK.Graphics.Wgl.Wgl.SetPixelFormat(System.IntPtr,System.Int32,OpenTK.Graphics.Wgl.PixelFormatDescriptor[]) - id: SetPixelFormat(System.IntPtr,System.Int32,OpenTK.Graphics.Wgl.PixelFormatDescriptor[]) + type: System.Int32 + content.vb: Public Shared Function SetLayerPaletteEntries(hdc As IntPtr, iLayerPlane As Integer, iStart As Integer, cEntries As Integer, pcr As ColorRef()) As Integer + overload: OpenTK.Graphics.Wgl.Wgl.SetLayerPaletteEntries* + nameWithType.vb: Wgl.SetLayerPaletteEntries(IntPtr, Integer, Integer, Integer, ColorRef()) + fullName.vb: OpenTK.Graphics.Wgl.Wgl.SetLayerPaletteEntries(System.IntPtr, Integer, Integer, Integer, OpenTK.Graphics.Wgl.ColorRef()) + name.vb: SetLayerPaletteEntries(IntPtr, Integer, Integer, Integer, ColorRef()) +- uid: OpenTK.Graphics.Wgl.Wgl.SetLayerPaletteEntries(System.IntPtr,System.Int32,System.Int32,System.Int32,OpenTK.Graphics.Wgl.ColorRef@) + commentId: M:OpenTK.Graphics.Wgl.Wgl.SetLayerPaletteEntries(System.IntPtr,System.Int32,System.Int32,System.Int32,OpenTK.Graphics.Wgl.ColorRef@) + id: SetLayerPaletteEntries(System.IntPtr,System.Int32,System.Int32,System.Int32,OpenTK.Graphics.Wgl.ColorRef@) parent: OpenTK.Graphics.Wgl.Wgl langs: - csharp - vb - name: SetPixelFormat(nint, int, PixelFormatDescriptor[]) - nameWithType: Wgl.SetPixelFormat(nint, int, PixelFormatDescriptor[]) - fullName: OpenTK.Graphics.Wgl.Wgl.SetPixelFormat(nint, int, OpenTK.Graphics.Wgl.PixelFormatDescriptor[]) + name: SetLayerPaletteEntries(nint, int, int, int, in ColorRef) + nameWithType: Wgl.SetLayerPaletteEntries(nint, int, int, int, in ColorRef) + fullName: OpenTK.Graphics.Wgl.Wgl.SetLayerPaletteEntries(nint, int, int, int, in OpenTK.Graphics.Wgl.ColorRef) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: SetPixelFormat - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 261 + id: SetLayerPaletteEntries + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 151 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl summary: >- [requires: v1.0] - [entry point: SetPixelFormat] + [entry point: wglSetLayerPaletteEntries]
example: [] syntax: - content: public static bool SetPixelFormat(nint hdc, int ipfd, PixelFormatDescriptor[] ppfd) + content: public static int SetLayerPaletteEntries(nint hdc, int iLayerPlane, int iStart, int cEntries, in ColorRef pcr) parameters: - id: hdc type: System.IntPtr - - id: ipfd + - id: iLayerPlane type: System.Int32 - - id: ppfd - type: OpenTK.Graphics.Wgl.PixelFormatDescriptor[] + - id: iStart + type: System.Int32 + - id: cEntries + type: System.Int32 + - id: pcr + type: OpenTK.Graphics.Wgl.ColorRef return: - type: System.Boolean - content.vb: Public Shared Function SetPixelFormat(hdc As IntPtr, ipfd As Integer, ppfd As PixelFormatDescriptor()) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.SetPixelFormat* - nameWithType.vb: Wgl.SetPixelFormat(IntPtr, Integer, PixelFormatDescriptor()) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.SetPixelFormat(System.IntPtr, Integer, OpenTK.Graphics.Wgl.PixelFormatDescriptor()) - name.vb: SetPixelFormat(IntPtr, Integer, PixelFormatDescriptor()) + type: System.Int32 + content.vb: Public Shared Function SetLayerPaletteEntries(hdc As IntPtr, iLayerPlane As Integer, iStart As Integer, cEntries As Integer, pcr As ColorRef) As Integer + overload: OpenTK.Graphics.Wgl.Wgl.SetLayerPaletteEntries* + nameWithType.vb: Wgl.SetLayerPaletteEntries(IntPtr, Integer, Integer, Integer, ColorRef) + fullName.vb: OpenTK.Graphics.Wgl.Wgl.SetLayerPaletteEntries(System.IntPtr, Integer, Integer, Integer, OpenTK.Graphics.Wgl.ColorRef) + name.vb: SetLayerPaletteEntries(IntPtr, Integer, Integer, Integer, ColorRef) - uid: OpenTK.Graphics.Wgl.Wgl.SetPixelFormat(System.IntPtr,System.Int32,OpenTK.Graphics.Wgl.PixelFormatDescriptor@) commentId: M:OpenTK.Graphics.Wgl.Wgl.SetPixelFormat(System.IntPtr,System.Int32,OpenTK.Graphics.Wgl.PixelFormatDescriptor@) id: SetPixelFormat(System.IntPtr,System.Int32,OpenTK.Graphics.Wgl.PixelFormatDescriptor@) @@ -2268,13 +1770,9 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.SetPixelFormat(nint, int, in OpenTK.Graphics.Wgl.PixelFormatDescriptor) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetPixelFormat - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 273 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 161 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -2313,13 +1811,9 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.ShareLists(nint, nint) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ShareLists - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 285 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 173 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -2350,13 +1844,9 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.SwapBuffers(nint) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SwapBuffers - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 294 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 182 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -2373,43 +1863,39 @@ items: nameWithType.vb: Wgl.SwapBuffers(IntPtr) fullName.vb: OpenTK.Graphics.Wgl.Wgl.SwapBuffers(System.IntPtr) name.vb: SwapBuffers(IntPtr) -- uid: OpenTK.Graphics.Wgl.Wgl.SwapLayerBuffers(System.IntPtr,OpenTK.Graphics.Wgl.WGLLayerPlaneMask) - commentId: M:OpenTK.Graphics.Wgl.Wgl.SwapLayerBuffers(System.IntPtr,OpenTK.Graphics.Wgl.WGLLayerPlaneMask) - id: SwapLayerBuffers(System.IntPtr,OpenTK.Graphics.Wgl.WGLLayerPlaneMask) +- uid: OpenTK.Graphics.Wgl.Wgl.SwapLayerBuffers(System.IntPtr,OpenTK.Graphics.Wgl.LayerPlaneMask) + commentId: M:OpenTK.Graphics.Wgl.Wgl.SwapLayerBuffers(System.IntPtr,OpenTK.Graphics.Wgl.LayerPlaneMask) + id: SwapLayerBuffers(System.IntPtr,OpenTK.Graphics.Wgl.LayerPlaneMask) parent: OpenTK.Graphics.Wgl.Wgl langs: - csharp - vb - name: SwapLayerBuffers(nint, WGLLayerPlaneMask) - nameWithType: Wgl.SwapLayerBuffers(nint, WGLLayerPlaneMask) - fullName: OpenTK.Graphics.Wgl.Wgl.SwapLayerBuffers(nint, OpenTK.Graphics.Wgl.WGLLayerPlaneMask) + name: SwapLayerBuffers(nint, LayerPlaneMask) + nameWithType: Wgl.SwapLayerBuffers(nint, LayerPlaneMask) + fullName: OpenTK.Graphics.Wgl.Wgl.SwapLayerBuffers(nint, OpenTK.Graphics.Wgl.LayerPlaneMask) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SwapLayerBuffers - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 303 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 191 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl example: [] syntax: - content: public static bool SwapLayerBuffers(nint hdc, WGLLayerPlaneMask fuFlags) + content: public static bool SwapLayerBuffers(nint hdc, LayerPlaneMask fuFlags) parameters: - id: hdc type: System.IntPtr - id: fuFlags - type: OpenTK.Graphics.Wgl.WGLLayerPlaneMask + type: OpenTK.Graphics.Wgl.LayerPlaneMask return: type: System.Boolean - content.vb: Public Shared Function SwapLayerBuffers(hdc As IntPtr, fuFlags As WGLLayerPlaneMask) As Boolean + content.vb: Public Shared Function SwapLayerBuffers(hdc As IntPtr, fuFlags As LayerPlaneMask) As Boolean overload: OpenTK.Graphics.Wgl.Wgl.SwapLayerBuffers* - nameWithType.vb: Wgl.SwapLayerBuffers(IntPtr, WGLLayerPlaneMask) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.SwapLayerBuffers(System.IntPtr, OpenTK.Graphics.Wgl.WGLLayerPlaneMask) - name.vb: SwapLayerBuffers(IntPtr, WGLLayerPlaneMask) + nameWithType.vb: Wgl.SwapLayerBuffers(IntPtr, LayerPlaneMask) + fullName.vb: OpenTK.Graphics.Wgl.Wgl.SwapLayerBuffers(System.IntPtr, OpenTK.Graphics.Wgl.LayerPlaneMask) + name.vb: SwapLayerBuffers(IntPtr, LayerPlaneMask) - uid: OpenTK.Graphics.Wgl.Wgl.UseFontBitmaps(System.IntPtr,System.UInt32,System.UInt32,System.UInt32) commentId: M:OpenTK.Graphics.Wgl.Wgl.UseFontBitmaps(System.IntPtr,System.UInt32,System.UInt32,System.UInt32) id: UseFontBitmaps(System.IntPtr,System.UInt32,System.UInt32,System.UInt32) @@ -2422,13 +1908,9 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.UseFontBitmaps(nint, uint, uint, uint) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: UseFontBitmaps - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 312 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 200 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -2463,13 +1945,9 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.UseFontBitmapsA(nint, uint, uint, uint) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: UseFontBitmapsA - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 321 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 209 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -2504,13 +1982,9 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.UseFontBitmapsW(nint, uint, uint, uint) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: UseFontBitmapsW - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 330 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 218 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -2545,13 +2019,9 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.UseFontOutlines(nint, uint, uint, uint, float, float, OpenTK.Graphics.Wgl.FontFormat, nint) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: UseFontOutlines - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 339 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 227 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -2594,13 +2064,9 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.UseFontOutlinesA(nint, uint, uint, uint, float, float, OpenTK.Graphics.Wgl.FontFormat, nint) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: UseFontOutlinesA - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 348 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 236 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -2643,13 +2109,9 @@ items: fullName: OpenTK.Graphics.Wgl.Wgl.UseFontOutlinesW(nint, uint, uint, uint, float, float, OpenTK.Graphics.Wgl.FontFormat, nint) type: Method source: - remote: - path: src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: UseFontOutlinesW - path: opentk/src/OpenTK.Graphics/Wgl/WGL.Overloads.cs - startLine: 357 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs + startLine: 245 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics.Wgl @@ -3203,17 +2665,17 @@ references: fullName: OpenTK.Graphics.Wgl.Wgl.SwapBuffers_ - uid: OpenTK.Graphics.Wgl.Wgl.SwapLayerBuffers_* commentId: Overload:OpenTK.Graphics.Wgl.Wgl.SwapLayerBuffers_ - href: OpenTK.Graphics.Wgl.Wgl.html#OpenTK_Graphics_Wgl_Wgl_SwapLayerBuffers__System_IntPtr_OpenTK_Graphics_Wgl_WGLLayerPlaneMask_ + href: OpenTK.Graphics.Wgl.Wgl.html#OpenTK_Graphics_Wgl_Wgl_SwapLayerBuffers__System_IntPtr_OpenTK_Graphics_Wgl_LayerPlaneMask_ name: SwapLayerBuffers_ nameWithType: Wgl.SwapLayerBuffers_ fullName: OpenTK.Graphics.Wgl.Wgl.SwapLayerBuffers_ -- uid: OpenTK.Graphics.Wgl.WGLLayerPlaneMask - commentId: T:OpenTK.Graphics.Wgl.WGLLayerPlaneMask +- uid: OpenTK.Graphics.Wgl.LayerPlaneMask + commentId: T:OpenTK.Graphics.Wgl.LayerPlaneMask parent: OpenTK.Graphics.Wgl - href: OpenTK.Graphics.Wgl.WGLLayerPlaneMask.html - name: WGLLayerPlaneMask - nameWithType: WGLLayerPlaneMask - fullName: OpenTK.Graphics.Wgl.WGLLayerPlaneMask + href: OpenTK.Graphics.Wgl.LayerPlaneMask.html + name: LayerPlaneMask + nameWithType: LayerPlaneMask + fullName: OpenTK.Graphics.Wgl.LayerPlaneMask - uid: OpenTK.Graphics.Wgl.Wgl.UseFontBitmaps_* commentId: Overload:OpenTK.Graphics.Wgl.Wgl.UseFontBitmaps_ href: OpenTK.Graphics.Wgl.Wgl.html#OpenTK_Graphics_Wgl_Wgl_UseFontBitmaps__System_IntPtr_System_UInt32_System_UInt32_System_UInt32_ @@ -3268,88 +2730,6 @@ references: name: UseFontOutlinesW_ nameWithType: Wgl.UseFontOutlinesW_ fullName: OpenTK.Graphics.Wgl.Wgl.UseFontOutlinesW_ -- uid: System.ReadOnlySpan{OpenTK.Graphics.Wgl.PixelFormatDescriptor} - commentId: T:System.ReadOnlySpan{OpenTK.Graphics.Wgl.PixelFormatDescriptor} - parent: System - definition: System.ReadOnlySpan`1 - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - name: ReadOnlySpan - nameWithType: ReadOnlySpan - fullName: System.ReadOnlySpan - nameWithType.vb: ReadOnlySpan(Of PixelFormatDescriptor) - fullName.vb: System.ReadOnlySpan(Of OpenTK.Graphics.Wgl.PixelFormatDescriptor) - name.vb: ReadOnlySpan(Of PixelFormatDescriptor) - spec.csharp: - - uid: System.ReadOnlySpan`1 - name: ReadOnlySpan - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - - name: < - - uid: OpenTK.Graphics.Wgl.PixelFormatDescriptor - name: PixelFormatDescriptor - href: OpenTK.Graphics.Wgl.PixelFormatDescriptor.html - - name: '>' - spec.vb: - - uid: System.ReadOnlySpan`1 - name: ReadOnlySpan - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - - name: ( - - name: Of - - name: " " - - uid: OpenTK.Graphics.Wgl.PixelFormatDescriptor - name: PixelFormatDescriptor - href: OpenTK.Graphics.Wgl.PixelFormatDescriptor.html - - name: ) -- uid: System.ReadOnlySpan`1 - commentId: T:System.ReadOnlySpan`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - name: ReadOnlySpan - nameWithType: ReadOnlySpan - fullName: System.ReadOnlySpan - nameWithType.vb: ReadOnlySpan(Of T) - fullName.vb: System.ReadOnlySpan(Of T) - name.vb: ReadOnlySpan(Of T) - spec.csharp: - - uid: System.ReadOnlySpan`1 - name: ReadOnlySpan - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.ReadOnlySpan`1 - name: ReadOnlySpan - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: OpenTK.Graphics.Wgl.PixelFormatDescriptor[] - isExternal: true - href: OpenTK.Graphics.Wgl.PixelFormatDescriptor.html - name: PixelFormatDescriptor[] - nameWithType: PixelFormatDescriptor[] - fullName: OpenTK.Graphics.Wgl.PixelFormatDescriptor[] - nameWithType.vb: PixelFormatDescriptor() - fullName.vb: OpenTK.Graphics.Wgl.PixelFormatDescriptor() - name.vb: PixelFormatDescriptor() - spec.csharp: - - uid: OpenTK.Graphics.Wgl.PixelFormatDescriptor - name: PixelFormatDescriptor - href: OpenTK.Graphics.Wgl.PixelFormatDescriptor.html - - name: '[' - - name: ']' - spec.vb: - - uid: OpenTK.Graphics.Wgl.PixelFormatDescriptor - name: PixelFormatDescriptor - href: OpenTK.Graphics.Wgl.PixelFormatDescriptor.html - - name: ( - - name: ) - uid: OpenTK.Graphics.Wgl.PixelFormatDescriptor commentId: T:OpenTK.Graphics.Wgl.PixelFormatDescriptor parent: OpenTK.Graphics.Wgl @@ -3380,26 +2760,33 @@ references: name: DeleteContext nameWithType: Wgl.DeleteContext fullName: OpenTK.Graphics.Wgl.Wgl.DeleteContext -- uid: System.Span{OpenTK.Graphics.Wgl.LayerPlaneDescriptor} - commentId: T:System.Span{OpenTK.Graphics.Wgl.LayerPlaneDescriptor} +- uid: OpenTK.Graphics.Wgl.LayerPlaneDescriptor + commentId: T:OpenTK.Graphics.Wgl.LayerPlaneDescriptor + parent: OpenTK.Graphics.Wgl + href: OpenTK.Graphics.Wgl.LayerPlaneDescriptor.html + name: LayerPlaneDescriptor + nameWithType: LayerPlaneDescriptor + fullName: OpenTK.Graphics.Wgl.LayerPlaneDescriptor +- uid: System.Span{OpenTK.Graphics.Wgl.ColorRef} + commentId: T:System.Span{OpenTK.Graphics.Wgl.ColorRef} parent: System definition: System.Span`1 href: https://learn.microsoft.com/dotnet/api/system.span-1 - name: Span - nameWithType: Span - fullName: System.Span - nameWithType.vb: Span(Of LayerPlaneDescriptor) - fullName.vb: System.Span(Of OpenTK.Graphics.Wgl.LayerPlaneDescriptor) - name.vb: Span(Of LayerPlaneDescriptor) + name: Span + nameWithType: Span + fullName: System.Span + nameWithType.vb: Span(Of ColorRef) + fullName.vb: System.Span(Of OpenTK.Graphics.Wgl.ColorRef) + name.vb: Span(Of ColorRef) spec.csharp: - uid: System.Span`1 name: Span isExternal: true href: https://learn.microsoft.com/dotnet/api/system.span-1 - name: < - - uid: OpenTK.Graphics.Wgl.LayerPlaneDescriptor - name: LayerPlaneDescriptor - href: OpenTK.Graphics.Wgl.LayerPlaneDescriptor.html + - uid: OpenTK.Graphics.Wgl.ColorRef + name: ColorRef + href: OpenTK.Graphics.Wgl.ColorRef.html - name: '>' spec.vb: - uid: System.Span`1 @@ -3409,9 +2796,9 @@ references: - name: ( - name: Of - name: " " - - uid: OpenTK.Graphics.Wgl.LayerPlaneDescriptor - name: LayerPlaneDescriptor - href: OpenTK.Graphics.Wgl.LayerPlaneDescriptor.html + - uid: OpenTK.Graphics.Wgl.ColorRef + name: ColorRef + href: OpenTK.Graphics.Wgl.ColorRef.html - name: ) - uid: System.Span`1 commentId: T:System.Span`1 @@ -3441,100 +2828,6 @@ references: - name: " " - name: T - name: ) -- uid: OpenTK.Graphics.Wgl.LayerPlaneDescriptor[] - isExternal: true - href: OpenTK.Graphics.Wgl.LayerPlaneDescriptor.html - name: LayerPlaneDescriptor[] - nameWithType: LayerPlaneDescriptor[] - fullName: OpenTK.Graphics.Wgl.LayerPlaneDescriptor[] - nameWithType.vb: LayerPlaneDescriptor() - fullName.vb: OpenTK.Graphics.Wgl.LayerPlaneDescriptor() - name.vb: LayerPlaneDescriptor() - spec.csharp: - - uid: OpenTK.Graphics.Wgl.LayerPlaneDescriptor - name: LayerPlaneDescriptor - href: OpenTK.Graphics.Wgl.LayerPlaneDescriptor.html - - name: '[' - - name: ']' - spec.vb: - - uid: OpenTK.Graphics.Wgl.LayerPlaneDescriptor - name: LayerPlaneDescriptor - href: OpenTK.Graphics.Wgl.LayerPlaneDescriptor.html - - name: ( - - name: ) -- uid: OpenTK.Graphics.Wgl.LayerPlaneDescriptor - commentId: T:OpenTK.Graphics.Wgl.LayerPlaneDescriptor - parent: OpenTK.Graphics.Wgl - href: OpenTK.Graphics.Wgl.LayerPlaneDescriptor.html - name: LayerPlaneDescriptor - nameWithType: LayerPlaneDescriptor - fullName: OpenTK.Graphics.Wgl.LayerPlaneDescriptor -- uid: System.Span{OpenTK.Graphics.Wgl.PixelFormatDescriptor} - commentId: T:System.Span{OpenTK.Graphics.Wgl.PixelFormatDescriptor} - parent: System - definition: System.Span`1 - href: https://learn.microsoft.com/dotnet/api/system.span-1 - name: Span - nameWithType: Span - fullName: System.Span - nameWithType.vb: Span(Of PixelFormatDescriptor) - fullName.vb: System.Span(Of OpenTK.Graphics.Wgl.PixelFormatDescriptor) - name.vb: Span(Of PixelFormatDescriptor) - spec.csharp: - - uid: System.Span`1 - name: Span - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.span-1 - - name: < - - uid: OpenTK.Graphics.Wgl.PixelFormatDescriptor - name: PixelFormatDescriptor - href: OpenTK.Graphics.Wgl.PixelFormatDescriptor.html - - name: '>' - spec.vb: - - uid: System.Span`1 - name: Span - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.span-1 - - name: ( - - name: Of - - name: " " - - uid: OpenTK.Graphics.Wgl.PixelFormatDescriptor - name: PixelFormatDescriptor - href: OpenTK.Graphics.Wgl.PixelFormatDescriptor.html - - name: ) -- uid: System.Span{OpenTK.Graphics.Wgl.ColorRef} - commentId: T:System.Span{OpenTK.Graphics.Wgl.ColorRef} - parent: System - definition: System.Span`1 - href: https://learn.microsoft.com/dotnet/api/system.span-1 - name: Span - nameWithType: Span - fullName: System.Span - nameWithType.vb: Span(Of ColorRef) - fullName.vb: System.Span(Of OpenTK.Graphics.Wgl.ColorRef) - name.vb: Span(Of ColorRef) - spec.csharp: - - uid: System.Span`1 - name: Span - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.span-1 - - name: < - - uid: OpenTK.Graphics.Wgl.ColorRef - name: ColorRef - href: OpenTK.Graphics.Wgl.ColorRef.html - - name: '>' - spec.vb: - - uid: System.Span`1 - name: Span - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.span-1 - - name: ( - - name: Of - - name: " " - - uid: OpenTK.Graphics.Wgl.ColorRef - name: ColorRef - href: OpenTK.Graphics.Wgl.ColorRef.html - - name: ) - uid: OpenTK.Graphics.Wgl.ColorRef[] isExternal: true href: OpenTK.Graphics.Wgl.ColorRef.html @@ -3619,6 +2912,34 @@ references: name: ColorRef href: OpenTK.Graphics.Wgl.ColorRef.html - name: ) +- uid: System.ReadOnlySpan`1 + commentId: T:System.ReadOnlySpan`1 + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 + name: ReadOnlySpan + nameWithType: ReadOnlySpan + fullName: System.ReadOnlySpan + nameWithType.vb: ReadOnlySpan(Of T) + fullName.vb: System.ReadOnlySpan(Of T) + name.vb: ReadOnlySpan(Of T) + spec.csharp: + - uid: System.ReadOnlySpan`1 + name: ReadOnlySpan + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 + - name: < + - name: T + - name: '>' + spec.vb: + - uid: System.ReadOnlySpan`1 + name: ReadOnlySpan + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 + - name: ( + - name: Of + - name: " " + - name: T + - name: ) - uid: OpenTK.Graphics.Wgl.Wgl.ShareLists* commentId: Overload:OpenTK.Graphics.Wgl.Wgl.ShareLists href: OpenTK.Graphics.Wgl.Wgl.html#OpenTK_Graphics_Wgl_Wgl_ShareLists_System_IntPtr_System_IntPtr_ @@ -3633,7 +2954,7 @@ references: fullName: OpenTK.Graphics.Wgl.Wgl.SwapBuffers - uid: OpenTK.Graphics.Wgl.Wgl.SwapLayerBuffers* commentId: Overload:OpenTK.Graphics.Wgl.Wgl.SwapLayerBuffers - href: OpenTK.Graphics.Wgl.Wgl.html#OpenTK_Graphics_Wgl_Wgl_SwapLayerBuffers_System_IntPtr_OpenTK_Graphics_Wgl_WGLLayerPlaneMask_ + href: OpenTK.Graphics.Wgl.Wgl.html#OpenTK_Graphics_Wgl_Wgl_SwapLayerBuffers_System_IntPtr_OpenTK_Graphics_Wgl_LayerPlaneMask_ name: SwapLayerBuffers nameWithType: Wgl.SwapLayerBuffers fullName: OpenTK.Graphics.Wgl.Wgl.SwapLayerBuffers diff --git a/api/OpenTK.Graphics.Wgl.WglPointers.yml b/api/OpenTK.Graphics.Wgl.WglPointers.yml index 7b52627e..e6a06456 100644 --- a/api/OpenTK.Graphics.Wgl.WglPointers.yml +++ b/api/OpenTK.Graphics.Wgl.WglPointers.yml @@ -158,12 +158,8 @@ items: fullName: OpenTK.Graphics.Wgl.WglPointers type: Class source: - remote: - path: src/OpenTK.Graphics/WGL.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: WglPointers - path: opentk/src/OpenTK.Graphics/WGL.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs startLine: 8 assemblies: - OpenTK.Graphics @@ -195,12 +191,8 @@ items: fullName: OpenTK.Graphics.Wgl.WglPointers._ChoosePixelFormat_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/WGL.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _ChoosePixelFormat_fnptr - path: opentk/src/OpenTK.Graphics/WGL.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs startLine: 11 assemblies: - OpenTK.Graphics @@ -224,12 +216,8 @@ items: fullName: OpenTK.Graphics.Wgl.WglPointers._DescribePixelFormat_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/WGL.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _DescribePixelFormat_fnptr - path: opentk/src/OpenTK.Graphics/WGL.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs startLine: 20 assemblies: - OpenTK.Graphics @@ -253,12 +241,8 @@ items: fullName: OpenTK.Graphics.Wgl.WglPointers._GetEnhMetaFilePixelFormat_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/WGL.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _GetEnhMetaFilePixelFormat_fnptr - path: opentk/src/OpenTK.Graphics/WGL.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs startLine: 29 assemblies: - OpenTK.Graphics @@ -282,12 +266,8 @@ items: fullName: OpenTK.Graphics.Wgl.WglPointers._GetPixelFormat_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/WGL.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _GetPixelFormat_fnptr - path: opentk/src/OpenTK.Graphics/WGL.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs startLine: 38 assemblies: - OpenTK.Graphics @@ -311,12 +291,8 @@ items: fullName: OpenTK.Graphics.Wgl.WglPointers._SetPixelFormat_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/WGL.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _SetPixelFormat_fnptr - path: opentk/src/OpenTK.Graphics/WGL.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs startLine: 47 assemblies: - OpenTK.Graphics @@ -340,12 +316,8 @@ items: fullName: OpenTK.Graphics.Wgl.WglPointers._SwapBuffers_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/WGL.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _SwapBuffers_fnptr - path: opentk/src/OpenTK.Graphics/WGL.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs startLine: 56 assemblies: - OpenTK.Graphics @@ -369,12 +341,8 @@ items: fullName: OpenTK.Graphics.Wgl.WglPointers._wglAllocateMemoryNV_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/WGL.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _wglAllocateMemoryNV_fnptr - path: opentk/src/OpenTK.Graphics/WGL.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs startLine: 65 assemblies: - OpenTK.Graphics @@ -398,12 +366,8 @@ items: fullName: OpenTK.Graphics.Wgl.WglPointers._wglAssociateImageBufferEventsI3D_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/WGL.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _wglAssociateImageBufferEventsI3D_fnptr - path: opentk/src/OpenTK.Graphics/WGL.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs startLine: 74 assemblies: - OpenTK.Graphics @@ -427,12 +391,8 @@ items: fullName: OpenTK.Graphics.Wgl.WglPointers._wglBeginFrameTrackingI3D_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/WGL.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _wglBeginFrameTrackingI3D_fnptr - path: opentk/src/OpenTK.Graphics/WGL.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs startLine: 83 assemblies: - OpenTK.Graphics @@ -456,12 +416,8 @@ items: fullName: OpenTK.Graphics.Wgl.WglPointers._wglBindDisplayColorTableEXT_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/WGL.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _wglBindDisplayColorTableEXT_fnptr - path: opentk/src/OpenTK.Graphics/WGL.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs startLine: 92 assemblies: - OpenTK.Graphics @@ -485,12 +441,8 @@ items: fullName: OpenTK.Graphics.Wgl.WglPointers._wglBindSwapBarrierNV_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/WGL.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _wglBindSwapBarrierNV_fnptr - path: opentk/src/OpenTK.Graphics/WGL.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs startLine: 101 assemblies: - OpenTK.Graphics @@ -514,12 +466,8 @@ items: fullName: OpenTK.Graphics.Wgl.WglPointers._wglBindTexImageARB_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/WGL.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _wglBindTexImageARB_fnptr - path: opentk/src/OpenTK.Graphics/WGL.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs startLine: 110 assemblies: - OpenTK.Graphics @@ -543,12 +491,8 @@ items: fullName: OpenTK.Graphics.Wgl.WglPointers._wglBindVideoCaptureDeviceNV_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/WGL.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _wglBindVideoCaptureDeviceNV_fnptr - path: opentk/src/OpenTK.Graphics/WGL.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs startLine: 119 assemblies: - OpenTK.Graphics @@ -572,12 +516,8 @@ items: fullName: OpenTK.Graphics.Wgl.WglPointers._wglBindVideoDeviceNV_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/WGL.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _wglBindVideoDeviceNV_fnptr - path: opentk/src/OpenTK.Graphics/WGL.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs startLine: 128 assemblies: - OpenTK.Graphics @@ -601,12 +541,8 @@ items: fullName: OpenTK.Graphics.Wgl.WglPointers._wglBindVideoImageNV_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/WGL.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _wglBindVideoImageNV_fnptr - path: opentk/src/OpenTK.Graphics/WGL.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs startLine: 137 assemblies: - OpenTK.Graphics @@ -630,12 +566,8 @@ items: fullName: OpenTK.Graphics.Wgl.WglPointers._wglBlitContextFramebufferAMD_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/WGL.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _wglBlitContextFramebufferAMD_fnptr - path: opentk/src/OpenTK.Graphics/WGL.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs startLine: 146 assemblies: - OpenTK.Graphics @@ -659,12 +591,8 @@ items: fullName: OpenTK.Graphics.Wgl.WglPointers._wglChoosePixelFormatARB_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/WGL.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _wglChoosePixelFormatARB_fnptr - path: opentk/src/OpenTK.Graphics/WGL.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs startLine: 155 assemblies: - OpenTK.Graphics @@ -688,12 +616,8 @@ items: fullName: OpenTK.Graphics.Wgl.WglPointers._wglChoosePixelFormatEXT_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/WGL.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _wglChoosePixelFormatEXT_fnptr - path: opentk/src/OpenTK.Graphics/WGL.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs startLine: 164 assemblies: - OpenTK.Graphics @@ -717,12 +641,8 @@ items: fullName: OpenTK.Graphics.Wgl.WglPointers._wglCopyContext_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/WGL.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _wglCopyContext_fnptr - path: opentk/src/OpenTK.Graphics/WGL.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs startLine: 173 assemblies: - OpenTK.Graphics @@ -746,12 +666,8 @@ items: fullName: OpenTK.Graphics.Wgl.WglPointers._wglCopyImageSubDataNV_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/WGL.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _wglCopyImageSubDataNV_fnptr - path: opentk/src/OpenTK.Graphics/WGL.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs startLine: 182 assemblies: - OpenTK.Graphics @@ -775,12 +691,8 @@ items: fullName: OpenTK.Graphics.Wgl.WglPointers._wglCreateAffinityDCNV_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/WGL.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _wglCreateAffinityDCNV_fnptr - path: opentk/src/OpenTK.Graphics/WGL.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs startLine: 191 assemblies: - OpenTK.Graphics @@ -804,12 +716,8 @@ items: fullName: OpenTK.Graphics.Wgl.WglPointers._wglCreateAssociatedContextAMD_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/WGL.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _wglCreateAssociatedContextAMD_fnptr - path: opentk/src/OpenTK.Graphics/WGL.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs startLine: 200 assemblies: - OpenTK.Graphics @@ -833,12 +741,8 @@ items: fullName: OpenTK.Graphics.Wgl.WglPointers._wglCreateAssociatedContextAttribsAMD_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/WGL.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _wglCreateAssociatedContextAttribsAMD_fnptr - path: opentk/src/OpenTK.Graphics/WGL.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs startLine: 209 assemblies: - OpenTK.Graphics @@ -862,12 +766,8 @@ items: fullName: OpenTK.Graphics.Wgl.WglPointers._wglCreateBufferRegionARB_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/WGL.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _wglCreateBufferRegionARB_fnptr - path: opentk/src/OpenTK.Graphics/WGL.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs startLine: 218 assemblies: - OpenTK.Graphics @@ -891,12 +791,8 @@ items: fullName: OpenTK.Graphics.Wgl.WglPointers._wglCreateContext_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/WGL.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _wglCreateContext_fnptr - path: opentk/src/OpenTK.Graphics/WGL.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs startLine: 227 assemblies: - OpenTK.Graphics @@ -920,12 +816,8 @@ items: fullName: OpenTK.Graphics.Wgl.WglPointers._wglCreateContextAttribsARB_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/WGL.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _wglCreateContextAttribsARB_fnptr - path: opentk/src/OpenTK.Graphics/WGL.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs startLine: 236 assemblies: - OpenTK.Graphics @@ -949,12 +841,8 @@ items: fullName: OpenTK.Graphics.Wgl.WglPointers._wglCreateDisplayColorTableEXT_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/WGL.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _wglCreateDisplayColorTableEXT_fnptr - path: opentk/src/OpenTK.Graphics/WGL.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs startLine: 245 assemblies: - OpenTK.Graphics @@ -978,12 +866,8 @@ items: fullName: OpenTK.Graphics.Wgl.WglPointers._wglCreateImageBufferI3D_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/WGL.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _wglCreateImageBufferI3D_fnptr - path: opentk/src/OpenTK.Graphics/WGL.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs startLine: 254 assemblies: - OpenTK.Graphics @@ -1007,12 +891,8 @@ items: fullName: OpenTK.Graphics.Wgl.WglPointers._wglCreateLayerContext_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/WGL.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _wglCreateLayerContext_fnptr - path: opentk/src/OpenTK.Graphics/WGL.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs startLine: 263 assemblies: - OpenTK.Graphics @@ -1036,12 +916,8 @@ items: fullName: OpenTK.Graphics.Wgl.WglPointers._wglCreatePbufferARB_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/WGL.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _wglCreatePbufferARB_fnptr - path: opentk/src/OpenTK.Graphics/WGL.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs startLine: 272 assemblies: - OpenTK.Graphics @@ -1065,12 +941,8 @@ items: fullName: OpenTK.Graphics.Wgl.WglPointers._wglCreatePbufferEXT_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/WGL.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _wglCreatePbufferEXT_fnptr - path: opentk/src/OpenTK.Graphics/WGL.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs startLine: 281 assemblies: - OpenTK.Graphics @@ -1094,12 +966,8 @@ items: fullName: OpenTK.Graphics.Wgl.WglPointers._wglDelayBeforeSwapNV_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/WGL.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _wglDelayBeforeSwapNV_fnptr - path: opentk/src/OpenTK.Graphics/WGL.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs startLine: 290 assemblies: - OpenTK.Graphics @@ -1123,12 +991,8 @@ items: fullName: OpenTK.Graphics.Wgl.WglPointers._wglDeleteAssociatedContextAMD_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/WGL.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _wglDeleteAssociatedContextAMD_fnptr - path: opentk/src/OpenTK.Graphics/WGL.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs startLine: 299 assemblies: - OpenTK.Graphics @@ -1152,12 +1016,8 @@ items: fullName: OpenTK.Graphics.Wgl.WglPointers._wglDeleteBufferRegionARB_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/WGL.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _wglDeleteBufferRegionARB_fnptr - path: opentk/src/OpenTK.Graphics/WGL.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs startLine: 308 assemblies: - OpenTK.Graphics @@ -1181,12 +1041,8 @@ items: fullName: OpenTK.Graphics.Wgl.WglPointers._wglDeleteContext_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/WGL.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _wglDeleteContext_fnptr - path: opentk/src/OpenTK.Graphics/WGL.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs startLine: 317 assemblies: - OpenTK.Graphics @@ -1210,12 +1066,8 @@ items: fullName: OpenTK.Graphics.Wgl.WglPointers._wglDeleteDCNV_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/WGL.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _wglDeleteDCNV_fnptr - path: opentk/src/OpenTK.Graphics/WGL.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs startLine: 326 assemblies: - OpenTK.Graphics @@ -1239,12 +1091,8 @@ items: fullName: OpenTK.Graphics.Wgl.WglPointers._wglDescribeLayerPlane_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/WGL.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _wglDescribeLayerPlane_fnptr - path: opentk/src/OpenTK.Graphics/WGL.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs startLine: 335 assemblies: - OpenTK.Graphics @@ -1268,12 +1116,8 @@ items: fullName: OpenTK.Graphics.Wgl.WglPointers._wglDestroyDisplayColorTableEXT_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/WGL.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _wglDestroyDisplayColorTableEXT_fnptr - path: opentk/src/OpenTK.Graphics/WGL.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs startLine: 344 assemblies: - OpenTK.Graphics @@ -1297,12 +1141,8 @@ items: fullName: OpenTK.Graphics.Wgl.WglPointers._wglDestroyImageBufferI3D_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/WGL.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _wglDestroyImageBufferI3D_fnptr - path: opentk/src/OpenTK.Graphics/WGL.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs startLine: 353 assemblies: - OpenTK.Graphics @@ -1326,12 +1166,8 @@ items: fullName: OpenTK.Graphics.Wgl.WglPointers._wglDestroyPbufferARB_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/WGL.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _wglDestroyPbufferARB_fnptr - path: opentk/src/OpenTK.Graphics/WGL.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs startLine: 362 assemblies: - OpenTK.Graphics @@ -1355,12 +1191,8 @@ items: fullName: OpenTK.Graphics.Wgl.WglPointers._wglDestroyPbufferEXT_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/WGL.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _wglDestroyPbufferEXT_fnptr - path: opentk/src/OpenTK.Graphics/WGL.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs startLine: 371 assemblies: - OpenTK.Graphics @@ -1384,12 +1216,8 @@ items: fullName: OpenTK.Graphics.Wgl.WglPointers._wglDisableFrameLockI3D_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/WGL.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _wglDisableFrameLockI3D_fnptr - path: opentk/src/OpenTK.Graphics/WGL.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs startLine: 380 assemblies: - OpenTK.Graphics @@ -1413,12 +1241,8 @@ items: fullName: OpenTK.Graphics.Wgl.WglPointers._wglDisableGenlockI3D_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/WGL.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _wglDisableGenlockI3D_fnptr - path: opentk/src/OpenTK.Graphics/WGL.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs startLine: 389 assemblies: - OpenTK.Graphics @@ -1442,12 +1266,8 @@ items: fullName: OpenTK.Graphics.Wgl.WglPointers._wglDXCloseDeviceNV_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/WGL.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _wglDXCloseDeviceNV_fnptr - path: opentk/src/OpenTK.Graphics/WGL.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs startLine: 398 assemblies: - OpenTK.Graphics @@ -1471,12 +1291,8 @@ items: fullName: OpenTK.Graphics.Wgl.WglPointers._wglDXLockObjectsNV_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/WGL.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _wglDXLockObjectsNV_fnptr - path: opentk/src/OpenTK.Graphics/WGL.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs startLine: 407 assemblies: - OpenTK.Graphics @@ -1500,12 +1316,8 @@ items: fullName: OpenTK.Graphics.Wgl.WglPointers._wglDXObjectAccessNV_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/WGL.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _wglDXObjectAccessNV_fnptr - path: opentk/src/OpenTK.Graphics/WGL.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs startLine: 416 assemblies: - OpenTK.Graphics @@ -1529,12 +1341,8 @@ items: fullName: OpenTK.Graphics.Wgl.WglPointers._wglDXOpenDeviceNV_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/WGL.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _wglDXOpenDeviceNV_fnptr - path: opentk/src/OpenTK.Graphics/WGL.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs startLine: 425 assemblies: - OpenTK.Graphics @@ -1558,12 +1366,8 @@ items: fullName: OpenTK.Graphics.Wgl.WglPointers._wglDXRegisterObjectNV_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/WGL.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _wglDXRegisterObjectNV_fnptr - path: opentk/src/OpenTK.Graphics/WGL.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs startLine: 434 assemblies: - OpenTK.Graphics @@ -1587,12 +1391,8 @@ items: fullName: OpenTK.Graphics.Wgl.WglPointers._wglDXSetResourceShareHandleNV_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/WGL.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _wglDXSetResourceShareHandleNV_fnptr - path: opentk/src/OpenTK.Graphics/WGL.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs startLine: 443 assemblies: - OpenTK.Graphics @@ -1616,12 +1416,8 @@ items: fullName: OpenTK.Graphics.Wgl.WglPointers._wglDXUnlockObjectsNV_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/WGL.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _wglDXUnlockObjectsNV_fnptr - path: opentk/src/OpenTK.Graphics/WGL.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs startLine: 452 assemblies: - OpenTK.Graphics @@ -1645,12 +1441,8 @@ items: fullName: OpenTK.Graphics.Wgl.WglPointers._wglDXUnregisterObjectNV_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/WGL.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _wglDXUnregisterObjectNV_fnptr - path: opentk/src/OpenTK.Graphics/WGL.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs startLine: 461 assemblies: - OpenTK.Graphics @@ -1674,12 +1466,8 @@ items: fullName: OpenTK.Graphics.Wgl.WglPointers._wglEnableFrameLockI3D_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/WGL.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _wglEnableFrameLockI3D_fnptr - path: opentk/src/OpenTK.Graphics/WGL.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs startLine: 470 assemblies: - OpenTK.Graphics @@ -1703,12 +1491,8 @@ items: fullName: OpenTK.Graphics.Wgl.WglPointers._wglEnableGenlockI3D_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/WGL.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _wglEnableGenlockI3D_fnptr - path: opentk/src/OpenTK.Graphics/WGL.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs startLine: 479 assemblies: - OpenTK.Graphics @@ -1732,12 +1516,8 @@ items: fullName: OpenTK.Graphics.Wgl.WglPointers._wglEndFrameTrackingI3D_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/WGL.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _wglEndFrameTrackingI3D_fnptr - path: opentk/src/OpenTK.Graphics/WGL.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs startLine: 488 assemblies: - OpenTK.Graphics @@ -1761,12 +1541,8 @@ items: fullName: OpenTK.Graphics.Wgl.WglPointers._wglEnumerateVideoCaptureDevicesNV_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/WGL.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _wglEnumerateVideoCaptureDevicesNV_fnptr - path: opentk/src/OpenTK.Graphics/WGL.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs startLine: 497 assemblies: - OpenTK.Graphics @@ -1790,12 +1566,8 @@ items: fullName: OpenTK.Graphics.Wgl.WglPointers._wglEnumerateVideoDevicesNV_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/WGL.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _wglEnumerateVideoDevicesNV_fnptr - path: opentk/src/OpenTK.Graphics/WGL.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs startLine: 506 assemblies: - OpenTK.Graphics @@ -1819,12 +1591,8 @@ items: fullName: OpenTK.Graphics.Wgl.WglPointers._wglEnumGpuDevicesNV_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/WGL.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _wglEnumGpuDevicesNV_fnptr - path: opentk/src/OpenTK.Graphics/WGL.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs startLine: 515 assemblies: - OpenTK.Graphics @@ -1848,12 +1616,8 @@ items: fullName: OpenTK.Graphics.Wgl.WglPointers._wglEnumGpusFromAffinityDCNV_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/WGL.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _wglEnumGpusFromAffinityDCNV_fnptr - path: opentk/src/OpenTK.Graphics/WGL.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs startLine: 524 assemblies: - OpenTK.Graphics @@ -1877,12 +1641,8 @@ items: fullName: OpenTK.Graphics.Wgl.WglPointers._wglEnumGpusNV_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/WGL.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _wglEnumGpusNV_fnptr - path: opentk/src/OpenTK.Graphics/WGL.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs startLine: 533 assemblies: - OpenTK.Graphics @@ -1906,12 +1666,8 @@ items: fullName: OpenTK.Graphics.Wgl.WglPointers._wglFreeMemoryNV_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/WGL.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _wglFreeMemoryNV_fnptr - path: opentk/src/OpenTK.Graphics/WGL.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs startLine: 542 assemblies: - OpenTK.Graphics @@ -1935,12 +1691,8 @@ items: fullName: OpenTK.Graphics.Wgl.WglPointers._wglGenlockSampleRateI3D_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/WGL.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _wglGenlockSampleRateI3D_fnptr - path: opentk/src/OpenTK.Graphics/WGL.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs startLine: 551 assemblies: - OpenTK.Graphics @@ -1964,12 +1716,8 @@ items: fullName: OpenTK.Graphics.Wgl.WglPointers._wglGenlockSourceDelayI3D_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/WGL.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _wglGenlockSourceDelayI3D_fnptr - path: opentk/src/OpenTK.Graphics/WGL.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs startLine: 560 assemblies: - OpenTK.Graphics @@ -1993,12 +1741,8 @@ items: fullName: OpenTK.Graphics.Wgl.WglPointers._wglGenlockSourceEdgeI3D_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/WGL.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _wglGenlockSourceEdgeI3D_fnptr - path: opentk/src/OpenTK.Graphics/WGL.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs startLine: 569 assemblies: - OpenTK.Graphics @@ -2022,12 +1766,8 @@ items: fullName: OpenTK.Graphics.Wgl.WglPointers._wglGenlockSourceI3D_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/WGL.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _wglGenlockSourceI3D_fnptr - path: opentk/src/OpenTK.Graphics/WGL.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs startLine: 578 assemblies: - OpenTK.Graphics @@ -2051,12 +1791,8 @@ items: fullName: OpenTK.Graphics.Wgl.WglPointers._wglGetContextGPUIDAMD_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/WGL.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _wglGetContextGPUIDAMD_fnptr - path: opentk/src/OpenTK.Graphics/WGL.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs startLine: 587 assemblies: - OpenTK.Graphics @@ -2080,12 +1816,8 @@ items: fullName: OpenTK.Graphics.Wgl.WglPointers._wglGetCurrentAssociatedContextAMD_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/WGL.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _wglGetCurrentAssociatedContextAMD_fnptr - path: opentk/src/OpenTK.Graphics/WGL.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs startLine: 596 assemblies: - OpenTK.Graphics @@ -2109,12 +1841,8 @@ items: fullName: OpenTK.Graphics.Wgl.WglPointers._wglGetCurrentContext_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/WGL.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _wglGetCurrentContext_fnptr - path: opentk/src/OpenTK.Graphics/WGL.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs startLine: 605 assemblies: - OpenTK.Graphics @@ -2138,12 +1866,8 @@ items: fullName: OpenTK.Graphics.Wgl.WglPointers._wglGetCurrentDC_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/WGL.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _wglGetCurrentDC_fnptr - path: opentk/src/OpenTK.Graphics/WGL.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs startLine: 614 assemblies: - OpenTK.Graphics @@ -2167,12 +1891,8 @@ items: fullName: OpenTK.Graphics.Wgl.WglPointers._wglGetCurrentReadDCARB_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/WGL.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _wglGetCurrentReadDCARB_fnptr - path: opentk/src/OpenTK.Graphics/WGL.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs startLine: 623 assemblies: - OpenTK.Graphics @@ -2196,12 +1916,8 @@ items: fullName: OpenTK.Graphics.Wgl.WglPointers._wglGetCurrentReadDCEXT_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/WGL.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _wglGetCurrentReadDCEXT_fnptr - path: opentk/src/OpenTK.Graphics/WGL.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs startLine: 632 assemblies: - OpenTK.Graphics @@ -2225,12 +1941,8 @@ items: fullName: OpenTK.Graphics.Wgl.WglPointers._wglGetDigitalVideoParametersI3D_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/WGL.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _wglGetDigitalVideoParametersI3D_fnptr - path: opentk/src/OpenTK.Graphics/WGL.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs startLine: 641 assemblies: - OpenTK.Graphics @@ -2254,12 +1966,8 @@ items: fullName: OpenTK.Graphics.Wgl.WglPointers._wglGetExtensionsStringARB_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/WGL.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _wglGetExtensionsStringARB_fnptr - path: opentk/src/OpenTK.Graphics/WGL.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs startLine: 650 assemblies: - OpenTK.Graphics @@ -2283,12 +1991,8 @@ items: fullName: OpenTK.Graphics.Wgl.WglPointers._wglGetExtensionsStringEXT_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/WGL.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _wglGetExtensionsStringEXT_fnptr - path: opentk/src/OpenTK.Graphics/WGL.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs startLine: 659 assemblies: - OpenTK.Graphics @@ -2312,12 +2016,8 @@ items: fullName: OpenTK.Graphics.Wgl.WglPointers._wglGetFrameUsageI3D_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/WGL.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _wglGetFrameUsageI3D_fnptr - path: opentk/src/OpenTK.Graphics/WGL.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs startLine: 668 assemblies: - OpenTK.Graphics @@ -2341,12 +2041,8 @@ items: fullName: OpenTK.Graphics.Wgl.WglPointers._wglGetGammaTableI3D_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/WGL.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _wglGetGammaTableI3D_fnptr - path: opentk/src/OpenTK.Graphics/WGL.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs startLine: 677 assemblies: - OpenTK.Graphics @@ -2370,12 +2066,8 @@ items: fullName: OpenTK.Graphics.Wgl.WglPointers._wglGetGammaTableParametersI3D_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/WGL.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _wglGetGammaTableParametersI3D_fnptr - path: opentk/src/OpenTK.Graphics/WGL.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs startLine: 686 assemblies: - OpenTK.Graphics @@ -2399,12 +2091,8 @@ items: fullName: OpenTK.Graphics.Wgl.WglPointers._wglGetGenlockSampleRateI3D_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/WGL.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _wglGetGenlockSampleRateI3D_fnptr - path: opentk/src/OpenTK.Graphics/WGL.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs startLine: 695 assemblies: - OpenTK.Graphics @@ -2428,12 +2116,8 @@ items: fullName: OpenTK.Graphics.Wgl.WglPointers._wglGetGenlockSourceDelayI3D_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/WGL.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _wglGetGenlockSourceDelayI3D_fnptr - path: opentk/src/OpenTK.Graphics/WGL.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs startLine: 704 assemblies: - OpenTK.Graphics @@ -2457,12 +2141,8 @@ items: fullName: OpenTK.Graphics.Wgl.WglPointers._wglGetGenlockSourceEdgeI3D_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/WGL.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _wglGetGenlockSourceEdgeI3D_fnptr - path: opentk/src/OpenTK.Graphics/WGL.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs startLine: 713 assemblies: - OpenTK.Graphics @@ -2486,12 +2166,8 @@ items: fullName: OpenTK.Graphics.Wgl.WglPointers._wglGetGenlockSourceI3D_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/WGL.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _wglGetGenlockSourceI3D_fnptr - path: opentk/src/OpenTK.Graphics/WGL.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs startLine: 722 assemblies: - OpenTK.Graphics @@ -2515,12 +2191,8 @@ items: fullName: OpenTK.Graphics.Wgl.WglPointers._wglGetGPUIDsAMD_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/WGL.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _wglGetGPUIDsAMD_fnptr - path: opentk/src/OpenTK.Graphics/WGL.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs startLine: 731 assemblies: - OpenTK.Graphics @@ -2544,12 +2216,8 @@ items: fullName: OpenTK.Graphics.Wgl.WglPointers._wglGetGPUInfoAMD_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/WGL.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _wglGetGPUInfoAMD_fnptr - path: opentk/src/OpenTK.Graphics/WGL.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs startLine: 740 assemblies: - OpenTK.Graphics @@ -2573,12 +2241,8 @@ items: fullName: OpenTK.Graphics.Wgl.WglPointers._wglGetLayerPaletteEntries_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/WGL.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _wglGetLayerPaletteEntries_fnptr - path: opentk/src/OpenTK.Graphics/WGL.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs startLine: 749 assemblies: - OpenTK.Graphics @@ -2602,12 +2266,8 @@ items: fullName: OpenTK.Graphics.Wgl.WglPointers._wglGetMscRateOML_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/WGL.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _wglGetMscRateOML_fnptr - path: opentk/src/OpenTK.Graphics/WGL.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs startLine: 758 assemblies: - OpenTK.Graphics @@ -2631,12 +2291,8 @@ items: fullName: OpenTK.Graphics.Wgl.WglPointers._wglGetPbufferDCARB_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/WGL.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _wglGetPbufferDCARB_fnptr - path: opentk/src/OpenTK.Graphics/WGL.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs startLine: 767 assemblies: - OpenTK.Graphics @@ -2660,12 +2316,8 @@ items: fullName: OpenTK.Graphics.Wgl.WglPointers._wglGetPbufferDCEXT_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/WGL.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _wglGetPbufferDCEXT_fnptr - path: opentk/src/OpenTK.Graphics/WGL.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs startLine: 776 assemblies: - OpenTK.Graphics @@ -2689,12 +2341,8 @@ items: fullName: OpenTK.Graphics.Wgl.WglPointers._wglGetPixelFormatAttribfvARB_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/WGL.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _wglGetPixelFormatAttribfvARB_fnptr - path: opentk/src/OpenTK.Graphics/WGL.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs startLine: 785 assemblies: - OpenTK.Graphics @@ -2718,12 +2366,8 @@ items: fullName: OpenTK.Graphics.Wgl.WglPointers._wglGetPixelFormatAttribfvEXT_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/WGL.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _wglGetPixelFormatAttribfvEXT_fnptr - path: opentk/src/OpenTK.Graphics/WGL.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs startLine: 794 assemblies: - OpenTK.Graphics @@ -2747,12 +2391,8 @@ items: fullName: OpenTK.Graphics.Wgl.WglPointers._wglGetPixelFormatAttribivARB_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/WGL.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _wglGetPixelFormatAttribivARB_fnptr - path: opentk/src/OpenTK.Graphics/WGL.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs startLine: 803 assemblies: - OpenTK.Graphics @@ -2776,12 +2416,8 @@ items: fullName: OpenTK.Graphics.Wgl.WglPointers._wglGetPixelFormatAttribivEXT_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/WGL.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _wglGetPixelFormatAttribivEXT_fnptr - path: opentk/src/OpenTK.Graphics/WGL.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs startLine: 812 assemblies: - OpenTK.Graphics @@ -2805,12 +2441,8 @@ items: fullName: OpenTK.Graphics.Wgl.WglPointers._wglGetProcAddress_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/WGL.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _wglGetProcAddress_fnptr - path: opentk/src/OpenTK.Graphics/WGL.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs startLine: 821 assemblies: - OpenTK.Graphics @@ -2834,12 +2466,8 @@ items: fullName: OpenTK.Graphics.Wgl.WglPointers._wglGetSwapIntervalEXT_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/WGL.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _wglGetSwapIntervalEXT_fnptr - path: opentk/src/OpenTK.Graphics/WGL.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs startLine: 830 assemblies: - OpenTK.Graphics @@ -2863,12 +2491,8 @@ items: fullName: OpenTK.Graphics.Wgl.WglPointers._wglGetSyncValuesOML_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/WGL.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _wglGetSyncValuesOML_fnptr - path: opentk/src/OpenTK.Graphics/WGL.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs startLine: 839 assemblies: - OpenTK.Graphics @@ -2892,12 +2516,8 @@ items: fullName: OpenTK.Graphics.Wgl.WglPointers._wglGetVideoDeviceNV_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/WGL.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _wglGetVideoDeviceNV_fnptr - path: opentk/src/OpenTK.Graphics/WGL.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs startLine: 848 assemblies: - OpenTK.Graphics @@ -2921,12 +2541,8 @@ items: fullName: OpenTK.Graphics.Wgl.WglPointers._wglGetVideoInfoNV_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/WGL.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _wglGetVideoInfoNV_fnptr - path: opentk/src/OpenTK.Graphics/WGL.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs startLine: 857 assemblies: - OpenTK.Graphics @@ -2950,12 +2566,8 @@ items: fullName: OpenTK.Graphics.Wgl.WglPointers._wglIsEnabledFrameLockI3D_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/WGL.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _wglIsEnabledFrameLockI3D_fnptr - path: opentk/src/OpenTK.Graphics/WGL.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs startLine: 866 assemblies: - OpenTK.Graphics @@ -2979,12 +2591,8 @@ items: fullName: OpenTK.Graphics.Wgl.WglPointers._wglIsEnabledGenlockI3D_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/WGL.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _wglIsEnabledGenlockI3D_fnptr - path: opentk/src/OpenTK.Graphics/WGL.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs startLine: 875 assemblies: - OpenTK.Graphics @@ -3008,12 +2616,8 @@ items: fullName: OpenTK.Graphics.Wgl.WglPointers._wglJoinSwapGroupNV_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/WGL.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _wglJoinSwapGroupNV_fnptr - path: opentk/src/OpenTK.Graphics/WGL.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs startLine: 884 assemblies: - OpenTK.Graphics @@ -3037,12 +2641,8 @@ items: fullName: OpenTK.Graphics.Wgl.WglPointers._wglLoadDisplayColorTableEXT_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/WGL.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _wglLoadDisplayColorTableEXT_fnptr - path: opentk/src/OpenTK.Graphics/WGL.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs startLine: 893 assemblies: - OpenTK.Graphics @@ -3066,12 +2666,8 @@ items: fullName: OpenTK.Graphics.Wgl.WglPointers._wglLockVideoCaptureDeviceNV_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/WGL.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _wglLockVideoCaptureDeviceNV_fnptr - path: opentk/src/OpenTK.Graphics/WGL.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs startLine: 902 assemblies: - OpenTK.Graphics @@ -3095,12 +2691,8 @@ items: fullName: OpenTK.Graphics.Wgl.WglPointers._wglMakeAssociatedContextCurrentAMD_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/WGL.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _wglMakeAssociatedContextCurrentAMD_fnptr - path: opentk/src/OpenTK.Graphics/WGL.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs startLine: 911 assemblies: - OpenTK.Graphics @@ -3124,12 +2716,8 @@ items: fullName: OpenTK.Graphics.Wgl.WglPointers._wglMakeContextCurrentARB_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/WGL.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _wglMakeContextCurrentARB_fnptr - path: opentk/src/OpenTK.Graphics/WGL.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs startLine: 920 assemblies: - OpenTK.Graphics @@ -3153,12 +2741,8 @@ items: fullName: OpenTK.Graphics.Wgl.WglPointers._wglMakeContextCurrentEXT_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/WGL.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _wglMakeContextCurrentEXT_fnptr - path: opentk/src/OpenTK.Graphics/WGL.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs startLine: 929 assemblies: - OpenTK.Graphics @@ -3182,12 +2766,8 @@ items: fullName: OpenTK.Graphics.Wgl.WglPointers._wglMakeCurrent_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/WGL.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _wglMakeCurrent_fnptr - path: opentk/src/OpenTK.Graphics/WGL.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs startLine: 938 assemblies: - OpenTK.Graphics @@ -3211,12 +2791,8 @@ items: fullName: OpenTK.Graphics.Wgl.WglPointers._wglQueryCurrentContextNV_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/WGL.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _wglQueryCurrentContextNV_fnptr - path: opentk/src/OpenTK.Graphics/WGL.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs startLine: 947 assemblies: - OpenTK.Graphics @@ -3240,12 +2816,8 @@ items: fullName: OpenTK.Graphics.Wgl.WglPointers._wglQueryFrameCountNV_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/WGL.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _wglQueryFrameCountNV_fnptr - path: opentk/src/OpenTK.Graphics/WGL.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs startLine: 956 assemblies: - OpenTK.Graphics @@ -3269,12 +2841,8 @@ items: fullName: OpenTK.Graphics.Wgl.WglPointers._wglQueryFrameLockMasterI3D_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/WGL.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _wglQueryFrameLockMasterI3D_fnptr - path: opentk/src/OpenTK.Graphics/WGL.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs startLine: 965 assemblies: - OpenTK.Graphics @@ -3298,12 +2866,8 @@ items: fullName: OpenTK.Graphics.Wgl.WglPointers._wglQueryFrameTrackingI3D_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/WGL.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _wglQueryFrameTrackingI3D_fnptr - path: opentk/src/OpenTK.Graphics/WGL.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs startLine: 974 assemblies: - OpenTK.Graphics @@ -3327,12 +2891,8 @@ items: fullName: OpenTK.Graphics.Wgl.WglPointers._wglQueryGenlockMaxSourceDelayI3D_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/WGL.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _wglQueryGenlockMaxSourceDelayI3D_fnptr - path: opentk/src/OpenTK.Graphics/WGL.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs startLine: 983 assemblies: - OpenTK.Graphics @@ -3356,12 +2916,8 @@ items: fullName: OpenTK.Graphics.Wgl.WglPointers._wglQueryMaxSwapGroupsNV_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/WGL.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _wglQueryMaxSwapGroupsNV_fnptr - path: opentk/src/OpenTK.Graphics/WGL.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs startLine: 992 assemblies: - OpenTK.Graphics @@ -3385,12 +2941,8 @@ items: fullName: OpenTK.Graphics.Wgl.WglPointers._wglQueryPbufferARB_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/WGL.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _wglQueryPbufferARB_fnptr - path: opentk/src/OpenTK.Graphics/WGL.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs startLine: 1001 assemblies: - OpenTK.Graphics @@ -3414,12 +2966,8 @@ items: fullName: OpenTK.Graphics.Wgl.WglPointers._wglQueryPbufferEXT_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/WGL.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _wglQueryPbufferEXT_fnptr - path: opentk/src/OpenTK.Graphics/WGL.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs startLine: 1010 assemblies: - OpenTK.Graphics @@ -3443,12 +2991,8 @@ items: fullName: OpenTK.Graphics.Wgl.WglPointers._wglQuerySwapGroupNV_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/WGL.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _wglQuerySwapGroupNV_fnptr - path: opentk/src/OpenTK.Graphics/WGL.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs startLine: 1019 assemblies: - OpenTK.Graphics @@ -3472,12 +3016,8 @@ items: fullName: OpenTK.Graphics.Wgl.WglPointers._wglQueryVideoCaptureDeviceNV_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/WGL.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _wglQueryVideoCaptureDeviceNV_fnptr - path: opentk/src/OpenTK.Graphics/WGL.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs startLine: 1028 assemblies: - OpenTK.Graphics @@ -3501,12 +3041,8 @@ items: fullName: OpenTK.Graphics.Wgl.WglPointers._wglRealizeLayerPalette_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/WGL.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _wglRealizeLayerPalette_fnptr - path: opentk/src/OpenTK.Graphics/WGL.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs startLine: 1037 assemblies: - OpenTK.Graphics @@ -3530,12 +3066,8 @@ items: fullName: OpenTK.Graphics.Wgl.WglPointers._wglReleaseImageBufferEventsI3D_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/WGL.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _wglReleaseImageBufferEventsI3D_fnptr - path: opentk/src/OpenTK.Graphics/WGL.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs startLine: 1046 assemblies: - OpenTK.Graphics @@ -3559,12 +3091,8 @@ items: fullName: OpenTK.Graphics.Wgl.WglPointers._wglReleasePbufferDCARB_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/WGL.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _wglReleasePbufferDCARB_fnptr - path: opentk/src/OpenTK.Graphics/WGL.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs startLine: 1055 assemblies: - OpenTK.Graphics @@ -3588,12 +3116,8 @@ items: fullName: OpenTK.Graphics.Wgl.WglPointers._wglReleasePbufferDCEXT_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/WGL.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _wglReleasePbufferDCEXT_fnptr - path: opentk/src/OpenTK.Graphics/WGL.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs startLine: 1064 assemblies: - OpenTK.Graphics @@ -3617,12 +3141,8 @@ items: fullName: OpenTK.Graphics.Wgl.WglPointers._wglReleaseTexImageARB_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/WGL.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _wglReleaseTexImageARB_fnptr - path: opentk/src/OpenTK.Graphics/WGL.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs startLine: 1073 assemblies: - OpenTK.Graphics @@ -3646,12 +3166,8 @@ items: fullName: OpenTK.Graphics.Wgl.WglPointers._wglReleaseVideoCaptureDeviceNV_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/WGL.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _wglReleaseVideoCaptureDeviceNV_fnptr - path: opentk/src/OpenTK.Graphics/WGL.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs startLine: 1082 assemblies: - OpenTK.Graphics @@ -3675,12 +3191,8 @@ items: fullName: OpenTK.Graphics.Wgl.WglPointers._wglReleaseVideoDeviceNV_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/WGL.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _wglReleaseVideoDeviceNV_fnptr - path: opentk/src/OpenTK.Graphics/WGL.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs startLine: 1091 assemblies: - OpenTK.Graphics @@ -3704,12 +3216,8 @@ items: fullName: OpenTK.Graphics.Wgl.WglPointers._wglReleaseVideoImageNV_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/WGL.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _wglReleaseVideoImageNV_fnptr - path: opentk/src/OpenTK.Graphics/WGL.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs startLine: 1100 assemblies: - OpenTK.Graphics @@ -3733,12 +3241,8 @@ items: fullName: OpenTK.Graphics.Wgl.WglPointers._wglResetFrameCountNV_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/WGL.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _wglResetFrameCountNV_fnptr - path: opentk/src/OpenTK.Graphics/WGL.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs startLine: 1109 assemblies: - OpenTK.Graphics @@ -3762,12 +3266,8 @@ items: fullName: OpenTK.Graphics.Wgl.WglPointers._wglRestoreBufferRegionARB_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/WGL.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _wglRestoreBufferRegionARB_fnptr - path: opentk/src/OpenTK.Graphics/WGL.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs startLine: 1118 assemblies: - OpenTK.Graphics @@ -3791,12 +3291,8 @@ items: fullName: OpenTK.Graphics.Wgl.WglPointers._wglSaveBufferRegionARB_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/WGL.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _wglSaveBufferRegionARB_fnptr - path: opentk/src/OpenTK.Graphics/WGL.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs startLine: 1127 assemblies: - OpenTK.Graphics @@ -3820,12 +3316,8 @@ items: fullName: OpenTK.Graphics.Wgl.WglPointers._wglSendPbufferToVideoNV_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/WGL.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _wglSendPbufferToVideoNV_fnptr - path: opentk/src/OpenTK.Graphics/WGL.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs startLine: 1136 assemblies: - OpenTK.Graphics @@ -3849,12 +3341,8 @@ items: fullName: OpenTK.Graphics.Wgl.WglPointers._wglSetDigitalVideoParametersI3D_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/WGL.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _wglSetDigitalVideoParametersI3D_fnptr - path: opentk/src/OpenTK.Graphics/WGL.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs startLine: 1145 assemblies: - OpenTK.Graphics @@ -3878,12 +3366,8 @@ items: fullName: OpenTK.Graphics.Wgl.WglPointers._wglSetGammaTableI3D_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/WGL.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _wglSetGammaTableI3D_fnptr - path: opentk/src/OpenTK.Graphics/WGL.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs startLine: 1154 assemblies: - OpenTK.Graphics @@ -3907,12 +3391,8 @@ items: fullName: OpenTK.Graphics.Wgl.WglPointers._wglSetGammaTableParametersI3D_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/WGL.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _wglSetGammaTableParametersI3D_fnptr - path: opentk/src/OpenTK.Graphics/WGL.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs startLine: 1163 assemblies: - OpenTK.Graphics @@ -3936,12 +3416,8 @@ items: fullName: OpenTK.Graphics.Wgl.WglPointers._wglSetLayerPaletteEntries_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/WGL.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _wglSetLayerPaletteEntries_fnptr - path: opentk/src/OpenTK.Graphics/WGL.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs startLine: 1172 assemblies: - OpenTK.Graphics @@ -3965,12 +3441,8 @@ items: fullName: OpenTK.Graphics.Wgl.WglPointers._wglSetPbufferAttribARB_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/WGL.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _wglSetPbufferAttribARB_fnptr - path: opentk/src/OpenTK.Graphics/WGL.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs startLine: 1181 assemblies: - OpenTK.Graphics @@ -3994,12 +3466,8 @@ items: fullName: OpenTK.Graphics.Wgl.WglPointers._wglSetStereoEmitterState3DL_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/WGL.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _wglSetStereoEmitterState3DL_fnptr - path: opentk/src/OpenTK.Graphics/WGL.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs startLine: 1190 assemblies: - OpenTK.Graphics @@ -4023,12 +3491,8 @@ items: fullName: OpenTK.Graphics.Wgl.WglPointers._wglShareLists_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/WGL.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _wglShareLists_fnptr - path: opentk/src/OpenTK.Graphics/WGL.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs startLine: 1199 assemblies: - OpenTK.Graphics @@ -4052,12 +3516,8 @@ items: fullName: OpenTK.Graphics.Wgl.WglPointers._wglSwapBuffersMscOML_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/WGL.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _wglSwapBuffersMscOML_fnptr - path: opentk/src/OpenTK.Graphics/WGL.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs startLine: 1208 assemblies: - OpenTK.Graphics @@ -4081,12 +3541,8 @@ items: fullName: OpenTK.Graphics.Wgl.WglPointers._wglSwapIntervalEXT_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/WGL.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _wglSwapIntervalEXT_fnptr - path: opentk/src/OpenTK.Graphics/WGL.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs startLine: 1217 assemblies: - OpenTK.Graphics @@ -4110,12 +3566,8 @@ items: fullName: OpenTK.Graphics.Wgl.WglPointers._wglSwapLayerBuffers_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/WGL.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _wglSwapLayerBuffers_fnptr - path: opentk/src/OpenTK.Graphics/WGL.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs startLine: 1226 assemblies: - OpenTK.Graphics @@ -4139,12 +3591,8 @@ items: fullName: OpenTK.Graphics.Wgl.WglPointers._wglSwapLayerBuffersMscOML_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/WGL.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _wglSwapLayerBuffersMscOML_fnptr - path: opentk/src/OpenTK.Graphics/WGL.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs startLine: 1235 assemblies: - OpenTK.Graphics @@ -4168,12 +3616,8 @@ items: fullName: OpenTK.Graphics.Wgl.WglPointers._wglUseFontBitmaps_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/WGL.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _wglUseFontBitmaps_fnptr - path: opentk/src/OpenTK.Graphics/WGL.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs startLine: 1244 assemblies: - OpenTK.Graphics @@ -4197,12 +3641,8 @@ items: fullName: OpenTK.Graphics.Wgl.WglPointers._wglUseFontBitmapsA_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/WGL.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _wglUseFontBitmapsA_fnptr - path: opentk/src/OpenTK.Graphics/WGL.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs startLine: 1253 assemblies: - OpenTK.Graphics @@ -4226,12 +3666,8 @@ items: fullName: OpenTK.Graphics.Wgl.WglPointers._wglUseFontBitmapsW_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/WGL.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _wglUseFontBitmapsW_fnptr - path: opentk/src/OpenTK.Graphics/WGL.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs startLine: 1262 assemblies: - OpenTK.Graphics @@ -4255,12 +3691,8 @@ items: fullName: OpenTK.Graphics.Wgl.WglPointers._wglUseFontOutlines_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/WGL.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _wglUseFontOutlines_fnptr - path: opentk/src/OpenTK.Graphics/WGL.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs startLine: 1271 assemblies: - OpenTK.Graphics @@ -4284,12 +3716,8 @@ items: fullName: OpenTK.Graphics.Wgl.WglPointers._wglUseFontOutlinesA_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/WGL.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _wglUseFontOutlinesA_fnptr - path: opentk/src/OpenTK.Graphics/WGL.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs startLine: 1280 assemblies: - OpenTK.Graphics @@ -4313,12 +3741,8 @@ items: fullName: OpenTK.Graphics.Wgl.WglPointers._wglUseFontOutlinesW_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/WGL.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _wglUseFontOutlinesW_fnptr - path: opentk/src/OpenTK.Graphics/WGL.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs startLine: 1289 assemblies: - OpenTK.Graphics @@ -4342,12 +3766,8 @@ items: fullName: OpenTK.Graphics.Wgl.WglPointers._wglWaitForMscOML_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/WGL.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _wglWaitForMscOML_fnptr - path: opentk/src/OpenTK.Graphics/WGL.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs startLine: 1298 assemblies: - OpenTK.Graphics @@ -4371,12 +3791,8 @@ items: fullName: OpenTK.Graphics.Wgl.WglPointers._wglWaitForSbcOML_fnptr type: Field source: - remote: - path: src/OpenTK.Graphics/WGL.Pointers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _wglWaitForSbcOML_fnptr - path: opentk/src/OpenTK.Graphics/WGL.Pointers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs startLine: 1307 assemblies: - OpenTK.Graphics diff --git a/api/OpenTK.Graphics.Wgl._GPU_DEVICE.yml b/api/OpenTK.Graphics.Wgl._GPU_DEVICE.yml index bd76fdf1..67e687c1 100644 --- a/api/OpenTK.Graphics.Wgl._GPU_DEVICE.yml +++ b/api/OpenTK.Graphics.Wgl._GPU_DEVICE.yml @@ -18,12 +18,8 @@ items: fullName: OpenTK.Graphics.Wgl._GPU_DEVICE type: Struct source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: _GPU_DEVICE - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 604 assemblies: - OpenTK.Graphics @@ -50,12 +46,8 @@ items: fullName: OpenTK.Graphics.Wgl._GPU_DEVICE.cb type: Field source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: cb - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 606 assemblies: - OpenTK.Graphics @@ -77,12 +69,8 @@ items: fullName: OpenTK.Graphics.Wgl._GPU_DEVICE.DeviceName type: Field source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DeviceName - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 607 assemblies: - OpenTK.Graphics @@ -104,12 +92,8 @@ items: fullName: OpenTK.Graphics.Wgl._GPU_DEVICE.DeviceString type: Field source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DeviceString - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 608 assemblies: - OpenTK.Graphics @@ -131,12 +115,8 @@ items: fullName: OpenTK.Graphics.Wgl._GPU_DEVICE.Flags type: Field source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Flags - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 609 assemblies: - OpenTK.Graphics @@ -158,12 +138,8 @@ items: fullName: OpenTK.Graphics.Wgl._GPU_DEVICE.rcVirtualScreen type: Field source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: rcVirtualScreen - path: opentk/src/OpenTK.Graphics/Types.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs startLine: 610 assemblies: - OpenTK.Graphics diff --git a/api/OpenTK.Graphics.Wgl.yml b/api/OpenTK.Graphics.Wgl.yml index 3e966b57..aeece517 100644 --- a/api/OpenTK.Graphics.Wgl.yml +++ b/api/OpenTK.Graphics.Wgl.yml @@ -7,14 +7,20 @@ items: - OpenTK.Graphics.Wgl.AccelerationType - OpenTK.Graphics.Wgl.All - OpenTK.Graphics.Wgl.ColorBuffer + - OpenTK.Graphics.Wgl.ColorBufferMask - OpenTK.Graphics.Wgl.ColorRef - OpenTK.Graphics.Wgl.ContextAttribs - OpenTK.Graphics.Wgl.ContextAttribute + - OpenTK.Graphics.Wgl.ContextFlagsMask + - OpenTK.Graphics.Wgl.ContextProfileMask + - OpenTK.Graphics.Wgl.DXInteropMaskNV - OpenTK.Graphics.Wgl.DigitalVideoAttribute - OpenTK.Graphics.Wgl.FontFormat - OpenTK.Graphics.Wgl.GPUPropertyAMD - OpenTK.Graphics.Wgl.GammaTableAttribute + - OpenTK.Graphics.Wgl.ImageBufferMaskI3D - OpenTK.Graphics.Wgl.LayerPlaneDescriptor + - OpenTK.Graphics.Wgl.LayerPlaneMask - OpenTK.Graphics.Wgl.ObjectTypeDX - OpenTK.Graphics.Wgl.PBufferAttribute - OpenTK.Graphics.Wgl.PBufferCubeMapFace @@ -29,12 +35,6 @@ items: - OpenTK.Graphics.Wgl.VideoCaptureDeviceAttribute - OpenTK.Graphics.Wgl.VideoOutputBuffer - OpenTK.Graphics.Wgl.VideoOutputBufferType - - OpenTK.Graphics.Wgl.WGLColorBufferMask - - OpenTK.Graphics.Wgl.WGLContextFlagsMask - - OpenTK.Graphics.Wgl.WGLContextProfileMask - - OpenTK.Graphics.Wgl.WGLDXInteropMaskNV - - OpenTK.Graphics.Wgl.WGLImageBufferMaskI3D - - OpenTK.Graphics.Wgl.WGLLayerPlaneMask - OpenTK.Graphics.Wgl.Wgl - OpenTK.Graphics.Wgl.Wgl.AMD - OpenTK.Graphics.Wgl.Wgl.ARB @@ -117,6 +117,13 @@ references: name: ColorBuffer nameWithType: ColorBuffer fullName: OpenTK.Graphics.Wgl.ColorBuffer +- uid: OpenTK.Graphics.Wgl.ColorBufferMask + commentId: T:OpenTK.Graphics.Wgl.ColorBufferMask + parent: OpenTK.Graphics.Wgl + href: OpenTK.Graphics.Wgl.ColorBufferMask.html + name: ColorBufferMask + nameWithType: ColorBufferMask + fullName: OpenTK.Graphics.Wgl.ColorBufferMask - uid: OpenTK.Graphics.Wgl.ContextAttribs commentId: T:OpenTK.Graphics.Wgl.ContextAttribs parent: OpenTK.Graphics.Wgl @@ -131,6 +138,20 @@ references: name: ContextAttribute nameWithType: ContextAttribute fullName: OpenTK.Graphics.Wgl.ContextAttribute +- uid: OpenTK.Graphics.Wgl.ContextFlagsMask + commentId: T:OpenTK.Graphics.Wgl.ContextFlagsMask + parent: OpenTK.Graphics.Wgl + href: OpenTK.Graphics.Wgl.ContextFlagsMask.html + name: ContextFlagsMask + nameWithType: ContextFlagsMask + fullName: OpenTK.Graphics.Wgl.ContextFlagsMask +- uid: OpenTK.Graphics.Wgl.ContextProfileMask + commentId: T:OpenTK.Graphics.Wgl.ContextProfileMask + parent: OpenTK.Graphics.Wgl + href: OpenTK.Graphics.Wgl.ContextProfileMask.html + name: ContextProfileMask + nameWithType: ContextProfileMask + fullName: OpenTK.Graphics.Wgl.ContextProfileMask - uid: OpenTK.Graphics.Wgl.DigitalVideoAttribute commentId: T:OpenTK.Graphics.Wgl.DigitalVideoAttribute parent: OpenTK.Graphics.Wgl @@ -138,6 +159,13 @@ references: name: DigitalVideoAttribute nameWithType: DigitalVideoAttribute fullName: OpenTK.Graphics.Wgl.DigitalVideoAttribute +- uid: OpenTK.Graphics.Wgl.DXInteropMaskNV + commentId: T:OpenTK.Graphics.Wgl.DXInteropMaskNV + parent: OpenTK.Graphics.Wgl + href: OpenTK.Graphics.Wgl.DXInteropMaskNV.html + name: DXInteropMaskNV + nameWithType: DXInteropMaskNV + fullName: OpenTK.Graphics.Wgl.DXInteropMaskNV - uid: OpenTK.Graphics.Wgl.FontFormat commentId: T:OpenTK.Graphics.Wgl.FontFormat parent: OpenTK.Graphics.Wgl @@ -159,6 +187,20 @@ references: name: GPUPropertyAMD nameWithType: GPUPropertyAMD fullName: OpenTK.Graphics.Wgl.GPUPropertyAMD +- uid: OpenTK.Graphics.Wgl.ImageBufferMaskI3D + commentId: T:OpenTK.Graphics.Wgl.ImageBufferMaskI3D + parent: OpenTK.Graphics.Wgl + href: OpenTK.Graphics.Wgl.ImageBufferMaskI3D.html + name: ImageBufferMaskI3D + nameWithType: ImageBufferMaskI3D + fullName: OpenTK.Graphics.Wgl.ImageBufferMaskI3D +- uid: OpenTK.Graphics.Wgl.LayerPlaneMask + commentId: T:OpenTK.Graphics.Wgl.LayerPlaneMask + parent: OpenTK.Graphics.Wgl + href: OpenTK.Graphics.Wgl.LayerPlaneMask.html + name: LayerPlaneMask + nameWithType: LayerPlaneMask + fullName: OpenTK.Graphics.Wgl.LayerPlaneMask - uid: OpenTK.Graphics.Wgl.ObjectTypeDX commentId: T:OpenTK.Graphics.Wgl.ObjectTypeDX parent: OpenTK.Graphics.Wgl @@ -243,48 +285,6 @@ references: name: VideoOutputBufferType nameWithType: VideoOutputBufferType fullName: OpenTK.Graphics.Wgl.VideoOutputBufferType -- uid: OpenTK.Graphics.Wgl.WGLColorBufferMask - commentId: T:OpenTK.Graphics.Wgl.WGLColorBufferMask - parent: OpenTK.Graphics.Wgl - href: OpenTK.Graphics.Wgl.WGLColorBufferMask.html - name: WGLColorBufferMask - nameWithType: WGLColorBufferMask - fullName: OpenTK.Graphics.Wgl.WGLColorBufferMask -- uid: OpenTK.Graphics.Wgl.WGLContextFlagsMask - commentId: T:OpenTK.Graphics.Wgl.WGLContextFlagsMask - parent: OpenTK.Graphics.Wgl - href: OpenTK.Graphics.Wgl.WGLContextFlagsMask.html - name: WGLContextFlagsMask - nameWithType: WGLContextFlagsMask - fullName: OpenTK.Graphics.Wgl.WGLContextFlagsMask -- uid: OpenTK.Graphics.Wgl.WGLContextProfileMask - commentId: T:OpenTK.Graphics.Wgl.WGLContextProfileMask - parent: OpenTK.Graphics.Wgl - href: OpenTK.Graphics.Wgl.WGLContextProfileMask.html - name: WGLContextProfileMask - nameWithType: WGLContextProfileMask - fullName: OpenTK.Graphics.Wgl.WGLContextProfileMask -- uid: OpenTK.Graphics.Wgl.WGLDXInteropMaskNV - commentId: T:OpenTK.Graphics.Wgl.WGLDXInteropMaskNV - parent: OpenTK.Graphics.Wgl - href: OpenTK.Graphics.Wgl.WGLDXInteropMaskNV.html - name: WGLDXInteropMaskNV - nameWithType: WGLDXInteropMaskNV - fullName: OpenTK.Graphics.Wgl.WGLDXInteropMaskNV -- uid: OpenTK.Graphics.Wgl.WGLImageBufferMaskI3D - commentId: T:OpenTK.Graphics.Wgl.WGLImageBufferMaskI3D - parent: OpenTK.Graphics.Wgl - href: OpenTK.Graphics.Wgl.WGLImageBufferMaskI3D.html - name: WGLImageBufferMaskI3D - nameWithType: WGLImageBufferMaskI3D - fullName: OpenTK.Graphics.Wgl.WGLImageBufferMaskI3D -- uid: OpenTK.Graphics.Wgl.WGLLayerPlaneMask - commentId: T:OpenTK.Graphics.Wgl.WGLLayerPlaneMask - parent: OpenTK.Graphics.Wgl - href: OpenTK.Graphics.Wgl.WGLLayerPlaneMask.html - name: WGLLayerPlaneMask - nameWithType: WGLLayerPlaneMask - fullName: OpenTK.Graphics.Wgl.WGLLayerPlaneMask - uid: OpenTK.Graphics.Wgl.Wgl commentId: T:OpenTK.Graphics.Wgl.Wgl href: OpenTK.Graphics.Wgl.Wgl.html diff --git a/api/OpenTK.Graphics.yml b/api/OpenTK.Graphics.yml index f34d8a2e..218911a6 100644 --- a/api/OpenTK.Graphics.yml +++ b/api/OpenTK.Graphics.yml @@ -24,6 +24,7 @@ items: - OpenTK.Graphics.SpecialNumbers - OpenTK.Graphics.TextureHandle - OpenTK.Graphics.TransformFeedbackHandle + - OpenTK.Graphics.VKLoader - OpenTK.Graphics.VertexArrayHandle - OpenTK.Graphics.WGLLoader - OpenTK.Graphics.WGLLoader.BindingsContext @@ -196,6 +197,12 @@ references: name: PerfQueryHandle nameWithType: PerfQueryHandle fullName: OpenTK.Graphics.PerfQueryHandle +- uid: OpenTK.Graphics.VKLoader + commentId: T:OpenTK.Graphics.VKLoader + href: OpenTK.Graphics.VKLoader.html + name: VKLoader + nameWithType: VKLoader + fullName: OpenTK.Graphics.VKLoader - uid: OpenTK.Graphics.WGLLoader commentId: T:OpenTK.Graphics.WGLLoader href: OpenTK.Graphics.WGLLoader.html diff --git a/api/OpenTK.IBindingsContext.yml b/api/OpenTK.IBindingsContext.yml index e88d650b..d704f107 100644 --- a/api/OpenTK.IBindingsContext.yml +++ b/api/OpenTK.IBindingsContext.yml @@ -14,12 +14,8 @@ items: fullName: OpenTK.IBindingsContext type: Interface source: - remote: - path: src/OpenTK.Core/Context/IBindingsContext.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: IBindingsContext - path: opentk/src/OpenTK.Core/Context/IBindingsContext.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Core\Context\IBindingsContext.cs startLine: 45 assemblies: - OpenTK.Core @@ -92,12 +88,8 @@ items: fullName: OpenTK.IBindingsContext.GetProcAddress(string) type: Method source: - remote: - path: src/OpenTK.Core/Context/IBindingsContext.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetProcAddress - path: opentk/src/OpenTK.Core/Context/IBindingsContext.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Core\Context\IBindingsContext.cs startLine: 60 assemblies: - OpenTK.Core diff --git a/api/OpenTK.Input.Hid.HidConsumerUsage.yml b/api/OpenTK.Input.Hid.HidConsumerUsage.yml index 584cb795..ee543f43 100644 --- a/api/OpenTK.Input.Hid.HidConsumerUsage.yml +++ b/api/OpenTK.Input.Hid.HidConsumerUsage.yml @@ -15,12 +15,8 @@ items: fullName: OpenTK.Input.Hid.HidConsumerUsage type: Enum source: - remote: - path: src/OpenTK.Input/Hid/HidConsumerUsage.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: HidConsumerUsage - path: opentk/src/OpenTK.Input/Hid/HidConsumerUsage.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Input\Hid\HidConsumerUsage.cs startLine: 5 assemblies: - OpenTK.Input @@ -42,12 +38,8 @@ items: fullName: OpenTK.Input.Hid.HidConsumerUsage.ConsumerControl type: Field source: - remote: - path: src/OpenTK.Input/Hid/HidConsumerUsage.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ConsumerControl - path: opentk/src/OpenTK.Input/Hid/HidConsumerUsage.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Input\Hid\HidConsumerUsage.cs startLine: 10 assemblies: - OpenTK.Input @@ -70,12 +62,8 @@ items: fullName: OpenTK.Input.Hid.HidConsumerUsage.ACPan type: Field source: - remote: - path: src/OpenTK.Input/Hid/HidConsumerUsage.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ACPan - path: opentk/src/OpenTK.Input/Hid/HidConsumerUsage.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Input\Hid\HidConsumerUsage.cs startLine: 15 assemblies: - OpenTK.Input diff --git a/api/OpenTK.Input.Hid.HidGenericDesktopUsage.yml b/api/OpenTK.Input.Hid.HidGenericDesktopUsage.yml index 9bd21c3d..db19485b 100644 --- a/api/OpenTK.Input.Hid.HidGenericDesktopUsage.yml +++ b/api/OpenTK.Input.Hid.HidGenericDesktopUsage.yml @@ -60,12 +60,8 @@ items: fullName: OpenTK.Input.Hid.HidGenericDesktopUsage type: Enum source: - remote: - path: src/OpenTK.Input/Hid/HidGenericDesktopUsage.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: HidGenericDesktopUsage - path: opentk/src/OpenTK.Input/Hid/HidGenericDesktopUsage.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Input\Hid\HidGenericDesktopUsage.cs startLine: 5 assemblies: - OpenTK.Input @@ -87,12 +83,8 @@ items: fullName: OpenTK.Input.Hid.HidGenericDesktopUsage.Pointer type: Field source: - remote: - path: src/OpenTK.Input/Hid/HidGenericDesktopUsage.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Pointer - path: opentk/src/OpenTK.Input/Hid/HidGenericDesktopUsage.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Input\Hid\HidGenericDesktopUsage.cs startLine: 11 assemblies: - OpenTK.Input @@ -118,12 +110,8 @@ items: fullName: OpenTK.Input.Hid.HidGenericDesktopUsage.Mouse type: Field source: - remote: - path: src/OpenTK.Input/Hid/HidGenericDesktopUsage.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Mouse - path: opentk/src/OpenTK.Input/Hid/HidGenericDesktopUsage.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Input\Hid\HidGenericDesktopUsage.cs startLine: 18 assemblies: - OpenTK.Input @@ -151,12 +139,8 @@ items: fullName: OpenTK.Input.Hid.HidGenericDesktopUsage.Joystick type: Field source: - remote: - path: src/OpenTK.Input/Hid/HidGenericDesktopUsage.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Joystick - path: opentk/src/OpenTK.Input/Hid/HidGenericDesktopUsage.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Input\Hid\HidGenericDesktopUsage.cs startLine: 25 assemblies: - OpenTK.Input @@ -179,12 +163,8 @@ items: fullName: OpenTK.Input.Hid.HidGenericDesktopUsage.GamePad type: Field source: - remote: - path: src/OpenTK.Input/Hid/HidGenericDesktopUsage.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GamePad - path: opentk/src/OpenTK.Input/Hid/HidGenericDesktopUsage.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Input\Hid\HidGenericDesktopUsage.cs startLine: 30 assemblies: - OpenTK.Input @@ -207,12 +187,8 @@ items: fullName: OpenTK.Input.Hid.HidGenericDesktopUsage.Keyboard type: Field source: - remote: - path: src/OpenTK.Input/Hid/HidGenericDesktopUsage.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Keyboard - path: opentk/src/OpenTK.Input/Hid/HidGenericDesktopUsage.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Input\Hid\HidGenericDesktopUsage.cs startLine: 35 assemblies: - OpenTK.Input @@ -235,12 +211,8 @@ items: fullName: OpenTK.Input.Hid.HidGenericDesktopUsage.Keypad type: Field source: - remote: - path: src/OpenTK.Input/Hid/HidGenericDesktopUsage.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Keypad - path: opentk/src/OpenTK.Input/Hid/HidGenericDesktopUsage.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Input\Hid\HidGenericDesktopUsage.cs startLine: 40 assemblies: - OpenTK.Input @@ -263,12 +235,8 @@ items: fullName: OpenTK.Input.Hid.HidGenericDesktopUsage.MultiAxisController type: Field source: - remote: - path: src/OpenTK.Input/Hid/HidGenericDesktopUsage.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MultiAxisController - path: opentk/src/OpenTK.Input/Hid/HidGenericDesktopUsage.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Input\Hid\HidGenericDesktopUsage.cs startLine: 45 assemblies: - OpenTK.Input @@ -291,12 +259,8 @@ items: fullName: OpenTK.Input.Hid.HidGenericDesktopUsage.X type: Field source: - remote: - path: src/OpenTK.Input/Hid/HidGenericDesktopUsage.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: X - path: opentk/src/OpenTK.Input/Hid/HidGenericDesktopUsage.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Input\Hid\HidGenericDesktopUsage.cs startLine: 52 assemblies: - OpenTK.Input @@ -319,12 +283,8 @@ items: fullName: OpenTK.Input.Hid.HidGenericDesktopUsage.Y type: Field source: - remote: - path: src/OpenTK.Input/Hid/HidGenericDesktopUsage.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Y - path: opentk/src/OpenTK.Input/Hid/HidGenericDesktopUsage.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Input\Hid\HidGenericDesktopUsage.cs startLine: 57 assemblies: - OpenTK.Input @@ -347,12 +307,8 @@ items: fullName: OpenTK.Input.Hid.HidGenericDesktopUsage.Z type: Field source: - remote: - path: src/OpenTK.Input/Hid/HidGenericDesktopUsage.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Z - path: opentk/src/OpenTK.Input/Hid/HidGenericDesktopUsage.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Input\Hid\HidGenericDesktopUsage.cs startLine: 62 assemblies: - OpenTK.Input @@ -375,12 +331,8 @@ items: fullName: OpenTK.Input.Hid.HidGenericDesktopUsage.RotationX type: Field source: - remote: - path: src/OpenTK.Input/Hid/HidGenericDesktopUsage.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: RotationX - path: opentk/src/OpenTK.Input/Hid/HidGenericDesktopUsage.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Input\Hid\HidGenericDesktopUsage.cs startLine: 67 assemblies: - OpenTK.Input @@ -403,12 +355,8 @@ items: fullName: OpenTK.Input.Hid.HidGenericDesktopUsage.RotationY type: Field source: - remote: - path: src/OpenTK.Input/Hid/HidGenericDesktopUsage.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: RotationY - path: opentk/src/OpenTK.Input/Hid/HidGenericDesktopUsage.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Input\Hid\HidGenericDesktopUsage.cs startLine: 72 assemblies: - OpenTK.Input @@ -431,12 +379,8 @@ items: fullName: OpenTK.Input.Hid.HidGenericDesktopUsage.RotationZ type: Field source: - remote: - path: src/OpenTK.Input/Hid/HidGenericDesktopUsage.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: RotationZ - path: opentk/src/OpenTK.Input/Hid/HidGenericDesktopUsage.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Input\Hid\HidGenericDesktopUsage.cs startLine: 77 assemblies: - OpenTK.Input @@ -459,12 +403,8 @@ items: fullName: OpenTK.Input.Hid.HidGenericDesktopUsage.Slider type: Field source: - remote: - path: src/OpenTK.Input/Hid/HidGenericDesktopUsage.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Slider - path: opentk/src/OpenTK.Input/Hid/HidGenericDesktopUsage.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Input\Hid\HidGenericDesktopUsage.cs startLine: 82 assemblies: - OpenTK.Input @@ -487,12 +427,8 @@ items: fullName: OpenTK.Input.Hid.HidGenericDesktopUsage.Dial type: Field source: - remote: - path: src/OpenTK.Input/Hid/HidGenericDesktopUsage.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Dial - path: opentk/src/OpenTK.Input/Hid/HidGenericDesktopUsage.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Input\Hid\HidGenericDesktopUsage.cs startLine: 88 assemblies: - OpenTK.Input @@ -518,12 +454,8 @@ items: fullName: OpenTK.Input.Hid.HidGenericDesktopUsage.Wheel type: Field source: - remote: - path: src/OpenTK.Input/Hid/HidGenericDesktopUsage.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Wheel - path: opentk/src/OpenTK.Input/Hid/HidGenericDesktopUsage.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Input\Hid\HidGenericDesktopUsage.cs startLine: 93 assemblies: - OpenTK.Input @@ -546,12 +478,8 @@ items: fullName: OpenTK.Input.Hid.HidGenericDesktopUsage.Hatswitch type: Field source: - remote: - path: src/OpenTK.Input/Hid/HidGenericDesktopUsage.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Hatswitch - path: opentk/src/OpenTK.Input/Hid/HidGenericDesktopUsage.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Input\Hid\HidGenericDesktopUsage.cs startLine: 98 assemblies: - OpenTK.Input @@ -574,12 +502,8 @@ items: fullName: OpenTK.Input.Hid.HidGenericDesktopUsage.CountedBuffer type: Field source: - remote: - path: src/OpenTK.Input/Hid/HidGenericDesktopUsage.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CountedBuffer - path: opentk/src/OpenTK.Input/Hid/HidGenericDesktopUsage.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Input\Hid\HidGenericDesktopUsage.cs startLine: 103 assemblies: - OpenTK.Input @@ -602,12 +526,8 @@ items: fullName: OpenTK.Input.Hid.HidGenericDesktopUsage.ByteCount type: Field source: - remote: - path: src/OpenTK.Input/Hid/HidGenericDesktopUsage.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ByteCount - path: opentk/src/OpenTK.Input/Hid/HidGenericDesktopUsage.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Input\Hid\HidGenericDesktopUsage.cs startLine: 109 assemblies: - OpenTK.Input @@ -633,12 +553,8 @@ items: fullName: OpenTK.Input.Hid.HidGenericDesktopUsage.MotionWakeup type: Field source: - remote: - path: src/OpenTK.Input/Hid/HidGenericDesktopUsage.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MotionWakeup - path: opentk/src/OpenTK.Input/Hid/HidGenericDesktopUsage.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Input\Hid\HidGenericDesktopUsage.cs startLine: 114 assemblies: - OpenTK.Input @@ -661,12 +577,8 @@ items: fullName: OpenTK.Input.Hid.HidGenericDesktopUsage.Start type: Field source: - remote: - path: src/OpenTK.Input/Hid/HidGenericDesktopUsage.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Start - path: opentk/src/OpenTK.Input/Hid/HidGenericDesktopUsage.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Input\Hid\HidGenericDesktopUsage.cs startLine: 119 assemblies: - OpenTK.Input @@ -689,12 +601,8 @@ items: fullName: OpenTK.Input.Hid.HidGenericDesktopUsage.Select type: Field source: - remote: - path: src/OpenTK.Input/Hid/HidGenericDesktopUsage.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Select - path: opentk/src/OpenTK.Input/Hid/HidGenericDesktopUsage.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Input\Hid\HidGenericDesktopUsage.cs startLine: 124 assemblies: - OpenTK.Input @@ -717,12 +625,8 @@ items: fullName: OpenTK.Input.Hid.HidGenericDesktopUsage.VectorX type: Field source: - remote: - path: src/OpenTK.Input/Hid/HidGenericDesktopUsage.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: VectorX - path: opentk/src/OpenTK.Input/Hid/HidGenericDesktopUsage.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Input\Hid\HidGenericDesktopUsage.cs startLine: 131 assemblies: - OpenTK.Input @@ -745,12 +649,8 @@ items: fullName: OpenTK.Input.Hid.HidGenericDesktopUsage.VectorY type: Field source: - remote: - path: src/OpenTK.Input/Hid/HidGenericDesktopUsage.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: VectorY - path: opentk/src/OpenTK.Input/Hid/HidGenericDesktopUsage.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Input\Hid\HidGenericDesktopUsage.cs startLine: 136 assemblies: - OpenTK.Input @@ -773,12 +673,8 @@ items: fullName: OpenTK.Input.Hid.HidGenericDesktopUsage.VectorZ type: Field source: - remote: - path: src/OpenTK.Input/Hid/HidGenericDesktopUsage.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: VectorZ - path: opentk/src/OpenTK.Input/Hid/HidGenericDesktopUsage.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Input\Hid\HidGenericDesktopUsage.cs startLine: 141 assemblies: - OpenTK.Input @@ -801,12 +697,8 @@ items: fullName: OpenTK.Input.Hid.HidGenericDesktopUsage.VectorXBodyRelative type: Field source: - remote: - path: src/OpenTK.Input/Hid/HidGenericDesktopUsage.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: VectorXBodyRelative - path: opentk/src/OpenTK.Input/Hid/HidGenericDesktopUsage.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Input\Hid\HidGenericDesktopUsage.cs startLine: 146 assemblies: - OpenTK.Input @@ -829,12 +721,8 @@ items: fullName: OpenTK.Input.Hid.HidGenericDesktopUsage.VectorYBodyRelative type: Field source: - remote: - path: src/OpenTK.Input/Hid/HidGenericDesktopUsage.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: VectorYBodyRelative - path: opentk/src/OpenTK.Input/Hid/HidGenericDesktopUsage.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Input\Hid\HidGenericDesktopUsage.cs startLine: 151 assemblies: - OpenTK.Input @@ -857,12 +745,8 @@ items: fullName: OpenTK.Input.Hid.HidGenericDesktopUsage.VectorZBodyRelative type: Field source: - remote: - path: src/OpenTK.Input/Hid/HidGenericDesktopUsage.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: VectorZBodyRelative - path: opentk/src/OpenTK.Input/Hid/HidGenericDesktopUsage.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Input\Hid\HidGenericDesktopUsage.cs startLine: 156 assemblies: - OpenTK.Input @@ -885,12 +769,8 @@ items: fullName: OpenTK.Input.Hid.HidGenericDesktopUsage.VectorNonOriented type: Field source: - remote: - path: src/OpenTK.Input/Hid/HidGenericDesktopUsage.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: VectorNonOriented - path: opentk/src/OpenTK.Input/Hid/HidGenericDesktopUsage.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Input\Hid\HidGenericDesktopUsage.cs startLine: 161 assemblies: - OpenTK.Input @@ -913,12 +793,8 @@ items: fullName: OpenTK.Input.Hid.HidGenericDesktopUsage.SystemControl type: Field source: - remote: - path: src/OpenTK.Input/Hid/HidGenericDesktopUsage.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SystemControl - path: opentk/src/OpenTK.Input/Hid/HidGenericDesktopUsage.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Input\Hid\HidGenericDesktopUsage.cs startLine: 168 assemblies: - OpenTK.Input @@ -941,12 +817,8 @@ items: fullName: OpenTK.Input.Hid.HidGenericDesktopUsage.SystemPowerDown type: Field source: - remote: - path: src/OpenTK.Input/Hid/HidGenericDesktopUsage.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SystemPowerDown - path: opentk/src/OpenTK.Input/Hid/HidGenericDesktopUsage.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Input\Hid\HidGenericDesktopUsage.cs startLine: 174 assemblies: - OpenTK.Input @@ -972,12 +844,8 @@ items: fullName: OpenTK.Input.Hid.HidGenericDesktopUsage.SystemSleep type: Field source: - remote: - path: src/OpenTK.Input/Hid/HidGenericDesktopUsage.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SystemSleep - path: opentk/src/OpenTK.Input/Hid/HidGenericDesktopUsage.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Input\Hid\HidGenericDesktopUsage.cs startLine: 179 assemblies: - OpenTK.Input @@ -1000,12 +868,8 @@ items: fullName: OpenTK.Input.Hid.HidGenericDesktopUsage.SystemWakeUp type: Field source: - remote: - path: src/OpenTK.Input/Hid/HidGenericDesktopUsage.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SystemWakeUp - path: opentk/src/OpenTK.Input/Hid/HidGenericDesktopUsage.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Input\Hid\HidGenericDesktopUsage.cs startLine: 184 assemblies: - OpenTK.Input @@ -1028,12 +892,8 @@ items: fullName: OpenTK.Input.Hid.HidGenericDesktopUsage.SystemContextMenu type: Field source: - remote: - path: src/OpenTK.Input/Hid/HidGenericDesktopUsage.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SystemContextMenu - path: opentk/src/OpenTK.Input/Hid/HidGenericDesktopUsage.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Input\Hid\HidGenericDesktopUsage.cs startLine: 189 assemblies: - OpenTK.Input @@ -1056,12 +916,8 @@ items: fullName: OpenTK.Input.Hid.HidGenericDesktopUsage.SystemMainMenu type: Field source: - remote: - path: src/OpenTK.Input/Hid/HidGenericDesktopUsage.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SystemMainMenu - path: opentk/src/OpenTK.Input/Hid/HidGenericDesktopUsage.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Input\Hid\HidGenericDesktopUsage.cs startLine: 194 assemblies: - OpenTK.Input @@ -1084,12 +940,8 @@ items: fullName: OpenTK.Input.Hid.HidGenericDesktopUsage.SystemAppMenu type: Field source: - remote: - path: src/OpenTK.Input/Hid/HidGenericDesktopUsage.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SystemAppMenu - path: opentk/src/OpenTK.Input/Hid/HidGenericDesktopUsage.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Input\Hid\HidGenericDesktopUsage.cs startLine: 199 assemblies: - OpenTK.Input @@ -1112,12 +964,8 @@ items: fullName: OpenTK.Input.Hid.HidGenericDesktopUsage.SystemMenuHelp type: Field source: - remote: - path: src/OpenTK.Input/Hid/HidGenericDesktopUsage.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SystemMenuHelp - path: opentk/src/OpenTK.Input/Hid/HidGenericDesktopUsage.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Input\Hid\HidGenericDesktopUsage.cs startLine: 204 assemblies: - OpenTK.Input @@ -1140,12 +988,8 @@ items: fullName: OpenTK.Input.Hid.HidGenericDesktopUsage.SystemMenuExit type: Field source: - remote: - path: src/OpenTK.Input/Hid/HidGenericDesktopUsage.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SystemMenuExit - path: opentk/src/OpenTK.Input/Hid/HidGenericDesktopUsage.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Input\Hid\HidGenericDesktopUsage.cs startLine: 209 assemblies: - OpenTK.Input @@ -1168,12 +1012,8 @@ items: fullName: OpenTK.Input.Hid.HidGenericDesktopUsage.SystemMenuSelect type: Field source: - remote: - path: src/OpenTK.Input/Hid/HidGenericDesktopUsage.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SystemMenuSelect - path: opentk/src/OpenTK.Input/Hid/HidGenericDesktopUsage.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Input\Hid\HidGenericDesktopUsage.cs startLine: 214 assemblies: - OpenTK.Input @@ -1196,12 +1036,8 @@ items: fullName: OpenTK.Input.Hid.HidGenericDesktopUsage.SystemMenuRight type: Field source: - remote: - path: src/OpenTK.Input/Hid/HidGenericDesktopUsage.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SystemMenuRight - path: opentk/src/OpenTK.Input/Hid/HidGenericDesktopUsage.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Input\Hid\HidGenericDesktopUsage.cs startLine: 219 assemblies: - OpenTK.Input @@ -1224,12 +1060,8 @@ items: fullName: OpenTK.Input.Hid.HidGenericDesktopUsage.SystemMenuLeft type: Field source: - remote: - path: src/OpenTK.Input/Hid/HidGenericDesktopUsage.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SystemMenuLeft - path: opentk/src/OpenTK.Input/Hid/HidGenericDesktopUsage.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Input\Hid\HidGenericDesktopUsage.cs startLine: 224 assemblies: - OpenTK.Input @@ -1252,12 +1084,8 @@ items: fullName: OpenTK.Input.Hid.HidGenericDesktopUsage.SystemMenuUp type: Field source: - remote: - path: src/OpenTK.Input/Hid/HidGenericDesktopUsage.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SystemMenuUp - path: opentk/src/OpenTK.Input/Hid/HidGenericDesktopUsage.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Input\Hid\HidGenericDesktopUsage.cs startLine: 229 assemblies: - OpenTK.Input @@ -1280,12 +1108,8 @@ items: fullName: OpenTK.Input.Hid.HidGenericDesktopUsage.SystemMenuDown type: Field source: - remote: - path: src/OpenTK.Input/Hid/HidGenericDesktopUsage.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SystemMenuDown - path: opentk/src/OpenTK.Input/Hid/HidGenericDesktopUsage.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Input\Hid\HidGenericDesktopUsage.cs startLine: 234 assemblies: - OpenTK.Input @@ -1308,12 +1132,8 @@ items: fullName: OpenTK.Input.Hid.HidGenericDesktopUsage.DPadUp type: Field source: - remote: - path: src/OpenTK.Input/Hid/HidGenericDesktopUsage.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DPadUp - path: opentk/src/OpenTK.Input/Hid/HidGenericDesktopUsage.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Input\Hid\HidGenericDesktopUsage.cs startLine: 241 assemblies: - OpenTK.Input @@ -1336,12 +1156,8 @@ items: fullName: OpenTK.Input.Hid.HidGenericDesktopUsage.DPadDown type: Field source: - remote: - path: src/OpenTK.Input/Hid/HidGenericDesktopUsage.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DPadDown - path: opentk/src/OpenTK.Input/Hid/HidGenericDesktopUsage.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Input\Hid\HidGenericDesktopUsage.cs startLine: 246 assemblies: - OpenTK.Input @@ -1364,12 +1180,8 @@ items: fullName: OpenTK.Input.Hid.HidGenericDesktopUsage.DPadRight type: Field source: - remote: - path: src/OpenTK.Input/Hid/HidGenericDesktopUsage.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DPadRight - path: opentk/src/OpenTK.Input/Hid/HidGenericDesktopUsage.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Input\Hid\HidGenericDesktopUsage.cs startLine: 251 assemblies: - OpenTK.Input @@ -1392,12 +1204,8 @@ items: fullName: OpenTK.Input.Hid.HidGenericDesktopUsage.DPadLeft type: Field source: - remote: - path: src/OpenTK.Input/Hid/HidGenericDesktopUsage.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DPadLeft - path: opentk/src/OpenTK.Input/Hid/HidGenericDesktopUsage.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Input\Hid\HidGenericDesktopUsage.cs startLine: 256 assemblies: - OpenTK.Input diff --git a/api/OpenTK.Input.Hid.HidHelper.yml b/api/OpenTK.Input.Hid.HidHelper.yml index 4051d6fe..a02b7061 100644 --- a/api/OpenTK.Input.Hid.HidHelper.yml +++ b/api/OpenTK.Input.Hid.HidHelper.yml @@ -14,12 +14,8 @@ items: fullName: OpenTK.Input.Hid.HidHelper type: Class source: - remote: - path: src/OpenTK.Input/Hid/HidHelper.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: HidHelper - path: opentk/src/OpenTK.Input/Hid/HidHelper.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Input\Hid\HidHelper.cs startLine: 7 assemblies: - OpenTK.Input @@ -51,12 +47,8 @@ items: fullName: OpenTK.Input.Hid.HidHelper.TranslateJoystickAxis(OpenTK.Input.Hid.HidPage, int) type: Method source: - remote: - path: src/OpenTK.Input/Hid/HidHelper.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TranslateJoystickAxis - path: opentk/src/OpenTK.Input/Hid/HidHelper.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Input\Hid\HidHelper.cs startLine: 15 assemblies: - OpenTK.Input diff --git a/api/OpenTK.Input.Hid.HidPage.yml b/api/OpenTK.Input.Hid.HidPage.yml index 92348b17..b1200f2f 100644 --- a/api/OpenTK.Input.Hid.HidPage.yml +++ b/api/OpenTK.Input.Hid.HidPage.yml @@ -39,12 +39,8 @@ items: fullName: OpenTK.Input.Hid.HidPage type: Enum source: - remote: - path: src/OpenTK.Input/Hid/HidPage.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: HidPage - path: opentk/src/OpenTK.Input/Hid/HidPage.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Input\Hid\HidPage.cs startLine: 5 assemblies: - OpenTK.Input @@ -66,12 +62,8 @@ items: fullName: OpenTK.Input.Hid.HidPage.Undefined type: Field source: - remote: - path: src/OpenTK.Input/Hid/HidPage.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Undefined - path: opentk/src/OpenTK.Input/Hid/HidPage.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Input\Hid\HidPage.cs startLine: 10 assemblies: - OpenTK.Input @@ -94,12 +86,8 @@ items: fullName: OpenTK.Input.Hid.HidPage.GenericDesktop type: Field source: - remote: - path: src/OpenTK.Input/Hid/HidPage.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GenericDesktop - path: opentk/src/OpenTK.Input/Hid/HidPage.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Input\Hid\HidPage.cs startLine: 15 assemblies: - OpenTK.Input @@ -122,12 +110,8 @@ items: fullName: OpenTK.Input.Hid.HidPage.Simulation type: Field source: - remote: - path: src/OpenTK.Input/Hid/HidPage.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Simulation - path: opentk/src/OpenTK.Input/Hid/HidPage.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Input\Hid\HidPage.cs startLine: 20 assemblies: - OpenTK.Input @@ -150,12 +134,8 @@ items: fullName: OpenTK.Input.Hid.HidPage.VR type: Field source: - remote: - path: src/OpenTK.Input/Hid/HidPage.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: VR - path: opentk/src/OpenTK.Input/Hid/HidPage.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Input\Hid\HidPage.cs startLine: 25 assemblies: - OpenTK.Input @@ -178,12 +158,8 @@ items: fullName: OpenTK.Input.Hid.HidPage.Sport type: Field source: - remote: - path: src/OpenTK.Input/Hid/HidPage.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Sport - path: opentk/src/OpenTK.Input/Hid/HidPage.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Input\Hid\HidPage.cs startLine: 30 assemblies: - OpenTK.Input @@ -206,12 +182,8 @@ items: fullName: OpenTK.Input.Hid.HidPage.Game type: Field source: - remote: - path: src/OpenTK.Input/Hid/HidPage.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Game - path: opentk/src/OpenTK.Input/Hid/HidPage.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Input\Hid\HidPage.cs startLine: 35 assemblies: - OpenTK.Input @@ -234,12 +206,8 @@ items: fullName: OpenTK.Input.Hid.HidPage.GenericDevice type: Field source: - remote: - path: src/OpenTK.Input/Hid/HidPage.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GenericDevice - path: opentk/src/OpenTK.Input/Hid/HidPage.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Input\Hid\HidPage.cs startLine: 40 assemblies: - OpenTK.Input @@ -262,12 +230,8 @@ items: fullName: OpenTK.Input.Hid.HidPage.KeyboardOrKeypad type: Field source: - remote: - path: src/OpenTK.Input/Hid/HidPage.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: KeyboardOrKeypad - path: opentk/src/OpenTK.Input/Hid/HidPage.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Input\Hid\HidPage.cs startLine: 49 assemblies: - OpenTK.Input @@ -294,12 +258,8 @@ items: fullName: OpenTK.Input.Hid.HidPage.LEDs type: Field source: - remote: - path: src/OpenTK.Input/Hid/HidPage.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: LEDs - path: opentk/src/OpenTK.Input/Hid/HidPage.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Input\Hid\HidPage.cs startLine: 56 assemblies: - OpenTK.Input @@ -327,12 +287,8 @@ items: fullName: OpenTK.Input.Hid.HidPage.Button type: Field source: - remote: - path: src/OpenTK.Input/Hid/HidPage.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Button - path: opentk/src/OpenTK.Input/Hid/HidPage.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Input\Hid\HidPage.cs startLine: 62 assemblies: - OpenTK.Input @@ -358,12 +314,8 @@ items: fullName: OpenTK.Input.Hid.HidPage.Ordinal type: Field source: - remote: - path: src/OpenTK.Input/Hid/HidPage.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Ordinal - path: opentk/src/OpenTK.Input/Hid/HidPage.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Input\Hid\HidPage.cs startLine: 68 assemblies: - OpenTK.Input @@ -389,12 +341,8 @@ items: fullName: OpenTK.Input.Hid.HidPage.Telephony type: Field source: - remote: - path: src/OpenTK.Input/Hid/HidPage.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Telephony - path: opentk/src/OpenTK.Input/Hid/HidPage.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Input\Hid\HidPage.cs startLine: 77 assemblies: - OpenTK.Input @@ -421,12 +369,8 @@ items: fullName: OpenTK.Input.Hid.HidPage.Consumer type: Field source: - remote: - path: src/OpenTK.Input/Hid/HidPage.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Consumer - path: opentk/src/OpenTK.Input/Hid/HidPage.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Input\Hid\HidPage.cs startLine: 83 assemblies: - OpenTK.Input @@ -452,12 +396,8 @@ items: fullName: OpenTK.Input.Hid.HidPage.Digitizer type: Field source: - remote: - path: src/OpenTK.Input/Hid/HidPage.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Digitizer - path: opentk/src/OpenTK.Input/Hid/HidPage.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Input\Hid\HidPage.cs startLine: 88 assemblies: - OpenTK.Input @@ -480,12 +420,8 @@ items: fullName: OpenTK.Input.Hid.HidPage.PID type: Field source: - remote: - path: src/OpenTK.Input/Hid/HidPage.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: PID - path: opentk/src/OpenTK.Input/Hid/HidPage.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Input\Hid\HidPage.cs startLine: 95 assemblies: - OpenTK.Input @@ -508,12 +444,8 @@ items: fullName: OpenTK.Input.Hid.HidPage.Unicode type: Field source: - remote: - path: src/OpenTK.Input/Hid/HidPage.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Unicode - path: opentk/src/OpenTK.Input/Hid/HidPage.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Input\Hid\HidPage.cs startLine: 100 assemblies: - OpenTK.Input @@ -536,12 +468,8 @@ items: fullName: OpenTK.Input.Hid.HidPage.AlphanumericDisplay type: Field source: - remote: - path: src/OpenTK.Input/Hid/HidPage.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: AlphanumericDisplay - path: opentk/src/OpenTK.Input/Hid/HidPage.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Input\Hid\HidPage.cs startLine: 108 assemblies: - OpenTK.Input @@ -567,12 +495,8 @@ items: fullName: OpenTK.Input.Hid.HidPage.MedicalInstruments type: Field source: - remote: - path: src/OpenTK.Input/Hid/HidPage.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MedicalInstruments - path: opentk/src/OpenTK.Input/Hid/HidPage.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Input\Hid\HidPage.cs startLine: 115 assemblies: - OpenTK.Input @@ -595,12 +519,8 @@ items: fullName: OpenTK.Input.Hid.HidPage.PowerDevice type: Field source: - remote: - path: src/OpenTK.Input/Hid/HidPage.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: PowerDevice - path: opentk/src/OpenTK.Input/Hid/HidPage.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Input\Hid\HidPage.cs startLine: 124 assemblies: - OpenTK.Input @@ -623,12 +543,8 @@ items: fullName: OpenTK.Input.Hid.HidPage.BatterySystem type: Field source: - remote: - path: src/OpenTK.Input/Hid/HidPage.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: BatterySystem - path: opentk/src/OpenTK.Input/Hid/HidPage.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Input\Hid\HidPage.cs startLine: 129 assemblies: - OpenTK.Input @@ -651,12 +567,8 @@ items: fullName: OpenTK.Input.Hid.HidPage.BarCodeScanner type: Field source: - remote: - path: src/OpenTK.Input/Hid/HidPage.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: BarCodeScanner - path: opentk/src/OpenTK.Input/Hid/HidPage.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Input\Hid\HidPage.cs startLine: 138 assemblies: - OpenTK.Input @@ -679,12 +591,8 @@ items: fullName: OpenTK.Input.Hid.HidPage.Scale type: Field source: - remote: - path: src/OpenTK.Input/Hid/HidPage.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Scale - path: opentk/src/OpenTK.Input/Hid/HidPage.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Input\Hid\HidPage.cs startLine: 143 assemblies: - OpenTK.Input @@ -707,12 +615,8 @@ items: fullName: OpenTK.Input.Hid.HidPage.MagneticStripeReader type: Field source: - remote: - path: src/OpenTK.Input/Hid/HidPage.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MagneticStripeReader - path: opentk/src/OpenTK.Input/Hid/HidPage.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Input\Hid\HidPage.cs startLine: 149 assemblies: - OpenTK.Input @@ -738,12 +642,8 @@ items: fullName: OpenTK.Input.Hid.HidPage.CameraControl type: Field source: - remote: - path: src/OpenTK.Input/Hid/HidPage.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CameraControl - path: opentk/src/OpenTK.Input/Hid/HidPage.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Input\Hid\HidPage.cs startLine: 156 assemblies: - OpenTK.Input @@ -766,12 +666,8 @@ items: fullName: OpenTK.Input.Hid.HidPage.Arcade type: Field source: - remote: - path: src/OpenTK.Input/Hid/HidPage.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Arcade - path: opentk/src/OpenTK.Input/Hid/HidPage.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Input\Hid\HidPage.cs startLine: 161 assemblies: - OpenTK.Input @@ -794,12 +690,8 @@ items: fullName: OpenTK.Input.Hid.HidPage.VendorDefinedStart type: Field source: - remote: - path: src/OpenTK.Input/Hid/HidPage.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: VendorDefinedStart - path: opentk/src/OpenTK.Input/Hid/HidPage.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Input\Hid\HidPage.cs startLine: 168 assemblies: - OpenTK.Input diff --git a/api/OpenTK.Input.Hid.HidSimulationUsage.yml b/api/OpenTK.Input.Hid.HidSimulationUsage.yml index e394fc4b..7dfd1387 100644 --- a/api/OpenTK.Input.Hid.HidSimulationUsage.yml +++ b/api/OpenTK.Input.Hid.HidSimulationUsage.yml @@ -64,12 +64,8 @@ items: fullName: OpenTK.Input.Hid.HidSimulationUsage type: Enum source: - remote: - path: src/OpenTK.Input/Hid/HidSimulationUsage.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: HidSimulationUsage - path: opentk/src/OpenTK.Input/Hid/HidSimulationUsage.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Input\Hid\HidSimulationUsage.cs startLine: 5 assemblies: - OpenTK.Input @@ -91,12 +87,8 @@ items: fullName: OpenTK.Input.Hid.HidSimulationUsage.FlightSimulationDevice type: Field source: - remote: - path: src/OpenTK.Input/Hid/HidSimulationUsage.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: FlightSimulationDevice - path: opentk/src/OpenTK.Input/Hid/HidSimulationUsage.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Input\Hid\HidSimulationUsage.cs startLine: 11 assemblies: - OpenTK.Input @@ -122,12 +114,8 @@ items: fullName: OpenTK.Input.Hid.HidSimulationUsage.AutomobileSimulationDevice type: Field source: - remote: - path: src/OpenTK.Input/Hid/HidSimulationUsage.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: AutomobileSimulationDevice - path: opentk/src/OpenTK.Input/Hid/HidSimulationUsage.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Input\Hid\HidSimulationUsage.cs startLine: 17 assemblies: - OpenTK.Input @@ -153,12 +141,8 @@ items: fullName: OpenTK.Input.Hid.HidSimulationUsage.TankSimulationDevice type: Field source: - remote: - path: src/OpenTK.Input/Hid/HidSimulationUsage.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TankSimulationDevice - path: opentk/src/OpenTK.Input/Hid/HidSimulationUsage.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Input\Hid\HidSimulationUsage.cs startLine: 23 assemblies: - OpenTK.Input @@ -184,12 +168,8 @@ items: fullName: OpenTK.Input.Hid.HidSimulationUsage.SpaceshipSimulationDevice type: Field source: - remote: - path: src/OpenTK.Input/Hid/HidSimulationUsage.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SpaceshipSimulationDevice - path: opentk/src/OpenTK.Input/Hid/HidSimulationUsage.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Input\Hid\HidSimulationUsage.cs startLine: 29 assemblies: - OpenTK.Input @@ -215,12 +195,8 @@ items: fullName: OpenTK.Input.Hid.HidSimulationUsage.SubmarineSimulationDevice type: Field source: - remote: - path: src/OpenTK.Input/Hid/HidSimulationUsage.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SubmarineSimulationDevice - path: opentk/src/OpenTK.Input/Hid/HidSimulationUsage.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Input\Hid\HidSimulationUsage.cs startLine: 34 assemblies: - OpenTK.Input @@ -243,12 +219,8 @@ items: fullName: OpenTK.Input.Hid.HidSimulationUsage.SailingSimulationDevice type: Field source: - remote: - path: src/OpenTK.Input/Hid/HidSimulationUsage.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SailingSimulationDevice - path: opentk/src/OpenTK.Input/Hid/HidSimulationUsage.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Input\Hid\HidSimulationUsage.cs startLine: 39 assemblies: - OpenTK.Input @@ -271,12 +243,8 @@ items: fullName: OpenTK.Input.Hid.HidSimulationUsage.MotorcycleSimulationDevice type: Field source: - remote: - path: src/OpenTK.Input/Hid/HidSimulationUsage.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MotorcycleSimulationDevice - path: opentk/src/OpenTK.Input/Hid/HidSimulationUsage.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Input\Hid\HidSimulationUsage.cs startLine: 44 assemblies: - OpenTK.Input @@ -299,12 +267,8 @@ items: fullName: OpenTK.Input.Hid.HidSimulationUsage.SportsSimulationDevice type: Field source: - remote: - path: src/OpenTK.Input/Hid/HidSimulationUsage.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SportsSimulationDevice - path: opentk/src/OpenTK.Input/Hid/HidSimulationUsage.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Input\Hid\HidSimulationUsage.cs startLine: 50 assemblies: - OpenTK.Input @@ -330,12 +294,8 @@ items: fullName: OpenTK.Input.Hid.HidSimulationUsage.AirplaneSimulationDevice type: Field source: - remote: - path: src/OpenTK.Input/Hid/HidSimulationUsage.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: AirplaneSimulationDevice - path: opentk/src/OpenTK.Input/Hid/HidSimulationUsage.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Input\Hid\HidSimulationUsage.cs startLine: 56 assemblies: - OpenTK.Input @@ -361,12 +321,8 @@ items: fullName: OpenTK.Input.Hid.HidSimulationUsage.HelicopterSimulationDevice type: Field source: - remote: - path: src/OpenTK.Input/Hid/HidSimulationUsage.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: HelicopterSimulationDevice - path: opentk/src/OpenTK.Input/Hid/HidSimulationUsage.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Input\Hid\HidSimulationUsage.cs startLine: 62 assemblies: - OpenTK.Input @@ -392,12 +348,8 @@ items: fullName: OpenTK.Input.Hid.HidSimulationUsage.MagicCarpetSimulationDevice type: Field source: - remote: - path: src/OpenTK.Input/Hid/HidSimulationUsage.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MagicCarpetSimulationDevice - path: opentk/src/OpenTK.Input/Hid/HidSimulationUsage.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Input\Hid\HidSimulationUsage.cs startLine: 67 assemblies: - OpenTK.Input @@ -420,12 +372,8 @@ items: fullName: OpenTK.Input.Hid.HidSimulationUsage.BicycleSimulationDevice type: Field source: - remote: - path: src/OpenTK.Input/Hid/HidSimulationUsage.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: BicycleSimulationDevice - path: opentk/src/OpenTK.Input/Hid/HidSimulationUsage.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Input\Hid\HidSimulationUsage.cs startLine: 72 assemblies: - OpenTK.Input @@ -448,12 +396,8 @@ items: fullName: OpenTK.Input.Hid.HidSimulationUsage.FlightControlStick type: Field source: - remote: - path: src/OpenTK.Input/Hid/HidSimulationUsage.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: FlightControlStick - path: opentk/src/OpenTK.Input/Hid/HidSimulationUsage.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Input\Hid\HidSimulationUsage.cs startLine: 79 assemblies: - OpenTK.Input @@ -476,12 +420,8 @@ items: fullName: OpenTK.Input.Hid.HidSimulationUsage.FlightStick type: Field source: - remote: - path: src/OpenTK.Input/Hid/HidSimulationUsage.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: FlightStick - path: opentk/src/OpenTK.Input/Hid/HidSimulationUsage.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Input\Hid\HidSimulationUsage.cs startLine: 84 assemblies: - OpenTK.Input @@ -504,12 +444,8 @@ items: fullName: OpenTK.Input.Hid.HidSimulationUsage.CyclicControl type: Field source: - remote: - path: src/OpenTK.Input/Hid/HidSimulationUsage.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CyclicControl - path: opentk/src/OpenTK.Input/Hid/HidSimulationUsage.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Input\Hid\HidSimulationUsage.cs startLine: 90 assemblies: - OpenTK.Input @@ -535,12 +471,8 @@ items: fullName: OpenTK.Input.Hid.HidSimulationUsage.CyclicTrim type: Field source: - remote: - path: src/OpenTK.Input/Hid/HidSimulationUsage.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CyclicTrim - path: opentk/src/OpenTK.Input/Hid/HidSimulationUsage.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Input\Hid\HidSimulationUsage.cs startLine: 96 assemblies: - OpenTK.Input @@ -566,12 +498,8 @@ items: fullName: OpenTK.Input.Hid.HidSimulationUsage.FlightYoke type: Field source: - remote: - path: src/OpenTK.Input/Hid/HidSimulationUsage.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: FlightYoke - path: opentk/src/OpenTK.Input/Hid/HidSimulationUsage.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Input\Hid\HidSimulationUsage.cs startLine: 101 assemblies: - OpenTK.Input @@ -594,12 +522,8 @@ items: fullName: OpenTK.Input.Hid.HidSimulationUsage.TrackControl type: Field source: - remote: - path: src/OpenTK.Input/Hid/HidSimulationUsage.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TrackControl - path: opentk/src/OpenTK.Input/Hid/HidSimulationUsage.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Input\Hid\HidSimulationUsage.cs startLine: 106 assemblies: - OpenTK.Input @@ -622,12 +546,8 @@ items: fullName: OpenTK.Input.Hid.HidSimulationUsage.Aileron type: Field source: - remote: - path: src/OpenTK.Input/Hid/HidSimulationUsage.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Aileron - path: opentk/src/OpenTK.Input/Hid/HidSimulationUsage.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Input\Hid\HidSimulationUsage.cs startLine: 114 assemblies: - OpenTK.Input @@ -653,12 +573,8 @@ items: fullName: OpenTK.Input.Hid.HidSimulationUsage.AileronTrim type: Field source: - remote: - path: src/OpenTK.Input/Hid/HidSimulationUsage.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: AileronTrim - path: opentk/src/OpenTK.Input/Hid/HidSimulationUsage.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Input\Hid\HidSimulationUsage.cs startLine: 119 assemblies: - OpenTK.Input @@ -681,12 +597,8 @@ items: fullName: OpenTK.Input.Hid.HidSimulationUsage.AntiTorqueControl type: Field source: - remote: - path: src/OpenTK.Input/Hid/HidSimulationUsage.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: AntiTorqueControl - path: opentk/src/OpenTK.Input/Hid/HidSimulationUsage.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Input\Hid\HidSimulationUsage.cs startLine: 124 assemblies: - OpenTK.Input @@ -709,12 +621,8 @@ items: fullName: OpenTK.Input.Hid.HidSimulationUsage.AutopilotEnable type: Field source: - remote: - path: src/OpenTK.Input/Hid/HidSimulationUsage.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: AutopilotEnable - path: opentk/src/OpenTK.Input/Hid/HidSimulationUsage.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Input\Hid\HidSimulationUsage.cs startLine: 129 assemblies: - OpenTK.Input @@ -737,12 +645,8 @@ items: fullName: OpenTK.Input.Hid.HidSimulationUsage.ChaffRelease type: Field source: - remote: - path: src/OpenTK.Input/Hid/HidSimulationUsage.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ChaffRelease - path: opentk/src/OpenTK.Input/Hid/HidSimulationUsage.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Input\Hid\HidSimulationUsage.cs startLine: 134 assemblies: - OpenTK.Input @@ -765,12 +669,8 @@ items: fullName: OpenTK.Input.Hid.HidSimulationUsage.CollectiveControl type: Field source: - remote: - path: src/OpenTK.Input/Hid/HidSimulationUsage.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CollectiveControl - path: opentk/src/OpenTK.Input/Hid/HidSimulationUsage.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Input\Hid\HidSimulationUsage.cs startLine: 140 assemblies: - OpenTK.Input @@ -796,12 +696,8 @@ items: fullName: OpenTK.Input.Hid.HidSimulationUsage.DiveBrake type: Field source: - remote: - path: src/OpenTK.Input/Hid/HidSimulationUsage.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DiveBrake - path: opentk/src/OpenTK.Input/Hid/HidSimulationUsage.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Input\Hid\HidSimulationUsage.cs startLine: 145 assemblies: - OpenTK.Input @@ -824,12 +720,8 @@ items: fullName: OpenTK.Input.Hid.HidSimulationUsage.ElectronicCountermeasures type: Field source: - remote: - path: src/OpenTK.Input/Hid/HidSimulationUsage.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ElectronicCountermeasures - path: opentk/src/OpenTK.Input/Hid/HidSimulationUsage.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Input\Hid\HidSimulationUsage.cs startLine: 150 assemblies: - OpenTK.Input @@ -852,12 +744,8 @@ items: fullName: OpenTK.Input.Hid.HidSimulationUsage.Elevator type: Field source: - remote: - path: src/OpenTK.Input/Hid/HidSimulationUsage.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Elevator - path: opentk/src/OpenTK.Input/Hid/HidSimulationUsage.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Input\Hid\HidSimulationUsage.cs startLine: 156 assemblies: - OpenTK.Input @@ -883,12 +771,8 @@ items: fullName: OpenTK.Input.Hid.HidSimulationUsage.ElevatorTrim type: Field source: - remote: - path: src/OpenTK.Input/Hid/HidSimulationUsage.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ElevatorTrim - path: opentk/src/OpenTK.Input/Hid/HidSimulationUsage.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Input\Hid\HidSimulationUsage.cs startLine: 161 assemblies: - OpenTK.Input @@ -911,12 +795,8 @@ items: fullName: OpenTK.Input.Hid.HidSimulationUsage.Rudder type: Field source: - remote: - path: src/OpenTK.Input/Hid/HidSimulationUsage.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Rudder - path: opentk/src/OpenTK.Input/Hid/HidSimulationUsage.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Input\Hid\HidSimulationUsage.cs startLine: 166 assemblies: - OpenTK.Input @@ -939,12 +819,8 @@ items: fullName: OpenTK.Input.Hid.HidSimulationUsage.Throttle type: Field source: - remote: - path: src/OpenTK.Input/Hid/HidSimulationUsage.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Throttle - path: opentk/src/OpenTK.Input/Hid/HidSimulationUsage.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Input\Hid\HidSimulationUsage.cs startLine: 172 assemblies: - OpenTK.Input @@ -970,12 +846,8 @@ items: fullName: OpenTK.Input.Hid.HidSimulationUsage.FlightCommunications type: Field source: - remote: - path: src/OpenTK.Input/Hid/HidSimulationUsage.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: FlightCommunications - path: opentk/src/OpenTK.Input/Hid/HidSimulationUsage.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Input\Hid\HidSimulationUsage.cs startLine: 178 assemblies: - OpenTK.Input @@ -1001,12 +873,8 @@ items: fullName: OpenTK.Input.Hid.HidSimulationUsage.FlareRelease type: Field source: - remote: - path: src/OpenTK.Input/Hid/HidSimulationUsage.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: FlareRelease - path: opentk/src/OpenTK.Input/Hid/HidSimulationUsage.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Input\Hid\HidSimulationUsage.cs startLine: 184 assemblies: - OpenTK.Input @@ -1032,12 +900,8 @@ items: fullName: OpenTK.Input.Hid.HidSimulationUsage.LandingGear type: Field source: - remote: - path: src/OpenTK.Input/Hid/HidSimulationUsage.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: LandingGear - path: opentk/src/OpenTK.Input/Hid/HidSimulationUsage.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Input\Hid\HidSimulationUsage.cs startLine: 189 assemblies: - OpenTK.Input @@ -1060,12 +924,8 @@ items: fullName: OpenTK.Input.Hid.HidSimulationUsage.ToeBrake type: Field source: - remote: - path: src/OpenTK.Input/Hid/HidSimulationUsage.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToeBrake - path: opentk/src/OpenTK.Input/Hid/HidSimulationUsage.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Input\Hid\HidSimulationUsage.cs startLine: 194 assemblies: - OpenTK.Input @@ -1088,12 +948,8 @@ items: fullName: OpenTK.Input.Hid.HidSimulationUsage.Trigger type: Field source: - remote: - path: src/OpenTK.Input/Hid/HidSimulationUsage.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Trigger - path: opentk/src/OpenTK.Input/Hid/HidSimulationUsage.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Input\Hid\HidSimulationUsage.cs startLine: 199 assemblies: - OpenTK.Input @@ -1116,12 +972,8 @@ items: fullName: OpenTK.Input.Hid.HidSimulationUsage.WeaponsArm type: Field source: - remote: - path: src/OpenTK.Input/Hid/HidSimulationUsage.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: WeaponsArm - path: opentk/src/OpenTK.Input/Hid/HidSimulationUsage.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Input\Hid\HidSimulationUsage.cs startLine: 204 assemblies: - OpenTK.Input @@ -1144,12 +996,8 @@ items: fullName: OpenTK.Input.Hid.HidSimulationUsage.WeaponsSelect type: Field source: - remote: - path: src/OpenTK.Input/Hid/HidSimulationUsage.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: WeaponsSelect - path: opentk/src/OpenTK.Input/Hid/HidSimulationUsage.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Input\Hid\HidSimulationUsage.cs startLine: 210 assemblies: - OpenTK.Input @@ -1175,12 +1023,8 @@ items: fullName: OpenTK.Input.Hid.HidSimulationUsage.WingFlaps type: Field source: - remote: - path: src/OpenTK.Input/Hid/HidSimulationUsage.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: WingFlaps - path: opentk/src/OpenTK.Input/Hid/HidSimulationUsage.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Input\Hid\HidSimulationUsage.cs startLine: 216 assemblies: - OpenTK.Input @@ -1206,12 +1050,8 @@ items: fullName: OpenTK.Input.Hid.HidSimulationUsage.Accelerator type: Field source: - remote: - path: src/OpenTK.Input/Hid/HidSimulationUsage.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Accelerator - path: opentk/src/OpenTK.Input/Hid/HidSimulationUsage.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Input\Hid\HidSimulationUsage.cs startLine: 221 assemblies: - OpenTK.Input @@ -1234,12 +1074,8 @@ items: fullName: OpenTK.Input.Hid.HidSimulationUsage.Brake type: Field source: - remote: - path: src/OpenTK.Input/Hid/HidSimulationUsage.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Brake - path: opentk/src/OpenTK.Input/Hid/HidSimulationUsage.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Input\Hid\HidSimulationUsage.cs startLine: 226 assemblies: - OpenTK.Input @@ -1262,12 +1098,8 @@ items: fullName: OpenTK.Input.Hid.HidSimulationUsage.Clutch type: Field source: - remote: - path: src/OpenTK.Input/Hid/HidSimulationUsage.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Clutch - path: opentk/src/OpenTK.Input/Hid/HidSimulationUsage.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Input\Hid\HidSimulationUsage.cs startLine: 231 assemblies: - OpenTK.Input @@ -1290,12 +1122,8 @@ items: fullName: OpenTK.Input.Hid.HidSimulationUsage.Shifter type: Field source: - remote: - path: src/OpenTK.Input/Hid/HidSimulationUsage.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Shifter - path: opentk/src/OpenTK.Input/Hid/HidSimulationUsage.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Input\Hid\HidSimulationUsage.cs startLine: 236 assemblies: - OpenTK.Input @@ -1318,12 +1146,8 @@ items: fullName: OpenTK.Input.Hid.HidSimulationUsage.Steering type: Field source: - remote: - path: src/OpenTK.Input/Hid/HidSimulationUsage.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Steering - path: opentk/src/OpenTK.Input/Hid/HidSimulationUsage.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Input\Hid\HidSimulationUsage.cs startLine: 241 assemblies: - OpenTK.Input @@ -1346,12 +1170,8 @@ items: fullName: OpenTK.Input.Hid.HidSimulationUsage.TurretDirection type: Field source: - remote: - path: src/OpenTK.Input/Hid/HidSimulationUsage.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TurretDirection - path: opentk/src/OpenTK.Input/Hid/HidSimulationUsage.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Input\Hid\HidSimulationUsage.cs startLine: 246 assemblies: - OpenTK.Input @@ -1374,12 +1194,8 @@ items: fullName: OpenTK.Input.Hid.HidSimulationUsage.BarrelElevation type: Field source: - remote: - path: src/OpenTK.Input/Hid/HidSimulationUsage.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: BarrelElevation - path: opentk/src/OpenTK.Input/Hid/HidSimulationUsage.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Input\Hid\HidSimulationUsage.cs startLine: 251 assemblies: - OpenTK.Input @@ -1402,12 +1218,8 @@ items: fullName: OpenTK.Input.Hid.HidSimulationUsage.DivePlane type: Field source: - remote: - path: src/OpenTK.Input/Hid/HidSimulationUsage.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DivePlane - path: opentk/src/OpenTK.Input/Hid/HidSimulationUsage.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Input\Hid\HidSimulationUsage.cs startLine: 256 assemblies: - OpenTK.Input @@ -1430,12 +1242,8 @@ items: fullName: OpenTK.Input.Hid.HidSimulationUsage.Ballast type: Field source: - remote: - path: src/OpenTK.Input/Hid/HidSimulationUsage.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Ballast - path: opentk/src/OpenTK.Input/Hid/HidSimulationUsage.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Input\Hid\HidSimulationUsage.cs startLine: 261 assemblies: - OpenTK.Input @@ -1458,12 +1266,8 @@ items: fullName: OpenTK.Input.Hid.HidSimulationUsage.BicycleCrank type: Field source: - remote: - path: src/OpenTK.Input/Hid/HidSimulationUsage.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: BicycleCrank - path: opentk/src/OpenTK.Input/Hid/HidSimulationUsage.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Input\Hid\HidSimulationUsage.cs startLine: 266 assemblies: - OpenTK.Input @@ -1486,12 +1290,8 @@ items: fullName: OpenTK.Input.Hid.HidSimulationUsage.HandleBars type: Field source: - remote: - path: src/OpenTK.Input/Hid/HidSimulationUsage.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: HandleBars - path: opentk/src/OpenTK.Input/Hid/HidSimulationUsage.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Input\Hid\HidSimulationUsage.cs startLine: 271 assemblies: - OpenTK.Input @@ -1514,12 +1314,8 @@ items: fullName: OpenTK.Input.Hid.HidSimulationUsage.FrontBrake type: Field source: - remote: - path: src/OpenTK.Input/Hid/HidSimulationUsage.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: FrontBrake - path: opentk/src/OpenTK.Input/Hid/HidSimulationUsage.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Input\Hid\HidSimulationUsage.cs startLine: 276 assemblies: - OpenTK.Input @@ -1542,12 +1338,8 @@ items: fullName: OpenTK.Input.Hid.HidSimulationUsage.RearBrake type: Field source: - remote: - path: src/OpenTK.Input/Hid/HidSimulationUsage.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: RearBrake - path: opentk/src/OpenTK.Input/Hid/HidSimulationUsage.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Input\Hid\HidSimulationUsage.cs startLine: 281 assemblies: - OpenTK.Input diff --git a/api/OpenTK.Mathematics.Argb.yml b/api/OpenTK.Mathematics.Argb.yml index 65b991ad..0d730520 100644 --- a/api/OpenTK.Mathematics.Argb.yml +++ b/api/OpenTK.Mathematics.Argb.yml @@ -13,12 +13,8 @@ items: fullName: OpenTK.Mathematics.Argb type: Class source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Argb - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 24 assemblies: - OpenTK.Mathematics diff --git a/api/OpenTK.Mathematics.BezierCurve.yml b/api/OpenTK.Mathematics.BezierCurve.yml index 3b2ad923..9b385cc4 100644 --- a/api/OpenTK.Mathematics.BezierCurve.yml +++ b/api/OpenTK.Mathematics.BezierCurve.yml @@ -25,12 +25,8 @@ items: fullName: OpenTK.Mathematics.BezierCurve type: Struct source: - remote: - path: src/OpenTK.Mathematics/Geometry/BezierCurve.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: BezierCurve - path: opentk/src/OpenTK.Mathematics/Geometry/BezierCurve.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\BezierCurve.cs startLine: 17 assemblies: - OpenTK.Mathematics @@ -69,12 +65,8 @@ items: fullName: OpenTK.Mathematics.BezierCurve.Parallel type: Field source: - remote: - path: src/OpenTK.Mathematics/Geometry/BezierCurve.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Parallel - path: opentk/src/OpenTK.Mathematics/Geometry/BezierCurve.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\BezierCurve.cs startLine: 31 assemblies: - OpenTK.Mathematics @@ -106,12 +98,8 @@ items: fullName: OpenTK.Mathematics.BezierCurve.Points type: Property source: - remote: - path: src/OpenTK.Mathematics/Geometry/BezierCurve.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Points - path: opentk/src/OpenTK.Mathematics/Geometry/BezierCurve.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\BezierCurve.cs startLine: 37 assemblies: - OpenTK.Mathematics @@ -120,7 +108,7 @@ items: remarks: The first point and the last points represent the anchor points. example: [] syntax: - content: public IList Points { get; } + content: public readonly IList Points { get; } parameters: [] return: type: System.Collections.Generic.IList{OpenTK.Mathematics.Vector2} @@ -138,12 +126,8 @@ items: fullName: OpenTK.Mathematics.BezierCurve.BezierCurve(System.Collections.Generic.IEnumerable) type: Constructor source: - remote: - path: src/OpenTK.Mathematics/Geometry/BezierCurve.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Mathematics/Geometry/BezierCurve.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\BezierCurve.cs startLine: 43 assemblies: - OpenTK.Mathematics @@ -173,12 +157,8 @@ items: fullName: OpenTK.Mathematics.BezierCurve.BezierCurve(params OpenTK.Mathematics.Vector2[]) type: Constructor source: - remote: - path: src/OpenTK.Mathematics/Geometry/BezierCurve.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Mathematics/Geometry/BezierCurve.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\BezierCurve.cs startLine: 58 assemblies: - OpenTK.Mathematics @@ -208,12 +188,8 @@ items: fullName: OpenTK.Mathematics.BezierCurve.BezierCurve(float, params OpenTK.Mathematics.Vector2[]) type: Constructor source: - remote: - path: src/OpenTK.Mathematics/Geometry/BezierCurve.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Mathematics/Geometry/BezierCurve.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\BezierCurve.cs startLine: 74 assemblies: - OpenTK.Mathematics @@ -246,12 +222,8 @@ items: fullName: OpenTK.Mathematics.BezierCurve.BezierCurve(float, System.Collections.Generic.IEnumerable) type: Constructor source: - remote: - path: src/OpenTK.Mathematics/Geometry/BezierCurve.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Mathematics/Geometry/BezierCurve.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\BezierCurve.cs startLine: 90 assemblies: - OpenTK.Mathematics @@ -284,12 +256,8 @@ items: fullName: OpenTK.Mathematics.BezierCurve.CalculatePoint(float) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/BezierCurve.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CalculatePoint - path: opentk/src/OpenTK.Mathematics/Geometry/BezierCurve.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\BezierCurve.cs startLine: 106 assemblies: - OpenTK.Mathematics @@ -300,7 +268,7 @@ items: content: >- [Pure] - public Vector2 CalculatePoint(float t) + public readonly Vector2 CalculatePoint(float t) parameters: - id: t type: System.Single @@ -332,12 +300,8 @@ items: fullName: OpenTK.Mathematics.BezierCurve.CalculateLength(float) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/BezierCurve.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CalculateLength - path: opentk/src/OpenTK.Mathematics/Geometry/BezierCurve.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\BezierCurve.cs startLine: 121 assemblies: - OpenTK.Mathematics @@ -352,7 +316,7 @@ items: content: >- [Pure] - public float CalculateLength(float precision) + public readonly float CalculateLength(float precision) parameters: - id: precision type: System.Single @@ -384,12 +348,8 @@ items: fullName: OpenTK.Mathematics.BezierCurve.CalculateLength(System.Collections.Generic.IList, float) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/BezierCurve.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CalculateLength - path: opentk/src/OpenTK.Mathematics/Geometry/BezierCurve.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\BezierCurve.cs startLine: 136 assemblies: - OpenTK.Mathematics @@ -438,18 +398,30 @@ items: fullName: OpenTK.Mathematics.BezierCurve.CalculateLength(System.Collections.Generic.IList, float, float) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/BezierCurve.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CalculateLength - path: opentk/src/OpenTK.Mathematics/Geometry/BezierCurve.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\BezierCurve.cs startLine: 161 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Calculates the length of the specified bezier curve. - remarks: "

\r\nThe precision gets better as the precision\r\nvalue gets smaller.\r\n

\r\n

\r\nThe parallel parameter defines whether the curve should be calculated as a\r\nparallel curve to the original bezier curve. A value of 0.0f represents\r\nthe original curve, 5.0f represents a curve that has always a distance\r\nof 5.0f to the orignal curve.\r\n

" + remarks: >- +

+ + The precision gets better as the precision + + value gets smaller. +

+

+ + The parallel parameter defines whether the curve should be calculated as a + + parallel curve to the original bezier curve. A value of 0.0f represents + + the original curve, 5.0f represents a curve that has always a distance + + of 5.0f to the orignal curve. +

example: [] syntax: content: >- @@ -493,12 +465,8 @@ items: fullName: OpenTK.Mathematics.BezierCurve.CalculatePoint(System.Collections.Generic.IList, float) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/BezierCurve.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CalculatePoint - path: opentk/src/OpenTK.Mathematics/Geometry/BezierCurve.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\BezierCurve.cs startLine: 183 assemblies: - OpenTK.Mathematics @@ -544,12 +512,8 @@ items: fullName: OpenTK.Mathematics.BezierCurve.CalculatePoint(System.Collections.Generic.IList, float, float) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/BezierCurve.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CalculatePoint - path: opentk/src/OpenTK.Mathematics/Geometry/BezierCurve.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\BezierCurve.cs startLine: 202 assemblies: - OpenTK.Mathematics diff --git a/api/OpenTK.Mathematics.BezierCurveCubic.yml b/api/OpenTK.Mathematics.BezierCurveCubic.yml index 8cb97d27..440a802d 100644 --- a/api/OpenTK.Mathematics.BezierCurveCubic.yml +++ b/api/OpenTK.Mathematics.BezierCurveCubic.yml @@ -22,12 +22,8 @@ items: fullName: OpenTK.Mathematics.BezierCurveCubic type: Struct source: - remote: - path: src/OpenTK.Mathematics/Geometry/BezierCurveCubic.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: BezierCurveCubic - path: opentk/src/OpenTK.Mathematics/Geometry/BezierCurveCubic.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\BezierCurveCubic.cs startLine: 16 assemblies: - OpenTK.Mathematics @@ -66,12 +62,8 @@ items: fullName: OpenTK.Mathematics.BezierCurveCubic.StartAnchor type: Field source: - remote: - path: src/OpenTK.Mathematics/Geometry/BezierCurveCubic.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: StartAnchor - path: opentk/src/OpenTK.Mathematics/Geometry/BezierCurveCubic.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\BezierCurveCubic.cs startLine: 22 assemblies: - OpenTK.Mathematics @@ -95,12 +87,8 @@ items: fullName: OpenTK.Mathematics.BezierCurveCubic.EndAnchor type: Field source: - remote: - path: src/OpenTK.Mathematics/Geometry/BezierCurveCubic.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: EndAnchor - path: opentk/src/OpenTK.Mathematics/Geometry/BezierCurveCubic.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\BezierCurveCubic.cs startLine: 27 assemblies: - OpenTK.Mathematics @@ -124,12 +112,8 @@ items: fullName: OpenTK.Mathematics.BezierCurveCubic.FirstControlPoint type: Field source: - remote: - path: src/OpenTK.Mathematics/Geometry/BezierCurveCubic.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: FirstControlPoint - path: opentk/src/OpenTK.Mathematics/Geometry/BezierCurveCubic.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\BezierCurveCubic.cs startLine: 32 assemblies: - OpenTK.Mathematics @@ -153,12 +137,8 @@ items: fullName: OpenTK.Mathematics.BezierCurveCubic.SecondControlPoint type: Field source: - remote: - path: src/OpenTK.Mathematics/Geometry/BezierCurveCubic.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SecondControlPoint - path: opentk/src/OpenTK.Mathematics/Geometry/BezierCurveCubic.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\BezierCurveCubic.cs startLine: 37 assemblies: - OpenTK.Mathematics @@ -182,12 +162,8 @@ items: fullName: OpenTK.Mathematics.BezierCurveCubic.Parallel type: Field source: - remote: - path: src/OpenTK.Mathematics/Geometry/BezierCurveCubic.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Parallel - path: opentk/src/OpenTK.Mathematics/Geometry/BezierCurveCubic.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\BezierCurveCubic.cs startLine: 48 assemblies: - OpenTK.Mathematics @@ -219,12 +195,8 @@ items: fullName: OpenTK.Mathematics.BezierCurveCubic.BezierCurveCubic(OpenTK.Mathematics.Vector2, OpenTK.Mathematics.Vector2, OpenTK.Mathematics.Vector2, OpenTK.Mathematics.Vector2) type: Constructor source: - remote: - path: src/OpenTK.Mathematics/Geometry/BezierCurveCubic.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Mathematics/Geometry/BezierCurveCubic.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\BezierCurveCubic.cs startLine: 57 assemblies: - OpenTK.Mathematics @@ -263,12 +235,8 @@ items: fullName: OpenTK.Mathematics.BezierCurveCubic.BezierCurveCubic(float, OpenTK.Mathematics.Vector2, OpenTK.Mathematics.Vector2, OpenTK.Mathematics.Vector2, OpenTK.Mathematics.Vector2) type: Constructor source: - remote: - path: src/OpenTK.Mathematics/Geometry/BezierCurveCubic.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Mathematics/Geometry/BezierCurveCubic.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\BezierCurveCubic.cs startLine: 80 assemblies: - OpenTK.Mathematics @@ -310,12 +278,8 @@ items: fullName: OpenTK.Mathematics.BezierCurveCubic.CalculatePoint(float) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/BezierCurveCubic.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CalculatePoint - path: opentk/src/OpenTK.Mathematics/Geometry/BezierCurveCubic.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\BezierCurveCubic.cs startLine: 101 assemblies: - OpenTK.Mathematics @@ -358,12 +322,8 @@ items: fullName: OpenTK.Mathematics.BezierCurveCubic.CalculateLength(float) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/BezierCurveCubic.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CalculateLength - path: opentk/src/OpenTK.Mathematics/Geometry/BezierCurveCubic.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\BezierCurveCubic.cs startLine: 160 assemblies: - OpenTK.Mathematics diff --git a/api/OpenTK.Mathematics.BezierCurveQuadric.yml b/api/OpenTK.Mathematics.BezierCurveQuadric.yml index b2e184fa..4580b990 100644 --- a/api/OpenTK.Mathematics.BezierCurveQuadric.yml +++ b/api/OpenTK.Mathematics.BezierCurveQuadric.yml @@ -21,12 +21,8 @@ items: fullName: OpenTK.Mathematics.BezierCurveQuadric type: Struct source: - remote: - path: src/OpenTK.Mathematics/Geometry/BezierCurveQuadric.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: BezierCurveQuadric - path: opentk/src/OpenTK.Mathematics/Geometry/BezierCurveQuadric.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\BezierCurveQuadric.cs startLine: 16 assemblies: - OpenTK.Mathematics @@ -65,12 +61,8 @@ items: fullName: OpenTK.Mathematics.BezierCurveQuadric.StartAnchor type: Field source: - remote: - path: src/OpenTK.Mathematics/Geometry/BezierCurveQuadric.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: StartAnchor - path: opentk/src/OpenTK.Mathematics/Geometry/BezierCurveQuadric.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\BezierCurveQuadric.cs startLine: 22 assemblies: - OpenTK.Mathematics @@ -94,12 +86,8 @@ items: fullName: OpenTK.Mathematics.BezierCurveQuadric.EndAnchor type: Field source: - remote: - path: src/OpenTK.Mathematics/Geometry/BezierCurveQuadric.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: EndAnchor - path: opentk/src/OpenTK.Mathematics/Geometry/BezierCurveQuadric.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\BezierCurveQuadric.cs startLine: 27 assemblies: - OpenTK.Mathematics @@ -123,12 +111,8 @@ items: fullName: OpenTK.Mathematics.BezierCurveQuadric.ControlPoint type: Field source: - remote: - path: src/OpenTK.Mathematics/Geometry/BezierCurveQuadric.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ControlPoint - path: opentk/src/OpenTK.Mathematics/Geometry/BezierCurveQuadric.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\BezierCurveQuadric.cs startLine: 32 assemblies: - OpenTK.Mathematics @@ -152,12 +136,8 @@ items: fullName: OpenTK.Mathematics.BezierCurveQuadric.Parallel type: Field source: - remote: - path: src/OpenTK.Mathematics/Geometry/BezierCurveQuadric.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Parallel - path: opentk/src/OpenTK.Mathematics/Geometry/BezierCurveQuadric.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\BezierCurveQuadric.cs startLine: 43 assemblies: - OpenTK.Mathematics @@ -189,12 +169,8 @@ items: fullName: OpenTK.Mathematics.BezierCurveQuadric.BezierCurveQuadric(OpenTK.Mathematics.Vector2, OpenTK.Mathematics.Vector2, OpenTK.Mathematics.Vector2) type: Constructor source: - remote: - path: src/OpenTK.Mathematics/Geometry/BezierCurveQuadric.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Mathematics/Geometry/BezierCurveQuadric.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\BezierCurveQuadric.cs startLine: 51 assemblies: - OpenTK.Mathematics @@ -230,12 +206,8 @@ items: fullName: OpenTK.Mathematics.BezierCurveQuadric.BezierCurveQuadric(float, OpenTK.Mathematics.Vector2, OpenTK.Mathematics.Vector2, OpenTK.Mathematics.Vector2) type: Constructor source: - remote: - path: src/OpenTK.Mathematics/Geometry/BezierCurveQuadric.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Mathematics/Geometry/BezierCurveQuadric.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\BezierCurveQuadric.cs startLine: 66 assemblies: - OpenTK.Mathematics @@ -274,12 +246,8 @@ items: fullName: OpenTK.Mathematics.BezierCurveQuadric.CalculatePoint(float) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/BezierCurveQuadric.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CalculatePoint - path: opentk/src/OpenTK.Mathematics/Geometry/BezierCurveQuadric.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\BezierCurveQuadric.cs startLine: 79 assemblies: - OpenTK.Mathematics @@ -322,12 +290,8 @@ items: fullName: OpenTK.Mathematics.BezierCurveQuadric.CalculateLength(float) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/BezierCurveQuadric.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CalculateLength - path: opentk/src/OpenTK.Mathematics/Geometry/BezierCurveQuadric.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\BezierCurveQuadric.cs startLine: 134 assemblies: - OpenTK.Mathematics diff --git a/api/OpenTK.Mathematics.Box2.yml b/api/OpenTK.Mathematics.Box2.yml index 7a78ddda..97182dc7 100644 --- a/api/OpenTK.Mathematics.Box2.yml +++ b/api/OpenTK.Mathematics.Box2.yml @@ -71,13 +71,9 @@ items: fullName: OpenTK.Mathematics.Box2 type: Struct source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Box2 - path: opentk/src/OpenTK.Mathematics/Geometry/Box2.cs - startLine: 20 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2.cs + startLine: 19 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -115,20 +111,16 @@ items: fullName: OpenTK.Mathematics.Box2.Min type: Property source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Min - path: opentk/src/OpenTK.Mathematics/Geometry/Box2.cs - startLine: 29 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2.cs + startLine: 28 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the minimum boundary of the structure. example: [] syntax: - content: public Vector2 Min { get; set; } + content: public Vector2 Min { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector2 @@ -146,20 +138,16 @@ items: fullName: OpenTK.Mathematics.Box2.Max type: Property source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Max - path: opentk/src/OpenTK.Mathematics/Geometry/Box2.cs - startLine: 52 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2.cs + startLine: 51 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the maximum boundary of the structure. example: [] syntax: - content: public Vector2 Max { get; set; } + content: public Vector2 Max { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector2 @@ -177,13 +165,9 @@ items: fullName: OpenTK.Mathematics.Box2.Box2(OpenTK.Mathematics.Vector2, OpenTK.Mathematics.Vector2) type: Constructor source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Mathematics/Geometry/Box2.cs - startLine: 75 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2.cs + startLine: 74 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -215,13 +199,9 @@ items: fullName: OpenTK.Mathematics.Box2.Box2(float, float, float, float) type: Constructor source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Mathematics/Geometry/Box2.cs - startLine: 88 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2.cs + startLine: 87 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -259,13 +239,9 @@ items: fullName: OpenTK.Mathematics.Box2.CenteredSize type: Property source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CenteredSize - path: opentk/src/OpenTK.Mathematics/Geometry/Box2.cs - startLine: 96 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2.cs + startLine: 95 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -290,13 +266,9 @@ items: fullName: OpenTK.Mathematics.Box2.HalfSize type: Property source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: HalfSize - path: opentk/src/OpenTK.Mathematics/Geometry/Box2.cs - startLine: 110 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2.cs + startLine: 109 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -321,13 +293,9 @@ items: fullName: OpenTK.Mathematics.Box2.Center type: Property source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Center - path: opentk/src/OpenTK.Mathematics/Geometry/Box2.cs - startLine: 120 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2.cs + startLine: 119 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -352,13 +320,9 @@ items: fullName: OpenTK.Mathematics.Box2.Width type: Property source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Width - path: opentk/src/OpenTK.Mathematics/Geometry/Box2.cs - startLine: 132 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2.cs + startLine: 131 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -383,13 +347,9 @@ items: fullName: OpenTK.Mathematics.Box2.Height type: Property source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Height - path: opentk/src/OpenTK.Mathematics/Geometry/Box2.cs - startLine: 141 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2.cs + startLine: 140 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -414,13 +374,9 @@ items: fullName: OpenTK.Mathematics.Box2.Left type: Property source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Left - path: opentk/src/OpenTK.Mathematics/Geometry/Box2.cs - startLine: 150 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2.cs + startLine: 149 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -445,13 +401,9 @@ items: fullName: OpenTK.Mathematics.Box2.Top type: Property source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Top - path: opentk/src/OpenTK.Mathematics/Geometry/Box2.cs - startLine: 159 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2.cs + startLine: 158 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -476,13 +428,9 @@ items: fullName: OpenTK.Mathematics.Box2.Right type: Property source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Right - path: opentk/src/OpenTK.Mathematics/Geometry/Box2.cs - startLine: 168 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2.cs + startLine: 167 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -507,13 +455,9 @@ items: fullName: OpenTK.Mathematics.Box2.Bottom type: Property source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Bottom - path: opentk/src/OpenTK.Mathematics/Geometry/Box2.cs - startLine: 177 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2.cs + startLine: 176 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -538,13 +482,9 @@ items: fullName: OpenTK.Mathematics.Box2.X type: Property source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: X - path: opentk/src/OpenTK.Mathematics/Geometry/Box2.cs - startLine: 186 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2.cs + startLine: 185 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -569,13 +509,9 @@ items: fullName: OpenTK.Mathematics.Box2.Y type: Property source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Y - path: opentk/src/OpenTK.Mathematics/Geometry/Box2.cs - startLine: 195 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2.cs + startLine: 194 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -600,13 +536,9 @@ items: fullName: OpenTK.Mathematics.Box2.SizeX type: Property source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SizeX - path: opentk/src/OpenTK.Mathematics/Geometry/Box2.cs - startLine: 204 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2.cs + startLine: 203 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -631,13 +563,9 @@ items: fullName: OpenTK.Mathematics.Box2.SizeY type: Property source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SizeY - path: opentk/src/OpenTK.Mathematics/Geometry/Box2.cs - startLine: 213 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2.cs + startLine: 212 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -662,13 +590,9 @@ items: fullName: OpenTK.Mathematics.Box2.Size type: Property source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Size - path: opentk/src/OpenTK.Mathematics/Geometry/Box2.cs - startLine: 222 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2.cs + startLine: 221 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -693,13 +617,9 @@ items: fullName: OpenTK.Mathematics.Box2.Location type: Property source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Location - path: opentk/src/OpenTK.Mathematics/Geometry/Box2.cs - startLine: 235 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2.cs + startLine: 234 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -724,13 +644,9 @@ items: fullName: OpenTK.Mathematics.Box2.IsZero type: Property source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: IsZero - path: opentk/src/OpenTK.Mathematics/Geometry/Box2.cs - startLine: 240 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2.cs + startLine: 239 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -755,13 +671,9 @@ items: fullName: OpenTK.Mathematics.Box2.Empty type: Field source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Empty - path: opentk/src/OpenTK.Mathematics/Geometry/Box2.cs - startLine: 245 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2.cs + startLine: 244 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -784,13 +696,9 @@ items: fullName: OpenTK.Mathematics.Box2.UnitSquare type: Field source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: UnitSquare - path: opentk/src/OpenTK.Mathematics/Geometry/Box2.cs - startLine: 250 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2.cs + startLine: 249 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -813,13 +721,9 @@ items: fullName: OpenTK.Mathematics.Box2.FromSize(OpenTK.Mathematics.Vector2, OpenTK.Mathematics.Vector2) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: FromSize - path: opentk/src/OpenTK.Mathematics/Geometry/Box2.cs - startLine: 258 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2.cs + startLine: 257 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -851,13 +755,9 @@ items: fullName: OpenTK.Mathematics.Box2.FromPositions(OpenTK.Mathematics.Vector2, OpenTK.Mathematics.Vector2) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: FromPositions - path: opentk/src/OpenTK.Mathematics/Geometry/Box2.cs - startLine: 269 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2.cs + startLine: 268 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -889,13 +789,9 @@ items: fullName: OpenTK.Mathematics.Box2.FromPositions(float, float, float, float) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: FromPositions - path: opentk/src/OpenTK.Mathematics/Geometry/Box2.cs - startLine: 282 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2.cs + startLine: 281 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -936,13 +832,9 @@ items: fullName: OpenTK.Mathematics.Box2.Intersect(OpenTK.Mathematics.Box2) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Intersect - path: opentk/src/OpenTK.Mathematics/Geometry/Box2.cs - startLine: 291 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2.cs + startLine: 290 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -968,13 +860,9 @@ items: fullName: OpenTK.Mathematics.Box2.Intersect(OpenTK.Mathematics.Box2, OpenTK.Mathematics.Box2) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Intersect - path: opentk/src/OpenTK.Mathematics/Geometry/Box2.cs - startLine: 307 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2.cs + startLine: 306 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1006,13 +894,9 @@ items: fullName: OpenTK.Mathematics.Box2.Intersected(OpenTK.Mathematics.Box2) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Intersected - path: opentk/src/OpenTK.Mathematics/Geometry/Box2.cs - startLine: 326 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2.cs + startLine: 325 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1041,13 +925,9 @@ items: fullName: OpenTK.Mathematics.Box2.IntersectsWith(OpenTK.Mathematics.Box2) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: IntersectsWith - path: opentk/src/OpenTK.Mathematics/Geometry/Box2.cs - startLine: 336 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2.cs + startLine: 335 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1076,13 +956,9 @@ items: fullName: OpenTK.Mathematics.Box2.TouchWith(OpenTK.Mathematics.Box2) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TouchWith - path: opentk/src/OpenTK.Mathematics/Geometry/Box2.cs - startLine: 349 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2.cs + startLine: 348 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1111,13 +987,9 @@ items: fullName: OpenTK.Mathematics.Box2.Union(OpenTK.Mathematics.Box2, OpenTK.Mathematics.Box2) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Union - path: opentk/src/OpenTK.Mathematics/Geometry/Box2.cs - startLine: 363 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2.cs + startLine: 362 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1149,13 +1021,9 @@ items: fullName: OpenTK.Mathematics.Box2.Round(OpenTK.Mathematics.Box2) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Round - path: opentk/src/OpenTK.Mathematics/Geometry/Box2.cs - startLine: 378 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2.cs + startLine: 377 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1184,13 +1052,9 @@ items: fullName: OpenTK.Mathematics.Box2.Ceiling(OpenTK.Mathematics.Box2) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Ceiling - path: opentk/src/OpenTK.Mathematics/Geometry/Box2.cs - startLine: 392 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2.cs + startLine: 391 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1219,13 +1083,9 @@ items: fullName: OpenTK.Mathematics.Box2.Floor(OpenTK.Mathematics.Box2) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Floor - path: opentk/src/OpenTK.Mathematics/Geometry/Box2.cs - startLine: 407 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2.cs + startLine: 406 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1254,13 +1114,9 @@ items: fullName: OpenTK.Mathematics.Box2.Contains(OpenTK.Mathematics.Vector2) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Contains - path: opentk/src/OpenTK.Mathematics/Geometry/Box2.cs - startLine: 424 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2.cs + startLine: 423 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1272,7 +1128,7 @@ items: [Obsolete("This function used to exclude borders, but to follow changes from the other Box structs it's deprecated. Use ContainsInclusive and ContainsExclusive for the desired behaviour.")] - public bool Contains(Vector2 point) + public readonly bool Contains(Vector2 point) parameters: - id: point type: OpenTK.Mathematics.Vector2 @@ -1308,13 +1164,9 @@ items: fullName: OpenTK.Mathematics.Box2.ContainsInclusive(OpenTK.Mathematics.Vector2) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ContainsInclusive - path: opentk/src/OpenTK.Mathematics/Geometry/Box2.cs - startLine: 437 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2.cs + startLine: 436 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1324,7 +1176,7 @@ items: content: >- [Pure] - public bool ContainsInclusive(Vector2 point) + public readonly bool ContainsInclusive(Vector2 point) parameters: - id: point type: OpenTK.Mathematics.Vector2 @@ -1353,13 +1205,9 @@ items: fullName: OpenTK.Mathematics.Box2.ContainsExclusive(OpenTK.Mathematics.Vector2) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ContainsExclusive - path: opentk/src/OpenTK.Mathematics/Geometry/Box2.cs - startLine: 449 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2.cs + startLine: 448 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1369,7 +1217,7 @@ items: content: >- [Pure] - public bool ContainsExclusive(Vector2 point) + public readonly bool ContainsExclusive(Vector2 point) parameters: - id: point type: OpenTK.Mathematics.Vector2 @@ -1398,13 +1246,9 @@ items: fullName: OpenTK.Mathematics.Box2.Contains(OpenTK.Mathematics.Vector2, bool) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Contains - path: opentk/src/OpenTK.Mathematics/Geometry/Box2.cs - startLine: 464 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2.cs + startLine: 463 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1449,13 +1293,9 @@ items: fullName: OpenTK.Mathematics.Box2.Contains(OpenTK.Mathematics.Box2) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Contains - path: opentk/src/OpenTK.Mathematics/Geometry/Box2.cs - startLine: 482 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2.cs + startLine: 481 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1465,7 +1305,7 @@ items: content: >- [Pure] - public bool Contains(Box2 other) + public readonly bool Contains(Box2 other) parameters: - id: other type: OpenTK.Mathematics.Box2 @@ -1494,13 +1334,9 @@ items: fullName: OpenTK.Mathematics.Box2.DistanceToNearestEdge(OpenTK.Mathematics.Vector2) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DistanceToNearestEdge - path: opentk/src/OpenTK.Mathematics/Geometry/Box2.cs - startLine: 494 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2.cs + startLine: 493 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1510,7 +1346,7 @@ items: content: >- [Pure] - public float DistanceToNearestEdge(Vector2 point) + public readonly float DistanceToNearestEdge(Vector2 point) parameters: - id: point type: OpenTK.Mathematics.Vector2 @@ -1539,13 +1375,9 @@ items: fullName: OpenTK.Mathematics.Box2.Translate(OpenTK.Mathematics.Vector2) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Translate - path: opentk/src/OpenTK.Mathematics/Geometry/Box2.cs - startLine: 507 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2.cs + startLine: 506 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1571,13 +1403,9 @@ items: fullName: OpenTK.Mathematics.Box2.Translated(OpenTK.Mathematics.Vector2) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Translated - path: opentk/src/OpenTK.Mathematics/Geometry/Box2.cs - startLine: 518 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2.cs + startLine: 517 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1587,7 +1415,7 @@ items: content: >- [Pure] - public Box2 Translated(Vector2 distance) + public readonly Box2 Translated(Vector2 distance) parameters: - id: distance type: OpenTK.Mathematics.Vector2 @@ -1616,13 +1444,9 @@ items: fullName: OpenTK.Mathematics.Box2.Scale(OpenTK.Mathematics.Vector2, OpenTK.Mathematics.Vector2) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Scale - path: opentk/src/OpenTK.Mathematics/Geometry/Box2.cs - startLine: 532 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2.cs + startLine: 531 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1651,13 +1475,9 @@ items: fullName: OpenTK.Mathematics.Box2.Scaled(OpenTK.Mathematics.Vector2, OpenTK.Mathematics.Vector2) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Scaled - path: opentk/src/OpenTK.Mathematics/Geometry/Box2.cs - startLine: 544 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2.cs + startLine: 543 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1667,7 +1487,7 @@ items: content: >- [Pure] - public Box2 Scaled(Vector2 scale, Vector2 anchor) + public readonly Box2 Scaled(Vector2 scale, Vector2 anchor) parameters: - id: scale type: OpenTK.Mathematics.Vector2 @@ -1699,13 +1519,9 @@ items: fullName: OpenTK.Mathematics.Box2.Inflate(OpenTK.Mathematics.Vector2) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Inflate - path: opentk/src/OpenTK.Mathematics/Geometry/Box2.cs - startLine: 558 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2.cs + startLine: 557 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1734,13 +1550,9 @@ items: fullName: OpenTK.Mathematics.Box2.Inflated(OpenTK.Mathematics.Vector2) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Inflated - path: opentk/src/OpenTK.Mathematics/Geometry/Box2.cs - startLine: 573 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2.cs + startLine: 572 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1753,7 +1565,7 @@ items: content: >- [Pure] - public Box2 Inflated(Vector2 size) + public readonly Box2 Inflated(Vector2 size) parameters: - id: size type: OpenTK.Mathematics.Vector2 @@ -1782,13 +1594,9 @@ items: fullName: OpenTK.Mathematics.Box2.Extend(OpenTK.Mathematics.Vector2) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Extend - path: opentk/src/OpenTK.Mathematics/Geometry/Box2.cs - startLine: 586 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2.cs + startLine: 585 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1814,13 +1622,9 @@ items: fullName: OpenTK.Mathematics.Box2.Extended(OpenTK.Mathematics.Vector2) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Extended - path: opentk/src/OpenTK.Mathematics/Geometry/Box2.cs - startLine: 597 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2.cs + startLine: 596 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1830,7 +1634,7 @@ items: content: >- [Pure] - public Box2 Extended(Vector2 point) + public readonly Box2 Extended(Vector2 point) parameters: - id: point type: OpenTK.Mathematics.Vector2 @@ -1859,13 +1663,9 @@ items: fullName: OpenTK.Mathematics.Box2.operator ==(OpenTK.Mathematics.Box2, OpenTK.Mathematics.Box2) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Equality - path: opentk/src/OpenTK.Mathematics/Geometry/Box2.cs - startLine: 611 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2.cs + startLine: 610 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1899,13 +1699,9 @@ items: fullName: OpenTK.Mathematics.Box2.operator !=(OpenTK.Mathematics.Box2, OpenTK.Mathematics.Box2) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Inequality - path: opentk/src/OpenTK.Mathematics/Geometry/Box2.cs - startLine: 621 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2.cs + startLine: 620 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1939,13 +1735,9 @@ items: fullName: OpenTK.Mathematics.Box2.explicit operator System.Drawing.RectangleF(OpenTK.Mathematics.Box2) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Explicit - path: opentk/src/OpenTK.Mathematics/Geometry/Box2.cs - startLine: 630 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2.cs + startLine: 629 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1986,13 +1778,9 @@ items: fullName: OpenTK.Mathematics.Box2.Equals(object) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Equals - path: opentk/src/OpenTK.Mathematics/Geometry/Box2.cs - startLine: 637 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2.cs + startLine: 636 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2025,13 +1813,9 @@ items: fullName: OpenTK.Mathematics.Box2.Equals(OpenTK.Mathematics.Box2) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Equals - path: opentk/src/OpenTK.Mathematics/Geometry/Box2.cs - startLine: 643 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2.cs + startLine: 642 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2062,20 +1846,16 @@ items: fullName: OpenTK.Mathematics.Box2.GetHashCode() type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetHashCode - path: opentk/src/OpenTK.Mathematics/Geometry/Box2.cs - startLine: 650 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2.cs + startLine: 649 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Returns the hash code for this instance. example: [] syntax: - content: public override int GetHashCode() + content: public override readonly int GetHashCode() return: type: System.Int32 description: A 32-bit signed integer that is the hash code for this instance. @@ -2094,13 +1874,9 @@ items: fullName: OpenTK.Mathematics.Box2.ToString() type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Mathematics/Geometry/Box2.cs - startLine: 656 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2.cs + startLine: 655 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2126,13 +1902,9 @@ items: fullName: OpenTK.Mathematics.Box2.ToString(string) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Mathematics/Geometry/Box2.cs - startLine: 662 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2.cs + startLine: 661 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2169,13 +1941,9 @@ items: fullName: OpenTK.Mathematics.Box2.ToString(System.IFormatProvider) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Mathematics/Geometry/Box2.cs - startLine: 668 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2.cs + startLine: 667 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2209,13 +1977,9 @@ items: fullName: OpenTK.Mathematics.Box2.ToString(string, System.IFormatProvider) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Mathematics/Geometry/Box2.cs - startLine: 674 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2.cs + startLine: 673 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics diff --git a/api/OpenTK.Mathematics.Box2d.yml b/api/OpenTK.Mathematics.Box2d.yml index 1afb7b99..30fbbad5 100644 --- a/api/OpenTK.Mathematics.Box2d.yml +++ b/api/OpenTK.Mathematics.Box2d.yml @@ -70,13 +70,9 @@ items: fullName: OpenTK.Mathematics.Box2d type: Struct source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Box2d - path: opentk/src/OpenTK.Mathematics/Geometry/Box2d.cs - startLine: 20 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2d.cs + startLine: 19 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -114,20 +110,16 @@ items: fullName: OpenTK.Mathematics.Box2d.Min type: Property source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Min - path: opentk/src/OpenTK.Mathematics/Geometry/Box2d.cs - startLine: 29 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2d.cs + startLine: 28 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the minimum boundary of the structure. example: [] syntax: - content: public Vector2d Min { get; set; } + content: public Vector2d Min { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector2d @@ -145,20 +137,16 @@ items: fullName: OpenTK.Mathematics.Box2d.Max type: Property source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Max - path: opentk/src/OpenTK.Mathematics/Geometry/Box2d.cs - startLine: 52 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2d.cs + startLine: 51 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the maximum boundary of the structure. example: [] syntax: - content: public Vector2d Max { get; set; } + content: public Vector2d Max { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector2d @@ -176,13 +164,9 @@ items: fullName: OpenTK.Mathematics.Box2d.Box2d(OpenTK.Mathematics.Vector2d, OpenTK.Mathematics.Vector2d) type: Constructor source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Mathematics/Geometry/Box2d.cs - startLine: 75 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2d.cs + startLine: 74 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -214,13 +198,9 @@ items: fullName: OpenTK.Mathematics.Box2d.Box2d(double, double, double, double) type: Constructor source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Mathematics/Geometry/Box2d.cs - startLine: 88 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2d.cs + startLine: 87 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -258,13 +238,9 @@ items: fullName: OpenTK.Mathematics.Box2d.CenteredSize type: Property source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CenteredSize - path: opentk/src/OpenTK.Mathematics/Geometry/Box2d.cs - startLine: 96 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2d.cs + startLine: 95 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -289,13 +265,9 @@ items: fullName: OpenTK.Mathematics.Box2d.HalfSize type: Property source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: HalfSize - path: opentk/src/OpenTK.Mathematics/Geometry/Box2d.cs - startLine: 110 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2d.cs + startLine: 109 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -320,13 +292,9 @@ items: fullName: OpenTK.Mathematics.Box2d.Center type: Property source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Center - path: opentk/src/OpenTK.Mathematics/Geometry/Box2d.cs - startLine: 120 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2d.cs + startLine: 119 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -351,13 +319,9 @@ items: fullName: OpenTK.Mathematics.Box2d.Width type: Property source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Width - path: opentk/src/OpenTK.Mathematics/Geometry/Box2d.cs - startLine: 132 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2d.cs + startLine: 131 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -382,13 +346,9 @@ items: fullName: OpenTK.Mathematics.Box2d.Height type: Property source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Height - path: opentk/src/OpenTK.Mathematics/Geometry/Box2d.cs - startLine: 141 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2d.cs + startLine: 140 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -413,13 +373,9 @@ items: fullName: OpenTK.Mathematics.Box2d.Left type: Property source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Left - path: opentk/src/OpenTK.Mathematics/Geometry/Box2d.cs - startLine: 150 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2d.cs + startLine: 149 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -444,13 +400,9 @@ items: fullName: OpenTK.Mathematics.Box2d.Top type: Property source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Top - path: opentk/src/OpenTK.Mathematics/Geometry/Box2d.cs - startLine: 159 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2d.cs + startLine: 158 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -475,13 +427,9 @@ items: fullName: OpenTK.Mathematics.Box2d.Right type: Property source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Right - path: opentk/src/OpenTK.Mathematics/Geometry/Box2d.cs - startLine: 168 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2d.cs + startLine: 167 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -506,13 +454,9 @@ items: fullName: OpenTK.Mathematics.Box2d.Bottom type: Property source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Bottom - path: opentk/src/OpenTK.Mathematics/Geometry/Box2d.cs - startLine: 177 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2d.cs + startLine: 176 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -537,13 +481,9 @@ items: fullName: OpenTK.Mathematics.Box2d.X type: Property source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: X - path: opentk/src/OpenTK.Mathematics/Geometry/Box2d.cs - startLine: 186 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2d.cs + startLine: 185 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -568,13 +508,9 @@ items: fullName: OpenTK.Mathematics.Box2d.Y type: Property source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Y - path: opentk/src/OpenTK.Mathematics/Geometry/Box2d.cs - startLine: 195 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2d.cs + startLine: 194 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -599,13 +535,9 @@ items: fullName: OpenTK.Mathematics.Box2d.SizeX type: Property source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SizeX - path: opentk/src/OpenTK.Mathematics/Geometry/Box2d.cs - startLine: 204 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2d.cs + startLine: 203 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -630,13 +562,9 @@ items: fullName: OpenTK.Mathematics.Box2d.SizeY type: Property source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SizeY - path: opentk/src/OpenTK.Mathematics/Geometry/Box2d.cs - startLine: 213 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2d.cs + startLine: 212 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -661,13 +589,9 @@ items: fullName: OpenTK.Mathematics.Box2d.Size type: Property source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Size - path: opentk/src/OpenTK.Mathematics/Geometry/Box2d.cs - startLine: 222 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2d.cs + startLine: 221 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -692,13 +616,9 @@ items: fullName: OpenTK.Mathematics.Box2d.Location type: Property source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Location - path: opentk/src/OpenTK.Mathematics/Geometry/Box2d.cs - startLine: 235 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2d.cs + startLine: 234 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -723,13 +643,9 @@ items: fullName: OpenTK.Mathematics.Box2d.IsZero type: Property source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: IsZero - path: opentk/src/OpenTK.Mathematics/Geometry/Box2d.cs - startLine: 240 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2d.cs + startLine: 239 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -754,13 +670,9 @@ items: fullName: OpenTK.Mathematics.Box2d.Empty type: Field source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Empty - path: opentk/src/OpenTK.Mathematics/Geometry/Box2d.cs - startLine: 245 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2d.cs + startLine: 244 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -783,13 +695,9 @@ items: fullName: OpenTK.Mathematics.Box2d.UnitSquare type: Field source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: UnitSquare - path: opentk/src/OpenTK.Mathematics/Geometry/Box2d.cs - startLine: 250 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2d.cs + startLine: 249 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -812,13 +720,9 @@ items: fullName: OpenTK.Mathematics.Box2d.FromSize(OpenTK.Mathematics.Vector2d, OpenTK.Mathematics.Vector2d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: FromSize - path: opentk/src/OpenTK.Mathematics/Geometry/Box2d.cs - startLine: 258 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2d.cs + startLine: 257 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -850,13 +754,9 @@ items: fullName: OpenTK.Mathematics.Box2d.FromPositions(OpenTK.Mathematics.Vector2d, OpenTK.Mathematics.Vector2d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: FromPositions - path: opentk/src/OpenTK.Mathematics/Geometry/Box2d.cs - startLine: 269 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2d.cs + startLine: 268 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -888,13 +788,9 @@ items: fullName: OpenTK.Mathematics.Box2d.FromPositions(double, double, double, double) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: FromPositions - path: opentk/src/OpenTK.Mathematics/Geometry/Box2d.cs - startLine: 282 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2d.cs + startLine: 281 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -935,13 +831,9 @@ items: fullName: OpenTK.Mathematics.Box2d.Intersect(OpenTK.Mathematics.Box2d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Intersect - path: opentk/src/OpenTK.Mathematics/Geometry/Box2d.cs - startLine: 291 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2d.cs + startLine: 290 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -967,13 +859,9 @@ items: fullName: OpenTK.Mathematics.Box2d.Intersect(OpenTK.Mathematics.Box2d, OpenTK.Mathematics.Box2d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Intersect - path: opentk/src/OpenTK.Mathematics/Geometry/Box2d.cs - startLine: 307 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2d.cs + startLine: 306 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1005,13 +893,9 @@ items: fullName: OpenTK.Mathematics.Box2d.Intersected(OpenTK.Mathematics.Box2d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Intersected - path: opentk/src/OpenTK.Mathematics/Geometry/Box2d.cs - startLine: 326 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2d.cs + startLine: 325 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1040,13 +924,9 @@ items: fullName: OpenTK.Mathematics.Box2d.IntersectsWith(OpenTK.Mathematics.Box2d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: IntersectsWith - path: opentk/src/OpenTK.Mathematics/Geometry/Box2d.cs - startLine: 336 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2d.cs + startLine: 335 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1075,13 +955,9 @@ items: fullName: OpenTK.Mathematics.Box2d.TouchWith(OpenTK.Mathematics.Box2d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TouchWith - path: opentk/src/OpenTK.Mathematics/Geometry/Box2d.cs - startLine: 349 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2d.cs + startLine: 348 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1110,13 +986,9 @@ items: fullName: OpenTK.Mathematics.Box2d.Union(OpenTK.Mathematics.Box2d, OpenTK.Mathematics.Box2d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Union - path: opentk/src/OpenTK.Mathematics/Geometry/Box2d.cs - startLine: 363 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2d.cs + startLine: 362 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1148,13 +1020,9 @@ items: fullName: OpenTK.Mathematics.Box2d.Round(OpenTK.Mathematics.Box2d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Round - path: opentk/src/OpenTK.Mathematics/Geometry/Box2d.cs - startLine: 378 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2d.cs + startLine: 377 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1183,13 +1051,9 @@ items: fullName: OpenTK.Mathematics.Box2d.Ceiling(OpenTK.Mathematics.Box2d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Ceiling - path: opentk/src/OpenTK.Mathematics/Geometry/Box2d.cs - startLine: 392 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2d.cs + startLine: 391 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1218,13 +1082,9 @@ items: fullName: OpenTK.Mathematics.Box2d.Floor(OpenTK.Mathematics.Box2d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Floor - path: opentk/src/OpenTK.Mathematics/Geometry/Box2d.cs - startLine: 407 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2d.cs + startLine: 406 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1253,13 +1113,9 @@ items: fullName: OpenTK.Mathematics.Box2d.Contains(OpenTK.Mathematics.Vector2d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Contains - path: opentk/src/OpenTK.Mathematics/Geometry/Box2d.cs - startLine: 424 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2d.cs + startLine: 423 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1271,7 +1127,7 @@ items: [Obsolete("This function excludes borders even though it's documentation says otherwise. Use ContainsInclusive and ContainsExclusive for the desired behaviour.")] - public bool Contains(Vector2d point) + public readonly bool Contains(Vector2d point) parameters: - id: point type: OpenTK.Mathematics.Vector2d @@ -1307,13 +1163,9 @@ items: fullName: OpenTK.Mathematics.Box2d.ContainsInclusive(OpenTK.Mathematics.Vector2d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ContainsInclusive - path: opentk/src/OpenTK.Mathematics/Geometry/Box2d.cs - startLine: 437 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2d.cs + startLine: 436 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1323,7 +1175,7 @@ items: content: >- [Pure] - public bool ContainsInclusive(Vector2d point) + public readonly bool ContainsInclusive(Vector2d point) parameters: - id: point type: OpenTK.Mathematics.Vector2d @@ -1352,13 +1204,9 @@ items: fullName: OpenTK.Mathematics.Box2d.ContainsExclusive(OpenTK.Mathematics.Vector2d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ContainsExclusive - path: opentk/src/OpenTK.Mathematics/Geometry/Box2d.cs - startLine: 449 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2d.cs + startLine: 448 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1368,7 +1216,7 @@ items: content: >- [Pure] - public bool ContainsExclusive(Vector2d point) + public readonly bool ContainsExclusive(Vector2d point) parameters: - id: point type: OpenTK.Mathematics.Vector2d @@ -1397,13 +1245,9 @@ items: fullName: OpenTK.Mathematics.Box2d.Contains(OpenTK.Mathematics.Vector2d, bool) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Contains - path: opentk/src/OpenTK.Mathematics/Geometry/Box2d.cs - startLine: 464 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2d.cs + startLine: 463 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1448,13 +1292,9 @@ items: fullName: OpenTK.Mathematics.Box2d.Contains(OpenTK.Mathematics.Box2d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Contains - path: opentk/src/OpenTK.Mathematics/Geometry/Box2d.cs - startLine: 482 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2d.cs + startLine: 481 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1464,7 +1304,7 @@ items: content: >- [Pure] - public bool Contains(Box2d other) + public readonly bool Contains(Box2d other) parameters: - id: other type: OpenTK.Mathematics.Box2d @@ -1493,13 +1333,9 @@ items: fullName: OpenTK.Mathematics.Box2d.DistanceToNearestEdge(OpenTK.Mathematics.Vector2d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DistanceToNearestEdge - path: opentk/src/OpenTK.Mathematics/Geometry/Box2d.cs - startLine: 494 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2d.cs + startLine: 493 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1509,7 +1345,7 @@ items: content: >- [Pure] - public double DistanceToNearestEdge(Vector2d point) + public readonly double DistanceToNearestEdge(Vector2d point) parameters: - id: point type: OpenTK.Mathematics.Vector2d @@ -1538,13 +1374,9 @@ items: fullName: OpenTK.Mathematics.Box2d.Translate(OpenTK.Mathematics.Vector2d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Translate - path: opentk/src/OpenTK.Mathematics/Geometry/Box2d.cs - startLine: 507 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2d.cs + startLine: 506 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1570,13 +1402,9 @@ items: fullName: OpenTK.Mathematics.Box2d.Translated(OpenTK.Mathematics.Vector2d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Translated - path: opentk/src/OpenTK.Mathematics/Geometry/Box2d.cs - startLine: 518 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2d.cs + startLine: 517 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1586,7 +1414,7 @@ items: content: >- [Pure] - public Box2d Translated(Vector2d distance) + public readonly Box2d Translated(Vector2d distance) parameters: - id: distance type: OpenTK.Mathematics.Vector2d @@ -1615,13 +1443,9 @@ items: fullName: OpenTK.Mathematics.Box2d.Scale(OpenTK.Mathematics.Vector2d, OpenTK.Mathematics.Vector2d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Scale - path: opentk/src/OpenTK.Mathematics/Geometry/Box2d.cs - startLine: 532 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2d.cs + startLine: 531 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1650,13 +1474,9 @@ items: fullName: OpenTK.Mathematics.Box2d.Scaled(OpenTK.Mathematics.Vector2d, OpenTK.Mathematics.Vector2d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Scaled - path: opentk/src/OpenTK.Mathematics/Geometry/Box2d.cs - startLine: 544 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2d.cs + startLine: 543 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1666,7 +1486,7 @@ items: content: >- [Pure] - public Box2d Scaled(Vector2d scale, Vector2d anchor) + public readonly Box2d Scaled(Vector2d scale, Vector2d anchor) parameters: - id: scale type: OpenTK.Mathematics.Vector2d @@ -1698,13 +1518,9 @@ items: fullName: OpenTK.Mathematics.Box2d.Inflate(OpenTK.Mathematics.Vector2d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Inflate - path: opentk/src/OpenTK.Mathematics/Geometry/Box2d.cs - startLine: 558 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2d.cs + startLine: 557 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1733,13 +1549,9 @@ items: fullName: OpenTK.Mathematics.Box2d.Inflated(OpenTK.Mathematics.Vector2d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Inflated - path: opentk/src/OpenTK.Mathematics/Geometry/Box2d.cs - startLine: 571 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2d.cs + startLine: 570 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1752,7 +1564,7 @@ items: content: >- [Pure] - public Box2d Inflated(Vector2d size) + public readonly Box2d Inflated(Vector2d size) parameters: - id: size type: OpenTK.Mathematics.Vector2d @@ -1781,13 +1593,9 @@ items: fullName: OpenTK.Mathematics.Box2d.Extend(OpenTK.Mathematics.Vector2d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Extend - path: opentk/src/OpenTK.Mathematics/Geometry/Box2d.cs - startLine: 584 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2d.cs + startLine: 583 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1813,13 +1621,9 @@ items: fullName: OpenTK.Mathematics.Box2d.Extended(OpenTK.Mathematics.Vector2d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Extended - path: opentk/src/OpenTK.Mathematics/Geometry/Box2d.cs - startLine: 595 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2d.cs + startLine: 594 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1829,7 +1633,7 @@ items: content: >- [Pure] - public Box2d Extended(Vector2d point) + public readonly Box2d Extended(Vector2d point) parameters: - id: point type: OpenTK.Mathematics.Vector2d @@ -1858,13 +1662,9 @@ items: fullName: OpenTK.Mathematics.Box2d.operator ==(OpenTK.Mathematics.Box2d, OpenTK.Mathematics.Box2d) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Equality - path: opentk/src/OpenTK.Mathematics/Geometry/Box2d.cs - startLine: 609 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2d.cs + startLine: 608 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1898,13 +1698,9 @@ items: fullName: OpenTK.Mathematics.Box2d.operator !=(OpenTK.Mathematics.Box2d, OpenTK.Mathematics.Box2d) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Inequality - path: opentk/src/OpenTK.Mathematics/Geometry/Box2d.cs - startLine: 619 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2d.cs + startLine: 618 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1938,13 +1734,9 @@ items: fullName: OpenTK.Mathematics.Box2d.Equals(object) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Equals - path: opentk/src/OpenTK.Mathematics/Geometry/Box2d.cs - startLine: 625 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2d.cs + startLine: 624 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1977,13 +1769,9 @@ items: fullName: OpenTK.Mathematics.Box2d.Equals(OpenTK.Mathematics.Box2d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Equals - path: opentk/src/OpenTK.Mathematics/Geometry/Box2d.cs - startLine: 631 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2d.cs + startLine: 630 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2014,20 +1802,16 @@ items: fullName: OpenTK.Mathematics.Box2d.GetHashCode() type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetHashCode - path: opentk/src/OpenTK.Mathematics/Geometry/Box2d.cs - startLine: 638 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2d.cs + startLine: 637 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Returns the hash code for this instance. example: [] syntax: - content: public override int GetHashCode() + content: public override readonly int GetHashCode() return: type: System.Int32 description: A 32-bit signed integer that is the hash code for this instance. @@ -2046,13 +1830,9 @@ items: fullName: OpenTK.Mathematics.Box2d.ToString() type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Mathematics/Geometry/Box2d.cs - startLine: 644 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2d.cs + startLine: 643 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2078,13 +1858,9 @@ items: fullName: OpenTK.Mathematics.Box2d.ToString(string) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Mathematics/Geometry/Box2d.cs - startLine: 650 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2d.cs + startLine: 649 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2121,13 +1897,9 @@ items: fullName: OpenTK.Mathematics.Box2d.ToString(System.IFormatProvider) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Mathematics/Geometry/Box2d.cs - startLine: 656 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2d.cs + startLine: 655 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2161,13 +1933,9 @@ items: fullName: OpenTK.Mathematics.Box2d.ToString(string, System.IFormatProvider) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Mathematics/Geometry/Box2d.cs - startLine: 662 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2d.cs + startLine: 661 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics diff --git a/api/OpenTK.Mathematics.Box2i.yml b/api/OpenTK.Mathematics.Box2i.yml index 1beac319..9dfcc7eb 100644 --- a/api/OpenTK.Mathematics.Box2i.yml +++ b/api/OpenTK.Mathematics.Box2i.yml @@ -68,13 +68,9 @@ items: fullName: OpenTK.Mathematics.Box2i type: Struct source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Box2i - path: opentk/src/OpenTK.Mathematics/Geometry/Box2i.cs - startLine: 20 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2i.cs + startLine: 19 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -112,13 +108,9 @@ items: fullName: OpenTK.Mathematics.Box2i.Empty type: Field source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Empty - path: opentk/src/OpenTK.Mathematics/Geometry/Box2i.cs - startLine: 27 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2i.cs + startLine: 26 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -141,20 +133,16 @@ items: fullName: OpenTK.Mathematics.Box2i.Min type: Property source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Min - path: opentk/src/OpenTK.Mathematics/Geometry/Box2i.cs - startLine: 34 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2i.cs + startLine: 33 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the minimum boundary of the structure. example: [] syntax: - content: public Vector2i Min { get; set; } + content: public Vector2i Min { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector2i @@ -172,20 +160,16 @@ items: fullName: OpenTK.Mathematics.Box2i.Max type: Property source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Max - path: opentk/src/OpenTK.Mathematics/Geometry/Box2i.cs - startLine: 49 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2i.cs + startLine: 48 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the maximum boundary of the structure. example: [] syntax: - content: public Vector2i Max { get; set; } + content: public Vector2i Max { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector2i @@ -203,13 +187,9 @@ items: fullName: OpenTK.Mathematics.Box2i.Box2i(OpenTK.Mathematics.Vector2i, OpenTK.Mathematics.Vector2i) type: Constructor source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Mathematics/Geometry/Box2i.cs - startLine: 64 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2i.cs + startLine: 63 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -241,13 +221,9 @@ items: fullName: OpenTK.Mathematics.Box2i.Box2i(int, int, int, int) type: Constructor source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Mathematics/Geometry/Box2i.cs - startLine: 77 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2i.cs + startLine: 76 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -285,13 +261,9 @@ items: fullName: OpenTK.Mathematics.Box2i.CenteredSize type: Property source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CenteredSize - path: opentk/src/OpenTK.Mathematics/Geometry/Box2i.cs - startLine: 85 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2i.cs + startLine: 84 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -316,13 +288,9 @@ items: fullName: OpenTK.Mathematics.Box2i.HalfSize type: Property source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: HalfSize - path: opentk/src/OpenTK.Mathematics/Geometry/Box2i.cs - startLine: 93 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2i.cs + startLine: 92 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -347,20 +315,16 @@ items: fullName: OpenTK.Mathematics.Box2i.Center type: Property source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Center - path: opentk/src/OpenTK.Mathematics/Geometry/Box2i.cs - startLine: 109 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2i.cs + startLine: 108 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets a vector describing the center of the box. example: [] syntax: - content: public Vector2 Center { get; } + content: public readonly Vector2 Center { get; } parameters: [] return: type: OpenTK.Mathematics.Vector2 @@ -378,13 +342,9 @@ items: fullName: OpenTK.Mathematics.Box2i.Width type: Property source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Width - path: opentk/src/OpenTK.Mathematics/Geometry/Box2i.cs - startLine: 120 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2i.cs + startLine: 119 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -409,13 +369,9 @@ items: fullName: OpenTK.Mathematics.Box2i.Height type: Property source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Height - path: opentk/src/OpenTK.Mathematics/Geometry/Box2i.cs - startLine: 129 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2i.cs + startLine: 128 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -440,13 +396,9 @@ items: fullName: OpenTK.Mathematics.Box2i.Left type: Property source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Left - path: opentk/src/OpenTK.Mathematics/Geometry/Box2i.cs - startLine: 138 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2i.cs + startLine: 137 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -471,13 +423,9 @@ items: fullName: OpenTK.Mathematics.Box2i.Top type: Property source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Top - path: opentk/src/OpenTK.Mathematics/Geometry/Box2i.cs - startLine: 147 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2i.cs + startLine: 146 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -502,13 +450,9 @@ items: fullName: OpenTK.Mathematics.Box2i.Right type: Property source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Right - path: opentk/src/OpenTK.Mathematics/Geometry/Box2i.cs - startLine: 156 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2i.cs + startLine: 155 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -533,13 +477,9 @@ items: fullName: OpenTK.Mathematics.Box2i.Bottom type: Property source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Bottom - path: opentk/src/OpenTK.Mathematics/Geometry/Box2i.cs - startLine: 165 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2i.cs + startLine: 164 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -564,13 +504,9 @@ items: fullName: OpenTK.Mathematics.Box2i.X type: Property source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: X - path: opentk/src/OpenTK.Mathematics/Geometry/Box2i.cs - startLine: 174 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2i.cs + startLine: 173 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -595,13 +531,9 @@ items: fullName: OpenTK.Mathematics.Box2i.Y type: Property source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Y - path: opentk/src/OpenTK.Mathematics/Geometry/Box2i.cs - startLine: 183 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2i.cs + startLine: 182 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -626,13 +558,9 @@ items: fullName: OpenTK.Mathematics.Box2i.SizeX type: Property source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SizeX - path: opentk/src/OpenTK.Mathematics/Geometry/Box2i.cs - startLine: 192 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2i.cs + startLine: 191 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -657,13 +585,9 @@ items: fullName: OpenTK.Mathematics.Box2i.SizeY type: Property source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SizeY - path: opentk/src/OpenTK.Mathematics/Geometry/Box2i.cs - startLine: 201 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2i.cs + startLine: 200 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -688,13 +612,9 @@ items: fullName: OpenTK.Mathematics.Box2i.Size type: Property source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Size - path: opentk/src/OpenTK.Mathematics/Geometry/Box2i.cs - startLine: 210 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2i.cs + startLine: 209 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -719,13 +639,9 @@ items: fullName: OpenTK.Mathematics.Box2i.Location type: Property source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Location - path: opentk/src/OpenTK.Mathematics/Geometry/Box2i.cs - startLine: 223 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2i.cs + startLine: 222 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -750,13 +666,9 @@ items: fullName: OpenTK.Mathematics.Box2i.IsZero type: Property source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: IsZero - path: opentk/src/OpenTK.Mathematics/Geometry/Box2i.cs - startLine: 228 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2i.cs + startLine: 227 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -781,13 +693,9 @@ items: fullName: OpenTK.Mathematics.Box2i.UnitSquare type: Field source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: UnitSquare - path: opentk/src/OpenTK.Mathematics/Geometry/Box2i.cs - startLine: 233 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2i.cs + startLine: 232 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -810,13 +718,9 @@ items: fullName: OpenTK.Mathematics.Box2i.FromSize(OpenTK.Mathematics.Vector2i, OpenTK.Mathematics.Vector2i) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: FromSize - path: opentk/src/OpenTK.Mathematics/Geometry/Box2i.cs - startLine: 241 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2i.cs + startLine: 240 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -848,13 +752,9 @@ items: fullName: OpenTK.Mathematics.Box2i.FromPositions(OpenTK.Mathematics.Vector2i, OpenTK.Mathematics.Vector2i) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: FromPositions - path: opentk/src/OpenTK.Mathematics/Geometry/Box2i.cs - startLine: 252 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2i.cs + startLine: 251 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -886,13 +786,9 @@ items: fullName: OpenTK.Mathematics.Box2i.FromPositions(int, int, int, int) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: FromPositions - path: opentk/src/OpenTK.Mathematics/Geometry/Box2i.cs - startLine: 265 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2i.cs + startLine: 264 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -933,13 +829,9 @@ items: fullName: OpenTK.Mathematics.Box2i.Intersect(OpenTK.Mathematics.Box2i) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Intersect - path: opentk/src/OpenTK.Mathematics/Geometry/Box2i.cs - startLine: 274 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2i.cs + startLine: 273 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -965,13 +857,9 @@ items: fullName: OpenTK.Mathematics.Box2i.Intersected(OpenTK.Mathematics.Box2i) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Intersected - path: opentk/src/OpenTK.Mathematics/Geometry/Box2i.cs - startLine: 289 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2i.cs + startLine: 288 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1000,13 +888,9 @@ items: fullName: OpenTK.Mathematics.Box2i.IntersectsWith(OpenTK.Mathematics.Box2i) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: IntersectsWith - path: opentk/src/OpenTK.Mathematics/Geometry/Box2i.cs - startLine: 299 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2i.cs + startLine: 298 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1035,13 +919,9 @@ items: fullName: OpenTK.Mathematics.Box2i.TouchWith(OpenTK.Mathematics.Box2i) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TouchWith - path: opentk/src/OpenTK.Mathematics/Geometry/Box2i.cs - startLine: 312 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2i.cs + startLine: 311 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1070,13 +950,9 @@ items: fullName: OpenTK.Mathematics.Box2i.Union(OpenTK.Mathematics.Box2i, OpenTK.Mathematics.Box2i) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Union - path: opentk/src/OpenTK.Mathematics/Geometry/Box2i.cs - startLine: 326 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2i.cs + startLine: 325 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1108,13 +984,9 @@ items: fullName: OpenTK.Mathematics.Box2i.Contains(OpenTK.Mathematics.Vector2i) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Contains - path: opentk/src/OpenTK.Mathematics/Geometry/Box2i.cs - startLine: 343 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2i.cs + startLine: 342 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1126,7 +998,7 @@ items: [Obsolete("This function excludes borders even though it's documentation says otherwise. Use ContainsInclusive and ContainsExclusive for the desired behaviour.")] - public bool Contains(Vector2i point) + public readonly bool Contains(Vector2i point) parameters: - id: point type: OpenTK.Mathematics.Vector2i @@ -1162,13 +1034,9 @@ items: fullName: OpenTK.Mathematics.Box2i.ContainsInclusive(OpenTK.Mathematics.Vector2i) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ContainsInclusive - path: opentk/src/OpenTK.Mathematics/Geometry/Box2i.cs - startLine: 356 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2i.cs + startLine: 355 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1178,7 +1046,7 @@ items: content: >- [Pure] - public bool ContainsInclusive(Vector2i point) + public readonly bool ContainsInclusive(Vector2i point) parameters: - id: point type: OpenTK.Mathematics.Vector2i @@ -1207,13 +1075,9 @@ items: fullName: OpenTK.Mathematics.Box2i.ContainsExclusive(OpenTK.Mathematics.Vector2i) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ContainsExclusive - path: opentk/src/OpenTK.Mathematics/Geometry/Box2i.cs - startLine: 368 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2i.cs + startLine: 367 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1223,7 +1087,7 @@ items: content: >- [Pure] - public bool ContainsExclusive(Vector2i point) + public readonly bool ContainsExclusive(Vector2i point) parameters: - id: point type: OpenTK.Mathematics.Vector2i @@ -1252,13 +1116,9 @@ items: fullName: OpenTK.Mathematics.Box2i.Contains(OpenTK.Mathematics.Vector2i, bool) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Contains - path: opentk/src/OpenTK.Mathematics/Geometry/Box2i.cs - startLine: 383 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2i.cs + startLine: 382 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1303,13 +1163,9 @@ items: fullName: OpenTK.Mathematics.Box2i.Contains(OpenTK.Mathematics.Box2i) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Contains - path: opentk/src/OpenTK.Mathematics/Geometry/Box2i.cs - startLine: 401 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2i.cs + startLine: 400 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1319,7 +1175,7 @@ items: content: >- [Pure] - public bool Contains(Box2i other) + public readonly bool Contains(Box2i other) parameters: - id: other type: OpenTK.Mathematics.Box2i @@ -1348,13 +1204,9 @@ items: fullName: OpenTK.Mathematics.Box2i.Intersect(OpenTK.Mathematics.Box2i, OpenTK.Mathematics.Box2i) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Intersect - path: opentk/src/OpenTK.Mathematics/Geometry/Box2i.cs - startLine: 415 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2i.cs + startLine: 414 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1389,13 +1241,9 @@ items: fullName: OpenTK.Mathematics.Box2i.DistanceToNearestEdge(OpenTK.Mathematics.Vector2i) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DistanceToNearestEdge - path: opentk/src/OpenTK.Mathematics/Geometry/Box2i.cs - startLine: 435 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2i.cs + startLine: 434 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1405,7 +1253,7 @@ items: content: >- [Pure] - public float DistanceToNearestEdge(Vector2i point) + public readonly float DistanceToNearestEdge(Vector2i point) parameters: - id: point type: OpenTK.Mathematics.Vector2i @@ -1434,13 +1282,9 @@ items: fullName: OpenTK.Mathematics.Box2i.Translate(OpenTK.Mathematics.Vector2i) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Translate - path: opentk/src/OpenTK.Mathematics/Geometry/Box2i.cs - startLine: 448 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2i.cs + startLine: 447 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1466,13 +1310,9 @@ items: fullName: OpenTK.Mathematics.Box2i.Translated(OpenTK.Mathematics.Vector2i) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Translated - path: opentk/src/OpenTK.Mathematics/Geometry/Box2i.cs - startLine: 459 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2i.cs + startLine: 458 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1482,7 +1322,7 @@ items: content: >- [Pure] - public Box2i Translated(Vector2i distance) + public readonly Box2i Translated(Vector2i distance) parameters: - id: distance type: OpenTK.Mathematics.Vector2i @@ -1511,13 +1351,9 @@ items: fullName: OpenTK.Mathematics.Box2i.Scale(OpenTK.Mathematics.Vector2i, OpenTK.Mathematics.Vector2i) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Scale - path: opentk/src/OpenTK.Mathematics/Geometry/Box2i.cs - startLine: 473 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2i.cs + startLine: 472 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1546,13 +1382,9 @@ items: fullName: OpenTK.Mathematics.Box2i.Scaled(OpenTK.Mathematics.Vector2i, OpenTK.Mathematics.Vector2i) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Scaled - path: opentk/src/OpenTK.Mathematics/Geometry/Box2i.cs - startLine: 485 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2i.cs + startLine: 484 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1562,7 +1394,7 @@ items: content: >- [Pure] - public Box2i Scaled(Vector2i scale, Vector2i anchor) + public readonly Box2i Scaled(Vector2i scale, Vector2i anchor) parameters: - id: scale type: OpenTK.Mathematics.Vector2i @@ -1594,13 +1426,9 @@ items: fullName: OpenTK.Mathematics.Box2i.Inflate(OpenTK.Mathematics.Vector2i) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Inflate - path: opentk/src/OpenTK.Mathematics/Geometry/Box2i.cs - startLine: 499 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2i.cs + startLine: 498 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1629,13 +1457,9 @@ items: fullName: OpenTK.Mathematics.Box2i.Inflated(OpenTK.Mathematics.Vector2i) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Inflated - path: opentk/src/OpenTK.Mathematics/Geometry/Box2i.cs - startLine: 512 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2i.cs + startLine: 511 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1648,7 +1472,7 @@ items: content: >- [Pure] - public Box2i Inflated(Vector2i size) + public readonly Box2i Inflated(Vector2i size) parameters: - id: size type: OpenTK.Mathematics.Vector2i @@ -1677,13 +1501,9 @@ items: fullName: OpenTK.Mathematics.Box2i.Extend(OpenTK.Mathematics.Vector2i) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Extend - path: opentk/src/OpenTK.Mathematics/Geometry/Box2i.cs - startLine: 525 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2i.cs + startLine: 524 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1709,13 +1529,9 @@ items: fullName: OpenTK.Mathematics.Box2i.Extended(OpenTK.Mathematics.Vector2i) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Extended - path: opentk/src/OpenTK.Mathematics/Geometry/Box2i.cs - startLine: 536 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2i.cs + startLine: 535 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1725,7 +1541,7 @@ items: content: >- [Pure] - public Box2i Extended(Vector2i point) + public readonly Box2i Extended(Vector2i point) parameters: - id: point type: OpenTK.Mathematics.Vector2i @@ -1754,13 +1570,9 @@ items: fullName: OpenTK.Mathematics.Box2i.operator ==(OpenTK.Mathematics.Box2i, OpenTK.Mathematics.Box2i) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Equality - path: opentk/src/OpenTK.Mathematics/Geometry/Box2i.cs - startLine: 550 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2i.cs + startLine: 549 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1794,13 +1606,9 @@ items: fullName: OpenTK.Mathematics.Box2i.operator !=(OpenTK.Mathematics.Box2i, OpenTK.Mathematics.Box2i) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Inequality - path: opentk/src/OpenTK.Mathematics/Geometry/Box2i.cs - startLine: 560 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2i.cs + startLine: 559 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1834,13 +1642,9 @@ items: fullName: OpenTK.Mathematics.Box2i.explicit operator System.Drawing.Rectangle(OpenTK.Mathematics.Box2i) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Explicit - path: opentk/src/OpenTK.Mathematics/Geometry/Box2i.cs - startLine: 569 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2i.cs + startLine: 568 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1881,13 +1685,9 @@ items: fullName: OpenTK.Mathematics.Box2i.Equals(object) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Equals - path: opentk/src/OpenTK.Mathematics/Geometry/Box2i.cs - startLine: 576 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2i.cs + startLine: 575 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1920,13 +1720,9 @@ items: fullName: OpenTK.Mathematics.Box2i.Equals(OpenTK.Mathematics.Box2i) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Equals - path: opentk/src/OpenTK.Mathematics/Geometry/Box2i.cs - startLine: 582 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2i.cs + startLine: 581 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1957,20 +1753,16 @@ items: fullName: OpenTK.Mathematics.Box2i.GetHashCode() type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetHashCode - path: opentk/src/OpenTK.Mathematics/Geometry/Box2i.cs - startLine: 589 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2i.cs + startLine: 588 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Returns the hash code for this instance. example: [] syntax: - content: public override int GetHashCode() + content: public override readonly int GetHashCode() return: type: System.Int32 description: A 32-bit signed integer that is the hash code for this instance. @@ -1989,13 +1781,9 @@ items: fullName: OpenTK.Mathematics.Box2i.ToString() type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Mathematics/Geometry/Box2i.cs - startLine: 595 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2i.cs + startLine: 594 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2021,13 +1809,9 @@ items: fullName: OpenTK.Mathematics.Box2i.ToString(string) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Mathematics/Geometry/Box2i.cs - startLine: 601 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2i.cs + startLine: 600 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2064,13 +1848,9 @@ items: fullName: OpenTK.Mathematics.Box2i.ToString(System.IFormatProvider) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Mathematics/Geometry/Box2i.cs - startLine: 607 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2i.cs + startLine: 606 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2104,13 +1884,9 @@ items: fullName: OpenTK.Mathematics.Box2i.ToString(string, System.IFormatProvider) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box2i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Mathematics/Geometry/Box2i.cs - startLine: 613 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box2i.cs + startLine: 612 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics diff --git a/api/OpenTK.Mathematics.Box3.yml b/api/OpenTK.Mathematics.Box3.yml index 6c15f1f0..fa340ef8 100644 --- a/api/OpenTK.Mathematics.Box3.yml +++ b/api/OpenTK.Mathematics.Box3.yml @@ -75,13 +75,9 @@ items: fullName: OpenTK.Mathematics.Box3 type: Struct source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Box3 - path: opentk/src/OpenTK.Mathematics/Geometry/Box3.cs - startLine: 20 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3.cs + startLine: 19 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -119,20 +115,16 @@ items: fullName: OpenTK.Mathematics.Box3.Min type: Property source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Min - path: opentk/src/OpenTK.Mathematics/Geometry/Box3.cs - startLine: 29 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3.cs + startLine: 28 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the minimum boundary of the structure. example: [] syntax: - content: public Vector3 Min { get; set; } + content: public Vector3 Min { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector3 @@ -150,20 +142,16 @@ items: fullName: OpenTK.Mathematics.Box3.Max type: Property source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Max - path: opentk/src/OpenTK.Mathematics/Geometry/Box3.cs - startLine: 56 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3.cs + startLine: 55 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the maximum boundary of the structure. example: [] syntax: - content: public Vector3 Max { get; set; } + content: public Vector3 Max { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector3 @@ -181,13 +169,9 @@ items: fullName: OpenTK.Mathematics.Box3.Box3(OpenTK.Mathematics.Vector3, OpenTK.Mathematics.Vector3) type: Constructor source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Mathematics/Geometry/Box3.cs - startLine: 83 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3.cs + startLine: 82 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -219,13 +203,9 @@ items: fullName: OpenTK.Mathematics.Box3.Box3(float, float, float, float, float, float) type: Constructor source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Mathematics/Geometry/Box3.cs - startLine: 98 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3.cs + startLine: 97 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -269,13 +249,9 @@ items: fullName: OpenTK.Mathematics.Box3.CenteredSize type: Property source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CenteredSize - path: opentk/src/OpenTK.Mathematics/Geometry/Box3.cs - startLine: 106 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3.cs + startLine: 105 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -300,13 +276,9 @@ items: fullName: OpenTK.Mathematics.Box3.HalfSize type: Property source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: HalfSize - path: opentk/src/OpenTK.Mathematics/Geometry/Box3.cs - startLine: 120 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3.cs + startLine: 119 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -331,13 +303,9 @@ items: fullName: OpenTK.Mathematics.Box3.Center type: Property source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Center - path: opentk/src/OpenTK.Mathematics/Geometry/Box3.cs - startLine: 130 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3.cs + startLine: 129 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -362,13 +330,9 @@ items: fullName: OpenTK.Mathematics.Box3.Width type: Property source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Width - path: opentk/src/OpenTK.Mathematics/Geometry/Box3.cs - startLine: 142 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3.cs + startLine: 141 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -393,13 +357,9 @@ items: fullName: OpenTK.Mathematics.Box3.Height type: Property source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Height - path: opentk/src/OpenTK.Mathematics/Geometry/Box3.cs - startLine: 151 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3.cs + startLine: 150 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -424,13 +384,9 @@ items: fullName: OpenTK.Mathematics.Box3.Depth type: Property source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Depth - path: opentk/src/OpenTK.Mathematics/Geometry/Box3.cs - startLine: 160 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3.cs + startLine: 159 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -455,13 +411,9 @@ items: fullName: OpenTK.Mathematics.Box3.Left type: Property source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Left - path: opentk/src/OpenTK.Mathematics/Geometry/Box3.cs - startLine: 169 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3.cs + startLine: 168 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -486,13 +438,9 @@ items: fullName: OpenTK.Mathematics.Box3.Top type: Property source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Top - path: opentk/src/OpenTK.Mathematics/Geometry/Box3.cs - startLine: 178 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3.cs + startLine: 177 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -517,13 +465,9 @@ items: fullName: OpenTK.Mathematics.Box3.Right type: Property source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Right - path: opentk/src/OpenTK.Mathematics/Geometry/Box3.cs - startLine: 187 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3.cs + startLine: 186 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -548,13 +492,9 @@ items: fullName: OpenTK.Mathematics.Box3.Bottom type: Property source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Bottom - path: opentk/src/OpenTK.Mathematics/Geometry/Box3.cs - startLine: 196 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3.cs + startLine: 195 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -579,13 +519,9 @@ items: fullName: OpenTK.Mathematics.Box3.Front type: Property source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Front - path: opentk/src/OpenTK.Mathematics/Geometry/Box3.cs - startLine: 205 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3.cs + startLine: 204 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -610,13 +546,9 @@ items: fullName: OpenTK.Mathematics.Box3.Back type: Property source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Back - path: opentk/src/OpenTK.Mathematics/Geometry/Box3.cs - startLine: 214 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3.cs + startLine: 213 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -641,13 +573,9 @@ items: fullName: OpenTK.Mathematics.Box3.X type: Property source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: X - path: opentk/src/OpenTK.Mathematics/Geometry/Box3.cs - startLine: 223 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3.cs + startLine: 222 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -672,13 +600,9 @@ items: fullName: OpenTK.Mathematics.Box3.Y type: Property source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Y - path: opentk/src/OpenTK.Mathematics/Geometry/Box3.cs - startLine: 232 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3.cs + startLine: 231 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -703,13 +627,9 @@ items: fullName: OpenTK.Mathematics.Box3.Z type: Property source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Z - path: opentk/src/OpenTK.Mathematics/Geometry/Box3.cs - startLine: 241 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3.cs + startLine: 240 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -734,13 +654,9 @@ items: fullName: OpenTK.Mathematics.Box3.SizeX type: Property source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SizeX - path: opentk/src/OpenTK.Mathematics/Geometry/Box3.cs - startLine: 250 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3.cs + startLine: 249 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -765,13 +681,9 @@ items: fullName: OpenTK.Mathematics.Box3.SizeY type: Property source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SizeY - path: opentk/src/OpenTK.Mathematics/Geometry/Box3.cs - startLine: 259 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3.cs + startLine: 258 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -796,13 +708,9 @@ items: fullName: OpenTK.Mathematics.Box3.SizeZ type: Property source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SizeZ - path: opentk/src/OpenTK.Mathematics/Geometry/Box3.cs - startLine: 268 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3.cs + startLine: 267 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -827,13 +735,9 @@ items: fullName: OpenTK.Mathematics.Box3.Size type: Property source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Size - path: opentk/src/OpenTK.Mathematics/Geometry/Box3.cs - startLine: 277 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3.cs + startLine: 276 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -858,13 +762,9 @@ items: fullName: OpenTK.Mathematics.Box3.Location type: Property source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Location - path: opentk/src/OpenTK.Mathematics/Geometry/Box3.cs - startLine: 291 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3.cs + startLine: 290 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -889,13 +789,9 @@ items: fullName: OpenTK.Mathematics.Box3.IsZero type: Property source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: IsZero - path: opentk/src/OpenTK.Mathematics/Geometry/Box3.cs - startLine: 296 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3.cs + startLine: 295 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -920,13 +816,9 @@ items: fullName: OpenTK.Mathematics.Box3.Empty type: Field source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Empty - path: opentk/src/OpenTK.Mathematics/Geometry/Box3.cs - startLine: 302 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3.cs + startLine: 301 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -949,13 +841,9 @@ items: fullName: OpenTK.Mathematics.Box3.UnitSquare type: Field source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: UnitSquare - path: opentk/src/OpenTK.Mathematics/Geometry/Box3.cs - startLine: 307 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3.cs + startLine: 306 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -978,13 +866,9 @@ items: fullName: OpenTK.Mathematics.Box3.FromSize(OpenTK.Mathematics.Vector3, OpenTK.Mathematics.Vector3) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: FromSize - path: opentk/src/OpenTK.Mathematics/Geometry/Box3.cs - startLine: 315 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3.cs + startLine: 314 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1016,13 +900,9 @@ items: fullName: OpenTK.Mathematics.Box3.FromPositions(OpenTK.Mathematics.Vector3, OpenTK.Mathematics.Vector3) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: FromPositions - path: opentk/src/OpenTK.Mathematics/Geometry/Box3.cs - startLine: 326 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3.cs + startLine: 325 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1054,13 +934,9 @@ items: fullName: OpenTK.Mathematics.Box3.FromPositions(float, float, float, float, float, float) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: FromPositions - path: opentk/src/OpenTK.Mathematics/Geometry/Box3.cs - startLine: 341 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3.cs + startLine: 340 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1107,13 +983,9 @@ items: fullName: OpenTK.Mathematics.Box3.Intersect(OpenTK.Mathematics.Box3) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Intersect - path: opentk/src/OpenTK.Mathematics/Geometry/Box3.cs - startLine: 350 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3.cs + startLine: 349 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1139,13 +1011,9 @@ items: fullName: OpenTK.Mathematics.Box3.Intersect(OpenTK.Mathematics.Box3, OpenTK.Mathematics.Box3) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Intersect - path: opentk/src/OpenTK.Mathematics/Geometry/Box3.cs - startLine: 368 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3.cs + startLine: 367 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1177,13 +1045,9 @@ items: fullName: OpenTK.Mathematics.Box3.Intersected(OpenTK.Mathematics.Box3) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Intersected - path: opentk/src/OpenTK.Mathematics/Geometry/Box3.cs - startLine: 390 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3.cs + startLine: 389 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1212,13 +1076,9 @@ items: fullName: OpenTK.Mathematics.Box3.IntersectsWith(OpenTK.Mathematics.Box3) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: IntersectsWith - path: opentk/src/OpenTK.Mathematics/Geometry/Box3.cs - startLine: 400 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3.cs + startLine: 399 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1247,13 +1107,9 @@ items: fullName: OpenTK.Mathematics.Box3.TouchWith(OpenTK.Mathematics.Box3) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TouchWith - path: opentk/src/OpenTK.Mathematics/Geometry/Box3.cs - startLine: 415 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3.cs + startLine: 414 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1282,13 +1138,9 @@ items: fullName: OpenTK.Mathematics.Box3.Union(OpenTK.Mathematics.Box3, OpenTK.Mathematics.Box3) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Union - path: opentk/src/OpenTK.Mathematics/Geometry/Box3.cs - startLine: 431 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3.cs + startLine: 430 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1320,13 +1172,9 @@ items: fullName: OpenTK.Mathematics.Box3.Round(OpenTK.Mathematics.Box3) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Round - path: opentk/src/OpenTK.Mathematics/Geometry/Box3.cs - startLine: 448 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3.cs + startLine: 447 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1355,13 +1203,9 @@ items: fullName: OpenTK.Mathematics.Box3.Ceiling(OpenTK.Mathematics.Box3) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Ceiling - path: opentk/src/OpenTK.Mathematics/Geometry/Box3.cs - startLine: 464 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3.cs + startLine: 463 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1390,13 +1234,9 @@ items: fullName: OpenTK.Mathematics.Box3.Floor(OpenTK.Mathematics.Box3) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Floor - path: opentk/src/OpenTK.Mathematics/Geometry/Box3.cs - startLine: 481 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3.cs + startLine: 480 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1425,13 +1265,9 @@ items: fullName: OpenTK.Mathematics.Box3.Contains(OpenTK.Mathematics.Vector3) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Contains - path: opentk/src/OpenTK.Mathematics/Geometry/Box3.cs - startLine: 500 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3.cs + startLine: 499 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1443,7 +1279,7 @@ items: [Obsolete("This function excludes borders even though it's documentation says otherwise. Use ContainsInclusive and ContainsExclusive for the desired behaviour.")] - public bool Contains(Vector3 point) + public readonly bool Contains(Vector3 point) parameters: - id: point type: OpenTK.Mathematics.Vector3 @@ -1479,13 +1315,9 @@ items: fullName: OpenTK.Mathematics.Box3.ContainsInclusive(OpenTK.Mathematics.Vector3) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ContainsInclusive - path: opentk/src/OpenTK.Mathematics/Geometry/Box3.cs - startLine: 514 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3.cs + startLine: 513 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1495,7 +1327,7 @@ items: content: >- [Pure] - public bool ContainsInclusive(Vector3 point) + public readonly bool ContainsInclusive(Vector3 point) parameters: - id: point type: OpenTK.Mathematics.Vector3 @@ -1524,13 +1356,9 @@ items: fullName: OpenTK.Mathematics.Box3.ContainsExclusive(OpenTK.Mathematics.Vector3) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ContainsExclusive - path: opentk/src/OpenTK.Mathematics/Geometry/Box3.cs - startLine: 527 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3.cs + startLine: 526 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1540,7 +1368,7 @@ items: content: >- [Pure] - public bool ContainsExclusive(Vector3 point) + public readonly bool ContainsExclusive(Vector3 point) parameters: - id: point type: OpenTK.Mathematics.Vector3 @@ -1569,13 +1397,9 @@ items: fullName: OpenTK.Mathematics.Box3.Contains(OpenTK.Mathematics.Vector3, bool) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Contains - path: opentk/src/OpenTK.Mathematics/Geometry/Box3.cs - startLine: 543 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3.cs + startLine: 542 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1620,13 +1444,9 @@ items: fullName: OpenTK.Mathematics.Box3.Contains(OpenTK.Mathematics.Box3) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Contains - path: opentk/src/OpenTK.Mathematics/Geometry/Box3.cs - startLine: 561 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3.cs + startLine: 560 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1636,7 +1456,7 @@ items: content: >- [Pure] - public bool Contains(Box3 other) + public readonly bool Contains(Box3 other) parameters: - id: other type: OpenTK.Mathematics.Box3 @@ -1665,13 +1485,9 @@ items: fullName: OpenTK.Mathematics.Box3.DistanceToNearestEdge(OpenTK.Mathematics.Vector3) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DistanceToNearestEdge - path: opentk/src/OpenTK.Mathematics/Geometry/Box3.cs - startLine: 574 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3.cs + startLine: 573 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1681,7 +1497,7 @@ items: content: >- [Pure] - public float DistanceToNearestEdge(Vector3 point) + public readonly float DistanceToNearestEdge(Vector3 point) parameters: - id: point type: OpenTK.Mathematics.Vector3 @@ -1710,13 +1526,9 @@ items: fullName: OpenTK.Mathematics.Box3.Translate(OpenTK.Mathematics.Vector3) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Translate - path: opentk/src/OpenTK.Mathematics/Geometry/Box3.cs - startLine: 588 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3.cs + startLine: 587 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1742,13 +1554,9 @@ items: fullName: OpenTK.Mathematics.Box3.Translated(OpenTK.Mathematics.Vector3) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Translated - path: opentk/src/OpenTK.Mathematics/Geometry/Box3.cs - startLine: 599 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3.cs + startLine: 598 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1758,7 +1566,7 @@ items: content: >- [Pure] - public Box3 Translated(Vector3 distance) + public readonly Box3 Translated(Vector3 distance) parameters: - id: distance type: OpenTK.Mathematics.Vector3 @@ -1787,13 +1595,9 @@ items: fullName: OpenTK.Mathematics.Box3.Scale(OpenTK.Mathematics.Vector3, OpenTK.Mathematics.Vector3) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Scale - path: opentk/src/OpenTK.Mathematics/Geometry/Box3.cs - startLine: 613 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3.cs + startLine: 612 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1822,13 +1626,9 @@ items: fullName: OpenTK.Mathematics.Box3.Scaled(OpenTK.Mathematics.Vector3, OpenTK.Mathematics.Vector3) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Scaled - path: opentk/src/OpenTK.Mathematics/Geometry/Box3.cs - startLine: 625 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3.cs + startLine: 624 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1838,7 +1638,7 @@ items: content: >- [Pure] - public Box3 Scaled(Vector3 scale, Vector3 anchor) + public readonly Box3 Scaled(Vector3 scale, Vector3 anchor) parameters: - id: scale type: OpenTK.Mathematics.Vector3 @@ -1870,13 +1670,9 @@ items: fullName: OpenTK.Mathematics.Box3.Inflate(OpenTK.Mathematics.Vector3) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Inflate - path: opentk/src/OpenTK.Mathematics/Geometry/Box3.cs - startLine: 639 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3.cs + startLine: 638 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1905,13 +1701,9 @@ items: fullName: OpenTK.Mathematics.Box3.Inflated(OpenTK.Mathematics.Vector3) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Inflated - path: opentk/src/OpenTK.Mathematics/Geometry/Box3.cs - startLine: 654 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3.cs + startLine: 653 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1924,7 +1716,7 @@ items: content: >- [Pure] - public Box3 Inflated(Vector3 size) + public readonly Box3 Inflated(Vector3 size) parameters: - id: size type: OpenTK.Mathematics.Vector3 @@ -1953,13 +1745,9 @@ items: fullName: OpenTK.Mathematics.Box3.Extend(OpenTK.Mathematics.Vector3) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Extend - path: opentk/src/OpenTK.Mathematics/Geometry/Box3.cs - startLine: 667 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3.cs + startLine: 666 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1985,13 +1773,9 @@ items: fullName: OpenTK.Mathematics.Box3.Extended(OpenTK.Mathematics.Vector3) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Extended - path: opentk/src/OpenTK.Mathematics/Geometry/Box3.cs - startLine: 678 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3.cs + startLine: 677 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2001,7 +1785,7 @@ items: content: >- [Pure] - public Box3 Extended(Vector3 point) + public readonly Box3 Extended(Vector3 point) parameters: - id: point type: OpenTK.Mathematics.Vector3 @@ -2030,13 +1814,9 @@ items: fullName: OpenTK.Mathematics.Box3.operator ==(OpenTK.Mathematics.Box3, OpenTK.Mathematics.Box3) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Equality - path: opentk/src/OpenTK.Mathematics/Geometry/Box3.cs - startLine: 692 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3.cs + startLine: 691 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2070,13 +1850,9 @@ items: fullName: OpenTK.Mathematics.Box3.operator !=(OpenTK.Mathematics.Box3, OpenTK.Mathematics.Box3) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Inequality - path: opentk/src/OpenTK.Mathematics/Geometry/Box3.cs - startLine: 702 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3.cs + startLine: 701 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2110,13 +1886,9 @@ items: fullName: OpenTK.Mathematics.Box3.Equals(object) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Equals - path: opentk/src/OpenTK.Mathematics/Geometry/Box3.cs - startLine: 708 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3.cs + startLine: 707 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2149,20 +1921,16 @@ items: fullName: OpenTK.Mathematics.Box3.Equals(OpenTK.Mathematics.Box3) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Equals - path: opentk/src/OpenTK.Mathematics/Geometry/Box3.cs - startLine: 714 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3.cs + startLine: 713 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Indicates whether the current object is equal to another object of the same type. example: [] syntax: - content: public bool Equals(Box3 other) + content: public readonly bool Equals(Box3 other) parameters: - id: other type: OpenTK.Mathematics.Box3 @@ -2186,20 +1954,16 @@ items: fullName: OpenTK.Mathematics.Box3.GetHashCode() type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetHashCode - path: opentk/src/OpenTK.Mathematics/Geometry/Box3.cs - startLine: 721 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3.cs + startLine: 720 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Returns the hash code for this instance. example: [] syntax: - content: public override int GetHashCode() + content: public override readonly int GetHashCode() return: type: System.Int32 description: A 32-bit signed integer that is the hash code for this instance. @@ -2218,13 +1982,9 @@ items: fullName: OpenTK.Mathematics.Box3.ToString() type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Mathematics/Geometry/Box3.cs - startLine: 727 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3.cs + startLine: 726 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2250,13 +2010,9 @@ items: fullName: OpenTK.Mathematics.Box3.ToString(string) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Mathematics/Geometry/Box3.cs - startLine: 733 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3.cs + startLine: 732 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2293,13 +2049,9 @@ items: fullName: OpenTK.Mathematics.Box3.ToString(System.IFormatProvider) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Mathematics/Geometry/Box3.cs - startLine: 739 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3.cs + startLine: 738 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2333,13 +2085,9 @@ items: fullName: OpenTK.Mathematics.Box3.ToString(string, System.IFormatProvider) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Mathematics/Geometry/Box3.cs - startLine: 745 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3.cs + startLine: 744 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics diff --git a/api/OpenTK.Mathematics.Box3d.yml b/api/OpenTK.Mathematics.Box3d.yml index 85ae6420..8ba032d0 100644 --- a/api/OpenTK.Mathematics.Box3d.yml +++ b/api/OpenTK.Mathematics.Box3d.yml @@ -75,13 +75,9 @@ items: fullName: OpenTK.Mathematics.Box3d type: Struct source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Box3d - path: opentk/src/OpenTK.Mathematics/Geometry/Box3d.cs - startLine: 20 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3d.cs + startLine: 19 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -119,20 +115,16 @@ items: fullName: OpenTK.Mathematics.Box3d.Min type: Property source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Min - path: opentk/src/OpenTK.Mathematics/Geometry/Box3d.cs - startLine: 29 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3d.cs + startLine: 28 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the minimum boundary of the structure. example: [] syntax: - content: public Vector3d Min { get; set; } + content: public Vector3d Min { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector3d @@ -150,20 +142,16 @@ items: fullName: OpenTK.Mathematics.Box3d.Max type: Property source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Max - path: opentk/src/OpenTK.Mathematics/Geometry/Box3d.cs - startLine: 56 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3d.cs + startLine: 55 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the maximum boundary of the structure. example: [] syntax: - content: public Vector3d Max { get; set; } + content: public Vector3d Max { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector3d @@ -181,13 +169,9 @@ items: fullName: OpenTK.Mathematics.Box3d.Box3d(OpenTK.Mathematics.Vector3d, OpenTK.Mathematics.Vector3d) type: Constructor source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Mathematics/Geometry/Box3d.cs - startLine: 83 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3d.cs + startLine: 82 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -219,13 +203,9 @@ items: fullName: OpenTK.Mathematics.Box3d.Box3d(double, double, double, double, double, double) type: Constructor source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Mathematics/Geometry/Box3d.cs - startLine: 98 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3d.cs + startLine: 97 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -269,13 +249,9 @@ items: fullName: OpenTK.Mathematics.Box3d.CenteredSize type: Property source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CenteredSize - path: opentk/src/OpenTK.Mathematics/Geometry/Box3d.cs - startLine: 106 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3d.cs + startLine: 105 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -300,13 +276,9 @@ items: fullName: OpenTK.Mathematics.Box3d.HalfSize type: Property source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: HalfSize - path: opentk/src/OpenTK.Mathematics/Geometry/Box3d.cs - startLine: 120 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3d.cs + startLine: 119 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -331,13 +303,9 @@ items: fullName: OpenTK.Mathematics.Box3d.Center type: Property source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Center - path: opentk/src/OpenTK.Mathematics/Geometry/Box3d.cs - startLine: 130 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3d.cs + startLine: 129 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -362,13 +330,9 @@ items: fullName: OpenTK.Mathematics.Box3d.Width type: Property source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Width - path: opentk/src/OpenTK.Mathematics/Geometry/Box3d.cs - startLine: 142 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3d.cs + startLine: 141 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -393,13 +357,9 @@ items: fullName: OpenTK.Mathematics.Box3d.Height type: Property source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Height - path: opentk/src/OpenTK.Mathematics/Geometry/Box3d.cs - startLine: 151 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3d.cs + startLine: 150 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -424,13 +384,9 @@ items: fullName: OpenTK.Mathematics.Box3d.Depth type: Property source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Depth - path: opentk/src/OpenTK.Mathematics/Geometry/Box3d.cs - startLine: 160 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3d.cs + startLine: 159 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -455,13 +411,9 @@ items: fullName: OpenTK.Mathematics.Box3d.Left type: Property source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Left - path: opentk/src/OpenTK.Mathematics/Geometry/Box3d.cs - startLine: 169 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3d.cs + startLine: 168 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -486,13 +438,9 @@ items: fullName: OpenTK.Mathematics.Box3d.Top type: Property source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Top - path: opentk/src/OpenTK.Mathematics/Geometry/Box3d.cs - startLine: 178 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3d.cs + startLine: 177 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -517,13 +465,9 @@ items: fullName: OpenTK.Mathematics.Box3d.Right type: Property source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Right - path: opentk/src/OpenTK.Mathematics/Geometry/Box3d.cs - startLine: 187 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3d.cs + startLine: 186 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -548,13 +492,9 @@ items: fullName: OpenTK.Mathematics.Box3d.Bottom type: Property source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Bottom - path: opentk/src/OpenTK.Mathematics/Geometry/Box3d.cs - startLine: 196 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3d.cs + startLine: 195 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -579,13 +519,9 @@ items: fullName: OpenTK.Mathematics.Box3d.Front type: Property source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Front - path: opentk/src/OpenTK.Mathematics/Geometry/Box3d.cs - startLine: 205 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3d.cs + startLine: 204 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -610,13 +546,9 @@ items: fullName: OpenTK.Mathematics.Box3d.Back type: Property source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Back - path: opentk/src/OpenTK.Mathematics/Geometry/Box3d.cs - startLine: 214 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3d.cs + startLine: 213 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -641,13 +573,9 @@ items: fullName: OpenTK.Mathematics.Box3d.X type: Property source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: X - path: opentk/src/OpenTK.Mathematics/Geometry/Box3d.cs - startLine: 223 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3d.cs + startLine: 222 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -672,13 +600,9 @@ items: fullName: OpenTK.Mathematics.Box3d.Y type: Property source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Y - path: opentk/src/OpenTK.Mathematics/Geometry/Box3d.cs - startLine: 232 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3d.cs + startLine: 231 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -703,13 +627,9 @@ items: fullName: OpenTK.Mathematics.Box3d.Z type: Property source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Z - path: opentk/src/OpenTK.Mathematics/Geometry/Box3d.cs - startLine: 241 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3d.cs + startLine: 240 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -734,13 +654,9 @@ items: fullName: OpenTK.Mathematics.Box3d.SizeX type: Property source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SizeX - path: opentk/src/OpenTK.Mathematics/Geometry/Box3d.cs - startLine: 250 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3d.cs + startLine: 249 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -765,13 +681,9 @@ items: fullName: OpenTK.Mathematics.Box3d.SizeY type: Property source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SizeY - path: opentk/src/OpenTK.Mathematics/Geometry/Box3d.cs - startLine: 259 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3d.cs + startLine: 258 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -796,13 +708,9 @@ items: fullName: OpenTK.Mathematics.Box3d.SizeZ type: Property source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SizeZ - path: opentk/src/OpenTK.Mathematics/Geometry/Box3d.cs - startLine: 268 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3d.cs + startLine: 267 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -827,13 +735,9 @@ items: fullName: OpenTK.Mathematics.Box3d.Size type: Property source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Size - path: opentk/src/OpenTK.Mathematics/Geometry/Box3d.cs - startLine: 277 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3d.cs + startLine: 276 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -858,13 +762,9 @@ items: fullName: OpenTK.Mathematics.Box3d.Location type: Property source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Location - path: opentk/src/OpenTK.Mathematics/Geometry/Box3d.cs - startLine: 291 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3d.cs + startLine: 290 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -889,13 +789,9 @@ items: fullName: OpenTK.Mathematics.Box3d.IsZero type: Property source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: IsZero - path: opentk/src/OpenTK.Mathematics/Geometry/Box3d.cs - startLine: 296 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3d.cs + startLine: 295 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -920,13 +816,9 @@ items: fullName: OpenTK.Mathematics.Box3d.Empty type: Field source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Empty - path: opentk/src/OpenTK.Mathematics/Geometry/Box3d.cs - startLine: 302 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3d.cs + startLine: 301 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -949,13 +841,9 @@ items: fullName: OpenTK.Mathematics.Box3d.UnitSquare type: Field source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: UnitSquare - path: opentk/src/OpenTK.Mathematics/Geometry/Box3d.cs - startLine: 307 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3d.cs + startLine: 306 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -978,13 +866,9 @@ items: fullName: OpenTK.Mathematics.Box3d.FromSize(OpenTK.Mathematics.Vector3d, OpenTK.Mathematics.Vector3d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: FromSize - path: opentk/src/OpenTK.Mathematics/Geometry/Box3d.cs - startLine: 315 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3d.cs + startLine: 314 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1016,13 +900,9 @@ items: fullName: OpenTK.Mathematics.Box3d.FromPositions(OpenTK.Mathematics.Vector3d, OpenTK.Mathematics.Vector3d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: FromPositions - path: opentk/src/OpenTK.Mathematics/Geometry/Box3d.cs - startLine: 326 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3d.cs + startLine: 325 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1054,13 +934,9 @@ items: fullName: OpenTK.Mathematics.Box3d.FromPositions(double, double, double, double, double, double) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: FromPositions - path: opentk/src/OpenTK.Mathematics/Geometry/Box3d.cs - startLine: 341 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3d.cs + startLine: 340 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1107,13 +983,9 @@ items: fullName: OpenTK.Mathematics.Box3d.Intersect(OpenTK.Mathematics.Box3d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Intersect - path: opentk/src/OpenTK.Mathematics/Geometry/Box3d.cs - startLine: 350 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3d.cs + startLine: 349 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1139,13 +1011,9 @@ items: fullName: OpenTK.Mathematics.Box3d.Intersect(OpenTK.Mathematics.Box3d, OpenTK.Mathematics.Box3d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Intersect - path: opentk/src/OpenTK.Mathematics/Geometry/Box3d.cs - startLine: 368 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3d.cs + startLine: 367 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1177,13 +1045,9 @@ items: fullName: OpenTK.Mathematics.Box3d.Intersected(OpenTK.Mathematics.Box3d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Intersected - path: opentk/src/OpenTK.Mathematics/Geometry/Box3d.cs - startLine: 390 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3d.cs + startLine: 389 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1212,13 +1076,9 @@ items: fullName: OpenTK.Mathematics.Box3d.IntersectsWith(OpenTK.Mathematics.Box3d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: IntersectsWith - path: opentk/src/OpenTK.Mathematics/Geometry/Box3d.cs - startLine: 400 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3d.cs + startLine: 399 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1247,13 +1107,9 @@ items: fullName: OpenTK.Mathematics.Box3d.TouchWith(OpenTK.Mathematics.Box3d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TouchWith - path: opentk/src/OpenTK.Mathematics/Geometry/Box3d.cs - startLine: 415 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3d.cs + startLine: 414 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1282,13 +1138,9 @@ items: fullName: OpenTK.Mathematics.Box3d.Union(OpenTK.Mathematics.Box3d, OpenTK.Mathematics.Box3d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Union - path: opentk/src/OpenTK.Mathematics/Geometry/Box3d.cs - startLine: 431 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3d.cs + startLine: 430 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1320,13 +1172,9 @@ items: fullName: OpenTK.Mathematics.Box3d.Round(OpenTK.Mathematics.Box3d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Round - path: opentk/src/OpenTK.Mathematics/Geometry/Box3d.cs - startLine: 448 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3d.cs + startLine: 447 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1355,13 +1203,9 @@ items: fullName: OpenTK.Mathematics.Box3d.Ceiling(OpenTK.Mathematics.Box3d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Ceiling - path: opentk/src/OpenTK.Mathematics/Geometry/Box3d.cs - startLine: 464 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3d.cs + startLine: 463 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1390,13 +1234,9 @@ items: fullName: OpenTK.Mathematics.Box3d.Floor(OpenTK.Mathematics.Box3d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Floor - path: opentk/src/OpenTK.Mathematics/Geometry/Box3d.cs - startLine: 481 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3d.cs + startLine: 480 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1425,13 +1265,9 @@ items: fullName: OpenTK.Mathematics.Box3d.Contains(OpenTK.Mathematics.Vector3d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Contains - path: opentk/src/OpenTK.Mathematics/Geometry/Box3d.cs - startLine: 500 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3d.cs + startLine: 499 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1443,7 +1279,7 @@ items: [Obsolete("This function excludes borders even though it's documentation says otherwise. Use ContainsInclusive and ContainsExclusive for the desired behaviour.")] - public bool Contains(Vector3d point) + public readonly bool Contains(Vector3d point) parameters: - id: point type: OpenTK.Mathematics.Vector3d @@ -1479,13 +1315,9 @@ items: fullName: OpenTK.Mathematics.Box3d.ContainsInclusive(OpenTK.Mathematics.Vector3d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ContainsInclusive - path: opentk/src/OpenTK.Mathematics/Geometry/Box3d.cs - startLine: 514 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3d.cs + startLine: 513 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1495,7 +1327,7 @@ items: content: >- [Pure] - public bool ContainsInclusive(Vector3d point) + public readonly bool ContainsInclusive(Vector3d point) parameters: - id: point type: OpenTK.Mathematics.Vector3d @@ -1524,13 +1356,9 @@ items: fullName: OpenTK.Mathematics.Box3d.ContainsExclusive(OpenTK.Mathematics.Vector3d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ContainsExclusive - path: opentk/src/OpenTK.Mathematics/Geometry/Box3d.cs - startLine: 527 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3d.cs + startLine: 526 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1540,7 +1368,7 @@ items: content: >- [Pure] - public bool ContainsExclusive(Vector3d point) + public readonly bool ContainsExclusive(Vector3d point) parameters: - id: point type: OpenTK.Mathematics.Vector3d @@ -1569,13 +1397,9 @@ items: fullName: OpenTK.Mathematics.Box3d.Contains(OpenTK.Mathematics.Vector3d, bool) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Contains - path: opentk/src/OpenTK.Mathematics/Geometry/Box3d.cs - startLine: 543 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3d.cs + startLine: 542 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1620,13 +1444,9 @@ items: fullName: OpenTK.Mathematics.Box3d.Contains(OpenTK.Mathematics.Box3d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Contains - path: opentk/src/OpenTK.Mathematics/Geometry/Box3d.cs - startLine: 561 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3d.cs + startLine: 560 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1636,7 +1456,7 @@ items: content: >- [Pure] - public bool Contains(Box3d other) + public readonly bool Contains(Box3d other) parameters: - id: other type: OpenTK.Mathematics.Box3d @@ -1665,13 +1485,9 @@ items: fullName: OpenTK.Mathematics.Box3d.DistanceToNearestEdge(OpenTK.Mathematics.Vector3d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DistanceToNearestEdge - path: opentk/src/OpenTK.Mathematics/Geometry/Box3d.cs - startLine: 574 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3d.cs + startLine: 573 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1681,7 +1497,7 @@ items: content: >- [Pure] - public double DistanceToNearestEdge(Vector3d point) + public readonly double DistanceToNearestEdge(Vector3d point) parameters: - id: point type: OpenTK.Mathematics.Vector3d @@ -1710,13 +1526,9 @@ items: fullName: OpenTK.Mathematics.Box3d.Translate(OpenTK.Mathematics.Vector3d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Translate - path: opentk/src/OpenTK.Mathematics/Geometry/Box3d.cs - startLine: 588 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3d.cs + startLine: 587 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1742,13 +1554,9 @@ items: fullName: OpenTK.Mathematics.Box3d.Translated(OpenTK.Mathematics.Vector3d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Translated - path: opentk/src/OpenTK.Mathematics/Geometry/Box3d.cs - startLine: 599 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3d.cs + startLine: 598 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1758,7 +1566,7 @@ items: content: >- [Pure] - public Box3d Translated(Vector3d distance) + public readonly Box3d Translated(Vector3d distance) parameters: - id: distance type: OpenTK.Mathematics.Vector3d @@ -1787,13 +1595,9 @@ items: fullName: OpenTK.Mathematics.Box3d.Scale(OpenTK.Mathematics.Vector3d, OpenTK.Mathematics.Vector3d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Scale - path: opentk/src/OpenTK.Mathematics/Geometry/Box3d.cs - startLine: 613 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3d.cs + startLine: 612 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1822,13 +1626,9 @@ items: fullName: OpenTK.Mathematics.Box3d.Scaled(OpenTK.Mathematics.Vector3d, OpenTK.Mathematics.Vector3d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Scaled - path: opentk/src/OpenTK.Mathematics/Geometry/Box3d.cs - startLine: 625 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3d.cs + startLine: 624 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1838,7 +1638,7 @@ items: content: >- [Pure] - public Box3d Scaled(Vector3d scale, Vector3d anchor) + public readonly Box3d Scaled(Vector3d scale, Vector3d anchor) parameters: - id: scale type: OpenTK.Mathematics.Vector3d @@ -1870,13 +1670,9 @@ items: fullName: OpenTK.Mathematics.Box3d.Inflate(OpenTK.Mathematics.Vector3d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Inflate - path: opentk/src/OpenTK.Mathematics/Geometry/Box3d.cs - startLine: 639 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3d.cs + startLine: 638 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1905,13 +1701,9 @@ items: fullName: OpenTK.Mathematics.Box3d.Inflated(OpenTK.Mathematics.Vector3d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Inflated - path: opentk/src/OpenTK.Mathematics/Geometry/Box3d.cs - startLine: 652 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3d.cs + startLine: 651 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1924,7 +1716,7 @@ items: content: >- [Pure] - public Box3d Inflated(Vector3d size) + public readonly Box3d Inflated(Vector3d size) parameters: - id: size type: OpenTK.Mathematics.Vector3d @@ -1953,13 +1745,9 @@ items: fullName: OpenTK.Mathematics.Box3d.Extend(OpenTK.Mathematics.Vector3d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Extend - path: opentk/src/OpenTK.Mathematics/Geometry/Box3d.cs - startLine: 665 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3d.cs + startLine: 664 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1985,13 +1773,9 @@ items: fullName: OpenTK.Mathematics.Box3d.Extended(OpenTK.Mathematics.Vector3d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Extended - path: opentk/src/OpenTK.Mathematics/Geometry/Box3d.cs - startLine: 676 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3d.cs + startLine: 675 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2001,7 +1785,7 @@ items: content: >- [Pure] - public Box3d Extended(Vector3d point) + public readonly Box3d Extended(Vector3d point) parameters: - id: point type: OpenTK.Mathematics.Vector3d @@ -2030,13 +1814,9 @@ items: fullName: OpenTK.Mathematics.Box3d.operator ==(OpenTK.Mathematics.Box3d, OpenTK.Mathematics.Box3d) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Equality - path: opentk/src/OpenTK.Mathematics/Geometry/Box3d.cs - startLine: 690 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3d.cs + startLine: 689 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2070,13 +1850,9 @@ items: fullName: OpenTK.Mathematics.Box3d.operator !=(OpenTK.Mathematics.Box3d, OpenTK.Mathematics.Box3d) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Inequality - path: opentk/src/OpenTK.Mathematics/Geometry/Box3d.cs - startLine: 700 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3d.cs + startLine: 699 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2110,13 +1886,9 @@ items: fullName: OpenTK.Mathematics.Box3d.Equals(object) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Equals - path: opentk/src/OpenTK.Mathematics/Geometry/Box3d.cs - startLine: 706 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3d.cs + startLine: 705 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2149,13 +1921,9 @@ items: fullName: OpenTK.Mathematics.Box3d.Equals(OpenTK.Mathematics.Box3d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Equals - path: opentk/src/OpenTK.Mathematics/Geometry/Box3d.cs - startLine: 712 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3d.cs + startLine: 711 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2186,20 +1954,16 @@ items: fullName: OpenTK.Mathematics.Box3d.GetHashCode() type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetHashCode - path: opentk/src/OpenTK.Mathematics/Geometry/Box3d.cs - startLine: 719 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3d.cs + startLine: 718 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Returns the hash code for this instance. example: [] syntax: - content: public override int GetHashCode() + content: public override readonly int GetHashCode() return: type: System.Int32 description: A 32-bit signed integer that is the hash code for this instance. @@ -2218,13 +1982,9 @@ items: fullName: OpenTK.Mathematics.Box3d.ToString() type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Mathematics/Geometry/Box3d.cs - startLine: 725 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3d.cs + startLine: 724 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2250,13 +2010,9 @@ items: fullName: OpenTK.Mathematics.Box3d.ToString(string) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Mathematics/Geometry/Box3d.cs - startLine: 731 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3d.cs + startLine: 730 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2293,13 +2049,9 @@ items: fullName: OpenTK.Mathematics.Box3d.ToString(System.IFormatProvider) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Mathematics/Geometry/Box3d.cs - startLine: 737 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3d.cs + startLine: 736 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2333,13 +2085,9 @@ items: fullName: OpenTK.Mathematics.Box3d.ToString(string, System.IFormatProvider) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Mathematics/Geometry/Box3d.cs - startLine: 743 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3d.cs + startLine: 742 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics diff --git a/api/OpenTK.Mathematics.Box3i.yml b/api/OpenTK.Mathematics.Box3i.yml index c0e1779b..830eb239 100644 --- a/api/OpenTK.Mathematics.Box3i.yml +++ b/api/OpenTK.Mathematics.Box3i.yml @@ -72,13 +72,9 @@ items: fullName: OpenTK.Mathematics.Box3i type: Struct source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Box3i - path: opentk/src/OpenTK.Mathematics/Geometry/Box3i.cs - startLine: 20 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3i.cs + startLine: 19 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -116,13 +112,9 @@ items: fullName: OpenTK.Mathematics.Box3i.Empty type: Field source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Empty - path: opentk/src/OpenTK.Mathematics/Geometry/Box3i.cs - startLine: 27 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3i.cs + startLine: 26 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -145,20 +137,16 @@ items: fullName: OpenTK.Mathematics.Box3i.Min type: Property source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Min - path: opentk/src/OpenTK.Mathematics/Geometry/Box3i.cs - startLine: 34 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3i.cs + startLine: 33 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the minimum boundary of the structure. example: [] syntax: - content: public Vector3i Min { get; set; } + content: public Vector3i Min { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector3i @@ -176,20 +164,16 @@ items: fullName: OpenTK.Mathematics.Box3i.Max type: Property source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Max - path: opentk/src/OpenTK.Mathematics/Geometry/Box3i.cs - startLine: 49 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3i.cs + startLine: 48 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the maximum boundary of the structure. example: [] syntax: - content: public Vector3i Max { get; set; } + content: public Vector3i Max { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector3i @@ -207,13 +191,9 @@ items: fullName: OpenTK.Mathematics.Box3i.Box3i(OpenTK.Mathematics.Vector3i, OpenTK.Mathematics.Vector3i) type: Constructor source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Mathematics/Geometry/Box3i.cs - startLine: 64 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3i.cs + startLine: 63 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -245,13 +225,9 @@ items: fullName: OpenTK.Mathematics.Box3i.Box3i(int, int, int, int, int, int) type: Constructor source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Mathematics/Geometry/Box3i.cs - startLine: 79 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3i.cs + startLine: 78 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -295,13 +271,9 @@ items: fullName: OpenTK.Mathematics.Box3i.CenteredSize type: Property source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CenteredSize - path: opentk/src/OpenTK.Mathematics/Geometry/Box3i.cs - startLine: 87 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3i.cs + startLine: 86 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -326,13 +298,9 @@ items: fullName: OpenTK.Mathematics.Box3i.HalfSize type: Property source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: HalfSize - path: opentk/src/OpenTK.Mathematics/Geometry/Box3i.cs - startLine: 95 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3i.cs + startLine: 94 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -357,20 +325,16 @@ items: fullName: OpenTK.Mathematics.Box3i.Center type: Property source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Center - path: opentk/src/OpenTK.Mathematics/Geometry/Box3i.cs - startLine: 111 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3i.cs + startLine: 110 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets a vector describing the center of the box. example: [] syntax: - content: public Vector3 Center { get; } + content: public readonly Vector3 Center { get; } parameters: [] return: type: OpenTK.Mathematics.Vector3 @@ -388,13 +352,9 @@ items: fullName: OpenTK.Mathematics.Box3i.Width type: Property source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Width - path: opentk/src/OpenTK.Mathematics/Geometry/Box3i.cs - startLine: 122 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3i.cs + startLine: 121 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -419,13 +379,9 @@ items: fullName: OpenTK.Mathematics.Box3i.Height type: Property source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Height - path: opentk/src/OpenTK.Mathematics/Geometry/Box3i.cs - startLine: 131 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3i.cs + startLine: 130 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -450,13 +406,9 @@ items: fullName: OpenTK.Mathematics.Box3i.Depth type: Property source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Depth - path: opentk/src/OpenTK.Mathematics/Geometry/Box3i.cs - startLine: 140 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3i.cs + startLine: 139 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -481,13 +433,9 @@ items: fullName: OpenTK.Mathematics.Box3i.Left type: Property source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Left - path: opentk/src/OpenTK.Mathematics/Geometry/Box3i.cs - startLine: 149 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3i.cs + startLine: 148 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -512,13 +460,9 @@ items: fullName: OpenTK.Mathematics.Box3i.Top type: Property source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Top - path: opentk/src/OpenTK.Mathematics/Geometry/Box3i.cs - startLine: 158 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3i.cs + startLine: 157 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -543,13 +487,9 @@ items: fullName: OpenTK.Mathematics.Box3i.Right type: Property source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Right - path: opentk/src/OpenTK.Mathematics/Geometry/Box3i.cs - startLine: 167 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3i.cs + startLine: 166 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -574,13 +514,9 @@ items: fullName: OpenTK.Mathematics.Box3i.Bottom type: Property source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Bottom - path: opentk/src/OpenTK.Mathematics/Geometry/Box3i.cs - startLine: 176 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3i.cs + startLine: 175 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -605,13 +541,9 @@ items: fullName: OpenTK.Mathematics.Box3i.Front type: Property source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Front - path: opentk/src/OpenTK.Mathematics/Geometry/Box3i.cs - startLine: 185 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3i.cs + startLine: 184 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -636,13 +568,9 @@ items: fullName: OpenTK.Mathematics.Box3i.Back type: Property source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Back - path: opentk/src/OpenTK.Mathematics/Geometry/Box3i.cs - startLine: 194 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3i.cs + startLine: 193 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -667,13 +595,9 @@ items: fullName: OpenTK.Mathematics.Box3i.X type: Property source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: X - path: opentk/src/OpenTK.Mathematics/Geometry/Box3i.cs - startLine: 203 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3i.cs + startLine: 202 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -698,13 +622,9 @@ items: fullName: OpenTK.Mathematics.Box3i.Y type: Property source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Y - path: opentk/src/OpenTK.Mathematics/Geometry/Box3i.cs - startLine: 212 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3i.cs + startLine: 211 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -729,13 +649,9 @@ items: fullName: OpenTK.Mathematics.Box3i.Z type: Property source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Z - path: opentk/src/OpenTK.Mathematics/Geometry/Box3i.cs - startLine: 221 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3i.cs + startLine: 220 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -760,13 +676,9 @@ items: fullName: OpenTK.Mathematics.Box3i.SizeX type: Property source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SizeX - path: opentk/src/OpenTK.Mathematics/Geometry/Box3i.cs - startLine: 230 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3i.cs + startLine: 229 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -791,13 +703,9 @@ items: fullName: OpenTK.Mathematics.Box3i.SizeY type: Property source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SizeY - path: opentk/src/OpenTK.Mathematics/Geometry/Box3i.cs - startLine: 239 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3i.cs + startLine: 238 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -822,13 +730,9 @@ items: fullName: OpenTK.Mathematics.Box3i.SizeZ type: Property source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SizeZ - path: opentk/src/OpenTK.Mathematics/Geometry/Box3i.cs - startLine: 248 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3i.cs + startLine: 247 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -853,13 +757,9 @@ items: fullName: OpenTK.Mathematics.Box3i.Size type: Property source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Size - path: opentk/src/OpenTK.Mathematics/Geometry/Box3i.cs - startLine: 257 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3i.cs + startLine: 256 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -884,13 +784,9 @@ items: fullName: OpenTK.Mathematics.Box3i.Location type: Property source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Location - path: opentk/src/OpenTK.Mathematics/Geometry/Box3i.cs - startLine: 271 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3i.cs + startLine: 270 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -915,13 +811,9 @@ items: fullName: OpenTK.Mathematics.Box3i.IsZero type: Property source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: IsZero - path: opentk/src/OpenTK.Mathematics/Geometry/Box3i.cs - startLine: 276 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3i.cs + startLine: 275 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -946,13 +838,9 @@ items: fullName: OpenTK.Mathematics.Box3i.UnitSquare type: Field source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: UnitSquare - path: opentk/src/OpenTK.Mathematics/Geometry/Box3i.cs - startLine: 282 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3i.cs + startLine: 281 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -975,13 +863,9 @@ items: fullName: OpenTK.Mathematics.Box3i.FromSize(OpenTK.Mathematics.Vector3i, OpenTK.Mathematics.Vector3i) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: FromSize - path: opentk/src/OpenTK.Mathematics/Geometry/Box3i.cs - startLine: 290 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3i.cs + startLine: 289 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1013,13 +897,9 @@ items: fullName: OpenTK.Mathematics.Box3i.FromPositions(OpenTK.Mathematics.Vector3i, OpenTK.Mathematics.Vector3i) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: FromPositions - path: opentk/src/OpenTK.Mathematics/Geometry/Box3i.cs - startLine: 301 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3i.cs + startLine: 300 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1051,13 +931,9 @@ items: fullName: OpenTK.Mathematics.Box3i.FromPositions(int, int, int, int, int, int) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: FromPositions - path: opentk/src/OpenTK.Mathematics/Geometry/Box3i.cs - startLine: 316 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3i.cs + startLine: 315 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1104,13 +980,9 @@ items: fullName: OpenTK.Mathematics.Box3i.Intersect(OpenTK.Mathematics.Box3i) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Intersect - path: opentk/src/OpenTK.Mathematics/Geometry/Box3i.cs - startLine: 325 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3i.cs + startLine: 324 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1136,13 +1008,9 @@ items: fullName: OpenTK.Mathematics.Box3i.Intersect(OpenTK.Mathematics.Box3i, OpenTK.Mathematics.Box3i) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Intersect - path: opentk/src/OpenTK.Mathematics/Geometry/Box3i.cs - startLine: 343 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3i.cs + startLine: 342 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1174,13 +1042,9 @@ items: fullName: OpenTK.Mathematics.Box3i.Intersected(OpenTK.Mathematics.Box3i) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Intersected - path: opentk/src/OpenTK.Mathematics/Geometry/Box3i.cs - startLine: 365 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3i.cs + startLine: 364 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1209,13 +1073,9 @@ items: fullName: OpenTK.Mathematics.Box3i.IntersectsWith(OpenTK.Mathematics.Box3i) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: IntersectsWith - path: opentk/src/OpenTK.Mathematics/Geometry/Box3i.cs - startLine: 375 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3i.cs + startLine: 374 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1244,13 +1104,9 @@ items: fullName: OpenTK.Mathematics.Box3i.TouchWith(OpenTK.Mathematics.Box3i) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TouchWith - path: opentk/src/OpenTK.Mathematics/Geometry/Box3i.cs - startLine: 390 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3i.cs + startLine: 389 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1279,13 +1135,9 @@ items: fullName: OpenTK.Mathematics.Box3i.Union(OpenTK.Mathematics.Box3i, OpenTK.Mathematics.Box3i) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Union - path: opentk/src/OpenTK.Mathematics/Geometry/Box3i.cs - startLine: 406 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3i.cs + startLine: 405 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1317,13 +1169,9 @@ items: fullName: OpenTK.Mathematics.Box3i.Contains(OpenTK.Mathematics.Vector3i) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Contains - path: opentk/src/OpenTK.Mathematics/Geometry/Box3i.cs - startLine: 425 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3i.cs + startLine: 424 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1335,7 +1183,7 @@ items: [Obsolete("This function excludes borders even though it's documentation says otherwise. Use ContainsInclusive and ContainsExclusive for the desired behaviour.")] - public bool Contains(Vector3i point) + public readonly bool Contains(Vector3i point) parameters: - id: point type: OpenTK.Mathematics.Vector3i @@ -1371,13 +1219,9 @@ items: fullName: OpenTK.Mathematics.Box3i.ContainsInclusive(OpenTK.Mathematics.Vector3i) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ContainsInclusive - path: opentk/src/OpenTK.Mathematics/Geometry/Box3i.cs - startLine: 439 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3i.cs + startLine: 438 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1387,7 +1231,7 @@ items: content: >- [Pure] - public bool ContainsInclusive(Vector3i point) + public readonly bool ContainsInclusive(Vector3i point) parameters: - id: point type: OpenTK.Mathematics.Vector3i @@ -1416,13 +1260,9 @@ items: fullName: OpenTK.Mathematics.Box3i.ContainsExclusive(OpenTK.Mathematics.Vector3i) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ContainsExclusive - path: opentk/src/OpenTK.Mathematics/Geometry/Box3i.cs - startLine: 452 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3i.cs + startLine: 451 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1432,7 +1272,7 @@ items: content: >- [Pure] - public bool ContainsExclusive(Vector3i point) + public readonly bool ContainsExclusive(Vector3i point) parameters: - id: point type: OpenTK.Mathematics.Vector3i @@ -1461,13 +1301,9 @@ items: fullName: OpenTK.Mathematics.Box3i.Contains(OpenTK.Mathematics.Vector3i, bool) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Contains - path: opentk/src/OpenTK.Mathematics/Geometry/Box3i.cs - startLine: 468 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3i.cs + startLine: 467 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1512,13 +1348,9 @@ items: fullName: OpenTK.Mathematics.Box3i.Contains(OpenTK.Mathematics.Box3i) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Contains - path: opentk/src/OpenTK.Mathematics/Geometry/Box3i.cs - startLine: 486 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3i.cs + startLine: 485 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1528,7 +1360,7 @@ items: content: >- [Pure] - public bool Contains(Box3i other) + public readonly bool Contains(Box3i other) parameters: - id: other type: OpenTK.Mathematics.Box3i @@ -1557,13 +1389,9 @@ items: fullName: OpenTK.Mathematics.Box3i.DistanceToNearestEdge(OpenTK.Mathematics.Vector3i) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DistanceToNearestEdge - path: opentk/src/OpenTK.Mathematics/Geometry/Box3i.cs - startLine: 499 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3i.cs + startLine: 498 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1573,7 +1401,7 @@ items: content: >- [Pure] - public float DistanceToNearestEdge(Vector3i point) + public readonly float DistanceToNearestEdge(Vector3i point) parameters: - id: point type: OpenTK.Mathematics.Vector3i @@ -1602,13 +1430,9 @@ items: fullName: OpenTK.Mathematics.Box3i.Translate(OpenTK.Mathematics.Vector3i) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Translate - path: opentk/src/OpenTK.Mathematics/Geometry/Box3i.cs - startLine: 513 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3i.cs + startLine: 512 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1634,13 +1458,9 @@ items: fullName: OpenTK.Mathematics.Box3i.Translated(OpenTK.Mathematics.Vector3i) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Translated - path: opentk/src/OpenTK.Mathematics/Geometry/Box3i.cs - startLine: 524 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3i.cs + startLine: 523 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1650,7 +1470,7 @@ items: content: >- [Pure] - public Box3i Translated(Vector3i distance) + public readonly Box3i Translated(Vector3i distance) parameters: - id: distance type: OpenTK.Mathematics.Vector3i @@ -1679,13 +1499,9 @@ items: fullName: OpenTK.Mathematics.Box3i.Scale(OpenTK.Mathematics.Vector3i, OpenTK.Mathematics.Vector3i) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Scale - path: opentk/src/OpenTK.Mathematics/Geometry/Box3i.cs - startLine: 538 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3i.cs + startLine: 537 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1714,13 +1530,9 @@ items: fullName: OpenTK.Mathematics.Box3i.Scaled(OpenTK.Mathematics.Vector3i, OpenTK.Mathematics.Vector3i) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Scaled - path: opentk/src/OpenTK.Mathematics/Geometry/Box3i.cs - startLine: 550 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3i.cs + startLine: 549 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1730,7 +1542,7 @@ items: content: >- [Pure] - public Box3i Scaled(Vector3i scale, Vector3i anchor) + public readonly Box3i Scaled(Vector3i scale, Vector3i anchor) parameters: - id: scale type: OpenTK.Mathematics.Vector3i @@ -1762,13 +1574,9 @@ items: fullName: OpenTK.Mathematics.Box3i.Inflate(OpenTK.Mathematics.Vector3i) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Inflate - path: opentk/src/OpenTK.Mathematics/Geometry/Box3i.cs - startLine: 564 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3i.cs + startLine: 563 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1797,13 +1605,9 @@ items: fullName: OpenTK.Mathematics.Box3i.Inflated(OpenTK.Mathematics.Vector3i) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Inflated - path: opentk/src/OpenTK.Mathematics/Geometry/Box3i.cs - startLine: 577 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3i.cs + startLine: 576 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1816,7 +1620,7 @@ items: content: >- [Pure] - public Box3i Inflated(Vector3i size) + public readonly Box3i Inflated(Vector3i size) parameters: - id: size type: OpenTK.Mathematics.Vector3i @@ -1845,13 +1649,9 @@ items: fullName: OpenTK.Mathematics.Box3i.Extend(OpenTK.Mathematics.Vector3i) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Extend - path: opentk/src/OpenTK.Mathematics/Geometry/Box3i.cs - startLine: 590 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3i.cs + startLine: 589 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1877,13 +1677,9 @@ items: fullName: OpenTK.Mathematics.Box3i.Extended(OpenTK.Mathematics.Vector3i) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Extended - path: opentk/src/OpenTK.Mathematics/Geometry/Box3i.cs - startLine: 601 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3i.cs + startLine: 600 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1893,7 +1689,7 @@ items: content: >- [Pure] - public Box3i Extended(Vector3i point) + public readonly Box3i Extended(Vector3i point) parameters: - id: point type: OpenTK.Mathematics.Vector3i @@ -1922,13 +1718,9 @@ items: fullName: OpenTK.Mathematics.Box3i.operator ==(OpenTK.Mathematics.Box3i, OpenTK.Mathematics.Box3i) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Equality - path: opentk/src/OpenTK.Mathematics/Geometry/Box3i.cs - startLine: 615 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3i.cs + startLine: 614 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1962,13 +1754,9 @@ items: fullName: OpenTK.Mathematics.Box3i.operator !=(OpenTK.Mathematics.Box3i, OpenTK.Mathematics.Box3i) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Inequality - path: opentk/src/OpenTK.Mathematics/Geometry/Box3i.cs - startLine: 625 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3i.cs + startLine: 624 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2002,13 +1790,9 @@ items: fullName: OpenTK.Mathematics.Box3i.Equals(object) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Equals - path: opentk/src/OpenTK.Mathematics/Geometry/Box3i.cs - startLine: 631 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3i.cs + startLine: 630 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2041,13 +1825,9 @@ items: fullName: OpenTK.Mathematics.Box3i.Equals(OpenTK.Mathematics.Box3i) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Equals - path: opentk/src/OpenTK.Mathematics/Geometry/Box3i.cs - startLine: 637 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3i.cs + startLine: 636 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2078,20 +1858,16 @@ items: fullName: OpenTK.Mathematics.Box3i.GetHashCode() type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetHashCode - path: opentk/src/OpenTK.Mathematics/Geometry/Box3i.cs - startLine: 644 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3i.cs + startLine: 643 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Returns the hash code for this instance. example: [] syntax: - content: public override int GetHashCode() + content: public override readonly int GetHashCode() return: type: System.Int32 description: A 32-bit signed integer that is the hash code for this instance. @@ -2110,13 +1886,9 @@ items: fullName: OpenTK.Mathematics.Box3i.ToString() type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Mathematics/Geometry/Box3i.cs - startLine: 650 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3i.cs + startLine: 649 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2142,13 +1914,9 @@ items: fullName: OpenTK.Mathematics.Box3i.ToString(string) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Mathematics/Geometry/Box3i.cs - startLine: 656 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3i.cs + startLine: 655 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2185,13 +1953,9 @@ items: fullName: OpenTK.Mathematics.Box3i.ToString(System.IFormatProvider) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Mathematics/Geometry/Box3i.cs - startLine: 662 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3i.cs + startLine: 661 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2225,13 +1989,9 @@ items: fullName: OpenTK.Mathematics.Box3i.ToString(string, System.IFormatProvider) type: Method source: - remote: - path: src/OpenTK.Mathematics/Geometry/Box3i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Mathematics/Geometry/Box3i.cs - startLine: 668 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Geometry\Box3i.cs + startLine: 667 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics diff --git a/api/OpenTK.Mathematics.Color3-1.yml b/api/OpenTK.Mathematics.Color3-1.yml index a66822c2..5b4d26e9 100644 --- a/api/OpenTK.Mathematics.Color3-1.yml +++ b/api/OpenTK.Mathematics.Color3-1.yml @@ -27,12 +27,8 @@ items: fullName: OpenTK.Mathematics.Color3 type: Struct source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Color3 - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 45 assemblies: - OpenTK.Mathematics @@ -78,12 +74,8 @@ items: fullName: OpenTK.Mathematics.Color3.X type: Field source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: X - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 51 assemblies: - OpenTK.Mathematics @@ -109,12 +101,8 @@ items: fullName: OpenTK.Mathematics.Color3.Y type: Field source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Y - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 56 assemblies: - OpenTK.Mathematics @@ -140,12 +128,8 @@ items: fullName: OpenTK.Mathematics.Color3.Z type: Field source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Z - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 61 assemblies: - OpenTK.Mathematics @@ -171,12 +155,8 @@ items: fullName: OpenTK.Mathematics.Color3.Color3(float, float, float) type: Constructor source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 69 assemblies: - OpenTK.Mathematics @@ -212,12 +192,8 @@ items: fullName: OpenTK.Mathematics.Color3.this[int] type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: this[] - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 80 assemblies: - OpenTK.Mathematics @@ -249,12 +225,8 @@ items: fullName: OpenTK.Mathematics.Color3.explicit operator OpenTK.Mathematics.Color3(in OpenTK.Mathematics.Vector3) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Explicit - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 123 assemblies: - OpenTK.Mathematics @@ -297,12 +269,8 @@ items: fullName: OpenTK.Mathematics.Color3.explicit operator OpenTK.Mathematics.Vector3(in OpenTK.Mathematics.Color3) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Explicit - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 131 assemblies: - OpenTK.Mathematics @@ -345,12 +313,8 @@ items: fullName: OpenTK.Mathematics.Color3.Deconstruct(out float, out float, out float) type: Method source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Deconstruct - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 140 assemblies: - OpenTK.Mathematics @@ -396,12 +360,8 @@ items: fullName: OpenTK.Mathematics.Color3.operator ==(in OpenTK.Mathematics.Color3, in OpenTK.Mathematics.Color3) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Equality - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 154 assemblies: - OpenTK.Mathematics @@ -447,12 +407,8 @@ items: fullName: OpenTK.Mathematics.Color3.operator !=(in OpenTK.Mathematics.Color3, in OpenTK.Mathematics.Color3) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Inequality - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 166 assemblies: - OpenTK.Mathematics @@ -498,12 +454,8 @@ items: fullName: OpenTK.Mathematics.Color3.Equals(OpenTK.Mathematics.Color3) type: Method source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Equals - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 177 assemblies: - OpenTK.Mathematics @@ -548,12 +500,8 @@ items: fullName: OpenTK.Mathematics.Color3.ToString() type: Method source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 187 assemblies: - OpenTK.Mathematics @@ -592,12 +540,8 @@ items: fullName: OpenTK.Mathematics.Color3.Equals(object) type: Method source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Equals - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 198 assemblies: - OpenTK.Mathematics @@ -641,12 +585,8 @@ items: fullName: OpenTK.Mathematics.Color3.GetHashCode() type: Method source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetHashCode - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 208 assemblies: - OpenTK.Mathematics diff --git a/api/OpenTK.Mathematics.Color3.yml b/api/OpenTK.Mathematics.Color3.yml index 061a7fa0..baef5dcd 100644 --- a/api/OpenTK.Mathematics.Color3.yml +++ b/api/OpenTK.Mathematics.Color3.yml @@ -168,12 +168,8 @@ items: fullName: OpenTK.Mathematics.Color3 type: Class source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Color3 - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 224 assemblies: - OpenTK.Mathematics @@ -206,12 +202,8 @@ items: fullName: OpenTK.Mathematics.Color3.Add(in OpenTK.Mathematics.Color3, in OpenTK.Mathematics.Color3) type: Method source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Add - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 232 assemblies: - OpenTK.Mathematics @@ -248,12 +240,8 @@ items: fullName: OpenTK.Mathematics.Color3.Subtract(in OpenTK.Mathematics.Color3, in OpenTK.Mathematics.Color3) type: Method source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Subtract - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 241 assemblies: - OpenTK.Mathematics @@ -290,12 +278,8 @@ items: fullName: OpenTK.Mathematics.Color3.Multiply(in OpenTK.Mathematics.Color3, in OpenTK.Mathematics.Color3) type: Method source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Multiply - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 250 assemblies: - OpenTK.Mathematics @@ -332,12 +316,8 @@ items: fullName: OpenTK.Mathematics.Color3.Multiply(in OpenTK.Mathematics.Color3, in float) type: Method source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Multiply - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 259 assemblies: - OpenTK.Mathematics @@ -374,12 +354,8 @@ items: fullName: OpenTK.Mathematics.Color3.Divide(in OpenTK.Mathematics.Color3, in float) type: Method source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Divide - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 268 assemblies: - OpenTK.Mathematics @@ -416,12 +392,8 @@ items: fullName: OpenTK.Mathematics.Color3.ToArgb(in OpenTK.Mathematics.Color3, float) type: Method source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToArgb - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 277 assemblies: - OpenTK.Mathematics @@ -468,12 +440,8 @@ items: fullName: OpenTK.Mathematics.Color3.ToRgba(in OpenTK.Mathematics.Color3, float) type: Method source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToRgba - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 289 assemblies: - OpenTK.Mathematics @@ -520,12 +488,8 @@ items: fullName: OpenTK.Mathematics.Color3.ToRgb(in OpenTK.Mathematics.Color3) type: Method source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToRgb - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 300 assemblies: - OpenTK.Mathematics @@ -569,12 +533,8 @@ items: fullName: OpenTK.Mathematics.Color3.ToRgb(in OpenTK.Mathematics.Color3) type: Method source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToRgb - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 370 assemblies: - OpenTK.Mathematics @@ -618,12 +578,8 @@ items: fullName: OpenTK.Mathematics.Color3.ToHsva(in OpenTK.Mathematics.Color3, float) type: Method source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToHsva - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 437 assemblies: - OpenTK.Mathematics @@ -670,12 +626,8 @@ items: fullName: OpenTK.Mathematics.Color3.ToHsv(in OpenTK.Mathematics.Color3) type: Method source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToHsv - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 448 assemblies: - OpenTK.Mathematics @@ -719,12 +671,8 @@ items: fullName: OpenTK.Mathematics.Color3.ToHsv(in OpenTK.Mathematics.Color3) type: Method source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToHsv - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 475 assemblies: - OpenTK.Mathematics @@ -768,12 +716,8 @@ items: fullName: OpenTK.Mathematics.Color3.ToHsla(in OpenTK.Mathematics.Color3, float) type: Method source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToHsla - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 524 assemblies: - OpenTK.Mathematics @@ -820,12 +764,8 @@ items: fullName: OpenTK.Mathematics.Color3.ToHsl(in OpenTK.Mathematics.Color3) type: Method source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToHsl - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 535 assemblies: - OpenTK.Mathematics @@ -859,12 +799,8 @@ items: fullName: OpenTK.Mathematics.Color3.ToHsl(in OpenTK.Mathematics.Color3) type: Method source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToHsl - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 553 assemblies: - OpenTK.Mathematics @@ -907,12 +843,8 @@ items: fullName: OpenTK.Mathematics.Color3.Aliceblue type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Aliceblue - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 605 assemblies: - OpenTK.Mathematics @@ -938,12 +870,8 @@ items: fullName: OpenTK.Mathematics.Color3.Antiquewhite type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Antiquewhite - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 610 assemblies: - OpenTK.Mathematics @@ -969,12 +897,8 @@ items: fullName: OpenTK.Mathematics.Color3.Aqua type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Aqua - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 615 assemblies: - OpenTK.Mathematics @@ -1000,12 +924,8 @@ items: fullName: OpenTK.Mathematics.Color3.Aquamarine type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Aquamarine - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 620 assemblies: - OpenTK.Mathematics @@ -1031,12 +951,8 @@ items: fullName: OpenTK.Mathematics.Color3.Azure type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Azure - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 625 assemblies: - OpenTK.Mathematics @@ -1062,12 +978,8 @@ items: fullName: OpenTK.Mathematics.Color3.Beige type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Beige - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 630 assemblies: - OpenTK.Mathematics @@ -1093,12 +1005,8 @@ items: fullName: OpenTK.Mathematics.Color3.Bisque type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Bisque - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 635 assemblies: - OpenTK.Mathematics @@ -1124,12 +1032,8 @@ items: fullName: OpenTK.Mathematics.Color3.Black type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Black - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 640 assemblies: - OpenTK.Mathematics @@ -1155,12 +1059,8 @@ items: fullName: OpenTK.Mathematics.Color3.Blanchedalmond type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Blanchedalmond - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 645 assemblies: - OpenTK.Mathematics @@ -1186,12 +1086,8 @@ items: fullName: OpenTK.Mathematics.Color3.Blue type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Blue - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 650 assemblies: - OpenTK.Mathematics @@ -1217,12 +1113,8 @@ items: fullName: OpenTK.Mathematics.Color3.Blueviolet type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Blueviolet - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 655 assemblies: - OpenTK.Mathematics @@ -1248,12 +1140,8 @@ items: fullName: OpenTK.Mathematics.Color3.Brown type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Brown - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 660 assemblies: - OpenTK.Mathematics @@ -1279,12 +1167,8 @@ items: fullName: OpenTK.Mathematics.Color3.Burlywood type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Burlywood - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 665 assemblies: - OpenTK.Mathematics @@ -1310,12 +1194,8 @@ items: fullName: OpenTK.Mathematics.Color3.Cadetblue type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Cadetblue - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 670 assemblies: - OpenTK.Mathematics @@ -1341,12 +1221,8 @@ items: fullName: OpenTK.Mathematics.Color3.Chartreuse type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Chartreuse - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 675 assemblies: - OpenTK.Mathematics @@ -1372,12 +1248,8 @@ items: fullName: OpenTK.Mathematics.Color3.Chocolate type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Chocolate - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 680 assemblies: - OpenTK.Mathematics @@ -1403,12 +1275,8 @@ items: fullName: OpenTK.Mathematics.Color3.Coral type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Coral - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 685 assemblies: - OpenTK.Mathematics @@ -1434,12 +1302,8 @@ items: fullName: OpenTK.Mathematics.Color3.Cornflowerblue type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Cornflowerblue - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 690 assemblies: - OpenTK.Mathematics @@ -1465,12 +1329,8 @@ items: fullName: OpenTK.Mathematics.Color3.Cornsilk type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Cornsilk - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 695 assemblies: - OpenTK.Mathematics @@ -1496,12 +1356,8 @@ items: fullName: OpenTK.Mathematics.Color3.Crimson type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Crimson - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 700 assemblies: - OpenTK.Mathematics @@ -1527,12 +1383,8 @@ items: fullName: OpenTK.Mathematics.Color3.Cyan type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Cyan - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 705 assemblies: - OpenTK.Mathematics @@ -1558,12 +1410,8 @@ items: fullName: OpenTK.Mathematics.Color3.Darkblue type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Darkblue - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 710 assemblies: - OpenTK.Mathematics @@ -1589,12 +1437,8 @@ items: fullName: OpenTK.Mathematics.Color3.Darkcyan type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Darkcyan - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 715 assemblies: - OpenTK.Mathematics @@ -1620,12 +1464,8 @@ items: fullName: OpenTK.Mathematics.Color3.Darkgoldenrod type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Darkgoldenrod - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 720 assemblies: - OpenTK.Mathematics @@ -1651,12 +1491,8 @@ items: fullName: OpenTK.Mathematics.Color3.Darkgray type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Darkgray - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 725 assemblies: - OpenTK.Mathematics @@ -1682,12 +1518,8 @@ items: fullName: OpenTK.Mathematics.Color3.Darkgreen type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Darkgreen - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 730 assemblies: - OpenTK.Mathematics @@ -1713,12 +1545,8 @@ items: fullName: OpenTK.Mathematics.Color3.Darkkhaki type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Darkkhaki - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 735 assemblies: - OpenTK.Mathematics @@ -1744,12 +1572,8 @@ items: fullName: OpenTK.Mathematics.Color3.Darkmagenta type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Darkmagenta - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 740 assemblies: - OpenTK.Mathematics @@ -1775,12 +1599,8 @@ items: fullName: OpenTK.Mathematics.Color3.Darkolivegreen type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Darkolivegreen - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 745 assemblies: - OpenTK.Mathematics @@ -1806,12 +1626,8 @@ items: fullName: OpenTK.Mathematics.Color3.Darkorange type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Darkorange - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 750 assemblies: - OpenTK.Mathematics @@ -1837,12 +1653,8 @@ items: fullName: OpenTK.Mathematics.Color3.Darkorchid type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Darkorchid - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 755 assemblies: - OpenTK.Mathematics @@ -1868,12 +1680,8 @@ items: fullName: OpenTK.Mathematics.Color3.Darkred type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Darkred - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 760 assemblies: - OpenTK.Mathematics @@ -1899,12 +1707,8 @@ items: fullName: OpenTK.Mathematics.Color3.Darksalmon type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Darksalmon - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 765 assemblies: - OpenTK.Mathematics @@ -1930,12 +1734,8 @@ items: fullName: OpenTK.Mathematics.Color3.Darkseagreen type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Darkseagreen - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 770 assemblies: - OpenTK.Mathematics @@ -1961,12 +1761,8 @@ items: fullName: OpenTK.Mathematics.Color3.Darkslateblue type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Darkslateblue - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 775 assemblies: - OpenTK.Mathematics @@ -1992,12 +1788,8 @@ items: fullName: OpenTK.Mathematics.Color3.Darkslategray type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Darkslategray - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 780 assemblies: - OpenTK.Mathematics @@ -2023,12 +1815,8 @@ items: fullName: OpenTK.Mathematics.Color3.Darkturquoise type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Darkturquoise - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 785 assemblies: - OpenTK.Mathematics @@ -2054,12 +1842,8 @@ items: fullName: OpenTK.Mathematics.Color3.Darkviolet type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Darkviolet - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 790 assemblies: - OpenTK.Mathematics @@ -2085,12 +1869,8 @@ items: fullName: OpenTK.Mathematics.Color3.Deeppink type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Deeppink - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 795 assemblies: - OpenTK.Mathematics @@ -2116,12 +1896,8 @@ items: fullName: OpenTK.Mathematics.Color3.Deepskyblue type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Deepskyblue - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 800 assemblies: - OpenTK.Mathematics @@ -2147,12 +1923,8 @@ items: fullName: OpenTK.Mathematics.Color3.Dimgray type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Dimgray - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 805 assemblies: - OpenTK.Mathematics @@ -2178,12 +1950,8 @@ items: fullName: OpenTK.Mathematics.Color3.Dodgerblue type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Dodgerblue - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 810 assemblies: - OpenTK.Mathematics @@ -2209,12 +1977,8 @@ items: fullName: OpenTK.Mathematics.Color3.Firebrick type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Firebrick - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 815 assemblies: - OpenTK.Mathematics @@ -2240,12 +2004,8 @@ items: fullName: OpenTK.Mathematics.Color3.Floralwhite type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Floralwhite - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 820 assemblies: - OpenTK.Mathematics @@ -2271,12 +2031,8 @@ items: fullName: OpenTK.Mathematics.Color3.Forestgreen type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Forestgreen - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 825 assemblies: - OpenTK.Mathematics @@ -2302,12 +2058,8 @@ items: fullName: OpenTK.Mathematics.Color3.Fuchsia type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Fuchsia - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 830 assemblies: - OpenTK.Mathematics @@ -2333,12 +2085,8 @@ items: fullName: OpenTK.Mathematics.Color3.Gainsboro type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Gainsboro - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 835 assemblies: - OpenTK.Mathematics @@ -2364,12 +2112,8 @@ items: fullName: OpenTK.Mathematics.Color3.Ghostwhite type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Ghostwhite - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 840 assemblies: - OpenTK.Mathematics @@ -2395,12 +2139,8 @@ items: fullName: OpenTK.Mathematics.Color3.Gold type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Gold - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 845 assemblies: - OpenTK.Mathematics @@ -2426,12 +2166,8 @@ items: fullName: OpenTK.Mathematics.Color3.Goldenrod type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Goldenrod - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 850 assemblies: - OpenTK.Mathematics @@ -2457,12 +2193,8 @@ items: fullName: OpenTK.Mathematics.Color3.Gray type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Gray - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 855 assemblies: - OpenTK.Mathematics @@ -2488,12 +2220,8 @@ items: fullName: OpenTK.Mathematics.Color3.Green type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Green - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 860 assemblies: - OpenTK.Mathematics @@ -2519,12 +2247,8 @@ items: fullName: OpenTK.Mathematics.Color3.Greenyellow type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Greenyellow - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 865 assemblies: - OpenTK.Mathematics @@ -2550,12 +2274,8 @@ items: fullName: OpenTK.Mathematics.Color3.Honeydew type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Honeydew - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 870 assemblies: - OpenTK.Mathematics @@ -2581,12 +2301,8 @@ items: fullName: OpenTK.Mathematics.Color3.Hotpink type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Hotpink - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 875 assemblies: - OpenTK.Mathematics @@ -2612,12 +2328,8 @@ items: fullName: OpenTK.Mathematics.Color3.Indianred type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Indianred - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 880 assemblies: - OpenTK.Mathematics @@ -2643,12 +2355,8 @@ items: fullName: OpenTK.Mathematics.Color3.Indigo type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Indigo - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 885 assemblies: - OpenTK.Mathematics @@ -2674,12 +2382,8 @@ items: fullName: OpenTK.Mathematics.Color3.Ivory type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Ivory - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 890 assemblies: - OpenTK.Mathematics @@ -2705,12 +2409,8 @@ items: fullName: OpenTK.Mathematics.Color3.Khaki type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Khaki - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 895 assemblies: - OpenTK.Mathematics @@ -2736,12 +2436,8 @@ items: fullName: OpenTK.Mathematics.Color3.Lavender type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Lavender - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 900 assemblies: - OpenTK.Mathematics @@ -2767,12 +2463,8 @@ items: fullName: OpenTK.Mathematics.Color3.Lavenderblush type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Lavenderblush - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 905 assemblies: - OpenTK.Mathematics @@ -2798,12 +2490,8 @@ items: fullName: OpenTK.Mathematics.Color3.Lawngreen type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Lawngreen - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 910 assemblies: - OpenTK.Mathematics @@ -2829,12 +2517,8 @@ items: fullName: OpenTK.Mathematics.Color3.Lemonchiffon type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Lemonchiffon - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 915 assemblies: - OpenTK.Mathematics @@ -2860,12 +2544,8 @@ items: fullName: OpenTK.Mathematics.Color3.Lightblue type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Lightblue - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 920 assemblies: - OpenTK.Mathematics @@ -2891,12 +2571,8 @@ items: fullName: OpenTK.Mathematics.Color3.Lightcoral type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Lightcoral - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 925 assemblies: - OpenTK.Mathematics @@ -2922,12 +2598,8 @@ items: fullName: OpenTK.Mathematics.Color3.Lightcyan type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Lightcyan - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 930 assemblies: - OpenTK.Mathematics @@ -2953,12 +2625,8 @@ items: fullName: OpenTK.Mathematics.Color3.Lightgoldenrodyellow type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Lightgoldenrodyellow - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 935 assemblies: - OpenTK.Mathematics @@ -2984,12 +2652,8 @@ items: fullName: OpenTK.Mathematics.Color3.Lightgray type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Lightgray - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 940 assemblies: - OpenTK.Mathematics @@ -3015,12 +2679,8 @@ items: fullName: OpenTK.Mathematics.Color3.Lightgreen type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Lightgreen - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 945 assemblies: - OpenTK.Mathematics @@ -3046,12 +2706,8 @@ items: fullName: OpenTK.Mathematics.Color3.Lightpink type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Lightpink - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 950 assemblies: - OpenTK.Mathematics @@ -3077,12 +2733,8 @@ items: fullName: OpenTK.Mathematics.Color3.Lightsalmon type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Lightsalmon - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 955 assemblies: - OpenTK.Mathematics @@ -3108,12 +2760,8 @@ items: fullName: OpenTK.Mathematics.Color3.Lightseagreen type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Lightseagreen - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 960 assemblies: - OpenTK.Mathematics @@ -3139,12 +2787,8 @@ items: fullName: OpenTK.Mathematics.Color3.Lightskyblue type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Lightskyblue - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 965 assemblies: - OpenTK.Mathematics @@ -3170,12 +2814,8 @@ items: fullName: OpenTK.Mathematics.Color3.Lightslategray type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Lightslategray - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 970 assemblies: - OpenTK.Mathematics @@ -3201,12 +2841,8 @@ items: fullName: OpenTK.Mathematics.Color3.Lightsteelblue type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Lightsteelblue - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 975 assemblies: - OpenTK.Mathematics @@ -3232,12 +2868,8 @@ items: fullName: OpenTK.Mathematics.Color3.Lightyellow type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Lightyellow - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 980 assemblies: - OpenTK.Mathematics @@ -3263,12 +2895,8 @@ items: fullName: OpenTK.Mathematics.Color3.Lime type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Lime - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 985 assemblies: - OpenTK.Mathematics @@ -3294,12 +2922,8 @@ items: fullName: OpenTK.Mathematics.Color3.Limegreen type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Limegreen - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 990 assemblies: - OpenTK.Mathematics @@ -3325,12 +2949,8 @@ items: fullName: OpenTK.Mathematics.Color3.Linen type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Linen - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 995 assemblies: - OpenTK.Mathematics @@ -3356,12 +2976,8 @@ items: fullName: OpenTK.Mathematics.Color3.Magenta type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Magenta - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 1000 assemblies: - OpenTK.Mathematics @@ -3387,12 +3003,8 @@ items: fullName: OpenTK.Mathematics.Color3.Maroon type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Maroon - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 1005 assemblies: - OpenTK.Mathematics @@ -3418,12 +3030,8 @@ items: fullName: OpenTK.Mathematics.Color3.Mediumaquamarine type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Mediumaquamarine - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 1010 assemblies: - OpenTK.Mathematics @@ -3449,12 +3057,8 @@ items: fullName: OpenTK.Mathematics.Color3.Mediumblue type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Mediumblue - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 1015 assemblies: - OpenTK.Mathematics @@ -3480,12 +3084,8 @@ items: fullName: OpenTK.Mathematics.Color3.Mediumorchid type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Mediumorchid - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 1020 assemblies: - OpenTK.Mathematics @@ -3511,12 +3111,8 @@ items: fullName: OpenTK.Mathematics.Color3.Mediumpurple type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Mediumpurple - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 1025 assemblies: - OpenTK.Mathematics @@ -3542,12 +3138,8 @@ items: fullName: OpenTK.Mathematics.Color3.Mediumseagreen type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Mediumseagreen - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 1030 assemblies: - OpenTK.Mathematics @@ -3573,12 +3165,8 @@ items: fullName: OpenTK.Mathematics.Color3.Mediumslateblue type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Mediumslateblue - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 1035 assemblies: - OpenTK.Mathematics @@ -3604,12 +3192,8 @@ items: fullName: OpenTK.Mathematics.Color3.Mediumspringgreen type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Mediumspringgreen - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 1040 assemblies: - OpenTK.Mathematics @@ -3635,12 +3219,8 @@ items: fullName: OpenTK.Mathematics.Color3.Mediumturquoise type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Mediumturquoise - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 1045 assemblies: - OpenTK.Mathematics @@ -3666,12 +3246,8 @@ items: fullName: OpenTK.Mathematics.Color3.Mediumvioletred type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Mediumvioletred - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 1050 assemblies: - OpenTK.Mathematics @@ -3697,12 +3273,8 @@ items: fullName: OpenTK.Mathematics.Color3.Midnightblue type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Midnightblue - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 1055 assemblies: - OpenTK.Mathematics @@ -3728,12 +3300,8 @@ items: fullName: OpenTK.Mathematics.Color3.Mintcream type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Mintcream - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 1060 assemblies: - OpenTK.Mathematics @@ -3759,12 +3327,8 @@ items: fullName: OpenTK.Mathematics.Color3.Mistyrose type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Mistyrose - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 1065 assemblies: - OpenTK.Mathematics @@ -3790,12 +3354,8 @@ items: fullName: OpenTK.Mathematics.Color3.Moccasin type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Moccasin - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 1070 assemblies: - OpenTK.Mathematics @@ -3821,12 +3381,8 @@ items: fullName: OpenTK.Mathematics.Color3.Navajowhite type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Navajowhite - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 1075 assemblies: - OpenTK.Mathematics @@ -3852,12 +3408,8 @@ items: fullName: OpenTK.Mathematics.Color3.Navy type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Navy - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 1080 assemblies: - OpenTK.Mathematics @@ -3883,12 +3435,8 @@ items: fullName: OpenTK.Mathematics.Color3.Oldlace type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Oldlace - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 1085 assemblies: - OpenTK.Mathematics @@ -3914,12 +3462,8 @@ items: fullName: OpenTK.Mathematics.Color3.Olive type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Olive - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 1090 assemblies: - OpenTK.Mathematics @@ -3945,12 +3489,8 @@ items: fullName: OpenTK.Mathematics.Color3.Olivedrab type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Olivedrab - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 1095 assemblies: - OpenTK.Mathematics @@ -3976,12 +3516,8 @@ items: fullName: OpenTK.Mathematics.Color3.Orange type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Orange - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 1100 assemblies: - OpenTK.Mathematics @@ -4007,12 +3543,8 @@ items: fullName: OpenTK.Mathematics.Color3.Orangered type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Orangered - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 1105 assemblies: - OpenTK.Mathematics @@ -4038,12 +3570,8 @@ items: fullName: OpenTK.Mathematics.Color3.Orchid type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Orchid - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 1110 assemblies: - OpenTK.Mathematics @@ -4069,12 +3597,8 @@ items: fullName: OpenTK.Mathematics.Color3.Palegoldenrod type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Palegoldenrod - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 1115 assemblies: - OpenTK.Mathematics @@ -4100,12 +3624,8 @@ items: fullName: OpenTK.Mathematics.Color3.Palegreen type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Palegreen - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 1120 assemblies: - OpenTK.Mathematics @@ -4131,12 +3651,8 @@ items: fullName: OpenTK.Mathematics.Color3.Paleturquoise type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Paleturquoise - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 1125 assemblies: - OpenTK.Mathematics @@ -4162,12 +3678,8 @@ items: fullName: OpenTK.Mathematics.Color3.Palevioletred type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Palevioletred - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 1130 assemblies: - OpenTK.Mathematics @@ -4193,12 +3705,8 @@ items: fullName: OpenTK.Mathematics.Color3.Papayawhip type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Papayawhip - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 1135 assemblies: - OpenTK.Mathematics @@ -4224,12 +3732,8 @@ items: fullName: OpenTK.Mathematics.Color3.Peachpuff type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Peachpuff - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 1140 assemblies: - OpenTK.Mathematics @@ -4255,12 +3759,8 @@ items: fullName: OpenTK.Mathematics.Color3.Peru type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Peru - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 1145 assemblies: - OpenTK.Mathematics @@ -4286,12 +3786,8 @@ items: fullName: OpenTK.Mathematics.Color3.Pink type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Pink - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 1150 assemblies: - OpenTK.Mathematics @@ -4317,12 +3813,8 @@ items: fullName: OpenTK.Mathematics.Color3.Plum type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Plum - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 1155 assemblies: - OpenTK.Mathematics @@ -4348,12 +3840,8 @@ items: fullName: OpenTK.Mathematics.Color3.Powderblue type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Powderblue - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 1160 assemblies: - OpenTK.Mathematics @@ -4379,12 +3867,8 @@ items: fullName: OpenTK.Mathematics.Color3.Purple type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Purple - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 1165 assemblies: - OpenTK.Mathematics @@ -4410,12 +3894,8 @@ items: fullName: OpenTK.Mathematics.Color3.Red type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Red - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 1170 assemblies: - OpenTK.Mathematics @@ -4441,12 +3921,8 @@ items: fullName: OpenTK.Mathematics.Color3.Rosybrown type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Rosybrown - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 1175 assemblies: - OpenTK.Mathematics @@ -4472,12 +3948,8 @@ items: fullName: OpenTK.Mathematics.Color3.Royalblue type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Royalblue - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 1180 assemblies: - OpenTK.Mathematics @@ -4503,12 +3975,8 @@ items: fullName: OpenTK.Mathematics.Color3.Saddlebrown type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Saddlebrown - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 1185 assemblies: - OpenTK.Mathematics @@ -4534,12 +4002,8 @@ items: fullName: OpenTK.Mathematics.Color3.Salmon type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Salmon - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 1190 assemblies: - OpenTK.Mathematics @@ -4565,12 +4029,8 @@ items: fullName: OpenTK.Mathematics.Color3.Sandybrown type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Sandybrown - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 1195 assemblies: - OpenTK.Mathematics @@ -4596,12 +4056,8 @@ items: fullName: OpenTK.Mathematics.Color3.Seagreen type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Seagreen - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 1200 assemblies: - OpenTK.Mathematics @@ -4627,12 +4083,8 @@ items: fullName: OpenTK.Mathematics.Color3.Seashell type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Seashell - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 1205 assemblies: - OpenTK.Mathematics @@ -4658,12 +4110,8 @@ items: fullName: OpenTK.Mathematics.Color3.Sienna type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Sienna - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 1210 assemblies: - OpenTK.Mathematics @@ -4689,12 +4137,8 @@ items: fullName: OpenTK.Mathematics.Color3.Silver type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Silver - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 1215 assemblies: - OpenTK.Mathematics @@ -4720,12 +4164,8 @@ items: fullName: OpenTK.Mathematics.Color3.Skyblue type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Skyblue - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 1220 assemblies: - OpenTK.Mathematics @@ -4751,12 +4191,8 @@ items: fullName: OpenTK.Mathematics.Color3.Slateblue type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Slateblue - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 1225 assemblies: - OpenTK.Mathematics @@ -4782,12 +4218,8 @@ items: fullName: OpenTK.Mathematics.Color3.Slategray type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Slategray - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 1230 assemblies: - OpenTK.Mathematics @@ -4813,12 +4245,8 @@ items: fullName: OpenTK.Mathematics.Color3.Snow type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Snow - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 1235 assemblies: - OpenTK.Mathematics @@ -4844,12 +4272,8 @@ items: fullName: OpenTK.Mathematics.Color3.Springgreen type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Springgreen - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 1240 assemblies: - OpenTK.Mathematics @@ -4875,12 +4299,8 @@ items: fullName: OpenTK.Mathematics.Color3.Steelblue type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Steelblue - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 1245 assemblies: - OpenTK.Mathematics @@ -4906,12 +4326,8 @@ items: fullName: OpenTK.Mathematics.Color3.Tan type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Tan - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 1250 assemblies: - OpenTK.Mathematics @@ -4937,12 +4353,8 @@ items: fullName: OpenTK.Mathematics.Color3.Teal type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Teal - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 1255 assemblies: - OpenTK.Mathematics @@ -4968,12 +4380,8 @@ items: fullName: OpenTK.Mathematics.Color3.Thistle type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Thistle - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 1260 assemblies: - OpenTK.Mathematics @@ -4999,12 +4407,8 @@ items: fullName: OpenTK.Mathematics.Color3.Tomato type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Tomato - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 1265 assemblies: - OpenTK.Mathematics @@ -5030,12 +4434,8 @@ items: fullName: OpenTK.Mathematics.Color3.Turquoise type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Turquoise - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 1270 assemblies: - OpenTK.Mathematics @@ -5061,12 +4461,8 @@ items: fullName: OpenTK.Mathematics.Color3.Violet type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Violet - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 1275 assemblies: - OpenTK.Mathematics @@ -5092,12 +4488,8 @@ items: fullName: OpenTK.Mathematics.Color3.Wheat type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Wheat - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 1280 assemblies: - OpenTK.Mathematics @@ -5123,12 +4515,8 @@ items: fullName: OpenTK.Mathematics.Color3.White type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: White - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 1285 assemblies: - OpenTK.Mathematics @@ -5154,12 +4542,8 @@ items: fullName: OpenTK.Mathematics.Color3.Whitesmoke type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Whitesmoke - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 1290 assemblies: - OpenTK.Mathematics @@ -5185,12 +4569,8 @@ items: fullName: OpenTK.Mathematics.Color3.Yellow type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Yellow - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 1295 assemblies: - OpenTK.Mathematics @@ -5216,12 +4596,8 @@ items: fullName: OpenTK.Mathematics.Color3.Yellowgreen type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Yellowgreen - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 1300 assemblies: - OpenTK.Mathematics diff --git a/api/OpenTK.Mathematics.Color4-1.yml b/api/OpenTK.Mathematics.Color4-1.yml index 20a6a8f5..c93061bf 100644 --- a/api/OpenTK.Mathematics.Color4-1.yml +++ b/api/OpenTK.Mathematics.Color4-1.yml @@ -28,12 +28,8 @@ items: fullName: OpenTK.Mathematics.Color4 type: Struct source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Color4 - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 53 assemblies: - OpenTK.Mathematics @@ -81,12 +77,8 @@ items: fullName: OpenTK.Mathematics.Color4.X type: Field source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: X - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 59 assemblies: - OpenTK.Mathematics @@ -112,12 +104,8 @@ items: fullName: OpenTK.Mathematics.Color4.Y type: Field source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Y - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 64 assemblies: - OpenTK.Mathematics @@ -143,12 +131,8 @@ items: fullName: OpenTK.Mathematics.Color4.Z type: Field source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Z - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 69 assemblies: - OpenTK.Mathematics @@ -174,12 +158,8 @@ items: fullName: OpenTK.Mathematics.Color4.W type: Field source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: W - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 74 assemblies: - OpenTK.Mathematics @@ -205,12 +185,8 @@ items: fullName: OpenTK.Mathematics.Color4.Color4(float, float, float, float) type: Constructor source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 83 assemblies: - OpenTK.Mathematics @@ -249,12 +225,8 @@ items: fullName: OpenTK.Mathematics.Color4.this[int] type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: this[] - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 95 assemblies: - OpenTK.Mathematics @@ -286,12 +258,8 @@ items: fullName: OpenTK.Mathematics.Color4.explicit operator OpenTK.Mathematics.Color4(in OpenTK.Mathematics.Vector4) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Explicit - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 143 assemblies: - OpenTK.Mathematics @@ -334,12 +302,8 @@ items: fullName: OpenTK.Mathematics.Color4.explicit operator OpenTK.Mathematics.Vector4(in OpenTK.Mathematics.Color4) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Explicit - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 151 assemblies: - OpenTK.Mathematics @@ -382,12 +346,8 @@ items: fullName: OpenTK.Mathematics.Color4.Deconstruct(out float, out float, out float, out float) type: Method source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Deconstruct - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 161 assemblies: - OpenTK.Mathematics @@ -436,12 +396,8 @@ items: fullName: OpenTK.Mathematics.Color4.operator ==(in OpenTK.Mathematics.Color4, in OpenTK.Mathematics.Color4) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Equality - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 176 assemblies: - OpenTK.Mathematics @@ -487,12 +443,8 @@ items: fullName: OpenTK.Mathematics.Color4.operator !=(in OpenTK.Mathematics.Color4, in OpenTK.Mathematics.Color4) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Inequality - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 188 assemblies: - OpenTK.Mathematics @@ -538,12 +490,8 @@ items: fullName: OpenTK.Mathematics.Color4.Equals(OpenTK.Mathematics.Color4) type: Method source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Equals - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 199 assemblies: - OpenTK.Mathematics @@ -588,12 +536,8 @@ items: fullName: OpenTK.Mathematics.Color4.ToString() type: Method source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 209 assemblies: - OpenTK.Mathematics @@ -632,12 +576,8 @@ items: fullName: OpenTK.Mathematics.Color4.Equals(object) type: Method source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Equals - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 220 assemblies: - OpenTK.Mathematics @@ -681,12 +621,8 @@ items: fullName: OpenTK.Mathematics.Color4.GetHashCode() type: Method source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetHashCode - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 230 assemblies: - OpenTK.Mathematics diff --git a/api/OpenTK.Mathematics.Color4.yml b/api/OpenTK.Mathematics.Color4.yml index 969b7a4d..44572a9b 100644 --- a/api/OpenTK.Mathematics.Color4.yml +++ b/api/OpenTK.Mathematics.Color4.yml @@ -170,12 +170,8 @@ items: fullName: OpenTK.Mathematics.Color4 type: Class source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Color4 - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 247 assemblies: - OpenTK.Mathematics @@ -208,12 +204,8 @@ items: fullName: OpenTK.Mathematics.Color4.Add(in OpenTK.Mathematics.Color4, in OpenTK.Mathematics.Color4) type: Method source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Add - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 255 assemblies: - OpenTK.Mathematics @@ -250,12 +242,8 @@ items: fullName: OpenTK.Mathematics.Color4.Subtract(in OpenTK.Mathematics.Color4, in OpenTK.Mathematics.Color4) type: Method source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Subtract - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 264 assemblies: - OpenTK.Mathematics @@ -292,12 +280,8 @@ items: fullName: OpenTK.Mathematics.Color4.Multiply(in OpenTK.Mathematics.Color4, in OpenTK.Mathematics.Color4) type: Method source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Multiply - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 273 assemblies: - OpenTK.Mathematics @@ -334,12 +318,8 @@ items: fullName: OpenTK.Mathematics.Color4.Multiply(in OpenTK.Mathematics.Color4, in float) type: Method source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Multiply - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 282 assemblies: - OpenTK.Mathematics @@ -376,12 +356,8 @@ items: fullName: OpenTK.Mathematics.Color4.Divide(in OpenTK.Mathematics.Color4, in float) type: Method source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Divide - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 291 assemblies: - OpenTK.Mathematics @@ -418,12 +394,8 @@ items: fullName: OpenTK.Mathematics.Color4.ToRgb(in OpenTK.Mathematics.Color4) type: Method source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToRgb - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 299 assemblies: - OpenTK.Mathematics @@ -467,12 +439,8 @@ items: fullName: OpenTK.Mathematics.Color4.ToArgb(in OpenTK.Mathematics.Color4) type: Method source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToArgb - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 308 assemblies: - OpenTK.Mathematics @@ -516,12 +484,8 @@ items: fullName: OpenTK.Mathematics.Color4.ToRgb(in OpenTK.Mathematics.Color4) type: Method source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToRgb - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 317 assemblies: - OpenTK.Mathematics @@ -565,12 +529,8 @@ items: fullName: OpenTK.Mathematics.Color4.ToRgba(in OpenTK.Mathematics.Color4) type: Method source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToRgba - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 326 assemblies: - OpenTK.Mathematics @@ -614,12 +574,8 @@ items: fullName: OpenTK.Mathematics.Color4.ToRgba(in OpenTK.Mathematics.Color4) type: Method source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToRgba - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 335 assemblies: - OpenTK.Mathematics @@ -663,12 +619,8 @@ items: fullName: OpenTK.Mathematics.Color4.ToRgba(in OpenTK.Mathematics.Color4) type: Method source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToRgba - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 344 assemblies: - OpenTK.Mathematics @@ -712,12 +664,8 @@ items: fullName: OpenTK.Mathematics.Color4.ToHsv(in OpenTK.Mathematics.Color4) type: Method source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToHsv - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 353 assemblies: - OpenTK.Mathematics @@ -761,12 +709,8 @@ items: fullName: OpenTK.Mathematics.Color4.ToHsva(in OpenTK.Mathematics.Color4) type: Method source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToHsva - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 362 assemblies: - OpenTK.Mathematics @@ -810,12 +754,8 @@ items: fullName: OpenTK.Mathematics.Color4.ToHsva(in OpenTK.Mathematics.Color4) type: Method source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToHsva - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 371 assemblies: - OpenTK.Mathematics @@ -859,12 +799,8 @@ items: fullName: OpenTK.Mathematics.Color4.ToHsl(in OpenTK.Mathematics.Color4) type: Method source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToHsl - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 380 assemblies: - OpenTK.Mathematics @@ -908,12 +844,8 @@ items: fullName: OpenTK.Mathematics.Color4.ToHsla(in OpenTK.Mathematics.Color4) type: Method source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToHsla - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 389 assemblies: - OpenTK.Mathematics @@ -957,12 +889,8 @@ items: fullName: OpenTK.Mathematics.Color4.ToHsla(in OpenTK.Mathematics.Color4) type: Method source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToHsla - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 398 assemblies: - OpenTK.Mathematics @@ -1005,12 +933,8 @@ items: fullName: OpenTK.Mathematics.Color4.Aliceblue type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Aliceblue - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 405 assemblies: - OpenTK.Mathematics @@ -1036,12 +960,8 @@ items: fullName: OpenTK.Mathematics.Color4.Antiquewhite type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Antiquewhite - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 410 assemblies: - OpenTK.Mathematics @@ -1067,12 +987,8 @@ items: fullName: OpenTK.Mathematics.Color4.Aqua type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Aqua - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 415 assemblies: - OpenTK.Mathematics @@ -1098,12 +1014,8 @@ items: fullName: OpenTK.Mathematics.Color4.Aquamarine type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Aquamarine - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 420 assemblies: - OpenTK.Mathematics @@ -1129,12 +1041,8 @@ items: fullName: OpenTK.Mathematics.Color4.Azure type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Azure - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 425 assemblies: - OpenTK.Mathematics @@ -1160,12 +1068,8 @@ items: fullName: OpenTK.Mathematics.Color4.Beige type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Beige - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 430 assemblies: - OpenTK.Mathematics @@ -1191,12 +1095,8 @@ items: fullName: OpenTK.Mathematics.Color4.Bisque type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Bisque - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 435 assemblies: - OpenTK.Mathematics @@ -1222,12 +1122,8 @@ items: fullName: OpenTK.Mathematics.Color4.Black type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Black - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 440 assemblies: - OpenTK.Mathematics @@ -1253,12 +1149,8 @@ items: fullName: OpenTK.Mathematics.Color4.Blanchedalmond type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Blanchedalmond - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 445 assemblies: - OpenTK.Mathematics @@ -1284,12 +1176,8 @@ items: fullName: OpenTK.Mathematics.Color4.Blue type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Blue - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 450 assemblies: - OpenTK.Mathematics @@ -1315,12 +1203,8 @@ items: fullName: OpenTK.Mathematics.Color4.Blueviolet type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Blueviolet - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 455 assemblies: - OpenTK.Mathematics @@ -1346,12 +1230,8 @@ items: fullName: OpenTK.Mathematics.Color4.Brown type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Brown - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 460 assemblies: - OpenTK.Mathematics @@ -1377,12 +1257,8 @@ items: fullName: OpenTK.Mathematics.Color4.Burlywood type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Burlywood - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 465 assemblies: - OpenTK.Mathematics @@ -1408,12 +1284,8 @@ items: fullName: OpenTK.Mathematics.Color4.Cadetblue type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Cadetblue - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 470 assemblies: - OpenTK.Mathematics @@ -1439,12 +1311,8 @@ items: fullName: OpenTK.Mathematics.Color4.Chartreuse type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Chartreuse - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 475 assemblies: - OpenTK.Mathematics @@ -1470,12 +1338,8 @@ items: fullName: OpenTK.Mathematics.Color4.Chocolate type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Chocolate - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 480 assemblies: - OpenTK.Mathematics @@ -1501,12 +1365,8 @@ items: fullName: OpenTK.Mathematics.Color4.Coral type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Coral - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 485 assemblies: - OpenTK.Mathematics @@ -1532,12 +1392,8 @@ items: fullName: OpenTK.Mathematics.Color4.Cornflowerblue type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Cornflowerblue - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 490 assemblies: - OpenTK.Mathematics @@ -1563,12 +1419,8 @@ items: fullName: OpenTK.Mathematics.Color4.Cornsilk type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Cornsilk - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 495 assemblies: - OpenTK.Mathematics @@ -1594,12 +1446,8 @@ items: fullName: OpenTK.Mathematics.Color4.Crimson type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Crimson - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 500 assemblies: - OpenTK.Mathematics @@ -1625,12 +1473,8 @@ items: fullName: OpenTK.Mathematics.Color4.Cyan type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Cyan - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 505 assemblies: - OpenTK.Mathematics @@ -1656,12 +1500,8 @@ items: fullName: OpenTK.Mathematics.Color4.Darkblue type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Darkblue - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 510 assemblies: - OpenTK.Mathematics @@ -1687,12 +1527,8 @@ items: fullName: OpenTK.Mathematics.Color4.Darkcyan type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Darkcyan - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 515 assemblies: - OpenTK.Mathematics @@ -1718,12 +1554,8 @@ items: fullName: OpenTK.Mathematics.Color4.Darkgoldenrod type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Darkgoldenrod - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 520 assemblies: - OpenTK.Mathematics @@ -1749,12 +1581,8 @@ items: fullName: OpenTK.Mathematics.Color4.Darkgray type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Darkgray - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 525 assemblies: - OpenTK.Mathematics @@ -1780,12 +1608,8 @@ items: fullName: OpenTK.Mathematics.Color4.Darkgreen type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Darkgreen - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 530 assemblies: - OpenTK.Mathematics @@ -1811,12 +1635,8 @@ items: fullName: OpenTK.Mathematics.Color4.Darkkhaki type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Darkkhaki - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 535 assemblies: - OpenTK.Mathematics @@ -1842,12 +1662,8 @@ items: fullName: OpenTK.Mathematics.Color4.Darkmagenta type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Darkmagenta - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 540 assemblies: - OpenTK.Mathematics @@ -1873,12 +1689,8 @@ items: fullName: OpenTK.Mathematics.Color4.Darkolivegreen type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Darkolivegreen - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 545 assemblies: - OpenTK.Mathematics @@ -1904,12 +1716,8 @@ items: fullName: OpenTK.Mathematics.Color4.Darkorange type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Darkorange - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 550 assemblies: - OpenTK.Mathematics @@ -1935,12 +1743,8 @@ items: fullName: OpenTK.Mathematics.Color4.Darkorchid type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Darkorchid - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 555 assemblies: - OpenTK.Mathematics @@ -1966,12 +1770,8 @@ items: fullName: OpenTK.Mathematics.Color4.Darkred type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Darkred - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 560 assemblies: - OpenTK.Mathematics @@ -1997,12 +1797,8 @@ items: fullName: OpenTK.Mathematics.Color4.Darksalmon type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Darksalmon - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 565 assemblies: - OpenTK.Mathematics @@ -2028,12 +1824,8 @@ items: fullName: OpenTK.Mathematics.Color4.Darkseagreen type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Darkseagreen - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 570 assemblies: - OpenTK.Mathematics @@ -2059,12 +1851,8 @@ items: fullName: OpenTK.Mathematics.Color4.Darkslateblue type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Darkslateblue - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 575 assemblies: - OpenTK.Mathematics @@ -2090,12 +1878,8 @@ items: fullName: OpenTK.Mathematics.Color4.Darkslategray type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Darkslategray - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 580 assemblies: - OpenTK.Mathematics @@ -2121,12 +1905,8 @@ items: fullName: OpenTK.Mathematics.Color4.Darkturquoise type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Darkturquoise - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 585 assemblies: - OpenTK.Mathematics @@ -2152,12 +1932,8 @@ items: fullName: OpenTK.Mathematics.Color4.Darkviolet type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Darkviolet - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 590 assemblies: - OpenTK.Mathematics @@ -2183,12 +1959,8 @@ items: fullName: OpenTK.Mathematics.Color4.Deeppink type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Deeppink - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 595 assemblies: - OpenTK.Mathematics @@ -2214,12 +1986,8 @@ items: fullName: OpenTK.Mathematics.Color4.Deepskyblue type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Deepskyblue - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 600 assemblies: - OpenTK.Mathematics @@ -2245,12 +2013,8 @@ items: fullName: OpenTK.Mathematics.Color4.Dimgray type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Dimgray - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 605 assemblies: - OpenTK.Mathematics @@ -2276,12 +2040,8 @@ items: fullName: OpenTK.Mathematics.Color4.Dodgerblue type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Dodgerblue - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 610 assemblies: - OpenTK.Mathematics @@ -2307,12 +2067,8 @@ items: fullName: OpenTK.Mathematics.Color4.Firebrick type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Firebrick - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 615 assemblies: - OpenTK.Mathematics @@ -2338,12 +2094,8 @@ items: fullName: OpenTK.Mathematics.Color4.Floralwhite type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Floralwhite - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 620 assemblies: - OpenTK.Mathematics @@ -2369,12 +2121,8 @@ items: fullName: OpenTK.Mathematics.Color4.Forestgreen type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Forestgreen - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 625 assemblies: - OpenTK.Mathematics @@ -2400,12 +2148,8 @@ items: fullName: OpenTK.Mathematics.Color4.Fuchsia type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Fuchsia - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 630 assemblies: - OpenTK.Mathematics @@ -2431,12 +2175,8 @@ items: fullName: OpenTK.Mathematics.Color4.Gainsboro type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Gainsboro - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 635 assemblies: - OpenTK.Mathematics @@ -2462,12 +2202,8 @@ items: fullName: OpenTK.Mathematics.Color4.Ghostwhite type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Ghostwhite - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 640 assemblies: - OpenTK.Mathematics @@ -2493,12 +2229,8 @@ items: fullName: OpenTK.Mathematics.Color4.Gold type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Gold - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 645 assemblies: - OpenTK.Mathematics @@ -2524,12 +2256,8 @@ items: fullName: OpenTK.Mathematics.Color4.Goldenrod type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Goldenrod - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 650 assemblies: - OpenTK.Mathematics @@ -2555,12 +2283,8 @@ items: fullName: OpenTK.Mathematics.Color4.Gray type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Gray - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 655 assemblies: - OpenTK.Mathematics @@ -2586,12 +2310,8 @@ items: fullName: OpenTK.Mathematics.Color4.Green type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Green - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 660 assemblies: - OpenTK.Mathematics @@ -2617,12 +2337,8 @@ items: fullName: OpenTK.Mathematics.Color4.Greenyellow type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Greenyellow - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 665 assemblies: - OpenTK.Mathematics @@ -2648,12 +2364,8 @@ items: fullName: OpenTK.Mathematics.Color4.Honeydew type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Honeydew - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 670 assemblies: - OpenTK.Mathematics @@ -2679,12 +2391,8 @@ items: fullName: OpenTK.Mathematics.Color4.Hotpink type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Hotpink - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 675 assemblies: - OpenTK.Mathematics @@ -2710,12 +2418,8 @@ items: fullName: OpenTK.Mathematics.Color4.Indianred type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Indianred - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 680 assemblies: - OpenTK.Mathematics @@ -2741,12 +2445,8 @@ items: fullName: OpenTK.Mathematics.Color4.Indigo type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Indigo - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 685 assemblies: - OpenTK.Mathematics @@ -2772,12 +2472,8 @@ items: fullName: OpenTK.Mathematics.Color4.Ivory type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Ivory - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 690 assemblies: - OpenTK.Mathematics @@ -2803,12 +2499,8 @@ items: fullName: OpenTK.Mathematics.Color4.Khaki type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Khaki - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 695 assemblies: - OpenTK.Mathematics @@ -2834,12 +2526,8 @@ items: fullName: OpenTK.Mathematics.Color4.Lavender type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Lavender - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 700 assemblies: - OpenTK.Mathematics @@ -2865,12 +2553,8 @@ items: fullName: OpenTK.Mathematics.Color4.Lavenderblush type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Lavenderblush - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 705 assemblies: - OpenTK.Mathematics @@ -2896,12 +2580,8 @@ items: fullName: OpenTK.Mathematics.Color4.Lawngreen type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Lawngreen - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 710 assemblies: - OpenTK.Mathematics @@ -2927,12 +2607,8 @@ items: fullName: OpenTK.Mathematics.Color4.Lemonchiffon type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Lemonchiffon - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 715 assemblies: - OpenTK.Mathematics @@ -2958,12 +2634,8 @@ items: fullName: OpenTK.Mathematics.Color4.Lightblue type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Lightblue - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 720 assemblies: - OpenTK.Mathematics @@ -2989,12 +2661,8 @@ items: fullName: OpenTK.Mathematics.Color4.Lightcoral type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Lightcoral - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 725 assemblies: - OpenTK.Mathematics @@ -3020,12 +2688,8 @@ items: fullName: OpenTK.Mathematics.Color4.Lightcyan type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Lightcyan - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 730 assemblies: - OpenTK.Mathematics @@ -3051,12 +2715,8 @@ items: fullName: OpenTK.Mathematics.Color4.Lightgoldenrodyellow type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Lightgoldenrodyellow - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 735 assemblies: - OpenTK.Mathematics @@ -3082,12 +2742,8 @@ items: fullName: OpenTK.Mathematics.Color4.Lightgray type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Lightgray - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 740 assemblies: - OpenTK.Mathematics @@ -3113,12 +2769,8 @@ items: fullName: OpenTK.Mathematics.Color4.Lightgreen type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Lightgreen - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 745 assemblies: - OpenTK.Mathematics @@ -3144,12 +2796,8 @@ items: fullName: OpenTK.Mathematics.Color4.Lightpink type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Lightpink - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 750 assemblies: - OpenTK.Mathematics @@ -3175,12 +2823,8 @@ items: fullName: OpenTK.Mathematics.Color4.Lightsalmon type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Lightsalmon - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 755 assemblies: - OpenTK.Mathematics @@ -3206,12 +2850,8 @@ items: fullName: OpenTK.Mathematics.Color4.Lightseagreen type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Lightseagreen - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 760 assemblies: - OpenTK.Mathematics @@ -3237,12 +2877,8 @@ items: fullName: OpenTK.Mathematics.Color4.Lightskyblue type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Lightskyblue - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 765 assemblies: - OpenTK.Mathematics @@ -3268,12 +2904,8 @@ items: fullName: OpenTK.Mathematics.Color4.Lightslategray type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Lightslategray - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 770 assemblies: - OpenTK.Mathematics @@ -3299,12 +2931,8 @@ items: fullName: OpenTK.Mathematics.Color4.Lightsteelblue type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Lightsteelblue - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 775 assemblies: - OpenTK.Mathematics @@ -3330,12 +2958,8 @@ items: fullName: OpenTK.Mathematics.Color4.Lightyellow type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Lightyellow - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 780 assemblies: - OpenTK.Mathematics @@ -3361,12 +2985,8 @@ items: fullName: OpenTK.Mathematics.Color4.Lime type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Lime - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 785 assemblies: - OpenTK.Mathematics @@ -3392,12 +3012,8 @@ items: fullName: OpenTK.Mathematics.Color4.Limegreen type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Limegreen - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 790 assemblies: - OpenTK.Mathematics @@ -3423,12 +3039,8 @@ items: fullName: OpenTK.Mathematics.Color4.Linen type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Linen - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 795 assemblies: - OpenTK.Mathematics @@ -3454,12 +3066,8 @@ items: fullName: OpenTK.Mathematics.Color4.Magenta type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Magenta - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 800 assemblies: - OpenTK.Mathematics @@ -3485,12 +3093,8 @@ items: fullName: OpenTK.Mathematics.Color4.Maroon type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Maroon - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 805 assemblies: - OpenTK.Mathematics @@ -3516,12 +3120,8 @@ items: fullName: OpenTK.Mathematics.Color4.Mediumaquamarine type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Mediumaquamarine - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 810 assemblies: - OpenTK.Mathematics @@ -3547,12 +3147,8 @@ items: fullName: OpenTK.Mathematics.Color4.Mediumblue type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Mediumblue - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 815 assemblies: - OpenTK.Mathematics @@ -3578,12 +3174,8 @@ items: fullName: OpenTK.Mathematics.Color4.Mediumorchid type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Mediumorchid - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 820 assemblies: - OpenTK.Mathematics @@ -3609,12 +3201,8 @@ items: fullName: OpenTK.Mathematics.Color4.Mediumpurple type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Mediumpurple - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 825 assemblies: - OpenTK.Mathematics @@ -3640,12 +3228,8 @@ items: fullName: OpenTK.Mathematics.Color4.Mediumseagreen type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Mediumseagreen - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 830 assemblies: - OpenTK.Mathematics @@ -3671,12 +3255,8 @@ items: fullName: OpenTK.Mathematics.Color4.Mediumslateblue type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Mediumslateblue - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 835 assemblies: - OpenTK.Mathematics @@ -3702,12 +3282,8 @@ items: fullName: OpenTK.Mathematics.Color4.Mediumspringgreen type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Mediumspringgreen - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 840 assemblies: - OpenTK.Mathematics @@ -3733,12 +3309,8 @@ items: fullName: OpenTK.Mathematics.Color4.Mediumturquoise type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Mediumturquoise - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 845 assemblies: - OpenTK.Mathematics @@ -3764,12 +3336,8 @@ items: fullName: OpenTK.Mathematics.Color4.Mediumvioletred type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Mediumvioletred - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 850 assemblies: - OpenTK.Mathematics @@ -3795,12 +3363,8 @@ items: fullName: OpenTK.Mathematics.Color4.Midnightblue type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Midnightblue - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 855 assemblies: - OpenTK.Mathematics @@ -3826,12 +3390,8 @@ items: fullName: OpenTK.Mathematics.Color4.Mintcream type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Mintcream - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 860 assemblies: - OpenTK.Mathematics @@ -3857,12 +3417,8 @@ items: fullName: OpenTK.Mathematics.Color4.Mistyrose type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Mistyrose - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 865 assemblies: - OpenTK.Mathematics @@ -3888,12 +3444,8 @@ items: fullName: OpenTK.Mathematics.Color4.Moccasin type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Moccasin - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 870 assemblies: - OpenTK.Mathematics @@ -3919,12 +3471,8 @@ items: fullName: OpenTK.Mathematics.Color4.Navajowhite type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Navajowhite - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 875 assemblies: - OpenTK.Mathematics @@ -3950,12 +3498,8 @@ items: fullName: OpenTK.Mathematics.Color4.Navy type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Navy - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 880 assemblies: - OpenTK.Mathematics @@ -3981,12 +3525,8 @@ items: fullName: OpenTK.Mathematics.Color4.Oldlace type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Oldlace - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 885 assemblies: - OpenTK.Mathematics @@ -4012,12 +3552,8 @@ items: fullName: OpenTK.Mathematics.Color4.Olive type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Olive - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 890 assemblies: - OpenTK.Mathematics @@ -4043,12 +3579,8 @@ items: fullName: OpenTK.Mathematics.Color4.Olivedrab type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Olivedrab - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 895 assemblies: - OpenTK.Mathematics @@ -4074,12 +3606,8 @@ items: fullName: OpenTK.Mathematics.Color4.Orange type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Orange - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 900 assemblies: - OpenTK.Mathematics @@ -4105,12 +3633,8 @@ items: fullName: OpenTK.Mathematics.Color4.Orangered type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Orangered - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 905 assemblies: - OpenTK.Mathematics @@ -4136,12 +3660,8 @@ items: fullName: OpenTK.Mathematics.Color4.Orchid type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Orchid - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 910 assemblies: - OpenTK.Mathematics @@ -4167,12 +3687,8 @@ items: fullName: OpenTK.Mathematics.Color4.Palegoldenrod type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Palegoldenrod - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 915 assemblies: - OpenTK.Mathematics @@ -4198,12 +3714,8 @@ items: fullName: OpenTK.Mathematics.Color4.Palegreen type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Palegreen - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 920 assemblies: - OpenTK.Mathematics @@ -4229,12 +3741,8 @@ items: fullName: OpenTK.Mathematics.Color4.Paleturquoise type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Paleturquoise - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 925 assemblies: - OpenTK.Mathematics @@ -4260,12 +3768,8 @@ items: fullName: OpenTK.Mathematics.Color4.Palevioletred type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Palevioletred - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 930 assemblies: - OpenTK.Mathematics @@ -4291,12 +3795,8 @@ items: fullName: OpenTK.Mathematics.Color4.Papayawhip type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Papayawhip - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 935 assemblies: - OpenTK.Mathematics @@ -4322,12 +3822,8 @@ items: fullName: OpenTK.Mathematics.Color4.Peachpuff type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Peachpuff - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 940 assemblies: - OpenTK.Mathematics @@ -4353,12 +3849,8 @@ items: fullName: OpenTK.Mathematics.Color4.Peru type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Peru - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 945 assemblies: - OpenTK.Mathematics @@ -4384,12 +3876,8 @@ items: fullName: OpenTK.Mathematics.Color4.Pink type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Pink - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 950 assemblies: - OpenTK.Mathematics @@ -4415,12 +3903,8 @@ items: fullName: OpenTK.Mathematics.Color4.Plum type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Plum - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 955 assemblies: - OpenTK.Mathematics @@ -4446,12 +3930,8 @@ items: fullName: OpenTK.Mathematics.Color4.Powderblue type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Powderblue - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 960 assemblies: - OpenTK.Mathematics @@ -4477,12 +3957,8 @@ items: fullName: OpenTK.Mathematics.Color4.Purple type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Purple - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 965 assemblies: - OpenTK.Mathematics @@ -4508,12 +3984,8 @@ items: fullName: OpenTK.Mathematics.Color4.Red type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Red - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 970 assemblies: - OpenTK.Mathematics @@ -4539,12 +4011,8 @@ items: fullName: OpenTK.Mathematics.Color4.Rosybrown type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Rosybrown - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 975 assemblies: - OpenTK.Mathematics @@ -4570,12 +4038,8 @@ items: fullName: OpenTK.Mathematics.Color4.Royalblue type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Royalblue - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 980 assemblies: - OpenTK.Mathematics @@ -4601,12 +4065,8 @@ items: fullName: OpenTK.Mathematics.Color4.Saddlebrown type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Saddlebrown - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 985 assemblies: - OpenTK.Mathematics @@ -4632,12 +4092,8 @@ items: fullName: OpenTK.Mathematics.Color4.Salmon type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Salmon - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 990 assemblies: - OpenTK.Mathematics @@ -4663,12 +4119,8 @@ items: fullName: OpenTK.Mathematics.Color4.Sandybrown type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Sandybrown - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 995 assemblies: - OpenTK.Mathematics @@ -4694,12 +4146,8 @@ items: fullName: OpenTK.Mathematics.Color4.Seagreen type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Seagreen - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 1000 assemblies: - OpenTK.Mathematics @@ -4725,12 +4173,8 @@ items: fullName: OpenTK.Mathematics.Color4.Seashell type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Seashell - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 1005 assemblies: - OpenTK.Mathematics @@ -4756,12 +4200,8 @@ items: fullName: OpenTK.Mathematics.Color4.Sienna type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Sienna - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 1010 assemblies: - OpenTK.Mathematics @@ -4787,12 +4227,8 @@ items: fullName: OpenTK.Mathematics.Color4.Silver type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Silver - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 1015 assemblies: - OpenTK.Mathematics @@ -4818,12 +4254,8 @@ items: fullName: OpenTK.Mathematics.Color4.Skyblue type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Skyblue - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 1020 assemblies: - OpenTK.Mathematics @@ -4849,12 +4281,8 @@ items: fullName: OpenTK.Mathematics.Color4.Slateblue type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Slateblue - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 1025 assemblies: - OpenTK.Mathematics @@ -4880,12 +4308,8 @@ items: fullName: OpenTK.Mathematics.Color4.Slategray type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Slategray - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 1030 assemblies: - OpenTK.Mathematics @@ -4911,12 +4335,8 @@ items: fullName: OpenTK.Mathematics.Color4.Snow type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Snow - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 1035 assemblies: - OpenTK.Mathematics @@ -4942,12 +4362,8 @@ items: fullName: OpenTK.Mathematics.Color4.Springgreen type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Springgreen - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 1040 assemblies: - OpenTK.Mathematics @@ -4973,12 +4389,8 @@ items: fullName: OpenTK.Mathematics.Color4.Steelblue type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Steelblue - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 1045 assemblies: - OpenTK.Mathematics @@ -5004,12 +4416,8 @@ items: fullName: OpenTK.Mathematics.Color4.Tan type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Tan - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 1050 assemblies: - OpenTK.Mathematics @@ -5035,12 +4443,8 @@ items: fullName: OpenTK.Mathematics.Color4.Teal type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Teal - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 1055 assemblies: - OpenTK.Mathematics @@ -5066,12 +4470,8 @@ items: fullName: OpenTK.Mathematics.Color4.Thistle type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Thistle - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 1060 assemblies: - OpenTK.Mathematics @@ -5097,12 +4497,8 @@ items: fullName: OpenTK.Mathematics.Color4.Tomato type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Tomato - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 1065 assemblies: - OpenTK.Mathematics @@ -5128,12 +4524,8 @@ items: fullName: OpenTK.Mathematics.Color4.Turquoise type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Turquoise - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 1070 assemblies: - OpenTK.Mathematics @@ -5159,12 +4551,8 @@ items: fullName: OpenTK.Mathematics.Color4.Violet type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Violet - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 1075 assemblies: - OpenTK.Mathematics @@ -5190,12 +4578,8 @@ items: fullName: OpenTK.Mathematics.Color4.Wheat type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Wheat - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 1080 assemblies: - OpenTK.Mathematics @@ -5221,12 +4605,8 @@ items: fullName: OpenTK.Mathematics.Color4.White type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: White - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 1085 assemblies: - OpenTK.Mathematics @@ -5252,12 +4632,8 @@ items: fullName: OpenTK.Mathematics.Color4.Whitesmoke type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Whitesmoke - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 1090 assemblies: - OpenTK.Mathematics @@ -5283,12 +4659,8 @@ items: fullName: OpenTK.Mathematics.Color4.Yellow type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Yellow - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 1095 assemblies: - OpenTK.Mathematics @@ -5314,12 +4686,8 @@ items: fullName: OpenTK.Mathematics.Color4.Yellowgreen type: Property source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Yellowgreen - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 1100 assemblies: - OpenTK.Mathematics diff --git a/api/OpenTK.Mathematics.Hsl.yml b/api/OpenTK.Mathematics.Hsl.yml index dcb41a5e..96c7af0d 100644 --- a/api/OpenTK.Mathematics.Hsl.yml +++ b/api/OpenTK.Mathematics.Hsl.yml @@ -13,12 +13,8 @@ items: fullName: OpenTK.Mathematics.Hsl type: Class source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Hsl - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 31 assemblies: - OpenTK.Mathematics diff --git a/api/OpenTK.Mathematics.Hsla.yml b/api/OpenTK.Mathematics.Hsla.yml index 77e1d849..9491df40 100644 --- a/api/OpenTK.Mathematics.Hsla.yml +++ b/api/OpenTK.Mathematics.Hsla.yml @@ -13,12 +13,8 @@ items: fullName: OpenTK.Mathematics.Hsla type: Class source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Hsla - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 38 assemblies: - OpenTK.Mathematics diff --git a/api/OpenTK.Mathematics.Hsv.yml b/api/OpenTK.Mathematics.Hsv.yml index 99895a80..99dbc8a9 100644 --- a/api/OpenTK.Mathematics.Hsv.yml +++ b/api/OpenTK.Mathematics.Hsv.yml @@ -13,12 +13,8 @@ items: fullName: OpenTK.Mathematics.Hsv type: Class source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Hsv - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 24 assemblies: - OpenTK.Mathematics diff --git a/api/OpenTK.Mathematics.Hsva.yml b/api/OpenTK.Mathematics.Hsva.yml index 28f7a582..bb542d3f 100644 --- a/api/OpenTK.Mathematics.Hsva.yml +++ b/api/OpenTK.Mathematics.Hsva.yml @@ -13,12 +13,8 @@ items: fullName: OpenTK.Mathematics.Hsva type: Class source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Hsva - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 31 assemblies: - OpenTK.Mathematics diff --git a/api/OpenTK.Mathematics.IColorSpace3.yml b/api/OpenTK.Mathematics.IColorSpace3.yml index 90ac8426..730af47d 100644 --- a/api/OpenTK.Mathematics.IColorSpace3.yml +++ b/api/OpenTK.Mathematics.IColorSpace3.yml @@ -13,12 +13,8 @@ items: fullName: OpenTK.Mathematics.IColorSpace3 type: Interface source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: IColorSpace3 - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 10 assemblies: - OpenTK.Mathematics diff --git a/api/OpenTK.Mathematics.IColorSpace4.yml b/api/OpenTK.Mathematics.IColorSpace4.yml index cb0aaefb..a37c6425 100644 --- a/api/OpenTK.Mathematics.IColorSpace4.yml +++ b/api/OpenTK.Mathematics.IColorSpace4.yml @@ -13,12 +13,8 @@ items: fullName: OpenTK.Mathematics.IColorSpace4 type: Interface source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: IColorSpace4 - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 10 assemblies: - OpenTK.Mathematics diff --git a/api/OpenTK.Mathematics.MathHelper.yml b/api/OpenTK.Mathematics.MathHelper.yml index c8c675d5..4b1da509 100644 --- a/api/OpenTK.Mathematics.MathHelper.yml +++ b/api/OpenTK.Mathematics.MathHelper.yml @@ -5,79 +5,29 @@ items: id: MathHelper parent: OpenTK.Mathematics children: - - OpenTK.Mathematics.MathHelper.Abs(System.Decimal) - - OpenTK.Mathematics.MathHelper.Abs(System.Double) - - OpenTK.Mathematics.MathHelper.Abs(System.Int16) - - OpenTK.Mathematics.MathHelper.Abs(System.Int32) - - OpenTK.Mathematics.MathHelper.Abs(System.Int64) - - OpenTK.Mathematics.MathHelper.Abs(System.SByte) - - OpenTK.Mathematics.MathHelper.Abs(System.Single) - - OpenTK.Mathematics.MathHelper.Acos(System.Double) - OpenTK.Mathematics.MathHelper.ApproximatelyEqual(System.Single,System.Single,System.Int32) - OpenTK.Mathematics.MathHelper.ApproximatelyEqualEpsilon(System.Double,System.Double,System.Double) - OpenTK.Mathematics.MathHelper.ApproximatelyEqualEpsilon(System.Single,System.Single,System.Single) - OpenTK.Mathematics.MathHelper.ApproximatelyEquivalent(System.Double,System.Double,System.Double) - OpenTK.Mathematics.MathHelper.ApproximatelyEquivalent(System.Single,System.Single,System.Single) - - OpenTK.Mathematics.MathHelper.Asin(System.Double) - - OpenTK.Mathematics.MathHelper.Atan(System.Double) - - OpenTK.Mathematics.MathHelper.Atan2(System.Double,System.Double) - - OpenTK.Mathematics.MathHelper.BigMul(System.Int32,System.Int32) - OpenTK.Mathematics.MathHelper.BinomialCoefficient(System.Int32,System.Int32) - - OpenTK.Mathematics.MathHelper.Ceiling(System.Decimal) - - OpenTK.Mathematics.MathHelper.Ceiling(System.Double) - - OpenTK.Mathematics.MathHelper.Clamp(System.Double,System.Double,System.Double) - - OpenTK.Mathematics.MathHelper.Clamp(System.Int32,System.Int32,System.Int32) - - OpenTK.Mathematics.MathHelper.Clamp(System.Single,System.Single,System.Single) - OpenTK.Mathematics.MathHelper.ClampAngle(System.Double) - OpenTK.Mathematics.MathHelper.ClampAngle(System.Single) - OpenTK.Mathematics.MathHelper.ClampRadians(System.Double) - OpenTK.Mathematics.MathHelper.ClampRadians(System.Single) - - OpenTK.Mathematics.MathHelper.Cos(System.Double) - - OpenTK.Mathematics.MathHelper.Cosh(System.Double) - OpenTK.Mathematics.MathHelper.DegreesToRadians(System.Double) - OpenTK.Mathematics.MathHelper.DegreesToRadians(System.Single) - - OpenTK.Mathematics.MathHelper.DivRem(System.Int32,System.Int32,System.Int32@) - - OpenTK.Mathematics.MathHelper.DivRem(System.Int64,System.Int64,System.Int64@) - OpenTK.Mathematics.MathHelper.E - - OpenTK.Mathematics.MathHelper.Exp(System.Double) + - OpenTK.Mathematics.MathHelper.Elerp(System.Double,System.Double,System.Double) + - OpenTK.Mathematics.MathHelper.Elerp(System.Single,System.Single,System.Single) - OpenTK.Mathematics.MathHelper.Factorial(System.Int32) - - OpenTK.Mathematics.MathHelper.Floor(System.Decimal) - - OpenTK.Mathematics.MathHelper.Floor(System.Double) - - OpenTK.Mathematics.MathHelper.IEEERemainder(System.Double,System.Double) - - OpenTK.Mathematics.MathHelper.InverseSqrtFast(System.Double) - - OpenTK.Mathematics.MathHelper.InverseSqrtFast(System.Single) - OpenTK.Mathematics.MathHelper.Lerp(System.Double,System.Double,System.Double) - OpenTK.Mathematics.MathHelper.Lerp(System.Single,System.Single,System.Single) - - OpenTK.Mathematics.MathHelper.Log(System.Double) - - OpenTK.Mathematics.MathHelper.Log(System.Double,System.Double) - - OpenTK.Mathematics.MathHelper.Log10(System.Double) - OpenTK.Mathematics.MathHelper.Log10E - - OpenTK.Mathematics.MathHelper.Log2(System.Double) - OpenTK.Mathematics.MathHelper.Log2E - OpenTK.Mathematics.MathHelper.MapRange(System.Double,System.Double,System.Double,System.Double,System.Double) - OpenTK.Mathematics.MathHelper.MapRange(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32) - OpenTK.Mathematics.MathHelper.MapRange(System.Single,System.Single,System.Single,System.Single,System.Single) - - OpenTK.Mathematics.MathHelper.Max(System.Byte,System.Byte) - - OpenTK.Mathematics.MathHelper.Max(System.Decimal,System.Decimal) - - OpenTK.Mathematics.MathHelper.Max(System.Int16,System.Int16) - - OpenTK.Mathematics.MathHelper.Max(System.Int32,System.Int32) - - OpenTK.Mathematics.MathHelper.Max(System.Int64,System.Int64) - - OpenTK.Mathematics.MathHelper.Max(System.SByte,System.SByte) - - OpenTK.Mathematics.MathHelper.Max(System.Single,System.Single) - - OpenTK.Mathematics.MathHelper.Max(System.UInt16,System.UInt16) - - OpenTK.Mathematics.MathHelper.Max(System.UInt32,System.UInt32) - - OpenTK.Mathematics.MathHelper.Max(System.UInt64,System.UInt64) - - OpenTK.Mathematics.MathHelper.Min(System.Byte,System.Byte) - - OpenTK.Mathematics.MathHelper.Min(System.Decimal,System.Decimal) - - OpenTK.Mathematics.MathHelper.Min(System.Double,System.Double) - - OpenTK.Mathematics.MathHelper.Min(System.Int16,System.Int16) - - OpenTK.Mathematics.MathHelper.Min(System.Int32,System.Int32) - - OpenTK.Mathematics.MathHelper.Min(System.Int64,System.Int64) - - OpenTK.Mathematics.MathHelper.Min(System.SByte,System.SByte) - - OpenTK.Mathematics.MathHelper.Min(System.Single,System.Single) - - OpenTK.Mathematics.MathHelper.Min(System.UInt16,System.UInt16) - - OpenTK.Mathematics.MathHelper.Min(System.UInt32,System.UInt32) - - OpenTK.Mathematics.MathHelper.Min(System.UInt64,System.UInt64) - OpenTK.Mathematics.MathHelper.NextPowerOfTwo(System.Double) - OpenTK.Mathematics.MathHelper.NextPowerOfTwo(System.Int32) - OpenTK.Mathematics.MathHelper.NextPowerOfTwo(System.Int64) @@ -91,33 +41,10 @@ items: - OpenTK.Mathematics.MathHelper.PiOver3 - OpenTK.Mathematics.MathHelper.PiOver4 - OpenTK.Mathematics.MathHelper.PiOver6 - - OpenTK.Mathematics.MathHelper.Pow(System.Double,System.Double) - OpenTK.Mathematics.MathHelper.RadiansToDegrees(System.Double) - OpenTK.Mathematics.MathHelper.RadiansToDegrees(System.Single) - - OpenTK.Mathematics.MathHelper.Round(System.Decimal) - - OpenTK.Mathematics.MathHelper.Round(System.Decimal,System.Int32) - - OpenTK.Mathematics.MathHelper.Round(System.Decimal,System.Int32,System.MidpointRounding) - - OpenTK.Mathematics.MathHelper.Round(System.Decimal,System.MidpointRounding) - - OpenTK.Mathematics.MathHelper.Round(System.Double) - - OpenTK.Mathematics.MathHelper.Round(System.Double,System.Int32) - - OpenTK.Mathematics.MathHelper.Round(System.Double,System.Int32,System.MidpointRounding) - - OpenTK.Mathematics.MathHelper.Round(System.Double,System.MidpointRounding) - - OpenTK.Mathematics.MathHelper.Sign(System.Decimal) - - OpenTK.Mathematics.MathHelper.Sign(System.Double) - - OpenTK.Mathematics.MathHelper.Sign(System.Int16) - - OpenTK.Mathematics.MathHelper.Sign(System.Int32) - - OpenTK.Mathematics.MathHelper.Sign(System.Int64) - - OpenTK.Mathematics.MathHelper.Sign(System.SByte) - - OpenTK.Mathematics.MathHelper.Sign(System.Single) - - OpenTK.Mathematics.MathHelper.Sin(System.Double) - - OpenTK.Mathematics.MathHelper.Sinh(System.Double) - - OpenTK.Mathematics.MathHelper.Sqrt(System.Double) - OpenTK.Mathematics.MathHelper.Swap``1(``0@,``0@) - - OpenTK.Mathematics.MathHelper.Tan(System.Double) - - OpenTK.Mathematics.MathHelper.Tanh(System.Double) - OpenTK.Mathematics.MathHelper.ThreePiOver2 - - OpenTK.Mathematics.MathHelper.Truncate(System.Decimal) - - OpenTK.Mathematics.MathHelper.Truncate(System.Double) - OpenTK.Mathematics.MathHelper.TwoPi langs: - csharp @@ -127,12 +54,8 @@ items: fullName: OpenTK.Mathematics.MathHelper type: Class source: - remote: - path: src/OpenTK.Mathematics/MathHelper.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MathHelper - path: opentk/src/OpenTK.Mathematics/MathHelper.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\MathHelper.cs startLine: 18 assemblies: - OpenTK.Mathematics @@ -164,12 +87,8 @@ items: fullName: OpenTK.Mathematics.MathHelper.Pi type: Field source: - remote: - path: src/OpenTK.Mathematics/MathHelper.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Pi - path: opentk/src/OpenTK.Mathematics/MathHelper.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\MathHelper.cs startLine: 23 assemblies: - OpenTK.Mathematics @@ -193,12 +112,8 @@ items: fullName: OpenTK.Mathematics.MathHelper.PiOver2 type: Field source: - remote: - path: src/OpenTK.Mathematics/MathHelper.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: PiOver2 - path: opentk/src/OpenTK.Mathematics/MathHelper.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\MathHelper.cs startLine: 28 assemblies: - OpenTK.Mathematics @@ -222,12 +137,8 @@ items: fullName: OpenTK.Mathematics.MathHelper.PiOver3 type: Field source: - remote: - path: src/OpenTK.Mathematics/MathHelper.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: PiOver3 - path: opentk/src/OpenTK.Mathematics/MathHelper.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\MathHelper.cs startLine: 33 assemblies: - OpenTK.Mathematics @@ -251,12 +162,8 @@ items: fullName: OpenTK.Mathematics.MathHelper.PiOver4 type: Field source: - remote: - path: src/OpenTK.Mathematics/MathHelper.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: PiOver4 - path: opentk/src/OpenTK.Mathematics/MathHelper.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\MathHelper.cs startLine: 38 assemblies: - OpenTK.Mathematics @@ -280,12 +187,8 @@ items: fullName: OpenTK.Mathematics.MathHelper.PiOver6 type: Field source: - remote: - path: src/OpenTK.Mathematics/MathHelper.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: PiOver6 - path: opentk/src/OpenTK.Mathematics/MathHelper.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\MathHelper.cs startLine: 43 assemblies: - OpenTK.Mathematics @@ -309,12 +212,8 @@ items: fullName: OpenTK.Mathematics.MathHelper.TwoPi type: Field source: - remote: - path: src/OpenTK.Mathematics/MathHelper.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TwoPi - path: opentk/src/OpenTK.Mathematics/MathHelper.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\MathHelper.cs startLine: 48 assemblies: - OpenTK.Mathematics @@ -338,12 +237,8 @@ items: fullName: OpenTK.Mathematics.MathHelper.ThreePiOver2 type: Field source: - remote: - path: src/OpenTK.Mathematics/MathHelper.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ThreePiOver2 - path: opentk/src/OpenTK.Mathematics/MathHelper.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\MathHelper.cs startLine: 53 assemblies: - OpenTK.Mathematics @@ -367,12 +262,8 @@ items: fullName: OpenTK.Mathematics.MathHelper.E type: Field source: - remote: - path: src/OpenTK.Mathematics/MathHelper.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: E - path: opentk/src/OpenTK.Mathematics/MathHelper.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\MathHelper.cs startLine: 58 assemblies: - OpenTK.Mathematics @@ -396,12 +287,8 @@ items: fullName: OpenTK.Mathematics.MathHelper.Log10E type: Field source: - remote: - path: src/OpenTK.Mathematics/MathHelper.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Log10E - path: opentk/src/OpenTK.Mathematics/MathHelper.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\MathHelper.cs startLine: 63 assemblies: - OpenTK.Mathematics @@ -425,12 +312,8 @@ items: fullName: OpenTK.Mathematics.MathHelper.Log2E type: Field source: - remote: - path: src/OpenTK.Mathematics/MathHelper.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Log2E - path: opentk/src/OpenTK.Mathematics/MathHelper.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\MathHelper.cs startLine: 68 assemblies: - OpenTK.Mathematics @@ -442,3545 +325,6 @@ items: return: type: System.Single content.vb: Public Const Log2E As Single = 1.442695 -- uid: OpenTK.Mathematics.MathHelper.Abs(System.Decimal) - commentId: M:OpenTK.Mathematics.MathHelper.Abs(System.Decimal) - id: Abs(System.Decimal) - parent: OpenTK.Mathematics.MathHelper - langs: - - csharp - - vb - name: Abs(decimal) - nameWithType: MathHelper.Abs(decimal) - fullName: OpenTK.Mathematics.MathHelper.Abs(decimal) - type: Method - source: - remote: - path: src/OpenTK.Mathematics/MathHelper.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Abs - path: opentk/src/OpenTK.Mathematics/MathHelper.cs - startLine: 75 - assemblies: - - OpenTK.Mathematics - namespace: OpenTK.Mathematics - summary: Returns the absolute value of a decimal number. - example: [] - syntax: - content: >- - [Pure] - - public static decimal Abs(decimal n) - parameters: - - id: n - type: System.Decimal - description: A number that is greater than or equal to MinValue, but less than or equal to MaxValue. - return: - type: System.Decimal - description: A decimal number, x, such that 0 ≤ x ≤ MaxValue. - content.vb: >- - - - Public Shared Function Abs(n As Decimal) As Decimal - overload: OpenTK.Mathematics.MathHelper.Abs* - attributes: - - type: System.Diagnostics.Contracts.PureAttribute - ctor: System.Diagnostics.Contracts.PureAttribute.#ctor - arguments: [] - nameWithType.vb: MathHelper.Abs(Decimal) - fullName.vb: OpenTK.Mathematics.MathHelper.Abs(Decimal) - name.vb: Abs(Decimal) -- uid: OpenTK.Mathematics.MathHelper.Abs(System.Double) - commentId: M:OpenTK.Mathematics.MathHelper.Abs(System.Double) - id: Abs(System.Double) - parent: OpenTK.Mathematics.MathHelper - langs: - - csharp - - vb - name: Abs(double) - nameWithType: MathHelper.Abs(double) - fullName: OpenTK.Mathematics.MathHelper.Abs(double) - type: Method - source: - remote: - path: src/OpenTK.Mathematics/MathHelper.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Abs - path: opentk/src/OpenTK.Mathematics/MathHelper.cs - startLine: 83 - assemblies: - - OpenTK.Mathematics - namespace: OpenTK.Mathematics - summary: Returns the absolute value of a double number. - example: [] - syntax: - content: >- - [Pure] - - public static double Abs(double n) - parameters: - - id: n - type: System.Double - description: A number that is greater than or equal to MinValue, but less than or equal to MaxValue. - return: - type: System.Double - description: A double number, x, such that 0 ≤ x ≤ MaxValue. - content.vb: >- - - - Public Shared Function Abs(n As Double) As Double - overload: OpenTK.Mathematics.MathHelper.Abs* - attributes: - - type: System.Diagnostics.Contracts.PureAttribute - ctor: System.Diagnostics.Contracts.PureAttribute.#ctor - arguments: [] - nameWithType.vb: MathHelper.Abs(Double) - fullName.vb: OpenTK.Mathematics.MathHelper.Abs(Double) - name.vb: Abs(Double) -- uid: OpenTK.Mathematics.MathHelper.Abs(System.Int16) - commentId: M:OpenTK.Mathematics.MathHelper.Abs(System.Int16) - id: Abs(System.Int16) - parent: OpenTK.Mathematics.MathHelper - langs: - - csharp - - vb - name: Abs(short) - nameWithType: MathHelper.Abs(short) - fullName: OpenTK.Mathematics.MathHelper.Abs(short) - type: Method - source: - remote: - path: src/OpenTK.Mathematics/MathHelper.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Abs - path: opentk/src/OpenTK.Mathematics/MathHelper.cs - startLine: 91 - assemblies: - - OpenTK.Mathematics - namespace: OpenTK.Mathematics - summary: Returns the absolute value of a short number. - example: [] - syntax: - content: >- - [Pure] - - public static short Abs(short n) - parameters: - - id: n - type: System.Int16 - description: A number that is greater than or equal to MinValue, but less than or equal to MaxValue. - return: - type: System.Int16 - description: A short number, x, such that 0 ≤ x ≤ MaxValue. - content.vb: >- - - - Public Shared Function Abs(n As Short) As Short - overload: OpenTK.Mathematics.MathHelper.Abs* - attributes: - - type: System.Diagnostics.Contracts.PureAttribute - ctor: System.Diagnostics.Contracts.PureAttribute.#ctor - arguments: [] - nameWithType.vb: MathHelper.Abs(Short) - fullName.vb: OpenTK.Mathematics.MathHelper.Abs(Short) - name.vb: Abs(Short) -- uid: OpenTK.Mathematics.MathHelper.Abs(System.Int32) - commentId: M:OpenTK.Mathematics.MathHelper.Abs(System.Int32) - id: Abs(System.Int32) - parent: OpenTK.Mathematics.MathHelper - langs: - - csharp - - vb - name: Abs(int) - nameWithType: MathHelper.Abs(int) - fullName: OpenTK.Mathematics.MathHelper.Abs(int) - type: Method - source: - remote: - path: src/OpenTK.Mathematics/MathHelper.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Abs - path: opentk/src/OpenTK.Mathematics/MathHelper.cs - startLine: 99 - assemblies: - - OpenTK.Mathematics - namespace: OpenTK.Mathematics - summary: Returns the absolute value of a int number. - example: [] - syntax: - content: >- - [Pure] - - public static int Abs(int n) - parameters: - - id: n - type: System.Int32 - description: A number that is greater than or equal to MinValue, but less than or equal to MaxValue. - return: - type: System.Int32 - description: A int number, x, such that 0 ≤ x ≤ MaxValue. - content.vb: >- - - - Public Shared Function Abs(n As Integer) As Integer - overload: OpenTK.Mathematics.MathHelper.Abs* - attributes: - - type: System.Diagnostics.Contracts.PureAttribute - ctor: System.Diagnostics.Contracts.PureAttribute.#ctor - arguments: [] - nameWithType.vb: MathHelper.Abs(Integer) - fullName.vb: OpenTK.Mathematics.MathHelper.Abs(Integer) - name.vb: Abs(Integer) -- uid: OpenTK.Mathematics.MathHelper.Abs(System.Int64) - commentId: M:OpenTK.Mathematics.MathHelper.Abs(System.Int64) - id: Abs(System.Int64) - parent: OpenTK.Mathematics.MathHelper - langs: - - csharp - - vb - name: Abs(long) - nameWithType: MathHelper.Abs(long) - fullName: OpenTK.Mathematics.MathHelper.Abs(long) - type: Method - source: - remote: - path: src/OpenTK.Mathematics/MathHelper.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Abs - path: opentk/src/OpenTK.Mathematics/MathHelper.cs - startLine: 107 - assemblies: - - OpenTK.Mathematics - namespace: OpenTK.Mathematics - summary: Returns the absolute value of a long number. - example: [] - syntax: - content: >- - [Pure] - - public static long Abs(long n) - parameters: - - id: n - type: System.Int64 - description: A number that is greater than or equal to MinValue, but less than or equal to MaxValue. - return: - type: System.Int64 - description: A long number, x, such that 0 ≤ x ≤ MaxValue. - content.vb: >- - - - Public Shared Function Abs(n As Long) As Long - overload: OpenTK.Mathematics.MathHelper.Abs* - attributes: - - type: System.Diagnostics.Contracts.PureAttribute - ctor: System.Diagnostics.Contracts.PureAttribute.#ctor - arguments: [] - nameWithType.vb: MathHelper.Abs(Long) - fullName.vb: OpenTK.Mathematics.MathHelper.Abs(Long) - name.vb: Abs(Long) -- uid: OpenTK.Mathematics.MathHelper.Abs(System.SByte) - commentId: M:OpenTK.Mathematics.MathHelper.Abs(System.SByte) - id: Abs(System.SByte) - parent: OpenTK.Mathematics.MathHelper - langs: - - csharp - - vb - name: Abs(sbyte) - nameWithType: MathHelper.Abs(sbyte) - fullName: OpenTK.Mathematics.MathHelper.Abs(sbyte) - type: Method - source: - remote: - path: src/OpenTK.Mathematics/MathHelper.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Abs - path: opentk/src/OpenTK.Mathematics/MathHelper.cs - startLine: 115 - assemblies: - - OpenTK.Mathematics - namespace: OpenTK.Mathematics - summary: Returns the absolute value of a sbyte number. - example: [] - syntax: - content: >- - [Pure] - - public static sbyte Abs(sbyte n) - parameters: - - id: n - type: System.SByte - description: A number that is greater than or equal to MinValue, but less than or equal to MaxValue. - return: - type: System.SByte - description: A sbyte number, x, such that 0 ≤ x ≤ MaxValue. - content.vb: >- - - - Public Shared Function Abs(n As SByte) As SByte - overload: OpenTK.Mathematics.MathHelper.Abs* - attributes: - - type: System.Diagnostics.Contracts.PureAttribute - ctor: System.Diagnostics.Contracts.PureAttribute.#ctor - arguments: [] - nameWithType.vb: MathHelper.Abs(SByte) - fullName.vb: OpenTK.Mathematics.MathHelper.Abs(SByte) - name.vb: Abs(SByte) -- uid: OpenTK.Mathematics.MathHelper.Abs(System.Single) - commentId: M:OpenTK.Mathematics.MathHelper.Abs(System.Single) - id: Abs(System.Single) - parent: OpenTK.Mathematics.MathHelper - langs: - - csharp - - vb - name: Abs(float) - nameWithType: MathHelper.Abs(float) - fullName: OpenTK.Mathematics.MathHelper.Abs(float) - type: Method - source: - remote: - path: src/OpenTK.Mathematics/MathHelper.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Abs - path: opentk/src/OpenTK.Mathematics/MathHelper.cs - startLine: 123 - assemblies: - - OpenTK.Mathematics - namespace: OpenTK.Mathematics - summary: Returns the absolute value of a float number. - example: [] - syntax: - content: >- - [Pure] - - public static float Abs(float n) - parameters: - - id: n - type: System.Single - description: A number that is greater than or equal to MinValue, but less than or equal to MaxValue. - return: - type: System.Single - description: A float number, x, such that 0 ≤ x ≤ MaxValue. - content.vb: >- - - - Public Shared Function Abs(n As Single) As Single - overload: OpenTK.Mathematics.MathHelper.Abs* - attributes: - - type: System.Diagnostics.Contracts.PureAttribute - ctor: System.Diagnostics.Contracts.PureAttribute.#ctor - arguments: [] - nameWithType.vb: MathHelper.Abs(Single) - fullName.vb: OpenTK.Mathematics.MathHelper.Abs(Single) - name.vb: Abs(Single) -- uid: OpenTK.Mathematics.MathHelper.Sin(System.Double) - commentId: M:OpenTK.Mathematics.MathHelper.Sin(System.Double) - id: Sin(System.Double) - parent: OpenTK.Mathematics.MathHelper - langs: - - csharp - - vb - name: Sin(double) - nameWithType: MathHelper.Sin(double) - fullName: OpenTK.Mathematics.MathHelper.Sin(double) - type: Method - source: - remote: - path: src/OpenTK.Mathematics/MathHelper.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Sin - path: opentk/src/OpenTK.Mathematics/MathHelper.cs - startLine: 131 - assemblies: - - OpenTK.Mathematics - namespace: OpenTK.Mathematics - summary: Returns the sine of the specified angle. - example: [] - syntax: - content: >- - [Pure] - - public static double Sin(double radians) - parameters: - - id: radians - type: System.Double - description: The specified angle. - return: - type: System.Double - description: Sine of the angle. If radians is equal to NaN, NegativeInfinity, or PositiveInfinity, this method returns NaN. - content.vb: >- - - - Public Shared Function Sin(radians As Double) As Double - overload: OpenTK.Mathematics.MathHelper.Sin* - attributes: - - type: System.Diagnostics.Contracts.PureAttribute - ctor: System.Diagnostics.Contracts.PureAttribute.#ctor - arguments: [] - nameWithType.vb: MathHelper.Sin(Double) - fullName.vb: OpenTK.Mathematics.MathHelper.Sin(Double) - name.vb: Sin(Double) -- uid: OpenTK.Mathematics.MathHelper.Sinh(System.Double) - commentId: M:OpenTK.Mathematics.MathHelper.Sinh(System.Double) - id: Sinh(System.Double) - parent: OpenTK.Mathematics.MathHelper - langs: - - csharp - - vb - name: Sinh(double) - nameWithType: MathHelper.Sinh(double) - fullName: OpenTK.Mathematics.MathHelper.Sinh(double) - type: Method - source: - remote: - path: src/OpenTK.Mathematics/MathHelper.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Sinh - path: opentk/src/OpenTK.Mathematics/MathHelper.cs - startLine: 139 - assemblies: - - OpenTK.Mathematics - namespace: OpenTK.Mathematics - summary: Returns the hyperbolic sine of the specified angle. - example: [] - syntax: - content: >- - [Pure] - - public static double Sinh(double radians) - parameters: - - id: radians - type: System.Double - description: The specified angle. - return: - type: System.Double - description: Hyperbolic sine of the specified angle. If radians is equal to NaN, NegativeInfinity, or PositiveInfinity, this method returns NaN. - content.vb: >- - - - Public Shared Function Sinh(radians As Double) As Double - overload: OpenTK.Mathematics.MathHelper.Sinh* - attributes: - - type: System.Diagnostics.Contracts.PureAttribute - ctor: System.Diagnostics.Contracts.PureAttribute.#ctor - arguments: [] - nameWithType.vb: MathHelper.Sinh(Double) - fullName.vb: OpenTK.Mathematics.MathHelper.Sinh(Double) - name.vb: Sinh(Double) -- uid: OpenTK.Mathematics.MathHelper.Asin(System.Double) - commentId: M:OpenTK.Mathematics.MathHelper.Asin(System.Double) - id: Asin(System.Double) - parent: OpenTK.Mathematics.MathHelper - langs: - - csharp - - vb - name: Asin(double) - nameWithType: MathHelper.Asin(double) - fullName: OpenTK.Mathematics.MathHelper.Asin(double) - type: Method - source: - remote: - path: src/OpenTK.Mathematics/MathHelper.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Asin - path: opentk/src/OpenTK.Mathematics/MathHelper.cs - startLine: 147 - assemblies: - - OpenTK.Mathematics - namespace: OpenTK.Mathematics - summary: Returns the arc sine of the specified angle. - example: [] - syntax: - content: >- - [Pure] - - public static double Asin(double radians) - parameters: - - id: radians - type: System.Double - description: The specified angle. - return: - type: System.Double - description: Arc sine of the specified angle. If radians is equal to NaN, NegativeInfinity, or PositiveInfinity, this method returns NaN. - content.vb: >- - - - Public Shared Function Asin(radians As Double) As Double - overload: OpenTK.Mathematics.MathHelper.Asin* - attributes: - - type: System.Diagnostics.Contracts.PureAttribute - ctor: System.Diagnostics.Contracts.PureAttribute.#ctor - arguments: [] - nameWithType.vb: MathHelper.Asin(Double) - fullName.vb: OpenTK.Mathematics.MathHelper.Asin(Double) - name.vb: Asin(Double) -- uid: OpenTK.Mathematics.MathHelper.Cos(System.Double) - commentId: M:OpenTK.Mathematics.MathHelper.Cos(System.Double) - id: Cos(System.Double) - parent: OpenTK.Mathematics.MathHelper - langs: - - csharp - - vb - name: Cos(double) - nameWithType: MathHelper.Cos(double) - fullName: OpenTK.Mathematics.MathHelper.Cos(double) - type: Method - source: - remote: - path: src/OpenTK.Mathematics/MathHelper.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Cos - path: opentk/src/OpenTK.Mathematics/MathHelper.cs - startLine: 155 - assemblies: - - OpenTK.Mathematics - namespace: OpenTK.Mathematics - summary: Returns the cosine of the specified angle. - example: [] - syntax: - content: >- - [Pure] - - public static double Cos(double radians) - parameters: - - id: radians - type: System.Double - description: The specified angle. - return: - type: System.Double - description: Cosine of the angle. If radians is equal to NaN, NegativeInfinity, or PositiveInfinity, this method returns NaN. - content.vb: >- - - - Public Shared Function Cos(radians As Double) As Double - overload: OpenTK.Mathematics.MathHelper.Cos* - attributes: - - type: System.Diagnostics.Contracts.PureAttribute - ctor: System.Diagnostics.Contracts.PureAttribute.#ctor - arguments: [] - nameWithType.vb: MathHelper.Cos(Double) - fullName.vb: OpenTK.Mathematics.MathHelper.Cos(Double) - name.vb: Cos(Double) -- uid: OpenTK.Mathematics.MathHelper.Cosh(System.Double) - commentId: M:OpenTK.Mathematics.MathHelper.Cosh(System.Double) - id: Cosh(System.Double) - parent: OpenTK.Mathematics.MathHelper - langs: - - csharp - - vb - name: Cosh(double) - nameWithType: MathHelper.Cosh(double) - fullName: OpenTK.Mathematics.MathHelper.Cosh(double) - type: Method - source: - remote: - path: src/OpenTK.Mathematics/MathHelper.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Cosh - path: opentk/src/OpenTK.Mathematics/MathHelper.cs - startLine: 163 - assemblies: - - OpenTK.Mathematics - namespace: OpenTK.Mathematics - summary: Returns the hyperbolic cosine of the specified angle. - example: [] - syntax: - content: >- - [Pure] - - public static double Cosh(double radians) - parameters: - - id: radians - type: System.Double - description: The specified angle. - return: - type: System.Double - description: Hyperbolic cosine of the specified angle. If radians is equal to NaN, NegativeInfinity, or PositiveInfinity, this method returns NaN. - content.vb: >- - - - Public Shared Function Cosh(radians As Double) As Double - overload: OpenTK.Mathematics.MathHelper.Cosh* - attributes: - - type: System.Diagnostics.Contracts.PureAttribute - ctor: System.Diagnostics.Contracts.PureAttribute.#ctor - arguments: [] - nameWithType.vb: MathHelper.Cosh(Double) - fullName.vb: OpenTK.Mathematics.MathHelper.Cosh(Double) - name.vb: Cosh(Double) -- uid: OpenTK.Mathematics.MathHelper.Acos(System.Double) - commentId: M:OpenTK.Mathematics.MathHelper.Acos(System.Double) - id: Acos(System.Double) - parent: OpenTK.Mathematics.MathHelper - langs: - - csharp - - vb - name: Acos(double) - nameWithType: MathHelper.Acos(double) - fullName: OpenTK.Mathematics.MathHelper.Acos(double) - type: Method - source: - remote: - path: src/OpenTK.Mathematics/MathHelper.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Acos - path: opentk/src/OpenTK.Mathematics/MathHelper.cs - startLine: 171 - assemblies: - - OpenTK.Mathematics - namespace: OpenTK.Mathematics - summary: Returns the arc sine of the specified angle. - example: [] - syntax: - content: >- - [Pure] - - public static double Acos(double radians) - parameters: - - id: radians - type: System.Double - description: The specified angle. - return: - type: System.Double - description: Arc sine of the specified angle. If radians is equal to NaN, NegativeInfinity, or PositiveInfinity, this method returns NaN. - content.vb: >- - - - Public Shared Function Acos(radians As Double) As Double - overload: OpenTK.Mathematics.MathHelper.Acos* - attributes: - - type: System.Diagnostics.Contracts.PureAttribute - ctor: System.Diagnostics.Contracts.PureAttribute.#ctor - arguments: [] - nameWithType.vb: MathHelper.Acos(Double) - fullName.vb: OpenTK.Mathematics.MathHelper.Acos(Double) - name.vb: Acos(Double) -- uid: OpenTK.Mathematics.MathHelper.Tan(System.Double) - commentId: M:OpenTK.Mathematics.MathHelper.Tan(System.Double) - id: Tan(System.Double) - parent: OpenTK.Mathematics.MathHelper - langs: - - csharp - - vb - name: Tan(double) - nameWithType: MathHelper.Tan(double) - fullName: OpenTK.Mathematics.MathHelper.Tan(double) - type: Method - source: - remote: - path: src/OpenTK.Mathematics/MathHelper.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Tan - path: opentk/src/OpenTK.Mathematics/MathHelper.cs - startLine: 179 - assemblies: - - OpenTK.Mathematics - namespace: OpenTK.Mathematics - summary: Returns the tangent of the specified angle. - example: [] - syntax: - content: >- - [Pure] - - public static double Tan(double radians) - parameters: - - id: radians - type: System.Double - description: The specified angle. - return: - type: System.Double - description: Tangent of the specified angle. If radians is equal to NaN, NegativeInfinity, or PositiveInfinity, this method returns NaN. - content.vb: >- - - - Public Shared Function Tan(radians As Double) As Double - overload: OpenTK.Mathematics.MathHelper.Tan* - attributes: - - type: System.Diagnostics.Contracts.PureAttribute - ctor: System.Diagnostics.Contracts.PureAttribute.#ctor - arguments: [] - nameWithType.vb: MathHelper.Tan(Double) - fullName.vb: OpenTK.Mathematics.MathHelper.Tan(Double) - name.vb: Tan(Double) -- uid: OpenTK.Mathematics.MathHelper.Tanh(System.Double) - commentId: M:OpenTK.Mathematics.MathHelper.Tanh(System.Double) - id: Tanh(System.Double) - parent: OpenTK.Mathematics.MathHelper - langs: - - csharp - - vb - name: Tanh(double) - nameWithType: MathHelper.Tanh(double) - fullName: OpenTK.Mathematics.MathHelper.Tanh(double) - type: Method - source: - remote: - path: src/OpenTK.Mathematics/MathHelper.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Tanh - path: opentk/src/OpenTK.Mathematics/MathHelper.cs - startLine: 187 - assemblies: - - OpenTK.Mathematics - namespace: OpenTK.Mathematics - summary: Returns the hyperbolic tangent of the specified angle. - example: [] - syntax: - content: >- - [Pure] - - public static double Tanh(double radians) - parameters: - - id: radians - type: System.Double - description: The specified angle. - return: - type: System.Double - description: Hyperbolic tangent of the specified angle. If radians is equal to NaN, NegativeInfinity, or PositiveInfinity, this method returns NaN. - content.vb: >- - - - Public Shared Function Tanh(radians As Double) As Double - overload: OpenTK.Mathematics.MathHelper.Tanh* - attributes: - - type: System.Diagnostics.Contracts.PureAttribute - ctor: System.Diagnostics.Contracts.PureAttribute.#ctor - arguments: [] - nameWithType.vb: MathHelper.Tanh(Double) - fullName.vb: OpenTK.Mathematics.MathHelper.Tanh(Double) - name.vb: Tanh(Double) -- uid: OpenTK.Mathematics.MathHelper.Atan(System.Double) - commentId: M:OpenTK.Mathematics.MathHelper.Atan(System.Double) - id: Atan(System.Double) - parent: OpenTK.Mathematics.MathHelper - langs: - - csharp - - vb - name: Atan(double) - nameWithType: MathHelper.Atan(double) - fullName: OpenTK.Mathematics.MathHelper.Atan(double) - type: Method - source: - remote: - path: src/OpenTK.Mathematics/MathHelper.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Atan - path: opentk/src/OpenTK.Mathematics/MathHelper.cs - startLine: 195 - assemblies: - - OpenTK.Mathematics - namespace: OpenTK.Mathematics - summary: Returns the arc tangent of the specified angle. - example: [] - syntax: - content: >- - [Pure] - - public static double Atan(double radians) - parameters: - - id: radians - type: System.Double - description: The specified angle. - return: - type: System.Double - description: Arc tangent of the specified angle. If radians is equal to NaN, NegativeInfinity, or PositiveInfinity, this method returns NaN. - content.vb: >- - - - Public Shared Function Atan(radians As Double) As Double - overload: OpenTK.Mathematics.MathHelper.Atan* - attributes: - - type: System.Diagnostics.Contracts.PureAttribute - ctor: System.Diagnostics.Contracts.PureAttribute.#ctor - arguments: [] - nameWithType.vb: MathHelper.Atan(Double) - fullName.vb: OpenTK.Mathematics.MathHelper.Atan(Double) - name.vb: Atan(Double) -- uid: OpenTK.Mathematics.MathHelper.Atan2(System.Double,System.Double) - commentId: M:OpenTK.Mathematics.MathHelper.Atan2(System.Double,System.Double) - id: Atan2(System.Double,System.Double) - parent: OpenTK.Mathematics.MathHelper - langs: - - csharp - - vb - name: Atan2(double, double) - nameWithType: MathHelper.Atan2(double, double) - fullName: OpenTK.Mathematics.MathHelper.Atan2(double, double) - type: Method - source: - remote: - path: src/OpenTK.Mathematics/MathHelper.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Atan2 - path: opentk/src/OpenTK.Mathematics/MathHelper.cs - startLine: 204 - assemblies: - - OpenTK.Mathematics - namespace: OpenTK.Mathematics - summary: Returns the angle whose tangent is the quotient of two specified numbers. - example: [] - syntax: - content: >- - [Pure] - - public static double Atan2(double y, double x) - parameters: - - id: y - type: System.Double - description: The y coordinate of a point. - - id: x - type: System.Double - description: The x coordinate of a point. - return: - type: System.Double - description: An angle, θ, measured in radians, such that -π ≤ θ ≤ π, and tan(θ) = y / x, where (x, y) is a point in the Cartesian plane. - content.vb: >- - - - Public Shared Function Atan2(y As Double, x As Double) As Double - overload: OpenTK.Mathematics.MathHelper.Atan2* - attributes: - - type: System.Diagnostics.Contracts.PureAttribute - ctor: System.Diagnostics.Contracts.PureAttribute.#ctor - arguments: [] - nameWithType.vb: MathHelper.Atan2(Double, Double) - fullName.vb: OpenTK.Mathematics.MathHelper.Atan2(Double, Double) - name.vb: Atan2(Double, Double) -- uid: OpenTK.Mathematics.MathHelper.BigMul(System.Int32,System.Int32) - commentId: M:OpenTK.Mathematics.MathHelper.BigMul(System.Int32,System.Int32) - id: BigMul(System.Int32,System.Int32) - parent: OpenTK.Mathematics.MathHelper - langs: - - csharp - - vb - name: BigMul(int, int) - nameWithType: MathHelper.BigMul(int, int) - fullName: OpenTK.Mathematics.MathHelper.BigMul(int, int) - type: Method - source: - remote: - path: src/OpenTK.Mathematics/MathHelper.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: BigMul - path: opentk/src/OpenTK.Mathematics/MathHelper.cs - startLine: 213 - assemblies: - - OpenTK.Mathematics - namespace: OpenTK.Mathematics - summary: Produces the full product of two 32-bit numbers. - example: [] - syntax: - content: >- - [Pure] - - public static long BigMul(int a, int b) - parameters: - - id: a - type: System.Int32 - description: The first number to multiply. - - id: b - type: System.Int32 - description: The second number to multiply. - return: - type: System.Int64 - description: The number containing the product of the specified numbers. - content.vb: >- - - - Public Shared Function BigMul(a As Integer, b As Integer) As Long - overload: OpenTK.Mathematics.MathHelper.BigMul* - attributes: - - type: System.Diagnostics.Contracts.PureAttribute - ctor: System.Diagnostics.Contracts.PureAttribute.#ctor - arguments: [] - nameWithType.vb: MathHelper.BigMul(Integer, Integer) - fullName.vb: OpenTK.Mathematics.MathHelper.BigMul(Integer, Integer) - name.vb: BigMul(Integer, Integer) -- uid: OpenTK.Mathematics.MathHelper.Sqrt(System.Double) - commentId: M:OpenTK.Mathematics.MathHelper.Sqrt(System.Double) - id: Sqrt(System.Double) - parent: OpenTK.Mathematics.MathHelper - langs: - - csharp - - vb - name: Sqrt(double) - nameWithType: MathHelper.Sqrt(double) - fullName: OpenTK.Mathematics.MathHelper.Sqrt(double) - type: Method - source: - remote: - path: src/OpenTK.Mathematics/MathHelper.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Sqrt - path: opentk/src/OpenTK.Mathematics/MathHelper.cs - startLine: 221 - assemblies: - - OpenTK.Mathematics - namespace: OpenTK.Mathematics - summary: Returns the square root of a specified number. - example: [] - syntax: - content: >- - [Pure] - - public static double Sqrt(double n) - parameters: - - id: n - type: System.Double - description: The number whose square root is to be found. - return: - type: System.Double - description: The positive square root of n. - content.vb: >- - - - Public Shared Function Sqrt(n As Double) As Double - overload: OpenTK.Mathematics.MathHelper.Sqrt* - attributes: - - type: System.Diagnostics.Contracts.PureAttribute - ctor: System.Diagnostics.Contracts.PureAttribute.#ctor - arguments: [] - nameWithType.vb: MathHelper.Sqrt(Double) - fullName.vb: OpenTK.Mathematics.MathHelper.Sqrt(Double) - name.vb: Sqrt(Double) -- uid: OpenTK.Mathematics.MathHelper.Pow(System.Double,System.Double) - commentId: M:OpenTK.Mathematics.MathHelper.Pow(System.Double,System.Double) - id: Pow(System.Double,System.Double) - parent: OpenTK.Mathematics.MathHelper - langs: - - csharp - - vb - name: Pow(double, double) - nameWithType: MathHelper.Pow(double, double) - fullName: OpenTK.Mathematics.MathHelper.Pow(double, double) - type: Method - source: - remote: - path: src/OpenTK.Mathematics/MathHelper.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Pow - path: opentk/src/OpenTK.Mathematics/MathHelper.cs - startLine: 230 - assemblies: - - OpenTK.Mathematics - namespace: OpenTK.Mathematics - summary: Returns a specified number raised to the specified power. - example: [] - syntax: - content: >- - [Pure] - - public static double Pow(double x, double y) - parameters: - - id: x - type: System.Double - description: A double-precision floating-point number to be raised to a power. - - id: y - type: System.Double - description: A double-precision floating-point number that specifies a power. - return: - type: System.Double - description: The number x raised to the power y. - content.vb: >- - - - Public Shared Function Pow(x As Double, y As Double) As Double - overload: OpenTK.Mathematics.MathHelper.Pow* - attributes: - - type: System.Diagnostics.Contracts.PureAttribute - ctor: System.Diagnostics.Contracts.PureAttribute.#ctor - arguments: [] - nameWithType.vb: MathHelper.Pow(Double, Double) - fullName.vb: OpenTK.Mathematics.MathHelper.Pow(Double, Double) - name.vb: Pow(Double, Double) -- uid: OpenTK.Mathematics.MathHelper.Ceiling(System.Decimal) - commentId: M:OpenTK.Mathematics.MathHelper.Ceiling(System.Decimal) - id: Ceiling(System.Decimal) - parent: OpenTK.Mathematics.MathHelper - langs: - - csharp - - vb - name: Ceiling(decimal) - nameWithType: MathHelper.Ceiling(decimal) - fullName: OpenTK.Mathematics.MathHelper.Ceiling(decimal) - type: Method - source: - remote: - path: src/OpenTK.Mathematics/MathHelper.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Ceiling - path: opentk/src/OpenTK.Mathematics/MathHelper.cs - startLine: 238 - assemblies: - - OpenTK.Mathematics - namespace: OpenTK.Mathematics - summary: Returns the smallest integral value greater than or equal to the specified number. - example: [] - syntax: - content: >- - [Pure] - - public static decimal Ceiling(decimal n) - parameters: - - id: n - type: System.Decimal - description: A decimal number. - return: - type: System.Decimal - description: The smallest integral value that is greater than or equal to n. Note that this method returns a Decimal instead of an integral type. - content.vb: >- - - - Public Shared Function Ceiling(n As Decimal) As Decimal - overload: OpenTK.Mathematics.MathHelper.Ceiling* - attributes: - - type: System.Diagnostics.Contracts.PureAttribute - ctor: System.Diagnostics.Contracts.PureAttribute.#ctor - arguments: [] - nameWithType.vb: MathHelper.Ceiling(Decimal) - fullName.vb: OpenTK.Mathematics.MathHelper.Ceiling(Decimal) - name.vb: Ceiling(Decimal) -- uid: OpenTK.Mathematics.MathHelper.Ceiling(System.Double) - commentId: M:OpenTK.Mathematics.MathHelper.Ceiling(System.Double) - id: Ceiling(System.Double) - parent: OpenTK.Mathematics.MathHelper - langs: - - csharp - - vb - name: Ceiling(double) - nameWithType: MathHelper.Ceiling(double) - fullName: OpenTK.Mathematics.MathHelper.Ceiling(double) - type: Method - source: - remote: - path: src/OpenTK.Mathematics/MathHelper.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Ceiling - path: opentk/src/OpenTK.Mathematics/MathHelper.cs - startLine: 247 - assemblies: - - OpenTK.Mathematics - namespace: OpenTK.Mathematics - summary: Returns the smallest integral value greater than or equal to the specified number. - example: [] - syntax: - content: >- - [Pure] - - public static double Ceiling(double n) - parameters: - - id: n - type: System.Double - description: A double-precision floating-point number. - return: - type: System.Double - description: >- - The smallest integral value that is greater than or equal to n. If n is equal to NaN, NegativeInfinity, or PositiveInfinity, that value is returned. - Note that this method returns a Double instead of an integral type. - content.vb: >- - - - Public Shared Function Ceiling(n As Double) As Double - overload: OpenTK.Mathematics.MathHelper.Ceiling* - attributes: - - type: System.Diagnostics.Contracts.PureAttribute - ctor: System.Diagnostics.Contracts.PureAttribute.#ctor - arguments: [] - nameWithType.vb: MathHelper.Ceiling(Double) - fullName.vb: OpenTK.Mathematics.MathHelper.Ceiling(Double) - name.vb: Ceiling(Double) -- uid: OpenTK.Mathematics.MathHelper.Floor(System.Decimal) - commentId: M:OpenTK.Mathematics.MathHelper.Floor(System.Decimal) - id: Floor(System.Decimal) - parent: OpenTK.Mathematics.MathHelper - langs: - - csharp - - vb - name: Floor(decimal) - nameWithType: MathHelper.Floor(decimal) - fullName: OpenTK.Mathematics.MathHelper.Floor(decimal) - type: Method - source: - remote: - path: src/OpenTK.Mathematics/MathHelper.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Floor - path: opentk/src/OpenTK.Mathematics/MathHelper.cs - startLine: 255 - assemblies: - - OpenTK.Mathematics - namespace: OpenTK.Mathematics - summary: Returns the largest integral value less than or equal to the specified number. - example: [] - syntax: - content: >- - [Pure] - - public static decimal Floor(decimal n) - parameters: - - id: n - type: System.Decimal - description: A decimal number. - return: - type: System.Decimal - description: Returns the largest integral value less than or equal to the specified decimal number. - content.vb: >- - - - Public Shared Function Floor(n As Decimal) As Decimal - overload: OpenTK.Mathematics.MathHelper.Floor* - attributes: - - type: System.Diagnostics.Contracts.PureAttribute - ctor: System.Diagnostics.Contracts.PureAttribute.#ctor - arguments: [] - nameWithType.vb: MathHelper.Floor(Decimal) - fullName.vb: OpenTK.Mathematics.MathHelper.Floor(Decimal) - name.vb: Floor(Decimal) -- uid: OpenTK.Mathematics.MathHelper.Floor(System.Double) - commentId: M:OpenTK.Mathematics.MathHelper.Floor(System.Double) - id: Floor(System.Double) - parent: OpenTK.Mathematics.MathHelper - langs: - - csharp - - vb - name: Floor(double) - nameWithType: MathHelper.Floor(double) - fullName: OpenTK.Mathematics.MathHelper.Floor(double) - type: Method - source: - remote: - path: src/OpenTK.Mathematics/MathHelper.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Floor - path: opentk/src/OpenTK.Mathematics/MathHelper.cs - startLine: 263 - assemblies: - - OpenTK.Mathematics - namespace: OpenTK.Mathematics - summary: Returns the largest integral value less than or equal to the specified number. - example: [] - syntax: - content: >- - [Pure] - - public static double Floor(double n) - parameters: - - id: n - type: System.Double - description: A double-precision floating-point number. - return: - type: System.Double - description: Returns the largest integral value less than or equal to the specified double-precision floating-point number. - content.vb: >- - - - Public Shared Function Floor(n As Double) As Double - overload: OpenTK.Mathematics.MathHelper.Floor* - attributes: - - type: System.Diagnostics.Contracts.PureAttribute - ctor: System.Diagnostics.Contracts.PureAttribute.#ctor - arguments: [] - nameWithType.vb: MathHelper.Floor(Double) - fullName.vb: OpenTK.Mathematics.MathHelper.Floor(Double) - name.vb: Floor(Double) -- uid: OpenTK.Mathematics.MathHelper.DivRem(System.Int32,System.Int32,System.Int32@) - commentId: M:OpenTK.Mathematics.MathHelper.DivRem(System.Int32,System.Int32,System.Int32@) - id: DivRem(System.Int32,System.Int32,System.Int32@) - parent: OpenTK.Mathematics.MathHelper - langs: - - csharp - - vb - name: DivRem(int, int, out int) - nameWithType: MathHelper.DivRem(int, int, out int) - fullName: OpenTK.Mathematics.MathHelper.DivRem(int, int, out int) - type: Method - source: - remote: - path: src/OpenTK.Mathematics/MathHelper.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: DivRem - path: opentk/src/OpenTK.Mathematics/MathHelper.cs - startLine: 274 - assemblies: - - OpenTK.Mathematics - namespace: OpenTK.Mathematics - summary: Calculates the quotient of two integers and also returns the remainder in an output parameter. - example: [] - syntax: - content: >- - [Pure] - - public static int DivRem(int a, int b, out int result) - parameters: - - id: a - type: System.Int32 - description: The dividend. - - id: b - type: System.Int32 - description: The divisor. - - id: result - type: System.Int32 - description: The remainder. - return: - type: System.Int32 - description: The quotient of the specified numbers. - content.vb: >- - - - Public Shared Function DivRem(a As Integer, b As Integer, result As Integer) As Integer - overload: OpenTK.Mathematics.MathHelper.DivRem* - exceptions: - - type: System.DivideByZeroException - commentId: T:System.DivideByZeroException - description: b is zero. - attributes: - - type: System.Diagnostics.Contracts.PureAttribute - ctor: System.Diagnostics.Contracts.PureAttribute.#ctor - arguments: [] - nameWithType.vb: MathHelper.DivRem(Integer, Integer, Integer) - fullName.vb: OpenTK.Mathematics.MathHelper.DivRem(Integer, Integer, Integer) - name.vb: DivRem(Integer, Integer, Integer) -- uid: OpenTK.Mathematics.MathHelper.DivRem(System.Int64,System.Int64,System.Int64@) - commentId: M:OpenTK.Mathematics.MathHelper.DivRem(System.Int64,System.Int64,System.Int64@) - id: DivRem(System.Int64,System.Int64,System.Int64@) - parent: OpenTK.Mathematics.MathHelper - langs: - - csharp - - vb - name: DivRem(long, long, out long) - nameWithType: MathHelper.DivRem(long, long, out long) - fullName: OpenTK.Mathematics.MathHelper.DivRem(long, long, out long) - type: Method - source: - remote: - path: src/OpenTK.Mathematics/MathHelper.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: DivRem - path: opentk/src/OpenTK.Mathematics/MathHelper.cs - startLine: 285 - assemblies: - - OpenTK.Mathematics - namespace: OpenTK.Mathematics - summary: Calculates the quotient of two longs and also returns the remainder in an output parameter. - example: [] - syntax: - content: >- - [Pure] - - public static long DivRem(long a, long b, out long result) - parameters: - - id: a - type: System.Int64 - description: The dividend. - - id: b - type: System.Int64 - description: The divisor. - - id: result - type: System.Int64 - description: The remainder. - return: - type: System.Int64 - description: The quotient of the specified numbers. - content.vb: >- - - - Public Shared Function DivRem(a As Long, b As Long, result As Long) As Long - overload: OpenTK.Mathematics.MathHelper.DivRem* - exceptions: - - type: System.DivideByZeroException - commentId: T:System.DivideByZeroException - description: b is zero. - attributes: - - type: System.Diagnostics.Contracts.PureAttribute - ctor: System.Diagnostics.Contracts.PureAttribute.#ctor - arguments: [] - nameWithType.vb: MathHelper.DivRem(Long, Long, Long) - fullName.vb: OpenTK.Mathematics.MathHelper.DivRem(Long, Long, Long) - name.vb: DivRem(Long, Long, Long) -- uid: OpenTK.Mathematics.MathHelper.Log(System.Double) - commentId: M:OpenTK.Mathematics.MathHelper.Log(System.Double) - id: Log(System.Double) - parent: OpenTK.Mathematics.MathHelper - langs: - - csharp - - vb - name: Log(double) - nameWithType: MathHelper.Log(double) - fullName: OpenTK.Mathematics.MathHelper.Log(double) - type: Method - source: - remote: - path: src/OpenTK.Mathematics/MathHelper.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Log - path: opentk/src/OpenTK.Mathematics/MathHelper.cs - startLine: 293 - assemblies: - - OpenTK.Mathematics - namespace: OpenTK.Mathematics - summary: Returns the natural (base e) logarithm of a specified number. - example: [] - syntax: - content: >- - [Pure] - - public static double Log(double n) - parameters: - - id: n - type: System.Double - description: A number whose logarithm is to be found. - return: - type: System.Double - description: The natural logarithm of n. - content.vb: >- - - - Public Shared Function Log(n As Double) As Double - overload: OpenTK.Mathematics.MathHelper.Log* - attributes: - - type: System.Diagnostics.Contracts.PureAttribute - ctor: System.Diagnostics.Contracts.PureAttribute.#ctor - arguments: [] - nameWithType.vb: MathHelper.Log(Double) - fullName.vb: OpenTK.Mathematics.MathHelper.Log(Double) - name.vb: Log(Double) -- uid: OpenTK.Mathematics.MathHelper.Log(System.Double,System.Double) - commentId: M:OpenTK.Mathematics.MathHelper.Log(System.Double,System.Double) - id: Log(System.Double,System.Double) - parent: OpenTK.Mathematics.MathHelper - langs: - - csharp - - vb - name: Log(double, double) - nameWithType: MathHelper.Log(double, double) - fullName: OpenTK.Mathematics.MathHelper.Log(double, double) - type: Method - source: - remote: - path: src/OpenTK.Mathematics/MathHelper.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Log - path: opentk/src/OpenTK.Mathematics/MathHelper.cs - startLine: 302 - assemblies: - - OpenTK.Mathematics - namespace: OpenTK.Mathematics - summary: Returns the logarithm of a specified number in a specified base. - example: [] - syntax: - content: >- - [Pure] - - public static double Log(double n, double newBase) - parameters: - - id: n - type: System.Double - description: The specified number. - - id: newBase - type: System.Double - description: The specified base. - return: - type: System.Double - description: The base newBase logarithm of n. - content.vb: >- - - - Public Shared Function Log(n As Double, newBase As Double) As Double - overload: OpenTK.Mathematics.MathHelper.Log* - attributes: - - type: System.Diagnostics.Contracts.PureAttribute - ctor: System.Diagnostics.Contracts.PureAttribute.#ctor - arguments: [] - nameWithType.vb: MathHelper.Log(Double, Double) - fullName.vb: OpenTK.Mathematics.MathHelper.Log(Double, Double) - name.vb: Log(Double, Double) -- uid: OpenTK.Mathematics.MathHelper.Log10(System.Double) - commentId: M:OpenTK.Mathematics.MathHelper.Log10(System.Double) - id: Log10(System.Double) - parent: OpenTK.Mathematics.MathHelper - langs: - - csharp - - vb - name: Log10(double) - nameWithType: MathHelper.Log10(double) - fullName: OpenTK.Mathematics.MathHelper.Log10(double) - type: Method - source: - remote: - path: src/OpenTK.Mathematics/MathHelper.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Log10 - path: opentk/src/OpenTK.Mathematics/MathHelper.cs - startLine: 310 - assemblies: - - OpenTK.Mathematics - namespace: OpenTK.Mathematics - summary: Returns the base 10 logarithm of a specified number. - example: [] - syntax: - content: >- - [Pure] - - public static double Log10(double n) - parameters: - - id: n - type: System.Double - description: The specified number. - return: - type: System.Double - description: The base 10 log of n. - content.vb: >- - - - Public Shared Function Log10(n As Double) As Double - overload: OpenTK.Mathematics.MathHelper.Log10* - attributes: - - type: System.Diagnostics.Contracts.PureAttribute - ctor: System.Diagnostics.Contracts.PureAttribute.#ctor - arguments: [] - nameWithType.vb: MathHelper.Log10(Double) - fullName.vb: OpenTK.Mathematics.MathHelper.Log10(Double) - name.vb: Log10(Double) -- uid: OpenTK.Mathematics.MathHelper.Log2(System.Double) - commentId: M:OpenTK.Mathematics.MathHelper.Log2(System.Double) - id: Log2(System.Double) - parent: OpenTK.Mathematics.MathHelper - langs: - - csharp - - vb - name: Log2(double) - nameWithType: MathHelper.Log2(double) - fullName: OpenTK.Mathematics.MathHelper.Log2(double) - type: Method - source: - remote: - path: src/OpenTK.Mathematics/MathHelper.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Log2 - path: opentk/src/OpenTK.Mathematics/MathHelper.cs - startLine: 319 - assemblies: - - OpenTK.Mathematics - namespace: OpenTK.Mathematics - summary: Returns the base 2 logarithm of a specified number. - remarks: This one will be implemented by System.Math from .netcore 3.0 and onwards. - example: [] - syntax: - content: >- - [Pure] - - public static double Log2(double n) - parameters: - - id: n - type: System.Double - description: The specified number. - return: - type: System.Double - description: The base 2 log of n. - content.vb: >- - - - Public Shared Function Log2(n As Double) As Double - overload: OpenTK.Mathematics.MathHelper.Log2* - attributes: - - type: System.Diagnostics.Contracts.PureAttribute - ctor: System.Diagnostics.Contracts.PureAttribute.#ctor - arguments: [] - nameWithType.vb: MathHelper.Log2(Double) - fullName.vb: OpenTK.Mathematics.MathHelper.Log2(Double) - name.vb: Log2(Double) -- uid: OpenTK.Mathematics.MathHelper.Exp(System.Double) - commentId: M:OpenTK.Mathematics.MathHelper.Exp(System.Double) - id: Exp(System.Double) - parent: OpenTK.Mathematics.MathHelper - langs: - - csharp - - vb - name: Exp(double) - nameWithType: MathHelper.Exp(double) - fullName: OpenTK.Mathematics.MathHelper.Exp(double) - type: Method - source: - remote: - path: src/OpenTK.Mathematics/MathHelper.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Exp - path: opentk/src/OpenTK.Mathematics/MathHelper.cs - startLine: 327 - assemblies: - - OpenTK.Mathematics - namespace: OpenTK.Mathematics - summary: Returns e raised to the specified power. - example: [] - syntax: - content: >- - [Pure] - - public static double Exp(double n) - parameters: - - id: n - type: System.Double - description: The specified power. - return: - type: System.Double - description: The number e raised to the power n. If n equals NaN or PositiveInfinity, that value is returned. If n equals NegativeInfinity, 0 is returned. - content.vb: >- - - - Public Shared Function Exp(n As Double) As Double - overload: OpenTK.Mathematics.MathHelper.Exp* - attributes: - - type: System.Diagnostics.Contracts.PureAttribute - ctor: System.Diagnostics.Contracts.PureAttribute.#ctor - arguments: [] - nameWithType.vb: MathHelper.Exp(Double) - fullName.vb: OpenTK.Mathematics.MathHelper.Exp(Double) - name.vb: Exp(Double) -- uid: OpenTK.Mathematics.MathHelper.IEEERemainder(System.Double,System.Double) - commentId: M:OpenTK.Mathematics.MathHelper.IEEERemainder(System.Double,System.Double) - id: IEEERemainder(System.Double,System.Double) - parent: OpenTK.Mathematics.MathHelper - langs: - - csharp - - vb - name: IEEERemainder(double, double) - nameWithType: MathHelper.IEEERemainder(double, double) - fullName: OpenTK.Mathematics.MathHelper.IEEERemainder(double, double) - type: Method - source: - remote: - path: src/OpenTK.Mathematics/MathHelper.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: IEEERemainder - path: opentk/src/OpenTK.Mathematics/MathHelper.cs - startLine: 338 - assemblies: - - OpenTK.Mathematics - namespace: OpenTK.Mathematics - summary: Returns the remainder resulting from the division of a specified number by another specified number. - example: [] - syntax: - content: >- - [Pure] - - public static double IEEERemainder(double a, double b) - parameters: - - id: a - type: System.Double - description: A dividend. - - id: b - type: System.Double - description: A divisor. - return: - type: System.Double - description: >- - A number equal to a - (b Q), where Q is the quotient of a / b rounded to the nearest integer (if a / b falls halfway between two integers, the even integer is returned). - If a - (b Q) is zero, the value +0 is returned if a is positive, or -0 if a is negative. - If b = 0, NaN is returned. - content.vb: >- - - - Public Shared Function IEEERemainder(a As Double, b As Double) As Double - overload: OpenTK.Mathematics.MathHelper.IEEERemainder* - attributes: - - type: System.Diagnostics.Contracts.PureAttribute - ctor: System.Diagnostics.Contracts.PureAttribute.#ctor - arguments: [] - nameWithType.vb: MathHelper.IEEERemainder(Double, Double) - fullName.vb: OpenTK.Mathematics.MathHelper.IEEERemainder(Double, Double) - name.vb: IEEERemainder(Double, Double) -- uid: OpenTK.Mathematics.MathHelper.Max(System.Byte,System.Byte) - commentId: M:OpenTK.Mathematics.MathHelper.Max(System.Byte,System.Byte) - id: Max(System.Byte,System.Byte) - parent: OpenTK.Mathematics.MathHelper - langs: - - csharp - - vb - name: Max(byte, byte) - nameWithType: MathHelper.Max(byte, byte) - fullName: OpenTK.Mathematics.MathHelper.Max(byte, byte) - type: Method - source: - remote: - path: src/OpenTK.Mathematics/MathHelper.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Max - path: opentk/src/OpenTK.Mathematics/MathHelper.cs - startLine: 347 - assemblies: - - OpenTK.Mathematics - namespace: OpenTK.Mathematics - summary: Returns the larger of two bytes. - example: [] - syntax: - content: >- - [Pure] - - public static byte Max(byte a, byte b) - parameters: - - id: a - type: System.Byte - description: The first of two bytes to compare. - - id: b - type: System.Byte - description: The second of two bytes to compare. - return: - type: System.Byte - description: Parameter a or b, whichever is larger. - content.vb: >- - - - Public Shared Function Max(a As Byte, b As Byte) As Byte - overload: OpenTK.Mathematics.MathHelper.Max* - attributes: - - type: System.Diagnostics.Contracts.PureAttribute - ctor: System.Diagnostics.Contracts.PureAttribute.#ctor - arguments: [] - nameWithType.vb: MathHelper.Max(Byte, Byte) - fullName.vb: OpenTK.Mathematics.MathHelper.Max(Byte, Byte) - name.vb: Max(Byte, Byte) -- uid: OpenTK.Mathematics.MathHelper.Max(System.SByte,System.SByte) - commentId: M:OpenTK.Mathematics.MathHelper.Max(System.SByte,System.SByte) - id: Max(System.SByte,System.SByte) - parent: OpenTK.Mathematics.MathHelper - langs: - - csharp - - vb - name: Max(sbyte, sbyte) - nameWithType: MathHelper.Max(sbyte, sbyte) - fullName: OpenTK.Mathematics.MathHelper.Max(sbyte, sbyte) - type: Method - source: - remote: - path: src/OpenTK.Mathematics/MathHelper.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Max - path: opentk/src/OpenTK.Mathematics/MathHelper.cs - startLine: 356 - assemblies: - - OpenTK.Mathematics - namespace: OpenTK.Mathematics - summary: Returns the larger of two sbytes. - example: [] - syntax: - content: >- - [Pure] - - public static sbyte Max(sbyte a, sbyte b) - parameters: - - id: a - type: System.SByte - description: The first of two sbytes to compare. - - id: b - type: System.SByte - description: The second of two sbytes to compare. - return: - type: System.SByte - description: Parameter a or b, whichever is larger. - content.vb: >- - - - Public Shared Function Max(a As SByte, b As SByte) As SByte - overload: OpenTK.Mathematics.MathHelper.Max* - attributes: - - type: System.Diagnostics.Contracts.PureAttribute - ctor: System.Diagnostics.Contracts.PureAttribute.#ctor - arguments: [] - nameWithType.vb: MathHelper.Max(SByte, SByte) - fullName.vb: OpenTK.Mathematics.MathHelper.Max(SByte, SByte) - name.vb: Max(SByte, SByte) -- uid: OpenTK.Mathematics.MathHelper.Max(System.Int16,System.Int16) - commentId: M:OpenTK.Mathematics.MathHelper.Max(System.Int16,System.Int16) - id: Max(System.Int16,System.Int16) - parent: OpenTK.Mathematics.MathHelper - langs: - - csharp - - vb - name: Max(short, short) - nameWithType: MathHelper.Max(short, short) - fullName: OpenTK.Mathematics.MathHelper.Max(short, short) - type: Method - source: - remote: - path: src/OpenTK.Mathematics/MathHelper.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Max - path: opentk/src/OpenTK.Mathematics/MathHelper.cs - startLine: 365 - assemblies: - - OpenTK.Mathematics - namespace: OpenTK.Mathematics - summary: Returns the larger of two shorts. - example: [] - syntax: - content: >- - [Pure] - - public static short Max(short a, short b) - parameters: - - id: a - type: System.Int16 - description: The first of two shorts to compare. - - id: b - type: System.Int16 - description: The second of two shorts to compare. - return: - type: System.Int16 - description: Parameter a or b, whichever is larger. - content.vb: >- - - - Public Shared Function Max(a As Short, b As Short) As Short - overload: OpenTK.Mathematics.MathHelper.Max* - attributes: - - type: System.Diagnostics.Contracts.PureAttribute - ctor: System.Diagnostics.Contracts.PureAttribute.#ctor - arguments: [] - nameWithType.vb: MathHelper.Max(Short, Short) - fullName.vb: OpenTK.Mathematics.MathHelper.Max(Short, Short) - name.vb: Max(Short, Short) -- uid: OpenTK.Mathematics.MathHelper.Max(System.UInt16,System.UInt16) - commentId: M:OpenTK.Mathematics.MathHelper.Max(System.UInt16,System.UInt16) - id: Max(System.UInt16,System.UInt16) - parent: OpenTK.Mathematics.MathHelper - langs: - - csharp - - vb - name: Max(ushort, ushort) - nameWithType: MathHelper.Max(ushort, ushort) - fullName: OpenTK.Mathematics.MathHelper.Max(ushort, ushort) - type: Method - source: - remote: - path: src/OpenTK.Mathematics/MathHelper.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Max - path: opentk/src/OpenTK.Mathematics/MathHelper.cs - startLine: 374 - assemblies: - - OpenTK.Mathematics - namespace: OpenTK.Mathematics - summary: Returns the larger of two ushorts. - example: [] - syntax: - content: >- - [Pure] - - public static ushort Max(ushort a, ushort b) - parameters: - - id: a - type: System.UInt16 - description: The first of two ushorts to compare. - - id: b - type: System.UInt16 - description: The second of two ushorts to compare. - return: - type: System.UInt16 - description: Parameter a or b, whichever is larger. - content.vb: >- - - - Public Shared Function Max(a As UShort, b As UShort) As UShort - overload: OpenTK.Mathematics.MathHelper.Max* - attributes: - - type: System.Diagnostics.Contracts.PureAttribute - ctor: System.Diagnostics.Contracts.PureAttribute.#ctor - arguments: [] - nameWithType.vb: MathHelper.Max(UShort, UShort) - fullName.vb: OpenTK.Mathematics.MathHelper.Max(UShort, UShort) - name.vb: Max(UShort, UShort) -- uid: OpenTK.Mathematics.MathHelper.Max(System.Decimal,System.Decimal) - commentId: M:OpenTK.Mathematics.MathHelper.Max(System.Decimal,System.Decimal) - id: Max(System.Decimal,System.Decimal) - parent: OpenTK.Mathematics.MathHelper - langs: - - csharp - - vb - name: Max(decimal, decimal) - nameWithType: MathHelper.Max(decimal, decimal) - fullName: OpenTK.Mathematics.MathHelper.Max(decimal, decimal) - type: Method - source: - remote: - path: src/OpenTK.Mathematics/MathHelper.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Max - path: opentk/src/OpenTK.Mathematics/MathHelper.cs - startLine: 383 - assemblies: - - OpenTK.Mathematics - namespace: OpenTK.Mathematics - summary: Returns the larger of two decimals. - example: [] - syntax: - content: >- - [Pure] - - public static decimal Max(decimal a, decimal b) - parameters: - - id: a - type: System.Decimal - description: The first of two decimals to compare. - - id: b - type: System.Decimal - description: The second of two decimals to compare. - return: - type: System.Decimal - description: Parameter a or b, whichever is larger. - content.vb: >- - - - Public Shared Function Max(a As Decimal, b As Decimal) As Decimal - overload: OpenTK.Mathematics.MathHelper.Max* - attributes: - - type: System.Diagnostics.Contracts.PureAttribute - ctor: System.Diagnostics.Contracts.PureAttribute.#ctor - arguments: [] - nameWithType.vb: MathHelper.Max(Decimal, Decimal) - fullName.vb: OpenTK.Mathematics.MathHelper.Max(Decimal, Decimal) - name.vb: Max(Decimal, Decimal) -- uid: OpenTK.Mathematics.MathHelper.Max(System.Int32,System.Int32) - commentId: M:OpenTK.Mathematics.MathHelper.Max(System.Int32,System.Int32) - id: Max(System.Int32,System.Int32) - parent: OpenTK.Mathematics.MathHelper - langs: - - csharp - - vb - name: Max(int, int) - nameWithType: MathHelper.Max(int, int) - fullName: OpenTK.Mathematics.MathHelper.Max(int, int) - type: Method - source: - remote: - path: src/OpenTK.Mathematics/MathHelper.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Max - path: opentk/src/OpenTK.Mathematics/MathHelper.cs - startLine: 392 - assemblies: - - OpenTK.Mathematics - namespace: OpenTK.Mathematics - summary: Returns the larger of two ints. - example: [] - syntax: - content: >- - [Pure] - - public static int Max(int a, int b) - parameters: - - id: a - type: System.Int32 - description: The first of two ints to compare. - - id: b - type: System.Int32 - description: The second of two ints to compare. - return: - type: System.Int32 - description: Parameter a or b, whichever is larger. - content.vb: >- - - - Public Shared Function Max(a As Integer, b As Integer) As Integer - overload: OpenTK.Mathematics.MathHelper.Max* - attributes: - - type: System.Diagnostics.Contracts.PureAttribute - ctor: System.Diagnostics.Contracts.PureAttribute.#ctor - arguments: [] - nameWithType.vb: MathHelper.Max(Integer, Integer) - fullName.vb: OpenTK.Mathematics.MathHelper.Max(Integer, Integer) - name.vb: Max(Integer, Integer) -- uid: OpenTK.Mathematics.MathHelper.Max(System.UInt32,System.UInt32) - commentId: M:OpenTK.Mathematics.MathHelper.Max(System.UInt32,System.UInt32) - id: Max(System.UInt32,System.UInt32) - parent: OpenTK.Mathematics.MathHelper - langs: - - csharp - - vb - name: Max(uint, uint) - nameWithType: MathHelper.Max(uint, uint) - fullName: OpenTK.Mathematics.MathHelper.Max(uint, uint) - type: Method - source: - remote: - path: src/OpenTK.Mathematics/MathHelper.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Max - path: opentk/src/OpenTK.Mathematics/MathHelper.cs - startLine: 401 - assemblies: - - OpenTK.Mathematics - namespace: OpenTK.Mathematics - summary: Returns the larger of two uints. - example: [] - syntax: - content: >- - [Pure] - - public static uint Max(uint a, uint b) - parameters: - - id: a - type: System.UInt32 - description: The first of two uints to compare. - - id: b - type: System.UInt32 - description: The second of two uints to compare. - return: - type: System.UInt32 - description: Parameter a or b, whichever is larger. - content.vb: >- - - - Public Shared Function Max(a As UInteger, b As UInteger) As UInteger - overload: OpenTK.Mathematics.MathHelper.Max* - attributes: - - type: System.Diagnostics.Contracts.PureAttribute - ctor: System.Diagnostics.Contracts.PureAttribute.#ctor - arguments: [] - nameWithType.vb: MathHelper.Max(UInteger, UInteger) - fullName.vb: OpenTK.Mathematics.MathHelper.Max(UInteger, UInteger) - name.vb: Max(UInteger, UInteger) -- uid: OpenTK.Mathematics.MathHelper.Max(System.Single,System.Single) - commentId: M:OpenTK.Mathematics.MathHelper.Max(System.Single,System.Single) - id: Max(System.Single,System.Single) - parent: OpenTK.Mathematics.MathHelper - langs: - - csharp - - vb - name: Max(float, float) - nameWithType: MathHelper.Max(float, float) - fullName: OpenTK.Mathematics.MathHelper.Max(float, float) - type: Method - source: - remote: - path: src/OpenTK.Mathematics/MathHelper.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Max - path: opentk/src/OpenTK.Mathematics/MathHelper.cs - startLine: 410 - assemblies: - - OpenTK.Mathematics - namespace: OpenTK.Mathematics - summary: Returns the larger of two floats. - example: [] - syntax: - content: >- - [Pure] - - public static float Max(float a, float b) - parameters: - - id: a - type: System.Single - description: The first of two floats to compare. - - id: b - type: System.Single - description: The second of two floats to compare. - return: - type: System.Single - description: Parameter a or b, whichever is larger. - content.vb: >- - - - Public Shared Function Max(a As Single, b As Single) As Single - overload: OpenTK.Mathematics.MathHelper.Max* - attributes: - - type: System.Diagnostics.Contracts.PureAttribute - ctor: System.Diagnostics.Contracts.PureAttribute.#ctor - arguments: [] - nameWithType.vb: MathHelper.Max(Single, Single) - fullName.vb: OpenTK.Mathematics.MathHelper.Max(Single, Single) - name.vb: Max(Single, Single) -- uid: OpenTK.Mathematics.MathHelper.Max(System.Int64,System.Int64) - commentId: M:OpenTK.Mathematics.MathHelper.Max(System.Int64,System.Int64) - id: Max(System.Int64,System.Int64) - parent: OpenTK.Mathematics.MathHelper - langs: - - csharp - - vb - name: Max(long, long) - nameWithType: MathHelper.Max(long, long) - fullName: OpenTK.Mathematics.MathHelper.Max(long, long) - type: Method - source: - remote: - path: src/OpenTK.Mathematics/MathHelper.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Max - path: opentk/src/OpenTK.Mathematics/MathHelper.cs - startLine: 419 - assemblies: - - OpenTK.Mathematics - namespace: OpenTK.Mathematics - summary: Returns the larger of two longs. - example: [] - syntax: - content: >- - [Pure] - - public static long Max(long a, long b) - parameters: - - id: a - type: System.Int64 - description: The first of two longs to compare. - - id: b - type: System.Int64 - description: The second of two longs to compare. - return: - type: System.Int64 - description: Parameter a or b, whichever is larger. - content.vb: >- - - - Public Shared Function Max(a As Long, b As Long) As Long - overload: OpenTK.Mathematics.MathHelper.Max* - attributes: - - type: System.Diagnostics.Contracts.PureAttribute - ctor: System.Diagnostics.Contracts.PureAttribute.#ctor - arguments: [] - nameWithType.vb: MathHelper.Max(Long, Long) - fullName.vb: OpenTK.Mathematics.MathHelper.Max(Long, Long) - name.vb: Max(Long, Long) -- uid: OpenTK.Mathematics.MathHelper.Max(System.UInt64,System.UInt64) - commentId: M:OpenTK.Mathematics.MathHelper.Max(System.UInt64,System.UInt64) - id: Max(System.UInt64,System.UInt64) - parent: OpenTK.Mathematics.MathHelper - langs: - - csharp - - vb - name: Max(ulong, ulong) - nameWithType: MathHelper.Max(ulong, ulong) - fullName: OpenTK.Mathematics.MathHelper.Max(ulong, ulong) - type: Method - source: - remote: - path: src/OpenTK.Mathematics/MathHelper.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Max - path: opentk/src/OpenTK.Mathematics/MathHelper.cs - startLine: 428 - assemblies: - - OpenTK.Mathematics - namespace: OpenTK.Mathematics - summary: Returns the larger of two ulongs. - example: [] - syntax: - content: >- - [Pure] - - public static ulong Max(ulong a, ulong b) - parameters: - - id: a - type: System.UInt64 - description: The first of two ulongs to compare. - - id: b - type: System.UInt64 - description: The second of two ulongs to compare. - return: - type: System.UInt64 - description: Parameter a or b, whichever is larger. - content.vb: >- - - - Public Shared Function Max(a As ULong, b As ULong) As ULong - overload: OpenTK.Mathematics.MathHelper.Max* - attributes: - - type: System.Diagnostics.Contracts.PureAttribute - ctor: System.Diagnostics.Contracts.PureAttribute.#ctor - arguments: [] - nameWithType.vb: MathHelper.Max(ULong, ULong) - fullName.vb: OpenTK.Mathematics.MathHelper.Max(ULong, ULong) - name.vb: Max(ULong, ULong) -- uid: OpenTK.Mathematics.MathHelper.Min(System.Byte,System.Byte) - commentId: M:OpenTK.Mathematics.MathHelper.Min(System.Byte,System.Byte) - id: Min(System.Byte,System.Byte) - parent: OpenTK.Mathematics.MathHelper - langs: - - csharp - - vb - name: Min(byte, byte) - nameWithType: MathHelper.Min(byte, byte) - fullName: OpenTK.Mathematics.MathHelper.Min(byte, byte) - type: Method - source: - remote: - path: src/OpenTK.Mathematics/MathHelper.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Min - path: opentk/src/OpenTK.Mathematics/MathHelper.cs - startLine: 437 - assemblies: - - OpenTK.Mathematics - namespace: OpenTK.Mathematics - summary: Returns the smaller of two bytes. - example: [] - syntax: - content: >- - [Pure] - - public static byte Min(byte a, byte b) - parameters: - - id: a - type: System.Byte - description: The first of two bytes to compare. - - id: b - type: System.Byte - description: The second of two bytes to compare. - return: - type: System.Byte - description: Parameter a or b, whichever is smaller. - content.vb: >- - - - Public Shared Function Min(a As Byte, b As Byte) As Byte - overload: OpenTK.Mathematics.MathHelper.Min* - attributes: - - type: System.Diagnostics.Contracts.PureAttribute - ctor: System.Diagnostics.Contracts.PureAttribute.#ctor - arguments: [] - nameWithType.vb: MathHelper.Min(Byte, Byte) - fullName.vb: OpenTK.Mathematics.MathHelper.Min(Byte, Byte) - name.vb: Min(Byte, Byte) -- uid: OpenTK.Mathematics.MathHelper.Min(System.SByte,System.SByte) - commentId: M:OpenTK.Mathematics.MathHelper.Min(System.SByte,System.SByte) - id: Min(System.SByte,System.SByte) - parent: OpenTK.Mathematics.MathHelper - langs: - - csharp - - vb - name: Min(sbyte, sbyte) - nameWithType: MathHelper.Min(sbyte, sbyte) - fullName: OpenTK.Mathematics.MathHelper.Min(sbyte, sbyte) - type: Method - source: - remote: - path: src/OpenTK.Mathematics/MathHelper.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Min - path: opentk/src/OpenTK.Mathematics/MathHelper.cs - startLine: 446 - assemblies: - - OpenTK.Mathematics - namespace: OpenTK.Mathematics - summary: Returns the smaller of two sbytes. - example: [] - syntax: - content: >- - [Pure] - - public static sbyte Min(sbyte a, sbyte b) - parameters: - - id: a - type: System.SByte - description: The first of two sbytes to compare. - - id: b - type: System.SByte - description: The second of two sbytes to compare. - return: - type: System.SByte - description: Parameter a or b, whichever is smaller. - content.vb: >- - - - Public Shared Function Min(a As SByte, b As SByte) As SByte - overload: OpenTK.Mathematics.MathHelper.Min* - attributes: - - type: System.Diagnostics.Contracts.PureAttribute - ctor: System.Diagnostics.Contracts.PureAttribute.#ctor - arguments: [] - nameWithType.vb: MathHelper.Min(SByte, SByte) - fullName.vb: OpenTK.Mathematics.MathHelper.Min(SByte, SByte) - name.vb: Min(SByte, SByte) -- uid: OpenTK.Mathematics.MathHelper.Min(System.Int16,System.Int16) - commentId: M:OpenTK.Mathematics.MathHelper.Min(System.Int16,System.Int16) - id: Min(System.Int16,System.Int16) - parent: OpenTK.Mathematics.MathHelper - langs: - - csharp - - vb - name: Min(short, short) - nameWithType: MathHelper.Min(short, short) - fullName: OpenTK.Mathematics.MathHelper.Min(short, short) - type: Method - source: - remote: - path: src/OpenTK.Mathematics/MathHelper.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Min - path: opentk/src/OpenTK.Mathematics/MathHelper.cs - startLine: 455 - assemblies: - - OpenTK.Mathematics - namespace: OpenTK.Mathematics - summary: Returns the smaller of two shorts. - example: [] - syntax: - content: >- - [Pure] - - public static short Min(short a, short b) - parameters: - - id: a - type: System.Int16 - description: The first of two shorts to compare. - - id: b - type: System.Int16 - description: The second of two shorts to compare. - return: - type: System.Int16 - description: Parameter a or b, whichever is smaller. - content.vb: >- - - - Public Shared Function Min(a As Short, b As Short) As Short - overload: OpenTK.Mathematics.MathHelper.Min* - attributes: - - type: System.Diagnostics.Contracts.PureAttribute - ctor: System.Diagnostics.Contracts.PureAttribute.#ctor - arguments: [] - nameWithType.vb: MathHelper.Min(Short, Short) - fullName.vb: OpenTK.Mathematics.MathHelper.Min(Short, Short) - name.vb: Min(Short, Short) -- uid: OpenTK.Mathematics.MathHelper.Min(System.UInt16,System.UInt16) - commentId: M:OpenTK.Mathematics.MathHelper.Min(System.UInt16,System.UInt16) - id: Min(System.UInt16,System.UInt16) - parent: OpenTK.Mathematics.MathHelper - langs: - - csharp - - vb - name: Min(ushort, ushort) - nameWithType: MathHelper.Min(ushort, ushort) - fullName: OpenTK.Mathematics.MathHelper.Min(ushort, ushort) - type: Method - source: - remote: - path: src/OpenTK.Mathematics/MathHelper.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Min - path: opentk/src/OpenTK.Mathematics/MathHelper.cs - startLine: 464 - assemblies: - - OpenTK.Mathematics - namespace: OpenTK.Mathematics - summary: Returns the smaller of two ushorts. - example: [] - syntax: - content: >- - [Pure] - - public static ushort Min(ushort a, ushort b) - parameters: - - id: a - type: System.UInt16 - description: The first of two ushorts to compare. - - id: b - type: System.UInt16 - description: The second of two ushorts to compare. - return: - type: System.UInt16 - description: Parameter a or b, whichever is smaller. - content.vb: >- - - - Public Shared Function Min(a As UShort, b As UShort) As UShort - overload: OpenTK.Mathematics.MathHelper.Min* - attributes: - - type: System.Diagnostics.Contracts.PureAttribute - ctor: System.Diagnostics.Contracts.PureAttribute.#ctor - arguments: [] - nameWithType.vb: MathHelper.Min(UShort, UShort) - fullName.vb: OpenTK.Mathematics.MathHelper.Min(UShort, UShort) - name.vb: Min(UShort, UShort) -- uid: OpenTK.Mathematics.MathHelper.Min(System.Decimal,System.Decimal) - commentId: M:OpenTK.Mathematics.MathHelper.Min(System.Decimal,System.Decimal) - id: Min(System.Decimal,System.Decimal) - parent: OpenTK.Mathematics.MathHelper - langs: - - csharp - - vb - name: Min(decimal, decimal) - nameWithType: MathHelper.Min(decimal, decimal) - fullName: OpenTK.Mathematics.MathHelper.Min(decimal, decimal) - type: Method - source: - remote: - path: src/OpenTK.Mathematics/MathHelper.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Min - path: opentk/src/OpenTK.Mathematics/MathHelper.cs - startLine: 473 - assemblies: - - OpenTK.Mathematics - namespace: OpenTK.Mathematics - summary: Returns the smaller of two decimals. - example: [] - syntax: - content: >- - [Pure] - - public static decimal Min(decimal a, decimal b) - parameters: - - id: a - type: System.Decimal - description: The first of two decimals to compare. - - id: b - type: System.Decimal - description: The second of two decimals to compare. - return: - type: System.Decimal - description: Parameter a or b, whichever is smaller. - content.vb: >- - - - Public Shared Function Min(a As Decimal, b As Decimal) As Decimal - overload: OpenTK.Mathematics.MathHelper.Min* - attributes: - - type: System.Diagnostics.Contracts.PureAttribute - ctor: System.Diagnostics.Contracts.PureAttribute.#ctor - arguments: [] - nameWithType.vb: MathHelper.Min(Decimal, Decimal) - fullName.vb: OpenTK.Mathematics.MathHelper.Min(Decimal, Decimal) - name.vb: Min(Decimal, Decimal) -- uid: OpenTK.Mathematics.MathHelper.Min(System.Int32,System.Int32) - commentId: M:OpenTK.Mathematics.MathHelper.Min(System.Int32,System.Int32) - id: Min(System.Int32,System.Int32) - parent: OpenTK.Mathematics.MathHelper - langs: - - csharp - - vb - name: Min(int, int) - nameWithType: MathHelper.Min(int, int) - fullName: OpenTK.Mathematics.MathHelper.Min(int, int) - type: Method - source: - remote: - path: src/OpenTK.Mathematics/MathHelper.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Min - path: opentk/src/OpenTK.Mathematics/MathHelper.cs - startLine: 482 - assemblies: - - OpenTK.Mathematics - namespace: OpenTK.Mathematics - summary: Returns the smaller of two ints. - example: [] - syntax: - content: >- - [Pure] - - public static int Min(int a, int b) - parameters: - - id: a - type: System.Int32 - description: The first of two ints to compare. - - id: b - type: System.Int32 - description: The second of two ints to compare. - return: - type: System.Int32 - description: Parameter a or b, whichever is smaller. - content.vb: >- - - - Public Shared Function Min(a As Integer, b As Integer) As Integer - overload: OpenTK.Mathematics.MathHelper.Min* - attributes: - - type: System.Diagnostics.Contracts.PureAttribute - ctor: System.Diagnostics.Contracts.PureAttribute.#ctor - arguments: [] - nameWithType.vb: MathHelper.Min(Integer, Integer) - fullName.vb: OpenTK.Mathematics.MathHelper.Min(Integer, Integer) - name.vb: Min(Integer, Integer) -- uid: OpenTK.Mathematics.MathHelper.Min(System.UInt32,System.UInt32) - commentId: M:OpenTK.Mathematics.MathHelper.Min(System.UInt32,System.UInt32) - id: Min(System.UInt32,System.UInt32) - parent: OpenTK.Mathematics.MathHelper - langs: - - csharp - - vb - name: Min(uint, uint) - nameWithType: MathHelper.Min(uint, uint) - fullName: OpenTK.Mathematics.MathHelper.Min(uint, uint) - type: Method - source: - remote: - path: src/OpenTK.Mathematics/MathHelper.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Min - path: opentk/src/OpenTK.Mathematics/MathHelper.cs - startLine: 491 - assemblies: - - OpenTK.Mathematics - namespace: OpenTK.Mathematics - summary: Returns the smaller of two uints. - example: [] - syntax: - content: >- - [Pure] - - public static uint Min(uint a, uint b) - parameters: - - id: a - type: System.UInt32 - description: The first of two uints to compare. - - id: b - type: System.UInt32 - description: The second of two uints to compare. - return: - type: System.UInt32 - description: Parameter a or b, whichever is smaller. - content.vb: >- - - - Public Shared Function Min(a As UInteger, b As UInteger) As UInteger - overload: OpenTK.Mathematics.MathHelper.Min* - attributes: - - type: System.Diagnostics.Contracts.PureAttribute - ctor: System.Diagnostics.Contracts.PureAttribute.#ctor - arguments: [] - nameWithType.vb: MathHelper.Min(UInteger, UInteger) - fullName.vb: OpenTK.Mathematics.MathHelper.Min(UInteger, UInteger) - name.vb: Min(UInteger, UInteger) -- uid: OpenTK.Mathematics.MathHelper.Min(System.Single,System.Single) - commentId: M:OpenTK.Mathematics.MathHelper.Min(System.Single,System.Single) - id: Min(System.Single,System.Single) - parent: OpenTK.Mathematics.MathHelper - langs: - - csharp - - vb - name: Min(float, float) - nameWithType: MathHelper.Min(float, float) - fullName: OpenTK.Mathematics.MathHelper.Min(float, float) - type: Method - source: - remote: - path: src/OpenTK.Mathematics/MathHelper.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Min - path: opentk/src/OpenTK.Mathematics/MathHelper.cs - startLine: 500 - assemblies: - - OpenTK.Mathematics - namespace: OpenTK.Mathematics - summary: Returns the smaller of two floats. - example: [] - syntax: - content: >- - [Pure] - - public static float Min(float a, float b) - parameters: - - id: a - type: System.Single - description: The first of two floats to compare. - - id: b - type: System.Single - description: The second of two floats to compare. - return: - type: System.Single - description: Parameter a or b, whichever is smaller. - content.vb: >- - - - Public Shared Function Min(a As Single, b As Single) As Single - overload: OpenTK.Mathematics.MathHelper.Min* - attributes: - - type: System.Diagnostics.Contracts.PureAttribute - ctor: System.Diagnostics.Contracts.PureAttribute.#ctor - arguments: [] - nameWithType.vb: MathHelper.Min(Single, Single) - fullName.vb: OpenTK.Mathematics.MathHelper.Min(Single, Single) - name.vb: Min(Single, Single) -- uid: OpenTK.Mathematics.MathHelper.Min(System.Double,System.Double) - commentId: M:OpenTK.Mathematics.MathHelper.Min(System.Double,System.Double) - id: Min(System.Double,System.Double) - parent: OpenTK.Mathematics.MathHelper - langs: - - csharp - - vb - name: Min(double, double) - nameWithType: MathHelper.Min(double, double) - fullName: OpenTK.Mathematics.MathHelper.Min(double, double) - type: Method - source: - remote: - path: src/OpenTK.Mathematics/MathHelper.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Min - path: opentk/src/OpenTK.Mathematics/MathHelper.cs - startLine: 509 - assemblies: - - OpenTK.Mathematics - namespace: OpenTK.Mathematics - summary: Returns the smaller of two floats. - example: [] - syntax: - content: >- - [Pure] - - public static double Min(double a, double b) - parameters: - - id: a - type: System.Double - description: The first of two floats to compare. - - id: b - type: System.Double - description: The second of two floats to compare. - return: - type: System.Double - description: Parameter a or b, whichever is smaller. - content.vb: >- - - - Public Shared Function Min(a As Double, b As Double) As Double - overload: OpenTK.Mathematics.MathHelper.Min* - attributes: - - type: System.Diagnostics.Contracts.PureAttribute - ctor: System.Diagnostics.Contracts.PureAttribute.#ctor - arguments: [] - nameWithType.vb: MathHelper.Min(Double, Double) - fullName.vb: OpenTK.Mathematics.MathHelper.Min(Double, Double) - name.vb: Min(Double, Double) -- uid: OpenTK.Mathematics.MathHelper.Min(System.Int64,System.Int64) - commentId: M:OpenTK.Mathematics.MathHelper.Min(System.Int64,System.Int64) - id: Min(System.Int64,System.Int64) - parent: OpenTK.Mathematics.MathHelper - langs: - - csharp - - vb - name: Min(long, long) - nameWithType: MathHelper.Min(long, long) - fullName: OpenTK.Mathematics.MathHelper.Min(long, long) - type: Method - source: - remote: - path: src/OpenTK.Mathematics/MathHelper.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Min - path: opentk/src/OpenTK.Mathematics/MathHelper.cs - startLine: 518 - assemblies: - - OpenTK.Mathematics - namespace: OpenTK.Mathematics - summary: Returns the smaller of two longs. - example: [] - syntax: - content: >- - [Pure] - - public static long Min(long a, long b) - parameters: - - id: a - type: System.Int64 - description: The first of two longs to compare. - - id: b - type: System.Int64 - description: The second of two longs to compare. - return: - type: System.Int64 - description: Parameter a or b, whichever is smaller. - content.vb: >- - - - Public Shared Function Min(a As Long, b As Long) As Long - overload: OpenTK.Mathematics.MathHelper.Min* - attributes: - - type: System.Diagnostics.Contracts.PureAttribute - ctor: System.Diagnostics.Contracts.PureAttribute.#ctor - arguments: [] - nameWithType.vb: MathHelper.Min(Long, Long) - fullName.vb: OpenTK.Mathematics.MathHelper.Min(Long, Long) - name.vb: Min(Long, Long) -- uid: OpenTK.Mathematics.MathHelper.Min(System.UInt64,System.UInt64) - commentId: M:OpenTK.Mathematics.MathHelper.Min(System.UInt64,System.UInt64) - id: Min(System.UInt64,System.UInt64) - parent: OpenTK.Mathematics.MathHelper - langs: - - csharp - - vb - name: Min(ulong, ulong) - nameWithType: MathHelper.Min(ulong, ulong) - fullName: OpenTK.Mathematics.MathHelper.Min(ulong, ulong) - type: Method - source: - remote: - path: src/OpenTK.Mathematics/MathHelper.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Min - path: opentk/src/OpenTK.Mathematics/MathHelper.cs - startLine: 527 - assemblies: - - OpenTK.Mathematics - namespace: OpenTK.Mathematics - summary: Returns the smaller of two ulongs. - example: [] - syntax: - content: >- - [Pure] - - public static ulong Min(ulong a, ulong b) - parameters: - - id: a - type: System.UInt64 - description: The first of two ulongs to compare. - - id: b - type: System.UInt64 - description: The second of two ulongs to compare. - return: - type: System.UInt64 - description: Parameter a or b, whichever is smaller. - content.vb: >- - - - Public Shared Function Min(a As ULong, b As ULong) As ULong - overload: OpenTK.Mathematics.MathHelper.Min* - attributes: - - type: System.Diagnostics.Contracts.PureAttribute - ctor: System.Diagnostics.Contracts.PureAttribute.#ctor - arguments: [] - nameWithType.vb: MathHelper.Min(ULong, ULong) - fullName.vb: OpenTK.Mathematics.MathHelper.Min(ULong, ULong) - name.vb: Min(ULong, ULong) -- uid: OpenTK.Mathematics.MathHelper.Round(System.Decimal,System.Int32,System.MidpointRounding) - commentId: M:OpenTK.Mathematics.MathHelper.Round(System.Decimal,System.Int32,System.MidpointRounding) - id: Round(System.Decimal,System.Int32,System.MidpointRounding) - parent: OpenTK.Mathematics.MathHelper - langs: - - csharp - - vb - name: Round(decimal, int, MidpointRounding) - nameWithType: MathHelper.Round(decimal, int, MidpointRounding) - fullName: OpenTK.Mathematics.MathHelper.Round(decimal, int, System.MidpointRounding) - type: Method - source: - remote: - path: src/OpenTK.Mathematics/MathHelper.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Round - path: opentk/src/OpenTK.Mathematics/MathHelper.cs - startLine: 540 - assemblies: - - OpenTK.Mathematics - namespace: OpenTK.Mathematics - summary: Rounds a decimal value to a specified number of fractional digits, and uses the specified rounding convention for midpoint values. - example: [] - syntax: - content: >- - [Pure] - - public static decimal Round(decimal d, int digits, MidpointRounding mode) - parameters: - - id: d - type: System.Decimal - description: A decimal number to be rounded. - - id: digits - type: System.Int32 - description: The number of decimal places in the return value. - - id: mode - type: System.MidpointRounding - description: Specification for how to round d if it is midway between two other numbers. - return: - type: System.Decimal - description: The number nearest to d that contains a number of fractional digits equal to digits. If d has fewer fractional digits than digits, d is returned unchanged. - content.vb: >- - - - Public Shared Function Round(d As Decimal, digits As Integer, mode As MidpointRounding) As Decimal - overload: OpenTK.Mathematics.MathHelper.Round* - exceptions: - - type: System.ArgumentOutOfRangeException - commentId: T:System.ArgumentOutOfRangeException - description: digits is less than 0 or greater than 28. - - type: System.ArgumentException - commentId: T:System.ArgumentException - description: mode is not a valid value of MidpointRounding. - - type: System.OverflowException - commentId: T:System.OverflowException - description: The result is outside the range of a Decimal. - attributes: - - type: System.Diagnostics.Contracts.PureAttribute - ctor: System.Diagnostics.Contracts.PureAttribute.#ctor - arguments: [] - nameWithType.vb: MathHelper.Round(Decimal, Integer, MidpointRounding) - fullName.vb: OpenTK.Mathematics.MathHelper.Round(Decimal, Integer, System.MidpointRounding) - name.vb: Round(Decimal, Integer, MidpointRounding) -- uid: OpenTK.Mathematics.MathHelper.Round(System.Double,System.Int32,System.MidpointRounding) - commentId: M:OpenTK.Mathematics.MathHelper.Round(System.Double,System.Int32,System.MidpointRounding) - id: Round(System.Double,System.Int32,System.MidpointRounding) - parent: OpenTK.Mathematics.MathHelper - langs: - - csharp - - vb - name: Round(double, int, MidpointRounding) - nameWithType: MathHelper.Round(double, int, MidpointRounding) - fullName: OpenTK.Mathematics.MathHelper.Round(double, int, System.MidpointRounding) - type: Method - source: - remote: - path: src/OpenTK.Mathematics/MathHelper.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Round - path: opentk/src/OpenTK.Mathematics/MathHelper.cs - startLine: 552 - assemblies: - - OpenTK.Mathematics - namespace: OpenTK.Mathematics - summary: Rounds a double-precision floating-point value to a specified number of fractional digits, and uses the specified rounding convention for midpoint values. - example: [] - syntax: - content: >- - [Pure] - - public static double Round(double d, int digits, MidpointRounding mode) - parameters: - - id: d - type: System.Double - description: A double-precision floating-point number to be rounded. - - id: digits - type: System.Int32 - description: The number of fractional digits in the return value. - - id: mode - type: System.MidpointRounding - description: Specification for how to round d if it is midway between two other numbers. - return: - type: System.Double - description: The number nearest to d that has a number of fractional digits equal to digits. If d has fewer fractional digits than digits, d is returned unchanged. - content.vb: >- - - - Public Shared Function Round(d As Double, digits As Integer, mode As MidpointRounding) As Double - overload: OpenTK.Mathematics.MathHelper.Round* - exceptions: - - type: System.ArgumentOutOfRangeException - commentId: T:System.ArgumentOutOfRangeException - description: digits is less than 0 or greater than 15. - - type: System.ArgumentException - commentId: T:System.ArgumentException - description: mode is not a valid value of MidpointRounding. - attributes: - - type: System.Diagnostics.Contracts.PureAttribute - ctor: System.Diagnostics.Contracts.PureAttribute.#ctor - arguments: [] - nameWithType.vb: MathHelper.Round(Double, Integer, MidpointRounding) - fullName.vb: OpenTK.Mathematics.MathHelper.Round(Double, Integer, System.MidpointRounding) - name.vb: Round(Double, Integer, MidpointRounding) -- uid: OpenTK.Mathematics.MathHelper.Round(System.Decimal,System.MidpointRounding) - commentId: M:OpenTK.Mathematics.MathHelper.Round(System.Decimal,System.MidpointRounding) - id: Round(System.Decimal,System.MidpointRounding) - parent: OpenTK.Mathematics.MathHelper - langs: - - csharp - - vb - name: Round(decimal, MidpointRounding) - nameWithType: MathHelper.Round(decimal, MidpointRounding) - fullName: OpenTK.Mathematics.MathHelper.Round(decimal, System.MidpointRounding) - type: Method - source: - remote: - path: src/OpenTK.Mathematics/MathHelper.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Round - path: opentk/src/OpenTK.Mathematics/MathHelper.cs - startLine: 564 - assemblies: - - OpenTK.Mathematics - namespace: OpenTK.Mathematics - summary: Rounds a decimal value to the nearest integer, and uses the specified rounding convention for midpoint values. - example: [] - syntax: - content: >- - [Pure] - - public static decimal Round(decimal d, MidpointRounding mode) - parameters: - - id: d - type: System.Decimal - description: A decimal number to be rounded. - - id: mode - type: System.MidpointRounding - description: Specification for how to round d if it is midway between two other numbers. - return: - type: System.Decimal - description: >- - The integer nearest d. If d is halfway between two numbers, one of which is even and the other odd, then mode determines which of the two is returned. - Note that this method returns a Decimal instead of an integral type. - content.vb: >- - - - Public Shared Function Round(d As Decimal, mode As MidpointRounding) As Decimal - overload: OpenTK.Mathematics.MathHelper.Round* - exceptions: - - type: System.ArgumentException - commentId: T:System.ArgumentException - description: mode is not a valid value of MidpointRounding. - - type: System.OverflowException - commentId: T:System.OverflowException - description: The result is outside the range of a Decimal. - attributes: - - type: System.Diagnostics.Contracts.PureAttribute - ctor: System.Diagnostics.Contracts.PureAttribute.#ctor - arguments: [] - nameWithType.vb: MathHelper.Round(Decimal, MidpointRounding) - fullName.vb: OpenTK.Mathematics.MathHelper.Round(Decimal, System.MidpointRounding) - name.vb: Round(Decimal, MidpointRounding) -- uid: OpenTK.Mathematics.MathHelper.Round(System.Double,System.MidpointRounding) - commentId: M:OpenTK.Mathematics.MathHelper.Round(System.Double,System.MidpointRounding) - id: Round(System.Double,System.MidpointRounding) - parent: OpenTK.Mathematics.MathHelper - langs: - - csharp - - vb - name: Round(double, MidpointRounding) - nameWithType: MathHelper.Round(double, MidpointRounding) - fullName: OpenTK.Mathematics.MathHelper.Round(double, System.MidpointRounding) - type: Method - source: - remote: - path: src/OpenTK.Mathematics/MathHelper.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Round - path: opentk/src/OpenTK.Mathematics/MathHelper.cs - startLine: 575 - assemblies: - - OpenTK.Mathematics - namespace: OpenTK.Mathematics - summary: Rounds a double-precision floating-point value to the nearest integer, and uses the specified rounding convention for midpoint values. - example: [] - syntax: - content: >- - [Pure] - - public static double Round(double d, MidpointRounding mode) - parameters: - - id: d - type: System.Double - description: A double-precision floating-point number to be rounded. - - id: mode - type: System.MidpointRounding - description: Specification for how to round d if it is midway between two other numbers. - return: - type: System.Double - description: >- - The integer nearest d. If d is halfway between two integers, one of which is even and the other odd, then mode determines which of the two is returned. - Note that this method returns a Double instead of an integral type. - content.vb: >- - - - Public Shared Function Round(d As Double, mode As MidpointRounding) As Double - overload: OpenTK.Mathematics.MathHelper.Round* - exceptions: - - type: System.ArgumentException - commentId: T:System.ArgumentException - description: mode is not a valid value of MidpointRounding. - attributes: - - type: System.Diagnostics.Contracts.PureAttribute - ctor: System.Diagnostics.Contracts.PureAttribute.#ctor - arguments: [] - nameWithType.vb: MathHelper.Round(Double, MidpointRounding) - fullName.vb: OpenTK.Mathematics.MathHelper.Round(Double, System.MidpointRounding) - name.vb: Round(Double, MidpointRounding) -- uid: OpenTK.Mathematics.MathHelper.Round(System.Decimal,System.Int32) - commentId: M:OpenTK.Mathematics.MathHelper.Round(System.Decimal,System.Int32) - id: Round(System.Decimal,System.Int32) - parent: OpenTK.Mathematics.MathHelper - langs: - - csharp - - vb - name: Round(decimal, int) - nameWithType: MathHelper.Round(decimal, int) - fullName: OpenTK.Mathematics.MathHelper.Round(decimal, int) - type: Method - source: - remote: - path: src/OpenTK.Mathematics/MathHelper.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Round - path: opentk/src/OpenTK.Mathematics/MathHelper.cs - startLine: 586 - assemblies: - - OpenTK.Mathematics - namespace: OpenTK.Mathematics - summary: Rounds a decimal value to a specified number of fractional digits, and rounds midpoint values to the nearest even number. - example: [] - syntax: - content: >- - [Pure] - - public static decimal Round(decimal d, int digits) - parameters: - - id: d - type: System.Decimal - description: A decimal number to be rounded. - - id: digits - type: System.Int32 - description: The number of fractional digits in the return value. - return: - type: System.Decimal - description: The number nearest to d that contains a number of fractional digits equal to digits. - content.vb: >- - - - Public Shared Function Round(d As Decimal, digits As Integer) As Decimal - overload: OpenTK.Mathematics.MathHelper.Round* - exceptions: - - type: System.ArgumentOutOfRangeException - commentId: T:System.ArgumentOutOfRangeException - description: digits is less than 0 or greater than 15. - - type: System.OverflowException - commentId: T:System.OverflowException - description: The result is outside the range of a Decimal. - attributes: - - type: System.Diagnostics.Contracts.PureAttribute - ctor: System.Diagnostics.Contracts.PureAttribute.#ctor - arguments: [] - nameWithType.vb: MathHelper.Round(Decimal, Integer) - fullName.vb: OpenTK.Mathematics.MathHelper.Round(Decimal, Integer) - name.vb: Round(Decimal, Integer) -- uid: OpenTK.Mathematics.MathHelper.Round(System.Double,System.Int32) - commentId: M:OpenTK.Mathematics.MathHelper.Round(System.Double,System.Int32) - id: Round(System.Double,System.Int32) - parent: OpenTK.Mathematics.MathHelper - langs: - - csharp - - vb - name: Round(double, int) - nameWithType: MathHelper.Round(double, int) - fullName: OpenTK.Mathematics.MathHelper.Round(double, int) - type: Method - source: - remote: - path: src/OpenTK.Mathematics/MathHelper.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Round - path: opentk/src/OpenTK.Mathematics/MathHelper.cs - startLine: 596 - assemblies: - - OpenTK.Mathematics - namespace: OpenTK.Mathematics - summary: Rounds a double-precision floating-point value to a specified number of fractional digits, and rounds midpoint values to the nearest even number. - example: [] - syntax: - content: >- - [Pure] - - public static double Round(double d, int digits) - parameters: - - id: d - type: System.Double - description: A double-precision floating-point number to be rounded. - - id: digits - type: System.Int32 - description: The number of fractional digits in the return value. - return: - type: System.Double - description: The number nearest to value that contains a number of fractional digits equal to digits. - content.vb: >- - - - Public Shared Function Round(d As Double, digits As Integer) As Double - overload: OpenTK.Mathematics.MathHelper.Round* - exceptions: - - type: System.ArgumentOutOfRangeException - commentId: T:System.ArgumentOutOfRangeException - description: digits is less than 0 or greater than 15. - attributes: - - type: System.Diagnostics.Contracts.PureAttribute - ctor: System.Diagnostics.Contracts.PureAttribute.#ctor - arguments: [] - nameWithType.vb: MathHelper.Round(Double, Integer) - fullName.vb: OpenTK.Mathematics.MathHelper.Round(Double, Integer) - name.vb: Round(Double, Integer) -- uid: OpenTK.Mathematics.MathHelper.Round(System.Decimal) - commentId: M:OpenTK.Mathematics.MathHelper.Round(System.Decimal) - id: Round(System.Decimal) - parent: OpenTK.Mathematics.MathHelper - langs: - - csharp - - vb - name: Round(decimal) - nameWithType: MathHelper.Round(decimal) - fullName: OpenTK.Mathematics.MathHelper.Round(decimal) - type: Method - source: - remote: - path: src/OpenTK.Mathematics/MathHelper.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Round - path: opentk/src/OpenTK.Mathematics/MathHelper.cs - startLine: 606 - assemblies: - - OpenTK.Mathematics - namespace: OpenTK.Mathematics - summary: Rounds a decimal value to the nearest integral value, and rounds midpoint values to the nearest even number. - example: [] - syntax: - content: >- - [Pure] - - public static decimal Round(decimal d) - parameters: - - id: d - type: System.Decimal - description: A decimal number to be rounded. - return: - type: System.Decimal - description: >- - The integer nearest the d parameter. If the fractional component of d is halfway between two integers, one of which is even and the other odd, the even number is returned. - Note that this method returns a Decimal instead of an integral type. - content.vb: >- - - - Public Shared Function Round(d As Decimal) As Decimal - overload: OpenTK.Mathematics.MathHelper.Round* - exceptions: - - type: System.OverflowException - commentId: T:System.OverflowException - description: The result is outside the range of a Decimal. - attributes: - - type: System.Diagnostics.Contracts.PureAttribute - ctor: System.Diagnostics.Contracts.PureAttribute.#ctor - arguments: [] - nameWithType.vb: MathHelper.Round(Decimal) - fullName.vb: OpenTK.Mathematics.MathHelper.Round(Decimal) - name.vb: Round(Decimal) -- uid: OpenTK.Mathematics.MathHelper.Round(System.Double) - commentId: M:OpenTK.Mathematics.MathHelper.Round(System.Double) - id: Round(System.Double) - parent: OpenTK.Mathematics.MathHelper - langs: - - csharp - - vb - name: Round(double) - nameWithType: MathHelper.Round(double) - fullName: OpenTK.Mathematics.MathHelper.Round(double) - type: Method - source: - remote: - path: src/OpenTK.Mathematics/MathHelper.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Round - path: opentk/src/OpenTK.Mathematics/MathHelper.cs - startLine: 615 - assemblies: - - OpenTK.Mathematics - namespace: OpenTK.Mathematics - summary: Rounds a double-precision floating-point value to the nearest integral value, and rounds midpoint values to the nearest even number. - example: [] - syntax: - content: >- - [Pure] - - public static double Round(double d) - parameters: - - id: d - type: System.Double - description: A double-precision floating-point number to be rounded. - return: - type: System.Double - description: >- - The integer nearest d. If the fractional component of d is halfway between two integers, one of which is even and the other odd, then the even number is returned. - Note that this method returns a Double instead of an integral type. - content.vb: >- - - - Public Shared Function Round(d As Double) As Double - overload: OpenTK.Mathematics.MathHelper.Round* - attributes: - - type: System.Diagnostics.Contracts.PureAttribute - ctor: System.Diagnostics.Contracts.PureAttribute.#ctor - arguments: [] - nameWithType.vb: MathHelper.Round(Double) - fullName.vb: OpenTK.Mathematics.MathHelper.Round(Double) - name.vb: Round(Double) -- uid: OpenTK.Mathematics.MathHelper.Truncate(System.Decimal) - commentId: M:OpenTK.Mathematics.MathHelper.Truncate(System.Decimal) - id: Truncate(System.Decimal) - parent: OpenTK.Mathematics.MathHelper - langs: - - csharp - - vb - name: Truncate(decimal) - nameWithType: MathHelper.Truncate(decimal) - fullName: OpenTK.Mathematics.MathHelper.Truncate(decimal) - type: Method - source: - remote: - path: src/OpenTK.Mathematics/MathHelper.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Truncate - path: opentk/src/OpenTK.Mathematics/MathHelper.cs - startLine: 623 - assemblies: - - OpenTK.Mathematics - namespace: OpenTK.Mathematics - summary: Calculates the integral part of a specified decimal number. - example: [] - syntax: - content: >- - [Pure] - - public static decimal Truncate(decimal d) - parameters: - - id: d - type: System.Decimal - description: A number to truncate. - return: - type: System.Decimal - description: The integral part of d; that is, the number that remains after any fractional digits have been discarded. - content.vb: >- - - - Public Shared Function Truncate(d As Decimal) As Decimal - overload: OpenTK.Mathematics.MathHelper.Truncate* - attributes: - - type: System.Diagnostics.Contracts.PureAttribute - ctor: System.Diagnostics.Contracts.PureAttribute.#ctor - arguments: [] - nameWithType.vb: MathHelper.Truncate(Decimal) - fullName.vb: OpenTK.Mathematics.MathHelper.Truncate(Decimal) - name.vb: Truncate(Decimal) -- uid: OpenTK.Mathematics.MathHelper.Truncate(System.Double) - commentId: M:OpenTK.Mathematics.MathHelper.Truncate(System.Double) - id: Truncate(System.Double) - parent: OpenTK.Mathematics.MathHelper - langs: - - csharp - - vb - name: Truncate(double) - nameWithType: MathHelper.Truncate(double) - fullName: OpenTK.Mathematics.MathHelper.Truncate(double) - type: Method - source: - remote: - path: src/OpenTK.Mathematics/MathHelper.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Truncate - path: opentk/src/OpenTK.Mathematics/MathHelper.cs - startLine: 631 - assemblies: - - OpenTK.Mathematics - namespace: OpenTK.Mathematics - summary: Calculates the integral part of a specified double-precision floating-point number. - example: [] - syntax: - content: >- - [Pure] - - public static double Truncate(double d) - parameters: - - id: d - type: System.Double - description: A number to truncate. - return: - type: System.Double - description: The integral part of d; that is, the number that remains after any fractional digits have been discarded, or one of the values listed in the following table. - content.vb: >- - - - Public Shared Function Truncate(d As Double) As Double - overload: OpenTK.Mathematics.MathHelper.Truncate* - attributes: - - type: System.Diagnostics.Contracts.PureAttribute - ctor: System.Diagnostics.Contracts.PureAttribute.#ctor - arguments: [] - nameWithType.vb: MathHelper.Truncate(Double) - fullName.vb: OpenTK.Mathematics.MathHelper.Truncate(Double) - name.vb: Truncate(Double) -- uid: OpenTK.Mathematics.MathHelper.Sign(System.SByte) - commentId: M:OpenTK.Mathematics.MathHelper.Sign(System.SByte) - id: Sign(System.SByte) - parent: OpenTK.Mathematics.MathHelper - langs: - - csharp - - vb - name: Sign(sbyte) - nameWithType: MathHelper.Sign(sbyte) - fullName: OpenTK.Mathematics.MathHelper.Sign(sbyte) - type: Method - source: - remote: - path: src/OpenTK.Mathematics/MathHelper.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Sign - path: opentk/src/OpenTK.Mathematics/MathHelper.cs - startLine: 639 - assemblies: - - OpenTK.Mathematics - namespace: OpenTK.Mathematics - summary: Returns an integer that indicates the sign of a sbyte. - example: [] - syntax: - content: >- - [Pure] - - public static int Sign(sbyte d) - parameters: - - id: d - type: System.SByte - description: A signed number. - return: - type: System.Int32 - description: If d ≤ -1 returns -1, if 1 ≤ d returns 1 and if d = 0 returns 0. - content.vb: >- - - - Public Shared Function Sign(d As SByte) As Integer - overload: OpenTK.Mathematics.MathHelper.Sign* - attributes: - - type: System.Diagnostics.Contracts.PureAttribute - ctor: System.Diagnostics.Contracts.PureAttribute.#ctor - arguments: [] - nameWithType.vb: MathHelper.Sign(SByte) - fullName.vb: OpenTK.Mathematics.MathHelper.Sign(SByte) - name.vb: Sign(SByte) -- uid: OpenTK.Mathematics.MathHelper.Sign(System.Int16) - commentId: M:OpenTK.Mathematics.MathHelper.Sign(System.Int16) - id: Sign(System.Int16) - parent: OpenTK.Mathematics.MathHelper - langs: - - csharp - - vb - name: Sign(short) - nameWithType: MathHelper.Sign(short) - fullName: OpenTK.Mathematics.MathHelper.Sign(short) - type: Method - source: - remote: - path: src/OpenTK.Mathematics/MathHelper.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Sign - path: opentk/src/OpenTK.Mathematics/MathHelper.cs - startLine: 647 - assemblies: - - OpenTK.Mathematics - namespace: OpenTK.Mathematics - summary: Returns an integer that indicates the sign of a short. - example: [] - syntax: - content: >- - [Pure] - - public static int Sign(short d) - parameters: - - id: d - type: System.Int16 - description: A signed number. - return: - type: System.Int32 - description: If d ≤ -1 returns -1, if 1 ≤ d returns 1 and if d = 0 returns 0. - content.vb: >- - - - Public Shared Function Sign(d As Short) As Integer - overload: OpenTK.Mathematics.MathHelper.Sign* - attributes: - - type: System.Diagnostics.Contracts.PureAttribute - ctor: System.Diagnostics.Contracts.PureAttribute.#ctor - arguments: [] - nameWithType.vb: MathHelper.Sign(Short) - fullName.vb: OpenTK.Mathematics.MathHelper.Sign(Short) - name.vb: Sign(Short) -- uid: OpenTK.Mathematics.MathHelper.Sign(System.Int32) - commentId: M:OpenTK.Mathematics.MathHelper.Sign(System.Int32) - id: Sign(System.Int32) - parent: OpenTK.Mathematics.MathHelper - langs: - - csharp - - vb - name: Sign(int) - nameWithType: MathHelper.Sign(int) - fullName: OpenTK.Mathematics.MathHelper.Sign(int) - type: Method - source: - remote: - path: src/OpenTK.Mathematics/MathHelper.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Sign - path: opentk/src/OpenTK.Mathematics/MathHelper.cs - startLine: 655 - assemblies: - - OpenTK.Mathematics - namespace: OpenTK.Mathematics - summary: Returns an integer that indicates the sign of a int. - example: [] - syntax: - content: >- - [Pure] - - public static int Sign(int d) - parameters: - - id: d - type: System.Int32 - description: A signed number. - return: - type: System.Int32 - description: If d ≤ -1 returns -1, if 1 ≤ d returns 1 and if d = 0 returns 0. - content.vb: >- - - - Public Shared Function Sign(d As Integer) As Integer - overload: OpenTK.Mathematics.MathHelper.Sign* - attributes: - - type: System.Diagnostics.Contracts.PureAttribute - ctor: System.Diagnostics.Contracts.PureAttribute.#ctor - arguments: [] - nameWithType.vb: MathHelper.Sign(Integer) - fullName.vb: OpenTK.Mathematics.MathHelper.Sign(Integer) - name.vb: Sign(Integer) -- uid: OpenTK.Mathematics.MathHelper.Sign(System.Single) - commentId: M:OpenTK.Mathematics.MathHelper.Sign(System.Single) - id: Sign(System.Single) - parent: OpenTK.Mathematics.MathHelper - langs: - - csharp - - vb - name: Sign(float) - nameWithType: MathHelper.Sign(float) - fullName: OpenTK.Mathematics.MathHelper.Sign(float) - type: Method - source: - remote: - path: src/OpenTK.Mathematics/MathHelper.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Sign - path: opentk/src/OpenTK.Mathematics/MathHelper.cs - startLine: 663 - assemblies: - - OpenTK.Mathematics - namespace: OpenTK.Mathematics - summary: Returns an integer that indicates the sign of a float. - example: [] - syntax: - content: >- - [Pure] - - public static int Sign(float d) - parameters: - - id: d - type: System.Single - description: A signed number. - return: - type: System.Int32 - description: If d ≤ -1 returns -1, if 1 ≤ d returns 1 and if d = 0 returns 0. - content.vb: >- - - - Public Shared Function Sign(d As Single) As Integer - overload: OpenTK.Mathematics.MathHelper.Sign* - attributes: - - type: System.Diagnostics.Contracts.PureAttribute - ctor: System.Diagnostics.Contracts.PureAttribute.#ctor - arguments: [] - nameWithType.vb: MathHelper.Sign(Single) - fullName.vb: OpenTK.Mathematics.MathHelper.Sign(Single) - name.vb: Sign(Single) -- uid: OpenTK.Mathematics.MathHelper.Sign(System.Decimal) - commentId: M:OpenTK.Mathematics.MathHelper.Sign(System.Decimal) - id: Sign(System.Decimal) - parent: OpenTK.Mathematics.MathHelper - langs: - - csharp - - vb - name: Sign(decimal) - nameWithType: MathHelper.Sign(decimal) - fullName: OpenTK.Mathematics.MathHelper.Sign(decimal) - type: Method - source: - remote: - path: src/OpenTK.Mathematics/MathHelper.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Sign - path: opentk/src/OpenTK.Mathematics/MathHelper.cs - startLine: 671 - assemblies: - - OpenTK.Mathematics - namespace: OpenTK.Mathematics - summary: Returns an integer that indicates the sign of a decimal. - example: [] - syntax: - content: >- - [Pure] - - public static int Sign(decimal d) - parameters: - - id: d - type: System.Decimal - description: A signed number. - return: - type: System.Int32 - description: If d ≤ -1 returns -1, if 1 ≤ d returns 1 and if d = 0 returns 0. - content.vb: >- - - - Public Shared Function Sign(d As Decimal) As Integer - overload: OpenTK.Mathematics.MathHelper.Sign* - attributes: - - type: System.Diagnostics.Contracts.PureAttribute - ctor: System.Diagnostics.Contracts.PureAttribute.#ctor - arguments: [] - nameWithType.vb: MathHelper.Sign(Decimal) - fullName.vb: OpenTK.Mathematics.MathHelper.Sign(Decimal) - name.vb: Sign(Decimal) -- uid: OpenTK.Mathematics.MathHelper.Sign(System.Double) - commentId: M:OpenTK.Mathematics.MathHelper.Sign(System.Double) - id: Sign(System.Double) - parent: OpenTK.Mathematics.MathHelper - langs: - - csharp - - vb - name: Sign(double) - nameWithType: MathHelper.Sign(double) - fullName: OpenTK.Mathematics.MathHelper.Sign(double) - type: Method - source: - remote: - path: src/OpenTK.Mathematics/MathHelper.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Sign - path: opentk/src/OpenTK.Mathematics/MathHelper.cs - startLine: 679 - assemblies: - - OpenTK.Mathematics - namespace: OpenTK.Mathematics - summary: Returns an integer that indicates the sign of a double. - example: [] - syntax: - content: >- - [Pure] - - public static int Sign(double d) - parameters: - - id: d - type: System.Double - description: A signed number. - return: - type: System.Int32 - description: If d ≤ -1 returns -1, if 1 ≤ d returns 1 and if d = 0 returns 0. - content.vb: >- - - - Public Shared Function Sign(d As Double) As Integer - overload: OpenTK.Mathematics.MathHelper.Sign* - attributes: - - type: System.Diagnostics.Contracts.PureAttribute - ctor: System.Diagnostics.Contracts.PureAttribute.#ctor - arguments: [] - nameWithType.vb: MathHelper.Sign(Double) - fullName.vb: OpenTK.Mathematics.MathHelper.Sign(Double) - name.vb: Sign(Double) -- uid: OpenTK.Mathematics.MathHelper.Sign(System.Int64) - commentId: M:OpenTK.Mathematics.MathHelper.Sign(System.Int64) - id: Sign(System.Int64) - parent: OpenTK.Mathematics.MathHelper - langs: - - csharp - - vb - name: Sign(long) - nameWithType: MathHelper.Sign(long) - fullName: OpenTK.Mathematics.MathHelper.Sign(long) - type: Method - source: - remote: - path: src/OpenTK.Mathematics/MathHelper.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Sign - path: opentk/src/OpenTK.Mathematics/MathHelper.cs - startLine: 687 - assemblies: - - OpenTK.Mathematics - namespace: OpenTK.Mathematics - summary: Returns an integer that indicates the sign of a long. - example: [] - syntax: - content: >- - [Pure] - - public static int Sign(long d) - parameters: - - id: d - type: System.Int64 - description: A signed number. - return: - type: System.Int32 - description: If d ≤ -1 returns -1, if 1 ≤ d returns 1 and if d = 0 returns 0. - content.vb: >- - - - Public Shared Function Sign(d As Long) As Integer - overload: OpenTK.Mathematics.MathHelper.Sign* - attributes: - - type: System.Diagnostics.Contracts.PureAttribute - ctor: System.Diagnostics.Contracts.PureAttribute.#ctor - arguments: [] - nameWithType.vb: MathHelper.Sign(Long) - fullName.vb: OpenTK.Mathematics.MathHelper.Sign(Long) - name.vb: Sign(Long) - uid: OpenTK.Mathematics.MathHelper.NextPowerOfTwo(System.Int64) commentId: M:OpenTK.Mathematics.MathHelper.NextPowerOfTwo(System.Int64) id: NextPowerOfTwo(System.Int64) @@ -3993,13 +337,9 @@ items: fullName: OpenTK.Mathematics.MathHelper.NextPowerOfTwo(long) type: Method source: - remote: - path: src/OpenTK.Mathematics/MathHelper.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: NextPowerOfTwo - path: opentk/src/OpenTK.Mathematics/MathHelper.cs - startLine: 695 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\MathHelper.cs + startLine: 75 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -4041,13 +381,9 @@ items: fullName: OpenTK.Mathematics.MathHelper.NextPowerOfTwo(int) type: Method source: - remote: - path: src/OpenTK.Mathematics/MathHelper.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: NextPowerOfTwo - path: opentk/src/OpenTK.Mathematics/MathHelper.cs - startLine: 711 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\MathHelper.cs + startLine: 91 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -4089,13 +425,9 @@ items: fullName: OpenTK.Mathematics.MathHelper.NextPowerOfTwo(float) type: Method source: - remote: - path: src/OpenTK.Mathematics/MathHelper.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: NextPowerOfTwo - path: opentk/src/OpenTK.Mathematics/MathHelper.cs - startLine: 727 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\MathHelper.cs + startLine: 107 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -4137,13 +469,9 @@ items: fullName: OpenTK.Mathematics.MathHelper.NextPowerOfTwo(double) type: Method source: - remote: - path: src/OpenTK.Mathematics/MathHelper.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: NextPowerOfTwo - path: opentk/src/OpenTK.Mathematics/MathHelper.cs - startLine: 743 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\MathHelper.cs + startLine: 123 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -4180,214 +508,90 @@ items: langs: - csharp - vb - name: Factorial(int) - nameWithType: MathHelper.Factorial(int) - fullName: OpenTK.Mathematics.MathHelper.Factorial(int) - type: Method - source: - remote: - path: src/OpenTK.Mathematics/MathHelper.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Factorial - path: opentk/src/OpenTK.Mathematics/MathHelper.cs - startLine: 759 - assemblies: - - OpenTK.Mathematics - namespace: OpenTK.Mathematics - summary: Calculates the factorial of a given natural number. - example: [] - syntax: - content: >- - [Pure] - - public static long Factorial(int n) - parameters: - - id: n - type: System.Int32 - description: The number. - return: - type: System.Int64 - description: The factorial of n. - content.vb: >- - - - Public Shared Function Factorial(n As Integer) As Long - overload: OpenTK.Mathematics.MathHelper.Factorial* - attributes: - - type: System.Diagnostics.Contracts.PureAttribute - ctor: System.Diagnostics.Contracts.PureAttribute.#ctor - arguments: [] - nameWithType.vb: MathHelper.Factorial(Integer) - fullName.vb: OpenTK.Mathematics.MathHelper.Factorial(Integer) - name.vb: Factorial(Integer) -- uid: OpenTK.Mathematics.MathHelper.BinomialCoefficient(System.Int32,System.Int32) - commentId: M:OpenTK.Mathematics.MathHelper.BinomialCoefficient(System.Int32,System.Int32) - id: BinomialCoefficient(System.Int32,System.Int32) - parent: OpenTK.Mathematics.MathHelper - langs: - - csharp - - vb - name: BinomialCoefficient(int, int) - nameWithType: MathHelper.BinomialCoefficient(int, int) - fullName: OpenTK.Mathematics.MathHelper.BinomialCoefficient(int, int) - type: Method - source: - remote: - path: src/OpenTK.Mathematics/MathHelper.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: BinomialCoefficient - path: opentk/src/OpenTK.Mathematics/MathHelper.cs - startLine: 778 - assemblies: - - OpenTK.Mathematics - namespace: OpenTK.Mathematics - summary: Calculates the binomial coefficient n above k. - example: [] - syntax: - content: >- - [Pure] - - public static long BinomialCoefficient(int n, int k) - parameters: - - id: n - type: System.Int32 - description: The n. - - id: k - type: System.Int32 - description: The k. - return: - type: System.Int64 - description: n! / (k! * (n - k)!). - content.vb: >- - - - Public Shared Function BinomialCoefficient(n As Integer, k As Integer) As Long - overload: OpenTK.Mathematics.MathHelper.BinomialCoefficient* - attributes: - - type: System.Diagnostics.Contracts.PureAttribute - ctor: System.Diagnostics.Contracts.PureAttribute.#ctor - arguments: [] - nameWithType.vb: MathHelper.BinomialCoefficient(Integer, Integer) - fullName.vb: OpenTK.Mathematics.MathHelper.BinomialCoefficient(Integer, Integer) - name.vb: BinomialCoefficient(Integer, Integer) -- uid: OpenTK.Mathematics.MathHelper.InverseSqrtFast(System.Single) - commentId: M:OpenTK.Mathematics.MathHelper.InverseSqrtFast(System.Single) - id: InverseSqrtFast(System.Single) - parent: OpenTK.Mathematics.MathHelper - langs: - - csharp - - vb - name: InverseSqrtFast(float) - nameWithType: MathHelper.InverseSqrtFast(float) - fullName: OpenTK.Mathematics.MathHelper.InverseSqrtFast(float) + name: Factorial(int) + nameWithType: MathHelper.Factorial(int) + fullName: OpenTK.Mathematics.MathHelper.Factorial(int) type: Method source: - remote: - path: src/OpenTK.Mathematics/MathHelper.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: InverseSqrtFast - path: opentk/src/OpenTK.Mathematics/MathHelper.cs - startLine: 795 + id: Factorial + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\MathHelper.cs + startLine: 139 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics - summary: Returns an approximation of the inverse square root of left number. - remarks: >- - This is an improved implementation of the the method known as Carmack's inverse square root - - which is found in the Quake III source code. This implementation comes from - - http://www.codemaestro.com/reviews/review00000105.html. For the history of this method, see - - http://www.beyond3d.com/content/articles/8/. + summary: Calculates the factorial of a given natural number. example: [] syntax: content: >- [Pure] - public static float InverseSqrtFast(float x) + public static long Factorial(int n) parameters: - - id: x - type: System.Single - description: A number. + - id: n + type: System.Int32 + description: The number. return: - type: System.Single - description: An approximation of the inverse square root of the specified number, with an upper error bound of 0.001. + type: System.Int64 + description: The factorial of n. content.vb: >- - Public Shared Function InverseSqrtFast(x As Single) As Single - overload: OpenTK.Mathematics.MathHelper.InverseSqrtFast* + Public Shared Function Factorial(n As Integer) As Long + overload: OpenTK.Mathematics.MathHelper.Factorial* attributes: - type: System.Diagnostics.Contracts.PureAttribute ctor: System.Diagnostics.Contracts.PureAttribute.#ctor arguments: [] - nameWithType.vb: MathHelper.InverseSqrtFast(Single) - fullName.vb: OpenTK.Mathematics.MathHelper.InverseSqrtFast(Single) - name.vb: InverseSqrtFast(Single) -- uid: OpenTK.Mathematics.MathHelper.InverseSqrtFast(System.Double) - commentId: M:OpenTK.Mathematics.MathHelper.InverseSqrtFast(System.Double) - id: InverseSqrtFast(System.Double) + nameWithType.vb: MathHelper.Factorial(Integer) + fullName.vb: OpenTK.Mathematics.MathHelper.Factorial(Integer) + name.vb: Factorial(Integer) +- uid: OpenTK.Mathematics.MathHelper.BinomialCoefficient(System.Int32,System.Int32) + commentId: M:OpenTK.Mathematics.MathHelper.BinomialCoefficient(System.Int32,System.Int32) + id: BinomialCoefficient(System.Int32,System.Int32) parent: OpenTK.Mathematics.MathHelper langs: - csharp - vb - name: InverseSqrtFast(double) - nameWithType: MathHelper.InverseSqrtFast(double) - fullName: OpenTK.Mathematics.MathHelper.InverseSqrtFast(double) + name: BinomialCoefficient(int, int) + nameWithType: MathHelper.BinomialCoefficient(int, int) + fullName: OpenTK.Mathematics.MathHelper.BinomialCoefficient(int, int) type: Method source: - remote: - path: src/OpenTK.Mathematics/MathHelper.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: InverseSqrtFast - path: opentk/src/OpenTK.Mathematics/MathHelper.cs - startLine: 822 + id: BinomialCoefficient + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\MathHelper.cs + startLine: 158 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics - summary: Returns an approximation of the inverse square root of left number. - remarks: >- - This is an improved implementation of the the method known as Carmack's inverse square root - - which is found in the Quake III source code. This implementation comes from - - http://www.codemaestro.com/reviews/review00000105.html. For the history of this method, see - - http://www.beyond3d.com/content/articles/8/. - - double magic number from: https://cs.uwaterloo.ca/~m32rober/rsqrt.pdf - - chapter 4.8. + summary: Calculates the binomial coefficient n above k. example: [] syntax: content: >- [Pure] - public static double InverseSqrtFast(double x) + public static long BinomialCoefficient(int n, int k) parameters: - - id: x - type: System.Double - description: A number. + - id: n + type: System.Int32 + description: The n. + - id: k + type: System.Int32 + description: The k. return: - type: System.Double - description: An approximation of the inverse square root of the specified number, with an upper error bound of 0.001. + type: System.Int64 + description: n! / (k! * (n - k)!). content.vb: >- - Public Shared Function InverseSqrtFast(x As Double) As Double - overload: OpenTK.Mathematics.MathHelper.InverseSqrtFast* + Public Shared Function BinomialCoefficient(n As Integer, k As Integer) As Long + overload: OpenTK.Mathematics.MathHelper.BinomialCoefficient* attributes: - type: System.Diagnostics.Contracts.PureAttribute ctor: System.Diagnostics.Contracts.PureAttribute.#ctor arguments: [] - nameWithType.vb: MathHelper.InverseSqrtFast(Double) - fullName.vb: OpenTK.Mathematics.MathHelper.InverseSqrtFast(Double) - name.vb: InverseSqrtFast(Double) + nameWithType.vb: MathHelper.BinomialCoefficient(Integer, Integer) + fullName.vb: OpenTK.Mathematics.MathHelper.BinomialCoefficient(Integer, Integer) + name.vb: BinomialCoefficient(Integer, Integer) - uid: OpenTK.Mathematics.MathHelper.DegreesToRadians(System.Single) commentId: M:OpenTK.Mathematics.MathHelper.DegreesToRadians(System.Single) id: DegreesToRadians(System.Single) @@ -4400,13 +604,9 @@ items: fullName: OpenTK.Mathematics.MathHelper.DegreesToRadians(float) type: Method source: - remote: - path: src/OpenTK.Mathematics/MathHelper.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DegreesToRadians - path: opentk/src/OpenTK.Mathematics/MathHelper.cs - startLine: 841 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\MathHelper.cs + startLine: 169 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -4448,13 +648,9 @@ items: fullName: OpenTK.Mathematics.MathHelper.RadiansToDegrees(float) type: Method source: - remote: - path: src/OpenTK.Mathematics/MathHelper.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: RadiansToDegrees - path: opentk/src/OpenTK.Mathematics/MathHelper.cs - startLine: 853 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\MathHelper.cs + startLine: 181 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -4496,13 +692,9 @@ items: fullName: OpenTK.Mathematics.MathHelper.DegreesToRadians(double) type: Method source: - remote: - path: src/OpenTK.Mathematics/MathHelper.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DegreesToRadians - path: opentk/src/OpenTK.Mathematics/MathHelper.cs - startLine: 865 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\MathHelper.cs + startLine: 193 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -4544,13 +736,9 @@ items: fullName: OpenTK.Mathematics.MathHelper.RadiansToDegrees(double) type: Method source: - remote: - path: src/OpenTK.Mathematics/MathHelper.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: RadiansToDegrees - path: opentk/src/OpenTK.Mathematics/MathHelper.cs - startLine: 877 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\MathHelper.cs + startLine: 205 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -4592,13 +780,9 @@ items: fullName: OpenTK.Mathematics.MathHelper.Swap(ref T, ref T) type: Method source: - remote: - path: src/OpenTK.Mathematics/MathHelper.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Swap - path: opentk/src/OpenTK.Mathematics/MathHelper.cs - startLine: 890 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\MathHelper.cs + startLine: 218 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -4621,168 +805,6 @@ items: nameWithType.vb: MathHelper.Swap(Of T)(T, T) fullName.vb: OpenTK.Mathematics.MathHelper.Swap(Of T)(T, T) name.vb: Swap(Of T)(T, T) -- uid: OpenTK.Mathematics.MathHelper.Clamp(System.Int32,System.Int32,System.Int32) - commentId: M:OpenTK.Mathematics.MathHelper.Clamp(System.Int32,System.Int32,System.Int32) - id: Clamp(System.Int32,System.Int32,System.Int32) - parent: OpenTK.Mathematics.MathHelper - langs: - - csharp - - vb - name: Clamp(int, int, int) - nameWithType: MathHelper.Clamp(int, int, int) - fullName: OpenTK.Mathematics.MathHelper.Clamp(int, int, int) - type: Method - source: - remote: - path: src/OpenTK.Mathematics/MathHelper.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Clamp - path: opentk/src/OpenTK.Mathematics/MathHelper.cs - startLine: 899 - assemblies: - - OpenTK.Mathematics - namespace: OpenTK.Mathematics - summary: Clamps a number between a minimum and a maximum. - example: [] - syntax: - content: >- - [Pure] - - public static int Clamp(int n, int min, int max) - parameters: - - id: n - type: System.Int32 - description: The number to clamp. - - id: min - type: System.Int32 - description: The minimum allowed value. - - id: max - type: System.Int32 - description: The maximum allowed value. - return: - type: System.Int32 - description: min, if n is lower than min; max, if n is higher than max; n otherwise. - content.vb: >- - - - Public Shared Function Clamp(n As Integer, min As Integer, max As Integer) As Integer - overload: OpenTK.Mathematics.MathHelper.Clamp* - attributes: - - type: System.Diagnostics.Contracts.PureAttribute - ctor: System.Diagnostics.Contracts.PureAttribute.#ctor - arguments: [] - nameWithType.vb: MathHelper.Clamp(Integer, Integer, Integer) - fullName.vb: OpenTK.Mathematics.MathHelper.Clamp(Integer, Integer, Integer) - name.vb: Clamp(Integer, Integer, Integer) -- uid: OpenTK.Mathematics.MathHelper.Clamp(System.Single,System.Single,System.Single) - commentId: M:OpenTK.Mathematics.MathHelper.Clamp(System.Single,System.Single,System.Single) - id: Clamp(System.Single,System.Single,System.Single) - parent: OpenTK.Mathematics.MathHelper - langs: - - csharp - - vb - name: Clamp(float, float, float) - nameWithType: MathHelper.Clamp(float, float, float) - fullName: OpenTK.Mathematics.MathHelper.Clamp(float, float, float) - type: Method - source: - remote: - path: src/OpenTK.Mathematics/MathHelper.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Clamp - path: opentk/src/OpenTK.Mathematics/MathHelper.cs - startLine: 912 - assemblies: - - OpenTK.Mathematics - namespace: OpenTK.Mathematics - summary: Clamps a number between a minimum and a maximum. - example: [] - syntax: - content: >- - [Pure] - - public static float Clamp(float n, float min, float max) - parameters: - - id: n - type: System.Single - description: The number to clamp. - - id: min - type: System.Single - description: The minimum allowed value. - - id: max - type: System.Single - description: The maximum allowed value. - return: - type: System.Single - description: min, if n is lower than min; max, if n is higher than max; n otherwise. - content.vb: >- - - - Public Shared Function Clamp(n As Single, min As Single, max As Single) As Single - overload: OpenTK.Mathematics.MathHelper.Clamp* - attributes: - - type: System.Diagnostics.Contracts.PureAttribute - ctor: System.Diagnostics.Contracts.PureAttribute.#ctor - arguments: [] - nameWithType.vb: MathHelper.Clamp(Single, Single, Single) - fullName.vb: OpenTK.Mathematics.MathHelper.Clamp(Single, Single, Single) - name.vb: Clamp(Single, Single, Single) -- uid: OpenTK.Mathematics.MathHelper.Clamp(System.Double,System.Double,System.Double) - commentId: M:OpenTK.Mathematics.MathHelper.Clamp(System.Double,System.Double,System.Double) - id: Clamp(System.Double,System.Double,System.Double) - parent: OpenTK.Mathematics.MathHelper - langs: - - csharp - - vb - name: Clamp(double, double, double) - nameWithType: MathHelper.Clamp(double, double, double) - fullName: OpenTK.Mathematics.MathHelper.Clamp(double, double, double) - type: Method - source: - remote: - path: src/OpenTK.Mathematics/MathHelper.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Clamp - path: opentk/src/OpenTK.Mathematics/MathHelper.cs - startLine: 925 - assemblies: - - OpenTK.Mathematics - namespace: OpenTK.Mathematics - summary: Clamps a number between a minimum and a maximum. - example: [] - syntax: - content: >- - [Pure] - - public static double Clamp(double n, double min, double max) - parameters: - - id: n - type: System.Double - description: The number to clamp. - - id: min - type: System.Double - description: The minimum allowed value. - - id: max - type: System.Double - description: The maximum allowed value. - return: - type: System.Double - description: min, if n is lower than min; max, if n is higher than max; n otherwise. - content.vb: >- - - - Public Shared Function Clamp(n As Double, min As Double, max As Double) As Double - overload: OpenTK.Mathematics.MathHelper.Clamp* - attributes: - - type: System.Diagnostics.Contracts.PureAttribute - ctor: System.Diagnostics.Contracts.PureAttribute.#ctor - arguments: [] - nameWithType.vb: MathHelper.Clamp(Double, Double, Double) - fullName.vb: OpenTK.Mathematics.MathHelper.Clamp(Double, Double, Double) - name.vb: Clamp(Double, Double, Double) - uid: OpenTK.Mathematics.MathHelper.MapRange(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32) commentId: M:OpenTK.Mathematics.MathHelper.MapRange(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32) id: MapRange(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32) @@ -4795,13 +817,9 @@ items: fullName: OpenTK.Mathematics.MathHelper.MapRange(int, int, int, int, int) type: Method source: - remote: - path: src/OpenTK.Mathematics/MathHelper.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MapRange - path: opentk/src/OpenTK.Mathematics/MathHelper.cs - startLine: 941 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\MathHelper.cs + startLine: 230 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -4856,13 +874,9 @@ items: fullName: OpenTK.Mathematics.MathHelper.MapRange(float, float, float, float, float) type: Method source: - remote: - path: src/OpenTK.Mathematics/MathHelper.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MapRange - path: opentk/src/OpenTK.Mathematics/MathHelper.cs - startLine: 959 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\MathHelper.cs + startLine: 248 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -4917,13 +931,9 @@ items: fullName: OpenTK.Mathematics.MathHelper.MapRange(double, double, double, double, double) type: Method source: - remote: - path: src/OpenTK.Mathematics/MathHelper.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MapRange - path: opentk/src/OpenTK.Mathematics/MathHelper.cs - startLine: 977 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\MathHelper.cs + startLine: 266 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -4978,13 +988,9 @@ items: fullName: OpenTK.Mathematics.MathHelper.ApproximatelyEqual(float, float, int) type: Method source: - remote: - path: src/OpenTK.Mathematics/MathHelper.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ApproximatelyEqual - path: opentk/src/OpenTK.Mathematics/MathHelper.cs - startLine: 995 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\MathHelper.cs + startLine: 284 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -5039,13 +1045,9 @@ items: fullName: OpenTK.Mathematics.MathHelper.ApproximatelyEqualEpsilon(double, double, double) type: Method source: - remote: - path: src/OpenTK.Mathematics/MathHelper.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ApproximatelyEqualEpsilon - path: opentk/src/OpenTK.Mathematics/MathHelper.cs - startLine: 1026 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\MathHelper.cs + startLine: 315 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -5071,7 +1073,10 @@ items: description: The maximum error between the two. return: type: System.Boolean - description: " true if the values are approximately equal within the error margin; otherwise,\r\nfalse." + description: >- + true if the values are approximately equal within the error margin; otherwise, + + false. content.vb: >- @@ -5096,13 +1101,9 @@ items: fullName: OpenTK.Mathematics.MathHelper.ApproximatelyEqualEpsilon(float, float, float) type: Method source: - remote: - path: src/OpenTK.Mathematics/MathHelper.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ApproximatelyEqualEpsilon - path: opentk/src/OpenTK.Mathematics/MathHelper.cs - startLine: 1063 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\MathHelper.cs + startLine: 352 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -5130,8 +1131,7 @@ items: type: System.Boolean description: >- true if the values are approximately equal within the error margin; otherwise, - - false. + false. content.vb: >- @@ -5156,13 +1156,9 @@ items: fullName: OpenTK.Mathematics.MathHelper.ApproximatelyEquivalent(float, float, float) type: Method source: - remote: - path: src/OpenTK.Mathematics/MathHelper.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ApproximatelyEquivalent - path: opentk/src/OpenTK.Mathematics/MathHelper.cs - startLine: 1100 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\MathHelper.cs + startLine: 389 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -5217,13 +1213,9 @@ items: fullName: OpenTK.Mathematics.MathHelper.ApproximatelyEquivalent(double, double, double) type: Method source: - remote: - path: src/OpenTK.Mathematics/MathHelper.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ApproximatelyEquivalent - path: opentk/src/OpenTK.Mathematics/MathHelper.cs - startLine: 1124 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\MathHelper.cs + startLine: 413 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -5278,17 +1270,13 @@ items: fullName: OpenTK.Mathematics.MathHelper.Lerp(float, float, float) type: Method source: - remote: - path: src/OpenTK.Mathematics/MathHelper.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Lerp - path: opentk/src/OpenTK.Mathematics/MathHelper.cs - startLine: 1145 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\MathHelper.cs + startLine: 434 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics - summary: Linearly interpolates between a and b by t. + summary: Linearly interpolates between start and end by t. example: [] syntax: content: >- @@ -5304,10 +1292,10 @@ items: description: End value. - id: t type: System.Single - description: Value of the interpollation between a and b. Clamped to [0, 1]. + description: Value of the interpolation between start and end. Not clamped. return: type: System.Single - description: The interpolated result between the a and b values. + description: The interpolated result between the start and end values. content.vb: >- @@ -5332,17 +1320,13 @@ items: fullName: OpenTK.Mathematics.MathHelper.Lerp(double, double, double) type: Method source: - remote: - path: src/OpenTK.Mathematics/MathHelper.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Lerp - path: opentk/src/OpenTK.Mathematics/MathHelper.cs - startLine: 1159 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\MathHelper.cs + startLine: 447 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics - summary: Linearly interpolates between a and b by t. + summary: Linearly interpolates between start and end by t. example: [] syntax: content: >- @@ -5358,10 +1342,10 @@ items: description: End value. - id: t type: System.Double - description: Value of the interpollation between a and b. Clamped to [0, 1]. + description: Value of the interpolation between start and end. Not clamped. return: type: System.Double - description: The interpolated result between the a and b values. + description: The interpolated result between the start and end values. content.vb: >- @@ -5374,6 +1358,96 @@ items: nameWithType.vb: MathHelper.Lerp(Double, Double, Double) fullName.vb: OpenTK.Mathematics.MathHelper.Lerp(Double, Double, Double) name.vb: Lerp(Double, Double, Double) +- uid: OpenTK.Mathematics.MathHelper.Elerp(System.Single,System.Single,System.Single) + commentId: M:OpenTK.Mathematics.MathHelper.Elerp(System.Single,System.Single,System.Single) + id: Elerp(System.Single,System.Single,System.Single) + parent: OpenTK.Mathematics.MathHelper + langs: + - csharp + - vb + name: Elerp(float, float, float) + nameWithType: MathHelper.Elerp(float, float, float) + fullName: OpenTK.Mathematics.MathHelper.Elerp(float, float, float) + type: Method + source: + id: Elerp + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\MathHelper.cs + startLine: 462 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: >- + Exponentially interpolates between start and end by t. + + Equivalent to start * pow(end/start, t). + + Useful for scaling and zooms where constant change in t should result in a multiplicative change in output. + example: [] + syntax: + content: public static float Elerp(float start, float end, float t) + parameters: + - id: start + type: System.Single + description: Start value. Must be non-negative. + - id: end + type: System.Single + description: End value. Must be non-negative. + - id: t + type: System.Single + description: Value of the interpolation between start and end. Not clamped. + return: + type: System.Single + description: The interpolated result between the start and end values. + content.vb: Public Shared Function Elerp(start As Single, [end] As Single, t As Single) As Single + overload: OpenTK.Mathematics.MathHelper.Elerp* + nameWithType.vb: MathHelper.Elerp(Single, Single, Single) + fullName.vb: OpenTK.Mathematics.MathHelper.Elerp(Single, Single, Single) + name.vb: Elerp(Single, Single, Single) +- uid: OpenTK.Mathematics.MathHelper.Elerp(System.Double,System.Double,System.Double) + commentId: M:OpenTK.Mathematics.MathHelper.Elerp(System.Double,System.Double,System.Double) + id: Elerp(System.Double,System.Double,System.Double) + parent: OpenTK.Mathematics.MathHelper + langs: + - csharp + - vb + name: Elerp(double, double, double) + nameWithType: MathHelper.Elerp(double, double, double) + fullName: OpenTK.Mathematics.MathHelper.Elerp(double, double, double) + type: Method + source: + id: Elerp + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\MathHelper.cs + startLine: 476 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: >- + Exponentially interpolates between start and end by t. + + Equivalent to start * pow(end/start, t). + + Useful for scaling and zooms where constant change in t should result in a multiplicative change in output. + example: [] + syntax: + content: public static double Elerp(double start, double end, double t) + parameters: + - id: start + type: System.Double + description: Start value. Must be non-negative. + - id: end + type: System.Double + description: End value. Must be non-negative. + - id: t + type: System.Double + description: Value of the interpolation between start and end. Not clamped. + return: + type: System.Double + description: The interpolated result between the start and end values. + content.vb: Public Shared Function Elerp(start As Double, [end] As Double, t As Double) As Double + overload: OpenTK.Mathematics.MathHelper.Elerp* + nameWithType.vb: MathHelper.Elerp(Double, Double, Double) + fullName.vb: OpenTK.Mathematics.MathHelper.Elerp(Double, Double, Double) + name.vb: Elerp(Double, Double, Double) - uid: OpenTK.Mathematics.MathHelper.NormalizeAngle(System.Single) commentId: M:OpenTK.Mathematics.MathHelper.NormalizeAngle(System.Single) id: NormalizeAngle(System.Single) @@ -5386,13 +1460,9 @@ items: fullName: OpenTK.Mathematics.MathHelper.NormalizeAngle(float) type: Method source: - remote: - path: src/OpenTK.Mathematics/MathHelper.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: NormalizeAngle - path: opentk/src/OpenTK.Mathematics/MathHelper.cs - startLine: 1171 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\MathHelper.cs + startLine: 486 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -5424,13 +1494,9 @@ items: fullName: OpenTK.Mathematics.MathHelper.NormalizeAngle(double) type: Method source: - remote: - path: src/OpenTK.Mathematics/MathHelper.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: NormalizeAngle - path: opentk/src/OpenTK.Mathematics/MathHelper.cs - startLine: 1190 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\MathHelper.cs + startLine: 505 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -5462,13 +1528,9 @@ items: fullName: OpenTK.Mathematics.MathHelper.NormalizeRadians(float) type: Method source: - remote: - path: src/OpenTK.Mathematics/MathHelper.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: NormalizeRadians - path: opentk/src/OpenTK.Mathematics/MathHelper.cs - startLine: 1209 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\MathHelper.cs + startLine: 524 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -5500,13 +1562,9 @@ items: fullName: OpenTK.Mathematics.MathHelper.NormalizeRadians(double) type: Method source: - remote: - path: src/OpenTK.Mathematics/MathHelper.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: NormalizeRadians - path: opentk/src/OpenTK.Mathematics/MathHelper.cs - startLine: 1228 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\MathHelper.cs + startLine: 543 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -5538,13 +1596,9 @@ items: fullName: OpenTK.Mathematics.MathHelper.ClampAngle(float) type: Method source: - remote: - path: src/OpenTK.Mathematics/MathHelper.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ClampAngle - path: opentk/src/OpenTK.Mathematics/MathHelper.cs - startLine: 1247 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\MathHelper.cs + startLine: 562 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -5576,13 +1630,9 @@ items: fullName: OpenTK.Mathematics.MathHelper.ClampAngle(double) type: Method source: - remote: - path: src/OpenTK.Mathematics/MathHelper.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ClampAngle - path: opentk/src/OpenTK.Mathematics/MathHelper.cs - startLine: 1266 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\MathHelper.cs + startLine: 581 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -5614,13 +1664,9 @@ items: fullName: OpenTK.Mathematics.MathHelper.ClampRadians(float) type: Method source: - remote: - path: src/OpenTK.Mathematics/MathHelper.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ClampRadians - path: opentk/src/OpenTK.Mathematics/MathHelper.cs - startLine: 1285 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\MathHelper.cs + startLine: 600 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -5652,13 +1698,9 @@ items: fullName: OpenTK.Mathematics.MathHelper.ClampRadians(double) type: Method source: - remote: - path: src/OpenTK.Mathematics/MathHelper.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ClampRadians - path: opentk/src/OpenTK.Mathematics/MathHelper.cs - startLine: 1304 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\MathHelper.cs + startLine: 619 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -5949,56 +1991,12 @@ references: nameWithType.vb: Single fullName.vb: Single name.vb: Single -- uid: OpenTK.Mathematics.MathHelper.Abs* - commentId: Overload:OpenTK.Mathematics.MathHelper.Abs - href: OpenTK.Mathematics.MathHelper.html#OpenTK_Mathematics_MathHelper_Abs_System_Decimal_ - name: Abs - nameWithType: MathHelper.Abs - fullName: OpenTK.Mathematics.MathHelper.Abs -- uid: System.Decimal - commentId: T:System.Decimal - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.decimal - name: decimal - nameWithType: decimal - fullName: decimal - nameWithType.vb: Decimal - fullName.vb: Decimal - name.vb: Decimal -- uid: System.Double - commentId: T:System.Double - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.double - name: double - nameWithType: double - fullName: double - nameWithType.vb: Double - fullName.vb: Double - name.vb: Double -- uid: System.Int16 - commentId: T:System.Int16 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int16 - name: short - nameWithType: short - fullName: short - nameWithType.vb: Short - fullName.vb: Short - name.vb: Short -- uid: System.Int32 - commentId: T:System.Int32 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - name: int - nameWithType: int - fullName: int - nameWithType.vb: Integer - fullName.vb: Integer - name.vb: Integer +- uid: OpenTK.Mathematics.MathHelper.NextPowerOfTwo* + commentId: Overload:OpenTK.Mathematics.MathHelper.NextPowerOfTwo + href: OpenTK.Mathematics.MathHelper.html#OpenTK_Mathematics_MathHelper_NextPowerOfTwo_System_Int64_ + name: NextPowerOfTwo + nameWithType: MathHelper.NextPowerOfTwo + fullName: OpenTK.Mathematics.MathHelper.NextPowerOfTwo - uid: System.Int64 commentId: T:System.Int64 parent: System @@ -6010,259 +2008,28 @@ references: nameWithType.vb: Long fullName.vb: Long name.vb: Long -- uid: System.SByte - commentId: T:System.SByte - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.sbyte - name: sbyte - nameWithType: sbyte - fullName: sbyte - nameWithType.vb: SByte - fullName.vb: SByte - name.vb: SByte -- uid: OpenTK.Mathematics.MathHelper.Sin* - commentId: Overload:OpenTK.Mathematics.MathHelper.Sin - href: OpenTK.Mathematics.MathHelper.html#OpenTK_Mathematics_MathHelper_Sin_System_Double_ - name: Sin - nameWithType: MathHelper.Sin - fullName: OpenTK.Mathematics.MathHelper.Sin -- uid: OpenTK.Mathematics.MathHelper.Sinh* - commentId: Overload:OpenTK.Mathematics.MathHelper.Sinh - href: OpenTK.Mathematics.MathHelper.html#OpenTK_Mathematics_MathHelper_Sinh_System_Double_ - name: Sinh - nameWithType: MathHelper.Sinh - fullName: OpenTK.Mathematics.MathHelper.Sinh -- uid: OpenTK.Mathematics.MathHelper.Asin* - commentId: Overload:OpenTK.Mathematics.MathHelper.Asin - href: OpenTK.Mathematics.MathHelper.html#OpenTK_Mathematics_MathHelper_Asin_System_Double_ - name: Asin - nameWithType: MathHelper.Asin - fullName: OpenTK.Mathematics.MathHelper.Asin -- uid: OpenTK.Mathematics.MathHelper.Cos* - commentId: Overload:OpenTK.Mathematics.MathHelper.Cos - href: OpenTK.Mathematics.MathHelper.html#OpenTK_Mathematics_MathHelper_Cos_System_Double_ - name: Cos - nameWithType: MathHelper.Cos - fullName: OpenTK.Mathematics.MathHelper.Cos -- uid: OpenTK.Mathematics.MathHelper.Cosh* - commentId: Overload:OpenTK.Mathematics.MathHelper.Cosh - href: OpenTK.Mathematics.MathHelper.html#OpenTK_Mathematics_MathHelper_Cosh_System_Double_ - name: Cosh - nameWithType: MathHelper.Cosh - fullName: OpenTK.Mathematics.MathHelper.Cosh -- uid: OpenTK.Mathematics.MathHelper.Acos* - commentId: Overload:OpenTK.Mathematics.MathHelper.Acos - href: OpenTK.Mathematics.MathHelper.html#OpenTK_Mathematics_MathHelper_Acos_System_Double_ - name: Acos - nameWithType: MathHelper.Acos - fullName: OpenTK.Mathematics.MathHelper.Acos -- uid: OpenTK.Mathematics.MathHelper.Tan* - commentId: Overload:OpenTK.Mathematics.MathHelper.Tan - href: OpenTK.Mathematics.MathHelper.html#OpenTK_Mathematics_MathHelper_Tan_System_Double_ - name: Tan - nameWithType: MathHelper.Tan - fullName: OpenTK.Mathematics.MathHelper.Tan -- uid: OpenTK.Mathematics.MathHelper.Tanh* - commentId: Overload:OpenTK.Mathematics.MathHelper.Tanh - href: OpenTK.Mathematics.MathHelper.html#OpenTK_Mathematics_MathHelper_Tanh_System_Double_ - name: Tanh - nameWithType: MathHelper.Tanh - fullName: OpenTK.Mathematics.MathHelper.Tanh -- uid: OpenTK.Mathematics.MathHelper.Atan* - commentId: Overload:OpenTK.Mathematics.MathHelper.Atan - href: OpenTK.Mathematics.MathHelper.html#OpenTK_Mathematics_MathHelper_Atan_System_Double_ - name: Atan - nameWithType: MathHelper.Atan - fullName: OpenTK.Mathematics.MathHelper.Atan -- uid: OpenTK.Mathematics.MathHelper.Atan2* - commentId: Overload:OpenTK.Mathematics.MathHelper.Atan2 - href: OpenTK.Mathematics.MathHelper.html#OpenTK_Mathematics_MathHelper_Atan2_System_Double_System_Double_ - name: Atan2 - nameWithType: MathHelper.Atan2 - fullName: OpenTK.Mathematics.MathHelper.Atan2 -- uid: OpenTK.Mathematics.MathHelper.BigMul* - commentId: Overload:OpenTK.Mathematics.MathHelper.BigMul - href: OpenTK.Mathematics.MathHelper.html#OpenTK_Mathematics_MathHelper_BigMul_System_Int32_System_Int32_ - name: BigMul - nameWithType: MathHelper.BigMul - fullName: OpenTK.Mathematics.MathHelper.BigMul -- uid: OpenTK.Mathematics.MathHelper.Sqrt* - commentId: Overload:OpenTK.Mathematics.MathHelper.Sqrt - href: OpenTK.Mathematics.MathHelper.html#OpenTK_Mathematics_MathHelper_Sqrt_System_Double_ - name: Sqrt - nameWithType: MathHelper.Sqrt - fullName: OpenTK.Mathematics.MathHelper.Sqrt -- uid: OpenTK.Mathematics.MathHelper.Pow* - commentId: Overload:OpenTK.Mathematics.MathHelper.Pow - href: OpenTK.Mathematics.MathHelper.html#OpenTK_Mathematics_MathHelper_Pow_System_Double_System_Double_ - name: Pow - nameWithType: MathHelper.Pow - fullName: OpenTK.Mathematics.MathHelper.Pow -- uid: OpenTK.Mathematics.MathHelper.Ceiling* - commentId: Overload:OpenTK.Mathematics.MathHelper.Ceiling - href: OpenTK.Mathematics.MathHelper.html#OpenTK_Mathematics_MathHelper_Ceiling_System_Decimal_ - name: Ceiling - nameWithType: MathHelper.Ceiling - fullName: OpenTK.Mathematics.MathHelper.Ceiling -- uid: OpenTK.Mathematics.MathHelper.Floor* - commentId: Overload:OpenTK.Mathematics.MathHelper.Floor - href: OpenTK.Mathematics.MathHelper.html#OpenTK_Mathematics_MathHelper_Floor_System_Decimal_ - name: Floor - nameWithType: MathHelper.Floor - fullName: OpenTK.Mathematics.MathHelper.Floor -- uid: System.DivideByZeroException - commentId: T:System.DivideByZeroException - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.dividebyzeroexception - name: DivideByZeroException - nameWithType: DivideByZeroException - fullName: System.DivideByZeroException -- uid: OpenTK.Mathematics.MathHelper.DivRem* - commentId: Overload:OpenTK.Mathematics.MathHelper.DivRem - href: OpenTK.Mathematics.MathHelper.html#OpenTK_Mathematics_MathHelper_DivRem_System_Int32_System_Int32_System_Int32__ - name: DivRem - nameWithType: MathHelper.DivRem - fullName: OpenTK.Mathematics.MathHelper.DivRem -- uid: OpenTK.Mathematics.MathHelper.Log* - commentId: Overload:OpenTK.Mathematics.MathHelper.Log - href: OpenTK.Mathematics.MathHelper.html#OpenTK_Mathematics_MathHelper_Log_System_Double_ - name: Log - nameWithType: MathHelper.Log - fullName: OpenTK.Mathematics.MathHelper.Log -- uid: OpenTK.Mathematics.MathHelper.Log10* - commentId: Overload:OpenTK.Mathematics.MathHelper.Log10 - href: OpenTK.Mathematics.MathHelper.html#OpenTK_Mathematics_MathHelper_Log10_System_Double_ - name: Log10 - nameWithType: MathHelper.Log10 - fullName: OpenTK.Mathematics.MathHelper.Log10 -- uid: OpenTK.Mathematics.MathHelper.Log2* - commentId: Overload:OpenTK.Mathematics.MathHelper.Log2 - href: OpenTK.Mathematics.MathHelper.html#OpenTK_Mathematics_MathHelper_Log2_System_Double_ - name: Log2 - nameWithType: MathHelper.Log2 - fullName: OpenTK.Mathematics.MathHelper.Log2 -- uid: OpenTK.Mathematics.MathHelper.Exp* - commentId: Overload:OpenTK.Mathematics.MathHelper.Exp - href: OpenTK.Mathematics.MathHelper.html#OpenTK_Mathematics_MathHelper_Exp_System_Double_ - name: Exp - nameWithType: MathHelper.Exp - fullName: OpenTK.Mathematics.MathHelper.Exp -- uid: OpenTK.Mathematics.MathHelper.IEEERemainder* - commentId: Overload:OpenTK.Mathematics.MathHelper.IEEERemainder - href: OpenTK.Mathematics.MathHelper.html#OpenTK_Mathematics_MathHelper_IEEERemainder_System_Double_System_Double_ - name: IEEERemainder - nameWithType: MathHelper.IEEERemainder - fullName: OpenTK.Mathematics.MathHelper.IEEERemainder -- uid: OpenTK.Mathematics.MathHelper.Max* - commentId: Overload:OpenTK.Mathematics.MathHelper.Max - href: OpenTK.Mathematics.MathHelper.html#OpenTK_Mathematics_MathHelper_Max_System_Byte_System_Byte_ - name: Max - nameWithType: MathHelper.Max - fullName: OpenTK.Mathematics.MathHelper.Max -- uid: System.Byte - commentId: T:System.Byte - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.byte - name: byte - nameWithType: byte - fullName: byte - nameWithType.vb: Byte - fullName.vb: Byte - name.vb: Byte -- uid: System.UInt16 - commentId: T:System.UInt16 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint16 - name: ushort - nameWithType: ushort - fullName: ushort - nameWithType.vb: UShort - fullName.vb: UShort - name.vb: UShort -- uid: System.UInt32 - commentId: T:System.UInt32 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - name: uint - nameWithType: uint - fullName: uint - nameWithType.vb: UInteger - fullName.vb: UInteger - name.vb: UInteger -- uid: System.UInt64 - commentId: T:System.UInt64 +- uid: System.Int32 + commentId: T:System.Int32 parent: System isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint64 - name: ulong - nameWithType: ulong - fullName: ulong - nameWithType.vb: ULong - fullName.vb: ULong - name.vb: ULong -- uid: OpenTK.Mathematics.MathHelper.Min* - commentId: Overload:OpenTK.Mathematics.MathHelper.Min - href: OpenTK.Mathematics.MathHelper.html#OpenTK_Mathematics_MathHelper_Min_System_Byte_System_Byte_ - name: Min - nameWithType: MathHelper.Min - fullName: OpenTK.Mathematics.MathHelper.Min -- uid: System.ArgumentOutOfRangeException - commentId: T:System.ArgumentOutOfRangeException - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.argumentoutofrangeexception - name: ArgumentOutOfRangeException - nameWithType: ArgumentOutOfRangeException - fullName: System.ArgumentOutOfRangeException -- uid: System.ArgumentException - commentId: T:System.ArgumentException - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.argumentexception - name: ArgumentException - nameWithType: ArgumentException - fullName: System.ArgumentException -- uid: System.OverflowException - commentId: T:System.OverflowException - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.overflowexception - name: OverflowException - nameWithType: OverflowException - fullName: System.OverflowException -- uid: OpenTK.Mathematics.MathHelper.Round* - commentId: Overload:OpenTK.Mathematics.MathHelper.Round - href: OpenTK.Mathematics.MathHelper.html#OpenTK_Mathematics_MathHelper_Round_System_Decimal_System_Int32_System_MidpointRounding_ - name: Round - nameWithType: MathHelper.Round - fullName: OpenTK.Mathematics.MathHelper.Round -- uid: System.MidpointRounding - commentId: T:System.MidpointRounding + href: https://learn.microsoft.com/dotnet/api/system.int32 + name: int + nameWithType: int + fullName: int + nameWithType.vb: Integer + fullName.vb: Integer + name.vb: Integer +- uid: System.Double + commentId: T:System.Double parent: System isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.midpointrounding - name: MidpointRounding - nameWithType: MidpointRounding - fullName: System.MidpointRounding -- uid: OpenTK.Mathematics.MathHelper.Truncate* - commentId: Overload:OpenTK.Mathematics.MathHelper.Truncate - href: OpenTK.Mathematics.MathHelper.html#OpenTK_Mathematics_MathHelper_Truncate_System_Decimal_ - name: Truncate - nameWithType: MathHelper.Truncate - fullName: OpenTK.Mathematics.MathHelper.Truncate -- uid: OpenTK.Mathematics.MathHelper.Sign* - commentId: Overload:OpenTK.Mathematics.MathHelper.Sign - href: OpenTK.Mathematics.MathHelper.html#OpenTK_Mathematics_MathHelper_Sign_System_SByte_ - name: Sign - nameWithType: MathHelper.Sign - fullName: OpenTK.Mathematics.MathHelper.Sign -- uid: OpenTK.Mathematics.MathHelper.NextPowerOfTwo* - commentId: Overload:OpenTK.Mathematics.MathHelper.NextPowerOfTwo - href: OpenTK.Mathematics.MathHelper.html#OpenTK_Mathematics_MathHelper_NextPowerOfTwo_System_Int64_ - name: NextPowerOfTwo - nameWithType: MathHelper.NextPowerOfTwo - fullName: OpenTK.Mathematics.MathHelper.NextPowerOfTwo + href: https://learn.microsoft.com/dotnet/api/system.double + name: double + nameWithType: double + fullName: double + nameWithType.vb: Double + fullName.vb: Double + name.vb: Double - uid: OpenTK.Mathematics.MathHelper.Factorial* commentId: Overload:OpenTK.Mathematics.MathHelper.Factorial href: OpenTK.Mathematics.MathHelper.html#OpenTK_Mathematics_MathHelper_Factorial_System_Int32_ @@ -6275,12 +2042,6 @@ references: name: BinomialCoefficient nameWithType: MathHelper.BinomialCoefficient fullName: OpenTK.Mathematics.MathHelper.BinomialCoefficient -- uid: OpenTK.Mathematics.MathHelper.InverseSqrtFast* - commentId: Overload:OpenTK.Mathematics.MathHelper.InverseSqrtFast - href: OpenTK.Mathematics.MathHelper.html#OpenTK_Mathematics_MathHelper_InverseSqrtFast_System_Single_ - name: InverseSqrtFast - nameWithType: MathHelper.InverseSqrtFast - fullName: OpenTK.Mathematics.MathHelper.InverseSqrtFast - uid: OpenTK.Mathematics.MathHelper.DegreesToRadians* commentId: Overload:OpenTK.Mathematics.MathHelper.DegreesToRadians href: OpenTK.Mathematics.MathHelper.html#OpenTK_Mathematics_MathHelper_DegreesToRadians_System_Single_ @@ -6309,12 +2070,6 @@ references: name: T nameWithType: T fullName: T -- uid: OpenTK.Mathematics.MathHelper.Clamp* - commentId: Overload:OpenTK.Mathematics.MathHelper.Clamp - href: OpenTK.Mathematics.MathHelper.html#OpenTK_Mathematics_MathHelper_Clamp_System_Int32_System_Int32_System_Int32_ - name: Clamp - nameWithType: MathHelper.Clamp - fullName: OpenTK.Mathematics.MathHelper.Clamp - uid: OpenTK.Mathematics.MathHelper.MapRange* commentId: Overload:OpenTK.Mathematics.MathHelper.MapRange href: OpenTK.Mathematics.MathHelper.html#OpenTK_Mathematics_MathHelper_MapRange_System_Int32_System_Int32_System_Int32_System_Int32_System_Int32_ @@ -6356,6 +2111,12 @@ references: name: Lerp nameWithType: MathHelper.Lerp fullName: OpenTK.Mathematics.MathHelper.Lerp +- uid: OpenTK.Mathematics.MathHelper.Elerp* + commentId: Overload:OpenTK.Mathematics.MathHelper.Elerp + href: OpenTK.Mathematics.MathHelper.html#OpenTK_Mathematics_MathHelper_Elerp_System_Single_System_Single_System_Single_ + name: Elerp + nameWithType: MathHelper.Elerp + fullName: OpenTK.Mathematics.MathHelper.Elerp - uid: OpenTK.Mathematics.MathHelper.NormalizeAngle* commentId: Overload:OpenTK.Mathematics.MathHelper.NormalizeAngle href: OpenTK.Mathematics.MathHelper.html#OpenTK_Mathematics_MathHelper_NormalizeAngle_System_Single_ diff --git a/api/OpenTK.Mathematics.Matrix2.yml b/api/OpenTK.Mathematics.Matrix2.yml index 828f10bf..96a40a1a 100644 --- a/api/OpenTK.Mathematics.Matrix2.yml +++ b/api/OpenTK.Mathematics.Matrix2.yml @@ -19,6 +19,8 @@ items: - OpenTK.Mathematics.Matrix2.CreateScale(System.Single,OpenTK.Mathematics.Matrix2@) - OpenTK.Mathematics.Matrix2.CreateScale(System.Single,System.Single) - OpenTK.Mathematics.Matrix2.CreateScale(System.Single,System.Single,OpenTK.Mathematics.Matrix2@) + - OpenTK.Mathematics.Matrix2.CreateSwizzle(System.Int32,System.Int32) + - OpenTK.Mathematics.Matrix2.CreateSwizzle(System.Int32,System.Int32,OpenTK.Mathematics.Matrix2@) - OpenTK.Mathematics.Matrix2.Determinant - OpenTK.Mathematics.Matrix2.Diagonal - OpenTK.Mathematics.Matrix2.Equals(OpenTK.Mathematics.Matrix2) @@ -28,6 +30,7 @@ items: - OpenTK.Mathematics.Matrix2.Invert - OpenTK.Mathematics.Matrix2.Invert(OpenTK.Mathematics.Matrix2) - OpenTK.Mathematics.Matrix2.Invert(OpenTK.Mathematics.Matrix2@,OpenTK.Mathematics.Matrix2@) + - OpenTK.Mathematics.Matrix2.Inverted - OpenTK.Mathematics.Matrix2.Item(System.Int32,System.Int32) - OpenTK.Mathematics.Matrix2.M11 - OpenTK.Mathematics.Matrix2.M12 @@ -45,6 +48,10 @@ items: - OpenTK.Mathematics.Matrix2.Row1 - OpenTK.Mathematics.Matrix2.Subtract(OpenTK.Mathematics.Matrix2,OpenTK.Mathematics.Matrix2) - OpenTK.Mathematics.Matrix2.Subtract(OpenTK.Mathematics.Matrix2@,OpenTK.Mathematics.Matrix2@,OpenTK.Mathematics.Matrix2@) + - OpenTK.Mathematics.Matrix2.Swizzle(OpenTK.Mathematics.Matrix2,System.Int32,System.Int32) + - OpenTK.Mathematics.Matrix2.Swizzle(OpenTK.Mathematics.Matrix2@,System.Int32,System.Int32,OpenTK.Mathematics.Matrix2@) + - OpenTK.Mathematics.Matrix2.Swizzle(System.Int32,System.Int32) + - OpenTK.Mathematics.Matrix2.Swizzled(System.Int32,System.Int32) - OpenTK.Mathematics.Matrix2.ToString - OpenTK.Mathematics.Matrix2.ToString(System.IFormatProvider) - OpenTK.Mathematics.Matrix2.ToString(System.String) @@ -53,6 +60,7 @@ items: - OpenTK.Mathematics.Matrix2.Transpose - OpenTK.Mathematics.Matrix2.Transpose(OpenTK.Mathematics.Matrix2) - OpenTK.Mathematics.Matrix2.Transpose(OpenTK.Mathematics.Matrix2@,OpenTK.Mathematics.Matrix2@) + - OpenTK.Mathematics.Matrix2.Transposed - OpenTK.Mathematics.Matrix2.Zero - OpenTK.Mathematics.Matrix2.op_Addition(OpenTK.Mathematics.Matrix2,OpenTK.Mathematics.Matrix2) - OpenTK.Mathematics.Matrix2.op_Equality(OpenTK.Mathematics.Matrix2,OpenTK.Mathematics.Matrix2) @@ -71,13 +79,9 @@ items: fullName: OpenTK.Mathematics.Matrix2 type: Struct source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Matrix2 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2.cs - startLine: 32 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2.cs + startLine: 33 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -115,13 +119,9 @@ items: fullName: OpenTK.Mathematics.Matrix2.Row0 type: Field source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Row0 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2.cs - startLine: 39 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2.cs + startLine: 40 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -144,13 +144,9 @@ items: fullName: OpenTK.Mathematics.Matrix2.Row1 type: Field source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Row1 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2.cs - startLine: 44 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2.cs + startLine: 45 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -173,13 +169,9 @@ items: fullName: OpenTK.Mathematics.Matrix2.Identity type: Field source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Identity - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2.cs - startLine: 49 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2.cs + startLine: 50 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -202,13 +194,9 @@ items: fullName: OpenTK.Mathematics.Matrix2.Zero type: Field source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Zero - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2.cs - startLine: 54 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2.cs + startLine: 55 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -231,13 +219,9 @@ items: fullName: OpenTK.Mathematics.Matrix2.Matrix2(OpenTK.Mathematics.Vector2, OpenTK.Mathematics.Vector2) type: Constructor source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2.cs - startLine: 61 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2.cs + startLine: 62 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -269,13 +253,9 @@ items: fullName: OpenTK.Mathematics.Matrix2.Matrix2(float, float, float, float) type: Constructor source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2.cs - startLine: 74 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2.cs + startLine: 75 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -313,20 +293,16 @@ items: fullName: OpenTK.Mathematics.Matrix2.Determinant type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Determinant - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2.cs - startLine: 88 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2.cs + startLine: 89 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets the determinant of this matrix. example: [] syntax: - content: public float Determinant { get; } + content: public readonly float Determinant { get; } parameters: [] return: type: System.Single @@ -344,20 +320,16 @@ items: fullName: OpenTK.Mathematics.Matrix2.Column0 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Column0 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2.cs - startLine: 104 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2.cs + startLine: 105 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the first column of this matrix. example: [] syntax: - content: public Vector2 Column0 { get; set; } + content: public Vector2 Column0 { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector2 @@ -375,20 +347,16 @@ items: fullName: OpenTK.Mathematics.Matrix2.Column1 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Column1 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2.cs - startLine: 117 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2.cs + startLine: 118 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the second column of this matrix. example: [] syntax: - content: public Vector2 Column1 { get; set; } + content: public Vector2 Column1 { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector2 @@ -406,20 +374,16 @@ items: fullName: OpenTK.Mathematics.Matrix2.M11 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M11 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2.cs - startLine: 130 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2.cs + startLine: 131 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 1, column 1 of this instance. example: [] syntax: - content: public float M11 { get; set; } + content: public float M11 { readonly get; set; } parameters: [] return: type: System.Single @@ -437,20 +401,16 @@ items: fullName: OpenTK.Mathematics.Matrix2.M12 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M12 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2.cs - startLine: 139 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2.cs + startLine: 140 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 1, column 2 of this instance. example: [] syntax: - content: public float M12 { get; set; } + content: public float M12 { readonly get; set; } parameters: [] return: type: System.Single @@ -468,20 +428,16 @@ items: fullName: OpenTK.Mathematics.Matrix2.M21 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M21 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2.cs - startLine: 148 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2.cs + startLine: 149 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 2, column 1 of this instance. example: [] syntax: - content: public float M21 { get; set; } + content: public float M21 { readonly get; set; } parameters: [] return: type: System.Single @@ -499,20 +455,16 @@ items: fullName: OpenTK.Mathematics.Matrix2.M22 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M22 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2.cs - startLine: 157 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2.cs + startLine: 158 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 2, column 2 of this instance. example: [] syntax: - content: public float M22 { get; set; } + content: public float M22 { readonly get; set; } parameters: [] return: type: System.Single @@ -530,20 +482,16 @@ items: fullName: OpenTK.Mathematics.Matrix2.Diagonal type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Diagonal - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2.cs - startLine: 166 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2.cs + startLine: 167 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the values along the main diagonal of the matrix. example: [] syntax: - content: public Vector2 Diagonal { get; set; } + content: public Vector2 Diagonal { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector2 @@ -561,20 +509,16 @@ items: fullName: OpenTK.Mathematics.Matrix2.Trace type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Trace - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2.cs - startLine: 179 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2.cs + startLine: 180 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets the trace of the matrix, the sum of the values along the diagonal. example: [] syntax: - content: public float Trace { get; } + content: public readonly float Trace { get; } parameters: [] return: type: System.Single @@ -592,20 +536,16 @@ items: fullName: OpenTK.Mathematics.Matrix2.this[int, int] type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: this[] - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2.cs - startLine: 187 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2.cs + startLine: 188 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at a specified row and column. example: [] syntax: - content: public float this[int rowIndex, int columnIndex] { get; set; } + content: public float this[int rowIndex, int columnIndex] { readonly get; set; } parameters: - id: rowIndex type: System.Int32 @@ -621,6 +561,57 @@ items: nameWithType.vb: Matrix2.this[](Integer, Integer) fullName.vb: OpenTK.Mathematics.Matrix2.this[](Integer, Integer) name.vb: this[](Integer, Integer) +- uid: OpenTK.Mathematics.Matrix2.Invert + commentId: M:OpenTK.Mathematics.Matrix2.Invert + id: Invert + parent: OpenTK.Mathematics.Matrix2 + langs: + - csharp + - vb + name: Invert() + nameWithType: Matrix2.Invert() + fullName: OpenTK.Mathematics.Matrix2.Invert() + type: Method + source: + id: Invert + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2.cs + startLine: 227 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: Converts this instance into its inverse. + example: [] + syntax: + content: public void Invert() + content.vb: Public Sub Invert() + overload: OpenTK.Mathematics.Matrix2.Invert* +- uid: OpenTK.Mathematics.Matrix2.Inverted + commentId: M:OpenTK.Mathematics.Matrix2.Inverted + id: Inverted + parent: OpenTK.Mathematics.Matrix2 + langs: + - csharp + - vb + name: Inverted() + nameWithType: Matrix2.Inverted() + fullName: OpenTK.Mathematics.Matrix2.Inverted() + type: Method + source: + id: Inverted + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2.cs + startLine: 236 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: Returns an inverted copy of this instance. + example: [] + syntax: + content: public readonly Matrix2 Inverted() + return: + type: OpenTK.Mathematics.Matrix2 + description: The inverted copy. + content.vb: Public Function Inverted() As Matrix2 + overload: OpenTK.Mathematics.Matrix2.Inverted* - uid: OpenTK.Mathematics.Matrix2.Transpose commentId: M:OpenTK.Mathematics.Matrix2.Transpose id: Transpose @@ -633,13 +624,9 @@ items: fullName: OpenTK.Mathematics.Matrix2.Transpose() type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Transpose - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2.cs - startLine: 226 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2.cs + startLine: 246 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -649,34 +636,104 @@ items: content: public void Transpose() content.vb: Public Sub Transpose() overload: OpenTK.Mathematics.Matrix2.Transpose* -- uid: OpenTK.Mathematics.Matrix2.Invert - commentId: M:OpenTK.Mathematics.Matrix2.Invert - id: Invert +- uid: OpenTK.Mathematics.Matrix2.Transposed + commentId: M:OpenTK.Mathematics.Matrix2.Transposed + id: Transposed parent: OpenTK.Mathematics.Matrix2 langs: - csharp - vb - name: Invert() - nameWithType: Matrix2.Invert() - fullName: OpenTK.Mathematics.Matrix2.Invert() + name: Transposed() + nameWithType: Matrix2.Transposed() + fullName: OpenTK.Mathematics.Matrix2.Transposed() type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Invert - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2.cs - startLine: 234 + id: Transposed + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2.cs + startLine: 255 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics - summary: Converts this instance into its inverse. + summary: Returns a transposed copy of this instance. example: [] syntax: - content: public void Invert() - content.vb: Public Sub Invert() - overload: OpenTK.Mathematics.Matrix2.Invert* + content: public readonly Matrix2 Transposed() + return: + type: OpenTK.Mathematics.Matrix2 + description: The transposed copy. + content.vb: Public Function Transposed() As Matrix2 + overload: OpenTK.Mathematics.Matrix2.Transposed* +- uid: OpenTK.Mathematics.Matrix2.Swizzle(System.Int32,System.Int32) + commentId: M:OpenTK.Mathematics.Matrix2.Swizzle(System.Int32,System.Int32) + id: Swizzle(System.Int32,System.Int32) + parent: OpenTK.Mathematics.Matrix2 + langs: + - csharp + - vb + name: Swizzle(int, int) + nameWithType: Matrix2.Swizzle(int, int) + fullName: OpenTK.Mathematics.Matrix2.Swizzle(int, int) + type: Method + source: + id: Swizzle + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2.cs + startLine: 267 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: Swizzles this instance. Swiches places of the rows of the matrix. + example: [] + syntax: + content: public void Swizzle(int rowForRow0, int rowForRow1) + parameters: + - id: rowForRow0 + type: System.Int32 + description: Which row to place in . + - id: rowForRow1 + type: System.Int32 + description: Which row to place in . + content.vb: Public Sub Swizzle(rowForRow0 As Integer, rowForRow1 As Integer) + overload: OpenTK.Mathematics.Matrix2.Swizzle* + nameWithType.vb: Matrix2.Swizzle(Integer, Integer) + fullName.vb: OpenTK.Mathematics.Matrix2.Swizzle(Integer, Integer) + name.vb: Swizzle(Integer, Integer) +- uid: OpenTK.Mathematics.Matrix2.Swizzled(System.Int32,System.Int32) + commentId: M:OpenTK.Mathematics.Matrix2.Swizzled(System.Int32,System.Int32) + id: Swizzled(System.Int32,System.Int32) + parent: OpenTK.Mathematics.Matrix2 + langs: + - csharp + - vb + name: Swizzled(int, int) + nameWithType: Matrix2.Swizzled(int, int) + fullName: OpenTK.Mathematics.Matrix2.Swizzled(int, int) + type: Method + source: + id: Swizzled + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2.cs + startLine: 278 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: Returns a swizzled copy of this instance. + example: [] + syntax: + content: public readonly Matrix2 Swizzled(int rowForRow0, int rowForRow1) + parameters: + - id: rowForRow0 + type: System.Int32 + description: Which row to place in . + - id: rowForRow1 + type: System.Int32 + description: Which row to place in . + return: + type: OpenTK.Mathematics.Matrix2 + description: The swizzled copy. + content.vb: Public Function Swizzled(rowForRow0 As Integer, rowForRow1 As Integer) As Matrix2 + overload: OpenTK.Mathematics.Matrix2.Swizzled* + nameWithType.vb: Matrix2.Swizzled(Integer, Integer) + fullName.vb: OpenTK.Mathematics.Matrix2.Swizzled(Integer, Integer) + name.vb: Swizzled(Integer, Integer) - uid: OpenTK.Mathematics.Matrix2.CreateRotation(System.Single,OpenTK.Mathematics.Matrix2@) commentId: M:OpenTK.Mathematics.Matrix2.CreateRotation(System.Single,OpenTK.Mathematics.Matrix2@) id: CreateRotation(System.Single,OpenTK.Mathematics.Matrix2@) @@ -689,13 +746,9 @@ items: fullName: OpenTK.Mathematics.Matrix2.CreateRotation(float, out OpenTK.Mathematics.Matrix2) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateRotation - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2.cs - startLine: 244 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2.cs + startLine: 290 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -727,13 +780,9 @@ items: fullName: OpenTK.Mathematics.Matrix2.CreateRotation(float) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateRotation - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2.cs - startLine: 260 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2.cs + startLine: 306 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -775,13 +824,9 @@ items: fullName: OpenTK.Mathematics.Matrix2.CreateScale(float, out OpenTK.Mathematics.Matrix2) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateScale - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2.cs - startLine: 272 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2.cs + startLine: 318 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -813,13 +858,9 @@ items: fullName: OpenTK.Mathematics.Matrix2.CreateScale(float) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateScale - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2.cs - startLine: 285 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2.cs + startLine: 331 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -861,13 +902,9 @@ items: fullName: OpenTK.Mathematics.Matrix2.CreateScale(OpenTK.Mathematics.Vector2, out OpenTK.Mathematics.Matrix2) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateScale - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2.cs - startLine: 297 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2.cs + startLine: 343 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -899,13 +936,9 @@ items: fullName: OpenTK.Mathematics.Matrix2.CreateScale(OpenTK.Mathematics.Vector2) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateScale - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2.cs - startLine: 310 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2.cs + startLine: 356 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -944,13 +977,9 @@ items: fullName: OpenTK.Mathematics.Matrix2.CreateScale(float, float, out OpenTK.Mathematics.Matrix2) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateScale - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2.cs - startLine: 323 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2.cs + startLine: 369 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -985,13 +1014,9 @@ items: fullName: OpenTK.Mathematics.Matrix2.CreateScale(float, float) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateScale - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2.cs - startLine: 337 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2.cs + startLine: 383 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1024,6 +1049,82 @@ items: nameWithType.vb: Matrix2.CreateScale(Single, Single) fullName.vb: OpenTK.Mathematics.Matrix2.CreateScale(Single, Single) name.vb: CreateScale(Single, Single) +- uid: OpenTK.Mathematics.Matrix2.CreateSwizzle(System.Int32,System.Int32) + commentId: M:OpenTK.Mathematics.Matrix2.CreateSwizzle(System.Int32,System.Int32) + id: CreateSwizzle(System.Int32,System.Int32) + parent: OpenTK.Mathematics.Matrix2 + langs: + - csharp + - vb + name: CreateSwizzle(int, int) + nameWithType: Matrix2.CreateSwizzle(int, int) + fullName: OpenTK.Mathematics.Matrix2.CreateSwizzle(int, int) + type: Method + source: + id: CreateSwizzle + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2.cs + startLine: 399 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: Create a swizzle matrix that can be used to change the row order of matrices. + remarks: If you are looking to swizzle vectors there are properties like that can do this more effectively. + example: [] + syntax: + content: public static Matrix2 CreateSwizzle(int rowForRow0, int rowForRow1) + parameters: + - id: rowForRow0 + type: System.Int32 + description: Which row to place in . + - id: rowForRow1 + type: System.Int32 + description: Which row to place in . + return: + type: OpenTK.Mathematics.Matrix2 + description: The resulting swizzle matrix. + content.vb: Public Shared Function CreateSwizzle(rowForRow0 As Integer, rowForRow1 As Integer) As Matrix2 + overload: OpenTK.Mathematics.Matrix2.CreateSwizzle* + nameWithType.vb: Matrix2.CreateSwizzle(Integer, Integer) + fullName.vb: OpenTK.Mathematics.Matrix2.CreateSwizzle(Integer, Integer) + name.vb: CreateSwizzle(Integer, Integer) +- uid: OpenTK.Mathematics.Matrix2.CreateSwizzle(System.Int32,System.Int32,OpenTK.Mathematics.Matrix2@) + commentId: M:OpenTK.Mathematics.Matrix2.CreateSwizzle(System.Int32,System.Int32,OpenTK.Mathematics.Matrix2@) + id: CreateSwizzle(System.Int32,System.Int32,OpenTK.Mathematics.Matrix2@) + parent: OpenTK.Mathematics.Matrix2 + langs: + - csharp + - vb + name: CreateSwizzle(int, int, out Matrix2) + nameWithType: Matrix2.CreateSwizzle(int, int, out Matrix2) + fullName: OpenTK.Mathematics.Matrix2.CreateSwizzle(int, int, out OpenTK.Mathematics.Matrix2) + type: Method + source: + id: CreateSwizzle + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2.cs + startLine: 414 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: Create a swizzle matrix that can be used to change the row order of matrices. + remarks: If you are looking to swizzle vectors there are properties like that can do this more effectively. + example: [] + syntax: + content: public static void CreateSwizzle(int rowForRow0, int rowForRow1, out Matrix2 result) + parameters: + - id: rowForRow0 + type: System.Int32 + description: Which row to place in . + - id: rowForRow1 + type: System.Int32 + description: Which row to place in . + - id: result + type: OpenTK.Mathematics.Matrix2 + description: The resulting swizzle matrix. + content.vb: Public Shared Sub CreateSwizzle(rowForRow0 As Integer, rowForRow1 As Integer, result As Matrix2) + overload: OpenTK.Mathematics.Matrix2.CreateSwizzle* + nameWithType.vb: Matrix2.CreateSwizzle(Integer, Integer, Matrix2) + fullName.vb: OpenTK.Mathematics.Matrix2.CreateSwizzle(Integer, Integer, OpenTK.Mathematics.Matrix2) + name.vb: CreateSwizzle(Integer, Integer, Matrix2) - uid: OpenTK.Mathematics.Matrix2.Mult(OpenTK.Mathematics.Matrix2@,System.Single,OpenTK.Mathematics.Matrix2@) commentId: M:OpenTK.Mathematics.Matrix2.Mult(OpenTK.Mathematics.Matrix2@,System.Single,OpenTK.Mathematics.Matrix2@) id: Mult(OpenTK.Mathematics.Matrix2@,System.Single,OpenTK.Mathematics.Matrix2@) @@ -1036,13 +1137,9 @@ items: fullName: OpenTK.Mathematics.Matrix2.Mult(in OpenTK.Mathematics.Matrix2, float, out OpenTK.Mathematics.Matrix2) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Mult - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2.cs - startLine: 350 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2.cs + startLine: 436 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1077,13 +1174,9 @@ items: fullName: OpenTK.Mathematics.Matrix2.Mult(OpenTK.Mathematics.Matrix2, float) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Mult - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2.cs - startLine: 364 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2.cs + startLine: 450 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1128,13 +1221,9 @@ items: fullName: OpenTK.Mathematics.Matrix2.Mult(in OpenTK.Mathematics.Matrix2, in OpenTK.Mathematics.Matrix2, out OpenTK.Mathematics.Matrix2) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Mult - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2.cs - startLine: 377 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2.cs + startLine: 463 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1169,13 +1258,9 @@ items: fullName: OpenTK.Mathematics.Matrix2.Mult(OpenTK.Mathematics.Matrix2, OpenTK.Mathematics.Matrix2) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Mult - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2.cs - startLine: 400 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2.cs + startLine: 486 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1217,13 +1302,9 @@ items: fullName: OpenTK.Mathematics.Matrix2.Mult(in OpenTK.Mathematics.Matrix2, in OpenTK.Mathematics.Matrix2x3, out OpenTK.Mathematics.Matrix2x3) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Mult - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2.cs - startLine: 413 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2.cs + startLine: 499 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1258,13 +1339,9 @@ items: fullName: OpenTK.Mathematics.Matrix2.Mult(OpenTK.Mathematics.Matrix2, OpenTK.Mathematics.Matrix2x3) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Mult - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2.cs - startLine: 440 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2.cs + startLine: 526 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1306,13 +1383,9 @@ items: fullName: OpenTK.Mathematics.Matrix2.Mult(in OpenTK.Mathematics.Matrix2, in OpenTK.Mathematics.Matrix2x4, out OpenTK.Mathematics.Matrix2x4) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Mult - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2.cs - startLine: 453 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2.cs + startLine: 539 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1347,13 +1420,9 @@ items: fullName: OpenTK.Mathematics.Matrix2.Mult(OpenTK.Mathematics.Matrix2, OpenTK.Mathematics.Matrix2x4) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Mult - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2.cs - startLine: 484 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2.cs + startLine: 570 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1395,13 +1464,9 @@ items: fullName: OpenTK.Mathematics.Matrix2.Add(in OpenTK.Mathematics.Matrix2, in OpenTK.Mathematics.Matrix2, out OpenTK.Mathematics.Matrix2) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Add - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2.cs - startLine: 497 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2.cs + startLine: 583 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1436,13 +1501,9 @@ items: fullName: OpenTK.Mathematics.Matrix2.Add(OpenTK.Mathematics.Matrix2, OpenTK.Mathematics.Matrix2) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Add - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2.cs - startLine: 511 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2.cs + startLine: 597 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1484,13 +1545,9 @@ items: fullName: OpenTK.Mathematics.Matrix2.Subtract(in OpenTK.Mathematics.Matrix2, in OpenTK.Mathematics.Matrix2, out OpenTK.Mathematics.Matrix2) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Subtract - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2.cs - startLine: 524 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2.cs + startLine: 610 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1525,13 +1582,9 @@ items: fullName: OpenTK.Mathematics.Matrix2.Subtract(OpenTK.Mathematics.Matrix2, OpenTK.Mathematics.Matrix2) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Subtract - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2.cs - startLine: 538 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2.cs + startLine: 624 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1573,13 +1626,9 @@ items: fullName: OpenTK.Mathematics.Matrix2.Invert(in OpenTK.Mathematics.Matrix2, out OpenTK.Mathematics.Matrix2) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Invert - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2.cs - startLine: 551 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2.cs + startLine: 637 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1615,13 +1664,9 @@ items: fullName: OpenTK.Mathematics.Matrix2.Invert(OpenTK.Mathematics.Matrix2) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Invert - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2.cs - startLine: 580 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2.cs + startLine: 666 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1664,13 +1709,9 @@ items: fullName: OpenTK.Mathematics.Matrix2.Transpose(in OpenTK.Mathematics.Matrix2, out OpenTK.Mathematics.Matrix2) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Transpose - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2.cs - startLine: 592 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2.cs + startLine: 678 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1702,13 +1743,9 @@ items: fullName: OpenTK.Mathematics.Matrix2.Transpose(OpenTK.Mathematics.Matrix2) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Transpose - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2.cs - startLine: 605 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2.cs + startLine: 691 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1735,6 +1772,94 @@ items: - type: System.Diagnostics.Contracts.PureAttribute ctor: System.Diagnostics.Contracts.PureAttribute.#ctor arguments: [] +- uid: OpenTK.Mathematics.Matrix2.Swizzle(OpenTK.Mathematics.Matrix2,System.Int32,System.Int32) + commentId: M:OpenTK.Mathematics.Matrix2.Swizzle(OpenTK.Mathematics.Matrix2,System.Int32,System.Int32) + id: Swizzle(OpenTK.Mathematics.Matrix2,System.Int32,System.Int32) + parent: OpenTK.Mathematics.Matrix2 + langs: + - csharp + - vb + name: Swizzle(Matrix2, int, int) + nameWithType: Matrix2.Swizzle(Matrix2, int, int) + fullName: OpenTK.Mathematics.Matrix2.Swizzle(OpenTK.Mathematics.Matrix2, int, int) + type: Method + source: + id: Swizzle + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2.cs + startLine: 706 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: Swizzles a matrix, i.e. switches rows of the matrix. + example: [] + syntax: + content: public static Matrix2 Swizzle(Matrix2 mat, int rowForRow0, int rowForRow1) + parameters: + - id: mat + type: OpenTK.Mathematics.Matrix2 + description: The matrix to swizzle. + - id: rowForRow0 + type: System.Int32 + description: Which row to place in . + - id: rowForRow1 + type: System.Int32 + description: Which row to place in . + return: + type: OpenTK.Mathematics.Matrix2 + description: The swizzled matrix. + content.vb: Public Shared Function Swizzle(mat As Matrix2, rowForRow0 As Integer, rowForRow1 As Integer) As Matrix2 + overload: OpenTK.Mathematics.Matrix2.Swizzle* + exceptions: + - type: System.IndexOutOfRangeException + commentId: T:System.IndexOutOfRangeException + description: If any of the rows are outside of the range [0, 1]. + nameWithType.vb: Matrix2.Swizzle(Matrix2, Integer, Integer) + fullName.vb: OpenTK.Mathematics.Matrix2.Swizzle(OpenTK.Mathematics.Matrix2, Integer, Integer) + name.vb: Swizzle(Matrix2, Integer, Integer) +- uid: OpenTK.Mathematics.Matrix2.Swizzle(OpenTK.Mathematics.Matrix2@,System.Int32,System.Int32,OpenTK.Mathematics.Matrix2@) + commentId: M:OpenTK.Mathematics.Matrix2.Swizzle(OpenTK.Mathematics.Matrix2@,System.Int32,System.Int32,OpenTK.Mathematics.Matrix2@) + id: Swizzle(OpenTK.Mathematics.Matrix2@,System.Int32,System.Int32,OpenTK.Mathematics.Matrix2@) + parent: OpenTK.Mathematics.Matrix2 + langs: + - csharp + - vb + name: Swizzle(in Matrix2, int, int, out Matrix2) + nameWithType: Matrix2.Swizzle(in Matrix2, int, int, out Matrix2) + fullName: OpenTK.Mathematics.Matrix2.Swizzle(in OpenTK.Mathematics.Matrix2, int, int, out OpenTK.Mathematics.Matrix2) + type: Method + source: + id: Swizzle + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2.cs + startLine: 720 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: Swizzles a matrix, i.e. switches rows of the matrix. + example: [] + syntax: + content: public static void Swizzle(in Matrix2 mat, int rowForRow0, int rowForRow1, out Matrix2 result) + parameters: + - id: mat + type: OpenTK.Mathematics.Matrix2 + description: The matrix to swizzle. + - id: rowForRow0 + type: System.Int32 + description: Which row to place in . + - id: rowForRow1 + type: System.Int32 + description: Which row to place in . + - id: result + type: OpenTK.Mathematics.Matrix2 + description: The swizzled matrix. + content.vb: Public Shared Sub Swizzle(mat As Matrix2, rowForRow0 As Integer, rowForRow1 As Integer, result As Matrix2) + overload: OpenTK.Mathematics.Matrix2.Swizzle* + exceptions: + - type: System.IndexOutOfRangeException + commentId: T:System.IndexOutOfRangeException + description: If any of the rows are outside of the range [0, 1]. + nameWithType.vb: Matrix2.Swizzle(Matrix2, Integer, Integer, Matrix2) + fullName.vb: OpenTK.Mathematics.Matrix2.Swizzle(OpenTK.Mathematics.Matrix2, Integer, Integer, OpenTK.Mathematics.Matrix2) + name.vb: Swizzle(Matrix2, Integer, Integer, Matrix2) - uid: OpenTK.Mathematics.Matrix2.op_Multiply(System.Single,OpenTK.Mathematics.Matrix2) commentId: M:OpenTK.Mathematics.Matrix2.op_Multiply(System.Single,OpenTK.Mathematics.Matrix2) id: op_Multiply(System.Single,OpenTK.Mathematics.Matrix2) @@ -1747,13 +1872,9 @@ items: fullName: OpenTK.Mathematics.Matrix2.operator *(float, OpenTK.Mathematics.Matrix2) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Multiply - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2.cs - startLine: 618 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2.cs + startLine: 743 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1798,13 +1919,9 @@ items: fullName: OpenTK.Mathematics.Matrix2.operator *(OpenTK.Mathematics.Matrix2, float) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Multiply - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2.cs - startLine: 630 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2.cs + startLine: 755 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1849,13 +1966,9 @@ items: fullName: OpenTK.Mathematics.Matrix2.operator *(OpenTK.Mathematics.Matrix2, OpenTK.Mathematics.Matrix2) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Multiply - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2.cs - startLine: 642 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2.cs + startLine: 767 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1900,13 +2013,9 @@ items: fullName: OpenTK.Mathematics.Matrix2.operator *(OpenTK.Mathematics.Matrix2, OpenTK.Mathematics.Matrix2x3) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Multiply - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2.cs - startLine: 654 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2.cs + startLine: 779 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1951,13 +2060,9 @@ items: fullName: OpenTK.Mathematics.Matrix2.operator *(OpenTK.Mathematics.Matrix2, OpenTK.Mathematics.Matrix2x4) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Multiply - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2.cs - startLine: 666 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2.cs + startLine: 791 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2002,13 +2107,9 @@ items: fullName: OpenTK.Mathematics.Matrix2.operator +(OpenTK.Mathematics.Matrix2, OpenTK.Mathematics.Matrix2) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Addition - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2.cs - startLine: 678 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2.cs + startLine: 803 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2053,13 +2154,9 @@ items: fullName: OpenTK.Mathematics.Matrix2.operator -(OpenTK.Mathematics.Matrix2, OpenTK.Mathematics.Matrix2) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Subtraction - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2.cs - startLine: 690 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2.cs + startLine: 815 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2104,13 +2201,9 @@ items: fullName: OpenTK.Mathematics.Matrix2.operator ==(OpenTK.Mathematics.Matrix2, OpenTK.Mathematics.Matrix2) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Equality - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2.cs - startLine: 702 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2.cs + startLine: 827 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2155,13 +2248,9 @@ items: fullName: OpenTK.Mathematics.Matrix2.operator !=(OpenTK.Mathematics.Matrix2, OpenTK.Mathematics.Matrix2) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Inequality - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2.cs - startLine: 714 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2.cs + startLine: 839 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2206,20 +2295,16 @@ items: fullName: OpenTK.Mathematics.Matrix2.ToString() type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2.cs - startLine: 724 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2.cs + startLine: 849 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Returns a System.String that represents the current Matrix4. example: [] syntax: - content: public override string ToString() + content: public override readonly string ToString() return: type: System.String description: The string representation of the matrix. @@ -2238,20 +2323,16 @@ items: fullName: OpenTK.Mathematics.Matrix2.ToString(string) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2.cs - startLine: 730 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2.cs + startLine: 855 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Formats the value of the current instance using the specified format. example: [] syntax: - content: public string ToString(string format) + content: public readonly string ToString(string format) parameters: - id: format type: System.String @@ -2281,20 +2362,16 @@ items: fullName: OpenTK.Mathematics.Matrix2.ToString(System.IFormatProvider) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2.cs - startLine: 736 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2.cs + startLine: 861 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Formats the value of the current instance using the specified format. example: [] syntax: - content: public string ToString(IFormatProvider formatProvider) + content: public readonly string ToString(IFormatProvider formatProvider) parameters: - id: formatProvider type: System.IFormatProvider @@ -2321,20 +2398,16 @@ items: fullName: OpenTK.Mathematics.Matrix2.ToString(string, System.IFormatProvider) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2.cs - startLine: 742 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2.cs + startLine: 867 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Formats the value of the current instance using the specified format. example: [] syntax: - content: public string ToString(string format, IFormatProvider formatProvider) + content: public readonly string ToString(string format, IFormatProvider formatProvider) parameters: - id: format type: System.String @@ -2374,20 +2447,16 @@ items: fullName: OpenTK.Mathematics.Matrix2.GetHashCode() type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetHashCode - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2.cs - startLine: 753 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2.cs + startLine: 878 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Returns the hashcode for this instance. example: [] syntax: - content: public override int GetHashCode() + content: public override readonly int GetHashCode() return: type: System.Int32 description: A System.Int32 containing the unique hashcode for this instance. @@ -2406,13 +2475,9 @@ items: fullName: OpenTK.Mathematics.Matrix2.Equals(object) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Equals - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2.cs - startLine: 763 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2.cs + startLine: 888 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2422,7 +2487,7 @@ items: content: >- [Pure] - public override bool Equals(object obj) + public override readonly bool Equals(object obj) parameters: - id: obj type: System.Object @@ -2455,13 +2520,9 @@ items: fullName: OpenTK.Mathematics.Matrix2.Equals(OpenTK.Mathematics.Matrix2) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Equals - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2.cs - startLine: 774 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2.cs + startLine: 899 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2471,7 +2532,7 @@ items: content: >- [Pure] - public bool Equals(Matrix2 other) + public readonly bool Equals(Matrix2 other) parameters: - id: other type: OpenTK.Mathematics.Matrix2 @@ -2822,18 +2883,54 @@ references: nameWithType.vb: Integer fullName.vb: Integer name.vb: Integer -- uid: OpenTK.Mathematics.Matrix2.Transpose* - commentId: Overload:OpenTK.Mathematics.Matrix2.Transpose - href: OpenTK.Mathematics.Matrix2.html#OpenTK_Mathematics_Matrix2_Transpose - name: Transpose - nameWithType: Matrix2.Transpose - fullName: OpenTK.Mathematics.Matrix2.Transpose - uid: OpenTK.Mathematics.Matrix2.Invert* commentId: Overload:OpenTK.Mathematics.Matrix2.Invert href: OpenTK.Mathematics.Matrix2.html#OpenTK_Mathematics_Matrix2_Invert name: Invert nameWithType: Matrix2.Invert fullName: OpenTK.Mathematics.Matrix2.Invert +- uid: OpenTK.Mathematics.Matrix2.Inverted* + commentId: Overload:OpenTK.Mathematics.Matrix2.Inverted + href: OpenTK.Mathematics.Matrix2.html#OpenTK_Mathematics_Matrix2_Inverted + name: Inverted + nameWithType: Matrix2.Inverted + fullName: OpenTK.Mathematics.Matrix2.Inverted +- uid: OpenTK.Mathematics.Matrix2.Transpose* + commentId: Overload:OpenTK.Mathematics.Matrix2.Transpose + href: OpenTK.Mathematics.Matrix2.html#OpenTK_Mathematics_Matrix2_Transpose + name: Transpose + nameWithType: Matrix2.Transpose + fullName: OpenTK.Mathematics.Matrix2.Transpose +- uid: OpenTK.Mathematics.Matrix2.Transposed* + commentId: Overload:OpenTK.Mathematics.Matrix2.Transposed + href: OpenTK.Mathematics.Matrix2.html#OpenTK_Mathematics_Matrix2_Transposed + name: Transposed + nameWithType: Matrix2.Transposed + fullName: OpenTK.Mathematics.Matrix2.Transposed +- uid: OpenTK.Mathematics.Matrix2.Row0 + commentId: F:OpenTK.Mathematics.Matrix2.Row0 + href: OpenTK.Mathematics.Matrix2.html#OpenTK_Mathematics_Matrix2_Row0 + name: Row0 + nameWithType: Matrix2.Row0 + fullName: OpenTK.Mathematics.Matrix2.Row0 +- uid: OpenTK.Mathematics.Matrix2.Row1 + commentId: F:OpenTK.Mathematics.Matrix2.Row1 + href: OpenTK.Mathematics.Matrix2.html#OpenTK_Mathematics_Matrix2_Row1 + name: Row1 + nameWithType: Matrix2.Row1 + fullName: OpenTK.Mathematics.Matrix2.Row1 +- uid: OpenTK.Mathematics.Matrix2.Swizzle* + commentId: Overload:OpenTK.Mathematics.Matrix2.Swizzle + href: OpenTK.Mathematics.Matrix2.html#OpenTK_Mathematics_Matrix2_Swizzle_System_Int32_System_Int32_ + name: Swizzle + nameWithType: Matrix2.Swizzle + fullName: OpenTK.Mathematics.Matrix2.Swizzle +- uid: OpenTK.Mathematics.Matrix2.Swizzled* + commentId: Overload:OpenTK.Mathematics.Matrix2.Swizzled + href: OpenTK.Mathematics.Matrix2.html#OpenTK_Mathematics_Matrix2_Swizzled_System_Int32_System_Int32_ + name: Swizzled + nameWithType: Matrix2.Swizzled + fullName: OpenTK.Mathematics.Matrix2.Swizzled - uid: OpenTK.Mathematics.Matrix2.CreateRotation* commentId: Overload:OpenTK.Mathematics.Matrix2.CreateRotation href: OpenTK.Mathematics.Matrix2.html#OpenTK_Mathematics_Matrix2_CreateRotation_System_Single_OpenTK_Mathematics_Matrix2__ @@ -2846,6 +2943,18 @@ references: name: CreateScale nameWithType: Matrix2.CreateScale fullName: OpenTK.Mathematics.Matrix2.CreateScale +- uid: OpenTK.Mathematics.Vector2.Yx + commentId: P:OpenTK.Mathematics.Vector2.Yx + href: OpenTK.Mathematics.Vector2.html#OpenTK_Mathematics_Vector2_Yx + name: Yx + nameWithType: Vector2.Yx + fullName: OpenTK.Mathematics.Vector2.Yx +- uid: OpenTK.Mathematics.Matrix2.CreateSwizzle* + commentId: Overload:OpenTK.Mathematics.Matrix2.CreateSwizzle + href: OpenTK.Mathematics.Matrix2.html#OpenTK_Mathematics_Matrix2_CreateSwizzle_System_Int32_System_Int32_ + name: CreateSwizzle + nameWithType: Matrix2.CreateSwizzle + fullName: OpenTK.Mathematics.Matrix2.CreateSwizzle - uid: OpenTK.Mathematics.Matrix2.Mult* commentId: Overload:OpenTK.Mathematics.Matrix2.Mult href: OpenTK.Mathematics.Matrix2.html#OpenTK_Mathematics_Matrix2_Mult_OpenTK_Mathematics_Matrix2__System_Single_OpenTK_Mathematics_Matrix2__ @@ -2885,6 +2994,13 @@ references: name: InvalidOperationException nameWithType: InvalidOperationException fullName: System.InvalidOperationException +- uid: System.IndexOutOfRangeException + commentId: T:System.IndexOutOfRangeException + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.indexoutofrangeexception + name: IndexOutOfRangeException + nameWithType: IndexOutOfRangeException + fullName: System.IndexOutOfRangeException - uid: OpenTK.Mathematics.Matrix2.op_Multiply* commentId: Overload:OpenTK.Mathematics.Matrix2.op_Multiply href: OpenTK.Mathematics.Matrix2.html#OpenTK_Mathematics_Matrix2_op_Multiply_System_Single_OpenTK_Mathematics_Matrix2_ diff --git a/api/OpenTK.Mathematics.Matrix2d.yml b/api/OpenTK.Mathematics.Matrix2d.yml index 11ec9f94..5682f649 100644 --- a/api/OpenTK.Mathematics.Matrix2d.yml +++ b/api/OpenTK.Mathematics.Matrix2d.yml @@ -19,6 +19,8 @@ items: - OpenTK.Mathematics.Matrix2d.CreateScale(System.Double,OpenTK.Mathematics.Matrix2d@) - OpenTK.Mathematics.Matrix2d.CreateScale(System.Double,System.Double) - OpenTK.Mathematics.Matrix2d.CreateScale(System.Double,System.Double,OpenTK.Mathematics.Matrix2d@) + - OpenTK.Mathematics.Matrix2d.CreateSwizzle(System.Int32,System.Int32) + - OpenTK.Mathematics.Matrix2d.CreateSwizzle(System.Int32,System.Int32,OpenTK.Mathematics.Matrix2d@) - OpenTK.Mathematics.Matrix2d.Determinant - OpenTK.Mathematics.Matrix2d.Diagonal - OpenTK.Mathematics.Matrix2d.Equals(OpenTK.Mathematics.Matrix2d) @@ -28,6 +30,7 @@ items: - OpenTK.Mathematics.Matrix2d.Invert - OpenTK.Mathematics.Matrix2d.Invert(OpenTK.Mathematics.Matrix2d) - OpenTK.Mathematics.Matrix2d.Invert(OpenTK.Mathematics.Matrix2d@,OpenTK.Mathematics.Matrix2d@) + - OpenTK.Mathematics.Matrix2d.Inverted - OpenTK.Mathematics.Matrix2d.Item(System.Int32,System.Int32) - OpenTK.Mathematics.Matrix2d.M11 - OpenTK.Mathematics.Matrix2d.M12 @@ -45,6 +48,10 @@ items: - OpenTK.Mathematics.Matrix2d.Row1 - OpenTK.Mathematics.Matrix2d.Subtract(OpenTK.Mathematics.Matrix2d,OpenTK.Mathematics.Matrix2d) - OpenTK.Mathematics.Matrix2d.Subtract(OpenTK.Mathematics.Matrix2d@,OpenTK.Mathematics.Matrix2d@,OpenTK.Mathematics.Matrix2d@) + - OpenTK.Mathematics.Matrix2d.Swizzle(OpenTK.Mathematics.Matrix2d,System.Int32,System.Int32) + - OpenTK.Mathematics.Matrix2d.Swizzle(OpenTK.Mathematics.Matrix2d@,System.Int32,System.Int32,OpenTK.Mathematics.Matrix2d@) + - OpenTK.Mathematics.Matrix2d.Swizzle(System.Int32,System.Int32) + - OpenTK.Mathematics.Matrix2d.Swizzled(System.Int32,System.Int32) - OpenTK.Mathematics.Matrix2d.ToString - OpenTK.Mathematics.Matrix2d.ToString(System.IFormatProvider) - OpenTK.Mathematics.Matrix2d.ToString(System.String) @@ -53,6 +60,7 @@ items: - OpenTK.Mathematics.Matrix2d.Transpose - OpenTK.Mathematics.Matrix2d.Transpose(OpenTK.Mathematics.Matrix2d) - OpenTK.Mathematics.Matrix2d.Transpose(OpenTK.Mathematics.Matrix2d@,OpenTK.Mathematics.Matrix2d@) + - OpenTK.Mathematics.Matrix2d.Transposed - OpenTK.Mathematics.Matrix2d.Zero - OpenTK.Mathematics.Matrix2d.op_Addition(OpenTK.Mathematics.Matrix2d,OpenTK.Mathematics.Matrix2d) - OpenTK.Mathematics.Matrix2d.op_Equality(OpenTK.Mathematics.Matrix2d,OpenTK.Mathematics.Matrix2d) @@ -71,13 +79,9 @@ items: fullName: OpenTK.Mathematics.Matrix2d type: Struct source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Matrix2d - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2d.cs - startLine: 32 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2d.cs + startLine: 33 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -115,13 +119,9 @@ items: fullName: OpenTK.Mathematics.Matrix2d.Row0 type: Field source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Row0 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2d.cs - startLine: 39 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2d.cs + startLine: 40 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -144,13 +144,9 @@ items: fullName: OpenTK.Mathematics.Matrix2d.Row1 type: Field source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Row1 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2d.cs - startLine: 44 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2d.cs + startLine: 45 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -173,13 +169,9 @@ items: fullName: OpenTK.Mathematics.Matrix2d.Identity type: Field source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Identity - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2d.cs - startLine: 49 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2d.cs + startLine: 50 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -202,13 +194,9 @@ items: fullName: OpenTK.Mathematics.Matrix2d.Zero type: Field source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Zero - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2d.cs - startLine: 54 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2d.cs + startLine: 55 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -231,13 +219,9 @@ items: fullName: OpenTK.Mathematics.Matrix2d.Matrix2d(OpenTK.Mathematics.Vector2d, OpenTK.Mathematics.Vector2d) type: Constructor source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2d.cs - startLine: 61 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2d.cs + startLine: 62 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -269,13 +253,9 @@ items: fullName: OpenTK.Mathematics.Matrix2d.Matrix2d(double, double, double, double) type: Constructor source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2d.cs - startLine: 74 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2d.cs + startLine: 75 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -313,20 +293,16 @@ items: fullName: OpenTK.Mathematics.Matrix2d.Determinant type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Determinant - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2d.cs - startLine: 88 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2d.cs + startLine: 89 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets the determinant of this matrix. example: [] syntax: - content: public double Determinant { get; } + content: public readonly double Determinant { get; } parameters: [] return: type: System.Double @@ -344,20 +320,16 @@ items: fullName: OpenTK.Mathematics.Matrix2d.Column0 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Column0 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2d.cs - startLine: 104 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2d.cs + startLine: 105 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the first column of this matrix. example: [] syntax: - content: public Vector2d Column0 { get; set; } + content: public Vector2d Column0 { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector2d @@ -375,20 +347,16 @@ items: fullName: OpenTK.Mathematics.Matrix2d.Column1 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Column1 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2d.cs - startLine: 117 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2d.cs + startLine: 118 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the second column of this matrix. example: [] syntax: - content: public Vector2d Column1 { get; set; } + content: public Vector2d Column1 { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector2d @@ -406,20 +374,16 @@ items: fullName: OpenTK.Mathematics.Matrix2d.M11 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M11 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2d.cs - startLine: 130 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2d.cs + startLine: 131 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 1, column 1 of this instance. example: [] syntax: - content: public double M11 { get; set; } + content: public double M11 { readonly get; set; } parameters: [] return: type: System.Double @@ -437,20 +401,16 @@ items: fullName: OpenTK.Mathematics.Matrix2d.M12 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M12 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2d.cs - startLine: 139 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2d.cs + startLine: 140 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 1, column 2 of this instance. example: [] syntax: - content: public double M12 { get; set; } + content: public double M12 { readonly get; set; } parameters: [] return: type: System.Double @@ -468,20 +428,16 @@ items: fullName: OpenTK.Mathematics.Matrix2d.M21 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M21 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2d.cs - startLine: 148 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2d.cs + startLine: 149 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 2, column 1 of this instance. example: [] syntax: - content: public double M21 { get; set; } + content: public double M21 { readonly get; set; } parameters: [] return: type: System.Double @@ -499,20 +455,16 @@ items: fullName: OpenTK.Mathematics.Matrix2d.M22 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M22 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2d.cs - startLine: 157 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2d.cs + startLine: 158 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 2, column 2 of this instance. example: [] syntax: - content: public double M22 { get; set; } + content: public double M22 { readonly get; set; } parameters: [] return: type: System.Double @@ -530,20 +482,16 @@ items: fullName: OpenTK.Mathematics.Matrix2d.Diagonal type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Diagonal - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2d.cs - startLine: 166 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2d.cs + startLine: 167 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the values along the main diagonal of the matrix. example: [] syntax: - content: public Vector2d Diagonal { get; set; } + content: public Vector2d Diagonal { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector2d @@ -561,20 +509,16 @@ items: fullName: OpenTK.Mathematics.Matrix2d.Trace type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Trace - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2d.cs - startLine: 179 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2d.cs + startLine: 180 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets the trace of the matrix, the sum of the values along the diagonal. example: [] syntax: - content: public double Trace { get; } + content: public readonly double Trace { get; } parameters: [] return: type: System.Double @@ -592,20 +536,16 @@ items: fullName: OpenTK.Mathematics.Matrix2d.this[int, int] type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: this[] - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2d.cs - startLine: 187 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2d.cs + startLine: 188 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at a specified row and column. example: [] syntax: - content: public double this[int rowIndex, int columnIndex] { get; set; } + content: public double this[int rowIndex, int columnIndex] { readonly get; set; } parameters: - id: rowIndex type: System.Int32 @@ -621,6 +561,57 @@ items: nameWithType.vb: Matrix2d.this[](Integer, Integer) fullName.vb: OpenTK.Mathematics.Matrix2d.this[](Integer, Integer) name.vb: this[](Integer, Integer) +- uid: OpenTK.Mathematics.Matrix2d.Invert + commentId: M:OpenTK.Mathematics.Matrix2d.Invert + id: Invert + parent: OpenTK.Mathematics.Matrix2d + langs: + - csharp + - vb + name: Invert() + nameWithType: Matrix2d.Invert() + fullName: OpenTK.Mathematics.Matrix2d.Invert() + type: Method + source: + id: Invert + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2d.cs + startLine: 227 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: Converts this instance into its inverse. + example: [] + syntax: + content: public void Invert() + content.vb: Public Sub Invert() + overload: OpenTK.Mathematics.Matrix2d.Invert* +- uid: OpenTK.Mathematics.Matrix2d.Inverted + commentId: M:OpenTK.Mathematics.Matrix2d.Inverted + id: Inverted + parent: OpenTK.Mathematics.Matrix2d + langs: + - csharp + - vb + name: Inverted() + nameWithType: Matrix2d.Inverted() + fullName: OpenTK.Mathematics.Matrix2d.Inverted() + type: Method + source: + id: Inverted + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2d.cs + startLine: 236 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: Returns an inverted copy of this instance. + example: [] + syntax: + content: public readonly Matrix2d Inverted() + return: + type: OpenTK.Mathematics.Matrix2d + description: The inverted copy. + content.vb: Public Function Inverted() As Matrix2d + overload: OpenTK.Mathematics.Matrix2d.Inverted* - uid: OpenTK.Mathematics.Matrix2d.Transpose commentId: M:OpenTK.Mathematics.Matrix2d.Transpose id: Transpose @@ -633,50 +624,116 @@ items: fullName: OpenTK.Mathematics.Matrix2d.Transpose() type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Transpose - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2d.cs - startLine: 226 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2d.cs + startLine: 246 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics - summary: Converts this instance to it's transpose. + summary: Converts this instance to its transpose. example: [] syntax: content: public void Transpose() content.vb: Public Sub Transpose() overload: OpenTK.Mathematics.Matrix2d.Transpose* -- uid: OpenTK.Mathematics.Matrix2d.Invert - commentId: M:OpenTK.Mathematics.Matrix2d.Invert - id: Invert +- uid: OpenTK.Mathematics.Matrix2d.Transposed + commentId: M:OpenTK.Mathematics.Matrix2d.Transposed + id: Transposed parent: OpenTK.Mathematics.Matrix2d langs: - csharp - vb - name: Invert() - nameWithType: Matrix2d.Invert() - fullName: OpenTK.Mathematics.Matrix2d.Invert() + name: Transposed() + nameWithType: Matrix2d.Transposed() + fullName: OpenTK.Mathematics.Matrix2d.Transposed() type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Invert - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2d.cs - startLine: 234 + id: Transposed + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2d.cs + startLine: 255 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics - summary: Converts this instance into its inverse. + summary: Returns a transposed copy of this instance. example: [] syntax: - content: public void Invert() - content.vb: Public Sub Invert() - overload: OpenTK.Mathematics.Matrix2d.Invert* + content: public readonly Matrix2d Transposed() + return: + type: OpenTK.Mathematics.Matrix2d + description: The transposed copy. + content.vb: Public Function Transposed() As Matrix2d + overload: OpenTK.Mathematics.Matrix2d.Transposed* +- uid: OpenTK.Mathematics.Matrix2d.Swizzle(System.Int32,System.Int32) + commentId: M:OpenTK.Mathematics.Matrix2d.Swizzle(System.Int32,System.Int32) + id: Swizzle(System.Int32,System.Int32) + parent: OpenTK.Mathematics.Matrix2d + langs: + - csharp + - vb + name: Swizzle(int, int) + nameWithType: Matrix2d.Swizzle(int, int) + fullName: OpenTK.Mathematics.Matrix2d.Swizzle(int, int) + type: Method + source: + id: Swizzle + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2d.cs + startLine: 267 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: Swizzles this instance. Swiches places of the rows of the matrix. + example: [] + syntax: + content: public void Swizzle(int rowForRow0, int rowForRow1) + parameters: + - id: rowForRow0 + type: System.Int32 + description: Which row to place in . + - id: rowForRow1 + type: System.Int32 + description: Which row to place in . + content.vb: Public Sub Swizzle(rowForRow0 As Integer, rowForRow1 As Integer) + overload: OpenTK.Mathematics.Matrix2d.Swizzle* + nameWithType.vb: Matrix2d.Swizzle(Integer, Integer) + fullName.vb: OpenTK.Mathematics.Matrix2d.Swizzle(Integer, Integer) + name.vb: Swizzle(Integer, Integer) +- uid: OpenTK.Mathematics.Matrix2d.Swizzled(System.Int32,System.Int32) + commentId: M:OpenTK.Mathematics.Matrix2d.Swizzled(System.Int32,System.Int32) + id: Swizzled(System.Int32,System.Int32) + parent: OpenTK.Mathematics.Matrix2d + langs: + - csharp + - vb + name: Swizzled(int, int) + nameWithType: Matrix2d.Swizzled(int, int) + fullName: OpenTK.Mathematics.Matrix2d.Swizzled(int, int) + type: Method + source: + id: Swizzled + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2d.cs + startLine: 278 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: Returns a swizzled copy of this instance. + example: [] + syntax: + content: public readonly Matrix2d Swizzled(int rowForRow0, int rowForRow1) + parameters: + - id: rowForRow0 + type: System.Int32 + description: Which row to place in . + - id: rowForRow1 + type: System.Int32 + description: Which row to place in . + return: + type: OpenTK.Mathematics.Matrix2d + description: The swizzled copy. + content.vb: Public Function Swizzled(rowForRow0 As Integer, rowForRow1 As Integer) As Matrix2d + overload: OpenTK.Mathematics.Matrix2d.Swizzled* + nameWithType.vb: Matrix2d.Swizzled(Integer, Integer) + fullName.vb: OpenTK.Mathematics.Matrix2d.Swizzled(Integer, Integer) + name.vb: Swizzled(Integer, Integer) - uid: OpenTK.Mathematics.Matrix2d.CreateRotation(System.Double,OpenTK.Mathematics.Matrix2d@) commentId: M:OpenTK.Mathematics.Matrix2d.CreateRotation(System.Double,OpenTK.Mathematics.Matrix2d@) id: CreateRotation(System.Double,OpenTK.Mathematics.Matrix2d@) @@ -689,13 +746,9 @@ items: fullName: OpenTK.Mathematics.Matrix2d.CreateRotation(double, out OpenTK.Mathematics.Matrix2d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateRotation - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2d.cs - startLine: 244 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2d.cs + startLine: 290 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -727,13 +780,9 @@ items: fullName: OpenTK.Mathematics.Matrix2d.CreateRotation(double) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateRotation - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2d.cs - startLine: 260 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2d.cs + startLine: 306 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -775,13 +824,9 @@ items: fullName: OpenTK.Mathematics.Matrix2d.CreateScale(double, out OpenTK.Mathematics.Matrix2d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateScale - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2d.cs - startLine: 272 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2d.cs + startLine: 318 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -813,13 +858,9 @@ items: fullName: OpenTK.Mathematics.Matrix2d.CreateScale(double) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateScale - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2d.cs - startLine: 285 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2d.cs + startLine: 331 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -861,13 +902,9 @@ items: fullName: OpenTK.Mathematics.Matrix2d.CreateScale(OpenTK.Mathematics.Vector2d, out OpenTK.Mathematics.Matrix2d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateScale - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2d.cs - startLine: 297 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2d.cs + startLine: 343 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -899,13 +936,9 @@ items: fullName: OpenTK.Mathematics.Matrix2d.CreateScale(OpenTK.Mathematics.Vector2d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateScale - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2d.cs - startLine: 310 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2d.cs + startLine: 356 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -944,13 +977,9 @@ items: fullName: OpenTK.Mathematics.Matrix2d.CreateScale(double, double, out OpenTK.Mathematics.Matrix2d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateScale - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2d.cs - startLine: 323 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2d.cs + startLine: 369 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -985,13 +1014,9 @@ items: fullName: OpenTK.Mathematics.Matrix2d.CreateScale(double, double) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateScale - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2d.cs - startLine: 337 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2d.cs + startLine: 383 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1024,6 +1049,82 @@ items: nameWithType.vb: Matrix2d.CreateScale(Double, Double) fullName.vb: OpenTK.Mathematics.Matrix2d.CreateScale(Double, Double) name.vb: CreateScale(Double, Double) +- uid: OpenTK.Mathematics.Matrix2d.CreateSwizzle(System.Int32,System.Int32) + commentId: M:OpenTK.Mathematics.Matrix2d.CreateSwizzle(System.Int32,System.Int32) + id: CreateSwizzle(System.Int32,System.Int32) + parent: OpenTK.Mathematics.Matrix2d + langs: + - csharp + - vb + name: CreateSwizzle(int, int) + nameWithType: Matrix2d.CreateSwizzle(int, int) + fullName: OpenTK.Mathematics.Matrix2d.CreateSwizzle(int, int) + type: Method + source: + id: CreateSwizzle + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2d.cs + startLine: 399 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: Create a swizzle matrix that can be used to change the row order of matrices. + remarks: If you are looking to swizzle vectors there are properties like that can do this more effectively. + example: [] + syntax: + content: public static Matrix2d CreateSwizzle(int rowForRow0, int rowForRow1) + parameters: + - id: rowForRow0 + type: System.Int32 + description: Which row to place in . + - id: rowForRow1 + type: System.Int32 + description: Which row to place in . + return: + type: OpenTK.Mathematics.Matrix2d + description: The resulting swizzle matrix. + content.vb: Public Shared Function CreateSwizzle(rowForRow0 As Integer, rowForRow1 As Integer) As Matrix2d + overload: OpenTK.Mathematics.Matrix2d.CreateSwizzle* + nameWithType.vb: Matrix2d.CreateSwizzle(Integer, Integer) + fullName.vb: OpenTK.Mathematics.Matrix2d.CreateSwizzle(Integer, Integer) + name.vb: CreateSwizzle(Integer, Integer) +- uid: OpenTK.Mathematics.Matrix2d.CreateSwizzle(System.Int32,System.Int32,OpenTK.Mathematics.Matrix2d@) + commentId: M:OpenTK.Mathematics.Matrix2d.CreateSwizzle(System.Int32,System.Int32,OpenTK.Mathematics.Matrix2d@) + id: CreateSwizzle(System.Int32,System.Int32,OpenTK.Mathematics.Matrix2d@) + parent: OpenTK.Mathematics.Matrix2d + langs: + - csharp + - vb + name: CreateSwizzle(int, int, out Matrix2d) + nameWithType: Matrix2d.CreateSwizzle(int, int, out Matrix2d) + fullName: OpenTK.Mathematics.Matrix2d.CreateSwizzle(int, int, out OpenTK.Mathematics.Matrix2d) + type: Method + source: + id: CreateSwizzle + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2d.cs + startLine: 414 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: Create a swizzle matrix that can be used to change the row order of matrices. + remarks: If you are looking to swizzle vectors there are properties like that can do this more effectively. + example: [] + syntax: + content: public static void CreateSwizzle(int rowForRow0, int rowForRow1, out Matrix2d result) + parameters: + - id: rowForRow0 + type: System.Int32 + description: Which row to place in . + - id: rowForRow1 + type: System.Int32 + description: Which row to place in . + - id: result + type: OpenTK.Mathematics.Matrix2d + description: The resulting swizzle matrix. + content.vb: Public Shared Sub CreateSwizzle(rowForRow0 As Integer, rowForRow1 As Integer, result As Matrix2d) + overload: OpenTK.Mathematics.Matrix2d.CreateSwizzle* + nameWithType.vb: Matrix2d.CreateSwizzle(Integer, Integer, Matrix2d) + fullName.vb: OpenTK.Mathematics.Matrix2d.CreateSwizzle(Integer, Integer, OpenTK.Mathematics.Matrix2d) + name.vb: CreateSwizzle(Integer, Integer, Matrix2d) - uid: OpenTK.Mathematics.Matrix2d.Mult(OpenTK.Mathematics.Matrix2d@,System.Double,OpenTK.Mathematics.Matrix2d@) commentId: M:OpenTK.Mathematics.Matrix2d.Mult(OpenTK.Mathematics.Matrix2d@,System.Double,OpenTK.Mathematics.Matrix2d@) id: Mult(OpenTK.Mathematics.Matrix2d@,System.Double,OpenTK.Mathematics.Matrix2d@) @@ -1036,13 +1137,9 @@ items: fullName: OpenTK.Mathematics.Matrix2d.Mult(in OpenTK.Mathematics.Matrix2d, double, out OpenTK.Mathematics.Matrix2d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Mult - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2d.cs - startLine: 350 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2d.cs + startLine: 436 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1077,13 +1174,9 @@ items: fullName: OpenTK.Mathematics.Matrix2d.Mult(OpenTK.Mathematics.Matrix2d, double) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Mult - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2d.cs - startLine: 364 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2d.cs + startLine: 450 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1128,13 +1221,9 @@ items: fullName: OpenTK.Mathematics.Matrix2d.Mult(in OpenTK.Mathematics.Matrix2d, in OpenTK.Mathematics.Matrix2d, out OpenTK.Mathematics.Matrix2d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Mult - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2d.cs - startLine: 377 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2d.cs + startLine: 463 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1169,13 +1258,9 @@ items: fullName: OpenTK.Mathematics.Matrix2d.Mult(OpenTK.Mathematics.Matrix2d, OpenTK.Mathematics.Matrix2d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Mult - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2d.cs - startLine: 400 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2d.cs + startLine: 486 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1217,13 +1302,9 @@ items: fullName: OpenTK.Mathematics.Matrix2d.Mult(in OpenTK.Mathematics.Matrix2d, in OpenTK.Mathematics.Matrix2x3d, out OpenTK.Mathematics.Matrix2x3d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Mult - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2d.cs - startLine: 413 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2d.cs + startLine: 499 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1258,13 +1339,9 @@ items: fullName: OpenTK.Mathematics.Matrix2d.Mult(OpenTK.Mathematics.Matrix2d, OpenTK.Mathematics.Matrix2x3d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Mult - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2d.cs - startLine: 440 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2d.cs + startLine: 526 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1306,13 +1383,9 @@ items: fullName: OpenTK.Mathematics.Matrix2d.Mult(in OpenTK.Mathematics.Matrix2d, in OpenTK.Mathematics.Matrix2x4d, out OpenTK.Mathematics.Matrix2x4d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Mult - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2d.cs - startLine: 453 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2d.cs + startLine: 539 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1347,13 +1420,9 @@ items: fullName: OpenTK.Mathematics.Matrix2d.Mult(OpenTK.Mathematics.Matrix2d, OpenTK.Mathematics.Matrix2x4d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Mult - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2d.cs - startLine: 484 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2d.cs + startLine: 570 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1395,13 +1464,9 @@ items: fullName: OpenTK.Mathematics.Matrix2d.Add(in OpenTK.Mathematics.Matrix2d, in OpenTK.Mathematics.Matrix2d, out OpenTK.Mathematics.Matrix2d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Add - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2d.cs - startLine: 497 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2d.cs + startLine: 583 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1436,13 +1501,9 @@ items: fullName: OpenTK.Mathematics.Matrix2d.Add(OpenTK.Mathematics.Matrix2d, OpenTK.Mathematics.Matrix2d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Add - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2d.cs - startLine: 511 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2d.cs + startLine: 597 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1484,13 +1545,9 @@ items: fullName: OpenTK.Mathematics.Matrix2d.Subtract(in OpenTK.Mathematics.Matrix2d, in OpenTK.Mathematics.Matrix2d, out OpenTK.Mathematics.Matrix2d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Subtract - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2d.cs - startLine: 524 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2d.cs + startLine: 610 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1525,13 +1582,9 @@ items: fullName: OpenTK.Mathematics.Matrix2d.Subtract(OpenTK.Mathematics.Matrix2d, OpenTK.Mathematics.Matrix2d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Subtract - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2d.cs - startLine: 538 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2d.cs + startLine: 624 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1573,13 +1626,9 @@ items: fullName: OpenTK.Mathematics.Matrix2d.Invert(in OpenTK.Mathematics.Matrix2d, out OpenTK.Mathematics.Matrix2d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Invert - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2d.cs - startLine: 551 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2d.cs + startLine: 637 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1615,13 +1664,9 @@ items: fullName: OpenTK.Mathematics.Matrix2d.Invert(OpenTK.Mathematics.Matrix2d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Invert - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2d.cs - startLine: 580 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2d.cs + startLine: 666 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1664,13 +1709,9 @@ items: fullName: OpenTK.Mathematics.Matrix2d.Transpose(in OpenTK.Mathematics.Matrix2d, out OpenTK.Mathematics.Matrix2d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Transpose - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2d.cs - startLine: 592 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2d.cs + startLine: 678 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1702,13 +1743,9 @@ items: fullName: OpenTK.Mathematics.Matrix2d.Transpose(OpenTK.Mathematics.Matrix2d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Transpose - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2d.cs - startLine: 605 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2d.cs + startLine: 691 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1735,6 +1772,94 @@ items: - type: System.Diagnostics.Contracts.PureAttribute ctor: System.Diagnostics.Contracts.PureAttribute.#ctor arguments: [] +- uid: OpenTK.Mathematics.Matrix2d.Swizzle(OpenTK.Mathematics.Matrix2d,System.Int32,System.Int32) + commentId: M:OpenTK.Mathematics.Matrix2d.Swizzle(OpenTK.Mathematics.Matrix2d,System.Int32,System.Int32) + id: Swizzle(OpenTK.Mathematics.Matrix2d,System.Int32,System.Int32) + parent: OpenTK.Mathematics.Matrix2d + langs: + - csharp + - vb + name: Swizzle(Matrix2d, int, int) + nameWithType: Matrix2d.Swizzle(Matrix2d, int, int) + fullName: OpenTK.Mathematics.Matrix2d.Swizzle(OpenTK.Mathematics.Matrix2d, int, int) + type: Method + source: + id: Swizzle + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2d.cs + startLine: 706 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: Swizzles a matrix, i.e. switches rows of the matrix. + example: [] + syntax: + content: public static Matrix2d Swizzle(Matrix2d mat, int rowForRow0, int rowForRow1) + parameters: + - id: mat + type: OpenTK.Mathematics.Matrix2d + description: The matrix to swizzle. + - id: rowForRow0 + type: System.Int32 + description: Which row to place in . + - id: rowForRow1 + type: System.Int32 + description: Which row to place in . + return: + type: OpenTK.Mathematics.Matrix2d + description: The swizzled matrix. + content.vb: Public Shared Function Swizzle(mat As Matrix2d, rowForRow0 As Integer, rowForRow1 As Integer) As Matrix2d + overload: OpenTK.Mathematics.Matrix2d.Swizzle* + exceptions: + - type: System.IndexOutOfRangeException + commentId: T:System.IndexOutOfRangeException + description: If any of the rows are outside of the range [0, 1]. + nameWithType.vb: Matrix2d.Swizzle(Matrix2d, Integer, Integer) + fullName.vb: OpenTK.Mathematics.Matrix2d.Swizzle(OpenTK.Mathematics.Matrix2d, Integer, Integer) + name.vb: Swizzle(Matrix2d, Integer, Integer) +- uid: OpenTK.Mathematics.Matrix2d.Swizzle(OpenTK.Mathematics.Matrix2d@,System.Int32,System.Int32,OpenTK.Mathematics.Matrix2d@) + commentId: M:OpenTK.Mathematics.Matrix2d.Swizzle(OpenTK.Mathematics.Matrix2d@,System.Int32,System.Int32,OpenTK.Mathematics.Matrix2d@) + id: Swizzle(OpenTK.Mathematics.Matrix2d@,System.Int32,System.Int32,OpenTK.Mathematics.Matrix2d@) + parent: OpenTK.Mathematics.Matrix2d + langs: + - csharp + - vb + name: Swizzle(in Matrix2d, int, int, out Matrix2d) + nameWithType: Matrix2d.Swizzle(in Matrix2d, int, int, out Matrix2d) + fullName: OpenTK.Mathematics.Matrix2d.Swizzle(in OpenTK.Mathematics.Matrix2d, int, int, out OpenTK.Mathematics.Matrix2d) + type: Method + source: + id: Swizzle + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2d.cs + startLine: 720 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: Swizzles a matrix, i.e. switches rows of the matrix. + example: [] + syntax: + content: public static void Swizzle(in Matrix2d mat, int rowForRow0, int rowForRow1, out Matrix2d result) + parameters: + - id: mat + type: OpenTK.Mathematics.Matrix2d + description: The matrix to swizzle. + - id: rowForRow0 + type: System.Int32 + description: Which row to place in . + - id: rowForRow1 + type: System.Int32 + description: Which row to place in . + - id: result + type: OpenTK.Mathematics.Matrix2d + description: The swizzled matrix. + content.vb: Public Shared Sub Swizzle(mat As Matrix2d, rowForRow0 As Integer, rowForRow1 As Integer, result As Matrix2d) + overload: OpenTK.Mathematics.Matrix2d.Swizzle* + exceptions: + - type: System.IndexOutOfRangeException + commentId: T:System.IndexOutOfRangeException + description: If any of the rows are outside of the range [0, 1]. + nameWithType.vb: Matrix2d.Swizzle(Matrix2d, Integer, Integer, Matrix2d) + fullName.vb: OpenTK.Mathematics.Matrix2d.Swizzle(OpenTK.Mathematics.Matrix2d, Integer, Integer, OpenTK.Mathematics.Matrix2d) + name.vb: Swizzle(Matrix2d, Integer, Integer, Matrix2d) - uid: OpenTK.Mathematics.Matrix2d.op_Multiply(System.Double,OpenTK.Mathematics.Matrix2d) commentId: M:OpenTK.Mathematics.Matrix2d.op_Multiply(System.Double,OpenTK.Mathematics.Matrix2d) id: op_Multiply(System.Double,OpenTK.Mathematics.Matrix2d) @@ -1747,13 +1872,9 @@ items: fullName: OpenTK.Mathematics.Matrix2d.operator *(double, OpenTK.Mathematics.Matrix2d) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Multiply - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2d.cs - startLine: 618 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2d.cs + startLine: 743 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1798,13 +1919,9 @@ items: fullName: OpenTK.Mathematics.Matrix2d.operator *(OpenTK.Mathematics.Matrix2d, double) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Multiply - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2d.cs - startLine: 630 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2d.cs + startLine: 755 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1849,13 +1966,9 @@ items: fullName: OpenTK.Mathematics.Matrix2d.operator *(OpenTK.Mathematics.Matrix2d, OpenTK.Mathematics.Matrix2d) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Multiply - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2d.cs - startLine: 642 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2d.cs + startLine: 767 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1900,13 +2013,9 @@ items: fullName: OpenTK.Mathematics.Matrix2d.operator *(OpenTK.Mathematics.Matrix2d, OpenTK.Mathematics.Matrix2x3d) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Multiply - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2d.cs - startLine: 654 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2d.cs + startLine: 779 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1951,13 +2060,9 @@ items: fullName: OpenTK.Mathematics.Matrix2d.operator *(OpenTK.Mathematics.Matrix2d, OpenTK.Mathematics.Matrix2x4d) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Multiply - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2d.cs - startLine: 666 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2d.cs + startLine: 791 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2002,13 +2107,9 @@ items: fullName: OpenTK.Mathematics.Matrix2d.operator +(OpenTK.Mathematics.Matrix2d, OpenTK.Mathematics.Matrix2d) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Addition - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2d.cs - startLine: 678 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2d.cs + startLine: 803 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2053,13 +2154,9 @@ items: fullName: OpenTK.Mathematics.Matrix2d.operator -(OpenTK.Mathematics.Matrix2d, OpenTK.Mathematics.Matrix2d) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Subtraction - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2d.cs - startLine: 690 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2d.cs + startLine: 815 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2104,13 +2201,9 @@ items: fullName: OpenTK.Mathematics.Matrix2d.operator ==(OpenTK.Mathematics.Matrix2d, OpenTK.Mathematics.Matrix2d) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Equality - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2d.cs - startLine: 702 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2d.cs + startLine: 827 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2155,13 +2248,9 @@ items: fullName: OpenTK.Mathematics.Matrix2d.operator !=(OpenTK.Mathematics.Matrix2d, OpenTK.Mathematics.Matrix2d) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Inequality - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2d.cs - startLine: 714 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2d.cs + startLine: 839 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2206,20 +2295,16 @@ items: fullName: OpenTK.Mathematics.Matrix2d.ToString() type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2d.cs - startLine: 724 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2d.cs + startLine: 849 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Returns a System.String that represents the current Matrix4. example: [] syntax: - content: public override string ToString() + content: public override readonly string ToString() return: type: System.String description: The string representation of the matrix. @@ -2238,20 +2323,16 @@ items: fullName: OpenTK.Mathematics.Matrix2d.ToString(string) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2d.cs - startLine: 730 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2d.cs + startLine: 855 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Formats the value of the current instance using the specified format. example: [] syntax: - content: public string ToString(string format) + content: public readonly string ToString(string format) parameters: - id: format type: System.String @@ -2281,20 +2362,16 @@ items: fullName: OpenTK.Mathematics.Matrix2d.ToString(System.IFormatProvider) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2d.cs - startLine: 736 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2d.cs + startLine: 861 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Formats the value of the current instance using the specified format. example: [] syntax: - content: public string ToString(IFormatProvider formatProvider) + content: public readonly string ToString(IFormatProvider formatProvider) parameters: - id: formatProvider type: System.IFormatProvider @@ -2321,20 +2398,16 @@ items: fullName: OpenTK.Mathematics.Matrix2d.ToString(string, System.IFormatProvider) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2d.cs - startLine: 742 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2d.cs + startLine: 867 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Formats the value of the current instance using the specified format. example: [] syntax: - content: public string ToString(string format, IFormatProvider formatProvider) + content: public readonly string ToString(string format, IFormatProvider formatProvider) parameters: - id: format type: System.String @@ -2374,20 +2447,16 @@ items: fullName: OpenTK.Mathematics.Matrix2d.GetHashCode() type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetHashCode - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2d.cs - startLine: 753 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2d.cs + startLine: 878 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Returns the hashcode for this instance. example: [] syntax: - content: public override int GetHashCode() + content: public override readonly int GetHashCode() return: type: System.Int32 description: A System.Int32 containing the unique hashcode for this instance. @@ -2406,13 +2475,9 @@ items: fullName: OpenTK.Mathematics.Matrix2d.Equals(object) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Equals - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2d.cs - startLine: 763 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2d.cs + startLine: 888 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2422,7 +2487,7 @@ items: content: >- [Pure] - public override bool Equals(object obj) + public override readonly bool Equals(object obj) parameters: - id: obj type: System.Object @@ -2455,13 +2520,9 @@ items: fullName: OpenTK.Mathematics.Matrix2d.Equals(OpenTK.Mathematics.Matrix2d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Equals - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2d.cs - startLine: 774 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2d.cs + startLine: 899 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2471,7 +2532,7 @@ items: content: >- [Pure] - public bool Equals(Matrix2d other) + public readonly bool Equals(Matrix2d other) parameters: - id: other type: OpenTK.Mathematics.Matrix2d @@ -2822,18 +2883,54 @@ references: nameWithType.vb: Integer fullName.vb: Integer name.vb: Integer -- uid: OpenTK.Mathematics.Matrix2d.Transpose* - commentId: Overload:OpenTK.Mathematics.Matrix2d.Transpose - href: OpenTK.Mathematics.Matrix2d.html#OpenTK_Mathematics_Matrix2d_Transpose - name: Transpose - nameWithType: Matrix2d.Transpose - fullName: OpenTK.Mathematics.Matrix2d.Transpose - uid: OpenTK.Mathematics.Matrix2d.Invert* commentId: Overload:OpenTK.Mathematics.Matrix2d.Invert href: OpenTK.Mathematics.Matrix2d.html#OpenTK_Mathematics_Matrix2d_Invert name: Invert nameWithType: Matrix2d.Invert fullName: OpenTK.Mathematics.Matrix2d.Invert +- uid: OpenTK.Mathematics.Matrix2d.Inverted* + commentId: Overload:OpenTK.Mathematics.Matrix2d.Inverted + href: OpenTK.Mathematics.Matrix2d.html#OpenTK_Mathematics_Matrix2d_Inverted + name: Inverted + nameWithType: Matrix2d.Inverted + fullName: OpenTK.Mathematics.Matrix2d.Inverted +- uid: OpenTK.Mathematics.Matrix2d.Transpose* + commentId: Overload:OpenTK.Mathematics.Matrix2d.Transpose + href: OpenTK.Mathematics.Matrix2d.html#OpenTK_Mathematics_Matrix2d_Transpose + name: Transpose + nameWithType: Matrix2d.Transpose + fullName: OpenTK.Mathematics.Matrix2d.Transpose +- uid: OpenTK.Mathematics.Matrix2d.Transposed* + commentId: Overload:OpenTK.Mathematics.Matrix2d.Transposed + href: OpenTK.Mathematics.Matrix2d.html#OpenTK_Mathematics_Matrix2d_Transposed + name: Transposed + nameWithType: Matrix2d.Transposed + fullName: OpenTK.Mathematics.Matrix2d.Transposed +- uid: OpenTK.Mathematics.Matrix2d.Row0 + commentId: F:OpenTK.Mathematics.Matrix2d.Row0 + href: OpenTK.Mathematics.Matrix2d.html#OpenTK_Mathematics_Matrix2d_Row0 + name: Row0 + nameWithType: Matrix2d.Row0 + fullName: OpenTK.Mathematics.Matrix2d.Row0 +- uid: OpenTK.Mathematics.Matrix2d.Row1 + commentId: F:OpenTK.Mathematics.Matrix2d.Row1 + href: OpenTK.Mathematics.Matrix2d.html#OpenTK_Mathematics_Matrix2d_Row1 + name: Row1 + nameWithType: Matrix2d.Row1 + fullName: OpenTK.Mathematics.Matrix2d.Row1 +- uid: OpenTK.Mathematics.Matrix2d.Swizzle* + commentId: Overload:OpenTK.Mathematics.Matrix2d.Swizzle + href: OpenTK.Mathematics.Matrix2d.html#OpenTK_Mathematics_Matrix2d_Swizzle_System_Int32_System_Int32_ + name: Swizzle + nameWithType: Matrix2d.Swizzle + fullName: OpenTK.Mathematics.Matrix2d.Swizzle +- uid: OpenTK.Mathematics.Matrix2d.Swizzled* + commentId: Overload:OpenTK.Mathematics.Matrix2d.Swizzled + href: OpenTK.Mathematics.Matrix2d.html#OpenTK_Mathematics_Matrix2d_Swizzled_System_Int32_System_Int32_ + name: Swizzled + nameWithType: Matrix2d.Swizzled + fullName: OpenTK.Mathematics.Matrix2d.Swizzled - uid: OpenTK.Mathematics.Matrix2d.CreateRotation* commentId: Overload:OpenTK.Mathematics.Matrix2d.CreateRotation href: OpenTK.Mathematics.Matrix2d.html#OpenTK_Mathematics_Matrix2d_CreateRotation_System_Double_OpenTK_Mathematics_Matrix2d__ @@ -2846,6 +2943,18 @@ references: name: CreateScale nameWithType: Matrix2d.CreateScale fullName: OpenTK.Mathematics.Matrix2d.CreateScale +- uid: OpenTK.Mathematics.Vector2.Yx + commentId: P:OpenTK.Mathematics.Vector2.Yx + href: OpenTK.Mathematics.Vector2.html#OpenTK_Mathematics_Vector2_Yx + name: Yx + nameWithType: Vector2.Yx + fullName: OpenTK.Mathematics.Vector2.Yx +- uid: OpenTK.Mathematics.Matrix2d.CreateSwizzle* + commentId: Overload:OpenTK.Mathematics.Matrix2d.CreateSwizzle + href: OpenTK.Mathematics.Matrix2d.html#OpenTK_Mathematics_Matrix2d_CreateSwizzle_System_Int32_System_Int32_ + name: CreateSwizzle + nameWithType: Matrix2d.CreateSwizzle + fullName: OpenTK.Mathematics.Matrix2d.CreateSwizzle - uid: OpenTK.Mathematics.Matrix2d.Mult* commentId: Overload:OpenTK.Mathematics.Matrix2d.Mult href: OpenTK.Mathematics.Matrix2d.html#OpenTK_Mathematics_Matrix2d_Mult_OpenTK_Mathematics_Matrix2d__System_Double_OpenTK_Mathematics_Matrix2d__ @@ -2885,6 +2994,13 @@ references: name: InvalidOperationException nameWithType: InvalidOperationException fullName: System.InvalidOperationException +- uid: System.IndexOutOfRangeException + commentId: T:System.IndexOutOfRangeException + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.indexoutofrangeexception + name: IndexOutOfRangeException + nameWithType: IndexOutOfRangeException + fullName: System.IndexOutOfRangeException - uid: OpenTK.Mathematics.Matrix2d.op_Multiply* commentId: Overload:OpenTK.Mathematics.Matrix2d.op_Multiply href: OpenTK.Mathematics.Matrix2d.html#OpenTK_Mathematics_Matrix2d_op_Multiply_System_Double_OpenTK_Mathematics_Matrix2d_ diff --git a/api/OpenTK.Mathematics.Matrix2x3.yml b/api/OpenTK.Mathematics.Matrix2x3.yml index 2818afb1..1184876f 100644 --- a/api/OpenTK.Mathematics.Matrix2x3.yml +++ b/api/OpenTK.Mathematics.Matrix2x3.yml @@ -43,6 +43,10 @@ items: - OpenTK.Mathematics.Matrix2x3.Row1 - OpenTK.Mathematics.Matrix2x3.Subtract(OpenTK.Mathematics.Matrix2x3,OpenTK.Mathematics.Matrix2x3) - OpenTK.Mathematics.Matrix2x3.Subtract(OpenTK.Mathematics.Matrix2x3@,OpenTK.Mathematics.Matrix2x3@,OpenTK.Mathematics.Matrix2x3@) + - OpenTK.Mathematics.Matrix2x3.Swizzle(OpenTK.Mathematics.Matrix2x3,System.Int32,System.Int32) + - OpenTK.Mathematics.Matrix2x3.Swizzle(OpenTK.Mathematics.Matrix2x3@,System.Int32,System.Int32,OpenTK.Mathematics.Matrix2x3@) + - OpenTK.Mathematics.Matrix2x3.Swizzle(System.Int32,System.Int32) + - OpenTK.Mathematics.Matrix2x3.Swizzled(System.Int32,System.Int32) - OpenTK.Mathematics.Matrix2x3.ToString - OpenTK.Mathematics.Matrix2x3.ToString(System.IFormatProvider) - OpenTK.Mathematics.Matrix2x3.ToString(System.String) @@ -50,6 +54,7 @@ items: - OpenTK.Mathematics.Matrix2x3.Trace - OpenTK.Mathematics.Matrix2x3.Transpose(OpenTK.Mathematics.Matrix2x3) - OpenTK.Mathematics.Matrix2x3.Transpose(OpenTK.Mathematics.Matrix2x3@,OpenTK.Mathematics.Matrix3x2@) + - OpenTK.Mathematics.Matrix2x3.Transposed - OpenTK.Mathematics.Matrix2x3.Zero - OpenTK.Mathematics.Matrix2x3.op_Addition(OpenTK.Mathematics.Matrix2x3,OpenTK.Mathematics.Matrix2x3) - OpenTK.Mathematics.Matrix2x3.op_Equality(OpenTK.Mathematics.Matrix2x3,OpenTK.Mathematics.Matrix2x3) @@ -68,13 +73,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x3 type: Struct source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Matrix2x3 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x3.cs - startLine: 32 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x3.cs + startLine: 33 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -112,13 +113,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x3.Row0 type: Field source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Row0 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x3.cs - startLine: 39 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x3.cs + startLine: 40 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -141,13 +138,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x3.Row1 type: Field source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Row1 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x3.cs - startLine: 44 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x3.cs + startLine: 45 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -170,13 +163,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x3.Zero type: Field source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Zero - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x3.cs - startLine: 49 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x3.cs + startLine: 50 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -199,13 +188,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x3.Matrix2x3(OpenTK.Mathematics.Vector3, OpenTK.Mathematics.Vector3) type: Constructor source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x3.cs - startLine: 56 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x3.cs + startLine: 57 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -237,13 +222,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x3.Matrix2x3(float, float, float, float, float, float) type: Constructor source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x3.cs - startLine: 71 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x3.cs + startLine: 72 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -287,20 +268,16 @@ items: fullName: OpenTK.Mathematics.Matrix2x3.Column0 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Column0 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x3.cs - startLine: 85 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x3.cs + startLine: 86 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the first column of this matrix. example: [] syntax: - content: public Vector2 Column0 { get; set; } + content: public Vector2 Column0 { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector2 @@ -318,20 +295,16 @@ items: fullName: OpenTK.Mathematics.Matrix2x3.Column1 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Column1 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x3.cs - startLine: 98 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x3.cs + startLine: 99 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the second column of this matrix. example: [] syntax: - content: public Vector2 Column1 { get; set; } + content: public Vector2 Column1 { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector2 @@ -349,20 +322,16 @@ items: fullName: OpenTK.Mathematics.Matrix2x3.Column2 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Column2 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x3.cs - startLine: 111 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x3.cs + startLine: 112 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the third column of this matrix. example: [] syntax: - content: public Vector2 Column2 { get; set; } + content: public Vector2 Column2 { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector2 @@ -380,20 +349,16 @@ items: fullName: OpenTK.Mathematics.Matrix2x3.M11 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M11 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x3.cs - startLine: 124 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x3.cs + startLine: 125 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 1, column 1 of this instance. example: [] syntax: - content: public float M11 { get; set; } + content: public float M11 { readonly get; set; } parameters: [] return: type: System.Single @@ -411,20 +376,16 @@ items: fullName: OpenTK.Mathematics.Matrix2x3.M12 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M12 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x3.cs - startLine: 133 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x3.cs + startLine: 134 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 1, column 2 of this instance. example: [] syntax: - content: public float M12 { get; set; } + content: public float M12 { readonly get; set; } parameters: [] return: type: System.Single @@ -442,20 +403,16 @@ items: fullName: OpenTK.Mathematics.Matrix2x3.M13 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M13 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x3.cs - startLine: 142 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x3.cs + startLine: 143 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 1, column 3 of this instance. example: [] syntax: - content: public float M13 { get; set; } + content: public float M13 { readonly get; set; } parameters: [] return: type: System.Single @@ -473,20 +430,16 @@ items: fullName: OpenTK.Mathematics.Matrix2x3.M21 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M21 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x3.cs - startLine: 151 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x3.cs + startLine: 152 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 2, column 1 of this instance. example: [] syntax: - content: public float M21 { get; set; } + content: public float M21 { readonly get; set; } parameters: [] return: type: System.Single @@ -504,20 +457,16 @@ items: fullName: OpenTK.Mathematics.Matrix2x3.M22 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M22 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x3.cs - startLine: 160 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x3.cs + startLine: 161 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 2, column 2 of this instance. example: [] syntax: - content: public float M22 { get; set; } + content: public float M22 { readonly get; set; } parameters: [] return: type: System.Single @@ -535,20 +484,16 @@ items: fullName: OpenTK.Mathematics.Matrix2x3.M23 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M23 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x3.cs - startLine: 169 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x3.cs + startLine: 170 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 2, column 3 of this instance. example: [] syntax: - content: public float M23 { get; set; } + content: public float M23 { readonly get; set; } parameters: [] return: type: System.Single @@ -566,20 +511,16 @@ items: fullName: OpenTK.Mathematics.Matrix2x3.Diagonal type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Diagonal - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x3.cs - startLine: 178 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x3.cs + startLine: 179 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the values along the main diagonal of the matrix. example: [] syntax: - content: public Vector2 Diagonal { get; set; } + content: public Vector2 Diagonal { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector2 @@ -597,20 +538,16 @@ items: fullName: OpenTK.Mathematics.Matrix2x3.Trace type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Trace - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x3.cs - startLine: 191 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x3.cs + startLine: 192 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets the trace of the matrix, the sum of the values along the diagonal. example: [] syntax: - content: public float Trace { get; } + content: public readonly float Trace { get; } parameters: [] return: type: System.Single @@ -628,20 +565,16 @@ items: fullName: OpenTK.Mathematics.Matrix2x3.this[int, int] type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: this[] - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x3.cs - startLine: 199 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x3.cs + startLine: 200 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at a specified row and column. example: [] syntax: - content: public float this[int rowIndex, int columnIndex] { get; set; } + content: public float this[int rowIndex, int columnIndex] { readonly get; set; } parameters: - id: rowIndex type: System.Int32 @@ -657,6 +590,104 @@ items: nameWithType.vb: Matrix2x3.this[](Integer, Integer) fullName.vb: OpenTK.Mathematics.Matrix2x3.this[](Integer, Integer) name.vb: this[](Integer, Integer) +- uid: OpenTK.Mathematics.Matrix2x3.Transposed + commentId: M:OpenTK.Mathematics.Matrix2x3.Transposed + id: Transposed + parent: OpenTK.Mathematics.Matrix2x3 + langs: + - csharp + - vb + name: Transposed() + nameWithType: Matrix2x3.Transposed() + fullName: OpenTK.Mathematics.Matrix2x3.Transposed() + type: Method + source: + id: Transposed + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x3.cs + startLine: 240 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: Returns a transposed copy of this instance. + example: [] + syntax: + content: public readonly Matrix3x2 Transposed() + return: + type: OpenTK.Mathematics.Matrix3x2 + description: The transposed copy. + content.vb: Public Function Transposed() As Matrix3x2 + overload: OpenTK.Mathematics.Matrix2x3.Transposed* +- uid: OpenTK.Mathematics.Matrix2x3.Swizzle(System.Int32,System.Int32) + commentId: M:OpenTK.Mathematics.Matrix2x3.Swizzle(System.Int32,System.Int32) + id: Swizzle(System.Int32,System.Int32) + parent: OpenTK.Mathematics.Matrix2x3 + langs: + - csharp + - vb + name: Swizzle(int, int) + nameWithType: Matrix2x3.Swizzle(int, int) + fullName: OpenTK.Mathematics.Matrix2x3.Swizzle(int, int) + type: Method + source: + id: Swizzle + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x3.cs + startLine: 250 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: Swizzles this instance. Swiches places of the rows of the matrix. + example: [] + syntax: + content: public void Swizzle(int rowForRow0, int rowForRow1) + parameters: + - id: rowForRow0 + type: System.Int32 + description: Which row to place in . + - id: rowForRow1 + type: System.Int32 + description: Which row to place in . + content.vb: Public Sub Swizzle(rowForRow0 As Integer, rowForRow1 As Integer) + overload: OpenTK.Mathematics.Matrix2x3.Swizzle* + nameWithType.vb: Matrix2x3.Swizzle(Integer, Integer) + fullName.vb: OpenTK.Mathematics.Matrix2x3.Swizzle(Integer, Integer) + name.vb: Swizzle(Integer, Integer) +- uid: OpenTK.Mathematics.Matrix2x3.Swizzled(System.Int32,System.Int32) + commentId: M:OpenTK.Mathematics.Matrix2x3.Swizzled(System.Int32,System.Int32) + id: Swizzled(System.Int32,System.Int32) + parent: OpenTK.Mathematics.Matrix2x3 + langs: + - csharp + - vb + name: Swizzled(int, int) + nameWithType: Matrix2x3.Swizzled(int, int) + fullName: OpenTK.Mathematics.Matrix2x3.Swizzled(int, int) + type: Method + source: + id: Swizzled + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x3.cs + startLine: 261 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: Returns a swizzled copy of this instance. + example: [] + syntax: + content: public readonly Matrix2x3 Swizzled(int rowForRow0, int rowForRow1) + parameters: + - id: rowForRow0 + type: System.Int32 + description: Which row to place in . + - id: rowForRow1 + type: System.Int32 + description: Which row to place in . + return: + type: OpenTK.Mathematics.Matrix2x3 + description: The swizzled copy. + content.vb: Public Function Swizzled(rowForRow0 As Integer, rowForRow1 As Integer) As Matrix2x3 + overload: OpenTK.Mathematics.Matrix2x3.Swizzled* + nameWithType.vb: Matrix2x3.Swizzled(Integer, Integer) + fullName.vb: OpenTK.Mathematics.Matrix2x3.Swizzled(Integer, Integer) + name.vb: Swizzled(Integer, Integer) - uid: OpenTK.Mathematics.Matrix2x3.CreateRotation(System.Single,OpenTK.Mathematics.Matrix2x3@) commentId: M:OpenTK.Mathematics.Matrix2x3.CreateRotation(System.Single,OpenTK.Mathematics.Matrix2x3@) id: CreateRotation(System.Single,OpenTK.Mathematics.Matrix2x3@) @@ -669,13 +700,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x3.CreateRotation(float, out OpenTK.Mathematics.Matrix2x3) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateRotation - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x3.cs - startLine: 240 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x3.cs + startLine: 273 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -707,13 +734,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x3.CreateRotation(float) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateRotation - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x3.cs - startLine: 258 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x3.cs + startLine: 291 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -755,13 +778,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x3.CreateScale(float, out OpenTK.Mathematics.Matrix2x3) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateScale - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x3.cs - startLine: 270 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x3.cs + startLine: 303 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -793,13 +812,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x3.CreateScale(float) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateScale - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x3.cs - startLine: 285 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x3.cs + startLine: 318 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -841,13 +856,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x3.CreateScale(OpenTK.Mathematics.Vector2, out OpenTK.Mathematics.Matrix2x3) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateScale - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x3.cs - startLine: 297 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x3.cs + startLine: 330 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -879,13 +890,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x3.CreateScale(OpenTK.Mathematics.Vector2) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateScale - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x3.cs - startLine: 312 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x3.cs + startLine: 345 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -924,13 +931,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x3.CreateScale(float, float, out OpenTK.Mathematics.Matrix2x3) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateScale - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x3.cs - startLine: 325 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x3.cs + startLine: 358 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -965,13 +968,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x3.CreateScale(float, float) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateScale - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x3.cs - startLine: 341 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x3.cs + startLine: 374 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1016,13 +1015,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x3.Mult(in OpenTK.Mathematics.Matrix2x3, float, out OpenTK.Mathematics.Matrix2x3) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Mult - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x3.cs - startLine: 354 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x3.cs + startLine: 387 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1057,13 +1052,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x3.Mult(OpenTK.Mathematics.Matrix2x3, float) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Mult - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x3.cs - startLine: 370 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x3.cs + startLine: 403 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1108,13 +1099,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x3.Mult(in OpenTK.Mathematics.Matrix2x3, in OpenTK.Mathematics.Matrix3x2, out OpenTK.Mathematics.Matrix2) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Mult - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x3.cs - startLine: 383 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x3.cs + startLine: 416 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1149,13 +1136,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x3.Mult(OpenTK.Mathematics.Matrix2x3, OpenTK.Mathematics.Matrix3x2) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Mult - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x3.cs - startLine: 410 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x3.cs + startLine: 443 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1197,13 +1180,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x3.Mult(in OpenTK.Mathematics.Matrix2x3, in OpenTK.Mathematics.Matrix3, out OpenTK.Mathematics.Matrix2x3) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Mult - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x3.cs - startLine: 423 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x3.cs + startLine: 456 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1238,13 +1217,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x3.Mult(OpenTK.Mathematics.Matrix2x3, OpenTK.Mathematics.Matrix3) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Mult - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x3.cs - startLine: 455 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x3.cs + startLine: 488 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1286,13 +1261,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x3.Mult(in OpenTK.Mathematics.Matrix2x3, in OpenTK.Mathematics.Matrix3x4, out OpenTK.Mathematics.Matrix2x4) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Mult - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x3.cs - startLine: 468 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x3.cs + startLine: 501 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1327,13 +1298,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x3.Mult(OpenTK.Mathematics.Matrix2x3, OpenTK.Mathematics.Matrix3x4) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Mult - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x3.cs - startLine: 505 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x3.cs + startLine: 538 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1365,13 +1332,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x3.Add(in OpenTK.Mathematics.Matrix2x3, in OpenTK.Mathematics.Matrix2x3, out OpenTK.Mathematics.Matrix2x3) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Add - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x3.cs - startLine: 517 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x3.cs + startLine: 550 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1406,13 +1369,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x3.Add(OpenTK.Mathematics.Matrix2x3, OpenTK.Mathematics.Matrix2x3) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Add - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x3.cs - startLine: 533 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x3.cs + startLine: 566 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1454,13 +1413,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x3.Subtract(in OpenTK.Mathematics.Matrix2x3, in OpenTK.Mathematics.Matrix2x3, out OpenTK.Mathematics.Matrix2x3) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Subtract - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x3.cs - startLine: 546 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x3.cs + startLine: 579 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1495,13 +1450,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x3.Subtract(OpenTK.Mathematics.Matrix2x3, OpenTK.Mathematics.Matrix2x3) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Subtract - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x3.cs - startLine: 562 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x3.cs + startLine: 595 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1543,13 +1494,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x3.Transpose(in OpenTK.Mathematics.Matrix2x3, out OpenTK.Mathematics.Matrix3x2) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Transpose - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x3.cs - startLine: 574 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x3.cs + startLine: 607 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1581,13 +1528,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x3.Transpose(OpenTK.Mathematics.Matrix2x3) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Transpose - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x3.cs - startLine: 589 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x3.cs + startLine: 622 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1614,6 +1557,94 @@ items: - type: System.Diagnostics.Contracts.PureAttribute ctor: System.Diagnostics.Contracts.PureAttribute.#ctor arguments: [] +- uid: OpenTK.Mathematics.Matrix2x3.Swizzle(OpenTK.Mathematics.Matrix2x3,System.Int32,System.Int32) + commentId: M:OpenTK.Mathematics.Matrix2x3.Swizzle(OpenTK.Mathematics.Matrix2x3,System.Int32,System.Int32) + id: Swizzle(OpenTK.Mathematics.Matrix2x3,System.Int32,System.Int32) + parent: OpenTK.Mathematics.Matrix2x3 + langs: + - csharp + - vb + name: Swizzle(Matrix2x3, int, int) + nameWithType: Matrix2x3.Swizzle(Matrix2x3, int, int) + fullName: OpenTK.Mathematics.Matrix2x3.Swizzle(OpenTK.Mathematics.Matrix2x3, int, int) + type: Method + source: + id: Swizzle + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x3.cs + startLine: 637 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: Swizzles a matrix, i.e. switches rows of the matrix. + example: [] + syntax: + content: public static Matrix2x3 Swizzle(Matrix2x3 mat, int rowForRow0, int rowForRow1) + parameters: + - id: mat + type: OpenTK.Mathematics.Matrix2x3 + description: The matrix to swizzle. + - id: rowForRow0 + type: System.Int32 + description: Which row to place in . + - id: rowForRow1 + type: System.Int32 + description: Which row to place in . + return: + type: OpenTK.Mathematics.Matrix2x3 + description: The swizzled matrix. + content.vb: Public Shared Function Swizzle(mat As Matrix2x3, rowForRow0 As Integer, rowForRow1 As Integer) As Matrix2x3 + overload: OpenTK.Mathematics.Matrix2x3.Swizzle* + exceptions: + - type: System.IndexOutOfRangeException + commentId: T:System.IndexOutOfRangeException + description: If any of the rows are outside of the range [0, 1]. + nameWithType.vb: Matrix2x3.Swizzle(Matrix2x3, Integer, Integer) + fullName.vb: OpenTK.Mathematics.Matrix2x3.Swizzle(OpenTK.Mathematics.Matrix2x3, Integer, Integer) + name.vb: Swizzle(Matrix2x3, Integer, Integer) +- uid: OpenTK.Mathematics.Matrix2x3.Swizzle(OpenTK.Mathematics.Matrix2x3@,System.Int32,System.Int32,OpenTK.Mathematics.Matrix2x3@) + commentId: M:OpenTK.Mathematics.Matrix2x3.Swizzle(OpenTK.Mathematics.Matrix2x3@,System.Int32,System.Int32,OpenTK.Mathematics.Matrix2x3@) + id: Swizzle(OpenTK.Mathematics.Matrix2x3@,System.Int32,System.Int32,OpenTK.Mathematics.Matrix2x3@) + parent: OpenTK.Mathematics.Matrix2x3 + langs: + - csharp + - vb + name: Swizzle(in Matrix2x3, int, int, out Matrix2x3) + nameWithType: Matrix2x3.Swizzle(in Matrix2x3, int, int, out Matrix2x3) + fullName: OpenTK.Mathematics.Matrix2x3.Swizzle(in OpenTK.Mathematics.Matrix2x3, int, int, out OpenTK.Mathematics.Matrix2x3) + type: Method + source: + id: Swizzle + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x3.cs + startLine: 651 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: Swizzles a matrix, i.e. switches rows of the matrix. + example: [] + syntax: + content: public static void Swizzle(in Matrix2x3 mat, int rowForRow0, int rowForRow1, out Matrix2x3 result) + parameters: + - id: mat + type: OpenTK.Mathematics.Matrix2x3 + description: The matrix to swizzle. + - id: rowForRow0 + type: System.Int32 + description: Which row to place in . + - id: rowForRow1 + type: System.Int32 + description: Which row to place in . + - id: result + type: OpenTK.Mathematics.Matrix2x3 + description: The swizzled matrix. + content.vb: Public Shared Sub Swizzle(mat As Matrix2x3, rowForRow0 As Integer, rowForRow1 As Integer, result As Matrix2x3) + overload: OpenTK.Mathematics.Matrix2x3.Swizzle* + exceptions: + - type: System.IndexOutOfRangeException + commentId: T:System.IndexOutOfRangeException + description: If any of the rows are outside of the range [0, 1]. + nameWithType.vb: Matrix2x3.Swizzle(Matrix2x3, Integer, Integer, Matrix2x3) + fullName.vb: OpenTK.Mathematics.Matrix2x3.Swizzle(OpenTK.Mathematics.Matrix2x3, Integer, Integer, OpenTK.Mathematics.Matrix2x3) + name.vb: Swizzle(Matrix2x3, Integer, Integer, Matrix2x3) - uid: OpenTK.Mathematics.Matrix2x3.op_Multiply(System.Single,OpenTK.Mathematics.Matrix2x3) commentId: M:OpenTK.Mathematics.Matrix2x3.op_Multiply(System.Single,OpenTK.Mathematics.Matrix2x3) id: op_Multiply(System.Single,OpenTK.Mathematics.Matrix2x3) @@ -1626,13 +1657,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x3.operator *(float, OpenTK.Mathematics.Matrix2x3) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Multiply - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x3.cs - startLine: 602 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x3.cs + startLine: 674 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1677,13 +1704,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x3.operator *(OpenTK.Mathematics.Matrix2x3, float) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Multiply - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x3.cs - startLine: 614 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x3.cs + startLine: 686 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1728,13 +1751,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x3.operator *(OpenTK.Mathematics.Matrix2x3, OpenTK.Mathematics.Matrix3x2) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Multiply - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x3.cs - startLine: 626 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x3.cs + startLine: 698 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1779,13 +1798,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x3.operator *(OpenTK.Mathematics.Matrix2x3, OpenTK.Mathematics.Matrix3) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Multiply - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x3.cs - startLine: 638 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x3.cs + startLine: 710 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1830,13 +1845,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x3.operator *(OpenTK.Mathematics.Matrix2x3, OpenTK.Mathematics.Matrix3x4) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Multiply - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x3.cs - startLine: 650 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x3.cs + startLine: 722 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1881,13 +1892,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x3.operator +(OpenTK.Mathematics.Matrix2x3, OpenTK.Mathematics.Matrix2x3) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Addition - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x3.cs - startLine: 662 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x3.cs + startLine: 734 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1932,13 +1939,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x3.operator -(OpenTK.Mathematics.Matrix2x3, OpenTK.Mathematics.Matrix2x3) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Subtraction - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x3.cs - startLine: 674 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x3.cs + startLine: 746 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1983,13 +1986,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x3.operator ==(OpenTK.Mathematics.Matrix2x3, OpenTK.Mathematics.Matrix2x3) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Equality - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x3.cs - startLine: 686 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x3.cs + startLine: 758 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2034,13 +2033,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x3.operator !=(OpenTK.Mathematics.Matrix2x3, OpenTK.Mathematics.Matrix2x3) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Inequality - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x3.cs - startLine: 698 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x3.cs + startLine: 770 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2085,13 +2080,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x3.ToString() type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x3.cs - startLine: 708 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x3.cs + startLine: 780 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2117,13 +2108,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x3.ToString(string) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x3.cs - startLine: 714 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x3.cs + startLine: 786 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2160,13 +2147,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x3.ToString(System.IFormatProvider) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x3.cs - startLine: 720 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x3.cs + startLine: 792 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2200,20 +2183,16 @@ items: fullName: OpenTK.Mathematics.Matrix2x3.ToString(string, System.IFormatProvider) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x3.cs - startLine: 726 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x3.cs + startLine: 798 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Formats the value of the current instance using the specified format. example: [] syntax: - content: public string ToString(string format, IFormatProvider formatProvider) + content: public readonly string ToString(string format, IFormatProvider formatProvider) parameters: - id: format type: System.String @@ -2253,20 +2232,16 @@ items: fullName: OpenTK.Mathematics.Matrix2x3.GetHashCode() type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetHashCode - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x3.cs - startLine: 737 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x3.cs + startLine: 809 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Returns the hashcode for this instance. example: [] syntax: - content: public override int GetHashCode() + content: public override readonly int GetHashCode() return: type: System.Int32 description: A System.Int32 containing the unique hashcode for this instance. @@ -2285,13 +2260,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x3.Equals(object) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Equals - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x3.cs - startLine: 747 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x3.cs + startLine: 819 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2301,7 +2272,7 @@ items: content: >- [Pure] - public override bool Equals(object obj) + public override readonly bool Equals(object obj) parameters: - id: obj type: System.Object @@ -2334,13 +2305,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x3.Equals(OpenTK.Mathematics.Matrix2x3) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Equals - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x3.cs - startLine: 758 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x3.cs + startLine: 830 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2350,7 +2317,7 @@ items: content: >- [Pure] - public bool Equals(Matrix2x3 other) + public readonly bool Equals(Matrix2x3 other) parameters: - id: other type: OpenTK.Mathematics.Matrix2x3 @@ -2720,6 +2687,43 @@ references: nameWithType.vb: Integer fullName.vb: Integer name.vb: Integer +- uid: OpenTK.Mathematics.Matrix2x3.Transposed* + commentId: Overload:OpenTK.Mathematics.Matrix2x3.Transposed + href: OpenTK.Mathematics.Matrix2x3.html#OpenTK_Mathematics_Matrix2x3_Transposed + name: Transposed + nameWithType: Matrix2x3.Transposed + fullName: OpenTK.Mathematics.Matrix2x3.Transposed +- uid: OpenTK.Mathematics.Matrix3x2 + commentId: T:OpenTK.Mathematics.Matrix3x2 + parent: OpenTK.Mathematics + href: OpenTK.Mathematics.Matrix3x2.html + name: Matrix3x2 + nameWithType: Matrix3x2 + fullName: OpenTK.Mathematics.Matrix3x2 +- uid: OpenTK.Mathematics.Matrix2x3.Row0 + commentId: F:OpenTK.Mathematics.Matrix2x3.Row0 + href: OpenTK.Mathematics.Matrix2x3.html#OpenTK_Mathematics_Matrix2x3_Row0 + name: Row0 + nameWithType: Matrix2x3.Row0 + fullName: OpenTK.Mathematics.Matrix2x3.Row0 +- uid: OpenTK.Mathematics.Matrix2x3.Row1 + commentId: F:OpenTK.Mathematics.Matrix2x3.Row1 + href: OpenTK.Mathematics.Matrix2x3.html#OpenTK_Mathematics_Matrix2x3_Row1 + name: Row1 + nameWithType: Matrix2x3.Row1 + fullName: OpenTK.Mathematics.Matrix2x3.Row1 +- uid: OpenTK.Mathematics.Matrix2x3.Swizzle* + commentId: Overload:OpenTK.Mathematics.Matrix2x3.Swizzle + href: OpenTK.Mathematics.Matrix2x3.html#OpenTK_Mathematics_Matrix2x3_Swizzle_System_Int32_System_Int32_ + name: Swizzle + nameWithType: Matrix2x3.Swizzle + fullName: OpenTK.Mathematics.Matrix2x3.Swizzle +- uid: OpenTK.Mathematics.Matrix2x3.Swizzled* + commentId: Overload:OpenTK.Mathematics.Matrix2x3.Swizzled + href: OpenTK.Mathematics.Matrix2x3.html#OpenTK_Mathematics_Matrix2x3_Swizzled_System_Int32_System_Int32_ + name: Swizzled + nameWithType: Matrix2x3.Swizzled + fullName: OpenTK.Mathematics.Matrix2x3.Swizzled - uid: OpenTK.Mathematics.Matrix2x3.CreateRotation* commentId: Overload:OpenTK.Mathematics.Matrix2x3.CreateRotation href: OpenTK.Mathematics.Matrix2x3.html#OpenTK_Mathematics_Matrix2x3_CreateRotation_System_Single_OpenTK_Mathematics_Matrix2x3__ @@ -2738,13 +2742,6 @@ references: name: Mult nameWithType: Matrix2x3.Mult fullName: OpenTK.Mathematics.Matrix2x3.Mult -- uid: OpenTK.Mathematics.Matrix3x2 - commentId: T:OpenTK.Mathematics.Matrix3x2 - parent: OpenTK.Mathematics - href: OpenTK.Mathematics.Matrix3x2.html - name: Matrix3x2 - nameWithType: Matrix3x2 - fullName: OpenTK.Mathematics.Matrix3x2 - uid: OpenTK.Mathematics.Matrix2 commentId: T:OpenTK.Mathematics.Matrix2 parent: OpenTK.Mathematics @@ -2791,6 +2788,13 @@ references: name: Transpose nameWithType: Matrix2x3.Transpose fullName: OpenTK.Mathematics.Matrix2x3.Transpose +- uid: System.IndexOutOfRangeException + commentId: T:System.IndexOutOfRangeException + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.indexoutofrangeexception + name: IndexOutOfRangeException + nameWithType: IndexOutOfRangeException + fullName: System.IndexOutOfRangeException - uid: OpenTK.Mathematics.Matrix2x3.op_Multiply* commentId: Overload:OpenTK.Mathematics.Matrix2x3.op_Multiply href: OpenTK.Mathematics.Matrix2x3.html#OpenTK_Mathematics_Matrix2x3_op_Multiply_System_Single_OpenTK_Mathematics_Matrix2x3_ diff --git a/api/OpenTK.Mathematics.Matrix2x3d.yml b/api/OpenTK.Mathematics.Matrix2x3d.yml index f28ca150..dfb71257 100644 --- a/api/OpenTK.Mathematics.Matrix2x3d.yml +++ b/api/OpenTK.Mathematics.Matrix2x3d.yml @@ -43,6 +43,10 @@ items: - OpenTK.Mathematics.Matrix2x3d.Row1 - OpenTK.Mathematics.Matrix2x3d.Subtract(OpenTK.Mathematics.Matrix2x3d,OpenTK.Mathematics.Matrix2x3d) - OpenTK.Mathematics.Matrix2x3d.Subtract(OpenTK.Mathematics.Matrix2x3d@,OpenTK.Mathematics.Matrix2x3d@,OpenTK.Mathematics.Matrix2x3d@) + - OpenTK.Mathematics.Matrix2x3d.Swizzle(OpenTK.Mathematics.Matrix2x3d,System.Int32,System.Int32) + - OpenTK.Mathematics.Matrix2x3d.Swizzle(OpenTK.Mathematics.Matrix2x3d@,System.Int32,System.Int32,OpenTK.Mathematics.Matrix2x3d@) + - OpenTK.Mathematics.Matrix2x3d.Swizzle(System.Int32,System.Int32) + - OpenTK.Mathematics.Matrix2x3d.Swizzled(System.Int32,System.Int32) - OpenTK.Mathematics.Matrix2x3d.ToString - OpenTK.Mathematics.Matrix2x3d.ToString(System.IFormatProvider) - OpenTK.Mathematics.Matrix2x3d.ToString(System.String) @@ -50,6 +54,7 @@ items: - OpenTK.Mathematics.Matrix2x3d.Trace - OpenTK.Mathematics.Matrix2x3d.Transpose(OpenTK.Mathematics.Matrix2x3d) - OpenTK.Mathematics.Matrix2x3d.Transpose(OpenTK.Mathematics.Matrix2x3d@,OpenTK.Mathematics.Matrix3x2d@) + - OpenTK.Mathematics.Matrix2x3d.Transposed - OpenTK.Mathematics.Matrix2x3d.Zero - OpenTK.Mathematics.Matrix2x3d.op_Addition(OpenTK.Mathematics.Matrix2x3d,OpenTK.Mathematics.Matrix2x3d) - OpenTK.Mathematics.Matrix2x3d.op_Equality(OpenTK.Mathematics.Matrix2x3d,OpenTK.Mathematics.Matrix2x3d) @@ -68,13 +73,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x3d type: Struct source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Matrix2x3d - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x3d.cs - startLine: 32 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x3d.cs + startLine: 33 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -112,13 +113,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x3d.Row0 type: Field source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Row0 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x3d.cs - startLine: 39 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x3d.cs + startLine: 40 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -141,13 +138,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x3d.Row1 type: Field source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Row1 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x3d.cs - startLine: 44 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x3d.cs + startLine: 45 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -170,13 +163,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x3d.Zero type: Field source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Zero - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x3d.cs - startLine: 49 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x3d.cs + startLine: 50 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -199,13 +188,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x3d.Matrix2x3d(OpenTK.Mathematics.Vector3d, OpenTK.Mathematics.Vector3d) type: Constructor source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x3d.cs - startLine: 56 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x3d.cs + startLine: 57 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -237,13 +222,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x3d.Matrix2x3d(double, double, double, double, double, double) type: Constructor source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x3d.cs - startLine: 71 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x3d.cs + startLine: 72 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -287,20 +268,16 @@ items: fullName: OpenTK.Mathematics.Matrix2x3d.Column0 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Column0 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x3d.cs - startLine: 85 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x3d.cs + startLine: 86 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the first column of this matrix. example: [] syntax: - content: public Vector2d Column0 { get; set; } + content: public Vector2d Column0 { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector2d @@ -318,20 +295,16 @@ items: fullName: OpenTK.Mathematics.Matrix2x3d.Column1 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Column1 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x3d.cs - startLine: 98 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x3d.cs + startLine: 99 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the second column of this matrix. example: [] syntax: - content: public Vector2d Column1 { get; set; } + content: public Vector2d Column1 { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector2d @@ -349,20 +322,16 @@ items: fullName: OpenTK.Mathematics.Matrix2x3d.Column2 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Column2 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x3d.cs - startLine: 111 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x3d.cs + startLine: 112 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the third column of this matrix. example: [] syntax: - content: public Vector2d Column2 { get; set; } + content: public Vector2d Column2 { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector2d @@ -380,20 +349,16 @@ items: fullName: OpenTK.Mathematics.Matrix2x3d.M11 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M11 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x3d.cs - startLine: 124 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x3d.cs + startLine: 125 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 1, column 1 of this instance. example: [] syntax: - content: public double M11 { get; set; } + content: public double M11 { readonly get; set; } parameters: [] return: type: System.Double @@ -411,20 +376,16 @@ items: fullName: OpenTK.Mathematics.Matrix2x3d.M12 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M12 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x3d.cs - startLine: 133 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x3d.cs + startLine: 134 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 1, column 2 of this instance. example: [] syntax: - content: public double M12 { get; set; } + content: public double M12 { readonly get; set; } parameters: [] return: type: System.Double @@ -442,20 +403,16 @@ items: fullName: OpenTK.Mathematics.Matrix2x3d.M13 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M13 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x3d.cs - startLine: 142 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x3d.cs + startLine: 143 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 1, column 3 of this instance. example: [] syntax: - content: public double M13 { get; set; } + content: public double M13 { readonly get; set; } parameters: [] return: type: System.Double @@ -473,20 +430,16 @@ items: fullName: OpenTK.Mathematics.Matrix2x3d.M21 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M21 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x3d.cs - startLine: 151 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x3d.cs + startLine: 152 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 2, column 1 of this instance. example: [] syntax: - content: public double M21 { get; set; } + content: public double M21 { readonly get; set; } parameters: [] return: type: System.Double @@ -504,20 +457,16 @@ items: fullName: OpenTK.Mathematics.Matrix2x3d.M22 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M22 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x3d.cs - startLine: 160 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x3d.cs + startLine: 161 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 2, column 2 of this instance. example: [] syntax: - content: public double M22 { get; set; } + content: public double M22 { readonly get; set; } parameters: [] return: type: System.Double @@ -535,20 +484,16 @@ items: fullName: OpenTK.Mathematics.Matrix2x3d.M23 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M23 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x3d.cs - startLine: 169 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x3d.cs + startLine: 170 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 2, column 3 of this instance. example: [] syntax: - content: public double M23 { get; set; } + content: public double M23 { readonly get; set; } parameters: [] return: type: System.Double @@ -566,20 +511,16 @@ items: fullName: OpenTK.Mathematics.Matrix2x3d.Diagonal type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Diagonal - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x3d.cs - startLine: 178 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x3d.cs + startLine: 179 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the values along the main diagonal of the matrix. example: [] syntax: - content: public Vector2d Diagonal { get; set; } + content: public Vector2d Diagonal { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector2d @@ -597,20 +538,16 @@ items: fullName: OpenTK.Mathematics.Matrix2x3d.Trace type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Trace - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x3d.cs - startLine: 191 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x3d.cs + startLine: 192 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets the trace of the matrix, the sum of the values along the diagonal. example: [] syntax: - content: public double Trace { get; } + content: public readonly double Trace { get; } parameters: [] return: type: System.Double @@ -628,20 +565,16 @@ items: fullName: OpenTK.Mathematics.Matrix2x3d.this[int, int] type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: this[] - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x3d.cs - startLine: 198 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x3d.cs + startLine: 199 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at a specified row and column. example: [] syntax: - content: public double this[int rowIndex, int columnIndex] { get; set; } + content: public double this[int rowIndex, int columnIndex] { readonly get; set; } parameters: - id: rowIndex type: System.Int32 @@ -656,6 +589,104 @@ items: nameWithType.vb: Matrix2x3d.this[](Integer, Integer) fullName.vb: OpenTK.Mathematics.Matrix2x3d.this[](Integer, Integer) name.vb: this[](Integer, Integer) +- uid: OpenTK.Mathematics.Matrix2x3d.Transposed + commentId: M:OpenTK.Mathematics.Matrix2x3d.Transposed + id: Transposed + parent: OpenTK.Mathematics.Matrix2x3d + langs: + - csharp + - vb + name: Transposed() + nameWithType: Matrix2x3d.Transposed() + fullName: OpenTK.Mathematics.Matrix2x3d.Transposed() + type: Method + source: + id: Transposed + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x3d.cs + startLine: 239 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: Returns a transposed copy of this instance. + example: [] + syntax: + content: public readonly Matrix3x2d Transposed() + return: + type: OpenTK.Mathematics.Matrix3x2d + description: The transposed copy. + content.vb: Public Function Transposed() As Matrix3x2d + overload: OpenTK.Mathematics.Matrix2x3d.Transposed* +- uid: OpenTK.Mathematics.Matrix2x3d.Swizzle(System.Int32,System.Int32) + commentId: M:OpenTK.Mathematics.Matrix2x3d.Swizzle(System.Int32,System.Int32) + id: Swizzle(System.Int32,System.Int32) + parent: OpenTK.Mathematics.Matrix2x3d + langs: + - csharp + - vb + name: Swizzle(int, int) + nameWithType: Matrix2x3d.Swizzle(int, int) + fullName: OpenTK.Mathematics.Matrix2x3d.Swizzle(int, int) + type: Method + source: + id: Swizzle + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x3d.cs + startLine: 249 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: Swizzles this instance. Swiches places of the rows of the matrix. + example: [] + syntax: + content: public void Swizzle(int rowForRow0, int rowForRow1) + parameters: + - id: rowForRow0 + type: System.Int32 + description: Which row to place in . + - id: rowForRow1 + type: System.Int32 + description: Which row to place in . + content.vb: Public Sub Swizzle(rowForRow0 As Integer, rowForRow1 As Integer) + overload: OpenTK.Mathematics.Matrix2x3d.Swizzle* + nameWithType.vb: Matrix2x3d.Swizzle(Integer, Integer) + fullName.vb: OpenTK.Mathematics.Matrix2x3d.Swizzle(Integer, Integer) + name.vb: Swizzle(Integer, Integer) +- uid: OpenTK.Mathematics.Matrix2x3d.Swizzled(System.Int32,System.Int32) + commentId: M:OpenTK.Mathematics.Matrix2x3d.Swizzled(System.Int32,System.Int32) + id: Swizzled(System.Int32,System.Int32) + parent: OpenTK.Mathematics.Matrix2x3d + langs: + - csharp + - vb + name: Swizzled(int, int) + nameWithType: Matrix2x3d.Swizzled(int, int) + fullName: OpenTK.Mathematics.Matrix2x3d.Swizzled(int, int) + type: Method + source: + id: Swizzled + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x3d.cs + startLine: 260 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: Returns a swizzled copy of this instance. + example: [] + syntax: + content: public readonly Matrix2x3d Swizzled(int rowForRow0, int rowForRow1) + parameters: + - id: rowForRow0 + type: System.Int32 + description: Which row to place in . + - id: rowForRow1 + type: System.Int32 + description: Which row to place in . + return: + type: OpenTK.Mathematics.Matrix2x3d + description: The swizzled copy. + content.vb: Public Function Swizzled(rowForRow0 As Integer, rowForRow1 As Integer) As Matrix2x3d + overload: OpenTK.Mathematics.Matrix2x3d.Swizzled* + nameWithType.vb: Matrix2x3d.Swizzled(Integer, Integer) + fullName.vb: OpenTK.Mathematics.Matrix2x3d.Swizzled(Integer, Integer) + name.vb: Swizzled(Integer, Integer) - uid: OpenTK.Mathematics.Matrix2x3d.CreateRotation(System.Double,OpenTK.Mathematics.Matrix2x3d@) commentId: M:OpenTK.Mathematics.Matrix2x3d.CreateRotation(System.Double,OpenTK.Mathematics.Matrix2x3d@) id: CreateRotation(System.Double,OpenTK.Mathematics.Matrix2x3d@) @@ -668,13 +699,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x3d.CreateRotation(double, out OpenTK.Mathematics.Matrix2x3d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateRotation - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x3d.cs - startLine: 239 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x3d.cs + startLine: 272 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -706,13 +733,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x3d.CreateRotation(double) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateRotation - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x3d.cs - startLine: 257 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x3d.cs + startLine: 290 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -754,13 +777,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x3d.CreateScale(double, out OpenTK.Mathematics.Matrix2x3d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateScale - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x3d.cs - startLine: 269 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x3d.cs + startLine: 302 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -792,13 +811,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x3d.CreateScale(double) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateScale - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x3d.cs - startLine: 284 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x3d.cs + startLine: 317 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -840,13 +855,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x3d.CreateScale(OpenTK.Mathematics.Vector2d, out OpenTK.Mathematics.Matrix2x3d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateScale - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x3d.cs - startLine: 296 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x3d.cs + startLine: 329 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -878,13 +889,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x3d.CreateScale(OpenTK.Mathematics.Vector2d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateScale - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x3d.cs - startLine: 311 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x3d.cs + startLine: 344 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -923,13 +930,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x3d.CreateScale(double, double, out OpenTK.Mathematics.Matrix2x3d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateScale - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x3d.cs - startLine: 324 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x3d.cs + startLine: 357 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -964,13 +967,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x3d.CreateScale(double, double) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateScale - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x3d.cs - startLine: 340 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x3d.cs + startLine: 373 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1015,13 +1014,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x3d.Mult(in OpenTK.Mathematics.Matrix2x3d, double, out OpenTK.Mathematics.Matrix2x3d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Mult - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x3d.cs - startLine: 353 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x3d.cs + startLine: 386 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1056,13 +1051,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x3d.Mult(OpenTK.Mathematics.Matrix2x3d, double) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Mult - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x3d.cs - startLine: 369 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x3d.cs + startLine: 402 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1107,13 +1098,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x3d.Mult(in OpenTK.Mathematics.Matrix2x3d, in OpenTK.Mathematics.Matrix3x2, out OpenTK.Mathematics.Matrix2d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Mult - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x3d.cs - startLine: 382 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x3d.cs + startLine: 415 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1148,13 +1135,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x3d.Mult(OpenTK.Mathematics.Matrix2x3d, OpenTK.Mathematics.Matrix3x2) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Mult - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x3d.cs - startLine: 409 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x3d.cs + startLine: 442 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1196,13 +1179,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x3d.Mult(in OpenTK.Mathematics.Matrix2x3d, in OpenTK.Mathematics.Matrix3, out OpenTK.Mathematics.Matrix2x3d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Mult - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x3d.cs - startLine: 422 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x3d.cs + startLine: 455 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1237,13 +1216,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x3d.Mult(OpenTK.Mathematics.Matrix2x3d, OpenTK.Mathematics.Matrix3) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Mult - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x3d.cs - startLine: 454 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x3d.cs + startLine: 487 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1285,13 +1260,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x3d.Mult(in OpenTK.Mathematics.Matrix2x3d, in OpenTK.Mathematics.Matrix3x4, out OpenTK.Mathematics.Matrix2x4d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Mult - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x3d.cs - startLine: 467 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x3d.cs + startLine: 500 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1326,13 +1297,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x3d.Mult(OpenTK.Mathematics.Matrix2x3d, OpenTK.Mathematics.Matrix3x4) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Mult - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x3d.cs - startLine: 504 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x3d.cs + startLine: 537 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1374,13 +1341,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x3d.Add(in OpenTK.Mathematics.Matrix2x3d, in OpenTK.Mathematics.Matrix2x3d, out OpenTK.Mathematics.Matrix2x3d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Add - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x3d.cs - startLine: 517 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x3d.cs + startLine: 550 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1415,13 +1378,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x3d.Add(OpenTK.Mathematics.Matrix2x3d, OpenTK.Mathematics.Matrix2x3d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Add - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x3d.cs - startLine: 533 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x3d.cs + startLine: 566 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1463,13 +1422,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x3d.Subtract(in OpenTK.Mathematics.Matrix2x3d, in OpenTK.Mathematics.Matrix2x3d, out OpenTK.Mathematics.Matrix2x3d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Subtract - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x3d.cs - startLine: 546 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x3d.cs + startLine: 579 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1504,13 +1459,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x3d.Subtract(OpenTK.Mathematics.Matrix2x3d, OpenTK.Mathematics.Matrix2x3d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Subtract - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x3d.cs - startLine: 562 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x3d.cs + startLine: 595 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1552,13 +1503,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x3d.Transpose(in OpenTK.Mathematics.Matrix2x3d, out OpenTK.Mathematics.Matrix3x2d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Transpose - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x3d.cs - startLine: 574 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x3d.cs + startLine: 607 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1590,13 +1537,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x3d.Transpose(OpenTK.Mathematics.Matrix2x3d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Transpose - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x3d.cs - startLine: 589 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x3d.cs + startLine: 622 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1623,6 +1566,94 @@ items: - type: System.Diagnostics.Contracts.PureAttribute ctor: System.Diagnostics.Contracts.PureAttribute.#ctor arguments: [] +- uid: OpenTK.Mathematics.Matrix2x3d.Swizzle(OpenTK.Mathematics.Matrix2x3d,System.Int32,System.Int32) + commentId: M:OpenTK.Mathematics.Matrix2x3d.Swizzle(OpenTK.Mathematics.Matrix2x3d,System.Int32,System.Int32) + id: Swizzle(OpenTK.Mathematics.Matrix2x3d,System.Int32,System.Int32) + parent: OpenTK.Mathematics.Matrix2x3d + langs: + - csharp + - vb + name: Swizzle(Matrix2x3d, int, int) + nameWithType: Matrix2x3d.Swizzle(Matrix2x3d, int, int) + fullName: OpenTK.Mathematics.Matrix2x3d.Swizzle(OpenTK.Mathematics.Matrix2x3d, int, int) + type: Method + source: + id: Swizzle + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x3d.cs + startLine: 637 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: Swizzles a matrix, i.e. switches rows of the matrix. + example: [] + syntax: + content: public static Matrix2x3d Swizzle(Matrix2x3d mat, int rowForRow0, int rowForRow1) + parameters: + - id: mat + type: OpenTK.Mathematics.Matrix2x3d + description: The matrix to swizzle. + - id: rowForRow0 + type: System.Int32 + description: Which row to place in . + - id: rowForRow1 + type: System.Int32 + description: Which row to place in . + return: + type: OpenTK.Mathematics.Matrix2x3d + description: The swizzled matrix. + content.vb: Public Shared Function Swizzle(mat As Matrix2x3d, rowForRow0 As Integer, rowForRow1 As Integer) As Matrix2x3d + overload: OpenTK.Mathematics.Matrix2x3d.Swizzle* + exceptions: + - type: System.IndexOutOfRangeException + commentId: T:System.IndexOutOfRangeException + description: If any of the rows are outside of the range [0, 1]. + nameWithType.vb: Matrix2x3d.Swizzle(Matrix2x3d, Integer, Integer) + fullName.vb: OpenTK.Mathematics.Matrix2x3d.Swizzle(OpenTK.Mathematics.Matrix2x3d, Integer, Integer) + name.vb: Swizzle(Matrix2x3d, Integer, Integer) +- uid: OpenTK.Mathematics.Matrix2x3d.Swizzle(OpenTK.Mathematics.Matrix2x3d@,System.Int32,System.Int32,OpenTK.Mathematics.Matrix2x3d@) + commentId: M:OpenTK.Mathematics.Matrix2x3d.Swizzle(OpenTK.Mathematics.Matrix2x3d@,System.Int32,System.Int32,OpenTK.Mathematics.Matrix2x3d@) + id: Swizzle(OpenTK.Mathematics.Matrix2x3d@,System.Int32,System.Int32,OpenTK.Mathematics.Matrix2x3d@) + parent: OpenTK.Mathematics.Matrix2x3d + langs: + - csharp + - vb + name: Swizzle(in Matrix2x3d, int, int, out Matrix2x3d) + nameWithType: Matrix2x3d.Swizzle(in Matrix2x3d, int, int, out Matrix2x3d) + fullName: OpenTK.Mathematics.Matrix2x3d.Swizzle(in OpenTK.Mathematics.Matrix2x3d, int, int, out OpenTK.Mathematics.Matrix2x3d) + type: Method + source: + id: Swizzle + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x3d.cs + startLine: 651 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: Swizzles a matrix, i.e. switches rows of the matrix. + example: [] + syntax: + content: public static void Swizzle(in Matrix2x3d mat, int rowForRow0, int rowForRow1, out Matrix2x3d result) + parameters: + - id: mat + type: OpenTK.Mathematics.Matrix2x3d + description: The matrix to swizzle. + - id: rowForRow0 + type: System.Int32 + description: Which row to place in . + - id: rowForRow1 + type: System.Int32 + description: Which row to place in . + - id: result + type: OpenTK.Mathematics.Matrix2x3d + description: The swizzled matrix. + content.vb: Public Shared Sub Swizzle(mat As Matrix2x3d, rowForRow0 As Integer, rowForRow1 As Integer, result As Matrix2x3d) + overload: OpenTK.Mathematics.Matrix2x3d.Swizzle* + exceptions: + - type: System.IndexOutOfRangeException + commentId: T:System.IndexOutOfRangeException + description: If any of the rows are outside of the range [0, 1]. + nameWithType.vb: Matrix2x3d.Swizzle(Matrix2x3d, Integer, Integer, Matrix2x3d) + fullName.vb: OpenTK.Mathematics.Matrix2x3d.Swizzle(OpenTK.Mathematics.Matrix2x3d, Integer, Integer, OpenTK.Mathematics.Matrix2x3d) + name.vb: Swizzle(Matrix2x3d, Integer, Integer, Matrix2x3d) - uid: OpenTK.Mathematics.Matrix2x3d.op_Multiply(System.Double,OpenTK.Mathematics.Matrix2x3d) commentId: M:OpenTK.Mathematics.Matrix2x3d.op_Multiply(System.Double,OpenTK.Mathematics.Matrix2x3d) id: op_Multiply(System.Double,OpenTK.Mathematics.Matrix2x3d) @@ -1635,13 +1666,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x3d.operator *(double, OpenTK.Mathematics.Matrix2x3d) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Multiply - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x3d.cs - startLine: 602 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x3d.cs + startLine: 674 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1686,13 +1713,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x3d.operator *(OpenTK.Mathematics.Matrix2x3d, double) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Multiply - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x3d.cs - startLine: 614 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x3d.cs + startLine: 686 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1737,13 +1760,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x3d.operator *(OpenTK.Mathematics.Matrix2x3d, OpenTK.Mathematics.Matrix3x2) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Multiply - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x3d.cs - startLine: 626 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x3d.cs + startLine: 698 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1788,13 +1807,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x3d.operator *(OpenTK.Mathematics.Matrix2x3d, OpenTK.Mathematics.Matrix3) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Multiply - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x3d.cs - startLine: 638 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x3d.cs + startLine: 710 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1839,13 +1854,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x3d.operator *(OpenTK.Mathematics.Matrix2x3d, OpenTK.Mathematics.Matrix3x4) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Multiply - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x3d.cs - startLine: 650 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x3d.cs + startLine: 722 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1890,13 +1901,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x3d.operator +(OpenTK.Mathematics.Matrix2x3d, OpenTK.Mathematics.Matrix2x3d) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Addition - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x3d.cs - startLine: 662 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x3d.cs + startLine: 734 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1941,13 +1948,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x3d.operator -(OpenTK.Mathematics.Matrix2x3d, OpenTK.Mathematics.Matrix2x3d) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Subtraction - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x3d.cs - startLine: 674 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x3d.cs + startLine: 746 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1992,13 +1995,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x3d.operator ==(OpenTK.Mathematics.Matrix2x3d, OpenTK.Mathematics.Matrix2x3d) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Equality - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x3d.cs - startLine: 686 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x3d.cs + startLine: 758 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2043,13 +2042,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x3d.operator !=(OpenTK.Mathematics.Matrix2x3d, OpenTK.Mathematics.Matrix2x3d) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Inequality - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x3d.cs - startLine: 698 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x3d.cs + startLine: 770 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2094,13 +2089,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x3d.ToString() type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x3d.cs - startLine: 708 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x3d.cs + startLine: 780 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2126,13 +2117,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x3d.ToString(string) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x3d.cs - startLine: 714 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x3d.cs + startLine: 786 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2169,13 +2156,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x3d.ToString(System.IFormatProvider) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x3d.cs - startLine: 720 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x3d.cs + startLine: 792 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2209,13 +2192,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x3d.ToString(string, System.IFormatProvider) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x3d.cs - startLine: 726 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x3d.cs + startLine: 798 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2262,20 +2241,16 @@ items: fullName: OpenTK.Mathematics.Matrix2x3d.GetHashCode() type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetHashCode - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x3d.cs - startLine: 737 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x3d.cs + startLine: 809 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Returns the hashcode for this instance. example: [] syntax: - content: public override int GetHashCode() + content: public override readonly int GetHashCode() return: type: System.Int32 description: A System.Int32 containing the unique hashcode for this instance. @@ -2294,13 +2269,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x3d.Equals(object) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Equals - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x3d.cs - startLine: 747 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x3d.cs + startLine: 819 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2310,7 +2281,7 @@ items: content: >- [Pure] - public override bool Equals(object obj) + public override readonly bool Equals(object obj) parameters: - id: obj type: System.Object @@ -2343,13 +2314,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x3d.Equals(OpenTK.Mathematics.Matrix2x3d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Equals - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x3d.cs - startLine: 758 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x3d.cs + startLine: 830 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2359,7 +2326,7 @@ items: content: >- [Pure] - public bool Equals(Matrix2x3d other) + public readonly bool Equals(Matrix2x3d other) parameters: - id: other type: OpenTK.Mathematics.Matrix2x3d @@ -2729,6 +2696,43 @@ references: nameWithType.vb: Integer fullName.vb: Integer name.vb: Integer +- uid: OpenTK.Mathematics.Matrix2x3d.Transposed* + commentId: Overload:OpenTK.Mathematics.Matrix2x3d.Transposed + href: OpenTK.Mathematics.Matrix2x3d.html#OpenTK_Mathematics_Matrix2x3d_Transposed + name: Transposed + nameWithType: Matrix2x3d.Transposed + fullName: OpenTK.Mathematics.Matrix2x3d.Transposed +- uid: OpenTK.Mathematics.Matrix3x2d + commentId: T:OpenTK.Mathematics.Matrix3x2d + parent: OpenTK.Mathematics + href: OpenTK.Mathematics.Matrix3x2d.html + name: Matrix3x2d + nameWithType: Matrix3x2d + fullName: OpenTK.Mathematics.Matrix3x2d +- uid: OpenTK.Mathematics.Matrix2x3d.Row0 + commentId: F:OpenTK.Mathematics.Matrix2x3d.Row0 + href: OpenTK.Mathematics.Matrix2x3d.html#OpenTK_Mathematics_Matrix2x3d_Row0 + name: Row0 + nameWithType: Matrix2x3d.Row0 + fullName: OpenTK.Mathematics.Matrix2x3d.Row0 +- uid: OpenTK.Mathematics.Matrix2x3d.Row1 + commentId: F:OpenTK.Mathematics.Matrix2x3d.Row1 + href: OpenTK.Mathematics.Matrix2x3d.html#OpenTK_Mathematics_Matrix2x3d_Row1 + name: Row1 + nameWithType: Matrix2x3d.Row1 + fullName: OpenTK.Mathematics.Matrix2x3d.Row1 +- uid: OpenTK.Mathematics.Matrix2x3d.Swizzle* + commentId: Overload:OpenTK.Mathematics.Matrix2x3d.Swizzle + href: OpenTK.Mathematics.Matrix2x3d.html#OpenTK_Mathematics_Matrix2x3d_Swizzle_System_Int32_System_Int32_ + name: Swizzle + nameWithType: Matrix2x3d.Swizzle + fullName: OpenTK.Mathematics.Matrix2x3d.Swizzle +- uid: OpenTK.Mathematics.Matrix2x3d.Swizzled* + commentId: Overload:OpenTK.Mathematics.Matrix2x3d.Swizzled + href: OpenTK.Mathematics.Matrix2x3d.html#OpenTK_Mathematics_Matrix2x3d_Swizzled_System_Int32_System_Int32_ + name: Swizzled + nameWithType: Matrix2x3d.Swizzled + fullName: OpenTK.Mathematics.Matrix2x3d.Swizzled - uid: OpenTK.Mathematics.Matrix2x3d.CreateRotation* commentId: Overload:OpenTK.Mathematics.Matrix2x3d.CreateRotation href: OpenTK.Mathematics.Matrix2x3d.html#OpenTK_Mathematics_Matrix2x3d_CreateRotation_System_Double_OpenTK_Mathematics_Matrix2x3d__ @@ -2800,13 +2804,13 @@ references: name: Transpose nameWithType: Matrix2x3d.Transpose fullName: OpenTK.Mathematics.Matrix2x3d.Transpose -- uid: OpenTK.Mathematics.Matrix3x2d - commentId: T:OpenTK.Mathematics.Matrix3x2d - parent: OpenTK.Mathematics - href: OpenTK.Mathematics.Matrix3x2d.html - name: Matrix3x2d - nameWithType: Matrix3x2d - fullName: OpenTK.Mathematics.Matrix3x2d +- uid: System.IndexOutOfRangeException + commentId: T:System.IndexOutOfRangeException + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.indexoutofrangeexception + name: IndexOutOfRangeException + nameWithType: IndexOutOfRangeException + fullName: System.IndexOutOfRangeException - uid: OpenTK.Mathematics.Matrix2x3d.op_Multiply* commentId: Overload:OpenTK.Mathematics.Matrix2x3d.op_Multiply href: OpenTK.Mathematics.Matrix2x3d.html#OpenTK_Mathematics_Matrix2x3d_op_Multiply_System_Double_OpenTK_Mathematics_Matrix2x3d_ diff --git a/api/OpenTK.Mathematics.Matrix2x4.yml b/api/OpenTK.Mathematics.Matrix2x4.yml index fe162b7a..4e447b1d 100644 --- a/api/OpenTK.Mathematics.Matrix2x4.yml +++ b/api/OpenTK.Mathematics.Matrix2x4.yml @@ -46,6 +46,10 @@ items: - OpenTK.Mathematics.Matrix2x4.Row1 - OpenTK.Mathematics.Matrix2x4.Subtract(OpenTK.Mathematics.Matrix2x4,OpenTK.Mathematics.Matrix2x4) - OpenTK.Mathematics.Matrix2x4.Subtract(OpenTK.Mathematics.Matrix2x4@,OpenTK.Mathematics.Matrix2x4@,OpenTK.Mathematics.Matrix2x4@) + - OpenTK.Mathematics.Matrix2x4.Swizzle(OpenTK.Mathematics.Matrix2x4,System.Int32,System.Int32) + - OpenTK.Mathematics.Matrix2x4.Swizzle(OpenTK.Mathematics.Matrix2x4@,System.Int32,System.Int32,OpenTK.Mathematics.Matrix2x4@) + - OpenTK.Mathematics.Matrix2x4.Swizzle(System.Int32,System.Int32) + - OpenTK.Mathematics.Matrix2x4.Swizzled(System.Int32,System.Int32) - OpenTK.Mathematics.Matrix2x4.ToString - OpenTK.Mathematics.Matrix2x4.ToString(System.IFormatProvider) - OpenTK.Mathematics.Matrix2x4.ToString(System.String) @@ -53,6 +57,7 @@ items: - OpenTK.Mathematics.Matrix2x4.Trace - OpenTK.Mathematics.Matrix2x4.Transpose(OpenTK.Mathematics.Matrix2x4) - OpenTK.Mathematics.Matrix2x4.Transpose(OpenTK.Mathematics.Matrix2x4@,OpenTK.Mathematics.Matrix4x2@) + - OpenTK.Mathematics.Matrix2x4.Transposed - OpenTK.Mathematics.Matrix2x4.Zero - OpenTK.Mathematics.Matrix2x4.op_Addition(OpenTK.Mathematics.Matrix2x4,OpenTK.Mathematics.Matrix2x4) - OpenTK.Mathematics.Matrix2x4.op_Equality(OpenTK.Mathematics.Matrix2x4,OpenTK.Mathematics.Matrix2x4) @@ -71,13 +76,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x4 type: Struct source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Matrix2x4 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x4.cs - startLine: 32 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x4.cs + startLine: 33 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -115,13 +116,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x4.Row0 type: Field source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Row0 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x4.cs - startLine: 39 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x4.cs + startLine: 40 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -144,13 +141,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x4.Row1 type: Field source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Row1 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x4.cs - startLine: 44 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x4.cs + startLine: 45 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -173,13 +166,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x4.Zero type: Field source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Zero - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x4.cs - startLine: 49 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x4.cs + startLine: 50 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -202,13 +191,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x4.Matrix2x4(OpenTK.Mathematics.Vector4, OpenTK.Mathematics.Vector4) type: Constructor source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x4.cs - startLine: 56 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x4.cs + startLine: 57 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -240,13 +225,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x4.Matrix2x4(float, float, float, float, float, float, float, float) type: Constructor source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x4.cs - startLine: 73 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x4.cs + startLine: 74 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -296,20 +277,16 @@ items: fullName: OpenTK.Mathematics.Matrix2x4.Column0 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Column0 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x4.cs - startLine: 87 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x4.cs + startLine: 88 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the first column of the matrix. example: [] syntax: - content: public Vector2 Column0 { get; set; } + content: public Vector2 Column0 { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector2 @@ -327,20 +304,16 @@ items: fullName: OpenTK.Mathematics.Matrix2x4.Column1 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Column1 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x4.cs - startLine: 100 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x4.cs + startLine: 101 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the second column of the matrix. example: [] syntax: - content: public Vector2 Column1 { get; set; } + content: public Vector2 Column1 { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector2 @@ -358,20 +331,16 @@ items: fullName: OpenTK.Mathematics.Matrix2x4.Column2 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Column2 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x4.cs - startLine: 113 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x4.cs + startLine: 114 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the third column of the matrix. example: [] syntax: - content: public Vector2 Column2 { get; set; } + content: public Vector2 Column2 { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector2 @@ -389,20 +358,16 @@ items: fullName: OpenTK.Mathematics.Matrix2x4.Column3 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Column3 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x4.cs - startLine: 126 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x4.cs + startLine: 127 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the fourth column of the matrix. example: [] syntax: - content: public Vector2 Column3 { get; set; } + content: public Vector2 Column3 { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector2 @@ -420,20 +385,16 @@ items: fullName: OpenTK.Mathematics.Matrix2x4.M11 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M11 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x4.cs - startLine: 139 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x4.cs + startLine: 140 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 1, column 1 of this instance. example: [] syntax: - content: public float M11 { get; set; } + content: public float M11 { readonly get; set; } parameters: [] return: type: System.Single @@ -451,20 +412,16 @@ items: fullName: OpenTK.Mathematics.Matrix2x4.M12 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M12 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x4.cs - startLine: 148 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x4.cs + startLine: 149 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 1, column 2 of this instance. example: [] syntax: - content: public float M12 { get; set; } + content: public float M12 { readonly get; set; } parameters: [] return: type: System.Single @@ -482,20 +439,16 @@ items: fullName: OpenTK.Mathematics.Matrix2x4.M13 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M13 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x4.cs - startLine: 157 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x4.cs + startLine: 158 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 1, column 3 of this instance. example: [] syntax: - content: public float M13 { get; set; } + content: public float M13 { readonly get; set; } parameters: [] return: type: System.Single @@ -513,20 +466,16 @@ items: fullName: OpenTK.Mathematics.Matrix2x4.M14 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M14 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x4.cs - startLine: 166 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x4.cs + startLine: 167 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 1, column 4 of this instance. example: [] syntax: - content: public float M14 { get; set; } + content: public float M14 { readonly get; set; } parameters: [] return: type: System.Single @@ -544,20 +493,16 @@ items: fullName: OpenTK.Mathematics.Matrix2x4.M21 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M21 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x4.cs - startLine: 175 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x4.cs + startLine: 176 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 2, column 1 of this instance. example: [] syntax: - content: public float M21 { get; set; } + content: public float M21 { readonly get; set; } parameters: [] return: type: System.Single @@ -575,20 +520,16 @@ items: fullName: OpenTK.Mathematics.Matrix2x4.M22 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M22 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x4.cs - startLine: 184 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x4.cs + startLine: 185 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 2, column 2 of this instance. example: [] syntax: - content: public float M22 { get; set; } + content: public float M22 { readonly get; set; } parameters: [] return: type: System.Single @@ -606,20 +547,16 @@ items: fullName: OpenTK.Mathematics.Matrix2x4.M23 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M23 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x4.cs - startLine: 193 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x4.cs + startLine: 194 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 2, column 3 of this instance. example: [] syntax: - content: public float M23 { get; set; } + content: public float M23 { readonly get; set; } parameters: [] return: type: System.Single @@ -637,20 +574,16 @@ items: fullName: OpenTK.Mathematics.Matrix2x4.M24 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M24 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x4.cs - startLine: 202 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x4.cs + startLine: 203 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 2, column 4 of this instance. example: [] syntax: - content: public float M24 { get; set; } + content: public float M24 { readonly get; set; } parameters: [] return: type: System.Single @@ -668,20 +601,16 @@ items: fullName: OpenTK.Mathematics.Matrix2x4.Diagonal type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Diagonal - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x4.cs - startLine: 211 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x4.cs + startLine: 212 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the values along the main diagonal of the matrix. example: [] syntax: - content: public Vector2 Diagonal { get; set; } + content: public Vector2 Diagonal { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector2 @@ -699,20 +628,16 @@ items: fullName: OpenTK.Mathematics.Matrix2x4.Trace type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Trace - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x4.cs - startLine: 224 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x4.cs + startLine: 225 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets the trace of the matrix, the sum of the values along the diagonal. example: [] syntax: - content: public float Trace { get; } + content: public readonly float Trace { get; } parameters: [] return: type: System.Single @@ -730,20 +655,16 @@ items: fullName: OpenTK.Mathematics.Matrix2x4.this[int, int] type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: this[] - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x4.cs - startLine: 232 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x4.cs + startLine: 233 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at a specified row and column. example: [] syntax: - content: public float this[int rowIndex, int columnIndex] { get; set; } + content: public float this[int rowIndex, int columnIndex] { readonly get; set; } parameters: - id: rowIndex type: System.Int32 @@ -759,6 +680,104 @@ items: nameWithType.vb: Matrix2x4.this[](Integer, Integer) fullName.vb: OpenTK.Mathematics.Matrix2x4.this[](Integer, Integer) name.vb: this[](Integer, Integer) +- uid: OpenTK.Mathematics.Matrix2x4.Transposed + commentId: M:OpenTK.Mathematics.Matrix2x4.Transposed + id: Transposed + parent: OpenTK.Mathematics.Matrix2x4 + langs: + - csharp + - vb + name: Transposed() + nameWithType: Matrix2x4.Transposed() + fullName: OpenTK.Mathematics.Matrix2x4.Transposed() + type: Method + source: + id: Transposed + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x4.cs + startLine: 273 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: Returns a transposed copy of this instance. + example: [] + syntax: + content: public readonly Matrix4x2 Transposed() + return: + type: OpenTK.Mathematics.Matrix4x2 + description: The transposed copy. + content.vb: Public Function Transposed() As Matrix4x2 + overload: OpenTK.Mathematics.Matrix2x4.Transposed* +- uid: OpenTK.Mathematics.Matrix2x4.Swizzle(System.Int32,System.Int32) + commentId: M:OpenTK.Mathematics.Matrix2x4.Swizzle(System.Int32,System.Int32) + id: Swizzle(System.Int32,System.Int32) + parent: OpenTK.Mathematics.Matrix2x4 + langs: + - csharp + - vb + name: Swizzle(int, int) + nameWithType: Matrix2x4.Swizzle(int, int) + fullName: OpenTK.Mathematics.Matrix2x4.Swizzle(int, int) + type: Method + source: + id: Swizzle + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x4.cs + startLine: 283 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: Swizzles this instance. Swiches places of the rows of the matrix. + example: [] + syntax: + content: public void Swizzle(int rowForRow0, int rowForRow1) + parameters: + - id: rowForRow0 + type: System.Int32 + description: Which row to place in . + - id: rowForRow1 + type: System.Int32 + description: Which row to place in . + content.vb: Public Sub Swizzle(rowForRow0 As Integer, rowForRow1 As Integer) + overload: OpenTK.Mathematics.Matrix2x4.Swizzle* + nameWithType.vb: Matrix2x4.Swizzle(Integer, Integer) + fullName.vb: OpenTK.Mathematics.Matrix2x4.Swizzle(Integer, Integer) + name.vb: Swizzle(Integer, Integer) +- uid: OpenTK.Mathematics.Matrix2x4.Swizzled(System.Int32,System.Int32) + commentId: M:OpenTK.Mathematics.Matrix2x4.Swizzled(System.Int32,System.Int32) + id: Swizzled(System.Int32,System.Int32) + parent: OpenTK.Mathematics.Matrix2x4 + langs: + - csharp + - vb + name: Swizzled(int, int) + nameWithType: Matrix2x4.Swizzled(int, int) + fullName: OpenTK.Mathematics.Matrix2x4.Swizzled(int, int) + type: Method + source: + id: Swizzled + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x4.cs + startLine: 294 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: Returns a swizzled copy of this instance. + example: [] + syntax: + content: public readonly Matrix2x4 Swizzled(int rowForRow0, int rowForRow1) + parameters: + - id: rowForRow0 + type: System.Int32 + description: Which row to place in . + - id: rowForRow1 + type: System.Int32 + description: Which row to place in . + return: + type: OpenTK.Mathematics.Matrix2x4 + description: The swizzled copy. + content.vb: Public Function Swizzled(rowForRow0 As Integer, rowForRow1 As Integer) As Matrix2x4 + overload: OpenTK.Mathematics.Matrix2x4.Swizzled* + nameWithType.vb: Matrix2x4.Swizzled(Integer, Integer) + fullName.vb: OpenTK.Mathematics.Matrix2x4.Swizzled(Integer, Integer) + name.vb: Swizzled(Integer, Integer) - uid: OpenTK.Mathematics.Matrix2x4.CreateRotation(System.Single,OpenTK.Mathematics.Matrix2x4@) commentId: M:OpenTK.Mathematics.Matrix2x4.CreateRotation(System.Single,OpenTK.Mathematics.Matrix2x4@) id: CreateRotation(System.Single,OpenTK.Mathematics.Matrix2x4@) @@ -771,13 +790,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x4.CreateRotation(float, out OpenTK.Mathematics.Matrix2x4) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateRotation - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x4.cs - startLine: 273 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x4.cs + startLine: 306 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -809,13 +824,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x4.CreateRotation(float) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateRotation - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x4.cs - startLine: 293 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x4.cs + startLine: 326 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -857,13 +868,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x4.CreateScale(float, out OpenTK.Mathematics.Matrix2x4) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateScale - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x4.cs - startLine: 305 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x4.cs + startLine: 338 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -895,13 +902,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x4.CreateScale(float) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateScale - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x4.cs - startLine: 322 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x4.cs + startLine: 355 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -943,13 +946,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x4.CreateScale(OpenTK.Mathematics.Vector2, out OpenTK.Mathematics.Matrix2x4) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateScale - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x4.cs - startLine: 334 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x4.cs + startLine: 367 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -981,13 +980,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x4.CreateScale(OpenTK.Mathematics.Vector2) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateScale - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x4.cs - startLine: 351 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x4.cs + startLine: 384 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1026,13 +1021,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x4.CreateScale(float, float, out OpenTK.Mathematics.Matrix2x4) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateScale - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x4.cs - startLine: 364 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x4.cs + startLine: 397 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1067,13 +1058,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x4.CreateScale(float, float) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateScale - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x4.cs - startLine: 382 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x4.cs + startLine: 415 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1118,13 +1105,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x4.Mult(in OpenTK.Mathematics.Matrix2x4, float, out OpenTK.Mathematics.Matrix2x4) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Mult - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x4.cs - startLine: 395 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x4.cs + startLine: 428 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1159,13 +1142,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x4.Mult(OpenTK.Mathematics.Matrix2x4, float) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Mult - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x4.cs - startLine: 413 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x4.cs + startLine: 446 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1210,13 +1189,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x4.Mult(in OpenTK.Mathematics.Matrix2x4, in OpenTK.Mathematics.Matrix4x2, out OpenTK.Mathematics.Matrix2) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Mult - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x4.cs - startLine: 426 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x4.cs + startLine: 459 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1251,13 +1226,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x4.Mult(OpenTK.Mathematics.Matrix2x4, OpenTK.Mathematics.Matrix4x2) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Mult - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x4.cs - startLine: 457 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x4.cs + startLine: 490 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1299,13 +1270,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x4.Mult(in OpenTK.Mathematics.Matrix2x4, in OpenTK.Mathematics.Matrix4x3, out OpenTK.Mathematics.Matrix2x3) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Mult - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x4.cs - startLine: 470 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x4.cs + startLine: 503 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1340,13 +1307,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x4.Mult(OpenTK.Mathematics.Matrix2x4, OpenTK.Mathematics.Matrix4x3) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Mult - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x4.cs - startLine: 507 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x4.cs + startLine: 540 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1388,13 +1351,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x4.Mult(in OpenTK.Mathematics.Matrix2x4, in OpenTK.Mathematics.Matrix4, out OpenTK.Mathematics.Matrix2x4) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Mult - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x4.cs - startLine: 520 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x4.cs + startLine: 553 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1429,13 +1388,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x4.Mult(OpenTK.Mathematics.Matrix2x4, OpenTK.Mathematics.Matrix4) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Mult - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x4.cs - startLine: 563 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x4.cs + startLine: 596 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1477,13 +1432,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x4.Add(in OpenTK.Mathematics.Matrix2x4, in OpenTK.Mathematics.Matrix2x4, out OpenTK.Mathematics.Matrix2x4) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Add - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x4.cs - startLine: 576 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x4.cs + startLine: 609 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1518,13 +1469,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x4.Add(OpenTK.Mathematics.Matrix2x4, OpenTK.Mathematics.Matrix2x4) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Add - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x4.cs - startLine: 594 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x4.cs + startLine: 627 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1566,13 +1513,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x4.Subtract(in OpenTK.Mathematics.Matrix2x4, in OpenTK.Mathematics.Matrix2x4, out OpenTK.Mathematics.Matrix2x4) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Subtract - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x4.cs - startLine: 607 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x4.cs + startLine: 640 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1607,13 +1550,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x4.Subtract(OpenTK.Mathematics.Matrix2x4, OpenTK.Mathematics.Matrix2x4) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Subtract - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x4.cs - startLine: 625 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x4.cs + startLine: 658 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1655,13 +1594,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x4.Transpose(in OpenTK.Mathematics.Matrix2x4, out OpenTK.Mathematics.Matrix4x2) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Transpose - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x4.cs - startLine: 637 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x4.cs + startLine: 670 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1693,13 +1628,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x4.Transpose(OpenTK.Mathematics.Matrix2x4) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Transpose - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x4.cs - startLine: 654 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x4.cs + startLine: 687 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1726,6 +1657,94 @@ items: - type: System.Diagnostics.Contracts.PureAttribute ctor: System.Diagnostics.Contracts.PureAttribute.#ctor arguments: [] +- uid: OpenTK.Mathematics.Matrix2x4.Swizzle(OpenTK.Mathematics.Matrix2x4,System.Int32,System.Int32) + commentId: M:OpenTK.Mathematics.Matrix2x4.Swizzle(OpenTK.Mathematics.Matrix2x4,System.Int32,System.Int32) + id: Swizzle(OpenTK.Mathematics.Matrix2x4,System.Int32,System.Int32) + parent: OpenTK.Mathematics.Matrix2x4 + langs: + - csharp + - vb + name: Swizzle(Matrix2x4, int, int) + nameWithType: Matrix2x4.Swizzle(Matrix2x4, int, int) + fullName: OpenTK.Mathematics.Matrix2x4.Swizzle(OpenTK.Mathematics.Matrix2x4, int, int) + type: Method + source: + id: Swizzle + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x4.cs + startLine: 702 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: Swizzles a matrix, i.e. switches rows of the matrix. + example: [] + syntax: + content: public static Matrix2x4 Swizzle(Matrix2x4 mat, int rowForRow0, int rowForRow1) + parameters: + - id: mat + type: OpenTK.Mathematics.Matrix2x4 + description: The matrix to swizzle. + - id: rowForRow0 + type: System.Int32 + description: Which row to place in . + - id: rowForRow1 + type: System.Int32 + description: Which row to place in . + return: + type: OpenTK.Mathematics.Matrix2x4 + description: The swizzled matrix. + content.vb: Public Shared Function Swizzle(mat As Matrix2x4, rowForRow0 As Integer, rowForRow1 As Integer) As Matrix2x4 + overload: OpenTK.Mathematics.Matrix2x4.Swizzle* + exceptions: + - type: System.IndexOutOfRangeException + commentId: T:System.IndexOutOfRangeException + description: If any of the rows are outside of the range [0, 1]. + nameWithType.vb: Matrix2x4.Swizzle(Matrix2x4, Integer, Integer) + fullName.vb: OpenTK.Mathematics.Matrix2x4.Swizzle(OpenTK.Mathematics.Matrix2x4, Integer, Integer) + name.vb: Swizzle(Matrix2x4, Integer, Integer) +- uid: OpenTK.Mathematics.Matrix2x4.Swizzle(OpenTK.Mathematics.Matrix2x4@,System.Int32,System.Int32,OpenTK.Mathematics.Matrix2x4@) + commentId: M:OpenTK.Mathematics.Matrix2x4.Swizzle(OpenTK.Mathematics.Matrix2x4@,System.Int32,System.Int32,OpenTK.Mathematics.Matrix2x4@) + id: Swizzle(OpenTK.Mathematics.Matrix2x4@,System.Int32,System.Int32,OpenTK.Mathematics.Matrix2x4@) + parent: OpenTK.Mathematics.Matrix2x4 + langs: + - csharp + - vb + name: Swizzle(in Matrix2x4, int, int, out Matrix2x4) + nameWithType: Matrix2x4.Swizzle(in Matrix2x4, int, int, out Matrix2x4) + fullName: OpenTK.Mathematics.Matrix2x4.Swizzle(in OpenTK.Mathematics.Matrix2x4, int, int, out OpenTK.Mathematics.Matrix2x4) + type: Method + source: + id: Swizzle + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x4.cs + startLine: 716 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: Swizzles a matrix, i.e. switches rows of the matrix. + example: [] + syntax: + content: public static void Swizzle(in Matrix2x4 mat, int rowForRow0, int rowForRow1, out Matrix2x4 result) + parameters: + - id: mat + type: OpenTK.Mathematics.Matrix2x4 + description: The matrix to swizzle. + - id: rowForRow0 + type: System.Int32 + description: Which row to place in . + - id: rowForRow1 + type: System.Int32 + description: Which row to place in . + - id: result + type: OpenTK.Mathematics.Matrix2x4 + description: The swizzled matrix. + content.vb: Public Shared Sub Swizzle(mat As Matrix2x4, rowForRow0 As Integer, rowForRow1 As Integer, result As Matrix2x4) + overload: OpenTK.Mathematics.Matrix2x4.Swizzle* + exceptions: + - type: System.IndexOutOfRangeException + commentId: T:System.IndexOutOfRangeException + description: If any of the rows are outside of the range [0, 1]. + nameWithType.vb: Matrix2x4.Swizzle(Matrix2x4, Integer, Integer, Matrix2x4) + fullName.vb: OpenTK.Mathematics.Matrix2x4.Swizzle(OpenTK.Mathematics.Matrix2x4, Integer, Integer, OpenTK.Mathematics.Matrix2x4) + name.vb: Swizzle(Matrix2x4, Integer, Integer, Matrix2x4) - uid: OpenTK.Mathematics.Matrix2x4.op_Multiply(System.Single,OpenTK.Mathematics.Matrix2x4) commentId: M:OpenTK.Mathematics.Matrix2x4.op_Multiply(System.Single,OpenTK.Mathematics.Matrix2x4) id: op_Multiply(System.Single,OpenTK.Mathematics.Matrix2x4) @@ -1738,13 +1757,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x4.operator *(float, OpenTK.Mathematics.Matrix2x4) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Multiply - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x4.cs - startLine: 667 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x4.cs + startLine: 739 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1789,13 +1804,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x4.operator *(OpenTK.Mathematics.Matrix2x4, float) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Multiply - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x4.cs - startLine: 679 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x4.cs + startLine: 751 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1840,13 +1851,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x4.operator *(OpenTK.Mathematics.Matrix2x4, OpenTK.Mathematics.Matrix4x2) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Multiply - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x4.cs - startLine: 691 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x4.cs + startLine: 763 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1891,13 +1898,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x4.operator *(OpenTK.Mathematics.Matrix2x4, OpenTK.Mathematics.Matrix4x3) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Multiply - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x4.cs - startLine: 703 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x4.cs + startLine: 775 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1942,13 +1945,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x4.operator *(OpenTK.Mathematics.Matrix2x4, OpenTK.Mathematics.Matrix4) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Multiply - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x4.cs - startLine: 715 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x4.cs + startLine: 787 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1993,13 +1992,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x4.operator +(OpenTK.Mathematics.Matrix2x4, OpenTK.Mathematics.Matrix2x4) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Addition - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x4.cs - startLine: 727 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x4.cs + startLine: 799 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2044,13 +2039,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x4.operator -(OpenTK.Mathematics.Matrix2x4, OpenTK.Mathematics.Matrix2x4) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Subtraction - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x4.cs - startLine: 739 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x4.cs + startLine: 811 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2095,13 +2086,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x4.operator ==(OpenTK.Mathematics.Matrix2x4, OpenTK.Mathematics.Matrix2x4) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Equality - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x4.cs - startLine: 751 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x4.cs + startLine: 823 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2146,13 +2133,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x4.operator !=(OpenTK.Mathematics.Matrix2x4, OpenTK.Mathematics.Matrix2x4) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Inequality - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x4.cs - startLine: 763 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x4.cs + startLine: 835 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2197,20 +2180,16 @@ items: fullName: OpenTK.Mathematics.Matrix2x4.ToString() type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x4.cs - startLine: 773 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x4.cs + startLine: 845 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Returns a System.String that represents the current Matrix4. example: [] syntax: - content: public override string ToString() + content: public override readonly string ToString() return: type: System.String description: The string representation of the matrix. @@ -2229,20 +2208,16 @@ items: fullName: OpenTK.Mathematics.Matrix2x4.ToString(string) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x4.cs - startLine: 779 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x4.cs + startLine: 851 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Formats the value of the current instance using the specified format. example: [] syntax: - content: public string ToString(string format) + content: public readonly string ToString(string format) parameters: - id: format type: System.String @@ -2272,20 +2247,16 @@ items: fullName: OpenTK.Mathematics.Matrix2x4.ToString(System.IFormatProvider) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x4.cs - startLine: 785 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x4.cs + startLine: 857 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Formats the value of the current instance using the specified format. example: [] syntax: - content: public string ToString(IFormatProvider formatProvider) + content: public readonly string ToString(IFormatProvider formatProvider) parameters: - id: formatProvider type: System.IFormatProvider @@ -2312,20 +2283,16 @@ items: fullName: OpenTK.Mathematics.Matrix2x4.ToString(string, System.IFormatProvider) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x4.cs - startLine: 791 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x4.cs + startLine: 863 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Formats the value of the current instance using the specified format. example: [] syntax: - content: public string ToString(string format, IFormatProvider formatProvider) + content: public readonly string ToString(string format, IFormatProvider formatProvider) parameters: - id: format type: System.String @@ -2365,20 +2332,16 @@ items: fullName: OpenTK.Mathematics.Matrix2x4.GetHashCode() type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetHashCode - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x4.cs - startLine: 802 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x4.cs + startLine: 874 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Returns the hashcode for this instance. example: [] syntax: - content: public override int GetHashCode() + content: public override readonly int GetHashCode() return: type: System.Int32 description: A System.Int32 containing the unique hashcode for this instance. @@ -2397,13 +2360,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x4.Equals(object) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Equals - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x4.cs - startLine: 812 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x4.cs + startLine: 884 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2413,7 +2372,7 @@ items: content: >- [Pure] - public override bool Equals(object obj) + public override readonly bool Equals(object obj) parameters: - id: obj type: System.Object @@ -2446,13 +2405,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x4.Equals(OpenTK.Mathematics.Matrix2x4) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Equals - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x4.cs - startLine: 823 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x4.cs + startLine: 895 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2462,7 +2417,7 @@ items: content: >- [Pure] - public bool Equals(Matrix2x4 other) + public readonly bool Equals(Matrix2x4 other) parameters: - id: other type: OpenTK.Mathematics.Matrix2x4 @@ -2850,6 +2805,43 @@ references: nameWithType.vb: Integer fullName.vb: Integer name.vb: Integer +- uid: OpenTK.Mathematics.Matrix2x4.Transposed* + commentId: Overload:OpenTK.Mathematics.Matrix2x4.Transposed + href: OpenTK.Mathematics.Matrix2x4.html#OpenTK_Mathematics_Matrix2x4_Transposed + name: Transposed + nameWithType: Matrix2x4.Transposed + fullName: OpenTK.Mathematics.Matrix2x4.Transposed +- uid: OpenTK.Mathematics.Matrix4x2 + commentId: T:OpenTK.Mathematics.Matrix4x2 + parent: OpenTK.Mathematics + href: OpenTK.Mathematics.Matrix4x2.html + name: Matrix4x2 + nameWithType: Matrix4x2 + fullName: OpenTK.Mathematics.Matrix4x2 +- uid: OpenTK.Mathematics.Matrix2x4.Row0 + commentId: F:OpenTK.Mathematics.Matrix2x4.Row0 + href: OpenTK.Mathematics.Matrix2x4.html#OpenTK_Mathematics_Matrix2x4_Row0 + name: Row0 + nameWithType: Matrix2x4.Row0 + fullName: OpenTK.Mathematics.Matrix2x4.Row0 +- uid: OpenTK.Mathematics.Matrix2x4.Row1 + commentId: F:OpenTK.Mathematics.Matrix2x4.Row1 + href: OpenTK.Mathematics.Matrix2x4.html#OpenTK_Mathematics_Matrix2x4_Row1 + name: Row1 + nameWithType: Matrix2x4.Row1 + fullName: OpenTK.Mathematics.Matrix2x4.Row1 +- uid: OpenTK.Mathematics.Matrix2x4.Swizzle* + commentId: Overload:OpenTK.Mathematics.Matrix2x4.Swizzle + href: OpenTK.Mathematics.Matrix2x4.html#OpenTK_Mathematics_Matrix2x4_Swizzle_System_Int32_System_Int32_ + name: Swizzle + nameWithType: Matrix2x4.Swizzle + fullName: OpenTK.Mathematics.Matrix2x4.Swizzle +- uid: OpenTK.Mathematics.Matrix2x4.Swizzled* + commentId: Overload:OpenTK.Mathematics.Matrix2x4.Swizzled + href: OpenTK.Mathematics.Matrix2x4.html#OpenTK_Mathematics_Matrix2x4_Swizzled_System_Int32_System_Int32_ + name: Swizzled + nameWithType: Matrix2x4.Swizzled + fullName: OpenTK.Mathematics.Matrix2x4.Swizzled - uid: OpenTK.Mathematics.Matrix2x4.CreateRotation* commentId: Overload:OpenTK.Mathematics.Matrix2x4.CreateRotation href: OpenTK.Mathematics.Matrix2x4.html#OpenTK_Mathematics_Matrix2x4_CreateRotation_System_Single_OpenTK_Mathematics_Matrix2x4__ @@ -2868,13 +2860,6 @@ references: name: Mult nameWithType: Matrix2x4.Mult fullName: OpenTK.Mathematics.Matrix2x4.Mult -- uid: OpenTK.Mathematics.Matrix4x2 - commentId: T:OpenTK.Mathematics.Matrix4x2 - parent: OpenTK.Mathematics - href: OpenTK.Mathematics.Matrix4x2.html - name: Matrix4x2 - nameWithType: Matrix4x2 - fullName: OpenTK.Mathematics.Matrix4x2 - uid: OpenTK.Mathematics.Matrix2 commentId: T:OpenTK.Mathematics.Matrix2 parent: OpenTK.Mathematics @@ -2921,6 +2906,13 @@ references: name: Transpose nameWithType: Matrix2x4.Transpose fullName: OpenTK.Mathematics.Matrix2x4.Transpose +- uid: System.IndexOutOfRangeException + commentId: T:System.IndexOutOfRangeException + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.indexoutofrangeexception + name: IndexOutOfRangeException + nameWithType: IndexOutOfRangeException + fullName: System.IndexOutOfRangeException - uid: OpenTK.Mathematics.Matrix2x4.op_Multiply* commentId: Overload:OpenTK.Mathematics.Matrix2x4.op_Multiply href: OpenTK.Mathematics.Matrix2x4.html#OpenTK_Mathematics_Matrix2x4_op_Multiply_System_Single_OpenTK_Mathematics_Matrix2x4_ diff --git a/api/OpenTK.Mathematics.Matrix2x4d.yml b/api/OpenTK.Mathematics.Matrix2x4d.yml index ff1bb70c..caf3b531 100644 --- a/api/OpenTK.Mathematics.Matrix2x4d.yml +++ b/api/OpenTK.Mathematics.Matrix2x4d.yml @@ -46,6 +46,10 @@ items: - OpenTK.Mathematics.Matrix2x4d.Row1 - OpenTK.Mathematics.Matrix2x4d.Subtract(OpenTK.Mathematics.Matrix2x4d,OpenTK.Mathematics.Matrix2x4d) - OpenTK.Mathematics.Matrix2x4d.Subtract(OpenTK.Mathematics.Matrix2x4d@,OpenTK.Mathematics.Matrix2x4d@,OpenTK.Mathematics.Matrix2x4d@) + - OpenTK.Mathematics.Matrix2x4d.Swizzle(OpenTK.Mathematics.Matrix2x4d,System.Int32,System.Int32) + - OpenTK.Mathematics.Matrix2x4d.Swizzle(OpenTK.Mathematics.Matrix2x4d@,System.Int32,System.Int32,OpenTK.Mathematics.Matrix2x4d@) + - OpenTK.Mathematics.Matrix2x4d.Swizzle(System.Int32,System.Int32) + - OpenTK.Mathematics.Matrix2x4d.Swizzled(System.Int32,System.Int32) - OpenTK.Mathematics.Matrix2x4d.ToString - OpenTK.Mathematics.Matrix2x4d.ToString(System.IFormatProvider) - OpenTK.Mathematics.Matrix2x4d.ToString(System.String) @@ -53,6 +57,7 @@ items: - OpenTK.Mathematics.Matrix2x4d.Trace - OpenTK.Mathematics.Matrix2x4d.Transpose(OpenTK.Mathematics.Matrix2x4d) - OpenTK.Mathematics.Matrix2x4d.Transpose(OpenTK.Mathematics.Matrix2x4d@,OpenTK.Mathematics.Matrix4x2d@) + - OpenTK.Mathematics.Matrix2x4d.Transposed - OpenTK.Mathematics.Matrix2x4d.Zero - OpenTK.Mathematics.Matrix2x4d.op_Addition(OpenTK.Mathematics.Matrix2x4d,OpenTK.Mathematics.Matrix2x4d) - OpenTK.Mathematics.Matrix2x4d.op_Equality(OpenTK.Mathematics.Matrix2x4d,OpenTK.Mathematics.Matrix2x4d) @@ -71,13 +76,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x4d type: Struct source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Matrix2x4d - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x4d.cs - startLine: 32 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x4d.cs + startLine: 33 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -115,13 +116,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x4d.Row0 type: Field source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Row0 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x4d.cs - startLine: 39 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x4d.cs + startLine: 40 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -144,13 +141,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x4d.Row1 type: Field source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Row1 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x4d.cs - startLine: 44 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x4d.cs + startLine: 45 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -173,13 +166,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x4d.Zero type: Field source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Zero - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x4d.cs - startLine: 49 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x4d.cs + startLine: 50 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -202,13 +191,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x4d.Matrix2x4d(OpenTK.Mathematics.Vector4d, OpenTK.Mathematics.Vector4d) type: Constructor source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x4d.cs - startLine: 56 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x4d.cs + startLine: 57 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -240,13 +225,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x4d.Matrix2x4d(double, double, double, double, double, double, double, double) type: Constructor source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x4d.cs - startLine: 73 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x4d.cs + startLine: 74 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -296,20 +277,16 @@ items: fullName: OpenTK.Mathematics.Matrix2x4d.Column0 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Column0 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x4d.cs - startLine: 87 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x4d.cs + startLine: 88 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the first column of the matrix. example: [] syntax: - content: public Vector2d Column0 { get; set; } + content: public Vector2d Column0 { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector2d @@ -327,20 +304,16 @@ items: fullName: OpenTK.Mathematics.Matrix2x4d.Column1 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Column1 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x4d.cs - startLine: 100 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x4d.cs + startLine: 101 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the second column of the matrix. example: [] syntax: - content: public Vector2d Column1 { get; set; } + content: public Vector2d Column1 { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector2d @@ -358,20 +331,16 @@ items: fullName: OpenTK.Mathematics.Matrix2x4d.Column2 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Column2 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x4d.cs - startLine: 113 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x4d.cs + startLine: 114 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the third column of the matrix. example: [] syntax: - content: public Vector2d Column2 { get; set; } + content: public Vector2d Column2 { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector2d @@ -389,20 +358,16 @@ items: fullName: OpenTK.Mathematics.Matrix2x4d.Column3 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Column3 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x4d.cs - startLine: 126 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x4d.cs + startLine: 127 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the fourth column of the matrix. example: [] syntax: - content: public Vector2d Column3 { get; set; } + content: public Vector2d Column3 { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector2d @@ -420,20 +385,16 @@ items: fullName: OpenTK.Mathematics.Matrix2x4d.M11 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M11 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x4d.cs - startLine: 139 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x4d.cs + startLine: 140 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 1, column 1 of this instance. example: [] syntax: - content: public double M11 { get; set; } + content: public double M11 { readonly get; set; } parameters: [] return: type: System.Double @@ -451,20 +412,16 @@ items: fullName: OpenTK.Mathematics.Matrix2x4d.M12 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M12 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x4d.cs - startLine: 148 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x4d.cs + startLine: 149 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 1, column 2 of this instance. example: [] syntax: - content: public double M12 { get; set; } + content: public double M12 { readonly get; set; } parameters: [] return: type: System.Double @@ -482,20 +439,16 @@ items: fullName: OpenTK.Mathematics.Matrix2x4d.M13 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M13 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x4d.cs - startLine: 157 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x4d.cs + startLine: 158 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 1, column 3 of this instance. example: [] syntax: - content: public double M13 { get; set; } + content: public double M13 { readonly get; set; } parameters: [] return: type: System.Double @@ -513,20 +466,16 @@ items: fullName: OpenTK.Mathematics.Matrix2x4d.M14 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M14 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x4d.cs - startLine: 166 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x4d.cs + startLine: 167 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 1, column 4 of this instance. example: [] syntax: - content: public double M14 { get; set; } + content: public double M14 { readonly get; set; } parameters: [] return: type: System.Double @@ -544,20 +493,16 @@ items: fullName: OpenTK.Mathematics.Matrix2x4d.M21 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M21 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x4d.cs - startLine: 175 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x4d.cs + startLine: 176 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 2, column 1 of this instance. example: [] syntax: - content: public double M21 { get; set; } + content: public double M21 { readonly get; set; } parameters: [] return: type: System.Double @@ -575,20 +520,16 @@ items: fullName: OpenTK.Mathematics.Matrix2x4d.M22 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M22 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x4d.cs - startLine: 184 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x4d.cs + startLine: 185 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 2, column 2 of this instance. example: [] syntax: - content: public double M22 { get; set; } + content: public double M22 { readonly get; set; } parameters: [] return: type: System.Double @@ -606,20 +547,16 @@ items: fullName: OpenTK.Mathematics.Matrix2x4d.M23 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M23 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x4d.cs - startLine: 193 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x4d.cs + startLine: 194 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 2, column 3 of this instance. example: [] syntax: - content: public double M23 { get; set; } + content: public double M23 { readonly get; set; } parameters: [] return: type: System.Double @@ -637,20 +574,16 @@ items: fullName: OpenTK.Mathematics.Matrix2x4d.M24 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M24 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x4d.cs - startLine: 202 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x4d.cs + startLine: 203 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 2, column 4 of this instance. example: [] syntax: - content: public double M24 { get; set; } + content: public double M24 { readonly get; set; } parameters: [] return: type: System.Double @@ -668,20 +601,16 @@ items: fullName: OpenTK.Mathematics.Matrix2x4d.Diagonal type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Diagonal - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x4d.cs - startLine: 211 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x4d.cs + startLine: 212 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the values along the main diagonal of the matrix. example: [] syntax: - content: public Vector2d Diagonal { get; set; } + content: public Vector2d Diagonal { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector2d @@ -699,20 +628,16 @@ items: fullName: OpenTK.Mathematics.Matrix2x4d.Trace type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Trace - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x4d.cs - startLine: 224 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x4d.cs + startLine: 225 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets the trace of the matrix, the sum of the values along the diagonal. example: [] syntax: - content: public double Trace { get; } + content: public readonly double Trace { get; } parameters: [] return: type: System.Double @@ -730,20 +655,16 @@ items: fullName: OpenTK.Mathematics.Matrix2x4d.this[int, int] type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: this[] - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x4d.cs - startLine: 232 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x4d.cs + startLine: 233 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at a specified row and column. example: [] syntax: - content: public double this[int rowIndex, int columnIndex] { get; set; } + content: public double this[int rowIndex, int columnIndex] { readonly get; set; } parameters: - id: rowIndex type: System.Int32 @@ -759,6 +680,104 @@ items: nameWithType.vb: Matrix2x4d.this[](Integer, Integer) fullName.vb: OpenTK.Mathematics.Matrix2x4d.this[](Integer, Integer) name.vb: this[](Integer, Integer) +- uid: OpenTK.Mathematics.Matrix2x4d.Transposed + commentId: M:OpenTK.Mathematics.Matrix2x4d.Transposed + id: Transposed + parent: OpenTK.Mathematics.Matrix2x4d + langs: + - csharp + - vb + name: Transposed() + nameWithType: Matrix2x4d.Transposed() + fullName: OpenTK.Mathematics.Matrix2x4d.Transposed() + type: Method + source: + id: Transposed + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x4d.cs + startLine: 273 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: Returns a transposed copy of this instance. + example: [] + syntax: + content: public readonly Matrix4x2d Transposed() + return: + type: OpenTK.Mathematics.Matrix4x2d + description: The transposed copy. + content.vb: Public Function Transposed() As Matrix4x2d + overload: OpenTK.Mathematics.Matrix2x4d.Transposed* +- uid: OpenTK.Mathematics.Matrix2x4d.Swizzle(System.Int32,System.Int32) + commentId: M:OpenTK.Mathematics.Matrix2x4d.Swizzle(System.Int32,System.Int32) + id: Swizzle(System.Int32,System.Int32) + parent: OpenTK.Mathematics.Matrix2x4d + langs: + - csharp + - vb + name: Swizzle(int, int) + nameWithType: Matrix2x4d.Swizzle(int, int) + fullName: OpenTK.Mathematics.Matrix2x4d.Swizzle(int, int) + type: Method + source: + id: Swizzle + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x4d.cs + startLine: 283 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: Swizzles this instance. Swiches places of the rows of the matrix. + example: [] + syntax: + content: public void Swizzle(int rowForRow0, int rowForRow1) + parameters: + - id: rowForRow0 + type: System.Int32 + description: Which row to place in . + - id: rowForRow1 + type: System.Int32 + description: Which row to place in . + content.vb: Public Sub Swizzle(rowForRow0 As Integer, rowForRow1 As Integer) + overload: OpenTK.Mathematics.Matrix2x4d.Swizzle* + nameWithType.vb: Matrix2x4d.Swizzle(Integer, Integer) + fullName.vb: OpenTK.Mathematics.Matrix2x4d.Swizzle(Integer, Integer) + name.vb: Swizzle(Integer, Integer) +- uid: OpenTK.Mathematics.Matrix2x4d.Swizzled(System.Int32,System.Int32) + commentId: M:OpenTK.Mathematics.Matrix2x4d.Swizzled(System.Int32,System.Int32) + id: Swizzled(System.Int32,System.Int32) + parent: OpenTK.Mathematics.Matrix2x4d + langs: + - csharp + - vb + name: Swizzled(int, int) + nameWithType: Matrix2x4d.Swizzled(int, int) + fullName: OpenTK.Mathematics.Matrix2x4d.Swizzled(int, int) + type: Method + source: + id: Swizzled + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x4d.cs + startLine: 294 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: Returns a swizzled copy of this instance. + example: [] + syntax: + content: public readonly Matrix2x4d Swizzled(int rowForRow0, int rowForRow1) + parameters: + - id: rowForRow0 + type: System.Int32 + description: Which row to place in . + - id: rowForRow1 + type: System.Int32 + description: Which row to place in . + return: + type: OpenTK.Mathematics.Matrix2x4d + description: The swizzled copy. + content.vb: Public Function Swizzled(rowForRow0 As Integer, rowForRow1 As Integer) As Matrix2x4d + overload: OpenTK.Mathematics.Matrix2x4d.Swizzled* + nameWithType.vb: Matrix2x4d.Swizzled(Integer, Integer) + fullName.vb: OpenTK.Mathematics.Matrix2x4d.Swizzled(Integer, Integer) + name.vb: Swizzled(Integer, Integer) - uid: OpenTK.Mathematics.Matrix2x4d.CreateRotation(System.Double,OpenTK.Mathematics.Matrix2x4d@) commentId: M:OpenTK.Mathematics.Matrix2x4d.CreateRotation(System.Double,OpenTK.Mathematics.Matrix2x4d@) id: CreateRotation(System.Double,OpenTK.Mathematics.Matrix2x4d@) @@ -771,13 +790,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x4d.CreateRotation(double, out OpenTK.Mathematics.Matrix2x4d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateRotation - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x4d.cs - startLine: 273 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x4d.cs + startLine: 306 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -809,13 +824,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x4d.CreateRotation(double) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateRotation - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x4d.cs - startLine: 293 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x4d.cs + startLine: 326 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -857,13 +868,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x4d.CreateScale(double, out OpenTK.Mathematics.Matrix2x4d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateScale - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x4d.cs - startLine: 305 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x4d.cs + startLine: 338 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -895,13 +902,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x4d.CreateScale(double) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateScale - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x4d.cs - startLine: 322 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x4d.cs + startLine: 355 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -943,13 +946,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x4d.CreateScale(OpenTK.Mathematics.Vector2d, out OpenTK.Mathematics.Matrix2x4d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateScale - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x4d.cs - startLine: 334 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x4d.cs + startLine: 367 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -981,13 +980,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x4d.CreateScale(OpenTK.Mathematics.Vector2d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateScale - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x4d.cs - startLine: 351 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x4d.cs + startLine: 384 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1026,13 +1021,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x4d.CreateScale(double, double, out OpenTK.Mathematics.Matrix2x4d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateScale - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x4d.cs - startLine: 364 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x4d.cs + startLine: 397 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1067,13 +1058,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x4d.CreateScale(double, double) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateScale - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x4d.cs - startLine: 382 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x4d.cs + startLine: 415 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1118,13 +1105,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x4d.Mult(in OpenTK.Mathematics.Matrix2x4d, double, out OpenTK.Mathematics.Matrix2x4d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Mult - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x4d.cs - startLine: 395 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x4d.cs + startLine: 428 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1159,13 +1142,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x4d.Mult(OpenTK.Mathematics.Matrix2x4d, double) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Mult - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x4d.cs - startLine: 413 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x4d.cs + startLine: 446 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1210,13 +1189,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x4d.Mult(in OpenTK.Mathematics.Matrix2x4d, in OpenTK.Mathematics.Matrix4x2, out OpenTK.Mathematics.Matrix2d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Mult - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x4d.cs - startLine: 426 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x4d.cs + startLine: 459 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1251,13 +1226,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x4d.Mult(OpenTK.Mathematics.Matrix2x4d, OpenTK.Mathematics.Matrix4x2) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Mult - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x4d.cs - startLine: 457 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x4d.cs + startLine: 490 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1299,13 +1270,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x4d.Mult(in OpenTK.Mathematics.Matrix2x4d, in OpenTK.Mathematics.Matrix4x3, out OpenTK.Mathematics.Matrix2x3d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Mult - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x4d.cs - startLine: 470 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x4d.cs + startLine: 503 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1340,13 +1307,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x4d.Mult(OpenTK.Mathematics.Matrix2x4d, OpenTK.Mathematics.Matrix4x3) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Mult - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x4d.cs - startLine: 507 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x4d.cs + startLine: 540 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1388,13 +1351,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x4d.Mult(in OpenTK.Mathematics.Matrix2x4d, in OpenTK.Mathematics.Matrix4, out OpenTK.Mathematics.Matrix2x4d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Mult - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x4d.cs - startLine: 520 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x4d.cs + startLine: 553 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1429,13 +1388,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x4d.Mult(OpenTK.Mathematics.Matrix2x4d, OpenTK.Mathematics.Matrix4) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Mult - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x4d.cs - startLine: 563 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x4d.cs + startLine: 596 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1477,13 +1432,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x4d.Add(in OpenTK.Mathematics.Matrix2x4d, in OpenTK.Mathematics.Matrix2x4d, out OpenTK.Mathematics.Matrix2x4d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Add - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x4d.cs - startLine: 576 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x4d.cs + startLine: 609 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1518,13 +1469,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x4d.Add(OpenTK.Mathematics.Matrix2x4d, OpenTK.Mathematics.Matrix2x4d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Add - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x4d.cs - startLine: 594 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x4d.cs + startLine: 627 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1566,13 +1513,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x4d.Subtract(in OpenTK.Mathematics.Matrix2x4d, in OpenTK.Mathematics.Matrix2x4d, out OpenTK.Mathematics.Matrix2x4d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Subtract - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x4d.cs - startLine: 607 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x4d.cs + startLine: 640 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1607,13 +1550,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x4d.Subtract(OpenTK.Mathematics.Matrix2x4d, OpenTK.Mathematics.Matrix2x4d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Subtract - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x4d.cs - startLine: 625 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x4d.cs + startLine: 658 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1655,13 +1594,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x4d.Transpose(in OpenTK.Mathematics.Matrix2x4d, out OpenTK.Mathematics.Matrix4x2d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Transpose - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x4d.cs - startLine: 637 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x4d.cs + startLine: 670 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1693,13 +1628,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x4d.Transpose(OpenTK.Mathematics.Matrix2x4d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Transpose - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x4d.cs - startLine: 654 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x4d.cs + startLine: 687 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1726,6 +1657,94 @@ items: - type: System.Diagnostics.Contracts.PureAttribute ctor: System.Diagnostics.Contracts.PureAttribute.#ctor arguments: [] +- uid: OpenTK.Mathematics.Matrix2x4d.Swizzle(OpenTK.Mathematics.Matrix2x4d,System.Int32,System.Int32) + commentId: M:OpenTK.Mathematics.Matrix2x4d.Swizzle(OpenTK.Mathematics.Matrix2x4d,System.Int32,System.Int32) + id: Swizzle(OpenTK.Mathematics.Matrix2x4d,System.Int32,System.Int32) + parent: OpenTK.Mathematics.Matrix2x4d + langs: + - csharp + - vb + name: Swizzle(Matrix2x4d, int, int) + nameWithType: Matrix2x4d.Swizzle(Matrix2x4d, int, int) + fullName: OpenTK.Mathematics.Matrix2x4d.Swizzle(OpenTK.Mathematics.Matrix2x4d, int, int) + type: Method + source: + id: Swizzle + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x4d.cs + startLine: 702 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: Swizzles a matrix, i.e. switches rows of the matrix. + example: [] + syntax: + content: public static Matrix2x4d Swizzle(Matrix2x4d mat, int rowForRow0, int rowForRow1) + parameters: + - id: mat + type: OpenTK.Mathematics.Matrix2x4d + description: The matrix to swizzle. + - id: rowForRow0 + type: System.Int32 + description: Which row to place in . + - id: rowForRow1 + type: System.Int32 + description: Which row to place in . + return: + type: OpenTK.Mathematics.Matrix2x4d + description: The swizzled matrix. + content.vb: Public Shared Function Swizzle(mat As Matrix2x4d, rowForRow0 As Integer, rowForRow1 As Integer) As Matrix2x4d + overload: OpenTK.Mathematics.Matrix2x4d.Swizzle* + exceptions: + - type: System.IndexOutOfRangeException + commentId: T:System.IndexOutOfRangeException + description: If any of the rows are outside of the range [0, 1]. + nameWithType.vb: Matrix2x4d.Swizzle(Matrix2x4d, Integer, Integer) + fullName.vb: OpenTK.Mathematics.Matrix2x4d.Swizzle(OpenTK.Mathematics.Matrix2x4d, Integer, Integer) + name.vb: Swizzle(Matrix2x4d, Integer, Integer) +- uid: OpenTK.Mathematics.Matrix2x4d.Swizzle(OpenTK.Mathematics.Matrix2x4d@,System.Int32,System.Int32,OpenTK.Mathematics.Matrix2x4d@) + commentId: M:OpenTK.Mathematics.Matrix2x4d.Swizzle(OpenTK.Mathematics.Matrix2x4d@,System.Int32,System.Int32,OpenTK.Mathematics.Matrix2x4d@) + id: Swizzle(OpenTK.Mathematics.Matrix2x4d@,System.Int32,System.Int32,OpenTK.Mathematics.Matrix2x4d@) + parent: OpenTK.Mathematics.Matrix2x4d + langs: + - csharp + - vb + name: Swizzle(in Matrix2x4d, int, int, out Matrix2x4d) + nameWithType: Matrix2x4d.Swizzle(in Matrix2x4d, int, int, out Matrix2x4d) + fullName: OpenTK.Mathematics.Matrix2x4d.Swizzle(in OpenTK.Mathematics.Matrix2x4d, int, int, out OpenTK.Mathematics.Matrix2x4d) + type: Method + source: + id: Swizzle + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x4d.cs + startLine: 716 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: Swizzles a matrix, i.e. switches rows of the matrix. + example: [] + syntax: + content: public static void Swizzle(in Matrix2x4d mat, int rowForRow0, int rowForRow1, out Matrix2x4d result) + parameters: + - id: mat + type: OpenTK.Mathematics.Matrix2x4d + description: The matrix to swizzle. + - id: rowForRow0 + type: System.Int32 + description: Which row to place in . + - id: rowForRow1 + type: System.Int32 + description: Which row to place in . + - id: result + type: OpenTK.Mathematics.Matrix2x4d + description: The swizzled matrix. + content.vb: Public Shared Sub Swizzle(mat As Matrix2x4d, rowForRow0 As Integer, rowForRow1 As Integer, result As Matrix2x4d) + overload: OpenTK.Mathematics.Matrix2x4d.Swizzle* + exceptions: + - type: System.IndexOutOfRangeException + commentId: T:System.IndexOutOfRangeException + description: If any of the rows are outside of the range [0, 1]. + nameWithType.vb: Matrix2x4d.Swizzle(Matrix2x4d, Integer, Integer, Matrix2x4d) + fullName.vb: OpenTK.Mathematics.Matrix2x4d.Swizzle(OpenTK.Mathematics.Matrix2x4d, Integer, Integer, OpenTK.Mathematics.Matrix2x4d) + name.vb: Swizzle(Matrix2x4d, Integer, Integer, Matrix2x4d) - uid: OpenTK.Mathematics.Matrix2x4d.op_Multiply(System.Double,OpenTK.Mathematics.Matrix2x4d) commentId: M:OpenTK.Mathematics.Matrix2x4d.op_Multiply(System.Double,OpenTK.Mathematics.Matrix2x4d) id: op_Multiply(System.Double,OpenTK.Mathematics.Matrix2x4d) @@ -1738,13 +1757,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x4d.operator *(double, OpenTK.Mathematics.Matrix2x4d) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Multiply - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x4d.cs - startLine: 667 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x4d.cs + startLine: 739 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1789,13 +1804,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x4d.operator *(OpenTK.Mathematics.Matrix2x4d, double) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Multiply - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x4d.cs - startLine: 679 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x4d.cs + startLine: 751 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1840,13 +1851,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x4d.operator *(OpenTK.Mathematics.Matrix2x4d, OpenTK.Mathematics.Matrix4x2) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Multiply - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x4d.cs - startLine: 691 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x4d.cs + startLine: 763 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1891,13 +1898,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x4d.operator *(OpenTK.Mathematics.Matrix2x4d, OpenTK.Mathematics.Matrix4x3) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Multiply - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x4d.cs - startLine: 703 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x4d.cs + startLine: 775 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1942,13 +1945,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x4d.operator *(OpenTK.Mathematics.Matrix2x4d, OpenTK.Mathematics.Matrix4) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Multiply - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x4d.cs - startLine: 715 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x4d.cs + startLine: 787 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1993,13 +1992,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x4d.operator +(OpenTK.Mathematics.Matrix2x4d, OpenTK.Mathematics.Matrix2x4d) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Addition - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x4d.cs - startLine: 727 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x4d.cs + startLine: 799 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2044,13 +2039,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x4d.operator -(OpenTK.Mathematics.Matrix2x4d, OpenTK.Mathematics.Matrix2x4d) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Subtraction - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x4d.cs - startLine: 739 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x4d.cs + startLine: 811 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2095,13 +2086,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x4d.operator ==(OpenTK.Mathematics.Matrix2x4d, OpenTK.Mathematics.Matrix2x4d) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Equality - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x4d.cs - startLine: 751 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x4d.cs + startLine: 823 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2146,13 +2133,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x4d.operator !=(OpenTK.Mathematics.Matrix2x4d, OpenTK.Mathematics.Matrix2x4d) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Inequality - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x4d.cs - startLine: 763 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x4d.cs + startLine: 835 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2197,20 +2180,16 @@ items: fullName: OpenTK.Mathematics.Matrix2x4d.ToString() type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x4d.cs - startLine: 773 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x4d.cs + startLine: 845 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Returns a System.String that represents the current Matrix4. example: [] syntax: - content: public override string ToString() + content: public override readonly string ToString() return: type: System.String description: The string representation of the matrix. @@ -2229,20 +2208,16 @@ items: fullName: OpenTK.Mathematics.Matrix2x4d.ToString(string) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x4d.cs - startLine: 779 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x4d.cs + startLine: 851 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Formats the value of the current instance using the specified format. example: [] syntax: - content: public string ToString(string format) + content: public readonly string ToString(string format) parameters: - id: format type: System.String @@ -2272,20 +2247,16 @@ items: fullName: OpenTK.Mathematics.Matrix2x4d.ToString(System.IFormatProvider) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x4d.cs - startLine: 785 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x4d.cs + startLine: 857 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Formats the value of the current instance using the specified format. example: [] syntax: - content: public string ToString(IFormatProvider formatProvider) + content: public readonly string ToString(IFormatProvider formatProvider) parameters: - id: formatProvider type: System.IFormatProvider @@ -2312,20 +2283,16 @@ items: fullName: OpenTK.Mathematics.Matrix2x4d.ToString(string, System.IFormatProvider) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x4d.cs - startLine: 791 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x4d.cs + startLine: 863 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Formats the value of the current instance using the specified format. example: [] syntax: - content: public string ToString(string format, IFormatProvider formatProvider) + content: public readonly string ToString(string format, IFormatProvider formatProvider) parameters: - id: format type: System.String @@ -2365,20 +2332,16 @@ items: fullName: OpenTK.Mathematics.Matrix2x4d.GetHashCode() type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetHashCode - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x4d.cs - startLine: 802 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x4d.cs + startLine: 874 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Returns the hashcode for this instance. example: [] syntax: - content: public override int GetHashCode() + content: public override readonly int GetHashCode() return: type: System.Int32 description: A System.Int32 containing the unique hashcode for this instance. @@ -2397,13 +2360,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x4d.Equals(object) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Equals - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x4d.cs - startLine: 812 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x4d.cs + startLine: 884 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2413,7 +2372,7 @@ items: content: >- [Pure] - public override bool Equals(object obj) + public override readonly bool Equals(object obj) parameters: - id: obj type: System.Object @@ -2446,13 +2405,9 @@ items: fullName: OpenTK.Mathematics.Matrix2x4d.Equals(OpenTK.Mathematics.Matrix2x4d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix2x4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Equals - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix2x4d.cs - startLine: 823 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix2x4d.cs + startLine: 895 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2462,7 +2417,7 @@ items: content: >- [Pure] - public bool Equals(Matrix2x4d other) + public readonly bool Equals(Matrix2x4d other) parameters: - id: other type: OpenTK.Mathematics.Matrix2x4d @@ -2850,6 +2805,43 @@ references: nameWithType.vb: Integer fullName.vb: Integer name.vb: Integer +- uid: OpenTK.Mathematics.Matrix2x4d.Transposed* + commentId: Overload:OpenTK.Mathematics.Matrix2x4d.Transposed + href: OpenTK.Mathematics.Matrix2x4d.html#OpenTK_Mathematics_Matrix2x4d_Transposed + name: Transposed + nameWithType: Matrix2x4d.Transposed + fullName: OpenTK.Mathematics.Matrix2x4d.Transposed +- uid: OpenTK.Mathematics.Matrix4x2d + commentId: T:OpenTK.Mathematics.Matrix4x2d + parent: OpenTK.Mathematics + href: OpenTK.Mathematics.Matrix4x2d.html + name: Matrix4x2d + nameWithType: Matrix4x2d + fullName: OpenTK.Mathematics.Matrix4x2d +- uid: OpenTK.Mathematics.Matrix2x4d.Row0 + commentId: F:OpenTK.Mathematics.Matrix2x4d.Row0 + href: OpenTK.Mathematics.Matrix2x4d.html#OpenTK_Mathematics_Matrix2x4d_Row0 + name: Row0 + nameWithType: Matrix2x4d.Row0 + fullName: OpenTK.Mathematics.Matrix2x4d.Row0 +- uid: OpenTK.Mathematics.Matrix2x4d.Row1 + commentId: F:OpenTK.Mathematics.Matrix2x4d.Row1 + href: OpenTK.Mathematics.Matrix2x4d.html#OpenTK_Mathematics_Matrix2x4d_Row1 + name: Row1 + nameWithType: Matrix2x4d.Row1 + fullName: OpenTK.Mathematics.Matrix2x4d.Row1 +- uid: OpenTK.Mathematics.Matrix2x4d.Swizzle* + commentId: Overload:OpenTK.Mathematics.Matrix2x4d.Swizzle + href: OpenTK.Mathematics.Matrix2x4d.html#OpenTK_Mathematics_Matrix2x4d_Swizzle_System_Int32_System_Int32_ + name: Swizzle + nameWithType: Matrix2x4d.Swizzle + fullName: OpenTK.Mathematics.Matrix2x4d.Swizzle +- uid: OpenTK.Mathematics.Matrix2x4d.Swizzled* + commentId: Overload:OpenTK.Mathematics.Matrix2x4d.Swizzled + href: OpenTK.Mathematics.Matrix2x4d.html#OpenTK_Mathematics_Matrix2x4d_Swizzled_System_Int32_System_Int32_ + name: Swizzled + nameWithType: Matrix2x4d.Swizzled + fullName: OpenTK.Mathematics.Matrix2x4d.Swizzled - uid: OpenTK.Mathematics.Matrix2x4d.CreateRotation* commentId: Overload:OpenTK.Mathematics.Matrix2x4d.CreateRotation href: OpenTK.Mathematics.Matrix2x4d.html#OpenTK_Mathematics_Matrix2x4d_CreateRotation_System_Double_OpenTK_Mathematics_Matrix2x4d__ @@ -2921,13 +2913,13 @@ references: name: Transpose nameWithType: Matrix2x4d.Transpose fullName: OpenTK.Mathematics.Matrix2x4d.Transpose -- uid: OpenTK.Mathematics.Matrix4x2d - commentId: T:OpenTK.Mathematics.Matrix4x2d - parent: OpenTK.Mathematics - href: OpenTK.Mathematics.Matrix4x2d.html - name: Matrix4x2d - nameWithType: Matrix4x2d - fullName: OpenTK.Mathematics.Matrix4x2d +- uid: System.IndexOutOfRangeException + commentId: T:System.IndexOutOfRangeException + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.indexoutofrangeexception + name: IndexOutOfRangeException + nameWithType: IndexOutOfRangeException + fullName: System.IndexOutOfRangeException - uid: OpenTK.Mathematics.Matrix2x4d.op_Multiply* commentId: Overload:OpenTK.Mathematics.Matrix2x4d.op_Multiply href: OpenTK.Mathematics.Matrix2x4d.html#OpenTK_Mathematics_Matrix2x4d_op_Multiply_System_Double_OpenTK_Mathematics_Matrix2x4d_ diff --git a/api/OpenTK.Mathematics.Matrix3.yml b/api/OpenTK.Mathematics.Matrix3.yml index fb2e7770..41215c94 100644 --- a/api/OpenTK.Mathematics.Matrix3.yml +++ b/api/OpenTK.Mathematics.Matrix3.yml @@ -31,6 +31,8 @@ items: - OpenTK.Mathematics.Matrix3.CreateScale(System.Single,OpenTK.Mathematics.Matrix3@) - OpenTK.Mathematics.Matrix3.CreateScale(System.Single,System.Single,System.Single) - OpenTK.Mathematics.Matrix3.CreateScale(System.Single,System.Single,System.Single,OpenTK.Mathematics.Matrix3@) + - OpenTK.Mathematics.Matrix3.CreateSwizzle(System.Int32,System.Int32,System.Int32) + - OpenTK.Mathematics.Matrix3.CreateSwizzle(System.Int32,System.Int32,System.Int32,OpenTK.Mathematics.Matrix3@) - OpenTK.Mathematics.Matrix3.Determinant - OpenTK.Mathematics.Matrix3.Diagonal - OpenTK.Mathematics.Matrix3.Equals(OpenTK.Mathematics.Matrix3) @@ -60,6 +62,10 @@ items: - OpenTK.Mathematics.Matrix3.Row0 - OpenTK.Mathematics.Matrix3.Row1 - OpenTK.Mathematics.Matrix3.Row2 + - OpenTK.Mathematics.Matrix3.Swizzle(OpenTK.Mathematics.Matrix3,System.Int32,System.Int32,System.Int32) + - OpenTK.Mathematics.Matrix3.Swizzle(OpenTK.Mathematics.Matrix3@,System.Int32,System.Int32,System.Int32,OpenTK.Mathematics.Matrix3@) + - OpenTK.Mathematics.Matrix3.Swizzle(System.Int32,System.Int32,System.Int32) + - OpenTK.Mathematics.Matrix3.Swizzled(System.Int32,System.Int32,System.Int32) - OpenTK.Mathematics.Matrix3.ToString - OpenTK.Mathematics.Matrix3.ToString(System.IFormatProvider) - OpenTK.Mathematics.Matrix3.ToString(System.String) @@ -68,6 +74,7 @@ items: - OpenTK.Mathematics.Matrix3.Transpose - OpenTK.Mathematics.Matrix3.Transpose(OpenTK.Mathematics.Matrix3) - OpenTK.Mathematics.Matrix3.Transpose(OpenTK.Mathematics.Matrix3@,OpenTK.Mathematics.Matrix3@) + - OpenTK.Mathematics.Matrix3.Transposed - OpenTK.Mathematics.Matrix3.Zero - OpenTK.Mathematics.Matrix3.op_Equality(OpenTK.Mathematics.Matrix3,OpenTK.Mathematics.Matrix3) - OpenTK.Mathematics.Matrix3.op_Inequality(OpenTK.Mathematics.Matrix3,OpenTK.Mathematics.Matrix3) @@ -80,13 +87,9 @@ items: fullName: OpenTK.Mathematics.Matrix3 type: Struct source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Matrix3 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3.cs - startLine: 32 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3.cs + startLine: 33 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -124,13 +127,9 @@ items: fullName: OpenTK.Mathematics.Matrix3.Row0 type: Field source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Row0 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3.cs - startLine: 39 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3.cs + startLine: 40 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -153,13 +152,9 @@ items: fullName: OpenTK.Mathematics.Matrix3.Row1 type: Field source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Row1 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3.cs - startLine: 44 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3.cs + startLine: 45 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -182,13 +177,9 @@ items: fullName: OpenTK.Mathematics.Matrix3.Row2 type: Field source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Row2 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3.cs - startLine: 49 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3.cs + startLine: 50 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -211,13 +202,9 @@ items: fullName: OpenTK.Mathematics.Matrix3.Identity type: Field source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Identity - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3.cs - startLine: 54 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3.cs + startLine: 55 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -240,13 +227,9 @@ items: fullName: OpenTK.Mathematics.Matrix3.Zero type: Field source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Zero - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3.cs - startLine: 59 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3.cs + startLine: 60 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -269,13 +252,9 @@ items: fullName: OpenTK.Mathematics.Matrix3.Matrix3(OpenTK.Mathematics.Vector3, OpenTK.Mathematics.Vector3, OpenTK.Mathematics.Vector3) type: Constructor source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3.cs - startLine: 67 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3.cs + startLine: 68 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -310,13 +289,9 @@ items: fullName: OpenTK.Mathematics.Matrix3.Matrix3(float, float, float, float, float, float, float, float, float) type: Constructor source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3.cs - startLine: 86 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3.cs + startLine: 87 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -369,13 +344,9 @@ items: fullName: OpenTK.Mathematics.Matrix3.Matrix3(OpenTK.Mathematics.Matrix4) type: Constructor source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3.cs - startLine: 103 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3.cs + startLine: 104 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -404,20 +375,16 @@ items: fullName: OpenTK.Mathematics.Matrix3.Determinant type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Determinant - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3.cs - startLine: 113 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3.cs + startLine: 114 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets the determinant of this matrix. example: [] syntax: - content: public float Determinant { get; } + content: public readonly float Determinant { get; } parameters: [] return: type: System.Single @@ -435,24 +402,20 @@ items: fullName: OpenTK.Mathematics.Matrix3.Column0 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Column0 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3.cs - startLine: 135 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3.cs + startLine: 136 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets the first column of this matrix. example: [] syntax: - content: public Vector3 Column0 { get; } + content: public Vector3 Column0 { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector3 - content.vb: Public ReadOnly Property Column0 As Vector3 + content.vb: Public Property Column0 As Vector3 overload: OpenTK.Mathematics.Matrix3.Column0* - uid: OpenTK.Mathematics.Matrix3.Column1 commentId: P:OpenTK.Mathematics.Matrix3.Column1 @@ -466,24 +429,20 @@ items: fullName: OpenTK.Mathematics.Matrix3.Column1 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Column1 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3.cs - startLine: 140 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3.cs + startLine: 150 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets the second column of this matrix. example: [] syntax: - content: public Vector3 Column1 { get; } + content: public Vector3 Column1 { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector3 - content.vb: Public ReadOnly Property Column1 As Vector3 + content.vb: Public Property Column1 As Vector3 overload: OpenTK.Mathematics.Matrix3.Column1* - uid: OpenTK.Mathematics.Matrix3.Column2 commentId: P:OpenTK.Mathematics.Matrix3.Column2 @@ -497,24 +456,20 @@ items: fullName: OpenTK.Mathematics.Matrix3.Column2 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Column2 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3.cs - startLine: 145 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3.cs + startLine: 164 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets the third column of this matrix. example: [] syntax: - content: public Vector3 Column2 { get; } + content: public Vector3 Column2 { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector3 - content.vb: Public ReadOnly Property Column2 As Vector3 + content.vb: Public Property Column2 As Vector3 overload: OpenTK.Mathematics.Matrix3.Column2* - uid: OpenTK.Mathematics.Matrix3.M11 commentId: P:OpenTK.Mathematics.Matrix3.M11 @@ -528,20 +483,16 @@ items: fullName: OpenTK.Mathematics.Matrix3.M11 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M11 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3.cs - startLine: 150 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3.cs + startLine: 178 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 1, column 1 of this instance. example: [] syntax: - content: public float M11 { get; set; } + content: public float M11 { readonly get; set; } parameters: [] return: type: System.Single @@ -559,20 +510,16 @@ items: fullName: OpenTK.Mathematics.Matrix3.M12 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M12 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3.cs - startLine: 159 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3.cs + startLine: 187 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 1, column 2 of this instance. example: [] syntax: - content: public float M12 { get; set; } + content: public float M12 { readonly get; set; } parameters: [] return: type: System.Single @@ -590,20 +537,16 @@ items: fullName: OpenTK.Mathematics.Matrix3.M13 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M13 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3.cs - startLine: 168 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3.cs + startLine: 196 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 1, column 3 of this instance. example: [] syntax: - content: public float M13 { get; set; } + content: public float M13 { readonly get; set; } parameters: [] return: type: System.Single @@ -621,20 +564,16 @@ items: fullName: OpenTK.Mathematics.Matrix3.M21 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M21 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3.cs - startLine: 177 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3.cs + startLine: 205 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 2, column 1 of this instance. example: [] syntax: - content: public float M21 { get; set; } + content: public float M21 { readonly get; set; } parameters: [] return: type: System.Single @@ -652,20 +591,16 @@ items: fullName: OpenTK.Mathematics.Matrix3.M22 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M22 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3.cs - startLine: 186 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3.cs + startLine: 214 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 2, column 2 of this instance. example: [] syntax: - content: public float M22 { get; set; } + content: public float M22 { readonly get; set; } parameters: [] return: type: System.Single @@ -683,20 +618,16 @@ items: fullName: OpenTK.Mathematics.Matrix3.M23 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M23 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3.cs - startLine: 195 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3.cs + startLine: 223 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 2, column 3 of this instance. example: [] syntax: - content: public float M23 { get; set; } + content: public float M23 { readonly get; set; } parameters: [] return: type: System.Single @@ -714,20 +645,16 @@ items: fullName: OpenTK.Mathematics.Matrix3.M31 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M31 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3.cs - startLine: 204 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3.cs + startLine: 232 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 3, column 1 of this instance. example: [] syntax: - content: public float M31 { get; set; } + content: public float M31 { readonly get; set; } parameters: [] return: type: System.Single @@ -745,20 +672,16 @@ items: fullName: OpenTK.Mathematics.Matrix3.M32 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M32 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3.cs - startLine: 213 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3.cs + startLine: 241 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 3, column 2 of this instance. example: [] syntax: - content: public float M32 { get; set; } + content: public float M32 { readonly get; set; } parameters: [] return: type: System.Single @@ -776,20 +699,16 @@ items: fullName: OpenTK.Mathematics.Matrix3.M33 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M33 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3.cs - startLine: 222 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3.cs + startLine: 250 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 3, column 3 of this instance. example: [] syntax: - content: public float M33 { get; set; } + content: public float M33 { readonly get; set; } parameters: [] return: type: System.Single @@ -807,20 +726,16 @@ items: fullName: OpenTK.Mathematics.Matrix3.Diagonal type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Diagonal - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3.cs - startLine: 231 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3.cs + startLine: 259 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the values along the main diagonal of the matrix. example: [] syntax: - content: public Vector3 Diagonal { get; set; } + content: public Vector3 Diagonal { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector3 @@ -838,20 +753,16 @@ items: fullName: OpenTK.Mathematics.Matrix3.Trace type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Trace - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3.cs - startLine: 245 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3.cs + startLine: 273 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets the trace of the matrix, the sum of the values along the diagonal. example: [] syntax: - content: public float Trace { get; } + content: public readonly float Trace { get; } parameters: [] return: type: System.Single @@ -869,20 +780,16 @@ items: fullName: OpenTK.Mathematics.Matrix3.this[int, int] type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: this[] - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3.cs - startLine: 253 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3.cs + startLine: 281 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at a specified row and column. example: [] syntax: - content: public float this[int rowIndex, int columnIndex] { get; set; } + content: public float this[int rowIndex, int columnIndex] { readonly get; set; } parameters: - id: rowIndex type: System.Int32 @@ -910,13 +817,9 @@ items: fullName: OpenTK.Mathematics.Matrix3.Invert() type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Invert - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3.cs - startLine: 301 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3.cs + startLine: 329 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -926,6 +829,37 @@ items: content: public void Invert() content.vb: Public Sub Invert() overload: OpenTK.Mathematics.Matrix3.Invert* +- uid: OpenTK.Mathematics.Matrix3.Inverted + commentId: M:OpenTK.Mathematics.Matrix3.Inverted + id: Inverted + parent: OpenTK.Mathematics.Matrix3 + langs: + - csharp + - vb + name: Inverted() + nameWithType: Matrix3.Inverted() + fullName: OpenTK.Mathematics.Matrix3.Inverted() + type: Method + source: + id: Inverted + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3.cs + startLine: 342 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: Returns an inverted copy of this instance. + remarks: >- + If the matrix is singular this function does not throw an exception, + + instead it returns the original un-inverted matrix. + example: [] + syntax: + content: public readonly Matrix3 Inverted() + return: + type: OpenTK.Mathematics.Matrix3 + description: The inverted copy. + content.vb: Public Function Inverted() As Matrix3 + overload: OpenTK.Mathematics.Matrix3.Inverted* - uid: OpenTK.Mathematics.Matrix3.Transpose commentId: M:OpenTK.Mathematics.Matrix3.Transpose id: Transpose @@ -938,13 +872,9 @@ items: fullName: OpenTK.Mathematics.Matrix3.Transpose() type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Transpose - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3.cs - startLine: 309 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3.cs + startLine: 359 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -954,37 +884,33 @@ items: content: public void Transpose() content.vb: Public Sub Transpose() overload: OpenTK.Mathematics.Matrix3.Transpose* -- uid: OpenTK.Mathematics.Matrix3.Normalized - commentId: M:OpenTK.Mathematics.Matrix3.Normalized - id: Normalized +- uid: OpenTK.Mathematics.Matrix3.Transposed + commentId: M:OpenTK.Mathematics.Matrix3.Transposed + id: Transposed parent: OpenTK.Mathematics.Matrix3 langs: - csharp - vb - name: Normalized() - nameWithType: Matrix3.Normalized() - fullName: OpenTK.Mathematics.Matrix3.Normalized() + name: Transposed() + nameWithType: Matrix3.Transposed() + fullName: OpenTK.Mathematics.Matrix3.Transposed() type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Normalized - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3.cs - startLine: 318 + id: Transposed + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3.cs + startLine: 368 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics - summary: Returns a normalized copy of this instance. + summary: Returns a transposed copy of this instance. example: [] syntax: - content: public Matrix3 Normalized() + content: public readonly Matrix3 Transposed() return: type: OpenTK.Mathematics.Matrix3 - description: The normalized copy. - content.vb: Public Function Normalized() As Matrix3 - overload: OpenTK.Mathematics.Matrix3.Normalized* + description: The transposed copy. + content.vb: Public Function Transposed() As Matrix3 + overload: OpenTK.Mathematics.Matrix3.Transposed* - uid: OpenTK.Mathematics.Matrix3.Normalize commentId: M:OpenTK.Mathematics.Matrix3.Normalize id: Normalize @@ -997,13 +923,9 @@ items: fullName: OpenTK.Mathematics.Matrix3.Normalize() type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Normalize - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3.cs - startLine: 328 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3.cs + startLine: 378 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1013,37 +935,110 @@ items: content: public void Normalize() content.vb: Public Sub Normalize() overload: OpenTK.Mathematics.Matrix3.Normalize* -- uid: OpenTK.Mathematics.Matrix3.Inverted - commentId: M:OpenTK.Mathematics.Matrix3.Inverted - id: Inverted +- uid: OpenTK.Mathematics.Matrix3.Normalized + commentId: M:OpenTK.Mathematics.Matrix3.Normalized + id: Normalized parent: OpenTK.Mathematics.Matrix3 langs: - csharp - vb - name: Inverted() - nameWithType: Matrix3.Inverted() - fullName: OpenTK.Mathematics.Matrix3.Inverted() + name: Normalized() + nameWithType: Matrix3.Normalized() + fullName: OpenTK.Mathematics.Matrix3.Normalized() type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Inverted - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3.cs - startLine: 340 + id: Normalized + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3.cs + startLine: 390 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics - summary: Returns an inverted copy of this instance. + summary: Returns a normalized copy of this instance. example: [] syntax: - content: public Matrix3 Inverted() + content: public readonly Matrix3 Normalized() return: type: OpenTK.Mathematics.Matrix3 - description: The inverted copy. - content.vb: Public Function Inverted() As Matrix3 - overload: OpenTK.Mathematics.Matrix3.Inverted* + description: The normalized copy. + content.vb: Public Function Normalized() As Matrix3 + overload: OpenTK.Mathematics.Matrix3.Normalized* +- uid: OpenTK.Mathematics.Matrix3.Swizzle(System.Int32,System.Int32,System.Int32) + commentId: M:OpenTK.Mathematics.Matrix3.Swizzle(System.Int32,System.Int32,System.Int32) + id: Swizzle(System.Int32,System.Int32,System.Int32) + parent: OpenTK.Mathematics.Matrix3 + langs: + - csharp + - vb + name: Swizzle(int, int, int) + nameWithType: Matrix3.Swizzle(int, int, int) + fullName: OpenTK.Mathematics.Matrix3.Swizzle(int, int, int) + type: Method + source: + id: Swizzle + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3.cs + startLine: 403 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: Swizzles this instance. Switches places of the rows of the matrix. + example: [] + syntax: + content: public void Swizzle(int rowForRow0, int rowForRow1, int rowForRow2) + parameters: + - id: rowForRow0 + type: System.Int32 + description: Which row to place in . + - id: rowForRow1 + type: System.Int32 + description: Which row to place in . + - id: rowForRow2 + type: System.Int32 + description: Which row to place in . + content.vb: Public Sub Swizzle(rowForRow0 As Integer, rowForRow1 As Integer, rowForRow2 As Integer) + overload: OpenTK.Mathematics.Matrix3.Swizzle* + nameWithType.vb: Matrix3.Swizzle(Integer, Integer, Integer) + fullName.vb: OpenTK.Mathematics.Matrix3.Swizzle(Integer, Integer, Integer) + name.vb: Swizzle(Integer, Integer, Integer) +- uid: OpenTK.Mathematics.Matrix3.Swizzled(System.Int32,System.Int32,System.Int32) + commentId: M:OpenTK.Mathematics.Matrix3.Swizzled(System.Int32,System.Int32,System.Int32) + id: Swizzled(System.Int32,System.Int32,System.Int32) + parent: OpenTK.Mathematics.Matrix3 + langs: + - csharp + - vb + name: Swizzled(int, int, int) + nameWithType: Matrix3.Swizzled(int, int, int) + fullName: OpenTK.Mathematics.Matrix3.Swizzled(int, int, int) + type: Method + source: + id: Swizzled + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3.cs + startLine: 415 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: Returns a swizzled copy of this instance. + example: [] + syntax: + content: public readonly Matrix3 Swizzled(int rowForRow0, int rowForRow1, int rowForRow2) + parameters: + - id: rowForRow0 + type: System.Int32 + description: Which row to place in . + - id: rowForRow1 + type: System.Int32 + description: Which row to place in . + - id: rowForRow2 + type: System.Int32 + description: Which row to place in . + return: + type: OpenTK.Mathematics.Matrix3 + description: The swizzled copy. + content.vb: Public Function Swizzled(rowForRow0 As Integer, rowForRow1 As Integer, rowForRow2 As Integer) As Matrix3 + overload: OpenTK.Mathematics.Matrix3.Swizzled* + nameWithType.vb: Matrix3.Swizzled(Integer, Integer, Integer) + fullName.vb: OpenTK.Mathematics.Matrix3.Swizzled(Integer, Integer, Integer) + name.vb: Swizzled(Integer, Integer, Integer) - uid: OpenTK.Mathematics.Matrix3.ClearScale commentId: M:OpenTK.Mathematics.Matrix3.ClearScale id: ClearScale @@ -1056,20 +1051,16 @@ items: fullName: OpenTK.Mathematics.Matrix3.ClearScale() type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ClearScale - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3.cs - startLine: 355 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3.cs + startLine: 426 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Returns a copy of this Matrix3 without scale. example: [] syntax: - content: public Matrix3 ClearScale() + content: public readonly Matrix3 ClearScale() return: type: OpenTK.Mathematics.Matrix3 description: The matrix without scaling. @@ -1087,20 +1078,16 @@ items: fullName: OpenTK.Mathematics.Matrix3.ClearRotation() type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ClearRotation - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3.cs - startLine: 368 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3.cs + startLine: 439 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Returns a copy of this Matrix3 without rotation. example: [] syntax: - content: public Matrix3 ClearRotation() + content: public readonly Matrix3 ClearRotation() return: type: OpenTK.Mathematics.Matrix3 description: The matrix without rotation. @@ -1118,20 +1105,16 @@ items: fullName: OpenTK.Mathematics.Matrix3.ExtractScale() type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ExtractScale - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3.cs - startLine: 381 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3.cs + startLine: 452 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Returns the scale component of this instance. example: [] syntax: - content: public Vector3 ExtractScale() + content: public readonly Vector3 ExtractScale() return: type: OpenTK.Mathematics.Vector3 description: The scale components. @@ -1149,20 +1132,16 @@ items: fullName: OpenTK.Mathematics.Matrix3.ExtractRotation(bool) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ExtractRotation - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3.cs - startLine: 394 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3.cs + startLine: 465 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Returns the rotation component of this instance. Quite slow. example: [] syntax: - content: public Quaternion ExtractRotation(bool rowNormalize = true) + content: public readonly Quaternion ExtractRotation(bool rowNormalize = true) parameters: - id: rowNormalize type: System.Boolean @@ -1190,13 +1169,9 @@ items: fullName: OpenTK.Mathematics.Matrix3.CreateFromAxisAngle(OpenTK.Mathematics.Vector3, float, out OpenTK.Mathematics.Matrix3) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateFromAxisAngle - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3.cs - startLine: 462 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3.cs + startLine: 533 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1231,13 +1206,9 @@ items: fullName: OpenTK.Mathematics.Matrix3.CreateFromAxisAngle(OpenTK.Mathematics.Vector3, float) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateFromAxisAngle - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3.cs - startLine: 502 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3.cs + startLine: 573 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1282,13 +1253,9 @@ items: fullName: OpenTK.Mathematics.Matrix3.CreateFromQuaternion(in OpenTK.Mathematics.Quaternion, out OpenTK.Mathematics.Matrix3) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateFromQuaternion - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3.cs - startLine: 514 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3.cs + startLine: 585 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1320,13 +1287,9 @@ items: fullName: OpenTK.Mathematics.Matrix3.CreateFromQuaternion(OpenTK.Mathematics.Quaternion) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateFromQuaternion - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3.cs - startLine: 553 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3.cs + startLine: 624 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1365,13 +1328,9 @@ items: fullName: OpenTK.Mathematics.Matrix3.CreateRotationX(float, out OpenTK.Mathematics.Matrix3) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateRotationX - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3.cs - startLine: 565 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3.cs + startLine: 636 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1403,13 +1362,9 @@ items: fullName: OpenTK.Mathematics.Matrix3.CreateRotationX(float) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateRotationX - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3.cs - startLine: 582 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3.cs + startLine: 653 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1451,13 +1406,9 @@ items: fullName: OpenTK.Mathematics.Matrix3.CreateRotationY(float, out OpenTK.Mathematics.Matrix3) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateRotationY - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3.cs - startLine: 594 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3.cs + startLine: 665 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1489,13 +1440,9 @@ items: fullName: OpenTK.Mathematics.Matrix3.CreateRotationY(float) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateRotationY - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3.cs - startLine: 611 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3.cs + startLine: 682 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1537,13 +1484,9 @@ items: fullName: OpenTK.Mathematics.Matrix3.CreateRotationZ(float, out OpenTK.Mathematics.Matrix3) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateRotationZ - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3.cs - startLine: 623 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3.cs + startLine: 694 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1575,13 +1518,9 @@ items: fullName: OpenTK.Mathematics.Matrix3.CreateRotationZ(float) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateRotationZ - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3.cs - startLine: 640 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3.cs + startLine: 711 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1623,13 +1562,9 @@ items: fullName: OpenTK.Mathematics.Matrix3.CreateScale(float) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateScale - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3.cs - startLine: 652 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3.cs + startLine: 723 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1671,13 +1606,9 @@ items: fullName: OpenTK.Mathematics.Matrix3.CreateScale(OpenTK.Mathematics.Vector3) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateScale - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3.cs - startLine: 664 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3.cs + startLine: 735 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1716,13 +1647,9 @@ items: fullName: OpenTK.Mathematics.Matrix3.CreateScale(float, float, float) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateScale - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3.cs - startLine: 678 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3.cs + startLine: 749 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1770,13 +1697,9 @@ items: fullName: OpenTK.Mathematics.Matrix3.CreateScale(float, out OpenTK.Mathematics.Matrix3) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateScale - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3.cs - startLine: 690 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3.cs + startLine: 761 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1808,13 +1731,9 @@ items: fullName: OpenTK.Mathematics.Matrix3.CreateScale(in OpenTK.Mathematics.Vector3, out OpenTK.Mathematics.Matrix3) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateScale - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3.cs - startLine: 703 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3.cs + startLine: 774 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1846,13 +1765,9 @@ items: fullName: OpenTK.Mathematics.Matrix3.CreateScale(float, float, float, out OpenTK.Mathematics.Matrix3) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateScale - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3.cs - startLine: 718 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3.cs + startLine: 789 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1878,6 +1793,88 @@ items: nameWithType.vb: Matrix3.CreateScale(Single, Single, Single, Matrix3) fullName.vb: OpenTK.Mathematics.Matrix3.CreateScale(Single, Single, Single, OpenTK.Mathematics.Matrix3) name.vb: CreateScale(Single, Single, Single, Matrix3) +- uid: OpenTK.Mathematics.Matrix3.CreateSwizzle(System.Int32,System.Int32,System.Int32) + commentId: M:OpenTK.Mathematics.Matrix3.CreateSwizzle(System.Int32,System.Int32,System.Int32) + id: CreateSwizzle(System.Int32,System.Int32,System.Int32) + parent: OpenTK.Mathematics.Matrix3 + langs: + - csharp + - vb + name: CreateSwizzle(int, int, int) + nameWithType: Matrix3.CreateSwizzle(int, int, int) + fullName: OpenTK.Mathematics.Matrix3.CreateSwizzle(int, int, int) + type: Method + source: + id: CreateSwizzle + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3.cs + startLine: 807 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: Create a swizzle matrix that can be used to change the row order of matrices. + remarks: If you are looking to swizzle vectors there are properties like that can do this more effectively. + example: [] + syntax: + content: public static Matrix3 CreateSwizzle(int rowForRow0, int rowForRow1, int rowForRow2) + parameters: + - id: rowForRow0 + type: System.Int32 + description: Which row to place in . + - id: rowForRow1 + type: System.Int32 + description: Which row to place in . + - id: rowForRow2 + type: System.Int32 + description: Which row to place in . + return: + type: OpenTK.Mathematics.Matrix3 + description: The resulting swizzle matrix. + content.vb: Public Shared Function CreateSwizzle(rowForRow0 As Integer, rowForRow1 As Integer, rowForRow2 As Integer) As Matrix3 + overload: OpenTK.Mathematics.Matrix3.CreateSwizzle* + nameWithType.vb: Matrix3.CreateSwizzle(Integer, Integer, Integer) + fullName.vb: OpenTK.Mathematics.Matrix3.CreateSwizzle(Integer, Integer, Integer) + name.vb: CreateSwizzle(Integer, Integer, Integer) +- uid: OpenTK.Mathematics.Matrix3.CreateSwizzle(System.Int32,System.Int32,System.Int32,OpenTK.Mathematics.Matrix3@) + commentId: M:OpenTK.Mathematics.Matrix3.CreateSwizzle(System.Int32,System.Int32,System.Int32,OpenTK.Mathematics.Matrix3@) + id: CreateSwizzle(System.Int32,System.Int32,System.Int32,OpenTK.Mathematics.Matrix3@) + parent: OpenTK.Mathematics.Matrix3 + langs: + - csharp + - vb + name: CreateSwizzle(int, int, int, out Matrix3) + nameWithType: Matrix3.CreateSwizzle(int, int, int, out Matrix3) + fullName: OpenTK.Mathematics.Matrix3.CreateSwizzle(int, int, int, out OpenTK.Mathematics.Matrix3) + type: Method + source: + id: CreateSwizzle + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3.cs + startLine: 823 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: Create a swizzle matrix that can be used to change the row order of matrices. + remarks: If you are looking to swizzle vectors there are properties like that can do this more effectively. + example: [] + syntax: + content: public static void CreateSwizzle(int rowForRow0, int rowForRow1, int rowForRow2, out Matrix3 result) + parameters: + - id: rowForRow0 + type: System.Int32 + description: Which row to place in . + - id: rowForRow1 + type: System.Int32 + description: Which row to place in . + - id: rowForRow2 + type: System.Int32 + description: Which row to place in . + - id: result + type: OpenTK.Mathematics.Matrix3 + description: The resulting swizzle matrix. + content.vb: Public Shared Sub CreateSwizzle(rowForRow0 As Integer, rowForRow1 As Integer, rowForRow2 As Integer, result As Matrix3) + overload: OpenTK.Mathematics.Matrix3.CreateSwizzle* + nameWithType.vb: Matrix3.CreateSwizzle(Integer, Integer, Integer, Matrix3) + fullName.vb: OpenTK.Mathematics.Matrix3.CreateSwizzle(Integer, Integer, Integer, OpenTK.Mathematics.Matrix3) + name.vb: CreateSwizzle(Integer, Integer, Integer, Matrix3) - uid: OpenTK.Mathematics.Matrix3.Add(OpenTK.Mathematics.Matrix3,OpenTK.Mathematics.Matrix3) commentId: M:OpenTK.Mathematics.Matrix3.Add(OpenTK.Mathematics.Matrix3,OpenTK.Mathematics.Matrix3) id: Add(OpenTK.Mathematics.Matrix3,OpenTK.Mathematics.Matrix3) @@ -1890,13 +1887,9 @@ items: fullName: OpenTK.Mathematics.Matrix3.Add(OpenTK.Mathematics.Matrix3, OpenTK.Mathematics.Matrix3) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Add - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3.cs - startLine: 732 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3.cs + startLine: 850 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1938,13 +1931,9 @@ items: fullName: OpenTK.Mathematics.Matrix3.Add(in OpenTK.Mathematics.Matrix3, in OpenTK.Mathematics.Matrix3, out OpenTK.Mathematics.Matrix3) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Add - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3.cs - startLine: 745 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3.cs + startLine: 863 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1979,13 +1968,9 @@ items: fullName: OpenTK.Mathematics.Matrix3.Mult(OpenTK.Mathematics.Matrix3, OpenTK.Mathematics.Matrix3) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Mult - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3.cs - startLine: 758 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3.cs + startLine: 876 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2027,13 +2012,9 @@ items: fullName: OpenTK.Mathematics.Matrix3.Mult(in OpenTK.Mathematics.Matrix3, in OpenTK.Mathematics.Matrix3, out OpenTK.Mathematics.Matrix3) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Mult - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3.cs - startLine: 771 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3.cs + startLine: 889 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2068,13 +2049,9 @@ items: fullName: OpenTK.Mathematics.Matrix3.Invert(in OpenTK.Mathematics.Matrix3, out OpenTK.Mathematics.Matrix3) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Invert - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3.cs - startLine: 809 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3.cs + startLine: 927 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2110,13 +2087,9 @@ items: fullName: OpenTK.Mathematics.Matrix3.Invert(OpenTK.Mathematics.Matrix3) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Invert - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3.cs - startLine: 862 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3.cs + startLine: 980 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2147,6 +2120,40 @@ items: - type: System.Diagnostics.Contracts.PureAttribute ctor: System.Diagnostics.Contracts.PureAttribute.#ctor arguments: [] +- uid: OpenTK.Mathematics.Matrix3.Transpose(OpenTK.Mathematics.Matrix3@,OpenTK.Mathematics.Matrix3@) + commentId: M:OpenTK.Mathematics.Matrix3.Transpose(OpenTK.Mathematics.Matrix3@,OpenTK.Mathematics.Matrix3@) + id: Transpose(OpenTK.Mathematics.Matrix3@,OpenTK.Mathematics.Matrix3@) + parent: OpenTK.Mathematics.Matrix3 + langs: + - csharp + - vb + name: Transpose(in Matrix3, out Matrix3) + nameWithType: Matrix3.Transpose(in Matrix3, out Matrix3) + fullName: OpenTK.Mathematics.Matrix3.Transpose(in OpenTK.Mathematics.Matrix3, out OpenTK.Mathematics.Matrix3) + type: Method + source: + id: Transpose + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3.cs + startLine: 992 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: Calculate the transpose of the given matrix. + example: [] + syntax: + content: public static void Transpose(in Matrix3 mat, out Matrix3 result) + parameters: + - id: mat + type: OpenTK.Mathematics.Matrix3 + description: The matrix to transpose. + - id: result + type: OpenTK.Mathematics.Matrix3 + description: The result of the calculation. + content.vb: Public Shared Sub Transpose(mat As Matrix3, result As Matrix3) + overload: OpenTK.Mathematics.Matrix3.Transpose* + nameWithType.vb: Matrix3.Transpose(Matrix3, Matrix3) + fullName.vb: OpenTK.Mathematics.Matrix3.Transpose(OpenTK.Mathematics.Matrix3, OpenTK.Mathematics.Matrix3) + name.vb: Transpose(Matrix3, Matrix3) - uid: OpenTK.Mathematics.Matrix3.Transpose(OpenTK.Mathematics.Matrix3) commentId: M:OpenTK.Mathematics.Matrix3.Transpose(OpenTK.Mathematics.Matrix3) id: Transpose(OpenTK.Mathematics.Matrix3) @@ -2159,13 +2166,9 @@ items: fullName: OpenTK.Mathematics.Matrix3.Transpose(OpenTK.Mathematics.Matrix3) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Transpose - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3.cs - startLine: 874 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3.cs + startLine: 1010 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2192,44 +2195,100 @@ items: - type: System.Diagnostics.Contracts.PureAttribute ctor: System.Diagnostics.Contracts.PureAttribute.#ctor arguments: [] -- uid: OpenTK.Mathematics.Matrix3.Transpose(OpenTK.Mathematics.Matrix3@,OpenTK.Mathematics.Matrix3@) - commentId: M:OpenTK.Mathematics.Matrix3.Transpose(OpenTK.Mathematics.Matrix3@,OpenTK.Mathematics.Matrix3@) - id: Transpose(OpenTK.Mathematics.Matrix3@,OpenTK.Mathematics.Matrix3@) +- uid: OpenTK.Mathematics.Matrix3.Swizzle(OpenTK.Mathematics.Matrix3,System.Int32,System.Int32,System.Int32) + commentId: M:OpenTK.Mathematics.Matrix3.Swizzle(OpenTK.Mathematics.Matrix3,System.Int32,System.Int32,System.Int32) + id: Swizzle(OpenTK.Mathematics.Matrix3,System.Int32,System.Int32,System.Int32) parent: OpenTK.Mathematics.Matrix3 langs: - csharp - vb - name: Transpose(in Matrix3, out Matrix3) - nameWithType: Matrix3.Transpose(in Matrix3, out Matrix3) - fullName: OpenTK.Mathematics.Matrix3.Transpose(in OpenTK.Mathematics.Matrix3, out OpenTK.Mathematics.Matrix3) + name: Swizzle(Matrix3, int, int, int) + nameWithType: Matrix3.Swizzle(Matrix3, int, int, int) + fullName: OpenTK.Mathematics.Matrix3.Swizzle(OpenTK.Mathematics.Matrix3, int, int, int) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Transpose - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3.cs - startLine: 885 + id: Swizzle + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3.cs + startLine: 1025 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics - summary: Calculate the transpose of the given matrix. + summary: Swizzles a matrix, i.e. switches rows of the matrix. example: [] syntax: - content: public static void Transpose(in Matrix3 mat, out Matrix3 result) + content: public static Matrix3 Swizzle(Matrix3 mat, int rowForRow0, int rowForRow1, int rowForRow2) parameters: - id: mat type: OpenTK.Mathematics.Matrix3 - description: The matrix to transpose. + description: The matrix to swizzle. + - id: rowForRow0 + type: System.Int32 + description: Which row to place in . + - id: rowForRow1 + type: System.Int32 + description: Which row to place in . + - id: rowForRow2 + type: System.Int32 + description: Which row to place in . + return: + type: OpenTK.Mathematics.Matrix3 + description: The swizzled matrix. + content.vb: Public Shared Function Swizzle(mat As Matrix3, rowForRow0 As Integer, rowForRow1 As Integer, rowForRow2 As Integer) As Matrix3 + overload: OpenTK.Mathematics.Matrix3.Swizzle* + exceptions: + - type: System.IndexOutOfRangeException + commentId: T:System.IndexOutOfRangeException + description: If any of the rows are outside of the range [0, 2]. + nameWithType.vb: Matrix3.Swizzle(Matrix3, Integer, Integer, Integer) + fullName.vb: OpenTK.Mathematics.Matrix3.Swizzle(OpenTK.Mathematics.Matrix3, Integer, Integer, Integer) + name.vb: Swizzle(Matrix3, Integer, Integer, Integer) +- uid: OpenTK.Mathematics.Matrix3.Swizzle(OpenTK.Mathematics.Matrix3@,System.Int32,System.Int32,System.Int32,OpenTK.Mathematics.Matrix3@) + commentId: M:OpenTK.Mathematics.Matrix3.Swizzle(OpenTK.Mathematics.Matrix3@,System.Int32,System.Int32,System.Int32,OpenTK.Mathematics.Matrix3@) + id: Swizzle(OpenTK.Mathematics.Matrix3@,System.Int32,System.Int32,System.Int32,OpenTK.Mathematics.Matrix3@) + parent: OpenTK.Mathematics.Matrix3 + langs: + - csharp + - vb + name: Swizzle(in Matrix3, int, int, int, out Matrix3) + nameWithType: Matrix3.Swizzle(in Matrix3, int, int, int, out Matrix3) + fullName: OpenTK.Mathematics.Matrix3.Swizzle(in OpenTK.Mathematics.Matrix3, int, int, int, out OpenTK.Mathematics.Matrix3) + type: Method + source: + id: Swizzle + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3.cs + startLine: 1040 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: Swizzles a matrix, i.e. switches rows of the matrix. + example: [] + syntax: + content: public static void Swizzle(in Matrix3 mat, int rowForRow0, int rowForRow1, int rowForRow2, out Matrix3 result) + parameters: + - id: mat + type: OpenTK.Mathematics.Matrix3 + description: The matrix to swizzle. + - id: rowForRow0 + type: System.Int32 + description: Which row to place in . + - id: rowForRow1 + type: System.Int32 + description: Which row to place in . + - id: rowForRow2 + type: System.Int32 + description: Which row to place in . - id: result type: OpenTK.Mathematics.Matrix3 - description: The result of the calculation. - content.vb: Public Shared Sub Transpose(mat As Matrix3, result As Matrix3) - overload: OpenTK.Mathematics.Matrix3.Transpose* - nameWithType.vb: Matrix3.Transpose(Matrix3, Matrix3) - fullName.vb: OpenTK.Mathematics.Matrix3.Transpose(OpenTK.Mathematics.Matrix3, OpenTK.Mathematics.Matrix3) - name.vb: Transpose(Matrix3, Matrix3) + description: The swizzled matrix. + content.vb: Public Shared Sub Swizzle(mat As Matrix3, rowForRow0 As Integer, rowForRow1 As Integer, rowForRow2 As Integer, result As Matrix3) + overload: OpenTK.Mathematics.Matrix3.Swizzle* + exceptions: + - type: System.IndexOutOfRangeException + commentId: T:System.IndexOutOfRangeException + description: If any of the rows are outside of the range [0, 2]. + nameWithType.vb: Matrix3.Swizzle(Matrix3, Integer, Integer, Integer, Matrix3) + fullName.vb: OpenTK.Mathematics.Matrix3.Swizzle(OpenTK.Mathematics.Matrix3, Integer, Integer, Integer, OpenTK.Mathematics.Matrix3) + name.vb: Swizzle(Matrix3, Integer, Integer, Integer, Matrix3) - uid: OpenTK.Mathematics.Matrix3.op_Multiply(OpenTK.Mathematics.Matrix3,OpenTK.Mathematics.Matrix3) commentId: M:OpenTK.Mathematics.Matrix3.op_Multiply(OpenTK.Mathematics.Matrix3,OpenTK.Mathematics.Matrix3) id: op_Multiply(OpenTK.Mathematics.Matrix3,OpenTK.Mathematics.Matrix3) @@ -2242,13 +2301,9 @@ items: fullName: OpenTK.Mathematics.Matrix3.operator *(OpenTK.Mathematics.Matrix3, OpenTK.Mathematics.Matrix3) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Multiply - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3.cs - startLine: 904 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3.cs + startLine: 1073 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2293,13 +2348,9 @@ items: fullName: OpenTK.Mathematics.Matrix3.operator ==(OpenTK.Mathematics.Matrix3, OpenTK.Mathematics.Matrix3) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Equality - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3.cs - startLine: 916 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3.cs + startLine: 1085 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2344,13 +2395,9 @@ items: fullName: OpenTK.Mathematics.Matrix3.operator !=(OpenTK.Mathematics.Matrix3, OpenTK.Mathematics.Matrix3) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Inequality - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3.cs - startLine: 928 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3.cs + startLine: 1097 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2395,20 +2442,16 @@ items: fullName: OpenTK.Mathematics.Matrix3.ToString() type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3.cs - startLine: 938 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3.cs + startLine: 1107 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Returns a System.String that represents the current Matrix3d. example: [] syntax: - content: public override string ToString() + content: public override readonly string ToString() return: type: System.String description: The string representation of the matrix. @@ -2427,20 +2470,16 @@ items: fullName: OpenTK.Mathematics.Matrix3.ToString(string) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3.cs - startLine: 944 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3.cs + startLine: 1113 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Formats the value of the current instance using the specified format. example: [] syntax: - content: public string ToString(string format) + content: public readonly string ToString(string format) parameters: - id: format type: System.String @@ -2470,20 +2509,16 @@ items: fullName: OpenTK.Mathematics.Matrix3.ToString(System.IFormatProvider) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3.cs - startLine: 950 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3.cs + startLine: 1119 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Formats the value of the current instance using the specified format. example: [] syntax: - content: public string ToString(IFormatProvider formatProvider) + content: public readonly string ToString(IFormatProvider formatProvider) parameters: - id: formatProvider type: System.IFormatProvider @@ -2510,20 +2545,16 @@ items: fullName: OpenTK.Mathematics.Matrix3.ToString(string, System.IFormatProvider) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3.cs - startLine: 956 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3.cs + startLine: 1125 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Formats the value of the current instance using the specified format. example: [] syntax: - content: public string ToString(string format, IFormatProvider formatProvider) + content: public readonly string ToString(string format, IFormatProvider formatProvider) parameters: - id: format type: System.String @@ -2563,20 +2594,16 @@ items: fullName: OpenTK.Mathematics.Matrix3.GetHashCode() type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetHashCode - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3.cs - startLine: 968 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3.cs + startLine: 1137 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Returns the hashcode for this instance. example: [] syntax: - content: public override int GetHashCode() + content: public override readonly int GetHashCode() return: type: System.Int32 description: A System.Int32 containing the unique hashcode for this instance. @@ -2595,13 +2622,9 @@ items: fullName: OpenTK.Mathematics.Matrix3.Equals(object) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Equals - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3.cs - startLine: 978 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3.cs + startLine: 1147 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2611,7 +2634,7 @@ items: content: >- [Pure] - public override bool Equals(object obj) + public override readonly bool Equals(object obj) parameters: - id: obj type: System.Object @@ -2644,13 +2667,9 @@ items: fullName: OpenTK.Mathematics.Matrix3.Equals(OpenTK.Mathematics.Matrix3) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Equals - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3.cs - startLine: 989 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3.cs + startLine: 1158 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2660,7 +2679,7 @@ items: content: >- [Pure] - public bool Equals(Matrix3 other) + public readonly bool Equals(Matrix3 other) parameters: - id: other type: OpenTK.Mathematics.Matrix3 @@ -3060,18 +3079,24 @@ references: name: Invert nameWithType: Matrix3.Invert fullName: OpenTK.Mathematics.Matrix3.Invert +- uid: OpenTK.Mathematics.Matrix3.Inverted* + commentId: Overload:OpenTK.Mathematics.Matrix3.Inverted + href: OpenTK.Mathematics.Matrix3.html#OpenTK_Mathematics_Matrix3_Inverted + name: Inverted + nameWithType: Matrix3.Inverted + fullName: OpenTK.Mathematics.Matrix3.Inverted - uid: OpenTK.Mathematics.Matrix3.Transpose* commentId: Overload:OpenTK.Mathematics.Matrix3.Transpose href: OpenTK.Mathematics.Matrix3.html#OpenTK_Mathematics_Matrix3_Transpose name: Transpose nameWithType: Matrix3.Transpose fullName: OpenTK.Mathematics.Matrix3.Transpose -- uid: OpenTK.Mathematics.Matrix3.Normalized* - commentId: Overload:OpenTK.Mathematics.Matrix3.Normalized - href: OpenTK.Mathematics.Matrix3.html#OpenTK_Mathematics_Matrix3_Normalized - name: Normalized - nameWithType: Matrix3.Normalized - fullName: OpenTK.Mathematics.Matrix3.Normalized +- uid: OpenTK.Mathematics.Matrix3.Transposed* + commentId: Overload:OpenTK.Mathematics.Matrix3.Transposed + href: OpenTK.Mathematics.Matrix3.html#OpenTK_Mathematics_Matrix3_Transposed + name: Transposed + nameWithType: Matrix3.Transposed + fullName: OpenTK.Mathematics.Matrix3.Transposed - uid: OpenTK.Mathematics.Matrix3.Determinant commentId: P:OpenTK.Mathematics.Matrix3.Determinant href: OpenTK.Mathematics.Matrix3.html#OpenTK_Mathematics_Matrix3_Determinant @@ -3084,12 +3109,42 @@ references: name: Normalize nameWithType: Matrix3.Normalize fullName: OpenTK.Mathematics.Matrix3.Normalize -- uid: OpenTK.Mathematics.Matrix3.Inverted* - commentId: Overload:OpenTK.Mathematics.Matrix3.Inverted - href: OpenTK.Mathematics.Matrix3.html#OpenTK_Mathematics_Matrix3_Inverted - name: Inverted - nameWithType: Matrix3.Inverted - fullName: OpenTK.Mathematics.Matrix3.Inverted +- uid: OpenTK.Mathematics.Matrix3.Normalized* + commentId: Overload:OpenTK.Mathematics.Matrix3.Normalized + href: OpenTK.Mathematics.Matrix3.html#OpenTK_Mathematics_Matrix3_Normalized + name: Normalized + nameWithType: Matrix3.Normalized + fullName: OpenTK.Mathematics.Matrix3.Normalized +- uid: OpenTK.Mathematics.Matrix3.Row0 + commentId: F:OpenTK.Mathematics.Matrix3.Row0 + href: OpenTK.Mathematics.Matrix3.html#OpenTK_Mathematics_Matrix3_Row0 + name: Row0 + nameWithType: Matrix3.Row0 + fullName: OpenTK.Mathematics.Matrix3.Row0 +- uid: OpenTK.Mathematics.Matrix3.Row1 + commentId: F:OpenTK.Mathematics.Matrix3.Row1 + href: OpenTK.Mathematics.Matrix3.html#OpenTK_Mathematics_Matrix3_Row1 + name: Row1 + nameWithType: Matrix3.Row1 + fullName: OpenTK.Mathematics.Matrix3.Row1 +- uid: OpenTK.Mathematics.Matrix3.Row2 + commentId: F:OpenTK.Mathematics.Matrix3.Row2 + href: OpenTK.Mathematics.Matrix3.html#OpenTK_Mathematics_Matrix3_Row2 + name: Row2 + nameWithType: Matrix3.Row2 + fullName: OpenTK.Mathematics.Matrix3.Row2 +- uid: OpenTK.Mathematics.Matrix3.Swizzle* + commentId: Overload:OpenTK.Mathematics.Matrix3.Swizzle + href: OpenTK.Mathematics.Matrix3.html#OpenTK_Mathematics_Matrix3_Swizzle_System_Int32_System_Int32_System_Int32_ + name: Swizzle + nameWithType: Matrix3.Swizzle + fullName: OpenTK.Mathematics.Matrix3.Swizzle +- uid: OpenTK.Mathematics.Matrix3.Swizzled* + commentId: Overload:OpenTK.Mathematics.Matrix3.Swizzled + href: OpenTK.Mathematics.Matrix3.html#OpenTK_Mathematics_Matrix3_Swizzled_System_Int32_System_Int32_System_Int32_ + name: Swizzled + nameWithType: Matrix3.Swizzled + fullName: OpenTK.Mathematics.Matrix3.Swizzled - uid: OpenTK.Mathematics.Matrix3.ClearScale* commentId: Overload:OpenTK.Mathematics.Matrix3.ClearScale href: OpenTK.Mathematics.Matrix3.html#OpenTK_Mathematics_Matrix3_ClearScale @@ -3168,6 +3223,18 @@ references: name: CreateScale nameWithType: Matrix3.CreateScale fullName: OpenTK.Mathematics.Matrix3.CreateScale +- uid: OpenTK.Mathematics.Vector3.Zyx + commentId: P:OpenTK.Mathematics.Vector3.Zyx + href: OpenTK.Mathematics.Vector3.html#OpenTK_Mathematics_Vector3_Zyx + name: Zyx + nameWithType: Vector3.Zyx + fullName: OpenTK.Mathematics.Vector3.Zyx +- uid: OpenTK.Mathematics.Matrix3.CreateSwizzle* + commentId: Overload:OpenTK.Mathematics.Matrix3.CreateSwizzle + href: OpenTK.Mathematics.Matrix3.html#OpenTK_Mathematics_Matrix3_CreateSwizzle_System_Int32_System_Int32_System_Int32_ + name: CreateSwizzle + nameWithType: Matrix3.CreateSwizzle + fullName: OpenTK.Mathematics.Matrix3.CreateSwizzle - uid: OpenTK.Mathematics.Matrix3.Add* commentId: Overload:OpenTK.Mathematics.Matrix3.Add href: OpenTK.Mathematics.Matrix3.html#OpenTK_Mathematics_Matrix3_Add_OpenTK_Mathematics_Matrix3_OpenTK_Mathematics_Matrix3_ @@ -3187,6 +3254,13 @@ references: name: InvalidOperationException nameWithType: InvalidOperationException fullName: System.InvalidOperationException +- uid: System.IndexOutOfRangeException + commentId: T:System.IndexOutOfRangeException + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.indexoutofrangeexception + name: IndexOutOfRangeException + nameWithType: IndexOutOfRangeException + fullName: System.IndexOutOfRangeException - uid: OpenTK.Mathematics.Matrix3.op_Multiply* commentId: Overload:OpenTK.Mathematics.Matrix3.op_Multiply href: OpenTK.Mathematics.Matrix3.html#OpenTK_Mathematics_Matrix3_op_Multiply_OpenTK_Mathematics_Matrix3_OpenTK_Mathematics_Matrix3_ diff --git a/api/OpenTK.Mathematics.Matrix3d.yml b/api/OpenTK.Mathematics.Matrix3d.yml index 64de95bf..784ee0ce 100644 --- a/api/OpenTK.Mathematics.Matrix3d.yml +++ b/api/OpenTK.Mathematics.Matrix3d.yml @@ -31,6 +31,8 @@ items: - OpenTK.Mathematics.Matrix3d.CreateScale(System.Double,OpenTK.Mathematics.Matrix3d@) - OpenTK.Mathematics.Matrix3d.CreateScale(System.Double,System.Double,System.Double) - OpenTK.Mathematics.Matrix3d.CreateScale(System.Double,System.Double,System.Double,OpenTK.Mathematics.Matrix3d@) + - OpenTK.Mathematics.Matrix3d.CreateSwizzle(System.Int32,System.Int32,System.Int32) + - OpenTK.Mathematics.Matrix3d.CreateSwizzle(System.Int32,System.Int32,System.Int32,OpenTK.Mathematics.Matrix3d@) - OpenTK.Mathematics.Matrix3d.Determinant - OpenTK.Mathematics.Matrix3d.Diagonal - OpenTK.Mathematics.Matrix3d.Equals(OpenTK.Mathematics.Matrix3d) @@ -60,6 +62,10 @@ items: - OpenTK.Mathematics.Matrix3d.Row0 - OpenTK.Mathematics.Matrix3d.Row1 - OpenTK.Mathematics.Matrix3d.Row2 + - OpenTK.Mathematics.Matrix3d.Swizzle(OpenTK.Mathematics.Matrix3d,System.Int32,System.Int32,System.Int32) + - OpenTK.Mathematics.Matrix3d.Swizzle(OpenTK.Mathematics.Matrix3d@,System.Int32,System.Int32,System.Int32,OpenTK.Mathematics.Matrix3d@) + - OpenTK.Mathematics.Matrix3d.Swizzle(System.Int32,System.Int32,System.Int32) + - OpenTK.Mathematics.Matrix3d.Swizzled(System.Int32,System.Int32,System.Int32) - OpenTK.Mathematics.Matrix3d.ToString - OpenTK.Mathematics.Matrix3d.ToString(System.IFormatProvider) - OpenTK.Mathematics.Matrix3d.ToString(System.String) @@ -68,6 +74,8 @@ items: - OpenTK.Mathematics.Matrix3d.Transpose - OpenTK.Mathematics.Matrix3d.Transpose(OpenTK.Mathematics.Matrix3d) - OpenTK.Mathematics.Matrix3d.Transpose(OpenTK.Mathematics.Matrix3d@,OpenTK.Mathematics.Matrix3d@) + - OpenTK.Mathematics.Matrix3d.Transposed + - OpenTK.Mathematics.Matrix3d.Zero - OpenTK.Mathematics.Matrix3d.op_Equality(OpenTK.Mathematics.Matrix3d,OpenTK.Mathematics.Matrix3d) - OpenTK.Mathematics.Matrix3d.op_Inequality(OpenTK.Mathematics.Matrix3d,OpenTK.Mathematics.Matrix3d) - OpenTK.Mathematics.Matrix3d.op_Multiply(OpenTK.Mathematics.Matrix3d,OpenTK.Mathematics.Matrix3d) @@ -79,13 +87,9 @@ items: fullName: OpenTK.Mathematics.Matrix3d type: Struct source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Matrix3d - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3d.cs - startLine: 32 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3d.cs + startLine: 33 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -123,13 +127,9 @@ items: fullName: OpenTK.Mathematics.Matrix3d.Row0 type: Field source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Row0 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3d.cs - startLine: 39 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3d.cs + startLine: 40 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -152,13 +152,9 @@ items: fullName: OpenTK.Mathematics.Matrix3d.Row1 type: Field source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Row1 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3d.cs - startLine: 44 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3d.cs + startLine: 45 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -181,13 +177,9 @@ items: fullName: OpenTK.Mathematics.Matrix3d.Row2 type: Field source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Row2 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3d.cs - startLine: 49 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3d.cs + startLine: 50 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -210,23 +202,44 @@ items: fullName: OpenTK.Mathematics.Matrix3d.Identity type: Field source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Identity - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3d.cs - startLine: 54 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3d.cs + startLine: 55 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: The identity matrix. example: [] syntax: - content: public static Matrix3d Identity + content: public static readonly Matrix3d Identity return: type: OpenTK.Mathematics.Matrix3d - content.vb: Public Shared Identity As Matrix3d + content.vb: Public Shared ReadOnly Identity As Matrix3d +- uid: OpenTK.Mathematics.Matrix3d.Zero + commentId: F:OpenTK.Mathematics.Matrix3d.Zero + id: Zero + parent: OpenTK.Mathematics.Matrix3d + langs: + - csharp + - vb + name: Zero + nameWithType: Matrix3d.Zero + fullName: OpenTK.Mathematics.Matrix3d.Zero + type: Field + source: + id: Zero + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3d.cs + startLine: 60 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: The zero matrix. + example: [] + syntax: + content: public static readonly Matrix3d Zero + return: + type: OpenTK.Mathematics.Matrix3d + content.vb: Public Shared ReadOnly Zero As Matrix3d - uid: OpenTK.Mathematics.Matrix3d.#ctor(OpenTK.Mathematics.Vector3d,OpenTK.Mathematics.Vector3d,OpenTK.Mathematics.Vector3d) commentId: M:OpenTK.Mathematics.Matrix3d.#ctor(OpenTK.Mathematics.Vector3d,OpenTK.Mathematics.Vector3d,OpenTK.Mathematics.Vector3d) id: '#ctor(OpenTK.Mathematics.Vector3d,OpenTK.Mathematics.Vector3d,OpenTK.Mathematics.Vector3d)' @@ -239,13 +252,9 @@ items: fullName: OpenTK.Mathematics.Matrix3d.Matrix3d(OpenTK.Mathematics.Vector3d, OpenTK.Mathematics.Vector3d, OpenTK.Mathematics.Vector3d) type: Constructor source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3d.cs - startLine: 62 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3d.cs + startLine: 68 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -280,13 +289,9 @@ items: fullName: OpenTK.Mathematics.Matrix3d.Matrix3d(double, double, double, double, double, double, double, double, double) type: Constructor source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3d.cs - startLine: 81 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3d.cs + startLine: 87 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -339,13 +344,9 @@ items: fullName: OpenTK.Mathematics.Matrix3d.Matrix3d(OpenTK.Mathematics.Matrix4d) type: Constructor source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3d.cs - startLine: 98 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3d.cs + startLine: 104 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -374,20 +375,16 @@ items: fullName: OpenTK.Mathematics.Matrix3d.Determinant type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Determinant - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3d.cs - startLine: 108 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3d.cs + startLine: 114 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets the determinant of this matrix. example: [] syntax: - content: public double Determinant { get; } + content: public readonly double Determinant { get; } parameters: [] return: type: System.Double @@ -405,24 +402,20 @@ items: fullName: OpenTK.Mathematics.Matrix3d.Column0 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Column0 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3d.cs - startLine: 131 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3d.cs + startLine: 137 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets the first column of this matrix. example: [] syntax: - content: public Vector3d Column0 { get; } + content: public Vector3d Column0 { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector3d - content.vb: Public ReadOnly Property Column0 As Vector3d + content.vb: Public Property Column0 As Vector3d overload: OpenTK.Mathematics.Matrix3d.Column0* - uid: OpenTK.Mathematics.Matrix3d.Column1 commentId: P:OpenTK.Mathematics.Matrix3d.Column1 @@ -436,24 +429,20 @@ items: fullName: OpenTK.Mathematics.Matrix3d.Column1 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Column1 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3d.cs - startLine: 136 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3d.cs + startLine: 151 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets the second column of this matrix. example: [] syntax: - content: public Vector3d Column1 { get; } + content: public Vector3d Column1 { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector3d - content.vb: Public ReadOnly Property Column1 As Vector3d + content.vb: Public Property Column1 As Vector3d overload: OpenTK.Mathematics.Matrix3d.Column1* - uid: OpenTK.Mathematics.Matrix3d.Column2 commentId: P:OpenTK.Mathematics.Matrix3d.Column2 @@ -467,24 +456,20 @@ items: fullName: OpenTK.Mathematics.Matrix3d.Column2 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Column2 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3d.cs - startLine: 141 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3d.cs + startLine: 165 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets the third column of this matrix. example: [] syntax: - content: public Vector3d Column2 { get; } + content: public Vector3d Column2 { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector3d - content.vb: Public ReadOnly Property Column2 As Vector3d + content.vb: Public Property Column2 As Vector3d overload: OpenTK.Mathematics.Matrix3d.Column2* - uid: OpenTK.Mathematics.Matrix3d.M11 commentId: P:OpenTK.Mathematics.Matrix3d.M11 @@ -498,20 +483,16 @@ items: fullName: OpenTK.Mathematics.Matrix3d.M11 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M11 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3d.cs - startLine: 146 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3d.cs + startLine: 179 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 1, column 1 of this instance. example: [] syntax: - content: public double M11 { get; set; } + content: public double M11 { readonly get; set; } parameters: [] return: type: System.Double @@ -529,20 +510,16 @@ items: fullName: OpenTK.Mathematics.Matrix3d.M12 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M12 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3d.cs - startLine: 155 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3d.cs + startLine: 188 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 1, column 2 of this instance. example: [] syntax: - content: public double M12 { get; set; } + content: public double M12 { readonly get; set; } parameters: [] return: type: System.Double @@ -560,20 +537,16 @@ items: fullName: OpenTK.Mathematics.Matrix3d.M13 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M13 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3d.cs - startLine: 164 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3d.cs + startLine: 197 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 1, column 3 of this instance. example: [] syntax: - content: public double M13 { get; set; } + content: public double M13 { readonly get; set; } parameters: [] return: type: System.Double @@ -591,20 +564,16 @@ items: fullName: OpenTK.Mathematics.Matrix3d.M21 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M21 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3d.cs - startLine: 173 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3d.cs + startLine: 206 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 2, column 1 of this instance. example: [] syntax: - content: public double M21 { get; set; } + content: public double M21 { readonly get; set; } parameters: [] return: type: System.Double @@ -622,20 +591,16 @@ items: fullName: OpenTK.Mathematics.Matrix3d.M22 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M22 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3d.cs - startLine: 182 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3d.cs + startLine: 215 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 2, column 2 of this instance. example: [] syntax: - content: public double M22 { get; set; } + content: public double M22 { readonly get; set; } parameters: [] return: type: System.Double @@ -653,20 +618,16 @@ items: fullName: OpenTK.Mathematics.Matrix3d.M23 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M23 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3d.cs - startLine: 191 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3d.cs + startLine: 224 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 2, column 3 of this instance. example: [] syntax: - content: public double M23 { get; set; } + content: public double M23 { readonly get; set; } parameters: [] return: type: System.Double @@ -684,20 +645,16 @@ items: fullName: OpenTK.Mathematics.Matrix3d.M31 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M31 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3d.cs - startLine: 200 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3d.cs + startLine: 233 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 3, column 1 of this instance. example: [] syntax: - content: public double M31 { get; set; } + content: public double M31 { readonly get; set; } parameters: [] return: type: System.Double @@ -715,20 +672,16 @@ items: fullName: OpenTK.Mathematics.Matrix3d.M32 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M32 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3d.cs - startLine: 209 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3d.cs + startLine: 242 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 3, column 2 of this instance. example: [] syntax: - content: public double M32 { get; set; } + content: public double M32 { readonly get; set; } parameters: [] return: type: System.Double @@ -746,20 +699,16 @@ items: fullName: OpenTK.Mathematics.Matrix3d.M33 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M33 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3d.cs - startLine: 218 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3d.cs + startLine: 251 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 3, column 3 of this instance. example: [] syntax: - content: public double M33 { get; set; } + content: public double M33 { readonly get; set; } parameters: [] return: type: System.Double @@ -777,20 +726,16 @@ items: fullName: OpenTK.Mathematics.Matrix3d.Diagonal type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Diagonal - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3d.cs - startLine: 227 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3d.cs + startLine: 260 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the values along the main diagonal of the matrix. example: [] syntax: - content: public Vector3d Diagonal { get; set; } + content: public Vector3d Diagonal { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector3d @@ -808,20 +753,16 @@ items: fullName: OpenTK.Mathematics.Matrix3d.Trace type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Trace - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3d.cs - startLine: 241 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3d.cs + startLine: 274 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets the trace of the matrix, the sum of the values along the diagonal. example: [] syntax: - content: public double Trace { get; } + content: public readonly double Trace { get; } parameters: [] return: type: System.Double @@ -839,20 +780,16 @@ items: fullName: OpenTK.Mathematics.Matrix3d.this[int, int] type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: this[] - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3d.cs - startLine: 248 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3d.cs + startLine: 281 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at a specified row and column. example: [] syntax: - content: public double this[int rowIndex, int columnIndex] { get; set; } + content: public double this[int rowIndex, int columnIndex] { readonly get; set; } parameters: - id: rowIndex type: System.Int32 @@ -879,13 +816,9 @@ items: fullName: OpenTK.Mathematics.Matrix3d.Invert() type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Invert - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3d.cs - startLine: 296 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3d.cs + startLine: 329 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -895,6 +828,37 @@ items: content: public void Invert() content.vb: Public Sub Invert() overload: OpenTK.Mathematics.Matrix3d.Invert* +- uid: OpenTK.Mathematics.Matrix3d.Inverted + commentId: M:OpenTK.Mathematics.Matrix3d.Inverted + id: Inverted + parent: OpenTK.Mathematics.Matrix3d + langs: + - csharp + - vb + name: Inverted() + nameWithType: Matrix3d.Inverted() + fullName: OpenTK.Mathematics.Matrix3d.Inverted() + type: Method + source: + id: Inverted + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3d.cs + startLine: 342 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: Returns an inverted copy of this instance. + remarks: >- + If the matrix is singular this function does not throw an exception, + + instead it returns the original un-inverted matrix. + example: [] + syntax: + content: public readonly Matrix3d Inverted() + return: + type: OpenTK.Mathematics.Matrix3d + description: The inverted copy. + content.vb: Public Function Inverted() As Matrix3d + overload: OpenTK.Mathematics.Matrix3d.Inverted* - uid: OpenTK.Mathematics.Matrix3d.Transpose commentId: M:OpenTK.Mathematics.Matrix3d.Transpose id: Transpose @@ -907,13 +871,9 @@ items: fullName: OpenTK.Mathematics.Matrix3d.Transpose() type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Transpose - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3d.cs - startLine: 304 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3d.cs + startLine: 356 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -923,37 +883,33 @@ items: content: public void Transpose() content.vb: Public Sub Transpose() overload: OpenTK.Mathematics.Matrix3d.Transpose* -- uid: OpenTK.Mathematics.Matrix3d.Normalized - commentId: M:OpenTK.Mathematics.Matrix3d.Normalized - id: Normalized +- uid: OpenTK.Mathematics.Matrix3d.Transposed + commentId: M:OpenTK.Mathematics.Matrix3d.Transposed + id: Transposed parent: OpenTK.Mathematics.Matrix3d langs: - csharp - vb - name: Normalized() - nameWithType: Matrix3d.Normalized() - fullName: OpenTK.Mathematics.Matrix3d.Normalized() + name: Transposed() + nameWithType: Matrix3d.Transposed() + fullName: OpenTK.Mathematics.Matrix3d.Transposed() type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Normalized - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3d.cs - startLine: 313 + id: Transposed + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3d.cs + startLine: 365 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics - summary: Returns a normalized copy of this instance. + summary: Returns a transposed copy of this instance. example: [] syntax: - content: public Matrix3d Normalized() + content: public readonly Matrix3d Transposed() return: type: OpenTK.Mathematics.Matrix3d - description: The normalized copy. - content.vb: Public Function Normalized() As Matrix3d - overload: OpenTK.Mathematics.Matrix3d.Normalized* + description: The transposed copy. + content.vb: Public Function Transposed() As Matrix3d + overload: OpenTK.Mathematics.Matrix3d.Transposed* - uid: OpenTK.Mathematics.Matrix3d.Normalize commentId: M:OpenTK.Mathematics.Matrix3d.Normalize id: Normalize @@ -966,13 +922,9 @@ items: fullName: OpenTK.Mathematics.Matrix3d.Normalize() type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Normalize - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3d.cs - startLine: 323 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3d.cs + startLine: 375 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -982,37 +934,110 @@ items: content: public void Normalize() content.vb: Public Sub Normalize() overload: OpenTK.Mathematics.Matrix3d.Normalize* -- uid: OpenTK.Mathematics.Matrix3d.Inverted - commentId: M:OpenTK.Mathematics.Matrix3d.Inverted - id: Inverted +- uid: OpenTK.Mathematics.Matrix3d.Normalized + commentId: M:OpenTK.Mathematics.Matrix3d.Normalized + id: Normalized parent: OpenTK.Mathematics.Matrix3d langs: - csharp - vb - name: Inverted() - nameWithType: Matrix3d.Inverted() - fullName: OpenTK.Mathematics.Matrix3d.Inverted() + name: Normalized() + nameWithType: Matrix3d.Normalized() + fullName: OpenTK.Mathematics.Matrix3d.Normalized() type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Inverted - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3d.cs - startLine: 335 + id: Normalized + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3d.cs + startLine: 387 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics - summary: Returns an inverted copy of this instance. + summary: Returns a normalized copy of this instance. example: [] syntax: - content: public Matrix3d Inverted() + content: public readonly Matrix3d Normalized() return: type: OpenTK.Mathematics.Matrix3d - description: The inverted copy. - content.vb: Public Function Inverted() As Matrix3d - overload: OpenTK.Mathematics.Matrix3d.Inverted* + description: The normalized copy. + content.vb: Public Function Normalized() As Matrix3d + overload: OpenTK.Mathematics.Matrix3d.Normalized* +- uid: OpenTK.Mathematics.Matrix3d.Swizzle(System.Int32,System.Int32,System.Int32) + commentId: M:OpenTK.Mathematics.Matrix3d.Swizzle(System.Int32,System.Int32,System.Int32) + id: Swizzle(System.Int32,System.Int32,System.Int32) + parent: OpenTK.Mathematics.Matrix3d + langs: + - csharp + - vb + name: Swizzle(int, int, int) + nameWithType: Matrix3d.Swizzle(int, int, int) + fullName: OpenTK.Mathematics.Matrix3d.Swizzle(int, int, int) + type: Method + source: + id: Swizzle + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3d.cs + startLine: 400 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: Swizzles this instance. Switches places of the rows of the matrix. + example: [] + syntax: + content: public void Swizzle(int rowForRow0, int rowForRow1, int rowForRow2) + parameters: + - id: rowForRow0 + type: System.Int32 + description: Which row to place in . + - id: rowForRow1 + type: System.Int32 + description: Which row to place in . + - id: rowForRow2 + type: System.Int32 + description: Which row to place in . + content.vb: Public Sub Swizzle(rowForRow0 As Integer, rowForRow1 As Integer, rowForRow2 As Integer) + overload: OpenTK.Mathematics.Matrix3d.Swizzle* + nameWithType.vb: Matrix3d.Swizzle(Integer, Integer, Integer) + fullName.vb: OpenTK.Mathematics.Matrix3d.Swizzle(Integer, Integer, Integer) + name.vb: Swizzle(Integer, Integer, Integer) +- uid: OpenTK.Mathematics.Matrix3d.Swizzled(System.Int32,System.Int32,System.Int32) + commentId: M:OpenTK.Mathematics.Matrix3d.Swizzled(System.Int32,System.Int32,System.Int32) + id: Swizzled(System.Int32,System.Int32,System.Int32) + parent: OpenTK.Mathematics.Matrix3d + langs: + - csharp + - vb + name: Swizzled(int, int, int) + nameWithType: Matrix3d.Swizzled(int, int, int) + fullName: OpenTK.Mathematics.Matrix3d.Swizzled(int, int, int) + type: Method + source: + id: Swizzled + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3d.cs + startLine: 412 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: Returns a swizzled copy of this instance. + example: [] + syntax: + content: public readonly Matrix3d Swizzled(int rowForRow0, int rowForRow1, int rowForRow2) + parameters: + - id: rowForRow0 + type: System.Int32 + description: Which row to place in . + - id: rowForRow1 + type: System.Int32 + description: Which row to place in . + - id: rowForRow2 + type: System.Int32 + description: Which row to place in . + return: + type: OpenTK.Mathematics.Matrix3d + description: The swizzled copy. + content.vb: Public Function Swizzled(rowForRow0 As Integer, rowForRow1 As Integer, rowForRow2 As Integer) As Matrix3d + overload: OpenTK.Mathematics.Matrix3d.Swizzled* + nameWithType.vb: Matrix3d.Swizzled(Integer, Integer, Integer) + fullName.vb: OpenTK.Mathematics.Matrix3d.Swizzled(Integer, Integer, Integer) + name.vb: Swizzled(Integer, Integer, Integer) - uid: OpenTK.Mathematics.Matrix3d.ClearScale commentId: M:OpenTK.Mathematics.Matrix3d.ClearScale id: ClearScale @@ -1025,20 +1050,16 @@ items: fullName: OpenTK.Mathematics.Matrix3d.ClearScale() type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ClearScale - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3d.cs - startLine: 350 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3d.cs + startLine: 423 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Returns a copy of this Matrix3 without scale. example: [] syntax: - content: public Matrix3d ClearScale() + content: public readonly Matrix3d ClearScale() return: type: OpenTK.Mathematics.Matrix3d description: The matrix without scaling. @@ -1056,20 +1077,16 @@ items: fullName: OpenTK.Mathematics.Matrix3d.ClearRotation() type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ClearRotation - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3d.cs - startLine: 363 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3d.cs + startLine: 436 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Returns a copy of this Matrix3 without rotation. example: [] syntax: - content: public Matrix3d ClearRotation() + content: public readonly Matrix3d ClearRotation() return: type: OpenTK.Mathematics.Matrix3d description: The matrix without rotation. @@ -1087,20 +1104,16 @@ items: fullName: OpenTK.Mathematics.Matrix3d.ExtractScale() type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ExtractScale - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3d.cs - startLine: 376 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3d.cs + startLine: 449 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Returns the scale component of this instance. example: [] syntax: - content: public Vector3d ExtractScale() + content: public readonly Vector3d ExtractScale() return: type: OpenTK.Mathematics.Vector3d description: The scale components. @@ -1118,13 +1131,9 @@ items: fullName: OpenTK.Mathematics.Matrix3d.ExtractRotation(bool) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ExtractRotation - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3d.cs - startLine: 389 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3d.cs + startLine: 462 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1134,7 +1143,7 @@ items: content: >- [Pure] - public Quaterniond ExtractRotation(bool rowNormalize = true) + public readonly Quaterniond ExtractRotation(bool rowNormalize = true) parameters: - id: rowNormalize type: System.Boolean @@ -1169,13 +1178,9 @@ items: fullName: OpenTK.Mathematics.Matrix3d.CreateFromAxisAngle(OpenTK.Mathematics.Vector3d, double, out OpenTK.Mathematics.Matrix3d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateFromAxisAngle - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3d.cs - startLine: 458 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3d.cs + startLine: 531 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1210,13 +1215,9 @@ items: fullName: OpenTK.Mathematics.Matrix3d.CreateFromAxisAngle(OpenTK.Mathematics.Vector3d, double) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateFromAxisAngle - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3d.cs - startLine: 498 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3d.cs + startLine: 571 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1261,13 +1262,9 @@ items: fullName: OpenTK.Mathematics.Matrix3d.CreateFromQuaternion(in OpenTK.Mathematics.Quaterniond, out OpenTK.Mathematics.Matrix3d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateFromQuaternion - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3d.cs - startLine: 510 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3d.cs + startLine: 583 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1299,13 +1296,9 @@ items: fullName: OpenTK.Mathematics.Matrix3d.CreateFromQuaternion(OpenTK.Mathematics.Quaterniond) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateFromQuaternion - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3d.cs - startLine: 549 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3d.cs + startLine: 622 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1344,13 +1337,9 @@ items: fullName: OpenTK.Mathematics.Matrix3d.CreateRotationX(double, out OpenTK.Mathematics.Matrix3d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateRotationX - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3d.cs - startLine: 561 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3d.cs + startLine: 634 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1382,13 +1371,9 @@ items: fullName: OpenTK.Mathematics.Matrix3d.CreateRotationX(double) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateRotationX - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3d.cs - startLine: 578 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3d.cs + startLine: 651 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1430,13 +1415,9 @@ items: fullName: OpenTK.Mathematics.Matrix3d.CreateRotationY(double, out OpenTK.Mathematics.Matrix3d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateRotationY - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3d.cs - startLine: 590 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3d.cs + startLine: 663 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1468,13 +1449,9 @@ items: fullName: OpenTK.Mathematics.Matrix3d.CreateRotationY(double) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateRotationY - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3d.cs - startLine: 607 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3d.cs + startLine: 680 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1516,13 +1493,9 @@ items: fullName: OpenTK.Mathematics.Matrix3d.CreateRotationZ(double, out OpenTK.Mathematics.Matrix3d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateRotationZ - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3d.cs - startLine: 619 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3d.cs + startLine: 692 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1554,13 +1527,9 @@ items: fullName: OpenTK.Mathematics.Matrix3d.CreateRotationZ(double) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateRotationZ - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3d.cs - startLine: 636 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3d.cs + startLine: 709 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1602,13 +1571,9 @@ items: fullName: OpenTK.Mathematics.Matrix3d.CreateScale(double) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateScale - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3d.cs - startLine: 648 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3d.cs + startLine: 721 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1650,13 +1615,9 @@ items: fullName: OpenTK.Mathematics.Matrix3d.CreateScale(OpenTK.Mathematics.Vector3d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateScale - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3d.cs - startLine: 660 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3d.cs + startLine: 733 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1695,13 +1656,9 @@ items: fullName: OpenTK.Mathematics.Matrix3d.CreateScale(double, double, double) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateScale - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3d.cs - startLine: 674 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3d.cs + startLine: 747 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1749,13 +1706,9 @@ items: fullName: OpenTK.Mathematics.Matrix3d.CreateScale(double, out OpenTK.Mathematics.Matrix3d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateScale - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3d.cs - startLine: 686 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3d.cs + startLine: 759 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1787,13 +1740,9 @@ items: fullName: OpenTK.Mathematics.Matrix3d.CreateScale(in OpenTK.Mathematics.Vector3d, out OpenTK.Mathematics.Matrix3d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateScale - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3d.cs - startLine: 699 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3d.cs + startLine: 772 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1825,13 +1774,9 @@ items: fullName: OpenTK.Mathematics.Matrix3d.CreateScale(double, double, double, out OpenTK.Mathematics.Matrix3d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateScale - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3d.cs - startLine: 714 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3d.cs + startLine: 787 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1857,6 +1802,88 @@ items: nameWithType.vb: Matrix3d.CreateScale(Double, Double, Double, Matrix3d) fullName.vb: OpenTK.Mathematics.Matrix3d.CreateScale(Double, Double, Double, OpenTK.Mathematics.Matrix3d) name.vb: CreateScale(Double, Double, Double, Matrix3d) +- uid: OpenTK.Mathematics.Matrix3d.CreateSwizzle(System.Int32,System.Int32,System.Int32) + commentId: M:OpenTK.Mathematics.Matrix3d.CreateSwizzle(System.Int32,System.Int32,System.Int32) + id: CreateSwizzle(System.Int32,System.Int32,System.Int32) + parent: OpenTK.Mathematics.Matrix3d + langs: + - csharp + - vb + name: CreateSwizzle(int, int, int) + nameWithType: Matrix3d.CreateSwizzle(int, int, int) + fullName: OpenTK.Mathematics.Matrix3d.CreateSwizzle(int, int, int) + type: Method + source: + id: CreateSwizzle + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3d.cs + startLine: 805 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: Create a swizzle matrix that can be used to change the row order of matrices. + remarks: If you are looking to swizzle vectors there are properties like that can do this more effectively. + example: [] + syntax: + content: public static Matrix3d CreateSwizzle(int rowForRow0, int rowForRow1, int rowForRow2) + parameters: + - id: rowForRow0 + type: System.Int32 + description: Which row to place in . + - id: rowForRow1 + type: System.Int32 + description: Which row to place in . + - id: rowForRow2 + type: System.Int32 + description: Which row to place in . + return: + type: OpenTK.Mathematics.Matrix3d + description: The resulting swizzle matrix. + content.vb: Public Shared Function CreateSwizzle(rowForRow0 As Integer, rowForRow1 As Integer, rowForRow2 As Integer) As Matrix3d + overload: OpenTK.Mathematics.Matrix3d.CreateSwizzle* + nameWithType.vb: Matrix3d.CreateSwizzle(Integer, Integer, Integer) + fullName.vb: OpenTK.Mathematics.Matrix3d.CreateSwizzle(Integer, Integer, Integer) + name.vb: CreateSwizzle(Integer, Integer, Integer) +- uid: OpenTK.Mathematics.Matrix3d.CreateSwizzle(System.Int32,System.Int32,System.Int32,OpenTK.Mathematics.Matrix3d@) + commentId: M:OpenTK.Mathematics.Matrix3d.CreateSwizzle(System.Int32,System.Int32,System.Int32,OpenTK.Mathematics.Matrix3d@) + id: CreateSwizzle(System.Int32,System.Int32,System.Int32,OpenTK.Mathematics.Matrix3d@) + parent: OpenTK.Mathematics.Matrix3d + langs: + - csharp + - vb + name: CreateSwizzle(int, int, int, out Matrix3d) + nameWithType: Matrix3d.CreateSwizzle(int, int, int, out Matrix3d) + fullName: OpenTK.Mathematics.Matrix3d.CreateSwizzle(int, int, int, out OpenTK.Mathematics.Matrix3d) + type: Method + source: + id: CreateSwizzle + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3d.cs + startLine: 821 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: Create a swizzle matrix that can be used to change the row order of matrices. + remarks: If you are looking to swizzle vectors there are properties like that can do this more effectively. + example: [] + syntax: + content: public static void CreateSwizzle(int rowForRow0, int rowForRow1, int rowForRow2, out Matrix3d result) + parameters: + - id: rowForRow0 + type: System.Int32 + description: Which row to place in . + - id: rowForRow1 + type: System.Int32 + description: Which row to place in . + - id: rowForRow2 + type: System.Int32 + description: Which row to place in . + - id: result + type: OpenTK.Mathematics.Matrix3d + description: The resulting swizzle matrix. + content.vb: Public Shared Sub CreateSwizzle(rowForRow0 As Integer, rowForRow1 As Integer, rowForRow2 As Integer, result As Matrix3d) + overload: OpenTK.Mathematics.Matrix3d.CreateSwizzle* + nameWithType.vb: Matrix3d.CreateSwizzle(Integer, Integer, Integer, Matrix3d) + fullName.vb: OpenTK.Mathematics.Matrix3d.CreateSwizzle(Integer, Integer, Integer, OpenTK.Mathematics.Matrix3d) + name.vb: CreateSwizzle(Integer, Integer, Integer, Matrix3d) - uid: OpenTK.Mathematics.Matrix3d.Add(OpenTK.Mathematics.Matrix3d,OpenTK.Mathematics.Matrix3d) commentId: M:OpenTK.Mathematics.Matrix3d.Add(OpenTK.Mathematics.Matrix3d,OpenTK.Mathematics.Matrix3d) id: Add(OpenTK.Mathematics.Matrix3d,OpenTK.Mathematics.Matrix3d) @@ -1869,13 +1896,9 @@ items: fullName: OpenTK.Mathematics.Matrix3d.Add(OpenTK.Mathematics.Matrix3d, OpenTK.Mathematics.Matrix3d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Add - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3d.cs - startLine: 728 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3d.cs + startLine: 848 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1917,13 +1940,9 @@ items: fullName: OpenTK.Mathematics.Matrix3d.Add(in OpenTK.Mathematics.Matrix3d, in OpenTK.Mathematics.Matrix3d, out OpenTK.Mathematics.Matrix3d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Add - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3d.cs - startLine: 741 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3d.cs + startLine: 861 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1958,13 +1977,9 @@ items: fullName: OpenTK.Mathematics.Matrix3d.Mult(OpenTK.Mathematics.Matrix3d, OpenTK.Mathematics.Matrix3d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Mult - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3d.cs - startLine: 754 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3d.cs + startLine: 874 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2006,13 +2021,9 @@ items: fullName: OpenTK.Mathematics.Matrix3d.Mult(in OpenTK.Mathematics.Matrix3d, in OpenTK.Mathematics.Matrix3d, out OpenTK.Mathematics.Matrix3d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Mult - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3d.cs - startLine: 767 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3d.cs + startLine: 887 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2047,13 +2058,9 @@ items: fullName: OpenTK.Mathematics.Matrix3d.Invert(in OpenTK.Mathematics.Matrix3d, out OpenTK.Mathematics.Matrix3d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Invert - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3d.cs - startLine: 805 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3d.cs + startLine: 925 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2089,13 +2096,9 @@ items: fullName: OpenTK.Mathematics.Matrix3d.Invert(OpenTK.Mathematics.Matrix3d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Invert - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3d.cs - startLine: 858 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3d.cs + startLine: 978 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2138,13 +2141,9 @@ items: fullName: OpenTK.Mathematics.Matrix3d.Transpose(OpenTK.Mathematics.Matrix3d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Transpose - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3d.cs - startLine: 870 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3d.cs + startLine: 990 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2183,13 +2182,9 @@ items: fullName: OpenTK.Mathematics.Matrix3d.Transpose(in OpenTK.Mathematics.Matrix3d, out OpenTK.Mathematics.Matrix3d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Transpose - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3d.cs - startLine: 881 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3d.cs + startLine: 1001 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2209,6 +2204,100 @@ items: nameWithType.vb: Matrix3d.Transpose(Matrix3d, Matrix3d) fullName.vb: OpenTK.Mathematics.Matrix3d.Transpose(OpenTK.Mathematics.Matrix3d, OpenTK.Mathematics.Matrix3d) name.vb: Transpose(Matrix3d, Matrix3d) +- uid: OpenTK.Mathematics.Matrix3d.Swizzle(OpenTK.Mathematics.Matrix3d,System.Int32,System.Int32,System.Int32) + commentId: M:OpenTK.Mathematics.Matrix3d.Swizzle(OpenTK.Mathematics.Matrix3d,System.Int32,System.Int32,System.Int32) + id: Swizzle(OpenTK.Mathematics.Matrix3d,System.Int32,System.Int32,System.Int32) + parent: OpenTK.Mathematics.Matrix3d + langs: + - csharp + - vb + name: Swizzle(Matrix3d, int, int, int) + nameWithType: Matrix3d.Swizzle(Matrix3d, int, int, int) + fullName: OpenTK.Mathematics.Matrix3d.Swizzle(OpenTK.Mathematics.Matrix3d, int, int, int) + type: Method + source: + id: Swizzle + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3d.cs + startLine: 1017 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: Swizzles a matrix, i.e. switches rows of the matrix. + example: [] + syntax: + content: public static Matrix3d Swizzle(Matrix3d mat, int rowForRow0, int rowForRow1, int rowForRow2) + parameters: + - id: mat + type: OpenTK.Mathematics.Matrix3d + description: The matrix to swizzle. + - id: rowForRow0 + type: System.Int32 + description: Which row to place in . + - id: rowForRow1 + type: System.Int32 + description: Which row to place in . + - id: rowForRow2 + type: System.Int32 + description: Which row to place in . + return: + type: OpenTK.Mathematics.Matrix3d + description: The swizzled matrix. + content.vb: Public Shared Function Swizzle(mat As Matrix3d, rowForRow0 As Integer, rowForRow1 As Integer, rowForRow2 As Integer) As Matrix3d + overload: OpenTK.Mathematics.Matrix3d.Swizzle* + exceptions: + - type: System.IndexOutOfRangeException + commentId: T:System.IndexOutOfRangeException + description: If any of the rows are outside of the range [0, 2]. + nameWithType.vb: Matrix3d.Swizzle(Matrix3d, Integer, Integer, Integer) + fullName.vb: OpenTK.Mathematics.Matrix3d.Swizzle(OpenTK.Mathematics.Matrix3d, Integer, Integer, Integer) + name.vb: Swizzle(Matrix3d, Integer, Integer, Integer) +- uid: OpenTK.Mathematics.Matrix3d.Swizzle(OpenTK.Mathematics.Matrix3d@,System.Int32,System.Int32,System.Int32,OpenTK.Mathematics.Matrix3d@) + commentId: M:OpenTK.Mathematics.Matrix3d.Swizzle(OpenTK.Mathematics.Matrix3d@,System.Int32,System.Int32,System.Int32,OpenTK.Mathematics.Matrix3d@) + id: Swizzle(OpenTK.Mathematics.Matrix3d@,System.Int32,System.Int32,System.Int32,OpenTK.Mathematics.Matrix3d@) + parent: OpenTK.Mathematics.Matrix3d + langs: + - csharp + - vb + name: Swizzle(in Matrix3d, int, int, int, out Matrix3d) + nameWithType: Matrix3d.Swizzle(in Matrix3d, int, int, int, out Matrix3d) + fullName: OpenTK.Mathematics.Matrix3d.Swizzle(in OpenTK.Mathematics.Matrix3d, int, int, int, out OpenTK.Mathematics.Matrix3d) + type: Method + source: + id: Swizzle + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3d.cs + startLine: 1032 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: Swizzles a matrix, i.e. switches rows of the matrix. + example: [] + syntax: + content: public static void Swizzle(in Matrix3d mat, int rowForRow0, int rowForRow1, int rowForRow2, out Matrix3d result) + parameters: + - id: mat + type: OpenTK.Mathematics.Matrix3d + description: The matrix to swizzle. + - id: rowForRow0 + type: System.Int32 + description: Which row to place in . + - id: rowForRow1 + type: System.Int32 + description: Which row to place in . + - id: rowForRow2 + type: System.Int32 + description: Which row to place in . + - id: result + type: OpenTK.Mathematics.Matrix3d + description: The swizzled matrix. + content.vb: Public Shared Sub Swizzle(mat As Matrix3d, rowForRow0 As Integer, rowForRow1 As Integer, rowForRow2 As Integer, result As Matrix3d) + overload: OpenTK.Mathematics.Matrix3d.Swizzle* + exceptions: + - type: System.IndexOutOfRangeException + commentId: T:System.IndexOutOfRangeException + description: If any of the rows are outside of the range [0, 2]. + nameWithType.vb: Matrix3d.Swizzle(Matrix3d, Integer, Integer, Integer, Matrix3d) + fullName.vb: OpenTK.Mathematics.Matrix3d.Swizzle(OpenTK.Mathematics.Matrix3d, Integer, Integer, Integer, OpenTK.Mathematics.Matrix3d) + name.vb: Swizzle(Matrix3d, Integer, Integer, Integer, Matrix3d) - uid: OpenTK.Mathematics.Matrix3d.op_Multiply(OpenTK.Mathematics.Matrix3d,OpenTK.Mathematics.Matrix3d) commentId: M:OpenTK.Mathematics.Matrix3d.op_Multiply(OpenTK.Mathematics.Matrix3d,OpenTK.Mathematics.Matrix3d) id: op_Multiply(OpenTK.Mathematics.Matrix3d,OpenTK.Mathematics.Matrix3d) @@ -2221,13 +2310,9 @@ items: fullName: OpenTK.Mathematics.Matrix3d.operator *(OpenTK.Mathematics.Matrix3d, OpenTK.Mathematics.Matrix3d) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Multiply - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3d.cs - startLine: 894 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3d.cs + startLine: 1065 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2272,13 +2357,9 @@ items: fullName: OpenTK.Mathematics.Matrix3d.operator ==(OpenTK.Mathematics.Matrix3d, OpenTK.Mathematics.Matrix3d) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Equality - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3d.cs - startLine: 906 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3d.cs + startLine: 1077 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2323,13 +2404,9 @@ items: fullName: OpenTK.Mathematics.Matrix3d.operator !=(OpenTK.Mathematics.Matrix3d, OpenTK.Mathematics.Matrix3d) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Inequality - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3d.cs - startLine: 918 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3d.cs + startLine: 1089 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2374,20 +2451,16 @@ items: fullName: OpenTK.Mathematics.Matrix3d.ToString() type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3d.cs - startLine: 928 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3d.cs + startLine: 1099 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Returns a System.String that represents the current Matrix3d. example: [] syntax: - content: public override string ToString() + content: public override readonly string ToString() return: type: System.String description: The string representation of the matrix. @@ -2406,20 +2479,16 @@ items: fullName: OpenTK.Mathematics.Matrix3d.ToString(string) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3d.cs - startLine: 934 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3d.cs + startLine: 1105 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Formats the value of the current instance using the specified format. example: [] syntax: - content: public string ToString(string format) + content: public readonly string ToString(string format) parameters: - id: format type: System.String @@ -2449,20 +2518,16 @@ items: fullName: OpenTK.Mathematics.Matrix3d.ToString(System.IFormatProvider) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3d.cs - startLine: 940 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3d.cs + startLine: 1111 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Formats the value of the current instance using the specified format. example: [] syntax: - content: public string ToString(IFormatProvider formatProvider) + content: public readonly string ToString(IFormatProvider formatProvider) parameters: - id: formatProvider type: System.IFormatProvider @@ -2489,20 +2554,16 @@ items: fullName: OpenTK.Mathematics.Matrix3d.ToString(string, System.IFormatProvider) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3d.cs - startLine: 946 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3d.cs + startLine: 1117 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Formats the value of the current instance using the specified format. example: [] syntax: - content: public string ToString(string format, IFormatProvider formatProvider) + content: public readonly string ToString(string format, IFormatProvider formatProvider) parameters: - id: format type: System.String @@ -2542,20 +2603,16 @@ items: fullName: OpenTK.Mathematics.Matrix3d.GetHashCode() type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetHashCode - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3d.cs - startLine: 958 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3d.cs + startLine: 1129 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Returns the hashcode for this instance. example: [] syntax: - content: public override int GetHashCode() + content: public override readonly int GetHashCode() return: type: System.Int32 description: A System.Int32 containing the unique hashcode for this instance. @@ -2574,13 +2631,9 @@ items: fullName: OpenTK.Mathematics.Matrix3d.Equals(object) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Equals - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3d.cs - startLine: 968 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3d.cs + startLine: 1139 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2590,7 +2643,7 @@ items: content: >- [Pure] - public override bool Equals(object obj) + public override readonly bool Equals(object obj) parameters: - id: obj type: System.Object @@ -2623,13 +2676,9 @@ items: fullName: OpenTK.Mathematics.Matrix3d.Equals(OpenTK.Mathematics.Matrix3d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Equals - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3d.cs - startLine: 979 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3d.cs + startLine: 1150 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2639,7 +2688,7 @@ items: content: >- [Pure] - public bool Equals(Matrix3d other) + public readonly bool Equals(Matrix3d other) parameters: - id: other type: OpenTK.Mathematics.Matrix3d @@ -3039,18 +3088,24 @@ references: name: Invert nameWithType: Matrix3d.Invert fullName: OpenTK.Mathematics.Matrix3d.Invert +- uid: OpenTK.Mathematics.Matrix3d.Inverted* + commentId: Overload:OpenTK.Mathematics.Matrix3d.Inverted + href: OpenTK.Mathematics.Matrix3d.html#OpenTK_Mathematics_Matrix3d_Inverted + name: Inverted + nameWithType: Matrix3d.Inverted + fullName: OpenTK.Mathematics.Matrix3d.Inverted - uid: OpenTK.Mathematics.Matrix3d.Transpose* commentId: Overload:OpenTK.Mathematics.Matrix3d.Transpose href: OpenTK.Mathematics.Matrix3d.html#OpenTK_Mathematics_Matrix3d_Transpose name: Transpose nameWithType: Matrix3d.Transpose fullName: OpenTK.Mathematics.Matrix3d.Transpose -- uid: OpenTK.Mathematics.Matrix3d.Normalized* - commentId: Overload:OpenTK.Mathematics.Matrix3d.Normalized - href: OpenTK.Mathematics.Matrix3d.html#OpenTK_Mathematics_Matrix3d_Normalized - name: Normalized - nameWithType: Matrix3d.Normalized - fullName: OpenTK.Mathematics.Matrix3d.Normalized +- uid: OpenTK.Mathematics.Matrix3d.Transposed* + commentId: Overload:OpenTK.Mathematics.Matrix3d.Transposed + href: OpenTK.Mathematics.Matrix3d.html#OpenTK_Mathematics_Matrix3d_Transposed + name: Transposed + nameWithType: Matrix3d.Transposed + fullName: OpenTK.Mathematics.Matrix3d.Transposed - uid: OpenTK.Mathematics.Matrix3d.Determinant commentId: P:OpenTK.Mathematics.Matrix3d.Determinant href: OpenTK.Mathematics.Matrix3d.html#OpenTK_Mathematics_Matrix3d_Determinant @@ -3063,12 +3118,42 @@ references: name: Normalize nameWithType: Matrix3d.Normalize fullName: OpenTK.Mathematics.Matrix3d.Normalize -- uid: OpenTK.Mathematics.Matrix3d.Inverted* - commentId: Overload:OpenTK.Mathematics.Matrix3d.Inverted - href: OpenTK.Mathematics.Matrix3d.html#OpenTK_Mathematics_Matrix3d_Inverted - name: Inverted - nameWithType: Matrix3d.Inverted - fullName: OpenTK.Mathematics.Matrix3d.Inverted +- uid: OpenTK.Mathematics.Matrix3d.Normalized* + commentId: Overload:OpenTK.Mathematics.Matrix3d.Normalized + href: OpenTK.Mathematics.Matrix3d.html#OpenTK_Mathematics_Matrix3d_Normalized + name: Normalized + nameWithType: Matrix3d.Normalized + fullName: OpenTK.Mathematics.Matrix3d.Normalized +- uid: OpenTK.Mathematics.Matrix3d.Row0 + commentId: F:OpenTK.Mathematics.Matrix3d.Row0 + href: OpenTK.Mathematics.Matrix3d.html#OpenTK_Mathematics_Matrix3d_Row0 + name: Row0 + nameWithType: Matrix3d.Row0 + fullName: OpenTK.Mathematics.Matrix3d.Row0 +- uid: OpenTK.Mathematics.Matrix3d.Row1 + commentId: F:OpenTK.Mathematics.Matrix3d.Row1 + href: OpenTK.Mathematics.Matrix3d.html#OpenTK_Mathematics_Matrix3d_Row1 + name: Row1 + nameWithType: Matrix3d.Row1 + fullName: OpenTK.Mathematics.Matrix3d.Row1 +- uid: OpenTK.Mathematics.Matrix3d.Row2 + commentId: F:OpenTK.Mathematics.Matrix3d.Row2 + href: OpenTK.Mathematics.Matrix3d.html#OpenTK_Mathematics_Matrix3d_Row2 + name: Row2 + nameWithType: Matrix3d.Row2 + fullName: OpenTK.Mathematics.Matrix3d.Row2 +- uid: OpenTK.Mathematics.Matrix3d.Swizzle* + commentId: Overload:OpenTK.Mathematics.Matrix3d.Swizzle + href: OpenTK.Mathematics.Matrix3d.html#OpenTK_Mathematics_Matrix3d_Swizzle_System_Int32_System_Int32_System_Int32_ + name: Swizzle + nameWithType: Matrix3d.Swizzle + fullName: OpenTK.Mathematics.Matrix3d.Swizzle +- uid: OpenTK.Mathematics.Matrix3d.Swizzled* + commentId: Overload:OpenTK.Mathematics.Matrix3d.Swizzled + href: OpenTK.Mathematics.Matrix3d.html#OpenTK_Mathematics_Matrix3d_Swizzled_System_Int32_System_Int32_System_Int32_ + name: Swizzled + nameWithType: Matrix3d.Swizzled + fullName: OpenTK.Mathematics.Matrix3d.Swizzled - uid: OpenTK.Mathematics.Matrix3d.ClearScale* commentId: Overload:OpenTK.Mathematics.Matrix3d.ClearScale href: OpenTK.Mathematics.Matrix3d.html#OpenTK_Mathematics_Matrix3d_ClearScale @@ -3147,6 +3232,18 @@ references: name: CreateScale nameWithType: Matrix3d.CreateScale fullName: OpenTK.Mathematics.Matrix3d.CreateScale +- uid: OpenTK.Mathematics.Vector3.Zyx + commentId: P:OpenTK.Mathematics.Vector3.Zyx + href: OpenTK.Mathematics.Vector3.html#OpenTK_Mathematics_Vector3_Zyx + name: Zyx + nameWithType: Vector3.Zyx + fullName: OpenTK.Mathematics.Vector3.Zyx +- uid: OpenTK.Mathematics.Matrix3d.CreateSwizzle* + commentId: Overload:OpenTK.Mathematics.Matrix3d.CreateSwizzle + href: OpenTK.Mathematics.Matrix3d.html#OpenTK_Mathematics_Matrix3d_CreateSwizzle_System_Int32_System_Int32_System_Int32_ + name: CreateSwizzle + nameWithType: Matrix3d.CreateSwizzle + fullName: OpenTK.Mathematics.Matrix3d.CreateSwizzle - uid: OpenTK.Mathematics.Matrix3d.Add* commentId: Overload:OpenTK.Mathematics.Matrix3d.Add href: OpenTK.Mathematics.Matrix3d.html#OpenTK_Mathematics_Matrix3d_Add_OpenTK_Mathematics_Matrix3d_OpenTK_Mathematics_Matrix3d_ @@ -3166,6 +3263,13 @@ references: name: InvalidOperationException nameWithType: InvalidOperationException fullName: System.InvalidOperationException +- uid: System.IndexOutOfRangeException + commentId: T:System.IndexOutOfRangeException + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.indexoutofrangeexception + name: IndexOutOfRangeException + nameWithType: IndexOutOfRangeException + fullName: System.IndexOutOfRangeException - uid: OpenTK.Mathematics.Matrix3d.op_Multiply* commentId: Overload:OpenTK.Mathematics.Matrix3d.op_Multiply href: OpenTK.Mathematics.Matrix3d.html#OpenTK_Mathematics_Matrix3d_op_Multiply_OpenTK_Mathematics_Matrix3d_OpenTK_Mathematics_Matrix3d_ diff --git a/api/OpenTK.Mathematics.Matrix3x2.yml b/api/OpenTK.Mathematics.Matrix3x2.yml index 78d26603..56968ad7 100644 --- a/api/OpenTK.Mathematics.Matrix3x2.yml +++ b/api/OpenTK.Mathematics.Matrix3x2.yml @@ -43,6 +43,10 @@ items: - OpenTK.Mathematics.Matrix3x2.Row2 - OpenTK.Mathematics.Matrix3x2.Subtract(OpenTK.Mathematics.Matrix3x2,OpenTK.Mathematics.Matrix3x2) - OpenTK.Mathematics.Matrix3x2.Subtract(OpenTK.Mathematics.Matrix3x2@,OpenTK.Mathematics.Matrix3x2@,OpenTK.Mathematics.Matrix3x2@) + - OpenTK.Mathematics.Matrix3x2.Swizzle(OpenTK.Mathematics.Matrix3x2,System.Int32,System.Int32,System.Int32) + - OpenTK.Mathematics.Matrix3x2.Swizzle(OpenTK.Mathematics.Matrix3x2@,System.Int32,System.Int32,System.Int32,OpenTK.Mathematics.Matrix3x2@) + - OpenTK.Mathematics.Matrix3x2.Swizzle(System.Int32,System.Int32,System.Int32) + - OpenTK.Mathematics.Matrix3x2.Swizzled(System.Int32,System.Int32,System.Int32) - OpenTK.Mathematics.Matrix3x2.ToString - OpenTK.Mathematics.Matrix3x2.ToString(System.IFormatProvider) - OpenTK.Mathematics.Matrix3x2.ToString(System.String) @@ -50,6 +54,7 @@ items: - OpenTK.Mathematics.Matrix3x2.Trace - OpenTK.Mathematics.Matrix3x2.Transpose(OpenTK.Mathematics.Matrix3x2) - OpenTK.Mathematics.Matrix3x2.Transpose(OpenTK.Mathematics.Matrix3x2@,OpenTK.Mathematics.Matrix2x3@) + - OpenTK.Mathematics.Matrix3x2.Transposed - OpenTK.Mathematics.Matrix3x2.Zero - OpenTK.Mathematics.Matrix3x2.op_Addition(OpenTK.Mathematics.Matrix3x2,OpenTK.Mathematics.Matrix3x2) - OpenTK.Mathematics.Matrix3x2.op_Equality(OpenTK.Mathematics.Matrix3x2,OpenTK.Mathematics.Matrix3x2) @@ -68,13 +73,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x2 type: Struct source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Matrix3x2 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x2.cs - startLine: 32 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x2.cs + startLine: 33 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -112,13 +113,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x2.Row0 type: Field source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Row0 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x2.cs - startLine: 39 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x2.cs + startLine: 40 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -141,13 +138,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x2.Row1 type: Field source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Row1 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x2.cs - startLine: 44 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x2.cs + startLine: 45 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -170,13 +163,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x2.Row2 type: Field source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Row2 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x2.cs - startLine: 49 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x2.cs + startLine: 50 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -199,13 +188,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x2.Zero type: Field source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Zero - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x2.cs - startLine: 54 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x2.cs + startLine: 55 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -228,13 +213,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x2.Matrix3x2(OpenTK.Mathematics.Vector2, OpenTK.Mathematics.Vector2, OpenTK.Mathematics.Vector2) type: Constructor source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x2.cs - startLine: 62 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x2.cs + startLine: 63 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -269,13 +250,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x2.Matrix3x2(float, float, float, float, float, float) type: Constructor source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x2.cs - startLine: 78 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x2.cs + startLine: 79 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -319,20 +296,16 @@ items: fullName: OpenTK.Mathematics.Matrix3x2.Column0 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Column0 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x2.cs - startLine: 94 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x2.cs + startLine: 95 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the first column of this matrix. example: [] syntax: - content: public Vector3 Column0 { get; set; } + content: public Vector3 Column0 { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector3 @@ -350,20 +323,16 @@ items: fullName: OpenTK.Mathematics.Matrix3x2.Column1 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Column1 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x2.cs - startLine: 108 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x2.cs + startLine: 109 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the second column of this matrix. example: [] syntax: - content: public Vector3 Column1 { get; set; } + content: public Vector3 Column1 { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector3 @@ -381,20 +350,16 @@ items: fullName: OpenTK.Mathematics.Matrix3x2.M11 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M11 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x2.cs - startLine: 122 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x2.cs + startLine: 123 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 1, column 1 of this instance. example: [] syntax: - content: public float M11 { get; set; } + content: public float M11 { readonly get; set; } parameters: [] return: type: System.Single @@ -412,20 +377,16 @@ items: fullName: OpenTK.Mathematics.Matrix3x2.M12 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M12 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x2.cs - startLine: 131 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x2.cs + startLine: 132 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 1, column 2 of this instance. example: [] syntax: - content: public float M12 { get; set; } + content: public float M12 { readonly get; set; } parameters: [] return: type: System.Single @@ -443,20 +404,16 @@ items: fullName: OpenTK.Mathematics.Matrix3x2.M21 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M21 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x2.cs - startLine: 140 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x2.cs + startLine: 141 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 2, column 1 of this instance. example: [] syntax: - content: public float M21 { get; set; } + content: public float M21 { readonly get; set; } parameters: [] return: type: System.Single @@ -474,20 +431,16 @@ items: fullName: OpenTK.Mathematics.Matrix3x2.M22 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M22 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x2.cs - startLine: 149 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x2.cs + startLine: 150 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 2, column 2 of this instance. example: [] syntax: - content: public float M22 { get; set; } + content: public float M22 { readonly get; set; } parameters: [] return: type: System.Single @@ -505,20 +458,16 @@ items: fullName: OpenTK.Mathematics.Matrix3x2.M31 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M31 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x2.cs - startLine: 158 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x2.cs + startLine: 159 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 3, column 1 of this instance. example: [] syntax: - content: public float M31 { get; set; } + content: public float M31 { readonly get; set; } parameters: [] return: type: System.Single @@ -536,20 +485,16 @@ items: fullName: OpenTK.Mathematics.Matrix3x2.M32 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M32 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x2.cs - startLine: 167 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x2.cs + startLine: 168 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 3, column 2 of this instance. example: [] syntax: - content: public float M32 { get; set; } + content: public float M32 { readonly get; set; } parameters: [] return: type: System.Single @@ -567,20 +512,16 @@ items: fullName: OpenTK.Mathematics.Matrix3x2.Diagonal type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Diagonal - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x2.cs - startLine: 176 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x2.cs + startLine: 177 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the values along the main diagonal of the matrix. example: [] syntax: - content: public Vector2 Diagonal { get; set; } + content: public Vector2 Diagonal { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector2 @@ -598,20 +539,16 @@ items: fullName: OpenTK.Mathematics.Matrix3x2.Trace type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Trace - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x2.cs - startLine: 189 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x2.cs + startLine: 190 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets the trace of the matrix, the sum of the values along the diagonal. example: [] syntax: - content: public float Trace { get; } + content: public readonly float Trace { get; } parameters: [] return: type: System.Single @@ -629,20 +566,16 @@ items: fullName: OpenTK.Mathematics.Matrix3x2.this[int, int] type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: this[] - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x2.cs - startLine: 197 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x2.cs + startLine: 198 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at a specified row and column. example: [] syntax: - content: public float this[int rowIndex, int columnIndex] { get; set; } + content: public float this[int rowIndex, int columnIndex] { readonly get; set; } parameters: - id: rowIndex type: System.Int32 @@ -658,6 +591,110 @@ items: nameWithType.vb: Matrix3x2.this[](Integer, Integer) fullName.vb: OpenTK.Mathematics.Matrix3x2.this[](Integer, Integer) name.vb: this[](Integer, Integer) +- uid: OpenTK.Mathematics.Matrix3x2.Transposed + commentId: M:OpenTK.Mathematics.Matrix3x2.Transposed + id: Transposed + parent: OpenTK.Mathematics.Matrix3x2 + langs: + - csharp + - vb + name: Transposed() + nameWithType: Matrix3x2.Transposed() + fullName: OpenTK.Mathematics.Matrix3x2.Transposed() + type: Method + source: + id: Transposed + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x2.cs + startLine: 247 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: Returns a transposed copy of this instance. + example: [] + syntax: + content: public readonly Matrix2x3 Transposed() + return: + type: OpenTK.Mathematics.Matrix2x3 + description: The transposed copy. + content.vb: Public Function Transposed() As Matrix2x3 + overload: OpenTK.Mathematics.Matrix3x2.Transposed* +- uid: OpenTK.Mathematics.Matrix3x2.Swizzle(System.Int32,System.Int32,System.Int32) + commentId: M:OpenTK.Mathematics.Matrix3x2.Swizzle(System.Int32,System.Int32,System.Int32) + id: Swizzle(System.Int32,System.Int32,System.Int32) + parent: OpenTK.Mathematics.Matrix3x2 + langs: + - csharp + - vb + name: Swizzle(int, int, int) + nameWithType: Matrix3x2.Swizzle(int, int, int) + fullName: OpenTK.Mathematics.Matrix3x2.Swizzle(int, int, int) + type: Method + source: + id: Swizzle + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x2.cs + startLine: 258 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: Swizzles this instance. Swiches places of the rows of the matrix. + example: [] + syntax: + content: public void Swizzle(int rowForRow0, int rowForRow1, int rowForRow2) + parameters: + - id: rowForRow0 + type: System.Int32 + description: Which row to place in . + - id: rowForRow1 + type: System.Int32 + description: Which row to place in . + - id: rowForRow2 + type: System.Int32 + description: Which row to place in . + content.vb: Public Sub Swizzle(rowForRow0 As Integer, rowForRow1 As Integer, rowForRow2 As Integer) + overload: OpenTK.Mathematics.Matrix3x2.Swizzle* + nameWithType.vb: Matrix3x2.Swizzle(Integer, Integer, Integer) + fullName.vb: OpenTK.Mathematics.Matrix3x2.Swizzle(Integer, Integer, Integer) + name.vb: Swizzle(Integer, Integer, Integer) +- uid: OpenTK.Mathematics.Matrix3x2.Swizzled(System.Int32,System.Int32,System.Int32) + commentId: M:OpenTK.Mathematics.Matrix3x2.Swizzled(System.Int32,System.Int32,System.Int32) + id: Swizzled(System.Int32,System.Int32,System.Int32) + parent: OpenTK.Mathematics.Matrix3x2 + langs: + - csharp + - vb + name: Swizzled(int, int, int) + nameWithType: Matrix3x2.Swizzled(int, int, int) + fullName: OpenTK.Mathematics.Matrix3x2.Swizzled(int, int, int) + type: Method + source: + id: Swizzled + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x2.cs + startLine: 270 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: Returns a swizzled copy of this instance. + example: [] + syntax: + content: public readonly Matrix3x2 Swizzled(int rowForRow0, int rowForRow1, int rowForRow2) + parameters: + - id: rowForRow0 + type: System.Int32 + description: Which row to place in . + - id: rowForRow1 + type: System.Int32 + description: Which row to place in . + - id: rowForRow2 + type: System.Int32 + description: Which row to place in . + return: + type: OpenTK.Mathematics.Matrix3x2 + description: The swizzled copy. + content.vb: Public Function Swizzled(rowForRow0 As Integer, rowForRow1 As Integer, rowForRow2 As Integer) As Matrix3x2 + overload: OpenTK.Mathematics.Matrix3x2.Swizzled* + nameWithType.vb: Matrix3x2.Swizzled(Integer, Integer, Integer) + fullName.vb: OpenTK.Mathematics.Matrix3x2.Swizzled(Integer, Integer, Integer) + name.vb: Swizzled(Integer, Integer, Integer) - uid: OpenTK.Mathematics.Matrix3x2.CreateRotation(System.Single,OpenTK.Mathematics.Matrix3x2@) commentId: M:OpenTK.Mathematics.Matrix3x2.CreateRotation(System.Single,OpenTK.Mathematics.Matrix3x2@) id: CreateRotation(System.Single,OpenTK.Mathematics.Matrix3x2@) @@ -670,13 +707,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x2.CreateRotation(float, out OpenTK.Mathematics.Matrix3x2) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateRotation - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x2.cs - startLine: 247 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x2.cs + startLine: 282 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -708,13 +741,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x2.CreateRotation(float) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateRotation - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x2.cs - startLine: 265 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x2.cs + startLine: 300 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -756,13 +785,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x2.CreateScale(float, out OpenTK.Mathematics.Matrix3x2) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateScale - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x2.cs - startLine: 277 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x2.cs + startLine: 312 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -794,13 +819,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x2.CreateScale(float) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateScale - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x2.cs - startLine: 292 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x2.cs + startLine: 327 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -842,13 +863,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x2.CreateScale(OpenTK.Mathematics.Vector2, out OpenTK.Mathematics.Matrix3x2) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateScale - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x2.cs - startLine: 304 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x2.cs + startLine: 339 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -880,13 +897,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x2.CreateScale(OpenTK.Mathematics.Vector2) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateScale - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x2.cs - startLine: 319 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x2.cs + startLine: 354 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -925,13 +938,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x2.CreateScale(float, float, out OpenTK.Mathematics.Matrix3x2) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateScale - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x2.cs - startLine: 332 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x2.cs + startLine: 367 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -966,13 +975,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x2.CreateScale(float, float) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateScale - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x2.cs - startLine: 348 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x2.cs + startLine: 383 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1017,13 +1022,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x2.Mult(in OpenTK.Mathematics.Matrix3x2, float, out OpenTK.Mathematics.Matrix3x2) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Mult - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x2.cs - startLine: 361 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x2.cs + startLine: 396 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1058,13 +1059,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x2.Mult(OpenTK.Mathematics.Matrix3x2, float) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Mult - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x2.cs - startLine: 377 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x2.cs + startLine: 412 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1109,13 +1106,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x2.Mult(in OpenTK.Mathematics.Matrix3x2, in OpenTK.Mathematics.Matrix2, out OpenTK.Mathematics.Matrix3x2) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Mult - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x2.cs - startLine: 390 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x2.cs + startLine: 425 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1150,13 +1143,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x2.Mult(OpenTK.Mathematics.Matrix3x2, OpenTK.Mathematics.Matrix2) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Mult - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x2.cs - startLine: 417 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x2.cs + startLine: 452 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1198,13 +1187,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x2.Mult(in OpenTK.Mathematics.Matrix3x2, in OpenTK.Mathematics.Matrix2x3, out OpenTK.Mathematics.Matrix3) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Mult - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x2.cs - startLine: 430 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x2.cs + startLine: 465 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1239,13 +1224,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x2.Mult(OpenTK.Mathematics.Matrix3x2, OpenTK.Mathematics.Matrix2x3) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Mult - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x2.cs - startLine: 462 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x2.cs + startLine: 497 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1287,13 +1268,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x2.Mult(in OpenTK.Mathematics.Matrix3x2, in OpenTK.Mathematics.Matrix2x4, out OpenTK.Mathematics.Matrix3x4) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Mult - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x2.cs - startLine: 475 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x2.cs + startLine: 510 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1328,13 +1305,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x2.Mult(OpenTK.Mathematics.Matrix3x2, OpenTK.Mathematics.Matrix2x4) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Mult - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x2.cs - startLine: 512 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x2.cs + startLine: 547 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1376,13 +1349,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x2.Add(in OpenTK.Mathematics.Matrix3x2, in OpenTK.Mathematics.Matrix3x2, out OpenTK.Mathematics.Matrix3x2) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Add - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x2.cs - startLine: 525 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x2.cs + startLine: 560 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1417,13 +1386,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x2.Add(OpenTK.Mathematics.Matrix3x2, OpenTK.Mathematics.Matrix3x2) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Add - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x2.cs - startLine: 541 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x2.cs + startLine: 576 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1465,13 +1430,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x2.Subtract(in OpenTK.Mathematics.Matrix3x2, in OpenTK.Mathematics.Matrix3x2, out OpenTK.Mathematics.Matrix3x2) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Subtract - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x2.cs - startLine: 554 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x2.cs + startLine: 589 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1506,13 +1467,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x2.Subtract(OpenTK.Mathematics.Matrix3x2, OpenTK.Mathematics.Matrix3x2) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Subtract - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x2.cs - startLine: 570 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x2.cs + startLine: 605 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1554,13 +1511,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x2.Transpose(in OpenTK.Mathematics.Matrix3x2, out OpenTK.Mathematics.Matrix2x3) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Transpose - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x2.cs - startLine: 582 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x2.cs + startLine: 617 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1592,13 +1545,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x2.Transpose(OpenTK.Mathematics.Matrix3x2) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Transpose - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x2.cs - startLine: 597 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x2.cs + startLine: 632 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1625,6 +1574,100 @@ items: - type: System.Diagnostics.Contracts.PureAttribute ctor: System.Diagnostics.Contracts.PureAttribute.#ctor arguments: [] +- uid: OpenTK.Mathematics.Matrix3x2.Swizzle(OpenTK.Mathematics.Matrix3x2,System.Int32,System.Int32,System.Int32) + commentId: M:OpenTK.Mathematics.Matrix3x2.Swizzle(OpenTK.Mathematics.Matrix3x2,System.Int32,System.Int32,System.Int32) + id: Swizzle(OpenTK.Mathematics.Matrix3x2,System.Int32,System.Int32,System.Int32) + parent: OpenTK.Mathematics.Matrix3x2 + langs: + - csharp + - vb + name: Swizzle(Matrix3x2, int, int, int) + nameWithType: Matrix3x2.Swizzle(Matrix3x2, int, int, int) + fullName: OpenTK.Mathematics.Matrix3x2.Swizzle(OpenTK.Mathematics.Matrix3x2, int, int, int) + type: Method + source: + id: Swizzle + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x2.cs + startLine: 648 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: Swizzles a matrix, i.e. switches rows of the matrix. + example: [] + syntax: + content: public static Matrix3x2 Swizzle(Matrix3x2 mat, int rowForRow0, int rowForRow1, int rowForRow2) + parameters: + - id: mat + type: OpenTK.Mathematics.Matrix3x2 + description: The matrix to swizzle. + - id: rowForRow0 + type: System.Int32 + description: Which row to place in . + - id: rowForRow1 + type: System.Int32 + description: Which row to place in . + - id: rowForRow2 + type: System.Int32 + description: Which row to place in . + return: + type: OpenTK.Mathematics.Matrix3x2 + description: The swizzled matrix. + content.vb: Public Shared Function Swizzle(mat As Matrix3x2, rowForRow0 As Integer, rowForRow1 As Integer, rowForRow2 As Integer) As Matrix3x2 + overload: OpenTK.Mathematics.Matrix3x2.Swizzle* + exceptions: + - type: System.IndexOutOfRangeException + commentId: T:System.IndexOutOfRangeException + description: If any of the rows are outside of the range [0, 2]. + nameWithType.vb: Matrix3x2.Swizzle(Matrix3x2, Integer, Integer, Integer) + fullName.vb: OpenTK.Mathematics.Matrix3x2.Swizzle(OpenTK.Mathematics.Matrix3x2, Integer, Integer, Integer) + name.vb: Swizzle(Matrix3x2, Integer, Integer, Integer) +- uid: OpenTK.Mathematics.Matrix3x2.Swizzle(OpenTK.Mathematics.Matrix3x2@,System.Int32,System.Int32,System.Int32,OpenTK.Mathematics.Matrix3x2@) + commentId: M:OpenTK.Mathematics.Matrix3x2.Swizzle(OpenTK.Mathematics.Matrix3x2@,System.Int32,System.Int32,System.Int32,OpenTK.Mathematics.Matrix3x2@) + id: Swizzle(OpenTK.Mathematics.Matrix3x2@,System.Int32,System.Int32,System.Int32,OpenTK.Mathematics.Matrix3x2@) + parent: OpenTK.Mathematics.Matrix3x2 + langs: + - csharp + - vb + name: Swizzle(in Matrix3x2, int, int, int, out Matrix3x2) + nameWithType: Matrix3x2.Swizzle(in Matrix3x2, int, int, int, out Matrix3x2) + fullName: OpenTK.Mathematics.Matrix3x2.Swizzle(in OpenTK.Mathematics.Matrix3x2, int, int, int, out OpenTK.Mathematics.Matrix3x2) + type: Method + source: + id: Swizzle + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x2.cs + startLine: 663 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: Swizzles a matrix, i.e. switches rows of the matrix. + example: [] + syntax: + content: public static void Swizzle(in Matrix3x2 mat, int rowForRow0, int rowForRow1, int rowForRow2, out Matrix3x2 result) + parameters: + - id: mat + type: OpenTK.Mathematics.Matrix3x2 + description: The matrix to swizzle. + - id: rowForRow0 + type: System.Int32 + description: Which row to place in . + - id: rowForRow1 + type: System.Int32 + description: Which row to place in . + - id: rowForRow2 + type: System.Int32 + description: Which row to place in . + - id: result + type: OpenTK.Mathematics.Matrix3x2 + description: The swizzled matrix. + content.vb: Public Shared Sub Swizzle(mat As Matrix3x2, rowForRow0 As Integer, rowForRow1 As Integer, rowForRow2 As Integer, result As Matrix3x2) + overload: OpenTK.Mathematics.Matrix3x2.Swizzle* + exceptions: + - type: System.IndexOutOfRangeException + commentId: T:System.IndexOutOfRangeException + description: If any of the rows are outside of the range [0, 2]. + nameWithType.vb: Matrix3x2.Swizzle(Matrix3x2, Integer, Integer, Integer, Matrix3x2) + fullName.vb: OpenTK.Mathematics.Matrix3x2.Swizzle(OpenTK.Mathematics.Matrix3x2, Integer, Integer, Integer, OpenTK.Mathematics.Matrix3x2) + name.vb: Swizzle(Matrix3x2, Integer, Integer, Integer, Matrix3x2) - uid: OpenTK.Mathematics.Matrix3x2.op_Multiply(System.Single,OpenTK.Mathematics.Matrix3x2) commentId: M:OpenTK.Mathematics.Matrix3x2.op_Multiply(System.Single,OpenTK.Mathematics.Matrix3x2) id: op_Multiply(System.Single,OpenTK.Mathematics.Matrix3x2) @@ -1637,13 +1680,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x2.operator *(float, OpenTK.Mathematics.Matrix3x2) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Multiply - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x2.cs - startLine: 610 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x2.cs + startLine: 696 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1688,13 +1727,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x2.operator *(OpenTK.Mathematics.Matrix3x2, float) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Multiply - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x2.cs - startLine: 622 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x2.cs + startLine: 708 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1739,13 +1774,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x2.operator *(OpenTK.Mathematics.Matrix3x2, OpenTK.Mathematics.Matrix2) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Multiply - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x2.cs - startLine: 634 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x2.cs + startLine: 720 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1790,13 +1821,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x2.operator *(OpenTK.Mathematics.Matrix3x2, OpenTK.Mathematics.Matrix2x3) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Multiply - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x2.cs - startLine: 646 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x2.cs + startLine: 732 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1841,13 +1868,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x2.operator *(OpenTK.Mathematics.Matrix3x2, OpenTK.Mathematics.Matrix2x4) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Multiply - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x2.cs - startLine: 658 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x2.cs + startLine: 744 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1892,13 +1915,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x2.operator +(OpenTK.Mathematics.Matrix3x2, OpenTK.Mathematics.Matrix3x2) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Addition - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x2.cs - startLine: 670 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x2.cs + startLine: 756 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1943,13 +1962,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x2.operator -(OpenTK.Mathematics.Matrix3x2, OpenTK.Mathematics.Matrix3x2) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Subtraction - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x2.cs - startLine: 682 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x2.cs + startLine: 768 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1994,13 +2009,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x2.operator ==(OpenTK.Mathematics.Matrix3x2, OpenTK.Mathematics.Matrix3x2) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Equality - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x2.cs - startLine: 694 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x2.cs + startLine: 780 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2045,13 +2056,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x2.operator !=(OpenTK.Mathematics.Matrix3x2, OpenTK.Mathematics.Matrix3x2) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Inequality - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x2.cs - startLine: 706 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x2.cs + startLine: 792 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2096,20 +2103,16 @@ items: fullName: OpenTK.Mathematics.Matrix3x2.ToString() type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x2.cs - startLine: 716 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x2.cs + startLine: 802 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Returns a System.String that represents the current Matrix3d. example: [] syntax: - content: public override string ToString() + content: public override readonly string ToString() return: type: System.String description: The string representation of the matrix. @@ -2128,20 +2131,16 @@ items: fullName: OpenTK.Mathematics.Matrix3x2.ToString(string) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x2.cs - startLine: 722 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x2.cs + startLine: 808 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Formats the value of the current instance using the specified format. example: [] syntax: - content: public string ToString(string format) + content: public readonly string ToString(string format) parameters: - id: format type: System.String @@ -2171,20 +2170,16 @@ items: fullName: OpenTK.Mathematics.Matrix3x2.ToString(System.IFormatProvider) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x2.cs - startLine: 728 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x2.cs + startLine: 814 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Formats the value of the current instance using the specified format. example: [] syntax: - content: public string ToString(IFormatProvider formatProvider) + content: public readonly string ToString(IFormatProvider formatProvider) parameters: - id: formatProvider type: System.IFormatProvider @@ -2211,20 +2206,16 @@ items: fullName: OpenTK.Mathematics.Matrix3x2.ToString(string, System.IFormatProvider) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x2.cs - startLine: 734 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x2.cs + startLine: 820 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Formats the value of the current instance using the specified format. example: [] syntax: - content: public string ToString(string format, IFormatProvider formatProvider) + content: public readonly string ToString(string format, IFormatProvider formatProvider) parameters: - id: format type: System.String @@ -2264,20 +2255,16 @@ items: fullName: OpenTK.Mathematics.Matrix3x2.GetHashCode() type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetHashCode - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x2.cs - startLine: 746 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x2.cs + startLine: 832 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Returns the hashcode for this instance. example: [] syntax: - content: public override int GetHashCode() + content: public override readonly int GetHashCode() return: type: System.Int32 description: A System.Int32 containing the unique hashcode for this instance. @@ -2296,13 +2283,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x2.Equals(object) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Equals - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x2.cs - startLine: 756 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x2.cs + startLine: 842 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2312,7 +2295,7 @@ items: content: >- [Pure] - public override bool Equals(object obj) + public override readonly bool Equals(object obj) parameters: - id: obj type: System.Object @@ -2345,13 +2328,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x2.Equals(OpenTK.Mathematics.Matrix3x2) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Equals - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x2.cs - startLine: 767 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x2.cs + startLine: 853 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2361,7 +2340,7 @@ items: content: >- [Pure] - public bool Equals(Matrix3x2 other) + public readonly bool Equals(Matrix3x2 other) parameters: - id: other type: OpenTK.Mathematics.Matrix3x2 @@ -2725,6 +2704,49 @@ references: nameWithType.vb: Integer fullName.vb: Integer name.vb: Integer +- uid: OpenTK.Mathematics.Matrix3x2.Transposed* + commentId: Overload:OpenTK.Mathematics.Matrix3x2.Transposed + href: OpenTK.Mathematics.Matrix3x2.html#OpenTK_Mathematics_Matrix3x2_Transposed + name: Transposed + nameWithType: Matrix3x2.Transposed + fullName: OpenTK.Mathematics.Matrix3x2.Transposed +- uid: OpenTK.Mathematics.Matrix2x3 + commentId: T:OpenTK.Mathematics.Matrix2x3 + parent: OpenTK.Mathematics + href: OpenTK.Mathematics.Matrix2x3.html + name: Matrix2x3 + nameWithType: Matrix2x3 + fullName: OpenTK.Mathematics.Matrix2x3 +- uid: OpenTK.Mathematics.Matrix3x2.Row0 + commentId: F:OpenTK.Mathematics.Matrix3x2.Row0 + href: OpenTK.Mathematics.Matrix3x2.html#OpenTK_Mathematics_Matrix3x2_Row0 + name: Row0 + nameWithType: Matrix3x2.Row0 + fullName: OpenTK.Mathematics.Matrix3x2.Row0 +- uid: OpenTK.Mathematics.Matrix3x2.Row1 + commentId: F:OpenTK.Mathematics.Matrix3x2.Row1 + href: OpenTK.Mathematics.Matrix3x2.html#OpenTK_Mathematics_Matrix3x2_Row1 + name: Row1 + nameWithType: Matrix3x2.Row1 + fullName: OpenTK.Mathematics.Matrix3x2.Row1 +- uid: OpenTK.Mathematics.Matrix3x2.Row2 + commentId: F:OpenTK.Mathematics.Matrix3x2.Row2 + href: OpenTK.Mathematics.Matrix3x2.html#OpenTK_Mathematics_Matrix3x2_Row2 + name: Row2 + nameWithType: Matrix3x2.Row2 + fullName: OpenTK.Mathematics.Matrix3x2.Row2 +- uid: OpenTK.Mathematics.Matrix3x2.Swizzle* + commentId: Overload:OpenTK.Mathematics.Matrix3x2.Swizzle + href: OpenTK.Mathematics.Matrix3x2.html#OpenTK_Mathematics_Matrix3x2_Swizzle_System_Int32_System_Int32_System_Int32_ + name: Swizzle + nameWithType: Matrix3x2.Swizzle + fullName: OpenTK.Mathematics.Matrix3x2.Swizzle +- uid: OpenTK.Mathematics.Matrix3x2.Swizzled* + commentId: Overload:OpenTK.Mathematics.Matrix3x2.Swizzled + href: OpenTK.Mathematics.Matrix3x2.html#OpenTK_Mathematics_Matrix3x2_Swizzled_System_Int32_System_Int32_System_Int32_ + name: Swizzled + nameWithType: Matrix3x2.Swizzled + fullName: OpenTK.Mathematics.Matrix3x2.Swizzled - uid: OpenTK.Mathematics.Matrix3x2.CreateRotation* commentId: Overload:OpenTK.Mathematics.Matrix3x2.CreateRotation href: OpenTK.Mathematics.Matrix3x2.html#OpenTK_Mathematics_Matrix3x2_CreateRotation_System_Single_OpenTK_Mathematics_Matrix3x2__ @@ -2750,13 +2772,6 @@ references: name: Matrix2 nameWithType: Matrix2 fullName: OpenTK.Mathematics.Matrix2 -- uid: OpenTK.Mathematics.Matrix2x3 - commentId: T:OpenTK.Mathematics.Matrix2x3 - parent: OpenTK.Mathematics - href: OpenTK.Mathematics.Matrix2x3.html - name: Matrix2x3 - nameWithType: Matrix2x3 - fullName: OpenTK.Mathematics.Matrix2x3 - uid: OpenTK.Mathematics.Matrix3 commentId: T:OpenTK.Mathematics.Matrix3 parent: OpenTK.Mathematics @@ -2796,6 +2811,13 @@ references: name: Transpose nameWithType: Matrix3x2.Transpose fullName: OpenTK.Mathematics.Matrix3x2.Transpose +- uid: System.IndexOutOfRangeException + commentId: T:System.IndexOutOfRangeException + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.indexoutofrangeexception + name: IndexOutOfRangeException + nameWithType: IndexOutOfRangeException + fullName: System.IndexOutOfRangeException - uid: OpenTK.Mathematics.Matrix3x2.op_Multiply* commentId: Overload:OpenTK.Mathematics.Matrix3x2.op_Multiply href: OpenTK.Mathematics.Matrix3x2.html#OpenTK_Mathematics_Matrix3x2_op_Multiply_System_Single_OpenTK_Mathematics_Matrix3x2_ diff --git a/api/OpenTK.Mathematics.Matrix3x2d.yml b/api/OpenTK.Mathematics.Matrix3x2d.yml index 78aba541..d536cc3c 100644 --- a/api/OpenTK.Mathematics.Matrix3x2d.yml +++ b/api/OpenTK.Mathematics.Matrix3x2d.yml @@ -43,6 +43,10 @@ items: - OpenTK.Mathematics.Matrix3x2d.Row2 - OpenTK.Mathematics.Matrix3x2d.Subtract(OpenTK.Mathematics.Matrix3x2d,OpenTK.Mathematics.Matrix3x2d) - OpenTK.Mathematics.Matrix3x2d.Subtract(OpenTK.Mathematics.Matrix3x2d@,OpenTK.Mathematics.Matrix3x2d@,OpenTK.Mathematics.Matrix3x2d@) + - OpenTK.Mathematics.Matrix3x2d.Swizzle(OpenTK.Mathematics.Matrix3x2d,System.Int32,System.Int32,System.Int32) + - OpenTK.Mathematics.Matrix3x2d.Swizzle(OpenTK.Mathematics.Matrix3x2d@,System.Int32,System.Int32,System.Int32,OpenTK.Mathematics.Matrix3x2d@) + - OpenTK.Mathematics.Matrix3x2d.Swizzle(System.Int32,System.Int32,System.Int32) + - OpenTK.Mathematics.Matrix3x2d.Swizzled(System.Int32,System.Int32,System.Int32) - OpenTK.Mathematics.Matrix3x2d.ToString - OpenTK.Mathematics.Matrix3x2d.ToString(System.IFormatProvider) - OpenTK.Mathematics.Matrix3x2d.ToString(System.String) @@ -50,6 +54,7 @@ items: - OpenTK.Mathematics.Matrix3x2d.Trace - OpenTK.Mathematics.Matrix3x2d.Transpose(OpenTK.Mathematics.Matrix3x2d) - OpenTK.Mathematics.Matrix3x2d.Transpose(OpenTK.Mathematics.Matrix3x2d@,OpenTK.Mathematics.Matrix2x3d@) + - OpenTK.Mathematics.Matrix3x2d.Transposed - OpenTK.Mathematics.Matrix3x2d.Zero - OpenTK.Mathematics.Matrix3x2d.op_Addition(OpenTK.Mathematics.Matrix3x2d,OpenTK.Mathematics.Matrix3x2d) - OpenTK.Mathematics.Matrix3x2d.op_Equality(OpenTK.Mathematics.Matrix3x2d,OpenTK.Mathematics.Matrix3x2d) @@ -68,13 +73,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x2d type: Struct source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Matrix3x2d - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x2d.cs - startLine: 32 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x2d.cs + startLine: 33 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -112,13 +113,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x2d.Row0 type: Field source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Row0 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x2d.cs - startLine: 39 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x2d.cs + startLine: 40 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -141,13 +138,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x2d.Row1 type: Field source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Row1 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x2d.cs - startLine: 44 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x2d.cs + startLine: 45 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -170,13 +163,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x2d.Row2 type: Field source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Row2 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x2d.cs - startLine: 49 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x2d.cs + startLine: 50 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -199,13 +188,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x2d.Zero type: Field source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Zero - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x2d.cs - startLine: 54 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x2d.cs + startLine: 55 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -228,13 +213,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x2d.Matrix3x2d(OpenTK.Mathematics.Vector2d, OpenTK.Mathematics.Vector2d, OpenTK.Mathematics.Vector2d) type: Constructor source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x2d.cs - startLine: 62 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x2d.cs + startLine: 63 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -269,13 +250,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x2d.Matrix3x2d(double, double, double, double, double, double) type: Constructor source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x2d.cs - startLine: 78 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x2d.cs + startLine: 79 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -319,20 +296,16 @@ items: fullName: OpenTK.Mathematics.Matrix3x2d.Column0 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Column0 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x2d.cs - startLine: 94 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x2d.cs + startLine: 95 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the first column of this matrix. example: [] syntax: - content: public Vector3d Column0 { get; set; } + content: public Vector3d Column0 { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector3d @@ -350,20 +323,16 @@ items: fullName: OpenTK.Mathematics.Matrix3x2d.Column1 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Column1 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x2d.cs - startLine: 108 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x2d.cs + startLine: 109 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the second column of this matrix. example: [] syntax: - content: public Vector3d Column1 { get; set; } + content: public Vector3d Column1 { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector3d @@ -381,20 +350,16 @@ items: fullName: OpenTK.Mathematics.Matrix3x2d.M11 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M11 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x2d.cs - startLine: 122 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x2d.cs + startLine: 123 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 1, column 1 of this instance. example: [] syntax: - content: public double M11 { get; set; } + content: public double M11 { readonly get; set; } parameters: [] return: type: System.Double @@ -412,20 +377,16 @@ items: fullName: OpenTK.Mathematics.Matrix3x2d.M12 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M12 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x2d.cs - startLine: 131 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x2d.cs + startLine: 132 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 1, column 2 of this instance. example: [] syntax: - content: public double M12 { get; set; } + content: public double M12 { readonly get; set; } parameters: [] return: type: System.Double @@ -443,20 +404,16 @@ items: fullName: OpenTK.Mathematics.Matrix3x2d.M21 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M21 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x2d.cs - startLine: 140 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x2d.cs + startLine: 141 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 2, column 1 of this instance. example: [] syntax: - content: public double M21 { get; set; } + content: public double M21 { readonly get; set; } parameters: [] return: type: System.Double @@ -474,20 +431,16 @@ items: fullName: OpenTK.Mathematics.Matrix3x2d.M22 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M22 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x2d.cs - startLine: 149 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x2d.cs + startLine: 150 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 2, column 2 of this instance. example: [] syntax: - content: public double M22 { get; set; } + content: public double M22 { readonly get; set; } parameters: [] return: type: System.Double @@ -505,20 +458,16 @@ items: fullName: OpenTK.Mathematics.Matrix3x2d.M31 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M31 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x2d.cs - startLine: 158 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x2d.cs + startLine: 159 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 3, column 1 of this instance. example: [] syntax: - content: public double M31 { get; set; } + content: public double M31 { readonly get; set; } parameters: [] return: type: System.Double @@ -536,20 +485,16 @@ items: fullName: OpenTK.Mathematics.Matrix3x2d.M32 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M32 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x2d.cs - startLine: 167 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x2d.cs + startLine: 168 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 3, column 2 of this instance. example: [] syntax: - content: public double M32 { get; set; } + content: public double M32 { readonly get; set; } parameters: [] return: type: System.Double @@ -567,20 +512,16 @@ items: fullName: OpenTK.Mathematics.Matrix3x2d.Diagonal type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Diagonal - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x2d.cs - startLine: 176 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x2d.cs + startLine: 177 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the values along the main diagonal of the matrix. example: [] syntax: - content: public Vector2d Diagonal { get; set; } + content: public Vector2d Diagonal { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector2d @@ -598,20 +539,16 @@ items: fullName: OpenTK.Mathematics.Matrix3x2d.Trace type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Trace - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x2d.cs - startLine: 189 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x2d.cs + startLine: 190 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets the trace of the matrix, the sum of the values along the diagonal. example: [] syntax: - content: public double Trace { get; } + content: public readonly double Trace { get; } parameters: [] return: type: System.Double @@ -629,20 +566,16 @@ items: fullName: OpenTK.Mathematics.Matrix3x2d.this[int, int] type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: this[] - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x2d.cs - startLine: 197 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x2d.cs + startLine: 198 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at a specified row and column. example: [] syntax: - content: public double this[int rowIndex, int columnIndex] { get; set; } + content: public double this[int rowIndex, int columnIndex] { readonly get; set; } parameters: - id: rowIndex type: System.Int32 @@ -658,6 +591,110 @@ items: nameWithType.vb: Matrix3x2d.this[](Integer, Integer) fullName.vb: OpenTK.Mathematics.Matrix3x2d.this[](Integer, Integer) name.vb: this[](Integer, Integer) +- uid: OpenTK.Mathematics.Matrix3x2d.Transposed + commentId: M:OpenTK.Mathematics.Matrix3x2d.Transposed + id: Transposed + parent: OpenTK.Mathematics.Matrix3x2d + langs: + - csharp + - vb + name: Transposed() + nameWithType: Matrix3x2d.Transposed() + fullName: OpenTK.Mathematics.Matrix3x2d.Transposed() + type: Method + source: + id: Transposed + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x2d.cs + startLine: 247 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: Returns a transposed copy of this instance. + example: [] + syntax: + content: public readonly Matrix2x3d Transposed() + return: + type: OpenTK.Mathematics.Matrix2x3d + description: The transposed copy. + content.vb: Public Function Transposed() As Matrix2x3d + overload: OpenTK.Mathematics.Matrix3x2d.Transposed* +- uid: OpenTK.Mathematics.Matrix3x2d.Swizzle(System.Int32,System.Int32,System.Int32) + commentId: M:OpenTK.Mathematics.Matrix3x2d.Swizzle(System.Int32,System.Int32,System.Int32) + id: Swizzle(System.Int32,System.Int32,System.Int32) + parent: OpenTK.Mathematics.Matrix3x2d + langs: + - csharp + - vb + name: Swizzle(int, int, int) + nameWithType: Matrix3x2d.Swizzle(int, int, int) + fullName: OpenTK.Mathematics.Matrix3x2d.Swizzle(int, int, int) + type: Method + source: + id: Swizzle + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x2d.cs + startLine: 258 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: Swizzles this instance. Swiches places of the rows of the matrix. + example: [] + syntax: + content: public void Swizzle(int rowForRow0, int rowForRow1, int rowForRow2) + parameters: + - id: rowForRow0 + type: System.Int32 + description: Which row to place in . + - id: rowForRow1 + type: System.Int32 + description: Which row to place in . + - id: rowForRow2 + type: System.Int32 + description: Which row to place in . + content.vb: Public Sub Swizzle(rowForRow0 As Integer, rowForRow1 As Integer, rowForRow2 As Integer) + overload: OpenTK.Mathematics.Matrix3x2d.Swizzle* + nameWithType.vb: Matrix3x2d.Swizzle(Integer, Integer, Integer) + fullName.vb: OpenTK.Mathematics.Matrix3x2d.Swizzle(Integer, Integer, Integer) + name.vb: Swizzle(Integer, Integer, Integer) +- uid: OpenTK.Mathematics.Matrix3x2d.Swizzled(System.Int32,System.Int32,System.Int32) + commentId: M:OpenTK.Mathematics.Matrix3x2d.Swizzled(System.Int32,System.Int32,System.Int32) + id: Swizzled(System.Int32,System.Int32,System.Int32) + parent: OpenTK.Mathematics.Matrix3x2d + langs: + - csharp + - vb + name: Swizzled(int, int, int) + nameWithType: Matrix3x2d.Swizzled(int, int, int) + fullName: OpenTK.Mathematics.Matrix3x2d.Swizzled(int, int, int) + type: Method + source: + id: Swizzled + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x2d.cs + startLine: 270 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: Returns a swizzled copy of this instance. + example: [] + syntax: + content: public readonly Matrix3x2d Swizzled(int rowForRow0, int rowForRow1, int rowForRow2) + parameters: + - id: rowForRow0 + type: System.Int32 + description: Which row to place in . + - id: rowForRow1 + type: System.Int32 + description: Which row to place in . + - id: rowForRow2 + type: System.Int32 + description: Which row to place in . + return: + type: OpenTK.Mathematics.Matrix3x2d + description: The swizzled copy. + content.vb: Public Function Swizzled(rowForRow0 As Integer, rowForRow1 As Integer, rowForRow2 As Integer) As Matrix3x2d + overload: OpenTK.Mathematics.Matrix3x2d.Swizzled* + nameWithType.vb: Matrix3x2d.Swizzled(Integer, Integer, Integer) + fullName.vb: OpenTK.Mathematics.Matrix3x2d.Swizzled(Integer, Integer, Integer) + name.vb: Swizzled(Integer, Integer, Integer) - uid: OpenTK.Mathematics.Matrix3x2d.CreateRotation(System.Double,OpenTK.Mathematics.Matrix3x2d@) commentId: M:OpenTK.Mathematics.Matrix3x2d.CreateRotation(System.Double,OpenTK.Mathematics.Matrix3x2d@) id: CreateRotation(System.Double,OpenTK.Mathematics.Matrix3x2d@) @@ -670,13 +707,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x2d.CreateRotation(double, out OpenTK.Mathematics.Matrix3x2d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateRotation - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x2d.cs - startLine: 247 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x2d.cs + startLine: 282 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -708,13 +741,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x2d.CreateRotation(double) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateRotation - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x2d.cs - startLine: 265 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x2d.cs + startLine: 300 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -756,13 +785,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x2d.CreateScale(double, out OpenTK.Mathematics.Matrix3x2d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateScale - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x2d.cs - startLine: 277 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x2d.cs + startLine: 312 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -794,13 +819,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x2d.CreateScale(double) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateScale - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x2d.cs - startLine: 292 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x2d.cs + startLine: 327 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -842,13 +863,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x2d.CreateScale(OpenTK.Mathematics.Vector2d, out OpenTK.Mathematics.Matrix3x2d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateScale - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x2d.cs - startLine: 304 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x2d.cs + startLine: 339 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -880,13 +897,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x2d.CreateScale(OpenTK.Mathematics.Vector2d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateScale - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x2d.cs - startLine: 319 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x2d.cs + startLine: 354 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -925,13 +938,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x2d.CreateScale(double, double, out OpenTK.Mathematics.Matrix3x2d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateScale - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x2d.cs - startLine: 332 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x2d.cs + startLine: 367 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -966,13 +975,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x2d.CreateScale(double, double) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateScale - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x2d.cs - startLine: 348 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x2d.cs + startLine: 383 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1017,13 +1022,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x2d.Mult(in OpenTK.Mathematics.Matrix3x2d, double, out OpenTK.Mathematics.Matrix3x2d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Mult - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x2d.cs - startLine: 361 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x2d.cs + startLine: 396 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1058,13 +1059,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x2d.Mult(OpenTK.Mathematics.Matrix3x2d, double) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Mult - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x2d.cs - startLine: 377 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x2d.cs + startLine: 412 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1109,13 +1106,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x2d.Mult(in OpenTK.Mathematics.Matrix3x2d, in OpenTK.Mathematics.Matrix2d, out OpenTK.Mathematics.Matrix3x2d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Mult - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x2d.cs - startLine: 390 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x2d.cs + startLine: 425 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1150,13 +1143,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x2d.Mult(OpenTK.Mathematics.Matrix3x2d, OpenTK.Mathematics.Matrix2d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Mult - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x2d.cs - startLine: 417 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x2d.cs + startLine: 452 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1198,13 +1187,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x2d.Mult(in OpenTK.Mathematics.Matrix3x2d, in OpenTK.Mathematics.Matrix2x3d, out OpenTK.Mathematics.Matrix3d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Mult - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x2d.cs - startLine: 430 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x2d.cs + startLine: 465 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1239,13 +1224,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x2d.Mult(OpenTK.Mathematics.Matrix3x2d, OpenTK.Mathematics.Matrix2x3d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Mult - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x2d.cs - startLine: 462 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x2d.cs + startLine: 497 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1287,13 +1268,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x2d.Mult(in OpenTK.Mathematics.Matrix3x2d, in OpenTK.Mathematics.Matrix2x4d, out OpenTK.Mathematics.Matrix3x4d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Mult - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x2d.cs - startLine: 475 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x2d.cs + startLine: 510 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1328,13 +1305,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x2d.Mult(OpenTK.Mathematics.Matrix3x2d, OpenTK.Mathematics.Matrix2x4d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Mult - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x2d.cs - startLine: 512 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x2d.cs + startLine: 547 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1376,13 +1349,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x2d.Add(in OpenTK.Mathematics.Matrix3x2d, in OpenTK.Mathematics.Matrix3x2d, out OpenTK.Mathematics.Matrix3x2d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Add - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x2d.cs - startLine: 525 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x2d.cs + startLine: 560 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1417,13 +1386,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x2d.Add(OpenTK.Mathematics.Matrix3x2d, OpenTK.Mathematics.Matrix3x2d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Add - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x2d.cs - startLine: 541 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x2d.cs + startLine: 576 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1465,13 +1430,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x2d.Subtract(in OpenTK.Mathematics.Matrix3x2d, in OpenTK.Mathematics.Matrix3x2d, out OpenTK.Mathematics.Matrix3x2d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Subtract - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x2d.cs - startLine: 554 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x2d.cs + startLine: 589 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1506,13 +1467,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x2d.Subtract(OpenTK.Mathematics.Matrix3x2d, OpenTK.Mathematics.Matrix3x2d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Subtract - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x2d.cs - startLine: 570 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x2d.cs + startLine: 605 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1554,13 +1511,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x2d.Transpose(in OpenTK.Mathematics.Matrix3x2d, out OpenTK.Mathematics.Matrix2x3d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Transpose - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x2d.cs - startLine: 582 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x2d.cs + startLine: 617 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1592,13 +1545,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x2d.Transpose(OpenTK.Mathematics.Matrix3x2d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Transpose - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x2d.cs - startLine: 597 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x2d.cs + startLine: 632 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1625,6 +1574,100 @@ items: - type: System.Diagnostics.Contracts.PureAttribute ctor: System.Diagnostics.Contracts.PureAttribute.#ctor arguments: [] +- uid: OpenTK.Mathematics.Matrix3x2d.Swizzle(OpenTK.Mathematics.Matrix3x2d,System.Int32,System.Int32,System.Int32) + commentId: M:OpenTK.Mathematics.Matrix3x2d.Swizzle(OpenTK.Mathematics.Matrix3x2d,System.Int32,System.Int32,System.Int32) + id: Swizzle(OpenTK.Mathematics.Matrix3x2d,System.Int32,System.Int32,System.Int32) + parent: OpenTK.Mathematics.Matrix3x2d + langs: + - csharp + - vb + name: Swizzle(Matrix3x2d, int, int, int) + nameWithType: Matrix3x2d.Swizzle(Matrix3x2d, int, int, int) + fullName: OpenTK.Mathematics.Matrix3x2d.Swizzle(OpenTK.Mathematics.Matrix3x2d, int, int, int) + type: Method + source: + id: Swizzle + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x2d.cs + startLine: 648 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: Swizzles a matrix, i.e. switches rows of the matrix. + example: [] + syntax: + content: public static Matrix3x2d Swizzle(Matrix3x2d mat, int rowForRow0, int rowForRow1, int rowForRow2) + parameters: + - id: mat + type: OpenTK.Mathematics.Matrix3x2d + description: The matrix to swizzle. + - id: rowForRow0 + type: System.Int32 + description: Which row to place in . + - id: rowForRow1 + type: System.Int32 + description: Which row to place in . + - id: rowForRow2 + type: System.Int32 + description: Which row to place in . + return: + type: OpenTK.Mathematics.Matrix3x2d + description: The swizzled matrix. + content.vb: Public Shared Function Swizzle(mat As Matrix3x2d, rowForRow0 As Integer, rowForRow1 As Integer, rowForRow2 As Integer) As Matrix3x2d + overload: OpenTK.Mathematics.Matrix3x2d.Swizzle* + exceptions: + - type: System.IndexOutOfRangeException + commentId: T:System.IndexOutOfRangeException + description: If any of the rows are outside of the range [0, 2]. + nameWithType.vb: Matrix3x2d.Swizzle(Matrix3x2d, Integer, Integer, Integer) + fullName.vb: OpenTK.Mathematics.Matrix3x2d.Swizzle(OpenTK.Mathematics.Matrix3x2d, Integer, Integer, Integer) + name.vb: Swizzle(Matrix3x2d, Integer, Integer, Integer) +- uid: OpenTK.Mathematics.Matrix3x2d.Swizzle(OpenTK.Mathematics.Matrix3x2d@,System.Int32,System.Int32,System.Int32,OpenTK.Mathematics.Matrix3x2d@) + commentId: M:OpenTK.Mathematics.Matrix3x2d.Swizzle(OpenTK.Mathematics.Matrix3x2d@,System.Int32,System.Int32,System.Int32,OpenTK.Mathematics.Matrix3x2d@) + id: Swizzle(OpenTK.Mathematics.Matrix3x2d@,System.Int32,System.Int32,System.Int32,OpenTK.Mathematics.Matrix3x2d@) + parent: OpenTK.Mathematics.Matrix3x2d + langs: + - csharp + - vb + name: Swizzle(in Matrix3x2d, int, int, int, out Matrix3x2d) + nameWithType: Matrix3x2d.Swizzle(in Matrix3x2d, int, int, int, out Matrix3x2d) + fullName: OpenTK.Mathematics.Matrix3x2d.Swizzle(in OpenTK.Mathematics.Matrix3x2d, int, int, int, out OpenTK.Mathematics.Matrix3x2d) + type: Method + source: + id: Swizzle + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x2d.cs + startLine: 663 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: Swizzles a matrix, i.e. switches rows of the matrix. + example: [] + syntax: + content: public static void Swizzle(in Matrix3x2d mat, int rowForRow0, int rowForRow1, int rowForRow2, out Matrix3x2d result) + parameters: + - id: mat + type: OpenTK.Mathematics.Matrix3x2d + description: The matrix to swizzle. + - id: rowForRow0 + type: System.Int32 + description: Which row to place in . + - id: rowForRow1 + type: System.Int32 + description: Which row to place in . + - id: rowForRow2 + type: System.Int32 + description: Which row to place in . + - id: result + type: OpenTK.Mathematics.Matrix3x2d + description: The swizzled matrix. + content.vb: Public Shared Sub Swizzle(mat As Matrix3x2d, rowForRow0 As Integer, rowForRow1 As Integer, rowForRow2 As Integer, result As Matrix3x2d) + overload: OpenTK.Mathematics.Matrix3x2d.Swizzle* + exceptions: + - type: System.IndexOutOfRangeException + commentId: T:System.IndexOutOfRangeException + description: If any of the rows are outside of the range [0, 2]. + nameWithType.vb: Matrix3x2d.Swizzle(Matrix3x2d, Integer, Integer, Integer, Matrix3x2d) + fullName.vb: OpenTK.Mathematics.Matrix3x2d.Swizzle(OpenTK.Mathematics.Matrix3x2d, Integer, Integer, Integer, OpenTK.Mathematics.Matrix3x2d) + name.vb: Swizzle(Matrix3x2d, Integer, Integer, Integer, Matrix3x2d) - uid: OpenTK.Mathematics.Matrix3x2d.op_Multiply(System.Double,OpenTK.Mathematics.Matrix3x2d) commentId: M:OpenTK.Mathematics.Matrix3x2d.op_Multiply(System.Double,OpenTK.Mathematics.Matrix3x2d) id: op_Multiply(System.Double,OpenTK.Mathematics.Matrix3x2d) @@ -1637,13 +1680,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x2d.operator *(double, OpenTK.Mathematics.Matrix3x2d) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Multiply - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x2d.cs - startLine: 610 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x2d.cs + startLine: 696 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1688,13 +1727,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x2d.operator *(OpenTK.Mathematics.Matrix3x2d, double) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Multiply - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x2d.cs - startLine: 622 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x2d.cs + startLine: 708 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1739,13 +1774,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x2d.operator *(OpenTK.Mathematics.Matrix3x2d, OpenTK.Mathematics.Matrix2d) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Multiply - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x2d.cs - startLine: 634 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x2d.cs + startLine: 720 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1790,13 +1821,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x2d.operator *(OpenTK.Mathematics.Matrix3x2d, OpenTK.Mathematics.Matrix2x3d) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Multiply - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x2d.cs - startLine: 646 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x2d.cs + startLine: 732 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1841,13 +1868,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x2d.operator *(OpenTK.Mathematics.Matrix3x2d, OpenTK.Mathematics.Matrix2x4d) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Multiply - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x2d.cs - startLine: 658 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x2d.cs + startLine: 744 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1892,13 +1915,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x2d.operator +(OpenTK.Mathematics.Matrix3x2d, OpenTK.Mathematics.Matrix3x2d) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Addition - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x2d.cs - startLine: 670 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x2d.cs + startLine: 756 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1943,13 +1962,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x2d.operator -(OpenTK.Mathematics.Matrix3x2d, OpenTK.Mathematics.Matrix3x2d) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Subtraction - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x2d.cs - startLine: 682 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x2d.cs + startLine: 768 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1994,13 +2009,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x2d.operator ==(OpenTK.Mathematics.Matrix3x2d, OpenTK.Mathematics.Matrix3x2d) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Equality - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x2d.cs - startLine: 694 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x2d.cs + startLine: 780 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2045,13 +2056,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x2d.operator !=(OpenTK.Mathematics.Matrix3x2d, OpenTK.Mathematics.Matrix3x2d) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Inequality - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x2d.cs - startLine: 706 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x2d.cs + startLine: 792 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2096,20 +2103,16 @@ items: fullName: OpenTK.Mathematics.Matrix3x2d.ToString() type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x2d.cs - startLine: 716 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x2d.cs + startLine: 802 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Returns a System.String that represents the current Matrix3d. example: [] syntax: - content: public override string ToString() + content: public override readonly string ToString() return: type: System.String description: The string representation of the matrix. @@ -2128,20 +2131,16 @@ items: fullName: OpenTK.Mathematics.Matrix3x2d.ToString(string) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x2d.cs - startLine: 722 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x2d.cs + startLine: 808 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Formats the value of the current instance using the specified format. example: [] syntax: - content: public string ToString(string format) + content: public readonly string ToString(string format) parameters: - id: format type: System.String @@ -2171,20 +2170,16 @@ items: fullName: OpenTK.Mathematics.Matrix3x2d.ToString(System.IFormatProvider) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x2d.cs - startLine: 728 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x2d.cs + startLine: 814 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Formats the value of the current instance using the specified format. example: [] syntax: - content: public string ToString(IFormatProvider formatProvider) + content: public readonly string ToString(IFormatProvider formatProvider) parameters: - id: formatProvider type: System.IFormatProvider @@ -2211,20 +2206,16 @@ items: fullName: OpenTK.Mathematics.Matrix3x2d.ToString(string, System.IFormatProvider) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x2d.cs - startLine: 734 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x2d.cs + startLine: 820 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Formats the value of the current instance using the specified format. example: [] syntax: - content: public string ToString(string format, IFormatProvider formatProvider) + content: public readonly string ToString(string format, IFormatProvider formatProvider) parameters: - id: format type: System.String @@ -2264,20 +2255,16 @@ items: fullName: OpenTK.Mathematics.Matrix3x2d.GetHashCode() type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetHashCode - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x2d.cs - startLine: 746 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x2d.cs + startLine: 832 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Returns the hashcode for this instance. example: [] syntax: - content: public override int GetHashCode() + content: public override readonly int GetHashCode() return: type: System.Int32 description: A System.Int32 containing the unique hashcode for this instance. @@ -2296,13 +2283,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x2d.Equals(object) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Equals - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x2d.cs - startLine: 756 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x2d.cs + startLine: 842 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2312,7 +2295,7 @@ items: content: >- [Pure] - public override bool Equals(object obj) + public override readonly bool Equals(object obj) parameters: - id: obj type: System.Object @@ -2345,13 +2328,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x2d.Equals(OpenTK.Mathematics.Matrix3x2d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Equals - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x2d.cs - startLine: 767 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x2d.cs + startLine: 853 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2361,7 +2340,7 @@ items: content: >- [Pure] - public bool Equals(Matrix3x2d other) + public readonly bool Equals(Matrix3x2d other) parameters: - id: other type: OpenTK.Mathematics.Matrix3x2d @@ -2725,6 +2704,49 @@ references: nameWithType.vb: Integer fullName.vb: Integer name.vb: Integer +- uid: OpenTK.Mathematics.Matrix3x2d.Transposed* + commentId: Overload:OpenTK.Mathematics.Matrix3x2d.Transposed + href: OpenTK.Mathematics.Matrix3x2d.html#OpenTK_Mathematics_Matrix3x2d_Transposed + name: Transposed + nameWithType: Matrix3x2d.Transposed + fullName: OpenTK.Mathematics.Matrix3x2d.Transposed +- uid: OpenTK.Mathematics.Matrix2x3d + commentId: T:OpenTK.Mathematics.Matrix2x3d + parent: OpenTK.Mathematics + href: OpenTK.Mathematics.Matrix2x3d.html + name: Matrix2x3d + nameWithType: Matrix2x3d + fullName: OpenTK.Mathematics.Matrix2x3d +- uid: OpenTK.Mathematics.Matrix3x2d.Row0 + commentId: F:OpenTK.Mathematics.Matrix3x2d.Row0 + href: OpenTK.Mathematics.Matrix3x2d.html#OpenTK_Mathematics_Matrix3x2d_Row0 + name: Row0 + nameWithType: Matrix3x2d.Row0 + fullName: OpenTK.Mathematics.Matrix3x2d.Row0 +- uid: OpenTK.Mathematics.Matrix3x2d.Row1 + commentId: F:OpenTK.Mathematics.Matrix3x2d.Row1 + href: OpenTK.Mathematics.Matrix3x2d.html#OpenTK_Mathematics_Matrix3x2d_Row1 + name: Row1 + nameWithType: Matrix3x2d.Row1 + fullName: OpenTK.Mathematics.Matrix3x2d.Row1 +- uid: OpenTK.Mathematics.Matrix3x2d.Row2 + commentId: F:OpenTK.Mathematics.Matrix3x2d.Row2 + href: OpenTK.Mathematics.Matrix3x2d.html#OpenTK_Mathematics_Matrix3x2d_Row2 + name: Row2 + nameWithType: Matrix3x2d.Row2 + fullName: OpenTK.Mathematics.Matrix3x2d.Row2 +- uid: OpenTK.Mathematics.Matrix3x2d.Swizzle* + commentId: Overload:OpenTK.Mathematics.Matrix3x2d.Swizzle + href: OpenTK.Mathematics.Matrix3x2d.html#OpenTK_Mathematics_Matrix3x2d_Swizzle_System_Int32_System_Int32_System_Int32_ + name: Swizzle + nameWithType: Matrix3x2d.Swizzle + fullName: OpenTK.Mathematics.Matrix3x2d.Swizzle +- uid: OpenTK.Mathematics.Matrix3x2d.Swizzled* + commentId: Overload:OpenTK.Mathematics.Matrix3x2d.Swizzled + href: OpenTK.Mathematics.Matrix3x2d.html#OpenTK_Mathematics_Matrix3x2d_Swizzled_System_Int32_System_Int32_System_Int32_ + name: Swizzled + nameWithType: Matrix3x2d.Swizzled + fullName: OpenTK.Mathematics.Matrix3x2d.Swizzled - uid: OpenTK.Mathematics.Matrix3x2d.CreateRotation* commentId: Overload:OpenTK.Mathematics.Matrix3x2d.CreateRotation href: OpenTK.Mathematics.Matrix3x2d.html#OpenTK_Mathematics_Matrix3x2d_CreateRotation_System_Double_OpenTK_Mathematics_Matrix3x2d__ @@ -2750,13 +2772,6 @@ references: name: Matrix2d nameWithType: Matrix2d fullName: OpenTK.Mathematics.Matrix2d -- uid: OpenTK.Mathematics.Matrix2x3d - commentId: T:OpenTK.Mathematics.Matrix2x3d - parent: OpenTK.Mathematics - href: OpenTK.Mathematics.Matrix2x3d.html - name: Matrix2x3d - nameWithType: Matrix2x3d - fullName: OpenTK.Mathematics.Matrix2x3d - uid: OpenTK.Mathematics.Matrix3d commentId: T:OpenTK.Mathematics.Matrix3d parent: OpenTK.Mathematics @@ -2796,6 +2811,13 @@ references: name: Transpose nameWithType: Matrix3x2d.Transpose fullName: OpenTK.Mathematics.Matrix3x2d.Transpose +- uid: System.IndexOutOfRangeException + commentId: T:System.IndexOutOfRangeException + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.indexoutofrangeexception + name: IndexOutOfRangeException + nameWithType: IndexOutOfRangeException + fullName: System.IndexOutOfRangeException - uid: OpenTK.Mathematics.Matrix3x2d.op_Multiply* commentId: Overload:OpenTK.Mathematics.Matrix3x2d.op_Multiply href: OpenTK.Mathematics.Matrix3x2d.html#OpenTK_Mathematics_Matrix3x2d_op_Multiply_System_Double_OpenTK_Mathematics_Matrix3x2d_ diff --git a/api/OpenTK.Mathematics.Matrix3x4.yml b/api/OpenTK.Mathematics.Matrix3x4.yml index c1f11072..b8e59734 100644 --- a/api/OpenTK.Mathematics.Matrix3x4.yml +++ b/api/OpenTK.Mathematics.Matrix3x4.yml @@ -37,6 +37,7 @@ items: - OpenTK.Mathematics.Matrix3x4.Invert - OpenTK.Mathematics.Matrix3x4.Invert(OpenTK.Mathematics.Matrix3x4) - OpenTK.Mathematics.Matrix3x4.Invert(OpenTK.Mathematics.Matrix3x4@,OpenTK.Mathematics.Matrix3x4@) + - OpenTK.Mathematics.Matrix3x4.Inverted - OpenTK.Mathematics.Matrix3x4.Item(System.Int32,System.Int32) - OpenTK.Mathematics.Matrix3x4.M11 - OpenTK.Mathematics.Matrix3x4.M12 @@ -61,6 +62,10 @@ items: - OpenTK.Mathematics.Matrix3x4.Row2 - OpenTK.Mathematics.Matrix3x4.Subtract(OpenTK.Mathematics.Matrix3x4,OpenTK.Mathematics.Matrix3x4) - OpenTK.Mathematics.Matrix3x4.Subtract(OpenTK.Mathematics.Matrix3x4@,OpenTK.Mathematics.Matrix3x4@,OpenTK.Mathematics.Matrix3x4@) + - OpenTK.Mathematics.Matrix3x4.Swizzle(OpenTK.Mathematics.Matrix3x4,System.Int32,System.Int32,System.Int32) + - OpenTK.Mathematics.Matrix3x4.Swizzle(OpenTK.Mathematics.Matrix3x4@,System.Int32,System.Int32,System.Int32,OpenTK.Mathematics.Matrix3x4@) + - OpenTK.Mathematics.Matrix3x4.Swizzle(System.Int32,System.Int32,System.Int32) + - OpenTK.Mathematics.Matrix3x4.Swizzled(System.Int32,System.Int32,System.Int32) - OpenTK.Mathematics.Matrix3x4.ToString - OpenTK.Mathematics.Matrix3x4.ToString(System.IFormatProvider) - OpenTK.Mathematics.Matrix3x4.ToString(System.String) @@ -68,6 +73,7 @@ items: - OpenTK.Mathematics.Matrix3x4.Trace - OpenTK.Mathematics.Matrix3x4.Transpose(OpenTK.Mathematics.Matrix3x4) - OpenTK.Mathematics.Matrix3x4.Transpose(OpenTK.Mathematics.Matrix3x4@,OpenTK.Mathematics.Matrix4x3@) + - OpenTK.Mathematics.Matrix3x4.Transposed - OpenTK.Mathematics.Matrix3x4.Zero - OpenTK.Mathematics.Matrix3x4.op_Addition(OpenTK.Mathematics.Matrix3x4,OpenTK.Mathematics.Matrix3x4) - OpenTK.Mathematics.Matrix3x4.op_Equality(OpenTK.Mathematics.Matrix3x4,OpenTK.Mathematics.Matrix3x4) @@ -84,13 +90,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x4 type: Struct source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Matrix3x4 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x4.cs - startLine: 32 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x4.cs + startLine: 33 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -128,13 +130,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x4.Row0 type: Field source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Row0 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x4.cs - startLine: 39 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x4.cs + startLine: 40 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -157,13 +155,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x4.Row1 type: Field source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Row1 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x4.cs - startLine: 44 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x4.cs + startLine: 45 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -186,13 +180,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x4.Row2 type: Field source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Row2 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x4.cs - startLine: 49 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x4.cs + startLine: 50 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -215,23 +205,19 @@ items: fullName: OpenTK.Mathematics.Matrix3x4.Zero type: Field source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Zero - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x4.cs - startLine: 54 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x4.cs + startLine: 55 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: The zero matrix. example: [] syntax: - content: public static Matrix3x4 Zero + content: public static readonly Matrix3x4 Zero return: type: OpenTK.Mathematics.Matrix3x4 - content.vb: Public Shared Zero As Matrix3x4 + content.vb: Public Shared ReadOnly Zero As Matrix3x4 - uid: OpenTK.Mathematics.Matrix3x4.#ctor(OpenTK.Mathematics.Vector4,OpenTK.Mathematics.Vector4,OpenTK.Mathematics.Vector4) commentId: M:OpenTK.Mathematics.Matrix3x4.#ctor(OpenTK.Mathematics.Vector4,OpenTK.Mathematics.Vector4,OpenTK.Mathematics.Vector4) id: '#ctor(OpenTK.Mathematics.Vector4,OpenTK.Mathematics.Vector4,OpenTK.Mathematics.Vector4)' @@ -244,13 +230,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x4.Matrix3x4(OpenTK.Mathematics.Vector4, OpenTK.Mathematics.Vector4, OpenTK.Mathematics.Vector4) type: Constructor source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x4.cs - startLine: 62 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x4.cs + startLine: 63 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -285,13 +267,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x4.Matrix3x4(float, float, float, float, float, float, float, float, float, float, float, float) type: Constructor source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x4.cs - startLine: 84 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x4.cs + startLine: 85 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -353,24 +331,20 @@ items: fullName: OpenTK.Mathematics.Matrix3x4.Column0 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Column0 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x4.cs - startLine: 100 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x4.cs + startLine: 101 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets the first column of this matrix. example: [] syntax: - content: public Vector3 Column0 { get; } + content: public Vector3 Column0 { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector3 - content.vb: Public ReadOnly Property Column0 As Vector3 + content.vb: Public Property Column0 As Vector3 overload: OpenTK.Mathematics.Matrix3x4.Column0* - uid: OpenTK.Mathematics.Matrix3x4.Column1 commentId: P:OpenTK.Mathematics.Matrix3x4.Column1 @@ -384,24 +358,20 @@ items: fullName: OpenTK.Mathematics.Matrix3x4.Column1 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Column1 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x4.cs - startLine: 105 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x4.cs + startLine: 115 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets the second column of this matrix. example: [] syntax: - content: public Vector3 Column1 { get; } + content: public Vector3 Column1 { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector3 - content.vb: Public ReadOnly Property Column1 As Vector3 + content.vb: Public Property Column1 As Vector3 overload: OpenTK.Mathematics.Matrix3x4.Column1* - uid: OpenTK.Mathematics.Matrix3x4.Column2 commentId: P:OpenTK.Mathematics.Matrix3x4.Column2 @@ -415,24 +385,20 @@ items: fullName: OpenTK.Mathematics.Matrix3x4.Column2 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Column2 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x4.cs - startLine: 110 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x4.cs + startLine: 129 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets the third column of this matrix. example: [] syntax: - content: public Vector3 Column2 { get; } + content: public Vector3 Column2 { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector3 - content.vb: Public ReadOnly Property Column2 As Vector3 + content.vb: Public Property Column2 As Vector3 overload: OpenTK.Mathematics.Matrix3x4.Column2* - uid: OpenTK.Mathematics.Matrix3x4.Column3 commentId: P:OpenTK.Mathematics.Matrix3x4.Column3 @@ -446,24 +412,20 @@ items: fullName: OpenTK.Mathematics.Matrix3x4.Column3 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Column3 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x4.cs - startLine: 115 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x4.cs + startLine: 143 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets the fourth column of this matrix. example: [] syntax: - content: public Vector3 Column3 { get; } + content: public Vector3 Column3 { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector3 - content.vb: Public ReadOnly Property Column3 As Vector3 + content.vb: Public Property Column3 As Vector3 overload: OpenTK.Mathematics.Matrix3x4.Column3* - uid: OpenTK.Mathematics.Matrix3x4.M11 commentId: P:OpenTK.Mathematics.Matrix3x4.M11 @@ -477,20 +439,16 @@ items: fullName: OpenTK.Mathematics.Matrix3x4.M11 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M11 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x4.cs - startLine: 120 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x4.cs + startLine: 157 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 1, column 1 of this instance. example: [] syntax: - content: public float M11 { get; set; } + content: public float M11 { readonly get; set; } parameters: [] return: type: System.Single @@ -508,20 +466,16 @@ items: fullName: OpenTK.Mathematics.Matrix3x4.M12 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M12 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x4.cs - startLine: 129 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x4.cs + startLine: 166 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 1, column 2 of this instance. example: [] syntax: - content: public float M12 { get; set; } + content: public float M12 { readonly get; set; } parameters: [] return: type: System.Single @@ -539,20 +493,16 @@ items: fullName: OpenTK.Mathematics.Matrix3x4.M13 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M13 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x4.cs - startLine: 138 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x4.cs + startLine: 175 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 1, column 3 of this instance. example: [] syntax: - content: public float M13 { get; set; } + content: public float M13 { readonly get; set; } parameters: [] return: type: System.Single @@ -570,20 +520,16 @@ items: fullName: OpenTK.Mathematics.Matrix3x4.M14 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M14 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x4.cs - startLine: 147 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x4.cs + startLine: 184 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 1, column 4 of this instance. example: [] syntax: - content: public float M14 { get; set; } + content: public float M14 { readonly get; set; } parameters: [] return: type: System.Single @@ -601,20 +547,16 @@ items: fullName: OpenTK.Mathematics.Matrix3x4.M21 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M21 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x4.cs - startLine: 156 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x4.cs + startLine: 193 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 2, column 1 of this instance. example: [] syntax: - content: public float M21 { get; set; } + content: public float M21 { readonly get; set; } parameters: [] return: type: System.Single @@ -632,20 +574,16 @@ items: fullName: OpenTK.Mathematics.Matrix3x4.M22 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M22 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x4.cs - startLine: 165 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x4.cs + startLine: 202 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 2, column 2 of this instance. example: [] syntax: - content: public float M22 { get; set; } + content: public float M22 { readonly get; set; } parameters: [] return: type: System.Single @@ -663,20 +601,16 @@ items: fullName: OpenTK.Mathematics.Matrix3x4.M23 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M23 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x4.cs - startLine: 174 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x4.cs + startLine: 211 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 2, column 3 of this instance. example: [] syntax: - content: public float M23 { get; set; } + content: public float M23 { readonly get; set; } parameters: [] return: type: System.Single @@ -694,20 +628,16 @@ items: fullName: OpenTK.Mathematics.Matrix3x4.M24 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M24 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x4.cs - startLine: 183 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x4.cs + startLine: 220 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 2, column 4 of this instance. example: [] syntax: - content: public float M24 { get; set; } + content: public float M24 { readonly get; set; } parameters: [] return: type: System.Single @@ -725,20 +655,16 @@ items: fullName: OpenTK.Mathematics.Matrix3x4.M31 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M31 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x4.cs - startLine: 192 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x4.cs + startLine: 229 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 3, column 1 of this instance. example: [] syntax: - content: public float M31 { get; set; } + content: public float M31 { readonly get; set; } parameters: [] return: type: System.Single @@ -756,20 +682,16 @@ items: fullName: OpenTK.Mathematics.Matrix3x4.M32 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M32 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x4.cs - startLine: 201 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x4.cs + startLine: 238 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 3, column 2 of this instance. example: [] syntax: - content: public float M32 { get; set; } + content: public float M32 { readonly get; set; } parameters: [] return: type: System.Single @@ -787,20 +709,16 @@ items: fullName: OpenTK.Mathematics.Matrix3x4.M33 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M33 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x4.cs - startLine: 210 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x4.cs + startLine: 247 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 3, column 3 of this instance. example: [] syntax: - content: public float M33 { get; set; } + content: public float M33 { readonly get; set; } parameters: [] return: type: System.Single @@ -818,20 +736,16 @@ items: fullName: OpenTK.Mathematics.Matrix3x4.M34 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M34 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x4.cs - startLine: 219 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x4.cs + startLine: 256 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 3, column 4 of this instance. example: [] syntax: - content: public float M34 { get; set; } + content: public float M34 { readonly get; set; } parameters: [] return: type: System.Single @@ -849,20 +763,16 @@ items: fullName: OpenTK.Mathematics.Matrix3x4.Diagonal type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Diagonal - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x4.cs - startLine: 228 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x4.cs + startLine: 265 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the values along the main diagonal of the matrix. example: [] syntax: - content: public Vector3 Diagonal { get; set; } + content: public Vector3 Diagonal { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector3 @@ -880,20 +790,16 @@ items: fullName: OpenTK.Mathematics.Matrix3x4.Trace type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Trace - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x4.cs - startLine: 242 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x4.cs + startLine: 279 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets the trace of the matrix, the sum of the values along the diagonal. example: [] syntax: - content: public float Trace { get; } + content: public readonly float Trace { get; } parameters: [] return: type: System.Single @@ -911,20 +817,16 @@ items: fullName: OpenTK.Mathematics.Matrix3x4.this[int, int] type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: this[] - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x4.cs - startLine: 250 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x4.cs + startLine: 287 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at a specified row and column. example: [] syntax: - content: public float this[int rowIndex, int columnIndex] { get; set; } + content: public float this[int rowIndex, int columnIndex] { readonly get; set; } parameters: - id: rowIndex type: System.Int32 @@ -952,13 +854,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x4.Invert() type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Invert - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x4.cs - startLine: 298 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x4.cs + startLine: 335 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -968,6 +866,137 @@ items: content: public void Invert() content.vb: Public Sub Invert() overload: OpenTK.Mathematics.Matrix3x4.Invert* +- uid: OpenTK.Mathematics.Matrix3x4.Inverted + commentId: M:OpenTK.Mathematics.Matrix3x4.Inverted + id: Inverted + parent: OpenTK.Mathematics.Matrix3x4 + langs: + - csharp + - vb + name: Inverted() + nameWithType: Matrix3x4.Inverted() + fullName: OpenTK.Mathematics.Matrix3x4.Inverted() + type: Method + source: + id: Inverted + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x4.cs + startLine: 344 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: Returns an inverted copy of this instance. + example: [] + syntax: + content: public readonly Matrix3x4 Inverted() + return: + type: OpenTK.Mathematics.Matrix3x4 + description: The inverted copy. + content.vb: Public Function Inverted() As Matrix3x4 + overload: OpenTK.Mathematics.Matrix3x4.Inverted* +- uid: OpenTK.Mathematics.Matrix3x4.Transposed + commentId: M:OpenTK.Mathematics.Matrix3x4.Transposed + id: Transposed + parent: OpenTK.Mathematics.Matrix3x4 + langs: + - csharp + - vb + name: Transposed() + nameWithType: Matrix3x4.Transposed() + fullName: OpenTK.Mathematics.Matrix3x4.Transposed() + type: Method + source: + id: Transposed + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x4.cs + startLine: 355 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: Returns a transposed copy of this instance. + example: [] + syntax: + content: public readonly Matrix4x3 Transposed() + return: + type: OpenTK.Mathematics.Matrix4x3 + description: The transposed copy. + content.vb: Public Function Transposed() As Matrix4x3 + overload: OpenTK.Mathematics.Matrix3x4.Transposed* +- uid: OpenTK.Mathematics.Matrix3x4.Swizzle(System.Int32,System.Int32,System.Int32) + commentId: M:OpenTK.Mathematics.Matrix3x4.Swizzle(System.Int32,System.Int32,System.Int32) + id: Swizzle(System.Int32,System.Int32,System.Int32) + parent: OpenTK.Mathematics.Matrix3x4 + langs: + - csharp + - vb + name: Swizzle(int, int, int) + nameWithType: Matrix3x4.Swizzle(int, int, int) + fullName: OpenTK.Mathematics.Matrix3x4.Swizzle(int, int, int) + type: Method + source: + id: Swizzle + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x4.cs + startLine: 366 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: Swizzles this instance. Swiches places of the rows of the matrix. + example: [] + syntax: + content: public void Swizzle(int rowForRow0, int rowForRow1, int rowForRow2) + parameters: + - id: rowForRow0 + type: System.Int32 + description: Which row to place in . + - id: rowForRow1 + type: System.Int32 + description: Which row to place in . + - id: rowForRow2 + type: System.Int32 + description: Which row to place in . + content.vb: Public Sub Swizzle(rowForRow0 As Integer, rowForRow1 As Integer, rowForRow2 As Integer) + overload: OpenTK.Mathematics.Matrix3x4.Swizzle* + nameWithType.vb: Matrix3x4.Swizzle(Integer, Integer, Integer) + fullName.vb: OpenTK.Mathematics.Matrix3x4.Swizzle(Integer, Integer, Integer) + name.vb: Swizzle(Integer, Integer, Integer) +- uid: OpenTK.Mathematics.Matrix3x4.Swizzled(System.Int32,System.Int32,System.Int32) + commentId: M:OpenTK.Mathematics.Matrix3x4.Swizzled(System.Int32,System.Int32,System.Int32) + id: Swizzled(System.Int32,System.Int32,System.Int32) + parent: OpenTK.Mathematics.Matrix3x4 + langs: + - csharp + - vb + name: Swizzled(int, int, int) + nameWithType: Matrix3x4.Swizzled(int, int, int) + fullName: OpenTK.Mathematics.Matrix3x4.Swizzled(int, int, int) + type: Method + source: + id: Swizzled + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x4.cs + startLine: 378 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: Returns a swizzled copy of this instance. + example: [] + syntax: + content: public readonly Matrix3x4 Swizzled(int rowForRow0, int rowForRow1, int rowForRow2) + parameters: + - id: rowForRow0 + type: System.Int32 + description: Which row to place in . + - id: rowForRow1 + type: System.Int32 + description: Which row to place in . + - id: rowForRow2 + type: System.Int32 + description: Which row to place in . + return: + type: OpenTK.Mathematics.Matrix3x4 + description: The swizzled copy. + content.vb: Public Function Swizzled(rowForRow0 As Integer, rowForRow1 As Integer, rowForRow2 As Integer) As Matrix3x4 + overload: OpenTK.Mathematics.Matrix3x4.Swizzled* + nameWithType.vb: Matrix3x4.Swizzled(Integer, Integer, Integer) + fullName.vb: OpenTK.Mathematics.Matrix3x4.Swizzled(Integer, Integer, Integer) + name.vb: Swizzled(Integer, Integer, Integer) - uid: OpenTK.Mathematics.Matrix3x4.CreateFromAxisAngle(OpenTK.Mathematics.Vector3,System.Single,OpenTK.Mathematics.Matrix3x4@) commentId: M:OpenTK.Mathematics.Matrix3x4.CreateFromAxisAngle(OpenTK.Mathematics.Vector3,System.Single,OpenTK.Mathematics.Matrix3x4@) id: CreateFromAxisAngle(OpenTK.Mathematics.Vector3,System.Single,OpenTK.Mathematics.Matrix3x4@) @@ -980,13 +1009,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x4.CreateFromAxisAngle(OpenTK.Mathematics.Vector3, float, out OpenTK.Mathematics.Matrix3x4) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateFromAxisAngle - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x4.cs - startLine: 309 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x4.cs + startLine: 391 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1021,13 +1046,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x4.CreateFromAxisAngle(OpenTK.Mathematics.Vector3, float) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateFromAxisAngle - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x4.cs - startLine: 349 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x4.cs + startLine: 431 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1072,13 +1093,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x4.CreateFromQuaternion(in OpenTK.Mathematics.Quaternion, out OpenTK.Mathematics.Matrix3x4) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateFromQuaternion - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x4.cs - startLine: 361 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x4.cs + startLine: 443 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1110,13 +1127,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x4.CreateFromQuaternion(OpenTK.Mathematics.Quaternion) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateFromQuaternion - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x4.cs - startLine: 399 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x4.cs + startLine: 481 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1155,13 +1168,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x4.CreateRotationX(float, out OpenTK.Mathematics.Matrix3x4) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateRotationX - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x4.cs - startLine: 411 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x4.cs + startLine: 493 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1193,13 +1202,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x4.CreateRotationX(float) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateRotationX - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x4.cs - startLine: 435 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x4.cs + startLine: 517 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1241,13 +1246,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x4.CreateRotationY(float, out OpenTK.Mathematics.Matrix3x4) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateRotationY - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x4.cs - startLine: 447 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x4.cs + startLine: 529 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1279,13 +1280,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x4.CreateRotationY(float) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateRotationY - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x4.cs - startLine: 471 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x4.cs + startLine: 553 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1327,13 +1324,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x4.CreateRotationZ(float, out OpenTK.Mathematics.Matrix3x4) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateRotationZ - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x4.cs - startLine: 483 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x4.cs + startLine: 565 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1365,13 +1358,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x4.CreateRotationZ(float) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateRotationZ - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x4.cs - startLine: 507 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x4.cs + startLine: 589 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1413,13 +1402,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x4.CreateTranslation(float, float, float, out OpenTK.Mathematics.Matrix3x4) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateTranslation - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x4.cs - startLine: 521 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x4.cs + startLine: 603 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1457,13 +1442,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x4.CreateTranslation(in OpenTK.Mathematics.Vector3, out OpenTK.Mathematics.Matrix3x4) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateTranslation - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x4.cs - startLine: 542 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x4.cs + startLine: 624 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1495,13 +1476,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x4.CreateTranslation(float, float, float) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateTranslation - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x4.cs - startLine: 565 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x4.cs + startLine: 647 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1549,13 +1526,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x4.CreateTranslation(OpenTK.Mathematics.Vector3) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateTranslation - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x4.cs - startLine: 577 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x4.cs + startLine: 659 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1594,13 +1567,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x4.CreateScale(float) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateScale - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x4.cs - startLine: 589 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x4.cs + startLine: 671 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1642,13 +1611,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x4.CreateScale(OpenTK.Mathematics.Vector3) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateScale - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x4.cs - startLine: 600 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x4.cs + startLine: 682 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1687,13 +1652,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x4.CreateScale(float, float, float) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateScale - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x4.cs - startLine: 613 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x4.cs + startLine: 695 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1741,13 +1702,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x4.Mult(OpenTK.Mathematics.Matrix3x4, OpenTK.Mathematics.Matrix4x3) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Mult - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x4.cs - startLine: 638 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x4.cs + startLine: 720 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1789,13 +1746,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x4.Mult(in OpenTK.Mathematics.Matrix3x4, in OpenTK.Mathematics.Matrix4x3, out OpenTK.Mathematics.Matrix3) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Mult - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x4.cs - startLine: 651 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x4.cs + startLine: 733 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1830,13 +1783,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x4.Mult(OpenTK.Mathematics.Matrix3x4, OpenTK.Mathematics.Matrix3x4) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Mult - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x4.cs - startLine: 695 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x4.cs + startLine: 777 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1878,13 +1827,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x4.Mult(in OpenTK.Mathematics.Matrix3x4, in OpenTK.Mathematics.Matrix3x4, out OpenTK.Mathematics.Matrix3x4) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Mult - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x4.cs - startLine: 708 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x4.cs + startLine: 790 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1919,13 +1864,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x4.Mult(OpenTK.Mathematics.Matrix3x4, float) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Mult - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x4.cs - startLine: 755 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x4.cs + startLine: 837 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1970,13 +1911,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x4.Mult(in OpenTK.Mathematics.Matrix3x4, float, out OpenTK.Mathematics.Matrix3x4) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Mult - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x4.cs - startLine: 768 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x4.cs + startLine: 850 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2011,13 +1948,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x4.Add(OpenTK.Mathematics.Matrix3x4, OpenTK.Mathematics.Matrix3x4) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Add - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x4.cs - startLine: 781 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x4.cs + startLine: 863 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2059,13 +1992,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x4.Add(in OpenTK.Mathematics.Matrix3x4, in OpenTK.Mathematics.Matrix3x4, out OpenTK.Mathematics.Matrix3x4) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Add - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x4.cs - startLine: 794 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x4.cs + startLine: 876 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2100,13 +2029,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x4.Subtract(OpenTK.Mathematics.Matrix3x4, OpenTK.Mathematics.Matrix3x4) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Subtract - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x4.cs - startLine: 807 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x4.cs + startLine: 889 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2148,13 +2073,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x4.Subtract(in OpenTK.Mathematics.Matrix3x4, in OpenTK.Mathematics.Matrix3x4, out OpenTK.Mathematics.Matrix3x4) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Subtract - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x4.cs - startLine: 820 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x4.cs + startLine: 902 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2189,13 +2110,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x4.Invert(OpenTK.Mathematics.Matrix3x4) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Invert - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x4.cs - startLine: 833 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x4.cs + startLine: 915 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2238,13 +2155,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x4.Invert(in OpenTK.Mathematics.Matrix3x4, out OpenTK.Mathematics.Matrix3x4) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Invert - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x4.cs - startLine: 846 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x4.cs + startLine: 928 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2280,13 +2193,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x4.Transpose(OpenTK.Mathematics.Matrix3x4) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Transpose - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x4.cs - startLine: 865 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x4.cs + startLine: 947 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2325,13 +2234,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x4.Transpose(in OpenTK.Mathematics.Matrix3x4, out OpenTK.Mathematics.Matrix4x3) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Transpose - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x4.cs - startLine: 876 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x4.cs + startLine: 958 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2351,6 +2256,100 @@ items: nameWithType.vb: Matrix3x4.Transpose(Matrix3x4, Matrix4x3) fullName.vb: OpenTK.Mathematics.Matrix3x4.Transpose(OpenTK.Mathematics.Matrix3x4, OpenTK.Mathematics.Matrix4x3) name.vb: Transpose(Matrix3x4, Matrix4x3) +- uid: OpenTK.Mathematics.Matrix3x4.Swizzle(OpenTK.Mathematics.Matrix3x4,System.Int32,System.Int32,System.Int32) + commentId: M:OpenTK.Mathematics.Matrix3x4.Swizzle(OpenTK.Mathematics.Matrix3x4,System.Int32,System.Int32,System.Int32) + id: Swizzle(OpenTK.Mathematics.Matrix3x4,System.Int32,System.Int32,System.Int32) + parent: OpenTK.Mathematics.Matrix3x4 + langs: + - csharp + - vb + name: Swizzle(Matrix3x4, int, int, int) + nameWithType: Matrix3x4.Swizzle(Matrix3x4, int, int, int) + fullName: OpenTK.Mathematics.Matrix3x4.Swizzle(OpenTK.Mathematics.Matrix3x4, int, int, int) + type: Method + source: + id: Swizzle + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x4.cs + startLine: 975 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: Swizzles a matrix, i.e. switches rows of the matrix. + example: [] + syntax: + content: public static Matrix3x4 Swizzle(Matrix3x4 mat, int rowForRow0, int rowForRow1, int rowForRow2) + parameters: + - id: mat + type: OpenTK.Mathematics.Matrix3x4 + description: The matrix to swizzle. + - id: rowForRow0 + type: System.Int32 + description: Which row to place in . + - id: rowForRow1 + type: System.Int32 + description: Which row to place in . + - id: rowForRow2 + type: System.Int32 + description: Which row to place in . + return: + type: OpenTK.Mathematics.Matrix3x4 + description: The swizzled matrix. + content.vb: Public Shared Function Swizzle(mat As Matrix3x4, rowForRow0 As Integer, rowForRow1 As Integer, rowForRow2 As Integer) As Matrix3x4 + overload: OpenTK.Mathematics.Matrix3x4.Swizzle* + exceptions: + - type: System.IndexOutOfRangeException + commentId: T:System.IndexOutOfRangeException + description: If any of the rows are outside of the range [0, 2]. + nameWithType.vb: Matrix3x4.Swizzle(Matrix3x4, Integer, Integer, Integer) + fullName.vb: OpenTK.Mathematics.Matrix3x4.Swizzle(OpenTK.Mathematics.Matrix3x4, Integer, Integer, Integer) + name.vb: Swizzle(Matrix3x4, Integer, Integer, Integer) +- uid: OpenTK.Mathematics.Matrix3x4.Swizzle(OpenTK.Mathematics.Matrix3x4@,System.Int32,System.Int32,System.Int32,OpenTK.Mathematics.Matrix3x4@) + commentId: M:OpenTK.Mathematics.Matrix3x4.Swizzle(OpenTK.Mathematics.Matrix3x4@,System.Int32,System.Int32,System.Int32,OpenTK.Mathematics.Matrix3x4@) + id: Swizzle(OpenTK.Mathematics.Matrix3x4@,System.Int32,System.Int32,System.Int32,OpenTK.Mathematics.Matrix3x4@) + parent: OpenTK.Mathematics.Matrix3x4 + langs: + - csharp + - vb + name: Swizzle(in Matrix3x4, int, int, int, out Matrix3x4) + nameWithType: Matrix3x4.Swizzle(in Matrix3x4, int, int, int, out Matrix3x4) + fullName: OpenTK.Mathematics.Matrix3x4.Swizzle(in OpenTK.Mathematics.Matrix3x4, int, int, int, out OpenTK.Mathematics.Matrix3x4) + type: Method + source: + id: Swizzle + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x4.cs + startLine: 990 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: Swizzles a matrix, i.e. switches rows of the matrix. + example: [] + syntax: + content: public static void Swizzle(in Matrix3x4 mat, int rowForRow0, int rowForRow1, int rowForRow2, out Matrix3x4 result) + parameters: + - id: mat + type: OpenTK.Mathematics.Matrix3x4 + description: The matrix to swizzle. + - id: rowForRow0 + type: System.Int32 + description: Which row to place in . + - id: rowForRow1 + type: System.Int32 + description: Which row to place in . + - id: rowForRow2 + type: System.Int32 + description: Which row to place in . + - id: result + type: OpenTK.Mathematics.Matrix3x4 + description: The swizzled matrix. + content.vb: Public Shared Sub Swizzle(mat As Matrix3x4, rowForRow0 As Integer, rowForRow1 As Integer, rowForRow2 As Integer, result As Matrix3x4) + overload: OpenTK.Mathematics.Matrix3x4.Swizzle* + exceptions: + - type: System.IndexOutOfRangeException + commentId: T:System.IndexOutOfRangeException + description: If any of the rows are outside of the range [0, 2]. + nameWithType.vb: Matrix3x4.Swizzle(Matrix3x4, Integer, Integer, Integer, Matrix3x4) + fullName.vb: OpenTK.Mathematics.Matrix3x4.Swizzle(OpenTK.Mathematics.Matrix3x4, Integer, Integer, Integer, OpenTK.Mathematics.Matrix3x4) + name.vb: Swizzle(Matrix3x4, Integer, Integer, Integer, Matrix3x4) - uid: OpenTK.Mathematics.Matrix3x4.op_Multiply(OpenTK.Mathematics.Matrix3x4,OpenTK.Mathematics.Matrix4x3) commentId: M:OpenTK.Mathematics.Matrix3x4.op_Multiply(OpenTK.Mathematics.Matrix3x4,OpenTK.Mathematics.Matrix4x3) id: op_Multiply(OpenTK.Mathematics.Matrix3x4,OpenTK.Mathematics.Matrix4x3) @@ -2363,13 +2362,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x4.operator *(OpenTK.Mathematics.Matrix3x4, OpenTK.Mathematics.Matrix4x3) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Multiply - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x4.cs - startLine: 890 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x4.cs + startLine: 1023 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2414,13 +2409,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x4.operator *(OpenTK.Mathematics.Matrix3x4, OpenTK.Mathematics.Matrix3x4) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Multiply - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x4.cs - startLine: 902 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x4.cs + startLine: 1035 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2465,13 +2456,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x4.operator *(OpenTK.Mathematics.Matrix3x4, float) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Multiply - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x4.cs - startLine: 914 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x4.cs + startLine: 1047 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2516,13 +2503,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x4.operator +(OpenTK.Mathematics.Matrix3x4, OpenTK.Mathematics.Matrix3x4) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Addition - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x4.cs - startLine: 926 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x4.cs + startLine: 1059 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2567,13 +2550,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x4.operator -(OpenTK.Mathematics.Matrix3x4, OpenTK.Mathematics.Matrix3x4) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Subtraction - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x4.cs - startLine: 938 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x4.cs + startLine: 1071 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2618,13 +2597,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x4.operator ==(OpenTK.Mathematics.Matrix3x4, OpenTK.Mathematics.Matrix3x4) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Equality - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x4.cs - startLine: 950 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x4.cs + startLine: 1083 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2669,13 +2644,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x4.operator !=(OpenTK.Mathematics.Matrix3x4, OpenTK.Mathematics.Matrix3x4) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Inequality - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x4.cs - startLine: 962 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x4.cs + startLine: 1095 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2720,20 +2691,16 @@ items: fullName: OpenTK.Mathematics.Matrix3x4.ToString() type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x4.cs - startLine: 972 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x4.cs + startLine: 1105 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Returns a System.String that represents the current Matrix4. example: [] syntax: - content: public override string ToString() + content: public override readonly string ToString() return: type: System.String description: The string representation of the matrix. @@ -2752,20 +2719,16 @@ items: fullName: OpenTK.Mathematics.Matrix3x4.ToString(string) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x4.cs - startLine: 978 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x4.cs + startLine: 1111 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Formats the value of the current instance using the specified format. example: [] syntax: - content: public string ToString(string format) + content: public readonly string ToString(string format) parameters: - id: format type: System.String @@ -2795,20 +2758,16 @@ items: fullName: OpenTK.Mathematics.Matrix3x4.ToString(System.IFormatProvider) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x4.cs - startLine: 984 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x4.cs + startLine: 1117 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Formats the value of the current instance using the specified format. example: [] syntax: - content: public string ToString(IFormatProvider formatProvider) + content: public readonly string ToString(IFormatProvider formatProvider) parameters: - id: formatProvider type: System.IFormatProvider @@ -2835,20 +2794,16 @@ items: fullName: OpenTK.Mathematics.Matrix3x4.ToString(string, System.IFormatProvider) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x4.cs - startLine: 990 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x4.cs + startLine: 1123 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Formats the value of the current instance using the specified format. example: [] syntax: - content: public string ToString(string format, IFormatProvider formatProvider) + content: public readonly string ToString(string format, IFormatProvider formatProvider) parameters: - id: format type: System.String @@ -2888,20 +2843,16 @@ items: fullName: OpenTK.Mathematics.Matrix3x4.GetHashCode() type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetHashCode - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x4.cs - startLine: 1002 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x4.cs + startLine: 1135 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Returns the hashcode for this instance. example: [] syntax: - content: public override int GetHashCode() + content: public override readonly int GetHashCode() return: type: System.Int32 description: A System.Int32 containing the unique hashcode for this instance. @@ -2920,13 +2871,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x4.Equals(object) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Equals - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x4.cs - startLine: 1012 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x4.cs + startLine: 1145 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2936,7 +2883,7 @@ items: content: >- [Pure] - public override bool Equals(object obj) + public override readonly bool Equals(object obj) parameters: - id: obj type: System.Object @@ -2969,13 +2916,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x4.Equals(OpenTK.Mathematics.Matrix3x4) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Equals - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x4.cs - startLine: 1023 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x4.cs + startLine: 1156 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2985,7 +2928,7 @@ items: content: >- [Pure] - public bool Equals(Matrix3x4 other) + public readonly bool Equals(Matrix3x4 other) parameters: - id: other type: OpenTK.Mathematics.Matrix3x4 @@ -3403,6 +3346,55 @@ references: name: Invert nameWithType: Matrix3x4.Invert fullName: OpenTK.Mathematics.Matrix3x4.Invert +- uid: OpenTK.Mathematics.Matrix3x4.Inverted* + commentId: Overload:OpenTK.Mathematics.Matrix3x4.Inverted + href: OpenTK.Mathematics.Matrix3x4.html#OpenTK_Mathematics_Matrix3x4_Inverted + name: Inverted + nameWithType: Matrix3x4.Inverted + fullName: OpenTK.Mathematics.Matrix3x4.Inverted +- uid: OpenTK.Mathematics.Matrix3x4.Transposed* + commentId: Overload:OpenTK.Mathematics.Matrix3x4.Transposed + href: OpenTK.Mathematics.Matrix3x4.html#OpenTK_Mathematics_Matrix3x4_Transposed + name: Transposed + nameWithType: Matrix3x4.Transposed + fullName: OpenTK.Mathematics.Matrix3x4.Transposed +- uid: OpenTK.Mathematics.Matrix4x3 + commentId: T:OpenTK.Mathematics.Matrix4x3 + parent: OpenTK.Mathematics + href: OpenTK.Mathematics.Matrix4x3.html + name: Matrix4x3 + nameWithType: Matrix4x3 + fullName: OpenTK.Mathematics.Matrix4x3 +- uid: OpenTK.Mathematics.Matrix3x4.Row0 + commentId: F:OpenTK.Mathematics.Matrix3x4.Row0 + href: OpenTK.Mathematics.Matrix3x4.html#OpenTK_Mathematics_Matrix3x4_Row0 + name: Row0 + nameWithType: Matrix3x4.Row0 + fullName: OpenTK.Mathematics.Matrix3x4.Row0 +- uid: OpenTK.Mathematics.Matrix3x4.Row1 + commentId: F:OpenTK.Mathematics.Matrix3x4.Row1 + href: OpenTK.Mathematics.Matrix3x4.html#OpenTK_Mathematics_Matrix3x4_Row1 + name: Row1 + nameWithType: Matrix3x4.Row1 + fullName: OpenTK.Mathematics.Matrix3x4.Row1 +- uid: OpenTK.Mathematics.Matrix3x4.Row2 + commentId: F:OpenTK.Mathematics.Matrix3x4.Row2 + href: OpenTK.Mathematics.Matrix3x4.html#OpenTK_Mathematics_Matrix3x4_Row2 + name: Row2 + nameWithType: Matrix3x4.Row2 + fullName: OpenTK.Mathematics.Matrix3x4.Row2 +- uid: OpenTK.Mathematics.Matrix3x4.Swizzle* + commentId: Overload:OpenTK.Mathematics.Matrix3x4.Swizzle + href: OpenTK.Mathematics.Matrix3x4.html#OpenTK_Mathematics_Matrix3x4_Swizzle_System_Int32_System_Int32_System_Int32_ + name: Swizzle + nameWithType: Matrix3x4.Swizzle + fullName: OpenTK.Mathematics.Matrix3x4.Swizzle +- uid: OpenTK.Mathematics.Matrix3x4.Swizzled* + commentId: Overload:OpenTK.Mathematics.Matrix3x4.Swizzled + href: OpenTK.Mathematics.Matrix3x4.html#OpenTK_Mathematics_Matrix3x4_Swizzled_System_Int32_System_Int32_System_Int32_ + name: Swizzled + nameWithType: Matrix3x4.Swizzled + fullName: OpenTK.Mathematics.Matrix3x4.Swizzled - uid: OpenTK.Mathematics.Matrix3x4.CreateFromAxisAngle* commentId: Overload:OpenTK.Mathematics.Matrix3x4.CreateFromAxisAngle href: OpenTK.Mathematics.Matrix3x4.html#OpenTK_Mathematics_Matrix3x4_CreateFromAxisAngle_OpenTK_Mathematics_Vector3_System_Single_OpenTK_Mathematics_Matrix3x4__ @@ -3458,13 +3450,6 @@ references: name: Mult nameWithType: Matrix3x4.Mult fullName: OpenTK.Mathematics.Matrix3x4.Mult -- uid: OpenTK.Mathematics.Matrix4x3 - commentId: T:OpenTK.Mathematics.Matrix4x3 - parent: OpenTK.Mathematics - href: OpenTK.Mathematics.Matrix4x3.html - name: Matrix4x3 - nameWithType: Matrix4x3 - fullName: OpenTK.Mathematics.Matrix4x3 - uid: OpenTK.Mathematics.Matrix3 commentId: T:OpenTK.Mathematics.Matrix3 parent: OpenTK.Mathematics @@ -3497,6 +3482,13 @@ references: name: Transpose nameWithType: Matrix3x4.Transpose fullName: OpenTK.Mathematics.Matrix3x4.Transpose +- uid: System.IndexOutOfRangeException + commentId: T:System.IndexOutOfRangeException + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.indexoutofrangeexception + name: IndexOutOfRangeException + nameWithType: IndexOutOfRangeException + fullName: System.IndexOutOfRangeException - uid: OpenTK.Mathematics.Matrix3x4.op_Multiply* commentId: Overload:OpenTK.Mathematics.Matrix3x4.op_Multiply href: OpenTK.Mathematics.Matrix3x4.html#OpenTK_Mathematics_Matrix3x4_op_Multiply_OpenTK_Mathematics_Matrix3x4_OpenTK_Mathematics_Matrix4x3_ diff --git a/api/OpenTK.Mathematics.Matrix3x4d.yml b/api/OpenTK.Mathematics.Matrix3x4d.yml index fcb381b3..463ce17d 100644 --- a/api/OpenTK.Mathematics.Matrix3x4d.yml +++ b/api/OpenTK.Mathematics.Matrix3x4d.yml @@ -37,6 +37,7 @@ items: - OpenTK.Mathematics.Matrix3x4d.Invert - OpenTK.Mathematics.Matrix3x4d.Invert(OpenTK.Mathematics.Matrix3x4d) - OpenTK.Mathematics.Matrix3x4d.Invert(OpenTK.Mathematics.Matrix3x4d@,OpenTK.Mathematics.Matrix3x4d@) + - OpenTK.Mathematics.Matrix3x4d.Inverted - OpenTK.Mathematics.Matrix3x4d.Item(System.Int32,System.Int32) - OpenTK.Mathematics.Matrix3x4d.M11 - OpenTK.Mathematics.Matrix3x4d.M12 @@ -61,6 +62,10 @@ items: - OpenTK.Mathematics.Matrix3x4d.Row2 - OpenTK.Mathematics.Matrix3x4d.Subtract(OpenTK.Mathematics.Matrix3x4d,OpenTK.Mathematics.Matrix3x4d) - OpenTK.Mathematics.Matrix3x4d.Subtract(OpenTK.Mathematics.Matrix3x4d@,OpenTK.Mathematics.Matrix3x4d@,OpenTK.Mathematics.Matrix3x4d@) + - OpenTK.Mathematics.Matrix3x4d.Swizzle(OpenTK.Mathematics.Matrix3x4d,System.Int32,System.Int32,System.Int32) + - OpenTK.Mathematics.Matrix3x4d.Swizzle(OpenTK.Mathematics.Matrix3x4d@,System.Int32,System.Int32,System.Int32,OpenTK.Mathematics.Matrix3x4d@) + - OpenTK.Mathematics.Matrix3x4d.Swizzle(System.Int32,System.Int32,System.Int32) + - OpenTK.Mathematics.Matrix3x4d.Swizzled(System.Int32,System.Int32,System.Int32) - OpenTK.Mathematics.Matrix3x4d.ToString - OpenTK.Mathematics.Matrix3x4d.ToString(System.IFormatProvider) - OpenTK.Mathematics.Matrix3x4d.ToString(System.String) @@ -68,6 +73,7 @@ items: - OpenTK.Mathematics.Matrix3x4d.Trace - OpenTK.Mathematics.Matrix3x4d.Transpose(OpenTK.Mathematics.Matrix3x4d) - OpenTK.Mathematics.Matrix3x4d.Transpose(OpenTK.Mathematics.Matrix3x4d@,OpenTK.Mathematics.Matrix4x3d@) + - OpenTK.Mathematics.Matrix3x4d.Transposed - OpenTK.Mathematics.Matrix3x4d.Zero - OpenTK.Mathematics.Matrix3x4d.op_Addition(OpenTK.Mathematics.Matrix3x4d,OpenTK.Mathematics.Matrix3x4d) - OpenTK.Mathematics.Matrix3x4d.op_Equality(OpenTK.Mathematics.Matrix3x4d,OpenTK.Mathematics.Matrix3x4d) @@ -84,13 +90,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x4d type: Struct source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Matrix3x4d - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x4d.cs - startLine: 32 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x4d.cs + startLine: 33 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -128,13 +130,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x4d.Row0 type: Field source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Row0 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x4d.cs - startLine: 39 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x4d.cs + startLine: 40 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -157,13 +155,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x4d.Row1 type: Field source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Row1 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x4d.cs - startLine: 44 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x4d.cs + startLine: 45 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -186,13 +180,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x4d.Row2 type: Field source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Row2 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x4d.cs - startLine: 49 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x4d.cs + startLine: 50 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -215,23 +205,19 @@ items: fullName: OpenTK.Mathematics.Matrix3x4d.Zero type: Field source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Zero - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x4d.cs - startLine: 54 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x4d.cs + startLine: 55 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: The zero matrix. example: [] syntax: - content: public static Matrix3x4d Zero + content: public static readonly Matrix3x4d Zero return: type: OpenTK.Mathematics.Matrix3x4d - content.vb: Public Shared Zero As Matrix3x4d + content.vb: Public Shared ReadOnly Zero As Matrix3x4d - uid: OpenTK.Mathematics.Matrix3x4d.#ctor(OpenTK.Mathematics.Vector4d,OpenTK.Mathematics.Vector4d,OpenTK.Mathematics.Vector4d) commentId: M:OpenTK.Mathematics.Matrix3x4d.#ctor(OpenTK.Mathematics.Vector4d,OpenTK.Mathematics.Vector4d,OpenTK.Mathematics.Vector4d) id: '#ctor(OpenTK.Mathematics.Vector4d,OpenTK.Mathematics.Vector4d,OpenTK.Mathematics.Vector4d)' @@ -244,13 +230,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x4d.Matrix3x4d(OpenTK.Mathematics.Vector4d, OpenTK.Mathematics.Vector4d, OpenTK.Mathematics.Vector4d) type: Constructor source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x4d.cs - startLine: 62 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x4d.cs + startLine: 63 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -285,13 +267,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x4d.Matrix3x4d(double, double, double, double, double, double, double, double, double, double, double, double) type: Constructor source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x4d.cs - startLine: 84 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x4d.cs + startLine: 85 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -353,24 +331,20 @@ items: fullName: OpenTK.Mathematics.Matrix3x4d.Column0 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Column0 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x4d.cs - startLine: 100 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x4d.cs + startLine: 101 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets the first column of this matrix. example: [] syntax: - content: public Vector3d Column0 { get; } + content: public Vector3d Column0 { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector3d - content.vb: Public ReadOnly Property Column0 As Vector3d + content.vb: Public Property Column0 As Vector3d overload: OpenTK.Mathematics.Matrix3x4d.Column0* - uid: OpenTK.Mathematics.Matrix3x4d.Column1 commentId: P:OpenTK.Mathematics.Matrix3x4d.Column1 @@ -384,24 +358,20 @@ items: fullName: OpenTK.Mathematics.Matrix3x4d.Column1 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Column1 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x4d.cs - startLine: 105 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x4d.cs + startLine: 115 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets the second column of this matrix. example: [] syntax: - content: public Vector3d Column1 { get; } + content: public Vector3d Column1 { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector3d - content.vb: Public ReadOnly Property Column1 As Vector3d + content.vb: Public Property Column1 As Vector3d overload: OpenTK.Mathematics.Matrix3x4d.Column1* - uid: OpenTK.Mathematics.Matrix3x4d.Column2 commentId: P:OpenTK.Mathematics.Matrix3x4d.Column2 @@ -415,24 +385,20 @@ items: fullName: OpenTK.Mathematics.Matrix3x4d.Column2 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Column2 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x4d.cs - startLine: 110 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x4d.cs + startLine: 129 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets the third column of this matrix. example: [] syntax: - content: public Vector3d Column2 { get; } + content: public Vector3d Column2 { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector3d - content.vb: Public ReadOnly Property Column2 As Vector3d + content.vb: Public Property Column2 As Vector3d overload: OpenTK.Mathematics.Matrix3x4d.Column2* - uid: OpenTK.Mathematics.Matrix3x4d.Column3 commentId: P:OpenTK.Mathematics.Matrix3x4d.Column3 @@ -446,24 +412,20 @@ items: fullName: OpenTK.Mathematics.Matrix3x4d.Column3 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Column3 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x4d.cs - startLine: 115 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x4d.cs + startLine: 143 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets the fourth column of this matrix. example: [] syntax: - content: public Vector3d Column3 { get; } + content: public Vector3d Column3 { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector3d - content.vb: Public ReadOnly Property Column3 As Vector3d + content.vb: Public Property Column3 As Vector3d overload: OpenTK.Mathematics.Matrix3x4d.Column3* - uid: OpenTK.Mathematics.Matrix3x4d.M11 commentId: P:OpenTK.Mathematics.Matrix3x4d.M11 @@ -477,20 +439,16 @@ items: fullName: OpenTK.Mathematics.Matrix3x4d.M11 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M11 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x4d.cs - startLine: 120 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x4d.cs + startLine: 157 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 1, column 1 of this instance. example: [] syntax: - content: public double M11 { get; set; } + content: public double M11 { readonly get; set; } parameters: [] return: type: System.Double @@ -508,20 +466,16 @@ items: fullName: OpenTK.Mathematics.Matrix3x4d.M12 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M12 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x4d.cs - startLine: 129 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x4d.cs + startLine: 166 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 1, column 2 of this instance. example: [] syntax: - content: public double M12 { get; set; } + content: public double M12 { readonly get; set; } parameters: [] return: type: System.Double @@ -539,20 +493,16 @@ items: fullName: OpenTK.Mathematics.Matrix3x4d.M13 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M13 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x4d.cs - startLine: 138 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x4d.cs + startLine: 175 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 1, column 3 of this instance. example: [] syntax: - content: public double M13 { get; set; } + content: public double M13 { readonly get; set; } parameters: [] return: type: System.Double @@ -570,20 +520,16 @@ items: fullName: OpenTK.Mathematics.Matrix3x4d.M14 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M14 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x4d.cs - startLine: 147 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x4d.cs + startLine: 184 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 1, column 4 of this instance. example: [] syntax: - content: public double M14 { get; set; } + content: public double M14 { readonly get; set; } parameters: [] return: type: System.Double @@ -601,20 +547,16 @@ items: fullName: OpenTK.Mathematics.Matrix3x4d.M21 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M21 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x4d.cs - startLine: 156 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x4d.cs + startLine: 193 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 2, column 1 of this instance. example: [] syntax: - content: public double M21 { get; set; } + content: public double M21 { readonly get; set; } parameters: [] return: type: System.Double @@ -632,20 +574,16 @@ items: fullName: OpenTK.Mathematics.Matrix3x4d.M22 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M22 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x4d.cs - startLine: 165 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x4d.cs + startLine: 202 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 2, column 2 of this instance. example: [] syntax: - content: public double M22 { get; set; } + content: public double M22 { readonly get; set; } parameters: [] return: type: System.Double @@ -663,20 +601,16 @@ items: fullName: OpenTK.Mathematics.Matrix3x4d.M23 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M23 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x4d.cs - startLine: 174 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x4d.cs + startLine: 211 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 2, column 3 of this instance. example: [] syntax: - content: public double M23 { get; set; } + content: public double M23 { readonly get; set; } parameters: [] return: type: System.Double @@ -694,20 +628,16 @@ items: fullName: OpenTK.Mathematics.Matrix3x4d.M24 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M24 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x4d.cs - startLine: 183 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x4d.cs + startLine: 220 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 2, column 4 of this instance. example: [] syntax: - content: public double M24 { get; set; } + content: public double M24 { readonly get; set; } parameters: [] return: type: System.Double @@ -725,20 +655,16 @@ items: fullName: OpenTK.Mathematics.Matrix3x4d.M31 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M31 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x4d.cs - startLine: 192 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x4d.cs + startLine: 229 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 3, column 1 of this instance. example: [] syntax: - content: public double M31 { get; set; } + content: public double M31 { readonly get; set; } parameters: [] return: type: System.Double @@ -756,20 +682,16 @@ items: fullName: OpenTK.Mathematics.Matrix3x4d.M32 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M32 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x4d.cs - startLine: 201 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x4d.cs + startLine: 238 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 3, column 2 of this instance. example: [] syntax: - content: public double M32 { get; set; } + content: public double M32 { readonly get; set; } parameters: [] return: type: System.Double @@ -787,20 +709,16 @@ items: fullName: OpenTK.Mathematics.Matrix3x4d.M33 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M33 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x4d.cs - startLine: 210 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x4d.cs + startLine: 247 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 3, column 3 of this instance. example: [] syntax: - content: public double M33 { get; set; } + content: public double M33 { readonly get; set; } parameters: [] return: type: System.Double @@ -818,20 +736,16 @@ items: fullName: OpenTK.Mathematics.Matrix3x4d.M34 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M34 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x4d.cs - startLine: 219 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x4d.cs + startLine: 256 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 3, column 4 of this instance. example: [] syntax: - content: public double M34 { get; set; } + content: public double M34 { readonly get; set; } parameters: [] return: type: System.Double @@ -849,20 +763,16 @@ items: fullName: OpenTK.Mathematics.Matrix3x4d.Diagonal type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Diagonal - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x4d.cs - startLine: 228 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x4d.cs + startLine: 265 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the values along the main diagonal of the matrix. example: [] syntax: - content: public Vector3d Diagonal { get; set; } + content: public Vector3d Diagonal { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector3d @@ -880,20 +790,16 @@ items: fullName: OpenTK.Mathematics.Matrix3x4d.Trace type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Trace - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x4d.cs - startLine: 242 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x4d.cs + startLine: 279 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets the trace of the matrix, the sum of the values along the diagonal. example: [] syntax: - content: public double Trace { get; } + content: public readonly double Trace { get; } parameters: [] return: type: System.Double @@ -911,20 +817,16 @@ items: fullName: OpenTK.Mathematics.Matrix3x4d.this[int, int] type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: this[] - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x4d.cs - startLine: 250 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x4d.cs + startLine: 287 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at a specified row and column. example: [] syntax: - content: public double this[int rowIndex, int columnIndex] { get; set; } + content: public double this[int rowIndex, int columnIndex] { readonly get; set; } parameters: - id: rowIndex type: System.Int32 @@ -952,13 +854,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x4d.Invert() type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Invert - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x4d.cs - startLine: 298 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x4d.cs + startLine: 335 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -968,6 +866,137 @@ items: content: public void Invert() content.vb: Public Sub Invert() overload: OpenTK.Mathematics.Matrix3x4d.Invert* +- uid: OpenTK.Mathematics.Matrix3x4d.Inverted + commentId: M:OpenTK.Mathematics.Matrix3x4d.Inverted + id: Inverted + parent: OpenTK.Mathematics.Matrix3x4d + langs: + - csharp + - vb + name: Inverted() + nameWithType: Matrix3x4d.Inverted() + fullName: OpenTK.Mathematics.Matrix3x4d.Inverted() + type: Method + source: + id: Inverted + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x4d.cs + startLine: 344 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: Returns an inverted copy of this instance. + example: [] + syntax: + content: public readonly Matrix3x4d Inverted() + return: + type: OpenTK.Mathematics.Matrix3x4d + description: The inverted copy. + content.vb: Public Function Inverted() As Matrix3x4d + overload: OpenTK.Mathematics.Matrix3x4d.Inverted* +- uid: OpenTK.Mathematics.Matrix3x4d.Transposed + commentId: M:OpenTK.Mathematics.Matrix3x4d.Transposed + id: Transposed + parent: OpenTK.Mathematics.Matrix3x4d + langs: + - csharp + - vb + name: Transposed() + nameWithType: Matrix3x4d.Transposed() + fullName: OpenTK.Mathematics.Matrix3x4d.Transposed() + type: Method + source: + id: Transposed + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x4d.cs + startLine: 355 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: Returns a transposed copy of this instance. + example: [] + syntax: + content: public readonly Matrix4x3d Transposed() + return: + type: OpenTK.Mathematics.Matrix4x3d + description: The transposed copy. + content.vb: Public Function Transposed() As Matrix4x3d + overload: OpenTK.Mathematics.Matrix3x4d.Transposed* +- uid: OpenTK.Mathematics.Matrix3x4d.Swizzle(System.Int32,System.Int32,System.Int32) + commentId: M:OpenTK.Mathematics.Matrix3x4d.Swizzle(System.Int32,System.Int32,System.Int32) + id: Swizzle(System.Int32,System.Int32,System.Int32) + parent: OpenTK.Mathematics.Matrix3x4d + langs: + - csharp + - vb + name: Swizzle(int, int, int) + nameWithType: Matrix3x4d.Swizzle(int, int, int) + fullName: OpenTK.Mathematics.Matrix3x4d.Swizzle(int, int, int) + type: Method + source: + id: Swizzle + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x4d.cs + startLine: 366 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: Swizzles this instance. Swiches places of the rows of the matrix. + example: [] + syntax: + content: public void Swizzle(int rowForRow0, int rowForRow1, int rowForRow2) + parameters: + - id: rowForRow0 + type: System.Int32 + description: Which row to place in . + - id: rowForRow1 + type: System.Int32 + description: Which row to place in . + - id: rowForRow2 + type: System.Int32 + description: Which row to place in . + content.vb: Public Sub Swizzle(rowForRow0 As Integer, rowForRow1 As Integer, rowForRow2 As Integer) + overload: OpenTK.Mathematics.Matrix3x4d.Swizzle* + nameWithType.vb: Matrix3x4d.Swizzle(Integer, Integer, Integer) + fullName.vb: OpenTK.Mathematics.Matrix3x4d.Swizzle(Integer, Integer, Integer) + name.vb: Swizzle(Integer, Integer, Integer) +- uid: OpenTK.Mathematics.Matrix3x4d.Swizzled(System.Int32,System.Int32,System.Int32) + commentId: M:OpenTK.Mathematics.Matrix3x4d.Swizzled(System.Int32,System.Int32,System.Int32) + id: Swizzled(System.Int32,System.Int32,System.Int32) + parent: OpenTK.Mathematics.Matrix3x4d + langs: + - csharp + - vb + name: Swizzled(int, int, int) + nameWithType: Matrix3x4d.Swizzled(int, int, int) + fullName: OpenTK.Mathematics.Matrix3x4d.Swizzled(int, int, int) + type: Method + source: + id: Swizzled + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x4d.cs + startLine: 378 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: Returns a swizzled copy of this instance. + example: [] + syntax: + content: public readonly Matrix3x4d Swizzled(int rowForRow0, int rowForRow1, int rowForRow2) + parameters: + - id: rowForRow0 + type: System.Int32 + description: Which row to place in . + - id: rowForRow1 + type: System.Int32 + description: Which row to place in . + - id: rowForRow2 + type: System.Int32 + description: Which row to place in . + return: + type: OpenTK.Mathematics.Matrix3x4d + description: The swizzled copy. + content.vb: Public Function Swizzled(rowForRow0 As Integer, rowForRow1 As Integer, rowForRow2 As Integer) As Matrix3x4d + overload: OpenTK.Mathematics.Matrix3x4d.Swizzled* + nameWithType.vb: Matrix3x4d.Swizzled(Integer, Integer, Integer) + fullName.vb: OpenTK.Mathematics.Matrix3x4d.Swizzled(Integer, Integer, Integer) + name.vb: Swizzled(Integer, Integer, Integer) - uid: OpenTK.Mathematics.Matrix3x4d.CreateFromAxisAngle(OpenTK.Mathematics.Vector3d,System.Double,OpenTK.Mathematics.Matrix3x4d@) commentId: M:OpenTK.Mathematics.Matrix3x4d.CreateFromAxisAngle(OpenTK.Mathematics.Vector3d,System.Double,OpenTK.Mathematics.Matrix3x4d@) id: CreateFromAxisAngle(OpenTK.Mathematics.Vector3d,System.Double,OpenTK.Mathematics.Matrix3x4d@) @@ -980,13 +1009,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x4d.CreateFromAxisAngle(OpenTK.Mathematics.Vector3d, double, out OpenTK.Mathematics.Matrix3x4d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateFromAxisAngle - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x4d.cs - startLine: 309 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x4d.cs + startLine: 391 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1021,13 +1046,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x4d.CreateFromAxisAngle(OpenTK.Mathematics.Vector3d, double) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateFromAxisAngle - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x4d.cs - startLine: 349 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x4d.cs + startLine: 431 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1072,13 +1093,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x4d.CreateFromQuaternion(in OpenTK.Mathematics.Quaternion, out OpenTK.Mathematics.Matrix3x4d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateFromQuaternion - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x4d.cs - startLine: 361 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x4d.cs + startLine: 443 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1110,13 +1127,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x4d.CreateFromQuaternion(OpenTK.Mathematics.Quaternion) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateFromQuaternion - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x4d.cs - startLine: 399 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x4d.cs + startLine: 481 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1155,13 +1168,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x4d.CreateRotationX(double, out OpenTK.Mathematics.Matrix3x4d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateRotationX - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x4d.cs - startLine: 411 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x4d.cs + startLine: 493 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1193,13 +1202,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x4d.CreateRotationX(double) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateRotationX - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x4d.cs - startLine: 435 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x4d.cs + startLine: 517 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1241,13 +1246,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x4d.CreateRotationY(double, out OpenTK.Mathematics.Matrix3x4d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateRotationY - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x4d.cs - startLine: 447 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x4d.cs + startLine: 529 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1279,13 +1280,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x4d.CreateRotationY(double) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateRotationY - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x4d.cs - startLine: 471 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x4d.cs + startLine: 553 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1327,13 +1324,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x4d.CreateRotationZ(double, out OpenTK.Mathematics.Matrix3x4d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateRotationZ - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x4d.cs - startLine: 483 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x4d.cs + startLine: 565 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1365,13 +1358,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x4d.CreateRotationZ(double) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateRotationZ - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x4d.cs - startLine: 507 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x4d.cs + startLine: 589 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1413,13 +1402,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x4d.CreateTranslation(double, double, double, out OpenTK.Mathematics.Matrix3x4d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateTranslation - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x4d.cs - startLine: 521 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x4d.cs + startLine: 603 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1457,13 +1442,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x4d.CreateTranslation(in OpenTK.Mathematics.Vector3d, out OpenTK.Mathematics.Matrix3x4d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateTranslation - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x4d.cs - startLine: 542 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x4d.cs + startLine: 624 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1495,13 +1476,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x4d.CreateTranslation(double, double, double) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateTranslation - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x4d.cs - startLine: 565 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x4d.cs + startLine: 647 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1549,13 +1526,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x4d.CreateTranslation(OpenTK.Mathematics.Vector3d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateTranslation - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x4d.cs - startLine: 577 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x4d.cs + startLine: 659 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1594,13 +1567,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x4d.CreateScale(double) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateScale - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x4d.cs - startLine: 589 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x4d.cs + startLine: 671 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1642,13 +1611,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x4d.CreateScale(OpenTK.Mathematics.Vector3d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateScale - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x4d.cs - startLine: 600 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x4d.cs + startLine: 682 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1687,13 +1652,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x4d.CreateScale(double, double, double) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateScale - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x4d.cs - startLine: 613 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x4d.cs + startLine: 695 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1741,13 +1702,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x4d.Mult(OpenTK.Mathematics.Matrix3x4d, OpenTK.Mathematics.Matrix4x3d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Mult - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x4d.cs - startLine: 638 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x4d.cs + startLine: 720 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1789,13 +1746,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x4d.Mult(in OpenTK.Mathematics.Matrix3x4d, in OpenTK.Mathematics.Matrix4x3d, out OpenTK.Mathematics.Matrix3d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Mult - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x4d.cs - startLine: 651 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x4d.cs + startLine: 733 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1830,13 +1783,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x4d.Mult(OpenTK.Mathematics.Matrix3x4d, OpenTK.Mathematics.Matrix3x4d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Mult - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x4d.cs - startLine: 695 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x4d.cs + startLine: 777 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1878,13 +1827,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x4d.Mult(in OpenTK.Mathematics.Matrix3x4d, in OpenTK.Mathematics.Matrix3x4d, out OpenTK.Mathematics.Matrix3x4d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Mult - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x4d.cs - startLine: 708 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x4d.cs + startLine: 790 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1919,13 +1864,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x4d.Mult(OpenTK.Mathematics.Matrix3x4d, double) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Mult - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x4d.cs - startLine: 755 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x4d.cs + startLine: 837 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1970,13 +1911,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x4d.Mult(in OpenTK.Mathematics.Matrix3x4d, double, out OpenTK.Mathematics.Matrix3x4d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Mult - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x4d.cs - startLine: 768 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x4d.cs + startLine: 850 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2011,13 +1948,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x4d.Add(OpenTK.Mathematics.Matrix3x4d, OpenTK.Mathematics.Matrix3x4d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Add - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x4d.cs - startLine: 781 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x4d.cs + startLine: 863 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2059,13 +1992,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x4d.Add(in OpenTK.Mathematics.Matrix3x4d, in OpenTK.Mathematics.Matrix3x4d, out OpenTK.Mathematics.Matrix3x4d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Add - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x4d.cs - startLine: 794 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x4d.cs + startLine: 876 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2100,13 +2029,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x4d.Subtract(OpenTK.Mathematics.Matrix3x4d, OpenTK.Mathematics.Matrix3x4d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Subtract - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x4d.cs - startLine: 807 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x4d.cs + startLine: 889 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2148,13 +2073,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x4d.Subtract(in OpenTK.Mathematics.Matrix3x4d, in OpenTK.Mathematics.Matrix3x4d, out OpenTK.Mathematics.Matrix3x4d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Subtract - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x4d.cs - startLine: 820 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x4d.cs + startLine: 902 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2189,13 +2110,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x4d.Invert(OpenTK.Mathematics.Matrix3x4d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Invert - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x4d.cs - startLine: 833 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x4d.cs + startLine: 915 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2238,13 +2155,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x4d.Invert(in OpenTK.Mathematics.Matrix3x4d, out OpenTK.Mathematics.Matrix3x4d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Invert - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x4d.cs - startLine: 846 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x4d.cs + startLine: 928 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2280,13 +2193,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x4d.Transpose(OpenTK.Mathematics.Matrix3x4d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Transpose - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x4d.cs - startLine: 865 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x4d.cs + startLine: 947 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2325,13 +2234,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x4d.Transpose(in OpenTK.Mathematics.Matrix3x4d, out OpenTK.Mathematics.Matrix4x3d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Transpose - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x4d.cs - startLine: 876 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x4d.cs + startLine: 958 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2351,6 +2256,100 @@ items: nameWithType.vb: Matrix3x4d.Transpose(Matrix3x4d, Matrix4x3d) fullName.vb: OpenTK.Mathematics.Matrix3x4d.Transpose(OpenTK.Mathematics.Matrix3x4d, OpenTK.Mathematics.Matrix4x3d) name.vb: Transpose(Matrix3x4d, Matrix4x3d) +- uid: OpenTK.Mathematics.Matrix3x4d.Swizzle(OpenTK.Mathematics.Matrix3x4d,System.Int32,System.Int32,System.Int32) + commentId: M:OpenTK.Mathematics.Matrix3x4d.Swizzle(OpenTK.Mathematics.Matrix3x4d,System.Int32,System.Int32,System.Int32) + id: Swizzle(OpenTK.Mathematics.Matrix3x4d,System.Int32,System.Int32,System.Int32) + parent: OpenTK.Mathematics.Matrix3x4d + langs: + - csharp + - vb + name: Swizzle(Matrix3x4d, int, int, int) + nameWithType: Matrix3x4d.Swizzle(Matrix3x4d, int, int, int) + fullName: OpenTK.Mathematics.Matrix3x4d.Swizzle(OpenTK.Mathematics.Matrix3x4d, int, int, int) + type: Method + source: + id: Swizzle + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x4d.cs + startLine: 975 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: Swizzles a matrix, i.e. switches rows of the matrix. + example: [] + syntax: + content: public static Matrix3x4d Swizzle(Matrix3x4d mat, int rowForRow0, int rowForRow1, int rowForRow2) + parameters: + - id: mat + type: OpenTK.Mathematics.Matrix3x4d + description: The matrix to swizzle. + - id: rowForRow0 + type: System.Int32 + description: Which row to place in . + - id: rowForRow1 + type: System.Int32 + description: Which row to place in . + - id: rowForRow2 + type: System.Int32 + description: Which row to place in . + return: + type: OpenTK.Mathematics.Matrix3x4d + description: The swizzled matrix. + content.vb: Public Shared Function Swizzle(mat As Matrix3x4d, rowForRow0 As Integer, rowForRow1 As Integer, rowForRow2 As Integer) As Matrix3x4d + overload: OpenTK.Mathematics.Matrix3x4d.Swizzle* + exceptions: + - type: System.IndexOutOfRangeException + commentId: T:System.IndexOutOfRangeException + description: If any of the rows are outside of the range [0, 2]. + nameWithType.vb: Matrix3x4d.Swizzle(Matrix3x4d, Integer, Integer, Integer) + fullName.vb: OpenTK.Mathematics.Matrix3x4d.Swizzle(OpenTK.Mathematics.Matrix3x4d, Integer, Integer, Integer) + name.vb: Swizzle(Matrix3x4d, Integer, Integer, Integer) +- uid: OpenTK.Mathematics.Matrix3x4d.Swizzle(OpenTK.Mathematics.Matrix3x4d@,System.Int32,System.Int32,System.Int32,OpenTK.Mathematics.Matrix3x4d@) + commentId: M:OpenTK.Mathematics.Matrix3x4d.Swizzle(OpenTK.Mathematics.Matrix3x4d@,System.Int32,System.Int32,System.Int32,OpenTK.Mathematics.Matrix3x4d@) + id: Swizzle(OpenTK.Mathematics.Matrix3x4d@,System.Int32,System.Int32,System.Int32,OpenTK.Mathematics.Matrix3x4d@) + parent: OpenTK.Mathematics.Matrix3x4d + langs: + - csharp + - vb + name: Swizzle(in Matrix3x4d, int, int, int, out Matrix3x4d) + nameWithType: Matrix3x4d.Swizzle(in Matrix3x4d, int, int, int, out Matrix3x4d) + fullName: OpenTK.Mathematics.Matrix3x4d.Swizzle(in OpenTK.Mathematics.Matrix3x4d, int, int, int, out OpenTK.Mathematics.Matrix3x4d) + type: Method + source: + id: Swizzle + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x4d.cs + startLine: 990 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: Swizzles a matrix, i.e. switches rows of the matrix. + example: [] + syntax: + content: public static void Swizzle(in Matrix3x4d mat, int rowForRow0, int rowForRow1, int rowForRow2, out Matrix3x4d result) + parameters: + - id: mat + type: OpenTK.Mathematics.Matrix3x4d + description: The matrix to swizzle. + - id: rowForRow0 + type: System.Int32 + description: Which row to place in . + - id: rowForRow1 + type: System.Int32 + description: Which row to place in . + - id: rowForRow2 + type: System.Int32 + description: Which row to place in . + - id: result + type: OpenTK.Mathematics.Matrix3x4d + description: The swizzled matrix. + content.vb: Public Shared Sub Swizzle(mat As Matrix3x4d, rowForRow0 As Integer, rowForRow1 As Integer, rowForRow2 As Integer, result As Matrix3x4d) + overload: OpenTK.Mathematics.Matrix3x4d.Swizzle* + exceptions: + - type: System.IndexOutOfRangeException + commentId: T:System.IndexOutOfRangeException + description: If any of the rows are outside of the range [0, 2]. + nameWithType.vb: Matrix3x4d.Swizzle(Matrix3x4d, Integer, Integer, Integer, Matrix3x4d) + fullName.vb: OpenTK.Mathematics.Matrix3x4d.Swizzle(OpenTK.Mathematics.Matrix3x4d, Integer, Integer, Integer, OpenTK.Mathematics.Matrix3x4d) + name.vb: Swizzle(Matrix3x4d, Integer, Integer, Integer, Matrix3x4d) - uid: OpenTK.Mathematics.Matrix3x4d.op_Multiply(OpenTK.Mathematics.Matrix3x4d,OpenTK.Mathematics.Matrix4x3d) commentId: M:OpenTK.Mathematics.Matrix3x4d.op_Multiply(OpenTK.Mathematics.Matrix3x4d,OpenTK.Mathematics.Matrix4x3d) id: op_Multiply(OpenTK.Mathematics.Matrix3x4d,OpenTK.Mathematics.Matrix4x3d) @@ -2363,13 +2362,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x4d.operator *(OpenTK.Mathematics.Matrix3x4d, OpenTK.Mathematics.Matrix4x3d) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Multiply - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x4d.cs - startLine: 890 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x4d.cs + startLine: 1023 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2414,13 +2409,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x4d.operator *(OpenTK.Mathematics.Matrix3x4d, OpenTK.Mathematics.Matrix3x4d) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Multiply - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x4d.cs - startLine: 902 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x4d.cs + startLine: 1035 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2465,13 +2456,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x4d.operator *(OpenTK.Mathematics.Matrix3x4d, double) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Multiply - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x4d.cs - startLine: 914 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x4d.cs + startLine: 1047 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2516,13 +2503,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x4d.operator +(OpenTK.Mathematics.Matrix3x4d, OpenTK.Mathematics.Matrix3x4d) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Addition - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x4d.cs - startLine: 926 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x4d.cs + startLine: 1059 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2567,13 +2550,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x4d.operator -(OpenTK.Mathematics.Matrix3x4d, OpenTK.Mathematics.Matrix3x4d) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Subtraction - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x4d.cs - startLine: 938 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x4d.cs + startLine: 1071 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2618,13 +2597,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x4d.operator ==(OpenTK.Mathematics.Matrix3x4d, OpenTK.Mathematics.Matrix3x4d) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Equality - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x4d.cs - startLine: 950 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x4d.cs + startLine: 1083 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2669,13 +2644,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x4d.operator !=(OpenTK.Mathematics.Matrix3x4d, OpenTK.Mathematics.Matrix3x4d) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Inequality - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x4d.cs - startLine: 962 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x4d.cs + startLine: 1095 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2720,20 +2691,16 @@ items: fullName: OpenTK.Mathematics.Matrix3x4d.ToString() type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x4d.cs - startLine: 972 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x4d.cs + startLine: 1105 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Returns a System.String that represents the current Matrix4. example: [] syntax: - content: public override string ToString() + content: public override readonly string ToString() return: type: System.String description: The string representation of the matrix. @@ -2752,20 +2719,16 @@ items: fullName: OpenTK.Mathematics.Matrix3x4d.ToString(string) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x4d.cs - startLine: 978 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x4d.cs + startLine: 1111 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Formats the value of the current instance using the specified format. example: [] syntax: - content: public string ToString(string format) + content: public readonly string ToString(string format) parameters: - id: format type: System.String @@ -2795,20 +2758,16 @@ items: fullName: OpenTK.Mathematics.Matrix3x4d.ToString(System.IFormatProvider) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x4d.cs - startLine: 984 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x4d.cs + startLine: 1117 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Formats the value of the current instance using the specified format. example: [] syntax: - content: public string ToString(IFormatProvider formatProvider) + content: public readonly string ToString(IFormatProvider formatProvider) parameters: - id: formatProvider type: System.IFormatProvider @@ -2835,20 +2794,16 @@ items: fullName: OpenTK.Mathematics.Matrix3x4d.ToString(string, System.IFormatProvider) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x4d.cs - startLine: 990 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x4d.cs + startLine: 1123 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Formats the value of the current instance using the specified format. example: [] syntax: - content: public string ToString(string format, IFormatProvider formatProvider) + content: public readonly string ToString(string format, IFormatProvider formatProvider) parameters: - id: format type: System.String @@ -2888,20 +2843,16 @@ items: fullName: OpenTK.Mathematics.Matrix3x4d.GetHashCode() type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetHashCode - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x4d.cs - startLine: 1002 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x4d.cs + startLine: 1135 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Returns the hashcode for this instance. example: [] syntax: - content: public override int GetHashCode() + content: public override readonly int GetHashCode() return: type: System.Int32 description: A System.Int32 containing the unique hashcode for this instance. @@ -2920,13 +2871,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x4d.Equals(object) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Equals - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x4d.cs - startLine: 1012 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x4d.cs + startLine: 1145 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2936,7 +2883,7 @@ items: content: >- [Pure] - public override bool Equals(object obj) + public override readonly bool Equals(object obj) parameters: - id: obj type: System.Object @@ -2969,13 +2916,9 @@ items: fullName: OpenTK.Mathematics.Matrix3x4d.Equals(OpenTK.Mathematics.Matrix3x4d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix3x4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Equals - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix3x4d.cs - startLine: 1023 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix3x4d.cs + startLine: 1156 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2985,7 +2928,7 @@ items: content: >- [Pure] - public bool Equals(Matrix3x4d other) + public readonly bool Equals(Matrix3x4d other) parameters: - id: other type: OpenTK.Mathematics.Matrix3x4d @@ -3403,6 +3346,55 @@ references: name: Invert nameWithType: Matrix3x4d.Invert fullName: OpenTK.Mathematics.Matrix3x4d.Invert +- uid: OpenTK.Mathematics.Matrix3x4d.Inverted* + commentId: Overload:OpenTK.Mathematics.Matrix3x4d.Inverted + href: OpenTK.Mathematics.Matrix3x4d.html#OpenTK_Mathematics_Matrix3x4d_Inverted + name: Inverted + nameWithType: Matrix3x4d.Inverted + fullName: OpenTK.Mathematics.Matrix3x4d.Inverted +- uid: OpenTK.Mathematics.Matrix3x4d.Transposed* + commentId: Overload:OpenTK.Mathematics.Matrix3x4d.Transposed + href: OpenTK.Mathematics.Matrix3x4d.html#OpenTK_Mathematics_Matrix3x4d_Transposed + name: Transposed + nameWithType: Matrix3x4d.Transposed + fullName: OpenTK.Mathematics.Matrix3x4d.Transposed +- uid: OpenTK.Mathematics.Matrix4x3d + commentId: T:OpenTK.Mathematics.Matrix4x3d + parent: OpenTK.Mathematics + href: OpenTK.Mathematics.Matrix4x3d.html + name: Matrix4x3d + nameWithType: Matrix4x3d + fullName: OpenTK.Mathematics.Matrix4x3d +- uid: OpenTK.Mathematics.Matrix3x4d.Row0 + commentId: F:OpenTK.Mathematics.Matrix3x4d.Row0 + href: OpenTK.Mathematics.Matrix3x4d.html#OpenTK_Mathematics_Matrix3x4d_Row0 + name: Row0 + nameWithType: Matrix3x4d.Row0 + fullName: OpenTK.Mathematics.Matrix3x4d.Row0 +- uid: OpenTK.Mathematics.Matrix3x4d.Row1 + commentId: F:OpenTK.Mathematics.Matrix3x4d.Row1 + href: OpenTK.Mathematics.Matrix3x4d.html#OpenTK_Mathematics_Matrix3x4d_Row1 + name: Row1 + nameWithType: Matrix3x4d.Row1 + fullName: OpenTK.Mathematics.Matrix3x4d.Row1 +- uid: OpenTK.Mathematics.Matrix3x4d.Row2 + commentId: F:OpenTK.Mathematics.Matrix3x4d.Row2 + href: OpenTK.Mathematics.Matrix3x4d.html#OpenTK_Mathematics_Matrix3x4d_Row2 + name: Row2 + nameWithType: Matrix3x4d.Row2 + fullName: OpenTK.Mathematics.Matrix3x4d.Row2 +- uid: OpenTK.Mathematics.Matrix3x4d.Swizzle* + commentId: Overload:OpenTK.Mathematics.Matrix3x4d.Swizzle + href: OpenTK.Mathematics.Matrix3x4d.html#OpenTK_Mathematics_Matrix3x4d_Swizzle_System_Int32_System_Int32_System_Int32_ + name: Swizzle + nameWithType: Matrix3x4d.Swizzle + fullName: OpenTK.Mathematics.Matrix3x4d.Swizzle +- uid: OpenTK.Mathematics.Matrix3x4d.Swizzled* + commentId: Overload:OpenTK.Mathematics.Matrix3x4d.Swizzled + href: OpenTK.Mathematics.Matrix3x4d.html#OpenTK_Mathematics_Matrix3x4d_Swizzled_System_Int32_System_Int32_System_Int32_ + name: Swizzled + nameWithType: Matrix3x4d.Swizzled + fullName: OpenTK.Mathematics.Matrix3x4d.Swizzled - uid: OpenTK.Mathematics.Matrix3x4d.CreateFromAxisAngle* commentId: Overload:OpenTK.Mathematics.Matrix3x4d.CreateFromAxisAngle href: OpenTK.Mathematics.Matrix3x4d.html#OpenTK_Mathematics_Matrix3x4d_CreateFromAxisAngle_OpenTK_Mathematics_Vector3d_System_Double_OpenTK_Mathematics_Matrix3x4d__ @@ -3458,13 +3450,6 @@ references: name: Mult nameWithType: Matrix3x4d.Mult fullName: OpenTK.Mathematics.Matrix3x4d.Mult -- uid: OpenTK.Mathematics.Matrix4x3d - commentId: T:OpenTK.Mathematics.Matrix4x3d - parent: OpenTK.Mathematics - href: OpenTK.Mathematics.Matrix4x3d.html - name: Matrix4x3d - nameWithType: Matrix4x3d - fullName: OpenTK.Mathematics.Matrix4x3d - uid: OpenTK.Mathematics.Matrix3d commentId: T:OpenTK.Mathematics.Matrix3d parent: OpenTK.Mathematics @@ -3497,6 +3482,13 @@ references: name: Transpose nameWithType: Matrix3x4d.Transpose fullName: OpenTK.Mathematics.Matrix3x4d.Transpose +- uid: System.IndexOutOfRangeException + commentId: T:System.IndexOutOfRangeException + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.indexoutofrangeexception + name: IndexOutOfRangeException + nameWithType: IndexOutOfRangeException + fullName: System.IndexOutOfRangeException - uid: OpenTK.Mathematics.Matrix3x4d.op_Multiply* commentId: Overload:OpenTK.Mathematics.Matrix3x4d.op_Multiply href: OpenTK.Mathematics.Matrix3x4d.html#OpenTK_Mathematics_Matrix3x4d_op_Multiply_OpenTK_Mathematics_Matrix3x4d_OpenTK_Mathematics_Matrix4x3d_ diff --git a/api/OpenTK.Mathematics.Matrix4.yml b/api/OpenTK.Mathematics.Matrix4.yml index c135baf2..f26117c7 100644 --- a/api/OpenTK.Mathematics.Matrix4.yml +++ b/api/OpenTK.Mathematics.Matrix4.yml @@ -42,6 +42,8 @@ items: - OpenTK.Mathematics.Matrix4.CreateScale(System.Single,OpenTK.Mathematics.Matrix4@) - OpenTK.Mathematics.Matrix4.CreateScale(System.Single,System.Single,System.Single) - OpenTK.Mathematics.Matrix4.CreateScale(System.Single,System.Single,System.Single,OpenTK.Mathematics.Matrix4@) + - OpenTK.Mathematics.Matrix4.CreateSwizzle(System.Int32,System.Int32,System.Int32,System.Int32) + - OpenTK.Mathematics.Matrix4.CreateSwizzle(System.Int32,System.Int32,System.Int32,System.Int32,OpenTK.Mathematics.Matrix4@) - OpenTK.Mathematics.Matrix4.CreateTranslation(OpenTK.Mathematics.Vector3) - OpenTK.Mathematics.Matrix4.CreateTranslation(OpenTK.Mathematics.Vector3@,OpenTK.Mathematics.Matrix4@) - OpenTK.Mathematics.Matrix4.CreateTranslation(System.Single,System.Single,System.Single) @@ -91,6 +93,10 @@ items: - OpenTK.Mathematics.Matrix4.Row3 - OpenTK.Mathematics.Matrix4.Subtract(OpenTK.Mathematics.Matrix4,OpenTK.Mathematics.Matrix4) - OpenTK.Mathematics.Matrix4.Subtract(OpenTK.Mathematics.Matrix4@,OpenTK.Mathematics.Matrix4@,OpenTK.Mathematics.Matrix4@) + - OpenTK.Mathematics.Matrix4.Swizzle(OpenTK.Mathematics.Matrix4,System.Int32,System.Int32,System.Int32,System.Int32) + - OpenTK.Mathematics.Matrix4.Swizzle(OpenTK.Mathematics.Matrix4@,System.Int32,System.Int32,System.Int32,System.Int32,OpenTK.Mathematics.Matrix4@) + - OpenTK.Mathematics.Matrix4.Swizzle(System.Int32,System.Int32,System.Int32,System.Int32) + - OpenTK.Mathematics.Matrix4.Swizzled(System.Int32,System.Int32,System.Int32,System.Int32) - OpenTK.Mathematics.Matrix4.ToString - OpenTK.Mathematics.Matrix4.ToString(System.IFormatProvider) - OpenTK.Mathematics.Matrix4.ToString(System.String) @@ -99,6 +105,7 @@ items: - OpenTK.Mathematics.Matrix4.Transpose - OpenTK.Mathematics.Matrix4.Transpose(OpenTK.Mathematics.Matrix4) - OpenTK.Mathematics.Matrix4.Transpose(OpenTK.Mathematics.Matrix4@,OpenTK.Mathematics.Matrix4@) + - OpenTK.Mathematics.Matrix4.Transposed - OpenTK.Mathematics.Matrix4.Zero - OpenTK.Mathematics.Matrix4.op_Addition(OpenTK.Mathematics.Matrix4,OpenTK.Mathematics.Matrix4) - OpenTK.Mathematics.Matrix4.op_Equality(OpenTK.Mathematics.Matrix4,OpenTK.Mathematics.Matrix4) @@ -114,13 +121,9 @@ items: fullName: OpenTK.Mathematics.Matrix4 type: Struct source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Matrix4 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4.cs - startLine: 43 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4.cs + startLine: 36 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -161,13 +164,9 @@ items: fullName: OpenTK.Mathematics.Matrix4.Row0 type: Field source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Row0 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4.cs - startLine: 50 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4.cs + startLine: 43 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -190,13 +189,9 @@ items: fullName: OpenTK.Mathematics.Matrix4.Row1 type: Field source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Row1 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4.cs - startLine: 55 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4.cs + startLine: 48 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -219,13 +214,9 @@ items: fullName: OpenTK.Mathematics.Matrix4.Row2 type: Field source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Row2 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4.cs - startLine: 60 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4.cs + startLine: 53 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -248,13 +239,9 @@ items: fullName: OpenTK.Mathematics.Matrix4.Row3 type: Field source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Row3 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4.cs - startLine: 65 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4.cs + startLine: 58 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -277,13 +264,9 @@ items: fullName: OpenTK.Mathematics.Matrix4.Identity type: Field source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Identity - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4.cs - startLine: 70 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4.cs + startLine: 63 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -306,13 +289,9 @@ items: fullName: OpenTK.Mathematics.Matrix4.Zero type: Field source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Zero - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4.cs - startLine: 76 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4.cs + startLine: 68 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -335,13 +314,9 @@ items: fullName: OpenTK.Mathematics.Matrix4.Matrix4(OpenTK.Mathematics.Vector4, OpenTK.Mathematics.Vector4, OpenTK.Mathematics.Vector4, OpenTK.Mathematics.Vector4) type: Constructor source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4.cs - startLine: 85 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4.cs + startLine: 77 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -379,13 +354,9 @@ items: fullName: OpenTK.Mathematics.Matrix4.Matrix4(float, float, float, float, float, float, float, float, float, float, float, float, float, float, float, float) type: Constructor source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4.cs - startLine: 112 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4.cs + startLine: 104 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -459,13 +430,9 @@ items: fullName: OpenTK.Mathematics.Matrix4.Matrix4(OpenTK.Mathematics.Matrix3) type: Constructor source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4.cs - startLine: 131 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4.cs + startLine: 123 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -494,20 +461,16 @@ items: fullName: OpenTK.Mathematics.Matrix4.Determinant type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Determinant - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4.cs - startLine: 154 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4.cs + startLine: 146 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets the determinant of this matrix. example: [] syntax: - content: public float Determinant { get; } + content: public readonly float Determinant { get; } parameters: [] return: type: System.Single @@ -525,20 +488,16 @@ items: fullName: OpenTK.Mathematics.Matrix4.Column0 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Column0 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4.cs - startLine: 189 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4.cs + startLine: 181 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the first column of this matrix. example: [] syntax: - content: public Vector4 Column0 { get; set; } + content: public Vector4 Column0 { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector4 @@ -556,20 +515,16 @@ items: fullName: OpenTK.Mathematics.Matrix4.Column1 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Column1 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4.cs - startLine: 204 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4.cs + startLine: 196 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the second column of this matrix. example: [] syntax: - content: public Vector4 Column1 { get; set; } + content: public Vector4 Column1 { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector4 @@ -587,20 +542,16 @@ items: fullName: OpenTK.Mathematics.Matrix4.Column2 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Column2 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4.cs - startLine: 219 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4.cs + startLine: 211 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the third column of this matrix. example: [] syntax: - content: public Vector4 Column2 { get; set; } + content: public Vector4 Column2 { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector4 @@ -618,20 +569,16 @@ items: fullName: OpenTK.Mathematics.Matrix4.Column3 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Column3 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4.cs - startLine: 234 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4.cs + startLine: 226 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the fourth column of this matrix. example: [] syntax: - content: public Vector4 Column3 { get; set; } + content: public Vector4 Column3 { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector4 @@ -649,20 +596,16 @@ items: fullName: OpenTK.Mathematics.Matrix4.M11 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M11 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4.cs - startLine: 249 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4.cs + startLine: 241 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 1, column 1 of this instance. example: [] syntax: - content: public float M11 { get; set; } + content: public float M11 { readonly get; set; } parameters: [] return: type: System.Single @@ -680,20 +623,16 @@ items: fullName: OpenTK.Mathematics.Matrix4.M12 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M12 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4.cs - startLine: 258 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4.cs + startLine: 250 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 1, column 2 of this instance. example: [] syntax: - content: public float M12 { get; set; } + content: public float M12 { readonly get; set; } parameters: [] return: type: System.Single @@ -711,20 +650,16 @@ items: fullName: OpenTK.Mathematics.Matrix4.M13 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M13 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4.cs - startLine: 267 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4.cs + startLine: 259 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 1, column 3 of this instance. example: [] syntax: - content: public float M13 { get; set; } + content: public float M13 { readonly get; set; } parameters: [] return: type: System.Single @@ -742,20 +677,16 @@ items: fullName: OpenTK.Mathematics.Matrix4.M14 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M14 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4.cs - startLine: 276 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4.cs + startLine: 268 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 1, column 4 of this instance. example: [] syntax: - content: public float M14 { get; set; } + content: public float M14 { readonly get; set; } parameters: [] return: type: System.Single @@ -773,20 +704,16 @@ items: fullName: OpenTK.Mathematics.Matrix4.M21 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M21 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4.cs - startLine: 285 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4.cs + startLine: 277 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 2, column 1 of this instance. example: [] syntax: - content: public float M21 { get; set; } + content: public float M21 { readonly get; set; } parameters: [] return: type: System.Single @@ -804,20 +731,16 @@ items: fullName: OpenTK.Mathematics.Matrix4.M22 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M22 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4.cs - startLine: 294 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4.cs + startLine: 286 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 2, column 2 of this instance. example: [] syntax: - content: public float M22 { get; set; } + content: public float M22 { readonly get; set; } parameters: [] return: type: System.Single @@ -835,20 +758,16 @@ items: fullName: OpenTK.Mathematics.Matrix4.M23 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M23 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4.cs - startLine: 303 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4.cs + startLine: 295 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 2, column 3 of this instance. example: [] syntax: - content: public float M23 { get; set; } + content: public float M23 { readonly get; set; } parameters: [] return: type: System.Single @@ -866,20 +785,16 @@ items: fullName: OpenTK.Mathematics.Matrix4.M24 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M24 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4.cs - startLine: 312 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4.cs + startLine: 304 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 2, column 4 of this instance. example: [] syntax: - content: public float M24 { get; set; } + content: public float M24 { readonly get; set; } parameters: [] return: type: System.Single @@ -897,20 +812,16 @@ items: fullName: OpenTK.Mathematics.Matrix4.M31 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M31 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4.cs - startLine: 321 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4.cs + startLine: 313 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 3, column 1 of this instance. example: [] syntax: - content: public float M31 { get; set; } + content: public float M31 { readonly get; set; } parameters: [] return: type: System.Single @@ -928,20 +839,16 @@ items: fullName: OpenTK.Mathematics.Matrix4.M32 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M32 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4.cs - startLine: 330 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4.cs + startLine: 322 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 3, column 2 of this instance. example: [] syntax: - content: public float M32 { get; set; } + content: public float M32 { readonly get; set; } parameters: [] return: type: System.Single @@ -959,20 +866,16 @@ items: fullName: OpenTK.Mathematics.Matrix4.M33 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M33 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4.cs - startLine: 339 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4.cs + startLine: 331 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 3, column 3 of this instance. example: [] syntax: - content: public float M33 { get; set; } + content: public float M33 { readonly get; set; } parameters: [] return: type: System.Single @@ -990,20 +893,16 @@ items: fullName: OpenTK.Mathematics.Matrix4.M34 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M34 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4.cs - startLine: 348 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4.cs + startLine: 340 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 3, column 4 of this instance. example: [] syntax: - content: public float M34 { get; set; } + content: public float M34 { readonly get; set; } parameters: [] return: type: System.Single @@ -1021,20 +920,16 @@ items: fullName: OpenTK.Mathematics.Matrix4.M41 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M41 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4.cs - startLine: 357 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4.cs + startLine: 349 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 4, column 1 of this instance. example: [] syntax: - content: public float M41 { get; set; } + content: public float M41 { readonly get; set; } parameters: [] return: type: System.Single @@ -1052,20 +947,16 @@ items: fullName: OpenTK.Mathematics.Matrix4.M42 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M42 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4.cs - startLine: 366 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4.cs + startLine: 358 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 4, column 2 of this instance. example: [] syntax: - content: public float M42 { get; set; } + content: public float M42 { readonly get; set; } parameters: [] return: type: System.Single @@ -1083,20 +974,16 @@ items: fullName: OpenTK.Mathematics.Matrix4.M43 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M43 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4.cs - startLine: 375 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4.cs + startLine: 367 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 4, column 3 of this instance. example: [] syntax: - content: public float M43 { get; set; } + content: public float M43 { readonly get; set; } parameters: [] return: type: System.Single @@ -1114,20 +1001,16 @@ items: fullName: OpenTK.Mathematics.Matrix4.M44 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M44 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4.cs - startLine: 384 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4.cs + startLine: 376 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 4, column 4 of this instance. example: [] syntax: - content: public float M44 { get; set; } + content: public float M44 { readonly get; set; } parameters: [] return: type: System.Single @@ -1145,20 +1028,16 @@ items: fullName: OpenTK.Mathematics.Matrix4.Diagonal type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Diagonal - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4.cs - startLine: 393 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4.cs + startLine: 385 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the values along the main diagonal of the matrix. example: [] syntax: - content: public Vector4 Diagonal { get; set; } + content: public Vector4 Diagonal { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector4 @@ -1176,20 +1055,16 @@ items: fullName: OpenTK.Mathematics.Matrix4.Trace type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Trace - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4.cs - startLine: 408 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4.cs + startLine: 400 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets the trace of the matrix, the sum of the values along the diagonal. example: [] syntax: - content: public float Trace { get; } + content: public readonly float Trace { get; } parameters: [] return: type: System.Single @@ -1207,20 +1082,16 @@ items: fullName: OpenTK.Mathematics.Matrix4.this[int, int] type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: this[] - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4.cs - startLine: 416 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4.cs + startLine: 408 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at a specified row and column. example: [] syntax: - content: public float this[int rowIndex, int columnIndex] { get; set; } + content: public float this[int rowIndex, int columnIndex] { readonly get; set; } parameters: - id: rowIndex type: System.Int32 @@ -1248,13 +1119,9 @@ items: fullName: OpenTK.Mathematics.Matrix4.Invert() type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Invert - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4.cs - startLine: 473 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4.cs + startLine: 465 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1264,6 +1131,37 @@ items: content: public void Invert() content.vb: Public Sub Invert() overload: OpenTK.Mathematics.Matrix4.Invert* +- uid: OpenTK.Mathematics.Matrix4.Inverted + commentId: M:OpenTK.Mathematics.Matrix4.Inverted + id: Inverted + parent: OpenTK.Mathematics.Matrix4 + langs: + - csharp + - vb + name: Inverted() + nameWithType: Matrix4.Inverted() + fullName: OpenTK.Mathematics.Matrix4.Inverted() + type: Method + source: + id: Inverted + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4.cs + startLine: 478 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: Returns an inverted copy of this instance. + remarks: >- + If the matrix is singular this function does not throw an exception, + + instead it returns the original un-inverted matrix. + example: [] + syntax: + content: public readonly Matrix4 Inverted() + return: + type: OpenTK.Mathematics.Matrix4 + description: The inverted copy. + content.vb: Public Function Inverted() As Matrix4 + overload: OpenTK.Mathematics.Matrix4.Inverted* - uid: OpenTK.Mathematics.Matrix4.Transpose commentId: M:OpenTK.Mathematics.Matrix4.Transpose id: Transpose @@ -1276,13 +1174,9 @@ items: fullName: OpenTK.Mathematics.Matrix4.Transpose() type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Transpose - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4.cs - startLine: 481 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4.cs + startLine: 492 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1292,37 +1186,33 @@ items: content: public void Transpose() content.vb: Public Sub Transpose() overload: OpenTK.Mathematics.Matrix4.Transpose* -- uid: OpenTK.Mathematics.Matrix4.Normalized - commentId: M:OpenTK.Mathematics.Matrix4.Normalized - id: Normalized +- uid: OpenTK.Mathematics.Matrix4.Transposed + commentId: M:OpenTK.Mathematics.Matrix4.Transposed + id: Transposed parent: OpenTK.Mathematics.Matrix4 langs: - csharp - vb - name: Normalized() - nameWithType: Matrix4.Normalized() - fullName: OpenTK.Mathematics.Matrix4.Normalized() + name: Transposed() + nameWithType: Matrix4.Transposed() + fullName: OpenTK.Mathematics.Matrix4.Transposed() type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Normalized - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4.cs - startLine: 490 + id: Transposed + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4.cs + startLine: 501 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics - summary: Returns a normalized copy of this instance. + summary: Returns a transposed copy of this instance. example: [] syntax: - content: public Matrix4 Normalized() + content: public readonly Matrix4 Transposed() return: type: OpenTK.Mathematics.Matrix4 - description: The normalized copy. - content.vb: Public Function Normalized() As Matrix4 - overload: OpenTK.Mathematics.Matrix4.Normalized* + description: The transposed copy. + content.vb: Public Function Transposed() As Matrix4 + overload: OpenTK.Mathematics.Matrix4.Transposed* - uid: OpenTK.Mathematics.Matrix4.Normalize commentId: M:OpenTK.Mathematics.Matrix4.Normalize id: Normalize @@ -1335,13 +1225,9 @@ items: fullName: OpenTK.Mathematics.Matrix4.Normalize() type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Normalize - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4.cs - startLine: 500 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4.cs + startLine: 511 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1351,37 +1237,116 @@ items: content: public void Normalize() content.vb: Public Sub Normalize() overload: OpenTK.Mathematics.Matrix4.Normalize* -- uid: OpenTK.Mathematics.Matrix4.Inverted - commentId: M:OpenTK.Mathematics.Matrix4.Inverted - id: Inverted +- uid: OpenTK.Mathematics.Matrix4.Normalized + commentId: M:OpenTK.Mathematics.Matrix4.Normalized + id: Normalized parent: OpenTK.Mathematics.Matrix4 langs: - csharp - vb - name: Inverted() - nameWithType: Matrix4.Inverted() - fullName: OpenTK.Mathematics.Matrix4.Inverted() + name: Normalized() + nameWithType: Matrix4.Normalized() + fullName: OpenTK.Mathematics.Matrix4.Normalized() type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Inverted - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4.cs - startLine: 513 + id: Normalized + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4.cs + startLine: 524 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics - summary: Returns an inverted copy of this instance. + summary: Returns a normalized copy of this instance. example: [] syntax: - content: public Matrix4 Inverted() + content: public readonly Matrix4 Normalized() return: type: OpenTK.Mathematics.Matrix4 - description: The inverted copy. - content.vb: Public Function Inverted() As Matrix4 - overload: OpenTK.Mathematics.Matrix4.Inverted* + description: The normalized copy. + content.vb: Public Function Normalized() As Matrix4 + overload: OpenTK.Mathematics.Matrix4.Normalized* +- uid: OpenTK.Mathematics.Matrix4.Swizzle(System.Int32,System.Int32,System.Int32,System.Int32) + commentId: M:OpenTK.Mathematics.Matrix4.Swizzle(System.Int32,System.Int32,System.Int32,System.Int32) + id: Swizzle(System.Int32,System.Int32,System.Int32,System.Int32) + parent: OpenTK.Mathematics.Matrix4 + langs: + - csharp + - vb + name: Swizzle(int, int, int, int) + nameWithType: Matrix4.Swizzle(int, int, int, int) + fullName: OpenTK.Mathematics.Matrix4.Swizzle(int, int, int, int) + type: Method + source: + id: Swizzle + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4.cs + startLine: 538 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: Swizzles this instance. Switches places of the rows of the matrix. + example: [] + syntax: + content: public void Swizzle(int rowForRow0, int rowForRow1, int rowForRow2, int rowForRow3) + parameters: + - id: rowForRow0 + type: System.Int32 + description: Which row to place in . + - id: rowForRow1 + type: System.Int32 + description: Which row to place in . + - id: rowForRow2 + type: System.Int32 + description: Which row to place in . + - id: rowForRow3 + type: System.Int32 + description: Which row to place in . + content.vb: Public Sub Swizzle(rowForRow0 As Integer, rowForRow1 As Integer, rowForRow2 As Integer, rowForRow3 As Integer) + overload: OpenTK.Mathematics.Matrix4.Swizzle* + nameWithType.vb: Matrix4.Swizzle(Integer, Integer, Integer, Integer) + fullName.vb: OpenTK.Mathematics.Matrix4.Swizzle(Integer, Integer, Integer, Integer) + name.vb: Swizzle(Integer, Integer, Integer, Integer) +- uid: OpenTK.Mathematics.Matrix4.Swizzled(System.Int32,System.Int32,System.Int32,System.Int32) + commentId: M:OpenTK.Mathematics.Matrix4.Swizzled(System.Int32,System.Int32,System.Int32,System.Int32) + id: Swizzled(System.Int32,System.Int32,System.Int32,System.Int32) + parent: OpenTK.Mathematics.Matrix4 + langs: + - csharp + - vb + name: Swizzled(int, int, int, int) + nameWithType: Matrix4.Swizzled(int, int, int, int) + fullName: OpenTK.Mathematics.Matrix4.Swizzled(int, int, int, int) + type: Method + source: + id: Swizzled + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4.cs + startLine: 551 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: Returns a swizzled copy of this instance. + example: [] + syntax: + content: public readonly Matrix4 Swizzled(int rowForRow0, int rowForRow1, int rowForRow2, int rowForRow3) + parameters: + - id: rowForRow0 + type: System.Int32 + description: Which row to place in . + - id: rowForRow1 + type: System.Int32 + description: Which row to place in . + - id: rowForRow2 + type: System.Int32 + description: Which row to place in . + - id: rowForRow3 + type: System.Int32 + description: Which row to place in . + return: + type: OpenTK.Mathematics.Matrix4 + description: The swizzled copy. + content.vb: Public Function Swizzled(rowForRow0 As Integer, rowForRow1 As Integer, rowForRow2 As Integer, rowForRow3 As Integer) As Matrix4 + overload: OpenTK.Mathematics.Matrix4.Swizzled* + nameWithType.vb: Matrix4.Swizzled(Integer, Integer, Integer, Integer) + fullName.vb: OpenTK.Mathematics.Matrix4.Swizzled(Integer, Integer, Integer, Integer) + name.vb: Swizzled(Integer, Integer, Integer, Integer) - uid: OpenTK.Mathematics.Matrix4.ClearTranslation commentId: M:OpenTK.Mathematics.Matrix4.ClearTranslation id: ClearTranslation @@ -1394,20 +1359,16 @@ items: fullName: OpenTK.Mathematics.Matrix4.ClearTranslation() type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ClearTranslation - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4.cs - startLine: 528 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4.cs + startLine: 562 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Returns a copy of this Matrix4 without translation. example: [] syntax: - content: public Matrix4 ClearTranslation() + content: public readonly Matrix4 ClearTranslation() return: type: OpenTK.Mathematics.Matrix4 description: The matrix without translation. @@ -1425,20 +1386,16 @@ items: fullName: OpenTK.Mathematics.Matrix4.ClearScale() type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ClearScale - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4.cs - startLine: 539 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4.cs + startLine: 573 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Returns a copy of this Matrix4 without scale. example: [] syntax: - content: public Matrix4 ClearScale() + content: public readonly Matrix4 ClearScale() return: type: OpenTK.Mathematics.Matrix4 description: The matrix without scaling. @@ -1456,20 +1413,16 @@ items: fullName: OpenTK.Mathematics.Matrix4.ClearRotation() type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ClearRotation - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4.cs - startLine: 552 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4.cs + startLine: 586 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Returns a copy of this Matrix4 without rotation. example: [] syntax: - content: public Matrix4 ClearRotation() + content: public readonly Matrix4 ClearRotation() return: type: OpenTK.Mathematics.Matrix4 description: The matrix without rotation. @@ -1487,20 +1440,16 @@ items: fullName: OpenTK.Mathematics.Matrix4.ClearProjection() type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ClearProjection - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4.cs - startLine: 565 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4.cs + startLine: 599 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Returns a copy of this Matrix4 without projection. example: [] syntax: - content: public Matrix4 ClearProjection() + content: public readonly Matrix4 ClearProjection() return: type: OpenTK.Mathematics.Matrix4 description: The matrix without projection. @@ -1518,20 +1467,16 @@ items: fullName: OpenTK.Mathematics.Matrix4.ExtractTranslation() type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ExtractTranslation - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4.cs - startLine: 576 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4.cs + startLine: 610 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Returns the translation component of this instance. example: [] syntax: - content: public Vector3 ExtractTranslation() + content: public readonly Vector3 ExtractTranslation() return: type: OpenTK.Mathematics.Vector3 description: The translation. @@ -1549,20 +1494,16 @@ items: fullName: OpenTK.Mathematics.Matrix4.ExtractScale() type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ExtractScale - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4.cs - startLine: 585 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4.cs + startLine: 619 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Returns the scale component of this instance. example: [] syntax: - content: public Vector3 ExtractScale() + content: public readonly Vector3 ExtractScale() return: type: OpenTK.Mathematics.Vector3 description: The scale. @@ -1580,13 +1521,9 @@ items: fullName: OpenTK.Mathematics.Matrix4.ExtractRotation(bool) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ExtractRotation - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4.cs - startLine: 598 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4.cs + startLine: 632 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1596,7 +1533,7 @@ items: content: >- [Pure] - public Quaternion ExtractRotation(bool rowNormalize = true) + public readonly Quaternion ExtractRotation(bool rowNormalize = true) parameters: - id: rowNormalize type: System.Boolean @@ -1631,20 +1568,16 @@ items: fullName: OpenTK.Mathematics.Matrix4.ExtractProjection() type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ExtractProjection - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4.cs - startLine: 665 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4.cs + startLine: 699 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Returns the projection component of this instance. example: [] syntax: - content: public Vector4 ExtractProjection() + content: public readonly Vector4 ExtractProjection() return: type: OpenTK.Mathematics.Vector4 description: The projection. @@ -1662,13 +1595,9 @@ items: fullName: OpenTK.Mathematics.Matrix4.CreateFromAxisAngle(OpenTK.Mathematics.Vector3, float, out OpenTK.Mathematics.Matrix4) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateFromAxisAngle - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4.cs - startLine: 676 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4.cs + startLine: 710 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1703,13 +1632,9 @@ items: fullName: OpenTK.Mathematics.Matrix4.CreateFromAxisAngle(OpenTK.Mathematics.Vector3, float) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateFromAxisAngle - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4.cs - startLine: 720 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4.cs + startLine: 754 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1754,13 +1679,9 @@ items: fullName: OpenTK.Mathematics.Matrix4.CreateFromQuaternion(in OpenTK.Mathematics.Quaternion, out OpenTK.Mathematics.Matrix4) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateFromQuaternion - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4.cs - startLine: 732 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4.cs + startLine: 766 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1792,13 +1713,9 @@ items: fullName: OpenTK.Mathematics.Matrix4.CreateFromQuaternion(OpenTK.Mathematics.Quaternion) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateFromQuaternion - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4.cs - startLine: 776 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4.cs + startLine: 810 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1837,13 +1754,9 @@ items: fullName: OpenTK.Mathematics.Matrix4.CreateRotationX(float, out OpenTK.Mathematics.Matrix4) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateRotationX - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4.cs - startLine: 788 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4.cs + startLine: 822 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1875,13 +1788,9 @@ items: fullName: OpenTK.Mathematics.Matrix4.CreateRotationX(float) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateRotationX - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4.cs - startLine: 805 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4.cs + startLine: 839 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1923,13 +1832,9 @@ items: fullName: OpenTK.Mathematics.Matrix4.CreateRotationY(float, out OpenTK.Mathematics.Matrix4) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateRotationY - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4.cs - startLine: 817 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4.cs + startLine: 851 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1961,13 +1866,9 @@ items: fullName: OpenTK.Mathematics.Matrix4.CreateRotationY(float) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateRotationY - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4.cs - startLine: 834 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4.cs + startLine: 868 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2009,13 +1910,9 @@ items: fullName: OpenTK.Mathematics.Matrix4.CreateRotationZ(float, out OpenTK.Mathematics.Matrix4) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateRotationZ - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4.cs - startLine: 846 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4.cs + startLine: 880 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2047,13 +1944,9 @@ items: fullName: OpenTK.Mathematics.Matrix4.CreateRotationZ(float) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateRotationZ - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4.cs - startLine: 863 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4.cs + startLine: 897 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2095,13 +1988,9 @@ items: fullName: OpenTK.Mathematics.Matrix4.CreateTranslation(float, float, float, out OpenTK.Mathematics.Matrix4) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateTranslation - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4.cs - startLine: 877 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4.cs + startLine: 911 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2139,13 +2028,9 @@ items: fullName: OpenTK.Mathematics.Matrix4.CreateTranslation(in OpenTK.Mathematics.Vector3, out OpenTK.Mathematics.Matrix4) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateTranslation - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4.cs - startLine: 890 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4.cs + startLine: 924 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2177,13 +2062,9 @@ items: fullName: OpenTK.Mathematics.Matrix4.CreateTranslation(float, float, float) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateTranslation - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4.cs - startLine: 905 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4.cs + startLine: 939 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2231,13 +2112,9 @@ items: fullName: OpenTK.Mathematics.Matrix4.CreateTranslation(OpenTK.Mathematics.Vector3) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateTranslation - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4.cs - startLine: 917 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4.cs + startLine: 951 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2276,13 +2153,9 @@ items: fullName: OpenTK.Mathematics.Matrix4.CreateScale(float) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateScale - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4.cs - startLine: 929 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4.cs + startLine: 963 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2324,13 +2197,9 @@ items: fullName: OpenTK.Mathematics.Matrix4.CreateScale(OpenTK.Mathematics.Vector3) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateScale - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4.cs - startLine: 941 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4.cs + startLine: 975 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2369,13 +2238,9 @@ items: fullName: OpenTK.Mathematics.Matrix4.CreateScale(float, float, float) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateScale - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4.cs - startLine: 955 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4.cs + startLine: 989 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2423,13 +2288,9 @@ items: fullName: OpenTK.Mathematics.Matrix4.CreateScale(float, out OpenTK.Mathematics.Matrix4) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateScale - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4.cs - startLine: 967 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4.cs + startLine: 1001 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2461,13 +2322,9 @@ items: fullName: OpenTK.Mathematics.Matrix4.CreateScale(in OpenTK.Mathematics.Vector3, out OpenTK.Mathematics.Matrix4) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateScale - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4.cs - startLine: 980 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4.cs + startLine: 1014 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2499,13 +2356,9 @@ items: fullName: OpenTK.Mathematics.Matrix4.CreateScale(float, float, float, out OpenTK.Mathematics.Matrix4) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateScale - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4.cs - startLine: 995 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4.cs + startLine: 1029 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2531,6 +2384,94 @@ items: nameWithType.vb: Matrix4.CreateScale(Single, Single, Single, Matrix4) fullName.vb: OpenTK.Mathematics.Matrix4.CreateScale(Single, Single, Single, OpenTK.Mathematics.Matrix4) name.vb: CreateScale(Single, Single, Single, Matrix4) +- uid: OpenTK.Mathematics.Matrix4.CreateSwizzle(System.Int32,System.Int32,System.Int32,System.Int32) + commentId: M:OpenTK.Mathematics.Matrix4.CreateSwizzle(System.Int32,System.Int32,System.Int32,System.Int32) + id: CreateSwizzle(System.Int32,System.Int32,System.Int32,System.Int32) + parent: OpenTK.Mathematics.Matrix4 + langs: + - csharp + - vb + name: CreateSwizzle(int, int, int, int) + nameWithType: Matrix4.CreateSwizzle(int, int, int, int) + fullName: OpenTK.Mathematics.Matrix4.CreateSwizzle(int, int, int, int) + type: Method + source: + id: CreateSwizzle + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4.cs + startLine: 1048 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: Create a swizzle matrix that can be used to change the row order of matrices. + remarks: If you are looking to swizzle vectors there are properties like that can do this more effectively. + example: [] + syntax: + content: public static Matrix4 CreateSwizzle(int rowForRow0, int rowForRow1, int rowForRow2, int rowForRow3) + parameters: + - id: rowForRow0 + type: System.Int32 + description: Which row to place in . + - id: rowForRow1 + type: System.Int32 + description: Which row to place in . + - id: rowForRow2 + type: System.Int32 + description: Which row to place in . + - id: rowForRow3 + type: System.Int32 + description: Which row to place in . + return: + type: OpenTK.Mathematics.Matrix4 + description: The resulting swizzle matrix. + content.vb: Public Shared Function CreateSwizzle(rowForRow0 As Integer, rowForRow1 As Integer, rowForRow2 As Integer, rowForRow3 As Integer) As Matrix4 + overload: OpenTK.Mathematics.Matrix4.CreateSwizzle* + nameWithType.vb: Matrix4.CreateSwizzle(Integer, Integer, Integer, Integer) + fullName.vb: OpenTK.Mathematics.Matrix4.CreateSwizzle(Integer, Integer, Integer, Integer) + name.vb: CreateSwizzle(Integer, Integer, Integer, Integer) +- uid: OpenTK.Mathematics.Matrix4.CreateSwizzle(System.Int32,System.Int32,System.Int32,System.Int32,OpenTK.Mathematics.Matrix4@) + commentId: M:OpenTK.Mathematics.Matrix4.CreateSwizzle(System.Int32,System.Int32,System.Int32,System.Int32,OpenTK.Mathematics.Matrix4@) + id: CreateSwizzle(System.Int32,System.Int32,System.Int32,System.Int32,OpenTK.Mathematics.Matrix4@) + parent: OpenTK.Mathematics.Matrix4 + langs: + - csharp + - vb + name: CreateSwizzle(int, int, int, int, out Matrix4) + nameWithType: Matrix4.CreateSwizzle(int, int, int, int, out Matrix4) + fullName: OpenTK.Mathematics.Matrix4.CreateSwizzle(int, int, int, int, out OpenTK.Mathematics.Matrix4) + type: Method + source: + id: CreateSwizzle + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4.cs + startLine: 1065 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: Create a swizzle matrix that can be used to change the row order of matrices. + remarks: If you are looking to swizzle vectors there are properties like that can do this more effectively. + example: [] + syntax: + content: public static void CreateSwizzle(int rowForRow0, int rowForRow1, int rowForRow2, int rowForRow3, out Matrix4 result) + parameters: + - id: rowForRow0 + type: System.Int32 + description: Which row to place in . + - id: rowForRow1 + type: System.Int32 + description: Which row to place in . + - id: rowForRow2 + type: System.Int32 + description: Which row to place in . + - id: rowForRow3 + type: System.Int32 + description: Which row to place in . + - id: result + type: OpenTK.Mathematics.Matrix4 + description: The resulting swizzle matrix. + content.vb: Public Shared Sub CreateSwizzle(rowForRow0 As Integer, rowForRow1 As Integer, rowForRow2 As Integer, rowForRow3 As Integer, result As Matrix4) + overload: OpenTK.Mathematics.Matrix4.CreateSwizzle* + nameWithType.vb: Matrix4.CreateSwizzle(Integer, Integer, Integer, Integer, Matrix4) + fullName.vb: OpenTK.Mathematics.Matrix4.CreateSwizzle(Integer, Integer, Integer, Integer, OpenTK.Mathematics.Matrix4) + name.vb: CreateSwizzle(Integer, Integer, Integer, Integer, Matrix4) - uid: OpenTK.Mathematics.Matrix4.CreateOrthographic(System.Single,System.Single,System.Single,System.Single,OpenTK.Mathematics.Matrix4@) commentId: M:OpenTK.Mathematics.Matrix4.CreateOrthographic(System.Single,System.Single,System.Single,System.Single,OpenTK.Mathematics.Matrix4@) id: CreateOrthographic(System.Single,System.Single,System.Single,System.Single,OpenTK.Mathematics.Matrix4@) @@ -2543,13 +2484,9 @@ items: fullName: OpenTK.Mathematics.Matrix4.CreateOrthographic(float, float, float, float, out OpenTK.Mathematics.Matrix4) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateOrthographic - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4.cs - startLine: 1011 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4.cs + startLine: 1099 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2590,13 +2527,9 @@ items: fullName: OpenTK.Mathematics.Matrix4.CreateOrthographic(float, float, float, float) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateOrthographic - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4.cs - startLine: 1024 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4.cs + startLine: 1112 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2647,13 +2580,9 @@ items: fullName: OpenTK.Mathematics.Matrix4.CreateOrthographicOffCenter(float, float, float, float, float, float, out OpenTK.Mathematics.Matrix4) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateOrthographicOffCenter - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4.cs - startLine: 1041 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4.cs + startLine: 1129 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2700,13 +2629,9 @@ items: fullName: OpenTK.Mathematics.Matrix4.CreateOrthographicOffCenter(float, float, float, float, float, float) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateOrthographicOffCenter - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4.cs - startLine: 1077 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4.cs + startLine: 1165 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2763,13 +2688,9 @@ items: fullName: OpenTK.Mathematics.Matrix4.CreatePerspectiveFieldOfView(float, float, float, float, out OpenTK.Mathematics.Matrix4) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreatePerspectiveFieldOfView - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4.cs - startLine: 1110 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4.cs + startLine: 1198 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2816,13 +2737,9 @@ items: fullName: OpenTK.Mathematics.Matrix4.CreatePerspectiveFieldOfView(float, float, float, float) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreatePerspectiveFieldOfView - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4.cs - startLine: 1165 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4.cs + startLine: 1253 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2879,13 +2796,9 @@ items: fullName: OpenTK.Mathematics.Matrix4.CreatePerspectiveOffCenter(float, float, float, float, float, float, out OpenTK.Mathematics.Matrix4) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreatePerspectiveOffCenter - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4.cs - startLine: 1190 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4.cs + startLine: 1278 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2938,13 +2851,9 @@ items: fullName: OpenTK.Mathematics.Matrix4.CreatePerspectiveOffCenter(float, float, float, float, float, float) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreatePerspectiveOffCenter - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4.cs - startLine: 1259 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4.cs + startLine: 1347 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -3007,13 +2916,9 @@ items: fullName: OpenTK.Mathematics.Matrix4.LookAt(OpenTK.Mathematics.Vector3, OpenTK.Mathematics.Vector3, OpenTK.Mathematics.Vector3) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: LookAt - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4.cs - startLine: 1281 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4.cs + startLine: 1369 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -3058,13 +2963,9 @@ items: fullName: OpenTK.Mathematics.Matrix4.LookAt(float, float, float, float, float, float, float, float, float) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: LookAt - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4.cs - startLine: 1329 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4.cs + startLine: 1417 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -3130,13 +3031,9 @@ items: fullName: OpenTK.Mathematics.Matrix4.Add(OpenTK.Mathematics.Matrix4, OpenTK.Mathematics.Matrix4) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Add - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4.cs - startLine: 1357 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4.cs + startLine: 1445 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -3178,13 +3075,9 @@ items: fullName: OpenTK.Mathematics.Matrix4.Add(in OpenTK.Mathematics.Matrix4, in OpenTK.Mathematics.Matrix4, out OpenTK.Mathematics.Matrix4) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Add - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4.cs - startLine: 1370 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4.cs + startLine: 1458 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -3219,13 +3112,9 @@ items: fullName: OpenTK.Mathematics.Matrix4.Subtract(OpenTK.Mathematics.Matrix4, OpenTK.Mathematics.Matrix4) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Subtract - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4.cs - startLine: 1384 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4.cs + startLine: 1472 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -3267,13 +3156,9 @@ items: fullName: OpenTK.Mathematics.Matrix4.Subtract(in OpenTK.Mathematics.Matrix4, in OpenTK.Mathematics.Matrix4, out OpenTK.Mathematics.Matrix4) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Subtract - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4.cs - startLine: 1397 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4.cs + startLine: 1485 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -3308,13 +3193,9 @@ items: fullName: OpenTK.Mathematics.Matrix4.Mult(OpenTK.Mathematics.Matrix4, OpenTK.Mathematics.Matrix4) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Mult - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4.cs - startLine: 1411 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4.cs + startLine: 1499 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -3356,13 +3237,9 @@ items: fullName: OpenTK.Mathematics.Matrix4.Mult(in OpenTK.Mathematics.Matrix4, in OpenTK.Mathematics.Matrix4, out OpenTK.Mathematics.Matrix4) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Mult - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4.cs - startLine: 1424 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4.cs + startLine: 1512 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -3397,13 +3274,9 @@ items: fullName: OpenTK.Mathematics.Matrix4.Mult(OpenTK.Mathematics.Matrix4, float) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Mult - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4.cs - startLine: 1483 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4.cs + startLine: 1571 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -3448,13 +3321,9 @@ items: fullName: OpenTK.Mathematics.Matrix4.Mult(in OpenTK.Mathematics.Matrix4, float, out OpenTK.Mathematics.Matrix4) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Mult - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4.cs - startLine: 1496 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4.cs + startLine: 1584 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -3489,13 +3358,9 @@ items: fullName: OpenTK.Mathematics.Matrix4.Invert(in OpenTK.Mathematics.Matrix4, out OpenTK.Mathematics.Matrix4) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Invert - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4.cs - startLine: 1510 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4.cs + startLine: 1598 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -3531,13 +3396,9 @@ items: fullName: OpenTK.Mathematics.Matrix4.Invert(OpenTK.Mathematics.Matrix4) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Invert - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4.cs - startLine: 1814 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4.cs + startLine: 1896 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -3580,13 +3441,9 @@ items: fullName: OpenTK.Mathematics.Matrix4.Transpose(OpenTK.Mathematics.Matrix4) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Transpose - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4.cs - startLine: 1826 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4.cs + startLine: 1908 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -3625,13 +3482,9 @@ items: fullName: OpenTK.Mathematics.Matrix4.Transpose(in OpenTK.Mathematics.Matrix4, out OpenTK.Mathematics.Matrix4) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Transpose - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4.cs - startLine: 1837 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4.cs + startLine: 1919 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -3651,6 +3504,106 @@ items: nameWithType.vb: Matrix4.Transpose(Matrix4, Matrix4) fullName.vb: OpenTK.Mathematics.Matrix4.Transpose(OpenTK.Mathematics.Matrix4, OpenTK.Mathematics.Matrix4) name.vb: Transpose(Matrix4, Matrix4) +- uid: OpenTK.Mathematics.Matrix4.Swizzle(OpenTK.Mathematics.Matrix4,System.Int32,System.Int32,System.Int32,System.Int32) + commentId: M:OpenTK.Mathematics.Matrix4.Swizzle(OpenTK.Mathematics.Matrix4,System.Int32,System.Int32,System.Int32,System.Int32) + id: Swizzle(OpenTK.Mathematics.Matrix4,System.Int32,System.Int32,System.Int32,System.Int32) + parent: OpenTK.Mathematics.Matrix4 + langs: + - csharp + - vb + name: Swizzle(Matrix4, int, int, int, int) + nameWithType: Matrix4.Swizzle(Matrix4, int, int, int, int) + fullName: OpenTK.Mathematics.Matrix4.Swizzle(OpenTK.Mathematics.Matrix4, int, int, int, int) + type: Method + source: + id: Swizzle + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4.cs + startLine: 1937 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: Swizzles a matrix, i.e. switches rows of the matrix. + example: [] + syntax: + content: public static Matrix4 Swizzle(Matrix4 mat, int rowForRow0, int rowForRow1, int rowForRow2, int rowForRow3) + parameters: + - id: mat + type: OpenTK.Mathematics.Matrix4 + description: The matrix to swizzle. + - id: rowForRow0 + type: System.Int32 + description: Which row to place in . + - id: rowForRow1 + type: System.Int32 + description: Which row to place in . + - id: rowForRow2 + type: System.Int32 + description: Which row to place in . + - id: rowForRow3 + type: System.Int32 + description: Which row to place in . + return: + type: OpenTK.Mathematics.Matrix4 + description: The swizzled matrix. + content.vb: Public Shared Function Swizzle(mat As Matrix4, rowForRow0 As Integer, rowForRow1 As Integer, rowForRow2 As Integer, rowForRow3 As Integer) As Matrix4 + overload: OpenTK.Mathematics.Matrix4.Swizzle* + exceptions: + - type: System.IndexOutOfRangeException + commentId: T:System.IndexOutOfRangeException + description: If any of the rows are outside of the range [0, 3]. + nameWithType.vb: Matrix4.Swizzle(Matrix4, Integer, Integer, Integer, Integer) + fullName.vb: OpenTK.Mathematics.Matrix4.Swizzle(OpenTK.Mathematics.Matrix4, Integer, Integer, Integer, Integer) + name.vb: Swizzle(Matrix4, Integer, Integer, Integer, Integer) +- uid: OpenTK.Mathematics.Matrix4.Swizzle(OpenTK.Mathematics.Matrix4@,System.Int32,System.Int32,System.Int32,System.Int32,OpenTK.Mathematics.Matrix4@) + commentId: M:OpenTK.Mathematics.Matrix4.Swizzle(OpenTK.Mathematics.Matrix4@,System.Int32,System.Int32,System.Int32,System.Int32,OpenTK.Mathematics.Matrix4@) + id: Swizzle(OpenTK.Mathematics.Matrix4@,System.Int32,System.Int32,System.Int32,System.Int32,OpenTK.Mathematics.Matrix4@) + parent: OpenTK.Mathematics.Matrix4 + langs: + - csharp + - vb + name: Swizzle(in Matrix4, int, int, int, int, out Matrix4) + nameWithType: Matrix4.Swizzle(in Matrix4, int, int, int, int, out Matrix4) + fullName: OpenTK.Mathematics.Matrix4.Swizzle(in OpenTK.Mathematics.Matrix4, int, int, int, int, out OpenTK.Mathematics.Matrix4) + type: Method + source: + id: Swizzle + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4.cs + startLine: 1953 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: Swizzles a matrix, i.e. switches rows of the matrix. + example: [] + syntax: + content: public static void Swizzle(in Matrix4 mat, int rowForRow0, int rowForRow1, int rowForRow2, int rowForRow3, out Matrix4 result) + parameters: + - id: mat + type: OpenTK.Mathematics.Matrix4 + description: The matrix to swizzle. + - id: rowForRow0 + type: System.Int32 + description: Which row to place in . + - id: rowForRow1 + type: System.Int32 + description: Which row to place in . + - id: rowForRow2 + type: System.Int32 + description: Which row to place in . + - id: rowForRow3 + type: System.Int32 + description: Which row to place in . + - id: result + type: OpenTK.Mathematics.Matrix4 + description: The swizzled matrix. + content.vb: Public Shared Sub Swizzle(mat As Matrix4, rowForRow0 As Integer, rowForRow1 As Integer, rowForRow2 As Integer, rowForRow3 As Integer, result As Matrix4) + overload: OpenTK.Mathematics.Matrix4.Swizzle* + exceptions: + - type: System.IndexOutOfRangeException + commentId: T:System.IndexOutOfRangeException + description: If any of the rows are outside of the range [0, 3]. + nameWithType.vb: Matrix4.Swizzle(Matrix4, Integer, Integer, Integer, Integer, Matrix4) + fullName.vb: OpenTK.Mathematics.Matrix4.Swizzle(OpenTK.Mathematics.Matrix4, Integer, Integer, Integer, Integer, OpenTK.Mathematics.Matrix4) + name.vb: Swizzle(Matrix4, Integer, Integer, Integer, Integer, Matrix4) - uid: OpenTK.Mathematics.Matrix4.op_Multiply(OpenTK.Mathematics.Matrix4,OpenTK.Mathematics.Matrix4) commentId: M:OpenTK.Mathematics.Matrix4.op_Multiply(OpenTK.Mathematics.Matrix4,OpenTK.Mathematics.Matrix4) id: op_Multiply(OpenTK.Mathematics.Matrix4,OpenTK.Mathematics.Matrix4) @@ -3663,13 +3616,9 @@ items: fullName: OpenTK.Mathematics.Matrix4.operator *(OpenTK.Mathematics.Matrix4, OpenTK.Mathematics.Matrix4) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Multiply - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4.cs - startLine: 1851 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4.cs + startLine: 1998 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -3714,13 +3663,9 @@ items: fullName: OpenTK.Mathematics.Matrix4.operator *(OpenTK.Mathematics.Matrix4, float) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Multiply - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4.cs - startLine: 1863 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4.cs + startLine: 2010 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -3765,13 +3710,9 @@ items: fullName: OpenTK.Mathematics.Matrix4.operator +(OpenTK.Mathematics.Matrix4, OpenTK.Mathematics.Matrix4) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Addition - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4.cs - startLine: 1875 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4.cs + startLine: 2022 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -3816,13 +3757,9 @@ items: fullName: OpenTK.Mathematics.Matrix4.operator -(OpenTK.Mathematics.Matrix4, OpenTK.Mathematics.Matrix4) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Subtraction - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4.cs - startLine: 1887 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4.cs + startLine: 2034 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -3867,13 +3804,9 @@ items: fullName: OpenTK.Mathematics.Matrix4.operator ==(OpenTK.Mathematics.Matrix4, OpenTK.Mathematics.Matrix4) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Equality - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4.cs - startLine: 1899 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4.cs + startLine: 2046 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -3918,13 +3851,9 @@ items: fullName: OpenTK.Mathematics.Matrix4.operator !=(OpenTK.Mathematics.Matrix4, OpenTK.Mathematics.Matrix4) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Inequality - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4.cs - startLine: 1911 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4.cs + startLine: 2058 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -3969,20 +3898,16 @@ items: fullName: OpenTK.Mathematics.Matrix4.ToString() type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4.cs - startLine: 1921 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4.cs + startLine: 2068 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Returns a System.String that represents the current Matrix4. example: [] syntax: - content: public override string ToString() + content: public override readonly string ToString() return: type: System.String description: The string representation of the matrix. @@ -4001,20 +3926,16 @@ items: fullName: OpenTK.Mathematics.Matrix4.ToString(string) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4.cs - startLine: 1927 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4.cs + startLine: 2074 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Formats the value of the current instance using the specified format. example: [] syntax: - content: public string ToString(string format) + content: public readonly string ToString(string format) parameters: - id: format type: System.String @@ -4044,20 +3965,16 @@ items: fullName: OpenTK.Mathematics.Matrix4.ToString(System.IFormatProvider) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4.cs - startLine: 1933 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4.cs + startLine: 2080 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Formats the value of the current instance using the specified format. example: [] syntax: - content: public string ToString(IFormatProvider formatProvider) + content: public readonly string ToString(IFormatProvider formatProvider) parameters: - id: formatProvider type: System.IFormatProvider @@ -4084,20 +4001,16 @@ items: fullName: OpenTK.Mathematics.Matrix4.ToString(string, System.IFormatProvider) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4.cs - startLine: 1939 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4.cs + startLine: 2086 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Formats the value of the current instance using the specified format. example: [] syntax: - content: public string ToString(string format, IFormatProvider formatProvider) + content: public readonly string ToString(string format, IFormatProvider formatProvider) parameters: - id: format type: System.String @@ -4137,20 +4050,16 @@ items: fullName: OpenTK.Mathematics.Matrix4.GetHashCode() type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetHashCode - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4.cs - startLine: 1952 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4.cs + startLine: 2099 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Returns the hashcode for this instance. example: [] syntax: - content: public override int GetHashCode() + content: public override readonly int GetHashCode() return: type: System.Int32 description: A System.Int32 containing the unique hashcode for this instance. @@ -4169,13 +4078,9 @@ items: fullName: OpenTK.Mathematics.Matrix4.Equals(object) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Equals - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4.cs - startLine: 1962 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4.cs + startLine: 2109 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -4185,7 +4090,7 @@ items: content: >- [Pure] - public override bool Equals(object obj) + public override readonly bool Equals(object obj) parameters: - id: obj type: System.Object @@ -4218,13 +4123,9 @@ items: fullName: OpenTK.Mathematics.Matrix4.Equals(OpenTK.Mathematics.Matrix4) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Equals - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4.cs - startLine: 1973 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4.cs + startLine: 2120 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -4234,7 +4135,7 @@ items: content: >- [Pure] - public bool Equals(Matrix4 other) + public readonly bool Equals(Matrix4 other) parameters: - id: other type: OpenTK.Mathematics.Matrix4 @@ -4689,18 +4590,24 @@ references: name: Invert nameWithType: Matrix4.Invert fullName: OpenTK.Mathematics.Matrix4.Invert +- uid: OpenTK.Mathematics.Matrix4.Inverted* + commentId: Overload:OpenTK.Mathematics.Matrix4.Inverted + href: OpenTK.Mathematics.Matrix4.html#OpenTK_Mathematics_Matrix4_Inverted + name: Inverted + nameWithType: Matrix4.Inverted + fullName: OpenTK.Mathematics.Matrix4.Inverted - uid: OpenTK.Mathematics.Matrix4.Transpose* commentId: Overload:OpenTK.Mathematics.Matrix4.Transpose href: OpenTK.Mathematics.Matrix4.html#OpenTK_Mathematics_Matrix4_Transpose name: Transpose nameWithType: Matrix4.Transpose fullName: OpenTK.Mathematics.Matrix4.Transpose -- uid: OpenTK.Mathematics.Matrix4.Normalized* - commentId: Overload:OpenTK.Mathematics.Matrix4.Normalized - href: OpenTK.Mathematics.Matrix4.html#OpenTK_Mathematics_Matrix4_Normalized - name: Normalized - nameWithType: Matrix4.Normalized - fullName: OpenTK.Mathematics.Matrix4.Normalized +- uid: OpenTK.Mathematics.Matrix4.Transposed* + commentId: Overload:OpenTK.Mathematics.Matrix4.Transposed + href: OpenTK.Mathematics.Matrix4.html#OpenTK_Mathematics_Matrix4_Transposed + name: Transposed + nameWithType: Matrix4.Transposed + fullName: OpenTK.Mathematics.Matrix4.Transposed - uid: OpenTK.Mathematics.Matrix4.Determinant commentId: P:OpenTK.Mathematics.Matrix4.Determinant href: OpenTK.Mathematics.Matrix4.html#OpenTK_Mathematics_Matrix4_Determinant @@ -4713,12 +4620,48 @@ references: name: Normalize nameWithType: Matrix4.Normalize fullName: OpenTK.Mathematics.Matrix4.Normalize -- uid: OpenTK.Mathematics.Matrix4.Inverted* - commentId: Overload:OpenTK.Mathematics.Matrix4.Inverted - href: OpenTK.Mathematics.Matrix4.html#OpenTK_Mathematics_Matrix4_Inverted - name: Inverted - nameWithType: Matrix4.Inverted - fullName: OpenTK.Mathematics.Matrix4.Inverted +- uid: OpenTK.Mathematics.Matrix4.Normalized* + commentId: Overload:OpenTK.Mathematics.Matrix4.Normalized + href: OpenTK.Mathematics.Matrix4.html#OpenTK_Mathematics_Matrix4_Normalized + name: Normalized + nameWithType: Matrix4.Normalized + fullName: OpenTK.Mathematics.Matrix4.Normalized +- uid: OpenTK.Mathematics.Matrix4.Row0 + commentId: F:OpenTK.Mathematics.Matrix4.Row0 + href: OpenTK.Mathematics.Matrix4.html#OpenTK_Mathematics_Matrix4_Row0 + name: Row0 + nameWithType: Matrix4.Row0 + fullName: OpenTK.Mathematics.Matrix4.Row0 +- uid: OpenTK.Mathematics.Matrix4.Row1 + commentId: F:OpenTK.Mathematics.Matrix4.Row1 + href: OpenTK.Mathematics.Matrix4.html#OpenTK_Mathematics_Matrix4_Row1 + name: Row1 + nameWithType: Matrix4.Row1 + fullName: OpenTK.Mathematics.Matrix4.Row1 +- uid: OpenTK.Mathematics.Matrix4.Row2 + commentId: F:OpenTK.Mathematics.Matrix4.Row2 + href: OpenTK.Mathematics.Matrix4.html#OpenTK_Mathematics_Matrix4_Row2 + name: Row2 + nameWithType: Matrix4.Row2 + fullName: OpenTK.Mathematics.Matrix4.Row2 +- uid: OpenTK.Mathematics.Matrix4.Row3 + commentId: F:OpenTK.Mathematics.Matrix4.Row3 + href: OpenTK.Mathematics.Matrix4.html#OpenTK_Mathematics_Matrix4_Row3 + name: Row3 + nameWithType: Matrix4.Row3 + fullName: OpenTK.Mathematics.Matrix4.Row3 +- uid: OpenTK.Mathematics.Matrix4.Swizzle* + commentId: Overload:OpenTK.Mathematics.Matrix4.Swizzle + href: OpenTK.Mathematics.Matrix4.html#OpenTK_Mathematics_Matrix4_Swizzle_System_Int32_System_Int32_System_Int32_System_Int32_ + name: Swizzle + nameWithType: Matrix4.Swizzle + fullName: OpenTK.Mathematics.Matrix4.Swizzle +- uid: OpenTK.Mathematics.Matrix4.Swizzled* + commentId: Overload:OpenTK.Mathematics.Matrix4.Swizzled + href: OpenTK.Mathematics.Matrix4.html#OpenTK_Mathematics_Matrix4_Swizzled_System_Int32_System_Int32_System_Int32_System_Int32_ + name: Swizzled + nameWithType: Matrix4.Swizzled + fullName: OpenTK.Mathematics.Matrix4.Swizzled - uid: OpenTK.Mathematics.Matrix4.ClearTranslation* commentId: Overload:OpenTK.Mathematics.Matrix4.ClearTranslation href: OpenTK.Mathematics.Matrix4.html#OpenTK_Mathematics_Matrix4_ClearTranslation @@ -4834,6 +4777,18 @@ references: name: CreateScale nameWithType: Matrix4.CreateScale fullName: OpenTK.Mathematics.Matrix4.CreateScale +- uid: OpenTK.Mathematics.Vector3.Zyx + commentId: P:OpenTK.Mathematics.Vector3.Zyx + href: OpenTK.Mathematics.Vector3.html#OpenTK_Mathematics_Vector3_Zyx + name: Zyx + nameWithType: Vector3.Zyx + fullName: OpenTK.Mathematics.Vector3.Zyx +- uid: OpenTK.Mathematics.Matrix4.CreateSwizzle* + commentId: Overload:OpenTK.Mathematics.Matrix4.CreateSwizzle + href: OpenTK.Mathematics.Matrix4.html#OpenTK_Mathematics_Matrix4_CreateSwizzle_System_Int32_System_Int32_System_Int32_System_Int32_ + name: CreateSwizzle + nameWithType: Matrix4.CreateSwizzle + fullName: OpenTK.Mathematics.Matrix4.CreateSwizzle - uid: OpenTK.Mathematics.Matrix4.CreateOrthographic* commentId: Overload:OpenTK.Mathematics.Matrix4.CreateOrthographic href: OpenTK.Mathematics.Matrix4.html#OpenTK_Mathematics_Matrix4_CreateOrthographic_System_Single_System_Single_System_Single_System_Single_OpenTK_Mathematics_Matrix4__ @@ -4896,6 +4851,13 @@ references: name: InvalidOperationException nameWithType: InvalidOperationException fullName: System.InvalidOperationException +- uid: System.IndexOutOfRangeException + commentId: T:System.IndexOutOfRangeException + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.indexoutofrangeexception + name: IndexOutOfRangeException + nameWithType: IndexOutOfRangeException + fullName: System.IndexOutOfRangeException - uid: OpenTK.Mathematics.Matrix4.op_Multiply* commentId: Overload:OpenTK.Mathematics.Matrix4.op_Multiply href: OpenTK.Mathematics.Matrix4.html#OpenTK_Mathematics_Matrix4_op_Multiply_OpenTK_Mathematics_Matrix4_OpenTK_Mathematics_Matrix4_ diff --git a/api/OpenTK.Mathematics.Matrix4d.yml b/api/OpenTK.Mathematics.Matrix4d.yml index 0b62abfe..353ca05d 100644 --- a/api/OpenTK.Mathematics.Matrix4d.yml +++ b/api/OpenTK.Mathematics.Matrix4d.yml @@ -36,6 +36,14 @@ items: - OpenTK.Mathematics.Matrix4d.CreateRotationY(System.Double,OpenTK.Mathematics.Matrix4d@) - OpenTK.Mathematics.Matrix4d.CreateRotationZ(System.Double) - OpenTK.Mathematics.Matrix4d.CreateRotationZ(System.Double,OpenTK.Mathematics.Matrix4d@) + - OpenTK.Mathematics.Matrix4d.CreateScale(OpenTK.Mathematics.Vector3d) + - OpenTK.Mathematics.Matrix4d.CreateScale(OpenTK.Mathematics.Vector3d@,OpenTK.Mathematics.Matrix4d@) + - OpenTK.Mathematics.Matrix4d.CreateScale(System.Double) + - OpenTK.Mathematics.Matrix4d.CreateScale(System.Double,OpenTK.Mathematics.Matrix4d@) + - OpenTK.Mathematics.Matrix4d.CreateScale(System.Double,System.Double,System.Double) + - OpenTK.Mathematics.Matrix4d.CreateScale(System.Double,System.Double,System.Double,OpenTK.Mathematics.Matrix4d@) + - OpenTK.Mathematics.Matrix4d.CreateSwizzle(System.Int32,System.Int32,System.Int32,System.Int32) + - OpenTK.Mathematics.Matrix4d.CreateSwizzle(System.Int32,System.Int32,System.Int32,System.Int32,OpenTK.Mathematics.Matrix4d@) - OpenTK.Mathematics.Matrix4d.CreateTranslation(OpenTK.Mathematics.Vector3d) - OpenTK.Mathematics.Matrix4d.CreateTranslation(OpenTK.Mathematics.Vector3d@,OpenTK.Mathematics.Matrix4d@) - OpenTK.Mathematics.Matrix4d.CreateTranslation(System.Double,System.Double,System.Double) @@ -95,6 +103,10 @@ items: - OpenTK.Mathematics.Matrix4d.Scale(System.Double,System.Double,System.Double) - OpenTK.Mathematics.Matrix4d.Subtract(OpenTK.Mathematics.Matrix4d,OpenTK.Mathematics.Matrix4d) - OpenTK.Mathematics.Matrix4d.Subtract(OpenTK.Mathematics.Matrix4d@,OpenTK.Mathematics.Matrix4d@,OpenTK.Mathematics.Matrix4d@) + - OpenTK.Mathematics.Matrix4d.Swizzle(OpenTK.Mathematics.Matrix4d,System.Int32,System.Int32,System.Int32,System.Int32) + - OpenTK.Mathematics.Matrix4d.Swizzle(OpenTK.Mathematics.Matrix4d@,System.Int32,System.Int32,System.Int32,System.Int32,OpenTK.Mathematics.Matrix4d@) + - OpenTK.Mathematics.Matrix4d.Swizzle(System.Int32,System.Int32,System.Int32,System.Int32) + - OpenTK.Mathematics.Matrix4d.Swizzled(System.Int32,System.Int32,System.Int32,System.Int32) - OpenTK.Mathematics.Matrix4d.ToString - OpenTK.Mathematics.Matrix4d.ToString(System.IFormatProvider) - OpenTK.Mathematics.Matrix4d.ToString(System.String) @@ -103,6 +115,8 @@ items: - OpenTK.Mathematics.Matrix4d.Transpose - OpenTK.Mathematics.Matrix4d.Transpose(OpenTK.Mathematics.Matrix4d) - OpenTK.Mathematics.Matrix4d.Transpose(OpenTK.Mathematics.Matrix4d@,OpenTK.Mathematics.Matrix4d@) + - OpenTK.Mathematics.Matrix4d.Transposed + - OpenTK.Mathematics.Matrix4d.Zero - OpenTK.Mathematics.Matrix4d.op_Addition(OpenTK.Mathematics.Matrix4d,OpenTK.Mathematics.Matrix4d) - OpenTK.Mathematics.Matrix4d.op_Equality(OpenTK.Mathematics.Matrix4d,OpenTK.Mathematics.Matrix4d) - OpenTK.Mathematics.Matrix4d.op_Inequality(OpenTK.Mathematics.Matrix4d,OpenTK.Mathematics.Matrix4d) @@ -117,13 +131,9 @@ items: fullName: OpenTK.Mathematics.Matrix4d type: Struct source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Matrix4d - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4d.cs - startLine: 33 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4d.cs + startLine: 34 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -164,13 +174,9 @@ items: fullName: OpenTK.Mathematics.Matrix4d.Row0 type: Field source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Row0 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4d.cs - startLine: 40 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4d.cs + startLine: 41 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -193,13 +199,9 @@ items: fullName: OpenTK.Mathematics.Matrix4d.Row1 type: Field source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Row1 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4d.cs - startLine: 45 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4d.cs + startLine: 46 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -222,13 +224,9 @@ items: fullName: OpenTK.Mathematics.Matrix4d.Row2 type: Field source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Row2 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4d.cs - startLine: 50 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4d.cs + startLine: 51 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -251,13 +249,9 @@ items: fullName: OpenTK.Mathematics.Matrix4d.Row3 type: Field source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Row3 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4d.cs - startLine: 55 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4d.cs + startLine: 56 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -280,23 +274,44 @@ items: fullName: OpenTK.Mathematics.Matrix4d.Identity type: Field source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Identity - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4d.cs - startLine: 60 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4d.cs + startLine: 61 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: The identity matrix. example: [] syntax: - content: public static Matrix4d Identity + content: public static readonly Matrix4d Identity return: type: OpenTK.Mathematics.Matrix4d - content.vb: Public Shared Identity As Matrix4d + content.vb: Public Shared ReadOnly Identity As Matrix4d +- uid: OpenTK.Mathematics.Matrix4d.Zero + commentId: F:OpenTK.Mathematics.Matrix4d.Zero + id: Zero + parent: OpenTK.Mathematics.Matrix4d + langs: + - csharp + - vb + name: Zero + nameWithType: Matrix4d.Zero + fullName: OpenTK.Mathematics.Matrix4d.Zero + type: Field + source: + id: Zero + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4d.cs + startLine: 66 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: The zero matrix. + example: [] + syntax: + content: public static readonly Matrix4d Zero + return: + type: OpenTK.Mathematics.Matrix4d + content.vb: Public Shared ReadOnly Zero As Matrix4d - uid: OpenTK.Mathematics.Matrix4d.#ctor(OpenTK.Mathematics.Vector4d,OpenTK.Mathematics.Vector4d,OpenTK.Mathematics.Vector4d,OpenTK.Mathematics.Vector4d) commentId: M:OpenTK.Mathematics.Matrix4d.#ctor(OpenTK.Mathematics.Vector4d,OpenTK.Mathematics.Vector4d,OpenTK.Mathematics.Vector4d,OpenTK.Mathematics.Vector4d) id: '#ctor(OpenTK.Mathematics.Vector4d,OpenTK.Mathematics.Vector4d,OpenTK.Mathematics.Vector4d,OpenTK.Mathematics.Vector4d)' @@ -309,13 +324,9 @@ items: fullName: OpenTK.Mathematics.Matrix4d.Matrix4d(OpenTK.Mathematics.Vector4d, OpenTK.Mathematics.Vector4d, OpenTK.Mathematics.Vector4d, OpenTK.Mathematics.Vector4d) type: Constructor source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4d.cs - startLine: 69 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4d.cs + startLine: 75 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -353,13 +364,9 @@ items: fullName: OpenTK.Mathematics.Matrix4d.Matrix4d(double, double, double, double, double, double, double, double, double, double, double, double, double, double, double, double) type: Constructor source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4d.cs - startLine: 96 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4d.cs + startLine: 102 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -433,13 +440,9 @@ items: fullName: OpenTK.Mathematics.Matrix4d.Matrix4d(OpenTK.Mathematics.Matrix3d) type: Constructor source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4d.cs - startLine: 115 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4d.cs + startLine: 121 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -468,20 +471,16 @@ items: fullName: OpenTK.Mathematics.Matrix4d.Determinant type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Determinant - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4d.cs - startLine: 138 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4d.cs + startLine: 144 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets the determinant of this matrix. example: [] syntax: - content: public double Determinant { get; } + content: public readonly double Determinant { get; } parameters: [] return: type: System.Double @@ -499,20 +498,16 @@ items: fullName: OpenTK.Mathematics.Matrix4d.Column0 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Column0 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4d.cs - startLine: 155 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4d.cs + startLine: 161 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the first column of this matrix. example: [] syntax: - content: public Vector4d Column0 { get; set; } + content: public Vector4d Column0 { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector4d @@ -530,20 +525,16 @@ items: fullName: OpenTK.Mathematics.Matrix4d.Column1 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Column1 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4d.cs - startLine: 170 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4d.cs + startLine: 176 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the second column of this matrix. example: [] syntax: - content: public Vector4d Column1 { get; set; } + content: public Vector4d Column1 { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector4d @@ -561,20 +552,16 @@ items: fullName: OpenTK.Mathematics.Matrix4d.Column2 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Column2 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4d.cs - startLine: 185 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4d.cs + startLine: 191 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the third column of this matrix. example: [] syntax: - content: public Vector4d Column2 { get; set; } + content: public Vector4d Column2 { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector4d @@ -592,20 +579,16 @@ items: fullName: OpenTK.Mathematics.Matrix4d.Column3 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Column3 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4d.cs - startLine: 200 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4d.cs + startLine: 206 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the fourth column of this matrix. example: [] syntax: - content: public Vector4d Column3 { get; set; } + content: public Vector4d Column3 { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector4d @@ -623,20 +606,16 @@ items: fullName: OpenTK.Mathematics.Matrix4d.M11 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M11 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4d.cs - startLine: 215 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4d.cs + startLine: 221 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 1, column 1 of this instance. example: [] syntax: - content: public double M11 { get; set; } + content: public double M11 { readonly get; set; } parameters: [] return: type: System.Double @@ -654,20 +633,16 @@ items: fullName: OpenTK.Mathematics.Matrix4d.M12 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M12 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4d.cs - startLine: 224 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4d.cs + startLine: 230 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 1, column 2 of this instance. example: [] syntax: - content: public double M12 { get; set; } + content: public double M12 { readonly get; set; } parameters: [] return: type: System.Double @@ -685,20 +660,16 @@ items: fullName: OpenTK.Mathematics.Matrix4d.M13 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M13 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4d.cs - startLine: 233 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4d.cs + startLine: 239 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 1, column 3 of this instance. example: [] syntax: - content: public double M13 { get; set; } + content: public double M13 { readonly get; set; } parameters: [] return: type: System.Double @@ -716,20 +687,16 @@ items: fullName: OpenTK.Mathematics.Matrix4d.M14 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M14 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4d.cs - startLine: 242 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4d.cs + startLine: 248 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 1, column 4 of this instance. example: [] syntax: - content: public double M14 { get; set; } + content: public double M14 { readonly get; set; } parameters: [] return: type: System.Double @@ -747,20 +714,16 @@ items: fullName: OpenTK.Mathematics.Matrix4d.M21 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M21 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4d.cs - startLine: 251 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4d.cs + startLine: 257 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 2, column 1 of this instance. example: [] syntax: - content: public double M21 { get; set; } + content: public double M21 { readonly get; set; } parameters: [] return: type: System.Double @@ -778,20 +741,16 @@ items: fullName: OpenTK.Mathematics.Matrix4d.M22 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M22 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4d.cs - startLine: 260 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4d.cs + startLine: 266 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 2, column 2 of this instance. example: [] syntax: - content: public double M22 { get; set; } + content: public double M22 { readonly get; set; } parameters: [] return: type: System.Double @@ -809,20 +768,16 @@ items: fullName: OpenTK.Mathematics.Matrix4d.M23 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M23 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4d.cs - startLine: 269 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4d.cs + startLine: 275 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 2, column 3 of this instance. example: [] syntax: - content: public double M23 { get; set; } + content: public double M23 { readonly get; set; } parameters: [] return: type: System.Double @@ -840,20 +795,16 @@ items: fullName: OpenTK.Mathematics.Matrix4d.M24 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M24 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4d.cs - startLine: 278 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4d.cs + startLine: 284 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 2, column 4 of this instance. example: [] syntax: - content: public double M24 { get; set; } + content: public double M24 { readonly get; set; } parameters: [] return: type: System.Double @@ -871,20 +822,16 @@ items: fullName: OpenTK.Mathematics.Matrix4d.M31 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M31 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4d.cs - startLine: 287 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4d.cs + startLine: 293 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 3, column 1 of this instance. example: [] syntax: - content: public double M31 { get; set; } + content: public double M31 { readonly get; set; } parameters: [] return: type: System.Double @@ -902,20 +849,16 @@ items: fullName: OpenTK.Mathematics.Matrix4d.M32 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M32 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4d.cs - startLine: 296 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4d.cs + startLine: 302 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 3, column 2 of this instance. example: [] syntax: - content: public double M32 { get; set; } + content: public double M32 { readonly get; set; } parameters: [] return: type: System.Double @@ -933,20 +876,16 @@ items: fullName: OpenTK.Mathematics.Matrix4d.M33 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M33 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4d.cs - startLine: 305 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4d.cs + startLine: 311 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 3, column 3 of this instance. example: [] syntax: - content: public double M33 { get; set; } + content: public double M33 { readonly get; set; } parameters: [] return: type: System.Double @@ -964,20 +903,16 @@ items: fullName: OpenTK.Mathematics.Matrix4d.M34 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M34 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4d.cs - startLine: 314 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4d.cs + startLine: 320 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 3, column 4 of this instance. example: [] syntax: - content: public double M34 { get; set; } + content: public double M34 { readonly get; set; } parameters: [] return: type: System.Double @@ -995,20 +930,16 @@ items: fullName: OpenTK.Mathematics.Matrix4d.M41 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M41 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4d.cs - startLine: 323 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4d.cs + startLine: 329 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 4, column 1 of this instance. example: [] syntax: - content: public double M41 { get; set; } + content: public double M41 { readonly get; set; } parameters: [] return: type: System.Double @@ -1026,20 +957,16 @@ items: fullName: OpenTK.Mathematics.Matrix4d.M42 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M42 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4d.cs - startLine: 332 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4d.cs + startLine: 338 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 4, column 2 of this instance. example: [] syntax: - content: public double M42 { get; set; } + content: public double M42 { readonly get; set; } parameters: [] return: type: System.Double @@ -1057,20 +984,16 @@ items: fullName: OpenTK.Mathematics.Matrix4d.M43 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M43 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4d.cs - startLine: 341 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4d.cs + startLine: 347 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 4, column 3 of this instance. example: [] syntax: - content: public double M43 { get; set; } + content: public double M43 { readonly get; set; } parameters: [] return: type: System.Double @@ -1088,20 +1011,16 @@ items: fullName: OpenTK.Mathematics.Matrix4d.M44 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M44 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4d.cs - startLine: 350 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4d.cs + startLine: 356 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 4, column 4 of this instance. example: [] syntax: - content: public double M44 { get; set; } + content: public double M44 { readonly get; set; } parameters: [] return: type: System.Double @@ -1119,20 +1038,16 @@ items: fullName: OpenTK.Mathematics.Matrix4d.Diagonal type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Diagonal - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4d.cs - startLine: 359 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4d.cs + startLine: 365 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the values along the main diagonal of the matrix. example: [] syntax: - content: public Vector4d Diagonal { get; set; } + content: public Vector4d Diagonal { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector4d @@ -1150,20 +1065,16 @@ items: fullName: OpenTK.Mathematics.Matrix4d.Trace type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Trace - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4d.cs - startLine: 374 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4d.cs + startLine: 380 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets the trace of the matrix, the sum of the values along the diagonal. example: [] syntax: - content: public double Trace { get; } + content: public readonly double Trace { get; } parameters: [] return: type: System.Double @@ -1181,20 +1092,16 @@ items: fullName: OpenTK.Mathematics.Matrix4d.this[int, int] type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: this[] - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4d.cs - startLine: 382 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4d.cs + startLine: 388 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at a specified row and column. example: [] syntax: - content: public double this[int rowIndex, int columnIndex] { get; set; } + content: public double this[int rowIndex, int columnIndex] { readonly get; set; } parameters: - id: rowIndex type: System.Int32 @@ -1222,13 +1129,9 @@ items: fullName: OpenTK.Mathematics.Matrix4d.Invert() type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Invert - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4d.cs - startLine: 439 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4d.cs + startLine: 445 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1238,6 +1141,37 @@ items: content: public void Invert() content.vb: Public Sub Invert() overload: OpenTK.Mathematics.Matrix4d.Invert* +- uid: OpenTK.Mathematics.Matrix4d.Inverted + commentId: M:OpenTK.Mathematics.Matrix4d.Inverted + id: Inverted + parent: OpenTK.Mathematics.Matrix4d + langs: + - csharp + - vb + name: Inverted() + nameWithType: Matrix4d.Inverted() + fullName: OpenTK.Mathematics.Matrix4d.Inverted() + type: Method + source: + id: Inverted + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4d.cs + startLine: 458 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: Returns an inverted copy of this instance. + remarks: >- + If the matrix is singular this function does not throw an exception, + + instead it returns the original un-inverted matrix. + example: [] + syntax: + content: public readonly Matrix4d Inverted() + return: + type: OpenTK.Mathematics.Matrix4d + description: The inverted copy. + content.vb: Public Function Inverted() As Matrix4d + overload: OpenTK.Mathematics.Matrix4d.Inverted* - uid: OpenTK.Mathematics.Matrix4d.Transpose commentId: M:OpenTK.Mathematics.Matrix4d.Transpose id: Transpose @@ -1250,13 +1184,9 @@ items: fullName: OpenTK.Mathematics.Matrix4d.Transpose() type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Transpose - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4d.cs - startLine: 447 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4d.cs + startLine: 472 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1266,37 +1196,33 @@ items: content: public void Transpose() content.vb: Public Sub Transpose() overload: OpenTK.Mathematics.Matrix4d.Transpose* -- uid: OpenTK.Mathematics.Matrix4d.Normalized - commentId: M:OpenTK.Mathematics.Matrix4d.Normalized - id: Normalized +- uid: OpenTK.Mathematics.Matrix4d.Transposed + commentId: M:OpenTK.Mathematics.Matrix4d.Transposed + id: Transposed parent: OpenTK.Mathematics.Matrix4d langs: - csharp - vb - name: Normalized() - nameWithType: Matrix4d.Normalized() - fullName: OpenTK.Mathematics.Matrix4d.Normalized() + name: Transposed() + nameWithType: Matrix4d.Transposed() + fullName: OpenTK.Mathematics.Matrix4d.Transposed() type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Normalized - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4d.cs - startLine: 456 + id: Transposed + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4d.cs + startLine: 481 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics - summary: Returns a normalized copy of this instance. + summary: Returns a transposed copy of this instance. example: [] syntax: - content: public Matrix4d Normalized() + content: public readonly Matrix4d Transposed() return: type: OpenTK.Mathematics.Matrix4d - description: The normalized copy. - content.vb: Public Function Normalized() As Matrix4d - overload: OpenTK.Mathematics.Matrix4d.Normalized* + description: The transposed copy. + content.vb: Public Function Transposed() As Matrix4d + overload: OpenTK.Mathematics.Matrix4d.Transposed* - uid: OpenTK.Mathematics.Matrix4d.Normalize commentId: M:OpenTK.Mathematics.Matrix4d.Normalize id: Normalize @@ -1309,13 +1235,9 @@ items: fullName: OpenTK.Mathematics.Matrix4d.Normalize() type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Normalize - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4d.cs - startLine: 466 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4d.cs + startLine: 491 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1325,37 +1247,116 @@ items: content: public void Normalize() content.vb: Public Sub Normalize() overload: OpenTK.Mathematics.Matrix4d.Normalize* -- uid: OpenTK.Mathematics.Matrix4d.Inverted - commentId: M:OpenTK.Mathematics.Matrix4d.Inverted - id: Inverted +- uid: OpenTK.Mathematics.Matrix4d.Normalized + commentId: M:OpenTK.Mathematics.Matrix4d.Normalized + id: Normalized parent: OpenTK.Mathematics.Matrix4d langs: - csharp - vb - name: Inverted() - nameWithType: Matrix4d.Inverted() - fullName: OpenTK.Mathematics.Matrix4d.Inverted() + name: Normalized() + nameWithType: Matrix4d.Normalized() + fullName: OpenTK.Mathematics.Matrix4d.Normalized() type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Inverted - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4d.cs - startLine: 479 + id: Normalized + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4d.cs + startLine: 504 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics - summary: Returns an inverted copy of this instance. + summary: Returns a normalized copy of this instance. example: [] syntax: - content: public Matrix4d Inverted() + content: public readonly Matrix4d Normalized() return: type: OpenTK.Mathematics.Matrix4d - description: The inverted copy. - content.vb: Public Function Inverted() As Matrix4d - overload: OpenTK.Mathematics.Matrix4d.Inverted* + description: The normalized copy. + content.vb: Public Function Normalized() As Matrix4d + overload: OpenTK.Mathematics.Matrix4d.Normalized* +- uid: OpenTK.Mathematics.Matrix4d.Swizzle(System.Int32,System.Int32,System.Int32,System.Int32) + commentId: M:OpenTK.Mathematics.Matrix4d.Swizzle(System.Int32,System.Int32,System.Int32,System.Int32) + id: Swizzle(System.Int32,System.Int32,System.Int32,System.Int32) + parent: OpenTK.Mathematics.Matrix4d + langs: + - csharp + - vb + name: Swizzle(int, int, int, int) + nameWithType: Matrix4d.Swizzle(int, int, int, int) + fullName: OpenTK.Mathematics.Matrix4d.Swizzle(int, int, int, int) + type: Method + source: + id: Swizzle + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4d.cs + startLine: 518 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: Swizzles this instance. Switches places of the rows of the matrix. + example: [] + syntax: + content: public void Swizzle(int rowForRow0, int rowForRow1, int rowForRow2, int rowForRow3) + parameters: + - id: rowForRow0 + type: System.Int32 + description: Which row to place in . + - id: rowForRow1 + type: System.Int32 + description: Which row to place in . + - id: rowForRow2 + type: System.Int32 + description: Which row to place in . + - id: rowForRow3 + type: System.Int32 + description: Which row to place in . + content.vb: Public Sub Swizzle(rowForRow0 As Integer, rowForRow1 As Integer, rowForRow2 As Integer, rowForRow3 As Integer) + overload: OpenTK.Mathematics.Matrix4d.Swizzle* + nameWithType.vb: Matrix4d.Swizzle(Integer, Integer, Integer, Integer) + fullName.vb: OpenTK.Mathematics.Matrix4d.Swizzle(Integer, Integer, Integer, Integer) + name.vb: Swizzle(Integer, Integer, Integer, Integer) +- uid: OpenTK.Mathematics.Matrix4d.Swizzled(System.Int32,System.Int32,System.Int32,System.Int32) + commentId: M:OpenTK.Mathematics.Matrix4d.Swizzled(System.Int32,System.Int32,System.Int32,System.Int32) + id: Swizzled(System.Int32,System.Int32,System.Int32,System.Int32) + parent: OpenTK.Mathematics.Matrix4d + langs: + - csharp + - vb + name: Swizzled(int, int, int, int) + nameWithType: Matrix4d.Swizzled(int, int, int, int) + fullName: OpenTK.Mathematics.Matrix4d.Swizzled(int, int, int, int) + type: Method + source: + id: Swizzled + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4d.cs + startLine: 531 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: Returns a swizzled copy of this instance. + example: [] + syntax: + content: public readonly Matrix4d Swizzled(int rowForRow0, int rowForRow1, int rowForRow2, int rowForRow3) + parameters: + - id: rowForRow0 + type: System.Int32 + description: Which row to place in . + - id: rowForRow1 + type: System.Int32 + description: Which row to place in . + - id: rowForRow2 + type: System.Int32 + description: Which row to place in . + - id: rowForRow3 + type: System.Int32 + description: Which row to place in . + return: + type: OpenTK.Mathematics.Matrix4d + description: The swizzled copy. + content.vb: Public Function Swizzled(rowForRow0 As Integer, rowForRow1 As Integer, rowForRow2 As Integer, rowForRow3 As Integer) As Matrix4d + overload: OpenTK.Mathematics.Matrix4d.Swizzled* + nameWithType.vb: Matrix4d.Swizzled(Integer, Integer, Integer, Integer) + fullName.vb: OpenTK.Mathematics.Matrix4d.Swizzled(Integer, Integer, Integer, Integer) + name.vb: Swizzled(Integer, Integer, Integer, Integer) - uid: OpenTK.Mathematics.Matrix4d.ClearTranslation commentId: M:OpenTK.Mathematics.Matrix4d.ClearTranslation id: ClearTranslation @@ -1368,20 +1369,16 @@ items: fullName: OpenTK.Mathematics.Matrix4d.ClearTranslation() type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ClearTranslation - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4d.cs - startLine: 494 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4d.cs + startLine: 542 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Returns a copy of this Matrix4d without translation. example: [] syntax: - content: public Matrix4d ClearTranslation() + content: public readonly Matrix4d ClearTranslation() return: type: OpenTK.Mathematics.Matrix4d description: The matrix without translation. @@ -1399,20 +1396,16 @@ items: fullName: OpenTK.Mathematics.Matrix4d.ClearScale() type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ClearScale - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4d.cs - startLine: 505 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4d.cs + startLine: 553 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Returns a copy of this Matrix4d without scale. example: [] syntax: - content: public Matrix4d ClearScale() + content: public readonly Matrix4d ClearScale() return: type: OpenTK.Mathematics.Matrix4d description: The matrix without scaling. @@ -1430,20 +1423,16 @@ items: fullName: OpenTK.Mathematics.Matrix4d.ClearRotation() type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ClearRotation - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4d.cs - startLine: 518 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4d.cs + startLine: 566 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Returns a copy of this Matrix4d without rotation. example: [] syntax: - content: public Matrix4d ClearRotation() + content: public readonly Matrix4d ClearRotation() return: type: OpenTK.Mathematics.Matrix4d description: The matrix without rotation. @@ -1461,20 +1450,16 @@ items: fullName: OpenTK.Mathematics.Matrix4d.ClearProjection() type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ClearProjection - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4d.cs - startLine: 531 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4d.cs + startLine: 579 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Returns a copy of this Matrix4d without projection. example: [] syntax: - content: public Matrix4d ClearProjection() + content: public readonly Matrix4d ClearProjection() return: type: OpenTK.Mathematics.Matrix4d description: The matrix without projection. @@ -1492,20 +1477,16 @@ items: fullName: OpenTK.Mathematics.Matrix4d.ExtractTranslation() type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ExtractTranslation - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4d.cs - startLine: 542 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4d.cs + startLine: 590 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Returns the translation component of this instance. example: [] syntax: - content: public Vector3d ExtractTranslation() + content: public readonly Vector3d ExtractTranslation() return: type: OpenTK.Mathematics.Vector3d description: The translation. @@ -1523,20 +1504,16 @@ items: fullName: OpenTK.Mathematics.Matrix4d.ExtractScale() type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ExtractScale - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4d.cs - startLine: 551 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4d.cs + startLine: 599 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Returns the scale component of this instance. example: [] syntax: - content: public Vector3d ExtractScale() + content: public readonly Vector3d ExtractScale() return: type: OpenTK.Mathematics.Vector3d description: The scale. @@ -1554,13 +1531,9 @@ items: fullName: OpenTK.Mathematics.Matrix4d.ExtractRotation(bool) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ExtractRotation - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4d.cs - startLine: 564 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4d.cs + startLine: 612 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1570,7 +1543,7 @@ items: content: >- [Pure] - public Quaterniond ExtractRotation(bool rowNormalize = true) + public readonly Quaterniond ExtractRotation(bool rowNormalize = true) parameters: - id: rowNormalize type: System.Boolean @@ -1605,20 +1578,16 @@ items: fullName: OpenTK.Mathematics.Matrix4d.ExtractProjection() type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ExtractProjection - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4d.cs - startLine: 631 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4d.cs + startLine: 679 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Returns the projection component of this instance. example: [] syntax: - content: public Vector4d ExtractProjection() + content: public readonly Vector4d ExtractProjection() return: type: OpenTK.Mathematics.Vector4d description: The projection. @@ -1636,13 +1605,9 @@ items: fullName: OpenTK.Mathematics.Matrix4d.CreateFromAxisAngle(OpenTK.Mathematics.Vector3d, double, out OpenTK.Mathematics.Matrix4d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateFromAxisAngle - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4d.cs - startLine: 642 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4d.cs + startLine: 690 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1677,13 +1642,9 @@ items: fullName: OpenTK.Mathematics.Matrix4d.CreateFromAxisAngle(OpenTK.Mathematics.Vector3d, double) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateFromAxisAngle - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4d.cs - startLine: 686 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4d.cs + startLine: 734 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1716,6 +1677,81 @@ items: nameWithType.vb: Matrix4d.CreateFromAxisAngle(Vector3d, Double) fullName.vb: OpenTK.Mathematics.Matrix4d.CreateFromAxisAngle(OpenTK.Mathematics.Vector3d, Double) name.vb: CreateFromAxisAngle(Vector3d, Double) +- uid: OpenTK.Mathematics.Matrix4d.CreateFromQuaternion(OpenTK.Mathematics.Quaterniond@,OpenTK.Mathematics.Matrix4d@) + commentId: M:OpenTK.Mathematics.Matrix4d.CreateFromQuaternion(OpenTK.Mathematics.Quaterniond@,OpenTK.Mathematics.Matrix4d@) + id: CreateFromQuaternion(OpenTK.Mathematics.Quaterniond@,OpenTK.Mathematics.Matrix4d@) + parent: OpenTK.Mathematics.Matrix4d + langs: + - csharp + - vb + name: CreateFromQuaternion(in Quaterniond, out Matrix4d) + nameWithType: Matrix4d.CreateFromQuaternion(in Quaterniond, out Matrix4d) + fullName: OpenTK.Mathematics.Matrix4d.CreateFromQuaternion(in OpenTK.Mathematics.Quaterniond, out OpenTK.Mathematics.Matrix4d) + type: Method + source: + id: CreateFromQuaternion + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4d.cs + startLine: 746 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: Build a rotation matrix from the specified quaternion. + example: [] + syntax: + content: public static void CreateFromQuaternion(in Quaterniond q, out Matrix4d result) + parameters: + - id: q + type: OpenTK.Mathematics.Quaterniond + description: Quaternion to translate. + - id: result + type: OpenTK.Mathematics.Matrix4d + description: Matrix result. + content.vb: Public Shared Sub CreateFromQuaternion(q As Quaterniond, result As Matrix4d) + overload: OpenTK.Mathematics.Matrix4d.CreateFromQuaternion* + nameWithType.vb: Matrix4d.CreateFromQuaternion(Quaterniond, Matrix4d) + fullName.vb: OpenTK.Mathematics.Matrix4d.CreateFromQuaternion(OpenTK.Mathematics.Quaterniond, OpenTK.Mathematics.Matrix4d) + name.vb: CreateFromQuaternion(Quaterniond, Matrix4d) +- uid: OpenTK.Mathematics.Matrix4d.CreateFromQuaternion(OpenTK.Mathematics.Quaterniond) + commentId: M:OpenTK.Mathematics.Matrix4d.CreateFromQuaternion(OpenTK.Mathematics.Quaterniond) + id: CreateFromQuaternion(OpenTK.Mathematics.Quaterniond) + parent: OpenTK.Mathematics.Matrix4d + langs: + - csharp + - vb + name: CreateFromQuaternion(Quaterniond) + nameWithType: Matrix4d.CreateFromQuaternion(Quaterniond) + fullName: OpenTK.Mathematics.Matrix4d.CreateFromQuaternion(OpenTK.Mathematics.Quaterniond) + type: Method + source: + id: CreateFromQuaternion + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4d.cs + startLine: 790 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: Builds a rotation matrix from a quaternion. + example: [] + syntax: + content: >- + [Pure] + + public static Matrix4d CreateFromQuaternion(Quaterniond q) + parameters: + - id: q + type: OpenTK.Mathematics.Quaterniond + description: The quaternion to rotate by. + return: + type: OpenTK.Mathematics.Matrix4d + description: A matrix instance. + content.vb: >- + + + Public Shared Function CreateFromQuaternion(q As Quaterniond) As Matrix4d + overload: OpenTK.Mathematics.Matrix4d.CreateFromQuaternion* + attributes: + - type: System.Diagnostics.Contracts.PureAttribute + ctor: System.Diagnostics.Contracts.PureAttribute.#ctor + arguments: [] - uid: OpenTK.Mathematics.Matrix4d.CreateRotationX(System.Double,OpenTK.Mathematics.Matrix4d@) commentId: M:OpenTK.Mathematics.Matrix4d.CreateRotationX(System.Double,OpenTK.Mathematics.Matrix4d@) id: CreateRotationX(System.Double,OpenTK.Mathematics.Matrix4d@) @@ -1728,13 +1764,9 @@ items: fullName: OpenTK.Mathematics.Matrix4d.CreateRotationX(double, out OpenTK.Mathematics.Matrix4d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateRotationX - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4d.cs - startLine: 698 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4d.cs + startLine: 802 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1766,13 +1798,9 @@ items: fullName: OpenTK.Mathematics.Matrix4d.CreateRotationX(double) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateRotationX - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4d.cs - startLine: 714 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4d.cs + startLine: 818 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1814,13 +1842,9 @@ items: fullName: OpenTK.Mathematics.Matrix4d.CreateRotationY(double, out OpenTK.Mathematics.Matrix4d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateRotationY - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4d.cs - startLine: 726 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4d.cs + startLine: 830 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1852,13 +1876,9 @@ items: fullName: OpenTK.Mathematics.Matrix4d.CreateRotationY(double) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateRotationY - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4d.cs - startLine: 742 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4d.cs + startLine: 846 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1900,13 +1920,9 @@ items: fullName: OpenTK.Mathematics.Matrix4d.CreateRotationZ(double, out OpenTK.Mathematics.Matrix4d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateRotationZ - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4d.cs - startLine: 754 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4d.cs + startLine: 858 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1938,13 +1954,9 @@ items: fullName: OpenTK.Mathematics.Matrix4d.CreateRotationZ(double) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateRotationZ - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4d.cs - startLine: 770 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4d.cs + startLine: 874 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1986,13 +1998,9 @@ items: fullName: OpenTK.Mathematics.Matrix4d.CreateTranslation(double, double, double, out OpenTK.Mathematics.Matrix4d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateTranslation - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4d.cs - startLine: 784 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4d.cs + startLine: 888 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2030,13 +2038,9 @@ items: fullName: OpenTK.Mathematics.Matrix4d.CreateTranslation(in OpenTK.Mathematics.Vector3d, out OpenTK.Mathematics.Matrix4d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateTranslation - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4d.cs - startLine: 795 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4d.cs + startLine: 899 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2068,93 +2072,416 @@ items: fullName: OpenTK.Mathematics.Matrix4d.CreateTranslation(double, double, double) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: CreateTranslation - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4d.cs - startLine: 808 + id: CreateTranslation + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4d.cs + startLine: 912 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: Creates a translation matrix. + example: [] + syntax: + content: >- + [Pure] + + public static Matrix4d CreateTranslation(double x, double y, double z) + parameters: + - id: x + type: System.Double + description: X translation. + - id: y + type: System.Double + description: Y translation. + - id: z + type: System.Double + description: Z translation. + return: + type: OpenTK.Mathematics.Matrix4d + description: The resulting Matrix4d instance. + content.vb: >- + + + Public Shared Function CreateTranslation(x As Double, y As Double, z As Double) As Matrix4d + overload: OpenTK.Mathematics.Matrix4d.CreateTranslation* + attributes: + - type: System.Diagnostics.Contracts.PureAttribute + ctor: System.Diagnostics.Contracts.PureAttribute.#ctor + arguments: [] + nameWithType.vb: Matrix4d.CreateTranslation(Double, Double, Double) + fullName.vb: OpenTK.Mathematics.Matrix4d.CreateTranslation(Double, Double, Double) + name.vb: CreateTranslation(Double, Double, Double) +- uid: OpenTK.Mathematics.Matrix4d.CreateTranslation(OpenTK.Mathematics.Vector3d) + commentId: M:OpenTK.Mathematics.Matrix4d.CreateTranslation(OpenTK.Mathematics.Vector3d) + id: CreateTranslation(OpenTK.Mathematics.Vector3d) + parent: OpenTK.Mathematics.Matrix4d + langs: + - csharp + - vb + name: CreateTranslation(Vector3d) + nameWithType: Matrix4d.CreateTranslation(Vector3d) + fullName: OpenTK.Mathematics.Matrix4d.CreateTranslation(OpenTK.Mathematics.Vector3d) + type: Method + source: + id: CreateTranslation + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4d.cs + startLine: 924 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: Creates a translation matrix. + example: [] + syntax: + content: >- + [Pure] + + public static Matrix4d CreateTranslation(Vector3d vector) + parameters: + - id: vector + type: OpenTK.Mathematics.Vector3d + description: The translation vector. + return: + type: OpenTK.Mathematics.Matrix4d + description: The resulting Matrix4d instance. + content.vb: >- + + + Public Shared Function CreateTranslation(vector As Vector3d) As Matrix4d + overload: OpenTK.Mathematics.Matrix4d.CreateTranslation* + attributes: + - type: System.Diagnostics.Contracts.PureAttribute + ctor: System.Diagnostics.Contracts.PureAttribute.#ctor + arguments: [] +- uid: OpenTK.Mathematics.Matrix4d.CreateScale(System.Double) + commentId: M:OpenTK.Mathematics.Matrix4d.CreateScale(System.Double) + id: CreateScale(System.Double) + parent: OpenTK.Mathematics.Matrix4d + langs: + - csharp + - vb + name: CreateScale(double) + nameWithType: Matrix4d.CreateScale(double) + fullName: OpenTK.Mathematics.Matrix4d.CreateScale(double) + type: Method + source: + id: CreateScale + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4d.cs + startLine: 936 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: Creates a scale matrix. + example: [] + syntax: + content: >- + [Pure] + + public static Matrix4d CreateScale(double scale) + parameters: + - id: scale + type: System.Double + description: Single scale factor for the x, y, and z axes. + return: + type: OpenTK.Mathematics.Matrix4d + description: A scale matrix. + content.vb: >- + + + Public Shared Function CreateScale(scale As Double) As Matrix4d + overload: OpenTK.Mathematics.Matrix4d.CreateScale* + attributes: + - type: System.Diagnostics.Contracts.PureAttribute + ctor: System.Diagnostics.Contracts.PureAttribute.#ctor + arguments: [] + nameWithType.vb: Matrix4d.CreateScale(Double) + fullName.vb: OpenTK.Mathematics.Matrix4d.CreateScale(Double) + name.vb: CreateScale(Double) +- uid: OpenTK.Mathematics.Matrix4d.CreateScale(OpenTK.Mathematics.Vector3d) + commentId: M:OpenTK.Mathematics.Matrix4d.CreateScale(OpenTK.Mathematics.Vector3d) + id: CreateScale(OpenTK.Mathematics.Vector3d) + parent: OpenTK.Mathematics.Matrix4d + langs: + - csharp + - vb + name: CreateScale(Vector3d) + nameWithType: Matrix4d.CreateScale(Vector3d) + fullName: OpenTK.Mathematics.Matrix4d.CreateScale(OpenTK.Mathematics.Vector3d) + type: Method + source: + id: CreateScale + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4d.cs + startLine: 948 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: Creates a scale matrix. + example: [] + syntax: + content: >- + [Pure] + + public static Matrix4d CreateScale(Vector3d scale) + parameters: + - id: scale + type: OpenTK.Mathematics.Vector3d + description: Scale factors for the x, y, and z axes. + return: + type: OpenTK.Mathematics.Matrix4d + description: A scale matrix. + content.vb: >- + + + Public Shared Function CreateScale(scale As Vector3d) As Matrix4d + overload: OpenTK.Mathematics.Matrix4d.CreateScale* + attributes: + - type: System.Diagnostics.Contracts.PureAttribute + ctor: System.Diagnostics.Contracts.PureAttribute.#ctor + arguments: [] +- uid: OpenTK.Mathematics.Matrix4d.CreateScale(System.Double,System.Double,System.Double) + commentId: M:OpenTK.Mathematics.Matrix4d.CreateScale(System.Double,System.Double,System.Double) + id: CreateScale(System.Double,System.Double,System.Double) + parent: OpenTK.Mathematics.Matrix4d + langs: + - csharp + - vb + name: CreateScale(double, double, double) + nameWithType: Matrix4d.CreateScale(double, double, double) + fullName: OpenTK.Mathematics.Matrix4d.CreateScale(double, double, double) + type: Method + source: + id: CreateScale + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4d.cs + startLine: 962 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: Creates a scale matrix. + example: [] + syntax: + content: >- + [Pure] + + public static Matrix4d CreateScale(double x, double y, double z) + parameters: + - id: x + type: System.Double + description: Scale factor for the x axis. + - id: y + type: System.Double + description: Scale factor for the y axis. + - id: z + type: System.Double + description: Scale factor for the z axis. + return: + type: OpenTK.Mathematics.Matrix4d + description: A scale matrix. + content.vb: >- + + + Public Shared Function CreateScale(x As Double, y As Double, z As Double) As Matrix4d + overload: OpenTK.Mathematics.Matrix4d.CreateScale* + attributes: + - type: System.Diagnostics.Contracts.PureAttribute + ctor: System.Diagnostics.Contracts.PureAttribute.#ctor + arguments: [] + nameWithType.vb: Matrix4d.CreateScale(Double, Double, Double) + fullName.vb: OpenTK.Mathematics.Matrix4d.CreateScale(Double, Double, Double) + name.vb: CreateScale(Double, Double, Double) +- uid: OpenTK.Mathematics.Matrix4d.CreateScale(System.Double,OpenTK.Mathematics.Matrix4d@) + commentId: M:OpenTK.Mathematics.Matrix4d.CreateScale(System.Double,OpenTK.Mathematics.Matrix4d@) + id: CreateScale(System.Double,OpenTK.Mathematics.Matrix4d@) + parent: OpenTK.Mathematics.Matrix4d + langs: + - csharp + - vb + name: CreateScale(double, out Matrix4d) + nameWithType: Matrix4d.CreateScale(double, out Matrix4d) + fullName: OpenTK.Mathematics.Matrix4d.CreateScale(double, out OpenTK.Mathematics.Matrix4d) + type: Method + source: + id: CreateScale + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4d.cs + startLine: 974 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: Creates a scale matrix. + example: [] + syntax: + content: public static void CreateScale(double scale, out Matrix4d result) + parameters: + - id: scale + type: System.Double + description: Single scale factor for the x, y, and z axes. + - id: result + type: OpenTK.Mathematics.Matrix4d + description: A scale matrix. + content.vb: Public Shared Sub CreateScale(scale As Double, result As Matrix4d) + overload: OpenTK.Mathematics.Matrix4d.CreateScale* + nameWithType.vb: Matrix4d.CreateScale(Double, Matrix4d) + fullName.vb: OpenTK.Mathematics.Matrix4d.CreateScale(Double, OpenTK.Mathematics.Matrix4d) + name.vb: CreateScale(Double, Matrix4d) +- uid: OpenTK.Mathematics.Matrix4d.CreateScale(OpenTK.Mathematics.Vector3d@,OpenTK.Mathematics.Matrix4d@) + commentId: M:OpenTK.Mathematics.Matrix4d.CreateScale(OpenTK.Mathematics.Vector3d@,OpenTK.Mathematics.Matrix4d@) + id: CreateScale(OpenTK.Mathematics.Vector3d@,OpenTK.Mathematics.Matrix4d@) + parent: OpenTK.Mathematics.Matrix4d + langs: + - csharp + - vb + name: CreateScale(in Vector3d, out Matrix4d) + nameWithType: Matrix4d.CreateScale(in Vector3d, out Matrix4d) + fullName: OpenTK.Mathematics.Matrix4d.CreateScale(in OpenTK.Mathematics.Vector3d, out OpenTK.Mathematics.Matrix4d) + type: Method + source: + id: CreateScale + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4d.cs + startLine: 987 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: Creates a scale matrix. + example: [] + syntax: + content: public static void CreateScale(in Vector3d scale, out Matrix4d result) + parameters: + - id: scale + type: OpenTK.Mathematics.Vector3d + description: Scale factors for the x, y, and z axes. + - id: result + type: OpenTK.Mathematics.Matrix4d + description: A scale matrix. + content.vb: Public Shared Sub CreateScale(scale As Vector3d, result As Matrix4d) + overload: OpenTK.Mathematics.Matrix4d.CreateScale* + nameWithType.vb: Matrix4d.CreateScale(Vector3d, Matrix4d) + fullName.vb: OpenTK.Mathematics.Matrix4d.CreateScale(OpenTK.Mathematics.Vector3d, OpenTK.Mathematics.Matrix4d) + name.vb: CreateScale(Vector3d, Matrix4d) +- uid: OpenTK.Mathematics.Matrix4d.CreateScale(System.Double,System.Double,System.Double,OpenTK.Mathematics.Matrix4d@) + commentId: M:OpenTK.Mathematics.Matrix4d.CreateScale(System.Double,System.Double,System.Double,OpenTK.Mathematics.Matrix4d@) + id: CreateScale(System.Double,System.Double,System.Double,OpenTK.Mathematics.Matrix4d@) + parent: OpenTK.Mathematics.Matrix4d + langs: + - csharp + - vb + name: CreateScale(double, double, double, out Matrix4d) + nameWithType: Matrix4d.CreateScale(double, double, double, out Matrix4d) + fullName: OpenTK.Mathematics.Matrix4d.CreateScale(double, double, double, out OpenTK.Mathematics.Matrix4d) + type: Method + source: + id: CreateScale + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4d.cs + startLine: 1002 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: Creates a scale matrix. + example: [] + syntax: + content: public static void CreateScale(double x, double y, double z, out Matrix4d result) + parameters: + - id: x + type: System.Double + description: Scale factor for the x axis. + - id: y + type: System.Double + description: Scale factor for the y axis. + - id: z + type: System.Double + description: Scale factor for the z axis. + - id: result + type: OpenTK.Mathematics.Matrix4d + description: A scale matrix. + content.vb: Public Shared Sub CreateScale(x As Double, y As Double, z As Double, result As Matrix4d) + overload: OpenTK.Mathematics.Matrix4d.CreateScale* + nameWithType.vb: Matrix4d.CreateScale(Double, Double, Double, Matrix4d) + fullName.vb: OpenTK.Mathematics.Matrix4d.CreateScale(Double, Double, Double, OpenTK.Mathematics.Matrix4d) + name.vb: CreateScale(Double, Double, Double, Matrix4d) +- uid: OpenTK.Mathematics.Matrix4d.CreateSwizzle(System.Int32,System.Int32,System.Int32,System.Int32) + commentId: M:OpenTK.Mathematics.Matrix4d.CreateSwizzle(System.Int32,System.Int32,System.Int32,System.Int32) + id: CreateSwizzle(System.Int32,System.Int32,System.Int32,System.Int32) + parent: OpenTK.Mathematics.Matrix4d + langs: + - csharp + - vb + name: CreateSwizzle(int, int, int, int) + nameWithType: Matrix4d.CreateSwizzle(int, int, int, int) + fullName: OpenTK.Mathematics.Matrix4d.CreateSwizzle(int, int, int, int) + type: Method + source: + id: CreateSwizzle + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4d.cs + startLine: 1021 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics - summary: Creates a translation matrix. + summary: Create a swizzle matrix that can be used to change the row order of matrices. + remarks: If you are looking to swizzle vectors there are properties like that can do this more effectively. example: [] syntax: - content: >- - [Pure] - - public static Matrix4d CreateTranslation(double x, double y, double z) + content: public static Matrix4d CreateSwizzle(int rowForRow0, int rowForRow1, int rowForRow2, int rowForRow3) parameters: - - id: x - type: System.Double - description: X translation. - - id: y - type: System.Double - description: Y translation. - - id: z - type: System.Double - description: Z translation. + - id: rowForRow0 + type: System.Int32 + description: Which row to place in . + - id: rowForRow1 + type: System.Int32 + description: Which row to place in . + - id: rowForRow2 + type: System.Int32 + description: Which row to place in . + - id: rowForRow3 + type: System.Int32 + description: Which row to place in . return: type: OpenTK.Mathematics.Matrix4d - description: The resulting Matrix4d instance. - content.vb: >- - - - Public Shared Function CreateTranslation(x As Double, y As Double, z As Double) As Matrix4d - overload: OpenTK.Mathematics.Matrix4d.CreateTranslation* - attributes: - - type: System.Diagnostics.Contracts.PureAttribute - ctor: System.Diagnostics.Contracts.PureAttribute.#ctor - arguments: [] - nameWithType.vb: Matrix4d.CreateTranslation(Double, Double, Double) - fullName.vb: OpenTK.Mathematics.Matrix4d.CreateTranslation(Double, Double, Double) - name.vb: CreateTranslation(Double, Double, Double) -- uid: OpenTK.Mathematics.Matrix4d.CreateTranslation(OpenTK.Mathematics.Vector3d) - commentId: M:OpenTK.Mathematics.Matrix4d.CreateTranslation(OpenTK.Mathematics.Vector3d) - id: CreateTranslation(OpenTK.Mathematics.Vector3d) + description: The resulting swizzle matrix. + content.vb: Public Shared Function CreateSwizzle(rowForRow0 As Integer, rowForRow1 As Integer, rowForRow2 As Integer, rowForRow3 As Integer) As Matrix4d + overload: OpenTK.Mathematics.Matrix4d.CreateSwizzle* + nameWithType.vb: Matrix4d.CreateSwizzle(Integer, Integer, Integer, Integer) + fullName.vb: OpenTK.Mathematics.Matrix4d.CreateSwizzle(Integer, Integer, Integer, Integer) + name.vb: CreateSwizzle(Integer, Integer, Integer, Integer) +- uid: OpenTK.Mathematics.Matrix4d.CreateSwizzle(System.Int32,System.Int32,System.Int32,System.Int32,OpenTK.Mathematics.Matrix4d@) + commentId: M:OpenTK.Mathematics.Matrix4d.CreateSwizzle(System.Int32,System.Int32,System.Int32,System.Int32,OpenTK.Mathematics.Matrix4d@) + id: CreateSwizzle(System.Int32,System.Int32,System.Int32,System.Int32,OpenTK.Mathematics.Matrix4d@) parent: OpenTK.Mathematics.Matrix4d langs: - csharp - vb - name: CreateTranslation(Vector3d) - nameWithType: Matrix4d.CreateTranslation(Vector3d) - fullName: OpenTK.Mathematics.Matrix4d.CreateTranslation(OpenTK.Mathematics.Vector3d) + name: CreateSwizzle(int, int, int, int, out Matrix4d) + nameWithType: Matrix4d.CreateSwizzle(int, int, int, int, out Matrix4d) + fullName: OpenTK.Mathematics.Matrix4d.CreateSwizzle(int, int, int, int, out OpenTK.Mathematics.Matrix4d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: CreateTranslation - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4d.cs - startLine: 820 + id: CreateSwizzle + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4d.cs + startLine: 1038 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics - summary: Creates a translation matrix. + summary: Create a swizzle matrix that can be used to change the row order of matrices. + remarks: If you are looking to swizzle vectors there are properties like that can do this more effectively. example: [] syntax: - content: >- - [Pure] - - public static Matrix4d CreateTranslation(Vector3d vector) + content: public static void CreateSwizzle(int rowForRow0, int rowForRow1, int rowForRow2, int rowForRow3, out Matrix4d result) parameters: - - id: vector - type: OpenTK.Mathematics.Vector3d - description: The translation vector. - return: + - id: rowForRow0 + type: System.Int32 + description: Which row to place in . + - id: rowForRow1 + type: System.Int32 + description: Which row to place in . + - id: rowForRow2 + type: System.Int32 + description: Which row to place in . + - id: rowForRow3 + type: System.Int32 + description: Which row to place in . + - id: result type: OpenTK.Mathematics.Matrix4d - description: The resulting Matrix4d instance. - content.vb: >- - - - Public Shared Function CreateTranslation(vector As Vector3d) As Matrix4d - overload: OpenTK.Mathematics.Matrix4d.CreateTranslation* - attributes: - - type: System.Diagnostics.Contracts.PureAttribute - ctor: System.Diagnostics.Contracts.PureAttribute.#ctor - arguments: [] + description: The resulting swizzle matrix. + content.vb: Public Shared Sub CreateSwizzle(rowForRow0 As Integer, rowForRow1 As Integer, rowForRow2 As Integer, rowForRow3 As Integer, result As Matrix4d) + overload: OpenTK.Mathematics.Matrix4d.CreateSwizzle* + nameWithType.vb: Matrix4d.CreateSwizzle(Integer, Integer, Integer, Integer, Matrix4d) + fullName.vb: OpenTK.Mathematics.Matrix4d.CreateSwizzle(Integer, Integer, Integer, Integer, OpenTK.Mathematics.Matrix4d) + name.vb: CreateSwizzle(Integer, Integer, Integer, Integer, Matrix4d) - uid: OpenTK.Mathematics.Matrix4d.CreateOrthographic(System.Double,System.Double,System.Double,System.Double,OpenTK.Mathematics.Matrix4d@) commentId: M:OpenTK.Mathematics.Matrix4d.CreateOrthographic(System.Double,System.Double,System.Double,System.Double,OpenTK.Mathematics.Matrix4d@) id: CreateOrthographic(System.Double,System.Double,System.Double,System.Double,OpenTK.Mathematics.Matrix4d@) @@ -2167,13 +2494,9 @@ items: fullName: OpenTK.Mathematics.Matrix4d.CreateOrthographic(double, double, double, double, out OpenTK.Mathematics.Matrix4d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateOrthographic - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4d.cs - startLine: 835 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4d.cs + startLine: 1072 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2214,13 +2537,9 @@ items: fullName: OpenTK.Mathematics.Matrix4d.CreateOrthographic(double, double, double, double) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateOrthographic - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4d.cs - startLine: 855 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4d.cs + startLine: 1092 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2271,13 +2590,9 @@ items: fullName: OpenTK.Mathematics.Matrix4d.CreateOrthographicOffCenter(double, double, double, double, double, double, out OpenTK.Mathematics.Matrix4d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateOrthographicOffCenter - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4d.cs - startLine: 872 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4d.cs + startLine: 1109 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2324,13 +2639,9 @@ items: fullName: OpenTK.Mathematics.Matrix4d.CreateOrthographicOffCenter(double, double, double, double, double, double) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateOrthographicOffCenter - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4d.cs - startLine: 910 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4d.cs + startLine: 1147 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2387,13 +2698,9 @@ items: fullName: OpenTK.Mathematics.Matrix4d.CreatePerspectiveFieldOfView(double, double, double, double, out OpenTK.Mathematics.Matrix4d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreatePerspectiveFieldOfView - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4d.cs - startLine: 943 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4d.cs + startLine: 1180 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2440,13 +2747,9 @@ items: fullName: OpenTK.Mathematics.Matrix4d.CreatePerspectiveFieldOfView(double, double, double, double) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreatePerspectiveFieldOfView - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4d.cs - startLine: 998 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4d.cs + startLine: 1235 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2503,13 +2806,9 @@ items: fullName: OpenTK.Mathematics.Matrix4d.CreatePerspectiveOffCenter(double, double, double, double, double, double, out OpenTK.Mathematics.Matrix4d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreatePerspectiveOffCenter - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4d.cs - startLine: 1023 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4d.cs + startLine: 1260 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2562,13 +2861,9 @@ items: fullName: OpenTK.Mathematics.Matrix4d.CreatePerspectiveOffCenter(double, double, double, double, double, double) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreatePerspectiveOffCenter - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4d.cs - startLine: 1085 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4d.cs + startLine: 1322 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2619,89 +2914,6 @@ items: nameWithType.vb: Matrix4d.CreatePerspectiveOffCenter(Double, Double, Double, Double, Double, Double) fullName.vb: OpenTK.Mathematics.Matrix4d.CreatePerspectiveOffCenter(Double, Double, Double, Double, Double, Double) name.vb: CreatePerspectiveOffCenter(Double, Double, Double, Double, Double, Double) -- uid: OpenTK.Mathematics.Matrix4d.CreateFromQuaternion(OpenTK.Mathematics.Quaterniond@,OpenTK.Mathematics.Matrix4d@) - commentId: M:OpenTK.Mathematics.Matrix4d.CreateFromQuaternion(OpenTK.Mathematics.Quaterniond@,OpenTK.Mathematics.Matrix4d@) - id: CreateFromQuaternion(OpenTK.Mathematics.Quaterniond@,OpenTK.Mathematics.Matrix4d@) - parent: OpenTK.Mathematics.Matrix4d - langs: - - csharp - - vb - name: CreateFromQuaternion(in Quaterniond, out Matrix4d) - nameWithType: Matrix4d.CreateFromQuaternion(in Quaterniond, out Matrix4d) - fullName: OpenTK.Mathematics.Matrix4d.CreateFromQuaternion(in OpenTK.Mathematics.Quaterniond, out OpenTK.Mathematics.Matrix4d) - type: Method - source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: CreateFromQuaternion - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4d.cs - startLine: 1105 - assemblies: - - OpenTK.Mathematics - namespace: OpenTK.Mathematics - summary: Build a rotation matrix from the specified quaternion. - example: [] - syntax: - content: public static void CreateFromQuaternion(in Quaterniond q, out Matrix4d result) - parameters: - - id: q - type: OpenTK.Mathematics.Quaterniond - description: Quaternion to translate. - - id: result - type: OpenTK.Mathematics.Matrix4d - description: Matrix result. - content.vb: Public Shared Sub CreateFromQuaternion(q As Quaterniond, result As Matrix4d) - overload: OpenTK.Mathematics.Matrix4d.CreateFromQuaternion* - nameWithType.vb: Matrix4d.CreateFromQuaternion(Quaterniond, Matrix4d) - fullName.vb: OpenTK.Mathematics.Matrix4d.CreateFromQuaternion(OpenTK.Mathematics.Quaterniond, OpenTK.Mathematics.Matrix4d) - name.vb: CreateFromQuaternion(Quaterniond, Matrix4d) -- uid: OpenTK.Mathematics.Matrix4d.CreateFromQuaternion(OpenTK.Mathematics.Quaterniond) - commentId: M:OpenTK.Mathematics.Matrix4d.CreateFromQuaternion(OpenTK.Mathematics.Quaterniond) - id: CreateFromQuaternion(OpenTK.Mathematics.Quaterniond) - parent: OpenTK.Mathematics.Matrix4d - langs: - - csharp - - vb - name: CreateFromQuaternion(Quaterniond) - nameWithType: Matrix4d.CreateFromQuaternion(Quaterniond) - fullName: OpenTK.Mathematics.Matrix4d.CreateFromQuaternion(OpenTK.Mathematics.Quaterniond) - type: Method - source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: CreateFromQuaternion - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4d.cs - startLine: 1149 - assemblies: - - OpenTK.Mathematics - namespace: OpenTK.Mathematics - summary: Builds a rotation matrix from a quaternion. - example: [] - syntax: - content: >- - [Pure] - - public static Matrix4d CreateFromQuaternion(Quaterniond q) - parameters: - - id: q - type: OpenTK.Mathematics.Quaterniond - description: The quaternion to rotate by. - return: - type: OpenTK.Mathematics.Matrix4d - description: A matrix instance. - content.vb: >- - - - Public Shared Function CreateFromQuaternion(q As Quaterniond) As Matrix4d - overload: OpenTK.Mathematics.Matrix4d.CreateFromQuaternion* - attributes: - - type: System.Diagnostics.Contracts.PureAttribute - ctor: System.Diagnostics.Contracts.PureAttribute.#ctor - arguments: [] - uid: OpenTK.Mathematics.Matrix4d.Scale(System.Double) commentId: M:OpenTK.Mathematics.Matrix4d.Scale(System.Double) id: Scale(System.Double) @@ -2714,13 +2926,9 @@ items: fullName: OpenTK.Mathematics.Matrix4d.Scale(double) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Scale - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4d.cs - startLine: 1161 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4d.cs + startLine: 1342 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2730,6 +2938,8 @@ items: content: >- [Pure] + [Obsolete("Use CreateScale instead.")] + public static Matrix4d Scale(double scale) parameters: - id: scale @@ -2741,12 +2951,19 @@ items: content.vb: >- + + Public Shared Function Scale(scale As Double) As Matrix4d overload: OpenTK.Mathematics.Matrix4d.Scale* attributes: - type: System.Diagnostics.Contracts.PureAttribute ctor: System.Diagnostics.Contracts.PureAttribute.#ctor arguments: [] + - type: System.ObsoleteAttribute + ctor: System.ObsoleteAttribute.#ctor(System.String) + arguments: + - type: System.String + value: Use CreateScale instead. nameWithType.vb: Matrix4d.Scale(Double) fullName.vb: OpenTK.Mathematics.Matrix4d.Scale(Double) name.vb: Scale(Double) @@ -2762,13 +2979,9 @@ items: fullName: OpenTK.Mathematics.Matrix4d.Scale(OpenTK.Mathematics.Vector3d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Scale - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4d.cs - startLine: 1172 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4d.cs + startLine: 1354 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2778,6 +2991,8 @@ items: content: >- [Pure] + [Obsolete("Use CreateScale instead.")] + public static Matrix4d Scale(Vector3d scale) parameters: - id: scale @@ -2789,12 +3004,19 @@ items: content.vb: >- + + Public Shared Function Scale(scale As Vector3d) As Matrix4d overload: OpenTK.Mathematics.Matrix4d.Scale* attributes: - type: System.Diagnostics.Contracts.PureAttribute ctor: System.Diagnostics.Contracts.PureAttribute.#ctor arguments: [] + - type: System.ObsoleteAttribute + ctor: System.ObsoleteAttribute.#ctor(System.String) + arguments: + - type: System.String + value: Use CreateScale instead. - uid: OpenTK.Mathematics.Matrix4d.Scale(System.Double,System.Double,System.Double) commentId: M:OpenTK.Mathematics.Matrix4d.Scale(System.Double,System.Double,System.Double) id: Scale(System.Double,System.Double,System.Double) @@ -2807,13 +3029,9 @@ items: fullName: OpenTK.Mathematics.Matrix4d.Scale(double, double, double) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Scale - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4d.cs - startLine: 1185 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4d.cs + startLine: 1368 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2823,6 +3041,8 @@ items: content: >- [Pure] + [Obsolete("Use CreateScale instead.")] + public static Matrix4d Scale(double x, double y, double z) parameters: - id: x @@ -2840,12 +3060,19 @@ items: content.vb: >- + + Public Shared Function Scale(x As Double, y As Double, z As Double) As Matrix4d overload: OpenTK.Mathematics.Matrix4d.Scale* attributes: - type: System.Diagnostics.Contracts.PureAttribute ctor: System.Diagnostics.Contracts.PureAttribute.#ctor arguments: [] + - type: System.ObsoleteAttribute + ctor: System.ObsoleteAttribute.#ctor(System.String) + arguments: + - type: System.String + value: Use CreateScale instead. nameWithType.vb: Matrix4d.Scale(Double, Double, Double) fullName.vb: OpenTK.Mathematics.Matrix4d.Scale(Double, Double, Double) name.vb: Scale(Double, Double, Double) @@ -2861,13 +3088,9 @@ items: fullName: OpenTK.Mathematics.Matrix4d.RotateX(double) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: RotateX - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4d.cs - startLine: 1201 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4d.cs + startLine: 1385 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2877,6 +3100,8 @@ items: content: >- [Pure] + [Obsolete("Use CreateRotationX instead.")] + public static Matrix4d RotateX(double angle) parameters: - id: angle @@ -2888,12 +3113,19 @@ items: content.vb: >- + + Public Shared Function RotateX(angle As Double) As Matrix4d overload: OpenTK.Mathematics.Matrix4d.RotateX* attributes: - type: System.Diagnostics.Contracts.PureAttribute ctor: System.Diagnostics.Contracts.PureAttribute.#ctor arguments: [] + - type: System.ObsoleteAttribute + ctor: System.ObsoleteAttribute.#ctor(System.String) + arguments: + - type: System.String + value: Use CreateRotationX instead. nameWithType.vb: Matrix4d.RotateX(Double) fullName.vb: OpenTK.Mathematics.Matrix4d.RotateX(Double) name.vb: RotateX(Double) @@ -2909,13 +3141,9 @@ items: fullName: OpenTK.Mathematics.Matrix4d.RotateY(double) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: RotateY - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4d.cs - startLine: 1220 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4d.cs + startLine: 1405 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2925,6 +3153,8 @@ items: content: >- [Pure] + [Obsolete("Use CreateRotationY instead.")] + public static Matrix4d RotateY(double angle) parameters: - id: angle @@ -2936,12 +3166,19 @@ items: content.vb: >- + + Public Shared Function RotateY(angle As Double) As Matrix4d overload: OpenTK.Mathematics.Matrix4d.RotateY* attributes: - type: System.Diagnostics.Contracts.PureAttribute ctor: System.Diagnostics.Contracts.PureAttribute.#ctor arguments: [] + - type: System.ObsoleteAttribute + ctor: System.ObsoleteAttribute.#ctor(System.String) + arguments: + - type: System.String + value: Use CreateRotationY instead. nameWithType.vb: Matrix4d.RotateY(Double) fullName.vb: OpenTK.Mathematics.Matrix4d.RotateY(Double) name.vb: RotateY(Double) @@ -2957,13 +3194,9 @@ items: fullName: OpenTK.Mathematics.Matrix4d.RotateZ(double) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: RotateZ - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4d.cs - startLine: 1239 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4d.cs + startLine: 1425 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2973,6 +3206,8 @@ items: content: >- [Pure] + [Obsolete("Use CreateRotationZ instead.")] + public static Matrix4d RotateZ(double angle) parameters: - id: angle @@ -2984,12 +3219,19 @@ items: content.vb: >- + + Public Shared Function RotateZ(angle As Double) As Matrix4d overload: OpenTK.Mathematics.Matrix4d.RotateZ* attributes: - type: System.Diagnostics.Contracts.PureAttribute ctor: System.Diagnostics.Contracts.PureAttribute.#ctor arguments: [] + - type: System.ObsoleteAttribute + ctor: System.ObsoleteAttribute.#ctor(System.String) + arguments: + - type: System.String + value: Use CreateRotationZ instead. nameWithType.vb: Matrix4d.RotateZ(Double) fullName.vb: OpenTK.Mathematics.Matrix4d.RotateZ(Double) name.vb: RotateZ(Double) @@ -3005,13 +3247,9 @@ items: fullName: OpenTK.Mathematics.Matrix4d.Rotate(OpenTK.Mathematics.Vector3d, double) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Rotate - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4d.cs - startLine: 1261 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4d.cs + startLine: 1448 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -3021,6 +3259,8 @@ items: content: >- [Pure] + [Obsolete("Use CreateFromAxisAngle instead.")] + public static Matrix4d Rotate(Vector3d axis, double angle) parameters: - id: axis @@ -3035,12 +3275,19 @@ items: content.vb: >- + + Public Shared Function Rotate(axis As Vector3d, angle As Double) As Matrix4d overload: OpenTK.Mathematics.Matrix4d.Rotate* attributes: - type: System.Diagnostics.Contracts.PureAttribute ctor: System.Diagnostics.Contracts.PureAttribute.#ctor arguments: [] + - type: System.ObsoleteAttribute + ctor: System.ObsoleteAttribute.#ctor(System.String) + arguments: + - type: System.String + value: Use CreateFromAxisAngle instead. nameWithType.vb: Matrix4d.Rotate(Vector3d, Double) fullName.vb: OpenTK.Mathematics.Matrix4d.Rotate(OpenTK.Mathematics.Vector3d, Double) name.vb: Rotate(Vector3d, Double) @@ -3056,13 +3303,9 @@ items: fullName: OpenTK.Mathematics.Matrix4d.Rotate(OpenTK.Mathematics.Quaterniond) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Rotate - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4d.cs - startLine: 1302 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4d.cs + startLine: 1490 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -3072,6 +3315,8 @@ items: content: >- [Pure] + [Obsolete("Use CreateFromQuaternion instead.")] + public static Matrix4d Rotate(Quaterniond q) parameters: - id: q @@ -3083,12 +3328,19 @@ items: content.vb: >- + + Public Shared Function Rotate(q As Quaterniond) As Matrix4d overload: OpenTK.Mathematics.Matrix4d.Rotate* attributes: - type: System.Diagnostics.Contracts.PureAttribute ctor: System.Diagnostics.Contracts.PureAttribute.#ctor arguments: [] + - type: System.ObsoleteAttribute + ctor: System.ObsoleteAttribute.#ctor(System.String) + arguments: + - type: System.String + value: Use CreateFromQuaternion instead. - uid: OpenTK.Mathematics.Matrix4d.LookAt(OpenTK.Mathematics.Vector3d,OpenTK.Mathematics.Vector3d,OpenTK.Mathematics.Vector3d) commentId: M:OpenTK.Mathematics.Matrix4d.LookAt(OpenTK.Mathematics.Vector3d,OpenTK.Mathematics.Vector3d,OpenTK.Mathematics.Vector3d) id: LookAt(OpenTK.Mathematics.Vector3d,OpenTK.Mathematics.Vector3d,OpenTK.Mathematics.Vector3d) @@ -3101,13 +3353,9 @@ items: fullName: OpenTK.Mathematics.Matrix4d.LookAt(OpenTK.Mathematics.Vector3d, OpenTK.Mathematics.Vector3d, OpenTK.Mathematics.Vector3d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: LookAt - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4d.cs - startLine: 1316 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4d.cs + startLine: 1505 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -3152,13 +3400,9 @@ items: fullName: OpenTK.Mathematics.Matrix4d.LookAt(double, double, double, double, double, double, double, double, double) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: LookAt - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4d.cs - startLine: 1355 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4d.cs + startLine: 1544 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -3224,13 +3468,9 @@ items: fullName: OpenTK.Mathematics.Matrix4d.Frustum(double, double, double, double, double, double) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Frustum - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4d.cs - startLine: 1387 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4d.cs + startLine: 1576 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -3240,6 +3480,8 @@ items: content: >- [Pure] + [Obsolete("Use CreatePerspectiveOffCenter instead.")] + public static Matrix4d Frustum(double left, double right, double bottom, double top, double depthNear, double depthFar) parameters: - id: left @@ -3266,12 +3508,19 @@ items: content.vb: >- + + Public Shared Function Frustum(left As Double, right As Double, bottom As Double, top As Double, depthNear As Double, depthFar As Double) As Matrix4d overload: OpenTK.Mathematics.Matrix4d.Frustum* attributes: - type: System.Diagnostics.Contracts.PureAttribute ctor: System.Diagnostics.Contracts.PureAttribute.#ctor arguments: [] + - type: System.ObsoleteAttribute + ctor: System.ObsoleteAttribute.#ctor(System.String) + arguments: + - type: System.String + value: Use CreatePerspectiveOffCenter instead. nameWithType.vb: Matrix4d.Frustum(Double, Double, Double, Double, Double, Double) fullName.vb: OpenTK.Mathematics.Matrix4d.Frustum(Double, Double, Double, Double, Double, Double) name.vb: Frustum(Double, Double, Double, Double, Double, Double) @@ -3287,13 +3536,9 @@ items: fullName: OpenTK.Mathematics.Matrix4d.Perspective(double, double, double, double) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Perspective - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4d.cs - startLine: 1410 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4d.cs + startLine: 1600 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -3303,6 +3548,8 @@ items: content: >- [Pure] + [Obsolete("Use CreatePerspectiveFieldOfView instead.")] + public static Matrix4d Perspective(double fovy, double aspect, double depthNear, double depthFar) parameters: - id: fovy @@ -3323,12 +3570,19 @@ items: content.vb: >- + + Public Shared Function Perspective(fovy As Double, aspect As Double, depthNear As Double, depthFar As Double) As Matrix4d overload: OpenTK.Mathematics.Matrix4d.Perspective* attributes: - type: System.Diagnostics.Contracts.PureAttribute ctor: System.Diagnostics.Contracts.PureAttribute.#ctor arguments: [] + - type: System.ObsoleteAttribute + ctor: System.ObsoleteAttribute.#ctor(System.String) + arguments: + - type: System.String + value: Use CreatePerspectiveFieldOfView instead. nameWithType.vb: Matrix4d.Perspective(Double, Double, Double, Double) fullName.vb: OpenTK.Mathematics.Matrix4d.Perspective(Double, Double, Double, Double) name.vb: Perspective(Double, Double, Double, Double) @@ -3344,13 +3598,9 @@ items: fullName: OpenTK.Mathematics.Matrix4d.Add(OpenTK.Mathematics.Matrix4d, OpenTK.Mathematics.Matrix4d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Add - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4d.cs - startLine: 1427 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4d.cs + startLine: 1618 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -3392,13 +3642,9 @@ items: fullName: OpenTK.Mathematics.Matrix4d.Add(in OpenTK.Mathematics.Matrix4d, in OpenTK.Mathematics.Matrix4d, out OpenTK.Mathematics.Matrix4d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Add - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4d.cs - startLine: 1440 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4d.cs + startLine: 1631 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -3433,13 +3679,9 @@ items: fullName: OpenTK.Mathematics.Matrix4d.Subtract(OpenTK.Mathematics.Matrix4d, OpenTK.Mathematics.Matrix4d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Subtract - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4d.cs - startLine: 1454 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4d.cs + startLine: 1645 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -3481,13 +3723,9 @@ items: fullName: OpenTK.Mathematics.Matrix4d.Subtract(in OpenTK.Mathematics.Matrix4d, in OpenTK.Mathematics.Matrix4d, out OpenTK.Mathematics.Matrix4d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Subtract - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4d.cs - startLine: 1467 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4d.cs + startLine: 1658 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -3522,13 +3760,9 @@ items: fullName: OpenTK.Mathematics.Matrix4d.Mult(OpenTK.Mathematics.Matrix4d, OpenTK.Mathematics.Matrix4d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Mult - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4d.cs - startLine: 1481 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4d.cs + startLine: 1672 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -3570,13 +3804,9 @@ items: fullName: OpenTK.Mathematics.Matrix4d.Mult(in OpenTK.Mathematics.Matrix4d, in OpenTK.Mathematics.Matrix4d, out OpenTK.Mathematics.Matrix4d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Mult - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4d.cs - startLine: 1494 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4d.cs + startLine: 1685 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -3611,13 +3841,9 @@ items: fullName: OpenTK.Mathematics.Matrix4d.Mult(OpenTK.Mathematics.Matrix4d, double) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Mult - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4d.cs - startLine: 1553 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4d.cs + startLine: 1744 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -3662,13 +3888,9 @@ items: fullName: OpenTK.Mathematics.Matrix4d.Mult(in OpenTK.Mathematics.Matrix4d, double, out OpenTK.Mathematics.Matrix4d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Mult - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4d.cs - startLine: 1566 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4d.cs + startLine: 1757 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -3703,13 +3925,9 @@ items: fullName: OpenTK.Mathematics.Matrix4d.Invert(in OpenTK.Mathematics.Matrix4d, out OpenTK.Mathematics.Matrix4d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Invert - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4d.cs - startLine: 1580 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4d.cs + startLine: 1771 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -3755,13 +3973,9 @@ items: fullName: OpenTK.Mathematics.Matrix4d.Invert(in OpenTK.Mathematics.Matrix4d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Invert - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4d.cs - startLine: 1654 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4d.cs + startLine: 1845 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -3807,13 +4021,9 @@ items: fullName: OpenTK.Mathematics.Matrix4d.Transpose(OpenTK.Mathematics.Matrix4d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Transpose - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4d.cs - startLine: 1667 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4d.cs + startLine: 1857 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -3852,13 +4062,9 @@ items: fullName: OpenTK.Mathematics.Matrix4d.Transpose(in OpenTK.Mathematics.Matrix4d, out OpenTK.Mathematics.Matrix4d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Transpose - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4d.cs - startLine: 1678 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4d.cs + startLine: 1868 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -3878,6 +4084,106 @@ items: nameWithType.vb: Matrix4d.Transpose(Matrix4d, Matrix4d) fullName.vb: OpenTK.Mathematics.Matrix4d.Transpose(OpenTK.Mathematics.Matrix4d, OpenTK.Mathematics.Matrix4d) name.vb: Transpose(Matrix4d, Matrix4d) +- uid: OpenTK.Mathematics.Matrix4d.Swizzle(OpenTK.Mathematics.Matrix4d,System.Int32,System.Int32,System.Int32,System.Int32) + commentId: M:OpenTK.Mathematics.Matrix4d.Swizzle(OpenTK.Mathematics.Matrix4d,System.Int32,System.Int32,System.Int32,System.Int32) + id: Swizzle(OpenTK.Mathematics.Matrix4d,System.Int32,System.Int32,System.Int32,System.Int32) + parent: OpenTK.Mathematics.Matrix4d + langs: + - csharp + - vb + name: Swizzle(Matrix4d, int, int, int, int) + nameWithType: Matrix4d.Swizzle(Matrix4d, int, int, int, int) + fullName: OpenTK.Mathematics.Matrix4d.Swizzle(OpenTK.Mathematics.Matrix4d, int, int, int, int) + type: Method + source: + id: Swizzle + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4d.cs + startLine: 1886 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: Swizzles a matrix, i.e. switches rows of the matrix. + example: [] + syntax: + content: public static Matrix4d Swizzle(Matrix4d mat, int rowForRow0, int rowForRow1, int rowForRow2, int rowForRow3) + parameters: + - id: mat + type: OpenTK.Mathematics.Matrix4d + description: The matrix to swizzle. + - id: rowForRow0 + type: System.Int32 + description: Which row to place in . + - id: rowForRow1 + type: System.Int32 + description: Which row to place in . + - id: rowForRow2 + type: System.Int32 + description: Which row to place in . + - id: rowForRow3 + type: System.Int32 + description: Which row to place in . + return: + type: OpenTK.Mathematics.Matrix4d + description: The swizzled matrix. + content.vb: Public Shared Function Swizzle(mat As Matrix4d, rowForRow0 As Integer, rowForRow1 As Integer, rowForRow2 As Integer, rowForRow3 As Integer) As Matrix4d + overload: OpenTK.Mathematics.Matrix4d.Swizzle* + exceptions: + - type: System.IndexOutOfRangeException + commentId: T:System.IndexOutOfRangeException + description: If any of the rows are outside of the range [0, 3]. + nameWithType.vb: Matrix4d.Swizzle(Matrix4d, Integer, Integer, Integer, Integer) + fullName.vb: OpenTK.Mathematics.Matrix4d.Swizzle(OpenTK.Mathematics.Matrix4d, Integer, Integer, Integer, Integer) + name.vb: Swizzle(Matrix4d, Integer, Integer, Integer, Integer) +- uid: OpenTK.Mathematics.Matrix4d.Swizzle(OpenTK.Mathematics.Matrix4d@,System.Int32,System.Int32,System.Int32,System.Int32,OpenTK.Mathematics.Matrix4d@) + commentId: M:OpenTK.Mathematics.Matrix4d.Swizzle(OpenTK.Mathematics.Matrix4d@,System.Int32,System.Int32,System.Int32,System.Int32,OpenTK.Mathematics.Matrix4d@) + id: Swizzle(OpenTK.Mathematics.Matrix4d@,System.Int32,System.Int32,System.Int32,System.Int32,OpenTK.Mathematics.Matrix4d@) + parent: OpenTK.Mathematics.Matrix4d + langs: + - csharp + - vb + name: Swizzle(in Matrix4d, int, int, int, int, out Matrix4d) + nameWithType: Matrix4d.Swizzle(in Matrix4d, int, int, int, int, out Matrix4d) + fullName: OpenTK.Mathematics.Matrix4d.Swizzle(in OpenTK.Mathematics.Matrix4d, int, int, int, int, out OpenTK.Mathematics.Matrix4d) + type: Method + source: + id: Swizzle + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4d.cs + startLine: 1902 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: Swizzles a matrix, i.e. switches rows of the matrix. + example: [] + syntax: + content: public static void Swizzle(in Matrix4d mat, int rowForRow0, int rowForRow1, int rowForRow2, int rowForRow3, out Matrix4d result) + parameters: + - id: mat + type: OpenTK.Mathematics.Matrix4d + description: The matrix to swizzle. + - id: rowForRow0 + type: System.Int32 + description: Which row to place in . + - id: rowForRow1 + type: System.Int32 + description: Which row to place in . + - id: rowForRow2 + type: System.Int32 + description: Which row to place in . + - id: rowForRow3 + type: System.Int32 + description: Which row to place in . + - id: result + type: OpenTK.Mathematics.Matrix4d + description: The swizzled matrix. + content.vb: Public Shared Sub Swizzle(mat As Matrix4d, rowForRow0 As Integer, rowForRow1 As Integer, rowForRow2 As Integer, rowForRow3 As Integer, result As Matrix4d) + overload: OpenTK.Mathematics.Matrix4d.Swizzle* + exceptions: + - type: System.IndexOutOfRangeException + commentId: T:System.IndexOutOfRangeException + description: If any of the rows are outside of the range [0, 3]. + nameWithType.vb: Matrix4d.Swizzle(Matrix4d, Integer, Integer, Integer, Integer, Matrix4d) + fullName.vb: OpenTK.Mathematics.Matrix4d.Swizzle(OpenTK.Mathematics.Matrix4d, Integer, Integer, Integer, Integer, OpenTK.Mathematics.Matrix4d) + name.vb: Swizzle(Matrix4d, Integer, Integer, Integer, Integer, Matrix4d) - uid: OpenTK.Mathematics.Matrix4d.op_Multiply(OpenTK.Mathematics.Matrix4d,OpenTK.Mathematics.Matrix4d) commentId: M:OpenTK.Mathematics.Matrix4d.op_Multiply(OpenTK.Mathematics.Matrix4d,OpenTK.Mathematics.Matrix4d) id: op_Multiply(OpenTK.Mathematics.Matrix4d,OpenTK.Mathematics.Matrix4d) @@ -3890,13 +4196,9 @@ items: fullName: OpenTK.Mathematics.Matrix4d.operator *(OpenTK.Mathematics.Matrix4d, OpenTK.Mathematics.Matrix4d) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Multiply - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4d.cs - startLine: 1692 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4d.cs + startLine: 1947 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -3941,13 +4243,9 @@ items: fullName: OpenTK.Mathematics.Matrix4d.operator *(OpenTK.Mathematics.Matrix4d, double) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Multiply - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4d.cs - startLine: 1704 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4d.cs + startLine: 1959 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -3992,13 +4290,9 @@ items: fullName: OpenTK.Mathematics.Matrix4d.operator +(OpenTK.Mathematics.Matrix4d, OpenTK.Mathematics.Matrix4d) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Addition - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4d.cs - startLine: 1716 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4d.cs + startLine: 1971 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -4043,13 +4337,9 @@ items: fullName: OpenTK.Mathematics.Matrix4d.operator -(OpenTK.Mathematics.Matrix4d, OpenTK.Mathematics.Matrix4d) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Subtraction - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4d.cs - startLine: 1728 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4d.cs + startLine: 1983 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -4094,13 +4384,9 @@ items: fullName: OpenTK.Mathematics.Matrix4d.operator ==(OpenTK.Mathematics.Matrix4d, OpenTK.Mathematics.Matrix4d) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Equality - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4d.cs - startLine: 1740 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4d.cs + startLine: 1995 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -4145,13 +4431,9 @@ items: fullName: OpenTK.Mathematics.Matrix4d.operator !=(OpenTK.Mathematics.Matrix4d, OpenTK.Mathematics.Matrix4d) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Inequality - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4d.cs - startLine: 1752 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4d.cs + startLine: 2007 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -4196,20 +4478,16 @@ items: fullName: OpenTK.Mathematics.Matrix4d.ToString() type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4d.cs - startLine: 1759 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4d.cs + startLine: 2014 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Returns the fully qualified type name of this instance. example: [] syntax: - content: public override string ToString() + content: public override readonly string ToString() return: type: System.String description: The fully qualified type name. @@ -4228,20 +4506,16 @@ items: fullName: OpenTK.Mathematics.Matrix4d.ToString(string) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4d.cs - startLine: 1765 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4d.cs + startLine: 2020 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Formats the value of the current instance using the specified format. example: [] syntax: - content: public string ToString(string format) + content: public readonly string ToString(string format) parameters: - id: format type: System.String @@ -4271,20 +4545,16 @@ items: fullName: OpenTK.Mathematics.Matrix4d.ToString(System.IFormatProvider) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4d.cs - startLine: 1771 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4d.cs + startLine: 2026 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Formats the value of the current instance using the specified format. example: [] syntax: - content: public string ToString(IFormatProvider formatProvider) + content: public readonly string ToString(IFormatProvider formatProvider) parameters: - id: formatProvider type: System.IFormatProvider @@ -4311,20 +4581,16 @@ items: fullName: OpenTK.Mathematics.Matrix4d.ToString(string, System.IFormatProvider) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4d.cs - startLine: 1777 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4d.cs + startLine: 2032 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Formats the value of the current instance using the specified format. example: [] syntax: - content: public string ToString(string format, IFormatProvider formatProvider) + content: public readonly string ToString(string format, IFormatProvider formatProvider) parameters: - id: format type: System.String @@ -4364,20 +4630,16 @@ items: fullName: OpenTK.Mathematics.Matrix4d.GetHashCode() type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetHashCode - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4d.cs - startLine: 1790 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4d.cs + startLine: 2045 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Returns the hashcode for this instance. example: [] syntax: - content: public override int GetHashCode() + content: public override readonly int GetHashCode() return: type: System.Int32 description: A System.Int32 containing the unique hashcode for this instance. @@ -4396,13 +4658,9 @@ items: fullName: OpenTK.Mathematics.Matrix4d.Equals(object) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Equals - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4d.cs - startLine: 1800 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4d.cs + startLine: 2055 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -4412,7 +4670,7 @@ items: content: >- [Pure] - public override bool Equals(object obj) + public override readonly bool Equals(object obj) parameters: - id: obj type: System.Object @@ -4445,13 +4703,9 @@ items: fullName: OpenTK.Mathematics.Matrix4d.Equals(OpenTK.Mathematics.Matrix4d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Equals - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4d.cs - startLine: 1811 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4d.cs + startLine: 2066 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -4461,7 +4715,7 @@ items: content: >- [Pure] - public bool Equals(Matrix4d other) + public readonly bool Equals(Matrix4d other) parameters: - id: other type: OpenTK.Mathematics.Matrix4d @@ -4916,18 +5170,24 @@ references: name: Invert nameWithType: Matrix4d.Invert fullName: OpenTK.Mathematics.Matrix4d.Invert +- uid: OpenTK.Mathematics.Matrix4d.Inverted* + commentId: Overload:OpenTK.Mathematics.Matrix4d.Inverted + href: OpenTK.Mathematics.Matrix4d.html#OpenTK_Mathematics_Matrix4d_Inverted + name: Inverted + nameWithType: Matrix4d.Inverted + fullName: OpenTK.Mathematics.Matrix4d.Inverted - uid: OpenTK.Mathematics.Matrix4d.Transpose* commentId: Overload:OpenTK.Mathematics.Matrix4d.Transpose href: OpenTK.Mathematics.Matrix4d.html#OpenTK_Mathematics_Matrix4d_Transpose name: Transpose nameWithType: Matrix4d.Transpose fullName: OpenTK.Mathematics.Matrix4d.Transpose -- uid: OpenTK.Mathematics.Matrix4d.Normalized* - commentId: Overload:OpenTK.Mathematics.Matrix4d.Normalized - href: OpenTK.Mathematics.Matrix4d.html#OpenTK_Mathematics_Matrix4d_Normalized - name: Normalized - nameWithType: Matrix4d.Normalized - fullName: OpenTK.Mathematics.Matrix4d.Normalized +- uid: OpenTK.Mathematics.Matrix4d.Transposed* + commentId: Overload:OpenTK.Mathematics.Matrix4d.Transposed + href: OpenTK.Mathematics.Matrix4d.html#OpenTK_Mathematics_Matrix4d_Transposed + name: Transposed + nameWithType: Matrix4d.Transposed + fullName: OpenTK.Mathematics.Matrix4d.Transposed - uid: OpenTK.Mathematics.Matrix4d.Determinant commentId: P:OpenTK.Mathematics.Matrix4d.Determinant href: OpenTK.Mathematics.Matrix4d.html#OpenTK_Mathematics_Matrix4d_Determinant @@ -4940,12 +5200,48 @@ references: name: Normalize nameWithType: Matrix4d.Normalize fullName: OpenTK.Mathematics.Matrix4d.Normalize -- uid: OpenTK.Mathematics.Matrix4d.Inverted* - commentId: Overload:OpenTK.Mathematics.Matrix4d.Inverted - href: OpenTK.Mathematics.Matrix4d.html#OpenTK_Mathematics_Matrix4d_Inverted - name: Inverted - nameWithType: Matrix4d.Inverted - fullName: OpenTK.Mathematics.Matrix4d.Inverted +- uid: OpenTK.Mathematics.Matrix4d.Normalized* + commentId: Overload:OpenTK.Mathematics.Matrix4d.Normalized + href: OpenTK.Mathematics.Matrix4d.html#OpenTK_Mathematics_Matrix4d_Normalized + name: Normalized + nameWithType: Matrix4d.Normalized + fullName: OpenTK.Mathematics.Matrix4d.Normalized +- uid: OpenTK.Mathematics.Matrix4d.Row0 + commentId: F:OpenTK.Mathematics.Matrix4d.Row0 + href: OpenTK.Mathematics.Matrix4d.html#OpenTK_Mathematics_Matrix4d_Row0 + name: Row0 + nameWithType: Matrix4d.Row0 + fullName: OpenTK.Mathematics.Matrix4d.Row0 +- uid: OpenTK.Mathematics.Matrix4d.Row1 + commentId: F:OpenTK.Mathematics.Matrix4d.Row1 + href: OpenTK.Mathematics.Matrix4d.html#OpenTK_Mathematics_Matrix4d_Row1 + name: Row1 + nameWithType: Matrix4d.Row1 + fullName: OpenTK.Mathematics.Matrix4d.Row1 +- uid: OpenTK.Mathematics.Matrix4d.Row2 + commentId: F:OpenTK.Mathematics.Matrix4d.Row2 + href: OpenTK.Mathematics.Matrix4d.html#OpenTK_Mathematics_Matrix4d_Row2 + name: Row2 + nameWithType: Matrix4d.Row2 + fullName: OpenTK.Mathematics.Matrix4d.Row2 +- uid: OpenTK.Mathematics.Matrix4d.Row3 + commentId: F:OpenTK.Mathematics.Matrix4d.Row3 + href: OpenTK.Mathematics.Matrix4d.html#OpenTK_Mathematics_Matrix4d_Row3 + name: Row3 + nameWithType: Matrix4d.Row3 + fullName: OpenTK.Mathematics.Matrix4d.Row3 +- uid: OpenTK.Mathematics.Matrix4d.Swizzle* + commentId: Overload:OpenTK.Mathematics.Matrix4d.Swizzle + href: OpenTK.Mathematics.Matrix4d.html#OpenTK_Mathematics_Matrix4d_Swizzle_System_Int32_System_Int32_System_Int32_System_Int32_ + name: Swizzle + nameWithType: Matrix4d.Swizzle + fullName: OpenTK.Mathematics.Matrix4d.Swizzle +- uid: OpenTK.Mathematics.Matrix4d.Swizzled* + commentId: Overload:OpenTK.Mathematics.Matrix4d.Swizzled + href: OpenTK.Mathematics.Matrix4d.html#OpenTK_Mathematics_Matrix4d_Swizzled_System_Int32_System_Int32_System_Int32_System_Int32_ + name: Swizzled + nameWithType: Matrix4d.Swizzled + fullName: OpenTK.Mathematics.Matrix4d.Swizzled - uid: OpenTK.Mathematics.Matrix4d.ClearTranslation* commentId: Overload:OpenTK.Mathematics.Matrix4d.ClearTranslation href: OpenTK.Mathematics.Matrix4d.html#OpenTK_Mathematics_Matrix4d_ClearTranslation @@ -5025,6 +5321,12 @@ references: name: CreateFromAxisAngle nameWithType: Matrix4d.CreateFromAxisAngle fullName: OpenTK.Mathematics.Matrix4d.CreateFromAxisAngle +- uid: OpenTK.Mathematics.Matrix4d.CreateFromQuaternion* + commentId: Overload:OpenTK.Mathematics.Matrix4d.CreateFromQuaternion + href: OpenTK.Mathematics.Matrix4d.html#OpenTK_Mathematics_Matrix4d_CreateFromQuaternion_OpenTK_Mathematics_Quaterniond__OpenTK_Mathematics_Matrix4d__ + name: CreateFromQuaternion + nameWithType: Matrix4d.CreateFromQuaternion + fullName: OpenTK.Mathematics.Matrix4d.CreateFromQuaternion - uid: OpenTK.Mathematics.Matrix4d.CreateRotationX* commentId: Overload:OpenTK.Mathematics.Matrix4d.CreateRotationX href: OpenTK.Mathematics.Matrix4d.html#OpenTK_Mathematics_Matrix4d_CreateRotationX_System_Double_OpenTK_Mathematics_Matrix4d__ @@ -5049,6 +5351,24 @@ references: name: CreateTranslation nameWithType: Matrix4d.CreateTranslation fullName: OpenTK.Mathematics.Matrix4d.CreateTranslation +- uid: OpenTK.Mathematics.Matrix4d.CreateScale* + commentId: Overload:OpenTK.Mathematics.Matrix4d.CreateScale + href: OpenTK.Mathematics.Matrix4d.html#OpenTK_Mathematics_Matrix4d_CreateScale_System_Double_ + name: CreateScale + nameWithType: Matrix4d.CreateScale + fullName: OpenTK.Mathematics.Matrix4d.CreateScale +- uid: OpenTK.Mathematics.Vector3.Zyx + commentId: P:OpenTK.Mathematics.Vector3.Zyx + href: OpenTK.Mathematics.Vector3.html#OpenTK_Mathematics_Vector3_Zyx + name: Zyx + nameWithType: Vector3.Zyx + fullName: OpenTK.Mathematics.Vector3.Zyx +- uid: OpenTK.Mathematics.Matrix4d.CreateSwizzle* + commentId: Overload:OpenTK.Mathematics.Matrix4d.CreateSwizzle + href: OpenTK.Mathematics.Matrix4d.html#OpenTK_Mathematics_Matrix4d_CreateSwizzle_System_Int32_System_Int32_System_Int32_System_Int32_ + name: CreateSwizzle + nameWithType: Matrix4d.CreateSwizzle + fullName: OpenTK.Mathematics.Matrix4d.CreateSwizzle - uid: OpenTK.Mathematics.Matrix4d.CreateOrthographic* commentId: Overload:OpenTK.Mathematics.Matrix4d.CreateOrthographic href: OpenTK.Mathematics.Matrix4d.html#OpenTK_Mathematics_Matrix4d_CreateOrthographic_System_Double_System_Double_System_Double_System_Double_OpenTK_Mathematics_Matrix4d__ @@ -5080,12 +5400,6 @@ references: name: CreatePerspectiveOffCenter nameWithType: Matrix4d.CreatePerspectiveOffCenter fullName: OpenTK.Mathematics.Matrix4d.CreatePerspectiveOffCenter -- uid: OpenTK.Mathematics.Matrix4d.CreateFromQuaternion* - commentId: Overload:OpenTK.Mathematics.Matrix4d.CreateFromQuaternion - href: OpenTK.Mathematics.Matrix4d.html#OpenTK_Mathematics_Matrix4d_CreateFromQuaternion_OpenTK_Mathematics_Quaterniond__OpenTK_Mathematics_Matrix4d__ - name: CreateFromQuaternion - nameWithType: Matrix4d.CreateFromQuaternion - fullName: OpenTK.Mathematics.Matrix4d.CreateFromQuaternion - uid: OpenTK.Mathematics.Matrix4d.Scale* commentId: Overload:OpenTK.Mathematics.Matrix4d.Scale href: OpenTK.Mathematics.Matrix4d.html#OpenTK_Mathematics_Matrix4d_Scale_System_Double_ @@ -5159,6 +5473,13 @@ references: name: InvalidOperationException nameWithType: InvalidOperationException fullName: System.InvalidOperationException +- uid: System.IndexOutOfRangeException + commentId: T:System.IndexOutOfRangeException + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.indexoutofrangeexception + name: IndexOutOfRangeException + nameWithType: IndexOutOfRangeException + fullName: System.IndexOutOfRangeException - uid: OpenTK.Mathematics.Matrix4d.op_Multiply* commentId: Overload:OpenTK.Mathematics.Matrix4d.op_Multiply href: OpenTK.Mathematics.Matrix4d.html#OpenTK_Mathematics_Matrix4d_op_Multiply_OpenTK_Mathematics_Matrix4d_OpenTK_Mathematics_Matrix4d_ diff --git a/api/OpenTK.Mathematics.Matrix4x2.yml b/api/OpenTK.Mathematics.Matrix4x2.yml index e4964603..fa9b21b3 100644 --- a/api/OpenTK.Mathematics.Matrix4x2.yml +++ b/api/OpenTK.Mathematics.Matrix4x2.yml @@ -46,6 +46,10 @@ items: - OpenTK.Mathematics.Matrix4x2.Row3 - OpenTK.Mathematics.Matrix4x2.Subtract(OpenTK.Mathematics.Matrix4x2,OpenTK.Mathematics.Matrix4x2) - OpenTK.Mathematics.Matrix4x2.Subtract(OpenTK.Mathematics.Matrix4x2@,OpenTK.Mathematics.Matrix4x2@,OpenTK.Mathematics.Matrix4x2@) + - OpenTK.Mathematics.Matrix4x2.Swizzle(OpenTK.Mathematics.Matrix4x2,System.Int32,System.Int32,System.Int32,System.Int32) + - OpenTK.Mathematics.Matrix4x2.Swizzle(OpenTK.Mathematics.Matrix4x2@,System.Int32,System.Int32,System.Int32,System.Int32,OpenTK.Mathematics.Matrix4x2@) + - OpenTK.Mathematics.Matrix4x2.Swizzle(System.Int32,System.Int32,System.Int32,System.Int32) + - OpenTK.Mathematics.Matrix4x2.Swizzled(System.Int32,System.Int32,System.Int32,System.Int32) - OpenTK.Mathematics.Matrix4x2.ToString - OpenTK.Mathematics.Matrix4x2.ToString(System.IFormatProvider) - OpenTK.Mathematics.Matrix4x2.ToString(System.String) @@ -53,6 +57,7 @@ items: - OpenTK.Mathematics.Matrix4x2.Trace - OpenTK.Mathematics.Matrix4x2.Transpose(OpenTK.Mathematics.Matrix4x2) - OpenTK.Mathematics.Matrix4x2.Transpose(OpenTK.Mathematics.Matrix4x2@,OpenTK.Mathematics.Matrix2x4@) + - OpenTK.Mathematics.Matrix4x2.Transposed - OpenTK.Mathematics.Matrix4x2.Zero - OpenTK.Mathematics.Matrix4x2.op_Addition(OpenTK.Mathematics.Matrix4x2,OpenTK.Mathematics.Matrix4x2) - OpenTK.Mathematics.Matrix4x2.op_Equality(OpenTK.Mathematics.Matrix4x2,OpenTK.Mathematics.Matrix4x2) @@ -71,13 +76,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x2 type: Struct source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Matrix4x2 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x2.cs - startLine: 32 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x2.cs + startLine: 33 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -115,13 +116,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x2.Row0 type: Field source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Row0 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x2.cs - startLine: 39 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x2.cs + startLine: 40 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -144,13 +141,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x2.Row1 type: Field source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Row1 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x2.cs - startLine: 44 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x2.cs + startLine: 45 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -173,13 +166,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x2.Row2 type: Field source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Row2 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x2.cs - startLine: 49 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x2.cs + startLine: 50 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -202,13 +191,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x2.Row3 type: Field source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Row3 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x2.cs - startLine: 54 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x2.cs + startLine: 55 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -231,13 +216,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x2.Zero type: Field source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Zero - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x2.cs - startLine: 59 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x2.cs + startLine: 60 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -260,13 +241,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x2.Matrix4x2(OpenTK.Mathematics.Vector2, OpenTK.Mathematics.Vector2, OpenTK.Mathematics.Vector2, OpenTK.Mathematics.Vector2) type: Constructor source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x2.cs - startLine: 68 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x2.cs + startLine: 69 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -304,13 +281,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x2.Matrix4x2(float, float, float, float, float, float, float, float) type: Constructor source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x2.cs - startLine: 87 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x2.cs + startLine: 88 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -360,20 +333,16 @@ items: fullName: OpenTK.Mathematics.Matrix4x2.Column0 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Column0 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x2.cs - startLine: 105 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x2.cs + startLine: 106 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the first column of this matrix. example: [] syntax: - content: public Vector4 Column0 { get; set; } + content: public Vector4 Column0 { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector4 @@ -391,20 +360,16 @@ items: fullName: OpenTK.Mathematics.Matrix4x2.Column1 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Column1 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x2.cs - startLine: 120 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x2.cs + startLine: 121 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the second column of this matrix. example: [] syntax: - content: public Vector4 Column1 { get; set; } + content: public Vector4 Column1 { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector4 @@ -422,20 +387,16 @@ items: fullName: OpenTK.Mathematics.Matrix4x2.M11 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M11 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x2.cs - startLine: 135 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x2.cs + startLine: 136 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 1, column 1 of this instance. example: [] syntax: - content: public float M11 { get; set; } + content: public float M11 { readonly get; set; } parameters: [] return: type: System.Single @@ -453,20 +414,16 @@ items: fullName: OpenTK.Mathematics.Matrix4x2.M12 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M12 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x2.cs - startLine: 144 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x2.cs + startLine: 145 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 1, column 2 of this instance. example: [] syntax: - content: public float M12 { get; set; } + content: public float M12 { readonly get; set; } parameters: [] return: type: System.Single @@ -484,20 +441,16 @@ items: fullName: OpenTK.Mathematics.Matrix4x2.M21 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M21 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x2.cs - startLine: 153 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x2.cs + startLine: 154 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 2, column 1 of this instance. example: [] syntax: - content: public float M21 { get; set; } + content: public float M21 { readonly get; set; } parameters: [] return: type: System.Single @@ -515,20 +468,16 @@ items: fullName: OpenTK.Mathematics.Matrix4x2.M22 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M22 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x2.cs - startLine: 162 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x2.cs + startLine: 163 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 2, column 2 of this instance. example: [] syntax: - content: public float M22 { get; set; } + content: public float M22 { readonly get; set; } parameters: [] return: type: System.Single @@ -546,20 +495,16 @@ items: fullName: OpenTK.Mathematics.Matrix4x2.M31 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M31 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x2.cs - startLine: 171 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x2.cs + startLine: 172 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 3, column 1 of this instance. example: [] syntax: - content: public float M31 { get; set; } + content: public float M31 { readonly get; set; } parameters: [] return: type: System.Single @@ -577,20 +522,16 @@ items: fullName: OpenTK.Mathematics.Matrix4x2.M32 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M32 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x2.cs - startLine: 180 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x2.cs + startLine: 181 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 3, column 2 of this instance. example: [] syntax: - content: public float M32 { get; set; } + content: public float M32 { readonly get; set; } parameters: [] return: type: System.Single @@ -608,20 +549,16 @@ items: fullName: OpenTK.Mathematics.Matrix4x2.M41 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M41 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x2.cs - startLine: 189 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x2.cs + startLine: 190 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 4, column 1 of this instance. example: [] syntax: - content: public float M41 { get; set; } + content: public float M41 { readonly get; set; } parameters: [] return: type: System.Single @@ -639,20 +576,16 @@ items: fullName: OpenTK.Mathematics.Matrix4x2.M42 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M42 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x2.cs - startLine: 198 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x2.cs + startLine: 199 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 4, column 2 of this instance. example: [] syntax: - content: public float M42 { get; set; } + content: public float M42 { readonly get; set; } parameters: [] return: type: System.Single @@ -670,20 +603,16 @@ items: fullName: OpenTK.Mathematics.Matrix4x2.Diagonal type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Diagonal - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x2.cs - startLine: 207 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x2.cs + startLine: 208 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the values along the main diagonal of the matrix. example: [] syntax: - content: public Vector2 Diagonal { get; set; } + content: public Vector2 Diagonal { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector2 @@ -701,20 +630,16 @@ items: fullName: OpenTK.Mathematics.Matrix4x2.Trace type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Trace - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x2.cs - startLine: 220 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x2.cs + startLine: 221 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets the trace of the matrix, the sum of the values along the diagonal. example: [] syntax: - content: public float Trace { get; } + content: public readonly float Trace { get; } parameters: [] return: type: System.Single @@ -732,20 +657,16 @@ items: fullName: OpenTK.Mathematics.Matrix4x2.this[int, int] type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: this[] - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x2.cs - startLine: 228 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x2.cs + startLine: 229 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at a specified row and column. example: [] syntax: - content: public float this[int rowIndex, int columnIndex] { get; set; } + content: public float this[int rowIndex, int columnIndex] { readonly get; set; } parameters: - id: rowIndex type: System.Int32 @@ -761,6 +682,116 @@ items: nameWithType.vb: Matrix4x2.this[](Integer, Integer) fullName.vb: OpenTK.Mathematics.Matrix4x2.this[](Integer, Integer) name.vb: this[](Integer, Integer) +- uid: OpenTK.Mathematics.Matrix4x2.Transposed + commentId: M:OpenTK.Mathematics.Matrix4x2.Transposed + id: Transposed + parent: OpenTK.Mathematics.Matrix4x2 + langs: + - csharp + - vb + name: Transposed() + nameWithType: Matrix4x2.Transposed() + fullName: OpenTK.Mathematics.Matrix4x2.Transposed() + type: Method + source: + id: Transposed + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x2.cs + startLine: 287 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: Returns a transposed copy of this instance. + example: [] + syntax: + content: public readonly Matrix2x4 Transposed() + return: + type: OpenTK.Mathematics.Matrix2x4 + description: The transposed copy. + content.vb: Public Function Transposed() As Matrix2x4 + overload: OpenTK.Mathematics.Matrix4x2.Transposed* +- uid: OpenTK.Mathematics.Matrix4x2.Swizzle(System.Int32,System.Int32,System.Int32,System.Int32) + commentId: M:OpenTK.Mathematics.Matrix4x2.Swizzle(System.Int32,System.Int32,System.Int32,System.Int32) + id: Swizzle(System.Int32,System.Int32,System.Int32,System.Int32) + parent: OpenTK.Mathematics.Matrix4x2 + langs: + - csharp + - vb + name: Swizzle(int, int, int, int) + nameWithType: Matrix4x2.Swizzle(int, int, int, int) + fullName: OpenTK.Mathematics.Matrix4x2.Swizzle(int, int, int, int) + type: Method + source: + id: Swizzle + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x2.cs + startLine: 299 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: Swizzles this instance. Swiches places of the rows of the matrix. + example: [] + syntax: + content: public void Swizzle(int rowForRow0, int rowForRow1, int rowForRow2, int rowForRow3) + parameters: + - id: rowForRow0 + type: System.Int32 + description: Which row to place in . + - id: rowForRow1 + type: System.Int32 + description: Which row to place in . + - id: rowForRow2 + type: System.Int32 + description: Which row to place in . + - id: rowForRow3 + type: System.Int32 + description: Which row to place in . + content.vb: Public Sub Swizzle(rowForRow0 As Integer, rowForRow1 As Integer, rowForRow2 As Integer, rowForRow3 As Integer) + overload: OpenTK.Mathematics.Matrix4x2.Swizzle* + nameWithType.vb: Matrix4x2.Swizzle(Integer, Integer, Integer, Integer) + fullName.vb: OpenTK.Mathematics.Matrix4x2.Swizzle(Integer, Integer, Integer, Integer) + name.vb: Swizzle(Integer, Integer, Integer, Integer) +- uid: OpenTK.Mathematics.Matrix4x2.Swizzled(System.Int32,System.Int32,System.Int32,System.Int32) + commentId: M:OpenTK.Mathematics.Matrix4x2.Swizzled(System.Int32,System.Int32,System.Int32,System.Int32) + id: Swizzled(System.Int32,System.Int32,System.Int32,System.Int32) + parent: OpenTK.Mathematics.Matrix4x2 + langs: + - csharp + - vb + name: Swizzled(int, int, int, int) + nameWithType: Matrix4x2.Swizzled(int, int, int, int) + fullName: OpenTK.Mathematics.Matrix4x2.Swizzled(int, int, int, int) + type: Method + source: + id: Swizzled + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x2.cs + startLine: 312 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: Returns a swizzled copy of this instance. + example: [] + syntax: + content: public readonly Matrix4x2 Swizzled(int rowForRow0, int rowForRow1, int rowForRow2, int rowForRow3) + parameters: + - id: rowForRow0 + type: System.Int32 + description: Which row to place in . + - id: rowForRow1 + type: System.Int32 + description: Which row to place in . + - id: rowForRow2 + type: System.Int32 + description: Which row to place in . + - id: rowForRow3 + type: System.Int32 + description: Which row to place in . + return: + type: OpenTK.Mathematics.Matrix4x2 + description: The swizzled copy. + content.vb: Public Function Swizzled(rowForRow0 As Integer, rowForRow1 As Integer, rowForRow2 As Integer, rowForRow3 As Integer) As Matrix4x2 + overload: OpenTK.Mathematics.Matrix4x2.Swizzled* + nameWithType.vb: Matrix4x2.Swizzled(Integer, Integer, Integer, Integer) + fullName.vb: OpenTK.Mathematics.Matrix4x2.Swizzled(Integer, Integer, Integer, Integer) + name.vb: Swizzled(Integer, Integer, Integer, Integer) - uid: OpenTK.Mathematics.Matrix4x2.CreateRotation(System.Single,OpenTK.Mathematics.Matrix4x2@) commentId: M:OpenTK.Mathematics.Matrix4x2.CreateRotation(System.Single,OpenTK.Mathematics.Matrix4x2@) id: CreateRotation(System.Single,OpenTK.Mathematics.Matrix4x2@) @@ -773,13 +804,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x2.CreateRotation(float, out OpenTK.Mathematics.Matrix4x2) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateRotation - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x2.cs - startLine: 287 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x2.cs + startLine: 324 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -811,13 +838,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x2.CreateRotation(float) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateRotation - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x2.cs - startLine: 307 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x2.cs + startLine: 344 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -859,13 +882,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x2.CreateScale(float, out OpenTK.Mathematics.Matrix4x2) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateScale - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x2.cs - startLine: 319 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x2.cs + startLine: 356 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -897,13 +916,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x2.CreateScale(float) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateScale - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x2.cs - startLine: 336 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x2.cs + startLine: 373 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -945,13 +960,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x2.CreateScale(OpenTK.Mathematics.Vector2, out OpenTK.Mathematics.Matrix4x2) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateScale - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x2.cs - startLine: 348 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x2.cs + startLine: 385 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -983,13 +994,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x2.CreateScale(OpenTK.Mathematics.Vector2) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateScale - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x2.cs - startLine: 365 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x2.cs + startLine: 402 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1028,13 +1035,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x2.CreateScale(float, float, out OpenTK.Mathematics.Matrix4x2) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateScale - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x2.cs - startLine: 378 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x2.cs + startLine: 415 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1069,13 +1072,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x2.CreateScale(float, float) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateScale - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x2.cs - startLine: 396 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x2.cs + startLine: 433 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1120,13 +1119,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x2.Mult(in OpenTK.Mathematics.Matrix4x2, float, out OpenTK.Mathematics.Matrix4x2) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Mult - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x2.cs - startLine: 409 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x2.cs + startLine: 446 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1161,13 +1156,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x2.Mult(OpenTK.Mathematics.Matrix4x2, float) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Mult - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x2.cs - startLine: 427 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x2.cs + startLine: 464 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1212,13 +1203,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x2.Mult(in OpenTK.Mathematics.Matrix4x2, in OpenTK.Mathematics.Matrix2, out OpenTK.Mathematics.Matrix4x2) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Mult - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x2.cs - startLine: 440 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x2.cs + startLine: 477 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1253,13 +1240,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x2.Mult(OpenTK.Mathematics.Matrix4x2, OpenTK.Mathematics.Matrix2) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Mult - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x2.cs - startLine: 471 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x2.cs + startLine: 508 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1301,13 +1284,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x2.Mult(in OpenTK.Mathematics.Matrix4x2, in OpenTK.Mathematics.Matrix2x3, out OpenTK.Mathematics.Matrix4x3) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Mult - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x2.cs - startLine: 484 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x2.cs + startLine: 521 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1342,13 +1321,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x2.Mult(OpenTK.Mathematics.Matrix4x2, OpenTK.Mathematics.Matrix2x3) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Mult - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x2.cs - startLine: 521 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x2.cs + startLine: 558 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1390,13 +1365,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x2.Mult(in OpenTK.Mathematics.Matrix4x2, in OpenTK.Mathematics.Matrix2x4, out OpenTK.Mathematics.Matrix4) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Mult - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x2.cs - startLine: 534 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x2.cs + startLine: 571 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1431,13 +1402,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x2.Mult(OpenTK.Mathematics.Matrix4x2, OpenTK.Mathematics.Matrix2x4) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Mult - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x2.cs - startLine: 577 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x2.cs + startLine: 614 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1479,13 +1446,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x2.Add(in OpenTK.Mathematics.Matrix4x2, in OpenTK.Mathematics.Matrix4x2, out OpenTK.Mathematics.Matrix4x2) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Add - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x2.cs - startLine: 590 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x2.cs + startLine: 627 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1520,13 +1483,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x2.Add(OpenTK.Mathematics.Matrix4x2, OpenTK.Mathematics.Matrix4x2) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Add - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x2.cs - startLine: 608 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x2.cs + startLine: 645 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1568,13 +1527,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x2.Subtract(in OpenTK.Mathematics.Matrix4x2, in OpenTK.Mathematics.Matrix4x2, out OpenTK.Mathematics.Matrix4x2) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Subtract - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x2.cs - startLine: 621 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x2.cs + startLine: 658 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1609,13 +1564,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x2.Subtract(OpenTK.Mathematics.Matrix4x2, OpenTK.Mathematics.Matrix4x2) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Subtract - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x2.cs - startLine: 639 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x2.cs + startLine: 676 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1657,13 +1608,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x2.Transpose(in OpenTK.Mathematics.Matrix4x2, out OpenTK.Mathematics.Matrix2x4) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Transpose - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x2.cs - startLine: 651 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x2.cs + startLine: 688 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1695,13 +1642,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x2.Transpose(OpenTK.Mathematics.Matrix4x2) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Transpose - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x2.cs - startLine: 668 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x2.cs + startLine: 705 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1728,6 +1671,106 @@ items: - type: System.Diagnostics.Contracts.PureAttribute ctor: System.Diagnostics.Contracts.PureAttribute.#ctor arguments: [] +- uid: OpenTK.Mathematics.Matrix4x2.Swizzle(OpenTK.Mathematics.Matrix4x2,System.Int32,System.Int32,System.Int32,System.Int32) + commentId: M:OpenTK.Mathematics.Matrix4x2.Swizzle(OpenTK.Mathematics.Matrix4x2,System.Int32,System.Int32,System.Int32,System.Int32) + id: Swizzle(OpenTK.Mathematics.Matrix4x2,System.Int32,System.Int32,System.Int32,System.Int32) + parent: OpenTK.Mathematics.Matrix4x2 + langs: + - csharp + - vb + name: Swizzle(Matrix4x2, int, int, int, int) + nameWithType: Matrix4x2.Swizzle(Matrix4x2, int, int, int, int) + fullName: OpenTK.Mathematics.Matrix4x2.Swizzle(OpenTK.Mathematics.Matrix4x2, int, int, int, int) + type: Method + source: + id: Swizzle + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x2.cs + startLine: 722 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: Swizzles a matrix, i.e. switches rows of the matrix. + example: [] + syntax: + content: public static Matrix4x2 Swizzle(Matrix4x2 mat, int rowForRow0, int rowForRow1, int rowForRow2, int rowForRow3) + parameters: + - id: mat + type: OpenTK.Mathematics.Matrix4x2 + description: The matrix to swizzle. + - id: rowForRow0 + type: System.Int32 + description: Which row to place in . + - id: rowForRow1 + type: System.Int32 + description: Which row to place in . + - id: rowForRow2 + type: System.Int32 + description: Which row to place in . + - id: rowForRow3 + type: System.Int32 + description: Which row to place in . + return: + type: OpenTK.Mathematics.Matrix4x2 + description: The swizzled matrix. + content.vb: Public Shared Function Swizzle(mat As Matrix4x2, rowForRow0 As Integer, rowForRow1 As Integer, rowForRow2 As Integer, rowForRow3 As Integer) As Matrix4x2 + overload: OpenTK.Mathematics.Matrix4x2.Swizzle* + exceptions: + - type: System.IndexOutOfRangeException + commentId: T:System.IndexOutOfRangeException + description: If any of the rows are outside of the range [0, 3]. + nameWithType.vb: Matrix4x2.Swizzle(Matrix4x2, Integer, Integer, Integer, Integer) + fullName.vb: OpenTK.Mathematics.Matrix4x2.Swizzle(OpenTK.Mathematics.Matrix4x2, Integer, Integer, Integer, Integer) + name.vb: Swizzle(Matrix4x2, Integer, Integer, Integer, Integer) +- uid: OpenTK.Mathematics.Matrix4x2.Swizzle(OpenTK.Mathematics.Matrix4x2@,System.Int32,System.Int32,System.Int32,System.Int32,OpenTK.Mathematics.Matrix4x2@) + commentId: M:OpenTK.Mathematics.Matrix4x2.Swizzle(OpenTK.Mathematics.Matrix4x2@,System.Int32,System.Int32,System.Int32,System.Int32,OpenTK.Mathematics.Matrix4x2@) + id: Swizzle(OpenTK.Mathematics.Matrix4x2@,System.Int32,System.Int32,System.Int32,System.Int32,OpenTK.Mathematics.Matrix4x2@) + parent: OpenTK.Mathematics.Matrix4x2 + langs: + - csharp + - vb + name: Swizzle(in Matrix4x2, int, int, int, int, out Matrix4x2) + nameWithType: Matrix4x2.Swizzle(in Matrix4x2, int, int, int, int, out Matrix4x2) + fullName: OpenTK.Mathematics.Matrix4x2.Swizzle(in OpenTK.Mathematics.Matrix4x2, int, int, int, int, out OpenTK.Mathematics.Matrix4x2) + type: Method + source: + id: Swizzle + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x2.cs + startLine: 738 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: Swizzles a matrix, i.e. switches rows of the matrix. + example: [] + syntax: + content: public static void Swizzle(in Matrix4x2 mat, int rowForRow0, int rowForRow1, int rowForRow2, int rowForRow3, out Matrix4x2 result) + parameters: + - id: mat + type: OpenTK.Mathematics.Matrix4x2 + description: The matrix to swizzle. + - id: rowForRow0 + type: System.Int32 + description: Which row to place in . + - id: rowForRow1 + type: System.Int32 + description: Which row to place in . + - id: rowForRow2 + type: System.Int32 + description: Which row to place in . + - id: rowForRow3 + type: System.Int32 + description: Which row to place in . + - id: result + type: OpenTK.Mathematics.Matrix4x2 + description: The swizzled matrix. + content.vb: Public Shared Sub Swizzle(mat As Matrix4x2, rowForRow0 As Integer, rowForRow1 As Integer, rowForRow2 As Integer, rowForRow3 As Integer, result As Matrix4x2) + overload: OpenTK.Mathematics.Matrix4x2.Swizzle* + exceptions: + - type: System.IndexOutOfRangeException + commentId: T:System.IndexOutOfRangeException + description: If any of the rows are outside of the range [0, 3]. + nameWithType.vb: Matrix4x2.Swizzle(Matrix4x2, Integer, Integer, Integer, Integer, Matrix4x2) + fullName.vb: OpenTK.Mathematics.Matrix4x2.Swizzle(OpenTK.Mathematics.Matrix4x2, Integer, Integer, Integer, Integer, OpenTK.Mathematics.Matrix4x2) + name.vb: Swizzle(Matrix4x2, Integer, Integer, Integer, Integer, Matrix4x2) - uid: OpenTK.Mathematics.Matrix4x2.op_Multiply(System.Single,OpenTK.Mathematics.Matrix4x2) commentId: M:OpenTK.Mathematics.Matrix4x2.op_Multiply(System.Single,OpenTK.Mathematics.Matrix4x2) id: op_Multiply(System.Single,OpenTK.Mathematics.Matrix4x2) @@ -1740,13 +1783,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x2.operator *(float, OpenTK.Mathematics.Matrix4x2) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Multiply - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x2.cs - startLine: 681 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x2.cs + startLine: 783 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1791,13 +1830,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x2.operator *(OpenTK.Mathematics.Matrix4x2, float) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Multiply - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x2.cs - startLine: 693 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x2.cs + startLine: 795 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1842,13 +1877,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x2.operator *(OpenTK.Mathematics.Matrix4x2, OpenTK.Mathematics.Matrix2) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Multiply - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x2.cs - startLine: 705 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x2.cs + startLine: 807 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1893,13 +1924,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x2.operator *(OpenTK.Mathematics.Matrix4x2, OpenTK.Mathematics.Matrix2x3) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Multiply - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x2.cs - startLine: 717 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x2.cs + startLine: 819 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1944,13 +1971,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x2.operator *(OpenTK.Mathematics.Matrix4x2, OpenTK.Mathematics.Matrix2x4) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Multiply - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x2.cs - startLine: 729 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x2.cs + startLine: 831 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1995,13 +2018,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x2.operator +(OpenTK.Mathematics.Matrix4x2, OpenTK.Mathematics.Matrix4x2) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Addition - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x2.cs - startLine: 741 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x2.cs + startLine: 843 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2046,13 +2065,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x2.operator -(OpenTK.Mathematics.Matrix4x2, OpenTK.Mathematics.Matrix4x2) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Subtraction - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x2.cs - startLine: 753 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x2.cs + startLine: 855 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2097,13 +2112,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x2.operator ==(OpenTK.Mathematics.Matrix4x2, OpenTK.Mathematics.Matrix4x2) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Equality - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x2.cs - startLine: 765 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x2.cs + startLine: 867 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2148,13 +2159,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x2.operator !=(OpenTK.Mathematics.Matrix4x2, OpenTK.Mathematics.Matrix4x2) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Inequality - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x2.cs - startLine: 777 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x2.cs + startLine: 879 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2199,20 +2206,16 @@ items: fullName: OpenTK.Mathematics.Matrix4x2.ToString() type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x2.cs - startLine: 787 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x2.cs + startLine: 889 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Returns a System.String that represents the current Matrix3d. example: [] syntax: - content: public override string ToString() + content: public override readonly string ToString() return: type: System.String description: The string representation of the matrix. @@ -2231,20 +2234,16 @@ items: fullName: OpenTK.Mathematics.Matrix4x2.ToString(string) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x2.cs - startLine: 793 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x2.cs + startLine: 895 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Formats the value of the current instance using the specified format. example: [] syntax: - content: public string ToString(string format) + content: public readonly string ToString(string format) parameters: - id: format type: System.String @@ -2274,20 +2273,16 @@ items: fullName: OpenTK.Mathematics.Matrix4x2.ToString(System.IFormatProvider) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x2.cs - startLine: 799 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x2.cs + startLine: 901 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Formats the value of the current instance using the specified format. example: [] syntax: - content: public string ToString(IFormatProvider formatProvider) + content: public readonly string ToString(IFormatProvider formatProvider) parameters: - id: formatProvider type: System.IFormatProvider @@ -2314,20 +2309,16 @@ items: fullName: OpenTK.Mathematics.Matrix4x2.ToString(string, System.IFormatProvider) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x2.cs - startLine: 805 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x2.cs + startLine: 907 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Formats the value of the current instance using the specified format. example: [] syntax: - content: public string ToString(string format, IFormatProvider formatProvider) + content: public readonly string ToString(string format, IFormatProvider formatProvider) parameters: - id: format type: System.String @@ -2367,20 +2358,16 @@ items: fullName: OpenTK.Mathematics.Matrix4x2.GetHashCode() type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetHashCode - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x2.cs - startLine: 818 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x2.cs + startLine: 920 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Returns the hashcode for this instance. example: [] syntax: - content: public override int GetHashCode() + content: public override readonly int GetHashCode() return: type: System.Int32 description: A System.Int32 containing the unique hashcode for this instance. @@ -2399,13 +2386,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x2.Equals(object) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Equals - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x2.cs - startLine: 828 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x2.cs + startLine: 930 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2415,7 +2398,7 @@ items: content: >- [Pure] - public override bool Equals(object obj) + public override readonly bool Equals(object obj) parameters: - id: obj type: System.Object @@ -2448,13 +2431,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x2.Equals(OpenTK.Mathematics.Matrix4x2) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Equals - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x2.cs - startLine: 839 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x2.cs + startLine: 941 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2464,7 +2443,7 @@ items: content: >- [Pure] - public bool Equals(Matrix4x2 other) + public readonly bool Equals(Matrix4x2 other) parameters: - id: other type: OpenTK.Mathematics.Matrix4x2 @@ -2840,6 +2819,55 @@ references: nameWithType.vb: Integer fullName.vb: Integer name.vb: Integer +- uid: OpenTK.Mathematics.Matrix4x2.Transposed* + commentId: Overload:OpenTK.Mathematics.Matrix4x2.Transposed + href: OpenTK.Mathematics.Matrix4x2.html#OpenTK_Mathematics_Matrix4x2_Transposed + name: Transposed + nameWithType: Matrix4x2.Transposed + fullName: OpenTK.Mathematics.Matrix4x2.Transposed +- uid: OpenTK.Mathematics.Matrix2x4 + commentId: T:OpenTK.Mathematics.Matrix2x4 + parent: OpenTK.Mathematics + href: OpenTK.Mathematics.Matrix2x4.html + name: Matrix2x4 + nameWithType: Matrix2x4 + fullName: OpenTK.Mathematics.Matrix2x4 +- uid: OpenTK.Mathematics.Matrix4x2.Row0 + commentId: F:OpenTK.Mathematics.Matrix4x2.Row0 + href: OpenTK.Mathematics.Matrix4x2.html#OpenTK_Mathematics_Matrix4x2_Row0 + name: Row0 + nameWithType: Matrix4x2.Row0 + fullName: OpenTK.Mathematics.Matrix4x2.Row0 +- uid: OpenTK.Mathematics.Matrix4x2.Row1 + commentId: F:OpenTK.Mathematics.Matrix4x2.Row1 + href: OpenTK.Mathematics.Matrix4x2.html#OpenTK_Mathematics_Matrix4x2_Row1 + name: Row1 + nameWithType: Matrix4x2.Row1 + fullName: OpenTK.Mathematics.Matrix4x2.Row1 +- uid: OpenTK.Mathematics.Matrix4x2.Row2 + commentId: F:OpenTK.Mathematics.Matrix4x2.Row2 + href: OpenTK.Mathematics.Matrix4x2.html#OpenTK_Mathematics_Matrix4x2_Row2 + name: Row2 + nameWithType: Matrix4x2.Row2 + fullName: OpenTK.Mathematics.Matrix4x2.Row2 +- uid: OpenTK.Mathematics.Matrix4x2.Row3 + commentId: F:OpenTK.Mathematics.Matrix4x2.Row3 + href: OpenTK.Mathematics.Matrix4x2.html#OpenTK_Mathematics_Matrix4x2_Row3 + name: Row3 + nameWithType: Matrix4x2.Row3 + fullName: OpenTK.Mathematics.Matrix4x2.Row3 +- uid: OpenTK.Mathematics.Matrix4x2.Swizzle* + commentId: Overload:OpenTK.Mathematics.Matrix4x2.Swizzle + href: OpenTK.Mathematics.Matrix4x2.html#OpenTK_Mathematics_Matrix4x2_Swizzle_System_Int32_System_Int32_System_Int32_System_Int32_ + name: Swizzle + nameWithType: Matrix4x2.Swizzle + fullName: OpenTK.Mathematics.Matrix4x2.Swizzle +- uid: OpenTK.Mathematics.Matrix4x2.Swizzled* + commentId: Overload:OpenTK.Mathematics.Matrix4x2.Swizzled + href: OpenTK.Mathematics.Matrix4x2.html#OpenTK_Mathematics_Matrix4x2_Swizzled_System_Int32_System_Int32_System_Int32_System_Int32_ + name: Swizzled + nameWithType: Matrix4x2.Swizzled + fullName: OpenTK.Mathematics.Matrix4x2.Swizzled - uid: OpenTK.Mathematics.Matrix4x2.CreateRotation* commentId: Overload:OpenTK.Mathematics.Matrix4x2.CreateRotation href: OpenTK.Mathematics.Matrix4x2.html#OpenTK_Mathematics_Matrix4x2_CreateRotation_System_Single_OpenTK_Mathematics_Matrix4x2__ @@ -2879,13 +2907,6 @@ references: name: Matrix4x3 nameWithType: Matrix4x3 fullName: OpenTK.Mathematics.Matrix4x3 -- uid: OpenTK.Mathematics.Matrix2x4 - commentId: T:OpenTK.Mathematics.Matrix2x4 - parent: OpenTK.Mathematics - href: OpenTK.Mathematics.Matrix2x4.html - name: Matrix2x4 - nameWithType: Matrix2x4 - fullName: OpenTK.Mathematics.Matrix2x4 - uid: OpenTK.Mathematics.Matrix4 commentId: T:OpenTK.Mathematics.Matrix4 parent: OpenTK.Mathematics @@ -2911,6 +2932,13 @@ references: name: Transpose nameWithType: Matrix4x2.Transpose fullName: OpenTK.Mathematics.Matrix4x2.Transpose +- uid: System.IndexOutOfRangeException + commentId: T:System.IndexOutOfRangeException + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.indexoutofrangeexception + name: IndexOutOfRangeException + nameWithType: IndexOutOfRangeException + fullName: System.IndexOutOfRangeException - uid: OpenTK.Mathematics.Matrix4x2.op_Multiply* commentId: Overload:OpenTK.Mathematics.Matrix4x2.op_Multiply href: OpenTK.Mathematics.Matrix4x2.html#OpenTK_Mathematics_Matrix4x2_op_Multiply_System_Single_OpenTK_Mathematics_Matrix4x2_ diff --git a/api/OpenTK.Mathematics.Matrix4x2d.yml b/api/OpenTK.Mathematics.Matrix4x2d.yml index 84beb468..0020a178 100644 --- a/api/OpenTK.Mathematics.Matrix4x2d.yml +++ b/api/OpenTK.Mathematics.Matrix4x2d.yml @@ -46,6 +46,10 @@ items: - OpenTK.Mathematics.Matrix4x2d.Row3 - OpenTK.Mathematics.Matrix4x2d.Subtract(OpenTK.Mathematics.Matrix4x2d,OpenTK.Mathematics.Matrix4x2d) - OpenTK.Mathematics.Matrix4x2d.Subtract(OpenTK.Mathematics.Matrix4x2d@,OpenTK.Mathematics.Matrix4x2d@,OpenTK.Mathematics.Matrix4x2d@) + - OpenTK.Mathematics.Matrix4x2d.Swizzle(OpenTK.Mathematics.Matrix4x2d,System.Int32,System.Int32,System.Int32,System.Int32) + - OpenTK.Mathematics.Matrix4x2d.Swizzle(OpenTK.Mathematics.Matrix4x2d@,System.Int32,System.Int32,System.Int32,System.Int32,OpenTK.Mathematics.Matrix4x2d@) + - OpenTK.Mathematics.Matrix4x2d.Swizzle(System.Int32,System.Int32,System.Int32,System.Int32) + - OpenTK.Mathematics.Matrix4x2d.Swizzled(System.Int32,System.Int32,System.Int32,System.Int32) - OpenTK.Mathematics.Matrix4x2d.ToString - OpenTK.Mathematics.Matrix4x2d.ToString(System.IFormatProvider) - OpenTK.Mathematics.Matrix4x2d.ToString(System.String) @@ -53,6 +57,7 @@ items: - OpenTK.Mathematics.Matrix4x2d.Trace - OpenTK.Mathematics.Matrix4x2d.Transpose(OpenTK.Mathematics.Matrix4x2d) - OpenTK.Mathematics.Matrix4x2d.Transpose(OpenTK.Mathematics.Matrix4x2d@,OpenTK.Mathematics.Matrix2x4d@) + - OpenTK.Mathematics.Matrix4x2d.Transposed - OpenTK.Mathematics.Matrix4x2d.Zero - OpenTK.Mathematics.Matrix4x2d.op_Addition(OpenTK.Mathematics.Matrix4x2d,OpenTK.Mathematics.Matrix4x2d) - OpenTK.Mathematics.Matrix4x2d.op_Equality(OpenTK.Mathematics.Matrix4x2d,OpenTK.Mathematics.Matrix4x2d) @@ -71,13 +76,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x2d type: Struct source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Matrix4x2d - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x2d.cs - startLine: 32 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x2d.cs + startLine: 33 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -115,13 +116,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x2d.Row0 type: Field source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Row0 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x2d.cs - startLine: 39 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x2d.cs + startLine: 40 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -144,13 +141,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x2d.Row1 type: Field source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Row1 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x2d.cs - startLine: 44 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x2d.cs + startLine: 45 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -173,13 +166,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x2d.Row2 type: Field source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Row2 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x2d.cs - startLine: 49 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x2d.cs + startLine: 50 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -202,13 +191,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x2d.Row3 type: Field source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Row3 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x2d.cs - startLine: 54 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x2d.cs + startLine: 55 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -231,13 +216,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x2d.Zero type: Field source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Zero - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x2d.cs - startLine: 59 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x2d.cs + startLine: 60 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -260,13 +241,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x2d.Matrix4x2d(OpenTK.Mathematics.Vector2d, OpenTK.Mathematics.Vector2d, OpenTK.Mathematics.Vector2d, OpenTK.Mathematics.Vector2d) type: Constructor source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x2d.cs - startLine: 74 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x2d.cs + startLine: 69 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -304,13 +281,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x2d.Matrix4x2d(double, double, double, double, double, double, double, double) type: Constructor source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x2d.cs - startLine: 93 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x2d.cs + startLine: 88 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -360,20 +333,16 @@ items: fullName: OpenTK.Mathematics.Matrix4x2d.Column0 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Column0 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x2d.cs - startLine: 111 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x2d.cs + startLine: 106 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the first column of this matrix. example: [] syntax: - content: public Vector4d Column0 { get; set; } + content: public Vector4d Column0 { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector4d @@ -391,20 +360,16 @@ items: fullName: OpenTK.Mathematics.Matrix4x2d.Column1 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Column1 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x2d.cs - startLine: 126 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x2d.cs + startLine: 121 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the second column of this matrix. example: [] syntax: - content: public Vector4d Column1 { get; set; } + content: public Vector4d Column1 { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector4d @@ -422,20 +387,16 @@ items: fullName: OpenTK.Mathematics.Matrix4x2d.M11 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M11 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x2d.cs - startLine: 141 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x2d.cs + startLine: 136 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 1, column 1 of this instance. example: [] syntax: - content: public double M11 { get; set; } + content: public double M11 { readonly get; set; } parameters: [] return: type: System.Double @@ -453,20 +414,16 @@ items: fullName: OpenTK.Mathematics.Matrix4x2d.M12 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M12 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x2d.cs - startLine: 150 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x2d.cs + startLine: 145 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 1, column 2 of this instance. example: [] syntax: - content: public double M12 { get; set; } + content: public double M12 { readonly get; set; } parameters: [] return: type: System.Double @@ -484,20 +441,16 @@ items: fullName: OpenTK.Mathematics.Matrix4x2d.M21 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M21 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x2d.cs - startLine: 159 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x2d.cs + startLine: 154 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 2, column 1 of this instance. example: [] syntax: - content: public double M21 { get; set; } + content: public double M21 { readonly get; set; } parameters: [] return: type: System.Double @@ -515,20 +468,16 @@ items: fullName: OpenTK.Mathematics.Matrix4x2d.M22 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M22 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x2d.cs - startLine: 168 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x2d.cs + startLine: 163 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 2, column 2 of this instance. example: [] syntax: - content: public double M22 { get; set; } + content: public double M22 { readonly get; set; } parameters: [] return: type: System.Double @@ -546,20 +495,16 @@ items: fullName: OpenTK.Mathematics.Matrix4x2d.M31 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M31 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x2d.cs - startLine: 177 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x2d.cs + startLine: 172 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 3, column 1 of this instance. example: [] syntax: - content: public double M31 { get; set; } + content: public double M31 { readonly get; set; } parameters: [] return: type: System.Double @@ -577,20 +522,16 @@ items: fullName: OpenTK.Mathematics.Matrix4x2d.M32 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M32 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x2d.cs - startLine: 186 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x2d.cs + startLine: 181 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 3, column 2 of this instance. example: [] syntax: - content: public double M32 { get; set; } + content: public double M32 { readonly get; set; } parameters: [] return: type: System.Double @@ -608,20 +549,16 @@ items: fullName: OpenTK.Mathematics.Matrix4x2d.M41 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M41 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x2d.cs - startLine: 195 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x2d.cs + startLine: 190 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 4, column 1 of this instance. example: [] syntax: - content: public double M41 { get; set; } + content: public double M41 { readonly get; set; } parameters: [] return: type: System.Double @@ -639,20 +576,16 @@ items: fullName: OpenTK.Mathematics.Matrix4x2d.M42 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M42 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x2d.cs - startLine: 204 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x2d.cs + startLine: 199 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 4, column 2 of this instance. example: [] syntax: - content: public double M42 { get; set; } + content: public double M42 { readonly get; set; } parameters: [] return: type: System.Double @@ -670,20 +603,16 @@ items: fullName: OpenTK.Mathematics.Matrix4x2d.Diagonal type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Diagonal - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x2d.cs - startLine: 213 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x2d.cs + startLine: 208 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the values along the main diagonal of the matrix. example: [] syntax: - content: public Vector2d Diagonal { get; set; } + content: public Vector2d Diagonal { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector2d @@ -701,20 +630,16 @@ items: fullName: OpenTK.Mathematics.Matrix4x2d.Trace type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Trace - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x2d.cs - startLine: 226 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x2d.cs + startLine: 221 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets the trace of the matrix, the sum of the values along the diagonal. example: [] syntax: - content: public double Trace { get; } + content: public readonly double Trace { get; } parameters: [] return: type: System.Double @@ -732,13 +657,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x2d.this[int, int] type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: this[] - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x2d.cs - startLine: 234 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x2d.cs + startLine: 229 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -761,6 +682,116 @@ items: nameWithType.vb: Matrix4x2d.this[](Integer, Integer) fullName.vb: OpenTK.Mathematics.Matrix4x2d.this[](Integer, Integer) name.vb: this[](Integer, Integer) +- uid: OpenTK.Mathematics.Matrix4x2d.Transposed + commentId: M:OpenTK.Mathematics.Matrix4x2d.Transposed + id: Transposed + parent: OpenTK.Mathematics.Matrix4x2d + langs: + - csharp + - vb + name: Transposed() + nameWithType: Matrix4x2d.Transposed() + fullName: OpenTK.Mathematics.Matrix4x2d.Transposed() + type: Method + source: + id: Transposed + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x2d.cs + startLine: 287 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: Returns a transposed copy of this instance. + example: [] + syntax: + content: public readonly Matrix2x4d Transposed() + return: + type: OpenTK.Mathematics.Matrix2x4d + description: The transposed copy. + content.vb: Public Function Transposed() As Matrix2x4d + overload: OpenTK.Mathematics.Matrix4x2d.Transposed* +- uid: OpenTK.Mathematics.Matrix4x2d.Swizzle(System.Int32,System.Int32,System.Int32,System.Int32) + commentId: M:OpenTK.Mathematics.Matrix4x2d.Swizzle(System.Int32,System.Int32,System.Int32,System.Int32) + id: Swizzle(System.Int32,System.Int32,System.Int32,System.Int32) + parent: OpenTK.Mathematics.Matrix4x2d + langs: + - csharp + - vb + name: Swizzle(int, int, int, int) + nameWithType: Matrix4x2d.Swizzle(int, int, int, int) + fullName: OpenTK.Mathematics.Matrix4x2d.Swizzle(int, int, int, int) + type: Method + source: + id: Swizzle + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x2d.cs + startLine: 299 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: Swizzles this instance. Swiches places of the rows of the matrix. + example: [] + syntax: + content: public void Swizzle(int rowForRow0, int rowForRow1, int rowForRow2, int rowForRow3) + parameters: + - id: rowForRow0 + type: System.Int32 + description: Which row to place in . + - id: rowForRow1 + type: System.Int32 + description: Which row to place in . + - id: rowForRow2 + type: System.Int32 + description: Which row to place in . + - id: rowForRow3 + type: System.Int32 + description: Which row to place in . + content.vb: Public Sub Swizzle(rowForRow0 As Integer, rowForRow1 As Integer, rowForRow2 As Integer, rowForRow3 As Integer) + overload: OpenTK.Mathematics.Matrix4x2d.Swizzle* + nameWithType.vb: Matrix4x2d.Swizzle(Integer, Integer, Integer, Integer) + fullName.vb: OpenTK.Mathematics.Matrix4x2d.Swizzle(Integer, Integer, Integer, Integer) + name.vb: Swizzle(Integer, Integer, Integer, Integer) +- uid: OpenTK.Mathematics.Matrix4x2d.Swizzled(System.Int32,System.Int32,System.Int32,System.Int32) + commentId: M:OpenTK.Mathematics.Matrix4x2d.Swizzled(System.Int32,System.Int32,System.Int32,System.Int32) + id: Swizzled(System.Int32,System.Int32,System.Int32,System.Int32) + parent: OpenTK.Mathematics.Matrix4x2d + langs: + - csharp + - vb + name: Swizzled(int, int, int, int) + nameWithType: Matrix4x2d.Swizzled(int, int, int, int) + fullName: OpenTK.Mathematics.Matrix4x2d.Swizzled(int, int, int, int) + type: Method + source: + id: Swizzled + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x2d.cs + startLine: 312 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: Returns a swizzled copy of this instance. + example: [] + syntax: + content: public readonly Matrix4x2d Swizzled(int rowForRow0, int rowForRow1, int rowForRow2, int rowForRow3) + parameters: + - id: rowForRow0 + type: System.Int32 + description: Which row to place in . + - id: rowForRow1 + type: System.Int32 + description: Which row to place in . + - id: rowForRow2 + type: System.Int32 + description: Which row to place in . + - id: rowForRow3 + type: System.Int32 + description: Which row to place in . + return: + type: OpenTK.Mathematics.Matrix4x2d + description: The swizzled copy. + content.vb: Public Function Swizzled(rowForRow0 As Integer, rowForRow1 As Integer, rowForRow2 As Integer, rowForRow3 As Integer) As Matrix4x2d + overload: OpenTK.Mathematics.Matrix4x2d.Swizzled* + nameWithType.vb: Matrix4x2d.Swizzled(Integer, Integer, Integer, Integer) + fullName.vb: OpenTK.Mathematics.Matrix4x2d.Swizzled(Integer, Integer, Integer, Integer) + name.vb: Swizzled(Integer, Integer, Integer, Integer) - uid: OpenTK.Mathematics.Matrix4x2d.CreateRotation(System.Double,OpenTK.Mathematics.Matrix4x2d@) commentId: M:OpenTK.Mathematics.Matrix4x2d.CreateRotation(System.Double,OpenTK.Mathematics.Matrix4x2d@) id: CreateRotation(System.Double,OpenTK.Mathematics.Matrix4x2d@) @@ -773,13 +804,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x2d.CreateRotation(double, out OpenTK.Mathematics.Matrix4x2d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateRotation - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x2d.cs - startLine: 293 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x2d.cs + startLine: 324 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -811,13 +838,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x2d.CreateRotation(double) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateRotation - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x2d.cs - startLine: 313 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x2d.cs + startLine: 344 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -859,13 +882,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x2d.CreateScale(double, out OpenTK.Mathematics.Matrix4x2d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateScale - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x2d.cs - startLine: 325 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x2d.cs + startLine: 356 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -897,13 +916,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x2d.CreateScale(double) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateScale - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x2d.cs - startLine: 342 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x2d.cs + startLine: 373 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -945,13 +960,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x2d.CreateScale(OpenTK.Mathematics.Vector2d, out OpenTK.Mathematics.Matrix4x2d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateScale - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x2d.cs - startLine: 354 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x2d.cs + startLine: 385 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -983,13 +994,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x2d.CreateScale(OpenTK.Mathematics.Vector2d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateScale - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x2d.cs - startLine: 371 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x2d.cs + startLine: 402 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1028,13 +1035,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x2d.CreateScale(double, double, out OpenTK.Mathematics.Matrix4x2d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateScale - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x2d.cs - startLine: 384 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x2d.cs + startLine: 415 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1069,13 +1072,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x2d.CreateScale(double, double) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateScale - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x2d.cs - startLine: 402 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x2d.cs + startLine: 433 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1120,13 +1119,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x2d.Mult(in OpenTK.Mathematics.Matrix4x2d, double, out OpenTK.Mathematics.Matrix4x2d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Mult - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x2d.cs - startLine: 415 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x2d.cs + startLine: 446 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1161,13 +1156,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x2d.Mult(OpenTK.Mathematics.Matrix4x2d, double) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Mult - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x2d.cs - startLine: 433 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x2d.cs + startLine: 464 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1212,13 +1203,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x2d.Mult(in OpenTK.Mathematics.Matrix4x2d, in OpenTK.Mathematics.Matrix2d, out OpenTK.Mathematics.Matrix4x2d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Mult - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x2d.cs - startLine: 446 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x2d.cs + startLine: 477 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1253,13 +1240,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x2d.Mult(OpenTK.Mathematics.Matrix4x2d, OpenTK.Mathematics.Matrix2d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Mult - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x2d.cs - startLine: 477 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x2d.cs + startLine: 508 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1301,13 +1284,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x2d.Mult(in OpenTK.Mathematics.Matrix4x2d, in OpenTK.Mathematics.Matrix2x3d, out OpenTK.Mathematics.Matrix4x3d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Mult - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x2d.cs - startLine: 490 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x2d.cs + startLine: 521 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1342,13 +1321,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x2d.Mult(OpenTK.Mathematics.Matrix4x2d, OpenTK.Mathematics.Matrix2x3d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Mult - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x2d.cs - startLine: 527 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x2d.cs + startLine: 558 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1390,13 +1365,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x2d.Mult(in OpenTK.Mathematics.Matrix4x2d, in OpenTK.Mathematics.Matrix2x4d, out OpenTK.Mathematics.Matrix4d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Mult - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x2d.cs - startLine: 540 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x2d.cs + startLine: 571 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1431,13 +1402,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x2d.Mult(OpenTK.Mathematics.Matrix4x2d, OpenTK.Mathematics.Matrix2x4d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Mult - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x2d.cs - startLine: 583 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x2d.cs + startLine: 614 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1479,13 +1446,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x2d.Add(in OpenTK.Mathematics.Matrix4x2d, in OpenTK.Mathematics.Matrix4x2d, out OpenTK.Mathematics.Matrix4x2d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Add - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x2d.cs - startLine: 596 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x2d.cs + startLine: 627 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1520,13 +1483,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x2d.Add(OpenTK.Mathematics.Matrix4x2d, OpenTK.Mathematics.Matrix4x2d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Add - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x2d.cs - startLine: 614 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x2d.cs + startLine: 645 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1568,13 +1527,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x2d.Subtract(in OpenTK.Mathematics.Matrix4x2d, in OpenTK.Mathematics.Matrix4x2d, out OpenTK.Mathematics.Matrix4x2d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Subtract - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x2d.cs - startLine: 627 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x2d.cs + startLine: 658 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1609,13 +1564,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x2d.Subtract(OpenTK.Mathematics.Matrix4x2d, OpenTK.Mathematics.Matrix4x2d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Subtract - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x2d.cs - startLine: 645 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x2d.cs + startLine: 676 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1657,13 +1608,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x2d.Transpose(in OpenTK.Mathematics.Matrix4x2d, out OpenTK.Mathematics.Matrix2x4d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Transpose - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x2d.cs - startLine: 657 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x2d.cs + startLine: 688 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1695,13 +1642,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x2d.Transpose(OpenTK.Mathematics.Matrix4x2d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Transpose - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x2d.cs - startLine: 674 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x2d.cs + startLine: 705 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1728,6 +1671,106 @@ items: - type: System.Diagnostics.Contracts.PureAttribute ctor: System.Diagnostics.Contracts.PureAttribute.#ctor arguments: [] +- uid: OpenTK.Mathematics.Matrix4x2d.Swizzle(OpenTK.Mathematics.Matrix4x2d,System.Int32,System.Int32,System.Int32,System.Int32) + commentId: M:OpenTK.Mathematics.Matrix4x2d.Swizzle(OpenTK.Mathematics.Matrix4x2d,System.Int32,System.Int32,System.Int32,System.Int32) + id: Swizzle(OpenTK.Mathematics.Matrix4x2d,System.Int32,System.Int32,System.Int32,System.Int32) + parent: OpenTK.Mathematics.Matrix4x2d + langs: + - csharp + - vb + name: Swizzle(Matrix4x2d, int, int, int, int) + nameWithType: Matrix4x2d.Swizzle(Matrix4x2d, int, int, int, int) + fullName: OpenTK.Mathematics.Matrix4x2d.Swizzle(OpenTK.Mathematics.Matrix4x2d, int, int, int, int) + type: Method + source: + id: Swizzle + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x2d.cs + startLine: 722 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: Swizzles a matrix, i.e. switches rows of the matrix. + example: [] + syntax: + content: public static Matrix4x2d Swizzle(Matrix4x2d mat, int rowForRow0, int rowForRow1, int rowForRow2, int rowForRow3) + parameters: + - id: mat + type: OpenTK.Mathematics.Matrix4x2d + description: The matrix to swizzle. + - id: rowForRow0 + type: System.Int32 + description: Which row to place in . + - id: rowForRow1 + type: System.Int32 + description: Which row to place in . + - id: rowForRow2 + type: System.Int32 + description: Which row to place in . + - id: rowForRow3 + type: System.Int32 + description: Which row to place in . + return: + type: OpenTK.Mathematics.Matrix4x2d + description: The swizzled matrix. + content.vb: Public Shared Function Swizzle(mat As Matrix4x2d, rowForRow0 As Integer, rowForRow1 As Integer, rowForRow2 As Integer, rowForRow3 As Integer) As Matrix4x2d + overload: OpenTK.Mathematics.Matrix4x2d.Swizzle* + exceptions: + - type: System.IndexOutOfRangeException + commentId: T:System.IndexOutOfRangeException + description: If any of the rows are outside of the range [0, 3]. + nameWithType.vb: Matrix4x2d.Swizzle(Matrix4x2d, Integer, Integer, Integer, Integer) + fullName.vb: OpenTK.Mathematics.Matrix4x2d.Swizzle(OpenTK.Mathematics.Matrix4x2d, Integer, Integer, Integer, Integer) + name.vb: Swizzle(Matrix4x2d, Integer, Integer, Integer, Integer) +- uid: OpenTK.Mathematics.Matrix4x2d.Swizzle(OpenTK.Mathematics.Matrix4x2d@,System.Int32,System.Int32,System.Int32,System.Int32,OpenTK.Mathematics.Matrix4x2d@) + commentId: M:OpenTK.Mathematics.Matrix4x2d.Swizzle(OpenTK.Mathematics.Matrix4x2d@,System.Int32,System.Int32,System.Int32,System.Int32,OpenTK.Mathematics.Matrix4x2d@) + id: Swizzle(OpenTK.Mathematics.Matrix4x2d@,System.Int32,System.Int32,System.Int32,System.Int32,OpenTK.Mathematics.Matrix4x2d@) + parent: OpenTK.Mathematics.Matrix4x2d + langs: + - csharp + - vb + name: Swizzle(in Matrix4x2d, int, int, int, int, out Matrix4x2d) + nameWithType: Matrix4x2d.Swizzle(in Matrix4x2d, int, int, int, int, out Matrix4x2d) + fullName: OpenTK.Mathematics.Matrix4x2d.Swizzle(in OpenTK.Mathematics.Matrix4x2d, int, int, int, int, out OpenTK.Mathematics.Matrix4x2d) + type: Method + source: + id: Swizzle + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x2d.cs + startLine: 738 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: Swizzles a matrix, i.e. switches rows of the matrix. + example: [] + syntax: + content: public static void Swizzle(in Matrix4x2d mat, int rowForRow0, int rowForRow1, int rowForRow2, int rowForRow3, out Matrix4x2d result) + parameters: + - id: mat + type: OpenTK.Mathematics.Matrix4x2d + description: The matrix to swizzle. + - id: rowForRow0 + type: System.Int32 + description: Which row to place in . + - id: rowForRow1 + type: System.Int32 + description: Which row to place in . + - id: rowForRow2 + type: System.Int32 + description: Which row to place in . + - id: rowForRow3 + type: System.Int32 + description: Which row to place in . + - id: result + type: OpenTK.Mathematics.Matrix4x2d + description: The swizzled matrix. + content.vb: Public Shared Sub Swizzle(mat As Matrix4x2d, rowForRow0 As Integer, rowForRow1 As Integer, rowForRow2 As Integer, rowForRow3 As Integer, result As Matrix4x2d) + overload: OpenTK.Mathematics.Matrix4x2d.Swizzle* + exceptions: + - type: System.IndexOutOfRangeException + commentId: T:System.IndexOutOfRangeException + description: If any of the rows are outside of the range [0, 3]. + nameWithType.vb: Matrix4x2d.Swizzle(Matrix4x2d, Integer, Integer, Integer, Integer, Matrix4x2d) + fullName.vb: OpenTK.Mathematics.Matrix4x2d.Swizzle(OpenTK.Mathematics.Matrix4x2d, Integer, Integer, Integer, Integer, OpenTK.Mathematics.Matrix4x2d) + name.vb: Swizzle(Matrix4x2d, Integer, Integer, Integer, Integer, Matrix4x2d) - uid: OpenTK.Mathematics.Matrix4x2d.op_Multiply(System.Double,OpenTK.Mathematics.Matrix4x2d) commentId: M:OpenTK.Mathematics.Matrix4x2d.op_Multiply(System.Double,OpenTK.Mathematics.Matrix4x2d) id: op_Multiply(System.Double,OpenTK.Mathematics.Matrix4x2d) @@ -1740,13 +1783,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x2d.operator *(double, OpenTK.Mathematics.Matrix4x2d) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Multiply - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x2d.cs - startLine: 687 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x2d.cs + startLine: 783 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1791,13 +1830,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x2d.operator *(OpenTK.Mathematics.Matrix4x2d, double) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Multiply - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x2d.cs - startLine: 699 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x2d.cs + startLine: 795 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1842,13 +1877,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x2d.operator *(OpenTK.Mathematics.Matrix4x2d, OpenTK.Mathematics.Matrix2d) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Multiply - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x2d.cs - startLine: 711 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x2d.cs + startLine: 807 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1893,13 +1924,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x2d.operator *(OpenTK.Mathematics.Matrix4x2d, OpenTK.Mathematics.Matrix2x3d) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Multiply - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x2d.cs - startLine: 723 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x2d.cs + startLine: 819 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1944,13 +1971,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x2d.operator *(OpenTK.Mathematics.Matrix4x2d, OpenTK.Mathematics.Matrix2x4d) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Multiply - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x2d.cs - startLine: 735 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x2d.cs + startLine: 831 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1995,13 +2018,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x2d.operator +(OpenTK.Mathematics.Matrix4x2d, OpenTK.Mathematics.Matrix4x2d) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Addition - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x2d.cs - startLine: 747 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x2d.cs + startLine: 843 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2046,13 +2065,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x2d.operator -(OpenTK.Mathematics.Matrix4x2d, OpenTK.Mathematics.Matrix4x2d) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Subtraction - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x2d.cs - startLine: 759 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x2d.cs + startLine: 855 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2097,13 +2112,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x2d.operator ==(OpenTK.Mathematics.Matrix4x2d, OpenTK.Mathematics.Matrix4x2d) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Equality - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x2d.cs - startLine: 771 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x2d.cs + startLine: 867 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2148,13 +2159,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x2d.operator !=(OpenTK.Mathematics.Matrix4x2d, OpenTK.Mathematics.Matrix4x2d) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Inequality - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x2d.cs - startLine: 783 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x2d.cs + startLine: 879 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2199,20 +2206,16 @@ items: fullName: OpenTK.Mathematics.Matrix4x2d.ToString() type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x2d.cs - startLine: 793 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x2d.cs + startLine: 889 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Returns a System.String that represents the current Matrix3d. example: [] syntax: - content: public override string ToString() + content: public override readonly string ToString() return: type: System.String description: The string representation of the matrix. @@ -2231,20 +2234,16 @@ items: fullName: OpenTK.Mathematics.Matrix4x2d.ToString(string) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x2d.cs - startLine: 799 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x2d.cs + startLine: 895 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Formats the value of the current instance using the specified format. example: [] syntax: - content: public string ToString(string format) + content: public readonly string ToString(string format) parameters: - id: format type: System.String @@ -2274,20 +2273,16 @@ items: fullName: OpenTK.Mathematics.Matrix4x2d.ToString(System.IFormatProvider) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x2d.cs - startLine: 805 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x2d.cs + startLine: 901 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Formats the value of the current instance using the specified format. example: [] syntax: - content: public string ToString(IFormatProvider formatProvider) + content: public readonly string ToString(IFormatProvider formatProvider) parameters: - id: formatProvider type: System.IFormatProvider @@ -2314,20 +2309,16 @@ items: fullName: OpenTK.Mathematics.Matrix4x2d.ToString(string, System.IFormatProvider) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x2d.cs - startLine: 811 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x2d.cs + startLine: 907 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Formats the value of the current instance using the specified format. example: [] syntax: - content: public string ToString(string format, IFormatProvider formatProvider) + content: public readonly string ToString(string format, IFormatProvider formatProvider) parameters: - id: format type: System.String @@ -2367,20 +2358,16 @@ items: fullName: OpenTK.Mathematics.Matrix4x2d.GetHashCode() type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetHashCode - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x2d.cs - startLine: 824 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x2d.cs + startLine: 920 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Returns the hashcode for this instance. example: [] syntax: - content: public override int GetHashCode() + content: public override readonly int GetHashCode() return: type: System.Int32 description: A System.Int32 containing the unique hashcode for this instance. @@ -2399,13 +2386,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x2d.Equals(object) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Equals - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x2d.cs - startLine: 834 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x2d.cs + startLine: 930 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2415,7 +2398,7 @@ items: content: >- [Pure] - public override bool Equals(object obj) + public override readonly bool Equals(object obj) parameters: - id: obj type: System.Object @@ -2448,13 +2431,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x2d.Equals(OpenTK.Mathematics.Matrix4x2d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Equals - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x2d.cs - startLine: 845 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x2d.cs + startLine: 941 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2464,7 +2443,7 @@ items: content: >- [Pure] - public bool Equals(Matrix4x2d other) + public readonly bool Equals(Matrix4x2d other) parameters: - id: other type: OpenTK.Mathematics.Matrix4x2d @@ -2840,6 +2819,55 @@ references: nameWithType.vb: Integer fullName.vb: Integer name.vb: Integer +- uid: OpenTK.Mathematics.Matrix4x2d.Transposed* + commentId: Overload:OpenTK.Mathematics.Matrix4x2d.Transposed + href: OpenTK.Mathematics.Matrix4x2d.html#OpenTK_Mathematics_Matrix4x2d_Transposed + name: Transposed + nameWithType: Matrix4x2d.Transposed + fullName: OpenTK.Mathematics.Matrix4x2d.Transposed +- uid: OpenTK.Mathematics.Matrix2x4d + commentId: T:OpenTK.Mathematics.Matrix2x4d + parent: OpenTK.Mathematics + href: OpenTK.Mathematics.Matrix2x4d.html + name: Matrix2x4d + nameWithType: Matrix2x4d + fullName: OpenTK.Mathematics.Matrix2x4d +- uid: OpenTK.Mathematics.Matrix4x2d.Row0 + commentId: F:OpenTK.Mathematics.Matrix4x2d.Row0 + href: OpenTK.Mathematics.Matrix4x2d.html#OpenTK_Mathematics_Matrix4x2d_Row0 + name: Row0 + nameWithType: Matrix4x2d.Row0 + fullName: OpenTK.Mathematics.Matrix4x2d.Row0 +- uid: OpenTK.Mathematics.Matrix4x2d.Row1 + commentId: F:OpenTK.Mathematics.Matrix4x2d.Row1 + href: OpenTK.Mathematics.Matrix4x2d.html#OpenTK_Mathematics_Matrix4x2d_Row1 + name: Row1 + nameWithType: Matrix4x2d.Row1 + fullName: OpenTK.Mathematics.Matrix4x2d.Row1 +- uid: OpenTK.Mathematics.Matrix4x2d.Row2 + commentId: F:OpenTK.Mathematics.Matrix4x2d.Row2 + href: OpenTK.Mathematics.Matrix4x2d.html#OpenTK_Mathematics_Matrix4x2d_Row2 + name: Row2 + nameWithType: Matrix4x2d.Row2 + fullName: OpenTK.Mathematics.Matrix4x2d.Row2 +- uid: OpenTK.Mathematics.Matrix4x2d.Row3 + commentId: F:OpenTK.Mathematics.Matrix4x2d.Row3 + href: OpenTK.Mathematics.Matrix4x2d.html#OpenTK_Mathematics_Matrix4x2d_Row3 + name: Row3 + nameWithType: Matrix4x2d.Row3 + fullName: OpenTK.Mathematics.Matrix4x2d.Row3 +- uid: OpenTK.Mathematics.Matrix4x2d.Swizzle* + commentId: Overload:OpenTK.Mathematics.Matrix4x2d.Swizzle + href: OpenTK.Mathematics.Matrix4x2d.html#OpenTK_Mathematics_Matrix4x2d_Swizzle_System_Int32_System_Int32_System_Int32_System_Int32_ + name: Swizzle + nameWithType: Matrix4x2d.Swizzle + fullName: OpenTK.Mathematics.Matrix4x2d.Swizzle +- uid: OpenTK.Mathematics.Matrix4x2d.Swizzled* + commentId: Overload:OpenTK.Mathematics.Matrix4x2d.Swizzled + href: OpenTK.Mathematics.Matrix4x2d.html#OpenTK_Mathematics_Matrix4x2d_Swizzled_System_Int32_System_Int32_System_Int32_System_Int32_ + name: Swizzled + nameWithType: Matrix4x2d.Swizzled + fullName: OpenTK.Mathematics.Matrix4x2d.Swizzled - uid: OpenTK.Mathematics.Matrix4x2d.CreateRotation* commentId: Overload:OpenTK.Mathematics.Matrix4x2d.CreateRotation href: OpenTK.Mathematics.Matrix4x2d.html#OpenTK_Mathematics_Matrix4x2d_CreateRotation_System_Double_OpenTK_Mathematics_Matrix4x2d__ @@ -2879,13 +2907,6 @@ references: name: Matrix4x3d nameWithType: Matrix4x3d fullName: OpenTK.Mathematics.Matrix4x3d -- uid: OpenTK.Mathematics.Matrix2x4d - commentId: T:OpenTK.Mathematics.Matrix2x4d - parent: OpenTK.Mathematics - href: OpenTK.Mathematics.Matrix2x4d.html - name: Matrix2x4d - nameWithType: Matrix2x4d - fullName: OpenTK.Mathematics.Matrix2x4d - uid: OpenTK.Mathematics.Matrix4d commentId: T:OpenTK.Mathematics.Matrix4d parent: OpenTK.Mathematics @@ -2911,6 +2932,13 @@ references: name: Transpose nameWithType: Matrix4x2d.Transpose fullName: OpenTK.Mathematics.Matrix4x2d.Transpose +- uid: System.IndexOutOfRangeException + commentId: T:System.IndexOutOfRangeException + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.indexoutofrangeexception + name: IndexOutOfRangeException + nameWithType: IndexOutOfRangeException + fullName: System.IndexOutOfRangeException - uid: OpenTK.Mathematics.Matrix4x2d.op_Multiply* commentId: Overload:OpenTK.Mathematics.Matrix4x2d.op_Multiply href: OpenTK.Mathematics.Matrix4x2d.html#OpenTK_Mathematics_Matrix4x2d_op_Multiply_System_Double_OpenTK_Mathematics_Matrix4x2d_ diff --git a/api/OpenTK.Mathematics.Matrix4x3.yml b/api/OpenTK.Mathematics.Matrix4x3.yml index 1cd0df2d..5874b6ca 100644 --- a/api/OpenTK.Mathematics.Matrix4x3.yml +++ b/api/OpenTK.Mathematics.Matrix4x3.yml @@ -36,6 +36,7 @@ items: - OpenTK.Mathematics.Matrix4x3.Invert - OpenTK.Mathematics.Matrix4x3.Invert(OpenTK.Mathematics.Matrix4x3) - OpenTK.Mathematics.Matrix4x3.Invert(OpenTK.Mathematics.Matrix4x3@,OpenTK.Mathematics.Matrix4x3@) + - OpenTK.Mathematics.Matrix4x3.Inverted - OpenTK.Mathematics.Matrix4x3.Item(System.Int32,System.Int32) - OpenTK.Mathematics.Matrix4x3.M11 - OpenTK.Mathematics.Matrix4x3.M12 @@ -61,6 +62,10 @@ items: - OpenTK.Mathematics.Matrix4x3.Row3 - OpenTK.Mathematics.Matrix4x3.Subtract(OpenTK.Mathematics.Matrix4x3,OpenTK.Mathematics.Matrix4x3) - OpenTK.Mathematics.Matrix4x3.Subtract(OpenTK.Mathematics.Matrix4x3@,OpenTK.Mathematics.Matrix4x3@,OpenTK.Mathematics.Matrix4x3@) + - OpenTK.Mathematics.Matrix4x3.Swizzle(OpenTK.Mathematics.Matrix4x3,System.Int32,System.Int32,System.Int32,System.Int32) + - OpenTK.Mathematics.Matrix4x3.Swizzle(OpenTK.Mathematics.Matrix4x3@,System.Int32,System.Int32,System.Int32,System.Int32,OpenTK.Mathematics.Matrix4x3@) + - OpenTK.Mathematics.Matrix4x3.Swizzle(System.Int32,System.Int32,System.Int32,System.Int32) + - OpenTK.Mathematics.Matrix4x3.Swizzled(System.Int32,System.Int32,System.Int32,System.Int32) - OpenTK.Mathematics.Matrix4x3.ToString - OpenTK.Mathematics.Matrix4x3.ToString(System.IFormatProvider) - OpenTK.Mathematics.Matrix4x3.ToString(System.String) @@ -68,6 +73,7 @@ items: - OpenTK.Mathematics.Matrix4x3.Trace - OpenTK.Mathematics.Matrix4x3.Transpose(OpenTK.Mathematics.Matrix4x3) - OpenTK.Mathematics.Matrix4x3.Transpose(OpenTK.Mathematics.Matrix4x3@,OpenTK.Mathematics.Matrix3x4@) + - OpenTK.Mathematics.Matrix4x3.Transposed - OpenTK.Mathematics.Matrix4x3.Zero - OpenTK.Mathematics.Matrix4x3.op_Addition(OpenTK.Mathematics.Matrix4x3,OpenTK.Mathematics.Matrix4x3) - OpenTK.Mathematics.Matrix4x3.op_Equality(OpenTK.Mathematics.Matrix4x3,OpenTK.Mathematics.Matrix4x3) @@ -84,13 +90,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x3 type: Struct source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Matrix4x3 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x3.cs - startLine: 32 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x3.cs + startLine: 33 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -128,13 +130,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x3.Row0 type: Field source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Row0 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x3.cs - startLine: 39 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x3.cs + startLine: 40 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -157,13 +155,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x3.Row1 type: Field source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Row1 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x3.cs - startLine: 44 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x3.cs + startLine: 45 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -186,13 +180,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x3.Row2 type: Field source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Row2 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x3.cs - startLine: 49 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x3.cs + startLine: 50 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -215,13 +205,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x3.Row3 type: Field source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Row3 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x3.cs - startLine: 54 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x3.cs + startLine: 55 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -244,13 +230,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x3.Zero type: Field source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Zero - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x3.cs - startLine: 59 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x3.cs + startLine: 60 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -273,13 +255,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x3.Matrix4x3(OpenTK.Mathematics.Vector3, OpenTK.Mathematics.Vector3, OpenTK.Mathematics.Vector3, OpenTK.Mathematics.Vector3) type: Constructor source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x3.cs - startLine: 68 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x3.cs + startLine: 69 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -317,13 +295,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x3.Matrix4x3(float, float, float, float, float, float, float, float, float, float, float, float) type: Constructor source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x3.cs - startLine: 91 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x3.cs + startLine: 92 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -385,24 +359,20 @@ items: fullName: OpenTK.Mathematics.Matrix4x3.Column0 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Column0 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x3.cs - startLine: 109 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x3.cs + startLine: 110 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets the first column of this matrix. example: [] syntax: - content: public Vector4 Column0 { get; } + content: public Vector4 Column0 { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector4 - content.vb: Public ReadOnly Property Column0 As Vector4 + content.vb: Public Property Column0 As Vector4 overload: OpenTK.Mathematics.Matrix4x3.Column0* - uid: OpenTK.Mathematics.Matrix4x3.Column1 commentId: P:OpenTK.Mathematics.Matrix4x3.Column1 @@ -416,24 +386,20 @@ items: fullName: OpenTK.Mathematics.Matrix4x3.Column1 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Column1 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x3.cs - startLine: 114 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x3.cs + startLine: 125 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets the second column of this matrix. example: [] syntax: - content: public Vector4 Column1 { get; } + content: public Vector4 Column1 { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector4 - content.vb: Public ReadOnly Property Column1 As Vector4 + content.vb: Public Property Column1 As Vector4 overload: OpenTK.Mathematics.Matrix4x3.Column1* - uid: OpenTK.Mathematics.Matrix4x3.Column2 commentId: P:OpenTK.Mathematics.Matrix4x3.Column2 @@ -447,24 +413,20 @@ items: fullName: OpenTK.Mathematics.Matrix4x3.Column2 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Column2 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x3.cs - startLine: 119 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x3.cs + startLine: 140 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets the third column of this matrix. example: [] syntax: - content: public Vector4 Column2 { get; } + content: public Vector4 Column2 { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector4 - content.vb: Public ReadOnly Property Column2 As Vector4 + content.vb: Public Property Column2 As Vector4 overload: OpenTK.Mathematics.Matrix4x3.Column2* - uid: OpenTK.Mathematics.Matrix4x3.M11 commentId: P:OpenTK.Mathematics.Matrix4x3.M11 @@ -478,20 +440,16 @@ items: fullName: OpenTK.Mathematics.Matrix4x3.M11 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M11 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x3.cs - startLine: 124 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x3.cs + startLine: 155 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 1, column 1 of this instance. example: [] syntax: - content: public float M11 { get; set; } + content: public float M11 { readonly get; set; } parameters: [] return: type: System.Single @@ -509,20 +467,16 @@ items: fullName: OpenTK.Mathematics.Matrix4x3.M12 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M12 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x3.cs - startLine: 133 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x3.cs + startLine: 164 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 1, column 2 of this instance. example: [] syntax: - content: public float M12 { get; set; } + content: public float M12 { readonly get; set; } parameters: [] return: type: System.Single @@ -540,20 +494,16 @@ items: fullName: OpenTK.Mathematics.Matrix4x3.M13 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M13 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x3.cs - startLine: 142 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x3.cs + startLine: 173 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 1, column 3 of this instance. example: [] syntax: - content: public float M13 { get; set; } + content: public float M13 { readonly get; set; } parameters: [] return: type: System.Single @@ -571,20 +521,16 @@ items: fullName: OpenTK.Mathematics.Matrix4x3.M21 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M21 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x3.cs - startLine: 151 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x3.cs + startLine: 182 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 2, column 1 of this instance. example: [] syntax: - content: public float M21 { get; set; } + content: public float M21 { readonly get; set; } parameters: [] return: type: System.Single @@ -602,20 +548,16 @@ items: fullName: OpenTK.Mathematics.Matrix4x3.M22 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M22 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x3.cs - startLine: 160 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x3.cs + startLine: 191 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 2, column 2 of this instance. example: [] syntax: - content: public float M22 { get; set; } + content: public float M22 { readonly get; set; } parameters: [] return: type: System.Single @@ -633,20 +575,16 @@ items: fullName: OpenTK.Mathematics.Matrix4x3.M23 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M23 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x3.cs - startLine: 169 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x3.cs + startLine: 200 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 2, column 3 of this instance. example: [] syntax: - content: public float M23 { get; set; } + content: public float M23 { readonly get; set; } parameters: [] return: type: System.Single @@ -664,20 +602,16 @@ items: fullName: OpenTK.Mathematics.Matrix4x3.M31 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M31 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x3.cs - startLine: 178 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x3.cs + startLine: 209 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 3, column 1 of this instance. example: [] syntax: - content: public float M31 { get; set; } + content: public float M31 { readonly get; set; } parameters: [] return: type: System.Single @@ -695,20 +629,16 @@ items: fullName: OpenTK.Mathematics.Matrix4x3.M32 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M32 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x3.cs - startLine: 187 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x3.cs + startLine: 218 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 3, column 2 of this instance. example: [] syntax: - content: public float M32 { get; set; } + content: public float M32 { readonly get; set; } parameters: [] return: type: System.Single @@ -726,20 +656,16 @@ items: fullName: OpenTK.Mathematics.Matrix4x3.M33 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M33 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x3.cs - startLine: 196 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x3.cs + startLine: 227 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 3, column 3 of this instance. example: [] syntax: - content: public float M33 { get; set; } + content: public float M33 { readonly get; set; } parameters: [] return: type: System.Single @@ -757,20 +683,16 @@ items: fullName: OpenTK.Mathematics.Matrix4x3.M41 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M41 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x3.cs - startLine: 205 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x3.cs + startLine: 236 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 4, column 1 of this instance. example: [] syntax: - content: public float M41 { get; set; } + content: public float M41 { readonly get; set; } parameters: [] return: type: System.Single @@ -788,20 +710,16 @@ items: fullName: OpenTK.Mathematics.Matrix4x3.M42 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M42 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x3.cs - startLine: 214 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x3.cs + startLine: 245 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 4, column 2 of this instance. example: [] syntax: - content: public float M42 { get; set; } + content: public float M42 { readonly get; set; } parameters: [] return: type: System.Single @@ -819,20 +737,16 @@ items: fullName: OpenTK.Mathematics.Matrix4x3.M43 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M43 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x3.cs - startLine: 223 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x3.cs + startLine: 254 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 4, column 3 of this instance. example: [] syntax: - content: public float M43 { get; set; } + content: public float M43 { readonly get; set; } parameters: [] return: type: System.Single @@ -850,20 +764,16 @@ items: fullName: OpenTK.Mathematics.Matrix4x3.Diagonal type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Diagonal - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x3.cs - startLine: 232 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x3.cs + startLine: 263 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the values along the main diagonal of the matrix. example: [] syntax: - content: public Vector3 Diagonal { get; set; } + content: public Vector3 Diagonal { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector3 @@ -881,20 +791,16 @@ items: fullName: OpenTK.Mathematics.Matrix4x3.Trace type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Trace - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x3.cs - startLine: 246 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x3.cs + startLine: 277 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets the trace of the matrix, the sum of the values along the diagonal. example: [] syntax: - content: public float Trace { get; } + content: public readonly float Trace { get; } parameters: [] return: type: System.Single @@ -912,20 +818,16 @@ items: fullName: OpenTK.Mathematics.Matrix4x3.this[int, int] type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: this[] - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x3.cs - startLine: 254 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x3.cs + startLine: 285 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at a specified row and column. example: [] syntax: - content: public float this[int rowIndex, int columnIndex] { get; set; } + content: public float this[int rowIndex, int columnIndex] { readonly get; set; } parameters: - id: rowIndex type: System.Int32 @@ -953,13 +855,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x3.Invert() type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Invert - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x3.cs - startLine: 311 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x3.cs + startLine: 342 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -969,6 +867,143 @@ items: content: public void Invert() content.vb: Public Sub Invert() overload: OpenTK.Mathematics.Matrix4x3.Invert* +- uid: OpenTK.Mathematics.Matrix4x3.Inverted + commentId: M:OpenTK.Mathematics.Matrix4x3.Inverted + id: Inverted + parent: OpenTK.Mathematics.Matrix4x3 + langs: + - csharp + - vb + name: Inverted() + nameWithType: Matrix4x3.Inverted() + fullName: OpenTK.Mathematics.Matrix4x3.Inverted() + type: Method + source: + id: Inverted + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x3.cs + startLine: 351 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: Returns an inverted copy of this instance. + example: [] + syntax: + content: public readonly Matrix4x3 Inverted() + return: + type: OpenTK.Mathematics.Matrix4x3 + description: The inverted copy. + content.vb: Public Function Inverted() As Matrix4x3 + overload: OpenTK.Mathematics.Matrix4x3.Inverted* +- uid: OpenTK.Mathematics.Matrix4x3.Transposed + commentId: M:OpenTK.Mathematics.Matrix4x3.Transposed + id: Transposed + parent: OpenTK.Mathematics.Matrix4x3 + langs: + - csharp + - vb + name: Transposed() + nameWithType: Matrix4x3.Transposed() + fullName: OpenTK.Mathematics.Matrix4x3.Transposed() + type: Method + source: + id: Transposed + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x3.cs + startLine: 362 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: Returns a transposed copy of this instance. + example: [] + syntax: + content: public readonly Matrix3x4 Transposed() + return: + type: OpenTK.Mathematics.Matrix3x4 + description: The transposed copy. + content.vb: Public Function Transposed() As Matrix3x4 + overload: OpenTK.Mathematics.Matrix4x3.Transposed* +- uid: OpenTK.Mathematics.Matrix4x3.Swizzle(System.Int32,System.Int32,System.Int32,System.Int32) + commentId: M:OpenTK.Mathematics.Matrix4x3.Swizzle(System.Int32,System.Int32,System.Int32,System.Int32) + id: Swizzle(System.Int32,System.Int32,System.Int32,System.Int32) + parent: OpenTK.Mathematics.Matrix4x3 + langs: + - csharp + - vb + name: Swizzle(int, int, int, int) + nameWithType: Matrix4x3.Swizzle(int, int, int, int) + fullName: OpenTK.Mathematics.Matrix4x3.Swizzle(int, int, int, int) + type: Method + source: + id: Swizzle + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x3.cs + startLine: 374 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: Swizzles this instance. Swiches places of the rows of the matrix. + example: [] + syntax: + content: public void Swizzle(int rowForRow0, int rowForRow1, int rowForRow2, int rowForRow3) + parameters: + - id: rowForRow0 + type: System.Int32 + description: Which row to place in . + - id: rowForRow1 + type: System.Int32 + description: Which row to place in . + - id: rowForRow2 + type: System.Int32 + description: Which row to place in . + - id: rowForRow3 + type: System.Int32 + description: Which row to place in . + content.vb: Public Sub Swizzle(rowForRow0 As Integer, rowForRow1 As Integer, rowForRow2 As Integer, rowForRow3 As Integer) + overload: OpenTK.Mathematics.Matrix4x3.Swizzle* + nameWithType.vb: Matrix4x3.Swizzle(Integer, Integer, Integer, Integer) + fullName.vb: OpenTK.Mathematics.Matrix4x3.Swizzle(Integer, Integer, Integer, Integer) + name.vb: Swizzle(Integer, Integer, Integer, Integer) +- uid: OpenTK.Mathematics.Matrix4x3.Swizzled(System.Int32,System.Int32,System.Int32,System.Int32) + commentId: M:OpenTK.Mathematics.Matrix4x3.Swizzled(System.Int32,System.Int32,System.Int32,System.Int32) + id: Swizzled(System.Int32,System.Int32,System.Int32,System.Int32) + parent: OpenTK.Mathematics.Matrix4x3 + langs: + - csharp + - vb + name: Swizzled(int, int, int, int) + nameWithType: Matrix4x3.Swizzled(int, int, int, int) + fullName: OpenTK.Mathematics.Matrix4x3.Swizzled(int, int, int, int) + type: Method + source: + id: Swizzled + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x3.cs + startLine: 387 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: Returns a swizzled copy of this instance. + example: [] + syntax: + content: public readonly Matrix4x3 Swizzled(int rowForRow0, int rowForRow1, int rowForRow2, int rowForRow3) + parameters: + - id: rowForRow0 + type: System.Int32 + description: Which row to place in . + - id: rowForRow1 + type: System.Int32 + description: Which row to place in . + - id: rowForRow2 + type: System.Int32 + description: Which row to place in . + - id: rowForRow3 + type: System.Int32 + description: Which row to place in . + return: + type: OpenTK.Mathematics.Matrix4x3 + description: The swizzled copy. + content.vb: Public Function Swizzled(rowForRow0 As Integer, rowForRow1 As Integer, rowForRow2 As Integer, rowForRow3 As Integer) As Matrix4x3 + overload: OpenTK.Mathematics.Matrix4x3.Swizzled* + nameWithType.vb: Matrix4x3.Swizzled(Integer, Integer, Integer, Integer) + fullName.vb: OpenTK.Mathematics.Matrix4x3.Swizzled(Integer, Integer, Integer, Integer) + name.vb: Swizzled(Integer, Integer, Integer, Integer) - uid: OpenTK.Mathematics.Matrix4x3.CreateFromAxisAngle(OpenTK.Mathematics.Vector3,System.Single,OpenTK.Mathematics.Matrix4x3@) commentId: M:OpenTK.Mathematics.Matrix4x3.CreateFromAxisAngle(OpenTK.Mathematics.Vector3,System.Single,OpenTK.Mathematics.Matrix4x3@) id: CreateFromAxisAngle(OpenTK.Mathematics.Vector3,System.Single,OpenTK.Mathematics.Matrix4x3@) @@ -981,13 +1016,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x3.CreateFromAxisAngle(OpenTK.Mathematics.Vector3, float, out OpenTK.Mathematics.Matrix4x3) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateFromAxisAngle - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x3.cs - startLine: 322 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x3.cs + startLine: 400 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1022,13 +1053,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x3.CreateFromAxisAngle(OpenTK.Mathematics.Vector3, float) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateFromAxisAngle - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x3.cs - startLine: 362 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x3.cs + startLine: 440 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1073,13 +1100,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x3.CreateFromQuaternion(in OpenTK.Mathematics.Quaternion, out OpenTK.Mathematics.Matrix4x3) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateFromQuaternion - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x3.cs - startLine: 374 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x3.cs + startLine: 452 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1111,13 +1134,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x3.CreateFromQuaternion(OpenTK.Mathematics.Quaternion) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateFromQuaternion - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x3.cs - startLine: 412 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x3.cs + startLine: 490 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1156,13 +1175,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x3.CreateRotationX(float, out OpenTK.Mathematics.Matrix4x3) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateRotationX - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x3.cs - startLine: 424 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x3.cs + startLine: 502 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1194,13 +1209,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x3.CreateRotationX(float) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateRotationX - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x3.cs - startLine: 448 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x3.cs + startLine: 526 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1242,13 +1253,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x3.CreateRotationY(float, out OpenTK.Mathematics.Matrix4x3) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateRotationY - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x3.cs - startLine: 460 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x3.cs + startLine: 538 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1280,13 +1287,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x3.CreateRotationY(float) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateRotationY - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x3.cs - startLine: 484 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x3.cs + startLine: 562 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1328,13 +1331,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x3.CreateRotationZ(float, out OpenTK.Mathematics.Matrix4x3) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateRotationZ - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x3.cs - startLine: 496 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x3.cs + startLine: 574 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1366,13 +1365,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x3.CreateRotationZ(float) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateRotationZ - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x3.cs - startLine: 520 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x3.cs + startLine: 598 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1414,13 +1409,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x3.CreateTranslation(float, float, float, out OpenTK.Mathematics.Matrix4x3) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateTranslation - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x3.cs - startLine: 534 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x3.cs + startLine: 612 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1458,13 +1449,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x3.CreateTranslation(in OpenTK.Mathematics.Vector3, out OpenTK.Mathematics.Matrix4x3) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateTranslation - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x3.cs - startLine: 555 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x3.cs + startLine: 633 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1496,13 +1483,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x3.CreateTranslation(float, float, float) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateTranslation - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x3.cs - startLine: 578 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x3.cs + startLine: 656 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1550,13 +1533,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x3.CreateTranslation(OpenTK.Mathematics.Vector3) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateTranslation - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x3.cs - startLine: 590 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x3.cs + startLine: 668 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1595,13 +1574,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x3.CreateScale(float) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateScale - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x3.cs - startLine: 602 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x3.cs + startLine: 680 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1643,13 +1618,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x3.CreateScale(OpenTK.Mathematics.Vector3) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateScale - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x3.cs - startLine: 613 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x3.cs + startLine: 691 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1688,13 +1659,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x3.CreateScale(float, float, float) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateScale - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x3.cs - startLine: 626 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x3.cs + startLine: 704 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1742,13 +1709,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x3.Mult(OpenTK.Mathematics.Matrix4x3, OpenTK.Mathematics.Matrix3x4) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Mult - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x3.cs - startLine: 652 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x3.cs + startLine: 730 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1793,13 +1756,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x3.Mult(in OpenTK.Mathematics.Matrix4x3, in OpenTK.Mathematics.Matrix3x4, out OpenTK.Mathematics.Matrix4) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Mult - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x3.cs - startLine: 666 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x3.cs + startLine: 744 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1837,13 +1796,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x3.Mult(OpenTK.Mathematics.Matrix4x3, OpenTK.Mathematics.Matrix4x3) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Mult - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x3.cs - startLine: 717 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x3.cs + startLine: 795 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1885,13 +1840,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x3.Mult(in OpenTK.Mathematics.Matrix4x3, in OpenTK.Mathematics.Matrix4x3, out OpenTK.Mathematics.Matrix4x3) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Mult - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x3.cs - startLine: 731 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x3.cs + startLine: 809 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1929,13 +1880,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x3.Mult(OpenTK.Mathematics.Matrix4x3, float) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Mult - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x3.cs - startLine: 778 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x3.cs + startLine: 856 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1980,13 +1927,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x3.Mult(in OpenTK.Mathematics.Matrix4x3, float, out OpenTK.Mathematics.Matrix4x3) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Mult - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x3.cs - startLine: 791 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x3.cs + startLine: 869 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2021,13 +1964,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x3.Add(OpenTK.Mathematics.Matrix4x3, OpenTK.Mathematics.Matrix4x3) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Add - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x3.cs - startLine: 805 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x3.cs + startLine: 883 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2069,13 +2008,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x3.Add(in OpenTK.Mathematics.Matrix4x3, in OpenTK.Mathematics.Matrix4x3, out OpenTK.Mathematics.Matrix4x3) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Add - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x3.cs - startLine: 818 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x3.cs + startLine: 896 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2110,13 +2045,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x3.Subtract(OpenTK.Mathematics.Matrix4x3, OpenTK.Mathematics.Matrix4x3) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Subtract - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x3.cs - startLine: 832 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x3.cs + startLine: 910 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2158,13 +2089,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x3.Subtract(in OpenTK.Mathematics.Matrix4x3, in OpenTK.Mathematics.Matrix4x3, out OpenTK.Mathematics.Matrix4x3) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Subtract - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x3.cs - startLine: 845 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x3.cs + startLine: 923 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2199,13 +2126,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x3.Invert(OpenTK.Mathematics.Matrix4x3) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Invert - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x3.cs - startLine: 859 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x3.cs + startLine: 937 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2248,13 +2171,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x3.Invert(in OpenTK.Mathematics.Matrix4x3, out OpenTK.Mathematics.Matrix4x3) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Invert - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x3.cs - startLine: 872 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x3.cs + startLine: 950 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2290,13 +2209,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x3.Transpose(OpenTK.Mathematics.Matrix4x3) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Transpose - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x3.cs - startLine: 897 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x3.cs + startLine: 975 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2335,13 +2250,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x3.Transpose(in OpenTK.Mathematics.Matrix4x3, out OpenTK.Mathematics.Matrix3x4) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Transpose - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x3.cs - startLine: 908 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x3.cs + startLine: 986 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2361,6 +2272,106 @@ items: nameWithType.vb: Matrix4x3.Transpose(Matrix4x3, Matrix3x4) fullName.vb: OpenTK.Mathematics.Matrix4x3.Transpose(OpenTK.Mathematics.Matrix4x3, OpenTK.Mathematics.Matrix3x4) name.vb: Transpose(Matrix4x3, Matrix3x4) +- uid: OpenTK.Mathematics.Matrix4x3.Swizzle(OpenTK.Mathematics.Matrix4x3,System.Int32,System.Int32,System.Int32,System.Int32) + commentId: M:OpenTK.Mathematics.Matrix4x3.Swizzle(OpenTK.Mathematics.Matrix4x3,System.Int32,System.Int32,System.Int32,System.Int32) + id: Swizzle(OpenTK.Mathematics.Matrix4x3,System.Int32,System.Int32,System.Int32,System.Int32) + parent: OpenTK.Mathematics.Matrix4x3 + langs: + - csharp + - vb + name: Swizzle(Matrix4x3, int, int, int, int) + nameWithType: Matrix4x3.Swizzle(Matrix4x3, int, int, int, int) + fullName: OpenTK.Mathematics.Matrix4x3.Swizzle(OpenTK.Mathematics.Matrix4x3, int, int, int, int) + type: Method + source: + id: Swizzle + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x3.cs + startLine: 1003 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: Swizzles a matrix, i.e. switches rows of the matrix. + example: [] + syntax: + content: public static Matrix4x3 Swizzle(Matrix4x3 mat, int rowForRow0, int rowForRow1, int rowForRow2, int rowForRow3) + parameters: + - id: mat + type: OpenTK.Mathematics.Matrix4x3 + description: The matrix to swizzle. + - id: rowForRow0 + type: System.Int32 + description: Which row to place in . + - id: rowForRow1 + type: System.Int32 + description: Which row to place in . + - id: rowForRow2 + type: System.Int32 + description: Which row to place in . + - id: rowForRow3 + type: System.Int32 + description: Which row to place in . + return: + type: OpenTK.Mathematics.Matrix4x3 + description: The swizzled matrix. + content.vb: Public Shared Function Swizzle(mat As Matrix4x3, rowForRow0 As Integer, rowForRow1 As Integer, rowForRow2 As Integer, rowForRow3 As Integer) As Matrix4x3 + overload: OpenTK.Mathematics.Matrix4x3.Swizzle* + exceptions: + - type: System.IndexOutOfRangeException + commentId: T:System.IndexOutOfRangeException + description: If any of the rows are outside of the range [0, 3]. + nameWithType.vb: Matrix4x3.Swizzle(Matrix4x3, Integer, Integer, Integer, Integer) + fullName.vb: OpenTK.Mathematics.Matrix4x3.Swizzle(OpenTK.Mathematics.Matrix4x3, Integer, Integer, Integer, Integer) + name.vb: Swizzle(Matrix4x3, Integer, Integer, Integer, Integer) +- uid: OpenTK.Mathematics.Matrix4x3.Swizzle(OpenTK.Mathematics.Matrix4x3@,System.Int32,System.Int32,System.Int32,System.Int32,OpenTK.Mathematics.Matrix4x3@) + commentId: M:OpenTK.Mathematics.Matrix4x3.Swizzle(OpenTK.Mathematics.Matrix4x3@,System.Int32,System.Int32,System.Int32,System.Int32,OpenTK.Mathematics.Matrix4x3@) + id: Swizzle(OpenTK.Mathematics.Matrix4x3@,System.Int32,System.Int32,System.Int32,System.Int32,OpenTK.Mathematics.Matrix4x3@) + parent: OpenTK.Mathematics.Matrix4x3 + langs: + - csharp + - vb + name: Swizzle(in Matrix4x3, int, int, int, int, out Matrix4x3) + nameWithType: Matrix4x3.Swizzle(in Matrix4x3, int, int, int, int, out Matrix4x3) + fullName: OpenTK.Mathematics.Matrix4x3.Swizzle(in OpenTK.Mathematics.Matrix4x3, int, int, int, int, out OpenTK.Mathematics.Matrix4x3) + type: Method + source: + id: Swizzle + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x3.cs + startLine: 1019 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: Swizzles a matrix, i.e. switches rows of the matrix. + example: [] + syntax: + content: public static void Swizzle(in Matrix4x3 mat, int rowForRow0, int rowForRow1, int rowForRow2, int rowForRow3, out Matrix4x3 result) + parameters: + - id: mat + type: OpenTK.Mathematics.Matrix4x3 + description: The matrix to swizzle. + - id: rowForRow0 + type: System.Int32 + description: Which row to place in . + - id: rowForRow1 + type: System.Int32 + description: Which row to place in . + - id: rowForRow2 + type: System.Int32 + description: Which row to place in . + - id: rowForRow3 + type: System.Int32 + description: Which row to place in . + - id: result + type: OpenTK.Mathematics.Matrix4x3 + description: The swizzled matrix. + content.vb: Public Shared Sub Swizzle(mat As Matrix4x3, rowForRow0 As Integer, rowForRow1 As Integer, rowForRow2 As Integer, rowForRow3 As Integer, result As Matrix4x3) + overload: OpenTK.Mathematics.Matrix4x3.Swizzle* + exceptions: + - type: System.IndexOutOfRangeException + commentId: T:System.IndexOutOfRangeException + description: If any of the rows are outside of the range [0, 3]. + nameWithType.vb: Matrix4x3.Swizzle(Matrix4x3, Integer, Integer, Integer, Integer, Matrix4x3) + fullName.vb: OpenTK.Mathematics.Matrix4x3.Swizzle(OpenTK.Mathematics.Matrix4x3, Integer, Integer, Integer, Integer, OpenTK.Mathematics.Matrix4x3) + name.vb: Swizzle(Matrix4x3, Integer, Integer, Integer, Integer, Matrix4x3) - uid: OpenTK.Mathematics.Matrix4x3.op_Multiply(OpenTK.Mathematics.Matrix4x3,OpenTK.Mathematics.Matrix3x4) commentId: M:OpenTK.Mathematics.Matrix4x3.op_Multiply(OpenTK.Mathematics.Matrix4x3,OpenTK.Mathematics.Matrix3x4) id: op_Multiply(OpenTK.Mathematics.Matrix4x3,OpenTK.Mathematics.Matrix3x4) @@ -2373,13 +2384,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x3.operator *(OpenTK.Mathematics.Matrix4x3, OpenTK.Mathematics.Matrix3x4) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Multiply - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x3.cs - startLine: 921 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x3.cs + startLine: 1064 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2424,13 +2431,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x3.operator *(OpenTK.Mathematics.Matrix4x3, OpenTK.Mathematics.Matrix4x3) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Multiply - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x3.cs - startLine: 933 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x3.cs + startLine: 1076 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2475,13 +2478,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x3.operator *(OpenTK.Mathematics.Matrix4x3, float) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Multiply - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x3.cs - startLine: 945 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x3.cs + startLine: 1088 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2526,13 +2525,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x3.operator +(OpenTK.Mathematics.Matrix4x3, OpenTK.Mathematics.Matrix4x3) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Addition - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x3.cs - startLine: 957 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x3.cs + startLine: 1100 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2577,13 +2572,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x3.operator -(OpenTK.Mathematics.Matrix4x3, OpenTK.Mathematics.Matrix4x3) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Subtraction - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x3.cs - startLine: 969 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x3.cs + startLine: 1112 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2628,13 +2619,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x3.operator ==(OpenTK.Mathematics.Matrix4x3, OpenTK.Mathematics.Matrix4x3) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Equality - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x3.cs - startLine: 981 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x3.cs + startLine: 1124 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2679,13 +2666,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x3.operator !=(OpenTK.Mathematics.Matrix4x3, OpenTK.Mathematics.Matrix4x3) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Inequality - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x3.cs - startLine: 993 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x3.cs + startLine: 1136 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2730,20 +2713,16 @@ items: fullName: OpenTK.Mathematics.Matrix4x3.ToString() type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x3.cs - startLine: 1003 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x3.cs + startLine: 1146 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Returns a System.String that represents the current Matrix4x3. example: [] syntax: - content: public override string ToString() + content: public override readonly string ToString() return: type: System.String description: The string representation of the matrix. @@ -2762,20 +2741,16 @@ items: fullName: OpenTK.Mathematics.Matrix4x3.ToString(string) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x3.cs - startLine: 1009 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x3.cs + startLine: 1152 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Formats the value of the current instance using the specified format. example: [] syntax: - content: public string ToString(string format) + content: public readonly string ToString(string format) parameters: - id: format type: System.String @@ -2805,20 +2780,16 @@ items: fullName: OpenTK.Mathematics.Matrix4x3.ToString(System.IFormatProvider) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x3.cs - startLine: 1015 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x3.cs + startLine: 1158 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Formats the value of the current instance using the specified format. example: [] syntax: - content: public string ToString(IFormatProvider formatProvider) + content: public readonly string ToString(IFormatProvider formatProvider) parameters: - id: formatProvider type: System.IFormatProvider @@ -2845,20 +2816,16 @@ items: fullName: OpenTK.Mathematics.Matrix4x3.ToString(string, System.IFormatProvider) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x3.cs - startLine: 1021 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x3.cs + startLine: 1164 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Formats the value of the current instance using the specified format. example: [] syntax: - content: public string ToString(string format, IFormatProvider formatProvider) + content: public readonly string ToString(string format, IFormatProvider formatProvider) parameters: - id: format type: System.String @@ -2898,20 +2865,16 @@ items: fullName: OpenTK.Mathematics.Matrix4x3.GetHashCode() type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetHashCode - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x3.cs - startLine: 1034 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x3.cs + startLine: 1177 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Returns the hashcode for this instance. example: [] syntax: - content: public override int GetHashCode() + content: public override readonly int GetHashCode() return: type: System.Int32 description: A System.Int32 containing the unique hashcode for this instance. @@ -2930,13 +2893,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x3.Equals(object) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Equals - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x3.cs - startLine: 1044 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x3.cs + startLine: 1187 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2946,7 +2905,7 @@ items: content: >- [Pure] - public override bool Equals(object obj) + public override readonly bool Equals(object obj) parameters: - id: obj type: System.Object @@ -2979,13 +2938,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x3.Equals(OpenTK.Mathematics.Matrix4x3) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Equals - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x3.cs - startLine: 1055 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x3.cs + startLine: 1198 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2995,7 +2950,7 @@ items: content: >- [Pure] - public bool Equals(Matrix4x3 other) + public readonly bool Equals(Matrix4x3 other) parameters: - id: other type: OpenTK.Mathematics.Matrix4x3 @@ -3407,6 +3362,61 @@ references: name: Invert nameWithType: Matrix4x3.Invert fullName: OpenTK.Mathematics.Matrix4x3.Invert +- uid: OpenTK.Mathematics.Matrix4x3.Inverted* + commentId: Overload:OpenTK.Mathematics.Matrix4x3.Inverted + href: OpenTK.Mathematics.Matrix4x3.html#OpenTK_Mathematics_Matrix4x3_Inverted + name: Inverted + nameWithType: Matrix4x3.Inverted + fullName: OpenTK.Mathematics.Matrix4x3.Inverted +- uid: OpenTK.Mathematics.Matrix4x3.Transposed* + commentId: Overload:OpenTK.Mathematics.Matrix4x3.Transposed + href: OpenTK.Mathematics.Matrix4x3.html#OpenTK_Mathematics_Matrix4x3_Transposed + name: Transposed + nameWithType: Matrix4x3.Transposed + fullName: OpenTK.Mathematics.Matrix4x3.Transposed +- uid: OpenTK.Mathematics.Matrix3x4 + commentId: T:OpenTK.Mathematics.Matrix3x4 + parent: OpenTK.Mathematics + href: OpenTK.Mathematics.Matrix3x4.html + name: Matrix3x4 + nameWithType: Matrix3x4 + fullName: OpenTK.Mathematics.Matrix3x4 +- uid: OpenTK.Mathematics.Matrix4x3.Row0 + commentId: F:OpenTK.Mathematics.Matrix4x3.Row0 + href: OpenTK.Mathematics.Matrix4x3.html#OpenTK_Mathematics_Matrix4x3_Row0 + name: Row0 + nameWithType: Matrix4x3.Row0 + fullName: OpenTK.Mathematics.Matrix4x3.Row0 +- uid: OpenTK.Mathematics.Matrix4x3.Row1 + commentId: F:OpenTK.Mathematics.Matrix4x3.Row1 + href: OpenTK.Mathematics.Matrix4x3.html#OpenTK_Mathematics_Matrix4x3_Row1 + name: Row1 + nameWithType: Matrix4x3.Row1 + fullName: OpenTK.Mathematics.Matrix4x3.Row1 +- uid: OpenTK.Mathematics.Matrix4x3.Row2 + commentId: F:OpenTK.Mathematics.Matrix4x3.Row2 + href: OpenTK.Mathematics.Matrix4x3.html#OpenTK_Mathematics_Matrix4x3_Row2 + name: Row2 + nameWithType: Matrix4x3.Row2 + fullName: OpenTK.Mathematics.Matrix4x3.Row2 +- uid: OpenTK.Mathematics.Matrix4x3.Row3 + commentId: F:OpenTK.Mathematics.Matrix4x3.Row3 + href: OpenTK.Mathematics.Matrix4x3.html#OpenTK_Mathematics_Matrix4x3_Row3 + name: Row3 + nameWithType: Matrix4x3.Row3 + fullName: OpenTK.Mathematics.Matrix4x3.Row3 +- uid: OpenTK.Mathematics.Matrix4x3.Swizzle* + commentId: Overload:OpenTK.Mathematics.Matrix4x3.Swizzle + href: OpenTK.Mathematics.Matrix4x3.html#OpenTK_Mathematics_Matrix4x3_Swizzle_System_Int32_System_Int32_System_Int32_System_Int32_ + name: Swizzle + nameWithType: Matrix4x3.Swizzle + fullName: OpenTK.Mathematics.Matrix4x3.Swizzle +- uid: OpenTK.Mathematics.Matrix4x3.Swizzled* + commentId: Overload:OpenTK.Mathematics.Matrix4x3.Swizzled + href: OpenTK.Mathematics.Matrix4x3.html#OpenTK_Mathematics_Matrix4x3_Swizzled_System_Int32_System_Int32_System_Int32_System_Int32_ + name: Swizzled + nameWithType: Matrix4x3.Swizzled + fullName: OpenTK.Mathematics.Matrix4x3.Swizzled - uid: OpenTK.Mathematics.Matrix4x3.CreateFromAxisAngle* commentId: Overload:OpenTK.Mathematics.Matrix4x3.CreateFromAxisAngle href: OpenTK.Mathematics.Matrix4x3.html#OpenTK_Mathematics_Matrix4x3_CreateFromAxisAngle_OpenTK_Mathematics_Vector3_System_Single_OpenTK_Mathematics_Matrix4x3__ @@ -3462,13 +3472,6 @@ references: name: Mult nameWithType: Matrix4x3.Mult fullName: OpenTK.Mathematics.Matrix4x3.Mult -- uid: OpenTK.Mathematics.Matrix3x4 - commentId: T:OpenTK.Mathematics.Matrix3x4 - parent: OpenTK.Mathematics - href: OpenTK.Mathematics.Matrix3x4.html - name: Matrix3x4 - nameWithType: Matrix3x4 - fullName: OpenTK.Mathematics.Matrix3x4 - uid: OpenTK.Mathematics.Matrix4 commentId: T:OpenTK.Mathematics.Matrix4 parent: OpenTK.Mathematics @@ -3501,6 +3504,13 @@ references: name: Transpose nameWithType: Matrix4x3.Transpose fullName: OpenTK.Mathematics.Matrix4x3.Transpose +- uid: System.IndexOutOfRangeException + commentId: T:System.IndexOutOfRangeException + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.indexoutofrangeexception + name: IndexOutOfRangeException + nameWithType: IndexOutOfRangeException + fullName: System.IndexOutOfRangeException - uid: OpenTK.Mathematics.Matrix4x3.op_Multiply* commentId: Overload:OpenTK.Mathematics.Matrix4x3.op_Multiply href: OpenTK.Mathematics.Matrix4x3.html#OpenTK_Mathematics_Matrix4x3_op_Multiply_OpenTK_Mathematics_Matrix4x3_OpenTK_Mathematics_Matrix3x4_ diff --git a/api/OpenTK.Mathematics.Matrix4x3d.yml b/api/OpenTK.Mathematics.Matrix4x3d.yml index de82a30b..33b75ce4 100644 --- a/api/OpenTK.Mathematics.Matrix4x3d.yml +++ b/api/OpenTK.Mathematics.Matrix4x3d.yml @@ -36,6 +36,7 @@ items: - OpenTK.Mathematics.Matrix4x3d.Invert - OpenTK.Mathematics.Matrix4x3d.Invert(OpenTK.Mathematics.Matrix4x3d) - OpenTK.Mathematics.Matrix4x3d.Invert(OpenTK.Mathematics.Matrix4x3d@,OpenTK.Mathematics.Matrix4x3d@) + - OpenTK.Mathematics.Matrix4x3d.Inverted - OpenTK.Mathematics.Matrix4x3d.Item(System.Int32,System.Int32) - OpenTK.Mathematics.Matrix4x3d.M11 - OpenTK.Mathematics.Matrix4x3d.M12 @@ -61,6 +62,10 @@ items: - OpenTK.Mathematics.Matrix4x3d.Row3 - OpenTK.Mathematics.Matrix4x3d.Subtract(OpenTK.Mathematics.Matrix4x3d,OpenTK.Mathematics.Matrix4x3d) - OpenTK.Mathematics.Matrix4x3d.Subtract(OpenTK.Mathematics.Matrix4x3d@,OpenTK.Mathematics.Matrix4x3d@,OpenTK.Mathematics.Matrix4x3d@) + - OpenTK.Mathematics.Matrix4x3d.Swizzle(OpenTK.Mathematics.Matrix4x3d,System.Int32,System.Int32,System.Int32,System.Int32) + - OpenTK.Mathematics.Matrix4x3d.Swizzle(OpenTK.Mathematics.Matrix4x3d@,System.Int32,System.Int32,System.Int32,System.Int32,OpenTK.Mathematics.Matrix4x3d@) + - OpenTK.Mathematics.Matrix4x3d.Swizzle(System.Int32,System.Int32,System.Int32,System.Int32) + - OpenTK.Mathematics.Matrix4x3d.Swizzled(System.Int32,System.Int32,System.Int32,System.Int32) - OpenTK.Mathematics.Matrix4x3d.ToString - OpenTK.Mathematics.Matrix4x3d.ToString(System.IFormatProvider) - OpenTK.Mathematics.Matrix4x3d.ToString(System.String) @@ -68,6 +73,7 @@ items: - OpenTK.Mathematics.Matrix4x3d.Trace - OpenTK.Mathematics.Matrix4x3d.Transpose(OpenTK.Mathematics.Matrix4x3d) - OpenTK.Mathematics.Matrix4x3d.Transpose(OpenTK.Mathematics.Matrix4x3d@,OpenTK.Mathematics.Matrix3x4d@) + - OpenTK.Mathematics.Matrix4x3d.Transposed - OpenTK.Mathematics.Matrix4x3d.Zero - OpenTK.Mathematics.Matrix4x3d.op_Addition(OpenTK.Mathematics.Matrix4x3d,OpenTK.Mathematics.Matrix4x3d) - OpenTK.Mathematics.Matrix4x3d.op_Equality(OpenTK.Mathematics.Matrix4x3d,OpenTK.Mathematics.Matrix4x3d) @@ -84,13 +90,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x3d type: Struct source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Matrix4x3d - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x3d.cs - startLine: 32 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x3d.cs + startLine: 33 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -128,13 +130,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x3d.Row0 type: Field source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Row0 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x3d.cs - startLine: 39 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x3d.cs + startLine: 40 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -157,13 +155,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x3d.Row1 type: Field source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Row1 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x3d.cs - startLine: 44 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x3d.cs + startLine: 45 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -186,13 +180,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x3d.Row2 type: Field source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Row2 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x3d.cs - startLine: 49 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x3d.cs + startLine: 50 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -215,13 +205,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x3d.Row3 type: Field source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Row3 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x3d.cs - startLine: 54 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x3d.cs + startLine: 55 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -244,23 +230,19 @@ items: fullName: OpenTK.Mathematics.Matrix4x3d.Zero type: Field source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Zero - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x3d.cs - startLine: 59 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x3d.cs + startLine: 60 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: The zero matrix. example: [] syntax: - content: public static Matrix4x3d Zero + content: public static readonly Matrix4x3d Zero return: type: OpenTK.Mathematics.Matrix4x3d - content.vb: Public Shared Zero As Matrix4x3d + content.vb: Public Shared ReadOnly Zero As Matrix4x3d - uid: OpenTK.Mathematics.Matrix4x3d.#ctor(OpenTK.Mathematics.Vector3d,OpenTK.Mathematics.Vector3d,OpenTK.Mathematics.Vector3d,OpenTK.Mathematics.Vector3d) commentId: M:OpenTK.Mathematics.Matrix4x3d.#ctor(OpenTK.Mathematics.Vector3d,OpenTK.Mathematics.Vector3d,OpenTK.Mathematics.Vector3d,OpenTK.Mathematics.Vector3d) id: '#ctor(OpenTK.Mathematics.Vector3d,OpenTK.Mathematics.Vector3d,OpenTK.Mathematics.Vector3d,OpenTK.Mathematics.Vector3d)' @@ -273,13 +255,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x3d.Matrix4x3d(OpenTK.Mathematics.Vector3d, OpenTK.Mathematics.Vector3d, OpenTK.Mathematics.Vector3d, OpenTK.Mathematics.Vector3d) type: Constructor source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x3d.cs - startLine: 68 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x3d.cs + startLine: 69 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -317,13 +295,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x3d.Matrix4x3d(double, double, double, double, double, double, double, double, double, double, double, double) type: Constructor source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x3d.cs - startLine: 91 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x3d.cs + startLine: 92 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -385,24 +359,20 @@ items: fullName: OpenTK.Mathematics.Matrix4x3d.Column0 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Column0 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x3d.cs - startLine: 109 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x3d.cs + startLine: 110 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets the first column of this matrix. example: [] syntax: - content: public Vector4d Column0 { get; } + content: public Vector4d Column0 { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector4d - content.vb: Public ReadOnly Property Column0 As Vector4d + content.vb: Public Property Column0 As Vector4d overload: OpenTK.Mathematics.Matrix4x3d.Column0* - uid: OpenTK.Mathematics.Matrix4x3d.Column1 commentId: P:OpenTK.Mathematics.Matrix4x3d.Column1 @@ -416,24 +386,20 @@ items: fullName: OpenTK.Mathematics.Matrix4x3d.Column1 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Column1 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x3d.cs - startLine: 114 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x3d.cs + startLine: 125 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets the second column of this matrix. example: [] syntax: - content: public Vector4d Column1 { get; } + content: public Vector4d Column1 { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector4d - content.vb: Public ReadOnly Property Column1 As Vector4d + content.vb: Public Property Column1 As Vector4d overload: OpenTK.Mathematics.Matrix4x3d.Column1* - uid: OpenTK.Mathematics.Matrix4x3d.Column2 commentId: P:OpenTK.Mathematics.Matrix4x3d.Column2 @@ -447,24 +413,20 @@ items: fullName: OpenTK.Mathematics.Matrix4x3d.Column2 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Column2 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x3d.cs - startLine: 119 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x3d.cs + startLine: 140 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets the third column of this matrix. example: [] syntax: - content: public Vector4d Column2 { get; } + content: public Vector4d Column2 { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector4d - content.vb: Public ReadOnly Property Column2 As Vector4d + content.vb: Public Property Column2 As Vector4d overload: OpenTK.Mathematics.Matrix4x3d.Column2* - uid: OpenTK.Mathematics.Matrix4x3d.M11 commentId: P:OpenTK.Mathematics.Matrix4x3d.M11 @@ -478,20 +440,16 @@ items: fullName: OpenTK.Mathematics.Matrix4x3d.M11 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M11 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x3d.cs - startLine: 124 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x3d.cs + startLine: 155 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 1, column 1 of this instance. example: [] syntax: - content: public double M11 { get; set; } + content: public double M11 { readonly get; set; } parameters: [] return: type: System.Double @@ -509,20 +467,16 @@ items: fullName: OpenTK.Mathematics.Matrix4x3d.M12 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M12 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x3d.cs - startLine: 133 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x3d.cs + startLine: 164 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 1, column 2 of this instance. example: [] syntax: - content: public double M12 { get; set; } + content: public double M12 { readonly get; set; } parameters: [] return: type: System.Double @@ -540,20 +494,16 @@ items: fullName: OpenTK.Mathematics.Matrix4x3d.M13 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M13 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x3d.cs - startLine: 142 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x3d.cs + startLine: 173 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 1, column 3 of this instance. example: [] syntax: - content: public double M13 { get; set; } + content: public double M13 { readonly get; set; } parameters: [] return: type: System.Double @@ -571,20 +521,16 @@ items: fullName: OpenTK.Mathematics.Matrix4x3d.M21 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M21 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x3d.cs - startLine: 151 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x3d.cs + startLine: 182 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 2, column 1 of this instance. example: [] syntax: - content: public double M21 { get; set; } + content: public double M21 { readonly get; set; } parameters: [] return: type: System.Double @@ -602,20 +548,16 @@ items: fullName: OpenTK.Mathematics.Matrix4x3d.M22 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M22 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x3d.cs - startLine: 160 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x3d.cs + startLine: 191 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 2, column 2 of this instance. example: [] syntax: - content: public double M22 { get; set; } + content: public double M22 { readonly get; set; } parameters: [] return: type: System.Double @@ -633,20 +575,16 @@ items: fullName: OpenTK.Mathematics.Matrix4x3d.M23 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M23 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x3d.cs - startLine: 169 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x3d.cs + startLine: 200 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 2, column 3 of this instance. example: [] syntax: - content: public double M23 { get; set; } + content: public double M23 { readonly get; set; } parameters: [] return: type: System.Double @@ -664,20 +602,16 @@ items: fullName: OpenTK.Mathematics.Matrix4x3d.M31 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M31 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x3d.cs - startLine: 178 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x3d.cs + startLine: 209 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 3, column 1 of this instance. example: [] syntax: - content: public double M31 { get; set; } + content: public double M31 { readonly get; set; } parameters: [] return: type: System.Double @@ -695,20 +629,16 @@ items: fullName: OpenTK.Mathematics.Matrix4x3d.M32 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M32 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x3d.cs - startLine: 187 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x3d.cs + startLine: 218 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 3, column 2 of this instance. example: [] syntax: - content: public double M32 { get; set; } + content: public double M32 { readonly get; set; } parameters: [] return: type: System.Double @@ -726,20 +656,16 @@ items: fullName: OpenTK.Mathematics.Matrix4x3d.M33 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M33 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x3d.cs - startLine: 196 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x3d.cs + startLine: 227 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 3, column 3 of this instance. example: [] syntax: - content: public double M33 { get; set; } + content: public double M33 { readonly get; set; } parameters: [] return: type: System.Double @@ -757,20 +683,16 @@ items: fullName: OpenTK.Mathematics.Matrix4x3d.M41 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M41 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x3d.cs - startLine: 205 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x3d.cs + startLine: 236 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 4, column 1 of this instance. example: [] syntax: - content: public double M41 { get; set; } + content: public double M41 { readonly get; set; } parameters: [] return: type: System.Double @@ -788,20 +710,16 @@ items: fullName: OpenTK.Mathematics.Matrix4x3d.M42 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M42 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x3d.cs - startLine: 214 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x3d.cs + startLine: 245 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 4, column 2 of this instance. example: [] syntax: - content: public double M42 { get; set; } + content: public double M42 { readonly get; set; } parameters: [] return: type: System.Double @@ -819,20 +737,16 @@ items: fullName: OpenTK.Mathematics.Matrix4x3d.M43 type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M43 - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x3d.cs - startLine: 223 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x3d.cs + startLine: 254 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at row 4, column 3 of this instance. example: [] syntax: - content: public double M43 { get; set; } + content: public double M43 { readonly get; set; } parameters: [] return: type: System.Double @@ -850,20 +764,16 @@ items: fullName: OpenTK.Mathematics.Matrix4x3d.Diagonal type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Diagonal - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x3d.cs - startLine: 232 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x3d.cs + startLine: 263 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the values along the main diagonal of the matrix. example: [] syntax: - content: public Vector3d Diagonal { get; set; } + content: public Vector3d Diagonal { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector3d @@ -881,20 +791,16 @@ items: fullName: OpenTK.Mathematics.Matrix4x3d.Trace type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Trace - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x3d.cs - startLine: 246 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x3d.cs + startLine: 277 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets the trace of the matrix, the sum of the values along the diagonal. example: [] syntax: - content: public double Trace { get; } + content: public readonly double Trace { get; } parameters: [] return: type: System.Double @@ -912,20 +818,16 @@ items: fullName: OpenTK.Mathematics.Matrix4x3d.this[int, int] type: Property source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: this[] - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x3d.cs - startLine: 254 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x3d.cs + startLine: 285 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at a specified row and column. example: [] syntax: - content: public double this[int rowIndex, int columnIndex] { get; set; } + content: public double this[int rowIndex, int columnIndex] { readonly get; set; } parameters: - id: rowIndex type: System.Int32 @@ -953,13 +855,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x3d.Invert() type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Invert - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x3d.cs - startLine: 311 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x3d.cs + startLine: 342 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -969,6 +867,143 @@ items: content: public void Invert() content.vb: Public Sub Invert() overload: OpenTK.Mathematics.Matrix4x3d.Invert* +- uid: OpenTK.Mathematics.Matrix4x3d.Inverted + commentId: M:OpenTK.Mathematics.Matrix4x3d.Inverted + id: Inverted + parent: OpenTK.Mathematics.Matrix4x3d + langs: + - csharp + - vb + name: Inverted() + nameWithType: Matrix4x3d.Inverted() + fullName: OpenTK.Mathematics.Matrix4x3d.Inverted() + type: Method + source: + id: Inverted + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x3d.cs + startLine: 351 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: Returns an inverted copy of this instance. + example: [] + syntax: + content: public readonly Matrix4x3d Inverted() + return: + type: OpenTK.Mathematics.Matrix4x3d + description: The inverted copy. + content.vb: Public Function Inverted() As Matrix4x3d + overload: OpenTK.Mathematics.Matrix4x3d.Inverted* +- uid: OpenTK.Mathematics.Matrix4x3d.Transposed + commentId: M:OpenTK.Mathematics.Matrix4x3d.Transposed + id: Transposed + parent: OpenTK.Mathematics.Matrix4x3d + langs: + - csharp + - vb + name: Transposed() + nameWithType: Matrix4x3d.Transposed() + fullName: OpenTK.Mathematics.Matrix4x3d.Transposed() + type: Method + source: + id: Transposed + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x3d.cs + startLine: 362 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: Returns a transposed copy of this instance. + example: [] + syntax: + content: public readonly Matrix3x4d Transposed() + return: + type: OpenTK.Mathematics.Matrix3x4d + description: The transposed copy. + content.vb: Public Function Transposed() As Matrix3x4d + overload: OpenTK.Mathematics.Matrix4x3d.Transposed* +- uid: OpenTK.Mathematics.Matrix4x3d.Swizzle(System.Int32,System.Int32,System.Int32,System.Int32) + commentId: M:OpenTK.Mathematics.Matrix4x3d.Swizzle(System.Int32,System.Int32,System.Int32,System.Int32) + id: Swizzle(System.Int32,System.Int32,System.Int32,System.Int32) + parent: OpenTK.Mathematics.Matrix4x3d + langs: + - csharp + - vb + name: Swizzle(int, int, int, int) + nameWithType: Matrix4x3d.Swizzle(int, int, int, int) + fullName: OpenTK.Mathematics.Matrix4x3d.Swizzle(int, int, int, int) + type: Method + source: + id: Swizzle + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x3d.cs + startLine: 374 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: Swizzles this instance. Swiches places of the rows of the matrix. + example: [] + syntax: + content: public void Swizzle(int rowForRow0, int rowForRow1, int rowForRow2, int rowForRow3) + parameters: + - id: rowForRow0 + type: System.Int32 + description: Which row to place in . + - id: rowForRow1 + type: System.Int32 + description: Which row to place in . + - id: rowForRow2 + type: System.Int32 + description: Which row to place in . + - id: rowForRow3 + type: System.Int32 + description: Which row to place in . + content.vb: Public Sub Swizzle(rowForRow0 As Integer, rowForRow1 As Integer, rowForRow2 As Integer, rowForRow3 As Integer) + overload: OpenTK.Mathematics.Matrix4x3d.Swizzle* + nameWithType.vb: Matrix4x3d.Swizzle(Integer, Integer, Integer, Integer) + fullName.vb: OpenTK.Mathematics.Matrix4x3d.Swizzle(Integer, Integer, Integer, Integer) + name.vb: Swizzle(Integer, Integer, Integer, Integer) +- uid: OpenTK.Mathematics.Matrix4x3d.Swizzled(System.Int32,System.Int32,System.Int32,System.Int32) + commentId: M:OpenTK.Mathematics.Matrix4x3d.Swizzled(System.Int32,System.Int32,System.Int32,System.Int32) + id: Swizzled(System.Int32,System.Int32,System.Int32,System.Int32) + parent: OpenTK.Mathematics.Matrix4x3d + langs: + - csharp + - vb + name: Swizzled(int, int, int, int) + nameWithType: Matrix4x3d.Swizzled(int, int, int, int) + fullName: OpenTK.Mathematics.Matrix4x3d.Swizzled(int, int, int, int) + type: Method + source: + id: Swizzled + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x3d.cs + startLine: 387 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: Returns a swizzled copy of this instance. + example: [] + syntax: + content: public readonly Matrix4x3d Swizzled(int rowForRow0, int rowForRow1, int rowForRow2, int rowForRow3) + parameters: + - id: rowForRow0 + type: System.Int32 + description: Which row to place in . + - id: rowForRow1 + type: System.Int32 + description: Which row to place in . + - id: rowForRow2 + type: System.Int32 + description: Which row to place in . + - id: rowForRow3 + type: System.Int32 + description: Which row to place in . + return: + type: OpenTK.Mathematics.Matrix4x3d + description: The swizzled copy. + content.vb: Public Function Swizzled(rowForRow0 As Integer, rowForRow1 As Integer, rowForRow2 As Integer, rowForRow3 As Integer) As Matrix4x3d + overload: OpenTK.Mathematics.Matrix4x3d.Swizzled* + nameWithType.vb: Matrix4x3d.Swizzled(Integer, Integer, Integer, Integer) + fullName.vb: OpenTK.Mathematics.Matrix4x3d.Swizzled(Integer, Integer, Integer, Integer) + name.vb: Swizzled(Integer, Integer, Integer, Integer) - uid: OpenTK.Mathematics.Matrix4x3d.CreateFromAxisAngle(OpenTK.Mathematics.Vector3d,System.Double,OpenTK.Mathematics.Matrix4x3d@) commentId: M:OpenTK.Mathematics.Matrix4x3d.CreateFromAxisAngle(OpenTK.Mathematics.Vector3d,System.Double,OpenTK.Mathematics.Matrix4x3d@) id: CreateFromAxisAngle(OpenTK.Mathematics.Vector3d,System.Double,OpenTK.Mathematics.Matrix4x3d@) @@ -981,13 +1016,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x3d.CreateFromAxisAngle(OpenTK.Mathematics.Vector3d, double, out OpenTK.Mathematics.Matrix4x3d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateFromAxisAngle - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x3d.cs - startLine: 322 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x3d.cs + startLine: 400 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1022,13 +1053,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x3d.CreateFromAxisAngle(OpenTK.Mathematics.Vector3d, double) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateFromAxisAngle - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x3d.cs - startLine: 362 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x3d.cs + startLine: 440 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1073,13 +1100,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x3d.CreateFromQuaternion(in OpenTK.Mathematics.Quaternion, out OpenTK.Mathematics.Matrix4x3d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateFromQuaternion - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x3d.cs - startLine: 374 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x3d.cs + startLine: 452 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1111,13 +1134,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x3d.CreateFromQuaternion(OpenTK.Mathematics.Quaternion) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateFromQuaternion - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x3d.cs - startLine: 412 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x3d.cs + startLine: 490 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1156,13 +1175,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x3d.CreateRotationX(double, out OpenTK.Mathematics.Matrix4x3d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateRotationX - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x3d.cs - startLine: 424 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x3d.cs + startLine: 502 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1194,13 +1209,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x3d.CreateRotationX(double) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateRotationX - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x3d.cs - startLine: 448 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x3d.cs + startLine: 526 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1242,13 +1253,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x3d.CreateRotationY(double, out OpenTK.Mathematics.Matrix4x3d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateRotationY - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x3d.cs - startLine: 460 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x3d.cs + startLine: 538 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1280,13 +1287,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x3d.CreateRotationY(double) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateRotationY - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x3d.cs - startLine: 484 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x3d.cs + startLine: 562 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1328,13 +1331,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x3d.CreateRotationZ(double, out OpenTK.Mathematics.Matrix4x3d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateRotationZ - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x3d.cs - startLine: 496 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x3d.cs + startLine: 574 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1366,13 +1365,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x3d.CreateRotationZ(double) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateRotationZ - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x3d.cs - startLine: 520 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x3d.cs + startLine: 598 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1414,13 +1409,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x3d.CreateTranslation(double, double, double, out OpenTK.Mathematics.Matrix4x3d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateTranslation - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x3d.cs - startLine: 534 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x3d.cs + startLine: 612 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1458,13 +1449,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x3d.CreateTranslation(in OpenTK.Mathematics.Vector3d, out OpenTK.Mathematics.Matrix4x3d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateTranslation - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x3d.cs - startLine: 555 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x3d.cs + startLine: 633 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1496,13 +1483,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x3d.CreateTranslation(double, double, double) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateTranslation - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x3d.cs - startLine: 578 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x3d.cs + startLine: 656 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1550,13 +1533,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x3d.CreateTranslation(OpenTK.Mathematics.Vector3d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateTranslation - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x3d.cs - startLine: 590 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x3d.cs + startLine: 668 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1595,13 +1574,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x3d.CreateScale(double) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateScale - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x3d.cs - startLine: 602 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x3d.cs + startLine: 680 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1643,13 +1618,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x3d.CreateScale(OpenTK.Mathematics.Vector3d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateScale - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x3d.cs - startLine: 613 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x3d.cs + startLine: 691 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1688,13 +1659,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x3d.CreateScale(double, double, double) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateScale - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x3d.cs - startLine: 626 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x3d.cs + startLine: 704 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1742,13 +1709,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x3d.Mult(OpenTK.Mathematics.Matrix4x3d, OpenTK.Mathematics.Matrix3x4d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Mult - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x3d.cs - startLine: 652 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x3d.cs + startLine: 730 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1793,13 +1756,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x3d.Mult(in OpenTK.Mathematics.Matrix4x3d, in OpenTK.Mathematics.Matrix3x4d, out OpenTK.Mathematics.Matrix4d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Mult - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x3d.cs - startLine: 666 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x3d.cs + startLine: 744 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1837,13 +1796,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x3d.Mult(OpenTK.Mathematics.Matrix4x3d, OpenTK.Mathematics.Matrix4x3d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Mult - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x3d.cs - startLine: 717 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x3d.cs + startLine: 795 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1885,13 +1840,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x3d.Mult(in OpenTK.Mathematics.Matrix4x3d, in OpenTK.Mathematics.Matrix4x3d, out OpenTK.Mathematics.Matrix4x3d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Mult - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x3d.cs - startLine: 730 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x3d.cs + startLine: 808 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1926,13 +1877,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x3d.Mult(OpenTK.Mathematics.Matrix4x3d, double) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Mult - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x3d.cs - startLine: 777 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x3d.cs + startLine: 855 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1977,13 +1924,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x3d.Mult(in OpenTK.Mathematics.Matrix4x3d, double, out OpenTK.Mathematics.Matrix4x3d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Mult - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x3d.cs - startLine: 790 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x3d.cs + startLine: 868 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2018,13 +1961,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x3d.Add(OpenTK.Mathematics.Matrix4x3d, OpenTK.Mathematics.Matrix4x3d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Add - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x3d.cs - startLine: 804 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x3d.cs + startLine: 882 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2066,13 +2005,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x3d.Add(in OpenTK.Mathematics.Matrix4x3d, in OpenTK.Mathematics.Matrix4x3d, out OpenTK.Mathematics.Matrix4x3d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Add - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x3d.cs - startLine: 817 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x3d.cs + startLine: 895 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2107,13 +2042,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x3d.Subtract(OpenTK.Mathematics.Matrix4x3d, OpenTK.Mathematics.Matrix4x3d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Subtract - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x3d.cs - startLine: 831 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x3d.cs + startLine: 909 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2155,13 +2086,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x3d.Subtract(in OpenTK.Mathematics.Matrix4x3d, in OpenTK.Mathematics.Matrix4x3d, out OpenTK.Mathematics.Matrix4x3d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Subtract - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x3d.cs - startLine: 844 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x3d.cs + startLine: 922 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2196,13 +2123,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x3d.Invert(OpenTK.Mathematics.Matrix4x3d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Invert - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x3d.cs - startLine: 858 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x3d.cs + startLine: 936 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2245,13 +2168,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x3d.Invert(in OpenTK.Mathematics.Matrix4x3d, out OpenTK.Mathematics.Matrix4x3d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Invert - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x3d.cs - startLine: 871 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x3d.cs + startLine: 949 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2287,13 +2206,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x3d.Transpose(OpenTK.Mathematics.Matrix4x3d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Transpose - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x3d.cs - startLine: 896 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x3d.cs + startLine: 974 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2332,13 +2247,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x3d.Transpose(in OpenTK.Mathematics.Matrix4x3d, out OpenTK.Mathematics.Matrix3x4d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Transpose - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x3d.cs - startLine: 907 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x3d.cs + startLine: 985 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2358,6 +2269,106 @@ items: nameWithType.vb: Matrix4x3d.Transpose(Matrix4x3d, Matrix3x4d) fullName.vb: OpenTK.Mathematics.Matrix4x3d.Transpose(OpenTK.Mathematics.Matrix4x3d, OpenTK.Mathematics.Matrix3x4d) name.vb: Transpose(Matrix4x3d, Matrix3x4d) +- uid: OpenTK.Mathematics.Matrix4x3d.Swizzle(OpenTK.Mathematics.Matrix4x3d,System.Int32,System.Int32,System.Int32,System.Int32) + commentId: M:OpenTK.Mathematics.Matrix4x3d.Swizzle(OpenTK.Mathematics.Matrix4x3d,System.Int32,System.Int32,System.Int32,System.Int32) + id: Swizzle(OpenTK.Mathematics.Matrix4x3d,System.Int32,System.Int32,System.Int32,System.Int32) + parent: OpenTK.Mathematics.Matrix4x3d + langs: + - csharp + - vb + name: Swizzle(Matrix4x3d, int, int, int, int) + nameWithType: Matrix4x3d.Swizzle(Matrix4x3d, int, int, int, int) + fullName: OpenTK.Mathematics.Matrix4x3d.Swizzle(OpenTK.Mathematics.Matrix4x3d, int, int, int, int) + type: Method + source: + id: Swizzle + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x3d.cs + startLine: 1002 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: Swizzles a matrix, i.e. switches rows of the matrix. + example: [] + syntax: + content: public static Matrix4x3d Swizzle(Matrix4x3d mat, int rowForRow0, int rowForRow1, int rowForRow2, int rowForRow3) + parameters: + - id: mat + type: OpenTK.Mathematics.Matrix4x3d + description: The matrix to swizzle. + - id: rowForRow0 + type: System.Int32 + description: Which row to place in . + - id: rowForRow1 + type: System.Int32 + description: Which row to place in . + - id: rowForRow2 + type: System.Int32 + description: Which row to place in . + - id: rowForRow3 + type: System.Int32 + description: Which row to place in . + return: + type: OpenTK.Mathematics.Matrix4x3d + description: The swizzled matrix. + content.vb: Public Shared Function Swizzle(mat As Matrix4x3d, rowForRow0 As Integer, rowForRow1 As Integer, rowForRow2 As Integer, rowForRow3 As Integer) As Matrix4x3d + overload: OpenTK.Mathematics.Matrix4x3d.Swizzle* + exceptions: + - type: System.IndexOutOfRangeException + commentId: T:System.IndexOutOfRangeException + description: If any of the rows are outside of the range [0, 3]. + nameWithType.vb: Matrix4x3d.Swizzle(Matrix4x3d, Integer, Integer, Integer, Integer) + fullName.vb: OpenTK.Mathematics.Matrix4x3d.Swizzle(OpenTK.Mathematics.Matrix4x3d, Integer, Integer, Integer, Integer) + name.vb: Swizzle(Matrix4x3d, Integer, Integer, Integer, Integer) +- uid: OpenTK.Mathematics.Matrix4x3d.Swizzle(OpenTK.Mathematics.Matrix4x3d@,System.Int32,System.Int32,System.Int32,System.Int32,OpenTK.Mathematics.Matrix4x3d@) + commentId: M:OpenTK.Mathematics.Matrix4x3d.Swizzle(OpenTK.Mathematics.Matrix4x3d@,System.Int32,System.Int32,System.Int32,System.Int32,OpenTK.Mathematics.Matrix4x3d@) + id: Swizzle(OpenTK.Mathematics.Matrix4x3d@,System.Int32,System.Int32,System.Int32,System.Int32,OpenTK.Mathematics.Matrix4x3d@) + parent: OpenTK.Mathematics.Matrix4x3d + langs: + - csharp + - vb + name: Swizzle(in Matrix4x3d, int, int, int, int, out Matrix4x3d) + nameWithType: Matrix4x3d.Swizzle(in Matrix4x3d, int, int, int, int, out Matrix4x3d) + fullName: OpenTK.Mathematics.Matrix4x3d.Swizzle(in OpenTK.Mathematics.Matrix4x3d, int, int, int, int, out OpenTK.Mathematics.Matrix4x3d) + type: Method + source: + id: Swizzle + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x3d.cs + startLine: 1018 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: Swizzles a matrix, i.e. switches rows of the matrix. + example: [] + syntax: + content: public static void Swizzle(in Matrix4x3d mat, int rowForRow0, int rowForRow1, int rowForRow2, int rowForRow3, out Matrix4x3d result) + parameters: + - id: mat + type: OpenTK.Mathematics.Matrix4x3d + description: The matrix to swizzle. + - id: rowForRow0 + type: System.Int32 + description: Which row to place in . + - id: rowForRow1 + type: System.Int32 + description: Which row to place in . + - id: rowForRow2 + type: System.Int32 + description: Which row to place in . + - id: rowForRow3 + type: System.Int32 + description: Which row to place in . + - id: result + type: OpenTK.Mathematics.Matrix4x3d + description: The swizzled matrix. + content.vb: Public Shared Sub Swizzle(mat As Matrix4x3d, rowForRow0 As Integer, rowForRow1 As Integer, rowForRow2 As Integer, rowForRow3 As Integer, result As Matrix4x3d) + overload: OpenTK.Mathematics.Matrix4x3d.Swizzle* + exceptions: + - type: System.IndexOutOfRangeException + commentId: T:System.IndexOutOfRangeException + description: If any of the rows are outside of the range [0, 3]. + nameWithType.vb: Matrix4x3d.Swizzle(Matrix4x3d, Integer, Integer, Integer, Integer, Matrix4x3d) + fullName.vb: OpenTK.Mathematics.Matrix4x3d.Swizzle(OpenTK.Mathematics.Matrix4x3d, Integer, Integer, Integer, Integer, OpenTK.Mathematics.Matrix4x3d) + name.vb: Swizzle(Matrix4x3d, Integer, Integer, Integer, Integer, Matrix4x3d) - uid: OpenTK.Mathematics.Matrix4x3d.op_Multiply(OpenTK.Mathematics.Matrix4x3d,OpenTK.Mathematics.Matrix3x4d) commentId: M:OpenTK.Mathematics.Matrix4x3d.op_Multiply(OpenTK.Mathematics.Matrix4x3d,OpenTK.Mathematics.Matrix3x4d) id: op_Multiply(OpenTK.Mathematics.Matrix4x3d,OpenTK.Mathematics.Matrix3x4d) @@ -2370,13 +2381,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x3d.operator *(OpenTK.Mathematics.Matrix4x3d, OpenTK.Mathematics.Matrix3x4d) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Multiply - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x3d.cs - startLine: 920 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x3d.cs + startLine: 1063 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2421,13 +2428,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x3d.operator *(OpenTK.Mathematics.Matrix4x3d, OpenTK.Mathematics.Matrix4x3d) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Multiply - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x3d.cs - startLine: 932 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x3d.cs + startLine: 1075 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2472,13 +2475,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x3d.operator *(OpenTK.Mathematics.Matrix4x3d, double) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Multiply - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x3d.cs - startLine: 944 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x3d.cs + startLine: 1087 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2523,13 +2522,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x3d.operator +(OpenTK.Mathematics.Matrix4x3d, OpenTK.Mathematics.Matrix4x3d) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Addition - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x3d.cs - startLine: 956 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x3d.cs + startLine: 1099 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2574,13 +2569,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x3d.operator -(OpenTK.Mathematics.Matrix4x3d, OpenTK.Mathematics.Matrix4x3d) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Subtraction - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x3d.cs - startLine: 968 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x3d.cs + startLine: 1111 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2625,13 +2616,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x3d.operator ==(OpenTK.Mathematics.Matrix4x3d, OpenTK.Mathematics.Matrix4x3d) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Equality - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x3d.cs - startLine: 980 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x3d.cs + startLine: 1123 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2676,13 +2663,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x3d.operator !=(OpenTK.Mathematics.Matrix4x3d, OpenTK.Mathematics.Matrix4x3d) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Inequality - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x3d.cs - startLine: 992 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x3d.cs + startLine: 1135 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2727,20 +2710,16 @@ items: fullName: OpenTK.Mathematics.Matrix4x3d.ToString() type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x3d.cs - startLine: 1002 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x3d.cs + startLine: 1145 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Returns a System.String that represents the current Matrix4x3d. example: [] syntax: - content: public override string ToString() + content: public override readonly string ToString() return: type: System.String description: The string representation of the matrix. @@ -2759,20 +2738,16 @@ items: fullName: OpenTK.Mathematics.Matrix4x3d.ToString(string) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x3d.cs - startLine: 1008 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x3d.cs + startLine: 1151 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Formats the value of the current instance using the specified format. example: [] syntax: - content: public string ToString(string format) + content: public readonly string ToString(string format) parameters: - id: format type: System.String @@ -2802,20 +2777,16 @@ items: fullName: OpenTK.Mathematics.Matrix4x3d.ToString(System.IFormatProvider) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x3d.cs - startLine: 1014 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x3d.cs + startLine: 1157 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Formats the value of the current instance using the specified format. example: [] syntax: - content: public string ToString(IFormatProvider formatProvider) + content: public readonly string ToString(IFormatProvider formatProvider) parameters: - id: formatProvider type: System.IFormatProvider @@ -2842,20 +2813,16 @@ items: fullName: OpenTK.Mathematics.Matrix4x3d.ToString(string, System.IFormatProvider) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x3d.cs - startLine: 1020 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x3d.cs + startLine: 1163 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Formats the value of the current instance using the specified format. example: [] syntax: - content: public string ToString(string format, IFormatProvider formatProvider) + content: public readonly string ToString(string format, IFormatProvider formatProvider) parameters: - id: format type: System.String @@ -2895,20 +2862,16 @@ items: fullName: OpenTK.Mathematics.Matrix4x3d.GetHashCode() type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetHashCode - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x3d.cs - startLine: 1033 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x3d.cs + startLine: 1176 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Returns the hashcode for this instance. example: [] syntax: - content: public override int GetHashCode() + content: public override readonly int GetHashCode() return: type: System.Int32 description: A System.Int32 containing the unique hashcode for this instance. @@ -2927,13 +2890,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x3d.Equals(object) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Equals - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x3d.cs - startLine: 1043 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x3d.cs + startLine: 1186 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2943,7 +2902,7 @@ items: content: >- [Pure] - public override bool Equals(object obj) + public override readonly bool Equals(object obj) parameters: - id: obj type: System.Object @@ -2976,13 +2935,9 @@ items: fullName: OpenTK.Mathematics.Matrix4x3d.Equals(OpenTK.Mathematics.Matrix4x3d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Matrix/Matrix4x3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Equals - path: opentk/src/OpenTK.Mathematics/Matrix/Matrix4x3d.cs - startLine: 1054 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Matrix\Matrix4x3d.cs + startLine: 1197 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2992,7 +2947,7 @@ items: content: >- [Pure] - public bool Equals(Matrix4x3d other) + public readonly bool Equals(Matrix4x3d other) parameters: - id: other type: OpenTK.Mathematics.Matrix4x3d @@ -3404,6 +3359,61 @@ references: name: Invert nameWithType: Matrix4x3d.Invert fullName: OpenTK.Mathematics.Matrix4x3d.Invert +- uid: OpenTK.Mathematics.Matrix4x3d.Inverted* + commentId: Overload:OpenTK.Mathematics.Matrix4x3d.Inverted + href: OpenTK.Mathematics.Matrix4x3d.html#OpenTK_Mathematics_Matrix4x3d_Inverted + name: Inverted + nameWithType: Matrix4x3d.Inverted + fullName: OpenTK.Mathematics.Matrix4x3d.Inverted +- uid: OpenTK.Mathematics.Matrix4x3d.Transposed* + commentId: Overload:OpenTK.Mathematics.Matrix4x3d.Transposed + href: OpenTK.Mathematics.Matrix4x3d.html#OpenTK_Mathematics_Matrix4x3d_Transposed + name: Transposed + nameWithType: Matrix4x3d.Transposed + fullName: OpenTK.Mathematics.Matrix4x3d.Transposed +- uid: OpenTK.Mathematics.Matrix3x4d + commentId: T:OpenTK.Mathematics.Matrix3x4d + parent: OpenTK.Mathematics + href: OpenTK.Mathematics.Matrix3x4d.html + name: Matrix3x4d + nameWithType: Matrix3x4d + fullName: OpenTK.Mathematics.Matrix3x4d +- uid: OpenTK.Mathematics.Matrix4x3d.Row0 + commentId: F:OpenTK.Mathematics.Matrix4x3d.Row0 + href: OpenTK.Mathematics.Matrix4x3d.html#OpenTK_Mathematics_Matrix4x3d_Row0 + name: Row0 + nameWithType: Matrix4x3d.Row0 + fullName: OpenTK.Mathematics.Matrix4x3d.Row0 +- uid: OpenTK.Mathematics.Matrix4x3d.Row1 + commentId: F:OpenTK.Mathematics.Matrix4x3d.Row1 + href: OpenTK.Mathematics.Matrix4x3d.html#OpenTK_Mathematics_Matrix4x3d_Row1 + name: Row1 + nameWithType: Matrix4x3d.Row1 + fullName: OpenTK.Mathematics.Matrix4x3d.Row1 +- uid: OpenTK.Mathematics.Matrix4x3d.Row2 + commentId: F:OpenTK.Mathematics.Matrix4x3d.Row2 + href: OpenTK.Mathematics.Matrix4x3d.html#OpenTK_Mathematics_Matrix4x3d_Row2 + name: Row2 + nameWithType: Matrix4x3d.Row2 + fullName: OpenTK.Mathematics.Matrix4x3d.Row2 +- uid: OpenTK.Mathematics.Matrix4x3d.Row3 + commentId: F:OpenTK.Mathematics.Matrix4x3d.Row3 + href: OpenTK.Mathematics.Matrix4x3d.html#OpenTK_Mathematics_Matrix4x3d_Row3 + name: Row3 + nameWithType: Matrix4x3d.Row3 + fullName: OpenTK.Mathematics.Matrix4x3d.Row3 +- uid: OpenTK.Mathematics.Matrix4x3d.Swizzle* + commentId: Overload:OpenTK.Mathematics.Matrix4x3d.Swizzle + href: OpenTK.Mathematics.Matrix4x3d.html#OpenTK_Mathematics_Matrix4x3d_Swizzle_System_Int32_System_Int32_System_Int32_System_Int32_ + name: Swizzle + nameWithType: Matrix4x3d.Swizzle + fullName: OpenTK.Mathematics.Matrix4x3d.Swizzle +- uid: OpenTK.Mathematics.Matrix4x3d.Swizzled* + commentId: Overload:OpenTK.Mathematics.Matrix4x3d.Swizzled + href: OpenTK.Mathematics.Matrix4x3d.html#OpenTK_Mathematics_Matrix4x3d_Swizzled_System_Int32_System_Int32_System_Int32_System_Int32_ + name: Swizzled + nameWithType: Matrix4x3d.Swizzled + fullName: OpenTK.Mathematics.Matrix4x3d.Swizzled - uid: OpenTK.Mathematics.Matrix4x3d.CreateFromAxisAngle* commentId: Overload:OpenTK.Mathematics.Matrix4x3d.CreateFromAxisAngle href: OpenTK.Mathematics.Matrix4x3d.html#OpenTK_Mathematics_Matrix4x3d_CreateFromAxisAngle_OpenTK_Mathematics_Vector3d_System_Double_OpenTK_Mathematics_Matrix4x3d__ @@ -3459,13 +3469,6 @@ references: name: Mult nameWithType: Matrix4x3d.Mult fullName: OpenTK.Mathematics.Matrix4x3d.Mult -- uid: OpenTK.Mathematics.Matrix3x4d - commentId: T:OpenTK.Mathematics.Matrix3x4d - parent: OpenTK.Mathematics - href: OpenTK.Mathematics.Matrix3x4d.html - name: Matrix3x4d - nameWithType: Matrix3x4d - fullName: OpenTK.Mathematics.Matrix3x4d - uid: OpenTK.Mathematics.Matrix4d commentId: T:OpenTK.Mathematics.Matrix4d parent: OpenTK.Mathematics @@ -3498,6 +3501,13 @@ references: name: Transpose nameWithType: Matrix4x3d.Transpose fullName: OpenTK.Mathematics.Matrix4x3d.Transpose +- uid: System.IndexOutOfRangeException + commentId: T:System.IndexOutOfRangeException + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.indexoutofrangeexception + name: IndexOutOfRangeException + nameWithType: IndexOutOfRangeException + fullName: System.IndexOutOfRangeException - uid: OpenTK.Mathematics.Matrix4x3d.op_Multiply* commentId: Overload:OpenTK.Mathematics.Matrix4x3d.op_Multiply href: OpenTK.Mathematics.Matrix4x3d.html#OpenTK_Mathematics_Matrix4x3d_op_Multiply_OpenTK_Mathematics_Matrix4x3d_OpenTK_Mathematics_Matrix3x4d_ diff --git a/api/OpenTK.Mathematics.Quaternion.yml b/api/OpenTK.Mathematics.Quaternion.yml index 53b565c6..7656f331 100644 --- a/api/OpenTK.Mathematics.Quaternion.yml +++ b/api/OpenTK.Mathematics.Quaternion.yml @@ -70,13 +70,9 @@ items: fullName: OpenTK.Mathematics.Quaternion type: Struct source: - remote: - path: src/OpenTK.Mathematics/Data/Quaternion.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Quaternion - path: opentk/src/OpenTK.Mathematics/Data/Quaternion.cs - startLine: 32 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Data\Quaternion.cs + startLine: 33 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -114,13 +110,9 @@ items: fullName: OpenTK.Mathematics.Quaternion.Xyz type: Field source: - remote: - path: src/OpenTK.Mathematics/Data/Quaternion.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Xyz - path: opentk/src/OpenTK.Mathematics/Data/Quaternion.cs - startLine: 38 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Data\Quaternion.cs + startLine: 39 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -143,13 +135,9 @@ items: fullName: OpenTK.Mathematics.Quaternion.W type: Field source: - remote: - path: src/OpenTK.Mathematics/Data/Quaternion.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: W - path: opentk/src/OpenTK.Mathematics/Data/Quaternion.cs - startLine: 43 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Data\Quaternion.cs + startLine: 44 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -172,13 +160,9 @@ items: fullName: OpenTK.Mathematics.Quaternion.Quaternion(OpenTK.Mathematics.Vector3, float) type: Constructor source: - remote: - path: src/OpenTK.Mathematics/Data/Quaternion.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Mathematics/Data/Quaternion.cs - startLine: 50 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Data\Quaternion.cs + startLine: 51 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -210,13 +194,9 @@ items: fullName: OpenTK.Mathematics.Quaternion.Quaternion(float, float, float, float) type: Constructor source: - remote: - path: src/OpenTK.Mathematics/Data/Quaternion.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Mathematics/Data/Quaternion.cs - startLine: 63 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Data\Quaternion.cs + startLine: 64 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -254,13 +234,9 @@ items: fullName: OpenTK.Mathematics.Quaternion.Quaternion(float, float, float) type: Constructor source: - remote: - path: src/OpenTK.Mathematics/Data/Quaternion.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Mathematics/Data/Quaternion.cs - startLine: 76 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Data\Quaternion.cs + startLine: 77 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -300,13 +276,9 @@ items: fullName: OpenTK.Mathematics.Quaternion.Quaternion(OpenTK.Mathematics.Vector3) type: Constructor source: - remote: - path: src/OpenTK.Mathematics/Data/Quaternion.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Mathematics/Data/Quaternion.cs - startLine: 101 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Data\Quaternion.cs + startLine: 102 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -340,20 +312,16 @@ items: fullName: OpenTK.Mathematics.Quaternion.X type: Property source: - remote: - path: src/OpenTK.Mathematics/Data/Quaternion.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: X - path: opentk/src/OpenTK.Mathematics/Data/Quaternion.cs - startLine: 109 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Data\Quaternion.cs + startLine: 110 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the X component of this instance. example: [] syntax: - content: public float X { get; set; } + content: public float X { readonly get; set; } parameters: [] return: type: System.Single @@ -371,20 +339,16 @@ items: fullName: OpenTK.Mathematics.Quaternion.Y type: Property source: - remote: - path: src/OpenTK.Mathematics/Data/Quaternion.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Y - path: opentk/src/OpenTK.Mathematics/Data/Quaternion.cs - startLine: 119 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Data\Quaternion.cs + startLine: 120 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the Y component of this instance. example: [] syntax: - content: public float Y { get; set; } + content: public float Y { readonly get; set; } parameters: [] return: type: System.Single @@ -402,20 +366,16 @@ items: fullName: OpenTK.Mathematics.Quaternion.Z type: Property source: - remote: - path: src/OpenTK.Mathematics/Data/Quaternion.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Z - path: opentk/src/OpenTK.Mathematics/Data/Quaternion.cs - startLine: 129 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Data\Quaternion.cs + startLine: 130 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the Z component of this instance. example: [] syntax: - content: public float Z { get; set; } + content: public float Z { readonly get; set; } parameters: [] return: type: System.Single @@ -433,13 +393,9 @@ items: fullName: OpenTK.Mathematics.Quaternion.ToAxisAngle(out OpenTK.Mathematics.Vector3, out float) type: Method source: - remote: - path: src/OpenTK.Mathematics/Data/Quaternion.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToAxisAngle - path: opentk/src/OpenTK.Mathematics/Data/Quaternion.cs - startLine: 141 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Data\Quaternion.cs + startLine: 142 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -471,13 +427,9 @@ items: fullName: OpenTK.Mathematics.Quaternion.ToAxisAngle() type: Method source: - remote: - path: src/OpenTK.Mathematics/Data/Quaternion.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToAxisAngle - path: opentk/src/OpenTK.Mathematics/Data/Quaternion.cs - startLine: 152 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Data\Quaternion.cs + startLine: 153 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -502,20 +454,16 @@ items: fullName: OpenTK.Mathematics.Quaternion.ToEulerAngles(out OpenTK.Mathematics.Vector3) type: Method source: - remote: - path: src/OpenTK.Mathematics/Data/Quaternion.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToEulerAngles - path: opentk/src/OpenTK.Mathematics/Data/Quaternion.cs - startLine: 184 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Data\Quaternion.cs + startLine: 185 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Convert the current quaternion to Euler angle representation. example: [] syntax: - content: public void ToEulerAngles(out Vector3 angles) + content: public readonly void ToEulerAngles(out Vector3 angles) parameters: - id: angles type: OpenTK.Mathematics.Vector3 @@ -537,20 +485,16 @@ items: fullName: OpenTK.Mathematics.Quaternion.ToEulerAngles() type: Method source: - remote: - path: src/OpenTK.Mathematics/Data/Quaternion.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToEulerAngles - path: opentk/src/OpenTK.Mathematics/Data/Quaternion.cs - startLine: 193 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Data\Quaternion.cs + startLine: 194 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Convert this instance to an Euler angle representation. example: [] syntax: - content: public Vector3 ToEulerAngles() + content: public readonly Vector3 ToEulerAngles() return: type: OpenTK.Mathematics.Vector3 description: The Euler angles in radians. @@ -568,20 +512,16 @@ items: fullName: OpenTK.Mathematics.Quaternion.Length type: Property source: - remote: - path: src/OpenTK.Mathematics/Data/Quaternion.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Length - path: opentk/src/OpenTK.Mathematics/Data/Quaternion.cs - startLine: 241 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Data\Quaternion.cs + startLine: 242 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets the length (magnitude) of the quaternion. example: [] syntax: - content: public float Length { get; } + content: public readonly float Length { get; } parameters: [] return: type: System.Single @@ -602,20 +542,16 @@ items: fullName: OpenTK.Mathematics.Quaternion.LengthSquared type: Property source: - remote: - path: src/OpenTK.Mathematics/Data/Quaternion.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: LengthSquared - path: opentk/src/OpenTK.Mathematics/Data/Quaternion.cs - startLine: 246 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Data\Quaternion.cs + startLine: 247 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets the square of the quaternion length (magnitude). example: [] syntax: - content: public float LengthSquared { get; } + content: public readonly float LengthSquared { get; } parameters: [] return: type: System.Single @@ -633,20 +569,16 @@ items: fullName: OpenTK.Mathematics.Quaternion.Normalized() type: Method source: - remote: - path: src/OpenTK.Mathematics/Data/Quaternion.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Normalized - path: opentk/src/OpenTK.Mathematics/Data/Quaternion.cs - startLine: 252 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Data\Quaternion.cs + startLine: 253 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Returns a copy of the Quaternion scaled to unit length. example: [] syntax: - content: public Quaternion Normalized() + content: public readonly Quaternion Normalized() return: type: OpenTK.Mathematics.Quaternion description: The normalized copy. @@ -664,13 +596,9 @@ items: fullName: OpenTK.Mathematics.Quaternion.Invert() type: Method source: - remote: - path: src/OpenTK.Mathematics/Data/Quaternion.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Invert - path: opentk/src/OpenTK.Mathematics/Data/Quaternion.cs - startLine: 262 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Data\Quaternion.cs + startLine: 263 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -692,20 +620,16 @@ items: fullName: OpenTK.Mathematics.Quaternion.Inverted() type: Method source: - remote: - path: src/OpenTK.Mathematics/Data/Quaternion.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Inverted - path: opentk/src/OpenTK.Mathematics/Data/Quaternion.cs - startLine: 271 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Data\Quaternion.cs + startLine: 272 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Returns the inverse of this Quaternion. example: [] syntax: - content: public Quaternion Inverted() + content: public readonly Quaternion Inverted() return: type: OpenTK.Mathematics.Quaternion description: The inverted copy. @@ -723,13 +647,9 @@ items: fullName: OpenTK.Mathematics.Quaternion.Normalize() type: Method source: - remote: - path: src/OpenTK.Mathematics/Data/Quaternion.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Normalize - path: opentk/src/OpenTK.Mathematics/Data/Quaternion.cs - startLine: 281 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Data\Quaternion.cs + startLine: 282 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -751,13 +671,9 @@ items: fullName: OpenTK.Mathematics.Quaternion.Conjugate() type: Method source: - remote: - path: src/OpenTK.Mathematics/Data/Quaternion.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Conjugate - path: opentk/src/OpenTK.Mathematics/Data/Quaternion.cs - startLine: 291 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Data\Quaternion.cs + startLine: 292 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -779,13 +695,9 @@ items: fullName: OpenTK.Mathematics.Quaternion.Identity type: Field source: - remote: - path: src/OpenTK.Mathematics/Data/Quaternion.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Identity - path: opentk/src/OpenTK.Mathematics/Data/Quaternion.cs - startLine: 299 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Data\Quaternion.cs + startLine: 300 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -808,13 +720,9 @@ items: fullName: OpenTK.Mathematics.Quaternion.Add(OpenTK.Mathematics.Quaternion, OpenTK.Mathematics.Quaternion) type: Method source: - remote: - path: src/OpenTK.Mathematics/Data/Quaternion.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Add - path: opentk/src/OpenTK.Mathematics/Data/Quaternion.cs - startLine: 307 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Data\Quaternion.cs + startLine: 308 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -856,13 +764,9 @@ items: fullName: OpenTK.Mathematics.Quaternion.Add(in OpenTK.Mathematics.Quaternion, in OpenTK.Mathematics.Quaternion, out OpenTK.Mathematics.Quaternion) type: Method source: - remote: - path: src/OpenTK.Mathematics/Data/Quaternion.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Add - path: opentk/src/OpenTK.Mathematics/Data/Quaternion.cs - startLine: 321 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Data\Quaternion.cs + startLine: 322 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -897,13 +801,9 @@ items: fullName: OpenTK.Mathematics.Quaternion.Sub(OpenTK.Mathematics.Quaternion, OpenTK.Mathematics.Quaternion) type: Method source: - remote: - path: src/OpenTK.Mathematics/Data/Quaternion.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Sub - path: opentk/src/OpenTK.Mathematics/Data/Quaternion.cs - startLine: 334 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Data\Quaternion.cs + startLine: 335 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -945,13 +845,9 @@ items: fullName: OpenTK.Mathematics.Quaternion.Sub(in OpenTK.Mathematics.Quaternion, in OpenTK.Mathematics.Quaternion, out OpenTK.Mathematics.Quaternion) type: Method source: - remote: - path: src/OpenTK.Mathematics/Data/Quaternion.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Sub - path: opentk/src/OpenTK.Mathematics/Data/Quaternion.cs - startLine: 348 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Data\Quaternion.cs + startLine: 349 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -986,13 +882,9 @@ items: fullName: OpenTK.Mathematics.Quaternion.Multiply(OpenTK.Mathematics.Quaternion, OpenTK.Mathematics.Quaternion) type: Method source: - remote: - path: src/OpenTK.Mathematics/Data/Quaternion.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Multiply - path: opentk/src/OpenTK.Mathematics/Data/Quaternion.cs - startLine: 361 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Data\Quaternion.cs + startLine: 362 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1034,13 +926,9 @@ items: fullName: OpenTK.Mathematics.Quaternion.Multiply(in OpenTK.Mathematics.Quaternion, in OpenTK.Mathematics.Quaternion, out OpenTK.Mathematics.Quaternion) type: Method source: - remote: - path: src/OpenTK.Mathematics/Data/Quaternion.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Multiply - path: opentk/src/OpenTK.Mathematics/Data/Quaternion.cs - startLine: 374 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Data\Quaternion.cs + startLine: 375 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1075,13 +963,9 @@ items: fullName: OpenTK.Mathematics.Quaternion.Multiply(in OpenTK.Mathematics.Quaternion, float, out OpenTK.Mathematics.Quaternion) type: Method source: - remote: - path: src/OpenTK.Mathematics/Data/Quaternion.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Multiply - path: opentk/src/OpenTK.Mathematics/Data/Quaternion.cs - startLine: 387 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Data\Quaternion.cs + startLine: 388 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1116,13 +1000,9 @@ items: fullName: OpenTK.Mathematics.Quaternion.Multiply(OpenTK.Mathematics.Quaternion, float) type: Method source: - remote: - path: src/OpenTK.Mathematics/Data/Quaternion.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Multiply - path: opentk/src/OpenTK.Mathematics/Data/Quaternion.cs - startLine: 404 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Data\Quaternion.cs + startLine: 405 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1167,13 +1047,9 @@ items: fullName: OpenTK.Mathematics.Quaternion.Conjugate(OpenTK.Mathematics.Quaternion) type: Method source: - remote: - path: src/OpenTK.Mathematics/Data/Quaternion.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Conjugate - path: opentk/src/OpenTK.Mathematics/Data/Quaternion.cs - startLine: 421 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Data\Quaternion.cs + startLine: 422 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1212,13 +1088,9 @@ items: fullName: OpenTK.Mathematics.Quaternion.Conjugate(in OpenTK.Mathematics.Quaternion, out OpenTK.Mathematics.Quaternion) type: Method source: - remote: - path: src/OpenTK.Mathematics/Data/Quaternion.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Conjugate - path: opentk/src/OpenTK.Mathematics/Data/Quaternion.cs - startLine: 432 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Data\Quaternion.cs + startLine: 433 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1250,13 +1122,9 @@ items: fullName: OpenTK.Mathematics.Quaternion.Invert(OpenTK.Mathematics.Quaternion) type: Method source: - remote: - path: src/OpenTK.Mathematics/Data/Quaternion.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Invert - path: opentk/src/OpenTK.Mathematics/Data/Quaternion.cs - startLine: 442 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Data\Quaternion.cs + startLine: 443 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1295,13 +1163,9 @@ items: fullName: OpenTK.Mathematics.Quaternion.Invert(in OpenTK.Mathematics.Quaternion, out OpenTK.Mathematics.Quaternion) type: Method source: - remote: - path: src/OpenTK.Mathematics/Data/Quaternion.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Invert - path: opentk/src/OpenTK.Mathematics/Data/Quaternion.cs - startLine: 454 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Data\Quaternion.cs + startLine: 455 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1333,13 +1197,9 @@ items: fullName: OpenTK.Mathematics.Quaternion.Normalize(OpenTK.Mathematics.Quaternion) type: Method source: - remote: - path: src/OpenTK.Mathematics/Data/Quaternion.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Normalize - path: opentk/src/OpenTK.Mathematics/Data/Quaternion.cs - startLine: 473 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Data\Quaternion.cs + startLine: 474 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1378,13 +1238,9 @@ items: fullName: OpenTK.Mathematics.Quaternion.Normalize(in OpenTK.Mathematics.Quaternion, out OpenTK.Mathematics.Quaternion) type: Method source: - remote: - path: src/OpenTK.Mathematics/Data/Quaternion.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Normalize - path: opentk/src/OpenTK.Mathematics/Data/Quaternion.cs - startLine: 485 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Data\Quaternion.cs + startLine: 486 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1416,13 +1272,9 @@ items: fullName: OpenTK.Mathematics.Quaternion.FromAxisAngle(OpenTK.Mathematics.Vector3, float) type: Method source: - remote: - path: src/OpenTK.Mathematics/Data/Quaternion.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: FromAxisAngle - path: opentk/src/OpenTK.Mathematics/Data/Quaternion.cs - startLine: 497 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Data\Quaternion.cs + startLine: 498 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1467,13 +1319,9 @@ items: fullName: OpenTK.Mathematics.Quaternion.FromEulerAngles(float, float, float) type: Method source: - remote: - path: src/OpenTK.Mathematics/Data/Quaternion.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: FromEulerAngles - path: opentk/src/OpenTK.Mathematics/Data/Quaternion.cs - startLine: 524 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Data\Quaternion.cs + startLine: 525 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1526,13 +1374,9 @@ items: fullName: OpenTK.Mathematics.Quaternion.FromEulerAngles(OpenTK.Mathematics.Vector3) type: Method source: - remote: - path: src/OpenTK.Mathematics/Data/Quaternion.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: FromEulerAngles - path: opentk/src/OpenTK.Mathematics/Data/Quaternion.cs - startLine: 537 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Data\Quaternion.cs + startLine: 538 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1576,13 +1420,9 @@ items: fullName: OpenTK.Mathematics.Quaternion.FromEulerAngles(in OpenTK.Mathematics.Vector3, out OpenTK.Mathematics.Quaternion) type: Method source: - remote: - path: src/OpenTK.Mathematics/Data/Quaternion.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: FromEulerAngles - path: opentk/src/OpenTK.Mathematics/Data/Quaternion.cs - startLine: 550 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Data\Quaternion.cs + startLine: 551 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1619,13 +1459,9 @@ items: fullName: OpenTK.Mathematics.Quaternion.ToEulerAngles(in OpenTK.Mathematics.Quaternion, out OpenTK.Mathematics.Vector3) type: Method source: - remote: - path: src/OpenTK.Mathematics/Data/Quaternion.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToEulerAngles - path: opentk/src/OpenTK.Mathematics/Data/Quaternion.cs - startLine: 570 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Data\Quaternion.cs + startLine: 571 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1657,13 +1493,9 @@ items: fullName: OpenTK.Mathematics.Quaternion.FromMatrix(OpenTK.Mathematics.Matrix3) type: Method source: - remote: - path: src/OpenTK.Mathematics/Data/Quaternion.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: FromMatrix - path: opentk/src/OpenTK.Mathematics/Data/Quaternion.cs - startLine: 580 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Data\Quaternion.cs + startLine: 581 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1702,13 +1534,9 @@ items: fullName: OpenTK.Mathematics.Quaternion.FromMatrix(in OpenTK.Mathematics.Matrix3, out OpenTK.Mathematics.Quaternion) type: Method source: - remote: - path: src/OpenTK.Mathematics/Data/Quaternion.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: FromMatrix - path: opentk/src/OpenTK.Mathematics/Data/Quaternion.cs - startLine: 592 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Data\Quaternion.cs + startLine: 593 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1740,13 +1568,9 @@ items: fullName: OpenTK.Mathematics.Quaternion.Slerp(OpenTK.Mathematics.Quaternion, OpenTK.Mathematics.Quaternion, float) type: Method source: - remote: - path: src/OpenTK.Mathematics/Data/Quaternion.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Slerp - path: opentk/src/OpenTK.Mathematics/Data/Quaternion.cs - startLine: 650 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Data\Quaternion.cs + startLine: 651 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1794,13 +1618,9 @@ items: fullName: OpenTK.Mathematics.Quaternion.operator +(OpenTK.Mathematics.Quaternion, OpenTK.Mathematics.Quaternion) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Data/Quaternion.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Addition - path: opentk/src/OpenTK.Mathematics/Data/Quaternion.cs - startLine: 717 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Data\Quaternion.cs + startLine: 718 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1845,13 +1665,9 @@ items: fullName: OpenTK.Mathematics.Quaternion.operator -(OpenTK.Mathematics.Quaternion, OpenTK.Mathematics.Quaternion) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Data/Quaternion.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Subtraction - path: opentk/src/OpenTK.Mathematics/Data/Quaternion.cs - startLine: 731 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Data\Quaternion.cs + startLine: 732 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1896,13 +1712,9 @@ items: fullName: OpenTK.Mathematics.Quaternion.operator *(OpenTK.Mathematics.Quaternion, OpenTK.Mathematics.Quaternion) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Data/Quaternion.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Multiply - path: opentk/src/OpenTK.Mathematics/Data/Quaternion.cs - startLine: 745 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Data\Quaternion.cs + startLine: 746 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1947,13 +1759,9 @@ items: fullName: OpenTK.Mathematics.Quaternion.operator *(OpenTK.Mathematics.Quaternion, float) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Data/Quaternion.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Multiply - path: opentk/src/OpenTK.Mathematics/Data/Quaternion.cs - startLine: 758 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Data\Quaternion.cs + startLine: 759 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1998,13 +1806,9 @@ items: fullName: OpenTK.Mathematics.Quaternion.operator *(float, OpenTK.Mathematics.Quaternion) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Data/Quaternion.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Multiply - path: opentk/src/OpenTK.Mathematics/Data/Quaternion.cs - startLine: 771 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Data\Quaternion.cs + startLine: 772 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2049,13 +1853,9 @@ items: fullName: OpenTK.Mathematics.Quaternion.operator ==(OpenTK.Mathematics.Quaternion, OpenTK.Mathematics.Quaternion) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Data/Quaternion.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Equality - path: opentk/src/OpenTK.Mathematics/Data/Quaternion.cs - startLine: 789 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Data\Quaternion.cs + startLine: 790 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2090,13 +1890,9 @@ items: fullName: OpenTK.Mathematics.Quaternion.operator !=(OpenTK.Mathematics.Quaternion, OpenTK.Mathematics.Quaternion) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Data/Quaternion.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Inequality - path: opentk/src/OpenTK.Mathematics/Data/Quaternion.cs - startLine: 800 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Data\Quaternion.cs + startLine: 801 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2131,20 +1927,16 @@ items: fullName: OpenTK.Mathematics.Quaternion.Equals(object) type: Method source: - remote: - path: src/OpenTK.Mathematics/Data/Quaternion.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Equals - path: opentk/src/OpenTK.Mathematics/Data/Quaternion.cs - startLine: 806 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Data\Quaternion.cs + startLine: 807 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Indicates whether this instance and a specified object are equal. example: [] syntax: - content: public override bool Equals(object obj) + content: public override readonly bool Equals(object obj) parameters: - id: obj type: System.Object @@ -2170,20 +1962,16 @@ items: fullName: OpenTK.Mathematics.Quaternion.Equals(OpenTK.Mathematics.Quaternion) type: Method source: - remote: - path: src/OpenTK.Mathematics/Data/Quaternion.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Equals - path: opentk/src/OpenTK.Mathematics/Data/Quaternion.cs - startLine: 812 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Data\Quaternion.cs + startLine: 813 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Indicates whether the current object is equal to another object of the same type. example: [] syntax: - content: public bool Equals(Quaternion other) + content: public readonly bool Equals(Quaternion other) parameters: - id: other type: OpenTK.Mathematics.Quaternion @@ -2207,20 +1995,16 @@ items: fullName: OpenTK.Mathematics.Quaternion.GetHashCode() type: Method source: - remote: - path: src/OpenTK.Mathematics/Data/Quaternion.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetHashCode - path: opentk/src/OpenTK.Mathematics/Data/Quaternion.cs - startLine: 819 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Data\Quaternion.cs + startLine: 822 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Returns the hash code for this instance. example: [] syntax: - content: public override int GetHashCode() + content: public override readonly int GetHashCode() return: type: System.Int32 description: A 32-bit signed integer that is the hash code for this instance. @@ -2239,20 +2023,16 @@ items: fullName: OpenTK.Mathematics.Quaternion.ToString() type: Method source: - remote: - path: src/OpenTK.Mathematics/Data/Quaternion.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Mathematics/Data/Quaternion.cs - startLine: 828 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Data\Quaternion.cs + startLine: 831 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Returns a System.String that represents the current Quaternion. example: [] syntax: - content: public override string ToString() + content: public override readonly string ToString() return: type: System.String description: A human-readable representation of the quaternion. @@ -2271,20 +2051,16 @@ items: fullName: OpenTK.Mathematics.Quaternion.ToString(string) type: Method source: - remote: - path: src/OpenTK.Mathematics/Data/Quaternion.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Mathematics/Data/Quaternion.cs - startLine: 834 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Data\Quaternion.cs + startLine: 837 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Formats the value of the current instance using the specified format. example: [] syntax: - content: public string ToString(string format) + content: public readonly string ToString(string format) parameters: - id: format type: System.String @@ -2314,20 +2090,16 @@ items: fullName: OpenTK.Mathematics.Quaternion.ToString(System.IFormatProvider) type: Method source: - remote: - path: src/OpenTK.Mathematics/Data/Quaternion.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Mathematics/Data/Quaternion.cs - startLine: 840 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Data\Quaternion.cs + startLine: 843 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Formats the value of the current instance using the specified format. example: [] syntax: - content: public string ToString(IFormatProvider formatProvider) + content: public readonly string ToString(IFormatProvider formatProvider) parameters: - id: formatProvider type: System.IFormatProvider @@ -2354,20 +2126,16 @@ items: fullName: OpenTK.Mathematics.Quaternion.ToString(string, System.IFormatProvider) type: Method source: - remote: - path: src/OpenTK.Mathematics/Data/Quaternion.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Mathematics/Data/Quaternion.cs - startLine: 846 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Data\Quaternion.cs + startLine: 849 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Formats the value of the current instance using the specified format. example: [] syntax: - content: public string ToString(string format, IFormatProvider formatProvider) + content: public readonly string ToString(string format, IFormatProvider formatProvider) parameters: - id: format type: System.String diff --git a/api/OpenTK.Mathematics.Quaterniond.yml b/api/OpenTK.Mathematics.Quaterniond.yml index ae583f78..8645fd13 100644 --- a/api/OpenTK.Mathematics.Quaterniond.yml +++ b/api/OpenTK.Mathematics.Quaterniond.yml @@ -70,13 +70,9 @@ items: fullName: OpenTK.Mathematics.Quaterniond type: Struct source: - remote: - path: src/OpenTK.Mathematics/Data/Quaterniond.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Quaterniond - path: opentk/src/OpenTK.Mathematics/Data/Quaterniond.cs - startLine: 32 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Data\Quaterniond.cs + startLine: 33 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -114,13 +110,9 @@ items: fullName: OpenTK.Mathematics.Quaterniond.Xyz type: Field source: - remote: - path: src/OpenTK.Mathematics/Data/Quaterniond.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Xyz - path: opentk/src/OpenTK.Mathematics/Data/Quaterniond.cs - startLine: 38 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Data\Quaterniond.cs + startLine: 39 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -143,13 +135,9 @@ items: fullName: OpenTK.Mathematics.Quaterniond.W type: Field source: - remote: - path: src/OpenTK.Mathematics/Data/Quaterniond.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: W - path: opentk/src/OpenTK.Mathematics/Data/Quaterniond.cs - startLine: 43 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Data\Quaterniond.cs + startLine: 44 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -172,13 +160,9 @@ items: fullName: OpenTK.Mathematics.Quaterniond.Quaterniond(OpenTK.Mathematics.Vector3d, double) type: Constructor source: - remote: - path: src/OpenTK.Mathematics/Data/Quaterniond.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Mathematics/Data/Quaterniond.cs - startLine: 50 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Data\Quaterniond.cs + startLine: 51 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -210,13 +194,9 @@ items: fullName: OpenTK.Mathematics.Quaterniond.Quaterniond(double, double, double, double) type: Constructor source: - remote: - path: src/OpenTK.Mathematics/Data/Quaterniond.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Mathematics/Data/Quaterniond.cs - startLine: 63 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Data\Quaterniond.cs + startLine: 64 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -254,13 +234,9 @@ items: fullName: OpenTK.Mathematics.Quaterniond.Quaterniond(double, double, double) type: Constructor source: - remote: - path: src/OpenTK.Mathematics/Data/Quaterniond.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Mathematics/Data/Quaterniond.cs - startLine: 74 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Data\Quaterniond.cs + startLine: 75 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -295,13 +271,9 @@ items: fullName: OpenTK.Mathematics.Quaterniond.Quaterniond(OpenTK.Mathematics.Vector3d) type: Constructor source: - remote: - path: src/OpenTK.Mathematics/Data/Quaterniond.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Mathematics/Data/Quaterniond.cs - startLine: 97 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Data\Quaterniond.cs + startLine: 98 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -330,20 +302,16 @@ items: fullName: OpenTK.Mathematics.Quaterniond.X type: Property source: - remote: - path: src/OpenTK.Mathematics/Data/Quaterniond.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: X - path: opentk/src/OpenTK.Mathematics/Data/Quaterniond.cs - startLine: 105 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Data\Quaterniond.cs + startLine: 106 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the X component of this instance. example: [] syntax: - content: public double X { get; set; } + content: public double X { readonly get; set; } parameters: [] return: type: System.Double @@ -361,20 +329,16 @@ items: fullName: OpenTK.Mathematics.Quaterniond.Y type: Property source: - remote: - path: src/OpenTK.Mathematics/Data/Quaterniond.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Y - path: opentk/src/OpenTK.Mathematics/Data/Quaterniond.cs - startLine: 115 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Data\Quaterniond.cs + startLine: 116 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the Y component of this instance. example: [] syntax: - content: public double Y { get; set; } + content: public double Y { readonly get; set; } parameters: [] return: type: System.Double @@ -392,20 +356,16 @@ items: fullName: OpenTK.Mathematics.Quaterniond.Z type: Property source: - remote: - path: src/OpenTK.Mathematics/Data/Quaterniond.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Z - path: opentk/src/OpenTK.Mathematics/Data/Quaterniond.cs - startLine: 125 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Data\Quaterniond.cs + startLine: 126 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the Z component of this instance. example: [] syntax: - content: public double Z { get; set; } + content: public double Z { readonly get; set; } parameters: [] return: type: System.Double @@ -423,13 +383,9 @@ items: fullName: OpenTK.Mathematics.Quaterniond.ToAxisAngle(out OpenTK.Mathematics.Vector3d, out double) type: Method source: - remote: - path: src/OpenTK.Mathematics/Data/Quaterniond.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToAxisAngle - path: opentk/src/OpenTK.Mathematics/Data/Quaterniond.cs - startLine: 137 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Data\Quaterniond.cs + startLine: 138 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -461,13 +417,9 @@ items: fullName: OpenTK.Mathematics.Quaterniond.ToAxisAngle() type: Method source: - remote: - path: src/OpenTK.Mathematics/Data/Quaterniond.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToAxisAngle - path: opentk/src/OpenTK.Mathematics/Data/Quaterniond.cs - startLine: 148 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Data\Quaterniond.cs + startLine: 149 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -492,20 +444,16 @@ items: fullName: OpenTK.Mathematics.Quaterniond.ToEulerAngles(out OpenTK.Mathematics.Vector3d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Data/Quaterniond.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToEulerAngles - path: opentk/src/OpenTK.Mathematics/Data/Quaterniond.cs - startLine: 180 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Data\Quaterniond.cs + startLine: 181 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Convert the current quaternion to Euler angle representation. example: [] syntax: - content: public void ToEulerAngles(out Vector3d angles) + content: public readonly void ToEulerAngles(out Vector3d angles) parameters: - id: angles type: OpenTK.Mathematics.Vector3d @@ -527,20 +475,16 @@ items: fullName: OpenTK.Mathematics.Quaterniond.ToEulerAngles() type: Method source: - remote: - path: src/OpenTK.Mathematics/Data/Quaterniond.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToEulerAngles - path: opentk/src/OpenTK.Mathematics/Data/Quaterniond.cs - startLine: 189 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Data\Quaterniond.cs + startLine: 190 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Convert this instance to an Euler angle representation. example: [] syntax: - content: public Vector3d ToEulerAngles() + content: public readonly Vector3d ToEulerAngles() return: type: OpenTK.Mathematics.Vector3d description: The Euler angles in radians. @@ -558,20 +502,16 @@ items: fullName: OpenTK.Mathematics.Quaterniond.Length type: Property source: - remote: - path: src/OpenTK.Mathematics/Data/Quaterniond.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Length - path: opentk/src/OpenTK.Mathematics/Data/Quaterniond.cs - startLine: 237 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Data\Quaterniond.cs + startLine: 238 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets the length (magnitude) of the Quaterniond. example: [] syntax: - content: public double Length { get; } + content: public readonly double Length { get; } parameters: [] return: type: System.Double @@ -592,20 +532,16 @@ items: fullName: OpenTK.Mathematics.Quaterniond.LengthSquared type: Property source: - remote: - path: src/OpenTK.Mathematics/Data/Quaterniond.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: LengthSquared - path: opentk/src/OpenTK.Mathematics/Data/Quaterniond.cs - startLine: 242 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Data\Quaterniond.cs + startLine: 243 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets the square of the Quaterniond length (magnitude). example: [] syntax: - content: public double LengthSquared { get; } + content: public readonly double LengthSquared { get; } parameters: [] return: type: System.Double @@ -623,20 +559,16 @@ items: fullName: OpenTK.Mathematics.Quaterniond.Normalized() type: Method source: - remote: - path: src/OpenTK.Mathematics/Data/Quaterniond.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Normalized - path: opentk/src/OpenTK.Mathematics/Data/Quaterniond.cs - startLine: 248 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Data\Quaterniond.cs + startLine: 249 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Returns a copy of the Quaterniond scaled to unit length. example: [] syntax: - content: public Quaterniond Normalized() + content: public readonly Quaterniond Normalized() return: type: OpenTK.Mathematics.Quaterniond description: The normalized copy. @@ -654,13 +586,9 @@ items: fullName: OpenTK.Mathematics.Quaterniond.Invert() type: Method source: - remote: - path: src/OpenTK.Mathematics/Data/Quaterniond.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Invert - path: opentk/src/OpenTK.Mathematics/Data/Quaterniond.cs - startLine: 258 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Data\Quaterniond.cs + startLine: 259 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -682,20 +610,16 @@ items: fullName: OpenTK.Mathematics.Quaterniond.Inverted() type: Method source: - remote: - path: src/OpenTK.Mathematics/Data/Quaterniond.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Inverted - path: opentk/src/OpenTK.Mathematics/Data/Quaterniond.cs - startLine: 267 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Data\Quaterniond.cs + startLine: 268 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Returns the inverse of this Quaterniond. example: [] syntax: - content: public Quaterniond Inverted() + content: public readonly Quaterniond Inverted() return: type: OpenTK.Mathematics.Quaterniond description: The inverted copy. @@ -713,13 +637,9 @@ items: fullName: OpenTK.Mathematics.Quaterniond.Normalize() type: Method source: - remote: - path: src/OpenTK.Mathematics/Data/Quaterniond.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Normalize - path: opentk/src/OpenTK.Mathematics/Data/Quaterniond.cs - startLine: 277 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Data\Quaterniond.cs + startLine: 278 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -741,13 +661,9 @@ items: fullName: OpenTK.Mathematics.Quaterniond.Conjugate() type: Method source: - remote: - path: src/OpenTK.Mathematics/Data/Quaterniond.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Conjugate - path: opentk/src/OpenTK.Mathematics/Data/Quaterniond.cs - startLine: 287 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Data\Quaterniond.cs + startLine: 288 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -769,13 +685,9 @@ items: fullName: OpenTK.Mathematics.Quaterniond.Identity type: Field source: - remote: - path: src/OpenTK.Mathematics/Data/Quaterniond.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Identity - path: opentk/src/OpenTK.Mathematics/Data/Quaterniond.cs - startLine: 295 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Data\Quaterniond.cs + startLine: 296 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -798,13 +710,9 @@ items: fullName: OpenTK.Mathematics.Quaterniond.Add(OpenTK.Mathematics.Quaterniond, OpenTK.Mathematics.Quaterniond) type: Method source: - remote: - path: src/OpenTK.Mathematics/Data/Quaterniond.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Add - path: opentk/src/OpenTK.Mathematics/Data/Quaterniond.cs - startLine: 303 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Data\Quaterniond.cs + startLine: 304 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -846,13 +754,9 @@ items: fullName: OpenTK.Mathematics.Quaterniond.Add(in OpenTK.Mathematics.Quaterniond, in OpenTK.Mathematics.Quaterniond, out OpenTK.Mathematics.Quaterniond) type: Method source: - remote: - path: src/OpenTK.Mathematics/Data/Quaterniond.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Add - path: opentk/src/OpenTK.Mathematics/Data/Quaterniond.cs - startLine: 317 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Data\Quaterniond.cs + startLine: 318 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -887,13 +791,9 @@ items: fullName: OpenTK.Mathematics.Quaterniond.Sub(OpenTK.Mathematics.Quaterniond, OpenTK.Mathematics.Quaterniond) type: Method source: - remote: - path: src/OpenTK.Mathematics/Data/Quaterniond.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Sub - path: opentk/src/OpenTK.Mathematics/Data/Quaterniond.cs - startLine: 330 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Data\Quaterniond.cs + startLine: 331 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -935,13 +835,9 @@ items: fullName: OpenTK.Mathematics.Quaterniond.Sub(in OpenTK.Mathematics.Quaterniond, in OpenTK.Mathematics.Quaterniond, out OpenTK.Mathematics.Quaterniond) type: Method source: - remote: - path: src/OpenTK.Mathematics/Data/Quaterniond.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Sub - path: opentk/src/OpenTK.Mathematics/Data/Quaterniond.cs - startLine: 344 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Data\Quaterniond.cs + startLine: 345 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -976,13 +872,9 @@ items: fullName: OpenTK.Mathematics.Quaterniond.Multiply(OpenTK.Mathematics.Quaterniond, OpenTK.Mathematics.Quaterniond) type: Method source: - remote: - path: src/OpenTK.Mathematics/Data/Quaterniond.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Multiply - path: opentk/src/OpenTK.Mathematics/Data/Quaterniond.cs - startLine: 357 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Data\Quaterniond.cs + startLine: 358 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1024,13 +916,9 @@ items: fullName: OpenTK.Mathematics.Quaterniond.Multiply(in OpenTK.Mathematics.Quaterniond, in OpenTK.Mathematics.Quaterniond, out OpenTK.Mathematics.Quaterniond) type: Method source: - remote: - path: src/OpenTK.Mathematics/Data/Quaterniond.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Multiply - path: opentk/src/OpenTK.Mathematics/Data/Quaterniond.cs - startLine: 370 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Data\Quaterniond.cs + startLine: 371 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1065,13 +953,9 @@ items: fullName: OpenTK.Mathematics.Quaterniond.Multiply(in OpenTK.Mathematics.Quaterniond, double, out OpenTK.Mathematics.Quaterniond) type: Method source: - remote: - path: src/OpenTK.Mathematics/Data/Quaterniond.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Multiply - path: opentk/src/OpenTK.Mathematics/Data/Quaterniond.cs - startLine: 383 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Data\Quaterniond.cs + startLine: 384 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1106,13 +990,9 @@ items: fullName: OpenTK.Mathematics.Quaterniond.Multiply(OpenTK.Mathematics.Quaterniond, double) type: Method source: - remote: - path: src/OpenTK.Mathematics/Data/Quaterniond.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Multiply - path: opentk/src/OpenTK.Mathematics/Data/Quaterniond.cs - startLine: 400 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Data\Quaterniond.cs + startLine: 401 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1157,13 +1037,9 @@ items: fullName: OpenTK.Mathematics.Quaterniond.Conjugate(OpenTK.Mathematics.Quaterniond) type: Method source: - remote: - path: src/OpenTK.Mathematics/Data/Quaterniond.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Conjugate - path: opentk/src/OpenTK.Mathematics/Data/Quaterniond.cs - startLine: 417 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Data\Quaterniond.cs + startLine: 418 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1202,13 +1078,9 @@ items: fullName: OpenTK.Mathematics.Quaterniond.Conjugate(in OpenTK.Mathematics.Quaterniond, out OpenTK.Mathematics.Quaterniond) type: Method source: - remote: - path: src/OpenTK.Mathematics/Data/Quaterniond.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Conjugate - path: opentk/src/OpenTK.Mathematics/Data/Quaterniond.cs - startLine: 428 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Data\Quaterniond.cs + startLine: 429 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1240,13 +1112,9 @@ items: fullName: OpenTK.Mathematics.Quaterniond.Invert(OpenTK.Mathematics.Quaterniond) type: Method source: - remote: - path: src/OpenTK.Mathematics/Data/Quaterniond.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Invert - path: opentk/src/OpenTK.Mathematics/Data/Quaterniond.cs - startLine: 438 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Data\Quaterniond.cs + startLine: 439 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1285,13 +1153,9 @@ items: fullName: OpenTK.Mathematics.Quaterniond.Invert(in OpenTK.Mathematics.Quaterniond, out OpenTK.Mathematics.Quaterniond) type: Method source: - remote: - path: src/OpenTK.Mathematics/Data/Quaterniond.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Invert - path: opentk/src/OpenTK.Mathematics/Data/Quaterniond.cs - startLine: 450 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Data\Quaterniond.cs + startLine: 451 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1323,13 +1187,9 @@ items: fullName: OpenTK.Mathematics.Quaterniond.Normalize(OpenTK.Mathematics.Quaterniond) type: Method source: - remote: - path: src/OpenTK.Mathematics/Data/Quaterniond.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Normalize - path: opentk/src/OpenTK.Mathematics/Data/Quaterniond.cs - startLine: 469 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Data\Quaterniond.cs + startLine: 470 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1368,13 +1228,9 @@ items: fullName: OpenTK.Mathematics.Quaterniond.Normalize(in OpenTK.Mathematics.Quaterniond, out OpenTK.Mathematics.Quaterniond) type: Method source: - remote: - path: src/OpenTK.Mathematics/Data/Quaterniond.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Normalize - path: opentk/src/OpenTK.Mathematics/Data/Quaterniond.cs - startLine: 481 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Data\Quaterniond.cs + startLine: 482 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1406,13 +1262,9 @@ items: fullName: OpenTK.Mathematics.Quaterniond.FromAxisAngle(OpenTK.Mathematics.Vector3d, double) type: Method source: - remote: - path: src/OpenTK.Mathematics/Data/Quaterniond.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: FromAxisAngle - path: opentk/src/OpenTK.Mathematics/Data/Quaterniond.cs - startLine: 493 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Data\Quaterniond.cs + startLine: 494 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1457,13 +1309,9 @@ items: fullName: OpenTK.Mathematics.Quaterniond.FromEulerAngles(double, double, double) type: Method source: - remote: - path: src/OpenTK.Mathematics/Data/Quaterniond.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: FromEulerAngles - path: opentk/src/OpenTK.Mathematics/Data/Quaterniond.cs - startLine: 518 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Data\Quaterniond.cs + startLine: 519 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1511,13 +1359,9 @@ items: fullName: OpenTK.Mathematics.Quaterniond.FromEulerAngles(OpenTK.Mathematics.Vector3d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Data/Quaterniond.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: FromEulerAngles - path: opentk/src/OpenTK.Mathematics/Data/Quaterniond.cs - startLine: 529 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Data\Quaterniond.cs + startLine: 530 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1556,13 +1400,9 @@ items: fullName: OpenTK.Mathematics.Quaterniond.FromEulerAngles(in OpenTK.Mathematics.Vector3d, out OpenTK.Mathematics.Quaterniond) type: Method source: - remote: - path: src/OpenTK.Mathematics/Data/Quaterniond.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: FromEulerAngles - path: opentk/src/OpenTK.Mathematics/Data/Quaterniond.cs - startLine: 540 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Data\Quaterniond.cs + startLine: 541 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1594,13 +1434,9 @@ items: fullName: OpenTK.Mathematics.Quaterniond.ToEulerAngles(in OpenTK.Mathematics.Quaterniond, out OpenTK.Mathematics.Vector3d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Data/Quaterniond.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToEulerAngles - path: opentk/src/OpenTK.Mathematics/Data/Quaterniond.cs - startLine: 560 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Data\Quaterniond.cs + startLine: 561 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1632,13 +1468,9 @@ items: fullName: OpenTK.Mathematics.Quaterniond.FromMatrix(OpenTK.Mathematics.Matrix3d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Data/Quaterniond.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: FromMatrix - path: opentk/src/OpenTK.Mathematics/Data/Quaterniond.cs - startLine: 570 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Data\Quaterniond.cs + startLine: 571 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1677,13 +1509,9 @@ items: fullName: OpenTK.Mathematics.Quaterniond.FromMatrix(in OpenTK.Mathematics.Matrix3d, out OpenTK.Mathematics.Quaterniond) type: Method source: - remote: - path: src/OpenTK.Mathematics/Data/Quaterniond.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: FromMatrix - path: opentk/src/OpenTK.Mathematics/Data/Quaterniond.cs - startLine: 582 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Data\Quaterniond.cs + startLine: 583 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1715,13 +1543,9 @@ items: fullName: OpenTK.Mathematics.Quaterniond.Slerp(OpenTK.Mathematics.Quaterniond, OpenTK.Mathematics.Quaterniond, double) type: Method source: - remote: - path: src/OpenTK.Mathematics/Data/Quaterniond.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Slerp - path: opentk/src/OpenTK.Mathematics/Data/Quaterniond.cs - startLine: 640 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Data\Quaterniond.cs + startLine: 641 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1769,13 +1593,9 @@ items: fullName: OpenTK.Mathematics.Quaterniond.operator +(OpenTK.Mathematics.Quaterniond, OpenTK.Mathematics.Quaterniond) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Data/Quaterniond.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Addition - path: opentk/src/OpenTK.Mathematics/Data/Quaterniond.cs - startLine: 707 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Data\Quaterniond.cs + startLine: 708 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1820,13 +1640,9 @@ items: fullName: OpenTK.Mathematics.Quaterniond.operator -(OpenTK.Mathematics.Quaterniond, OpenTK.Mathematics.Quaterniond) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Data/Quaterniond.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Subtraction - path: opentk/src/OpenTK.Mathematics/Data/Quaterniond.cs - startLine: 721 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Data\Quaterniond.cs + startLine: 722 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1871,13 +1687,9 @@ items: fullName: OpenTK.Mathematics.Quaterniond.operator *(OpenTK.Mathematics.Quaterniond, OpenTK.Mathematics.Quaterniond) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Data/Quaterniond.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Multiply - path: opentk/src/OpenTK.Mathematics/Data/Quaterniond.cs - startLine: 735 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Data\Quaterniond.cs + startLine: 736 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1922,13 +1734,9 @@ items: fullName: OpenTK.Mathematics.Quaterniond.operator *(OpenTK.Mathematics.Quaterniond, double) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Data/Quaterniond.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Multiply - path: opentk/src/OpenTK.Mathematics/Data/Quaterniond.cs - startLine: 748 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Data\Quaterniond.cs + startLine: 749 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1973,13 +1781,9 @@ items: fullName: OpenTK.Mathematics.Quaterniond.operator *(double, OpenTK.Mathematics.Quaterniond) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Data/Quaterniond.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Multiply - path: opentk/src/OpenTK.Mathematics/Data/Quaterniond.cs - startLine: 761 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Data\Quaterniond.cs + startLine: 762 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2024,13 +1828,9 @@ items: fullName: OpenTK.Mathematics.Quaterniond.operator ==(OpenTK.Mathematics.Quaterniond, OpenTK.Mathematics.Quaterniond) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Data/Quaterniond.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Equality - path: opentk/src/OpenTK.Mathematics/Data/Quaterniond.cs - startLine: 779 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Data\Quaterniond.cs + startLine: 780 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2065,13 +1865,9 @@ items: fullName: OpenTK.Mathematics.Quaterniond.operator !=(OpenTK.Mathematics.Quaterniond, OpenTK.Mathematics.Quaterniond) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Data/Quaterniond.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Inequality - path: opentk/src/OpenTK.Mathematics/Data/Quaterniond.cs - startLine: 790 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Data\Quaterniond.cs + startLine: 791 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2106,20 +1902,16 @@ items: fullName: OpenTK.Mathematics.Quaterniond.Equals(object) type: Method source: - remote: - path: src/OpenTK.Mathematics/Data/Quaterniond.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Equals - path: opentk/src/OpenTK.Mathematics/Data/Quaterniond.cs - startLine: 796 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Data\Quaterniond.cs + startLine: 797 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Indicates whether this instance and a specified object are equal. example: [] syntax: - content: public override bool Equals(object obj) + content: public override readonly bool Equals(object obj) parameters: - id: obj type: System.Object @@ -2145,20 +1937,16 @@ items: fullName: OpenTK.Mathematics.Quaterniond.Equals(OpenTK.Mathematics.Quaterniond) type: Method source: - remote: - path: src/OpenTK.Mathematics/Data/Quaterniond.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Equals - path: opentk/src/OpenTK.Mathematics/Data/Quaterniond.cs - startLine: 802 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Data\Quaterniond.cs + startLine: 803 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Indicates whether the current object is equal to another object of the same type. example: [] syntax: - content: public bool Equals(Quaterniond other) + content: public readonly bool Equals(Quaterniond other) parameters: - id: other type: OpenTK.Mathematics.Quaterniond @@ -2182,20 +1970,16 @@ items: fullName: OpenTK.Mathematics.Quaterniond.GetHashCode() type: Method source: - remote: - path: src/OpenTK.Mathematics/Data/Quaterniond.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetHashCode - path: opentk/src/OpenTK.Mathematics/Data/Quaterniond.cs - startLine: 809 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Data\Quaterniond.cs + startLine: 812 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Returns the hash code for this instance. example: [] syntax: - content: public override int GetHashCode() + content: public override readonly int GetHashCode() return: type: System.Int32 description: A 32-bit signed integer that is the hash code for this instance. @@ -2214,20 +1998,16 @@ items: fullName: OpenTK.Mathematics.Quaterniond.ToString() type: Method source: - remote: - path: src/OpenTK.Mathematics/Data/Quaterniond.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Mathematics/Data/Quaterniond.cs - startLine: 818 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Data\Quaterniond.cs + startLine: 821 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Returns a System.String that represents the current Quaterniond. example: [] syntax: - content: public override string ToString() + content: public override readonly string ToString() return: type: System.String description: A human-readable representation of the quaternion. @@ -2246,20 +2026,16 @@ items: fullName: OpenTK.Mathematics.Quaterniond.ToString(string) type: Method source: - remote: - path: src/OpenTK.Mathematics/Data/Quaterniond.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Mathematics/Data/Quaterniond.cs - startLine: 824 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Data\Quaterniond.cs + startLine: 827 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Formats the value of the current instance using the specified format. example: [] syntax: - content: public string ToString(string format) + content: public readonly string ToString(string format) parameters: - id: format type: System.String @@ -2289,20 +2065,16 @@ items: fullName: OpenTK.Mathematics.Quaterniond.ToString(System.IFormatProvider) type: Method source: - remote: - path: src/OpenTK.Mathematics/Data/Quaterniond.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Mathematics/Data/Quaterniond.cs - startLine: 830 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Data\Quaterniond.cs + startLine: 833 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Formats the value of the current instance using the specified format. example: [] syntax: - content: public string ToString(IFormatProvider formatProvider) + content: public readonly string ToString(IFormatProvider formatProvider) parameters: - id: formatProvider type: System.IFormatProvider @@ -2329,20 +2101,16 @@ items: fullName: OpenTK.Mathematics.Quaterniond.ToString(string, System.IFormatProvider) type: Method source: - remote: - path: src/OpenTK.Mathematics/Data/Quaterniond.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Mathematics/Data/Quaterniond.cs - startLine: 836 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Data\Quaterniond.cs + startLine: 839 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Formats the value of the current instance using the specified format. example: [] syntax: - content: public string ToString(string format, IFormatProvider formatProvider) + content: public readonly string ToString(string format, IFormatProvider formatProvider) parameters: - id: format type: System.String diff --git a/api/OpenTK.Mathematics.Rgb.yml b/api/OpenTK.Mathematics.Rgb.yml index 66d2f897..53989400 100644 --- a/api/OpenTK.Mathematics.Rgb.yml +++ b/api/OpenTK.Mathematics.Rgb.yml @@ -13,12 +13,8 @@ items: fullName: OpenTK.Mathematics.Rgb type: Class source: - remote: - path: src/OpenTK.Mathematics/Colors/Color3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Rgb - path: opentk/src/OpenTK.Mathematics/Colors/Color3.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color3.cs startLine: 17 assemblies: - OpenTK.Mathematics diff --git a/api/OpenTK.Mathematics.Rgba.yml b/api/OpenTK.Mathematics.Rgba.yml index ca7bc580..3b9614a4 100644 --- a/api/OpenTK.Mathematics.Rgba.yml +++ b/api/OpenTK.Mathematics.Rgba.yml @@ -13,12 +13,8 @@ items: fullName: OpenTK.Mathematics.Rgba type: Class source: - remote: - path: src/OpenTK.Mathematics/Colors/Color4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Rgba - path: opentk/src/OpenTK.Mathematics/Colors/Color4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Colors\Color4.cs startLine: 17 assemblies: - OpenTK.Mathematics diff --git a/api/OpenTK.Mathematics.Vector2.yml b/api/OpenTK.Mathematics.Vector2.yml index ca62788f..b006d97a 100644 --- a/api/OpenTK.Mathematics.Vector2.yml +++ b/api/OpenTK.Mathematics.Vector2.yml @@ -7,6 +7,9 @@ items: children: - OpenTK.Mathematics.Vector2.#ctor(System.Single) - OpenTK.Mathematics.Vector2.#ctor(System.Single,System.Single) + - OpenTK.Mathematics.Vector2.Abs + - OpenTK.Mathematics.Vector2.Abs(OpenTK.Mathematics.Vector2) + - OpenTK.Mathematics.Vector2.Abs(OpenTK.Mathematics.Vector2@,OpenTK.Mathematics.Vector2@) - OpenTK.Mathematics.Vector2.Add(OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2) - OpenTK.Mathematics.Vector2.Add(OpenTK.Mathematics.Vector2@,OpenTK.Mathematics.Vector2@,OpenTK.Mathematics.Vector2@) - OpenTK.Mathematics.Vector2.BaryCentric(OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2,System.Single,System.Single) @@ -28,6 +31,8 @@ items: - OpenTK.Mathematics.Vector2.Divide(OpenTK.Mathematics.Vector2@,System.Single,OpenTK.Mathematics.Vector2@) - OpenTK.Mathematics.Vector2.Dot(OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2) - OpenTK.Mathematics.Vector2.Dot(OpenTK.Mathematics.Vector2@,OpenTK.Mathematics.Vector2@,System.Single@) + - OpenTK.Mathematics.Vector2.Elerp(OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2,System.Single) + - OpenTK.Mathematics.Vector2.Elerp(OpenTK.Mathematics.Vector2@,OpenTK.Mathematics.Vector2@,System.Single,OpenTK.Mathematics.Vector2@) - OpenTK.Mathematics.Vector2.Equals(OpenTK.Mathematics.Vector2) - OpenTK.Mathematics.Vector2.Equals(System.Object) - OpenTK.Mathematics.Vector2.GetHashCode @@ -61,7 +66,10 @@ items: - OpenTK.Mathematics.Vector2.PerpendicularLeft - OpenTK.Mathematics.Vector2.PerpendicularRight - OpenTK.Mathematics.Vector2.PositiveInfinity + - OpenTK.Mathematics.Vector2.ReciprocalLengthFast - OpenTK.Mathematics.Vector2.SizeInBytes + - OpenTK.Mathematics.Vector2.Slerp(OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2,System.Single) + - OpenTK.Mathematics.Vector2.Slerp(OpenTK.Mathematics.Vector2@,OpenTK.Mathematics.Vector2@,System.Single,OpenTK.Mathematics.Vector2@) - OpenTK.Mathematics.Vector2.Subtract(OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2) - OpenTK.Mathematics.Vector2.Subtract(OpenTK.Mathematics.Vector2@,OpenTK.Mathematics.Vector2@,OpenTK.Mathematics.Vector2@) - OpenTK.Mathematics.Vector2.ToString @@ -107,13 +115,9 @@ items: fullName: OpenTK.Mathematics.Vector2 type: Struct source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Vector2 - path: opentk/src/OpenTK.Mathematics/Vector/Vector2.cs - startLine: 37 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2.cs + startLine: 36 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -152,13 +156,9 @@ items: fullName: OpenTK.Mathematics.Vector2.X type: Field source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: X - path: opentk/src/OpenTK.Mathematics/Vector/Vector2.cs - startLine: 44 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2.cs + startLine: 43 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -181,13 +181,9 @@ items: fullName: OpenTK.Mathematics.Vector2.Y type: Field source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Y - path: opentk/src/OpenTK.Mathematics/Vector/Vector2.cs - startLine: 49 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2.cs + startLine: 48 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -210,13 +206,9 @@ items: fullName: OpenTK.Mathematics.Vector2.Vector2(float) type: Constructor source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Mathematics/Vector/Vector2.cs - startLine: 55 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2.cs + startLine: 54 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -245,13 +237,9 @@ items: fullName: OpenTK.Mathematics.Vector2.Vector2(float, float) type: Constructor source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Mathematics/Vector/Vector2.cs - startLine: 66 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2.cs + startLine: 65 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -283,20 +271,16 @@ items: fullName: OpenTK.Mathematics.Vector2.this[int] type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: this[] - path: opentk/src/OpenTK.Mathematics/Vector/Vector2.cs - startLine: 77 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2.cs + startLine: 76 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at the index of the Vector. example: [] syntax: - content: public float this[int index] { get; set; } + content: public float this[int index] { readonly get; set; } parameters: - id: index type: System.Int32 @@ -324,20 +308,16 @@ items: fullName: OpenTK.Mathematics.Vector2.Length type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Length - path: opentk/src/OpenTK.Mathematics/Vector/Vector2.cs - startLine: 116 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2.cs + startLine: 115 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets the length (magnitude) of the vector. example: [] syntax: - content: public float Length { get; } + content: public readonly float Length { get; } parameters: [] return: type: System.Single @@ -346,6 +326,33 @@ items: seealso: - linkId: OpenTK.Mathematics.Vector2.LengthSquared commentId: P:OpenTK.Mathematics.Vector2.LengthSquared +- uid: OpenTK.Mathematics.Vector2.ReciprocalLengthFast + commentId: P:OpenTK.Mathematics.Vector2.ReciprocalLengthFast + id: ReciprocalLengthFast + parent: OpenTK.Mathematics.Vector2 + langs: + - csharp + - vb + name: ReciprocalLengthFast + nameWithType: Vector2.ReciprocalLengthFast + fullName: OpenTK.Mathematics.Vector2.ReciprocalLengthFast + type: Property + source: + id: ReciprocalLengthFast + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2.cs + startLine: 120 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: Gets an approximation of 1 over the length (magnitude) of the vector. + example: [] + syntax: + content: public readonly float ReciprocalLengthFast { get; } + parameters: [] + return: + type: System.Single + content.vb: Public ReadOnly Property ReciprocalLengthFast As Single + overload: OpenTK.Mathematics.Vector2.ReciprocalLengthFast* - uid: OpenTK.Mathematics.Vector2.LengthFast commentId: P:OpenTK.Mathematics.Vector2.LengthFast id: LengthFast @@ -358,24 +365,17 @@ items: fullName: OpenTK.Mathematics.Vector2.LengthFast type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: LengthFast - path: opentk/src/OpenTK.Mathematics/Vector/Vector2.cs - startLine: 127 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2.cs + startLine: 130 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets an approximation of the vector length (magnitude). - remarks: >- - This property uses an approximation of the square root function to calculate vector magnitude, with - - an upper error bound of 0.001. + remarks: This property uses an approximation of the square root function to calculate vector magnitude. example: [] syntax: - content: public float LengthFast { get; } + content: public readonly float LengthFast { get; } parameters: [] return: type: System.Single @@ -396,13 +396,9 @@ items: fullName: OpenTK.Mathematics.Vector2.LengthSquared type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: LengthSquared - path: opentk/src/OpenTK.Mathematics/Vector/Vector2.cs - startLine: 138 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2.cs + startLine: 141 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -413,7 +409,7 @@ items: for comparisons. example: [] syntax: - content: public float LengthSquared { get; } + content: public readonly float LengthSquared { get; } parameters: [] return: type: System.Single @@ -434,20 +430,16 @@ items: fullName: OpenTK.Mathematics.Vector2.PerpendicularRight type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: PerpendicularRight - path: opentk/src/OpenTK.Mathematics/Vector/Vector2.cs - startLine: 143 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2.cs + startLine: 146 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets the perpendicular vector on the right side of this vector. example: [] syntax: - content: public Vector2 PerpendicularRight { get; } + content: public readonly Vector2 PerpendicularRight { get; } parameters: [] return: type: OpenTK.Mathematics.Vector2 @@ -465,20 +457,16 @@ items: fullName: OpenTK.Mathematics.Vector2.PerpendicularLeft type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: PerpendicularLeft - path: opentk/src/OpenTK.Mathematics/Vector/Vector2.cs - startLine: 148 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2.cs + startLine: 151 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets the perpendicular vector on the left side of this vector. example: [] syntax: - content: public Vector2 PerpendicularLeft { get; } + content: public readonly Vector2 PerpendicularLeft { get; } parameters: [] return: type: OpenTK.Mathematics.Vector2 @@ -496,20 +484,16 @@ items: fullName: OpenTK.Mathematics.Vector2.Normalized() type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Normalized - path: opentk/src/OpenTK.Mathematics/Vector/Vector2.cs - startLine: 154 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2.cs + startLine: 157 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Returns a copy of the Vector2 scaled to unit length. example: [] syntax: - content: public Vector2 Normalized() + content: public readonly Vector2 Normalized() return: type: OpenTK.Mathematics.Vector2 description: The normalized copy. @@ -527,13 +511,9 @@ items: fullName: OpenTK.Mathematics.Vector2.Normalize() type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Normalize - path: opentk/src/OpenTK.Mathematics/Vector/Vector2.cs - startLine: 164 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2.cs + startLine: 167 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -555,13 +535,9 @@ items: fullName: OpenTK.Mathematics.Vector2.NormalizeFast() type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: NormalizeFast - path: opentk/src/OpenTK.Mathematics/Vector/Vector2.cs - startLine: 174 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2.cs + startLine: 177 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -571,6 +547,33 @@ items: content: public void NormalizeFast() content.vb: Public Sub NormalizeFast() overload: OpenTK.Mathematics.Vector2.NormalizeFast* +- uid: OpenTK.Mathematics.Vector2.Abs + commentId: M:OpenTK.Mathematics.Vector2.Abs + id: Abs + parent: OpenTK.Mathematics.Vector2 + langs: + - csharp + - vb + name: Abs() + nameWithType: Vector2.Abs() + fullName: OpenTK.Mathematics.Vector2.Abs() + type: Method + source: + id: Abs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2.cs + startLine: 188 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: Returns a new vector that is the component-wise absolute value of the vector. + example: [] + syntax: + content: public readonly Vector2 Abs() + return: + type: OpenTK.Mathematics.Vector2 + description: The component-wise absolute value vector. + content.vb: Public Function Abs() As Vector2 + overload: OpenTK.Mathematics.Vector2.Abs* - uid: OpenTK.Mathematics.Vector2.UnitX commentId: F:OpenTK.Mathematics.Vector2.UnitX id: UnitX @@ -583,13 +586,9 @@ items: fullName: OpenTK.Mathematics.Vector2.UnitX type: Field source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: UnitX - path: opentk/src/OpenTK.Mathematics/Vector/Vector2.cs - startLine: 184 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2.cs + startLine: 199 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -612,13 +611,9 @@ items: fullName: OpenTK.Mathematics.Vector2.UnitY type: Field source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: UnitY - path: opentk/src/OpenTK.Mathematics/Vector/Vector2.cs - startLine: 189 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2.cs + startLine: 204 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -641,13 +636,9 @@ items: fullName: OpenTK.Mathematics.Vector2.Zero type: Field source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Zero - path: opentk/src/OpenTK.Mathematics/Vector/Vector2.cs - startLine: 194 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2.cs + startLine: 209 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -670,13 +661,9 @@ items: fullName: OpenTK.Mathematics.Vector2.One type: Field source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: One - path: opentk/src/OpenTK.Mathematics/Vector/Vector2.cs - startLine: 199 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2.cs + startLine: 214 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -699,13 +686,9 @@ items: fullName: OpenTK.Mathematics.Vector2.PositiveInfinity type: Field source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: PositiveInfinity - path: opentk/src/OpenTK.Mathematics/Vector/Vector2.cs - startLine: 204 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2.cs + startLine: 219 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -728,13 +711,9 @@ items: fullName: OpenTK.Mathematics.Vector2.NegativeInfinity type: Field source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: NegativeInfinity - path: opentk/src/OpenTK.Mathematics/Vector/Vector2.cs - startLine: 209 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2.cs + startLine: 224 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -757,13 +736,9 @@ items: fullName: OpenTK.Mathematics.Vector2.SizeInBytes type: Field source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SizeInBytes - path: opentk/src/OpenTK.Mathematics/Vector/Vector2.cs - startLine: 214 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2.cs + startLine: 229 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -786,13 +761,9 @@ items: fullName: OpenTK.Mathematics.Vector2.Add(OpenTK.Mathematics.Vector2, OpenTK.Mathematics.Vector2) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Add - path: opentk/src/OpenTK.Mathematics/Vector/Vector2.cs - startLine: 222 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2.cs + startLine: 237 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -834,13 +805,9 @@ items: fullName: OpenTK.Mathematics.Vector2.Add(in OpenTK.Mathematics.Vector2, in OpenTK.Mathematics.Vector2, out OpenTK.Mathematics.Vector2) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Add - path: opentk/src/OpenTK.Mathematics/Vector/Vector2.cs - startLine: 235 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2.cs + startLine: 250 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -875,13 +842,9 @@ items: fullName: OpenTK.Mathematics.Vector2.Subtract(OpenTK.Mathematics.Vector2, OpenTK.Mathematics.Vector2) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Subtract - path: opentk/src/OpenTK.Mathematics/Vector/Vector2.cs - startLine: 247 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2.cs + startLine: 262 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -923,13 +886,9 @@ items: fullName: OpenTK.Mathematics.Vector2.Subtract(in OpenTK.Mathematics.Vector2, in OpenTK.Mathematics.Vector2, out OpenTK.Mathematics.Vector2) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Subtract - path: opentk/src/OpenTK.Mathematics/Vector/Vector2.cs - startLine: 260 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2.cs + startLine: 275 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -964,13 +923,9 @@ items: fullName: OpenTK.Mathematics.Vector2.Multiply(OpenTK.Mathematics.Vector2, float) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Multiply - path: opentk/src/OpenTK.Mathematics/Vector/Vector2.cs - startLine: 272 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2.cs + startLine: 287 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1015,13 +970,9 @@ items: fullName: OpenTK.Mathematics.Vector2.Multiply(in OpenTK.Mathematics.Vector2, float, out OpenTK.Mathematics.Vector2) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Multiply - path: opentk/src/OpenTK.Mathematics/Vector/Vector2.cs - startLine: 285 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2.cs + startLine: 300 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1056,13 +1007,9 @@ items: fullName: OpenTK.Mathematics.Vector2.Multiply(OpenTK.Mathematics.Vector2, OpenTK.Mathematics.Vector2) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Multiply - path: opentk/src/OpenTK.Mathematics/Vector/Vector2.cs - startLine: 297 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2.cs + startLine: 312 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1104,13 +1051,9 @@ items: fullName: OpenTK.Mathematics.Vector2.Multiply(in OpenTK.Mathematics.Vector2, in OpenTK.Mathematics.Vector2, out OpenTK.Mathematics.Vector2) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Multiply - path: opentk/src/OpenTK.Mathematics/Vector/Vector2.cs - startLine: 310 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2.cs + startLine: 325 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1145,13 +1088,9 @@ items: fullName: OpenTK.Mathematics.Vector2.Divide(OpenTK.Mathematics.Vector2, float) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Divide - path: opentk/src/OpenTK.Mathematics/Vector/Vector2.cs - startLine: 322 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2.cs + startLine: 337 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1196,13 +1135,9 @@ items: fullName: OpenTK.Mathematics.Vector2.Divide(in OpenTK.Mathematics.Vector2, float, out OpenTK.Mathematics.Vector2) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Divide - path: opentk/src/OpenTK.Mathematics/Vector/Vector2.cs - startLine: 335 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2.cs + startLine: 350 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1237,13 +1172,9 @@ items: fullName: OpenTK.Mathematics.Vector2.Divide(OpenTK.Mathematics.Vector2, OpenTK.Mathematics.Vector2) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Divide - path: opentk/src/OpenTK.Mathematics/Vector/Vector2.cs - startLine: 347 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2.cs + startLine: 362 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1285,13 +1216,9 @@ items: fullName: OpenTK.Mathematics.Vector2.Divide(in OpenTK.Mathematics.Vector2, in OpenTK.Mathematics.Vector2, out OpenTK.Mathematics.Vector2) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Divide - path: opentk/src/OpenTK.Mathematics/Vector/Vector2.cs - startLine: 360 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2.cs + startLine: 375 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1326,13 +1253,9 @@ items: fullName: OpenTK.Mathematics.Vector2.ComponentMin(OpenTK.Mathematics.Vector2, OpenTK.Mathematics.Vector2) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ComponentMin - path: opentk/src/OpenTK.Mathematics/Vector/Vector2.cs - startLine: 372 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2.cs + startLine: 387 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1374,13 +1297,9 @@ items: fullName: OpenTK.Mathematics.Vector2.ComponentMin(in OpenTK.Mathematics.Vector2, in OpenTK.Mathematics.Vector2, out OpenTK.Mathematics.Vector2) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ComponentMin - path: opentk/src/OpenTK.Mathematics/Vector/Vector2.cs - startLine: 386 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2.cs + startLine: 401 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1415,13 +1334,9 @@ items: fullName: OpenTK.Mathematics.Vector2.ComponentMax(OpenTK.Mathematics.Vector2, OpenTK.Mathematics.Vector2) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ComponentMax - path: opentk/src/OpenTK.Mathematics/Vector/Vector2.cs - startLine: 398 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2.cs + startLine: 413 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1463,13 +1378,9 @@ items: fullName: OpenTK.Mathematics.Vector2.ComponentMax(in OpenTK.Mathematics.Vector2, in OpenTK.Mathematics.Vector2, out OpenTK.Mathematics.Vector2) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ComponentMax - path: opentk/src/OpenTK.Mathematics/Vector/Vector2.cs - startLine: 412 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2.cs + startLine: 427 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1504,13 +1415,9 @@ items: fullName: OpenTK.Mathematics.Vector2.MagnitudeMin(OpenTK.Mathematics.Vector2, OpenTK.Mathematics.Vector2) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MagnitudeMin - path: opentk/src/OpenTK.Mathematics/Vector/Vector2.cs - startLine: 425 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2.cs + startLine: 440 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1555,13 +1462,9 @@ items: fullName: OpenTK.Mathematics.Vector2.MagnitudeMin(in OpenTK.Mathematics.Vector2, in OpenTK.Mathematics.Vector2, out OpenTK.Mathematics.Vector2) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MagnitudeMin - path: opentk/src/OpenTK.Mathematics/Vector/Vector2.cs - startLine: 438 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2.cs + startLine: 453 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1599,13 +1502,9 @@ items: fullName: OpenTK.Mathematics.Vector2.MagnitudeMax(OpenTK.Mathematics.Vector2, OpenTK.Mathematics.Vector2) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MagnitudeMax - path: opentk/src/OpenTK.Mathematics/Vector/Vector2.cs - startLine: 450 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2.cs + startLine: 465 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1650,13 +1549,9 @@ items: fullName: OpenTK.Mathematics.Vector2.MagnitudeMax(in OpenTK.Mathematics.Vector2, in OpenTK.Mathematics.Vector2, out OpenTK.Mathematics.Vector2) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MagnitudeMax - path: opentk/src/OpenTK.Mathematics/Vector/Vector2.cs - startLine: 463 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2.cs + startLine: 478 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1694,13 +1589,9 @@ items: fullName: OpenTK.Mathematics.Vector2.Clamp(OpenTK.Mathematics.Vector2, OpenTK.Mathematics.Vector2, OpenTK.Mathematics.Vector2) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Clamp - path: opentk/src/OpenTK.Mathematics/Vector/Vector2.cs - startLine: 475 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2.cs + startLine: 490 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1745,13 +1636,9 @@ items: fullName: OpenTK.Mathematics.Vector2.Clamp(in OpenTK.Mathematics.Vector2, in OpenTK.Mathematics.Vector2, in OpenTK.Mathematics.Vector2, out OpenTK.Mathematics.Vector2) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Clamp - path: opentk/src/OpenTK.Mathematics/Vector/Vector2.cs - startLine: 490 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2.cs + startLine: 505 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1777,6 +1664,71 @@ items: nameWithType.vb: Vector2.Clamp(Vector2, Vector2, Vector2, Vector2) fullName.vb: OpenTK.Mathematics.Vector2.Clamp(OpenTK.Mathematics.Vector2, OpenTK.Mathematics.Vector2, OpenTK.Mathematics.Vector2, OpenTK.Mathematics.Vector2) name.vb: Clamp(Vector2, Vector2, Vector2, Vector2) +- uid: OpenTK.Mathematics.Vector2.Abs(OpenTK.Mathematics.Vector2) + commentId: M:OpenTK.Mathematics.Vector2.Abs(OpenTK.Mathematics.Vector2) + id: Abs(OpenTK.Mathematics.Vector2) + parent: OpenTK.Mathematics.Vector2 + langs: + - csharp + - vb + name: Abs(Vector2) + nameWithType: Vector2.Abs(Vector2) + fullName: OpenTK.Mathematics.Vector2.Abs(OpenTK.Mathematics.Vector2) + type: Method + source: + id: Abs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2.cs + startLine: 516 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: Take the component-wise absolute value of a vector. + example: [] + syntax: + content: public static Vector2 Abs(Vector2 vec) + parameters: + - id: vec + type: OpenTK.Mathematics.Vector2 + description: The vector to apply component-wise absolute value to. + return: + type: OpenTK.Mathematics.Vector2 + description: The component-wise absolute value vector. + content.vb: Public Shared Function Abs(vec As Vector2) As Vector2 + overload: OpenTK.Mathematics.Vector2.Abs* +- uid: OpenTK.Mathematics.Vector2.Abs(OpenTK.Mathematics.Vector2@,OpenTK.Mathematics.Vector2@) + commentId: M:OpenTK.Mathematics.Vector2.Abs(OpenTK.Mathematics.Vector2@,OpenTK.Mathematics.Vector2@) + id: Abs(OpenTK.Mathematics.Vector2@,OpenTK.Mathematics.Vector2@) + parent: OpenTK.Mathematics.Vector2 + langs: + - csharp + - vb + name: Abs(in Vector2, out Vector2) + nameWithType: Vector2.Abs(in Vector2, out Vector2) + fullName: OpenTK.Mathematics.Vector2.Abs(in OpenTK.Mathematics.Vector2, out OpenTK.Mathematics.Vector2) + type: Method + source: + id: Abs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2.cs + startLine: 528 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: Take the component-wise absolute value of a vector. + example: [] + syntax: + content: public static void Abs(in Vector2 vec, out Vector2 result) + parameters: + - id: vec + type: OpenTK.Mathematics.Vector2 + description: The vector to apply component-wise absolute value to. + - id: result + type: OpenTK.Mathematics.Vector2 + description: The component-wise absolute value vector. + content.vb: Public Shared Sub Abs(vec As Vector2, result As Vector2) + overload: OpenTK.Mathematics.Vector2.Abs* + nameWithType.vb: Vector2.Abs(Vector2, Vector2) + fullName.vb: OpenTK.Mathematics.Vector2.Abs(OpenTK.Mathematics.Vector2, OpenTK.Mathematics.Vector2) + name.vb: Abs(Vector2, Vector2) - uid: OpenTK.Mathematics.Vector2.Distance(OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2) commentId: M:OpenTK.Mathematics.Vector2.Distance(OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2) id: Distance(OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2) @@ -1789,13 +1741,9 @@ items: fullName: OpenTK.Mathematics.Vector2.Distance(OpenTK.Mathematics.Vector2, OpenTK.Mathematics.Vector2) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Distance - path: opentk/src/OpenTK.Mathematics/Vector/Vector2.cs - startLine: 502 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2.cs + startLine: 540 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1837,13 +1785,9 @@ items: fullName: OpenTK.Mathematics.Vector2.Distance(in OpenTK.Mathematics.Vector2, in OpenTK.Mathematics.Vector2, out float) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Distance - path: opentk/src/OpenTK.Mathematics/Vector/Vector2.cs - startLine: 515 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2.cs + startLine: 553 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1878,13 +1822,9 @@ items: fullName: OpenTK.Mathematics.Vector2.DistanceSquared(OpenTK.Mathematics.Vector2, OpenTK.Mathematics.Vector2) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DistanceSquared - path: opentk/src/OpenTK.Mathematics/Vector/Vector2.cs - startLine: 526 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2.cs + startLine: 564 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1926,13 +1866,9 @@ items: fullName: OpenTK.Mathematics.Vector2.DistanceSquared(in OpenTK.Mathematics.Vector2, in OpenTK.Mathematics.Vector2, out float) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DistanceSquared - path: opentk/src/OpenTK.Mathematics/Vector/Vector2.cs - startLine: 539 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2.cs + startLine: 577 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1967,13 +1903,9 @@ items: fullName: OpenTK.Mathematics.Vector2.Normalize(OpenTK.Mathematics.Vector2) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Normalize - path: opentk/src/OpenTK.Mathematics/Vector/Vector2.cs - startLine: 549 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2.cs + startLine: 587 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2012,13 +1944,9 @@ items: fullName: OpenTK.Mathematics.Vector2.Normalize(in OpenTK.Mathematics.Vector2, out OpenTK.Mathematics.Vector2) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Normalize - path: opentk/src/OpenTK.Mathematics/Vector/Vector2.cs - startLine: 563 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2.cs + startLine: 601 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2050,13 +1978,9 @@ items: fullName: OpenTK.Mathematics.Vector2.NormalizeFast(OpenTK.Mathematics.Vector2) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: NormalizeFast - path: opentk/src/OpenTK.Mathematics/Vector/Vector2.cs - startLine: 575 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2.cs + startLine: 613 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2095,13 +2019,9 @@ items: fullName: OpenTK.Mathematics.Vector2.NormalizeFast(in OpenTK.Mathematics.Vector2, out OpenTK.Mathematics.Vector2) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: NormalizeFast - path: opentk/src/OpenTK.Mathematics/Vector/Vector2.cs - startLine: 589 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2.cs + startLine: 627 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2133,13 +2053,9 @@ items: fullName: OpenTK.Mathematics.Vector2.Dot(OpenTK.Mathematics.Vector2, OpenTK.Mathematics.Vector2) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Dot - path: opentk/src/OpenTK.Mathematics/Vector/Vector2.cs - startLine: 602 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2.cs + startLine: 640 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2181,13 +2097,9 @@ items: fullName: OpenTK.Mathematics.Vector2.Dot(in OpenTK.Mathematics.Vector2, in OpenTK.Mathematics.Vector2, out float) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Dot - path: opentk/src/OpenTK.Mathematics/Vector/Vector2.cs - startLine: 614 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2.cs + startLine: 652 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2222,13 +2134,9 @@ items: fullName: OpenTK.Mathematics.Vector2.PerpDot(OpenTK.Mathematics.Vector2, OpenTK.Mathematics.Vector2) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: PerpDot - path: opentk/src/OpenTK.Mathematics/Vector/Vector2.cs - startLine: 625 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2.cs + startLine: 663 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2270,13 +2178,9 @@ items: fullName: OpenTK.Mathematics.Vector2.PerpDot(in OpenTK.Mathematics.Vector2, in OpenTK.Mathematics.Vector2, out float) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: PerpDot - path: opentk/src/OpenTK.Mathematics/Vector/Vector2.cs - startLine: 637 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2.cs + startLine: 675 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2311,13 +2215,9 @@ items: fullName: OpenTK.Mathematics.Vector2.Lerp(OpenTK.Mathematics.Vector2, OpenTK.Mathematics.Vector2, float) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Lerp - path: opentk/src/OpenTK.Mathematics/Vector/Vector2.cs - startLine: 649 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2.cs + startLine: 687 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2365,13 +2265,9 @@ items: fullName: OpenTK.Mathematics.Vector2.Lerp(in OpenTK.Mathematics.Vector2, in OpenTK.Mathematics.Vector2, float, out OpenTK.Mathematics.Vector2) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Lerp - path: opentk/src/OpenTK.Mathematics/Vector/Vector2.cs - startLine: 664 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2.cs + startLine: 702 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2409,13 +2305,9 @@ items: fullName: OpenTK.Mathematics.Vector2.Lerp(OpenTK.Mathematics.Vector2, OpenTK.Mathematics.Vector2, OpenTK.Mathematics.Vector2) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Lerp - path: opentk/src/OpenTK.Mathematics/Vector/Vector2.cs - startLine: 677 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2.cs + startLine: 715 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2460,13 +2352,9 @@ items: fullName: OpenTK.Mathematics.Vector2.Lerp(in OpenTK.Mathematics.Vector2, in OpenTK.Mathematics.Vector2, OpenTK.Mathematics.Vector2, out OpenTK.Mathematics.Vector2) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Lerp - path: opentk/src/OpenTK.Mathematics/Vector/Vector2.cs - startLine: 692 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2.cs + startLine: 730 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2492,6 +2380,194 @@ items: nameWithType.vb: Vector2.Lerp(Vector2, Vector2, Vector2, Vector2) fullName.vb: OpenTK.Mathematics.Vector2.Lerp(OpenTK.Mathematics.Vector2, OpenTK.Mathematics.Vector2, OpenTK.Mathematics.Vector2, OpenTK.Mathematics.Vector2) name.vb: Lerp(Vector2, Vector2, Vector2, Vector2) +- uid: OpenTK.Mathematics.Vector2.Slerp(OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2,System.Single) + commentId: M:OpenTK.Mathematics.Vector2.Slerp(OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2,System.Single) + id: Slerp(OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2,System.Single) + parent: OpenTK.Mathematics.Vector2 + langs: + - csharp + - vb + name: Slerp(Vector2, Vector2, float) + nameWithType: Vector2.Slerp(Vector2, Vector2, float) + fullName: OpenTK.Mathematics.Vector2.Slerp(OpenTK.Mathematics.Vector2, OpenTK.Mathematics.Vector2, float) + type: Method + source: + id: Slerp + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2.cs + startLine: 744 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: >- + Returns a new vector that is the spherical interpolation of the two given vectors. + + a and b need to be normalized for this function to work properly. + example: [] + syntax: + content: >- + [Pure] + + public static Vector2 Slerp(Vector2 a, Vector2 b, float t) + parameters: + - id: a + type: OpenTK.Mathematics.Vector2 + description: Unit vector start point. + - id: b + type: OpenTK.Mathematics.Vector2 + description: Unit vector end point. + - id: t + type: System.Single + description: The blend factor. + return: + type: OpenTK.Mathematics.Vector2 + description: a when t=0, b when t=1, and a spherical interpolation between the vectors otherwise. + content.vb: >- + + + Public Shared Function Slerp(a As Vector2, b As Vector2, t As Single) As Vector2 + overload: OpenTK.Mathematics.Vector2.Slerp* + attributes: + - type: System.Diagnostics.Contracts.PureAttribute + ctor: System.Diagnostics.Contracts.PureAttribute.#ctor + arguments: [] + nameWithType.vb: Vector2.Slerp(Vector2, Vector2, Single) + fullName.vb: OpenTK.Mathematics.Vector2.Slerp(OpenTK.Mathematics.Vector2, OpenTK.Mathematics.Vector2, Single) + name.vb: Slerp(Vector2, Vector2, Single) +- uid: OpenTK.Mathematics.Vector2.Slerp(OpenTK.Mathematics.Vector2@,OpenTK.Mathematics.Vector2@,System.Single,OpenTK.Mathematics.Vector2@) + commentId: M:OpenTK.Mathematics.Vector2.Slerp(OpenTK.Mathematics.Vector2@,OpenTK.Mathematics.Vector2@,System.Single,OpenTK.Mathematics.Vector2@) + id: Slerp(OpenTK.Mathematics.Vector2@,OpenTK.Mathematics.Vector2@,System.Single,OpenTK.Mathematics.Vector2@) + parent: OpenTK.Mathematics.Vector2 + langs: + - csharp + - vb + name: Slerp(in Vector2, in Vector2, float, out Vector2) + nameWithType: Vector2.Slerp(in Vector2, in Vector2, float, out Vector2) + fullName: OpenTK.Mathematics.Vector2.Slerp(in OpenTK.Mathematics.Vector2, in OpenTK.Mathematics.Vector2, float, out OpenTK.Mathematics.Vector2) + type: Method + source: + id: Slerp + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2.cs + startLine: 774 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: >- + Returns a new vector that is the spherical interpolation of the two given vectors. + + a and b need to be normalized for this function to work properly. + example: [] + syntax: + content: public static void Slerp(in Vector2 a, in Vector2 b, float t, out Vector2 result) + parameters: + - id: a + type: OpenTK.Mathematics.Vector2 + description: Unit vector start point. + - id: b + type: OpenTK.Mathematics.Vector2 + description: Unit vector end point. + - id: t + type: System.Single + description: The blend factor. + - id: result + type: OpenTK.Mathematics.Vector2 + description: Is a when t=0, b when t=1, and a spherical interpolation between the vectors otherwise. + content.vb: Public Shared Sub Slerp(a As Vector2, b As Vector2, t As Single, result As Vector2) + overload: OpenTK.Mathematics.Vector2.Slerp* + nameWithType.vb: Vector2.Slerp(Vector2, Vector2, Single, Vector2) + fullName.vb: OpenTK.Mathematics.Vector2.Slerp(OpenTK.Mathematics.Vector2, OpenTK.Mathematics.Vector2, Single, OpenTK.Mathematics.Vector2) + name.vb: Slerp(Vector2, Vector2, Single, Vector2) +- uid: OpenTK.Mathematics.Vector2.Elerp(OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2,System.Single) + commentId: M:OpenTK.Mathematics.Vector2.Elerp(OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2,System.Single) + id: Elerp(OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2,System.Single) + parent: OpenTK.Mathematics.Vector2 + langs: + - csharp + - vb + name: Elerp(Vector2, Vector2, float) + nameWithType: Vector2.Elerp(Vector2, Vector2, float) + fullName: OpenTK.Mathematics.Vector2.Elerp(OpenTK.Mathematics.Vector2, OpenTK.Mathematics.Vector2, float) + type: Method + source: + id: Elerp + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2.cs + startLine: 812 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: >- + Returns a new vector that is the exponential interpolation of the two vectors. + + Equivalent to a * pow(b/a, t). + example: [] + syntax: + content: public static Vector2 Elerp(Vector2 a, Vector2 b, float t) + parameters: + - id: a + type: OpenTK.Mathematics.Vector2 + description: The starting value. Must be non-negative. + - id: b + type: OpenTK.Mathematics.Vector2 + description: The end value. Must be non-negative. + - id: t + type: System.Single + description: The blend factor. + return: + type: OpenTK.Mathematics.Vector2 + description: The exponential interpolation between a and b. + content.vb: Public Shared Function Elerp(a As Vector2, b As Vector2, t As Single) As Vector2 + overload: OpenTK.Mathematics.Vector2.Elerp* + seealso: + - linkId: OpenTK.Mathematics.MathHelper.Elerp(System.Single,System.Single,System.Single) + commentId: M:OpenTK.Mathematics.MathHelper.Elerp(System.Single,System.Single,System.Single) + nameWithType.vb: Vector2.Elerp(Vector2, Vector2, Single) + fullName.vb: OpenTK.Mathematics.Vector2.Elerp(OpenTK.Mathematics.Vector2, OpenTK.Mathematics.Vector2, Single) + name.vb: Elerp(Vector2, Vector2, Single) +- uid: OpenTK.Mathematics.Vector2.Elerp(OpenTK.Mathematics.Vector2@,OpenTK.Mathematics.Vector2@,System.Single,OpenTK.Mathematics.Vector2@) + commentId: M:OpenTK.Mathematics.Vector2.Elerp(OpenTK.Mathematics.Vector2@,OpenTK.Mathematics.Vector2@,System.Single,OpenTK.Mathematics.Vector2@) + id: Elerp(OpenTK.Mathematics.Vector2@,OpenTK.Mathematics.Vector2@,System.Single,OpenTK.Mathematics.Vector2@) + parent: OpenTK.Mathematics.Vector2 + langs: + - csharp + - vb + name: Elerp(in Vector2, in Vector2, float, out Vector2) + nameWithType: Vector2.Elerp(in Vector2, in Vector2, float, out Vector2) + fullName: OpenTK.Mathematics.Vector2.Elerp(in OpenTK.Mathematics.Vector2, in OpenTK.Mathematics.Vector2, float, out OpenTK.Mathematics.Vector2) + type: Method + source: + id: Elerp + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2.cs + startLine: 828 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: >- + Returns a new vector that is the exponential interpolation of the two vectors. + + Equivalent to a * pow(b/a, t). + example: [] + syntax: + content: public static void Elerp(in Vector2 a, in Vector2 b, float t, out Vector2 result) + parameters: + - id: a + type: OpenTK.Mathematics.Vector2 + description: The starting value. Must be non-negative. + - id: b + type: OpenTK.Mathematics.Vector2 + description: The end value. Must be non-negative. + - id: t + type: System.Single + description: The blend factor. + - id: result + type: OpenTK.Mathematics.Vector2 + description: The exponential interpolation between a and b. + content.vb: Public Shared Sub Elerp(a As Vector2, b As Vector2, t As Single, result As Vector2) + overload: OpenTK.Mathematics.Vector2.Elerp* + seealso: + - linkId: OpenTK.Mathematics.MathHelper.Elerp(System.Single,System.Single,System.Single) + commentId: M:OpenTK.Mathematics.MathHelper.Elerp(System.Single,System.Single,System.Single) + nameWithType.vb: Vector2.Elerp(Vector2, Vector2, Single, Vector2) + fullName.vb: OpenTK.Mathematics.Vector2.Elerp(OpenTK.Mathematics.Vector2, OpenTK.Mathematics.Vector2, Single, OpenTK.Mathematics.Vector2) + name.vb: Elerp(Vector2, Vector2, Single, Vector2) - uid: OpenTK.Mathematics.Vector2.BaryCentric(OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2,System.Single,System.Single) commentId: M:OpenTK.Mathematics.Vector2.BaryCentric(OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2,System.Single,System.Single) id: BaryCentric(OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2,System.Single,System.Single) @@ -2504,13 +2580,9 @@ items: fullName: OpenTK.Mathematics.Vector2.BaryCentric(OpenTK.Mathematics.Vector2, OpenTK.Mathematics.Vector2, OpenTK.Mathematics.Vector2, float, float) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: BaryCentric - path: opentk/src/OpenTK.Mathematics/Vector/Vector2.cs - startLine: 707 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2.cs + startLine: 843 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2564,13 +2636,9 @@ items: fullName: OpenTK.Mathematics.Vector2.BaryCentric(in OpenTK.Mathematics.Vector2, in OpenTK.Mathematics.Vector2, in OpenTK.Mathematics.Vector2, float, float, out OpenTK.Mathematics.Vector2) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: BaryCentric - path: opentk/src/OpenTK.Mathematics/Vector/Vector2.cs - startLine: 726 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2.cs + startLine: 862 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2617,13 +2685,9 @@ items: fullName: OpenTK.Mathematics.Vector2.TransformRow(OpenTK.Mathematics.Vector2, OpenTK.Mathematics.Matrix2) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TransformRow - path: opentk/src/OpenTK.Mathematics/Vector/Vector2.cs - startLine: 751 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2.cs + startLine: 887 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2665,13 +2729,9 @@ items: fullName: OpenTK.Mathematics.Vector2.TransformRow(in OpenTK.Mathematics.Vector2, in OpenTK.Mathematics.Matrix2, out OpenTK.Mathematics.Vector2) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TransformRow - path: opentk/src/OpenTK.Mathematics/Vector/Vector2.cs - startLine: 764 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2.cs + startLine: 900 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2706,13 +2766,9 @@ items: fullName: OpenTK.Mathematics.Vector2.Transform(OpenTK.Mathematics.Vector2, OpenTK.Mathematics.Quaternion) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Transform - path: opentk/src/OpenTK.Mathematics/Vector/Vector2.cs - startLine: 777 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2.cs + startLine: 913 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2754,13 +2810,9 @@ items: fullName: OpenTK.Mathematics.Vector2.Transform(in OpenTK.Mathematics.Vector2, in OpenTK.Mathematics.Quaternion, out OpenTK.Mathematics.Vector2) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Transform - path: opentk/src/OpenTK.Mathematics/Vector/Vector2.cs - startLine: 790 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2.cs + startLine: 926 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2795,13 +2847,9 @@ items: fullName: OpenTK.Mathematics.Vector2.TransformColumn(OpenTK.Mathematics.Matrix2, OpenTK.Mathematics.Vector2) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TransformColumn - path: opentk/src/OpenTK.Mathematics/Vector/Vector2.cs - startLine: 807 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2.cs + startLine: 943 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2843,13 +2891,9 @@ items: fullName: OpenTK.Mathematics.Vector2.TransformColumn(in OpenTK.Mathematics.Matrix2, in OpenTK.Mathematics.Vector2, out OpenTK.Mathematics.Vector2) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TransformColumn - path: opentk/src/OpenTK.Mathematics/Vector/Vector2.cs - startLine: 820 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2.cs + startLine: 956 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2884,20 +2928,16 @@ items: fullName: OpenTK.Mathematics.Vector2.Yx type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Yx - path: opentk/src/OpenTK.Mathematics/Vector/Vector2.cs - startLine: 829 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2.cs + startLine: 965 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector2 with the Y and X components of this instance. example: [] syntax: - content: public Vector2 Yx { get; set; } + content: public Vector2 Yx { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector2 @@ -2915,13 +2955,9 @@ items: fullName: OpenTK.Mathematics.Vector2.operator +(OpenTK.Mathematics.Vector2, OpenTK.Mathematics.Vector2) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Addition - path: opentk/src/OpenTK.Mathematics/Vector/Vector2.cs - startLine: 846 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2.cs + startLine: 982 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2966,13 +3002,9 @@ items: fullName: OpenTK.Mathematics.Vector2.operator -(OpenTK.Mathematics.Vector2, OpenTK.Mathematics.Vector2) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Subtraction - path: opentk/src/OpenTK.Mathematics/Vector/Vector2.cs - startLine: 860 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2.cs + startLine: 996 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -3017,13 +3049,9 @@ items: fullName: OpenTK.Mathematics.Vector2.operator -(OpenTK.Mathematics.Vector2) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_UnaryNegation - path: opentk/src/OpenTK.Mathematics/Vector/Vector2.cs - startLine: 873 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2.cs + startLine: 1009 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -3065,13 +3093,9 @@ items: fullName: OpenTK.Mathematics.Vector2.operator *(OpenTK.Mathematics.Vector2, float) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Multiply - path: opentk/src/OpenTK.Mathematics/Vector/Vector2.cs - startLine: 887 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2.cs + startLine: 1023 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -3116,13 +3140,9 @@ items: fullName: OpenTK.Mathematics.Vector2.operator *(float, OpenTK.Mathematics.Vector2) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Multiply - path: opentk/src/OpenTK.Mathematics/Vector/Vector2.cs - startLine: 901 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2.cs + startLine: 1037 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -3167,13 +3187,9 @@ items: fullName: OpenTK.Mathematics.Vector2.operator *(OpenTK.Mathematics.Vector2, OpenTK.Mathematics.Vector2) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Multiply - path: opentk/src/OpenTK.Mathematics/Vector/Vector2.cs - startLine: 915 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2.cs + startLine: 1051 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -3218,13 +3234,9 @@ items: fullName: OpenTK.Mathematics.Vector2.operator *(OpenTK.Mathematics.Vector2, OpenTK.Mathematics.Matrix2) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Multiply - path: opentk/src/OpenTK.Mathematics/Vector/Vector2.cs - startLine: 929 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2.cs + startLine: 1065 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -3269,13 +3281,9 @@ items: fullName: OpenTK.Mathematics.Vector2.operator *(OpenTK.Mathematics.Matrix2, OpenTK.Mathematics.Vector2) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Multiply - path: opentk/src/OpenTK.Mathematics/Vector/Vector2.cs - startLine: 942 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2.cs + startLine: 1078 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -3320,13 +3328,9 @@ items: fullName: OpenTK.Mathematics.Vector2.operator *(OpenTK.Mathematics.Quaternion, OpenTK.Mathematics.Vector2) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Multiply - path: opentk/src/OpenTK.Mathematics/Vector/Vector2.cs - startLine: 955 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2.cs + startLine: 1091 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -3371,13 +3375,9 @@ items: fullName: OpenTK.Mathematics.Vector2.operator /(OpenTK.Mathematics.Vector2, float) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Division - path: opentk/src/OpenTK.Mathematics/Vector/Vector2.cs - startLine: 968 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2.cs + startLine: 1104 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -3422,13 +3422,9 @@ items: fullName: OpenTK.Mathematics.Vector2.operator /(OpenTK.Mathematics.Vector2, OpenTK.Mathematics.Vector2) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Division - path: opentk/src/OpenTK.Mathematics/Vector/Vector2.cs - startLine: 982 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2.cs + startLine: 1118 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -3473,13 +3469,9 @@ items: fullName: OpenTK.Mathematics.Vector2.operator ==(OpenTK.Mathematics.Vector2, OpenTK.Mathematics.Vector2) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Equality - path: opentk/src/OpenTK.Mathematics/Vector/Vector2.cs - startLine: 996 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2.cs + startLine: 1132 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -3514,13 +3506,9 @@ items: fullName: OpenTK.Mathematics.Vector2.operator !=(OpenTK.Mathematics.Vector2, OpenTK.Mathematics.Vector2) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Inequality - path: opentk/src/OpenTK.Mathematics/Vector/Vector2.cs - startLine: 1007 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2.cs + startLine: 1143 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -3555,13 +3543,9 @@ items: fullName: OpenTK.Mathematics.Vector2.implicit operator OpenTK.Mathematics.Vector2((float X, float Y)) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Implicit - path: opentk/src/OpenTK.Mathematics/Vector/Vector2.cs - startLine: 1018 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2.cs + startLine: 1154 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -3606,13 +3590,9 @@ items: fullName: OpenTK.Mathematics.Vector2.implicit operator OpenTK.Mathematics.Vector2d(OpenTK.Mathematics.Vector2) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Implicit - path: opentk/src/OpenTK.Mathematics/Vector/Vector2.cs - startLine: 1029 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2.cs + startLine: 1165 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -3654,13 +3634,9 @@ items: fullName: OpenTK.Mathematics.Vector2.explicit operator OpenTK.Mathematics.Vector2h(OpenTK.Mathematics.Vector2) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Explicit - path: opentk/src/OpenTK.Mathematics/Vector/Vector2.cs - startLine: 1040 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2.cs + startLine: 1176 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -3702,13 +3678,9 @@ items: fullName: OpenTK.Mathematics.Vector2.explicit operator OpenTK.Mathematics.Vector2i(OpenTK.Mathematics.Vector2) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Explicit - path: opentk/src/OpenTK.Mathematics/Vector/Vector2.cs - startLine: 1051 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2.cs + startLine: 1187 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -3750,13 +3722,9 @@ items: fullName: OpenTK.Mathematics.Vector2.explicit operator System.Drawing.PointF(OpenTK.Mathematics.Vector2) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Explicit - path: opentk/src/OpenTK.Mathematics/Vector/Vector2.cs - startLine: 1062 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2.cs + startLine: 1198 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -3798,13 +3766,9 @@ items: fullName: OpenTK.Mathematics.Vector2.explicit operator System.Drawing.SizeF(OpenTK.Mathematics.Vector2) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Explicit - path: opentk/src/OpenTK.Mathematics/Vector/Vector2.cs - startLine: 1073 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2.cs + startLine: 1209 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -3846,13 +3810,9 @@ items: fullName: OpenTK.Mathematics.Vector2.ToString() type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Mathematics/Vector/Vector2.cs - startLine: 1080 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2.cs + startLine: 1216 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -3878,13 +3838,9 @@ items: fullName: OpenTK.Mathematics.Vector2.ToString(string) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Mathematics/Vector/Vector2.cs - startLine: 1086 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2.cs + startLine: 1222 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -3921,13 +3877,9 @@ items: fullName: OpenTK.Mathematics.Vector2.ToString(System.IFormatProvider) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Mathematics/Vector/Vector2.cs - startLine: 1092 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2.cs + startLine: 1228 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -3961,20 +3913,16 @@ items: fullName: OpenTK.Mathematics.Vector2.ToString(string, System.IFormatProvider) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Mathematics/Vector/Vector2.cs - startLine: 1098 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2.cs + startLine: 1234 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Formats the value of the current instance using the specified format. example: [] syntax: - content: public string ToString(string format, IFormatProvider formatProvider) + content: public readonly string ToString(string format, IFormatProvider formatProvider) parameters: - id: format type: System.String @@ -4014,13 +3962,9 @@ items: fullName: OpenTK.Mathematics.Vector2.Equals(object) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Equals - path: opentk/src/OpenTK.Mathematics/Vector/Vector2.cs - startLine: 1108 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2.cs + startLine: 1244 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -4053,20 +3997,16 @@ items: fullName: OpenTK.Mathematics.Vector2.Equals(OpenTK.Mathematics.Vector2) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Equals - path: opentk/src/OpenTK.Mathematics/Vector/Vector2.cs - startLine: 1114 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2.cs + startLine: 1250 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Indicates whether the current object is equal to another object of the same type. example: [] syntax: - content: public bool Equals(Vector2 other) + content: public readonly bool Equals(Vector2 other) parameters: - id: other type: OpenTK.Mathematics.Vector2 @@ -4090,20 +4030,16 @@ items: fullName: OpenTK.Mathematics.Vector2.GetHashCode() type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetHashCode - path: opentk/src/OpenTK.Mathematics/Vector/Vector2.cs - startLine: 1121 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2.cs + startLine: 1257 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Returns the hash code for this instance. example: [] syntax: - content: public override int GetHashCode() + content: public override readonly int GetHashCode() return: type: System.Int32 description: A 32-bit signed integer that is the hash code for this instance. @@ -4122,13 +4058,9 @@ items: fullName: OpenTK.Mathematics.Vector2.Deconstruct(out float, out float) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Deconstruct - path: opentk/src/OpenTK.Mathematics/Vector/Vector2.cs - startLine: 1131 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2.cs + startLine: 1267 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -4138,7 +4070,7 @@ items: content: >- [Pure] - public void Deconstruct(out float x, out float y) + public readonly void Deconstruct(out float x, out float y) parameters: - id: x type: System.Single @@ -4454,6 +4386,12 @@ references: name: Length nameWithType: Vector2.Length fullName: OpenTK.Mathematics.Vector2.Length +- uid: OpenTK.Mathematics.Vector2.ReciprocalLengthFast* + commentId: Overload:OpenTK.Mathematics.Vector2.ReciprocalLengthFast + href: OpenTK.Mathematics.Vector2.html#OpenTK_Mathematics_Vector2_ReciprocalLengthFast + name: ReciprocalLengthFast + nameWithType: Vector2.ReciprocalLengthFast + fullName: OpenTK.Mathematics.Vector2.ReciprocalLengthFast - uid: OpenTK.Mathematics.Vector2.Length commentId: P:OpenTK.Mathematics.Vector2.Length href: OpenTK.Mathematics.Vector2.html#OpenTK_Mathematics_Vector2_Length @@ -4502,6 +4440,12 @@ references: name: NormalizeFast nameWithType: Vector2.NormalizeFast fullName: OpenTK.Mathematics.Vector2.NormalizeFast +- uid: OpenTK.Mathematics.Vector2.Abs* + commentId: Overload:OpenTK.Mathematics.Vector2.Abs + href: OpenTK.Mathematics.Vector2.html#OpenTK_Mathematics_Vector2_Abs + name: Abs + nameWithType: Vector2.Abs + fullName: OpenTK.Mathematics.Vector2.Abs - uid: OpenTK.Mathematics.Vector2.Add* commentId: Overload:OpenTK.Mathematics.Vector2.Add href: OpenTK.Mathematics.Vector2.html#OpenTK_Mathematics_Vector2_Add_OpenTK_Mathematics_Vector2_OpenTK_Mathematics_Vector2_ @@ -4586,6 +4530,72 @@ references: name: Lerp nameWithType: Vector2.Lerp fullName: OpenTK.Mathematics.Vector2.Lerp +- uid: OpenTK.Mathematics.Vector2.Slerp* + commentId: Overload:OpenTK.Mathematics.Vector2.Slerp + href: OpenTK.Mathematics.Vector2.html#OpenTK_Mathematics_Vector2_Slerp_OpenTK_Mathematics_Vector2_OpenTK_Mathematics_Vector2_System_Single_ + name: Slerp + nameWithType: Vector2.Slerp + fullName: OpenTK.Mathematics.Vector2.Slerp +- uid: OpenTK.Mathematics.MathHelper.Elerp(System.Single,System.Single,System.Single) + commentId: M:OpenTK.Mathematics.MathHelper.Elerp(System.Single,System.Single,System.Single) + isExternal: true + href: OpenTK.Mathematics.MathHelper.html#OpenTK_Mathematics_MathHelper_Elerp_System_Single_System_Single_System_Single_ + name: Elerp(float, float, float) + nameWithType: MathHelper.Elerp(float, float, float) + fullName: OpenTK.Mathematics.MathHelper.Elerp(float, float, float) + nameWithType.vb: MathHelper.Elerp(Single, Single, Single) + fullName.vb: OpenTK.Mathematics.MathHelper.Elerp(Single, Single, Single) + name.vb: Elerp(Single, Single, Single) + spec.csharp: + - uid: OpenTK.Mathematics.MathHelper.Elerp(System.Single,System.Single,System.Single) + name: Elerp + href: OpenTK.Mathematics.MathHelper.html#OpenTK_Mathematics_MathHelper_Elerp_System_Single_System_Single_System_Single_ + - name: ( + - uid: System.Single + name: float + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.single + - name: ',' + - name: " " + - uid: System.Single + name: float + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.single + - name: ',' + - name: " " + - uid: System.Single + name: float + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.single + - name: ) + spec.vb: + - uid: OpenTK.Mathematics.MathHelper.Elerp(System.Single,System.Single,System.Single) + name: Elerp + href: OpenTK.Mathematics.MathHelper.html#OpenTK_Mathematics_MathHelper_Elerp_System_Single_System_Single_System_Single_ + - name: ( + - uid: System.Single + name: Single + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.single + - name: ',' + - name: " " + - uid: System.Single + name: Single + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.single + - name: ',' + - name: " " + - uid: System.Single + name: Single + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.single + - name: ) +- uid: OpenTK.Mathematics.Vector2.Elerp* + commentId: Overload:OpenTK.Mathematics.Vector2.Elerp + href: OpenTK.Mathematics.Vector2.html#OpenTK_Mathematics_Vector2_Elerp_OpenTK_Mathematics_Vector2_OpenTK_Mathematics_Vector2_System_Single_ + name: Elerp + nameWithType: Vector2.Elerp + fullName: OpenTK.Mathematics.Vector2.Elerp - uid: OpenTK.Mathematics.Vector2.BaryCentric* commentId: Overload:OpenTK.Mathematics.Vector2.BaryCentric href: OpenTK.Mathematics.Vector2.html#OpenTK_Mathematics_Vector2_BaryCentric_OpenTK_Mathematics_Vector2_OpenTK_Mathematics_Vector2_OpenTK_Mathematics_Vector2_System_Single_System_Single_ diff --git a/api/OpenTK.Mathematics.Vector2d.yml b/api/OpenTK.Mathematics.Vector2d.yml index 531b295f..b7c7d091 100644 --- a/api/OpenTK.Mathematics.Vector2d.yml +++ b/api/OpenTK.Mathematics.Vector2d.yml @@ -7,6 +7,9 @@ items: children: - OpenTK.Mathematics.Vector2d.#ctor(System.Double) - OpenTK.Mathematics.Vector2d.#ctor(System.Double,System.Double) + - OpenTK.Mathematics.Vector2d.Abs + - OpenTK.Mathematics.Vector2d.Abs(OpenTK.Mathematics.Vector2d) + - OpenTK.Mathematics.Vector2d.Abs(OpenTK.Mathematics.Vector2d@,OpenTK.Mathematics.Vector2d@) - OpenTK.Mathematics.Vector2d.Add(OpenTK.Mathematics.Vector2d,OpenTK.Mathematics.Vector2d) - OpenTK.Mathematics.Vector2d.Add(OpenTK.Mathematics.Vector2d@,OpenTK.Mathematics.Vector2d@,OpenTK.Mathematics.Vector2d@) - OpenTK.Mathematics.Vector2d.BaryCentric(OpenTK.Mathematics.Vector2d,OpenTK.Mathematics.Vector2d,OpenTK.Mathematics.Vector2d,System.Double,System.Double) @@ -28,11 +31,14 @@ items: - OpenTK.Mathematics.Vector2d.Divide(OpenTK.Mathematics.Vector2d@,System.Double,OpenTK.Mathematics.Vector2d@) - OpenTK.Mathematics.Vector2d.Dot(OpenTK.Mathematics.Vector2d,OpenTK.Mathematics.Vector2d) - OpenTK.Mathematics.Vector2d.Dot(OpenTK.Mathematics.Vector2d@,OpenTK.Mathematics.Vector2d@,System.Double@) + - OpenTK.Mathematics.Vector2d.Elerp(OpenTK.Mathematics.Vector2d,OpenTK.Mathematics.Vector2d,System.Double) + - OpenTK.Mathematics.Vector2d.Elerp(OpenTK.Mathematics.Vector2d@,OpenTK.Mathematics.Vector2d@,System.Double,OpenTK.Mathematics.Vector2d@) - OpenTK.Mathematics.Vector2d.Equals(OpenTK.Mathematics.Vector2d) - OpenTK.Mathematics.Vector2d.Equals(System.Object) - OpenTK.Mathematics.Vector2d.GetHashCode - OpenTK.Mathematics.Vector2d.Item(System.Int32) - OpenTK.Mathematics.Vector2d.Length + - OpenTK.Mathematics.Vector2d.LengthFast - OpenTK.Mathematics.Vector2d.LengthSquared - OpenTK.Mathematics.Vector2d.Lerp(OpenTK.Mathematics.Vector2d,OpenTK.Mathematics.Vector2d,OpenTK.Mathematics.Vector2d) - OpenTK.Mathematics.Vector2d.Lerp(OpenTK.Mathematics.Vector2d,OpenTK.Mathematics.Vector2d,System.Double) @@ -50,6 +56,7 @@ items: - OpenTK.Mathematics.Vector2d.Normalize - OpenTK.Mathematics.Vector2d.Normalize(OpenTK.Mathematics.Vector2d) - OpenTK.Mathematics.Vector2d.Normalize(OpenTK.Mathematics.Vector2d@,OpenTK.Mathematics.Vector2d@) + - OpenTK.Mathematics.Vector2d.NormalizeFast - OpenTK.Mathematics.Vector2d.NormalizeFast(OpenTK.Mathematics.Vector2d) - OpenTK.Mathematics.Vector2d.NormalizeFast(OpenTK.Mathematics.Vector2d@,OpenTK.Mathematics.Vector2d@) - OpenTK.Mathematics.Vector2d.Normalized @@ -57,7 +64,10 @@ items: - OpenTK.Mathematics.Vector2d.PerpendicularLeft - OpenTK.Mathematics.Vector2d.PerpendicularRight - OpenTK.Mathematics.Vector2d.PositiveInfinity + - OpenTK.Mathematics.Vector2d.ReciprocalLengthFast - OpenTK.Mathematics.Vector2d.SizeInBytes + - OpenTK.Mathematics.Vector2d.Slerp(OpenTK.Mathematics.Vector2d,OpenTK.Mathematics.Vector2d,System.Double) + - OpenTK.Mathematics.Vector2d.Slerp(OpenTK.Mathematics.Vector2d@,OpenTK.Mathematics.Vector2d@,System.Double,OpenTK.Mathematics.Vector2d@) - OpenTK.Mathematics.Vector2d.Subtract(OpenTK.Mathematics.Vector2d,OpenTK.Mathematics.Vector2d) - OpenTK.Mathematics.Vector2d.Subtract(OpenTK.Mathematics.Vector2d@,OpenTK.Mathematics.Vector2d@,OpenTK.Mathematics.Vector2d@) - OpenTK.Mathematics.Vector2d.ToString @@ -101,12 +111,8 @@ items: fullName: OpenTK.Mathematics.Vector2d type: Struct source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Vector2d - path: opentk/src/OpenTK.Mathematics/Vector/Vector2d.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2d.cs startLine: 34 assemblies: - OpenTK.Mathematics @@ -145,12 +151,8 @@ items: fullName: OpenTK.Mathematics.Vector2d.X type: Field source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: X - path: opentk/src/OpenTK.Mathematics/Vector/Vector2d.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2d.cs startLine: 41 assemblies: - OpenTK.Mathematics @@ -174,12 +176,8 @@ items: fullName: OpenTK.Mathematics.Vector2d.Y type: Field source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Y - path: opentk/src/OpenTK.Mathematics/Vector/Vector2d.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2d.cs startLine: 46 assemblies: - OpenTK.Mathematics @@ -203,12 +201,8 @@ items: fullName: OpenTK.Mathematics.Vector2d.UnitX type: Field source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: UnitX - path: opentk/src/OpenTK.Mathematics/Vector/Vector2d.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2d.cs startLine: 51 assemblies: - OpenTK.Mathematics @@ -232,12 +226,8 @@ items: fullName: OpenTK.Mathematics.Vector2d.UnitY type: Field source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: UnitY - path: opentk/src/OpenTK.Mathematics/Vector/Vector2d.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2d.cs startLine: 56 assemblies: - OpenTK.Mathematics @@ -261,12 +251,8 @@ items: fullName: OpenTK.Mathematics.Vector2d.Zero type: Field source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Zero - path: opentk/src/OpenTK.Mathematics/Vector/Vector2d.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2d.cs startLine: 61 assemblies: - OpenTK.Mathematics @@ -290,12 +276,8 @@ items: fullName: OpenTK.Mathematics.Vector2d.One type: Field source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: One - path: opentk/src/OpenTK.Mathematics/Vector/Vector2d.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2d.cs startLine: 66 assemblies: - OpenTK.Mathematics @@ -319,12 +301,8 @@ items: fullName: OpenTK.Mathematics.Vector2d.PositiveInfinity type: Field source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: PositiveInfinity - path: opentk/src/OpenTK.Mathematics/Vector/Vector2d.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2d.cs startLine: 71 assemblies: - OpenTK.Mathematics @@ -348,12 +326,8 @@ items: fullName: OpenTK.Mathematics.Vector2d.NegativeInfinity type: Field source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: NegativeInfinity - path: opentk/src/OpenTK.Mathematics/Vector/Vector2d.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2d.cs startLine: 76 assemblies: - OpenTK.Mathematics @@ -377,12 +351,8 @@ items: fullName: OpenTK.Mathematics.Vector2d.SizeInBytes type: Field source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SizeInBytes - path: opentk/src/OpenTK.Mathematics/Vector/Vector2d.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2d.cs startLine: 81 assemblies: - OpenTK.Mathematics @@ -406,12 +376,8 @@ items: fullName: OpenTK.Mathematics.Vector2d.Vector2d(double) type: Constructor source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Mathematics/Vector/Vector2d.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2d.cs startLine: 87 assemblies: - OpenTK.Mathematics @@ -441,12 +407,8 @@ items: fullName: OpenTK.Mathematics.Vector2d.Vector2d(double, double) type: Constructor source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Mathematics/Vector/Vector2d.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2d.cs startLine: 98 assemblies: - OpenTK.Mathematics @@ -479,12 +441,8 @@ items: fullName: OpenTK.Mathematics.Vector2d.this[int] type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: this[] - path: opentk/src/OpenTK.Mathematics/Vector/Vector2d.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2d.cs startLine: 109 assemblies: - OpenTK.Mathematics @@ -492,7 +450,7 @@ items: summary: Gets or sets the value at the index of the Vector. example: [] syntax: - content: public double this[int index] { get; set; } + content: public double this[int index] { readonly get; set; } parameters: - id: index type: System.Int32 @@ -520,12 +478,8 @@ items: fullName: OpenTK.Mathematics.Vector2d.Length type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Length - path: opentk/src/OpenTK.Mathematics/Vector/Vector2d.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2d.cs startLine: 147 assemblies: - OpenTK.Mathematics @@ -533,7 +487,7 @@ items: summary: Gets the length (magnitude) of the vector. example: [] syntax: - content: public double Length { get; } + content: public readonly double Length { get; } parameters: [] return: type: System.Double @@ -542,6 +496,64 @@ items: seealso: - linkId: OpenTK.Mathematics.Vector2d.LengthSquared commentId: P:OpenTK.Mathematics.Vector2d.LengthSquared +- uid: OpenTK.Mathematics.Vector2d.ReciprocalLengthFast + commentId: P:OpenTK.Mathematics.Vector2d.ReciprocalLengthFast + id: ReciprocalLengthFast + parent: OpenTK.Mathematics.Vector2d + langs: + - csharp + - vb + name: ReciprocalLengthFast + nameWithType: Vector2d.ReciprocalLengthFast + fullName: OpenTK.Mathematics.Vector2d.ReciprocalLengthFast + type: Property + source: + id: ReciprocalLengthFast + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2d.cs + startLine: 152 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: Gets an approximation of 1 over the length (magnitude) of the vector. + example: [] + syntax: + content: public readonly double ReciprocalLengthFast { get; } + parameters: [] + return: + type: System.Double + content.vb: Public ReadOnly Property ReciprocalLengthFast As Double + overload: OpenTK.Mathematics.Vector2d.ReciprocalLengthFast* +- uid: OpenTK.Mathematics.Vector2d.LengthFast + commentId: P:OpenTK.Mathematics.Vector2d.LengthFast + id: LengthFast + parent: OpenTK.Mathematics.Vector2d + langs: + - csharp + - vb + name: LengthFast + nameWithType: Vector2d.LengthFast + fullName: OpenTK.Mathematics.Vector2d.LengthFast + type: Property + source: + id: LengthFast + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2d.cs + startLine: 162 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: Gets an approximation of the vector length (magnitude). + remarks: This property uses an approximation of the square root function to calculate vector magnitude. + example: [] + syntax: + content: public readonly double LengthFast { get; } + parameters: [] + return: + type: System.Double + content.vb: Public ReadOnly Property LengthFast As Double + overload: OpenTK.Mathematics.Vector2d.LengthFast* + seealso: + - linkId: OpenTK.Mathematics.Vector2d.LengthSquared + commentId: P:OpenTK.Mathematics.Vector2d.LengthSquared - uid: OpenTK.Mathematics.Vector2d.LengthSquared commentId: P:OpenTK.Mathematics.Vector2d.LengthSquared id: LengthSquared @@ -554,13 +566,9 @@ items: fullName: OpenTK.Mathematics.Vector2d.LengthSquared type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: LengthSquared - path: opentk/src/OpenTK.Mathematics/Vector/Vector2d.cs - startLine: 157 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2d.cs + startLine: 172 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -571,7 +579,7 @@ items: for comparisons. example: [] syntax: - content: public double LengthSquared { get; } + content: public readonly double LengthSquared { get; } parameters: [] return: type: System.Double @@ -589,20 +597,16 @@ items: fullName: OpenTK.Mathematics.Vector2d.PerpendicularRight type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: PerpendicularRight - path: opentk/src/OpenTK.Mathematics/Vector/Vector2d.cs - startLine: 162 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2d.cs + startLine: 177 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets the perpendicular vector on the right side of this vector. example: [] syntax: - content: public Vector2d PerpendicularRight { get; } + content: public readonly Vector2d PerpendicularRight { get; } parameters: [] return: type: OpenTK.Mathematics.Vector2d @@ -620,20 +624,16 @@ items: fullName: OpenTK.Mathematics.Vector2d.PerpendicularLeft type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: PerpendicularLeft - path: opentk/src/OpenTK.Mathematics/Vector/Vector2d.cs - startLine: 167 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2d.cs + startLine: 182 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets the perpendicular vector on the left side of this vector. example: [] syntax: - content: public Vector2d PerpendicularLeft { get; } + content: public readonly Vector2d PerpendicularLeft { get; } parameters: [] return: type: OpenTK.Mathematics.Vector2d @@ -651,20 +651,16 @@ items: fullName: OpenTK.Mathematics.Vector2d.Normalized() type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Normalized - path: opentk/src/OpenTK.Mathematics/Vector/Vector2d.cs - startLine: 173 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2d.cs + startLine: 188 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Returns a copy of the Vector2d scaled to unit length. example: [] syntax: - content: public Vector2d Normalized() + content: public readonly Vector2d Normalized() return: type: OpenTK.Mathematics.Vector2d description: The normalized copy. @@ -682,13 +678,9 @@ items: fullName: OpenTK.Mathematics.Vector2d.Normalize() type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Normalize - path: opentk/src/OpenTK.Mathematics/Vector/Vector2d.cs - startLine: 183 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2d.cs + startLine: 198 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -698,6 +690,57 @@ items: content: public void Normalize() content.vb: Public Sub Normalize() overload: OpenTK.Mathematics.Vector2d.Normalize* +- uid: OpenTK.Mathematics.Vector2d.NormalizeFast + commentId: M:OpenTK.Mathematics.Vector2d.NormalizeFast + id: NormalizeFast + parent: OpenTK.Mathematics.Vector2d + langs: + - csharp + - vb + name: NormalizeFast() + nameWithType: Vector2d.NormalizeFast() + fullName: OpenTK.Mathematics.Vector2d.NormalizeFast() + type: Method + source: + id: NormalizeFast + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2d.cs + startLine: 208 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: Scales the Vector2d to approximately unit length. + example: [] + syntax: + content: public void NormalizeFast() + content.vb: Public Sub NormalizeFast() + overload: OpenTK.Mathematics.Vector2d.NormalizeFast* +- uid: OpenTK.Mathematics.Vector2d.Abs + commentId: M:OpenTK.Mathematics.Vector2d.Abs + id: Abs + parent: OpenTK.Mathematics.Vector2d + langs: + - csharp + - vb + name: Abs() + nameWithType: Vector2d.Abs() + fullName: OpenTK.Mathematics.Vector2d.Abs() + type: Method + source: + id: Abs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2d.cs + startLine: 219 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: Returns a new vector that is the component-wise absolute value of the vector. + example: [] + syntax: + content: public readonly Vector2d Abs() + return: + type: OpenTK.Mathematics.Vector2d + description: The component-wise absolute value vector. + content.vb: Public Function Abs() As Vector2d + overload: OpenTK.Mathematics.Vector2d.Abs* - uid: OpenTK.Mathematics.Vector2d.Add(OpenTK.Mathematics.Vector2d,OpenTK.Mathematics.Vector2d) commentId: M:OpenTK.Mathematics.Vector2d.Add(OpenTK.Mathematics.Vector2d,OpenTK.Mathematics.Vector2d) id: Add(OpenTK.Mathematics.Vector2d,OpenTK.Mathematics.Vector2d) @@ -710,13 +753,9 @@ items: fullName: OpenTK.Mathematics.Vector2d.Add(OpenTK.Mathematics.Vector2d, OpenTK.Mathematics.Vector2d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Add - path: opentk/src/OpenTK.Mathematics/Vector/Vector2d.cs - startLine: 196 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2d.cs + startLine: 233 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -758,13 +797,9 @@ items: fullName: OpenTK.Mathematics.Vector2d.Add(in OpenTK.Mathematics.Vector2d, in OpenTK.Mathematics.Vector2d, out OpenTK.Mathematics.Vector2d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Add - path: opentk/src/OpenTK.Mathematics/Vector/Vector2d.cs - startLine: 209 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2d.cs + startLine: 246 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -799,13 +834,9 @@ items: fullName: OpenTK.Mathematics.Vector2d.Subtract(OpenTK.Mathematics.Vector2d, OpenTK.Mathematics.Vector2d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Subtract - path: opentk/src/OpenTK.Mathematics/Vector/Vector2d.cs - startLine: 221 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2d.cs + startLine: 258 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -847,13 +878,9 @@ items: fullName: OpenTK.Mathematics.Vector2d.Subtract(in OpenTK.Mathematics.Vector2d, in OpenTK.Mathematics.Vector2d, out OpenTK.Mathematics.Vector2d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Subtract - path: opentk/src/OpenTK.Mathematics/Vector/Vector2d.cs - startLine: 234 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2d.cs + startLine: 271 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -888,13 +915,9 @@ items: fullName: OpenTK.Mathematics.Vector2d.Multiply(OpenTK.Mathematics.Vector2d, double) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Multiply - path: opentk/src/OpenTK.Mathematics/Vector/Vector2d.cs - startLine: 246 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2d.cs + startLine: 283 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -939,13 +962,9 @@ items: fullName: OpenTK.Mathematics.Vector2d.Multiply(in OpenTK.Mathematics.Vector2d, double, out OpenTK.Mathematics.Vector2d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Multiply - path: opentk/src/OpenTK.Mathematics/Vector/Vector2d.cs - startLine: 259 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2d.cs + startLine: 296 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -980,13 +999,9 @@ items: fullName: OpenTK.Mathematics.Vector2d.Multiply(OpenTK.Mathematics.Vector2d, OpenTK.Mathematics.Vector2d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Multiply - path: opentk/src/OpenTK.Mathematics/Vector/Vector2d.cs - startLine: 271 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2d.cs + startLine: 308 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1028,13 +1043,9 @@ items: fullName: OpenTK.Mathematics.Vector2d.Multiply(in OpenTK.Mathematics.Vector2d, in OpenTK.Mathematics.Vector2d, out OpenTK.Mathematics.Vector2d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Multiply - path: opentk/src/OpenTK.Mathematics/Vector/Vector2d.cs - startLine: 284 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2d.cs + startLine: 321 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1069,13 +1080,9 @@ items: fullName: OpenTK.Mathematics.Vector2d.Divide(OpenTK.Mathematics.Vector2d, double) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Divide - path: opentk/src/OpenTK.Mathematics/Vector/Vector2d.cs - startLine: 296 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2d.cs + startLine: 333 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1120,13 +1127,9 @@ items: fullName: OpenTK.Mathematics.Vector2d.Divide(in OpenTK.Mathematics.Vector2d, double, out OpenTK.Mathematics.Vector2d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Divide - path: opentk/src/OpenTK.Mathematics/Vector/Vector2d.cs - startLine: 309 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2d.cs + startLine: 346 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1161,13 +1164,9 @@ items: fullName: OpenTK.Mathematics.Vector2d.Divide(OpenTK.Mathematics.Vector2d, OpenTK.Mathematics.Vector2d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Divide - path: opentk/src/OpenTK.Mathematics/Vector/Vector2d.cs - startLine: 321 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2d.cs + startLine: 358 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1209,13 +1208,9 @@ items: fullName: OpenTK.Mathematics.Vector2d.Divide(in OpenTK.Mathematics.Vector2d, in OpenTK.Mathematics.Vector2d, out OpenTK.Mathematics.Vector2d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Divide - path: opentk/src/OpenTK.Mathematics/Vector/Vector2d.cs - startLine: 334 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2d.cs + startLine: 371 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1250,13 +1245,9 @@ items: fullName: OpenTK.Mathematics.Vector2d.ComponentMin(OpenTK.Mathematics.Vector2d, OpenTK.Mathematics.Vector2d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ComponentMin - path: opentk/src/OpenTK.Mathematics/Vector/Vector2d.cs - startLine: 346 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2d.cs + startLine: 383 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1298,13 +1289,9 @@ items: fullName: OpenTK.Mathematics.Vector2d.ComponentMin(in OpenTK.Mathematics.Vector2d, in OpenTK.Mathematics.Vector2d, out OpenTK.Mathematics.Vector2d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ComponentMin - path: opentk/src/OpenTK.Mathematics/Vector/Vector2d.cs - startLine: 360 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2d.cs + startLine: 397 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1339,13 +1326,9 @@ items: fullName: OpenTK.Mathematics.Vector2d.ComponentMax(OpenTK.Mathematics.Vector2d, OpenTK.Mathematics.Vector2d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ComponentMax - path: opentk/src/OpenTK.Mathematics/Vector/Vector2d.cs - startLine: 372 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2d.cs + startLine: 409 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1387,13 +1370,9 @@ items: fullName: OpenTK.Mathematics.Vector2d.ComponentMax(in OpenTK.Mathematics.Vector2d, in OpenTK.Mathematics.Vector2d, out OpenTK.Mathematics.Vector2d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ComponentMax - path: opentk/src/OpenTK.Mathematics/Vector/Vector2d.cs - startLine: 386 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2d.cs + startLine: 423 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1428,13 +1407,9 @@ items: fullName: OpenTK.Mathematics.Vector2d.MagnitudeMin(OpenTK.Mathematics.Vector2d, OpenTK.Mathematics.Vector2d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MagnitudeMin - path: opentk/src/OpenTK.Mathematics/Vector/Vector2d.cs - startLine: 399 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2d.cs + startLine: 436 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1479,13 +1454,9 @@ items: fullName: OpenTK.Mathematics.Vector2d.MagnitudeMin(in OpenTK.Mathematics.Vector2d, in OpenTK.Mathematics.Vector2d, out OpenTK.Mathematics.Vector2d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MagnitudeMin - path: opentk/src/OpenTK.Mathematics/Vector/Vector2d.cs - startLine: 412 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2d.cs + startLine: 449 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1523,13 +1494,9 @@ items: fullName: OpenTK.Mathematics.Vector2d.MagnitudeMax(OpenTK.Mathematics.Vector2d, OpenTK.Mathematics.Vector2d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MagnitudeMax - path: opentk/src/OpenTK.Mathematics/Vector/Vector2d.cs - startLine: 424 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2d.cs + startLine: 461 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1574,13 +1541,9 @@ items: fullName: OpenTK.Mathematics.Vector2d.MagnitudeMax(in OpenTK.Mathematics.Vector2d, in OpenTK.Mathematics.Vector2d, out OpenTK.Mathematics.Vector2d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MagnitudeMax - path: opentk/src/OpenTK.Mathematics/Vector/Vector2d.cs - startLine: 437 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2d.cs + startLine: 474 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1618,13 +1581,9 @@ items: fullName: OpenTK.Mathematics.Vector2d.Clamp(OpenTK.Mathematics.Vector2d, OpenTK.Mathematics.Vector2d, OpenTK.Mathematics.Vector2d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Clamp - path: opentk/src/OpenTK.Mathematics/Vector/Vector2d.cs - startLine: 449 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2d.cs + startLine: 486 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1669,13 +1628,9 @@ items: fullName: OpenTK.Mathematics.Vector2d.Clamp(in OpenTK.Mathematics.Vector2d, in OpenTK.Mathematics.Vector2d, in OpenTK.Mathematics.Vector2d, out OpenTK.Mathematics.Vector2d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Clamp - path: opentk/src/OpenTK.Mathematics/Vector/Vector2d.cs - startLine: 464 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2d.cs + startLine: 501 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1701,6 +1656,71 @@ items: nameWithType.vb: Vector2d.Clamp(Vector2d, Vector2d, Vector2d, Vector2d) fullName.vb: OpenTK.Mathematics.Vector2d.Clamp(OpenTK.Mathematics.Vector2d, OpenTK.Mathematics.Vector2d, OpenTK.Mathematics.Vector2d, OpenTK.Mathematics.Vector2d) name.vb: Clamp(Vector2d, Vector2d, Vector2d, Vector2d) +- uid: OpenTK.Mathematics.Vector2d.Abs(OpenTK.Mathematics.Vector2d) + commentId: M:OpenTK.Mathematics.Vector2d.Abs(OpenTK.Mathematics.Vector2d) + id: Abs(OpenTK.Mathematics.Vector2d) + parent: OpenTK.Mathematics.Vector2d + langs: + - csharp + - vb + name: Abs(Vector2d) + nameWithType: Vector2d.Abs(Vector2d) + fullName: OpenTK.Mathematics.Vector2d.Abs(OpenTK.Mathematics.Vector2d) + type: Method + source: + id: Abs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2d.cs + startLine: 512 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: Take the component-wise absolute value of a vector. + example: [] + syntax: + content: public static Vector2d Abs(Vector2d vec) + parameters: + - id: vec + type: OpenTK.Mathematics.Vector2d + description: The vector to apply component-wise absolute value to. + return: + type: OpenTK.Mathematics.Vector2d + description: The component-wise absolute value vector. + content.vb: Public Shared Function Abs(vec As Vector2d) As Vector2d + overload: OpenTK.Mathematics.Vector2d.Abs* +- uid: OpenTK.Mathematics.Vector2d.Abs(OpenTK.Mathematics.Vector2d@,OpenTK.Mathematics.Vector2d@) + commentId: M:OpenTK.Mathematics.Vector2d.Abs(OpenTK.Mathematics.Vector2d@,OpenTK.Mathematics.Vector2d@) + id: Abs(OpenTK.Mathematics.Vector2d@,OpenTK.Mathematics.Vector2d@) + parent: OpenTK.Mathematics.Vector2d + langs: + - csharp + - vb + name: Abs(in Vector2d, out Vector2d) + nameWithType: Vector2d.Abs(in Vector2d, out Vector2d) + fullName: OpenTK.Mathematics.Vector2d.Abs(in OpenTK.Mathematics.Vector2d, out OpenTK.Mathematics.Vector2d) + type: Method + source: + id: Abs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2d.cs + startLine: 524 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: Take the component-wise absolute value of a vector. + example: [] + syntax: + content: public static void Abs(in Vector2d vec, out Vector2d result) + parameters: + - id: vec + type: OpenTK.Mathematics.Vector2d + description: The vector to apply component-wise absolute value to. + - id: result + type: OpenTK.Mathematics.Vector2d + description: The component-wise absolute value vector. + content.vb: Public Shared Sub Abs(vec As Vector2d, result As Vector2d) + overload: OpenTK.Mathematics.Vector2d.Abs* + nameWithType.vb: Vector2d.Abs(Vector2d, Vector2d) + fullName.vb: OpenTK.Mathematics.Vector2d.Abs(OpenTK.Mathematics.Vector2d, OpenTK.Mathematics.Vector2d) + name.vb: Abs(Vector2d, Vector2d) - uid: OpenTK.Mathematics.Vector2d.Distance(OpenTK.Mathematics.Vector2d,OpenTK.Mathematics.Vector2d) commentId: M:OpenTK.Mathematics.Vector2d.Distance(OpenTK.Mathematics.Vector2d,OpenTK.Mathematics.Vector2d) id: Distance(OpenTK.Mathematics.Vector2d,OpenTK.Mathematics.Vector2d) @@ -1713,13 +1733,9 @@ items: fullName: OpenTK.Mathematics.Vector2d.Distance(OpenTK.Mathematics.Vector2d, OpenTK.Mathematics.Vector2d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Distance - path: opentk/src/OpenTK.Mathematics/Vector/Vector2d.cs - startLine: 476 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2d.cs + startLine: 536 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1761,13 +1777,9 @@ items: fullName: OpenTK.Mathematics.Vector2d.Distance(in OpenTK.Mathematics.Vector2d, in OpenTK.Mathematics.Vector2d, out double) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Distance - path: opentk/src/OpenTK.Mathematics/Vector/Vector2d.cs - startLine: 489 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2d.cs + startLine: 549 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1802,13 +1814,9 @@ items: fullName: OpenTK.Mathematics.Vector2d.DistanceSquared(OpenTK.Mathematics.Vector2d, OpenTK.Mathematics.Vector2d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DistanceSquared - path: opentk/src/OpenTK.Mathematics/Vector/Vector2d.cs - startLine: 500 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2d.cs + startLine: 560 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1850,13 +1858,9 @@ items: fullName: OpenTK.Mathematics.Vector2d.DistanceSquared(in OpenTK.Mathematics.Vector2d, in OpenTK.Mathematics.Vector2d, out double) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DistanceSquared - path: opentk/src/OpenTK.Mathematics/Vector/Vector2d.cs - startLine: 513 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2d.cs + startLine: 573 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1891,13 +1895,9 @@ items: fullName: OpenTK.Mathematics.Vector2d.Normalize(OpenTK.Mathematics.Vector2d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Normalize - path: opentk/src/OpenTK.Mathematics/Vector/Vector2d.cs - startLine: 523 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2d.cs + startLine: 583 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1936,13 +1936,9 @@ items: fullName: OpenTK.Mathematics.Vector2d.Normalize(in OpenTK.Mathematics.Vector2d, out OpenTK.Mathematics.Vector2d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Normalize - path: opentk/src/OpenTK.Mathematics/Vector/Vector2d.cs - startLine: 537 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2d.cs + startLine: 597 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1974,13 +1970,9 @@ items: fullName: OpenTK.Mathematics.Vector2d.NormalizeFast(OpenTK.Mathematics.Vector2d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: NormalizeFast - path: opentk/src/OpenTK.Mathematics/Vector/Vector2d.cs - startLine: 549 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2d.cs + startLine: 609 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2019,13 +2011,9 @@ items: fullName: OpenTK.Mathematics.Vector2d.NormalizeFast(in OpenTK.Mathematics.Vector2d, out OpenTK.Mathematics.Vector2d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: NormalizeFast - path: opentk/src/OpenTK.Mathematics/Vector/Vector2d.cs - startLine: 563 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2d.cs + startLine: 623 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2057,13 +2045,9 @@ items: fullName: OpenTK.Mathematics.Vector2d.Dot(OpenTK.Mathematics.Vector2d, OpenTK.Mathematics.Vector2d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Dot - path: opentk/src/OpenTK.Mathematics/Vector/Vector2d.cs - startLine: 576 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2d.cs + startLine: 636 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2105,13 +2089,9 @@ items: fullName: OpenTK.Mathematics.Vector2d.Dot(in OpenTK.Mathematics.Vector2d, in OpenTK.Mathematics.Vector2d, out double) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Dot - path: opentk/src/OpenTK.Mathematics/Vector/Vector2d.cs - startLine: 588 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2d.cs + startLine: 648 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2146,13 +2126,9 @@ items: fullName: OpenTK.Mathematics.Vector2d.Lerp(OpenTK.Mathematics.Vector2d, OpenTK.Mathematics.Vector2d, double) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Lerp - path: opentk/src/OpenTK.Mathematics/Vector/Vector2d.cs - startLine: 600 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2d.cs + startLine: 660 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2200,13 +2176,9 @@ items: fullName: OpenTK.Mathematics.Vector2d.Lerp(in OpenTK.Mathematics.Vector2d, in OpenTK.Mathematics.Vector2d, double, out OpenTK.Mathematics.Vector2d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Lerp - path: opentk/src/OpenTK.Mathematics/Vector/Vector2d.cs - startLine: 615 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2d.cs + startLine: 675 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2244,13 +2216,9 @@ items: fullName: OpenTK.Mathematics.Vector2d.Lerp(OpenTK.Mathematics.Vector2d, OpenTK.Mathematics.Vector2d, OpenTK.Mathematics.Vector2d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Lerp - path: opentk/src/OpenTK.Mathematics/Vector/Vector2d.cs - startLine: 628 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2d.cs + startLine: 688 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2295,13 +2263,9 @@ items: fullName: OpenTK.Mathematics.Vector2d.Lerp(in OpenTK.Mathematics.Vector2d, in OpenTK.Mathematics.Vector2d, OpenTK.Mathematics.Vector2d, out OpenTK.Mathematics.Vector2d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Lerp - path: opentk/src/OpenTK.Mathematics/Vector/Vector2d.cs - startLine: 643 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2d.cs + startLine: 703 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2327,6 +2291,194 @@ items: nameWithType.vb: Vector2d.Lerp(Vector2d, Vector2d, Vector2d, Vector2d) fullName.vb: OpenTK.Mathematics.Vector2d.Lerp(OpenTK.Mathematics.Vector2d, OpenTK.Mathematics.Vector2d, OpenTK.Mathematics.Vector2d, OpenTK.Mathematics.Vector2d) name.vb: Lerp(Vector2d, Vector2d, Vector2d, Vector2d) +- uid: OpenTK.Mathematics.Vector2d.Slerp(OpenTK.Mathematics.Vector2d,OpenTK.Mathematics.Vector2d,System.Double) + commentId: M:OpenTK.Mathematics.Vector2d.Slerp(OpenTK.Mathematics.Vector2d,OpenTK.Mathematics.Vector2d,System.Double) + id: Slerp(OpenTK.Mathematics.Vector2d,OpenTK.Mathematics.Vector2d,System.Double) + parent: OpenTK.Mathematics.Vector2d + langs: + - csharp + - vb + name: Slerp(Vector2d, Vector2d, double) + nameWithType: Vector2d.Slerp(Vector2d, Vector2d, double) + fullName: OpenTK.Mathematics.Vector2d.Slerp(OpenTK.Mathematics.Vector2d, OpenTK.Mathematics.Vector2d, double) + type: Method + source: + id: Slerp + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2d.cs + startLine: 717 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: >- + Returns a new vector that is the spherical interpolation of the two given vectors. + + a and b need to be normalized for this function to work properly. + example: [] + syntax: + content: >- + [Pure] + + public static Vector2d Slerp(Vector2d a, Vector2d b, double t) + parameters: + - id: a + type: OpenTK.Mathematics.Vector2d + description: Unit vector start point. + - id: b + type: OpenTK.Mathematics.Vector2d + description: Unit vector end point. + - id: t + type: System.Double + description: The blend factor. + return: + type: OpenTK.Mathematics.Vector2d + description: a when t=0, b when t=1, and a spherical interpolation between the vectors otherwise. + content.vb: >- + + + Public Shared Function Slerp(a As Vector2d, b As Vector2d, t As Double) As Vector2d + overload: OpenTK.Mathematics.Vector2d.Slerp* + attributes: + - type: System.Diagnostics.Contracts.PureAttribute + ctor: System.Diagnostics.Contracts.PureAttribute.#ctor + arguments: [] + nameWithType.vb: Vector2d.Slerp(Vector2d, Vector2d, Double) + fullName.vb: OpenTK.Mathematics.Vector2d.Slerp(OpenTK.Mathematics.Vector2d, OpenTK.Mathematics.Vector2d, Double) + name.vb: Slerp(Vector2d, Vector2d, Double) +- uid: OpenTK.Mathematics.Vector2d.Slerp(OpenTK.Mathematics.Vector2d@,OpenTK.Mathematics.Vector2d@,System.Double,OpenTK.Mathematics.Vector2d@) + commentId: M:OpenTK.Mathematics.Vector2d.Slerp(OpenTK.Mathematics.Vector2d@,OpenTK.Mathematics.Vector2d@,System.Double,OpenTK.Mathematics.Vector2d@) + id: Slerp(OpenTK.Mathematics.Vector2d@,OpenTK.Mathematics.Vector2d@,System.Double,OpenTK.Mathematics.Vector2d@) + parent: OpenTK.Mathematics.Vector2d + langs: + - csharp + - vb + name: Slerp(in Vector2d, in Vector2d, double, out Vector2d) + nameWithType: Vector2d.Slerp(in Vector2d, in Vector2d, double, out Vector2d) + fullName: OpenTK.Mathematics.Vector2d.Slerp(in OpenTK.Mathematics.Vector2d, in OpenTK.Mathematics.Vector2d, double, out OpenTK.Mathematics.Vector2d) + type: Method + source: + id: Slerp + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2d.cs + startLine: 747 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: >- + Returns a new vector that is the spherical interpolation of the two given vectors. + + a and b need to be normalized for this function to work properly. + example: [] + syntax: + content: public static void Slerp(in Vector2d a, in Vector2d b, double t, out Vector2d result) + parameters: + - id: a + type: OpenTK.Mathematics.Vector2d + description: Unit vector start point. + - id: b + type: OpenTK.Mathematics.Vector2d + description: Unit vector end point. + - id: t + type: System.Double + description: The blend factor. + - id: result + type: OpenTK.Mathematics.Vector2d + description: Is a when t=0, b when t=1, and a spherical interpolation between the vectors otherwise. + content.vb: Public Shared Sub Slerp(a As Vector2d, b As Vector2d, t As Double, result As Vector2d) + overload: OpenTK.Mathematics.Vector2d.Slerp* + nameWithType.vb: Vector2d.Slerp(Vector2d, Vector2d, Double, Vector2d) + fullName.vb: OpenTK.Mathematics.Vector2d.Slerp(OpenTK.Mathematics.Vector2d, OpenTK.Mathematics.Vector2d, Double, OpenTK.Mathematics.Vector2d) + name.vb: Slerp(Vector2d, Vector2d, Double, Vector2d) +- uid: OpenTK.Mathematics.Vector2d.Elerp(OpenTK.Mathematics.Vector2d,OpenTK.Mathematics.Vector2d,System.Double) + commentId: M:OpenTK.Mathematics.Vector2d.Elerp(OpenTK.Mathematics.Vector2d,OpenTK.Mathematics.Vector2d,System.Double) + id: Elerp(OpenTK.Mathematics.Vector2d,OpenTK.Mathematics.Vector2d,System.Double) + parent: OpenTK.Mathematics.Vector2d + langs: + - csharp + - vb + name: Elerp(Vector2d, Vector2d, double) + nameWithType: Vector2d.Elerp(Vector2d, Vector2d, double) + fullName: OpenTK.Mathematics.Vector2d.Elerp(OpenTK.Mathematics.Vector2d, OpenTK.Mathematics.Vector2d, double) + type: Method + source: + id: Elerp + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2d.cs + startLine: 785 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: >- + Returns a new vector that is the exponential interpolation of the two vectors. + + Equivalent to a * pow(b/a, t). + example: [] + syntax: + content: public static Vector2d Elerp(Vector2d a, Vector2d b, double t) + parameters: + - id: a + type: OpenTK.Mathematics.Vector2d + description: The starting value. Must be non-negative. + - id: b + type: OpenTK.Mathematics.Vector2d + description: The end value. Must be non-negative. + - id: t + type: System.Double + description: The blend factor. + return: + type: OpenTK.Mathematics.Vector2d + description: The exponential interpolation between a and b. + content.vb: Public Shared Function Elerp(a As Vector2d, b As Vector2d, t As Double) As Vector2d + overload: OpenTK.Mathematics.Vector2d.Elerp* + seealso: + - linkId: OpenTK.Mathematics.MathHelper.Elerp(System.Double,System.Double,System.Double) + commentId: M:OpenTK.Mathematics.MathHelper.Elerp(System.Double,System.Double,System.Double) + nameWithType.vb: Vector2d.Elerp(Vector2d, Vector2d, Double) + fullName.vb: OpenTK.Mathematics.Vector2d.Elerp(OpenTK.Mathematics.Vector2d, OpenTK.Mathematics.Vector2d, Double) + name.vb: Elerp(Vector2d, Vector2d, Double) +- uid: OpenTK.Mathematics.Vector2d.Elerp(OpenTK.Mathematics.Vector2d@,OpenTK.Mathematics.Vector2d@,System.Double,OpenTK.Mathematics.Vector2d@) + commentId: M:OpenTK.Mathematics.Vector2d.Elerp(OpenTK.Mathematics.Vector2d@,OpenTK.Mathematics.Vector2d@,System.Double,OpenTK.Mathematics.Vector2d@) + id: Elerp(OpenTK.Mathematics.Vector2d@,OpenTK.Mathematics.Vector2d@,System.Double,OpenTK.Mathematics.Vector2d@) + parent: OpenTK.Mathematics.Vector2d + langs: + - csharp + - vb + name: Elerp(in Vector2d, in Vector2d, double, out Vector2d) + nameWithType: Vector2d.Elerp(in Vector2d, in Vector2d, double, out Vector2d) + fullName: OpenTK.Mathematics.Vector2d.Elerp(in OpenTK.Mathematics.Vector2d, in OpenTK.Mathematics.Vector2d, double, out OpenTK.Mathematics.Vector2d) + type: Method + source: + id: Elerp + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2d.cs + startLine: 801 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: >- + Returns a new vector that is the exponential interpolation of the two vectors. + + Equivalent to a * pow(b/a, t). + example: [] + syntax: + content: public static void Elerp(in Vector2d a, in Vector2d b, double t, out Vector2d result) + parameters: + - id: a + type: OpenTK.Mathematics.Vector2d + description: The starting value. Must be non-negative. + - id: b + type: OpenTK.Mathematics.Vector2d + description: The end value. Must be non-negative. + - id: t + type: System.Double + description: The blend factor. + - id: result + type: OpenTK.Mathematics.Vector2d + description: The exponential interpolation between a and b. + content.vb: Public Shared Sub Elerp(a As Vector2d, b As Vector2d, t As Double, result As Vector2d) + overload: OpenTK.Mathematics.Vector2d.Elerp* + seealso: + - linkId: OpenTK.Mathematics.MathHelper.Elerp(System.Double,System.Double,System.Double) + commentId: M:OpenTK.Mathematics.MathHelper.Elerp(System.Double,System.Double,System.Double) + nameWithType.vb: Vector2d.Elerp(Vector2d, Vector2d, Double, Vector2d) + fullName.vb: OpenTK.Mathematics.Vector2d.Elerp(OpenTK.Mathematics.Vector2d, OpenTK.Mathematics.Vector2d, Double, OpenTK.Mathematics.Vector2d) + name.vb: Elerp(Vector2d, Vector2d, Double, Vector2d) - uid: OpenTK.Mathematics.Vector2d.BaryCentric(OpenTK.Mathematics.Vector2d,OpenTK.Mathematics.Vector2d,OpenTK.Mathematics.Vector2d,System.Double,System.Double) commentId: M:OpenTK.Mathematics.Vector2d.BaryCentric(OpenTK.Mathematics.Vector2d,OpenTK.Mathematics.Vector2d,OpenTK.Mathematics.Vector2d,System.Double,System.Double) id: BaryCentric(OpenTK.Mathematics.Vector2d,OpenTK.Mathematics.Vector2d,OpenTK.Mathematics.Vector2d,System.Double,System.Double) @@ -2339,13 +2491,9 @@ items: fullName: OpenTK.Mathematics.Vector2d.BaryCentric(OpenTK.Mathematics.Vector2d, OpenTK.Mathematics.Vector2d, OpenTK.Mathematics.Vector2d, double, double) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: BaryCentric - path: opentk/src/OpenTK.Mathematics/Vector/Vector2d.cs - startLine: 658 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2d.cs + startLine: 816 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2399,13 +2547,9 @@ items: fullName: OpenTK.Mathematics.Vector2d.BaryCentric(in OpenTK.Mathematics.Vector2d, in OpenTK.Mathematics.Vector2d, in OpenTK.Mathematics.Vector2d, double, double, out OpenTK.Mathematics.Vector2d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: BaryCentric - path: opentk/src/OpenTK.Mathematics/Vector/Vector2d.cs - startLine: 677 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2d.cs + startLine: 835 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2452,13 +2596,9 @@ items: fullName: OpenTK.Mathematics.Vector2d.TransformRow(OpenTK.Mathematics.Vector2d, OpenTK.Mathematics.Matrix2d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TransformRow - path: opentk/src/OpenTK.Mathematics/Vector/Vector2d.cs - startLine: 702 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2d.cs + startLine: 860 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2500,13 +2640,9 @@ items: fullName: OpenTK.Mathematics.Vector2d.TransformRow(in OpenTK.Mathematics.Vector2d, in OpenTK.Mathematics.Matrix2d, out OpenTK.Mathematics.Vector2d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TransformRow - path: opentk/src/OpenTK.Mathematics/Vector/Vector2d.cs - startLine: 715 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2d.cs + startLine: 873 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2541,13 +2677,9 @@ items: fullName: OpenTK.Mathematics.Vector2d.Transform(OpenTK.Mathematics.Vector2d, OpenTK.Mathematics.Quaterniond) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Transform - path: opentk/src/OpenTK.Mathematics/Vector/Vector2d.cs - startLine: 728 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2d.cs + startLine: 886 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2589,13 +2721,9 @@ items: fullName: OpenTK.Mathematics.Vector2d.Transform(in OpenTK.Mathematics.Vector2d, in OpenTK.Mathematics.Quaterniond, out OpenTK.Mathematics.Vector2d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Transform - path: opentk/src/OpenTK.Mathematics/Vector/Vector2d.cs - startLine: 741 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2d.cs + startLine: 899 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2630,13 +2758,9 @@ items: fullName: OpenTK.Mathematics.Vector2d.TransformColumn(OpenTK.Mathematics.Matrix2d, OpenTK.Mathematics.Vector2d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TransformColumn - path: opentk/src/OpenTK.Mathematics/Vector/Vector2d.cs - startLine: 758 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2d.cs + startLine: 916 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2678,13 +2802,9 @@ items: fullName: OpenTK.Mathematics.Vector2d.TransformColumn(in OpenTK.Mathematics.Matrix2d, in OpenTK.Mathematics.Vector2d, out OpenTK.Mathematics.Vector2d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TransformColumn - path: opentk/src/OpenTK.Mathematics/Vector/Vector2d.cs - startLine: 771 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2d.cs + startLine: 929 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2719,20 +2839,16 @@ items: fullName: OpenTK.Mathematics.Vector2d.Yx type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Yx - path: opentk/src/OpenTK.Mathematics/Vector/Vector2d.cs - startLine: 780 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2d.cs + startLine: 938 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector2d with the Y and X components of this instance. example: [] syntax: - content: public Vector2d Yx { get; set; } + content: public Vector2d Yx { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector2d @@ -2750,13 +2866,9 @@ items: fullName: OpenTK.Mathematics.Vector2d.operator +(OpenTK.Mathematics.Vector2d, OpenTK.Mathematics.Vector2d) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Addition - path: opentk/src/OpenTK.Mathematics/Vector/Vector2d.cs - startLine: 797 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2d.cs + startLine: 955 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2801,13 +2913,9 @@ items: fullName: OpenTK.Mathematics.Vector2d.operator -(OpenTK.Mathematics.Vector2d, OpenTK.Mathematics.Vector2d) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Subtraction - path: opentk/src/OpenTK.Mathematics/Vector/Vector2d.cs - startLine: 811 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2d.cs + startLine: 969 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2852,13 +2960,9 @@ items: fullName: OpenTK.Mathematics.Vector2d.operator -(OpenTK.Mathematics.Vector2d) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_UnaryNegation - path: opentk/src/OpenTK.Mathematics/Vector/Vector2d.cs - startLine: 824 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2d.cs + startLine: 982 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2900,13 +3004,9 @@ items: fullName: OpenTK.Mathematics.Vector2d.operator *(OpenTK.Mathematics.Vector2d, double) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Multiply - path: opentk/src/OpenTK.Mathematics/Vector/Vector2d.cs - startLine: 838 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2d.cs + startLine: 996 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2951,13 +3051,9 @@ items: fullName: OpenTK.Mathematics.Vector2d.operator *(double, OpenTK.Mathematics.Vector2d) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Multiply - path: opentk/src/OpenTK.Mathematics/Vector/Vector2d.cs - startLine: 852 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2d.cs + startLine: 1010 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -3002,13 +3098,9 @@ items: fullName: OpenTK.Mathematics.Vector2d.operator *(OpenTK.Mathematics.Vector2d, OpenTK.Mathematics.Vector2d) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Multiply - path: opentk/src/OpenTK.Mathematics/Vector/Vector2d.cs - startLine: 866 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2d.cs + startLine: 1024 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -3053,13 +3145,9 @@ items: fullName: OpenTK.Mathematics.Vector2d.operator *(OpenTK.Mathematics.Vector2d, OpenTK.Mathematics.Matrix2d) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Multiply - path: opentk/src/OpenTK.Mathematics/Vector/Vector2d.cs - startLine: 880 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2d.cs + startLine: 1038 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -3104,13 +3192,9 @@ items: fullName: OpenTK.Mathematics.Vector2d.operator *(OpenTK.Mathematics.Matrix2d, OpenTK.Mathematics.Vector2d) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Multiply - path: opentk/src/OpenTK.Mathematics/Vector/Vector2d.cs - startLine: 893 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2d.cs + startLine: 1051 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -3155,13 +3239,9 @@ items: fullName: OpenTK.Mathematics.Vector2d.operator *(OpenTK.Mathematics.Quaterniond, OpenTK.Mathematics.Vector2d) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Multiply - path: opentk/src/OpenTK.Mathematics/Vector/Vector2d.cs - startLine: 906 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2d.cs + startLine: 1064 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -3206,13 +3286,9 @@ items: fullName: OpenTK.Mathematics.Vector2d.operator /(OpenTK.Mathematics.Vector2d, double) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Division - path: opentk/src/OpenTK.Mathematics/Vector/Vector2d.cs - startLine: 919 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2d.cs + startLine: 1077 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -3257,13 +3333,9 @@ items: fullName: OpenTK.Mathematics.Vector2d.operator /(OpenTK.Mathematics.Vector2d, OpenTK.Mathematics.Vector2d) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Division - path: opentk/src/OpenTK.Mathematics/Vector/Vector2d.cs - startLine: 933 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2d.cs + startLine: 1091 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -3308,13 +3380,9 @@ items: fullName: OpenTK.Mathematics.Vector2d.operator ==(OpenTK.Mathematics.Vector2d, OpenTK.Mathematics.Vector2d) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Equality - path: opentk/src/OpenTK.Mathematics/Vector/Vector2d.cs - startLine: 947 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2d.cs + startLine: 1105 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -3349,13 +3417,9 @@ items: fullName: OpenTK.Mathematics.Vector2d.operator !=(OpenTK.Mathematics.Vector2d, OpenTK.Mathematics.Vector2d) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Inequality - path: opentk/src/OpenTK.Mathematics/Vector/Vector2d.cs - startLine: 958 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2d.cs + startLine: 1116 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -3390,13 +3454,9 @@ items: fullName: OpenTK.Mathematics.Vector2d.explicit operator OpenTK.Mathematics.Vector2(OpenTK.Mathematics.Vector2d) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Explicit - path: opentk/src/OpenTK.Mathematics/Vector/Vector2d.cs - startLine: 968 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2d.cs + startLine: 1126 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -3438,13 +3498,9 @@ items: fullName: OpenTK.Mathematics.Vector2d.explicit operator OpenTK.Mathematics.Vector2h(OpenTK.Mathematics.Vector2d) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Explicit - path: opentk/src/OpenTK.Mathematics/Vector/Vector2d.cs - startLine: 979 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2d.cs + startLine: 1137 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -3486,13 +3542,9 @@ items: fullName: OpenTK.Mathematics.Vector2d.explicit operator OpenTK.Mathematics.Vector2i(OpenTK.Mathematics.Vector2d) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Explicit - path: opentk/src/OpenTK.Mathematics/Vector/Vector2d.cs - startLine: 990 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2d.cs + startLine: 1148 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -3534,13 +3586,9 @@ items: fullName: OpenTK.Mathematics.Vector2d.implicit operator OpenTK.Mathematics.Vector2d((double X, double Y)) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Implicit - path: opentk/src/OpenTK.Mathematics/Vector/Vector2d.cs - startLine: 1002 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2d.cs + startLine: 1160 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -3585,13 +3633,9 @@ items: fullName: OpenTK.Mathematics.Vector2d.ToString() type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Mathematics/Vector/Vector2d.cs - startLine: 1009 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2d.cs + startLine: 1167 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -3617,13 +3661,9 @@ items: fullName: OpenTK.Mathematics.Vector2d.ToString(string) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Mathematics/Vector/Vector2d.cs - startLine: 1015 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2d.cs + startLine: 1173 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -3660,13 +3700,9 @@ items: fullName: OpenTK.Mathematics.Vector2d.ToString(System.IFormatProvider) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Mathematics/Vector/Vector2d.cs - startLine: 1021 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2d.cs + startLine: 1179 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -3700,20 +3736,16 @@ items: fullName: OpenTK.Mathematics.Vector2d.ToString(string, System.IFormatProvider) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Mathematics/Vector/Vector2d.cs - startLine: 1027 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2d.cs + startLine: 1185 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Formats the value of the current instance using the specified format. example: [] syntax: - content: public string ToString(string format, IFormatProvider formatProvider) + content: public readonly string ToString(string format, IFormatProvider formatProvider) parameters: - id: format type: System.String @@ -3753,13 +3785,9 @@ items: fullName: OpenTK.Mathematics.Vector2d.Equals(object) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Equals - path: opentk/src/OpenTK.Mathematics/Vector/Vector2d.cs - startLine: 1037 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2d.cs + startLine: 1195 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -3792,20 +3820,16 @@ items: fullName: OpenTK.Mathematics.Vector2d.Equals(OpenTK.Mathematics.Vector2d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Equals - path: opentk/src/OpenTK.Mathematics/Vector/Vector2d.cs - startLine: 1043 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2d.cs + startLine: 1201 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Indicates whether the current object is equal to another object of the same type. example: [] syntax: - content: public bool Equals(Vector2d other) + content: public readonly bool Equals(Vector2d other) parameters: - id: other type: OpenTK.Mathematics.Vector2d @@ -3829,20 +3853,16 @@ items: fullName: OpenTK.Mathematics.Vector2d.GetHashCode() type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetHashCode - path: opentk/src/OpenTK.Mathematics/Vector/Vector2d.cs - startLine: 1050 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2d.cs + startLine: 1210 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Returns the hash code for this instance. example: [] syntax: - content: public override int GetHashCode() + content: public override readonly int GetHashCode() return: type: System.Int32 description: A 32-bit signed integer that is the hash code for this instance. @@ -3861,13 +3881,9 @@ items: fullName: OpenTK.Mathematics.Vector2d.Deconstruct(out double, out double) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Deconstruct - path: opentk/src/OpenTK.Mathematics/Vector/Vector2d.cs - startLine: 1060 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2d.cs + startLine: 1220 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -3877,7 +3893,7 @@ items: content: >- [Pure] - public void Deconstruct(out double x, out double y) + public readonly void Deconstruct(out double x, out double y) parameters: - id: x type: System.Double @@ -4187,12 +4203,24 @@ references: name: Length nameWithType: Vector2d.Length fullName: OpenTK.Mathematics.Vector2d.Length +- uid: OpenTK.Mathematics.Vector2d.ReciprocalLengthFast* + commentId: Overload:OpenTK.Mathematics.Vector2d.ReciprocalLengthFast + href: OpenTK.Mathematics.Vector2d.html#OpenTK_Mathematics_Vector2d_ReciprocalLengthFast + name: ReciprocalLengthFast + nameWithType: Vector2d.ReciprocalLengthFast + fullName: OpenTK.Mathematics.Vector2d.ReciprocalLengthFast - uid: OpenTK.Mathematics.Vector2d.Length commentId: P:OpenTK.Mathematics.Vector2d.Length href: OpenTK.Mathematics.Vector2d.html#OpenTK_Mathematics_Vector2d_Length name: Length nameWithType: Vector2d.Length fullName: OpenTK.Mathematics.Vector2d.Length +- uid: OpenTK.Mathematics.Vector2d.LengthFast* + commentId: Overload:OpenTK.Mathematics.Vector2d.LengthFast + href: OpenTK.Mathematics.Vector2d.html#OpenTK_Mathematics_Vector2d_LengthFast + name: LengthFast + nameWithType: Vector2d.LengthFast + fullName: OpenTK.Mathematics.Vector2d.LengthFast - uid: OpenTK.Mathematics.Vector2d.LengthSquared* commentId: Overload:OpenTK.Mathematics.Vector2d.LengthSquared href: OpenTK.Mathematics.Vector2d.html#OpenTK_Mathematics_Vector2d_LengthSquared @@ -4223,6 +4251,18 @@ references: name: Normalize nameWithType: Vector2d.Normalize fullName: OpenTK.Mathematics.Vector2d.Normalize +- uid: OpenTK.Mathematics.Vector2d.NormalizeFast* + commentId: Overload:OpenTK.Mathematics.Vector2d.NormalizeFast + href: OpenTK.Mathematics.Vector2d.html#OpenTK_Mathematics_Vector2d_NormalizeFast + name: NormalizeFast + nameWithType: Vector2d.NormalizeFast + fullName: OpenTK.Mathematics.Vector2d.NormalizeFast +- uid: OpenTK.Mathematics.Vector2d.Abs* + commentId: Overload:OpenTK.Mathematics.Vector2d.Abs + href: OpenTK.Mathematics.Vector2d.html#OpenTK_Mathematics_Vector2d_Abs + name: Abs + nameWithType: Vector2d.Abs + fullName: OpenTK.Mathematics.Vector2d.Abs - uid: OpenTK.Mathematics.Vector2d.Add* commentId: Overload:OpenTK.Mathematics.Vector2d.Add href: OpenTK.Mathematics.Vector2d.html#OpenTK_Mathematics_Vector2d_Add_OpenTK_Mathematics_Vector2d_OpenTK_Mathematics_Vector2d_ @@ -4289,12 +4329,6 @@ references: name: DistanceSquared nameWithType: Vector2d.DistanceSquared fullName: OpenTK.Mathematics.Vector2d.DistanceSquared -- uid: OpenTK.Mathematics.Vector2d.NormalizeFast* - commentId: Overload:OpenTK.Mathematics.Vector2d.NormalizeFast - href: OpenTK.Mathematics.Vector2d.html#OpenTK_Mathematics_Vector2d_NormalizeFast_OpenTK_Mathematics_Vector2d_ - name: NormalizeFast - nameWithType: Vector2d.NormalizeFast - fullName: OpenTK.Mathematics.Vector2d.NormalizeFast - uid: OpenTK.Mathematics.Vector2d.Dot* commentId: Overload:OpenTK.Mathematics.Vector2d.Dot href: OpenTK.Mathematics.Vector2d.html#OpenTK_Mathematics_Vector2d_Dot_OpenTK_Mathematics_Vector2d_OpenTK_Mathematics_Vector2d_ @@ -4307,6 +4341,72 @@ references: name: Lerp nameWithType: Vector2d.Lerp fullName: OpenTK.Mathematics.Vector2d.Lerp +- uid: OpenTK.Mathematics.Vector2d.Slerp* + commentId: Overload:OpenTK.Mathematics.Vector2d.Slerp + href: OpenTK.Mathematics.Vector2d.html#OpenTK_Mathematics_Vector2d_Slerp_OpenTK_Mathematics_Vector2d_OpenTK_Mathematics_Vector2d_System_Double_ + name: Slerp + nameWithType: Vector2d.Slerp + fullName: OpenTK.Mathematics.Vector2d.Slerp +- uid: OpenTK.Mathematics.MathHelper.Elerp(System.Double,System.Double,System.Double) + commentId: M:OpenTK.Mathematics.MathHelper.Elerp(System.Double,System.Double,System.Double) + isExternal: true + href: OpenTK.Mathematics.MathHelper.html#OpenTK_Mathematics_MathHelper_Elerp_System_Double_System_Double_System_Double_ + name: Elerp(double, double, double) + nameWithType: MathHelper.Elerp(double, double, double) + fullName: OpenTK.Mathematics.MathHelper.Elerp(double, double, double) + nameWithType.vb: MathHelper.Elerp(Double, Double, Double) + fullName.vb: OpenTK.Mathematics.MathHelper.Elerp(Double, Double, Double) + name.vb: Elerp(Double, Double, Double) + spec.csharp: + - uid: OpenTK.Mathematics.MathHelper.Elerp(System.Double,System.Double,System.Double) + name: Elerp + href: OpenTK.Mathematics.MathHelper.html#OpenTK_Mathematics_MathHelper_Elerp_System_Double_System_Double_System_Double_ + - name: ( + - uid: System.Double + name: double + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.double + - name: ',' + - name: " " + - uid: System.Double + name: double + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.double + - name: ',' + - name: " " + - uid: System.Double + name: double + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.double + - name: ) + spec.vb: + - uid: OpenTK.Mathematics.MathHelper.Elerp(System.Double,System.Double,System.Double) + name: Elerp + href: OpenTK.Mathematics.MathHelper.html#OpenTK_Mathematics_MathHelper_Elerp_System_Double_System_Double_System_Double_ + - name: ( + - uid: System.Double + name: Double + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.double + - name: ',' + - name: " " + - uid: System.Double + name: Double + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.double + - name: ',' + - name: " " + - uid: System.Double + name: Double + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.double + - name: ) +- uid: OpenTK.Mathematics.Vector2d.Elerp* + commentId: Overload:OpenTK.Mathematics.Vector2d.Elerp + href: OpenTK.Mathematics.Vector2d.html#OpenTK_Mathematics_Vector2d_Elerp_OpenTK_Mathematics_Vector2d_OpenTK_Mathematics_Vector2d_System_Double_ + name: Elerp + nameWithType: Vector2d.Elerp + fullName: OpenTK.Mathematics.Vector2d.Elerp - uid: OpenTK.Mathematics.Vector2d.BaryCentric* commentId: Overload:OpenTK.Mathematics.Vector2d.BaryCentric href: OpenTK.Mathematics.Vector2d.html#OpenTK_Mathematics_Vector2d_BaryCentric_OpenTK_Mathematics_Vector2d_OpenTK_Mathematics_Vector2d_OpenTK_Mathematics_Vector2d_System_Double_System_Double_ diff --git a/api/OpenTK.Mathematics.Vector2h.yml b/api/OpenTK.Mathematics.Vector2h.yml index cb6a2191..f2c5ac9e 100644 --- a/api/OpenTK.Mathematics.Vector2h.yml +++ b/api/OpenTK.Mathematics.Vector2h.yml @@ -39,13 +39,9 @@ items: fullName: OpenTK.Mathematics.Vector2h type: Struct source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Vector2h - path: opentk/src/OpenTK.Mathematics/Vector/Vector2h.cs - startLine: 36 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2h.cs + startLine: 35 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -84,13 +80,9 @@ items: fullName: OpenTK.Mathematics.Vector2h.X type: Field source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: X - path: opentk/src/OpenTK.Mathematics/Vector/Vector2h.cs - startLine: 43 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2h.cs + startLine: 42 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -113,13 +105,9 @@ items: fullName: OpenTK.Mathematics.Vector2h.Y type: Field source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Y - path: opentk/src/OpenTK.Mathematics/Vector/Vector2h.cs - startLine: 48 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2h.cs + startLine: 47 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -142,13 +130,9 @@ items: fullName: OpenTK.Mathematics.Vector2h.Vector2h(System.Half) type: Constructor source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Mathematics/Vector/Vector2h.cs - startLine: 54 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2h.cs + startLine: 53 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -177,13 +161,9 @@ items: fullName: OpenTK.Mathematics.Vector2h.Vector2h(float) type: Constructor source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Mathematics/Vector/Vector2h.cs - startLine: 64 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2h.cs + startLine: 63 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -212,13 +192,9 @@ items: fullName: OpenTK.Mathematics.Vector2h.Vector2h(System.Half, System.Half) type: Constructor source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Mathematics/Vector/Vector2h.cs - startLine: 75 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2h.cs + startLine: 74 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -250,13 +226,9 @@ items: fullName: OpenTK.Mathematics.Vector2h.Vector2h(float, float) type: Constructor source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Mathematics/Vector/Vector2h.cs - startLine: 86 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2h.cs + startLine: 85 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -288,20 +260,16 @@ items: fullName: OpenTK.Mathematics.Vector2h.Yx type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Yx - path: opentk/src/OpenTK.Mathematics/Vector/Vector2h.cs - startLine: 95 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2h.cs + startLine: 94 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector2h with the Y and X components of this instance. example: [] syntax: - content: public Vector2h Yx { get; set; } + content: public Vector2h Yx { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector2h @@ -319,20 +287,16 @@ items: fullName: OpenTK.Mathematics.Vector2h.ToVector2() type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToVector2 - path: opentk/src/OpenTK.Mathematics/Vector/Vector2h.cs - startLine: 110 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2h.cs + startLine: 109 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Returns this Half2 instance's contents as Vector2. example: [] syntax: - content: public Vector2 ToVector2() + content: public readonly Vector2 ToVector2() return: type: OpenTK.Mathematics.Vector2 description: The vector. @@ -350,20 +314,16 @@ items: fullName: OpenTK.Mathematics.Vector2h.ToVector2d() type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToVector2d - path: opentk/src/OpenTK.Mathematics/Vector/Vector2h.cs - startLine: 119 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2h.cs + startLine: 118 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Returns this Half2 instance's contents as Vector2d. example: [] syntax: - content: public Vector2d ToVector2d() + content: public readonly Vector2d ToVector2d() return: type: OpenTK.Mathematics.Vector2d description: The vector. @@ -381,13 +341,9 @@ items: fullName: OpenTK.Mathematics.Vector2h.implicit operator OpenTK.Mathematics.Vector2(OpenTK.Mathematics.Vector2h) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Implicit - path: opentk/src/OpenTK.Mathematics/Vector/Vector2h.cs - startLine: 129 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2h.cs + startLine: 128 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -429,13 +385,9 @@ items: fullName: OpenTK.Mathematics.Vector2h.implicit operator OpenTK.Mathematics.Vector2d(OpenTK.Mathematics.Vector2h) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Implicit - path: opentk/src/OpenTK.Mathematics/Vector/Vector2h.cs - startLine: 140 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2h.cs + startLine: 139 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -477,13 +429,9 @@ items: fullName: OpenTK.Mathematics.Vector2h.explicit operator OpenTK.Mathematics.Vector2i(OpenTK.Mathematics.Vector2h) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Explicit - path: opentk/src/OpenTK.Mathematics/Vector/Vector2h.cs - startLine: 151 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2h.cs + startLine: 150 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -525,13 +473,9 @@ items: fullName: OpenTK.Mathematics.Vector2h.implicit operator OpenTK.Mathematics.Vector2h((System.Half X, System.Half Y)) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Implicit - path: opentk/src/OpenTK.Mathematics/Vector/Vector2h.cs - startLine: 163 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2h.cs + startLine: 162 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -576,13 +520,9 @@ items: fullName: OpenTK.Mathematics.Vector2h.operator ==(OpenTK.Mathematics.Vector2h, OpenTK.Mathematics.Vector2h) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Equality - path: opentk/src/OpenTK.Mathematics/Vector/Vector2h.cs - startLine: 175 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2h.cs + startLine: 174 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -617,13 +557,9 @@ items: fullName: OpenTK.Mathematics.Vector2h.operator !=(OpenTK.Mathematics.Vector2h, OpenTK.Mathematics.Vector2h) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Inequality - path: opentk/src/OpenTK.Mathematics/Vector/Vector2h.cs - startLine: 186 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2h.cs + startLine: 185 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -658,13 +594,9 @@ items: fullName: OpenTK.Mathematics.Vector2h.SizeInBytes type: Field source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SizeInBytes - path: opentk/src/OpenTK.Mathematics/Vector/Vector2h.cs - startLine: 194 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2h.cs + startLine: 193 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -687,13 +619,9 @@ items: fullName: OpenTK.Mathematics.Vector2h.Vector2h(System.Runtime.Serialization.SerializationInfo, System.Runtime.Serialization.StreamingContext) type: Constructor source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Mathematics/Vector/Vector2h.cs - startLine: 201 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2h.cs + startLine: 200 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -725,20 +653,16 @@ items: fullName: OpenTK.Mathematics.Vector2h.GetObjectData(System.Runtime.Serialization.SerializationInfo, System.Runtime.Serialization.StreamingContext) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetObjectData - path: opentk/src/OpenTK.Mathematics/Vector/Vector2h.cs - startLine: 208 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2h.cs + startLine: 207 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Populates a with the data needed to serialize the target object. example: [] syntax: - content: public void GetObjectData(SerializationInfo info, StreamingContext context) + content: public readonly void GetObjectData(SerializationInfo info, StreamingContext context) parameters: - id: info type: System.Runtime.Serialization.SerializationInfo @@ -766,13 +690,9 @@ items: fullName: OpenTK.Mathematics.Vector2h.ToString() type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Mathematics/Vector/Vector2h.cs - startLine: 215 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2h.cs + startLine: 214 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -798,13 +718,9 @@ items: fullName: OpenTK.Mathematics.Vector2h.ToString(string) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Mathematics/Vector/Vector2h.cs - startLine: 221 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2h.cs + startLine: 220 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -841,13 +757,9 @@ items: fullName: OpenTK.Mathematics.Vector2h.ToString(System.IFormatProvider) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Mathematics/Vector/Vector2h.cs - startLine: 227 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2h.cs + startLine: 226 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -881,13 +793,9 @@ items: fullName: OpenTK.Mathematics.Vector2h.ToString(string, System.IFormatProvider) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Mathematics/Vector/Vector2h.cs - startLine: 233 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2h.cs + startLine: 232 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -934,13 +842,9 @@ items: fullName: OpenTK.Mathematics.Vector2h.Equals(object) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Equals - path: opentk/src/OpenTK.Mathematics/Vector/Vector2h.cs - startLine: 243 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2h.cs + startLine: 242 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -973,13 +877,9 @@ items: fullName: OpenTK.Mathematics.Vector2h.Equals(OpenTK.Mathematics.Vector2h) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Equals - path: opentk/src/OpenTK.Mathematics/Vector/Vector2h.cs - startLine: 249 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2h.cs + startLine: 248 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1010,20 +910,16 @@ items: fullName: OpenTK.Mathematics.Vector2h.GetHashCode() type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetHashCode - path: opentk/src/OpenTK.Mathematics/Vector/Vector2h.cs - startLine: 256 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2h.cs + startLine: 255 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Returns the hash code for this instance. example: [] syntax: - content: public override int GetHashCode() + content: public override readonly int GetHashCode() return: type: System.Int32 description: A 32-bit signed integer that is the hash code for this instance. @@ -1042,13 +938,9 @@ items: fullName: OpenTK.Mathematics.Vector2h.Deconstruct(out System.Half, out System.Half) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Deconstruct - path: opentk/src/OpenTK.Mathematics/Vector/Vector2h.cs - startLine: 266 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2h.cs + startLine: 265 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1058,7 +950,7 @@ items: content: >- [Pure] - public void Deconstruct(out Half x, out Half y) + public readonly void Deconstruct(out Half x, out Half y) parameters: - id: x type: System.Half diff --git a/api/OpenTK.Mathematics.Vector2i.yml b/api/OpenTK.Mathematics.Vector2i.yml index de37a5be..dae88888 100644 --- a/api/OpenTK.Mathematics.Vector2i.yml +++ b/api/OpenTK.Mathematics.Vector2i.yml @@ -7,6 +7,9 @@ items: children: - OpenTK.Mathematics.Vector2i.#ctor(System.Int32) - OpenTK.Mathematics.Vector2i.#ctor(System.Int32,System.Int32) + - OpenTK.Mathematics.Vector2i.Abs + - OpenTK.Mathematics.Vector2i.Abs(OpenTK.Mathematics.Vector2i) + - OpenTK.Mathematics.Vector2i.Abs(OpenTK.Mathematics.Vector2i@,OpenTK.Mathematics.Vector2i@) - OpenTK.Mathematics.Vector2i.Add(OpenTK.Mathematics.Vector2i,OpenTK.Mathematics.Vector2i) - OpenTK.Mathematics.Vector2i.Add(OpenTK.Mathematics.Vector2i@,OpenTK.Mathematics.Vector2i@,OpenTK.Mathematics.Vector2i@) - OpenTK.Mathematics.Vector2i.Clamp(OpenTK.Mathematics.Vector2i,OpenTK.Mathematics.Vector2i,OpenTK.Mathematics.Vector2i) @@ -73,13 +76,9 @@ items: fullName: OpenTK.Mathematics.Vector2i type: Struct source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Vector2i - path: opentk/src/OpenTK.Mathematics/Vector/Vector2i.cs - startLine: 24 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2i.cs + startLine: 23 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -118,13 +117,9 @@ items: fullName: OpenTK.Mathematics.Vector2i.X type: Field source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: X - path: opentk/src/OpenTK.Mathematics/Vector/Vector2i.cs - startLine: 31 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2i.cs + startLine: 30 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -147,13 +142,9 @@ items: fullName: OpenTK.Mathematics.Vector2i.Y type: Field source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Y - path: opentk/src/OpenTK.Mathematics/Vector/Vector2i.cs - startLine: 36 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2i.cs + startLine: 35 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -176,13 +167,9 @@ items: fullName: OpenTK.Mathematics.Vector2i.Vector2i(int) type: Constructor source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Mathematics/Vector/Vector2i.cs - startLine: 42 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2i.cs + startLine: 41 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -211,13 +198,9 @@ items: fullName: OpenTK.Mathematics.Vector2i.Vector2i(int, int) type: Constructor source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Mathematics/Vector/Vector2i.cs - startLine: 53 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2i.cs + startLine: 52 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -249,20 +232,16 @@ items: fullName: OpenTK.Mathematics.Vector2i.this[int] type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: this[] - path: opentk/src/OpenTK.Mathematics/Vector/Vector2i.cs - startLine: 64 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2i.cs + startLine: 63 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at the index of the vector. example: [] syntax: - content: public int this[int index] { get; set; } + content: public int this[int index] { readonly get; set; } parameters: - id: index type: System.Int32 @@ -290,20 +269,16 @@ items: fullName: OpenTK.Mathematics.Vector2i.ManhattanLength type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ManhattanLength - path: opentk/src/OpenTK.Mathematics/Vector/Vector2i.cs - startLine: 101 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2i.cs + startLine: 100 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets the manhattan length of the vector. example: [] syntax: - content: public int ManhattanLength { get; } + content: public readonly int ManhattanLength { get; } parameters: [] return: type: System.Int32 @@ -321,20 +296,16 @@ items: fullName: OpenTK.Mathematics.Vector2i.EuclideanLengthSquared type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: EuclideanLengthSquared - path: opentk/src/OpenTK.Mathematics/Vector/Vector2i.cs - startLine: 106 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2i.cs + startLine: 105 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets the squared euclidean length of the vector. example: [] syntax: - content: public int EuclideanLengthSquared { get; } + content: public readonly int EuclideanLengthSquared { get; } parameters: [] return: type: System.Int32 @@ -352,20 +323,16 @@ items: fullName: OpenTK.Mathematics.Vector2i.EuclideanLength type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: EuclideanLength - path: opentk/src/OpenTK.Mathematics/Vector/Vector2i.cs - startLine: 111 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2i.cs + startLine: 110 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets the euclidean length of the vector. example: [] syntax: - content: public float EuclideanLength { get; } + content: public readonly float EuclideanLength { get; } parameters: [] return: type: System.Single @@ -383,20 +350,16 @@ items: fullName: OpenTK.Mathematics.Vector2i.PerpendicularRight type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: PerpendicularRight - path: opentk/src/OpenTK.Mathematics/Vector/Vector2i.cs - startLine: 116 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2i.cs + startLine: 115 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets the perpendicular vector on the right side of this vector. example: [] syntax: - content: public Vector2i PerpendicularRight { get; } + content: public readonly Vector2i PerpendicularRight { get; } parameters: [] return: type: OpenTK.Mathematics.Vector2i @@ -414,25 +377,48 @@ items: fullName: OpenTK.Mathematics.Vector2i.PerpendicularLeft type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: PerpendicularLeft - path: opentk/src/OpenTK.Mathematics/Vector/Vector2i.cs - startLine: 121 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2i.cs + startLine: 120 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets the perpendicular vector on the left side of this vector. example: [] syntax: - content: public Vector2i PerpendicularLeft { get; } + content: public readonly Vector2i PerpendicularLeft { get; } parameters: [] return: type: OpenTK.Mathematics.Vector2i content.vb: Public ReadOnly Property PerpendicularLeft As Vector2i overload: OpenTK.Mathematics.Vector2i.PerpendicularLeft* +- uid: OpenTK.Mathematics.Vector2i.Abs + commentId: M:OpenTK.Mathematics.Vector2i.Abs + id: Abs + parent: OpenTK.Mathematics.Vector2i + langs: + - csharp + - vb + name: Abs() + nameWithType: Vector2i.Abs() + fullName: OpenTK.Mathematics.Vector2i.Abs() + type: Method + source: + id: Abs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2i.cs + startLine: 126 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: Returns a new vector that is the component-wise absolute value of the vector. + example: [] + syntax: + content: public readonly Vector2i Abs() + return: + type: OpenTK.Mathematics.Vector2i + description: The component-wise absolute value vector. + content.vb: Public Function Abs() As Vector2i + overload: OpenTK.Mathematics.Vector2i.Abs* - uid: OpenTK.Mathematics.Vector2i.UnitX commentId: F:OpenTK.Mathematics.Vector2i.UnitX id: UnitX @@ -445,13 +431,9 @@ items: fullName: OpenTK.Mathematics.Vector2i.UnitX type: Field source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: UnitX - path: opentk/src/OpenTK.Mathematics/Vector/Vector2i.cs - startLine: 126 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2i.cs + startLine: 137 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -474,13 +456,9 @@ items: fullName: OpenTK.Mathematics.Vector2i.UnitY type: Field source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: UnitY - path: opentk/src/OpenTK.Mathematics/Vector/Vector2i.cs - startLine: 131 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2i.cs + startLine: 142 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -503,13 +481,9 @@ items: fullName: OpenTK.Mathematics.Vector2i.Zero type: Field source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Zero - path: opentk/src/OpenTK.Mathematics/Vector/Vector2i.cs - startLine: 136 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2i.cs + startLine: 147 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -532,13 +506,9 @@ items: fullName: OpenTK.Mathematics.Vector2i.One type: Field source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: One - path: opentk/src/OpenTK.Mathematics/Vector/Vector2i.cs - startLine: 141 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2i.cs + startLine: 152 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -561,13 +531,9 @@ items: fullName: OpenTK.Mathematics.Vector2i.SizeInBytes type: Field source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SizeInBytes - path: opentk/src/OpenTK.Mathematics/Vector/Vector2i.cs - startLine: 146 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2i.cs + startLine: 157 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -590,13 +556,9 @@ items: fullName: OpenTK.Mathematics.Vector2i.Add(OpenTK.Mathematics.Vector2i, OpenTK.Mathematics.Vector2i) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Add - path: opentk/src/OpenTK.Mathematics/Vector/Vector2i.cs - startLine: 154 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2i.cs + startLine: 165 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -638,13 +600,9 @@ items: fullName: OpenTK.Mathematics.Vector2i.Add(in OpenTK.Mathematics.Vector2i, in OpenTK.Mathematics.Vector2i, out OpenTK.Mathematics.Vector2i) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Add - path: opentk/src/OpenTK.Mathematics/Vector/Vector2i.cs - startLine: 167 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2i.cs + startLine: 178 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -679,13 +637,9 @@ items: fullName: OpenTK.Mathematics.Vector2i.Subtract(OpenTK.Mathematics.Vector2i, OpenTK.Mathematics.Vector2i) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Subtract - path: opentk/src/OpenTK.Mathematics/Vector/Vector2i.cs - startLine: 179 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2i.cs + startLine: 190 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -727,13 +681,9 @@ items: fullName: OpenTK.Mathematics.Vector2i.Subtract(in OpenTK.Mathematics.Vector2i, in OpenTK.Mathematics.Vector2i, out OpenTK.Mathematics.Vector2i) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Subtract - path: opentk/src/OpenTK.Mathematics/Vector/Vector2i.cs - startLine: 192 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2i.cs + startLine: 203 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -768,13 +718,9 @@ items: fullName: OpenTK.Mathematics.Vector2i.Multiply(OpenTK.Mathematics.Vector2i, int) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Multiply - path: opentk/src/OpenTK.Mathematics/Vector/Vector2i.cs - startLine: 204 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2i.cs + startLine: 215 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -819,13 +765,9 @@ items: fullName: OpenTK.Mathematics.Vector2i.Multiply(in OpenTK.Mathematics.Vector2i, int, out OpenTK.Mathematics.Vector2i) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Multiply - path: opentk/src/OpenTK.Mathematics/Vector/Vector2i.cs - startLine: 217 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2i.cs + startLine: 228 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -860,13 +802,9 @@ items: fullName: OpenTK.Mathematics.Vector2i.Multiply(OpenTK.Mathematics.Vector2i, OpenTK.Mathematics.Vector2i) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Multiply - path: opentk/src/OpenTK.Mathematics/Vector/Vector2i.cs - startLine: 229 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2i.cs + startLine: 240 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -908,13 +846,9 @@ items: fullName: OpenTK.Mathematics.Vector2i.Multiply(in OpenTK.Mathematics.Vector2i, in OpenTK.Mathematics.Vector2i, out OpenTK.Mathematics.Vector2i) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Multiply - path: opentk/src/OpenTK.Mathematics/Vector/Vector2i.cs - startLine: 242 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2i.cs + startLine: 253 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -949,13 +883,9 @@ items: fullName: OpenTK.Mathematics.Vector2i.Divide(OpenTK.Mathematics.Vector2i, int) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Divide - path: opentk/src/OpenTK.Mathematics/Vector/Vector2i.cs - startLine: 254 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2i.cs + startLine: 265 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1000,13 +930,9 @@ items: fullName: OpenTK.Mathematics.Vector2i.Divide(in OpenTK.Mathematics.Vector2i, int, out OpenTK.Mathematics.Vector2i) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Divide - path: opentk/src/OpenTK.Mathematics/Vector/Vector2i.cs - startLine: 267 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2i.cs + startLine: 278 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1041,13 +967,9 @@ items: fullName: OpenTK.Mathematics.Vector2i.Divide(OpenTK.Mathematics.Vector2i, OpenTK.Mathematics.Vector2i) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Divide - path: opentk/src/OpenTK.Mathematics/Vector/Vector2i.cs - startLine: 279 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2i.cs + startLine: 290 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1089,13 +1011,9 @@ items: fullName: OpenTK.Mathematics.Vector2i.Divide(in OpenTK.Mathematics.Vector2i, in OpenTK.Mathematics.Vector2i, out OpenTK.Mathematics.Vector2i) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Divide - path: opentk/src/OpenTK.Mathematics/Vector/Vector2i.cs - startLine: 292 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2i.cs + startLine: 303 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1130,13 +1048,9 @@ items: fullName: OpenTK.Mathematics.Vector2i.ComponentMin(OpenTK.Mathematics.Vector2i, OpenTK.Mathematics.Vector2i) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ComponentMin - path: opentk/src/OpenTK.Mathematics/Vector/Vector2i.cs - startLine: 304 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2i.cs + startLine: 315 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1178,13 +1092,9 @@ items: fullName: OpenTK.Mathematics.Vector2i.ComponentMin(in OpenTK.Mathematics.Vector2i, in OpenTK.Mathematics.Vector2i, out OpenTK.Mathematics.Vector2i) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ComponentMin - path: opentk/src/OpenTK.Mathematics/Vector/Vector2i.cs - startLine: 318 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2i.cs + startLine: 329 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1219,13 +1129,9 @@ items: fullName: OpenTK.Mathematics.Vector2i.ComponentMax(OpenTK.Mathematics.Vector2i, OpenTK.Mathematics.Vector2i) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ComponentMax - path: opentk/src/OpenTK.Mathematics/Vector/Vector2i.cs - startLine: 330 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2i.cs + startLine: 341 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1267,13 +1173,9 @@ items: fullName: OpenTK.Mathematics.Vector2i.ComponentMax(in OpenTK.Mathematics.Vector2i, in OpenTK.Mathematics.Vector2i, out OpenTK.Mathematics.Vector2i) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ComponentMax - path: opentk/src/OpenTK.Mathematics/Vector/Vector2i.cs - startLine: 344 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2i.cs + startLine: 355 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1308,13 +1210,9 @@ items: fullName: OpenTK.Mathematics.Vector2i.Clamp(OpenTK.Mathematics.Vector2i, OpenTK.Mathematics.Vector2i, OpenTK.Mathematics.Vector2i) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Clamp - path: opentk/src/OpenTK.Mathematics/Vector/Vector2i.cs - startLine: 357 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2i.cs + startLine: 368 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1359,13 +1257,9 @@ items: fullName: OpenTK.Mathematics.Vector2i.Clamp(in OpenTK.Mathematics.Vector2i, in OpenTK.Mathematics.Vector2i, in OpenTK.Mathematics.Vector2i, out OpenTK.Mathematics.Vector2i) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Clamp - path: opentk/src/OpenTK.Mathematics/Vector/Vector2i.cs - startLine: 372 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2i.cs + startLine: 383 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1391,6 +1285,71 @@ items: nameWithType.vb: Vector2i.Clamp(Vector2i, Vector2i, Vector2i, Vector2i) fullName.vb: OpenTK.Mathematics.Vector2i.Clamp(OpenTK.Mathematics.Vector2i, OpenTK.Mathematics.Vector2i, OpenTK.Mathematics.Vector2i, OpenTK.Mathematics.Vector2i) name.vb: Clamp(Vector2i, Vector2i, Vector2i, Vector2i) +- uid: OpenTK.Mathematics.Vector2i.Abs(OpenTK.Mathematics.Vector2i) + commentId: M:OpenTK.Mathematics.Vector2i.Abs(OpenTK.Mathematics.Vector2i) + id: Abs(OpenTK.Mathematics.Vector2i) + parent: OpenTK.Mathematics.Vector2i + langs: + - csharp + - vb + name: Abs(Vector2i) + nameWithType: Vector2i.Abs(Vector2i) + fullName: OpenTK.Mathematics.Vector2i.Abs(OpenTK.Mathematics.Vector2i) + type: Method + source: + id: Abs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2i.cs + startLine: 394 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: Take the component-wise absolute value of a vector. + example: [] + syntax: + content: public static Vector2i Abs(Vector2i vec) + parameters: + - id: vec + type: OpenTK.Mathematics.Vector2i + description: The vector to apply component-wise absolute value to. + return: + type: OpenTK.Mathematics.Vector2i + description: The component-wise absolute value vector. + content.vb: Public Shared Function Abs(vec As Vector2i) As Vector2i + overload: OpenTK.Mathematics.Vector2i.Abs* +- uid: OpenTK.Mathematics.Vector2i.Abs(OpenTK.Mathematics.Vector2i@,OpenTK.Mathematics.Vector2i@) + commentId: M:OpenTK.Mathematics.Vector2i.Abs(OpenTK.Mathematics.Vector2i@,OpenTK.Mathematics.Vector2i@) + id: Abs(OpenTK.Mathematics.Vector2i@,OpenTK.Mathematics.Vector2i@) + parent: OpenTK.Mathematics.Vector2i + langs: + - csharp + - vb + name: Abs(in Vector2i, out Vector2i) + nameWithType: Vector2i.Abs(in Vector2i, out Vector2i) + fullName: OpenTK.Mathematics.Vector2i.Abs(in OpenTK.Mathematics.Vector2i, out OpenTK.Mathematics.Vector2i) + type: Method + source: + id: Abs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2i.cs + startLine: 406 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: Take the component-wise absolute value of a vector. + example: [] + syntax: + content: public static void Abs(in Vector2i vec, out Vector2i result) + parameters: + - id: vec + type: OpenTK.Mathematics.Vector2i + description: The vector to apply component-wise absolute value to. + - id: result + type: OpenTK.Mathematics.Vector2i + description: The component-wise absolute value vector. + content.vb: Public Shared Sub Abs(vec As Vector2i, result As Vector2i) + overload: OpenTK.Mathematics.Vector2i.Abs* + nameWithType.vb: Vector2i.Abs(Vector2i, Vector2i) + fullName.vb: OpenTK.Mathematics.Vector2i.Abs(OpenTK.Mathematics.Vector2i, OpenTK.Mathematics.Vector2i) + name.vb: Abs(Vector2i, Vector2i) - uid: OpenTK.Mathematics.Vector2i.Yx commentId: P:OpenTK.Mathematics.Vector2i.Yx id: Yx @@ -1403,20 +1362,16 @@ items: fullName: OpenTK.Mathematics.Vector2i.Yx type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Yx - path: opentk/src/OpenTK.Mathematics/Vector/Vector2i.cs - startLine: 381 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2i.cs + startLine: 415 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets a with the Y and X components of this instance. example: [] syntax: - content: public Vector2i Yx { get; set; } + content: public Vector2i Yx { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector2i @@ -1434,20 +1389,16 @@ items: fullName: OpenTK.Mathematics.Vector2i.ToVector2() type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToVector2 - path: opentk/src/OpenTK.Mathematics/Vector/Vector2i.cs - startLine: 396 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2i.cs + startLine: 430 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets a object with the same component values as the instance. example: [] syntax: - content: public Vector2 ToVector2() + content: public readonly Vector2 ToVector2() return: type: OpenTK.Mathematics.Vector2 description: The resulting instance. @@ -1465,13 +1416,9 @@ items: fullName: OpenTK.Mathematics.Vector2i.ToVector2(in OpenTK.Mathematics.Vector2i, out OpenTK.Mathematics.Vector2) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToVector2 - path: opentk/src/OpenTK.Mathematics/Vector/Vector2i.cs - startLine: 406 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2i.cs + startLine: 440 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1503,13 +1450,9 @@ items: fullName: OpenTK.Mathematics.Vector2i.operator +(OpenTK.Mathematics.Vector2i, OpenTK.Mathematics.Vector2i) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Addition - path: opentk/src/OpenTK.Mathematics/Vector/Vector2i.cs - startLine: 418 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2i.cs + startLine: 452 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1554,13 +1497,9 @@ items: fullName: OpenTK.Mathematics.Vector2i.operator -(OpenTK.Mathematics.Vector2i, OpenTK.Mathematics.Vector2i) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Subtraction - path: opentk/src/OpenTK.Mathematics/Vector/Vector2i.cs - startLine: 432 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2i.cs + startLine: 466 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1605,13 +1544,9 @@ items: fullName: OpenTK.Mathematics.Vector2i.operator -(OpenTK.Mathematics.Vector2i) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_UnaryNegation - path: opentk/src/OpenTK.Mathematics/Vector/Vector2i.cs - startLine: 445 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2i.cs + startLine: 479 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1653,13 +1588,9 @@ items: fullName: OpenTK.Mathematics.Vector2i.operator *(OpenTK.Mathematics.Vector2i, int) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Multiply - path: opentk/src/OpenTK.Mathematics/Vector/Vector2i.cs - startLine: 459 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2i.cs + startLine: 493 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1704,13 +1635,9 @@ items: fullName: OpenTK.Mathematics.Vector2i.operator *(int, OpenTK.Mathematics.Vector2i) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Multiply - path: opentk/src/OpenTK.Mathematics/Vector/Vector2i.cs - startLine: 473 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2i.cs + startLine: 507 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1755,13 +1682,9 @@ items: fullName: OpenTK.Mathematics.Vector2i.operator *(OpenTK.Mathematics.Vector2i, OpenTK.Mathematics.Vector2i) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Multiply - path: opentk/src/OpenTK.Mathematics/Vector/Vector2i.cs - startLine: 487 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2i.cs + startLine: 521 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1806,13 +1729,9 @@ items: fullName: OpenTK.Mathematics.Vector2i.operator /(OpenTK.Mathematics.Vector2i, int) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Division - path: opentk/src/OpenTK.Mathematics/Vector/Vector2i.cs - startLine: 501 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2i.cs + startLine: 535 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1857,13 +1776,9 @@ items: fullName: OpenTK.Mathematics.Vector2i.operator /(OpenTK.Mathematics.Vector2i, OpenTK.Mathematics.Vector2i) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Division - path: opentk/src/OpenTK.Mathematics/Vector/Vector2i.cs - startLine: 515 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2i.cs + startLine: 549 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1908,13 +1823,9 @@ items: fullName: OpenTK.Mathematics.Vector2i.operator ==(OpenTK.Mathematics.Vector2i, OpenTK.Mathematics.Vector2i) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Equality - path: opentk/src/OpenTK.Mathematics/Vector/Vector2i.cs - startLine: 529 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2i.cs + startLine: 563 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1949,13 +1860,9 @@ items: fullName: OpenTK.Mathematics.Vector2i.operator !=(OpenTK.Mathematics.Vector2i, OpenTK.Mathematics.Vector2i) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Inequality - path: opentk/src/OpenTK.Mathematics/Vector/Vector2i.cs - startLine: 540 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2i.cs + startLine: 574 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1990,13 +1897,9 @@ items: fullName: OpenTK.Mathematics.Vector2i.implicit operator OpenTK.Mathematics.Vector2(OpenTK.Mathematics.Vector2i) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Implicit - path: opentk/src/OpenTK.Mathematics/Vector/Vector2i.cs - startLine: 550 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2i.cs + startLine: 584 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2038,13 +1941,9 @@ items: fullName: OpenTK.Mathematics.Vector2i.implicit operator OpenTK.Mathematics.Vector2d(OpenTK.Mathematics.Vector2i) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Implicit - path: opentk/src/OpenTK.Mathematics/Vector/Vector2i.cs - startLine: 561 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2i.cs + startLine: 595 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2086,13 +1985,9 @@ items: fullName: OpenTK.Mathematics.Vector2i.explicit operator OpenTK.Mathematics.Vector2h(OpenTK.Mathematics.Vector2i) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Explicit - path: opentk/src/OpenTK.Mathematics/Vector/Vector2i.cs - startLine: 572 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2i.cs + startLine: 606 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2134,13 +2029,9 @@ items: fullName: OpenTK.Mathematics.Vector2i.implicit operator OpenTK.Mathematics.Vector2i((int X, int Y)) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Implicit - path: opentk/src/OpenTK.Mathematics/Vector/Vector2i.cs - startLine: 584 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2i.cs + startLine: 618 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2185,13 +2076,9 @@ items: fullName: OpenTK.Mathematics.Vector2i.explicit operator System.Drawing.Point(OpenTK.Mathematics.Vector2i) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Explicit - path: opentk/src/OpenTK.Mathematics/Vector/Vector2i.cs - startLine: 595 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2i.cs + startLine: 629 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2233,13 +2120,9 @@ items: fullName: OpenTK.Mathematics.Vector2i.explicit operator System.Drawing.Size(OpenTK.Mathematics.Vector2i) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Explicit - path: opentk/src/OpenTK.Mathematics/Vector/Vector2i.cs - startLine: 606 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2i.cs + startLine: 640 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2281,13 +2164,9 @@ items: fullName: OpenTK.Mathematics.Vector2i.ToString() type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Mathematics/Vector/Vector2i.cs - startLine: 613 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2i.cs + startLine: 647 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2313,13 +2192,9 @@ items: fullName: OpenTK.Mathematics.Vector2i.ToString(string) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Mathematics/Vector/Vector2i.cs - startLine: 619 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2i.cs + startLine: 653 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2356,13 +2231,9 @@ items: fullName: OpenTK.Mathematics.Vector2i.ToString(System.IFormatProvider) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Mathematics/Vector/Vector2i.cs - startLine: 625 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2i.cs + startLine: 659 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2396,20 +2267,16 @@ items: fullName: OpenTK.Mathematics.Vector2i.ToString(string, System.IFormatProvider) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Mathematics/Vector/Vector2i.cs - startLine: 631 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2i.cs + startLine: 665 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Formats the value of the current instance using the specified format. example: [] syntax: - content: public string ToString(string format, IFormatProvider formatProvider) + content: public readonly string ToString(string format, IFormatProvider formatProvider) parameters: - id: format type: System.String @@ -2449,13 +2316,9 @@ items: fullName: OpenTK.Mathematics.Vector2i.Equals(object) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Equals - path: opentk/src/OpenTK.Mathematics/Vector/Vector2i.cs - startLine: 641 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2i.cs + startLine: 675 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2488,20 +2351,16 @@ items: fullName: OpenTK.Mathematics.Vector2i.Equals(OpenTK.Mathematics.Vector2i) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Equals - path: opentk/src/OpenTK.Mathematics/Vector/Vector2i.cs - startLine: 647 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2i.cs + startLine: 681 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Indicates whether the current object is equal to another object of the same type. example: [] syntax: - content: public bool Equals(Vector2i other) + content: public readonly bool Equals(Vector2i other) parameters: - id: other type: OpenTK.Mathematics.Vector2i @@ -2525,20 +2384,16 @@ items: fullName: OpenTK.Mathematics.Vector2i.GetHashCode() type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetHashCode - path: opentk/src/OpenTK.Mathematics/Vector/Vector2i.cs - startLine: 654 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2i.cs + startLine: 688 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Returns the hash code for this instance. example: [] syntax: - content: public override int GetHashCode() + content: public override readonly int GetHashCode() return: type: System.Int32 description: A 32-bit signed integer that is the hash code for this instance. @@ -2557,13 +2412,9 @@ items: fullName: OpenTK.Mathematics.Vector2i.Deconstruct(out int, out int) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector2i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Deconstruct - path: opentk/src/OpenTK.Mathematics/Vector/Vector2i.cs - startLine: 664 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector2i.cs + startLine: 698 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2573,7 +2424,7 @@ items: content: >- [Pure] - public void Deconstruct(out int x, out int y) + public readonly void Deconstruct(out int x, out int y) parameters: - id: x type: System.Int32 @@ -2901,6 +2752,12 @@ references: name: PerpendicularLeft nameWithType: Vector2i.PerpendicularLeft fullName: OpenTK.Mathematics.Vector2i.PerpendicularLeft +- uid: OpenTK.Mathematics.Vector2i.Abs* + commentId: Overload:OpenTK.Mathematics.Vector2i.Abs + href: OpenTK.Mathematics.Vector2i.html#OpenTK_Mathematics_Vector2i_Abs + name: Abs + nameWithType: Vector2i.Abs + fullName: OpenTK.Mathematics.Vector2i.Abs - uid: OpenTK.Mathematics.Vector2i.Add* commentId: Overload:OpenTK.Mathematics.Vector2i.Add href: OpenTK.Mathematics.Vector2i.html#OpenTK_Mathematics_Vector2i_Add_OpenTK_Mathematics_Vector2i_OpenTK_Mathematics_Vector2i_ diff --git a/api/OpenTK.Mathematics.Vector3.yml b/api/OpenTK.Mathematics.Vector3.yml index 8a6e7942..d29fe8b8 100644 --- a/api/OpenTK.Mathematics.Vector3.yml +++ b/api/OpenTK.Mathematics.Vector3.yml @@ -8,6 +8,9 @@ items: - OpenTK.Mathematics.Vector3.#ctor(OpenTK.Mathematics.Vector2,System.Single) - OpenTK.Mathematics.Vector3.#ctor(System.Single) - OpenTK.Mathematics.Vector3.#ctor(System.Single,System.Single,System.Single) + - OpenTK.Mathematics.Vector3.Abs + - OpenTK.Mathematics.Vector3.Abs(OpenTK.Mathematics.Vector3) + - OpenTK.Mathematics.Vector3.Abs(OpenTK.Mathematics.Vector3@,OpenTK.Mathematics.Vector3@) - OpenTK.Mathematics.Vector3.Add(OpenTK.Mathematics.Vector3,OpenTK.Mathematics.Vector3) - OpenTK.Mathematics.Vector3.Add(OpenTK.Mathematics.Vector3@,OpenTK.Mathematics.Vector3@,OpenTK.Mathematics.Vector3@) - OpenTK.Mathematics.Vector3.BaryCentric(OpenTK.Mathematics.Vector3,OpenTK.Mathematics.Vector3,OpenTK.Mathematics.Vector3,System.Single,System.Single) @@ -33,6 +36,8 @@ items: - OpenTK.Mathematics.Vector3.Divide(OpenTK.Mathematics.Vector3@,System.Single,OpenTK.Mathematics.Vector3@) - OpenTK.Mathematics.Vector3.Dot(OpenTK.Mathematics.Vector3,OpenTK.Mathematics.Vector3) - OpenTK.Mathematics.Vector3.Dot(OpenTK.Mathematics.Vector3@,OpenTK.Mathematics.Vector3@,System.Single@) + - OpenTK.Mathematics.Vector3.Elerp(OpenTK.Mathematics.Vector3,OpenTK.Mathematics.Vector3,System.Single) + - OpenTK.Mathematics.Vector3.Elerp(OpenTK.Mathematics.Vector3@,OpenTK.Mathematics.Vector3@,System.Single,OpenTK.Mathematics.Vector3@) - OpenTK.Mathematics.Vector3.Equals(OpenTK.Mathematics.Vector3) - OpenTK.Mathematics.Vector3.Equals(System.Object) - OpenTK.Mathematics.Vector3.GetHashCode @@ -63,7 +68,10 @@ items: - OpenTK.Mathematics.Vector3.One - OpenTK.Mathematics.Vector3.PositiveInfinity - OpenTK.Mathematics.Vector3.Project(OpenTK.Mathematics.Vector3,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,OpenTK.Mathematics.Matrix4) + - OpenTK.Mathematics.Vector3.ReciprocalLengthFast - OpenTK.Mathematics.Vector3.SizeInBytes + - OpenTK.Mathematics.Vector3.Slerp(OpenTK.Mathematics.Vector3,OpenTK.Mathematics.Vector3,System.Single) + - OpenTK.Mathematics.Vector3.Slerp(OpenTK.Mathematics.Vector3@,OpenTK.Mathematics.Vector3@,System.Single,OpenTK.Mathematics.Vector3@) - OpenTK.Mathematics.Vector3.Subtract(OpenTK.Mathematics.Vector3,OpenTK.Mathematics.Vector3) - OpenTK.Mathematics.Vector3.Subtract(OpenTK.Mathematics.Vector3@,OpenTK.Mathematics.Vector3@,OpenTK.Mathematics.Vector3@) - OpenTK.Mathematics.Vector3.ToString @@ -130,13 +138,9 @@ items: fullName: OpenTK.Mathematics.Vector3 type: Struct source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Vector3 - path: opentk/src/OpenTK.Mathematics/Vector/Vector3.cs - startLine: 37 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3.cs + startLine: 36 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -175,13 +179,9 @@ items: fullName: OpenTK.Mathematics.Vector3.X type: Field source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: X - path: opentk/src/OpenTK.Mathematics/Vector/Vector3.cs - startLine: 44 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3.cs + startLine: 43 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -204,13 +204,9 @@ items: fullName: OpenTK.Mathematics.Vector3.Y type: Field source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Y - path: opentk/src/OpenTK.Mathematics/Vector/Vector3.cs - startLine: 49 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3.cs + startLine: 48 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -233,13 +229,9 @@ items: fullName: OpenTK.Mathematics.Vector3.Z type: Field source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Z - path: opentk/src/OpenTK.Mathematics/Vector/Vector3.cs - startLine: 54 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3.cs + startLine: 53 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -262,13 +254,9 @@ items: fullName: OpenTK.Mathematics.Vector3.Vector3(float) type: Constructor source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Mathematics/Vector/Vector3.cs - startLine: 60 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3.cs + startLine: 59 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -297,13 +285,9 @@ items: fullName: OpenTK.Mathematics.Vector3.Vector3(float, float, float) type: Constructor source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Mathematics/Vector/Vector3.cs - startLine: 73 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3.cs + startLine: 72 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -338,13 +322,9 @@ items: fullName: OpenTK.Mathematics.Vector3.Vector3(OpenTK.Mathematics.Vector2, float) type: Constructor source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Mathematics/Vector/Vector3.cs - startLine: 85 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3.cs + startLine: 84 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -376,20 +356,16 @@ items: fullName: OpenTK.Mathematics.Vector3.this[int] type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: this[] - path: opentk/src/OpenTK.Mathematics/Vector/Vector3.cs - startLine: 97 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3.cs + startLine: 96 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at the index of the Vector. example: [] syntax: - content: public float this[int index] { get; set; } + content: public float this[int index] { readonly get; set; } parameters: - id: index type: System.Int32 @@ -417,20 +393,16 @@ items: fullName: OpenTK.Mathematics.Vector3.Length type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Length - path: opentk/src/OpenTK.Mathematics/Vector/Vector3.cs - startLine: 145 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3.cs + startLine: 144 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets the length (magnitude) of the vector. example: [] syntax: - content: public float Length { get; } + content: public readonly float Length { get; } parameters: [] return: type: System.Single @@ -439,6 +411,33 @@ items: seealso: - linkId: OpenTK.Mathematics.Vector3.LengthSquared commentId: P:OpenTK.Mathematics.Vector3.LengthSquared +- uid: OpenTK.Mathematics.Vector3.ReciprocalLengthFast + commentId: P:OpenTK.Mathematics.Vector3.ReciprocalLengthFast + id: ReciprocalLengthFast + parent: OpenTK.Mathematics.Vector3 + langs: + - csharp + - vb + name: ReciprocalLengthFast + nameWithType: Vector3.ReciprocalLengthFast + fullName: OpenTK.Mathematics.Vector3.ReciprocalLengthFast + type: Property + source: + id: ReciprocalLengthFast + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3.cs + startLine: 149 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: Gets an approximation of 1 over the length (magnitude) of the vector. + example: [] + syntax: + content: public readonly float ReciprocalLengthFast { get; } + parameters: [] + return: + type: System.Single + content.vb: Public ReadOnly Property ReciprocalLengthFast As Single + overload: OpenTK.Mathematics.Vector3.ReciprocalLengthFast* - uid: OpenTK.Mathematics.Vector3.LengthFast commentId: P:OpenTK.Mathematics.Vector3.LengthFast id: LengthFast @@ -451,24 +450,17 @@ items: fullName: OpenTK.Mathematics.Vector3.LengthFast type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: LengthFast - path: opentk/src/OpenTK.Mathematics/Vector/Vector3.cs - startLine: 156 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3.cs + startLine: 159 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets an approximation of the vector length (magnitude). - remarks: >- - This property uses an approximation of the square root function to calculate vector magnitude, with - - an upper error bound of 0.001. + remarks: This property uses an approximation of the square root function to calculate vector magnitude. example: [] syntax: - content: public float LengthFast { get; } + content: public readonly float LengthFast { get; } parameters: [] return: type: System.Single @@ -489,13 +481,9 @@ items: fullName: OpenTK.Mathematics.Vector3.LengthSquared type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: LengthSquared - path: opentk/src/OpenTK.Mathematics/Vector/Vector3.cs - startLine: 167 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3.cs + startLine: 170 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -506,7 +494,7 @@ items: for comparisons. example: [] syntax: - content: public float LengthSquared { get; } + content: public readonly float LengthSquared { get; } parameters: [] return: type: System.Single @@ -527,20 +515,16 @@ items: fullName: OpenTK.Mathematics.Vector3.Normalized() type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Normalized - path: opentk/src/OpenTK.Mathematics/Vector/Vector3.cs - startLine: 173 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3.cs + startLine: 176 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Returns a copy of the Vector3 scaled to unit length. example: [] syntax: - content: public Vector3 Normalized() + content: public readonly Vector3 Normalized() return: type: OpenTK.Mathematics.Vector3 description: The normalized copy. @@ -558,13 +542,9 @@ items: fullName: OpenTK.Mathematics.Vector3.Normalize() type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Normalize - path: opentk/src/OpenTK.Mathematics/Vector/Vector3.cs - startLine: 183 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3.cs + startLine: 186 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -586,13 +566,9 @@ items: fullName: OpenTK.Mathematics.Vector3.NormalizeFast() type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: NormalizeFast - path: opentk/src/OpenTK.Mathematics/Vector/Vector3.cs - startLine: 194 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3.cs + startLine: 197 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -602,6 +578,33 @@ items: content: public void NormalizeFast() content.vb: Public Sub NormalizeFast() overload: OpenTK.Mathematics.Vector3.NormalizeFast* +- uid: OpenTK.Mathematics.Vector3.Abs + commentId: M:OpenTK.Mathematics.Vector3.Abs + id: Abs + parent: OpenTK.Mathematics.Vector3 + langs: + - csharp + - vb + name: Abs() + nameWithType: Vector3.Abs() + fullName: OpenTK.Mathematics.Vector3.Abs() + type: Method + source: + id: Abs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3.cs + startLine: 209 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: Returns a new vector that is the component-wise absolute value of the vector. + example: [] + syntax: + content: public readonly Vector3 Abs() + return: + type: OpenTK.Mathematics.Vector3 + description: The component-wise absolute value vector. + content.vb: Public Function Abs() As Vector3 + overload: OpenTK.Mathematics.Vector3.Abs* - uid: OpenTK.Mathematics.Vector3.UnitX commentId: F:OpenTK.Mathematics.Vector3.UnitX id: UnitX @@ -614,13 +617,9 @@ items: fullName: OpenTK.Mathematics.Vector3.UnitX type: Field source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: UnitX - path: opentk/src/OpenTK.Mathematics/Vector/Vector3.cs - startLine: 205 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3.cs + startLine: 221 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -643,13 +642,9 @@ items: fullName: OpenTK.Mathematics.Vector3.UnitY type: Field source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: UnitY - path: opentk/src/OpenTK.Mathematics/Vector/Vector3.cs - startLine: 210 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3.cs + startLine: 226 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -672,13 +667,9 @@ items: fullName: OpenTK.Mathematics.Vector3.UnitZ type: Field source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: UnitZ - path: opentk/src/OpenTK.Mathematics/Vector/Vector3.cs - startLine: 215 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3.cs + startLine: 231 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -701,13 +692,9 @@ items: fullName: OpenTK.Mathematics.Vector3.Zero type: Field source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Zero - path: opentk/src/OpenTK.Mathematics/Vector/Vector3.cs - startLine: 220 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3.cs + startLine: 236 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -730,13 +717,9 @@ items: fullName: OpenTK.Mathematics.Vector3.One type: Field source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: One - path: opentk/src/OpenTK.Mathematics/Vector/Vector3.cs - startLine: 225 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3.cs + startLine: 241 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -759,13 +742,9 @@ items: fullName: OpenTK.Mathematics.Vector3.PositiveInfinity type: Field source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: PositiveInfinity - path: opentk/src/OpenTK.Mathematics/Vector/Vector3.cs - startLine: 230 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3.cs + startLine: 246 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -788,13 +767,9 @@ items: fullName: OpenTK.Mathematics.Vector3.NegativeInfinity type: Field source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: NegativeInfinity - path: opentk/src/OpenTK.Mathematics/Vector/Vector3.cs - startLine: 235 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3.cs + startLine: 251 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -817,13 +792,9 @@ items: fullName: OpenTK.Mathematics.Vector3.SizeInBytes type: Field source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SizeInBytes - path: opentk/src/OpenTK.Mathematics/Vector/Vector3.cs - startLine: 240 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3.cs + startLine: 256 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -846,13 +817,9 @@ items: fullName: OpenTK.Mathematics.Vector3.Add(OpenTK.Mathematics.Vector3, OpenTK.Mathematics.Vector3) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Add - path: opentk/src/OpenTK.Mathematics/Vector/Vector3.cs - startLine: 248 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3.cs + startLine: 264 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -894,13 +861,9 @@ items: fullName: OpenTK.Mathematics.Vector3.Add(in OpenTK.Mathematics.Vector3, in OpenTK.Mathematics.Vector3, out OpenTK.Mathematics.Vector3) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Add - path: opentk/src/OpenTK.Mathematics/Vector/Vector3.cs - startLine: 261 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3.cs + startLine: 277 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -935,13 +898,9 @@ items: fullName: OpenTK.Mathematics.Vector3.Subtract(OpenTK.Mathematics.Vector3, OpenTK.Mathematics.Vector3) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Subtract - path: opentk/src/OpenTK.Mathematics/Vector/Vector3.cs - startLine: 274 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3.cs + startLine: 290 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -983,13 +942,9 @@ items: fullName: OpenTK.Mathematics.Vector3.Subtract(in OpenTK.Mathematics.Vector3, in OpenTK.Mathematics.Vector3, out OpenTK.Mathematics.Vector3) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Subtract - path: opentk/src/OpenTK.Mathematics/Vector/Vector3.cs - startLine: 287 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3.cs + startLine: 303 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1024,13 +979,9 @@ items: fullName: OpenTK.Mathematics.Vector3.Multiply(OpenTK.Mathematics.Vector3, float) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Multiply - path: opentk/src/OpenTK.Mathematics/Vector/Vector3.cs - startLine: 300 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3.cs + startLine: 316 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1075,13 +1026,9 @@ items: fullName: OpenTK.Mathematics.Vector3.Multiply(in OpenTK.Mathematics.Vector3, float, out OpenTK.Mathematics.Vector3) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Multiply - path: opentk/src/OpenTK.Mathematics/Vector/Vector3.cs - startLine: 313 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3.cs + startLine: 329 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1116,13 +1063,9 @@ items: fullName: OpenTK.Mathematics.Vector3.Multiply(OpenTK.Mathematics.Vector3, OpenTK.Mathematics.Vector3) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Multiply - path: opentk/src/OpenTK.Mathematics/Vector/Vector3.cs - startLine: 326 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3.cs + startLine: 342 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1164,13 +1107,9 @@ items: fullName: OpenTK.Mathematics.Vector3.Multiply(in OpenTK.Mathematics.Vector3, in OpenTK.Mathematics.Vector3, out OpenTK.Mathematics.Vector3) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Multiply - path: opentk/src/OpenTK.Mathematics/Vector/Vector3.cs - startLine: 339 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3.cs + startLine: 355 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1205,13 +1144,9 @@ items: fullName: OpenTK.Mathematics.Vector3.Divide(OpenTK.Mathematics.Vector3, float) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Divide - path: opentk/src/OpenTK.Mathematics/Vector/Vector3.cs - startLine: 352 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3.cs + startLine: 368 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1256,13 +1191,9 @@ items: fullName: OpenTK.Mathematics.Vector3.Divide(in OpenTK.Mathematics.Vector3, float, out OpenTK.Mathematics.Vector3) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Divide - path: opentk/src/OpenTK.Mathematics/Vector/Vector3.cs - startLine: 365 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3.cs + startLine: 381 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1297,13 +1228,9 @@ items: fullName: OpenTK.Mathematics.Vector3.Divide(OpenTK.Mathematics.Vector3, OpenTK.Mathematics.Vector3) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Divide - path: opentk/src/OpenTK.Mathematics/Vector/Vector3.cs - startLine: 378 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3.cs + startLine: 394 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1345,13 +1272,9 @@ items: fullName: OpenTK.Mathematics.Vector3.Divide(in OpenTK.Mathematics.Vector3, in OpenTK.Mathematics.Vector3, out OpenTK.Mathematics.Vector3) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Divide - path: opentk/src/OpenTK.Mathematics/Vector/Vector3.cs - startLine: 391 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3.cs + startLine: 407 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1386,13 +1309,9 @@ items: fullName: OpenTK.Mathematics.Vector3.ComponentMin(OpenTK.Mathematics.Vector3, OpenTK.Mathematics.Vector3) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ComponentMin - path: opentk/src/OpenTK.Mathematics/Vector/Vector3.cs - startLine: 404 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3.cs + startLine: 420 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1434,13 +1353,9 @@ items: fullName: OpenTK.Mathematics.Vector3.ComponentMin(in OpenTK.Mathematics.Vector3, in OpenTK.Mathematics.Vector3, out OpenTK.Mathematics.Vector3) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ComponentMin - path: opentk/src/OpenTK.Mathematics/Vector/Vector3.cs - startLine: 419 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3.cs + startLine: 435 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1475,13 +1390,9 @@ items: fullName: OpenTK.Mathematics.Vector3.ComponentMax(OpenTK.Mathematics.Vector3, OpenTK.Mathematics.Vector3) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ComponentMax - path: opentk/src/OpenTK.Mathematics/Vector/Vector3.cs - startLine: 432 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3.cs + startLine: 448 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1523,13 +1434,9 @@ items: fullName: OpenTK.Mathematics.Vector3.ComponentMax(in OpenTK.Mathematics.Vector3, in OpenTK.Mathematics.Vector3, out OpenTK.Mathematics.Vector3) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ComponentMax - path: opentk/src/OpenTK.Mathematics/Vector/Vector3.cs - startLine: 447 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3.cs + startLine: 463 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1564,13 +1471,9 @@ items: fullName: OpenTK.Mathematics.Vector3.MagnitudeMin(OpenTK.Mathematics.Vector3, OpenTK.Mathematics.Vector3) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MagnitudeMin - path: opentk/src/OpenTK.Mathematics/Vector/Vector3.cs - startLine: 461 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3.cs + startLine: 477 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1615,13 +1518,9 @@ items: fullName: OpenTK.Mathematics.Vector3.MagnitudeMin(in OpenTK.Mathematics.Vector3, in OpenTK.Mathematics.Vector3, out OpenTK.Mathematics.Vector3) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MagnitudeMin - path: opentk/src/OpenTK.Mathematics/Vector/Vector3.cs - startLine: 474 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3.cs + startLine: 490 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1659,13 +1558,9 @@ items: fullName: OpenTK.Mathematics.Vector3.MagnitudeMax(OpenTK.Mathematics.Vector3, OpenTK.Mathematics.Vector3) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MagnitudeMax - path: opentk/src/OpenTK.Mathematics/Vector/Vector3.cs - startLine: 486 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3.cs + startLine: 502 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1710,13 +1605,9 @@ items: fullName: OpenTK.Mathematics.Vector3.MagnitudeMax(in OpenTK.Mathematics.Vector3, in OpenTK.Mathematics.Vector3, out OpenTK.Mathematics.Vector3) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MagnitudeMax - path: opentk/src/OpenTK.Mathematics/Vector/Vector3.cs - startLine: 499 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3.cs + startLine: 515 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1754,13 +1645,9 @@ items: fullName: OpenTK.Mathematics.Vector3.Clamp(OpenTK.Mathematics.Vector3, OpenTK.Mathematics.Vector3, OpenTK.Mathematics.Vector3) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Clamp - path: opentk/src/OpenTK.Mathematics/Vector/Vector3.cs - startLine: 511 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3.cs + startLine: 527 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1805,13 +1692,9 @@ items: fullName: OpenTK.Mathematics.Vector3.Clamp(in OpenTK.Mathematics.Vector3, in OpenTK.Mathematics.Vector3, in OpenTK.Mathematics.Vector3, out OpenTK.Mathematics.Vector3) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Clamp - path: opentk/src/OpenTK.Mathematics/Vector/Vector3.cs - startLine: 527 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3.cs + startLine: 543 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1837,6 +1720,71 @@ items: nameWithType.vb: Vector3.Clamp(Vector3, Vector3, Vector3, Vector3) fullName.vb: OpenTK.Mathematics.Vector3.Clamp(OpenTK.Mathematics.Vector3, OpenTK.Mathematics.Vector3, OpenTK.Mathematics.Vector3, OpenTK.Mathematics.Vector3) name.vb: Clamp(Vector3, Vector3, Vector3, Vector3) +- uid: OpenTK.Mathematics.Vector3.Abs(OpenTK.Mathematics.Vector3) + commentId: M:OpenTK.Mathematics.Vector3.Abs(OpenTK.Mathematics.Vector3) + id: Abs(OpenTK.Mathematics.Vector3) + parent: OpenTK.Mathematics.Vector3 + langs: + - csharp + - vb + name: Abs(Vector3) + nameWithType: Vector3.Abs(Vector3) + fullName: OpenTK.Mathematics.Vector3.Abs(OpenTK.Mathematics.Vector3) + type: Method + source: + id: Abs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3.cs + startLine: 555 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: Take the component-wise absolute value of a vector. + example: [] + syntax: + content: public static Vector3 Abs(Vector3 vec) + parameters: + - id: vec + type: OpenTK.Mathematics.Vector3 + description: The vector to apply component-wise absolute value to. + return: + type: OpenTK.Mathematics.Vector3 + description: The component-wise absolute value vector. + content.vb: Public Shared Function Abs(vec As Vector3) As Vector3 + overload: OpenTK.Mathematics.Vector3.Abs* +- uid: OpenTK.Mathematics.Vector3.Abs(OpenTK.Mathematics.Vector3@,OpenTK.Mathematics.Vector3@) + commentId: M:OpenTK.Mathematics.Vector3.Abs(OpenTK.Mathematics.Vector3@,OpenTK.Mathematics.Vector3@) + id: Abs(OpenTK.Mathematics.Vector3@,OpenTK.Mathematics.Vector3@) + parent: OpenTK.Mathematics.Vector3 + langs: + - csharp + - vb + name: Abs(in Vector3, out Vector3) + nameWithType: Vector3.Abs(in Vector3, out Vector3) + fullName: OpenTK.Mathematics.Vector3.Abs(in OpenTK.Mathematics.Vector3, out OpenTK.Mathematics.Vector3) + type: Method + source: + id: Abs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3.cs + startLine: 568 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: Take the component-wise absolute value of a vector. + example: [] + syntax: + content: public static void Abs(in Vector3 vec, out Vector3 result) + parameters: + - id: vec + type: OpenTK.Mathematics.Vector3 + description: The vector to apply component-wise absolute value to. + - id: result + type: OpenTK.Mathematics.Vector3 + description: The component-wise absolute value vector. + content.vb: Public Shared Sub Abs(vec As Vector3, result As Vector3) + overload: OpenTK.Mathematics.Vector3.Abs* + nameWithType.vb: Vector3.Abs(Vector3, Vector3) + fullName.vb: OpenTK.Mathematics.Vector3.Abs(OpenTK.Mathematics.Vector3, OpenTK.Mathematics.Vector3) + name.vb: Abs(Vector3, Vector3) - uid: OpenTK.Mathematics.Vector3.Distance(OpenTK.Mathematics.Vector3,OpenTK.Mathematics.Vector3) commentId: M:OpenTK.Mathematics.Vector3.Distance(OpenTK.Mathematics.Vector3,OpenTK.Mathematics.Vector3) id: Distance(OpenTK.Mathematics.Vector3,OpenTK.Mathematics.Vector3) @@ -1849,13 +1797,9 @@ items: fullName: OpenTK.Mathematics.Vector3.Distance(OpenTK.Mathematics.Vector3, OpenTK.Mathematics.Vector3) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Distance - path: opentk/src/OpenTK.Mathematics/Vector/Vector3.cs - startLine: 540 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3.cs + startLine: 581 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1897,13 +1841,9 @@ items: fullName: OpenTK.Mathematics.Vector3.Distance(in OpenTK.Mathematics.Vector3, in OpenTK.Mathematics.Vector3, out float) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Distance - path: opentk/src/OpenTK.Mathematics/Vector/Vector3.cs - startLine: 553 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3.cs + startLine: 594 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1938,13 +1878,9 @@ items: fullName: OpenTK.Mathematics.Vector3.DistanceSquared(OpenTK.Mathematics.Vector3, OpenTK.Mathematics.Vector3) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DistanceSquared - path: opentk/src/OpenTK.Mathematics/Vector/Vector3.cs - startLine: 565 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3.cs + startLine: 606 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1986,13 +1922,9 @@ items: fullName: OpenTK.Mathematics.Vector3.DistanceSquared(in OpenTK.Mathematics.Vector3, in OpenTK.Mathematics.Vector3, out float) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DistanceSquared - path: opentk/src/OpenTK.Mathematics/Vector/Vector3.cs - startLine: 578 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3.cs + startLine: 619 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2027,13 +1959,9 @@ items: fullName: OpenTK.Mathematics.Vector3.Normalize(OpenTK.Mathematics.Vector3) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Normalize - path: opentk/src/OpenTK.Mathematics/Vector/Vector3.cs - startLine: 589 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3.cs + startLine: 630 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2072,13 +2000,9 @@ items: fullName: OpenTK.Mathematics.Vector3.Normalize(in OpenTK.Mathematics.Vector3, out OpenTK.Mathematics.Vector3) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Normalize - path: opentk/src/OpenTK.Mathematics/Vector/Vector3.cs - startLine: 604 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3.cs + startLine: 645 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2110,13 +2034,9 @@ items: fullName: OpenTK.Mathematics.Vector3.NormalizeFast(OpenTK.Mathematics.Vector3) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: NormalizeFast - path: opentk/src/OpenTK.Mathematics/Vector/Vector3.cs - startLine: 617 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3.cs + startLine: 658 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2155,13 +2075,9 @@ items: fullName: OpenTK.Mathematics.Vector3.NormalizeFast(in OpenTK.Mathematics.Vector3, out OpenTK.Mathematics.Vector3) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: NormalizeFast - path: opentk/src/OpenTK.Mathematics/Vector/Vector3.cs - startLine: 632 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3.cs + startLine: 673 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2193,13 +2109,9 @@ items: fullName: OpenTK.Mathematics.Vector3.Dot(OpenTK.Mathematics.Vector3, OpenTK.Mathematics.Vector3) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Dot - path: opentk/src/OpenTK.Mathematics/Vector/Vector3.cs - startLine: 646 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3.cs + startLine: 687 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2241,13 +2153,9 @@ items: fullName: OpenTK.Mathematics.Vector3.Dot(in OpenTK.Mathematics.Vector3, in OpenTK.Mathematics.Vector3, out float) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Dot - path: opentk/src/OpenTK.Mathematics/Vector/Vector3.cs - startLine: 658 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3.cs + startLine: 699 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2282,13 +2190,9 @@ items: fullName: OpenTK.Mathematics.Vector3.Cross(OpenTK.Mathematics.Vector3, OpenTK.Mathematics.Vector3) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Cross - path: opentk/src/OpenTK.Mathematics/Vector/Vector3.cs - startLine: 669 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3.cs + startLine: 710 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2330,13 +2234,9 @@ items: fullName: OpenTK.Mathematics.Vector3.Cross(in OpenTK.Mathematics.Vector3, in OpenTK.Mathematics.Vector3, out OpenTK.Mathematics.Vector3) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Cross - path: opentk/src/OpenTK.Mathematics/Vector/Vector3.cs - startLine: 682 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3.cs + startLine: 723 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2371,13 +2271,9 @@ items: fullName: OpenTK.Mathematics.Vector3.Lerp(OpenTK.Mathematics.Vector3, OpenTK.Mathematics.Vector3, float) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Lerp - path: opentk/src/OpenTK.Mathematics/Vector/Vector3.cs - startLine: 696 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3.cs + startLine: 737 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2425,13 +2321,9 @@ items: fullName: OpenTK.Mathematics.Vector3.Lerp(in OpenTK.Mathematics.Vector3, in OpenTK.Mathematics.Vector3, float, out OpenTK.Mathematics.Vector3) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Lerp - path: opentk/src/OpenTK.Mathematics/Vector/Vector3.cs - startLine: 712 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3.cs + startLine: 753 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2469,13 +2361,9 @@ items: fullName: OpenTK.Mathematics.Vector3.Lerp(OpenTK.Mathematics.Vector3, OpenTK.Mathematics.Vector3, OpenTK.Mathematics.Vector3) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Lerp - path: opentk/src/OpenTK.Mathematics/Vector/Vector3.cs - startLine: 726 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3.cs + startLine: 767 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2520,13 +2408,9 @@ items: fullName: OpenTK.Mathematics.Vector3.Lerp(in OpenTK.Mathematics.Vector3, in OpenTK.Mathematics.Vector3, OpenTK.Mathematics.Vector3, out OpenTK.Mathematics.Vector3) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Lerp - path: opentk/src/OpenTK.Mathematics/Vector/Vector3.cs - startLine: 742 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3.cs + startLine: 783 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2552,6 +2436,194 @@ items: nameWithType.vb: Vector3.Lerp(Vector3, Vector3, Vector3, Vector3) fullName.vb: OpenTK.Mathematics.Vector3.Lerp(OpenTK.Mathematics.Vector3, OpenTK.Mathematics.Vector3, OpenTK.Mathematics.Vector3, OpenTK.Mathematics.Vector3) name.vb: Lerp(Vector3, Vector3, Vector3, Vector3) +- uid: OpenTK.Mathematics.Vector3.Slerp(OpenTK.Mathematics.Vector3,OpenTK.Mathematics.Vector3,System.Single) + commentId: M:OpenTK.Mathematics.Vector3.Slerp(OpenTK.Mathematics.Vector3,OpenTK.Mathematics.Vector3,System.Single) + id: Slerp(OpenTK.Mathematics.Vector3,OpenTK.Mathematics.Vector3,System.Single) + parent: OpenTK.Mathematics.Vector3 + langs: + - csharp + - vb + name: Slerp(Vector3, Vector3, float) + nameWithType: Vector3.Slerp(Vector3, Vector3, float) + fullName: OpenTK.Mathematics.Vector3.Slerp(OpenTK.Mathematics.Vector3, OpenTK.Mathematics.Vector3, float) + type: Method + source: + id: Slerp + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3.cs + startLine: 798 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: >- + Returns a new vector that is the spherical interpolation of the two given vectors. + + a and b need to be normalized for this function to work properly. + example: [] + syntax: + content: >- + [Pure] + + public static Vector3 Slerp(Vector3 a, Vector3 b, float t) + parameters: + - id: a + type: OpenTK.Mathematics.Vector3 + description: Unit vector start point. + - id: b + type: OpenTK.Mathematics.Vector3 + description: Unit vector end point. + - id: t + type: System.Single + description: The blend factor. + return: + type: OpenTK.Mathematics.Vector3 + description: a when t=0, b when t=1, and a spherical interpolation between the vectors otherwise. + content.vb: >- + + + Public Shared Function Slerp(a As Vector3, b As Vector3, t As Single) As Vector3 + overload: OpenTK.Mathematics.Vector3.Slerp* + attributes: + - type: System.Diagnostics.Contracts.PureAttribute + ctor: System.Diagnostics.Contracts.PureAttribute.#ctor + arguments: [] + nameWithType.vb: Vector3.Slerp(Vector3, Vector3, Single) + fullName.vb: OpenTK.Mathematics.Vector3.Slerp(OpenTK.Mathematics.Vector3, OpenTK.Mathematics.Vector3, Single) + name.vb: Slerp(Vector3, Vector3, Single) +- uid: OpenTK.Mathematics.Vector3.Slerp(OpenTK.Mathematics.Vector3@,OpenTK.Mathematics.Vector3@,System.Single,OpenTK.Mathematics.Vector3@) + commentId: M:OpenTK.Mathematics.Vector3.Slerp(OpenTK.Mathematics.Vector3@,OpenTK.Mathematics.Vector3@,System.Single,OpenTK.Mathematics.Vector3@) + id: Slerp(OpenTK.Mathematics.Vector3@,OpenTK.Mathematics.Vector3@,System.Single,OpenTK.Mathematics.Vector3@) + parent: OpenTK.Mathematics.Vector3 + langs: + - csharp + - vb + name: Slerp(in Vector3, in Vector3, float, out Vector3) + nameWithType: Vector3.Slerp(in Vector3, in Vector3, float, out Vector3) + fullName: OpenTK.Mathematics.Vector3.Slerp(in OpenTK.Mathematics.Vector3, in OpenTK.Mathematics.Vector3, float, out OpenTK.Mathematics.Vector3) + type: Method + source: + id: Slerp + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3.cs + startLine: 828 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: >- + Returns a new vector that is the spherical interpolation of the two given vectors. + + a and b need to be normalized for this function to work properly. + example: [] + syntax: + content: public static void Slerp(in Vector3 a, in Vector3 b, float t, out Vector3 result) + parameters: + - id: a + type: OpenTK.Mathematics.Vector3 + description: Unit vector start point. + - id: b + type: OpenTK.Mathematics.Vector3 + description: Unit vector end point. + - id: t + type: System.Single + description: The blend factor. + - id: result + type: OpenTK.Mathematics.Vector3 + description: Is a when t=0, b when t=1, and a spherical interpolation between the vectors otherwise. + content.vb: Public Shared Sub Slerp(a As Vector3, b As Vector3, t As Single, result As Vector3) + overload: OpenTK.Mathematics.Vector3.Slerp* + nameWithType.vb: Vector3.Slerp(Vector3, Vector3, Single, Vector3) + fullName.vb: OpenTK.Mathematics.Vector3.Slerp(OpenTK.Mathematics.Vector3, OpenTK.Mathematics.Vector3, Single, OpenTK.Mathematics.Vector3) + name.vb: Slerp(Vector3, Vector3, Single, Vector3) +- uid: OpenTK.Mathematics.Vector3.Elerp(OpenTK.Mathematics.Vector3,OpenTK.Mathematics.Vector3,System.Single) + commentId: M:OpenTK.Mathematics.Vector3.Elerp(OpenTK.Mathematics.Vector3,OpenTK.Mathematics.Vector3,System.Single) + id: Elerp(OpenTK.Mathematics.Vector3,OpenTK.Mathematics.Vector3,System.Single) + parent: OpenTK.Mathematics.Vector3 + langs: + - csharp + - vb + name: Elerp(Vector3, Vector3, float) + nameWithType: Vector3.Elerp(Vector3, Vector3, float) + fullName: OpenTK.Mathematics.Vector3.Elerp(OpenTK.Mathematics.Vector3, OpenTK.Mathematics.Vector3, float) + type: Method + source: + id: Elerp + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3.cs + startLine: 866 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: >- + Returns a new vector that is the exponential interpolation of the two vectors. + + Equivalent to a * pow(b/a, t). + example: [] + syntax: + content: public static Vector3 Elerp(Vector3 a, Vector3 b, float t) + parameters: + - id: a + type: OpenTK.Mathematics.Vector3 + description: The starting value. Must be non-negative. + - id: b + type: OpenTK.Mathematics.Vector3 + description: The end value. Must be non-negative. + - id: t + type: System.Single + description: The blend factor. + return: + type: OpenTK.Mathematics.Vector3 + description: The exponential interpolation between a and b. + content.vb: Public Shared Function Elerp(a As Vector3, b As Vector3, t As Single) As Vector3 + overload: OpenTK.Mathematics.Vector3.Elerp* + seealso: + - linkId: OpenTK.Mathematics.MathHelper.Elerp(System.Single,System.Single,System.Single) + commentId: M:OpenTK.Mathematics.MathHelper.Elerp(System.Single,System.Single,System.Single) + nameWithType.vb: Vector3.Elerp(Vector3, Vector3, Single) + fullName.vb: OpenTK.Mathematics.Vector3.Elerp(OpenTK.Mathematics.Vector3, OpenTK.Mathematics.Vector3, Single) + name.vb: Elerp(Vector3, Vector3, Single) +- uid: OpenTK.Mathematics.Vector3.Elerp(OpenTK.Mathematics.Vector3@,OpenTK.Mathematics.Vector3@,System.Single,OpenTK.Mathematics.Vector3@) + commentId: M:OpenTK.Mathematics.Vector3.Elerp(OpenTK.Mathematics.Vector3@,OpenTK.Mathematics.Vector3@,System.Single,OpenTK.Mathematics.Vector3@) + id: Elerp(OpenTK.Mathematics.Vector3@,OpenTK.Mathematics.Vector3@,System.Single,OpenTK.Mathematics.Vector3@) + parent: OpenTK.Mathematics.Vector3 + langs: + - csharp + - vb + name: Elerp(in Vector3, in Vector3, float, out Vector3) + nameWithType: Vector3.Elerp(in Vector3, in Vector3, float, out Vector3) + fullName: OpenTK.Mathematics.Vector3.Elerp(in OpenTK.Mathematics.Vector3, in OpenTK.Mathematics.Vector3, float, out OpenTK.Mathematics.Vector3) + type: Method + source: + id: Elerp + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3.cs + startLine: 884 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: >- + Returns a new vector that is the exponential interpolation of the two vectors. + + Equivalent to a * pow(b/a, t). + example: [] + syntax: + content: public static void Elerp(in Vector3 a, in Vector3 b, float t, out Vector3 result) + parameters: + - id: a + type: OpenTK.Mathematics.Vector3 + description: The starting value. Must be non-negative. + - id: b + type: OpenTK.Mathematics.Vector3 + description: The end value. Must be non-negative. + - id: t + type: System.Single + description: The blend factor. + - id: result + type: OpenTK.Mathematics.Vector3 + description: The exponential interpolation between a and b. + content.vb: Public Shared Sub Elerp(a As Vector3, b As Vector3, t As Single, result As Vector3) + overload: OpenTK.Mathematics.Vector3.Elerp* + seealso: + - linkId: OpenTK.Mathematics.MathHelper.Elerp(System.Single,System.Single,System.Single) + commentId: M:OpenTK.Mathematics.MathHelper.Elerp(System.Single,System.Single,System.Single) + nameWithType.vb: Vector3.Elerp(Vector3, Vector3, Single, Vector3) + fullName.vb: OpenTK.Mathematics.Vector3.Elerp(OpenTK.Mathematics.Vector3, OpenTK.Mathematics.Vector3, Single, OpenTK.Mathematics.Vector3) + name.vb: Elerp(Vector3, Vector3, Single, Vector3) - uid: OpenTK.Mathematics.Vector3.BaryCentric(OpenTK.Mathematics.Vector3,OpenTK.Mathematics.Vector3,OpenTK.Mathematics.Vector3,System.Single,System.Single) commentId: M:OpenTK.Mathematics.Vector3.BaryCentric(OpenTK.Mathematics.Vector3,OpenTK.Mathematics.Vector3,OpenTK.Mathematics.Vector3,System.Single,System.Single) id: BaryCentric(OpenTK.Mathematics.Vector3,OpenTK.Mathematics.Vector3,OpenTK.Mathematics.Vector3,System.Single,System.Single) @@ -2564,13 +2636,9 @@ items: fullName: OpenTK.Mathematics.Vector3.BaryCentric(OpenTK.Mathematics.Vector3, OpenTK.Mathematics.Vector3, OpenTK.Mathematics.Vector3, float, float) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: BaryCentric - path: opentk/src/OpenTK.Mathematics/Vector/Vector3.cs - startLine: 758 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3.cs + startLine: 900 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2624,13 +2692,9 @@ items: fullName: OpenTK.Mathematics.Vector3.BaryCentric(in OpenTK.Mathematics.Vector3, in OpenTK.Mathematics.Vector3, in OpenTK.Mathematics.Vector3, float, float, out OpenTK.Mathematics.Vector3) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: BaryCentric - path: opentk/src/OpenTK.Mathematics/Vector/Vector3.cs - startLine: 777 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3.cs + startLine: 919 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2687,13 +2751,9 @@ items: fullName: OpenTK.Mathematics.Vector3.TransformVector(OpenTK.Mathematics.Vector3, OpenTK.Mathematics.Matrix4) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TransformVector - path: opentk/src/OpenTK.Mathematics/Vector/Vector3.cs - startLine: 804 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3.cs + startLine: 946 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2738,13 +2798,9 @@ items: fullName: OpenTK.Mathematics.Vector3.TransformVector(in OpenTK.Mathematics.Vector3, in OpenTK.Mathematics.Matrix4, out OpenTK.Mathematics.Vector3) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TransformVector - path: opentk/src/OpenTK.Mathematics/Vector/Vector3.cs - startLine: 818 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3.cs + startLine: 960 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2782,13 +2838,9 @@ items: fullName: OpenTK.Mathematics.Vector3.TransformNormal(OpenTK.Mathematics.Vector3, OpenTK.Mathematics.Matrix4) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TransformNormal - path: opentk/src/OpenTK.Mathematics/Vector/Vector3.cs - startLine: 843 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3.cs + startLine: 985 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2834,13 +2886,9 @@ items: fullName: OpenTK.Mathematics.Vector3.TransformNormal(in OpenTK.Mathematics.Vector3, in OpenTK.Mathematics.Matrix4, out OpenTK.Mathematics.Vector3) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TransformNormal - path: opentk/src/OpenTK.Mathematics/Vector/Vector3.cs - startLine: 860 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3.cs + startLine: 1002 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2879,13 +2927,9 @@ items: fullName: OpenTK.Mathematics.Vector3.TransformNormalInverse(OpenTK.Mathematics.Vector3, OpenTK.Mathematics.Matrix4) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TransformNormalInverse - path: opentk/src/OpenTK.Mathematics/Vector/Vector3.cs - startLine: 876 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3.cs + startLine: 1018 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2931,13 +2975,9 @@ items: fullName: OpenTK.Mathematics.Vector3.TransformNormalInverse(in OpenTK.Mathematics.Vector3, in OpenTK.Mathematics.Matrix4, out OpenTK.Mathematics.Vector3) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TransformNormalInverse - path: opentk/src/OpenTK.Mathematics/Vector/Vector3.cs - startLine: 893 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3.cs + startLine: 1035 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2976,13 +3016,9 @@ items: fullName: OpenTK.Mathematics.Vector3.TransformPosition(OpenTK.Mathematics.Vector3, OpenTK.Mathematics.Matrix4) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TransformPosition - path: opentk/src/OpenTK.Mathematics/Vector/Vector3.cs - startLine: 914 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3.cs + startLine: 1056 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -3024,13 +3060,9 @@ items: fullName: OpenTK.Mathematics.Vector3.TransformPosition(in OpenTK.Mathematics.Vector3, in OpenTK.Mathematics.Matrix4, out OpenTK.Mathematics.Vector3) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TransformPosition - path: opentk/src/OpenTK.Mathematics/Vector/Vector3.cs - startLine: 927 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3.cs + startLine: 1069 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -3065,13 +3097,9 @@ items: fullName: OpenTK.Mathematics.Vector3.TransformRow(OpenTK.Mathematics.Vector3, OpenTK.Mathematics.Matrix3) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TransformRow - path: opentk/src/OpenTK.Mathematics/Vector/Vector3.cs - startLine: 951 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3.cs + startLine: 1093 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -3113,13 +3141,9 @@ items: fullName: OpenTK.Mathematics.Vector3.TransformRow(in OpenTK.Mathematics.Vector3, in OpenTK.Mathematics.Matrix3, out OpenTK.Mathematics.Vector3) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TransformRow - path: opentk/src/OpenTK.Mathematics/Vector/Vector3.cs - startLine: 964 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3.cs + startLine: 1106 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -3154,13 +3178,9 @@ items: fullName: OpenTK.Mathematics.Vector3.Transform(OpenTK.Mathematics.Vector3, OpenTK.Mathematics.Quaternion) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Transform - path: opentk/src/OpenTK.Mathematics/Vector/Vector3.cs - startLine: 977 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3.cs + startLine: 1119 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -3202,13 +3222,9 @@ items: fullName: OpenTK.Mathematics.Vector3.Transform(in OpenTK.Mathematics.Vector3, in OpenTK.Mathematics.Quaternion, out OpenTK.Mathematics.Vector3) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Transform - path: opentk/src/OpenTK.Mathematics/Vector/Vector3.cs - startLine: 990 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3.cs + startLine: 1132 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -3243,13 +3259,9 @@ items: fullName: OpenTK.Mathematics.Vector3.TransformColumn(OpenTK.Mathematics.Matrix3, OpenTK.Mathematics.Vector3) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TransformColumn - path: opentk/src/OpenTK.Mathematics/Vector/Vector3.cs - startLine: 1009 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3.cs + startLine: 1151 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -3291,13 +3303,9 @@ items: fullName: OpenTK.Mathematics.Vector3.TransformColumn(in OpenTK.Mathematics.Matrix3, in OpenTK.Mathematics.Vector3, out OpenTK.Mathematics.Vector3) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TransformColumn - path: opentk/src/OpenTK.Mathematics/Vector/Vector3.cs - startLine: 1022 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3.cs + startLine: 1164 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -3332,13 +3340,9 @@ items: fullName: OpenTK.Mathematics.Vector3.TransformPerspective(OpenTK.Mathematics.Vector3, OpenTK.Mathematics.Matrix4) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TransformPerspective - path: opentk/src/OpenTK.Mathematics/Vector/Vector3.cs - startLine: 1035 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3.cs + startLine: 1177 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -3380,13 +3384,9 @@ items: fullName: OpenTK.Mathematics.Vector3.TransformPerspective(in OpenTK.Mathematics.Vector3, in OpenTK.Mathematics.Matrix4, out OpenTK.Mathematics.Vector3) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TransformPerspective - path: opentk/src/OpenTK.Mathematics/Vector/Vector3.cs - startLine: 1048 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3.cs + startLine: 1190 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -3421,13 +3421,9 @@ items: fullName: OpenTK.Mathematics.Vector3.CalculateAngle(OpenTK.Mathematics.Vector3, OpenTK.Mathematics.Vector3) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CalculateAngle - path: opentk/src/OpenTK.Mathematics/Vector/Vector3.cs - startLine: 1064 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3.cs + startLine: 1206 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -3470,13 +3466,9 @@ items: fullName: OpenTK.Mathematics.Vector3.CalculateAngle(in OpenTK.Mathematics.Vector3, in OpenTK.Mathematics.Vector3, out float) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CalculateAngle - path: opentk/src/OpenTK.Mathematics/Vector/Vector3.cs - startLine: 1078 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3.cs + startLine: 1220 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -3512,13 +3504,9 @@ items: fullName: OpenTK.Mathematics.Vector3.Project(OpenTK.Mathematics.Vector3, float, float, float, float, float, float, OpenTK.Mathematics.Matrix4) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Project - path: opentk/src/OpenTK.Mathematics/Vector/Vector3.cs - startLine: 1100 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3.cs + startLine: 1242 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -3585,13 +3573,9 @@ items: fullName: OpenTK.Mathematics.Vector3.Unproject(OpenTK.Mathematics.Vector3, float, float, float, float, float, float, OpenTK.Mathematics.Matrix4) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Unproject - path: opentk/src/OpenTK.Mathematics/Vector/Vector3.cs - startLine: 1164 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3.cs + startLine: 1306 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -3658,13 +3642,9 @@ items: fullName: OpenTK.Mathematics.Vector3.Xy type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Xy - path: opentk/src/OpenTK.Mathematics/Vector/Vector3.cs - startLine: 1214 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3.cs + startLine: 1356 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -3689,20 +3669,16 @@ items: fullName: OpenTK.Mathematics.Vector3.Xz type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Xz - path: opentk/src/OpenTK.Mathematics/Vector/Vector3.cs - startLine: 1228 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3.cs + startLine: 1370 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector2 with the X and Z components of this instance. example: [] syntax: - content: public Vector2 Xz { get; set; } + content: public Vector2 Xz { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector2 @@ -3720,20 +3696,16 @@ items: fullName: OpenTK.Mathematics.Vector3.Yx type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Yx - path: opentk/src/OpenTK.Mathematics/Vector/Vector3.cs - startLine: 1242 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3.cs + startLine: 1384 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector2 with the Y and X components of this instance. example: [] syntax: - content: public Vector2 Yx { get; set; } + content: public Vector2 Yx { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector2 @@ -3751,20 +3723,16 @@ items: fullName: OpenTK.Mathematics.Vector3.Yz type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Yz - path: opentk/src/OpenTK.Mathematics/Vector/Vector3.cs - startLine: 1256 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3.cs + startLine: 1398 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector2 with the Y and Z components of this instance. example: [] syntax: - content: public Vector2 Yz { get; set; } + content: public Vector2 Yz { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector2 @@ -3782,20 +3750,16 @@ items: fullName: OpenTK.Mathematics.Vector3.Zx type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Zx - path: opentk/src/OpenTK.Mathematics/Vector/Vector3.cs - startLine: 1270 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3.cs + startLine: 1412 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector2 with the Z and X components of this instance. example: [] syntax: - content: public Vector2 Zx { get; set; } + content: public Vector2 Zx { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector2 @@ -3813,20 +3777,16 @@ items: fullName: OpenTK.Mathematics.Vector3.Zy type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Zy - path: opentk/src/OpenTK.Mathematics/Vector/Vector3.cs - startLine: 1284 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3.cs + startLine: 1426 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector2 with the Z and Y components of this instance. example: [] syntax: - content: public Vector2 Zy { get; set; } + content: public Vector2 Zy { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector2 @@ -3844,20 +3804,16 @@ items: fullName: OpenTK.Mathematics.Vector3.Xzy type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Xzy - path: opentk/src/OpenTK.Mathematics/Vector/Vector3.cs - startLine: 1298 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3.cs + startLine: 1440 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector3 with the X, Z, and Y components of this instance. example: [] syntax: - content: public Vector3 Xzy { get; set; } + content: public Vector3 Xzy { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector3 @@ -3875,20 +3831,16 @@ items: fullName: OpenTK.Mathematics.Vector3.Yxz type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Yxz - path: opentk/src/OpenTK.Mathematics/Vector/Vector3.cs - startLine: 1313 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3.cs + startLine: 1455 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector3 with the Y, X, and Z components of this instance. example: [] syntax: - content: public Vector3 Yxz { get; set; } + content: public Vector3 Yxz { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector3 @@ -3906,20 +3858,16 @@ items: fullName: OpenTK.Mathematics.Vector3.Yzx type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Yzx - path: opentk/src/OpenTK.Mathematics/Vector/Vector3.cs - startLine: 1328 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3.cs + startLine: 1470 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector3 with the Y, Z, and X components of this instance. example: [] syntax: - content: public Vector3 Yzx { get; set; } + content: public Vector3 Yzx { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector3 @@ -3937,20 +3885,16 @@ items: fullName: OpenTK.Mathematics.Vector3.Zxy type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Zxy - path: opentk/src/OpenTK.Mathematics/Vector/Vector3.cs - startLine: 1343 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3.cs + startLine: 1485 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector3 with the Z, X, and Y components of this instance. example: [] syntax: - content: public Vector3 Zxy { get; set; } + content: public Vector3 Zxy { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector3 @@ -3968,20 +3912,16 @@ items: fullName: OpenTK.Mathematics.Vector3.Zyx type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Zyx - path: opentk/src/OpenTK.Mathematics/Vector/Vector3.cs - startLine: 1358 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3.cs + startLine: 1500 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector3 with the Z, Y, and X components of this instance. example: [] syntax: - content: public Vector3 Zyx { get; set; } + content: public Vector3 Zyx { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector3 @@ -3999,13 +3939,9 @@ items: fullName: OpenTK.Mathematics.Vector3.operator +(OpenTK.Mathematics.Vector3, OpenTK.Mathematics.Vector3) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Addition - path: opentk/src/OpenTK.Mathematics/Vector/Vector3.cs - startLine: 1376 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3.cs + startLine: 1518 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -4050,13 +3986,9 @@ items: fullName: OpenTK.Mathematics.Vector3.operator -(OpenTK.Mathematics.Vector3, OpenTK.Mathematics.Vector3) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Subtraction - path: opentk/src/OpenTK.Mathematics/Vector/Vector3.cs - startLine: 1391 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3.cs + startLine: 1533 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -4101,13 +4033,9 @@ items: fullName: OpenTK.Mathematics.Vector3.operator -(OpenTK.Mathematics.Vector3) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_UnaryNegation - path: opentk/src/OpenTK.Mathematics/Vector/Vector3.cs - startLine: 1405 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3.cs + startLine: 1547 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -4149,13 +4077,9 @@ items: fullName: OpenTK.Mathematics.Vector3.operator *(OpenTK.Mathematics.Vector3, float) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Multiply - path: opentk/src/OpenTK.Mathematics/Vector/Vector3.cs - startLine: 1420 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3.cs + startLine: 1562 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -4200,13 +4124,9 @@ items: fullName: OpenTK.Mathematics.Vector3.operator *(float, OpenTK.Mathematics.Vector3) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Multiply - path: opentk/src/OpenTK.Mathematics/Vector/Vector3.cs - startLine: 1435 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3.cs + startLine: 1577 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -4251,13 +4171,9 @@ items: fullName: OpenTK.Mathematics.Vector3.operator *(OpenTK.Mathematics.Vector3, OpenTK.Mathematics.Vector3) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Multiply - path: opentk/src/OpenTK.Mathematics/Vector/Vector3.cs - startLine: 1450 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3.cs + startLine: 1592 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -4302,13 +4218,9 @@ items: fullName: OpenTK.Mathematics.Vector3.operator *(OpenTK.Mathematics.Vector3, OpenTK.Mathematics.Matrix3) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Multiply - path: opentk/src/OpenTK.Mathematics/Vector/Vector3.cs - startLine: 1465 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3.cs + startLine: 1607 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -4353,13 +4265,9 @@ items: fullName: OpenTK.Mathematics.Vector3.operator *(OpenTK.Mathematics.Matrix3, OpenTK.Mathematics.Vector3) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Multiply - path: opentk/src/OpenTK.Mathematics/Vector/Vector3.cs - startLine: 1478 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3.cs + startLine: 1620 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -4404,13 +4312,9 @@ items: fullName: OpenTK.Mathematics.Vector3.operator *(OpenTK.Mathematics.Quaternion, OpenTK.Mathematics.Vector3) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Multiply - path: opentk/src/OpenTK.Mathematics/Vector/Vector3.cs - startLine: 1491 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3.cs + startLine: 1633 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -4455,13 +4359,9 @@ items: fullName: OpenTK.Mathematics.Vector3.operator /(OpenTK.Mathematics.Vector3, float) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Division - path: opentk/src/OpenTK.Mathematics/Vector/Vector3.cs - startLine: 1504 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3.cs + startLine: 1646 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -4506,13 +4406,9 @@ items: fullName: OpenTK.Mathematics.Vector3.operator /(OpenTK.Mathematics.Vector3, OpenTK.Mathematics.Vector3) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Division - path: opentk/src/OpenTK.Mathematics/Vector/Vector3.cs - startLine: 1519 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3.cs + startLine: 1661 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -4557,13 +4453,9 @@ items: fullName: OpenTK.Mathematics.Vector3.operator ==(OpenTK.Mathematics.Vector3, OpenTK.Mathematics.Vector3) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Equality - path: opentk/src/OpenTK.Mathematics/Vector/Vector3.cs - startLine: 1534 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3.cs + startLine: 1676 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -4598,13 +4490,9 @@ items: fullName: OpenTK.Mathematics.Vector3.operator !=(OpenTK.Mathematics.Vector3, OpenTK.Mathematics.Vector3) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Inequality - path: opentk/src/OpenTK.Mathematics/Vector/Vector3.cs - startLine: 1545 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3.cs + startLine: 1687 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -4639,13 +4527,9 @@ items: fullName: OpenTK.Mathematics.Vector3.implicit operator OpenTK.Mathematics.Vector3d(OpenTK.Mathematics.Vector3) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Implicit - path: opentk/src/OpenTK.Mathematics/Vector/Vector3.cs - startLine: 1555 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3.cs + startLine: 1697 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -4687,13 +4571,9 @@ items: fullName: OpenTK.Mathematics.Vector3.explicit operator OpenTK.Mathematics.Vector3h(OpenTK.Mathematics.Vector3) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Explicit - path: opentk/src/OpenTK.Mathematics/Vector/Vector3.cs - startLine: 1566 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3.cs + startLine: 1708 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -4735,13 +4615,9 @@ items: fullName: OpenTK.Mathematics.Vector3.explicit operator OpenTK.Mathematics.Vector3i(OpenTK.Mathematics.Vector3) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Explicit - path: opentk/src/OpenTK.Mathematics/Vector/Vector3.cs - startLine: 1577 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3.cs + startLine: 1719 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -4783,13 +4659,9 @@ items: fullName: OpenTK.Mathematics.Vector3.implicit operator OpenTK.Mathematics.Vector3((float X, float Y, float Z)) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Implicit - path: opentk/src/OpenTK.Mathematics/Vector/Vector3.cs - startLine: 1589 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3.cs + startLine: 1731 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -4834,20 +4706,16 @@ items: fullName: OpenTK.Mathematics.Vector3.ToString() type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Mathematics/Vector/Vector3.cs - startLine: 1596 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3.cs + startLine: 1738 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Returns the fully qualified type name of this instance. example: [] syntax: - content: public override string ToString() + content: public override readonly string ToString() return: type: System.String description: The fully qualified type name. @@ -4866,20 +4734,16 @@ items: fullName: OpenTK.Mathematics.Vector3.ToString(string) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Mathematics/Vector/Vector3.cs - startLine: 1602 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3.cs + startLine: 1744 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Formats the value of the current instance using the specified format. example: [] syntax: - content: public string ToString(string format) + content: public readonly string ToString(string format) parameters: - id: format type: System.String @@ -4909,20 +4773,16 @@ items: fullName: OpenTK.Mathematics.Vector3.ToString(System.IFormatProvider) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Mathematics/Vector/Vector3.cs - startLine: 1608 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3.cs + startLine: 1750 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Formats the value of the current instance using the specified format. example: [] syntax: - content: public string ToString(IFormatProvider formatProvider) + content: public readonly string ToString(IFormatProvider formatProvider) parameters: - id: formatProvider type: System.IFormatProvider @@ -4949,20 +4809,16 @@ items: fullName: OpenTK.Mathematics.Vector3.ToString(string, System.IFormatProvider) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Mathematics/Vector/Vector3.cs - startLine: 1614 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3.cs + startLine: 1756 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Formats the value of the current instance using the specified format. example: [] syntax: - content: public string ToString(string format, IFormatProvider formatProvider) + content: public readonly string ToString(string format, IFormatProvider formatProvider) parameters: - id: format type: System.String @@ -5002,20 +4858,16 @@ items: fullName: OpenTK.Mathematics.Vector3.Equals(object) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Equals - path: opentk/src/OpenTK.Mathematics/Vector/Vector3.cs - startLine: 1625 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3.cs + startLine: 1767 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Indicates whether this instance and a specified object are equal. example: [] syntax: - content: public override bool Equals(object obj) + content: public override readonly bool Equals(object obj) parameters: - id: obj type: System.Object @@ -5041,20 +4893,16 @@ items: fullName: OpenTK.Mathematics.Vector3.Equals(OpenTK.Mathematics.Vector3) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Equals - path: opentk/src/OpenTK.Mathematics/Vector/Vector3.cs - startLine: 1631 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3.cs + startLine: 1773 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Indicates whether the current object is equal to another object of the same type. example: [] syntax: - content: public bool Equals(Vector3 other) + content: public readonly bool Equals(Vector3 other) parameters: - id: other type: OpenTK.Mathematics.Vector3 @@ -5078,20 +4926,16 @@ items: fullName: OpenTK.Mathematics.Vector3.GetHashCode() type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetHashCode - path: opentk/src/OpenTK.Mathematics/Vector/Vector3.cs - startLine: 1639 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3.cs + startLine: 1781 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Returns the hash code for this instance. example: [] syntax: - content: public override int GetHashCode() + content: public override readonly int GetHashCode() return: type: System.Int32 description: A 32-bit signed integer that is the hash code for this instance. @@ -5110,13 +4954,9 @@ items: fullName: OpenTK.Mathematics.Vector3.Deconstruct(out float, out float, out float) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Deconstruct - path: opentk/src/OpenTK.Mathematics/Vector/Vector3.cs - startLine: 1650 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3.cs + startLine: 1792 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -5126,7 +4966,7 @@ items: content: >- [Pure] - public void Deconstruct(out float x, out float y, out float z) + public readonly void Deconstruct(out float x, out float y, out float z) parameters: - id: x type: System.Single @@ -5452,6 +5292,12 @@ references: name: Length nameWithType: Vector3.Length fullName: OpenTK.Mathematics.Vector3.Length +- uid: OpenTK.Mathematics.Vector3.ReciprocalLengthFast* + commentId: Overload:OpenTK.Mathematics.Vector3.ReciprocalLengthFast + href: OpenTK.Mathematics.Vector3.html#OpenTK_Mathematics_Vector3_ReciprocalLengthFast + name: ReciprocalLengthFast + nameWithType: Vector3.ReciprocalLengthFast + fullName: OpenTK.Mathematics.Vector3.ReciprocalLengthFast - uid: OpenTK.Mathematics.Vector3.Length commentId: P:OpenTK.Mathematics.Vector3.Length href: OpenTK.Mathematics.Vector3.html#OpenTK_Mathematics_Vector3_Length @@ -5488,6 +5334,12 @@ references: name: NormalizeFast nameWithType: Vector3.NormalizeFast fullName: OpenTK.Mathematics.Vector3.NormalizeFast +- uid: OpenTK.Mathematics.Vector3.Abs* + commentId: Overload:OpenTK.Mathematics.Vector3.Abs + href: OpenTK.Mathematics.Vector3.html#OpenTK_Mathematics_Vector3_Abs + name: Abs + nameWithType: Vector3.Abs + fullName: OpenTK.Mathematics.Vector3.Abs - uid: OpenTK.Mathematics.Vector3.Add* commentId: Overload:OpenTK.Mathematics.Vector3.Add href: OpenTK.Mathematics.Vector3.html#OpenTK_Mathematics_Vector3_Add_OpenTK_Mathematics_Vector3_OpenTK_Mathematics_Vector3_ @@ -5572,6 +5424,72 @@ references: name: Lerp nameWithType: Vector3.Lerp fullName: OpenTK.Mathematics.Vector3.Lerp +- uid: OpenTK.Mathematics.Vector3.Slerp* + commentId: Overload:OpenTK.Mathematics.Vector3.Slerp + href: OpenTK.Mathematics.Vector3.html#OpenTK_Mathematics_Vector3_Slerp_OpenTK_Mathematics_Vector3_OpenTK_Mathematics_Vector3_System_Single_ + name: Slerp + nameWithType: Vector3.Slerp + fullName: OpenTK.Mathematics.Vector3.Slerp +- uid: OpenTK.Mathematics.MathHelper.Elerp(System.Single,System.Single,System.Single) + commentId: M:OpenTK.Mathematics.MathHelper.Elerp(System.Single,System.Single,System.Single) + isExternal: true + href: OpenTK.Mathematics.MathHelper.html#OpenTK_Mathematics_MathHelper_Elerp_System_Single_System_Single_System_Single_ + name: Elerp(float, float, float) + nameWithType: MathHelper.Elerp(float, float, float) + fullName: OpenTK.Mathematics.MathHelper.Elerp(float, float, float) + nameWithType.vb: MathHelper.Elerp(Single, Single, Single) + fullName.vb: OpenTK.Mathematics.MathHelper.Elerp(Single, Single, Single) + name.vb: Elerp(Single, Single, Single) + spec.csharp: + - uid: OpenTK.Mathematics.MathHelper.Elerp(System.Single,System.Single,System.Single) + name: Elerp + href: OpenTK.Mathematics.MathHelper.html#OpenTK_Mathematics_MathHelper_Elerp_System_Single_System_Single_System_Single_ + - name: ( + - uid: System.Single + name: float + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.single + - name: ',' + - name: " " + - uid: System.Single + name: float + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.single + - name: ',' + - name: " " + - uid: System.Single + name: float + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.single + - name: ) + spec.vb: + - uid: OpenTK.Mathematics.MathHelper.Elerp(System.Single,System.Single,System.Single) + name: Elerp + href: OpenTK.Mathematics.MathHelper.html#OpenTK_Mathematics_MathHelper_Elerp_System_Single_System_Single_System_Single_ + - name: ( + - uid: System.Single + name: Single + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.single + - name: ',' + - name: " " + - uid: System.Single + name: Single + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.single + - name: ',' + - name: " " + - uid: System.Single + name: Single + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.single + - name: ) +- uid: OpenTK.Mathematics.Vector3.Elerp* + commentId: Overload:OpenTK.Mathematics.Vector3.Elerp + href: OpenTK.Mathematics.Vector3.html#OpenTK_Mathematics_Vector3_Elerp_OpenTK_Mathematics_Vector3_OpenTK_Mathematics_Vector3_System_Single_ + name: Elerp + nameWithType: Vector3.Elerp + fullName: OpenTK.Mathematics.Vector3.Elerp - uid: OpenTK.Mathematics.Vector3.BaryCentric* commentId: Overload:OpenTK.Mathematics.Vector3.BaryCentric href: OpenTK.Mathematics.Vector3.html#OpenTK_Mathematics_Vector3_BaryCentric_OpenTK_Mathematics_Vector3_OpenTK_Mathematics_Vector3_OpenTK_Mathematics_Vector3_System_Single_System_Single_ diff --git a/api/OpenTK.Mathematics.Vector3d.yml b/api/OpenTK.Mathematics.Vector3d.yml index 464e09ca..7aca7346 100644 --- a/api/OpenTK.Mathematics.Vector3d.yml +++ b/api/OpenTK.Mathematics.Vector3d.yml @@ -8,6 +8,9 @@ items: - OpenTK.Mathematics.Vector3d.#ctor(OpenTK.Mathematics.Vector2d,System.Double) - OpenTK.Mathematics.Vector3d.#ctor(System.Double) - OpenTK.Mathematics.Vector3d.#ctor(System.Double,System.Double,System.Double) + - OpenTK.Mathematics.Vector3d.Abs + - OpenTK.Mathematics.Vector3d.Abs(OpenTK.Mathematics.Vector3d) + - OpenTK.Mathematics.Vector3d.Abs(OpenTK.Mathematics.Vector3d@,OpenTK.Mathematics.Vector3d@) - OpenTK.Mathematics.Vector3d.Add(OpenTK.Mathematics.Vector3d,OpenTK.Mathematics.Vector3d) - OpenTK.Mathematics.Vector3d.Add(OpenTK.Mathematics.Vector3d@,OpenTK.Mathematics.Vector3d@,OpenTK.Mathematics.Vector3d@) - OpenTK.Mathematics.Vector3d.BaryCentric(OpenTK.Mathematics.Vector3d,OpenTK.Mathematics.Vector3d,OpenTK.Mathematics.Vector3d,System.Double,System.Double) @@ -33,6 +36,8 @@ items: - OpenTK.Mathematics.Vector3d.Divide(OpenTK.Mathematics.Vector3d@,System.Double,OpenTK.Mathematics.Vector3d@) - OpenTK.Mathematics.Vector3d.Dot(OpenTK.Mathematics.Vector3d,OpenTK.Mathematics.Vector3d) - OpenTK.Mathematics.Vector3d.Dot(OpenTK.Mathematics.Vector3d@,OpenTK.Mathematics.Vector3d@,System.Double@) + - OpenTK.Mathematics.Vector3d.Elerp(OpenTK.Mathematics.Vector3d,OpenTK.Mathematics.Vector3d,System.Double) + - OpenTK.Mathematics.Vector3d.Elerp(OpenTK.Mathematics.Vector3d@,OpenTK.Mathematics.Vector3d@,System.Double,OpenTK.Mathematics.Vector3d@) - OpenTK.Mathematics.Vector3d.Equals(OpenTK.Mathematics.Vector3d) - OpenTK.Mathematics.Vector3d.Equals(System.Object) - OpenTK.Mathematics.Vector3d.GetHashCode @@ -62,7 +67,10 @@ items: - OpenTK.Mathematics.Vector3d.Normalized - OpenTK.Mathematics.Vector3d.One - OpenTK.Mathematics.Vector3d.PositiveInfinity + - OpenTK.Mathematics.Vector3d.ReciprocalLengthFast - OpenTK.Mathematics.Vector3d.SizeInBytes + - OpenTK.Mathematics.Vector3d.Slerp(OpenTK.Mathematics.Vector3d,OpenTK.Mathematics.Vector3d,System.Double) + - OpenTK.Mathematics.Vector3d.Slerp(OpenTK.Mathematics.Vector3d@,OpenTK.Mathematics.Vector3d@,System.Double,OpenTK.Mathematics.Vector3d@) - OpenTK.Mathematics.Vector3d.Subtract(OpenTK.Mathematics.Vector3d,OpenTK.Mathematics.Vector3d) - OpenTK.Mathematics.Vector3d.Subtract(OpenTK.Mathematics.Vector3d@,OpenTK.Mathematics.Vector3d@,OpenTK.Mathematics.Vector3d@) - OpenTK.Mathematics.Vector3d.ToString @@ -128,12 +136,8 @@ items: fullName: OpenTK.Mathematics.Vector3d type: Struct source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Vector3d - path: opentk/src/OpenTK.Mathematics/Vector/Vector3d.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3d.cs startLine: 34 assemblies: - OpenTK.Mathematics @@ -172,12 +176,8 @@ items: fullName: OpenTK.Mathematics.Vector3d.X type: Field source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: X - path: opentk/src/OpenTK.Mathematics/Vector/Vector3d.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3d.cs startLine: 41 assemblies: - OpenTK.Mathematics @@ -201,12 +201,8 @@ items: fullName: OpenTK.Mathematics.Vector3d.Y type: Field source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Y - path: opentk/src/OpenTK.Mathematics/Vector/Vector3d.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3d.cs startLine: 46 assemblies: - OpenTK.Mathematics @@ -230,12 +226,8 @@ items: fullName: OpenTK.Mathematics.Vector3d.Z type: Field source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Z - path: opentk/src/OpenTK.Mathematics/Vector/Vector3d.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3d.cs startLine: 51 assemblies: - OpenTK.Mathematics @@ -259,12 +251,8 @@ items: fullName: OpenTK.Mathematics.Vector3d.Vector3d(double) type: Constructor source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Mathematics/Vector/Vector3d.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3d.cs startLine: 57 assemblies: - OpenTK.Mathematics @@ -294,12 +282,8 @@ items: fullName: OpenTK.Mathematics.Vector3d.Vector3d(double, double, double) type: Constructor source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Mathematics/Vector/Vector3d.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3d.cs startLine: 70 assemblies: - OpenTK.Mathematics @@ -335,12 +319,8 @@ items: fullName: OpenTK.Mathematics.Vector3d.Vector3d(OpenTK.Mathematics.Vector2d, double) type: Constructor source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Mathematics/Vector/Vector3d.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3d.cs startLine: 82 assemblies: - OpenTK.Mathematics @@ -373,12 +353,8 @@ items: fullName: OpenTK.Mathematics.Vector3d.this[int] type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: this[] - path: opentk/src/OpenTK.Mathematics/Vector/Vector3d.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3d.cs startLine: 94 assemblies: - OpenTK.Mathematics @@ -386,7 +362,7 @@ items: summary: Gets or sets the value at the index of the Vector. example: [] syntax: - content: public double this[int index] { get; set; } + content: public double this[int index] { readonly get; set; } parameters: - id: index type: System.Int32 @@ -414,12 +390,8 @@ items: fullName: OpenTK.Mathematics.Vector3d.Length type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Length - path: opentk/src/OpenTK.Mathematics/Vector/Vector3d.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3d.cs startLine: 142 assemblies: - OpenTK.Mathematics @@ -427,7 +399,7 @@ items: summary: Gets the length (magnitude) of the vector. example: [] syntax: - content: public double Length { get; } + content: public readonly double Length { get; } parameters: [] return: type: System.Double @@ -436,6 +408,33 @@ items: seealso: - linkId: OpenTK.Mathematics.Vector3d.LengthSquared commentId: P:OpenTK.Mathematics.Vector3d.LengthSquared +- uid: OpenTK.Mathematics.Vector3d.ReciprocalLengthFast + commentId: P:OpenTK.Mathematics.Vector3d.ReciprocalLengthFast + id: ReciprocalLengthFast + parent: OpenTK.Mathematics.Vector3d + langs: + - csharp + - vb + name: ReciprocalLengthFast + nameWithType: Vector3d.ReciprocalLengthFast + fullName: OpenTK.Mathematics.Vector3d.ReciprocalLengthFast + type: Property + source: + id: ReciprocalLengthFast + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3d.cs + startLine: 147 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: Gets an approximation of 1 over the length (magnitude) of the vector. + example: [] + syntax: + content: public readonly double ReciprocalLengthFast { get; } + parameters: [] + return: + type: System.Double + content.vb: Public ReadOnly Property ReciprocalLengthFast As Double + overload: OpenTK.Mathematics.Vector3d.ReciprocalLengthFast* - uid: OpenTK.Mathematics.Vector3d.LengthFast commentId: P:OpenTK.Mathematics.Vector3d.LengthFast id: LengthFast @@ -448,24 +447,17 @@ items: fullName: OpenTK.Mathematics.Vector3d.LengthFast type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: LengthFast - path: opentk/src/OpenTK.Mathematics/Vector/Vector3d.cs - startLine: 153 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3d.cs + startLine: 157 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets an approximation of the vector length (magnitude). - remarks: >- - This property uses an approximation of the square root function to calculate vector magnitude, with - - an upper error bound of 0.001. + remarks: This property uses an approximation of the square root function to calculate vector magnitude. example: [] syntax: - content: public double LengthFast { get; } + content: public readonly double LengthFast { get; } parameters: [] return: type: System.Double @@ -486,13 +478,9 @@ items: fullName: OpenTK.Mathematics.Vector3d.LengthSquared type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: LengthSquared - path: opentk/src/OpenTK.Mathematics/Vector/Vector3d.cs - startLine: 164 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3d.cs + startLine: 168 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -503,7 +491,7 @@ items: for comparisons. example: [] syntax: - content: public double LengthSquared { get; } + content: public readonly double LengthSquared { get; } parameters: [] return: type: System.Double @@ -524,20 +512,16 @@ items: fullName: OpenTK.Mathematics.Vector3d.Normalized() type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Normalized - path: opentk/src/OpenTK.Mathematics/Vector/Vector3d.cs - startLine: 170 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3d.cs + startLine: 174 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Returns a copy of the Vector3d scaled to unit length. example: [] syntax: - content: public Vector3d Normalized() + content: public readonly Vector3d Normalized() return: type: OpenTK.Mathematics.Vector3d description: The normalized copy. @@ -555,13 +539,9 @@ items: fullName: OpenTK.Mathematics.Vector3d.Normalize() type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Normalize - path: opentk/src/OpenTK.Mathematics/Vector/Vector3d.cs - startLine: 180 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3d.cs + startLine: 184 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -583,13 +563,9 @@ items: fullName: OpenTK.Mathematics.Vector3d.NormalizeFast() type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: NormalizeFast - path: opentk/src/OpenTK.Mathematics/Vector/Vector3d.cs - startLine: 191 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3d.cs + startLine: 195 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -599,6 +575,33 @@ items: content: public void NormalizeFast() content.vb: Public Sub NormalizeFast() overload: OpenTK.Mathematics.Vector3d.NormalizeFast* +- uid: OpenTK.Mathematics.Vector3d.Abs + commentId: M:OpenTK.Mathematics.Vector3d.Abs + id: Abs + parent: OpenTK.Mathematics.Vector3d + langs: + - csharp + - vb + name: Abs() + nameWithType: Vector3d.Abs() + fullName: OpenTK.Mathematics.Vector3d.Abs() + type: Method + source: + id: Abs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3d.cs + startLine: 207 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: Returns a new vector that is the component-wise absolute value of the vector. + example: [] + syntax: + content: public readonly Vector3d Abs() + return: + type: OpenTK.Mathematics.Vector3d + description: The component-wise absolute value vector. + content.vb: Public Function Abs() As Vector3d + overload: OpenTK.Mathematics.Vector3d.Abs* - uid: OpenTK.Mathematics.Vector3d.UnitX commentId: F:OpenTK.Mathematics.Vector3d.UnitX id: UnitX @@ -611,13 +614,9 @@ items: fullName: OpenTK.Mathematics.Vector3d.UnitX type: Field source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: UnitX - path: opentk/src/OpenTK.Mathematics/Vector/Vector3d.cs - startLine: 202 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3d.cs + startLine: 219 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -640,13 +639,9 @@ items: fullName: OpenTK.Mathematics.Vector3d.UnitY type: Field source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: UnitY - path: opentk/src/OpenTK.Mathematics/Vector/Vector3d.cs - startLine: 207 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3d.cs + startLine: 224 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -669,13 +664,9 @@ items: fullName: OpenTK.Mathematics.Vector3d.UnitZ type: Field source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: UnitZ - path: opentk/src/OpenTK.Mathematics/Vector/Vector3d.cs - startLine: 212 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3d.cs + startLine: 229 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -698,13 +689,9 @@ items: fullName: OpenTK.Mathematics.Vector3d.Zero type: Field source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Zero - path: opentk/src/OpenTK.Mathematics/Vector/Vector3d.cs - startLine: 217 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3d.cs + startLine: 234 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -727,13 +714,9 @@ items: fullName: OpenTK.Mathematics.Vector3d.One type: Field source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: One - path: opentk/src/OpenTK.Mathematics/Vector/Vector3d.cs - startLine: 222 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3d.cs + startLine: 239 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -756,13 +739,9 @@ items: fullName: OpenTK.Mathematics.Vector3d.PositiveInfinity type: Field source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: PositiveInfinity - path: opentk/src/OpenTK.Mathematics/Vector/Vector3d.cs - startLine: 227 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3d.cs + startLine: 244 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -785,13 +764,9 @@ items: fullName: OpenTK.Mathematics.Vector3d.NegativeInfinity type: Field source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: NegativeInfinity - path: opentk/src/OpenTK.Mathematics/Vector/Vector3d.cs - startLine: 232 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3d.cs + startLine: 249 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -814,13 +789,9 @@ items: fullName: OpenTK.Mathematics.Vector3d.SizeInBytes type: Field source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SizeInBytes - path: opentk/src/OpenTK.Mathematics/Vector/Vector3d.cs - startLine: 237 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3d.cs + startLine: 254 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -843,13 +814,9 @@ items: fullName: OpenTK.Mathematics.Vector3d.Add(OpenTK.Mathematics.Vector3d, OpenTK.Mathematics.Vector3d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Add - path: opentk/src/OpenTK.Mathematics/Vector/Vector3d.cs - startLine: 245 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3d.cs + startLine: 262 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -891,13 +858,9 @@ items: fullName: OpenTK.Mathematics.Vector3d.Add(in OpenTK.Mathematics.Vector3d, in OpenTK.Mathematics.Vector3d, out OpenTK.Mathematics.Vector3d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Add - path: opentk/src/OpenTK.Mathematics/Vector/Vector3d.cs - startLine: 258 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3d.cs + startLine: 275 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -932,13 +895,9 @@ items: fullName: OpenTK.Mathematics.Vector3d.Subtract(OpenTK.Mathematics.Vector3d, OpenTK.Mathematics.Vector3d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Subtract - path: opentk/src/OpenTK.Mathematics/Vector/Vector3d.cs - startLine: 271 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3d.cs + startLine: 288 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -980,13 +939,9 @@ items: fullName: OpenTK.Mathematics.Vector3d.Subtract(in OpenTK.Mathematics.Vector3d, in OpenTK.Mathematics.Vector3d, out OpenTK.Mathematics.Vector3d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Subtract - path: opentk/src/OpenTK.Mathematics/Vector/Vector3d.cs - startLine: 284 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3d.cs + startLine: 301 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1021,13 +976,9 @@ items: fullName: OpenTK.Mathematics.Vector3d.Multiply(OpenTK.Mathematics.Vector3d, double) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Multiply - path: opentk/src/OpenTK.Mathematics/Vector/Vector3d.cs - startLine: 297 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3d.cs + startLine: 314 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1072,13 +1023,9 @@ items: fullName: OpenTK.Mathematics.Vector3d.Multiply(in OpenTK.Mathematics.Vector3d, double, out OpenTK.Mathematics.Vector3d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Multiply - path: opentk/src/OpenTK.Mathematics/Vector/Vector3d.cs - startLine: 310 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3d.cs + startLine: 327 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1113,13 +1060,9 @@ items: fullName: OpenTK.Mathematics.Vector3d.Multiply(OpenTK.Mathematics.Vector3d, OpenTK.Mathematics.Vector3d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Multiply - path: opentk/src/OpenTK.Mathematics/Vector/Vector3d.cs - startLine: 323 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3d.cs + startLine: 340 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1161,13 +1104,9 @@ items: fullName: OpenTK.Mathematics.Vector3d.Multiply(in OpenTK.Mathematics.Vector3d, in OpenTK.Mathematics.Vector3d, out OpenTK.Mathematics.Vector3d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Multiply - path: opentk/src/OpenTK.Mathematics/Vector/Vector3d.cs - startLine: 336 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3d.cs + startLine: 353 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1202,13 +1141,9 @@ items: fullName: OpenTK.Mathematics.Vector3d.Divide(OpenTK.Mathematics.Vector3d, double) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Divide - path: opentk/src/OpenTK.Mathematics/Vector/Vector3d.cs - startLine: 349 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3d.cs + startLine: 366 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1253,13 +1188,9 @@ items: fullName: OpenTK.Mathematics.Vector3d.Divide(in OpenTK.Mathematics.Vector3d, double, out OpenTK.Mathematics.Vector3d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Divide - path: opentk/src/OpenTK.Mathematics/Vector/Vector3d.cs - startLine: 362 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3d.cs + startLine: 379 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1294,13 +1225,9 @@ items: fullName: OpenTK.Mathematics.Vector3d.Divide(OpenTK.Mathematics.Vector3d, OpenTK.Mathematics.Vector3d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Divide - path: opentk/src/OpenTK.Mathematics/Vector/Vector3d.cs - startLine: 375 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3d.cs + startLine: 392 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1342,13 +1269,9 @@ items: fullName: OpenTK.Mathematics.Vector3d.Divide(in OpenTK.Mathematics.Vector3d, in OpenTK.Mathematics.Vector3d, out OpenTK.Mathematics.Vector3d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Divide - path: opentk/src/OpenTK.Mathematics/Vector/Vector3d.cs - startLine: 388 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3d.cs + startLine: 405 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1383,13 +1306,9 @@ items: fullName: OpenTK.Mathematics.Vector3d.ComponentMin(OpenTK.Mathematics.Vector3d, OpenTK.Mathematics.Vector3d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ComponentMin - path: opentk/src/OpenTK.Mathematics/Vector/Vector3d.cs - startLine: 401 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3d.cs + startLine: 418 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1431,13 +1350,9 @@ items: fullName: OpenTK.Mathematics.Vector3d.ComponentMin(in OpenTK.Mathematics.Vector3d, in OpenTK.Mathematics.Vector3d, out OpenTK.Mathematics.Vector3d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ComponentMin - path: opentk/src/OpenTK.Mathematics/Vector/Vector3d.cs - startLine: 416 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3d.cs + startLine: 433 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1472,13 +1387,9 @@ items: fullName: OpenTK.Mathematics.Vector3d.ComponentMax(OpenTK.Mathematics.Vector3d, OpenTK.Mathematics.Vector3d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ComponentMax - path: opentk/src/OpenTK.Mathematics/Vector/Vector3d.cs - startLine: 429 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3d.cs + startLine: 446 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1520,13 +1431,9 @@ items: fullName: OpenTK.Mathematics.Vector3d.ComponentMax(in OpenTK.Mathematics.Vector3d, in OpenTK.Mathematics.Vector3d, out OpenTK.Mathematics.Vector3d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ComponentMax - path: opentk/src/OpenTK.Mathematics/Vector/Vector3d.cs - startLine: 444 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3d.cs + startLine: 461 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1561,13 +1468,9 @@ items: fullName: OpenTK.Mathematics.Vector3d.MagnitudeMin(OpenTK.Mathematics.Vector3d, OpenTK.Mathematics.Vector3d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MagnitudeMin - path: opentk/src/OpenTK.Mathematics/Vector/Vector3d.cs - startLine: 457 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3d.cs + startLine: 474 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1609,13 +1512,9 @@ items: fullName: OpenTK.Mathematics.Vector3d.MagnitudeMin(in OpenTK.Mathematics.Vector3d, in OpenTK.Mathematics.Vector3d, out OpenTK.Mathematics.Vector3d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MagnitudeMin - path: opentk/src/OpenTK.Mathematics/Vector/Vector3d.cs - startLine: 469 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3d.cs + startLine: 486 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1650,13 +1549,9 @@ items: fullName: OpenTK.Mathematics.Vector3d.MagnitudeMax(OpenTK.Mathematics.Vector3d, OpenTK.Mathematics.Vector3d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MagnitudeMax - path: opentk/src/OpenTK.Mathematics/Vector/Vector3d.cs - startLine: 480 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3d.cs + startLine: 497 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1698,13 +1593,9 @@ items: fullName: OpenTK.Mathematics.Vector3d.MagnitudeMax(in OpenTK.Mathematics.Vector3d, in OpenTK.Mathematics.Vector3d, out OpenTK.Mathematics.Vector3d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MagnitudeMax - path: opentk/src/OpenTK.Mathematics/Vector/Vector3d.cs - startLine: 492 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3d.cs + startLine: 509 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1739,13 +1630,9 @@ items: fullName: OpenTK.Mathematics.Vector3d.Clamp(OpenTK.Mathematics.Vector3d, OpenTK.Mathematics.Vector3d, OpenTK.Mathematics.Vector3d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Clamp - path: opentk/src/OpenTK.Mathematics/Vector/Vector3d.cs - startLine: 504 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3d.cs + startLine: 521 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1790,13 +1677,9 @@ items: fullName: OpenTK.Mathematics.Vector3d.Clamp(in OpenTK.Mathematics.Vector3d, in OpenTK.Mathematics.Vector3d, in OpenTK.Mathematics.Vector3d, out OpenTK.Mathematics.Vector3d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Clamp - path: opentk/src/OpenTK.Mathematics/Vector/Vector3d.cs - startLine: 520 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3d.cs + startLine: 537 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1822,6 +1705,71 @@ items: nameWithType.vb: Vector3d.Clamp(Vector3d, Vector3d, Vector3d, Vector3d) fullName.vb: OpenTK.Mathematics.Vector3d.Clamp(OpenTK.Mathematics.Vector3d, OpenTK.Mathematics.Vector3d, OpenTK.Mathematics.Vector3d, OpenTK.Mathematics.Vector3d) name.vb: Clamp(Vector3d, Vector3d, Vector3d, Vector3d) +- uid: OpenTK.Mathematics.Vector3d.Abs(OpenTK.Mathematics.Vector3d) + commentId: M:OpenTK.Mathematics.Vector3d.Abs(OpenTK.Mathematics.Vector3d) + id: Abs(OpenTK.Mathematics.Vector3d) + parent: OpenTK.Mathematics.Vector3d + langs: + - csharp + - vb + name: Abs(Vector3d) + nameWithType: Vector3d.Abs(Vector3d) + fullName: OpenTK.Mathematics.Vector3d.Abs(OpenTK.Mathematics.Vector3d) + type: Method + source: + id: Abs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3d.cs + startLine: 549 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: Take the component-wise absolute value of a vector. + example: [] + syntax: + content: public static Vector3d Abs(Vector3d vec) + parameters: + - id: vec + type: OpenTK.Mathematics.Vector3d + description: The vector to apply component-wise absolute value to. + return: + type: OpenTK.Mathematics.Vector3d + description: The component-wise absolute value vector. + content.vb: Public Shared Function Abs(vec As Vector3d) As Vector3d + overload: OpenTK.Mathematics.Vector3d.Abs* +- uid: OpenTK.Mathematics.Vector3d.Abs(OpenTK.Mathematics.Vector3d@,OpenTK.Mathematics.Vector3d@) + commentId: M:OpenTK.Mathematics.Vector3d.Abs(OpenTK.Mathematics.Vector3d@,OpenTK.Mathematics.Vector3d@) + id: Abs(OpenTK.Mathematics.Vector3d@,OpenTK.Mathematics.Vector3d@) + parent: OpenTK.Mathematics.Vector3d + langs: + - csharp + - vb + name: Abs(in Vector3d, out Vector3d) + nameWithType: Vector3d.Abs(in Vector3d, out Vector3d) + fullName: OpenTK.Mathematics.Vector3d.Abs(in OpenTK.Mathematics.Vector3d, out OpenTK.Mathematics.Vector3d) + type: Method + source: + id: Abs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3d.cs + startLine: 562 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: Take the component-wise absolute value of a vector. + example: [] + syntax: + content: public static void Abs(in Vector3d vec, out Vector3d result) + parameters: + - id: vec + type: OpenTK.Mathematics.Vector3d + description: The vector to apply component-wise absolute value to. + - id: result + type: OpenTK.Mathematics.Vector3d + description: The component-wise absolute value vector. + content.vb: Public Shared Sub Abs(vec As Vector3d, result As Vector3d) + overload: OpenTK.Mathematics.Vector3d.Abs* + nameWithType.vb: Vector3d.Abs(Vector3d, Vector3d) + fullName.vb: OpenTK.Mathematics.Vector3d.Abs(OpenTK.Mathematics.Vector3d, OpenTK.Mathematics.Vector3d) + name.vb: Abs(Vector3d, Vector3d) - uid: OpenTK.Mathematics.Vector3d.Distance(OpenTK.Mathematics.Vector3d,OpenTK.Mathematics.Vector3d) commentId: M:OpenTK.Mathematics.Vector3d.Distance(OpenTK.Mathematics.Vector3d,OpenTK.Mathematics.Vector3d) id: Distance(OpenTK.Mathematics.Vector3d,OpenTK.Mathematics.Vector3d) @@ -1834,13 +1782,9 @@ items: fullName: OpenTK.Mathematics.Vector3d.Distance(OpenTK.Mathematics.Vector3d, OpenTK.Mathematics.Vector3d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Distance - path: opentk/src/OpenTK.Mathematics/Vector/Vector3d.cs - startLine: 533 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3d.cs + startLine: 575 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1882,13 +1826,9 @@ items: fullName: OpenTK.Mathematics.Vector3d.Distance(in OpenTK.Mathematics.Vector3d, in OpenTK.Mathematics.Vector3d, out double) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Distance - path: opentk/src/OpenTK.Mathematics/Vector/Vector3d.cs - startLine: 546 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3d.cs + startLine: 588 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1923,13 +1863,9 @@ items: fullName: OpenTK.Mathematics.Vector3d.DistanceSquared(OpenTK.Mathematics.Vector3d, OpenTK.Mathematics.Vector3d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DistanceSquared - path: opentk/src/OpenTK.Mathematics/Vector/Vector3d.cs - startLine: 558 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3d.cs + startLine: 600 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1971,13 +1907,9 @@ items: fullName: OpenTK.Mathematics.Vector3d.DistanceSquared(in OpenTK.Mathematics.Vector3d, in OpenTK.Mathematics.Vector3d, out double) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DistanceSquared - path: opentk/src/OpenTK.Mathematics/Vector/Vector3d.cs - startLine: 571 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3d.cs + startLine: 613 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2012,13 +1944,9 @@ items: fullName: OpenTK.Mathematics.Vector3d.Normalize(OpenTK.Mathematics.Vector3d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Normalize - path: opentk/src/OpenTK.Mathematics/Vector/Vector3d.cs - startLine: 582 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3d.cs + startLine: 624 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2057,13 +1985,9 @@ items: fullName: OpenTK.Mathematics.Vector3d.Normalize(in OpenTK.Mathematics.Vector3d, out OpenTK.Mathematics.Vector3d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Normalize - path: opentk/src/OpenTK.Mathematics/Vector/Vector3d.cs - startLine: 597 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3d.cs + startLine: 639 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2095,13 +2019,9 @@ items: fullName: OpenTK.Mathematics.Vector3d.NormalizeFast(OpenTK.Mathematics.Vector3d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: NormalizeFast - path: opentk/src/OpenTK.Mathematics/Vector/Vector3d.cs - startLine: 610 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3d.cs + startLine: 652 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2140,13 +2060,9 @@ items: fullName: OpenTK.Mathematics.Vector3d.NormalizeFast(in OpenTK.Mathematics.Vector3d, out OpenTK.Mathematics.Vector3d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: NormalizeFast - path: opentk/src/OpenTK.Mathematics/Vector/Vector3d.cs - startLine: 625 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3d.cs + startLine: 667 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2178,13 +2094,9 @@ items: fullName: OpenTK.Mathematics.Vector3d.Dot(OpenTK.Mathematics.Vector3d, OpenTK.Mathematics.Vector3d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Dot - path: opentk/src/OpenTK.Mathematics/Vector/Vector3d.cs - startLine: 639 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3d.cs + startLine: 681 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2226,13 +2138,9 @@ items: fullName: OpenTK.Mathematics.Vector3d.Dot(in OpenTK.Mathematics.Vector3d, in OpenTK.Mathematics.Vector3d, out double) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Dot - path: opentk/src/OpenTK.Mathematics/Vector/Vector3d.cs - startLine: 651 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3d.cs + startLine: 693 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2267,13 +2175,9 @@ items: fullName: OpenTK.Mathematics.Vector3d.Cross(OpenTK.Mathematics.Vector3d, OpenTK.Mathematics.Vector3d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Cross - path: opentk/src/OpenTK.Mathematics/Vector/Vector3d.cs - startLine: 662 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3d.cs + startLine: 704 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2315,13 +2219,9 @@ items: fullName: OpenTK.Mathematics.Vector3d.Cross(in OpenTK.Mathematics.Vector3d, in OpenTK.Mathematics.Vector3d, out OpenTK.Mathematics.Vector3d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Cross - path: opentk/src/OpenTK.Mathematics/Vector/Vector3d.cs - startLine: 675 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3d.cs + startLine: 717 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2356,13 +2256,9 @@ items: fullName: OpenTK.Mathematics.Vector3d.Lerp(OpenTK.Mathematics.Vector3d, OpenTK.Mathematics.Vector3d, double) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Lerp - path: opentk/src/OpenTK.Mathematics/Vector/Vector3d.cs - startLine: 689 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3d.cs + startLine: 731 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2410,13 +2306,9 @@ items: fullName: OpenTK.Mathematics.Vector3d.Lerp(in OpenTK.Mathematics.Vector3d, in OpenTK.Mathematics.Vector3d, double, out OpenTK.Mathematics.Vector3d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Lerp - path: opentk/src/OpenTK.Mathematics/Vector/Vector3d.cs - startLine: 705 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3d.cs + startLine: 747 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2454,13 +2346,9 @@ items: fullName: OpenTK.Mathematics.Vector3d.Lerp(OpenTK.Mathematics.Vector3d, OpenTK.Mathematics.Vector3d, OpenTK.Mathematics.Vector3d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Lerp - path: opentk/src/OpenTK.Mathematics/Vector/Vector3d.cs - startLine: 719 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3d.cs + startLine: 761 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2505,13 +2393,9 @@ items: fullName: OpenTK.Mathematics.Vector3d.Lerp(in OpenTK.Mathematics.Vector3d, in OpenTK.Mathematics.Vector3d, OpenTK.Mathematics.Vector3d, out OpenTK.Mathematics.Vector3d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Lerp - path: opentk/src/OpenTK.Mathematics/Vector/Vector3d.cs - startLine: 735 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3d.cs + startLine: 777 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2537,6 +2421,194 @@ items: nameWithType.vb: Vector3d.Lerp(Vector3d, Vector3d, Vector3d, Vector3d) fullName.vb: OpenTK.Mathematics.Vector3d.Lerp(OpenTK.Mathematics.Vector3d, OpenTK.Mathematics.Vector3d, OpenTK.Mathematics.Vector3d, OpenTK.Mathematics.Vector3d) name.vb: Lerp(Vector3d, Vector3d, Vector3d, Vector3d) +- uid: OpenTK.Mathematics.Vector3d.Slerp(OpenTK.Mathematics.Vector3d,OpenTK.Mathematics.Vector3d,System.Double) + commentId: M:OpenTK.Mathematics.Vector3d.Slerp(OpenTK.Mathematics.Vector3d,OpenTK.Mathematics.Vector3d,System.Double) + id: Slerp(OpenTK.Mathematics.Vector3d,OpenTK.Mathematics.Vector3d,System.Double) + parent: OpenTK.Mathematics.Vector3d + langs: + - csharp + - vb + name: Slerp(Vector3d, Vector3d, double) + nameWithType: Vector3d.Slerp(Vector3d, Vector3d, double) + fullName: OpenTK.Mathematics.Vector3d.Slerp(OpenTK.Mathematics.Vector3d, OpenTK.Mathematics.Vector3d, double) + type: Method + source: + id: Slerp + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3d.cs + startLine: 792 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: >- + Returns a new vector that is the spherical interpolation of the two given vectors. + + a and b need to be normalized for this function to work properly. + example: [] + syntax: + content: >- + [Pure] + + public static Vector3d Slerp(Vector3d a, Vector3d b, double t) + parameters: + - id: a + type: OpenTK.Mathematics.Vector3d + description: Unit vector start point. + - id: b + type: OpenTK.Mathematics.Vector3d + description: Unit vector end point. + - id: t + type: System.Double + description: The blend factor. + return: + type: OpenTK.Mathematics.Vector3d + description: a when t=0, b when t=1, and a spherical interpolation between the vectors otherwise. + content.vb: >- + + + Public Shared Function Slerp(a As Vector3d, b As Vector3d, t As Double) As Vector3d + overload: OpenTK.Mathematics.Vector3d.Slerp* + attributes: + - type: System.Diagnostics.Contracts.PureAttribute + ctor: System.Diagnostics.Contracts.PureAttribute.#ctor + arguments: [] + nameWithType.vb: Vector3d.Slerp(Vector3d, Vector3d, Double) + fullName.vb: OpenTK.Mathematics.Vector3d.Slerp(OpenTK.Mathematics.Vector3d, OpenTK.Mathematics.Vector3d, Double) + name.vb: Slerp(Vector3d, Vector3d, Double) +- uid: OpenTK.Mathematics.Vector3d.Slerp(OpenTK.Mathematics.Vector3d@,OpenTK.Mathematics.Vector3d@,System.Double,OpenTK.Mathematics.Vector3d@) + commentId: M:OpenTK.Mathematics.Vector3d.Slerp(OpenTK.Mathematics.Vector3d@,OpenTK.Mathematics.Vector3d@,System.Double,OpenTK.Mathematics.Vector3d@) + id: Slerp(OpenTK.Mathematics.Vector3d@,OpenTK.Mathematics.Vector3d@,System.Double,OpenTK.Mathematics.Vector3d@) + parent: OpenTK.Mathematics.Vector3d + langs: + - csharp + - vb + name: Slerp(in Vector3d, in Vector3d, double, out Vector3d) + nameWithType: Vector3d.Slerp(in Vector3d, in Vector3d, double, out Vector3d) + fullName: OpenTK.Mathematics.Vector3d.Slerp(in OpenTK.Mathematics.Vector3d, in OpenTK.Mathematics.Vector3d, double, out OpenTK.Mathematics.Vector3d) + type: Method + source: + id: Slerp + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3d.cs + startLine: 822 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: >- + Returns a new vector that is the spherical interpolation of the two given vectors. + + a and b need to be normalized for this function to work properly. + example: [] + syntax: + content: public static void Slerp(in Vector3d a, in Vector3d b, double t, out Vector3d result) + parameters: + - id: a + type: OpenTK.Mathematics.Vector3d + description: Unit vector start point. + - id: b + type: OpenTK.Mathematics.Vector3d + description: Unit vector end point. + - id: t + type: System.Double + description: The blend factor. + - id: result + type: OpenTK.Mathematics.Vector3d + description: Is a when t=0, b when t=1, and a spherical interpolation between the vectors otherwise. + content.vb: Public Shared Sub Slerp(a As Vector3d, b As Vector3d, t As Double, result As Vector3d) + overload: OpenTK.Mathematics.Vector3d.Slerp* + nameWithType.vb: Vector3d.Slerp(Vector3d, Vector3d, Double, Vector3d) + fullName.vb: OpenTK.Mathematics.Vector3d.Slerp(OpenTK.Mathematics.Vector3d, OpenTK.Mathematics.Vector3d, Double, OpenTK.Mathematics.Vector3d) + name.vb: Slerp(Vector3d, Vector3d, Double, Vector3d) +- uid: OpenTK.Mathematics.Vector3d.Elerp(OpenTK.Mathematics.Vector3d,OpenTK.Mathematics.Vector3d,System.Double) + commentId: M:OpenTK.Mathematics.Vector3d.Elerp(OpenTK.Mathematics.Vector3d,OpenTK.Mathematics.Vector3d,System.Double) + id: Elerp(OpenTK.Mathematics.Vector3d,OpenTK.Mathematics.Vector3d,System.Double) + parent: OpenTK.Mathematics.Vector3d + langs: + - csharp + - vb + name: Elerp(Vector3d, Vector3d, double) + nameWithType: Vector3d.Elerp(Vector3d, Vector3d, double) + fullName: OpenTK.Mathematics.Vector3d.Elerp(OpenTK.Mathematics.Vector3d, OpenTK.Mathematics.Vector3d, double) + type: Method + source: + id: Elerp + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3d.cs + startLine: 860 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: >- + Returns a new vector that is the exponential interpolation of the two vectors. + + Equivalent to a * pow(b/a, t). + example: [] + syntax: + content: public static Vector3d Elerp(Vector3d a, Vector3d b, double t) + parameters: + - id: a + type: OpenTK.Mathematics.Vector3d + description: The starting value. Must be non-negative. + - id: b + type: OpenTK.Mathematics.Vector3d + description: The end value. Must be non-negative. + - id: t + type: System.Double + description: The blend factor. + return: + type: OpenTK.Mathematics.Vector3d + description: The exponential interpolation between a and b. + content.vb: Public Shared Function Elerp(a As Vector3d, b As Vector3d, t As Double) As Vector3d + overload: OpenTK.Mathematics.Vector3d.Elerp* + seealso: + - linkId: OpenTK.Mathematics.MathHelper.Elerp(System.Double,System.Double,System.Double) + commentId: M:OpenTK.Mathematics.MathHelper.Elerp(System.Double,System.Double,System.Double) + nameWithType.vb: Vector3d.Elerp(Vector3d, Vector3d, Double) + fullName.vb: OpenTK.Mathematics.Vector3d.Elerp(OpenTK.Mathematics.Vector3d, OpenTK.Mathematics.Vector3d, Double) + name.vb: Elerp(Vector3d, Vector3d, Double) +- uid: OpenTK.Mathematics.Vector3d.Elerp(OpenTK.Mathematics.Vector3d@,OpenTK.Mathematics.Vector3d@,System.Double,OpenTK.Mathematics.Vector3d@) + commentId: M:OpenTK.Mathematics.Vector3d.Elerp(OpenTK.Mathematics.Vector3d@,OpenTK.Mathematics.Vector3d@,System.Double,OpenTK.Mathematics.Vector3d@) + id: Elerp(OpenTK.Mathematics.Vector3d@,OpenTK.Mathematics.Vector3d@,System.Double,OpenTK.Mathematics.Vector3d@) + parent: OpenTK.Mathematics.Vector3d + langs: + - csharp + - vb + name: Elerp(in Vector3d, in Vector3d, double, out Vector3d) + nameWithType: Vector3d.Elerp(in Vector3d, in Vector3d, double, out Vector3d) + fullName: OpenTK.Mathematics.Vector3d.Elerp(in OpenTK.Mathematics.Vector3d, in OpenTK.Mathematics.Vector3d, double, out OpenTK.Mathematics.Vector3d) + type: Method + source: + id: Elerp + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3d.cs + startLine: 877 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: >- + Returns a new vector that is the exponential interpolation of the two vectors. + + Equivalent to a * pow(b/a, t). + example: [] + syntax: + content: public static void Elerp(in Vector3d a, in Vector3d b, double t, out Vector3d result) + parameters: + - id: a + type: OpenTK.Mathematics.Vector3d + description: The starting value. Must be non-negative. + - id: b + type: OpenTK.Mathematics.Vector3d + description: The end value. Must be non-negative. + - id: t + type: System.Double + description: The blend factor. + - id: result + type: OpenTK.Mathematics.Vector3d + description: The exponential interpolation between a and b. + content.vb: Public Shared Sub Elerp(a As Vector3d, b As Vector3d, t As Double, result As Vector3d) + overload: OpenTK.Mathematics.Vector3d.Elerp* + seealso: + - linkId: OpenTK.Mathematics.MathHelper.Elerp(System.Double,System.Double,System.Double) + commentId: M:OpenTK.Mathematics.MathHelper.Elerp(System.Double,System.Double,System.Double) + nameWithType.vb: Vector3d.Elerp(Vector3d, Vector3d, Double, Vector3d) + fullName.vb: OpenTK.Mathematics.Vector3d.Elerp(OpenTK.Mathematics.Vector3d, OpenTK.Mathematics.Vector3d, Double, OpenTK.Mathematics.Vector3d) + name.vb: Elerp(Vector3d, Vector3d, Double, Vector3d) - uid: OpenTK.Mathematics.Vector3d.BaryCentric(OpenTK.Mathematics.Vector3d,OpenTK.Mathematics.Vector3d,OpenTK.Mathematics.Vector3d,System.Double,System.Double) commentId: M:OpenTK.Mathematics.Vector3d.BaryCentric(OpenTK.Mathematics.Vector3d,OpenTK.Mathematics.Vector3d,OpenTK.Mathematics.Vector3d,System.Double,System.Double) id: BaryCentric(OpenTK.Mathematics.Vector3d,OpenTK.Mathematics.Vector3d,OpenTK.Mathematics.Vector3d,System.Double,System.Double) @@ -2549,13 +2621,9 @@ items: fullName: OpenTK.Mathematics.Vector3d.BaryCentric(OpenTK.Mathematics.Vector3d, OpenTK.Mathematics.Vector3d, OpenTK.Mathematics.Vector3d, double, double) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: BaryCentric - path: opentk/src/OpenTK.Mathematics/Vector/Vector3d.cs - startLine: 751 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3d.cs + startLine: 893 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2609,13 +2677,9 @@ items: fullName: OpenTK.Mathematics.Vector3d.BaryCentric(in OpenTK.Mathematics.Vector3d, in OpenTK.Mathematics.Vector3d, in OpenTK.Mathematics.Vector3d, double, double, out OpenTK.Mathematics.Vector3d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: BaryCentric - path: opentk/src/OpenTK.Mathematics/Vector/Vector3d.cs - startLine: 770 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3d.cs + startLine: 912 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2672,13 +2736,9 @@ items: fullName: OpenTK.Mathematics.Vector3d.TransformVector(OpenTK.Mathematics.Vector3d, OpenTK.Mathematics.Matrix4d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TransformVector - path: opentk/src/OpenTK.Mathematics/Vector/Vector3d.cs - startLine: 797 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3d.cs + startLine: 939 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2723,13 +2783,9 @@ items: fullName: OpenTK.Mathematics.Vector3d.TransformVector(in OpenTK.Mathematics.Vector3d, in OpenTK.Mathematics.Matrix4d, out OpenTK.Mathematics.Vector3d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TransformVector - path: opentk/src/OpenTK.Mathematics/Vector/Vector3d.cs - startLine: 811 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3d.cs + startLine: 953 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2767,13 +2823,9 @@ items: fullName: OpenTK.Mathematics.Vector3d.TransformNormal(OpenTK.Mathematics.Vector3d, OpenTK.Mathematics.Matrix4d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TransformNormal - path: opentk/src/OpenTK.Mathematics/Vector/Vector3d.cs - startLine: 836 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3d.cs + startLine: 978 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2819,13 +2871,9 @@ items: fullName: OpenTK.Mathematics.Vector3d.TransformNormal(in OpenTK.Mathematics.Vector3d, in OpenTK.Mathematics.Matrix4d, out OpenTK.Mathematics.Vector3d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TransformNormal - path: opentk/src/OpenTK.Mathematics/Vector/Vector3d.cs - startLine: 853 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3d.cs + startLine: 995 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2864,13 +2912,9 @@ items: fullName: OpenTK.Mathematics.Vector3d.TransformNormalInverse(OpenTK.Mathematics.Vector3d, OpenTK.Mathematics.Matrix4d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TransformNormalInverse - path: opentk/src/OpenTK.Mathematics/Vector/Vector3d.cs - startLine: 869 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3d.cs + startLine: 1011 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2916,13 +2960,9 @@ items: fullName: OpenTK.Mathematics.Vector3d.TransformNormalInverse(in OpenTK.Mathematics.Vector3d, in OpenTK.Mathematics.Matrix4d, out OpenTK.Mathematics.Vector3d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TransformNormalInverse - path: opentk/src/OpenTK.Mathematics/Vector/Vector3d.cs - startLine: 886 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3d.cs + startLine: 1028 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2961,13 +3001,9 @@ items: fullName: OpenTK.Mathematics.Vector3d.TransformPosition(OpenTK.Mathematics.Vector3d, OpenTK.Mathematics.Matrix4d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TransformPosition - path: opentk/src/OpenTK.Mathematics/Vector/Vector3d.cs - startLine: 907 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3d.cs + startLine: 1049 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -3009,13 +3045,9 @@ items: fullName: OpenTK.Mathematics.Vector3d.TransformPosition(in OpenTK.Mathematics.Vector3d, in OpenTK.Mathematics.Matrix4d, out OpenTK.Mathematics.Vector3d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TransformPosition - path: opentk/src/OpenTK.Mathematics/Vector/Vector3d.cs - startLine: 920 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3d.cs + startLine: 1062 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -3050,13 +3082,9 @@ items: fullName: OpenTK.Mathematics.Vector3d.TransformRow(OpenTK.Mathematics.Vector3d, OpenTK.Mathematics.Matrix3d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TransformRow - path: opentk/src/OpenTK.Mathematics/Vector/Vector3d.cs - startLine: 944 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3d.cs + startLine: 1086 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -3098,13 +3126,9 @@ items: fullName: OpenTK.Mathematics.Vector3d.TransformRow(in OpenTK.Mathematics.Vector3d, in OpenTK.Mathematics.Matrix3d, out OpenTK.Mathematics.Vector3d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TransformRow - path: opentk/src/OpenTK.Mathematics/Vector/Vector3d.cs - startLine: 957 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3d.cs + startLine: 1099 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -3139,13 +3163,9 @@ items: fullName: OpenTK.Mathematics.Vector3d.Transform(OpenTK.Mathematics.Vector3d, OpenTK.Mathematics.Quaterniond) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Transform - path: opentk/src/OpenTK.Mathematics/Vector/Vector3d.cs - startLine: 970 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3d.cs + startLine: 1112 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -3187,13 +3207,9 @@ items: fullName: OpenTK.Mathematics.Vector3d.Transform(in OpenTK.Mathematics.Vector3d, in OpenTK.Mathematics.Quaterniond, out OpenTK.Mathematics.Vector3d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Transform - path: opentk/src/OpenTK.Mathematics/Vector/Vector3d.cs - startLine: 983 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3d.cs + startLine: 1125 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -3228,13 +3244,9 @@ items: fullName: OpenTK.Mathematics.Vector3d.TransformColumn(OpenTK.Mathematics.Matrix3d, OpenTK.Mathematics.Vector3d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TransformColumn - path: opentk/src/OpenTK.Mathematics/Vector/Vector3d.cs - startLine: 1002 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3d.cs + startLine: 1144 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -3276,13 +3288,9 @@ items: fullName: OpenTK.Mathematics.Vector3d.TransformColumn(in OpenTK.Mathematics.Matrix3d, in OpenTK.Mathematics.Vector3d, out OpenTK.Mathematics.Vector3d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TransformColumn - path: opentk/src/OpenTK.Mathematics/Vector/Vector3d.cs - startLine: 1015 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3d.cs + startLine: 1157 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -3317,13 +3325,9 @@ items: fullName: OpenTK.Mathematics.Vector3d.TransformPerspective(OpenTK.Mathematics.Vector3d, OpenTK.Mathematics.Matrix4d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TransformPerspective - path: opentk/src/OpenTK.Mathematics/Vector/Vector3d.cs - startLine: 1028 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3d.cs + startLine: 1170 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -3365,13 +3369,9 @@ items: fullName: OpenTK.Mathematics.Vector3d.TransformPerspective(in OpenTK.Mathematics.Vector3d, in OpenTK.Mathematics.Matrix4d, out OpenTK.Mathematics.Vector3d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TransformPerspective - path: opentk/src/OpenTK.Mathematics/Vector/Vector3d.cs - startLine: 1041 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3d.cs + startLine: 1183 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -3406,13 +3406,9 @@ items: fullName: OpenTK.Mathematics.Vector3d.CalculateAngle(OpenTK.Mathematics.Vector3d, OpenTK.Mathematics.Vector3d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CalculateAngle - path: opentk/src/OpenTK.Mathematics/Vector/Vector3d.cs - startLine: 1057 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3d.cs + startLine: 1199 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -3455,13 +3451,9 @@ items: fullName: OpenTK.Mathematics.Vector3d.CalculateAngle(in OpenTK.Mathematics.Vector3d, in OpenTK.Mathematics.Vector3d, out double) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CalculateAngle - path: opentk/src/OpenTK.Mathematics/Vector/Vector3d.cs - startLine: 1071 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3d.cs + startLine: 1213 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -3497,13 +3489,9 @@ items: fullName: OpenTK.Mathematics.Vector3d.Xy type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Xy - path: opentk/src/OpenTK.Mathematics/Vector/Vector3d.cs - startLine: 1080 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3d.cs + startLine: 1222 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -3528,20 +3516,16 @@ items: fullName: OpenTK.Mathematics.Vector3d.Xz type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Xz - path: opentk/src/OpenTK.Mathematics/Vector/Vector3d.cs - startLine: 1094 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3d.cs + startLine: 1236 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector2d with the X and Z components of this instance. example: [] syntax: - content: public Vector2d Xz { get; set; } + content: public Vector2d Xz { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector2d @@ -3559,20 +3543,16 @@ items: fullName: OpenTK.Mathematics.Vector3d.Yx type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Yx - path: opentk/src/OpenTK.Mathematics/Vector/Vector3d.cs - startLine: 1108 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3d.cs + startLine: 1250 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector2d with the Y and X components of this instance. example: [] syntax: - content: public Vector2d Yx { get; set; } + content: public Vector2d Yx { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector2d @@ -3590,20 +3570,16 @@ items: fullName: OpenTK.Mathematics.Vector3d.Yz type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Yz - path: opentk/src/OpenTK.Mathematics/Vector/Vector3d.cs - startLine: 1122 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3d.cs + startLine: 1264 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector2d with the Y and Z components of this instance. example: [] syntax: - content: public Vector2d Yz { get; set; } + content: public Vector2d Yz { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector2d @@ -3621,20 +3597,16 @@ items: fullName: OpenTK.Mathematics.Vector3d.Zx type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Zx - path: opentk/src/OpenTK.Mathematics/Vector/Vector3d.cs - startLine: 1136 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3d.cs + startLine: 1278 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector2d with the Z and X components of this instance. example: [] syntax: - content: public Vector2d Zx { get; set; } + content: public Vector2d Zx { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector2d @@ -3652,20 +3624,16 @@ items: fullName: OpenTK.Mathematics.Vector3d.Zy type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Zy - path: opentk/src/OpenTK.Mathematics/Vector/Vector3d.cs - startLine: 1150 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3d.cs + startLine: 1292 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector2d with the Z and Y components of this instance. example: [] syntax: - content: public Vector2d Zy { get; set; } + content: public Vector2d Zy { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector2d @@ -3683,20 +3651,16 @@ items: fullName: OpenTK.Mathematics.Vector3d.Xzy type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Xzy - path: opentk/src/OpenTK.Mathematics/Vector/Vector3d.cs - startLine: 1164 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3d.cs + startLine: 1306 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector3d with the X, Z, and Y components of this instance. example: [] syntax: - content: public Vector3d Xzy { get; set; } + content: public Vector3d Xzy { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector3d @@ -3714,20 +3678,16 @@ items: fullName: OpenTK.Mathematics.Vector3d.Yxz type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Yxz - path: opentk/src/OpenTK.Mathematics/Vector/Vector3d.cs - startLine: 1179 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3d.cs + startLine: 1321 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector3d with the Y, X, and Z components of this instance. example: [] syntax: - content: public Vector3d Yxz { get; set; } + content: public Vector3d Yxz { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector3d @@ -3745,20 +3705,16 @@ items: fullName: OpenTK.Mathematics.Vector3d.Yzx type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Yzx - path: opentk/src/OpenTK.Mathematics/Vector/Vector3d.cs - startLine: 1194 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3d.cs + startLine: 1336 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector3d with the Y, Z, and X components of this instance. example: [] syntax: - content: public Vector3d Yzx { get; set; } + content: public Vector3d Yzx { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector3d @@ -3776,20 +3732,16 @@ items: fullName: OpenTK.Mathematics.Vector3d.Zxy type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Zxy - path: opentk/src/OpenTK.Mathematics/Vector/Vector3d.cs - startLine: 1209 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3d.cs + startLine: 1351 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector3d with the Z, X, and Y components of this instance. example: [] syntax: - content: public Vector3d Zxy { get; set; } + content: public Vector3d Zxy { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector3d @@ -3807,20 +3759,16 @@ items: fullName: OpenTK.Mathematics.Vector3d.Zyx type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Zyx - path: opentk/src/OpenTK.Mathematics/Vector/Vector3d.cs - startLine: 1224 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3d.cs + startLine: 1366 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector3d with the Z, Y, and X components of this instance. example: [] syntax: - content: public Vector3d Zyx { get; set; } + content: public Vector3d Zyx { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector3d @@ -3838,13 +3786,9 @@ items: fullName: OpenTK.Mathematics.Vector3d.operator +(OpenTK.Mathematics.Vector3d, OpenTK.Mathematics.Vector3d) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Addition - path: opentk/src/OpenTK.Mathematics/Vector/Vector3d.cs - startLine: 1242 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3d.cs + startLine: 1384 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -3889,13 +3833,9 @@ items: fullName: OpenTK.Mathematics.Vector3d.operator -(OpenTK.Mathematics.Vector3d, OpenTK.Mathematics.Vector3d) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Subtraction - path: opentk/src/OpenTK.Mathematics/Vector/Vector3d.cs - startLine: 1257 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3d.cs + startLine: 1399 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -3940,13 +3880,9 @@ items: fullName: OpenTK.Mathematics.Vector3d.operator -(OpenTK.Mathematics.Vector3d) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_UnaryNegation - path: opentk/src/OpenTK.Mathematics/Vector/Vector3d.cs - startLine: 1271 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3d.cs + startLine: 1413 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -3988,13 +3924,9 @@ items: fullName: OpenTK.Mathematics.Vector3d.operator *(OpenTK.Mathematics.Vector3d, double) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Multiply - path: opentk/src/OpenTK.Mathematics/Vector/Vector3d.cs - startLine: 1286 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3d.cs + startLine: 1428 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -4039,13 +3971,9 @@ items: fullName: OpenTK.Mathematics.Vector3d.operator *(double, OpenTK.Mathematics.Vector3d) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Multiply - path: opentk/src/OpenTK.Mathematics/Vector/Vector3d.cs - startLine: 1301 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3d.cs + startLine: 1443 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -4090,13 +4018,9 @@ items: fullName: OpenTK.Mathematics.Vector3d.operator *(OpenTK.Mathematics.Vector3d, OpenTK.Mathematics.Vector3d) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Multiply - path: opentk/src/OpenTK.Mathematics/Vector/Vector3d.cs - startLine: 1316 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3d.cs + startLine: 1458 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -4141,13 +4065,9 @@ items: fullName: OpenTK.Mathematics.Vector3d.operator *(OpenTK.Mathematics.Vector3d, OpenTK.Mathematics.Matrix3d) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Multiply - path: opentk/src/OpenTK.Mathematics/Vector/Vector3d.cs - startLine: 1331 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3d.cs + startLine: 1473 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -4192,13 +4112,9 @@ items: fullName: OpenTK.Mathematics.Vector3d.operator *(OpenTK.Mathematics.Matrix3d, OpenTK.Mathematics.Vector3d) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Multiply - path: opentk/src/OpenTK.Mathematics/Vector/Vector3d.cs - startLine: 1344 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3d.cs + startLine: 1486 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -4243,13 +4159,9 @@ items: fullName: OpenTK.Mathematics.Vector3d.operator *(OpenTK.Mathematics.Quaterniond, OpenTK.Mathematics.Vector3d) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Multiply - path: opentk/src/OpenTK.Mathematics/Vector/Vector3d.cs - startLine: 1357 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3d.cs + startLine: 1499 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -4294,13 +4206,9 @@ items: fullName: OpenTK.Mathematics.Vector3d.operator /(OpenTK.Mathematics.Vector3d, double) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Division - path: opentk/src/OpenTK.Mathematics/Vector/Vector3d.cs - startLine: 1370 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3d.cs + startLine: 1512 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -4345,13 +4253,9 @@ items: fullName: OpenTK.Mathematics.Vector3d.operator /(OpenTK.Mathematics.Vector3d, OpenTK.Mathematics.Vector3d) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Division - path: opentk/src/OpenTK.Mathematics/Vector/Vector3d.cs - startLine: 1385 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3d.cs + startLine: 1527 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -4396,13 +4300,9 @@ items: fullName: OpenTK.Mathematics.Vector3d.operator ==(OpenTK.Mathematics.Vector3d, OpenTK.Mathematics.Vector3d) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Equality - path: opentk/src/OpenTK.Mathematics/Vector/Vector3d.cs - startLine: 1400 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3d.cs + startLine: 1542 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -4437,13 +4337,9 @@ items: fullName: OpenTK.Mathematics.Vector3d.operator !=(OpenTK.Mathematics.Vector3d, OpenTK.Mathematics.Vector3d) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Inequality - path: opentk/src/OpenTK.Mathematics/Vector/Vector3d.cs - startLine: 1411 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3d.cs + startLine: 1553 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -4478,13 +4374,9 @@ items: fullName: OpenTK.Mathematics.Vector3d.explicit operator OpenTK.Mathematics.Vector3(OpenTK.Mathematics.Vector3d) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Explicit - path: opentk/src/OpenTK.Mathematics/Vector/Vector3d.cs - startLine: 1421 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3d.cs + startLine: 1563 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -4526,13 +4418,9 @@ items: fullName: OpenTK.Mathematics.Vector3d.explicit operator OpenTK.Mathematics.Vector3h(OpenTK.Mathematics.Vector3d) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Explicit - path: opentk/src/OpenTK.Mathematics/Vector/Vector3d.cs - startLine: 1432 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3d.cs + startLine: 1574 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -4574,13 +4462,9 @@ items: fullName: OpenTK.Mathematics.Vector3d.explicit operator OpenTK.Mathematics.Vector3i(OpenTK.Mathematics.Vector3d) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Explicit - path: opentk/src/OpenTK.Mathematics/Vector/Vector3d.cs - startLine: 1443 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3d.cs + startLine: 1585 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -4622,13 +4506,9 @@ items: fullName: OpenTK.Mathematics.Vector3d.implicit operator OpenTK.Mathematics.Vector3d((double X, double Y, double Z)) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Implicit - path: opentk/src/OpenTK.Mathematics/Vector/Vector3d.cs - startLine: 1455 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3d.cs + startLine: 1597 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -4673,13 +4553,9 @@ items: fullName: OpenTK.Mathematics.Vector3d.ToString() type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Mathematics/Vector/Vector3d.cs - startLine: 1462 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3d.cs + startLine: 1604 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -4705,13 +4581,9 @@ items: fullName: OpenTK.Mathematics.Vector3d.ToString(string) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Mathematics/Vector/Vector3d.cs - startLine: 1468 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3d.cs + startLine: 1610 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -4748,13 +4620,9 @@ items: fullName: OpenTK.Mathematics.Vector3d.ToString(System.IFormatProvider) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Mathematics/Vector/Vector3d.cs - startLine: 1474 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3d.cs + startLine: 1616 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -4788,20 +4656,16 @@ items: fullName: OpenTK.Mathematics.Vector3d.ToString(string, System.IFormatProvider) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Mathematics/Vector/Vector3d.cs - startLine: 1480 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3d.cs + startLine: 1622 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Formats the value of the current instance using the specified format. example: [] syntax: - content: public string ToString(string format, IFormatProvider formatProvider) + content: public readonly string ToString(string format, IFormatProvider formatProvider) parameters: - id: format type: System.String @@ -4841,13 +4705,9 @@ items: fullName: OpenTK.Mathematics.Vector3d.Equals(object) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Equals - path: opentk/src/OpenTK.Mathematics/Vector/Vector3d.cs - startLine: 1491 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3d.cs + startLine: 1633 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -4880,20 +4740,16 @@ items: fullName: OpenTK.Mathematics.Vector3d.Equals(OpenTK.Mathematics.Vector3d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Equals - path: opentk/src/OpenTK.Mathematics/Vector/Vector3d.cs - startLine: 1497 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3d.cs + startLine: 1639 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Indicates whether the current object is equal to another object of the same type. example: [] syntax: - content: public bool Equals(Vector3d other) + content: public readonly bool Equals(Vector3d other) parameters: - id: other type: OpenTK.Mathematics.Vector3d @@ -4917,20 +4773,16 @@ items: fullName: OpenTK.Mathematics.Vector3d.GetHashCode() type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetHashCode - path: opentk/src/OpenTK.Mathematics/Vector/Vector3d.cs - startLine: 1505 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3d.cs + startLine: 1648 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Returns the hash code for this instance. example: [] syntax: - content: public override int GetHashCode() + content: public override readonly int GetHashCode() return: type: System.Int32 description: A 32-bit signed integer that is the hash code for this instance. @@ -4949,13 +4801,9 @@ items: fullName: OpenTK.Mathematics.Vector3d.Deconstruct(out double, out double, out double) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Deconstruct - path: opentk/src/OpenTK.Mathematics/Vector/Vector3d.cs - startLine: 1516 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3d.cs + startLine: 1659 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -4965,7 +4813,7 @@ items: content: >- [Pure] - public void Deconstruct(out double x, out double y, out double z) + public readonly void Deconstruct(out double x, out double y, out double z) parameters: - id: x type: System.Double @@ -5291,6 +5139,12 @@ references: name: Length nameWithType: Vector3d.Length fullName: OpenTK.Mathematics.Vector3d.Length +- uid: OpenTK.Mathematics.Vector3d.ReciprocalLengthFast* + commentId: Overload:OpenTK.Mathematics.Vector3d.ReciprocalLengthFast + href: OpenTK.Mathematics.Vector3d.html#OpenTK_Mathematics_Vector3d_ReciprocalLengthFast + name: ReciprocalLengthFast + nameWithType: Vector3d.ReciprocalLengthFast + fullName: OpenTK.Mathematics.Vector3d.ReciprocalLengthFast - uid: OpenTK.Mathematics.Vector3d.Length commentId: P:OpenTK.Mathematics.Vector3d.Length href: OpenTK.Mathematics.Vector3d.html#OpenTK_Mathematics_Vector3d_Length @@ -5327,6 +5181,12 @@ references: name: NormalizeFast nameWithType: Vector3d.NormalizeFast fullName: OpenTK.Mathematics.Vector3d.NormalizeFast +- uid: OpenTK.Mathematics.Vector3d.Abs* + commentId: Overload:OpenTK.Mathematics.Vector3d.Abs + href: OpenTK.Mathematics.Vector3d.html#OpenTK_Mathematics_Vector3d_Abs + name: Abs + nameWithType: Vector3d.Abs + fullName: OpenTK.Mathematics.Vector3d.Abs - uid: OpenTK.Mathematics.Vector3d.Add* commentId: Overload:OpenTK.Mathematics.Vector3d.Add href: OpenTK.Mathematics.Vector3d.html#OpenTK_Mathematics_Vector3d_Add_OpenTK_Mathematics_Vector3d_OpenTK_Mathematics_Vector3d_ @@ -5411,6 +5271,72 @@ references: name: Lerp nameWithType: Vector3d.Lerp fullName: OpenTK.Mathematics.Vector3d.Lerp +- uid: OpenTK.Mathematics.Vector3d.Slerp* + commentId: Overload:OpenTK.Mathematics.Vector3d.Slerp + href: OpenTK.Mathematics.Vector3d.html#OpenTK_Mathematics_Vector3d_Slerp_OpenTK_Mathematics_Vector3d_OpenTK_Mathematics_Vector3d_System_Double_ + name: Slerp + nameWithType: Vector3d.Slerp + fullName: OpenTK.Mathematics.Vector3d.Slerp +- uid: OpenTK.Mathematics.MathHelper.Elerp(System.Double,System.Double,System.Double) + commentId: M:OpenTK.Mathematics.MathHelper.Elerp(System.Double,System.Double,System.Double) + isExternal: true + href: OpenTK.Mathematics.MathHelper.html#OpenTK_Mathematics_MathHelper_Elerp_System_Double_System_Double_System_Double_ + name: Elerp(double, double, double) + nameWithType: MathHelper.Elerp(double, double, double) + fullName: OpenTK.Mathematics.MathHelper.Elerp(double, double, double) + nameWithType.vb: MathHelper.Elerp(Double, Double, Double) + fullName.vb: OpenTK.Mathematics.MathHelper.Elerp(Double, Double, Double) + name.vb: Elerp(Double, Double, Double) + spec.csharp: + - uid: OpenTK.Mathematics.MathHelper.Elerp(System.Double,System.Double,System.Double) + name: Elerp + href: OpenTK.Mathematics.MathHelper.html#OpenTK_Mathematics_MathHelper_Elerp_System_Double_System_Double_System_Double_ + - name: ( + - uid: System.Double + name: double + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.double + - name: ',' + - name: " " + - uid: System.Double + name: double + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.double + - name: ',' + - name: " " + - uid: System.Double + name: double + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.double + - name: ) + spec.vb: + - uid: OpenTK.Mathematics.MathHelper.Elerp(System.Double,System.Double,System.Double) + name: Elerp + href: OpenTK.Mathematics.MathHelper.html#OpenTK_Mathematics_MathHelper_Elerp_System_Double_System_Double_System_Double_ + - name: ( + - uid: System.Double + name: Double + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.double + - name: ',' + - name: " " + - uid: System.Double + name: Double + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.double + - name: ',' + - name: " " + - uid: System.Double + name: Double + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.double + - name: ) +- uid: OpenTK.Mathematics.Vector3d.Elerp* + commentId: Overload:OpenTK.Mathematics.Vector3d.Elerp + href: OpenTK.Mathematics.Vector3d.html#OpenTK_Mathematics_Vector3d_Elerp_OpenTK_Mathematics_Vector3d_OpenTK_Mathematics_Vector3d_System_Double_ + name: Elerp + nameWithType: Vector3d.Elerp + fullName: OpenTK.Mathematics.Vector3d.Elerp - uid: OpenTK.Mathematics.Vector3d.BaryCentric* commentId: Overload:OpenTK.Mathematics.Vector3d.BaryCentric href: OpenTK.Mathematics.Vector3d.html#OpenTK_Mathematics_Vector3d_BaryCentric_OpenTK_Mathematics_Vector3d_OpenTK_Mathematics_Vector3d_OpenTK_Mathematics_Vector3d_System_Double_System_Double_ diff --git a/api/OpenTK.Mathematics.Vector3h.yml b/api/OpenTK.Mathematics.Vector3h.yml index 8db0e788..9835842a 100644 --- a/api/OpenTK.Mathematics.Vector3h.yml +++ b/api/OpenTK.Mathematics.Vector3h.yml @@ -52,13 +52,9 @@ items: fullName: OpenTK.Mathematics.Vector3h type: Struct source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Vector3h - path: opentk/src/OpenTK.Mathematics/Vector/Vector3h.cs - startLine: 36 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3h.cs + startLine: 35 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -97,13 +93,9 @@ items: fullName: OpenTK.Mathematics.Vector3h.X type: Field source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: X - path: opentk/src/OpenTK.Mathematics/Vector/Vector3h.cs - startLine: 43 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3h.cs + startLine: 42 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -126,13 +118,9 @@ items: fullName: OpenTK.Mathematics.Vector3h.Y type: Field source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Y - path: opentk/src/OpenTK.Mathematics/Vector/Vector3h.cs - startLine: 48 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3h.cs + startLine: 47 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -155,13 +143,9 @@ items: fullName: OpenTK.Mathematics.Vector3h.Z type: Field source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Z - path: opentk/src/OpenTK.Mathematics/Vector/Vector3h.cs - startLine: 53 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3h.cs + startLine: 52 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -184,13 +168,9 @@ items: fullName: OpenTK.Mathematics.Vector3h.Vector3h(System.Half) type: Constructor source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Mathematics/Vector/Vector3h.cs - startLine: 59 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3h.cs + startLine: 58 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -219,13 +199,9 @@ items: fullName: OpenTK.Mathematics.Vector3h.Vector3h(float) type: Constructor source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Mathematics/Vector/Vector3h.cs - startLine: 70 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3h.cs + startLine: 69 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -254,13 +230,9 @@ items: fullName: OpenTK.Mathematics.Vector3h.Vector3h(System.Half, System.Half, System.Half) type: Constructor source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Mathematics/Vector/Vector3h.cs - startLine: 83 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3h.cs + startLine: 82 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -295,13 +267,9 @@ items: fullName: OpenTK.Mathematics.Vector3h.Vector3h(float, float, float) type: Constructor source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Mathematics/Vector/Vector3h.cs - startLine: 97 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3h.cs + startLine: 96 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -339,13 +307,9 @@ items: fullName: OpenTK.Mathematics.Vector3h.Vector3h(OpenTK.Mathematics.Vector2h, float) type: Constructor source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Mathematics/Vector/Vector3h.cs - startLine: 109 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3h.cs + startLine: 108 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -377,13 +341,9 @@ items: fullName: OpenTK.Mathematics.Vector3h.Vector3h(OpenTK.Mathematics.Vector2h, System.Half) type: Constructor source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Mathematics/Vector/Vector3h.cs - startLine: 121 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3h.cs + startLine: 120 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -415,13 +375,9 @@ items: fullName: OpenTK.Mathematics.Vector3h.Xy type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Xy - path: opentk/src/OpenTK.Mathematics/Vector/Vector3h.cs - startLine: 131 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3h.cs + startLine: 130 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -446,20 +402,16 @@ items: fullName: OpenTK.Mathematics.Vector3h.Xz type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Xz - path: opentk/src/OpenTK.Mathematics/Vector/Vector3h.cs - startLine: 145 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3h.cs + startLine: 144 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector2h with the X and Z components of this instance. example: [] syntax: - content: public Vector2h Xz { get; set; } + content: public Vector2h Xz { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector2h @@ -477,20 +429,16 @@ items: fullName: OpenTK.Mathematics.Vector3h.Yx type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Yx - path: opentk/src/OpenTK.Mathematics/Vector/Vector3h.cs - startLine: 159 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3h.cs + startLine: 158 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector2h with the Y and X components of this instance. example: [] syntax: - content: public Vector2h Yx { get; set; } + content: public Vector2h Yx { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector2h @@ -508,20 +456,16 @@ items: fullName: OpenTK.Mathematics.Vector3h.Yz type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Yz - path: opentk/src/OpenTK.Mathematics/Vector/Vector3h.cs - startLine: 173 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3h.cs + startLine: 172 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector2h with the Y and Z components of this instance. example: [] syntax: - content: public Vector2h Yz { get; set; } + content: public Vector2h Yz { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector2h @@ -539,20 +483,16 @@ items: fullName: OpenTK.Mathematics.Vector3h.Zx type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Zx - path: opentk/src/OpenTK.Mathematics/Vector/Vector3h.cs - startLine: 187 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3h.cs + startLine: 186 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector2h with the Z and X components of this instance. example: [] syntax: - content: public Vector2h Zx { get; set; } + content: public Vector2h Zx { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector2h @@ -570,20 +510,16 @@ items: fullName: OpenTK.Mathematics.Vector3h.Zy type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Zy - path: opentk/src/OpenTK.Mathematics/Vector/Vector3h.cs - startLine: 201 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3h.cs + startLine: 200 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector2h with the Z and Y components of this instance. example: [] syntax: - content: public Vector2h Zy { get; set; } + content: public Vector2h Zy { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector2h @@ -601,20 +537,16 @@ items: fullName: OpenTK.Mathematics.Vector3h.Xzy type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Xzy - path: opentk/src/OpenTK.Mathematics/Vector/Vector3h.cs - startLine: 215 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3h.cs + startLine: 214 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector3h with the X, Z, and Y components of this instance. example: [] syntax: - content: public Vector3h Xzy { get; set; } + content: public Vector3h Xzy { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector3h @@ -632,20 +564,16 @@ items: fullName: OpenTK.Mathematics.Vector3h.Yxz type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Yxz - path: opentk/src/OpenTK.Mathematics/Vector/Vector3h.cs - startLine: 230 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3h.cs + startLine: 229 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector3h with the Y, X, and Z components of this instance. example: [] syntax: - content: public Vector3h Yxz { get; set; } + content: public Vector3h Yxz { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector3h @@ -663,20 +591,16 @@ items: fullName: OpenTK.Mathematics.Vector3h.Yzx type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Yzx - path: opentk/src/OpenTK.Mathematics/Vector/Vector3h.cs - startLine: 245 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3h.cs + startLine: 244 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector3h with the Y, Z, and X components of this instance. example: [] syntax: - content: public Vector3h Yzx { get; set; } + content: public Vector3h Yzx { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector3h @@ -694,20 +618,16 @@ items: fullName: OpenTK.Mathematics.Vector3h.Zxy type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Zxy - path: opentk/src/OpenTK.Mathematics/Vector/Vector3h.cs - startLine: 260 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3h.cs + startLine: 259 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector3h with the Z, X, and Y components of this instance. example: [] syntax: - content: public Vector3h Zxy { get; set; } + content: public Vector3h Zxy { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector3h @@ -725,20 +645,16 @@ items: fullName: OpenTK.Mathematics.Vector3h.Zyx type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Zyx - path: opentk/src/OpenTK.Mathematics/Vector/Vector3h.cs - startLine: 275 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3h.cs + startLine: 274 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector3h with the Z, Y, and X components of this instance. example: [] syntax: - content: public Vector3h Zyx { get; set; } + content: public Vector3h Zyx { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector3h @@ -756,20 +672,16 @@ items: fullName: OpenTK.Mathematics.Vector3h.ToVector3() type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToVector3 - path: opentk/src/OpenTK.Mathematics/Vector/Vector3h.cs - startLine: 291 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3h.cs + startLine: 290 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Returns this Half3 instance's contents as Vector3. example: [] syntax: - content: public Vector3 ToVector3() + content: public readonly Vector3 ToVector3() return: type: OpenTK.Mathematics.Vector3 description: The vector. @@ -787,20 +699,16 @@ items: fullName: OpenTK.Mathematics.Vector3h.ToVector3d() type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToVector3d - path: opentk/src/OpenTK.Mathematics/Vector/Vector3h.cs - startLine: 300 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3h.cs + startLine: 299 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Returns this Half3 instance's contents as Vector3d. example: [] syntax: - content: public Vector3d ToVector3d() + content: public readonly Vector3d ToVector3d() return: type: OpenTK.Mathematics.Vector3d description: The vector. @@ -818,13 +726,9 @@ items: fullName: OpenTK.Mathematics.Vector3h.implicit operator OpenTK.Mathematics.Vector3(OpenTK.Mathematics.Vector3h) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Implicit - path: opentk/src/OpenTK.Mathematics/Vector/Vector3h.cs - startLine: 310 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3h.cs + startLine: 309 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -866,13 +770,9 @@ items: fullName: OpenTK.Mathematics.Vector3h.implicit operator OpenTK.Mathematics.Vector3d(OpenTK.Mathematics.Vector3h) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Implicit - path: opentk/src/OpenTK.Mathematics/Vector/Vector3h.cs - startLine: 321 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3h.cs + startLine: 320 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -914,13 +814,9 @@ items: fullName: OpenTK.Mathematics.Vector3h.explicit operator OpenTK.Mathematics.Vector3i(OpenTK.Mathematics.Vector3h) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Explicit - path: opentk/src/OpenTK.Mathematics/Vector/Vector3h.cs - startLine: 332 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3h.cs + startLine: 331 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -962,13 +858,9 @@ items: fullName: OpenTK.Mathematics.Vector3h.implicit operator OpenTK.Mathematics.Vector3h((System.Half X, System.Half Y, System.Half Z)) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Implicit - path: opentk/src/OpenTK.Mathematics/Vector/Vector3h.cs - startLine: 344 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3h.cs + startLine: 343 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1013,13 +905,9 @@ items: fullName: OpenTK.Mathematics.Vector3h.operator ==(OpenTK.Mathematics.Vector3h, OpenTK.Mathematics.Vector3h) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Equality - path: opentk/src/OpenTK.Mathematics/Vector/Vector3h.cs - startLine: 356 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3h.cs + startLine: 355 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1054,13 +942,9 @@ items: fullName: OpenTK.Mathematics.Vector3h.operator !=(OpenTK.Mathematics.Vector3h, OpenTK.Mathematics.Vector3h) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Inequality - path: opentk/src/OpenTK.Mathematics/Vector/Vector3h.cs - startLine: 367 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3h.cs + startLine: 366 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1095,13 +979,9 @@ items: fullName: OpenTK.Mathematics.Vector3h.SizeInBytes type: Field source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SizeInBytes - path: opentk/src/OpenTK.Mathematics/Vector/Vector3h.cs - startLine: 375 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3h.cs + startLine: 374 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1124,13 +1004,9 @@ items: fullName: OpenTK.Mathematics.Vector3h.Vector3h(System.Runtime.Serialization.SerializationInfo, System.Runtime.Serialization.StreamingContext) type: Constructor source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Mathematics/Vector/Vector3h.cs - startLine: 382 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3h.cs + startLine: 381 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1172,20 +1048,16 @@ items: fullName: OpenTK.Mathematics.Vector3h.GetObjectData(System.Runtime.Serialization.SerializationInfo, System.Runtime.Serialization.StreamingContext) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetObjectData - path: opentk/src/OpenTK.Mathematics/Vector/Vector3h.cs - startLine: 391 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3h.cs + startLine: 390 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Populates a with the data needed to serialize the target object. example: [] syntax: - content: public void GetObjectData(SerializationInfo info, StreamingContext context) + content: public readonly void GetObjectData(SerializationInfo info, StreamingContext context) parameters: - id: info type: System.Runtime.Serialization.SerializationInfo @@ -1213,13 +1085,9 @@ items: fullName: OpenTK.Mathematics.Vector3h.ToString() type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Mathematics/Vector/Vector3h.cs - startLine: 399 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3h.cs + startLine: 398 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1245,13 +1113,9 @@ items: fullName: OpenTK.Mathematics.Vector3h.ToString(string) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Mathematics/Vector/Vector3h.cs - startLine: 405 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3h.cs + startLine: 404 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1288,13 +1152,9 @@ items: fullName: OpenTK.Mathematics.Vector3h.ToString(System.IFormatProvider) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Mathematics/Vector/Vector3h.cs - startLine: 411 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3h.cs + startLine: 410 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1328,13 +1188,9 @@ items: fullName: OpenTK.Mathematics.Vector3h.ToString(string, System.IFormatProvider) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Mathematics/Vector/Vector3h.cs - startLine: 417 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3h.cs + startLine: 416 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1381,13 +1237,9 @@ items: fullName: OpenTK.Mathematics.Vector3h.Equals(object) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Equals - path: opentk/src/OpenTK.Mathematics/Vector/Vector3h.cs - startLine: 428 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3h.cs + startLine: 427 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1420,13 +1272,9 @@ items: fullName: OpenTK.Mathematics.Vector3h.Equals(OpenTK.Mathematics.Vector3h) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Equals - path: opentk/src/OpenTK.Mathematics/Vector/Vector3h.cs - startLine: 434 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3h.cs + startLine: 433 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1457,20 +1305,16 @@ items: fullName: OpenTK.Mathematics.Vector3h.GetHashCode() type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetHashCode - path: opentk/src/OpenTK.Mathematics/Vector/Vector3h.cs - startLine: 442 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3h.cs + startLine: 441 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Returns the hash code for this instance. example: [] syntax: - content: public override int GetHashCode() + content: public override readonly int GetHashCode() return: type: System.Int32 description: A 32-bit signed integer that is the hash code for this instance. @@ -1489,13 +1333,9 @@ items: fullName: OpenTK.Mathematics.Vector3h.Deconstruct(out System.Half, out System.Half, out System.Half) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Deconstruct - path: opentk/src/OpenTK.Mathematics/Vector/Vector3h.cs - startLine: 453 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3h.cs + startLine: 452 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1505,7 +1345,7 @@ items: content: >- [Pure] - public void Deconstruct(out Half x, out Half y, out Half z) + public readonly void Deconstruct(out Half x, out Half y, out Half z) parameters: - id: x type: System.Half diff --git a/api/OpenTK.Mathematics.Vector3i.yml b/api/OpenTK.Mathematics.Vector3i.yml index e5d9d82b..64748e24 100644 --- a/api/OpenTK.Mathematics.Vector3i.yml +++ b/api/OpenTK.Mathematics.Vector3i.yml @@ -8,6 +8,9 @@ items: - OpenTK.Mathematics.Vector3i.#ctor(OpenTK.Mathematics.Vector2i,System.Int32) - OpenTK.Mathematics.Vector3i.#ctor(System.Int32) - OpenTK.Mathematics.Vector3i.#ctor(System.Int32,System.Int32,System.Int32) + - OpenTK.Mathematics.Vector3i.Abs + - OpenTK.Mathematics.Vector3i.Abs(OpenTK.Mathematics.Vector3i) + - OpenTK.Mathematics.Vector3i.Abs(OpenTK.Mathematics.Vector3i@,OpenTK.Mathematics.Vector3i@) - OpenTK.Mathematics.Vector3i.Add(OpenTK.Mathematics.Vector3i,OpenTK.Mathematics.Vector3i) - OpenTK.Mathematics.Vector3i.Add(OpenTK.Mathematics.Vector3i@,OpenTK.Mathematics.Vector3i@,OpenTK.Mathematics.Vector3i@) - OpenTK.Mathematics.Vector3i.Clamp(OpenTK.Mathematics.Vector3i,OpenTK.Mathematics.Vector3i,OpenTK.Mathematics.Vector3i) @@ -82,13 +85,9 @@ items: fullName: OpenTK.Mathematics.Vector3i type: Struct source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Vector3i - path: opentk/src/OpenTK.Mathematics/Vector/Vector3i.cs - startLine: 24 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3i.cs + startLine: 23 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -127,13 +126,9 @@ items: fullName: OpenTK.Mathematics.Vector3i.X type: Field source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: X - path: opentk/src/OpenTK.Mathematics/Vector/Vector3i.cs - startLine: 31 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3i.cs + startLine: 30 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -156,13 +151,9 @@ items: fullName: OpenTK.Mathematics.Vector3i.Y type: Field source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Y - path: opentk/src/OpenTK.Mathematics/Vector/Vector3i.cs - startLine: 36 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3i.cs + startLine: 35 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -185,13 +176,9 @@ items: fullName: OpenTK.Mathematics.Vector3i.Z type: Field source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Z - path: opentk/src/OpenTK.Mathematics/Vector/Vector3i.cs - startLine: 41 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3i.cs + startLine: 40 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -214,13 +201,9 @@ items: fullName: OpenTK.Mathematics.Vector3i.Vector3i(int) type: Constructor source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Mathematics/Vector/Vector3i.cs - startLine: 47 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3i.cs + startLine: 46 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -249,13 +232,9 @@ items: fullName: OpenTK.Mathematics.Vector3i.Vector3i(int, int, int) type: Constructor source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Mathematics/Vector/Vector3i.cs - startLine: 60 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3i.cs + startLine: 59 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -290,13 +269,9 @@ items: fullName: OpenTK.Mathematics.Vector3i.Vector3i(OpenTK.Mathematics.Vector2i, int) type: Constructor source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Mathematics/Vector/Vector3i.cs - startLine: 72 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3i.cs + startLine: 71 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -328,20 +303,16 @@ items: fullName: OpenTK.Mathematics.Vector3i.this[int] type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: this[] - path: opentk/src/OpenTK.Mathematics/Vector/Vector3i.cs - startLine: 84 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3i.cs + startLine: 83 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets the value at the index of the vector. example: [] syntax: - content: public int this[int index] { get; set; } + content: public int this[int index] { readonly get; set; } parameters: - id: index type: System.Int32 @@ -369,20 +340,16 @@ items: fullName: OpenTK.Mathematics.Vector3i.ManhattanLength type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ManhattanLength - path: opentk/src/OpenTK.Mathematics/Vector/Vector3i.cs - startLine: 130 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3i.cs + startLine: 129 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets the manhattan length of the vector. example: [] syntax: - content: public int ManhattanLength { get; } + content: public readonly int ManhattanLength { get; } parameters: [] return: type: System.Int32 @@ -400,20 +367,16 @@ items: fullName: OpenTK.Mathematics.Vector3i.EuclideanLengthSquared type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: EuclideanLengthSquared - path: opentk/src/OpenTK.Mathematics/Vector/Vector3i.cs - startLine: 135 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3i.cs + startLine: 134 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets the squared euclidean length of the vector. example: [] syntax: - content: public int EuclideanLengthSquared { get; } + content: public readonly int EuclideanLengthSquared { get; } parameters: [] return: type: System.Int32 @@ -431,25 +394,48 @@ items: fullName: OpenTK.Mathematics.Vector3i.EuclideanLength type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: EuclideanLength - path: opentk/src/OpenTK.Mathematics/Vector/Vector3i.cs - startLine: 140 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3i.cs + startLine: 139 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets the euclidean length of the vector. example: [] syntax: - content: public float EuclideanLength { get; } + content: public readonly float EuclideanLength { get; } parameters: [] return: type: System.Single content.vb: Public ReadOnly Property EuclideanLength As Single overload: OpenTK.Mathematics.Vector3i.EuclideanLength* +- uid: OpenTK.Mathematics.Vector3i.Abs + commentId: M:OpenTK.Mathematics.Vector3i.Abs + id: Abs + parent: OpenTK.Mathematics.Vector3i + langs: + - csharp + - vb + name: Abs() + nameWithType: Vector3i.Abs() + fullName: OpenTK.Mathematics.Vector3i.Abs() + type: Method + source: + id: Abs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3i.cs + startLine: 145 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: Returns a new vector that is the component-wise absolute value of the vector. + example: [] + syntax: + content: public readonly Vector3i Abs() + return: + type: OpenTK.Mathematics.Vector3i + description: The component-wise absolute value vector. + content.vb: Public Function Abs() As Vector3i + overload: OpenTK.Mathematics.Vector3i.Abs* - uid: OpenTK.Mathematics.Vector3i.UnitX commentId: F:OpenTK.Mathematics.Vector3i.UnitX id: UnitX @@ -462,13 +448,9 @@ items: fullName: OpenTK.Mathematics.Vector3i.UnitX type: Field source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: UnitX - path: opentk/src/OpenTK.Mathematics/Vector/Vector3i.cs - startLine: 145 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3i.cs + startLine: 157 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -491,13 +473,9 @@ items: fullName: OpenTK.Mathematics.Vector3i.UnitY type: Field source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: UnitY - path: opentk/src/OpenTK.Mathematics/Vector/Vector3i.cs - startLine: 150 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3i.cs + startLine: 162 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -520,13 +498,9 @@ items: fullName: OpenTK.Mathematics.Vector3i.UnitZ type: Field source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: UnitZ - path: opentk/src/OpenTK.Mathematics/Vector/Vector3i.cs - startLine: 155 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3i.cs + startLine: 167 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -549,13 +523,9 @@ items: fullName: OpenTK.Mathematics.Vector3i.Zero type: Field source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Zero - path: opentk/src/OpenTK.Mathematics/Vector/Vector3i.cs - startLine: 160 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3i.cs + startLine: 172 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -578,13 +548,9 @@ items: fullName: OpenTK.Mathematics.Vector3i.One type: Field source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: One - path: opentk/src/OpenTK.Mathematics/Vector/Vector3i.cs - startLine: 165 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3i.cs + startLine: 177 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -607,13 +573,9 @@ items: fullName: OpenTK.Mathematics.Vector3i.SizeInBytes type: Field source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SizeInBytes - path: opentk/src/OpenTK.Mathematics/Vector/Vector3i.cs - startLine: 170 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3i.cs + startLine: 182 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -636,13 +598,9 @@ items: fullName: OpenTK.Mathematics.Vector3i.Add(OpenTK.Mathematics.Vector3i, OpenTK.Mathematics.Vector3i) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Add - path: opentk/src/OpenTK.Mathematics/Vector/Vector3i.cs - startLine: 178 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3i.cs + startLine: 190 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -684,13 +642,9 @@ items: fullName: OpenTK.Mathematics.Vector3i.Add(in OpenTK.Mathematics.Vector3i, in OpenTK.Mathematics.Vector3i, out OpenTK.Mathematics.Vector3i) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Add - path: opentk/src/OpenTK.Mathematics/Vector/Vector3i.cs - startLine: 191 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3i.cs + startLine: 203 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -725,13 +679,9 @@ items: fullName: OpenTK.Mathematics.Vector3i.Subtract(OpenTK.Mathematics.Vector3i, OpenTK.Mathematics.Vector3i) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Subtract - path: opentk/src/OpenTK.Mathematics/Vector/Vector3i.cs - startLine: 204 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3i.cs + startLine: 216 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -773,13 +723,9 @@ items: fullName: OpenTK.Mathematics.Vector3i.Subtract(in OpenTK.Mathematics.Vector3i, in OpenTK.Mathematics.Vector3i, out OpenTK.Mathematics.Vector3i) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Subtract - path: opentk/src/OpenTK.Mathematics/Vector/Vector3i.cs - startLine: 217 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3i.cs + startLine: 229 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -814,13 +760,9 @@ items: fullName: OpenTK.Mathematics.Vector3i.Multiply(OpenTK.Mathematics.Vector3i, int) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Multiply - path: opentk/src/OpenTK.Mathematics/Vector/Vector3i.cs - startLine: 230 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3i.cs + startLine: 242 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -865,13 +807,9 @@ items: fullName: OpenTK.Mathematics.Vector3i.Multiply(in OpenTK.Mathematics.Vector3i, int, out OpenTK.Mathematics.Vector3i) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Multiply - path: opentk/src/OpenTK.Mathematics/Vector/Vector3i.cs - startLine: 243 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3i.cs + startLine: 255 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -906,13 +844,9 @@ items: fullName: OpenTK.Mathematics.Vector3i.Multiply(OpenTK.Mathematics.Vector3i, OpenTK.Mathematics.Vector3i) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Multiply - path: opentk/src/OpenTK.Mathematics/Vector/Vector3i.cs - startLine: 256 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3i.cs + startLine: 268 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -954,13 +888,9 @@ items: fullName: OpenTK.Mathematics.Vector3i.Multiply(in OpenTK.Mathematics.Vector3i, in OpenTK.Mathematics.Vector3i, out OpenTK.Mathematics.Vector3i) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Multiply - path: opentk/src/OpenTK.Mathematics/Vector/Vector3i.cs - startLine: 269 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3i.cs + startLine: 281 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -995,13 +925,9 @@ items: fullName: OpenTK.Mathematics.Vector3i.Divide(OpenTK.Mathematics.Vector3i, int) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Divide - path: opentk/src/OpenTK.Mathematics/Vector/Vector3i.cs - startLine: 282 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3i.cs + startLine: 294 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1046,13 +972,9 @@ items: fullName: OpenTK.Mathematics.Vector3i.Divide(in OpenTK.Mathematics.Vector3i, int, out OpenTK.Mathematics.Vector3i) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Divide - path: opentk/src/OpenTK.Mathematics/Vector/Vector3i.cs - startLine: 295 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3i.cs + startLine: 307 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1087,13 +1009,9 @@ items: fullName: OpenTK.Mathematics.Vector3i.Divide(OpenTK.Mathematics.Vector3i, OpenTK.Mathematics.Vector3i) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Divide - path: opentk/src/OpenTK.Mathematics/Vector/Vector3i.cs - startLine: 308 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3i.cs + startLine: 320 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1135,13 +1053,9 @@ items: fullName: OpenTK.Mathematics.Vector3i.Divide(in OpenTK.Mathematics.Vector3i, in OpenTK.Mathematics.Vector3i, out OpenTK.Mathematics.Vector3i) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Divide - path: opentk/src/OpenTK.Mathematics/Vector/Vector3i.cs - startLine: 321 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3i.cs + startLine: 333 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1176,13 +1090,9 @@ items: fullName: OpenTK.Mathematics.Vector3i.ComponentMin(OpenTK.Mathematics.Vector3i, OpenTK.Mathematics.Vector3i) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ComponentMin - path: opentk/src/OpenTK.Mathematics/Vector/Vector3i.cs - startLine: 334 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3i.cs + startLine: 346 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1224,13 +1134,9 @@ items: fullName: OpenTK.Mathematics.Vector3i.ComponentMin(in OpenTK.Mathematics.Vector3i, in OpenTK.Mathematics.Vector3i, out OpenTK.Mathematics.Vector3i) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ComponentMin - path: opentk/src/OpenTK.Mathematics/Vector/Vector3i.cs - startLine: 350 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3i.cs + startLine: 362 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1265,13 +1171,9 @@ items: fullName: OpenTK.Mathematics.Vector3i.ComponentMax(OpenTK.Mathematics.Vector3i, OpenTK.Mathematics.Vector3i) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ComponentMax - path: opentk/src/OpenTK.Mathematics/Vector/Vector3i.cs - startLine: 363 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3i.cs + startLine: 375 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1313,13 +1215,9 @@ items: fullName: OpenTK.Mathematics.Vector3i.ComponentMax(in OpenTK.Mathematics.Vector3i, in OpenTK.Mathematics.Vector3i, out OpenTK.Mathematics.Vector3i) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ComponentMax - path: opentk/src/OpenTK.Mathematics/Vector/Vector3i.cs - startLine: 379 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3i.cs + startLine: 391 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1354,13 +1252,9 @@ items: fullName: OpenTK.Mathematics.Vector3i.Clamp(OpenTK.Mathematics.Vector3i, OpenTK.Mathematics.Vector3i, OpenTK.Mathematics.Vector3i) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Clamp - path: opentk/src/OpenTK.Mathematics/Vector/Vector3i.cs - startLine: 393 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3i.cs + startLine: 405 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1405,13 +1299,9 @@ items: fullName: OpenTK.Mathematics.Vector3i.Clamp(in OpenTK.Mathematics.Vector3i, in OpenTK.Mathematics.Vector3i, in OpenTK.Mathematics.Vector3i, out OpenTK.Mathematics.Vector3i) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Clamp - path: opentk/src/OpenTK.Mathematics/Vector/Vector3i.cs - startLine: 410 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3i.cs + startLine: 422 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1437,6 +1327,71 @@ items: nameWithType.vb: Vector3i.Clamp(Vector3i, Vector3i, Vector3i, Vector3i) fullName.vb: OpenTK.Mathematics.Vector3i.Clamp(OpenTK.Mathematics.Vector3i, OpenTK.Mathematics.Vector3i, OpenTK.Mathematics.Vector3i, OpenTK.Mathematics.Vector3i) name.vb: Clamp(Vector3i, Vector3i, Vector3i, Vector3i) +- uid: OpenTK.Mathematics.Vector3i.Abs(OpenTK.Mathematics.Vector3i) + commentId: M:OpenTK.Mathematics.Vector3i.Abs(OpenTK.Mathematics.Vector3i) + id: Abs(OpenTK.Mathematics.Vector3i) + parent: OpenTK.Mathematics.Vector3i + langs: + - csharp + - vb + name: Abs(Vector3i) + nameWithType: Vector3i.Abs(Vector3i) + fullName: OpenTK.Mathematics.Vector3i.Abs(OpenTK.Mathematics.Vector3i) + type: Method + source: + id: Abs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3i.cs + startLine: 434 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: Take the component-wise absolute value of a vector. + example: [] + syntax: + content: public static Vector3i Abs(Vector3i vec) + parameters: + - id: vec + type: OpenTK.Mathematics.Vector3i + description: The vector to apply component-wise absolute value to. + return: + type: OpenTK.Mathematics.Vector3i + description: The component-wise absolute value vector. + content.vb: Public Shared Function Abs(vec As Vector3i) As Vector3i + overload: OpenTK.Mathematics.Vector3i.Abs* +- uid: OpenTK.Mathematics.Vector3i.Abs(OpenTK.Mathematics.Vector3i@,OpenTK.Mathematics.Vector3i@) + commentId: M:OpenTK.Mathematics.Vector3i.Abs(OpenTK.Mathematics.Vector3i@,OpenTK.Mathematics.Vector3i@) + id: Abs(OpenTK.Mathematics.Vector3i@,OpenTK.Mathematics.Vector3i@) + parent: OpenTK.Mathematics.Vector3i + langs: + - csharp + - vb + name: Abs(in Vector3i, out Vector3i) + nameWithType: Vector3i.Abs(in Vector3i, out Vector3i) + fullName: OpenTK.Mathematics.Vector3i.Abs(in OpenTK.Mathematics.Vector3i, out OpenTK.Mathematics.Vector3i) + type: Method + source: + id: Abs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3i.cs + startLine: 447 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: Take the component-wise absolute value of a vector. + example: [] + syntax: + content: public static void Abs(in Vector3i vec, out Vector3i result) + parameters: + - id: vec + type: OpenTK.Mathematics.Vector3i + description: The vector to apply component-wise absolute value to. + - id: result + type: OpenTK.Mathematics.Vector3i + description: The component-wise absolute value vector. + content.vb: Public Shared Sub Abs(vec As Vector3i, result As Vector3i) + overload: OpenTK.Mathematics.Vector3i.Abs* + nameWithType.vb: Vector3i.Abs(Vector3i, Vector3i) + fullName.vb: OpenTK.Mathematics.Vector3i.Abs(OpenTK.Mathematics.Vector3i, OpenTK.Mathematics.Vector3i) + name.vb: Abs(Vector3i, Vector3i) - uid: OpenTK.Mathematics.Vector3i.Xy commentId: P:OpenTK.Mathematics.Vector3i.Xy id: Xy @@ -1449,13 +1404,9 @@ items: fullName: OpenTK.Mathematics.Vector3i.Xy type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Xy - path: opentk/src/OpenTK.Mathematics/Vector/Vector3i.cs - startLine: 420 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3i.cs + startLine: 457 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1480,20 +1431,16 @@ items: fullName: OpenTK.Mathematics.Vector3i.Xz type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Xz - path: opentk/src/OpenTK.Mathematics/Vector/Vector3i.cs - startLine: 434 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3i.cs + startLine: 471 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets a with the X and Z components of this instance. example: [] syntax: - content: public Vector2i Xz { get; set; } + content: public Vector2i Xz { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector2i @@ -1511,20 +1458,16 @@ items: fullName: OpenTK.Mathematics.Vector3i.Yx type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Yx - path: opentk/src/OpenTK.Mathematics/Vector/Vector3i.cs - startLine: 448 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3i.cs + startLine: 485 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets a with the Y and X components of this instance. example: [] syntax: - content: public Vector2i Yx { get; set; } + content: public Vector2i Yx { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector2i @@ -1542,20 +1485,16 @@ items: fullName: OpenTK.Mathematics.Vector3i.Yz type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Yz - path: opentk/src/OpenTK.Mathematics/Vector/Vector3i.cs - startLine: 462 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3i.cs + startLine: 499 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets a with the Y and Z components of this instance. example: [] syntax: - content: public Vector2i Yz { get; set; } + content: public Vector2i Yz { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector2i @@ -1573,20 +1512,16 @@ items: fullName: OpenTK.Mathematics.Vector3i.Zx type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Zx - path: opentk/src/OpenTK.Mathematics/Vector/Vector3i.cs - startLine: 476 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3i.cs + startLine: 513 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets a with the Z and X components of this instance. example: [] syntax: - content: public Vector2i Zx { get; set; } + content: public Vector2i Zx { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector2i @@ -1604,20 +1539,16 @@ items: fullName: OpenTK.Mathematics.Vector3i.Zy type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Zy - path: opentk/src/OpenTK.Mathematics/Vector/Vector3i.cs - startLine: 490 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3i.cs + startLine: 527 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets a with the Z and Y components of this instance. example: [] syntax: - content: public Vector2i Zy { get; set; } + content: public Vector2i Zy { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector2i @@ -1635,20 +1566,16 @@ items: fullName: OpenTK.Mathematics.Vector3i.Xzy type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Xzy - path: opentk/src/OpenTK.Mathematics/Vector/Vector3i.cs - startLine: 504 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3i.cs + startLine: 541 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets a with the X, Z, and Y components of this instance. example: [] syntax: - content: public Vector3i Xzy { get; set; } + content: public Vector3i Xzy { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector3i @@ -1666,20 +1593,16 @@ items: fullName: OpenTK.Mathematics.Vector3i.Yxz type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Yxz - path: opentk/src/OpenTK.Mathematics/Vector/Vector3i.cs - startLine: 519 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3i.cs + startLine: 556 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets a with the Y, X, and Z components of this instance. example: [] syntax: - content: public Vector3i Yxz { get; set; } + content: public Vector3i Yxz { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector3i @@ -1697,20 +1620,16 @@ items: fullName: OpenTK.Mathematics.Vector3i.Yzx type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Yzx - path: opentk/src/OpenTK.Mathematics/Vector/Vector3i.cs - startLine: 534 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3i.cs + startLine: 571 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets a with the Y, Z, and X components of this instance. example: [] syntax: - content: public Vector3i Yzx { get; set; } + content: public Vector3i Yzx { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector3i @@ -1728,20 +1647,16 @@ items: fullName: OpenTK.Mathematics.Vector3i.Zxy type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Zxy - path: opentk/src/OpenTK.Mathematics/Vector/Vector3i.cs - startLine: 549 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3i.cs + startLine: 586 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets a with the Z, X, and Y components of this instance. example: [] syntax: - content: public Vector3i Zxy { get; set; } + content: public Vector3i Zxy { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector3i @@ -1759,20 +1674,16 @@ items: fullName: OpenTK.Mathematics.Vector3i.Zyx type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Zyx - path: opentk/src/OpenTK.Mathematics/Vector/Vector3i.cs - startLine: 564 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3i.cs + startLine: 601 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets a with the Z, Y, and X components of this instance. example: [] syntax: - content: public Vector3i Zyx { get; set; } + content: public Vector3i Zyx { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector3i @@ -1790,20 +1701,16 @@ items: fullName: OpenTK.Mathematics.Vector3i.ToVector3() type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToVector3 - path: opentk/src/OpenTK.Mathematics/Vector/Vector3i.cs - startLine: 580 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3i.cs + startLine: 617 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets a object with the same component values as the instance. example: [] syntax: - content: public Vector3 ToVector3() + content: public readonly Vector3 ToVector3() return: type: OpenTK.Mathematics.Vector3 description: The resulting instance. @@ -1821,13 +1728,9 @@ items: fullName: OpenTK.Mathematics.Vector3i.ToVector3(in OpenTK.Mathematics.Vector3i, out OpenTK.Mathematics.Vector3) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToVector3 - path: opentk/src/OpenTK.Mathematics/Vector/Vector3i.cs - startLine: 590 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3i.cs + startLine: 627 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1859,13 +1762,9 @@ items: fullName: OpenTK.Mathematics.Vector3i.operator +(OpenTK.Mathematics.Vector3i, OpenTK.Mathematics.Vector3i) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Addition - path: opentk/src/OpenTK.Mathematics/Vector/Vector3i.cs - startLine: 603 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3i.cs + startLine: 640 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1910,13 +1809,9 @@ items: fullName: OpenTK.Mathematics.Vector3i.operator -(OpenTK.Mathematics.Vector3i, OpenTK.Mathematics.Vector3i) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Subtraction - path: opentk/src/OpenTK.Mathematics/Vector/Vector3i.cs - startLine: 618 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3i.cs + startLine: 655 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1961,13 +1856,9 @@ items: fullName: OpenTK.Mathematics.Vector3i.operator -(OpenTK.Mathematics.Vector3i) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_UnaryNegation - path: opentk/src/OpenTK.Mathematics/Vector/Vector3i.cs - startLine: 632 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3i.cs + startLine: 669 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2009,13 +1900,9 @@ items: fullName: OpenTK.Mathematics.Vector3i.operator *(OpenTK.Mathematics.Vector3i, int) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Multiply - path: opentk/src/OpenTK.Mathematics/Vector/Vector3i.cs - startLine: 647 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3i.cs + startLine: 684 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2060,13 +1947,9 @@ items: fullName: OpenTK.Mathematics.Vector3i.operator *(int, OpenTK.Mathematics.Vector3i) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Multiply - path: opentk/src/OpenTK.Mathematics/Vector/Vector3i.cs - startLine: 662 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3i.cs + startLine: 699 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2111,13 +1994,9 @@ items: fullName: OpenTK.Mathematics.Vector3i.operator *(OpenTK.Mathematics.Vector3i, OpenTK.Mathematics.Vector3i) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Multiply - path: opentk/src/OpenTK.Mathematics/Vector/Vector3i.cs - startLine: 677 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3i.cs + startLine: 714 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2162,13 +2041,9 @@ items: fullName: OpenTK.Mathematics.Vector3i.operator /(OpenTK.Mathematics.Vector3i, int) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Division - path: opentk/src/OpenTK.Mathematics/Vector/Vector3i.cs - startLine: 692 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3i.cs + startLine: 729 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2213,13 +2088,9 @@ items: fullName: OpenTK.Mathematics.Vector3i.operator /(OpenTK.Mathematics.Vector3i, OpenTK.Mathematics.Vector3i) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Division - path: opentk/src/OpenTK.Mathematics/Vector/Vector3i.cs - startLine: 707 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3i.cs + startLine: 744 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2264,13 +2135,9 @@ items: fullName: OpenTK.Mathematics.Vector3i.operator ==(OpenTK.Mathematics.Vector3i, OpenTK.Mathematics.Vector3i) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Equality - path: opentk/src/OpenTK.Mathematics/Vector/Vector3i.cs - startLine: 722 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3i.cs + startLine: 759 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2305,13 +2172,9 @@ items: fullName: OpenTK.Mathematics.Vector3i.operator !=(OpenTK.Mathematics.Vector3i, OpenTK.Mathematics.Vector3i) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Inequality - path: opentk/src/OpenTK.Mathematics/Vector/Vector3i.cs - startLine: 733 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3i.cs + startLine: 770 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2346,13 +2209,9 @@ items: fullName: OpenTK.Mathematics.Vector3i.implicit operator OpenTK.Mathematics.Vector3(OpenTK.Mathematics.Vector3i) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Implicit - path: opentk/src/OpenTK.Mathematics/Vector/Vector3i.cs - startLine: 743 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3i.cs + startLine: 780 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2394,13 +2253,9 @@ items: fullName: OpenTK.Mathematics.Vector3i.implicit operator OpenTK.Mathematics.Vector3d(OpenTK.Mathematics.Vector3i) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Implicit - path: opentk/src/OpenTK.Mathematics/Vector/Vector3i.cs - startLine: 754 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3i.cs + startLine: 791 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2442,13 +2297,9 @@ items: fullName: OpenTK.Mathematics.Vector3i.explicit operator OpenTK.Mathematics.Vector3h(OpenTK.Mathematics.Vector3i) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Explicit - path: opentk/src/OpenTK.Mathematics/Vector/Vector3i.cs - startLine: 765 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3i.cs + startLine: 802 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2490,13 +2341,9 @@ items: fullName: OpenTK.Mathematics.Vector3i.implicit operator OpenTK.Mathematics.Vector3i((int X, int Y, int Z)) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Implicit - path: opentk/src/OpenTK.Mathematics/Vector/Vector3i.cs - startLine: 777 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3i.cs + startLine: 814 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2541,13 +2388,9 @@ items: fullName: OpenTK.Mathematics.Vector3i.ToString() type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Mathematics/Vector/Vector3i.cs - startLine: 784 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3i.cs + startLine: 821 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2573,13 +2416,9 @@ items: fullName: OpenTK.Mathematics.Vector3i.ToString(string) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Mathematics/Vector/Vector3i.cs - startLine: 790 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3i.cs + startLine: 827 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2616,13 +2455,9 @@ items: fullName: OpenTK.Mathematics.Vector3i.ToString(System.IFormatProvider) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Mathematics/Vector/Vector3i.cs - startLine: 796 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3i.cs + startLine: 833 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2656,20 +2491,16 @@ items: fullName: OpenTK.Mathematics.Vector3i.ToString(string, System.IFormatProvider) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Mathematics/Vector/Vector3i.cs - startLine: 802 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3i.cs + startLine: 839 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Formats the value of the current instance using the specified format. example: [] syntax: - content: public string ToString(string format, IFormatProvider formatProvider) + content: public readonly string ToString(string format, IFormatProvider formatProvider) parameters: - id: format type: System.String @@ -2709,13 +2540,9 @@ items: fullName: OpenTK.Mathematics.Vector3i.Equals(object) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Equals - path: opentk/src/OpenTK.Mathematics/Vector/Vector3i.cs - startLine: 813 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3i.cs + startLine: 850 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2748,20 +2575,16 @@ items: fullName: OpenTK.Mathematics.Vector3i.Equals(OpenTK.Mathematics.Vector3i) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Equals - path: opentk/src/OpenTK.Mathematics/Vector/Vector3i.cs - startLine: 819 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3i.cs + startLine: 856 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Indicates whether the current object is equal to another object of the same type. example: [] syntax: - content: public bool Equals(Vector3i other) + content: public readonly bool Equals(Vector3i other) parameters: - id: other type: OpenTK.Mathematics.Vector3i @@ -2785,20 +2608,16 @@ items: fullName: OpenTK.Mathematics.Vector3i.GetHashCode() type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetHashCode - path: opentk/src/OpenTK.Mathematics/Vector/Vector3i.cs - startLine: 827 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3i.cs + startLine: 864 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Returns the hash code for this instance. example: [] syntax: - content: public override int GetHashCode() + content: public override readonly int GetHashCode() return: type: System.Int32 description: A 32-bit signed integer that is the hash code for this instance. @@ -2817,13 +2636,9 @@ items: fullName: OpenTK.Mathematics.Vector3i.Deconstruct(out int, out int, out int) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector3i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Deconstruct - path: opentk/src/OpenTK.Mathematics/Vector/Vector3i.cs - startLine: 838 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector3i.cs + startLine: 875 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2833,7 +2648,7 @@ items: content: >- [Pure] - public void Deconstruct(out int x, out int y, out int z) + public readonly void Deconstruct(out int x, out int y, out int z) parameters: - id: x type: System.Int32 @@ -3159,6 +2974,12 @@ references: nameWithType.vb: Single fullName.vb: Single name.vb: Single +- uid: OpenTK.Mathematics.Vector3i.Abs* + commentId: Overload:OpenTK.Mathematics.Vector3i.Abs + href: OpenTK.Mathematics.Vector3i.html#OpenTK_Mathematics_Vector3i_Abs + name: Abs + nameWithType: Vector3i.Abs + fullName: OpenTK.Mathematics.Vector3i.Abs - uid: OpenTK.Mathematics.Vector3i.Add* commentId: Overload:OpenTK.Mathematics.Vector3i.Add href: OpenTK.Mathematics.Vector3i.html#OpenTK_Mathematics_Vector3i_Add_OpenTK_Mathematics_Vector3i_OpenTK_Mathematics_Vector3i_ diff --git a/api/OpenTK.Mathematics.Vector4.yml b/api/OpenTK.Mathematics.Vector4.yml index b22f0ecd..df005de6 100644 --- a/api/OpenTK.Mathematics.Vector4.yml +++ b/api/OpenTK.Mathematics.Vector4.yml @@ -9,6 +9,9 @@ items: - OpenTK.Mathematics.Vector4.#ctor(OpenTK.Mathematics.Vector3,System.Single) - OpenTK.Mathematics.Vector4.#ctor(System.Single) - OpenTK.Mathematics.Vector4.#ctor(System.Single,System.Single,System.Single,System.Single) + - OpenTK.Mathematics.Vector4.Abs + - OpenTK.Mathematics.Vector4.Abs(OpenTK.Mathematics.Vector4) + - OpenTK.Mathematics.Vector4.Abs(OpenTK.Mathematics.Vector4@,OpenTK.Mathematics.Vector4@) - OpenTK.Mathematics.Vector4.Add(OpenTK.Mathematics.Vector4,OpenTK.Mathematics.Vector4) - OpenTK.Mathematics.Vector4.Add(OpenTK.Mathematics.Vector4@,OpenTK.Mathematics.Vector4@,OpenTK.Mathematics.Vector4@) - OpenTK.Mathematics.Vector4.BaryCentric(OpenTK.Mathematics.Vector4,OpenTK.Mathematics.Vector4,OpenTK.Mathematics.Vector4,System.Single,System.Single) @@ -26,6 +29,8 @@ items: - OpenTK.Mathematics.Vector4.Divide(OpenTK.Mathematics.Vector4@,System.Single,OpenTK.Mathematics.Vector4@) - OpenTK.Mathematics.Vector4.Dot(OpenTK.Mathematics.Vector4,OpenTK.Mathematics.Vector4) - OpenTK.Mathematics.Vector4.Dot(OpenTK.Mathematics.Vector4@,OpenTK.Mathematics.Vector4@,System.Single@) + - OpenTK.Mathematics.Vector4.Elerp(OpenTK.Mathematics.Vector4,OpenTK.Mathematics.Vector4,System.Single) + - OpenTK.Mathematics.Vector4.Elerp(OpenTK.Mathematics.Vector4@,OpenTK.Mathematics.Vector4@,System.Single,OpenTK.Mathematics.Vector4@) - OpenTK.Mathematics.Vector4.Equals(OpenTK.Mathematics.Vector4) - OpenTK.Mathematics.Vector4.Equals(System.Object) - OpenTK.Mathematics.Vector4.GetHashCode @@ -55,7 +60,10 @@ items: - OpenTK.Mathematics.Vector4.Normalized - OpenTK.Mathematics.Vector4.One - OpenTK.Mathematics.Vector4.PositiveInfinity + - OpenTK.Mathematics.Vector4.ReciprocalLengthFast - OpenTK.Mathematics.Vector4.SizeInBytes + - OpenTK.Mathematics.Vector4.Slerp(OpenTK.Mathematics.Vector4,OpenTK.Mathematics.Vector4,System.Single) + - OpenTK.Mathematics.Vector4.Slerp(OpenTK.Mathematics.Vector4@,OpenTK.Mathematics.Vector4@,System.Single,OpenTK.Mathematics.Vector4@) - OpenTK.Mathematics.Vector4.Subtract(OpenTK.Mathematics.Vector4,OpenTK.Mathematics.Vector4) - OpenTK.Mathematics.Vector4.Subtract(OpenTK.Mathematics.Vector4@,OpenTK.Mathematics.Vector4@,OpenTK.Mathematics.Vector4@) - OpenTK.Mathematics.Vector4.ToString @@ -165,12 +173,8 @@ items: fullName: OpenTK.Mathematics.Vector4 type: Struct source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Vector4 - path: opentk/src/OpenTK.Mathematics/Vector/Vector4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs startLine: 37 assemblies: - OpenTK.Mathematics @@ -210,12 +214,8 @@ items: fullName: OpenTK.Mathematics.Vector4.X type: Field source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: X - path: opentk/src/OpenTK.Mathematics/Vector/Vector4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs startLine: 44 assemblies: - OpenTK.Mathematics @@ -239,12 +239,8 @@ items: fullName: OpenTK.Mathematics.Vector4.Y type: Field source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Y - path: opentk/src/OpenTK.Mathematics/Vector/Vector4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs startLine: 49 assemblies: - OpenTK.Mathematics @@ -268,12 +264,8 @@ items: fullName: OpenTK.Mathematics.Vector4.Z type: Field source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Z - path: opentk/src/OpenTK.Mathematics/Vector/Vector4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs startLine: 54 assemblies: - OpenTK.Mathematics @@ -297,12 +289,8 @@ items: fullName: OpenTK.Mathematics.Vector4.W type: Field source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: W - path: opentk/src/OpenTK.Mathematics/Vector/Vector4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs startLine: 59 assemblies: - OpenTK.Mathematics @@ -326,12 +314,8 @@ items: fullName: OpenTK.Mathematics.Vector4.UnitX type: Field source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: UnitX - path: opentk/src/OpenTK.Mathematics/Vector/Vector4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs startLine: 64 assemblies: - OpenTK.Mathematics @@ -355,12 +339,8 @@ items: fullName: OpenTK.Mathematics.Vector4.UnitY type: Field source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: UnitY - path: opentk/src/OpenTK.Mathematics/Vector/Vector4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs startLine: 69 assemblies: - OpenTK.Mathematics @@ -384,12 +364,8 @@ items: fullName: OpenTK.Mathematics.Vector4.UnitZ type: Field source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: UnitZ - path: opentk/src/OpenTK.Mathematics/Vector/Vector4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs startLine: 74 assemblies: - OpenTK.Mathematics @@ -413,12 +389,8 @@ items: fullName: OpenTK.Mathematics.Vector4.UnitW type: Field source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: UnitW - path: opentk/src/OpenTK.Mathematics/Vector/Vector4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs startLine: 79 assemblies: - OpenTK.Mathematics @@ -442,12 +414,8 @@ items: fullName: OpenTK.Mathematics.Vector4.Zero type: Field source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Zero - path: opentk/src/OpenTK.Mathematics/Vector/Vector4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs startLine: 84 assemblies: - OpenTK.Mathematics @@ -471,12 +439,8 @@ items: fullName: OpenTK.Mathematics.Vector4.One type: Field source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: One - path: opentk/src/OpenTK.Mathematics/Vector/Vector4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs startLine: 89 assemblies: - OpenTK.Mathematics @@ -500,12 +464,8 @@ items: fullName: OpenTK.Mathematics.Vector4.PositiveInfinity type: Field source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: PositiveInfinity - path: opentk/src/OpenTK.Mathematics/Vector/Vector4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs startLine: 94 assemblies: - OpenTK.Mathematics @@ -529,12 +489,8 @@ items: fullName: OpenTK.Mathematics.Vector4.NegativeInfinity type: Field source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: NegativeInfinity - path: opentk/src/OpenTK.Mathematics/Vector/Vector4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs startLine: 99 assemblies: - OpenTK.Mathematics @@ -558,12 +514,8 @@ items: fullName: OpenTK.Mathematics.Vector4.SizeInBytes type: Field source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SizeInBytes - path: opentk/src/OpenTK.Mathematics/Vector/Vector4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs startLine: 104 assemblies: - OpenTK.Mathematics @@ -587,12 +539,8 @@ items: fullName: OpenTK.Mathematics.Vector4.Vector4(float) type: Constructor source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Mathematics/Vector/Vector4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs startLine: 110 assemblies: - OpenTK.Mathematics @@ -622,12 +570,8 @@ items: fullName: OpenTK.Mathematics.Vector4.Vector4(float, float, float, float) type: Constructor source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Mathematics/Vector/Vector4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs startLine: 125 assemblies: - OpenTK.Mathematics @@ -666,12 +610,8 @@ items: fullName: OpenTK.Mathematics.Vector4.Vector4(OpenTK.Mathematics.Vector2, float, float) type: Constructor source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Mathematics/Vector/Vector4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs startLine: 139 assemblies: - OpenTK.Mathematics @@ -707,12 +647,8 @@ items: fullName: OpenTK.Mathematics.Vector4.Vector4(OpenTK.Mathematics.Vector3, float) type: Constructor source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Mathematics/Vector/Vector4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs startLine: 152 assemblies: - OpenTK.Mathematics @@ -745,12 +681,8 @@ items: fullName: OpenTK.Mathematics.Vector4.this[int] type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: this[] - path: opentk/src/OpenTK.Mathematics/Vector/Vector4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs startLine: 165 assemblies: - OpenTK.Mathematics @@ -758,7 +690,7 @@ items: summary: Gets or sets the value at the index of the Vector. example: [] syntax: - content: public float this[int index] { get; set; } + content: public float this[int index] { readonly get; set; } parameters: - id: index type: System.Int32 @@ -786,12 +718,8 @@ items: fullName: OpenTK.Mathematics.Vector4.Length type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Length - path: opentk/src/OpenTK.Mathematics/Vector/Vector4.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs startLine: 222 assemblies: - OpenTK.Mathematics @@ -799,7 +727,7 @@ items: summary: Gets the length (magnitude) of the vector. example: [] syntax: - content: public float Length { get; } + content: public readonly float Length { get; } parameters: [] return: type: System.Single @@ -808,6 +736,33 @@ items: seealso: - linkId: OpenTK.Mathematics.Vector4.LengthSquared commentId: P:OpenTK.Mathematics.Vector4.LengthSquared +- uid: OpenTK.Mathematics.Vector4.ReciprocalLengthFast + commentId: P:OpenTK.Mathematics.Vector4.ReciprocalLengthFast + id: ReciprocalLengthFast + parent: OpenTK.Mathematics.Vector4 + langs: + - csharp + - vb + name: ReciprocalLengthFast + nameWithType: Vector4.ReciprocalLengthFast + fullName: OpenTK.Mathematics.Vector4.ReciprocalLengthFast + type: Property + source: + id: ReciprocalLengthFast + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs + startLine: 227 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: Gets an approximation of 1 over the length (magnitude) of the vector. + example: [] + syntax: + content: public readonly float ReciprocalLengthFast { get; } + parameters: [] + return: + type: System.Single + content.vb: Public ReadOnly Property ReciprocalLengthFast As Single + overload: OpenTK.Mathematics.Vector4.ReciprocalLengthFast* - uid: OpenTK.Mathematics.Vector4.LengthFast commentId: P:OpenTK.Mathematics.Vector4.LengthFast id: LengthFast @@ -820,24 +775,17 @@ items: fullName: OpenTK.Mathematics.Vector4.LengthFast type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: LengthFast - path: opentk/src/OpenTK.Mathematics/Vector/Vector4.cs - startLine: 233 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs + startLine: 237 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets an approximation of the vector length (magnitude). - remarks: >- - This property uses an approximation of the square root function to calculate vector magnitude, with - - an upper error bound of 0.001. + remarks: This property uses an approximation of the square root function to calculate vector magnitude. example: [] syntax: - content: public float LengthFast { get; } + content: public readonly float LengthFast { get; } parameters: [] return: type: System.Single @@ -858,13 +806,9 @@ items: fullName: OpenTK.Mathematics.Vector4.LengthSquared type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: LengthSquared - path: opentk/src/OpenTK.Mathematics/Vector/Vector4.cs - startLine: 244 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs + startLine: 248 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -875,7 +819,7 @@ items: for comparisons. example: [] syntax: - content: public float LengthSquared { get; } + content: public readonly float LengthSquared { get; } parameters: [] return: type: System.Single @@ -896,20 +840,16 @@ items: fullName: OpenTK.Mathematics.Vector4.Normalized() type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Normalized - path: opentk/src/OpenTK.Mathematics/Vector/Vector4.cs - startLine: 250 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs + startLine: 254 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Returns a copy of the Vector4 scaled to unit length. example: [] syntax: - content: public Vector4 Normalized() + content: public readonly Vector4 Normalized() return: type: OpenTK.Mathematics.Vector4 description: The normalized copy. @@ -927,13 +867,9 @@ items: fullName: OpenTK.Mathematics.Vector4.Normalize() type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Normalize - path: opentk/src/OpenTK.Mathematics/Vector/Vector4.cs - startLine: 260 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs + startLine: 264 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -955,13 +891,9 @@ items: fullName: OpenTK.Mathematics.Vector4.NormalizeFast() type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: NormalizeFast - path: opentk/src/OpenTK.Mathematics/Vector/Vector4.cs - startLine: 272 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs + startLine: 276 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -971,6 +903,33 @@ items: content: public void NormalizeFast() content.vb: Public Sub NormalizeFast() overload: OpenTK.Mathematics.Vector4.NormalizeFast* +- uid: OpenTK.Mathematics.Vector4.Abs + commentId: M:OpenTK.Mathematics.Vector4.Abs + id: Abs + parent: OpenTK.Mathematics.Vector4 + langs: + - csharp + - vb + name: Abs() + nameWithType: Vector4.Abs() + fullName: OpenTK.Mathematics.Vector4.Abs() + type: Method + source: + id: Abs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs + startLine: 289 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: Returns a new vector that is the component-wise absolute value of the vector. + example: [] + syntax: + content: public readonly Vector4 Abs() + return: + type: OpenTK.Mathematics.Vector4 + description: The component-wise absolute value vector. + content.vb: Public Function Abs() As Vector4 + overload: OpenTK.Mathematics.Vector4.Abs* - uid: OpenTK.Mathematics.Vector4.Add(OpenTK.Mathematics.Vector4,OpenTK.Mathematics.Vector4) commentId: M:OpenTK.Mathematics.Vector4.Add(OpenTK.Mathematics.Vector4,OpenTK.Mathematics.Vector4) id: Add(OpenTK.Mathematics.Vector4,OpenTK.Mathematics.Vector4) @@ -983,13 +942,9 @@ items: fullName: OpenTK.Mathematics.Vector4.Add(OpenTK.Mathematics.Vector4, OpenTK.Mathematics.Vector4) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Add - path: opentk/src/OpenTK.Mathematics/Vector/Vector4.cs - startLine: 287 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs + startLine: 305 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1031,13 +986,9 @@ items: fullName: OpenTK.Mathematics.Vector4.Add(in OpenTK.Mathematics.Vector4, in OpenTK.Mathematics.Vector4, out OpenTK.Mathematics.Vector4) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Add - path: opentk/src/OpenTK.Mathematics/Vector/Vector4.cs - startLine: 300 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs + startLine: 318 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1072,13 +1023,9 @@ items: fullName: OpenTK.Mathematics.Vector4.Subtract(OpenTK.Mathematics.Vector4, OpenTK.Mathematics.Vector4) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Subtract - path: opentk/src/OpenTK.Mathematics/Vector/Vector4.cs - startLine: 314 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs + startLine: 332 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1120,13 +1067,9 @@ items: fullName: OpenTK.Mathematics.Vector4.Subtract(in OpenTK.Mathematics.Vector4, in OpenTK.Mathematics.Vector4, out OpenTK.Mathematics.Vector4) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Subtract - path: opentk/src/OpenTK.Mathematics/Vector/Vector4.cs - startLine: 327 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs + startLine: 345 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1161,13 +1104,9 @@ items: fullName: OpenTK.Mathematics.Vector4.Multiply(OpenTK.Mathematics.Vector4, float) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Multiply - path: opentk/src/OpenTK.Mathematics/Vector/Vector4.cs - startLine: 341 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs + startLine: 359 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1212,13 +1151,9 @@ items: fullName: OpenTK.Mathematics.Vector4.Multiply(in OpenTK.Mathematics.Vector4, float, out OpenTK.Mathematics.Vector4) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Multiply - path: opentk/src/OpenTK.Mathematics/Vector/Vector4.cs - startLine: 354 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs + startLine: 372 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1253,13 +1188,9 @@ items: fullName: OpenTK.Mathematics.Vector4.Multiply(OpenTK.Mathematics.Vector4, OpenTK.Mathematics.Vector4) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Multiply - path: opentk/src/OpenTK.Mathematics/Vector/Vector4.cs - startLine: 368 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs + startLine: 386 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1301,13 +1232,9 @@ items: fullName: OpenTK.Mathematics.Vector4.Multiply(in OpenTK.Mathematics.Vector4, in OpenTK.Mathematics.Vector4, out OpenTK.Mathematics.Vector4) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Multiply - path: opentk/src/OpenTK.Mathematics/Vector/Vector4.cs - startLine: 381 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs + startLine: 399 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1342,13 +1269,9 @@ items: fullName: OpenTK.Mathematics.Vector4.Divide(OpenTK.Mathematics.Vector4, float) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Divide - path: opentk/src/OpenTK.Mathematics/Vector/Vector4.cs - startLine: 395 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs + startLine: 413 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1393,13 +1316,9 @@ items: fullName: OpenTK.Mathematics.Vector4.Divide(in OpenTK.Mathematics.Vector4, float, out OpenTK.Mathematics.Vector4) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Divide - path: opentk/src/OpenTK.Mathematics/Vector/Vector4.cs - startLine: 408 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs + startLine: 426 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1434,13 +1353,9 @@ items: fullName: OpenTK.Mathematics.Vector4.Divide(OpenTK.Mathematics.Vector4, OpenTK.Mathematics.Vector4) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Divide - path: opentk/src/OpenTK.Mathematics/Vector/Vector4.cs - startLine: 422 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs + startLine: 440 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1482,13 +1397,9 @@ items: fullName: OpenTK.Mathematics.Vector4.Divide(in OpenTK.Mathematics.Vector4, in OpenTK.Mathematics.Vector4, out OpenTK.Mathematics.Vector4) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Divide - path: opentk/src/OpenTK.Mathematics/Vector/Vector4.cs - startLine: 435 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs + startLine: 453 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1523,13 +1434,9 @@ items: fullName: OpenTK.Mathematics.Vector4.ComponentMin(OpenTK.Mathematics.Vector4, OpenTK.Mathematics.Vector4) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ComponentMin - path: opentk/src/OpenTK.Mathematics/Vector/Vector4.cs - startLine: 449 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs + startLine: 467 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1571,13 +1478,9 @@ items: fullName: OpenTK.Mathematics.Vector4.ComponentMin(in OpenTK.Mathematics.Vector4, in OpenTK.Mathematics.Vector4, out OpenTK.Mathematics.Vector4) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ComponentMin - path: opentk/src/OpenTK.Mathematics/Vector/Vector4.cs - startLine: 465 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs + startLine: 483 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1612,13 +1515,9 @@ items: fullName: OpenTK.Mathematics.Vector4.ComponentMax(OpenTK.Mathematics.Vector4, OpenTK.Mathematics.Vector4) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ComponentMax - path: opentk/src/OpenTK.Mathematics/Vector/Vector4.cs - startLine: 479 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs + startLine: 497 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1660,13 +1559,9 @@ items: fullName: OpenTK.Mathematics.Vector4.ComponentMax(in OpenTK.Mathematics.Vector4, in OpenTK.Mathematics.Vector4, out OpenTK.Mathematics.Vector4) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ComponentMax - path: opentk/src/OpenTK.Mathematics/Vector/Vector4.cs - startLine: 495 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs + startLine: 513 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1701,13 +1596,9 @@ items: fullName: OpenTK.Mathematics.Vector4.MagnitudeMin(OpenTK.Mathematics.Vector4, OpenTK.Mathematics.Vector4) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MagnitudeMin - path: opentk/src/OpenTK.Mathematics/Vector/Vector4.cs - startLine: 510 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs + startLine: 528 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1752,13 +1643,9 @@ items: fullName: OpenTK.Mathematics.Vector4.MagnitudeMin(in OpenTK.Mathematics.Vector4, in OpenTK.Mathematics.Vector4, out OpenTK.Mathematics.Vector4) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MagnitudeMin - path: opentk/src/OpenTK.Mathematics/Vector/Vector4.cs - startLine: 523 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs + startLine: 541 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1796,13 +1683,9 @@ items: fullName: OpenTK.Mathematics.Vector4.MagnitudeMax(OpenTK.Mathematics.Vector4, OpenTK.Mathematics.Vector4) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MagnitudeMax - path: opentk/src/OpenTK.Mathematics/Vector/Vector4.cs - startLine: 535 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs + startLine: 553 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1847,13 +1730,9 @@ items: fullName: OpenTK.Mathematics.Vector4.MagnitudeMax(in OpenTK.Mathematics.Vector4, in OpenTK.Mathematics.Vector4, out OpenTK.Mathematics.Vector4) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MagnitudeMax - path: opentk/src/OpenTK.Mathematics/Vector/Vector4.cs - startLine: 548 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs + startLine: 566 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1891,13 +1770,9 @@ items: fullName: OpenTK.Mathematics.Vector4.Clamp(OpenTK.Mathematics.Vector4, OpenTK.Mathematics.Vector4, OpenTK.Mathematics.Vector4) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Clamp - path: opentk/src/OpenTK.Mathematics/Vector/Vector4.cs - startLine: 560 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs + startLine: 578 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1942,13 +1817,9 @@ items: fullName: OpenTK.Mathematics.Vector4.Clamp(in OpenTK.Mathematics.Vector4, in OpenTK.Mathematics.Vector4, in OpenTK.Mathematics.Vector4, out OpenTK.Mathematics.Vector4) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Clamp - path: opentk/src/OpenTK.Mathematics/Vector/Vector4.cs - startLine: 577 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs + startLine: 595 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1974,6 +1845,71 @@ items: nameWithType.vb: Vector4.Clamp(Vector4, Vector4, Vector4, Vector4) fullName.vb: OpenTK.Mathematics.Vector4.Clamp(OpenTK.Mathematics.Vector4, OpenTK.Mathematics.Vector4, OpenTK.Mathematics.Vector4, OpenTK.Mathematics.Vector4) name.vb: Clamp(Vector4, Vector4, Vector4, Vector4) +- uid: OpenTK.Mathematics.Vector4.Abs(OpenTK.Mathematics.Vector4) + commentId: M:OpenTK.Mathematics.Vector4.Abs(OpenTK.Mathematics.Vector4) + id: Abs(OpenTK.Mathematics.Vector4) + parent: OpenTK.Mathematics.Vector4 + langs: + - csharp + - vb + name: Abs(Vector4) + nameWithType: Vector4.Abs(Vector4) + fullName: OpenTK.Mathematics.Vector4.Abs(OpenTK.Mathematics.Vector4) + type: Method + source: + id: Abs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs + startLine: 608 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: Take the component-wise absolute value of a vector. + example: [] + syntax: + content: public static Vector4 Abs(Vector4 vec) + parameters: + - id: vec + type: OpenTK.Mathematics.Vector4 + description: The vector to apply component-wise absolute value to. + return: + type: OpenTK.Mathematics.Vector4 + description: The component-wise absolute value vector. + content.vb: Public Shared Function Abs(vec As Vector4) As Vector4 + overload: OpenTK.Mathematics.Vector4.Abs* +- uid: OpenTK.Mathematics.Vector4.Abs(OpenTK.Mathematics.Vector4@,OpenTK.Mathematics.Vector4@) + commentId: M:OpenTK.Mathematics.Vector4.Abs(OpenTK.Mathematics.Vector4@,OpenTK.Mathematics.Vector4@) + id: Abs(OpenTK.Mathematics.Vector4@,OpenTK.Mathematics.Vector4@) + parent: OpenTK.Mathematics.Vector4 + langs: + - csharp + - vb + name: Abs(in Vector4, out Vector4) + nameWithType: Vector4.Abs(in Vector4, out Vector4) + fullName: OpenTK.Mathematics.Vector4.Abs(in OpenTK.Mathematics.Vector4, out OpenTK.Mathematics.Vector4) + type: Method + source: + id: Abs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs + startLine: 622 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: Take the component-wise absolute value of a vector. + example: [] + syntax: + content: public static void Abs(in Vector4 vec, out Vector4 result) + parameters: + - id: vec + type: OpenTK.Mathematics.Vector4 + description: The vector to apply component-wise absolute value to. + - id: result + type: OpenTK.Mathematics.Vector4 + description: The component-wise absolute value vector. + content.vb: Public Shared Sub Abs(vec As Vector4, result As Vector4) + overload: OpenTK.Mathematics.Vector4.Abs* + nameWithType.vb: Vector4.Abs(Vector4, Vector4) + fullName.vb: OpenTK.Mathematics.Vector4.Abs(OpenTK.Mathematics.Vector4, OpenTK.Mathematics.Vector4) + name.vb: Abs(Vector4, Vector4) - uid: OpenTK.Mathematics.Vector4.Normalize(OpenTK.Mathematics.Vector4) commentId: M:OpenTK.Mathematics.Vector4.Normalize(OpenTK.Mathematics.Vector4) id: Normalize(OpenTK.Mathematics.Vector4) @@ -1986,13 +1922,9 @@ items: fullName: OpenTK.Mathematics.Vector4.Normalize(OpenTK.Mathematics.Vector4) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Normalize - path: opentk/src/OpenTK.Mathematics/Vector/Vector4.cs - startLine: 590 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs + startLine: 635 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2031,13 +1963,9 @@ items: fullName: OpenTK.Mathematics.Vector4.Normalize(in OpenTK.Mathematics.Vector4, out OpenTK.Mathematics.Vector4) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Normalize - path: opentk/src/OpenTK.Mathematics/Vector/Vector4.cs - startLine: 606 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs + startLine: 651 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2069,13 +1997,9 @@ items: fullName: OpenTK.Mathematics.Vector4.NormalizeFast(OpenTK.Mathematics.Vector4) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: NormalizeFast - path: opentk/src/OpenTK.Mathematics/Vector/Vector4.cs - startLine: 620 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs + startLine: 665 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2114,13 +2038,9 @@ items: fullName: OpenTK.Mathematics.Vector4.NormalizeFast(in OpenTK.Mathematics.Vector4, out OpenTK.Mathematics.Vector4) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: NormalizeFast - path: opentk/src/OpenTK.Mathematics/Vector/Vector4.cs - startLine: 636 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs + startLine: 681 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2152,13 +2072,9 @@ items: fullName: OpenTK.Mathematics.Vector4.Dot(OpenTK.Mathematics.Vector4, OpenTK.Mathematics.Vector4) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Dot - path: opentk/src/OpenTK.Mathematics/Vector/Vector4.cs - startLine: 651 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs + startLine: 696 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2200,13 +2116,9 @@ items: fullName: OpenTK.Mathematics.Vector4.Dot(in OpenTK.Mathematics.Vector4, in OpenTK.Mathematics.Vector4, out float) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Dot - path: opentk/src/OpenTK.Mathematics/Vector/Vector4.cs - startLine: 663 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs + startLine: 708 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2241,13 +2153,9 @@ items: fullName: OpenTK.Mathematics.Vector4.Lerp(OpenTK.Mathematics.Vector4, OpenTK.Mathematics.Vector4, float) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Lerp - path: opentk/src/OpenTK.Mathematics/Vector/Vector4.cs - startLine: 675 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs + startLine: 720 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2295,13 +2203,9 @@ items: fullName: OpenTK.Mathematics.Vector4.Lerp(in OpenTK.Mathematics.Vector4, in OpenTK.Mathematics.Vector4, float, out OpenTK.Mathematics.Vector4) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Lerp - path: opentk/src/OpenTK.Mathematics/Vector/Vector4.cs - startLine: 692 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs + startLine: 737 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2339,13 +2243,9 @@ items: fullName: OpenTK.Mathematics.Vector4.Lerp(OpenTK.Mathematics.Vector4, OpenTK.Mathematics.Vector4, OpenTK.Mathematics.Vector4) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Lerp - path: opentk/src/OpenTK.Mathematics/Vector/Vector4.cs - startLine: 707 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs + startLine: 752 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2390,13 +2290,9 @@ items: fullName: OpenTK.Mathematics.Vector4.Lerp(in OpenTK.Mathematics.Vector4, in OpenTK.Mathematics.Vector4, OpenTK.Mathematics.Vector4, out OpenTK.Mathematics.Vector4) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Lerp - path: opentk/src/OpenTK.Mathematics/Vector/Vector4.cs - startLine: 724 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs + startLine: 769 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2422,6 +2318,194 @@ items: nameWithType.vb: Vector4.Lerp(Vector4, Vector4, Vector4, Vector4) fullName.vb: OpenTK.Mathematics.Vector4.Lerp(OpenTK.Mathematics.Vector4, OpenTK.Mathematics.Vector4, OpenTK.Mathematics.Vector4, OpenTK.Mathematics.Vector4) name.vb: Lerp(Vector4, Vector4, Vector4, Vector4) +- uid: OpenTK.Mathematics.Vector4.Slerp(OpenTK.Mathematics.Vector4,OpenTK.Mathematics.Vector4,System.Single) + commentId: M:OpenTK.Mathematics.Vector4.Slerp(OpenTK.Mathematics.Vector4,OpenTK.Mathematics.Vector4,System.Single) + id: Slerp(OpenTK.Mathematics.Vector4,OpenTK.Mathematics.Vector4,System.Single) + parent: OpenTK.Mathematics.Vector4 + langs: + - csharp + - vb + name: Slerp(Vector4, Vector4, float) + nameWithType: Vector4.Slerp(Vector4, Vector4, float) + fullName: OpenTK.Mathematics.Vector4.Slerp(OpenTK.Mathematics.Vector4, OpenTK.Mathematics.Vector4, float) + type: Method + source: + id: Slerp + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs + startLine: 785 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: >- + Returns a new vector that is the spherical interpolation of the two given vectors. + + a and b need to be normalized for this function to work properly. + example: [] + syntax: + content: >- + [Pure] + + public static Vector4 Slerp(Vector4 a, Vector4 b, float t) + parameters: + - id: a + type: OpenTK.Mathematics.Vector4 + description: Unit vector start point. + - id: b + type: OpenTK.Mathematics.Vector4 + description: Unit vector end point. + - id: t + type: System.Single + description: The blend factor. + return: + type: OpenTK.Mathematics.Vector4 + description: a when t=0, b when t=1, and a spherical interpolation between the vectors otherwise. + content.vb: >- + + + Public Shared Function Slerp(a As Vector4, b As Vector4, t As Single) As Vector4 + overload: OpenTK.Mathematics.Vector4.Slerp* + attributes: + - type: System.Diagnostics.Contracts.PureAttribute + ctor: System.Diagnostics.Contracts.PureAttribute.#ctor + arguments: [] + nameWithType.vb: Vector4.Slerp(Vector4, Vector4, Single) + fullName.vb: OpenTK.Mathematics.Vector4.Slerp(OpenTK.Mathematics.Vector4, OpenTK.Mathematics.Vector4, Single) + name.vb: Slerp(Vector4, Vector4, Single) +- uid: OpenTK.Mathematics.Vector4.Slerp(OpenTK.Mathematics.Vector4@,OpenTK.Mathematics.Vector4@,System.Single,OpenTK.Mathematics.Vector4@) + commentId: M:OpenTK.Mathematics.Vector4.Slerp(OpenTK.Mathematics.Vector4@,OpenTK.Mathematics.Vector4@,System.Single,OpenTK.Mathematics.Vector4@) + id: Slerp(OpenTK.Mathematics.Vector4@,OpenTK.Mathematics.Vector4@,System.Single,OpenTK.Mathematics.Vector4@) + parent: OpenTK.Mathematics.Vector4 + langs: + - csharp + - vb + name: Slerp(in Vector4, in Vector4, float, out Vector4) + nameWithType: Vector4.Slerp(in Vector4, in Vector4, float, out Vector4) + fullName: OpenTK.Mathematics.Vector4.Slerp(in OpenTK.Mathematics.Vector4, in OpenTK.Mathematics.Vector4, float, out OpenTK.Mathematics.Vector4) + type: Method + source: + id: Slerp + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs + startLine: 815 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: >- + Returns a new vector that is the spherical interpolation of the two given vectors. + + a and b need to be normalized for this function to work properly. + example: [] + syntax: + content: public static void Slerp(in Vector4 a, in Vector4 b, float t, out Vector4 result) + parameters: + - id: a + type: OpenTK.Mathematics.Vector4 + description: Unit vector start point. + - id: b + type: OpenTK.Mathematics.Vector4 + description: Unit vector end point. + - id: t + type: System.Single + description: The blend factor. + - id: result + type: OpenTK.Mathematics.Vector4 + description: Is a when t=0, b when t=1, and a spherical interpolation between the vectors otherwise. + content.vb: Public Shared Sub Slerp(a As Vector4, b As Vector4, t As Single, result As Vector4) + overload: OpenTK.Mathematics.Vector4.Slerp* + nameWithType.vb: Vector4.Slerp(Vector4, Vector4, Single, Vector4) + fullName.vb: OpenTK.Mathematics.Vector4.Slerp(OpenTK.Mathematics.Vector4, OpenTK.Mathematics.Vector4, Single, OpenTK.Mathematics.Vector4) + name.vb: Slerp(Vector4, Vector4, Single, Vector4) +- uid: OpenTK.Mathematics.Vector4.Elerp(OpenTK.Mathematics.Vector4,OpenTK.Mathematics.Vector4,System.Single) + commentId: M:OpenTK.Mathematics.Vector4.Elerp(OpenTK.Mathematics.Vector4,OpenTK.Mathematics.Vector4,System.Single) + id: Elerp(OpenTK.Mathematics.Vector4,OpenTK.Mathematics.Vector4,System.Single) + parent: OpenTK.Mathematics.Vector4 + langs: + - csharp + - vb + name: Elerp(Vector4, Vector4, float) + nameWithType: Vector4.Elerp(Vector4, Vector4, float) + fullName: OpenTK.Mathematics.Vector4.Elerp(OpenTK.Mathematics.Vector4, OpenTK.Mathematics.Vector4, float) + type: Method + source: + id: Elerp + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs + startLine: 853 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: >- + Returns a new vector that is the exponential interpolation of the two vectors. + + Equivalent to a * pow(b/a, t). + example: [] + syntax: + content: public static Vector4 Elerp(Vector4 a, Vector4 b, float t) + parameters: + - id: a + type: OpenTK.Mathematics.Vector4 + description: The starting value. Must be non-negative. + - id: b + type: OpenTK.Mathematics.Vector4 + description: The end value. Must be non-negative. + - id: t + type: System.Single + description: The blend factor. + return: + type: OpenTK.Mathematics.Vector4 + description: The exponential interpolation between a and b. + content.vb: Public Shared Function Elerp(a As Vector4, b As Vector4, t As Single) As Vector4 + overload: OpenTK.Mathematics.Vector4.Elerp* + seealso: + - linkId: OpenTK.Mathematics.MathHelper.Elerp(System.Single,System.Single,System.Single) + commentId: M:OpenTK.Mathematics.MathHelper.Elerp(System.Single,System.Single,System.Single) + nameWithType.vb: Vector4.Elerp(Vector4, Vector4, Single) + fullName.vb: OpenTK.Mathematics.Vector4.Elerp(OpenTK.Mathematics.Vector4, OpenTK.Mathematics.Vector4, Single) + name.vb: Elerp(Vector4, Vector4, Single) +- uid: OpenTK.Mathematics.Vector4.Elerp(OpenTK.Mathematics.Vector4@,OpenTK.Mathematics.Vector4@,System.Single,OpenTK.Mathematics.Vector4@) + commentId: M:OpenTK.Mathematics.Vector4.Elerp(OpenTK.Mathematics.Vector4@,OpenTK.Mathematics.Vector4@,System.Single,OpenTK.Mathematics.Vector4@) + id: Elerp(OpenTK.Mathematics.Vector4@,OpenTK.Mathematics.Vector4@,System.Single,OpenTK.Mathematics.Vector4@) + parent: OpenTK.Mathematics.Vector4 + langs: + - csharp + - vb + name: Elerp(in Vector4, in Vector4, float, out Vector4) + nameWithType: Vector4.Elerp(in Vector4, in Vector4, float, out Vector4) + fullName: OpenTK.Mathematics.Vector4.Elerp(in OpenTK.Mathematics.Vector4, in OpenTK.Mathematics.Vector4, float, out OpenTK.Mathematics.Vector4) + type: Method + source: + id: Elerp + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs + startLine: 871 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: >- + Returns a new vector that is the exponential interpolation of the two vectors. + + Equivalent to a * pow(b/a, t). + example: [] + syntax: + content: public static void Elerp(in Vector4 a, in Vector4 b, float t, out Vector4 result) + parameters: + - id: a + type: OpenTK.Mathematics.Vector4 + description: The starting value. Must be non-negative. + - id: b + type: OpenTK.Mathematics.Vector4 + description: The end value. Must be non-negative. + - id: t + type: System.Single + description: The blend factor. + - id: result + type: OpenTK.Mathematics.Vector4 + description: The exponential interpolation between a and b. + content.vb: Public Shared Sub Elerp(a As Vector4, b As Vector4, t As Single, result As Vector4) + overload: OpenTK.Mathematics.Vector4.Elerp* + seealso: + - linkId: OpenTK.Mathematics.MathHelper.Elerp(System.Single,System.Single,System.Single) + commentId: M:OpenTK.Mathematics.MathHelper.Elerp(System.Single,System.Single,System.Single) + nameWithType.vb: Vector4.Elerp(Vector4, Vector4, Single, Vector4) + fullName.vb: OpenTK.Mathematics.Vector4.Elerp(OpenTK.Mathematics.Vector4, OpenTK.Mathematics.Vector4, Single, OpenTK.Mathematics.Vector4) + name.vb: Elerp(Vector4, Vector4, Single, Vector4) - uid: OpenTK.Mathematics.Vector4.BaryCentric(OpenTK.Mathematics.Vector4,OpenTK.Mathematics.Vector4,OpenTK.Mathematics.Vector4,System.Single,System.Single) commentId: M:OpenTK.Mathematics.Vector4.BaryCentric(OpenTK.Mathematics.Vector4,OpenTK.Mathematics.Vector4,OpenTK.Mathematics.Vector4,System.Single,System.Single) id: BaryCentric(OpenTK.Mathematics.Vector4,OpenTK.Mathematics.Vector4,OpenTK.Mathematics.Vector4,System.Single,System.Single) @@ -2434,13 +2518,9 @@ items: fullName: OpenTK.Mathematics.Vector4.BaryCentric(OpenTK.Mathematics.Vector4, OpenTK.Mathematics.Vector4, OpenTK.Mathematics.Vector4, float, float) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: BaryCentric - path: opentk/src/OpenTK.Mathematics/Vector/Vector4.cs - startLine: 741 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs + startLine: 888 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2494,13 +2574,9 @@ items: fullName: OpenTK.Mathematics.Vector4.BaryCentric(in OpenTK.Mathematics.Vector4, in OpenTK.Mathematics.Vector4, in OpenTK.Mathematics.Vector4, float, float, out OpenTK.Mathematics.Vector4) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: BaryCentric - path: opentk/src/OpenTK.Mathematics/Vector/Vector4.cs - startLine: 760 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs + startLine: 907 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2547,13 +2623,9 @@ items: fullName: OpenTK.Mathematics.Vector4.TransformRow(OpenTK.Mathematics.Vector4, OpenTK.Mathematics.Matrix4) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TransformRow - path: opentk/src/OpenTK.Mathematics/Vector/Vector4.cs - startLine: 785 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs + startLine: 932 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2595,13 +2667,9 @@ items: fullName: OpenTK.Mathematics.Vector4.TransformRow(in OpenTK.Mathematics.Vector4, in OpenTK.Mathematics.Matrix4, out OpenTK.Mathematics.Vector4) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TransformRow - path: opentk/src/OpenTK.Mathematics/Vector/Vector4.cs - startLine: 798 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs + startLine: 945 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2636,13 +2704,9 @@ items: fullName: OpenTK.Mathematics.Vector4.Transform(OpenTK.Mathematics.Vector4, OpenTK.Mathematics.Quaternion) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Transform - path: opentk/src/OpenTK.Mathematics/Vector/Vector4.cs - startLine: 813 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs + startLine: 960 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2684,13 +2748,9 @@ items: fullName: OpenTK.Mathematics.Vector4.Transform(in OpenTK.Mathematics.Vector4, in OpenTK.Mathematics.Quaternion, out OpenTK.Mathematics.Vector4) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Transform - path: opentk/src/OpenTK.Mathematics/Vector/Vector4.cs - startLine: 826 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs + startLine: 973 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2725,13 +2785,9 @@ items: fullName: OpenTK.Mathematics.Vector4.TransformColumn(OpenTK.Mathematics.Matrix4, OpenTK.Mathematics.Vector4) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TransformColumn - path: opentk/src/OpenTK.Mathematics/Vector/Vector4.cs - startLine: 845 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs + startLine: 992 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2773,13 +2829,9 @@ items: fullName: OpenTK.Mathematics.Vector4.TransformColumn(in OpenTK.Mathematics.Matrix4, in OpenTK.Mathematics.Vector4, out OpenTK.Mathematics.Vector4) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TransformColumn - path: opentk/src/OpenTK.Mathematics/Vector/Vector4.cs - startLine: 858 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs + startLine: 1005 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2814,13 +2866,9 @@ items: fullName: OpenTK.Mathematics.Vector4.Xy type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Xy - path: opentk/src/OpenTK.Mathematics/Vector/Vector4.cs - startLine: 870 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs + startLine: 1017 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2845,20 +2893,16 @@ items: fullName: OpenTK.Mathematics.Vector4.Xz type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Xz - path: opentk/src/OpenTK.Mathematics/Vector/Vector4.cs - startLine: 884 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs + startLine: 1031 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector2 with the X and Z components of this instance. example: [] syntax: - content: public Vector2 Xz { get; set; } + content: public Vector2 Xz { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector2 @@ -2876,20 +2920,16 @@ items: fullName: OpenTK.Mathematics.Vector4.Xw type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Xw - path: opentk/src/OpenTK.Mathematics/Vector/Vector4.cs - startLine: 898 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs + startLine: 1045 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector2 with the X and W components of this instance. example: [] syntax: - content: public Vector2 Xw { get; set; } + content: public Vector2 Xw { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector2 @@ -2907,20 +2947,16 @@ items: fullName: OpenTK.Mathematics.Vector4.Yx type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Yx - path: opentk/src/OpenTK.Mathematics/Vector/Vector4.cs - startLine: 912 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs + startLine: 1059 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector2 with the Y and X components of this instance. example: [] syntax: - content: public Vector2 Yx { get; set; } + content: public Vector2 Yx { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector2 @@ -2938,20 +2974,16 @@ items: fullName: OpenTK.Mathematics.Vector4.Yz type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Yz - path: opentk/src/OpenTK.Mathematics/Vector/Vector4.cs - startLine: 926 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs + startLine: 1073 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector2 with the Y and Z components of this instance. example: [] syntax: - content: public Vector2 Yz { get; set; } + content: public Vector2 Yz { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector2 @@ -2969,20 +3001,16 @@ items: fullName: OpenTK.Mathematics.Vector4.Yw type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Yw - path: opentk/src/OpenTK.Mathematics/Vector/Vector4.cs - startLine: 940 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs + startLine: 1087 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector2 with the Y and W components of this instance. example: [] syntax: - content: public Vector2 Yw { get; set; } + content: public Vector2 Yw { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector2 @@ -3000,20 +3028,16 @@ items: fullName: OpenTK.Mathematics.Vector4.Zx type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Zx - path: opentk/src/OpenTK.Mathematics/Vector/Vector4.cs - startLine: 954 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs + startLine: 1101 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector2 with the Z and X components of this instance. example: [] syntax: - content: public Vector2 Zx { get; set; } + content: public Vector2 Zx { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector2 @@ -3031,20 +3055,16 @@ items: fullName: OpenTK.Mathematics.Vector4.Zy type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Zy - path: opentk/src/OpenTK.Mathematics/Vector/Vector4.cs - startLine: 968 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs + startLine: 1115 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector2 with the Z and Y components of this instance. example: [] syntax: - content: public Vector2 Zy { get; set; } + content: public Vector2 Zy { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector2 @@ -3062,20 +3082,16 @@ items: fullName: OpenTK.Mathematics.Vector4.Zw type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Zw - path: opentk/src/OpenTK.Mathematics/Vector/Vector4.cs - startLine: 982 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs + startLine: 1129 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector2 with the Z and W components of this instance. example: [] syntax: - content: public Vector2 Zw { get; set; } + content: public Vector2 Zw { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector2 @@ -3093,20 +3109,16 @@ items: fullName: OpenTK.Mathematics.Vector4.Wx type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Wx - path: opentk/src/OpenTK.Mathematics/Vector/Vector4.cs - startLine: 996 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs + startLine: 1143 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector2 with the W and X components of this instance. example: [] syntax: - content: public Vector2 Wx { get; set; } + content: public Vector2 Wx { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector2 @@ -3124,20 +3136,16 @@ items: fullName: OpenTK.Mathematics.Vector4.Wy type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Wy - path: opentk/src/OpenTK.Mathematics/Vector/Vector4.cs - startLine: 1010 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs + startLine: 1157 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector2 with the W and Y components of this instance. example: [] syntax: - content: public Vector2 Wy { get; set; } + content: public Vector2 Wy { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector2 @@ -3155,20 +3163,16 @@ items: fullName: OpenTK.Mathematics.Vector4.Wz type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Wz - path: opentk/src/OpenTK.Mathematics/Vector/Vector4.cs - startLine: 1024 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs + startLine: 1171 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector2 with the W and Z components of this instance. example: [] syntax: - content: public Vector2 Wz { get; set; } + content: public Vector2 Wz { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector2 @@ -3186,13 +3190,9 @@ items: fullName: OpenTK.Mathematics.Vector4.Xyz type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Xyz - path: opentk/src/OpenTK.Mathematics/Vector/Vector4.cs - startLine: 1038 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs + startLine: 1185 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -3217,20 +3217,16 @@ items: fullName: OpenTK.Mathematics.Vector4.Xyw type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Xyw - path: opentk/src/OpenTK.Mathematics/Vector/Vector4.cs - startLine: 1053 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs + startLine: 1200 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector3 with the X, Y, and Z components of this instance. example: [] syntax: - content: public Vector3 Xyw { get; set; } + content: public Vector3 Xyw { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector3 @@ -3248,20 +3244,16 @@ items: fullName: OpenTK.Mathematics.Vector4.Xzy type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Xzy - path: opentk/src/OpenTK.Mathematics/Vector/Vector4.cs - startLine: 1068 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs + startLine: 1215 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector3 with the X, Z, and Y components of this instance. example: [] syntax: - content: public Vector3 Xzy { get; set; } + content: public Vector3 Xzy { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector3 @@ -3279,20 +3271,16 @@ items: fullName: OpenTK.Mathematics.Vector4.Xzw type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Xzw - path: opentk/src/OpenTK.Mathematics/Vector/Vector4.cs - startLine: 1083 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs + startLine: 1230 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector3 with the X, Z, and W components of this instance. example: [] syntax: - content: public Vector3 Xzw { get; set; } + content: public Vector3 Xzw { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector3 @@ -3310,20 +3298,16 @@ items: fullName: OpenTK.Mathematics.Vector4.Xwy type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Xwy - path: opentk/src/OpenTK.Mathematics/Vector/Vector4.cs - startLine: 1098 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs + startLine: 1245 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector3 with the X, W, and Y components of this instance. example: [] syntax: - content: public Vector3 Xwy { get; set; } + content: public Vector3 Xwy { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector3 @@ -3341,20 +3325,16 @@ items: fullName: OpenTK.Mathematics.Vector4.Xwz type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Xwz - path: opentk/src/OpenTK.Mathematics/Vector/Vector4.cs - startLine: 1113 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs + startLine: 1260 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector3 with the X, W, and Z components of this instance. example: [] syntax: - content: public Vector3 Xwz { get; set; } + content: public Vector3 Xwz { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector3 @@ -3372,20 +3352,16 @@ items: fullName: OpenTK.Mathematics.Vector4.Yxz type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Yxz - path: opentk/src/OpenTK.Mathematics/Vector/Vector4.cs - startLine: 1128 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs + startLine: 1275 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector3 with the Y, X, and Z components of this instance. example: [] syntax: - content: public Vector3 Yxz { get; set; } + content: public Vector3 Yxz { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector3 @@ -3403,20 +3379,16 @@ items: fullName: OpenTK.Mathematics.Vector4.Yxw type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Yxw - path: opentk/src/OpenTK.Mathematics/Vector/Vector4.cs - startLine: 1143 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs + startLine: 1290 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector3 with the Y, X, and W components of this instance. example: [] syntax: - content: public Vector3 Yxw { get; set; } + content: public Vector3 Yxw { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector3 @@ -3434,20 +3406,16 @@ items: fullName: OpenTK.Mathematics.Vector4.Yzx type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Yzx - path: opentk/src/OpenTK.Mathematics/Vector/Vector4.cs - startLine: 1158 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs + startLine: 1305 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector3 with the Y, Z, and X components of this instance. example: [] syntax: - content: public Vector3 Yzx { get; set; } + content: public Vector3 Yzx { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector3 @@ -3465,20 +3433,16 @@ items: fullName: OpenTK.Mathematics.Vector4.Yzw type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Yzw - path: opentk/src/OpenTK.Mathematics/Vector/Vector4.cs - startLine: 1173 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs + startLine: 1320 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector3 with the Y, Z, and W components of this instance. example: [] syntax: - content: public Vector3 Yzw { get; set; } + content: public Vector3 Yzw { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector3 @@ -3496,20 +3460,16 @@ items: fullName: OpenTK.Mathematics.Vector4.Ywx type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Ywx - path: opentk/src/OpenTK.Mathematics/Vector/Vector4.cs - startLine: 1188 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs + startLine: 1335 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector3 with the Y, W, and X components of this instance. example: [] syntax: - content: public Vector3 Ywx { get; set; } + content: public Vector3 Ywx { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector3 @@ -3527,20 +3487,16 @@ items: fullName: OpenTK.Mathematics.Vector4.Ywz type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Ywz - path: opentk/src/OpenTK.Mathematics/Vector/Vector4.cs - startLine: 1203 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs + startLine: 1350 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector3 with the Y, W, and Z components of this instance. example: [] syntax: - content: public Vector3 Ywz { get; set; } + content: public Vector3 Ywz { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector3 @@ -3558,20 +3514,16 @@ items: fullName: OpenTK.Mathematics.Vector4.Zxy type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Zxy - path: opentk/src/OpenTK.Mathematics/Vector/Vector4.cs - startLine: 1218 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs + startLine: 1365 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector3 with the Z, X, and Y components of this instance. example: [] syntax: - content: public Vector3 Zxy { get; set; } + content: public Vector3 Zxy { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector3 @@ -3589,20 +3541,16 @@ items: fullName: OpenTK.Mathematics.Vector4.Zxw type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Zxw - path: opentk/src/OpenTK.Mathematics/Vector/Vector4.cs - startLine: 1233 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs + startLine: 1380 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector3 with the Z, X, and W components of this instance. example: [] syntax: - content: public Vector3 Zxw { get; set; } + content: public Vector3 Zxw { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector3 @@ -3620,20 +3568,16 @@ items: fullName: OpenTK.Mathematics.Vector4.Zyx type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Zyx - path: opentk/src/OpenTK.Mathematics/Vector/Vector4.cs - startLine: 1248 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs + startLine: 1395 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector3 with the Z, Y, and X components of this instance. example: [] syntax: - content: public Vector3 Zyx { get; set; } + content: public Vector3 Zyx { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector3 @@ -3651,20 +3595,16 @@ items: fullName: OpenTK.Mathematics.Vector4.Zyw type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Zyw - path: opentk/src/OpenTK.Mathematics/Vector/Vector4.cs - startLine: 1263 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs + startLine: 1410 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector3 with the Z, Y, and W components of this instance. example: [] syntax: - content: public Vector3 Zyw { get; set; } + content: public Vector3 Zyw { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector3 @@ -3682,20 +3622,16 @@ items: fullName: OpenTK.Mathematics.Vector4.Zwx type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Zwx - path: opentk/src/OpenTK.Mathematics/Vector/Vector4.cs - startLine: 1278 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs + startLine: 1425 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector3 with the Z, W, and X components of this instance. example: [] syntax: - content: public Vector3 Zwx { get; set; } + content: public Vector3 Zwx { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector3 @@ -3713,20 +3649,16 @@ items: fullName: OpenTK.Mathematics.Vector4.Zwy type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Zwy - path: opentk/src/OpenTK.Mathematics/Vector/Vector4.cs - startLine: 1293 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs + startLine: 1440 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector3 with the Z, W, and Y components of this instance. example: [] syntax: - content: public Vector3 Zwy { get; set; } + content: public Vector3 Zwy { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector3 @@ -3744,20 +3676,16 @@ items: fullName: OpenTK.Mathematics.Vector4.Wxy type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Wxy - path: opentk/src/OpenTK.Mathematics/Vector/Vector4.cs - startLine: 1308 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs + startLine: 1455 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector3 with the W, X, and Y components of this instance. example: [] syntax: - content: public Vector3 Wxy { get; set; } + content: public Vector3 Wxy { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector3 @@ -3775,20 +3703,16 @@ items: fullName: OpenTK.Mathematics.Vector4.Wxz type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Wxz - path: opentk/src/OpenTK.Mathematics/Vector/Vector4.cs - startLine: 1323 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs + startLine: 1470 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector3 with the W, X, and Z components of this instance. example: [] syntax: - content: public Vector3 Wxz { get; set; } + content: public Vector3 Wxz { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector3 @@ -3806,20 +3730,16 @@ items: fullName: OpenTK.Mathematics.Vector4.Wyx type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Wyx - path: opentk/src/OpenTK.Mathematics/Vector/Vector4.cs - startLine: 1338 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs + startLine: 1485 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector3 with the W, Y, and X components of this instance. example: [] syntax: - content: public Vector3 Wyx { get; set; } + content: public Vector3 Wyx { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector3 @@ -3837,20 +3757,16 @@ items: fullName: OpenTK.Mathematics.Vector4.Wyz type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Wyz - path: opentk/src/OpenTK.Mathematics/Vector/Vector4.cs - startLine: 1353 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs + startLine: 1500 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector3 with the W, Y, and Z components of this instance. example: [] syntax: - content: public Vector3 Wyz { get; set; } + content: public Vector3 Wyz { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector3 @@ -3868,20 +3784,16 @@ items: fullName: OpenTK.Mathematics.Vector4.Wzx type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Wzx - path: opentk/src/OpenTK.Mathematics/Vector/Vector4.cs - startLine: 1368 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs + startLine: 1515 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector3 with the W, Z, and X components of this instance. example: [] syntax: - content: public Vector3 Wzx { get; set; } + content: public Vector3 Wzx { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector3 @@ -3899,20 +3811,16 @@ items: fullName: OpenTK.Mathematics.Vector4.Wzy type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Wzy - path: opentk/src/OpenTK.Mathematics/Vector/Vector4.cs - startLine: 1383 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs + startLine: 1530 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector3 with the W, Z, and Y components of this instance. example: [] syntax: - content: public Vector3 Wzy { get; set; } + content: public Vector3 Wzy { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector3 @@ -3930,20 +3838,16 @@ items: fullName: OpenTK.Mathematics.Vector4.Xywz type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Xywz - path: opentk/src/OpenTK.Mathematics/Vector/Vector4.cs - startLine: 1398 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs + startLine: 1545 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector4 with the X, Y, W, and Z components of this instance. example: [] syntax: - content: public Vector4 Xywz { get; set; } + content: public Vector4 Xywz { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector4 @@ -3961,20 +3865,16 @@ items: fullName: OpenTK.Mathematics.Vector4.Xzyw type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Xzyw - path: opentk/src/OpenTK.Mathematics/Vector/Vector4.cs - startLine: 1414 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs + startLine: 1561 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector4 with the X, Z, Y, and W components of this instance. example: [] syntax: - content: public Vector4 Xzyw { get; set; } + content: public Vector4 Xzyw { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector4 @@ -3992,20 +3892,16 @@ items: fullName: OpenTK.Mathematics.Vector4.Xzwy type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Xzwy - path: opentk/src/OpenTK.Mathematics/Vector/Vector4.cs - startLine: 1430 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs + startLine: 1577 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector4 with the X, Z, W, and Y components of this instance. example: [] syntax: - content: public Vector4 Xzwy { get; set; } + content: public Vector4 Xzwy { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector4 @@ -4023,20 +3919,16 @@ items: fullName: OpenTK.Mathematics.Vector4.Xwyz type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Xwyz - path: opentk/src/OpenTK.Mathematics/Vector/Vector4.cs - startLine: 1446 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs + startLine: 1593 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector4 with the X, W, Y, and Z components of this instance. example: [] syntax: - content: public Vector4 Xwyz { get; set; } + content: public Vector4 Xwyz { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector4 @@ -4054,20 +3946,16 @@ items: fullName: OpenTK.Mathematics.Vector4.Xwzy type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Xwzy - path: opentk/src/OpenTK.Mathematics/Vector/Vector4.cs - startLine: 1462 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs + startLine: 1609 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector4 with the X, W, Z, and Y components of this instance. example: [] syntax: - content: public Vector4 Xwzy { get; set; } + content: public Vector4 Xwzy { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector4 @@ -4085,20 +3973,16 @@ items: fullName: OpenTK.Mathematics.Vector4.Yxzw type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Yxzw - path: opentk/src/OpenTK.Mathematics/Vector/Vector4.cs - startLine: 1478 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs + startLine: 1625 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector4 with the Y, X, Z, and W components of this instance. example: [] syntax: - content: public Vector4 Yxzw { get; set; } + content: public Vector4 Yxzw { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector4 @@ -4116,20 +4000,16 @@ items: fullName: OpenTK.Mathematics.Vector4.Yxwz type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Yxwz - path: opentk/src/OpenTK.Mathematics/Vector/Vector4.cs - startLine: 1494 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs + startLine: 1641 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector4 with the Y, X, W, and Z components of this instance. example: [] syntax: - content: public Vector4 Yxwz { get; set; } + content: public Vector4 Yxwz { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector4 @@ -4147,20 +4027,16 @@ items: fullName: OpenTK.Mathematics.Vector4.Yyzw type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Yyzw - path: opentk/src/OpenTK.Mathematics/Vector/Vector4.cs - startLine: 1510 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs + startLine: 1657 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector4 with the Y, Y, Z, and W components of this instance. example: [] syntax: - content: public Vector4 Yyzw { get; set; } + content: public Vector4 Yyzw { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector4 @@ -4178,20 +4054,16 @@ items: fullName: OpenTK.Mathematics.Vector4.Yywz type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Yywz - path: opentk/src/OpenTK.Mathematics/Vector/Vector4.cs - startLine: 1526 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs + startLine: 1673 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector4 with the Y, Y, W, and Z components of this instance. example: [] syntax: - content: public Vector4 Yywz { get; set; } + content: public Vector4 Yywz { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector4 @@ -4209,20 +4081,16 @@ items: fullName: OpenTK.Mathematics.Vector4.Yzxw type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Yzxw - path: opentk/src/OpenTK.Mathematics/Vector/Vector4.cs - startLine: 1542 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs + startLine: 1689 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector4 with the Y, Z, X, and W components of this instance. example: [] syntax: - content: public Vector4 Yzxw { get; set; } + content: public Vector4 Yzxw { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector4 @@ -4240,20 +4108,16 @@ items: fullName: OpenTK.Mathematics.Vector4.Yzwx type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Yzwx - path: opentk/src/OpenTK.Mathematics/Vector/Vector4.cs - startLine: 1558 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs + startLine: 1705 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector4 with the Y, Z, W, and X components of this instance. example: [] syntax: - content: public Vector4 Yzwx { get; set; } + content: public Vector4 Yzwx { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector4 @@ -4271,20 +4135,16 @@ items: fullName: OpenTK.Mathematics.Vector4.Ywxz type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Ywxz - path: opentk/src/OpenTK.Mathematics/Vector/Vector4.cs - startLine: 1574 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs + startLine: 1721 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector4 with the Y, W, X, and Z components of this instance. example: [] syntax: - content: public Vector4 Ywxz { get; set; } + content: public Vector4 Ywxz { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector4 @@ -4302,20 +4162,16 @@ items: fullName: OpenTK.Mathematics.Vector4.Ywzx type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Ywzx - path: opentk/src/OpenTK.Mathematics/Vector/Vector4.cs - startLine: 1590 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs + startLine: 1737 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector4 with the Y, W, Z, and X components of this instance. example: [] syntax: - content: public Vector4 Ywzx { get; set; } + content: public Vector4 Ywzx { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector4 @@ -4333,20 +4189,16 @@ items: fullName: OpenTK.Mathematics.Vector4.Zxyw type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Zxyw - path: opentk/src/OpenTK.Mathematics/Vector/Vector4.cs - startLine: 1606 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs + startLine: 1753 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector4 with the Z, X, Y, and Z components of this instance. example: [] syntax: - content: public Vector4 Zxyw { get; set; } + content: public Vector4 Zxyw { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector4 @@ -4364,20 +4216,16 @@ items: fullName: OpenTK.Mathematics.Vector4.Zxwy type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Zxwy - path: opentk/src/OpenTK.Mathematics/Vector/Vector4.cs - startLine: 1622 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs + startLine: 1769 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector4 with the Z, X, W, and Y components of this instance. example: [] syntax: - content: public Vector4 Zxwy { get; set; } + content: public Vector4 Zxwy { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector4 @@ -4395,20 +4243,16 @@ items: fullName: OpenTK.Mathematics.Vector4.Zyxw type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Zyxw - path: opentk/src/OpenTK.Mathematics/Vector/Vector4.cs - startLine: 1638 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs + startLine: 1785 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector4 with the Z, Y, X, and W components of this instance. example: [] syntax: - content: public Vector4 Zyxw { get; set; } + content: public Vector4 Zyxw { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector4 @@ -4426,20 +4270,16 @@ items: fullName: OpenTK.Mathematics.Vector4.Zywx type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Zywx - path: opentk/src/OpenTK.Mathematics/Vector/Vector4.cs - startLine: 1654 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs + startLine: 1801 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector4 with the Z, Y, W, and X components of this instance. example: [] syntax: - content: public Vector4 Zywx { get; set; } + content: public Vector4 Zywx { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector4 @@ -4457,20 +4297,16 @@ items: fullName: OpenTK.Mathematics.Vector4.Zwxy type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Zwxy - path: opentk/src/OpenTK.Mathematics/Vector/Vector4.cs - startLine: 1670 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs + startLine: 1817 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector4 with the Z, W, X, and Y components of this instance. example: [] syntax: - content: public Vector4 Zwxy { get; set; } + content: public Vector4 Zwxy { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector4 @@ -4488,20 +4324,16 @@ items: fullName: OpenTK.Mathematics.Vector4.Zwyx type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Zwyx - path: opentk/src/OpenTK.Mathematics/Vector/Vector4.cs - startLine: 1686 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs + startLine: 1833 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector4 with the Z, W, Y, and X components of this instance. example: [] syntax: - content: public Vector4 Zwyx { get; set; } + content: public Vector4 Zwyx { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector4 @@ -4519,20 +4351,16 @@ items: fullName: OpenTK.Mathematics.Vector4.Zwzy type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Zwzy - path: opentk/src/OpenTK.Mathematics/Vector/Vector4.cs - startLine: 1702 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs + startLine: 1849 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector4 with the Z, W, Z, and Y components of this instance. example: [] syntax: - content: public Vector4 Zwzy { get; set; } + content: public Vector4 Zwzy { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector4 @@ -4550,20 +4378,16 @@ items: fullName: OpenTK.Mathematics.Vector4.Wxyz type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Wxyz - path: opentk/src/OpenTK.Mathematics/Vector/Vector4.cs - startLine: 1718 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs + startLine: 1865 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector4 with the W, X, Y, and Z components of this instance. example: [] syntax: - content: public Vector4 Wxyz { get; set; } + content: public Vector4 Wxyz { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector4 @@ -4581,20 +4405,16 @@ items: fullName: OpenTK.Mathematics.Vector4.Wxzy type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Wxzy - path: opentk/src/OpenTK.Mathematics/Vector/Vector4.cs - startLine: 1734 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs + startLine: 1881 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector4 with the W, X, Z, and Y components of this instance. example: [] syntax: - content: public Vector4 Wxzy { get; set; } + content: public Vector4 Wxzy { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector4 @@ -4612,20 +4432,16 @@ items: fullName: OpenTK.Mathematics.Vector4.Wyxz type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Wyxz - path: opentk/src/OpenTK.Mathematics/Vector/Vector4.cs - startLine: 1750 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs + startLine: 1897 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector4 with the W, Y, X, and Z components of this instance. example: [] syntax: - content: public Vector4 Wyxz { get; set; } + content: public Vector4 Wyxz { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector4 @@ -4643,20 +4459,16 @@ items: fullName: OpenTK.Mathematics.Vector4.Wyzx type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Wyzx - path: opentk/src/OpenTK.Mathematics/Vector/Vector4.cs - startLine: 1766 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs + startLine: 1913 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector4 with the W, Y, Z, and X components of this instance. example: [] syntax: - content: public Vector4 Wyzx { get; set; } + content: public Vector4 Wyzx { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector4 @@ -4674,20 +4486,16 @@ items: fullName: OpenTK.Mathematics.Vector4.Wzxy type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Wzxy - path: opentk/src/OpenTK.Mathematics/Vector/Vector4.cs - startLine: 1782 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs + startLine: 1929 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector4 with the W, Z, X, and Y components of this instance. example: [] syntax: - content: public Vector4 Wzxy { get; set; } + content: public Vector4 Wzxy { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector4 @@ -4705,20 +4513,16 @@ items: fullName: OpenTK.Mathematics.Vector4.Wzyx type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Wzyx - path: opentk/src/OpenTK.Mathematics/Vector/Vector4.cs - startLine: 1798 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs + startLine: 1945 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector4 with the W, Z, Y, and X components of this instance. example: [] syntax: - content: public Vector4 Wzyx { get; set; } + content: public Vector4 Wzyx { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector4 @@ -4736,20 +4540,16 @@ items: fullName: OpenTK.Mathematics.Vector4.Wzyw type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Wzyw - path: opentk/src/OpenTK.Mathematics/Vector/Vector4.cs - startLine: 1814 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs + startLine: 1961 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector4 with the W, Z, Y, and W components of this instance. example: [] syntax: - content: public Vector4 Wzyw { get; set; } + content: public Vector4 Wzyw { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector4 @@ -4767,13 +4567,9 @@ items: fullName: OpenTK.Mathematics.Vector4.operator +(OpenTK.Mathematics.Vector4, OpenTK.Mathematics.Vector4) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Addition - path: opentk/src/OpenTK.Mathematics/Vector/Vector4.cs - startLine: 1833 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs + startLine: 1980 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -4818,13 +4614,9 @@ items: fullName: OpenTK.Mathematics.Vector4.operator -(OpenTK.Mathematics.Vector4, OpenTK.Mathematics.Vector4) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Subtraction - path: opentk/src/OpenTK.Mathematics/Vector/Vector4.cs - startLine: 1849 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs + startLine: 1996 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -4869,13 +4661,9 @@ items: fullName: OpenTK.Mathematics.Vector4.operator -(OpenTK.Mathematics.Vector4) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_UnaryNegation - path: opentk/src/OpenTK.Mathematics/Vector/Vector4.cs - startLine: 1864 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs + startLine: 2011 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -4917,13 +4705,9 @@ items: fullName: OpenTK.Mathematics.Vector4.operator *(OpenTK.Mathematics.Vector4, float) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Multiply - path: opentk/src/OpenTK.Mathematics/Vector/Vector4.cs - startLine: 1880 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs + startLine: 2027 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -4968,13 +4752,9 @@ items: fullName: OpenTK.Mathematics.Vector4.operator *(float, OpenTK.Mathematics.Vector4) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Multiply - path: opentk/src/OpenTK.Mathematics/Vector/Vector4.cs - startLine: 1896 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs + startLine: 2043 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -5019,13 +4799,9 @@ items: fullName: OpenTK.Mathematics.Vector4.operator *(OpenTK.Mathematics.Vector4, OpenTK.Mathematics.Vector4) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Multiply - path: opentk/src/OpenTK.Mathematics/Vector/Vector4.cs - startLine: 1912 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs + startLine: 2059 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -5070,13 +4846,9 @@ items: fullName: OpenTK.Mathematics.Vector4.operator *(OpenTK.Mathematics.Vector4, OpenTK.Mathematics.Matrix4) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Multiply - path: opentk/src/OpenTK.Mathematics/Vector/Vector4.cs - startLine: 1928 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs + startLine: 2075 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -5121,13 +4893,9 @@ items: fullName: OpenTK.Mathematics.Vector4.operator *(OpenTK.Mathematics.Matrix4, OpenTK.Mathematics.Vector4) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Multiply - path: opentk/src/OpenTK.Mathematics/Vector/Vector4.cs - startLine: 1941 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs + startLine: 2088 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -5172,13 +4940,9 @@ items: fullName: OpenTK.Mathematics.Vector4.operator *(OpenTK.Mathematics.Quaternion, OpenTK.Mathematics.Vector4) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Multiply - path: opentk/src/OpenTK.Mathematics/Vector/Vector4.cs - startLine: 1954 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs + startLine: 2101 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -5223,13 +4987,9 @@ items: fullName: OpenTK.Mathematics.Vector4.operator /(OpenTK.Mathematics.Vector4, float) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Division - path: opentk/src/OpenTK.Mathematics/Vector/Vector4.cs - startLine: 1967 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs + startLine: 2114 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -5274,13 +5034,9 @@ items: fullName: OpenTK.Mathematics.Vector4.operator /(OpenTK.Mathematics.Vector4, OpenTK.Mathematics.Vector4) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Division - path: opentk/src/OpenTK.Mathematics/Vector/Vector4.cs - startLine: 1983 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs + startLine: 2130 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -5325,13 +5081,9 @@ items: fullName: OpenTK.Mathematics.Vector4.operator ==(OpenTK.Mathematics.Vector4, OpenTK.Mathematics.Vector4) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Equality - path: opentk/src/OpenTK.Mathematics/Vector/Vector4.cs - startLine: 1999 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs + startLine: 2146 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -5366,13 +5118,9 @@ items: fullName: OpenTK.Mathematics.Vector4.operator !=(OpenTK.Mathematics.Vector4, OpenTK.Mathematics.Vector4) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Inequality - path: opentk/src/OpenTK.Mathematics/Vector/Vector4.cs - startLine: 2010 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs + startLine: 2157 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -5407,13 +5155,9 @@ items: fullName: OpenTK.Mathematics.Vector4.implicit operator OpenTK.Mathematics.Vector4d(OpenTK.Mathematics.Vector4) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Implicit - path: opentk/src/OpenTK.Mathematics/Vector/Vector4.cs - startLine: 2020 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs + startLine: 2167 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -5455,13 +5199,9 @@ items: fullName: OpenTK.Mathematics.Vector4.explicit operator OpenTK.Mathematics.Vector4h(OpenTK.Mathematics.Vector4) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Explicit - path: opentk/src/OpenTK.Mathematics/Vector/Vector4.cs - startLine: 2031 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs + startLine: 2178 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -5503,13 +5243,9 @@ items: fullName: OpenTK.Mathematics.Vector4.explicit operator OpenTK.Mathematics.Vector4i(OpenTK.Mathematics.Vector4) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Explicit - path: opentk/src/OpenTK.Mathematics/Vector/Vector4.cs - startLine: 2042 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs + startLine: 2189 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -5551,13 +5287,9 @@ items: fullName: OpenTK.Mathematics.Vector4.implicit operator OpenTK.Mathematics.Vector4((float X, float Y, float Z, float W)) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Implicit - path: opentk/src/OpenTK.Mathematics/Vector/Vector4.cs - startLine: 2054 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs + startLine: 2201 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -5602,20 +5334,16 @@ items: fullName: OpenTK.Mathematics.Vector4.ToString() type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Mathematics/Vector/Vector4.cs - startLine: 2061 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs + startLine: 2208 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Returns the fully qualified type name of this instance. example: [] syntax: - content: public override string ToString() + content: public override readonly string ToString() return: type: System.String description: The fully qualified type name. @@ -5634,20 +5362,16 @@ items: fullName: OpenTK.Mathematics.Vector4.ToString(string) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Mathematics/Vector/Vector4.cs - startLine: 2067 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs + startLine: 2214 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Formats the value of the current instance using the specified format. example: [] syntax: - content: public string ToString(string format) + content: public readonly string ToString(string format) parameters: - id: format type: System.String @@ -5677,20 +5401,16 @@ items: fullName: OpenTK.Mathematics.Vector4.ToString(System.IFormatProvider) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Mathematics/Vector/Vector4.cs - startLine: 2073 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs + startLine: 2220 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Formats the value of the current instance using the specified format. example: [] syntax: - content: public string ToString(IFormatProvider formatProvider) + content: public readonly string ToString(IFormatProvider formatProvider) parameters: - id: formatProvider type: System.IFormatProvider @@ -5717,20 +5437,16 @@ items: fullName: OpenTK.Mathematics.Vector4.ToString(string, System.IFormatProvider) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Mathematics/Vector/Vector4.cs - startLine: 2079 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs + startLine: 2226 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Formats the value of the current instance using the specified format. example: [] syntax: - content: public string ToString(string format, IFormatProvider formatProvider) + content: public readonly string ToString(string format, IFormatProvider formatProvider) parameters: - id: format type: System.String @@ -5770,20 +5486,16 @@ items: fullName: OpenTK.Mathematics.Vector4.Equals(object) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Equals - path: opentk/src/OpenTK.Mathematics/Vector/Vector4.cs - startLine: 2091 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs + startLine: 2238 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Indicates whether this instance and a specified object are equal. example: [] syntax: - content: public override bool Equals(object obj) + content: public override readonly bool Equals(object obj) parameters: - id: obj type: System.Object @@ -5809,20 +5521,16 @@ items: fullName: OpenTK.Mathematics.Vector4.Equals(OpenTK.Mathematics.Vector4) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Equals - path: opentk/src/OpenTK.Mathematics/Vector/Vector4.cs - startLine: 2097 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs + startLine: 2244 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Indicates whether the current object is equal to another object of the same type. example: [] syntax: - content: public bool Equals(Vector4 other) + content: public readonly bool Equals(Vector4 other) parameters: - id: other type: OpenTK.Mathematics.Vector4 @@ -5846,20 +5554,16 @@ items: fullName: OpenTK.Mathematics.Vector4.GetHashCode() type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetHashCode - path: opentk/src/OpenTK.Mathematics/Vector/Vector4.cs - startLine: 2106 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs + startLine: 2253 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Returns the hash code for this instance. example: [] syntax: - content: public override int GetHashCode() + content: public override readonly int GetHashCode() return: type: System.Int32 description: A 32-bit signed integer that is the hash code for this instance. @@ -5878,13 +5582,9 @@ items: fullName: OpenTK.Mathematics.Vector4.Deconstruct(out float, out float, out float, out float) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Deconstruct - path: opentk/src/OpenTK.Mathematics/Vector/Vector4.cs - startLine: 2118 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4.cs + startLine: 2265 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -5894,7 +5594,7 @@ items: content: >- [Pure] - public void Deconstruct(out float x, out float y, out float z, out float w) + public readonly void Deconstruct(out float x, out float y, out float z, out float w) parameters: - id: x type: System.Single @@ -6230,6 +5930,12 @@ references: name: Length nameWithType: Vector4.Length fullName: OpenTK.Mathematics.Vector4.Length +- uid: OpenTK.Mathematics.Vector4.ReciprocalLengthFast* + commentId: Overload:OpenTK.Mathematics.Vector4.ReciprocalLengthFast + href: OpenTK.Mathematics.Vector4.html#OpenTK_Mathematics_Vector4_ReciprocalLengthFast + name: ReciprocalLengthFast + nameWithType: Vector4.ReciprocalLengthFast + fullName: OpenTK.Mathematics.Vector4.ReciprocalLengthFast - uid: OpenTK.Mathematics.Vector4.Length commentId: P:OpenTK.Mathematics.Vector4.Length href: OpenTK.Mathematics.Vector4.html#OpenTK_Mathematics_Vector4_Length @@ -6266,6 +5972,12 @@ references: name: NormalizeFast nameWithType: Vector4.NormalizeFast fullName: OpenTK.Mathematics.Vector4.NormalizeFast +- uid: OpenTK.Mathematics.Vector4.Abs* + commentId: Overload:OpenTK.Mathematics.Vector4.Abs + href: OpenTK.Mathematics.Vector4.html#OpenTK_Mathematics_Vector4_Abs + name: Abs + nameWithType: Vector4.Abs + fullName: OpenTK.Mathematics.Vector4.Abs - uid: OpenTK.Mathematics.Vector4.Add* commentId: Overload:OpenTK.Mathematics.Vector4.Add href: OpenTK.Mathematics.Vector4.html#OpenTK_Mathematics_Vector4_Add_OpenTK_Mathematics_Vector4_OpenTK_Mathematics_Vector4_ @@ -6332,6 +6044,72 @@ references: name: Lerp nameWithType: Vector4.Lerp fullName: OpenTK.Mathematics.Vector4.Lerp +- uid: OpenTK.Mathematics.Vector4.Slerp* + commentId: Overload:OpenTK.Mathematics.Vector4.Slerp + href: OpenTK.Mathematics.Vector4.html#OpenTK_Mathematics_Vector4_Slerp_OpenTK_Mathematics_Vector4_OpenTK_Mathematics_Vector4_System_Single_ + name: Slerp + nameWithType: Vector4.Slerp + fullName: OpenTK.Mathematics.Vector4.Slerp +- uid: OpenTK.Mathematics.MathHelper.Elerp(System.Single,System.Single,System.Single) + commentId: M:OpenTK.Mathematics.MathHelper.Elerp(System.Single,System.Single,System.Single) + isExternal: true + href: OpenTK.Mathematics.MathHelper.html#OpenTK_Mathematics_MathHelper_Elerp_System_Single_System_Single_System_Single_ + name: Elerp(float, float, float) + nameWithType: MathHelper.Elerp(float, float, float) + fullName: OpenTK.Mathematics.MathHelper.Elerp(float, float, float) + nameWithType.vb: MathHelper.Elerp(Single, Single, Single) + fullName.vb: OpenTK.Mathematics.MathHelper.Elerp(Single, Single, Single) + name.vb: Elerp(Single, Single, Single) + spec.csharp: + - uid: OpenTK.Mathematics.MathHelper.Elerp(System.Single,System.Single,System.Single) + name: Elerp + href: OpenTK.Mathematics.MathHelper.html#OpenTK_Mathematics_MathHelper_Elerp_System_Single_System_Single_System_Single_ + - name: ( + - uid: System.Single + name: float + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.single + - name: ',' + - name: " " + - uid: System.Single + name: float + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.single + - name: ',' + - name: " " + - uid: System.Single + name: float + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.single + - name: ) + spec.vb: + - uid: OpenTK.Mathematics.MathHelper.Elerp(System.Single,System.Single,System.Single) + name: Elerp + href: OpenTK.Mathematics.MathHelper.html#OpenTK_Mathematics_MathHelper_Elerp_System_Single_System_Single_System_Single_ + - name: ( + - uid: System.Single + name: Single + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.single + - name: ',' + - name: " " + - uid: System.Single + name: Single + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.single + - name: ',' + - name: " " + - uid: System.Single + name: Single + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.single + - name: ) +- uid: OpenTK.Mathematics.Vector4.Elerp* + commentId: Overload:OpenTK.Mathematics.Vector4.Elerp + href: OpenTK.Mathematics.Vector4.html#OpenTK_Mathematics_Vector4_Elerp_OpenTK_Mathematics_Vector4_OpenTK_Mathematics_Vector4_System_Single_ + name: Elerp + nameWithType: Vector4.Elerp + fullName: OpenTK.Mathematics.Vector4.Elerp - uid: OpenTK.Mathematics.Vector4.BaryCentric* commentId: Overload:OpenTK.Mathematics.Vector4.BaryCentric href: OpenTK.Mathematics.Vector4.html#OpenTK_Mathematics_Vector4_BaryCentric_OpenTK_Mathematics_Vector4_OpenTK_Mathematics_Vector4_OpenTK_Mathematics_Vector4_System_Single_System_Single_ diff --git a/api/OpenTK.Mathematics.Vector4d.yml b/api/OpenTK.Mathematics.Vector4d.yml index 78d27d9b..18ddadda 100644 --- a/api/OpenTK.Mathematics.Vector4d.yml +++ b/api/OpenTK.Mathematics.Vector4d.yml @@ -9,6 +9,9 @@ items: - OpenTK.Mathematics.Vector4d.#ctor(OpenTK.Mathematics.Vector3d,System.Double) - OpenTK.Mathematics.Vector4d.#ctor(System.Double) - OpenTK.Mathematics.Vector4d.#ctor(System.Double,System.Double,System.Double,System.Double) + - OpenTK.Mathematics.Vector4d.Abs + - OpenTK.Mathematics.Vector4d.Abs(OpenTK.Mathematics.Vector4d) + - OpenTK.Mathematics.Vector4d.Abs(OpenTK.Mathematics.Vector4d@,OpenTK.Mathematics.Vector4d@) - OpenTK.Mathematics.Vector4d.Add(OpenTK.Mathematics.Vector4d,OpenTK.Mathematics.Vector4d) - OpenTK.Mathematics.Vector4d.Add(OpenTK.Mathematics.Vector4d@,OpenTK.Mathematics.Vector4d@,OpenTK.Mathematics.Vector4d@) - OpenTK.Mathematics.Vector4d.BaryCentric(OpenTK.Mathematics.Vector4d,OpenTK.Mathematics.Vector4d,OpenTK.Mathematics.Vector4d,System.Double,System.Double) @@ -26,6 +29,8 @@ items: - OpenTK.Mathematics.Vector4d.Divide(OpenTK.Mathematics.Vector4d@,System.Double,OpenTK.Mathematics.Vector4d@) - OpenTK.Mathematics.Vector4d.Dot(OpenTK.Mathematics.Vector4d,OpenTK.Mathematics.Vector4d) - OpenTK.Mathematics.Vector4d.Dot(OpenTK.Mathematics.Vector4d@,OpenTK.Mathematics.Vector4d@,System.Double@) + - OpenTK.Mathematics.Vector4d.Elerp(OpenTK.Mathematics.Vector4d,OpenTK.Mathematics.Vector4d,System.Single) + - OpenTK.Mathematics.Vector4d.Elerp(OpenTK.Mathematics.Vector4d@,OpenTK.Mathematics.Vector4d@,System.Single,OpenTK.Mathematics.Vector4d@) - OpenTK.Mathematics.Vector4d.Equals(OpenTK.Mathematics.Vector4d) - OpenTK.Mathematics.Vector4d.Equals(System.Object) - OpenTK.Mathematics.Vector4d.GetHashCode @@ -55,7 +60,10 @@ items: - OpenTK.Mathematics.Vector4d.Normalized - OpenTK.Mathematics.Vector4d.One - OpenTK.Mathematics.Vector4d.PositiveInfinity + - OpenTK.Mathematics.Vector4d.ReciprocalLengthFast - OpenTK.Mathematics.Vector4d.SizeInBytes + - OpenTK.Mathematics.Vector4d.Slerp(OpenTK.Mathematics.Vector4d,OpenTK.Mathematics.Vector4d,System.Double) + - OpenTK.Mathematics.Vector4d.Slerp(OpenTK.Mathematics.Vector4d@,OpenTK.Mathematics.Vector4d@,System.Double,OpenTK.Mathematics.Vector4d@) - OpenTK.Mathematics.Vector4d.Subtract(OpenTK.Mathematics.Vector4d,OpenTK.Mathematics.Vector4d) - OpenTK.Mathematics.Vector4d.Subtract(OpenTK.Mathematics.Vector4d@,OpenTK.Mathematics.Vector4d@,OpenTK.Mathematics.Vector4d@) - OpenTK.Mathematics.Vector4d.ToString @@ -165,12 +173,8 @@ items: fullName: OpenTK.Mathematics.Vector4d type: Struct source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Vector4d - path: opentk/src/OpenTK.Mathematics/Vector/Vector4d.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs startLine: 37 assemblies: - OpenTK.Mathematics @@ -210,12 +214,8 @@ items: fullName: OpenTK.Mathematics.Vector4d.X type: Field source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: X - path: opentk/src/OpenTK.Mathematics/Vector/Vector4d.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs startLine: 44 assemblies: - OpenTK.Mathematics @@ -239,12 +239,8 @@ items: fullName: OpenTK.Mathematics.Vector4d.Y type: Field source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Y - path: opentk/src/OpenTK.Mathematics/Vector/Vector4d.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs startLine: 49 assemblies: - OpenTK.Mathematics @@ -268,12 +264,8 @@ items: fullName: OpenTK.Mathematics.Vector4d.Z type: Field source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Z - path: opentk/src/OpenTK.Mathematics/Vector/Vector4d.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs startLine: 54 assemblies: - OpenTK.Mathematics @@ -297,12 +289,8 @@ items: fullName: OpenTK.Mathematics.Vector4d.W type: Field source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: W - path: opentk/src/OpenTK.Mathematics/Vector/Vector4d.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs startLine: 59 assemblies: - OpenTK.Mathematics @@ -326,12 +314,8 @@ items: fullName: OpenTK.Mathematics.Vector4d.UnitX type: Field source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: UnitX - path: opentk/src/OpenTK.Mathematics/Vector/Vector4d.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs startLine: 64 assemblies: - OpenTK.Mathematics @@ -355,12 +339,8 @@ items: fullName: OpenTK.Mathematics.Vector4d.UnitY type: Field source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: UnitY - path: opentk/src/OpenTK.Mathematics/Vector/Vector4d.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs startLine: 69 assemblies: - OpenTK.Mathematics @@ -384,12 +364,8 @@ items: fullName: OpenTK.Mathematics.Vector4d.UnitZ type: Field source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: UnitZ - path: opentk/src/OpenTK.Mathematics/Vector/Vector4d.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs startLine: 74 assemblies: - OpenTK.Mathematics @@ -413,12 +389,8 @@ items: fullName: OpenTK.Mathematics.Vector4d.UnitW type: Field source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: UnitW - path: opentk/src/OpenTK.Mathematics/Vector/Vector4d.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs startLine: 79 assemblies: - OpenTK.Mathematics @@ -442,12 +414,8 @@ items: fullName: OpenTK.Mathematics.Vector4d.Zero type: Field source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Zero - path: opentk/src/OpenTK.Mathematics/Vector/Vector4d.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs startLine: 84 assemblies: - OpenTK.Mathematics @@ -471,12 +439,8 @@ items: fullName: OpenTK.Mathematics.Vector4d.One type: Field source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: One - path: opentk/src/OpenTK.Mathematics/Vector/Vector4d.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs startLine: 89 assemblies: - OpenTK.Mathematics @@ -500,12 +464,8 @@ items: fullName: OpenTK.Mathematics.Vector4d.PositiveInfinity type: Field source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: PositiveInfinity - path: opentk/src/OpenTK.Mathematics/Vector/Vector4d.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs startLine: 94 assemblies: - OpenTK.Mathematics @@ -529,12 +489,8 @@ items: fullName: OpenTK.Mathematics.Vector4d.NegativeInfinity type: Field source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: NegativeInfinity - path: opentk/src/OpenTK.Mathematics/Vector/Vector4d.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs startLine: 99 assemblies: - OpenTK.Mathematics @@ -558,12 +514,8 @@ items: fullName: OpenTK.Mathematics.Vector4d.SizeInBytes type: Field source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SizeInBytes - path: opentk/src/OpenTK.Mathematics/Vector/Vector4d.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs startLine: 104 assemblies: - OpenTK.Mathematics @@ -587,12 +539,8 @@ items: fullName: OpenTK.Mathematics.Vector4d.Vector4d(double) type: Constructor source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Mathematics/Vector/Vector4d.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs startLine: 110 assemblies: - OpenTK.Mathematics @@ -622,12 +570,8 @@ items: fullName: OpenTK.Mathematics.Vector4d.Vector4d(double, double, double, double) type: Constructor source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Mathematics/Vector/Vector4d.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs startLine: 125 assemblies: - OpenTK.Mathematics @@ -666,12 +610,8 @@ items: fullName: OpenTK.Mathematics.Vector4d.Vector4d(OpenTK.Mathematics.Vector2d, double, double) type: Constructor source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Mathematics/Vector/Vector4d.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs startLine: 139 assemblies: - OpenTK.Mathematics @@ -707,12 +647,8 @@ items: fullName: OpenTK.Mathematics.Vector4d.Vector4d(OpenTK.Mathematics.Vector3d, double) type: Constructor source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Mathematics/Vector/Vector4d.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs startLine: 152 assemblies: - OpenTK.Mathematics @@ -745,12 +681,8 @@ items: fullName: OpenTK.Mathematics.Vector4d.this[int] type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: this[] - path: opentk/src/OpenTK.Mathematics/Vector/Vector4d.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs startLine: 165 assemblies: - OpenTK.Mathematics @@ -758,7 +690,7 @@ items: summary: Gets or sets the value at the index of the Vector. example: [] syntax: - content: public double this[int index] { get; set; } + content: public double this[int index] { readonly get; set; } parameters: - id: index type: System.Int32 @@ -786,12 +718,8 @@ items: fullName: OpenTK.Mathematics.Vector4d.Length type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Length - path: opentk/src/OpenTK.Mathematics/Vector/Vector4d.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs startLine: 222 assemblies: - OpenTK.Mathematics @@ -799,7 +727,7 @@ items: summary: Gets the length (magnitude) of the vector. example: [] syntax: - content: public double Length { get; } + content: public readonly double Length { get; } parameters: [] return: type: System.Double @@ -808,6 +736,33 @@ items: seealso: - linkId: OpenTK.Mathematics.Vector4d.LengthSquared commentId: P:OpenTK.Mathematics.Vector4d.LengthSquared +- uid: OpenTK.Mathematics.Vector4d.ReciprocalLengthFast + commentId: P:OpenTK.Mathematics.Vector4d.ReciprocalLengthFast + id: ReciprocalLengthFast + parent: OpenTK.Mathematics.Vector4d + langs: + - csharp + - vb + name: ReciprocalLengthFast + nameWithType: Vector4d.ReciprocalLengthFast + fullName: OpenTK.Mathematics.Vector4d.ReciprocalLengthFast + type: Property + source: + id: ReciprocalLengthFast + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs + startLine: 227 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: Gets an approximation of 1 over the length (magnitude) of the vector. + example: [] + syntax: + content: public readonly double ReciprocalLengthFast { get; } + parameters: [] + return: + type: System.Double + content.vb: Public ReadOnly Property ReciprocalLengthFast As Double + overload: OpenTK.Mathematics.Vector4d.ReciprocalLengthFast* - uid: OpenTK.Mathematics.Vector4d.LengthFast commentId: P:OpenTK.Mathematics.Vector4d.LengthFast id: LengthFast @@ -820,24 +775,17 @@ items: fullName: OpenTK.Mathematics.Vector4d.LengthFast type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: LengthFast - path: opentk/src/OpenTK.Mathematics/Vector/Vector4d.cs - startLine: 233 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs + startLine: 237 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets an approximation of the vector length (magnitude). - remarks: >- - This property uses an approximation of the square root function to calculate vector magnitude, with - - an upper error bound of 0.001. + remarks: This property uses an approximation of the square root function to calculate vector magnitude. example: [] syntax: - content: public double LengthFast { get; } + content: public readonly double LengthFast { get; } parameters: [] return: type: System.Double @@ -858,13 +806,9 @@ items: fullName: OpenTK.Mathematics.Vector4d.LengthSquared type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: LengthSquared - path: opentk/src/OpenTK.Mathematics/Vector/Vector4d.cs - startLine: 243 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs + startLine: 247 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -875,7 +819,7 @@ items: for comparisons. example: [] syntax: - content: public double LengthSquared { get; } + content: public readonly double LengthSquared { get; } parameters: [] return: type: System.Double @@ -893,20 +837,16 @@ items: fullName: OpenTK.Mathematics.Vector4d.Normalized() type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Normalized - path: opentk/src/OpenTK.Mathematics/Vector/Vector4d.cs - startLine: 249 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs + startLine: 253 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Returns a copy of the Vector4d scaled to unit length. example: [] syntax: - content: public Vector4d Normalized() + content: public readonly Vector4d Normalized() return: type: OpenTK.Mathematics.Vector4d description: The normalized copy. @@ -924,13 +864,9 @@ items: fullName: OpenTK.Mathematics.Vector4d.Normalize() type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Normalize - path: opentk/src/OpenTK.Mathematics/Vector/Vector4d.cs - startLine: 259 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs + startLine: 263 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -952,13 +888,9 @@ items: fullName: OpenTK.Mathematics.Vector4d.NormalizeFast() type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: NormalizeFast - path: opentk/src/OpenTK.Mathematics/Vector/Vector4d.cs - startLine: 271 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs + startLine: 275 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -968,6 +900,33 @@ items: content: public void NormalizeFast() content.vb: Public Sub NormalizeFast() overload: OpenTK.Mathematics.Vector4d.NormalizeFast* +- uid: OpenTK.Mathematics.Vector4d.Abs + commentId: M:OpenTK.Mathematics.Vector4d.Abs + id: Abs + parent: OpenTK.Mathematics.Vector4d + langs: + - csharp + - vb + name: Abs() + nameWithType: Vector4d.Abs() + fullName: OpenTK.Mathematics.Vector4d.Abs() + type: Method + source: + id: Abs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs + startLine: 288 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: Returns a new vector that is the component-wise absolute value of the vector. + example: [] + syntax: + content: public readonly Vector4d Abs() + return: + type: OpenTK.Mathematics.Vector4d + description: The component-wise absolute value vector. + content.vb: Public Function Abs() As Vector4d + overload: OpenTK.Mathematics.Vector4d.Abs* - uid: OpenTK.Mathematics.Vector4d.Add(OpenTK.Mathematics.Vector4d,OpenTK.Mathematics.Vector4d) commentId: M:OpenTK.Mathematics.Vector4d.Add(OpenTK.Mathematics.Vector4d,OpenTK.Mathematics.Vector4d) id: Add(OpenTK.Mathematics.Vector4d,OpenTK.Mathematics.Vector4d) @@ -980,13 +939,9 @@ items: fullName: OpenTK.Mathematics.Vector4d.Add(OpenTK.Mathematics.Vector4d, OpenTK.Mathematics.Vector4d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Add - path: opentk/src/OpenTK.Mathematics/Vector/Vector4d.cs - startLine: 286 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs + startLine: 304 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1028,13 +983,9 @@ items: fullName: OpenTK.Mathematics.Vector4d.Add(in OpenTK.Mathematics.Vector4d, in OpenTK.Mathematics.Vector4d, out OpenTK.Mathematics.Vector4d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Add - path: opentk/src/OpenTK.Mathematics/Vector/Vector4d.cs - startLine: 299 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs + startLine: 317 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1069,13 +1020,9 @@ items: fullName: OpenTK.Mathematics.Vector4d.Subtract(OpenTK.Mathematics.Vector4d, OpenTK.Mathematics.Vector4d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Subtract - path: opentk/src/OpenTK.Mathematics/Vector/Vector4d.cs - startLine: 313 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs + startLine: 331 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1117,13 +1064,9 @@ items: fullName: OpenTK.Mathematics.Vector4d.Subtract(in OpenTK.Mathematics.Vector4d, in OpenTK.Mathematics.Vector4d, out OpenTK.Mathematics.Vector4d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Subtract - path: opentk/src/OpenTK.Mathematics/Vector/Vector4d.cs - startLine: 326 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs + startLine: 344 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1158,13 +1101,9 @@ items: fullName: OpenTK.Mathematics.Vector4d.Multiply(OpenTK.Mathematics.Vector4d, double) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Multiply - path: opentk/src/OpenTK.Mathematics/Vector/Vector4d.cs - startLine: 340 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs + startLine: 358 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1209,13 +1148,9 @@ items: fullName: OpenTK.Mathematics.Vector4d.Multiply(in OpenTK.Mathematics.Vector4d, double, out OpenTK.Mathematics.Vector4d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Multiply - path: opentk/src/OpenTK.Mathematics/Vector/Vector4d.cs - startLine: 353 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs + startLine: 371 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1250,13 +1185,9 @@ items: fullName: OpenTK.Mathematics.Vector4d.Multiply(OpenTK.Mathematics.Vector4d, OpenTK.Mathematics.Vector4d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Multiply - path: opentk/src/OpenTK.Mathematics/Vector/Vector4d.cs - startLine: 367 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs + startLine: 385 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1298,13 +1229,9 @@ items: fullName: OpenTK.Mathematics.Vector4d.Multiply(in OpenTK.Mathematics.Vector4d, in OpenTK.Mathematics.Vector4d, out OpenTK.Mathematics.Vector4d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Multiply - path: opentk/src/OpenTK.Mathematics/Vector/Vector4d.cs - startLine: 380 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs + startLine: 398 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1339,13 +1266,9 @@ items: fullName: OpenTK.Mathematics.Vector4d.Divide(OpenTK.Mathematics.Vector4d, double) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Divide - path: opentk/src/OpenTK.Mathematics/Vector/Vector4d.cs - startLine: 394 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs + startLine: 412 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1390,13 +1313,9 @@ items: fullName: OpenTK.Mathematics.Vector4d.Divide(in OpenTK.Mathematics.Vector4d, double, out OpenTK.Mathematics.Vector4d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Divide - path: opentk/src/OpenTK.Mathematics/Vector/Vector4d.cs - startLine: 407 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs + startLine: 425 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1431,13 +1350,9 @@ items: fullName: OpenTK.Mathematics.Vector4d.Divide(OpenTK.Mathematics.Vector4d, OpenTK.Mathematics.Vector4d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Divide - path: opentk/src/OpenTK.Mathematics/Vector/Vector4d.cs - startLine: 421 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs + startLine: 439 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1479,13 +1394,9 @@ items: fullName: OpenTK.Mathematics.Vector4d.Divide(in OpenTK.Mathematics.Vector4d, in OpenTK.Mathematics.Vector4d, out OpenTK.Mathematics.Vector4d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Divide - path: opentk/src/OpenTK.Mathematics/Vector/Vector4d.cs - startLine: 434 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs + startLine: 452 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1520,13 +1431,9 @@ items: fullName: OpenTK.Mathematics.Vector4d.ComponentMin(OpenTK.Mathematics.Vector4d, OpenTK.Mathematics.Vector4d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ComponentMin - path: opentk/src/OpenTK.Mathematics/Vector/Vector4d.cs - startLine: 448 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs + startLine: 466 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1568,13 +1475,9 @@ items: fullName: OpenTK.Mathematics.Vector4d.ComponentMin(in OpenTK.Mathematics.Vector4d, in OpenTK.Mathematics.Vector4d, out OpenTK.Mathematics.Vector4d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ComponentMin - path: opentk/src/OpenTK.Mathematics/Vector/Vector4d.cs - startLine: 464 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs + startLine: 482 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1609,13 +1512,9 @@ items: fullName: OpenTK.Mathematics.Vector4d.ComponentMax(OpenTK.Mathematics.Vector4d, OpenTK.Mathematics.Vector4d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ComponentMax - path: opentk/src/OpenTK.Mathematics/Vector/Vector4d.cs - startLine: 478 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs + startLine: 496 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1657,13 +1556,9 @@ items: fullName: OpenTK.Mathematics.Vector4d.ComponentMax(in OpenTK.Mathematics.Vector4d, in OpenTK.Mathematics.Vector4d, out OpenTK.Mathematics.Vector4d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ComponentMax - path: opentk/src/OpenTK.Mathematics/Vector/Vector4d.cs - startLine: 494 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs + startLine: 512 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1698,13 +1593,9 @@ items: fullName: OpenTK.Mathematics.Vector4d.MagnitudeMin(OpenTK.Mathematics.Vector4d, OpenTK.Mathematics.Vector4d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MagnitudeMin - path: opentk/src/OpenTK.Mathematics/Vector/Vector4d.cs - startLine: 508 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs + startLine: 526 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1746,13 +1637,9 @@ items: fullName: OpenTK.Mathematics.Vector4d.MagnitudeMin(in OpenTK.Mathematics.Vector4d, in OpenTK.Mathematics.Vector4d, out OpenTK.Mathematics.Vector4d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MagnitudeMin - path: opentk/src/OpenTK.Mathematics/Vector/Vector4d.cs - startLine: 520 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs + startLine: 538 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1787,13 +1674,9 @@ items: fullName: OpenTK.Mathematics.Vector4d.MagnitudeMax(OpenTK.Mathematics.Vector4d, OpenTK.Mathematics.Vector4d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MagnitudeMax - path: opentk/src/OpenTK.Mathematics/Vector/Vector4d.cs - startLine: 531 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs + startLine: 549 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1835,13 +1718,9 @@ items: fullName: OpenTK.Mathematics.Vector4d.MagnitudeMax(in OpenTK.Mathematics.Vector4d, in OpenTK.Mathematics.Vector4d, out OpenTK.Mathematics.Vector4d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MagnitudeMax - path: opentk/src/OpenTK.Mathematics/Vector/Vector4d.cs - startLine: 543 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs + startLine: 561 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1876,13 +1755,9 @@ items: fullName: OpenTK.Mathematics.Vector4d.Clamp(OpenTK.Mathematics.Vector4d, OpenTK.Mathematics.Vector4d, OpenTK.Mathematics.Vector4d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Clamp - path: opentk/src/OpenTK.Mathematics/Vector/Vector4d.cs - startLine: 555 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs + startLine: 573 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1927,13 +1802,9 @@ items: fullName: OpenTK.Mathematics.Vector4d.Clamp(in OpenTK.Mathematics.Vector4d, in OpenTK.Mathematics.Vector4d, in OpenTK.Mathematics.Vector4d, out OpenTK.Mathematics.Vector4d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Clamp - path: opentk/src/OpenTK.Mathematics/Vector/Vector4d.cs - startLine: 572 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs + startLine: 590 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1959,6 +1830,71 @@ items: nameWithType.vb: Vector4d.Clamp(Vector4d, Vector4d, Vector4d, Vector4d) fullName.vb: OpenTK.Mathematics.Vector4d.Clamp(OpenTK.Mathematics.Vector4d, OpenTK.Mathematics.Vector4d, OpenTK.Mathematics.Vector4d, OpenTK.Mathematics.Vector4d) name.vb: Clamp(Vector4d, Vector4d, Vector4d, Vector4d) +- uid: OpenTK.Mathematics.Vector4d.Abs(OpenTK.Mathematics.Vector4d) + commentId: M:OpenTK.Mathematics.Vector4d.Abs(OpenTK.Mathematics.Vector4d) + id: Abs(OpenTK.Mathematics.Vector4d) + parent: OpenTK.Mathematics.Vector4d + langs: + - csharp + - vb + name: Abs(Vector4d) + nameWithType: Vector4d.Abs(Vector4d) + fullName: OpenTK.Mathematics.Vector4d.Abs(OpenTK.Mathematics.Vector4d) + type: Method + source: + id: Abs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs + startLine: 603 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: Take the component-wise absolute value of a vector. + example: [] + syntax: + content: public static Vector4d Abs(Vector4d vec) + parameters: + - id: vec + type: OpenTK.Mathematics.Vector4d + description: The vector to apply component-wise absolute value to. + return: + type: OpenTK.Mathematics.Vector4d + description: The component-wise absolute value vector. + content.vb: Public Shared Function Abs(vec As Vector4d) As Vector4d + overload: OpenTK.Mathematics.Vector4d.Abs* +- uid: OpenTK.Mathematics.Vector4d.Abs(OpenTK.Mathematics.Vector4d@,OpenTK.Mathematics.Vector4d@) + commentId: M:OpenTK.Mathematics.Vector4d.Abs(OpenTK.Mathematics.Vector4d@,OpenTK.Mathematics.Vector4d@) + id: Abs(OpenTK.Mathematics.Vector4d@,OpenTK.Mathematics.Vector4d@) + parent: OpenTK.Mathematics.Vector4d + langs: + - csharp + - vb + name: Abs(in Vector4d, out Vector4d) + nameWithType: Vector4d.Abs(in Vector4d, out Vector4d) + fullName: OpenTK.Mathematics.Vector4d.Abs(in OpenTK.Mathematics.Vector4d, out OpenTK.Mathematics.Vector4d) + type: Method + source: + id: Abs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs + startLine: 617 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: Take the component-wise absolute value of a vector. + example: [] + syntax: + content: public static void Abs(in Vector4d vec, out Vector4d result) + parameters: + - id: vec + type: OpenTK.Mathematics.Vector4d + description: The vector to apply component-wise absolute value to. + - id: result + type: OpenTK.Mathematics.Vector4d + description: The component-wise absolute value vector. + content.vb: Public Shared Sub Abs(vec As Vector4d, result As Vector4d) + overload: OpenTK.Mathematics.Vector4d.Abs* + nameWithType.vb: Vector4d.Abs(Vector4d, Vector4d) + fullName.vb: OpenTK.Mathematics.Vector4d.Abs(OpenTK.Mathematics.Vector4d, OpenTK.Mathematics.Vector4d) + name.vb: Abs(Vector4d, Vector4d) - uid: OpenTK.Mathematics.Vector4d.Normalize(OpenTK.Mathematics.Vector4d) commentId: M:OpenTK.Mathematics.Vector4d.Normalize(OpenTK.Mathematics.Vector4d) id: Normalize(OpenTK.Mathematics.Vector4d) @@ -1971,13 +1907,9 @@ items: fullName: OpenTK.Mathematics.Vector4d.Normalize(OpenTK.Mathematics.Vector4d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Normalize - path: opentk/src/OpenTK.Mathematics/Vector/Vector4d.cs - startLine: 585 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs + startLine: 630 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2016,13 +1948,9 @@ items: fullName: OpenTK.Mathematics.Vector4d.Normalize(in OpenTK.Mathematics.Vector4d, out OpenTK.Mathematics.Vector4d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Normalize - path: opentk/src/OpenTK.Mathematics/Vector/Vector4d.cs - startLine: 601 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs + startLine: 646 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2054,13 +1982,9 @@ items: fullName: OpenTK.Mathematics.Vector4d.NormalizeFast(OpenTK.Mathematics.Vector4d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: NormalizeFast - path: opentk/src/OpenTK.Mathematics/Vector/Vector4d.cs - startLine: 615 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs + startLine: 660 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2099,13 +2023,9 @@ items: fullName: OpenTK.Mathematics.Vector4d.NormalizeFast(in OpenTK.Mathematics.Vector4d, out OpenTK.Mathematics.Vector4d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: NormalizeFast - path: opentk/src/OpenTK.Mathematics/Vector/Vector4d.cs - startLine: 631 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs + startLine: 676 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2137,13 +2057,9 @@ items: fullName: OpenTK.Mathematics.Vector4d.Dot(OpenTK.Mathematics.Vector4d, OpenTK.Mathematics.Vector4d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Dot - path: opentk/src/OpenTK.Mathematics/Vector/Vector4d.cs - startLine: 646 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs + startLine: 691 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2185,13 +2101,9 @@ items: fullName: OpenTK.Mathematics.Vector4d.Dot(in OpenTK.Mathematics.Vector4d, in OpenTK.Mathematics.Vector4d, out double) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Dot - path: opentk/src/OpenTK.Mathematics/Vector/Vector4d.cs - startLine: 658 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs + startLine: 703 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2226,13 +2138,9 @@ items: fullName: OpenTK.Mathematics.Vector4d.Lerp(OpenTK.Mathematics.Vector4d, OpenTK.Mathematics.Vector4d, double) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Lerp - path: opentk/src/OpenTK.Mathematics/Vector/Vector4d.cs - startLine: 670 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs + startLine: 715 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2280,13 +2188,9 @@ items: fullName: OpenTK.Mathematics.Vector4d.Lerp(in OpenTK.Mathematics.Vector4d, in OpenTK.Mathematics.Vector4d, double, out OpenTK.Mathematics.Vector4d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Lerp - path: opentk/src/OpenTK.Mathematics/Vector/Vector4d.cs - startLine: 687 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs + startLine: 732 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2324,13 +2228,9 @@ items: fullName: OpenTK.Mathematics.Vector4d.Lerp(OpenTK.Mathematics.Vector4d, OpenTK.Mathematics.Vector4d, OpenTK.Mathematics.Vector4d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Lerp - path: opentk/src/OpenTK.Mathematics/Vector/Vector4d.cs - startLine: 702 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs + startLine: 747 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2375,13 +2275,9 @@ items: fullName: OpenTK.Mathematics.Vector4d.Lerp(in OpenTK.Mathematics.Vector4d, in OpenTK.Mathematics.Vector4d, OpenTK.Mathematics.Vector4d, out OpenTK.Mathematics.Vector4d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Lerp - path: opentk/src/OpenTK.Mathematics/Vector/Vector4d.cs - startLine: 719 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs + startLine: 764 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2407,6 +2303,194 @@ items: nameWithType.vb: Vector4d.Lerp(Vector4d, Vector4d, Vector4d, Vector4d) fullName.vb: OpenTK.Mathematics.Vector4d.Lerp(OpenTK.Mathematics.Vector4d, OpenTK.Mathematics.Vector4d, OpenTK.Mathematics.Vector4d, OpenTK.Mathematics.Vector4d) name.vb: Lerp(Vector4d, Vector4d, Vector4d, Vector4d) +- uid: OpenTK.Mathematics.Vector4d.Slerp(OpenTK.Mathematics.Vector4d,OpenTK.Mathematics.Vector4d,System.Double) + commentId: M:OpenTK.Mathematics.Vector4d.Slerp(OpenTK.Mathematics.Vector4d,OpenTK.Mathematics.Vector4d,System.Double) + id: Slerp(OpenTK.Mathematics.Vector4d,OpenTK.Mathematics.Vector4d,System.Double) + parent: OpenTK.Mathematics.Vector4d + langs: + - csharp + - vb + name: Slerp(Vector4d, Vector4d, double) + nameWithType: Vector4d.Slerp(Vector4d, Vector4d, double) + fullName: OpenTK.Mathematics.Vector4d.Slerp(OpenTK.Mathematics.Vector4d, OpenTK.Mathematics.Vector4d, double) + type: Method + source: + id: Slerp + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs + startLine: 780 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: >- + Returns a new vector that is the spherical interpolation of the two given vectors. + + a and b need to be normalized for this function to work properly. + example: [] + syntax: + content: >- + [Pure] + + public static Vector4d Slerp(Vector4d a, Vector4d b, double t) + parameters: + - id: a + type: OpenTK.Mathematics.Vector4d + description: Unit vector start point. + - id: b + type: OpenTK.Mathematics.Vector4d + description: Unit vector end point. + - id: t + type: System.Double + description: The blend factor. + return: + type: OpenTK.Mathematics.Vector4d + description: a when t=0, b when t=1, and a spherical interpolation between the vectors otherwise. + content.vb: >- + + + Public Shared Function Slerp(a As Vector4d, b As Vector4d, t As Double) As Vector4d + overload: OpenTK.Mathematics.Vector4d.Slerp* + attributes: + - type: System.Diagnostics.Contracts.PureAttribute + ctor: System.Diagnostics.Contracts.PureAttribute.#ctor + arguments: [] + nameWithType.vb: Vector4d.Slerp(Vector4d, Vector4d, Double) + fullName.vb: OpenTK.Mathematics.Vector4d.Slerp(OpenTK.Mathematics.Vector4d, OpenTK.Mathematics.Vector4d, Double) + name.vb: Slerp(Vector4d, Vector4d, Double) +- uid: OpenTK.Mathematics.Vector4d.Slerp(OpenTK.Mathematics.Vector4d@,OpenTK.Mathematics.Vector4d@,System.Double,OpenTK.Mathematics.Vector4d@) + commentId: M:OpenTK.Mathematics.Vector4d.Slerp(OpenTK.Mathematics.Vector4d@,OpenTK.Mathematics.Vector4d@,System.Double,OpenTK.Mathematics.Vector4d@) + id: Slerp(OpenTK.Mathematics.Vector4d@,OpenTK.Mathematics.Vector4d@,System.Double,OpenTK.Mathematics.Vector4d@) + parent: OpenTK.Mathematics.Vector4d + langs: + - csharp + - vb + name: Slerp(in Vector4d, in Vector4d, double, out Vector4d) + nameWithType: Vector4d.Slerp(in Vector4d, in Vector4d, double, out Vector4d) + fullName: OpenTK.Mathematics.Vector4d.Slerp(in OpenTK.Mathematics.Vector4d, in OpenTK.Mathematics.Vector4d, double, out OpenTK.Mathematics.Vector4d) + type: Method + source: + id: Slerp + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs + startLine: 810 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: >- + Returns a new vector that is the spherical interpolation of the two given vectors. + + a and b need to be normalized for this function to work properly. + example: [] + syntax: + content: public static void Slerp(in Vector4d a, in Vector4d b, double t, out Vector4d result) + parameters: + - id: a + type: OpenTK.Mathematics.Vector4d + description: Unit vector start point. + - id: b + type: OpenTK.Mathematics.Vector4d + description: Unit vector end point. + - id: t + type: System.Double + description: The blend factor. + - id: result + type: OpenTK.Mathematics.Vector4d + description: Is a when t=0, b when t=1, and a spherical interpolation between the vectors otherwise. + content.vb: Public Shared Sub Slerp(a As Vector4d, b As Vector4d, t As Double, result As Vector4d) + overload: OpenTK.Mathematics.Vector4d.Slerp* + nameWithType.vb: Vector4d.Slerp(Vector4d, Vector4d, Double, Vector4d) + fullName.vb: OpenTK.Mathematics.Vector4d.Slerp(OpenTK.Mathematics.Vector4d, OpenTK.Mathematics.Vector4d, Double, OpenTK.Mathematics.Vector4d) + name.vb: Slerp(Vector4d, Vector4d, Double, Vector4d) +- uid: OpenTK.Mathematics.Vector4d.Elerp(OpenTK.Mathematics.Vector4d,OpenTK.Mathematics.Vector4d,System.Single) + commentId: M:OpenTK.Mathematics.Vector4d.Elerp(OpenTK.Mathematics.Vector4d,OpenTK.Mathematics.Vector4d,System.Single) + id: Elerp(OpenTK.Mathematics.Vector4d,OpenTK.Mathematics.Vector4d,System.Single) + parent: OpenTK.Mathematics.Vector4d + langs: + - csharp + - vb + name: Elerp(Vector4d, Vector4d, float) + nameWithType: Vector4d.Elerp(Vector4d, Vector4d, float) + fullName: OpenTK.Mathematics.Vector4d.Elerp(OpenTK.Mathematics.Vector4d, OpenTK.Mathematics.Vector4d, float) + type: Method + source: + id: Elerp + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs + startLine: 848 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: >- + Returns a new vector that is the exponential interpolation of the two vectors. + + Equivalent to a * pow(b/a, t). + example: [] + syntax: + content: public static Vector4d Elerp(Vector4d a, Vector4d b, float t) + parameters: + - id: a + type: OpenTK.Mathematics.Vector4d + description: The starting value. Must be non-negative. + - id: b + type: OpenTK.Mathematics.Vector4d + description: The end value. Must be non-negative. + - id: t + type: System.Single + description: The blend factor. + return: + type: OpenTK.Mathematics.Vector4d + description: The exponential interpolation between a and b. + content.vb: Public Shared Function Elerp(a As Vector4d, b As Vector4d, t As Single) As Vector4d + overload: OpenTK.Mathematics.Vector4d.Elerp* + seealso: + - linkId: OpenTK.Mathematics.MathHelper.Elerp(System.Double,System.Double,System.Double) + commentId: M:OpenTK.Mathematics.MathHelper.Elerp(System.Double,System.Double,System.Double) + nameWithType.vb: Vector4d.Elerp(Vector4d, Vector4d, Single) + fullName.vb: OpenTK.Mathematics.Vector4d.Elerp(OpenTK.Mathematics.Vector4d, OpenTK.Mathematics.Vector4d, Single) + name.vb: Elerp(Vector4d, Vector4d, Single) +- uid: OpenTK.Mathematics.Vector4d.Elerp(OpenTK.Mathematics.Vector4d@,OpenTK.Mathematics.Vector4d@,System.Single,OpenTK.Mathematics.Vector4d@) + commentId: M:OpenTK.Mathematics.Vector4d.Elerp(OpenTK.Mathematics.Vector4d@,OpenTK.Mathematics.Vector4d@,System.Single,OpenTK.Mathematics.Vector4d@) + id: Elerp(OpenTK.Mathematics.Vector4d@,OpenTK.Mathematics.Vector4d@,System.Single,OpenTK.Mathematics.Vector4d@) + parent: OpenTK.Mathematics.Vector4d + langs: + - csharp + - vb + name: Elerp(in Vector4d, in Vector4d, float, out Vector4d) + nameWithType: Vector4d.Elerp(in Vector4d, in Vector4d, float, out Vector4d) + fullName: OpenTK.Mathematics.Vector4d.Elerp(in OpenTK.Mathematics.Vector4d, in OpenTK.Mathematics.Vector4d, float, out OpenTK.Mathematics.Vector4d) + type: Method + source: + id: Elerp + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs + startLine: 866 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: >- + Returns a new vector that is the exponential interpolation of the two vectors. + + Equivalent to a * pow(b/a, t). + example: [] + syntax: + content: public static void Elerp(in Vector4d a, in Vector4d b, float t, out Vector4d result) + parameters: + - id: a + type: OpenTK.Mathematics.Vector4d + description: The starting value. Must be non-negative. + - id: b + type: OpenTK.Mathematics.Vector4d + description: The end value. Must be non-negative. + - id: t + type: System.Single + description: The blend factor. + - id: result + type: OpenTK.Mathematics.Vector4d + description: The exponential interpolation between a and b. + content.vb: Public Shared Sub Elerp(a As Vector4d, b As Vector4d, t As Single, result As Vector4d) + overload: OpenTK.Mathematics.Vector4d.Elerp* + seealso: + - linkId: OpenTK.Mathematics.MathHelper.Elerp(System.Double,System.Double,System.Double) + commentId: M:OpenTK.Mathematics.MathHelper.Elerp(System.Double,System.Double,System.Double) + nameWithType.vb: Vector4d.Elerp(Vector4d, Vector4d, Single, Vector4d) + fullName.vb: OpenTK.Mathematics.Vector4d.Elerp(OpenTK.Mathematics.Vector4d, OpenTK.Mathematics.Vector4d, Single, OpenTK.Mathematics.Vector4d) + name.vb: Elerp(Vector4d, Vector4d, Single, Vector4d) - uid: OpenTK.Mathematics.Vector4d.BaryCentric(OpenTK.Mathematics.Vector4d,OpenTK.Mathematics.Vector4d,OpenTK.Mathematics.Vector4d,System.Double,System.Double) commentId: M:OpenTK.Mathematics.Vector4d.BaryCentric(OpenTK.Mathematics.Vector4d,OpenTK.Mathematics.Vector4d,OpenTK.Mathematics.Vector4d,System.Double,System.Double) id: BaryCentric(OpenTK.Mathematics.Vector4d,OpenTK.Mathematics.Vector4d,OpenTK.Mathematics.Vector4d,System.Double,System.Double) @@ -2419,13 +2503,9 @@ items: fullName: OpenTK.Mathematics.Vector4d.BaryCentric(OpenTK.Mathematics.Vector4d, OpenTK.Mathematics.Vector4d, OpenTK.Mathematics.Vector4d, double, double) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: BaryCentric - path: opentk/src/OpenTK.Mathematics/Vector/Vector4d.cs - startLine: 736 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs + startLine: 883 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2479,13 +2559,9 @@ items: fullName: OpenTK.Mathematics.Vector4d.BaryCentric(in OpenTK.Mathematics.Vector4d, in OpenTK.Mathematics.Vector4d, in OpenTK.Mathematics.Vector4d, double, double, out OpenTK.Mathematics.Vector4d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: BaryCentric - path: opentk/src/OpenTK.Mathematics/Vector/Vector4d.cs - startLine: 755 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs + startLine: 902 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2532,13 +2608,9 @@ items: fullName: OpenTK.Mathematics.Vector4d.TransformRow(OpenTK.Mathematics.Vector4d, OpenTK.Mathematics.Matrix4d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TransformRow - path: opentk/src/OpenTK.Mathematics/Vector/Vector4d.cs - startLine: 780 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs + startLine: 927 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2580,13 +2652,9 @@ items: fullName: OpenTK.Mathematics.Vector4d.TransformRow(in OpenTK.Mathematics.Vector4d, in OpenTK.Mathematics.Matrix4d, out OpenTK.Mathematics.Vector4d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TransformRow - path: opentk/src/OpenTK.Mathematics/Vector/Vector4d.cs - startLine: 793 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs + startLine: 940 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2621,13 +2689,9 @@ items: fullName: OpenTK.Mathematics.Vector4d.Transform(OpenTK.Mathematics.Vector4d, OpenTK.Mathematics.Quaterniond) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Transform - path: opentk/src/OpenTK.Mathematics/Vector/Vector4d.cs - startLine: 808 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs + startLine: 955 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2669,13 +2733,9 @@ items: fullName: OpenTK.Mathematics.Vector4d.Transform(in OpenTK.Mathematics.Vector4d, in OpenTK.Mathematics.Quaterniond, out OpenTK.Mathematics.Vector4d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Transform - path: opentk/src/OpenTK.Mathematics/Vector/Vector4d.cs - startLine: 821 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs + startLine: 968 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2710,13 +2770,9 @@ items: fullName: OpenTK.Mathematics.Vector4d.TransformColumn(OpenTK.Mathematics.Matrix4d, OpenTK.Mathematics.Vector4d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TransformColumn - path: opentk/src/OpenTK.Mathematics/Vector/Vector4d.cs - startLine: 840 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs + startLine: 987 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2758,13 +2814,9 @@ items: fullName: OpenTK.Mathematics.Vector4d.TransformColumn(in OpenTK.Mathematics.Matrix4d, in OpenTK.Mathematics.Vector4d, out OpenTK.Mathematics.Vector4d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TransformColumn - path: opentk/src/OpenTK.Mathematics/Vector/Vector4d.cs - startLine: 853 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs + startLine: 1000 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2799,13 +2851,9 @@ items: fullName: OpenTK.Mathematics.Vector4d.Xy type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Xy - path: opentk/src/OpenTK.Mathematics/Vector/Vector4d.cs - startLine: 865 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs + startLine: 1012 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2830,20 +2878,16 @@ items: fullName: OpenTK.Mathematics.Vector4d.Xz type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Xz - path: opentk/src/OpenTK.Mathematics/Vector/Vector4d.cs - startLine: 879 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs + startLine: 1026 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector2d with the X and Z components of this instance. example: [] syntax: - content: public Vector2d Xz { get; set; } + content: public Vector2d Xz { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector2d @@ -2861,20 +2905,16 @@ items: fullName: OpenTK.Mathematics.Vector4d.Xw type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Xw - path: opentk/src/OpenTK.Mathematics/Vector/Vector4d.cs - startLine: 893 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs + startLine: 1040 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector2d with the X and W components of this instance. example: [] syntax: - content: public Vector2d Xw { get; set; } + content: public Vector2d Xw { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector2d @@ -2892,20 +2932,16 @@ items: fullName: OpenTK.Mathematics.Vector4d.Yx type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Yx - path: opentk/src/OpenTK.Mathematics/Vector/Vector4d.cs - startLine: 907 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs + startLine: 1054 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector2d with the Y and X components of this instance. example: [] syntax: - content: public Vector2d Yx { get; set; } + content: public Vector2d Yx { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector2d @@ -2923,20 +2959,16 @@ items: fullName: OpenTK.Mathematics.Vector4d.Yz type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Yz - path: opentk/src/OpenTK.Mathematics/Vector/Vector4d.cs - startLine: 921 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs + startLine: 1068 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector2d with the Y and Z components of this instance. example: [] syntax: - content: public Vector2d Yz { get; set; } + content: public Vector2d Yz { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector2d @@ -2954,20 +2986,16 @@ items: fullName: OpenTK.Mathematics.Vector4d.Yw type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Yw - path: opentk/src/OpenTK.Mathematics/Vector/Vector4d.cs - startLine: 935 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs + startLine: 1082 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector2d with the Y and W components of this instance. example: [] syntax: - content: public Vector2d Yw { get; set; } + content: public Vector2d Yw { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector2d @@ -2985,20 +3013,16 @@ items: fullName: OpenTK.Mathematics.Vector4d.Zx type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Zx - path: opentk/src/OpenTK.Mathematics/Vector/Vector4d.cs - startLine: 949 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs + startLine: 1096 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector2d with the Z and X components of this instance. example: [] syntax: - content: public Vector2d Zx { get; set; } + content: public Vector2d Zx { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector2d @@ -3016,20 +3040,16 @@ items: fullName: OpenTK.Mathematics.Vector4d.Zy type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Zy - path: opentk/src/OpenTK.Mathematics/Vector/Vector4d.cs - startLine: 963 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs + startLine: 1110 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector2d with the Z and Y components of this instance. example: [] syntax: - content: public Vector2d Zy { get; set; } + content: public Vector2d Zy { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector2d @@ -3047,20 +3067,16 @@ items: fullName: OpenTK.Mathematics.Vector4d.Zw type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Zw - path: opentk/src/OpenTK.Mathematics/Vector/Vector4d.cs - startLine: 977 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs + startLine: 1124 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector2d with the Z and W components of this instance. example: [] syntax: - content: public Vector2d Zw { get; set; } + content: public Vector2d Zw { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector2d @@ -3078,20 +3094,16 @@ items: fullName: OpenTK.Mathematics.Vector4d.Wx type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Wx - path: opentk/src/OpenTK.Mathematics/Vector/Vector4d.cs - startLine: 991 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs + startLine: 1138 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector2d with the W and X components of this instance. example: [] syntax: - content: public Vector2d Wx { get; set; } + content: public Vector2d Wx { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector2d @@ -3109,20 +3121,16 @@ items: fullName: OpenTK.Mathematics.Vector4d.Wy type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Wy - path: opentk/src/OpenTK.Mathematics/Vector/Vector4d.cs - startLine: 1005 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs + startLine: 1152 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector2d with the W and Y components of this instance. example: [] syntax: - content: public Vector2d Wy { get; set; } + content: public Vector2d Wy { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector2d @@ -3140,20 +3148,16 @@ items: fullName: OpenTK.Mathematics.Vector4d.Wz type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Wz - path: opentk/src/OpenTK.Mathematics/Vector/Vector4d.cs - startLine: 1019 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs + startLine: 1166 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector2d with the W and Z components of this instance. example: [] syntax: - content: public Vector2d Wz { get; set; } + content: public Vector2d Wz { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector2d @@ -3171,13 +3175,9 @@ items: fullName: OpenTK.Mathematics.Vector4d.Xyz type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Xyz - path: opentk/src/OpenTK.Mathematics/Vector/Vector4d.cs - startLine: 1033 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs + startLine: 1180 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -3202,20 +3202,16 @@ items: fullName: OpenTK.Mathematics.Vector4d.Xyw type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Xyw - path: opentk/src/OpenTK.Mathematics/Vector/Vector4d.cs - startLine: 1048 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs + startLine: 1195 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector3d with the X, Y, and Z components of this instance. example: [] syntax: - content: public Vector3d Xyw { get; set; } + content: public Vector3d Xyw { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector3d @@ -3233,20 +3229,16 @@ items: fullName: OpenTK.Mathematics.Vector4d.Xzy type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Xzy - path: opentk/src/OpenTK.Mathematics/Vector/Vector4d.cs - startLine: 1063 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs + startLine: 1210 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector3d with the X, Z, and Y components of this instance. example: [] syntax: - content: public Vector3d Xzy { get; set; } + content: public Vector3d Xzy { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector3d @@ -3264,20 +3256,16 @@ items: fullName: OpenTK.Mathematics.Vector4d.Xzw type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Xzw - path: opentk/src/OpenTK.Mathematics/Vector/Vector4d.cs - startLine: 1078 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs + startLine: 1225 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector3d with the X, Z, and W components of this instance. example: [] syntax: - content: public Vector3d Xzw { get; set; } + content: public Vector3d Xzw { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector3d @@ -3295,20 +3283,16 @@ items: fullName: OpenTK.Mathematics.Vector4d.Xwy type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Xwy - path: opentk/src/OpenTK.Mathematics/Vector/Vector4d.cs - startLine: 1093 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs + startLine: 1240 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector3d with the X, W, and Y components of this instance. example: [] syntax: - content: public Vector3d Xwy { get; set; } + content: public Vector3d Xwy { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector3d @@ -3326,20 +3310,16 @@ items: fullName: OpenTK.Mathematics.Vector4d.Xwz type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Xwz - path: opentk/src/OpenTK.Mathematics/Vector/Vector4d.cs - startLine: 1108 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs + startLine: 1255 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector3d with the X, W, and Z components of this instance. example: [] syntax: - content: public Vector3d Xwz { get; set; } + content: public Vector3d Xwz { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector3d @@ -3357,20 +3337,16 @@ items: fullName: OpenTK.Mathematics.Vector4d.Yxz type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Yxz - path: opentk/src/OpenTK.Mathematics/Vector/Vector4d.cs - startLine: 1123 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs + startLine: 1270 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector3d with the Y, X, and Z components of this instance. example: [] syntax: - content: public Vector3d Yxz { get; set; } + content: public Vector3d Yxz { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector3d @@ -3388,20 +3364,16 @@ items: fullName: OpenTK.Mathematics.Vector4d.Yxw type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Yxw - path: opentk/src/OpenTK.Mathematics/Vector/Vector4d.cs - startLine: 1138 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs + startLine: 1285 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector3d with the Y, X, and W components of this instance. example: [] syntax: - content: public Vector3d Yxw { get; set; } + content: public Vector3d Yxw { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector3d @@ -3419,20 +3391,16 @@ items: fullName: OpenTK.Mathematics.Vector4d.Yzx type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Yzx - path: opentk/src/OpenTK.Mathematics/Vector/Vector4d.cs - startLine: 1153 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs + startLine: 1300 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector3d with the Y, Z, and X components of this instance. example: [] syntax: - content: public Vector3d Yzx { get; set; } + content: public Vector3d Yzx { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector3d @@ -3450,20 +3418,16 @@ items: fullName: OpenTK.Mathematics.Vector4d.Yzw type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Yzw - path: opentk/src/OpenTK.Mathematics/Vector/Vector4d.cs - startLine: 1168 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs + startLine: 1315 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector3d with the Y, Z, and W components of this instance. example: [] syntax: - content: public Vector3d Yzw { get; set; } + content: public Vector3d Yzw { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector3d @@ -3481,20 +3445,16 @@ items: fullName: OpenTK.Mathematics.Vector4d.Ywx type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Ywx - path: opentk/src/OpenTK.Mathematics/Vector/Vector4d.cs - startLine: 1183 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs + startLine: 1330 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector3d with the Y, W, and X components of this instance. example: [] syntax: - content: public Vector3d Ywx { get; set; } + content: public Vector3d Ywx { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector3d @@ -3512,20 +3472,16 @@ items: fullName: OpenTK.Mathematics.Vector4d.Ywz type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Ywz - path: opentk/src/OpenTK.Mathematics/Vector/Vector4d.cs - startLine: 1198 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs + startLine: 1345 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector3d with the Y, W, and Z components of this instance. example: [] syntax: - content: public Vector3d Ywz { get; set; } + content: public Vector3d Ywz { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector3d @@ -3543,20 +3499,16 @@ items: fullName: OpenTK.Mathematics.Vector4d.Zxy type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Zxy - path: opentk/src/OpenTK.Mathematics/Vector/Vector4d.cs - startLine: 1213 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs + startLine: 1360 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector3d with the Z, X, and Y components of this instance. example: [] syntax: - content: public Vector3d Zxy { get; set; } + content: public Vector3d Zxy { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector3d @@ -3574,20 +3526,16 @@ items: fullName: OpenTK.Mathematics.Vector4d.Zxw type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Zxw - path: opentk/src/OpenTK.Mathematics/Vector/Vector4d.cs - startLine: 1228 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs + startLine: 1375 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector3d with the Z, X, and W components of this instance. example: [] syntax: - content: public Vector3d Zxw { get; set; } + content: public Vector3d Zxw { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector3d @@ -3605,20 +3553,16 @@ items: fullName: OpenTK.Mathematics.Vector4d.Zyx type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Zyx - path: opentk/src/OpenTK.Mathematics/Vector/Vector4d.cs - startLine: 1243 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs + startLine: 1390 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector3d with the Z, Y, and X components of this instance. example: [] syntax: - content: public Vector3d Zyx { get; set; } + content: public Vector3d Zyx { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector3d @@ -3636,20 +3580,16 @@ items: fullName: OpenTK.Mathematics.Vector4d.Zyw type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Zyw - path: opentk/src/OpenTK.Mathematics/Vector/Vector4d.cs - startLine: 1258 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs + startLine: 1405 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector3d with the Z, Y, and W components of this instance. example: [] syntax: - content: public Vector3d Zyw { get; set; } + content: public Vector3d Zyw { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector3d @@ -3667,20 +3607,16 @@ items: fullName: OpenTK.Mathematics.Vector4d.Zwx type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Zwx - path: opentk/src/OpenTK.Mathematics/Vector/Vector4d.cs - startLine: 1273 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs + startLine: 1420 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector3d with the Z, W, and X components of this instance. example: [] syntax: - content: public Vector3d Zwx { get; set; } + content: public Vector3d Zwx { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector3d @@ -3698,20 +3634,16 @@ items: fullName: OpenTK.Mathematics.Vector4d.Zwy type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Zwy - path: opentk/src/OpenTK.Mathematics/Vector/Vector4d.cs - startLine: 1288 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs + startLine: 1435 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector3d with the Z, W, and Y components of this instance. example: [] syntax: - content: public Vector3d Zwy { get; set; } + content: public Vector3d Zwy { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector3d @@ -3729,20 +3661,16 @@ items: fullName: OpenTK.Mathematics.Vector4d.Wxy type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Wxy - path: opentk/src/OpenTK.Mathematics/Vector/Vector4d.cs - startLine: 1303 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs + startLine: 1450 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector3d with the W, X, and Y components of this instance. example: [] syntax: - content: public Vector3d Wxy { get; set; } + content: public Vector3d Wxy { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector3d @@ -3760,20 +3688,16 @@ items: fullName: OpenTK.Mathematics.Vector4d.Wxz type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Wxz - path: opentk/src/OpenTK.Mathematics/Vector/Vector4d.cs - startLine: 1318 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs + startLine: 1465 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector3d with the W, X, and Z components of this instance. example: [] syntax: - content: public Vector3d Wxz { get; set; } + content: public Vector3d Wxz { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector3d @@ -3791,20 +3715,16 @@ items: fullName: OpenTK.Mathematics.Vector4d.Wyx type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Wyx - path: opentk/src/OpenTK.Mathematics/Vector/Vector4d.cs - startLine: 1333 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs + startLine: 1480 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector3d with the W, Y, and X components of this instance. example: [] syntax: - content: public Vector3d Wyx { get; set; } + content: public Vector3d Wyx { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector3d @@ -3822,20 +3742,16 @@ items: fullName: OpenTK.Mathematics.Vector4d.Wyz type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Wyz - path: opentk/src/OpenTK.Mathematics/Vector/Vector4d.cs - startLine: 1348 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs + startLine: 1495 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector3d with the W, Y, and Z components of this instance. example: [] syntax: - content: public Vector3d Wyz { get; set; } + content: public Vector3d Wyz { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector3d @@ -3853,20 +3769,16 @@ items: fullName: OpenTK.Mathematics.Vector4d.Wzx type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Wzx - path: opentk/src/OpenTK.Mathematics/Vector/Vector4d.cs - startLine: 1363 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs + startLine: 1510 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector3d with the W, Z, and X components of this instance. example: [] syntax: - content: public Vector3d Wzx { get; set; } + content: public Vector3d Wzx { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector3d @@ -3884,20 +3796,16 @@ items: fullName: OpenTK.Mathematics.Vector4d.Wzy type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Wzy - path: opentk/src/OpenTK.Mathematics/Vector/Vector4d.cs - startLine: 1378 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs + startLine: 1525 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector3d with the W, Z, and Y components of this instance. example: [] syntax: - content: public Vector3d Wzy { get; set; } + content: public Vector3d Wzy { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector3d @@ -3915,20 +3823,16 @@ items: fullName: OpenTK.Mathematics.Vector4d.Xywz type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Xywz - path: opentk/src/OpenTK.Mathematics/Vector/Vector4d.cs - startLine: 1393 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs + startLine: 1540 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector4d with the X, Y, W, and Z components of this instance. example: [] syntax: - content: public Vector4d Xywz { get; set; } + content: public Vector4d Xywz { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector4d @@ -3946,20 +3850,16 @@ items: fullName: OpenTK.Mathematics.Vector4d.Xzyw type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Xzyw - path: opentk/src/OpenTK.Mathematics/Vector/Vector4d.cs - startLine: 1409 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs + startLine: 1556 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector4d with the X, Z, Y, and W components of this instance. example: [] syntax: - content: public Vector4d Xzyw { get; set; } + content: public Vector4d Xzyw { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector4d @@ -3977,20 +3877,16 @@ items: fullName: OpenTK.Mathematics.Vector4d.Xzwy type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Xzwy - path: opentk/src/OpenTK.Mathematics/Vector/Vector4d.cs - startLine: 1425 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs + startLine: 1572 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector4d with the X, Z, W, and Y components of this instance. example: [] syntax: - content: public Vector4d Xzwy { get; set; } + content: public Vector4d Xzwy { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector4d @@ -4008,20 +3904,16 @@ items: fullName: OpenTK.Mathematics.Vector4d.Xwyz type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Xwyz - path: opentk/src/OpenTK.Mathematics/Vector/Vector4d.cs - startLine: 1441 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs + startLine: 1588 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector4d with the X, W, Y, and Z components of this instance. example: [] syntax: - content: public Vector4d Xwyz { get; set; } + content: public Vector4d Xwyz { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector4d @@ -4039,20 +3931,16 @@ items: fullName: OpenTK.Mathematics.Vector4d.Xwzy type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Xwzy - path: opentk/src/OpenTK.Mathematics/Vector/Vector4d.cs - startLine: 1457 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs + startLine: 1604 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector4d with the X, W, Z, and Y components of this instance. example: [] syntax: - content: public Vector4d Xwzy { get; set; } + content: public Vector4d Xwzy { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector4d @@ -4070,20 +3958,16 @@ items: fullName: OpenTK.Mathematics.Vector4d.Yxzw type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Yxzw - path: opentk/src/OpenTK.Mathematics/Vector/Vector4d.cs - startLine: 1473 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs + startLine: 1620 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector4d with the Y, X, Z, and W components of this instance. example: [] syntax: - content: public Vector4d Yxzw { get; set; } + content: public Vector4d Yxzw { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector4d @@ -4101,20 +3985,16 @@ items: fullName: OpenTK.Mathematics.Vector4d.Yxwz type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Yxwz - path: opentk/src/OpenTK.Mathematics/Vector/Vector4d.cs - startLine: 1489 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs + startLine: 1636 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector4d with the Y, X, W, and Z components of this instance. example: [] syntax: - content: public Vector4d Yxwz { get; set; } + content: public Vector4d Yxwz { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector4d @@ -4132,20 +4012,16 @@ items: fullName: OpenTK.Mathematics.Vector4d.Yyzw type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Yyzw - path: opentk/src/OpenTK.Mathematics/Vector/Vector4d.cs - startLine: 1505 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs + startLine: 1652 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector4d with the Y, Y, Z, and W components of this instance. example: [] syntax: - content: public Vector4d Yyzw { get; set; } + content: public Vector4d Yyzw { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector4d @@ -4163,20 +4039,16 @@ items: fullName: OpenTK.Mathematics.Vector4d.Yywz type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Yywz - path: opentk/src/OpenTK.Mathematics/Vector/Vector4d.cs - startLine: 1521 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs + startLine: 1668 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector4d with the Y, Y, W, and Z components of this instance. example: [] syntax: - content: public Vector4d Yywz { get; set; } + content: public Vector4d Yywz { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector4d @@ -4194,20 +4066,16 @@ items: fullName: OpenTK.Mathematics.Vector4d.Yzxw type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Yzxw - path: opentk/src/OpenTK.Mathematics/Vector/Vector4d.cs - startLine: 1537 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs + startLine: 1684 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector4d with the Y, Z, X, and W components of this instance. example: [] syntax: - content: public Vector4d Yzxw { get; set; } + content: public Vector4d Yzxw { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector4d @@ -4225,20 +4093,16 @@ items: fullName: OpenTK.Mathematics.Vector4d.Yzwx type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Yzwx - path: opentk/src/OpenTK.Mathematics/Vector/Vector4d.cs - startLine: 1553 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs + startLine: 1700 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector4d with the Y, Z, W, and X components of this instance. example: [] syntax: - content: public Vector4d Yzwx { get; set; } + content: public Vector4d Yzwx { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector4d @@ -4256,20 +4120,16 @@ items: fullName: OpenTK.Mathematics.Vector4d.Ywxz type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Ywxz - path: opentk/src/OpenTK.Mathematics/Vector/Vector4d.cs - startLine: 1569 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs + startLine: 1716 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector4d with the Y, W, X, and Z components of this instance. example: [] syntax: - content: public Vector4d Ywxz { get; set; } + content: public Vector4d Ywxz { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector4d @@ -4287,20 +4147,16 @@ items: fullName: OpenTK.Mathematics.Vector4d.Ywzx type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Ywzx - path: opentk/src/OpenTK.Mathematics/Vector/Vector4d.cs - startLine: 1585 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs + startLine: 1732 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector4d with the Y, W, Z, and X components of this instance. example: [] syntax: - content: public Vector4d Ywzx { get; set; } + content: public Vector4d Ywzx { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector4d @@ -4318,20 +4174,16 @@ items: fullName: OpenTK.Mathematics.Vector4d.Zxyw type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Zxyw - path: opentk/src/OpenTK.Mathematics/Vector/Vector4d.cs - startLine: 1601 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs + startLine: 1748 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector4d with the Z, X, Y, and Z components of this instance. example: [] syntax: - content: public Vector4d Zxyw { get; set; } + content: public Vector4d Zxyw { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector4d @@ -4349,20 +4201,16 @@ items: fullName: OpenTK.Mathematics.Vector4d.Zxwy type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Zxwy - path: opentk/src/OpenTK.Mathematics/Vector/Vector4d.cs - startLine: 1617 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs + startLine: 1764 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector4d with the Z, X, W, and Y components of this instance. example: [] syntax: - content: public Vector4d Zxwy { get; set; } + content: public Vector4d Zxwy { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector4d @@ -4380,20 +4228,16 @@ items: fullName: OpenTK.Mathematics.Vector4d.Zyxw type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Zyxw - path: opentk/src/OpenTK.Mathematics/Vector/Vector4d.cs - startLine: 1633 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs + startLine: 1780 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector4d with the Z, Y, X, and W components of this instance. example: [] syntax: - content: public Vector4d Zyxw { get; set; } + content: public Vector4d Zyxw { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector4d @@ -4411,20 +4255,16 @@ items: fullName: OpenTK.Mathematics.Vector4d.Zywx type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Zywx - path: opentk/src/OpenTK.Mathematics/Vector/Vector4d.cs - startLine: 1649 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs + startLine: 1796 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector4d with the Z, Y, W, and X components of this instance. example: [] syntax: - content: public Vector4d Zywx { get; set; } + content: public Vector4d Zywx { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector4d @@ -4442,20 +4282,16 @@ items: fullName: OpenTK.Mathematics.Vector4d.Zwxy type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Zwxy - path: opentk/src/OpenTK.Mathematics/Vector/Vector4d.cs - startLine: 1665 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs + startLine: 1812 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector4d with the Z, W, X, and Y components of this instance. example: [] syntax: - content: public Vector4d Zwxy { get; set; } + content: public Vector4d Zwxy { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector4d @@ -4473,20 +4309,16 @@ items: fullName: OpenTK.Mathematics.Vector4d.Zwyx type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Zwyx - path: opentk/src/OpenTK.Mathematics/Vector/Vector4d.cs - startLine: 1681 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs + startLine: 1828 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector4d with the Z, W, Y, and X components of this instance. example: [] syntax: - content: public Vector4d Zwyx { get; set; } + content: public Vector4d Zwyx { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector4d @@ -4504,20 +4336,16 @@ items: fullName: OpenTK.Mathematics.Vector4d.Zwzy type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Zwzy - path: opentk/src/OpenTK.Mathematics/Vector/Vector4d.cs - startLine: 1697 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs + startLine: 1844 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector4d with the Z, W, Z, and Y components of this instance. example: [] syntax: - content: public Vector4d Zwzy { get; set; } + content: public Vector4d Zwzy { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector4d @@ -4535,20 +4363,16 @@ items: fullName: OpenTK.Mathematics.Vector4d.Wxyz type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Wxyz - path: opentk/src/OpenTK.Mathematics/Vector/Vector4d.cs - startLine: 1713 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs + startLine: 1860 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector4d with the W, X, Y, and Z components of this instance. example: [] syntax: - content: public Vector4d Wxyz { get; set; } + content: public Vector4d Wxyz { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector4d @@ -4566,20 +4390,16 @@ items: fullName: OpenTK.Mathematics.Vector4d.Wxzy type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Wxzy - path: opentk/src/OpenTK.Mathematics/Vector/Vector4d.cs - startLine: 1729 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs + startLine: 1876 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector4d with the W, X, Z, and Y components of this instance. example: [] syntax: - content: public Vector4d Wxzy { get; set; } + content: public Vector4d Wxzy { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector4d @@ -4597,20 +4417,16 @@ items: fullName: OpenTK.Mathematics.Vector4d.Wyxz type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Wyxz - path: opentk/src/OpenTK.Mathematics/Vector/Vector4d.cs - startLine: 1745 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs + startLine: 1892 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector4d with the W, Y, X, and Z components of this instance. example: [] syntax: - content: public Vector4d Wyxz { get; set; } + content: public Vector4d Wyxz { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector4d @@ -4628,20 +4444,16 @@ items: fullName: OpenTK.Mathematics.Vector4d.Wyzx type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Wyzx - path: opentk/src/OpenTK.Mathematics/Vector/Vector4d.cs - startLine: 1761 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs + startLine: 1908 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector4d with the W, Y, Z, and X components of this instance. example: [] syntax: - content: public Vector4d Wyzx { get; set; } + content: public Vector4d Wyzx { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector4d @@ -4659,20 +4471,16 @@ items: fullName: OpenTK.Mathematics.Vector4d.Wzxy type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Wzxy - path: opentk/src/OpenTK.Mathematics/Vector/Vector4d.cs - startLine: 1777 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs + startLine: 1924 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector4d with the W, Z, X, and Y components of this instance. example: [] syntax: - content: public Vector4d Wzxy { get; set; } + content: public Vector4d Wzxy { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector4d @@ -4690,20 +4498,16 @@ items: fullName: OpenTK.Mathematics.Vector4d.Wzyx type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Wzyx - path: opentk/src/OpenTK.Mathematics/Vector/Vector4d.cs - startLine: 1793 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs + startLine: 1940 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector4d with the W, Z, Y, and X components of this instance. example: [] syntax: - content: public Vector4d Wzyx { get; set; } + content: public Vector4d Wzyx { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector4d @@ -4721,20 +4525,16 @@ items: fullName: OpenTK.Mathematics.Vector4d.Wzyw type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Wzyw - path: opentk/src/OpenTK.Mathematics/Vector/Vector4d.cs - startLine: 1809 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs + startLine: 1956 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector4d with the W, Z, Y, and W components of this instance. example: [] syntax: - content: public Vector4d Wzyw { get; set; } + content: public Vector4d Wzyw { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector4d @@ -4752,13 +4552,9 @@ items: fullName: OpenTK.Mathematics.Vector4d.operator +(OpenTK.Mathematics.Vector4d, OpenTK.Mathematics.Vector4d) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Addition - path: opentk/src/OpenTK.Mathematics/Vector/Vector4d.cs - startLine: 1828 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs + startLine: 1975 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -4803,13 +4599,9 @@ items: fullName: OpenTK.Mathematics.Vector4d.operator -(OpenTK.Mathematics.Vector4d, OpenTK.Mathematics.Vector4d) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Subtraction - path: opentk/src/OpenTK.Mathematics/Vector/Vector4d.cs - startLine: 1844 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs + startLine: 1991 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -4854,13 +4646,9 @@ items: fullName: OpenTK.Mathematics.Vector4d.operator -(OpenTK.Mathematics.Vector4d) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_UnaryNegation - path: opentk/src/OpenTK.Mathematics/Vector/Vector4d.cs - startLine: 1859 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs + startLine: 2006 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -4902,13 +4690,9 @@ items: fullName: OpenTK.Mathematics.Vector4d.operator *(OpenTK.Mathematics.Vector4d, double) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Multiply - path: opentk/src/OpenTK.Mathematics/Vector/Vector4d.cs - startLine: 1875 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs + startLine: 2022 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -4953,13 +4737,9 @@ items: fullName: OpenTK.Mathematics.Vector4d.operator *(double, OpenTK.Mathematics.Vector4d) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Multiply - path: opentk/src/OpenTK.Mathematics/Vector/Vector4d.cs - startLine: 1891 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs + startLine: 2038 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -5004,13 +4784,9 @@ items: fullName: OpenTK.Mathematics.Vector4d.operator *(OpenTK.Mathematics.Vector4d, OpenTK.Mathematics.Vector4d) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Multiply - path: opentk/src/OpenTK.Mathematics/Vector/Vector4d.cs - startLine: 1907 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs + startLine: 2054 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -5055,13 +4831,9 @@ items: fullName: OpenTK.Mathematics.Vector4d.operator *(OpenTK.Mathematics.Vector4d, OpenTK.Mathematics.Matrix4d) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Multiply - path: opentk/src/OpenTK.Mathematics/Vector/Vector4d.cs - startLine: 1923 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs + startLine: 2070 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -5106,13 +4878,9 @@ items: fullName: OpenTK.Mathematics.Vector4d.operator *(OpenTK.Mathematics.Matrix4d, OpenTK.Mathematics.Vector4d) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Multiply - path: opentk/src/OpenTK.Mathematics/Vector/Vector4d.cs - startLine: 1936 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs + startLine: 2083 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -5157,13 +4925,9 @@ items: fullName: OpenTK.Mathematics.Vector4d.operator *(OpenTK.Mathematics.Quaterniond, OpenTK.Mathematics.Vector4d) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Multiply - path: opentk/src/OpenTK.Mathematics/Vector/Vector4d.cs - startLine: 1949 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs + startLine: 2096 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -5208,13 +4972,9 @@ items: fullName: OpenTK.Mathematics.Vector4d.operator /(OpenTK.Mathematics.Vector4d, double) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Division - path: opentk/src/OpenTK.Mathematics/Vector/Vector4d.cs - startLine: 1962 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs + startLine: 2109 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -5259,13 +5019,9 @@ items: fullName: OpenTK.Mathematics.Vector4d.operator /(OpenTK.Mathematics.Vector4d, OpenTK.Mathematics.Vector4d) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Division - path: opentk/src/OpenTK.Mathematics/Vector/Vector4d.cs - startLine: 1978 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs + startLine: 2125 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -5310,13 +5066,9 @@ items: fullName: OpenTK.Mathematics.Vector4d.operator ==(OpenTK.Mathematics.Vector4d, OpenTK.Mathematics.Vector4d) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Equality - path: opentk/src/OpenTK.Mathematics/Vector/Vector4d.cs - startLine: 1994 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs + startLine: 2141 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -5351,13 +5103,9 @@ items: fullName: OpenTK.Mathematics.Vector4d.operator !=(OpenTK.Mathematics.Vector4d, OpenTK.Mathematics.Vector4d) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Inequality - path: opentk/src/OpenTK.Mathematics/Vector/Vector4d.cs - startLine: 2005 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs + startLine: 2152 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -5392,13 +5140,9 @@ items: fullName: OpenTK.Mathematics.Vector4d.explicit operator OpenTK.Mathematics.Vector4(OpenTK.Mathematics.Vector4d) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Explicit - path: opentk/src/OpenTK.Mathematics/Vector/Vector4d.cs - startLine: 2015 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs + startLine: 2162 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -5440,13 +5184,9 @@ items: fullName: OpenTK.Mathematics.Vector4d.explicit operator OpenTK.Mathematics.Vector4h(OpenTK.Mathematics.Vector4d) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Explicit - path: opentk/src/OpenTK.Mathematics/Vector/Vector4d.cs - startLine: 2026 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs + startLine: 2173 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -5488,13 +5228,9 @@ items: fullName: OpenTK.Mathematics.Vector4d.explicit operator OpenTK.Mathematics.Vector4i(OpenTK.Mathematics.Vector4d) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Explicit - path: opentk/src/OpenTK.Mathematics/Vector/Vector4d.cs - startLine: 2037 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs + startLine: 2184 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -5536,13 +5272,9 @@ items: fullName: OpenTK.Mathematics.Vector4d.implicit operator OpenTK.Mathematics.Vector4d((double X, double Y, double Z, double W)) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Implicit - path: opentk/src/OpenTK.Mathematics/Vector/Vector4d.cs - startLine: 2049 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs + startLine: 2196 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -5587,13 +5319,9 @@ items: fullName: OpenTK.Mathematics.Vector4d.ToString() type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Mathematics/Vector/Vector4d.cs - startLine: 2056 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs + startLine: 2203 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -5619,13 +5347,9 @@ items: fullName: OpenTK.Mathematics.Vector4d.ToString(string) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Mathematics/Vector/Vector4d.cs - startLine: 2062 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs + startLine: 2209 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -5662,13 +5386,9 @@ items: fullName: OpenTK.Mathematics.Vector4d.ToString(System.IFormatProvider) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Mathematics/Vector/Vector4d.cs - startLine: 2068 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs + startLine: 2215 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -5702,20 +5422,16 @@ items: fullName: OpenTK.Mathematics.Vector4d.ToString(string, System.IFormatProvider) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Mathematics/Vector/Vector4d.cs - startLine: 2074 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs + startLine: 2221 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Formats the value of the current instance using the specified format. example: [] syntax: - content: public string ToString(string format, IFormatProvider formatProvider) + content: public readonly string ToString(string format, IFormatProvider formatProvider) parameters: - id: format type: System.String @@ -5755,13 +5471,9 @@ items: fullName: OpenTK.Mathematics.Vector4d.Equals(object) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Equals - path: opentk/src/OpenTK.Mathematics/Vector/Vector4d.cs - startLine: 2086 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs + startLine: 2233 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -5794,20 +5506,16 @@ items: fullName: OpenTK.Mathematics.Vector4d.Equals(OpenTK.Mathematics.Vector4d) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Equals - path: opentk/src/OpenTK.Mathematics/Vector/Vector4d.cs - startLine: 2092 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs + startLine: 2239 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Indicates whether the current object is equal to another object of the same type. example: [] syntax: - content: public bool Equals(Vector4d other) + content: public readonly bool Equals(Vector4d other) parameters: - id: other type: OpenTK.Mathematics.Vector4d @@ -5831,20 +5539,16 @@ items: fullName: OpenTK.Mathematics.Vector4d.GetHashCode() type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetHashCode - path: opentk/src/OpenTK.Mathematics/Vector/Vector4d.cs - startLine: 2101 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs + startLine: 2248 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Returns the hash code for this instance. example: [] syntax: - content: public override int GetHashCode() + content: public override readonly int GetHashCode() return: type: System.Int32 description: A 32-bit signed integer that is the hash code for this instance. @@ -5863,13 +5567,9 @@ items: fullName: OpenTK.Mathematics.Vector4d.Deconstruct(out double, out double, out double, out double) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4d.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Deconstruct - path: opentk/src/OpenTK.Mathematics/Vector/Vector4d.cs - startLine: 2113 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4d.cs + startLine: 2260 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -5879,7 +5579,7 @@ items: content: >- [Pure] - public void Deconstruct(out double x, out double y, out double z, out double w) + public readonly void Deconstruct(out double x, out double y, out double z, out double w) parameters: - id: x type: System.Double @@ -6215,6 +5915,12 @@ references: name: Length nameWithType: Vector4d.Length fullName: OpenTK.Mathematics.Vector4d.Length +- uid: OpenTK.Mathematics.Vector4d.ReciprocalLengthFast* + commentId: Overload:OpenTK.Mathematics.Vector4d.ReciprocalLengthFast + href: OpenTK.Mathematics.Vector4d.html#OpenTK_Mathematics_Vector4d_ReciprocalLengthFast + name: ReciprocalLengthFast + nameWithType: Vector4d.ReciprocalLengthFast + fullName: OpenTK.Mathematics.Vector4d.ReciprocalLengthFast - uid: OpenTK.Mathematics.Vector4d.Length commentId: P:OpenTK.Mathematics.Vector4d.Length href: OpenTK.Mathematics.Vector4d.html#OpenTK_Mathematics_Vector4d_Length @@ -6251,6 +5957,12 @@ references: name: NormalizeFast nameWithType: Vector4d.NormalizeFast fullName: OpenTK.Mathematics.Vector4d.NormalizeFast +- uid: OpenTK.Mathematics.Vector4d.Abs* + commentId: Overload:OpenTK.Mathematics.Vector4d.Abs + href: OpenTK.Mathematics.Vector4d.html#OpenTK_Mathematics_Vector4d_Abs + name: Abs + nameWithType: Vector4d.Abs + fullName: OpenTK.Mathematics.Vector4d.Abs - uid: OpenTK.Mathematics.Vector4d.Add* commentId: Overload:OpenTK.Mathematics.Vector4d.Add href: OpenTK.Mathematics.Vector4d.html#OpenTK_Mathematics_Vector4d_Add_OpenTK_Mathematics_Vector4d_OpenTK_Mathematics_Vector4d_ @@ -6317,6 +6029,83 @@ references: name: Lerp nameWithType: Vector4d.Lerp fullName: OpenTK.Mathematics.Vector4d.Lerp +- uid: OpenTK.Mathematics.Vector4d.Slerp* + commentId: Overload:OpenTK.Mathematics.Vector4d.Slerp + href: OpenTK.Mathematics.Vector4d.html#OpenTK_Mathematics_Vector4d_Slerp_OpenTK_Mathematics_Vector4d_OpenTK_Mathematics_Vector4d_System_Double_ + name: Slerp + nameWithType: Vector4d.Slerp + fullName: OpenTK.Mathematics.Vector4d.Slerp +- uid: OpenTK.Mathematics.MathHelper.Elerp(System.Double,System.Double,System.Double) + commentId: M:OpenTK.Mathematics.MathHelper.Elerp(System.Double,System.Double,System.Double) + isExternal: true + href: OpenTK.Mathematics.MathHelper.html#OpenTK_Mathematics_MathHelper_Elerp_System_Double_System_Double_System_Double_ + name: Elerp(double, double, double) + nameWithType: MathHelper.Elerp(double, double, double) + fullName: OpenTK.Mathematics.MathHelper.Elerp(double, double, double) + nameWithType.vb: MathHelper.Elerp(Double, Double, Double) + fullName.vb: OpenTK.Mathematics.MathHelper.Elerp(Double, Double, Double) + name.vb: Elerp(Double, Double, Double) + spec.csharp: + - uid: OpenTK.Mathematics.MathHelper.Elerp(System.Double,System.Double,System.Double) + name: Elerp + href: OpenTK.Mathematics.MathHelper.html#OpenTK_Mathematics_MathHelper_Elerp_System_Double_System_Double_System_Double_ + - name: ( + - uid: System.Double + name: double + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.double + - name: ',' + - name: " " + - uid: System.Double + name: double + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.double + - name: ',' + - name: " " + - uid: System.Double + name: double + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.double + - name: ) + spec.vb: + - uid: OpenTK.Mathematics.MathHelper.Elerp(System.Double,System.Double,System.Double) + name: Elerp + href: OpenTK.Mathematics.MathHelper.html#OpenTK_Mathematics_MathHelper_Elerp_System_Double_System_Double_System_Double_ + - name: ( + - uid: System.Double + name: Double + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.double + - name: ',' + - name: " " + - uid: System.Double + name: Double + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.double + - name: ',' + - name: " " + - uid: System.Double + name: Double + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.double + - name: ) +- uid: OpenTK.Mathematics.Vector4d.Elerp* + commentId: Overload:OpenTK.Mathematics.Vector4d.Elerp + href: OpenTK.Mathematics.Vector4d.html#OpenTK_Mathematics_Vector4d_Elerp_OpenTK_Mathematics_Vector4d_OpenTK_Mathematics_Vector4d_System_Single_ + name: Elerp + nameWithType: Vector4d.Elerp + fullName: OpenTK.Mathematics.Vector4d.Elerp +- uid: System.Single + commentId: T:System.Single + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.single + name: float + nameWithType: float + fullName: float + nameWithType.vb: Single + fullName.vb: Single + name.vb: Single - uid: OpenTK.Mathematics.Vector4d.BaryCentric* commentId: Overload:OpenTK.Mathematics.Vector4d.BaryCentric href: OpenTK.Mathematics.Vector4d.html#OpenTK_Mathematics_Vector4d_BaryCentric_OpenTK_Mathematics_Vector4d_OpenTK_Mathematics_Vector4d_OpenTK_Mathematics_Vector4d_System_Double_System_Double_ diff --git a/api/OpenTK.Mathematics.Vector4h.yml b/api/OpenTK.Mathematics.Vector4h.yml index 30ec01c1..d3bb581c 100644 --- a/api/OpenTK.Mathematics.Vector4h.yml +++ b/api/OpenTK.Mathematics.Vector4h.yml @@ -107,13 +107,9 @@ items: fullName: OpenTK.Mathematics.Vector4h type: Struct source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Vector4h - path: opentk/src/OpenTK.Mathematics/Vector/Vector4h.cs - startLine: 36 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4h.cs + startLine: 35 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -152,13 +148,9 @@ items: fullName: OpenTK.Mathematics.Vector4h.X type: Field source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: X - path: opentk/src/OpenTK.Mathematics/Vector/Vector4h.cs - startLine: 43 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4h.cs + startLine: 42 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -181,13 +173,9 @@ items: fullName: OpenTK.Mathematics.Vector4h.Y type: Field source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Y - path: opentk/src/OpenTK.Mathematics/Vector/Vector4h.cs - startLine: 48 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4h.cs + startLine: 47 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -210,13 +198,9 @@ items: fullName: OpenTK.Mathematics.Vector4h.Z type: Field source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Z - path: opentk/src/OpenTK.Mathematics/Vector/Vector4h.cs - startLine: 53 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4h.cs + startLine: 52 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -239,13 +223,9 @@ items: fullName: OpenTK.Mathematics.Vector4h.W type: Field source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: W - path: opentk/src/OpenTK.Mathematics/Vector/Vector4h.cs - startLine: 58 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4h.cs + startLine: 57 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -268,13 +248,9 @@ items: fullName: OpenTK.Mathematics.Vector4h.SizeInBytes type: Field source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SizeInBytes - path: opentk/src/OpenTK.Mathematics/Vector/Vector4h.cs - startLine: 63 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4h.cs + startLine: 62 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -297,13 +273,9 @@ items: fullName: OpenTK.Mathematics.Vector4h.Vector4h(System.Half) type: Constructor source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Mathematics/Vector/Vector4h.cs - startLine: 69 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4h.cs + startLine: 68 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -332,13 +304,9 @@ items: fullName: OpenTK.Mathematics.Vector4h.Vector4h(float) type: Constructor source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Mathematics/Vector/Vector4h.cs - startLine: 81 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4h.cs + startLine: 80 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -367,13 +335,9 @@ items: fullName: OpenTK.Mathematics.Vector4h.Vector4h(System.Half, System.Half, System.Half, System.Half) type: Constructor source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Mathematics/Vector/Vector4h.cs - startLine: 96 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4h.cs + startLine: 95 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -411,13 +375,9 @@ items: fullName: OpenTK.Mathematics.Vector4h.Vector4h(float, float, float, float) type: Constructor source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Mathematics/Vector/Vector4h.cs - startLine: 111 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4h.cs + startLine: 110 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -455,13 +415,9 @@ items: fullName: OpenTK.Mathematics.Vector4h.Vector4h(OpenTK.Mathematics.Vector2h, float, float) type: Constructor source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Mathematics/Vector/Vector4h.cs - startLine: 125 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4h.cs + startLine: 124 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -496,13 +452,9 @@ items: fullName: OpenTK.Mathematics.Vector4h.Vector4h(OpenTK.Mathematics.Vector2h, System.Half, System.Half) type: Constructor source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Mathematics/Vector/Vector4h.cs - startLine: 139 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4h.cs + startLine: 138 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -537,13 +489,9 @@ items: fullName: OpenTK.Mathematics.Vector4h.Vector4h(OpenTK.Mathematics.Vector3h, float) type: Constructor source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Mathematics/Vector/Vector4h.cs - startLine: 152 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4h.cs + startLine: 151 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -575,13 +523,9 @@ items: fullName: OpenTK.Mathematics.Vector4h.Vector4h(OpenTK.Mathematics.Vector3h, System.Half) type: Constructor source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Mathematics/Vector/Vector4h.cs - startLine: 165 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4h.cs + startLine: 164 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -613,13 +557,9 @@ items: fullName: OpenTK.Mathematics.Vector4h.Xy type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Xy - path: opentk/src/OpenTK.Mathematics/Vector/Vector4h.cs - startLine: 176 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4h.cs + startLine: 175 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -644,20 +584,16 @@ items: fullName: OpenTK.Mathematics.Vector4h.Xz type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Xz - path: opentk/src/OpenTK.Mathematics/Vector/Vector4h.cs - startLine: 190 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4h.cs + startLine: 189 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector2h with the X and Z components of this instance. example: [] syntax: - content: public Vector2h Xz { get; set; } + content: public Vector2h Xz { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector2h @@ -675,20 +611,16 @@ items: fullName: OpenTK.Mathematics.Vector4h.Xw type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Xw - path: opentk/src/OpenTK.Mathematics/Vector/Vector4h.cs - startLine: 204 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4h.cs + startLine: 203 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector2h with the X and W components of this instance. example: [] syntax: - content: public Vector2h Xw { get; set; } + content: public Vector2h Xw { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector2h @@ -706,20 +638,16 @@ items: fullName: OpenTK.Mathematics.Vector4h.Yx type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Yx - path: opentk/src/OpenTK.Mathematics/Vector/Vector4h.cs - startLine: 218 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4h.cs + startLine: 217 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector2h with the Y and X components of this instance. example: [] syntax: - content: public Vector2h Yx { get; set; } + content: public Vector2h Yx { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector2h @@ -737,20 +665,16 @@ items: fullName: OpenTK.Mathematics.Vector4h.Yz type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Yz - path: opentk/src/OpenTK.Mathematics/Vector/Vector4h.cs - startLine: 232 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4h.cs + startLine: 231 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector2h with the Y and Z components of this instance. example: [] syntax: - content: public Vector2h Yz { get; set; } + content: public Vector2h Yz { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector2h @@ -768,20 +692,16 @@ items: fullName: OpenTK.Mathematics.Vector4h.Yw type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Yw - path: opentk/src/OpenTK.Mathematics/Vector/Vector4h.cs - startLine: 246 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4h.cs + startLine: 245 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector2h with the Y and W components of this instance. example: [] syntax: - content: public Vector2h Yw { get; set; } + content: public Vector2h Yw { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector2h @@ -799,20 +719,16 @@ items: fullName: OpenTK.Mathematics.Vector4h.Zx type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Zx - path: opentk/src/OpenTK.Mathematics/Vector/Vector4h.cs - startLine: 260 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4h.cs + startLine: 259 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector2h with the Z and X components of this instance. example: [] syntax: - content: public Vector2h Zx { get; set; } + content: public Vector2h Zx { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector2h @@ -830,20 +746,16 @@ items: fullName: OpenTK.Mathematics.Vector4h.Zy type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Zy - path: opentk/src/OpenTK.Mathematics/Vector/Vector4h.cs - startLine: 274 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4h.cs + startLine: 273 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector2h with the Z and Y components of this instance. example: [] syntax: - content: public Vector2h Zy { get; set; } + content: public Vector2h Zy { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector2h @@ -861,20 +773,16 @@ items: fullName: OpenTK.Mathematics.Vector4h.Zw type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Zw - path: opentk/src/OpenTK.Mathematics/Vector/Vector4h.cs - startLine: 288 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4h.cs + startLine: 287 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector2h with the Z and W components of this instance. example: [] syntax: - content: public Vector2h Zw { get; set; } + content: public Vector2h Zw { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector2h @@ -892,20 +800,16 @@ items: fullName: OpenTK.Mathematics.Vector4h.Wx type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Wx - path: opentk/src/OpenTK.Mathematics/Vector/Vector4h.cs - startLine: 302 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4h.cs + startLine: 301 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector2h with the W and X components of this instance. example: [] syntax: - content: public Vector2h Wx { get; set; } + content: public Vector2h Wx { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector2h @@ -923,20 +827,16 @@ items: fullName: OpenTK.Mathematics.Vector4h.Wy type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Wy - path: opentk/src/OpenTK.Mathematics/Vector/Vector4h.cs - startLine: 316 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4h.cs + startLine: 315 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector2h with the W and Y components of this instance. example: [] syntax: - content: public Vector2h Wy { get; set; } + content: public Vector2h Wy { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector2h @@ -954,20 +854,16 @@ items: fullName: OpenTK.Mathematics.Vector4h.Wz type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Wz - path: opentk/src/OpenTK.Mathematics/Vector/Vector4h.cs - startLine: 330 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4h.cs + startLine: 329 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector2h with the W and Z components of this instance. example: [] syntax: - content: public Vector2h Wz { get; set; } + content: public Vector2h Wz { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector2h @@ -985,13 +881,9 @@ items: fullName: OpenTK.Mathematics.Vector4h.Xyz type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Xyz - path: opentk/src/OpenTK.Mathematics/Vector/Vector4h.cs - startLine: 344 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4h.cs + startLine: 343 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1016,20 +908,16 @@ items: fullName: OpenTK.Mathematics.Vector4h.Xyw type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Xyw - path: opentk/src/OpenTK.Mathematics/Vector/Vector4h.cs - startLine: 359 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4h.cs + startLine: 358 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector3h with the X, Y, and Z components of this instance. example: [] syntax: - content: public Vector3h Xyw { get; set; } + content: public Vector3h Xyw { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector3h @@ -1047,20 +935,16 @@ items: fullName: OpenTK.Mathematics.Vector4h.Xzy type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Xzy - path: opentk/src/OpenTK.Mathematics/Vector/Vector4h.cs - startLine: 374 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4h.cs + startLine: 373 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector3h with the X, Z, and Y components of this instance. example: [] syntax: - content: public Vector3h Xzy { get; set; } + content: public Vector3h Xzy { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector3h @@ -1078,20 +962,16 @@ items: fullName: OpenTK.Mathematics.Vector4h.Xzw type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Xzw - path: opentk/src/OpenTK.Mathematics/Vector/Vector4h.cs - startLine: 389 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4h.cs + startLine: 388 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector3h with the X, Z, and W components of this instance. example: [] syntax: - content: public Vector3h Xzw { get; set; } + content: public Vector3h Xzw { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector3h @@ -1109,20 +989,16 @@ items: fullName: OpenTK.Mathematics.Vector4h.Xwy type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Xwy - path: opentk/src/OpenTK.Mathematics/Vector/Vector4h.cs - startLine: 404 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4h.cs + startLine: 403 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector3h with the X, W, and Y components of this instance. example: [] syntax: - content: public Vector3h Xwy { get; set; } + content: public Vector3h Xwy { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector3h @@ -1140,20 +1016,16 @@ items: fullName: OpenTK.Mathematics.Vector4h.Xwz type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Xwz - path: opentk/src/OpenTK.Mathematics/Vector/Vector4h.cs - startLine: 419 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4h.cs + startLine: 418 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector3h with the X, W, and Z components of this instance. example: [] syntax: - content: public Vector3h Xwz { get; set; } + content: public Vector3h Xwz { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector3h @@ -1171,20 +1043,16 @@ items: fullName: OpenTK.Mathematics.Vector4h.Yxz type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Yxz - path: opentk/src/OpenTK.Mathematics/Vector/Vector4h.cs - startLine: 434 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4h.cs + startLine: 433 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector3h with the Y, X, and Z components of this instance. example: [] syntax: - content: public Vector3h Yxz { get; set; } + content: public Vector3h Yxz { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector3h @@ -1202,20 +1070,16 @@ items: fullName: OpenTK.Mathematics.Vector4h.Yxw type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Yxw - path: opentk/src/OpenTK.Mathematics/Vector/Vector4h.cs - startLine: 449 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4h.cs + startLine: 448 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector3h with the Y, X, and W components of this instance. example: [] syntax: - content: public Vector3h Yxw { get; set; } + content: public Vector3h Yxw { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector3h @@ -1233,20 +1097,16 @@ items: fullName: OpenTK.Mathematics.Vector4h.Yzx type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Yzx - path: opentk/src/OpenTK.Mathematics/Vector/Vector4h.cs - startLine: 464 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4h.cs + startLine: 463 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector3h with the Y, Z, and X components of this instance. example: [] syntax: - content: public Vector3h Yzx { get; set; } + content: public Vector3h Yzx { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector3h @@ -1264,20 +1124,16 @@ items: fullName: OpenTK.Mathematics.Vector4h.Yzw type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Yzw - path: opentk/src/OpenTK.Mathematics/Vector/Vector4h.cs - startLine: 479 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4h.cs + startLine: 478 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector3h with the Y, Z, and W components of this instance. example: [] syntax: - content: public Vector3h Yzw { get; set; } + content: public Vector3h Yzw { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector3h @@ -1295,20 +1151,16 @@ items: fullName: OpenTK.Mathematics.Vector4h.Ywx type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Ywx - path: opentk/src/OpenTK.Mathematics/Vector/Vector4h.cs - startLine: 494 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4h.cs + startLine: 493 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector3h with the Y, W, and X components of this instance. example: [] syntax: - content: public Vector3h Ywx { get; set; } + content: public Vector3h Ywx { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector3h @@ -1326,20 +1178,16 @@ items: fullName: OpenTK.Mathematics.Vector4h.Ywz type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Ywz - path: opentk/src/OpenTK.Mathematics/Vector/Vector4h.cs - startLine: 509 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4h.cs + startLine: 508 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector3h with the Y, W, and Z components of this instance. example: [] syntax: - content: public Vector3h Ywz { get; set; } + content: public Vector3h Ywz { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector3h @@ -1357,20 +1205,16 @@ items: fullName: OpenTK.Mathematics.Vector4h.Zxy type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Zxy - path: opentk/src/OpenTK.Mathematics/Vector/Vector4h.cs - startLine: 524 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4h.cs + startLine: 523 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector3h with the Z, X, and Y components of this instance. example: [] syntax: - content: public Vector3h Zxy { get; set; } + content: public Vector3h Zxy { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector3h @@ -1388,20 +1232,16 @@ items: fullName: OpenTK.Mathematics.Vector4h.Zxw type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Zxw - path: opentk/src/OpenTK.Mathematics/Vector/Vector4h.cs - startLine: 539 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4h.cs + startLine: 538 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector3h with the Z, X, and W components of this instance. example: [] syntax: - content: public Vector3h Zxw { get; set; } + content: public Vector3h Zxw { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector3h @@ -1419,20 +1259,16 @@ items: fullName: OpenTK.Mathematics.Vector4h.Zyx type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Zyx - path: opentk/src/OpenTK.Mathematics/Vector/Vector4h.cs - startLine: 554 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4h.cs + startLine: 553 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector3h with the Z, Y, and X components of this instance. example: [] syntax: - content: public Vector3h Zyx { get; set; } + content: public Vector3h Zyx { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector3h @@ -1450,20 +1286,16 @@ items: fullName: OpenTK.Mathematics.Vector4h.Zyw type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Zyw - path: opentk/src/OpenTK.Mathematics/Vector/Vector4h.cs - startLine: 569 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4h.cs + startLine: 568 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector3h with the Z, Y, and W components of this instance. example: [] syntax: - content: public Vector3h Zyw { get; set; } + content: public Vector3h Zyw { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector3h @@ -1481,20 +1313,16 @@ items: fullName: OpenTK.Mathematics.Vector4h.Zwx type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Zwx - path: opentk/src/OpenTK.Mathematics/Vector/Vector4h.cs - startLine: 584 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4h.cs + startLine: 583 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector3h with the Z, W, and X components of this instance. example: [] syntax: - content: public Vector3h Zwx { get; set; } + content: public Vector3h Zwx { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector3h @@ -1512,20 +1340,16 @@ items: fullName: OpenTK.Mathematics.Vector4h.Zwy type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Zwy - path: opentk/src/OpenTK.Mathematics/Vector/Vector4h.cs - startLine: 599 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4h.cs + startLine: 598 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector3h with the Z, W, and Y components of this instance. example: [] syntax: - content: public Vector3h Zwy { get; set; } + content: public Vector3h Zwy { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector3h @@ -1543,20 +1367,16 @@ items: fullName: OpenTK.Mathematics.Vector4h.Wxy type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Wxy - path: opentk/src/OpenTK.Mathematics/Vector/Vector4h.cs - startLine: 614 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4h.cs + startLine: 613 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector3h with the W, X, and Y components of this instance. example: [] syntax: - content: public Vector3h Wxy { get; set; } + content: public Vector3h Wxy { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector3h @@ -1574,20 +1394,16 @@ items: fullName: OpenTK.Mathematics.Vector4h.Wxz type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Wxz - path: opentk/src/OpenTK.Mathematics/Vector/Vector4h.cs - startLine: 629 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4h.cs + startLine: 628 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector3h with the W, X, and Z components of this instance. example: [] syntax: - content: public Vector3h Wxz { get; set; } + content: public Vector3h Wxz { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector3h @@ -1605,20 +1421,16 @@ items: fullName: OpenTK.Mathematics.Vector4h.Wyx type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Wyx - path: opentk/src/OpenTK.Mathematics/Vector/Vector4h.cs - startLine: 644 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4h.cs + startLine: 643 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector3h with the W, Y, and X components of this instance. example: [] syntax: - content: public Vector3h Wyx { get; set; } + content: public Vector3h Wyx { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector3h @@ -1636,20 +1448,16 @@ items: fullName: OpenTK.Mathematics.Vector4h.Wyz type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Wyz - path: opentk/src/OpenTK.Mathematics/Vector/Vector4h.cs - startLine: 659 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4h.cs + startLine: 658 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector3h with the W, Y, and Z components of this instance. example: [] syntax: - content: public Vector3h Wyz { get; set; } + content: public Vector3h Wyz { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector3h @@ -1667,20 +1475,16 @@ items: fullName: OpenTK.Mathematics.Vector4h.Wzx type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Wzx - path: opentk/src/OpenTK.Mathematics/Vector/Vector4h.cs - startLine: 674 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4h.cs + startLine: 673 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector3h with the W, Z, and X components of this instance. example: [] syntax: - content: public Vector3h Wzx { get; set; } + content: public Vector3h Wzx { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector3h @@ -1698,20 +1502,16 @@ items: fullName: OpenTK.Mathematics.Vector4h.Wzy type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Wzy - path: opentk/src/OpenTK.Mathematics/Vector/Vector4h.cs - startLine: 689 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4h.cs + startLine: 688 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector3h with the W, Z, and Y components of this instance. example: [] syntax: - content: public Vector3h Wzy { get; set; } + content: public Vector3h Wzy { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector3h @@ -1729,20 +1529,16 @@ items: fullName: OpenTK.Mathematics.Vector4h.Xywz type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Xywz - path: opentk/src/OpenTK.Mathematics/Vector/Vector4h.cs - startLine: 704 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4h.cs + startLine: 703 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector4h with the X, Y, W, and Z components of this instance. example: [] syntax: - content: public Vector4h Xywz { get; set; } + content: public Vector4h Xywz { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector4h @@ -1760,20 +1556,16 @@ items: fullName: OpenTK.Mathematics.Vector4h.Xzyw type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Xzyw - path: opentk/src/OpenTK.Mathematics/Vector/Vector4h.cs - startLine: 720 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4h.cs + startLine: 719 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector4h with the X, Z, Y, and W components of this instance. example: [] syntax: - content: public Vector4h Xzyw { get; set; } + content: public Vector4h Xzyw { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector4h @@ -1791,20 +1583,16 @@ items: fullName: OpenTK.Mathematics.Vector4h.Xzwy type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Xzwy - path: opentk/src/OpenTK.Mathematics/Vector/Vector4h.cs - startLine: 736 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4h.cs + startLine: 735 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector4h with the X, Z, W, and Y components of this instance. example: [] syntax: - content: public Vector4h Xzwy { get; set; } + content: public Vector4h Xzwy { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector4h @@ -1822,20 +1610,16 @@ items: fullName: OpenTK.Mathematics.Vector4h.Xwyz type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Xwyz - path: opentk/src/OpenTK.Mathematics/Vector/Vector4h.cs - startLine: 752 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4h.cs + startLine: 751 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector4h with the X, W, Y, and Z components of this instance. example: [] syntax: - content: public Vector4h Xwyz { get; set; } + content: public Vector4h Xwyz { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector4h @@ -1853,20 +1637,16 @@ items: fullName: OpenTK.Mathematics.Vector4h.Xwzy type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Xwzy - path: opentk/src/OpenTK.Mathematics/Vector/Vector4h.cs - startLine: 768 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4h.cs + startLine: 767 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector4h with the X, W, Z, and Y components of this instance. example: [] syntax: - content: public Vector4h Xwzy { get; set; } + content: public Vector4h Xwzy { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector4h @@ -1884,20 +1664,16 @@ items: fullName: OpenTK.Mathematics.Vector4h.Yxzw type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Yxzw - path: opentk/src/OpenTK.Mathematics/Vector/Vector4h.cs - startLine: 784 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4h.cs + startLine: 783 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector4h with the Y, X, Z, and W components of this instance. example: [] syntax: - content: public Vector4h Yxzw { get; set; } + content: public Vector4h Yxzw { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector4h @@ -1915,20 +1691,16 @@ items: fullName: OpenTK.Mathematics.Vector4h.Yxwz type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Yxwz - path: opentk/src/OpenTK.Mathematics/Vector/Vector4h.cs - startLine: 800 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4h.cs + startLine: 799 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector4h with the Y, X, W, and Z components of this instance. example: [] syntax: - content: public Vector4h Yxwz { get; set; } + content: public Vector4h Yxwz { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector4h @@ -1946,20 +1718,16 @@ items: fullName: OpenTK.Mathematics.Vector4h.Yyzw type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Yyzw - path: opentk/src/OpenTK.Mathematics/Vector/Vector4h.cs - startLine: 816 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4h.cs + startLine: 815 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector4h with the Y, Y, Z, and W components of this instance. example: [] syntax: - content: public Vector4h Yyzw { get; set; } + content: public Vector4h Yyzw { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector4h @@ -1977,20 +1745,16 @@ items: fullName: OpenTK.Mathematics.Vector4h.Yywz type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Yywz - path: opentk/src/OpenTK.Mathematics/Vector/Vector4h.cs - startLine: 832 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4h.cs + startLine: 831 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector4h with the Y, Y, W, and Z components of this instance. example: [] syntax: - content: public Vector4h Yywz { get; set; } + content: public Vector4h Yywz { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector4h @@ -2008,20 +1772,16 @@ items: fullName: OpenTK.Mathematics.Vector4h.Yzxw type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Yzxw - path: opentk/src/OpenTK.Mathematics/Vector/Vector4h.cs - startLine: 848 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4h.cs + startLine: 847 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector4h with the Y, Z, X, and W components of this instance. example: [] syntax: - content: public Vector4h Yzxw { get; set; } + content: public Vector4h Yzxw { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector4h @@ -2039,20 +1799,16 @@ items: fullName: OpenTK.Mathematics.Vector4h.Yzwx type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Yzwx - path: opentk/src/OpenTK.Mathematics/Vector/Vector4h.cs - startLine: 864 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4h.cs + startLine: 863 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector4h with the Y, Z, W, and X components of this instance. example: [] syntax: - content: public Vector4h Yzwx { get; set; } + content: public Vector4h Yzwx { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector4h @@ -2070,20 +1826,16 @@ items: fullName: OpenTK.Mathematics.Vector4h.Ywxz type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Ywxz - path: opentk/src/OpenTK.Mathematics/Vector/Vector4h.cs - startLine: 880 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4h.cs + startLine: 879 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector4h with the Y, W, X, and Z components of this instance. example: [] syntax: - content: public Vector4h Ywxz { get; set; } + content: public Vector4h Ywxz { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector4h @@ -2101,20 +1853,16 @@ items: fullName: OpenTK.Mathematics.Vector4h.Ywzx type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Ywzx - path: opentk/src/OpenTK.Mathematics/Vector/Vector4h.cs - startLine: 896 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4h.cs + startLine: 895 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector4h with the Y, W, Z, and X components of this instance. example: [] syntax: - content: public Vector4h Ywzx { get; set; } + content: public Vector4h Ywzx { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector4h @@ -2132,20 +1880,16 @@ items: fullName: OpenTK.Mathematics.Vector4h.Zxyw type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Zxyw - path: opentk/src/OpenTK.Mathematics/Vector/Vector4h.cs - startLine: 912 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4h.cs + startLine: 911 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector4h with the Z, X, Y, and Z components of this instance. example: [] syntax: - content: public Vector4h Zxyw { get; set; } + content: public Vector4h Zxyw { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector4h @@ -2163,20 +1907,16 @@ items: fullName: OpenTK.Mathematics.Vector4h.Zxwy type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Zxwy - path: opentk/src/OpenTK.Mathematics/Vector/Vector4h.cs - startLine: 928 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4h.cs + startLine: 927 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector4h with the Z, X, W, and Y components of this instance. example: [] syntax: - content: public Vector4h Zxwy { get; set; } + content: public Vector4h Zxwy { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector4h @@ -2194,20 +1934,16 @@ items: fullName: OpenTK.Mathematics.Vector4h.Zyxw type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Zyxw - path: opentk/src/OpenTK.Mathematics/Vector/Vector4h.cs - startLine: 944 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4h.cs + startLine: 943 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector4h with the Z, Y, X, and W components of this instance. example: [] syntax: - content: public Vector4h Zyxw { get; set; } + content: public Vector4h Zyxw { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector4h @@ -2225,20 +1961,16 @@ items: fullName: OpenTK.Mathematics.Vector4h.Zywx type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Zywx - path: opentk/src/OpenTK.Mathematics/Vector/Vector4h.cs - startLine: 960 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4h.cs + startLine: 959 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector4h with the Z, Y, W, and X components of this instance. example: [] syntax: - content: public Vector4h Zywx { get; set; } + content: public Vector4h Zywx { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector4h @@ -2256,20 +1988,16 @@ items: fullName: OpenTK.Mathematics.Vector4h.Zwxy type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Zwxy - path: opentk/src/OpenTK.Mathematics/Vector/Vector4h.cs - startLine: 976 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4h.cs + startLine: 975 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector4h with the Z, W, X, and Y components of this instance. example: [] syntax: - content: public Vector4h Zwxy { get; set; } + content: public Vector4h Zwxy { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector4h @@ -2287,20 +2015,16 @@ items: fullName: OpenTK.Mathematics.Vector4h.Zwyx type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Zwyx - path: opentk/src/OpenTK.Mathematics/Vector/Vector4h.cs - startLine: 992 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4h.cs + startLine: 991 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector4h with the Z, W, Y, and X components of this instance. example: [] syntax: - content: public Vector4h Zwyx { get; set; } + content: public Vector4h Zwyx { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector4h @@ -2318,20 +2042,16 @@ items: fullName: OpenTK.Mathematics.Vector4h.Zwzy type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Zwzy - path: opentk/src/OpenTK.Mathematics/Vector/Vector4h.cs - startLine: 1008 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4h.cs + startLine: 1007 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector4h with the Z, W, Z, and Y components of this instance. example: [] syntax: - content: public Vector4h Zwzy { get; set; } + content: public Vector4h Zwzy { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector4h @@ -2349,20 +2069,16 @@ items: fullName: OpenTK.Mathematics.Vector4h.Wxyz type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Wxyz - path: opentk/src/OpenTK.Mathematics/Vector/Vector4h.cs - startLine: 1024 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4h.cs + startLine: 1023 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector4h with the W, X, Y, and Z components of this instance. example: [] syntax: - content: public Vector4h Wxyz { get; set; } + content: public Vector4h Wxyz { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector4h @@ -2380,20 +2096,16 @@ items: fullName: OpenTK.Mathematics.Vector4h.Wxzy type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Wxzy - path: opentk/src/OpenTK.Mathematics/Vector/Vector4h.cs - startLine: 1040 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4h.cs + startLine: 1039 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector4h with the W, X, Z, and Y components of this instance. example: [] syntax: - content: public Vector4h Wxzy { get; set; } + content: public Vector4h Wxzy { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector4h @@ -2411,20 +2123,16 @@ items: fullName: OpenTK.Mathematics.Vector4h.Wyxz type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Wyxz - path: opentk/src/OpenTK.Mathematics/Vector/Vector4h.cs - startLine: 1056 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4h.cs + startLine: 1055 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector4h with the W, Y, X, and Z components of this instance. example: [] syntax: - content: public Vector4h Wyxz { get; set; } + content: public Vector4h Wyxz { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector4h @@ -2442,20 +2150,16 @@ items: fullName: OpenTK.Mathematics.Vector4h.Wyzx type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Wyzx - path: opentk/src/OpenTK.Mathematics/Vector/Vector4h.cs - startLine: 1072 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4h.cs + startLine: 1071 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector4h with the W, Y, Z, and X components of this instance. example: [] syntax: - content: public Vector4h Wyzx { get; set; } + content: public Vector4h Wyzx { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector4h @@ -2473,20 +2177,16 @@ items: fullName: OpenTK.Mathematics.Vector4h.Wzxy type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Wzxy - path: opentk/src/OpenTK.Mathematics/Vector/Vector4h.cs - startLine: 1088 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4h.cs + startLine: 1087 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector4h with the W, Z, X, and Y components of this instance. example: [] syntax: - content: public Vector4h Wzxy { get; set; } + content: public Vector4h Wzxy { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector4h @@ -2504,20 +2204,16 @@ items: fullName: OpenTK.Mathematics.Vector4h.Wzyx type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Wzyx - path: opentk/src/OpenTK.Mathematics/Vector/Vector4h.cs - startLine: 1104 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4h.cs + startLine: 1103 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector4h with the W, Z, Y, and X components of this instance. example: [] syntax: - content: public Vector4h Wzyx { get; set; } + content: public Vector4h Wzyx { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector4h @@ -2535,20 +2231,16 @@ items: fullName: OpenTK.Mathematics.Vector4h.Wzyw type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Wzyw - path: opentk/src/OpenTK.Mathematics/Vector/Vector4h.cs - startLine: 1120 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4h.cs + startLine: 1119 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets an OpenTK.Vector4h with the W, Z, Y, and W components of this instance. example: [] syntax: - content: public Vector4h Wzyw { get; set; } + content: public Vector4h Wzyw { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector4h @@ -2566,20 +2258,16 @@ items: fullName: OpenTK.Mathematics.Vector4h.ToVector4() type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToVector4 - path: opentk/src/OpenTK.Mathematics/Vector/Vector4h.cs - startLine: 1137 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4h.cs + startLine: 1136 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Returns this Half4 instance's contents as Vector4. example: [] syntax: - content: public Vector4 ToVector4() + content: public readonly Vector4 ToVector4() return: type: OpenTK.Mathematics.Vector4 description: The vector. @@ -2597,20 +2285,16 @@ items: fullName: OpenTK.Mathematics.Vector4h.ToVector4d() type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToVector4d - path: opentk/src/OpenTK.Mathematics/Vector/Vector4h.cs - startLine: 1146 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4h.cs + startLine: 1145 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Returns this Half4 instance's contents as Vector4d. example: [] syntax: - content: public Vector4d ToVector4d() + content: public readonly Vector4d ToVector4d() return: type: OpenTK.Mathematics.Vector4d description: The vector. @@ -2628,13 +2312,9 @@ items: fullName: OpenTK.Mathematics.Vector4h.implicit operator OpenTK.Mathematics.Vector4(OpenTK.Mathematics.Vector4h) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Implicit - path: opentk/src/OpenTK.Mathematics/Vector/Vector4h.cs - startLine: 1156 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4h.cs + startLine: 1155 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2676,13 +2356,9 @@ items: fullName: OpenTK.Mathematics.Vector4h.implicit operator OpenTK.Mathematics.Vector4d(OpenTK.Mathematics.Vector4h) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Implicit - path: opentk/src/OpenTK.Mathematics/Vector/Vector4h.cs - startLine: 1167 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4h.cs + startLine: 1166 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2724,13 +2400,9 @@ items: fullName: OpenTK.Mathematics.Vector4h.explicit operator OpenTK.Mathematics.Vector4i(OpenTK.Mathematics.Vector4h) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Explicit - path: opentk/src/OpenTK.Mathematics/Vector/Vector4h.cs - startLine: 1178 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4h.cs + startLine: 1177 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2772,13 +2444,9 @@ items: fullName: OpenTK.Mathematics.Vector4h.implicit operator OpenTK.Mathematics.Vector4h((System.Half X, System.Half Y, System.Half Z, System.Half W)) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Implicit - path: opentk/src/OpenTK.Mathematics/Vector/Vector4h.cs - startLine: 1190 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4h.cs + startLine: 1189 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2823,13 +2491,9 @@ items: fullName: OpenTK.Mathematics.Vector4h.operator ==(OpenTK.Mathematics.Vector4h, OpenTK.Mathematics.Vector4h) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Equality - path: opentk/src/OpenTK.Mathematics/Vector/Vector4h.cs - startLine: 1202 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4h.cs + startLine: 1201 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2864,13 +2528,9 @@ items: fullName: OpenTK.Mathematics.Vector4h.operator !=(OpenTK.Mathematics.Vector4h, OpenTK.Mathematics.Vector4h) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Inequality - path: opentk/src/OpenTK.Mathematics/Vector/Vector4h.cs - startLine: 1213 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4h.cs + startLine: 1212 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2905,13 +2565,9 @@ items: fullName: OpenTK.Mathematics.Vector4h.Vector4h(System.Runtime.Serialization.SerializationInfo, System.Runtime.Serialization.StreamingContext) type: Constructor source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Mathematics/Vector/Vector4h.cs - startLine: 1223 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4h.cs + startLine: 1222 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2943,20 +2599,16 @@ items: fullName: OpenTK.Mathematics.Vector4h.GetObjectData(System.Runtime.Serialization.SerializationInfo, System.Runtime.Serialization.StreamingContext) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetObjectData - path: opentk/src/OpenTK.Mathematics/Vector/Vector4h.cs - startLine: 1232 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4h.cs + startLine: 1231 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Populates a with the data needed to serialize the target object. example: [] syntax: - content: public void GetObjectData(SerializationInfo info, StreamingContext context) + content: public readonly void GetObjectData(SerializationInfo info, StreamingContext context) parameters: - id: info type: System.Runtime.Serialization.SerializationInfo @@ -2984,13 +2636,9 @@ items: fullName: OpenTK.Mathematics.Vector4h.ToString() type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Mathematics/Vector/Vector4h.cs - startLine: 1241 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4h.cs + startLine: 1240 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -3016,13 +2664,9 @@ items: fullName: OpenTK.Mathematics.Vector4h.ToString(string) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Mathematics/Vector/Vector4h.cs - startLine: 1247 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4h.cs + startLine: 1246 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -3059,13 +2703,9 @@ items: fullName: OpenTK.Mathematics.Vector4h.ToString(System.IFormatProvider) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Mathematics/Vector/Vector4h.cs - startLine: 1253 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4h.cs + startLine: 1252 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -3099,13 +2739,9 @@ items: fullName: OpenTK.Mathematics.Vector4h.ToString(string, System.IFormatProvider) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Mathematics/Vector/Vector4h.cs - startLine: 1259 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4h.cs + startLine: 1258 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -3152,13 +2788,9 @@ items: fullName: OpenTK.Mathematics.Vector4h.Equals(object) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Equals - path: opentk/src/OpenTK.Mathematics/Vector/Vector4h.cs - startLine: 1271 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4h.cs + startLine: 1270 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -3191,13 +2823,9 @@ items: fullName: OpenTK.Mathematics.Vector4h.Equals(OpenTK.Mathematics.Vector4h) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Equals - path: opentk/src/OpenTK.Mathematics/Vector/Vector4h.cs - startLine: 1277 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4h.cs + startLine: 1276 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -3228,20 +2856,16 @@ items: fullName: OpenTK.Mathematics.Vector4h.GetHashCode() type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetHashCode - path: opentk/src/OpenTK.Mathematics/Vector/Vector4h.cs - startLine: 1286 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4h.cs + startLine: 1285 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Returns the hash code for this instance. example: [] syntax: - content: public override int GetHashCode() + content: public override readonly int GetHashCode() return: type: System.Int32 description: A 32-bit signed integer that is the hash code for this instance. @@ -3260,13 +2884,9 @@ items: fullName: OpenTK.Mathematics.Vector4h.Deconstruct(out System.Half, out System.Half, out System.Half, out System.Half) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4h.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Deconstruct - path: opentk/src/OpenTK.Mathematics/Vector/Vector4h.cs - startLine: 1298 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4h.cs + startLine: 1297 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -3276,7 +2896,7 @@ items: content: >- [Pure] - public void Deconstruct(out Half x, out Half y, out Half z, out Half w) + public readonly void Deconstruct(out Half x, out Half y, out Half z, out Half w) parameters: - id: x type: System.Half diff --git a/api/OpenTK.Mathematics.Vector4i.yml b/api/OpenTK.Mathematics.Vector4i.yml index 3edfd011..4ffe3221 100644 --- a/api/OpenTK.Mathematics.Vector4i.yml +++ b/api/OpenTK.Mathematics.Vector4i.yml @@ -9,6 +9,9 @@ items: - OpenTK.Mathematics.Vector4i.#ctor(OpenTK.Mathematics.Vector3i,System.Int32) - OpenTK.Mathematics.Vector4i.#ctor(System.Int32) - OpenTK.Mathematics.Vector4i.#ctor(System.Int32,System.Int32,System.Int32,System.Int32) + - OpenTK.Mathematics.Vector4i.Abs + - OpenTK.Mathematics.Vector4i.Abs(OpenTK.Mathematics.Vector4i) + - OpenTK.Mathematics.Vector4i.Abs(OpenTK.Mathematics.Vector4i@,OpenTK.Mathematics.Vector4i@) - OpenTK.Mathematics.Vector4i.Add(OpenTK.Mathematics.Vector4i,OpenTK.Mathematics.Vector4i) - OpenTK.Mathematics.Vector4i.Add(OpenTK.Mathematics.Vector4i@,OpenTK.Mathematics.Vector4i@,OpenTK.Mathematics.Vector4i@) - OpenTK.Mathematics.Vector4i.Clamp(OpenTK.Mathematics.Vector4i,OpenTK.Mathematics.Vector4i,OpenTK.Mathematics.Vector4i) @@ -137,12 +140,8 @@ items: fullName: OpenTK.Mathematics.Vector4i type: Struct source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Vector4i - path: opentk/src/OpenTK.Mathematics/Vector/Vector4i.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4i.cs startLine: 24 assemblies: - OpenTK.Mathematics @@ -182,12 +181,8 @@ items: fullName: OpenTK.Mathematics.Vector4i.X type: Field source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: X - path: opentk/src/OpenTK.Mathematics/Vector/Vector4i.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4i.cs startLine: 31 assemblies: - OpenTK.Mathematics @@ -211,12 +206,8 @@ items: fullName: OpenTK.Mathematics.Vector4i.Y type: Field source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Y - path: opentk/src/OpenTK.Mathematics/Vector/Vector4i.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4i.cs startLine: 36 assemblies: - OpenTK.Mathematics @@ -240,12 +231,8 @@ items: fullName: OpenTK.Mathematics.Vector4i.Z type: Field source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Z - path: opentk/src/OpenTK.Mathematics/Vector/Vector4i.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4i.cs startLine: 41 assemblies: - OpenTK.Mathematics @@ -269,12 +256,8 @@ items: fullName: OpenTK.Mathematics.Vector4i.W type: Field source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: W - path: opentk/src/OpenTK.Mathematics/Vector/Vector4i.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4i.cs startLine: 46 assemblies: - OpenTK.Mathematics @@ -298,12 +281,8 @@ items: fullName: OpenTK.Mathematics.Vector4i.Vector4i(int) type: Constructor source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Mathematics/Vector/Vector4i.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4i.cs startLine: 52 assemblies: - OpenTK.Mathematics @@ -333,12 +312,8 @@ items: fullName: OpenTK.Mathematics.Vector4i.Vector4i(int, int, int, int) type: Constructor source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Mathematics/Vector/Vector4i.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4i.cs startLine: 67 assemblies: - OpenTK.Mathematics @@ -377,12 +352,8 @@ items: fullName: OpenTK.Mathematics.Vector4i.Vector4i(OpenTK.Mathematics.Vector2i, int, int) type: Constructor source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Mathematics/Vector/Vector4i.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4i.cs startLine: 81 assemblies: - OpenTK.Mathematics @@ -418,12 +389,8 @@ items: fullName: OpenTK.Mathematics.Vector4i.Vector4i(OpenTK.Mathematics.Vector3i, int) type: Constructor source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Mathematics/Vector/Vector4i.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4i.cs startLine: 94 assemblies: - OpenTK.Mathematics @@ -456,12 +423,8 @@ items: fullName: OpenTK.Mathematics.Vector4i.this[int] type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: this[] - path: opentk/src/OpenTK.Mathematics/Vector/Vector4i.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4i.cs startLine: 107 assemblies: - OpenTK.Mathematics @@ -469,7 +432,7 @@ items: summary: Gets or sets the value at the index of the vector. example: [] syntax: - content: public int this[int index] { get; set; } + content: public int this[int index] { readonly get; set; } parameters: - id: index type: System.Int32 @@ -497,12 +460,8 @@ items: fullName: OpenTK.Mathematics.Vector4i.ManhattanLength type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ManhattanLength - path: opentk/src/OpenTK.Mathematics/Vector/Vector4i.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4i.cs startLine: 162 assemblies: - OpenTK.Mathematics @@ -510,7 +469,7 @@ items: summary: Gets the manhattan length of the vector. example: [] syntax: - content: public int ManhattanLength { get; } + content: public readonly int ManhattanLength { get; } parameters: [] return: type: System.Int32 @@ -528,12 +487,8 @@ items: fullName: OpenTK.Mathematics.Vector4i.EuclideanLengthSquared type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: EuclideanLengthSquared - path: opentk/src/OpenTK.Mathematics/Vector/Vector4i.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4i.cs startLine: 167 assemblies: - OpenTK.Mathematics @@ -541,7 +496,7 @@ items: summary: Gets the squared euclidean length of the vector. example: [] syntax: - content: public int EuclideanLengthSquared { get; } + content: public readonly int EuclideanLengthSquared { get; } parameters: [] return: type: System.Int32 @@ -559,12 +514,8 @@ items: fullName: OpenTK.Mathematics.Vector4i.EuclideanLength type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: EuclideanLength - path: opentk/src/OpenTK.Mathematics/Vector/Vector4i.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4i.cs startLine: 172 assemblies: - OpenTK.Mathematics @@ -572,12 +523,39 @@ items: summary: Gets the euclidean length of the vector. example: [] syntax: - content: public float EuclideanLength { get; } + content: public readonly float EuclideanLength { get; } parameters: [] return: type: System.Single content.vb: Public ReadOnly Property EuclideanLength As Single overload: OpenTK.Mathematics.Vector4i.EuclideanLength* +- uid: OpenTK.Mathematics.Vector4i.Abs + commentId: M:OpenTK.Mathematics.Vector4i.Abs + id: Abs + parent: OpenTK.Mathematics.Vector4i + langs: + - csharp + - vb + name: Abs() + nameWithType: Vector4i.Abs() + fullName: OpenTK.Mathematics.Vector4i.Abs() + type: Method + source: + id: Abs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4i.cs + startLine: 178 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: Returns a new vector that is the component-wise absolute value of the vector. + example: [] + syntax: + content: public readonly Vector4i Abs() + return: + type: OpenTK.Mathematics.Vector4i + description: The component-wise absolute value vector. + content.vb: Public Function Abs() As Vector4i + overload: OpenTK.Mathematics.Vector4i.Abs* - uid: OpenTK.Mathematics.Vector4i.UnitX commentId: F:OpenTK.Mathematics.Vector4i.UnitX id: UnitX @@ -590,13 +568,9 @@ items: fullName: OpenTK.Mathematics.Vector4i.UnitX type: Field source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: UnitX - path: opentk/src/OpenTK.Mathematics/Vector/Vector4i.cs - startLine: 177 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4i.cs + startLine: 191 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -619,13 +593,9 @@ items: fullName: OpenTK.Mathematics.Vector4i.UnitY type: Field source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: UnitY - path: opentk/src/OpenTK.Mathematics/Vector/Vector4i.cs - startLine: 182 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4i.cs + startLine: 196 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -648,13 +618,9 @@ items: fullName: OpenTK.Mathematics.Vector4i.UnitZ type: Field source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: UnitZ - path: opentk/src/OpenTK.Mathematics/Vector/Vector4i.cs - startLine: 187 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4i.cs + startLine: 201 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -677,13 +643,9 @@ items: fullName: OpenTK.Mathematics.Vector4i.UnitW type: Field source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: UnitW - path: opentk/src/OpenTK.Mathematics/Vector/Vector4i.cs - startLine: 192 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4i.cs + startLine: 206 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -706,13 +668,9 @@ items: fullName: OpenTK.Mathematics.Vector4i.Zero type: Field source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Zero - path: opentk/src/OpenTK.Mathematics/Vector/Vector4i.cs - startLine: 197 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4i.cs + startLine: 211 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -735,13 +693,9 @@ items: fullName: OpenTK.Mathematics.Vector4i.One type: Field source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: One - path: opentk/src/OpenTK.Mathematics/Vector/Vector4i.cs - startLine: 202 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4i.cs + startLine: 216 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -764,13 +718,9 @@ items: fullName: OpenTK.Mathematics.Vector4i.SizeInBytes type: Field source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SizeInBytes - path: opentk/src/OpenTK.Mathematics/Vector/Vector4i.cs - startLine: 207 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4i.cs + startLine: 221 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -793,13 +743,9 @@ items: fullName: OpenTK.Mathematics.Vector4i.Add(OpenTK.Mathematics.Vector4i, OpenTK.Mathematics.Vector4i) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Add - path: opentk/src/OpenTK.Mathematics/Vector/Vector4i.cs - startLine: 215 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4i.cs + startLine: 229 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -841,13 +787,9 @@ items: fullName: OpenTK.Mathematics.Vector4i.Add(in OpenTK.Mathematics.Vector4i, in OpenTK.Mathematics.Vector4i, out OpenTK.Mathematics.Vector4i) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Add - path: opentk/src/OpenTK.Mathematics/Vector/Vector4i.cs - startLine: 228 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4i.cs + startLine: 242 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -882,13 +824,9 @@ items: fullName: OpenTK.Mathematics.Vector4i.Subtract(OpenTK.Mathematics.Vector4i, OpenTK.Mathematics.Vector4i) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Subtract - path: opentk/src/OpenTK.Mathematics/Vector/Vector4i.cs - startLine: 242 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4i.cs + startLine: 256 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -930,13 +868,9 @@ items: fullName: OpenTK.Mathematics.Vector4i.Subtract(in OpenTK.Mathematics.Vector4i, in OpenTK.Mathematics.Vector4i, out OpenTK.Mathematics.Vector4i) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Subtract - path: opentk/src/OpenTK.Mathematics/Vector/Vector4i.cs - startLine: 255 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4i.cs + startLine: 269 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -971,13 +905,9 @@ items: fullName: OpenTK.Mathematics.Vector4i.Multiply(OpenTK.Mathematics.Vector4i, int) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Multiply - path: opentk/src/OpenTK.Mathematics/Vector/Vector4i.cs - startLine: 269 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4i.cs + startLine: 283 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1022,13 +952,9 @@ items: fullName: OpenTK.Mathematics.Vector4i.Multiply(in OpenTK.Mathematics.Vector4i, int, out OpenTK.Mathematics.Vector4i) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Multiply - path: opentk/src/OpenTK.Mathematics/Vector/Vector4i.cs - startLine: 282 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4i.cs + startLine: 296 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1063,13 +989,9 @@ items: fullName: OpenTK.Mathematics.Vector4i.Multiply(OpenTK.Mathematics.Vector4i, OpenTK.Mathematics.Vector4i) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Multiply - path: opentk/src/OpenTK.Mathematics/Vector/Vector4i.cs - startLine: 296 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4i.cs + startLine: 310 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1111,13 +1033,9 @@ items: fullName: OpenTK.Mathematics.Vector4i.Multiply(in OpenTK.Mathematics.Vector4i, in OpenTK.Mathematics.Vector4i, out OpenTK.Mathematics.Vector4i) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Multiply - path: opentk/src/OpenTK.Mathematics/Vector/Vector4i.cs - startLine: 309 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4i.cs + startLine: 323 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1152,13 +1070,9 @@ items: fullName: OpenTK.Mathematics.Vector4i.Divide(OpenTK.Mathematics.Vector4i, int) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Divide - path: opentk/src/OpenTK.Mathematics/Vector/Vector4i.cs - startLine: 323 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4i.cs + startLine: 337 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1203,13 +1117,9 @@ items: fullName: OpenTK.Mathematics.Vector4i.Divide(in OpenTK.Mathematics.Vector4i, int, out OpenTK.Mathematics.Vector4i) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Divide - path: opentk/src/OpenTK.Mathematics/Vector/Vector4i.cs - startLine: 336 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4i.cs + startLine: 350 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1244,13 +1154,9 @@ items: fullName: OpenTK.Mathematics.Vector4i.Divide(OpenTK.Mathematics.Vector4i, OpenTK.Mathematics.Vector4i) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Divide - path: opentk/src/OpenTK.Mathematics/Vector/Vector4i.cs - startLine: 350 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4i.cs + startLine: 364 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1292,13 +1198,9 @@ items: fullName: OpenTK.Mathematics.Vector4i.Divide(in OpenTK.Mathematics.Vector4i, in OpenTK.Mathematics.Vector4i, out OpenTK.Mathematics.Vector4i) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Divide - path: opentk/src/OpenTK.Mathematics/Vector/Vector4i.cs - startLine: 363 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4i.cs + startLine: 377 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1333,13 +1235,9 @@ items: fullName: OpenTK.Mathematics.Vector4i.ComponentMin(OpenTK.Mathematics.Vector4i, OpenTK.Mathematics.Vector4i) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ComponentMin - path: opentk/src/OpenTK.Mathematics/Vector/Vector4i.cs - startLine: 377 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4i.cs + startLine: 391 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1381,13 +1279,9 @@ items: fullName: OpenTK.Mathematics.Vector4i.ComponentMin(in OpenTK.Mathematics.Vector4i, in OpenTK.Mathematics.Vector4i, out OpenTK.Mathematics.Vector4i) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ComponentMin - path: opentk/src/OpenTK.Mathematics/Vector/Vector4i.cs - startLine: 394 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4i.cs + startLine: 408 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1422,13 +1316,9 @@ items: fullName: OpenTK.Mathematics.Vector4i.ComponentMax(OpenTK.Mathematics.Vector4i, OpenTK.Mathematics.Vector4i) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ComponentMax - path: opentk/src/OpenTK.Mathematics/Vector/Vector4i.cs - startLine: 408 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4i.cs + startLine: 422 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1470,13 +1360,9 @@ items: fullName: OpenTK.Mathematics.Vector4i.ComponentMax(in OpenTK.Mathematics.Vector4i, in OpenTK.Mathematics.Vector4i, out OpenTK.Mathematics.Vector4i) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ComponentMax - path: opentk/src/OpenTK.Mathematics/Vector/Vector4i.cs - startLine: 425 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4i.cs + startLine: 439 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1511,13 +1397,9 @@ items: fullName: OpenTK.Mathematics.Vector4i.Clamp(OpenTK.Mathematics.Vector4i, OpenTK.Mathematics.Vector4i, OpenTK.Mathematics.Vector4i) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Clamp - path: opentk/src/OpenTK.Mathematics/Vector/Vector4i.cs - startLine: 440 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4i.cs + startLine: 454 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1562,13 +1444,9 @@ items: fullName: OpenTK.Mathematics.Vector4i.Clamp(in OpenTK.Mathematics.Vector4i, in OpenTK.Mathematics.Vector4i, in OpenTK.Mathematics.Vector4i, out OpenTK.Mathematics.Vector4i) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Clamp - path: opentk/src/OpenTK.Mathematics/Vector/Vector4i.cs - startLine: 458 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4i.cs + startLine: 472 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1594,6 +1472,71 @@ items: nameWithType.vb: Vector4i.Clamp(Vector4i, Vector4i, Vector4i, Vector4i) fullName.vb: OpenTK.Mathematics.Vector4i.Clamp(OpenTK.Mathematics.Vector4i, OpenTK.Mathematics.Vector4i, OpenTK.Mathematics.Vector4i, OpenTK.Mathematics.Vector4i) name.vb: Clamp(Vector4i, Vector4i, Vector4i, Vector4i) +- uid: OpenTK.Mathematics.Vector4i.Abs(OpenTK.Mathematics.Vector4i) + commentId: M:OpenTK.Mathematics.Vector4i.Abs(OpenTK.Mathematics.Vector4i) + id: Abs(OpenTK.Mathematics.Vector4i) + parent: OpenTK.Mathematics.Vector4i + langs: + - csharp + - vb + name: Abs(Vector4i) + nameWithType: Vector4i.Abs(Vector4i) + fullName: OpenTK.Mathematics.Vector4i.Abs(OpenTK.Mathematics.Vector4i) + type: Method + source: + id: Abs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4i.cs + startLine: 485 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: Take the component-wise absolute value of a vector. + example: [] + syntax: + content: public static Vector4i Abs(Vector4i vec) + parameters: + - id: vec + type: OpenTK.Mathematics.Vector4i + description: The vector to apply component-wise absolute value to. + return: + type: OpenTK.Mathematics.Vector4i + description: The component-wise absolute value vector. + content.vb: Public Shared Function Abs(vec As Vector4i) As Vector4i + overload: OpenTK.Mathematics.Vector4i.Abs* +- uid: OpenTK.Mathematics.Vector4i.Abs(OpenTK.Mathematics.Vector4i@,OpenTK.Mathematics.Vector4i@) + commentId: M:OpenTK.Mathematics.Vector4i.Abs(OpenTK.Mathematics.Vector4i@,OpenTK.Mathematics.Vector4i@) + id: Abs(OpenTK.Mathematics.Vector4i@,OpenTK.Mathematics.Vector4i@) + parent: OpenTK.Mathematics.Vector4i + langs: + - csharp + - vb + name: Abs(in Vector4i, out Vector4i) + nameWithType: Vector4i.Abs(in Vector4i, out Vector4i) + fullName: OpenTK.Mathematics.Vector4i.Abs(in OpenTK.Mathematics.Vector4i, out OpenTK.Mathematics.Vector4i) + type: Method + source: + id: Abs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4i.cs + startLine: 499 + assemblies: + - OpenTK.Mathematics + namespace: OpenTK.Mathematics + summary: Take the component-wise absolute value of a vector. + example: [] + syntax: + content: public static void Abs(in Vector4i vec, out Vector4i result) + parameters: + - id: vec + type: OpenTK.Mathematics.Vector4i + description: The vector to apply component-wise absolute value to. + - id: result + type: OpenTK.Mathematics.Vector4i + description: The component-wise absolute value vector. + content.vb: Public Shared Sub Abs(vec As Vector4i, result As Vector4i) + overload: OpenTK.Mathematics.Vector4i.Abs* + nameWithType.vb: Vector4i.Abs(Vector4i, Vector4i) + fullName.vb: OpenTK.Mathematics.Vector4i.Abs(OpenTK.Mathematics.Vector4i, OpenTK.Mathematics.Vector4i) + name.vb: Abs(Vector4i, Vector4i) - uid: OpenTK.Mathematics.Vector4i.Xy commentId: P:OpenTK.Mathematics.Vector4i.Xy id: Xy @@ -1606,13 +1549,9 @@ items: fullName: OpenTK.Mathematics.Vector4i.Xy type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Xy - path: opentk/src/OpenTK.Mathematics/Vector/Vector4i.cs - startLine: 469 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4i.cs + startLine: 510 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -1637,20 +1576,16 @@ items: fullName: OpenTK.Mathematics.Vector4i.Xz type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Xz - path: opentk/src/OpenTK.Mathematics/Vector/Vector4i.cs - startLine: 483 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4i.cs + startLine: 524 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets a with the X and Z components of this instance. example: [] syntax: - content: public Vector2i Xz { get; set; } + content: public Vector2i Xz { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector2i @@ -1668,20 +1603,16 @@ items: fullName: OpenTK.Mathematics.Vector4i.Xw type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Xw - path: opentk/src/OpenTK.Mathematics/Vector/Vector4i.cs - startLine: 497 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4i.cs + startLine: 538 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets a with the X and W components of this instance. example: [] syntax: - content: public Vector2i Xw { get; set; } + content: public Vector2i Xw { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector2i @@ -1699,20 +1630,16 @@ items: fullName: OpenTK.Mathematics.Vector4i.Yx type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Yx - path: opentk/src/OpenTK.Mathematics/Vector/Vector4i.cs - startLine: 511 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4i.cs + startLine: 552 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets a with the Y and X components of this instance. example: [] syntax: - content: public Vector2i Yx { get; set; } + content: public Vector2i Yx { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector2i @@ -1730,20 +1657,16 @@ items: fullName: OpenTK.Mathematics.Vector4i.Yz type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Yz - path: opentk/src/OpenTK.Mathematics/Vector/Vector4i.cs - startLine: 525 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4i.cs + startLine: 566 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets a with the Y and Z components of this instance. example: [] syntax: - content: public Vector2i Yz { get; set; } + content: public Vector2i Yz { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector2i @@ -1761,20 +1684,16 @@ items: fullName: OpenTK.Mathematics.Vector4i.Yw type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Yw - path: opentk/src/OpenTK.Mathematics/Vector/Vector4i.cs - startLine: 539 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4i.cs + startLine: 580 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets a with the Y and W components of this instance. example: [] syntax: - content: public Vector2i Yw { get; set; } + content: public Vector2i Yw { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector2i @@ -1792,20 +1711,16 @@ items: fullName: OpenTK.Mathematics.Vector4i.Zx type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Zx - path: opentk/src/OpenTK.Mathematics/Vector/Vector4i.cs - startLine: 553 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4i.cs + startLine: 594 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets a with the Z and X components of this instance. example: [] syntax: - content: public Vector2i Zx { get; set; } + content: public Vector2i Zx { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector2i @@ -1823,20 +1738,16 @@ items: fullName: OpenTK.Mathematics.Vector4i.Zy type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Zy - path: opentk/src/OpenTK.Mathematics/Vector/Vector4i.cs - startLine: 567 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4i.cs + startLine: 608 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets a with the Z and Y components of this instance. example: [] syntax: - content: public Vector2i Zy { get; set; } + content: public Vector2i Zy { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector2i @@ -1854,20 +1765,16 @@ items: fullName: OpenTK.Mathematics.Vector4i.Zw type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Zw - path: opentk/src/OpenTK.Mathematics/Vector/Vector4i.cs - startLine: 581 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4i.cs + startLine: 622 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets a with the Z and W components of this instance. example: [] syntax: - content: public Vector2i Zw { get; set; } + content: public Vector2i Zw { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector2i @@ -1885,20 +1792,16 @@ items: fullName: OpenTK.Mathematics.Vector4i.Wx type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Wx - path: opentk/src/OpenTK.Mathematics/Vector/Vector4i.cs - startLine: 595 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4i.cs + startLine: 636 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets a with the W and X components of this instance. example: [] syntax: - content: public Vector2i Wx { get; set; } + content: public Vector2i Wx { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector2i @@ -1916,20 +1819,16 @@ items: fullName: OpenTK.Mathematics.Vector4i.Wy type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Wy - path: opentk/src/OpenTK.Mathematics/Vector/Vector4i.cs - startLine: 609 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4i.cs + startLine: 650 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets a with the W and Y components of this instance. example: [] syntax: - content: public Vector2i Wy { get; set; } + content: public Vector2i Wy { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector2i @@ -1947,20 +1846,16 @@ items: fullName: OpenTK.Mathematics.Vector4i.Wz type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Wz - path: opentk/src/OpenTK.Mathematics/Vector/Vector4i.cs - startLine: 623 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4i.cs + startLine: 664 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets a with the W and Z components of this instance. example: [] syntax: - content: public Vector2i Wz { get; set; } + content: public Vector2i Wz { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector2i @@ -1978,13 +1873,9 @@ items: fullName: OpenTK.Mathematics.Vector4i.Xyz type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Xyz - path: opentk/src/OpenTK.Mathematics/Vector/Vector4i.cs - startLine: 637 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4i.cs + startLine: 678 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -2009,20 +1900,16 @@ items: fullName: OpenTK.Mathematics.Vector4i.Xyw type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Xyw - path: opentk/src/OpenTK.Mathematics/Vector/Vector4i.cs - startLine: 652 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4i.cs + startLine: 693 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets a with the X, Y, and Z components of this instance. example: [] syntax: - content: public Vector3i Xyw { get; set; } + content: public Vector3i Xyw { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector3i @@ -2040,20 +1927,16 @@ items: fullName: OpenTK.Mathematics.Vector4i.Xzy type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Xzy - path: opentk/src/OpenTK.Mathematics/Vector/Vector4i.cs - startLine: 667 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4i.cs + startLine: 708 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets a with the X, Z, and Y components of this instance. example: [] syntax: - content: public Vector3i Xzy { get; set; } + content: public Vector3i Xzy { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector3i @@ -2071,20 +1954,16 @@ items: fullName: OpenTK.Mathematics.Vector4i.Xzw type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Xzw - path: opentk/src/OpenTK.Mathematics/Vector/Vector4i.cs - startLine: 682 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4i.cs + startLine: 723 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets a with the X, Z, and W components of this instance. example: [] syntax: - content: public Vector3i Xzw { get; set; } + content: public Vector3i Xzw { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector3i @@ -2102,20 +1981,16 @@ items: fullName: OpenTK.Mathematics.Vector4i.Xwy type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Xwy - path: opentk/src/OpenTK.Mathematics/Vector/Vector4i.cs - startLine: 697 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4i.cs + startLine: 738 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets a with the X, W, and Y components of this instance. example: [] syntax: - content: public Vector3i Xwy { get; set; } + content: public Vector3i Xwy { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector3i @@ -2133,20 +2008,16 @@ items: fullName: OpenTK.Mathematics.Vector4i.Xwz type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Xwz - path: opentk/src/OpenTK.Mathematics/Vector/Vector4i.cs - startLine: 712 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4i.cs + startLine: 753 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets a with the X, W, and Z components of this instance. example: [] syntax: - content: public Vector3i Xwz { get; set; } + content: public Vector3i Xwz { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector3i @@ -2164,20 +2035,16 @@ items: fullName: OpenTK.Mathematics.Vector4i.Yxz type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Yxz - path: opentk/src/OpenTK.Mathematics/Vector/Vector4i.cs - startLine: 727 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4i.cs + startLine: 768 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets a with the Y, X, and Z components of this instance. example: [] syntax: - content: public Vector3i Yxz { get; set; } + content: public Vector3i Yxz { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector3i @@ -2195,20 +2062,16 @@ items: fullName: OpenTK.Mathematics.Vector4i.Yxw type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Yxw - path: opentk/src/OpenTK.Mathematics/Vector/Vector4i.cs - startLine: 742 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4i.cs + startLine: 783 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets a with the Y, X, and W components of this instance. example: [] syntax: - content: public Vector3i Yxw { get; set; } + content: public Vector3i Yxw { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector3i @@ -2226,20 +2089,16 @@ items: fullName: OpenTK.Mathematics.Vector4i.Yzx type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Yzx - path: opentk/src/OpenTK.Mathematics/Vector/Vector4i.cs - startLine: 757 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4i.cs + startLine: 798 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets a with the Y, Z, and X components of this instance. example: [] syntax: - content: public Vector3i Yzx { get; set; } + content: public Vector3i Yzx { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector3i @@ -2257,20 +2116,16 @@ items: fullName: OpenTK.Mathematics.Vector4i.Yzw type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Yzw - path: opentk/src/OpenTK.Mathematics/Vector/Vector4i.cs - startLine: 772 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4i.cs + startLine: 813 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets a with the Y, Z, and W components of this instance. example: [] syntax: - content: public Vector3i Yzw { get; set; } + content: public Vector3i Yzw { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector3i @@ -2288,20 +2143,16 @@ items: fullName: OpenTK.Mathematics.Vector4i.Ywx type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Ywx - path: opentk/src/OpenTK.Mathematics/Vector/Vector4i.cs - startLine: 787 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4i.cs + startLine: 828 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets a with the Y, W, and X components of this instance. example: [] syntax: - content: public Vector3i Ywx { get; set; } + content: public Vector3i Ywx { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector3i @@ -2319,20 +2170,16 @@ items: fullName: OpenTK.Mathematics.Vector4i.Ywz type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Ywz - path: opentk/src/OpenTK.Mathematics/Vector/Vector4i.cs - startLine: 802 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4i.cs + startLine: 843 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets a with the Y, W, and Z components of this instance. example: [] syntax: - content: public Vector3i Ywz { get; set; } + content: public Vector3i Ywz { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector3i @@ -2350,20 +2197,16 @@ items: fullName: OpenTK.Mathematics.Vector4i.Zxy type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Zxy - path: opentk/src/OpenTK.Mathematics/Vector/Vector4i.cs - startLine: 817 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4i.cs + startLine: 858 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets a with the Z, X, and Y components of this instance. example: [] syntax: - content: public Vector3i Zxy { get; set; } + content: public Vector3i Zxy { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector3i @@ -2381,20 +2224,16 @@ items: fullName: OpenTK.Mathematics.Vector4i.Zxw type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Zxw - path: opentk/src/OpenTK.Mathematics/Vector/Vector4i.cs - startLine: 832 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4i.cs + startLine: 873 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets a with the Z, X, and W components of this instance. example: [] syntax: - content: public Vector3i Zxw { get; set; } + content: public Vector3i Zxw { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector3i @@ -2412,20 +2251,16 @@ items: fullName: OpenTK.Mathematics.Vector4i.Zyx type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Zyx - path: opentk/src/OpenTK.Mathematics/Vector/Vector4i.cs - startLine: 847 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4i.cs + startLine: 888 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets a with the Z, Y, and X components of this instance. example: [] syntax: - content: public Vector3i Zyx { get; set; } + content: public Vector3i Zyx { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector3i @@ -2443,20 +2278,16 @@ items: fullName: OpenTK.Mathematics.Vector4i.Zyw type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Zyw - path: opentk/src/OpenTK.Mathematics/Vector/Vector4i.cs - startLine: 862 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4i.cs + startLine: 903 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets a with the Z, Y, and W components of this instance. example: [] syntax: - content: public Vector3i Zyw { get; set; } + content: public Vector3i Zyw { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector3i @@ -2474,20 +2305,16 @@ items: fullName: OpenTK.Mathematics.Vector4i.Zwx type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Zwx - path: opentk/src/OpenTK.Mathematics/Vector/Vector4i.cs - startLine: 877 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4i.cs + startLine: 918 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets a with the Z, W, and X components of this instance. example: [] syntax: - content: public Vector3i Zwx { get; set; } + content: public Vector3i Zwx { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector3i @@ -2505,20 +2332,16 @@ items: fullName: OpenTK.Mathematics.Vector4i.Zwy type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Zwy - path: opentk/src/OpenTK.Mathematics/Vector/Vector4i.cs - startLine: 892 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4i.cs + startLine: 933 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets a with the Z, W, and Y components of this instance. example: [] syntax: - content: public Vector3i Zwy { get; set; } + content: public Vector3i Zwy { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector3i @@ -2536,20 +2359,16 @@ items: fullName: OpenTK.Mathematics.Vector4i.Wxy type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Wxy - path: opentk/src/OpenTK.Mathematics/Vector/Vector4i.cs - startLine: 907 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4i.cs + startLine: 948 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets a with the W, X, and Y components of this instance. example: [] syntax: - content: public Vector3i Wxy { get; set; } + content: public Vector3i Wxy { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector3i @@ -2567,20 +2386,16 @@ items: fullName: OpenTK.Mathematics.Vector4i.Wxz type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Wxz - path: opentk/src/OpenTK.Mathematics/Vector/Vector4i.cs - startLine: 922 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4i.cs + startLine: 963 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets a with the W, X, and Z components of this instance. example: [] syntax: - content: public Vector3i Wxz { get; set; } + content: public Vector3i Wxz { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector3i @@ -2598,20 +2413,16 @@ items: fullName: OpenTK.Mathematics.Vector4i.Wyx type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Wyx - path: opentk/src/OpenTK.Mathematics/Vector/Vector4i.cs - startLine: 937 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4i.cs + startLine: 978 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets a with the W, Y, and X components of this instance. example: [] syntax: - content: public Vector3i Wyx { get; set; } + content: public Vector3i Wyx { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector3i @@ -2629,20 +2440,16 @@ items: fullName: OpenTK.Mathematics.Vector4i.Wyz type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Wyz - path: opentk/src/OpenTK.Mathematics/Vector/Vector4i.cs - startLine: 952 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4i.cs + startLine: 993 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets a with the W, Y, and Z components of this instance. example: [] syntax: - content: public Vector3i Wyz { get; set; } + content: public Vector3i Wyz { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector3i @@ -2660,20 +2467,16 @@ items: fullName: OpenTK.Mathematics.Vector4i.Wzx type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Wzx - path: opentk/src/OpenTK.Mathematics/Vector/Vector4i.cs - startLine: 967 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4i.cs + startLine: 1008 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets a with the W, Z, and X components of this instance. example: [] syntax: - content: public Vector3i Wzx { get; set; } + content: public Vector3i Wzx { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector3i @@ -2691,20 +2494,16 @@ items: fullName: OpenTK.Mathematics.Vector4i.Wzy type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Wzy - path: opentk/src/OpenTK.Mathematics/Vector/Vector4i.cs - startLine: 982 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4i.cs + startLine: 1023 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets a with the W, Z, and Y components of this instance. example: [] syntax: - content: public Vector3i Wzy { get; set; } + content: public Vector3i Wzy { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector3i @@ -2722,20 +2521,16 @@ items: fullName: OpenTK.Mathematics.Vector4i.Xywz type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Xywz - path: opentk/src/OpenTK.Mathematics/Vector/Vector4i.cs - startLine: 997 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4i.cs + startLine: 1038 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets a with the X, Y, W, and Z components of this instance. example: [] syntax: - content: public Vector4i Xywz { get; set; } + content: public Vector4i Xywz { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector4i @@ -2753,20 +2548,16 @@ items: fullName: OpenTK.Mathematics.Vector4i.Xzyw type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Xzyw - path: opentk/src/OpenTK.Mathematics/Vector/Vector4i.cs - startLine: 1013 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4i.cs + startLine: 1054 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets a with the X, Z, Y, and W components of this instance. example: [] syntax: - content: public Vector4i Xzyw { get; set; } + content: public Vector4i Xzyw { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector4i @@ -2784,20 +2575,16 @@ items: fullName: OpenTK.Mathematics.Vector4i.Xzwy type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Xzwy - path: opentk/src/OpenTK.Mathematics/Vector/Vector4i.cs - startLine: 1029 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4i.cs + startLine: 1070 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets a with the X, Z, W, and Y components of this instance. example: [] syntax: - content: public Vector4i Xzwy { get; set; } + content: public Vector4i Xzwy { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector4i @@ -2815,20 +2602,16 @@ items: fullName: OpenTK.Mathematics.Vector4i.Xwyz type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Xwyz - path: opentk/src/OpenTK.Mathematics/Vector/Vector4i.cs - startLine: 1045 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4i.cs + startLine: 1086 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets a with the X, W, Y, and Z components of this instance. example: [] syntax: - content: public Vector4i Xwyz { get; set; } + content: public Vector4i Xwyz { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector4i @@ -2846,20 +2629,16 @@ items: fullName: OpenTK.Mathematics.Vector4i.Xwzy type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Xwzy - path: opentk/src/OpenTK.Mathematics/Vector/Vector4i.cs - startLine: 1061 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4i.cs + startLine: 1102 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets a with the X, W, Z, and Y components of this instance. example: [] syntax: - content: public Vector4i Xwzy { get; set; } + content: public Vector4i Xwzy { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector4i @@ -2877,20 +2656,16 @@ items: fullName: OpenTK.Mathematics.Vector4i.Yxzw type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Yxzw - path: opentk/src/OpenTK.Mathematics/Vector/Vector4i.cs - startLine: 1077 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4i.cs + startLine: 1118 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets a with the Y, X, Z, and W components of this instance. example: [] syntax: - content: public Vector4i Yxzw { get; set; } + content: public Vector4i Yxzw { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector4i @@ -2908,20 +2683,16 @@ items: fullName: OpenTK.Mathematics.Vector4i.Yxwz type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Yxwz - path: opentk/src/OpenTK.Mathematics/Vector/Vector4i.cs - startLine: 1093 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4i.cs + startLine: 1134 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets a with the Y, X, W, and Z components of this instance. example: [] syntax: - content: public Vector4i Yxwz { get; set; } + content: public Vector4i Yxwz { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector4i @@ -2939,20 +2710,16 @@ items: fullName: OpenTK.Mathematics.Vector4i.Yyzw type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Yyzw - path: opentk/src/OpenTK.Mathematics/Vector/Vector4i.cs - startLine: 1109 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4i.cs + startLine: 1150 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets a with the Y, Y, Z, and W components of this instance. example: [] syntax: - content: public Vector4i Yyzw { get; set; } + content: public Vector4i Yyzw { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector4i @@ -2970,20 +2737,16 @@ items: fullName: OpenTK.Mathematics.Vector4i.Yywz type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Yywz - path: opentk/src/OpenTK.Mathematics/Vector/Vector4i.cs - startLine: 1125 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4i.cs + startLine: 1166 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets a with the Y, Y, W, and Z components of this instance. example: [] syntax: - content: public Vector4i Yywz { get; set; } + content: public Vector4i Yywz { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector4i @@ -3001,20 +2764,16 @@ items: fullName: OpenTK.Mathematics.Vector4i.Yzxw type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Yzxw - path: opentk/src/OpenTK.Mathematics/Vector/Vector4i.cs - startLine: 1141 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4i.cs + startLine: 1182 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets a with the Y, Z, X, and W components of this instance. example: [] syntax: - content: public Vector4i Yzxw { get; set; } + content: public Vector4i Yzxw { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector4i @@ -3032,20 +2791,16 @@ items: fullName: OpenTK.Mathematics.Vector4i.Yzwx type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Yzwx - path: opentk/src/OpenTK.Mathematics/Vector/Vector4i.cs - startLine: 1157 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4i.cs + startLine: 1198 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets a with the Y, Z, W, and X components of this instance. example: [] syntax: - content: public Vector4i Yzwx { get; set; } + content: public Vector4i Yzwx { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector4i @@ -3063,20 +2818,16 @@ items: fullName: OpenTK.Mathematics.Vector4i.Ywxz type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Ywxz - path: opentk/src/OpenTK.Mathematics/Vector/Vector4i.cs - startLine: 1173 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4i.cs + startLine: 1214 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets a with the Y, W, X, and Z components of this instance. example: [] syntax: - content: public Vector4i Ywxz { get; set; } + content: public Vector4i Ywxz { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector4i @@ -3094,20 +2845,16 @@ items: fullName: OpenTK.Mathematics.Vector4i.Ywzx type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Ywzx - path: opentk/src/OpenTK.Mathematics/Vector/Vector4i.cs - startLine: 1189 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4i.cs + startLine: 1230 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets a with the Y, W, Z, and X components of this instance. example: [] syntax: - content: public Vector4i Ywzx { get; set; } + content: public Vector4i Ywzx { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector4i @@ -3125,20 +2872,16 @@ items: fullName: OpenTK.Mathematics.Vector4i.Zxyw type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Zxyw - path: opentk/src/OpenTK.Mathematics/Vector/Vector4i.cs - startLine: 1205 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4i.cs + startLine: 1246 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets a with the Z, X, Y, and Z components of this instance. example: [] syntax: - content: public Vector4i Zxyw { get; set; } + content: public Vector4i Zxyw { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector4i @@ -3156,20 +2899,16 @@ items: fullName: OpenTK.Mathematics.Vector4i.Zxwy type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Zxwy - path: opentk/src/OpenTK.Mathematics/Vector/Vector4i.cs - startLine: 1221 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4i.cs + startLine: 1262 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets a with the Z, X, W, and Y components of this instance. example: [] syntax: - content: public Vector4i Zxwy { get; set; } + content: public Vector4i Zxwy { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector4i @@ -3187,20 +2926,16 @@ items: fullName: OpenTK.Mathematics.Vector4i.Zyxw type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Zyxw - path: opentk/src/OpenTK.Mathematics/Vector/Vector4i.cs - startLine: 1237 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4i.cs + startLine: 1278 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets a with the Z, Y, X, and W components of this instance. example: [] syntax: - content: public Vector4i Zyxw { get; set; } + content: public Vector4i Zyxw { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector4i @@ -3218,20 +2953,16 @@ items: fullName: OpenTK.Mathematics.Vector4i.Zywx type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Zywx - path: opentk/src/OpenTK.Mathematics/Vector/Vector4i.cs - startLine: 1253 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4i.cs + startLine: 1294 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets a with the Z, Y, W, and X components of this instance. example: [] syntax: - content: public Vector4i Zywx { get; set; } + content: public Vector4i Zywx { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector4i @@ -3249,20 +2980,16 @@ items: fullName: OpenTK.Mathematics.Vector4i.Zwxy type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Zwxy - path: opentk/src/OpenTK.Mathematics/Vector/Vector4i.cs - startLine: 1269 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4i.cs + startLine: 1310 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets a with the Z, W, X, and Y components of this instance. example: [] syntax: - content: public Vector4i Zwxy { get; set; } + content: public Vector4i Zwxy { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector4i @@ -3280,20 +3007,16 @@ items: fullName: OpenTK.Mathematics.Vector4i.Zwyx type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Zwyx - path: opentk/src/OpenTK.Mathematics/Vector/Vector4i.cs - startLine: 1285 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4i.cs + startLine: 1326 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets a with the Z, W, Y, and X components of this instance. example: [] syntax: - content: public Vector4i Zwyx { get; set; } + content: public Vector4i Zwyx { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector4i @@ -3311,20 +3034,16 @@ items: fullName: OpenTK.Mathematics.Vector4i.Zwzy type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Zwzy - path: opentk/src/OpenTK.Mathematics/Vector/Vector4i.cs - startLine: 1301 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4i.cs + startLine: 1342 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets a with the Z, W, Z, and Y components of this instance. example: [] syntax: - content: public Vector4i Zwzy { get; set; } + content: public Vector4i Zwzy { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector4i @@ -3342,20 +3061,16 @@ items: fullName: OpenTK.Mathematics.Vector4i.Wxyz type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Wxyz - path: opentk/src/OpenTK.Mathematics/Vector/Vector4i.cs - startLine: 1317 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4i.cs + startLine: 1358 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets a with the W, X, Y, and Z components of this instance. example: [] syntax: - content: public Vector4i Wxyz { get; set; } + content: public Vector4i Wxyz { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector4i @@ -3373,20 +3088,16 @@ items: fullName: OpenTK.Mathematics.Vector4i.Wxzy type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Wxzy - path: opentk/src/OpenTK.Mathematics/Vector/Vector4i.cs - startLine: 1333 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4i.cs + startLine: 1374 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets a with the W, X, Z, and Y components of this instance. example: [] syntax: - content: public Vector4i Wxzy { get; set; } + content: public Vector4i Wxzy { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector4i @@ -3404,20 +3115,16 @@ items: fullName: OpenTK.Mathematics.Vector4i.Wyxz type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Wyxz - path: opentk/src/OpenTK.Mathematics/Vector/Vector4i.cs - startLine: 1349 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4i.cs + startLine: 1390 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets a with the W, Y, X, and Z components of this instance. example: [] syntax: - content: public Vector4i Wyxz { get; set; } + content: public Vector4i Wyxz { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector4i @@ -3435,20 +3142,16 @@ items: fullName: OpenTK.Mathematics.Vector4i.Wyzx type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Wyzx - path: opentk/src/OpenTK.Mathematics/Vector/Vector4i.cs - startLine: 1365 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4i.cs + startLine: 1406 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets a with the W, Y, Z, and X components of this instance. example: [] syntax: - content: public Vector4i Wyzx { get; set; } + content: public Vector4i Wyzx { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector4i @@ -3466,20 +3169,16 @@ items: fullName: OpenTK.Mathematics.Vector4i.Wzxy type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Wzxy - path: opentk/src/OpenTK.Mathematics/Vector/Vector4i.cs - startLine: 1381 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4i.cs + startLine: 1422 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets a with the W, Z, X, and Y components of this instance. example: [] syntax: - content: public Vector4i Wzxy { get; set; } + content: public Vector4i Wzxy { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector4i @@ -3497,20 +3196,16 @@ items: fullName: OpenTK.Mathematics.Vector4i.Wzyx type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Wzyx - path: opentk/src/OpenTK.Mathematics/Vector/Vector4i.cs - startLine: 1397 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4i.cs + startLine: 1438 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets a with the W, Z, Y, and X components of this instance. example: [] syntax: - content: public Vector4i Wzyx { get; set; } + content: public Vector4i Wzyx { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector4i @@ -3528,20 +3223,16 @@ items: fullName: OpenTK.Mathematics.Vector4i.Wzyw type: Property source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Wzyw - path: opentk/src/OpenTK.Mathematics/Vector/Vector4i.cs - startLine: 1413 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4i.cs + startLine: 1454 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets or sets a with the W, Z, Y, and W components of this instance. example: [] syntax: - content: public Vector4i Wzyw { get; set; } + content: public Vector4i Wzyw { readonly get; set; } parameters: [] return: type: OpenTK.Mathematics.Vector4i @@ -3559,20 +3250,16 @@ items: fullName: OpenTK.Mathematics.Vector4i.ToVector4() type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToVector4 - path: opentk/src/OpenTK.Mathematics/Vector/Vector4i.cs - startLine: 1430 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4i.cs + startLine: 1471 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Gets a object with the same component values as the instance. example: [] syntax: - content: public Vector4 ToVector4() + content: public readonly Vector4 ToVector4() return: type: OpenTK.Mathematics.Vector4 description: The resulting instance. @@ -3590,13 +3277,9 @@ items: fullName: OpenTK.Mathematics.Vector4i.ToVector4(in OpenTK.Mathematics.Vector4i, out OpenTK.Mathematics.Vector4) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToVector4 - path: opentk/src/OpenTK.Mathematics/Vector/Vector4i.cs - startLine: 1440 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4i.cs + startLine: 1481 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -3628,13 +3311,9 @@ items: fullName: OpenTK.Mathematics.Vector4i.operator +(OpenTK.Mathematics.Vector4i, OpenTK.Mathematics.Vector4i) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Addition - path: opentk/src/OpenTK.Mathematics/Vector/Vector4i.cs - startLine: 1454 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4i.cs + startLine: 1495 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -3679,13 +3358,9 @@ items: fullName: OpenTK.Mathematics.Vector4i.operator -(OpenTK.Mathematics.Vector4i, OpenTK.Mathematics.Vector4i) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Subtraction - path: opentk/src/OpenTK.Mathematics/Vector/Vector4i.cs - startLine: 1470 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4i.cs + startLine: 1511 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -3730,13 +3405,9 @@ items: fullName: OpenTK.Mathematics.Vector4i.operator -(OpenTK.Mathematics.Vector4i) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_UnaryNegation - path: opentk/src/OpenTK.Mathematics/Vector/Vector4i.cs - startLine: 1485 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4i.cs + startLine: 1526 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -3778,13 +3449,9 @@ items: fullName: OpenTK.Mathematics.Vector4i.operator *(OpenTK.Mathematics.Vector4i, int) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Multiply - path: opentk/src/OpenTK.Mathematics/Vector/Vector4i.cs - startLine: 1501 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4i.cs + startLine: 1542 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -3829,13 +3496,9 @@ items: fullName: OpenTK.Mathematics.Vector4i.operator *(int, OpenTK.Mathematics.Vector4i) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Multiply - path: opentk/src/OpenTK.Mathematics/Vector/Vector4i.cs - startLine: 1517 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4i.cs + startLine: 1558 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -3880,13 +3543,9 @@ items: fullName: OpenTK.Mathematics.Vector4i.operator *(OpenTK.Mathematics.Vector4i, OpenTK.Mathematics.Vector4i) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Multiply - path: opentk/src/OpenTK.Mathematics/Vector/Vector4i.cs - startLine: 1533 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4i.cs + startLine: 1574 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -3931,13 +3590,9 @@ items: fullName: OpenTK.Mathematics.Vector4i.operator /(OpenTK.Mathematics.Vector4i, int) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Division - path: opentk/src/OpenTK.Mathematics/Vector/Vector4i.cs - startLine: 1549 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4i.cs + startLine: 1590 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -3982,13 +3637,9 @@ items: fullName: OpenTK.Mathematics.Vector4i.operator /(OpenTK.Mathematics.Vector4i, OpenTK.Mathematics.Vector4i) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Division - path: opentk/src/OpenTK.Mathematics/Vector/Vector4i.cs - startLine: 1565 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4i.cs + startLine: 1606 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -4033,13 +3684,9 @@ items: fullName: OpenTK.Mathematics.Vector4i.operator ==(OpenTK.Mathematics.Vector4i, OpenTK.Mathematics.Vector4i) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Equality - path: opentk/src/OpenTK.Mathematics/Vector/Vector4i.cs - startLine: 1581 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4i.cs + startLine: 1622 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -4074,13 +3721,9 @@ items: fullName: OpenTK.Mathematics.Vector4i.operator !=(OpenTK.Mathematics.Vector4i, OpenTK.Mathematics.Vector4i) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Inequality - path: opentk/src/OpenTK.Mathematics/Vector/Vector4i.cs - startLine: 1592 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4i.cs + startLine: 1633 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -4115,13 +3758,9 @@ items: fullName: OpenTK.Mathematics.Vector4i.implicit operator OpenTK.Mathematics.Vector4(OpenTK.Mathematics.Vector4i) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Implicit - path: opentk/src/OpenTK.Mathematics/Vector/Vector4i.cs - startLine: 1602 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4i.cs + startLine: 1643 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -4163,13 +3802,9 @@ items: fullName: OpenTK.Mathematics.Vector4i.implicit operator OpenTK.Mathematics.Vector4d(OpenTK.Mathematics.Vector4i) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Implicit - path: opentk/src/OpenTK.Mathematics/Vector/Vector4i.cs - startLine: 1613 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4i.cs + startLine: 1654 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -4211,13 +3846,9 @@ items: fullName: OpenTK.Mathematics.Vector4i.explicit operator OpenTK.Mathematics.Vector4h(OpenTK.Mathematics.Vector4i) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Explicit - path: opentk/src/OpenTK.Mathematics/Vector/Vector4i.cs - startLine: 1624 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4i.cs + startLine: 1665 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -4259,13 +3890,9 @@ items: fullName: OpenTK.Mathematics.Vector4i.implicit operator OpenTK.Mathematics.Vector4i((int X, int Y, int Z, int W)) type: Operator source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Implicit - path: opentk/src/OpenTK.Mathematics/Vector/Vector4i.cs - startLine: 1636 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4i.cs + startLine: 1677 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -4310,20 +3937,16 @@ items: fullName: OpenTK.Mathematics.Vector4i.ToString() type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Mathematics/Vector/Vector4i.cs - startLine: 1643 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4i.cs + startLine: 1684 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Returns the fully qualified type name of this instance. example: [] syntax: - content: public override string ToString() + content: public override readonly string ToString() return: type: System.String description: The fully qualified type name. @@ -4342,20 +3965,16 @@ items: fullName: OpenTK.Mathematics.Vector4i.ToString(string) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Mathematics/Vector/Vector4i.cs - startLine: 1649 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4i.cs + startLine: 1690 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Formats the value of the current instance using the specified format. example: [] syntax: - content: public string ToString(string format) + content: public readonly string ToString(string format) parameters: - id: format type: System.String @@ -4385,20 +4004,16 @@ items: fullName: OpenTK.Mathematics.Vector4i.ToString(System.IFormatProvider) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Mathematics/Vector/Vector4i.cs - startLine: 1655 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4i.cs + startLine: 1696 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Formats the value of the current instance using the specified format. example: [] syntax: - content: public string ToString(IFormatProvider formatProvider) + content: public readonly string ToString(IFormatProvider formatProvider) parameters: - id: formatProvider type: System.IFormatProvider @@ -4425,20 +4040,16 @@ items: fullName: OpenTK.Mathematics.Vector4i.ToString(string, System.IFormatProvider) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Mathematics/Vector/Vector4i.cs - startLine: 1661 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4i.cs + startLine: 1702 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Formats the value of the current instance using the specified format. example: [] syntax: - content: public string ToString(string format, IFormatProvider formatProvider) + content: public readonly string ToString(string format, IFormatProvider formatProvider) parameters: - id: format type: System.String @@ -4478,20 +4089,16 @@ items: fullName: OpenTK.Mathematics.Vector4i.Equals(object) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Equals - path: opentk/src/OpenTK.Mathematics/Vector/Vector4i.cs - startLine: 1673 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4i.cs + startLine: 1714 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Indicates whether this instance and a specified object are equal. example: [] syntax: - content: public override bool Equals(object obj) + content: public override readonly bool Equals(object obj) parameters: - id: obj type: System.Object @@ -4517,20 +4124,16 @@ items: fullName: OpenTK.Mathematics.Vector4i.Equals(OpenTK.Mathematics.Vector4i) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Equals - path: opentk/src/OpenTK.Mathematics/Vector/Vector4i.cs - startLine: 1679 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4i.cs + startLine: 1720 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Indicates whether the current object is equal to another object of the same type. example: [] syntax: - content: public bool Equals(Vector4i other) + content: public readonly bool Equals(Vector4i other) parameters: - id: other type: OpenTK.Mathematics.Vector4i @@ -4554,20 +4157,16 @@ items: fullName: OpenTK.Mathematics.Vector4i.GetHashCode() type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetHashCode - path: opentk/src/OpenTK.Mathematics/Vector/Vector4i.cs - startLine: 1688 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4i.cs + startLine: 1729 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics summary: Returns the hash code for this instance. example: [] syntax: - content: public override int GetHashCode() + content: public override readonly int GetHashCode() return: type: System.Int32 description: A 32-bit signed integer that is the hash code for this instance. @@ -4586,13 +4185,9 @@ items: fullName: OpenTK.Mathematics.Vector4i.Deconstruct(out int, out int, out int, out int) type: Method source: - remote: - path: src/OpenTK.Mathematics/Vector/Vector4i.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Deconstruct - path: opentk/src/OpenTK.Mathematics/Vector/Vector4i.cs - startLine: 1700 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Mathematics\Vector\Vector4i.cs + startLine: 1741 assemblies: - OpenTK.Mathematics namespace: OpenTK.Mathematics @@ -4602,7 +4197,7 @@ items: content: >- [Pure] - public void Deconstruct(out int x, out int y, out int z, out int w) + public readonly void Deconstruct(out int x, out int y, out int z, out int w) parameters: - id: x type: System.Int32 @@ -4938,6 +4533,12 @@ references: nameWithType.vb: Single fullName.vb: Single name.vb: Single +- uid: OpenTK.Mathematics.Vector4i.Abs* + commentId: Overload:OpenTK.Mathematics.Vector4i.Abs + href: OpenTK.Mathematics.Vector4i.html#OpenTK_Mathematics_Vector4i_Abs + name: Abs + nameWithType: Vector4i.Abs + fullName: OpenTK.Mathematics.Vector4i.Abs - uid: OpenTK.Mathematics.Vector4i.Add* commentId: Overload:OpenTK.Mathematics.Vector4i.Add href: OpenTK.Mathematics.Vector4i.html#OpenTK_Mathematics_Vector4i_Add_OpenTK_Mathematics_Vector4i_OpenTK_Mathematics_Vector4i_ diff --git a/api/OpenTK.Platform.AppTheme.yml b/api/OpenTK.Platform.AppTheme.yml new file mode 100644 index 00000000..ed149de2 --- /dev/null +++ b/api/OpenTK.Platform.AppTheme.yml @@ -0,0 +1,131 @@ +### YamlMime:ManagedReference +items: +- uid: OpenTK.Platform.AppTheme + commentId: T:OpenTK.Platform.AppTheme + id: AppTheme + parent: OpenTK.Platform + children: + - OpenTK.Platform.AppTheme.Dark + - OpenTK.Platform.AppTheme.Light + - OpenTK.Platform.AppTheme.NoPreference + langs: + - csharp + - vb + name: AppTheme + nameWithType: AppTheme + fullName: OpenTK.Platform.AppTheme + type: Enum + source: + id: AppTheme + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\ThemeInfo.cs + startLine: 11 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Enum representing a theme setting. + example: [] + syntax: + content: public enum AppTheme + content.vb: Public Enum AppTheme +- uid: OpenTK.Platform.AppTheme.NoPreference + commentId: F:OpenTK.Platform.AppTheme.NoPreference + id: NoPreference + parent: OpenTK.Platform.AppTheme + langs: + - csharp + - vb + name: NoPreference + nameWithType: AppTheme.NoPreference + fullName: OpenTK.Platform.AppTheme.NoPreference + type: Field + source: + id: NoPreference + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\ThemeInfo.cs + startLine: 16 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: No preference for theme. + example: [] + syntax: + content: NoPreference = 0 + return: + type: OpenTK.Platform.AppTheme +- uid: OpenTK.Platform.AppTheme.Light + commentId: F:OpenTK.Platform.AppTheme.Light + id: Light + parent: OpenTK.Platform.AppTheme + langs: + - csharp + - vb + name: Light + nameWithType: AppTheme.Light + fullName: OpenTK.Platform.AppTheme.Light + type: Field + source: + id: Light + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\ThemeInfo.cs + startLine: 21 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: A light theme is preferred. + example: [] + syntax: + content: Light = 1 + return: + type: OpenTK.Platform.AppTheme +- uid: OpenTK.Platform.AppTheme.Dark + commentId: F:OpenTK.Platform.AppTheme.Dark + id: Dark + parent: OpenTK.Platform.AppTheme + langs: + - csharp + - vb + name: Dark + nameWithType: AppTheme.Dark + fullName: OpenTK.Platform.AppTheme.Dark + type: Field + source: + id: Dark + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\ThemeInfo.cs + startLine: 26 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: A dark theme is preferred. + example: [] + syntax: + content: Dark = 2 + return: + type: OpenTK.Platform.AppTheme +references: +- uid: OpenTK.Platform + commentId: N:OpenTK.Platform + href: OpenTK.html + name: OpenTK.Platform + nameWithType: OpenTK.Platform + fullName: OpenTK.Platform + spec.csharp: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Platform + name: Platform + href: OpenTK.Platform.html + spec.vb: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Platform + name: Platform + href: OpenTK.Platform.html +- uid: OpenTK.Platform.AppTheme + commentId: T:OpenTK.Platform.AppTheme + parent: OpenTK.Platform + href: OpenTK.Platform.AppTheme.html + name: AppTheme + nameWithType: AppTheme + fullName: OpenTK.Platform.AppTheme diff --git a/api/OpenTK.Core.Platform.AudioData.yml b/api/OpenTK.Platform.AudioData.yml similarity index 77% rename from api/OpenTK.Core.Platform.AudioData.yml rename to api/OpenTK.Platform.AudioData.yml index 150182df..03dbb963 100644 --- a/api/OpenTK.Core.Platform.AudioData.yml +++ b/api/OpenTK.Platform.AudioData.yml @@ -1,31 +1,27 @@ ### YamlMime:ManagedReference items: -- uid: OpenTK.Core.Platform.AudioData - commentId: T:OpenTK.Core.Platform.AudioData +- uid: OpenTK.Platform.AudioData + commentId: T:OpenTK.Platform.AudioData id: AudioData - parent: OpenTK.Core.Platform + parent: OpenTK.Platform children: - - OpenTK.Core.Platform.AudioData.Audio - - OpenTK.Core.Platform.AudioData.SampleRate - - OpenTK.Core.Platform.AudioData.Stereo + - OpenTK.Platform.AudioData.Audio + - OpenTK.Platform.AudioData.SampleRate + - OpenTK.Platform.AudioData.Stereo langs: - csharp - vb name: AudioData nameWithType: AudioData - fullName: OpenTK.Core.Platform.AudioData + fullName: OpenTK.Platform.AudioData type: Class source: - remote: - path: src/OpenTK.Core/Platform/AudioData.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: AudioData - path: opentk/src/OpenTK.Core/Platform/AudioData.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\AudioData.cs startLine: 8 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform + - OpenTK.Platform + namespace: OpenTK.Platform syntax: content: public class AudioData content.vb: Public Class AudioData @@ -39,124 +35,104 @@ items: - System.Object.MemberwiseClone - System.Object.ReferenceEquals(System.Object,System.Object) - System.Object.ToString -- uid: OpenTK.Core.Platform.AudioData.SampleRate - commentId: P:OpenTK.Core.Platform.AudioData.SampleRate +- uid: OpenTK.Platform.AudioData.SampleRate + commentId: P:OpenTK.Platform.AudioData.SampleRate id: SampleRate - parent: OpenTK.Core.Platform.AudioData + parent: OpenTK.Platform.AudioData langs: - csharp - vb name: SampleRate nameWithType: AudioData.SampleRate - fullName: OpenTK.Core.Platform.AudioData.SampleRate + fullName: OpenTK.Platform.AudioData.SampleRate type: Property source: - remote: - path: src/OpenTK.Core/Platform/AudioData.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SampleRate - path: opentk/src/OpenTK.Core/Platform/AudioData.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\AudioData.cs startLine: 10 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform + - OpenTK.Platform + namespace: OpenTK.Platform syntax: content: public int SampleRate { get; set; } parameters: [] return: type: System.Int32 content.vb: Public Property SampleRate As Integer - overload: OpenTK.Core.Platform.AudioData.SampleRate* -- uid: OpenTK.Core.Platform.AudioData.Stereo - commentId: P:OpenTK.Core.Platform.AudioData.Stereo + overload: OpenTK.Platform.AudioData.SampleRate* +- uid: OpenTK.Platform.AudioData.Stereo + commentId: P:OpenTK.Platform.AudioData.Stereo id: Stereo - parent: OpenTK.Core.Platform.AudioData + parent: OpenTK.Platform.AudioData langs: - csharp - vb name: Stereo nameWithType: AudioData.Stereo - fullName: OpenTK.Core.Platform.AudioData.Stereo + fullName: OpenTK.Platform.AudioData.Stereo type: Property source: - remote: - path: src/OpenTK.Core/Platform/AudioData.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Stereo - path: opentk/src/OpenTK.Core/Platform/AudioData.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\AudioData.cs startLine: 12 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform + - OpenTK.Platform + namespace: OpenTK.Platform syntax: content: public bool Stereo { get; set; } parameters: [] return: type: System.Boolean content.vb: Public Property Stereo As Boolean - overload: OpenTK.Core.Platform.AudioData.Stereo* -- uid: OpenTK.Core.Platform.AudioData.Audio - commentId: P:OpenTK.Core.Platform.AudioData.Audio + overload: OpenTK.Platform.AudioData.Stereo* +- uid: OpenTK.Platform.AudioData.Audio + commentId: P:OpenTK.Platform.AudioData.Audio id: Audio - parent: OpenTK.Core.Platform.AudioData + parent: OpenTK.Platform.AudioData langs: - csharp - vb name: Audio nameWithType: AudioData.Audio - fullName: OpenTK.Core.Platform.AudioData.Audio + fullName: OpenTK.Platform.AudioData.Audio type: Property source: - remote: - path: src/OpenTK.Core/Platform/AudioData.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Audio - path: opentk/src/OpenTK.Core/Platform/AudioData.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\AudioData.cs startLine: 14 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform + - OpenTK.Platform + namespace: OpenTK.Platform syntax: content: public short[] Audio { get; set; } parameters: [] return: type: System.Int16[] content.vb: Public Property Audio As Short() - overload: OpenTK.Core.Platform.AudioData.Audio* + overload: OpenTK.Platform.AudioData.Audio* references: -- uid: OpenTK.Core.Platform - commentId: N:OpenTK.Core.Platform +- uid: OpenTK.Platform + commentId: N:OpenTK.Platform href: OpenTK.html - name: OpenTK.Core.Platform - nameWithType: OpenTK.Core.Platform - fullName: OpenTK.Core.Platform + name: OpenTK.Platform + nameWithType: OpenTK.Platform + fullName: OpenTK.Platform spec.csharp: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html spec.vb: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html - uid: System.Object commentId: T:System.Object parent: System @@ -394,12 +370,12 @@ references: name: System nameWithType: System fullName: System -- uid: OpenTK.Core.Platform.AudioData.SampleRate* - commentId: Overload:OpenTK.Core.Platform.AudioData.SampleRate - href: OpenTK.Core.Platform.AudioData.html#OpenTK_Core_Platform_AudioData_SampleRate +- uid: OpenTK.Platform.AudioData.SampleRate* + commentId: Overload:OpenTK.Platform.AudioData.SampleRate + href: OpenTK.Platform.AudioData.html#OpenTK_Platform_AudioData_SampleRate name: SampleRate nameWithType: AudioData.SampleRate - fullName: OpenTK.Core.Platform.AudioData.SampleRate + fullName: OpenTK.Platform.AudioData.SampleRate - uid: System.Int32 commentId: T:System.Int32 parent: System @@ -411,12 +387,12 @@ references: nameWithType.vb: Integer fullName.vb: Integer name.vb: Integer -- uid: OpenTK.Core.Platform.AudioData.Stereo* - commentId: Overload:OpenTK.Core.Platform.AudioData.Stereo - href: OpenTK.Core.Platform.AudioData.html#OpenTK_Core_Platform_AudioData_Stereo +- uid: OpenTK.Platform.AudioData.Stereo* + commentId: Overload:OpenTK.Platform.AudioData.Stereo + href: OpenTK.Platform.AudioData.html#OpenTK_Platform_AudioData_Stereo name: Stereo nameWithType: AudioData.Stereo - fullName: OpenTK.Core.Platform.AudioData.Stereo + fullName: OpenTK.Platform.AudioData.Stereo - uid: System.Boolean commentId: T:System.Boolean parent: System @@ -428,12 +404,12 @@ references: nameWithType.vb: Boolean fullName.vb: Boolean name.vb: Boolean -- uid: OpenTK.Core.Platform.AudioData.Audio* - commentId: Overload:OpenTK.Core.Platform.AudioData.Audio - href: OpenTK.Core.Platform.AudioData.html#OpenTK_Core_Platform_AudioData_Audio +- uid: OpenTK.Platform.AudioData.Audio* + commentId: Overload:OpenTK.Platform.AudioData.Audio + href: OpenTK.Platform.AudioData.html#OpenTK_Platform_AudioData_Audio name: Audio nameWithType: AudioData.Audio - fullName: OpenTK.Core.Platform.AudioData.Audio + fullName: OpenTK.Platform.AudioData.Audio - uid: System.Int16[] isExternal: true href: https://learn.microsoft.com/dotnet/api/system.int16 diff --git a/api/OpenTK.Core.Platform.BatteryInfo.yml b/api/OpenTK.Platform.BatteryInfo.yml similarity index 74% rename from api/OpenTK.Core.Platform.BatteryInfo.yml rename to api/OpenTK.Platform.BatteryInfo.yml index 4684af7f..cc2ff893 100644 --- a/api/OpenTK.Core.Platform.BatteryInfo.yml +++ b/api/OpenTK.Platform.BatteryInfo.yml @@ -1,34 +1,30 @@ ### YamlMime:ManagedReference items: -- uid: OpenTK.Core.Platform.BatteryInfo - commentId: T:OpenTK.Core.Platform.BatteryInfo +- uid: OpenTK.Platform.BatteryInfo + commentId: T:OpenTK.Platform.BatteryInfo id: BatteryInfo - parent: OpenTK.Core.Platform + parent: OpenTK.Platform children: - - OpenTK.Core.Platform.BatteryInfo.BatteryPercent - - OpenTK.Core.Platform.BatteryInfo.BatteryTime - - OpenTK.Core.Platform.BatteryInfo.Charging - - OpenTK.Core.Platform.BatteryInfo.OnAC - - OpenTK.Core.Platform.BatteryInfo.PowerSaver - - OpenTK.Core.Platform.BatteryInfo.ToString + - OpenTK.Platform.BatteryInfo.BatteryPercent + - OpenTK.Platform.BatteryInfo.BatteryTime + - OpenTK.Platform.BatteryInfo.Charging + - OpenTK.Platform.BatteryInfo.OnAC + - OpenTK.Platform.BatteryInfo.PowerSaver + - OpenTK.Platform.BatteryInfo.ToString langs: - csharp - vb name: BatteryInfo nameWithType: BatteryInfo - fullName: OpenTK.Core.Platform.BatteryInfo + fullName: OpenTK.Platform.BatteryInfo type: Struct source: - remote: - path: src/OpenTK.Core/Platform/BatteryInfo.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: BatteryInfo - path: opentk/src/OpenTK.Core/Platform/BatteryInfo.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\BatteryInfo.cs startLine: 11 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform + - OpenTK.Platform + namespace: OpenTK.Platform summary: A struct containing information about the battery status of the computer. example: [] syntax: @@ -40,28 +36,24 @@ items: - System.Object.Equals(System.Object,System.Object) - System.Object.GetType - System.Object.ReferenceEquals(System.Object,System.Object) -- uid: OpenTK.Core.Platform.BatteryInfo.OnAC - commentId: F:OpenTK.Core.Platform.BatteryInfo.OnAC +- uid: OpenTK.Platform.BatteryInfo.OnAC + commentId: F:OpenTK.Platform.BatteryInfo.OnAC id: OnAC - parent: OpenTK.Core.Platform.BatteryInfo + parent: OpenTK.Platform.BatteryInfo langs: - csharp - vb name: OnAC nameWithType: BatteryInfo.OnAC - fullName: OpenTK.Core.Platform.BatteryInfo.OnAC + fullName: OpenTK.Platform.BatteryInfo.OnAC type: Field source: - remote: - path: src/OpenTK.Core/Platform/BatteryInfo.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: OnAC - path: opentk/src/OpenTK.Core/Platform/BatteryInfo.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\BatteryInfo.cs startLine: 16 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform + - OpenTK.Platform + namespace: OpenTK.Platform summary: Whether the computer is running on AC power. example: [] syntax: @@ -69,28 +61,24 @@ items: return: type: System.Boolean content.vb: Public OnAC As Boolean -- uid: OpenTK.Core.Platform.BatteryInfo.Charging - commentId: F:OpenTK.Core.Platform.BatteryInfo.Charging +- uid: OpenTK.Platform.BatteryInfo.Charging + commentId: F:OpenTK.Platform.BatteryInfo.Charging id: Charging - parent: OpenTK.Core.Platform.BatteryInfo + parent: OpenTK.Platform.BatteryInfo langs: - csharp - vb name: Charging nameWithType: BatteryInfo.Charging - fullName: OpenTK.Core.Platform.BatteryInfo.Charging + fullName: OpenTK.Platform.BatteryInfo.Charging type: Field source: - remote: - path: src/OpenTK.Core/Platform/BatteryInfo.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Charging - path: opentk/src/OpenTK.Core/Platform/BatteryInfo.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\BatteryInfo.cs startLine: 21 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform + - OpenTK.Platform + namespace: OpenTK.Platform summary: Whether the battery is charging or not. example: [] syntax: @@ -98,28 +86,24 @@ items: return: type: System.Boolean content.vb: Public Charging As Boolean -- uid: OpenTK.Core.Platform.BatteryInfo.PowerSaver - commentId: F:OpenTK.Core.Platform.BatteryInfo.PowerSaver +- uid: OpenTK.Platform.BatteryInfo.PowerSaver + commentId: F:OpenTK.Platform.BatteryInfo.PowerSaver id: PowerSaver - parent: OpenTK.Core.Platform.BatteryInfo + parent: OpenTK.Platform.BatteryInfo langs: - csharp - vb name: PowerSaver nameWithType: BatteryInfo.PowerSaver - fullName: OpenTK.Core.Platform.BatteryInfo.PowerSaver + fullName: OpenTK.Platform.BatteryInfo.PowerSaver type: Field source: - remote: - path: src/OpenTK.Core/Platform/BatteryInfo.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: PowerSaver - path: opentk/src/OpenTK.Core/Platform/BatteryInfo.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\BatteryInfo.cs startLine: 27 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform + - OpenTK.Platform + namespace: OpenTK.Platform summary: >- Whether battery saver is on or not. @@ -130,28 +114,24 @@ items: return: type: System.Boolean content.vb: Public PowerSaver As Boolean -- uid: OpenTK.Core.Platform.BatteryInfo.BatteryPercent - commentId: F:OpenTK.Core.Platform.BatteryInfo.BatteryPercent +- uid: OpenTK.Platform.BatteryInfo.BatteryPercent + commentId: F:OpenTK.Platform.BatteryInfo.BatteryPercent id: BatteryPercent - parent: OpenTK.Core.Platform.BatteryInfo + parent: OpenTK.Platform.BatteryInfo langs: - csharp - vb name: BatteryPercent nameWithType: BatteryInfo.BatteryPercent - fullName: OpenTK.Core.Platform.BatteryInfo.BatteryPercent + fullName: OpenTK.Platform.BatteryInfo.BatteryPercent type: Field source: - remote: - path: src/OpenTK.Core/Platform/BatteryInfo.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: BatteryPercent - path: opentk/src/OpenTK.Core/Platform/BatteryInfo.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\BatteryInfo.cs startLine: 34 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform + - OpenTK.Platform + namespace: OpenTK.Platform summary: >- A percentage value (in the range [0, 100]) @@ -164,28 +144,24 @@ items: return: type: System.Nullable{System.Single} content.vb: Public BatteryPercent As Single? -- uid: OpenTK.Core.Platform.BatteryInfo.BatteryTime - commentId: F:OpenTK.Core.Platform.BatteryInfo.BatteryTime +- uid: OpenTK.Platform.BatteryInfo.BatteryTime + commentId: F:OpenTK.Platform.BatteryInfo.BatteryTime id: BatteryTime - parent: OpenTK.Core.Platform.BatteryInfo + parent: OpenTK.Platform.BatteryInfo langs: - csharp - vb name: BatteryTime nameWithType: BatteryInfo.BatteryTime - fullName: OpenTK.Core.Platform.BatteryInfo.BatteryTime + fullName: OpenTK.Platform.BatteryInfo.BatteryTime type: Field source: - remote: - path: src/OpenTK.Core/Platform/BatteryInfo.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: BatteryTime - path: opentk/src/OpenTK.Core/Platform/BatteryInfo.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\BatteryInfo.cs startLine: 40 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform + - OpenTK.Platform + namespace: OpenTK.Platform summary: >- An estimate in seconds of how much battery charge is left, @@ -196,28 +172,24 @@ items: return: type: System.Nullable{System.Single} content.vb: Public BatteryTime As Single? -- uid: OpenTK.Core.Platform.BatteryInfo.ToString - commentId: M:OpenTK.Core.Platform.BatteryInfo.ToString +- uid: OpenTK.Platform.BatteryInfo.ToString + commentId: M:OpenTK.Platform.BatteryInfo.ToString id: ToString - parent: OpenTK.Core.Platform.BatteryInfo + parent: OpenTK.Platform.BatteryInfo langs: - csharp - vb name: ToString() nameWithType: BatteryInfo.ToString() - fullName: OpenTK.Core.Platform.BatteryInfo.ToString() + fullName: OpenTK.Platform.BatteryInfo.ToString() type: Method source: - remote: - path: src/OpenTK.Core/Platform/BatteryInfo.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Core/Platform/BatteryInfo.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\BatteryInfo.cs startLine: 43 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform + - OpenTK.Platform + namespace: OpenTK.Platform summary: Returns the fully qualified type name of this instance. example: [] syntax: @@ -227,38 +199,30 @@ items: description: The fully qualified type name. content.vb: Public Overrides Function ToString() As String overridden: System.ValueType.ToString - overload: OpenTK.Core.Platform.BatteryInfo.ToString* + overload: OpenTK.Platform.BatteryInfo.ToString* references: -- uid: OpenTK.Core.Platform - commentId: N:OpenTK.Core.Platform +- uid: OpenTK.Platform + commentId: N:OpenTK.Platform href: OpenTK.html - name: OpenTK.Core.Platform - nameWithType: OpenTK.Core.Platform - fullName: OpenTK.Core.Platform + name: OpenTK.Platform + nameWithType: OpenTK.Platform + fullName: OpenTK.Platform spec.csharp: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html spec.vb: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html - uid: System.ValueType.Equals(System.Object) commentId: M:System.ValueType.Equals(System.Object) parent: System.ValueType @@ -538,12 +502,12 @@ references: href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - name: ( - name: ) -- uid: OpenTK.Core.Platform.BatteryInfo.ToString* - commentId: Overload:OpenTK.Core.Platform.BatteryInfo.ToString - href: OpenTK.Core.Platform.BatteryInfo.html#OpenTK_Core_Platform_BatteryInfo_ToString +- uid: OpenTK.Platform.BatteryInfo.ToString* + commentId: Overload:OpenTK.Platform.BatteryInfo.ToString + href: OpenTK.Platform.BatteryInfo.html#OpenTK_Platform_BatteryInfo_ToString name: ToString nameWithType: BatteryInfo.ToString - fullName: OpenTK.Core.Platform.BatteryInfo.ToString + fullName: OpenTK.Platform.BatteryInfo.ToString - uid: System.String commentId: T:System.String parent: System diff --git a/api/OpenTK.Platform.BatteryStatus.yml b/api/OpenTK.Platform.BatteryStatus.yml new file mode 100644 index 00000000..04ab9587 --- /dev/null +++ b/api/OpenTK.Platform.BatteryStatus.yml @@ -0,0 +1,138 @@ +### YamlMime:ManagedReference +items: +- uid: OpenTK.Platform.BatteryStatus + commentId: T:OpenTK.Platform.BatteryStatus + id: BatteryStatus + parent: OpenTK.Platform + children: + - OpenTK.Platform.BatteryStatus.HasSystemBattery + - OpenTK.Platform.BatteryStatus.NoSystemBattery + - OpenTK.Platform.BatteryStatus.Unknown + langs: + - csharp + - vb + name: BatteryStatus + nameWithType: BatteryStatus + fullName: OpenTK.Platform.BatteryStatus + type: Enum + source: + id: BatteryStatus + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\BatteryStatus.cs + startLine: 11 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Whether the computer has a battery or if it doesn't, or if the computers battery status is unknown. + example: [] + syntax: + content: public enum BatteryStatus + content.vb: Public Enum BatteryStatus +- uid: OpenTK.Platform.BatteryStatus.Unknown + commentId: F:OpenTK.Platform.BatteryStatus.Unknown + id: Unknown + parent: OpenTK.Platform.BatteryStatus + langs: + - csharp + - vb + name: Unknown + nameWithType: BatteryStatus.Unknown + fullName: OpenTK.Platform.BatteryStatus.Unknown + type: Field + source: + id: Unknown + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\BatteryStatus.cs + startLine: 16 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: The battery status of the computer is indeterminable. + example: [] + syntax: + content: Unknown = 0 + return: + type: OpenTK.Platform.BatteryStatus +- uid: OpenTK.Platform.BatteryStatus.NoSystemBattery + commentId: F:OpenTK.Platform.BatteryStatus.NoSystemBattery + id: NoSystemBattery + parent: OpenTK.Platform.BatteryStatus + langs: + - csharp + - vb + name: NoSystemBattery + nameWithType: BatteryStatus.NoSystemBattery + fullName: OpenTK.Platform.BatteryStatus.NoSystemBattery + type: Field + source: + id: NoSystemBattery + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\BatteryStatus.cs + startLine: 21 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: The computer does not have a battery. + example: [] + syntax: + content: NoSystemBattery = 1 + return: + type: OpenTK.Platform.BatteryStatus +- uid: OpenTK.Platform.BatteryStatus.HasSystemBattery + commentId: F:OpenTK.Platform.BatteryStatus.HasSystemBattery + id: HasSystemBattery + parent: OpenTK.Platform.BatteryStatus + langs: + - csharp + - vb + name: HasSystemBattery + nameWithType: BatteryStatus.HasSystemBattery + fullName: OpenTK.Platform.BatteryStatus.HasSystemBattery + type: Field + source: + id: HasSystemBattery + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\BatteryStatus.cs + startLine: 26 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: The computer has a battery, for more information see . + example: [] + syntax: + content: HasSystemBattery = 2 + return: + type: OpenTK.Platform.BatteryStatus +references: +- uid: OpenTK.Platform + commentId: N:OpenTK.Platform + href: OpenTK.html + name: OpenTK.Platform + nameWithType: OpenTK.Platform + fullName: OpenTK.Platform + spec.csharp: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Platform + name: Platform + href: OpenTK.Platform.html + spec.vb: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Platform + name: Platform + href: OpenTK.Platform.html +- uid: OpenTK.Platform.BatteryStatus + commentId: T:OpenTK.Platform.BatteryStatus + parent: OpenTK.Platform + href: OpenTK.Platform.BatteryStatus.html + name: BatteryStatus + nameWithType: BatteryStatus + fullName: OpenTK.Platform.BatteryStatus +- uid: OpenTK.Platform.BatteryInfo + commentId: T:OpenTK.Platform.BatteryInfo + parent: OpenTK.Platform + href: OpenTK.Platform.BatteryInfo.html + name: BatteryInfo + nameWithType: BatteryInfo + fullName: OpenTK.Platform.BatteryInfo diff --git a/api/OpenTK.Core.Platform.Bitmap.yml b/api/OpenTK.Platform.Bitmap.yml similarity index 73% rename from api/OpenTK.Core.Platform.Bitmap.yml rename to api/OpenTK.Platform.Bitmap.yml index 6be7f608..98897085 100644 --- a/api/OpenTK.Core.Platform.Bitmap.yml +++ b/api/OpenTK.Platform.Bitmap.yml @@ -1,32 +1,28 @@ ### YamlMime:ManagedReference items: -- uid: OpenTK.Core.Platform.Bitmap - commentId: T:OpenTK.Core.Platform.Bitmap +- uid: OpenTK.Platform.Bitmap + commentId: T:OpenTK.Platform.Bitmap id: Bitmap - parent: OpenTK.Core.Platform + parent: OpenTK.Platform children: - - OpenTK.Core.Platform.Bitmap.#ctor(System.Int32,System.Int32,System.Byte[]) - - OpenTK.Core.Platform.Bitmap.Data - - OpenTK.Core.Platform.Bitmap.Height - - OpenTK.Core.Platform.Bitmap.Width + - OpenTK.Platform.Bitmap.#ctor(System.Int32,System.Int32,System.Byte[]) + - OpenTK.Platform.Bitmap.Data + - OpenTK.Platform.Bitmap.Height + - OpenTK.Platform.Bitmap.Width langs: - csharp - vb name: Bitmap nameWithType: Bitmap - fullName: OpenTK.Core.Platform.Bitmap + fullName: OpenTK.Platform.Bitmap type: Class source: - remote: - path: src/OpenTK.Core/Platform/Bitmap.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Bitmap - path: opentk/src/OpenTK.Core/Platform/Bitmap.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Bitmap.cs startLine: 11 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform + - OpenTK.Platform + namespace: OpenTK.Platform summary: Represents a simple bitmap in a RGBA8 format. example: [] syntax: @@ -42,28 +38,24 @@ items: - System.Object.MemberwiseClone - System.Object.ReferenceEquals(System.Object,System.Object) - System.Object.ToString -- uid: OpenTK.Core.Platform.Bitmap.Width - commentId: P:OpenTK.Core.Platform.Bitmap.Width +- uid: OpenTK.Platform.Bitmap.Width + commentId: P:OpenTK.Platform.Bitmap.Width id: Width - parent: OpenTK.Core.Platform.Bitmap + parent: OpenTK.Platform.Bitmap langs: - csharp - vb name: Width nameWithType: Bitmap.Width - fullName: OpenTK.Core.Platform.Bitmap.Width + fullName: OpenTK.Platform.Bitmap.Width type: Property source: - remote: - path: src/OpenTK.Core/Platform/Bitmap.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Width - path: opentk/src/OpenTK.Core/Platform/Bitmap.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Bitmap.cs startLine: 18 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform + - OpenTK.Platform + namespace: OpenTK.Platform summary: The width of the bitmap in pixels. example: [] syntax: @@ -72,29 +64,25 @@ items: return: type: System.Int32 content.vb: Public Property Width As Integer - overload: OpenTK.Core.Platform.Bitmap.Width* -- uid: OpenTK.Core.Platform.Bitmap.Height - commentId: P:OpenTK.Core.Platform.Bitmap.Height + overload: OpenTK.Platform.Bitmap.Width* +- uid: OpenTK.Platform.Bitmap.Height + commentId: P:OpenTK.Platform.Bitmap.Height id: Height - parent: OpenTK.Core.Platform.Bitmap + parent: OpenTK.Platform.Bitmap langs: - csharp - vb name: Height nameWithType: Bitmap.Height - fullName: OpenTK.Core.Platform.Bitmap.Height + fullName: OpenTK.Platform.Bitmap.Height type: Property source: - remote: - path: src/OpenTK.Core/Platform/Bitmap.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Height - path: opentk/src/OpenTK.Core/Platform/Bitmap.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Bitmap.cs startLine: 23 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform + - OpenTK.Platform + namespace: OpenTK.Platform summary: The height of the bitmap in pixels. example: [] syntax: @@ -103,29 +91,25 @@ items: return: type: System.Int32 content.vb: Public Property Height As Integer - overload: OpenTK.Core.Platform.Bitmap.Height* -- uid: OpenTK.Core.Platform.Bitmap.Data - commentId: P:OpenTK.Core.Platform.Bitmap.Data + overload: OpenTK.Platform.Bitmap.Height* +- uid: OpenTK.Platform.Bitmap.Data + commentId: P:OpenTK.Platform.Bitmap.Data id: Data - parent: OpenTK.Core.Platform.Bitmap + parent: OpenTK.Platform.Bitmap langs: - csharp - vb name: Data nameWithType: Bitmap.Data - fullName: OpenTK.Core.Platform.Bitmap.Data + fullName: OpenTK.Platform.Bitmap.Data type: Property source: - remote: - path: src/OpenTK.Core/Platform/Bitmap.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Data - path: opentk/src/OpenTK.Core/Platform/Bitmap.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Bitmap.cs startLine: 28 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform + - OpenTK.Platform + namespace: OpenTK.Platform summary: An array of RGBA8 bytes. example: [] syntax: @@ -134,30 +118,26 @@ items: return: type: System.Byte[] content.vb: Public Property Data As Byte() - overload: OpenTK.Core.Platform.Bitmap.Data* -- uid: OpenTK.Core.Platform.Bitmap.#ctor(System.Int32,System.Int32,System.Byte[]) - commentId: M:OpenTK.Core.Platform.Bitmap.#ctor(System.Int32,System.Int32,System.Byte[]) + overload: OpenTK.Platform.Bitmap.Data* +- uid: OpenTK.Platform.Bitmap.#ctor(System.Int32,System.Int32,System.Byte[]) + commentId: M:OpenTK.Platform.Bitmap.#ctor(System.Int32,System.Int32,System.Byte[]) id: '#ctor(System.Int32,System.Int32,System.Byte[])' - parent: OpenTK.Core.Platform.Bitmap + parent: OpenTK.Platform.Bitmap langs: - csharp - vb name: Bitmap(int, int, byte[]) nameWithType: Bitmap.Bitmap(int, int, byte[]) - fullName: OpenTK.Core.Platform.Bitmap.Bitmap(int, int, byte[]) + fullName: OpenTK.Platform.Bitmap.Bitmap(int, int, byte[]) type: Constructor source: - remote: - path: src/OpenTK.Core/Platform/Bitmap.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Core/Platform/Bitmap.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Bitmap.cs startLine: 37 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Initializes a new instance of the class with the specified width, height and pixel data. + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Initializes a new instance of the class with the specified width, height and pixel data. example: [] syntax: content: public Bitmap(int width, int height, byte[] data) @@ -172,41 +152,33 @@ items: type: System.Byte[] description: The pixel data of the bitmap. content.vb: Public Sub New(width As Integer, height As Integer, data As Byte()) - overload: OpenTK.Core.Platform.Bitmap.#ctor* + overload: OpenTK.Platform.Bitmap.#ctor* nameWithType.vb: Bitmap.New(Integer, Integer, Byte()) - fullName.vb: OpenTK.Core.Platform.Bitmap.New(Integer, Integer, Byte()) + fullName.vb: OpenTK.Platform.Bitmap.New(Integer, Integer, Byte()) name.vb: New(Integer, Integer, Byte()) references: -- uid: OpenTK.Core.Platform - commentId: N:OpenTK.Core.Platform +- uid: OpenTK.Platform + commentId: N:OpenTK.Platform href: OpenTK.html - name: OpenTK.Core.Platform - nameWithType: OpenTK.Core.Platform - fullName: OpenTK.Core.Platform + name: OpenTK.Platform + nameWithType: OpenTK.Platform + fullName: OpenTK.Platform spec.csharp: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html spec.vb: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html - uid: System.Object commentId: T:System.Object parent: System @@ -444,12 +416,12 @@ references: name: System nameWithType: System fullName: System -- uid: OpenTK.Core.Platform.Bitmap.Width* - commentId: Overload:OpenTK.Core.Platform.Bitmap.Width - href: OpenTK.Core.Platform.Bitmap.html#OpenTK_Core_Platform_Bitmap_Width +- uid: OpenTK.Platform.Bitmap.Width* + commentId: Overload:OpenTK.Platform.Bitmap.Width + href: OpenTK.Platform.Bitmap.html#OpenTK_Platform_Bitmap_Width name: Width nameWithType: Bitmap.Width - fullName: OpenTK.Core.Platform.Bitmap.Width + fullName: OpenTK.Platform.Bitmap.Width - uid: System.Int32 commentId: T:System.Int32 parent: System @@ -461,18 +433,18 @@ references: nameWithType.vb: Integer fullName.vb: Integer name.vb: Integer -- uid: OpenTK.Core.Platform.Bitmap.Height* - commentId: Overload:OpenTK.Core.Platform.Bitmap.Height - href: OpenTK.Core.Platform.Bitmap.html#OpenTK_Core_Platform_Bitmap_Height +- uid: OpenTK.Platform.Bitmap.Height* + commentId: Overload:OpenTK.Platform.Bitmap.Height + href: OpenTK.Platform.Bitmap.html#OpenTK_Platform_Bitmap_Height name: Height nameWithType: Bitmap.Height - fullName: OpenTK.Core.Platform.Bitmap.Height -- uid: OpenTK.Core.Platform.Bitmap.Data* - commentId: Overload:OpenTK.Core.Platform.Bitmap.Data - href: OpenTK.Core.Platform.Bitmap.html#OpenTK_Core_Platform_Bitmap_Data + fullName: OpenTK.Platform.Bitmap.Height +- uid: OpenTK.Platform.Bitmap.Data* + commentId: Overload:OpenTK.Platform.Bitmap.Data + href: OpenTK.Platform.Bitmap.html#OpenTK_Platform_Bitmap_Data name: Data nameWithType: Bitmap.Data - fullName: OpenTK.Core.Platform.Bitmap.Data + fullName: OpenTK.Platform.Bitmap.Data - uid: System.Byte[] isExternal: true href: https://learn.microsoft.com/dotnet/api/system.byte @@ -496,19 +468,19 @@ references: href: https://learn.microsoft.com/dotnet/api/system.byte - name: ( - name: ) -- uid: OpenTK.Core.Platform.Bitmap - commentId: T:OpenTK.Core.Platform.Bitmap - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.Bitmap.html +- uid: OpenTK.Platform.Bitmap + commentId: T:OpenTK.Platform.Bitmap + parent: OpenTK.Platform + href: OpenTK.Platform.Bitmap.html name: Bitmap nameWithType: Bitmap - fullName: OpenTK.Core.Platform.Bitmap -- uid: OpenTK.Core.Platform.Bitmap.#ctor* - commentId: Overload:OpenTK.Core.Platform.Bitmap.#ctor - href: OpenTK.Core.Platform.Bitmap.html#OpenTK_Core_Platform_Bitmap__ctor_System_Int32_System_Int32_System_Byte___ + fullName: OpenTK.Platform.Bitmap +- uid: OpenTK.Platform.Bitmap.#ctor* + commentId: Overload:OpenTK.Platform.Bitmap.#ctor + href: OpenTK.Platform.Bitmap.html#OpenTK_Platform_Bitmap__ctor_System_Int32_System_Int32_System_Byte___ name: Bitmap nameWithType: Bitmap.Bitmap - fullName: OpenTK.Core.Platform.Bitmap.Bitmap + fullName: OpenTK.Platform.Bitmap.Bitmap nameWithType.vb: Bitmap.New - fullName.vb: OpenTK.Core.Platform.Bitmap.New + fullName.vb: OpenTK.Platform.Bitmap.New name.vb: New diff --git a/api/OpenTK.Platform.ClipboardFormat.yml b/api/OpenTK.Platform.ClipboardFormat.yml new file mode 100644 index 00000000..32d16732 --- /dev/null +++ b/api/OpenTK.Platform.ClipboardFormat.yml @@ -0,0 +1,195 @@ +### YamlMime:ManagedReference +items: +- uid: OpenTK.Platform.ClipboardFormat + commentId: T:OpenTK.Platform.ClipboardFormat + id: ClipboardFormat + parent: OpenTK.Platform + children: + - OpenTK.Platform.ClipboardFormat.Audio + - OpenTK.Platform.ClipboardFormat.Bitmap + - OpenTK.Platform.ClipboardFormat.Files + - OpenTK.Platform.ClipboardFormat.None + - OpenTK.Platform.ClipboardFormat.Text + langs: + - csharp + - vb + name: ClipboardFormat + nameWithType: ClipboardFormat + fullName: OpenTK.Platform.ClipboardFormat + type: Enum + source: + id: ClipboardFormat + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\ClipboardFormat.cs + startLine: 11 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Represents a clipboard data format. + example: [] + syntax: + content: public enum ClipboardFormat + content.vb: Public Enum ClipboardFormat +- uid: OpenTK.Platform.ClipboardFormat.None + commentId: F:OpenTK.Platform.ClipboardFormat.None + id: None + parent: OpenTK.Platform.ClipboardFormat + langs: + - csharp + - vb + name: None + nameWithType: ClipboardFormat.None + fullName: OpenTK.Platform.ClipboardFormat.None + type: Field + source: + id: None + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\ClipboardFormat.cs + startLine: 16 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Unknown format, or the clipboard is empty. + example: [] + syntax: + content: None = 0 + return: + type: OpenTK.Platform.ClipboardFormat +- uid: OpenTK.Platform.ClipboardFormat.Text + commentId: F:OpenTK.Platform.ClipboardFormat.Text + id: Text + parent: OpenTK.Platform.ClipboardFormat + langs: + - csharp + - vb + name: Text + nameWithType: ClipboardFormat.Text + fullName: OpenTK.Platform.ClipboardFormat.Text + type: Field + source: + id: Text + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\ClipboardFormat.cs + startLine: 21 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Unicode text. + example: [] + syntax: + content: Text = 1 + return: + type: OpenTK.Platform.ClipboardFormat +- uid: OpenTK.Platform.ClipboardFormat.Audio + commentId: F:OpenTK.Platform.ClipboardFormat.Audio + id: Audio + parent: OpenTK.Platform.ClipboardFormat + langs: + - csharp + - vb + name: Audio + nameWithType: ClipboardFormat.Audio + fullName: OpenTK.Platform.ClipboardFormat.Audio + type: Field + source: + id: Audio + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\ClipboardFormat.cs + startLine: 26 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Audio data. See . + example: [] + syntax: + content: Audio = 2 + return: + type: OpenTK.Platform.ClipboardFormat +- uid: OpenTK.Platform.ClipboardFormat.Bitmap + commentId: F:OpenTK.Platform.ClipboardFormat.Bitmap + id: Bitmap + parent: OpenTK.Platform.ClipboardFormat + langs: + - csharp + - vb + name: Bitmap + nameWithType: ClipboardFormat.Bitmap + fullName: OpenTK.Platform.ClipboardFormat.Bitmap + type: Field + source: + id: Bitmap + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\ClipboardFormat.cs + startLine: 31 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: A bitmap. See . + example: [] + syntax: + content: Bitmap = 3 + return: + type: OpenTK.Platform.ClipboardFormat +- uid: OpenTK.Platform.ClipboardFormat.Files + commentId: F:OpenTK.Platform.ClipboardFormat.Files + id: Files + parent: OpenTK.Platform.ClipboardFormat + langs: + - csharp + - vb + name: Files + nameWithType: ClipboardFormat.Files + fullName: OpenTK.Platform.ClipboardFormat.Files + type: Field + source: + id: Files + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\ClipboardFormat.cs + startLine: 36 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: A list of files and directories. + example: [] + syntax: + content: Files = 5 + return: + type: OpenTK.Platform.ClipboardFormat +references: +- uid: OpenTK.Platform + commentId: N:OpenTK.Platform + href: OpenTK.html + name: OpenTK.Platform + nameWithType: OpenTK.Platform + fullName: OpenTK.Platform + spec.csharp: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Platform + name: Platform + href: OpenTK.Platform.html + spec.vb: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Platform + name: Platform + href: OpenTK.Platform.html +- uid: OpenTK.Platform.ClipboardFormat + commentId: T:OpenTK.Platform.ClipboardFormat + parent: OpenTK.Platform + href: OpenTK.Platform.ClipboardFormat.html + name: ClipboardFormat + nameWithType: ClipboardFormat + fullName: OpenTK.Platform.ClipboardFormat +- uid: OpenTK.Platform.AudioData + commentId: T:OpenTK.Platform.AudioData + parent: OpenTK.Platform + href: OpenTK.Platform.AudioData.html + name: AudioData + nameWithType: AudioData + fullName: OpenTK.Platform.AudioData +- uid: OpenTK.Platform.Bitmap + commentId: T:OpenTK.Platform.Bitmap + parent: OpenTK.Platform + href: OpenTK.Platform.Bitmap.html + name: Bitmap + nameWithType: Bitmap + fullName: OpenTK.Platform.Bitmap diff --git a/api/OpenTK.Core.Platform.ClipboardUpdateEventArgs.yml b/api/OpenTK.Platform.ClipboardUpdateEventArgs.yml similarity index 72% rename from api/OpenTK.Core.Platform.ClipboardUpdateEventArgs.yml rename to api/OpenTK.Platform.ClipboardUpdateEventArgs.yml index a453bf80..7d31739b 100644 --- a/api/OpenTK.Core.Platform.ClipboardUpdateEventArgs.yml +++ b/api/OpenTK.Platform.ClipboardUpdateEventArgs.yml @@ -1,30 +1,26 @@ ### YamlMime:ManagedReference items: -- uid: OpenTK.Core.Platform.ClipboardUpdateEventArgs - commentId: T:OpenTK.Core.Platform.ClipboardUpdateEventArgs +- uid: OpenTK.Platform.ClipboardUpdateEventArgs + commentId: T:OpenTK.Platform.ClipboardUpdateEventArgs id: ClipboardUpdateEventArgs - parent: OpenTK.Core.Platform + parent: OpenTK.Platform children: - - OpenTK.Core.Platform.ClipboardUpdateEventArgs.#ctor(OpenTK.Core.Platform.ClipboardFormat) - - OpenTK.Core.Platform.ClipboardUpdateEventArgs.NewFormat + - OpenTK.Platform.ClipboardUpdateEventArgs.#ctor(OpenTK.Platform.ClipboardFormat) + - OpenTK.Platform.ClipboardUpdateEventArgs.NewFormat langs: - csharp - vb name: ClipboardUpdateEventArgs nameWithType: ClipboardUpdateEventArgs - fullName: OpenTK.Core.Platform.ClipboardUpdateEventArgs + fullName: OpenTK.Platform.ClipboardUpdateEventArgs type: Class source: - remote: - path: src/OpenTK.Core/Platform/WindowEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ClipboardUpdateEventArgs - path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs - startLine: 565 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\WindowEventArgs.cs + startLine: 589 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform + - OpenTK.Platform + namespace: OpenTK.Platform summary: This event is triggered when the contents of the clipboard is changed. example: [] syntax: @@ -42,103 +38,87 @@ items: - System.Object.MemberwiseClone - System.Object.ReferenceEquals(System.Object,System.Object) - System.Object.ToString -- uid: OpenTK.Core.Platform.ClipboardUpdateEventArgs.NewFormat - commentId: P:OpenTK.Core.Platform.ClipboardUpdateEventArgs.NewFormat +- uid: OpenTK.Platform.ClipboardUpdateEventArgs.NewFormat + commentId: P:OpenTK.Platform.ClipboardUpdateEventArgs.NewFormat id: NewFormat - parent: OpenTK.Core.Platform.ClipboardUpdateEventArgs + parent: OpenTK.Platform.ClipboardUpdateEventArgs langs: - csharp - vb name: NewFormat nameWithType: ClipboardUpdateEventArgs.NewFormat - fullName: OpenTK.Core.Platform.ClipboardUpdateEventArgs.NewFormat + fullName: OpenTK.Platform.ClipboardUpdateEventArgs.NewFormat type: Property source: - remote: - path: src/OpenTK.Core/Platform/WindowEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: NewFormat - path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs - startLine: 570 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\WindowEventArgs.cs + startLine: 594 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform + - OpenTK.Platform + namespace: OpenTK.Platform summary: The format of the new clipboard contents. example: [] syntax: content: public ClipboardFormat NewFormat { get; } parameters: [] return: - type: OpenTK.Core.Platform.ClipboardFormat + type: OpenTK.Platform.ClipboardFormat content.vb: Public Property NewFormat As ClipboardFormat - overload: OpenTK.Core.Platform.ClipboardUpdateEventArgs.NewFormat* -- uid: OpenTK.Core.Platform.ClipboardUpdateEventArgs.#ctor(OpenTK.Core.Platform.ClipboardFormat) - commentId: M:OpenTK.Core.Platform.ClipboardUpdateEventArgs.#ctor(OpenTK.Core.Platform.ClipboardFormat) - id: '#ctor(OpenTK.Core.Platform.ClipboardFormat)' - parent: OpenTK.Core.Platform.ClipboardUpdateEventArgs + overload: OpenTK.Platform.ClipboardUpdateEventArgs.NewFormat* +- uid: OpenTK.Platform.ClipboardUpdateEventArgs.#ctor(OpenTK.Platform.ClipboardFormat) + commentId: M:OpenTK.Platform.ClipboardUpdateEventArgs.#ctor(OpenTK.Platform.ClipboardFormat) + id: '#ctor(OpenTK.Platform.ClipboardFormat)' + parent: OpenTK.Platform.ClipboardUpdateEventArgs langs: - csharp - vb name: ClipboardUpdateEventArgs(ClipboardFormat) nameWithType: ClipboardUpdateEventArgs.ClipboardUpdateEventArgs(ClipboardFormat) - fullName: OpenTK.Core.Platform.ClipboardUpdateEventArgs.ClipboardUpdateEventArgs(OpenTK.Core.Platform.ClipboardFormat) + fullName: OpenTK.Platform.ClipboardUpdateEventArgs.ClipboardUpdateEventArgs(OpenTK.Platform.ClipboardFormat) type: Constructor source: - remote: - path: src/OpenTK.Core/Platform/WindowEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs - startLine: 576 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\WindowEventArgs.cs + startLine: 600 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Initializes a new instance of the class. + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Initializes a new instance of the class. example: [] syntax: content: public ClipboardUpdateEventArgs(ClipboardFormat newFormat) parameters: - id: newFormat - type: OpenTK.Core.Platform.ClipboardFormat + type: OpenTK.Platform.ClipboardFormat description: The new format of the clipboard. content.vb: Public Sub New(newFormat As ClipboardFormat) - overload: OpenTK.Core.Platform.ClipboardUpdateEventArgs.#ctor* + overload: OpenTK.Platform.ClipboardUpdateEventArgs.#ctor* nameWithType.vb: ClipboardUpdateEventArgs.New(ClipboardFormat) - fullName.vb: OpenTK.Core.Platform.ClipboardUpdateEventArgs.New(OpenTK.Core.Platform.ClipboardFormat) + fullName.vb: OpenTK.Platform.ClipboardUpdateEventArgs.New(OpenTK.Platform.ClipboardFormat) name.vb: New(ClipboardFormat) references: -- uid: OpenTK.Core.Platform - commentId: N:OpenTK.Core.Platform +- uid: OpenTK.Platform + commentId: N:OpenTK.Platform href: OpenTK.html - name: OpenTK.Core.Platform - nameWithType: OpenTK.Core.Platform - fullName: OpenTK.Core.Platform + name: OpenTK.Platform + nameWithType: OpenTK.Platform + fullName: OpenTK.Platform spec.csharp: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html spec.vb: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html - uid: System.Object commentId: T:System.Object parent: System @@ -392,31 +372,31 @@ references: name: System nameWithType: System fullName: System -- uid: OpenTK.Core.Platform.ClipboardUpdateEventArgs.NewFormat* - commentId: Overload:OpenTK.Core.Platform.ClipboardUpdateEventArgs.NewFormat - href: OpenTK.Core.Platform.ClipboardUpdateEventArgs.html#OpenTK_Core_Platform_ClipboardUpdateEventArgs_NewFormat +- uid: OpenTK.Platform.ClipboardUpdateEventArgs.NewFormat* + commentId: Overload:OpenTK.Platform.ClipboardUpdateEventArgs.NewFormat + href: OpenTK.Platform.ClipboardUpdateEventArgs.html#OpenTK_Platform_ClipboardUpdateEventArgs_NewFormat name: NewFormat nameWithType: ClipboardUpdateEventArgs.NewFormat - fullName: OpenTK.Core.Platform.ClipboardUpdateEventArgs.NewFormat -- uid: OpenTK.Core.Platform.ClipboardFormat - commentId: T:OpenTK.Core.Platform.ClipboardFormat - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.ClipboardFormat.html + fullName: OpenTK.Platform.ClipboardUpdateEventArgs.NewFormat +- uid: OpenTK.Platform.ClipboardFormat + commentId: T:OpenTK.Platform.ClipboardFormat + parent: OpenTK.Platform + href: OpenTK.Platform.ClipboardFormat.html name: ClipboardFormat nameWithType: ClipboardFormat - fullName: OpenTK.Core.Platform.ClipboardFormat -- uid: OpenTK.Core.Platform.ClipboardUpdateEventArgs - commentId: T:OpenTK.Core.Platform.ClipboardUpdateEventArgs - href: OpenTK.Core.Platform.ClipboardUpdateEventArgs.html + fullName: OpenTK.Platform.ClipboardFormat +- uid: OpenTK.Platform.ClipboardUpdateEventArgs + commentId: T:OpenTK.Platform.ClipboardUpdateEventArgs + href: OpenTK.Platform.ClipboardUpdateEventArgs.html name: ClipboardUpdateEventArgs nameWithType: ClipboardUpdateEventArgs - fullName: OpenTK.Core.Platform.ClipboardUpdateEventArgs -- uid: OpenTK.Core.Platform.ClipboardUpdateEventArgs.#ctor* - commentId: Overload:OpenTK.Core.Platform.ClipboardUpdateEventArgs.#ctor - href: OpenTK.Core.Platform.ClipboardUpdateEventArgs.html#OpenTK_Core_Platform_ClipboardUpdateEventArgs__ctor_OpenTK_Core_Platform_ClipboardFormat_ + fullName: OpenTK.Platform.ClipboardUpdateEventArgs +- uid: OpenTK.Platform.ClipboardUpdateEventArgs.#ctor* + commentId: Overload:OpenTK.Platform.ClipboardUpdateEventArgs.#ctor + href: OpenTK.Platform.ClipboardUpdateEventArgs.html#OpenTK_Platform_ClipboardUpdateEventArgs__ctor_OpenTK_Platform_ClipboardFormat_ name: ClipboardUpdateEventArgs nameWithType: ClipboardUpdateEventArgs.ClipboardUpdateEventArgs - fullName: OpenTK.Core.Platform.ClipboardUpdateEventArgs.ClipboardUpdateEventArgs + fullName: OpenTK.Platform.ClipboardUpdateEventArgs.ClipboardUpdateEventArgs nameWithType.vb: ClipboardUpdateEventArgs.New - fullName.vb: OpenTK.Core.Platform.ClipboardUpdateEventArgs.New + fullName.vb: OpenTK.Platform.ClipboardUpdateEventArgs.New name.vb: New diff --git a/api/OpenTK.Core.Platform.CloseEventArgs.yml b/api/OpenTK.Platform.CloseEventArgs.yml similarity index 75% rename from api/OpenTK.Core.Platform.CloseEventArgs.yml rename to api/OpenTK.Platform.CloseEventArgs.yml index 327060b5..d49709ae 100644 --- a/api/OpenTK.Core.Platform.CloseEventArgs.yml +++ b/api/OpenTK.Platform.CloseEventArgs.yml @@ -1,29 +1,25 @@ ### YamlMime:ManagedReference items: -- uid: OpenTK.Core.Platform.CloseEventArgs - commentId: T:OpenTK.Core.Platform.CloseEventArgs +- uid: OpenTK.Platform.CloseEventArgs + commentId: T:OpenTK.Platform.CloseEventArgs id: CloseEventArgs - parent: OpenTK.Core.Platform + parent: OpenTK.Platform children: - - OpenTK.Core.Platform.CloseEventArgs.#ctor(OpenTK.Core.Platform.WindowHandle) + - OpenTK.Platform.CloseEventArgs.#ctor(OpenTK.Platform.WindowHandle) langs: - csharp - vb name: CloseEventArgs nameWithType: CloseEventArgs - fullName: OpenTK.Core.Platform.CloseEventArgs + fullName: OpenTK.Platform.CloseEventArgs type: Class source: - remote: - path: src/OpenTK.Core/Platform/WindowEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CloseEventArgs - path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs - startLine: 521 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\WindowEventArgs.cs + startLine: 545 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform + - OpenTK.Platform + namespace: OpenTK.Platform summary: This event is triggered when the user presses the exit button of a window. example: [] syntax: @@ -32,9 +28,9 @@ items: inheritance: - System.Object - System.EventArgs - - OpenTK.Core.Platform.WindowEventArgs + - OpenTK.Platform.WindowEventArgs inheritedMembers: - - OpenTK.Core.Platform.WindowEventArgs.Window + - OpenTK.Platform.WindowEventArgs.Window - System.EventArgs.Empty - System.Object.Equals(System.Object) - System.Object.Equals(System.Object,System.Object) @@ -43,72 +39,60 @@ items: - System.Object.MemberwiseClone - System.Object.ReferenceEquals(System.Object,System.Object) - System.Object.ToString -- uid: OpenTK.Core.Platform.CloseEventArgs.#ctor(OpenTK.Core.Platform.WindowHandle) - commentId: M:OpenTK.Core.Platform.CloseEventArgs.#ctor(OpenTK.Core.Platform.WindowHandle) - id: '#ctor(OpenTK.Core.Platform.WindowHandle)' - parent: OpenTK.Core.Platform.CloseEventArgs +- uid: OpenTK.Platform.CloseEventArgs.#ctor(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.CloseEventArgs.#ctor(OpenTK.Platform.WindowHandle) + id: '#ctor(OpenTK.Platform.WindowHandle)' + parent: OpenTK.Platform.CloseEventArgs langs: - csharp - vb name: CloseEventArgs(WindowHandle) nameWithType: CloseEventArgs.CloseEventArgs(WindowHandle) - fullName: OpenTK.Core.Platform.CloseEventArgs.CloseEventArgs(OpenTK.Core.Platform.WindowHandle) + fullName: OpenTK.Platform.CloseEventArgs.CloseEventArgs(OpenTK.Platform.WindowHandle) type: Constructor source: - remote: - path: src/OpenTK.Core/Platform/WindowEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs - startLine: 527 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\WindowEventArgs.cs + startLine: 551 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Initializes a new instance of the class. + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Initializes a new instance of the class. example: [] syntax: content: public CloseEventArgs(WindowHandle window) parameters: - id: window - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: The window that the user wants to close. content.vb: Public Sub New(window As WindowHandle) - overload: OpenTK.Core.Platform.CloseEventArgs.#ctor* + overload: OpenTK.Platform.CloseEventArgs.#ctor* nameWithType.vb: CloseEventArgs.New(WindowHandle) - fullName.vb: OpenTK.Core.Platform.CloseEventArgs.New(OpenTK.Core.Platform.WindowHandle) + fullName.vb: OpenTK.Platform.CloseEventArgs.New(OpenTK.Platform.WindowHandle) name.vb: New(WindowHandle) references: -- uid: OpenTK.Core.Platform - commentId: N:OpenTK.Core.Platform +- uid: OpenTK.Platform + commentId: N:OpenTK.Platform href: OpenTK.html - name: OpenTK.Core.Platform - nameWithType: OpenTK.Core.Platform - fullName: OpenTK.Core.Platform + name: OpenTK.Platform + nameWithType: OpenTK.Platform + fullName: OpenTK.Platform spec.csharp: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html spec.vb: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html - uid: System.Object commentId: T:System.Object parent: System @@ -128,20 +112,20 @@ references: name: EventArgs nameWithType: EventArgs fullName: System.EventArgs -- uid: OpenTK.Core.Platform.WindowEventArgs - commentId: T:OpenTK.Core.Platform.WindowEventArgs - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.WindowEventArgs.html +- uid: OpenTK.Platform.WindowEventArgs + commentId: T:OpenTK.Platform.WindowEventArgs + parent: OpenTK.Platform + href: OpenTK.Platform.WindowEventArgs.html name: WindowEventArgs nameWithType: WindowEventArgs - fullName: OpenTK.Core.Platform.WindowEventArgs -- uid: OpenTK.Core.Platform.WindowEventArgs.Window - commentId: P:OpenTK.Core.Platform.WindowEventArgs.Window - parent: OpenTK.Core.Platform.WindowEventArgs - href: OpenTK.Core.Platform.WindowEventArgs.html#OpenTK_Core_Platform_WindowEventArgs_Window + fullName: OpenTK.Platform.WindowEventArgs +- uid: OpenTK.Platform.WindowEventArgs.Window + commentId: P:OpenTK.Platform.WindowEventArgs.Window + parent: OpenTK.Platform.WindowEventArgs + href: OpenTK.Platform.WindowEventArgs.html#OpenTK_Platform_WindowEventArgs_Window name: Window nameWithType: WindowEventArgs.Window - fullName: OpenTK.Core.Platform.WindowEventArgs.Window + fullName: OpenTK.Platform.WindowEventArgs.Window - uid: System.EventArgs.Empty commentId: F:System.EventArgs.Empty parent: System.EventArgs @@ -376,25 +360,25 @@ references: name: System nameWithType: System fullName: System -- uid: OpenTK.Core.Platform.CloseEventArgs - commentId: T:OpenTK.Core.Platform.CloseEventArgs - href: OpenTK.Core.Platform.CloseEventArgs.html +- uid: OpenTK.Platform.CloseEventArgs + commentId: T:OpenTK.Platform.CloseEventArgs + href: OpenTK.Platform.CloseEventArgs.html name: CloseEventArgs nameWithType: CloseEventArgs - fullName: OpenTK.Core.Platform.CloseEventArgs -- uid: OpenTK.Core.Platform.CloseEventArgs.#ctor* - commentId: Overload:OpenTK.Core.Platform.CloseEventArgs.#ctor - href: OpenTK.Core.Platform.CloseEventArgs.html#OpenTK_Core_Platform_CloseEventArgs__ctor_OpenTK_Core_Platform_WindowHandle_ + fullName: OpenTK.Platform.CloseEventArgs +- uid: OpenTK.Platform.CloseEventArgs.#ctor* + commentId: Overload:OpenTK.Platform.CloseEventArgs.#ctor + href: OpenTK.Platform.CloseEventArgs.html#OpenTK_Platform_CloseEventArgs__ctor_OpenTK_Platform_WindowHandle_ name: CloseEventArgs nameWithType: CloseEventArgs.CloseEventArgs - fullName: OpenTK.Core.Platform.CloseEventArgs.CloseEventArgs + fullName: OpenTK.Platform.CloseEventArgs.CloseEventArgs nameWithType.vb: CloseEventArgs.New - fullName.vb: OpenTK.Core.Platform.CloseEventArgs.New + fullName.vb: OpenTK.Platform.CloseEventArgs.New name.vb: New -- uid: OpenTK.Core.Platform.WindowHandle - commentId: T:OpenTK.Core.Platform.WindowHandle - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.WindowHandle.html +- uid: OpenTK.Platform.WindowHandle + commentId: T:OpenTK.Platform.WindowHandle + parent: OpenTK.Platform + href: OpenTK.Platform.WindowHandle.html name: WindowHandle nameWithType: WindowHandle - fullName: OpenTK.Core.Platform.WindowHandle + fullName: OpenTK.Platform.WindowHandle diff --git a/api/OpenTK.Platform.ContextDepthBits.yml b/api/OpenTK.Platform.ContextDepthBits.yml new file mode 100644 index 00000000..82275278 --- /dev/null +++ b/api/OpenTK.Platform.ContextDepthBits.yml @@ -0,0 +1,156 @@ +### YamlMime:ManagedReference +items: +- uid: OpenTK.Platform.ContextDepthBits + commentId: T:OpenTK.Platform.ContextDepthBits + id: ContextDepthBits + parent: OpenTK.Platform + children: + - OpenTK.Platform.ContextDepthBits.Depth16 + - OpenTK.Platform.ContextDepthBits.Depth24 + - OpenTK.Platform.ContextDepthBits.Depth32 + - OpenTK.Platform.ContextDepthBits.None + langs: + - csharp + - vb + name: ContextDepthBits + nameWithType: ContextDepthBits + fullName: OpenTK.Platform.ContextDepthBits + type: Enum + source: + id: ContextDepthBits + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\ContextSettings.cs + startLine: 517 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Represents the number of depth bits of the context depth backbuffer. + example: [] + syntax: + content: public enum ContextDepthBits + content.vb: Public Enum ContextDepthBits +- uid: OpenTK.Platform.ContextDepthBits.None + commentId: F:OpenTK.Platform.ContextDepthBits.None + id: None + parent: OpenTK.Platform.ContextDepthBits + langs: + - csharp + - vb + name: None + nameWithType: ContextDepthBits.None + fullName: OpenTK.Platform.ContextDepthBits.None + type: Field + source: + id: None + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\ContextSettings.cs + startLine: 522 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: No depth buffer. + example: [] + syntax: + content: None = 0 + return: + type: OpenTK.Platform.ContextDepthBits +- uid: OpenTK.Platform.ContextDepthBits.Depth16 + commentId: F:OpenTK.Platform.ContextDepthBits.Depth16 + id: Depth16 + parent: OpenTK.Platform.ContextDepthBits + langs: + - csharp + - vb + name: Depth16 + nameWithType: ContextDepthBits.Depth16 + fullName: OpenTK.Platform.ContextDepthBits.Depth16 + type: Field + source: + id: Depth16 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\ContextSettings.cs + startLine: 527 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: 16-bit depth buffer. + example: [] + syntax: + content: Depth16 = 16 + return: + type: OpenTK.Platform.ContextDepthBits +- uid: OpenTK.Platform.ContextDepthBits.Depth24 + commentId: F:OpenTK.Platform.ContextDepthBits.Depth24 + id: Depth24 + parent: OpenTK.Platform.ContextDepthBits + langs: + - csharp + - vb + name: Depth24 + nameWithType: ContextDepthBits.Depth24 + fullName: OpenTK.Platform.ContextDepthBits.Depth24 + type: Field + source: + id: Depth24 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\ContextSettings.cs + startLine: 532 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: 24-bit depth buffer. + example: [] + syntax: + content: Depth24 = 24 + return: + type: OpenTK.Platform.ContextDepthBits +- uid: OpenTK.Platform.ContextDepthBits.Depth32 + commentId: F:OpenTK.Platform.ContextDepthBits.Depth32 + id: Depth32 + parent: OpenTK.Platform.ContextDepthBits + langs: + - csharp + - vb + name: Depth32 + nameWithType: ContextDepthBits.Depth32 + fullName: OpenTK.Platform.ContextDepthBits.Depth32 + type: Field + source: + id: Depth32 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\ContextSettings.cs + startLine: 537 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: 32-bit depth buffer. + example: [] + syntax: + content: Depth32 = 32 + return: + type: OpenTK.Platform.ContextDepthBits +references: +- uid: OpenTK.Platform + commentId: N:OpenTK.Platform + href: OpenTK.html + name: OpenTK.Platform + nameWithType: OpenTK.Platform + fullName: OpenTK.Platform + spec.csharp: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Platform + name: Platform + href: OpenTK.Platform.html + spec.vb: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Platform + name: Platform + href: OpenTK.Platform.html +- uid: OpenTK.Platform.ContextDepthBits + commentId: T:OpenTK.Platform.ContextDepthBits + parent: OpenTK.Platform + href: OpenTK.Platform.ContextDepthBits.html + name: ContextDepthBits + nameWithType: ContextDepthBits + fullName: OpenTK.Platform.ContextDepthBits diff --git a/api/OpenTK.Platform.ContextPixelFormat.yml b/api/OpenTK.Platform.ContextPixelFormat.yml new file mode 100644 index 00000000..d24196db --- /dev/null +++ b/api/OpenTK.Platform.ContextPixelFormat.yml @@ -0,0 +1,146 @@ +### YamlMime:ManagedReference +items: +- uid: OpenTK.Platform.ContextPixelFormat + commentId: T:OpenTK.Platform.ContextPixelFormat + id: ContextPixelFormat + parent: OpenTK.Platform + children: + - OpenTK.Platform.ContextPixelFormat.RGBA + - OpenTK.Platform.ContextPixelFormat.RGBAFloat + - OpenTK.Platform.ContextPixelFormat.RGBAPackedFloat + langs: + - csharp + - vb + name: ContextPixelFormat + nameWithType: ContextPixelFormat + fullName: OpenTK.Platform.ContextPixelFormat + type: Enum + source: + id: ContextPixelFormat + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\ContextSettings.cs + startLine: 470 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: >- + Defined the pixel format type of the context. + + This is used to differentiate between "normal" fixed point LDR formats + + and floating point HDR formats. + example: [] + syntax: + content: public enum ContextPixelFormat + content.vb: Public Enum ContextPixelFormat +- uid: OpenTK.Platform.ContextPixelFormat.RGBA + commentId: F:OpenTK.Platform.ContextPixelFormat.RGBA + id: RGBA + parent: OpenTK.Platform.ContextPixelFormat + langs: + - csharp + - vb + name: RGBA + nameWithType: ContextPixelFormat.RGBA + fullName: OpenTK.Platform.ContextPixelFormat.RGBA + type: Field + source: + id: RGBA + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\ContextSettings.cs + startLine: 475 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Normal fixed point RGBA format specified by the color bits. + example: [] + syntax: + content: RGBA = 0 + return: + type: OpenTK.Platform.ContextPixelFormat +- uid: OpenTK.Platform.ContextPixelFormat.RGBAFloat + commentId: F:OpenTK.Platform.ContextPixelFormat.RGBAFloat + id: RGBAFloat + parent: OpenTK.Platform.ContextPixelFormat + langs: + - csharp + - vb + name: RGBAFloat + nameWithType: ContextPixelFormat.RGBAFloat + fullName: OpenTK.Platform.ContextPixelFormat.RGBAFloat + type: Field + source: + id: RGBAFloat + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\ContextSettings.cs + startLine: 483 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: >- + Floating point RGBA pixel format specified by + + ARB_color_buffer_float + + or + + WGL_ATI_pixel_format_float. + example: [] + syntax: + content: RGBAFloat = 1 + return: + type: OpenTK.Platform.ContextPixelFormat +- uid: OpenTK.Platform.ContextPixelFormat.RGBAPackedFloat + commentId: F:OpenTK.Platform.ContextPixelFormat.RGBAPackedFloat + id: RGBAPackedFloat + parent: OpenTK.Platform.ContextPixelFormat + langs: + - csharp + - vb + name: RGBAPackedFloat + nameWithType: ContextPixelFormat.RGBAPackedFloat + fullName: OpenTK.Platform.ContextPixelFormat.RGBAPackedFloat + type: Field + source: + id: RGBAPackedFloat + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\ContextSettings.cs + startLine: 489 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: >- + From EXT_packed_float. + + Pixel format is unsigned 10F_11F_11F format. + example: [] + syntax: + content: RGBAPackedFloat = 2 + return: + type: OpenTK.Platform.ContextPixelFormat +references: +- uid: OpenTK.Platform + commentId: N:OpenTK.Platform + href: OpenTK.html + name: OpenTK.Platform + nameWithType: OpenTK.Platform + fullName: OpenTK.Platform + spec.csharp: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Platform + name: Platform + href: OpenTK.Platform.html + spec.vb: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Platform + name: Platform + href: OpenTK.Platform.html +- uid: OpenTK.Platform.ContextPixelFormat + commentId: T:OpenTK.Platform.ContextPixelFormat + parent: OpenTK.Platform + href: OpenTK.Platform.ContextPixelFormat.html + name: ContextPixelFormat + nameWithType: ContextPixelFormat + fullName: OpenTK.Platform.ContextPixelFormat diff --git a/api/OpenTK.Platform.ContextReleaseBehaviour.yml b/api/OpenTK.Platform.ContextReleaseBehaviour.yml new file mode 100644 index 00000000..70d67c0f --- /dev/null +++ b/api/OpenTK.Platform.ContextReleaseBehaviour.yml @@ -0,0 +1,106 @@ +### YamlMime:ManagedReference +items: +- uid: OpenTK.Platform.ContextReleaseBehaviour + commentId: T:OpenTK.Platform.ContextReleaseBehaviour + id: ContextReleaseBehaviour + parent: OpenTK.Platform + children: + - OpenTK.Platform.ContextReleaseBehaviour.Flush + - OpenTK.Platform.ContextReleaseBehaviour.None + langs: + - csharp + - vb + name: ContextReleaseBehaviour + nameWithType: ContextReleaseBehaviour + fullName: OpenTK.Platform.ContextReleaseBehaviour + type: Enum + source: + id: ContextReleaseBehaviour + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\ContextSettings.cs + startLine: 575 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: See KHR_context_flush_control extension for details. + example: [] + syntax: + content: public enum ContextReleaseBehaviour + content.vb: Public Enum ContextReleaseBehaviour +- uid: OpenTK.Platform.ContextReleaseBehaviour.None + commentId: F:OpenTK.Platform.ContextReleaseBehaviour.None + id: None + parent: OpenTK.Platform.ContextReleaseBehaviour + langs: + - csharp + - vb + name: None + nameWithType: ContextReleaseBehaviour.None + fullName: OpenTK.Platform.ContextReleaseBehaviour.None + type: Field + source: + id: None + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\ContextSettings.cs + startLine: 580 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: No flush is done when the context is released (made not current). + example: [] + syntax: + content: None = 0 + return: + type: OpenTK.Platform.ContextReleaseBehaviour +- uid: OpenTK.Platform.ContextReleaseBehaviour.Flush + commentId: F:OpenTK.Platform.ContextReleaseBehaviour.Flush + id: Flush + parent: OpenTK.Platform.ContextReleaseBehaviour + langs: + - csharp + - vb + name: Flush + nameWithType: ContextReleaseBehaviour.Flush + fullName: OpenTK.Platform.ContextReleaseBehaviour.Flush + type: Field + source: + id: Flush + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\ContextSettings.cs + startLine: 585 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: A flush is done when the context is released (made not current). + example: [] + syntax: + content: Flush = 1 + return: + type: OpenTK.Platform.ContextReleaseBehaviour +references: +- uid: OpenTK.Platform + commentId: N:OpenTK.Platform + href: OpenTK.html + name: OpenTK.Platform + nameWithType: OpenTK.Platform + fullName: OpenTK.Platform + spec.csharp: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Platform + name: Platform + href: OpenTK.Platform.html + spec.vb: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Platform + name: Platform + href: OpenTK.Platform.html +- uid: OpenTK.Platform.ContextReleaseBehaviour + commentId: T:OpenTK.Platform.ContextReleaseBehaviour + parent: OpenTK.Platform + href: OpenTK.Platform.ContextReleaseBehaviour.html + name: ContextReleaseBehaviour + nameWithType: ContextReleaseBehaviour + fullName: OpenTK.Platform.ContextReleaseBehaviour diff --git a/api/OpenTK.Platform.ContextResetNotificationStrategy.yml b/api/OpenTK.Platform.ContextResetNotificationStrategy.yml new file mode 100644 index 00000000..510ec27f --- /dev/null +++ b/api/OpenTK.Platform.ContextResetNotificationStrategy.yml @@ -0,0 +1,102 @@ +### YamlMime:ManagedReference +items: +- uid: OpenTK.Platform.ContextResetNotificationStrategy + commentId: T:OpenTK.Platform.ContextResetNotificationStrategy + id: ContextResetNotificationStrategy + parent: OpenTK.Platform + children: + - OpenTK.Platform.ContextResetNotificationStrategy.LoseContextOnReset + - OpenTK.Platform.ContextResetNotificationStrategy.NoResetNotification + langs: + - csharp + - vb + name: ContextResetNotificationStrategy + nameWithType: ContextResetNotificationStrategy + fullName: OpenTK.Platform.ContextResetNotificationStrategy + type: Enum + source: + id: ContextResetNotificationStrategy + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\ContextSettings.cs + startLine: 566 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: See GL_ARB_robustness extension for details. + example: [] + syntax: + content: public enum ContextResetNotificationStrategy + content.vb: Public Enum ContextResetNotificationStrategy +- uid: OpenTK.Platform.ContextResetNotificationStrategy.NoResetNotification + commentId: F:OpenTK.Platform.ContextResetNotificationStrategy.NoResetNotification + id: NoResetNotification + parent: OpenTK.Platform.ContextResetNotificationStrategy + langs: + - csharp + - vb + name: NoResetNotification + nameWithType: ContextResetNotificationStrategy.NoResetNotification + fullName: OpenTK.Platform.ContextResetNotificationStrategy.NoResetNotification + type: Field + source: + id: NoResetNotification + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\ContextSettings.cs + startLine: 568 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: NoResetNotification = 0 + return: + type: OpenTK.Platform.ContextResetNotificationStrategy +- uid: OpenTK.Platform.ContextResetNotificationStrategy.LoseContextOnReset + commentId: F:OpenTK.Platform.ContextResetNotificationStrategy.LoseContextOnReset + id: LoseContextOnReset + parent: OpenTK.Platform.ContextResetNotificationStrategy + langs: + - csharp + - vb + name: LoseContextOnReset + nameWithType: ContextResetNotificationStrategy.LoseContextOnReset + fullName: OpenTK.Platform.ContextResetNotificationStrategy.LoseContextOnReset + type: Field + source: + id: LoseContextOnReset + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\ContextSettings.cs + startLine: 569 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: LoseContextOnReset = 1 + return: + type: OpenTK.Platform.ContextResetNotificationStrategy +references: +- uid: OpenTK.Platform + commentId: N:OpenTK.Platform + href: OpenTK.html + name: OpenTK.Platform + nameWithType: OpenTK.Platform + fullName: OpenTK.Platform + spec.csharp: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Platform + name: Platform + href: OpenTK.Platform.html + spec.vb: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Platform + name: Platform + href: OpenTK.Platform.html +- uid: OpenTK.Platform.ContextResetNotificationStrategy + commentId: T:OpenTK.Platform.ContextResetNotificationStrategy + parent: OpenTK.Platform + href: OpenTK.Platform.ContextResetNotificationStrategy.html + name: ContextResetNotificationStrategy + nameWithType: ContextResetNotificationStrategy + fullName: OpenTK.Platform.ContextResetNotificationStrategy diff --git a/api/OpenTK.Platform.ContextStencilBits.yml b/api/OpenTK.Platform.ContextStencilBits.yml new file mode 100644 index 00000000..fe360014 --- /dev/null +++ b/api/OpenTK.Platform.ContextStencilBits.yml @@ -0,0 +1,131 @@ +### YamlMime:ManagedReference +items: +- uid: OpenTK.Platform.ContextStencilBits + commentId: T:OpenTK.Platform.ContextStencilBits + id: ContextStencilBits + parent: OpenTK.Platform + children: + - OpenTK.Platform.ContextStencilBits.None + - OpenTK.Platform.ContextStencilBits.Stencil1 + - OpenTK.Platform.ContextStencilBits.Stencil8 + langs: + - csharp + - vb + name: ContextStencilBits + nameWithType: ContextStencilBits + fullName: OpenTK.Platform.ContextStencilBits + type: Enum + source: + id: ContextStencilBits + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\ContextSettings.cs + startLine: 545 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Represents the number of depth bits of the context stencil backbuffer. + example: [] + syntax: + content: public enum ContextStencilBits + content.vb: Public Enum ContextStencilBits +- uid: OpenTK.Platform.ContextStencilBits.None + commentId: F:OpenTK.Platform.ContextStencilBits.None + id: None + parent: OpenTK.Platform.ContextStencilBits + langs: + - csharp + - vb + name: None + nameWithType: ContextStencilBits.None + fullName: OpenTK.Platform.ContextStencilBits.None + type: Field + source: + id: None + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\ContextSettings.cs + startLine: 550 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: No stencil bits needed. + example: [] + syntax: + content: None = 0 + return: + type: OpenTK.Platform.ContextStencilBits +- uid: OpenTK.Platform.ContextStencilBits.Stencil1 + commentId: F:OpenTK.Platform.ContextStencilBits.Stencil1 + id: Stencil1 + parent: OpenTK.Platform.ContextStencilBits + langs: + - csharp + - vb + name: Stencil1 + nameWithType: ContextStencilBits.Stencil1 + fullName: OpenTK.Platform.ContextStencilBits.Stencil1 + type: Field + source: + id: Stencil1 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\ContextSettings.cs + startLine: 555 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: 1-bit stencil buffer. + example: [] + syntax: + content: Stencil1 = 1 + return: + type: OpenTK.Platform.ContextStencilBits +- uid: OpenTK.Platform.ContextStencilBits.Stencil8 + commentId: F:OpenTK.Platform.ContextStencilBits.Stencil8 + id: Stencil8 + parent: OpenTK.Platform.ContextStencilBits + langs: + - csharp + - vb + name: Stencil8 + nameWithType: ContextStencilBits.Stencil8 + fullName: OpenTK.Platform.ContextStencilBits.Stencil8 + type: Field + source: + id: Stencil8 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\ContextSettings.cs + startLine: 560 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: 8-bit stencil buffer. + example: [] + syntax: + content: Stencil8 = 8 + return: + type: OpenTK.Platform.ContextStencilBits +references: +- uid: OpenTK.Platform + commentId: N:OpenTK.Platform + href: OpenTK.html + name: OpenTK.Platform + nameWithType: OpenTK.Platform + fullName: OpenTK.Platform + spec.csharp: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Platform + name: Platform + href: OpenTK.Platform.html + spec.vb: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Platform + name: Platform + href: OpenTK.Platform.html +- uid: OpenTK.Platform.ContextStencilBits + commentId: T:OpenTK.Platform.ContextStencilBits + parent: OpenTK.Platform + href: OpenTK.Platform.ContextStencilBits.html + name: ContextStencilBits + nameWithType: ContextStencilBits + fullName: OpenTK.Platform.ContextStencilBits diff --git a/api/OpenTK.Platform.ContextSwapMethod.yml b/api/OpenTK.Platform.ContextSwapMethod.yml new file mode 100644 index 00000000..af5dce04 --- /dev/null +++ b/api/OpenTK.Platform.ContextSwapMethod.yml @@ -0,0 +1,134 @@ +### YamlMime:ManagedReference +items: +- uid: OpenTK.Platform.ContextSwapMethod + commentId: T:OpenTK.Platform.ContextSwapMethod + id: ContextSwapMethod + parent: OpenTK.Platform + children: + - OpenTK.Platform.ContextSwapMethod.Copy + - OpenTK.Platform.ContextSwapMethod.Exchange + - OpenTK.Platform.ContextSwapMethod.Undefined + langs: + - csharp + - vb + name: ContextSwapMethod + nameWithType: ContextSwapMethod + fullName: OpenTK.Platform.ContextSwapMethod + type: Enum + source: + id: ContextSwapMethod + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\ContextSettings.cs + startLine: 495 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Defines differnet semantics for what happens to the backbuffer after a swap. + example: [] + syntax: + content: public enum ContextSwapMethod + content.vb: Public Enum ContextSwapMethod +- uid: OpenTK.Platform.ContextSwapMethod.Undefined + commentId: F:OpenTK.Platform.ContextSwapMethod.Undefined + id: Undefined + parent: OpenTK.Platform.ContextSwapMethod + langs: + - csharp + - vb + name: Undefined + nameWithType: ContextSwapMethod.Undefined + fullName: OpenTK.Platform.ContextSwapMethod.Undefined + type: Field + source: + id: Undefined + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\ContextSettings.cs + startLine: 500 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: The contents of the backbuffer after a swap is undefined. + example: [] + syntax: + content: Undefined = 0 + return: + type: OpenTK.Platform.ContextSwapMethod +- uid: OpenTK.Platform.ContextSwapMethod.Exchange + commentId: F:OpenTK.Platform.ContextSwapMethod.Exchange + id: Exchange + parent: OpenTK.Platform.ContextSwapMethod + langs: + - csharp + - vb + name: Exchange + nameWithType: ContextSwapMethod.Exchange + fullName: OpenTK.Platform.ContextSwapMethod.Exchange + type: Field + source: + id: Exchange + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\ContextSettings.cs + startLine: 505 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: The contents of the frontbuffer and backbuffer are exchanged after a swap. + example: [] + syntax: + content: Exchange = 1 + return: + type: OpenTK.Platform.ContextSwapMethod +- uid: OpenTK.Platform.ContextSwapMethod.Copy + commentId: F:OpenTK.Platform.ContextSwapMethod.Copy + id: Copy + parent: OpenTK.Platform.ContextSwapMethod + langs: + - csharp + - vb + name: Copy + nameWithType: ContextSwapMethod.Copy + fullName: OpenTK.Platform.ContextSwapMethod.Copy + type: Field + source: + id: Copy + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\ContextSettings.cs + startLine: 511 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: >- + The contents of the backbuffer are copied to the frontbuffer during a swap. + + Leaving the contents of the backbuffer unchanged. + example: [] + syntax: + content: Copy = 2 + return: + type: OpenTK.Platform.ContextSwapMethod +references: +- uid: OpenTK.Platform + commentId: N:OpenTK.Platform + href: OpenTK.html + name: OpenTK.Platform + nameWithType: OpenTK.Platform + fullName: OpenTK.Platform + spec.csharp: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Platform + name: Platform + href: OpenTK.Platform.html + spec.vb: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Platform + name: Platform + href: OpenTK.Platform.html +- uid: OpenTK.Platform.ContextSwapMethod + commentId: T:OpenTK.Platform.ContextSwapMethod + parent: OpenTK.Platform + href: OpenTK.Platform.ContextSwapMethod.html + name: ContextSwapMethod + nameWithType: ContextSwapMethod + fullName: OpenTK.Platform.ContextSwapMethod diff --git a/api/OpenTK.Core.Platform.ContextValueSelector.yml b/api/OpenTK.Platform.ContextValueSelector.yml similarity index 76% rename from api/OpenTK.Core.Platform.ContextValueSelector.yml rename to api/OpenTK.Platform.ContextValueSelector.yml index 32d4730d..7ab13e58 100644 --- a/api/OpenTK.Core.Platform.ContextValueSelector.yml +++ b/api/OpenTK.Platform.ContextValueSelector.yml @@ -1,38 +1,34 @@ ### YamlMime:ManagedReference items: -- uid: OpenTK.Core.Platform.ContextValueSelector - commentId: T:OpenTK.Core.Platform.ContextValueSelector +- uid: OpenTK.Platform.ContextValueSelector + commentId: T:OpenTK.Platform.ContextValueSelector id: ContextValueSelector - parent: OpenTK.Core.Platform + parent: OpenTK.Platform children: [] langs: - csharp - vb name: ContextValueSelector nameWithType: ContextValueSelector - fullName: OpenTK.Core.Platform.ContextValueSelector + fullName: OpenTK.Platform.ContextValueSelector type: Delegate source: - remote: - path: src/OpenTK.Core/Platform/ContextSettings.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ContextValueSelector - path: opentk/src/OpenTK.Core/Platform/ContextSettings.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\ContextSettings.cs startLine: 15 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform + - OpenTK.Platform + namespace: OpenTK.Platform summary: Delegate used to select appropriate context values to use. example: [] syntax: content: public delegate int ContextValueSelector(IReadOnlyList options, ContextValues requested, ILogger? logger) parameters: - id: options - type: System.Collections.Generic.IReadOnlyList{OpenTK.Core.Platform.ContextValues} + type: System.Collections.Generic.IReadOnlyList{OpenTK.Platform.ContextValues} description: A list of possible context values. - id: requested - type: OpenTK.Core.Platform.ContextValues + type: OpenTK.Platform.ContextValues description: The user requested context values. - id: logger type: OpenTK.Core.Utility.ILogger @@ -42,46 +38,38 @@ items: description: The index of the context value to use. content.vb: Public Delegate Function ContextValueSelector(options As IReadOnlyList(Of ContextValues), requested As ContextValues, logger As ILogger) As Integer references: -- uid: OpenTK.Core.Platform - commentId: N:OpenTK.Core.Platform +- uid: OpenTK.Platform + commentId: N:OpenTK.Platform href: OpenTK.html - name: OpenTK.Core.Platform - nameWithType: OpenTK.Core.Platform - fullName: OpenTK.Core.Platform + name: OpenTK.Platform + nameWithType: OpenTK.Platform + fullName: OpenTK.Platform spec.csharp: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html spec.vb: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html -- uid: System.Collections.Generic.IReadOnlyList{OpenTK.Core.Platform.ContextValues} - commentId: T:System.Collections.Generic.IReadOnlyList{OpenTK.Core.Platform.ContextValues} + href: OpenTK.Platform.html +- uid: System.Collections.Generic.IReadOnlyList{OpenTK.Platform.ContextValues} + commentId: T:System.Collections.Generic.IReadOnlyList{OpenTK.Platform.ContextValues} parent: System.Collections.Generic definition: System.Collections.Generic.IReadOnlyList`1 href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 name: IReadOnlyList nameWithType: IReadOnlyList - fullName: System.Collections.Generic.IReadOnlyList + fullName: System.Collections.Generic.IReadOnlyList nameWithType.vb: IReadOnlyList(Of ContextValues) - fullName.vb: System.Collections.Generic.IReadOnlyList(Of OpenTK.Core.Platform.ContextValues) + fullName.vb: System.Collections.Generic.IReadOnlyList(Of OpenTK.Platform.ContextValues) name.vb: IReadOnlyList(Of ContextValues) spec.csharp: - uid: System.Collections.Generic.IReadOnlyList`1 @@ -89,9 +77,9 @@ references: isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 - name: < - - uid: OpenTK.Core.Platform.ContextValues + - uid: OpenTK.Platform.ContextValues name: ContextValues - href: OpenTK.Core.Platform.ContextValues.html + href: OpenTK.Platform.ContextValues.html - name: '>' spec.vb: - uid: System.Collections.Generic.IReadOnlyList`1 @@ -101,17 +89,17 @@ references: - name: ( - name: Of - name: " " - - uid: OpenTK.Core.Platform.ContextValues + - uid: OpenTK.Platform.ContextValues name: ContextValues - href: OpenTK.Core.Platform.ContextValues.html + href: OpenTK.Platform.ContextValues.html - name: ) -- uid: OpenTK.Core.Platform.ContextValues - commentId: T:OpenTK.Core.Platform.ContextValues - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.ContextValues.html +- uid: OpenTK.Platform.ContextValues + commentId: T:OpenTK.Platform.ContextValues + parent: OpenTK.Platform + href: OpenTK.Platform.ContextValues.html name: ContextValues nameWithType: ContextValues - fullName: OpenTK.Core.Platform.ContextValues + fullName: OpenTK.Platform.ContextValues - uid: OpenTK.Core.Utility.ILogger commentId: T:OpenTK.Core.Utility.ILogger parent: OpenTK.Core.Utility diff --git a/api/OpenTK.Platform.ContextValues.yml b/api/OpenTK.Platform.ContextValues.yml new file mode 100644 index 00000000..73388855 --- /dev/null +++ b/api/OpenTK.Platform.ContextValues.yml @@ -0,0 +1,1834 @@ +### YamlMime:ManagedReference +items: +- uid: OpenTK.Platform.ContextValues + commentId: T:OpenTK.Platform.ContextValues + id: ContextValues + parent: OpenTK.Platform + children: + - OpenTK.Platform.ContextValues.#ctor(System.UInt64,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Boolean,System.Boolean,OpenTK.Platform.ContextPixelFormat,OpenTK.Platform.ContextSwapMethod,System.Int32) + - OpenTK.Platform.ContextValues.AlphaBits + - OpenTK.Platform.ContextValues.BlueBits + - OpenTK.Platform.ContextValues.DefaultValuesSelector(System.Collections.Generic.IReadOnlyList{OpenTK.Platform.ContextValues},OpenTK.Platform.ContextValues,OpenTK.Core.Utility.ILogger) + - OpenTK.Platform.ContextValues.DepthBits + - OpenTK.Platform.ContextValues.DoubleBuffered + - OpenTK.Platform.ContextValues.Equals(OpenTK.Platform.ContextValues) + - OpenTK.Platform.ContextValues.Equals(System.Object) + - OpenTK.Platform.ContextValues.GetHashCode + - OpenTK.Platform.ContextValues.GreenBits + - OpenTK.Platform.ContextValues.HasEqualColorBits(OpenTK.Platform.ContextValues,OpenTK.Platform.ContextValues) + - OpenTK.Platform.ContextValues.HasEqualDepthBits(OpenTK.Platform.ContextValues,OpenTK.Platform.ContextValues) + - OpenTK.Platform.ContextValues.HasEqualDoubleBuffer(OpenTK.Platform.ContextValues,OpenTK.Platform.ContextValues) + - OpenTK.Platform.ContextValues.HasEqualMSAA(OpenTK.Platform.ContextValues,OpenTK.Platform.ContextValues) + - OpenTK.Platform.ContextValues.HasEqualPixelFormat(OpenTK.Platform.ContextValues,OpenTK.Platform.ContextValues) + - OpenTK.Platform.ContextValues.HasEqualSRGB(OpenTK.Platform.ContextValues,OpenTK.Platform.ContextValues) + - OpenTK.Platform.ContextValues.HasEqualStencilBits(OpenTK.Platform.ContextValues,OpenTK.Platform.ContextValues) + - OpenTK.Platform.ContextValues.HasEqualSwapMethod(OpenTK.Platform.ContextValues,OpenTK.Platform.ContextValues) + - OpenTK.Platform.ContextValues.HasGreaterOrEqualColorBits(OpenTK.Platform.ContextValues,OpenTK.Platform.ContextValues) + - OpenTK.Platform.ContextValues.HasGreaterOrEqualDepthBits(OpenTK.Platform.ContextValues,OpenTK.Platform.ContextValues) + - OpenTK.Platform.ContextValues.HasGreaterOrEqualStencilBits(OpenTK.Platform.ContextValues,OpenTK.Platform.ContextValues) + - OpenTK.Platform.ContextValues.HasLessOrEqualColorBits(OpenTK.Platform.ContextValues,OpenTK.Platform.ContextValues) + - OpenTK.Platform.ContextValues.HasLessOrEqualDepthBits(OpenTK.Platform.ContextValues,OpenTK.Platform.ContextValues) + - OpenTK.Platform.ContextValues.HasLessOrEqualStencilBits(OpenTK.Platform.ContextValues,OpenTK.Platform.ContextValues) + - OpenTK.Platform.ContextValues.ID + - OpenTK.Platform.ContextValues.IsEqualExcludingID(OpenTK.Platform.ContextValues,OpenTK.Platform.ContextValues) + - OpenTK.Platform.ContextValues.PixelFormat + - OpenTK.Platform.ContextValues.RedBits + - OpenTK.Platform.ContextValues.SRGBFramebuffer + - OpenTK.Platform.ContextValues.Samples + - OpenTK.Platform.ContextValues.StencilBits + - OpenTK.Platform.ContextValues.SwapMethod + - OpenTK.Platform.ContextValues.ToString + - OpenTK.Platform.ContextValues.op_Equality(OpenTK.Platform.ContextValues,OpenTK.Platform.ContextValues) + - OpenTK.Platform.ContextValues.op_Inequality(OpenTK.Platform.ContextValues,OpenTK.Platform.ContextValues) + langs: + - csharp + - vb + name: ContextValues + nameWithType: ContextValues + fullName: OpenTK.Platform.ContextValues + type: Struct + source: + id: ContextValues + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\ContextSettings.cs + startLine: 18 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: 'public struct ContextValues : IEquatable' + content.vb: Public Structure ContextValues Implements IEquatable(Of ContextValues) + implements: + - System.IEquatable{OpenTK.Platform.ContextValues} + inheritedMembers: + - System.Object.Equals(System.Object,System.Object) + - System.Object.GetType + - System.Object.ReferenceEquals(System.Object,System.Object) +- uid: OpenTK.Platform.ContextValues.ID + commentId: F:OpenTK.Platform.ContextValues.ID + id: ID + parent: OpenTK.Platform.ContextValues + langs: + - csharp + - vb + name: ID + nameWithType: ContextValues.ID + fullName: OpenTK.Platform.ContextValues.ID + type: Field + source: + id: ID + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\ContextSettings.cs + startLine: 20 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: public ulong ID + return: + type: System.UInt64 + content.vb: Public ID As ULong +- uid: OpenTK.Platform.ContextValues.RedBits + commentId: F:OpenTK.Platform.ContextValues.RedBits + id: RedBits + parent: OpenTK.Platform.ContextValues + langs: + - csharp + - vb + name: RedBits + nameWithType: ContextValues.RedBits + fullName: OpenTK.Platform.ContextValues.RedBits + type: Field + source: + id: RedBits + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\ContextSettings.cs + startLine: 22 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: public int RedBits + return: + type: System.Int32 + content.vb: Public RedBits As Integer +- uid: OpenTK.Platform.ContextValues.GreenBits + commentId: F:OpenTK.Platform.ContextValues.GreenBits + id: GreenBits + parent: OpenTK.Platform.ContextValues + langs: + - csharp + - vb + name: GreenBits + nameWithType: ContextValues.GreenBits + fullName: OpenTK.Platform.ContextValues.GreenBits + type: Field + source: + id: GreenBits + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\ContextSettings.cs + startLine: 23 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: public int GreenBits + return: + type: System.Int32 + content.vb: Public GreenBits As Integer +- uid: OpenTK.Platform.ContextValues.BlueBits + commentId: F:OpenTK.Platform.ContextValues.BlueBits + id: BlueBits + parent: OpenTK.Platform.ContextValues + langs: + - csharp + - vb + name: BlueBits + nameWithType: ContextValues.BlueBits + fullName: OpenTK.Platform.ContextValues.BlueBits + type: Field + source: + id: BlueBits + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\ContextSettings.cs + startLine: 24 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: public int BlueBits + return: + type: System.Int32 + content.vb: Public BlueBits As Integer +- uid: OpenTK.Platform.ContextValues.AlphaBits + commentId: F:OpenTK.Platform.ContextValues.AlphaBits + id: AlphaBits + parent: OpenTK.Platform.ContextValues + langs: + - csharp + - vb + name: AlphaBits + nameWithType: ContextValues.AlphaBits + fullName: OpenTK.Platform.ContextValues.AlphaBits + type: Field + source: + id: AlphaBits + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\ContextSettings.cs + startLine: 25 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: public int AlphaBits + return: + type: System.Int32 + content.vb: Public AlphaBits As Integer +- uid: OpenTK.Platform.ContextValues.DepthBits + commentId: F:OpenTK.Platform.ContextValues.DepthBits + id: DepthBits + parent: OpenTK.Platform.ContextValues + langs: + - csharp + - vb + name: DepthBits + nameWithType: ContextValues.DepthBits + fullName: OpenTK.Platform.ContextValues.DepthBits + type: Field + source: + id: DepthBits + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\ContextSettings.cs + startLine: 26 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: public int DepthBits + return: + type: System.Int32 + content.vb: Public DepthBits As Integer +- uid: OpenTK.Platform.ContextValues.StencilBits + commentId: F:OpenTK.Platform.ContextValues.StencilBits + id: StencilBits + parent: OpenTK.Platform.ContextValues + langs: + - csharp + - vb + name: StencilBits + nameWithType: ContextValues.StencilBits + fullName: OpenTK.Platform.ContextValues.StencilBits + type: Field + source: + id: StencilBits + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\ContextSettings.cs + startLine: 27 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: public int StencilBits + return: + type: System.Int32 + content.vb: Public StencilBits As Integer +- uid: OpenTK.Platform.ContextValues.DoubleBuffered + commentId: F:OpenTK.Platform.ContextValues.DoubleBuffered + id: DoubleBuffered + parent: OpenTK.Platform.ContextValues + langs: + - csharp + - vb + name: DoubleBuffered + nameWithType: ContextValues.DoubleBuffered + fullName: OpenTK.Platform.ContextValues.DoubleBuffered + type: Field + source: + id: DoubleBuffered + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\ContextSettings.cs + startLine: 28 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: public bool DoubleBuffered + return: + type: System.Boolean + content.vb: Public DoubleBuffered As Boolean +- uid: OpenTK.Platform.ContextValues.SRGBFramebuffer + commentId: F:OpenTK.Platform.ContextValues.SRGBFramebuffer + id: SRGBFramebuffer + parent: OpenTK.Platform.ContextValues + langs: + - csharp + - vb + name: SRGBFramebuffer + nameWithType: ContextValues.SRGBFramebuffer + fullName: OpenTK.Platform.ContextValues.SRGBFramebuffer + type: Field + source: + id: SRGBFramebuffer + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\ContextSettings.cs + startLine: 29 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: public bool SRGBFramebuffer + return: + type: System.Boolean + content.vb: Public SRGBFramebuffer As Boolean +- uid: OpenTK.Platform.ContextValues.PixelFormat + commentId: F:OpenTK.Platform.ContextValues.PixelFormat + id: PixelFormat + parent: OpenTK.Platform.ContextValues + langs: + - csharp + - vb + name: PixelFormat + nameWithType: ContextValues.PixelFormat + fullName: OpenTK.Platform.ContextValues.PixelFormat + type: Field + source: + id: PixelFormat + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\ContextSettings.cs + startLine: 30 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: public ContextPixelFormat PixelFormat + return: + type: OpenTK.Platform.ContextPixelFormat + content.vb: Public PixelFormat As ContextPixelFormat +- uid: OpenTK.Platform.ContextValues.SwapMethod + commentId: F:OpenTK.Platform.ContextValues.SwapMethod + id: SwapMethod + parent: OpenTK.Platform.ContextValues + langs: + - csharp + - vb + name: SwapMethod + nameWithType: ContextValues.SwapMethod + fullName: OpenTK.Platform.ContextValues.SwapMethod + type: Field + source: + id: SwapMethod + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\ContextSettings.cs + startLine: 31 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: public ContextSwapMethod SwapMethod + return: + type: OpenTK.Platform.ContextSwapMethod + content.vb: Public SwapMethod As ContextSwapMethod +- uid: OpenTK.Platform.ContextValues.Samples + commentId: F:OpenTK.Platform.ContextValues.Samples + id: Samples + parent: OpenTK.Platform.ContextValues + langs: + - csharp + - vb + name: Samples + nameWithType: ContextValues.Samples + fullName: OpenTK.Platform.ContextValues.Samples + type: Field + source: + id: Samples + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\ContextSettings.cs + startLine: 32 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: public int Samples + return: + type: System.Int32 + content.vb: Public Samples As Integer +- uid: OpenTK.Platform.ContextValues.DefaultValuesSelector(System.Collections.Generic.IReadOnlyList{OpenTK.Platform.ContextValues},OpenTK.Platform.ContextValues,OpenTK.Core.Utility.ILogger) + commentId: M:OpenTK.Platform.ContextValues.DefaultValuesSelector(System.Collections.Generic.IReadOnlyList{OpenTK.Platform.ContextValues},OpenTK.Platform.ContextValues,OpenTK.Core.Utility.ILogger) + id: DefaultValuesSelector(System.Collections.Generic.IReadOnlyList{OpenTK.Platform.ContextValues},OpenTK.Platform.ContextValues,OpenTK.Core.Utility.ILogger) + parent: OpenTK.Platform.ContextValues + langs: + - csharp + - vb + name: DefaultValuesSelector(IReadOnlyList, ContextValues, ILogger?) + nameWithType: ContextValues.DefaultValuesSelector(IReadOnlyList, ContextValues, ILogger?) + fullName: OpenTK.Platform.ContextValues.DefaultValuesSelector(System.Collections.Generic.IReadOnlyList, OpenTK.Platform.ContextValues, OpenTK.Core.Utility.ILogger?) + type: Method + source: + id: DefaultValuesSelector + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\ContextSettings.cs + startLine: 58 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: >- + Default context values selector. Prioritizes the requested values with a series of "relaxations" to find a close match.
+ + The relaxations are done in the following order: + +
  1. If no exact match is found try find a format with a larger number of color, depth, or stencil bits.
  2. If == false is requested, == true formats will be accepted.
  3. If == , any swap method will be accepted.
  4. If == true, accept == false formats.
  5. Accept any .
  6. Decrement by one at a time until 0 and see if any alternative sample counts are possible.
  7. Accept any .
  8. Allow one of color bits (, , , and ), , or to be lower than requested.
  9. Allow two of color bits (, , , and ), , or to be lower than requested.
  10. Relax all bit requirements.
  11. If all relaxations fail, select the first option in the list.
+ example: [] + syntax: + content: public static int DefaultValuesSelector(IReadOnlyList options, ContextValues requested, ILogger? logger) + parameters: + - id: options + type: System.Collections.Generic.IReadOnlyList{OpenTK.Platform.ContextValues} + description: The possible context values. + - id: requested + type: OpenTK.Platform.ContextValues + description: The requested context values. + - id: logger + type: OpenTK.Core.Utility.ILogger + description: A logger to use for logging. + return: + type: System.Int32 + description: The index of the selected "best match" context values. + content.vb: Public Shared Function DefaultValuesSelector(options As IReadOnlyList(Of ContextValues), requested As ContextValues, logger As ILogger) As Integer + overload: OpenTK.Platform.ContextValues.DefaultValuesSelector* + nameWithType.vb: ContextValues.DefaultValuesSelector(IReadOnlyList(Of ContextValues), ContextValues, ILogger) + fullName.vb: OpenTK.Platform.ContextValues.DefaultValuesSelector(System.Collections.Generic.IReadOnlyList(Of OpenTK.Platform.ContextValues), OpenTK.Platform.ContextValues, OpenTK.Core.Utility.ILogger) + name.vb: DefaultValuesSelector(IReadOnlyList(Of ContextValues), ContextValues, ILogger) +- uid: OpenTK.Platform.ContextValues.IsEqualExcludingID(OpenTK.Platform.ContextValues,OpenTK.Platform.ContextValues) + commentId: M:OpenTK.Platform.ContextValues.IsEqualExcludingID(OpenTK.Platform.ContextValues,OpenTK.Platform.ContextValues) + id: IsEqualExcludingID(OpenTK.Platform.ContextValues,OpenTK.Platform.ContextValues) + parent: OpenTK.Platform.ContextValues + langs: + - csharp + - vb + name: IsEqualExcludingID(ContextValues, ContextValues) + nameWithType: ContextValues.IsEqualExcludingID(ContextValues, ContextValues) + fullName: OpenTK.Platform.ContextValues.IsEqualExcludingID(OpenTK.Platform.ContextValues, OpenTK.Platform.ContextValues) + type: Method + source: + id: IsEqualExcludingID + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\ContextSettings.cs + startLine: 289 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: public static bool IsEqualExcludingID(ContextValues option, ContextValues requested) + parameters: + - id: option + type: OpenTK.Platform.ContextValues + - id: requested + type: OpenTK.Platform.ContextValues + return: + type: System.Boolean + content.vb: Public Shared Function IsEqualExcludingID([option] As ContextValues, requested As ContextValues) As Boolean + overload: OpenTK.Platform.ContextValues.IsEqualExcludingID* +- uid: OpenTK.Platform.ContextValues.HasEqualColorBits(OpenTK.Platform.ContextValues,OpenTK.Platform.ContextValues) + commentId: M:OpenTK.Platform.ContextValues.HasEqualColorBits(OpenTK.Platform.ContextValues,OpenTK.Platform.ContextValues) + id: HasEqualColorBits(OpenTK.Platform.ContextValues,OpenTK.Platform.ContextValues) + parent: OpenTK.Platform.ContextValues + langs: + - csharp + - vb + name: HasEqualColorBits(ContextValues, ContextValues) + nameWithType: ContextValues.HasEqualColorBits(ContextValues, ContextValues) + fullName: OpenTK.Platform.ContextValues.HasEqualColorBits(OpenTK.Platform.ContextValues, OpenTK.Platform.ContextValues) + type: Method + source: + id: HasEqualColorBits + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\ContextSettings.cs + startLine: 304 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: public static bool HasEqualColorBits(ContextValues option, ContextValues requested) + parameters: + - id: option + type: OpenTK.Platform.ContextValues + - id: requested + type: OpenTK.Platform.ContextValues + return: + type: System.Boolean + content.vb: Public Shared Function HasEqualColorBits([option] As ContextValues, requested As ContextValues) As Boolean + overload: OpenTK.Platform.ContextValues.HasEqualColorBits* +- uid: OpenTK.Platform.ContextValues.HasGreaterOrEqualColorBits(OpenTK.Platform.ContextValues,OpenTK.Platform.ContextValues) + commentId: M:OpenTK.Platform.ContextValues.HasGreaterOrEqualColorBits(OpenTK.Platform.ContextValues,OpenTK.Platform.ContextValues) + id: HasGreaterOrEqualColorBits(OpenTK.Platform.ContextValues,OpenTK.Platform.ContextValues) + parent: OpenTK.Platform.ContextValues + langs: + - csharp + - vb + name: HasGreaterOrEqualColorBits(ContextValues, ContextValues) + nameWithType: ContextValues.HasGreaterOrEqualColorBits(ContextValues, ContextValues) + fullName: OpenTK.Platform.ContextValues.HasGreaterOrEqualColorBits(OpenTK.Platform.ContextValues, OpenTK.Platform.ContextValues) + type: Method + source: + id: HasGreaterOrEqualColorBits + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\ContextSettings.cs + startLine: 312 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: public static bool HasGreaterOrEqualColorBits(ContextValues option, ContextValues requested) + parameters: + - id: option + type: OpenTK.Platform.ContextValues + - id: requested + type: OpenTK.Platform.ContextValues + return: + type: System.Boolean + content.vb: Public Shared Function HasGreaterOrEqualColorBits([option] As ContextValues, requested As ContextValues) As Boolean + overload: OpenTK.Platform.ContextValues.HasGreaterOrEqualColorBits* +- uid: OpenTK.Platform.ContextValues.HasLessOrEqualColorBits(OpenTK.Platform.ContextValues,OpenTK.Platform.ContextValues) + commentId: M:OpenTK.Platform.ContextValues.HasLessOrEqualColorBits(OpenTK.Platform.ContextValues,OpenTK.Platform.ContextValues) + id: HasLessOrEqualColorBits(OpenTK.Platform.ContextValues,OpenTK.Platform.ContextValues) + parent: OpenTK.Platform.ContextValues + langs: + - csharp + - vb + name: HasLessOrEqualColorBits(ContextValues, ContextValues) + nameWithType: ContextValues.HasLessOrEqualColorBits(ContextValues, ContextValues) + fullName: OpenTK.Platform.ContextValues.HasLessOrEqualColorBits(OpenTK.Platform.ContextValues, OpenTK.Platform.ContextValues) + type: Method + source: + id: HasLessOrEqualColorBits + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\ContextSettings.cs + startLine: 320 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: public static bool HasLessOrEqualColorBits(ContextValues option, ContextValues requested) + parameters: + - id: option + type: OpenTK.Platform.ContextValues + - id: requested + type: OpenTK.Platform.ContextValues + return: + type: System.Boolean + content.vb: Public Shared Function HasLessOrEqualColorBits([option] As ContextValues, requested As ContextValues) As Boolean + overload: OpenTK.Platform.ContextValues.HasLessOrEqualColorBits* +- uid: OpenTK.Platform.ContextValues.HasEqualDepthBits(OpenTK.Platform.ContextValues,OpenTK.Platform.ContextValues) + commentId: M:OpenTK.Platform.ContextValues.HasEqualDepthBits(OpenTK.Platform.ContextValues,OpenTK.Platform.ContextValues) + id: HasEqualDepthBits(OpenTK.Platform.ContextValues,OpenTK.Platform.ContextValues) + parent: OpenTK.Platform.ContextValues + langs: + - csharp + - vb + name: HasEqualDepthBits(ContextValues, ContextValues) + nameWithType: ContextValues.HasEqualDepthBits(ContextValues, ContextValues) + fullName: OpenTK.Platform.ContextValues.HasEqualDepthBits(OpenTK.Platform.ContextValues, OpenTK.Platform.ContextValues) + type: Method + source: + id: HasEqualDepthBits + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\ContextSettings.cs + startLine: 328 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: public static bool HasEqualDepthBits(ContextValues option, ContextValues requested) + parameters: + - id: option + type: OpenTK.Platform.ContextValues + - id: requested + type: OpenTK.Platform.ContextValues + return: + type: System.Boolean + content.vb: Public Shared Function HasEqualDepthBits([option] As ContextValues, requested As ContextValues) As Boolean + overload: OpenTK.Platform.ContextValues.HasEqualDepthBits* +- uid: OpenTK.Platform.ContextValues.HasGreaterOrEqualDepthBits(OpenTK.Platform.ContextValues,OpenTK.Platform.ContextValues) + commentId: M:OpenTK.Platform.ContextValues.HasGreaterOrEqualDepthBits(OpenTK.Platform.ContextValues,OpenTK.Platform.ContextValues) + id: HasGreaterOrEqualDepthBits(OpenTK.Platform.ContextValues,OpenTK.Platform.ContextValues) + parent: OpenTK.Platform.ContextValues + langs: + - csharp + - vb + name: HasGreaterOrEqualDepthBits(ContextValues, ContextValues) + nameWithType: ContextValues.HasGreaterOrEqualDepthBits(ContextValues, ContextValues) + fullName: OpenTK.Platform.ContextValues.HasGreaterOrEqualDepthBits(OpenTK.Platform.ContextValues, OpenTK.Platform.ContextValues) + type: Method + source: + id: HasGreaterOrEqualDepthBits + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\ContextSettings.cs + startLine: 333 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: public static bool HasGreaterOrEqualDepthBits(ContextValues option, ContextValues requested) + parameters: + - id: option + type: OpenTK.Platform.ContextValues + - id: requested + type: OpenTK.Platform.ContextValues + return: + type: System.Boolean + content.vb: Public Shared Function HasGreaterOrEqualDepthBits([option] As ContextValues, requested As ContextValues) As Boolean + overload: OpenTK.Platform.ContextValues.HasGreaterOrEqualDepthBits* +- uid: OpenTK.Platform.ContextValues.HasLessOrEqualDepthBits(OpenTK.Platform.ContextValues,OpenTK.Platform.ContextValues) + commentId: M:OpenTK.Platform.ContextValues.HasLessOrEqualDepthBits(OpenTK.Platform.ContextValues,OpenTK.Platform.ContextValues) + id: HasLessOrEqualDepthBits(OpenTK.Platform.ContextValues,OpenTK.Platform.ContextValues) + parent: OpenTK.Platform.ContextValues + langs: + - csharp + - vb + name: HasLessOrEqualDepthBits(ContextValues, ContextValues) + nameWithType: ContextValues.HasLessOrEqualDepthBits(ContextValues, ContextValues) + fullName: OpenTK.Platform.ContextValues.HasLessOrEqualDepthBits(OpenTK.Platform.ContextValues, OpenTK.Platform.ContextValues) + type: Method + source: + id: HasLessOrEqualDepthBits + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\ContextSettings.cs + startLine: 338 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: public static bool HasLessOrEqualDepthBits(ContextValues option, ContextValues requested) + parameters: + - id: option + type: OpenTK.Platform.ContextValues + - id: requested + type: OpenTK.Platform.ContextValues + return: + type: System.Boolean + content.vb: Public Shared Function HasLessOrEqualDepthBits([option] As ContextValues, requested As ContextValues) As Boolean + overload: OpenTK.Platform.ContextValues.HasLessOrEqualDepthBits* +- uid: OpenTK.Platform.ContextValues.HasEqualStencilBits(OpenTK.Platform.ContextValues,OpenTK.Platform.ContextValues) + commentId: M:OpenTK.Platform.ContextValues.HasEqualStencilBits(OpenTK.Platform.ContextValues,OpenTK.Platform.ContextValues) + id: HasEqualStencilBits(OpenTK.Platform.ContextValues,OpenTK.Platform.ContextValues) + parent: OpenTK.Platform.ContextValues + langs: + - csharp + - vb + name: HasEqualStencilBits(ContextValues, ContextValues) + nameWithType: ContextValues.HasEqualStencilBits(ContextValues, ContextValues) + fullName: OpenTK.Platform.ContextValues.HasEqualStencilBits(OpenTK.Platform.ContextValues, OpenTK.Platform.ContextValues) + type: Method + source: + id: HasEqualStencilBits + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\ContextSettings.cs + startLine: 343 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: public static bool HasEqualStencilBits(ContextValues option, ContextValues requested) + parameters: + - id: option + type: OpenTK.Platform.ContextValues + - id: requested + type: OpenTK.Platform.ContextValues + return: + type: System.Boolean + content.vb: Public Shared Function HasEqualStencilBits([option] As ContextValues, requested As ContextValues) As Boolean + overload: OpenTK.Platform.ContextValues.HasEqualStencilBits* +- uid: OpenTK.Platform.ContextValues.HasGreaterOrEqualStencilBits(OpenTK.Platform.ContextValues,OpenTK.Platform.ContextValues) + commentId: M:OpenTK.Platform.ContextValues.HasGreaterOrEqualStencilBits(OpenTK.Platform.ContextValues,OpenTK.Platform.ContextValues) + id: HasGreaterOrEqualStencilBits(OpenTK.Platform.ContextValues,OpenTK.Platform.ContextValues) + parent: OpenTK.Platform.ContextValues + langs: + - csharp + - vb + name: HasGreaterOrEqualStencilBits(ContextValues, ContextValues) + nameWithType: ContextValues.HasGreaterOrEqualStencilBits(ContextValues, ContextValues) + fullName: OpenTK.Platform.ContextValues.HasGreaterOrEqualStencilBits(OpenTK.Platform.ContextValues, OpenTK.Platform.ContextValues) + type: Method + source: + id: HasGreaterOrEqualStencilBits + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\ContextSettings.cs + startLine: 348 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: public static bool HasGreaterOrEqualStencilBits(ContextValues option, ContextValues requested) + parameters: + - id: option + type: OpenTK.Platform.ContextValues + - id: requested + type: OpenTK.Platform.ContextValues + return: + type: System.Boolean + content.vb: Public Shared Function HasGreaterOrEqualStencilBits([option] As ContextValues, requested As ContextValues) As Boolean + overload: OpenTK.Platform.ContextValues.HasGreaterOrEqualStencilBits* +- uid: OpenTK.Platform.ContextValues.HasLessOrEqualStencilBits(OpenTK.Platform.ContextValues,OpenTK.Platform.ContextValues) + commentId: M:OpenTK.Platform.ContextValues.HasLessOrEqualStencilBits(OpenTK.Platform.ContextValues,OpenTK.Platform.ContextValues) + id: HasLessOrEqualStencilBits(OpenTK.Platform.ContextValues,OpenTK.Platform.ContextValues) + parent: OpenTK.Platform.ContextValues + langs: + - csharp + - vb + name: HasLessOrEqualStencilBits(ContextValues, ContextValues) + nameWithType: ContextValues.HasLessOrEqualStencilBits(ContextValues, ContextValues) + fullName: OpenTK.Platform.ContextValues.HasLessOrEqualStencilBits(OpenTK.Platform.ContextValues, OpenTK.Platform.ContextValues) + type: Method + source: + id: HasLessOrEqualStencilBits + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\ContextSettings.cs + startLine: 353 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: public static bool HasLessOrEqualStencilBits(ContextValues option, ContextValues requested) + parameters: + - id: option + type: OpenTK.Platform.ContextValues + - id: requested + type: OpenTK.Platform.ContextValues + return: + type: System.Boolean + content.vb: Public Shared Function HasLessOrEqualStencilBits([option] As ContextValues, requested As ContextValues) As Boolean + overload: OpenTK.Platform.ContextValues.HasLessOrEqualStencilBits* +- uid: OpenTK.Platform.ContextValues.HasEqualMSAA(OpenTK.Platform.ContextValues,OpenTK.Platform.ContextValues) + commentId: M:OpenTK.Platform.ContextValues.HasEqualMSAA(OpenTK.Platform.ContextValues,OpenTK.Platform.ContextValues) + id: HasEqualMSAA(OpenTK.Platform.ContextValues,OpenTK.Platform.ContextValues) + parent: OpenTK.Platform.ContextValues + langs: + - csharp + - vb + name: HasEqualMSAA(ContextValues, ContextValues) + nameWithType: ContextValues.HasEqualMSAA(ContextValues, ContextValues) + fullName: OpenTK.Platform.ContextValues.HasEqualMSAA(OpenTK.Platform.ContextValues, OpenTK.Platform.ContextValues) + type: Method + source: + id: HasEqualMSAA + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\ContextSettings.cs + startLine: 358 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: public static bool HasEqualMSAA(ContextValues option, ContextValues requested) + parameters: + - id: option + type: OpenTK.Platform.ContextValues + - id: requested + type: OpenTK.Platform.ContextValues + return: + type: System.Boolean + content.vb: Public Shared Function HasEqualMSAA([option] As ContextValues, requested As ContextValues) As Boolean + overload: OpenTK.Platform.ContextValues.HasEqualMSAA* +- uid: OpenTK.Platform.ContextValues.HasEqualDoubleBuffer(OpenTK.Platform.ContextValues,OpenTK.Platform.ContextValues) + commentId: M:OpenTK.Platform.ContextValues.HasEqualDoubleBuffer(OpenTK.Platform.ContextValues,OpenTK.Platform.ContextValues) + id: HasEqualDoubleBuffer(OpenTK.Platform.ContextValues,OpenTK.Platform.ContextValues) + parent: OpenTK.Platform.ContextValues + langs: + - csharp + - vb + name: HasEqualDoubleBuffer(ContextValues, ContextValues) + nameWithType: ContextValues.HasEqualDoubleBuffer(ContextValues, ContextValues) + fullName: OpenTK.Platform.ContextValues.HasEqualDoubleBuffer(OpenTK.Platform.ContextValues, OpenTK.Platform.ContextValues) + type: Method + source: + id: HasEqualDoubleBuffer + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\ContextSettings.cs + startLine: 363 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: public static bool HasEqualDoubleBuffer(ContextValues option, ContextValues requested) + parameters: + - id: option + type: OpenTK.Platform.ContextValues + - id: requested + type: OpenTK.Platform.ContextValues + return: + type: System.Boolean + content.vb: Public Shared Function HasEqualDoubleBuffer([option] As ContextValues, requested As ContextValues) As Boolean + overload: OpenTK.Platform.ContextValues.HasEqualDoubleBuffer* +- uid: OpenTK.Platform.ContextValues.HasEqualSRGB(OpenTK.Platform.ContextValues,OpenTK.Platform.ContextValues) + commentId: M:OpenTK.Platform.ContextValues.HasEqualSRGB(OpenTK.Platform.ContextValues,OpenTK.Platform.ContextValues) + id: HasEqualSRGB(OpenTK.Platform.ContextValues,OpenTK.Platform.ContextValues) + parent: OpenTK.Platform.ContextValues + langs: + - csharp + - vb + name: HasEqualSRGB(ContextValues, ContextValues) + nameWithType: ContextValues.HasEqualSRGB(ContextValues, ContextValues) + fullName: OpenTK.Platform.ContextValues.HasEqualSRGB(OpenTK.Platform.ContextValues, OpenTK.Platform.ContextValues) + type: Method + source: + id: HasEqualSRGB + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\ContextSettings.cs + startLine: 368 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: public static bool HasEqualSRGB(ContextValues option, ContextValues requested) + parameters: + - id: option + type: OpenTK.Platform.ContextValues + - id: requested + type: OpenTK.Platform.ContextValues + return: + type: System.Boolean + content.vb: Public Shared Function HasEqualSRGB([option] As ContextValues, requested As ContextValues) As Boolean + overload: OpenTK.Platform.ContextValues.HasEqualSRGB* +- uid: OpenTK.Platform.ContextValues.HasEqualPixelFormat(OpenTK.Platform.ContextValues,OpenTK.Platform.ContextValues) + commentId: M:OpenTK.Platform.ContextValues.HasEqualPixelFormat(OpenTK.Platform.ContextValues,OpenTK.Platform.ContextValues) + id: HasEqualPixelFormat(OpenTK.Platform.ContextValues,OpenTK.Platform.ContextValues) + parent: OpenTK.Platform.ContextValues + langs: + - csharp + - vb + name: HasEqualPixelFormat(ContextValues, ContextValues) + nameWithType: ContextValues.HasEqualPixelFormat(ContextValues, ContextValues) + fullName: OpenTK.Platform.ContextValues.HasEqualPixelFormat(OpenTK.Platform.ContextValues, OpenTK.Platform.ContextValues) + type: Method + source: + id: HasEqualPixelFormat + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\ContextSettings.cs + startLine: 373 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: public static bool HasEqualPixelFormat(ContextValues option, ContextValues requested) + parameters: + - id: option + type: OpenTK.Platform.ContextValues + - id: requested + type: OpenTK.Platform.ContextValues + return: + type: System.Boolean + content.vb: Public Shared Function HasEqualPixelFormat([option] As ContextValues, requested As ContextValues) As Boolean + overload: OpenTK.Platform.ContextValues.HasEqualPixelFormat* +- uid: OpenTK.Platform.ContextValues.HasEqualSwapMethod(OpenTK.Platform.ContextValues,OpenTK.Platform.ContextValues) + commentId: M:OpenTK.Platform.ContextValues.HasEqualSwapMethod(OpenTK.Platform.ContextValues,OpenTK.Platform.ContextValues) + id: HasEqualSwapMethod(OpenTK.Platform.ContextValues,OpenTK.Platform.ContextValues) + parent: OpenTK.Platform.ContextValues + langs: + - csharp + - vb + name: HasEqualSwapMethod(ContextValues, ContextValues) + nameWithType: ContextValues.HasEqualSwapMethod(ContextValues, ContextValues) + fullName: OpenTK.Platform.ContextValues.HasEqualSwapMethod(OpenTK.Platform.ContextValues, OpenTK.Platform.ContextValues) + type: Method + source: + id: HasEqualSwapMethod + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\ContextSettings.cs + startLine: 378 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: public static bool HasEqualSwapMethod(ContextValues option, ContextValues requested) + parameters: + - id: option + type: OpenTK.Platform.ContextValues + - id: requested + type: OpenTK.Platform.ContextValues + return: + type: System.Boolean + content.vb: Public Shared Function HasEqualSwapMethod([option] As ContextValues, requested As ContextValues) As Boolean + overload: OpenTK.Platform.ContextValues.HasEqualSwapMethod* +- uid: OpenTK.Platform.ContextValues.#ctor(System.UInt64,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Boolean,System.Boolean,OpenTK.Platform.ContextPixelFormat,OpenTK.Platform.ContextSwapMethod,System.Int32) + commentId: M:OpenTK.Platform.ContextValues.#ctor(System.UInt64,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Boolean,System.Boolean,OpenTK.Platform.ContextPixelFormat,OpenTK.Platform.ContextSwapMethod,System.Int32) + id: '#ctor(System.UInt64,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Boolean,System.Boolean,OpenTK.Platform.ContextPixelFormat,OpenTK.Platform.ContextSwapMethod,System.Int32)' + parent: OpenTK.Platform.ContextValues + langs: + - csharp + - vb + name: ContextValues(ulong, int, int, int, int, int, int, bool, bool, ContextPixelFormat, ContextSwapMethod, int) + nameWithType: ContextValues.ContextValues(ulong, int, int, int, int, int, int, bool, bool, ContextPixelFormat, ContextSwapMethod, int) + fullName: OpenTK.Platform.ContextValues.ContextValues(ulong, int, int, int, int, int, int, bool, bool, OpenTK.Platform.ContextPixelFormat, OpenTK.Platform.ContextSwapMethod, int) + type: Constructor + source: + id: .ctor + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\ContextSettings.cs + startLine: 383 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: public ContextValues(ulong id, int redBits, int greenBits, int blueBits, int alphaBits, int depthBits, int stencilBits, bool doubleBuffered, bool sRGBFramebuffer, ContextPixelFormat pixelFormat, ContextSwapMethod swapMethod, int samples) + parameters: + - id: id + type: System.UInt64 + - id: redBits + type: System.Int32 + - id: greenBits + type: System.Int32 + - id: blueBits + type: System.Int32 + - id: alphaBits + type: System.Int32 + - id: depthBits + type: System.Int32 + - id: stencilBits + type: System.Int32 + - id: doubleBuffered + type: System.Boolean + - id: sRGBFramebuffer + type: System.Boolean + - id: pixelFormat + type: OpenTK.Platform.ContextPixelFormat + - id: swapMethod + type: OpenTK.Platform.ContextSwapMethod + - id: samples + type: System.Int32 + content.vb: Public Sub New(id As ULong, redBits As Integer, greenBits As Integer, blueBits As Integer, alphaBits As Integer, depthBits As Integer, stencilBits As Integer, doubleBuffered As Boolean, sRGBFramebuffer As Boolean, pixelFormat As ContextPixelFormat, swapMethod As ContextSwapMethod, samples As Integer) + overload: OpenTK.Platform.ContextValues.#ctor* + nameWithType.vb: ContextValues.New(ULong, Integer, Integer, Integer, Integer, Integer, Integer, Boolean, Boolean, ContextPixelFormat, ContextSwapMethod, Integer) + fullName.vb: OpenTK.Platform.ContextValues.New(ULong, Integer, Integer, Integer, Integer, Integer, Integer, Boolean, Boolean, OpenTK.Platform.ContextPixelFormat, OpenTK.Platform.ContextSwapMethod, Integer) + name.vb: New(ULong, Integer, Integer, Integer, Integer, Integer, Integer, Boolean, Boolean, ContextPixelFormat, ContextSwapMethod, Integer) +- uid: OpenTK.Platform.ContextValues.Equals(System.Object) + commentId: M:OpenTK.Platform.ContextValues.Equals(System.Object) + id: Equals(System.Object) + parent: OpenTK.Platform.ContextValues + langs: + - csharp + - vb + name: Equals(object?) + nameWithType: ContextValues.Equals(object?) + fullName: OpenTK.Platform.ContextValues.Equals(object?) + type: Method + source: + id: Equals + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\ContextSettings.cs + startLine: 399 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Indicates whether this instance and a specified object are equal. + example: [] + syntax: + content: public override bool Equals(object? obj) + parameters: + - id: obj + type: System.Object + description: The object to compare with the current instance. + return: + type: System.Boolean + description: true if obj and this instance are the same type and represent the same value; otherwise, false. + content.vb: Public Overrides Function Equals(obj As Object) As Boolean + overridden: System.ValueType.Equals(System.Object) + overload: OpenTK.Platform.ContextValues.Equals* + nameWithType.vb: ContextValues.Equals(Object) + fullName.vb: OpenTK.Platform.ContextValues.Equals(Object) + name.vb: Equals(Object) +- uid: OpenTK.Platform.ContextValues.Equals(OpenTK.Platform.ContextValues) + commentId: M:OpenTK.Platform.ContextValues.Equals(OpenTK.Platform.ContextValues) + id: Equals(OpenTK.Platform.ContextValues) + parent: OpenTK.Platform.ContextValues + langs: + - csharp + - vb + name: Equals(ContextValues) + nameWithType: ContextValues.Equals(ContextValues) + fullName: OpenTK.Platform.ContextValues.Equals(OpenTK.Platform.ContextValues) + type: Method + source: + id: Equals + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\ContextSettings.cs + startLine: 404 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Indicates whether the current object is equal to another object of the same type. + example: [] + syntax: + content: public bool Equals(ContextValues other) + parameters: + - id: other + type: OpenTK.Platform.ContextValues + description: An object to compare with this object. + return: + type: System.Boolean + description: true if the current object is equal to the other parameter; otherwise, false. + content.vb: Public Function Equals(other As ContextValues) As Boolean + overload: OpenTK.Platform.ContextValues.Equals* + implements: + - System.IEquatable{OpenTK.Platform.ContextValues}.Equals(OpenTK.Platform.ContextValues) +- uid: OpenTK.Platform.ContextValues.GetHashCode + commentId: M:OpenTK.Platform.ContextValues.GetHashCode + id: GetHashCode + parent: OpenTK.Platform.ContextValues + langs: + - csharp + - vb + name: GetHashCode() + nameWithType: ContextValues.GetHashCode() + fullName: OpenTK.Platform.ContextValues.GetHashCode() + type: Method + source: + id: GetHashCode + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\ContextSettings.cs + startLine: 420 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Returns the hash code for this instance. + example: [] + syntax: + content: public override int GetHashCode() + return: + type: System.Int32 + description: A 32-bit signed integer that is the hash code for this instance. + content.vb: Public Overrides Function GetHashCode() As Integer + overridden: System.ValueType.GetHashCode + overload: OpenTK.Platform.ContextValues.GetHashCode* +- uid: OpenTK.Platform.ContextValues.op_Equality(OpenTK.Platform.ContextValues,OpenTK.Platform.ContextValues) + commentId: M:OpenTK.Platform.ContextValues.op_Equality(OpenTK.Platform.ContextValues,OpenTK.Platform.ContextValues) + id: op_Equality(OpenTK.Platform.ContextValues,OpenTK.Platform.ContextValues) + parent: OpenTK.Platform.ContextValues + langs: + - csharp + - vb + name: operator ==(ContextValues, ContextValues) + nameWithType: ContextValues.operator ==(ContextValues, ContextValues) + fullName: OpenTK.Platform.ContextValues.operator ==(OpenTK.Platform.ContextValues, OpenTK.Platform.ContextValues) + type: Operator + source: + id: op_Equality + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\ContextSettings.cs + startLine: 438 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: public static bool operator ==(ContextValues left, ContextValues right) + parameters: + - id: left + type: OpenTK.Platform.ContextValues + - id: right + type: OpenTK.Platform.ContextValues + return: + type: System.Boolean + content.vb: Public Shared Operator =(left As ContextValues, right As ContextValues) As Boolean + overload: OpenTK.Platform.ContextValues.op_Equality* + nameWithType.vb: ContextValues.=(ContextValues, ContextValues) + fullName.vb: OpenTK.Platform.ContextValues.=(OpenTK.Platform.ContextValues, OpenTK.Platform.ContextValues) + name.vb: =(ContextValues, ContextValues) +- uid: OpenTK.Platform.ContextValues.op_Inequality(OpenTK.Platform.ContextValues,OpenTK.Platform.ContextValues) + commentId: M:OpenTK.Platform.ContextValues.op_Inequality(OpenTK.Platform.ContextValues,OpenTK.Platform.ContextValues) + id: op_Inequality(OpenTK.Platform.ContextValues,OpenTK.Platform.ContextValues) + parent: OpenTK.Platform.ContextValues + langs: + - csharp + - vb + name: operator !=(ContextValues, ContextValues) + nameWithType: ContextValues.operator !=(ContextValues, ContextValues) + fullName: OpenTK.Platform.ContextValues.operator !=(OpenTK.Platform.ContextValues, OpenTK.Platform.ContextValues) + type: Operator + source: + id: op_Inequality + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\ContextSettings.cs + startLine: 443 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: public static bool operator !=(ContextValues left, ContextValues right) + parameters: + - id: left + type: OpenTK.Platform.ContextValues + - id: right + type: OpenTK.Platform.ContextValues + return: + type: System.Boolean + content.vb: Public Shared Operator <>(left As ContextValues, right As ContextValues) As Boolean + overload: OpenTK.Platform.ContextValues.op_Inequality* + nameWithType.vb: ContextValues.<>(ContextValues, ContextValues) + fullName.vb: OpenTK.Platform.ContextValues.<>(OpenTK.Platform.ContextValues, OpenTK.Platform.ContextValues) + name.vb: <>(ContextValues, ContextValues) +- uid: OpenTK.Platform.ContextValues.ToString + commentId: M:OpenTK.Platform.ContextValues.ToString + id: ToString + parent: OpenTK.Platform.ContextValues + langs: + - csharp + - vb + name: ToString() + nameWithType: ContextValues.ToString() + fullName: OpenTK.Platform.ContextValues.ToString() + type: Method + source: + id: ToString + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\ContextSettings.cs + startLine: 448 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Returns the fully qualified type name of this instance. + example: [] + syntax: + content: public override readonly string ToString() + return: + type: System.String + description: The fully qualified type name. + content.vb: Public Overrides Function ToString() As String + overridden: System.ValueType.ToString + overload: OpenTK.Platform.ContextValues.ToString* +references: +- uid: OpenTK.Platform + commentId: N:OpenTK.Platform + href: OpenTK.html + name: OpenTK.Platform + nameWithType: OpenTK.Platform + fullName: OpenTK.Platform + spec.csharp: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Platform + name: Platform + href: OpenTK.Platform.html + spec.vb: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Platform + name: Platform + href: OpenTK.Platform.html +- uid: System.IEquatable{OpenTK.Platform.ContextValues} + commentId: T:System.IEquatable{OpenTK.Platform.ContextValues} + parent: System + definition: System.IEquatable`1 + href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 + name: IEquatable + nameWithType: IEquatable + fullName: System.IEquatable + nameWithType.vb: IEquatable(Of ContextValues) + fullName.vb: System.IEquatable(Of OpenTK.Platform.ContextValues) + name.vb: IEquatable(Of ContextValues) + spec.csharp: + - uid: System.IEquatable`1 + name: IEquatable + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 + - name: < + - uid: OpenTK.Platform.ContextValues + name: ContextValues + href: OpenTK.Platform.ContextValues.html + - name: '>' + spec.vb: + - uid: System.IEquatable`1 + name: IEquatable + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 + - name: ( + - name: Of + - name: " " + - uid: OpenTK.Platform.ContextValues + name: ContextValues + href: OpenTK.Platform.ContextValues.html + - name: ) +- uid: System.Object.Equals(System.Object,System.Object) + commentId: M:System.Object.Equals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + name: Equals(object, object) + nameWithType: object.Equals(object, object) + fullName: object.Equals(object, object) + nameWithType.vb: Object.Equals(Object, Object) + fullName.vb: Object.Equals(Object, Object) + name.vb: Equals(Object, Object) + spec.csharp: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.GetType + commentId: M:System.Object.GetType + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + name: GetType() + nameWithType: object.GetType() + fullName: object.GetType() + nameWithType.vb: Object.GetType() + fullName.vb: Object.GetType() + spec.csharp: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) +- uid: System.Object.ReferenceEquals(System.Object,System.Object) + commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + name: ReferenceEquals(object, object) + nameWithType: object.ReferenceEquals(object, object) + fullName: object.ReferenceEquals(object, object) + nameWithType.vb: Object.ReferenceEquals(Object, Object) + fullName.vb: Object.ReferenceEquals(Object, Object) + name.vb: ReferenceEquals(Object, Object) + spec.csharp: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.IEquatable`1 + commentId: T:System.IEquatable`1 + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 + name: IEquatable + nameWithType: IEquatable + fullName: System.IEquatable + nameWithType.vb: IEquatable(Of T) + fullName.vb: System.IEquatable(Of T) + name.vb: IEquatable(Of T) + spec.csharp: + - uid: System.IEquatable`1 + name: IEquatable + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 + - name: < + - name: T + - name: '>' + spec.vb: + - uid: System.IEquatable`1 + name: IEquatable + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 + - name: ( + - name: Of + - name: " " + - name: T + - name: ) +- uid: System + commentId: N:System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System + nameWithType: System + fullName: System +- uid: System.Object + commentId: T:System.Object + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + name: object + nameWithType: object + fullName: object + nameWithType.vb: Object + fullName.vb: Object + name.vb: Object +- uid: System.UInt64 + commentId: T:System.UInt64 + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.uint64 + name: ulong + nameWithType: ulong + fullName: ulong + nameWithType.vb: ULong + fullName.vb: ULong + name.vb: ULong +- uid: System.Int32 + commentId: T:System.Int32 + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + name: int + nameWithType: int + fullName: int + nameWithType.vb: Integer + fullName.vb: Integer + name.vb: Integer +- uid: System.Boolean + commentId: T:System.Boolean + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + name: bool + nameWithType: bool + fullName: bool + nameWithType.vb: Boolean + fullName.vb: Boolean + name.vb: Boolean +- uid: OpenTK.Platform.ContextPixelFormat + commentId: T:OpenTK.Platform.ContextPixelFormat + parent: OpenTK.Platform + href: OpenTK.Platform.ContextPixelFormat.html + name: ContextPixelFormat + nameWithType: ContextPixelFormat + fullName: OpenTK.Platform.ContextPixelFormat +- uid: OpenTK.Platform.ContextSwapMethod + commentId: T:OpenTK.Platform.ContextSwapMethod + parent: OpenTK.Platform + href: OpenTK.Platform.ContextSwapMethod.html + name: ContextSwapMethod + nameWithType: ContextSwapMethod + fullName: OpenTK.Platform.ContextSwapMethod +- uid: OpenTK.Platform.ContextValues.SRGBFramebuffer + commentId: F:OpenTK.Platform.ContextValues.SRGBFramebuffer + href: OpenTK.Platform.ContextValues.html#OpenTK_Platform_ContextValues_SRGBFramebuffer + name: SRGBFramebuffer + nameWithType: ContextValues.SRGBFramebuffer + fullName: OpenTK.Platform.ContextValues.SRGBFramebuffer +- uid: OpenTK.Platform.ContextValues.SwapMethod + commentId: F:OpenTK.Platform.ContextValues.SwapMethod + href: OpenTK.Platform.ContextValues.html#OpenTK_Platform_ContextValues_SwapMethod + name: SwapMethod + nameWithType: ContextValues.SwapMethod + fullName: OpenTK.Platform.ContextValues.SwapMethod +- uid: OpenTK.Platform.ContextSwapMethod.Undefined + commentId: F:OpenTK.Platform.ContextSwapMethod.Undefined + href: OpenTK.Platform.ContextSwapMethod.html#OpenTK_Platform_ContextSwapMethod_Undefined + name: Undefined + nameWithType: ContextSwapMethod.Undefined + fullName: OpenTK.Platform.ContextSwapMethod.Undefined +- uid: OpenTK.Platform.ContextValues.PixelFormat + commentId: F:OpenTK.Platform.ContextValues.PixelFormat + href: OpenTK.Platform.ContextValues.html#OpenTK_Platform_ContextValues_PixelFormat + name: PixelFormat + nameWithType: ContextValues.PixelFormat + fullName: OpenTK.Platform.ContextValues.PixelFormat +- uid: OpenTK.Platform.ContextValues.Samples + commentId: F:OpenTK.Platform.ContextValues.Samples + href: OpenTK.Platform.ContextValues.html#OpenTK_Platform_ContextValues_Samples + name: Samples + nameWithType: ContextValues.Samples + fullName: OpenTK.Platform.ContextValues.Samples +- uid: OpenTK.Platform.ContextValues.RedBits + commentId: F:OpenTK.Platform.ContextValues.RedBits + href: OpenTK.Platform.ContextValues.html#OpenTK_Platform_ContextValues_RedBits + name: RedBits + nameWithType: ContextValues.RedBits + fullName: OpenTK.Platform.ContextValues.RedBits +- uid: OpenTK.Platform.ContextValues.GreenBits + commentId: F:OpenTK.Platform.ContextValues.GreenBits + href: OpenTK.Platform.ContextValues.html#OpenTK_Platform_ContextValues_GreenBits + name: GreenBits + nameWithType: ContextValues.GreenBits + fullName: OpenTK.Platform.ContextValues.GreenBits +- uid: OpenTK.Platform.ContextValues.BlueBits + commentId: F:OpenTK.Platform.ContextValues.BlueBits + href: OpenTK.Platform.ContextValues.html#OpenTK_Platform_ContextValues_BlueBits + name: BlueBits + nameWithType: ContextValues.BlueBits + fullName: OpenTK.Platform.ContextValues.BlueBits +- uid: OpenTK.Platform.ContextValues.AlphaBits + commentId: F:OpenTK.Platform.ContextValues.AlphaBits + href: OpenTK.Platform.ContextValues.html#OpenTK_Platform_ContextValues_AlphaBits + name: AlphaBits + nameWithType: ContextValues.AlphaBits + fullName: OpenTK.Platform.ContextValues.AlphaBits +- uid: OpenTK.Platform.ContextValues.DepthBits + commentId: F:OpenTK.Platform.ContextValues.DepthBits + href: OpenTK.Platform.ContextValues.html#OpenTK_Platform_ContextValues_DepthBits + name: DepthBits + nameWithType: ContextValues.DepthBits + fullName: OpenTK.Platform.ContextValues.DepthBits +- uid: OpenTK.Platform.ContextValues.StencilBits + commentId: F:OpenTK.Platform.ContextValues.StencilBits + href: OpenTK.Platform.ContextValues.html#OpenTK_Platform_ContextValues_StencilBits + name: StencilBits + nameWithType: ContextValues.StencilBits + fullName: OpenTK.Platform.ContextValues.StencilBits +- uid: OpenTK.Platform.ContextValues.DefaultValuesSelector* + commentId: Overload:OpenTK.Platform.ContextValues.DefaultValuesSelector + href: OpenTK.Platform.ContextValues.html#OpenTK_Platform_ContextValues_DefaultValuesSelector_System_Collections_Generic_IReadOnlyList_OpenTK_Platform_ContextValues__OpenTK_Platform_ContextValues_OpenTK_Core_Utility_ILogger_ + name: DefaultValuesSelector + nameWithType: ContextValues.DefaultValuesSelector + fullName: OpenTK.Platform.ContextValues.DefaultValuesSelector +- uid: System.Collections.Generic.IReadOnlyList{OpenTK.Platform.ContextValues} + commentId: T:System.Collections.Generic.IReadOnlyList{OpenTK.Platform.ContextValues} + parent: System.Collections.Generic + definition: System.Collections.Generic.IReadOnlyList`1 + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 + name: IReadOnlyList + nameWithType: IReadOnlyList + fullName: System.Collections.Generic.IReadOnlyList + nameWithType.vb: IReadOnlyList(Of ContextValues) + fullName.vb: System.Collections.Generic.IReadOnlyList(Of OpenTK.Platform.ContextValues) + name.vb: IReadOnlyList(Of ContextValues) + spec.csharp: + - uid: System.Collections.Generic.IReadOnlyList`1 + name: IReadOnlyList + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 + - name: < + - uid: OpenTK.Platform.ContextValues + name: ContextValues + href: OpenTK.Platform.ContextValues.html + - name: '>' + spec.vb: + - uid: System.Collections.Generic.IReadOnlyList`1 + name: IReadOnlyList + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 + - name: ( + - name: Of + - name: " " + - uid: OpenTK.Platform.ContextValues + name: ContextValues + href: OpenTK.Platform.ContextValues.html + - name: ) +- uid: OpenTK.Platform.ContextValues + commentId: T:OpenTK.Platform.ContextValues + parent: OpenTK.Platform + href: OpenTK.Platform.ContextValues.html + name: ContextValues + nameWithType: ContextValues + fullName: OpenTK.Platform.ContextValues +- uid: OpenTK.Core.Utility.ILogger + commentId: T:OpenTK.Core.Utility.ILogger + parent: OpenTK.Core.Utility + href: OpenTK.Core.Utility.ILogger.html + name: ILogger + nameWithType: ILogger + fullName: OpenTK.Core.Utility.ILogger +- uid: System.Collections.Generic.IReadOnlyList`1 + commentId: T:System.Collections.Generic.IReadOnlyList`1 + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 + name: IReadOnlyList + nameWithType: IReadOnlyList + fullName: System.Collections.Generic.IReadOnlyList + nameWithType.vb: IReadOnlyList(Of T) + fullName.vb: System.Collections.Generic.IReadOnlyList(Of T) + name.vb: IReadOnlyList(Of T) + spec.csharp: + - uid: System.Collections.Generic.IReadOnlyList`1 + name: IReadOnlyList + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 + - name: < + - name: T + - name: '>' + spec.vb: + - uid: System.Collections.Generic.IReadOnlyList`1 + name: IReadOnlyList + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 + - name: ( + - name: Of + - name: " " + - name: T + - name: ) +- uid: System.Collections.Generic + commentId: N:System.Collections.Generic + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System.Collections.Generic + nameWithType: System.Collections.Generic + fullName: System.Collections.Generic + spec.csharp: + - uid: System + name: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + - name: . + - uid: System.Collections + name: Collections + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections + - name: . + - uid: System.Collections.Generic + name: Generic + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic + spec.vb: + - uid: System + name: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + - name: . + - uid: System.Collections + name: Collections + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections + - name: . + - uid: System.Collections.Generic + name: Generic + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic +- uid: OpenTK.Core.Utility + commentId: N:OpenTK.Core.Utility + href: OpenTK.html + name: OpenTK.Core.Utility + nameWithType: OpenTK.Core.Utility + fullName: OpenTK.Core.Utility + spec.csharp: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Core + name: Core + href: OpenTK.Core.html + - name: . + - uid: OpenTK.Core.Utility + name: Utility + href: OpenTK.Core.Utility.html + spec.vb: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Core + name: Core + href: OpenTK.Core.html + - name: . + - uid: OpenTK.Core.Utility + name: Utility + href: OpenTK.Core.Utility.html +- uid: OpenTK.Platform.ContextValues.IsEqualExcludingID* + commentId: Overload:OpenTK.Platform.ContextValues.IsEqualExcludingID + href: OpenTK.Platform.ContextValues.html#OpenTK_Platform_ContextValues_IsEqualExcludingID_OpenTK_Platform_ContextValues_OpenTK_Platform_ContextValues_ + name: IsEqualExcludingID + nameWithType: ContextValues.IsEqualExcludingID + fullName: OpenTK.Platform.ContextValues.IsEqualExcludingID +- uid: OpenTK.Platform.ContextValues.HasEqualColorBits* + commentId: Overload:OpenTK.Platform.ContextValues.HasEqualColorBits + href: OpenTK.Platform.ContextValues.html#OpenTK_Platform_ContextValues_HasEqualColorBits_OpenTK_Platform_ContextValues_OpenTK_Platform_ContextValues_ + name: HasEqualColorBits + nameWithType: ContextValues.HasEqualColorBits + fullName: OpenTK.Platform.ContextValues.HasEqualColorBits +- uid: OpenTK.Platform.ContextValues.HasGreaterOrEqualColorBits* + commentId: Overload:OpenTK.Platform.ContextValues.HasGreaterOrEqualColorBits + href: OpenTK.Platform.ContextValues.html#OpenTK_Platform_ContextValues_HasGreaterOrEqualColorBits_OpenTK_Platform_ContextValues_OpenTK_Platform_ContextValues_ + name: HasGreaterOrEqualColorBits + nameWithType: ContextValues.HasGreaterOrEqualColorBits + fullName: OpenTK.Platform.ContextValues.HasGreaterOrEqualColorBits +- uid: OpenTK.Platform.ContextValues.HasLessOrEqualColorBits* + commentId: Overload:OpenTK.Platform.ContextValues.HasLessOrEqualColorBits + href: OpenTK.Platform.ContextValues.html#OpenTK_Platform_ContextValues_HasLessOrEqualColorBits_OpenTK_Platform_ContextValues_OpenTK_Platform_ContextValues_ + name: HasLessOrEqualColorBits + nameWithType: ContextValues.HasLessOrEqualColorBits + fullName: OpenTK.Platform.ContextValues.HasLessOrEqualColorBits +- uid: OpenTK.Platform.ContextValues.HasEqualDepthBits* + commentId: Overload:OpenTK.Platform.ContextValues.HasEqualDepthBits + href: OpenTK.Platform.ContextValues.html#OpenTK_Platform_ContextValues_HasEqualDepthBits_OpenTK_Platform_ContextValues_OpenTK_Platform_ContextValues_ + name: HasEqualDepthBits + nameWithType: ContextValues.HasEqualDepthBits + fullName: OpenTK.Platform.ContextValues.HasEqualDepthBits +- uid: OpenTK.Platform.ContextValues.HasGreaterOrEqualDepthBits* + commentId: Overload:OpenTK.Platform.ContextValues.HasGreaterOrEqualDepthBits + href: OpenTK.Platform.ContextValues.html#OpenTK_Platform_ContextValues_HasGreaterOrEqualDepthBits_OpenTK_Platform_ContextValues_OpenTK_Platform_ContextValues_ + name: HasGreaterOrEqualDepthBits + nameWithType: ContextValues.HasGreaterOrEqualDepthBits + fullName: OpenTK.Platform.ContextValues.HasGreaterOrEqualDepthBits +- uid: OpenTK.Platform.ContextValues.HasLessOrEqualDepthBits* + commentId: Overload:OpenTK.Platform.ContextValues.HasLessOrEqualDepthBits + href: OpenTK.Platform.ContextValues.html#OpenTK_Platform_ContextValues_HasLessOrEqualDepthBits_OpenTK_Platform_ContextValues_OpenTK_Platform_ContextValues_ + name: HasLessOrEqualDepthBits + nameWithType: ContextValues.HasLessOrEqualDepthBits + fullName: OpenTK.Platform.ContextValues.HasLessOrEqualDepthBits +- uid: OpenTK.Platform.ContextValues.HasEqualStencilBits* + commentId: Overload:OpenTK.Platform.ContextValues.HasEqualStencilBits + href: OpenTK.Platform.ContextValues.html#OpenTK_Platform_ContextValues_HasEqualStencilBits_OpenTK_Platform_ContextValues_OpenTK_Platform_ContextValues_ + name: HasEqualStencilBits + nameWithType: ContextValues.HasEqualStencilBits + fullName: OpenTK.Platform.ContextValues.HasEqualStencilBits +- uid: OpenTK.Platform.ContextValues.HasGreaterOrEqualStencilBits* + commentId: Overload:OpenTK.Platform.ContextValues.HasGreaterOrEqualStencilBits + href: OpenTK.Platform.ContextValues.html#OpenTK_Platform_ContextValues_HasGreaterOrEqualStencilBits_OpenTK_Platform_ContextValues_OpenTK_Platform_ContextValues_ + name: HasGreaterOrEqualStencilBits + nameWithType: ContextValues.HasGreaterOrEqualStencilBits + fullName: OpenTK.Platform.ContextValues.HasGreaterOrEqualStencilBits +- uid: OpenTK.Platform.ContextValues.HasLessOrEqualStencilBits* + commentId: Overload:OpenTK.Platform.ContextValues.HasLessOrEqualStencilBits + href: OpenTK.Platform.ContextValues.html#OpenTK_Platform_ContextValues_HasLessOrEqualStencilBits_OpenTK_Platform_ContextValues_OpenTK_Platform_ContextValues_ + name: HasLessOrEqualStencilBits + nameWithType: ContextValues.HasLessOrEqualStencilBits + fullName: OpenTK.Platform.ContextValues.HasLessOrEqualStencilBits +- uid: OpenTK.Platform.ContextValues.HasEqualMSAA* + commentId: Overload:OpenTK.Platform.ContextValues.HasEqualMSAA + href: OpenTK.Platform.ContextValues.html#OpenTK_Platform_ContextValues_HasEqualMSAA_OpenTK_Platform_ContextValues_OpenTK_Platform_ContextValues_ + name: HasEqualMSAA + nameWithType: ContextValues.HasEqualMSAA + fullName: OpenTK.Platform.ContextValues.HasEqualMSAA +- uid: OpenTK.Platform.ContextValues.HasEqualDoubleBuffer* + commentId: Overload:OpenTK.Platform.ContextValues.HasEqualDoubleBuffer + href: OpenTK.Platform.ContextValues.html#OpenTK_Platform_ContextValues_HasEqualDoubleBuffer_OpenTK_Platform_ContextValues_OpenTK_Platform_ContextValues_ + name: HasEqualDoubleBuffer + nameWithType: ContextValues.HasEqualDoubleBuffer + fullName: OpenTK.Platform.ContextValues.HasEqualDoubleBuffer +- uid: OpenTK.Platform.ContextValues.HasEqualSRGB* + commentId: Overload:OpenTK.Platform.ContextValues.HasEqualSRGB + href: OpenTK.Platform.ContextValues.html#OpenTK_Platform_ContextValues_HasEqualSRGB_OpenTK_Platform_ContextValues_OpenTK_Platform_ContextValues_ + name: HasEqualSRGB + nameWithType: ContextValues.HasEqualSRGB + fullName: OpenTK.Platform.ContextValues.HasEqualSRGB +- uid: OpenTK.Platform.ContextValues.HasEqualPixelFormat* + commentId: Overload:OpenTK.Platform.ContextValues.HasEqualPixelFormat + href: OpenTK.Platform.ContextValues.html#OpenTK_Platform_ContextValues_HasEqualPixelFormat_OpenTK_Platform_ContextValues_OpenTK_Platform_ContextValues_ + name: HasEqualPixelFormat + nameWithType: ContextValues.HasEqualPixelFormat + fullName: OpenTK.Platform.ContextValues.HasEqualPixelFormat +- uid: OpenTK.Platform.ContextValues.HasEqualSwapMethod* + commentId: Overload:OpenTK.Platform.ContextValues.HasEqualSwapMethod + href: OpenTK.Platform.ContextValues.html#OpenTK_Platform_ContextValues_HasEqualSwapMethod_OpenTK_Platform_ContextValues_OpenTK_Platform_ContextValues_ + name: HasEqualSwapMethod + nameWithType: ContextValues.HasEqualSwapMethod + fullName: OpenTK.Platform.ContextValues.HasEqualSwapMethod +- uid: OpenTK.Platform.ContextValues.#ctor* + commentId: Overload:OpenTK.Platform.ContextValues.#ctor + href: OpenTK.Platform.ContextValues.html#OpenTK_Platform_ContextValues__ctor_System_UInt64_System_Int32_System_Int32_System_Int32_System_Int32_System_Int32_System_Int32_System_Boolean_System_Boolean_OpenTK_Platform_ContextPixelFormat_OpenTK_Platform_ContextSwapMethod_System_Int32_ + name: ContextValues + nameWithType: ContextValues.ContextValues + fullName: OpenTK.Platform.ContextValues.ContextValues + nameWithType.vb: ContextValues.New + fullName.vb: OpenTK.Platform.ContextValues.New + name.vb: New +- uid: System.ValueType.Equals(System.Object) + commentId: M:System.ValueType.Equals(System.Object) + parent: System.ValueType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals + name: Equals(object) + nameWithType: ValueType.Equals(object) + fullName: System.ValueType.Equals(object) + nameWithType.vb: ValueType.Equals(Object) + fullName.vb: System.ValueType.Equals(Object) + name.vb: Equals(Object) + spec.csharp: + - uid: System.ValueType.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.ValueType.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: OpenTK.Platform.ContextValues.Equals* + commentId: Overload:OpenTK.Platform.ContextValues.Equals + href: OpenTK.Platform.ContextValues.html#OpenTK_Platform_ContextValues_Equals_System_Object_ + name: Equals + nameWithType: ContextValues.Equals + fullName: OpenTK.Platform.ContextValues.Equals +- uid: System.ValueType + commentId: T:System.ValueType + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.valuetype + name: ValueType + nameWithType: ValueType + fullName: System.ValueType +- uid: System.IEquatable{OpenTK.Platform.ContextValues}.Equals(OpenTK.Platform.ContextValues) + commentId: M:System.IEquatable{OpenTK.Platform.ContextValues}.Equals(OpenTK.Platform.ContextValues) + parent: System.IEquatable{OpenTK.Platform.ContextValues} + definition: System.IEquatable`1.Equals(`0) + href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals + name: Equals(ContextValues) + nameWithType: IEquatable.Equals(ContextValues) + fullName: System.IEquatable.Equals(OpenTK.Platform.ContextValues) + nameWithType.vb: IEquatable(Of ContextValues).Equals(ContextValues) + fullName.vb: System.IEquatable(Of OpenTK.Platform.ContextValues).Equals(OpenTK.Platform.ContextValues) + spec.csharp: + - uid: System.IEquatable{OpenTK.Platform.ContextValues}.Equals(OpenTK.Platform.ContextValues) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals + - name: ( + - uid: OpenTK.Platform.ContextValues + name: ContextValues + href: OpenTK.Platform.ContextValues.html + - name: ) + spec.vb: + - uid: System.IEquatable{OpenTK.Platform.ContextValues}.Equals(OpenTK.Platform.ContextValues) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals + - name: ( + - uid: OpenTK.Platform.ContextValues + name: ContextValues + href: OpenTK.Platform.ContextValues.html + - name: ) +- uid: System.IEquatable`1.Equals(`0) + commentId: M:System.IEquatable`1.Equals(`0) + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals + name: Equals(T) + nameWithType: IEquatable.Equals(T) + fullName: System.IEquatable.Equals(T) + nameWithType.vb: IEquatable(Of T).Equals(T) + fullName.vb: System.IEquatable(Of T).Equals(T) + spec.csharp: + - uid: System.IEquatable`1.Equals(`0) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals + - name: ( + - name: T + - name: ) + spec.vb: + - uid: System.IEquatable`1.Equals(`0) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals + - name: ( + - name: T + - name: ) +- uid: System.ValueType.GetHashCode + commentId: M:System.ValueType.GetHashCode + parent: System.ValueType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode + name: GetHashCode() + nameWithType: ValueType.GetHashCode() + fullName: System.ValueType.GetHashCode() + spec.csharp: + - uid: System.ValueType.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode + - name: ( + - name: ) + spec.vb: + - uid: System.ValueType.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode + - name: ( + - name: ) +- uid: OpenTK.Platform.ContextValues.GetHashCode* + commentId: Overload:OpenTK.Platform.ContextValues.GetHashCode + href: OpenTK.Platform.ContextValues.html#OpenTK_Platform_ContextValues_GetHashCode + name: GetHashCode + nameWithType: ContextValues.GetHashCode + fullName: OpenTK.Platform.ContextValues.GetHashCode +- uid: OpenTK.Platform.ContextValues.op_Equality* + commentId: Overload:OpenTK.Platform.ContextValues.op_Equality + href: OpenTK.Platform.ContextValues.html#OpenTK_Platform_ContextValues_op_Equality_OpenTK_Platform_ContextValues_OpenTK_Platform_ContextValues_ + name: operator == + nameWithType: ContextValues.operator == + fullName: OpenTK.Platform.ContextValues.operator == + nameWithType.vb: ContextValues.= + fullName.vb: OpenTK.Platform.ContextValues.= + name.vb: = + spec.csharp: + - name: operator + - name: " " + - uid: OpenTK.Platform.ContextValues.op_Equality* + name: == + href: OpenTK.Platform.ContextValues.html#OpenTK_Platform_ContextValues_op_Equality_OpenTK_Platform_ContextValues_OpenTK_Platform_ContextValues_ +- uid: OpenTK.Platform.ContextValues.op_Inequality* + commentId: Overload:OpenTK.Platform.ContextValues.op_Inequality + href: OpenTK.Platform.ContextValues.html#OpenTK_Platform_ContextValues_op_Inequality_OpenTK_Platform_ContextValues_OpenTK_Platform_ContextValues_ + name: operator != + nameWithType: ContextValues.operator != + fullName: OpenTK.Platform.ContextValues.operator != + nameWithType.vb: ContextValues.<> + fullName.vb: OpenTK.Platform.ContextValues.<> + name.vb: <> + spec.csharp: + - name: operator + - name: " " + - uid: OpenTK.Platform.ContextValues.op_Inequality* + name: '!=' + href: OpenTK.Platform.ContextValues.html#OpenTK_Platform_ContextValues_op_Inequality_OpenTK_Platform_ContextValues_OpenTK_Platform_ContextValues_ +- uid: System.ValueType.ToString + commentId: M:System.ValueType.ToString + parent: System.ValueType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring + name: ToString() + nameWithType: ValueType.ToString() + fullName: System.ValueType.ToString() + spec.csharp: + - uid: System.ValueType.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring + - name: ( + - name: ) + spec.vb: + - uid: System.ValueType.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring + - name: ( + - name: ) +- uid: OpenTK.Platform.ContextValues.ToString* + commentId: Overload:OpenTK.Platform.ContextValues.ToString + href: OpenTK.Platform.ContextValues.html#OpenTK_Platform_ContextValues_ToString + name: ToString + nameWithType: ContextValues.ToString + fullName: OpenTK.Platform.ContextValues.ToString +- uid: System.String + commentId: T:System.String + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + name: string + nameWithType: string + fullName: string + nameWithType.vb: String + fullName.vb: String + name.vb: String diff --git a/api/OpenTK.Platform.CursorCaptureMode.yml b/api/OpenTK.Platform.CursorCaptureMode.yml new file mode 100644 index 00000000..a16882aa --- /dev/null +++ b/api/OpenTK.Platform.CursorCaptureMode.yml @@ -0,0 +1,144 @@ +### YamlMime:ManagedReference +items: +- uid: OpenTK.Platform.CursorCaptureMode + commentId: T:OpenTK.Platform.CursorCaptureMode + id: CursorCaptureMode + parent: OpenTK.Platform + children: + - OpenTK.Platform.CursorCaptureMode.Confined + - OpenTK.Platform.CursorCaptureMode.Locked + - OpenTK.Platform.CursorCaptureMode.Normal + langs: + - csharp + - vb + name: CursorCaptureMode + nameWithType: CursorCaptureMode + fullName: OpenTK.Platform.CursorCaptureMode + type: Enum + source: + id: CursorCaptureMode + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\CaptureMode.cs + startLine: 11 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Cursor capture modes. + example: [] + syntax: + content: public enum CursorCaptureMode + content.vb: Public Enum CursorCaptureMode +- uid: OpenTK.Platform.CursorCaptureMode.Normal + commentId: F:OpenTK.Platform.CursorCaptureMode.Normal + id: Normal + parent: OpenTK.Platform.CursorCaptureMode + langs: + - csharp + - vb + name: Normal + nameWithType: CursorCaptureMode.Normal + fullName: OpenTK.Platform.CursorCaptureMode.Normal + type: Field + source: + id: Normal + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\CaptureMode.cs + startLine: 16 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: The cursor is not captured. + example: [] + syntax: + content: Normal = 0 + return: + type: OpenTK.Platform.CursorCaptureMode +- uid: OpenTK.Platform.CursorCaptureMode.Confined + commentId: F:OpenTK.Platform.CursorCaptureMode.Confined + id: Confined + parent: OpenTK.Platform.CursorCaptureMode + langs: + - csharp + - vb + name: Confined + nameWithType: CursorCaptureMode.Confined + fullName: OpenTK.Platform.CursorCaptureMode.Confined + type: Field + source: + id: Confined + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\CaptureMode.cs + startLine: 21 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: The cursor is confined to the bounds of the window. + example: [] + syntax: + content: Confined = 1 + return: + type: OpenTK.Platform.CursorCaptureMode +- uid: OpenTK.Platform.CursorCaptureMode.Locked + commentId: F:OpenTK.Platform.CursorCaptureMode.Locked + id: Locked + parent: OpenTK.Platform.CursorCaptureMode + langs: + - csharp + - vb + name: Locked + nameWithType: CursorCaptureMode.Locked + fullName: OpenTK.Platform.CursorCaptureMode.Locked + type: Field + source: + id: Locked + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\CaptureMode.cs + startLine: 32 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: >- +

+ + The cursor is locked to the center of the window. Useful for e.g. FPS games. + +

+ +

+ + In this mode the cursor has a virtual position that can go to arbitrary coordinates, this allows the mouse delta to always grow. + + Checking the mouse cursor position while capturing the cursor will not return a coordinate that corresponds to the screen. + +

+ example: [] + syntax: + content: Locked = 2 + return: + type: OpenTK.Platform.CursorCaptureMode +references: +- uid: OpenTK.Platform + commentId: N:OpenTK.Platform + href: OpenTK.html + name: OpenTK.Platform + nameWithType: OpenTK.Platform + fullName: OpenTK.Platform + spec.csharp: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Platform + name: Platform + href: OpenTK.Platform.html + spec.vb: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Platform + name: Platform + href: OpenTK.Platform.html +- uid: OpenTK.Platform.CursorCaptureMode + commentId: T:OpenTK.Platform.CursorCaptureMode + parent: OpenTK.Platform + href: OpenTK.Platform.CursorCaptureMode.html + name: CursorCaptureMode + nameWithType: CursorCaptureMode + fullName: OpenTK.Platform.CursorCaptureMode diff --git a/api/OpenTK.Core.Platform.CursorHandle.yml b/api/OpenTK.Platform.CursorHandle.yml similarity index 77% rename from api/OpenTK.Core.Platform.CursorHandle.yml rename to api/OpenTK.Platform.CursorHandle.yml index 21e68fc7..863ffd50 100644 --- a/api/OpenTK.Core.Platform.CursorHandle.yml +++ b/api/OpenTK.Platform.CursorHandle.yml @@ -1,28 +1,24 @@ ### YamlMime:ManagedReference items: -- uid: OpenTK.Core.Platform.CursorHandle - commentId: T:OpenTK.Core.Platform.CursorHandle +- uid: OpenTK.Platform.CursorHandle + commentId: T:OpenTK.Platform.CursorHandle id: CursorHandle - parent: OpenTK.Core.Platform + parent: OpenTK.Platform children: [] langs: - csharp - vb name: CursorHandle nameWithType: CursorHandle - fullName: OpenTK.Core.Platform.CursorHandle + fullName: OpenTK.Platform.CursorHandle type: Class source: - remote: - path: src/OpenTK.Core/Platform/Handles/CursorHandle.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CursorHandle - path: opentk/src/OpenTK.Core/Platform/Handles/CursorHandle.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Handles\CursorHandle.cs startLine: 5 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform + - OpenTK.Platform + namespace: OpenTK.Platform summary: Handle to a mouse cursor object. example: [] syntax: @@ -30,10 +26,10 @@ items: content.vb: Public MustInherit Class CursorHandle Inherits PalHandle inheritance: - System.Object - - OpenTK.Core.Platform.PalHandle + - OpenTK.Platform.PalHandle inheritedMembers: - - OpenTK.Core.Platform.PalHandle.UserData - - OpenTK.Core.Platform.PalHandle.As``1(OpenTK.Core.Platform.IPalComponent) + - OpenTK.Platform.PalHandle.UserData + - OpenTK.Platform.PalHandle.As``1(OpenTK.Platform.IPalComponent) - System.Object.Equals(System.Object) - System.Object.Equals(System.Object,System.Object) - System.Object.GetHashCode @@ -42,36 +38,28 @@ items: - System.Object.ReferenceEquals(System.Object,System.Object) - System.Object.ToString references: -- uid: OpenTK.Core.Platform - commentId: N:OpenTK.Core.Platform +- uid: OpenTK.Platform + commentId: N:OpenTK.Platform href: OpenTK.html - name: OpenTK.Core.Platform - nameWithType: OpenTK.Core.Platform - fullName: OpenTK.Core.Platform + name: OpenTK.Platform + nameWithType: OpenTK.Platform + fullName: OpenTK.Platform spec.csharp: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html spec.vb: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html - uid: System.Object commentId: T:System.Object parent: System @@ -83,55 +71,55 @@ references: nameWithType.vb: Object fullName.vb: Object name.vb: Object -- uid: OpenTK.Core.Platform.PalHandle - commentId: T:OpenTK.Core.Platform.PalHandle - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.PalHandle.html +- uid: OpenTK.Platform.PalHandle + commentId: T:OpenTK.Platform.PalHandle + parent: OpenTK.Platform + href: OpenTK.Platform.PalHandle.html name: PalHandle nameWithType: PalHandle - fullName: OpenTK.Core.Platform.PalHandle -- uid: OpenTK.Core.Platform.PalHandle.UserData - commentId: P:OpenTK.Core.Platform.PalHandle.UserData - parent: OpenTK.Core.Platform.PalHandle - href: OpenTK.Core.Platform.PalHandle.html#OpenTK_Core_Platform_PalHandle_UserData + fullName: OpenTK.Platform.PalHandle +- uid: OpenTK.Platform.PalHandle.UserData + commentId: P:OpenTK.Platform.PalHandle.UserData + parent: OpenTK.Platform.PalHandle + href: OpenTK.Platform.PalHandle.html#OpenTK_Platform_PalHandle_UserData name: UserData nameWithType: PalHandle.UserData - fullName: OpenTK.Core.Platform.PalHandle.UserData -- uid: OpenTK.Core.Platform.PalHandle.As``1(OpenTK.Core.Platform.IPalComponent) - commentId: M:OpenTK.Core.Platform.PalHandle.As``1(OpenTK.Core.Platform.IPalComponent) - parent: OpenTK.Core.Platform.PalHandle - href: OpenTK.Core.Platform.PalHandle.html#OpenTK_Core_Platform_PalHandle_As__1_OpenTK_Core_Platform_IPalComponent_ + fullName: OpenTK.Platform.PalHandle.UserData +- uid: OpenTK.Platform.PalHandle.As``1(OpenTK.Platform.IPalComponent) + commentId: M:OpenTK.Platform.PalHandle.As``1(OpenTK.Platform.IPalComponent) + parent: OpenTK.Platform.PalHandle + href: OpenTK.Platform.PalHandle.html#OpenTK_Platform_PalHandle_As__1_OpenTK_Platform_IPalComponent_ name: As(IPalComponent) nameWithType: PalHandle.As(IPalComponent) - fullName: OpenTK.Core.Platform.PalHandle.As(OpenTK.Core.Platform.IPalComponent) + fullName: OpenTK.Platform.PalHandle.As(OpenTK.Platform.IPalComponent) nameWithType.vb: PalHandle.As(Of T)(IPalComponent) - fullName.vb: OpenTK.Core.Platform.PalHandle.As(Of T)(OpenTK.Core.Platform.IPalComponent) + fullName.vb: OpenTK.Platform.PalHandle.As(Of T)(OpenTK.Platform.IPalComponent) name.vb: As(Of T)(IPalComponent) spec.csharp: - - uid: OpenTK.Core.Platform.PalHandle.As``1(OpenTK.Core.Platform.IPalComponent) + - uid: OpenTK.Platform.PalHandle.As``1(OpenTK.Platform.IPalComponent) name: As - href: OpenTK.Core.Platform.PalHandle.html#OpenTK_Core_Platform_PalHandle_As__1_OpenTK_Core_Platform_IPalComponent_ + href: OpenTK.Platform.PalHandle.html#OpenTK_Platform_PalHandle_As__1_OpenTK_Platform_IPalComponent_ - name: < - name: T - name: '>' - name: ( - - uid: OpenTK.Core.Platform.IPalComponent + - uid: OpenTK.Platform.IPalComponent name: IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html + href: OpenTK.Platform.IPalComponent.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.PalHandle.As``1(OpenTK.Core.Platform.IPalComponent) + - uid: OpenTK.Platform.PalHandle.As``1(OpenTK.Platform.IPalComponent) name: As - href: OpenTK.Core.Platform.PalHandle.html#OpenTK_Core_Platform_PalHandle_As__1_OpenTK_Core_Platform_IPalComponent_ + href: OpenTK.Platform.PalHandle.html#OpenTK_Platform_PalHandle_As__1_OpenTK_Platform_IPalComponent_ - name: ( - name: Of - name: " " - name: T - name: ) - name: ( - - uid: OpenTK.Core.Platform.IPalComponent + - uid: OpenTK.Platform.IPalComponent name: IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html + href: OpenTK.Platform.IPalComponent.html - name: ) - uid: System.Object.Equals(System.Object) commentId: M:System.Object.Equals(System.Object) diff --git a/api/OpenTK.Core.Platform.DialogFileFilter.yml b/api/OpenTK.Platform.DialogFileFilter.yml similarity index 57% rename from api/OpenTK.Core.Platform.DialogFileFilter.yml rename to api/OpenTK.Platform.DialogFileFilter.yml index 84d7962a..fea731c3 100644 --- a/api/OpenTK.Core.Platform.DialogFileFilter.yml +++ b/api/OpenTK.Platform.DialogFileFilter.yml @@ -1,160 +1,154 @@ ### YamlMime:ManagedReference items: -- uid: OpenTK.Core.Platform.DialogFileFilter - commentId: T:OpenTK.Core.Platform.DialogFileFilter +- uid: OpenTK.Platform.DialogFileFilter + commentId: T:OpenTK.Platform.DialogFileFilter id: DialogFileFilter - parent: OpenTK.Core.Platform + parent: OpenTK.Platform children: - - OpenTK.Core.Platform.DialogFileFilter.#ctor(System.String,System.String) - - OpenTK.Core.Platform.DialogFileFilter.Equals(OpenTK.Core.Platform.DialogFileFilter) - - OpenTK.Core.Platform.DialogFileFilter.Equals(System.Object) - - OpenTK.Core.Platform.DialogFileFilter.Filter - - OpenTK.Core.Platform.DialogFileFilter.GetHashCode - - OpenTK.Core.Platform.DialogFileFilter.Name - - OpenTK.Core.Platform.DialogFileFilter.ToString - - OpenTK.Core.Platform.DialogFileFilter.op_Equality(OpenTK.Core.Platform.DialogFileFilter,OpenTK.Core.Platform.DialogFileFilter) - - OpenTK.Core.Platform.DialogFileFilter.op_Inequality(OpenTK.Core.Platform.DialogFileFilter,OpenTK.Core.Platform.DialogFileFilter) + - OpenTK.Platform.DialogFileFilter.#ctor(System.String,System.String) + - OpenTK.Platform.DialogFileFilter.Equals(OpenTK.Platform.DialogFileFilter) + - OpenTK.Platform.DialogFileFilter.Equals(System.Object) + - OpenTK.Platform.DialogFileFilter.Filter + - OpenTK.Platform.DialogFileFilter.GetHashCode + - OpenTK.Platform.DialogFileFilter.Name + - OpenTK.Platform.DialogFileFilter.ToString + - OpenTK.Platform.DialogFileFilter.op_Equality(OpenTK.Platform.DialogFileFilter,OpenTK.Platform.DialogFileFilter) + - OpenTK.Platform.DialogFileFilter.op_Inequality(OpenTK.Platform.DialogFileFilter,OpenTK.Platform.DialogFileFilter) langs: - csharp - vb name: DialogFileFilter nameWithType: DialogFileFilter - fullName: OpenTK.Core.Platform.DialogFileFilter + fullName: OpenTK.Platform.DialogFileFilter type: Struct source: - remote: - path: src/OpenTK.Core/Platform/DialogFileFilter.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DialogFileFilter - path: opentk/src/OpenTK.Core/Platform/DialogFileFilter.cs - startLine: 4 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\DialogFileFilter.cs + startLine: 7 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Describes a file filter used to filter visible files/folders in a file dialog. + example: [] syntax: content: 'public struct DialogFileFilter : IEquatable' content.vb: Public Structure DialogFileFilter Implements IEquatable(Of DialogFileFilter) implements: - - System.IEquatable{OpenTK.Core.Platform.DialogFileFilter} + - System.IEquatable{OpenTK.Platform.DialogFileFilter} inheritedMembers: - System.Object.Equals(System.Object,System.Object) - System.Object.GetType - System.Object.ReferenceEquals(System.Object,System.Object) -- uid: OpenTK.Core.Platform.DialogFileFilter.Name - commentId: F:OpenTK.Core.Platform.DialogFileFilter.Name +- uid: OpenTK.Platform.DialogFileFilter.Name + commentId: F:OpenTK.Platform.DialogFileFilter.Name id: Name - parent: OpenTK.Core.Platform.DialogFileFilter + parent: OpenTK.Platform.DialogFileFilter langs: - csharp - vb name: Name nameWithType: DialogFileFilter.Name - fullName: OpenTK.Core.Platform.DialogFileFilter.Name + fullName: OpenTK.Platform.DialogFileFilter.Name type: Field source: - remote: - path: src/OpenTK.Core/Platform/DialogFileFilter.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Name - path: opentk/src/OpenTK.Core/Platform/DialogFileFilter.cs - startLine: 6 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\DialogFileFilter.cs + startLine: 12 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform + - OpenTK.Platform + namespace: OpenTK.Platform + summary: The display name of the filter. Prohibited characters are | and \0. + example: [] syntax: content: public string Name return: type: System.String content.vb: Public Name As String -- uid: OpenTK.Core.Platform.DialogFileFilter.Filter - commentId: F:OpenTK.Core.Platform.DialogFileFilter.Filter +- uid: OpenTK.Platform.DialogFileFilter.Filter + commentId: F:OpenTK.Platform.DialogFileFilter.Filter id: Filter - parent: OpenTK.Core.Platform.DialogFileFilter + parent: OpenTK.Platform.DialogFileFilter langs: - csharp - vb name: Filter nameWithType: DialogFileFilter.Filter - fullName: OpenTK.Core.Platform.DialogFileFilter.Filter + fullName: OpenTK.Platform.DialogFileFilter.Filter type: Field source: - remote: - path: src/OpenTK.Core/Platform/DialogFileFilter.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Filter - path: opentk/src/OpenTK.Core/Platform/DialogFileFilter.cs - startLine: 7 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\DialogFileFilter.cs + startLine: 22 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform + - OpenTK.Platform + namespace: OpenTK.Platform + summary: The file extension filter. The format of this string is "ext1;ext2". Use * to match any files. + example: + - >- + new DialogFileFilter(){ Name="Images", Filter="png;jpg;jpeg" }; + + This creates a file filter that will match any files ending in png, jpg, or jpeg. syntax: content: public string Filter return: type: System.String content.vb: Public Filter As String -- uid: OpenTK.Core.Platform.DialogFileFilter.#ctor(System.String,System.String) - commentId: M:OpenTK.Core.Platform.DialogFileFilter.#ctor(System.String,System.String) +- uid: OpenTK.Platform.DialogFileFilter.#ctor(System.String,System.String) + commentId: M:OpenTK.Platform.DialogFileFilter.#ctor(System.String,System.String) id: '#ctor(System.String,System.String)' - parent: OpenTK.Core.Platform.DialogFileFilter + parent: OpenTK.Platform.DialogFileFilter langs: - csharp - vb name: DialogFileFilter(string, string) nameWithType: DialogFileFilter.DialogFileFilter(string, string) - fullName: OpenTK.Core.Platform.DialogFileFilter.DialogFileFilter(string, string) + fullName: OpenTK.Platform.DialogFileFilter.DialogFileFilter(string, string) type: Constructor source: - remote: - path: src/OpenTK.Core/Platform/DialogFileFilter.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Core/Platform/DialogFileFilter.cs - startLine: 9 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\DialogFileFilter.cs + startLine: 29 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Initializes a new instance of the struct. + example: [] syntax: content: public DialogFileFilter(string name, string filter) parameters: - id: name type: System.String + description: The display name of the filter. - id: filter type: System.String + description: The filter string. content.vb: Public Sub New(name As String, filter As String) - overload: OpenTK.Core.Platform.DialogFileFilter.#ctor* + overload: OpenTK.Platform.DialogFileFilter.#ctor* nameWithType.vb: DialogFileFilter.New(String, String) - fullName.vb: OpenTK.Core.Platform.DialogFileFilter.New(String, String) + fullName.vb: OpenTK.Platform.DialogFileFilter.New(String, String) name.vb: New(String, String) -- uid: OpenTK.Core.Platform.DialogFileFilter.Equals(System.Object) - commentId: M:OpenTK.Core.Platform.DialogFileFilter.Equals(System.Object) +- uid: OpenTK.Platform.DialogFileFilter.Equals(System.Object) + commentId: M:OpenTK.Platform.DialogFileFilter.Equals(System.Object) id: Equals(System.Object) - parent: OpenTK.Core.Platform.DialogFileFilter + parent: OpenTK.Platform.DialogFileFilter langs: - csharp - vb - name: Equals(object) - nameWithType: DialogFileFilter.Equals(object) - fullName: OpenTK.Core.Platform.DialogFileFilter.Equals(object) + name: Equals(object?) + nameWithType: DialogFileFilter.Equals(object?) + fullName: OpenTK.Platform.DialogFileFilter.Equals(object?) type: Method source: - remote: - path: src/OpenTK.Core/Platform/DialogFileFilter.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Equals - path: opentk/src/OpenTK.Core/Platform/DialogFileFilter.cs - startLine: 15 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\DialogFileFilter.cs + startLine: 36 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform + - OpenTK.Platform + namespace: OpenTK.Platform summary: Indicates whether this instance and a specified object are equal. example: [] syntax: - content: public override bool Equals(object obj) + content: public override readonly bool Equals(object? obj) parameters: - id: obj type: System.Object @@ -164,224 +158,206 @@ items: description: true if obj and this instance are the same type and represent the same value; otherwise, false. content.vb: Public Overrides Function Equals(obj As Object) As Boolean overridden: System.ValueType.Equals(System.Object) - overload: OpenTK.Core.Platform.DialogFileFilter.Equals* + overload: OpenTK.Platform.DialogFileFilter.Equals* nameWithType.vb: DialogFileFilter.Equals(Object) - fullName.vb: OpenTK.Core.Platform.DialogFileFilter.Equals(Object) + fullName.vb: OpenTK.Platform.DialogFileFilter.Equals(Object) name.vb: Equals(Object) -- uid: OpenTK.Core.Platform.DialogFileFilter.Equals(OpenTK.Core.Platform.DialogFileFilter) - commentId: M:OpenTK.Core.Platform.DialogFileFilter.Equals(OpenTK.Core.Platform.DialogFileFilter) - id: Equals(OpenTK.Core.Platform.DialogFileFilter) - parent: OpenTK.Core.Platform.DialogFileFilter +- uid: OpenTK.Platform.DialogFileFilter.Equals(OpenTK.Platform.DialogFileFilter) + commentId: M:OpenTK.Platform.DialogFileFilter.Equals(OpenTK.Platform.DialogFileFilter) + id: Equals(OpenTK.Platform.DialogFileFilter) + parent: OpenTK.Platform.DialogFileFilter langs: - csharp - vb name: Equals(DialogFileFilter) nameWithType: DialogFileFilter.Equals(DialogFileFilter) - fullName: OpenTK.Core.Platform.DialogFileFilter.Equals(OpenTK.Core.Platform.DialogFileFilter) + fullName: OpenTK.Platform.DialogFileFilter.Equals(OpenTK.Platform.DialogFileFilter) type: Method source: - remote: - path: src/OpenTK.Core/Platform/DialogFileFilter.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Equals - path: opentk/src/OpenTK.Core/Platform/DialogFileFilter.cs - startLine: 20 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\DialogFileFilter.cs + startLine: 42 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform + - OpenTK.Platform + namespace: OpenTK.Platform summary: Indicates whether the current object is equal to another object of the same type. example: [] syntax: - content: public bool Equals(DialogFileFilter other) + content: public readonly bool Equals(DialogFileFilter other) parameters: - id: other - type: OpenTK.Core.Platform.DialogFileFilter + type: OpenTK.Platform.DialogFileFilter description: An object to compare with this object. return: type: System.Boolean description: true if the current object is equal to the other parameter; otherwise, false. content.vb: Public Function Equals(other As DialogFileFilter) As Boolean - overload: OpenTK.Core.Platform.DialogFileFilter.Equals* + overload: OpenTK.Platform.DialogFileFilter.Equals* implements: - - System.IEquatable{OpenTK.Core.Platform.DialogFileFilter}.Equals(OpenTK.Core.Platform.DialogFileFilter) -- uid: OpenTK.Core.Platform.DialogFileFilter.GetHashCode - commentId: M:OpenTK.Core.Platform.DialogFileFilter.GetHashCode + - System.IEquatable{OpenTK.Platform.DialogFileFilter}.Equals(OpenTK.Platform.DialogFileFilter) +- uid: OpenTK.Platform.DialogFileFilter.GetHashCode + commentId: M:OpenTK.Platform.DialogFileFilter.GetHashCode id: GetHashCode - parent: OpenTK.Core.Platform.DialogFileFilter + parent: OpenTK.Platform.DialogFileFilter langs: - csharp - vb name: GetHashCode() nameWithType: DialogFileFilter.GetHashCode() - fullName: OpenTK.Core.Platform.DialogFileFilter.GetHashCode() + fullName: OpenTK.Platform.DialogFileFilter.GetHashCode() type: Method source: - remote: - path: src/OpenTK.Core/Platform/DialogFileFilter.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetHashCode - path: opentk/src/OpenTK.Core/Platform/DialogFileFilter.cs - startLine: 26 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\DialogFileFilter.cs + startLine: 49 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform + - OpenTK.Platform + namespace: OpenTK.Platform summary: Returns the hash code for this instance. example: [] syntax: - content: public override int GetHashCode() + content: public override readonly int GetHashCode() return: type: System.Int32 description: A 32-bit signed integer that is the hash code for this instance. content.vb: Public Overrides Function GetHashCode() As Integer overridden: System.ValueType.GetHashCode - overload: OpenTK.Core.Platform.DialogFileFilter.GetHashCode* -- uid: OpenTK.Core.Platform.DialogFileFilter.op_Equality(OpenTK.Core.Platform.DialogFileFilter,OpenTK.Core.Platform.DialogFileFilter) - commentId: M:OpenTK.Core.Platform.DialogFileFilter.op_Equality(OpenTK.Core.Platform.DialogFileFilter,OpenTK.Core.Platform.DialogFileFilter) - id: op_Equality(OpenTK.Core.Platform.DialogFileFilter,OpenTK.Core.Platform.DialogFileFilter) - parent: OpenTK.Core.Platform.DialogFileFilter + overload: OpenTK.Platform.DialogFileFilter.GetHashCode* +- uid: OpenTK.Platform.DialogFileFilter.op_Equality(OpenTK.Platform.DialogFileFilter,OpenTK.Platform.DialogFileFilter) + commentId: M:OpenTK.Platform.DialogFileFilter.op_Equality(OpenTK.Platform.DialogFileFilter,OpenTK.Platform.DialogFileFilter) + id: op_Equality(OpenTK.Platform.DialogFileFilter,OpenTK.Platform.DialogFileFilter) + parent: OpenTK.Platform.DialogFileFilter langs: - csharp - vb name: operator ==(DialogFileFilter, DialogFileFilter) nameWithType: DialogFileFilter.operator ==(DialogFileFilter, DialogFileFilter) - fullName: OpenTK.Core.Platform.DialogFileFilter.operator ==(OpenTK.Core.Platform.DialogFileFilter, OpenTK.Core.Platform.DialogFileFilter) + fullName: OpenTK.Platform.DialogFileFilter.operator ==(OpenTK.Platform.DialogFileFilter, OpenTK.Platform.DialogFileFilter) type: Operator source: - remote: - path: src/OpenTK.Core/Platform/DialogFileFilter.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Equality - path: opentk/src/OpenTK.Core/Platform/DialogFileFilter.cs - startLine: 31 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\DialogFileFilter.cs + startLine: 60 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Determines whether two specified instances of DialogFileFilter are equal. + example: [] syntax: content: public static bool operator ==(DialogFileFilter left, DialogFileFilter right) parameters: - id: left - type: OpenTK.Core.Platform.DialogFileFilter + type: OpenTK.Platform.DialogFileFilter + description: The first dialog file filter to compare. - id: right - type: OpenTK.Core.Platform.DialogFileFilter + type: OpenTK.Platform.DialogFileFilter + description: The second dialog file filter to compare. return: type: System.Boolean + description: true if left equals right; otherwise, false. content.vb: Public Shared Operator =(left As DialogFileFilter, right As DialogFileFilter) As Boolean - overload: OpenTK.Core.Platform.DialogFileFilter.op_Equality* + overload: OpenTK.Platform.DialogFileFilter.op_Equality* nameWithType.vb: DialogFileFilter.=(DialogFileFilter, DialogFileFilter) - fullName.vb: OpenTK.Core.Platform.DialogFileFilter.=(OpenTK.Core.Platform.DialogFileFilter, OpenTK.Core.Platform.DialogFileFilter) + fullName.vb: OpenTK.Platform.DialogFileFilter.=(OpenTK.Platform.DialogFileFilter, OpenTK.Platform.DialogFileFilter) name.vb: =(DialogFileFilter, DialogFileFilter) -- uid: OpenTK.Core.Platform.DialogFileFilter.op_Inequality(OpenTK.Core.Platform.DialogFileFilter,OpenTK.Core.Platform.DialogFileFilter) - commentId: M:OpenTK.Core.Platform.DialogFileFilter.op_Inequality(OpenTK.Core.Platform.DialogFileFilter,OpenTK.Core.Platform.DialogFileFilter) - id: op_Inequality(OpenTK.Core.Platform.DialogFileFilter,OpenTK.Core.Platform.DialogFileFilter) - parent: OpenTK.Core.Platform.DialogFileFilter +- uid: OpenTK.Platform.DialogFileFilter.op_Inequality(OpenTK.Platform.DialogFileFilter,OpenTK.Platform.DialogFileFilter) + commentId: M:OpenTK.Platform.DialogFileFilter.op_Inequality(OpenTK.Platform.DialogFileFilter,OpenTK.Platform.DialogFileFilter) + id: op_Inequality(OpenTK.Platform.DialogFileFilter,OpenTK.Platform.DialogFileFilter) + parent: OpenTK.Platform.DialogFileFilter langs: - csharp - vb name: operator !=(DialogFileFilter, DialogFileFilter) nameWithType: DialogFileFilter.operator !=(DialogFileFilter, DialogFileFilter) - fullName: OpenTK.Core.Platform.DialogFileFilter.operator !=(OpenTK.Core.Platform.DialogFileFilter, OpenTK.Core.Platform.DialogFileFilter) + fullName: OpenTK.Platform.DialogFileFilter.operator !=(OpenTK.Platform.DialogFileFilter, OpenTK.Platform.DialogFileFilter) type: Operator source: - remote: - path: src/OpenTK.Core/Platform/DialogFileFilter.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Inequality - path: opentk/src/OpenTK.Core/Platform/DialogFileFilter.cs - startLine: 36 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\DialogFileFilter.cs + startLine: 71 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Determines whether two specified instances of DialogFileFilter are not equal. + example: [] syntax: content: public static bool operator !=(DialogFileFilter left, DialogFileFilter right) parameters: - id: left - type: OpenTK.Core.Platform.DialogFileFilter + type: OpenTK.Platform.DialogFileFilter + description: The first dialog file filter to compare. - id: right - type: OpenTK.Core.Platform.DialogFileFilter + type: OpenTK.Platform.DialogFileFilter + description: The second dialog file filter to compare. return: type: System.Boolean + description: true if left does not equal right; otherwise, false. content.vb: Public Shared Operator <>(left As DialogFileFilter, right As DialogFileFilter) As Boolean - overload: OpenTK.Core.Platform.DialogFileFilter.op_Inequality* + overload: OpenTK.Platform.DialogFileFilter.op_Inequality* nameWithType.vb: DialogFileFilter.<>(DialogFileFilter, DialogFileFilter) - fullName.vb: OpenTK.Core.Platform.DialogFileFilter.<>(OpenTK.Core.Platform.DialogFileFilter, OpenTK.Core.Platform.DialogFileFilter) + fullName.vb: OpenTK.Platform.DialogFileFilter.<>(OpenTK.Platform.DialogFileFilter, OpenTK.Platform.DialogFileFilter) name.vb: <>(DialogFileFilter, DialogFileFilter) -- uid: OpenTK.Core.Platform.DialogFileFilter.ToString - commentId: M:OpenTK.Core.Platform.DialogFileFilter.ToString +- uid: OpenTK.Platform.DialogFileFilter.ToString + commentId: M:OpenTK.Platform.DialogFileFilter.ToString id: ToString - parent: OpenTK.Core.Platform.DialogFileFilter + parent: OpenTK.Platform.DialogFileFilter langs: - csharp - vb name: ToString() nameWithType: DialogFileFilter.ToString() - fullName: OpenTK.Core.Platform.DialogFileFilter.ToString() + fullName: OpenTK.Platform.DialogFileFilter.ToString() type: Method source: - remote: - path: src/OpenTK.Core/Platform/DialogFileFilter.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Core/Platform/DialogFileFilter.cs - startLine: 41 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\DialogFileFilter.cs + startLine: 80 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Returns the fully qualified type name of this instance. + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Returns a string in the form "{Name} - {Filter}". example: [] syntax: - content: public override string ToString() + content: public override readonly string ToString() return: type: System.String - description: The fully qualified type name. + description: The string representation. content.vb: Public Overrides Function ToString() As String overridden: System.ValueType.ToString - overload: OpenTK.Core.Platform.DialogFileFilter.ToString* + overload: OpenTK.Platform.DialogFileFilter.ToString* references: -- uid: OpenTK.Core.Platform - commentId: N:OpenTK.Core.Platform +- uid: OpenTK.Platform + commentId: N:OpenTK.Platform href: OpenTK.html - name: OpenTK.Core.Platform - nameWithType: OpenTK.Core.Platform - fullName: OpenTK.Core.Platform + name: OpenTK.Platform + nameWithType: OpenTK.Platform + fullName: OpenTK.Platform spec.csharp: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html spec.vb: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html -- uid: System.IEquatable{OpenTK.Core.Platform.DialogFileFilter} - commentId: T:System.IEquatable{OpenTK.Core.Platform.DialogFileFilter} + href: OpenTK.Platform.html +- uid: System.IEquatable{OpenTK.Platform.DialogFileFilter} + commentId: T:System.IEquatable{OpenTK.Platform.DialogFileFilter} parent: System definition: System.IEquatable`1 href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 name: IEquatable nameWithType: IEquatable - fullName: System.IEquatable + fullName: System.IEquatable nameWithType.vb: IEquatable(Of DialogFileFilter) - fullName.vb: System.IEquatable(Of OpenTK.Core.Platform.DialogFileFilter) + fullName.vb: System.IEquatable(Of OpenTK.Platform.DialogFileFilter) name.vb: IEquatable(Of DialogFileFilter) spec.csharp: - uid: System.IEquatable`1 @@ -389,9 +365,9 @@ references: isExternal: true href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: < - - uid: OpenTK.Core.Platform.DialogFileFilter + - uid: OpenTK.Platform.DialogFileFilter name: DialogFileFilter - href: OpenTK.Core.Platform.DialogFileFilter.html + href: OpenTK.Platform.DialogFileFilter.html - name: '>' spec.vb: - uid: System.IEquatable`1 @@ -401,9 +377,9 @@ references: - name: ( - name: Of - name: " " - - uid: OpenTK.Core.Platform.DialogFileFilter + - uid: OpenTK.Platform.DialogFileFilter name: DialogFileFilter - href: OpenTK.Core.Platform.DialogFileFilter.html + href: OpenTK.Platform.DialogFileFilter.html - name: ) - uid: System.Object.Equals(System.Object,System.Object) commentId: M:System.Object.Equals(System.Object,System.Object) @@ -576,14 +552,21 @@ references: nameWithType.vb: String fullName.vb: String name.vb: String -- uid: OpenTK.Core.Platform.DialogFileFilter.#ctor* - commentId: Overload:OpenTK.Core.Platform.DialogFileFilter.#ctor - href: OpenTK.Core.Platform.DialogFileFilter.html#OpenTK_Core_Platform_DialogFileFilter__ctor_System_String_System_String_ +- uid: OpenTK.Platform.DialogFileFilter + commentId: T:OpenTK.Platform.DialogFileFilter + parent: OpenTK.Platform + href: OpenTK.Platform.DialogFileFilter.html + name: DialogFileFilter + nameWithType: DialogFileFilter + fullName: OpenTK.Platform.DialogFileFilter +- uid: OpenTK.Platform.DialogFileFilter.#ctor* + commentId: Overload:OpenTK.Platform.DialogFileFilter.#ctor + href: OpenTK.Platform.DialogFileFilter.html#OpenTK_Platform_DialogFileFilter__ctor_System_String_System_String_ name: DialogFileFilter nameWithType: DialogFileFilter.DialogFileFilter - fullName: OpenTK.Core.Platform.DialogFileFilter.DialogFileFilter + fullName: OpenTK.Platform.DialogFileFilter.DialogFileFilter nameWithType.vb: DialogFileFilter.New - fullName.vb: OpenTK.Core.Platform.DialogFileFilter.New + fullName.vb: OpenTK.Platform.DialogFileFilter.New name.vb: New - uid: System.ValueType.Equals(System.Object) commentId: M:System.ValueType.Equals(System.Object) @@ -618,12 +601,12 @@ references: isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ) -- uid: OpenTK.Core.Platform.DialogFileFilter.Equals* - commentId: Overload:OpenTK.Core.Platform.DialogFileFilter.Equals - href: OpenTK.Core.Platform.DialogFileFilter.html#OpenTK_Core_Platform_DialogFileFilter_Equals_System_Object_ +- uid: OpenTK.Platform.DialogFileFilter.Equals* + commentId: Overload:OpenTK.Platform.DialogFileFilter.Equals + href: OpenTK.Platform.DialogFileFilter.html#OpenTK_Platform_DialogFileFilter_Equals_System_Object_ name: Equals nameWithType: DialogFileFilter.Equals - fullName: OpenTK.Core.Platform.DialogFileFilter.Equals + fullName: OpenTK.Platform.DialogFileFilter.Equals - uid: System.Boolean commentId: T:System.Boolean parent: System @@ -643,43 +626,36 @@ references: name: ValueType nameWithType: ValueType fullName: System.ValueType -- uid: System.IEquatable{OpenTK.Core.Platform.DialogFileFilter}.Equals(OpenTK.Core.Platform.DialogFileFilter) - commentId: M:System.IEquatable{OpenTK.Core.Platform.DialogFileFilter}.Equals(OpenTK.Core.Platform.DialogFileFilter) - parent: System.IEquatable{OpenTK.Core.Platform.DialogFileFilter} +- uid: System.IEquatable{OpenTK.Platform.DialogFileFilter}.Equals(OpenTK.Platform.DialogFileFilter) + commentId: M:System.IEquatable{OpenTK.Platform.DialogFileFilter}.Equals(OpenTK.Platform.DialogFileFilter) + parent: System.IEquatable{OpenTK.Platform.DialogFileFilter} definition: System.IEquatable`1.Equals(`0) href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals name: Equals(DialogFileFilter) nameWithType: IEquatable.Equals(DialogFileFilter) - fullName: System.IEquatable.Equals(OpenTK.Core.Platform.DialogFileFilter) + fullName: System.IEquatable.Equals(OpenTK.Platform.DialogFileFilter) nameWithType.vb: IEquatable(Of DialogFileFilter).Equals(DialogFileFilter) - fullName.vb: System.IEquatable(Of OpenTK.Core.Platform.DialogFileFilter).Equals(OpenTK.Core.Platform.DialogFileFilter) + fullName.vb: System.IEquatable(Of OpenTK.Platform.DialogFileFilter).Equals(OpenTK.Platform.DialogFileFilter) spec.csharp: - - uid: System.IEquatable{OpenTK.Core.Platform.DialogFileFilter}.Equals(OpenTK.Core.Platform.DialogFileFilter) + - uid: System.IEquatable{OpenTK.Platform.DialogFileFilter}.Equals(OpenTK.Platform.DialogFileFilter) name: Equals isExternal: true href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals - name: ( - - uid: OpenTK.Core.Platform.DialogFileFilter + - uid: OpenTK.Platform.DialogFileFilter name: DialogFileFilter - href: OpenTK.Core.Platform.DialogFileFilter.html + href: OpenTK.Platform.DialogFileFilter.html - name: ) spec.vb: - - uid: System.IEquatable{OpenTK.Core.Platform.DialogFileFilter}.Equals(OpenTK.Core.Platform.DialogFileFilter) + - uid: System.IEquatable{OpenTK.Platform.DialogFileFilter}.Equals(OpenTK.Platform.DialogFileFilter) name: Equals isExternal: true href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals - name: ( - - uid: OpenTK.Core.Platform.DialogFileFilter + - uid: OpenTK.Platform.DialogFileFilter name: DialogFileFilter - href: OpenTK.Core.Platform.DialogFileFilter.html + href: OpenTK.Platform.DialogFileFilter.html - name: ) -- uid: OpenTK.Core.Platform.DialogFileFilter - commentId: T:OpenTK.Core.Platform.DialogFileFilter - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.DialogFileFilter.html - name: DialogFileFilter - nameWithType: DialogFileFilter - fullName: OpenTK.Core.Platform.DialogFileFilter - uid: System.IEquatable`1.Equals(`0) commentId: M:System.IEquatable`1.Equals(`0) isExternal: true @@ -727,12 +703,12 @@ references: href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - name: ( - name: ) -- uid: OpenTK.Core.Platform.DialogFileFilter.GetHashCode* - commentId: Overload:OpenTK.Core.Platform.DialogFileFilter.GetHashCode - href: OpenTK.Core.Platform.DialogFileFilter.html#OpenTK_Core_Platform_DialogFileFilter_GetHashCode +- uid: OpenTK.Platform.DialogFileFilter.GetHashCode* + commentId: Overload:OpenTK.Platform.DialogFileFilter.GetHashCode + href: OpenTK.Platform.DialogFileFilter.html#OpenTK_Platform_DialogFileFilter_GetHashCode name: GetHashCode nameWithType: DialogFileFilter.GetHashCode - fullName: OpenTK.Core.Platform.DialogFileFilter.GetHashCode + fullName: OpenTK.Platform.DialogFileFilter.GetHashCode - uid: System.Int32 commentId: T:System.Int32 parent: System @@ -744,36 +720,36 @@ references: nameWithType.vb: Integer fullName.vb: Integer name.vb: Integer -- uid: OpenTK.Core.Platform.DialogFileFilter.op_Equality* - commentId: Overload:OpenTK.Core.Platform.DialogFileFilter.op_Equality - href: OpenTK.Core.Platform.DialogFileFilter.html#OpenTK_Core_Platform_DialogFileFilter_op_Equality_OpenTK_Core_Platform_DialogFileFilter_OpenTK_Core_Platform_DialogFileFilter_ +- uid: OpenTK.Platform.DialogFileFilter.op_Equality* + commentId: Overload:OpenTK.Platform.DialogFileFilter.op_Equality + href: OpenTK.Platform.DialogFileFilter.html#OpenTK_Platform_DialogFileFilter_op_Equality_OpenTK_Platform_DialogFileFilter_OpenTK_Platform_DialogFileFilter_ name: operator == nameWithType: DialogFileFilter.operator == - fullName: OpenTK.Core.Platform.DialogFileFilter.operator == + fullName: OpenTK.Platform.DialogFileFilter.operator == nameWithType.vb: DialogFileFilter.= - fullName.vb: OpenTK.Core.Platform.DialogFileFilter.= + fullName.vb: OpenTK.Platform.DialogFileFilter.= name.vb: = spec.csharp: - name: operator - name: " " - - uid: OpenTK.Core.Platform.DialogFileFilter.op_Equality* + - uid: OpenTK.Platform.DialogFileFilter.op_Equality* name: == - href: OpenTK.Core.Platform.DialogFileFilter.html#OpenTK_Core_Platform_DialogFileFilter_op_Equality_OpenTK_Core_Platform_DialogFileFilter_OpenTK_Core_Platform_DialogFileFilter_ -- uid: OpenTK.Core.Platform.DialogFileFilter.op_Inequality* - commentId: Overload:OpenTK.Core.Platform.DialogFileFilter.op_Inequality - href: OpenTK.Core.Platform.DialogFileFilter.html#OpenTK_Core_Platform_DialogFileFilter_op_Inequality_OpenTK_Core_Platform_DialogFileFilter_OpenTK_Core_Platform_DialogFileFilter_ + href: OpenTK.Platform.DialogFileFilter.html#OpenTK_Platform_DialogFileFilter_op_Equality_OpenTK_Platform_DialogFileFilter_OpenTK_Platform_DialogFileFilter_ +- uid: OpenTK.Platform.DialogFileFilter.op_Inequality* + commentId: Overload:OpenTK.Platform.DialogFileFilter.op_Inequality + href: OpenTK.Platform.DialogFileFilter.html#OpenTK_Platform_DialogFileFilter_op_Inequality_OpenTK_Platform_DialogFileFilter_OpenTK_Platform_DialogFileFilter_ name: operator != nameWithType: DialogFileFilter.operator != - fullName: OpenTK.Core.Platform.DialogFileFilter.operator != + fullName: OpenTK.Platform.DialogFileFilter.operator != nameWithType.vb: DialogFileFilter.<> - fullName.vb: OpenTK.Core.Platform.DialogFileFilter.<> + fullName.vb: OpenTK.Platform.DialogFileFilter.<> name.vb: <> spec.csharp: - name: operator - name: " " - - uid: OpenTK.Core.Platform.DialogFileFilter.op_Inequality* + - uid: OpenTK.Platform.DialogFileFilter.op_Inequality* name: '!=' - href: OpenTK.Core.Platform.DialogFileFilter.html#OpenTK_Core_Platform_DialogFileFilter_op_Inequality_OpenTK_Core_Platform_DialogFileFilter_OpenTK_Core_Platform_DialogFileFilter_ + href: OpenTK.Platform.DialogFileFilter.html#OpenTK_Platform_DialogFileFilter_op_Inequality_OpenTK_Platform_DialogFileFilter_OpenTK_Platform_DialogFileFilter_ - uid: System.ValueType.ToString commentId: M:System.ValueType.ToString parent: System.ValueType @@ -796,9 +772,9 @@ references: href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - name: ( - name: ) -- uid: OpenTK.Core.Platform.DialogFileFilter.ToString* - commentId: Overload:OpenTK.Core.Platform.DialogFileFilter.ToString - href: OpenTK.Core.Platform.DialogFileFilter.html#OpenTK_Core_Platform_DialogFileFilter_ToString +- uid: OpenTK.Platform.DialogFileFilter.ToString* + commentId: Overload:OpenTK.Platform.DialogFileFilter.ToString + href: OpenTK.Platform.DialogFileFilter.html#OpenTK_Platform_DialogFileFilter_ToString name: ToString nameWithType: DialogFileFilter.ToString - fullName: OpenTK.Core.Platform.DialogFileFilter.ToString + fullName: OpenTK.Platform.DialogFileFilter.ToString diff --git a/api/OpenTK.Core.Platform.DisplayConnectionChangedEventArgs.yml b/api/OpenTK.Platform.DisplayConnectionChangedEventArgs.yml similarity index 68% rename from api/OpenTK.Core.Platform.DisplayConnectionChangedEventArgs.yml rename to api/OpenTK.Platform.DisplayConnectionChangedEventArgs.yml index b0ca5a22..41d55308 100644 --- a/api/OpenTK.Core.Platform.DisplayConnectionChangedEventArgs.yml +++ b/api/OpenTK.Platform.DisplayConnectionChangedEventArgs.yml @@ -1,31 +1,27 @@ ### YamlMime:ManagedReference items: -- uid: OpenTK.Core.Platform.DisplayConnectionChangedEventArgs - commentId: T:OpenTK.Core.Platform.DisplayConnectionChangedEventArgs +- uid: OpenTK.Platform.DisplayConnectionChangedEventArgs + commentId: T:OpenTK.Platform.DisplayConnectionChangedEventArgs id: DisplayConnectionChangedEventArgs - parent: OpenTK.Core.Platform + parent: OpenTK.Platform children: - - OpenTK.Core.Platform.DisplayConnectionChangedEventArgs.#ctor(OpenTK.Core.Platform.DisplayHandle,System.Boolean) - - OpenTK.Core.Platform.DisplayConnectionChangedEventArgs.Disconnected - - OpenTK.Core.Platform.DisplayConnectionChangedEventArgs.Display + - OpenTK.Platform.DisplayConnectionChangedEventArgs.#ctor(OpenTK.Platform.DisplayHandle,System.Boolean) + - OpenTK.Platform.DisplayConnectionChangedEventArgs.Disconnected + - OpenTK.Platform.DisplayConnectionChangedEventArgs.Display langs: - csharp - vb name: DisplayConnectionChangedEventArgs nameWithType: DisplayConnectionChangedEventArgs - fullName: OpenTK.Core.Platform.DisplayConnectionChangedEventArgs + fullName: OpenTK.Platform.DisplayConnectionChangedEventArgs type: Class source: - remote: - path: src/OpenTK.Core/Platform/WindowEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DisplayConnectionChangedEventArgs - path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs - startLine: 605 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\WindowEventArgs.cs + startLine: 629 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform + - OpenTK.Platform + namespace: OpenTK.Platform summary: This event is triggered when a display is connected or disconnected from the system. example: [] syntax: @@ -43,59 +39,51 @@ items: - System.Object.MemberwiseClone - System.Object.ReferenceEquals(System.Object,System.Object) - System.Object.ToString -- uid: OpenTK.Core.Platform.DisplayConnectionChangedEventArgs.Display - commentId: P:OpenTK.Core.Platform.DisplayConnectionChangedEventArgs.Display +- uid: OpenTK.Platform.DisplayConnectionChangedEventArgs.Display + commentId: P:OpenTK.Platform.DisplayConnectionChangedEventArgs.Display id: Display - parent: OpenTK.Core.Platform.DisplayConnectionChangedEventArgs + parent: OpenTK.Platform.DisplayConnectionChangedEventArgs langs: - csharp - vb name: Display nameWithType: DisplayConnectionChangedEventArgs.Display - fullName: OpenTK.Core.Platform.DisplayConnectionChangedEventArgs.Display + fullName: OpenTK.Platform.DisplayConnectionChangedEventArgs.Display type: Property source: - remote: - path: src/OpenTK.Core/Platform/WindowEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Display - path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs - startLine: 610 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\WindowEventArgs.cs + startLine: 634 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform + - OpenTK.Platform + namespace: OpenTK.Platform summary: A handle to the display that was connected or got disconnected. example: [] syntax: content: public DisplayHandle Display { get; } parameters: [] return: - type: OpenTK.Core.Platform.DisplayHandle + type: OpenTK.Platform.DisplayHandle content.vb: Public Property Display As DisplayHandle - overload: OpenTK.Core.Platform.DisplayConnectionChangedEventArgs.Display* -- uid: OpenTK.Core.Platform.DisplayConnectionChangedEventArgs.Disconnected - commentId: P:OpenTK.Core.Platform.DisplayConnectionChangedEventArgs.Disconnected + overload: OpenTK.Platform.DisplayConnectionChangedEventArgs.Display* +- uid: OpenTK.Platform.DisplayConnectionChangedEventArgs.Disconnected + commentId: P:OpenTK.Platform.DisplayConnectionChangedEventArgs.Disconnected id: Disconnected - parent: OpenTK.Core.Platform.DisplayConnectionChangedEventArgs + parent: OpenTK.Platform.DisplayConnectionChangedEventArgs langs: - csharp - vb name: Disconnected nameWithType: DisplayConnectionChangedEventArgs.Disconnected - fullName: OpenTK.Core.Platform.DisplayConnectionChangedEventArgs.Disconnected + fullName: OpenTK.Platform.DisplayConnectionChangedEventArgs.Disconnected type: Property source: - remote: - path: src/OpenTK.Core/Platform/WindowEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Disconnected - path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs - startLine: 615 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\WindowEventArgs.cs + startLine: 639 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform + - OpenTK.Platform + namespace: OpenTK.Platform summary: Whether the monitor was connected or disconnected. example: [] syntax: @@ -104,76 +92,64 @@ items: return: type: System.Boolean content.vb: Public Property Disconnected As Boolean - overload: OpenTK.Core.Platform.DisplayConnectionChangedEventArgs.Disconnected* -- uid: OpenTK.Core.Platform.DisplayConnectionChangedEventArgs.#ctor(OpenTK.Core.Platform.DisplayHandle,System.Boolean) - commentId: M:OpenTK.Core.Platform.DisplayConnectionChangedEventArgs.#ctor(OpenTK.Core.Platform.DisplayHandle,System.Boolean) - id: '#ctor(OpenTK.Core.Platform.DisplayHandle,System.Boolean)' - parent: OpenTK.Core.Platform.DisplayConnectionChangedEventArgs + overload: OpenTK.Platform.DisplayConnectionChangedEventArgs.Disconnected* +- uid: OpenTK.Platform.DisplayConnectionChangedEventArgs.#ctor(OpenTK.Platform.DisplayHandle,System.Boolean) + commentId: M:OpenTK.Platform.DisplayConnectionChangedEventArgs.#ctor(OpenTK.Platform.DisplayHandle,System.Boolean) + id: '#ctor(OpenTK.Platform.DisplayHandle,System.Boolean)' + parent: OpenTK.Platform.DisplayConnectionChangedEventArgs langs: - csharp - vb name: DisplayConnectionChangedEventArgs(DisplayHandle, bool) nameWithType: DisplayConnectionChangedEventArgs.DisplayConnectionChangedEventArgs(DisplayHandle, bool) - fullName: OpenTK.Core.Platform.DisplayConnectionChangedEventArgs.DisplayConnectionChangedEventArgs(OpenTK.Core.Platform.DisplayHandle, bool) + fullName: OpenTK.Platform.DisplayConnectionChangedEventArgs.DisplayConnectionChangedEventArgs(OpenTK.Platform.DisplayHandle, bool) type: Constructor source: - remote: - path: src/OpenTK.Core/Platform/WindowEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs - startLine: 623 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\WindowEventArgs.cs + startLine: 647 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Initializes a new instance of the class. + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Initializes a new instance of the class. example: [] syntax: content: public DisplayConnectionChangedEventArgs(DisplayHandle display, bool disconnected) parameters: - id: display - type: OpenTK.Core.Platform.DisplayHandle + type: OpenTK.Platform.DisplayHandle description: The display that was either connected or disconnected. - id: disconnected type: System.Boolean description: If the display was connected or disconnected. content.vb: Public Sub New(display As DisplayHandle, disconnected As Boolean) - overload: OpenTK.Core.Platform.DisplayConnectionChangedEventArgs.#ctor* + overload: OpenTK.Platform.DisplayConnectionChangedEventArgs.#ctor* nameWithType.vb: DisplayConnectionChangedEventArgs.New(DisplayHandle, Boolean) - fullName.vb: OpenTK.Core.Platform.DisplayConnectionChangedEventArgs.New(OpenTK.Core.Platform.DisplayHandle, Boolean) + fullName.vb: OpenTK.Platform.DisplayConnectionChangedEventArgs.New(OpenTK.Platform.DisplayHandle, Boolean) name.vb: New(DisplayHandle, Boolean) references: -- uid: OpenTK.Core.Platform - commentId: N:OpenTK.Core.Platform +- uid: OpenTK.Platform + commentId: N:OpenTK.Platform href: OpenTK.html - name: OpenTK.Core.Platform - nameWithType: OpenTK.Core.Platform - fullName: OpenTK.Core.Platform + name: OpenTK.Platform + nameWithType: OpenTK.Platform + fullName: OpenTK.Platform spec.csharp: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html spec.vb: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html - uid: System.Object commentId: T:System.Object parent: System @@ -427,25 +403,25 @@ references: name: System nameWithType: System fullName: System -- uid: OpenTK.Core.Platform.DisplayConnectionChangedEventArgs.Display* - commentId: Overload:OpenTK.Core.Platform.DisplayConnectionChangedEventArgs.Display - href: OpenTK.Core.Platform.DisplayConnectionChangedEventArgs.html#OpenTK_Core_Platform_DisplayConnectionChangedEventArgs_Display +- uid: OpenTK.Platform.DisplayConnectionChangedEventArgs.Display* + commentId: Overload:OpenTK.Platform.DisplayConnectionChangedEventArgs.Display + href: OpenTK.Platform.DisplayConnectionChangedEventArgs.html#OpenTK_Platform_DisplayConnectionChangedEventArgs_Display name: Display nameWithType: DisplayConnectionChangedEventArgs.Display - fullName: OpenTK.Core.Platform.DisplayConnectionChangedEventArgs.Display -- uid: OpenTK.Core.Platform.DisplayHandle - commentId: T:OpenTK.Core.Platform.DisplayHandle - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.DisplayHandle.html + fullName: OpenTK.Platform.DisplayConnectionChangedEventArgs.Display +- uid: OpenTK.Platform.DisplayHandle + commentId: T:OpenTK.Platform.DisplayHandle + parent: OpenTK.Platform + href: OpenTK.Platform.DisplayHandle.html name: DisplayHandle nameWithType: DisplayHandle - fullName: OpenTK.Core.Platform.DisplayHandle -- uid: OpenTK.Core.Platform.DisplayConnectionChangedEventArgs.Disconnected* - commentId: Overload:OpenTK.Core.Platform.DisplayConnectionChangedEventArgs.Disconnected - href: OpenTK.Core.Platform.DisplayConnectionChangedEventArgs.html#OpenTK_Core_Platform_DisplayConnectionChangedEventArgs_Disconnected + fullName: OpenTK.Platform.DisplayHandle +- uid: OpenTK.Platform.DisplayConnectionChangedEventArgs.Disconnected* + commentId: Overload:OpenTK.Platform.DisplayConnectionChangedEventArgs.Disconnected + href: OpenTK.Platform.DisplayConnectionChangedEventArgs.html#OpenTK_Platform_DisplayConnectionChangedEventArgs_Disconnected name: Disconnected nameWithType: DisplayConnectionChangedEventArgs.Disconnected - fullName: OpenTK.Core.Platform.DisplayConnectionChangedEventArgs.Disconnected + fullName: OpenTK.Platform.DisplayConnectionChangedEventArgs.Disconnected - uid: System.Boolean commentId: T:System.Boolean parent: System @@ -457,18 +433,18 @@ references: nameWithType.vb: Boolean fullName.vb: Boolean name.vb: Boolean -- uid: OpenTK.Core.Platform.DisplayConnectionChangedEventArgs - commentId: T:OpenTK.Core.Platform.DisplayConnectionChangedEventArgs - href: OpenTK.Core.Platform.DisplayConnectionChangedEventArgs.html +- uid: OpenTK.Platform.DisplayConnectionChangedEventArgs + commentId: T:OpenTK.Platform.DisplayConnectionChangedEventArgs + href: OpenTK.Platform.DisplayConnectionChangedEventArgs.html name: DisplayConnectionChangedEventArgs nameWithType: DisplayConnectionChangedEventArgs - fullName: OpenTK.Core.Platform.DisplayConnectionChangedEventArgs -- uid: OpenTK.Core.Platform.DisplayConnectionChangedEventArgs.#ctor* - commentId: Overload:OpenTK.Core.Platform.DisplayConnectionChangedEventArgs.#ctor - href: OpenTK.Core.Platform.DisplayConnectionChangedEventArgs.html#OpenTK_Core_Platform_DisplayConnectionChangedEventArgs__ctor_OpenTK_Core_Platform_DisplayHandle_System_Boolean_ + fullName: OpenTK.Platform.DisplayConnectionChangedEventArgs +- uid: OpenTK.Platform.DisplayConnectionChangedEventArgs.#ctor* + commentId: Overload:OpenTK.Platform.DisplayConnectionChangedEventArgs.#ctor + href: OpenTK.Platform.DisplayConnectionChangedEventArgs.html#OpenTK_Platform_DisplayConnectionChangedEventArgs__ctor_OpenTK_Platform_DisplayHandle_System_Boolean_ name: DisplayConnectionChangedEventArgs nameWithType: DisplayConnectionChangedEventArgs.DisplayConnectionChangedEventArgs - fullName: OpenTK.Core.Platform.DisplayConnectionChangedEventArgs.DisplayConnectionChangedEventArgs + fullName: OpenTK.Platform.DisplayConnectionChangedEventArgs.DisplayConnectionChangedEventArgs nameWithType.vb: DisplayConnectionChangedEventArgs.New - fullName.vb: OpenTK.Core.Platform.DisplayConnectionChangedEventArgs.New + fullName.vb: OpenTK.Platform.DisplayConnectionChangedEventArgs.New name.vb: New diff --git a/api/OpenTK.Core.Platform.DisplayHandle.yml b/api/OpenTK.Platform.DisplayHandle.yml similarity index 77% rename from api/OpenTK.Core.Platform.DisplayHandle.yml rename to api/OpenTK.Platform.DisplayHandle.yml index 5ee5d4e7..544302c8 100644 --- a/api/OpenTK.Core.Platform.DisplayHandle.yml +++ b/api/OpenTK.Platform.DisplayHandle.yml @@ -1,28 +1,24 @@ ### YamlMime:ManagedReference items: -- uid: OpenTK.Core.Platform.DisplayHandle - commentId: T:OpenTK.Core.Platform.DisplayHandle +- uid: OpenTK.Platform.DisplayHandle + commentId: T:OpenTK.Platform.DisplayHandle id: DisplayHandle - parent: OpenTK.Core.Platform + parent: OpenTK.Platform children: [] langs: - csharp - vb name: DisplayHandle nameWithType: DisplayHandle - fullName: OpenTK.Core.Platform.DisplayHandle + fullName: OpenTK.Platform.DisplayHandle type: Class source: - remote: - path: src/OpenTK.Core/Platform/Handles/DisplayHandle.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DisplayHandle - path: opentk/src/OpenTK.Core/Platform/Handles/DisplayHandle.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Handles\DisplayHandle.cs startLine: 5 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform + - OpenTK.Platform + namespace: OpenTK.Platform summary: Handle to a display. example: [] syntax: @@ -30,10 +26,10 @@ items: content.vb: Public MustInherit Class DisplayHandle Inherits PalHandle inheritance: - System.Object - - OpenTK.Core.Platform.PalHandle + - OpenTK.Platform.PalHandle inheritedMembers: - - OpenTK.Core.Platform.PalHandle.UserData - - OpenTK.Core.Platform.PalHandle.As``1(OpenTK.Core.Platform.IPalComponent) + - OpenTK.Platform.PalHandle.UserData + - OpenTK.Platform.PalHandle.As``1(OpenTK.Platform.IPalComponent) - System.Object.Equals(System.Object) - System.Object.Equals(System.Object,System.Object) - System.Object.GetHashCode @@ -42,36 +38,28 @@ items: - System.Object.ReferenceEquals(System.Object,System.Object) - System.Object.ToString references: -- uid: OpenTK.Core.Platform - commentId: N:OpenTK.Core.Platform +- uid: OpenTK.Platform + commentId: N:OpenTK.Platform href: OpenTK.html - name: OpenTK.Core.Platform - nameWithType: OpenTK.Core.Platform - fullName: OpenTK.Core.Platform + name: OpenTK.Platform + nameWithType: OpenTK.Platform + fullName: OpenTK.Platform spec.csharp: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html spec.vb: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html - uid: System.Object commentId: T:System.Object parent: System @@ -83,55 +71,55 @@ references: nameWithType.vb: Object fullName.vb: Object name.vb: Object -- uid: OpenTK.Core.Platform.PalHandle - commentId: T:OpenTK.Core.Platform.PalHandle - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.PalHandle.html +- uid: OpenTK.Platform.PalHandle + commentId: T:OpenTK.Platform.PalHandle + parent: OpenTK.Platform + href: OpenTK.Platform.PalHandle.html name: PalHandle nameWithType: PalHandle - fullName: OpenTK.Core.Platform.PalHandle -- uid: OpenTK.Core.Platform.PalHandle.UserData - commentId: P:OpenTK.Core.Platform.PalHandle.UserData - parent: OpenTK.Core.Platform.PalHandle - href: OpenTK.Core.Platform.PalHandle.html#OpenTK_Core_Platform_PalHandle_UserData + fullName: OpenTK.Platform.PalHandle +- uid: OpenTK.Platform.PalHandle.UserData + commentId: P:OpenTK.Platform.PalHandle.UserData + parent: OpenTK.Platform.PalHandle + href: OpenTK.Platform.PalHandle.html#OpenTK_Platform_PalHandle_UserData name: UserData nameWithType: PalHandle.UserData - fullName: OpenTK.Core.Platform.PalHandle.UserData -- uid: OpenTK.Core.Platform.PalHandle.As``1(OpenTK.Core.Platform.IPalComponent) - commentId: M:OpenTK.Core.Platform.PalHandle.As``1(OpenTK.Core.Platform.IPalComponent) - parent: OpenTK.Core.Platform.PalHandle - href: OpenTK.Core.Platform.PalHandle.html#OpenTK_Core_Platform_PalHandle_As__1_OpenTK_Core_Platform_IPalComponent_ + fullName: OpenTK.Platform.PalHandle.UserData +- uid: OpenTK.Platform.PalHandle.As``1(OpenTK.Platform.IPalComponent) + commentId: M:OpenTK.Platform.PalHandle.As``1(OpenTK.Platform.IPalComponent) + parent: OpenTK.Platform.PalHandle + href: OpenTK.Platform.PalHandle.html#OpenTK_Platform_PalHandle_As__1_OpenTK_Platform_IPalComponent_ name: As(IPalComponent) nameWithType: PalHandle.As(IPalComponent) - fullName: OpenTK.Core.Platform.PalHandle.As(OpenTK.Core.Platform.IPalComponent) + fullName: OpenTK.Platform.PalHandle.As(OpenTK.Platform.IPalComponent) nameWithType.vb: PalHandle.As(Of T)(IPalComponent) - fullName.vb: OpenTK.Core.Platform.PalHandle.As(Of T)(OpenTK.Core.Platform.IPalComponent) + fullName.vb: OpenTK.Platform.PalHandle.As(Of T)(OpenTK.Platform.IPalComponent) name.vb: As(Of T)(IPalComponent) spec.csharp: - - uid: OpenTK.Core.Platform.PalHandle.As``1(OpenTK.Core.Platform.IPalComponent) + - uid: OpenTK.Platform.PalHandle.As``1(OpenTK.Platform.IPalComponent) name: As - href: OpenTK.Core.Platform.PalHandle.html#OpenTK_Core_Platform_PalHandle_As__1_OpenTK_Core_Platform_IPalComponent_ + href: OpenTK.Platform.PalHandle.html#OpenTK_Platform_PalHandle_As__1_OpenTK_Platform_IPalComponent_ - name: < - name: T - name: '>' - name: ( - - uid: OpenTK.Core.Platform.IPalComponent + - uid: OpenTK.Platform.IPalComponent name: IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html + href: OpenTK.Platform.IPalComponent.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.PalHandle.As``1(OpenTK.Core.Platform.IPalComponent) + - uid: OpenTK.Platform.PalHandle.As``1(OpenTK.Platform.IPalComponent) name: As - href: OpenTK.Core.Platform.PalHandle.html#OpenTK_Core_Platform_PalHandle_As__1_OpenTK_Core_Platform_IPalComponent_ + href: OpenTK.Platform.PalHandle.html#OpenTK_Platform_PalHandle_As__1_OpenTK_Platform_IPalComponent_ - name: ( - name: Of - name: " " - name: T - name: ) - name: ( - - uid: OpenTK.Core.Platform.IPalComponent + - uid: OpenTK.Platform.IPalComponent name: IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html + href: OpenTK.Platform.IPalComponent.html - name: ) - uid: System.Object.Equals(System.Object) commentId: M:System.Object.Equals(System.Object) diff --git a/api/OpenTK.Core.Platform.DisplayResolution.yml b/api/OpenTK.Platform.DisplayResolution.yml similarity index 71% rename from api/OpenTK.Core.Platform.DisplayResolution.yml rename to api/OpenTK.Platform.DisplayResolution.yml index bc07cd7a..16eb1e58 100644 --- a/api/OpenTK.Core.Platform.DisplayResolution.yml +++ b/api/OpenTK.Platform.DisplayResolution.yml @@ -1,32 +1,28 @@ ### YamlMime:ManagedReference items: -- uid: OpenTK.Core.Platform.DisplayResolution - commentId: T:OpenTK.Core.Platform.DisplayResolution +- uid: OpenTK.Platform.DisplayResolution + commentId: T:OpenTK.Platform.DisplayResolution id: DisplayResolution - parent: OpenTK.Core.Platform + parent: OpenTK.Platform children: - - OpenTK.Core.Platform.DisplayResolution.#ctor(System.Int32,System.Int32) - - OpenTK.Core.Platform.DisplayResolution.ResolutionX - - OpenTK.Core.Platform.DisplayResolution.ResolutionY - - OpenTK.Core.Platform.DisplayResolution.ToString + - OpenTK.Platform.DisplayResolution.#ctor(System.Int32,System.Int32) + - OpenTK.Platform.DisplayResolution.ResolutionX + - OpenTK.Platform.DisplayResolution.ResolutionY + - OpenTK.Platform.DisplayResolution.ToString langs: - csharp - vb name: DisplayResolution nameWithType: DisplayResolution - fullName: OpenTK.Core.Platform.DisplayResolution + fullName: OpenTK.Platform.DisplayResolution type: Struct source: - remote: - path: src/OpenTK.Core/Platform/DisplayResolution.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DisplayResolution - path: opentk/src/OpenTK.Core/Platform/DisplayResolution.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\DisplayResolution.cs startLine: 5 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform + - OpenTK.Platform + namespace: OpenTK.Platform summary: Represents a display resolution. example: [] syntax: @@ -38,28 +34,24 @@ items: - System.Object.Equals(System.Object,System.Object) - System.Object.GetType - System.Object.ReferenceEquals(System.Object,System.Object) -- uid: OpenTK.Core.Platform.DisplayResolution.ResolutionX - commentId: F:OpenTK.Core.Platform.DisplayResolution.ResolutionX +- uid: OpenTK.Platform.DisplayResolution.ResolutionX + commentId: F:OpenTK.Platform.DisplayResolution.ResolutionX id: ResolutionX - parent: OpenTK.Core.Platform.DisplayResolution + parent: OpenTK.Platform.DisplayResolution langs: - csharp - vb name: ResolutionX nameWithType: DisplayResolution.ResolutionX - fullName: OpenTK.Core.Platform.DisplayResolution.ResolutionX + fullName: OpenTK.Platform.DisplayResolution.ResolutionX type: Field source: - remote: - path: src/OpenTK.Core/Platform/DisplayResolution.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ResolutionX - path: opentk/src/OpenTK.Core/Platform/DisplayResolution.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\DisplayResolution.cs startLine: 10 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform + - OpenTK.Platform + namespace: OpenTK.Platform summary: The horizontal resolution in pixels. example: [] syntax: @@ -67,28 +59,24 @@ items: return: type: System.Int32 content.vb: Public ReadOnly ResolutionX As Integer -- uid: OpenTK.Core.Platform.DisplayResolution.ResolutionY - commentId: F:OpenTK.Core.Platform.DisplayResolution.ResolutionY +- uid: OpenTK.Platform.DisplayResolution.ResolutionY + commentId: F:OpenTK.Platform.DisplayResolution.ResolutionY id: ResolutionY - parent: OpenTK.Core.Platform.DisplayResolution + parent: OpenTK.Platform.DisplayResolution langs: - csharp - vb name: ResolutionY nameWithType: DisplayResolution.ResolutionY - fullName: OpenTK.Core.Platform.DisplayResolution.ResolutionY + fullName: OpenTK.Platform.DisplayResolution.ResolutionY type: Field source: - remote: - path: src/OpenTK.Core/Platform/DisplayResolution.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ResolutionY - path: opentk/src/OpenTK.Core/Platform/DisplayResolution.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\DisplayResolution.cs startLine: 15 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform + - OpenTK.Platform + namespace: OpenTK.Platform summary: The vertical resolution in pixels. example: [] syntax: @@ -96,29 +84,25 @@ items: return: type: System.Int32 content.vb: Public ReadOnly ResolutionY As Integer -- uid: OpenTK.Core.Platform.DisplayResolution.#ctor(System.Int32,System.Int32) - commentId: M:OpenTK.Core.Platform.DisplayResolution.#ctor(System.Int32,System.Int32) +- uid: OpenTK.Platform.DisplayResolution.#ctor(System.Int32,System.Int32) + commentId: M:OpenTK.Platform.DisplayResolution.#ctor(System.Int32,System.Int32) id: '#ctor(System.Int32,System.Int32)' - parent: OpenTK.Core.Platform.DisplayResolution + parent: OpenTK.Platform.DisplayResolution langs: - csharp - vb name: DisplayResolution(int, int) nameWithType: DisplayResolution.DisplayResolution(int, int) - fullName: OpenTK.Core.Platform.DisplayResolution.DisplayResolution(int, int) + fullName: OpenTK.Platform.DisplayResolution.DisplayResolution(int, int) type: Constructor source: - remote: - path: src/OpenTK.Core/Platform/DisplayResolution.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Core/Platform/DisplayResolution.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\DisplayResolution.cs startLine: 22 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Initializes a new instance of the struct with the specified vertical and horizontal resolution. + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Initializes a new instance of the struct with the specified vertical and horizontal resolution. example: [] syntax: content: public DisplayResolution(int resolutionX, int resolutionY) @@ -130,32 +114,28 @@ items: type: System.Int32 description: The vertical resolution. content.vb: Public Sub New(resolutionX As Integer, resolutionY As Integer) - overload: OpenTK.Core.Platform.DisplayResolution.#ctor* + overload: OpenTK.Platform.DisplayResolution.#ctor* nameWithType.vb: DisplayResolution.New(Integer, Integer) - fullName.vb: OpenTK.Core.Platform.DisplayResolution.New(Integer, Integer) + fullName.vb: OpenTK.Platform.DisplayResolution.New(Integer, Integer) name.vb: New(Integer, Integer) -- uid: OpenTK.Core.Platform.DisplayResolution.ToString - commentId: M:OpenTK.Core.Platform.DisplayResolution.ToString +- uid: OpenTK.Platform.DisplayResolution.ToString + commentId: M:OpenTK.Platform.DisplayResolution.ToString id: ToString - parent: OpenTK.Core.Platform.DisplayResolution + parent: OpenTK.Platform.DisplayResolution langs: - csharp - vb name: ToString() nameWithType: DisplayResolution.ToString() - fullName: OpenTK.Core.Platform.DisplayResolution.ToString() + fullName: OpenTK.Platform.DisplayResolution.ToString() type: Method source: - remote: - path: src/OpenTK.Core/Platform/DisplayResolution.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Core/Platform/DisplayResolution.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\DisplayResolution.cs startLine: 29 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform + - OpenTK.Platform + namespace: OpenTK.Platform summary: Returns the fully qualified type name of this instance. example: [] syntax: @@ -165,38 +145,30 @@ items: description: The fully qualified type name. content.vb: Public Overrides Function ToString() As String overridden: System.ValueType.ToString - overload: OpenTK.Core.Platform.DisplayResolution.ToString* + overload: OpenTK.Platform.DisplayResolution.ToString* references: -- uid: OpenTK.Core.Platform - commentId: N:OpenTK.Core.Platform +- uid: OpenTK.Platform + commentId: N:OpenTK.Platform href: OpenTK.html - name: OpenTK.Core.Platform - nameWithType: OpenTK.Core.Platform - fullName: OpenTK.Core.Platform + name: OpenTK.Platform + nameWithType: OpenTK.Platform + fullName: OpenTK.Platform spec.csharp: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html spec.vb: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html - uid: System.ValueType.Equals(System.Object) commentId: M:System.ValueType.Equals(System.Object) parent: System.ValueType @@ -403,20 +375,20 @@ references: nameWithType.vb: Integer fullName.vb: Integer name.vb: Integer -- uid: OpenTK.Core.Platform.DisplayResolution - commentId: T:OpenTK.Core.Platform.DisplayResolution - href: OpenTK.Core.Platform.DisplayResolution.html +- uid: OpenTK.Platform.DisplayResolution + commentId: T:OpenTK.Platform.DisplayResolution + href: OpenTK.Platform.DisplayResolution.html name: DisplayResolution nameWithType: DisplayResolution - fullName: OpenTK.Core.Platform.DisplayResolution -- uid: OpenTK.Core.Platform.DisplayResolution.#ctor* - commentId: Overload:OpenTK.Core.Platform.DisplayResolution.#ctor - href: OpenTK.Core.Platform.DisplayResolution.html#OpenTK_Core_Platform_DisplayResolution__ctor_System_Int32_System_Int32_ + fullName: OpenTK.Platform.DisplayResolution +- uid: OpenTK.Platform.DisplayResolution.#ctor* + commentId: Overload:OpenTK.Platform.DisplayResolution.#ctor + href: OpenTK.Platform.DisplayResolution.html#OpenTK_Platform_DisplayResolution__ctor_System_Int32_System_Int32_ name: DisplayResolution nameWithType: DisplayResolution.DisplayResolution - fullName: OpenTK.Core.Platform.DisplayResolution.DisplayResolution + fullName: OpenTK.Platform.DisplayResolution.DisplayResolution nameWithType.vb: DisplayResolution.New - fullName.vb: OpenTK.Core.Platform.DisplayResolution.New + fullName.vb: OpenTK.Platform.DisplayResolution.New name.vb: New - uid: System.ValueType.ToString commentId: M:System.ValueType.ToString @@ -440,12 +412,12 @@ references: href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - name: ( - name: ) -- uid: OpenTK.Core.Platform.DisplayResolution.ToString* - commentId: Overload:OpenTK.Core.Platform.DisplayResolution.ToString - href: OpenTK.Core.Platform.DisplayResolution.html#OpenTK_Core_Platform_DisplayResolution_ToString +- uid: OpenTK.Platform.DisplayResolution.ToString* + commentId: Overload:OpenTK.Platform.DisplayResolution.ToString + href: OpenTK.Platform.DisplayResolution.html#OpenTK_Platform_DisplayResolution_ToString name: ToString nameWithType: DisplayResolution.ToString - fullName: OpenTK.Core.Platform.DisplayResolution.ToString + fullName: OpenTK.Platform.DisplayResolution.ToString - uid: System.String commentId: T:System.String parent: System diff --git a/api/OpenTK.Core.Platform.EventQueue.yml b/api/OpenTK.Platform.EventQueue.yml similarity index 58% rename from api/OpenTK.Core.Platform.EventQueue.yml rename to api/OpenTK.Platform.EventQueue.yml index 373124b6..6b6a08ad 100644 --- a/api/OpenTK.Core.Platform.EventQueue.yml +++ b/api/OpenTK.Platform.EventQueue.yml @@ -1,37 +1,33 @@ ### YamlMime:ManagedReference items: -- uid: OpenTK.Core.Platform.EventQueue - commentId: T:OpenTK.Core.Platform.EventQueue +- uid: OpenTK.Platform.EventQueue + commentId: T:OpenTK.Platform.EventQueue id: EventQueue - parent: OpenTK.Core.Platform + parent: OpenTK.Platform children: - - OpenTK.Core.Platform.EventQueue.DispatchEvents - - OpenTK.Core.Platform.EventQueue.DispatchOne - - OpenTK.Core.Platform.EventQueue.Dispose - - OpenTK.Core.Platform.EventQueue.EventDispatched - - OpenTK.Core.Platform.EventQueue.EventRaised - - OpenTK.Core.Platform.EventQueue.FilteredHandle - - OpenTK.Core.Platform.EventQueue.InQueue - - OpenTK.Core.Platform.EventQueue.Raise(OpenTK.Core.Platform.PalHandle,OpenTK.Core.Platform.PlatformEventType,System.EventArgs) - - OpenTK.Core.Platform.EventQueue.Subscribe(OpenTK.Core.Platform.PalHandle) + - OpenTK.Platform.EventQueue.DispatchEvents + - OpenTK.Platform.EventQueue.DispatchOne + - OpenTK.Platform.EventQueue.Dispose + - OpenTK.Platform.EventQueue.EventDispatched + - OpenTK.Platform.EventQueue.EventRaised + - OpenTK.Platform.EventQueue.FilteredHandle + - OpenTK.Platform.EventQueue.InQueue + - OpenTK.Platform.EventQueue.Raise(OpenTK.Platform.PalHandle,OpenTK.Platform.PlatformEventType,System.EventArgs) + - OpenTK.Platform.EventQueue.Subscribe(OpenTK.Platform.PalHandle) langs: - csharp - vb name: EventQueue nameWithType: EventQueue - fullName: OpenTK.Core.Platform.EventQueue + fullName: OpenTK.Platform.EventQueue type: Class source: - remote: - path: src/OpenTK.Core/Platform/EventQueue.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: EventQueue - path: opentk/src/OpenTK.Core/Platform/EventQueue.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\EventQueue.cs startLine: 19 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform + - OpenTK.Platform + namespace: OpenTK.Platform summary: Event queue for interacting with platform events. example: [] syntax: @@ -49,59 +45,51 @@ items: - System.Object.MemberwiseClone - System.Object.ReferenceEquals(System.Object,System.Object) - System.Object.ToString -- uid: OpenTK.Core.Platform.EventQueue.FilteredHandle - commentId: P:OpenTK.Core.Platform.EventQueue.FilteredHandle +- uid: OpenTK.Platform.EventQueue.FilteredHandle + commentId: P:OpenTK.Platform.EventQueue.FilteredHandle id: FilteredHandle - parent: OpenTK.Core.Platform.EventQueue + parent: OpenTK.Platform.EventQueue langs: - csharp - vb name: FilteredHandle nameWithType: EventQueue.FilteredHandle - fullName: OpenTK.Core.Platform.EventQueue.FilteredHandle + fullName: OpenTK.Platform.EventQueue.FilteredHandle type: Property source: - remote: - path: src/OpenTK.Core/Platform/EventQueue.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: FilteredHandle - path: opentk/src/OpenTK.Core/Platform/EventQueue.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\EventQueue.cs startLine: 34 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform + - OpenTK.Platform + namespace: OpenTK.Platform summary: Indicates which handle the queue is filtered for. example: [] syntax: content: public PalHandle? FilteredHandle { get; } parameters: [] return: - type: OpenTK.Core.Platform.PalHandle + type: OpenTK.Platform.PalHandle content.vb: Public ReadOnly Property FilteredHandle As PalHandle - overload: OpenTK.Core.Platform.EventQueue.FilteredHandle* -- uid: OpenTK.Core.Platform.EventQueue.InQueue - commentId: P:OpenTK.Core.Platform.EventQueue.InQueue + overload: OpenTK.Platform.EventQueue.FilteredHandle* +- uid: OpenTK.Platform.EventQueue.InQueue + commentId: P:OpenTK.Platform.EventQueue.InQueue id: InQueue - parent: OpenTK.Core.Platform.EventQueue + parent: OpenTK.Platform.EventQueue langs: - csharp - vb name: InQueue nameWithType: EventQueue.InQueue - fullName: OpenTK.Core.Platform.EventQueue.InQueue + fullName: OpenTK.Platform.EventQueue.InQueue type: Property source: - remote: - path: src/OpenTK.Core/Platform/EventQueue.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: InQueue - path: opentk/src/OpenTK.Core/Platform/EventQueue.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\EventQueue.cs startLine: 39 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform + - OpenTK.Platform + namespace: OpenTK.Platform summary: The number of events currently in queue. example: [] syntax: @@ -110,265 +98,229 @@ items: return: type: System.Int32 content.vb: Public ReadOnly Property InQueue As Integer - overload: OpenTK.Core.Platform.EventQueue.InQueue* -- uid: OpenTK.Core.Platform.EventQueue.EventDispatched - commentId: E:OpenTK.Core.Platform.EventQueue.EventDispatched + overload: OpenTK.Platform.EventQueue.InQueue* +- uid: OpenTK.Platform.EventQueue.EventDispatched + commentId: E:OpenTK.Platform.EventQueue.EventDispatched id: EventDispatched - parent: OpenTK.Core.Platform.EventQueue + parent: OpenTK.Platform.EventQueue langs: - csharp - vb name: EventDispatched nameWithType: EventQueue.EventDispatched - fullName: OpenTK.Core.Platform.EventQueue.EventDispatched + fullName: OpenTK.Platform.EventQueue.EventDispatched type: Event source: - remote: - path: src/OpenTK.Core/Platform/EventQueue.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: EventDispatched - path: opentk/src/OpenTK.Core/Platform/EventQueue.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\EventQueue.cs startLine: 51 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform + - OpenTK.Platform + namespace: OpenTK.Platform summary: Invoked when a queued event is dispatched. example: [] syntax: content: public event PlatformEventHandler? EventDispatched return: - type: OpenTK.Core.Platform.PlatformEventHandler + type: OpenTK.Platform.PlatformEventHandler content.vb: Public Event EventDispatched As PlatformEventHandler -- uid: OpenTK.Core.Platform.EventQueue.DispatchOne - commentId: M:OpenTK.Core.Platform.EventQueue.DispatchOne +- uid: OpenTK.Platform.EventQueue.DispatchOne + commentId: M:OpenTK.Platform.EventQueue.DispatchOne id: DispatchOne - parent: OpenTK.Core.Platform.EventQueue + parent: OpenTK.Platform.EventQueue langs: - csharp - vb name: DispatchOne() nameWithType: EventQueue.DispatchOne() - fullName: OpenTK.Core.Platform.EventQueue.DispatchOne() + fullName: OpenTK.Platform.EventQueue.DispatchOne() type: Method source: - remote: - path: src/OpenTK.Core/Platform/EventQueue.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DispatchOne - path: opentk/src/OpenTK.Core/Platform/EventQueue.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\EventQueue.cs startLine: 69 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform + - OpenTK.Platform + namespace: OpenTK.Platform summary: Dispatch one event from the queue, if available. example: [] syntax: content: public void DispatchOne() content.vb: Public Sub DispatchOne() - overload: OpenTK.Core.Platform.EventQueue.DispatchOne* -- uid: OpenTK.Core.Platform.EventQueue.DispatchEvents - commentId: M:OpenTK.Core.Platform.EventQueue.DispatchEvents + overload: OpenTK.Platform.EventQueue.DispatchOne* +- uid: OpenTK.Platform.EventQueue.DispatchEvents + commentId: M:OpenTK.Platform.EventQueue.DispatchEvents id: DispatchEvents - parent: OpenTK.Core.Platform.EventQueue + parent: OpenTK.Platform.EventQueue langs: - csharp - vb name: DispatchEvents() nameWithType: EventQueue.DispatchEvents() - fullName: OpenTK.Core.Platform.EventQueue.DispatchEvents() + fullName: OpenTK.Platform.EventQueue.DispatchEvents() type: Method source: - remote: - path: src/OpenTK.Core/Platform/EventQueue.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DispatchEvents - path: opentk/src/OpenTK.Core/Platform/EventQueue.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\EventQueue.cs startLine: 80 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform + - OpenTK.Platform + namespace: OpenTK.Platform summary: Dispatch all the events from the queue. example: [] syntax: content: public void DispatchEvents() content.vb: Public Sub DispatchEvents() - overload: OpenTK.Core.Platform.EventQueue.DispatchEvents* -- uid: OpenTK.Core.Platform.EventQueue.Dispose - commentId: M:OpenTK.Core.Platform.EventQueue.Dispose + overload: OpenTK.Platform.EventQueue.DispatchEvents* +- uid: OpenTK.Platform.EventQueue.Dispose + commentId: M:OpenTK.Platform.EventQueue.Dispose id: Dispose - parent: OpenTK.Core.Platform.EventQueue + parent: OpenTK.Platform.EventQueue langs: - csharp - vb name: Dispose() nameWithType: EventQueue.Dispose() - fullName: OpenTK.Core.Platform.EventQueue.Dispose() + fullName: OpenTK.Platform.EventQueue.Dispose() type: Method source: - remote: - path: src/OpenTK.Core/Platform/EventQueue.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Dispose - path: opentk/src/OpenTK.Core/Platform/EventQueue.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\EventQueue.cs startLine: 109 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform + - OpenTK.Platform + namespace: OpenTK.Platform summary: Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. example: [] syntax: content: public void Dispose() content.vb: Public Sub Dispose() - overload: OpenTK.Core.Platform.EventQueue.Dispose* + overload: OpenTK.Platform.EventQueue.Dispose* implements: - System.IDisposable.Dispose -- uid: OpenTK.Core.Platform.EventQueue.EventRaised - commentId: E:OpenTK.Core.Platform.EventQueue.EventRaised +- uid: OpenTK.Platform.EventQueue.EventRaised + commentId: E:OpenTK.Platform.EventQueue.EventRaised id: EventRaised - parent: OpenTK.Core.Platform.EventQueue + parent: OpenTK.Platform.EventQueue langs: - csharp - vb name: EventRaised nameWithType: EventQueue.EventRaised - fullName: OpenTK.Core.Platform.EventQueue.EventRaised + fullName: OpenTK.Platform.EventQueue.EventRaised type: Event source: - remote: - path: src/OpenTK.Core/Platform/EventQueue.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: EventRaised - path: opentk/src/OpenTK.Core/Platform/EventQueue.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\EventQueue.cs startLine: 118 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform + - OpenTK.Platform + namespace: OpenTK.Platform summary: Invoke when an event is raised. remarks: >- This event handler is potentially called across threads. If thread safety is required, - or you would like to control when events are dispatched, use instead. + or you would like to control when events are dispatched, use instead. example: [] syntax: content: public static event PlatformEventHandler? EventRaised return: - type: OpenTK.Core.Platform.PlatformEventHandler + type: OpenTK.Platform.PlatformEventHandler content.vb: Public Shared Event EventRaised As PlatformEventHandler -- uid: OpenTK.Core.Platform.EventQueue.Subscribe(OpenTK.Core.Platform.PalHandle) - commentId: M:OpenTK.Core.Platform.EventQueue.Subscribe(OpenTK.Core.Platform.PalHandle) - id: Subscribe(OpenTK.Core.Platform.PalHandle) - parent: OpenTK.Core.Platform.EventQueue +- uid: OpenTK.Platform.EventQueue.Subscribe(OpenTK.Platform.PalHandle) + commentId: M:OpenTK.Platform.EventQueue.Subscribe(OpenTK.Platform.PalHandle) + id: Subscribe(OpenTK.Platform.PalHandle) + parent: OpenTK.Platform.EventQueue langs: - csharp - vb name: Subscribe(PalHandle?) nameWithType: EventQueue.Subscribe(PalHandle?) - fullName: OpenTK.Core.Platform.EventQueue.Subscribe(OpenTK.Core.Platform.PalHandle?) + fullName: OpenTK.Platform.EventQueue.Subscribe(OpenTK.Platform.PalHandle?) type: Method source: - remote: - path: src/OpenTK.Core/Platform/EventQueue.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Subscribe - path: opentk/src/OpenTK.Core/Platform/EventQueue.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\EventQueue.cs startLine: 142 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform + - OpenTK.Platform + namespace: OpenTK.Platform summary: Subscribe to an instance of the event queue. example: [] syntax: content: public static EventQueue Subscribe(PalHandle? handle = null) parameters: - id: handle - type: OpenTK.Core.Platform.PalHandle + type: OpenTK.Platform.PalHandle description: Filter received events to the given handle. return: - type: OpenTK.Core.Platform.EventQueue + type: OpenTK.Platform.EventQueue description: The queue instance. content.vb: Public Shared Function Subscribe(handle As PalHandle = Nothing) As EventQueue - overload: OpenTK.Core.Platform.EventQueue.Subscribe* + overload: OpenTK.Platform.EventQueue.Subscribe* nameWithType.vb: EventQueue.Subscribe(PalHandle) - fullName.vb: OpenTK.Core.Platform.EventQueue.Subscribe(OpenTK.Core.Platform.PalHandle) + fullName.vb: OpenTK.Platform.EventQueue.Subscribe(OpenTK.Platform.PalHandle) name.vb: Subscribe(PalHandle) -- uid: OpenTK.Core.Platform.EventQueue.Raise(OpenTK.Core.Platform.PalHandle,OpenTK.Core.Platform.PlatformEventType,System.EventArgs) - commentId: M:OpenTK.Core.Platform.EventQueue.Raise(OpenTK.Core.Platform.PalHandle,OpenTK.Core.Platform.PlatformEventType,System.EventArgs) - id: Raise(OpenTK.Core.Platform.PalHandle,OpenTK.Core.Platform.PlatformEventType,System.EventArgs) - parent: OpenTK.Core.Platform.EventQueue +- uid: OpenTK.Platform.EventQueue.Raise(OpenTK.Platform.PalHandle,OpenTK.Platform.PlatformEventType,System.EventArgs) + commentId: M:OpenTK.Platform.EventQueue.Raise(OpenTK.Platform.PalHandle,OpenTK.Platform.PlatformEventType,System.EventArgs) + id: Raise(OpenTK.Platform.PalHandle,OpenTK.Platform.PlatformEventType,System.EventArgs) + parent: OpenTK.Platform.EventQueue langs: - csharp - vb name: Raise(PalHandle?, PlatformEventType, EventArgs) nameWithType: EventQueue.Raise(PalHandle?, PlatformEventType, EventArgs) - fullName: OpenTK.Core.Platform.EventQueue.Raise(OpenTK.Core.Platform.PalHandle?, OpenTK.Core.Platform.PlatformEventType, System.EventArgs) + fullName: OpenTK.Platform.EventQueue.Raise(OpenTK.Platform.PalHandle?, OpenTK.Platform.PlatformEventType, System.EventArgs) type: Method source: - remote: - path: src/OpenTK.Core/Platform/EventQueue.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Raise - path: opentk/src/OpenTK.Core/Platform/EventQueue.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\EventQueue.cs startLine: 153 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform + - OpenTK.Platform + namespace: OpenTK.Platform summary: Raise an event. example: [] syntax: content: public static void Raise(PalHandle? handle, PlatformEventType type, EventArgs args) parameters: - id: handle - type: OpenTK.Core.Platform.PalHandle + type: OpenTK.Platform.PalHandle description: Handle generating the event. - id: type - type: OpenTK.Core.Platform.PlatformEventType + type: OpenTK.Platform.PlatformEventType description: Type of the event. - id: args type: System.EventArgs description: Arguments associated with the event. content.vb: Public Shared Sub Raise(handle As PalHandle, type As PlatformEventType, args As EventArgs) - overload: OpenTK.Core.Platform.EventQueue.Raise* + overload: OpenTK.Platform.EventQueue.Raise* nameWithType.vb: EventQueue.Raise(PalHandle, PlatformEventType, EventArgs) - fullName.vb: OpenTK.Core.Platform.EventQueue.Raise(OpenTK.Core.Platform.PalHandle, OpenTK.Core.Platform.PlatformEventType, System.EventArgs) + fullName.vb: OpenTK.Platform.EventQueue.Raise(OpenTK.Platform.PalHandle, OpenTK.Platform.PlatformEventType, System.EventArgs) name.vb: Raise(PalHandle, PlatformEventType, EventArgs) references: -- uid: OpenTK.Core.Platform - commentId: N:OpenTK.Core.Platform +- uid: OpenTK.Platform + commentId: N:OpenTK.Platform href: OpenTK.html - name: OpenTK.Core.Platform - nameWithType: OpenTK.Core.Platform - fullName: OpenTK.Core.Platform + name: OpenTK.Platform + nameWithType: OpenTK.Platform + fullName: OpenTK.Platform spec.csharp: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html spec.vb: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html - uid: System.Object commentId: T:System.Object parent: System @@ -614,25 +566,25 @@ references: name: System nameWithType: System fullName: System -- uid: OpenTK.Core.Platform.EventQueue.FilteredHandle* - commentId: Overload:OpenTK.Core.Platform.EventQueue.FilteredHandle - href: OpenTK.Core.Platform.EventQueue.html#OpenTK_Core_Platform_EventQueue_FilteredHandle +- uid: OpenTK.Platform.EventQueue.FilteredHandle* + commentId: Overload:OpenTK.Platform.EventQueue.FilteredHandle + href: OpenTK.Platform.EventQueue.html#OpenTK_Platform_EventQueue_FilteredHandle name: FilteredHandle nameWithType: EventQueue.FilteredHandle - fullName: OpenTK.Core.Platform.EventQueue.FilteredHandle -- uid: OpenTK.Core.Platform.PalHandle - commentId: T:OpenTK.Core.Platform.PalHandle - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.PalHandle.html + fullName: OpenTK.Platform.EventQueue.FilteredHandle +- uid: OpenTK.Platform.PalHandle + commentId: T:OpenTK.Platform.PalHandle + parent: OpenTK.Platform + href: OpenTK.Platform.PalHandle.html name: PalHandle nameWithType: PalHandle - fullName: OpenTK.Core.Platform.PalHandle -- uid: OpenTK.Core.Platform.EventQueue.InQueue* - commentId: Overload:OpenTK.Core.Platform.EventQueue.InQueue - href: OpenTK.Core.Platform.EventQueue.html#OpenTK_Core_Platform_EventQueue_InQueue + fullName: OpenTK.Platform.PalHandle +- uid: OpenTK.Platform.EventQueue.InQueue* + commentId: Overload:OpenTK.Platform.EventQueue.InQueue + href: OpenTK.Platform.EventQueue.html#OpenTK_Platform_EventQueue_InQueue name: InQueue nameWithType: EventQueue.InQueue - fullName: OpenTK.Core.Platform.EventQueue.InQueue + fullName: OpenTK.Platform.EventQueue.InQueue - uid: System.Int32 commentId: T:System.Int32 parent: System @@ -644,31 +596,31 @@ references: nameWithType.vb: Integer fullName.vb: Integer name.vb: Integer -- uid: OpenTK.Core.Platform.PlatformEventHandler - commentId: T:OpenTK.Core.Platform.PlatformEventHandler - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.PlatformEventHandler.html +- uid: OpenTK.Platform.PlatformEventHandler + commentId: T:OpenTK.Platform.PlatformEventHandler + parent: OpenTK.Platform + href: OpenTK.Platform.PlatformEventHandler.html name: PlatformEventHandler nameWithType: PlatformEventHandler - fullName: OpenTK.Core.Platform.PlatformEventHandler -- uid: OpenTK.Core.Platform.EventQueue.DispatchOne* - commentId: Overload:OpenTK.Core.Platform.EventQueue.DispatchOne - href: OpenTK.Core.Platform.EventQueue.html#OpenTK_Core_Platform_EventQueue_DispatchOne + fullName: OpenTK.Platform.PlatformEventHandler +- uid: OpenTK.Platform.EventQueue.DispatchOne* + commentId: Overload:OpenTK.Platform.EventQueue.DispatchOne + href: OpenTK.Platform.EventQueue.html#OpenTK_Platform_EventQueue_DispatchOne name: DispatchOne nameWithType: EventQueue.DispatchOne - fullName: OpenTK.Core.Platform.EventQueue.DispatchOne -- uid: OpenTK.Core.Platform.EventQueue.DispatchEvents* - commentId: Overload:OpenTK.Core.Platform.EventQueue.DispatchEvents - href: OpenTK.Core.Platform.EventQueue.html#OpenTK_Core_Platform_EventQueue_DispatchEvents + fullName: OpenTK.Platform.EventQueue.DispatchOne +- uid: OpenTK.Platform.EventQueue.DispatchEvents* + commentId: Overload:OpenTK.Platform.EventQueue.DispatchEvents + href: OpenTK.Platform.EventQueue.html#OpenTK_Platform_EventQueue_DispatchEvents name: DispatchEvents nameWithType: EventQueue.DispatchEvents - fullName: OpenTK.Core.Platform.EventQueue.DispatchEvents -- uid: OpenTK.Core.Platform.EventQueue.Dispose* - commentId: Overload:OpenTK.Core.Platform.EventQueue.Dispose - href: OpenTK.Core.Platform.EventQueue.html#OpenTK_Core_Platform_EventQueue_Dispose + fullName: OpenTK.Platform.EventQueue.DispatchEvents +- uid: OpenTK.Platform.EventQueue.Dispose* + commentId: Overload:OpenTK.Platform.EventQueue.Dispose + href: OpenTK.Platform.EventQueue.html#OpenTK_Platform_EventQueue_Dispose name: Dispose nameWithType: EventQueue.Dispose - fullName: OpenTK.Core.Platform.EventQueue.Dispose + fullName: OpenTK.Platform.EventQueue.Dispose - uid: System.IDisposable.Dispose commentId: M:System.IDisposable.Dispose parent: System.IDisposable @@ -691,56 +643,56 @@ references: href: https://learn.microsoft.com/dotnet/api/system.idisposable.dispose - name: ( - name: ) -- uid: OpenTK.Core.Platform.EventQueue.Subscribe(OpenTK.Core.Platform.PalHandle) - commentId: M:OpenTK.Core.Platform.EventQueue.Subscribe(OpenTK.Core.Platform.PalHandle) - href: OpenTK.Core.Platform.EventQueue.html#OpenTK_Core_Platform_EventQueue_Subscribe_OpenTK_Core_Platform_PalHandle_ +- uid: OpenTK.Platform.EventQueue.Subscribe(OpenTK.Platform.PalHandle) + commentId: M:OpenTK.Platform.EventQueue.Subscribe(OpenTK.Platform.PalHandle) + href: OpenTK.Platform.EventQueue.html#OpenTK_Platform_EventQueue_Subscribe_OpenTK_Platform_PalHandle_ name: Subscribe(PalHandle) nameWithType: EventQueue.Subscribe(PalHandle) - fullName: OpenTK.Core.Platform.EventQueue.Subscribe(OpenTK.Core.Platform.PalHandle) + fullName: OpenTK.Platform.EventQueue.Subscribe(OpenTK.Platform.PalHandle) spec.csharp: - - uid: OpenTK.Core.Platform.EventQueue.Subscribe(OpenTK.Core.Platform.PalHandle) + - uid: OpenTK.Platform.EventQueue.Subscribe(OpenTK.Platform.PalHandle) name: Subscribe - href: OpenTK.Core.Platform.EventQueue.html#OpenTK_Core_Platform_EventQueue_Subscribe_OpenTK_Core_Platform_PalHandle_ + href: OpenTK.Platform.EventQueue.html#OpenTK_Platform_EventQueue_Subscribe_OpenTK_Platform_PalHandle_ - name: ( - - uid: OpenTK.Core.Platform.PalHandle + - uid: OpenTK.Platform.PalHandle name: PalHandle - href: OpenTK.Core.Platform.PalHandle.html + href: OpenTK.Platform.PalHandle.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.EventQueue.Subscribe(OpenTK.Core.Platform.PalHandle) + - uid: OpenTK.Platform.EventQueue.Subscribe(OpenTK.Platform.PalHandle) name: Subscribe - href: OpenTK.Core.Platform.EventQueue.html#OpenTK_Core_Platform_EventQueue_Subscribe_OpenTK_Core_Platform_PalHandle_ + href: OpenTK.Platform.EventQueue.html#OpenTK_Platform_EventQueue_Subscribe_OpenTK_Platform_PalHandle_ - name: ( - - uid: OpenTK.Core.Platform.PalHandle + - uid: OpenTK.Platform.PalHandle name: PalHandle - href: OpenTK.Core.Platform.PalHandle.html + href: OpenTK.Platform.PalHandle.html - name: ) -- uid: OpenTK.Core.Platform.EventQueue.Subscribe* - commentId: Overload:OpenTK.Core.Platform.EventQueue.Subscribe - href: OpenTK.Core.Platform.EventQueue.html#OpenTK_Core_Platform_EventQueue_Subscribe_OpenTK_Core_Platform_PalHandle_ +- uid: OpenTK.Platform.EventQueue.Subscribe* + commentId: Overload:OpenTK.Platform.EventQueue.Subscribe + href: OpenTK.Platform.EventQueue.html#OpenTK_Platform_EventQueue_Subscribe_OpenTK_Platform_PalHandle_ name: Subscribe nameWithType: EventQueue.Subscribe - fullName: OpenTK.Core.Platform.EventQueue.Subscribe -- uid: OpenTK.Core.Platform.EventQueue - commentId: T:OpenTK.Core.Platform.EventQueue - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.EventQueue.html + fullName: OpenTK.Platform.EventQueue.Subscribe +- uid: OpenTK.Platform.EventQueue + commentId: T:OpenTK.Platform.EventQueue + parent: OpenTK.Platform + href: OpenTK.Platform.EventQueue.html name: EventQueue nameWithType: EventQueue - fullName: OpenTK.Core.Platform.EventQueue -- uid: OpenTK.Core.Platform.EventQueue.Raise* - commentId: Overload:OpenTK.Core.Platform.EventQueue.Raise - href: OpenTK.Core.Platform.EventQueue.html#OpenTK_Core_Platform_EventQueue_Raise_OpenTK_Core_Platform_PalHandle_OpenTK_Core_Platform_PlatformEventType_System_EventArgs_ + fullName: OpenTK.Platform.EventQueue +- uid: OpenTK.Platform.EventQueue.Raise* + commentId: Overload:OpenTK.Platform.EventQueue.Raise + href: OpenTK.Platform.EventQueue.html#OpenTK_Platform_EventQueue_Raise_OpenTK_Platform_PalHandle_OpenTK_Platform_PlatformEventType_System_EventArgs_ name: Raise nameWithType: EventQueue.Raise - fullName: OpenTK.Core.Platform.EventQueue.Raise -- uid: OpenTK.Core.Platform.PlatformEventType - commentId: T:OpenTK.Core.Platform.PlatformEventType - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.PlatformEventType.html + fullName: OpenTK.Platform.EventQueue.Raise +- uid: OpenTK.Platform.PlatformEventType + commentId: T:OpenTK.Platform.PlatformEventType + parent: OpenTK.Platform + href: OpenTK.Platform.PlatformEventType.html name: PlatformEventType nameWithType: PlatformEventType - fullName: OpenTK.Core.Platform.PlatformEventType + fullName: OpenTK.Platform.PlatformEventType - uid: System.EventArgs commentId: T:System.EventArgs parent: System diff --git a/api/OpenTK.Core.Platform.FileDropEventArgs.yml b/api/OpenTK.Platform.FileDropEventArgs.yml similarity index 73% rename from api/OpenTK.Core.Platform.FileDropEventArgs.yml rename to api/OpenTK.Platform.FileDropEventArgs.yml index e98bc9b6..e1459cfc 100644 --- a/api/OpenTK.Core.Platform.FileDropEventArgs.yml +++ b/api/OpenTK.Platform.FileDropEventArgs.yml @@ -1,31 +1,27 @@ ### YamlMime:ManagedReference items: -- uid: OpenTK.Core.Platform.FileDropEventArgs - commentId: T:OpenTK.Core.Platform.FileDropEventArgs +- uid: OpenTK.Platform.FileDropEventArgs + commentId: T:OpenTK.Platform.FileDropEventArgs id: FileDropEventArgs - parent: OpenTK.Core.Platform + parent: OpenTK.Platform children: - - OpenTK.Core.Platform.FileDropEventArgs.#ctor(OpenTK.Core.Platform.WindowHandle,System.Collections.Generic.IReadOnlyList{System.String},OpenTK.Mathematics.Vector2i) - - OpenTK.Core.Platform.FileDropEventArgs.FilePaths - - OpenTK.Core.Platform.FileDropEventArgs.Position + - OpenTK.Platform.FileDropEventArgs.#ctor(OpenTK.Platform.WindowHandle,System.Collections.Generic.IReadOnlyList{System.String},OpenTK.Mathematics.Vector2i) + - OpenTK.Platform.FileDropEventArgs.FilePaths + - OpenTK.Platform.FileDropEventArgs.Position langs: - csharp - vb name: FileDropEventArgs nameWithType: FileDropEventArgs - fullName: OpenTK.Core.Platform.FileDropEventArgs + fullName: OpenTK.Platform.FileDropEventArgs type: Class source: - remote: - path: src/OpenTK.Core/Platform/WindowEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: FileDropEventArgs - path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs - startLine: 535 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\WindowEventArgs.cs + startLine: 559 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform + - OpenTK.Platform + namespace: OpenTK.Platform summary: This event is triggered when a user drags files into a window. example: [] syntax: @@ -34,9 +30,9 @@ items: inheritance: - System.Object - System.EventArgs - - OpenTK.Core.Platform.WindowEventArgs + - OpenTK.Platform.WindowEventArgs inheritedMembers: - - OpenTK.Core.Platform.WindowEventArgs.Window + - OpenTK.Platform.WindowEventArgs.Window - System.EventArgs.Empty - System.Object.Equals(System.Object) - System.Object.Equals(System.Object,System.Object) @@ -45,28 +41,24 @@ items: - System.Object.MemberwiseClone - System.Object.ReferenceEquals(System.Object,System.Object) - System.Object.ToString -- uid: OpenTK.Core.Platform.FileDropEventArgs.FilePaths - commentId: P:OpenTK.Core.Platform.FileDropEventArgs.FilePaths +- uid: OpenTK.Platform.FileDropEventArgs.FilePaths + commentId: P:OpenTK.Platform.FileDropEventArgs.FilePaths id: FilePaths - parent: OpenTK.Core.Platform.FileDropEventArgs + parent: OpenTK.Platform.FileDropEventArgs langs: - csharp - vb name: FilePaths nameWithType: FileDropEventArgs.FilePaths - fullName: OpenTK.Core.Platform.FileDropEventArgs.FilePaths + fullName: OpenTK.Platform.FileDropEventArgs.FilePaths type: Property source: - remote: - path: src/OpenTK.Core/Platform/WindowEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: FilePaths - path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs - startLine: 540 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\WindowEventArgs.cs + startLine: 564 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform + - OpenTK.Platform + namespace: OpenTK.Platform summary: A list of file paths that represent the files the user dragged into the window. example: [] syntax: @@ -75,29 +67,25 @@ items: return: type: System.Collections.Generic.IReadOnlyList{System.String} content.vb: Public Property FilePaths As IReadOnlyList(Of String) - overload: OpenTK.Core.Platform.FileDropEventArgs.FilePaths* -- uid: OpenTK.Core.Platform.FileDropEventArgs.Position - commentId: P:OpenTK.Core.Platform.FileDropEventArgs.Position + overload: OpenTK.Platform.FileDropEventArgs.FilePaths* +- uid: OpenTK.Platform.FileDropEventArgs.Position + commentId: P:OpenTK.Platform.FileDropEventArgs.Position id: Position - parent: OpenTK.Core.Platform.FileDropEventArgs + parent: OpenTK.Platform.FileDropEventArgs langs: - csharp - vb name: Position nameWithType: FileDropEventArgs.Position - fullName: OpenTK.Core.Platform.FileDropEventArgs.Position + fullName: OpenTK.Platform.FileDropEventArgs.Position type: Property source: - remote: - path: src/OpenTK.Core/Platform/WindowEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Position - path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs - startLine: 545 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\WindowEventArgs.cs + startLine: 569 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform + - OpenTK.Platform + namespace: OpenTK.Platform summary: The position within the window that the user dropped the files. example: [] syntax: @@ -106,36 +94,32 @@ items: return: type: OpenTK.Mathematics.Vector2i content.vb: Public Property Position As Vector2i - overload: OpenTK.Core.Platform.FileDropEventArgs.Position* -- uid: OpenTK.Core.Platform.FileDropEventArgs.#ctor(OpenTK.Core.Platform.WindowHandle,System.Collections.Generic.IReadOnlyList{System.String},OpenTK.Mathematics.Vector2i) - commentId: M:OpenTK.Core.Platform.FileDropEventArgs.#ctor(OpenTK.Core.Platform.WindowHandle,System.Collections.Generic.IReadOnlyList{System.String},OpenTK.Mathematics.Vector2i) - id: '#ctor(OpenTK.Core.Platform.WindowHandle,System.Collections.Generic.IReadOnlyList{System.String},OpenTK.Mathematics.Vector2i)' - parent: OpenTK.Core.Platform.FileDropEventArgs + overload: OpenTK.Platform.FileDropEventArgs.Position* +- uid: OpenTK.Platform.FileDropEventArgs.#ctor(OpenTK.Platform.WindowHandle,System.Collections.Generic.IReadOnlyList{System.String},OpenTK.Mathematics.Vector2i) + commentId: M:OpenTK.Platform.FileDropEventArgs.#ctor(OpenTK.Platform.WindowHandle,System.Collections.Generic.IReadOnlyList{System.String},OpenTK.Mathematics.Vector2i) + id: '#ctor(OpenTK.Platform.WindowHandle,System.Collections.Generic.IReadOnlyList{System.String},OpenTK.Mathematics.Vector2i)' + parent: OpenTK.Platform.FileDropEventArgs langs: - csharp - vb name: FileDropEventArgs(WindowHandle, IReadOnlyList, Vector2i) nameWithType: FileDropEventArgs.FileDropEventArgs(WindowHandle, IReadOnlyList, Vector2i) - fullName: OpenTK.Core.Platform.FileDropEventArgs.FileDropEventArgs(OpenTK.Core.Platform.WindowHandle, System.Collections.Generic.IReadOnlyList, OpenTK.Mathematics.Vector2i) + fullName: OpenTK.Platform.FileDropEventArgs.FileDropEventArgs(OpenTK.Platform.WindowHandle, System.Collections.Generic.IReadOnlyList, OpenTK.Mathematics.Vector2i) type: Constructor source: - remote: - path: src/OpenTK.Core/Platform/WindowEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs - startLine: 553 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\WindowEventArgs.cs + startLine: 577 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Initializes a new instance of the class. + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Initializes a new instance of the class. example: [] syntax: content: public FileDropEventArgs(WindowHandle window, IReadOnlyList filePaths, Vector2i position) parameters: - id: window - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: The window where files where drag-and-dropped in. - id: filePaths type: System.Collections.Generic.IReadOnlyList{System.String} @@ -144,41 +128,33 @@ items: type: OpenTK.Mathematics.Vector2i description: The position in the window where the files where dropped. content.vb: Public Sub New(window As WindowHandle, filePaths As IReadOnlyList(Of String), position As Vector2i) - overload: OpenTK.Core.Platform.FileDropEventArgs.#ctor* + overload: OpenTK.Platform.FileDropEventArgs.#ctor* nameWithType.vb: FileDropEventArgs.New(WindowHandle, IReadOnlyList(Of String), Vector2i) - fullName.vb: OpenTK.Core.Platform.FileDropEventArgs.New(OpenTK.Core.Platform.WindowHandle, System.Collections.Generic.IReadOnlyList(Of String), OpenTK.Mathematics.Vector2i) + fullName.vb: OpenTK.Platform.FileDropEventArgs.New(OpenTK.Platform.WindowHandle, System.Collections.Generic.IReadOnlyList(Of String), OpenTK.Mathematics.Vector2i) name.vb: New(WindowHandle, IReadOnlyList(Of String), Vector2i) references: -- uid: OpenTK.Core.Platform - commentId: N:OpenTK.Core.Platform +- uid: OpenTK.Platform + commentId: N:OpenTK.Platform href: OpenTK.html - name: OpenTK.Core.Platform - nameWithType: OpenTK.Core.Platform - fullName: OpenTK.Core.Platform + name: OpenTK.Platform + nameWithType: OpenTK.Platform + fullName: OpenTK.Platform spec.csharp: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html spec.vb: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html - uid: System.Object commentId: T:System.Object parent: System @@ -198,20 +174,20 @@ references: name: EventArgs nameWithType: EventArgs fullName: System.EventArgs -- uid: OpenTK.Core.Platform.WindowEventArgs - commentId: T:OpenTK.Core.Platform.WindowEventArgs - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.WindowEventArgs.html +- uid: OpenTK.Platform.WindowEventArgs + commentId: T:OpenTK.Platform.WindowEventArgs + parent: OpenTK.Platform + href: OpenTK.Platform.WindowEventArgs.html name: WindowEventArgs nameWithType: WindowEventArgs - fullName: OpenTK.Core.Platform.WindowEventArgs -- uid: OpenTK.Core.Platform.WindowEventArgs.Window - commentId: P:OpenTK.Core.Platform.WindowEventArgs.Window - parent: OpenTK.Core.Platform.WindowEventArgs - href: OpenTK.Core.Platform.WindowEventArgs.html#OpenTK_Core_Platform_WindowEventArgs_Window + fullName: OpenTK.Platform.WindowEventArgs +- uid: OpenTK.Platform.WindowEventArgs.Window + commentId: P:OpenTK.Platform.WindowEventArgs.Window + parent: OpenTK.Platform.WindowEventArgs + href: OpenTK.Platform.WindowEventArgs.html#OpenTK_Platform_WindowEventArgs_Window name: Window nameWithType: WindowEventArgs.Window - fullName: OpenTK.Core.Platform.WindowEventArgs.Window + fullName: OpenTK.Platform.WindowEventArgs.Window - uid: System.EventArgs.Empty commentId: F:System.EventArgs.Empty parent: System.EventArgs @@ -446,12 +422,12 @@ references: name: System nameWithType: System fullName: System -- uid: OpenTK.Core.Platform.FileDropEventArgs.FilePaths* - commentId: Overload:OpenTK.Core.Platform.FileDropEventArgs.FilePaths - href: OpenTK.Core.Platform.FileDropEventArgs.html#OpenTK_Core_Platform_FileDropEventArgs_FilePaths +- uid: OpenTK.Platform.FileDropEventArgs.FilePaths* + commentId: Overload:OpenTK.Platform.FileDropEventArgs.FilePaths + href: OpenTK.Platform.FileDropEventArgs.html#OpenTK_Platform_FileDropEventArgs_FilePaths name: FilePaths nameWithType: FileDropEventArgs.FilePaths - fullName: OpenTK.Core.Platform.FileDropEventArgs.FilePaths + fullName: OpenTK.Platform.FileDropEventArgs.FilePaths - uid: System.Collections.Generic.IReadOnlyList{System.String} commentId: T:System.Collections.Generic.IReadOnlyList{System.String} parent: System.Collections.Generic @@ -552,12 +528,12 @@ references: name: Generic isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic -- uid: OpenTK.Core.Platform.FileDropEventArgs.Position* - commentId: Overload:OpenTK.Core.Platform.FileDropEventArgs.Position - href: OpenTK.Core.Platform.FileDropEventArgs.html#OpenTK_Core_Platform_FileDropEventArgs_Position +- uid: OpenTK.Platform.FileDropEventArgs.Position* + commentId: Overload:OpenTK.Platform.FileDropEventArgs.Position + href: OpenTK.Platform.FileDropEventArgs.html#OpenTK_Platform_FileDropEventArgs_Position name: Position nameWithType: FileDropEventArgs.Position - fullName: OpenTK.Core.Platform.FileDropEventArgs.Position + fullName: OpenTK.Platform.FileDropEventArgs.Position - uid: OpenTK.Mathematics.Vector2i commentId: T:OpenTK.Mathematics.Vector2i parent: OpenTK.Mathematics @@ -587,25 +563,25 @@ references: - uid: OpenTK.Mathematics name: Mathematics href: OpenTK.Mathematics.html -- uid: OpenTK.Core.Platform.FileDropEventArgs - commentId: T:OpenTK.Core.Platform.FileDropEventArgs - href: OpenTK.Core.Platform.FileDropEventArgs.html +- uid: OpenTK.Platform.FileDropEventArgs + commentId: T:OpenTK.Platform.FileDropEventArgs + href: OpenTK.Platform.FileDropEventArgs.html name: FileDropEventArgs nameWithType: FileDropEventArgs - fullName: OpenTK.Core.Platform.FileDropEventArgs -- uid: OpenTK.Core.Platform.FileDropEventArgs.#ctor* - commentId: Overload:OpenTK.Core.Platform.FileDropEventArgs.#ctor - href: OpenTK.Core.Platform.FileDropEventArgs.html#OpenTK_Core_Platform_FileDropEventArgs__ctor_OpenTK_Core_Platform_WindowHandle_System_Collections_Generic_IReadOnlyList_System_String__OpenTK_Mathematics_Vector2i_ + fullName: OpenTK.Platform.FileDropEventArgs +- uid: OpenTK.Platform.FileDropEventArgs.#ctor* + commentId: Overload:OpenTK.Platform.FileDropEventArgs.#ctor + href: OpenTK.Platform.FileDropEventArgs.html#OpenTK_Platform_FileDropEventArgs__ctor_OpenTK_Platform_WindowHandle_System_Collections_Generic_IReadOnlyList_System_String__OpenTK_Mathematics_Vector2i_ name: FileDropEventArgs nameWithType: FileDropEventArgs.FileDropEventArgs - fullName: OpenTK.Core.Platform.FileDropEventArgs.FileDropEventArgs + fullName: OpenTK.Platform.FileDropEventArgs.FileDropEventArgs nameWithType.vb: FileDropEventArgs.New - fullName.vb: OpenTK.Core.Platform.FileDropEventArgs.New + fullName.vb: OpenTK.Platform.FileDropEventArgs.New name.vb: New -- uid: OpenTK.Core.Platform.WindowHandle - commentId: T:OpenTK.Core.Platform.WindowHandle - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.WindowHandle.html +- uid: OpenTK.Platform.WindowHandle + commentId: T:OpenTK.Platform.WindowHandle + parent: OpenTK.Platform + href: OpenTK.Platform.WindowHandle.html name: WindowHandle nameWithType: WindowHandle - fullName: OpenTK.Core.Platform.WindowHandle + fullName: OpenTK.Platform.WindowHandle diff --git a/api/OpenTK.Core.Platform.FocusEventArgs.yml b/api/OpenTK.Platform.FocusEventArgs.yml similarity index 72% rename from api/OpenTK.Core.Platform.FocusEventArgs.yml rename to api/OpenTK.Platform.FocusEventArgs.yml index 46478359..a284b36a 100644 --- a/api/OpenTK.Core.Platform.FocusEventArgs.yml +++ b/api/OpenTK.Platform.FocusEventArgs.yml @@ -1,30 +1,26 @@ ### YamlMime:ManagedReference items: -- uid: OpenTK.Core.Platform.FocusEventArgs - commentId: T:OpenTK.Core.Platform.FocusEventArgs +- uid: OpenTK.Platform.FocusEventArgs + commentId: T:OpenTK.Platform.FocusEventArgs id: FocusEventArgs - parent: OpenTK.Core.Platform + parent: OpenTK.Platform children: - - OpenTK.Core.Platform.FocusEventArgs.#ctor(OpenTK.Core.Platform.WindowHandle,System.Boolean) - - OpenTK.Core.Platform.FocusEventArgs.GotFocus + - OpenTK.Platform.FocusEventArgs.#ctor(OpenTK.Platform.WindowHandle,System.Boolean) + - OpenTK.Platform.FocusEventArgs.GotFocus langs: - csharp - vb name: FocusEventArgs nameWithType: FocusEventArgs - fullName: OpenTK.Core.Platform.FocusEventArgs + fullName: OpenTK.Platform.FocusEventArgs type: Class source: - remote: - path: src/OpenTK.Core/Platform/WindowEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: FocusEventArgs - path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\WindowEventArgs.cs startLine: 33 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform + - OpenTK.Platform + namespace: OpenTK.Platform summary: This event is triggered when a window gets or loses input focus. example: [] syntax: @@ -33,9 +29,9 @@ items: inheritance: - System.Object - System.EventArgs - - OpenTK.Core.Platform.WindowEventArgs + - OpenTK.Platform.WindowEventArgs inheritedMembers: - - OpenTK.Core.Platform.WindowEventArgs.Window + - OpenTK.Platform.WindowEventArgs.Window - System.EventArgs.Empty - System.Object.Equals(System.Object) - System.Object.Equals(System.Object,System.Object) @@ -44,28 +40,24 @@ items: - System.Object.MemberwiseClone - System.Object.ReferenceEquals(System.Object,System.Object) - System.Object.ToString -- uid: OpenTK.Core.Platform.FocusEventArgs.GotFocus - commentId: P:OpenTK.Core.Platform.FocusEventArgs.GotFocus +- uid: OpenTK.Platform.FocusEventArgs.GotFocus + commentId: P:OpenTK.Platform.FocusEventArgs.GotFocus id: GotFocus - parent: OpenTK.Core.Platform.FocusEventArgs + parent: OpenTK.Platform.FocusEventArgs langs: - csharp - vb name: GotFocus nameWithType: FocusEventArgs.GotFocus - fullName: OpenTK.Core.Platform.FocusEventArgs.GotFocus + fullName: OpenTK.Platform.FocusEventArgs.GotFocus type: Property source: - remote: - path: src/OpenTK.Core/Platform/WindowEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GotFocus - path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\WindowEventArgs.cs startLine: 42 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform + - OpenTK.Platform + namespace: OpenTK.Platform summary: If the window got or lost focus. example: [] syntax: @@ -74,76 +66,64 @@ items: return: type: System.Boolean content.vb: Public Property GotFocus As Boolean - overload: OpenTK.Core.Platform.FocusEventArgs.GotFocus* -- uid: OpenTK.Core.Platform.FocusEventArgs.#ctor(OpenTK.Core.Platform.WindowHandle,System.Boolean) - commentId: M:OpenTK.Core.Platform.FocusEventArgs.#ctor(OpenTK.Core.Platform.WindowHandle,System.Boolean) - id: '#ctor(OpenTK.Core.Platform.WindowHandle,System.Boolean)' - parent: OpenTK.Core.Platform.FocusEventArgs + overload: OpenTK.Platform.FocusEventArgs.GotFocus* +- uid: OpenTK.Platform.FocusEventArgs.#ctor(OpenTK.Platform.WindowHandle,System.Boolean) + commentId: M:OpenTK.Platform.FocusEventArgs.#ctor(OpenTK.Platform.WindowHandle,System.Boolean) + id: '#ctor(OpenTK.Platform.WindowHandle,System.Boolean)' + parent: OpenTK.Platform.FocusEventArgs langs: - csharp - vb name: FocusEventArgs(WindowHandle, bool) nameWithType: FocusEventArgs.FocusEventArgs(WindowHandle, bool) - fullName: OpenTK.Core.Platform.FocusEventArgs.FocusEventArgs(OpenTK.Core.Platform.WindowHandle, bool) + fullName: OpenTK.Platform.FocusEventArgs.FocusEventArgs(OpenTK.Platform.WindowHandle, bool) type: Constructor source: - remote: - path: src/OpenTK.Core/Platform/WindowEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\WindowEventArgs.cs startLine: 49 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Initializes a new instance of the class. + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Initializes a new instance of the class. example: [] syntax: content: public FocusEventArgs(WindowHandle window, bool gotFocus) parameters: - id: window - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: The window that got or lost focus. - id: gotFocus type: System.Boolean description: If the window got focus. content.vb: Public Sub New(window As WindowHandle, gotFocus As Boolean) - overload: OpenTK.Core.Platform.FocusEventArgs.#ctor* + overload: OpenTK.Platform.FocusEventArgs.#ctor* nameWithType.vb: FocusEventArgs.New(WindowHandle, Boolean) - fullName.vb: OpenTK.Core.Platform.FocusEventArgs.New(OpenTK.Core.Platform.WindowHandle, Boolean) + fullName.vb: OpenTK.Platform.FocusEventArgs.New(OpenTK.Platform.WindowHandle, Boolean) name.vb: New(WindowHandle, Boolean) references: -- uid: OpenTK.Core.Platform - commentId: N:OpenTK.Core.Platform +- uid: OpenTK.Platform + commentId: N:OpenTK.Platform href: OpenTK.html - name: OpenTK.Core.Platform - nameWithType: OpenTK.Core.Platform - fullName: OpenTK.Core.Platform + name: OpenTK.Platform + nameWithType: OpenTK.Platform + fullName: OpenTK.Platform spec.csharp: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html spec.vb: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html - uid: System.Object commentId: T:System.Object parent: System @@ -163,20 +143,20 @@ references: name: EventArgs nameWithType: EventArgs fullName: System.EventArgs -- uid: OpenTK.Core.Platform.WindowEventArgs - commentId: T:OpenTK.Core.Platform.WindowEventArgs - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.WindowEventArgs.html +- uid: OpenTK.Platform.WindowEventArgs + commentId: T:OpenTK.Platform.WindowEventArgs + parent: OpenTK.Platform + href: OpenTK.Platform.WindowEventArgs.html name: WindowEventArgs nameWithType: WindowEventArgs - fullName: OpenTK.Core.Platform.WindowEventArgs -- uid: OpenTK.Core.Platform.WindowEventArgs.Window - commentId: P:OpenTK.Core.Platform.WindowEventArgs.Window - parent: OpenTK.Core.Platform.WindowEventArgs - href: OpenTK.Core.Platform.WindowEventArgs.html#OpenTK_Core_Platform_WindowEventArgs_Window + fullName: OpenTK.Platform.WindowEventArgs +- uid: OpenTK.Platform.WindowEventArgs.Window + commentId: P:OpenTK.Platform.WindowEventArgs.Window + parent: OpenTK.Platform.WindowEventArgs + href: OpenTK.Platform.WindowEventArgs.html#OpenTK_Platform_WindowEventArgs_Window name: Window nameWithType: WindowEventArgs.Window - fullName: OpenTK.Core.Platform.WindowEventArgs.Window + fullName: OpenTK.Platform.WindowEventArgs.Window - uid: System.EventArgs.Empty commentId: F:System.EventArgs.Empty parent: System.EventArgs @@ -411,12 +391,12 @@ references: name: System nameWithType: System fullName: System -- uid: OpenTK.Core.Platform.FocusEventArgs.GotFocus* - commentId: Overload:OpenTK.Core.Platform.FocusEventArgs.GotFocus - href: OpenTK.Core.Platform.FocusEventArgs.html#OpenTK_Core_Platform_FocusEventArgs_GotFocus +- uid: OpenTK.Platform.FocusEventArgs.GotFocus* + commentId: Overload:OpenTK.Platform.FocusEventArgs.GotFocus + href: OpenTK.Platform.FocusEventArgs.html#OpenTK_Platform_FocusEventArgs_GotFocus name: GotFocus nameWithType: FocusEventArgs.GotFocus - fullName: OpenTK.Core.Platform.FocusEventArgs.GotFocus + fullName: OpenTK.Platform.FocusEventArgs.GotFocus - uid: System.Boolean commentId: T:System.Boolean parent: System @@ -428,25 +408,25 @@ references: nameWithType.vb: Boolean fullName.vb: Boolean name.vb: Boolean -- uid: OpenTK.Core.Platform.FocusEventArgs - commentId: T:OpenTK.Core.Platform.FocusEventArgs - href: OpenTK.Core.Platform.FocusEventArgs.html +- uid: OpenTK.Platform.FocusEventArgs + commentId: T:OpenTK.Platform.FocusEventArgs + href: OpenTK.Platform.FocusEventArgs.html name: FocusEventArgs nameWithType: FocusEventArgs - fullName: OpenTK.Core.Platform.FocusEventArgs -- uid: OpenTK.Core.Platform.FocusEventArgs.#ctor* - commentId: Overload:OpenTK.Core.Platform.FocusEventArgs.#ctor - href: OpenTK.Core.Platform.FocusEventArgs.html#OpenTK_Core_Platform_FocusEventArgs__ctor_OpenTK_Core_Platform_WindowHandle_System_Boolean_ + fullName: OpenTK.Platform.FocusEventArgs +- uid: OpenTK.Platform.FocusEventArgs.#ctor* + commentId: Overload:OpenTK.Platform.FocusEventArgs.#ctor + href: OpenTK.Platform.FocusEventArgs.html#OpenTK_Platform_FocusEventArgs__ctor_OpenTK_Platform_WindowHandle_System_Boolean_ name: FocusEventArgs nameWithType: FocusEventArgs.FocusEventArgs - fullName: OpenTK.Core.Platform.FocusEventArgs.FocusEventArgs + fullName: OpenTK.Platform.FocusEventArgs.FocusEventArgs nameWithType.vb: FocusEventArgs.New - fullName.vb: OpenTK.Core.Platform.FocusEventArgs.New + fullName.vb: OpenTK.Platform.FocusEventArgs.New name.vb: New -- uid: OpenTK.Core.Platform.WindowHandle - commentId: T:OpenTK.Core.Platform.WindowHandle - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.WindowHandle.html +- uid: OpenTK.Platform.WindowHandle + commentId: T:OpenTK.Platform.WindowHandle + parent: OpenTK.Platform + href: OpenTK.Platform.WindowHandle.html name: WindowHandle nameWithType: WindowHandle - fullName: OpenTK.Core.Platform.WindowHandle + fullName: OpenTK.Platform.WindowHandle diff --git a/api/OpenTK.Core.Platform.GamepadBatteryInfo.yml b/api/OpenTK.Platform.GamepadBatteryInfo.yml similarity index 71% rename from api/OpenTK.Core.Platform.GamepadBatteryInfo.yml rename to api/OpenTK.Platform.GamepadBatteryInfo.yml index 2183b1fb..8d4f477e 100644 --- a/api/OpenTK.Core.Platform.GamepadBatteryInfo.yml +++ b/api/OpenTK.Platform.GamepadBatteryInfo.yml @@ -1,31 +1,27 @@ ### YamlMime:ManagedReference items: -- uid: OpenTK.Core.Platform.GamepadBatteryInfo - commentId: T:OpenTK.Core.Platform.GamepadBatteryInfo +- uid: OpenTK.Platform.GamepadBatteryInfo + commentId: T:OpenTK.Platform.GamepadBatteryInfo id: GamepadBatteryInfo - parent: OpenTK.Core.Platform + parent: OpenTK.Platform children: - - OpenTK.Core.Platform.GamepadBatteryInfo.#ctor(OpenTK.Core.Platform.GamepadBatteryType,System.Single) - - OpenTK.Core.Platform.GamepadBatteryInfo.BatteryType - - OpenTK.Core.Platform.GamepadBatteryInfo.ChargeLevel + - OpenTK.Platform.GamepadBatteryInfo.#ctor(OpenTK.Platform.GamepadBatteryType,System.Single) + - OpenTK.Platform.GamepadBatteryInfo.BatteryType + - OpenTK.Platform.GamepadBatteryInfo.ChargeLevel langs: - csharp - vb name: GamepadBatteryInfo nameWithType: GamepadBatteryInfo - fullName: OpenTK.Core.Platform.GamepadBatteryInfo + fullName: OpenTK.Platform.GamepadBatteryInfo type: Struct source: - remote: - path: src/OpenTK.Core/Platform/GamepadBatteryInfo.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GamepadBatteryInfo - path: opentk/src/OpenTK.Core/Platform/GamepadBatteryInfo.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\GamepadBatteryInfo.cs startLine: 37 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform + - OpenTK.Platform + namespace: OpenTK.Platform summary: Contains information about a gamepads battery. example: [] syntax: @@ -38,57 +34,49 @@ items: - System.Object.Equals(System.Object,System.Object) - System.Object.GetType - System.Object.ReferenceEquals(System.Object,System.Object) -- uid: OpenTK.Core.Platform.GamepadBatteryInfo.BatteryType - commentId: F:OpenTK.Core.Platform.GamepadBatteryInfo.BatteryType +- uid: OpenTK.Platform.GamepadBatteryInfo.BatteryType + commentId: F:OpenTK.Platform.GamepadBatteryInfo.BatteryType id: BatteryType - parent: OpenTK.Core.Platform.GamepadBatteryInfo + parent: OpenTK.Platform.GamepadBatteryInfo langs: - csharp - vb name: BatteryType nameWithType: GamepadBatteryInfo.BatteryType - fullName: OpenTK.Core.Platform.GamepadBatteryInfo.BatteryType + fullName: OpenTK.Platform.GamepadBatteryInfo.BatteryType type: Field source: - remote: - path: src/OpenTK.Core/Platform/GamepadBatteryInfo.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: BatteryType - path: opentk/src/OpenTK.Core/Platform/GamepadBatteryInfo.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\GamepadBatteryInfo.cs startLine: 42 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform + - OpenTK.Platform + namespace: OpenTK.Platform summary: The type of battery contained in the gamepad. example: [] syntax: content: public GamepadBatteryType BatteryType return: - type: OpenTK.Core.Platform.GamepadBatteryType + type: OpenTK.Platform.GamepadBatteryType content.vb: Public BatteryType As GamepadBatteryType -- uid: OpenTK.Core.Platform.GamepadBatteryInfo.ChargeLevel - commentId: F:OpenTK.Core.Platform.GamepadBatteryInfo.ChargeLevel +- uid: OpenTK.Platform.GamepadBatteryInfo.ChargeLevel + commentId: F:OpenTK.Platform.GamepadBatteryInfo.ChargeLevel id: ChargeLevel - parent: OpenTK.Core.Platform.GamepadBatteryInfo + parent: OpenTK.Platform.GamepadBatteryInfo langs: - csharp - vb name: ChargeLevel nameWithType: GamepadBatteryInfo.ChargeLevel - fullName: OpenTK.Core.Platform.GamepadBatteryInfo.ChargeLevel + fullName: OpenTK.Platform.GamepadBatteryInfo.ChargeLevel type: Field source: - remote: - path: src/OpenTK.Core/Platform/GamepadBatteryInfo.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ChargeLevel - path: opentk/src/OpenTK.Core/Platform/GamepadBatteryInfo.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\GamepadBatteryInfo.cs startLine: 50 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform + - OpenTK.Platform + namespace: OpenTK.Platform summary: The level of charge of the gamepad battery. In the range [0, 1], where 0 represents empty and 1 represents full. remarks: On Windows this value will only change in four steps, 0.0, 0.333..., 0.666..., and 1.0. Representing Empty, Low, Medium, and Full. example: [] @@ -97,75 +85,63 @@ items: return: type: System.Single content.vb: Public ChargeLevel As Single -- uid: OpenTK.Core.Platform.GamepadBatteryInfo.#ctor(OpenTK.Core.Platform.GamepadBatteryType,System.Single) - commentId: M:OpenTK.Core.Platform.GamepadBatteryInfo.#ctor(OpenTK.Core.Platform.GamepadBatteryType,System.Single) - id: '#ctor(OpenTK.Core.Platform.GamepadBatteryType,System.Single)' - parent: OpenTK.Core.Platform.GamepadBatteryInfo +- uid: OpenTK.Platform.GamepadBatteryInfo.#ctor(OpenTK.Platform.GamepadBatteryType,System.Single) + commentId: M:OpenTK.Platform.GamepadBatteryInfo.#ctor(OpenTK.Platform.GamepadBatteryType,System.Single) + id: '#ctor(OpenTK.Platform.GamepadBatteryType,System.Single)' + parent: OpenTK.Platform.GamepadBatteryInfo langs: - csharp - vb name: GamepadBatteryInfo(GamepadBatteryType, float) nameWithType: GamepadBatteryInfo.GamepadBatteryInfo(GamepadBatteryType, float) - fullName: OpenTK.Core.Platform.GamepadBatteryInfo.GamepadBatteryInfo(OpenTK.Core.Platform.GamepadBatteryType, float) + fullName: OpenTK.Platform.GamepadBatteryInfo.GamepadBatteryInfo(OpenTK.Platform.GamepadBatteryType, float) type: Constructor source: - remote: - path: src/OpenTK.Core/Platform/GamepadBatteryInfo.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Core/Platform/GamepadBatteryInfo.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\GamepadBatteryInfo.cs startLine: 57 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Initializes a new instance of the struct. + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Initializes a new instance of the struct. example: [] syntax: content: public GamepadBatteryInfo(GamepadBatteryType batteryType, float chargeLevel) parameters: - id: batteryType - type: OpenTK.Core.Platform.GamepadBatteryType + type: OpenTK.Platform.GamepadBatteryType description: The type of battery contained in the gamepad. - id: chargeLevel type: System.Single description: The level of charge of the battery. content.vb: Public Sub New(batteryType As GamepadBatteryType, chargeLevel As Single) - overload: OpenTK.Core.Platform.GamepadBatteryInfo.#ctor* + overload: OpenTK.Platform.GamepadBatteryInfo.#ctor* nameWithType.vb: GamepadBatteryInfo.New(GamepadBatteryType, Single) - fullName.vb: OpenTK.Core.Platform.GamepadBatteryInfo.New(OpenTK.Core.Platform.GamepadBatteryType, Single) + fullName.vb: OpenTK.Platform.GamepadBatteryInfo.New(OpenTK.Platform.GamepadBatteryType, Single) name.vb: New(GamepadBatteryType, Single) references: -- uid: OpenTK.Core.Platform - commentId: N:OpenTK.Core.Platform +- uid: OpenTK.Platform + commentId: N:OpenTK.Platform href: OpenTK.html - name: OpenTK.Core.Platform - nameWithType: OpenTK.Core.Platform - fullName: OpenTK.Core.Platform + name: OpenTK.Platform + nameWithType: OpenTK.Platform + fullName: OpenTK.Platform spec.csharp: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html spec.vb: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html - uid: System.ValueType.Equals(System.Object) commentId: M:System.ValueType.Equals(System.Object) parent: System.ValueType @@ -383,13 +359,13 @@ references: name: System nameWithType: System fullName: System -- uid: OpenTK.Core.Platform.GamepadBatteryType - commentId: T:OpenTK.Core.Platform.GamepadBatteryType - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.GamepadBatteryType.html +- uid: OpenTK.Platform.GamepadBatteryType + commentId: T:OpenTK.Platform.GamepadBatteryType + parent: OpenTK.Platform + href: OpenTK.Platform.GamepadBatteryType.html name: GamepadBatteryType nameWithType: GamepadBatteryType - fullName: OpenTK.Core.Platform.GamepadBatteryType + fullName: OpenTK.Platform.GamepadBatteryType - uid: System.Single commentId: T:System.Single parent: System @@ -401,19 +377,19 @@ references: nameWithType.vb: Single fullName.vb: Single name.vb: Single -- uid: OpenTK.Core.Platform.GamepadBatteryInfo - commentId: T:OpenTK.Core.Platform.GamepadBatteryInfo - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.GamepadBatteryInfo.html +- uid: OpenTK.Platform.GamepadBatteryInfo + commentId: T:OpenTK.Platform.GamepadBatteryInfo + parent: OpenTK.Platform + href: OpenTK.Platform.GamepadBatteryInfo.html name: GamepadBatteryInfo nameWithType: GamepadBatteryInfo - fullName: OpenTK.Core.Platform.GamepadBatteryInfo -- uid: OpenTK.Core.Platform.GamepadBatteryInfo.#ctor* - commentId: Overload:OpenTK.Core.Platform.GamepadBatteryInfo.#ctor - href: OpenTK.Core.Platform.GamepadBatteryInfo.html#OpenTK_Core_Platform_GamepadBatteryInfo__ctor_OpenTK_Core_Platform_GamepadBatteryType_System_Single_ + fullName: OpenTK.Platform.GamepadBatteryInfo +- uid: OpenTK.Platform.GamepadBatteryInfo.#ctor* + commentId: Overload:OpenTK.Platform.GamepadBatteryInfo.#ctor + href: OpenTK.Platform.GamepadBatteryInfo.html#OpenTK_Platform_GamepadBatteryInfo__ctor_OpenTK_Platform_GamepadBatteryType_System_Single_ name: GamepadBatteryInfo nameWithType: GamepadBatteryInfo.GamepadBatteryInfo - fullName: OpenTK.Core.Platform.GamepadBatteryInfo.GamepadBatteryInfo + fullName: OpenTK.Platform.GamepadBatteryInfo.GamepadBatteryInfo nameWithType.vb: GamepadBatteryInfo.New - fullName.vb: OpenTK.Core.Platform.GamepadBatteryInfo.New + fullName.vb: OpenTK.Platform.GamepadBatteryInfo.New name.vb: New diff --git a/api/OpenTK.Platform.GamepadBatteryType.yml b/api/OpenTK.Platform.GamepadBatteryType.yml new file mode 100644 index 00000000..bcefd45d --- /dev/null +++ b/api/OpenTK.Platform.GamepadBatteryType.yml @@ -0,0 +1,156 @@ +### YamlMime:ManagedReference +items: +- uid: OpenTK.Platform.GamepadBatteryType + commentId: T:OpenTK.Platform.GamepadBatteryType + id: GamepadBatteryType + parent: OpenTK.Platform + children: + - OpenTK.Platform.GamepadBatteryType.Alkaline + - OpenTK.Platform.GamepadBatteryType.NiMH + - OpenTK.Platform.GamepadBatteryType.Unknown + - OpenTK.Platform.GamepadBatteryType.Wired + langs: + - csharp + - vb + name: GamepadBatteryType + nameWithType: GamepadBatteryType + fullName: OpenTK.Platform.GamepadBatteryType + type: Enum + source: + id: GamepadBatteryType + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\GamepadBatteryInfo.cs + startLine: 11 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Represents a type of battery in a gamepad. + example: [] + syntax: + content: public enum GamepadBatteryType + content.vb: Public Enum GamepadBatteryType +- uid: OpenTK.Platform.GamepadBatteryType.Unknown + commentId: F:OpenTK.Platform.GamepadBatteryType.Unknown + id: Unknown + parent: OpenTK.Platform.GamepadBatteryType + langs: + - csharp + - vb + name: Unknown + nameWithType: GamepadBatteryType.Unknown + fullName: OpenTK.Platform.GamepadBatteryType.Unknown + type: Field + source: + id: Unknown + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\GamepadBatteryInfo.cs + startLine: 16 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: The type of battery is unknown. + example: [] + syntax: + content: Unknown = 0 + return: + type: OpenTK.Platform.GamepadBatteryType +- uid: OpenTK.Platform.GamepadBatteryType.Wired + commentId: F:OpenTK.Platform.GamepadBatteryType.Wired + id: Wired + parent: OpenTK.Platform.GamepadBatteryType + langs: + - csharp + - vb + name: Wired + nameWithType: GamepadBatteryType.Wired + fullName: OpenTK.Platform.GamepadBatteryType.Wired + type: Field + source: + id: Wired + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\GamepadBatteryInfo.cs + startLine: 21 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: The gamepad is wired. + example: [] + syntax: + content: Wired = 1 + return: + type: OpenTK.Platform.GamepadBatteryType +- uid: OpenTK.Platform.GamepadBatteryType.Alkaline + commentId: F:OpenTK.Platform.GamepadBatteryType.Alkaline + id: Alkaline + parent: OpenTK.Platform.GamepadBatteryType + langs: + - csharp + - vb + name: Alkaline + nameWithType: GamepadBatteryType.Alkaline + fullName: OpenTK.Platform.GamepadBatteryType.Alkaline + type: Field + source: + id: Alkaline + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\GamepadBatteryInfo.cs + startLine: 26 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: The gamepad has an alkaline battery. + example: [] + syntax: + content: Alkaline = 2 + return: + type: OpenTK.Platform.GamepadBatteryType +- uid: OpenTK.Platform.GamepadBatteryType.NiMH + commentId: F:OpenTK.Platform.GamepadBatteryType.NiMH + id: NiMH + parent: OpenTK.Platform.GamepadBatteryType + langs: + - csharp + - vb + name: NiMH + nameWithType: GamepadBatteryType.NiMH + fullName: OpenTK.Platform.GamepadBatteryType.NiMH + type: Field + source: + id: NiMH + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\GamepadBatteryInfo.cs + startLine: 31 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: The gamepad has a nickel metal hydride battery. + example: [] + syntax: + content: NiMH = 3 + return: + type: OpenTK.Platform.GamepadBatteryType +references: +- uid: OpenTK.Platform + commentId: N:OpenTK.Platform + href: OpenTK.html + name: OpenTK.Platform + nameWithType: OpenTK.Platform + fullName: OpenTK.Platform + spec.csharp: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Platform + name: Platform + href: OpenTK.Platform.html + spec.vb: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Platform + name: Platform + href: OpenTK.Platform.html +- uid: OpenTK.Platform.GamepadBatteryType + commentId: T:OpenTK.Platform.GamepadBatteryType + parent: OpenTK.Platform + href: OpenTK.Platform.GamepadBatteryType.html + name: GamepadBatteryType + nameWithType: GamepadBatteryType + fullName: OpenTK.Platform.GamepadBatteryType diff --git a/api/OpenTK.Platform.GraphicsApi.yml b/api/OpenTK.Platform.GraphicsApi.yml new file mode 100644 index 00000000..cb9d4fc1 --- /dev/null +++ b/api/OpenTK.Platform.GraphicsApi.yml @@ -0,0 +1,156 @@ +### YamlMime:ManagedReference +items: +- uid: OpenTK.Platform.GraphicsApi + commentId: T:OpenTK.Platform.GraphicsApi + id: GraphicsApi + parent: OpenTK.Platform + children: + - OpenTK.Platform.GraphicsApi.None + - OpenTK.Platform.GraphicsApi.OpenGL + - OpenTK.Platform.GraphicsApi.OpenGLES + - OpenTK.Platform.GraphicsApi.Vulkan + langs: + - csharp + - vb + name: GraphicsApi + nameWithType: GraphicsApi + fullName: OpenTK.Platform.GraphicsApi + type: Enum + source: + id: GraphicsApi + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\GraphicsApi.cs + startLine: 5 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Graphics API types. + example: [] + syntax: + content: public enum GraphicsApi + content.vb: Public Enum GraphicsApi +- uid: OpenTK.Platform.GraphicsApi.None + commentId: F:OpenTK.Platform.GraphicsApi.None + id: None + parent: OpenTK.Platform.GraphicsApi + langs: + - csharp + - vb + name: None + nameWithType: GraphicsApi.None + fullName: OpenTK.Platform.GraphicsApi.None + type: Field + source: + id: None + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\GraphicsApi.cs + startLine: 10 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: No graphics API. + example: [] + syntax: + content: None = 0 + return: + type: OpenTK.Platform.GraphicsApi +- uid: OpenTK.Platform.GraphicsApi.OpenGL + commentId: F:OpenTK.Platform.GraphicsApi.OpenGL + id: OpenGL + parent: OpenTK.Platform.GraphicsApi + langs: + - csharp + - vb + name: OpenGL + nameWithType: GraphicsApi.OpenGL + fullName: OpenTK.Platform.GraphicsApi.OpenGL + type: Field + source: + id: OpenGL + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\GraphicsApi.cs + startLine: 15 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Desktop OpenGL API. + example: [] + syntax: + content: OpenGL = 1 + return: + type: OpenTK.Platform.GraphicsApi +- uid: OpenTK.Platform.GraphicsApi.OpenGLES + commentId: F:OpenTK.Platform.GraphicsApi.OpenGLES + id: OpenGLES + parent: OpenTK.Platform.GraphicsApi + langs: + - csharp + - vb + name: OpenGLES + nameWithType: GraphicsApi.OpenGLES + fullName: OpenTK.Platform.GraphicsApi.OpenGLES + type: Field + source: + id: OpenGLES + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\GraphicsApi.cs + startLine: 20 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Embedded OpenGL ES API. + example: [] + syntax: + content: OpenGLES = 2 + return: + type: OpenTK.Platform.GraphicsApi +- uid: OpenTK.Platform.GraphicsApi.Vulkan + commentId: F:OpenTK.Platform.GraphicsApi.Vulkan + id: Vulkan + parent: OpenTK.Platform.GraphicsApi + langs: + - csharp + - vb + name: Vulkan + nameWithType: GraphicsApi.Vulkan + fullName: OpenTK.Platform.GraphicsApi.Vulkan + type: Field + source: + id: Vulkan + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\GraphicsApi.cs + startLine: 25 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Vulkan API. + example: [] + syntax: + content: Vulkan = 3 + return: + type: OpenTK.Platform.GraphicsApi +references: +- uid: OpenTK.Platform + commentId: N:OpenTK.Platform + href: OpenTK.html + name: OpenTK.Platform + nameWithType: OpenTK.Platform + fullName: OpenTK.Platform + spec.csharp: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Platform + name: Platform + href: OpenTK.Platform.html + spec.vb: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Platform + name: Platform + href: OpenTK.Platform.html +- uid: OpenTK.Platform.GraphicsApi + commentId: T:OpenTK.Platform.GraphicsApi + parent: OpenTK.Platform + href: OpenTK.Platform.GraphicsApi.html + name: GraphicsApi + nameWithType: GraphicsApi + fullName: OpenTK.Platform.GraphicsApi diff --git a/api/OpenTK.Core.Platform.GraphicsApiHints.yml b/api/OpenTK.Platform.GraphicsApiHints.yml similarity index 82% rename from api/OpenTK.Core.Platform.GraphicsApiHints.yml rename to api/OpenTK.Platform.GraphicsApiHints.yml index ccfc0503..f2aa6c79 100644 --- a/api/OpenTK.Core.Platform.GraphicsApiHints.yml +++ b/api/OpenTK.Platform.GraphicsApiHints.yml @@ -1,29 +1,25 @@ ### YamlMime:ManagedReference items: -- uid: OpenTK.Core.Platform.GraphicsApiHints - commentId: T:OpenTK.Core.Platform.GraphicsApiHints +- uid: OpenTK.Platform.GraphicsApiHints + commentId: T:OpenTK.Platform.GraphicsApiHints id: GraphicsApiHints - parent: OpenTK.Core.Platform + parent: OpenTK.Platform children: - - OpenTK.Core.Platform.GraphicsApiHints.Api + - OpenTK.Platform.GraphicsApiHints.Api langs: - csharp - vb name: GraphicsApiHints nameWithType: GraphicsApiHints - fullName: OpenTK.Core.Platform.GraphicsApiHints + fullName: OpenTK.Platform.GraphicsApiHints type: Class source: - remote: - path: src/OpenTK.Core/Platform/GraphicsApiHints.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GraphicsApiHints - path: opentk/src/OpenTK.Core/Platform/GraphicsApiHints.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\GraphicsApiHints.cs startLine: 5 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform + - OpenTK.Platform + namespace: OpenTK.Platform summary: Hints provided for an abstraction layer about the graphics context being created. example: [] syntax: @@ -32,7 +28,7 @@ items: inheritance: - System.Object derivedClasses: - - OpenTK.Core.Platform.OpenGLGraphicsApiHints + - OpenTK.Platform.OpenGLGraphicsApiHints inheritedMembers: - System.Object.Equals(System.Object) - System.Object.Equals(System.Object,System.Object) @@ -41,68 +37,56 @@ items: - System.Object.MemberwiseClone - System.Object.ReferenceEquals(System.Object,System.Object) - System.Object.ToString -- uid: OpenTK.Core.Platform.GraphicsApiHints.Api - commentId: P:OpenTK.Core.Platform.GraphicsApiHints.Api +- uid: OpenTK.Platform.GraphicsApiHints.Api + commentId: P:OpenTK.Platform.GraphicsApiHints.Api id: Api - parent: OpenTK.Core.Platform.GraphicsApiHints + parent: OpenTK.Platform.GraphicsApiHints langs: - csharp - vb name: Api nameWithType: GraphicsApiHints.Api - fullName: OpenTK.Core.Platform.GraphicsApiHints.Api + fullName: OpenTK.Platform.GraphicsApiHints.Api type: Property source: - remote: - path: src/OpenTK.Core/Platform/GraphicsApiHints.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Api - path: opentk/src/OpenTK.Core/Platform/GraphicsApiHints.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\GraphicsApiHints.cs startLine: 10 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform + - OpenTK.Platform + namespace: OpenTK.Platform summary: Which graphics API the hints are for. example: [] syntax: content: public abstract GraphicsApi Api { get; } parameters: [] return: - type: OpenTK.Core.Platform.GraphicsApi + type: OpenTK.Platform.GraphicsApi content.vb: Public MustOverride ReadOnly Property Api As GraphicsApi - overload: OpenTK.Core.Platform.GraphicsApiHints.Api* + overload: OpenTK.Platform.GraphicsApiHints.Api* references: -- uid: OpenTK.Core.Platform - commentId: N:OpenTK.Core.Platform +- uid: OpenTK.Platform + commentId: N:OpenTK.Platform href: OpenTK.html - name: OpenTK.Core.Platform - nameWithType: OpenTK.Core.Platform - fullName: OpenTK.Core.Platform + name: OpenTK.Platform + nameWithType: OpenTK.Platform + fullName: OpenTK.Platform spec.csharp: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html spec.vb: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html - uid: System.Object commentId: T:System.Object parent: System @@ -340,16 +324,16 @@ references: name: System nameWithType: System fullName: System -- uid: OpenTK.Core.Platform.GraphicsApiHints.Api* - commentId: Overload:OpenTK.Core.Platform.GraphicsApiHints.Api - href: OpenTK.Core.Platform.GraphicsApiHints.html#OpenTK_Core_Platform_GraphicsApiHints_Api +- uid: OpenTK.Platform.GraphicsApiHints.Api* + commentId: Overload:OpenTK.Platform.GraphicsApiHints.Api + href: OpenTK.Platform.GraphicsApiHints.html#OpenTK_Platform_GraphicsApiHints_Api name: Api nameWithType: GraphicsApiHints.Api - fullName: OpenTK.Core.Platform.GraphicsApiHints.Api -- uid: OpenTK.Core.Platform.GraphicsApi - commentId: T:OpenTK.Core.Platform.GraphicsApi - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.GraphicsApi.html + fullName: OpenTK.Platform.GraphicsApiHints.Api +- uid: OpenTK.Platform.GraphicsApi + commentId: T:OpenTK.Platform.GraphicsApi + parent: OpenTK.Platform + href: OpenTK.Platform.GraphicsApi.html name: GraphicsApi nameWithType: GraphicsApi - fullName: OpenTK.Core.Platform.GraphicsApi + fullName: OpenTK.Platform.GraphicsApi diff --git a/api/OpenTK.Core.Platform.HitTest.yml b/api/OpenTK.Platform.HitTest.yml similarity index 61% rename from api/OpenTK.Core.Platform.HitTest.yml rename to api/OpenTK.Platform.HitTest.yml index a7dd989e..a0a618c3 100644 --- a/api/OpenTK.Core.Platform.HitTest.yml +++ b/api/OpenTK.Platform.HitTest.yml @@ -1,28 +1,24 @@ ### YamlMime:ManagedReference items: -- uid: OpenTK.Core.Platform.HitTest - commentId: T:OpenTK.Core.Platform.HitTest +- uid: OpenTK.Platform.HitTest + commentId: T:OpenTK.Platform.HitTest id: HitTest - parent: OpenTK.Core.Platform + parent: OpenTK.Platform children: [] langs: - csharp - vb name: HitTest nameWithType: HitTest - fullName: OpenTK.Core.Platform.HitTest + fullName: OpenTK.Platform.HitTest type: Delegate source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/IWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: HitTest - path: opentk/src/OpenTK.Core/Platform/Interfaces/IWindowComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IWindowComponent.cs startLine: 19 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform + - OpenTK.Platform + namespace: OpenTK.Platform summary: >- A delegate for hit testing. @@ -37,53 +33,45 @@ items: content: public delegate HitType HitTest(WindowHandle handle, Vector2 position) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: A handle to the window that hit testing is being done on. - id: position type: OpenTK.Mathematics.Vector2 description: The position of where the hit test is being done, not always the position of the mouse. In client relative coordinates. return: - type: OpenTK.Core.Platform.HitType + type: OpenTK.Platform.HitType description: The result of the hit test. content.vb: Public Delegate Function HitTest(handle As WindowHandle, position As Vector2) As HitType references: -- uid: OpenTK.Core.Platform - commentId: N:OpenTK.Core.Platform +- uid: OpenTK.Platform + commentId: N:OpenTK.Platform href: OpenTK.html - name: OpenTK.Core.Platform - nameWithType: OpenTK.Core.Platform - fullName: OpenTK.Core.Platform + name: OpenTK.Platform + nameWithType: OpenTK.Platform + fullName: OpenTK.Platform spec.csharp: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html spec.vb: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html -- uid: OpenTK.Core.Platform.WindowHandle - commentId: T:OpenTK.Core.Platform.WindowHandle - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.html +- uid: OpenTK.Platform.WindowHandle + commentId: T:OpenTK.Platform.WindowHandle + parent: OpenTK.Platform + href: OpenTK.Platform.WindowHandle.html name: WindowHandle nameWithType: WindowHandle - fullName: OpenTK.Core.Platform.WindowHandle + fullName: OpenTK.Platform.WindowHandle - uid: OpenTK.Mathematics.Vector2 commentId: T:OpenTK.Mathematics.Vector2 parent: OpenTK.Mathematics @@ -91,13 +79,13 @@ references: name: Vector2 nameWithType: Vector2 fullName: OpenTK.Mathematics.Vector2 -- uid: OpenTK.Core.Platform.HitType - commentId: T:OpenTK.Core.Platform.HitType - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.HitType.html +- uid: OpenTK.Platform.HitType + commentId: T:OpenTK.Platform.HitType + parent: OpenTK.Platform + href: OpenTK.Platform.HitType.html name: HitType nameWithType: HitType - fullName: OpenTK.Core.Platform.HitType + fullName: OpenTK.Platform.HitType - uid: OpenTK.Mathematics commentId: N:OpenTK.Mathematics href: OpenTK.html diff --git a/api/OpenTK.Platform.HitType.yml b/api/OpenTK.Platform.HitType.yml new file mode 100644 index 00000000..c4bc5542 --- /dev/null +++ b/api/OpenTK.Platform.HitType.yml @@ -0,0 +1,331 @@ +### YamlMime:ManagedReference +items: +- uid: OpenTK.Platform.HitType + commentId: T:OpenTK.Platform.HitType + id: HitType + parent: OpenTK.Platform + children: + - OpenTK.Platform.HitType.Default + - OpenTK.Platform.HitType.Draggable + - OpenTK.Platform.HitType.Normal + - OpenTK.Platform.HitType.ResizeBottom + - OpenTK.Platform.HitType.ResizeBottomLeft + - OpenTK.Platform.HitType.ResizeBottomRight + - OpenTK.Platform.HitType.ResizeLeft + - OpenTK.Platform.HitType.ResizeRight + - OpenTK.Platform.HitType.ResizeTop + - OpenTK.Platform.HitType.ResizeTopLeft + - OpenTK.Platform.HitType.ResizeTopRight + langs: + - csharp + - vb + name: HitType + nameWithType: HitType + fullName: OpenTK.Platform.HitType + type: Enum + source: + id: HitType + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\HitType.cs + startLine: 11 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Type of window hit. + example: [] + syntax: + content: public enum HitType + content.vb: Public Enum HitType +- uid: OpenTK.Platform.HitType.Default + commentId: F:OpenTK.Platform.HitType.Default + id: Default + parent: OpenTK.Platform.HitType + langs: + - csharp + - vb + name: Default + nameWithType: HitType.Default + fullName: OpenTK.Platform.HitType.Default + type: Field + source: + id: Default + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\HitType.cs + startLine: 16 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Do what would be done if no hit test delegate was set. + example: [] + syntax: + content: Default = 0 + return: + type: OpenTK.Platform.HitType +- uid: OpenTK.Platform.HitType.Normal + commentId: F:OpenTK.Platform.HitType.Normal + id: Normal + parent: OpenTK.Platform.HitType + langs: + - csharp + - vb + name: Normal + nameWithType: HitType.Normal + fullName: OpenTK.Platform.HitType.Normal + type: Field + source: + id: Normal + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\HitType.cs + startLine: 24 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: The client area of the window. + example: [] + syntax: + content: Normal = 1 + return: + type: OpenTK.Platform.HitType +- uid: OpenTK.Platform.HitType.Draggable + commentId: F:OpenTK.Platform.HitType.Draggable + id: Draggable + parent: OpenTK.Platform.HitType + langs: + - csharp + - vb + name: Draggable + nameWithType: HitType.Draggable + fullName: OpenTK.Platform.HitType.Draggable + type: Field + source: + id: Draggable + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\HitType.cs + startLine: 29 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: A part of the window that can be used to move the window. + example: [] + syntax: + content: Draggable = 2 + return: + type: OpenTK.Platform.HitType +- uid: OpenTK.Platform.HitType.ResizeTopLeft + commentId: F:OpenTK.Platform.HitType.ResizeTopLeft + id: ResizeTopLeft + parent: OpenTK.Platform.HitType + langs: + - csharp + - vb + name: ResizeTopLeft + nameWithType: HitType.ResizeTopLeft + fullName: OpenTK.Platform.HitType.ResizeTopLeft + type: Field + source: + id: ResizeTopLeft + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\HitType.cs + startLine: 34 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: The top left resizeable part of the window. + example: [] + syntax: + content: ResizeTopLeft = 3 + return: + type: OpenTK.Platform.HitType +- uid: OpenTK.Platform.HitType.ResizeTop + commentId: F:OpenTK.Platform.HitType.ResizeTop + id: ResizeTop + parent: OpenTK.Platform.HitType + langs: + - csharp + - vb + name: ResizeTop + nameWithType: HitType.ResizeTop + fullName: OpenTK.Platform.HitType.ResizeTop + type: Field + source: + id: ResizeTop + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\HitType.cs + startLine: 39 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: The top resizeable part of the window. + example: [] + syntax: + content: ResizeTop = 4 + return: + type: OpenTK.Platform.HitType +- uid: OpenTK.Platform.HitType.ResizeTopRight + commentId: F:OpenTK.Platform.HitType.ResizeTopRight + id: ResizeTopRight + parent: OpenTK.Platform.HitType + langs: + - csharp + - vb + name: ResizeTopRight + nameWithType: HitType.ResizeTopRight + fullName: OpenTK.Platform.HitType.ResizeTopRight + type: Field + source: + id: ResizeTopRight + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\HitType.cs + startLine: 44 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: The top right resizeable part of the window. + example: [] + syntax: + content: ResizeTopRight = 5 + return: + type: OpenTK.Platform.HitType +- uid: OpenTK.Platform.HitType.ResizeRight + commentId: F:OpenTK.Platform.HitType.ResizeRight + id: ResizeRight + parent: OpenTK.Platform.HitType + langs: + - csharp + - vb + name: ResizeRight + nameWithType: HitType.ResizeRight + fullName: OpenTK.Platform.HitType.ResizeRight + type: Field + source: + id: ResizeRight + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\HitType.cs + startLine: 49 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: The right resizeable part of the window. + example: [] + syntax: + content: ResizeRight = 6 + return: + type: OpenTK.Platform.HitType +- uid: OpenTK.Platform.HitType.ResizeBottomRight + commentId: F:OpenTK.Platform.HitType.ResizeBottomRight + id: ResizeBottomRight + parent: OpenTK.Platform.HitType + langs: + - csharp + - vb + name: ResizeBottomRight + nameWithType: HitType.ResizeBottomRight + fullName: OpenTK.Platform.HitType.ResizeBottomRight + type: Field + source: + id: ResizeBottomRight + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\HitType.cs + startLine: 54 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: The bottom right resizeable part of the window. + example: [] + syntax: + content: ResizeBottomRight = 7 + return: + type: OpenTK.Platform.HitType +- uid: OpenTK.Platform.HitType.ResizeBottom + commentId: F:OpenTK.Platform.HitType.ResizeBottom + id: ResizeBottom + parent: OpenTK.Platform.HitType + langs: + - csharp + - vb + name: ResizeBottom + nameWithType: HitType.ResizeBottom + fullName: OpenTK.Platform.HitType.ResizeBottom + type: Field + source: + id: ResizeBottom + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\HitType.cs + startLine: 59 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: The bottom resizeable part of the window. + example: [] + syntax: + content: ResizeBottom = 8 + return: + type: OpenTK.Platform.HitType +- uid: OpenTK.Platform.HitType.ResizeBottomLeft + commentId: F:OpenTK.Platform.HitType.ResizeBottomLeft + id: ResizeBottomLeft + parent: OpenTK.Platform.HitType + langs: + - csharp + - vb + name: ResizeBottomLeft + nameWithType: HitType.ResizeBottomLeft + fullName: OpenTK.Platform.HitType.ResizeBottomLeft + type: Field + source: + id: ResizeBottomLeft + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\HitType.cs + startLine: 64 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: The bottom left resizeable part of the window. + example: [] + syntax: + content: ResizeBottomLeft = 9 + return: + type: OpenTK.Platform.HitType +- uid: OpenTK.Platform.HitType.ResizeLeft + commentId: F:OpenTK.Platform.HitType.ResizeLeft + id: ResizeLeft + parent: OpenTK.Platform.HitType + langs: + - csharp + - vb + name: ResizeLeft + nameWithType: HitType.ResizeLeft + fullName: OpenTK.Platform.HitType.ResizeLeft + type: Field + source: + id: ResizeLeft + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\HitType.cs + startLine: 69 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: The left resizeable part of the window. + example: [] + syntax: + content: ResizeLeft = 10 + return: + type: OpenTK.Platform.HitType +references: +- uid: OpenTK.Platform + commentId: N:OpenTK.Platform + href: OpenTK.html + name: OpenTK.Platform + nameWithType: OpenTK.Platform + fullName: OpenTK.Platform + spec.csharp: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Platform + name: Platform + href: OpenTK.Platform.html + spec.vb: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Platform + name: Platform + href: OpenTK.Platform.html +- uid: OpenTK.Platform.HitType + commentId: T:OpenTK.Platform.HitType + parent: OpenTK.Platform + href: OpenTK.Platform.HitType.html + name: HitType + nameWithType: HitType + fullName: OpenTK.Platform.HitType diff --git a/api/OpenTK.Platform.IClipboardComponent.yml b/api/OpenTK.Platform.IClipboardComponent.yml new file mode 100644 index 00000000..95295461 --- /dev/null +++ b/api/OpenTK.Platform.IClipboardComponent.yml @@ -0,0 +1,585 @@ +### YamlMime:ManagedReference +items: +- uid: OpenTK.Platform.IClipboardComponent + commentId: T:OpenTK.Platform.IClipboardComponent + id: IClipboardComponent + parent: OpenTK.Platform + children: + - OpenTK.Platform.IClipboardComponent.GetClipboardAudio + - OpenTK.Platform.IClipboardComponent.GetClipboardBitmap + - OpenTK.Platform.IClipboardComponent.GetClipboardFiles + - OpenTK.Platform.IClipboardComponent.GetClipboardFormat + - OpenTK.Platform.IClipboardComponent.GetClipboardText + - OpenTK.Platform.IClipboardComponent.SetClipboardText(System.String) + - OpenTK.Platform.IClipboardComponent.SupportedFormats + langs: + - csharp + - vb + name: IClipboardComponent + nameWithType: IClipboardComponent + fullName: OpenTK.Platform.IClipboardComponent + type: Interface + source: + id: IClipboardComponent + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IClipboardComponent.cs + startLine: 14 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Interface for drivers which provide the clipboard component of the platform abstraction layer. + example: [] + syntax: + content: 'public interface IClipboardComponent : IPalComponent' + content.vb: Public Interface IClipboardComponent Inherits IPalComponent + inheritedMembers: + - OpenTK.Platform.IPalComponent.Name + - OpenTK.Platform.IPalComponent.Provides + - OpenTK.Platform.IPalComponent.Logger + - OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) +- uid: OpenTK.Platform.IClipboardComponent.SupportedFormats + commentId: P:OpenTK.Platform.IClipboardComponent.SupportedFormats + id: SupportedFormats + parent: OpenTK.Platform.IClipboardComponent + langs: + - csharp + - vb + name: SupportedFormats + nameWithType: IClipboardComponent.SupportedFormats + fullName: OpenTK.Platform.IClipboardComponent.SupportedFormats + type: Property + source: + id: SupportedFormats + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IClipboardComponent.cs + startLine: 19 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: A list of formats that this clipboard component supports. + example: [] + syntax: + content: IReadOnlyList SupportedFormats { get; } + parameters: [] + return: + type: System.Collections.Generic.IReadOnlyList{OpenTK.Platform.ClipboardFormat} + content.vb: ReadOnly Property SupportedFormats As IReadOnlyList(Of ClipboardFormat) + overload: OpenTK.Platform.IClipboardComponent.SupportedFormats* +- uid: OpenTK.Platform.IClipboardComponent.GetClipboardFormat + commentId: M:OpenTK.Platform.IClipboardComponent.GetClipboardFormat + id: GetClipboardFormat + parent: OpenTK.Platform.IClipboardComponent + langs: + - csharp + - vb + name: GetClipboardFormat() + nameWithType: IClipboardComponent.GetClipboardFormat() + fullName: OpenTK.Platform.IClipboardComponent.GetClipboardFormat() + type: Method + source: + id: GetClipboardFormat + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IClipboardComponent.cs + startLine: 25 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Gets the format of the data currently in the clipboard. + example: [] + syntax: + content: ClipboardFormat GetClipboardFormat() + return: + type: OpenTK.Platform.ClipboardFormat + description: The format of the data currently in the clipboard. + content.vb: Function GetClipboardFormat() As ClipboardFormat + overload: OpenTK.Platform.IClipboardComponent.GetClipboardFormat* +- uid: OpenTK.Platform.IClipboardComponent.SetClipboardText(System.String) + commentId: M:OpenTK.Platform.IClipboardComponent.SetClipboardText(System.String) + id: SetClipboardText(System.String) + parent: OpenTK.Platform.IClipboardComponent + langs: + - csharp + - vb + name: SetClipboardText(string) + nameWithType: IClipboardComponent.SetClipboardText(string) + fullName: OpenTK.Platform.IClipboardComponent.SetClipboardText(string) + type: Method + source: + id: SetClipboardText + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IClipboardComponent.cs + startLine: 31 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Sets the string currently in the clipboard. + example: [] + syntax: + content: void SetClipboardText(string text) + parameters: + - id: text + type: System.String + description: The text to put on the clipboard. + content.vb: Sub SetClipboardText(text As String) + overload: OpenTK.Platform.IClipboardComponent.SetClipboardText* + nameWithType.vb: IClipboardComponent.SetClipboardText(String) + fullName.vb: OpenTK.Platform.IClipboardComponent.SetClipboardText(String) + name.vb: SetClipboardText(String) +- uid: OpenTK.Platform.IClipboardComponent.GetClipboardText + commentId: M:OpenTK.Platform.IClipboardComponent.GetClipboardText + id: GetClipboardText + parent: OpenTK.Platform.IClipboardComponent + langs: + - csharp + - vb + name: GetClipboardText() + nameWithType: IClipboardComponent.GetClipboardText() + fullName: OpenTK.Platform.IClipboardComponent.GetClipboardText() + type: Method + source: + id: GetClipboardText + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IClipboardComponent.cs + startLine: 38 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: >- + Returns the string currently in the clipboard. + + This function returns null if the current clipboard data doesn't have the format. + example: [] + syntax: + content: string? GetClipboardText() + return: + type: System.String + description: The string currently in the clipboard, or null. + content.vb: Function GetClipboardText() As String + overload: OpenTK.Platform.IClipboardComponent.GetClipboardText* +- uid: OpenTK.Platform.IClipboardComponent.GetClipboardAudio + commentId: M:OpenTK.Platform.IClipboardComponent.GetClipboardAudio + id: GetClipboardAudio + parent: OpenTK.Platform.IClipboardComponent + langs: + - csharp + - vb + name: GetClipboardAudio() + nameWithType: IClipboardComponent.GetClipboardAudio() + fullName: OpenTK.Platform.IClipboardComponent.GetClipboardAudio() + type: Method + source: + id: GetClipboardAudio + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IClipboardComponent.cs + startLine: 45 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: >- + Gets the audio data currently in the clipboard. + + This function returns null if the current clipboard data doesn't have the format. + example: [] + syntax: + content: AudioData? GetClipboardAudio() + return: + type: OpenTK.Platform.AudioData + description: The audio data currently in the clipboard. + content.vb: Function GetClipboardAudio() As AudioData + overload: OpenTK.Platform.IClipboardComponent.GetClipboardAudio* +- uid: OpenTK.Platform.IClipboardComponent.GetClipboardBitmap + commentId: M:OpenTK.Platform.IClipboardComponent.GetClipboardBitmap + id: GetClipboardBitmap + parent: OpenTK.Platform.IClipboardComponent + langs: + - csharp + - vb + name: GetClipboardBitmap() + nameWithType: IClipboardComponent.GetClipboardBitmap() + fullName: OpenTK.Platform.IClipboardComponent.GetClipboardBitmap() + type: Method + source: + id: GetClipboardBitmap + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IClipboardComponent.cs + startLine: 53 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: >- + Gets the bitmap currently in the clipboard. + + This function returns null if the current clipboard data doesn't have the format. + example: [] + syntax: + content: Bitmap? GetClipboardBitmap() + return: + type: OpenTK.Platform.Bitmap + description: The bitmap currently in the clipboard. + content.vb: Function GetClipboardBitmap() As Bitmap + overload: OpenTK.Platform.IClipboardComponent.GetClipboardBitmap* +- uid: OpenTK.Platform.IClipboardComponent.GetClipboardFiles + commentId: M:OpenTK.Platform.IClipboardComponent.GetClipboardFiles + id: GetClipboardFiles + parent: OpenTK.Platform.IClipboardComponent + langs: + - csharp + - vb + name: GetClipboardFiles() + nameWithType: IClipboardComponent.GetClipboardFiles() + fullName: OpenTK.Platform.IClipboardComponent.GetClipboardFiles() + type: Method + source: + id: GetClipboardFiles + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IClipboardComponent.cs + startLine: 60 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: >- + Gets a list of files and directories currently in the clipboard. + + This function returns null if the current clipboard data doesn't have the format. + example: [] + syntax: + content: List? GetClipboardFiles() + return: + type: System.Collections.Generic.List{System.String} + description: The list of files and directories currently in the clipboard. + content.vb: Function GetClipboardFiles() As List(Of String) + overload: OpenTK.Platform.IClipboardComponent.GetClipboardFiles* +references: +- uid: OpenTK.Platform + commentId: N:OpenTK.Platform + href: OpenTK.html + name: OpenTK.Platform + nameWithType: OpenTK.Platform + fullName: OpenTK.Platform + spec.csharp: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Platform + name: Platform + href: OpenTK.Platform.html + spec.vb: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Platform + name: Platform + href: OpenTK.Platform.html +- uid: OpenTK.Platform.IPalComponent.Name + commentId: P:OpenTK.Platform.IPalComponent.Name + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Name + name: Name + nameWithType: IPalComponent.Name + fullName: OpenTK.Platform.IPalComponent.Name +- uid: OpenTK.Platform.IPalComponent.Provides + commentId: P:OpenTK.Platform.IPalComponent.Provides + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Provides + name: Provides + nameWithType: IPalComponent.Provides + fullName: OpenTK.Platform.IPalComponent.Provides +- uid: OpenTK.Platform.IPalComponent.Logger + commentId: P:OpenTK.Platform.IPalComponent.Logger + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Logger + name: Logger + nameWithType: IPalComponent.Logger + fullName: OpenTK.Platform.IPalComponent.Logger +- uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ + name: Initialize(ToolkitOptions) + nameWithType: IPalComponent.Initialize(ToolkitOptions) + fullName: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + spec.csharp: + - uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + name: Initialize + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ + - name: ( + - uid: OpenTK.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Platform.ToolkitOptions.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + name: Initialize + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ + - name: ( + - uid: OpenTK.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Platform.ToolkitOptions.html + - name: ) +- uid: OpenTK.Platform.IPalComponent + commentId: T:OpenTK.Platform.IPalComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IPalComponent.html + name: IPalComponent + nameWithType: IPalComponent + fullName: OpenTK.Platform.IPalComponent +- uid: OpenTK.Platform.IClipboardComponent.SupportedFormats* + commentId: Overload:OpenTK.Platform.IClipboardComponent.SupportedFormats + href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_SupportedFormats + name: SupportedFormats + nameWithType: IClipboardComponent.SupportedFormats + fullName: OpenTK.Platform.IClipboardComponent.SupportedFormats +- uid: System.Collections.Generic.IReadOnlyList{OpenTK.Platform.ClipboardFormat} + commentId: T:System.Collections.Generic.IReadOnlyList{OpenTK.Platform.ClipboardFormat} + parent: System.Collections.Generic + definition: System.Collections.Generic.IReadOnlyList`1 + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 + name: IReadOnlyList + nameWithType: IReadOnlyList + fullName: System.Collections.Generic.IReadOnlyList + nameWithType.vb: IReadOnlyList(Of ClipboardFormat) + fullName.vb: System.Collections.Generic.IReadOnlyList(Of OpenTK.Platform.ClipboardFormat) + name.vb: IReadOnlyList(Of ClipboardFormat) + spec.csharp: + - uid: System.Collections.Generic.IReadOnlyList`1 + name: IReadOnlyList + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 + - name: < + - uid: OpenTK.Platform.ClipboardFormat + name: ClipboardFormat + href: OpenTK.Platform.ClipboardFormat.html + - name: '>' + spec.vb: + - uid: System.Collections.Generic.IReadOnlyList`1 + name: IReadOnlyList + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 + - name: ( + - name: Of + - name: " " + - uid: OpenTK.Platform.ClipboardFormat + name: ClipboardFormat + href: OpenTK.Platform.ClipboardFormat.html + - name: ) +- uid: System.Collections.Generic.IReadOnlyList`1 + commentId: T:System.Collections.Generic.IReadOnlyList`1 + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 + name: IReadOnlyList + nameWithType: IReadOnlyList + fullName: System.Collections.Generic.IReadOnlyList + nameWithType.vb: IReadOnlyList(Of T) + fullName.vb: System.Collections.Generic.IReadOnlyList(Of T) + name.vb: IReadOnlyList(Of T) + spec.csharp: + - uid: System.Collections.Generic.IReadOnlyList`1 + name: IReadOnlyList + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 + - name: < + - name: T + - name: '>' + spec.vb: + - uid: System.Collections.Generic.IReadOnlyList`1 + name: IReadOnlyList + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 + - name: ( + - name: Of + - name: " " + - name: T + - name: ) +- uid: System.Collections.Generic + commentId: N:System.Collections.Generic + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System.Collections.Generic + nameWithType: System.Collections.Generic + fullName: System.Collections.Generic + spec.csharp: + - uid: System + name: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + - name: . + - uid: System.Collections + name: Collections + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections + - name: . + - uid: System.Collections.Generic + name: Generic + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic + spec.vb: + - uid: System + name: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + - name: . + - uid: System.Collections + name: Collections + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections + - name: . + - uid: System.Collections.Generic + name: Generic + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic +- uid: OpenTK.Platform.IClipboardComponent.GetClipboardFormat* + commentId: Overload:OpenTK.Platform.IClipboardComponent.GetClipboardFormat + href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_GetClipboardFormat + name: GetClipboardFormat + nameWithType: IClipboardComponent.GetClipboardFormat + fullName: OpenTK.Platform.IClipboardComponent.GetClipboardFormat +- uid: OpenTK.Platform.ClipboardFormat + commentId: T:OpenTK.Platform.ClipboardFormat + parent: OpenTK.Platform + href: OpenTK.Platform.ClipboardFormat.html + name: ClipboardFormat + nameWithType: ClipboardFormat + fullName: OpenTK.Platform.ClipboardFormat +- uid: OpenTK.Platform.IClipboardComponent.SetClipboardText* + commentId: Overload:OpenTK.Platform.IClipboardComponent.SetClipboardText + href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_SetClipboardText_System_String_ + name: SetClipboardText + nameWithType: IClipboardComponent.SetClipboardText + fullName: OpenTK.Platform.IClipboardComponent.SetClipboardText +- uid: System.String + commentId: T:System.String + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + name: string + nameWithType: string + fullName: string + nameWithType.vb: String + fullName.vb: String + name.vb: String +- uid: System + commentId: N:System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System + nameWithType: System + fullName: System +- uid: OpenTK.Platform.ClipboardFormat.Text + commentId: F:OpenTK.Platform.ClipboardFormat.Text + href: OpenTK.Platform.ClipboardFormat.html#OpenTK_Platform_ClipboardFormat_Text + name: Text + nameWithType: ClipboardFormat.Text + fullName: OpenTK.Platform.ClipboardFormat.Text +- uid: OpenTK.Platform.IClipboardComponent.GetClipboardText* + commentId: Overload:OpenTK.Platform.IClipboardComponent.GetClipboardText + href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_GetClipboardText + name: GetClipboardText + nameWithType: IClipboardComponent.GetClipboardText + fullName: OpenTK.Platform.IClipboardComponent.GetClipboardText +- uid: OpenTK.Platform.ClipboardFormat.Audio + commentId: F:OpenTK.Platform.ClipboardFormat.Audio + href: OpenTK.Platform.ClipboardFormat.html#OpenTK_Platform_ClipboardFormat_Audio + name: Audio + nameWithType: ClipboardFormat.Audio + fullName: OpenTK.Platform.ClipboardFormat.Audio +- uid: OpenTK.Platform.IClipboardComponent.GetClipboardAudio* + commentId: Overload:OpenTK.Platform.IClipboardComponent.GetClipboardAudio + href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_GetClipboardAudio + name: GetClipboardAudio + nameWithType: IClipboardComponent.GetClipboardAudio + fullName: OpenTK.Platform.IClipboardComponent.GetClipboardAudio +- uid: OpenTK.Platform.AudioData + commentId: T:OpenTK.Platform.AudioData + parent: OpenTK.Platform + href: OpenTK.Platform.AudioData.html + name: AudioData + nameWithType: AudioData + fullName: OpenTK.Platform.AudioData +- uid: OpenTK.Platform.ClipboardFormat.Bitmap + commentId: F:OpenTK.Platform.ClipboardFormat.Bitmap + href: OpenTK.Platform.ClipboardFormat.html#OpenTK_Platform_ClipboardFormat_Bitmap + name: Bitmap + nameWithType: ClipboardFormat.Bitmap + fullName: OpenTK.Platform.ClipboardFormat.Bitmap +- uid: OpenTK.Platform.IClipboardComponent.GetClipboardBitmap* + commentId: Overload:OpenTK.Platform.IClipboardComponent.GetClipboardBitmap + href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_GetClipboardBitmap + name: GetClipboardBitmap + nameWithType: IClipboardComponent.GetClipboardBitmap + fullName: OpenTK.Platform.IClipboardComponent.GetClipboardBitmap +- uid: OpenTK.Platform.Bitmap + commentId: T:OpenTK.Platform.Bitmap + parent: OpenTK.Platform + href: OpenTK.Platform.Bitmap.html + name: Bitmap + nameWithType: Bitmap + fullName: OpenTK.Platform.Bitmap +- uid: OpenTK.Platform.ClipboardFormat.Files + commentId: F:OpenTK.Platform.ClipboardFormat.Files + href: OpenTK.Platform.ClipboardFormat.html#OpenTK_Platform_ClipboardFormat_Files + name: Files + nameWithType: ClipboardFormat.Files + fullName: OpenTK.Platform.ClipboardFormat.Files +- uid: OpenTK.Platform.IClipboardComponent.GetClipboardFiles* + commentId: Overload:OpenTK.Platform.IClipboardComponent.GetClipboardFiles + href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_GetClipboardFiles + name: GetClipboardFiles + nameWithType: IClipboardComponent.GetClipboardFiles + fullName: OpenTK.Platform.IClipboardComponent.GetClipboardFiles +- uid: System.Collections.Generic.List{System.String} + commentId: T:System.Collections.Generic.List{System.String} + parent: System.Collections.Generic + definition: System.Collections.Generic.List`1 + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 + name: List + nameWithType: List + fullName: System.Collections.Generic.List + nameWithType.vb: List(Of String) + fullName.vb: System.Collections.Generic.List(Of String) + name.vb: List(Of String) + spec.csharp: + - uid: System.Collections.Generic.List`1 + name: List + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 + - name: < + - uid: System.String + name: string + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: '>' + spec.vb: + - uid: System.Collections.Generic.List`1 + name: List + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 + - name: ( + - name: Of + - name: " " + - uid: System.String + name: String + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ) +- uid: System.Collections.Generic.List`1 + commentId: T:System.Collections.Generic.List`1 + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 + name: List + nameWithType: List + fullName: System.Collections.Generic.List + nameWithType.vb: List(Of T) + fullName.vb: System.Collections.Generic.List(Of T) + name.vb: List(Of T) + spec.csharp: + - uid: System.Collections.Generic.List`1 + name: List + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 + - name: < + - name: T + - name: '>' + spec.vb: + - uid: System.Collections.Generic.List`1 + name: List + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 + - name: ( + - name: Of + - name: " " + - name: T + - name: ) diff --git a/api/OpenTK.Platform.ICursorComponent.yml b/api/OpenTK.Platform.ICursorComponent.yml new file mode 100644 index 00000000..e0a98e75 --- /dev/null +++ b/api/OpenTK.Platform.ICursorComponent.yml @@ -0,0 +1,860 @@ +### YamlMime:ManagedReference +items: +- uid: OpenTK.Platform.ICursorComponent + commentId: T:OpenTK.Platform.ICursorComponent + id: ICursorComponent + parent: OpenTK.Platform + children: + - OpenTK.Platform.ICursorComponent.CanInspectSystemCursors + - OpenTK.Platform.ICursorComponent.CanLoadSystemCursors + - OpenTK.Platform.ICursorComponent.Create(OpenTK.Platform.SystemCursorType) + - OpenTK.Platform.ICursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.Int32,System.Int32) + - OpenTK.Platform.ICursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.ReadOnlySpan{System.Byte},System.Int32,System.Int32) + - OpenTK.Platform.ICursorComponent.Destroy(OpenTK.Platform.CursorHandle) + - OpenTK.Platform.ICursorComponent.GetHotspot(OpenTK.Platform.CursorHandle,System.Int32@,System.Int32@) + - OpenTK.Platform.ICursorComponent.GetSize(OpenTK.Platform.CursorHandle,System.Int32@,System.Int32@) + - OpenTK.Platform.ICursorComponent.IsSystemCursor(OpenTK.Platform.CursorHandle) + langs: + - csharp + - vb + name: ICursorComponent + nameWithType: ICursorComponent + fullName: OpenTK.Platform.ICursorComponent + type: Interface + source: + id: ICursorComponent + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\ICursorComponent.cs + startLine: 8 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Interface for drivers which provide the cursor component of the platform abstraction layer. + example: [] + syntax: + content: 'public interface ICursorComponent : IPalComponent' + content.vb: Public Interface ICursorComponent Inherits IPalComponent + inheritedMembers: + - OpenTK.Platform.IPalComponent.Name + - OpenTK.Platform.IPalComponent.Provides + - OpenTK.Platform.IPalComponent.Logger + - OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) +- uid: OpenTK.Platform.ICursorComponent.CanLoadSystemCursors + commentId: P:OpenTK.Platform.ICursorComponent.CanLoadSystemCursors + id: CanLoadSystemCursors + parent: OpenTK.Platform.ICursorComponent + langs: + - csharp + - vb + name: CanLoadSystemCursors + nameWithType: ICursorComponent.CanLoadSystemCursors + fullName: OpenTK.Platform.ICursorComponent.CanLoadSystemCursors + type: Property + source: + id: CanLoadSystemCursors + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\ICursorComponent.cs + startLine: 14 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: True if the driver can load system cursors. + example: [] + syntax: + content: bool CanLoadSystemCursors { get; } + parameters: [] + return: + type: System.Boolean + content.vb: ReadOnly Property CanLoadSystemCursors As Boolean + overload: OpenTK.Platform.ICursorComponent.CanLoadSystemCursors* + seealso: + - linkId: OpenTK.Platform.ICursorComponent.Create(OpenTK.Platform.SystemCursorType) + commentId: M:OpenTK.Platform.ICursorComponent.Create(OpenTK.Platform.SystemCursorType) +- uid: OpenTK.Platform.ICursorComponent.CanInspectSystemCursors + commentId: P:OpenTK.Platform.ICursorComponent.CanInspectSystemCursors + id: CanInspectSystemCursors + parent: OpenTK.Platform.ICursorComponent + langs: + - csharp + - vb + name: CanInspectSystemCursors + nameWithType: ICursorComponent.CanInspectSystemCursors + fullName: OpenTK.Platform.ICursorComponent.CanInspectSystemCursors + type: Property + source: + id: CanInspectSystemCursors + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\ICursorComponent.cs + startLine: 23 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: >- + True if the backend supports inspecting system cursor handles. + + If true, functions like and works on system cursors. + + If false, these functions will fail. + example: [] + syntax: + content: bool CanInspectSystemCursors { get; } + parameters: [] + return: + type: System.Boolean + content.vb: ReadOnly Property CanInspectSystemCursors As Boolean + overload: OpenTK.Platform.ICursorComponent.CanInspectSystemCursors* + seealso: + - linkId: OpenTK.Platform.ICursorComponent.GetSize(OpenTK.Platform.CursorHandle,System.Int32@,System.Int32@) + commentId: M:OpenTK.Platform.ICursorComponent.GetSize(OpenTK.Platform.CursorHandle,System.Int32@,System.Int32@) + - linkId: OpenTK.Platform.ICursorComponent.GetHotspot(OpenTK.Platform.CursorHandle,System.Int32@,System.Int32@) + commentId: M:OpenTK.Platform.ICursorComponent.GetHotspot(OpenTK.Platform.CursorHandle,System.Int32@,System.Int32@) +- uid: OpenTK.Platform.ICursorComponent.Create(OpenTK.Platform.SystemCursorType) + commentId: M:OpenTK.Platform.ICursorComponent.Create(OpenTK.Platform.SystemCursorType) + id: Create(OpenTK.Platform.SystemCursorType) + parent: OpenTK.Platform.ICursorComponent + langs: + - csharp + - vb + name: Create(SystemCursorType) + nameWithType: ICursorComponent.Create(SystemCursorType) + fullName: OpenTK.Platform.ICursorComponent.Create(OpenTK.Platform.SystemCursorType) + type: Method + source: + id: Create + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\ICursorComponent.cs + startLine: 38 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Create a standard system cursor. + remarks: This function is only supported if is true. + example: [] + syntax: + content: CursorHandle Create(SystemCursorType systemCursor) + parameters: + - id: systemCursor + type: OpenTK.Platform.SystemCursorType + description: Type of the standard cursor to load. + return: + type: OpenTK.Platform.CursorHandle + description: A handle to the created cursor. + content.vb: Function Create(systemCursor As SystemCursorType) As CursorHandle + overload: OpenTK.Platform.ICursorComponent.Create* + exceptions: + - type: OpenTK.Platform.PalNotImplementedException + commentId: T:OpenTK.Platform.PalNotImplementedException + description: Driver does not implement this function. See . + - type: OpenTK.Platform.PlatformException + commentId: T:OpenTK.Platform.PlatformException + description: System does not provide cursor type selected by systemCursor. +- uid: OpenTK.Platform.ICursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.Int32,System.Int32) + commentId: M:OpenTK.Platform.ICursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.Int32,System.Int32) + id: Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.Int32,System.Int32) + parent: OpenTK.Platform.ICursorComponent + langs: + - csharp + - vb + name: Create(int, int, ReadOnlySpan, int, int) + nameWithType: ICursorComponent.Create(int, int, ReadOnlySpan, int, int) + fullName: OpenTK.Platform.ICursorComponent.Create(int, int, System.ReadOnlySpan, int, int) + type: Method + source: + id: Create + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\ICursorComponent.cs + startLine: 51 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Load a cursor image from memory. + example: [] + syntax: + content: CursorHandle Create(int width, int height, ReadOnlySpan image, int hotspotX, int hotspotY) + parameters: + - id: width + type: System.Int32 + description: Width of the cursor image. + - id: height + type: System.Int32 + description: Height of the cursor image. + - id: image + type: System.ReadOnlySpan{System.Byte} + description: Buffer containing image data. + - id: hotspotX + type: System.Int32 + description: The x coordinate of the cursor hotspot. + - id: hotspotY + type: System.Int32 + description: The y coordinate of the cursor hotspot. + return: + type: OpenTK.Platform.CursorHandle + description: A handle to the created cursor. + content.vb: Function Create(width As Integer, height As Integer, image As ReadOnlySpan(Of Byte), hotspotX As Integer, hotspotY As Integer) As CursorHandle + overload: OpenTK.Platform.ICursorComponent.Create* + exceptions: + - type: System.ArgumentOutOfRangeException + commentId: T:System.ArgumentOutOfRangeException + description: width or height is negative. + - type: System.ArgumentException + commentId: T:System.ArgumentException + description: image is smaller than specified dimensions. + nameWithType.vb: ICursorComponent.Create(Integer, Integer, ReadOnlySpan(Of Byte), Integer, Integer) + fullName.vb: OpenTK.Platform.ICursorComponent.Create(Integer, Integer, System.ReadOnlySpan(Of Byte), Integer, Integer) + name.vb: Create(Integer, Integer, ReadOnlySpan(Of Byte), Integer, Integer) +- uid: OpenTK.Platform.ICursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.ReadOnlySpan{System.Byte},System.Int32,System.Int32) + commentId: M:OpenTK.Platform.ICursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.ReadOnlySpan{System.Byte},System.Int32,System.Int32) + id: Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.ReadOnlySpan{System.Byte},System.Int32,System.Int32) + parent: OpenTK.Platform.ICursorComponent + langs: + - csharp + - vb + name: Create(int, int, ReadOnlySpan, ReadOnlySpan, int, int) + nameWithType: ICursorComponent.Create(int, int, ReadOnlySpan, ReadOnlySpan, int, int) + fullName: OpenTK.Platform.ICursorComponent.Create(int, int, System.ReadOnlySpan, System.ReadOnlySpan, int, int) + type: Method + source: + id: Create + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\ICursorComponent.cs + startLine: 67 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Load a cursor image from memory. + example: [] + syntax: + content: CursorHandle Create(int width, int height, ReadOnlySpan colorData, ReadOnlySpan maskData, int hotspotX, int hotspotY) + parameters: + - id: width + type: System.Int32 + description: Width of the cursor image. + - id: height + type: System.Int32 + description: Height of the cursor image. + - id: colorData + type: System.ReadOnlySpan{System.Byte} + description: Buffer containing color data. + - id: maskData + type: System.ReadOnlySpan{System.Byte} + description: Buffer containing mask data. + - id: hotspotX + type: System.Int32 + description: The x coordinate of the cursor hotspot. + - id: hotspotY + type: System.Int32 + description: The y coordinate of the cursor hotspot. + return: + type: OpenTK.Platform.CursorHandle + description: A handle to the created handle. + content.vb: Function Create(width As Integer, height As Integer, colorData As ReadOnlySpan(Of Byte), maskData As ReadOnlySpan(Of Byte), hotspotX As Integer, hotspotY As Integer) As CursorHandle + overload: OpenTK.Platform.ICursorComponent.Create* + exceptions: + - type: System.ArgumentOutOfRangeException + commentId: T:System.ArgumentOutOfRangeException + description: width or height is negative. + - type: System.ArgumentException + commentId: T:System.ArgumentException + description: colorData or maskData is smaller than specified dimensions. + nameWithType.vb: ICursorComponent.Create(Integer, Integer, ReadOnlySpan(Of Byte), ReadOnlySpan(Of Byte), Integer, Integer) + fullName.vb: OpenTK.Platform.ICursorComponent.Create(Integer, Integer, System.ReadOnlySpan(Of Byte), System.ReadOnlySpan(Of Byte), Integer, Integer) + name.vb: Create(Integer, Integer, ReadOnlySpan(Of Byte), ReadOnlySpan(Of Byte), Integer, Integer) +- uid: OpenTK.Platform.ICursorComponent.Destroy(OpenTK.Platform.CursorHandle) + commentId: M:OpenTK.Platform.ICursorComponent.Destroy(OpenTK.Platform.CursorHandle) + id: Destroy(OpenTK.Platform.CursorHandle) + parent: OpenTK.Platform.ICursorComponent + langs: + - csharp + - vb + name: Destroy(CursorHandle) + nameWithType: ICursorComponent.Destroy(CursorHandle) + fullName: OpenTK.Platform.ICursorComponent.Destroy(OpenTK.Platform.CursorHandle) + type: Method + source: + id: Destroy + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\ICursorComponent.cs + startLine: 74 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Destroy a cursor object. + example: [] + syntax: + content: void Destroy(CursorHandle handle) + parameters: + - id: handle + type: OpenTK.Platform.CursorHandle + description: Handle to a cursor object. + content.vb: Sub Destroy(handle As CursorHandle) + overload: OpenTK.Platform.ICursorComponent.Destroy* + exceptions: + - type: System.ArgumentNullException + commentId: T:System.ArgumentNullException + description: handle is null. +- uid: OpenTK.Platform.ICursorComponent.IsSystemCursor(OpenTK.Platform.CursorHandle) + commentId: M:OpenTK.Platform.ICursorComponent.IsSystemCursor(OpenTK.Platform.CursorHandle) + id: IsSystemCursor(OpenTK.Platform.CursorHandle) + parent: OpenTK.Platform.ICursorComponent + langs: + - csharp + - vb + name: IsSystemCursor(CursorHandle) + nameWithType: ICursorComponent.IsSystemCursor(CursorHandle) + fullName: OpenTK.Platform.ICursorComponent.IsSystemCursor(OpenTK.Platform.CursorHandle) + type: Method + source: + id: IsSystemCursor + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\ICursorComponent.cs + startLine: 82 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Returns true if this cursor is a system cursor. + example: [] + syntax: + content: bool IsSystemCursor(CursorHandle handle) + parameters: + - id: handle + type: OpenTK.Platform.CursorHandle + description: Handle to a cursor. + return: + type: System.Boolean + description: If the cursor is a system cursor or not. + content.vb: Function IsSystemCursor(handle As CursorHandle) As Boolean + overload: OpenTK.Platform.ICursorComponent.IsSystemCursor* + seealso: + - linkId: OpenTK.Platform.ICursorComponent.Create(OpenTK.Platform.SystemCursorType) + commentId: M:OpenTK.Platform.ICursorComponent.Create(OpenTK.Platform.SystemCursorType) +- uid: OpenTK.Platform.ICursorComponent.GetSize(OpenTK.Platform.CursorHandle,System.Int32@,System.Int32@) + commentId: M:OpenTK.Platform.ICursorComponent.GetSize(OpenTK.Platform.CursorHandle,System.Int32@,System.Int32@) + id: GetSize(OpenTK.Platform.CursorHandle,System.Int32@,System.Int32@) + parent: OpenTK.Platform.ICursorComponent + langs: + - csharp + - vb + name: GetSize(CursorHandle, out int, out int) + nameWithType: ICursorComponent.GetSize(CursorHandle, out int, out int) + fullName: OpenTK.Platform.ICursorComponent.GetSize(OpenTK.Platform.CursorHandle, out int, out int) + type: Method + source: + id: GetSize + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\ICursorComponent.cs + startLine: 96 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Get the size of the cursor image. + remarks: If handle is a system cursor and is false this function will fail. + example: [] + syntax: + content: void GetSize(CursorHandle handle, out int width, out int height) + parameters: + - id: handle + type: OpenTK.Platform.CursorHandle + description: Handle to a cursor object. + - id: width + type: System.Int32 + description: Width of the cursor. + - id: height + type: System.Int32 + description: Height of the cursor. + content.vb: Sub GetSize(handle As CursorHandle, width As Integer, height As Integer) + overload: OpenTK.Platform.ICursorComponent.GetSize* + exceptions: + - type: System.ArgumentNullException + commentId: T:System.ArgumentNullException + description: handle is null. + seealso: + - linkId: OpenTK.Platform.ICursorComponent.IsSystemCursor(OpenTK.Platform.CursorHandle) + commentId: M:OpenTK.Platform.ICursorComponent.IsSystemCursor(OpenTK.Platform.CursorHandle) + - linkId: OpenTK.Platform.ICursorComponent.CanInspectSystemCursors + commentId: P:OpenTK.Platform.ICursorComponent.CanInspectSystemCursors + nameWithType.vb: ICursorComponent.GetSize(CursorHandle, Integer, Integer) + fullName.vb: OpenTK.Platform.ICursorComponent.GetSize(OpenTK.Platform.CursorHandle, Integer, Integer) + name.vb: GetSize(CursorHandle, Integer, Integer) +- uid: OpenTK.Platform.ICursorComponent.GetHotspot(OpenTK.Platform.CursorHandle,System.Int32@,System.Int32@) + commentId: M:OpenTK.Platform.ICursorComponent.GetHotspot(OpenTK.Platform.CursorHandle,System.Int32@,System.Int32@) + id: GetHotspot(OpenTK.Platform.CursorHandle,System.Int32@,System.Int32@) + parent: OpenTK.Platform.ICursorComponent + langs: + - csharp + - vb + name: GetHotspot(CursorHandle, out int, out int) + nameWithType: ICursorComponent.GetHotspot(CursorHandle, out int, out int) + fullName: OpenTK.Platform.ICursorComponent.GetHotspot(OpenTK.Platform.CursorHandle, out int, out int) + type: Method + source: + id: GetHotspot + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\ICursorComponent.cs + startLine: 111 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: >- + Get the hotspot location of the mouse cursor. + + Getting the hotspot of a system cursor is not guaranteed to be possible, check before trying. + remarks: If handle is a system cursor and is false this function will fail. + example: [] + syntax: + content: void GetHotspot(CursorHandle handle, out int x, out int y) + parameters: + - id: handle + type: OpenTK.Platform.CursorHandle + description: Handle to a cursor object. + - id: x + type: System.Int32 + description: X coordinate of the hotspot. + - id: y + type: System.Int32 + description: Y coordinate of the hotspot. + content.vb: Sub GetHotspot(handle As CursorHandle, x As Integer, y As Integer) + overload: OpenTK.Platform.ICursorComponent.GetHotspot* + exceptions: + - type: System.ArgumentNullException + commentId: T:System.ArgumentNullException + description: handle is null. + seealso: + - linkId: OpenTK.Platform.ICursorComponent.IsSystemCursor(OpenTK.Platform.CursorHandle) + commentId: M:OpenTK.Platform.ICursorComponent.IsSystemCursor(OpenTK.Platform.CursorHandle) + - linkId: OpenTK.Platform.ICursorComponent.CanInspectSystemCursors + commentId: P:OpenTK.Platform.ICursorComponent.CanInspectSystemCursors + nameWithType.vb: ICursorComponent.GetHotspot(CursorHandle, Integer, Integer) + fullName.vb: OpenTK.Platform.ICursorComponent.GetHotspot(OpenTK.Platform.CursorHandle, Integer, Integer) + name.vb: GetHotspot(CursorHandle, Integer, Integer) +references: +- uid: OpenTK.Platform + commentId: N:OpenTK.Platform + href: OpenTK.html + name: OpenTK.Platform + nameWithType: OpenTK.Platform + fullName: OpenTK.Platform + spec.csharp: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Platform + name: Platform + href: OpenTK.Platform.html + spec.vb: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Platform + name: Platform + href: OpenTK.Platform.html +- uid: OpenTK.Platform.IPalComponent.Name + commentId: P:OpenTK.Platform.IPalComponent.Name + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Name + name: Name + nameWithType: IPalComponent.Name + fullName: OpenTK.Platform.IPalComponent.Name +- uid: OpenTK.Platform.IPalComponent.Provides + commentId: P:OpenTK.Platform.IPalComponent.Provides + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Provides + name: Provides + nameWithType: IPalComponent.Provides + fullName: OpenTK.Platform.IPalComponent.Provides +- uid: OpenTK.Platform.IPalComponent.Logger + commentId: P:OpenTK.Platform.IPalComponent.Logger + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Logger + name: Logger + nameWithType: IPalComponent.Logger + fullName: OpenTK.Platform.IPalComponent.Logger +- uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ + name: Initialize(ToolkitOptions) + nameWithType: IPalComponent.Initialize(ToolkitOptions) + fullName: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + spec.csharp: + - uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + name: Initialize + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ + - name: ( + - uid: OpenTK.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Platform.ToolkitOptions.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + name: Initialize + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ + - name: ( + - uid: OpenTK.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Platform.ToolkitOptions.html + - name: ) +- uid: OpenTK.Platform.IPalComponent + commentId: T:OpenTK.Platform.IPalComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IPalComponent.html + name: IPalComponent + nameWithType: IPalComponent + fullName: OpenTK.Platform.IPalComponent +- uid: OpenTK.Platform.ICursorComponent.Create(OpenTK.Platform.SystemCursorType) + commentId: M:OpenTK.Platform.ICursorComponent.Create(OpenTK.Platform.SystemCursorType) + parent: OpenTK.Platform.ICursorComponent + href: OpenTK.Platform.ICursorComponent.html#OpenTK_Platform_ICursorComponent_Create_OpenTK_Platform_SystemCursorType_ + name: Create(SystemCursorType) + nameWithType: ICursorComponent.Create(SystemCursorType) + fullName: OpenTK.Platform.ICursorComponent.Create(OpenTK.Platform.SystemCursorType) + spec.csharp: + - uid: OpenTK.Platform.ICursorComponent.Create(OpenTK.Platform.SystemCursorType) + name: Create + href: OpenTK.Platform.ICursorComponent.html#OpenTK_Platform_ICursorComponent_Create_OpenTK_Platform_SystemCursorType_ + - name: ( + - uid: OpenTK.Platform.SystemCursorType + name: SystemCursorType + href: OpenTK.Platform.SystemCursorType.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.ICursorComponent.Create(OpenTK.Platform.SystemCursorType) + name: Create + href: OpenTK.Platform.ICursorComponent.html#OpenTK_Platform_ICursorComponent_Create_OpenTK_Platform_SystemCursorType_ + - name: ( + - uid: OpenTK.Platform.SystemCursorType + name: SystemCursorType + href: OpenTK.Platform.SystemCursorType.html + - name: ) +- uid: OpenTK.Platform.ICursorComponent.CanLoadSystemCursors* + commentId: Overload:OpenTK.Platform.ICursorComponent.CanLoadSystemCursors + href: OpenTK.Platform.ICursorComponent.html#OpenTK_Platform_ICursorComponent_CanLoadSystemCursors + name: CanLoadSystemCursors + nameWithType: ICursorComponent.CanLoadSystemCursors + fullName: OpenTK.Platform.ICursorComponent.CanLoadSystemCursors +- uid: System.Boolean + commentId: T:System.Boolean + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + name: bool + nameWithType: bool + fullName: bool + nameWithType.vb: Boolean + fullName.vb: Boolean + name.vb: Boolean +- uid: OpenTK.Platform.ICursorComponent + commentId: T:OpenTK.Platform.ICursorComponent + parent: OpenTK.Platform + href: OpenTK.Platform.ICursorComponent.html + name: ICursorComponent + nameWithType: ICursorComponent + fullName: OpenTK.Platform.ICursorComponent +- uid: System + commentId: N:System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System + nameWithType: System + fullName: System +- uid: OpenTK.Platform.ICursorComponent.GetSize(OpenTK.Platform.CursorHandle,System.Int32@,System.Int32@) + commentId: M:OpenTK.Platform.ICursorComponent.GetSize(OpenTK.Platform.CursorHandle,System.Int32@,System.Int32@) + parent: OpenTK.Platform.ICursorComponent + isExternal: true + href: OpenTK.Platform.ICursorComponent.html#OpenTK_Platform_ICursorComponent_GetSize_OpenTK_Platform_CursorHandle_System_Int32__System_Int32__ + name: GetSize(CursorHandle, out int, out int) + nameWithType: ICursorComponent.GetSize(CursorHandle, out int, out int) + fullName: OpenTK.Platform.ICursorComponent.GetSize(OpenTK.Platform.CursorHandle, out int, out int) + nameWithType.vb: ICursorComponent.GetSize(CursorHandle, Integer, Integer) + fullName.vb: OpenTK.Platform.ICursorComponent.GetSize(OpenTK.Platform.CursorHandle, Integer, Integer) + name.vb: GetSize(CursorHandle, Integer, Integer) + spec.csharp: + - uid: OpenTK.Platform.ICursorComponent.GetSize(OpenTK.Platform.CursorHandle,System.Int32@,System.Int32@) + name: GetSize + href: OpenTK.Platform.ICursorComponent.html#OpenTK_Platform_ICursorComponent_GetSize_OpenTK_Platform_CursorHandle_System_Int32__System_Int32__ + - name: ( + - uid: OpenTK.Platform.CursorHandle + name: CursorHandle + href: OpenTK.Platform.CursorHandle.html + - name: ',' + - name: " " + - name: out + - name: " " + - uid: System.Int32 + name: int + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ',' + - name: " " + - name: out + - name: " " + - uid: System.Int32 + name: int + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ) + spec.vb: + - uid: OpenTK.Platform.ICursorComponent.GetSize(OpenTK.Platform.CursorHandle,System.Int32@,System.Int32@) + name: GetSize + href: OpenTK.Platform.ICursorComponent.html#OpenTK_Platform_ICursorComponent_GetSize_OpenTK_Platform_CursorHandle_System_Int32__System_Int32__ + - name: ( + - uid: OpenTK.Platform.CursorHandle + name: CursorHandle + href: OpenTK.Platform.CursorHandle.html + - name: ',' + - name: " " + - uid: System.Int32 + name: Integer + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ',' + - name: " " + - uid: System.Int32 + name: Integer + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ) +- uid: OpenTK.Platform.ICursorComponent.GetHotspot(OpenTK.Platform.CursorHandle,System.Int32@,System.Int32@) + commentId: M:OpenTK.Platform.ICursorComponent.GetHotspot(OpenTK.Platform.CursorHandle,System.Int32@,System.Int32@) + parent: OpenTK.Platform.ICursorComponent + isExternal: true + href: OpenTK.Platform.ICursorComponent.html#OpenTK_Platform_ICursorComponent_GetHotspot_OpenTK_Platform_CursorHandle_System_Int32__System_Int32__ + name: GetHotspot(CursorHandle, out int, out int) + nameWithType: ICursorComponent.GetHotspot(CursorHandle, out int, out int) + fullName: OpenTK.Platform.ICursorComponent.GetHotspot(OpenTK.Platform.CursorHandle, out int, out int) + nameWithType.vb: ICursorComponent.GetHotspot(CursorHandle, Integer, Integer) + fullName.vb: OpenTK.Platform.ICursorComponent.GetHotspot(OpenTK.Platform.CursorHandle, Integer, Integer) + name.vb: GetHotspot(CursorHandle, Integer, Integer) + spec.csharp: + - uid: OpenTK.Platform.ICursorComponent.GetHotspot(OpenTK.Platform.CursorHandle,System.Int32@,System.Int32@) + name: GetHotspot + href: OpenTK.Platform.ICursorComponent.html#OpenTK_Platform_ICursorComponent_GetHotspot_OpenTK_Platform_CursorHandle_System_Int32__System_Int32__ + - name: ( + - uid: OpenTK.Platform.CursorHandle + name: CursorHandle + href: OpenTK.Platform.CursorHandle.html + - name: ',' + - name: " " + - name: out + - name: " " + - uid: System.Int32 + name: int + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ',' + - name: " " + - name: out + - name: " " + - uid: System.Int32 + name: int + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ) + spec.vb: + - uid: OpenTK.Platform.ICursorComponent.GetHotspot(OpenTK.Platform.CursorHandle,System.Int32@,System.Int32@) + name: GetHotspot + href: OpenTK.Platform.ICursorComponent.html#OpenTK_Platform_ICursorComponent_GetHotspot_OpenTK_Platform_CursorHandle_System_Int32__System_Int32__ + - name: ( + - uid: OpenTK.Platform.CursorHandle + name: CursorHandle + href: OpenTK.Platform.CursorHandle.html + - name: ',' + - name: " " + - uid: System.Int32 + name: Integer + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ',' + - name: " " + - uid: System.Int32 + name: Integer + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ) +- uid: OpenTK.Platform.ICursorComponent.CanInspectSystemCursors* + commentId: Overload:OpenTK.Platform.ICursorComponent.CanInspectSystemCursors + href: OpenTK.Platform.ICursorComponent.html#OpenTK_Platform_ICursorComponent_CanInspectSystemCursors + name: CanInspectSystemCursors + nameWithType: ICursorComponent.CanInspectSystemCursors + fullName: OpenTK.Platform.ICursorComponent.CanInspectSystemCursors +- uid: OpenTK.Platform.ICursorComponent.CanLoadSystemCursors + commentId: P:OpenTK.Platform.ICursorComponent.CanLoadSystemCursors + parent: OpenTK.Platform.ICursorComponent + href: OpenTK.Platform.ICursorComponent.html#OpenTK_Platform_ICursorComponent_CanLoadSystemCursors + name: CanLoadSystemCursors + nameWithType: ICursorComponent.CanLoadSystemCursors + fullName: OpenTK.Platform.ICursorComponent.CanLoadSystemCursors +- uid: OpenTK.Platform.PalNotImplementedException + commentId: T:OpenTK.Platform.PalNotImplementedException + href: OpenTK.Platform.PalNotImplementedException.html + name: PalNotImplementedException + nameWithType: PalNotImplementedException + fullName: OpenTK.Platform.PalNotImplementedException +- uid: OpenTK.Platform.PlatformException + commentId: T:OpenTK.Platform.PlatformException + href: OpenTK.Platform.PlatformException.html + name: PlatformException + nameWithType: PlatformException + fullName: OpenTK.Platform.PlatformException +- uid: OpenTK.Platform.ICursorComponent.Create* + commentId: Overload:OpenTK.Platform.ICursorComponent.Create + href: OpenTK.Platform.ICursorComponent.html#OpenTK_Platform_ICursorComponent_Create_OpenTK_Platform_SystemCursorType_ + name: Create + nameWithType: ICursorComponent.Create + fullName: OpenTK.Platform.ICursorComponent.Create +- uid: OpenTK.Platform.SystemCursorType + commentId: T:OpenTK.Platform.SystemCursorType + parent: OpenTK.Platform + href: OpenTK.Platform.SystemCursorType.html + name: SystemCursorType + nameWithType: SystemCursorType + fullName: OpenTK.Platform.SystemCursorType +- uid: OpenTK.Platform.CursorHandle + commentId: T:OpenTK.Platform.CursorHandle + parent: OpenTK.Platform + href: OpenTK.Platform.CursorHandle.html + name: CursorHandle + nameWithType: CursorHandle + fullName: OpenTK.Platform.CursorHandle +- uid: System.ArgumentOutOfRangeException + commentId: T:System.ArgumentOutOfRangeException + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.argumentoutofrangeexception + name: ArgumentOutOfRangeException + nameWithType: ArgumentOutOfRangeException + fullName: System.ArgumentOutOfRangeException +- uid: System.ArgumentException + commentId: T:System.ArgumentException + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.argumentexception + name: ArgumentException + nameWithType: ArgumentException + fullName: System.ArgumentException +- uid: System.Int32 + commentId: T:System.Int32 + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + name: int + nameWithType: int + fullName: int + nameWithType.vb: Integer + fullName.vb: Integer + name.vb: Integer +- uid: System.ReadOnlySpan{System.Byte} + commentId: T:System.ReadOnlySpan{System.Byte} + parent: System + definition: System.ReadOnlySpan`1 + href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 + name: ReadOnlySpan + nameWithType: ReadOnlySpan + fullName: System.ReadOnlySpan + nameWithType.vb: ReadOnlySpan(Of Byte) + fullName.vb: System.ReadOnlySpan(Of Byte) + name.vb: ReadOnlySpan(Of Byte) + spec.csharp: + - uid: System.ReadOnlySpan`1 + name: ReadOnlySpan + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 + - name: < + - uid: System.Byte + name: byte + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.byte + - name: '>' + spec.vb: + - uid: System.ReadOnlySpan`1 + name: ReadOnlySpan + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 + - name: ( + - name: Of + - name: " " + - uid: System.Byte + name: Byte + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.byte + - name: ) +- uid: System.ReadOnlySpan`1 + commentId: T:System.ReadOnlySpan`1 + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 + name: ReadOnlySpan + nameWithType: ReadOnlySpan + fullName: System.ReadOnlySpan + nameWithType.vb: ReadOnlySpan(Of T) + fullName.vb: System.ReadOnlySpan(Of T) + name.vb: ReadOnlySpan(Of T) + spec.csharp: + - uid: System.ReadOnlySpan`1 + name: ReadOnlySpan + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 + - name: < + - name: T + - name: '>' + spec.vb: + - uid: System.ReadOnlySpan`1 + name: ReadOnlySpan + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 + - name: ( + - name: Of + - name: " " + - name: T + - name: ) +- uid: System.ArgumentNullException + commentId: T:System.ArgumentNullException + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.argumentnullexception + name: ArgumentNullException + nameWithType: ArgumentNullException + fullName: System.ArgumentNullException +- uid: OpenTK.Platform.ICursorComponent.Destroy* + commentId: Overload:OpenTK.Platform.ICursorComponent.Destroy + href: OpenTK.Platform.ICursorComponent.html#OpenTK_Platform_ICursorComponent_Destroy_OpenTK_Platform_CursorHandle_ + name: Destroy + nameWithType: ICursorComponent.Destroy + fullName: OpenTK.Platform.ICursorComponent.Destroy +- uid: OpenTK.Platform.ICursorComponent.IsSystemCursor* + commentId: Overload:OpenTK.Platform.ICursorComponent.IsSystemCursor + href: OpenTK.Platform.ICursorComponent.html#OpenTK_Platform_ICursorComponent_IsSystemCursor_OpenTK_Platform_CursorHandle_ + name: IsSystemCursor + nameWithType: ICursorComponent.IsSystemCursor + fullName: OpenTK.Platform.ICursorComponent.IsSystemCursor +- uid: OpenTK.Platform.ICursorComponent.IsSystemCursor(OpenTK.Platform.CursorHandle) + commentId: M:OpenTK.Platform.ICursorComponent.IsSystemCursor(OpenTK.Platform.CursorHandle) + parent: OpenTK.Platform.ICursorComponent + href: OpenTK.Platform.ICursorComponent.html#OpenTK_Platform_ICursorComponent_IsSystemCursor_OpenTK_Platform_CursorHandle_ + name: IsSystemCursor(CursorHandle) + nameWithType: ICursorComponent.IsSystemCursor(CursorHandle) + fullName: OpenTK.Platform.ICursorComponent.IsSystemCursor(OpenTK.Platform.CursorHandle) + spec.csharp: + - uid: OpenTK.Platform.ICursorComponent.IsSystemCursor(OpenTK.Platform.CursorHandle) + name: IsSystemCursor + href: OpenTK.Platform.ICursorComponent.html#OpenTK_Platform_ICursorComponent_IsSystemCursor_OpenTK_Platform_CursorHandle_ + - name: ( + - uid: OpenTK.Platform.CursorHandle + name: CursorHandle + href: OpenTK.Platform.CursorHandle.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.ICursorComponent.IsSystemCursor(OpenTK.Platform.CursorHandle) + name: IsSystemCursor + href: OpenTK.Platform.ICursorComponent.html#OpenTK_Platform_ICursorComponent_IsSystemCursor_OpenTK_Platform_CursorHandle_ + - name: ( + - uid: OpenTK.Platform.CursorHandle + name: CursorHandle + href: OpenTK.Platform.CursorHandle.html + - name: ) +- uid: OpenTK.Platform.ICursorComponent.CanInspectSystemCursors + commentId: P:OpenTK.Platform.ICursorComponent.CanInspectSystemCursors + parent: OpenTK.Platform.ICursorComponent + href: OpenTK.Platform.ICursorComponent.html#OpenTK_Platform_ICursorComponent_CanInspectSystemCursors + name: CanInspectSystemCursors + nameWithType: ICursorComponent.CanInspectSystemCursors + fullName: OpenTK.Platform.ICursorComponent.CanInspectSystemCursors +- uid: OpenTK.Platform.ICursorComponent.GetSize* + commentId: Overload:OpenTK.Platform.ICursorComponent.GetSize + href: OpenTK.Platform.ICursorComponent.html#OpenTK_Platform_ICursorComponent_GetSize_OpenTK_Platform_CursorHandle_System_Int32__System_Int32__ + name: GetSize + nameWithType: ICursorComponent.GetSize + fullName: OpenTK.Platform.ICursorComponent.GetSize +- uid: OpenTK.Platform.ICursorComponent.GetHotspot* + commentId: Overload:OpenTK.Platform.ICursorComponent.GetHotspot + href: OpenTK.Platform.ICursorComponent.html#OpenTK_Platform_ICursorComponent_GetHotspot_OpenTK_Platform_CursorHandle_System_Int32__System_Int32__ + name: GetHotspot + nameWithType: ICursorComponent.GetHotspot + fullName: OpenTK.Platform.ICursorComponent.GetHotspot diff --git a/api/OpenTK.Platform.IDialogComponent.yml b/api/OpenTK.Platform.IDialogComponent.yml new file mode 100644 index 00000000..d98b5abd --- /dev/null +++ b/api/OpenTK.Platform.IDialogComponent.yml @@ -0,0 +1,704 @@ +### YamlMime:ManagedReference +items: +- uid: OpenTK.Platform.IDialogComponent + commentId: T:OpenTK.Platform.IDialogComponent + id: IDialogComponent + parent: OpenTK.Platform + children: + - OpenTK.Platform.IDialogComponent.CanTargetFolders + - OpenTK.Platform.IDialogComponent.ShowMessageBox(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.MessageBoxType,OpenTK.Platform.IconHandle) + - OpenTK.Platform.IDialogComponent.ShowOpenDialog(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.DialogFileFilter[],OpenTK.Platform.OpenDialogOptions) + - OpenTK.Platform.IDialogComponent.ShowSaveDialog(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.DialogFileFilter[],OpenTK.Platform.SaveDialogOptions) + langs: + - csharp + - vb + name: IDialogComponent + nameWithType: IDialogComponent + fullName: OpenTK.Platform.IDialogComponent + type: Interface + source: + id: IDialogComponent + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IDialogComponent.cs + startLine: 13 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Interface for creating and interacting with modal dialogs. + example: [] + syntax: + content: 'public interface IDialogComponent : IPalComponent' + content.vb: Public Interface IDialogComponent Inherits IPalComponent + inheritedMembers: + - OpenTK.Platform.IPalComponent.Name + - OpenTK.Platform.IPalComponent.Provides + - OpenTK.Platform.IPalComponent.Logger + - OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) +- uid: OpenTK.Platform.IDialogComponent.CanTargetFolders + commentId: P:OpenTK.Platform.IDialogComponent.CanTargetFolders + id: CanTargetFolders + parent: OpenTK.Platform.IDialogComponent + langs: + - csharp + - vb + name: CanTargetFolders + nameWithType: IDialogComponent.CanTargetFolders + fullName: OpenTK.Platform.IDialogComponent.CanTargetFolders + type: Property + source: + id: CanTargetFolders + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IDialogComponent.cs + startLine: 21 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: >- + If the value of this property is true will work. + + Otherwise these flags will be ignored. + example: [] + syntax: + content: bool CanTargetFolders { get; } + parameters: [] + return: + type: System.Boolean + content.vb: ReadOnly Property CanTargetFolders As Boolean + overload: OpenTK.Platform.IDialogComponent.CanTargetFolders* + seealso: + - linkId: OpenTK.Platform.OpenDialogOptions.SelectDirectory + commentId: F:OpenTK.Platform.OpenDialogOptions.SelectDirectory + - linkId: OpenTK.Platform.IDialogComponent.ShowOpenDialog(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.DialogFileFilter[],OpenTK.Platform.OpenDialogOptions) + commentId: M:OpenTK.Platform.IDialogComponent.ShowOpenDialog(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.DialogFileFilter[],OpenTK.Platform.OpenDialogOptions) +- uid: OpenTK.Platform.IDialogComponent.ShowMessageBox(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.MessageBoxType,OpenTK.Platform.IconHandle) + commentId: M:OpenTK.Platform.IDialogComponent.ShowMessageBox(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.MessageBoxType,OpenTK.Platform.IconHandle) + id: ShowMessageBox(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.MessageBoxType,OpenTK.Platform.IconHandle) + parent: OpenTK.Platform.IDialogComponent + langs: + - csharp + - vb + name: ShowMessageBox(WindowHandle, string, string, MessageBoxType, IconHandle?) + nameWithType: IDialogComponent.ShowMessageBox(WindowHandle, string, string, MessageBoxType, IconHandle?) + fullName: OpenTK.Platform.IDialogComponent.ShowMessageBox(OpenTK.Platform.WindowHandle, string, string, OpenTK.Platform.MessageBoxType, OpenTK.Platform.IconHandle?) + type: Method + source: + id: ShowMessageBox + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IDialogComponent.cs + startLine: 32 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Shows a modal message box. + example: [] + syntax: + content: MessageBoxButton ShowMessageBox(WindowHandle parent, string title, string content, MessageBoxType messageBoxType, IconHandle? customIcon = null) + parameters: + - id: parent + type: OpenTK.Platform.WindowHandle + description: The parent window for which this dialog is modal. + - id: title + type: System.String + description: The title of the dialog box. + - id: content + type: System.String + description: The content text of the dialog box. + - id: messageBoxType + type: OpenTK.Platform.MessageBoxType + description: The type of message box. Determines button layout and default icon. + - id: customIcon + type: OpenTK.Platform.IconHandle + description: An optional custom icon to use instead of the default one. + return: + type: OpenTK.Platform.MessageBoxButton + description: The pressed message box button. + content.vb: Function ShowMessageBox(parent As WindowHandle, title As String, content As String, messageBoxType As MessageBoxType, customIcon As IconHandle = Nothing) As MessageBoxButton + overload: OpenTK.Platform.IDialogComponent.ShowMessageBox* + nameWithType.vb: IDialogComponent.ShowMessageBox(WindowHandle, String, String, MessageBoxType, IconHandle) + fullName.vb: OpenTK.Platform.IDialogComponent.ShowMessageBox(OpenTK.Platform.WindowHandle, String, String, OpenTK.Platform.MessageBoxType, OpenTK.Platform.IconHandle) + name.vb: ShowMessageBox(WindowHandle, String, String, MessageBoxType, IconHandle) +- uid: OpenTK.Platform.IDialogComponent.ShowOpenDialog(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.DialogFileFilter[],OpenTK.Platform.OpenDialogOptions) + commentId: M:OpenTK.Platform.IDialogComponent.ShowOpenDialog(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.DialogFileFilter[],OpenTK.Platform.OpenDialogOptions) + id: ShowOpenDialog(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.DialogFileFilter[],OpenTK.Platform.OpenDialogOptions) + parent: OpenTK.Platform.IDialogComponent + langs: + - csharp + - vb + name: ShowOpenDialog(WindowHandle, string, string, DialogFileFilter[]?, OpenDialogOptions) + nameWithType: IDialogComponent.ShowOpenDialog(WindowHandle, string, string, DialogFileFilter[]?, OpenDialogOptions) + fullName: OpenTK.Platform.IDialogComponent.ShowOpenDialog(OpenTK.Platform.WindowHandle, string, string, OpenTK.Platform.DialogFileFilter[]?, OpenTK.Platform.OpenDialogOptions) + type: Method + source: + id: ShowOpenDialog + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IDialogComponent.cs + startLine: 50 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Shows a modal "open file/folder" dialog. + example: [] + syntax: + content: List? ShowOpenDialog(WindowHandle parent, string title, string directory, DialogFileFilter[]? allowedExtensions, OpenDialogOptions options) + parameters: + - id: parent + type: OpenTK.Platform.WindowHandle + description: The parent window handle for which this dialog will be modal. + - id: title + type: System.String + description: The title of the dialog. + - id: directory + type: System.String + description: The start directory of the file dialog. + - id: allowedExtensions + type: OpenTK.Platform.DialogFileFilter[] + description: A list of file filters that filter valid files to open. See for more info. + - id: options + type: OpenTK.Platform.OpenDialogOptions + description: Additional options for the file dialog (e.g. for allowing multiple files to be selected.) + return: + type: System.Collections.Generic.List{System.String} + description: >- + A list of selected files or null if no files where selected. + + If is not specified the list will only contain a single element. + content.vb: Function ShowOpenDialog(parent As WindowHandle, title As String, directory As String, allowedExtensions As DialogFileFilter(), options As OpenDialogOptions) As List(Of String) + overload: OpenTK.Platform.IDialogComponent.ShowOpenDialog* + seealso: + - linkId: OpenTK.Platform.DialogFileFilter + commentId: T:OpenTK.Platform.DialogFileFilter + - linkId: OpenTK.Platform.OpenDialogOptions + commentId: T:OpenTK.Platform.OpenDialogOptions + - linkId: OpenTK.Platform.IDialogComponent.ShowSaveDialog(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.DialogFileFilter[],OpenTK.Platform.SaveDialogOptions) + commentId: M:OpenTK.Platform.IDialogComponent.ShowSaveDialog(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.DialogFileFilter[],OpenTK.Platform.SaveDialogOptions) + - linkId: OpenTK.Platform.IDialogComponent.CanTargetFolders + commentId: P:OpenTK.Platform.IDialogComponent.CanTargetFolders + nameWithType.vb: IDialogComponent.ShowOpenDialog(WindowHandle, String, String, DialogFileFilter(), OpenDialogOptions) + fullName.vb: OpenTK.Platform.IDialogComponent.ShowOpenDialog(OpenTK.Platform.WindowHandle, String, String, OpenTK.Platform.DialogFileFilter(), OpenTK.Platform.OpenDialogOptions) + name.vb: ShowOpenDialog(WindowHandle, String, String, DialogFileFilter(), OpenDialogOptions) +- uid: OpenTK.Platform.IDialogComponent.ShowSaveDialog(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.DialogFileFilter[],OpenTK.Platform.SaveDialogOptions) + commentId: M:OpenTK.Platform.IDialogComponent.ShowSaveDialog(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.DialogFileFilter[],OpenTK.Platform.SaveDialogOptions) + id: ShowSaveDialog(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.DialogFileFilter[],OpenTK.Platform.SaveDialogOptions) + parent: OpenTK.Platform.IDialogComponent + langs: + - csharp + - vb + name: ShowSaveDialog(WindowHandle, string, string, DialogFileFilter[]?, SaveDialogOptions) + nameWithType: IDialogComponent.ShowSaveDialog(WindowHandle, string, string, DialogFileFilter[]?, SaveDialogOptions) + fullName: OpenTK.Platform.IDialogComponent.ShowSaveDialog(OpenTK.Platform.WindowHandle, string, string, OpenTK.Platform.DialogFileFilter[]?, OpenTK.Platform.SaveDialogOptions) + type: Method + source: + id: ShowSaveDialog + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IDialogComponent.cs + startLine: 63 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Shows a modal "save file" dialog. + example: [] + syntax: + content: string? ShowSaveDialog(WindowHandle parent, string title, string directory, DialogFileFilter[]? allowedExtensions, SaveDialogOptions options) + parameters: + - id: parent + type: OpenTK.Platform.WindowHandle + description: The parent window handle for which this dialog will be modal. + - id: title + type: System.String + description: The title of the dialog. + - id: directory + type: System.String + description: The starting directory of the file dialog. + - id: allowedExtensions + type: OpenTK.Platform.DialogFileFilter[] + description: A list of file filters that filter valid file extensions to save as. See for more info. + - id: options + type: OpenTK.Platform.SaveDialogOptions + description: Additional options for the file dialog. + return: + type: System.String + description: The path to the selected save file, or null if no file was selected. + content.vb: Function ShowSaveDialog(parent As WindowHandle, title As String, directory As String, allowedExtensions As DialogFileFilter(), options As SaveDialogOptions) As String + overload: OpenTK.Platform.IDialogComponent.ShowSaveDialog* + seealso: + - linkId: OpenTK.Platform.DialogFileFilter + commentId: T:OpenTK.Platform.DialogFileFilter + - linkId: OpenTK.Platform.SaveDialogOptions + commentId: T:OpenTK.Platform.SaveDialogOptions + nameWithType.vb: IDialogComponent.ShowSaveDialog(WindowHandle, String, String, DialogFileFilter(), SaveDialogOptions) + fullName.vb: OpenTK.Platform.IDialogComponent.ShowSaveDialog(OpenTK.Platform.WindowHandle, String, String, OpenTK.Platform.DialogFileFilter(), OpenTK.Platform.SaveDialogOptions) + name.vb: ShowSaveDialog(WindowHandle, String, String, DialogFileFilter(), SaveDialogOptions) +references: +- uid: OpenTK.Platform + commentId: N:OpenTK.Platform + href: OpenTK.html + name: OpenTK.Platform + nameWithType: OpenTK.Platform + fullName: OpenTK.Platform + spec.csharp: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Platform + name: Platform + href: OpenTK.Platform.html + spec.vb: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Platform + name: Platform + href: OpenTK.Platform.html +- uid: OpenTK.Platform.IPalComponent.Name + commentId: P:OpenTK.Platform.IPalComponent.Name + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Name + name: Name + nameWithType: IPalComponent.Name + fullName: OpenTK.Platform.IPalComponent.Name +- uid: OpenTK.Platform.IPalComponent.Provides + commentId: P:OpenTK.Platform.IPalComponent.Provides + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Provides + name: Provides + nameWithType: IPalComponent.Provides + fullName: OpenTK.Platform.IPalComponent.Provides +- uid: OpenTK.Platform.IPalComponent.Logger + commentId: P:OpenTK.Platform.IPalComponent.Logger + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Logger + name: Logger + nameWithType: IPalComponent.Logger + fullName: OpenTK.Platform.IPalComponent.Logger +- uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ + name: Initialize(ToolkitOptions) + nameWithType: IPalComponent.Initialize(ToolkitOptions) + fullName: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + spec.csharp: + - uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + name: Initialize + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ + - name: ( + - uid: OpenTK.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Platform.ToolkitOptions.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + name: Initialize + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ + - name: ( + - uid: OpenTK.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Platform.ToolkitOptions.html + - name: ) +- uid: OpenTK.Platform.IPalComponent + commentId: T:OpenTK.Platform.IPalComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IPalComponent.html + name: IPalComponent + nameWithType: IPalComponent + fullName: OpenTK.Platform.IPalComponent +- uid: OpenTK.Platform.OpenDialogOptions.SelectDirectory + commentId: F:OpenTK.Platform.OpenDialogOptions.SelectDirectory + href: OpenTK.Platform.OpenDialogOptions.html#OpenTK_Platform_OpenDialogOptions_SelectDirectory + name: SelectDirectory + nameWithType: OpenDialogOptions.SelectDirectory + fullName: OpenTK.Platform.OpenDialogOptions.SelectDirectory +- uid: OpenTK.Platform.IDialogComponent.ShowOpenDialog(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.DialogFileFilter[],OpenTK.Platform.OpenDialogOptions) + commentId: M:OpenTK.Platform.IDialogComponent.ShowOpenDialog(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.DialogFileFilter[],OpenTK.Platform.OpenDialogOptions) + parent: OpenTK.Platform.IDialogComponent + isExternal: true + href: OpenTK.Platform.IDialogComponent.html#OpenTK_Platform_IDialogComponent_ShowOpenDialog_OpenTK_Platform_WindowHandle_System_String_System_String_OpenTK_Platform_DialogFileFilter___OpenTK_Platform_OpenDialogOptions_ + name: ShowOpenDialog(WindowHandle, string, string, DialogFileFilter[], OpenDialogOptions) + nameWithType: IDialogComponent.ShowOpenDialog(WindowHandle, string, string, DialogFileFilter[], OpenDialogOptions) + fullName: OpenTK.Platform.IDialogComponent.ShowOpenDialog(OpenTK.Platform.WindowHandle, string, string, OpenTK.Platform.DialogFileFilter[], OpenTK.Platform.OpenDialogOptions) + nameWithType.vb: IDialogComponent.ShowOpenDialog(WindowHandle, String, String, DialogFileFilter(), OpenDialogOptions) + fullName.vb: OpenTK.Platform.IDialogComponent.ShowOpenDialog(OpenTK.Platform.WindowHandle, String, String, OpenTK.Platform.DialogFileFilter(), OpenTK.Platform.OpenDialogOptions) + name.vb: ShowOpenDialog(WindowHandle, String, String, DialogFileFilter(), OpenDialogOptions) + spec.csharp: + - uid: OpenTK.Platform.IDialogComponent.ShowOpenDialog(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.DialogFileFilter[],OpenTK.Platform.OpenDialogOptions) + name: ShowOpenDialog + href: OpenTK.Platform.IDialogComponent.html#OpenTK_Platform_IDialogComponent_ShowOpenDialog_OpenTK_Platform_WindowHandle_System_String_System_String_OpenTK_Platform_DialogFileFilter___OpenTK_Platform_OpenDialogOptions_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: System.String + name: string + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ',' + - name: " " + - uid: System.String + name: string + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ',' + - name: " " + - uid: OpenTK.Platform.DialogFileFilter + name: DialogFileFilter + href: OpenTK.Platform.DialogFileFilter.html + - name: '[' + - name: ']' + - name: ',' + - name: " " + - uid: OpenTK.Platform.OpenDialogOptions + name: OpenDialogOptions + href: OpenTK.Platform.OpenDialogOptions.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IDialogComponent.ShowOpenDialog(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.DialogFileFilter[],OpenTK.Platform.OpenDialogOptions) + name: ShowOpenDialog + href: OpenTK.Platform.IDialogComponent.html#OpenTK_Platform_IDialogComponent_ShowOpenDialog_OpenTK_Platform_WindowHandle_System_String_System_String_OpenTK_Platform_DialogFileFilter___OpenTK_Platform_OpenDialogOptions_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: System.String + name: String + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ',' + - name: " " + - uid: System.String + name: String + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ',' + - name: " " + - uid: OpenTK.Platform.DialogFileFilter + name: DialogFileFilter + href: OpenTK.Platform.DialogFileFilter.html + - name: ( + - name: ) + - name: ',' + - name: " " + - uid: OpenTK.Platform.OpenDialogOptions + name: OpenDialogOptions + href: OpenTK.Platform.OpenDialogOptions.html + - name: ) +- uid: OpenTK.Platform.IDialogComponent.CanTargetFolders* + commentId: Overload:OpenTK.Platform.IDialogComponent.CanTargetFolders + href: OpenTK.Platform.IDialogComponent.html#OpenTK_Platform_IDialogComponent_CanTargetFolders + name: CanTargetFolders + nameWithType: IDialogComponent.CanTargetFolders + fullName: OpenTK.Platform.IDialogComponent.CanTargetFolders +- uid: System.Boolean + commentId: T:System.Boolean + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + name: bool + nameWithType: bool + fullName: bool + nameWithType.vb: Boolean + fullName.vb: Boolean + name.vb: Boolean +- uid: OpenTK.Platform.IDialogComponent + commentId: T:OpenTK.Platform.IDialogComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IDialogComponent.html + name: IDialogComponent + nameWithType: IDialogComponent + fullName: OpenTK.Platform.IDialogComponent +- uid: System + commentId: N:System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System + nameWithType: System + fullName: System +- uid: OpenTK.Platform.IDialogComponent.ShowMessageBox* + commentId: Overload:OpenTK.Platform.IDialogComponent.ShowMessageBox + href: OpenTK.Platform.IDialogComponent.html#OpenTK_Platform_IDialogComponent_ShowMessageBox_OpenTK_Platform_WindowHandle_System_String_System_String_OpenTK_Platform_MessageBoxType_OpenTK_Platform_IconHandle_ + name: ShowMessageBox + nameWithType: IDialogComponent.ShowMessageBox + fullName: OpenTK.Platform.IDialogComponent.ShowMessageBox +- uid: OpenTK.Platform.WindowHandle + commentId: T:OpenTK.Platform.WindowHandle + parent: OpenTK.Platform + href: OpenTK.Platform.WindowHandle.html + name: WindowHandle + nameWithType: WindowHandle + fullName: OpenTK.Platform.WindowHandle +- uid: System.String + commentId: T:System.String + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + name: string + nameWithType: string + fullName: string + nameWithType.vb: String + fullName.vb: String + name.vb: String +- uid: OpenTK.Platform.MessageBoxType + commentId: T:OpenTK.Platform.MessageBoxType + parent: OpenTK.Platform + href: OpenTK.Platform.MessageBoxType.html + name: MessageBoxType + nameWithType: MessageBoxType + fullName: OpenTK.Platform.MessageBoxType +- uid: OpenTK.Platform.IconHandle + commentId: T:OpenTK.Platform.IconHandle + parent: OpenTK.Platform + href: OpenTK.Platform.IconHandle.html + name: IconHandle + nameWithType: IconHandle + fullName: OpenTK.Platform.IconHandle +- uid: OpenTK.Platform.MessageBoxButton + commentId: T:OpenTK.Platform.MessageBoxButton + parent: OpenTK.Platform + href: OpenTK.Platform.MessageBoxButton.html + name: MessageBoxButton + nameWithType: MessageBoxButton + fullName: OpenTK.Platform.MessageBoxButton +- uid: OpenTK.Platform.DialogFileFilter + commentId: T:OpenTK.Platform.DialogFileFilter + parent: OpenTK.Platform + href: OpenTK.Platform.DialogFileFilter.html + name: DialogFileFilter + nameWithType: DialogFileFilter + fullName: OpenTK.Platform.DialogFileFilter +- uid: OpenTK.Platform.OpenDialogOptions + commentId: T:OpenTK.Platform.OpenDialogOptions + parent: OpenTK.Platform + href: OpenTK.Platform.OpenDialogOptions.html + name: OpenDialogOptions + nameWithType: OpenDialogOptions + fullName: OpenTK.Platform.OpenDialogOptions +- uid: OpenTK.Platform.IDialogComponent.ShowSaveDialog(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.DialogFileFilter[],OpenTK.Platform.SaveDialogOptions) + commentId: M:OpenTK.Platform.IDialogComponent.ShowSaveDialog(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.DialogFileFilter[],OpenTK.Platform.SaveDialogOptions) + parent: OpenTK.Platform.IDialogComponent + isExternal: true + href: OpenTK.Platform.IDialogComponent.html#OpenTK_Platform_IDialogComponent_ShowSaveDialog_OpenTK_Platform_WindowHandle_System_String_System_String_OpenTK_Platform_DialogFileFilter___OpenTK_Platform_SaveDialogOptions_ + name: ShowSaveDialog(WindowHandle, string, string, DialogFileFilter[], SaveDialogOptions) + nameWithType: IDialogComponent.ShowSaveDialog(WindowHandle, string, string, DialogFileFilter[], SaveDialogOptions) + fullName: OpenTK.Platform.IDialogComponent.ShowSaveDialog(OpenTK.Platform.WindowHandle, string, string, OpenTK.Platform.DialogFileFilter[], OpenTK.Platform.SaveDialogOptions) + nameWithType.vb: IDialogComponent.ShowSaveDialog(WindowHandle, String, String, DialogFileFilter(), SaveDialogOptions) + fullName.vb: OpenTK.Platform.IDialogComponent.ShowSaveDialog(OpenTK.Platform.WindowHandle, String, String, OpenTK.Platform.DialogFileFilter(), OpenTK.Platform.SaveDialogOptions) + name.vb: ShowSaveDialog(WindowHandle, String, String, DialogFileFilter(), SaveDialogOptions) + spec.csharp: + - uid: OpenTK.Platform.IDialogComponent.ShowSaveDialog(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.DialogFileFilter[],OpenTK.Platform.SaveDialogOptions) + name: ShowSaveDialog + href: OpenTK.Platform.IDialogComponent.html#OpenTK_Platform_IDialogComponent_ShowSaveDialog_OpenTK_Platform_WindowHandle_System_String_System_String_OpenTK_Platform_DialogFileFilter___OpenTK_Platform_SaveDialogOptions_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: System.String + name: string + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ',' + - name: " " + - uid: System.String + name: string + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ',' + - name: " " + - uid: OpenTK.Platform.DialogFileFilter + name: DialogFileFilter + href: OpenTK.Platform.DialogFileFilter.html + - name: '[' + - name: ']' + - name: ',' + - name: " " + - uid: OpenTK.Platform.SaveDialogOptions + name: SaveDialogOptions + href: OpenTK.Platform.SaveDialogOptions.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IDialogComponent.ShowSaveDialog(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.DialogFileFilter[],OpenTK.Platform.SaveDialogOptions) + name: ShowSaveDialog + href: OpenTK.Platform.IDialogComponent.html#OpenTK_Platform_IDialogComponent_ShowSaveDialog_OpenTK_Platform_WindowHandle_System_String_System_String_OpenTK_Platform_DialogFileFilter___OpenTK_Platform_SaveDialogOptions_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: System.String + name: String + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ',' + - name: " " + - uid: System.String + name: String + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ',' + - name: " " + - uid: OpenTK.Platform.DialogFileFilter + name: DialogFileFilter + href: OpenTK.Platform.DialogFileFilter.html + - name: ( + - name: ) + - name: ',' + - name: " " + - uid: OpenTK.Platform.SaveDialogOptions + name: SaveDialogOptions + href: OpenTK.Platform.SaveDialogOptions.html + - name: ) +- uid: OpenTK.Platform.IDialogComponent.CanTargetFolders + commentId: P:OpenTK.Platform.IDialogComponent.CanTargetFolders + parent: OpenTK.Platform.IDialogComponent + href: OpenTK.Platform.IDialogComponent.html#OpenTK_Platform_IDialogComponent_CanTargetFolders + name: CanTargetFolders + nameWithType: IDialogComponent.CanTargetFolders + fullName: OpenTK.Platform.IDialogComponent.CanTargetFolders +- uid: OpenTK.Platform.OpenDialogOptions.AllowMultiSelect + commentId: F:OpenTK.Platform.OpenDialogOptions.AllowMultiSelect + href: OpenTK.Platform.OpenDialogOptions.html#OpenTK_Platform_OpenDialogOptions_AllowMultiSelect + name: AllowMultiSelect + nameWithType: OpenDialogOptions.AllowMultiSelect + fullName: OpenTK.Platform.OpenDialogOptions.AllowMultiSelect +- uid: OpenTK.Platform.IDialogComponent.ShowOpenDialog* + commentId: Overload:OpenTK.Platform.IDialogComponent.ShowOpenDialog + href: OpenTK.Platform.IDialogComponent.html#OpenTK_Platform_IDialogComponent_ShowOpenDialog_OpenTK_Platform_WindowHandle_System_String_System_String_OpenTK_Platform_DialogFileFilter___OpenTK_Platform_OpenDialogOptions_ + name: ShowOpenDialog + nameWithType: IDialogComponent.ShowOpenDialog + fullName: OpenTK.Platform.IDialogComponent.ShowOpenDialog +- uid: OpenTK.Platform.DialogFileFilter[] + isExternal: true + href: OpenTK.Platform.DialogFileFilter.html + name: DialogFileFilter[] + nameWithType: DialogFileFilter[] + fullName: OpenTK.Platform.DialogFileFilter[] + nameWithType.vb: DialogFileFilter() + fullName.vb: OpenTK.Platform.DialogFileFilter() + name.vb: DialogFileFilter() + spec.csharp: + - uid: OpenTK.Platform.DialogFileFilter + name: DialogFileFilter + href: OpenTK.Platform.DialogFileFilter.html + - name: '[' + - name: ']' + spec.vb: + - uid: OpenTK.Platform.DialogFileFilter + name: DialogFileFilter + href: OpenTK.Platform.DialogFileFilter.html + - name: ( + - name: ) +- uid: System.Collections.Generic.List{System.String} + commentId: T:System.Collections.Generic.List{System.String} + parent: System.Collections.Generic + definition: System.Collections.Generic.List`1 + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 + name: List + nameWithType: List + fullName: System.Collections.Generic.List + nameWithType.vb: List(Of String) + fullName.vb: System.Collections.Generic.List(Of String) + name.vb: List(Of String) + spec.csharp: + - uid: System.Collections.Generic.List`1 + name: List + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 + - name: < + - uid: System.String + name: string + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: '>' + spec.vb: + - uid: System.Collections.Generic.List`1 + name: List + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 + - name: ( + - name: Of + - name: " " + - uid: System.String + name: String + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ) +- uid: System.Collections.Generic.List`1 + commentId: T:System.Collections.Generic.List`1 + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 + name: List + nameWithType: List + fullName: System.Collections.Generic.List + nameWithType.vb: List(Of T) + fullName.vb: System.Collections.Generic.List(Of T) + name.vb: List(Of T) + spec.csharp: + - uid: System.Collections.Generic.List`1 + name: List + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 + - name: < + - name: T + - name: '>' + spec.vb: + - uid: System.Collections.Generic.List`1 + name: List + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 + - name: ( + - name: Of + - name: " " + - name: T + - name: ) +- uid: System.Collections.Generic + commentId: N:System.Collections.Generic + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System.Collections.Generic + nameWithType: System.Collections.Generic + fullName: System.Collections.Generic + spec.csharp: + - uid: System + name: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + - name: . + - uid: System.Collections + name: Collections + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections + - name: . + - uid: System.Collections.Generic + name: Generic + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic + spec.vb: + - uid: System + name: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + - name: . + - uid: System.Collections + name: Collections + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections + - name: . + - uid: System.Collections.Generic + name: Generic + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic +- uid: OpenTK.Platform.SaveDialogOptions + commentId: T:OpenTK.Platform.SaveDialogOptions + parent: OpenTK.Platform + href: OpenTK.Platform.SaveDialogOptions.html + name: SaveDialogOptions + nameWithType: SaveDialogOptions + fullName: OpenTK.Platform.SaveDialogOptions +- uid: OpenTK.Platform.IDialogComponent.ShowSaveDialog* + commentId: Overload:OpenTK.Platform.IDialogComponent.ShowSaveDialog + href: OpenTK.Platform.IDialogComponent.html#OpenTK_Platform_IDialogComponent_ShowSaveDialog_OpenTK_Platform_WindowHandle_System_String_System_String_OpenTK_Platform_DialogFileFilter___OpenTK_Platform_SaveDialogOptions_ + name: ShowSaveDialog + nameWithType: IDialogComponent.ShowSaveDialog + fullName: OpenTK.Platform.IDialogComponent.ShowSaveDialog diff --git a/api/OpenTK.Platform.IDisplayComponent.yml b/api/OpenTK.Platform.IDisplayComponent.yml new file mode 100644 index 00000000..448ee1b3 --- /dev/null +++ b/api/OpenTK.Platform.IDisplayComponent.yml @@ -0,0 +1,894 @@ +### YamlMime:ManagedReference +items: +- uid: OpenTK.Platform.IDisplayComponent + commentId: T:OpenTK.Platform.IDisplayComponent + id: IDisplayComponent + parent: OpenTK.Platform + children: + - OpenTK.Platform.IDisplayComponent.CanGetVirtualPosition + - OpenTK.Platform.IDisplayComponent.Close(OpenTK.Platform.DisplayHandle) + - OpenTK.Platform.IDisplayComponent.GetDisplayCount + - OpenTK.Platform.IDisplayComponent.GetDisplayScale(OpenTK.Platform.DisplayHandle,System.Single@,System.Single@) + - OpenTK.Platform.IDisplayComponent.GetName(OpenTK.Platform.DisplayHandle) + - OpenTK.Platform.IDisplayComponent.GetRefreshRate(OpenTK.Platform.DisplayHandle,System.Single@) + - OpenTK.Platform.IDisplayComponent.GetResolution(OpenTK.Platform.DisplayHandle,System.Int32@,System.Int32@) + - OpenTK.Platform.IDisplayComponent.GetSupportedVideoModes(OpenTK.Platform.DisplayHandle) + - OpenTK.Platform.IDisplayComponent.GetVideoMode(OpenTK.Platform.DisplayHandle,OpenTK.Platform.VideoMode@) + - OpenTK.Platform.IDisplayComponent.GetVirtualPosition(OpenTK.Platform.DisplayHandle,System.Int32@,System.Int32@) + - OpenTK.Platform.IDisplayComponent.GetWorkArea(OpenTK.Platform.DisplayHandle,OpenTK.Mathematics.Box2i@) + - OpenTK.Platform.IDisplayComponent.IsPrimary(OpenTK.Platform.DisplayHandle) + - OpenTK.Platform.IDisplayComponent.Open(System.Int32) + - OpenTK.Platform.IDisplayComponent.OpenPrimary + langs: + - csharp + - vb + name: IDisplayComponent + nameWithType: IDisplayComponent + fullName: OpenTK.Platform.IDisplayComponent + type: Interface + source: + id: IDisplayComponent + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IDisplayComponent.cs + startLine: 8 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Interface for drivers which provide the display component. + example: [] + syntax: + content: 'public interface IDisplayComponent : IPalComponent' + content.vb: Public Interface IDisplayComponent Inherits IPalComponent + inheritedMembers: + - OpenTK.Platform.IPalComponent.Name + - OpenTK.Platform.IPalComponent.Provides + - OpenTK.Platform.IPalComponent.Logger + - OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) +- uid: OpenTK.Platform.IDisplayComponent.CanGetVirtualPosition + commentId: P:OpenTK.Platform.IDisplayComponent.CanGetVirtualPosition + id: CanGetVirtualPosition + parent: OpenTK.Platform.IDisplayComponent + langs: + - csharp + - vb + name: CanGetVirtualPosition + nameWithType: IDisplayComponent.CanGetVirtualPosition + fullName: OpenTK.Platform.IDisplayComponent.CanGetVirtualPosition + type: Property + source: + id: CanGetVirtualPosition + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IDisplayComponent.cs + startLine: 15 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: True if the driver can get the virtual position of the display using . + example: [] + syntax: + content: bool CanGetVirtualPosition { get; } + parameters: [] + return: + type: System.Boolean + content.vb: ReadOnly Property CanGetVirtualPosition As Boolean + overload: OpenTK.Platform.IDisplayComponent.CanGetVirtualPosition* +- uid: OpenTK.Platform.IDisplayComponent.GetDisplayCount + commentId: M:OpenTK.Platform.IDisplayComponent.GetDisplayCount + id: GetDisplayCount + parent: OpenTK.Platform.IDisplayComponent + langs: + - csharp + - vb + name: GetDisplayCount() + nameWithType: IDisplayComponent.GetDisplayCount() + fullName: OpenTK.Platform.IDisplayComponent.GetDisplayCount() + type: Method + source: + id: GetDisplayCount + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IDisplayComponent.cs + startLine: 21 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Get the number of available displays. + example: [] + syntax: + content: int GetDisplayCount() + return: + type: System.Int32 + description: Number of displays available. + content.vb: Function GetDisplayCount() As Integer + overload: OpenTK.Platform.IDisplayComponent.GetDisplayCount* +- uid: OpenTK.Platform.IDisplayComponent.Open(System.Int32) + commentId: M:OpenTK.Platform.IDisplayComponent.Open(System.Int32) + id: Open(System.Int32) + parent: OpenTK.Platform.IDisplayComponent + langs: + - csharp + - vb + name: Open(int) + nameWithType: IDisplayComponent.Open(int) + fullName: OpenTK.Platform.IDisplayComponent.Open(int) + type: Method + source: + id: Open + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IDisplayComponent.cs + startLine: 34 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Create a display handle to the indexed display. + example: [] + syntax: + content: DisplayHandle Open(int index) + parameters: + - id: index + type: System.Int32 + description: The display index to create a display handle to. + return: + type: OpenTK.Platform.DisplayHandle + description: Handle to the display. + content.vb: Function Open(index As Integer) As DisplayHandle + overload: OpenTK.Platform.IDisplayComponent.Open* + exceptions: + - type: System.ArgumentOutOfRangeException + commentId: T:System.ArgumentOutOfRangeException + description: index is out of range. + nameWithType.vb: IDisplayComponent.Open(Integer) + fullName.vb: OpenTK.Platform.IDisplayComponent.Open(Integer) + name.vb: Open(Integer) +- uid: OpenTK.Platform.IDisplayComponent.OpenPrimary + commentId: M:OpenTK.Platform.IDisplayComponent.OpenPrimary + id: OpenPrimary + parent: OpenTK.Platform.IDisplayComponent + langs: + - csharp + - vb + name: OpenPrimary() + nameWithType: IDisplayComponent.OpenPrimary() + fullName: OpenTK.Platform.IDisplayComponent.OpenPrimary() + type: Method + source: + id: OpenPrimary + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IDisplayComponent.cs + startLine: 40 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Create a display handle to the primary display. + example: [] + syntax: + content: DisplayHandle OpenPrimary() + return: + type: OpenTK.Platform.DisplayHandle + description: Handle to the primary display. + content.vb: Function OpenPrimary() As DisplayHandle + overload: OpenTK.Platform.IDisplayComponent.OpenPrimary* +- uid: OpenTK.Platform.IDisplayComponent.Close(OpenTK.Platform.DisplayHandle) + commentId: M:OpenTK.Platform.IDisplayComponent.Close(OpenTK.Platform.DisplayHandle) + id: Close(OpenTK.Platform.DisplayHandle) + parent: OpenTK.Platform.IDisplayComponent + langs: + - csharp + - vb + name: Close(DisplayHandle) + nameWithType: IDisplayComponent.Close(DisplayHandle) + fullName: OpenTK.Platform.IDisplayComponent.Close(OpenTK.Platform.DisplayHandle) + type: Method + source: + id: Close + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IDisplayComponent.cs + startLine: 47 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Close a display handle. + example: [] + syntax: + content: void Close(DisplayHandle handle) + parameters: + - id: handle + type: OpenTK.Platform.DisplayHandle + description: Handle to a display. + content.vb: Sub Close(handle As DisplayHandle) + overload: OpenTK.Platform.IDisplayComponent.Close* + exceptions: + - type: System.ArgumentNullException + commentId: T:System.ArgumentNullException + description: handle is null. +- uid: OpenTK.Platform.IDisplayComponent.IsPrimary(OpenTK.Platform.DisplayHandle) + commentId: M:OpenTK.Platform.IDisplayComponent.IsPrimary(OpenTK.Platform.DisplayHandle) + id: IsPrimary(OpenTK.Platform.DisplayHandle) + parent: OpenTK.Platform.IDisplayComponent + langs: + - csharp + - vb + name: IsPrimary(DisplayHandle) + nameWithType: IDisplayComponent.IsPrimary(DisplayHandle) + fullName: OpenTK.Platform.IDisplayComponent.IsPrimary(OpenTK.Platform.DisplayHandle) + type: Method + source: + id: IsPrimary + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IDisplayComponent.cs + startLine: 54 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Checks if a display is the primary display or not. + example: [] + syntax: + content: bool IsPrimary(DisplayHandle handle) + parameters: + - id: handle + type: OpenTK.Platform.DisplayHandle + description: The display to check whether or not is the primary display. + return: + type: System.Boolean + description: If this display is the primary display. + content.vb: Function IsPrimary(handle As DisplayHandle) As Boolean + overload: OpenTK.Platform.IDisplayComponent.IsPrimary* +- uid: OpenTK.Platform.IDisplayComponent.GetName(OpenTK.Platform.DisplayHandle) + commentId: M:OpenTK.Platform.IDisplayComponent.GetName(OpenTK.Platform.DisplayHandle) + id: GetName(OpenTK.Platform.DisplayHandle) + parent: OpenTK.Platform.IDisplayComponent + langs: + - csharp + - vb + name: GetName(DisplayHandle) + nameWithType: IDisplayComponent.GetName(DisplayHandle) + fullName: OpenTK.Platform.IDisplayComponent.GetName(OpenTK.Platform.DisplayHandle) + type: Method + source: + id: GetName + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IDisplayComponent.cs + startLine: 62 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Get the friendly name of a display. + example: [] + syntax: + content: string GetName(DisplayHandle handle) + parameters: + - id: handle + type: OpenTK.Platform.DisplayHandle + description: Handle to a display. + return: + type: System.String + description: Display name. + content.vb: Function GetName(handle As DisplayHandle) As String + overload: OpenTK.Platform.IDisplayComponent.GetName* + exceptions: + - type: System.ArgumentNullException + commentId: T:System.ArgumentNullException + description: handle is null. +- uid: OpenTK.Platform.IDisplayComponent.GetVideoMode(OpenTK.Platform.DisplayHandle,OpenTK.Platform.VideoMode@) + commentId: M:OpenTK.Platform.IDisplayComponent.GetVideoMode(OpenTK.Platform.DisplayHandle,OpenTK.Platform.VideoMode@) + id: GetVideoMode(OpenTK.Platform.DisplayHandle,OpenTK.Platform.VideoMode@) + parent: OpenTK.Platform.IDisplayComponent + langs: + - csharp + - vb + name: GetVideoMode(DisplayHandle, out VideoMode) + nameWithType: IDisplayComponent.GetVideoMode(DisplayHandle, out VideoMode) + fullName: OpenTK.Platform.IDisplayComponent.GetVideoMode(OpenTK.Platform.DisplayHandle, out OpenTK.Platform.VideoMode) + type: Method + source: + id: GetVideoMode + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IDisplayComponent.cs + startLine: 70 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Get the active video mode of a display. + example: [] + syntax: + content: void GetVideoMode(DisplayHandle handle, out VideoMode mode) + parameters: + - id: handle + type: OpenTK.Platform.DisplayHandle + description: Handle to a display. + - id: mode + type: OpenTK.Platform.VideoMode + description: Active video mode of display. + content.vb: Sub GetVideoMode(handle As DisplayHandle, mode As VideoMode) + overload: OpenTK.Platform.IDisplayComponent.GetVideoMode* + exceptions: + - type: System.ArgumentNullException + commentId: T:System.ArgumentNullException + description: handle is null. + nameWithType.vb: IDisplayComponent.GetVideoMode(DisplayHandle, VideoMode) + fullName.vb: OpenTK.Platform.IDisplayComponent.GetVideoMode(OpenTK.Platform.DisplayHandle, OpenTK.Platform.VideoMode) + name.vb: GetVideoMode(DisplayHandle, VideoMode) +- uid: OpenTK.Platform.IDisplayComponent.GetSupportedVideoModes(OpenTK.Platform.DisplayHandle) + commentId: M:OpenTK.Platform.IDisplayComponent.GetSupportedVideoModes(OpenTK.Platform.DisplayHandle) + id: GetSupportedVideoModes(OpenTK.Platform.DisplayHandle) + parent: OpenTK.Platform.IDisplayComponent + langs: + - csharp + - vb + name: GetSupportedVideoModes(DisplayHandle) + nameWithType: IDisplayComponent.GetSupportedVideoModes(DisplayHandle) + fullName: OpenTK.Platform.IDisplayComponent.GetSupportedVideoModes(OpenTK.Platform.DisplayHandle) + type: Method + source: + id: GetSupportedVideoModes + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IDisplayComponent.cs + startLine: 78 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Get all supported video modes for a specific display. + example: [] + syntax: + content: VideoMode[] GetSupportedVideoModes(DisplayHandle handle) + parameters: + - id: handle + type: OpenTK.Platform.DisplayHandle + description: Handle to a display. + return: + type: OpenTK.Platform.VideoMode[] + description: An array of all supported video modes. + content.vb: Function GetSupportedVideoModes(handle As DisplayHandle) As VideoMode() + overload: OpenTK.Platform.IDisplayComponent.GetSupportedVideoModes* + exceptions: + - type: System.ArgumentNullException + commentId: T:System.ArgumentNullException + description: handle is null. +- uid: OpenTK.Platform.IDisplayComponent.GetVirtualPosition(OpenTK.Platform.DisplayHandle,System.Int32@,System.Int32@) + commentId: M:OpenTK.Platform.IDisplayComponent.GetVirtualPosition(OpenTK.Platform.DisplayHandle,System.Int32@,System.Int32@) + id: GetVirtualPosition(OpenTK.Platform.DisplayHandle,System.Int32@,System.Int32@) + parent: OpenTK.Platform.IDisplayComponent + langs: + - csharp + - vb + name: GetVirtualPosition(DisplayHandle, out int, out int) + nameWithType: IDisplayComponent.GetVirtualPosition(DisplayHandle, out int, out int) + fullName: OpenTK.Platform.IDisplayComponent.GetVirtualPosition(OpenTK.Platform.DisplayHandle, out int, out int) + type: Method + source: + id: GetVirtualPosition + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IDisplayComponent.cs + startLine: 88 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Get the position of the display in the virtual desktop. + example: [] + syntax: + content: void GetVirtualPosition(DisplayHandle handle, out int x, out int y) + parameters: + - id: handle + type: OpenTK.Platform.DisplayHandle + description: Handle to a display. + - id: x + type: System.Int32 + description: Virtual X coordinate of the display. + - id: y + type: System.Int32 + description: Virtual Y coordinate of the display. + content.vb: Sub GetVirtualPosition(handle As DisplayHandle, x As Integer, y As Integer) + overload: OpenTK.Platform.IDisplayComponent.GetVirtualPosition* + exceptions: + - type: System.ArgumentNullException + commentId: T:System.ArgumentNullException + description: handle is null. + - type: OpenTK.Platform.PalNotImplementedException + commentId: T:OpenTK.Platform.PalNotImplementedException + description: Driver cannot get display virtual position. See . + nameWithType.vb: IDisplayComponent.GetVirtualPosition(DisplayHandle, Integer, Integer) + fullName.vb: OpenTK.Platform.IDisplayComponent.GetVirtualPosition(OpenTK.Platform.DisplayHandle, Integer, Integer) + name.vb: GetVirtualPosition(DisplayHandle, Integer, Integer) +- uid: OpenTK.Platform.IDisplayComponent.GetResolution(OpenTK.Platform.DisplayHandle,System.Int32@,System.Int32@) + commentId: M:OpenTK.Platform.IDisplayComponent.GetResolution(OpenTK.Platform.DisplayHandle,System.Int32@,System.Int32@) + id: GetResolution(OpenTK.Platform.DisplayHandle,System.Int32@,System.Int32@) + parent: OpenTK.Platform.IDisplayComponent + langs: + - csharp + - vb + name: GetResolution(DisplayHandle, out int, out int) + nameWithType: IDisplayComponent.GetResolution(DisplayHandle, out int, out int) + fullName: OpenTK.Platform.IDisplayComponent.GetResolution(OpenTK.Platform.DisplayHandle, out int, out int) + type: Method + source: + id: GetResolution + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IDisplayComponent.cs + startLine: 97 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Get the resolution of the specified display. + example: [] + syntax: + content: void GetResolution(DisplayHandle handle, out int width, out int height) + parameters: + - id: handle + type: OpenTK.Platform.DisplayHandle + description: Handle to a display. + - id: width + type: System.Int32 + description: The horizontal resolution of the display. + - id: height + type: System.Int32 + description: The vertical resolution of the display. + content.vb: Sub GetResolution(handle As DisplayHandle, width As Integer, height As Integer) + overload: OpenTK.Platform.IDisplayComponent.GetResolution* + exceptions: + - type: System.ArgumentNullException + commentId: T:System.ArgumentNullException + description: handle is null. + nameWithType.vb: IDisplayComponent.GetResolution(DisplayHandle, Integer, Integer) + fullName.vb: OpenTK.Platform.IDisplayComponent.GetResolution(OpenTK.Platform.DisplayHandle, Integer, Integer) + name.vb: GetResolution(DisplayHandle, Integer, Integer) +- uid: OpenTK.Platform.IDisplayComponent.GetWorkArea(OpenTK.Platform.DisplayHandle,OpenTK.Mathematics.Box2i@) + commentId: M:OpenTK.Platform.IDisplayComponent.GetWorkArea(OpenTK.Platform.DisplayHandle,OpenTK.Mathematics.Box2i@) + id: GetWorkArea(OpenTK.Platform.DisplayHandle,OpenTK.Mathematics.Box2i@) + parent: OpenTK.Platform.IDisplayComponent + langs: + - csharp + - vb + name: GetWorkArea(DisplayHandle, out Box2i) + nameWithType: IDisplayComponent.GetWorkArea(DisplayHandle, out Box2i) + fullName: OpenTK.Platform.IDisplayComponent.GetWorkArea(OpenTK.Platform.DisplayHandle, out OpenTK.Mathematics.Box2i) + type: Method + source: + id: GetWorkArea + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IDisplayComponent.cs + startLine: 105 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: >- + Get the work area of this display. + + The work area is the area of the display that is not covered by task bars or menu bars. + example: [] + syntax: + content: void GetWorkArea(DisplayHandle handle, out Box2i area) + parameters: + - id: handle + type: OpenTK.Platform.DisplayHandle + description: Handle to a display. + - id: area + type: OpenTK.Mathematics.Box2i + description: The work area of the display. + content.vb: Sub GetWorkArea(handle As DisplayHandle, area As Box2i) + overload: OpenTK.Platform.IDisplayComponent.GetWorkArea* + nameWithType.vb: IDisplayComponent.GetWorkArea(DisplayHandle, Box2i) + fullName.vb: OpenTK.Platform.IDisplayComponent.GetWorkArea(OpenTK.Platform.DisplayHandle, OpenTK.Mathematics.Box2i) + name.vb: GetWorkArea(DisplayHandle, Box2i) +- uid: OpenTK.Platform.IDisplayComponent.GetRefreshRate(OpenTK.Platform.DisplayHandle,System.Single@) + commentId: M:OpenTK.Platform.IDisplayComponent.GetRefreshRate(OpenTK.Platform.DisplayHandle,System.Single@) + id: GetRefreshRate(OpenTK.Platform.DisplayHandle,System.Single@) + parent: OpenTK.Platform.IDisplayComponent + langs: + - csharp + - vb + name: GetRefreshRate(DisplayHandle, out float) + nameWithType: IDisplayComponent.GetRefreshRate(DisplayHandle, out float) + fullName: OpenTK.Platform.IDisplayComponent.GetRefreshRate(OpenTK.Platform.DisplayHandle, out float) + type: Method + source: + id: GetRefreshRate + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IDisplayComponent.cs + startLine: 112 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Get the refresh rate if the specified display. + example: [] + syntax: + content: void GetRefreshRate(DisplayHandle handle, out float refreshRate) + parameters: + - id: handle + type: OpenTK.Platform.DisplayHandle + description: Handle to a display. + - id: refreshRate + type: System.Single + description: The refresh rate of the display. + content.vb: Sub GetRefreshRate(handle As DisplayHandle, refreshRate As Single) + overload: OpenTK.Platform.IDisplayComponent.GetRefreshRate* + nameWithType.vb: IDisplayComponent.GetRefreshRate(DisplayHandle, Single) + fullName.vb: OpenTK.Platform.IDisplayComponent.GetRefreshRate(OpenTK.Platform.DisplayHandle, Single) + name.vb: GetRefreshRate(DisplayHandle, Single) +- uid: OpenTK.Platform.IDisplayComponent.GetDisplayScale(OpenTK.Platform.DisplayHandle,System.Single@,System.Single@) + commentId: M:OpenTK.Platform.IDisplayComponent.GetDisplayScale(OpenTK.Platform.DisplayHandle,System.Single@,System.Single@) + id: GetDisplayScale(OpenTK.Platform.DisplayHandle,System.Single@,System.Single@) + parent: OpenTK.Platform.IDisplayComponent + langs: + - csharp + - vb + name: GetDisplayScale(DisplayHandle, out float, out float) + nameWithType: IDisplayComponent.GetDisplayScale(DisplayHandle, out float, out float) + fullName: OpenTK.Platform.IDisplayComponent.GetDisplayScale(OpenTK.Platform.DisplayHandle, out float, out float) + type: Method + source: + id: GetDisplayScale + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IDisplayComponent.cs + startLine: 120 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Get the scale of the display. + example: [] + syntax: + content: void GetDisplayScale(DisplayHandle handle, out float scaleX, out float scaleY) + parameters: + - id: handle + type: OpenTK.Platform.DisplayHandle + description: Handle to a display. + - id: scaleX + type: System.Single + description: The X-axis scale of the monitor. + - id: scaleY + type: System.Single + description: The Y-axis scale of the monitor. + content.vb: Sub GetDisplayScale(handle As DisplayHandle, scaleX As Single, scaleY As Single) + overload: OpenTK.Platform.IDisplayComponent.GetDisplayScale* + nameWithType.vb: IDisplayComponent.GetDisplayScale(DisplayHandle, Single, Single) + fullName.vb: OpenTK.Platform.IDisplayComponent.GetDisplayScale(OpenTK.Platform.DisplayHandle, Single, Single) + name.vb: GetDisplayScale(DisplayHandle, Single, Single) +references: +- uid: OpenTK.Platform + commentId: N:OpenTK.Platform + href: OpenTK.html + name: OpenTK.Platform + nameWithType: OpenTK.Platform + fullName: OpenTK.Platform + spec.csharp: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Platform + name: Platform + href: OpenTK.Platform.html + spec.vb: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Platform + name: Platform + href: OpenTK.Platform.html +- uid: OpenTK.Platform.IPalComponent.Name + commentId: P:OpenTK.Platform.IPalComponent.Name + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Name + name: Name + nameWithType: IPalComponent.Name + fullName: OpenTK.Platform.IPalComponent.Name +- uid: OpenTK.Platform.IPalComponent.Provides + commentId: P:OpenTK.Platform.IPalComponent.Provides + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Provides + name: Provides + nameWithType: IPalComponent.Provides + fullName: OpenTK.Platform.IPalComponent.Provides +- uid: OpenTK.Platform.IPalComponent.Logger + commentId: P:OpenTK.Platform.IPalComponent.Logger + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Logger + name: Logger + nameWithType: IPalComponent.Logger + fullName: OpenTK.Platform.IPalComponent.Logger +- uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ + name: Initialize(ToolkitOptions) + nameWithType: IPalComponent.Initialize(ToolkitOptions) + fullName: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + spec.csharp: + - uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + name: Initialize + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ + - name: ( + - uid: OpenTK.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Platform.ToolkitOptions.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + name: Initialize + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ + - name: ( + - uid: OpenTK.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Platform.ToolkitOptions.html + - name: ) +- uid: OpenTK.Platform.IPalComponent + commentId: T:OpenTK.Platform.IPalComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IPalComponent.html + name: IPalComponent + nameWithType: IPalComponent + fullName: OpenTK.Platform.IPalComponent +- uid: OpenTK.Platform.IDisplayComponent.GetVirtualPosition(OpenTK.Platform.DisplayHandle,System.Int32@,System.Int32@) + commentId: M:OpenTK.Platform.IDisplayComponent.GetVirtualPosition(OpenTK.Platform.DisplayHandle,System.Int32@,System.Int32@) + parent: OpenTK.Platform.IDisplayComponent + isExternal: true + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_GetVirtualPosition_OpenTK_Platform_DisplayHandle_System_Int32__System_Int32__ + name: GetVirtualPosition(DisplayHandle, out int, out int) + nameWithType: IDisplayComponent.GetVirtualPosition(DisplayHandle, out int, out int) + fullName: OpenTK.Platform.IDisplayComponent.GetVirtualPosition(OpenTK.Platform.DisplayHandle, out int, out int) + nameWithType.vb: IDisplayComponent.GetVirtualPosition(DisplayHandle, Integer, Integer) + fullName.vb: OpenTK.Platform.IDisplayComponent.GetVirtualPosition(OpenTK.Platform.DisplayHandle, Integer, Integer) + name.vb: GetVirtualPosition(DisplayHandle, Integer, Integer) + spec.csharp: + - uid: OpenTK.Platform.IDisplayComponent.GetVirtualPosition(OpenTK.Platform.DisplayHandle,System.Int32@,System.Int32@) + name: GetVirtualPosition + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_GetVirtualPosition_OpenTK_Platform_DisplayHandle_System_Int32__System_Int32__ + - name: ( + - uid: OpenTK.Platform.DisplayHandle + name: DisplayHandle + href: OpenTK.Platform.DisplayHandle.html + - name: ',' + - name: " " + - name: out + - name: " " + - uid: System.Int32 + name: int + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ',' + - name: " " + - name: out + - name: " " + - uid: System.Int32 + name: int + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ) + spec.vb: + - uid: OpenTK.Platform.IDisplayComponent.GetVirtualPosition(OpenTK.Platform.DisplayHandle,System.Int32@,System.Int32@) + name: GetVirtualPosition + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_GetVirtualPosition_OpenTK_Platform_DisplayHandle_System_Int32__System_Int32__ + - name: ( + - uid: OpenTK.Platform.DisplayHandle + name: DisplayHandle + href: OpenTK.Platform.DisplayHandle.html + - name: ',' + - name: " " + - uid: System.Int32 + name: Integer + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ',' + - name: " " + - uid: System.Int32 + name: Integer + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ) +- uid: OpenTK.Platform.IDisplayComponent.CanGetVirtualPosition* + commentId: Overload:OpenTK.Platform.IDisplayComponent.CanGetVirtualPosition + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_CanGetVirtualPosition + name: CanGetVirtualPosition + nameWithType: IDisplayComponent.CanGetVirtualPosition + fullName: OpenTK.Platform.IDisplayComponent.CanGetVirtualPosition +- uid: System.Boolean + commentId: T:System.Boolean + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + name: bool + nameWithType: bool + fullName: bool + nameWithType.vb: Boolean + fullName.vb: Boolean + name.vb: Boolean +- uid: OpenTK.Platform.IDisplayComponent + commentId: T:OpenTK.Platform.IDisplayComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IDisplayComponent.html + name: IDisplayComponent + nameWithType: IDisplayComponent + fullName: OpenTK.Platform.IDisplayComponent +- uid: System + commentId: N:System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System + nameWithType: System + fullName: System +- uid: OpenTK.Platform.IDisplayComponent.GetDisplayCount* + commentId: Overload:OpenTK.Platform.IDisplayComponent.GetDisplayCount + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_GetDisplayCount + name: GetDisplayCount + nameWithType: IDisplayComponent.GetDisplayCount + fullName: OpenTK.Platform.IDisplayComponent.GetDisplayCount +- uid: System.Int32 + commentId: T:System.Int32 + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + name: int + nameWithType: int + fullName: int + nameWithType.vb: Integer + fullName.vb: Integer + name.vb: Integer +- uid: System.ArgumentOutOfRangeException + commentId: T:System.ArgumentOutOfRangeException + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.argumentoutofrangeexception + name: ArgumentOutOfRangeException + nameWithType: ArgumentOutOfRangeException + fullName: System.ArgumentOutOfRangeException +- uid: OpenTK.Platform.IDisplayComponent.Open* + commentId: Overload:OpenTK.Platform.IDisplayComponent.Open + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_Open_System_Int32_ + name: Open + nameWithType: IDisplayComponent.Open + fullName: OpenTK.Platform.IDisplayComponent.Open +- uid: OpenTK.Platform.DisplayHandle + commentId: T:OpenTK.Platform.DisplayHandle + parent: OpenTK.Platform + href: OpenTK.Platform.DisplayHandle.html + name: DisplayHandle + nameWithType: DisplayHandle + fullName: OpenTK.Platform.DisplayHandle +- uid: OpenTK.Platform.IDisplayComponent.OpenPrimary* + commentId: Overload:OpenTK.Platform.IDisplayComponent.OpenPrimary + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_OpenPrimary + name: OpenPrimary + nameWithType: IDisplayComponent.OpenPrimary + fullName: OpenTK.Platform.IDisplayComponent.OpenPrimary +- uid: System.ArgumentNullException + commentId: T:System.ArgumentNullException + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.argumentnullexception + name: ArgumentNullException + nameWithType: ArgumentNullException + fullName: System.ArgumentNullException +- uid: OpenTK.Platform.IDisplayComponent.Close* + commentId: Overload:OpenTK.Platform.IDisplayComponent.Close + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_Close_OpenTK_Platform_DisplayHandle_ + name: Close + nameWithType: IDisplayComponent.Close + fullName: OpenTK.Platform.IDisplayComponent.Close +- uid: OpenTK.Platform.IDisplayComponent.IsPrimary* + commentId: Overload:OpenTK.Platform.IDisplayComponent.IsPrimary + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_IsPrimary_OpenTK_Platform_DisplayHandle_ + name: IsPrimary + nameWithType: IDisplayComponent.IsPrimary + fullName: OpenTK.Platform.IDisplayComponent.IsPrimary +- uid: OpenTK.Platform.IDisplayComponent.GetName* + commentId: Overload:OpenTK.Platform.IDisplayComponent.GetName + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_GetName_OpenTK_Platform_DisplayHandle_ + name: GetName + nameWithType: IDisplayComponent.GetName + fullName: OpenTK.Platform.IDisplayComponent.GetName +- uid: System.String + commentId: T:System.String + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + name: string + nameWithType: string + fullName: string + nameWithType.vb: String + fullName.vb: String + name.vb: String +- uid: OpenTK.Platform.IDisplayComponent.GetVideoMode* + commentId: Overload:OpenTK.Platform.IDisplayComponent.GetVideoMode + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_GetVideoMode_OpenTK_Platform_DisplayHandle_OpenTK_Platform_VideoMode__ + name: GetVideoMode + nameWithType: IDisplayComponent.GetVideoMode + fullName: OpenTK.Platform.IDisplayComponent.GetVideoMode +- uid: OpenTK.Platform.VideoMode + commentId: T:OpenTK.Platform.VideoMode + parent: OpenTK.Platform + href: OpenTK.Platform.VideoMode.html + name: VideoMode + nameWithType: VideoMode + fullName: OpenTK.Platform.VideoMode +- uid: OpenTK.Platform.IDisplayComponent.GetSupportedVideoModes* + commentId: Overload:OpenTK.Platform.IDisplayComponent.GetSupportedVideoModes + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_GetSupportedVideoModes_OpenTK_Platform_DisplayHandle_ + name: GetSupportedVideoModes + nameWithType: IDisplayComponent.GetSupportedVideoModes + fullName: OpenTK.Platform.IDisplayComponent.GetSupportedVideoModes +- uid: OpenTK.Platform.VideoMode[] + isExternal: true + href: OpenTK.Platform.VideoMode.html + name: VideoMode[] + nameWithType: VideoMode[] + fullName: OpenTK.Platform.VideoMode[] + nameWithType.vb: VideoMode() + fullName.vb: OpenTK.Platform.VideoMode() + name.vb: VideoMode() + spec.csharp: + - uid: OpenTK.Platform.VideoMode + name: VideoMode + href: OpenTK.Platform.VideoMode.html + - name: '[' + - name: ']' + spec.vb: + - uid: OpenTK.Platform.VideoMode + name: VideoMode + href: OpenTK.Platform.VideoMode.html + - name: ( + - name: ) +- uid: OpenTK.Platform.IDisplayComponent.CanGetVirtualPosition + commentId: P:OpenTK.Platform.IDisplayComponent.CanGetVirtualPosition + parent: OpenTK.Platform.IDisplayComponent + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_CanGetVirtualPosition + name: CanGetVirtualPosition + nameWithType: IDisplayComponent.CanGetVirtualPosition + fullName: OpenTK.Platform.IDisplayComponent.CanGetVirtualPosition +- uid: OpenTK.Platform.PalNotImplementedException + commentId: T:OpenTK.Platform.PalNotImplementedException + href: OpenTK.Platform.PalNotImplementedException.html + name: PalNotImplementedException + nameWithType: PalNotImplementedException + fullName: OpenTK.Platform.PalNotImplementedException +- uid: OpenTK.Platform.IDisplayComponent.GetVirtualPosition* + commentId: Overload:OpenTK.Platform.IDisplayComponent.GetVirtualPosition + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_GetVirtualPosition_OpenTK_Platform_DisplayHandle_System_Int32__System_Int32__ + name: GetVirtualPosition + nameWithType: IDisplayComponent.GetVirtualPosition + fullName: OpenTK.Platform.IDisplayComponent.GetVirtualPosition +- uid: OpenTK.Platform.IDisplayComponent.GetResolution* + commentId: Overload:OpenTK.Platform.IDisplayComponent.GetResolution + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_GetResolution_OpenTK_Platform_DisplayHandle_System_Int32__System_Int32__ + name: GetResolution + nameWithType: IDisplayComponent.GetResolution + fullName: OpenTK.Platform.IDisplayComponent.GetResolution +- uid: OpenTK.Platform.IDisplayComponent.GetWorkArea* + commentId: Overload:OpenTK.Platform.IDisplayComponent.GetWorkArea + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_GetWorkArea_OpenTK_Platform_DisplayHandle_OpenTK_Mathematics_Box2i__ + name: GetWorkArea + nameWithType: IDisplayComponent.GetWorkArea + fullName: OpenTK.Platform.IDisplayComponent.GetWorkArea +- uid: OpenTK.Mathematics.Box2i + commentId: T:OpenTK.Mathematics.Box2i + parent: OpenTK.Mathematics + href: OpenTK.Mathematics.Box2i.html + name: Box2i + nameWithType: Box2i + fullName: OpenTK.Mathematics.Box2i +- uid: OpenTK.Mathematics + commentId: N:OpenTK.Mathematics + href: OpenTK.html + name: OpenTK.Mathematics + nameWithType: OpenTK.Mathematics + fullName: OpenTK.Mathematics + spec.csharp: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Mathematics + name: Mathematics + href: OpenTK.Mathematics.html + spec.vb: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Mathematics + name: Mathematics + href: OpenTK.Mathematics.html +- uid: OpenTK.Platform.IDisplayComponent.GetRefreshRate* + commentId: Overload:OpenTK.Platform.IDisplayComponent.GetRefreshRate + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_GetRefreshRate_OpenTK_Platform_DisplayHandle_System_Single__ + name: GetRefreshRate + nameWithType: IDisplayComponent.GetRefreshRate + fullName: OpenTK.Platform.IDisplayComponent.GetRefreshRate +- uid: System.Single + commentId: T:System.Single + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.single + name: float + nameWithType: float + fullName: float + nameWithType.vb: Single + fullName.vb: Single + name.vb: Single +- uid: OpenTK.Platform.IDisplayComponent.GetDisplayScale* + commentId: Overload:OpenTK.Platform.IDisplayComponent.GetDisplayScale + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_GetDisplayScale_OpenTK_Platform_DisplayHandle_System_Single__System_Single__ + name: GetDisplayScale + nameWithType: IDisplayComponent.GetDisplayScale + fullName: OpenTK.Platform.IDisplayComponent.GetDisplayScale diff --git a/api/OpenTK.Platform.IIconComponent.yml b/api/OpenTK.Platform.IIconComponent.yml new file mode 100644 index 00000000..41cf949d --- /dev/null +++ b/api/OpenTK.Platform.IIconComponent.yml @@ -0,0 +1,471 @@ +### YamlMime:ManagedReference +items: +- uid: OpenTK.Platform.IIconComponent + commentId: T:OpenTK.Platform.IIconComponent + id: IIconComponent + parent: OpenTK.Platform + children: + - OpenTK.Platform.IIconComponent.CanLoadSystemIcons + - OpenTK.Platform.IIconComponent.Create(OpenTK.Platform.SystemIconType) + - OpenTK.Platform.IIconComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte}) + - OpenTK.Platform.IIconComponent.Destroy(OpenTK.Platform.IconHandle) + - OpenTK.Platform.IIconComponent.GetSize(OpenTK.Platform.IconHandle,System.Int32@,System.Int32@) + langs: + - csharp + - vb + name: IIconComponent + nameWithType: IIconComponent + fullName: OpenTK.Platform.IIconComponent + type: Interface + source: + id: IIconComponent + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IIconComponent.cs + startLine: 8 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Interface for PAL drivers which provide the icon component. + example: [] + syntax: + content: 'public interface IIconComponent : IPalComponent' + content.vb: Public Interface IIconComponent Inherits IPalComponent + inheritedMembers: + - OpenTK.Platform.IPalComponent.Name + - OpenTK.Platform.IPalComponent.Provides + - OpenTK.Platform.IPalComponent.Logger + - OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) +- uid: OpenTK.Platform.IIconComponent.CanLoadSystemIcons + commentId: P:OpenTK.Platform.IIconComponent.CanLoadSystemIcons + id: CanLoadSystemIcons + parent: OpenTK.Platform.IIconComponent + langs: + - csharp + - vb + name: CanLoadSystemIcons + nameWithType: IIconComponent.CanLoadSystemIcons + fullName: OpenTK.Platform.IIconComponent.CanLoadSystemIcons + type: Property + source: + id: CanLoadSystemIcons + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IIconComponent.cs + startLine: 15 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: >- + True if icon objects can be populated from common system icons. + + If this is true, then will work, otherwise an exception will be thrown. + example: [] + syntax: + content: bool CanLoadSystemIcons { get; } + parameters: [] + return: + type: System.Boolean + content.vb: ReadOnly Property CanLoadSystemIcons As Boolean + overload: OpenTK.Platform.IIconComponent.CanLoadSystemIcons* + seealso: + - linkId: OpenTK.Platform.IIconComponent.Create(OpenTK.Platform.SystemIconType) + commentId: M:OpenTK.Platform.IIconComponent.Create(OpenTK.Platform.SystemIconType) +- uid: OpenTK.Platform.IIconComponent.Create(OpenTK.Platform.SystemIconType) + commentId: M:OpenTK.Platform.IIconComponent.Create(OpenTK.Platform.SystemIconType) + id: Create(OpenTK.Platform.SystemIconType) + parent: OpenTK.Platform.IIconComponent + langs: + - csharp + - vb + name: Create(SystemIconType) + nameWithType: IIconComponent.Create(SystemIconType) + fullName: OpenTK.Platform.IIconComponent.Create(OpenTK.Platform.SystemIconType) + type: Method + source: + id: Create + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IIconComponent.cs + startLine: 24 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: >- + Load a system icon. + + Only works if is true. + example: [] + syntax: + content: IconHandle Create(SystemIconType systemIcon) + parameters: + - id: systemIcon + type: OpenTK.Platform.SystemIconType + description: The system icon to create. + return: + type: OpenTK.Platform.IconHandle + description: A handle to the created system icon. + content.vb: Function Create(systemIcon As SystemIconType) As IconHandle + overload: OpenTK.Platform.IIconComponent.Create* + seealso: + - linkId: OpenTK.Platform.IIconComponent.CanLoadSystemIcons + commentId: P:OpenTK.Platform.IIconComponent.CanLoadSystemIcons +- uid: OpenTK.Platform.IIconComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte}) + commentId: M:OpenTK.Platform.IIconComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte}) + id: Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte}) + parent: OpenTK.Platform.IIconComponent + langs: + - csharp + - vb + name: Create(int, int, ReadOnlySpan) + nameWithType: IIconComponent.Create(int, int, ReadOnlySpan) + fullName: OpenTK.Platform.IIconComponent.Create(int, int, System.ReadOnlySpan) + type: Method + source: + id: Create + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IIconComponent.cs + startLine: 34 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Load an icon object with image data. + example: [] + syntax: + content: IconHandle Create(int width, int height, ReadOnlySpan data) + parameters: + - id: width + type: System.Int32 + description: Width of the bitmap. + - id: height + type: System.Int32 + description: Height of the bitmap. + - id: data + type: System.ReadOnlySpan{System.Byte} + description: Image data to load into icon. + return: + type: OpenTK.Platform.IconHandle + description: A handle to the created icon. + content.vb: Function Create(width As Integer, height As Integer, data As ReadOnlySpan(Of Byte)) As IconHandle + overload: OpenTK.Platform.IIconComponent.Create* + nameWithType.vb: IIconComponent.Create(Integer, Integer, ReadOnlySpan(Of Byte)) + fullName.vb: OpenTK.Platform.IIconComponent.Create(Integer, Integer, System.ReadOnlySpan(Of Byte)) + name.vb: Create(Integer, Integer, ReadOnlySpan(Of Byte)) +- uid: OpenTK.Platform.IIconComponent.Destroy(OpenTK.Platform.IconHandle) + commentId: M:OpenTK.Platform.IIconComponent.Destroy(OpenTK.Platform.IconHandle) + id: Destroy(OpenTK.Platform.IconHandle) + parent: OpenTK.Platform.IIconComponent + langs: + - csharp + - vb + name: Destroy(IconHandle) + nameWithType: IIconComponent.Destroy(IconHandle) + fullName: OpenTK.Platform.IIconComponent.Destroy(OpenTK.Platform.IconHandle) + type: Method + source: + id: Destroy + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IIconComponent.cs + startLine: 41 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Destroy an icon object. + example: [] + syntax: + content: void Destroy(IconHandle handle) + parameters: + - id: handle + type: OpenTK.Platform.IconHandle + description: Handle to the icon object to destroy. + content.vb: Sub Destroy(handle As IconHandle) + overload: OpenTK.Platform.IIconComponent.Destroy* + exceptions: + - type: System.ArgumentNullException + commentId: T:System.ArgumentNullException + description: handle is null. +- uid: OpenTK.Platform.IIconComponent.GetSize(OpenTK.Platform.IconHandle,System.Int32@,System.Int32@) + commentId: M:OpenTK.Platform.IIconComponent.GetSize(OpenTK.Platform.IconHandle,System.Int32@,System.Int32@) + id: GetSize(OpenTK.Platform.IconHandle,System.Int32@,System.Int32@) + parent: OpenTK.Platform.IIconComponent + langs: + - csharp + - vb + name: GetSize(IconHandle, out int, out int) + nameWithType: IIconComponent.GetSize(IconHandle, out int, out int) + fullName: OpenTK.Platform.IIconComponent.GetSize(OpenTK.Platform.IconHandle, out int, out int) + type: Method + source: + id: GetSize + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IIconComponent.cs + startLine: 50 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Get the dimensions of a icon object. + example: [] + syntax: + content: void GetSize(IconHandle handle, out int width, out int height) + parameters: + - id: handle + type: OpenTK.Platform.IconHandle + description: Handle to icon object. + - id: width + type: System.Int32 + description: Width of the icon. + - id: height + type: System.Int32 + description: Height of icon. + content.vb: Sub GetSize(handle As IconHandle, width As Integer, height As Integer) + overload: OpenTK.Platform.IIconComponent.GetSize* + exceptions: + - type: System.ArgumentNullException + commentId: T:System.ArgumentNullException + description: handle is null. + nameWithType.vb: IIconComponent.GetSize(IconHandle, Integer, Integer) + fullName.vb: OpenTK.Platform.IIconComponent.GetSize(OpenTK.Platform.IconHandle, Integer, Integer) + name.vb: GetSize(IconHandle, Integer, Integer) +references: +- uid: OpenTK.Platform + commentId: N:OpenTK.Platform + href: OpenTK.html + name: OpenTK.Platform + nameWithType: OpenTK.Platform + fullName: OpenTK.Platform + spec.csharp: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Platform + name: Platform + href: OpenTK.Platform.html + spec.vb: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Platform + name: Platform + href: OpenTK.Platform.html +- uid: OpenTK.Platform.IPalComponent.Name + commentId: P:OpenTK.Platform.IPalComponent.Name + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Name + name: Name + nameWithType: IPalComponent.Name + fullName: OpenTK.Platform.IPalComponent.Name +- uid: OpenTK.Platform.IPalComponent.Provides + commentId: P:OpenTK.Platform.IPalComponent.Provides + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Provides + name: Provides + nameWithType: IPalComponent.Provides + fullName: OpenTK.Platform.IPalComponent.Provides +- uid: OpenTK.Platform.IPalComponent.Logger + commentId: P:OpenTK.Platform.IPalComponent.Logger + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Logger + name: Logger + nameWithType: IPalComponent.Logger + fullName: OpenTK.Platform.IPalComponent.Logger +- uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ + name: Initialize(ToolkitOptions) + nameWithType: IPalComponent.Initialize(ToolkitOptions) + fullName: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + spec.csharp: + - uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + name: Initialize + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ + - name: ( + - uid: OpenTK.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Platform.ToolkitOptions.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + name: Initialize + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ + - name: ( + - uid: OpenTK.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Platform.ToolkitOptions.html + - name: ) +- uid: OpenTK.Platform.IPalComponent + commentId: T:OpenTK.Platform.IPalComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IPalComponent.html + name: IPalComponent + nameWithType: IPalComponent + fullName: OpenTK.Platform.IPalComponent +- uid: OpenTK.Platform.IIconComponent.Create(OpenTK.Platform.SystemIconType) + commentId: M:OpenTK.Platform.IIconComponent.Create(OpenTK.Platform.SystemIconType) + parent: OpenTK.Platform.IIconComponent + href: OpenTK.Platform.IIconComponent.html#OpenTK_Platform_IIconComponent_Create_OpenTK_Platform_SystemIconType_ + name: Create(SystemIconType) + nameWithType: IIconComponent.Create(SystemIconType) + fullName: OpenTK.Platform.IIconComponent.Create(OpenTK.Platform.SystemIconType) + spec.csharp: + - uid: OpenTK.Platform.IIconComponent.Create(OpenTK.Platform.SystemIconType) + name: Create + href: OpenTK.Platform.IIconComponent.html#OpenTK_Platform_IIconComponent_Create_OpenTK_Platform_SystemIconType_ + - name: ( + - uid: OpenTK.Platform.SystemIconType + name: SystemIconType + href: OpenTK.Platform.SystemIconType.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IIconComponent.Create(OpenTK.Platform.SystemIconType) + name: Create + href: OpenTK.Platform.IIconComponent.html#OpenTK_Platform_IIconComponent_Create_OpenTK_Platform_SystemIconType_ + - name: ( + - uid: OpenTK.Platform.SystemIconType + name: SystemIconType + href: OpenTK.Platform.SystemIconType.html + - name: ) +- uid: OpenTK.Platform.IIconComponent.CanLoadSystemIcons* + commentId: Overload:OpenTK.Platform.IIconComponent.CanLoadSystemIcons + href: OpenTK.Platform.IIconComponent.html#OpenTK_Platform_IIconComponent_CanLoadSystemIcons + name: CanLoadSystemIcons + nameWithType: IIconComponent.CanLoadSystemIcons + fullName: OpenTK.Platform.IIconComponent.CanLoadSystemIcons +- uid: System.Boolean + commentId: T:System.Boolean + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + name: bool + nameWithType: bool + fullName: bool + nameWithType.vb: Boolean + fullName.vb: Boolean + name.vb: Boolean +- uid: OpenTK.Platform.IIconComponent + commentId: T:OpenTK.Platform.IIconComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IIconComponent.html + name: IIconComponent + nameWithType: IIconComponent + fullName: OpenTK.Platform.IIconComponent +- uid: System + commentId: N:System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System + nameWithType: System + fullName: System +- uid: OpenTK.Platform.IIconComponent.CanLoadSystemIcons + commentId: P:OpenTK.Platform.IIconComponent.CanLoadSystemIcons + parent: OpenTK.Platform.IIconComponent + href: OpenTK.Platform.IIconComponent.html#OpenTK_Platform_IIconComponent_CanLoadSystemIcons + name: CanLoadSystemIcons + nameWithType: IIconComponent.CanLoadSystemIcons + fullName: OpenTK.Platform.IIconComponent.CanLoadSystemIcons +- uid: OpenTK.Platform.IIconComponent.Create* + commentId: Overload:OpenTK.Platform.IIconComponent.Create + href: OpenTK.Platform.IIconComponent.html#OpenTK_Platform_IIconComponent_Create_OpenTK_Platform_SystemIconType_ + name: Create + nameWithType: IIconComponent.Create + fullName: OpenTK.Platform.IIconComponent.Create +- uid: OpenTK.Platform.SystemIconType + commentId: T:OpenTK.Platform.SystemIconType + parent: OpenTK.Platform + href: OpenTK.Platform.SystemIconType.html + name: SystemIconType + nameWithType: SystemIconType + fullName: OpenTK.Platform.SystemIconType +- uid: OpenTK.Platform.IconHandle + commentId: T:OpenTK.Platform.IconHandle + parent: OpenTK.Platform + href: OpenTK.Platform.IconHandle.html + name: IconHandle + nameWithType: IconHandle + fullName: OpenTK.Platform.IconHandle +- uid: System.Int32 + commentId: T:System.Int32 + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + name: int + nameWithType: int + fullName: int + nameWithType.vb: Integer + fullName.vb: Integer + name.vb: Integer +- uid: System.ReadOnlySpan{System.Byte} + commentId: T:System.ReadOnlySpan{System.Byte} + parent: System + definition: System.ReadOnlySpan`1 + href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 + name: ReadOnlySpan + nameWithType: ReadOnlySpan + fullName: System.ReadOnlySpan + nameWithType.vb: ReadOnlySpan(Of Byte) + fullName.vb: System.ReadOnlySpan(Of Byte) + name.vb: ReadOnlySpan(Of Byte) + spec.csharp: + - uid: System.ReadOnlySpan`1 + name: ReadOnlySpan + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 + - name: < + - uid: System.Byte + name: byte + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.byte + - name: '>' + spec.vb: + - uid: System.ReadOnlySpan`1 + name: ReadOnlySpan + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 + - name: ( + - name: Of + - name: " " + - uid: System.Byte + name: Byte + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.byte + - name: ) +- uid: System.ReadOnlySpan`1 + commentId: T:System.ReadOnlySpan`1 + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 + name: ReadOnlySpan + nameWithType: ReadOnlySpan + fullName: System.ReadOnlySpan + nameWithType.vb: ReadOnlySpan(Of T) + fullName.vb: System.ReadOnlySpan(Of T) + name.vb: ReadOnlySpan(Of T) + spec.csharp: + - uid: System.ReadOnlySpan`1 + name: ReadOnlySpan + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 + - name: < + - name: T + - name: '>' + spec.vb: + - uid: System.ReadOnlySpan`1 + name: ReadOnlySpan + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 + - name: ( + - name: Of + - name: " " + - name: T + - name: ) +- uid: System.ArgumentNullException + commentId: T:System.ArgumentNullException + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.argumentnullexception + name: ArgumentNullException + nameWithType: ArgumentNullException + fullName: System.ArgumentNullException +- uid: OpenTK.Platform.IIconComponent.Destroy* + commentId: Overload:OpenTK.Platform.IIconComponent.Destroy + href: OpenTK.Platform.IIconComponent.html#OpenTK_Platform_IIconComponent_Destroy_OpenTK_Platform_IconHandle_ + name: Destroy + nameWithType: IIconComponent.Destroy + fullName: OpenTK.Platform.IIconComponent.Destroy +- uid: OpenTK.Platform.IIconComponent.GetSize* + commentId: Overload:OpenTK.Platform.IIconComponent.GetSize + href: OpenTK.Platform.IIconComponent.html#OpenTK_Platform_IIconComponent_GetSize_OpenTK_Platform_IconHandle_System_Int32__System_Int32__ + name: GetSize + nameWithType: IIconComponent.GetSize + fullName: OpenTK.Platform.IIconComponent.GetSize diff --git a/api/OpenTK.Platform.IJoystickComponent.yml b/api/OpenTK.Platform.IJoystickComponent.yml new file mode 100644 index 00000000..2105e874 --- /dev/null +++ b/api/OpenTK.Platform.IJoystickComponent.yml @@ -0,0 +1,646 @@ +### YamlMime:ManagedReference +items: +- uid: OpenTK.Platform.IJoystickComponent + commentId: T:OpenTK.Platform.IJoystickComponent + id: IJoystickComponent + parent: OpenTK.Platform + children: + - OpenTK.Platform.IJoystickComponent.Close(OpenTK.Platform.JoystickHandle) + - OpenTK.Platform.IJoystickComponent.GetAxis(OpenTK.Platform.JoystickHandle,OpenTK.Platform.JoystickAxis) + - OpenTK.Platform.IJoystickComponent.GetButton(OpenTK.Platform.JoystickHandle,OpenTK.Platform.JoystickButton) + - OpenTK.Platform.IJoystickComponent.GetGuid(OpenTK.Platform.JoystickHandle) + - OpenTK.Platform.IJoystickComponent.GetName(OpenTK.Platform.JoystickHandle) + - OpenTK.Platform.IJoystickComponent.IsConnected(System.Int32) + - OpenTK.Platform.IJoystickComponent.LeftDeadzone + - OpenTK.Platform.IJoystickComponent.Open(System.Int32) + - OpenTK.Platform.IJoystickComponent.RightDeadzone + - OpenTK.Platform.IJoystickComponent.SetVibration(OpenTK.Platform.JoystickHandle,System.Single,System.Single) + - OpenTK.Platform.IJoystickComponent.TriggerThreshold + - OpenTK.Platform.IJoystickComponent.TryGetBatteryInfo(OpenTK.Platform.JoystickHandle,OpenTK.Platform.GamepadBatteryInfo@) + langs: + - csharp + - vb + name: IJoystickComponent + nameWithType: IJoystickComponent + fullName: OpenTK.Platform.IJoystickComponent + type: Interface + source: + id: IJoystickComponent + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IJoystickComponent.cs + startLine: 12 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Interface for interacting with joysticks. + example: [] + syntax: + content: 'public interface IJoystickComponent : IPalComponent' + content.vb: Public Interface IJoystickComponent Inherits IPalComponent + inheritedMembers: + - OpenTK.Platform.IPalComponent.Name + - OpenTK.Platform.IPalComponent.Provides + - OpenTK.Platform.IPalComponent.Logger + - OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) +- uid: OpenTK.Platform.IJoystickComponent.LeftDeadzone + commentId: P:OpenTK.Platform.IJoystickComponent.LeftDeadzone + id: LeftDeadzone + parent: OpenTK.Platform.IJoystickComponent + langs: + - csharp + - vb + name: LeftDeadzone + nameWithType: IJoystickComponent.LeftDeadzone + fullName: OpenTK.Platform.IJoystickComponent.LeftDeadzone + type: Property + source: + id: LeftDeadzone + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IJoystickComponent.cs + startLine: 27 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: The recommended deadzone value for the left analog stick. + example: [] + syntax: + content: float LeftDeadzone { get; } + parameters: [] + return: + type: System.Single + content.vb: ReadOnly Property LeftDeadzone As Single + overload: OpenTK.Platform.IJoystickComponent.LeftDeadzone* +- uid: OpenTK.Platform.IJoystickComponent.RightDeadzone + commentId: P:OpenTK.Platform.IJoystickComponent.RightDeadzone + id: RightDeadzone + parent: OpenTK.Platform.IJoystickComponent + langs: + - csharp + - vb + name: RightDeadzone + nameWithType: IJoystickComponent.RightDeadzone + fullName: OpenTK.Platform.IJoystickComponent.RightDeadzone + type: Property + source: + id: RightDeadzone + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IJoystickComponent.cs + startLine: 32 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: The recommended deadzone value for the right analog stick. + example: [] + syntax: + content: float RightDeadzone { get; } + parameters: [] + return: + type: System.Single + content.vb: ReadOnly Property RightDeadzone As Single + overload: OpenTK.Platform.IJoystickComponent.RightDeadzone* +- uid: OpenTK.Platform.IJoystickComponent.TriggerThreshold + commentId: P:OpenTK.Platform.IJoystickComponent.TriggerThreshold + id: TriggerThreshold + parent: OpenTK.Platform.IJoystickComponent + langs: + - csharp + - vb + name: TriggerThreshold + nameWithType: IJoystickComponent.TriggerThreshold + fullName: OpenTK.Platform.IJoystickComponent.TriggerThreshold + type: Property + source: + id: TriggerThreshold + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IJoystickComponent.cs + startLine: 37 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: The recommended threshold for considering the left or right trigger pressed. + example: [] + syntax: + content: float TriggerThreshold { get; } + parameters: [] + return: + type: System.Single + content.vb: ReadOnly Property TriggerThreshold As Single + overload: OpenTK.Platform.IJoystickComponent.TriggerThreshold* +- uid: OpenTK.Platform.IJoystickComponent.IsConnected(System.Int32) + commentId: M:OpenTK.Platform.IJoystickComponent.IsConnected(System.Int32) + id: IsConnected(System.Int32) + parent: OpenTK.Platform.IJoystickComponent + langs: + - csharp + - vb + name: IsConnected(int) + nameWithType: IJoystickComponent.IsConnected(int) + fullName: OpenTK.Platform.IJoystickComponent.IsConnected(int) + type: Method + source: + id: IsConnected + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IJoystickComponent.cs + startLine: 44 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Checks wether a joystick with the specific index is present on the system or not. + example: [] + syntax: + content: bool IsConnected(int index) + parameters: + - id: index + type: System.Int32 + description: The index of the joystick. + return: + type: System.Boolean + description: If a joystick with the specified index is connected. + content.vb: Function IsConnected(index As Integer) As Boolean + overload: OpenTK.Platform.IJoystickComponent.IsConnected* + nameWithType.vb: IJoystickComponent.IsConnected(Integer) + fullName.vb: OpenTK.Platform.IJoystickComponent.IsConnected(Integer) + name.vb: IsConnected(Integer) +- uid: OpenTK.Platform.IJoystickComponent.Open(System.Int32) + commentId: M:OpenTK.Platform.IJoystickComponent.Open(System.Int32) + id: Open(System.Int32) + parent: OpenTK.Platform.IJoystickComponent + langs: + - csharp + - vb + name: Open(int) + nameWithType: IJoystickComponent.Open(int) + fullName: OpenTK.Platform.IJoystickComponent.Open(int) + type: Method + source: + id: Open + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IJoystickComponent.cs + startLine: 51 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Opens a handle to a specific joystick. + example: [] + syntax: + content: JoystickHandle Open(int index) + parameters: + - id: index + type: System.Int32 + description: The player index of the joystick to open. + return: + type: OpenTK.Platform.JoystickHandle + description: The opened joystick handle. + content.vb: Function Open(index As Integer) As JoystickHandle + overload: OpenTK.Platform.IJoystickComponent.Open* + nameWithType.vb: IJoystickComponent.Open(Integer) + fullName.vb: OpenTK.Platform.IJoystickComponent.Open(Integer) + name.vb: Open(Integer) +- uid: OpenTK.Platform.IJoystickComponent.Close(OpenTK.Platform.JoystickHandle) + commentId: M:OpenTK.Platform.IJoystickComponent.Close(OpenTK.Platform.JoystickHandle) + id: Close(OpenTK.Platform.JoystickHandle) + parent: OpenTK.Platform.IJoystickComponent + langs: + - csharp + - vb + name: Close(JoystickHandle) + nameWithType: IJoystickComponent.Close(JoystickHandle) + fullName: OpenTK.Platform.IJoystickComponent.Close(OpenTK.Platform.JoystickHandle) + type: Method + source: + id: Close + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IJoystickComponent.cs + startLine: 57 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Closes a handle to a joystick. + example: [] + syntax: + content: void Close(JoystickHandle handle) + parameters: + - id: handle + type: OpenTK.Platform.JoystickHandle + description: The joystick handle. + content.vb: Sub Close(handle As JoystickHandle) + overload: OpenTK.Platform.IJoystickComponent.Close* +- uid: OpenTK.Platform.IJoystickComponent.GetGuid(OpenTK.Platform.JoystickHandle) + commentId: M:OpenTK.Platform.IJoystickComponent.GetGuid(OpenTK.Platform.JoystickHandle) + id: GetGuid(OpenTK.Platform.JoystickHandle) + parent: OpenTK.Platform.IJoystickComponent + langs: + - csharp + - vb + name: GetGuid(JoystickHandle) + nameWithType: IJoystickComponent.GetGuid(JoystickHandle) + fullName: OpenTK.Platform.IJoystickComponent.GetGuid(OpenTK.Platform.JoystickHandle) + type: Method + source: + id: GetGuid + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IJoystickComponent.cs + startLine: 59 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: Guid GetGuid(JoystickHandle handle) + parameters: + - id: handle + type: OpenTK.Platform.JoystickHandle + return: + type: System.Guid + content.vb: Function GetGuid(handle As JoystickHandle) As Guid + overload: OpenTK.Platform.IJoystickComponent.GetGuid* +- uid: OpenTK.Platform.IJoystickComponent.GetName(OpenTK.Platform.JoystickHandle) + commentId: M:OpenTK.Platform.IJoystickComponent.GetName(OpenTK.Platform.JoystickHandle) + id: GetName(OpenTK.Platform.JoystickHandle) + parent: OpenTK.Platform.IJoystickComponent + langs: + - csharp + - vb + name: GetName(JoystickHandle) + nameWithType: IJoystickComponent.GetName(JoystickHandle) + fullName: OpenTK.Platform.IJoystickComponent.GetName(OpenTK.Platform.JoystickHandle) + type: Method + source: + id: GetName + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IJoystickComponent.cs + startLine: 61 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: string GetName(JoystickHandle handle) + parameters: + - id: handle + type: OpenTK.Platform.JoystickHandle + return: + type: System.String + content.vb: Function GetName(handle As JoystickHandle) As String + overload: OpenTK.Platform.IJoystickComponent.GetName* +- uid: OpenTK.Platform.IJoystickComponent.GetAxis(OpenTK.Platform.JoystickHandle,OpenTK.Platform.JoystickAxis) + commentId: M:OpenTK.Platform.IJoystickComponent.GetAxis(OpenTK.Platform.JoystickHandle,OpenTK.Platform.JoystickAxis) + id: GetAxis(OpenTK.Platform.JoystickHandle,OpenTK.Platform.JoystickAxis) + parent: OpenTK.Platform.IJoystickComponent + langs: + - csharp + - vb + name: GetAxis(JoystickHandle, JoystickAxis) + nameWithType: IJoystickComponent.GetAxis(JoystickHandle, JoystickAxis) + fullName: OpenTK.Platform.IJoystickComponent.GetAxis(OpenTK.Platform.JoystickHandle, OpenTK.Platform.JoystickAxis) + type: Method + source: + id: GetAxis + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IJoystickComponent.cs + startLine: 70 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: >- + Gets the value of a specific joystick axis. + + This value is in the range [-1, 1] for analog sticks, and [0, 1] for triggers. + example: [] + syntax: + content: float GetAxis(JoystickHandle handle, JoystickAxis axis) + parameters: + - id: handle + type: OpenTK.Platform.JoystickHandle + description: A handle to a joystick. + - id: axis + type: OpenTK.Platform.JoystickAxis + description: The joystick axis to get. + return: + type: System.Single + description: The joystick axis value. + content.vb: Function GetAxis(handle As JoystickHandle, axis As JoystickAxis) As Single + overload: OpenTK.Platform.IJoystickComponent.GetAxis* +- uid: OpenTK.Platform.IJoystickComponent.GetButton(OpenTK.Platform.JoystickHandle,OpenTK.Platform.JoystickButton) + commentId: M:OpenTK.Platform.IJoystickComponent.GetButton(OpenTK.Platform.JoystickHandle,OpenTK.Platform.JoystickButton) + id: GetButton(OpenTK.Platform.JoystickHandle,OpenTK.Platform.JoystickButton) + parent: OpenTK.Platform.IJoystickComponent + langs: + - csharp + - vb + name: GetButton(JoystickHandle, JoystickButton) + nameWithType: IJoystickComponent.GetButton(JoystickHandle, JoystickButton) + fullName: OpenTK.Platform.IJoystickComponent.GetButton(OpenTK.Platform.JoystickHandle, OpenTK.Platform.JoystickButton) + type: Method + source: + id: GetButton + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IJoystickComponent.cs + startLine: 78 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Get the pressed state of a specific joystick button. + example: [] + syntax: + content: bool GetButton(JoystickHandle handle, JoystickButton button) + parameters: + - id: handle + type: OpenTK.Platform.JoystickHandle + description: A handle to a joystick. + - id: button + type: OpenTK.Platform.JoystickButton + description: The joystick button to get. + return: + type: System.Boolean + description: True if the specified button is pressed or false if the button is released. + content.vb: Function GetButton(handle As JoystickHandle, button As JoystickButton) As Boolean + overload: OpenTK.Platform.IJoystickComponent.GetButton* +- uid: OpenTK.Platform.IJoystickComponent.SetVibration(OpenTK.Platform.JoystickHandle,System.Single,System.Single) + commentId: M:OpenTK.Platform.IJoystickComponent.SetVibration(OpenTK.Platform.JoystickHandle,System.Single,System.Single) + id: SetVibration(OpenTK.Platform.JoystickHandle,System.Single,System.Single) + parent: OpenTK.Platform.IJoystickComponent + langs: + - csharp + - vb + name: SetVibration(JoystickHandle, float, float) + nameWithType: IJoystickComponent.SetVibration(JoystickHandle, float, float) + fullName: OpenTK.Platform.IJoystickComponent.SetVibration(OpenTK.Platform.JoystickHandle, float, float) + type: Method + source: + id: SetVibration + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IJoystickComponent.cs + startLine: 80 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: bool SetVibration(JoystickHandle handle, float lowFreqIntensity, float highFreqIntensity) + parameters: + - id: handle + type: OpenTK.Platform.JoystickHandle + - id: lowFreqIntensity + type: System.Single + - id: highFreqIntensity + type: System.Single + return: + type: System.Boolean + content.vb: Function SetVibration(handle As JoystickHandle, lowFreqIntensity As Single, highFreqIntensity As Single) As Boolean + overload: OpenTK.Platform.IJoystickComponent.SetVibration* + nameWithType.vb: IJoystickComponent.SetVibration(JoystickHandle, Single, Single) + fullName.vb: OpenTK.Platform.IJoystickComponent.SetVibration(OpenTK.Platform.JoystickHandle, Single, Single) + name.vb: SetVibration(JoystickHandle, Single, Single) +- uid: OpenTK.Platform.IJoystickComponent.TryGetBatteryInfo(OpenTK.Platform.JoystickHandle,OpenTK.Platform.GamepadBatteryInfo@) + commentId: M:OpenTK.Platform.IJoystickComponent.TryGetBatteryInfo(OpenTK.Platform.JoystickHandle,OpenTK.Platform.GamepadBatteryInfo@) + id: TryGetBatteryInfo(OpenTK.Platform.JoystickHandle,OpenTK.Platform.GamepadBatteryInfo@) + parent: OpenTK.Platform.IJoystickComponent + langs: + - csharp + - vb + name: TryGetBatteryInfo(JoystickHandle, out GamepadBatteryInfo) + nameWithType: IJoystickComponent.TryGetBatteryInfo(JoystickHandle, out GamepadBatteryInfo) + fullName: OpenTK.Platform.IJoystickComponent.TryGetBatteryInfo(OpenTK.Platform.JoystickHandle, out OpenTK.Platform.GamepadBatteryInfo) + type: Method + source: + id: TryGetBatteryInfo + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IJoystickComponent.cs + startLine: 82 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: bool TryGetBatteryInfo(JoystickHandle handle, out GamepadBatteryInfo batteryInfo) + parameters: + - id: handle + type: OpenTK.Platform.JoystickHandle + - id: batteryInfo + type: OpenTK.Platform.GamepadBatteryInfo + return: + type: System.Boolean + content.vb: Function TryGetBatteryInfo(handle As JoystickHandle, batteryInfo As GamepadBatteryInfo) As Boolean + overload: OpenTK.Platform.IJoystickComponent.TryGetBatteryInfo* + nameWithType.vb: IJoystickComponent.TryGetBatteryInfo(JoystickHandle, GamepadBatteryInfo) + fullName.vb: OpenTK.Platform.IJoystickComponent.TryGetBatteryInfo(OpenTK.Platform.JoystickHandle, OpenTK.Platform.GamepadBatteryInfo) + name.vb: TryGetBatteryInfo(JoystickHandle, GamepadBatteryInfo) +references: +- uid: OpenTK.Platform + commentId: N:OpenTK.Platform + href: OpenTK.html + name: OpenTK.Platform + nameWithType: OpenTK.Platform + fullName: OpenTK.Platform + spec.csharp: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Platform + name: Platform + href: OpenTK.Platform.html + spec.vb: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Platform + name: Platform + href: OpenTK.Platform.html +- uid: OpenTK.Platform.IPalComponent.Name + commentId: P:OpenTK.Platform.IPalComponent.Name + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Name + name: Name + nameWithType: IPalComponent.Name + fullName: OpenTK.Platform.IPalComponent.Name +- uid: OpenTK.Platform.IPalComponent.Provides + commentId: P:OpenTK.Platform.IPalComponent.Provides + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Provides + name: Provides + nameWithType: IPalComponent.Provides + fullName: OpenTK.Platform.IPalComponent.Provides +- uid: OpenTK.Platform.IPalComponent.Logger + commentId: P:OpenTK.Platform.IPalComponent.Logger + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Logger + name: Logger + nameWithType: IPalComponent.Logger + fullName: OpenTK.Platform.IPalComponent.Logger +- uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ + name: Initialize(ToolkitOptions) + nameWithType: IPalComponent.Initialize(ToolkitOptions) + fullName: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + spec.csharp: + - uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + name: Initialize + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ + - name: ( + - uid: OpenTK.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Platform.ToolkitOptions.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + name: Initialize + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ + - name: ( + - uid: OpenTK.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Platform.ToolkitOptions.html + - name: ) +- uid: OpenTK.Platform.IPalComponent + commentId: T:OpenTK.Platform.IPalComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IPalComponent.html + name: IPalComponent + nameWithType: IPalComponent + fullName: OpenTK.Platform.IPalComponent +- uid: OpenTK.Platform.IJoystickComponent.LeftDeadzone* + commentId: Overload:OpenTK.Platform.IJoystickComponent.LeftDeadzone + href: OpenTK.Platform.IJoystickComponent.html#OpenTK_Platform_IJoystickComponent_LeftDeadzone + name: LeftDeadzone + nameWithType: IJoystickComponent.LeftDeadzone + fullName: OpenTK.Platform.IJoystickComponent.LeftDeadzone +- uid: System.Single + commentId: T:System.Single + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.single + name: float + nameWithType: float + fullName: float + nameWithType.vb: Single + fullName.vb: Single + name.vb: Single +- uid: System + commentId: N:System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System + nameWithType: System + fullName: System +- uid: OpenTK.Platform.IJoystickComponent.RightDeadzone* + commentId: Overload:OpenTK.Platform.IJoystickComponent.RightDeadzone + href: OpenTK.Platform.IJoystickComponent.html#OpenTK_Platform_IJoystickComponent_RightDeadzone + name: RightDeadzone + nameWithType: IJoystickComponent.RightDeadzone + fullName: OpenTK.Platform.IJoystickComponent.RightDeadzone +- uid: OpenTK.Platform.IJoystickComponent.TriggerThreshold* + commentId: Overload:OpenTK.Platform.IJoystickComponent.TriggerThreshold + href: OpenTK.Platform.IJoystickComponent.html#OpenTK_Platform_IJoystickComponent_TriggerThreshold + name: TriggerThreshold + nameWithType: IJoystickComponent.TriggerThreshold + fullName: OpenTK.Platform.IJoystickComponent.TriggerThreshold +- uid: OpenTK.Platform.IJoystickComponent.IsConnected* + commentId: Overload:OpenTK.Platform.IJoystickComponent.IsConnected + href: OpenTK.Platform.IJoystickComponent.html#OpenTK_Platform_IJoystickComponent_IsConnected_System_Int32_ + name: IsConnected + nameWithType: IJoystickComponent.IsConnected + fullName: OpenTK.Platform.IJoystickComponent.IsConnected +- uid: System.Int32 + commentId: T:System.Int32 + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + name: int + nameWithType: int + fullName: int + nameWithType.vb: Integer + fullName.vb: Integer + name.vb: Integer +- uid: System.Boolean + commentId: T:System.Boolean + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + name: bool + nameWithType: bool + fullName: bool + nameWithType.vb: Boolean + fullName.vb: Boolean + name.vb: Boolean +- uid: OpenTK.Platform.IJoystickComponent.Open* + commentId: Overload:OpenTK.Platform.IJoystickComponent.Open + href: OpenTK.Platform.IJoystickComponent.html#OpenTK_Platform_IJoystickComponent_Open_System_Int32_ + name: Open + nameWithType: IJoystickComponent.Open + fullName: OpenTK.Platform.IJoystickComponent.Open +- uid: OpenTK.Platform.JoystickHandle + commentId: T:OpenTK.Platform.JoystickHandle + parent: OpenTK.Platform + href: OpenTK.Platform.JoystickHandle.html + name: JoystickHandle + nameWithType: JoystickHandle + fullName: OpenTK.Platform.JoystickHandle +- uid: OpenTK.Platform.IJoystickComponent.Close* + commentId: Overload:OpenTK.Platform.IJoystickComponent.Close + href: OpenTK.Platform.IJoystickComponent.html#OpenTK_Platform_IJoystickComponent_Close_OpenTK_Platform_JoystickHandle_ + name: Close + nameWithType: IJoystickComponent.Close + fullName: OpenTK.Platform.IJoystickComponent.Close +- uid: OpenTK.Platform.IJoystickComponent.GetGuid* + commentId: Overload:OpenTK.Platform.IJoystickComponent.GetGuid + href: OpenTK.Platform.IJoystickComponent.html#OpenTK_Platform_IJoystickComponent_GetGuid_OpenTK_Platform_JoystickHandle_ + name: GetGuid + nameWithType: IJoystickComponent.GetGuid + fullName: OpenTK.Platform.IJoystickComponent.GetGuid +- uid: System.Guid + commentId: T:System.Guid + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.guid + name: Guid + nameWithType: Guid + fullName: System.Guid +- uid: OpenTK.Platform.IJoystickComponent.GetName* + commentId: Overload:OpenTK.Platform.IJoystickComponent.GetName + href: OpenTK.Platform.IJoystickComponent.html#OpenTK_Platform_IJoystickComponent_GetName_OpenTK_Platform_JoystickHandle_ + name: GetName + nameWithType: IJoystickComponent.GetName + fullName: OpenTK.Platform.IJoystickComponent.GetName +- uid: System.String + commentId: T:System.String + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + name: string + nameWithType: string + fullName: string + nameWithType.vb: String + fullName.vb: String + name.vb: String +- uid: OpenTK.Platform.IJoystickComponent.GetAxis* + commentId: Overload:OpenTK.Platform.IJoystickComponent.GetAxis + href: OpenTK.Platform.IJoystickComponent.html#OpenTK_Platform_IJoystickComponent_GetAxis_OpenTK_Platform_JoystickHandle_OpenTK_Platform_JoystickAxis_ + name: GetAxis + nameWithType: IJoystickComponent.GetAxis + fullName: OpenTK.Platform.IJoystickComponent.GetAxis +- uid: OpenTK.Platform.JoystickAxis + commentId: T:OpenTK.Platform.JoystickAxis + parent: OpenTK.Platform + href: OpenTK.Platform.JoystickAxis.html + name: JoystickAxis + nameWithType: JoystickAxis + fullName: OpenTK.Platform.JoystickAxis +- uid: OpenTK.Platform.IJoystickComponent.GetButton* + commentId: Overload:OpenTK.Platform.IJoystickComponent.GetButton + href: OpenTK.Platform.IJoystickComponent.html#OpenTK_Platform_IJoystickComponent_GetButton_OpenTK_Platform_JoystickHandle_OpenTK_Platform_JoystickButton_ + name: GetButton + nameWithType: IJoystickComponent.GetButton + fullName: OpenTK.Platform.IJoystickComponent.GetButton +- uid: OpenTK.Platform.JoystickButton + commentId: T:OpenTK.Platform.JoystickButton + parent: OpenTK.Platform + href: OpenTK.Platform.JoystickButton.html + name: JoystickButton + nameWithType: JoystickButton + fullName: OpenTK.Platform.JoystickButton +- uid: OpenTK.Platform.IJoystickComponent.SetVibration* + commentId: Overload:OpenTK.Platform.IJoystickComponent.SetVibration + href: OpenTK.Platform.IJoystickComponent.html#OpenTK_Platform_IJoystickComponent_SetVibration_OpenTK_Platform_JoystickHandle_System_Single_System_Single_ + name: SetVibration + nameWithType: IJoystickComponent.SetVibration + fullName: OpenTK.Platform.IJoystickComponent.SetVibration +- uid: OpenTK.Platform.IJoystickComponent.TryGetBatteryInfo* + commentId: Overload:OpenTK.Platform.IJoystickComponent.TryGetBatteryInfo + href: OpenTK.Platform.IJoystickComponent.html#OpenTK_Platform_IJoystickComponent_TryGetBatteryInfo_OpenTK_Platform_JoystickHandle_OpenTK_Platform_GamepadBatteryInfo__ + name: TryGetBatteryInfo + nameWithType: IJoystickComponent.TryGetBatteryInfo + fullName: OpenTK.Platform.IJoystickComponent.TryGetBatteryInfo +- uid: OpenTK.Platform.GamepadBatteryInfo + commentId: T:OpenTK.Platform.GamepadBatteryInfo + parent: OpenTK.Platform + href: OpenTK.Platform.GamepadBatteryInfo.html + name: GamepadBatteryInfo + nameWithType: GamepadBatteryInfo + fullName: OpenTK.Platform.GamepadBatteryInfo diff --git a/api/OpenTK.Platform.IKeyboardComponent.yml b/api/OpenTK.Platform.IKeyboardComponent.yml new file mode 100644 index 00000000..f09ba07d --- /dev/null +++ b/api/OpenTK.Platform.IKeyboardComponent.yml @@ -0,0 +1,675 @@ +### YamlMime:ManagedReference +items: +- uid: OpenTK.Platform.IKeyboardComponent + commentId: T:OpenTK.Platform.IKeyboardComponent + id: IKeyboardComponent + parent: OpenTK.Platform + children: + - OpenTK.Platform.IKeyboardComponent.BeginIme(OpenTK.Platform.WindowHandle) + - OpenTK.Platform.IKeyboardComponent.EndIme(OpenTK.Platform.WindowHandle) + - OpenTK.Platform.IKeyboardComponent.GetActiveKeyboardLayout(OpenTK.Platform.WindowHandle) + - OpenTK.Platform.IKeyboardComponent.GetAvailableKeyboardLayouts + - OpenTK.Platform.IKeyboardComponent.GetKeyFromScancode(OpenTK.Platform.Scancode) + - OpenTK.Platform.IKeyboardComponent.GetKeyboardModifiers + - OpenTK.Platform.IKeyboardComponent.GetKeyboardState(System.Boolean[]) + - OpenTK.Platform.IKeyboardComponent.GetScancodeFromKey(OpenTK.Platform.Key) + - OpenTK.Platform.IKeyboardComponent.SetImeRectangle(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) + - OpenTK.Platform.IKeyboardComponent.SupportsIme + - OpenTK.Platform.IKeyboardComponent.SupportsLayouts + langs: + - csharp + - vb + name: IKeyboardComponent + nameWithType: IKeyboardComponent + fullName: OpenTK.Platform.IKeyboardComponent + type: Interface + source: + id: IKeyboardComponent + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IKeyboardComponent.cs + startLine: 7 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: PAL driver for global keyboard information. + example: [] + syntax: + content: 'public interface IKeyboardComponent : IPalComponent' + content.vb: Public Interface IKeyboardComponent Inherits IPalComponent + inheritedMembers: + - OpenTK.Platform.IPalComponent.Name + - OpenTK.Platform.IPalComponent.Provides + - OpenTK.Platform.IPalComponent.Logger + - OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) +- uid: OpenTK.Platform.IKeyboardComponent.SupportsLayouts + commentId: P:OpenTK.Platform.IKeyboardComponent.SupportsLayouts + id: SupportsLayouts + parent: OpenTK.Platform.IKeyboardComponent + langs: + - csharp + - vb + name: SupportsLayouts + nameWithType: IKeyboardComponent.SupportsLayouts + fullName: OpenTK.Platform.IKeyboardComponent.SupportsLayouts + type: Property + source: + id: SupportsLayouts + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IKeyboardComponent.cs + startLine: 16 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: True if the driver supports keyboard layout functions. + example: [] + syntax: + content: bool SupportsLayouts { get; } + parameters: [] + return: + type: System.Boolean + content.vb: ReadOnly Property SupportsLayouts As Boolean + overload: OpenTK.Platform.IKeyboardComponent.SupportsLayouts* +- uid: OpenTK.Platform.IKeyboardComponent.SupportsIme + commentId: P:OpenTK.Platform.IKeyboardComponent.SupportsIme + id: SupportsIme + parent: OpenTK.Platform.IKeyboardComponent + langs: + - csharp + - vb + name: SupportsIme + nameWithType: IKeyboardComponent.SupportsIme + fullName: OpenTK.Platform.IKeyboardComponent.SupportsIme + type: Property + source: + id: SupportsIme + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IKeyboardComponent.cs + startLine: 21 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: True if the driver supports input method editor functions. + example: [] + syntax: + content: bool SupportsIme { get; } + parameters: [] + return: + type: System.Boolean + content.vb: ReadOnly Property SupportsIme As Boolean + overload: OpenTK.Platform.IKeyboardComponent.SupportsIme* +- uid: OpenTK.Platform.IKeyboardComponent.GetActiveKeyboardLayout(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IKeyboardComponent.GetActiveKeyboardLayout(OpenTK.Platform.WindowHandle) + id: GetActiveKeyboardLayout(OpenTK.Platform.WindowHandle) + parent: OpenTK.Platform.IKeyboardComponent + langs: + - csharp + - vb + name: GetActiveKeyboardLayout(WindowHandle?) + nameWithType: IKeyboardComponent.GetActiveKeyboardLayout(WindowHandle?) + fullName: OpenTK.Platform.IKeyboardComponent.GetActiveKeyboardLayout(OpenTK.Platform.WindowHandle?) + type: Method + source: + id: GetActiveKeyboardLayout + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IKeyboardComponent.cs + startLine: 29 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Get the active keyboard layout. + example: [] + syntax: + content: string GetActiveKeyboardLayout(WindowHandle? handle) + parameters: + - id: handle + type: OpenTK.Platform.WindowHandle + description: (optional) Handle to a window to query the layout for. Ignored on systems where keyboard layout is global. + return: + type: System.String + description: A string which describes the active keyboard layout. + content.vb: Function GetActiveKeyboardLayout(handle As WindowHandle) As String + overload: OpenTK.Platform.IKeyboardComponent.GetActiveKeyboardLayout* + exceptions: + - type: OpenTK.Platform.PalNotImplementedException + commentId: T:OpenTK.Platform.PalNotImplementedException + description: Driver cannot query active keyboard layout. + nameWithType.vb: IKeyboardComponent.GetActiveKeyboardLayout(WindowHandle) + fullName.vb: OpenTK.Platform.IKeyboardComponent.GetActiveKeyboardLayout(OpenTK.Platform.WindowHandle) + name.vb: GetActiveKeyboardLayout(WindowHandle) +- uid: OpenTK.Platform.IKeyboardComponent.GetAvailableKeyboardLayouts + commentId: M:OpenTK.Platform.IKeyboardComponent.GetAvailableKeyboardLayouts + id: GetAvailableKeyboardLayouts + parent: OpenTK.Platform.IKeyboardComponent + langs: + - csharp + - vb + name: GetAvailableKeyboardLayouts() + nameWithType: IKeyboardComponent.GetAvailableKeyboardLayouts() + fullName: OpenTK.Platform.IKeyboardComponent.GetAvailableKeyboardLayouts() + type: Method + source: + id: GetAvailableKeyboardLayouts + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IKeyboardComponent.cs + startLine: 35 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: See list of possible keyboard layouts for this system. + example: [] + syntax: + content: string[] GetAvailableKeyboardLayouts() + return: + type: System.String[] + description: Array containing possible keyboard layouts. + content.vb: Function GetAvailableKeyboardLayouts() As String() + overload: OpenTK.Platform.IKeyboardComponent.GetAvailableKeyboardLayouts* +- uid: OpenTK.Platform.IKeyboardComponent.GetScancodeFromKey(OpenTK.Platform.Key) + commentId: M:OpenTK.Platform.IKeyboardComponent.GetScancodeFromKey(OpenTK.Platform.Key) + id: GetScancodeFromKey(OpenTK.Platform.Key) + parent: OpenTK.Platform.IKeyboardComponent + langs: + - csharp + - vb + name: GetScancodeFromKey(Key) + nameWithType: IKeyboardComponent.GetScancodeFromKey(Key) + fullName: OpenTK.Platform.IKeyboardComponent.GetScancodeFromKey(OpenTK.Platform.Key) + type: Method + source: + id: GetScancodeFromKey + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IKeyboardComponent.cs + startLine: 48 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: >- + Gets the associated with the specified . + + The Key to Scancode mapping is not 1 to 1, multiple scancodes can produce the same key. + + This function will return one of the scancodes that produce the key. + + This function uses the current keyboard layout to determine the mapping. + example: [] + syntax: + content: Scancode GetScancodeFromKey(Key key) + parameters: + - id: key + type: OpenTK.Platform.Key + description: The key. + return: + type: OpenTK.Platform.Scancode + description: >- + The that produces the + + or if no scancode produces the key. + content.vb: Function GetScancodeFromKey(key As Key) As Scancode + overload: OpenTK.Platform.IKeyboardComponent.GetScancodeFromKey* +- uid: OpenTK.Platform.IKeyboardComponent.GetKeyFromScancode(OpenTK.Platform.Scancode) + commentId: M:OpenTK.Platform.IKeyboardComponent.GetKeyFromScancode(OpenTK.Platform.Scancode) + id: GetKeyFromScancode(OpenTK.Platform.Scancode) + parent: OpenTK.Platform.IKeyboardComponent + langs: + - csharp + - vb + name: GetKeyFromScancode(Scancode) + nameWithType: IKeyboardComponent.GetKeyFromScancode(Scancode) + fullName: OpenTK.Platform.IKeyboardComponent.GetKeyFromScancode(OpenTK.Platform.Scancode) + type: Method + source: + id: GetKeyFromScancode + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IKeyboardComponent.cs + startLine: 59 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: >- + Gets the associated with the specidied . + + This function uses the current keyboard layout to determine the mapping. + example: [] + syntax: + content: Key GetKeyFromScancode(Scancode scancode) + parameters: + - id: scancode + type: OpenTK.Platform.Scancode + description: The scancode. + return: + type: OpenTK.Platform.Key + description: >- + The associated with the + + or if the scancode can't be mapped to a key. + content.vb: Function GetKeyFromScancode(scancode As Scancode) As Key + overload: OpenTK.Platform.IKeyboardComponent.GetKeyFromScancode* +- uid: OpenTK.Platform.IKeyboardComponent.GetKeyboardState(System.Boolean[]) + commentId: M:OpenTK.Platform.IKeyboardComponent.GetKeyboardState(System.Boolean[]) + id: GetKeyboardState(System.Boolean[]) + parent: OpenTK.Platform.IKeyboardComponent + langs: + - csharp + - vb + name: GetKeyboardState(bool[]) + nameWithType: IKeyboardComponent.GetKeyboardState(bool[]) + fullName: OpenTK.Platform.IKeyboardComponent.GetKeyboardState(bool[]) + type: Method + source: + id: GetKeyboardState + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IKeyboardComponent.cs + startLine: 67 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: >- + Copies the current state of the keyboard into the specified array. + + This array should be indexed using values. + + The length of this array should be an array able to hold all possible values. + example: [] + syntax: + content: void GetKeyboardState(bool[] keyboardState) + parameters: + - id: keyboardState + type: System.Boolean[] + description: An array to be filled with the keyboard state. + content.vb: Sub GetKeyboardState(keyboardState As Boolean()) + overload: OpenTK.Platform.IKeyboardComponent.GetKeyboardState* + nameWithType.vb: IKeyboardComponent.GetKeyboardState(Boolean()) + fullName.vb: OpenTK.Platform.IKeyboardComponent.GetKeyboardState(Boolean()) + name.vb: GetKeyboardState(Boolean()) +- uid: OpenTK.Platform.IKeyboardComponent.GetKeyboardModifiers + commentId: M:OpenTK.Platform.IKeyboardComponent.GetKeyboardModifiers + id: GetKeyboardModifiers + parent: OpenTK.Platform.IKeyboardComponent + langs: + - csharp + - vb + name: GetKeyboardModifiers() + nameWithType: IKeyboardComponent.GetKeyboardModifiers() + fullName: OpenTK.Platform.IKeyboardComponent.GetKeyboardModifiers() + type: Method + source: + id: GetKeyboardModifiers + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IKeyboardComponent.cs + startLine: 73 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Gets the current keyboard modifiers. + example: [] + syntax: + content: KeyModifier GetKeyboardModifiers() + return: + type: OpenTK.Platform.KeyModifier + description: The current keyboard modifiers. + content.vb: Function GetKeyboardModifiers() As KeyModifier + overload: OpenTK.Platform.IKeyboardComponent.GetKeyboardModifiers* +- uid: OpenTK.Platform.IKeyboardComponent.BeginIme(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IKeyboardComponent.BeginIme(OpenTK.Platform.WindowHandle) + id: BeginIme(OpenTK.Platform.WindowHandle) + parent: OpenTK.Platform.IKeyboardComponent + langs: + - csharp + - vb + name: BeginIme(WindowHandle) + nameWithType: IKeyboardComponent.BeginIme(WindowHandle) + fullName: OpenTK.Platform.IKeyboardComponent.BeginIme(OpenTK.Platform.WindowHandle) + type: Method + source: + id: BeginIme + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IKeyboardComponent.cs + startLine: 81 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Invoke input method editor. + example: [] + syntax: + content: void BeginIme(WindowHandle window) + parameters: + - id: window + type: OpenTK.Platform.WindowHandle + description: The window corresponding to this IME window. + content.vb: Sub BeginIme(window As WindowHandle) + overload: OpenTK.Platform.IKeyboardComponent.BeginIme* +- uid: OpenTK.Platform.IKeyboardComponent.SetImeRectangle(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) + commentId: M:OpenTK.Platform.IKeyboardComponent.SetImeRectangle(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) + id: SetImeRectangle(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) + parent: OpenTK.Platform.IKeyboardComponent + langs: + - csharp + - vb + name: SetImeRectangle(WindowHandle, int, int, int, int) + nameWithType: IKeyboardComponent.SetImeRectangle(WindowHandle, int, int, int, int) + fullName: OpenTK.Platform.IKeyboardComponent.SetImeRectangle(OpenTK.Platform.WindowHandle, int, int, int, int) + type: Method + source: + id: SetImeRectangle + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IKeyboardComponent.cs + startLine: 91 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Set the rectangle to which the IME interface will appear relative to. + example: [] + syntax: + content: void SetImeRectangle(WindowHandle window, int x, int y, int width, int height) + parameters: + - id: window + type: OpenTK.Platform.WindowHandle + description: The window corresponding to this IME window. + - id: x + type: System.Int32 + description: X coordinate of the rectangle in desktop coordinates. + - id: y + type: System.Int32 + description: Y coordinate of the rectangle in desktop coordinates. + - id: width + type: System.Int32 + description: Width of the rectangle in desktop units. + - id: height + type: System.Int32 + description: Height of the rectangle in desktop units. + content.vb: Sub SetImeRectangle(window As WindowHandle, x As Integer, y As Integer, width As Integer, height As Integer) + overload: OpenTK.Platform.IKeyboardComponent.SetImeRectangle* + nameWithType.vb: IKeyboardComponent.SetImeRectangle(WindowHandle, Integer, Integer, Integer, Integer) + fullName.vb: OpenTK.Platform.IKeyboardComponent.SetImeRectangle(OpenTK.Platform.WindowHandle, Integer, Integer, Integer, Integer) + name.vb: SetImeRectangle(WindowHandle, Integer, Integer, Integer, Integer) +- uid: OpenTK.Platform.IKeyboardComponent.EndIme(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IKeyboardComponent.EndIme(OpenTK.Platform.WindowHandle) + id: EndIme(OpenTK.Platform.WindowHandle) + parent: OpenTK.Platform.IKeyboardComponent + langs: + - csharp + - vb + name: EndIme(WindowHandle) + nameWithType: IKeyboardComponent.EndIme(WindowHandle) + fullName: OpenTK.Platform.IKeyboardComponent.EndIme(OpenTK.Platform.WindowHandle) + type: Method + source: + id: EndIme + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IKeyboardComponent.cs + startLine: 97 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Finish input method editor. + example: [] + syntax: + content: void EndIme(WindowHandle window) + parameters: + - id: window + type: OpenTK.Platform.WindowHandle + description: The window corresponding to this IME window. + content.vb: Sub EndIme(window As WindowHandle) + overload: OpenTK.Platform.IKeyboardComponent.EndIme* +references: +- uid: OpenTK.Platform + commentId: N:OpenTK.Platform + href: OpenTK.html + name: OpenTK.Platform + nameWithType: OpenTK.Platform + fullName: OpenTK.Platform + spec.csharp: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Platform + name: Platform + href: OpenTK.Platform.html + spec.vb: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Platform + name: Platform + href: OpenTK.Platform.html +- uid: OpenTK.Platform.IPalComponent.Name + commentId: P:OpenTK.Platform.IPalComponent.Name + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Name + name: Name + nameWithType: IPalComponent.Name + fullName: OpenTK.Platform.IPalComponent.Name +- uid: OpenTK.Platform.IPalComponent.Provides + commentId: P:OpenTK.Platform.IPalComponent.Provides + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Provides + name: Provides + nameWithType: IPalComponent.Provides + fullName: OpenTK.Platform.IPalComponent.Provides +- uid: OpenTK.Platform.IPalComponent.Logger + commentId: P:OpenTK.Platform.IPalComponent.Logger + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Logger + name: Logger + nameWithType: IPalComponent.Logger + fullName: OpenTK.Platform.IPalComponent.Logger +- uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ + name: Initialize(ToolkitOptions) + nameWithType: IPalComponent.Initialize(ToolkitOptions) + fullName: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + spec.csharp: + - uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + name: Initialize + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ + - name: ( + - uid: OpenTK.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Platform.ToolkitOptions.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + name: Initialize + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ + - name: ( + - uid: OpenTK.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Platform.ToolkitOptions.html + - name: ) +- uid: OpenTK.Platform.IPalComponent + commentId: T:OpenTK.Platform.IPalComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IPalComponent.html + name: IPalComponent + nameWithType: IPalComponent + fullName: OpenTK.Platform.IPalComponent +- uid: OpenTK.Platform.IKeyboardComponent.SupportsLayouts* + commentId: Overload:OpenTK.Platform.IKeyboardComponent.SupportsLayouts + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_SupportsLayouts + name: SupportsLayouts + nameWithType: IKeyboardComponent.SupportsLayouts + fullName: OpenTK.Platform.IKeyboardComponent.SupportsLayouts +- uid: System.Boolean + commentId: T:System.Boolean + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + name: bool + nameWithType: bool + fullName: bool + nameWithType.vb: Boolean + fullName.vb: Boolean + name.vb: Boolean +- uid: System + commentId: N:System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System + nameWithType: System + fullName: System +- uid: OpenTK.Platform.IKeyboardComponent.SupportsIme* + commentId: Overload:OpenTK.Platform.IKeyboardComponent.SupportsIme + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_SupportsIme + name: SupportsIme + nameWithType: IKeyboardComponent.SupportsIme + fullName: OpenTK.Platform.IKeyboardComponent.SupportsIme +- uid: OpenTK.Platform.PalNotImplementedException + commentId: T:OpenTK.Platform.PalNotImplementedException + href: OpenTK.Platform.PalNotImplementedException.html + name: PalNotImplementedException + nameWithType: PalNotImplementedException + fullName: OpenTK.Platform.PalNotImplementedException +- uid: OpenTK.Platform.IKeyboardComponent.GetActiveKeyboardLayout* + commentId: Overload:OpenTK.Platform.IKeyboardComponent.GetActiveKeyboardLayout + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_GetActiveKeyboardLayout_OpenTK_Platform_WindowHandle_ + name: GetActiveKeyboardLayout + nameWithType: IKeyboardComponent.GetActiveKeyboardLayout + fullName: OpenTK.Platform.IKeyboardComponent.GetActiveKeyboardLayout +- uid: OpenTK.Platform.WindowHandle + commentId: T:OpenTK.Platform.WindowHandle + parent: OpenTK.Platform + href: OpenTK.Platform.WindowHandle.html + name: WindowHandle + nameWithType: WindowHandle + fullName: OpenTK.Platform.WindowHandle +- uid: System.String + commentId: T:System.String + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + name: string + nameWithType: string + fullName: string + nameWithType.vb: String + fullName.vb: String + name.vb: String +- uid: OpenTK.Platform.IKeyboardComponent.GetAvailableKeyboardLayouts* + commentId: Overload:OpenTK.Platform.IKeyboardComponent.GetAvailableKeyboardLayouts + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_GetAvailableKeyboardLayouts + name: GetAvailableKeyboardLayouts + nameWithType: IKeyboardComponent.GetAvailableKeyboardLayouts + fullName: OpenTK.Platform.IKeyboardComponent.GetAvailableKeyboardLayouts +- uid: System.String[] + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + name: string[] + nameWithType: string[] + fullName: string[] + nameWithType.vb: String() + fullName.vb: String() + name.vb: String() + spec.csharp: + - uid: System.String + name: string + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: '[' + - name: ']' + spec.vb: + - uid: System.String + name: String + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ( + - name: ) +- uid: OpenTK.Platform.Scancode + commentId: T:OpenTK.Platform.Scancode + parent: OpenTK.Platform + href: OpenTK.Platform.Scancode.html + name: Scancode + nameWithType: Scancode + fullName: OpenTK.Platform.Scancode +- uid: OpenTK.Platform.Key + commentId: T:OpenTK.Platform.Key + parent: OpenTK.Platform + href: OpenTK.Platform.Key.html + name: Key + nameWithType: Key + fullName: OpenTK.Platform.Key +- uid: OpenTK.Platform.Scancode.Unknown + commentId: F:OpenTK.Platform.Scancode.Unknown + href: OpenTK.Platform.Scancode.html#OpenTK_Platform_Scancode_Unknown + name: Unknown + nameWithType: Scancode.Unknown + fullName: OpenTK.Platform.Scancode.Unknown +- uid: OpenTK.Platform.IKeyboardComponent.GetScancodeFromKey* + commentId: Overload:OpenTK.Platform.IKeyboardComponent.GetScancodeFromKey + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_GetScancodeFromKey_OpenTK_Platform_Key_ + name: GetScancodeFromKey + nameWithType: IKeyboardComponent.GetScancodeFromKey + fullName: OpenTK.Platform.IKeyboardComponent.GetScancodeFromKey +- uid: OpenTK.Platform.Key.Unknown + commentId: F:OpenTK.Platform.Key.Unknown + href: OpenTK.Platform.Key.html#OpenTK_Platform_Key_Unknown + name: Unknown + nameWithType: Key.Unknown + fullName: OpenTK.Platform.Key.Unknown +- uid: OpenTK.Platform.IKeyboardComponent.GetKeyFromScancode* + commentId: Overload:OpenTK.Platform.IKeyboardComponent.GetKeyFromScancode + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_GetKeyFromScancode_OpenTK_Platform_Scancode_ + name: GetKeyFromScancode + nameWithType: IKeyboardComponent.GetKeyFromScancode + fullName: OpenTK.Platform.IKeyboardComponent.GetKeyFromScancode +- uid: OpenTK.Platform.IKeyboardComponent.GetKeyboardState* + commentId: Overload:OpenTK.Platform.IKeyboardComponent.GetKeyboardState + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_GetKeyboardState_System_Boolean___ + name: GetKeyboardState + nameWithType: IKeyboardComponent.GetKeyboardState + fullName: OpenTK.Platform.IKeyboardComponent.GetKeyboardState +- uid: System.Boolean[] + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + name: bool[] + nameWithType: bool[] + fullName: bool[] + nameWithType.vb: Boolean() + fullName.vb: Boolean() + name.vb: Boolean() + spec.csharp: + - uid: System.Boolean + name: bool + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: '[' + - name: ']' + spec.vb: + - uid: System.Boolean + name: Boolean + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: ( + - name: ) +- uid: OpenTK.Platform.IKeyboardComponent.GetKeyboardModifiers* + commentId: Overload:OpenTK.Platform.IKeyboardComponent.GetKeyboardModifiers + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_GetKeyboardModifiers + name: GetKeyboardModifiers + nameWithType: IKeyboardComponent.GetKeyboardModifiers + fullName: OpenTK.Platform.IKeyboardComponent.GetKeyboardModifiers +- uid: OpenTK.Platform.KeyModifier + commentId: T:OpenTK.Platform.KeyModifier + parent: OpenTK.Platform + href: OpenTK.Platform.KeyModifier.html + name: KeyModifier + nameWithType: KeyModifier + fullName: OpenTK.Platform.KeyModifier +- uid: OpenTK.Platform.IKeyboardComponent.BeginIme* + commentId: Overload:OpenTK.Platform.IKeyboardComponent.BeginIme + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_BeginIme_OpenTK_Platform_WindowHandle_ + name: BeginIme + nameWithType: IKeyboardComponent.BeginIme + fullName: OpenTK.Platform.IKeyboardComponent.BeginIme +- uid: OpenTK.Platform.IKeyboardComponent.SetImeRectangle* + commentId: Overload:OpenTK.Platform.IKeyboardComponent.SetImeRectangle + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_SetImeRectangle_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_System_Int32_System_Int32_ + name: SetImeRectangle + nameWithType: IKeyboardComponent.SetImeRectangle + fullName: OpenTK.Platform.IKeyboardComponent.SetImeRectangle +- uid: System.Int32 + commentId: T:System.Int32 + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + name: int + nameWithType: int + fullName: int + nameWithType.vb: Integer + fullName.vb: Integer + name.vb: Integer +- uid: OpenTK.Platform.IKeyboardComponent.EndIme* + commentId: Overload:OpenTK.Platform.IKeyboardComponent.EndIme + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_EndIme_OpenTK_Platform_WindowHandle_ + name: EndIme + nameWithType: IKeyboardComponent.EndIme + fullName: OpenTK.Platform.IKeyboardComponent.EndIme diff --git a/api/OpenTK.Platform.IMouseComponent.yml b/api/OpenTK.Platform.IMouseComponent.yml new file mode 100644 index 00000000..bdc11317 --- /dev/null +++ b/api/OpenTK.Platform.IMouseComponent.yml @@ -0,0 +1,592 @@ +### YamlMime:ManagedReference +items: +- uid: OpenTK.Platform.IMouseComponent + commentId: T:OpenTK.Platform.IMouseComponent + id: IMouseComponent + parent: OpenTK.Platform + children: + - OpenTK.Platform.IMouseComponent.CanSetMousePosition + - OpenTK.Platform.IMouseComponent.EnableRawMouseMotion(OpenTK.Platform.WindowHandle,System.Boolean) + - OpenTK.Platform.IMouseComponent.GetMouseState(OpenTK.Platform.MouseState@) + - OpenTK.Platform.IMouseComponent.GetPosition(System.Int32@,System.Int32@) + - OpenTK.Platform.IMouseComponent.IsRawMouseMotionEnabled(OpenTK.Platform.WindowHandle) + - OpenTK.Platform.IMouseComponent.SetPosition(System.Int32,System.Int32) + - OpenTK.Platform.IMouseComponent.SupportsRawMouseMotion + langs: + - csharp + - vb + name: IMouseComponent + nameWithType: IMouseComponent + fullName: OpenTK.Platform.IMouseComponent + type: Interface + source: + id: IMouseComponent + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IMouseComponent.cs + startLine: 31 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Base interface for drivers which implement the mouse component. + example: [] + syntax: + content: 'public interface IMouseComponent : IPalComponent' + content.vb: Public Interface IMouseComponent Inherits IPalComponent + inheritedMembers: + - OpenTK.Platform.IPalComponent.Name + - OpenTK.Platform.IPalComponent.Provides + - OpenTK.Platform.IPalComponent.Logger + - OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) +- uid: OpenTK.Platform.IMouseComponent.CanSetMousePosition + commentId: P:OpenTK.Platform.IMouseComponent.CanSetMousePosition + id: CanSetMousePosition + parent: OpenTK.Platform.IMouseComponent + langs: + - csharp + - vb + name: CanSetMousePosition + nameWithType: IMouseComponent.CanSetMousePosition + fullName: OpenTK.Platform.IMouseComponent.CanSetMousePosition + type: Property + source: + id: CanSetMousePosition + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IMouseComponent.cs + startLine: 37 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: If it's possible to set the position of the mouse using . + example: [] + syntax: + content: bool CanSetMousePosition { get; } + parameters: [] + return: + type: System.Boolean + content.vb: ReadOnly Property CanSetMousePosition As Boolean + overload: OpenTK.Platform.IMouseComponent.CanSetMousePosition* + seealso: + - linkId: OpenTK.Platform.IMouseComponent.SetPosition(System.Int32,System.Int32) + commentId: M:OpenTK.Platform.IMouseComponent.SetPosition(System.Int32,System.Int32) +- uid: OpenTK.Platform.IMouseComponent.SupportsRawMouseMotion + commentId: P:OpenTK.Platform.IMouseComponent.SupportsRawMouseMotion + id: SupportsRawMouseMotion + parent: OpenTK.Platform.IMouseComponent + langs: + - csharp + - vb + name: SupportsRawMouseMotion + nameWithType: IMouseComponent.SupportsRawMouseMotion + fullName: OpenTK.Platform.IMouseComponent.SupportsRawMouseMotion + type: Property + source: + id: SupportsRawMouseMotion + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IMouseComponent.cs + startLine: 47 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: >- + If raw mouse motion is supported on this platform. + + If this is false and should not be used. + example: [] + syntax: + content: bool SupportsRawMouseMotion { get; } + parameters: [] + return: + type: System.Boolean + content.vb: ReadOnly Property SupportsRawMouseMotion As Boolean + overload: OpenTK.Platform.IMouseComponent.SupportsRawMouseMotion* + seealso: + - linkId: OpenTK.Platform.IMouseComponent.IsRawMouseMotionEnabled(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IMouseComponent.IsRawMouseMotionEnabled(OpenTK.Platform.WindowHandle) + - linkId: OpenTK.Platform.IMouseComponent.EnableRawMouseMotion(OpenTK.Platform.WindowHandle,System.Boolean) + commentId: M:OpenTK.Platform.IMouseComponent.EnableRawMouseMotion(OpenTK.Platform.WindowHandle,System.Boolean) +- uid: OpenTK.Platform.IMouseComponent.GetPosition(System.Int32@,System.Int32@) + commentId: M:OpenTK.Platform.IMouseComponent.GetPosition(System.Int32@,System.Int32@) + id: GetPosition(System.Int32@,System.Int32@) + parent: OpenTK.Platform.IMouseComponent + langs: + - csharp + - vb + name: GetPosition(out int, out int) + nameWithType: IMouseComponent.GetPosition(out int, out int) + fullName: OpenTK.Platform.IMouseComponent.GetPosition(out int, out int) + type: Method + source: + id: GetPosition + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IMouseComponent.cs + startLine: 58 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Get the mouse cursor position. + example: [] + syntax: + content: void GetPosition(out int x, out int y) + parameters: + - id: x + type: System.Int32 + description: X coordinate of the mouse in desktop space. + - id: y + type: System.Int32 + description: Y coordinate of the mouse in desktop space. + content.vb: Sub GetPosition(x As Integer, y As Integer) + overload: OpenTK.Platform.IMouseComponent.GetPosition* + nameWithType.vb: IMouseComponent.GetPosition(Integer, Integer) + fullName.vb: OpenTK.Platform.IMouseComponent.GetPosition(Integer, Integer) + name.vb: GetPosition(Integer, Integer) +- uid: OpenTK.Platform.IMouseComponent.SetPosition(System.Int32,System.Int32) + commentId: M:OpenTK.Platform.IMouseComponent.SetPosition(System.Int32,System.Int32) + id: SetPosition(System.Int32,System.Int32) + parent: OpenTK.Platform.IMouseComponent + langs: + - csharp + - vb + name: SetPosition(int, int) + nameWithType: IMouseComponent.SetPosition(int, int) + fullName: OpenTK.Platform.IMouseComponent.SetPosition(int, int) + type: Method + source: + id: SetPosition + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IMouseComponent.cs + startLine: 67 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: >- + Set the mouse cursor position. + + Check that is true before using this. + example: [] + syntax: + content: void SetPosition(int x, int y) + parameters: + - id: x + type: System.Int32 + description: X coordinate of the mouse in desktop space. + - id: y + type: System.Int32 + description: Y coordinate of the mouse in desktop space. + content.vb: Sub SetPosition(x As Integer, y As Integer) + overload: OpenTK.Platform.IMouseComponent.SetPosition* + seealso: + - linkId: OpenTK.Platform.IMouseComponent.CanSetMousePosition + commentId: P:OpenTK.Platform.IMouseComponent.CanSetMousePosition + nameWithType.vb: IMouseComponent.SetPosition(Integer, Integer) + fullName.vb: OpenTK.Platform.IMouseComponent.SetPosition(Integer, Integer) + name.vb: SetPosition(Integer, Integer) +- uid: OpenTK.Platform.IMouseComponent.GetMouseState(OpenTK.Platform.MouseState@) + commentId: M:OpenTK.Platform.IMouseComponent.GetMouseState(OpenTK.Platform.MouseState@) + id: GetMouseState(OpenTK.Platform.MouseState@) + parent: OpenTK.Platform.IMouseComponent + langs: + - csharp + - vb + name: GetMouseState(out MouseState) + nameWithType: IMouseComponent.GetMouseState(out MouseState) + fullName: OpenTK.Platform.IMouseComponent.GetMouseState(out OpenTK.Platform.MouseState) + type: Method + source: + id: GetMouseState + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IMouseComponent.cs + startLine: 73 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Fills the state struct with the current mouse state. + example: [] + syntax: + content: void GetMouseState(out MouseState state) + parameters: + - id: state + type: OpenTK.Platform.MouseState + description: The current mouse state. + content.vb: Sub GetMouseState(state As MouseState) + overload: OpenTK.Platform.IMouseComponent.GetMouseState* + nameWithType.vb: IMouseComponent.GetMouseState(MouseState) + fullName.vb: OpenTK.Platform.IMouseComponent.GetMouseState(OpenTK.Platform.MouseState) + name.vb: GetMouseState(MouseState) +- uid: OpenTK.Platform.IMouseComponent.IsRawMouseMotionEnabled(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IMouseComponent.IsRawMouseMotionEnabled(OpenTK.Platform.WindowHandle) + id: IsRawMouseMotionEnabled(OpenTK.Platform.WindowHandle) + parent: OpenTK.Platform.IMouseComponent + langs: + - csharp + - vb + name: IsRawMouseMotionEnabled(WindowHandle) + nameWithType: IMouseComponent.IsRawMouseMotionEnabled(WindowHandle) + fullName: OpenTK.Platform.IMouseComponent.IsRawMouseMotionEnabled(OpenTK.Platform.WindowHandle) + type: Method + source: + id: IsRawMouseMotionEnabled + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IMouseComponent.cs + startLine: 82 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: >- + Returns whether raw mouse motion is enabled for the given window or not. + + Check that is true before using this. + example: [] + syntax: + content: bool IsRawMouseMotionEnabled(WindowHandle window) + parameters: + - id: window + type: OpenTK.Platform.WindowHandle + description: The window to query. + return: + type: System.Boolean + description: If raw mouse motion is enabled. + content.vb: Function IsRawMouseMotionEnabled(window As WindowHandle) As Boolean + overload: OpenTK.Platform.IMouseComponent.IsRawMouseMotionEnabled* + seealso: + - linkId: OpenTK.Platform.IMouseComponent.SupportsRawMouseMotion + commentId: P:OpenTK.Platform.IMouseComponent.SupportsRawMouseMotion +- uid: OpenTK.Platform.IMouseComponent.EnableRawMouseMotion(OpenTK.Platform.WindowHandle,System.Boolean) + commentId: M:OpenTK.Platform.IMouseComponent.EnableRawMouseMotion(OpenTK.Platform.WindowHandle,System.Boolean) + id: EnableRawMouseMotion(OpenTK.Platform.WindowHandle,System.Boolean) + parent: OpenTK.Platform.IMouseComponent + langs: + - csharp + - vb + name: EnableRawMouseMotion(WindowHandle, bool) + nameWithType: IMouseComponent.EnableRawMouseMotion(WindowHandle, bool) + fullName: OpenTK.Platform.IMouseComponent.EnableRawMouseMotion(OpenTK.Platform.WindowHandle, bool) + type: Method + source: + id: EnableRawMouseMotion + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IMouseComponent.cs + startLine: 93 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: >- + Enables or disables raw mouse motion for a specific window. + + When raw mouse motion is enabled the window will receive events, + + in addition to the normal events. + + Check that is true before using this. + example: [] + syntax: + content: void EnableRawMouseMotion(WindowHandle window, bool enable) + parameters: + - id: window + type: OpenTK.Platform.WindowHandle + description: The window to enable or disable raw mouse motion for. + - id: enable + type: System.Boolean + description: Whether to enable or disable raw mouse motion. + content.vb: Sub EnableRawMouseMotion(window As WindowHandle, enable As Boolean) + overload: OpenTK.Platform.IMouseComponent.EnableRawMouseMotion* + seealso: + - linkId: OpenTK.Platform.IMouseComponent.SupportsRawMouseMotion + commentId: P:OpenTK.Platform.IMouseComponent.SupportsRawMouseMotion + nameWithType.vb: IMouseComponent.EnableRawMouseMotion(WindowHandle, Boolean) + fullName.vb: OpenTK.Platform.IMouseComponent.EnableRawMouseMotion(OpenTK.Platform.WindowHandle, Boolean) + name.vb: EnableRawMouseMotion(WindowHandle, Boolean) +references: +- uid: OpenTK.Platform + commentId: N:OpenTK.Platform + href: OpenTK.html + name: OpenTK.Platform + nameWithType: OpenTK.Platform + fullName: OpenTK.Platform + spec.csharp: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Platform + name: Platform + href: OpenTK.Platform.html + spec.vb: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Platform + name: Platform + href: OpenTK.Platform.html +- uid: OpenTK.Platform.IPalComponent.Name + commentId: P:OpenTK.Platform.IPalComponent.Name + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Name + name: Name + nameWithType: IPalComponent.Name + fullName: OpenTK.Platform.IPalComponent.Name +- uid: OpenTK.Platform.IPalComponent.Provides + commentId: P:OpenTK.Platform.IPalComponent.Provides + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Provides + name: Provides + nameWithType: IPalComponent.Provides + fullName: OpenTK.Platform.IPalComponent.Provides +- uid: OpenTK.Platform.IPalComponent.Logger + commentId: P:OpenTK.Platform.IPalComponent.Logger + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Logger + name: Logger + nameWithType: IPalComponent.Logger + fullName: OpenTK.Platform.IPalComponent.Logger +- uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ + name: Initialize(ToolkitOptions) + nameWithType: IPalComponent.Initialize(ToolkitOptions) + fullName: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + spec.csharp: + - uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + name: Initialize + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ + - name: ( + - uid: OpenTK.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Platform.ToolkitOptions.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + name: Initialize + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ + - name: ( + - uid: OpenTK.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Platform.ToolkitOptions.html + - name: ) +- uid: OpenTK.Platform.IPalComponent + commentId: T:OpenTK.Platform.IPalComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IPalComponent.html + name: IPalComponent + nameWithType: IPalComponent + fullName: OpenTK.Platform.IPalComponent +- uid: OpenTK.Platform.IMouseComponent.SetPosition(System.Int32,System.Int32) + commentId: M:OpenTK.Platform.IMouseComponent.SetPosition(System.Int32,System.Int32) + parent: OpenTK.Platform.IMouseComponent + isExternal: true + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_SetPosition_System_Int32_System_Int32_ + name: SetPosition(int, int) + nameWithType: IMouseComponent.SetPosition(int, int) + fullName: OpenTK.Platform.IMouseComponent.SetPosition(int, int) + nameWithType.vb: IMouseComponent.SetPosition(Integer, Integer) + fullName.vb: OpenTK.Platform.IMouseComponent.SetPosition(Integer, Integer) + name.vb: SetPosition(Integer, Integer) + spec.csharp: + - uid: OpenTK.Platform.IMouseComponent.SetPosition(System.Int32,System.Int32) + name: SetPosition + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_SetPosition_System_Int32_System_Int32_ + - name: ( + - uid: System.Int32 + name: int + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ',' + - name: " " + - uid: System.Int32 + name: int + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ) + spec.vb: + - uid: OpenTK.Platform.IMouseComponent.SetPosition(System.Int32,System.Int32) + name: SetPosition + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_SetPosition_System_Int32_System_Int32_ + - name: ( + - uid: System.Int32 + name: Integer + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ',' + - name: " " + - uid: System.Int32 + name: Integer + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ) +- uid: OpenTK.Platform.IMouseComponent.CanSetMousePosition* + commentId: Overload:OpenTK.Platform.IMouseComponent.CanSetMousePosition + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_CanSetMousePosition + name: CanSetMousePosition + nameWithType: IMouseComponent.CanSetMousePosition + fullName: OpenTK.Platform.IMouseComponent.CanSetMousePosition +- uid: System.Boolean + commentId: T:System.Boolean + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + name: bool + nameWithType: bool + fullName: bool + nameWithType.vb: Boolean + fullName.vb: Boolean + name.vb: Boolean +- uid: OpenTK.Platform.IMouseComponent + commentId: T:OpenTK.Platform.IMouseComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IMouseComponent.html + name: IMouseComponent + nameWithType: IMouseComponent + fullName: OpenTK.Platform.IMouseComponent +- uid: System + commentId: N:System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System + nameWithType: System + fullName: System +- uid: OpenTK.Platform.IMouseComponent.IsRawMouseMotionEnabled(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IMouseComponent.IsRawMouseMotionEnabled(OpenTK.Platform.WindowHandle) + parent: OpenTK.Platform.IMouseComponent + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_IsRawMouseMotionEnabled_OpenTK_Platform_WindowHandle_ + name: IsRawMouseMotionEnabled(WindowHandle) + nameWithType: IMouseComponent.IsRawMouseMotionEnabled(WindowHandle) + fullName: OpenTK.Platform.IMouseComponent.IsRawMouseMotionEnabled(OpenTK.Platform.WindowHandle) + spec.csharp: + - uid: OpenTK.Platform.IMouseComponent.IsRawMouseMotionEnabled(OpenTK.Platform.WindowHandle) + name: IsRawMouseMotionEnabled + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_IsRawMouseMotionEnabled_OpenTK_Platform_WindowHandle_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IMouseComponent.IsRawMouseMotionEnabled(OpenTK.Platform.WindowHandle) + name: IsRawMouseMotionEnabled + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_IsRawMouseMotionEnabled_OpenTK_Platform_WindowHandle_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ) +- uid: OpenTK.Platform.IMouseComponent.EnableRawMouseMotion(OpenTK.Platform.WindowHandle,System.Boolean) + commentId: M:OpenTK.Platform.IMouseComponent.EnableRawMouseMotion(OpenTK.Platform.WindowHandle,System.Boolean) + parent: OpenTK.Platform.IMouseComponent + isExternal: true + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_EnableRawMouseMotion_OpenTK_Platform_WindowHandle_System_Boolean_ + name: EnableRawMouseMotion(WindowHandle, bool) + nameWithType: IMouseComponent.EnableRawMouseMotion(WindowHandle, bool) + fullName: OpenTK.Platform.IMouseComponent.EnableRawMouseMotion(OpenTK.Platform.WindowHandle, bool) + nameWithType.vb: IMouseComponent.EnableRawMouseMotion(WindowHandle, Boolean) + fullName.vb: OpenTK.Platform.IMouseComponent.EnableRawMouseMotion(OpenTK.Platform.WindowHandle, Boolean) + name.vb: EnableRawMouseMotion(WindowHandle, Boolean) + spec.csharp: + - uid: OpenTK.Platform.IMouseComponent.EnableRawMouseMotion(OpenTK.Platform.WindowHandle,System.Boolean) + name: EnableRawMouseMotion + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_EnableRawMouseMotion_OpenTK_Platform_WindowHandle_System_Boolean_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: System.Boolean + name: bool + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: ) + spec.vb: + - uid: OpenTK.Platform.IMouseComponent.EnableRawMouseMotion(OpenTK.Platform.WindowHandle,System.Boolean) + name: EnableRawMouseMotion + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_EnableRawMouseMotion_OpenTK_Platform_WindowHandle_System_Boolean_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: System.Boolean + name: Boolean + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: ) +- uid: OpenTK.Platform.IMouseComponent.SupportsRawMouseMotion* + commentId: Overload:OpenTK.Platform.IMouseComponent.SupportsRawMouseMotion + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_SupportsRawMouseMotion + name: SupportsRawMouseMotion + nameWithType: IMouseComponent.SupportsRawMouseMotion + fullName: OpenTK.Platform.IMouseComponent.SupportsRawMouseMotion +- uid: OpenTK.Platform.IMouseComponent.GetPosition* + commentId: Overload:OpenTK.Platform.IMouseComponent.GetPosition + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_GetPosition_System_Int32__System_Int32__ + name: GetPosition + nameWithType: IMouseComponent.GetPosition + fullName: OpenTK.Platform.IMouseComponent.GetPosition +- uid: System.Int32 + commentId: T:System.Int32 + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + name: int + nameWithType: int + fullName: int + nameWithType.vb: Integer + fullName.vb: Integer + name.vb: Integer +- uid: OpenTK.Platform.IMouseComponent.CanSetMousePosition + commentId: P:OpenTK.Platform.IMouseComponent.CanSetMousePosition + parent: OpenTK.Platform.IMouseComponent + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_CanSetMousePosition + name: CanSetMousePosition + nameWithType: IMouseComponent.CanSetMousePosition + fullName: OpenTK.Platform.IMouseComponent.CanSetMousePosition +- uid: OpenTK.Platform.IMouseComponent.SetPosition* + commentId: Overload:OpenTK.Platform.IMouseComponent.SetPosition + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_SetPosition_System_Int32_System_Int32_ + name: SetPosition + nameWithType: IMouseComponent.SetPosition + fullName: OpenTK.Platform.IMouseComponent.SetPosition +- uid: OpenTK.Platform.IMouseComponent.GetMouseState* + commentId: Overload:OpenTK.Platform.IMouseComponent.GetMouseState + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_GetMouseState_OpenTK_Platform_MouseState__ + name: GetMouseState + nameWithType: IMouseComponent.GetMouseState + fullName: OpenTK.Platform.IMouseComponent.GetMouseState +- uid: OpenTK.Platform.MouseState + commentId: T:OpenTK.Platform.MouseState + parent: OpenTK.Platform + href: OpenTK.Platform.MouseState.html + name: MouseState + nameWithType: MouseState + fullName: OpenTK.Platform.MouseState +- uid: OpenTK.Platform.IMouseComponent.SupportsRawMouseMotion + commentId: P:OpenTK.Platform.IMouseComponent.SupportsRawMouseMotion + parent: OpenTK.Platform.IMouseComponent + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_SupportsRawMouseMotion + name: SupportsRawMouseMotion + nameWithType: IMouseComponent.SupportsRawMouseMotion + fullName: OpenTK.Platform.IMouseComponent.SupportsRawMouseMotion +- uid: OpenTK.Platform.IMouseComponent.IsRawMouseMotionEnabled* + commentId: Overload:OpenTK.Platform.IMouseComponent.IsRawMouseMotionEnabled + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_IsRawMouseMotionEnabled_OpenTK_Platform_WindowHandle_ + name: IsRawMouseMotionEnabled + nameWithType: IMouseComponent.IsRawMouseMotionEnabled + fullName: OpenTK.Platform.IMouseComponent.IsRawMouseMotionEnabled +- uid: OpenTK.Platform.WindowHandle + commentId: T:OpenTK.Platform.WindowHandle + parent: OpenTK.Platform + href: OpenTK.Platform.WindowHandle.html + name: WindowHandle + nameWithType: WindowHandle + fullName: OpenTK.Platform.WindowHandle +- uid: OpenTK.Platform.RawMouseMoveEventArgs + commentId: T:OpenTK.Platform.RawMouseMoveEventArgs + href: OpenTK.Platform.RawMouseMoveEventArgs.html + name: RawMouseMoveEventArgs + nameWithType: RawMouseMoveEventArgs + fullName: OpenTK.Platform.RawMouseMoveEventArgs +- uid: OpenTK.Platform.MouseMoveEventArgs + commentId: T:OpenTK.Platform.MouseMoveEventArgs + href: OpenTK.Platform.MouseMoveEventArgs.html + name: MouseMoveEventArgs + nameWithType: MouseMoveEventArgs + fullName: OpenTK.Platform.MouseMoveEventArgs +- uid: OpenTK.Platform.IMouseComponent.EnableRawMouseMotion* + commentId: Overload:OpenTK.Platform.IMouseComponent.EnableRawMouseMotion + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_EnableRawMouseMotion_OpenTK_Platform_WindowHandle_System_Boolean_ + name: EnableRawMouseMotion + nameWithType: IMouseComponent.EnableRawMouseMotion + fullName: OpenTK.Platform.IMouseComponent.EnableRawMouseMotion diff --git a/api/OpenTK.Platform.IOpenGLComponent.yml b/api/OpenTK.Platform.IOpenGLComponent.yml new file mode 100644 index 00000000..c5ec7b43 --- /dev/null +++ b/api/OpenTK.Platform.IOpenGLComponent.yml @@ -0,0 +1,765 @@ +### YamlMime:ManagedReference +items: +- uid: OpenTK.Platform.IOpenGLComponent + commentId: T:OpenTK.Platform.IOpenGLComponent + id: IOpenGLComponent + parent: OpenTK.Platform + children: + - OpenTK.Platform.IOpenGLComponent.CanCreateFromSurface + - OpenTK.Platform.IOpenGLComponent.CanCreateFromWindow + - OpenTK.Platform.IOpenGLComponent.CanShareContexts + - OpenTK.Platform.IOpenGLComponent.CreateFromSurface + - OpenTK.Platform.IOpenGLComponent.CreateFromWindow(OpenTK.Platform.WindowHandle) + - OpenTK.Platform.IOpenGLComponent.DestroyContext(OpenTK.Platform.OpenGLContextHandle) + - OpenTK.Platform.IOpenGLComponent.GetBindingsContext(OpenTK.Platform.OpenGLContextHandle) + - OpenTK.Platform.IOpenGLComponent.GetCurrentContext + - OpenTK.Platform.IOpenGLComponent.GetProcedureAddress(OpenTK.Platform.OpenGLContextHandle,System.String) + - OpenTK.Platform.IOpenGLComponent.GetSharedContext(OpenTK.Platform.OpenGLContextHandle) + - OpenTK.Platform.IOpenGLComponent.GetSwapInterval + - OpenTK.Platform.IOpenGLComponent.SetCurrentContext(OpenTK.Platform.OpenGLContextHandle) + - OpenTK.Platform.IOpenGLComponent.SetSwapInterval(System.Int32) + - OpenTK.Platform.IOpenGLComponent.SwapBuffers(OpenTK.Platform.OpenGLContextHandle) + langs: + - csharp + - vb + name: IOpenGLComponent + nameWithType: IOpenGLComponent + fullName: OpenTK.Platform.IOpenGLComponent + type: Interface + source: + id: IOpenGLComponent + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IOpenGLComponent.cs + startLine: 10 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Interface for drivers which provide the PAL OpenGL Component. + example: [] + syntax: + content: 'public interface IOpenGLComponent : IPalComponent' + content.vb: Public Interface IOpenGLComponent Inherits IPalComponent + inheritedMembers: + - OpenTK.Platform.IPalComponent.Name + - OpenTK.Platform.IPalComponent.Provides + - OpenTK.Platform.IPalComponent.Logger + - OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) +- uid: OpenTK.Platform.IOpenGLComponent.CanShareContexts + commentId: P:OpenTK.Platform.IOpenGLComponent.CanShareContexts + id: CanShareContexts + parent: OpenTK.Platform.IOpenGLComponent + langs: + - csharp + - vb + name: CanShareContexts + nameWithType: IOpenGLComponent.CanShareContexts + fullName: OpenTK.Platform.IOpenGLComponent.CanShareContexts + type: Property + source: + id: CanShareContexts + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IOpenGLComponent.cs + startLine: 15 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: True if the component driver has the capability to share display lists between OpenGL contexts. + example: [] + syntax: + content: bool CanShareContexts { get; } + parameters: [] + return: + type: System.Boolean + content.vb: ReadOnly Property CanShareContexts As Boolean + overload: OpenTK.Platform.IOpenGLComponent.CanShareContexts* +- uid: OpenTK.Platform.IOpenGLComponent.CanCreateFromWindow + commentId: P:OpenTK.Platform.IOpenGLComponent.CanCreateFromWindow + id: CanCreateFromWindow + parent: OpenTK.Platform.IOpenGLComponent + langs: + - csharp + - vb + name: CanCreateFromWindow + nameWithType: IOpenGLComponent.CanCreateFromWindow + fullName: OpenTK.Platform.IOpenGLComponent.CanCreateFromWindow + type: Property + source: + id: CanCreateFromWindow + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IOpenGLComponent.cs + startLine: 21 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: True if the component driver can create a context from windows using . + example: [] + syntax: + content: bool CanCreateFromWindow { get; } + parameters: [] + return: + type: System.Boolean + content.vb: ReadOnly Property CanCreateFromWindow As Boolean + overload: OpenTK.Platform.IOpenGLComponent.CanCreateFromWindow* + seealso: + - linkId: OpenTK.Platform.IOpenGLComponent.CreateFromWindow(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IOpenGLComponent.CreateFromWindow(OpenTK.Platform.WindowHandle) +- uid: OpenTK.Platform.IOpenGLComponent.CanCreateFromSurface + commentId: P:OpenTK.Platform.IOpenGLComponent.CanCreateFromSurface + id: CanCreateFromSurface + parent: OpenTK.Platform.IOpenGLComponent + langs: + - csharp + - vb + name: CanCreateFromSurface + nameWithType: IOpenGLComponent.CanCreateFromSurface + fullName: OpenTK.Platform.IOpenGLComponent.CanCreateFromSurface + type: Property + source: + id: CanCreateFromSurface + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IOpenGLComponent.cs + startLine: 26 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: True if the component driver can create a context from surfaces using . + example: [] + syntax: + content: bool CanCreateFromSurface { get; } + parameters: [] + return: + type: System.Boolean + content.vb: ReadOnly Property CanCreateFromSurface As Boolean + overload: OpenTK.Platform.IOpenGLComponent.CanCreateFromSurface* +- uid: OpenTK.Platform.IOpenGLComponent.CreateFromSurface + commentId: M:OpenTK.Platform.IOpenGLComponent.CreateFromSurface + id: CreateFromSurface + parent: OpenTK.Platform.IOpenGLComponent + langs: + - csharp + - vb + name: CreateFromSurface() + nameWithType: IOpenGLComponent.CreateFromSurface() + fullName: OpenTK.Platform.IOpenGLComponent.CreateFromSurface() + type: Method + source: + id: CreateFromSurface + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IOpenGLComponent.cs + startLine: 32 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Create and OpenGL context for a surface. + example: [] + syntax: + content: OpenGLContextHandle CreateFromSurface() + return: + type: OpenTK.Platform.OpenGLContextHandle + description: An OpenGL context handle. + content.vb: Function CreateFromSurface() As OpenGLContextHandle + overload: OpenTK.Platform.IOpenGLComponent.CreateFromSurface* +- uid: OpenTK.Platform.IOpenGLComponent.CreateFromWindow(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IOpenGLComponent.CreateFromWindow(OpenTK.Platform.WindowHandle) + id: CreateFromWindow(OpenTK.Platform.WindowHandle) + parent: OpenTK.Platform.IOpenGLComponent + langs: + - csharp + - vb + name: CreateFromWindow(WindowHandle) + nameWithType: IOpenGLComponent.CreateFromWindow(WindowHandle) + fullName: OpenTK.Platform.IOpenGLComponent.CreateFromWindow(OpenTK.Platform.WindowHandle) + type: Method + source: + id: CreateFromWindow + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IOpenGLComponent.cs + startLine: 41 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Create an OpenGL context for a window. + example: [] + syntax: + content: OpenGLContextHandle CreateFromWindow(WindowHandle handle) + parameters: + - id: handle + type: OpenTK.Platform.WindowHandle + description: The window for which the OpenGL context should be created. + return: + type: OpenTK.Platform.OpenGLContextHandle + description: An OpenGL context handle. + content.vb: Function CreateFromWindow(handle As WindowHandle) As OpenGLContextHandle + overload: OpenTK.Platform.IOpenGLComponent.CreateFromWindow* +- uid: OpenTK.Platform.IOpenGLComponent.DestroyContext(OpenTK.Platform.OpenGLContextHandle) + commentId: M:OpenTK.Platform.IOpenGLComponent.DestroyContext(OpenTK.Platform.OpenGLContextHandle) + id: DestroyContext(OpenTK.Platform.OpenGLContextHandle) + parent: OpenTK.Platform.IOpenGLComponent + langs: + - csharp + - vb + name: DestroyContext(OpenGLContextHandle) + nameWithType: IOpenGLComponent.DestroyContext(OpenGLContextHandle) + fullName: OpenTK.Platform.IOpenGLComponent.DestroyContext(OpenTK.Platform.OpenGLContextHandle) + type: Method + source: + id: DestroyContext + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IOpenGLComponent.cs + startLine: 48 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Destroy an OpenGL context. + example: [] + syntax: + content: void DestroyContext(OpenGLContextHandle handle) + parameters: + - id: handle + type: OpenTK.Platform.OpenGLContextHandle + description: Handle to the OpenGL context to destroy. + content.vb: Sub DestroyContext(handle As OpenGLContextHandle) + overload: OpenTK.Platform.IOpenGLComponent.DestroyContext* + exceptions: + - type: System.ArgumentNullException + commentId: T:System.ArgumentNullException + description: OpenGL context handle is null. +- uid: OpenTK.Platform.IOpenGLComponent.GetBindingsContext(OpenTK.Platform.OpenGLContextHandle) + commentId: M:OpenTK.Platform.IOpenGLComponent.GetBindingsContext(OpenTK.Platform.OpenGLContextHandle) + id: GetBindingsContext(OpenTK.Platform.OpenGLContextHandle) + parent: OpenTK.Platform.IOpenGLComponent + langs: + - csharp + - vb + name: GetBindingsContext(OpenGLContextHandle) + nameWithType: IOpenGLComponent.GetBindingsContext(OpenGLContextHandle) + fullName: OpenTK.Platform.IOpenGLComponent.GetBindingsContext(OpenTK.Platform.OpenGLContextHandle) + type: Method + source: + id: GetBindingsContext + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IOpenGLComponent.cs + startLine: 55 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Gets a from an . + example: [] + syntax: + content: IBindingsContext GetBindingsContext(OpenGLContextHandle handle) + parameters: + - id: handle + type: OpenTK.Platform.OpenGLContextHandle + description: The handle to get a bindings context for. + return: + type: OpenTK.IBindingsContext + description: The created bindings context. + content.vb: Function GetBindingsContext(handle As OpenGLContextHandle) As IBindingsContext + overload: OpenTK.Platform.IOpenGLComponent.GetBindingsContext* +- uid: OpenTK.Platform.IOpenGLComponent.GetProcedureAddress(OpenTK.Platform.OpenGLContextHandle,System.String) + commentId: M:OpenTK.Platform.IOpenGLComponent.GetProcedureAddress(OpenTK.Platform.OpenGLContextHandle,System.String) + id: GetProcedureAddress(OpenTK.Platform.OpenGLContextHandle,System.String) + parent: OpenTK.Platform.IOpenGLComponent + langs: + - csharp + - vb + name: GetProcedureAddress(OpenGLContextHandle, string) + nameWithType: IOpenGLComponent.GetProcedureAddress(OpenGLContextHandle, string) + fullName: OpenTK.Platform.IOpenGLComponent.GetProcedureAddress(OpenTK.Platform.OpenGLContextHandle, string) + type: Method + source: + id: GetProcedureAddress + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IOpenGLComponent.cs + startLine: 64 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Get the procedure address for an OpenGL command. + example: [] + syntax: + content: nint GetProcedureAddress(OpenGLContextHandle handle, string procedureName) + parameters: + - id: handle + type: OpenTK.Platform.OpenGLContextHandle + description: Handle to an OpenGL context. + - id: procedureName + type: System.String + description: Name of the OpenGL command. + return: + type: System.IntPtr + description: The procedure address to the OpenGL command. + content.vb: Function GetProcedureAddress(handle As OpenGLContextHandle, procedureName As String) As IntPtr + overload: OpenTK.Platform.IOpenGLComponent.GetProcedureAddress* + exceptions: + - type: System.ArgumentNullException + commentId: T:System.ArgumentNullException + description: OpenGL context handle or procedure name is null. + nameWithType.vb: IOpenGLComponent.GetProcedureAddress(OpenGLContextHandle, String) + fullName.vb: OpenTK.Platform.IOpenGLComponent.GetProcedureAddress(OpenTK.Platform.OpenGLContextHandle, String) + name.vb: GetProcedureAddress(OpenGLContextHandle, String) +- uid: OpenTK.Platform.IOpenGLComponent.GetCurrentContext + commentId: M:OpenTK.Platform.IOpenGLComponent.GetCurrentContext + id: GetCurrentContext + parent: OpenTK.Platform.IOpenGLComponent + langs: + - csharp + - vb + name: GetCurrentContext() + nameWithType: IOpenGLComponent.GetCurrentContext() + fullName: OpenTK.Platform.IOpenGLComponent.GetCurrentContext() + type: Method + source: + id: GetCurrentContext + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IOpenGLComponent.cs + startLine: 70 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Get the current OpenGL context for this thread. + example: [] + syntax: + content: OpenGLContextHandle? GetCurrentContext() + return: + type: OpenTK.Platform.OpenGLContextHandle + description: Handle to the current OpenGL context, null if none are current. + content.vb: Function GetCurrentContext() As OpenGLContextHandle + overload: OpenTK.Platform.IOpenGLComponent.GetCurrentContext* +- uid: OpenTK.Platform.IOpenGLComponent.SetCurrentContext(OpenTK.Platform.OpenGLContextHandle) + commentId: M:OpenTK.Platform.IOpenGLComponent.SetCurrentContext(OpenTK.Platform.OpenGLContextHandle) + id: SetCurrentContext(OpenTK.Platform.OpenGLContextHandle) + parent: OpenTK.Platform.IOpenGLComponent + langs: + - csharp + - vb + name: SetCurrentContext(OpenGLContextHandle?) + nameWithType: IOpenGLComponent.SetCurrentContext(OpenGLContextHandle?) + fullName: OpenTK.Platform.IOpenGLComponent.SetCurrentContext(OpenTK.Platform.OpenGLContextHandle?) + type: Method + source: + id: SetCurrentContext + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IOpenGLComponent.cs + startLine: 78 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Set the current OpenGL context for this thread. + example: [] + syntax: + content: bool SetCurrentContext(OpenGLContextHandle? handle) + parameters: + - id: handle + type: OpenTK.Platform.OpenGLContextHandle + description: Handle to the OpenGL context to make current, or null to make none current. + return: + type: System.Boolean + description: True when the OpenGL context is successfully made current. + content.vb: Function SetCurrentContext(handle As OpenGLContextHandle) As Boolean + overload: OpenTK.Platform.IOpenGLComponent.SetCurrentContext* + nameWithType.vb: IOpenGLComponent.SetCurrentContext(OpenGLContextHandle) + fullName.vb: OpenTK.Platform.IOpenGLComponent.SetCurrentContext(OpenTK.Platform.OpenGLContextHandle) + name.vb: SetCurrentContext(OpenGLContextHandle) +- uid: OpenTK.Platform.IOpenGLComponent.GetSharedContext(OpenTK.Platform.OpenGLContextHandle) + commentId: M:OpenTK.Platform.IOpenGLComponent.GetSharedContext(OpenTK.Platform.OpenGLContextHandle) + id: GetSharedContext(OpenTK.Platform.OpenGLContextHandle) + parent: OpenTK.Platform.IOpenGLComponent + langs: + - csharp + - vb + name: GetSharedContext(OpenGLContextHandle) + nameWithType: IOpenGLComponent.GetSharedContext(OpenGLContextHandle) + fullName: OpenTK.Platform.IOpenGLComponent.GetSharedContext(OpenTK.Platform.OpenGLContextHandle) + type: Method + source: + id: GetSharedContext + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IOpenGLComponent.cs + startLine: 85 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Gets the context which the given context shares display lists with. + example: [] + syntax: + content: OpenGLContextHandle? GetSharedContext(OpenGLContextHandle handle) + parameters: + - id: handle + type: OpenTK.Platform.OpenGLContextHandle + description: Handle to the OpenGL context. + return: + type: OpenTK.Platform.OpenGLContextHandle + description: Handle to the OpenGL context the given context shares display lists with. + content.vb: Function GetSharedContext(handle As OpenGLContextHandle) As OpenGLContextHandle + overload: OpenTK.Platform.IOpenGLComponent.GetSharedContext* +- uid: OpenTK.Platform.IOpenGLComponent.SetSwapInterval(System.Int32) + commentId: M:OpenTK.Platform.IOpenGLComponent.SetSwapInterval(System.Int32) + id: SetSwapInterval(System.Int32) + parent: OpenTK.Platform.IOpenGLComponent + langs: + - csharp + - vb + name: SetSwapInterval(int) + nameWithType: IOpenGLComponent.SetSwapInterval(int) + fullName: OpenTK.Platform.IOpenGLComponent.SetSwapInterval(int) + type: Method + source: + id: SetSwapInterval + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IOpenGLComponent.cs + startLine: 92 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Sets the swap interval of the current OpenGL context. + example: [] + syntax: + content: void SetSwapInterval(int interval) + parameters: + - id: interval + type: System.Int32 + description: The new swap interval. + content.vb: Sub SetSwapInterval(interval As Integer) + overload: OpenTK.Platform.IOpenGLComponent.SetSwapInterval* + nameWithType.vb: IOpenGLComponent.SetSwapInterval(Integer) + fullName.vb: OpenTK.Platform.IOpenGLComponent.SetSwapInterval(Integer) + name.vb: SetSwapInterval(Integer) +- uid: OpenTK.Platform.IOpenGLComponent.GetSwapInterval + commentId: M:OpenTK.Platform.IOpenGLComponent.GetSwapInterval + id: GetSwapInterval + parent: OpenTK.Platform.IOpenGLComponent + langs: + - csharp + - vb + name: GetSwapInterval() + nameWithType: IOpenGLComponent.GetSwapInterval() + fullName: OpenTK.Platform.IOpenGLComponent.GetSwapInterval() + type: Method + source: + id: GetSwapInterval + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IOpenGLComponent.cs + startLine: 99 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Gets the swap interval of the current OpenGL context. + example: [] + syntax: + content: int GetSwapInterval() + return: + type: System.Int32 + description: The current swap interval. + content.vb: Function GetSwapInterval() As Integer + overload: OpenTK.Platform.IOpenGLComponent.GetSwapInterval* +- uid: OpenTK.Platform.IOpenGLComponent.SwapBuffers(OpenTK.Platform.OpenGLContextHandle) + commentId: M:OpenTK.Platform.IOpenGLComponent.SwapBuffers(OpenTK.Platform.OpenGLContextHandle) + id: SwapBuffers(OpenTK.Platform.OpenGLContextHandle) + parent: OpenTK.Platform.IOpenGLComponent + langs: + - csharp + - vb + name: SwapBuffers(OpenGLContextHandle) + nameWithType: IOpenGLComponent.SwapBuffers(OpenGLContextHandle) + fullName: OpenTK.Platform.IOpenGLComponent.SwapBuffers(OpenTK.Platform.OpenGLContextHandle) + type: Method + source: + id: SwapBuffers + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IOpenGLComponent.cs + startLine: 105 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Swaps the buffer of the specified context. + example: [] + syntax: + content: void SwapBuffers(OpenGLContextHandle handle) + parameters: + - id: handle + type: OpenTK.Platform.OpenGLContextHandle + description: Handle to the context. + content.vb: Sub SwapBuffers(handle As OpenGLContextHandle) + overload: OpenTK.Platform.IOpenGLComponent.SwapBuffers* +references: +- uid: OpenTK.Platform + commentId: N:OpenTK.Platform + href: OpenTK.html + name: OpenTK.Platform + nameWithType: OpenTK.Platform + fullName: OpenTK.Platform + spec.csharp: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Platform + name: Platform + href: OpenTK.Platform.html + spec.vb: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Platform + name: Platform + href: OpenTK.Platform.html +- uid: OpenTK.Platform.IPalComponent.Name + commentId: P:OpenTK.Platform.IPalComponent.Name + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Name + name: Name + nameWithType: IPalComponent.Name + fullName: OpenTK.Platform.IPalComponent.Name +- uid: OpenTK.Platform.IPalComponent.Provides + commentId: P:OpenTK.Platform.IPalComponent.Provides + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Provides + name: Provides + nameWithType: IPalComponent.Provides + fullName: OpenTK.Platform.IPalComponent.Provides +- uid: OpenTK.Platform.IPalComponent.Logger + commentId: P:OpenTK.Platform.IPalComponent.Logger + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Logger + name: Logger + nameWithType: IPalComponent.Logger + fullName: OpenTK.Platform.IPalComponent.Logger +- uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ + name: Initialize(ToolkitOptions) + nameWithType: IPalComponent.Initialize(ToolkitOptions) + fullName: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + spec.csharp: + - uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + name: Initialize + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ + - name: ( + - uid: OpenTK.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Platform.ToolkitOptions.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + name: Initialize + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ + - name: ( + - uid: OpenTK.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Platform.ToolkitOptions.html + - name: ) +- uid: OpenTK.Platform.IPalComponent + commentId: T:OpenTK.Platform.IPalComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IPalComponent.html + name: IPalComponent + nameWithType: IPalComponent + fullName: OpenTK.Platform.IPalComponent +- uid: OpenTK.Platform.IOpenGLComponent.CanShareContexts* + commentId: Overload:OpenTK.Platform.IOpenGLComponent.CanShareContexts + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_CanShareContexts + name: CanShareContexts + nameWithType: IOpenGLComponent.CanShareContexts + fullName: OpenTK.Platform.IOpenGLComponent.CanShareContexts +- uid: System.Boolean + commentId: T:System.Boolean + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + name: bool + nameWithType: bool + fullName: bool + nameWithType.vb: Boolean + fullName.vb: Boolean + name.vb: Boolean +- uid: System + commentId: N:System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System + nameWithType: System + fullName: System +- uid: OpenTK.Platform.IOpenGLComponent.CreateFromWindow(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IOpenGLComponent.CreateFromWindow(OpenTK.Platform.WindowHandle) + parent: OpenTK.Platform.IOpenGLComponent + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_CreateFromWindow_OpenTK_Platform_WindowHandle_ + name: CreateFromWindow(WindowHandle) + nameWithType: IOpenGLComponent.CreateFromWindow(WindowHandle) + fullName: OpenTK.Platform.IOpenGLComponent.CreateFromWindow(OpenTK.Platform.WindowHandle) + spec.csharp: + - uid: OpenTK.Platform.IOpenGLComponent.CreateFromWindow(OpenTK.Platform.WindowHandle) + name: CreateFromWindow + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_CreateFromWindow_OpenTK_Platform_WindowHandle_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IOpenGLComponent.CreateFromWindow(OpenTK.Platform.WindowHandle) + name: CreateFromWindow + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_CreateFromWindow_OpenTK_Platform_WindowHandle_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ) +- uid: OpenTK.Platform.IOpenGLComponent.CanCreateFromWindow* + commentId: Overload:OpenTK.Platform.IOpenGLComponent.CanCreateFromWindow + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_CanCreateFromWindow + name: CanCreateFromWindow + nameWithType: IOpenGLComponent.CanCreateFromWindow + fullName: OpenTK.Platform.IOpenGLComponent.CanCreateFromWindow +- uid: OpenTK.Platform.IOpenGLComponent + commentId: T:OpenTK.Platform.IOpenGLComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IOpenGLComponent.html + name: IOpenGLComponent + nameWithType: IOpenGLComponent + fullName: OpenTK.Platform.IOpenGLComponent +- uid: OpenTK.Platform.IOpenGLComponent.CreateFromSurface + commentId: M:OpenTK.Platform.IOpenGLComponent.CreateFromSurface + parent: OpenTK.Platform.IOpenGLComponent + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_CreateFromSurface + name: CreateFromSurface() + nameWithType: IOpenGLComponent.CreateFromSurface() + fullName: OpenTK.Platform.IOpenGLComponent.CreateFromSurface() + spec.csharp: + - uid: OpenTK.Platform.IOpenGLComponent.CreateFromSurface + name: CreateFromSurface + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_CreateFromSurface + - name: ( + - name: ) + spec.vb: + - uid: OpenTK.Platform.IOpenGLComponent.CreateFromSurface + name: CreateFromSurface + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_CreateFromSurface + - name: ( + - name: ) +- uid: OpenTK.Platform.IOpenGLComponent.CanCreateFromSurface* + commentId: Overload:OpenTK.Platform.IOpenGLComponent.CanCreateFromSurface + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_CanCreateFromSurface + name: CanCreateFromSurface + nameWithType: IOpenGLComponent.CanCreateFromSurface + fullName: OpenTK.Platform.IOpenGLComponent.CanCreateFromSurface +- uid: OpenTK.Platform.IOpenGLComponent.CreateFromSurface* + commentId: Overload:OpenTK.Platform.IOpenGLComponent.CreateFromSurface + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_CreateFromSurface + name: CreateFromSurface + nameWithType: IOpenGLComponent.CreateFromSurface + fullName: OpenTK.Platform.IOpenGLComponent.CreateFromSurface +- uid: OpenTK.Platform.OpenGLContextHandle + commentId: T:OpenTK.Platform.OpenGLContextHandle + parent: OpenTK.Platform + href: OpenTK.Platform.OpenGLContextHandle.html + name: OpenGLContextHandle + nameWithType: OpenGLContextHandle + fullName: OpenTK.Platform.OpenGLContextHandle +- uid: OpenTK.Platform.IOpenGLComponent.CreateFromWindow* + commentId: Overload:OpenTK.Platform.IOpenGLComponent.CreateFromWindow + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_CreateFromWindow_OpenTK_Platform_WindowHandle_ + name: CreateFromWindow + nameWithType: IOpenGLComponent.CreateFromWindow + fullName: OpenTK.Platform.IOpenGLComponent.CreateFromWindow +- uid: OpenTK.Platform.WindowHandle + commentId: T:OpenTK.Platform.WindowHandle + parent: OpenTK.Platform + href: OpenTK.Platform.WindowHandle.html + name: WindowHandle + nameWithType: WindowHandle + fullName: OpenTK.Platform.WindowHandle +- uid: System.ArgumentNullException + commentId: T:System.ArgumentNullException + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.argumentnullexception + name: ArgumentNullException + nameWithType: ArgumentNullException + fullName: System.ArgumentNullException +- uid: OpenTK.Platform.IOpenGLComponent.DestroyContext* + commentId: Overload:OpenTK.Platform.IOpenGLComponent.DestroyContext + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_DestroyContext_OpenTK_Platform_OpenGLContextHandle_ + name: DestroyContext + nameWithType: IOpenGLComponent.DestroyContext + fullName: OpenTK.Platform.IOpenGLComponent.DestroyContext +- uid: OpenTK.IBindingsContext + commentId: T:OpenTK.IBindingsContext + parent: OpenTK + href: OpenTK.IBindingsContext.html + name: IBindingsContext + nameWithType: IBindingsContext + fullName: OpenTK.IBindingsContext +- uid: OpenTK.Platform.IOpenGLComponent.GetBindingsContext* + commentId: Overload:OpenTK.Platform.IOpenGLComponent.GetBindingsContext + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_GetBindingsContext_OpenTK_Platform_OpenGLContextHandle_ + name: GetBindingsContext + nameWithType: IOpenGLComponent.GetBindingsContext + fullName: OpenTK.Platform.IOpenGLComponent.GetBindingsContext +- uid: OpenTK + commentId: N:OpenTK + href: OpenTK.html + name: OpenTK + nameWithType: OpenTK + fullName: OpenTK +- uid: OpenTK.Platform.IOpenGLComponent.GetProcedureAddress* + commentId: Overload:OpenTK.Platform.IOpenGLComponent.GetProcedureAddress + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_GetProcedureAddress_OpenTK_Platform_OpenGLContextHandle_System_String_ + name: GetProcedureAddress + nameWithType: IOpenGLComponent.GetProcedureAddress + fullName: OpenTK.Platform.IOpenGLComponent.GetProcedureAddress +- uid: System.String + commentId: T:System.String + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + name: string + nameWithType: string + fullName: string + nameWithType.vb: String + fullName.vb: String + name.vb: String +- uid: System.IntPtr + commentId: T:System.IntPtr + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.intptr + name: nint + nameWithType: nint + fullName: nint + nameWithType.vb: IntPtr + fullName.vb: System.IntPtr + name.vb: IntPtr +- uid: OpenTK.Platform.IOpenGLComponent.GetCurrentContext* + commentId: Overload:OpenTK.Platform.IOpenGLComponent.GetCurrentContext + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_GetCurrentContext + name: GetCurrentContext + nameWithType: IOpenGLComponent.GetCurrentContext + fullName: OpenTK.Platform.IOpenGLComponent.GetCurrentContext +- uid: OpenTK.Platform.IOpenGLComponent.SetCurrentContext* + commentId: Overload:OpenTK.Platform.IOpenGLComponent.SetCurrentContext + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_SetCurrentContext_OpenTK_Platform_OpenGLContextHandle_ + name: SetCurrentContext + nameWithType: IOpenGLComponent.SetCurrentContext + fullName: OpenTK.Platform.IOpenGLComponent.SetCurrentContext +- uid: OpenTK.Platform.IOpenGLComponent.GetSharedContext* + commentId: Overload:OpenTK.Platform.IOpenGLComponent.GetSharedContext + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_GetSharedContext_OpenTK_Platform_OpenGLContextHandle_ + name: GetSharedContext + nameWithType: IOpenGLComponent.GetSharedContext + fullName: OpenTK.Platform.IOpenGLComponent.GetSharedContext +- uid: OpenTK.Platform.IOpenGLComponent.SetSwapInterval* + commentId: Overload:OpenTK.Platform.IOpenGLComponent.SetSwapInterval + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_SetSwapInterval_System_Int32_ + name: SetSwapInterval + nameWithType: IOpenGLComponent.SetSwapInterval + fullName: OpenTK.Platform.IOpenGLComponent.SetSwapInterval +- uid: System.Int32 + commentId: T:System.Int32 + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + name: int + nameWithType: int + fullName: int + nameWithType.vb: Integer + fullName.vb: Integer + name.vb: Integer +- uid: OpenTK.Platform.IOpenGLComponent.GetSwapInterval* + commentId: Overload:OpenTK.Platform.IOpenGLComponent.GetSwapInterval + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_GetSwapInterval + name: GetSwapInterval + nameWithType: IOpenGLComponent.GetSwapInterval + fullName: OpenTK.Platform.IOpenGLComponent.GetSwapInterval +- uid: OpenTK.Platform.IOpenGLComponent.SwapBuffers* + commentId: Overload:OpenTK.Platform.IOpenGLComponent.SwapBuffers + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_SwapBuffers_OpenTK_Platform_OpenGLContextHandle_ + name: SwapBuffers + nameWithType: IOpenGLComponent.SwapBuffers + fullName: OpenTK.Platform.IOpenGLComponent.SwapBuffers diff --git a/api/OpenTK.Platform.IPalComponent.yml b/api/OpenTK.Platform.IPalComponent.yml new file mode 100644 index 00000000..f4175659 --- /dev/null +++ b/api/OpenTK.Platform.IPalComponent.yml @@ -0,0 +1,255 @@ +### YamlMime:ManagedReference +items: +- uid: OpenTK.Platform.IPalComponent + commentId: T:OpenTK.Platform.IPalComponent + id: IPalComponent + parent: OpenTK.Platform + children: + - OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + - OpenTK.Platform.IPalComponent.Logger + - OpenTK.Platform.IPalComponent.Name + - OpenTK.Platform.IPalComponent.Provides + langs: + - csharp + - vb + name: IPalComponent + nameWithType: IPalComponent + fullName: OpenTK.Platform.IPalComponent + type: Interface + source: + id: IPalComponent + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IPalComponent.cs + startLine: 34 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Common interface for all platform abstraction layer components. + example: [] + syntax: + content: public interface IPalComponent + content.vb: Public Interface IPalComponent +- uid: OpenTK.Platform.IPalComponent.Name + commentId: P:OpenTK.Platform.IPalComponent.Name + id: Name + parent: OpenTK.Platform.IPalComponent + langs: + - csharp + - vb + name: Name + nameWithType: IPalComponent.Name + fullName: OpenTK.Platform.IPalComponent.Name + type: Property + source: + id: Name + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IPalComponent.cs + startLine: 39 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Name of the abstraction layer component. + example: [] + syntax: + content: string Name { get; } + parameters: [] + return: + type: System.String + content.vb: ReadOnly Property Name As String + overload: OpenTK.Platform.IPalComponent.Name* +- uid: OpenTK.Platform.IPalComponent.Provides + commentId: P:OpenTK.Platform.IPalComponent.Provides + id: Provides + parent: OpenTK.Platform.IPalComponent + langs: + - csharp + - vb + name: Provides + nameWithType: IPalComponent.Provides + fullName: OpenTK.Platform.IPalComponent.Provides + type: Property + source: + id: Provides + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IPalComponent.cs + startLine: 45 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Specifies which PAL components this object provides. + example: [] + syntax: + content: PalComponents Provides { get; } + parameters: [] + return: + type: OpenTK.Platform.PalComponents + content.vb: ReadOnly Property Provides As PalComponents + overload: OpenTK.Platform.IPalComponent.Provides* +- uid: OpenTK.Platform.IPalComponent.Logger + commentId: P:OpenTK.Platform.IPalComponent.Logger + id: Logger + parent: OpenTK.Platform.IPalComponent + langs: + - csharp + - vb + name: Logger + nameWithType: IPalComponent.Logger + fullName: OpenTK.Platform.IPalComponent.Logger + type: Property + source: + id: Logger + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IPalComponent.cs + startLine: 50 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Provides a logger for this component. + example: [] + syntax: + content: ILogger? Logger { get; set; } + parameters: [] + return: + type: OpenTK.Core.Utility.ILogger + content.vb: Property Logger As ILogger + overload: OpenTK.Platform.IPalComponent.Logger* +- uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + id: Initialize(OpenTK.Platform.ToolkitOptions) + parent: OpenTK.Platform.IPalComponent + langs: + - csharp + - vb + name: Initialize(ToolkitOptions) + nameWithType: IPalComponent.Initialize(ToolkitOptions) + fullName: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + type: Method + source: + id: Initialize + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IPalComponent.cs + startLine: 56 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Initialize the component. + example: [] + syntax: + content: void Initialize(ToolkitOptions options) + parameters: + - id: options + type: OpenTK.Platform.ToolkitOptions + description: The options to initialize the component with. + content.vb: Sub Initialize(options As ToolkitOptions) + overload: OpenTK.Platform.IPalComponent.Initialize* +references: +- uid: OpenTK.Platform + commentId: N:OpenTK.Platform + href: OpenTK.html + name: OpenTK.Platform + nameWithType: OpenTK.Platform + fullName: OpenTK.Platform + spec.csharp: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Platform + name: Platform + href: OpenTK.Platform.html + spec.vb: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Platform + name: Platform + href: OpenTK.Platform.html +- uid: OpenTK.Platform.IPalComponent.Name* + commentId: Overload:OpenTK.Platform.IPalComponent.Name + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Name + name: Name + nameWithType: IPalComponent.Name + fullName: OpenTK.Platform.IPalComponent.Name +- uid: System.String + commentId: T:System.String + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + name: string + nameWithType: string + fullName: string + nameWithType.vb: String + fullName.vb: String + name.vb: String +- uid: System + commentId: N:System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System + nameWithType: System + fullName: System +- uid: OpenTK.Platform.IPalComponent.Provides* + commentId: Overload:OpenTK.Platform.IPalComponent.Provides + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Provides + name: Provides + nameWithType: IPalComponent.Provides + fullName: OpenTK.Platform.IPalComponent.Provides +- uid: OpenTK.Platform.PalComponents + commentId: T:OpenTK.Platform.PalComponents + parent: OpenTK.Platform + href: OpenTK.Platform.PalComponents.html + name: PalComponents + nameWithType: PalComponents + fullName: OpenTK.Platform.PalComponents +- uid: OpenTK.Platform.IPalComponent.Logger* + commentId: Overload:OpenTK.Platform.IPalComponent.Logger + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Logger + name: Logger + nameWithType: IPalComponent.Logger + fullName: OpenTK.Platform.IPalComponent.Logger +- uid: OpenTK.Core.Utility.ILogger + commentId: T:OpenTK.Core.Utility.ILogger + parent: OpenTK.Core.Utility + href: OpenTK.Core.Utility.ILogger.html + name: ILogger + nameWithType: ILogger + fullName: OpenTK.Core.Utility.ILogger +- uid: OpenTK.Core.Utility + commentId: N:OpenTK.Core.Utility + href: OpenTK.html + name: OpenTK.Core.Utility + nameWithType: OpenTK.Core.Utility + fullName: OpenTK.Core.Utility + spec.csharp: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Core + name: Core + href: OpenTK.Core.html + - name: . + - uid: OpenTK.Core.Utility + name: Utility + href: OpenTK.Core.Utility.html + spec.vb: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Core + name: Core + href: OpenTK.Core.html + - name: . + - uid: OpenTK.Core.Utility + name: Utility + href: OpenTK.Core.Utility.html +- uid: OpenTK.Platform.IPalComponent.Initialize* + commentId: Overload:OpenTK.Platform.IPalComponent.Initialize + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ + name: Initialize + nameWithType: IPalComponent.Initialize + fullName: OpenTK.Platform.IPalComponent.Initialize +- uid: OpenTK.Platform.ToolkitOptions + commentId: T:OpenTK.Platform.ToolkitOptions + parent: OpenTK.Platform + href: OpenTK.Platform.ToolkitOptions.html + name: ToolkitOptions + nameWithType: ToolkitOptions + fullName: OpenTK.Platform.ToolkitOptions diff --git a/api/OpenTK.Platform.IShellComponent.yml b/api/OpenTK.Platform.IShellComponent.yml new file mode 100644 index 00000000..db91f634 --- /dev/null +++ b/api/OpenTK.Platform.IShellComponent.yml @@ -0,0 +1,315 @@ +### YamlMime:ManagedReference +items: +- uid: OpenTK.Platform.IShellComponent + commentId: T:OpenTK.Platform.IShellComponent + id: IShellComponent + parent: OpenTK.Platform + children: + - OpenTK.Platform.IShellComponent.AllowScreenSaver(System.Boolean) + - OpenTK.Platform.IShellComponent.GetBatteryInfo(OpenTK.Platform.BatteryInfo@) + - OpenTK.Platform.IShellComponent.GetPreferredTheme + - OpenTK.Platform.IShellComponent.GetSystemMemoryInformation + langs: + - csharp + - vb + name: IShellComponent + nameWithType: IShellComponent + fullName: OpenTK.Platform.IShellComponent + type: Interface + source: + id: IShellComponent + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IShellComponent.cs + startLine: 12 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Interface for interacting with operating system features. + example: [] + syntax: + content: 'public interface IShellComponent : IPalComponent' + content.vb: Public Interface IShellComponent Inherits IPalComponent + inheritedMembers: + - OpenTK.Platform.IPalComponent.Name + - OpenTK.Platform.IPalComponent.Provides + - OpenTK.Platform.IPalComponent.Logger + - OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) +- uid: OpenTK.Platform.IShellComponent.AllowScreenSaver(System.Boolean) + commentId: M:OpenTK.Platform.IShellComponent.AllowScreenSaver(System.Boolean) + id: AllowScreenSaver(System.Boolean) + parent: OpenTK.Platform.IShellComponent + langs: + - csharp + - vb + name: AllowScreenSaver(bool) + nameWithType: IShellComponent.AllowScreenSaver(bool) + fullName: OpenTK.Platform.IShellComponent.AllowScreenSaver(bool) + type: Method + source: + id: AllowScreenSaver + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IShellComponent.cs + startLine: 23 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: >- + Sets whether or not a screensaver is allowed to draw on top of the window. + + For games with long cutscenes it would be appropriate to set this to false, + + while tools that act like normal applications should set this to true. + + By default this setting is untouched. + example: [] + syntax: + content: void AllowScreenSaver(bool allow) + parameters: + - id: allow + type: System.Boolean + description: Whether to allow screensavers to appear while the application is running. + content.vb: Sub AllowScreenSaver(allow As Boolean) + overload: OpenTK.Platform.IShellComponent.AllowScreenSaver* + nameWithType.vb: IShellComponent.AllowScreenSaver(Boolean) + fullName.vb: OpenTK.Platform.IShellComponent.AllowScreenSaver(Boolean) + name.vb: AllowScreenSaver(Boolean) +- uid: OpenTK.Platform.IShellComponent.GetBatteryInfo(OpenTK.Platform.BatteryInfo@) + commentId: M:OpenTK.Platform.IShellComponent.GetBatteryInfo(OpenTK.Platform.BatteryInfo@) + id: GetBatteryInfo(OpenTK.Platform.BatteryInfo@) + parent: OpenTK.Platform.IShellComponent + langs: + - csharp + - vb + name: GetBatteryInfo(out BatteryInfo) + nameWithType: IShellComponent.GetBatteryInfo(out BatteryInfo) + fullName: OpenTK.Platform.IShellComponent.GetBatteryInfo(out OpenTK.Platform.BatteryInfo) + type: Method + source: + id: GetBatteryInfo + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IShellComponent.cs + startLine: 31 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Gets the battery status of the computer. + example: [] + syntax: + content: BatteryStatus GetBatteryInfo(out BatteryInfo batteryInfo) + parameters: + - id: batteryInfo + type: OpenTK.Platform.BatteryInfo + description: >- + The battery status of the computer, + this is only filled with values when is returned. + return: + type: OpenTK.Platform.BatteryStatus + description: Whether the computer has a battery or not, or if this function failed. + content.vb: Function GetBatteryInfo(batteryInfo As BatteryInfo) As BatteryStatus + overload: OpenTK.Platform.IShellComponent.GetBatteryInfo* + nameWithType.vb: IShellComponent.GetBatteryInfo(BatteryInfo) + fullName.vb: OpenTK.Platform.IShellComponent.GetBatteryInfo(OpenTK.Platform.BatteryInfo) + name.vb: GetBatteryInfo(BatteryInfo) +- uid: OpenTK.Platform.IShellComponent.GetPreferredTheme + commentId: M:OpenTK.Platform.IShellComponent.GetPreferredTheme + id: GetPreferredTheme + parent: OpenTK.Platform.IShellComponent + langs: + - csharp + - vb + name: GetPreferredTheme() + nameWithType: IShellComponent.GetPreferredTheme() + fullName: OpenTK.Platform.IShellComponent.GetPreferredTheme() + type: Method + source: + id: GetPreferredTheme + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IShellComponent.cs + startLine: 39 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Gets the user preference for application theme. + example: [] + syntax: + content: ThemeInfo GetPreferredTheme() + return: + type: OpenTK.Platform.ThemeInfo + description: The user set preferred theme. + content.vb: Function GetPreferredTheme() As ThemeInfo + overload: OpenTK.Platform.IShellComponent.GetPreferredTheme* +- uid: OpenTK.Platform.IShellComponent.GetSystemMemoryInformation + commentId: M:OpenTK.Platform.IShellComponent.GetSystemMemoryInformation + id: GetSystemMemoryInformation + parent: OpenTK.Platform.IShellComponent + langs: + - csharp + - vb + name: GetSystemMemoryInformation() + nameWithType: IShellComponent.GetSystemMemoryInformation() + fullName: OpenTK.Platform.IShellComponent.GetSystemMemoryInformation() + type: Method + source: + id: GetSystemMemoryInformation + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IShellComponent.cs + startLine: 45 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Gets information about the memory of the device and the current status. + example: [] + syntax: + content: SystemMemoryInfo GetSystemMemoryInformation() + return: + type: OpenTK.Platform.SystemMemoryInfo + description: The memory info. + content.vb: Function GetSystemMemoryInformation() As SystemMemoryInfo + overload: OpenTK.Platform.IShellComponent.GetSystemMemoryInformation* +references: +- uid: OpenTK.Platform + commentId: N:OpenTK.Platform + href: OpenTK.html + name: OpenTK.Platform + nameWithType: OpenTK.Platform + fullName: OpenTK.Platform + spec.csharp: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Platform + name: Platform + href: OpenTK.Platform.html + spec.vb: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Platform + name: Platform + href: OpenTK.Platform.html +- uid: OpenTK.Platform.IPalComponent.Name + commentId: P:OpenTK.Platform.IPalComponent.Name + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Name + name: Name + nameWithType: IPalComponent.Name + fullName: OpenTK.Platform.IPalComponent.Name +- uid: OpenTK.Platform.IPalComponent.Provides + commentId: P:OpenTK.Platform.IPalComponent.Provides + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Provides + name: Provides + nameWithType: IPalComponent.Provides + fullName: OpenTK.Platform.IPalComponent.Provides +- uid: OpenTK.Platform.IPalComponent.Logger + commentId: P:OpenTK.Platform.IPalComponent.Logger + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Logger + name: Logger + nameWithType: IPalComponent.Logger + fullName: OpenTK.Platform.IPalComponent.Logger +- uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ + name: Initialize(ToolkitOptions) + nameWithType: IPalComponent.Initialize(ToolkitOptions) + fullName: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + spec.csharp: + - uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + name: Initialize + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ + - name: ( + - uid: OpenTK.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Platform.ToolkitOptions.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + name: Initialize + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ + - name: ( + - uid: OpenTK.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Platform.ToolkitOptions.html + - name: ) +- uid: OpenTK.Platform.IPalComponent + commentId: T:OpenTK.Platform.IPalComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IPalComponent.html + name: IPalComponent + nameWithType: IPalComponent + fullName: OpenTK.Platform.IPalComponent +- uid: OpenTK.Platform.IShellComponent.AllowScreenSaver* + commentId: Overload:OpenTK.Platform.IShellComponent.AllowScreenSaver + href: OpenTK.Platform.IShellComponent.html#OpenTK_Platform_IShellComponent_AllowScreenSaver_System_Boolean_ + name: AllowScreenSaver + nameWithType: IShellComponent.AllowScreenSaver + fullName: OpenTK.Platform.IShellComponent.AllowScreenSaver +- uid: System.Boolean + commentId: T:System.Boolean + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + name: bool + nameWithType: bool + fullName: bool + nameWithType.vb: Boolean + fullName.vb: Boolean + name.vb: Boolean +- uid: System + commentId: N:System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System + nameWithType: System + fullName: System +- uid: OpenTK.Platform.BatteryStatus.HasSystemBattery + commentId: F:OpenTK.Platform.BatteryStatus.HasSystemBattery + href: OpenTK.Platform.BatteryStatus.html#OpenTK_Platform_BatteryStatus_HasSystemBattery + name: HasSystemBattery + nameWithType: BatteryStatus.HasSystemBattery + fullName: OpenTK.Platform.BatteryStatus.HasSystemBattery +- uid: OpenTK.Platform.IShellComponent.GetBatteryInfo* + commentId: Overload:OpenTK.Platform.IShellComponent.GetBatteryInfo + href: OpenTK.Platform.IShellComponent.html#OpenTK_Platform_IShellComponent_GetBatteryInfo_OpenTK_Platform_BatteryInfo__ + name: GetBatteryInfo + nameWithType: IShellComponent.GetBatteryInfo + fullName: OpenTK.Platform.IShellComponent.GetBatteryInfo +- uid: OpenTK.Platform.BatteryInfo + commentId: T:OpenTK.Platform.BatteryInfo + parent: OpenTK.Platform + href: OpenTK.Platform.BatteryInfo.html + name: BatteryInfo + nameWithType: BatteryInfo + fullName: OpenTK.Platform.BatteryInfo +- uid: OpenTK.Platform.BatteryStatus + commentId: T:OpenTK.Platform.BatteryStatus + parent: OpenTK.Platform + href: OpenTK.Platform.BatteryStatus.html + name: BatteryStatus + nameWithType: BatteryStatus + fullName: OpenTK.Platform.BatteryStatus +- uid: OpenTK.Platform.IShellComponent.GetPreferredTheme* + commentId: Overload:OpenTK.Platform.IShellComponent.GetPreferredTheme + href: OpenTK.Platform.IShellComponent.html#OpenTK_Platform_IShellComponent_GetPreferredTheme + name: GetPreferredTheme + nameWithType: IShellComponent.GetPreferredTheme + fullName: OpenTK.Platform.IShellComponent.GetPreferredTheme +- uid: OpenTK.Platform.ThemeInfo + commentId: T:OpenTK.Platform.ThemeInfo + parent: OpenTK.Platform + href: OpenTK.Platform.ThemeInfo.html + name: ThemeInfo + nameWithType: ThemeInfo + fullName: OpenTK.Platform.ThemeInfo +- uid: OpenTK.Platform.IShellComponent.GetSystemMemoryInformation* + commentId: Overload:OpenTK.Platform.IShellComponent.GetSystemMemoryInformation + href: OpenTK.Platform.IShellComponent.html#OpenTK_Platform_IShellComponent_GetSystemMemoryInformation + name: GetSystemMemoryInformation + nameWithType: IShellComponent.GetSystemMemoryInformation + fullName: OpenTK.Platform.IShellComponent.GetSystemMemoryInformation +- uid: OpenTK.Platform.SystemMemoryInfo + commentId: T:OpenTK.Platform.SystemMemoryInfo + parent: OpenTK.Platform + href: OpenTK.Platform.SystemMemoryInfo.html + name: SystemMemoryInfo + nameWithType: SystemMemoryInfo + fullName: OpenTK.Platform.SystemMemoryInfo diff --git a/api/OpenTK.Platform.ISurfaceComponent.yml b/api/OpenTK.Platform.ISurfaceComponent.yml new file mode 100644 index 00000000..a7033f07 --- /dev/null +++ b/api/OpenTK.Platform.ISurfaceComponent.yml @@ -0,0 +1,373 @@ +### YamlMime:ManagedReference +items: +- uid: OpenTK.Platform.ISurfaceComponent + commentId: T:OpenTK.Platform.ISurfaceComponent + id: ISurfaceComponent + parent: OpenTK.Platform + children: + - OpenTK.Platform.ISurfaceComponent.Create + - OpenTK.Platform.ISurfaceComponent.Destroy(OpenTK.Platform.SurfaceHandle) + - OpenTK.Platform.ISurfaceComponent.GetClientSize(OpenTK.Platform.SurfaceHandle,System.Int32@,System.Int32@) + - OpenTK.Platform.ISurfaceComponent.GetDisplay(OpenTK.Platform.SurfaceHandle) + - OpenTK.Platform.ISurfaceComponent.GetType(OpenTK.Platform.SurfaceHandle) + - OpenTK.Platform.ISurfaceComponent.SetDisplay(OpenTK.Platform.SurfaceHandle,OpenTK.Platform.DisplayHandle) + langs: + - csharp + - vb + name: ISurfaceComponent + nameWithType: ISurfaceComponent + fullName: OpenTK.Platform.ISurfaceComponent + type: Interface + source: + id: ISurfaceComponent + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\ISurfaceComponent.cs + startLine: 5 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Interface for drivers which provide the surface component of the platform abstraction layer. + example: [] + syntax: + content: 'public interface ISurfaceComponent : IPalComponent' + content.vb: Public Interface ISurfaceComponent Inherits IPalComponent + inheritedMembers: + - OpenTK.Platform.IPalComponent.Name + - OpenTK.Platform.IPalComponent.Provides + - OpenTK.Platform.IPalComponent.Logger + - OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) +- uid: OpenTK.Platform.ISurfaceComponent.Create + commentId: M:OpenTK.Platform.ISurfaceComponent.Create + id: Create + parent: OpenTK.Platform.ISurfaceComponent + langs: + - csharp + - vb + name: Create() + nameWithType: ISurfaceComponent.Create() + fullName: OpenTK.Platform.ISurfaceComponent.Create() + type: Method + source: + id: Create + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\ISurfaceComponent.cs + startLine: 11 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Create a surface object. + example: [] + syntax: + content: SurfaceHandle Create() + return: + type: OpenTK.Platform.SurfaceHandle + description: A surface object. + content.vb: Function Create() As SurfaceHandle + overload: OpenTK.Platform.ISurfaceComponent.Create* +- uid: OpenTK.Platform.ISurfaceComponent.Destroy(OpenTK.Platform.SurfaceHandle) + commentId: M:OpenTK.Platform.ISurfaceComponent.Destroy(OpenTK.Platform.SurfaceHandle) + id: Destroy(OpenTK.Platform.SurfaceHandle) + parent: OpenTK.Platform.ISurfaceComponent + langs: + - csharp + - vb + name: Destroy(SurfaceHandle) + nameWithType: ISurfaceComponent.Destroy(SurfaceHandle) + fullName: OpenTK.Platform.ISurfaceComponent.Destroy(OpenTK.Platform.SurfaceHandle) + type: Method + source: + id: Destroy + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\ISurfaceComponent.cs + startLine: 17 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Destroy a surface object. + example: [] + syntax: + content: void Destroy(SurfaceHandle handle) + parameters: + - id: handle + type: OpenTK.Platform.SurfaceHandle + description: Handle to a surface. + content.vb: Sub Destroy(handle As SurfaceHandle) + overload: OpenTK.Platform.ISurfaceComponent.Destroy* +- uid: OpenTK.Platform.ISurfaceComponent.GetType(OpenTK.Platform.SurfaceHandle) + commentId: M:OpenTK.Platform.ISurfaceComponent.GetType(OpenTK.Platform.SurfaceHandle) + id: GetType(OpenTK.Platform.SurfaceHandle) + parent: OpenTK.Platform.ISurfaceComponent + langs: + - csharp + - vb + name: GetType(SurfaceHandle) + nameWithType: ISurfaceComponent.GetType(SurfaceHandle) + fullName: OpenTK.Platform.ISurfaceComponent.GetType(OpenTK.Platform.SurfaceHandle) + type: Method + source: + id: GetType + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\ISurfaceComponent.cs + startLine: 24 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Get surface type. + example: [] + syntax: + content: SurfaceType GetType(SurfaceHandle handle) + parameters: + - id: handle + type: OpenTK.Platform.SurfaceHandle + description: Handle to a surface object. + return: + type: OpenTK.Platform.SurfaceType + description: The surface type. + content.vb: Function [GetType](handle As SurfaceHandle) As SurfaceType + overload: OpenTK.Platform.ISurfaceComponent.GetType* +- uid: OpenTK.Platform.ISurfaceComponent.GetDisplay(OpenTK.Platform.SurfaceHandle) + commentId: M:OpenTK.Platform.ISurfaceComponent.GetDisplay(OpenTK.Platform.SurfaceHandle) + id: GetDisplay(OpenTK.Platform.SurfaceHandle) + parent: OpenTK.Platform.ISurfaceComponent + langs: + - csharp + - vb + name: GetDisplay(SurfaceHandle) + nameWithType: ISurfaceComponent.GetDisplay(SurfaceHandle) + fullName: OpenTK.Platform.ISurfaceComponent.GetDisplay(OpenTK.Platform.SurfaceHandle) + type: Method + source: + id: GetDisplay + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\ISurfaceComponent.cs + startLine: 31 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Get the display the surface is in. + example: [] + syntax: + content: DisplayHandle GetDisplay(SurfaceHandle handle) + parameters: + - id: handle + type: OpenTK.Platform.SurfaceHandle + description: Handle to a surface. + return: + type: OpenTK.Platform.DisplayHandle + description: Handle to the display the surface is in. + content.vb: Function GetDisplay(handle As SurfaceHandle) As DisplayHandle + overload: OpenTK.Platform.ISurfaceComponent.GetDisplay* +- uid: OpenTK.Platform.ISurfaceComponent.SetDisplay(OpenTK.Platform.SurfaceHandle,OpenTK.Platform.DisplayHandle) + commentId: M:OpenTK.Platform.ISurfaceComponent.SetDisplay(OpenTK.Platform.SurfaceHandle,OpenTK.Platform.DisplayHandle) + id: SetDisplay(OpenTK.Platform.SurfaceHandle,OpenTK.Platform.DisplayHandle) + parent: OpenTK.Platform.ISurfaceComponent + langs: + - csharp + - vb + name: SetDisplay(SurfaceHandle, DisplayHandle) + nameWithType: ISurfaceComponent.SetDisplay(SurfaceHandle, DisplayHandle) + fullName: OpenTK.Platform.ISurfaceComponent.SetDisplay(OpenTK.Platform.SurfaceHandle, OpenTK.Platform.DisplayHandle) + type: Method + source: + id: SetDisplay + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\ISurfaceComponent.cs + startLine: 38 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Set the display the surface is in. + example: [] + syntax: + content: void SetDisplay(SurfaceHandle handle, DisplayHandle display) + parameters: + - id: handle + type: OpenTK.Platform.SurfaceHandle + description: Handle to a surface. + - id: display + type: OpenTK.Platform.DisplayHandle + description: Handle to the display to set the surface to. + content.vb: Sub SetDisplay(handle As SurfaceHandle, display As DisplayHandle) + overload: OpenTK.Platform.ISurfaceComponent.SetDisplay* +- uid: OpenTK.Platform.ISurfaceComponent.GetClientSize(OpenTK.Platform.SurfaceHandle,System.Int32@,System.Int32@) + commentId: M:OpenTK.Platform.ISurfaceComponent.GetClientSize(OpenTK.Platform.SurfaceHandle,System.Int32@,System.Int32@) + id: GetClientSize(OpenTK.Platform.SurfaceHandle,System.Int32@,System.Int32@) + parent: OpenTK.Platform.ISurfaceComponent + langs: + - csharp + - vb + name: GetClientSize(SurfaceHandle, out int, out int) + nameWithType: ISurfaceComponent.GetClientSize(SurfaceHandle, out int, out int) + fullName: OpenTK.Platform.ISurfaceComponent.GetClientSize(OpenTK.Platform.SurfaceHandle, out int, out int) + type: Method + source: + id: GetClientSize + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\ISurfaceComponent.cs + startLine: 46 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Get the client size of the surface. + example: [] + syntax: + content: void GetClientSize(SurfaceHandle handle, out int width, out int height) + parameters: + - id: handle + type: OpenTK.Platform.SurfaceHandle + description: Handle to a surface. + - id: width + type: System.Int32 + description: Width of the surface. + - id: height + type: System.Int32 + description: Height of the surface. + content.vb: Sub GetClientSize(handle As SurfaceHandle, width As Integer, height As Integer) + overload: OpenTK.Platform.ISurfaceComponent.GetClientSize* + nameWithType.vb: ISurfaceComponent.GetClientSize(SurfaceHandle, Integer, Integer) + fullName.vb: OpenTK.Platform.ISurfaceComponent.GetClientSize(OpenTK.Platform.SurfaceHandle, Integer, Integer) + name.vb: GetClientSize(SurfaceHandle, Integer, Integer) +references: +- uid: OpenTK.Platform + commentId: N:OpenTK.Platform + href: OpenTK.html + name: OpenTK.Platform + nameWithType: OpenTK.Platform + fullName: OpenTK.Platform + spec.csharp: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Platform + name: Platform + href: OpenTK.Platform.html + spec.vb: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Platform + name: Platform + href: OpenTK.Platform.html +- uid: OpenTK.Platform.IPalComponent.Name + commentId: P:OpenTK.Platform.IPalComponent.Name + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Name + name: Name + nameWithType: IPalComponent.Name + fullName: OpenTK.Platform.IPalComponent.Name +- uid: OpenTK.Platform.IPalComponent.Provides + commentId: P:OpenTK.Platform.IPalComponent.Provides + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Provides + name: Provides + nameWithType: IPalComponent.Provides + fullName: OpenTK.Platform.IPalComponent.Provides +- uid: OpenTK.Platform.IPalComponent.Logger + commentId: P:OpenTK.Platform.IPalComponent.Logger + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Logger + name: Logger + nameWithType: IPalComponent.Logger + fullName: OpenTK.Platform.IPalComponent.Logger +- uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ + name: Initialize(ToolkitOptions) + nameWithType: IPalComponent.Initialize(ToolkitOptions) + fullName: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + spec.csharp: + - uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + name: Initialize + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ + - name: ( + - uid: OpenTK.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Platform.ToolkitOptions.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + name: Initialize + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ + - name: ( + - uid: OpenTK.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Platform.ToolkitOptions.html + - name: ) +- uid: OpenTK.Platform.IPalComponent + commentId: T:OpenTK.Platform.IPalComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IPalComponent.html + name: IPalComponent + nameWithType: IPalComponent + fullName: OpenTK.Platform.IPalComponent +- uid: OpenTK.Platform.ISurfaceComponent.Create* + commentId: Overload:OpenTK.Platform.ISurfaceComponent.Create + href: OpenTK.Platform.ISurfaceComponent.html#OpenTK_Platform_ISurfaceComponent_Create + name: Create + nameWithType: ISurfaceComponent.Create + fullName: OpenTK.Platform.ISurfaceComponent.Create +- uid: OpenTK.Platform.SurfaceHandle + commentId: T:OpenTK.Platform.SurfaceHandle + parent: OpenTK.Platform + href: OpenTK.Platform.SurfaceHandle.html + name: SurfaceHandle + nameWithType: SurfaceHandle + fullName: OpenTK.Platform.SurfaceHandle +- uid: OpenTK.Platform.ISurfaceComponent.Destroy* + commentId: Overload:OpenTK.Platform.ISurfaceComponent.Destroy + href: OpenTK.Platform.ISurfaceComponent.html#OpenTK_Platform_ISurfaceComponent_Destroy_OpenTK_Platform_SurfaceHandle_ + name: Destroy + nameWithType: ISurfaceComponent.Destroy + fullName: OpenTK.Platform.ISurfaceComponent.Destroy +- uid: OpenTK.Platform.ISurfaceComponent.GetType* + commentId: Overload:OpenTK.Platform.ISurfaceComponent.GetType + href: OpenTK.Platform.ISurfaceComponent.html#OpenTK_Platform_ISurfaceComponent_GetType_OpenTK_Platform_SurfaceHandle_ + name: GetType + nameWithType: ISurfaceComponent.GetType + fullName: OpenTK.Platform.ISurfaceComponent.GetType +- uid: OpenTK.Platform.SurfaceType + commentId: T:OpenTK.Platform.SurfaceType + parent: OpenTK.Platform + href: OpenTK.Platform.SurfaceType.html + name: SurfaceType + nameWithType: SurfaceType + fullName: OpenTK.Platform.SurfaceType +- uid: OpenTK.Platform.ISurfaceComponent.GetDisplay* + commentId: Overload:OpenTK.Platform.ISurfaceComponent.GetDisplay + href: OpenTK.Platform.ISurfaceComponent.html#OpenTK_Platform_ISurfaceComponent_GetDisplay_OpenTK_Platform_SurfaceHandle_ + name: GetDisplay + nameWithType: ISurfaceComponent.GetDisplay + fullName: OpenTK.Platform.ISurfaceComponent.GetDisplay +- uid: OpenTK.Platform.DisplayHandle + commentId: T:OpenTK.Platform.DisplayHandle + parent: OpenTK.Platform + href: OpenTK.Platform.DisplayHandle.html + name: DisplayHandle + nameWithType: DisplayHandle + fullName: OpenTK.Platform.DisplayHandle +- uid: OpenTK.Platform.ISurfaceComponent.SetDisplay* + commentId: Overload:OpenTK.Platform.ISurfaceComponent.SetDisplay + href: OpenTK.Platform.ISurfaceComponent.html#OpenTK_Platform_ISurfaceComponent_SetDisplay_OpenTK_Platform_SurfaceHandle_OpenTK_Platform_DisplayHandle_ + name: SetDisplay + nameWithType: ISurfaceComponent.SetDisplay + fullName: OpenTK.Platform.ISurfaceComponent.SetDisplay +- uid: OpenTK.Platform.ISurfaceComponent.GetClientSize* + commentId: Overload:OpenTK.Platform.ISurfaceComponent.GetClientSize + href: OpenTK.Platform.ISurfaceComponent.html#OpenTK_Platform_ISurfaceComponent_GetClientSize_OpenTK_Platform_SurfaceHandle_System_Int32__System_Int32__ + name: GetClientSize + nameWithType: ISurfaceComponent.GetClientSize + fullName: OpenTK.Platform.ISurfaceComponent.GetClientSize +- uid: System.Int32 + commentId: T:System.Int32 + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + name: int + nameWithType: int + fullName: int + nameWithType.vb: Integer + fullName.vb: Integer + name.vb: Integer +- uid: System + commentId: N:System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System + nameWithType: System + fullName: System diff --git a/api/OpenTK.Platform.IVulkanComponent.yml b/api/OpenTK.Platform.IVulkanComponent.yml new file mode 100644 index 00000000..25d8b55f --- /dev/null +++ b/api/OpenTK.Platform.IVulkanComponent.yml @@ -0,0 +1,529 @@ +### YamlMime:ManagedReference +items: +- uid: OpenTK.Platform.IVulkanComponent + commentId: T:OpenTK.Platform.IVulkanComponent + id: IVulkanComponent + parent: OpenTK.Platform + children: + - OpenTK.Platform.IVulkanComponent.CreateWindowSurface(OpenTK.Graphics.Vulkan.VkInstance,OpenTK.Platform.WindowHandle,OpenTK.Graphics.Vulkan.VkAllocationCallbacks*,OpenTK.Graphics.Vulkan.VkSurfaceKHR@) + - OpenTK.Platform.IVulkanComponent.GetPhysicalDevicePresentationSupport(OpenTK.Graphics.Vulkan.VkInstance,OpenTK.Graphics.Vulkan.VkPhysicalDevice,System.UInt32) + - OpenTK.Platform.IVulkanComponent.GetRequiredInstanceExtensions + langs: + - csharp + - vb + name: IVulkanComponent + nameWithType: IVulkanComponent + fullName: OpenTK.Platform.IVulkanComponent + type: Interface + source: + id: IVulkanComponent + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IVulkanComponent.cs + startLine: 12 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Interface for creating and interacting with vulkan. + example: [] + syntax: + content: 'public interface IVulkanComponent : IPalComponent' + content.vb: Public Interface IVulkanComponent Inherits IPalComponent + inheritedMembers: + - OpenTK.Platform.IPalComponent.Name + - OpenTK.Platform.IPalComponent.Provides + - OpenTK.Platform.IPalComponent.Logger + - OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) +- uid: OpenTK.Platform.IVulkanComponent.GetRequiredInstanceExtensions + commentId: M:OpenTK.Platform.IVulkanComponent.GetRequiredInstanceExtensions + id: GetRequiredInstanceExtensions + parent: OpenTK.Platform.IVulkanComponent + langs: + - csharp + - vb + name: GetRequiredInstanceExtensions() + nameWithType: IVulkanComponent.GetRequiredInstanceExtensions() + fullName: OpenTK.Platform.IVulkanComponent.GetRequiredInstanceExtensions() + type: Method + source: + id: GetRequiredInstanceExtensions + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IVulkanComponent.cs + startLine: 21 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: >- + Returns a list of required instance extensions required for + + and + + + + to work. Include these extensions when creating . + example: [] + syntax: + content: ReadOnlySpan GetRequiredInstanceExtensions() + return: + type: System.ReadOnlySpan{System.String} + description: '' + content.vb: Function GetRequiredInstanceExtensions() As ReadOnlySpan(Of String) + overload: OpenTK.Platform.IVulkanComponent.GetRequiredInstanceExtensions* +- uid: OpenTK.Platform.IVulkanComponent.GetPhysicalDevicePresentationSupport(OpenTK.Graphics.Vulkan.VkInstance,OpenTK.Graphics.Vulkan.VkPhysicalDevice,System.UInt32) + commentId: M:OpenTK.Platform.IVulkanComponent.GetPhysicalDevicePresentationSupport(OpenTK.Graphics.Vulkan.VkInstance,OpenTK.Graphics.Vulkan.VkPhysicalDevice,System.UInt32) + id: GetPhysicalDevicePresentationSupport(OpenTK.Graphics.Vulkan.VkInstance,OpenTK.Graphics.Vulkan.VkPhysicalDevice,System.UInt32) + parent: OpenTK.Platform.IVulkanComponent + langs: + - csharp + - vb + name: GetPhysicalDevicePresentationSupport(VkInstance, VkPhysicalDevice, uint) + nameWithType: IVulkanComponent.GetPhysicalDevicePresentationSupport(VkInstance, VkPhysicalDevice, uint) + fullName: OpenTK.Platform.IVulkanComponent.GetPhysicalDevicePresentationSupport(OpenTK.Graphics.Vulkan.VkInstance, OpenTK.Graphics.Vulkan.VkPhysicalDevice, uint) + type: Method + source: + id: GetPhysicalDevicePresentationSupport + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IVulkanComponent.cs + startLine: 30 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Returns true of the given queue family supports presentation to a surface created with . + example: [] + syntax: + content: bool GetPhysicalDevicePresentationSupport(VkInstance instance, VkPhysicalDevice device, uint queueFamily) + parameters: + - id: instance + type: OpenTK.Graphics.Vulkan.VkInstance + description: The to physical device belongs to. + - id: device + type: OpenTK.Graphics.Vulkan.VkPhysicalDevice + description: The that the queueFamily belongs to. + - id: queueFamily + type: System.UInt32 + description: The index of the queue family to query for presentation support. + return: + type: System.Boolean + description: '' + content.vb: Function GetPhysicalDevicePresentationSupport(instance As VkInstance, device As VkPhysicalDevice, queueFamily As UInteger) As Boolean + overload: OpenTK.Platform.IVulkanComponent.GetPhysicalDevicePresentationSupport* + nameWithType.vb: IVulkanComponent.GetPhysicalDevicePresentationSupport(VkInstance, VkPhysicalDevice, UInteger) + fullName.vb: OpenTK.Platform.IVulkanComponent.GetPhysicalDevicePresentationSupport(OpenTK.Graphics.Vulkan.VkInstance, OpenTK.Graphics.Vulkan.VkPhysicalDevice, UInteger) + name.vb: GetPhysicalDevicePresentationSupport(VkInstance, VkPhysicalDevice, UInteger) +- uid: OpenTK.Platform.IVulkanComponent.CreateWindowSurface(OpenTK.Graphics.Vulkan.VkInstance,OpenTK.Platform.WindowHandle,OpenTK.Graphics.Vulkan.VkAllocationCallbacks*,OpenTK.Graphics.Vulkan.VkSurfaceKHR@) + commentId: M:OpenTK.Platform.IVulkanComponent.CreateWindowSurface(OpenTK.Graphics.Vulkan.VkInstance,OpenTK.Platform.WindowHandle,OpenTK.Graphics.Vulkan.VkAllocationCallbacks*,OpenTK.Graphics.Vulkan.VkSurfaceKHR@) + id: CreateWindowSurface(OpenTK.Graphics.Vulkan.VkInstance,OpenTK.Platform.WindowHandle,OpenTK.Graphics.Vulkan.VkAllocationCallbacks*,OpenTK.Graphics.Vulkan.VkSurfaceKHR@) + parent: OpenTK.Platform.IVulkanComponent + langs: + - csharp + - vb + name: CreateWindowSurface(VkInstance, WindowHandle, VkAllocationCallbacks*, out VkSurfaceKHR) + nameWithType: IVulkanComponent.CreateWindowSurface(VkInstance, WindowHandle, VkAllocationCallbacks*, out VkSurfaceKHR) + fullName: OpenTK.Platform.IVulkanComponent.CreateWindowSurface(OpenTK.Graphics.Vulkan.VkInstance, OpenTK.Platform.WindowHandle, OpenTK.Graphics.Vulkan.VkAllocationCallbacks*, out OpenTK.Graphics.Vulkan.VkSurfaceKHR) + type: Method + source: + id: CreateWindowSurface + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IVulkanComponent.cs + startLine: 40 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Creates a Vulkan surface for the specified window. + example: [] + syntax: + content: VkResult CreateWindowSurface(VkInstance instance, WindowHandle window, VkAllocationCallbacks* allocator, out VkSurfaceKHR surface) + parameters: + - id: instance + type: OpenTK.Graphics.Vulkan.VkInstance + description: The instance to create the surface with. + - id: window + type: OpenTK.Platform.WindowHandle + description: The window to create the surface in. + - id: allocator + type: OpenTK.Graphics.Vulkan.VkAllocationCallbacks* + description: The allocator to use or null to use the default allocator. + - id: surface + type: OpenTK.Graphics.Vulkan.VkSurfaceKHR + description: The created surface. + return: + type: OpenTK.Graphics.Vulkan.VkResult + description: The Vulkan result code of this operation. + content.vb: Function CreateWindowSurface(instance As VkInstance, window As WindowHandle, allocator As VkAllocationCallbacks*, surface As VkSurfaceKHR) As VkResult + overload: OpenTK.Platform.IVulkanComponent.CreateWindowSurface* + nameWithType.vb: IVulkanComponent.CreateWindowSurface(VkInstance, WindowHandle, VkAllocationCallbacks*, VkSurfaceKHR) + fullName.vb: OpenTK.Platform.IVulkanComponent.CreateWindowSurface(OpenTK.Graphics.Vulkan.VkInstance, OpenTK.Platform.WindowHandle, OpenTK.Graphics.Vulkan.VkAllocationCallbacks*, OpenTK.Graphics.Vulkan.VkSurfaceKHR) + name.vb: CreateWindowSurface(VkInstance, WindowHandle, VkAllocationCallbacks*, VkSurfaceKHR) +references: +- uid: OpenTK.Platform + commentId: N:OpenTK.Platform + href: OpenTK.html + name: OpenTK.Platform + nameWithType: OpenTK.Platform + fullName: OpenTK.Platform + spec.csharp: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Platform + name: Platform + href: OpenTK.Platform.html + spec.vb: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Platform + name: Platform + href: OpenTK.Platform.html +- uid: OpenTK.Platform.IPalComponent.Name + commentId: P:OpenTK.Platform.IPalComponent.Name + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Name + name: Name + nameWithType: IPalComponent.Name + fullName: OpenTK.Platform.IPalComponent.Name +- uid: OpenTK.Platform.IPalComponent.Provides + commentId: P:OpenTK.Platform.IPalComponent.Provides + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Provides + name: Provides + nameWithType: IPalComponent.Provides + fullName: OpenTK.Platform.IPalComponent.Provides +- uid: OpenTK.Platform.IPalComponent.Logger + commentId: P:OpenTK.Platform.IPalComponent.Logger + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Logger + name: Logger + nameWithType: IPalComponent.Logger + fullName: OpenTK.Platform.IPalComponent.Logger +- uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ + name: Initialize(ToolkitOptions) + nameWithType: IPalComponent.Initialize(ToolkitOptions) + fullName: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + spec.csharp: + - uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + name: Initialize + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ + - name: ( + - uid: OpenTK.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Platform.ToolkitOptions.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + name: Initialize + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ + - name: ( + - uid: OpenTK.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Platform.ToolkitOptions.html + - name: ) +- uid: OpenTK.Platform.IPalComponent + commentId: T:OpenTK.Platform.IPalComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IPalComponent.html + name: IPalComponent + nameWithType: IPalComponent + fullName: OpenTK.Platform.IPalComponent +- uid: OpenTK.Platform.IVulkanComponent.GetPhysicalDevicePresentationSupport(OpenTK.Graphics.Vulkan.VkInstance,OpenTK.Graphics.Vulkan.VkPhysicalDevice,System.UInt32) + commentId: M:OpenTK.Platform.IVulkanComponent.GetPhysicalDevicePresentationSupport(OpenTK.Graphics.Vulkan.VkInstance,OpenTK.Graphics.Vulkan.VkPhysicalDevice,System.UInt32) + isExternal: true + href: OpenTK.Platform.IVulkanComponent.html#OpenTK_Platform_IVulkanComponent_GetPhysicalDevicePresentationSupport_OpenTK_Graphics_Vulkan_VkInstance_OpenTK_Graphics_Vulkan_VkPhysicalDevice_System_UInt32_ + name: GetPhysicalDevicePresentationSupport(VkInstance, VkPhysicalDevice, uint) + nameWithType: IVulkanComponent.GetPhysicalDevicePresentationSupport(VkInstance, VkPhysicalDevice, uint) + fullName: OpenTK.Platform.IVulkanComponent.GetPhysicalDevicePresentationSupport(OpenTK.Graphics.Vulkan.VkInstance, OpenTK.Graphics.Vulkan.VkPhysicalDevice, uint) + nameWithType.vb: IVulkanComponent.GetPhysicalDevicePresentationSupport(VkInstance, VkPhysicalDevice, UInteger) + fullName.vb: OpenTK.Platform.IVulkanComponent.GetPhysicalDevicePresentationSupport(OpenTK.Graphics.Vulkan.VkInstance, OpenTK.Graphics.Vulkan.VkPhysicalDevice, UInteger) + name.vb: GetPhysicalDevicePresentationSupport(VkInstance, VkPhysicalDevice, UInteger) + spec.csharp: + - uid: OpenTK.Platform.IVulkanComponent.GetPhysicalDevicePresentationSupport(OpenTK.Graphics.Vulkan.VkInstance,OpenTK.Graphics.Vulkan.VkPhysicalDevice,System.UInt32) + name: GetPhysicalDevicePresentationSupport + href: OpenTK.Platform.IVulkanComponent.html#OpenTK_Platform_IVulkanComponent_GetPhysicalDevicePresentationSupport_OpenTK_Graphics_Vulkan_VkInstance_OpenTK_Graphics_Vulkan_VkPhysicalDevice_System_UInt32_ + - name: ( + - uid: OpenTK.Graphics.Vulkan.VkInstance + name: VkInstance + href: OpenTK.Graphics.Vulkan.VkInstance.html + - name: ',' + - name: " " + - uid: OpenTK.Graphics.Vulkan.VkPhysicalDevice + name: VkPhysicalDevice + href: OpenTK.Graphics.Vulkan.VkPhysicalDevice.html + - name: ',' + - name: " " + - uid: System.UInt32 + name: uint + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.uint32 + - name: ) + spec.vb: + - uid: OpenTK.Platform.IVulkanComponent.GetPhysicalDevicePresentationSupport(OpenTK.Graphics.Vulkan.VkInstance,OpenTK.Graphics.Vulkan.VkPhysicalDevice,System.UInt32) + name: GetPhysicalDevicePresentationSupport + href: OpenTK.Platform.IVulkanComponent.html#OpenTK_Platform_IVulkanComponent_GetPhysicalDevicePresentationSupport_OpenTK_Graphics_Vulkan_VkInstance_OpenTK_Graphics_Vulkan_VkPhysicalDevice_System_UInt32_ + - name: ( + - uid: OpenTK.Graphics.Vulkan.VkInstance + name: VkInstance + href: OpenTK.Graphics.Vulkan.VkInstance.html + - name: ',' + - name: " " + - uid: OpenTK.Graphics.Vulkan.VkPhysicalDevice + name: VkPhysicalDevice + href: OpenTK.Graphics.Vulkan.VkPhysicalDevice.html + - name: ',' + - name: " " + - uid: System.UInt32 + name: UInteger + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.uint32 + - name: ) +- uid: OpenTK.Platform.IVulkanComponent.CreateWindowSurface(OpenTK.Graphics.Vulkan.VkInstance,OpenTK.Platform.WindowHandle,OpenTK.Graphics.Vulkan.VkAllocationCallbacks*,OpenTK.Graphics.Vulkan.VkSurfaceKHR@) + commentId: M:OpenTK.Platform.IVulkanComponent.CreateWindowSurface(OpenTK.Graphics.Vulkan.VkInstance,OpenTK.Platform.WindowHandle,OpenTK.Graphics.Vulkan.VkAllocationCallbacks*,OpenTK.Graphics.Vulkan.VkSurfaceKHR@) + href: OpenTK.Platform.IVulkanComponent.html#OpenTK_Platform_IVulkanComponent_CreateWindowSurface_OpenTK_Graphics_Vulkan_VkInstance_OpenTK_Platform_WindowHandle_OpenTK_Graphics_Vulkan_VkAllocationCallbacks__OpenTK_Graphics_Vulkan_VkSurfaceKHR__ + name: CreateWindowSurface(VkInstance, WindowHandle, VkAllocationCallbacks*, out VkSurfaceKHR) + nameWithType: IVulkanComponent.CreateWindowSurface(VkInstance, WindowHandle, VkAllocationCallbacks*, out VkSurfaceKHR) + fullName: OpenTK.Platform.IVulkanComponent.CreateWindowSurface(OpenTK.Graphics.Vulkan.VkInstance, OpenTK.Platform.WindowHandle, OpenTK.Graphics.Vulkan.VkAllocationCallbacks*, out OpenTK.Graphics.Vulkan.VkSurfaceKHR) + nameWithType.vb: IVulkanComponent.CreateWindowSurface(VkInstance, WindowHandle, VkAllocationCallbacks*, VkSurfaceKHR) + fullName.vb: OpenTK.Platform.IVulkanComponent.CreateWindowSurface(OpenTK.Graphics.Vulkan.VkInstance, OpenTK.Platform.WindowHandle, OpenTK.Graphics.Vulkan.VkAllocationCallbacks*, OpenTK.Graphics.Vulkan.VkSurfaceKHR) + name.vb: CreateWindowSurface(VkInstance, WindowHandle, VkAllocationCallbacks*, VkSurfaceKHR) + spec.csharp: + - uid: OpenTK.Platform.IVulkanComponent.CreateWindowSurface(OpenTK.Graphics.Vulkan.VkInstance,OpenTK.Platform.WindowHandle,OpenTK.Graphics.Vulkan.VkAllocationCallbacks*,OpenTK.Graphics.Vulkan.VkSurfaceKHR@) + name: CreateWindowSurface + href: OpenTK.Platform.IVulkanComponent.html#OpenTK_Platform_IVulkanComponent_CreateWindowSurface_OpenTK_Graphics_Vulkan_VkInstance_OpenTK_Platform_WindowHandle_OpenTK_Graphics_Vulkan_VkAllocationCallbacks__OpenTK_Graphics_Vulkan_VkSurfaceKHR__ + - name: ( + - uid: OpenTK.Graphics.Vulkan.VkInstance + name: VkInstance + href: OpenTK.Graphics.Vulkan.VkInstance.html + - name: ',' + - name: " " + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: OpenTK.Graphics.Vulkan.VkAllocationCallbacks + name: VkAllocationCallbacks + href: OpenTK.Graphics.Vulkan.VkAllocationCallbacks.html + - name: '*' + - name: ',' + - name: " " + - name: out + - name: " " + - uid: OpenTK.Graphics.Vulkan.VkSurfaceKHR + name: VkSurfaceKHR + href: OpenTK.Graphics.Vulkan.VkSurfaceKHR.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IVulkanComponent.CreateWindowSurface(OpenTK.Graphics.Vulkan.VkInstance,OpenTK.Platform.WindowHandle,OpenTK.Graphics.Vulkan.VkAllocationCallbacks*,OpenTK.Graphics.Vulkan.VkSurfaceKHR@) + name: CreateWindowSurface + href: OpenTK.Platform.IVulkanComponent.html#OpenTK_Platform_IVulkanComponent_CreateWindowSurface_OpenTK_Graphics_Vulkan_VkInstance_OpenTK_Platform_WindowHandle_OpenTK_Graphics_Vulkan_VkAllocationCallbacks__OpenTK_Graphics_Vulkan_VkSurfaceKHR__ + - name: ( + - uid: OpenTK.Graphics.Vulkan.VkInstance + name: VkInstance + href: OpenTK.Graphics.Vulkan.VkInstance.html + - name: ',' + - name: " " + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: OpenTK.Graphics.Vulkan.VkAllocationCallbacks + name: VkAllocationCallbacks + href: OpenTK.Graphics.Vulkan.VkAllocationCallbacks.html + - name: '*' + - name: ',' + - name: " " + - uid: OpenTK.Graphics.Vulkan.VkSurfaceKHR + name: VkSurfaceKHR + href: OpenTK.Graphics.Vulkan.VkSurfaceKHR.html + - name: ) +- uid: OpenTK.Graphics.Vulkan.VkInstance + commentId: T:OpenTK.Graphics.Vulkan.VkInstance + parent: OpenTK.Graphics.Vulkan + href: OpenTK.Graphics.Vulkan.VkInstance.html + name: VkInstance + nameWithType: VkInstance + fullName: OpenTK.Graphics.Vulkan.VkInstance +- uid: OpenTK.Platform.IVulkanComponent.GetRequiredInstanceExtensions* + commentId: Overload:OpenTK.Platform.IVulkanComponent.GetRequiredInstanceExtensions + href: OpenTK.Platform.IVulkanComponent.html#OpenTK_Platform_IVulkanComponent_GetRequiredInstanceExtensions + name: GetRequiredInstanceExtensions + nameWithType: IVulkanComponent.GetRequiredInstanceExtensions + fullName: OpenTK.Platform.IVulkanComponent.GetRequiredInstanceExtensions +- uid: System.ReadOnlySpan{System.String} + commentId: T:System.ReadOnlySpan{System.String} + parent: System + definition: System.ReadOnlySpan`1 + href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 + name: ReadOnlySpan + nameWithType: ReadOnlySpan + fullName: System.ReadOnlySpan + nameWithType.vb: ReadOnlySpan(Of String) + fullName.vb: System.ReadOnlySpan(Of String) + name.vb: ReadOnlySpan(Of String) + spec.csharp: + - uid: System.ReadOnlySpan`1 + name: ReadOnlySpan + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 + - name: < + - uid: System.String + name: string + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: '>' + spec.vb: + - uid: System.ReadOnlySpan`1 + name: ReadOnlySpan + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 + - name: ( + - name: Of + - name: " " + - uid: System.String + name: String + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ) +- uid: OpenTK.Graphics.Vulkan + commentId: N:OpenTK.Graphics.Vulkan + href: OpenTK.html + name: OpenTK.Graphics.Vulkan + nameWithType: OpenTK.Graphics.Vulkan + fullName: OpenTK.Graphics.Vulkan + spec.csharp: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Graphics + name: Graphics + href: OpenTK.Graphics.html + - name: . + - uid: OpenTK.Graphics.Vulkan + name: Vulkan + href: OpenTK.Graphics.Vulkan.html + spec.vb: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Graphics + name: Graphics + href: OpenTK.Graphics.html + - name: . + - uid: OpenTK.Graphics.Vulkan + name: Vulkan + href: OpenTK.Graphics.Vulkan.html +- uid: System.ReadOnlySpan`1 + commentId: T:System.ReadOnlySpan`1 + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 + name: ReadOnlySpan + nameWithType: ReadOnlySpan + fullName: System.ReadOnlySpan + nameWithType.vb: ReadOnlySpan(Of T) + fullName.vb: System.ReadOnlySpan(Of T) + name.vb: ReadOnlySpan(Of T) + spec.csharp: + - uid: System.ReadOnlySpan`1 + name: ReadOnlySpan + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 + - name: < + - name: T + - name: '>' + spec.vb: + - uid: System.ReadOnlySpan`1 + name: ReadOnlySpan + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 + - name: ( + - name: Of + - name: " " + - name: T + - name: ) +- uid: System + commentId: N:System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System + nameWithType: System + fullName: System +- uid: OpenTK.Graphics.Vulkan.VkPhysicalDevice + commentId: T:OpenTK.Graphics.Vulkan.VkPhysicalDevice + parent: OpenTK.Graphics.Vulkan + href: OpenTK.Graphics.Vulkan.VkPhysicalDevice.html + name: VkPhysicalDevice + nameWithType: VkPhysicalDevice + fullName: OpenTK.Graphics.Vulkan.VkPhysicalDevice +- uid: OpenTK.Platform.IVulkanComponent.GetPhysicalDevicePresentationSupport* + commentId: Overload:OpenTK.Platform.IVulkanComponent.GetPhysicalDevicePresentationSupport + href: OpenTK.Platform.IVulkanComponent.html#OpenTK_Platform_IVulkanComponent_GetPhysicalDevicePresentationSupport_OpenTK_Graphics_Vulkan_VkInstance_OpenTK_Graphics_Vulkan_VkPhysicalDevice_System_UInt32_ + name: GetPhysicalDevicePresentationSupport + nameWithType: IVulkanComponent.GetPhysicalDevicePresentationSupport + fullName: OpenTK.Platform.IVulkanComponent.GetPhysicalDevicePresentationSupport +- uid: System.UInt32 + commentId: T:System.UInt32 + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.uint32 + name: uint + nameWithType: uint + fullName: uint + nameWithType.vb: UInteger + fullName.vb: UInteger + name.vb: UInteger +- uid: System.Boolean + commentId: T:System.Boolean + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + name: bool + nameWithType: bool + fullName: bool + nameWithType.vb: Boolean + fullName.vb: Boolean + name.vb: Boolean +- uid: OpenTK.Platform.IVulkanComponent.CreateWindowSurface* + commentId: Overload:OpenTK.Platform.IVulkanComponent.CreateWindowSurface + href: OpenTK.Platform.IVulkanComponent.html#OpenTK_Platform_IVulkanComponent_CreateWindowSurface_OpenTK_Graphics_Vulkan_VkInstance_OpenTK_Platform_WindowHandle_OpenTK_Graphics_Vulkan_VkAllocationCallbacks__OpenTK_Graphics_Vulkan_VkSurfaceKHR__ + name: CreateWindowSurface + nameWithType: IVulkanComponent.CreateWindowSurface + fullName: OpenTK.Platform.IVulkanComponent.CreateWindowSurface +- uid: OpenTK.Platform.WindowHandle + commentId: T:OpenTK.Platform.WindowHandle + parent: OpenTK.Platform + href: OpenTK.Platform.WindowHandle.html + name: WindowHandle + nameWithType: WindowHandle + fullName: OpenTK.Platform.WindowHandle +- uid: OpenTK.Graphics.Vulkan.VkAllocationCallbacks* + isExternal: true + href: OpenTK.Graphics.Vulkan.VkAllocationCallbacks.html + name: VkAllocationCallbacks* + nameWithType: VkAllocationCallbacks* + fullName: OpenTK.Graphics.Vulkan.VkAllocationCallbacks* + spec.csharp: + - uid: OpenTK.Graphics.Vulkan.VkAllocationCallbacks + name: VkAllocationCallbacks + href: OpenTK.Graphics.Vulkan.VkAllocationCallbacks.html + - name: '*' + spec.vb: + - uid: OpenTK.Graphics.Vulkan.VkAllocationCallbacks + name: VkAllocationCallbacks + href: OpenTK.Graphics.Vulkan.VkAllocationCallbacks.html + - name: '*' +- uid: OpenTK.Graphics.Vulkan.VkSurfaceKHR + commentId: T:OpenTK.Graphics.Vulkan.VkSurfaceKHR + parent: OpenTK.Graphics.Vulkan + href: OpenTK.Graphics.Vulkan.VkSurfaceKHR.html + name: VkSurfaceKHR + nameWithType: VkSurfaceKHR + fullName: OpenTK.Graphics.Vulkan.VkSurfaceKHR +- uid: OpenTK.Graphics.Vulkan.VkResult + commentId: T:OpenTK.Graphics.Vulkan.VkResult + parent: OpenTK.Graphics.Vulkan + href: OpenTK.Graphics.Vulkan.VkResult.html + name: VkResult + nameWithType: VkResult + fullName: OpenTK.Graphics.Vulkan.VkResult diff --git a/api/OpenTK.Platform.IWindowComponent.yml b/api/OpenTK.Platform.IWindowComponent.yml new file mode 100644 index 00000000..c88de1a5 --- /dev/null +++ b/api/OpenTK.Platform.IWindowComponent.yml @@ -0,0 +1,3103 @@ +### YamlMime:ManagedReference +items: +- uid: OpenTK.Platform.IWindowComponent + commentId: T:OpenTK.Platform.IWindowComponent + id: IWindowComponent + parent: OpenTK.Platform + children: + - OpenTK.Platform.IWindowComponent.CanCaptureCursor + - OpenTK.Platform.IWindowComponent.CanGetDisplay + - OpenTK.Platform.IWindowComponent.CanSetCursor + - OpenTK.Platform.IWindowComponent.CanSetIcon + - OpenTK.Platform.IWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) + - OpenTK.Platform.IWindowComponent.Create(OpenTK.Platform.GraphicsApiHints) + - OpenTK.Platform.IWindowComponent.Destroy(OpenTK.Platform.WindowHandle) + - OpenTK.Platform.IWindowComponent.FocusWindow(OpenTK.Platform.WindowHandle) + - OpenTK.Platform.IWindowComponent.GetBorderStyle(OpenTK.Platform.WindowHandle) + - OpenTK.Platform.IWindowComponent.GetBounds(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) + - OpenTK.Platform.IWindowComponent.GetClientBounds(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) + - OpenTK.Platform.IWindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + - OpenTK.Platform.IWindowComponent.GetClientSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + - OpenTK.Platform.IWindowComponent.GetCursorCaptureMode(OpenTK.Platform.WindowHandle) + - OpenTK.Platform.IWindowComponent.GetDisplay(OpenTK.Platform.WindowHandle) + - OpenTK.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + - OpenTK.Platform.IWindowComponent.GetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle@) + - OpenTK.Platform.IWindowComponent.GetIcon(OpenTK.Platform.WindowHandle) + - OpenTK.Platform.IWindowComponent.GetMaxClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) + - OpenTK.Platform.IWindowComponent.GetMinClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) + - OpenTK.Platform.IWindowComponent.GetMode(OpenTK.Platform.WindowHandle) + - OpenTK.Platform.IWindowComponent.GetPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + - OpenTK.Platform.IWindowComponent.GetScaleFactor(OpenTK.Platform.WindowHandle,System.Single@,System.Single@) + - OpenTK.Platform.IWindowComponent.GetSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + - OpenTK.Platform.IWindowComponent.GetTitle(OpenTK.Platform.WindowHandle) + - OpenTK.Platform.IWindowComponent.IsAlwaysOnTop(OpenTK.Platform.WindowHandle) + - OpenTK.Platform.IWindowComponent.IsFocused(OpenTK.Platform.WindowHandle) + - OpenTK.Platform.IWindowComponent.IsWindowDestroyed(OpenTK.Platform.WindowHandle) + - OpenTK.Platform.IWindowComponent.ProcessEvents(System.Boolean) + - OpenTK.Platform.IWindowComponent.RequestAttention(OpenTK.Platform.WindowHandle) + - OpenTK.Platform.IWindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) + - OpenTK.Platform.IWindowComponent.SetAlwaysOnTop(OpenTK.Platform.WindowHandle,System.Boolean) + - OpenTK.Platform.IWindowComponent.SetBorderStyle(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowBorderStyle) + - OpenTK.Platform.IWindowComponent.SetBounds(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) + - OpenTK.Platform.IWindowComponent.SetClientBounds(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) + - OpenTK.Platform.IWindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) + - OpenTK.Platform.IWindowComponent.SetClientSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) + - OpenTK.Platform.IWindowComponent.SetCursor(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorHandle) + - OpenTK.Platform.IWindowComponent.SetCursorCaptureMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorCaptureMode) + - OpenTK.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle) + - OpenTK.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle,OpenTK.Platform.VideoMode) + - OpenTK.Platform.IWindowComponent.SetHitTestCallback(OpenTK.Platform.WindowHandle,OpenTK.Platform.HitTest) + - OpenTK.Platform.IWindowComponent.SetIcon(OpenTK.Platform.WindowHandle,OpenTK.Platform.IconHandle) + - OpenTK.Platform.IWindowComponent.SetMaxClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) + - OpenTK.Platform.IWindowComponent.SetMinClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) + - OpenTK.Platform.IWindowComponent.SetMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowMode) + - OpenTK.Platform.IWindowComponent.SetPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) + - OpenTK.Platform.IWindowComponent.SetSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) + - OpenTK.Platform.IWindowComponent.SetTitle(OpenTK.Platform.WindowHandle,System.String) + - OpenTK.Platform.IWindowComponent.SupportedEvents + - OpenTK.Platform.IWindowComponent.SupportedModes + - OpenTK.Platform.IWindowComponent.SupportedStyles + langs: + - csharp + - vb + name: IWindowComponent + nameWithType: IWindowComponent + fullName: OpenTK.Platform.IWindowComponent + type: Interface + source: + id: IWindowComponent + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IWindowComponent.cs + startLine: 24 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Interface for abstraction layer drivers which implement the window component. + example: [] + syntax: + content: 'public interface IWindowComponent : IPalComponent' + content.vb: Public Interface IWindowComponent Inherits IPalComponent + inheritedMembers: + - OpenTK.Platform.IPalComponent.Name + - OpenTK.Platform.IPalComponent.Provides + - OpenTK.Platform.IPalComponent.Logger + - OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) +- uid: OpenTK.Platform.IWindowComponent.CanSetIcon + commentId: P:OpenTK.Platform.IWindowComponent.CanSetIcon + id: CanSetIcon + parent: OpenTK.Platform.IWindowComponent + langs: + - csharp + - vb + name: CanSetIcon + nameWithType: IWindowComponent.CanSetIcon + fullName: OpenTK.Platform.IWindowComponent.CanSetIcon + type: Property + source: + id: CanSetIcon + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IWindowComponent.cs + startLine: 34 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: True when the driver supports setting the window icon using . + example: [] + syntax: + content: bool CanSetIcon { get; } + parameters: [] + return: + type: System.Boolean + content.vb: ReadOnly Property CanSetIcon As Boolean + overload: OpenTK.Platform.IWindowComponent.CanSetIcon* + seealso: + - linkId: OpenTK.Platform.IWindowComponent.SetIcon(OpenTK.Platform.WindowHandle,OpenTK.Platform.IconHandle) + commentId: M:OpenTK.Platform.IWindowComponent.SetIcon(OpenTK.Platform.WindowHandle,OpenTK.Platform.IconHandle) +- uid: OpenTK.Platform.IWindowComponent.CanGetDisplay + commentId: P:OpenTK.Platform.IWindowComponent.CanGetDisplay + id: CanGetDisplay + parent: OpenTK.Platform.IWindowComponent + langs: + - csharp + - vb + name: CanGetDisplay + nameWithType: IWindowComponent.CanGetDisplay + fullName: OpenTK.Platform.IWindowComponent.CanGetDisplay + type: Property + source: + id: CanGetDisplay + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IWindowComponent.cs + startLine: 42 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: True when the driver can provide the display the window is in using . + example: [] + syntax: + content: bool CanGetDisplay { get; } + parameters: [] + return: + type: System.Boolean + content.vb: ReadOnly Property CanGetDisplay As Boolean + overload: OpenTK.Platform.IWindowComponent.CanGetDisplay* + seealso: + - linkId: OpenTK.Platform.IWindowComponent.GetDisplay(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.GetDisplay(OpenTK.Platform.WindowHandle) +- uid: OpenTK.Platform.IWindowComponent.CanSetCursor + commentId: P:OpenTK.Platform.IWindowComponent.CanSetCursor + id: CanSetCursor + parent: OpenTK.Platform.IWindowComponent + langs: + - csharp + - vb + name: CanSetCursor + nameWithType: IWindowComponent.CanSetCursor + fullName: OpenTK.Platform.IWindowComponent.CanSetCursor + type: Property + source: + id: CanSetCursor + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IWindowComponent.cs + startLine: 50 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: True when the driver supports setting the cursor of the window using . + example: [] + syntax: + content: bool CanSetCursor { get; } + parameters: [] + return: + type: System.Boolean + content.vb: ReadOnly Property CanSetCursor As Boolean + overload: OpenTK.Platform.IWindowComponent.CanSetCursor* + seealso: + - linkId: OpenTK.Platform.IWindowComponent.SetCursor(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorHandle) + commentId: M:OpenTK.Platform.IWindowComponent.SetCursor(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorHandle) +- uid: OpenTK.Platform.IWindowComponent.CanCaptureCursor + commentId: P:OpenTK.Platform.IWindowComponent.CanCaptureCursor + id: CanCaptureCursor + parent: OpenTK.Platform.IWindowComponent + langs: + - csharp + - vb + name: CanCaptureCursor + nameWithType: IWindowComponent.CanCaptureCursor + fullName: OpenTK.Platform.IWindowComponent.CanCaptureCursor + type: Property + source: + id: CanCaptureCursor + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IWindowComponent.cs + startLine: 58 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: True when the driver supports capturing the cursor in a window using . + example: [] + syntax: + content: bool CanCaptureCursor { get; } + parameters: [] + return: + type: System.Boolean + content.vb: ReadOnly Property CanCaptureCursor As Boolean + overload: OpenTK.Platform.IWindowComponent.CanCaptureCursor* + seealso: + - linkId: OpenTK.Platform.IWindowComponent.SetCursorCaptureMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorCaptureMode) + commentId: M:OpenTK.Platform.IWindowComponent.SetCursorCaptureMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorCaptureMode) +- uid: OpenTK.Platform.IWindowComponent.SupportedEvents + commentId: P:OpenTK.Platform.IWindowComponent.SupportedEvents + id: SupportedEvents + parent: OpenTK.Platform.IWindowComponent + langs: + - csharp + - vb + name: SupportedEvents + nameWithType: IWindowComponent.SupportedEvents + fullName: OpenTK.Platform.IWindowComponent.SupportedEvents + type: Property + source: + id: SupportedEvents + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IWindowComponent.cs + startLine: 63 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Read-only list of event types the driver supports. + example: [] + syntax: + content: IReadOnlyList SupportedEvents { get; } + parameters: [] + return: + type: System.Collections.Generic.IReadOnlyList{OpenTK.Platform.PlatformEventType} + content.vb: ReadOnly Property SupportedEvents As IReadOnlyList(Of PlatformEventType) + overload: OpenTK.Platform.IWindowComponent.SupportedEvents* +- uid: OpenTK.Platform.IWindowComponent.SupportedStyles + commentId: P:OpenTK.Platform.IWindowComponent.SupportedStyles + id: SupportedStyles + parent: OpenTK.Platform.IWindowComponent + langs: + - csharp + - vb + name: SupportedStyles + nameWithType: IWindowComponent.SupportedStyles + fullName: OpenTK.Platform.IWindowComponent.SupportedStyles + type: Property + source: + id: SupportedStyles + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IWindowComponent.cs + startLine: 68 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Read-only list of window styles the driver supports. + example: [] + syntax: + content: IReadOnlyList SupportedStyles { get; } + parameters: [] + return: + type: System.Collections.Generic.IReadOnlyList{OpenTK.Platform.WindowBorderStyle} + content.vb: ReadOnly Property SupportedStyles As IReadOnlyList(Of WindowBorderStyle) + overload: OpenTK.Platform.IWindowComponent.SupportedStyles* +- uid: OpenTK.Platform.IWindowComponent.SupportedModes + commentId: P:OpenTK.Platform.IWindowComponent.SupportedModes + id: SupportedModes + parent: OpenTK.Platform.IWindowComponent + langs: + - csharp + - vb + name: SupportedModes + nameWithType: IWindowComponent.SupportedModes + fullName: OpenTK.Platform.IWindowComponent.SupportedModes + type: Property + source: + id: SupportedModes + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IWindowComponent.cs + startLine: 73 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Read-only list of window modes the driver supports. + example: [] + syntax: + content: IReadOnlyList SupportedModes { get; } + parameters: [] + return: + type: System.Collections.Generic.IReadOnlyList{OpenTK.Platform.WindowMode} + content.vb: ReadOnly Property SupportedModes As IReadOnlyList(Of WindowMode) + overload: OpenTK.Platform.IWindowComponent.SupportedModes* +- uid: OpenTK.Platform.IWindowComponent.ProcessEvents(System.Boolean) + commentId: M:OpenTK.Platform.IWindowComponent.ProcessEvents(System.Boolean) + id: ProcessEvents(System.Boolean) + parent: OpenTK.Platform.IWindowComponent + langs: + - csharp + - vb + name: ProcessEvents(bool) + nameWithType: IWindowComponent.ProcessEvents(bool) + fullName: OpenTK.Platform.IWindowComponent.ProcessEvents(bool) + type: Method + source: + id: ProcessEvents + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IWindowComponent.cs + startLine: 79 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Processes platform events and sends them to the . + example: [] + syntax: + content: void ProcessEvents(bool waitForEvents) + parameters: + - id: waitForEvents + type: System.Boolean + description: Specifies if this function should wait for events or return immediately if there are no events. + content.vb: Sub ProcessEvents(waitForEvents As Boolean) + overload: OpenTK.Platform.IWindowComponent.ProcessEvents* + nameWithType.vb: IWindowComponent.ProcessEvents(Boolean) + fullName.vb: OpenTK.Platform.IWindowComponent.ProcessEvents(Boolean) + name.vb: ProcessEvents(Boolean) +- uid: OpenTK.Platform.IWindowComponent.Create(OpenTK.Platform.GraphicsApiHints) + commentId: M:OpenTK.Platform.IWindowComponent.Create(OpenTK.Platform.GraphicsApiHints) + id: Create(OpenTK.Platform.GraphicsApiHints) + parent: OpenTK.Platform.IWindowComponent + langs: + - csharp + - vb + name: Create(GraphicsApiHints) + nameWithType: IWindowComponent.Create(GraphicsApiHints) + fullName: OpenTK.Platform.IWindowComponent.Create(OpenTK.Platform.GraphicsApiHints) + type: Method + source: + id: Create + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IWindowComponent.cs + startLine: 88 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Create a window object. + example: [] + syntax: + content: WindowHandle Create(GraphicsApiHints hints) + parameters: + - id: hints + type: OpenTK.Platform.GraphicsApiHints + description: Graphics API hints to be passed to the operating system. + return: + type: OpenTK.Platform.WindowHandle + description: Handle to the new window object. + content.vb: Function Create(hints As GraphicsApiHints) As WindowHandle + overload: OpenTK.Platform.IWindowComponent.Create* +- uid: OpenTK.Platform.IWindowComponent.Destroy(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.Destroy(OpenTK.Platform.WindowHandle) + id: Destroy(OpenTK.Platform.WindowHandle) + parent: OpenTK.Platform.IWindowComponent + langs: + - csharp + - vb + name: Destroy(WindowHandle) + nameWithType: IWindowComponent.Destroy(WindowHandle) + fullName: OpenTK.Platform.IWindowComponent.Destroy(OpenTK.Platform.WindowHandle) + type: Method + source: + id: Destroy + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IWindowComponent.cs + startLine: 95 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Destroy a window object. After a window has been destroyed the handle should no longer be used in any function other than . + example: [] + syntax: + content: void Destroy(WindowHandle handle) + parameters: + - id: handle + type: OpenTK.Platform.WindowHandle + description: Handle to a window object. + content.vb: Sub Destroy(handle As WindowHandle) + overload: OpenTK.Platform.IWindowComponent.Destroy* + exceptions: + - type: System.ArgumentNullException + commentId: T:System.ArgumentNullException + description: handle is null. +- uid: OpenTK.Platform.IWindowComponent.IsWindowDestroyed(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.IsWindowDestroyed(OpenTK.Platform.WindowHandle) + id: IsWindowDestroyed(OpenTK.Platform.WindowHandle) + parent: OpenTK.Platform.IWindowComponent + langs: + - csharp + - vb + name: IsWindowDestroyed(WindowHandle) + nameWithType: IWindowComponent.IsWindowDestroyed(WindowHandle) + fullName: OpenTK.Platform.IWindowComponent.IsWindowDestroyed(OpenTK.Platform.WindowHandle) + type: Method + source: + id: IsWindowDestroyed + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IWindowComponent.cs + startLine: 102 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Checks if has been called on this handle. + example: [] + syntax: + content: bool IsWindowDestroyed(WindowHandle handle) + parameters: + - id: handle + type: OpenTK.Platform.WindowHandle + description: The window handle to check if it's destroyed or not. + return: + type: System.Boolean + description: If was called with the window handle. + content.vb: Function IsWindowDestroyed(handle As WindowHandle) As Boolean + overload: OpenTK.Platform.IWindowComponent.IsWindowDestroyed* +- uid: OpenTK.Platform.IWindowComponent.GetTitle(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.GetTitle(OpenTK.Platform.WindowHandle) + id: GetTitle(OpenTK.Platform.WindowHandle) + parent: OpenTK.Platform.IWindowComponent + langs: + - csharp + - vb + name: GetTitle(WindowHandle) + nameWithType: IWindowComponent.GetTitle(WindowHandle) + fullName: OpenTK.Platform.IWindowComponent.GetTitle(OpenTK.Platform.WindowHandle) + type: Method + source: + id: GetTitle + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IWindowComponent.cs + startLine: 110 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Get the title of a window. + example: [] + syntax: + content: string GetTitle(WindowHandle handle) + parameters: + - id: handle + type: OpenTK.Platform.WindowHandle + description: Handle to a window. + return: + type: System.String + description: The title of the window. + content.vb: Function GetTitle(handle As WindowHandle) As String + overload: OpenTK.Platform.IWindowComponent.GetTitle* + exceptions: + - type: System.ArgumentNullException + commentId: T:System.ArgumentNullException + description: handle is null. +- uid: OpenTK.Platform.IWindowComponent.SetTitle(OpenTK.Platform.WindowHandle,System.String) + commentId: M:OpenTK.Platform.IWindowComponent.SetTitle(OpenTK.Platform.WindowHandle,System.String) + id: SetTitle(OpenTK.Platform.WindowHandle,System.String) + parent: OpenTK.Platform.IWindowComponent + langs: + - csharp + - vb + name: SetTitle(WindowHandle, string) + nameWithType: IWindowComponent.SetTitle(WindowHandle, string) + fullName: OpenTK.Platform.IWindowComponent.SetTitle(OpenTK.Platform.WindowHandle, string) + type: Method + source: + id: SetTitle + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IWindowComponent.cs + startLine: 120 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Set the title of a window. + example: [] + syntax: + content: void SetTitle(WindowHandle handle, string title) + parameters: + - id: handle + type: OpenTK.Platform.WindowHandle + description: Handle to a window. + - id: title + type: System.String + description: New window title string. + content.vb: Sub SetTitle(handle As WindowHandle, title As String) + overload: OpenTK.Platform.IWindowComponent.SetTitle* + exceptions: + - type: System.ArgumentNullException + commentId: T:System.ArgumentNullException + description: handle or title is null. + nameWithType.vb: IWindowComponent.SetTitle(WindowHandle, String) + fullName.vb: OpenTK.Platform.IWindowComponent.SetTitle(OpenTK.Platform.WindowHandle, String) + name.vb: SetTitle(WindowHandle, String) +- uid: OpenTK.Platform.IWindowComponent.GetIcon(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.GetIcon(OpenTK.Platform.WindowHandle) + id: GetIcon(OpenTK.Platform.WindowHandle) + parent: OpenTK.Platform.IWindowComponent + langs: + - csharp + - vb + name: GetIcon(WindowHandle) + nameWithType: IWindowComponent.GetIcon(WindowHandle) + fullName: OpenTK.Platform.IWindowComponent.GetIcon(OpenTK.Platform.WindowHandle) + type: Method + source: + id: GetIcon + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IWindowComponent.cs + startLine: 131 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Get a handle to the window icon object. + example: [] + syntax: + content: IconHandle? GetIcon(WindowHandle handle) + parameters: + - id: handle + type: OpenTK.Platform.WindowHandle + description: Handle to a window. + return: + type: OpenTK.Platform.IconHandle + description: Handle to the windows icon object, or null if none is set. + content.vb: Function GetIcon(handle As WindowHandle) As IconHandle + overload: OpenTK.Platform.IWindowComponent.GetIcon* + exceptions: + - type: System.ArgumentNullException + commentId: T:System.ArgumentNullException + description: handle is null. + - type: OpenTK.Platform.PalNotImplementedException + commentId: T:OpenTK.Platform.PalNotImplementedException + description: Driver does not support getting the window icon. See . +- uid: OpenTK.Platform.IWindowComponent.SetIcon(OpenTK.Platform.WindowHandle,OpenTK.Platform.IconHandle) + commentId: M:OpenTK.Platform.IWindowComponent.SetIcon(OpenTK.Platform.WindowHandle,OpenTK.Platform.IconHandle) + id: SetIcon(OpenTK.Platform.WindowHandle,OpenTK.Platform.IconHandle) + parent: OpenTK.Platform.IWindowComponent + langs: + - csharp + - vb + name: SetIcon(WindowHandle, IconHandle) + nameWithType: IWindowComponent.SetIcon(WindowHandle, IconHandle) + fullName: OpenTK.Platform.IWindowComponent.SetIcon(OpenTK.Platform.WindowHandle, OpenTK.Platform.IconHandle) + type: Method + source: + id: SetIcon + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IWindowComponent.cs + startLine: 141 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Set window icon object handle. + example: [] + syntax: + content: void SetIcon(WindowHandle handle, IconHandle icon) + parameters: + - id: handle + type: OpenTK.Platform.WindowHandle + description: Handle to a window. + - id: icon + type: OpenTK.Platform.IconHandle + description: Handle to an icon object, or null to revert to default. + content.vb: Sub SetIcon(handle As WindowHandle, icon As IconHandle) + overload: OpenTK.Platform.IWindowComponent.SetIcon* + exceptions: + - type: System.ArgumentNullException + commentId: T:System.ArgumentNullException + description: handle or icon is null. + - type: OpenTK.Platform.PalNotImplementedException + commentId: T:OpenTK.Platform.PalNotImplementedException + description: Backend does not support setting the window icon. See . + seealso: + - linkId: OpenTK.Platform.IWindowComponent.CanSetIcon + commentId: P:OpenTK.Platform.IWindowComponent.CanSetIcon +- uid: OpenTK.Platform.IWindowComponent.GetPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + commentId: M:OpenTK.Platform.IWindowComponent.GetPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + id: GetPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + parent: OpenTK.Platform.IWindowComponent + langs: + - csharp + - vb + name: GetPosition(WindowHandle, out int, out int) + nameWithType: IWindowComponent.GetPosition(WindowHandle, out int, out int) + fullName: OpenTK.Platform.IWindowComponent.GetPosition(OpenTK.Platform.WindowHandle, out int, out int) + type: Method + source: + id: GetPosition + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IWindowComponent.cs + startLine: 150 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Get the window position in display coordinates (top left origin). + example: [] + syntax: + content: void GetPosition(WindowHandle handle, out int x, out int y) + parameters: + - id: handle + type: OpenTK.Platform.WindowHandle + description: Handle to a window. + - id: x + type: System.Int32 + description: X coordinate of the window. + - id: y + type: System.Int32 + description: Y coordinate of the window. + content.vb: Sub GetPosition(handle As WindowHandle, x As Integer, y As Integer) + overload: OpenTK.Platform.IWindowComponent.GetPosition* + exceptions: + - type: System.ArgumentNullException + commentId: T:System.ArgumentNullException + description: handle is null. + nameWithType.vb: IWindowComponent.GetPosition(WindowHandle, Integer, Integer) + fullName.vb: OpenTK.Platform.IWindowComponent.GetPosition(OpenTK.Platform.WindowHandle, Integer, Integer) + name.vb: GetPosition(WindowHandle, Integer, Integer) +- uid: OpenTK.Platform.IWindowComponent.SetPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) + commentId: M:OpenTK.Platform.IWindowComponent.SetPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) + id: SetPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) + parent: OpenTK.Platform.IWindowComponent + langs: + - csharp + - vb + name: SetPosition(WindowHandle, int, int) + nameWithType: IWindowComponent.SetPosition(WindowHandle, int, int) + fullName: OpenTK.Platform.IWindowComponent.SetPosition(OpenTK.Platform.WindowHandle, int, int) + type: Method + source: + id: SetPosition + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IWindowComponent.cs + startLine: 159 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Set the window position in display coordinates (top left origin). + example: [] + syntax: + content: void SetPosition(WindowHandle handle, int x, int y) + parameters: + - id: handle + type: OpenTK.Platform.WindowHandle + description: Handle to a window. + - id: x + type: System.Int32 + description: New X coordinate of the window. + - id: y + type: System.Int32 + description: New Y coordinate of the window. + content.vb: Sub SetPosition(handle As WindowHandle, x As Integer, y As Integer) + overload: OpenTK.Platform.IWindowComponent.SetPosition* + exceptions: + - type: System.ArgumentNullException + commentId: T:System.ArgumentNullException + description: handle is null. + nameWithType.vb: IWindowComponent.SetPosition(WindowHandle, Integer, Integer) + fullName.vb: OpenTK.Platform.IWindowComponent.SetPosition(OpenTK.Platform.WindowHandle, Integer, Integer) + name.vb: SetPosition(WindowHandle, Integer, Integer) +- uid: OpenTK.Platform.IWindowComponent.GetSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + commentId: M:OpenTK.Platform.IWindowComponent.GetSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + id: GetSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + parent: OpenTK.Platform.IWindowComponent + langs: + - csharp + - vb + name: GetSize(WindowHandle, out int, out int) + nameWithType: IWindowComponent.GetSize(WindowHandle, out int, out int) + fullName: OpenTK.Platform.IWindowComponent.GetSize(OpenTK.Platform.WindowHandle, out int, out int) + type: Method + source: + id: GetSize + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IWindowComponent.cs + startLine: 168 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Get the size of the window. + example: [] + syntax: + content: void GetSize(WindowHandle handle, out int width, out int height) + parameters: + - id: handle + type: OpenTK.Platform.WindowHandle + description: Handle to a window. + - id: width + type: System.Int32 + description: Width of the window in pixels. + - id: height + type: System.Int32 + description: Height of the window in pixels. + content.vb: Sub GetSize(handle As WindowHandle, width As Integer, height As Integer) + overload: OpenTK.Platform.IWindowComponent.GetSize* + exceptions: + - type: System.ArgumentNullException + commentId: T:System.ArgumentNullException + description: handle is null. + nameWithType.vb: IWindowComponent.GetSize(WindowHandle, Integer, Integer) + fullName.vb: OpenTK.Platform.IWindowComponent.GetSize(OpenTK.Platform.WindowHandle, Integer, Integer) + name.vb: GetSize(WindowHandle, Integer, Integer) +- uid: OpenTK.Platform.IWindowComponent.SetSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) + commentId: M:OpenTK.Platform.IWindowComponent.SetSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) + id: SetSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) + parent: OpenTK.Platform.IWindowComponent + langs: + - csharp + - vb + name: SetSize(WindowHandle, int, int) + nameWithType: IWindowComponent.SetSize(WindowHandle, int, int) + fullName: OpenTK.Platform.IWindowComponent.SetSize(OpenTK.Platform.WindowHandle, int, int) + type: Method + source: + id: SetSize + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IWindowComponent.cs + startLine: 177 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Set the size of the window. + example: [] + syntax: + content: void SetSize(WindowHandle handle, int width, int height) + parameters: + - id: handle + type: OpenTK.Platform.WindowHandle + description: Handle to a window. + - id: width + type: System.Int32 + description: New width of the window in pixels. + - id: height + type: System.Int32 + description: New height of the window in pixels. + content.vb: Sub SetSize(handle As WindowHandle, width As Integer, height As Integer) + overload: OpenTK.Platform.IWindowComponent.SetSize* + exceptions: + - type: System.ArgumentNullException + commentId: T:System.ArgumentNullException + description: handle is null. + nameWithType.vb: IWindowComponent.SetSize(WindowHandle, Integer, Integer) + fullName.vb: OpenTK.Platform.IWindowComponent.SetSize(OpenTK.Platform.WindowHandle, Integer, Integer) + name.vb: SetSize(WindowHandle, Integer, Integer) +- uid: OpenTK.Platform.IWindowComponent.GetBounds(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) + commentId: M:OpenTK.Platform.IWindowComponent.GetBounds(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) + id: GetBounds(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) + parent: OpenTK.Platform.IWindowComponent + langs: + - csharp + - vb + name: GetBounds(WindowHandle, out int, out int, out int, out int) + nameWithType: IWindowComponent.GetBounds(WindowHandle, out int, out int, out int, out int) + fullName: OpenTK.Platform.IWindowComponent.GetBounds(OpenTK.Platform.WindowHandle, out int, out int, out int, out int) + type: Method + source: + id: GetBounds + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IWindowComponent.cs + startLine: 187 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Get the bounds of the window. + example: [] + syntax: + content: void GetBounds(WindowHandle handle, out int x, out int y, out int width, out int height) + parameters: + - id: handle + type: OpenTK.Platform.WindowHandle + description: Handle to a window. + - id: x + type: System.Int32 + description: X coordinate of the window. + - id: y + type: System.Int32 + description: Y coordinate of the window. + - id: width + type: System.Int32 + description: Width of the window in pixels. + - id: height + type: System.Int32 + description: Height of the window in pixels. + content.vb: Sub GetBounds(handle As WindowHandle, x As Integer, y As Integer, width As Integer, height As Integer) + overload: OpenTK.Platform.IWindowComponent.GetBounds* + nameWithType.vb: IWindowComponent.GetBounds(WindowHandle, Integer, Integer, Integer, Integer) + fullName.vb: OpenTK.Platform.IWindowComponent.GetBounds(OpenTK.Platform.WindowHandle, Integer, Integer, Integer, Integer) + name.vb: GetBounds(WindowHandle, Integer, Integer, Integer, Integer) +- uid: OpenTK.Platform.IWindowComponent.SetBounds(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) + commentId: M:OpenTK.Platform.IWindowComponent.SetBounds(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) + id: SetBounds(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) + parent: OpenTK.Platform.IWindowComponent + langs: + - csharp + - vb + name: SetBounds(WindowHandle, int, int, int, int) + nameWithType: IWindowComponent.SetBounds(WindowHandle, int, int, int, int) + fullName: OpenTK.Platform.IWindowComponent.SetBounds(OpenTK.Platform.WindowHandle, int, int, int, int) + type: Method + source: + id: SetBounds + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IWindowComponent.cs + startLine: 197 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Set the bounds of the window. + example: [] + syntax: + content: void SetBounds(WindowHandle handle, int x, int y, int width, int height) + parameters: + - id: handle + type: OpenTK.Platform.WindowHandle + description: Handle to a window. + - id: x + type: System.Int32 + description: New X coordinate of the window. + - id: y + type: System.Int32 + description: New Y coordinate of the window. + - id: width + type: System.Int32 + description: New width of the window in pixels. + - id: height + type: System.Int32 + description: New height of the window in pixels. + content.vb: Sub SetBounds(handle As WindowHandle, x As Integer, y As Integer, width As Integer, height As Integer) + overload: OpenTK.Platform.IWindowComponent.SetBounds* + nameWithType.vb: IWindowComponent.SetBounds(WindowHandle, Integer, Integer, Integer, Integer) + fullName.vb: OpenTK.Platform.IWindowComponent.SetBounds(OpenTK.Platform.WindowHandle, Integer, Integer, Integer, Integer) + name.vb: SetBounds(WindowHandle, Integer, Integer, Integer, Integer) +- uid: OpenTK.Platform.IWindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + commentId: M:OpenTK.Platform.IWindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + id: GetClientPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + parent: OpenTK.Platform.IWindowComponent + langs: + - csharp + - vb + name: GetClientPosition(WindowHandle, out int, out int) + nameWithType: IWindowComponent.GetClientPosition(WindowHandle, out int, out int) + fullName: OpenTK.Platform.IWindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle, out int, out int) + type: Method + source: + id: GetClientPosition + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IWindowComponent.cs + startLine: 206 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Get the position of the client area (drawing area) of a window. + example: [] + syntax: + content: void GetClientPosition(WindowHandle handle, out int x, out int y) + parameters: + - id: handle + type: OpenTK.Platform.WindowHandle + description: Handle to a window. + - id: x + type: System.Int32 + description: X coordinate of the client area. + - id: y + type: System.Int32 + description: Y coordinate of the client area. + content.vb: Sub GetClientPosition(handle As WindowHandle, x As Integer, y As Integer) + overload: OpenTK.Platform.IWindowComponent.GetClientPosition* + exceptions: + - type: System.ArgumentNullException + commentId: T:System.ArgumentNullException + description: handle is null. + nameWithType.vb: IWindowComponent.GetClientPosition(WindowHandle, Integer, Integer) + fullName.vb: OpenTK.Platform.IWindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle, Integer, Integer) + name.vb: GetClientPosition(WindowHandle, Integer, Integer) +- uid: OpenTK.Platform.IWindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) + commentId: M:OpenTK.Platform.IWindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) + id: SetClientPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) + parent: OpenTK.Platform.IWindowComponent + langs: + - csharp + - vb + name: SetClientPosition(WindowHandle, int, int) + nameWithType: IWindowComponent.SetClientPosition(WindowHandle, int, int) + fullName: OpenTK.Platform.IWindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle, int, int) + type: Method + source: + id: SetClientPosition + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IWindowComponent.cs + startLine: 215 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Set the position of the client area (drawing area) of a window. + example: [] + syntax: + content: void SetClientPosition(WindowHandle handle, int x, int y) + parameters: + - id: handle + type: OpenTK.Platform.WindowHandle + description: Handle to a window. + - id: x + type: System.Int32 + description: New X coordinate of the client area. + - id: y + type: System.Int32 + description: New Y coordinate of the client area. + content.vb: Sub SetClientPosition(handle As WindowHandle, x As Integer, y As Integer) + overload: OpenTK.Platform.IWindowComponent.SetClientPosition* + exceptions: + - type: System.ArgumentNullException + commentId: T:System.ArgumentNullException + description: handle is null. + nameWithType.vb: IWindowComponent.SetClientPosition(WindowHandle, Integer, Integer) + fullName.vb: OpenTK.Platform.IWindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle, Integer, Integer) + name.vb: SetClientPosition(WindowHandle, Integer, Integer) +- uid: OpenTK.Platform.IWindowComponent.GetClientSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + commentId: M:OpenTK.Platform.IWindowComponent.GetClientSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + id: GetClientSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + parent: OpenTK.Platform.IWindowComponent + langs: + - csharp + - vb + name: GetClientSize(WindowHandle, out int, out int) + nameWithType: IWindowComponent.GetClientSize(WindowHandle, out int, out int) + fullName: OpenTK.Platform.IWindowComponent.GetClientSize(OpenTK.Platform.WindowHandle, out int, out int) + type: Method + source: + id: GetClientSize + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IWindowComponent.cs + startLine: 224 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Get the size of the client area (drawing area) of a window. + example: [] + syntax: + content: void GetClientSize(WindowHandle handle, out int width, out int height) + parameters: + - id: handle + type: OpenTK.Platform.WindowHandle + description: Handle to a window. + - id: width + type: System.Int32 + description: Width of the client area in pixels. + - id: height + type: System.Int32 + description: Height of the client area in pixels. + content.vb: Sub GetClientSize(handle As WindowHandle, width As Integer, height As Integer) + overload: OpenTK.Platform.IWindowComponent.GetClientSize* + exceptions: + - type: System.ArgumentNullException + commentId: T:System.ArgumentNullException + description: handle is null. + nameWithType.vb: IWindowComponent.GetClientSize(WindowHandle, Integer, Integer) + fullName.vb: OpenTK.Platform.IWindowComponent.GetClientSize(OpenTK.Platform.WindowHandle, Integer, Integer) + name.vb: GetClientSize(WindowHandle, Integer, Integer) +- uid: OpenTK.Platform.IWindowComponent.SetClientSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) + commentId: M:OpenTK.Platform.IWindowComponent.SetClientSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) + id: SetClientSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) + parent: OpenTK.Platform.IWindowComponent + langs: + - csharp + - vb + name: SetClientSize(WindowHandle, int, int) + nameWithType: IWindowComponent.SetClientSize(WindowHandle, int, int) + fullName: OpenTK.Platform.IWindowComponent.SetClientSize(OpenTK.Platform.WindowHandle, int, int) + type: Method + source: + id: SetClientSize + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IWindowComponent.cs + startLine: 233 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Set the size of the client area (drawing area) of a window. + example: [] + syntax: + content: void SetClientSize(WindowHandle handle, int width, int height) + parameters: + - id: handle + type: OpenTK.Platform.WindowHandle + description: Handle to a window. + - id: width + type: System.Int32 + description: New width of the client area in pixels. + - id: height + type: System.Int32 + description: New height of the client area in pixels. + content.vb: Sub SetClientSize(handle As WindowHandle, width As Integer, height As Integer) + overload: OpenTK.Platform.IWindowComponent.SetClientSize* + exceptions: + - type: System.ArgumentNullException + commentId: T:System.ArgumentNullException + description: handle is null. + nameWithType.vb: IWindowComponent.SetClientSize(WindowHandle, Integer, Integer) + fullName.vb: OpenTK.Platform.IWindowComponent.SetClientSize(OpenTK.Platform.WindowHandle, Integer, Integer) + name.vb: SetClientSize(WindowHandle, Integer, Integer) +- uid: OpenTK.Platform.IWindowComponent.GetClientBounds(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) + commentId: M:OpenTK.Platform.IWindowComponent.GetClientBounds(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) + id: GetClientBounds(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) + parent: OpenTK.Platform.IWindowComponent + langs: + - csharp + - vb + name: GetClientBounds(WindowHandle, out int, out int, out int, out int) + nameWithType: IWindowComponent.GetClientBounds(WindowHandle, out int, out int, out int, out int) + fullName: OpenTK.Platform.IWindowComponent.GetClientBounds(OpenTK.Platform.WindowHandle, out int, out int, out int, out int) + type: Method + source: + id: GetClientBounds + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IWindowComponent.cs + startLine: 243 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Get the client area bounds (drawing area) of a window. + example: [] + syntax: + content: void GetClientBounds(WindowHandle handle, out int x, out int y, out int width, out int height) + parameters: + - id: handle + type: OpenTK.Platform.WindowHandle + description: Handle to a window. + - id: x + type: System.Int32 + description: X coordinate of the client area. + - id: y + type: System.Int32 + description: Y coordinate of the client area. + - id: width + type: System.Int32 + description: Width of the client area in pixels. + - id: height + type: System.Int32 + description: Height of the client area in pixels. + content.vb: Sub GetClientBounds(handle As WindowHandle, x As Integer, y As Integer, width As Integer, height As Integer) + overload: OpenTK.Platform.IWindowComponent.GetClientBounds* + nameWithType.vb: IWindowComponent.GetClientBounds(WindowHandle, Integer, Integer, Integer, Integer) + fullName.vb: OpenTK.Platform.IWindowComponent.GetClientBounds(OpenTK.Platform.WindowHandle, Integer, Integer, Integer, Integer) + name.vb: GetClientBounds(WindowHandle, Integer, Integer, Integer, Integer) +- uid: OpenTK.Platform.IWindowComponent.SetClientBounds(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) + commentId: M:OpenTK.Platform.IWindowComponent.SetClientBounds(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) + id: SetClientBounds(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) + parent: OpenTK.Platform.IWindowComponent + langs: + - csharp + - vb + name: SetClientBounds(WindowHandle, int, int, int, int) + nameWithType: IWindowComponent.SetClientBounds(WindowHandle, int, int, int, int) + fullName: OpenTK.Platform.IWindowComponent.SetClientBounds(OpenTK.Platform.WindowHandle, int, int, int, int) + type: Method + source: + id: SetClientBounds + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IWindowComponent.cs + startLine: 253 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Set the client area bounds (drawing area) of a window. + example: [] + syntax: + content: void SetClientBounds(WindowHandle handle, int x, int y, int width, int height) + parameters: + - id: handle + type: OpenTK.Platform.WindowHandle + description: Handle to a window. + - id: x + type: System.Int32 + description: New X coordinate of the client area. + - id: y + type: System.Int32 + description: New Y coordinate of the client area. + - id: width + type: System.Int32 + description: New width of the client area in pixels. + - id: height + type: System.Int32 + description: New height of the client area in pixels. + content.vb: Sub SetClientBounds(handle As WindowHandle, x As Integer, y As Integer, width As Integer, height As Integer) + overload: OpenTK.Platform.IWindowComponent.SetClientBounds* + nameWithType.vb: IWindowComponent.SetClientBounds(WindowHandle, Integer, Integer, Integer, Integer) + fullName.vb: OpenTK.Platform.IWindowComponent.SetClientBounds(OpenTK.Platform.WindowHandle, Integer, Integer, Integer, Integer) + name.vb: SetClientBounds(WindowHandle, Integer, Integer, Integer, Integer) +- uid: OpenTK.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + commentId: M:OpenTK.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + id: GetFramebufferSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + parent: OpenTK.Platform.IWindowComponent + langs: + - csharp + - vb + name: GetFramebufferSize(WindowHandle, out int, out int) + nameWithType: IWindowComponent.GetFramebufferSize(WindowHandle, out int, out int) + fullName: OpenTK.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle, out int, out int) + type: Method + source: + id: GetFramebufferSize + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IWindowComponent.cs + startLine: 262 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: >- + Get the size of the window framebuffer in pixels. + + Use this value when calls to graphics APIs that want pixels, e.g. GL.Viewport(). + example: [] + syntax: + content: void GetFramebufferSize(WindowHandle handle, out int width, out int height) + parameters: + - id: handle + type: OpenTK.Platform.WindowHandle + description: Handle to a window. + - id: width + type: System.Int32 + description: Width in pixels of the window framebuffer. + - id: height + type: System.Int32 + description: Height in pixels of the window framebuffer. + content.vb: Sub GetFramebufferSize(handle As WindowHandle, width As Integer, height As Integer) + overload: OpenTK.Platform.IWindowComponent.GetFramebufferSize* + nameWithType.vb: IWindowComponent.GetFramebufferSize(WindowHandle, Integer, Integer) + fullName.vb: OpenTK.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle, Integer, Integer) + name.vb: GetFramebufferSize(WindowHandle, Integer, Integer) +- uid: OpenTK.Platform.IWindowComponent.GetMaxClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) + commentId: M:OpenTK.Platform.IWindowComponent.GetMaxClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) + id: GetMaxClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) + parent: OpenTK.Platform.IWindowComponent + langs: + - csharp + - vb + name: GetMaxClientSize(WindowHandle, out int?, out int?) + nameWithType: IWindowComponent.GetMaxClientSize(WindowHandle, out int?, out int?) + fullName: OpenTK.Platform.IWindowComponent.GetMaxClientSize(OpenTK.Platform.WindowHandle, out int?, out int?) + type: Method + source: + id: GetMaxClientSize + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IWindowComponent.cs + startLine: 270 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Gets the maximum size of the client area. + example: [] + syntax: + content: void GetMaxClientSize(WindowHandle handle, out int? width, out int? height) + parameters: + - id: handle + type: OpenTK.Platform.WindowHandle + description: Handle to a window. + - id: width + type: System.Nullable{System.Int32} + description: The maximum width of the client area of the window, or null if no limit is set. + - id: height + type: System.Nullable{System.Int32} + description: The maximum height of the client area of the window, or null if no limit is set. + content.vb: Sub GetMaxClientSize(handle As WindowHandle, width As Integer?, height As Integer?) + overload: OpenTK.Platform.IWindowComponent.GetMaxClientSize* + nameWithType.vb: IWindowComponent.GetMaxClientSize(WindowHandle, Integer?, Integer?) + fullName.vb: OpenTK.Platform.IWindowComponent.GetMaxClientSize(OpenTK.Platform.WindowHandle, Integer?, Integer?) + name.vb: GetMaxClientSize(WindowHandle, Integer?, Integer?) +- uid: OpenTK.Platform.IWindowComponent.SetMaxClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) + commentId: M:OpenTK.Platform.IWindowComponent.SetMaxClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) + id: SetMaxClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) + parent: OpenTK.Platform.IWindowComponent + langs: + - csharp + - vb + name: SetMaxClientSize(WindowHandle, int?, int?) + nameWithType: IWindowComponent.SetMaxClientSize(WindowHandle, int?, int?) + fullName: OpenTK.Platform.IWindowComponent.SetMaxClientSize(OpenTK.Platform.WindowHandle, int?, int?) + type: Method + source: + id: SetMaxClientSize + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IWindowComponent.cs + startLine: 278 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Sets the maximum size of the client area. + example: [] + syntax: + content: void SetMaxClientSize(WindowHandle handle, int? width, int? height) + parameters: + - id: handle + type: OpenTK.Platform.WindowHandle + description: Handle to a window. + - id: width + type: System.Nullable{System.Int32} + description: New maximum width of the client area of the window, or null to remove limit. + - id: height + type: System.Nullable{System.Int32} + description: New maximum height of the client area of the window, or null to remove limit. + content.vb: Sub SetMaxClientSize(handle As WindowHandle, width As Integer?, height As Integer?) + overload: OpenTK.Platform.IWindowComponent.SetMaxClientSize* + nameWithType.vb: IWindowComponent.SetMaxClientSize(WindowHandle, Integer?, Integer?) + fullName.vb: OpenTK.Platform.IWindowComponent.SetMaxClientSize(OpenTK.Platform.WindowHandle, Integer?, Integer?) + name.vb: SetMaxClientSize(WindowHandle, Integer?, Integer?) +- uid: OpenTK.Platform.IWindowComponent.GetMinClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) + commentId: M:OpenTK.Platform.IWindowComponent.GetMinClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) + id: GetMinClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) + parent: OpenTK.Platform.IWindowComponent + langs: + - csharp + - vb + name: GetMinClientSize(WindowHandle, out int?, out int?) + nameWithType: IWindowComponent.GetMinClientSize(WindowHandle, out int?, out int?) + fullName: OpenTK.Platform.IWindowComponent.GetMinClientSize(OpenTK.Platform.WindowHandle, out int?, out int?) + type: Method + source: + id: GetMinClientSize + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IWindowComponent.cs + startLine: 286 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Gets the minimum size of the client area. + example: [] + syntax: + content: void GetMinClientSize(WindowHandle handle, out int? width, out int? height) + parameters: + - id: handle + type: OpenTK.Platform.WindowHandle + description: Handle to a window. + - id: width + type: System.Nullable{System.Int32} + description: The minimum width of the client area of the window, or null if no limit is set. + - id: height + type: System.Nullable{System.Int32} + description: The minimum height of the client area of the window, or null if no limit is set. + content.vb: Sub GetMinClientSize(handle As WindowHandle, width As Integer?, height As Integer?) + overload: OpenTK.Platform.IWindowComponent.GetMinClientSize* + nameWithType.vb: IWindowComponent.GetMinClientSize(WindowHandle, Integer?, Integer?) + fullName.vb: OpenTK.Platform.IWindowComponent.GetMinClientSize(OpenTK.Platform.WindowHandle, Integer?, Integer?) + name.vb: GetMinClientSize(WindowHandle, Integer?, Integer?) +- uid: OpenTK.Platform.IWindowComponent.SetMinClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) + commentId: M:OpenTK.Platform.IWindowComponent.SetMinClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) + id: SetMinClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) + parent: OpenTK.Platform.IWindowComponent + langs: + - csharp + - vb + name: SetMinClientSize(WindowHandle, int?, int?) + nameWithType: IWindowComponent.SetMinClientSize(WindowHandle, int?, int?) + fullName: OpenTK.Platform.IWindowComponent.SetMinClientSize(OpenTK.Platform.WindowHandle, int?, int?) + type: Method + source: + id: SetMinClientSize + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IWindowComponent.cs + startLine: 294 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Sets the minimum size of the client area. + example: [] + syntax: + content: void SetMinClientSize(WindowHandle handle, int? width, int? height) + parameters: + - id: handle + type: OpenTK.Platform.WindowHandle + description: Handle to a window. + - id: width + type: System.Nullable{System.Int32} + description: New minimum width of the client area of the window, or null to remove limit. + - id: height + type: System.Nullable{System.Int32} + description: New minimum height of the client area of the window, or null to remove limit. + content.vb: Sub SetMinClientSize(handle As WindowHandle, width As Integer?, height As Integer?) + overload: OpenTK.Platform.IWindowComponent.SetMinClientSize* + nameWithType.vb: IWindowComponent.SetMinClientSize(WindowHandle, Integer?, Integer?) + fullName.vb: OpenTK.Platform.IWindowComponent.SetMinClientSize(OpenTK.Platform.WindowHandle, Integer?, Integer?) + name.vb: SetMinClientSize(WindowHandle, Integer?, Integer?) +- uid: OpenTK.Platform.IWindowComponent.GetDisplay(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.GetDisplay(OpenTK.Platform.WindowHandle) + id: GetDisplay(OpenTK.Platform.WindowHandle) + parent: OpenTK.Platform.IWindowComponent + langs: + - csharp + - vb + name: GetDisplay(WindowHandle) + nameWithType: IWindowComponent.GetDisplay(WindowHandle) + fullName: OpenTK.Platform.IWindowComponent.GetDisplay(OpenTK.Platform.WindowHandle) + type: Method + source: + id: GetDisplay + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IWindowComponent.cs + startLine: 304 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Get the display handle a window is in. + example: [] + syntax: + content: DisplayHandle GetDisplay(WindowHandle handle) + parameters: + - id: handle + type: OpenTK.Platform.WindowHandle + description: Handle to a window. + return: + type: OpenTK.Platform.DisplayHandle + description: The display handle the window is in. + content.vb: Function GetDisplay(handle As WindowHandle) As DisplayHandle + overload: OpenTK.Platform.IWindowComponent.GetDisplay* + exceptions: + - type: System.ArgumentNullException + commentId: T:System.ArgumentNullException + description: handle is null. + - type: OpenTK.Platform.PalNotImplementedException + commentId: T:OpenTK.Platform.PalNotImplementedException + description: Backend does not support finding the window display. . + seealso: + - linkId: OpenTK.Platform.IWindowComponent.CanGetDisplay + commentId: P:OpenTK.Platform.IWindowComponent.CanGetDisplay +- uid: OpenTK.Platform.IWindowComponent.GetMode(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.GetMode(OpenTK.Platform.WindowHandle) + id: GetMode(OpenTK.Platform.WindowHandle) + parent: OpenTK.Platform.IWindowComponent + langs: + - csharp + - vb + name: GetMode(WindowHandle) + nameWithType: IWindowComponent.GetMode(WindowHandle) + fullName: OpenTK.Platform.IWindowComponent.GetMode(OpenTK.Platform.WindowHandle) + type: Method + source: + id: GetMode + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IWindowComponent.cs + startLine: 312 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Get the mode of a window. + example: [] + syntax: + content: WindowMode GetMode(WindowHandle handle) + parameters: + - id: handle + type: OpenTK.Platform.WindowHandle + description: Handle to a window. + return: + type: OpenTK.Platform.WindowMode + description: The mode of the window. + content.vb: Function GetMode(handle As WindowHandle) As WindowMode + overload: OpenTK.Platform.IWindowComponent.GetMode* + exceptions: + - type: System.ArgumentNullException + commentId: T:System.ArgumentNullException + description: handle is null. +- uid: OpenTK.Platform.IWindowComponent.SetMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowMode) + commentId: M:OpenTK.Platform.IWindowComponent.SetMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowMode) + id: SetMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowMode) + parent: OpenTK.Platform.IWindowComponent + langs: + - csharp + - vb + name: SetMode(WindowHandle, WindowMode) + nameWithType: IWindowComponent.SetMode(WindowHandle, WindowMode) + fullName: OpenTK.Platform.IWindowComponent.SetMode(OpenTK.Platform.WindowHandle, OpenTK.Platform.WindowMode) + type: Method + source: + id: SetMode + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IWindowComponent.cs + startLine: 330 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Set the mode of a window. + remarks: >- + Setting or + + will make the window fullscreen in the nearest monitor to the window location. + + Use or + + to explicitly set the monitor. + example: [] + syntax: + content: void SetMode(WindowHandle handle, WindowMode mode) + parameters: + - id: handle + type: OpenTK.Platform.WindowHandle + description: Handle to a window. + - id: mode + type: OpenTK.Platform.WindowMode + description: The new mode of the window. + content.vb: Sub SetMode(handle As WindowHandle, mode As WindowMode) + overload: OpenTK.Platform.IWindowComponent.SetMode* + exceptions: + - type: System.ArgumentNullException + commentId: T:System.ArgumentNullException + description: handle is null. + - type: System.ArgumentOutOfRangeException + commentId: T:System.ArgumentOutOfRangeException + description: mode is an invalid value. + - type: OpenTK.Platform.PalNotImplementedException + commentId: T:OpenTK.Platform.PalNotImplementedException + description: Driver does not support the value set by mode. See . +- uid: OpenTK.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle) + commentId: M:OpenTK.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle) + id: SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle) + parent: OpenTK.Platform.IWindowComponent + langs: + - csharp + - vb + name: SetFullscreenDisplay(WindowHandle, DisplayHandle?) + nameWithType: IWindowComponent.SetFullscreenDisplay(WindowHandle, DisplayHandle?) + fullName: OpenTK.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle, OpenTK.Platform.DisplayHandle?) + type: Method + source: + id: SetFullscreenDisplay + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IWindowComponent.cs + startLine: 341 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: >- + Put a window into 'windowed fullscreen' on a specified display or the display the window is displayed on. + + If display is null then the window will be made fullscreen on the 'nearest' display. + remarks: To make an 'exclusive fullscreen' window see . + example: [] + syntax: + content: void SetFullscreenDisplay(WindowHandle handle, DisplayHandle? display) + parameters: + - id: handle + type: OpenTK.Platform.WindowHandle + description: The window to make fullscreen. + - id: display + type: OpenTK.Platform.DisplayHandle + description: The display to make the window fullscreen on. + content.vb: Sub SetFullscreenDisplay(handle As WindowHandle, display As DisplayHandle) + overload: OpenTK.Platform.IWindowComponent.SetFullscreenDisplay* + nameWithType.vb: IWindowComponent.SetFullscreenDisplay(WindowHandle, DisplayHandle) + fullName.vb: OpenTK.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle, OpenTK.Platform.DisplayHandle) + name.vb: SetFullscreenDisplay(WindowHandle, DisplayHandle) +- uid: OpenTK.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle,OpenTK.Platform.VideoMode) + commentId: M:OpenTK.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle,OpenTK.Platform.VideoMode) + id: SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle,OpenTK.Platform.VideoMode) + parent: OpenTK.Platform.IWindowComponent + langs: + - csharp + - vb + name: SetFullscreenDisplay(WindowHandle, DisplayHandle, VideoMode) + nameWithType: IWindowComponent.SetFullscreenDisplay(WindowHandle, DisplayHandle, VideoMode) + fullName: OpenTK.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle, OpenTK.Platform.DisplayHandle, OpenTK.Platform.VideoMode) + type: Method + source: + id: SetFullscreenDisplay + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IWindowComponent.cs + startLine: 354 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: >- + Put a window into 'exclusive fullscreen' on a specified display and change the video mode to the specified video mode. + + Only video modes accuired using + + are expected to work. + remarks: To make an 'windowed fullscreen' window see . + example: [] + syntax: + content: void SetFullscreenDisplay(WindowHandle handle, DisplayHandle display, VideoMode videoMode) + parameters: + - id: handle + type: OpenTK.Platform.WindowHandle + description: The window to make fullscreen. + - id: display + type: OpenTK.Platform.DisplayHandle + description: The display to make the window fullscreen on. + - id: videoMode + type: OpenTK.Platform.VideoMode + description: The video mode to use when making the window fullscreen. + content.vb: Sub SetFullscreenDisplay(handle As WindowHandle, display As DisplayHandle, videoMode As VideoMode) + overload: OpenTK.Platform.IWindowComponent.SetFullscreenDisplay* +- uid: OpenTK.Platform.IWindowComponent.GetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle@) + commentId: M:OpenTK.Platform.IWindowComponent.GetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle@) + id: GetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle@) + parent: OpenTK.Platform.IWindowComponent + langs: + - csharp + - vb + name: GetFullscreenDisplay(WindowHandle, out DisplayHandle?) + nameWithType: IWindowComponent.GetFullscreenDisplay(WindowHandle, out DisplayHandle?) + fullName: OpenTK.Platform.IWindowComponent.GetFullscreenDisplay(OpenTK.Platform.WindowHandle, out OpenTK.Platform.DisplayHandle?) + type: Method + source: + id: GetFullscreenDisplay + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IWindowComponent.cs + startLine: 362 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Gets the display that the specified window is fullscreen on, if the window is fullscreen. + example: [] + syntax: + content: bool GetFullscreenDisplay(WindowHandle handle, out DisplayHandle? display) + parameters: + - id: handle + type: OpenTK.Platform.WindowHandle + description: The window handle. + - id: display + type: OpenTK.Platform.DisplayHandle + description: The display where the window is fullscreen or null if the window is not fullscreen. + return: + type: System.Boolean + description: true if the window was fullscreen, false otherwise. + content.vb: Function GetFullscreenDisplay(handle As WindowHandle, display As DisplayHandle) As Boolean + overload: OpenTK.Platform.IWindowComponent.GetFullscreenDisplay* + nameWithType.vb: IWindowComponent.GetFullscreenDisplay(WindowHandle, DisplayHandle) + fullName.vb: OpenTK.Platform.IWindowComponent.GetFullscreenDisplay(OpenTK.Platform.WindowHandle, OpenTK.Platform.DisplayHandle) + name.vb: GetFullscreenDisplay(WindowHandle, DisplayHandle) +- uid: OpenTK.Platform.IWindowComponent.GetBorderStyle(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.GetBorderStyle(OpenTK.Platform.WindowHandle) + id: GetBorderStyle(OpenTK.Platform.WindowHandle) + parent: OpenTK.Platform.IWindowComponent + langs: + - csharp + - vb + name: GetBorderStyle(WindowHandle) + nameWithType: IWindowComponent.GetBorderStyle(WindowHandle) + fullName: OpenTK.Platform.IWindowComponent.GetBorderStyle(OpenTK.Platform.WindowHandle) + type: Method + source: + id: GetBorderStyle + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IWindowComponent.cs + startLine: 370 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Get the border style of a window. + example: [] + syntax: + content: WindowBorderStyle GetBorderStyle(WindowHandle handle) + parameters: + - id: handle + type: OpenTK.Platform.WindowHandle + description: Handle to window. + return: + type: OpenTK.Platform.WindowBorderStyle + description: The border style of the window. + content.vb: Function GetBorderStyle(handle As WindowHandle) As WindowBorderStyle + overload: OpenTK.Platform.IWindowComponent.GetBorderStyle* + exceptions: + - type: System.ArgumentNullException + commentId: T:System.ArgumentNullException + description: handle is null. +- uid: OpenTK.Platform.IWindowComponent.SetBorderStyle(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowBorderStyle) + commentId: M:OpenTK.Platform.IWindowComponent.SetBorderStyle(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowBorderStyle) + id: SetBorderStyle(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowBorderStyle) + parent: OpenTK.Platform.IWindowComponent + langs: + - csharp + - vb + name: SetBorderStyle(WindowHandle, WindowBorderStyle) + nameWithType: IWindowComponent.SetBorderStyle(WindowHandle, WindowBorderStyle) + fullName: OpenTK.Platform.IWindowComponent.SetBorderStyle(OpenTK.Platform.WindowHandle, OpenTK.Platform.WindowBorderStyle) + type: Method + source: + id: SetBorderStyle + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IWindowComponent.cs + startLine: 382 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Set the border style of a window. + example: [] + syntax: + content: void SetBorderStyle(WindowHandle handle, WindowBorderStyle style) + parameters: + - id: handle + type: OpenTK.Platform.WindowHandle + description: Handle to a window. + - id: style + type: OpenTK.Platform.WindowBorderStyle + description: The new border style of the window. + content.vb: Sub SetBorderStyle(handle As WindowHandle, style As WindowBorderStyle) + overload: OpenTK.Platform.IWindowComponent.SetBorderStyle* + exceptions: + - type: System.ArgumentNullException + commentId: T:System.ArgumentNullException + description: handle is null. + - type: System.ArgumentOutOfRangeException + commentId: T:System.ArgumentOutOfRangeException + description: style is an invalid value. + - type: OpenTK.Platform.PalNotImplementedException + commentId: T:OpenTK.Platform.PalNotImplementedException + description: Driver does not support the value set by style. See . +- uid: OpenTK.Platform.IWindowComponent.SetAlwaysOnTop(OpenTK.Platform.WindowHandle,System.Boolean) + commentId: M:OpenTK.Platform.IWindowComponent.SetAlwaysOnTop(OpenTK.Platform.WindowHandle,System.Boolean) + id: SetAlwaysOnTop(OpenTK.Platform.WindowHandle,System.Boolean) + parent: OpenTK.Platform.IWindowComponent + langs: + - csharp + - vb + name: SetAlwaysOnTop(WindowHandle, bool) + nameWithType: IWindowComponent.SetAlwaysOnTop(WindowHandle, bool) + fullName: OpenTK.Platform.IWindowComponent.SetAlwaysOnTop(OpenTK.Platform.WindowHandle, bool) + type: Method + source: + id: SetAlwaysOnTop + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IWindowComponent.cs + startLine: 389 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Set if the window is an always on top window or not. + example: [] + syntax: + content: void SetAlwaysOnTop(WindowHandle handle, bool floating) + parameters: + - id: handle + type: OpenTK.Platform.WindowHandle + description: A handle to the window to make always on top. + - id: floating + type: System.Boolean + description: Whether the window should be always on top or not. + content.vb: Sub SetAlwaysOnTop(handle As WindowHandle, floating As Boolean) + overload: OpenTK.Platform.IWindowComponent.SetAlwaysOnTop* + nameWithType.vb: IWindowComponent.SetAlwaysOnTop(WindowHandle, Boolean) + fullName.vb: OpenTK.Platform.IWindowComponent.SetAlwaysOnTop(OpenTK.Platform.WindowHandle, Boolean) + name.vb: SetAlwaysOnTop(WindowHandle, Boolean) +- uid: OpenTK.Platform.IWindowComponent.IsAlwaysOnTop(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.IsAlwaysOnTop(OpenTK.Platform.WindowHandle) + id: IsAlwaysOnTop(OpenTK.Platform.WindowHandle) + parent: OpenTK.Platform.IWindowComponent + langs: + - csharp + - vb + name: IsAlwaysOnTop(WindowHandle) + nameWithType: IWindowComponent.IsAlwaysOnTop(WindowHandle) + fullName: OpenTK.Platform.IWindowComponent.IsAlwaysOnTop(OpenTK.Platform.WindowHandle) + type: Method + source: + id: IsAlwaysOnTop + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IWindowComponent.cs + startLine: 396 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Gets if the current window is always on top or not. + example: [] + syntax: + content: bool IsAlwaysOnTop(WindowHandle handle) + parameters: + - id: handle + type: OpenTK.Platform.WindowHandle + description: A handle to the window to get whether or not is always on top. + return: + type: System.Boolean + description: Whether the window is always on top or not. + content.vb: Function IsAlwaysOnTop(handle As WindowHandle) As Boolean + overload: OpenTK.Platform.IWindowComponent.IsAlwaysOnTop* +- uid: OpenTK.Platform.IWindowComponent.SetHitTestCallback(OpenTK.Platform.WindowHandle,OpenTK.Platform.HitTest) + commentId: M:OpenTK.Platform.IWindowComponent.SetHitTestCallback(OpenTK.Platform.WindowHandle,OpenTK.Platform.HitTest) + id: SetHitTestCallback(OpenTK.Platform.WindowHandle,OpenTK.Platform.HitTest) + parent: OpenTK.Platform.IWindowComponent + langs: + - csharp + - vb + name: SetHitTestCallback(WindowHandle, HitTest?) + nameWithType: IWindowComponent.SetHitTestCallback(WindowHandle, HitTest?) + fullName: OpenTK.Platform.IWindowComponent.SetHitTestCallback(OpenTK.Platform.WindowHandle, OpenTK.Platform.HitTest?) + type: Method + source: + id: SetHitTestCallback + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IWindowComponent.cs + startLine: 408 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: >- + Sets a delegate that is used for hit testing. + + Hit testing allows the user to specify if a click should start a drag or resize operation on the window. + + + Hit testing is not always done in respone to the user clicking the mouse. + + The operating system can do hit testing for any reason and doesn't need to be in respose to some user action. + + It is recommended to keep this code efficient as it will be called often. + example: [] + syntax: + content: void SetHitTestCallback(WindowHandle handle, HitTest? test) + parameters: + - id: handle + type: OpenTK.Platform.WindowHandle + description: The window for which this hit test delegate should be used for. + - id: test + type: OpenTK.Platform.HitTest + description: The hit test delegate. + content.vb: Sub SetHitTestCallback(handle As WindowHandle, test As HitTest) + overload: OpenTK.Platform.IWindowComponent.SetHitTestCallback* + nameWithType.vb: IWindowComponent.SetHitTestCallback(WindowHandle, HitTest) + fullName.vb: OpenTK.Platform.IWindowComponent.SetHitTestCallback(OpenTK.Platform.WindowHandle, OpenTK.Platform.HitTest) + name.vb: SetHitTestCallback(WindowHandle, HitTest) +- uid: OpenTK.Platform.IWindowComponent.SetCursor(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorHandle) + commentId: M:OpenTK.Platform.IWindowComponent.SetCursor(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorHandle) + id: SetCursor(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorHandle) + parent: OpenTK.Platform.IWindowComponent + langs: + - csharp + - vb + name: SetCursor(WindowHandle, CursorHandle?) + nameWithType: IWindowComponent.SetCursor(WindowHandle, CursorHandle?) + fullName: OpenTK.Platform.IWindowComponent.SetCursor(OpenTK.Platform.WindowHandle, OpenTK.Platform.CursorHandle?) + type: Method + source: + id: SetCursor + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IWindowComponent.cs + startLine: 418 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Set the cursor object for a window. + example: [] + syntax: + content: void SetCursor(WindowHandle handle, CursorHandle? cursor) + parameters: + - id: handle + type: OpenTK.Platform.WindowHandle + description: Handle to a window. + - id: cursor + type: OpenTK.Platform.CursorHandle + description: Handle to a cursor object, or null for hidden cursor. + content.vb: Sub SetCursor(handle As WindowHandle, cursor As CursorHandle) + overload: OpenTK.Platform.IWindowComponent.SetCursor* + exceptions: + - type: System.ArgumentNullException + commentId: T:System.ArgumentNullException + description: handle is null. + - type: OpenTK.Platform.PalNotImplementedException + commentId: T:OpenTK.Platform.PalNotImplementedException + description: Backend does not support setting the window mouse cursor. See . + seealso: + - linkId: OpenTK.Platform.IWindowComponent.CanSetCursor + commentId: P:OpenTK.Platform.IWindowComponent.CanSetCursor + nameWithType.vb: IWindowComponent.SetCursor(WindowHandle, CursorHandle) + fullName.vb: OpenTK.Platform.IWindowComponent.SetCursor(OpenTK.Platform.WindowHandle, OpenTK.Platform.CursorHandle) + name.vb: SetCursor(WindowHandle, CursorHandle) +- uid: OpenTK.Platform.IWindowComponent.GetCursorCaptureMode(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.GetCursorCaptureMode(OpenTK.Platform.WindowHandle) + id: GetCursorCaptureMode(OpenTK.Platform.WindowHandle) + parent: OpenTK.Platform.IWindowComponent + langs: + - csharp + - vb + name: GetCursorCaptureMode(WindowHandle) + nameWithType: IWindowComponent.GetCursorCaptureMode(WindowHandle) + fullName: OpenTK.Platform.IWindowComponent.GetCursorCaptureMode(OpenTK.Platform.WindowHandle) + type: Method + source: + id: GetCursorCaptureMode + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IWindowComponent.cs + startLine: 425 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Gets the current cursor capture mode. See for more details. + example: [] + syntax: + content: CursorCaptureMode GetCursorCaptureMode(WindowHandle handle) + parameters: + - id: handle + type: OpenTK.Platform.WindowHandle + description: Handle to a window. + return: + type: OpenTK.Platform.CursorCaptureMode + description: The current cursor capture mode. + content.vb: Function GetCursorCaptureMode(handle As WindowHandle) As CursorCaptureMode + overload: OpenTK.Platform.IWindowComponent.GetCursorCaptureMode* +- uid: OpenTK.Platform.IWindowComponent.SetCursorCaptureMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorCaptureMode) + commentId: M:OpenTK.Platform.IWindowComponent.SetCursorCaptureMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorCaptureMode) + id: SetCursorCaptureMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorCaptureMode) + parent: OpenTK.Platform.IWindowComponent + langs: + - csharp + - vb + name: SetCursorCaptureMode(WindowHandle, CursorCaptureMode) + nameWithType: IWindowComponent.SetCursorCaptureMode(WindowHandle, CursorCaptureMode) + fullName: OpenTK.Platform.IWindowComponent.SetCursorCaptureMode(OpenTK.Platform.WindowHandle, OpenTK.Platform.CursorCaptureMode) + type: Method + source: + id: SetCursorCaptureMode + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IWindowComponent.cs + startLine: 434 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: >- + Sets the cursor capture mode of the window. + + A cursor can be confined to the bounds of the window, or locked to the center of the window. + example: [] + syntax: + content: void SetCursorCaptureMode(WindowHandle handle, CursorCaptureMode mode) + parameters: + - id: handle + type: OpenTK.Platform.WindowHandle + description: Handle to a window. + - id: mode + type: OpenTK.Platform.CursorCaptureMode + description: The cursor capture mode. + content.vb: Sub SetCursorCaptureMode(handle As WindowHandle, mode As CursorCaptureMode) + overload: OpenTK.Platform.IWindowComponent.SetCursorCaptureMode* + seealso: + - linkId: OpenTK.Platform.IWindowComponent.CanCaptureCursor + commentId: P:OpenTK.Platform.IWindowComponent.CanCaptureCursor +- uid: OpenTK.Platform.IWindowComponent.IsFocused(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.IsFocused(OpenTK.Platform.WindowHandle) + id: IsFocused(OpenTK.Platform.WindowHandle) + parent: OpenTK.Platform.IWindowComponent + langs: + - csharp + - vb + name: IsFocused(WindowHandle) + nameWithType: IWindowComponent.IsFocused(WindowHandle) + fullName: OpenTK.Platform.IWindowComponent.IsFocused(OpenTK.Platform.WindowHandle) + type: Method + source: + id: IsFocused + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IWindowComponent.cs + startLine: 441 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Returns true if the given window has input focus. + example: [] + syntax: + content: bool IsFocused(WindowHandle handle) + parameters: + - id: handle + type: OpenTK.Platform.WindowHandle + description: Handle to a window. + return: + type: System.Boolean + description: If the window has input focus. + content.vb: Function IsFocused(handle As WindowHandle) As Boolean + overload: OpenTK.Platform.IWindowComponent.IsFocused* +- uid: OpenTK.Platform.IWindowComponent.FocusWindow(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.FocusWindow(OpenTK.Platform.WindowHandle) + id: FocusWindow(OpenTK.Platform.WindowHandle) + parent: OpenTK.Platform.IWindowComponent + langs: + - csharp + - vb + name: FocusWindow(WindowHandle) + nameWithType: IWindowComponent.FocusWindow(WindowHandle) + fullName: OpenTK.Platform.IWindowComponent.FocusWindow(OpenTK.Platform.WindowHandle) + type: Method + source: + id: FocusWindow + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IWindowComponent.cs + startLine: 447 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Gives the window input focus. + example: [] + syntax: + content: void FocusWindow(WindowHandle handle) + parameters: + - id: handle + type: OpenTK.Platform.WindowHandle + description: Handle to the window to focus. + content.vb: Sub FocusWindow(handle As WindowHandle) + overload: OpenTK.Platform.IWindowComponent.FocusWindow* +- uid: OpenTK.Platform.IWindowComponent.RequestAttention(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.RequestAttention(OpenTK.Platform.WindowHandle) + id: RequestAttention(OpenTK.Platform.WindowHandle) + parent: OpenTK.Platform.IWindowComponent + langs: + - csharp + - vb + name: RequestAttention(WindowHandle) + nameWithType: IWindowComponent.RequestAttention(WindowHandle) + fullName: OpenTK.Platform.IWindowComponent.RequestAttention(OpenTK.Platform.WindowHandle) + type: Method + source: + id: RequestAttention + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IWindowComponent.cs + startLine: 453 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Requests that the user pay attention to the window. + example: [] + syntax: + content: void RequestAttention(WindowHandle handle) + parameters: + - id: handle + type: OpenTK.Platform.WindowHandle + description: A handle to the window that requests attention. + content.vb: Sub RequestAttention(handle As WindowHandle) + overload: OpenTK.Platform.IWindowComponent.RequestAttention* +- uid: OpenTK.Platform.IWindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) + commentId: M:OpenTK.Platform.IWindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) + id: ScreenToClient(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) + parent: OpenTK.Platform.IWindowComponent + langs: + - csharp + - vb + name: ScreenToClient(WindowHandle, int, int, out int, out int) + nameWithType: IWindowComponent.ScreenToClient(WindowHandle, int, int, out int, out int) + fullName: OpenTK.Platform.IWindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle, int, int, out int, out int) + type: Method + source: + id: ScreenToClient + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IWindowComponent.cs + startLine: 464 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Converts screen coordinates to window relative coordinates. + example: [] + syntax: + content: void ScreenToClient(WindowHandle handle, int x, int y, out int clientX, out int clientY) + parameters: + - id: handle + type: OpenTK.Platform.WindowHandle + description: The window handle. + - id: x + type: System.Int32 + description: The screen x coordinate. + - id: y + type: System.Int32 + description: The screen y coordinate. + - id: clientX + type: System.Int32 + description: The client x coordinate. + - id: clientY + type: System.Int32 + description: The client y coordinate. + content.vb: Sub ScreenToClient(handle As WindowHandle, x As Integer, y As Integer, clientX As Integer, clientY As Integer) + overload: OpenTK.Platform.IWindowComponent.ScreenToClient* + nameWithType.vb: IWindowComponent.ScreenToClient(WindowHandle, Integer, Integer, Integer, Integer) + fullName.vb: OpenTK.Platform.IWindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle, Integer, Integer, Integer, Integer) + name.vb: ScreenToClient(WindowHandle, Integer, Integer, Integer, Integer) +- uid: OpenTK.Platform.IWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) + commentId: M:OpenTK.Platform.IWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) + id: ClientToScreen(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) + parent: OpenTK.Platform.IWindowComponent + langs: + - csharp + - vb + name: ClientToScreen(WindowHandle, int, int, out int, out int) + nameWithType: IWindowComponent.ClientToScreen(WindowHandle, int, int, out int, out int) + fullName: OpenTK.Platform.IWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle, int, int, out int, out int) + type: Method + source: + id: ClientToScreen + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IWindowComponent.cs + startLine: 475 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Converts window relative coordinates to screen coordinates. + example: [] + syntax: + content: void ClientToScreen(WindowHandle handle, int clientX, int clientY, out int x, out int y) + parameters: + - id: handle + type: OpenTK.Platform.WindowHandle + description: The window handle. + - id: clientX + type: System.Int32 + description: The client x coordinate. + - id: clientY + type: System.Int32 + description: The client y coordinate. + - id: x + type: System.Int32 + description: The screen x coordinate. + - id: y + type: System.Int32 + description: The screen y coordinate. + content.vb: Sub ClientToScreen(handle As WindowHandle, clientX As Integer, clientY As Integer, x As Integer, y As Integer) + overload: OpenTK.Platform.IWindowComponent.ClientToScreen* + nameWithType.vb: IWindowComponent.ClientToScreen(WindowHandle, Integer, Integer, Integer, Integer) + fullName.vb: OpenTK.Platform.IWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle, Integer, Integer, Integer, Integer) + name.vb: ClientToScreen(WindowHandle, Integer, Integer, Integer, Integer) +- uid: OpenTK.Platform.IWindowComponent.GetScaleFactor(OpenTK.Platform.WindowHandle,System.Single@,System.Single@) + commentId: M:OpenTK.Platform.IWindowComponent.GetScaleFactor(OpenTK.Platform.WindowHandle,System.Single@,System.Single@) + id: GetScaleFactor(OpenTK.Platform.WindowHandle,System.Single@,System.Single@) + parent: OpenTK.Platform.IWindowComponent + langs: + - csharp + - vb + name: GetScaleFactor(WindowHandle, out float, out float) + nameWithType: IWindowComponent.GetScaleFactor(WindowHandle, out float, out float) + fullName: OpenTK.Platform.IWindowComponent.GetScaleFactor(OpenTK.Platform.WindowHandle, out float, out float) + type: Method + source: + id: GetScaleFactor + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IWindowComponent.cs + startLine: 484 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Returns the current scale factor of this window. + example: [] + syntax: + content: void GetScaleFactor(WindowHandle handle, out float scaleX, out float scaleY) + parameters: + - id: handle + type: OpenTK.Platform.WindowHandle + description: The window handle. + - id: scaleX + type: System.Single + description: The x scale factor of the window. + - id: scaleY + type: System.Single + description: The y scale factor of the window. + content.vb: Sub GetScaleFactor(handle As WindowHandle, scaleX As Single, scaleY As Single) + overload: OpenTK.Platform.IWindowComponent.GetScaleFactor* + seealso: + - linkId: OpenTK.Platform.WindowScaleChangeEventArgs + commentId: T:OpenTK.Platform.WindowScaleChangeEventArgs + nameWithType.vb: IWindowComponent.GetScaleFactor(WindowHandle, Single, Single) + fullName.vb: OpenTK.Platform.IWindowComponent.GetScaleFactor(OpenTK.Platform.WindowHandle, Single, Single) + name.vb: GetScaleFactor(WindowHandle, Single, Single) +references: +- uid: OpenTK.Platform + commentId: N:OpenTK.Platform + href: OpenTK.html + name: OpenTK.Platform + nameWithType: OpenTK.Platform + fullName: OpenTK.Platform + spec.csharp: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Platform + name: Platform + href: OpenTK.Platform.html + spec.vb: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Platform + name: Platform + href: OpenTK.Platform.html +- uid: OpenTK.Platform.IPalComponent.Name + commentId: P:OpenTK.Platform.IPalComponent.Name + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Name + name: Name + nameWithType: IPalComponent.Name + fullName: OpenTK.Platform.IPalComponent.Name +- uid: OpenTK.Platform.IPalComponent.Provides + commentId: P:OpenTK.Platform.IPalComponent.Provides + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Provides + name: Provides + nameWithType: IPalComponent.Provides + fullName: OpenTK.Platform.IPalComponent.Provides +- uid: OpenTK.Platform.IPalComponent.Logger + commentId: P:OpenTK.Platform.IPalComponent.Logger + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Logger + name: Logger + nameWithType: IPalComponent.Logger + fullName: OpenTK.Platform.IPalComponent.Logger +- uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ + name: Initialize(ToolkitOptions) + nameWithType: IPalComponent.Initialize(ToolkitOptions) + fullName: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + spec.csharp: + - uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + name: Initialize + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ + - name: ( + - uid: OpenTK.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Platform.ToolkitOptions.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + name: Initialize + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ + - name: ( + - uid: OpenTK.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Platform.ToolkitOptions.html + - name: ) +- uid: OpenTK.Platform.IPalComponent + commentId: T:OpenTK.Platform.IPalComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IPalComponent.html + name: IPalComponent + nameWithType: IPalComponent + fullName: OpenTK.Platform.IPalComponent +- uid: OpenTK.Platform.IWindowComponent.SetIcon(OpenTK.Platform.WindowHandle,OpenTK.Platform.IconHandle) + commentId: M:OpenTK.Platform.IWindowComponent.SetIcon(OpenTK.Platform.WindowHandle,OpenTK.Platform.IconHandle) + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetIcon_OpenTK_Platform_WindowHandle_OpenTK_Platform_IconHandle_ + name: SetIcon(WindowHandle, IconHandle) + nameWithType: IWindowComponent.SetIcon(WindowHandle, IconHandle) + fullName: OpenTK.Platform.IWindowComponent.SetIcon(OpenTK.Platform.WindowHandle, OpenTK.Platform.IconHandle) + spec.csharp: + - uid: OpenTK.Platform.IWindowComponent.SetIcon(OpenTK.Platform.WindowHandle,OpenTK.Platform.IconHandle) + name: SetIcon + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetIcon_OpenTK_Platform_WindowHandle_OpenTK_Platform_IconHandle_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: OpenTK.Platform.IconHandle + name: IconHandle + href: OpenTK.Platform.IconHandle.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IWindowComponent.SetIcon(OpenTK.Platform.WindowHandle,OpenTK.Platform.IconHandle) + name: SetIcon + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetIcon_OpenTK_Platform_WindowHandle_OpenTK_Platform_IconHandle_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: OpenTK.Platform.IconHandle + name: IconHandle + href: OpenTK.Platform.IconHandle.html + - name: ) +- uid: OpenTK.Platform.IWindowComponent.CanSetIcon* + commentId: Overload:OpenTK.Platform.IWindowComponent.CanSetIcon + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_CanSetIcon + name: CanSetIcon + nameWithType: IWindowComponent.CanSetIcon + fullName: OpenTK.Platform.IWindowComponent.CanSetIcon +- uid: System.Boolean + commentId: T:System.Boolean + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + name: bool + nameWithType: bool + fullName: bool + nameWithType.vb: Boolean + fullName.vb: Boolean + name.vb: Boolean +- uid: OpenTK.Platform.IWindowComponent + commentId: T:OpenTK.Platform.IWindowComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IWindowComponent.html + name: IWindowComponent + nameWithType: IWindowComponent + fullName: OpenTK.Platform.IWindowComponent +- uid: System + commentId: N:System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System + nameWithType: System + fullName: System +- uid: OpenTK.Platform.IWindowComponent.GetDisplay(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.GetDisplay(OpenTK.Platform.WindowHandle) + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetDisplay_OpenTK_Platform_WindowHandle_ + name: GetDisplay(WindowHandle) + nameWithType: IWindowComponent.GetDisplay(WindowHandle) + fullName: OpenTK.Platform.IWindowComponent.GetDisplay(OpenTK.Platform.WindowHandle) + spec.csharp: + - uid: OpenTK.Platform.IWindowComponent.GetDisplay(OpenTK.Platform.WindowHandle) + name: GetDisplay + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetDisplay_OpenTK_Platform_WindowHandle_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IWindowComponent.GetDisplay(OpenTK.Platform.WindowHandle) + name: GetDisplay + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetDisplay_OpenTK_Platform_WindowHandle_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ) +- uid: OpenTK.Platform.IWindowComponent.CanGetDisplay* + commentId: Overload:OpenTK.Platform.IWindowComponent.CanGetDisplay + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_CanGetDisplay + name: CanGetDisplay + nameWithType: IWindowComponent.CanGetDisplay + fullName: OpenTK.Platform.IWindowComponent.CanGetDisplay +- uid: OpenTK.Platform.IWindowComponent.SetCursor(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorHandle) + commentId: M:OpenTK.Platform.IWindowComponent.SetCursor(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorHandle) + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetCursor_OpenTK_Platform_WindowHandle_OpenTK_Platform_CursorHandle_ + name: SetCursor(WindowHandle, CursorHandle) + nameWithType: IWindowComponent.SetCursor(WindowHandle, CursorHandle) + fullName: OpenTK.Platform.IWindowComponent.SetCursor(OpenTK.Platform.WindowHandle, OpenTK.Platform.CursorHandle) + spec.csharp: + - uid: OpenTK.Platform.IWindowComponent.SetCursor(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorHandle) + name: SetCursor + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetCursor_OpenTK_Platform_WindowHandle_OpenTK_Platform_CursorHandle_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: OpenTK.Platform.CursorHandle + name: CursorHandle + href: OpenTK.Platform.CursorHandle.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IWindowComponent.SetCursor(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorHandle) + name: SetCursor + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetCursor_OpenTK_Platform_WindowHandle_OpenTK_Platform_CursorHandle_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: OpenTK.Platform.CursorHandle + name: CursorHandle + href: OpenTK.Platform.CursorHandle.html + - name: ) +- uid: OpenTK.Platform.IWindowComponent.CanSetCursor* + commentId: Overload:OpenTK.Platform.IWindowComponent.CanSetCursor + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_CanSetCursor + name: CanSetCursor + nameWithType: IWindowComponent.CanSetCursor + fullName: OpenTK.Platform.IWindowComponent.CanSetCursor +- uid: OpenTK.Platform.IWindowComponent.SetCursorCaptureMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorCaptureMode) + commentId: M:OpenTK.Platform.IWindowComponent.SetCursorCaptureMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorCaptureMode) + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetCursorCaptureMode_OpenTK_Platform_WindowHandle_OpenTK_Platform_CursorCaptureMode_ + name: SetCursorCaptureMode(WindowHandle, CursorCaptureMode) + nameWithType: IWindowComponent.SetCursorCaptureMode(WindowHandle, CursorCaptureMode) + fullName: OpenTK.Platform.IWindowComponent.SetCursorCaptureMode(OpenTK.Platform.WindowHandle, OpenTK.Platform.CursorCaptureMode) + spec.csharp: + - uid: OpenTK.Platform.IWindowComponent.SetCursorCaptureMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorCaptureMode) + name: SetCursorCaptureMode + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetCursorCaptureMode_OpenTK_Platform_WindowHandle_OpenTK_Platform_CursorCaptureMode_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: OpenTK.Platform.CursorCaptureMode + name: CursorCaptureMode + href: OpenTK.Platform.CursorCaptureMode.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IWindowComponent.SetCursorCaptureMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorCaptureMode) + name: SetCursorCaptureMode + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetCursorCaptureMode_OpenTK_Platform_WindowHandle_OpenTK_Platform_CursorCaptureMode_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: OpenTK.Platform.CursorCaptureMode + name: CursorCaptureMode + href: OpenTK.Platform.CursorCaptureMode.html + - name: ) +- uid: OpenTK.Platform.IWindowComponent.CanCaptureCursor* + commentId: Overload:OpenTK.Platform.IWindowComponent.CanCaptureCursor + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_CanCaptureCursor + name: CanCaptureCursor + nameWithType: IWindowComponent.CanCaptureCursor + fullName: OpenTK.Platform.IWindowComponent.CanCaptureCursor +- uid: OpenTK.Platform.IWindowComponent.SupportedEvents* + commentId: Overload:OpenTK.Platform.IWindowComponent.SupportedEvents + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SupportedEvents + name: SupportedEvents + nameWithType: IWindowComponent.SupportedEvents + fullName: OpenTK.Platform.IWindowComponent.SupportedEvents +- uid: System.Collections.Generic.IReadOnlyList{OpenTK.Platform.PlatformEventType} + commentId: T:System.Collections.Generic.IReadOnlyList{OpenTK.Platform.PlatformEventType} + parent: System.Collections.Generic + definition: System.Collections.Generic.IReadOnlyList`1 + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 + name: IReadOnlyList + nameWithType: IReadOnlyList + fullName: System.Collections.Generic.IReadOnlyList + nameWithType.vb: IReadOnlyList(Of PlatformEventType) + fullName.vb: System.Collections.Generic.IReadOnlyList(Of OpenTK.Platform.PlatformEventType) + name.vb: IReadOnlyList(Of PlatformEventType) + spec.csharp: + - uid: System.Collections.Generic.IReadOnlyList`1 + name: IReadOnlyList + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 + - name: < + - uid: OpenTK.Platform.PlatformEventType + name: PlatformEventType + href: OpenTK.Platform.PlatformEventType.html + - name: '>' + spec.vb: + - uid: System.Collections.Generic.IReadOnlyList`1 + name: IReadOnlyList + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 + - name: ( + - name: Of + - name: " " + - uid: OpenTK.Platform.PlatformEventType + name: PlatformEventType + href: OpenTK.Platform.PlatformEventType.html + - name: ) +- uid: System.Collections.Generic.IReadOnlyList`1 + commentId: T:System.Collections.Generic.IReadOnlyList`1 + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 + name: IReadOnlyList + nameWithType: IReadOnlyList + fullName: System.Collections.Generic.IReadOnlyList + nameWithType.vb: IReadOnlyList(Of T) + fullName.vb: System.Collections.Generic.IReadOnlyList(Of T) + name.vb: IReadOnlyList(Of T) + spec.csharp: + - uid: System.Collections.Generic.IReadOnlyList`1 + name: IReadOnlyList + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 + - name: < + - name: T + - name: '>' + spec.vb: + - uid: System.Collections.Generic.IReadOnlyList`1 + name: IReadOnlyList + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 + - name: ( + - name: Of + - name: " " + - name: T + - name: ) +- uid: System.Collections.Generic + commentId: N:System.Collections.Generic + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System.Collections.Generic + nameWithType: System.Collections.Generic + fullName: System.Collections.Generic + spec.csharp: + - uid: System + name: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + - name: . + - uid: System.Collections + name: Collections + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections + - name: . + - uid: System.Collections.Generic + name: Generic + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic + spec.vb: + - uid: System + name: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + - name: . + - uid: System.Collections + name: Collections + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections + - name: . + - uid: System.Collections.Generic + name: Generic + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic +- uid: OpenTK.Platform.IWindowComponent.SupportedStyles* + commentId: Overload:OpenTK.Platform.IWindowComponent.SupportedStyles + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SupportedStyles + name: SupportedStyles + nameWithType: IWindowComponent.SupportedStyles + fullName: OpenTK.Platform.IWindowComponent.SupportedStyles +- uid: System.Collections.Generic.IReadOnlyList{OpenTK.Platform.WindowBorderStyle} + commentId: T:System.Collections.Generic.IReadOnlyList{OpenTK.Platform.WindowBorderStyle} + parent: System.Collections.Generic + definition: System.Collections.Generic.IReadOnlyList`1 + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 + name: IReadOnlyList + nameWithType: IReadOnlyList + fullName: System.Collections.Generic.IReadOnlyList + nameWithType.vb: IReadOnlyList(Of WindowBorderStyle) + fullName.vb: System.Collections.Generic.IReadOnlyList(Of OpenTK.Platform.WindowBorderStyle) + name.vb: IReadOnlyList(Of WindowBorderStyle) + spec.csharp: + - uid: System.Collections.Generic.IReadOnlyList`1 + name: IReadOnlyList + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 + - name: < + - uid: OpenTK.Platform.WindowBorderStyle + name: WindowBorderStyle + href: OpenTK.Platform.WindowBorderStyle.html + - name: '>' + spec.vb: + - uid: System.Collections.Generic.IReadOnlyList`1 + name: IReadOnlyList + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 + - name: ( + - name: Of + - name: " " + - uid: OpenTK.Platform.WindowBorderStyle + name: WindowBorderStyle + href: OpenTK.Platform.WindowBorderStyle.html + - name: ) +- uid: OpenTK.Platform.IWindowComponent.SupportedModes* + commentId: Overload:OpenTK.Platform.IWindowComponent.SupportedModes + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SupportedModes + name: SupportedModes + nameWithType: IWindowComponent.SupportedModes + fullName: OpenTK.Platform.IWindowComponent.SupportedModes +- uid: System.Collections.Generic.IReadOnlyList{OpenTK.Platform.WindowMode} + commentId: T:System.Collections.Generic.IReadOnlyList{OpenTK.Platform.WindowMode} + parent: System.Collections.Generic + definition: System.Collections.Generic.IReadOnlyList`1 + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 + name: IReadOnlyList + nameWithType: IReadOnlyList + fullName: System.Collections.Generic.IReadOnlyList + nameWithType.vb: IReadOnlyList(Of WindowMode) + fullName.vb: System.Collections.Generic.IReadOnlyList(Of OpenTK.Platform.WindowMode) + name.vb: IReadOnlyList(Of WindowMode) + spec.csharp: + - uid: System.Collections.Generic.IReadOnlyList`1 + name: IReadOnlyList + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 + - name: < + - uid: OpenTK.Platform.WindowMode + name: WindowMode + href: OpenTK.Platform.WindowMode.html + - name: '>' + spec.vb: + - uid: System.Collections.Generic.IReadOnlyList`1 + name: IReadOnlyList + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 + - name: ( + - name: Of + - name: " " + - uid: OpenTK.Platform.WindowMode + name: WindowMode + href: OpenTK.Platform.WindowMode.html + - name: ) +- uid: OpenTK.Platform.EventQueue + commentId: T:OpenTK.Platform.EventQueue + parent: OpenTK.Platform + href: OpenTK.Platform.EventQueue.html + name: EventQueue + nameWithType: EventQueue + fullName: OpenTK.Platform.EventQueue +- uid: OpenTK.Platform.IWindowComponent.ProcessEvents* + commentId: Overload:OpenTK.Platform.IWindowComponent.ProcessEvents + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_ProcessEvents_System_Boolean_ + name: ProcessEvents + nameWithType: IWindowComponent.ProcessEvents + fullName: OpenTK.Platform.IWindowComponent.ProcessEvents +- uid: OpenTK.Platform.IWindowComponent.Create* + commentId: Overload:OpenTK.Platform.IWindowComponent.Create + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_Create_OpenTK_Platform_GraphicsApiHints_ + name: Create + nameWithType: IWindowComponent.Create + fullName: OpenTK.Platform.IWindowComponent.Create +- uid: OpenTK.Platform.GraphicsApiHints + commentId: T:OpenTK.Platform.GraphicsApiHints + parent: OpenTK.Platform + href: OpenTK.Platform.GraphicsApiHints.html + name: GraphicsApiHints + nameWithType: GraphicsApiHints + fullName: OpenTK.Platform.GraphicsApiHints +- uid: OpenTK.Platform.WindowHandle + commentId: T:OpenTK.Platform.WindowHandle + parent: OpenTK.Platform + href: OpenTK.Platform.WindowHandle.html + name: WindowHandle + nameWithType: WindowHandle + fullName: OpenTK.Platform.WindowHandle +- uid: OpenTK.Platform.IWindowComponent.IsWindowDestroyed(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.IsWindowDestroyed(OpenTK.Platform.WindowHandle) + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_IsWindowDestroyed_OpenTK_Platform_WindowHandle_ + name: IsWindowDestroyed(WindowHandle) + nameWithType: IWindowComponent.IsWindowDestroyed(WindowHandle) + fullName: OpenTK.Platform.IWindowComponent.IsWindowDestroyed(OpenTK.Platform.WindowHandle) + spec.csharp: + - uid: OpenTK.Platform.IWindowComponent.IsWindowDestroyed(OpenTK.Platform.WindowHandle) + name: IsWindowDestroyed + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_IsWindowDestroyed_OpenTK_Platform_WindowHandle_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IWindowComponent.IsWindowDestroyed(OpenTK.Platform.WindowHandle) + name: IsWindowDestroyed + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_IsWindowDestroyed_OpenTK_Platform_WindowHandle_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ) +- uid: System.ArgumentNullException + commentId: T:System.ArgumentNullException + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.argumentnullexception + name: ArgumentNullException + nameWithType: ArgumentNullException + fullName: System.ArgumentNullException +- uid: OpenTK.Platform.IWindowComponent.Destroy* + commentId: Overload:OpenTK.Platform.IWindowComponent.Destroy + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_Destroy_OpenTK_Platform_WindowHandle_ + name: Destroy + nameWithType: IWindowComponent.Destroy + fullName: OpenTK.Platform.IWindowComponent.Destroy +- uid: OpenTK.Platform.IWindowComponent.Destroy(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.Destroy(OpenTK.Platform.WindowHandle) + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_Destroy_OpenTK_Platform_WindowHandle_ + name: Destroy(WindowHandle) + nameWithType: IWindowComponent.Destroy(WindowHandle) + fullName: OpenTK.Platform.IWindowComponent.Destroy(OpenTK.Platform.WindowHandle) + spec.csharp: + - uid: OpenTK.Platform.IWindowComponent.Destroy(OpenTK.Platform.WindowHandle) + name: Destroy + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_Destroy_OpenTK_Platform_WindowHandle_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IWindowComponent.Destroy(OpenTK.Platform.WindowHandle) + name: Destroy + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_Destroy_OpenTK_Platform_WindowHandle_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ) +- uid: OpenTK.Platform.IWindowComponent.IsWindowDestroyed* + commentId: Overload:OpenTK.Platform.IWindowComponent.IsWindowDestroyed + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_IsWindowDestroyed_OpenTK_Platform_WindowHandle_ + name: IsWindowDestroyed + nameWithType: IWindowComponent.IsWindowDestroyed + fullName: OpenTK.Platform.IWindowComponent.IsWindowDestroyed +- uid: OpenTK.Platform.IWindowComponent.GetTitle* + commentId: Overload:OpenTK.Platform.IWindowComponent.GetTitle + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetTitle_OpenTK_Platform_WindowHandle_ + name: GetTitle + nameWithType: IWindowComponent.GetTitle + fullName: OpenTK.Platform.IWindowComponent.GetTitle +- uid: System.String + commentId: T:System.String + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + name: string + nameWithType: string + fullName: string + nameWithType.vb: String + fullName.vb: String + name.vb: String +- uid: OpenTK.Platform.IWindowComponent.SetTitle* + commentId: Overload:OpenTK.Platform.IWindowComponent.SetTitle + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetTitle_OpenTK_Platform_WindowHandle_System_String_ + name: SetTitle + nameWithType: IWindowComponent.SetTitle + fullName: OpenTK.Platform.IWindowComponent.SetTitle +- uid: OpenTK.Platform.IWindowComponent.CanSetIcon + commentId: P:OpenTK.Platform.IWindowComponent.CanSetIcon + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_CanSetIcon + name: CanSetIcon + nameWithType: IWindowComponent.CanSetIcon + fullName: OpenTK.Platform.IWindowComponent.CanSetIcon +- uid: OpenTK.Platform.PalNotImplementedException + commentId: T:OpenTK.Platform.PalNotImplementedException + href: OpenTK.Platform.PalNotImplementedException.html + name: PalNotImplementedException + nameWithType: PalNotImplementedException + fullName: OpenTK.Platform.PalNotImplementedException +- uid: OpenTK.Platform.IWindowComponent.GetIcon* + commentId: Overload:OpenTK.Platform.IWindowComponent.GetIcon + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetIcon_OpenTK_Platform_WindowHandle_ + name: GetIcon + nameWithType: IWindowComponent.GetIcon + fullName: OpenTK.Platform.IWindowComponent.GetIcon +- uid: OpenTK.Platform.IconHandle + commentId: T:OpenTK.Platform.IconHandle + parent: OpenTK.Platform + href: OpenTK.Platform.IconHandle.html + name: IconHandle + nameWithType: IconHandle + fullName: OpenTK.Platform.IconHandle +- uid: OpenTK.Platform.IWindowComponent.SetIcon* + commentId: Overload:OpenTK.Platform.IWindowComponent.SetIcon + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetIcon_OpenTK_Platform_WindowHandle_OpenTK_Platform_IconHandle_ + name: SetIcon + nameWithType: IWindowComponent.SetIcon + fullName: OpenTK.Platform.IWindowComponent.SetIcon +- uid: OpenTK.Platform.IWindowComponent.GetPosition* + commentId: Overload:OpenTK.Platform.IWindowComponent.GetPosition + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetPosition_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ + name: GetPosition + nameWithType: IWindowComponent.GetPosition + fullName: OpenTK.Platform.IWindowComponent.GetPosition +- uid: System.Int32 + commentId: T:System.Int32 + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + name: int + nameWithType: int + fullName: int + nameWithType.vb: Integer + fullName.vb: Integer + name.vb: Integer +- uid: OpenTK.Platform.IWindowComponent.SetPosition* + commentId: Overload:OpenTK.Platform.IWindowComponent.SetPosition + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetPosition_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_ + name: SetPosition + nameWithType: IWindowComponent.SetPosition + fullName: OpenTK.Platform.IWindowComponent.SetPosition +- uid: OpenTK.Platform.IWindowComponent.GetSize* + commentId: Overload:OpenTK.Platform.IWindowComponent.GetSize + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetSize_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ + name: GetSize + nameWithType: IWindowComponent.GetSize + fullName: OpenTK.Platform.IWindowComponent.GetSize +- uid: OpenTK.Platform.IWindowComponent.SetSize* + commentId: Overload:OpenTK.Platform.IWindowComponent.SetSize + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetSize_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_ + name: SetSize + nameWithType: IWindowComponent.SetSize + fullName: OpenTK.Platform.IWindowComponent.SetSize +- uid: OpenTK.Platform.IWindowComponent.GetBounds* + commentId: Overload:OpenTK.Platform.IWindowComponent.GetBounds + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetBounds_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__System_Int32__System_Int32__ + name: GetBounds + nameWithType: IWindowComponent.GetBounds + fullName: OpenTK.Platform.IWindowComponent.GetBounds +- uid: OpenTK.Platform.IWindowComponent.SetBounds* + commentId: Overload:OpenTK.Platform.IWindowComponent.SetBounds + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetBounds_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_System_Int32_System_Int32_ + name: SetBounds + nameWithType: IWindowComponent.SetBounds + fullName: OpenTK.Platform.IWindowComponent.SetBounds +- uid: OpenTK.Platform.IWindowComponent.GetClientPosition* + commentId: Overload:OpenTK.Platform.IWindowComponent.GetClientPosition + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetClientPosition_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ + name: GetClientPosition + nameWithType: IWindowComponent.GetClientPosition + fullName: OpenTK.Platform.IWindowComponent.GetClientPosition +- uid: OpenTK.Platform.IWindowComponent.SetClientPosition* + commentId: Overload:OpenTK.Platform.IWindowComponent.SetClientPosition + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetClientPosition_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_ + name: SetClientPosition + nameWithType: IWindowComponent.SetClientPosition + fullName: OpenTK.Platform.IWindowComponent.SetClientPosition +- uid: OpenTK.Platform.IWindowComponent.GetClientSize* + commentId: Overload:OpenTK.Platform.IWindowComponent.GetClientSize + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetClientSize_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ + name: GetClientSize + nameWithType: IWindowComponent.GetClientSize + fullName: OpenTK.Platform.IWindowComponent.GetClientSize +- uid: OpenTK.Platform.IWindowComponent.SetClientSize* + commentId: Overload:OpenTK.Platform.IWindowComponent.SetClientSize + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetClientSize_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_ + name: SetClientSize + nameWithType: IWindowComponent.SetClientSize + fullName: OpenTK.Platform.IWindowComponent.SetClientSize +- uid: OpenTK.Platform.IWindowComponent.GetClientBounds* + commentId: Overload:OpenTK.Platform.IWindowComponent.GetClientBounds + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetClientBounds_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__System_Int32__System_Int32__ + name: GetClientBounds + nameWithType: IWindowComponent.GetClientBounds + fullName: OpenTK.Platform.IWindowComponent.GetClientBounds +- uid: OpenTK.Platform.IWindowComponent.SetClientBounds* + commentId: Overload:OpenTK.Platform.IWindowComponent.SetClientBounds + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetClientBounds_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_System_Int32_System_Int32_ + name: SetClientBounds + nameWithType: IWindowComponent.SetClientBounds + fullName: OpenTK.Platform.IWindowComponent.SetClientBounds +- uid: OpenTK.Platform.IWindowComponent.GetFramebufferSize* + commentId: Overload:OpenTK.Platform.IWindowComponent.GetFramebufferSize + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetFramebufferSize_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ + name: GetFramebufferSize + nameWithType: IWindowComponent.GetFramebufferSize + fullName: OpenTK.Platform.IWindowComponent.GetFramebufferSize +- uid: OpenTK.Platform.IWindowComponent.GetMaxClientSize* + commentId: Overload:OpenTK.Platform.IWindowComponent.GetMaxClientSize + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetMaxClientSize_OpenTK_Platform_WindowHandle_System_Nullable_System_Int32___System_Nullable_System_Int32___ + name: GetMaxClientSize + nameWithType: IWindowComponent.GetMaxClientSize + fullName: OpenTK.Platform.IWindowComponent.GetMaxClientSize +- uid: System.Nullable{System.Int32} + commentId: T:System.Nullable{System.Int32} + parent: System + definition: System.Nullable`1 + href: https://learn.microsoft.com/dotnet/api/system.int32 + name: int? + nameWithType: int? + fullName: int? + nameWithType.vb: Integer? + fullName.vb: Integer? + name.vb: Integer? + spec.csharp: + - uid: System.Int32 + name: int + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: '?' + spec.vb: + - uid: System.Int32 + name: Integer + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: '?' +- uid: System.Nullable`1 + commentId: T:System.Nullable`1 + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.nullable-1 + name: Nullable + nameWithType: Nullable + fullName: System.Nullable + nameWithType.vb: Nullable(Of T) + fullName.vb: System.Nullable(Of T) + name.vb: Nullable(Of T) + spec.csharp: + - uid: System.Nullable`1 + name: Nullable + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.nullable-1 + - name: < + - name: T + - name: '>' + spec.vb: + - uid: System.Nullable`1 + name: Nullable + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.nullable-1 + - name: ( + - name: Of + - name: " " + - name: T + - name: ) +- uid: OpenTK.Platform.IWindowComponent.SetMaxClientSize* + commentId: Overload:OpenTK.Platform.IWindowComponent.SetMaxClientSize + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetMaxClientSize_OpenTK_Platform_WindowHandle_System_Nullable_System_Int32__System_Nullable_System_Int32__ + name: SetMaxClientSize + nameWithType: IWindowComponent.SetMaxClientSize + fullName: OpenTK.Platform.IWindowComponent.SetMaxClientSize +- uid: OpenTK.Platform.IWindowComponent.GetMinClientSize* + commentId: Overload:OpenTK.Platform.IWindowComponent.GetMinClientSize + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetMinClientSize_OpenTK_Platform_WindowHandle_System_Nullable_System_Int32___System_Nullable_System_Int32___ + name: GetMinClientSize + nameWithType: IWindowComponent.GetMinClientSize + fullName: OpenTK.Platform.IWindowComponent.GetMinClientSize +- uid: OpenTK.Platform.IWindowComponent.SetMinClientSize* + commentId: Overload:OpenTK.Platform.IWindowComponent.SetMinClientSize + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetMinClientSize_OpenTK_Platform_WindowHandle_System_Nullable_System_Int32__System_Nullable_System_Int32__ + name: SetMinClientSize + nameWithType: IWindowComponent.SetMinClientSize + fullName: OpenTK.Platform.IWindowComponent.SetMinClientSize +- uid: OpenTK.Platform.IWindowComponent.CanGetDisplay + commentId: P:OpenTK.Platform.IWindowComponent.CanGetDisplay + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_CanGetDisplay + name: CanGetDisplay + nameWithType: IWindowComponent.CanGetDisplay + fullName: OpenTK.Platform.IWindowComponent.CanGetDisplay +- uid: OpenTK.Platform.IWindowComponent.GetDisplay* + commentId: Overload:OpenTK.Platform.IWindowComponent.GetDisplay + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetDisplay_OpenTK_Platform_WindowHandle_ + name: GetDisplay + nameWithType: IWindowComponent.GetDisplay + fullName: OpenTK.Platform.IWindowComponent.GetDisplay +- uid: OpenTK.Platform.DisplayHandle + commentId: T:OpenTK.Platform.DisplayHandle + parent: OpenTK.Platform + href: OpenTK.Platform.DisplayHandle.html + name: DisplayHandle + nameWithType: DisplayHandle + fullName: OpenTK.Platform.DisplayHandle +- uid: OpenTK.Platform.IWindowComponent.GetMode* + commentId: Overload:OpenTK.Platform.IWindowComponent.GetMode + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetMode_OpenTK_Platform_WindowHandle_ + name: GetMode + nameWithType: IWindowComponent.GetMode + fullName: OpenTK.Platform.IWindowComponent.GetMode +- uid: OpenTK.Platform.WindowMode + commentId: T:OpenTK.Platform.WindowMode + parent: OpenTK.Platform + href: OpenTK.Platform.WindowMode.html + name: WindowMode + nameWithType: WindowMode + fullName: OpenTK.Platform.WindowMode +- uid: OpenTK.Platform.IWindowComponent.SupportedModes + commentId: P:OpenTK.Platform.IWindowComponent.SupportedModes + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SupportedModes + name: SupportedModes + nameWithType: IWindowComponent.SupportedModes + fullName: OpenTK.Platform.IWindowComponent.SupportedModes +- uid: OpenTK.Platform.WindowMode.WindowedFullscreen + commentId: F:OpenTK.Platform.WindowMode.WindowedFullscreen + href: OpenTK.Platform.WindowMode.html#OpenTK_Platform_WindowMode_WindowedFullscreen + name: WindowedFullscreen + nameWithType: WindowMode.WindowedFullscreen + fullName: OpenTK.Platform.WindowMode.WindowedFullscreen +- uid: OpenTK.Platform.WindowMode.ExclusiveFullscreen + commentId: F:OpenTK.Platform.WindowMode.ExclusiveFullscreen + href: OpenTK.Platform.WindowMode.html#OpenTK_Platform_WindowMode_ExclusiveFullscreen + name: ExclusiveFullscreen + nameWithType: WindowMode.ExclusiveFullscreen + fullName: OpenTK.Platform.WindowMode.ExclusiveFullscreen +- uid: OpenTK.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle) + commentId: M:OpenTK.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle) + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetFullscreenDisplay_OpenTK_Platform_WindowHandle_OpenTK_Platform_DisplayHandle_ + name: SetFullscreenDisplay(WindowHandle, DisplayHandle) + nameWithType: IWindowComponent.SetFullscreenDisplay(WindowHandle, DisplayHandle) + fullName: OpenTK.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle, OpenTK.Platform.DisplayHandle) + spec.csharp: + - uid: OpenTK.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle) + name: SetFullscreenDisplay + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetFullscreenDisplay_OpenTK_Platform_WindowHandle_OpenTK_Platform_DisplayHandle_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: OpenTK.Platform.DisplayHandle + name: DisplayHandle + href: OpenTK.Platform.DisplayHandle.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle) + name: SetFullscreenDisplay + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetFullscreenDisplay_OpenTK_Platform_WindowHandle_OpenTK_Platform_DisplayHandle_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: OpenTK.Platform.DisplayHandle + name: DisplayHandle + href: OpenTK.Platform.DisplayHandle.html + - name: ) +- uid: OpenTK.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle,OpenTK.Platform.VideoMode) + commentId: M:OpenTK.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle,OpenTK.Platform.VideoMode) + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetFullscreenDisplay_OpenTK_Platform_WindowHandle_OpenTK_Platform_DisplayHandle_OpenTK_Platform_VideoMode_ + name: SetFullscreenDisplay(WindowHandle, DisplayHandle, VideoMode) + nameWithType: IWindowComponent.SetFullscreenDisplay(WindowHandle, DisplayHandle, VideoMode) + fullName: OpenTK.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle, OpenTK.Platform.DisplayHandle, OpenTK.Platform.VideoMode) + spec.csharp: + - uid: OpenTK.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle,OpenTK.Platform.VideoMode) + name: SetFullscreenDisplay + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetFullscreenDisplay_OpenTK_Platform_WindowHandle_OpenTK_Platform_DisplayHandle_OpenTK_Platform_VideoMode_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: OpenTK.Platform.DisplayHandle + name: DisplayHandle + href: OpenTK.Platform.DisplayHandle.html + - name: ',' + - name: " " + - uid: OpenTK.Platform.VideoMode + name: VideoMode + href: OpenTK.Platform.VideoMode.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle,OpenTK.Platform.VideoMode) + name: SetFullscreenDisplay + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetFullscreenDisplay_OpenTK_Platform_WindowHandle_OpenTK_Platform_DisplayHandle_OpenTK_Platform_VideoMode_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: OpenTK.Platform.DisplayHandle + name: DisplayHandle + href: OpenTK.Platform.DisplayHandle.html + - name: ',' + - name: " " + - uid: OpenTK.Platform.VideoMode + name: VideoMode + href: OpenTK.Platform.VideoMode.html + - name: ) +- uid: System.ArgumentOutOfRangeException + commentId: T:System.ArgumentOutOfRangeException + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.argumentoutofrangeexception + name: ArgumentOutOfRangeException + nameWithType: ArgumentOutOfRangeException + fullName: System.ArgumentOutOfRangeException +- uid: OpenTK.Platform.IWindowComponent.SetMode* + commentId: Overload:OpenTK.Platform.IWindowComponent.SetMode + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetMode_OpenTK_Platform_WindowHandle_OpenTK_Platform_WindowMode_ + name: SetMode + nameWithType: IWindowComponent.SetMode + fullName: OpenTK.Platform.IWindowComponent.SetMode +- uid: OpenTK.Platform.IWindowComponent.SetFullscreenDisplay* + commentId: Overload:OpenTK.Platform.IWindowComponent.SetFullscreenDisplay + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetFullscreenDisplay_OpenTK_Platform_WindowHandle_OpenTK_Platform_DisplayHandle_ + name: SetFullscreenDisplay + nameWithType: IWindowComponent.SetFullscreenDisplay + fullName: OpenTK.Platform.IWindowComponent.SetFullscreenDisplay +- uid: OpenTK.Platform.IDisplayComponent.GetSupportedVideoModes(OpenTK.Platform.DisplayHandle) + commentId: M:OpenTK.Platform.IDisplayComponent.GetSupportedVideoModes(OpenTK.Platform.DisplayHandle) + parent: OpenTK.Platform.IDisplayComponent + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_GetSupportedVideoModes_OpenTK_Platform_DisplayHandle_ + name: GetSupportedVideoModes(DisplayHandle) + nameWithType: IDisplayComponent.GetSupportedVideoModes(DisplayHandle) + fullName: OpenTK.Platform.IDisplayComponent.GetSupportedVideoModes(OpenTK.Platform.DisplayHandle) + spec.csharp: + - uid: OpenTK.Platform.IDisplayComponent.GetSupportedVideoModes(OpenTK.Platform.DisplayHandle) + name: GetSupportedVideoModes + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_GetSupportedVideoModes_OpenTK_Platform_DisplayHandle_ + - name: ( + - uid: OpenTK.Platform.DisplayHandle + name: DisplayHandle + href: OpenTK.Platform.DisplayHandle.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IDisplayComponent.GetSupportedVideoModes(OpenTK.Platform.DisplayHandle) + name: GetSupportedVideoModes + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_GetSupportedVideoModes_OpenTK_Platform_DisplayHandle_ + - name: ( + - uid: OpenTK.Platform.DisplayHandle + name: DisplayHandle + href: OpenTK.Platform.DisplayHandle.html + - name: ) +- uid: OpenTK.Platform.VideoMode + commentId: T:OpenTK.Platform.VideoMode + parent: OpenTK.Platform + href: OpenTK.Platform.VideoMode.html + name: VideoMode + nameWithType: VideoMode + fullName: OpenTK.Platform.VideoMode +- uid: OpenTK.Platform.IDisplayComponent + commentId: T:OpenTK.Platform.IDisplayComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IDisplayComponent.html + name: IDisplayComponent + nameWithType: IDisplayComponent + fullName: OpenTK.Platform.IDisplayComponent +- uid: OpenTK.Platform.IWindowComponent.GetFullscreenDisplay* + commentId: Overload:OpenTK.Platform.IWindowComponent.GetFullscreenDisplay + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetFullscreenDisplay_OpenTK_Platform_WindowHandle_OpenTK_Platform_DisplayHandle__ + name: GetFullscreenDisplay + nameWithType: IWindowComponent.GetFullscreenDisplay + fullName: OpenTK.Platform.IWindowComponent.GetFullscreenDisplay +- uid: OpenTK.Platform.IWindowComponent.GetBorderStyle* + commentId: Overload:OpenTK.Platform.IWindowComponent.GetBorderStyle + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetBorderStyle_OpenTK_Platform_WindowHandle_ + name: GetBorderStyle + nameWithType: IWindowComponent.GetBorderStyle + fullName: OpenTK.Platform.IWindowComponent.GetBorderStyle +- uid: OpenTK.Platform.WindowBorderStyle + commentId: T:OpenTK.Platform.WindowBorderStyle + parent: OpenTK.Platform + href: OpenTK.Platform.WindowBorderStyle.html + name: WindowBorderStyle + nameWithType: WindowBorderStyle + fullName: OpenTK.Platform.WindowBorderStyle +- uid: OpenTK.Platform.IWindowComponent.SupportedStyles + commentId: P:OpenTK.Platform.IWindowComponent.SupportedStyles + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SupportedStyles + name: SupportedStyles + nameWithType: IWindowComponent.SupportedStyles + fullName: OpenTK.Platform.IWindowComponent.SupportedStyles +- uid: OpenTK.Platform.IWindowComponent.SetBorderStyle* + commentId: Overload:OpenTK.Platform.IWindowComponent.SetBorderStyle + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetBorderStyle_OpenTK_Platform_WindowHandle_OpenTK_Platform_WindowBorderStyle_ + name: SetBorderStyle + nameWithType: IWindowComponent.SetBorderStyle + fullName: OpenTK.Platform.IWindowComponent.SetBorderStyle +- uid: OpenTK.Platform.IWindowComponent.SetAlwaysOnTop* + commentId: Overload:OpenTK.Platform.IWindowComponent.SetAlwaysOnTop + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetAlwaysOnTop_OpenTK_Platform_WindowHandle_System_Boolean_ + name: SetAlwaysOnTop + nameWithType: IWindowComponent.SetAlwaysOnTop + fullName: OpenTK.Platform.IWindowComponent.SetAlwaysOnTop +- uid: OpenTK.Platform.IWindowComponent.IsAlwaysOnTop* + commentId: Overload:OpenTK.Platform.IWindowComponent.IsAlwaysOnTop + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_IsAlwaysOnTop_OpenTK_Platform_WindowHandle_ + name: IsAlwaysOnTop + nameWithType: IWindowComponent.IsAlwaysOnTop + fullName: OpenTK.Platform.IWindowComponent.IsAlwaysOnTop +- uid: OpenTK.Platform.IWindowComponent.SetHitTestCallback* + commentId: Overload:OpenTK.Platform.IWindowComponent.SetHitTestCallback + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetHitTestCallback_OpenTK_Platform_WindowHandle_OpenTK_Platform_HitTest_ + name: SetHitTestCallback + nameWithType: IWindowComponent.SetHitTestCallback + fullName: OpenTK.Platform.IWindowComponent.SetHitTestCallback +- uid: OpenTK.Platform.HitTest + commentId: T:OpenTK.Platform.HitTest + parent: OpenTK.Platform + href: OpenTK.Platform.HitTest.html + name: HitTest + nameWithType: HitTest + fullName: OpenTK.Platform.HitTest +- uid: OpenTK.Platform.IWindowComponent.CanSetCursor + commentId: P:OpenTK.Platform.IWindowComponent.CanSetCursor + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_CanSetCursor + name: CanSetCursor + nameWithType: IWindowComponent.CanSetCursor + fullName: OpenTK.Platform.IWindowComponent.CanSetCursor +- uid: OpenTK.Platform.IWindowComponent.SetCursor* + commentId: Overload:OpenTK.Platform.IWindowComponent.SetCursor + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetCursor_OpenTK_Platform_WindowHandle_OpenTK_Platform_CursorHandle_ + name: SetCursor + nameWithType: IWindowComponent.SetCursor + fullName: OpenTK.Platform.IWindowComponent.SetCursor +- uid: OpenTK.Platform.CursorHandle + commentId: T:OpenTK.Platform.CursorHandle + parent: OpenTK.Platform + href: OpenTK.Platform.CursorHandle.html + name: CursorHandle + nameWithType: CursorHandle + fullName: OpenTK.Platform.CursorHandle +- uid: OpenTK.Platform.IWindowComponent.GetCursorCaptureMode* + commentId: Overload:OpenTK.Platform.IWindowComponent.GetCursorCaptureMode + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetCursorCaptureMode_OpenTK_Platform_WindowHandle_ + name: GetCursorCaptureMode + nameWithType: IWindowComponent.GetCursorCaptureMode + fullName: OpenTK.Platform.IWindowComponent.GetCursorCaptureMode +- uid: OpenTK.Platform.CursorCaptureMode + commentId: T:OpenTK.Platform.CursorCaptureMode + parent: OpenTK.Platform + href: OpenTK.Platform.CursorCaptureMode.html + name: CursorCaptureMode + nameWithType: CursorCaptureMode + fullName: OpenTK.Platform.CursorCaptureMode +- uid: OpenTK.Platform.IWindowComponent.CanCaptureCursor + commentId: P:OpenTK.Platform.IWindowComponent.CanCaptureCursor + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_CanCaptureCursor + name: CanCaptureCursor + nameWithType: IWindowComponent.CanCaptureCursor + fullName: OpenTK.Platform.IWindowComponent.CanCaptureCursor +- uid: OpenTK.Platform.IWindowComponent.SetCursorCaptureMode* + commentId: Overload:OpenTK.Platform.IWindowComponent.SetCursorCaptureMode + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetCursorCaptureMode_OpenTK_Platform_WindowHandle_OpenTK_Platform_CursorCaptureMode_ + name: SetCursorCaptureMode + nameWithType: IWindowComponent.SetCursorCaptureMode + fullName: OpenTK.Platform.IWindowComponent.SetCursorCaptureMode +- uid: OpenTK.Platform.IWindowComponent.IsFocused* + commentId: Overload:OpenTK.Platform.IWindowComponent.IsFocused + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_IsFocused_OpenTK_Platform_WindowHandle_ + name: IsFocused + nameWithType: IWindowComponent.IsFocused + fullName: OpenTK.Platform.IWindowComponent.IsFocused +- uid: OpenTK.Platform.IWindowComponent.FocusWindow* + commentId: Overload:OpenTK.Platform.IWindowComponent.FocusWindow + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_FocusWindow_OpenTK_Platform_WindowHandle_ + name: FocusWindow + nameWithType: IWindowComponent.FocusWindow + fullName: OpenTK.Platform.IWindowComponent.FocusWindow +- uid: OpenTK.Platform.IWindowComponent.RequestAttention* + commentId: Overload:OpenTK.Platform.IWindowComponent.RequestAttention + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_RequestAttention_OpenTK_Platform_WindowHandle_ + name: RequestAttention + nameWithType: IWindowComponent.RequestAttention + fullName: OpenTK.Platform.IWindowComponent.RequestAttention +- uid: OpenTK.Platform.IWindowComponent.ScreenToClient* + commentId: Overload:OpenTK.Platform.IWindowComponent.ScreenToClient + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_ScreenToClient_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_System_Int32__System_Int32__ + name: ScreenToClient + nameWithType: IWindowComponent.ScreenToClient + fullName: OpenTK.Platform.IWindowComponent.ScreenToClient +- uid: OpenTK.Platform.IWindowComponent.ClientToScreen* + commentId: Overload:OpenTK.Platform.IWindowComponent.ClientToScreen + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_ClientToScreen_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_System_Int32__System_Int32__ + name: ClientToScreen + nameWithType: IWindowComponent.ClientToScreen + fullName: OpenTK.Platform.IWindowComponent.ClientToScreen +- uid: OpenTK.Platform.WindowScaleChangeEventArgs + commentId: T:OpenTK.Platform.WindowScaleChangeEventArgs + href: OpenTK.Platform.WindowScaleChangeEventArgs.html + name: WindowScaleChangeEventArgs + nameWithType: WindowScaleChangeEventArgs + fullName: OpenTK.Platform.WindowScaleChangeEventArgs +- uid: OpenTK.Platform.IWindowComponent.GetScaleFactor* + commentId: Overload:OpenTK.Platform.IWindowComponent.GetScaleFactor + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetScaleFactor_OpenTK_Platform_WindowHandle_System_Single__System_Single__ + name: GetScaleFactor + nameWithType: IWindowComponent.GetScaleFactor + fullName: OpenTK.Platform.IWindowComponent.GetScaleFactor +- uid: System.Single + commentId: T:System.Single + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.single + name: float + nameWithType: float + fullName: float + nameWithType.vb: Single + fullName.vb: Single + name.vb: Single diff --git a/api/OpenTK.Core.Platform.IconHandle.yml b/api/OpenTK.Platform.IconHandle.yml similarity index 77% rename from api/OpenTK.Core.Platform.IconHandle.yml rename to api/OpenTK.Platform.IconHandle.yml index b384fed4..41ce05b4 100644 --- a/api/OpenTK.Core.Platform.IconHandle.yml +++ b/api/OpenTK.Platform.IconHandle.yml @@ -1,28 +1,24 @@ ### YamlMime:ManagedReference items: -- uid: OpenTK.Core.Platform.IconHandle - commentId: T:OpenTK.Core.Platform.IconHandle +- uid: OpenTK.Platform.IconHandle + commentId: T:OpenTK.Platform.IconHandle id: IconHandle - parent: OpenTK.Core.Platform + parent: OpenTK.Platform children: [] langs: - csharp - vb name: IconHandle nameWithType: IconHandle - fullName: OpenTK.Core.Platform.IconHandle + fullName: OpenTK.Platform.IconHandle type: Class source: - remote: - path: src/OpenTK.Core/Platform/Handles/IconHandle.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: IconHandle - path: opentk/src/OpenTK.Core/Platform/Handles/IconHandle.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Handles\IconHandle.cs startLine: 11 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform + - OpenTK.Platform + namespace: OpenTK.Platform summary: Handle to an Icon object. example: [] syntax: @@ -30,10 +26,10 @@ items: content.vb: Public MustInherit Class IconHandle Inherits PalHandle inheritance: - System.Object - - OpenTK.Core.Platform.PalHandle + - OpenTK.Platform.PalHandle inheritedMembers: - - OpenTK.Core.Platform.PalHandle.UserData - - OpenTK.Core.Platform.PalHandle.As``1(OpenTK.Core.Platform.IPalComponent) + - OpenTK.Platform.PalHandle.UserData + - OpenTK.Platform.PalHandle.As``1(OpenTK.Platform.IPalComponent) - System.Object.Equals(System.Object) - System.Object.Equals(System.Object,System.Object) - System.Object.GetHashCode @@ -42,36 +38,28 @@ items: - System.Object.ReferenceEquals(System.Object,System.Object) - System.Object.ToString references: -- uid: OpenTK.Core.Platform - commentId: N:OpenTK.Core.Platform +- uid: OpenTK.Platform + commentId: N:OpenTK.Platform href: OpenTK.html - name: OpenTK.Core.Platform - nameWithType: OpenTK.Core.Platform - fullName: OpenTK.Core.Platform + name: OpenTK.Platform + nameWithType: OpenTK.Platform + fullName: OpenTK.Platform spec.csharp: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html spec.vb: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html - uid: System.Object commentId: T:System.Object parent: System @@ -83,55 +71,55 @@ references: nameWithType.vb: Object fullName.vb: Object name.vb: Object -- uid: OpenTK.Core.Platform.PalHandle - commentId: T:OpenTK.Core.Platform.PalHandle - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.PalHandle.html +- uid: OpenTK.Platform.PalHandle + commentId: T:OpenTK.Platform.PalHandle + parent: OpenTK.Platform + href: OpenTK.Platform.PalHandle.html name: PalHandle nameWithType: PalHandle - fullName: OpenTK.Core.Platform.PalHandle -- uid: OpenTK.Core.Platform.PalHandle.UserData - commentId: P:OpenTK.Core.Platform.PalHandle.UserData - parent: OpenTK.Core.Platform.PalHandle - href: OpenTK.Core.Platform.PalHandle.html#OpenTK_Core_Platform_PalHandle_UserData + fullName: OpenTK.Platform.PalHandle +- uid: OpenTK.Platform.PalHandle.UserData + commentId: P:OpenTK.Platform.PalHandle.UserData + parent: OpenTK.Platform.PalHandle + href: OpenTK.Platform.PalHandle.html#OpenTK_Platform_PalHandle_UserData name: UserData nameWithType: PalHandle.UserData - fullName: OpenTK.Core.Platform.PalHandle.UserData -- uid: OpenTK.Core.Platform.PalHandle.As``1(OpenTK.Core.Platform.IPalComponent) - commentId: M:OpenTK.Core.Platform.PalHandle.As``1(OpenTK.Core.Platform.IPalComponent) - parent: OpenTK.Core.Platform.PalHandle - href: OpenTK.Core.Platform.PalHandle.html#OpenTK_Core_Platform_PalHandle_As__1_OpenTK_Core_Platform_IPalComponent_ + fullName: OpenTK.Platform.PalHandle.UserData +- uid: OpenTK.Platform.PalHandle.As``1(OpenTK.Platform.IPalComponent) + commentId: M:OpenTK.Platform.PalHandle.As``1(OpenTK.Platform.IPalComponent) + parent: OpenTK.Platform.PalHandle + href: OpenTK.Platform.PalHandle.html#OpenTK_Platform_PalHandle_As__1_OpenTK_Platform_IPalComponent_ name: As(IPalComponent) nameWithType: PalHandle.As(IPalComponent) - fullName: OpenTK.Core.Platform.PalHandle.As(OpenTK.Core.Platform.IPalComponent) + fullName: OpenTK.Platform.PalHandle.As(OpenTK.Platform.IPalComponent) nameWithType.vb: PalHandle.As(Of T)(IPalComponent) - fullName.vb: OpenTK.Core.Platform.PalHandle.As(Of T)(OpenTK.Core.Platform.IPalComponent) + fullName.vb: OpenTK.Platform.PalHandle.As(Of T)(OpenTK.Platform.IPalComponent) name.vb: As(Of T)(IPalComponent) spec.csharp: - - uid: OpenTK.Core.Platform.PalHandle.As``1(OpenTK.Core.Platform.IPalComponent) + - uid: OpenTK.Platform.PalHandle.As``1(OpenTK.Platform.IPalComponent) name: As - href: OpenTK.Core.Platform.PalHandle.html#OpenTK_Core_Platform_PalHandle_As__1_OpenTK_Core_Platform_IPalComponent_ + href: OpenTK.Platform.PalHandle.html#OpenTK_Platform_PalHandle_As__1_OpenTK_Platform_IPalComponent_ - name: < - name: T - name: '>' - name: ( - - uid: OpenTK.Core.Platform.IPalComponent + - uid: OpenTK.Platform.IPalComponent name: IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html + href: OpenTK.Platform.IPalComponent.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.PalHandle.As``1(OpenTK.Core.Platform.IPalComponent) + - uid: OpenTK.Platform.PalHandle.As``1(OpenTK.Platform.IPalComponent) name: As - href: OpenTK.Core.Platform.PalHandle.html#OpenTK_Core_Platform_PalHandle_As__1_OpenTK_Core_Platform_IPalComponent_ + href: OpenTK.Platform.PalHandle.html#OpenTK_Platform_PalHandle_As__1_OpenTK_Platform_IPalComponent_ - name: ( - name: Of - name: " " - name: T - name: ) - name: ( - - uid: OpenTK.Core.Platform.IPalComponent + - uid: OpenTK.Platform.IPalComponent name: IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html + href: OpenTK.Platform.IPalComponent.html - name: ) - uid: System.Object.Equals(System.Object) commentId: M:System.Object.Equals(System.Object) diff --git a/api/OpenTK.Core.Platform.InputLanguageChangedEventArgs.yml b/api/OpenTK.Platform.InputLanguageChangedEventArgs.yml similarity index 60% rename from api/OpenTK.Core.Platform.InputLanguageChangedEventArgs.yml rename to api/OpenTK.Platform.InputLanguageChangedEventArgs.yml index 3ebf52c4..96ff2eb1 100644 --- a/api/OpenTK.Core.Platform.InputLanguageChangedEventArgs.yml +++ b/api/OpenTK.Platform.InputLanguageChangedEventArgs.yml @@ -1,33 +1,29 @@ ### YamlMime:ManagedReference items: -- uid: OpenTK.Core.Platform.InputLanguageChangedEventArgs - commentId: T:OpenTK.Core.Platform.InputLanguageChangedEventArgs +- uid: OpenTK.Platform.InputLanguageChangedEventArgs + commentId: T:OpenTK.Platform.InputLanguageChangedEventArgs id: InputLanguageChangedEventArgs - parent: OpenTK.Core.Platform + parent: OpenTK.Platform children: - - OpenTK.Core.Platform.InputLanguageChangedEventArgs.#ctor(System.String,System.String,System.String,System.String) - - OpenTK.Core.Platform.InputLanguageChangedEventArgs.InputLanguage - - OpenTK.Core.Platform.InputLanguageChangedEventArgs.InputLanguageDisplayName - - OpenTK.Core.Platform.InputLanguageChangedEventArgs.KeyboardLayout - - OpenTK.Core.Platform.InputLanguageChangedEventArgs.KeyboardLayoutDisplayName + - OpenTK.Platform.InputLanguageChangedEventArgs.#ctor(System.String,System.String,System.String,System.String) + - OpenTK.Platform.InputLanguageChangedEventArgs.InputLanguage + - OpenTK.Platform.InputLanguageChangedEventArgs.InputLanguageDisplayName + - OpenTK.Platform.InputLanguageChangedEventArgs.KeyboardLayout + - OpenTK.Platform.InputLanguageChangedEventArgs.KeyboardLayoutDisplayName langs: - csharp - vb name: InputLanguageChangedEventArgs nameWithType: InputLanguageChangedEventArgs - fullName: OpenTK.Core.Platform.InputLanguageChangedEventArgs + fullName: OpenTK.Platform.InputLanguageChangedEventArgs type: Class source: - remote: - path: src/OpenTK.Core/Platform/WindowEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: InputLanguageChangedEventArgs - path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\WindowEventArgs.cs startLine: 337 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform + - OpenTK.Platform + namespace: OpenTK.Platform summary: >- This event is triggered when the input language is changed. @@ -35,9 +31,9 @@ items: When this event occurs the values from - and + and - + are updated to reflect the new layout keyboard layout. example: [] @@ -56,28 +52,24 @@ items: - System.Object.MemberwiseClone - System.Object.ReferenceEquals(System.Object,System.Object) - System.Object.ToString -- uid: OpenTK.Core.Platform.InputLanguageChangedEventArgs.KeyboardLayout - commentId: P:OpenTK.Core.Platform.InputLanguageChangedEventArgs.KeyboardLayout +- uid: OpenTK.Platform.InputLanguageChangedEventArgs.KeyboardLayout + commentId: P:OpenTK.Platform.InputLanguageChangedEventArgs.KeyboardLayout id: KeyboardLayout - parent: OpenTK.Core.Platform.InputLanguageChangedEventArgs + parent: OpenTK.Platform.InputLanguageChangedEventArgs langs: - csharp - vb name: KeyboardLayout nameWithType: InputLanguageChangedEventArgs.KeyboardLayout - fullName: OpenTK.Core.Platform.InputLanguageChangedEventArgs.KeyboardLayout + fullName: OpenTK.Platform.InputLanguageChangedEventArgs.KeyboardLayout type: Property source: - remote: - path: src/OpenTK.Core/Platform/WindowEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: KeyboardLayout - path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\WindowEventArgs.cs startLine: 343 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform + - OpenTK.Platform + namespace: OpenTK.Platform summary: >- The new keyboard layout. This indicates how physical keys are mapped to virtual keys. @@ -89,29 +81,25 @@ items: return: type: System.String content.vb: Public Property KeyboardLayout As String - overload: OpenTK.Core.Platform.InputLanguageChangedEventArgs.KeyboardLayout* -- uid: OpenTK.Core.Platform.InputLanguageChangedEventArgs.KeyboardLayoutDisplayName - commentId: P:OpenTK.Core.Platform.InputLanguageChangedEventArgs.KeyboardLayoutDisplayName + overload: OpenTK.Platform.InputLanguageChangedEventArgs.KeyboardLayout* +- uid: OpenTK.Platform.InputLanguageChangedEventArgs.KeyboardLayoutDisplayName + commentId: P:OpenTK.Platform.InputLanguageChangedEventArgs.KeyboardLayoutDisplayName id: KeyboardLayoutDisplayName - parent: OpenTK.Core.Platform.InputLanguageChangedEventArgs + parent: OpenTK.Platform.InputLanguageChangedEventArgs langs: - csharp - vb name: KeyboardLayoutDisplayName nameWithType: InputLanguageChangedEventArgs.KeyboardLayoutDisplayName - fullName: OpenTK.Core.Platform.InputLanguageChangedEventArgs.KeyboardLayoutDisplayName + fullName: OpenTK.Platform.InputLanguageChangedEventArgs.KeyboardLayoutDisplayName type: Property source: - remote: - path: src/OpenTK.Core/Platform/WindowEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: KeyboardLayoutDisplayName - path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\WindowEventArgs.cs startLine: 348 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform + - OpenTK.Platform + namespace: OpenTK.Platform summary: The keyboard layout display name. This is the user facing name of the keyboard layout. example: [] syntax: @@ -120,29 +108,25 @@ items: return: type: System.String content.vb: Public Property KeyboardLayoutDisplayName As String - overload: OpenTK.Core.Platform.InputLanguageChangedEventArgs.KeyboardLayoutDisplayName* -- uid: OpenTK.Core.Platform.InputLanguageChangedEventArgs.InputLanguage - commentId: P:OpenTK.Core.Platform.InputLanguageChangedEventArgs.InputLanguage + overload: OpenTK.Platform.InputLanguageChangedEventArgs.KeyboardLayoutDisplayName* +- uid: OpenTK.Platform.InputLanguageChangedEventArgs.InputLanguage + commentId: P:OpenTK.Platform.InputLanguageChangedEventArgs.InputLanguage id: InputLanguage - parent: OpenTK.Core.Platform.InputLanguageChangedEventArgs + parent: OpenTK.Platform.InputLanguageChangedEventArgs langs: - csharp - vb name: InputLanguage nameWithType: InputLanguageChangedEventArgs.InputLanguage - fullName: OpenTK.Core.Platform.InputLanguageChangedEventArgs.InputLanguage + fullName: OpenTK.Platform.InputLanguageChangedEventArgs.InputLanguage type: Property source: - remote: - path: src/OpenTK.Core/Platform/WindowEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: InputLanguage - path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\WindowEventArgs.cs startLine: 356 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform + - OpenTK.Platform + namespace: OpenTK.Platform summary: >- The input language. This is separate from keyboard layout. @@ -157,29 +141,25 @@ items: return: type: System.String content.vb: Public Property InputLanguage As String - overload: OpenTK.Core.Platform.InputLanguageChangedEventArgs.InputLanguage* -- uid: OpenTK.Core.Platform.InputLanguageChangedEventArgs.InputLanguageDisplayName - commentId: P:OpenTK.Core.Platform.InputLanguageChangedEventArgs.InputLanguageDisplayName + overload: OpenTK.Platform.InputLanguageChangedEventArgs.InputLanguage* +- uid: OpenTK.Platform.InputLanguageChangedEventArgs.InputLanguageDisplayName + commentId: P:OpenTK.Platform.InputLanguageChangedEventArgs.InputLanguageDisplayName id: InputLanguageDisplayName - parent: OpenTK.Core.Platform.InputLanguageChangedEventArgs + parent: OpenTK.Platform.InputLanguageChangedEventArgs langs: - csharp - vb name: InputLanguageDisplayName nameWithType: InputLanguageChangedEventArgs.InputLanguageDisplayName - fullName: OpenTK.Core.Platform.InputLanguageChangedEventArgs.InputLanguageDisplayName + fullName: OpenTK.Platform.InputLanguageChangedEventArgs.InputLanguageDisplayName type: Property source: - remote: - path: src/OpenTK.Core/Platform/WindowEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: InputLanguageDisplayName - path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\WindowEventArgs.cs startLine: 361 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform + - OpenTK.Platform + namespace: OpenTK.Platform summary: Localized display name for the new input language. example: [] syntax: @@ -188,30 +168,26 @@ items: return: type: System.String content.vb: Public Property InputLanguageDisplayName As String - overload: OpenTK.Core.Platform.InputLanguageChangedEventArgs.InputLanguageDisplayName* -- uid: OpenTK.Core.Platform.InputLanguageChangedEventArgs.#ctor(System.String,System.String,System.String,System.String) - commentId: M:OpenTK.Core.Platform.InputLanguageChangedEventArgs.#ctor(System.String,System.String,System.String,System.String) + overload: OpenTK.Platform.InputLanguageChangedEventArgs.InputLanguageDisplayName* +- uid: OpenTK.Platform.InputLanguageChangedEventArgs.#ctor(System.String,System.String,System.String,System.String) + commentId: M:OpenTK.Platform.InputLanguageChangedEventArgs.#ctor(System.String,System.String,System.String,System.String) id: '#ctor(System.String,System.String,System.String,System.String)' - parent: OpenTK.Core.Platform.InputLanguageChangedEventArgs + parent: OpenTK.Platform.InputLanguageChangedEventArgs langs: - csharp - vb name: InputLanguageChangedEventArgs(string, string, string, string) nameWithType: InputLanguageChangedEventArgs.InputLanguageChangedEventArgs(string, string, string, string) - fullName: OpenTK.Core.Platform.InputLanguageChangedEventArgs.InputLanguageChangedEventArgs(string, string, string, string) + fullName: OpenTK.Platform.InputLanguageChangedEventArgs.InputLanguageChangedEventArgs(string, string, string, string) type: Constructor source: - remote: - path: src/OpenTK.Core/Platform/WindowEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\WindowEventArgs.cs startLine: 370 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Initializes a new instance of the class. + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Initializes a new instance of the class. example: [] syntax: content: public InputLanguageChangedEventArgs(string keyboardLayout, string keyboardLayoutDisplayName, string inputLanguage, string inputLanguageDisplayName) @@ -229,91 +205,83 @@ items: type: System.String description: The user facing input language of the new language. content.vb: Public Sub New(keyboardLayout As String, keyboardLayoutDisplayName As String, inputLanguage As String, inputLanguageDisplayName As String) - overload: OpenTK.Core.Platform.InputLanguageChangedEventArgs.#ctor* + overload: OpenTK.Platform.InputLanguageChangedEventArgs.#ctor* nameWithType.vb: InputLanguageChangedEventArgs.New(String, String, String, String) - fullName.vb: OpenTK.Core.Platform.InputLanguageChangedEventArgs.New(String, String, String, String) + fullName.vb: OpenTK.Platform.InputLanguageChangedEventArgs.New(String, String, String, String) name.vb: New(String, String, String, String) references: -- uid: OpenTK.Core.Platform.IKeyboardComponent.GetKeyFromScancode(OpenTK.Core.Platform.Scancode) - commentId: M:OpenTK.Core.Platform.IKeyboardComponent.GetKeyFromScancode(OpenTK.Core.Platform.Scancode) - parent: OpenTK.Core.Platform.IKeyboardComponent - href: OpenTK.Core.Platform.IKeyboardComponent.html#OpenTK_Core_Platform_IKeyboardComponent_GetKeyFromScancode_OpenTK_Core_Platform_Scancode_ +- uid: OpenTK.Platform.IKeyboardComponent.GetKeyFromScancode(OpenTK.Platform.Scancode) + commentId: M:OpenTK.Platform.IKeyboardComponent.GetKeyFromScancode(OpenTK.Platform.Scancode) + parent: OpenTK.Platform.IKeyboardComponent + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_GetKeyFromScancode_OpenTK_Platform_Scancode_ name: GetKeyFromScancode(Scancode) nameWithType: IKeyboardComponent.GetKeyFromScancode(Scancode) - fullName: OpenTK.Core.Platform.IKeyboardComponent.GetKeyFromScancode(OpenTK.Core.Platform.Scancode) + fullName: OpenTK.Platform.IKeyboardComponent.GetKeyFromScancode(OpenTK.Platform.Scancode) spec.csharp: - - uid: OpenTK.Core.Platform.IKeyboardComponent.GetKeyFromScancode(OpenTK.Core.Platform.Scancode) + - uid: OpenTK.Platform.IKeyboardComponent.GetKeyFromScancode(OpenTK.Platform.Scancode) name: GetKeyFromScancode - href: OpenTK.Core.Platform.IKeyboardComponent.html#OpenTK_Core_Platform_IKeyboardComponent_GetKeyFromScancode_OpenTK_Core_Platform_Scancode_ + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_GetKeyFromScancode_OpenTK_Platform_Scancode_ - name: ( - - uid: OpenTK.Core.Platform.Scancode + - uid: OpenTK.Platform.Scancode name: Scancode - href: OpenTK.Core.Platform.Scancode.html + href: OpenTK.Platform.Scancode.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IKeyboardComponent.GetKeyFromScancode(OpenTK.Core.Platform.Scancode) + - uid: OpenTK.Platform.IKeyboardComponent.GetKeyFromScancode(OpenTK.Platform.Scancode) name: GetKeyFromScancode - href: OpenTK.Core.Platform.IKeyboardComponent.html#OpenTK_Core_Platform_IKeyboardComponent_GetKeyFromScancode_OpenTK_Core_Platform_Scancode_ + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_GetKeyFromScancode_OpenTK_Platform_Scancode_ - name: ( - - uid: OpenTK.Core.Platform.Scancode + - uid: OpenTK.Platform.Scancode name: Scancode - href: OpenTK.Core.Platform.Scancode.html + href: OpenTK.Platform.Scancode.html - name: ) -- uid: OpenTK.Core.Platform.IKeyboardComponent.GetScancodeFromKey(OpenTK.Core.Platform.Key) - commentId: M:OpenTK.Core.Platform.IKeyboardComponent.GetScancodeFromKey(OpenTK.Core.Platform.Key) - parent: OpenTK.Core.Platform.IKeyboardComponent - href: OpenTK.Core.Platform.IKeyboardComponent.html#OpenTK_Core_Platform_IKeyboardComponent_GetScancodeFromKey_OpenTK_Core_Platform_Key_ +- uid: OpenTK.Platform.IKeyboardComponent.GetScancodeFromKey(OpenTK.Platform.Key) + commentId: M:OpenTK.Platform.IKeyboardComponent.GetScancodeFromKey(OpenTK.Platform.Key) + parent: OpenTK.Platform.IKeyboardComponent + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_GetScancodeFromKey_OpenTK_Platform_Key_ name: GetScancodeFromKey(Key) nameWithType: IKeyboardComponent.GetScancodeFromKey(Key) - fullName: OpenTK.Core.Platform.IKeyboardComponent.GetScancodeFromKey(OpenTK.Core.Platform.Key) + fullName: OpenTK.Platform.IKeyboardComponent.GetScancodeFromKey(OpenTK.Platform.Key) spec.csharp: - - uid: OpenTK.Core.Platform.IKeyboardComponent.GetScancodeFromKey(OpenTK.Core.Platform.Key) + - uid: OpenTK.Platform.IKeyboardComponent.GetScancodeFromKey(OpenTK.Platform.Key) name: GetScancodeFromKey - href: OpenTK.Core.Platform.IKeyboardComponent.html#OpenTK_Core_Platform_IKeyboardComponent_GetScancodeFromKey_OpenTK_Core_Platform_Key_ + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_GetScancodeFromKey_OpenTK_Platform_Key_ - name: ( - - uid: OpenTK.Core.Platform.Key + - uid: OpenTK.Platform.Key name: Key - href: OpenTK.Core.Platform.Key.html + href: OpenTK.Platform.Key.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IKeyboardComponent.GetScancodeFromKey(OpenTK.Core.Platform.Key) + - uid: OpenTK.Platform.IKeyboardComponent.GetScancodeFromKey(OpenTK.Platform.Key) name: GetScancodeFromKey - href: OpenTK.Core.Platform.IKeyboardComponent.html#OpenTK_Core_Platform_IKeyboardComponent_GetScancodeFromKey_OpenTK_Core_Platform_Key_ + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_GetScancodeFromKey_OpenTK_Platform_Key_ - name: ( - - uid: OpenTK.Core.Platform.Key + - uid: OpenTK.Platform.Key name: Key - href: OpenTK.Core.Platform.Key.html + href: OpenTK.Platform.Key.html - name: ) -- uid: OpenTK.Core.Platform - commentId: N:OpenTK.Core.Platform +- uid: OpenTK.Platform + commentId: N:OpenTK.Platform href: OpenTK.html - name: OpenTK.Core.Platform - nameWithType: OpenTK.Core.Platform - fullName: OpenTK.Core.Platform + name: OpenTK.Platform + nameWithType: OpenTK.Platform + fullName: OpenTK.Platform spec.csharp: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html spec.vb: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html - uid: System.Object commentId: T:System.Object parent: System @@ -560,13 +528,13 @@ references: href: https://learn.microsoft.com/dotnet/api/system.object.tostring - name: ( - name: ) -- uid: OpenTK.Core.Platform.IKeyboardComponent - commentId: T:OpenTK.Core.Platform.IKeyboardComponent - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.IKeyboardComponent.html +- uid: OpenTK.Platform.IKeyboardComponent + commentId: T:OpenTK.Platform.IKeyboardComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IKeyboardComponent.html name: IKeyboardComponent nameWithType: IKeyboardComponent - fullName: OpenTK.Core.Platform.IKeyboardComponent + fullName: OpenTK.Platform.IKeyboardComponent - uid: System commentId: N:System isExternal: true @@ -574,12 +542,12 @@ references: name: System nameWithType: System fullName: System -- uid: OpenTK.Core.Platform.InputLanguageChangedEventArgs.KeyboardLayout* - commentId: Overload:OpenTK.Core.Platform.InputLanguageChangedEventArgs.KeyboardLayout - href: OpenTK.Core.Platform.InputLanguageChangedEventArgs.html#OpenTK_Core_Platform_InputLanguageChangedEventArgs_KeyboardLayout +- uid: OpenTK.Platform.InputLanguageChangedEventArgs.KeyboardLayout* + commentId: Overload:OpenTK.Platform.InputLanguageChangedEventArgs.KeyboardLayout + href: OpenTK.Platform.InputLanguageChangedEventArgs.html#OpenTK_Platform_InputLanguageChangedEventArgs_KeyboardLayout name: KeyboardLayout nameWithType: InputLanguageChangedEventArgs.KeyboardLayout - fullName: OpenTK.Core.Platform.InputLanguageChangedEventArgs.KeyboardLayout + fullName: OpenTK.Platform.InputLanguageChangedEventArgs.KeyboardLayout - uid: System.String commentId: T:System.String parent: System @@ -591,36 +559,36 @@ references: nameWithType.vb: String fullName.vb: String name.vb: String -- uid: OpenTK.Core.Platform.InputLanguageChangedEventArgs.KeyboardLayoutDisplayName* - commentId: Overload:OpenTK.Core.Platform.InputLanguageChangedEventArgs.KeyboardLayoutDisplayName - href: OpenTK.Core.Platform.InputLanguageChangedEventArgs.html#OpenTK_Core_Platform_InputLanguageChangedEventArgs_KeyboardLayoutDisplayName +- uid: OpenTK.Platform.InputLanguageChangedEventArgs.KeyboardLayoutDisplayName* + commentId: Overload:OpenTK.Platform.InputLanguageChangedEventArgs.KeyboardLayoutDisplayName + href: OpenTK.Platform.InputLanguageChangedEventArgs.html#OpenTK_Platform_InputLanguageChangedEventArgs_KeyboardLayoutDisplayName name: KeyboardLayoutDisplayName nameWithType: InputLanguageChangedEventArgs.KeyboardLayoutDisplayName - fullName: OpenTK.Core.Platform.InputLanguageChangedEventArgs.KeyboardLayoutDisplayName -- uid: OpenTK.Core.Platform.InputLanguageChangedEventArgs.InputLanguage* - commentId: Overload:OpenTK.Core.Platform.InputLanguageChangedEventArgs.InputLanguage - href: OpenTK.Core.Platform.InputLanguageChangedEventArgs.html#OpenTK_Core_Platform_InputLanguageChangedEventArgs_InputLanguage + fullName: OpenTK.Platform.InputLanguageChangedEventArgs.KeyboardLayoutDisplayName +- uid: OpenTK.Platform.InputLanguageChangedEventArgs.InputLanguage* + commentId: Overload:OpenTK.Platform.InputLanguageChangedEventArgs.InputLanguage + href: OpenTK.Platform.InputLanguageChangedEventArgs.html#OpenTK_Platform_InputLanguageChangedEventArgs_InputLanguage name: InputLanguage nameWithType: InputLanguageChangedEventArgs.InputLanguage - fullName: OpenTK.Core.Platform.InputLanguageChangedEventArgs.InputLanguage -- uid: OpenTK.Core.Platform.InputLanguageChangedEventArgs.InputLanguageDisplayName* - commentId: Overload:OpenTK.Core.Platform.InputLanguageChangedEventArgs.InputLanguageDisplayName - href: OpenTK.Core.Platform.InputLanguageChangedEventArgs.html#OpenTK_Core_Platform_InputLanguageChangedEventArgs_InputLanguageDisplayName + fullName: OpenTK.Platform.InputLanguageChangedEventArgs.InputLanguage +- uid: OpenTK.Platform.InputLanguageChangedEventArgs.InputLanguageDisplayName* + commentId: Overload:OpenTK.Platform.InputLanguageChangedEventArgs.InputLanguageDisplayName + href: OpenTK.Platform.InputLanguageChangedEventArgs.html#OpenTK_Platform_InputLanguageChangedEventArgs_InputLanguageDisplayName name: InputLanguageDisplayName nameWithType: InputLanguageChangedEventArgs.InputLanguageDisplayName - fullName: OpenTK.Core.Platform.InputLanguageChangedEventArgs.InputLanguageDisplayName -- uid: OpenTK.Core.Platform.InputLanguageChangedEventArgs - commentId: T:OpenTK.Core.Platform.InputLanguageChangedEventArgs - href: OpenTK.Core.Platform.InputLanguageChangedEventArgs.html + fullName: OpenTK.Platform.InputLanguageChangedEventArgs.InputLanguageDisplayName +- uid: OpenTK.Platform.InputLanguageChangedEventArgs + commentId: T:OpenTK.Platform.InputLanguageChangedEventArgs + href: OpenTK.Platform.InputLanguageChangedEventArgs.html name: InputLanguageChangedEventArgs nameWithType: InputLanguageChangedEventArgs - fullName: OpenTK.Core.Platform.InputLanguageChangedEventArgs -- uid: OpenTK.Core.Platform.InputLanguageChangedEventArgs.#ctor* - commentId: Overload:OpenTK.Core.Platform.InputLanguageChangedEventArgs.#ctor - href: OpenTK.Core.Platform.InputLanguageChangedEventArgs.html#OpenTK_Core_Platform_InputLanguageChangedEventArgs__ctor_System_String_System_String_System_String_System_String_ + fullName: OpenTK.Platform.InputLanguageChangedEventArgs +- uid: OpenTK.Platform.InputLanguageChangedEventArgs.#ctor* + commentId: Overload:OpenTK.Platform.InputLanguageChangedEventArgs.#ctor + href: OpenTK.Platform.InputLanguageChangedEventArgs.html#OpenTK_Platform_InputLanguageChangedEventArgs__ctor_System_String_System_String_System_String_System_String_ name: InputLanguageChangedEventArgs nameWithType: InputLanguageChangedEventArgs.InputLanguageChangedEventArgs - fullName: OpenTK.Core.Platform.InputLanguageChangedEventArgs.InputLanguageChangedEventArgs + fullName: OpenTK.Platform.InputLanguageChangedEventArgs.InputLanguageChangedEventArgs nameWithType.vb: InputLanguageChangedEventArgs.New - fullName.vb: OpenTK.Core.Platform.InputLanguageChangedEventArgs.New + fullName.vb: OpenTK.Platform.InputLanguageChangedEventArgs.New name.vb: New diff --git a/api/OpenTK.Platform.JoystickAxis.yml b/api/OpenTK.Platform.JoystickAxis.yml new file mode 100644 index 00000000..fc79d52e --- /dev/null +++ b/api/OpenTK.Platform.JoystickAxis.yml @@ -0,0 +1,194 @@ +### YamlMime:ManagedReference +items: +- uid: OpenTK.Platform.JoystickAxis + commentId: T:OpenTK.Platform.JoystickAxis + id: JoystickAxis + parent: OpenTK.Platform + children: + - OpenTK.Platform.JoystickAxis.LeftTrigger + - OpenTK.Platform.JoystickAxis.LeftXAxis + - OpenTK.Platform.JoystickAxis.LeftYAxis + - OpenTK.Platform.JoystickAxis.RightTrigger + - OpenTK.Platform.JoystickAxis.RightXAxis + - OpenTK.Platform.JoystickAxis.RightYAxis + langs: + - csharp + - vb + name: JoystickAxis + nameWithType: JoystickAxis + fullName: OpenTK.Platform.JoystickAxis + type: Enum + source: + id: JoystickAxis + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\JoystickAxis.cs + startLine: 11 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Represents a joysick axis. + example: [] + syntax: + content: public enum JoystickAxis + content.vb: Public Enum JoystickAxis +- uid: OpenTK.Platform.JoystickAxis.LeftXAxis + commentId: F:OpenTK.Platform.JoystickAxis.LeftXAxis + id: LeftXAxis + parent: OpenTK.Platform.JoystickAxis + langs: + - csharp + - vb + name: LeftXAxis + nameWithType: JoystickAxis.LeftXAxis + fullName: OpenTK.Platform.JoystickAxis.LeftXAxis + type: Field + source: + id: LeftXAxis + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\JoystickAxis.cs + startLine: 13 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: LeftXAxis = 0 + return: + type: OpenTK.Platform.JoystickAxis +- uid: OpenTK.Platform.JoystickAxis.LeftYAxis + commentId: F:OpenTK.Platform.JoystickAxis.LeftYAxis + id: LeftYAxis + parent: OpenTK.Platform.JoystickAxis + langs: + - csharp + - vb + name: LeftYAxis + nameWithType: JoystickAxis.LeftYAxis + fullName: OpenTK.Platform.JoystickAxis.LeftYAxis + type: Field + source: + id: LeftYAxis + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\JoystickAxis.cs + startLine: 14 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: LeftYAxis = 1 + return: + type: OpenTK.Platform.JoystickAxis +- uid: OpenTK.Platform.JoystickAxis.RightYAxis + commentId: F:OpenTK.Platform.JoystickAxis.RightYAxis + id: RightYAxis + parent: OpenTK.Platform.JoystickAxis + langs: + - csharp + - vb + name: RightYAxis + nameWithType: JoystickAxis.RightYAxis + fullName: OpenTK.Platform.JoystickAxis.RightYAxis + type: Field + source: + id: RightYAxis + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\JoystickAxis.cs + startLine: 16 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: RightYAxis = 2 + return: + type: OpenTK.Platform.JoystickAxis +- uid: OpenTK.Platform.JoystickAxis.RightXAxis + commentId: F:OpenTK.Platform.JoystickAxis.RightXAxis + id: RightXAxis + parent: OpenTK.Platform.JoystickAxis + langs: + - csharp + - vb + name: RightXAxis + nameWithType: JoystickAxis.RightXAxis + fullName: OpenTK.Platform.JoystickAxis.RightXAxis + type: Field + source: + id: RightXAxis + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\JoystickAxis.cs + startLine: 17 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: RightXAxis = 3 + return: + type: OpenTK.Platform.JoystickAxis +- uid: OpenTK.Platform.JoystickAxis.LeftTrigger + commentId: F:OpenTK.Platform.JoystickAxis.LeftTrigger + id: LeftTrigger + parent: OpenTK.Platform.JoystickAxis + langs: + - csharp + - vb + name: LeftTrigger + nameWithType: JoystickAxis.LeftTrigger + fullName: OpenTK.Platform.JoystickAxis.LeftTrigger + type: Field + source: + id: LeftTrigger + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\JoystickAxis.cs + startLine: 19 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: LeftTrigger = 4 + return: + type: OpenTK.Platform.JoystickAxis +- uid: OpenTK.Platform.JoystickAxis.RightTrigger + commentId: F:OpenTK.Platform.JoystickAxis.RightTrigger + id: RightTrigger + parent: OpenTK.Platform.JoystickAxis + langs: + - csharp + - vb + name: RightTrigger + nameWithType: JoystickAxis.RightTrigger + fullName: OpenTK.Platform.JoystickAxis.RightTrigger + type: Field + source: + id: RightTrigger + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\JoystickAxis.cs + startLine: 20 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: RightTrigger = 5 + return: + type: OpenTK.Platform.JoystickAxis +references: +- uid: OpenTK.Platform + commentId: N:OpenTK.Platform + href: OpenTK.html + name: OpenTK.Platform + nameWithType: OpenTK.Platform + fullName: OpenTK.Platform + spec.csharp: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Platform + name: Platform + href: OpenTK.Platform.html + spec.vb: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Platform + name: Platform + href: OpenTK.Platform.html +- uid: OpenTK.Platform.JoystickAxis + commentId: T:OpenTK.Platform.JoystickAxis + parent: OpenTK.Platform + href: OpenTK.Platform.JoystickAxis.html + name: JoystickAxis + nameWithType: JoystickAxis + fullName: OpenTK.Platform.JoystickAxis diff --git a/api/OpenTK.Platform.JoystickButton.yml b/api/OpenTK.Platform.JoystickButton.yml new file mode 100644 index 00000000..24ebb90d --- /dev/null +++ b/api/OpenTK.Platform.JoystickButton.yml @@ -0,0 +1,378 @@ +### YamlMime:ManagedReference +items: +- uid: OpenTK.Platform.JoystickButton + commentId: T:OpenTK.Platform.JoystickButton + id: JoystickButton + parent: OpenTK.Platform + children: + - OpenTK.Platform.JoystickButton.A + - OpenTK.Platform.JoystickButton.B + - OpenTK.Platform.JoystickButton.Back + - OpenTK.Platform.JoystickButton.DPadDown + - OpenTK.Platform.JoystickButton.DPadLeft + - OpenTK.Platform.JoystickButton.DPadRight + - OpenTK.Platform.JoystickButton.DPadUp + - OpenTK.Platform.JoystickButton.LeftShoulder + - OpenTK.Platform.JoystickButton.LeftThumb + - OpenTK.Platform.JoystickButton.RightShoulder + - OpenTK.Platform.JoystickButton.RightThumb + - OpenTK.Platform.JoystickButton.Start + - OpenTK.Platform.JoystickButton.X + - OpenTK.Platform.JoystickButton.Y + langs: + - csharp + - vb + name: JoystickButton + nameWithType: JoystickButton + fullName: OpenTK.Platform.JoystickButton + type: Enum + source: + id: JoystickButton + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\JoystickButton.cs + startLine: 11 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Represents a button on a joystick. + example: [] + syntax: + content: public enum JoystickButton + content.vb: Public Enum JoystickButton +- uid: OpenTK.Platform.JoystickButton.A + commentId: F:OpenTK.Platform.JoystickButton.A + id: A + parent: OpenTK.Platform.JoystickButton + langs: + - csharp + - vb + name: A + nameWithType: JoystickButton.A + fullName: OpenTK.Platform.JoystickButton.A + type: Field + source: + id: A + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\JoystickButton.cs + startLine: 13 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: A = 0 + return: + type: OpenTK.Platform.JoystickButton +- uid: OpenTK.Platform.JoystickButton.B + commentId: F:OpenTK.Platform.JoystickButton.B + id: B + parent: OpenTK.Platform.JoystickButton + langs: + - csharp + - vb + name: B + nameWithType: JoystickButton.B + fullName: OpenTK.Platform.JoystickButton.B + type: Field + source: + id: B + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\JoystickButton.cs + startLine: 14 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: B = 1 + return: + type: OpenTK.Platform.JoystickButton +- uid: OpenTK.Platform.JoystickButton.X + commentId: F:OpenTK.Platform.JoystickButton.X + id: X + parent: OpenTK.Platform.JoystickButton + langs: + - csharp + - vb + name: X + nameWithType: JoystickButton.X + fullName: OpenTK.Platform.JoystickButton.X + type: Field + source: + id: X + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\JoystickButton.cs + startLine: 15 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: X = 2 + return: + type: OpenTK.Platform.JoystickButton +- uid: OpenTK.Platform.JoystickButton.Y + commentId: F:OpenTK.Platform.JoystickButton.Y + id: Y + parent: OpenTK.Platform.JoystickButton + langs: + - csharp + - vb + name: Y + nameWithType: JoystickButton.Y + fullName: OpenTK.Platform.JoystickButton.Y + type: Field + source: + id: Y + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\JoystickButton.cs + startLine: 16 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: Y = 3 + return: + type: OpenTK.Platform.JoystickButton +- uid: OpenTK.Platform.JoystickButton.Start + commentId: F:OpenTK.Platform.JoystickButton.Start + id: Start + parent: OpenTK.Platform.JoystickButton + langs: + - csharp + - vb + name: Start + nameWithType: JoystickButton.Start + fullName: OpenTK.Platform.JoystickButton.Start + type: Field + source: + id: Start + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\JoystickButton.cs + startLine: 17 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: Start = 4 + return: + type: OpenTK.Platform.JoystickButton +- uid: OpenTK.Platform.JoystickButton.Back + commentId: F:OpenTK.Platform.JoystickButton.Back + id: Back + parent: OpenTK.Platform.JoystickButton + langs: + - csharp + - vb + name: Back + nameWithType: JoystickButton.Back + fullName: OpenTK.Platform.JoystickButton.Back + type: Field + source: + id: Back + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\JoystickButton.cs + startLine: 18 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: Back = 5 + return: + type: OpenTK.Platform.JoystickButton +- uid: OpenTK.Platform.JoystickButton.LeftThumb + commentId: F:OpenTK.Platform.JoystickButton.LeftThumb + id: LeftThumb + parent: OpenTK.Platform.JoystickButton + langs: + - csharp + - vb + name: LeftThumb + nameWithType: JoystickButton.LeftThumb + fullName: OpenTK.Platform.JoystickButton.LeftThumb + type: Field + source: + id: LeftThumb + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\JoystickButton.cs + startLine: 19 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: LeftThumb = 6 + return: + type: OpenTK.Platform.JoystickButton +- uid: OpenTK.Platform.JoystickButton.RightThumb + commentId: F:OpenTK.Platform.JoystickButton.RightThumb + id: RightThumb + parent: OpenTK.Platform.JoystickButton + langs: + - csharp + - vb + name: RightThumb + nameWithType: JoystickButton.RightThumb + fullName: OpenTK.Platform.JoystickButton.RightThumb + type: Field + source: + id: RightThumb + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\JoystickButton.cs + startLine: 20 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: RightThumb = 7 + return: + type: OpenTK.Platform.JoystickButton +- uid: OpenTK.Platform.JoystickButton.LeftShoulder + commentId: F:OpenTK.Platform.JoystickButton.LeftShoulder + id: LeftShoulder + parent: OpenTK.Platform.JoystickButton + langs: + - csharp + - vb + name: LeftShoulder + nameWithType: JoystickButton.LeftShoulder + fullName: OpenTK.Platform.JoystickButton.LeftShoulder + type: Field + source: + id: LeftShoulder + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\JoystickButton.cs + startLine: 21 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: LeftShoulder = 8 + return: + type: OpenTK.Platform.JoystickButton +- uid: OpenTK.Platform.JoystickButton.RightShoulder + commentId: F:OpenTK.Platform.JoystickButton.RightShoulder + id: RightShoulder + parent: OpenTK.Platform.JoystickButton + langs: + - csharp + - vb + name: RightShoulder + nameWithType: JoystickButton.RightShoulder + fullName: OpenTK.Platform.JoystickButton.RightShoulder + type: Field + source: + id: RightShoulder + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\JoystickButton.cs + startLine: 22 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: RightShoulder = 9 + return: + type: OpenTK.Platform.JoystickButton +- uid: OpenTK.Platform.JoystickButton.DPadUp + commentId: F:OpenTK.Platform.JoystickButton.DPadUp + id: DPadUp + parent: OpenTK.Platform.JoystickButton + langs: + - csharp + - vb + name: DPadUp + nameWithType: JoystickButton.DPadUp + fullName: OpenTK.Platform.JoystickButton.DPadUp + type: Field + source: + id: DPadUp + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\JoystickButton.cs + startLine: 23 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: DPadUp = 10 + return: + type: OpenTK.Platform.JoystickButton +- uid: OpenTK.Platform.JoystickButton.DPadDown + commentId: F:OpenTK.Platform.JoystickButton.DPadDown + id: DPadDown + parent: OpenTK.Platform.JoystickButton + langs: + - csharp + - vb + name: DPadDown + nameWithType: JoystickButton.DPadDown + fullName: OpenTK.Platform.JoystickButton.DPadDown + type: Field + source: + id: DPadDown + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\JoystickButton.cs + startLine: 24 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: DPadDown = 11 + return: + type: OpenTK.Platform.JoystickButton +- uid: OpenTK.Platform.JoystickButton.DPadLeft + commentId: F:OpenTK.Platform.JoystickButton.DPadLeft + id: DPadLeft + parent: OpenTK.Platform.JoystickButton + langs: + - csharp + - vb + name: DPadLeft + nameWithType: JoystickButton.DPadLeft + fullName: OpenTK.Platform.JoystickButton.DPadLeft + type: Field + source: + id: DPadLeft + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\JoystickButton.cs + startLine: 25 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: DPadLeft = 12 + return: + type: OpenTK.Platform.JoystickButton +- uid: OpenTK.Platform.JoystickButton.DPadRight + commentId: F:OpenTK.Platform.JoystickButton.DPadRight + id: DPadRight + parent: OpenTK.Platform.JoystickButton + langs: + - csharp + - vb + name: DPadRight + nameWithType: JoystickButton.DPadRight + fullName: OpenTK.Platform.JoystickButton.DPadRight + type: Field + source: + id: DPadRight + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\JoystickButton.cs + startLine: 26 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: DPadRight = 13 + return: + type: OpenTK.Platform.JoystickButton +references: +- uid: OpenTK.Platform + commentId: N:OpenTK.Platform + href: OpenTK.html + name: OpenTK.Platform + nameWithType: OpenTK.Platform + fullName: OpenTK.Platform + spec.csharp: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Platform + name: Platform + href: OpenTK.Platform.html + spec.vb: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Platform + name: Platform + href: OpenTK.Platform.html +- uid: OpenTK.Platform.JoystickButton + commentId: T:OpenTK.Platform.JoystickButton + parent: OpenTK.Platform + href: OpenTK.Platform.JoystickButton.html + name: JoystickButton + nameWithType: JoystickButton + fullName: OpenTK.Platform.JoystickButton diff --git a/api/OpenTK.Core.Platform.JoystickHandle.yml b/api/OpenTK.Platform.JoystickHandle.yml similarity index 77% rename from api/OpenTK.Core.Platform.JoystickHandle.yml rename to api/OpenTK.Platform.JoystickHandle.yml index 5727d658..e0447480 100644 --- a/api/OpenTK.Core.Platform.JoystickHandle.yml +++ b/api/OpenTK.Platform.JoystickHandle.yml @@ -1,28 +1,24 @@ ### YamlMime:ManagedReference items: -- uid: OpenTK.Core.Platform.JoystickHandle - commentId: T:OpenTK.Core.Platform.JoystickHandle +- uid: OpenTK.Platform.JoystickHandle + commentId: T:OpenTK.Platform.JoystickHandle id: JoystickHandle - parent: OpenTK.Core.Platform + parent: OpenTK.Platform children: [] langs: - csharp - vb name: JoystickHandle nameWithType: JoystickHandle - fullName: OpenTK.Core.Platform.JoystickHandle + fullName: OpenTK.Platform.JoystickHandle type: Class source: - remote: - path: src/OpenTK.Core/Platform/Handles/JoystickHandle.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: JoystickHandle - path: opentk/src/OpenTK.Core/Platform/Handles/JoystickHandle.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Handles\JoystickHandle.cs startLine: 11 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform + - OpenTK.Platform + namespace: OpenTK.Platform summary: Handle to a joystick. example: [] syntax: @@ -30,10 +26,10 @@ items: content.vb: Public Class JoystickHandle Inherits PalHandle inheritance: - System.Object - - OpenTK.Core.Platform.PalHandle + - OpenTK.Platform.PalHandle inheritedMembers: - - OpenTK.Core.Platform.PalHandle.UserData - - OpenTK.Core.Platform.PalHandle.As``1(OpenTK.Core.Platform.IPalComponent) + - OpenTK.Platform.PalHandle.UserData + - OpenTK.Platform.PalHandle.As``1(OpenTK.Platform.IPalComponent) - System.Object.Equals(System.Object) - System.Object.Equals(System.Object,System.Object) - System.Object.GetHashCode @@ -42,36 +38,28 @@ items: - System.Object.ReferenceEquals(System.Object,System.Object) - System.Object.ToString references: -- uid: OpenTK.Core.Platform - commentId: N:OpenTK.Core.Platform +- uid: OpenTK.Platform + commentId: N:OpenTK.Platform href: OpenTK.html - name: OpenTK.Core.Platform - nameWithType: OpenTK.Core.Platform - fullName: OpenTK.Core.Platform + name: OpenTK.Platform + nameWithType: OpenTK.Platform + fullName: OpenTK.Platform spec.csharp: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html spec.vb: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html - uid: System.Object commentId: T:System.Object parent: System @@ -83,55 +71,55 @@ references: nameWithType.vb: Object fullName.vb: Object name.vb: Object -- uid: OpenTK.Core.Platform.PalHandle - commentId: T:OpenTK.Core.Platform.PalHandle - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.PalHandle.html +- uid: OpenTK.Platform.PalHandle + commentId: T:OpenTK.Platform.PalHandle + parent: OpenTK.Platform + href: OpenTK.Platform.PalHandle.html name: PalHandle nameWithType: PalHandle - fullName: OpenTK.Core.Platform.PalHandle -- uid: OpenTK.Core.Platform.PalHandle.UserData - commentId: P:OpenTK.Core.Platform.PalHandle.UserData - parent: OpenTK.Core.Platform.PalHandle - href: OpenTK.Core.Platform.PalHandle.html#OpenTK_Core_Platform_PalHandle_UserData + fullName: OpenTK.Platform.PalHandle +- uid: OpenTK.Platform.PalHandle.UserData + commentId: P:OpenTK.Platform.PalHandle.UserData + parent: OpenTK.Platform.PalHandle + href: OpenTK.Platform.PalHandle.html#OpenTK_Platform_PalHandle_UserData name: UserData nameWithType: PalHandle.UserData - fullName: OpenTK.Core.Platform.PalHandle.UserData -- uid: OpenTK.Core.Platform.PalHandle.As``1(OpenTK.Core.Platform.IPalComponent) - commentId: M:OpenTK.Core.Platform.PalHandle.As``1(OpenTK.Core.Platform.IPalComponent) - parent: OpenTK.Core.Platform.PalHandle - href: OpenTK.Core.Platform.PalHandle.html#OpenTK_Core_Platform_PalHandle_As__1_OpenTK_Core_Platform_IPalComponent_ + fullName: OpenTK.Platform.PalHandle.UserData +- uid: OpenTK.Platform.PalHandle.As``1(OpenTK.Platform.IPalComponent) + commentId: M:OpenTK.Platform.PalHandle.As``1(OpenTK.Platform.IPalComponent) + parent: OpenTK.Platform.PalHandle + href: OpenTK.Platform.PalHandle.html#OpenTK_Platform_PalHandle_As__1_OpenTK_Platform_IPalComponent_ name: As(IPalComponent) nameWithType: PalHandle.As(IPalComponent) - fullName: OpenTK.Core.Platform.PalHandle.As(OpenTK.Core.Platform.IPalComponent) + fullName: OpenTK.Platform.PalHandle.As(OpenTK.Platform.IPalComponent) nameWithType.vb: PalHandle.As(Of T)(IPalComponent) - fullName.vb: OpenTK.Core.Platform.PalHandle.As(Of T)(OpenTK.Core.Platform.IPalComponent) + fullName.vb: OpenTK.Platform.PalHandle.As(Of T)(OpenTK.Platform.IPalComponent) name.vb: As(Of T)(IPalComponent) spec.csharp: - - uid: OpenTK.Core.Platform.PalHandle.As``1(OpenTK.Core.Platform.IPalComponent) + - uid: OpenTK.Platform.PalHandle.As``1(OpenTK.Platform.IPalComponent) name: As - href: OpenTK.Core.Platform.PalHandle.html#OpenTK_Core_Platform_PalHandle_As__1_OpenTK_Core_Platform_IPalComponent_ + href: OpenTK.Platform.PalHandle.html#OpenTK_Platform_PalHandle_As__1_OpenTK_Platform_IPalComponent_ - name: < - name: T - name: '>' - name: ( - - uid: OpenTK.Core.Platform.IPalComponent + - uid: OpenTK.Platform.IPalComponent name: IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html + href: OpenTK.Platform.IPalComponent.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.PalHandle.As``1(OpenTK.Core.Platform.IPalComponent) + - uid: OpenTK.Platform.PalHandle.As``1(OpenTK.Platform.IPalComponent) name: As - href: OpenTK.Core.Platform.PalHandle.html#OpenTK_Core_Platform_PalHandle_As__1_OpenTK_Core_Platform_IPalComponent_ + href: OpenTK.Platform.PalHandle.html#OpenTK_Platform_PalHandle_As__1_OpenTK_Platform_IPalComponent_ - name: ( - name: Of - name: " " - name: T - name: ) - name: ( - - uid: OpenTK.Core.Platform.IPalComponent + - uid: OpenTK.Platform.IPalComponent name: IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html + href: OpenTK.Platform.IPalComponent.html - name: ) - uid: System.Object.Equals(System.Object) commentId: M:System.Object.Equals(System.Object) diff --git a/api/OpenTK.Platform.Key.yml b/api/OpenTK.Platform.Key.yml new file mode 100644 index 00000000..c7e9e067 --- /dev/null +++ b/api/OpenTK.Platform.Key.yml @@ -0,0 +1,3356 @@ +### YamlMime:ManagedReference +items: +- uid: OpenTK.Platform.Key + commentId: T:OpenTK.Platform.Key + id: Key + parent: OpenTK.Platform + children: + - OpenTK.Platform.Key.A + - OpenTK.Platform.Key.Application + - OpenTK.Platform.Key.B + - OpenTK.Platform.Key.Backspace + - OpenTK.Platform.Key.C + - OpenTK.Platform.Key.CapsLock + - OpenTK.Platform.Key.Comma + - OpenTK.Platform.Key.D + - OpenTK.Platform.Key.D0 + - OpenTK.Platform.Key.D1 + - OpenTK.Platform.Key.D2 + - OpenTK.Platform.Key.D3 + - OpenTK.Platform.Key.D4 + - OpenTK.Platform.Key.D5 + - OpenTK.Platform.Key.D6 + - OpenTK.Platform.Key.D7 + - OpenTK.Platform.Key.D8 + - OpenTK.Platform.Key.D9 + - OpenTK.Platform.Key.Delete + - OpenTK.Platform.Key.DownArrow + - OpenTK.Platform.Key.E + - OpenTK.Platform.Key.End + - OpenTK.Platform.Key.Escape + - OpenTK.Platform.Key.F + - OpenTK.Platform.Key.F1 + - OpenTK.Platform.Key.F10 + - OpenTK.Platform.Key.F11 + - OpenTK.Platform.Key.F12 + - OpenTK.Platform.Key.F13 + - OpenTK.Platform.Key.F14 + - OpenTK.Platform.Key.F15 + - OpenTK.Platform.Key.F16 + - OpenTK.Platform.Key.F17 + - OpenTK.Platform.Key.F18 + - OpenTK.Platform.Key.F19 + - OpenTK.Platform.Key.F2 + - OpenTK.Platform.Key.F20 + - OpenTK.Platform.Key.F21 + - OpenTK.Platform.Key.F22 + - OpenTK.Platform.Key.F23 + - OpenTK.Platform.Key.F24 + - OpenTK.Platform.Key.F3 + - OpenTK.Platform.Key.F4 + - OpenTK.Platform.Key.F5 + - OpenTK.Platform.Key.F6 + - OpenTK.Platform.Key.F7 + - OpenTK.Platform.Key.F8 + - OpenTK.Platform.Key.F9 + - OpenTK.Platform.Key.G + - OpenTK.Platform.Key.H + - OpenTK.Platform.Key.Help + - OpenTK.Platform.Key.Home + - OpenTK.Platform.Key.I + - OpenTK.Platform.Key.Insert + - OpenTK.Platform.Key.J + - OpenTK.Platform.Key.K + - OpenTK.Platform.Key.Keypad0 + - OpenTK.Platform.Key.Keypad1 + - OpenTK.Platform.Key.Keypad2 + - OpenTK.Platform.Key.Keypad3 + - OpenTK.Platform.Key.Keypad4 + - OpenTK.Platform.Key.Keypad5 + - OpenTK.Platform.Key.Keypad6 + - OpenTK.Platform.Key.Keypad7 + - OpenTK.Platform.Key.Keypad8 + - OpenTK.Platform.Key.Keypad9 + - OpenTK.Platform.Key.KeypadAdd + - OpenTK.Platform.Key.KeypadDecimal + - OpenTK.Platform.Key.KeypadDivide + - OpenTK.Platform.Key.KeypadEnter + - OpenTK.Platform.Key.KeypadEqual + - OpenTK.Platform.Key.KeypadMultiply + - OpenTK.Platform.Key.KeypadSeparator + - OpenTK.Platform.Key.KeypadSubtract + - OpenTK.Platform.Key.L + - OpenTK.Platform.Key.LeftAlt + - OpenTK.Platform.Key.LeftArrow + - OpenTK.Platform.Key.LeftControl + - OpenTK.Platform.Key.LeftGUI + - OpenTK.Platform.Key.LeftShift + - OpenTK.Platform.Key.M + - OpenTK.Platform.Key.Minus + - OpenTK.Platform.Key.Mute + - OpenTK.Platform.Key.N + - OpenTK.Platform.Key.NextTrack + - OpenTK.Platform.Key.NumLock + - OpenTK.Platform.Key.O + - OpenTK.Platform.Key.OEM1 + - OpenTK.Platform.Key.OEM102 + - OpenTK.Platform.Key.OEM2 + - OpenTK.Platform.Key.OEM3 + - OpenTK.Platform.Key.OEM4 + - OpenTK.Platform.Key.OEM5 + - OpenTK.Platform.Key.OEM6 + - OpenTK.Platform.Key.OEM7 + - OpenTK.Platform.Key.OEM8 + - OpenTK.Platform.Key.P + - OpenTK.Platform.Key.PageDown + - OpenTK.Platform.Key.PageUp + - OpenTK.Platform.Key.PauseBreak + - OpenTK.Platform.Key.Period + - OpenTK.Platform.Key.PlayPause + - OpenTK.Platform.Key.Plus + - OpenTK.Platform.Key.PreviousTrack + - OpenTK.Platform.Key.PrintScreen + - OpenTK.Platform.Key.Q + - OpenTK.Platform.Key.R + - OpenTK.Platform.Key.Return + - OpenTK.Platform.Key.RightAlt + - OpenTK.Platform.Key.RightArrow + - OpenTK.Platform.Key.RightControl + - OpenTK.Platform.Key.RightGUI + - OpenTK.Platform.Key.RightShift + - OpenTK.Platform.Key.S + - OpenTK.Platform.Key.ScrollLock + - OpenTK.Platform.Key.Sleep + - OpenTK.Platform.Key.Space + - OpenTK.Platform.Key.Stop + - OpenTK.Platform.Key.T + - OpenTK.Platform.Key.Tab + - OpenTK.Platform.Key.U + - OpenTK.Platform.Key.Unknown + - OpenTK.Platform.Key.UpArrow + - OpenTK.Platform.Key.V + - OpenTK.Platform.Key.VolumeDown + - OpenTK.Platform.Key.VolumeUp + - OpenTK.Platform.Key.W + - OpenTK.Platform.Key.X + - OpenTK.Platform.Key.Y + - OpenTK.Platform.Key.Z + langs: + - csharp + - vb + name: Key + nameWithType: Key + fullName: OpenTK.Platform.Key + type: Enum + source: + id: Key + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Key.cs + startLine: 9 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: public enum Key + content.vb: Public Enum Key +- uid: OpenTK.Platform.Key.Unknown + commentId: F:OpenTK.Platform.Key.Unknown + id: Unknown + parent: OpenTK.Platform.Key + langs: + - csharp + - vb + name: Unknown + nameWithType: Key.Unknown + fullName: OpenTK.Platform.Key.Unknown + type: Field + source: + id: Unknown + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Key.cs + startLine: 15 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: >- + An unknown key. + + This is likely an error. + example: [] + syntax: + content: Unknown = 0 + return: + type: OpenTK.Platform.Key +- uid: OpenTK.Platform.Key.Backspace + commentId: F:OpenTK.Platform.Key.Backspace + id: Backspace + parent: OpenTK.Platform.Key + langs: + - csharp + - vb + name: Backspace + nameWithType: Key.Backspace + fullName: OpenTK.Platform.Key.Backspace + type: Field + source: + id: Backspace + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Key.cs + startLine: 22 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: The backspace key. + example: [] + syntax: + content: Backspace = 1 + return: + type: OpenTK.Platform.Key +- uid: OpenTK.Platform.Key.Tab + commentId: F:OpenTK.Platform.Key.Tab + id: Tab + parent: OpenTK.Platform.Key + langs: + - csharp + - vb + name: Tab + nameWithType: Key.Tab + fullName: OpenTK.Platform.Key.Tab + type: Field + source: + id: Tab + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Key.cs + startLine: 26 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: The tab key. + example: [] + syntax: + content: Tab = 2 + return: + type: OpenTK.Platform.Key +- uid: OpenTK.Platform.Key.Return + commentId: F:OpenTK.Platform.Key.Return + id: Return + parent: OpenTK.Platform.Key + langs: + - csharp + - vb + name: Return + nameWithType: Key.Return + fullName: OpenTK.Platform.Key.Return + type: Field + source: + id: Return + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Key.cs + startLine: 30 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: The return/enter key. + example: [] + syntax: + content: Return = 3 + return: + type: OpenTK.Platform.Key +- uid: OpenTK.Platform.Key.Escape + commentId: F:OpenTK.Platform.Key.Escape + id: Escape + parent: OpenTK.Platform.Key + langs: + - csharp + - vb + name: Escape + nameWithType: Key.Escape + fullName: OpenTK.Platform.Key.Escape + type: Field + source: + id: Escape + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Key.cs + startLine: 34 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: The escape key. + example: [] + syntax: + content: Escape = 4 + return: + type: OpenTK.Platform.Key +- uid: OpenTK.Platform.Key.Space + commentId: F:OpenTK.Platform.Key.Space + id: Space + parent: OpenTK.Platform.Key + langs: + - csharp + - vb + name: Space + nameWithType: Key.Space + fullName: OpenTK.Platform.Key.Space + type: Field + source: + id: Space + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Key.cs + startLine: 39 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: The space key. + example: [] + syntax: + content: Space = 32 + return: + type: OpenTK.Platform.Key +- uid: OpenTK.Platform.Key.D0 + commentId: F:OpenTK.Platform.Key.D0 + id: D0 + parent: OpenTK.Platform.Key + langs: + - csharp + - vb + name: D0 + nameWithType: Key.D0 + fullName: OpenTK.Platform.Key.D0 + type: Field + source: + id: D0 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Key.cs + startLine: 44 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: The 0 key. + example: [] + syntax: + content: D0 = 48 + return: + type: OpenTK.Platform.Key +- uid: OpenTK.Platform.Key.D1 + commentId: F:OpenTK.Platform.Key.D1 + id: D1 + parent: OpenTK.Platform.Key + langs: + - csharp + - vb + name: D1 + nameWithType: Key.D1 + fullName: OpenTK.Platform.Key.D1 + type: Field + source: + id: D1 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Key.cs + startLine: 48 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: The 1 key. + example: [] + syntax: + content: D1 = 49 + return: + type: OpenTK.Platform.Key +- uid: OpenTK.Platform.Key.D2 + commentId: F:OpenTK.Platform.Key.D2 + id: D2 + parent: OpenTK.Platform.Key + langs: + - csharp + - vb + name: D2 + nameWithType: Key.D2 + fullName: OpenTK.Platform.Key.D2 + type: Field + source: + id: D2 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Key.cs + startLine: 52 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: The 2 key. + example: [] + syntax: + content: D2 = 50 + return: + type: OpenTK.Platform.Key +- uid: OpenTK.Platform.Key.D3 + commentId: F:OpenTK.Platform.Key.D3 + id: D3 + parent: OpenTK.Platform.Key + langs: + - csharp + - vb + name: D3 + nameWithType: Key.D3 + fullName: OpenTK.Platform.Key.D3 + type: Field + source: + id: D3 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Key.cs + startLine: 56 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: The 3 key. + example: [] + syntax: + content: D3 = 51 + return: + type: OpenTK.Platform.Key +- uid: OpenTK.Platform.Key.D4 + commentId: F:OpenTK.Platform.Key.D4 + id: D4 + parent: OpenTK.Platform.Key + langs: + - csharp + - vb + name: D4 + nameWithType: Key.D4 + fullName: OpenTK.Platform.Key.D4 + type: Field + source: + id: D4 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Key.cs + startLine: 60 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: The 4 key. + example: [] + syntax: + content: D4 = 52 + return: + type: OpenTK.Platform.Key +- uid: OpenTK.Platform.Key.D5 + commentId: F:OpenTK.Platform.Key.D5 + id: D5 + parent: OpenTK.Platform.Key + langs: + - csharp + - vb + name: D5 + nameWithType: Key.D5 + fullName: OpenTK.Platform.Key.D5 + type: Field + source: + id: D5 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Key.cs + startLine: 64 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: The 5 key. + example: [] + syntax: + content: D5 = 53 + return: + type: OpenTK.Platform.Key +- uid: OpenTK.Platform.Key.D6 + commentId: F:OpenTK.Platform.Key.D6 + id: D6 + parent: OpenTK.Platform.Key + langs: + - csharp + - vb + name: D6 + nameWithType: Key.D6 + fullName: OpenTK.Platform.Key.D6 + type: Field + source: + id: D6 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Key.cs + startLine: 68 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: The 6 key. + example: [] + syntax: + content: D6 = 54 + return: + type: OpenTK.Platform.Key +- uid: OpenTK.Platform.Key.D7 + commentId: F:OpenTK.Platform.Key.D7 + id: D7 + parent: OpenTK.Platform.Key + langs: + - csharp + - vb + name: D7 + nameWithType: Key.D7 + fullName: OpenTK.Platform.Key.D7 + type: Field + source: + id: D7 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Key.cs + startLine: 72 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: The 7 key. + example: [] + syntax: + content: D7 = 55 + return: + type: OpenTK.Platform.Key +- uid: OpenTK.Platform.Key.D8 + commentId: F:OpenTK.Platform.Key.D8 + id: D8 + parent: OpenTK.Platform.Key + langs: + - csharp + - vb + name: D8 + nameWithType: Key.D8 + fullName: OpenTK.Platform.Key.D8 + type: Field + source: + id: D8 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Key.cs + startLine: 76 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: The 8 key. + example: [] + syntax: + content: D8 = 56 + return: + type: OpenTK.Platform.Key +- uid: OpenTK.Platform.Key.D9 + commentId: F:OpenTK.Platform.Key.D9 + id: D9 + parent: OpenTK.Platform.Key + langs: + - csharp + - vb + name: D9 + nameWithType: Key.D9 + fullName: OpenTK.Platform.Key.D9 + type: Field + source: + id: D9 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Key.cs + startLine: 80 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: The 9 key. + example: [] + syntax: + content: D9 = 57 + return: + type: OpenTK.Platform.Key +- uid: OpenTK.Platform.Key.A + commentId: F:OpenTK.Platform.Key.A + id: A + parent: OpenTK.Platform.Key + langs: + - csharp + - vb + name: A + nameWithType: Key.A + fullName: OpenTK.Platform.Key.A + type: Field + source: + id: A + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Key.cs + startLine: 85 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: The A key. + example: [] + syntax: + content: A = 65 + return: + type: OpenTK.Platform.Key +- uid: OpenTK.Platform.Key.B + commentId: F:OpenTK.Platform.Key.B + id: B + parent: OpenTK.Platform.Key + langs: + - csharp + - vb + name: B + nameWithType: Key.B + fullName: OpenTK.Platform.Key.B + type: Field + source: + id: B + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Key.cs + startLine: 89 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: The B key. + example: [] + syntax: + content: B = 66 + return: + type: OpenTK.Platform.Key +- uid: OpenTK.Platform.Key.C + commentId: F:OpenTK.Platform.Key.C + id: C + parent: OpenTK.Platform.Key + langs: + - csharp + - vb + name: C + nameWithType: Key.C + fullName: OpenTK.Platform.Key.C + type: Field + source: + id: C + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Key.cs + startLine: 93 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: The C key. + example: [] + syntax: + content: C = 67 + return: + type: OpenTK.Platform.Key +- uid: OpenTK.Platform.Key.D + commentId: F:OpenTK.Platform.Key.D + id: D + parent: OpenTK.Platform.Key + langs: + - csharp + - vb + name: D + nameWithType: Key.D + fullName: OpenTK.Platform.Key.D + type: Field + source: + id: D + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Key.cs + startLine: 97 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: The D key. + example: [] + syntax: + content: D = 68 + return: + type: OpenTK.Platform.Key +- uid: OpenTK.Platform.Key.E + commentId: F:OpenTK.Platform.Key.E + id: E + parent: OpenTK.Platform.Key + langs: + - csharp + - vb + name: E + nameWithType: Key.E + fullName: OpenTK.Platform.Key.E + type: Field + source: + id: E + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Key.cs + startLine: 101 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: The E key. + example: [] + syntax: + content: E = 69 + return: + type: OpenTK.Platform.Key +- uid: OpenTK.Platform.Key.F + commentId: F:OpenTK.Platform.Key.F + id: F + parent: OpenTK.Platform.Key + langs: + - csharp + - vb + name: F + nameWithType: Key.F + fullName: OpenTK.Platform.Key.F + type: Field + source: + id: F + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Key.cs + startLine: 105 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: The F key. + example: [] + syntax: + content: F = 70 + return: + type: OpenTK.Platform.Key +- uid: OpenTK.Platform.Key.G + commentId: F:OpenTK.Platform.Key.G + id: G + parent: OpenTK.Platform.Key + langs: + - csharp + - vb + name: G + nameWithType: Key.G + fullName: OpenTK.Platform.Key.G + type: Field + source: + id: G + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Key.cs + startLine: 109 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: The G key. + example: [] + syntax: + content: G = 71 + return: + type: OpenTK.Platform.Key +- uid: OpenTK.Platform.Key.H + commentId: F:OpenTK.Platform.Key.H + id: H + parent: OpenTK.Platform.Key + langs: + - csharp + - vb + name: H + nameWithType: Key.H + fullName: OpenTK.Platform.Key.H + type: Field + source: + id: H + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Key.cs + startLine: 113 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: The H key. + example: [] + syntax: + content: H = 72 + return: + type: OpenTK.Platform.Key +- uid: OpenTK.Platform.Key.I + commentId: F:OpenTK.Platform.Key.I + id: I + parent: OpenTK.Platform.Key + langs: + - csharp + - vb + name: I + nameWithType: Key.I + fullName: OpenTK.Platform.Key.I + type: Field + source: + id: I + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Key.cs + startLine: 117 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: The I key. + example: [] + syntax: + content: I = 73 + return: + type: OpenTK.Platform.Key +- uid: OpenTK.Platform.Key.J + commentId: F:OpenTK.Platform.Key.J + id: J + parent: OpenTK.Platform.Key + langs: + - csharp + - vb + name: J + nameWithType: Key.J + fullName: OpenTK.Platform.Key.J + type: Field + source: + id: J + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Key.cs + startLine: 121 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: The J key. + example: [] + syntax: + content: J = 74 + return: + type: OpenTK.Platform.Key +- uid: OpenTK.Platform.Key.K + commentId: F:OpenTK.Platform.Key.K + id: K + parent: OpenTK.Platform.Key + langs: + - csharp + - vb + name: K + nameWithType: Key.K + fullName: OpenTK.Platform.Key.K + type: Field + source: + id: K + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Key.cs + startLine: 125 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: The K key. + example: [] + syntax: + content: K = 75 + return: + type: OpenTK.Platform.Key +- uid: OpenTK.Platform.Key.L + commentId: F:OpenTK.Platform.Key.L + id: L + parent: OpenTK.Platform.Key + langs: + - csharp + - vb + name: L + nameWithType: Key.L + fullName: OpenTK.Platform.Key.L + type: Field + source: + id: L + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Key.cs + startLine: 129 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: The L key. + example: [] + syntax: + content: L = 76 + return: + type: OpenTK.Platform.Key +- uid: OpenTK.Platform.Key.M + commentId: F:OpenTK.Platform.Key.M + id: M + parent: OpenTK.Platform.Key + langs: + - csharp + - vb + name: M + nameWithType: Key.M + fullName: OpenTK.Platform.Key.M + type: Field + source: + id: M + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Key.cs + startLine: 133 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: The M key. + example: [] + syntax: + content: M = 77 + return: + type: OpenTK.Platform.Key +- uid: OpenTK.Platform.Key.N + commentId: F:OpenTK.Platform.Key.N + id: N + parent: OpenTK.Platform.Key + langs: + - csharp + - vb + name: N + nameWithType: Key.N + fullName: OpenTK.Platform.Key.N + type: Field + source: + id: N + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Key.cs + startLine: 137 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: The N key. + example: [] + syntax: + content: N = 78 + return: + type: OpenTK.Platform.Key +- uid: OpenTK.Platform.Key.O + commentId: F:OpenTK.Platform.Key.O + id: O + parent: OpenTK.Platform.Key + langs: + - csharp + - vb + name: O + nameWithType: Key.O + fullName: OpenTK.Platform.Key.O + type: Field + source: + id: O + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Key.cs + startLine: 141 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: The O key. + example: [] + syntax: + content: O = 79 + return: + type: OpenTK.Platform.Key +- uid: OpenTK.Platform.Key.P + commentId: F:OpenTK.Platform.Key.P + id: P + parent: OpenTK.Platform.Key + langs: + - csharp + - vb + name: P + nameWithType: Key.P + fullName: OpenTK.Platform.Key.P + type: Field + source: + id: P + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Key.cs + startLine: 145 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: The P key. + example: [] + syntax: + content: P = 80 + return: + type: OpenTK.Platform.Key +- uid: OpenTK.Platform.Key.Q + commentId: F:OpenTK.Platform.Key.Q + id: Q + parent: OpenTK.Platform.Key + langs: + - csharp + - vb + name: Q + nameWithType: Key.Q + fullName: OpenTK.Platform.Key.Q + type: Field + source: + id: Q + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Key.cs + startLine: 149 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: The Q key. + example: [] + syntax: + content: Q = 81 + return: + type: OpenTK.Platform.Key +- uid: OpenTK.Platform.Key.R + commentId: F:OpenTK.Platform.Key.R + id: R + parent: OpenTK.Platform.Key + langs: + - csharp + - vb + name: R + nameWithType: Key.R + fullName: OpenTK.Platform.Key.R + type: Field + source: + id: R + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Key.cs + startLine: 153 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: The R key. + example: [] + syntax: + content: R = 82 + return: + type: OpenTK.Platform.Key +- uid: OpenTK.Platform.Key.S + commentId: F:OpenTK.Platform.Key.S + id: S + parent: OpenTK.Platform.Key + langs: + - csharp + - vb + name: S + nameWithType: Key.S + fullName: OpenTK.Platform.Key.S + type: Field + source: + id: S + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Key.cs + startLine: 157 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: The S key. + example: [] + syntax: + content: S = 83 + return: + type: OpenTK.Platform.Key +- uid: OpenTK.Platform.Key.T + commentId: F:OpenTK.Platform.Key.T + id: T + parent: OpenTK.Platform.Key + langs: + - csharp + - vb + name: T + nameWithType: Key.T + fullName: OpenTK.Platform.Key.T + type: Field + source: + id: T + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Key.cs + startLine: 161 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: The T key. + example: [] + syntax: + content: T = 84 + return: + type: OpenTK.Platform.Key +- uid: OpenTK.Platform.Key.U + commentId: F:OpenTK.Platform.Key.U + id: U + parent: OpenTK.Platform.Key + langs: + - csharp + - vb + name: U + nameWithType: Key.U + fullName: OpenTK.Platform.Key.U + type: Field + source: + id: U + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Key.cs + startLine: 165 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: The U key. + example: [] + syntax: + content: U = 85 + return: + type: OpenTK.Platform.Key +- uid: OpenTK.Platform.Key.V + commentId: F:OpenTK.Platform.Key.V + id: V + parent: OpenTK.Platform.Key + langs: + - csharp + - vb + name: V + nameWithType: Key.V + fullName: OpenTK.Platform.Key.V + type: Field + source: + id: V + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Key.cs + startLine: 169 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: The V key. + example: [] + syntax: + content: V = 86 + return: + type: OpenTK.Platform.Key +- uid: OpenTK.Platform.Key.W + commentId: F:OpenTK.Platform.Key.W + id: W + parent: OpenTK.Platform.Key + langs: + - csharp + - vb + name: W + nameWithType: Key.W + fullName: OpenTK.Platform.Key.W + type: Field + source: + id: W + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Key.cs + startLine: 173 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: The W key. + example: [] + syntax: + content: W = 87 + return: + type: OpenTK.Platform.Key +- uid: OpenTK.Platform.Key.X + commentId: F:OpenTK.Platform.Key.X + id: X + parent: OpenTK.Platform.Key + langs: + - csharp + - vb + name: X + nameWithType: Key.X + fullName: OpenTK.Platform.Key.X + type: Field + source: + id: X + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Key.cs + startLine: 177 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: The X key. + example: [] + syntax: + content: X = 88 + return: + type: OpenTK.Platform.Key +- uid: OpenTK.Platform.Key.Y + commentId: F:OpenTK.Platform.Key.Y + id: Y + parent: OpenTK.Platform.Key + langs: + - csharp + - vb + name: Y + nameWithType: Key.Y + fullName: OpenTK.Platform.Key.Y + type: Field + source: + id: Y + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Key.cs + startLine: 181 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: The Y key. + example: [] + syntax: + content: Y = 89 + return: + type: OpenTK.Platform.Key +- uid: OpenTK.Platform.Key.Z + commentId: F:OpenTK.Platform.Key.Z + id: Z + parent: OpenTK.Platform.Key + langs: + - csharp + - vb + name: Z + nameWithType: Key.Z + fullName: OpenTK.Platform.Key.Z + type: Field + source: + id: Z + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Key.cs + startLine: 185 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: The Z key. + example: [] + syntax: + content: Z = 90 + return: + type: OpenTK.Platform.Key +- uid: OpenTK.Platform.Key.LeftShift + commentId: F:OpenTK.Platform.Key.LeftShift + id: LeftShift + parent: OpenTK.Platform.Key + langs: + - csharp + - vb + name: LeftShift + nameWithType: Key.LeftShift + fullName: OpenTK.Platform.Key.LeftShift + type: Field + source: + id: LeftShift + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Key.cs + startLine: 190 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: The left shift key. + example: [] + syntax: + content: LeftShift = 91 + return: + type: OpenTK.Platform.Key +- uid: OpenTK.Platform.Key.RightShift + commentId: F:OpenTK.Platform.Key.RightShift + id: RightShift + parent: OpenTK.Platform.Key + langs: + - csharp + - vb + name: RightShift + nameWithType: Key.RightShift + fullName: OpenTK.Platform.Key.RightShift + type: Field + source: + id: RightShift + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Key.cs + startLine: 194 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: The right shift key. + example: [] + syntax: + content: RightShift = 92 + return: + type: OpenTK.Platform.Key +- uid: OpenTK.Platform.Key.LeftControl + commentId: F:OpenTK.Platform.Key.LeftControl + id: LeftControl + parent: OpenTK.Platform.Key + langs: + - csharp + - vb + name: LeftControl + nameWithType: Key.LeftControl + fullName: OpenTK.Platform.Key.LeftControl + type: Field + source: + id: LeftControl + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Key.cs + startLine: 198 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: The left control key. + example: [] + syntax: + content: LeftControl = 93 + return: + type: OpenTK.Platform.Key +- uid: OpenTK.Platform.Key.RightControl + commentId: F:OpenTK.Platform.Key.RightControl + id: RightControl + parent: OpenTK.Platform.Key + langs: + - csharp + - vb + name: RightControl + nameWithType: Key.RightControl + fullName: OpenTK.Platform.Key.RightControl + type: Field + source: + id: RightControl + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Key.cs + startLine: 202 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: The right control key. + example: [] + syntax: + content: RightControl = 94 + return: + type: OpenTK.Platform.Key +- uid: OpenTK.Platform.Key.LeftAlt + commentId: F:OpenTK.Platform.Key.LeftAlt + id: LeftAlt + parent: OpenTK.Platform.Key + langs: + - csharp + - vb + name: LeftAlt + nameWithType: Key.LeftAlt + fullName: OpenTK.Platform.Key.LeftAlt + type: Field + source: + id: LeftAlt + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Key.cs + startLine: 206 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: The left alt key (left Option on mac). + example: [] + syntax: + content: LeftAlt = 95 + return: + type: OpenTK.Platform.Key +- uid: OpenTK.Platform.Key.RightAlt + commentId: F:OpenTK.Platform.Key.RightAlt + id: RightAlt + parent: OpenTK.Platform.Key + langs: + - csharp + - vb + name: RightAlt + nameWithType: Key.RightAlt + fullName: OpenTK.Platform.Key.RightAlt + type: Field + source: + id: RightAlt + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Key.cs + startLine: 210 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: The right alt (alt-gr) key (right Option on mac). + example: [] + syntax: + content: RightAlt = 96 + return: + type: OpenTK.Platform.Key +- uid: OpenTK.Platform.Key.LeftGUI + commentId: F:OpenTK.Platform.Key.LeftGUI + id: LeftGUI + parent: OpenTK.Platform.Key + langs: + - csharp + - vb + name: LeftGUI + nameWithType: Key.LeftGUI + fullName: OpenTK.Platform.Key.LeftGUI + type: Field + source: + id: LeftGUI + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Key.cs + startLine: 216 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: >- + The left "OS" key. + + On windows this is the left windows key. + + On macOS this is the left Command key. + example: [] + syntax: + content: LeftGUI = 97 + return: + type: OpenTK.Platform.Key +- uid: OpenTK.Platform.Key.RightGUI + commentId: F:OpenTK.Platform.Key.RightGUI + id: RightGUI + parent: OpenTK.Platform.Key + langs: + - csharp + - vb + name: RightGUI + nameWithType: Key.RightGUI + fullName: OpenTK.Platform.Key.RightGUI + type: Field + source: + id: RightGUI + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Key.cs + startLine: 222 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: >- + The right "OS" key. + + On windows this is the right windows key. + + On macOS this is the right Command key. + example: [] + syntax: + content: RightGUI = 98 + return: + type: OpenTK.Platform.Key +- uid: OpenTK.Platform.Key.CapsLock + commentId: F:OpenTK.Platform.Key.CapsLock + id: CapsLock + parent: OpenTK.Platform.Key + langs: + - csharp + - vb + name: CapsLock + nameWithType: Key.CapsLock + fullName: OpenTK.Platform.Key.CapsLock + type: Field + source: + id: CapsLock + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Key.cs + startLine: 227 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: The caps lock key. + example: [] + syntax: + content: CapsLock = 99 + return: + type: OpenTK.Platform.Key +- uid: OpenTK.Platform.Key.NumLock + commentId: F:OpenTK.Platform.Key.NumLock + id: NumLock + parent: OpenTK.Platform.Key + langs: + - csharp + - vb + name: NumLock + nameWithType: Key.NumLock + fullName: OpenTK.Platform.Key.NumLock + type: Field + source: + id: NumLock + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Key.cs + startLine: 232 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: The num lock key. + example: [] + syntax: + content: NumLock = 100 + return: + type: OpenTK.Platform.Key +- uid: OpenTK.Platform.Key.Keypad0 + commentId: F:OpenTK.Platform.Key.Keypad0 + id: Keypad0 + parent: OpenTK.Platform.Key + langs: + - csharp + - vb + name: Keypad0 + nameWithType: Key.Keypad0 + fullName: OpenTK.Platform.Key.Keypad0 + type: Field + source: + id: Keypad0 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Key.cs + startLine: 236 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: The keypad 0 key. + example: [] + syntax: + content: Keypad0 = 101 + return: + type: OpenTK.Platform.Key +- uid: OpenTK.Platform.Key.Keypad1 + commentId: F:OpenTK.Platform.Key.Keypad1 + id: Keypad1 + parent: OpenTK.Platform.Key + langs: + - csharp + - vb + name: Keypad1 + nameWithType: Key.Keypad1 + fullName: OpenTK.Platform.Key.Keypad1 + type: Field + source: + id: Keypad1 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Key.cs + startLine: 240 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: The keypad 1 key. + example: [] + syntax: + content: Keypad1 = 102 + return: + type: OpenTK.Platform.Key +- uid: OpenTK.Platform.Key.Keypad2 + commentId: F:OpenTK.Platform.Key.Keypad2 + id: Keypad2 + parent: OpenTK.Platform.Key + langs: + - csharp + - vb + name: Keypad2 + nameWithType: Key.Keypad2 + fullName: OpenTK.Platform.Key.Keypad2 + type: Field + source: + id: Keypad2 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Key.cs + startLine: 244 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: The keypad 2 key. + example: [] + syntax: + content: Keypad2 = 103 + return: + type: OpenTK.Platform.Key +- uid: OpenTK.Platform.Key.Keypad3 + commentId: F:OpenTK.Platform.Key.Keypad3 + id: Keypad3 + parent: OpenTK.Platform.Key + langs: + - csharp + - vb + name: Keypad3 + nameWithType: Key.Keypad3 + fullName: OpenTK.Platform.Key.Keypad3 + type: Field + source: + id: Keypad3 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Key.cs + startLine: 248 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: The keypad 3 key. + example: [] + syntax: + content: Keypad3 = 104 + return: + type: OpenTK.Platform.Key +- uid: OpenTK.Platform.Key.Keypad4 + commentId: F:OpenTK.Platform.Key.Keypad4 + id: Keypad4 + parent: OpenTK.Platform.Key + langs: + - csharp + - vb + name: Keypad4 + nameWithType: Key.Keypad4 + fullName: OpenTK.Platform.Key.Keypad4 + type: Field + source: + id: Keypad4 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Key.cs + startLine: 252 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: The keypad 4 key. + example: [] + syntax: + content: Keypad4 = 105 + return: + type: OpenTK.Platform.Key +- uid: OpenTK.Platform.Key.Keypad5 + commentId: F:OpenTK.Platform.Key.Keypad5 + id: Keypad5 + parent: OpenTK.Platform.Key + langs: + - csharp + - vb + name: Keypad5 + nameWithType: Key.Keypad5 + fullName: OpenTK.Platform.Key.Keypad5 + type: Field + source: + id: Keypad5 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Key.cs + startLine: 256 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: The keypad 5 key. + example: [] + syntax: + content: Keypad5 = 106 + return: + type: OpenTK.Platform.Key +- uid: OpenTK.Platform.Key.Keypad6 + commentId: F:OpenTK.Platform.Key.Keypad6 + id: Keypad6 + parent: OpenTK.Platform.Key + langs: + - csharp + - vb + name: Keypad6 + nameWithType: Key.Keypad6 + fullName: OpenTK.Platform.Key.Keypad6 + type: Field + source: + id: Keypad6 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Key.cs + startLine: 260 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: The keypad 6 key. + example: [] + syntax: + content: Keypad6 = 107 + return: + type: OpenTK.Platform.Key +- uid: OpenTK.Platform.Key.Keypad7 + commentId: F:OpenTK.Platform.Key.Keypad7 + id: Keypad7 + parent: OpenTK.Platform.Key + langs: + - csharp + - vb + name: Keypad7 + nameWithType: Key.Keypad7 + fullName: OpenTK.Platform.Key.Keypad7 + type: Field + source: + id: Keypad7 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Key.cs + startLine: 264 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: The keypad 7 key. + example: [] + syntax: + content: Keypad7 = 108 + return: + type: OpenTK.Platform.Key +- uid: OpenTK.Platform.Key.Keypad8 + commentId: F:OpenTK.Platform.Key.Keypad8 + id: Keypad8 + parent: OpenTK.Platform.Key + langs: + - csharp + - vb + name: Keypad8 + nameWithType: Key.Keypad8 + fullName: OpenTK.Platform.Key.Keypad8 + type: Field + source: + id: Keypad8 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Key.cs + startLine: 268 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: The keypad 8 key. + example: [] + syntax: + content: Keypad8 = 109 + return: + type: OpenTK.Platform.Key +- uid: OpenTK.Platform.Key.Keypad9 + commentId: F:OpenTK.Platform.Key.Keypad9 + id: Keypad9 + parent: OpenTK.Platform.Key + langs: + - csharp + - vb + name: Keypad9 + nameWithType: Key.Keypad9 + fullName: OpenTK.Platform.Key.Keypad9 + type: Field + source: + id: Keypad9 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Key.cs + startLine: 272 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: The keypad 9 key. + example: [] + syntax: + content: Keypad9 = 110 + return: + type: OpenTK.Platform.Key +- uid: OpenTK.Platform.Key.KeypadDecimal + commentId: F:OpenTK.Platform.Key.KeypadDecimal + id: KeypadDecimal + parent: OpenTK.Platform.Key + langs: + - csharp + - vb + name: KeypadDecimal + nameWithType: Key.KeypadDecimal + fullName: OpenTK.Platform.Key.KeypadDecimal + type: Field + source: + id: KeypadDecimal + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Key.cs + startLine: 276 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: The keypad decimal point key. + example: [] + syntax: + content: KeypadDecimal = 111 + return: + type: OpenTK.Platform.Key +- uid: OpenTK.Platform.Key.KeypadDivide + commentId: F:OpenTK.Platform.Key.KeypadDivide + id: KeypadDivide + parent: OpenTK.Platform.Key + langs: + - csharp + - vb + name: KeypadDivide + nameWithType: Key.KeypadDivide + fullName: OpenTK.Platform.Key.KeypadDivide + type: Field + source: + id: KeypadDivide + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Key.cs + startLine: 280 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: The keypad divide key. + example: [] + syntax: + content: KeypadDivide = 112 + return: + type: OpenTK.Platform.Key +- uid: OpenTK.Platform.Key.KeypadMultiply + commentId: F:OpenTK.Platform.Key.KeypadMultiply + id: KeypadMultiply + parent: OpenTK.Platform.Key + langs: + - csharp + - vb + name: KeypadMultiply + nameWithType: Key.KeypadMultiply + fullName: OpenTK.Platform.Key.KeypadMultiply + type: Field + source: + id: KeypadMultiply + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Key.cs + startLine: 284 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: The keypad multiply key. + example: [] + syntax: + content: KeypadMultiply = 113 + return: + type: OpenTK.Platform.Key +- uid: OpenTK.Platform.Key.KeypadSubtract + commentId: F:OpenTK.Platform.Key.KeypadSubtract + id: KeypadSubtract + parent: OpenTK.Platform.Key + langs: + - csharp + - vb + name: KeypadSubtract + nameWithType: Key.KeypadSubtract + fullName: OpenTK.Platform.Key.KeypadSubtract + type: Field + source: + id: KeypadSubtract + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Key.cs + startLine: 288 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: The keypad subtract key. + example: [] + syntax: + content: KeypadSubtract = 114 + return: + type: OpenTK.Platform.Key +- uid: OpenTK.Platform.Key.KeypadAdd + commentId: F:OpenTK.Platform.Key.KeypadAdd + id: KeypadAdd + parent: OpenTK.Platform.Key + langs: + - csharp + - vb + name: KeypadAdd + nameWithType: Key.KeypadAdd + fullName: OpenTK.Platform.Key.KeypadAdd + type: Field + source: + id: KeypadAdd + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Key.cs + startLine: 292 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: The keypad add key. + example: [] + syntax: + content: KeypadAdd = 115 + return: + type: OpenTK.Platform.Key +- uid: OpenTK.Platform.Key.KeypadSeparator + commentId: F:OpenTK.Platform.Key.KeypadSeparator + id: KeypadSeparator + parent: OpenTK.Platform.Key + langs: + - csharp + - vb + name: KeypadSeparator + nameWithType: Key.KeypadSeparator + fullName: OpenTK.Platform.Key.KeypadSeparator + type: Field + source: + id: KeypadSeparator + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Key.cs + startLine: 296 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: The keypad separator key. + example: [] + syntax: + content: KeypadSeparator = 116 + return: + type: OpenTK.Platform.Key +- uid: OpenTK.Platform.Key.KeypadEnter + commentId: F:OpenTK.Platform.Key.KeypadEnter + id: KeypadEnter + parent: OpenTK.Platform.Key + langs: + - csharp + - vb + name: KeypadEnter + nameWithType: Key.KeypadEnter + fullName: OpenTK.Platform.Key.KeypadEnter + type: Field + source: + id: KeypadEnter + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Key.cs + startLine: 300 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: The keypad enter key. + example: [] + syntax: + content: KeypadEnter = 117 + return: + type: OpenTK.Platform.Key +- uid: OpenTK.Platform.Key.KeypadEqual + commentId: F:OpenTK.Platform.Key.KeypadEqual + id: KeypadEqual + parent: OpenTK.Platform.Key + langs: + - csharp + - vb + name: KeypadEqual + nameWithType: Key.KeypadEqual + fullName: OpenTK.Platform.Key.KeypadEqual + type: Field + source: + id: KeypadEqual + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Key.cs + startLine: 304 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: The keypad equals key. + example: [] + syntax: + content: KeypadEqual = 118 + return: + type: OpenTK.Platform.Key +- uid: OpenTK.Platform.Key.PrintScreen + commentId: F:OpenTK.Platform.Key.PrintScreen + id: PrintScreen + parent: OpenTK.Platform.Key + langs: + - csharp + - vb + name: PrintScreen + nameWithType: Key.PrintScreen + fullName: OpenTK.Platform.Key.PrintScreen + type: Field + source: + id: PrintScreen + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Key.cs + startLine: 309 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: The print screen key. + example: [] + syntax: + content: PrintScreen = 119 + return: + type: OpenTK.Platform.Key +- uid: OpenTK.Platform.Key.ScrollLock + commentId: F:OpenTK.Platform.Key.ScrollLock + id: ScrollLock + parent: OpenTK.Platform.Key + langs: + - csharp + - vb + name: ScrollLock + nameWithType: Key.ScrollLock + fullName: OpenTK.Platform.Key.ScrollLock + type: Field + source: + id: ScrollLock + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Key.cs + startLine: 313 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: The scroll lock key. + example: [] + syntax: + content: ScrollLock = 120 + return: + type: OpenTK.Platform.Key +- uid: OpenTK.Platform.Key.PauseBreak + commentId: F:OpenTK.Platform.Key.PauseBreak + id: PauseBreak + parent: OpenTK.Platform.Key + langs: + - csharp + - vb + name: PauseBreak + nameWithType: Key.PauseBreak + fullName: OpenTK.Platform.Key.PauseBreak + type: Field + source: + id: PauseBreak + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Key.cs + startLine: 317 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: The pause/break key. + example: [] + syntax: + content: PauseBreak = 121 + return: + type: OpenTK.Platform.Key +- uid: OpenTK.Platform.Key.Insert + commentId: F:OpenTK.Platform.Key.Insert + id: Insert + parent: OpenTK.Platform.Key + langs: + - csharp + - vb + name: Insert + nameWithType: Key.Insert + fullName: OpenTK.Platform.Key.Insert + type: Field + source: + id: Insert + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Key.cs + startLine: 322 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: The insert key. + example: [] + syntax: + content: Insert = 122 + return: + type: OpenTK.Platform.Key +- uid: OpenTK.Platform.Key.Delete + commentId: F:OpenTK.Platform.Key.Delete + id: Delete + parent: OpenTK.Platform.Key + langs: + - csharp + - vb + name: Delete + nameWithType: Key.Delete + fullName: OpenTK.Platform.Key.Delete + type: Field + source: + id: Delete + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Key.cs + startLine: 326 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: The delete key. + example: [] + syntax: + content: Delete = 123 + return: + type: OpenTK.Platform.Key +- uid: OpenTK.Platform.Key.Home + commentId: F:OpenTK.Platform.Key.Home + id: Home + parent: OpenTK.Platform.Key + langs: + - csharp + - vb + name: Home + nameWithType: Key.Home + fullName: OpenTK.Platform.Key.Home + type: Field + source: + id: Home + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Key.cs + startLine: 330 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: The home key. + example: [] + syntax: + content: Home = 124 + return: + type: OpenTK.Platform.Key +- uid: OpenTK.Platform.Key.End + commentId: F:OpenTK.Platform.Key.End + id: End + parent: OpenTK.Platform.Key + langs: + - csharp + - vb + name: End + nameWithType: Key.End + fullName: OpenTK.Platform.Key.End + type: Field + source: + id: End + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Key.cs + startLine: 334 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: End key. + example: [] + syntax: + content: End = 125 + return: + type: OpenTK.Platform.Key +- uid: OpenTK.Platform.Key.PageUp + commentId: F:OpenTK.Platform.Key.PageUp + id: PageUp + parent: OpenTK.Platform.Key + langs: + - csharp + - vb + name: PageUp + nameWithType: Key.PageUp + fullName: OpenTK.Platform.Key.PageUp + type: Field + source: + id: PageUp + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Key.cs + startLine: 338 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Page Up key. + example: [] + syntax: + content: PageUp = 126 + return: + type: OpenTK.Platform.Key +- uid: OpenTK.Platform.Key.PageDown + commentId: F:OpenTK.Platform.Key.PageDown + id: PageDown + parent: OpenTK.Platform.Key + langs: + - csharp + - vb + name: PageDown + nameWithType: Key.PageDown + fullName: OpenTK.Platform.Key.PageDown + type: Field + source: + id: PageDown + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Key.cs + startLine: 342 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Page Down key. + example: [] + syntax: + content: PageDown = 127 + return: + type: OpenTK.Platform.Key +- uid: OpenTK.Platform.Key.LeftArrow + commentId: F:OpenTK.Platform.Key.LeftArrow + id: LeftArrow + parent: OpenTK.Platform.Key + langs: + - csharp + - vb + name: LeftArrow + nameWithType: Key.LeftArrow + fullName: OpenTK.Platform.Key.LeftArrow + type: Field + source: + id: LeftArrow + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Key.cs + startLine: 347 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: The left arrow key. + example: [] + syntax: + content: LeftArrow = 128 + return: + type: OpenTK.Platform.Key +- uid: OpenTK.Platform.Key.RightArrow + commentId: F:OpenTK.Platform.Key.RightArrow + id: RightArrow + parent: OpenTK.Platform.Key + langs: + - csharp + - vb + name: RightArrow + nameWithType: Key.RightArrow + fullName: OpenTK.Platform.Key.RightArrow + type: Field + source: + id: RightArrow + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Key.cs + startLine: 351 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: The right arrow key. + example: [] + syntax: + content: RightArrow = 129 + return: + type: OpenTK.Platform.Key +- uid: OpenTK.Platform.Key.UpArrow + commentId: F:OpenTK.Platform.Key.UpArrow + id: UpArrow + parent: OpenTK.Platform.Key + langs: + - csharp + - vb + name: UpArrow + nameWithType: Key.UpArrow + fullName: OpenTK.Platform.Key.UpArrow + type: Field + source: + id: UpArrow + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Key.cs + startLine: 355 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: The up arrow key. + example: [] + syntax: + content: UpArrow = 130 + return: + type: OpenTK.Platform.Key +- uid: OpenTK.Platform.Key.DownArrow + commentId: F:OpenTK.Platform.Key.DownArrow + id: DownArrow + parent: OpenTK.Platform.Key + langs: + - csharp + - vb + name: DownArrow + nameWithType: Key.DownArrow + fullName: OpenTK.Platform.Key.DownArrow + type: Field + source: + id: DownArrow + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Key.cs + startLine: 359 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: The down arrow key. + example: [] + syntax: + content: DownArrow = 131 + return: + type: OpenTK.Platform.Key +- uid: OpenTK.Platform.Key.Application + commentId: F:OpenTK.Platform.Key.Application + id: Application + parent: OpenTK.Platform.Key + langs: + - csharp + - vb + name: Application + nameWithType: Key.Application + fullName: OpenTK.Platform.Key.Application + type: Field + source: + id: Application + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Key.cs + startLine: 365 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: >- + The application key. + + This usually opens a context menu, in the same way that right click does. + example: [] + syntax: + content: Application = 132 + return: + type: OpenTK.Platform.Key +- uid: OpenTK.Platform.Key.Help + commentId: F:OpenTK.Platform.Key.Help + id: Help + parent: OpenTK.Platform.Key + langs: + - csharp + - vb + name: Help + nameWithType: Key.Help + fullName: OpenTK.Platform.Key.Help + type: Field + source: + id: Help + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Key.cs + startLine: 371 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: The help key. + example: [] + syntax: + content: Help = 133 + return: + type: OpenTK.Platform.Key +- uid: OpenTK.Platform.Key.F1 + commentId: F:OpenTK.Platform.Key.F1 + id: F1 + parent: OpenTK.Platform.Key + langs: + - csharp + - vb + name: F1 + nameWithType: Key.F1 + fullName: OpenTK.Platform.Key.F1 + type: Field + source: + id: F1 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Key.cs + startLine: 376 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: The 1st function key. + example: [] + syntax: + content: F1 = 134 + return: + type: OpenTK.Platform.Key +- uid: OpenTK.Platform.Key.F2 + commentId: F:OpenTK.Platform.Key.F2 + id: F2 + parent: OpenTK.Platform.Key + langs: + - csharp + - vb + name: F2 + nameWithType: Key.F2 + fullName: OpenTK.Platform.Key.F2 + type: Field + source: + id: F2 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Key.cs + startLine: 380 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: The 2nd function key. + example: [] + syntax: + content: F2 = 135 + return: + type: OpenTK.Platform.Key +- uid: OpenTK.Platform.Key.F3 + commentId: F:OpenTK.Platform.Key.F3 + id: F3 + parent: OpenTK.Platform.Key + langs: + - csharp + - vb + name: F3 + nameWithType: Key.F3 + fullName: OpenTK.Platform.Key.F3 + type: Field + source: + id: F3 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Key.cs + startLine: 384 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: The 3rd function key. + example: [] + syntax: + content: F3 = 136 + return: + type: OpenTK.Platform.Key +- uid: OpenTK.Platform.Key.F4 + commentId: F:OpenTK.Platform.Key.F4 + id: F4 + parent: OpenTK.Platform.Key + langs: + - csharp + - vb + name: F4 + nameWithType: Key.F4 + fullName: OpenTK.Platform.Key.F4 + type: Field + source: + id: F4 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Key.cs + startLine: 388 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: The 4th function key. + example: [] + syntax: + content: F4 = 137 + return: + type: OpenTK.Platform.Key +- uid: OpenTK.Platform.Key.F5 + commentId: F:OpenTK.Platform.Key.F5 + id: F5 + parent: OpenTK.Platform.Key + langs: + - csharp + - vb + name: F5 + nameWithType: Key.F5 + fullName: OpenTK.Platform.Key.F5 + type: Field + source: + id: F5 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Key.cs + startLine: 392 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: The 5th function key. + example: [] + syntax: + content: F5 = 138 + return: + type: OpenTK.Platform.Key +- uid: OpenTK.Platform.Key.F6 + commentId: F:OpenTK.Platform.Key.F6 + id: F6 + parent: OpenTK.Platform.Key + langs: + - csharp + - vb + name: F6 + nameWithType: Key.F6 + fullName: OpenTK.Platform.Key.F6 + type: Field + source: + id: F6 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Key.cs + startLine: 396 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: The 6th function key. + example: [] + syntax: + content: F6 = 139 + return: + type: OpenTK.Platform.Key +- uid: OpenTK.Platform.Key.F7 + commentId: F:OpenTK.Platform.Key.F7 + id: F7 + parent: OpenTK.Platform.Key + langs: + - csharp + - vb + name: F7 + nameWithType: Key.F7 + fullName: OpenTK.Platform.Key.F7 + type: Field + source: + id: F7 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Key.cs + startLine: 400 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: The 7th function key. + example: [] + syntax: + content: F7 = 140 + return: + type: OpenTK.Platform.Key +- uid: OpenTK.Platform.Key.F8 + commentId: F:OpenTK.Platform.Key.F8 + id: F8 + parent: OpenTK.Platform.Key + langs: + - csharp + - vb + name: F8 + nameWithType: Key.F8 + fullName: OpenTK.Platform.Key.F8 + type: Field + source: + id: F8 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Key.cs + startLine: 404 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: The 8th function key. + example: [] + syntax: + content: F8 = 141 + return: + type: OpenTK.Platform.Key +- uid: OpenTK.Platform.Key.F9 + commentId: F:OpenTK.Platform.Key.F9 + id: F9 + parent: OpenTK.Platform.Key + langs: + - csharp + - vb + name: F9 + nameWithType: Key.F9 + fullName: OpenTK.Platform.Key.F9 + type: Field + source: + id: F9 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Key.cs + startLine: 408 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: The 9th function key. + example: [] + syntax: + content: F9 = 142 + return: + type: OpenTK.Platform.Key +- uid: OpenTK.Platform.Key.F10 + commentId: F:OpenTK.Platform.Key.F10 + id: F10 + parent: OpenTK.Platform.Key + langs: + - csharp + - vb + name: F10 + nameWithType: Key.F10 + fullName: OpenTK.Platform.Key.F10 + type: Field + source: + id: F10 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Key.cs + startLine: 412 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: The 10th function key. + example: [] + syntax: + content: F10 = 143 + return: + type: OpenTK.Platform.Key +- uid: OpenTK.Platform.Key.F11 + commentId: F:OpenTK.Platform.Key.F11 + id: F11 + parent: OpenTK.Platform.Key + langs: + - csharp + - vb + name: F11 + nameWithType: Key.F11 + fullName: OpenTK.Platform.Key.F11 + type: Field + source: + id: F11 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Key.cs + startLine: 416 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: The 11th function key. + example: [] + syntax: + content: F11 = 144 + return: + type: OpenTK.Platform.Key +- uid: OpenTK.Platform.Key.F12 + commentId: F:OpenTK.Platform.Key.F12 + id: F12 + parent: OpenTK.Platform.Key + langs: + - csharp + - vb + name: F12 + nameWithType: Key.F12 + fullName: OpenTK.Platform.Key.F12 + type: Field + source: + id: F12 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Key.cs + startLine: 420 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: The 12th function key. + example: [] + syntax: + content: F12 = 145 + return: + type: OpenTK.Platform.Key +- uid: OpenTK.Platform.Key.F13 + commentId: F:OpenTK.Platform.Key.F13 + id: F13 + parent: OpenTK.Platform.Key + langs: + - csharp + - vb + name: F13 + nameWithType: Key.F13 + fullName: OpenTK.Platform.Key.F13 + type: Field + source: + id: F13 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Key.cs + startLine: 424 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: The 13th function key. + example: [] + syntax: + content: F13 = 146 + return: + type: OpenTK.Platform.Key +- uid: OpenTK.Platform.Key.F14 + commentId: F:OpenTK.Platform.Key.F14 + id: F14 + parent: OpenTK.Platform.Key + langs: + - csharp + - vb + name: F14 + nameWithType: Key.F14 + fullName: OpenTK.Platform.Key.F14 + type: Field + source: + id: F14 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Key.cs + startLine: 428 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: The 14th function key. + example: [] + syntax: + content: F14 = 147 + return: + type: OpenTK.Platform.Key +- uid: OpenTK.Platform.Key.F15 + commentId: F:OpenTK.Platform.Key.F15 + id: F15 + parent: OpenTK.Platform.Key + langs: + - csharp + - vb + name: F15 + nameWithType: Key.F15 + fullName: OpenTK.Platform.Key.F15 + type: Field + source: + id: F15 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Key.cs + startLine: 432 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: The 15th function key. + example: [] + syntax: + content: F15 = 148 + return: + type: OpenTK.Platform.Key +- uid: OpenTK.Platform.Key.F16 + commentId: F:OpenTK.Platform.Key.F16 + id: F16 + parent: OpenTK.Platform.Key + langs: + - csharp + - vb + name: F16 + nameWithType: Key.F16 + fullName: OpenTK.Platform.Key.F16 + type: Field + source: + id: F16 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Key.cs + startLine: 436 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: The 16th function key. + example: [] + syntax: + content: F16 = 149 + return: + type: OpenTK.Platform.Key +- uid: OpenTK.Platform.Key.F17 + commentId: F:OpenTK.Platform.Key.F17 + id: F17 + parent: OpenTK.Platform.Key + langs: + - csharp + - vb + name: F17 + nameWithType: Key.F17 + fullName: OpenTK.Platform.Key.F17 + type: Field + source: + id: F17 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Key.cs + startLine: 440 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: The 17th function key. + example: [] + syntax: + content: F17 = 150 + return: + type: OpenTK.Platform.Key +- uid: OpenTK.Platform.Key.F18 + commentId: F:OpenTK.Platform.Key.F18 + id: F18 + parent: OpenTK.Platform.Key + langs: + - csharp + - vb + name: F18 + nameWithType: Key.F18 + fullName: OpenTK.Platform.Key.F18 + type: Field + source: + id: F18 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Key.cs + startLine: 444 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: The 18th function key. + example: [] + syntax: + content: F18 = 151 + return: + type: OpenTK.Platform.Key +- uid: OpenTK.Platform.Key.F19 + commentId: F:OpenTK.Platform.Key.F19 + id: F19 + parent: OpenTK.Platform.Key + langs: + - csharp + - vb + name: F19 + nameWithType: Key.F19 + fullName: OpenTK.Platform.Key.F19 + type: Field + source: + id: F19 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Key.cs + startLine: 448 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: The 19th function key. + example: [] + syntax: + content: F19 = 152 + return: + type: OpenTK.Platform.Key +- uid: OpenTK.Platform.Key.F20 + commentId: F:OpenTK.Platform.Key.F20 + id: F20 + parent: OpenTK.Platform.Key + langs: + - csharp + - vb + name: F20 + nameWithType: Key.F20 + fullName: OpenTK.Platform.Key.F20 + type: Field + source: + id: F20 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Key.cs + startLine: 452 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: The 20th function key. + example: [] + syntax: + content: F20 = 153 + return: + type: OpenTK.Platform.Key +- uid: OpenTK.Platform.Key.F21 + commentId: F:OpenTK.Platform.Key.F21 + id: F21 + parent: OpenTK.Platform.Key + langs: + - csharp + - vb + name: F21 + nameWithType: Key.F21 + fullName: OpenTK.Platform.Key.F21 + type: Field + source: + id: F21 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Key.cs + startLine: 456 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: The 21st function key. + example: [] + syntax: + content: F21 = 154 + return: + type: OpenTK.Platform.Key +- uid: OpenTK.Platform.Key.F22 + commentId: F:OpenTK.Platform.Key.F22 + id: F22 + parent: OpenTK.Platform.Key + langs: + - csharp + - vb + name: F22 + nameWithType: Key.F22 + fullName: OpenTK.Platform.Key.F22 + type: Field + source: + id: F22 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Key.cs + startLine: 460 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: The 22nd function key. + example: [] + syntax: + content: F22 = 155 + return: + type: OpenTK.Platform.Key +- uid: OpenTK.Platform.Key.F23 + commentId: F:OpenTK.Platform.Key.F23 + id: F23 + parent: OpenTK.Platform.Key + langs: + - csharp + - vb + name: F23 + nameWithType: Key.F23 + fullName: OpenTK.Platform.Key.F23 + type: Field + source: + id: F23 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Key.cs + startLine: 464 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: The 23rd function key. + example: [] + syntax: + content: F23 = 156 + return: + type: OpenTK.Platform.Key +- uid: OpenTK.Platform.Key.F24 + commentId: F:OpenTK.Platform.Key.F24 + id: F24 + parent: OpenTK.Platform.Key + langs: + - csharp + - vb + name: F24 + nameWithType: Key.F24 + fullName: OpenTK.Platform.Key.F24 + type: Field + source: + id: F24 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Key.cs + startLine: 468 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: The 24th function key. + example: [] + syntax: + content: F24 = 157 + return: + type: OpenTK.Platform.Key +- uid: OpenTK.Platform.Key.Sleep + commentId: F:OpenTK.Platform.Key.Sleep + id: Sleep + parent: OpenTK.Platform.Key + langs: + - csharp + - vb + name: Sleep + nameWithType: Key.Sleep + fullName: OpenTK.Platform.Key.Sleep + type: Field + source: + id: Sleep + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Key.cs + startLine: 473 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: The computer sleep key. + example: [] + syntax: + content: Sleep = 158 + return: + type: OpenTK.Platform.Key +- uid: OpenTK.Platform.Key.Plus + commentId: F:OpenTK.Platform.Key.Plus + id: Plus + parent: OpenTK.Platform.Key + langs: + - csharp + - vb + name: Plus + nameWithType: Key.Plus + fullName: OpenTK.Platform.Key.Plus + type: Field + source: + id: Plus + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Key.cs + startLine: 478 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: The plus key. + example: [] + syntax: + content: Plus = 159 + return: + type: OpenTK.Platform.Key +- uid: OpenTK.Platform.Key.Comma + commentId: F:OpenTK.Platform.Key.Comma + id: Comma + parent: OpenTK.Platform.Key + langs: + - csharp + - vb + name: Comma + nameWithType: Key.Comma + fullName: OpenTK.Platform.Key.Comma + type: Field + source: + id: Comma + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Key.cs + startLine: 482 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: The comma key. + example: [] + syntax: + content: Comma = 160 + return: + type: OpenTK.Platform.Key +- uid: OpenTK.Platform.Key.Minus + commentId: F:OpenTK.Platform.Key.Minus + id: Minus + parent: OpenTK.Platform.Key + langs: + - csharp + - vb + name: Minus + nameWithType: Key.Minus + fullName: OpenTK.Platform.Key.Minus + type: Field + source: + id: Minus + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Key.cs + startLine: 486 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: The minus key. + example: [] + syntax: + content: Minus = 161 + return: + type: OpenTK.Platform.Key +- uid: OpenTK.Platform.Key.Period + commentId: F:OpenTK.Platform.Key.Period + id: Period + parent: OpenTK.Platform.Key + langs: + - csharp + - vb + name: Period + nameWithType: Key.Period + fullName: OpenTK.Platform.Key.Period + type: Field + source: + id: Period + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Key.cs + startLine: 490 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: The period key. + example: [] + syntax: + content: Period = 162 + return: + type: OpenTK.Platform.Key +- uid: OpenTK.Platform.Key.OEM1 + commentId: F:OpenTK.Platform.Key.OEM1 + id: OEM1 + parent: OpenTK.Platform.Key + langs: + - csharp + - vb + name: OEM1 + nameWithType: Key.OEM1 + fullName: OpenTK.Platform.Key.OEM1 + type: Field + source: + id: OEM1 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Key.cs + startLine: 505 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: >- + Used for various characters depending on keyboard layout. + +
In the US keyboard layout this is the ;: key.
In the nordic layout this is the ¨^~ key.
+ example: [] + syntax: + content: OEM1 = 163 + return: + type: OpenTK.Platform.Key +- uid: OpenTK.Platform.Key.OEM2 + commentId: F:OpenTK.Platform.Key.OEM2 + id: OEM2 + parent: OpenTK.Platform.Key + langs: + - csharp + - vb + name: OEM2 + nameWithType: Key.OEM2 + fullName: OpenTK.Platform.Key.OEM2 + type: Field + source: + id: OEM2 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Key.cs + startLine: 513 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: >- + Used for various characters depending on keyboard layout. + +
In the US keyboard layout this is the /? key.
In the nordic layout this is the '* key.
+ example: [] + syntax: + content: OEM2 = 164 + return: + type: OpenTK.Platform.Key +- uid: OpenTK.Platform.Key.OEM3 + commentId: F:OpenTK.Platform.Key.OEM3 + id: OEM3 + parent: OpenTK.Platform.Key + langs: + - csharp + - vb + name: OEM3 + nameWithType: Key.OEM3 + fullName: OpenTK.Platform.Key.OEM3 + type: Field + source: + id: OEM3 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Key.cs + startLine: 521 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: >- + Used for various characters depending on keyboard layout. + +
In the US keyboard layout this is the `~ key.
In the nordic layout this is the ÖØÆ key.
+ example: [] + syntax: + content: OEM3 = 165 + return: + type: OpenTK.Platform.Key +- uid: OpenTK.Platform.Key.OEM4 + commentId: F:OpenTK.Platform.Key.OEM4 + id: OEM4 + parent: OpenTK.Platform.Key + langs: + - csharp + - vb + name: OEM4 + nameWithType: Key.OEM4 + fullName: OpenTK.Platform.Key.OEM4 + type: Field + source: + id: OEM4 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Key.cs + startLine: 529 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: >- + Used for various characters depending on keyboard layout. + +
In the US keyboard layout this is the [{ key.
In the nordic layout this is the ´` key.
+ example: [] + syntax: + content: OEM4 = 166 + return: + type: OpenTK.Platform.Key +- uid: OpenTK.Platform.Key.OEM5 + commentId: F:OpenTK.Platform.Key.OEM5 + id: OEM5 + parent: OpenTK.Platform.Key + langs: + - csharp + - vb + name: OEM5 + nameWithType: Key.OEM5 + fullName: OpenTK.Platform.Key.OEM5 + type: Field + source: + id: OEM5 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Key.cs + startLine: 537 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: >- + Used for various characters depending on keyboard layout. + +
In the US keyboard layout this is the \| key.
In the nordic layout this is the §½ key.
+ example: [] + syntax: + content: OEM5 = 167 + return: + type: OpenTK.Platform.Key +- uid: OpenTK.Platform.Key.OEM6 + commentId: F:OpenTK.Platform.Key.OEM6 + id: OEM6 + parent: OpenTK.Platform.Key + langs: + - csharp + - vb + name: OEM6 + nameWithType: Key.OEM6 + fullName: OpenTK.Platform.Key.OEM6 + type: Field + source: + id: OEM6 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Key.cs + startLine: 545 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: >- + Used for various characters depending on keyboard layout. + +
In the US keyboard layout this is the ]} key.
In the nordic layout this is the Ã… key.
+ example: [] + syntax: + content: OEM6 = 168 + return: + type: OpenTK.Platform.Key +- uid: OpenTK.Platform.Key.OEM7 + commentId: F:OpenTK.Platform.Key.OEM7 + id: OEM7 + parent: OpenTK.Platform.Key + langs: + - csharp + - vb + name: OEM7 + nameWithType: Key.OEM7 + fullName: OpenTK.Platform.Key.OEM7 + type: Field + source: + id: OEM7 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Key.cs + startLine: 553 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: >- + Used for various characters depending on keyboard layout. + +
In the US keyboard layout this is the '" key.
In the nordic layout this is the ÄÆØ key.
+ example: [] + syntax: + content: OEM7 = 169 + return: + type: OpenTK.Platform.Key +- uid: OpenTK.Platform.Key.OEM8 + commentId: F:OpenTK.Platform.Key.OEM8 + id: OEM8 + parent: OpenTK.Platform.Key + langs: + - csharp + - vb + name: OEM8 + nameWithType: Key.OEM8 + fullName: OpenTK.Platform.Key.OEM8 + type: Field + source: + id: OEM8 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Key.cs + startLine: 557 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Used for various characters, depends on keyboard. + example: [] + syntax: + content: OEM8 = 170 + return: + type: OpenTK.Platform.Key +- uid: OpenTK.Platform.Key.OEM102 + commentId: F:OpenTK.Platform.Key.OEM102 + id: OEM102 + parent: OpenTK.Platform.Key + langs: + - csharp + - vb + name: OEM102 + nameWithType: Key.OEM102 + fullName: OpenTK.Platform.Key.OEM102 + type: Field + source: + id: OEM102 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Key.cs + startLine: 564 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: >- + The <> keys on the US standard keyboard, + + or the \\| key on the non-US 102-key keyboard. + example: [] + syntax: + content: OEM102 = 171 + return: + type: OpenTK.Platform.Key +- uid: OpenTK.Platform.Key.PlayPause + commentId: F:OpenTK.Platform.Key.PlayPause + id: PlayPause + parent: OpenTK.Platform.Key + langs: + - csharp + - vb + name: PlayPause + nameWithType: Key.PlayPause + fullName: OpenTK.Platform.Key.PlayPause + type: Field + source: + id: PlayPause + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Key.cs + startLine: 570 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: >- + The media play/pause key. + + Used for playing and pausing music. + example: [] + syntax: + content: PlayPause = 172 + return: + type: OpenTK.Platform.Key +- uid: OpenTK.Platform.Key.NextTrack + commentId: F:OpenTK.Platform.Key.NextTrack + id: NextTrack + parent: OpenTK.Platform.Key + langs: + - csharp + - vb + name: NextTrack + nameWithType: Key.NextTrack + fullName: OpenTK.Platform.Key.NextTrack + type: Field + source: + id: NextTrack + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Key.cs + startLine: 575 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: >- + The next track key. + + Used to go to the next media track. + example: [] + syntax: + content: NextTrack = 173 + return: + type: OpenTK.Platform.Key +- uid: OpenTK.Platform.Key.PreviousTrack + commentId: F:OpenTK.Platform.Key.PreviousTrack + id: PreviousTrack + parent: OpenTK.Platform.Key + langs: + - csharp + - vb + name: PreviousTrack + nameWithType: Key.PreviousTrack + fullName: OpenTK.Platform.Key.PreviousTrack + type: Field + source: + id: PreviousTrack + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Key.cs + startLine: 580 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: >- + The previous track key. + + Used to go the previous media track. + example: [] + syntax: + content: PreviousTrack = 174 + return: + type: OpenTK.Platform.Key +- uid: OpenTK.Platform.Key.Stop + commentId: F:OpenTK.Platform.Key.Stop + id: Stop + parent: OpenTK.Platform.Key + langs: + - csharp + - vb + name: Stop + nameWithType: Key.Stop + fullName: OpenTK.Platform.Key.Stop + type: Field + source: + id: Stop + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Key.cs + startLine: 585 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: >- + The media stop key. + + Used to stop any playing media. + example: [] + syntax: + content: Stop = 175 + return: + type: OpenTK.Platform.Key +- uid: OpenTK.Platform.Key.Mute + commentId: F:OpenTK.Platform.Key.Mute + id: Mute + parent: OpenTK.Platform.Key + langs: + - csharp + - vb + name: Mute + nameWithType: Key.Mute + fullName: OpenTK.Platform.Key.Mute + type: Field + source: + id: Mute + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Key.cs + startLine: 589 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: The mute key. + example: [] + syntax: + content: Mute = 176 + return: + type: OpenTK.Platform.Key +- uid: OpenTK.Platform.Key.VolumeUp + commentId: F:OpenTK.Platform.Key.VolumeUp + id: VolumeUp + parent: OpenTK.Platform.Key + langs: + - csharp + - vb + name: VolumeUp + nameWithType: Key.VolumeUp + fullName: OpenTK.Platform.Key.VolumeUp + type: Field + source: + id: VolumeUp + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Key.cs + startLine: 593 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: The volume up key. + example: [] + syntax: + content: VolumeUp = 177 + return: + type: OpenTK.Platform.Key +- uid: OpenTK.Platform.Key.VolumeDown + commentId: F:OpenTK.Platform.Key.VolumeDown + id: VolumeDown + parent: OpenTK.Platform.Key + langs: + - csharp + - vb + name: VolumeDown + nameWithType: Key.VolumeDown + fullName: OpenTK.Platform.Key.VolumeDown + type: Field + source: + id: VolumeDown + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Key.cs + startLine: 597 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: The media volume down key. + example: [] + syntax: + content: VolumeDown = 178 + return: + type: OpenTK.Platform.Key +references: +- uid: OpenTK.Platform + commentId: N:OpenTK.Platform + href: OpenTK.html + name: OpenTK.Platform + nameWithType: OpenTK.Platform + fullName: OpenTK.Platform + spec.csharp: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Platform + name: Platform + href: OpenTK.Platform.html + spec.vb: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Platform + name: Platform + href: OpenTK.Platform.html +- uid: OpenTK.Platform.Key + commentId: T:OpenTK.Platform.Key + parent: OpenTK.Platform + href: OpenTK.Platform.Key.html + name: Key + nameWithType: Key + fullName: OpenTK.Platform.Key diff --git a/api/OpenTK.Core.Platform.KeyDownEventArgs.yml b/api/OpenTK.Platform.KeyDownEventArgs.yml similarity index 60% rename from api/OpenTK.Core.Platform.KeyDownEventArgs.yml rename to api/OpenTK.Platform.KeyDownEventArgs.yml index f9c1785f..b4e70ace 100644 --- a/api/OpenTK.Core.Platform.KeyDownEventArgs.yml +++ b/api/OpenTK.Platform.KeyDownEventArgs.yml @@ -1,35 +1,31 @@ ### YamlMime:ManagedReference items: -- uid: OpenTK.Core.Platform.KeyDownEventArgs - commentId: T:OpenTK.Core.Platform.KeyDownEventArgs +- uid: OpenTK.Platform.KeyDownEventArgs + commentId: T:OpenTK.Platform.KeyDownEventArgs id: KeyDownEventArgs - parent: OpenTK.Core.Platform + parent: OpenTK.Platform children: - - OpenTK.Core.Platform.KeyDownEventArgs.#ctor(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.Key,OpenTK.Core.Platform.Scancode,System.Boolean,OpenTK.Core.Platform.KeyModifier) - - OpenTK.Core.Platform.KeyDownEventArgs.IsRepeat - - OpenTK.Core.Platform.KeyDownEventArgs.Key - - OpenTK.Core.Platform.KeyDownEventArgs.Modifiers - - OpenTK.Core.Platform.KeyDownEventArgs.Scancode + - OpenTK.Platform.KeyDownEventArgs.#ctor(OpenTK.Platform.WindowHandle,OpenTK.Platform.Key,OpenTK.Platform.Scancode,System.Boolean,OpenTK.Platform.KeyModifier) + - OpenTK.Platform.KeyDownEventArgs.IsRepeat + - OpenTK.Platform.KeyDownEventArgs.Key + - OpenTK.Platform.KeyDownEventArgs.Modifiers + - OpenTK.Platform.KeyDownEventArgs.Scancode langs: - csharp - vb name: KeyDownEventArgs nameWithType: KeyDownEventArgs - fullName: OpenTK.Core.Platform.KeyDownEventArgs + fullName: OpenTK.Platform.KeyDownEventArgs type: Class source: - remote: - path: src/OpenTK.Core/Platform/WindowEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: KeyDownEventArgs - path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\WindowEventArgs.cs startLine: 191 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform + - OpenTK.Platform + namespace: OpenTK.Platform summary: This event is triggered when a keyboard key is pressed. - remarks: Do not use this event to handle typing, use instead. + remarks: Do not use this event to handle typing, use instead. example: [] syntax: content: 'public class KeyDownEventArgs : WindowEventArgs' @@ -37,9 +33,9 @@ items: inheritance: - System.Object - System.EventArgs - - OpenTK.Core.Platform.WindowEventArgs + - OpenTK.Platform.WindowEventArgs inheritedMembers: - - OpenTK.Core.Platform.WindowEventArgs.Window + - OpenTK.Platform.WindowEventArgs.Window - System.EventArgs.Empty - System.Object.Equals(System.Object) - System.Object.Equals(System.Object,System.Object) @@ -48,28 +44,24 @@ items: - System.Object.MemberwiseClone - System.Object.ReferenceEquals(System.Object,System.Object) - System.Object.ToString -- uid: OpenTK.Core.Platform.KeyDownEventArgs.Key - commentId: P:OpenTK.Core.Platform.KeyDownEventArgs.Key +- uid: OpenTK.Platform.KeyDownEventArgs.Key + commentId: P:OpenTK.Platform.KeyDownEventArgs.Key id: Key - parent: OpenTK.Core.Platform.KeyDownEventArgs + parent: OpenTK.Platform.KeyDownEventArgs langs: - csharp - vb name: Key nameWithType: KeyDownEventArgs.Key - fullName: OpenTK.Core.Platform.KeyDownEventArgs.Key + fullName: OpenTK.Platform.KeyDownEventArgs.Key type: Property source: - remote: - path: src/OpenTK.Core/Platform/WindowEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Key - path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\WindowEventArgs.cs startLine: 197 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform + - OpenTK.Platform + namespace: OpenTK.Platform summary: >- The virtual key that was pressed. @@ -79,31 +71,27 @@ items: content: public Key Key { get; } parameters: [] return: - type: OpenTK.Core.Platform.Key + type: OpenTK.Platform.Key content.vb: Public Property Key As Key - overload: OpenTK.Core.Platform.KeyDownEventArgs.Key* -- uid: OpenTK.Core.Platform.KeyDownEventArgs.Scancode - commentId: P:OpenTK.Core.Platform.KeyDownEventArgs.Scancode + overload: OpenTK.Platform.KeyDownEventArgs.Key* +- uid: OpenTK.Platform.KeyDownEventArgs.Scancode + commentId: P:OpenTK.Platform.KeyDownEventArgs.Scancode id: Scancode - parent: OpenTK.Core.Platform.KeyDownEventArgs + parent: OpenTK.Platform.KeyDownEventArgs langs: - csharp - vb name: Scancode nameWithType: KeyDownEventArgs.Scancode - fullName: OpenTK.Core.Platform.KeyDownEventArgs.Scancode + fullName: OpenTK.Platform.KeyDownEventArgs.Scancode type: Property source: - remote: - path: src/OpenTK.Core/Platform/WindowEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Scancode - path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\WindowEventArgs.cs startLine: 203 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform + - OpenTK.Platform + namespace: OpenTK.Platform summary: >- The scancode of the key pressed. @@ -113,31 +101,27 @@ items: content: public Scancode Scancode { get; } parameters: [] return: - type: OpenTK.Core.Platform.Scancode + type: OpenTK.Platform.Scancode content.vb: Public Property Scancode As Scancode - overload: OpenTK.Core.Platform.KeyDownEventArgs.Scancode* -- uid: OpenTK.Core.Platform.KeyDownEventArgs.IsRepeat - commentId: P:OpenTK.Core.Platform.KeyDownEventArgs.IsRepeat + overload: OpenTK.Platform.KeyDownEventArgs.Scancode* +- uid: OpenTK.Platform.KeyDownEventArgs.IsRepeat + commentId: P:OpenTK.Platform.KeyDownEventArgs.IsRepeat id: IsRepeat - parent: OpenTK.Core.Platform.KeyDownEventArgs + parent: OpenTK.Platform.KeyDownEventArgs langs: - csharp - vb name: IsRepeat nameWithType: KeyDownEventArgs.IsRepeat - fullName: OpenTK.Core.Platform.KeyDownEventArgs.IsRepeat + fullName: OpenTK.Platform.KeyDownEventArgs.IsRepeat type: Property source: - remote: - path: src/OpenTK.Core/Platform/WindowEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: IsRepeat - path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\WindowEventArgs.cs startLine: 208 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform + - OpenTK.Platform + namespace: OpenTK.Platform summary: Whether this event is caused by holding down this key or not. example: [] syntax: @@ -146,122 +130,106 @@ items: return: type: System.Boolean content.vb: Public Property IsRepeat As Boolean - overload: OpenTK.Core.Platform.KeyDownEventArgs.IsRepeat* -- uid: OpenTK.Core.Platform.KeyDownEventArgs.Modifiers - commentId: P:OpenTK.Core.Platform.KeyDownEventArgs.Modifiers + overload: OpenTK.Platform.KeyDownEventArgs.IsRepeat* +- uid: OpenTK.Platform.KeyDownEventArgs.Modifiers + commentId: P:OpenTK.Platform.KeyDownEventArgs.Modifiers id: Modifiers - parent: OpenTK.Core.Platform.KeyDownEventArgs + parent: OpenTK.Platform.KeyDownEventArgs langs: - csharp - vb name: Modifiers nameWithType: KeyDownEventArgs.Modifiers - fullName: OpenTK.Core.Platform.KeyDownEventArgs.Modifiers + fullName: OpenTK.Platform.KeyDownEventArgs.Modifiers type: Property source: - remote: - path: src/OpenTK.Core/Platform/WindowEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Modifiers - path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\WindowEventArgs.cs startLine: 213 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform + - OpenTK.Platform + namespace: OpenTK.Platform summary: The keyboard modifiers that where down while this key was pressed. example: [] syntax: content: public KeyModifier Modifiers { get; } parameters: [] return: - type: OpenTK.Core.Platform.KeyModifier + type: OpenTK.Platform.KeyModifier content.vb: Public Property Modifiers As KeyModifier - overload: OpenTK.Core.Platform.KeyDownEventArgs.Modifiers* -- uid: OpenTK.Core.Platform.KeyDownEventArgs.#ctor(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.Key,OpenTK.Core.Platform.Scancode,System.Boolean,OpenTK.Core.Platform.KeyModifier) - commentId: M:OpenTK.Core.Platform.KeyDownEventArgs.#ctor(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.Key,OpenTK.Core.Platform.Scancode,System.Boolean,OpenTK.Core.Platform.KeyModifier) - id: '#ctor(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.Key,OpenTK.Core.Platform.Scancode,System.Boolean,OpenTK.Core.Platform.KeyModifier)' - parent: OpenTK.Core.Platform.KeyDownEventArgs + overload: OpenTK.Platform.KeyDownEventArgs.Modifiers* +- uid: OpenTK.Platform.KeyDownEventArgs.#ctor(OpenTK.Platform.WindowHandle,OpenTK.Platform.Key,OpenTK.Platform.Scancode,System.Boolean,OpenTK.Platform.KeyModifier) + commentId: M:OpenTK.Platform.KeyDownEventArgs.#ctor(OpenTK.Platform.WindowHandle,OpenTK.Platform.Key,OpenTK.Platform.Scancode,System.Boolean,OpenTK.Platform.KeyModifier) + id: '#ctor(OpenTK.Platform.WindowHandle,OpenTK.Platform.Key,OpenTK.Platform.Scancode,System.Boolean,OpenTK.Platform.KeyModifier)' + parent: OpenTK.Platform.KeyDownEventArgs langs: - csharp - vb name: KeyDownEventArgs(WindowHandle, Key, Scancode, bool, KeyModifier) nameWithType: KeyDownEventArgs.KeyDownEventArgs(WindowHandle, Key, Scancode, bool, KeyModifier) - fullName: OpenTK.Core.Platform.KeyDownEventArgs.KeyDownEventArgs(OpenTK.Core.Platform.WindowHandle, OpenTK.Core.Platform.Key, OpenTK.Core.Platform.Scancode, bool, OpenTK.Core.Platform.KeyModifier) + fullName: OpenTK.Platform.KeyDownEventArgs.KeyDownEventArgs(OpenTK.Platform.WindowHandle, OpenTK.Platform.Key, OpenTK.Platform.Scancode, bool, OpenTK.Platform.KeyModifier) type: Constructor source: - remote: - path: src/OpenTK.Core/Platform/WindowEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\WindowEventArgs.cs startLine: 223 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Initializes a new instance of the class. + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Initializes a new instance of the class. example: [] syntax: content: public KeyDownEventArgs(WindowHandle window, Key key, Scancode scancode, bool isRepeat, KeyModifier modifiers) parameters: - id: window - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: The window which received this keypress. - id: key - type: OpenTK.Core.Platform.Key + type: OpenTK.Platform.Key description: The key that was pressed. - id: scancode - type: OpenTK.Core.Platform.Scancode + type: OpenTK.Platform.Scancode description: The scancode representing the key. - id: isRepeat type: System.Boolean description: True if this event is triggered by holding down the key, false otherwise. - id: modifiers - type: OpenTK.Core.Platform.KeyModifier + type: OpenTK.Platform.KeyModifier description: The keyboard modifiers that where down while this key was pressed. content.vb: Public Sub New(window As WindowHandle, key As Key, scancode As Scancode, isRepeat As Boolean, modifiers As KeyModifier) - overload: OpenTK.Core.Platform.KeyDownEventArgs.#ctor* + overload: OpenTK.Platform.KeyDownEventArgs.#ctor* nameWithType.vb: KeyDownEventArgs.New(WindowHandle, Key, Scancode, Boolean, KeyModifier) - fullName.vb: OpenTK.Core.Platform.KeyDownEventArgs.New(OpenTK.Core.Platform.WindowHandle, OpenTK.Core.Platform.Key, OpenTK.Core.Platform.Scancode, Boolean, OpenTK.Core.Platform.KeyModifier) + fullName.vb: OpenTK.Platform.KeyDownEventArgs.New(OpenTK.Platform.WindowHandle, OpenTK.Platform.Key, OpenTK.Platform.Scancode, Boolean, OpenTK.Platform.KeyModifier) name.vb: New(WindowHandle, Key, Scancode, Boolean, KeyModifier) references: -- uid: OpenTK.Core.Platform.TextInputEventArgs - commentId: T:OpenTK.Core.Platform.TextInputEventArgs - href: OpenTK.Core.Platform.TextInputEventArgs.html +- uid: OpenTK.Platform.TextInputEventArgs + commentId: T:OpenTK.Platform.TextInputEventArgs + href: OpenTK.Platform.TextInputEventArgs.html name: TextInputEventArgs nameWithType: TextInputEventArgs - fullName: OpenTK.Core.Platform.TextInputEventArgs -- uid: OpenTK.Core.Platform - commentId: N:OpenTK.Core.Platform + fullName: OpenTK.Platform.TextInputEventArgs +- uid: OpenTK.Platform + commentId: N:OpenTK.Platform href: OpenTK.html - name: OpenTK.Core.Platform - nameWithType: OpenTK.Core.Platform - fullName: OpenTK.Core.Platform + name: OpenTK.Platform + nameWithType: OpenTK.Platform + fullName: OpenTK.Platform spec.csharp: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html spec.vb: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html - uid: System.Object commentId: T:System.Object parent: System @@ -281,20 +249,20 @@ references: name: EventArgs nameWithType: EventArgs fullName: System.EventArgs -- uid: OpenTK.Core.Platform.WindowEventArgs - commentId: T:OpenTK.Core.Platform.WindowEventArgs - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.WindowEventArgs.html +- uid: OpenTK.Platform.WindowEventArgs + commentId: T:OpenTK.Platform.WindowEventArgs + parent: OpenTK.Platform + href: OpenTK.Platform.WindowEventArgs.html name: WindowEventArgs nameWithType: WindowEventArgs - fullName: OpenTK.Core.Platform.WindowEventArgs -- uid: OpenTK.Core.Platform.WindowEventArgs.Window - commentId: P:OpenTK.Core.Platform.WindowEventArgs.Window - parent: OpenTK.Core.Platform.WindowEventArgs - href: OpenTK.Core.Platform.WindowEventArgs.html#OpenTK_Core_Platform_WindowEventArgs_Window + fullName: OpenTK.Platform.WindowEventArgs +- uid: OpenTK.Platform.WindowEventArgs.Window + commentId: P:OpenTK.Platform.WindowEventArgs.Window + parent: OpenTK.Platform.WindowEventArgs + href: OpenTK.Platform.WindowEventArgs.html#OpenTK_Platform_WindowEventArgs_Window name: Window nameWithType: WindowEventArgs.Window - fullName: OpenTK.Core.Platform.WindowEventArgs.Window + fullName: OpenTK.Platform.WindowEventArgs.Window - uid: System.EventArgs.Empty commentId: F:System.EventArgs.Empty parent: System.EventArgs @@ -529,38 +497,38 @@ references: name: System nameWithType: System fullName: System -- uid: OpenTK.Core.Platform.KeyDownEventArgs.Key* - commentId: Overload:OpenTK.Core.Platform.KeyDownEventArgs.Key - href: OpenTK.Core.Platform.KeyDownEventArgs.html#OpenTK_Core_Platform_KeyDownEventArgs_Key +- uid: OpenTK.Platform.KeyDownEventArgs.Key* + commentId: Overload:OpenTK.Platform.KeyDownEventArgs.Key + href: OpenTK.Platform.KeyDownEventArgs.html#OpenTK_Platform_KeyDownEventArgs_Key name: Key nameWithType: KeyDownEventArgs.Key - fullName: OpenTK.Core.Platform.KeyDownEventArgs.Key -- uid: OpenTK.Core.Platform.Key - commentId: T:OpenTK.Core.Platform.Key - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.Key.html + fullName: OpenTK.Platform.KeyDownEventArgs.Key +- uid: OpenTK.Platform.Key + commentId: T:OpenTK.Platform.Key + parent: OpenTK.Platform + href: OpenTK.Platform.Key.html name: Key nameWithType: Key - fullName: OpenTK.Core.Platform.Key -- uid: OpenTK.Core.Platform.KeyDownEventArgs.Scancode* - commentId: Overload:OpenTK.Core.Platform.KeyDownEventArgs.Scancode - href: OpenTK.Core.Platform.KeyDownEventArgs.html#OpenTK_Core_Platform_KeyDownEventArgs_Scancode + fullName: OpenTK.Platform.Key +- uid: OpenTK.Platform.KeyDownEventArgs.Scancode* + commentId: Overload:OpenTK.Platform.KeyDownEventArgs.Scancode + href: OpenTK.Platform.KeyDownEventArgs.html#OpenTK_Platform_KeyDownEventArgs_Scancode name: Scancode nameWithType: KeyDownEventArgs.Scancode - fullName: OpenTK.Core.Platform.KeyDownEventArgs.Scancode -- uid: OpenTK.Core.Platform.Scancode - commentId: T:OpenTK.Core.Platform.Scancode - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.Scancode.html + fullName: OpenTK.Platform.KeyDownEventArgs.Scancode +- uid: OpenTK.Platform.Scancode + commentId: T:OpenTK.Platform.Scancode + parent: OpenTK.Platform + href: OpenTK.Platform.Scancode.html name: Scancode nameWithType: Scancode - fullName: OpenTK.Core.Platform.Scancode -- uid: OpenTK.Core.Platform.KeyDownEventArgs.IsRepeat* - commentId: Overload:OpenTK.Core.Platform.KeyDownEventArgs.IsRepeat - href: OpenTK.Core.Platform.KeyDownEventArgs.html#OpenTK_Core_Platform_KeyDownEventArgs_IsRepeat + fullName: OpenTK.Platform.Scancode +- uid: OpenTK.Platform.KeyDownEventArgs.IsRepeat* + commentId: Overload:OpenTK.Platform.KeyDownEventArgs.IsRepeat + href: OpenTK.Platform.KeyDownEventArgs.html#OpenTK_Platform_KeyDownEventArgs_IsRepeat name: IsRepeat nameWithType: KeyDownEventArgs.IsRepeat - fullName: OpenTK.Core.Platform.KeyDownEventArgs.IsRepeat + fullName: OpenTK.Platform.KeyDownEventArgs.IsRepeat - uid: System.Boolean commentId: T:System.Boolean parent: System @@ -572,38 +540,38 @@ references: nameWithType.vb: Boolean fullName.vb: Boolean name.vb: Boolean -- uid: OpenTK.Core.Platform.KeyDownEventArgs.Modifiers* - commentId: Overload:OpenTK.Core.Platform.KeyDownEventArgs.Modifiers - href: OpenTK.Core.Platform.KeyDownEventArgs.html#OpenTK_Core_Platform_KeyDownEventArgs_Modifiers +- uid: OpenTK.Platform.KeyDownEventArgs.Modifiers* + commentId: Overload:OpenTK.Platform.KeyDownEventArgs.Modifiers + href: OpenTK.Platform.KeyDownEventArgs.html#OpenTK_Platform_KeyDownEventArgs_Modifiers name: Modifiers nameWithType: KeyDownEventArgs.Modifiers - fullName: OpenTK.Core.Platform.KeyDownEventArgs.Modifiers -- uid: OpenTK.Core.Platform.KeyModifier - commentId: T:OpenTK.Core.Platform.KeyModifier - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.KeyModifier.html + fullName: OpenTK.Platform.KeyDownEventArgs.Modifiers +- uid: OpenTK.Platform.KeyModifier + commentId: T:OpenTK.Platform.KeyModifier + parent: OpenTK.Platform + href: OpenTK.Platform.KeyModifier.html name: KeyModifier nameWithType: KeyModifier - fullName: OpenTK.Core.Platform.KeyModifier -- uid: OpenTK.Core.Platform.KeyDownEventArgs - commentId: T:OpenTK.Core.Platform.KeyDownEventArgs - href: OpenTK.Core.Platform.KeyDownEventArgs.html + fullName: OpenTK.Platform.KeyModifier +- uid: OpenTK.Platform.KeyDownEventArgs + commentId: T:OpenTK.Platform.KeyDownEventArgs + href: OpenTK.Platform.KeyDownEventArgs.html name: KeyDownEventArgs nameWithType: KeyDownEventArgs - fullName: OpenTK.Core.Platform.KeyDownEventArgs -- uid: OpenTK.Core.Platform.KeyDownEventArgs.#ctor* - commentId: Overload:OpenTK.Core.Platform.KeyDownEventArgs.#ctor - href: OpenTK.Core.Platform.KeyDownEventArgs.html#OpenTK_Core_Platform_KeyDownEventArgs__ctor_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_Key_OpenTK_Core_Platform_Scancode_System_Boolean_OpenTK_Core_Platform_KeyModifier_ + fullName: OpenTK.Platform.KeyDownEventArgs +- uid: OpenTK.Platform.KeyDownEventArgs.#ctor* + commentId: Overload:OpenTK.Platform.KeyDownEventArgs.#ctor + href: OpenTK.Platform.KeyDownEventArgs.html#OpenTK_Platform_KeyDownEventArgs__ctor_OpenTK_Platform_WindowHandle_OpenTK_Platform_Key_OpenTK_Platform_Scancode_System_Boolean_OpenTK_Platform_KeyModifier_ name: KeyDownEventArgs nameWithType: KeyDownEventArgs.KeyDownEventArgs - fullName: OpenTK.Core.Platform.KeyDownEventArgs.KeyDownEventArgs + fullName: OpenTK.Platform.KeyDownEventArgs.KeyDownEventArgs nameWithType.vb: KeyDownEventArgs.New - fullName.vb: OpenTK.Core.Platform.KeyDownEventArgs.New + fullName.vb: OpenTK.Platform.KeyDownEventArgs.New name.vb: New -- uid: OpenTK.Core.Platform.WindowHandle - commentId: T:OpenTK.Core.Platform.WindowHandle - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.WindowHandle.html +- uid: OpenTK.Platform.WindowHandle + commentId: T:OpenTK.Platform.WindowHandle + parent: OpenTK.Platform + href: OpenTK.Platform.WindowHandle.html name: WindowHandle nameWithType: WindowHandle - fullName: OpenTK.Core.Platform.WindowHandle + fullName: OpenTK.Platform.WindowHandle diff --git a/api/OpenTK.Platform.KeyModifier.yml b/api/OpenTK.Platform.KeyModifier.yml new file mode 100644 index 00000000..ffac8a5a --- /dev/null +++ b/api/OpenTK.Platform.KeyModifier.yml @@ -0,0 +1,532 @@ +### YamlMime:ManagedReference +items: +- uid: OpenTK.Platform.KeyModifier + commentId: T:OpenTK.Platform.KeyModifier + id: KeyModifier + parent: OpenTK.Platform + children: + - OpenTK.Platform.KeyModifier.Alt + - OpenTK.Platform.KeyModifier.CapsLock + - OpenTK.Platform.KeyModifier.Control + - OpenTK.Platform.KeyModifier.GUI + - OpenTK.Platform.KeyModifier.LeftAlt + - OpenTK.Platform.KeyModifier.LeftControl + - OpenTK.Platform.KeyModifier.LeftGUI + - OpenTK.Platform.KeyModifier.LeftShift + - OpenTK.Platform.KeyModifier.None + - OpenTK.Platform.KeyModifier.NumLock + - OpenTK.Platform.KeyModifier.RightAlt + - OpenTK.Platform.KeyModifier.RightControl + - OpenTK.Platform.KeyModifier.RightGUI + - OpenTK.Platform.KeyModifier.RightShift + - OpenTK.Platform.KeyModifier.ScrollLock + - OpenTK.Platform.KeyModifier.Shift + langs: + - csharp + - vb + name: KeyModifier + nameWithType: KeyModifier + fullName: OpenTK.Platform.KeyModifier + type: Enum + source: + id: KeyModifier + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\KeyModifier.cs + startLine: 11 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Flags indicating keyboard modifiers. + example: [] + syntax: + content: >- + [Flags] + + public enum KeyModifier + content.vb: >- + + + Public Enum KeyModifier + attributes: + - type: System.FlagsAttribute + ctor: System.FlagsAttribute.#ctor + arguments: [] +- uid: OpenTK.Platform.KeyModifier.None + commentId: F:OpenTK.Platform.KeyModifier.None + id: None + parent: OpenTK.Platform.KeyModifier + langs: + - csharp + - vb + name: None + nameWithType: KeyModifier.None + fullName: OpenTK.Platform.KeyModifier.None + type: Field + source: + id: None + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\KeyModifier.cs + startLine: 18 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: If no modifiers or locks are active. + example: [] + syntax: + content: None = 0 + return: + type: OpenTK.Platform.KeyModifier +- uid: OpenTK.Platform.KeyModifier.LeftShift + commentId: F:OpenTK.Platform.KeyModifier.LeftShift + id: LeftShift + parent: OpenTK.Platform.KeyModifier + langs: + - csharp + - vb + name: LeftShift + nameWithType: KeyModifier.LeftShift + fullName: OpenTK.Platform.KeyModifier.LeftShift + type: Field + source: + id: LeftShift + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\KeyModifier.cs + startLine: 23 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: If is down. + example: [] + syntax: + content: LeftShift = 1 + return: + type: OpenTK.Platform.KeyModifier +- uid: OpenTK.Platform.KeyModifier.RightShift + commentId: F:OpenTK.Platform.KeyModifier.RightShift + id: RightShift + parent: OpenTK.Platform.KeyModifier + langs: + - csharp + - vb + name: RightShift + nameWithType: KeyModifier.RightShift + fullName: OpenTK.Platform.KeyModifier.RightShift + type: Field + source: + id: RightShift + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\KeyModifier.cs + startLine: 28 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: If is down. + example: [] + syntax: + content: RightShift = 2 + return: + type: OpenTK.Platform.KeyModifier +- uid: OpenTK.Platform.KeyModifier.LeftControl + commentId: F:OpenTK.Platform.KeyModifier.LeftControl + id: LeftControl + parent: OpenTK.Platform.KeyModifier + langs: + - csharp + - vb + name: LeftControl + nameWithType: KeyModifier.LeftControl + fullName: OpenTK.Platform.KeyModifier.LeftControl + type: Field + source: + id: LeftControl + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\KeyModifier.cs + startLine: 33 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: If is down. + example: [] + syntax: + content: LeftControl = 4 + return: + type: OpenTK.Platform.KeyModifier +- uid: OpenTK.Platform.KeyModifier.RightControl + commentId: F:OpenTK.Platform.KeyModifier.RightControl + id: RightControl + parent: OpenTK.Platform.KeyModifier + langs: + - csharp + - vb + name: RightControl + nameWithType: KeyModifier.RightControl + fullName: OpenTK.Platform.KeyModifier.RightControl + type: Field + source: + id: RightControl + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\KeyModifier.cs + startLine: 38 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: If is down. + example: [] + syntax: + content: RightControl = 8 + return: + type: OpenTK.Platform.KeyModifier +- uid: OpenTK.Platform.KeyModifier.LeftAlt + commentId: F:OpenTK.Platform.KeyModifier.LeftAlt + id: LeftAlt + parent: OpenTK.Platform.KeyModifier + langs: + - csharp + - vb + name: LeftAlt + nameWithType: KeyModifier.LeftAlt + fullName: OpenTK.Platform.KeyModifier.LeftAlt + type: Field + source: + id: LeftAlt + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\KeyModifier.cs + startLine: 43 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: If is down. + example: [] + syntax: + content: LeftAlt = 16 + return: + type: OpenTK.Platform.KeyModifier +- uid: OpenTK.Platform.KeyModifier.RightAlt + commentId: F:OpenTK.Platform.KeyModifier.RightAlt + id: RightAlt + parent: OpenTK.Platform.KeyModifier + langs: + - csharp + - vb + name: RightAlt + nameWithType: KeyModifier.RightAlt + fullName: OpenTK.Platform.KeyModifier.RightAlt + type: Field + source: + id: RightAlt + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\KeyModifier.cs + startLine: 48 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: If is down. + example: [] + syntax: + content: RightAlt = 32 + return: + type: OpenTK.Platform.KeyModifier +- uid: OpenTK.Platform.KeyModifier.LeftGUI + commentId: F:OpenTK.Platform.KeyModifier.LeftGUI + id: LeftGUI + parent: OpenTK.Platform.KeyModifier + langs: + - csharp + - vb + name: LeftGUI + nameWithType: KeyModifier.LeftGUI + fullName: OpenTK.Platform.KeyModifier.LeftGUI + type: Field + source: + id: LeftGUI + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\KeyModifier.cs + startLine: 53 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: If is down. + example: [] + syntax: + content: LeftGUI = 64 + return: + type: OpenTK.Platform.KeyModifier +- uid: OpenTK.Platform.KeyModifier.RightGUI + commentId: F:OpenTK.Platform.KeyModifier.RightGUI + id: RightGUI + parent: OpenTK.Platform.KeyModifier + langs: + - csharp + - vb + name: RightGUI + nameWithType: KeyModifier.RightGUI + fullName: OpenTK.Platform.KeyModifier.RightGUI + type: Field + source: + id: RightGUI + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\KeyModifier.cs + startLine: 58 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: If is down. + example: [] + syntax: + content: RightGUI = 128 + return: + type: OpenTK.Platform.KeyModifier +- uid: OpenTK.Platform.KeyModifier.Shift + commentId: F:OpenTK.Platform.KeyModifier.Shift + id: Shift + parent: OpenTK.Platform.KeyModifier + langs: + - csharp + - vb + name: Shift + nameWithType: KeyModifier.Shift + fullName: OpenTK.Platform.KeyModifier.Shift + type: Field + source: + id: Shift + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\KeyModifier.cs + startLine: 63 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: If any of or are down. + example: [] + syntax: + content: Shift = 256 + return: + type: OpenTK.Platform.KeyModifier +- uid: OpenTK.Platform.KeyModifier.Control + commentId: F:OpenTK.Platform.KeyModifier.Control + id: Control + parent: OpenTK.Platform.KeyModifier + langs: + - csharp + - vb + name: Control + nameWithType: KeyModifier.Control + fullName: OpenTK.Platform.KeyModifier.Control + type: Field + source: + id: Control + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\KeyModifier.cs + startLine: 68 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: If any of or are down. + example: [] + syntax: + content: Control = 512 + return: + type: OpenTK.Platform.KeyModifier +- uid: OpenTK.Platform.KeyModifier.Alt + commentId: F:OpenTK.Platform.KeyModifier.Alt + id: Alt + parent: OpenTK.Platform.KeyModifier + langs: + - csharp + - vb + name: Alt + nameWithType: KeyModifier.Alt + fullName: OpenTK.Platform.KeyModifier.Alt + type: Field + source: + id: Alt + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\KeyModifier.cs + startLine: 73 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: If any of or are down. + example: [] + syntax: + content: Alt = 1024 + return: + type: OpenTK.Platform.KeyModifier +- uid: OpenTK.Platform.KeyModifier.GUI + commentId: F:OpenTK.Platform.KeyModifier.GUI + id: GUI + parent: OpenTK.Platform.KeyModifier + langs: + - csharp + - vb + name: GUI + nameWithType: KeyModifier.GUI + fullName: OpenTK.Platform.KeyModifier.GUI + type: Field + source: + id: GUI + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\KeyModifier.cs + startLine: 78 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: If any of or are down. + example: [] + syntax: + content: GUI = 2048 + return: + type: OpenTK.Platform.KeyModifier +- uid: OpenTK.Platform.KeyModifier.NumLock + commentId: F:OpenTK.Platform.KeyModifier.NumLock + id: NumLock + parent: OpenTK.Platform.KeyModifier + langs: + - csharp + - vb + name: NumLock + nameWithType: KeyModifier.NumLock + fullName: OpenTK.Platform.KeyModifier.NumLock + type: Field + source: + id: NumLock + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\KeyModifier.cs + startLine: 83 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: If is toggled on. + example: [] + syntax: + content: NumLock = 1048576 + return: + type: OpenTK.Platform.KeyModifier +- uid: OpenTK.Platform.KeyModifier.CapsLock + commentId: F:OpenTK.Platform.KeyModifier.CapsLock + id: CapsLock + parent: OpenTK.Platform.KeyModifier + langs: + - csharp + - vb + name: CapsLock + nameWithType: KeyModifier.CapsLock + fullName: OpenTK.Platform.KeyModifier.CapsLock + type: Field + source: + id: CapsLock + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\KeyModifier.cs + startLine: 88 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: If is toggled on. + example: [] + syntax: + content: CapsLock = 2097152 + return: + type: OpenTK.Platform.KeyModifier +- uid: OpenTK.Platform.KeyModifier.ScrollLock + commentId: F:OpenTK.Platform.KeyModifier.ScrollLock + id: ScrollLock + parent: OpenTK.Platform.KeyModifier + langs: + - csharp + - vb + name: ScrollLock + nameWithType: KeyModifier.ScrollLock + fullName: OpenTK.Platform.KeyModifier.ScrollLock + type: Field + source: + id: ScrollLock + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\KeyModifier.cs + startLine: 93 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Is is toggled on. + example: [] + syntax: + content: ScrollLock = 4194304 + return: + type: OpenTK.Platform.KeyModifier +references: +- uid: OpenTK.Platform + commentId: N:OpenTK.Platform + href: OpenTK.html + name: OpenTK.Platform + nameWithType: OpenTK.Platform + fullName: OpenTK.Platform + spec.csharp: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Platform + name: Platform + href: OpenTK.Platform.html + spec.vb: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Platform + name: Platform + href: OpenTK.Platform.html +- uid: OpenTK.Platform.KeyModifier + commentId: T:OpenTK.Platform.KeyModifier + parent: OpenTK.Platform + href: OpenTK.Platform.KeyModifier.html + name: KeyModifier + nameWithType: KeyModifier + fullName: OpenTK.Platform.KeyModifier +- uid: OpenTK.Platform.Key.LeftShift + commentId: F:OpenTK.Platform.Key.LeftShift + href: OpenTK.Platform.Key.html#OpenTK_Platform_Key_LeftShift + name: LeftShift + nameWithType: Key.LeftShift + fullName: OpenTK.Platform.Key.LeftShift +- uid: OpenTK.Platform.Key.RightShift + commentId: F:OpenTK.Platform.Key.RightShift + href: OpenTK.Platform.Key.html#OpenTK_Platform_Key_RightShift + name: RightShift + nameWithType: Key.RightShift + fullName: OpenTK.Platform.Key.RightShift +- uid: OpenTK.Platform.Key.LeftControl + commentId: F:OpenTK.Platform.Key.LeftControl + href: OpenTK.Platform.Key.html#OpenTK_Platform_Key_LeftControl + name: LeftControl + nameWithType: Key.LeftControl + fullName: OpenTK.Platform.Key.LeftControl +- uid: OpenTK.Platform.Key.RightControl + commentId: F:OpenTK.Platform.Key.RightControl + href: OpenTK.Platform.Key.html#OpenTK_Platform_Key_RightControl + name: RightControl + nameWithType: Key.RightControl + fullName: OpenTK.Platform.Key.RightControl +- uid: OpenTK.Platform.Key.LeftAlt + commentId: F:OpenTK.Platform.Key.LeftAlt + href: OpenTK.Platform.Key.html#OpenTK_Platform_Key_LeftAlt + name: LeftAlt + nameWithType: Key.LeftAlt + fullName: OpenTK.Platform.Key.LeftAlt +- uid: OpenTK.Platform.Key.RightAlt + commentId: F:OpenTK.Platform.Key.RightAlt + href: OpenTK.Platform.Key.html#OpenTK_Platform_Key_RightAlt + name: RightAlt + nameWithType: Key.RightAlt + fullName: OpenTK.Platform.Key.RightAlt +- uid: OpenTK.Platform.Key.LeftGUI + commentId: F:OpenTK.Platform.Key.LeftGUI + href: OpenTK.Platform.Key.html#OpenTK_Platform_Key_LeftGUI + name: LeftGUI + nameWithType: Key.LeftGUI + fullName: OpenTK.Platform.Key.LeftGUI +- uid: OpenTK.Platform.Key.RightGUI + commentId: F:OpenTK.Platform.Key.RightGUI + href: OpenTK.Platform.Key.html#OpenTK_Platform_Key_RightGUI + name: RightGUI + nameWithType: Key.RightGUI + fullName: OpenTK.Platform.Key.RightGUI +- uid: OpenTK.Platform.Key.NumLock + commentId: F:OpenTK.Platform.Key.NumLock + href: OpenTK.Platform.Key.html#OpenTK_Platform_Key_NumLock + name: NumLock + nameWithType: Key.NumLock + fullName: OpenTK.Platform.Key.NumLock +- uid: OpenTK.Platform.Key.CapsLock + commentId: F:OpenTK.Platform.Key.CapsLock + href: OpenTK.Platform.Key.html#OpenTK_Platform_Key_CapsLock + name: CapsLock + nameWithType: Key.CapsLock + fullName: OpenTK.Platform.Key.CapsLock +- uid: OpenTK.Platform.Key.ScrollLock + commentId: F:OpenTK.Platform.Key.ScrollLock + href: OpenTK.Platform.Key.html#OpenTK_Platform_Key_ScrollLock + name: ScrollLock + nameWithType: Key.ScrollLock + fullName: OpenTK.Platform.Key.ScrollLock diff --git a/api/OpenTK.Core.Platform.KeyUpEventArgs.yml b/api/OpenTK.Platform.KeyUpEventArgs.yml similarity index 62% rename from api/OpenTK.Core.Platform.KeyUpEventArgs.yml rename to api/OpenTK.Platform.KeyUpEventArgs.yml index 946b6dc2..3ee4f236 100644 --- a/api/OpenTK.Core.Platform.KeyUpEventArgs.yml +++ b/api/OpenTK.Platform.KeyUpEventArgs.yml @@ -1,34 +1,30 @@ ### YamlMime:ManagedReference items: -- uid: OpenTK.Core.Platform.KeyUpEventArgs - commentId: T:OpenTK.Core.Platform.KeyUpEventArgs +- uid: OpenTK.Platform.KeyUpEventArgs + commentId: T:OpenTK.Platform.KeyUpEventArgs id: KeyUpEventArgs - parent: OpenTK.Core.Platform + parent: OpenTK.Platform children: - - OpenTK.Core.Platform.KeyUpEventArgs.#ctor(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.Key,OpenTK.Core.Platform.Scancode,OpenTK.Core.Platform.KeyModifier) - - OpenTK.Core.Platform.KeyUpEventArgs.Key - - OpenTK.Core.Platform.KeyUpEventArgs.Modifiers - - OpenTK.Core.Platform.KeyUpEventArgs.Scancode + - OpenTK.Platform.KeyUpEventArgs.#ctor(OpenTK.Platform.WindowHandle,OpenTK.Platform.Key,OpenTK.Platform.Scancode,OpenTK.Platform.KeyModifier) + - OpenTK.Platform.KeyUpEventArgs.Key + - OpenTK.Platform.KeyUpEventArgs.Modifiers + - OpenTK.Platform.KeyUpEventArgs.Scancode langs: - csharp - vb name: KeyUpEventArgs nameWithType: KeyUpEventArgs - fullName: OpenTK.Core.Platform.KeyUpEventArgs + fullName: OpenTK.Platform.KeyUpEventArgs type: Class source: - remote: - path: src/OpenTK.Core/Platform/WindowEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: KeyUpEventArgs - path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\WindowEventArgs.cs startLine: 236 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform + - OpenTK.Platform + namespace: OpenTK.Platform summary: This event is triggered when a keyboard key is released. - remarks: Do not use this event to handle typing, use instead. + remarks: Do not use this event to handle typing, use instead. example: [] syntax: content: 'public class KeyUpEventArgs : WindowEventArgs' @@ -36,9 +32,9 @@ items: inheritance: - System.Object - System.EventArgs - - OpenTK.Core.Platform.WindowEventArgs + - OpenTK.Platform.WindowEventArgs inheritedMembers: - - OpenTK.Core.Platform.WindowEventArgs.Window + - OpenTK.Platform.WindowEventArgs.Window - System.EventArgs.Empty - System.Object.Equals(System.Object) - System.Object.Equals(System.Object,System.Object) @@ -47,28 +43,24 @@ items: - System.Object.MemberwiseClone - System.Object.ReferenceEquals(System.Object,System.Object) - System.Object.ToString -- uid: OpenTK.Core.Platform.KeyUpEventArgs.Key - commentId: P:OpenTK.Core.Platform.KeyUpEventArgs.Key +- uid: OpenTK.Platform.KeyUpEventArgs.Key + commentId: P:OpenTK.Platform.KeyUpEventArgs.Key id: Key - parent: OpenTK.Core.Platform.KeyUpEventArgs + parent: OpenTK.Platform.KeyUpEventArgs langs: - csharp - vb name: Key nameWithType: KeyUpEventArgs.Key - fullName: OpenTK.Core.Platform.KeyUpEventArgs.Key + fullName: OpenTK.Platform.KeyUpEventArgs.Key type: Property source: - remote: - path: src/OpenTK.Core/Platform/WindowEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Key - path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\WindowEventArgs.cs startLine: 244 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform + - OpenTK.Platform + namespace: OpenTK.Platform summary: >- The virtual key that was pressed. @@ -78,31 +70,27 @@ items: content: public Key Key { get; } parameters: [] return: - type: OpenTK.Core.Platform.Key + type: OpenTK.Platform.Key content.vb: Public Property Key As Key - overload: OpenTK.Core.Platform.KeyUpEventArgs.Key* -- uid: OpenTK.Core.Platform.KeyUpEventArgs.Scancode - commentId: P:OpenTK.Core.Platform.KeyUpEventArgs.Scancode + overload: OpenTK.Platform.KeyUpEventArgs.Key* +- uid: OpenTK.Platform.KeyUpEventArgs.Scancode + commentId: P:OpenTK.Platform.KeyUpEventArgs.Scancode id: Scancode - parent: OpenTK.Core.Platform.KeyUpEventArgs + parent: OpenTK.Platform.KeyUpEventArgs langs: - csharp - vb name: Scancode nameWithType: KeyUpEventArgs.Scancode - fullName: OpenTK.Core.Platform.KeyUpEventArgs.Scancode + fullName: OpenTK.Platform.KeyUpEventArgs.Scancode type: Property source: - remote: - path: src/OpenTK.Core/Platform/WindowEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Scancode - path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\WindowEventArgs.cs startLine: 250 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform + - OpenTK.Platform + namespace: OpenTK.Platform summary: >- The scancode of the key pressed. @@ -112,121 +100,105 @@ items: content: public Scancode Scancode { get; } parameters: [] return: - type: OpenTK.Core.Platform.Scancode + type: OpenTK.Platform.Scancode content.vb: Public Property Scancode As Scancode - overload: OpenTK.Core.Platform.KeyUpEventArgs.Scancode* -- uid: OpenTK.Core.Platform.KeyUpEventArgs.Modifiers - commentId: P:OpenTK.Core.Platform.KeyUpEventArgs.Modifiers + overload: OpenTK.Platform.KeyUpEventArgs.Scancode* +- uid: OpenTK.Platform.KeyUpEventArgs.Modifiers + commentId: P:OpenTK.Platform.KeyUpEventArgs.Modifiers id: Modifiers - parent: OpenTK.Core.Platform.KeyUpEventArgs + parent: OpenTK.Platform.KeyUpEventArgs langs: - csharp - vb name: Modifiers nameWithType: KeyUpEventArgs.Modifiers - fullName: OpenTK.Core.Platform.KeyUpEventArgs.Modifiers + fullName: OpenTK.Platform.KeyUpEventArgs.Modifiers type: Property source: - remote: - path: src/OpenTK.Core/Platform/WindowEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Modifiers - path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\WindowEventArgs.cs startLine: 255 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform + - OpenTK.Platform + namespace: OpenTK.Platform summary: The keyboard modifiers that where down while this key was released. example: [] syntax: content: public KeyModifier Modifiers { get; } parameters: [] return: - type: OpenTK.Core.Platform.KeyModifier + type: OpenTK.Platform.KeyModifier content.vb: Public Property Modifiers As KeyModifier - overload: OpenTK.Core.Platform.KeyUpEventArgs.Modifiers* -- uid: OpenTK.Core.Platform.KeyUpEventArgs.#ctor(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.Key,OpenTK.Core.Platform.Scancode,OpenTK.Core.Platform.KeyModifier) - commentId: M:OpenTK.Core.Platform.KeyUpEventArgs.#ctor(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.Key,OpenTK.Core.Platform.Scancode,OpenTK.Core.Platform.KeyModifier) - id: '#ctor(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.Key,OpenTK.Core.Platform.Scancode,OpenTK.Core.Platform.KeyModifier)' - parent: OpenTK.Core.Platform.KeyUpEventArgs + overload: OpenTK.Platform.KeyUpEventArgs.Modifiers* +- uid: OpenTK.Platform.KeyUpEventArgs.#ctor(OpenTK.Platform.WindowHandle,OpenTK.Platform.Key,OpenTK.Platform.Scancode,OpenTK.Platform.KeyModifier) + commentId: M:OpenTK.Platform.KeyUpEventArgs.#ctor(OpenTK.Platform.WindowHandle,OpenTK.Platform.Key,OpenTK.Platform.Scancode,OpenTK.Platform.KeyModifier) + id: '#ctor(OpenTK.Platform.WindowHandle,OpenTK.Platform.Key,OpenTK.Platform.Scancode,OpenTK.Platform.KeyModifier)' + parent: OpenTK.Platform.KeyUpEventArgs langs: - csharp - vb name: KeyUpEventArgs(WindowHandle, Key, Scancode, KeyModifier) nameWithType: KeyUpEventArgs.KeyUpEventArgs(WindowHandle, Key, Scancode, KeyModifier) - fullName: OpenTK.Core.Platform.KeyUpEventArgs.KeyUpEventArgs(OpenTK.Core.Platform.WindowHandle, OpenTK.Core.Platform.Key, OpenTK.Core.Platform.Scancode, OpenTK.Core.Platform.KeyModifier) + fullName: OpenTK.Platform.KeyUpEventArgs.KeyUpEventArgs(OpenTK.Platform.WindowHandle, OpenTK.Platform.Key, OpenTK.Platform.Scancode, OpenTK.Platform.KeyModifier) type: Constructor source: - remote: - path: src/OpenTK.Core/Platform/WindowEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\WindowEventArgs.cs startLine: 264 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Initializes a new instance of the class. + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Initializes a new instance of the class. example: [] syntax: content: public KeyUpEventArgs(WindowHandle window, Key key, Scancode scancode, KeyModifier modifiers) parameters: - id: window - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: The window which received this keypress. - id: key - type: OpenTK.Core.Platform.Key + type: OpenTK.Platform.Key description: The key that was released. - id: scancode - type: OpenTK.Core.Platform.Scancode + type: OpenTK.Platform.Scancode description: The scancode representing the key. - id: modifiers - type: OpenTK.Core.Platform.KeyModifier + type: OpenTK.Platform.KeyModifier description: The keyboard modifiers that where down while this key was released. content.vb: Public Sub New(window As WindowHandle, key As Key, scancode As Scancode, modifiers As KeyModifier) - overload: OpenTK.Core.Platform.KeyUpEventArgs.#ctor* + overload: OpenTK.Platform.KeyUpEventArgs.#ctor* nameWithType.vb: KeyUpEventArgs.New(WindowHandle, Key, Scancode, KeyModifier) - fullName.vb: OpenTK.Core.Platform.KeyUpEventArgs.New(OpenTK.Core.Platform.WindowHandle, OpenTK.Core.Platform.Key, OpenTK.Core.Platform.Scancode, OpenTK.Core.Platform.KeyModifier) + fullName.vb: OpenTK.Platform.KeyUpEventArgs.New(OpenTK.Platform.WindowHandle, OpenTK.Platform.Key, OpenTK.Platform.Scancode, OpenTK.Platform.KeyModifier) name.vb: New(WindowHandle, Key, Scancode, KeyModifier) references: -- uid: OpenTK.Core.Platform.TextInputEventArgs - commentId: T:OpenTK.Core.Platform.TextInputEventArgs - href: OpenTK.Core.Platform.TextInputEventArgs.html +- uid: OpenTK.Platform.TextInputEventArgs + commentId: T:OpenTK.Platform.TextInputEventArgs + href: OpenTK.Platform.TextInputEventArgs.html name: TextInputEventArgs nameWithType: TextInputEventArgs - fullName: OpenTK.Core.Platform.TextInputEventArgs -- uid: OpenTK.Core.Platform - commentId: N:OpenTK.Core.Platform + fullName: OpenTK.Platform.TextInputEventArgs +- uid: OpenTK.Platform + commentId: N:OpenTK.Platform href: OpenTK.html - name: OpenTK.Core.Platform - nameWithType: OpenTK.Core.Platform - fullName: OpenTK.Core.Platform + name: OpenTK.Platform + nameWithType: OpenTK.Platform + fullName: OpenTK.Platform spec.csharp: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html spec.vb: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html - uid: System.Object commentId: T:System.Object parent: System @@ -246,20 +218,20 @@ references: name: EventArgs nameWithType: EventArgs fullName: System.EventArgs -- uid: OpenTK.Core.Platform.WindowEventArgs - commentId: T:OpenTK.Core.Platform.WindowEventArgs - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.WindowEventArgs.html +- uid: OpenTK.Platform.WindowEventArgs + commentId: T:OpenTK.Platform.WindowEventArgs + parent: OpenTK.Platform + href: OpenTK.Platform.WindowEventArgs.html name: WindowEventArgs nameWithType: WindowEventArgs - fullName: OpenTK.Core.Platform.WindowEventArgs -- uid: OpenTK.Core.Platform.WindowEventArgs.Window - commentId: P:OpenTK.Core.Platform.WindowEventArgs.Window - parent: OpenTK.Core.Platform.WindowEventArgs - href: OpenTK.Core.Platform.WindowEventArgs.html#OpenTK_Core_Platform_WindowEventArgs_Window + fullName: OpenTK.Platform.WindowEventArgs +- uid: OpenTK.Platform.WindowEventArgs.Window + commentId: P:OpenTK.Platform.WindowEventArgs.Window + parent: OpenTK.Platform.WindowEventArgs + href: OpenTK.Platform.WindowEventArgs.html#OpenTK_Platform_WindowEventArgs_Window name: Window nameWithType: WindowEventArgs.Window - fullName: OpenTK.Core.Platform.WindowEventArgs.Window + fullName: OpenTK.Platform.WindowEventArgs.Window - uid: System.EventArgs.Empty commentId: F:System.EventArgs.Empty parent: System.EventArgs @@ -494,64 +466,64 @@ references: name: System nameWithType: System fullName: System -- uid: OpenTK.Core.Platform.KeyUpEventArgs.Key* - commentId: Overload:OpenTK.Core.Platform.KeyUpEventArgs.Key - href: OpenTK.Core.Platform.KeyUpEventArgs.html#OpenTK_Core_Platform_KeyUpEventArgs_Key +- uid: OpenTK.Platform.KeyUpEventArgs.Key* + commentId: Overload:OpenTK.Platform.KeyUpEventArgs.Key + href: OpenTK.Platform.KeyUpEventArgs.html#OpenTK_Platform_KeyUpEventArgs_Key name: Key nameWithType: KeyUpEventArgs.Key - fullName: OpenTK.Core.Platform.KeyUpEventArgs.Key -- uid: OpenTK.Core.Platform.Key - commentId: T:OpenTK.Core.Platform.Key - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.Key.html + fullName: OpenTK.Platform.KeyUpEventArgs.Key +- uid: OpenTK.Platform.Key + commentId: T:OpenTK.Platform.Key + parent: OpenTK.Platform + href: OpenTK.Platform.Key.html name: Key nameWithType: Key - fullName: OpenTK.Core.Platform.Key -- uid: OpenTK.Core.Platform.KeyUpEventArgs.Scancode* - commentId: Overload:OpenTK.Core.Platform.KeyUpEventArgs.Scancode - href: OpenTK.Core.Platform.KeyUpEventArgs.html#OpenTK_Core_Platform_KeyUpEventArgs_Scancode + fullName: OpenTK.Platform.Key +- uid: OpenTK.Platform.KeyUpEventArgs.Scancode* + commentId: Overload:OpenTK.Platform.KeyUpEventArgs.Scancode + href: OpenTK.Platform.KeyUpEventArgs.html#OpenTK_Platform_KeyUpEventArgs_Scancode name: Scancode nameWithType: KeyUpEventArgs.Scancode - fullName: OpenTK.Core.Platform.KeyUpEventArgs.Scancode -- uid: OpenTK.Core.Platform.Scancode - commentId: T:OpenTK.Core.Platform.Scancode - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.Scancode.html + fullName: OpenTK.Platform.KeyUpEventArgs.Scancode +- uid: OpenTK.Platform.Scancode + commentId: T:OpenTK.Platform.Scancode + parent: OpenTK.Platform + href: OpenTK.Platform.Scancode.html name: Scancode nameWithType: Scancode - fullName: OpenTK.Core.Platform.Scancode -- uid: OpenTK.Core.Platform.KeyUpEventArgs.Modifiers* - commentId: Overload:OpenTK.Core.Platform.KeyUpEventArgs.Modifiers - href: OpenTK.Core.Platform.KeyUpEventArgs.html#OpenTK_Core_Platform_KeyUpEventArgs_Modifiers + fullName: OpenTK.Platform.Scancode +- uid: OpenTK.Platform.KeyUpEventArgs.Modifiers* + commentId: Overload:OpenTK.Platform.KeyUpEventArgs.Modifiers + href: OpenTK.Platform.KeyUpEventArgs.html#OpenTK_Platform_KeyUpEventArgs_Modifiers name: Modifiers nameWithType: KeyUpEventArgs.Modifiers - fullName: OpenTK.Core.Platform.KeyUpEventArgs.Modifiers -- uid: OpenTK.Core.Platform.KeyModifier - commentId: T:OpenTK.Core.Platform.KeyModifier - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.KeyModifier.html + fullName: OpenTK.Platform.KeyUpEventArgs.Modifiers +- uid: OpenTK.Platform.KeyModifier + commentId: T:OpenTK.Platform.KeyModifier + parent: OpenTK.Platform + href: OpenTK.Platform.KeyModifier.html name: KeyModifier nameWithType: KeyModifier - fullName: OpenTK.Core.Platform.KeyModifier -- uid: OpenTK.Core.Platform.KeyUpEventArgs - commentId: T:OpenTK.Core.Platform.KeyUpEventArgs - href: OpenTK.Core.Platform.KeyUpEventArgs.html + fullName: OpenTK.Platform.KeyModifier +- uid: OpenTK.Platform.KeyUpEventArgs + commentId: T:OpenTK.Platform.KeyUpEventArgs + href: OpenTK.Platform.KeyUpEventArgs.html name: KeyUpEventArgs nameWithType: KeyUpEventArgs - fullName: OpenTK.Core.Platform.KeyUpEventArgs -- uid: OpenTK.Core.Platform.KeyUpEventArgs.#ctor* - commentId: Overload:OpenTK.Core.Platform.KeyUpEventArgs.#ctor - href: OpenTK.Core.Platform.KeyUpEventArgs.html#OpenTK_Core_Platform_KeyUpEventArgs__ctor_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_Key_OpenTK_Core_Platform_Scancode_OpenTK_Core_Platform_KeyModifier_ + fullName: OpenTK.Platform.KeyUpEventArgs +- uid: OpenTK.Platform.KeyUpEventArgs.#ctor* + commentId: Overload:OpenTK.Platform.KeyUpEventArgs.#ctor + href: OpenTK.Platform.KeyUpEventArgs.html#OpenTK_Platform_KeyUpEventArgs__ctor_OpenTK_Platform_WindowHandle_OpenTK_Platform_Key_OpenTK_Platform_Scancode_OpenTK_Platform_KeyModifier_ name: KeyUpEventArgs nameWithType: KeyUpEventArgs.KeyUpEventArgs - fullName: OpenTK.Core.Platform.KeyUpEventArgs.KeyUpEventArgs + fullName: OpenTK.Platform.KeyUpEventArgs.KeyUpEventArgs nameWithType.vb: KeyUpEventArgs.New - fullName.vb: OpenTK.Core.Platform.KeyUpEventArgs.New + fullName.vb: OpenTK.Platform.KeyUpEventArgs.New name.vb: New -- uid: OpenTK.Core.Platform.WindowHandle - commentId: T:OpenTK.Core.Platform.WindowHandle - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.WindowHandle.html +- uid: OpenTK.Platform.WindowHandle + commentId: T:OpenTK.Platform.WindowHandle + parent: OpenTK.Platform + href: OpenTK.Platform.WindowHandle.html name: WindowHandle nameWithType: WindowHandle - fullName: OpenTK.Core.Platform.WindowHandle + fullName: OpenTK.Platform.WindowHandle diff --git a/api/OpenTK.Platform.MessageBoxButton.yml b/api/OpenTK.Platform.MessageBoxButton.yml new file mode 100644 index 00000000..67734d8f --- /dev/null +++ b/api/OpenTK.Platform.MessageBoxButton.yml @@ -0,0 +1,206 @@ +### YamlMime:ManagedReference +items: +- uid: OpenTK.Platform.MessageBoxButton + commentId: T:OpenTK.Platform.MessageBoxButton + id: MessageBoxButton + parent: OpenTK.Platform + children: + - OpenTK.Platform.MessageBoxButton.Cancel + - OpenTK.Platform.MessageBoxButton.No + - OpenTK.Platform.MessageBoxButton.None + - OpenTK.Platform.MessageBoxButton.Ok + - OpenTK.Platform.MessageBoxButton.Retry + - OpenTK.Platform.MessageBoxButton.Yes + langs: + - csharp + - vb + name: MessageBoxButton + nameWithType: MessageBoxButton + fullName: OpenTK.Platform.MessageBoxButton + type: Enum + source: + id: MessageBoxButton + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\MessageBoxButton.cs + startLine: 7 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Represents a message box button. + example: [] + syntax: + content: public enum MessageBoxButton + content.vb: Public Enum MessageBoxButton +- uid: OpenTK.Platform.MessageBoxButton.None + commentId: F:OpenTK.Platform.MessageBoxButton.None + id: None + parent: OpenTK.Platform.MessageBoxButton + langs: + - csharp + - vb + name: None + nameWithType: MessageBoxButton.None + fullName: OpenTK.Platform.MessageBoxButton.None + type: Field + source: + id: None + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\MessageBoxButton.cs + startLine: 12 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: No button. + example: [] + syntax: + content: None = 0 + return: + type: OpenTK.Platform.MessageBoxButton +- uid: OpenTK.Platform.MessageBoxButton.Ok + commentId: F:OpenTK.Platform.MessageBoxButton.Ok + id: Ok + parent: OpenTK.Platform.MessageBoxButton + langs: + - csharp + - vb + name: Ok + nameWithType: MessageBoxButton.Ok + fullName: OpenTK.Platform.MessageBoxButton.Ok + type: Field + source: + id: Ok + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\MessageBoxButton.cs + startLine: 17 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: The "OK" button. + example: [] + syntax: + content: Ok = 1 + return: + type: OpenTK.Platform.MessageBoxButton +- uid: OpenTK.Platform.MessageBoxButton.Yes + commentId: F:OpenTK.Platform.MessageBoxButton.Yes + id: Yes + parent: OpenTK.Platform.MessageBoxButton + langs: + - csharp + - vb + name: Yes + nameWithType: MessageBoxButton.Yes + fullName: OpenTK.Platform.MessageBoxButton.Yes + type: Field + source: + id: Yes + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\MessageBoxButton.cs + startLine: 22 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: The "Yes" button. + example: [] + syntax: + content: Yes = 2 + return: + type: OpenTK.Platform.MessageBoxButton +- uid: OpenTK.Platform.MessageBoxButton.No + commentId: F:OpenTK.Platform.MessageBoxButton.No + id: No + parent: OpenTK.Platform.MessageBoxButton + langs: + - csharp + - vb + name: No + nameWithType: MessageBoxButton.No + fullName: OpenTK.Platform.MessageBoxButton.No + type: Field + source: + id: No + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\MessageBoxButton.cs + startLine: 27 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: The "No" button. + example: [] + syntax: + content: No = 3 + return: + type: OpenTK.Platform.MessageBoxButton +- uid: OpenTK.Platform.MessageBoxButton.Cancel + commentId: F:OpenTK.Platform.MessageBoxButton.Cancel + id: Cancel + parent: OpenTK.Platform.MessageBoxButton + langs: + - csharp + - vb + name: Cancel + nameWithType: MessageBoxButton.Cancel + fullName: OpenTK.Platform.MessageBoxButton.Cancel + type: Field + source: + id: Cancel + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\MessageBoxButton.cs + startLine: 32 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: The "Cancel" button. + example: [] + syntax: + content: Cancel = 4 + return: + type: OpenTK.Platform.MessageBoxButton +- uid: OpenTK.Platform.MessageBoxButton.Retry + commentId: F:OpenTK.Platform.MessageBoxButton.Retry + id: Retry + parent: OpenTK.Platform.MessageBoxButton + langs: + - csharp + - vb + name: Retry + nameWithType: MessageBoxButton.Retry + fullName: OpenTK.Platform.MessageBoxButton.Retry + type: Field + source: + id: Retry + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\MessageBoxButton.cs + startLine: 37 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: The "Retry" button. + example: [] + syntax: + content: Retry = 5 + return: + type: OpenTK.Platform.MessageBoxButton +references: +- uid: OpenTK.Platform + commentId: N:OpenTK.Platform + href: OpenTK.html + name: OpenTK.Platform + nameWithType: OpenTK.Platform + fullName: OpenTK.Platform + spec.csharp: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Platform + name: Platform + href: OpenTK.Platform.html + spec.vb: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Platform + name: Platform + href: OpenTK.Platform.html +- uid: OpenTK.Platform.MessageBoxButton + commentId: T:OpenTK.Platform.MessageBoxButton + parent: OpenTK.Platform + href: OpenTK.Platform.MessageBoxButton.html + name: MessageBoxButton + nameWithType: MessageBoxButton + fullName: OpenTK.Platform.MessageBoxButton diff --git a/api/OpenTK.Platform.MessageBoxType.yml b/api/OpenTK.Platform.MessageBoxType.yml new file mode 100644 index 00000000..4518829d --- /dev/null +++ b/api/OpenTK.Platform.MessageBoxType.yml @@ -0,0 +1,211 @@ +### YamlMime:ManagedReference +items: +- uid: OpenTK.Platform.MessageBoxType + commentId: T:OpenTK.Platform.MessageBoxType + id: MessageBoxType + parent: OpenTK.Platform + children: + - OpenTK.Platform.MessageBoxType.Confirmation + - OpenTK.Platform.MessageBoxType.Error + - OpenTK.Platform.MessageBoxType.Information + - OpenTK.Platform.MessageBoxType.Retry + - OpenTK.Platform.MessageBoxType.Warning + langs: + - csharp + - vb + name: MessageBoxType + nameWithType: MessageBoxType + fullName: OpenTK.Platform.MessageBoxType + type: Enum + source: + id: MessageBoxType + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\MessageBoxType.cs + startLine: 7 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Message box types deciding the default icon and button layout. + example: [] + syntax: + content: public enum MessageBoxType + content.vb: Public Enum MessageBoxType +- uid: OpenTK.Platform.MessageBoxType.Information + commentId: F:OpenTK.Platform.MessageBoxType.Information + id: Information + parent: OpenTK.Platform.MessageBoxType + langs: + - csharp + - vb + name: Information + nameWithType: MessageBoxType.Information + fullName: OpenTK.Platform.MessageBoxType.Information + type: Field + source: + id: Information + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\MessageBoxType.cs + startLine: 12 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: An informational dialog containing a single button. + example: [] + syntax: + content: Information = 0 + return: + type: OpenTK.Platform.MessageBoxType +- uid: OpenTK.Platform.MessageBoxType.Warning + commentId: F:OpenTK.Platform.MessageBoxType.Warning + id: Warning + parent: OpenTK.Platform.MessageBoxType + langs: + - csharp + - vb + name: Warning + nameWithType: MessageBoxType.Warning + fullName: OpenTK.Platform.MessageBoxType.Warning + type: Field + source: + id: Warning + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\MessageBoxType.cs + startLine: 17 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: A warning dialog containing a single button. + example: [] + syntax: + content: Warning = 1 + return: + type: OpenTK.Platform.MessageBoxType +- uid: OpenTK.Platform.MessageBoxType.Error + commentId: F:OpenTK.Platform.MessageBoxType.Error + id: Error + parent: OpenTK.Platform.MessageBoxType + langs: + - csharp + - vb + name: Error + nameWithType: MessageBoxType.Error + fullName: OpenTK.Platform.MessageBoxType.Error + type: Field + source: + id: Error + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\MessageBoxType.cs + startLine: 22 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: An error dialog containing a single button. + example: [] + syntax: + content: Error = 2 + return: + type: OpenTK.Platform.MessageBoxType +- uid: OpenTK.Platform.MessageBoxType.Confirmation + commentId: F:OpenTK.Platform.MessageBoxType.Confirmation + id: Confirmation + parent: OpenTK.Platform.MessageBoxType + langs: + - csharp + - vb + name: Confirmation + nameWithType: MessageBoxType.Confirmation + fullName: OpenTK.Platform.MessageBoxType.Confirmation + type: Field + source: + id: Confirmation + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\MessageBoxType.cs + startLine: 27 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: An confirmation dialog containing a , , and button. + example: [] + syntax: + content: Confirmation = 3 + return: + type: OpenTK.Platform.MessageBoxType +- uid: OpenTK.Platform.MessageBoxType.Retry + commentId: F:OpenTK.Platform.MessageBoxType.Retry + id: Retry + parent: OpenTK.Platform.MessageBoxType + langs: + - csharp + - vb + name: Retry + nameWithType: MessageBoxType.Retry + fullName: OpenTK.Platform.MessageBoxType.Retry + type: Field + source: + id: Retry + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\MessageBoxType.cs + startLine: 32 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: An retry dialog containing a and button. + example: [] + syntax: + content: Retry = 4 + return: + type: OpenTK.Platform.MessageBoxType +references: +- uid: OpenTK.Platform + commentId: N:OpenTK.Platform + href: OpenTK.html + name: OpenTK.Platform + nameWithType: OpenTK.Platform + fullName: OpenTK.Platform + spec.csharp: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Platform + name: Platform + href: OpenTK.Platform.html + spec.vb: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Platform + name: Platform + href: OpenTK.Platform.html +- uid: OpenTK.Platform.MessageBoxButton.Ok + commentId: F:OpenTK.Platform.MessageBoxButton.Ok + href: OpenTK.Platform.MessageBoxButton.html#OpenTK_Platform_MessageBoxButton_Ok + name: Ok + nameWithType: MessageBoxButton.Ok + fullName: OpenTK.Platform.MessageBoxButton.Ok +- uid: OpenTK.Platform.MessageBoxType + commentId: T:OpenTK.Platform.MessageBoxType + parent: OpenTK.Platform + href: OpenTK.Platform.MessageBoxType.html + name: MessageBoxType + nameWithType: MessageBoxType + fullName: OpenTK.Platform.MessageBoxType +- uid: OpenTK.Platform.MessageBoxButton.Yes + commentId: F:OpenTK.Platform.MessageBoxButton.Yes + href: OpenTK.Platform.MessageBoxButton.html#OpenTK_Platform_MessageBoxButton_Yes + name: Yes + nameWithType: MessageBoxButton.Yes + fullName: OpenTK.Platform.MessageBoxButton.Yes +- uid: OpenTK.Platform.MessageBoxButton.No + commentId: F:OpenTK.Platform.MessageBoxButton.No + href: OpenTK.Platform.MessageBoxButton.html#OpenTK_Platform_MessageBoxButton_No + name: No + nameWithType: MessageBoxButton.No + fullName: OpenTK.Platform.MessageBoxButton.No +- uid: OpenTK.Platform.MessageBoxButton.Cancel + commentId: F:OpenTK.Platform.MessageBoxButton.Cancel + href: OpenTK.Platform.MessageBoxButton.html#OpenTK_Platform_MessageBoxButton_Cancel + name: Cancel + nameWithType: MessageBoxButton.Cancel + fullName: OpenTK.Platform.MessageBoxButton.Cancel +- uid: OpenTK.Platform.MessageBoxButton.Retry + commentId: F:OpenTK.Platform.MessageBoxButton.Retry + href: OpenTK.Platform.MessageBoxButton.html#OpenTK_Platform_MessageBoxButton_Retry + name: Retry + nameWithType: MessageBoxButton.Retry + fullName: OpenTK.Platform.MessageBoxButton.Retry diff --git a/api/OpenTK.Platform.MouseButton.yml b/api/OpenTK.Platform.MouseButton.yml new file mode 100644 index 00000000..445fde35 --- /dev/null +++ b/api/OpenTK.Platform.MouseButton.yml @@ -0,0 +1,256 @@ +### YamlMime:ManagedReference +items: +- uid: OpenTK.Platform.MouseButton + commentId: T:OpenTK.Platform.MouseButton + id: MouseButton + parent: OpenTK.Platform + children: + - OpenTK.Platform.MouseButton.Button1 + - OpenTK.Platform.MouseButton.Button2 + - OpenTK.Platform.MouseButton.Button3 + - OpenTK.Platform.MouseButton.Button4 + - OpenTK.Platform.MouseButton.Button5 + - OpenTK.Platform.MouseButton.Button6 + - OpenTK.Platform.MouseButton.Button7 + - OpenTK.Platform.MouseButton.Button8 + langs: + - csharp + - vb + name: MouseButton + nameWithType: MouseButton + fullName: OpenTK.Platform.MouseButton + type: Enum + source: + id: MouseButton + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\MouseButton.cs + startLine: 7 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Enumeration of mouse buttons. + example: [] + syntax: + content: public enum MouseButton + content.vb: Public Enum MouseButton +- uid: OpenTK.Platform.MouseButton.Button1 + commentId: F:OpenTK.Platform.MouseButton.Button1 + id: Button1 + parent: OpenTK.Platform.MouseButton + langs: + - csharp + - vb + name: Button1 + nameWithType: MouseButton.Button1 + fullName: OpenTK.Platform.MouseButton.Button1 + type: Field + source: + id: Button1 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\MouseButton.cs + startLine: 14 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: The primary mouse button (usually the left one). + example: [] + syntax: + content: Button1 = 0 + return: + type: OpenTK.Platform.MouseButton +- uid: OpenTK.Platform.MouseButton.Button2 + commentId: F:OpenTK.Platform.MouseButton.Button2 + id: Button2 + parent: OpenTK.Platform.MouseButton + langs: + - csharp + - vb + name: Button2 + nameWithType: MouseButton.Button2 + fullName: OpenTK.Platform.MouseButton.Button2 + type: Field + source: + id: Button2 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\MouseButton.cs + startLine: 19 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: The secondary mouse button (usually the right one). + example: [] + syntax: + content: Button2 = 1 + return: + type: OpenTK.Platform.MouseButton +- uid: OpenTK.Platform.MouseButton.Button3 + commentId: F:OpenTK.Platform.MouseButton.Button3 + id: Button3 + parent: OpenTK.Platform.MouseButton + langs: + - csharp + - vb + name: Button3 + nameWithType: MouseButton.Button3 + fullName: OpenTK.Platform.MouseButton.Button3 + type: Field + source: + id: Button3 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\MouseButton.cs + startLine: 24 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: The tertiary mouse button (usually in the mouse wheel). + example: [] + syntax: + content: Button3 = 2 + return: + type: OpenTK.Platform.MouseButton +- uid: OpenTK.Platform.MouseButton.Button4 + commentId: F:OpenTK.Platform.MouseButton.Button4 + id: Button4 + parent: OpenTK.Platform.MouseButton + langs: + - csharp + - vb + name: Button4 + nameWithType: MouseButton.Button4 + fullName: OpenTK.Platform.MouseButton.Button4 + type: Field + source: + id: Button4 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\MouseButton.cs + startLine: 29 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Auxiliary mouse button. + example: [] + syntax: + content: Button4 = 3 + return: + type: OpenTK.Platform.MouseButton +- uid: OpenTK.Platform.MouseButton.Button5 + commentId: F:OpenTK.Platform.MouseButton.Button5 + id: Button5 + parent: OpenTK.Platform.MouseButton + langs: + - csharp + - vb + name: Button5 + nameWithType: MouseButton.Button5 + fullName: OpenTK.Platform.MouseButton.Button5 + type: Field + source: + id: Button5 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\MouseButton.cs + startLine: 34 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Auxiliary mouse button. + example: [] + syntax: + content: Button5 = 4 + return: + type: OpenTK.Platform.MouseButton +- uid: OpenTK.Platform.MouseButton.Button6 + commentId: F:OpenTK.Platform.MouseButton.Button6 + id: Button6 + parent: OpenTK.Platform.MouseButton + langs: + - csharp + - vb + name: Button6 + nameWithType: MouseButton.Button6 + fullName: OpenTK.Platform.MouseButton.Button6 + type: Field + source: + id: Button6 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\MouseButton.cs + startLine: 39 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Auxiliary mouse button. + example: [] + syntax: + content: Button6 = 5 + return: + type: OpenTK.Platform.MouseButton +- uid: OpenTK.Platform.MouseButton.Button7 + commentId: F:OpenTK.Platform.MouseButton.Button7 + id: Button7 + parent: OpenTK.Platform.MouseButton + langs: + - csharp + - vb + name: Button7 + nameWithType: MouseButton.Button7 + fullName: OpenTK.Platform.MouseButton.Button7 + type: Field + source: + id: Button7 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\MouseButton.cs + startLine: 44 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Auxiliary mouse button. + example: [] + syntax: + content: Button7 = 6 + return: + type: OpenTK.Platform.MouseButton +- uid: OpenTK.Platform.MouseButton.Button8 + commentId: F:OpenTK.Platform.MouseButton.Button8 + id: Button8 + parent: OpenTK.Platform.MouseButton + langs: + - csharp + - vb + name: Button8 + nameWithType: MouseButton.Button8 + fullName: OpenTK.Platform.MouseButton.Button8 + type: Field + source: + id: Button8 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\MouseButton.cs + startLine: 49 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Auxiliary mouse button. + example: [] + syntax: + content: Button8 = 7 + return: + type: OpenTK.Platform.MouseButton +references: +- uid: OpenTK.Platform + commentId: N:OpenTK.Platform + href: OpenTK.html + name: OpenTK.Platform + nameWithType: OpenTK.Platform + fullName: OpenTK.Platform + spec.csharp: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Platform + name: Platform + href: OpenTK.Platform.html + spec.vb: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Platform + name: Platform + href: OpenTK.Platform.html +- uid: OpenTK.Platform.MouseButton + commentId: T:OpenTK.Platform.MouseButton + parent: OpenTK.Platform + href: OpenTK.Platform.MouseButton.html + name: MouseButton + nameWithType: MouseButton + fullName: OpenTK.Platform.MouseButton diff --git a/api/OpenTK.Core.Platform.MouseButtonDownEventArgs.yml b/api/OpenTK.Platform.MouseButtonDownEventArgs.yml similarity index 64% rename from api/OpenTK.Core.Platform.MouseButtonDownEventArgs.yml rename to api/OpenTK.Platform.MouseButtonDownEventArgs.yml index c977d1ff..80ec3116 100644 --- a/api/OpenTK.Core.Platform.MouseButtonDownEventArgs.yml +++ b/api/OpenTK.Platform.MouseButtonDownEventArgs.yml @@ -1,31 +1,27 @@ ### YamlMime:ManagedReference items: -- uid: OpenTK.Core.Platform.MouseButtonDownEventArgs - commentId: T:OpenTK.Core.Platform.MouseButtonDownEventArgs +- uid: OpenTK.Platform.MouseButtonDownEventArgs + commentId: T:OpenTK.Platform.MouseButtonDownEventArgs id: MouseButtonDownEventArgs - parent: OpenTK.Core.Platform + parent: OpenTK.Platform children: - - OpenTK.Core.Platform.MouseButtonDownEventArgs.#ctor(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.MouseButton,OpenTK.Core.Platform.KeyModifier) - - OpenTK.Core.Platform.MouseButtonDownEventArgs.Button - - OpenTK.Core.Platform.MouseButtonDownEventArgs.Modifiers + - OpenTK.Platform.MouseButtonDownEventArgs.#ctor(OpenTK.Platform.WindowHandle,OpenTK.Platform.MouseButton,OpenTK.Platform.KeyModifier) + - OpenTK.Platform.MouseButtonDownEventArgs.Button + - OpenTK.Platform.MouseButtonDownEventArgs.Modifiers langs: - csharp - vb name: MouseButtonDownEventArgs nameWithType: MouseButtonDownEventArgs - fullName: OpenTK.Core.Platform.MouseButtonDownEventArgs + fullName: OpenTK.Platform.MouseButtonDownEventArgs type: Class source: - remote: - path: src/OpenTK.Core/Platform/WindowEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MouseButtonDownEventArgs - path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs - startLine: 434 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\WindowEventArgs.cs + startLine: 458 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform + - OpenTK.Platform + namespace: OpenTK.Platform summary: This event is triggered when a mouse button is pressed. example: [] syntax: @@ -34,9 +30,9 @@ items: inheritance: - System.Object - System.EventArgs - - OpenTK.Core.Platform.WindowEventArgs + - OpenTK.Platform.WindowEventArgs inheritedMembers: - - OpenTK.Core.Platform.WindowEventArgs.Window + - OpenTK.Platform.WindowEventArgs.Window - System.EventArgs.Empty - System.Object.Equals(System.Object) - System.Object.Equals(System.Object,System.Object) @@ -45,140 +41,120 @@ items: - System.Object.MemberwiseClone - System.Object.ReferenceEquals(System.Object,System.Object) - System.Object.ToString -- uid: OpenTK.Core.Platform.MouseButtonDownEventArgs.Button - commentId: P:OpenTK.Core.Platform.MouseButtonDownEventArgs.Button +- uid: OpenTK.Platform.MouseButtonDownEventArgs.Button + commentId: P:OpenTK.Platform.MouseButtonDownEventArgs.Button id: Button - parent: OpenTK.Core.Platform.MouseButtonDownEventArgs + parent: OpenTK.Platform.MouseButtonDownEventArgs langs: - csharp - vb name: Button nameWithType: MouseButtonDownEventArgs.Button - fullName: OpenTK.Core.Platform.MouseButtonDownEventArgs.Button + fullName: OpenTK.Platform.MouseButtonDownEventArgs.Button type: Property source: - remote: - path: src/OpenTK.Core/Platform/WindowEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Button - path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs - startLine: 439 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\WindowEventArgs.cs + startLine: 463 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform + - OpenTK.Platform + namespace: OpenTK.Platform summary: The mouse button that was pressed. example: [] syntax: content: public MouseButton Button { get; } parameters: [] return: - type: OpenTK.Core.Platform.MouseButton + type: OpenTK.Platform.MouseButton content.vb: Public Property Button As MouseButton - overload: OpenTK.Core.Platform.MouseButtonDownEventArgs.Button* -- uid: OpenTK.Core.Platform.MouseButtonDownEventArgs.Modifiers - commentId: P:OpenTK.Core.Platform.MouseButtonDownEventArgs.Modifiers + overload: OpenTK.Platform.MouseButtonDownEventArgs.Button* +- uid: OpenTK.Platform.MouseButtonDownEventArgs.Modifiers + commentId: P:OpenTK.Platform.MouseButtonDownEventArgs.Modifiers id: Modifiers - parent: OpenTK.Core.Platform.MouseButtonDownEventArgs + parent: OpenTK.Platform.MouseButtonDownEventArgs langs: - csharp - vb name: Modifiers nameWithType: MouseButtonDownEventArgs.Modifiers - fullName: OpenTK.Core.Platform.MouseButtonDownEventArgs.Modifiers + fullName: OpenTK.Platform.MouseButtonDownEventArgs.Modifiers type: Property source: - remote: - path: src/OpenTK.Core/Platform/WindowEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Modifiers - path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs - startLine: 444 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\WindowEventArgs.cs + startLine: 468 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform + - OpenTK.Platform + namespace: OpenTK.Platform summary: The active keyboard modifiers when the mouse button was pressed. example: [] syntax: content: public KeyModifier Modifiers { get; } parameters: [] return: - type: OpenTK.Core.Platform.KeyModifier + type: OpenTK.Platform.KeyModifier content.vb: Public Property Modifiers As KeyModifier - overload: OpenTK.Core.Platform.MouseButtonDownEventArgs.Modifiers* -- uid: OpenTK.Core.Platform.MouseButtonDownEventArgs.#ctor(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.MouseButton,OpenTK.Core.Platform.KeyModifier) - commentId: M:OpenTK.Core.Platform.MouseButtonDownEventArgs.#ctor(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.MouseButton,OpenTK.Core.Platform.KeyModifier) - id: '#ctor(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.MouseButton,OpenTK.Core.Platform.KeyModifier)' - parent: OpenTK.Core.Platform.MouseButtonDownEventArgs + overload: OpenTK.Platform.MouseButtonDownEventArgs.Modifiers* +- uid: OpenTK.Platform.MouseButtonDownEventArgs.#ctor(OpenTK.Platform.WindowHandle,OpenTK.Platform.MouseButton,OpenTK.Platform.KeyModifier) + commentId: M:OpenTK.Platform.MouseButtonDownEventArgs.#ctor(OpenTK.Platform.WindowHandle,OpenTK.Platform.MouseButton,OpenTK.Platform.KeyModifier) + id: '#ctor(OpenTK.Platform.WindowHandle,OpenTK.Platform.MouseButton,OpenTK.Platform.KeyModifier)' + parent: OpenTK.Platform.MouseButtonDownEventArgs langs: - csharp - vb name: MouseButtonDownEventArgs(WindowHandle, MouseButton, KeyModifier) nameWithType: MouseButtonDownEventArgs.MouseButtonDownEventArgs(WindowHandle, MouseButton, KeyModifier) - fullName: OpenTK.Core.Platform.MouseButtonDownEventArgs.MouseButtonDownEventArgs(OpenTK.Core.Platform.WindowHandle, OpenTK.Core.Platform.MouseButton, OpenTK.Core.Platform.KeyModifier) + fullName: OpenTK.Platform.MouseButtonDownEventArgs.MouseButtonDownEventArgs(OpenTK.Platform.WindowHandle, OpenTK.Platform.MouseButton, OpenTK.Platform.KeyModifier) type: Constructor source: - remote: - path: src/OpenTK.Core/Platform/WindowEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs - startLine: 452 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\WindowEventArgs.cs + startLine: 476 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Initializes a new instance of the class. + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Initializes a new instance of the class. example: [] syntax: content: public MouseButtonDownEventArgs(WindowHandle window, MouseButton button, KeyModifier modifiers) parameters: - id: window - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: The window that was clicked on. - id: button - type: OpenTK.Core.Platform.MouseButton + type: OpenTK.Platform.MouseButton description: The mouse button that was pressed. - id: modifiers - type: OpenTK.Core.Platform.KeyModifier + type: OpenTK.Platform.KeyModifier description: The modifiers that where active when the mouse button was pressed. content.vb: Public Sub New(window As WindowHandle, button As MouseButton, modifiers As KeyModifier) - overload: OpenTK.Core.Platform.MouseButtonDownEventArgs.#ctor* + overload: OpenTK.Platform.MouseButtonDownEventArgs.#ctor* nameWithType.vb: MouseButtonDownEventArgs.New(WindowHandle, MouseButton, KeyModifier) - fullName.vb: OpenTK.Core.Platform.MouseButtonDownEventArgs.New(OpenTK.Core.Platform.WindowHandle, OpenTK.Core.Platform.MouseButton, OpenTK.Core.Platform.KeyModifier) + fullName.vb: OpenTK.Platform.MouseButtonDownEventArgs.New(OpenTK.Platform.WindowHandle, OpenTK.Platform.MouseButton, OpenTK.Platform.KeyModifier) name.vb: New(WindowHandle, MouseButton, KeyModifier) references: -- uid: OpenTK.Core.Platform - commentId: N:OpenTK.Core.Platform +- uid: OpenTK.Platform + commentId: N:OpenTK.Platform href: OpenTK.html - name: OpenTK.Core.Platform - nameWithType: OpenTK.Core.Platform - fullName: OpenTK.Core.Platform + name: OpenTK.Platform + nameWithType: OpenTK.Platform + fullName: OpenTK.Platform spec.csharp: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html spec.vb: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html - uid: System.Object commentId: T:System.Object parent: System @@ -198,20 +174,20 @@ references: name: EventArgs nameWithType: EventArgs fullName: System.EventArgs -- uid: OpenTK.Core.Platform.WindowEventArgs - commentId: T:OpenTK.Core.Platform.WindowEventArgs - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.WindowEventArgs.html +- uid: OpenTK.Platform.WindowEventArgs + commentId: T:OpenTK.Platform.WindowEventArgs + parent: OpenTK.Platform + href: OpenTK.Platform.WindowEventArgs.html name: WindowEventArgs nameWithType: WindowEventArgs - fullName: OpenTK.Core.Platform.WindowEventArgs -- uid: OpenTK.Core.Platform.WindowEventArgs.Window - commentId: P:OpenTK.Core.Platform.WindowEventArgs.Window - parent: OpenTK.Core.Platform.WindowEventArgs - href: OpenTK.Core.Platform.WindowEventArgs.html#OpenTK_Core_Platform_WindowEventArgs_Window + fullName: OpenTK.Platform.WindowEventArgs +- uid: OpenTK.Platform.WindowEventArgs.Window + commentId: P:OpenTK.Platform.WindowEventArgs.Window + parent: OpenTK.Platform.WindowEventArgs + href: OpenTK.Platform.WindowEventArgs.html#OpenTK_Platform_WindowEventArgs_Window name: Window nameWithType: WindowEventArgs.Window - fullName: OpenTK.Core.Platform.WindowEventArgs.Window + fullName: OpenTK.Platform.WindowEventArgs.Window - uid: System.EventArgs.Empty commentId: F:System.EventArgs.Empty parent: System.EventArgs @@ -446,51 +422,51 @@ references: name: System nameWithType: System fullName: System -- uid: OpenTK.Core.Platform.MouseButtonDownEventArgs.Button* - commentId: Overload:OpenTK.Core.Platform.MouseButtonDownEventArgs.Button - href: OpenTK.Core.Platform.MouseButtonDownEventArgs.html#OpenTK_Core_Platform_MouseButtonDownEventArgs_Button +- uid: OpenTK.Platform.MouseButtonDownEventArgs.Button* + commentId: Overload:OpenTK.Platform.MouseButtonDownEventArgs.Button + href: OpenTK.Platform.MouseButtonDownEventArgs.html#OpenTK_Platform_MouseButtonDownEventArgs_Button name: Button nameWithType: MouseButtonDownEventArgs.Button - fullName: OpenTK.Core.Platform.MouseButtonDownEventArgs.Button -- uid: OpenTK.Core.Platform.MouseButton - commentId: T:OpenTK.Core.Platform.MouseButton - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.MouseButton.html + fullName: OpenTK.Platform.MouseButtonDownEventArgs.Button +- uid: OpenTK.Platform.MouseButton + commentId: T:OpenTK.Platform.MouseButton + parent: OpenTK.Platform + href: OpenTK.Platform.MouseButton.html name: MouseButton nameWithType: MouseButton - fullName: OpenTK.Core.Platform.MouseButton -- uid: OpenTK.Core.Platform.MouseButtonDownEventArgs.Modifiers* - commentId: Overload:OpenTK.Core.Platform.MouseButtonDownEventArgs.Modifiers - href: OpenTK.Core.Platform.MouseButtonDownEventArgs.html#OpenTK_Core_Platform_MouseButtonDownEventArgs_Modifiers + fullName: OpenTK.Platform.MouseButton +- uid: OpenTK.Platform.MouseButtonDownEventArgs.Modifiers* + commentId: Overload:OpenTK.Platform.MouseButtonDownEventArgs.Modifiers + href: OpenTK.Platform.MouseButtonDownEventArgs.html#OpenTK_Platform_MouseButtonDownEventArgs_Modifiers name: Modifiers nameWithType: MouseButtonDownEventArgs.Modifiers - fullName: OpenTK.Core.Platform.MouseButtonDownEventArgs.Modifiers -- uid: OpenTK.Core.Platform.KeyModifier - commentId: T:OpenTK.Core.Platform.KeyModifier - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.KeyModifier.html + fullName: OpenTK.Platform.MouseButtonDownEventArgs.Modifiers +- uid: OpenTK.Platform.KeyModifier + commentId: T:OpenTK.Platform.KeyModifier + parent: OpenTK.Platform + href: OpenTK.Platform.KeyModifier.html name: KeyModifier nameWithType: KeyModifier - fullName: OpenTK.Core.Platform.KeyModifier -- uid: OpenTK.Core.Platform.MouseButtonDownEventArgs - commentId: T:OpenTK.Core.Platform.MouseButtonDownEventArgs - href: OpenTK.Core.Platform.MouseButtonDownEventArgs.html + fullName: OpenTK.Platform.KeyModifier +- uid: OpenTK.Platform.MouseButtonDownEventArgs + commentId: T:OpenTK.Platform.MouseButtonDownEventArgs + href: OpenTK.Platform.MouseButtonDownEventArgs.html name: MouseButtonDownEventArgs nameWithType: MouseButtonDownEventArgs - fullName: OpenTK.Core.Platform.MouseButtonDownEventArgs -- uid: OpenTK.Core.Platform.MouseButtonDownEventArgs.#ctor* - commentId: Overload:OpenTK.Core.Platform.MouseButtonDownEventArgs.#ctor - href: OpenTK.Core.Platform.MouseButtonDownEventArgs.html#OpenTK_Core_Platform_MouseButtonDownEventArgs__ctor_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_MouseButton_OpenTK_Core_Platform_KeyModifier_ + fullName: OpenTK.Platform.MouseButtonDownEventArgs +- uid: OpenTK.Platform.MouseButtonDownEventArgs.#ctor* + commentId: Overload:OpenTK.Platform.MouseButtonDownEventArgs.#ctor + href: OpenTK.Platform.MouseButtonDownEventArgs.html#OpenTK_Platform_MouseButtonDownEventArgs__ctor_OpenTK_Platform_WindowHandle_OpenTK_Platform_MouseButton_OpenTK_Platform_KeyModifier_ name: MouseButtonDownEventArgs nameWithType: MouseButtonDownEventArgs.MouseButtonDownEventArgs - fullName: OpenTK.Core.Platform.MouseButtonDownEventArgs.MouseButtonDownEventArgs + fullName: OpenTK.Platform.MouseButtonDownEventArgs.MouseButtonDownEventArgs nameWithType.vb: MouseButtonDownEventArgs.New - fullName.vb: OpenTK.Core.Platform.MouseButtonDownEventArgs.New + fullName.vb: OpenTK.Platform.MouseButtonDownEventArgs.New name.vb: New -- uid: OpenTK.Core.Platform.WindowHandle - commentId: T:OpenTK.Core.Platform.WindowHandle - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.WindowHandle.html +- uid: OpenTK.Platform.WindowHandle + commentId: T:OpenTK.Platform.WindowHandle + parent: OpenTK.Platform + href: OpenTK.Platform.WindowHandle.html name: WindowHandle nameWithType: WindowHandle - fullName: OpenTK.Core.Platform.WindowHandle + fullName: OpenTK.Platform.WindowHandle diff --git a/api/OpenTK.Platform.MouseButtonFlags.yml b/api/OpenTK.Platform.MouseButtonFlags.yml new file mode 100644 index 00000000..2cac67ac --- /dev/null +++ b/api/OpenTK.Platform.MouseButtonFlags.yml @@ -0,0 +1,266 @@ +### YamlMime:ManagedReference +items: +- uid: OpenTK.Platform.MouseButtonFlags + commentId: T:OpenTK.Platform.MouseButtonFlags + id: MouseButtonFlags + parent: OpenTK.Platform + children: + - OpenTK.Platform.MouseButtonFlags.Button1 + - OpenTK.Platform.MouseButtonFlags.Button2 + - OpenTK.Platform.MouseButtonFlags.Button3 + - OpenTK.Platform.MouseButtonFlags.Button4 + - OpenTK.Platform.MouseButtonFlags.Button5 + - OpenTK.Platform.MouseButtonFlags.Button6 + - OpenTK.Platform.MouseButtonFlags.Button7 + - OpenTK.Platform.MouseButtonFlags.Button8 + langs: + - csharp + - vb + name: MouseButtonFlags + nameWithType: MouseButtonFlags + fullName: OpenTK.Platform.MouseButtonFlags + type: Enum + source: + id: MouseButtonFlags + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\MouseButton.cs + startLine: 55 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Mouse button flags. + example: [] + syntax: + content: >- + [Flags] + + public enum MouseButtonFlags + content.vb: >- + + + Public Enum MouseButtonFlags + attributes: + - type: System.FlagsAttribute + ctor: System.FlagsAttribute.#ctor + arguments: [] +- uid: OpenTK.Platform.MouseButtonFlags.Button1 + commentId: F:OpenTK.Platform.MouseButtonFlags.Button1 + id: Button1 + parent: OpenTK.Platform.MouseButtonFlags + langs: + - csharp + - vb + name: Button1 + nameWithType: MouseButtonFlags.Button1 + fullName: OpenTK.Platform.MouseButtonFlags.Button1 + type: Field + source: + id: Button1 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\MouseButton.cs + startLine: 61 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Indicates that the primary mouse button (usually the left one) is pressed. + example: [] + syntax: + content: Button1 = 1 + return: + type: OpenTK.Platform.MouseButtonFlags +- uid: OpenTK.Platform.MouseButtonFlags.Button2 + commentId: F:OpenTK.Platform.MouseButtonFlags.Button2 + id: Button2 + parent: OpenTK.Platform.MouseButtonFlags + langs: + - csharp + - vb + name: Button2 + nameWithType: MouseButtonFlags.Button2 + fullName: OpenTK.Platform.MouseButtonFlags.Button2 + type: Field + source: + id: Button2 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\MouseButton.cs + startLine: 66 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Indicates that the secondary mouse button (usually the right one) is pressed. + example: [] + syntax: + content: Button2 = 2 + return: + type: OpenTK.Platform.MouseButtonFlags +- uid: OpenTK.Platform.MouseButtonFlags.Button3 + commentId: F:OpenTK.Platform.MouseButtonFlags.Button3 + id: Button3 + parent: OpenTK.Platform.MouseButtonFlags + langs: + - csharp + - vb + name: Button3 + nameWithType: MouseButtonFlags.Button3 + fullName: OpenTK.Platform.MouseButtonFlags.Button3 + type: Field + source: + id: Button3 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\MouseButton.cs + startLine: 71 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Indicates that the tertiary mouse button (usually in the mouse wheel) is pressed. + example: [] + syntax: + content: Button3 = 4 + return: + type: OpenTK.Platform.MouseButtonFlags +- uid: OpenTK.Platform.MouseButtonFlags.Button4 + commentId: F:OpenTK.Platform.MouseButtonFlags.Button4 + id: Button4 + parent: OpenTK.Platform.MouseButtonFlags + langs: + - csharp + - vb + name: Button4 + nameWithType: MouseButtonFlags.Button4 + fullName: OpenTK.Platform.MouseButtonFlags.Button4 + type: Field + source: + id: Button4 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\MouseButton.cs + startLine: 76 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Indicates that auxiliary mouse button 1 is pressed. + example: [] + syntax: + content: Button4 = 8 + return: + type: OpenTK.Platform.MouseButtonFlags +- uid: OpenTK.Platform.MouseButtonFlags.Button5 + commentId: F:OpenTK.Platform.MouseButtonFlags.Button5 + id: Button5 + parent: OpenTK.Platform.MouseButtonFlags + langs: + - csharp + - vb + name: Button5 + nameWithType: MouseButtonFlags.Button5 + fullName: OpenTK.Platform.MouseButtonFlags.Button5 + type: Field + source: + id: Button5 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\MouseButton.cs + startLine: 81 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Indicates that auxiliary mouse button 2 is pressed. + example: [] + syntax: + content: Button5 = 16 + return: + type: OpenTK.Platform.MouseButtonFlags +- uid: OpenTK.Platform.MouseButtonFlags.Button6 + commentId: F:OpenTK.Platform.MouseButtonFlags.Button6 + id: Button6 + parent: OpenTK.Platform.MouseButtonFlags + langs: + - csharp + - vb + name: Button6 + nameWithType: MouseButtonFlags.Button6 + fullName: OpenTK.Platform.MouseButtonFlags.Button6 + type: Field + source: + id: Button6 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\MouseButton.cs + startLine: 86 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Indicates that auxiliary mouse button 3 is pressed. + example: [] + syntax: + content: Button6 = 32 + return: + type: OpenTK.Platform.MouseButtonFlags +- uid: OpenTK.Platform.MouseButtonFlags.Button7 + commentId: F:OpenTK.Platform.MouseButtonFlags.Button7 + id: Button7 + parent: OpenTK.Platform.MouseButtonFlags + langs: + - csharp + - vb + name: Button7 + nameWithType: MouseButtonFlags.Button7 + fullName: OpenTK.Platform.MouseButtonFlags.Button7 + type: Field + source: + id: Button7 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\MouseButton.cs + startLine: 91 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Indicates that auxiliary mouse button 4 is pressed. + example: [] + syntax: + content: Button7 = 64 + return: + type: OpenTK.Platform.MouseButtonFlags +- uid: OpenTK.Platform.MouseButtonFlags.Button8 + commentId: F:OpenTK.Platform.MouseButtonFlags.Button8 + id: Button8 + parent: OpenTK.Platform.MouseButtonFlags + langs: + - csharp + - vb + name: Button8 + nameWithType: MouseButtonFlags.Button8 + fullName: OpenTK.Platform.MouseButtonFlags.Button8 + type: Field + source: + id: Button8 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\MouseButton.cs + startLine: 96 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Indicates that auxiliary mouse button 5 is pressed. + example: [] + syntax: + content: Button8 = 128 + return: + type: OpenTK.Platform.MouseButtonFlags +references: +- uid: OpenTK.Platform + commentId: N:OpenTK.Platform + href: OpenTK.html + name: OpenTK.Platform + nameWithType: OpenTK.Platform + fullName: OpenTK.Platform + spec.csharp: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Platform + name: Platform + href: OpenTK.Platform.html + spec.vb: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Platform + name: Platform + href: OpenTK.Platform.html +- uid: OpenTK.Platform.MouseButtonFlags + commentId: T:OpenTK.Platform.MouseButtonFlags + parent: OpenTK.Platform + href: OpenTK.Platform.MouseButtonFlags.html + name: MouseButtonFlags + nameWithType: MouseButtonFlags + fullName: OpenTK.Platform.MouseButtonFlags diff --git a/api/OpenTK.Core.Platform.MouseButtonUpEventArgs.yml b/api/OpenTK.Platform.MouseButtonUpEventArgs.yml similarity index 64% rename from api/OpenTK.Core.Platform.MouseButtonUpEventArgs.yml rename to api/OpenTK.Platform.MouseButtonUpEventArgs.yml index c809518e..7929ccf7 100644 --- a/api/OpenTK.Core.Platform.MouseButtonUpEventArgs.yml +++ b/api/OpenTK.Platform.MouseButtonUpEventArgs.yml @@ -1,31 +1,27 @@ ### YamlMime:ManagedReference items: -- uid: OpenTK.Core.Platform.MouseButtonUpEventArgs - commentId: T:OpenTK.Core.Platform.MouseButtonUpEventArgs +- uid: OpenTK.Platform.MouseButtonUpEventArgs + commentId: T:OpenTK.Platform.MouseButtonUpEventArgs id: MouseButtonUpEventArgs - parent: OpenTK.Core.Platform + parent: OpenTK.Platform children: - - OpenTK.Core.Platform.MouseButtonUpEventArgs.#ctor(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.MouseButton,OpenTK.Core.Platform.KeyModifier) - - OpenTK.Core.Platform.MouseButtonUpEventArgs.Button - - OpenTK.Core.Platform.MouseButtonUpEventArgs.Modifiers + - OpenTK.Platform.MouseButtonUpEventArgs.#ctor(OpenTK.Platform.WindowHandle,OpenTK.Platform.MouseButton,OpenTK.Platform.KeyModifier) + - OpenTK.Platform.MouseButtonUpEventArgs.Button + - OpenTK.Platform.MouseButtonUpEventArgs.Modifiers langs: - csharp - vb name: MouseButtonUpEventArgs nameWithType: MouseButtonUpEventArgs - fullName: OpenTK.Core.Platform.MouseButtonUpEventArgs + fullName: OpenTK.Platform.MouseButtonUpEventArgs type: Class source: - remote: - path: src/OpenTK.Core/Platform/WindowEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MouseButtonUpEventArgs - path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs - startLine: 462 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\WindowEventArgs.cs + startLine: 486 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform + - OpenTK.Platform + namespace: OpenTK.Platform summary: This event is triggered when a mouse button is released. example: [] syntax: @@ -34,9 +30,9 @@ items: inheritance: - System.Object - System.EventArgs - - OpenTK.Core.Platform.WindowEventArgs + - OpenTK.Platform.WindowEventArgs inheritedMembers: - - OpenTK.Core.Platform.WindowEventArgs.Window + - OpenTK.Platform.WindowEventArgs.Window - System.EventArgs.Empty - System.Object.Equals(System.Object) - System.Object.Equals(System.Object,System.Object) @@ -45,140 +41,120 @@ items: - System.Object.MemberwiseClone - System.Object.ReferenceEquals(System.Object,System.Object) - System.Object.ToString -- uid: OpenTK.Core.Platform.MouseButtonUpEventArgs.Button - commentId: P:OpenTK.Core.Platform.MouseButtonUpEventArgs.Button +- uid: OpenTK.Platform.MouseButtonUpEventArgs.Button + commentId: P:OpenTK.Platform.MouseButtonUpEventArgs.Button id: Button - parent: OpenTK.Core.Platform.MouseButtonUpEventArgs + parent: OpenTK.Platform.MouseButtonUpEventArgs langs: - csharp - vb name: Button nameWithType: MouseButtonUpEventArgs.Button - fullName: OpenTK.Core.Platform.MouseButtonUpEventArgs.Button + fullName: OpenTK.Platform.MouseButtonUpEventArgs.Button type: Property source: - remote: - path: src/OpenTK.Core/Platform/WindowEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Button - path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs - startLine: 467 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\WindowEventArgs.cs + startLine: 491 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform + - OpenTK.Platform + namespace: OpenTK.Platform summary: The mouse button that was released. example: [] syntax: content: public MouseButton Button { get; } parameters: [] return: - type: OpenTK.Core.Platform.MouseButton + type: OpenTK.Platform.MouseButton content.vb: Public Property Button As MouseButton - overload: OpenTK.Core.Platform.MouseButtonUpEventArgs.Button* -- uid: OpenTK.Core.Platform.MouseButtonUpEventArgs.Modifiers - commentId: P:OpenTK.Core.Platform.MouseButtonUpEventArgs.Modifiers + overload: OpenTK.Platform.MouseButtonUpEventArgs.Button* +- uid: OpenTK.Platform.MouseButtonUpEventArgs.Modifiers + commentId: P:OpenTK.Platform.MouseButtonUpEventArgs.Modifiers id: Modifiers - parent: OpenTK.Core.Platform.MouseButtonUpEventArgs + parent: OpenTK.Platform.MouseButtonUpEventArgs langs: - csharp - vb name: Modifiers nameWithType: MouseButtonUpEventArgs.Modifiers - fullName: OpenTK.Core.Platform.MouseButtonUpEventArgs.Modifiers + fullName: OpenTK.Platform.MouseButtonUpEventArgs.Modifiers type: Property source: - remote: - path: src/OpenTK.Core/Platform/WindowEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Modifiers - path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs - startLine: 472 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\WindowEventArgs.cs + startLine: 496 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform + - OpenTK.Platform + namespace: OpenTK.Platform summary: The active keyboard modifiers when the mouse button was released. example: [] syntax: content: public KeyModifier Modifiers { get; } parameters: [] return: - type: OpenTK.Core.Platform.KeyModifier + type: OpenTK.Platform.KeyModifier content.vb: Public Property Modifiers As KeyModifier - overload: OpenTK.Core.Platform.MouseButtonUpEventArgs.Modifiers* -- uid: OpenTK.Core.Platform.MouseButtonUpEventArgs.#ctor(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.MouseButton,OpenTK.Core.Platform.KeyModifier) - commentId: M:OpenTK.Core.Platform.MouseButtonUpEventArgs.#ctor(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.MouseButton,OpenTK.Core.Platform.KeyModifier) - id: '#ctor(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.MouseButton,OpenTK.Core.Platform.KeyModifier)' - parent: OpenTK.Core.Platform.MouseButtonUpEventArgs + overload: OpenTK.Platform.MouseButtonUpEventArgs.Modifiers* +- uid: OpenTK.Platform.MouseButtonUpEventArgs.#ctor(OpenTK.Platform.WindowHandle,OpenTK.Platform.MouseButton,OpenTK.Platform.KeyModifier) + commentId: M:OpenTK.Platform.MouseButtonUpEventArgs.#ctor(OpenTK.Platform.WindowHandle,OpenTK.Platform.MouseButton,OpenTK.Platform.KeyModifier) + id: '#ctor(OpenTK.Platform.WindowHandle,OpenTK.Platform.MouseButton,OpenTK.Platform.KeyModifier)' + parent: OpenTK.Platform.MouseButtonUpEventArgs langs: - csharp - vb name: MouseButtonUpEventArgs(WindowHandle, MouseButton, KeyModifier) nameWithType: MouseButtonUpEventArgs.MouseButtonUpEventArgs(WindowHandle, MouseButton, KeyModifier) - fullName: OpenTK.Core.Platform.MouseButtonUpEventArgs.MouseButtonUpEventArgs(OpenTK.Core.Platform.WindowHandle, OpenTK.Core.Platform.MouseButton, OpenTK.Core.Platform.KeyModifier) + fullName: OpenTK.Platform.MouseButtonUpEventArgs.MouseButtonUpEventArgs(OpenTK.Platform.WindowHandle, OpenTK.Platform.MouseButton, OpenTK.Platform.KeyModifier) type: Constructor source: - remote: - path: src/OpenTK.Core/Platform/WindowEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs - startLine: 480 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\WindowEventArgs.cs + startLine: 504 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Initializes a new instance of the class. + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Initializes a new instance of the class. example: [] syntax: content: public MouseButtonUpEventArgs(WindowHandle window, MouseButton button, KeyModifier modifiers) parameters: - id: window - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: The window that had input focus when the mouse is released. - id: button - type: OpenTK.Core.Platform.MouseButton + type: OpenTK.Platform.MouseButton description: The button that was released. - id: modifiers - type: OpenTK.Core.Platform.KeyModifier + type: OpenTK.Platform.KeyModifier description: The modifiers that where active when the mouse button was released. content.vb: Public Sub New(window As WindowHandle, button As MouseButton, modifiers As KeyModifier) - overload: OpenTK.Core.Platform.MouseButtonUpEventArgs.#ctor* + overload: OpenTK.Platform.MouseButtonUpEventArgs.#ctor* nameWithType.vb: MouseButtonUpEventArgs.New(WindowHandle, MouseButton, KeyModifier) - fullName.vb: OpenTK.Core.Platform.MouseButtonUpEventArgs.New(OpenTK.Core.Platform.WindowHandle, OpenTK.Core.Platform.MouseButton, OpenTK.Core.Platform.KeyModifier) + fullName.vb: OpenTK.Platform.MouseButtonUpEventArgs.New(OpenTK.Platform.WindowHandle, OpenTK.Platform.MouseButton, OpenTK.Platform.KeyModifier) name.vb: New(WindowHandle, MouseButton, KeyModifier) references: -- uid: OpenTK.Core.Platform - commentId: N:OpenTK.Core.Platform +- uid: OpenTK.Platform + commentId: N:OpenTK.Platform href: OpenTK.html - name: OpenTK.Core.Platform - nameWithType: OpenTK.Core.Platform - fullName: OpenTK.Core.Platform + name: OpenTK.Platform + nameWithType: OpenTK.Platform + fullName: OpenTK.Platform spec.csharp: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html spec.vb: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html - uid: System.Object commentId: T:System.Object parent: System @@ -198,20 +174,20 @@ references: name: EventArgs nameWithType: EventArgs fullName: System.EventArgs -- uid: OpenTK.Core.Platform.WindowEventArgs - commentId: T:OpenTK.Core.Platform.WindowEventArgs - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.WindowEventArgs.html +- uid: OpenTK.Platform.WindowEventArgs + commentId: T:OpenTK.Platform.WindowEventArgs + parent: OpenTK.Platform + href: OpenTK.Platform.WindowEventArgs.html name: WindowEventArgs nameWithType: WindowEventArgs - fullName: OpenTK.Core.Platform.WindowEventArgs -- uid: OpenTK.Core.Platform.WindowEventArgs.Window - commentId: P:OpenTK.Core.Platform.WindowEventArgs.Window - parent: OpenTK.Core.Platform.WindowEventArgs - href: OpenTK.Core.Platform.WindowEventArgs.html#OpenTK_Core_Platform_WindowEventArgs_Window + fullName: OpenTK.Platform.WindowEventArgs +- uid: OpenTK.Platform.WindowEventArgs.Window + commentId: P:OpenTK.Platform.WindowEventArgs.Window + parent: OpenTK.Platform.WindowEventArgs + href: OpenTK.Platform.WindowEventArgs.html#OpenTK_Platform_WindowEventArgs_Window name: Window nameWithType: WindowEventArgs.Window - fullName: OpenTK.Core.Platform.WindowEventArgs.Window + fullName: OpenTK.Platform.WindowEventArgs.Window - uid: System.EventArgs.Empty commentId: F:System.EventArgs.Empty parent: System.EventArgs @@ -446,51 +422,51 @@ references: name: System nameWithType: System fullName: System -- uid: OpenTK.Core.Platform.MouseButtonUpEventArgs.Button* - commentId: Overload:OpenTK.Core.Platform.MouseButtonUpEventArgs.Button - href: OpenTK.Core.Platform.MouseButtonUpEventArgs.html#OpenTK_Core_Platform_MouseButtonUpEventArgs_Button +- uid: OpenTK.Platform.MouseButtonUpEventArgs.Button* + commentId: Overload:OpenTK.Platform.MouseButtonUpEventArgs.Button + href: OpenTK.Platform.MouseButtonUpEventArgs.html#OpenTK_Platform_MouseButtonUpEventArgs_Button name: Button nameWithType: MouseButtonUpEventArgs.Button - fullName: OpenTK.Core.Platform.MouseButtonUpEventArgs.Button -- uid: OpenTK.Core.Platform.MouseButton - commentId: T:OpenTK.Core.Platform.MouseButton - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.MouseButton.html + fullName: OpenTK.Platform.MouseButtonUpEventArgs.Button +- uid: OpenTK.Platform.MouseButton + commentId: T:OpenTK.Platform.MouseButton + parent: OpenTK.Platform + href: OpenTK.Platform.MouseButton.html name: MouseButton nameWithType: MouseButton - fullName: OpenTK.Core.Platform.MouseButton -- uid: OpenTK.Core.Platform.MouseButtonUpEventArgs.Modifiers* - commentId: Overload:OpenTK.Core.Platform.MouseButtonUpEventArgs.Modifiers - href: OpenTK.Core.Platform.MouseButtonUpEventArgs.html#OpenTK_Core_Platform_MouseButtonUpEventArgs_Modifiers + fullName: OpenTK.Platform.MouseButton +- uid: OpenTK.Platform.MouseButtonUpEventArgs.Modifiers* + commentId: Overload:OpenTK.Platform.MouseButtonUpEventArgs.Modifiers + href: OpenTK.Platform.MouseButtonUpEventArgs.html#OpenTK_Platform_MouseButtonUpEventArgs_Modifiers name: Modifiers nameWithType: MouseButtonUpEventArgs.Modifiers - fullName: OpenTK.Core.Platform.MouseButtonUpEventArgs.Modifiers -- uid: OpenTK.Core.Platform.KeyModifier - commentId: T:OpenTK.Core.Platform.KeyModifier - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.KeyModifier.html + fullName: OpenTK.Platform.MouseButtonUpEventArgs.Modifiers +- uid: OpenTK.Platform.KeyModifier + commentId: T:OpenTK.Platform.KeyModifier + parent: OpenTK.Platform + href: OpenTK.Platform.KeyModifier.html name: KeyModifier nameWithType: KeyModifier - fullName: OpenTK.Core.Platform.KeyModifier -- uid: OpenTK.Core.Platform.MouseButtonUpEventArgs - commentId: T:OpenTK.Core.Platform.MouseButtonUpEventArgs - href: OpenTK.Core.Platform.MouseButtonUpEventArgs.html + fullName: OpenTK.Platform.KeyModifier +- uid: OpenTK.Platform.MouseButtonUpEventArgs + commentId: T:OpenTK.Platform.MouseButtonUpEventArgs + href: OpenTK.Platform.MouseButtonUpEventArgs.html name: MouseButtonUpEventArgs nameWithType: MouseButtonUpEventArgs - fullName: OpenTK.Core.Platform.MouseButtonUpEventArgs -- uid: OpenTK.Core.Platform.MouseButtonUpEventArgs.#ctor* - commentId: Overload:OpenTK.Core.Platform.MouseButtonUpEventArgs.#ctor - href: OpenTK.Core.Platform.MouseButtonUpEventArgs.html#OpenTK_Core_Platform_MouseButtonUpEventArgs__ctor_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_MouseButton_OpenTK_Core_Platform_KeyModifier_ + fullName: OpenTK.Platform.MouseButtonUpEventArgs +- uid: OpenTK.Platform.MouseButtonUpEventArgs.#ctor* + commentId: Overload:OpenTK.Platform.MouseButtonUpEventArgs.#ctor + href: OpenTK.Platform.MouseButtonUpEventArgs.html#OpenTK_Platform_MouseButtonUpEventArgs__ctor_OpenTK_Platform_WindowHandle_OpenTK_Platform_MouseButton_OpenTK_Platform_KeyModifier_ name: MouseButtonUpEventArgs nameWithType: MouseButtonUpEventArgs.MouseButtonUpEventArgs - fullName: OpenTK.Core.Platform.MouseButtonUpEventArgs.MouseButtonUpEventArgs + fullName: OpenTK.Platform.MouseButtonUpEventArgs.MouseButtonUpEventArgs nameWithType.vb: MouseButtonUpEventArgs.New - fullName.vb: OpenTK.Core.Platform.MouseButtonUpEventArgs.New + fullName.vb: OpenTK.Platform.MouseButtonUpEventArgs.New name.vb: New -- uid: OpenTK.Core.Platform.WindowHandle - commentId: T:OpenTK.Core.Platform.WindowHandle - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.WindowHandle.html +- uid: OpenTK.Platform.WindowHandle + commentId: T:OpenTK.Platform.WindowHandle + parent: OpenTK.Platform + href: OpenTK.Platform.WindowHandle.html name: WindowHandle nameWithType: WindowHandle - fullName: OpenTK.Core.Platform.WindowHandle + fullName: OpenTK.Platform.WindowHandle diff --git a/api/OpenTK.Core.Platform.MouseEnterEventArgs.yml b/api/OpenTK.Platform.MouseEnterEventArgs.yml similarity index 72% rename from api/OpenTK.Core.Platform.MouseEnterEventArgs.yml rename to api/OpenTK.Platform.MouseEnterEventArgs.yml index 0f5d9f09..34456004 100644 --- a/api/OpenTK.Core.Platform.MouseEnterEventArgs.yml +++ b/api/OpenTK.Platform.MouseEnterEventArgs.yml @@ -1,30 +1,26 @@ ### YamlMime:ManagedReference items: -- uid: OpenTK.Core.Platform.MouseEnterEventArgs - commentId: T:OpenTK.Core.Platform.MouseEnterEventArgs +- uid: OpenTK.Platform.MouseEnterEventArgs + commentId: T:OpenTK.Platform.MouseEnterEventArgs id: MouseEnterEventArgs - parent: OpenTK.Core.Platform + parent: OpenTK.Platform children: - - OpenTK.Core.Platform.MouseEnterEventArgs.#ctor(OpenTK.Core.Platform.WindowHandle,System.Boolean) - - OpenTK.Core.Platform.MouseEnterEventArgs.Entered + - OpenTK.Platform.MouseEnterEventArgs.#ctor(OpenTK.Platform.WindowHandle,System.Boolean) + - OpenTK.Platform.MouseEnterEventArgs.Entered langs: - csharp - vb name: MouseEnterEventArgs nameWithType: MouseEnterEventArgs - fullName: OpenTK.Core.Platform.MouseEnterEventArgs + fullName: OpenTK.Platform.MouseEnterEventArgs type: Class source: - remote: - path: src/OpenTK.Core/Platform/WindowEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MouseEnterEventArgs - path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\WindowEventArgs.cs startLine: 382 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform + - OpenTK.Platform + namespace: OpenTK.Platform summary: This event is triggered when the mouse cursor enters or exits a window. example: [] syntax: @@ -33,9 +29,9 @@ items: inheritance: - System.Object - System.EventArgs - - OpenTK.Core.Platform.WindowEventArgs + - OpenTK.Platform.WindowEventArgs inheritedMembers: - - OpenTK.Core.Platform.WindowEventArgs.Window + - OpenTK.Platform.WindowEventArgs.Window - System.EventArgs.Empty - System.Object.Equals(System.Object) - System.Object.Equals(System.Object,System.Object) @@ -44,28 +40,24 @@ items: - System.Object.MemberwiseClone - System.Object.ReferenceEquals(System.Object,System.Object) - System.Object.ToString -- uid: OpenTK.Core.Platform.MouseEnterEventArgs.Entered - commentId: P:OpenTK.Core.Platform.MouseEnterEventArgs.Entered +- uid: OpenTK.Platform.MouseEnterEventArgs.Entered + commentId: P:OpenTK.Platform.MouseEnterEventArgs.Entered id: Entered - parent: OpenTK.Core.Platform.MouseEnterEventArgs + parent: OpenTK.Platform.MouseEnterEventArgs langs: - csharp - vb name: Entered nameWithType: MouseEnterEventArgs.Entered - fullName: OpenTK.Core.Platform.MouseEnterEventArgs.Entered + fullName: OpenTK.Platform.MouseEnterEventArgs.Entered type: Property source: - remote: - path: src/OpenTK.Core/Platform/WindowEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Entered - path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\WindowEventArgs.cs startLine: 387 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform + - OpenTK.Platform + namespace: OpenTK.Platform summary: Whether the cursor entered or exited the window. example: [] syntax: @@ -74,76 +66,64 @@ items: return: type: System.Boolean content.vb: Public Property Entered As Boolean - overload: OpenTK.Core.Platform.MouseEnterEventArgs.Entered* -- uid: OpenTK.Core.Platform.MouseEnterEventArgs.#ctor(OpenTK.Core.Platform.WindowHandle,System.Boolean) - commentId: M:OpenTK.Core.Platform.MouseEnterEventArgs.#ctor(OpenTK.Core.Platform.WindowHandle,System.Boolean) - id: '#ctor(OpenTK.Core.Platform.WindowHandle,System.Boolean)' - parent: OpenTK.Core.Platform.MouseEnterEventArgs + overload: OpenTK.Platform.MouseEnterEventArgs.Entered* +- uid: OpenTK.Platform.MouseEnterEventArgs.#ctor(OpenTK.Platform.WindowHandle,System.Boolean) + commentId: M:OpenTK.Platform.MouseEnterEventArgs.#ctor(OpenTK.Platform.WindowHandle,System.Boolean) + id: '#ctor(OpenTK.Platform.WindowHandle,System.Boolean)' + parent: OpenTK.Platform.MouseEnterEventArgs langs: - csharp - vb name: MouseEnterEventArgs(WindowHandle, bool) nameWithType: MouseEnterEventArgs.MouseEnterEventArgs(WindowHandle, bool) - fullName: OpenTK.Core.Platform.MouseEnterEventArgs.MouseEnterEventArgs(OpenTK.Core.Platform.WindowHandle, bool) + fullName: OpenTK.Platform.MouseEnterEventArgs.MouseEnterEventArgs(OpenTK.Platform.WindowHandle, bool) type: Constructor source: - remote: - path: src/OpenTK.Core/Platform/WindowEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\WindowEventArgs.cs startLine: 395 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Initializes a new instance of the class. + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Initializes a new instance of the class. example: [] syntax: content: public MouseEnterEventArgs(WindowHandle window, bool entered) parameters: - id: window - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: The window that the mouse entered or exited. - id: entered type: System.Boolean description: Whether the mouse entered or exited. content.vb: Public Sub New(window As WindowHandle, entered As Boolean) - overload: OpenTK.Core.Platform.MouseEnterEventArgs.#ctor* + overload: OpenTK.Platform.MouseEnterEventArgs.#ctor* nameWithType.vb: MouseEnterEventArgs.New(WindowHandle, Boolean) - fullName.vb: OpenTK.Core.Platform.MouseEnterEventArgs.New(OpenTK.Core.Platform.WindowHandle, Boolean) + fullName.vb: OpenTK.Platform.MouseEnterEventArgs.New(OpenTK.Platform.WindowHandle, Boolean) name.vb: New(WindowHandle, Boolean) references: -- uid: OpenTK.Core.Platform - commentId: N:OpenTK.Core.Platform +- uid: OpenTK.Platform + commentId: N:OpenTK.Platform href: OpenTK.html - name: OpenTK.Core.Platform - nameWithType: OpenTK.Core.Platform - fullName: OpenTK.Core.Platform + name: OpenTK.Platform + nameWithType: OpenTK.Platform + fullName: OpenTK.Platform spec.csharp: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html spec.vb: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html - uid: System.Object commentId: T:System.Object parent: System @@ -163,20 +143,20 @@ references: name: EventArgs nameWithType: EventArgs fullName: System.EventArgs -- uid: OpenTK.Core.Platform.WindowEventArgs - commentId: T:OpenTK.Core.Platform.WindowEventArgs - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.WindowEventArgs.html +- uid: OpenTK.Platform.WindowEventArgs + commentId: T:OpenTK.Platform.WindowEventArgs + parent: OpenTK.Platform + href: OpenTK.Platform.WindowEventArgs.html name: WindowEventArgs nameWithType: WindowEventArgs - fullName: OpenTK.Core.Platform.WindowEventArgs -- uid: OpenTK.Core.Platform.WindowEventArgs.Window - commentId: P:OpenTK.Core.Platform.WindowEventArgs.Window - parent: OpenTK.Core.Platform.WindowEventArgs - href: OpenTK.Core.Platform.WindowEventArgs.html#OpenTK_Core_Platform_WindowEventArgs_Window + fullName: OpenTK.Platform.WindowEventArgs +- uid: OpenTK.Platform.WindowEventArgs.Window + commentId: P:OpenTK.Platform.WindowEventArgs.Window + parent: OpenTK.Platform.WindowEventArgs + href: OpenTK.Platform.WindowEventArgs.html#OpenTK_Platform_WindowEventArgs_Window name: Window nameWithType: WindowEventArgs.Window - fullName: OpenTK.Core.Platform.WindowEventArgs.Window + fullName: OpenTK.Platform.WindowEventArgs.Window - uid: System.EventArgs.Empty commentId: F:System.EventArgs.Empty parent: System.EventArgs @@ -411,12 +391,12 @@ references: name: System nameWithType: System fullName: System -- uid: OpenTK.Core.Platform.MouseEnterEventArgs.Entered* - commentId: Overload:OpenTK.Core.Platform.MouseEnterEventArgs.Entered - href: OpenTK.Core.Platform.MouseEnterEventArgs.html#OpenTK_Core_Platform_MouseEnterEventArgs_Entered +- uid: OpenTK.Platform.MouseEnterEventArgs.Entered* + commentId: Overload:OpenTK.Platform.MouseEnterEventArgs.Entered + href: OpenTK.Platform.MouseEnterEventArgs.html#OpenTK_Platform_MouseEnterEventArgs_Entered name: Entered nameWithType: MouseEnterEventArgs.Entered - fullName: OpenTK.Core.Platform.MouseEnterEventArgs.Entered + fullName: OpenTK.Platform.MouseEnterEventArgs.Entered - uid: System.Boolean commentId: T:System.Boolean parent: System @@ -428,25 +408,25 @@ references: nameWithType.vb: Boolean fullName.vb: Boolean name.vb: Boolean -- uid: OpenTK.Core.Platform.MouseEnterEventArgs - commentId: T:OpenTK.Core.Platform.MouseEnterEventArgs - href: OpenTK.Core.Platform.MouseEnterEventArgs.html +- uid: OpenTK.Platform.MouseEnterEventArgs + commentId: T:OpenTK.Platform.MouseEnterEventArgs + href: OpenTK.Platform.MouseEnterEventArgs.html name: MouseEnterEventArgs nameWithType: MouseEnterEventArgs - fullName: OpenTK.Core.Platform.MouseEnterEventArgs -- uid: OpenTK.Core.Platform.MouseEnterEventArgs.#ctor* - commentId: Overload:OpenTK.Core.Platform.MouseEnterEventArgs.#ctor - href: OpenTK.Core.Platform.MouseEnterEventArgs.html#OpenTK_Core_Platform_MouseEnterEventArgs__ctor_OpenTK_Core_Platform_WindowHandle_System_Boolean_ + fullName: OpenTK.Platform.MouseEnterEventArgs +- uid: OpenTK.Platform.MouseEnterEventArgs.#ctor* + commentId: Overload:OpenTK.Platform.MouseEnterEventArgs.#ctor + href: OpenTK.Platform.MouseEnterEventArgs.html#OpenTK_Platform_MouseEnterEventArgs__ctor_OpenTK_Platform_WindowHandle_System_Boolean_ name: MouseEnterEventArgs nameWithType: MouseEnterEventArgs.MouseEnterEventArgs - fullName: OpenTK.Core.Platform.MouseEnterEventArgs.MouseEnterEventArgs + fullName: OpenTK.Platform.MouseEnterEventArgs.MouseEnterEventArgs nameWithType.vb: MouseEnterEventArgs.New - fullName.vb: OpenTK.Core.Platform.MouseEnterEventArgs.New + fullName.vb: OpenTK.Platform.MouseEnterEventArgs.New name.vb: New -- uid: OpenTK.Core.Platform.WindowHandle - commentId: T:OpenTK.Core.Platform.WindowHandle - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.WindowHandle.html +- uid: OpenTK.Platform.WindowHandle + commentId: T:OpenTK.Platform.WindowHandle + parent: OpenTK.Platform + href: OpenTK.Platform.WindowHandle.html name: WindowHandle nameWithType: WindowHandle - fullName: OpenTK.Core.Platform.WindowHandle + fullName: OpenTK.Platform.WindowHandle diff --git a/api/OpenTK.Core.Platform.MouseHandle.yml b/api/OpenTK.Platform.MouseHandle.yml similarity index 77% rename from api/OpenTK.Core.Platform.MouseHandle.yml rename to api/OpenTK.Platform.MouseHandle.yml index 15813722..4eee9ea0 100644 --- a/api/OpenTK.Core.Platform.MouseHandle.yml +++ b/api/OpenTK.Platform.MouseHandle.yml @@ -1,28 +1,24 @@ ### YamlMime:ManagedReference items: -- uid: OpenTK.Core.Platform.MouseHandle - commentId: T:OpenTK.Core.Platform.MouseHandle +- uid: OpenTK.Platform.MouseHandle + commentId: T:OpenTK.Platform.MouseHandle id: MouseHandle - parent: OpenTK.Core.Platform + parent: OpenTK.Platform children: [] langs: - csharp - vb name: MouseHandle nameWithType: MouseHandle - fullName: OpenTK.Core.Platform.MouseHandle + fullName: OpenTK.Platform.MouseHandle type: Class source: - remote: - path: src/OpenTK.Core/Platform/Handles/MouseHandle.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MouseHandle - path: opentk/src/OpenTK.Core/Platform/Handles/MouseHandle.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Handles\MouseHandle.cs startLine: 5 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform + - OpenTK.Platform + namespace: OpenTK.Platform summary: Handle to a mouse. example: [] syntax: @@ -30,10 +26,10 @@ items: content.vb: Public MustInherit Class MouseHandle Inherits PalHandle inheritance: - System.Object - - OpenTK.Core.Platform.PalHandle + - OpenTK.Platform.PalHandle inheritedMembers: - - OpenTK.Core.Platform.PalHandle.UserData - - OpenTK.Core.Platform.PalHandle.As``1(OpenTK.Core.Platform.IPalComponent) + - OpenTK.Platform.PalHandle.UserData + - OpenTK.Platform.PalHandle.As``1(OpenTK.Platform.IPalComponent) - System.Object.Equals(System.Object) - System.Object.Equals(System.Object,System.Object) - System.Object.GetHashCode @@ -42,36 +38,28 @@ items: - System.Object.ReferenceEquals(System.Object,System.Object) - System.Object.ToString references: -- uid: OpenTK.Core.Platform - commentId: N:OpenTK.Core.Platform +- uid: OpenTK.Platform + commentId: N:OpenTK.Platform href: OpenTK.html - name: OpenTK.Core.Platform - nameWithType: OpenTK.Core.Platform - fullName: OpenTK.Core.Platform + name: OpenTK.Platform + nameWithType: OpenTK.Platform + fullName: OpenTK.Platform spec.csharp: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html spec.vb: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html - uid: System.Object commentId: T:System.Object parent: System @@ -83,55 +71,55 @@ references: nameWithType.vb: Object fullName.vb: Object name.vb: Object -- uid: OpenTK.Core.Platform.PalHandle - commentId: T:OpenTK.Core.Platform.PalHandle - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.PalHandle.html +- uid: OpenTK.Platform.PalHandle + commentId: T:OpenTK.Platform.PalHandle + parent: OpenTK.Platform + href: OpenTK.Platform.PalHandle.html name: PalHandle nameWithType: PalHandle - fullName: OpenTK.Core.Platform.PalHandle -- uid: OpenTK.Core.Platform.PalHandle.UserData - commentId: P:OpenTK.Core.Platform.PalHandle.UserData - parent: OpenTK.Core.Platform.PalHandle - href: OpenTK.Core.Platform.PalHandle.html#OpenTK_Core_Platform_PalHandle_UserData + fullName: OpenTK.Platform.PalHandle +- uid: OpenTK.Platform.PalHandle.UserData + commentId: P:OpenTK.Platform.PalHandle.UserData + parent: OpenTK.Platform.PalHandle + href: OpenTK.Platform.PalHandle.html#OpenTK_Platform_PalHandle_UserData name: UserData nameWithType: PalHandle.UserData - fullName: OpenTK.Core.Platform.PalHandle.UserData -- uid: OpenTK.Core.Platform.PalHandle.As``1(OpenTK.Core.Platform.IPalComponent) - commentId: M:OpenTK.Core.Platform.PalHandle.As``1(OpenTK.Core.Platform.IPalComponent) - parent: OpenTK.Core.Platform.PalHandle - href: OpenTK.Core.Platform.PalHandle.html#OpenTK_Core_Platform_PalHandle_As__1_OpenTK_Core_Platform_IPalComponent_ + fullName: OpenTK.Platform.PalHandle.UserData +- uid: OpenTK.Platform.PalHandle.As``1(OpenTK.Platform.IPalComponent) + commentId: M:OpenTK.Platform.PalHandle.As``1(OpenTK.Platform.IPalComponent) + parent: OpenTK.Platform.PalHandle + href: OpenTK.Platform.PalHandle.html#OpenTK_Platform_PalHandle_As__1_OpenTK_Platform_IPalComponent_ name: As(IPalComponent) nameWithType: PalHandle.As(IPalComponent) - fullName: OpenTK.Core.Platform.PalHandle.As(OpenTK.Core.Platform.IPalComponent) + fullName: OpenTK.Platform.PalHandle.As(OpenTK.Platform.IPalComponent) nameWithType.vb: PalHandle.As(Of T)(IPalComponent) - fullName.vb: OpenTK.Core.Platform.PalHandle.As(Of T)(OpenTK.Core.Platform.IPalComponent) + fullName.vb: OpenTK.Platform.PalHandle.As(Of T)(OpenTK.Platform.IPalComponent) name.vb: As(Of T)(IPalComponent) spec.csharp: - - uid: OpenTK.Core.Platform.PalHandle.As``1(OpenTK.Core.Platform.IPalComponent) + - uid: OpenTK.Platform.PalHandle.As``1(OpenTK.Platform.IPalComponent) name: As - href: OpenTK.Core.Platform.PalHandle.html#OpenTK_Core_Platform_PalHandle_As__1_OpenTK_Core_Platform_IPalComponent_ + href: OpenTK.Platform.PalHandle.html#OpenTK_Platform_PalHandle_As__1_OpenTK_Platform_IPalComponent_ - name: < - name: T - name: '>' - name: ( - - uid: OpenTK.Core.Platform.IPalComponent + - uid: OpenTK.Platform.IPalComponent name: IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html + href: OpenTK.Platform.IPalComponent.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.PalHandle.As``1(OpenTK.Core.Platform.IPalComponent) + - uid: OpenTK.Platform.PalHandle.As``1(OpenTK.Platform.IPalComponent) name: As - href: OpenTK.Core.Platform.PalHandle.html#OpenTK_Core_Platform_PalHandle_As__1_OpenTK_Core_Platform_IPalComponent_ + href: OpenTK.Platform.PalHandle.html#OpenTK_Platform_PalHandle_As__1_OpenTK_Platform_IPalComponent_ - name: ( - name: Of - name: " " - name: T - name: ) - name: ( - - uid: OpenTK.Core.Platform.IPalComponent + - uid: OpenTK.Platform.IPalComponent name: IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html + href: OpenTK.Platform.IPalComponent.html - name: ) - uid: System.Object.Equals(System.Object) commentId: M:System.Object.Equals(System.Object) diff --git a/api/OpenTK.Core.Platform.MouseMoveEventArgs.yml b/api/OpenTK.Platform.MouseMoveEventArgs.yml similarity index 72% rename from api/OpenTK.Core.Platform.MouseMoveEventArgs.yml rename to api/OpenTK.Platform.MouseMoveEventArgs.yml index fc2c1895..74b77052 100644 --- a/api/OpenTK.Core.Platform.MouseMoveEventArgs.yml +++ b/api/OpenTK.Platform.MouseMoveEventArgs.yml @@ -1,30 +1,26 @@ ### YamlMime:ManagedReference items: -- uid: OpenTK.Core.Platform.MouseMoveEventArgs - commentId: T:OpenTK.Core.Platform.MouseMoveEventArgs +- uid: OpenTK.Platform.MouseMoveEventArgs + commentId: T:OpenTK.Platform.MouseMoveEventArgs id: MouseMoveEventArgs - parent: OpenTK.Core.Platform + parent: OpenTK.Platform children: - - OpenTK.Core.Platform.MouseMoveEventArgs.#ctor(OpenTK.Core.Platform.WindowHandle,OpenTK.Mathematics.Vector2) - - OpenTK.Core.Platform.MouseMoveEventArgs.Position + - OpenTK.Platform.MouseMoveEventArgs.#ctor(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2) + - OpenTK.Platform.MouseMoveEventArgs.Position langs: - csharp - vb name: MouseMoveEventArgs nameWithType: MouseMoveEventArgs - fullName: OpenTK.Core.Platform.MouseMoveEventArgs + fullName: OpenTK.Platform.MouseMoveEventArgs type: Class source: - remote: - path: src/OpenTK.Core/Platform/WindowEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MouseMoveEventArgs - path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\WindowEventArgs.cs startLine: 406 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform + - OpenTK.Platform + namespace: OpenTK.Platform summary: This event is triggered when the mouse moves. example: [] syntax: @@ -33,9 +29,9 @@ items: inheritance: - System.Object - System.EventArgs - - OpenTK.Core.Platform.WindowEventArgs + - OpenTK.Platform.WindowEventArgs inheritedMembers: - - OpenTK.Core.Platform.WindowEventArgs.Window + - OpenTK.Platform.WindowEventArgs.Window - System.EventArgs.Empty - System.Object.Equals(System.Object) - System.Object.Equals(System.Object,System.Object) @@ -44,28 +40,24 @@ items: - System.Object.MemberwiseClone - System.Object.ReferenceEquals(System.Object,System.Object) - System.Object.ToString -- uid: OpenTK.Core.Platform.MouseMoveEventArgs.Position - commentId: P:OpenTK.Core.Platform.MouseMoveEventArgs.Position +- uid: OpenTK.Platform.MouseMoveEventArgs.Position + commentId: P:OpenTK.Platform.MouseMoveEventArgs.Position id: Position - parent: OpenTK.Core.Platform.MouseMoveEventArgs + parent: OpenTK.Platform.MouseMoveEventArgs langs: - csharp - vb name: Position nameWithType: MouseMoveEventArgs.Position - fullName: OpenTK.Core.Platform.MouseMoveEventArgs.Position + fullName: OpenTK.Platform.MouseMoveEventArgs.Position type: Property source: - remote: - path: src/OpenTK.Core/Platform/WindowEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Position - path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\WindowEventArgs.cs startLine: 415 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform + - OpenTK.Platform + namespace: OpenTK.Platform summary: The new position of the mouse cursor. example: [] syntax: @@ -74,76 +66,64 @@ items: return: type: OpenTK.Mathematics.Vector2 content.vb: Public Property Position As Vector2 - overload: OpenTK.Core.Platform.MouseMoveEventArgs.Position* -- uid: OpenTK.Core.Platform.MouseMoveEventArgs.#ctor(OpenTK.Core.Platform.WindowHandle,OpenTK.Mathematics.Vector2) - commentId: M:OpenTK.Core.Platform.MouseMoveEventArgs.#ctor(OpenTK.Core.Platform.WindowHandle,OpenTK.Mathematics.Vector2) - id: '#ctor(OpenTK.Core.Platform.WindowHandle,OpenTK.Mathematics.Vector2)' - parent: OpenTK.Core.Platform.MouseMoveEventArgs + overload: OpenTK.Platform.MouseMoveEventArgs.Position* +- uid: OpenTK.Platform.MouseMoveEventArgs.#ctor(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2) + commentId: M:OpenTK.Platform.MouseMoveEventArgs.#ctor(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2) + id: '#ctor(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2)' + parent: OpenTK.Platform.MouseMoveEventArgs langs: - csharp - vb name: MouseMoveEventArgs(WindowHandle, Vector2) nameWithType: MouseMoveEventArgs.MouseMoveEventArgs(WindowHandle, Vector2) - fullName: OpenTK.Core.Platform.MouseMoveEventArgs.MouseMoveEventArgs(OpenTK.Core.Platform.WindowHandle, OpenTK.Mathematics.Vector2) + fullName: OpenTK.Platform.MouseMoveEventArgs.MouseMoveEventArgs(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2) type: Constructor source: - remote: - path: src/OpenTK.Core/Platform/WindowEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\WindowEventArgs.cs startLine: 422 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Initializes a new instance of the class. + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Initializes a new instance of the class. example: [] syntax: content: public MouseMoveEventArgs(WindowHandle window, Vector2 position) parameters: - id: window - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: The window in which the mouse moved. - id: position type: OpenTK.Mathematics.Vector2 description: The mouse position. content.vb: Public Sub New(window As WindowHandle, position As Vector2) - overload: OpenTK.Core.Platform.MouseMoveEventArgs.#ctor* + overload: OpenTK.Platform.MouseMoveEventArgs.#ctor* nameWithType.vb: MouseMoveEventArgs.New(WindowHandle, Vector2) - fullName.vb: OpenTK.Core.Platform.MouseMoveEventArgs.New(OpenTK.Core.Platform.WindowHandle, OpenTK.Mathematics.Vector2) + fullName.vb: OpenTK.Platform.MouseMoveEventArgs.New(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2) name.vb: New(WindowHandle, Vector2) references: -- uid: OpenTK.Core.Platform - commentId: N:OpenTK.Core.Platform +- uid: OpenTK.Platform + commentId: N:OpenTK.Platform href: OpenTK.html - name: OpenTK.Core.Platform - nameWithType: OpenTK.Core.Platform - fullName: OpenTK.Core.Platform + name: OpenTK.Platform + nameWithType: OpenTK.Platform + fullName: OpenTK.Platform spec.csharp: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html spec.vb: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html - uid: System.Object commentId: T:System.Object parent: System @@ -163,20 +143,20 @@ references: name: EventArgs nameWithType: EventArgs fullName: System.EventArgs -- uid: OpenTK.Core.Platform.WindowEventArgs - commentId: T:OpenTK.Core.Platform.WindowEventArgs - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.WindowEventArgs.html +- uid: OpenTK.Platform.WindowEventArgs + commentId: T:OpenTK.Platform.WindowEventArgs + parent: OpenTK.Platform + href: OpenTK.Platform.WindowEventArgs.html name: WindowEventArgs nameWithType: WindowEventArgs - fullName: OpenTK.Core.Platform.WindowEventArgs -- uid: OpenTK.Core.Platform.WindowEventArgs.Window - commentId: P:OpenTK.Core.Platform.WindowEventArgs.Window - parent: OpenTK.Core.Platform.WindowEventArgs - href: OpenTK.Core.Platform.WindowEventArgs.html#OpenTK_Core_Platform_WindowEventArgs_Window + fullName: OpenTK.Platform.WindowEventArgs +- uid: OpenTK.Platform.WindowEventArgs.Window + commentId: P:OpenTK.Platform.WindowEventArgs.Window + parent: OpenTK.Platform.WindowEventArgs + href: OpenTK.Platform.WindowEventArgs.html#OpenTK_Platform_WindowEventArgs_Window name: Window nameWithType: WindowEventArgs.Window - fullName: OpenTK.Core.Platform.WindowEventArgs.Window + fullName: OpenTK.Platform.WindowEventArgs.Window - uid: System.EventArgs.Empty commentId: F:System.EventArgs.Empty parent: System.EventArgs @@ -411,12 +391,12 @@ references: name: System nameWithType: System fullName: System -- uid: OpenTK.Core.Platform.MouseMoveEventArgs.Position* - commentId: Overload:OpenTK.Core.Platform.MouseMoveEventArgs.Position - href: OpenTK.Core.Platform.MouseMoveEventArgs.html#OpenTK_Core_Platform_MouseMoveEventArgs_Position +- uid: OpenTK.Platform.MouseMoveEventArgs.Position* + commentId: Overload:OpenTK.Platform.MouseMoveEventArgs.Position + href: OpenTK.Platform.MouseMoveEventArgs.html#OpenTK_Platform_MouseMoveEventArgs_Position name: Position nameWithType: MouseMoveEventArgs.Position - fullName: OpenTK.Core.Platform.MouseMoveEventArgs.Position + fullName: OpenTK.Platform.MouseMoveEventArgs.Position - uid: OpenTK.Mathematics.Vector2 commentId: T:OpenTK.Mathematics.Vector2 parent: OpenTK.Mathematics @@ -446,25 +426,25 @@ references: - uid: OpenTK.Mathematics name: Mathematics href: OpenTK.Mathematics.html -- uid: OpenTK.Core.Platform.MouseMoveEventArgs - commentId: T:OpenTK.Core.Platform.MouseMoveEventArgs - href: OpenTK.Core.Platform.MouseMoveEventArgs.html +- uid: OpenTK.Platform.MouseMoveEventArgs + commentId: T:OpenTK.Platform.MouseMoveEventArgs + href: OpenTK.Platform.MouseMoveEventArgs.html name: MouseMoveEventArgs nameWithType: MouseMoveEventArgs - fullName: OpenTK.Core.Platform.MouseMoveEventArgs -- uid: OpenTK.Core.Platform.MouseMoveEventArgs.#ctor* - commentId: Overload:OpenTK.Core.Platform.MouseMoveEventArgs.#ctor - href: OpenTK.Core.Platform.MouseMoveEventArgs.html#OpenTK_Core_Platform_MouseMoveEventArgs__ctor_OpenTK_Core_Platform_WindowHandle_OpenTK_Mathematics_Vector2_ + fullName: OpenTK.Platform.MouseMoveEventArgs +- uid: OpenTK.Platform.MouseMoveEventArgs.#ctor* + commentId: Overload:OpenTK.Platform.MouseMoveEventArgs.#ctor + href: OpenTK.Platform.MouseMoveEventArgs.html#OpenTK_Platform_MouseMoveEventArgs__ctor_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2_ name: MouseMoveEventArgs nameWithType: MouseMoveEventArgs.MouseMoveEventArgs - fullName: OpenTK.Core.Platform.MouseMoveEventArgs.MouseMoveEventArgs + fullName: OpenTK.Platform.MouseMoveEventArgs.MouseMoveEventArgs nameWithType.vb: MouseMoveEventArgs.New - fullName.vb: OpenTK.Core.Platform.MouseMoveEventArgs.New + fullName.vb: OpenTK.Platform.MouseMoveEventArgs.New name.vb: New -- uid: OpenTK.Core.Platform.WindowHandle - commentId: T:OpenTK.Core.Platform.WindowHandle - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.WindowHandle.html +- uid: OpenTK.Platform.WindowHandle + commentId: T:OpenTK.Platform.WindowHandle + parent: OpenTK.Platform + href: OpenTK.Platform.WindowHandle.html name: WindowHandle nameWithType: WindowHandle - fullName: OpenTK.Core.Platform.WindowHandle + fullName: OpenTK.Platform.WindowHandle diff --git a/api/OpenTK.Core.Platform.MouseState.yml b/api/OpenTK.Platform.MouseState.yml similarity index 78% rename from api/OpenTK.Core.Platform.MouseState.yml rename to api/OpenTK.Platform.MouseState.yml index 7f87f6fb..f14d11e9 100644 --- a/api/OpenTK.Core.Platform.MouseState.yml +++ b/api/OpenTK.Platform.MouseState.yml @@ -1,31 +1,27 @@ ### YamlMime:ManagedReference items: -- uid: OpenTK.Core.Platform.MouseState - commentId: T:OpenTK.Core.Platform.MouseState +- uid: OpenTK.Platform.MouseState + commentId: T:OpenTK.Platform.MouseState id: MouseState - parent: OpenTK.Core.Platform + parent: OpenTK.Platform children: - - OpenTK.Core.Platform.MouseState.Position - - OpenTK.Core.Platform.MouseState.PressedButtons - - OpenTK.Core.Platform.MouseState.Scroll + - OpenTK.Platform.MouseState.Position + - OpenTK.Platform.MouseState.PressedButtons + - OpenTK.Platform.MouseState.Scroll langs: - csharp - vb name: MouseState nameWithType: MouseState - fullName: OpenTK.Core.Platform.MouseState + fullName: OpenTK.Platform.MouseState type: Struct source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/IMouseComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MouseState - path: opentk/src/OpenTK.Core/Platform/Interfaces/IMouseComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IMouseComponent.cs startLine: 10 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform + - OpenTK.Platform + namespace: OpenTK.Platform summary: A struct to contain information about the current mouse state. example: [] syntax: @@ -38,28 +34,24 @@ items: - System.Object.Equals(System.Object,System.Object) - System.Object.GetType - System.Object.ReferenceEquals(System.Object,System.Object) -- uid: OpenTK.Core.Platform.MouseState.Position - commentId: F:OpenTK.Core.Platform.MouseState.Position +- uid: OpenTK.Platform.MouseState.Position + commentId: F:OpenTK.Platform.MouseState.Position id: Position - parent: OpenTK.Core.Platform.MouseState + parent: OpenTK.Platform.MouseState langs: - csharp - vb name: Position nameWithType: MouseState.Position - fullName: OpenTK.Core.Platform.MouseState.Position + fullName: OpenTK.Platform.MouseState.Position type: Field source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/IMouseComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Position - path: opentk/src/OpenTK.Core/Platform/Interfaces/IMouseComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IMouseComponent.cs startLine: 15 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform + - OpenTK.Platform + namespace: OpenTK.Platform summary: The mouse position in desktop coordinates. example: [] syntax: @@ -67,28 +59,24 @@ items: return: type: OpenTK.Mathematics.Vector2i content.vb: Public Position As Vector2i -- uid: OpenTK.Core.Platform.MouseState.Scroll - commentId: F:OpenTK.Core.Platform.MouseState.Scroll +- uid: OpenTK.Platform.MouseState.Scroll + commentId: F:OpenTK.Platform.MouseState.Scroll id: Scroll - parent: OpenTK.Core.Platform.MouseState + parent: OpenTK.Platform.MouseState langs: - csharp - vb name: Scroll nameWithType: MouseState.Scroll - fullName: OpenTK.Core.Platform.MouseState.Scroll + fullName: OpenTK.Platform.MouseState.Scroll type: Field source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/IMouseComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Scroll - path: opentk/src/OpenTK.Core/Platform/Interfaces/IMouseComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IMouseComponent.cs startLine: 20 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform + - OpenTK.Platform + namespace: OpenTK.Platform summary: Virtual position of the scroll wheel. example: [] syntax: @@ -96,66 +84,54 @@ items: return: type: OpenTK.Mathematics.Vector2 content.vb: Public Scroll As Vector2 -- uid: OpenTK.Core.Platform.MouseState.PressedButtons - commentId: F:OpenTK.Core.Platform.MouseState.PressedButtons +- uid: OpenTK.Platform.MouseState.PressedButtons + commentId: F:OpenTK.Platform.MouseState.PressedButtons id: PressedButtons - parent: OpenTK.Core.Platform.MouseState + parent: OpenTK.Platform.MouseState langs: - csharp - vb name: PressedButtons nameWithType: MouseState.PressedButtons - fullName: OpenTK.Core.Platform.MouseState.PressedButtons + fullName: OpenTK.Platform.MouseState.PressedButtons type: Field source: - remote: - path: src/OpenTK.Core/Platform/Interfaces/IMouseComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: PressedButtons - path: opentk/src/OpenTK.Core/Platform/Interfaces/IMouseComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IMouseComponent.cs startLine: 25 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform + - OpenTK.Platform + namespace: OpenTK.Platform summary: Flags to indicate which mouse buttons are being pressed. example: [] syntax: content: public MouseButtonFlags PressedButtons return: - type: OpenTK.Core.Platform.MouseButtonFlags + type: OpenTK.Platform.MouseButtonFlags content.vb: Public PressedButtons As MouseButtonFlags references: -- uid: OpenTK.Core.Platform - commentId: N:OpenTK.Core.Platform +- uid: OpenTK.Platform + commentId: N:OpenTK.Platform href: OpenTK.html - name: OpenTK.Core.Platform - nameWithType: OpenTK.Core.Platform - fullName: OpenTK.Core.Platform + name: OpenTK.Platform + nameWithType: OpenTK.Platform + fullName: OpenTK.Platform spec.csharp: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html spec.vb: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html - uid: System.ValueType.Equals(System.Object) commentId: M:System.ValueType.Equals(System.Object) parent: System.ValueType @@ -409,10 +385,10 @@ references: name: Vector2 nameWithType: Vector2 fullName: OpenTK.Mathematics.Vector2 -- uid: OpenTK.Core.Platform.MouseButtonFlags - commentId: T:OpenTK.Core.Platform.MouseButtonFlags - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.MouseButtonFlags.html +- uid: OpenTK.Platform.MouseButtonFlags + commentId: T:OpenTK.Platform.MouseButtonFlags + parent: OpenTK.Platform + href: OpenTK.Platform.MouseButtonFlags.html name: MouseButtonFlags nameWithType: MouseButtonFlags - fullName: OpenTK.Core.Platform.MouseButtonFlags + fullName: OpenTK.Platform.MouseButtonFlags diff --git a/api/OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.yml b/api/OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.yml index 67eac379..998d7dcf 100644 --- a/api/OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.yml +++ b/api/OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.yml @@ -9,23 +9,23 @@ items: - OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.CanCreateFromWindow - OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.CanShareContexts - OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.CreateFromSurface - - OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.CreateFromWindow(OpenTK.Core.Platform.WindowHandle) - - OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.DestroyContext(OpenTK.Core.Platform.OpenGLContextHandle) - - OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.GetBindingsContext(OpenTK.Core.Platform.OpenGLContextHandle) + - OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.CreateFromWindow(OpenTK.Platform.WindowHandle) + - OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.DestroyContext(OpenTK.Platform.OpenGLContextHandle) + - OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.GetBindingsContext(OpenTK.Platform.OpenGLContextHandle) - OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.GetCurrentContext - - OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.GetEglContext(OpenTK.Core.Platform.OpenGLContextHandle) + - OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.GetEglContext(OpenTK.Platform.OpenGLContextHandle) - OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.GetEglDisplay - - OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.GetEglSurface(OpenTK.Core.Platform.OpenGLContextHandle) - - OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.GetProcedureAddress(OpenTK.Core.Platform.OpenGLContextHandle,System.String) - - OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.GetSharedContext(OpenTK.Core.Platform.OpenGLContextHandle) + - OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.GetEglSurface(OpenTK.Platform.OpenGLContextHandle) + - OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.GetProcedureAddress(OpenTK.Platform.OpenGLContextHandle,System.String) + - OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.GetSharedContext(OpenTK.Platform.OpenGLContextHandle) - OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.GetSwapInterval - - OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + - OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.Initialize(OpenTK.Platform.ToolkitOptions) - OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.Logger - OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.Name - OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.Provides - - OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.SetCurrentContext(OpenTK.Core.Platform.OpenGLContextHandle) + - OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.SetCurrentContext(OpenTK.Platform.OpenGLContextHandle) - OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.SetSwapInterval(System.Int32) - - OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.SwapBuffers(OpenTK.Core.Platform.OpenGLContextHandle) + - OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.SwapBuffers(OpenTK.Platform.OpenGLContextHandle) langs: - csharp - vb @@ -34,15 +34,11 @@ items: fullName: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent type: Class source: - remote: - path: src/OpenTK.Platform.Native/ANGLE/ANGLEOpenGLComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ANGLEOpenGLComponent - path: opentk/src/OpenTK.Platform.Native/ANGLE/ANGLEOpenGLComponent.cs - startLine: 14 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\ANGLE\ANGLEOpenGLComponent.cs + startLine: 15 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.ANGLE syntax: content: 'public class ANGLEOpenGLComponent : IOpenGLComponent, IPalComponent' @@ -50,8 +46,8 @@ items: inheritance: - System.Object implements: - - OpenTK.Core.Platform.IOpenGLComponent - - OpenTK.Core.Platform.IPalComponent + - OpenTK.Platform.IOpenGLComponent + - OpenTK.Platform.IPalComponent inheritedMembers: - System.Object.Equals(System.Object) - System.Object.Equals(System.Object,System.Object) @@ -72,15 +68,11 @@ items: fullName: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.Name type: Property source: - remote: - path: src/OpenTK.Platform.Native/ANGLE/ANGLEOpenGLComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Name - path: opentk/src/OpenTK.Platform.Native/ANGLE/ANGLEOpenGLComponent.cs - startLine: 17 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\ANGLE\ANGLEOpenGLComponent.cs + startLine: 18 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.ANGLE summary: Name of the abstraction layer component. example: [] @@ -92,7 +84,7 @@ items: content.vb: Public ReadOnly Property Name As String overload: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.Name* implements: - - OpenTK.Core.Platform.IPalComponent.Name + - OpenTK.Platform.IPalComponent.Name - uid: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.Provides commentId: P:OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.Provides id: Provides @@ -105,15 +97,11 @@ items: fullName: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.Provides type: Property source: - remote: - path: src/OpenTK.Platform.Native/ANGLE/ANGLEOpenGLComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Provides - path: opentk/src/OpenTK.Platform.Native/ANGLE/ANGLEOpenGLComponent.cs - startLine: 20 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\ANGLE\ANGLEOpenGLComponent.cs + startLine: 21 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.ANGLE summary: Specifies which PAL components this object provides. example: [] @@ -121,11 +109,11 @@ items: content: public PalComponents Provides { get; } parameters: [] return: - type: OpenTK.Core.Platform.PalComponents + type: OpenTK.Platform.PalComponents content.vb: Public ReadOnly Property Provides As PalComponents overload: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.Provides* implements: - - OpenTK.Core.Platform.IPalComponent.Provides + - OpenTK.Platform.IPalComponent.Provides - uid: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.Logger commentId: P:OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.Logger id: Logger @@ -138,15 +126,11 @@ items: fullName: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.Logger type: Property source: - remote: - path: src/OpenTK.Platform.Native/ANGLE/ANGLEOpenGLComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Logger - path: opentk/src/OpenTK.Platform.Native/ANGLE/ANGLEOpenGLComponent.cs - startLine: 23 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\ANGLE\ANGLEOpenGLComponent.cs + startLine: 24 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.ANGLE summary: Provides a logger for this component. example: [] @@ -158,28 +142,24 @@ items: content.vb: Public Property Logger As ILogger overload: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.Logger* implements: - - OpenTK.Core.Platform.IPalComponent.Logger -- uid: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - commentId: M:OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - id: Initialize(OpenTK.Core.Platform.ToolkitOptions) + - OpenTK.Platform.IPalComponent.Logger +- uid: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.Initialize(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.Initialize(OpenTK.Platform.ToolkitOptions) + id: Initialize(OpenTK.Platform.ToolkitOptions) parent: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent langs: - csharp - vb name: Initialize(ToolkitOptions) nameWithType: ANGLEOpenGLComponent.Initialize(ToolkitOptions) - fullName: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + fullName: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.Initialize(OpenTK.Platform.ToolkitOptions) type: Method source: - remote: - path: src/OpenTK.Platform.Native/ANGLE/ANGLEOpenGLComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Initialize - path: opentk/src/OpenTK.Platform.Native/ANGLE/ANGLEOpenGLComponent.cs - startLine: 33 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\ANGLE\ANGLEOpenGLComponent.cs + startLine: 34 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.ANGLE summary: Initialize the component. example: [] @@ -187,12 +167,12 @@ items: content: public void Initialize(ToolkitOptions options) parameters: - id: options - type: OpenTK.Core.Platform.ToolkitOptions + type: OpenTK.Platform.ToolkitOptions description: The options to initialize the component with. content.vb: Public Sub Initialize(options As ToolkitOptions) overload: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.Initialize* implements: - - OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + - OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) - uid: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.CanShareContexts commentId: P:OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.CanShareContexts id: CanShareContexts @@ -205,15 +185,11 @@ items: fullName: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.CanShareContexts type: Property source: - remote: - path: src/OpenTK.Platform.Native/ANGLE/ANGLEOpenGLComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CanShareContexts - path: opentk/src/OpenTK.Platform.Native/ANGLE/ANGLEOpenGLComponent.cs - startLine: 67 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\ANGLE\ANGLEOpenGLComponent.cs + startLine: 68 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.ANGLE summary: True if the component driver has the capability to share display lists between OpenGL contexts. example: [] @@ -225,7 +201,7 @@ items: content.vb: Public ReadOnly Property CanShareContexts As Boolean overload: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.CanShareContexts* implements: - - OpenTK.Core.Platform.IOpenGLComponent.CanShareContexts + - OpenTK.Platform.IOpenGLComponent.CanShareContexts - uid: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.CanCreateFromWindow commentId: P:OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.CanCreateFromWindow id: CanCreateFromWindow @@ -238,17 +214,13 @@ items: fullName: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.CanCreateFromWindow type: Property source: - remote: - path: src/OpenTK.Platform.Native/ANGLE/ANGLEOpenGLComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CanCreateFromWindow - path: opentk/src/OpenTK.Platform.Native/ANGLE/ANGLEOpenGLComponent.cs - startLine: 70 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\ANGLE\ANGLEOpenGLComponent.cs + startLine: 71 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.ANGLE - summary: True if the component driver can create a context from windows. + summary: True if the component driver can create a context from windows using . example: [] syntax: content: public bool CanCreateFromWindow { get; } @@ -257,8 +229,11 @@ items: type: System.Boolean content.vb: Public ReadOnly Property CanCreateFromWindow As Boolean overload: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.CanCreateFromWindow* + seealso: + - linkId: OpenTK.Platform.IOpenGLComponent.CreateFromWindow(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IOpenGLComponent.CreateFromWindow(OpenTK.Platform.WindowHandle) implements: - - OpenTK.Core.Platform.IOpenGLComponent.CanCreateFromWindow + - OpenTK.Platform.IOpenGLComponent.CanCreateFromWindow - uid: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.CanCreateFromSurface commentId: P:OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.CanCreateFromSurface id: CanCreateFromSurface @@ -271,17 +246,13 @@ items: fullName: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.CanCreateFromSurface type: Property source: - remote: - path: src/OpenTK.Platform.Native/ANGLE/ANGLEOpenGLComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CanCreateFromSurface - path: opentk/src/OpenTK.Platform.Native/ANGLE/ANGLEOpenGLComponent.cs - startLine: 73 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\ANGLE\ANGLEOpenGLComponent.cs + startLine: 74 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.ANGLE - summary: True if the component driver can create a context from surfaces. + summary: True if the component driver can create a context from surfaces using . example: [] syntax: content: public bool CanCreateFromSurface { get; } @@ -291,7 +262,7 @@ items: content.vb: Public ReadOnly Property CanCreateFromSurface As Boolean overload: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.CanCreateFromSurface* implements: - - OpenTK.Core.Platform.IOpenGLComponent.CanCreateFromSurface + - OpenTK.Platform.IOpenGLComponent.CanCreateFromSurface - uid: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.CreateFromSurface commentId: M:OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.CreateFromSurface id: CreateFromSurface @@ -304,48 +275,40 @@ items: fullName: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.CreateFromSurface() type: Method source: - remote: - path: src/OpenTK.Platform.Native/ANGLE/ANGLEOpenGLComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateFromSurface - path: opentk/src/OpenTK.Platform.Native/ANGLE/ANGLEOpenGLComponent.cs - startLine: 76 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\ANGLE\ANGLEOpenGLComponent.cs + startLine: 77 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.ANGLE summary: Create and OpenGL context for a surface. example: [] syntax: content: public OpenGLContextHandle CreateFromSurface() return: - type: OpenTK.Core.Platform.OpenGLContextHandle + type: OpenTK.Platform.OpenGLContextHandle description: An OpenGL context handle. content.vb: Public Function CreateFromSurface() As OpenGLContextHandle overload: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.CreateFromSurface* implements: - - OpenTK.Core.Platform.IOpenGLComponent.CreateFromSurface -- uid: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.CreateFromWindow(OpenTK.Core.Platform.WindowHandle) - commentId: M:OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.CreateFromWindow(OpenTK.Core.Platform.WindowHandle) - id: CreateFromWindow(OpenTK.Core.Platform.WindowHandle) + - OpenTK.Platform.IOpenGLComponent.CreateFromSurface +- uid: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.CreateFromWindow(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.CreateFromWindow(OpenTK.Platform.WindowHandle) + id: CreateFromWindow(OpenTK.Platform.WindowHandle) parent: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent langs: - csharp - vb name: CreateFromWindow(WindowHandle) nameWithType: ANGLEOpenGLComponent.CreateFromWindow(WindowHandle) - fullName: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.CreateFromWindow(OpenTK.Core.Platform.WindowHandle) + fullName: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.CreateFromWindow(OpenTK.Platform.WindowHandle) type: Method source: - remote: - path: src/OpenTK.Platform.Native/ANGLE/ANGLEOpenGLComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateFromWindow - path: opentk/src/OpenTK.Platform.Native/ANGLE/ANGLEOpenGLComponent.cs - startLine: 82 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\ANGLE\ANGLEOpenGLComponent.cs + startLine: 83 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.ANGLE summary: Create an OpenGL context for a window. example: [] @@ -353,36 +316,32 @@ items: content: public OpenGLContextHandle CreateFromWindow(WindowHandle handle) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: The window for which the OpenGL context should be created. return: - type: OpenTK.Core.Platform.OpenGLContextHandle + type: OpenTK.Platform.OpenGLContextHandle description: An OpenGL context handle. content.vb: Public Function CreateFromWindow(handle As WindowHandle) As OpenGLContextHandle overload: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.CreateFromWindow* implements: - - OpenTK.Core.Platform.IOpenGLComponent.CreateFromWindow(OpenTK.Core.Platform.WindowHandle) -- uid: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.DestroyContext(OpenTK.Core.Platform.OpenGLContextHandle) - commentId: M:OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.DestroyContext(OpenTK.Core.Platform.OpenGLContextHandle) - id: DestroyContext(OpenTK.Core.Platform.OpenGLContextHandle) + - OpenTK.Platform.IOpenGLComponent.CreateFromWindow(OpenTK.Platform.WindowHandle) +- uid: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.DestroyContext(OpenTK.Platform.OpenGLContextHandle) + commentId: M:OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.DestroyContext(OpenTK.Platform.OpenGLContextHandle) + id: DestroyContext(OpenTK.Platform.OpenGLContextHandle) parent: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent langs: - csharp - vb name: DestroyContext(OpenGLContextHandle) nameWithType: ANGLEOpenGLComponent.DestroyContext(OpenGLContextHandle) - fullName: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.DestroyContext(OpenTK.Core.Platform.OpenGLContextHandle) + fullName: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.DestroyContext(OpenTK.Platform.OpenGLContextHandle) type: Method source: - remote: - path: src/OpenTK.Platform.Native/ANGLE/ANGLEOpenGLComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DestroyContext - path: opentk/src/OpenTK.Platform.Native/ANGLE/ANGLEOpenGLComponent.cs - startLine: 202 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\ANGLE\ANGLEOpenGLComponent.cs + startLine: 245 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.ANGLE summary: Destroy an OpenGL context. example: [] @@ -390,7 +349,7 @@ items: content: public void DestroyContext(OpenGLContextHandle handle) parameters: - id: handle - type: OpenTK.Core.Platform.OpenGLContextHandle + type: OpenTK.Platform.OpenGLContextHandle description: Handle to the OpenGL context to destroy. content.vb: Public Sub DestroyContext(handle As OpenGLContextHandle) overload: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.DestroyContext* @@ -399,36 +358,32 @@ items: commentId: T:System.ArgumentNullException description: OpenGL context handle is null. implements: - - OpenTK.Core.Platform.IOpenGLComponent.DestroyContext(OpenTK.Core.Platform.OpenGLContextHandle) -- uid: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.GetBindingsContext(OpenTK.Core.Platform.OpenGLContextHandle) - commentId: M:OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.GetBindingsContext(OpenTK.Core.Platform.OpenGLContextHandle) - id: GetBindingsContext(OpenTK.Core.Platform.OpenGLContextHandle) + - OpenTK.Platform.IOpenGLComponent.DestroyContext(OpenTK.Platform.OpenGLContextHandle) +- uid: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.GetBindingsContext(OpenTK.Platform.OpenGLContextHandle) + commentId: M:OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.GetBindingsContext(OpenTK.Platform.OpenGLContextHandle) + id: GetBindingsContext(OpenTK.Platform.OpenGLContextHandle) parent: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent langs: - csharp - vb name: GetBindingsContext(OpenGLContextHandle) nameWithType: ANGLEOpenGLComponent.GetBindingsContext(OpenGLContextHandle) - fullName: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.GetBindingsContext(OpenTK.Core.Platform.OpenGLContextHandle) + fullName: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.GetBindingsContext(OpenTK.Platform.OpenGLContextHandle) type: Method source: - remote: - path: src/OpenTK.Platform.Native/ANGLE/ANGLEOpenGLComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetBindingsContext - path: opentk/src/OpenTK.Platform.Native/ANGLE/ANGLEOpenGLComponent.cs - startLine: 222 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\ANGLE\ANGLEOpenGLComponent.cs + startLine: 265 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.ANGLE - summary: Gets a from an . + summary: Gets a from an . example: [] syntax: content: public IBindingsContext GetBindingsContext(OpenGLContextHandle handle) parameters: - id: handle - type: OpenTK.Core.Platform.OpenGLContextHandle + type: OpenTK.Platform.OpenGLContextHandle description: The handle to get a bindings context for. return: type: OpenTK.IBindingsContext @@ -436,28 +391,24 @@ items: content.vb: Public Function GetBindingsContext(handle As OpenGLContextHandle) As IBindingsContext overload: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.GetBindingsContext* implements: - - OpenTK.Core.Platform.IOpenGLComponent.GetBindingsContext(OpenTK.Core.Platform.OpenGLContextHandle) -- uid: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.GetProcedureAddress(OpenTK.Core.Platform.OpenGLContextHandle,System.String) - commentId: M:OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.GetProcedureAddress(OpenTK.Core.Platform.OpenGLContextHandle,System.String) - id: GetProcedureAddress(OpenTK.Core.Platform.OpenGLContextHandle,System.String) + - OpenTK.Platform.IOpenGLComponent.GetBindingsContext(OpenTK.Platform.OpenGLContextHandle) +- uid: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.GetProcedureAddress(OpenTK.Platform.OpenGLContextHandle,System.String) + commentId: M:OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.GetProcedureAddress(OpenTK.Platform.OpenGLContextHandle,System.String) + id: GetProcedureAddress(OpenTK.Platform.OpenGLContextHandle,System.String) parent: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent langs: - csharp - vb name: GetProcedureAddress(OpenGLContextHandle, string) nameWithType: ANGLEOpenGLComponent.GetProcedureAddress(OpenGLContextHandle, string) - fullName: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.GetProcedureAddress(OpenTK.Core.Platform.OpenGLContextHandle, string) + fullName: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.GetProcedureAddress(OpenTK.Platform.OpenGLContextHandle, string) type: Method source: - remote: - path: src/OpenTK.Platform.Native/ANGLE/ANGLEOpenGLComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetProcedureAddress - path: opentk/src/OpenTK.Platform.Native/ANGLE/ANGLEOpenGLComponent.cs - startLine: 229 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\ANGLE\ANGLEOpenGLComponent.cs + startLine: 272 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.ANGLE summary: Get the procedure address for an OpenGL command. example: [] @@ -465,7 +416,7 @@ items: content: public nint GetProcedureAddress(OpenGLContextHandle handle, string procedureName) parameters: - id: handle - type: OpenTK.Core.Platform.OpenGLContextHandle + type: OpenTK.Platform.OpenGLContextHandle description: Handle to an OpenGL context. - id: procedureName type: System.String @@ -480,9 +431,9 @@ items: commentId: T:System.ArgumentNullException description: OpenGL context handle or procedure name is null. implements: - - OpenTK.Core.Platform.IOpenGLComponent.GetProcedureAddress(OpenTK.Core.Platform.OpenGLContextHandle,System.String) + - OpenTK.Platform.IOpenGLComponent.GetProcedureAddress(OpenTK.Platform.OpenGLContextHandle,System.String) nameWithType.vb: ANGLEOpenGLComponent.GetProcedureAddress(OpenGLContextHandle, String) - fullName.vb: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.GetProcedureAddress(OpenTK.Core.Platform.OpenGLContextHandle, String) + fullName.vb: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.GetProcedureAddress(OpenTK.Platform.OpenGLContextHandle, String) name.vb: GetProcedureAddress(OpenGLContextHandle, String) - uid: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.GetCurrentContext commentId: M:OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.GetCurrentContext @@ -496,48 +447,40 @@ items: fullName: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.GetCurrentContext() type: Method source: - remote: - path: src/OpenTK.Platform.Native/ANGLE/ANGLEOpenGLComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetCurrentContext - path: opentk/src/OpenTK.Platform.Native/ANGLE/ANGLEOpenGLComponent.cs - startLine: 235 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\ANGLE\ANGLEOpenGLComponent.cs + startLine: 278 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.ANGLE summary: Get the current OpenGL context for this thread. example: [] syntax: content: public OpenGLContextHandle? GetCurrentContext() return: - type: OpenTK.Core.Platform.OpenGLContextHandle + type: OpenTK.Platform.OpenGLContextHandle description: Handle to the current OpenGL context, null if none are current. content.vb: Public Function GetCurrentContext() As OpenGLContextHandle overload: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.GetCurrentContext* implements: - - OpenTK.Core.Platform.IOpenGLComponent.GetCurrentContext -- uid: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.SetCurrentContext(OpenTK.Core.Platform.OpenGLContextHandle) - commentId: M:OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.SetCurrentContext(OpenTK.Core.Platform.OpenGLContextHandle) - id: SetCurrentContext(OpenTK.Core.Platform.OpenGLContextHandle) + - OpenTK.Platform.IOpenGLComponent.GetCurrentContext +- uid: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.SetCurrentContext(OpenTK.Platform.OpenGLContextHandle) + commentId: M:OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.SetCurrentContext(OpenTK.Platform.OpenGLContextHandle) + id: SetCurrentContext(OpenTK.Platform.OpenGLContextHandle) parent: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent langs: - csharp - vb name: SetCurrentContext(OpenGLContextHandle?) nameWithType: ANGLEOpenGLComponent.SetCurrentContext(OpenGLContextHandle?) - fullName: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.SetCurrentContext(OpenTK.Core.Platform.OpenGLContextHandle?) + fullName: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.SetCurrentContext(OpenTK.Platform.OpenGLContextHandle?) type: Method source: - remote: - path: src/OpenTK.Platform.Native/ANGLE/ANGLEOpenGLComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetCurrentContext - path: opentk/src/OpenTK.Platform.Native/ANGLE/ANGLEOpenGLComponent.cs - startLine: 249 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\ANGLE\ANGLEOpenGLComponent.cs + startLine: 292 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.ANGLE summary: Set the current OpenGL context for this thread. example: [] @@ -545,7 +488,7 @@ items: content: public bool SetCurrentContext(OpenGLContextHandle? handle) parameters: - id: handle - type: OpenTK.Core.Platform.OpenGLContextHandle + type: OpenTK.Platform.OpenGLContextHandle description: Handle to the OpenGL context to make current, or null to make none current. return: type: System.Boolean @@ -553,31 +496,27 @@ items: content.vb: Public Function SetCurrentContext(handle As OpenGLContextHandle) As Boolean overload: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.SetCurrentContext* implements: - - OpenTK.Core.Platform.IOpenGLComponent.SetCurrentContext(OpenTK.Core.Platform.OpenGLContextHandle) + - OpenTK.Platform.IOpenGLComponent.SetCurrentContext(OpenTK.Platform.OpenGLContextHandle) nameWithType.vb: ANGLEOpenGLComponent.SetCurrentContext(OpenGLContextHandle) - fullName.vb: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.SetCurrentContext(OpenTK.Core.Platform.OpenGLContextHandle) + fullName.vb: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.SetCurrentContext(OpenTK.Platform.OpenGLContextHandle) name.vb: SetCurrentContext(OpenGLContextHandle) -- uid: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.GetSharedContext(OpenTK.Core.Platform.OpenGLContextHandle) - commentId: M:OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.GetSharedContext(OpenTK.Core.Platform.OpenGLContextHandle) - id: GetSharedContext(OpenTK.Core.Platform.OpenGLContextHandle) +- uid: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.GetSharedContext(OpenTK.Platform.OpenGLContextHandle) + commentId: M:OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.GetSharedContext(OpenTK.Platform.OpenGLContextHandle) + id: GetSharedContext(OpenTK.Platform.OpenGLContextHandle) parent: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent langs: - csharp - vb name: GetSharedContext(OpenGLContextHandle) nameWithType: ANGLEOpenGLComponent.GetSharedContext(OpenGLContextHandle) - fullName: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.GetSharedContext(OpenTK.Core.Platform.OpenGLContextHandle) + fullName: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.GetSharedContext(OpenTK.Platform.OpenGLContextHandle) type: Method source: - remote: - path: src/OpenTK.Platform.Native/ANGLE/ANGLEOpenGLComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetSharedContext - path: opentk/src/OpenTK.Platform.Native/ANGLE/ANGLEOpenGLComponent.cs - startLine: 263 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\ANGLE\ANGLEOpenGLComponent.cs + startLine: 306 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.ANGLE summary: Gets the context which the given context shares display lists with. example: [] @@ -585,15 +524,15 @@ items: content: public OpenGLContextHandle? GetSharedContext(OpenGLContextHandle handle) parameters: - id: handle - type: OpenTK.Core.Platform.OpenGLContextHandle + type: OpenTK.Platform.OpenGLContextHandle description: Handle to the OpenGL context. return: - type: OpenTK.Core.Platform.OpenGLContextHandle + type: OpenTK.Platform.OpenGLContextHandle description: Handle to the OpenGL context the given context shares display lists with. content.vb: Public Function GetSharedContext(handle As OpenGLContextHandle) As OpenGLContextHandle overload: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.GetSharedContext* implements: - - OpenTK.Core.Platform.IOpenGLComponent.GetSharedContext(OpenTK.Core.Platform.OpenGLContextHandle) + - OpenTK.Platform.IOpenGLComponent.GetSharedContext(OpenTK.Platform.OpenGLContextHandle) - uid: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.SetSwapInterval(System.Int32) commentId: M:OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.SetSwapInterval(System.Int32) id: SetSwapInterval(System.Int32) @@ -606,15 +545,11 @@ items: fullName: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.SetSwapInterval(int) type: Method source: - remote: - path: src/OpenTK.Platform.Native/ANGLE/ANGLEOpenGLComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetSwapInterval - path: opentk/src/OpenTK.Platform.Native/ANGLE/ANGLEOpenGLComponent.cs - startLine: 272 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\ANGLE\ANGLEOpenGLComponent.cs + startLine: 315 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.ANGLE summary: Sets the swap interval of the current OpenGL context. example: [] @@ -627,7 +562,7 @@ items: content.vb: Public Sub SetSwapInterval(interval As Integer) overload: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.SetSwapInterval* implements: - - OpenTK.Core.Platform.IOpenGLComponent.SetSwapInterval(System.Int32) + - OpenTK.Platform.IOpenGLComponent.SetSwapInterval(System.Int32) nameWithType.vb: ANGLEOpenGLComponent.SetSwapInterval(Integer) fullName.vb: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.SetSwapInterval(Integer) name.vb: SetSwapInterval(Integer) @@ -643,15 +578,11 @@ items: fullName: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.GetSwapInterval() type: Method source: - remote: - path: src/OpenTK.Platform.Native/ANGLE/ANGLEOpenGLComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetSwapInterval - path: opentk/src/OpenTK.Platform.Native/ANGLE/ANGLEOpenGLComponent.cs - startLine: 279 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\ANGLE\ANGLEOpenGLComponent.cs + startLine: 322 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.ANGLE summary: Gets the swap interval of the current OpenGL context. example: [] @@ -663,28 +594,24 @@ items: content.vb: Public Function GetSwapInterval() As Integer overload: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.GetSwapInterval* implements: - - OpenTK.Core.Platform.IOpenGLComponent.GetSwapInterval -- uid: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.SwapBuffers(OpenTK.Core.Platform.OpenGLContextHandle) - commentId: M:OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.SwapBuffers(OpenTK.Core.Platform.OpenGLContextHandle) - id: SwapBuffers(OpenTK.Core.Platform.OpenGLContextHandle) + - OpenTK.Platform.IOpenGLComponent.GetSwapInterval +- uid: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.SwapBuffers(OpenTK.Platform.OpenGLContextHandle) + commentId: M:OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.SwapBuffers(OpenTK.Platform.OpenGLContextHandle) + id: SwapBuffers(OpenTK.Platform.OpenGLContextHandle) parent: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent langs: - csharp - vb name: SwapBuffers(OpenGLContextHandle) nameWithType: ANGLEOpenGLComponent.SwapBuffers(OpenGLContextHandle) - fullName: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.SwapBuffers(OpenTK.Core.Platform.OpenGLContextHandle) + fullName: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.SwapBuffers(OpenTK.Platform.OpenGLContextHandle) type: Method source: - remote: - path: src/OpenTK.Platform.Native/ANGLE/ANGLEOpenGLComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SwapBuffers - path: opentk/src/OpenTK.Platform.Native/ANGLE/ANGLEOpenGLComponent.cs - startLine: 285 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\ANGLE\ANGLEOpenGLComponent.cs + startLine: 328 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.ANGLE summary: Swaps the buffer of the specified context. example: [] @@ -692,12 +619,12 @@ items: content: public void SwapBuffers(OpenGLContextHandle handle) parameters: - id: handle - type: OpenTK.Core.Platform.OpenGLContextHandle + type: OpenTK.Platform.OpenGLContextHandle description: Handle to the context. content.vb: Public Sub SwapBuffers(handle As OpenGLContextHandle) overload: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.SwapBuffers* implements: - - OpenTK.Core.Platform.IOpenGLComponent.SwapBuffers(OpenTK.Core.Platform.OpenGLContextHandle) + - OpenTK.Platform.IOpenGLComponent.SwapBuffers(OpenTK.Platform.OpenGLContextHandle) - uid: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.GetEglDisplay commentId: M:OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.GetEglDisplay id: GetEglDisplay @@ -710,15 +637,11 @@ items: fullName: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.GetEglDisplay() type: Method source: - remote: - path: src/OpenTK.Platform.Native/ANGLE/ANGLEOpenGLComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetEglDisplay - path: opentk/src/OpenTK.Platform.Native/ANGLE/ANGLEOpenGLComponent.cs - startLine: 295 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\ANGLE\ANGLEOpenGLComponent.cs + startLine: 338 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.ANGLE summary: Returns the EGLDisplay used by OpenTK. example: [] @@ -729,27 +652,23 @@ items: description: The EGLDisplay used by OpenTK. content.vb: Public Function GetEglDisplay() As IntPtr overload: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.GetEglDisplay* -- uid: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.GetEglContext(OpenTK.Core.Platform.OpenGLContextHandle) - commentId: M:OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.GetEglContext(OpenTK.Core.Platform.OpenGLContextHandle) - id: GetEglContext(OpenTK.Core.Platform.OpenGLContextHandle) +- uid: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.GetEglContext(OpenTK.Platform.OpenGLContextHandle) + commentId: M:OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.GetEglContext(OpenTK.Platform.OpenGLContextHandle) + id: GetEglContext(OpenTK.Platform.OpenGLContextHandle) parent: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent langs: - csharp - vb name: GetEglContext(OpenGLContextHandle) nameWithType: ANGLEOpenGLComponent.GetEglContext(OpenGLContextHandle) - fullName: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.GetEglContext(OpenTK.Core.Platform.OpenGLContextHandle) + fullName: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.GetEglContext(OpenTK.Platform.OpenGLContextHandle) type: Method source: - remote: - path: src/OpenTK.Platform.Native/ANGLE/ANGLEOpenGLComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetEglContext - path: opentk/src/OpenTK.Platform.Native/ANGLE/ANGLEOpenGLComponent.cs - startLine: 305 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\ANGLE\ANGLEOpenGLComponent.cs + startLine: 348 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.ANGLE summary: Returns the EGLContext associated with the specified context handle. example: [] @@ -757,34 +676,30 @@ items: content: public nint GetEglContext(OpenGLContextHandle handle) parameters: - id: handle - type: OpenTK.Core.Platform.OpenGLContextHandle + type: OpenTK.Platform.OpenGLContextHandle description: A handle to an OpenGL context to get the associated EGLContext from. return: type: System.IntPtr description: The EGLContext associated with the context handle. content.vb: Public Function GetEglContext(handle As OpenGLContextHandle) As IntPtr overload: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.GetEglContext* -- uid: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.GetEglSurface(OpenTK.Core.Platform.OpenGLContextHandle) - commentId: M:OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.GetEglSurface(OpenTK.Core.Platform.OpenGLContextHandle) - id: GetEglSurface(OpenTK.Core.Platform.OpenGLContextHandle) +- uid: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.GetEglSurface(OpenTK.Platform.OpenGLContextHandle) + commentId: M:OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.GetEglSurface(OpenTK.Platform.OpenGLContextHandle) + id: GetEglSurface(OpenTK.Platform.OpenGLContextHandle) parent: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent langs: - csharp - vb name: GetEglSurface(OpenGLContextHandle) nameWithType: ANGLEOpenGLComponent.GetEglSurface(OpenGLContextHandle) - fullName: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.GetEglSurface(OpenTK.Core.Platform.OpenGLContextHandle) + fullName: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.GetEglSurface(OpenTK.Platform.OpenGLContextHandle) type: Method source: - remote: - path: src/OpenTK.Platform.Native/ANGLE/ANGLEOpenGLComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetEglSurface - path: opentk/src/OpenTK.Platform.Native/ANGLE/ANGLEOpenGLComponent.cs - startLine: 317 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\ANGLE\ANGLEOpenGLComponent.cs + startLine: 360 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.ANGLE summary: Returns the EGLSurface associated with the specified context handle. example: [] @@ -792,7 +707,7 @@ items: content: public nint GetEglSurface(OpenGLContextHandle handle) parameters: - id: handle - type: OpenTK.Core.Platform.OpenGLContextHandle + type: OpenTK.Platform.OpenGLContextHandle description: A handle to an OpenGL context to get the associated EGLSurface from. return: type: System.IntPtr @@ -849,20 +764,20 @@ references: nameWithType.vb: Object fullName.vb: Object name.vb: Object -- uid: OpenTK.Core.Platform.IOpenGLComponent - commentId: T:OpenTK.Core.Platform.IOpenGLComponent - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.IOpenGLComponent.html +- uid: OpenTK.Platform.IOpenGLComponent + commentId: T:OpenTK.Platform.IOpenGLComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IOpenGLComponent.html name: IOpenGLComponent nameWithType: IOpenGLComponent - fullName: OpenTK.Core.Platform.IOpenGLComponent -- uid: OpenTK.Core.Platform.IPalComponent - commentId: T:OpenTK.Core.Platform.IPalComponent - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.IPalComponent.html + fullName: OpenTK.Platform.IOpenGLComponent +- uid: OpenTK.Platform.IPalComponent + commentId: T:OpenTK.Platform.IPalComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IPalComponent.html name: IPalComponent nameWithType: IPalComponent - fullName: OpenTK.Core.Platform.IPalComponent + fullName: OpenTK.Platform.IPalComponent - uid: System.Object.Equals(System.Object) commentId: M:System.Object.Equals(System.Object) parent: System.Object @@ -1089,49 +1004,41 @@ references: name: System nameWithType: System fullName: System -- uid: OpenTK.Core.Platform - commentId: N:OpenTK.Core.Platform +- uid: OpenTK.Platform + commentId: N:OpenTK.Platform href: OpenTK.html - name: OpenTK.Core.Platform - nameWithType: OpenTK.Core.Platform - fullName: OpenTK.Core.Platform + name: OpenTK.Platform + nameWithType: OpenTK.Platform + fullName: OpenTK.Platform spec.csharp: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html spec.vb: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html - uid: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.Name* commentId: Overload:OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.Name href: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.html#OpenTK_Platform_Native_ANGLE_ANGLEOpenGLComponent_Name name: Name nameWithType: ANGLEOpenGLComponent.Name fullName: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.Name -- uid: OpenTK.Core.Platform.IPalComponent.Name - commentId: P:OpenTK.Core.Platform.IPalComponent.Name - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Name +- uid: OpenTK.Platform.IPalComponent.Name + commentId: P:OpenTK.Platform.IPalComponent.Name + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Name name: Name nameWithType: IPalComponent.Name - fullName: OpenTK.Core.Platform.IPalComponent.Name + fullName: OpenTK.Platform.IPalComponent.Name - uid: System.String commentId: T:System.String parent: System @@ -1149,33 +1056,33 @@ references: name: Provides nameWithType: ANGLEOpenGLComponent.Provides fullName: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.Provides -- uid: OpenTK.Core.Platform.IPalComponent.Provides - commentId: P:OpenTK.Core.Platform.IPalComponent.Provides - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Provides +- uid: OpenTK.Platform.IPalComponent.Provides + commentId: P:OpenTK.Platform.IPalComponent.Provides + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Provides name: Provides nameWithType: IPalComponent.Provides - fullName: OpenTK.Core.Platform.IPalComponent.Provides -- uid: OpenTK.Core.Platform.PalComponents - commentId: T:OpenTK.Core.Platform.PalComponents - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.PalComponents.html + fullName: OpenTK.Platform.IPalComponent.Provides +- uid: OpenTK.Platform.PalComponents + commentId: T:OpenTK.Platform.PalComponents + parent: OpenTK.Platform + href: OpenTK.Platform.PalComponents.html name: PalComponents nameWithType: PalComponents - fullName: OpenTK.Core.Platform.PalComponents + fullName: OpenTK.Platform.PalComponents - uid: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.Logger* commentId: Overload:OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.Logger href: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.html#OpenTK_Platform_Native_ANGLE_ANGLEOpenGLComponent_Logger name: Logger nameWithType: ANGLEOpenGLComponent.Logger fullName: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.Logger -- uid: OpenTK.Core.Platform.IPalComponent.Logger - commentId: P:OpenTK.Core.Platform.IPalComponent.Logger - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Logger +- uid: OpenTK.Platform.IPalComponent.Logger + commentId: P:OpenTK.Platform.IPalComponent.Logger + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Logger name: Logger nameWithType: IPalComponent.Logger - fullName: OpenTK.Core.Platform.IPalComponent.Logger + fullName: OpenTK.Platform.IPalComponent.Logger - uid: OpenTK.Core.Utility.ILogger commentId: T:OpenTK.Core.Utility.ILogger parent: OpenTK.Core.Utility @@ -1215,55 +1122,55 @@ references: href: OpenTK.Core.Utility.html - uid: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.Initialize* commentId: Overload:OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.Initialize - href: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.html#OpenTK_Platform_Native_ANGLE_ANGLEOpenGLComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + href: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.html#OpenTK_Platform_Native_ANGLE_ANGLEOpenGLComponent_Initialize_OpenTK_Platform_ToolkitOptions_ name: Initialize nameWithType: ANGLEOpenGLComponent.Initialize fullName: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.Initialize -- uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - commentId: M:OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ +- uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ name: Initialize(ToolkitOptions) nameWithType: IPalComponent.Initialize(ToolkitOptions) - fullName: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + fullName: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) spec.csharp: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + - uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.ToolkitOptions + - uid: OpenTK.Platform.ToolkitOptions name: ToolkitOptions - href: OpenTK.Core.Platform.ToolkitOptions.html + href: OpenTK.Platform.ToolkitOptions.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + - uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.ToolkitOptions + - uid: OpenTK.Platform.ToolkitOptions name: ToolkitOptions - href: OpenTK.Core.Platform.ToolkitOptions.html + href: OpenTK.Platform.ToolkitOptions.html - name: ) -- uid: OpenTK.Core.Platform.ToolkitOptions - commentId: T:OpenTK.Core.Platform.ToolkitOptions - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.ToolkitOptions.html +- uid: OpenTK.Platform.ToolkitOptions + commentId: T:OpenTK.Platform.ToolkitOptions + parent: OpenTK.Platform + href: OpenTK.Platform.ToolkitOptions.html name: ToolkitOptions nameWithType: ToolkitOptions - fullName: OpenTK.Core.Platform.ToolkitOptions + fullName: OpenTK.Platform.ToolkitOptions - uid: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.CanShareContexts* commentId: Overload:OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.CanShareContexts href: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.html#OpenTK_Platform_Native_ANGLE_ANGLEOpenGLComponent_CanShareContexts name: CanShareContexts nameWithType: ANGLEOpenGLComponent.CanShareContexts fullName: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.CanShareContexts -- uid: OpenTK.Core.Platform.IOpenGLComponent.CanShareContexts - commentId: P:OpenTK.Core.Platform.IOpenGLComponent.CanShareContexts - parent: OpenTK.Core.Platform.IOpenGLComponent - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_CanShareContexts +- uid: OpenTK.Platform.IOpenGLComponent.CanShareContexts + commentId: P:OpenTK.Platform.IOpenGLComponent.CanShareContexts + parent: OpenTK.Platform.IOpenGLComponent + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_CanShareContexts name: CanShareContexts nameWithType: IOpenGLComponent.CanShareContexts - fullName: OpenTK.Core.Platform.IOpenGLComponent.CanShareContexts + fullName: OpenTK.Platform.IOpenGLComponent.CanShareContexts - uid: System.Boolean commentId: T:System.Boolean parent: System @@ -1275,102 +1182,102 @@ references: nameWithType.vb: Boolean fullName.vb: Boolean name.vb: Boolean +- uid: OpenTK.Platform.IOpenGLComponent.CreateFromWindow(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IOpenGLComponent.CreateFromWindow(OpenTK.Platform.WindowHandle) + parent: OpenTK.Platform.IOpenGLComponent + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_CreateFromWindow_OpenTK_Platform_WindowHandle_ + name: CreateFromWindow(WindowHandle) + nameWithType: IOpenGLComponent.CreateFromWindow(WindowHandle) + fullName: OpenTK.Platform.IOpenGLComponent.CreateFromWindow(OpenTK.Platform.WindowHandle) + spec.csharp: + - uid: OpenTK.Platform.IOpenGLComponent.CreateFromWindow(OpenTK.Platform.WindowHandle) + name: CreateFromWindow + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_CreateFromWindow_OpenTK_Platform_WindowHandle_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IOpenGLComponent.CreateFromWindow(OpenTK.Platform.WindowHandle) + name: CreateFromWindow + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_CreateFromWindow_OpenTK_Platform_WindowHandle_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ) - uid: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.CanCreateFromWindow* commentId: Overload:OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.CanCreateFromWindow href: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.html#OpenTK_Platform_Native_ANGLE_ANGLEOpenGLComponent_CanCreateFromWindow name: CanCreateFromWindow nameWithType: ANGLEOpenGLComponent.CanCreateFromWindow fullName: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.CanCreateFromWindow -- uid: OpenTK.Core.Platform.IOpenGLComponent.CanCreateFromWindow - commentId: P:OpenTK.Core.Platform.IOpenGLComponent.CanCreateFromWindow - parent: OpenTK.Core.Platform.IOpenGLComponent - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_CanCreateFromWindow +- uid: OpenTK.Platform.IOpenGLComponent.CanCreateFromWindow + commentId: P:OpenTK.Platform.IOpenGLComponent.CanCreateFromWindow + parent: OpenTK.Platform.IOpenGLComponent + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_CanCreateFromWindow name: CanCreateFromWindow nameWithType: IOpenGLComponent.CanCreateFromWindow - fullName: OpenTK.Core.Platform.IOpenGLComponent.CanCreateFromWindow + fullName: OpenTK.Platform.IOpenGLComponent.CanCreateFromWindow +- uid: OpenTK.Platform.IOpenGLComponent.CreateFromSurface + commentId: M:OpenTK.Platform.IOpenGLComponent.CreateFromSurface + parent: OpenTK.Platform.IOpenGLComponent + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_CreateFromSurface + name: CreateFromSurface() + nameWithType: IOpenGLComponent.CreateFromSurface() + fullName: OpenTK.Platform.IOpenGLComponent.CreateFromSurface() + spec.csharp: + - uid: OpenTK.Platform.IOpenGLComponent.CreateFromSurface + name: CreateFromSurface + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_CreateFromSurface + - name: ( + - name: ) + spec.vb: + - uid: OpenTK.Platform.IOpenGLComponent.CreateFromSurface + name: CreateFromSurface + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_CreateFromSurface + - name: ( + - name: ) - uid: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.CanCreateFromSurface* commentId: Overload:OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.CanCreateFromSurface href: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.html#OpenTK_Platform_Native_ANGLE_ANGLEOpenGLComponent_CanCreateFromSurface name: CanCreateFromSurface nameWithType: ANGLEOpenGLComponent.CanCreateFromSurface fullName: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.CanCreateFromSurface -- uid: OpenTK.Core.Platform.IOpenGLComponent.CanCreateFromSurface - commentId: P:OpenTK.Core.Platform.IOpenGLComponent.CanCreateFromSurface - parent: OpenTK.Core.Platform.IOpenGLComponent - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_CanCreateFromSurface +- uid: OpenTK.Platform.IOpenGLComponent.CanCreateFromSurface + commentId: P:OpenTK.Platform.IOpenGLComponent.CanCreateFromSurface + parent: OpenTK.Platform.IOpenGLComponent + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_CanCreateFromSurface name: CanCreateFromSurface nameWithType: IOpenGLComponent.CanCreateFromSurface - fullName: OpenTK.Core.Platform.IOpenGLComponent.CanCreateFromSurface + fullName: OpenTK.Platform.IOpenGLComponent.CanCreateFromSurface - uid: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.CreateFromSurface* commentId: Overload:OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.CreateFromSurface href: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.html#OpenTK_Platform_Native_ANGLE_ANGLEOpenGLComponent_CreateFromSurface name: CreateFromSurface nameWithType: ANGLEOpenGLComponent.CreateFromSurface fullName: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.CreateFromSurface -- uid: OpenTK.Core.Platform.IOpenGLComponent.CreateFromSurface - commentId: M:OpenTK.Core.Platform.IOpenGLComponent.CreateFromSurface - parent: OpenTK.Core.Platform.IOpenGLComponent - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_CreateFromSurface - name: CreateFromSurface() - nameWithType: IOpenGLComponent.CreateFromSurface() - fullName: OpenTK.Core.Platform.IOpenGLComponent.CreateFromSurface() - spec.csharp: - - uid: OpenTK.Core.Platform.IOpenGLComponent.CreateFromSurface - name: CreateFromSurface - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_CreateFromSurface - - name: ( - - name: ) - spec.vb: - - uid: OpenTK.Core.Platform.IOpenGLComponent.CreateFromSurface - name: CreateFromSurface - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_CreateFromSurface - - name: ( - - name: ) -- uid: OpenTK.Core.Platform.OpenGLContextHandle - commentId: T:OpenTK.Core.Platform.OpenGLContextHandle - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.OpenGLContextHandle.html +- uid: OpenTK.Platform.OpenGLContextHandle + commentId: T:OpenTK.Platform.OpenGLContextHandle + parent: OpenTK.Platform + href: OpenTK.Platform.OpenGLContextHandle.html name: OpenGLContextHandle nameWithType: OpenGLContextHandle - fullName: OpenTK.Core.Platform.OpenGLContextHandle + fullName: OpenTK.Platform.OpenGLContextHandle - uid: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.CreateFromWindow* commentId: Overload:OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.CreateFromWindow - href: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.html#OpenTK_Platform_Native_ANGLE_ANGLEOpenGLComponent_CreateFromWindow_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.html#OpenTK_Platform_Native_ANGLE_ANGLEOpenGLComponent_CreateFromWindow_OpenTK_Platform_WindowHandle_ name: CreateFromWindow nameWithType: ANGLEOpenGLComponent.CreateFromWindow fullName: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.CreateFromWindow -- uid: OpenTK.Core.Platform.IOpenGLComponent.CreateFromWindow(OpenTK.Core.Platform.WindowHandle) - commentId: M:OpenTK.Core.Platform.IOpenGLComponent.CreateFromWindow(OpenTK.Core.Platform.WindowHandle) - parent: OpenTK.Core.Platform.IOpenGLComponent - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_CreateFromWindow_OpenTK_Core_Platform_WindowHandle_ - name: CreateFromWindow(WindowHandle) - nameWithType: IOpenGLComponent.CreateFromWindow(WindowHandle) - fullName: OpenTK.Core.Platform.IOpenGLComponent.CreateFromWindow(OpenTK.Core.Platform.WindowHandle) - spec.csharp: - - uid: OpenTK.Core.Platform.IOpenGLComponent.CreateFromWindow(OpenTK.Core.Platform.WindowHandle) - name: CreateFromWindow - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_CreateFromWindow_OpenTK_Core_Platform_WindowHandle_ - - name: ( - - uid: OpenTK.Core.Platform.WindowHandle - name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html - - name: ) - spec.vb: - - uid: OpenTK.Core.Platform.IOpenGLComponent.CreateFromWindow(OpenTK.Core.Platform.WindowHandle) - name: CreateFromWindow - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_CreateFromWindow_OpenTK_Core_Platform_WindowHandle_ - - name: ( - - uid: OpenTK.Core.Platform.WindowHandle - name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html - - name: ) -- uid: OpenTK.Core.Platform.WindowHandle - commentId: T:OpenTK.Core.Platform.WindowHandle - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.WindowHandle.html +- uid: OpenTK.Platform.WindowHandle + commentId: T:OpenTK.Platform.WindowHandle + parent: OpenTK.Platform + href: OpenTK.Platform.WindowHandle.html name: WindowHandle nameWithType: WindowHandle - fullName: OpenTK.Core.Platform.WindowHandle + fullName: OpenTK.Platform.WindowHandle - uid: System.ArgumentNullException commentId: T:System.ArgumentNullException isExternal: true @@ -1380,34 +1287,34 @@ references: fullName: System.ArgumentNullException - uid: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.DestroyContext* commentId: Overload:OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.DestroyContext - href: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.html#OpenTK_Platform_Native_ANGLE_ANGLEOpenGLComponent_DestroyContext_OpenTK_Core_Platform_OpenGLContextHandle_ + href: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.html#OpenTK_Platform_Native_ANGLE_ANGLEOpenGLComponent_DestroyContext_OpenTK_Platform_OpenGLContextHandle_ name: DestroyContext nameWithType: ANGLEOpenGLComponent.DestroyContext fullName: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.DestroyContext -- uid: OpenTK.Core.Platform.IOpenGLComponent.DestroyContext(OpenTK.Core.Platform.OpenGLContextHandle) - commentId: M:OpenTK.Core.Platform.IOpenGLComponent.DestroyContext(OpenTK.Core.Platform.OpenGLContextHandle) - parent: OpenTK.Core.Platform.IOpenGLComponent - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_DestroyContext_OpenTK_Core_Platform_OpenGLContextHandle_ +- uid: OpenTK.Platform.IOpenGLComponent.DestroyContext(OpenTK.Platform.OpenGLContextHandle) + commentId: M:OpenTK.Platform.IOpenGLComponent.DestroyContext(OpenTK.Platform.OpenGLContextHandle) + parent: OpenTK.Platform.IOpenGLComponent + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_DestroyContext_OpenTK_Platform_OpenGLContextHandle_ name: DestroyContext(OpenGLContextHandle) nameWithType: IOpenGLComponent.DestroyContext(OpenGLContextHandle) - fullName: OpenTK.Core.Platform.IOpenGLComponent.DestroyContext(OpenTK.Core.Platform.OpenGLContextHandle) + fullName: OpenTK.Platform.IOpenGLComponent.DestroyContext(OpenTK.Platform.OpenGLContextHandle) spec.csharp: - - uid: OpenTK.Core.Platform.IOpenGLComponent.DestroyContext(OpenTK.Core.Platform.OpenGLContextHandle) + - uid: OpenTK.Platform.IOpenGLComponent.DestroyContext(OpenTK.Platform.OpenGLContextHandle) name: DestroyContext - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_DestroyContext_OpenTK_Core_Platform_OpenGLContextHandle_ + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_DestroyContext_OpenTK_Platform_OpenGLContextHandle_ - name: ( - - uid: OpenTK.Core.Platform.OpenGLContextHandle + - uid: OpenTK.Platform.OpenGLContextHandle name: OpenGLContextHandle - href: OpenTK.Core.Platform.OpenGLContextHandle.html + href: OpenTK.Platform.OpenGLContextHandle.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IOpenGLComponent.DestroyContext(OpenTK.Core.Platform.OpenGLContextHandle) + - uid: OpenTK.Platform.IOpenGLComponent.DestroyContext(OpenTK.Platform.OpenGLContextHandle) name: DestroyContext - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_DestroyContext_OpenTK_Core_Platform_OpenGLContextHandle_ + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_DestroyContext_OpenTK_Platform_OpenGLContextHandle_ - name: ( - - uid: OpenTK.Core.Platform.OpenGLContextHandle + - uid: OpenTK.Platform.OpenGLContextHandle name: OpenGLContextHandle - href: OpenTK.Core.Platform.OpenGLContextHandle.html + href: OpenTK.Platform.OpenGLContextHandle.html - name: ) - uid: OpenTK.IBindingsContext commentId: T:OpenTK.IBindingsContext @@ -1418,34 +1325,34 @@ references: fullName: OpenTK.IBindingsContext - uid: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.GetBindingsContext* commentId: Overload:OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.GetBindingsContext - href: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.html#OpenTK_Platform_Native_ANGLE_ANGLEOpenGLComponent_GetBindingsContext_OpenTK_Core_Platform_OpenGLContextHandle_ + href: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.html#OpenTK_Platform_Native_ANGLE_ANGLEOpenGLComponent_GetBindingsContext_OpenTK_Platform_OpenGLContextHandle_ name: GetBindingsContext nameWithType: ANGLEOpenGLComponent.GetBindingsContext fullName: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.GetBindingsContext -- uid: OpenTK.Core.Platform.IOpenGLComponent.GetBindingsContext(OpenTK.Core.Platform.OpenGLContextHandle) - commentId: M:OpenTK.Core.Platform.IOpenGLComponent.GetBindingsContext(OpenTK.Core.Platform.OpenGLContextHandle) - parent: OpenTK.Core.Platform.IOpenGLComponent - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_GetBindingsContext_OpenTK_Core_Platform_OpenGLContextHandle_ +- uid: OpenTK.Platform.IOpenGLComponent.GetBindingsContext(OpenTK.Platform.OpenGLContextHandle) + commentId: M:OpenTK.Platform.IOpenGLComponent.GetBindingsContext(OpenTK.Platform.OpenGLContextHandle) + parent: OpenTK.Platform.IOpenGLComponent + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_GetBindingsContext_OpenTK_Platform_OpenGLContextHandle_ name: GetBindingsContext(OpenGLContextHandle) nameWithType: IOpenGLComponent.GetBindingsContext(OpenGLContextHandle) - fullName: OpenTK.Core.Platform.IOpenGLComponent.GetBindingsContext(OpenTK.Core.Platform.OpenGLContextHandle) + fullName: OpenTK.Platform.IOpenGLComponent.GetBindingsContext(OpenTK.Platform.OpenGLContextHandle) spec.csharp: - - uid: OpenTK.Core.Platform.IOpenGLComponent.GetBindingsContext(OpenTK.Core.Platform.OpenGLContextHandle) + - uid: OpenTK.Platform.IOpenGLComponent.GetBindingsContext(OpenTK.Platform.OpenGLContextHandle) name: GetBindingsContext - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_GetBindingsContext_OpenTK_Core_Platform_OpenGLContextHandle_ + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_GetBindingsContext_OpenTK_Platform_OpenGLContextHandle_ - name: ( - - uid: OpenTK.Core.Platform.OpenGLContextHandle + - uid: OpenTK.Platform.OpenGLContextHandle name: OpenGLContextHandle - href: OpenTK.Core.Platform.OpenGLContextHandle.html + href: OpenTK.Platform.OpenGLContextHandle.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IOpenGLComponent.GetBindingsContext(OpenTK.Core.Platform.OpenGLContextHandle) + - uid: OpenTK.Platform.IOpenGLComponent.GetBindingsContext(OpenTK.Platform.OpenGLContextHandle) name: GetBindingsContext - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_GetBindingsContext_OpenTK_Core_Platform_OpenGLContextHandle_ + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_GetBindingsContext_OpenTK_Platform_OpenGLContextHandle_ - name: ( - - uid: OpenTK.Core.Platform.OpenGLContextHandle + - uid: OpenTK.Platform.OpenGLContextHandle name: OpenGLContextHandle - href: OpenTK.Core.Platform.OpenGLContextHandle.html + href: OpenTK.Platform.OpenGLContextHandle.html - name: ) - uid: OpenTK commentId: N:OpenTK @@ -1455,29 +1362,29 @@ references: fullName: OpenTK - uid: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.GetProcedureAddress* commentId: Overload:OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.GetProcedureAddress - href: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.html#OpenTK_Platform_Native_ANGLE_ANGLEOpenGLComponent_GetProcedureAddress_OpenTK_Core_Platform_OpenGLContextHandle_System_String_ + href: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.html#OpenTK_Platform_Native_ANGLE_ANGLEOpenGLComponent_GetProcedureAddress_OpenTK_Platform_OpenGLContextHandle_System_String_ name: GetProcedureAddress nameWithType: ANGLEOpenGLComponent.GetProcedureAddress fullName: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.GetProcedureAddress -- uid: OpenTK.Core.Platform.IOpenGLComponent.GetProcedureAddress(OpenTK.Core.Platform.OpenGLContextHandle,System.String) - commentId: M:OpenTK.Core.Platform.IOpenGLComponent.GetProcedureAddress(OpenTK.Core.Platform.OpenGLContextHandle,System.String) - parent: OpenTK.Core.Platform.IOpenGLComponent +- uid: OpenTK.Platform.IOpenGLComponent.GetProcedureAddress(OpenTK.Platform.OpenGLContextHandle,System.String) + commentId: M:OpenTK.Platform.IOpenGLComponent.GetProcedureAddress(OpenTK.Platform.OpenGLContextHandle,System.String) + parent: OpenTK.Platform.IOpenGLComponent isExternal: true - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_GetProcedureAddress_OpenTK_Core_Platform_OpenGLContextHandle_System_String_ + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_GetProcedureAddress_OpenTK_Platform_OpenGLContextHandle_System_String_ name: GetProcedureAddress(OpenGLContextHandle, string) nameWithType: IOpenGLComponent.GetProcedureAddress(OpenGLContextHandle, string) - fullName: OpenTK.Core.Platform.IOpenGLComponent.GetProcedureAddress(OpenTK.Core.Platform.OpenGLContextHandle, string) + fullName: OpenTK.Platform.IOpenGLComponent.GetProcedureAddress(OpenTK.Platform.OpenGLContextHandle, string) nameWithType.vb: IOpenGLComponent.GetProcedureAddress(OpenGLContextHandle, String) - fullName.vb: OpenTK.Core.Platform.IOpenGLComponent.GetProcedureAddress(OpenTK.Core.Platform.OpenGLContextHandle, String) + fullName.vb: OpenTK.Platform.IOpenGLComponent.GetProcedureAddress(OpenTK.Platform.OpenGLContextHandle, String) name.vb: GetProcedureAddress(OpenGLContextHandle, String) spec.csharp: - - uid: OpenTK.Core.Platform.IOpenGLComponent.GetProcedureAddress(OpenTK.Core.Platform.OpenGLContextHandle,System.String) + - uid: OpenTK.Platform.IOpenGLComponent.GetProcedureAddress(OpenTK.Platform.OpenGLContextHandle,System.String) name: GetProcedureAddress - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_GetProcedureAddress_OpenTK_Core_Platform_OpenGLContextHandle_System_String_ + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_GetProcedureAddress_OpenTK_Platform_OpenGLContextHandle_System_String_ - name: ( - - uid: OpenTK.Core.Platform.OpenGLContextHandle + - uid: OpenTK.Platform.OpenGLContextHandle name: OpenGLContextHandle - href: OpenTK.Core.Platform.OpenGLContextHandle.html + href: OpenTK.Platform.OpenGLContextHandle.html - name: ',' - name: " " - uid: System.String @@ -1486,13 +1393,13 @@ references: href: https://learn.microsoft.com/dotnet/api/system.string - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IOpenGLComponent.GetProcedureAddress(OpenTK.Core.Platform.OpenGLContextHandle,System.String) + - uid: OpenTK.Platform.IOpenGLComponent.GetProcedureAddress(OpenTK.Platform.OpenGLContextHandle,System.String) name: GetProcedureAddress - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_GetProcedureAddress_OpenTK_Core_Platform_OpenGLContextHandle_System_String_ + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_GetProcedureAddress_OpenTK_Platform_OpenGLContextHandle_System_String_ - name: ( - - uid: OpenTK.Core.Platform.OpenGLContextHandle + - uid: OpenTK.Platform.OpenGLContextHandle name: OpenGLContextHandle - href: OpenTK.Core.Platform.OpenGLContextHandle.html + href: OpenTK.Platform.OpenGLContextHandle.html - name: ',' - name: " " - uid: System.String @@ -1517,86 +1424,86 @@ references: name: GetCurrentContext nameWithType: ANGLEOpenGLComponent.GetCurrentContext fullName: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.GetCurrentContext -- uid: OpenTK.Core.Platform.IOpenGLComponent.GetCurrentContext - commentId: M:OpenTK.Core.Platform.IOpenGLComponent.GetCurrentContext - parent: OpenTK.Core.Platform.IOpenGLComponent - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_GetCurrentContext +- uid: OpenTK.Platform.IOpenGLComponent.GetCurrentContext + commentId: M:OpenTK.Platform.IOpenGLComponent.GetCurrentContext + parent: OpenTK.Platform.IOpenGLComponent + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_GetCurrentContext name: GetCurrentContext() nameWithType: IOpenGLComponent.GetCurrentContext() - fullName: OpenTK.Core.Platform.IOpenGLComponent.GetCurrentContext() + fullName: OpenTK.Platform.IOpenGLComponent.GetCurrentContext() spec.csharp: - - uid: OpenTK.Core.Platform.IOpenGLComponent.GetCurrentContext + - uid: OpenTK.Platform.IOpenGLComponent.GetCurrentContext name: GetCurrentContext - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_GetCurrentContext + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_GetCurrentContext - name: ( - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IOpenGLComponent.GetCurrentContext + - uid: OpenTK.Platform.IOpenGLComponent.GetCurrentContext name: GetCurrentContext - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_GetCurrentContext + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_GetCurrentContext - name: ( - name: ) - uid: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.SetCurrentContext* commentId: Overload:OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.SetCurrentContext - href: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.html#OpenTK_Platform_Native_ANGLE_ANGLEOpenGLComponent_SetCurrentContext_OpenTK_Core_Platform_OpenGLContextHandle_ + href: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.html#OpenTK_Platform_Native_ANGLE_ANGLEOpenGLComponent_SetCurrentContext_OpenTK_Platform_OpenGLContextHandle_ name: SetCurrentContext nameWithType: ANGLEOpenGLComponent.SetCurrentContext fullName: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.SetCurrentContext -- uid: OpenTK.Core.Platform.IOpenGLComponent.SetCurrentContext(OpenTK.Core.Platform.OpenGLContextHandle) - commentId: M:OpenTK.Core.Platform.IOpenGLComponent.SetCurrentContext(OpenTK.Core.Platform.OpenGLContextHandle) - parent: OpenTK.Core.Platform.IOpenGLComponent - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_SetCurrentContext_OpenTK_Core_Platform_OpenGLContextHandle_ +- uid: OpenTK.Platform.IOpenGLComponent.SetCurrentContext(OpenTK.Platform.OpenGLContextHandle) + commentId: M:OpenTK.Platform.IOpenGLComponent.SetCurrentContext(OpenTK.Platform.OpenGLContextHandle) + parent: OpenTK.Platform.IOpenGLComponent + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_SetCurrentContext_OpenTK_Platform_OpenGLContextHandle_ name: SetCurrentContext(OpenGLContextHandle) nameWithType: IOpenGLComponent.SetCurrentContext(OpenGLContextHandle) - fullName: OpenTK.Core.Platform.IOpenGLComponent.SetCurrentContext(OpenTK.Core.Platform.OpenGLContextHandle) + fullName: OpenTK.Platform.IOpenGLComponent.SetCurrentContext(OpenTK.Platform.OpenGLContextHandle) spec.csharp: - - uid: OpenTK.Core.Platform.IOpenGLComponent.SetCurrentContext(OpenTK.Core.Platform.OpenGLContextHandle) + - uid: OpenTK.Platform.IOpenGLComponent.SetCurrentContext(OpenTK.Platform.OpenGLContextHandle) name: SetCurrentContext - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_SetCurrentContext_OpenTK_Core_Platform_OpenGLContextHandle_ + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_SetCurrentContext_OpenTK_Platform_OpenGLContextHandle_ - name: ( - - uid: OpenTK.Core.Platform.OpenGLContextHandle + - uid: OpenTK.Platform.OpenGLContextHandle name: OpenGLContextHandle - href: OpenTK.Core.Platform.OpenGLContextHandle.html + href: OpenTK.Platform.OpenGLContextHandle.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IOpenGLComponent.SetCurrentContext(OpenTK.Core.Platform.OpenGLContextHandle) + - uid: OpenTK.Platform.IOpenGLComponent.SetCurrentContext(OpenTK.Platform.OpenGLContextHandle) name: SetCurrentContext - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_SetCurrentContext_OpenTK_Core_Platform_OpenGLContextHandle_ + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_SetCurrentContext_OpenTK_Platform_OpenGLContextHandle_ - name: ( - - uid: OpenTK.Core.Platform.OpenGLContextHandle + - uid: OpenTK.Platform.OpenGLContextHandle name: OpenGLContextHandle - href: OpenTK.Core.Platform.OpenGLContextHandle.html + href: OpenTK.Platform.OpenGLContextHandle.html - name: ) - uid: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.GetSharedContext* commentId: Overload:OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.GetSharedContext - href: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.html#OpenTK_Platform_Native_ANGLE_ANGLEOpenGLComponent_GetSharedContext_OpenTK_Core_Platform_OpenGLContextHandle_ + href: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.html#OpenTK_Platform_Native_ANGLE_ANGLEOpenGLComponent_GetSharedContext_OpenTK_Platform_OpenGLContextHandle_ name: GetSharedContext nameWithType: ANGLEOpenGLComponent.GetSharedContext fullName: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.GetSharedContext -- uid: OpenTK.Core.Platform.IOpenGLComponent.GetSharedContext(OpenTK.Core.Platform.OpenGLContextHandle) - commentId: M:OpenTK.Core.Platform.IOpenGLComponent.GetSharedContext(OpenTK.Core.Platform.OpenGLContextHandle) - parent: OpenTK.Core.Platform.IOpenGLComponent - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_GetSharedContext_OpenTK_Core_Platform_OpenGLContextHandle_ +- uid: OpenTK.Platform.IOpenGLComponent.GetSharedContext(OpenTK.Platform.OpenGLContextHandle) + commentId: M:OpenTK.Platform.IOpenGLComponent.GetSharedContext(OpenTK.Platform.OpenGLContextHandle) + parent: OpenTK.Platform.IOpenGLComponent + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_GetSharedContext_OpenTK_Platform_OpenGLContextHandle_ name: GetSharedContext(OpenGLContextHandle) nameWithType: IOpenGLComponent.GetSharedContext(OpenGLContextHandle) - fullName: OpenTK.Core.Platform.IOpenGLComponent.GetSharedContext(OpenTK.Core.Platform.OpenGLContextHandle) + fullName: OpenTK.Platform.IOpenGLComponent.GetSharedContext(OpenTK.Platform.OpenGLContextHandle) spec.csharp: - - uid: OpenTK.Core.Platform.IOpenGLComponent.GetSharedContext(OpenTK.Core.Platform.OpenGLContextHandle) + - uid: OpenTK.Platform.IOpenGLComponent.GetSharedContext(OpenTK.Platform.OpenGLContextHandle) name: GetSharedContext - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_GetSharedContext_OpenTK_Core_Platform_OpenGLContextHandle_ + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_GetSharedContext_OpenTK_Platform_OpenGLContextHandle_ - name: ( - - uid: OpenTK.Core.Platform.OpenGLContextHandle + - uid: OpenTK.Platform.OpenGLContextHandle name: OpenGLContextHandle - href: OpenTK.Core.Platform.OpenGLContextHandle.html + href: OpenTK.Platform.OpenGLContextHandle.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IOpenGLComponent.GetSharedContext(OpenTK.Core.Platform.OpenGLContextHandle) + - uid: OpenTK.Platform.IOpenGLComponent.GetSharedContext(OpenTK.Platform.OpenGLContextHandle) name: GetSharedContext - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_GetSharedContext_OpenTK_Core_Platform_OpenGLContextHandle_ + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_GetSharedContext_OpenTK_Platform_OpenGLContextHandle_ - name: ( - - uid: OpenTK.Core.Platform.OpenGLContextHandle + - uid: OpenTK.Platform.OpenGLContextHandle name: OpenGLContextHandle - href: OpenTK.Core.Platform.OpenGLContextHandle.html + href: OpenTK.Platform.OpenGLContextHandle.html - name: ) - uid: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.SetSwapInterval* commentId: Overload:OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.SetSwapInterval @@ -1604,21 +1511,21 @@ references: name: SetSwapInterval nameWithType: ANGLEOpenGLComponent.SetSwapInterval fullName: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.SetSwapInterval -- uid: OpenTK.Core.Platform.IOpenGLComponent.SetSwapInterval(System.Int32) - commentId: M:OpenTK.Core.Platform.IOpenGLComponent.SetSwapInterval(System.Int32) - parent: OpenTK.Core.Platform.IOpenGLComponent +- uid: OpenTK.Platform.IOpenGLComponent.SetSwapInterval(System.Int32) + commentId: M:OpenTK.Platform.IOpenGLComponent.SetSwapInterval(System.Int32) + parent: OpenTK.Platform.IOpenGLComponent isExternal: true - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_SetSwapInterval_System_Int32_ + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_SetSwapInterval_System_Int32_ name: SetSwapInterval(int) nameWithType: IOpenGLComponent.SetSwapInterval(int) - fullName: OpenTK.Core.Platform.IOpenGLComponent.SetSwapInterval(int) + fullName: OpenTK.Platform.IOpenGLComponent.SetSwapInterval(int) nameWithType.vb: IOpenGLComponent.SetSwapInterval(Integer) - fullName.vb: OpenTK.Core.Platform.IOpenGLComponent.SetSwapInterval(Integer) + fullName.vb: OpenTK.Platform.IOpenGLComponent.SetSwapInterval(Integer) name.vb: SetSwapInterval(Integer) spec.csharp: - - uid: OpenTK.Core.Platform.IOpenGLComponent.SetSwapInterval(System.Int32) + - uid: OpenTK.Platform.IOpenGLComponent.SetSwapInterval(System.Int32) name: SetSwapInterval - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_SetSwapInterval_System_Int32_ + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_SetSwapInterval_System_Int32_ - name: ( - uid: System.Int32 name: int @@ -1626,9 +1533,9 @@ references: href: https://learn.microsoft.com/dotnet/api/system.int32 - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IOpenGLComponent.SetSwapInterval(System.Int32) + - uid: OpenTK.Platform.IOpenGLComponent.SetSwapInterval(System.Int32) name: SetSwapInterval - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_SetSwapInterval_System_Int32_ + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_SetSwapInterval_System_Int32_ - name: ( - uid: System.Int32 name: Integer @@ -1652,55 +1559,55 @@ references: name: GetSwapInterval nameWithType: ANGLEOpenGLComponent.GetSwapInterval fullName: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.GetSwapInterval -- uid: OpenTK.Core.Platform.IOpenGLComponent.GetSwapInterval - commentId: M:OpenTK.Core.Platform.IOpenGLComponent.GetSwapInterval - parent: OpenTK.Core.Platform.IOpenGLComponent - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_GetSwapInterval +- uid: OpenTK.Platform.IOpenGLComponent.GetSwapInterval + commentId: M:OpenTK.Platform.IOpenGLComponent.GetSwapInterval + parent: OpenTK.Platform.IOpenGLComponent + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_GetSwapInterval name: GetSwapInterval() nameWithType: IOpenGLComponent.GetSwapInterval() - fullName: OpenTK.Core.Platform.IOpenGLComponent.GetSwapInterval() + fullName: OpenTK.Platform.IOpenGLComponent.GetSwapInterval() spec.csharp: - - uid: OpenTK.Core.Platform.IOpenGLComponent.GetSwapInterval + - uid: OpenTK.Platform.IOpenGLComponent.GetSwapInterval name: GetSwapInterval - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_GetSwapInterval + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_GetSwapInterval - name: ( - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IOpenGLComponent.GetSwapInterval + - uid: OpenTK.Platform.IOpenGLComponent.GetSwapInterval name: GetSwapInterval - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_GetSwapInterval + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_GetSwapInterval - name: ( - name: ) - uid: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.SwapBuffers* commentId: Overload:OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.SwapBuffers - href: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.html#OpenTK_Platform_Native_ANGLE_ANGLEOpenGLComponent_SwapBuffers_OpenTK_Core_Platform_OpenGLContextHandle_ + href: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.html#OpenTK_Platform_Native_ANGLE_ANGLEOpenGLComponent_SwapBuffers_OpenTK_Platform_OpenGLContextHandle_ name: SwapBuffers nameWithType: ANGLEOpenGLComponent.SwapBuffers fullName: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.SwapBuffers -- uid: OpenTK.Core.Platform.IOpenGLComponent.SwapBuffers(OpenTK.Core.Platform.OpenGLContextHandle) - commentId: M:OpenTK.Core.Platform.IOpenGLComponent.SwapBuffers(OpenTK.Core.Platform.OpenGLContextHandle) - parent: OpenTK.Core.Platform.IOpenGLComponent - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_SwapBuffers_OpenTK_Core_Platform_OpenGLContextHandle_ +- uid: OpenTK.Platform.IOpenGLComponent.SwapBuffers(OpenTK.Platform.OpenGLContextHandle) + commentId: M:OpenTK.Platform.IOpenGLComponent.SwapBuffers(OpenTK.Platform.OpenGLContextHandle) + parent: OpenTK.Platform.IOpenGLComponent + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_SwapBuffers_OpenTK_Platform_OpenGLContextHandle_ name: SwapBuffers(OpenGLContextHandle) nameWithType: IOpenGLComponent.SwapBuffers(OpenGLContextHandle) - fullName: OpenTK.Core.Platform.IOpenGLComponent.SwapBuffers(OpenTK.Core.Platform.OpenGLContextHandle) + fullName: OpenTK.Platform.IOpenGLComponent.SwapBuffers(OpenTK.Platform.OpenGLContextHandle) spec.csharp: - - uid: OpenTK.Core.Platform.IOpenGLComponent.SwapBuffers(OpenTK.Core.Platform.OpenGLContextHandle) + - uid: OpenTK.Platform.IOpenGLComponent.SwapBuffers(OpenTK.Platform.OpenGLContextHandle) name: SwapBuffers - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_SwapBuffers_OpenTK_Core_Platform_OpenGLContextHandle_ + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_SwapBuffers_OpenTK_Platform_OpenGLContextHandle_ - name: ( - - uid: OpenTK.Core.Platform.OpenGLContextHandle + - uid: OpenTK.Platform.OpenGLContextHandle name: OpenGLContextHandle - href: OpenTK.Core.Platform.OpenGLContextHandle.html + href: OpenTK.Platform.OpenGLContextHandle.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IOpenGLComponent.SwapBuffers(OpenTK.Core.Platform.OpenGLContextHandle) + - uid: OpenTK.Platform.IOpenGLComponent.SwapBuffers(OpenTK.Platform.OpenGLContextHandle) name: SwapBuffers - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_SwapBuffers_OpenTK_Core_Platform_OpenGLContextHandle_ + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_SwapBuffers_OpenTK_Platform_OpenGLContextHandle_ - name: ( - - uid: OpenTK.Core.Platform.OpenGLContextHandle + - uid: OpenTK.Platform.OpenGLContextHandle name: OpenGLContextHandle - href: OpenTK.Core.Platform.OpenGLContextHandle.html + href: OpenTK.Platform.OpenGLContextHandle.html - name: ) - uid: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.GetEglDisplay* commentId: Overload:OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.GetEglDisplay @@ -1710,13 +1617,13 @@ references: fullName: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.GetEglDisplay - uid: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.GetEglContext* commentId: Overload:OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.GetEglContext - href: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.html#OpenTK_Platform_Native_ANGLE_ANGLEOpenGLComponent_GetEglContext_OpenTK_Core_Platform_OpenGLContextHandle_ + href: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.html#OpenTK_Platform_Native_ANGLE_ANGLEOpenGLComponent_GetEglContext_OpenTK_Platform_OpenGLContextHandle_ name: GetEglContext nameWithType: ANGLEOpenGLComponent.GetEglContext fullName: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.GetEglContext - uid: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.GetEglSurface* commentId: Overload:OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.GetEglSurface - href: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.html#OpenTK_Platform_Native_ANGLE_ANGLEOpenGLComponent_GetEglSurface_OpenTK_Core_Platform_OpenGLContextHandle_ + href: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.html#OpenTK_Platform_Native_ANGLE_ANGLEOpenGLComponent_GetEglSurface_OpenTK_Platform_OpenGLContextHandle_ name: GetEglSurface nameWithType: ANGLEOpenGLComponent.GetEglSurface fullName: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.GetEglSurface diff --git a/api/OpenTK.Platform.Native.ANGLE.yml b/api/OpenTK.Platform.Native.ANGLE.yml index 3050c77c..bef03a8b 100644 --- a/api/OpenTK.Platform.Native.ANGLE.yml +++ b/api/OpenTK.Platform.Native.ANGLE.yml @@ -13,7 +13,7 @@ items: fullName: OpenTK.Platform.Native.ANGLE type: Namespace assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform references: - uid: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent commentId: T:OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent diff --git a/api/OpenTK.Platform.Native.Backend.yml b/api/OpenTK.Platform.Native.Backend.yml index 4199a22b..877a317a 100644 --- a/api/OpenTK.Platform.Native.Backend.yml +++ b/api/OpenTK.Platform.Native.Backend.yml @@ -18,15 +18,11 @@ items: fullName: OpenTK.Platform.Native.Backend type: Enum source: - remote: - path: src/OpenTK.Platform.Native/PlatformComponents.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Backend - path: opentk/src/OpenTK.Platform.Native/PlatformComponents.cs - startLine: 12 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\PlatformComponents.cs + startLine: 11 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native syntax: content: public enum Backend @@ -43,15 +39,11 @@ items: fullName: OpenTK.Platform.Native.Backend.None type: Field source: - remote: - path: src/OpenTK.Platform.Native/PlatformComponents.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: None - path: opentk/src/OpenTK.Platform.Native/PlatformComponents.cs - startLine: 14 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\PlatformComponents.cs + startLine: 13 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native syntax: content: None = 0 @@ -69,15 +61,11 @@ items: fullName: OpenTK.Platform.Native.Backend.Win32 type: Field source: - remote: - path: src/OpenTK.Platform.Native/PlatformComponents.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Win32 - path: opentk/src/OpenTK.Platform.Native/PlatformComponents.cs - startLine: 15 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\PlatformComponents.cs + startLine: 14 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native syntax: content: Win32 = 1 @@ -95,15 +83,11 @@ items: fullName: OpenTK.Platform.Native.Backend.macOS type: Field source: - remote: - path: src/OpenTK.Platform.Native/PlatformComponents.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: macOS - path: opentk/src/OpenTK.Platform.Native/PlatformComponents.cs - startLine: 16 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\PlatformComponents.cs + startLine: 15 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native syntax: content: macOS = 2 @@ -121,15 +105,11 @@ items: fullName: OpenTK.Platform.Native.Backend.X11 type: Field source: - remote: - path: src/OpenTK.Platform.Native/PlatformComponents.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: X11 - path: opentk/src/OpenTK.Platform.Native/PlatformComponents.cs - startLine: 17 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\PlatformComponents.cs + startLine: 16 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native syntax: content: X11 = 3 @@ -147,15 +127,11 @@ items: fullName: OpenTK.Platform.Native.Backend.SDL type: Field source: - remote: - path: src/OpenTK.Platform.Native/PlatformComponents.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SDL - path: opentk/src/OpenTK.Platform.Native/PlatformComponents.cs - startLine: 18 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\PlatformComponents.cs + startLine: 17 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native syntax: content: SDL = 4 diff --git a/api/OpenTK.Platform.Native.PlatformComponents.yml b/api/OpenTK.Platform.Native.PlatformComponents.yml index e0ae4192..4cc67bd2 100644 --- a/api/OpenTK.Platform.Native.PlatformComponents.yml +++ b/api/OpenTK.Platform.Native.PlatformComponents.yml @@ -16,6 +16,7 @@ items: - OpenTK.Platform.Native.PlatformComponents.CreateOpenGLComponent - OpenTK.Platform.Native.PlatformComponents.CreateShellComponent - OpenTK.Platform.Native.PlatformComponents.CreateSurfaceComponent + - OpenTK.Platform.Native.PlatformComponents.CreateVulkanComponent - OpenTK.Platform.Native.PlatformComponents.CreateWindowComponent - OpenTK.Platform.Native.PlatformComponents.GetBackend - OpenTK.Platform.Native.PlatformComponents.PreferANGLE @@ -28,15 +29,11 @@ items: fullName: OpenTK.Platform.Native.PlatformComponents type: Class source: - remote: - path: src/OpenTK.Platform.Native/PlatformComponents.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: PlatformComponents - path: opentk/src/OpenTK.Platform.Native/PlatformComponents.cs - startLine: 24 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\PlatformComponents.cs + startLine: 23 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native summary: Used to create platform specific version of components. example: [] @@ -65,15 +62,11 @@ items: fullName: OpenTK.Platform.Native.PlatformComponents.PreferSDL2 type: Property source: - remote: - path: src/OpenTK.Platform.Native/PlatformComponents.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: PreferSDL2 - path: opentk/src/OpenTK.Platform.Native/PlatformComponents.cs - startLine: 30 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\PlatformComponents.cs + startLine: 29 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native summary: >- Set this to true to prefer loading the SDL backend on all platforms. @@ -99,15 +92,11 @@ items: fullName: OpenTK.Platform.Native.PlatformComponents.PreferANGLE type: Property source: - remote: - path: src/OpenTK.Platform.Native/PlatformComponents.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: PreferANGLE - path: opentk/src/OpenTK.Platform.Native/PlatformComponents.cs - startLine: 33 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\PlatformComponents.cs + startLine: 32 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native syntax: content: public static bool PreferANGLE { get; set; } @@ -128,15 +117,11 @@ items: fullName: OpenTK.Platform.Native.PlatformComponents.GetBackend() type: Method source: - remote: - path: src/OpenTK.Platform.Native/PlatformComponents.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetBackend - path: opentk/src/OpenTK.Platform.Native/PlatformComponents.cs - startLine: 107 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\PlatformComponents.cs + startLine: 110 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native summary: Returns the backend that will be used to create components. example: [] @@ -159,22 +144,18 @@ items: fullName: OpenTK.Platform.Native.PlatformComponents.CreateWindowComponent() type: Method source: - remote: - path: src/OpenTK.Platform.Native/PlatformComponents.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateWindowComponent - path: opentk/src/OpenTK.Platform.Native/PlatformComponents.cs - startLine: 189 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\PlatformComponents.cs + startLine: 192 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native summary: Creates a platform specific component. example: [] syntax: content: public static IWindowComponent CreateWindowComponent() return: - type: OpenTK.Core.Platform.IWindowComponent + type: OpenTK.Platform.IWindowComponent description: The platform specific component content.vb: Public Shared Function CreateWindowComponent() As IWindowComponent overload: OpenTK.Platform.Native.PlatformComponents.CreateWindowComponent* @@ -190,22 +171,18 @@ items: fullName: OpenTK.Platform.Native.PlatformComponents.CreateOpenGLComponent() type: Method source: - remote: - path: src/OpenTK.Platform.Native/PlatformComponents.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateOpenGLComponent - path: opentk/src/OpenTK.Platform.Native/PlatformComponents.cs - startLine: 195 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\PlatformComponents.cs + startLine: 198 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native summary: Creates a platform specific component. example: [] syntax: content: public static IOpenGLComponent CreateOpenGLComponent() return: - type: OpenTK.Core.Platform.IOpenGLComponent + type: OpenTK.Platform.IOpenGLComponent description: The platform specific component content.vb: Public Shared Function CreateOpenGLComponent() As IOpenGLComponent overload: OpenTK.Platform.Native.PlatformComponents.CreateOpenGLComponent* @@ -221,22 +198,18 @@ items: fullName: OpenTK.Platform.Native.PlatformComponents.CreateDisplayComponent() type: Method source: - remote: - path: src/OpenTK.Platform.Native/PlatformComponents.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateDisplayComponent - path: opentk/src/OpenTK.Platform.Native/PlatformComponents.cs - startLine: 210 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\PlatformComponents.cs + startLine: 213 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native summary: Creates a platform specific component. example: [] syntax: content: public static IDisplayComponent CreateDisplayComponent() return: - type: OpenTK.Core.Platform.IDisplayComponent + type: OpenTK.Platform.IDisplayComponent description: The platform specific component content.vb: Public Shared Function CreateDisplayComponent() As IDisplayComponent overload: OpenTK.Platform.Native.PlatformComponents.CreateDisplayComponent* @@ -252,22 +225,18 @@ items: fullName: OpenTK.Platform.Native.PlatformComponents.CreateShellComponent() type: Method source: - remote: - path: src/OpenTK.Platform.Native/PlatformComponents.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateShellComponent - path: opentk/src/OpenTK.Platform.Native/PlatformComponents.cs - startLine: 216 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\PlatformComponents.cs + startLine: 219 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native summary: Creates a platform specific component. example: [] syntax: content: public static IShellComponent CreateShellComponent() return: - type: OpenTK.Core.Platform.IShellComponent + type: OpenTK.Platform.IShellComponent description: The platform specific component content.vb: Public Shared Function CreateShellComponent() As IShellComponent overload: OpenTK.Platform.Native.PlatformComponents.CreateShellComponent* @@ -283,22 +252,18 @@ items: fullName: OpenTK.Platform.Native.PlatformComponents.CreateMouseComponent() type: Method source: - remote: - path: src/OpenTK.Platform.Native/PlatformComponents.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateMouseComponent - path: opentk/src/OpenTK.Platform.Native/PlatformComponents.cs - startLine: 222 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\PlatformComponents.cs + startLine: 225 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native summary: Creates a platform specific component. example: [] syntax: content: public static IMouseComponent CreateMouseComponent() return: - type: OpenTK.Core.Platform.IMouseComponent + type: OpenTK.Platform.IMouseComponent description: The platform specific component content.vb: Public Shared Function CreateMouseComponent() As IMouseComponent overload: OpenTK.Platform.Native.PlatformComponents.CreateMouseComponent* @@ -314,22 +279,18 @@ items: fullName: OpenTK.Platform.Native.PlatformComponents.CreateKeyboardComponent() type: Method source: - remote: - path: src/OpenTK.Platform.Native/PlatformComponents.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateKeyboardComponent - path: opentk/src/OpenTK.Platform.Native/PlatformComponents.cs - startLine: 228 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\PlatformComponents.cs + startLine: 231 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native summary: Creates a platform specific component. example: [] syntax: content: public static IKeyboardComponent CreateKeyboardComponent() return: - type: OpenTK.Core.Platform.IKeyboardComponent + type: OpenTK.Platform.IKeyboardComponent description: The platform specific component content.vb: Public Shared Function CreateKeyboardComponent() As IKeyboardComponent overload: OpenTK.Platform.Native.PlatformComponents.CreateKeyboardComponent* @@ -345,22 +306,18 @@ items: fullName: OpenTK.Platform.Native.PlatformComponents.CreateCursorComponent() type: Method source: - remote: - path: src/OpenTK.Platform.Native/PlatformComponents.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateCursorComponent - path: opentk/src/OpenTK.Platform.Native/PlatformComponents.cs - startLine: 234 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\PlatformComponents.cs + startLine: 237 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native summary: Creates a platform specific component. example: [] syntax: content: public static ICursorComponent CreateCursorComponent() return: - type: OpenTK.Core.Platform.ICursorComponent + type: OpenTK.Platform.ICursorComponent description: The platform specific component content.vb: Public Shared Function CreateCursorComponent() As ICursorComponent overload: OpenTK.Platform.Native.PlatformComponents.CreateCursorComponent* @@ -376,22 +333,18 @@ items: fullName: OpenTK.Platform.Native.PlatformComponents.CreateIconComponent() type: Method source: - remote: - path: src/OpenTK.Platform.Native/PlatformComponents.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateIconComponent - path: opentk/src/OpenTK.Platform.Native/PlatformComponents.cs - startLine: 240 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\PlatformComponents.cs + startLine: 243 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native summary: Creates a platform specific component. example: [] syntax: content: public static IIconComponent CreateIconComponent() return: - type: OpenTK.Core.Platform.IIconComponent + type: OpenTK.Platform.IIconComponent description: The platform specific component content.vb: Public Shared Function CreateIconComponent() As IIconComponent overload: OpenTK.Platform.Native.PlatformComponents.CreateIconComponent* @@ -407,22 +360,18 @@ items: fullName: OpenTK.Platform.Native.PlatformComponents.CreateClipboardComponent() type: Method source: - remote: - path: src/OpenTK.Platform.Native/PlatformComponents.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateClipboardComponent - path: opentk/src/OpenTK.Platform.Native/PlatformComponents.cs - startLine: 246 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\PlatformComponents.cs + startLine: 249 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native summary: Creates a platform specific component. example: [] syntax: content: public static IClipboardComponent CreateClipboardComponent() return: - type: OpenTK.Core.Platform.IClipboardComponent + type: OpenTK.Platform.IClipboardComponent description: The platform specific component content.vb: Public Shared Function CreateClipboardComponent() As IClipboardComponent overload: OpenTK.Platform.Native.PlatformComponents.CreateClipboardComponent* @@ -438,22 +387,18 @@ items: fullName: OpenTK.Platform.Native.PlatformComponents.CreateSurfaceComponent() type: Method source: - remote: - path: src/OpenTK.Platform.Native/PlatformComponents.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateSurfaceComponent - path: opentk/src/OpenTK.Platform.Native/PlatformComponents.cs - startLine: 252 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\PlatformComponents.cs + startLine: 255 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native summary: Creates a platform specific component. example: [] syntax: content: public static ISurfaceComponent CreateSurfaceComponent() return: - type: OpenTK.Core.Platform.ISurfaceComponent + type: OpenTK.Platform.ISurfaceComponent description: The platform specific component content.vb: Public Shared Function CreateSurfaceComponent() As ISurfaceComponent overload: OpenTK.Platform.Native.PlatformComponents.CreateSurfaceComponent* @@ -469,22 +414,18 @@ items: fullName: OpenTK.Platform.Native.PlatformComponents.CreateJoystickComponent() type: Method source: - remote: - path: src/OpenTK.Platform.Native/PlatformComponents.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateJoystickComponent - path: opentk/src/OpenTK.Platform.Native/PlatformComponents.cs - startLine: 258 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\PlatformComponents.cs + startLine: 261 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native summary: Creates a platform specific component. example: [] syntax: content: public static IJoystickComponent CreateJoystickComponent() return: - type: OpenTK.Core.Platform.IJoystickComponent + type: OpenTK.Platform.IJoystickComponent description: The platform specific component content.vb: Public Shared Function CreateJoystickComponent() As IJoystickComponent overload: OpenTK.Platform.Native.PlatformComponents.CreateJoystickComponent* @@ -500,25 +441,48 @@ items: fullName: OpenTK.Platform.Native.PlatformComponents.CreateDialogComponent() type: Method source: - remote: - path: src/OpenTK.Platform.Native/PlatformComponents.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateDialogComponent - path: opentk/src/OpenTK.Platform.Native/PlatformComponents.cs - startLine: 264 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\PlatformComponents.cs + startLine: 267 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native summary: Creates a platform specific component. example: [] syntax: content: public static IDialogComponent CreateDialogComponent() return: - type: OpenTK.Core.Platform.IDialogComponent + type: OpenTK.Platform.IDialogComponent description: The platform specific component content.vb: Public Shared Function CreateDialogComponent() As IDialogComponent overload: OpenTK.Platform.Native.PlatformComponents.CreateDialogComponent* +- uid: OpenTK.Platform.Native.PlatformComponents.CreateVulkanComponent + commentId: M:OpenTK.Platform.Native.PlatformComponents.CreateVulkanComponent + id: CreateVulkanComponent + parent: OpenTK.Platform.Native.PlatformComponents + langs: + - csharp + - vb + name: CreateVulkanComponent() + nameWithType: PlatformComponents.CreateVulkanComponent() + fullName: OpenTK.Platform.Native.PlatformComponents.CreateVulkanComponent() + type: Method + source: + id: CreateVulkanComponent + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\PlatformComponents.cs + startLine: 273 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform.Native + summary: Creates a platform specific component. + example: [] + syntax: + content: public static IVulkanComponent CreateVulkanComponent() + return: + type: OpenTK.Platform.IVulkanComponent + description: The platform specific component + content.vb: Public Shared Function CreateVulkanComponent() As IVulkanComponent + overload: OpenTK.Platform.Native.PlatformComponents.CreateVulkanComponent* references: - uid: OpenTK.Platform.Native commentId: N:OpenTK.Platform.Native @@ -829,183 +793,188 @@ references: name: CreateWindowComponent nameWithType: PlatformComponents.CreateWindowComponent fullName: OpenTK.Platform.Native.PlatformComponents.CreateWindowComponent -- uid: OpenTK.Core.Platform.IWindowComponent - commentId: T:OpenTK.Core.Platform.IWindowComponent - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.IWindowComponent.html +- uid: OpenTK.Platform.IWindowComponent + commentId: T:OpenTK.Platform.IWindowComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IWindowComponent.html name: IWindowComponent nameWithType: IWindowComponent - fullName: OpenTK.Core.Platform.IWindowComponent -- uid: OpenTK.Core.Platform - commentId: N:OpenTK.Core.Platform + fullName: OpenTK.Platform.IWindowComponent +- uid: OpenTK.Platform + commentId: N:OpenTK.Platform href: OpenTK.html - name: OpenTK.Core.Platform - nameWithType: OpenTK.Core.Platform - fullName: OpenTK.Core.Platform + name: OpenTK.Platform + nameWithType: OpenTK.Platform + fullName: OpenTK.Platform spec.csharp: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html spec.vb: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html - uid: OpenTK.Platform.Native.PlatformComponents.CreateOpenGLComponent* commentId: Overload:OpenTK.Platform.Native.PlatformComponents.CreateOpenGLComponent href: OpenTK.Platform.Native.PlatformComponents.html#OpenTK_Platform_Native_PlatformComponents_CreateOpenGLComponent name: CreateOpenGLComponent nameWithType: PlatformComponents.CreateOpenGLComponent fullName: OpenTK.Platform.Native.PlatformComponents.CreateOpenGLComponent -- uid: OpenTK.Core.Platform.IOpenGLComponent - commentId: T:OpenTK.Core.Platform.IOpenGLComponent - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.IOpenGLComponent.html +- uid: OpenTK.Platform.IOpenGLComponent + commentId: T:OpenTK.Platform.IOpenGLComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IOpenGLComponent.html name: IOpenGLComponent nameWithType: IOpenGLComponent - fullName: OpenTK.Core.Platform.IOpenGLComponent + fullName: OpenTK.Platform.IOpenGLComponent - uid: OpenTK.Platform.Native.PlatformComponents.CreateDisplayComponent* commentId: Overload:OpenTK.Platform.Native.PlatformComponents.CreateDisplayComponent href: OpenTK.Platform.Native.PlatformComponents.html#OpenTK_Platform_Native_PlatformComponents_CreateDisplayComponent name: CreateDisplayComponent nameWithType: PlatformComponents.CreateDisplayComponent fullName: OpenTK.Platform.Native.PlatformComponents.CreateDisplayComponent -- uid: OpenTK.Core.Platform.IDisplayComponent - commentId: T:OpenTK.Core.Platform.IDisplayComponent - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.IDisplayComponent.html +- uid: OpenTK.Platform.IDisplayComponent + commentId: T:OpenTK.Platform.IDisplayComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IDisplayComponent.html name: IDisplayComponent nameWithType: IDisplayComponent - fullName: OpenTK.Core.Platform.IDisplayComponent + fullName: OpenTK.Platform.IDisplayComponent - uid: OpenTK.Platform.Native.PlatformComponents.CreateShellComponent* commentId: Overload:OpenTK.Platform.Native.PlatformComponents.CreateShellComponent href: OpenTK.Platform.Native.PlatformComponents.html#OpenTK_Platform_Native_PlatformComponents_CreateShellComponent name: CreateShellComponent nameWithType: PlatformComponents.CreateShellComponent fullName: OpenTK.Platform.Native.PlatformComponents.CreateShellComponent -- uid: OpenTK.Core.Platform.IShellComponent - commentId: T:OpenTK.Core.Platform.IShellComponent - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.IShellComponent.html +- uid: OpenTK.Platform.IShellComponent + commentId: T:OpenTK.Platform.IShellComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IShellComponent.html name: IShellComponent nameWithType: IShellComponent - fullName: OpenTK.Core.Platform.IShellComponent + fullName: OpenTK.Platform.IShellComponent - uid: OpenTK.Platform.Native.PlatformComponents.CreateMouseComponent* commentId: Overload:OpenTK.Platform.Native.PlatformComponents.CreateMouseComponent href: OpenTK.Platform.Native.PlatformComponents.html#OpenTK_Platform_Native_PlatformComponents_CreateMouseComponent name: CreateMouseComponent nameWithType: PlatformComponents.CreateMouseComponent fullName: OpenTK.Platform.Native.PlatformComponents.CreateMouseComponent -- uid: OpenTK.Core.Platform.IMouseComponent - commentId: T:OpenTK.Core.Platform.IMouseComponent - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.IMouseComponent.html +- uid: OpenTK.Platform.IMouseComponent + commentId: T:OpenTK.Platform.IMouseComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IMouseComponent.html name: IMouseComponent nameWithType: IMouseComponent - fullName: OpenTK.Core.Platform.IMouseComponent + fullName: OpenTK.Platform.IMouseComponent - uid: OpenTK.Platform.Native.PlatformComponents.CreateKeyboardComponent* commentId: Overload:OpenTK.Platform.Native.PlatformComponents.CreateKeyboardComponent href: OpenTK.Platform.Native.PlatformComponents.html#OpenTK_Platform_Native_PlatformComponents_CreateKeyboardComponent name: CreateKeyboardComponent nameWithType: PlatformComponents.CreateKeyboardComponent fullName: OpenTK.Platform.Native.PlatformComponents.CreateKeyboardComponent -- uid: OpenTK.Core.Platform.IKeyboardComponent - commentId: T:OpenTK.Core.Platform.IKeyboardComponent - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.IKeyboardComponent.html +- uid: OpenTK.Platform.IKeyboardComponent + commentId: T:OpenTK.Platform.IKeyboardComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IKeyboardComponent.html name: IKeyboardComponent nameWithType: IKeyboardComponent - fullName: OpenTK.Core.Platform.IKeyboardComponent + fullName: OpenTK.Platform.IKeyboardComponent - uid: OpenTK.Platform.Native.PlatformComponents.CreateCursorComponent* commentId: Overload:OpenTK.Platform.Native.PlatformComponents.CreateCursorComponent href: OpenTK.Platform.Native.PlatformComponents.html#OpenTK_Platform_Native_PlatformComponents_CreateCursorComponent name: CreateCursorComponent nameWithType: PlatformComponents.CreateCursorComponent fullName: OpenTK.Platform.Native.PlatformComponents.CreateCursorComponent -- uid: OpenTK.Core.Platform.ICursorComponent - commentId: T:OpenTK.Core.Platform.ICursorComponent - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.ICursorComponent.html +- uid: OpenTK.Platform.ICursorComponent + commentId: T:OpenTK.Platform.ICursorComponent + parent: OpenTK.Platform + href: OpenTK.Platform.ICursorComponent.html name: ICursorComponent nameWithType: ICursorComponent - fullName: OpenTK.Core.Platform.ICursorComponent + fullName: OpenTK.Platform.ICursorComponent - uid: OpenTK.Platform.Native.PlatformComponents.CreateIconComponent* commentId: Overload:OpenTK.Platform.Native.PlatformComponents.CreateIconComponent href: OpenTK.Platform.Native.PlatformComponents.html#OpenTK_Platform_Native_PlatformComponents_CreateIconComponent name: CreateIconComponent nameWithType: PlatformComponents.CreateIconComponent fullName: OpenTK.Platform.Native.PlatformComponents.CreateIconComponent -- uid: OpenTK.Core.Platform.IIconComponent - commentId: T:OpenTK.Core.Platform.IIconComponent - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.IIconComponent.html +- uid: OpenTK.Platform.IIconComponent + commentId: T:OpenTK.Platform.IIconComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IIconComponent.html name: IIconComponent nameWithType: IIconComponent - fullName: OpenTK.Core.Platform.IIconComponent + fullName: OpenTK.Platform.IIconComponent - uid: OpenTK.Platform.Native.PlatformComponents.CreateClipboardComponent* commentId: Overload:OpenTK.Platform.Native.PlatformComponents.CreateClipboardComponent href: OpenTK.Platform.Native.PlatformComponents.html#OpenTK_Platform_Native_PlatformComponents_CreateClipboardComponent name: CreateClipboardComponent nameWithType: PlatformComponents.CreateClipboardComponent fullName: OpenTK.Platform.Native.PlatformComponents.CreateClipboardComponent -- uid: OpenTK.Core.Platform.IClipboardComponent - commentId: T:OpenTK.Core.Platform.IClipboardComponent - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.IClipboardComponent.html +- uid: OpenTK.Platform.IClipboardComponent + commentId: T:OpenTK.Platform.IClipboardComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IClipboardComponent.html name: IClipboardComponent nameWithType: IClipboardComponent - fullName: OpenTK.Core.Platform.IClipboardComponent + fullName: OpenTK.Platform.IClipboardComponent - uid: OpenTK.Platform.Native.PlatformComponents.CreateSurfaceComponent* commentId: Overload:OpenTK.Platform.Native.PlatformComponents.CreateSurfaceComponent href: OpenTK.Platform.Native.PlatformComponents.html#OpenTK_Platform_Native_PlatformComponents_CreateSurfaceComponent name: CreateSurfaceComponent nameWithType: PlatformComponents.CreateSurfaceComponent fullName: OpenTK.Platform.Native.PlatformComponents.CreateSurfaceComponent -- uid: OpenTK.Core.Platform.ISurfaceComponent - commentId: T:OpenTK.Core.Platform.ISurfaceComponent - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.ISurfaceComponent.html +- uid: OpenTK.Platform.ISurfaceComponent + commentId: T:OpenTK.Platform.ISurfaceComponent + parent: OpenTK.Platform + href: OpenTK.Platform.ISurfaceComponent.html name: ISurfaceComponent nameWithType: ISurfaceComponent - fullName: OpenTK.Core.Platform.ISurfaceComponent + fullName: OpenTK.Platform.ISurfaceComponent - uid: OpenTK.Platform.Native.PlatformComponents.CreateJoystickComponent* commentId: Overload:OpenTK.Platform.Native.PlatformComponents.CreateJoystickComponent href: OpenTK.Platform.Native.PlatformComponents.html#OpenTK_Platform_Native_PlatformComponents_CreateJoystickComponent name: CreateJoystickComponent nameWithType: PlatformComponents.CreateJoystickComponent fullName: OpenTK.Platform.Native.PlatformComponents.CreateJoystickComponent -- uid: OpenTK.Core.Platform.IJoystickComponent - commentId: T:OpenTK.Core.Platform.IJoystickComponent - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.IJoystickComponent.html +- uid: OpenTK.Platform.IJoystickComponent + commentId: T:OpenTK.Platform.IJoystickComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IJoystickComponent.html name: IJoystickComponent nameWithType: IJoystickComponent - fullName: OpenTK.Core.Platform.IJoystickComponent + fullName: OpenTK.Platform.IJoystickComponent - uid: OpenTK.Platform.Native.PlatformComponents.CreateDialogComponent* commentId: Overload:OpenTK.Platform.Native.PlatformComponents.CreateDialogComponent href: OpenTK.Platform.Native.PlatformComponents.html#OpenTK_Platform_Native_PlatformComponents_CreateDialogComponent name: CreateDialogComponent nameWithType: PlatformComponents.CreateDialogComponent fullName: OpenTK.Platform.Native.PlatformComponents.CreateDialogComponent -- uid: OpenTK.Core.Platform.IDialogComponent - commentId: T:OpenTK.Core.Platform.IDialogComponent - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.IDialogComponent.html +- uid: OpenTK.Platform.IDialogComponent + commentId: T:OpenTK.Platform.IDialogComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IDialogComponent.html name: IDialogComponent nameWithType: IDialogComponent - fullName: OpenTK.Core.Platform.IDialogComponent + fullName: OpenTK.Platform.IDialogComponent +- uid: OpenTK.Platform.Native.PlatformComponents.CreateVulkanComponent* + commentId: Overload:OpenTK.Platform.Native.PlatformComponents.CreateVulkanComponent + href: OpenTK.Platform.Native.PlatformComponents.html#OpenTK_Platform_Native_PlatformComponents_CreateVulkanComponent + name: CreateVulkanComponent + nameWithType: PlatformComponents.CreateVulkanComponent + fullName: OpenTK.Platform.Native.PlatformComponents.CreateVulkanComponent +- uid: OpenTK.Platform.IVulkanComponent + commentId: T:OpenTK.Platform.IVulkanComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IVulkanComponent.html + name: IVulkanComponent + nameWithType: IVulkanComponent + fullName: OpenTK.Platform.IVulkanComponent diff --git a/api/OpenTK.Platform.Native.SDL.SDLClipboardComponent.yml b/api/OpenTK.Platform.Native.SDL.SDLClipboardComponent.yml index ea11bbf8..488aa302 100644 --- a/api/OpenTK.Platform.Native.SDL.SDLClipboardComponent.yml +++ b/api/OpenTK.Platform.Native.SDL.SDLClipboardComponent.yml @@ -10,7 +10,7 @@ items: - OpenTK.Platform.Native.SDL.SDLClipboardComponent.GetClipboardFiles - OpenTK.Platform.Native.SDL.SDLClipboardComponent.GetClipboardFormat - OpenTK.Platform.Native.SDL.SDLClipboardComponent.GetClipboardText - - OpenTK.Platform.Native.SDL.SDLClipboardComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + - OpenTK.Platform.Native.SDL.SDLClipboardComponent.Initialize(OpenTK.Platform.ToolkitOptions) - OpenTK.Platform.Native.SDL.SDLClipboardComponent.Logger - OpenTK.Platform.Native.SDL.SDLClipboardComponent.Name - OpenTK.Platform.Native.SDL.SDLClipboardComponent.Provides @@ -24,15 +24,11 @@ items: fullName: OpenTK.Platform.Native.SDL.SDLClipboardComponent type: Class source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLClipboardComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SDLClipboardComponent - path: opentk/src/OpenTK.Platform.Native/SDL/SDLClipboardComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLClipboardComponent.cs startLine: 11 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL syntax: content: 'public class SDLClipboardComponent : IClipboardComponent, IPalComponent' @@ -40,8 +36,8 @@ items: inheritance: - System.Object implements: - - OpenTK.Core.Platform.IClipboardComponent - - OpenTK.Core.Platform.IPalComponent + - OpenTK.Platform.IClipboardComponent + - OpenTK.Platform.IPalComponent inheritedMembers: - System.Object.Equals(System.Object) - System.Object.Equals(System.Object,System.Object) @@ -62,15 +58,11 @@ items: fullName: OpenTK.Platform.Native.SDL.SDLClipboardComponent.Name type: Property source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLClipboardComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Name - path: opentk/src/OpenTK.Platform.Native/SDL/SDLClipboardComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLClipboardComponent.cs startLine: 14 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: Name of the abstraction layer component. example: [] @@ -82,7 +74,7 @@ items: content.vb: Public ReadOnly Property Name As String overload: OpenTK.Platform.Native.SDL.SDLClipboardComponent.Name* implements: - - OpenTK.Core.Platform.IPalComponent.Name + - OpenTK.Platform.IPalComponent.Name - uid: OpenTK.Platform.Native.SDL.SDLClipboardComponent.Provides commentId: P:OpenTK.Platform.Native.SDL.SDLClipboardComponent.Provides id: Provides @@ -95,15 +87,11 @@ items: fullName: OpenTK.Platform.Native.SDL.SDLClipboardComponent.Provides type: Property source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLClipboardComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Provides - path: opentk/src/OpenTK.Platform.Native/SDL/SDLClipboardComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLClipboardComponent.cs startLine: 17 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: Specifies which PAL components this object provides. example: [] @@ -111,11 +99,11 @@ items: content: public PalComponents Provides { get; } parameters: [] return: - type: OpenTK.Core.Platform.PalComponents + type: OpenTK.Platform.PalComponents content.vb: Public ReadOnly Property Provides As PalComponents overload: OpenTK.Platform.Native.SDL.SDLClipboardComponent.Provides* implements: - - OpenTK.Core.Platform.IPalComponent.Provides + - OpenTK.Platform.IPalComponent.Provides - uid: OpenTK.Platform.Native.SDL.SDLClipboardComponent.Logger commentId: P:OpenTK.Platform.Native.SDL.SDLClipboardComponent.Logger id: Logger @@ -128,15 +116,11 @@ items: fullName: OpenTK.Platform.Native.SDL.SDLClipboardComponent.Logger type: Property source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLClipboardComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Logger - path: opentk/src/OpenTK.Platform.Native/SDL/SDLClipboardComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLClipboardComponent.cs startLine: 20 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: Provides a logger for this component. example: [] @@ -148,28 +132,24 @@ items: content.vb: Public Property Logger As ILogger overload: OpenTK.Platform.Native.SDL.SDLClipboardComponent.Logger* implements: - - OpenTK.Core.Platform.IPalComponent.Logger -- uid: OpenTK.Platform.Native.SDL.SDLClipboardComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - commentId: M:OpenTK.Platform.Native.SDL.SDLClipboardComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - id: Initialize(OpenTK.Core.Platform.ToolkitOptions) + - OpenTK.Platform.IPalComponent.Logger +- uid: OpenTK.Platform.Native.SDL.SDLClipboardComponent.Initialize(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Native.SDL.SDLClipboardComponent.Initialize(OpenTK.Platform.ToolkitOptions) + id: Initialize(OpenTK.Platform.ToolkitOptions) parent: OpenTK.Platform.Native.SDL.SDLClipboardComponent langs: - csharp - vb name: Initialize(ToolkitOptions) nameWithType: SDLClipboardComponent.Initialize(ToolkitOptions) - fullName: OpenTK.Platform.Native.SDL.SDLClipboardComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + fullName: OpenTK.Platform.Native.SDL.SDLClipboardComponent.Initialize(OpenTK.Platform.ToolkitOptions) type: Method source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLClipboardComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Initialize - path: opentk/src/OpenTK.Platform.Native/SDL/SDLClipboardComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLClipboardComponent.cs startLine: 23 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: Initialize the component. example: [] @@ -177,12 +157,12 @@ items: content: public void Initialize(ToolkitOptions options) parameters: - id: options - type: OpenTK.Core.Platform.ToolkitOptions + type: OpenTK.Platform.ToolkitOptions description: The options to initialize the component with. content.vb: Public Sub Initialize(options As ToolkitOptions) overload: OpenTK.Platform.Native.SDL.SDLClipboardComponent.Initialize* implements: - - OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + - OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) - uid: OpenTK.Platform.Native.SDL.SDLClipboardComponent.SupportedFormats commentId: P:OpenTK.Platform.Native.SDL.SDLClipboardComponent.SupportedFormats id: SupportedFormats @@ -195,15 +175,11 @@ items: fullName: OpenTK.Platform.Native.SDL.SDLClipboardComponent.SupportedFormats type: Property source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLClipboardComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SupportedFormats - path: opentk/src/OpenTK.Platform.Native/SDL/SDLClipboardComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLClipboardComponent.cs startLine: 32 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: A list of formats that this clipboard component supports. example: [] @@ -211,11 +187,11 @@ items: content: public IReadOnlyList SupportedFormats { get; } parameters: [] return: - type: System.Collections.Generic.IReadOnlyList{OpenTK.Core.Platform.ClipboardFormat} + type: System.Collections.Generic.IReadOnlyList{OpenTK.Platform.ClipboardFormat} content.vb: Public ReadOnly Property SupportedFormats As IReadOnlyList(Of ClipboardFormat) overload: OpenTK.Platform.Native.SDL.SDLClipboardComponent.SupportedFormats* implements: - - OpenTK.Core.Platform.IClipboardComponent.SupportedFormats + - OpenTK.Platform.IClipboardComponent.SupportedFormats - uid: OpenTK.Platform.Native.SDL.SDLClipboardComponent.GetClipboardFormat commentId: M:OpenTK.Platform.Native.SDL.SDLClipboardComponent.GetClipboardFormat id: GetClipboardFormat @@ -228,27 +204,23 @@ items: fullName: OpenTK.Platform.Native.SDL.SDLClipboardComponent.GetClipboardFormat() type: Method source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLClipboardComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetClipboardFormat - path: opentk/src/OpenTK.Platform.Native/SDL/SDLClipboardComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLClipboardComponent.cs startLine: 35 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: Gets the format of the data currently in the clipboard. example: [] syntax: content: public ClipboardFormat GetClipboardFormat() return: - type: OpenTK.Core.Platform.ClipboardFormat + type: OpenTK.Platform.ClipboardFormat description: The format of the data currently in the clipboard. content.vb: Public Function GetClipboardFormat() As ClipboardFormat overload: OpenTK.Platform.Native.SDL.SDLClipboardComponent.GetClipboardFormat* implements: - - OpenTK.Core.Platform.IClipboardComponent.GetClipboardFormat + - OpenTK.Platform.IClipboardComponent.GetClipboardFormat - uid: OpenTK.Platform.Native.SDL.SDLClipboardComponent.SetClipboardText(System.String) commentId: M:OpenTK.Platform.Native.SDL.SDLClipboardComponent.SetClipboardText(System.String) id: SetClipboardText(System.String) @@ -261,15 +233,11 @@ items: fullName: OpenTK.Platform.Native.SDL.SDLClipboardComponent.SetClipboardText(string) type: Method source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLClipboardComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetClipboardText - path: opentk/src/OpenTK.Platform.Native/SDL/SDLClipboardComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLClipboardComponent.cs startLine: 42 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: Sets the string currently in the clipboard. example: [] @@ -282,7 +250,7 @@ items: content.vb: Public Sub SetClipboardText(text As String) overload: OpenTK.Platform.Native.SDL.SDLClipboardComponent.SetClipboardText* implements: - - OpenTK.Core.Platform.IClipboardComponent.SetClipboardText(System.String) + - OpenTK.Platform.IClipboardComponent.SetClipboardText(System.String) nameWithType.vb: SDLClipboardComponent.SetClipboardText(String) fullName.vb: OpenTK.Platform.Native.SDL.SDLClipboardComponent.SetClipboardText(String) name.vb: SetClipboardText(String) @@ -298,20 +266,16 @@ items: fullName: OpenTK.Platform.Native.SDL.SDLClipboardComponent.GetClipboardText() type: Method source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLClipboardComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetClipboardText - path: opentk/src/OpenTK.Platform.Native/SDL/SDLClipboardComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLClipboardComponent.cs startLine: 53 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: >- Returns the string currently in the clipboard. - This function returns null if the current clipboard data doesn't have the format. + This function returns null if the current clipboard data doesn't have the format. example: [] syntax: content: public string? GetClipboardText() @@ -321,7 +285,7 @@ items: content.vb: Public Function GetClipboardText() As String overload: OpenTK.Platform.Native.SDL.SDLClipboardComponent.GetClipboardText* implements: - - OpenTK.Core.Platform.IClipboardComponent.GetClipboardText + - OpenTK.Platform.IClipboardComponent.GetClipboardText - uid: OpenTK.Platform.Native.SDL.SDLClipboardComponent.GetClipboardAudio commentId: M:OpenTK.Platform.Native.SDL.SDLClipboardComponent.GetClipboardAudio id: GetClipboardAudio @@ -334,30 +298,26 @@ items: fullName: OpenTK.Platform.Native.SDL.SDLClipboardComponent.GetClipboardAudio() type: Method source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLClipboardComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetClipboardAudio - path: opentk/src/OpenTK.Platform.Native/SDL/SDLClipboardComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLClipboardComponent.cs startLine: 74 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: >- Gets the audio data currently in the clipboard. - This function returns null if the current clipboard data doesn't have the format. + This function returns null if the current clipboard data doesn't have the format. example: [] syntax: content: public AudioData? GetClipboardAudio() return: - type: OpenTK.Core.Platform.AudioData + type: OpenTK.Platform.AudioData description: The audio data currently in the clipboard. content.vb: Public Function GetClipboardAudio() As AudioData overload: OpenTK.Platform.Native.SDL.SDLClipboardComponent.GetClipboardAudio* implements: - - OpenTK.Core.Platform.IClipboardComponent.GetClipboardAudio + - OpenTK.Platform.IClipboardComponent.GetClipboardAudio - uid: OpenTK.Platform.Native.SDL.SDLClipboardComponent.GetClipboardBitmap commentId: M:OpenTK.Platform.Native.SDL.SDLClipboardComponent.GetClipboardBitmap id: GetClipboardBitmap @@ -370,30 +330,26 @@ items: fullName: OpenTK.Platform.Native.SDL.SDLClipboardComponent.GetClipboardBitmap() type: Method source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLClipboardComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetClipboardBitmap - path: opentk/src/OpenTK.Platform.Native/SDL/SDLClipboardComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLClipboardComponent.cs startLine: 80 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: >- Gets the bitmap currently in the clipboard. - This function returns null if the current clipboard data doesn't have the format. + This function returns null if the current clipboard data doesn't have the format. example: [] syntax: content: public Bitmap? GetClipboardBitmap() return: - type: OpenTK.Core.Platform.Bitmap + type: OpenTK.Platform.Bitmap description: The bitmap currently in the clipboard. content.vb: Public Function GetClipboardBitmap() As Bitmap overload: OpenTK.Platform.Native.SDL.SDLClipboardComponent.GetClipboardBitmap* implements: - - OpenTK.Core.Platform.IClipboardComponent.GetClipboardBitmap + - OpenTK.Platform.IClipboardComponent.GetClipboardBitmap - uid: OpenTK.Platform.Native.SDL.SDLClipboardComponent.GetClipboardFiles commentId: M:OpenTK.Platform.Native.SDL.SDLClipboardComponent.GetClipboardFiles id: GetClipboardFiles @@ -406,20 +362,16 @@ items: fullName: OpenTK.Platform.Native.SDL.SDLClipboardComponent.GetClipboardFiles() type: Method source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLClipboardComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetClipboardFiles - path: opentk/src/OpenTK.Platform.Native/SDL/SDLClipboardComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLClipboardComponent.cs startLine: 86 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: >- Gets a list of files and directories currently in the clipboard. - This function returns null if the current clipboard data doesn't have the format. + This function returns null if the current clipboard data doesn't have the format. example: [] syntax: content: public List? GetClipboardFiles() @@ -429,7 +381,7 @@ items: content.vb: Public Function GetClipboardFiles() As List(Of String) overload: OpenTK.Platform.Native.SDL.SDLClipboardComponent.GetClipboardFiles* implements: - - OpenTK.Core.Platform.IClipboardComponent.GetClipboardFiles + - OpenTK.Platform.IClipboardComponent.GetClipboardFiles references: - uid: OpenTK.Platform.Native.SDL commentId: N:OpenTK.Platform.Native.SDL @@ -480,20 +432,20 @@ references: nameWithType.vb: Object fullName.vb: Object name.vb: Object -- uid: OpenTK.Core.Platform.IClipboardComponent - commentId: T:OpenTK.Core.Platform.IClipboardComponent - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.IClipboardComponent.html +- uid: OpenTK.Platform.IClipboardComponent + commentId: T:OpenTK.Platform.IClipboardComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IClipboardComponent.html name: IClipboardComponent nameWithType: IClipboardComponent - fullName: OpenTK.Core.Platform.IClipboardComponent -- uid: OpenTK.Core.Platform.IPalComponent - commentId: T:OpenTK.Core.Platform.IPalComponent - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.IPalComponent.html + fullName: OpenTK.Platform.IClipboardComponent +- uid: OpenTK.Platform.IPalComponent + commentId: T:OpenTK.Platform.IPalComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IPalComponent.html name: IPalComponent nameWithType: IPalComponent - fullName: OpenTK.Core.Platform.IPalComponent + fullName: OpenTK.Platform.IPalComponent - uid: System.Object.Equals(System.Object) commentId: M:System.Object.Equals(System.Object) parent: System.Object @@ -720,49 +672,41 @@ references: name: System nameWithType: System fullName: System -- uid: OpenTK.Core.Platform - commentId: N:OpenTK.Core.Platform +- uid: OpenTK.Platform + commentId: N:OpenTK.Platform href: OpenTK.html - name: OpenTK.Core.Platform - nameWithType: OpenTK.Core.Platform - fullName: OpenTK.Core.Platform + name: OpenTK.Platform + nameWithType: OpenTK.Platform + fullName: OpenTK.Platform spec.csharp: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html spec.vb: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html - uid: OpenTK.Platform.Native.SDL.SDLClipboardComponent.Name* commentId: Overload:OpenTK.Platform.Native.SDL.SDLClipboardComponent.Name href: OpenTK.Platform.Native.SDL.SDLClipboardComponent.html#OpenTK_Platform_Native_SDL_SDLClipboardComponent_Name name: Name nameWithType: SDLClipboardComponent.Name fullName: OpenTK.Platform.Native.SDL.SDLClipboardComponent.Name -- uid: OpenTK.Core.Platform.IPalComponent.Name - commentId: P:OpenTK.Core.Platform.IPalComponent.Name - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Name +- uid: OpenTK.Platform.IPalComponent.Name + commentId: P:OpenTK.Platform.IPalComponent.Name + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Name name: Name nameWithType: IPalComponent.Name - fullName: OpenTK.Core.Platform.IPalComponent.Name + fullName: OpenTK.Platform.IPalComponent.Name - uid: System.String commentId: T:System.String parent: System @@ -780,33 +724,33 @@ references: name: Provides nameWithType: SDLClipboardComponent.Provides fullName: OpenTK.Platform.Native.SDL.SDLClipboardComponent.Provides -- uid: OpenTK.Core.Platform.IPalComponent.Provides - commentId: P:OpenTK.Core.Platform.IPalComponent.Provides - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Provides +- uid: OpenTK.Platform.IPalComponent.Provides + commentId: P:OpenTK.Platform.IPalComponent.Provides + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Provides name: Provides nameWithType: IPalComponent.Provides - fullName: OpenTK.Core.Platform.IPalComponent.Provides -- uid: OpenTK.Core.Platform.PalComponents - commentId: T:OpenTK.Core.Platform.PalComponents - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.PalComponents.html + fullName: OpenTK.Platform.IPalComponent.Provides +- uid: OpenTK.Platform.PalComponents + commentId: T:OpenTK.Platform.PalComponents + parent: OpenTK.Platform + href: OpenTK.Platform.PalComponents.html name: PalComponents nameWithType: PalComponents - fullName: OpenTK.Core.Platform.PalComponents + fullName: OpenTK.Platform.PalComponents - uid: OpenTK.Platform.Native.SDL.SDLClipboardComponent.Logger* commentId: Overload:OpenTK.Platform.Native.SDL.SDLClipboardComponent.Logger href: OpenTK.Platform.Native.SDL.SDLClipboardComponent.html#OpenTK_Platform_Native_SDL_SDLClipboardComponent_Logger name: Logger nameWithType: SDLClipboardComponent.Logger fullName: OpenTK.Platform.Native.SDL.SDLClipboardComponent.Logger -- uid: OpenTK.Core.Platform.IPalComponent.Logger - commentId: P:OpenTK.Core.Platform.IPalComponent.Logger - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Logger +- uid: OpenTK.Platform.IPalComponent.Logger + commentId: P:OpenTK.Platform.IPalComponent.Logger + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Logger name: Logger nameWithType: IPalComponent.Logger - fullName: OpenTK.Core.Platform.IPalComponent.Logger + fullName: OpenTK.Platform.IPalComponent.Logger - uid: OpenTK.Core.Utility.ILogger commentId: T:OpenTK.Core.Utility.ILogger parent: OpenTK.Core.Utility @@ -846,65 +790,65 @@ references: href: OpenTK.Core.Utility.html - uid: OpenTK.Platform.Native.SDL.SDLClipboardComponent.Initialize* commentId: Overload:OpenTK.Platform.Native.SDL.SDLClipboardComponent.Initialize - href: OpenTK.Platform.Native.SDL.SDLClipboardComponent.html#OpenTK_Platform_Native_SDL_SDLClipboardComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + href: OpenTK.Platform.Native.SDL.SDLClipboardComponent.html#OpenTK_Platform_Native_SDL_SDLClipboardComponent_Initialize_OpenTK_Platform_ToolkitOptions_ name: Initialize nameWithType: SDLClipboardComponent.Initialize fullName: OpenTK.Platform.Native.SDL.SDLClipboardComponent.Initialize -- uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - commentId: M:OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ +- uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ name: Initialize(ToolkitOptions) nameWithType: IPalComponent.Initialize(ToolkitOptions) - fullName: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + fullName: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) spec.csharp: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + - uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.ToolkitOptions + - uid: OpenTK.Platform.ToolkitOptions name: ToolkitOptions - href: OpenTK.Core.Platform.ToolkitOptions.html + href: OpenTK.Platform.ToolkitOptions.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + - uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.ToolkitOptions + - uid: OpenTK.Platform.ToolkitOptions name: ToolkitOptions - href: OpenTK.Core.Platform.ToolkitOptions.html + href: OpenTK.Platform.ToolkitOptions.html - name: ) -- uid: OpenTK.Core.Platform.ToolkitOptions - commentId: T:OpenTK.Core.Platform.ToolkitOptions - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.ToolkitOptions.html +- uid: OpenTK.Platform.ToolkitOptions + commentId: T:OpenTK.Platform.ToolkitOptions + parent: OpenTK.Platform + href: OpenTK.Platform.ToolkitOptions.html name: ToolkitOptions nameWithType: ToolkitOptions - fullName: OpenTK.Core.Platform.ToolkitOptions + fullName: OpenTK.Platform.ToolkitOptions - uid: OpenTK.Platform.Native.SDL.SDLClipboardComponent.SupportedFormats* commentId: Overload:OpenTK.Platform.Native.SDL.SDLClipboardComponent.SupportedFormats href: OpenTK.Platform.Native.SDL.SDLClipboardComponent.html#OpenTK_Platform_Native_SDL_SDLClipboardComponent_SupportedFormats name: SupportedFormats nameWithType: SDLClipboardComponent.SupportedFormats fullName: OpenTK.Platform.Native.SDL.SDLClipboardComponent.SupportedFormats -- uid: OpenTK.Core.Platform.IClipboardComponent.SupportedFormats - commentId: P:OpenTK.Core.Platform.IClipboardComponent.SupportedFormats - parent: OpenTK.Core.Platform.IClipboardComponent - href: OpenTK.Core.Platform.IClipboardComponent.html#OpenTK_Core_Platform_IClipboardComponent_SupportedFormats +- uid: OpenTK.Platform.IClipboardComponent.SupportedFormats + commentId: P:OpenTK.Platform.IClipboardComponent.SupportedFormats + parent: OpenTK.Platform.IClipboardComponent + href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_SupportedFormats name: SupportedFormats nameWithType: IClipboardComponent.SupportedFormats - fullName: OpenTK.Core.Platform.IClipboardComponent.SupportedFormats -- uid: System.Collections.Generic.IReadOnlyList{OpenTK.Core.Platform.ClipboardFormat} - commentId: T:System.Collections.Generic.IReadOnlyList{OpenTK.Core.Platform.ClipboardFormat} + fullName: OpenTK.Platform.IClipboardComponent.SupportedFormats +- uid: System.Collections.Generic.IReadOnlyList{OpenTK.Platform.ClipboardFormat} + commentId: T:System.Collections.Generic.IReadOnlyList{OpenTK.Platform.ClipboardFormat} parent: System.Collections.Generic definition: System.Collections.Generic.IReadOnlyList`1 href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 name: IReadOnlyList nameWithType: IReadOnlyList - fullName: System.Collections.Generic.IReadOnlyList + fullName: System.Collections.Generic.IReadOnlyList nameWithType.vb: IReadOnlyList(Of ClipboardFormat) - fullName.vb: System.Collections.Generic.IReadOnlyList(Of OpenTK.Core.Platform.ClipboardFormat) + fullName.vb: System.Collections.Generic.IReadOnlyList(Of OpenTK.Platform.ClipboardFormat) name.vb: IReadOnlyList(Of ClipboardFormat) spec.csharp: - uid: System.Collections.Generic.IReadOnlyList`1 @@ -912,9 +856,9 @@ references: isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 - name: < - - uid: OpenTK.Core.Platform.ClipboardFormat + - uid: OpenTK.Platform.ClipboardFormat name: ClipboardFormat - href: OpenTK.Core.Platform.ClipboardFormat.html + href: OpenTK.Platform.ClipboardFormat.html - name: '>' spec.vb: - uid: System.Collections.Generic.IReadOnlyList`1 @@ -924,9 +868,9 @@ references: - name: ( - name: Of - name: " " - - uid: OpenTK.Core.Platform.ClipboardFormat + - uid: OpenTK.Platform.ClipboardFormat name: ClipboardFormat - href: OpenTK.Core.Platform.ClipboardFormat.html + href: OpenTK.Platform.ClipboardFormat.html - name: ) - uid: System.Collections.Generic.IReadOnlyList`1 commentId: T:System.Collections.Generic.IReadOnlyList`1 @@ -999,53 +943,53 @@ references: name: GetClipboardFormat nameWithType: SDLClipboardComponent.GetClipboardFormat fullName: OpenTK.Platform.Native.SDL.SDLClipboardComponent.GetClipboardFormat -- uid: OpenTK.Core.Platform.IClipboardComponent.GetClipboardFormat - commentId: M:OpenTK.Core.Platform.IClipboardComponent.GetClipboardFormat - parent: OpenTK.Core.Platform.IClipboardComponent - href: OpenTK.Core.Platform.IClipboardComponent.html#OpenTK_Core_Platform_IClipboardComponent_GetClipboardFormat +- uid: OpenTK.Platform.IClipboardComponent.GetClipboardFormat + commentId: M:OpenTK.Platform.IClipboardComponent.GetClipboardFormat + parent: OpenTK.Platform.IClipboardComponent + href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_GetClipboardFormat name: GetClipboardFormat() nameWithType: IClipboardComponent.GetClipboardFormat() - fullName: OpenTK.Core.Platform.IClipboardComponent.GetClipboardFormat() + fullName: OpenTK.Platform.IClipboardComponent.GetClipboardFormat() spec.csharp: - - uid: OpenTK.Core.Platform.IClipboardComponent.GetClipboardFormat + - uid: OpenTK.Platform.IClipboardComponent.GetClipboardFormat name: GetClipboardFormat - href: OpenTK.Core.Platform.IClipboardComponent.html#OpenTK_Core_Platform_IClipboardComponent_GetClipboardFormat + href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_GetClipboardFormat - name: ( - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IClipboardComponent.GetClipboardFormat + - uid: OpenTK.Platform.IClipboardComponent.GetClipboardFormat name: GetClipboardFormat - href: OpenTK.Core.Platform.IClipboardComponent.html#OpenTK_Core_Platform_IClipboardComponent_GetClipboardFormat + href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_GetClipboardFormat - name: ( - name: ) -- uid: OpenTK.Core.Platform.ClipboardFormat - commentId: T:OpenTK.Core.Platform.ClipboardFormat - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.ClipboardFormat.html +- uid: OpenTK.Platform.ClipboardFormat + commentId: T:OpenTK.Platform.ClipboardFormat + parent: OpenTK.Platform + href: OpenTK.Platform.ClipboardFormat.html name: ClipboardFormat nameWithType: ClipboardFormat - fullName: OpenTK.Core.Platform.ClipboardFormat + fullName: OpenTK.Platform.ClipboardFormat - uid: OpenTK.Platform.Native.SDL.SDLClipboardComponent.SetClipboardText* commentId: Overload:OpenTK.Platform.Native.SDL.SDLClipboardComponent.SetClipboardText href: OpenTK.Platform.Native.SDL.SDLClipboardComponent.html#OpenTK_Platform_Native_SDL_SDLClipboardComponent_SetClipboardText_System_String_ name: SetClipboardText nameWithType: SDLClipboardComponent.SetClipboardText fullName: OpenTK.Platform.Native.SDL.SDLClipboardComponent.SetClipboardText -- uid: OpenTK.Core.Platform.IClipboardComponent.SetClipboardText(System.String) - commentId: M:OpenTK.Core.Platform.IClipboardComponent.SetClipboardText(System.String) - parent: OpenTK.Core.Platform.IClipboardComponent +- uid: OpenTK.Platform.IClipboardComponent.SetClipboardText(System.String) + commentId: M:OpenTK.Platform.IClipboardComponent.SetClipboardText(System.String) + parent: OpenTK.Platform.IClipboardComponent isExternal: true - href: OpenTK.Core.Platform.IClipboardComponent.html#OpenTK_Core_Platform_IClipboardComponent_SetClipboardText_System_String_ + href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_SetClipboardText_System_String_ name: SetClipboardText(string) nameWithType: IClipboardComponent.SetClipboardText(string) - fullName: OpenTK.Core.Platform.IClipboardComponent.SetClipboardText(string) + fullName: OpenTK.Platform.IClipboardComponent.SetClipboardText(string) nameWithType.vb: IClipboardComponent.SetClipboardText(String) - fullName.vb: OpenTK.Core.Platform.IClipboardComponent.SetClipboardText(String) + fullName.vb: OpenTK.Platform.IClipboardComponent.SetClipboardText(String) name.vb: SetClipboardText(String) spec.csharp: - - uid: OpenTK.Core.Platform.IClipboardComponent.SetClipboardText(System.String) + - uid: OpenTK.Platform.IClipboardComponent.SetClipboardText(System.String) name: SetClipboardText - href: OpenTK.Core.Platform.IClipboardComponent.html#OpenTK_Core_Platform_IClipboardComponent_SetClipboardText_System_String_ + href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_SetClipboardText_System_String_ - name: ( - uid: System.String name: string @@ -1053,151 +997,151 @@ references: href: https://learn.microsoft.com/dotnet/api/system.string - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IClipboardComponent.SetClipboardText(System.String) + - uid: OpenTK.Platform.IClipboardComponent.SetClipboardText(System.String) name: SetClipboardText - href: OpenTK.Core.Platform.IClipboardComponent.html#OpenTK_Core_Platform_IClipboardComponent_SetClipboardText_System_String_ + href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_SetClipboardText_System_String_ - name: ( - uid: System.String name: String isExternal: true href: https://learn.microsoft.com/dotnet/api/system.string - name: ) -- uid: OpenTK.Core.Platform.ClipboardFormat.Text - commentId: F:OpenTK.Core.Platform.ClipboardFormat.Text - href: OpenTK.Core.Platform.ClipboardFormat.html#OpenTK_Core_Platform_ClipboardFormat_Text +- uid: OpenTK.Platform.ClipboardFormat.Text + commentId: F:OpenTK.Platform.ClipboardFormat.Text + href: OpenTK.Platform.ClipboardFormat.html#OpenTK_Platform_ClipboardFormat_Text name: Text nameWithType: ClipboardFormat.Text - fullName: OpenTK.Core.Platform.ClipboardFormat.Text + fullName: OpenTK.Platform.ClipboardFormat.Text - uid: OpenTK.Platform.Native.SDL.SDLClipboardComponent.GetClipboardText* commentId: Overload:OpenTK.Platform.Native.SDL.SDLClipboardComponent.GetClipboardText href: OpenTK.Platform.Native.SDL.SDLClipboardComponent.html#OpenTK_Platform_Native_SDL_SDLClipboardComponent_GetClipboardText name: GetClipboardText nameWithType: SDLClipboardComponent.GetClipboardText fullName: OpenTK.Platform.Native.SDL.SDLClipboardComponent.GetClipboardText -- uid: OpenTK.Core.Platform.IClipboardComponent.GetClipboardText - commentId: M:OpenTK.Core.Platform.IClipboardComponent.GetClipboardText - parent: OpenTK.Core.Platform.IClipboardComponent - href: OpenTK.Core.Platform.IClipboardComponent.html#OpenTK_Core_Platform_IClipboardComponent_GetClipboardText +- uid: OpenTK.Platform.IClipboardComponent.GetClipboardText + commentId: M:OpenTK.Platform.IClipboardComponent.GetClipboardText + parent: OpenTK.Platform.IClipboardComponent + href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_GetClipboardText name: GetClipboardText() nameWithType: IClipboardComponent.GetClipboardText() - fullName: OpenTK.Core.Platform.IClipboardComponent.GetClipboardText() + fullName: OpenTK.Platform.IClipboardComponent.GetClipboardText() spec.csharp: - - uid: OpenTK.Core.Platform.IClipboardComponent.GetClipboardText + - uid: OpenTK.Platform.IClipboardComponent.GetClipboardText name: GetClipboardText - href: OpenTK.Core.Platform.IClipboardComponent.html#OpenTK_Core_Platform_IClipboardComponent_GetClipboardText + href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_GetClipboardText - name: ( - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IClipboardComponent.GetClipboardText + - uid: OpenTK.Platform.IClipboardComponent.GetClipboardText name: GetClipboardText - href: OpenTK.Core.Platform.IClipboardComponent.html#OpenTK_Core_Platform_IClipboardComponent_GetClipboardText + href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_GetClipboardText - name: ( - name: ) -- uid: OpenTK.Core.Platform.ClipboardFormat.Audio - commentId: F:OpenTK.Core.Platform.ClipboardFormat.Audio - href: OpenTK.Core.Platform.ClipboardFormat.html#OpenTK_Core_Platform_ClipboardFormat_Audio +- uid: OpenTK.Platform.ClipboardFormat.Audio + commentId: F:OpenTK.Platform.ClipboardFormat.Audio + href: OpenTK.Platform.ClipboardFormat.html#OpenTK_Platform_ClipboardFormat_Audio name: Audio nameWithType: ClipboardFormat.Audio - fullName: OpenTK.Core.Platform.ClipboardFormat.Audio + fullName: OpenTK.Platform.ClipboardFormat.Audio - uid: OpenTK.Platform.Native.SDL.SDLClipboardComponent.GetClipboardAudio* commentId: Overload:OpenTK.Platform.Native.SDL.SDLClipboardComponent.GetClipboardAudio href: OpenTK.Platform.Native.SDL.SDLClipboardComponent.html#OpenTK_Platform_Native_SDL_SDLClipboardComponent_GetClipboardAudio name: GetClipboardAudio nameWithType: SDLClipboardComponent.GetClipboardAudio fullName: OpenTK.Platform.Native.SDL.SDLClipboardComponent.GetClipboardAudio -- uid: OpenTK.Core.Platform.IClipboardComponent.GetClipboardAudio - commentId: M:OpenTK.Core.Platform.IClipboardComponent.GetClipboardAudio - parent: OpenTK.Core.Platform.IClipboardComponent - href: OpenTK.Core.Platform.IClipboardComponent.html#OpenTK_Core_Platform_IClipboardComponent_GetClipboardAudio +- uid: OpenTK.Platform.IClipboardComponent.GetClipboardAudio + commentId: M:OpenTK.Platform.IClipboardComponent.GetClipboardAudio + parent: OpenTK.Platform.IClipboardComponent + href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_GetClipboardAudio name: GetClipboardAudio() nameWithType: IClipboardComponent.GetClipboardAudio() - fullName: OpenTK.Core.Platform.IClipboardComponent.GetClipboardAudio() + fullName: OpenTK.Platform.IClipboardComponent.GetClipboardAudio() spec.csharp: - - uid: OpenTK.Core.Platform.IClipboardComponent.GetClipboardAudio + - uid: OpenTK.Platform.IClipboardComponent.GetClipboardAudio name: GetClipboardAudio - href: OpenTK.Core.Platform.IClipboardComponent.html#OpenTK_Core_Platform_IClipboardComponent_GetClipboardAudio + href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_GetClipboardAudio - name: ( - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IClipboardComponent.GetClipboardAudio + - uid: OpenTK.Platform.IClipboardComponent.GetClipboardAudio name: GetClipboardAudio - href: OpenTK.Core.Platform.IClipboardComponent.html#OpenTK_Core_Platform_IClipboardComponent_GetClipboardAudio + href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_GetClipboardAudio - name: ( - name: ) -- uid: OpenTK.Core.Platform.AudioData - commentId: T:OpenTK.Core.Platform.AudioData - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.AudioData.html +- uid: OpenTK.Platform.AudioData + commentId: T:OpenTK.Platform.AudioData + parent: OpenTK.Platform + href: OpenTK.Platform.AudioData.html name: AudioData nameWithType: AudioData - fullName: OpenTK.Core.Platform.AudioData -- uid: OpenTK.Core.Platform.ClipboardFormat.Bitmap - commentId: F:OpenTK.Core.Platform.ClipboardFormat.Bitmap - href: OpenTK.Core.Platform.ClipboardFormat.html#OpenTK_Core_Platform_ClipboardFormat_Bitmap + fullName: OpenTK.Platform.AudioData +- uid: OpenTK.Platform.ClipboardFormat.Bitmap + commentId: F:OpenTK.Platform.ClipboardFormat.Bitmap + href: OpenTK.Platform.ClipboardFormat.html#OpenTK_Platform_ClipboardFormat_Bitmap name: Bitmap nameWithType: ClipboardFormat.Bitmap - fullName: OpenTK.Core.Platform.ClipboardFormat.Bitmap + fullName: OpenTK.Platform.ClipboardFormat.Bitmap - uid: OpenTK.Platform.Native.SDL.SDLClipboardComponent.GetClipboardBitmap* commentId: Overload:OpenTK.Platform.Native.SDL.SDLClipboardComponent.GetClipboardBitmap href: OpenTK.Platform.Native.SDL.SDLClipboardComponent.html#OpenTK_Platform_Native_SDL_SDLClipboardComponent_GetClipboardBitmap name: GetClipboardBitmap nameWithType: SDLClipboardComponent.GetClipboardBitmap fullName: OpenTK.Platform.Native.SDL.SDLClipboardComponent.GetClipboardBitmap -- uid: OpenTK.Core.Platform.IClipboardComponent.GetClipboardBitmap - commentId: M:OpenTK.Core.Platform.IClipboardComponent.GetClipboardBitmap - parent: OpenTK.Core.Platform.IClipboardComponent - href: OpenTK.Core.Platform.IClipboardComponent.html#OpenTK_Core_Platform_IClipboardComponent_GetClipboardBitmap +- uid: OpenTK.Platform.IClipboardComponent.GetClipboardBitmap + commentId: M:OpenTK.Platform.IClipboardComponent.GetClipboardBitmap + parent: OpenTK.Platform.IClipboardComponent + href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_GetClipboardBitmap name: GetClipboardBitmap() nameWithType: IClipboardComponent.GetClipboardBitmap() - fullName: OpenTK.Core.Platform.IClipboardComponent.GetClipboardBitmap() + fullName: OpenTK.Platform.IClipboardComponent.GetClipboardBitmap() spec.csharp: - - uid: OpenTK.Core.Platform.IClipboardComponent.GetClipboardBitmap + - uid: OpenTK.Platform.IClipboardComponent.GetClipboardBitmap name: GetClipboardBitmap - href: OpenTK.Core.Platform.IClipboardComponent.html#OpenTK_Core_Platform_IClipboardComponent_GetClipboardBitmap + href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_GetClipboardBitmap - name: ( - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IClipboardComponent.GetClipboardBitmap + - uid: OpenTK.Platform.IClipboardComponent.GetClipboardBitmap name: GetClipboardBitmap - href: OpenTK.Core.Platform.IClipboardComponent.html#OpenTK_Core_Platform_IClipboardComponent_GetClipboardBitmap + href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_GetClipboardBitmap - name: ( - name: ) -- uid: OpenTK.Core.Platform.Bitmap - commentId: T:OpenTK.Core.Platform.Bitmap - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.Bitmap.html +- uid: OpenTK.Platform.Bitmap + commentId: T:OpenTK.Platform.Bitmap + parent: OpenTK.Platform + href: OpenTK.Platform.Bitmap.html name: Bitmap nameWithType: Bitmap - fullName: OpenTK.Core.Platform.Bitmap -- uid: OpenTK.Core.Platform.ClipboardFormat.Files - commentId: F:OpenTK.Core.Platform.ClipboardFormat.Files - href: OpenTK.Core.Platform.ClipboardFormat.html#OpenTK_Core_Platform_ClipboardFormat_Files + fullName: OpenTK.Platform.Bitmap +- uid: OpenTK.Platform.ClipboardFormat.Files + commentId: F:OpenTK.Platform.ClipboardFormat.Files + href: OpenTK.Platform.ClipboardFormat.html#OpenTK_Platform_ClipboardFormat_Files name: Files nameWithType: ClipboardFormat.Files - fullName: OpenTK.Core.Platform.ClipboardFormat.Files + fullName: OpenTK.Platform.ClipboardFormat.Files - uid: OpenTK.Platform.Native.SDL.SDLClipboardComponent.GetClipboardFiles* commentId: Overload:OpenTK.Platform.Native.SDL.SDLClipboardComponent.GetClipboardFiles href: OpenTK.Platform.Native.SDL.SDLClipboardComponent.html#OpenTK_Platform_Native_SDL_SDLClipboardComponent_GetClipboardFiles name: GetClipboardFiles nameWithType: SDLClipboardComponent.GetClipboardFiles fullName: OpenTK.Platform.Native.SDL.SDLClipboardComponent.GetClipboardFiles -- uid: OpenTK.Core.Platform.IClipboardComponent.GetClipboardFiles - commentId: M:OpenTK.Core.Platform.IClipboardComponent.GetClipboardFiles - parent: OpenTK.Core.Platform.IClipboardComponent - href: OpenTK.Core.Platform.IClipboardComponent.html#OpenTK_Core_Platform_IClipboardComponent_GetClipboardFiles +- uid: OpenTK.Platform.IClipboardComponent.GetClipboardFiles + commentId: M:OpenTK.Platform.IClipboardComponent.GetClipboardFiles + parent: OpenTK.Platform.IClipboardComponent + href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_GetClipboardFiles name: GetClipboardFiles() nameWithType: IClipboardComponent.GetClipboardFiles() - fullName: OpenTK.Core.Platform.IClipboardComponent.GetClipboardFiles() + fullName: OpenTK.Platform.IClipboardComponent.GetClipboardFiles() spec.csharp: - - uid: OpenTK.Core.Platform.IClipboardComponent.GetClipboardFiles + - uid: OpenTK.Platform.IClipboardComponent.GetClipboardFiles name: GetClipboardFiles - href: OpenTK.Core.Platform.IClipboardComponent.html#OpenTK_Core_Platform_IClipboardComponent_GetClipboardFiles + href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_GetClipboardFiles - name: ( - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IClipboardComponent.GetClipboardFiles + - uid: OpenTK.Platform.IClipboardComponent.GetClipboardFiles name: GetClipboardFiles - href: OpenTK.Core.Platform.IClipboardComponent.html#OpenTK_Core_Platform_IClipboardComponent_GetClipboardFiles + href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_GetClipboardFiles - name: ( - name: ) - uid: System.Collections.Generic.List{System.String} diff --git a/api/OpenTK.Platform.Native.SDL.SDLCursorComponent.yml b/api/OpenTK.Platform.Native.SDL.SDLCursorComponent.yml index 8e8621ff..63be3795 100644 --- a/api/OpenTK.Platform.Native.SDL.SDLCursorComponent.yml +++ b/api/OpenTK.Platform.Native.SDL.SDLCursorComponent.yml @@ -7,14 +7,14 @@ items: children: - OpenTK.Platform.Native.SDL.SDLCursorComponent.CanInspectSystemCursors - OpenTK.Platform.Native.SDL.SDLCursorComponent.CanLoadSystemCursors - - OpenTK.Platform.Native.SDL.SDLCursorComponent.Create(OpenTK.Core.Platform.SystemCursorType) + - OpenTK.Platform.Native.SDL.SDLCursorComponent.Create(OpenTK.Platform.SystemCursorType) - OpenTK.Platform.Native.SDL.SDLCursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.Int32,System.Int32) - OpenTK.Platform.Native.SDL.SDLCursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.ReadOnlySpan{System.Byte},System.Int32,System.Int32) - - OpenTK.Platform.Native.SDL.SDLCursorComponent.Destroy(OpenTK.Core.Platform.CursorHandle) - - OpenTK.Platform.Native.SDL.SDLCursorComponent.GetHotspot(OpenTK.Core.Platform.CursorHandle,System.Int32@,System.Int32@) - - OpenTK.Platform.Native.SDL.SDLCursorComponent.GetSize(OpenTK.Core.Platform.CursorHandle,System.Int32@,System.Int32@) - - OpenTK.Platform.Native.SDL.SDLCursorComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - - OpenTK.Platform.Native.SDL.SDLCursorComponent.IsSystemCursor(OpenTK.Core.Platform.CursorHandle) + - OpenTK.Platform.Native.SDL.SDLCursorComponent.Destroy(OpenTK.Platform.CursorHandle) + - OpenTK.Platform.Native.SDL.SDLCursorComponent.GetHotspot(OpenTK.Platform.CursorHandle,System.Int32@,System.Int32@) + - OpenTK.Platform.Native.SDL.SDLCursorComponent.GetSize(OpenTK.Platform.CursorHandle,System.Int32@,System.Int32@) + - OpenTK.Platform.Native.SDL.SDLCursorComponent.Initialize(OpenTK.Platform.ToolkitOptions) + - OpenTK.Platform.Native.SDL.SDLCursorComponent.IsSystemCursor(OpenTK.Platform.CursorHandle) - OpenTK.Platform.Native.SDL.SDLCursorComponent.Logger - OpenTK.Platform.Native.SDL.SDLCursorComponent.Name - OpenTK.Platform.Native.SDL.SDLCursorComponent.Provides @@ -26,15 +26,11 @@ items: fullName: OpenTK.Platform.Native.SDL.SDLCursorComponent type: Class source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLCursorComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SDLCursorComponent - path: opentk/src/OpenTK.Platform.Native/SDL/SDLCursorComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLCursorComponent.cs startLine: 13 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL syntax: content: 'public class SDLCursorComponent : ICursorComponent, IPalComponent' @@ -42,8 +38,8 @@ items: inheritance: - System.Object implements: - - OpenTK.Core.Platform.ICursorComponent - - OpenTK.Core.Platform.IPalComponent + - OpenTK.Platform.ICursorComponent + - OpenTK.Platform.IPalComponent inheritedMembers: - System.Object.Equals(System.Object) - System.Object.Equals(System.Object,System.Object) @@ -64,15 +60,11 @@ items: fullName: OpenTK.Platform.Native.SDL.SDLCursorComponent.Name type: Property source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLCursorComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Name - path: opentk/src/OpenTK.Platform.Native/SDL/SDLCursorComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLCursorComponent.cs startLine: 16 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: Name of the abstraction layer component. example: [] @@ -84,7 +76,7 @@ items: content.vb: Public ReadOnly Property Name As String overload: OpenTK.Platform.Native.SDL.SDLCursorComponent.Name* implements: - - OpenTK.Core.Platform.IPalComponent.Name + - OpenTK.Platform.IPalComponent.Name - uid: OpenTK.Platform.Native.SDL.SDLCursorComponent.Provides commentId: P:OpenTK.Platform.Native.SDL.SDLCursorComponent.Provides id: Provides @@ -97,15 +89,11 @@ items: fullName: OpenTK.Platform.Native.SDL.SDLCursorComponent.Provides type: Property source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLCursorComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Provides - path: opentk/src/OpenTK.Platform.Native/SDL/SDLCursorComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLCursorComponent.cs startLine: 19 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: Specifies which PAL components this object provides. example: [] @@ -113,11 +101,11 @@ items: content: public PalComponents Provides { get; } parameters: [] return: - type: OpenTK.Core.Platform.PalComponents + type: OpenTK.Platform.PalComponents content.vb: Public ReadOnly Property Provides As PalComponents overload: OpenTK.Platform.Native.SDL.SDLCursorComponent.Provides* implements: - - OpenTK.Core.Platform.IPalComponent.Provides + - OpenTK.Platform.IPalComponent.Provides - uid: OpenTK.Platform.Native.SDL.SDLCursorComponent.Logger commentId: P:OpenTK.Platform.Native.SDL.SDLCursorComponent.Logger id: Logger @@ -130,15 +118,11 @@ items: fullName: OpenTK.Platform.Native.SDL.SDLCursorComponent.Logger type: Property source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLCursorComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Logger - path: opentk/src/OpenTK.Platform.Native/SDL/SDLCursorComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLCursorComponent.cs startLine: 22 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: Provides a logger for this component. example: [] @@ -150,28 +134,24 @@ items: content.vb: Public Property Logger As ILogger overload: OpenTK.Platform.Native.SDL.SDLCursorComponent.Logger* implements: - - OpenTK.Core.Platform.IPalComponent.Logger -- uid: OpenTK.Platform.Native.SDL.SDLCursorComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - commentId: M:OpenTK.Platform.Native.SDL.SDLCursorComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - id: Initialize(OpenTK.Core.Platform.ToolkitOptions) + - OpenTK.Platform.IPalComponent.Logger +- uid: OpenTK.Platform.Native.SDL.SDLCursorComponent.Initialize(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Native.SDL.SDLCursorComponent.Initialize(OpenTK.Platform.ToolkitOptions) + id: Initialize(OpenTK.Platform.ToolkitOptions) parent: OpenTK.Platform.Native.SDL.SDLCursorComponent langs: - csharp - vb name: Initialize(ToolkitOptions) nameWithType: SDLCursorComponent.Initialize(ToolkitOptions) - fullName: OpenTK.Platform.Native.SDL.SDLCursorComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + fullName: OpenTK.Platform.Native.SDL.SDLCursorComponent.Initialize(OpenTK.Platform.ToolkitOptions) type: Method source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLCursorComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Initialize - path: opentk/src/OpenTK.Platform.Native/SDL/SDLCursorComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLCursorComponent.cs startLine: 25 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: Initialize the component. example: [] @@ -179,12 +159,12 @@ items: content: public void Initialize(ToolkitOptions options) parameters: - id: options - type: OpenTK.Core.Platform.ToolkitOptions + type: OpenTK.Platform.ToolkitOptions description: The options to initialize the component with. content.vb: Public Sub Initialize(options As ToolkitOptions) overload: OpenTK.Platform.Native.SDL.SDLCursorComponent.Initialize* implements: - - OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + - OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) - uid: OpenTK.Platform.Native.SDL.SDLCursorComponent.CanLoadSystemCursors commentId: P:OpenTK.Platform.Native.SDL.SDLCursorComponent.CanLoadSystemCursors id: CanLoadSystemCursors @@ -197,15 +177,11 @@ items: fullName: OpenTK.Platform.Native.SDL.SDLCursorComponent.CanLoadSystemCursors type: Property source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLCursorComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CanLoadSystemCursors - path: opentk/src/OpenTK.Platform.Native/SDL/SDLCursorComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLCursorComponent.cs startLine: 30 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: True if the driver can load system cursors. example: [] @@ -217,10 +193,10 @@ items: content.vb: Public ReadOnly Property CanLoadSystemCursors As Boolean overload: OpenTK.Platform.Native.SDL.SDLCursorComponent.CanLoadSystemCursors* seealso: - - linkId: OpenTK.Core.Platform.ICursorComponent.Create(OpenTK.Core.Platform.SystemCursorType) - commentId: M:OpenTK.Core.Platform.ICursorComponent.Create(OpenTK.Core.Platform.SystemCursorType) + - linkId: OpenTK.Platform.ICursorComponent.Create(OpenTK.Platform.SystemCursorType) + commentId: M:OpenTK.Platform.ICursorComponent.Create(OpenTK.Platform.SystemCursorType) implements: - - OpenTK.Core.Platform.ICursorComponent.CanLoadSystemCursors + - OpenTK.Platform.ICursorComponent.CanLoadSystemCursors - uid: OpenTK.Platform.Native.SDL.SDLCursorComponent.CanInspectSystemCursors commentId: P:OpenTK.Platform.Native.SDL.SDLCursorComponent.CanInspectSystemCursors id: CanInspectSystemCursors @@ -233,20 +209,16 @@ items: fullName: OpenTK.Platform.Native.SDL.SDLCursorComponent.CanInspectSystemCursors type: Property source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLCursorComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CanInspectSystemCursors - path: opentk/src/OpenTK.Platform.Native/SDL/SDLCursorComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLCursorComponent.cs startLine: 33 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: >- True if the backend supports inspecting system cursor handles. - If true, functions like and works on system cursors. + If true, functions like and works on system cursors. If false, these functions will fail. example: [] @@ -258,57 +230,53 @@ items: content.vb: Public ReadOnly Property CanInspectSystemCursors As Boolean overload: OpenTK.Platform.Native.SDL.SDLCursorComponent.CanInspectSystemCursors* seealso: - - linkId: OpenTK.Core.Platform.ICursorComponent.GetSize(OpenTK.Core.Platform.CursorHandle,System.Int32@,System.Int32@) - commentId: M:OpenTK.Core.Platform.ICursorComponent.GetSize(OpenTK.Core.Platform.CursorHandle,System.Int32@,System.Int32@) - - linkId: OpenTK.Core.Platform.ICursorComponent.GetHotspot(OpenTK.Core.Platform.CursorHandle,System.Int32@,System.Int32@) - commentId: M:OpenTK.Core.Platform.ICursorComponent.GetHotspot(OpenTK.Core.Platform.CursorHandle,System.Int32@,System.Int32@) + - linkId: OpenTK.Platform.ICursorComponent.GetSize(OpenTK.Platform.CursorHandle,System.Int32@,System.Int32@) + commentId: M:OpenTK.Platform.ICursorComponent.GetSize(OpenTK.Platform.CursorHandle,System.Int32@,System.Int32@) + - linkId: OpenTK.Platform.ICursorComponent.GetHotspot(OpenTK.Platform.CursorHandle,System.Int32@,System.Int32@) + commentId: M:OpenTK.Platform.ICursorComponent.GetHotspot(OpenTK.Platform.CursorHandle,System.Int32@,System.Int32@) implements: - - OpenTK.Core.Platform.ICursorComponent.CanInspectSystemCursors -- uid: OpenTK.Platform.Native.SDL.SDLCursorComponent.Create(OpenTK.Core.Platform.SystemCursorType) - commentId: M:OpenTK.Platform.Native.SDL.SDLCursorComponent.Create(OpenTK.Core.Platform.SystemCursorType) - id: Create(OpenTK.Core.Platform.SystemCursorType) + - OpenTK.Platform.ICursorComponent.CanInspectSystemCursors +- uid: OpenTK.Platform.Native.SDL.SDLCursorComponent.Create(OpenTK.Platform.SystemCursorType) + commentId: M:OpenTK.Platform.Native.SDL.SDLCursorComponent.Create(OpenTK.Platform.SystemCursorType) + id: Create(OpenTK.Platform.SystemCursorType) parent: OpenTK.Platform.Native.SDL.SDLCursorComponent langs: - csharp - vb name: Create(SystemCursorType) nameWithType: SDLCursorComponent.Create(SystemCursorType) - fullName: OpenTK.Platform.Native.SDL.SDLCursorComponent.Create(OpenTK.Core.Platform.SystemCursorType) + fullName: OpenTK.Platform.Native.SDL.SDLCursorComponent.Create(OpenTK.Platform.SystemCursorType) type: Method source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLCursorComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Create - path: opentk/src/OpenTK.Platform.Native/SDL/SDLCursorComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLCursorComponent.cs startLine: 36 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: Create a standard system cursor. - remarks: This function is only supported if is true. + remarks: This function is only supported if is true. example: [] syntax: content: public CursorHandle Create(SystemCursorType systemCursor) parameters: - id: systemCursor - type: OpenTK.Core.Platform.SystemCursorType + type: OpenTK.Platform.SystemCursorType description: Type of the standard cursor to load. return: - type: OpenTK.Core.Platform.CursorHandle + type: OpenTK.Platform.CursorHandle description: A handle to the created cursor. content.vb: Public Function Create(systemCursor As SystemCursorType) As CursorHandle overload: OpenTK.Platform.Native.SDL.SDLCursorComponent.Create* exceptions: - - type: OpenTK.Core.Platform.PalNotImplementedException - commentId: T:OpenTK.Core.Platform.PalNotImplementedException - description: Driver does not implement this function. See . - - type: OpenTK.Core.Platform.PlatformException - commentId: T:OpenTK.Core.Platform.PlatformException + - type: OpenTK.Platform.PalNotImplementedException + commentId: T:OpenTK.Platform.PalNotImplementedException + description: Driver does not implement this function. See . + - type: OpenTK.Platform.PlatformException + commentId: T:OpenTK.Platform.PlatformException description: System does not provide cursor type selected by systemCursor. implements: - - OpenTK.Core.Platform.ICursorComponent.Create(OpenTK.Core.Platform.SystemCursorType) + - OpenTK.Platform.ICursorComponent.Create(OpenTK.Platform.SystemCursorType) - uid: OpenTK.Platform.Native.SDL.SDLCursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.Int32,System.Int32) commentId: M:OpenTK.Platform.Native.SDL.SDLCursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.Int32,System.Int32) id: Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.Int32,System.Int32) @@ -321,15 +289,11 @@ items: fullName: OpenTK.Platform.Native.SDL.SDLCursorComponent.Create(int, int, System.ReadOnlySpan, int, int) type: Method source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLCursorComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Create - path: opentk/src/OpenTK.Platform.Native/SDL/SDLCursorComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLCursorComponent.cs startLine: 114 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: Load a cursor image from memory. example: [] @@ -352,7 +316,7 @@ items: type: System.Int32 description: The y coordinate of the cursor hotspot. return: - type: OpenTK.Core.Platform.CursorHandle + type: OpenTK.Platform.CursorHandle description: A handle to the created cursor. content.vb: Public Function Create(width As Integer, height As Integer, image As ReadOnlySpan(Of Byte), hotspotX As Integer, hotspotY As Integer) As CursorHandle overload: OpenTK.Platform.Native.SDL.SDLCursorComponent.Create* @@ -364,7 +328,7 @@ items: commentId: T:System.ArgumentException description: image is smaller than specified dimensions. implements: - - OpenTK.Core.Platform.ICursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.Int32,System.Int32) + - OpenTK.Platform.ICursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.Int32,System.Int32) nameWithType.vb: SDLCursorComponent.Create(Integer, Integer, ReadOnlySpan(Of Byte), Integer, Integer) fullName.vb: OpenTK.Platform.Native.SDL.SDLCursorComponent.Create(Integer, Integer, System.ReadOnlySpan(Of Byte), Integer, Integer) name.vb: Create(Integer, Integer, ReadOnlySpan(Of Byte), Integer, Integer) @@ -380,15 +344,11 @@ items: fullName: OpenTK.Platform.Native.SDL.SDLCursorComponent.Create(int, int, System.ReadOnlySpan, System.ReadOnlySpan, int, int) type: Method source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLCursorComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Create - path: opentk/src/OpenTK.Platform.Native/SDL/SDLCursorComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLCursorComponent.cs startLine: 140 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: Load a cursor image from memory. example: [] @@ -414,7 +374,7 @@ items: type: System.Int32 description: The y coordinate of the cursor hotspot. return: - type: OpenTK.Core.Platform.CursorHandle + type: OpenTK.Platform.CursorHandle description: A handle to the created handle. content.vb: Public Function Create(width As Integer, height As Integer, colorData As ReadOnlySpan(Of Byte), maskData As ReadOnlySpan(Of Byte), hotspotX As Integer, hotspotY As Integer) As CursorHandle overload: OpenTK.Platform.Native.SDL.SDLCursorComponent.Create* @@ -426,31 +386,27 @@ items: commentId: T:System.ArgumentException description: colorData or maskData is smaller than specified dimensions. implements: - - OpenTK.Core.Platform.ICursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.ReadOnlySpan{System.Byte},System.Int32,System.Int32) + - OpenTK.Platform.ICursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.ReadOnlySpan{System.Byte},System.Int32,System.Int32) nameWithType.vb: SDLCursorComponent.Create(Integer, Integer, ReadOnlySpan(Of Byte), ReadOnlySpan(Of Byte), Integer, Integer) fullName.vb: OpenTK.Platform.Native.SDL.SDLCursorComponent.Create(Integer, Integer, System.ReadOnlySpan(Of Byte), System.ReadOnlySpan(Of Byte), Integer, Integer) name.vb: Create(Integer, Integer, ReadOnlySpan(Of Byte), ReadOnlySpan(Of Byte), Integer, Integer) -- uid: OpenTK.Platform.Native.SDL.SDLCursorComponent.Destroy(OpenTK.Core.Platform.CursorHandle) - commentId: M:OpenTK.Platform.Native.SDL.SDLCursorComponent.Destroy(OpenTK.Core.Platform.CursorHandle) - id: Destroy(OpenTK.Core.Platform.CursorHandle) +- uid: OpenTK.Platform.Native.SDL.SDLCursorComponent.Destroy(OpenTK.Platform.CursorHandle) + commentId: M:OpenTK.Platform.Native.SDL.SDLCursorComponent.Destroy(OpenTK.Platform.CursorHandle) + id: Destroy(OpenTK.Platform.CursorHandle) parent: OpenTK.Platform.Native.SDL.SDLCursorComponent langs: - csharp - vb name: Destroy(CursorHandle) nameWithType: SDLCursorComponent.Destroy(CursorHandle) - fullName: OpenTK.Platform.Native.SDL.SDLCursorComponent.Destroy(OpenTK.Core.Platform.CursorHandle) + fullName: OpenTK.Platform.Native.SDL.SDLCursorComponent.Destroy(OpenTK.Platform.CursorHandle) type: Method source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLCursorComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Destroy - path: opentk/src/OpenTK.Platform.Native/SDL/SDLCursorComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLCursorComponent.cs startLine: 167 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: Destroy a cursor object. example: [] @@ -458,7 +414,7 @@ items: content: public void Destroy(CursorHandle handle) parameters: - id: handle - type: OpenTK.Core.Platform.CursorHandle + type: OpenTK.Platform.CursorHandle description: Handle to a cursor object. content.vb: Public Sub Destroy(handle As CursorHandle) overload: OpenTK.Platform.Native.SDL.SDLCursorComponent.Destroy* @@ -467,28 +423,24 @@ items: commentId: T:System.ArgumentNullException description: handle is null. implements: - - OpenTK.Core.Platform.ICursorComponent.Destroy(OpenTK.Core.Platform.CursorHandle) -- uid: OpenTK.Platform.Native.SDL.SDLCursorComponent.IsSystemCursor(OpenTK.Core.Platform.CursorHandle) - commentId: M:OpenTK.Platform.Native.SDL.SDLCursorComponent.IsSystemCursor(OpenTK.Core.Platform.CursorHandle) - id: IsSystemCursor(OpenTK.Core.Platform.CursorHandle) + - OpenTK.Platform.ICursorComponent.Destroy(OpenTK.Platform.CursorHandle) +- uid: OpenTK.Platform.Native.SDL.SDLCursorComponent.IsSystemCursor(OpenTK.Platform.CursorHandle) + commentId: M:OpenTK.Platform.Native.SDL.SDLCursorComponent.IsSystemCursor(OpenTK.Platform.CursorHandle) + id: IsSystemCursor(OpenTK.Platform.CursorHandle) parent: OpenTK.Platform.Native.SDL.SDLCursorComponent langs: - csharp - vb name: IsSystemCursor(CursorHandle) nameWithType: SDLCursorComponent.IsSystemCursor(CursorHandle) - fullName: OpenTK.Platform.Native.SDL.SDLCursorComponent.IsSystemCursor(OpenTK.Core.Platform.CursorHandle) + fullName: OpenTK.Platform.Native.SDL.SDLCursorComponent.IsSystemCursor(OpenTK.Platform.CursorHandle) type: Method source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLCursorComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: IsSystemCursor - path: opentk/src/OpenTK.Platform.Native/SDL/SDLCursorComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLCursorComponent.cs startLine: 198 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: Returns true if this cursor is a system cursor. example: [] @@ -496,7 +448,7 @@ items: content: public bool IsSystemCursor(CursorHandle handle) parameters: - id: handle - type: OpenTK.Core.Platform.CursorHandle + type: OpenTK.Platform.CursorHandle description: Handle to a cursor. return: type: System.Boolean @@ -504,40 +456,36 @@ items: content.vb: Public Function IsSystemCursor(handle As CursorHandle) As Boolean overload: OpenTK.Platform.Native.SDL.SDLCursorComponent.IsSystemCursor* seealso: - - linkId: OpenTK.Core.Platform.ICursorComponent.Create(OpenTK.Core.Platform.SystemCursorType) - commentId: M:OpenTK.Core.Platform.ICursorComponent.Create(OpenTK.Core.Platform.SystemCursorType) + - linkId: OpenTK.Platform.ICursorComponent.Create(OpenTK.Platform.SystemCursorType) + commentId: M:OpenTK.Platform.ICursorComponent.Create(OpenTK.Platform.SystemCursorType) implements: - - OpenTK.Core.Platform.ICursorComponent.IsSystemCursor(OpenTK.Core.Platform.CursorHandle) -- uid: OpenTK.Platform.Native.SDL.SDLCursorComponent.GetSize(OpenTK.Core.Platform.CursorHandle,System.Int32@,System.Int32@) - commentId: M:OpenTK.Platform.Native.SDL.SDLCursorComponent.GetSize(OpenTK.Core.Platform.CursorHandle,System.Int32@,System.Int32@) - id: GetSize(OpenTK.Core.Platform.CursorHandle,System.Int32@,System.Int32@) + - OpenTK.Platform.ICursorComponent.IsSystemCursor(OpenTK.Platform.CursorHandle) +- uid: OpenTK.Platform.Native.SDL.SDLCursorComponent.GetSize(OpenTK.Platform.CursorHandle,System.Int32@,System.Int32@) + commentId: M:OpenTK.Platform.Native.SDL.SDLCursorComponent.GetSize(OpenTK.Platform.CursorHandle,System.Int32@,System.Int32@) + id: GetSize(OpenTK.Platform.CursorHandle,System.Int32@,System.Int32@) parent: OpenTK.Platform.Native.SDL.SDLCursorComponent langs: - csharp - vb name: GetSize(CursorHandle, out int, out int) nameWithType: SDLCursorComponent.GetSize(CursorHandle, out int, out int) - fullName: OpenTK.Platform.Native.SDL.SDLCursorComponent.GetSize(OpenTK.Core.Platform.CursorHandle, out int, out int) + fullName: OpenTK.Platform.Native.SDL.SDLCursorComponent.GetSize(OpenTK.Platform.CursorHandle, out int, out int) type: Method source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLCursorComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetSize - path: opentk/src/OpenTK.Platform.Native/SDL/SDLCursorComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLCursorComponent.cs startLine: 205 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: Get the size of the cursor image. - remarks: If handle is a system cursor and is false this function will fail. + remarks: If handle is a system cursor and is false this function will fail. example: [] syntax: content: public void GetSize(CursorHandle handle, out int width, out int height) parameters: - id: handle - type: OpenTK.Core.Platform.CursorHandle + type: OpenTK.Platform.CursorHandle description: Handle to a cursor object. - id: width type: System.Int32 @@ -552,48 +500,44 @@ items: commentId: T:System.ArgumentNullException description: handle is null. seealso: - - linkId: OpenTK.Core.Platform.ICursorComponent.IsSystemCursor(OpenTK.Core.Platform.CursorHandle) - commentId: M:OpenTK.Core.Platform.ICursorComponent.IsSystemCursor(OpenTK.Core.Platform.CursorHandle) - - linkId: OpenTK.Core.Platform.ICursorComponent.CanInspectSystemCursors - commentId: P:OpenTK.Core.Platform.ICursorComponent.CanInspectSystemCursors + - linkId: OpenTK.Platform.ICursorComponent.IsSystemCursor(OpenTK.Platform.CursorHandle) + commentId: M:OpenTK.Platform.ICursorComponent.IsSystemCursor(OpenTK.Platform.CursorHandle) + - linkId: OpenTK.Platform.ICursorComponent.CanInspectSystemCursors + commentId: P:OpenTK.Platform.ICursorComponent.CanInspectSystemCursors implements: - - OpenTK.Core.Platform.ICursorComponent.GetSize(OpenTK.Core.Platform.CursorHandle,System.Int32@,System.Int32@) + - OpenTK.Platform.ICursorComponent.GetSize(OpenTK.Platform.CursorHandle,System.Int32@,System.Int32@) nameWithType.vb: SDLCursorComponent.GetSize(CursorHandle, Integer, Integer) - fullName.vb: OpenTK.Platform.Native.SDL.SDLCursorComponent.GetSize(OpenTK.Core.Platform.CursorHandle, Integer, Integer) + fullName.vb: OpenTK.Platform.Native.SDL.SDLCursorComponent.GetSize(OpenTK.Platform.CursorHandle, Integer, Integer) name.vb: GetSize(CursorHandle, Integer, Integer) -- uid: OpenTK.Platform.Native.SDL.SDLCursorComponent.GetHotspot(OpenTK.Core.Platform.CursorHandle,System.Int32@,System.Int32@) - commentId: M:OpenTK.Platform.Native.SDL.SDLCursorComponent.GetHotspot(OpenTK.Core.Platform.CursorHandle,System.Int32@,System.Int32@) - id: GetHotspot(OpenTK.Core.Platform.CursorHandle,System.Int32@,System.Int32@) +- uid: OpenTK.Platform.Native.SDL.SDLCursorComponent.GetHotspot(OpenTK.Platform.CursorHandle,System.Int32@,System.Int32@) + commentId: M:OpenTK.Platform.Native.SDL.SDLCursorComponent.GetHotspot(OpenTK.Platform.CursorHandle,System.Int32@,System.Int32@) + id: GetHotspot(OpenTK.Platform.CursorHandle,System.Int32@,System.Int32@) parent: OpenTK.Platform.Native.SDL.SDLCursorComponent langs: - csharp - vb name: GetHotspot(CursorHandle, out int, out int) nameWithType: SDLCursorComponent.GetHotspot(CursorHandle, out int, out int) - fullName: OpenTK.Platform.Native.SDL.SDLCursorComponent.GetHotspot(OpenTK.Core.Platform.CursorHandle, out int, out int) + fullName: OpenTK.Platform.Native.SDL.SDLCursorComponent.GetHotspot(OpenTK.Platform.CursorHandle, out int, out int) type: Method source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLCursorComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetHotspot - path: opentk/src/OpenTK.Platform.Native/SDL/SDLCursorComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLCursorComponent.cs startLine: 219 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: >- Get the hotspot location of the mouse cursor. - Getting the hotspot of a system cursor is not guaranteed to be possible, check before trying. - remarks: If handle is a system cursor and is false this function will fail. + Getting the hotspot of a system cursor is not guaranteed to be possible, check before trying. + remarks: If handle is a system cursor and is false this function will fail. example: [] syntax: content: public void GetHotspot(CursorHandle handle, out int x, out int y) parameters: - id: handle - type: OpenTK.Core.Platform.CursorHandle + type: OpenTK.Platform.CursorHandle description: Handle to a cursor object. - id: x type: System.Int32 @@ -608,14 +552,14 @@ items: commentId: T:System.ArgumentNullException description: handle is null. seealso: - - linkId: OpenTK.Core.Platform.ICursorComponent.IsSystemCursor(OpenTK.Core.Platform.CursorHandle) - commentId: M:OpenTK.Core.Platform.ICursorComponent.IsSystemCursor(OpenTK.Core.Platform.CursorHandle) - - linkId: OpenTK.Core.Platform.ICursorComponent.CanInspectSystemCursors - commentId: P:OpenTK.Core.Platform.ICursorComponent.CanInspectSystemCursors + - linkId: OpenTK.Platform.ICursorComponent.IsSystemCursor(OpenTK.Platform.CursorHandle) + commentId: M:OpenTK.Platform.ICursorComponent.IsSystemCursor(OpenTK.Platform.CursorHandle) + - linkId: OpenTK.Platform.ICursorComponent.CanInspectSystemCursors + commentId: P:OpenTK.Platform.ICursorComponent.CanInspectSystemCursors implements: - - OpenTK.Core.Platform.ICursorComponent.GetHotspot(OpenTK.Core.Platform.CursorHandle,System.Int32@,System.Int32@) + - OpenTK.Platform.ICursorComponent.GetHotspot(OpenTK.Platform.CursorHandle,System.Int32@,System.Int32@) nameWithType.vb: SDLCursorComponent.GetHotspot(CursorHandle, Integer, Integer) - fullName.vb: OpenTK.Platform.Native.SDL.SDLCursorComponent.GetHotspot(OpenTK.Core.Platform.CursorHandle, Integer, Integer) + fullName.vb: OpenTK.Platform.Native.SDL.SDLCursorComponent.GetHotspot(OpenTK.Platform.CursorHandle, Integer, Integer) name.vb: GetHotspot(CursorHandle, Integer, Integer) references: - uid: OpenTK.Platform.Native.SDL @@ -667,20 +611,20 @@ references: nameWithType.vb: Object fullName.vb: Object name.vb: Object -- uid: OpenTK.Core.Platform.ICursorComponent - commentId: T:OpenTK.Core.Platform.ICursorComponent - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.ICursorComponent.html +- uid: OpenTK.Platform.ICursorComponent + commentId: T:OpenTK.Platform.ICursorComponent + parent: OpenTK.Platform + href: OpenTK.Platform.ICursorComponent.html name: ICursorComponent nameWithType: ICursorComponent - fullName: OpenTK.Core.Platform.ICursorComponent -- uid: OpenTK.Core.Platform.IPalComponent - commentId: T:OpenTK.Core.Platform.IPalComponent - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.IPalComponent.html + fullName: OpenTK.Platform.ICursorComponent +- uid: OpenTK.Platform.IPalComponent + commentId: T:OpenTK.Platform.IPalComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IPalComponent.html name: IPalComponent nameWithType: IPalComponent - fullName: OpenTK.Core.Platform.IPalComponent + fullName: OpenTK.Platform.IPalComponent - uid: System.Object.Equals(System.Object) commentId: M:System.Object.Equals(System.Object) parent: System.Object @@ -907,49 +851,41 @@ references: name: System nameWithType: System fullName: System -- uid: OpenTK.Core.Platform - commentId: N:OpenTK.Core.Platform +- uid: OpenTK.Platform + commentId: N:OpenTK.Platform href: OpenTK.html - name: OpenTK.Core.Platform - nameWithType: OpenTK.Core.Platform - fullName: OpenTK.Core.Platform + name: OpenTK.Platform + nameWithType: OpenTK.Platform + fullName: OpenTK.Platform spec.csharp: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html spec.vb: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html - uid: OpenTK.Platform.Native.SDL.SDLCursorComponent.Name* commentId: Overload:OpenTK.Platform.Native.SDL.SDLCursorComponent.Name href: OpenTK.Platform.Native.SDL.SDLCursorComponent.html#OpenTK_Platform_Native_SDL_SDLCursorComponent_Name name: Name nameWithType: SDLCursorComponent.Name fullName: OpenTK.Platform.Native.SDL.SDLCursorComponent.Name -- uid: OpenTK.Core.Platform.IPalComponent.Name - commentId: P:OpenTK.Core.Platform.IPalComponent.Name - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Name +- uid: OpenTK.Platform.IPalComponent.Name + commentId: P:OpenTK.Platform.IPalComponent.Name + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Name name: Name nameWithType: IPalComponent.Name - fullName: OpenTK.Core.Platform.IPalComponent.Name + fullName: OpenTK.Platform.IPalComponent.Name - uid: System.String commentId: T:System.String parent: System @@ -967,33 +903,33 @@ references: name: Provides nameWithType: SDLCursorComponent.Provides fullName: OpenTK.Platform.Native.SDL.SDLCursorComponent.Provides -- uid: OpenTK.Core.Platform.IPalComponent.Provides - commentId: P:OpenTK.Core.Platform.IPalComponent.Provides - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Provides +- uid: OpenTK.Platform.IPalComponent.Provides + commentId: P:OpenTK.Platform.IPalComponent.Provides + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Provides name: Provides nameWithType: IPalComponent.Provides - fullName: OpenTK.Core.Platform.IPalComponent.Provides -- uid: OpenTK.Core.Platform.PalComponents - commentId: T:OpenTK.Core.Platform.PalComponents - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.PalComponents.html + fullName: OpenTK.Platform.IPalComponent.Provides +- uid: OpenTK.Platform.PalComponents + commentId: T:OpenTK.Platform.PalComponents + parent: OpenTK.Platform + href: OpenTK.Platform.PalComponents.html name: PalComponents nameWithType: PalComponents - fullName: OpenTK.Core.Platform.PalComponents + fullName: OpenTK.Platform.PalComponents - uid: OpenTK.Platform.Native.SDL.SDLCursorComponent.Logger* commentId: Overload:OpenTK.Platform.Native.SDL.SDLCursorComponent.Logger href: OpenTK.Platform.Native.SDL.SDLCursorComponent.html#OpenTK_Platform_Native_SDL_SDLCursorComponent_Logger name: Logger nameWithType: SDLCursorComponent.Logger fullName: OpenTK.Platform.Native.SDL.SDLCursorComponent.Logger -- uid: OpenTK.Core.Platform.IPalComponent.Logger - commentId: P:OpenTK.Core.Platform.IPalComponent.Logger - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Logger +- uid: OpenTK.Platform.IPalComponent.Logger + commentId: P:OpenTK.Platform.IPalComponent.Logger + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Logger name: Logger nameWithType: IPalComponent.Logger - fullName: OpenTK.Core.Platform.IPalComponent.Logger + fullName: OpenTK.Platform.IPalComponent.Logger - uid: OpenTK.Core.Utility.ILogger commentId: T:OpenTK.Core.Utility.ILogger parent: OpenTK.Core.Utility @@ -1033,66 +969,66 @@ references: href: OpenTK.Core.Utility.html - uid: OpenTK.Platform.Native.SDL.SDLCursorComponent.Initialize* commentId: Overload:OpenTK.Platform.Native.SDL.SDLCursorComponent.Initialize - href: OpenTK.Platform.Native.SDL.SDLCursorComponent.html#OpenTK_Platform_Native_SDL_SDLCursorComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + href: OpenTK.Platform.Native.SDL.SDLCursorComponent.html#OpenTK_Platform_Native_SDL_SDLCursorComponent_Initialize_OpenTK_Platform_ToolkitOptions_ name: Initialize nameWithType: SDLCursorComponent.Initialize fullName: OpenTK.Platform.Native.SDL.SDLCursorComponent.Initialize -- uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - commentId: M:OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ +- uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ name: Initialize(ToolkitOptions) nameWithType: IPalComponent.Initialize(ToolkitOptions) - fullName: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + fullName: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) spec.csharp: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + - uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.ToolkitOptions + - uid: OpenTK.Platform.ToolkitOptions name: ToolkitOptions - href: OpenTK.Core.Platform.ToolkitOptions.html + href: OpenTK.Platform.ToolkitOptions.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + - uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.ToolkitOptions + - uid: OpenTK.Platform.ToolkitOptions name: ToolkitOptions - href: OpenTK.Core.Platform.ToolkitOptions.html + href: OpenTK.Platform.ToolkitOptions.html - name: ) -- uid: OpenTK.Core.Platform.ToolkitOptions - commentId: T:OpenTK.Core.Platform.ToolkitOptions - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.ToolkitOptions.html +- uid: OpenTK.Platform.ToolkitOptions + commentId: T:OpenTK.Platform.ToolkitOptions + parent: OpenTK.Platform + href: OpenTK.Platform.ToolkitOptions.html name: ToolkitOptions nameWithType: ToolkitOptions - fullName: OpenTK.Core.Platform.ToolkitOptions -- uid: OpenTK.Core.Platform.ICursorComponent.Create(OpenTK.Core.Platform.SystemCursorType) - commentId: M:OpenTK.Core.Platform.ICursorComponent.Create(OpenTK.Core.Platform.SystemCursorType) - parent: OpenTK.Core.Platform.ICursorComponent - href: OpenTK.Core.Platform.ICursorComponent.html#OpenTK_Core_Platform_ICursorComponent_Create_OpenTK_Core_Platform_SystemCursorType_ + fullName: OpenTK.Platform.ToolkitOptions +- uid: OpenTK.Platform.ICursorComponent.Create(OpenTK.Platform.SystemCursorType) + commentId: M:OpenTK.Platform.ICursorComponent.Create(OpenTK.Platform.SystemCursorType) + parent: OpenTK.Platform.ICursorComponent + href: OpenTK.Platform.ICursorComponent.html#OpenTK_Platform_ICursorComponent_Create_OpenTK_Platform_SystemCursorType_ name: Create(SystemCursorType) nameWithType: ICursorComponent.Create(SystemCursorType) - fullName: OpenTK.Core.Platform.ICursorComponent.Create(OpenTK.Core.Platform.SystemCursorType) + fullName: OpenTK.Platform.ICursorComponent.Create(OpenTK.Platform.SystemCursorType) spec.csharp: - - uid: OpenTK.Core.Platform.ICursorComponent.Create(OpenTK.Core.Platform.SystemCursorType) + - uid: OpenTK.Platform.ICursorComponent.Create(OpenTK.Platform.SystemCursorType) name: Create - href: OpenTK.Core.Platform.ICursorComponent.html#OpenTK_Core_Platform_ICursorComponent_Create_OpenTK_Core_Platform_SystemCursorType_ + href: OpenTK.Platform.ICursorComponent.html#OpenTK_Platform_ICursorComponent_Create_OpenTK_Platform_SystemCursorType_ - name: ( - - uid: OpenTK.Core.Platform.SystemCursorType + - uid: OpenTK.Platform.SystemCursorType name: SystemCursorType - href: OpenTK.Core.Platform.SystemCursorType.html + href: OpenTK.Platform.SystemCursorType.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.ICursorComponent.Create(OpenTK.Core.Platform.SystemCursorType) + - uid: OpenTK.Platform.ICursorComponent.Create(OpenTK.Platform.SystemCursorType) name: Create - href: OpenTK.Core.Platform.ICursorComponent.html#OpenTK_Core_Platform_ICursorComponent_Create_OpenTK_Core_Platform_SystemCursorType_ + href: OpenTK.Platform.ICursorComponent.html#OpenTK_Platform_ICursorComponent_Create_OpenTK_Platform_SystemCursorType_ - name: ( - - uid: OpenTK.Core.Platform.SystemCursorType + - uid: OpenTK.Platform.SystemCursorType name: SystemCursorType - href: OpenTK.Core.Platform.SystemCursorType.html + href: OpenTK.Platform.SystemCursorType.html - name: ) - uid: OpenTK.Platform.Native.SDL.SDLCursorComponent.CanLoadSystemCursors* commentId: Overload:OpenTK.Platform.Native.SDL.SDLCursorComponent.CanLoadSystemCursors @@ -1100,13 +1036,13 @@ references: name: CanLoadSystemCursors nameWithType: SDLCursorComponent.CanLoadSystemCursors fullName: OpenTK.Platform.Native.SDL.SDLCursorComponent.CanLoadSystemCursors -- uid: OpenTK.Core.Platform.ICursorComponent.CanLoadSystemCursors - commentId: P:OpenTK.Core.Platform.ICursorComponent.CanLoadSystemCursors - parent: OpenTK.Core.Platform.ICursorComponent - href: OpenTK.Core.Platform.ICursorComponent.html#OpenTK_Core_Platform_ICursorComponent_CanLoadSystemCursors +- uid: OpenTK.Platform.ICursorComponent.CanLoadSystemCursors + commentId: P:OpenTK.Platform.ICursorComponent.CanLoadSystemCursors + parent: OpenTK.Platform.ICursorComponent + href: OpenTK.Platform.ICursorComponent.html#OpenTK_Platform_ICursorComponent_CanLoadSystemCursors name: CanLoadSystemCursors nameWithType: ICursorComponent.CanLoadSystemCursors - fullName: OpenTK.Core.Platform.ICursorComponent.CanLoadSystemCursors + fullName: OpenTK.Platform.ICursorComponent.CanLoadSystemCursors - uid: System.Boolean commentId: T:System.Boolean parent: System @@ -1118,25 +1054,25 @@ references: nameWithType.vb: Boolean fullName.vb: Boolean name.vb: Boolean -- uid: OpenTK.Core.Platform.ICursorComponent.GetSize(OpenTK.Core.Platform.CursorHandle,System.Int32@,System.Int32@) - commentId: M:OpenTK.Core.Platform.ICursorComponent.GetSize(OpenTK.Core.Platform.CursorHandle,System.Int32@,System.Int32@) - parent: OpenTK.Core.Platform.ICursorComponent +- uid: OpenTK.Platform.ICursorComponent.GetSize(OpenTK.Platform.CursorHandle,System.Int32@,System.Int32@) + commentId: M:OpenTK.Platform.ICursorComponent.GetSize(OpenTK.Platform.CursorHandle,System.Int32@,System.Int32@) + parent: OpenTK.Platform.ICursorComponent isExternal: true - href: OpenTK.Core.Platform.ICursorComponent.html#OpenTK_Core_Platform_ICursorComponent_GetSize_OpenTK_Core_Platform_CursorHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.ICursorComponent.html#OpenTK_Platform_ICursorComponent_GetSize_OpenTK_Platform_CursorHandle_System_Int32__System_Int32__ name: GetSize(CursorHandle, out int, out int) nameWithType: ICursorComponent.GetSize(CursorHandle, out int, out int) - fullName: OpenTK.Core.Platform.ICursorComponent.GetSize(OpenTK.Core.Platform.CursorHandle, out int, out int) + fullName: OpenTK.Platform.ICursorComponent.GetSize(OpenTK.Platform.CursorHandle, out int, out int) nameWithType.vb: ICursorComponent.GetSize(CursorHandle, Integer, Integer) - fullName.vb: OpenTK.Core.Platform.ICursorComponent.GetSize(OpenTK.Core.Platform.CursorHandle, Integer, Integer) + fullName.vb: OpenTK.Platform.ICursorComponent.GetSize(OpenTK.Platform.CursorHandle, Integer, Integer) name.vb: GetSize(CursorHandle, Integer, Integer) spec.csharp: - - uid: OpenTK.Core.Platform.ICursorComponent.GetSize(OpenTK.Core.Platform.CursorHandle,System.Int32@,System.Int32@) + - uid: OpenTK.Platform.ICursorComponent.GetSize(OpenTK.Platform.CursorHandle,System.Int32@,System.Int32@) name: GetSize - href: OpenTK.Core.Platform.ICursorComponent.html#OpenTK_Core_Platform_ICursorComponent_GetSize_OpenTK_Core_Platform_CursorHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.ICursorComponent.html#OpenTK_Platform_ICursorComponent_GetSize_OpenTK_Platform_CursorHandle_System_Int32__System_Int32__ - name: ( - - uid: OpenTK.Core.Platform.CursorHandle + - uid: OpenTK.Platform.CursorHandle name: CursorHandle - href: OpenTK.Core.Platform.CursorHandle.html + href: OpenTK.Platform.CursorHandle.html - name: ',' - name: " " - name: out @@ -1155,13 +1091,13 @@ references: href: https://learn.microsoft.com/dotnet/api/system.int32 - name: ) spec.vb: - - uid: OpenTK.Core.Platform.ICursorComponent.GetSize(OpenTK.Core.Platform.CursorHandle,System.Int32@,System.Int32@) + - uid: OpenTK.Platform.ICursorComponent.GetSize(OpenTK.Platform.CursorHandle,System.Int32@,System.Int32@) name: GetSize - href: OpenTK.Core.Platform.ICursorComponent.html#OpenTK_Core_Platform_ICursorComponent_GetSize_OpenTK_Core_Platform_CursorHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.ICursorComponent.html#OpenTK_Platform_ICursorComponent_GetSize_OpenTK_Platform_CursorHandle_System_Int32__System_Int32__ - name: ( - - uid: OpenTK.Core.Platform.CursorHandle + - uid: OpenTK.Platform.CursorHandle name: CursorHandle - href: OpenTK.Core.Platform.CursorHandle.html + href: OpenTK.Platform.CursorHandle.html - name: ',' - name: " " - uid: System.Int32 @@ -1175,25 +1111,25 @@ references: isExternal: true href: https://learn.microsoft.com/dotnet/api/system.int32 - name: ) -- uid: OpenTK.Core.Platform.ICursorComponent.GetHotspot(OpenTK.Core.Platform.CursorHandle,System.Int32@,System.Int32@) - commentId: M:OpenTK.Core.Platform.ICursorComponent.GetHotspot(OpenTK.Core.Platform.CursorHandle,System.Int32@,System.Int32@) - parent: OpenTK.Core.Platform.ICursorComponent +- uid: OpenTK.Platform.ICursorComponent.GetHotspot(OpenTK.Platform.CursorHandle,System.Int32@,System.Int32@) + commentId: M:OpenTK.Platform.ICursorComponent.GetHotspot(OpenTK.Platform.CursorHandle,System.Int32@,System.Int32@) + parent: OpenTK.Platform.ICursorComponent isExternal: true - href: OpenTK.Core.Platform.ICursorComponent.html#OpenTK_Core_Platform_ICursorComponent_GetHotspot_OpenTK_Core_Platform_CursorHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.ICursorComponent.html#OpenTK_Platform_ICursorComponent_GetHotspot_OpenTK_Platform_CursorHandle_System_Int32__System_Int32__ name: GetHotspot(CursorHandle, out int, out int) nameWithType: ICursorComponent.GetHotspot(CursorHandle, out int, out int) - fullName: OpenTK.Core.Platform.ICursorComponent.GetHotspot(OpenTK.Core.Platform.CursorHandle, out int, out int) + fullName: OpenTK.Platform.ICursorComponent.GetHotspot(OpenTK.Platform.CursorHandle, out int, out int) nameWithType.vb: ICursorComponent.GetHotspot(CursorHandle, Integer, Integer) - fullName.vb: OpenTK.Core.Platform.ICursorComponent.GetHotspot(OpenTK.Core.Platform.CursorHandle, Integer, Integer) + fullName.vb: OpenTK.Platform.ICursorComponent.GetHotspot(OpenTK.Platform.CursorHandle, Integer, Integer) name.vb: GetHotspot(CursorHandle, Integer, Integer) spec.csharp: - - uid: OpenTK.Core.Platform.ICursorComponent.GetHotspot(OpenTK.Core.Platform.CursorHandle,System.Int32@,System.Int32@) + - uid: OpenTK.Platform.ICursorComponent.GetHotspot(OpenTK.Platform.CursorHandle,System.Int32@,System.Int32@) name: GetHotspot - href: OpenTK.Core.Platform.ICursorComponent.html#OpenTK_Core_Platform_ICursorComponent_GetHotspot_OpenTK_Core_Platform_CursorHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.ICursorComponent.html#OpenTK_Platform_ICursorComponent_GetHotspot_OpenTK_Platform_CursorHandle_System_Int32__System_Int32__ - name: ( - - uid: OpenTK.Core.Platform.CursorHandle + - uid: OpenTK.Platform.CursorHandle name: CursorHandle - href: OpenTK.Core.Platform.CursorHandle.html + href: OpenTK.Platform.CursorHandle.html - name: ',' - name: " " - name: out @@ -1212,13 +1148,13 @@ references: href: https://learn.microsoft.com/dotnet/api/system.int32 - name: ) spec.vb: - - uid: OpenTK.Core.Platform.ICursorComponent.GetHotspot(OpenTK.Core.Platform.CursorHandle,System.Int32@,System.Int32@) + - uid: OpenTK.Platform.ICursorComponent.GetHotspot(OpenTK.Platform.CursorHandle,System.Int32@,System.Int32@) name: GetHotspot - href: OpenTK.Core.Platform.ICursorComponent.html#OpenTK_Core_Platform_ICursorComponent_GetHotspot_OpenTK_Core_Platform_CursorHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.ICursorComponent.html#OpenTK_Platform_ICursorComponent_GetHotspot_OpenTK_Platform_CursorHandle_System_Int32__System_Int32__ - name: ( - - uid: OpenTK.Core.Platform.CursorHandle + - uid: OpenTK.Platform.CursorHandle name: CursorHandle - href: OpenTK.Core.Platform.CursorHandle.html + href: OpenTK.Platform.CursorHandle.html - name: ',' - name: " " - uid: System.Int32 @@ -1238,45 +1174,45 @@ references: name: CanInspectSystemCursors nameWithType: SDLCursorComponent.CanInspectSystemCursors fullName: OpenTK.Platform.Native.SDL.SDLCursorComponent.CanInspectSystemCursors -- uid: OpenTK.Core.Platform.ICursorComponent.CanInspectSystemCursors - commentId: P:OpenTK.Core.Platform.ICursorComponent.CanInspectSystemCursors - parent: OpenTK.Core.Platform.ICursorComponent - href: OpenTK.Core.Platform.ICursorComponent.html#OpenTK_Core_Platform_ICursorComponent_CanInspectSystemCursors +- uid: OpenTK.Platform.ICursorComponent.CanInspectSystemCursors + commentId: P:OpenTK.Platform.ICursorComponent.CanInspectSystemCursors + parent: OpenTK.Platform.ICursorComponent + href: OpenTK.Platform.ICursorComponent.html#OpenTK_Platform_ICursorComponent_CanInspectSystemCursors name: CanInspectSystemCursors nameWithType: ICursorComponent.CanInspectSystemCursors - fullName: OpenTK.Core.Platform.ICursorComponent.CanInspectSystemCursors -- uid: OpenTK.Core.Platform.PalNotImplementedException - commentId: T:OpenTK.Core.Platform.PalNotImplementedException - href: OpenTK.Core.Platform.PalNotImplementedException.html + fullName: OpenTK.Platform.ICursorComponent.CanInspectSystemCursors +- uid: OpenTK.Platform.PalNotImplementedException + commentId: T:OpenTK.Platform.PalNotImplementedException + href: OpenTK.Platform.PalNotImplementedException.html name: PalNotImplementedException nameWithType: PalNotImplementedException - fullName: OpenTK.Core.Platform.PalNotImplementedException -- uid: OpenTK.Core.Platform.PlatformException - commentId: T:OpenTK.Core.Platform.PlatformException - href: OpenTK.Core.Platform.PlatformException.html + fullName: OpenTK.Platform.PalNotImplementedException +- uid: OpenTK.Platform.PlatformException + commentId: T:OpenTK.Platform.PlatformException + href: OpenTK.Platform.PlatformException.html name: PlatformException nameWithType: PlatformException - fullName: OpenTK.Core.Platform.PlatformException + fullName: OpenTK.Platform.PlatformException - uid: OpenTK.Platform.Native.SDL.SDLCursorComponent.Create* commentId: Overload:OpenTK.Platform.Native.SDL.SDLCursorComponent.Create - href: OpenTK.Platform.Native.SDL.SDLCursorComponent.html#OpenTK_Platform_Native_SDL_SDLCursorComponent_Create_OpenTK_Core_Platform_SystemCursorType_ + href: OpenTK.Platform.Native.SDL.SDLCursorComponent.html#OpenTK_Platform_Native_SDL_SDLCursorComponent_Create_OpenTK_Platform_SystemCursorType_ name: Create nameWithType: SDLCursorComponent.Create fullName: OpenTK.Platform.Native.SDL.SDLCursorComponent.Create -- uid: OpenTK.Core.Platform.SystemCursorType - commentId: T:OpenTK.Core.Platform.SystemCursorType - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.SystemCursorType.html +- uid: OpenTK.Platform.SystemCursorType + commentId: T:OpenTK.Platform.SystemCursorType + parent: OpenTK.Platform + href: OpenTK.Platform.SystemCursorType.html name: SystemCursorType nameWithType: SystemCursorType - fullName: OpenTK.Core.Platform.SystemCursorType -- uid: OpenTK.Core.Platform.CursorHandle - commentId: T:OpenTK.Core.Platform.CursorHandle - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.CursorHandle.html + fullName: OpenTK.Platform.SystemCursorType +- uid: OpenTK.Platform.CursorHandle + commentId: T:OpenTK.Platform.CursorHandle + parent: OpenTK.Platform + href: OpenTK.Platform.CursorHandle.html name: CursorHandle nameWithType: CursorHandle - fullName: OpenTK.Core.Platform.CursorHandle + fullName: OpenTK.Platform.CursorHandle - uid: System.ArgumentOutOfRangeException commentId: T:System.ArgumentOutOfRangeException isExternal: true @@ -1291,21 +1227,21 @@ references: name: ArgumentException nameWithType: ArgumentException fullName: System.ArgumentException -- uid: OpenTK.Core.Platform.ICursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.Int32,System.Int32) - commentId: M:OpenTK.Core.Platform.ICursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.Int32,System.Int32) - parent: OpenTK.Core.Platform.ICursorComponent +- uid: OpenTK.Platform.ICursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.Int32,System.Int32) + commentId: M:OpenTK.Platform.ICursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.Int32,System.Int32) + parent: OpenTK.Platform.ICursorComponent isExternal: true - href: OpenTK.Core.Platform.ICursorComponent.html#OpenTK_Core_Platform_ICursorComponent_Create_System_Int32_System_Int32_System_ReadOnlySpan_System_Byte__System_Int32_System_Int32_ + href: OpenTK.Platform.ICursorComponent.html#OpenTK_Platform_ICursorComponent_Create_System_Int32_System_Int32_System_ReadOnlySpan_System_Byte__System_Int32_System_Int32_ name: Create(int, int, ReadOnlySpan, int, int) nameWithType: ICursorComponent.Create(int, int, ReadOnlySpan, int, int) - fullName: OpenTK.Core.Platform.ICursorComponent.Create(int, int, System.ReadOnlySpan, int, int) + fullName: OpenTK.Platform.ICursorComponent.Create(int, int, System.ReadOnlySpan, int, int) nameWithType.vb: ICursorComponent.Create(Integer, Integer, ReadOnlySpan(Of Byte), Integer, Integer) - fullName.vb: OpenTK.Core.Platform.ICursorComponent.Create(Integer, Integer, System.ReadOnlySpan(Of Byte), Integer, Integer) + fullName.vb: OpenTK.Platform.ICursorComponent.Create(Integer, Integer, System.ReadOnlySpan(Of Byte), Integer, Integer) name.vb: Create(Integer, Integer, ReadOnlySpan(Of Byte), Integer, Integer) spec.csharp: - - uid: OpenTK.Core.Platform.ICursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.Int32,System.Int32) + - uid: OpenTK.Platform.ICursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.Int32,System.Int32) name: Create - href: OpenTK.Core.Platform.ICursorComponent.html#OpenTK_Core_Platform_ICursorComponent_Create_System_Int32_System_Int32_System_ReadOnlySpan_System_Byte__System_Int32_System_Int32_ + href: OpenTK.Platform.ICursorComponent.html#OpenTK_Platform_ICursorComponent_Create_System_Int32_System_Int32_System_ReadOnlySpan_System_Byte__System_Int32_System_Int32_ - name: ( - uid: System.Int32 name: int @@ -1343,9 +1279,9 @@ references: href: https://learn.microsoft.com/dotnet/api/system.int32 - name: ) spec.vb: - - uid: OpenTK.Core.Platform.ICursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.Int32,System.Int32) + - uid: OpenTK.Platform.ICursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.Int32,System.Int32) name: Create - href: OpenTK.Core.Platform.ICursorComponent.html#OpenTK_Core_Platform_ICursorComponent_Create_System_Int32_System_Int32_System_ReadOnlySpan_System_Byte__System_Int32_System_Int32_ + href: OpenTK.Platform.ICursorComponent.html#OpenTK_Platform_ICursorComponent_Create_System_Int32_System_Int32_System_ReadOnlySpan_System_Byte__System_Int32_System_Int32_ - name: ( - uid: System.Int32 name: Integer @@ -1458,21 +1394,21 @@ references: - name: " " - name: T - name: ) -- uid: OpenTK.Core.Platform.ICursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.ReadOnlySpan{System.Byte},System.Int32,System.Int32) - commentId: M:OpenTK.Core.Platform.ICursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.ReadOnlySpan{System.Byte},System.Int32,System.Int32) - parent: OpenTK.Core.Platform.ICursorComponent +- uid: OpenTK.Platform.ICursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.ReadOnlySpan{System.Byte},System.Int32,System.Int32) + commentId: M:OpenTK.Platform.ICursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.ReadOnlySpan{System.Byte},System.Int32,System.Int32) + parent: OpenTK.Platform.ICursorComponent isExternal: true - href: OpenTK.Core.Platform.ICursorComponent.html#OpenTK_Core_Platform_ICursorComponent_Create_System_Int32_System_Int32_System_ReadOnlySpan_System_Byte__System_ReadOnlySpan_System_Byte__System_Int32_System_Int32_ + href: OpenTK.Platform.ICursorComponent.html#OpenTK_Platform_ICursorComponent_Create_System_Int32_System_Int32_System_ReadOnlySpan_System_Byte__System_ReadOnlySpan_System_Byte__System_Int32_System_Int32_ name: Create(int, int, ReadOnlySpan, ReadOnlySpan, int, int) nameWithType: ICursorComponent.Create(int, int, ReadOnlySpan, ReadOnlySpan, int, int) - fullName: OpenTK.Core.Platform.ICursorComponent.Create(int, int, System.ReadOnlySpan, System.ReadOnlySpan, int, int) + fullName: OpenTK.Platform.ICursorComponent.Create(int, int, System.ReadOnlySpan, System.ReadOnlySpan, int, int) nameWithType.vb: ICursorComponent.Create(Integer, Integer, ReadOnlySpan(Of Byte), ReadOnlySpan(Of Byte), Integer, Integer) - fullName.vb: OpenTK.Core.Platform.ICursorComponent.Create(Integer, Integer, System.ReadOnlySpan(Of Byte), System.ReadOnlySpan(Of Byte), Integer, Integer) + fullName.vb: OpenTK.Platform.ICursorComponent.Create(Integer, Integer, System.ReadOnlySpan(Of Byte), System.ReadOnlySpan(Of Byte), Integer, Integer) name.vb: Create(Integer, Integer, ReadOnlySpan(Of Byte), ReadOnlySpan(Of Byte), Integer, Integer) spec.csharp: - - uid: OpenTK.Core.Platform.ICursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.ReadOnlySpan{System.Byte},System.Int32,System.Int32) + - uid: OpenTK.Platform.ICursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.ReadOnlySpan{System.Byte},System.Int32,System.Int32) name: Create - href: OpenTK.Core.Platform.ICursorComponent.html#OpenTK_Core_Platform_ICursorComponent_Create_System_Int32_System_Int32_System_ReadOnlySpan_System_Byte__System_ReadOnlySpan_System_Byte__System_Int32_System_Int32_ + href: OpenTK.Platform.ICursorComponent.html#OpenTK_Platform_ICursorComponent_Create_System_Int32_System_Int32_System_ReadOnlySpan_System_Byte__System_ReadOnlySpan_System_Byte__System_Int32_System_Int32_ - name: ( - uid: System.Int32 name: int @@ -1522,9 +1458,9 @@ references: href: https://learn.microsoft.com/dotnet/api/system.int32 - name: ) spec.vb: - - uid: OpenTK.Core.Platform.ICursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.ReadOnlySpan{System.Byte},System.Int32,System.Int32) + - uid: OpenTK.Platform.ICursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.ReadOnlySpan{System.Byte},System.Int32,System.Int32) name: Create - href: OpenTK.Core.Platform.ICursorComponent.html#OpenTK_Core_Platform_ICursorComponent_Create_System_Int32_System_Int32_System_ReadOnlySpan_System_Byte__System_ReadOnlySpan_System_Byte__System_Int32_System_Int32_ + href: OpenTK.Platform.ICursorComponent.html#OpenTK_Platform_ICursorComponent_Create_System_Int32_System_Int32_System_ReadOnlySpan_System_Byte__System_ReadOnlySpan_System_Byte__System_Int32_System_Int32_ - name: ( - uid: System.Int32 name: Integer @@ -1586,75 +1522,75 @@ references: fullName: System.ArgumentNullException - uid: OpenTK.Platform.Native.SDL.SDLCursorComponent.Destroy* commentId: Overload:OpenTK.Platform.Native.SDL.SDLCursorComponent.Destroy - href: OpenTK.Platform.Native.SDL.SDLCursorComponent.html#OpenTK_Platform_Native_SDL_SDLCursorComponent_Destroy_OpenTK_Core_Platform_CursorHandle_ + href: OpenTK.Platform.Native.SDL.SDLCursorComponent.html#OpenTK_Platform_Native_SDL_SDLCursorComponent_Destroy_OpenTK_Platform_CursorHandle_ name: Destroy nameWithType: SDLCursorComponent.Destroy fullName: OpenTK.Platform.Native.SDL.SDLCursorComponent.Destroy -- uid: OpenTK.Core.Platform.ICursorComponent.Destroy(OpenTK.Core.Platform.CursorHandle) - commentId: M:OpenTK.Core.Platform.ICursorComponent.Destroy(OpenTK.Core.Platform.CursorHandle) - parent: OpenTK.Core.Platform.ICursorComponent - href: OpenTK.Core.Platform.ICursorComponent.html#OpenTK_Core_Platform_ICursorComponent_Destroy_OpenTK_Core_Platform_CursorHandle_ +- uid: OpenTK.Platform.ICursorComponent.Destroy(OpenTK.Platform.CursorHandle) + commentId: M:OpenTK.Platform.ICursorComponent.Destroy(OpenTK.Platform.CursorHandle) + parent: OpenTK.Platform.ICursorComponent + href: OpenTK.Platform.ICursorComponent.html#OpenTK_Platform_ICursorComponent_Destroy_OpenTK_Platform_CursorHandle_ name: Destroy(CursorHandle) nameWithType: ICursorComponent.Destroy(CursorHandle) - fullName: OpenTK.Core.Platform.ICursorComponent.Destroy(OpenTK.Core.Platform.CursorHandle) + fullName: OpenTK.Platform.ICursorComponent.Destroy(OpenTK.Platform.CursorHandle) spec.csharp: - - uid: OpenTK.Core.Platform.ICursorComponent.Destroy(OpenTK.Core.Platform.CursorHandle) + - uid: OpenTK.Platform.ICursorComponent.Destroy(OpenTK.Platform.CursorHandle) name: Destroy - href: OpenTK.Core.Platform.ICursorComponent.html#OpenTK_Core_Platform_ICursorComponent_Destroy_OpenTK_Core_Platform_CursorHandle_ + href: OpenTK.Platform.ICursorComponent.html#OpenTK_Platform_ICursorComponent_Destroy_OpenTK_Platform_CursorHandle_ - name: ( - - uid: OpenTK.Core.Platform.CursorHandle + - uid: OpenTK.Platform.CursorHandle name: CursorHandle - href: OpenTK.Core.Platform.CursorHandle.html + href: OpenTK.Platform.CursorHandle.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.ICursorComponent.Destroy(OpenTK.Core.Platform.CursorHandle) + - uid: OpenTK.Platform.ICursorComponent.Destroy(OpenTK.Platform.CursorHandle) name: Destroy - href: OpenTK.Core.Platform.ICursorComponent.html#OpenTK_Core_Platform_ICursorComponent_Destroy_OpenTK_Core_Platform_CursorHandle_ + href: OpenTK.Platform.ICursorComponent.html#OpenTK_Platform_ICursorComponent_Destroy_OpenTK_Platform_CursorHandle_ - name: ( - - uid: OpenTK.Core.Platform.CursorHandle + - uid: OpenTK.Platform.CursorHandle name: CursorHandle - href: OpenTK.Core.Platform.CursorHandle.html + href: OpenTK.Platform.CursorHandle.html - name: ) - uid: OpenTK.Platform.Native.SDL.SDLCursorComponent.IsSystemCursor* commentId: Overload:OpenTK.Platform.Native.SDL.SDLCursorComponent.IsSystemCursor - href: OpenTK.Platform.Native.SDL.SDLCursorComponent.html#OpenTK_Platform_Native_SDL_SDLCursorComponent_IsSystemCursor_OpenTK_Core_Platform_CursorHandle_ + href: OpenTK.Platform.Native.SDL.SDLCursorComponent.html#OpenTK_Platform_Native_SDL_SDLCursorComponent_IsSystemCursor_OpenTK_Platform_CursorHandle_ name: IsSystemCursor nameWithType: SDLCursorComponent.IsSystemCursor fullName: OpenTK.Platform.Native.SDL.SDLCursorComponent.IsSystemCursor -- uid: OpenTK.Core.Platform.ICursorComponent.IsSystemCursor(OpenTK.Core.Platform.CursorHandle) - commentId: M:OpenTK.Core.Platform.ICursorComponent.IsSystemCursor(OpenTK.Core.Platform.CursorHandle) - parent: OpenTK.Core.Platform.ICursorComponent - href: OpenTK.Core.Platform.ICursorComponent.html#OpenTK_Core_Platform_ICursorComponent_IsSystemCursor_OpenTK_Core_Platform_CursorHandle_ +- uid: OpenTK.Platform.ICursorComponent.IsSystemCursor(OpenTK.Platform.CursorHandle) + commentId: M:OpenTK.Platform.ICursorComponent.IsSystemCursor(OpenTK.Platform.CursorHandle) + parent: OpenTK.Platform.ICursorComponent + href: OpenTK.Platform.ICursorComponent.html#OpenTK_Platform_ICursorComponent_IsSystemCursor_OpenTK_Platform_CursorHandle_ name: IsSystemCursor(CursorHandle) nameWithType: ICursorComponent.IsSystemCursor(CursorHandle) - fullName: OpenTK.Core.Platform.ICursorComponent.IsSystemCursor(OpenTK.Core.Platform.CursorHandle) + fullName: OpenTK.Platform.ICursorComponent.IsSystemCursor(OpenTK.Platform.CursorHandle) spec.csharp: - - uid: OpenTK.Core.Platform.ICursorComponent.IsSystemCursor(OpenTK.Core.Platform.CursorHandle) + - uid: OpenTK.Platform.ICursorComponent.IsSystemCursor(OpenTK.Platform.CursorHandle) name: IsSystemCursor - href: OpenTK.Core.Platform.ICursorComponent.html#OpenTK_Core_Platform_ICursorComponent_IsSystemCursor_OpenTK_Core_Platform_CursorHandle_ + href: OpenTK.Platform.ICursorComponent.html#OpenTK_Platform_ICursorComponent_IsSystemCursor_OpenTK_Platform_CursorHandle_ - name: ( - - uid: OpenTK.Core.Platform.CursorHandle + - uid: OpenTK.Platform.CursorHandle name: CursorHandle - href: OpenTK.Core.Platform.CursorHandle.html + href: OpenTK.Platform.CursorHandle.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.ICursorComponent.IsSystemCursor(OpenTK.Core.Platform.CursorHandle) + - uid: OpenTK.Platform.ICursorComponent.IsSystemCursor(OpenTK.Platform.CursorHandle) name: IsSystemCursor - href: OpenTK.Core.Platform.ICursorComponent.html#OpenTK_Core_Platform_ICursorComponent_IsSystemCursor_OpenTK_Core_Platform_CursorHandle_ + href: OpenTK.Platform.ICursorComponent.html#OpenTK_Platform_ICursorComponent_IsSystemCursor_OpenTK_Platform_CursorHandle_ - name: ( - - uid: OpenTK.Core.Platform.CursorHandle + - uid: OpenTK.Platform.CursorHandle name: CursorHandle - href: OpenTK.Core.Platform.CursorHandle.html + href: OpenTK.Platform.CursorHandle.html - name: ) - uid: OpenTK.Platform.Native.SDL.SDLCursorComponent.GetSize* commentId: Overload:OpenTK.Platform.Native.SDL.SDLCursorComponent.GetSize - href: OpenTK.Platform.Native.SDL.SDLCursorComponent.html#OpenTK_Platform_Native_SDL_SDLCursorComponent_GetSize_OpenTK_Core_Platform_CursorHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.Native.SDL.SDLCursorComponent.html#OpenTK_Platform_Native_SDL_SDLCursorComponent_GetSize_OpenTK_Platform_CursorHandle_System_Int32__System_Int32__ name: GetSize nameWithType: SDLCursorComponent.GetSize fullName: OpenTK.Platform.Native.SDL.SDLCursorComponent.GetSize - uid: OpenTK.Platform.Native.SDL.SDLCursorComponent.GetHotspot* commentId: Overload:OpenTK.Platform.Native.SDL.SDLCursorComponent.GetHotspot - href: OpenTK.Platform.Native.SDL.SDLCursorComponent.html#OpenTK_Platform_Native_SDL_SDLCursorComponent_GetHotspot_OpenTK_Core_Platform_CursorHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.Native.SDL.SDLCursorComponent.html#OpenTK_Platform_Native_SDL_SDLCursorComponent_GetHotspot_OpenTK_Platform_CursorHandle_System_Int32__System_Int32__ name: GetHotspot nameWithType: SDLCursorComponent.GetHotspot fullName: OpenTK.Platform.Native.SDL.SDLCursorComponent.GetHotspot diff --git a/api/OpenTK.Platform.Native.SDL.SDLDisplayComponent.yml b/api/OpenTK.Platform.Native.SDL.SDLDisplayComponent.yml index be6bca3e..3ff67726 100644 --- a/api/OpenTK.Platform.Native.SDL.SDLDisplayComponent.yml +++ b/api/OpenTK.Platform.Native.SDL.SDLDisplayComponent.yml @@ -7,18 +7,18 @@ items: children: - OpenTK.Platform.Native.SDL.SDLDisplayComponent.CanGetVirtualPosition - OpenTK.Platform.Native.SDL.SDLDisplayComponent.CanSetVideoMode - - OpenTK.Platform.Native.SDL.SDLDisplayComponent.Close(OpenTK.Core.Platform.DisplayHandle) + - OpenTK.Platform.Native.SDL.SDLDisplayComponent.Close(OpenTK.Platform.DisplayHandle) - OpenTK.Platform.Native.SDL.SDLDisplayComponent.GetDisplayCount - - OpenTK.Platform.Native.SDL.SDLDisplayComponent.GetDisplayScale(OpenTK.Core.Platform.DisplayHandle,System.Single@,System.Single@) - - OpenTK.Platform.Native.SDL.SDLDisplayComponent.GetName(OpenTK.Core.Platform.DisplayHandle) - - OpenTK.Platform.Native.SDL.SDLDisplayComponent.GetRefreshRate(OpenTK.Core.Platform.DisplayHandle,System.Single@) - - OpenTK.Platform.Native.SDL.SDLDisplayComponent.GetResolution(OpenTK.Core.Platform.DisplayHandle,System.Int32@,System.Int32@) - - OpenTK.Platform.Native.SDL.SDLDisplayComponent.GetSupportedVideoModes(OpenTK.Core.Platform.DisplayHandle) - - OpenTK.Platform.Native.SDL.SDLDisplayComponent.GetVideoMode(OpenTK.Core.Platform.DisplayHandle,OpenTK.Core.Platform.VideoMode@) - - OpenTK.Platform.Native.SDL.SDLDisplayComponent.GetVirtualPosition(OpenTK.Core.Platform.DisplayHandle,System.Int32@,System.Int32@) - - OpenTK.Platform.Native.SDL.SDLDisplayComponent.GetWorkArea(OpenTK.Core.Platform.DisplayHandle,OpenTK.Mathematics.Box2i@) - - OpenTK.Platform.Native.SDL.SDLDisplayComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - - OpenTK.Platform.Native.SDL.SDLDisplayComponent.IsPrimary(OpenTK.Core.Platform.DisplayHandle) + - OpenTK.Platform.Native.SDL.SDLDisplayComponent.GetDisplayScale(OpenTK.Platform.DisplayHandle,System.Single@,System.Single@) + - OpenTK.Platform.Native.SDL.SDLDisplayComponent.GetName(OpenTK.Platform.DisplayHandle) + - OpenTK.Platform.Native.SDL.SDLDisplayComponent.GetRefreshRate(OpenTK.Platform.DisplayHandle,System.Single@) + - OpenTK.Platform.Native.SDL.SDLDisplayComponent.GetResolution(OpenTK.Platform.DisplayHandle,System.Int32@,System.Int32@) + - OpenTK.Platform.Native.SDL.SDLDisplayComponent.GetSupportedVideoModes(OpenTK.Platform.DisplayHandle) + - OpenTK.Platform.Native.SDL.SDLDisplayComponent.GetVideoMode(OpenTK.Platform.DisplayHandle,OpenTK.Platform.VideoMode@) + - OpenTK.Platform.Native.SDL.SDLDisplayComponent.GetVirtualPosition(OpenTK.Platform.DisplayHandle,System.Int32@,System.Int32@) + - OpenTK.Platform.Native.SDL.SDLDisplayComponent.GetWorkArea(OpenTK.Platform.DisplayHandle,OpenTK.Mathematics.Box2i@) + - OpenTK.Platform.Native.SDL.SDLDisplayComponent.Initialize(OpenTK.Platform.ToolkitOptions) + - OpenTK.Platform.Native.SDL.SDLDisplayComponent.IsPrimary(OpenTK.Platform.DisplayHandle) - OpenTK.Platform.Native.SDL.SDLDisplayComponent.Logger - OpenTK.Platform.Native.SDL.SDLDisplayComponent.Name - OpenTK.Platform.Native.SDL.SDLDisplayComponent.Open(System.Int32) @@ -32,15 +32,11 @@ items: fullName: OpenTK.Platform.Native.SDL.SDLDisplayComponent type: Class source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLDisplayComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SDLDisplayComponent - path: opentk/src/OpenTK.Platform.Native/SDL/SDLDisplayComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLDisplayComponent.cs startLine: 15 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL syntax: content: 'public class SDLDisplayComponent : IDisplayComponent, IPalComponent' @@ -48,8 +44,8 @@ items: inheritance: - System.Object implements: - - OpenTK.Core.Platform.IDisplayComponent - - OpenTK.Core.Platform.IPalComponent + - OpenTK.Platform.IDisplayComponent + - OpenTK.Platform.IPalComponent inheritedMembers: - System.Object.Equals(System.Object) - System.Object.Equals(System.Object,System.Object) @@ -70,15 +66,11 @@ items: fullName: OpenTK.Platform.Native.SDL.SDLDisplayComponent.Name type: Property source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLDisplayComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Name - path: opentk/src/OpenTK.Platform.Native/SDL/SDLDisplayComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLDisplayComponent.cs startLine: 18 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: Name of the abstraction layer component. example: [] @@ -90,7 +82,7 @@ items: content.vb: Public ReadOnly Property Name As String overload: OpenTK.Platform.Native.SDL.SDLDisplayComponent.Name* implements: - - OpenTK.Core.Platform.IPalComponent.Name + - OpenTK.Platform.IPalComponent.Name - uid: OpenTK.Platform.Native.SDL.SDLDisplayComponent.Provides commentId: P:OpenTK.Platform.Native.SDL.SDLDisplayComponent.Provides id: Provides @@ -103,15 +95,11 @@ items: fullName: OpenTK.Platform.Native.SDL.SDLDisplayComponent.Provides type: Property source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLDisplayComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Provides - path: opentk/src/OpenTK.Platform.Native/SDL/SDLDisplayComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLDisplayComponent.cs startLine: 21 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: Specifies which PAL components this object provides. example: [] @@ -119,11 +107,11 @@ items: content: public PalComponents Provides { get; } parameters: [] return: - type: OpenTK.Core.Platform.PalComponents + type: OpenTK.Platform.PalComponents content.vb: Public ReadOnly Property Provides As PalComponents overload: OpenTK.Platform.Native.SDL.SDLDisplayComponent.Provides* implements: - - OpenTK.Core.Platform.IPalComponent.Provides + - OpenTK.Platform.IPalComponent.Provides - uid: OpenTK.Platform.Native.SDL.SDLDisplayComponent.Logger commentId: P:OpenTK.Platform.Native.SDL.SDLDisplayComponent.Logger id: Logger @@ -136,15 +124,11 @@ items: fullName: OpenTK.Platform.Native.SDL.SDLDisplayComponent.Logger type: Property source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLDisplayComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Logger - path: opentk/src/OpenTK.Platform.Native/SDL/SDLDisplayComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLDisplayComponent.cs startLine: 24 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: Provides a logger for this component. example: [] @@ -156,28 +140,24 @@ items: content.vb: Public Property Logger As ILogger overload: OpenTK.Platform.Native.SDL.SDLDisplayComponent.Logger* implements: - - OpenTK.Core.Platform.IPalComponent.Logger -- uid: OpenTK.Platform.Native.SDL.SDLDisplayComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - commentId: M:OpenTK.Platform.Native.SDL.SDLDisplayComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - id: Initialize(OpenTK.Core.Platform.ToolkitOptions) + - OpenTK.Platform.IPalComponent.Logger +- uid: OpenTK.Platform.Native.SDL.SDLDisplayComponent.Initialize(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Native.SDL.SDLDisplayComponent.Initialize(OpenTK.Platform.ToolkitOptions) + id: Initialize(OpenTK.Platform.ToolkitOptions) parent: OpenTK.Platform.Native.SDL.SDLDisplayComponent langs: - csharp - vb name: Initialize(ToolkitOptions) nameWithType: SDLDisplayComponent.Initialize(ToolkitOptions) - fullName: OpenTK.Platform.Native.SDL.SDLDisplayComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + fullName: OpenTK.Platform.Native.SDL.SDLDisplayComponent.Initialize(OpenTK.Platform.ToolkitOptions) type: Method source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLDisplayComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Initialize - path: opentk/src/OpenTK.Platform.Native/SDL/SDLDisplayComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLDisplayComponent.cs startLine: 27 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: Initialize the component. example: [] @@ -185,12 +165,12 @@ items: content: public void Initialize(ToolkitOptions options) parameters: - id: options - type: OpenTK.Core.Platform.ToolkitOptions + type: OpenTK.Platform.ToolkitOptions description: The options to initialize the component with. content.vb: Public Sub Initialize(options As ToolkitOptions) overload: OpenTK.Platform.Native.SDL.SDLDisplayComponent.Initialize* implements: - - OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + - OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) - uid: OpenTK.Platform.Native.SDL.SDLDisplayComponent.CanSetVideoMode commentId: P:OpenTK.Platform.Native.SDL.SDLDisplayComponent.CanSetVideoMode id: CanSetVideoMode @@ -203,15 +183,11 @@ items: fullName: OpenTK.Platform.Native.SDL.SDLDisplayComponent.CanSetVideoMode type: Property source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLDisplayComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CanSetVideoMode - path: opentk/src/OpenTK.Platform.Native/SDL/SDLDisplayComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLDisplayComponent.cs startLine: 32 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL example: [] syntax: @@ -233,17 +209,13 @@ items: fullName: OpenTK.Platform.Native.SDL.SDLDisplayComponent.CanGetVirtualPosition type: Property source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLDisplayComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CanGetVirtualPosition - path: opentk/src/OpenTK.Platform.Native/SDL/SDLDisplayComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLDisplayComponent.cs startLine: 35 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL - summary: True if the driver can get the virtual position of the display. + summary: True if the driver can get the virtual position of the display using . example: [] syntax: content: public bool CanGetVirtualPosition { get; } @@ -253,7 +225,7 @@ items: content.vb: Public ReadOnly Property CanGetVirtualPosition As Boolean overload: OpenTK.Platform.Native.SDL.SDLDisplayComponent.CanGetVirtualPosition* implements: - - OpenTK.Core.Platform.IDisplayComponent.CanGetVirtualPosition + - OpenTK.Platform.IDisplayComponent.CanGetVirtualPosition - uid: OpenTK.Platform.Native.SDL.SDLDisplayComponent.GetDisplayCount commentId: M:OpenTK.Platform.Native.SDL.SDLDisplayComponent.GetDisplayCount id: GetDisplayCount @@ -266,15 +238,11 @@ items: fullName: OpenTK.Platform.Native.SDL.SDLDisplayComponent.GetDisplayCount() type: Method source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLDisplayComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetDisplayCount - path: opentk/src/OpenTK.Platform.Native/SDL/SDLDisplayComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLDisplayComponent.cs startLine: 58 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: Get the number of available displays. example: [] @@ -286,7 +254,7 @@ items: content.vb: Public Function GetDisplayCount() As Integer overload: OpenTK.Platform.Native.SDL.SDLDisplayComponent.GetDisplayCount* implements: - - OpenTK.Core.Platform.IDisplayComponent.GetDisplayCount + - OpenTK.Platform.IDisplayComponent.GetDisplayCount - uid: OpenTK.Platform.Native.SDL.SDLDisplayComponent.Open(System.Int32) commentId: M:OpenTK.Platform.Native.SDL.SDLDisplayComponent.Open(System.Int32) id: Open(System.Int32) @@ -299,15 +267,11 @@ items: fullName: OpenTK.Platform.Native.SDL.SDLDisplayComponent.Open(int) type: Method source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLDisplayComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Open - path: opentk/src/OpenTK.Platform.Native/SDL/SDLDisplayComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLDisplayComponent.cs startLine: 64 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: Create a display handle to the indexed display. example: [] @@ -318,7 +282,7 @@ items: type: System.Int32 description: The display index to create a display handle to. return: - type: OpenTK.Core.Platform.DisplayHandle + type: OpenTK.Platform.DisplayHandle description: Handle to the display. content.vb: Public Function Open(index As Integer) As DisplayHandle overload: OpenTK.Platform.Native.SDL.SDLDisplayComponent.Open* @@ -327,7 +291,7 @@ items: commentId: T:System.ArgumentOutOfRangeException description: index is out of range. implements: - - OpenTK.Core.Platform.IDisplayComponent.Open(System.Int32) + - OpenTK.Platform.IDisplayComponent.Open(System.Int32) nameWithType.vb: SDLDisplayComponent.Open(Integer) fullName.vb: OpenTK.Platform.Native.SDL.SDLDisplayComponent.Open(Integer) name.vb: Open(Integer) @@ -343,56 +307,48 @@ items: fullName: OpenTK.Platform.Native.SDL.SDLDisplayComponent.OpenPrimary() type: Method source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLDisplayComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: OpenPrimary - path: opentk/src/OpenTK.Platform.Native/SDL/SDLDisplayComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLDisplayComponent.cs startLine: 77 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: Create a display handle to the primary display. example: [] syntax: content: public DisplayHandle OpenPrimary() return: - type: OpenTK.Core.Platform.DisplayHandle + type: OpenTK.Platform.DisplayHandle description: Handle to the primary display. content.vb: Public Function OpenPrimary() As DisplayHandle overload: OpenTK.Platform.Native.SDL.SDLDisplayComponent.OpenPrimary* implements: - - OpenTK.Core.Platform.IDisplayComponent.OpenPrimary -- uid: OpenTK.Platform.Native.SDL.SDLDisplayComponent.Close(OpenTK.Core.Platform.DisplayHandle) - commentId: M:OpenTK.Platform.Native.SDL.SDLDisplayComponent.Close(OpenTK.Core.Platform.DisplayHandle) - id: Close(OpenTK.Core.Platform.DisplayHandle) + - OpenTK.Platform.IDisplayComponent.OpenPrimary +- uid: OpenTK.Platform.Native.SDL.SDLDisplayComponent.Close(OpenTK.Platform.DisplayHandle) + commentId: M:OpenTK.Platform.Native.SDL.SDLDisplayComponent.Close(OpenTK.Platform.DisplayHandle) + id: Close(OpenTK.Platform.DisplayHandle) parent: OpenTK.Platform.Native.SDL.SDLDisplayComponent langs: - csharp - vb name: Close(DisplayHandle) nameWithType: SDLDisplayComponent.Close(DisplayHandle) - fullName: OpenTK.Platform.Native.SDL.SDLDisplayComponent.Close(OpenTK.Core.Platform.DisplayHandle) + fullName: OpenTK.Platform.Native.SDL.SDLDisplayComponent.Close(OpenTK.Platform.DisplayHandle) type: Method source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLDisplayComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Close - path: opentk/src/OpenTK.Platform.Native/SDL/SDLDisplayComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLDisplayComponent.cs startLine: 84 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL - summary: Destroy a display handle. + summary: Close a display handle. example: [] syntax: content: public void Close(DisplayHandle handle) parameters: - id: handle - type: OpenTK.Core.Platform.DisplayHandle + type: OpenTK.Platform.DisplayHandle description: Handle to a display. content.vb: Public Sub Close(handle As DisplayHandle) overload: OpenTK.Platform.Native.SDL.SDLDisplayComponent.Close* @@ -401,28 +357,24 @@ items: commentId: T:System.ArgumentNullException description: handle is null. implements: - - OpenTK.Core.Platform.IDisplayComponent.Close(OpenTK.Core.Platform.DisplayHandle) -- uid: OpenTK.Platform.Native.SDL.SDLDisplayComponent.IsPrimary(OpenTK.Core.Platform.DisplayHandle) - commentId: M:OpenTK.Platform.Native.SDL.SDLDisplayComponent.IsPrimary(OpenTK.Core.Platform.DisplayHandle) - id: IsPrimary(OpenTK.Core.Platform.DisplayHandle) + - OpenTK.Platform.IDisplayComponent.Close(OpenTK.Platform.DisplayHandle) +- uid: OpenTK.Platform.Native.SDL.SDLDisplayComponent.IsPrimary(OpenTK.Platform.DisplayHandle) + commentId: M:OpenTK.Platform.Native.SDL.SDLDisplayComponent.IsPrimary(OpenTK.Platform.DisplayHandle) + id: IsPrimary(OpenTK.Platform.DisplayHandle) parent: OpenTK.Platform.Native.SDL.SDLDisplayComponent langs: - csharp - vb name: IsPrimary(DisplayHandle) nameWithType: SDLDisplayComponent.IsPrimary(DisplayHandle) - fullName: OpenTK.Platform.Native.SDL.SDLDisplayComponent.IsPrimary(OpenTK.Core.Platform.DisplayHandle) + fullName: OpenTK.Platform.Native.SDL.SDLDisplayComponent.IsPrimary(OpenTK.Platform.DisplayHandle) type: Method source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLDisplayComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: IsPrimary - path: opentk/src/OpenTK.Platform.Native/SDL/SDLDisplayComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLDisplayComponent.cs startLine: 91 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: Checks if a display is the primary display or not. example: [] @@ -430,7 +382,7 @@ items: content: public bool IsPrimary(DisplayHandle handle) parameters: - id: handle - type: OpenTK.Core.Platform.DisplayHandle + type: OpenTK.Platform.DisplayHandle description: The display to check whether or not is the primary display. return: type: System.Boolean @@ -438,28 +390,24 @@ items: content.vb: Public Function IsPrimary(handle As DisplayHandle) As Boolean overload: OpenTK.Platform.Native.SDL.SDLDisplayComponent.IsPrimary* implements: - - OpenTK.Core.Platform.IDisplayComponent.IsPrimary(OpenTK.Core.Platform.DisplayHandle) -- uid: OpenTK.Platform.Native.SDL.SDLDisplayComponent.GetName(OpenTK.Core.Platform.DisplayHandle) - commentId: M:OpenTK.Platform.Native.SDL.SDLDisplayComponent.GetName(OpenTK.Core.Platform.DisplayHandle) - id: GetName(OpenTK.Core.Platform.DisplayHandle) + - OpenTK.Platform.IDisplayComponent.IsPrimary(OpenTK.Platform.DisplayHandle) +- uid: OpenTK.Platform.Native.SDL.SDLDisplayComponent.GetName(OpenTK.Platform.DisplayHandle) + commentId: M:OpenTK.Platform.Native.SDL.SDLDisplayComponent.GetName(OpenTK.Platform.DisplayHandle) + id: GetName(OpenTK.Platform.DisplayHandle) parent: OpenTK.Platform.Native.SDL.SDLDisplayComponent langs: - csharp - vb name: GetName(DisplayHandle) nameWithType: SDLDisplayComponent.GetName(DisplayHandle) - fullName: OpenTK.Platform.Native.SDL.SDLDisplayComponent.GetName(OpenTK.Core.Platform.DisplayHandle) + fullName: OpenTK.Platform.Native.SDL.SDLDisplayComponent.GetName(OpenTK.Platform.DisplayHandle) type: Method source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLDisplayComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetName - path: opentk/src/OpenTK.Platform.Native/SDL/SDLDisplayComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLDisplayComponent.cs startLine: 100 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: Get the friendly name of a display. example: [] @@ -467,7 +415,7 @@ items: content: public string GetName(DisplayHandle handle) parameters: - id: handle - type: OpenTK.Core.Platform.DisplayHandle + type: OpenTK.Platform.DisplayHandle description: Handle to a display. return: type: System.String @@ -479,28 +427,24 @@ items: commentId: T:System.ArgumentNullException description: handle is null. implements: - - OpenTK.Core.Platform.IDisplayComponent.GetName(OpenTK.Core.Platform.DisplayHandle) -- uid: OpenTK.Platform.Native.SDL.SDLDisplayComponent.GetVideoMode(OpenTK.Core.Platform.DisplayHandle,OpenTK.Core.Platform.VideoMode@) - commentId: M:OpenTK.Platform.Native.SDL.SDLDisplayComponent.GetVideoMode(OpenTK.Core.Platform.DisplayHandle,OpenTK.Core.Platform.VideoMode@) - id: GetVideoMode(OpenTK.Core.Platform.DisplayHandle,OpenTK.Core.Platform.VideoMode@) + - OpenTK.Platform.IDisplayComponent.GetName(OpenTK.Platform.DisplayHandle) +- uid: OpenTK.Platform.Native.SDL.SDLDisplayComponent.GetVideoMode(OpenTK.Platform.DisplayHandle,OpenTK.Platform.VideoMode@) + commentId: M:OpenTK.Platform.Native.SDL.SDLDisplayComponent.GetVideoMode(OpenTK.Platform.DisplayHandle,OpenTK.Platform.VideoMode@) + id: GetVideoMode(OpenTK.Platform.DisplayHandle,OpenTK.Platform.VideoMode@) parent: OpenTK.Platform.Native.SDL.SDLDisplayComponent langs: - csharp - vb name: GetVideoMode(DisplayHandle, out VideoMode) nameWithType: SDLDisplayComponent.GetVideoMode(DisplayHandle, out VideoMode) - fullName: OpenTK.Platform.Native.SDL.SDLDisplayComponent.GetVideoMode(OpenTK.Core.Platform.DisplayHandle, out OpenTK.Core.Platform.VideoMode) + fullName: OpenTK.Platform.Native.SDL.SDLDisplayComponent.GetVideoMode(OpenTK.Platform.DisplayHandle, out OpenTK.Platform.VideoMode) type: Method source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLDisplayComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetVideoMode - path: opentk/src/OpenTK.Platform.Native/SDL/SDLDisplayComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLDisplayComponent.cs startLine: 115 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: Get the active video mode of a display. example: [] @@ -508,10 +452,10 @@ items: content: public void GetVideoMode(DisplayHandle handle, out VideoMode mode) parameters: - id: handle - type: OpenTK.Core.Platform.DisplayHandle + type: OpenTK.Platform.DisplayHandle description: Handle to a display. - id: mode - type: OpenTK.Core.Platform.VideoMode + type: OpenTK.Platform.VideoMode description: Active video mode of display. content.vb: Public Sub GetVideoMode(handle As DisplayHandle, mode As VideoMode) overload: OpenTK.Platform.Native.SDL.SDLDisplayComponent.GetVideoMode* @@ -520,31 +464,27 @@ items: commentId: T:System.ArgumentNullException description: handle is null. implements: - - OpenTK.Core.Platform.IDisplayComponent.GetVideoMode(OpenTK.Core.Platform.DisplayHandle,OpenTK.Core.Platform.VideoMode@) + - OpenTK.Platform.IDisplayComponent.GetVideoMode(OpenTK.Platform.DisplayHandle,OpenTK.Platform.VideoMode@) nameWithType.vb: SDLDisplayComponent.GetVideoMode(DisplayHandle, VideoMode) - fullName.vb: OpenTK.Platform.Native.SDL.SDLDisplayComponent.GetVideoMode(OpenTK.Core.Platform.DisplayHandle, OpenTK.Core.Platform.VideoMode) + fullName.vb: OpenTK.Platform.Native.SDL.SDLDisplayComponent.GetVideoMode(OpenTK.Platform.DisplayHandle, OpenTK.Platform.VideoMode) name.vb: GetVideoMode(DisplayHandle, VideoMode) -- uid: OpenTK.Platform.Native.SDL.SDLDisplayComponent.GetSupportedVideoModes(OpenTK.Core.Platform.DisplayHandle) - commentId: M:OpenTK.Platform.Native.SDL.SDLDisplayComponent.GetSupportedVideoModes(OpenTK.Core.Platform.DisplayHandle) - id: GetSupportedVideoModes(OpenTK.Core.Platform.DisplayHandle) +- uid: OpenTK.Platform.Native.SDL.SDLDisplayComponent.GetSupportedVideoModes(OpenTK.Platform.DisplayHandle) + commentId: M:OpenTK.Platform.Native.SDL.SDLDisplayComponent.GetSupportedVideoModes(OpenTK.Platform.DisplayHandle) + id: GetSupportedVideoModes(OpenTK.Platform.DisplayHandle) parent: OpenTK.Platform.Native.SDL.SDLDisplayComponent langs: - csharp - vb name: GetSupportedVideoModes(DisplayHandle) nameWithType: SDLDisplayComponent.GetSupportedVideoModes(DisplayHandle) - fullName: OpenTK.Platform.Native.SDL.SDLDisplayComponent.GetSupportedVideoModes(OpenTK.Core.Platform.DisplayHandle) + fullName: OpenTK.Platform.Native.SDL.SDLDisplayComponent.GetSupportedVideoModes(OpenTK.Platform.DisplayHandle) type: Method source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLDisplayComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetSupportedVideoModes - path: opentk/src/OpenTK.Platform.Native/SDL/SDLDisplayComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLDisplayComponent.cs startLine: 131 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: Get all supported video modes for a specific display. example: [] @@ -552,10 +492,10 @@ items: content: public VideoMode[] GetSupportedVideoModes(DisplayHandle handle) parameters: - id: handle - type: OpenTK.Core.Platform.DisplayHandle + type: OpenTK.Platform.DisplayHandle description: Handle to a display. return: - type: OpenTK.Core.Platform.VideoMode[] + type: OpenTK.Platform.VideoMode[] description: An array of all supported video modes. content.vb: Public Function GetSupportedVideoModes(handle As DisplayHandle) As VideoMode() overload: OpenTK.Platform.Native.SDL.SDLDisplayComponent.GetSupportedVideoModes* @@ -564,28 +504,24 @@ items: commentId: T:System.ArgumentNullException description: handle is null. implements: - - OpenTK.Core.Platform.IDisplayComponent.GetSupportedVideoModes(OpenTK.Core.Platform.DisplayHandle) -- uid: OpenTK.Platform.Native.SDL.SDLDisplayComponent.GetVirtualPosition(OpenTK.Core.Platform.DisplayHandle,System.Int32@,System.Int32@) - commentId: M:OpenTK.Platform.Native.SDL.SDLDisplayComponent.GetVirtualPosition(OpenTK.Core.Platform.DisplayHandle,System.Int32@,System.Int32@) - id: GetVirtualPosition(OpenTK.Core.Platform.DisplayHandle,System.Int32@,System.Int32@) + - OpenTK.Platform.IDisplayComponent.GetSupportedVideoModes(OpenTK.Platform.DisplayHandle) +- uid: OpenTK.Platform.Native.SDL.SDLDisplayComponent.GetVirtualPosition(OpenTK.Platform.DisplayHandle,System.Int32@,System.Int32@) + commentId: M:OpenTK.Platform.Native.SDL.SDLDisplayComponent.GetVirtualPosition(OpenTK.Platform.DisplayHandle,System.Int32@,System.Int32@) + id: GetVirtualPosition(OpenTK.Platform.DisplayHandle,System.Int32@,System.Int32@) parent: OpenTK.Platform.Native.SDL.SDLDisplayComponent langs: - csharp - vb name: GetVirtualPosition(DisplayHandle, out int, out int) nameWithType: SDLDisplayComponent.GetVirtualPosition(DisplayHandle, out int, out int) - fullName: OpenTK.Platform.Native.SDL.SDLDisplayComponent.GetVirtualPosition(OpenTK.Core.Platform.DisplayHandle, out int, out int) + fullName: OpenTK.Platform.Native.SDL.SDLDisplayComponent.GetVirtualPosition(OpenTK.Platform.DisplayHandle, out int, out int) type: Method source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLDisplayComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetVirtualPosition - path: opentk/src/OpenTK.Platform.Native/SDL/SDLDisplayComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLDisplayComponent.cs startLine: 154 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: Get the position of the display in the virtual desktop. example: [] @@ -593,7 +529,7 @@ items: content: public void GetVirtualPosition(DisplayHandle handle, out int x, out int y) parameters: - id: handle - type: OpenTK.Core.Platform.DisplayHandle + type: OpenTK.Platform.DisplayHandle description: Handle to a display. - id: x type: System.Int32 @@ -607,35 +543,31 @@ items: - type: System.ArgumentNullException commentId: T:System.ArgumentNullException description: handle is null. - - type: OpenTK.Core.Platform.PalNotImplementedException - commentId: T:OpenTK.Core.Platform.PalNotImplementedException - description: Driver cannot get display virtual position. See . + - type: OpenTK.Platform.PalNotImplementedException + commentId: T:OpenTK.Platform.PalNotImplementedException + description: Driver cannot get display virtual position. See . implements: - - OpenTK.Core.Platform.IDisplayComponent.GetVirtualPosition(OpenTK.Core.Platform.DisplayHandle,System.Int32@,System.Int32@) + - OpenTK.Platform.IDisplayComponent.GetVirtualPosition(OpenTK.Platform.DisplayHandle,System.Int32@,System.Int32@) nameWithType.vb: SDLDisplayComponent.GetVirtualPosition(DisplayHandle, Integer, Integer) - fullName.vb: OpenTK.Platform.Native.SDL.SDLDisplayComponent.GetVirtualPosition(OpenTK.Core.Platform.DisplayHandle, Integer, Integer) + fullName.vb: OpenTK.Platform.Native.SDL.SDLDisplayComponent.GetVirtualPosition(OpenTK.Platform.DisplayHandle, Integer, Integer) name.vb: GetVirtualPosition(DisplayHandle, Integer, Integer) -- uid: OpenTK.Platform.Native.SDL.SDLDisplayComponent.GetResolution(OpenTK.Core.Platform.DisplayHandle,System.Int32@,System.Int32@) - commentId: M:OpenTK.Platform.Native.SDL.SDLDisplayComponent.GetResolution(OpenTK.Core.Platform.DisplayHandle,System.Int32@,System.Int32@) - id: GetResolution(OpenTK.Core.Platform.DisplayHandle,System.Int32@,System.Int32@) +- uid: OpenTK.Platform.Native.SDL.SDLDisplayComponent.GetResolution(OpenTK.Platform.DisplayHandle,System.Int32@,System.Int32@) + commentId: M:OpenTK.Platform.Native.SDL.SDLDisplayComponent.GetResolution(OpenTK.Platform.DisplayHandle,System.Int32@,System.Int32@) + id: GetResolution(OpenTK.Platform.DisplayHandle,System.Int32@,System.Int32@) parent: OpenTK.Platform.Native.SDL.SDLDisplayComponent langs: - csharp - vb name: GetResolution(DisplayHandle, out int, out int) nameWithType: SDLDisplayComponent.GetResolution(DisplayHandle, out int, out int) - fullName: OpenTK.Platform.Native.SDL.SDLDisplayComponent.GetResolution(OpenTK.Core.Platform.DisplayHandle, out int, out int) + fullName: OpenTK.Platform.Native.SDL.SDLDisplayComponent.GetResolution(OpenTK.Platform.DisplayHandle, out int, out int) type: Method source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLDisplayComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetResolution - path: opentk/src/OpenTK.Platform.Native/SDL/SDLDisplayComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLDisplayComponent.cs startLine: 170 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: Get the resolution of the specified display. example: [] @@ -643,7 +575,7 @@ items: content: public void GetResolution(DisplayHandle handle, out int width, out int height) parameters: - id: handle - type: OpenTK.Core.Platform.DisplayHandle + type: OpenTK.Platform.DisplayHandle description: Handle to a display. - id: width type: System.Int32 @@ -658,31 +590,27 @@ items: commentId: T:System.ArgumentNullException description: handle is null. implements: - - OpenTK.Core.Platform.IDisplayComponent.GetResolution(OpenTK.Core.Platform.DisplayHandle,System.Int32@,System.Int32@) + - OpenTK.Platform.IDisplayComponent.GetResolution(OpenTK.Platform.DisplayHandle,System.Int32@,System.Int32@) nameWithType.vb: SDLDisplayComponent.GetResolution(DisplayHandle, Integer, Integer) - fullName.vb: OpenTK.Platform.Native.SDL.SDLDisplayComponent.GetResolution(OpenTK.Core.Platform.DisplayHandle, Integer, Integer) + fullName.vb: OpenTK.Platform.Native.SDL.SDLDisplayComponent.GetResolution(OpenTK.Platform.DisplayHandle, Integer, Integer) name.vb: GetResolution(DisplayHandle, Integer, Integer) -- uid: OpenTK.Platform.Native.SDL.SDLDisplayComponent.GetWorkArea(OpenTK.Core.Platform.DisplayHandle,OpenTK.Mathematics.Box2i@) - commentId: M:OpenTK.Platform.Native.SDL.SDLDisplayComponent.GetWorkArea(OpenTK.Core.Platform.DisplayHandle,OpenTK.Mathematics.Box2i@) - id: GetWorkArea(OpenTK.Core.Platform.DisplayHandle,OpenTK.Mathematics.Box2i@) +- uid: OpenTK.Platform.Native.SDL.SDLDisplayComponent.GetWorkArea(OpenTK.Platform.DisplayHandle,OpenTK.Mathematics.Box2i@) + commentId: M:OpenTK.Platform.Native.SDL.SDLDisplayComponent.GetWorkArea(OpenTK.Platform.DisplayHandle,OpenTK.Mathematics.Box2i@) + id: GetWorkArea(OpenTK.Platform.DisplayHandle,OpenTK.Mathematics.Box2i@) parent: OpenTK.Platform.Native.SDL.SDLDisplayComponent langs: - csharp - vb name: GetWorkArea(DisplayHandle, out Box2i) nameWithType: SDLDisplayComponent.GetWorkArea(DisplayHandle, out Box2i) - fullName: OpenTK.Platform.Native.SDL.SDLDisplayComponent.GetWorkArea(OpenTK.Core.Platform.DisplayHandle, out OpenTK.Mathematics.Box2i) + fullName: OpenTK.Platform.Native.SDL.SDLDisplayComponent.GetWorkArea(OpenTK.Platform.DisplayHandle, out OpenTK.Mathematics.Box2i) type: Method source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLDisplayComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetWorkArea - path: opentk/src/OpenTK.Platform.Native/SDL/SDLDisplayComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLDisplayComponent.cs startLine: 186 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: >- Get the work area of this display. @@ -693,7 +621,7 @@ items: content: public void GetWorkArea(DisplayHandle handle, out Box2i area) parameters: - id: handle - type: OpenTK.Core.Platform.DisplayHandle + type: OpenTK.Platform.DisplayHandle description: Handle to a display. - id: area type: OpenTK.Mathematics.Box2i @@ -701,31 +629,27 @@ items: content.vb: Public Sub GetWorkArea(handle As DisplayHandle, area As Box2i) overload: OpenTK.Platform.Native.SDL.SDLDisplayComponent.GetWorkArea* implements: - - OpenTK.Core.Platform.IDisplayComponent.GetWorkArea(OpenTK.Core.Platform.DisplayHandle,OpenTK.Mathematics.Box2i@) + - OpenTK.Platform.IDisplayComponent.GetWorkArea(OpenTK.Platform.DisplayHandle,OpenTK.Mathematics.Box2i@) nameWithType.vb: SDLDisplayComponent.GetWorkArea(DisplayHandle, Box2i) - fullName.vb: OpenTK.Platform.Native.SDL.SDLDisplayComponent.GetWorkArea(OpenTK.Core.Platform.DisplayHandle, OpenTK.Mathematics.Box2i) + fullName.vb: OpenTK.Platform.Native.SDL.SDLDisplayComponent.GetWorkArea(OpenTK.Platform.DisplayHandle, OpenTK.Mathematics.Box2i) name.vb: GetWorkArea(DisplayHandle, Box2i) -- uid: OpenTK.Platform.Native.SDL.SDLDisplayComponent.GetRefreshRate(OpenTK.Core.Platform.DisplayHandle,System.Single@) - commentId: M:OpenTK.Platform.Native.SDL.SDLDisplayComponent.GetRefreshRate(OpenTK.Core.Platform.DisplayHandle,System.Single@) - id: GetRefreshRate(OpenTK.Core.Platform.DisplayHandle,System.Single@) +- uid: OpenTK.Platform.Native.SDL.SDLDisplayComponent.GetRefreshRate(OpenTK.Platform.DisplayHandle,System.Single@) + commentId: M:OpenTK.Platform.Native.SDL.SDLDisplayComponent.GetRefreshRate(OpenTK.Platform.DisplayHandle,System.Single@) + id: GetRefreshRate(OpenTK.Platform.DisplayHandle,System.Single@) parent: OpenTK.Platform.Native.SDL.SDLDisplayComponent langs: - csharp - vb name: GetRefreshRate(DisplayHandle, out float) nameWithType: SDLDisplayComponent.GetRefreshRate(DisplayHandle, out float) - fullName: OpenTK.Platform.Native.SDL.SDLDisplayComponent.GetRefreshRate(OpenTK.Core.Platform.DisplayHandle, out float) + fullName: OpenTK.Platform.Native.SDL.SDLDisplayComponent.GetRefreshRate(OpenTK.Platform.DisplayHandle, out float) type: Method source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLDisplayComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetRefreshRate - path: opentk/src/OpenTK.Platform.Native/SDL/SDLDisplayComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLDisplayComponent.cs startLine: 201 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: Get the refresh rate if the specified display. example: [] @@ -733,7 +657,7 @@ items: content: public void GetRefreshRate(DisplayHandle handle, out float refreshRate) parameters: - id: handle - type: OpenTK.Core.Platform.DisplayHandle + type: OpenTK.Platform.DisplayHandle description: Handle to a display. - id: refreshRate type: System.Single @@ -741,31 +665,27 @@ items: content.vb: Public Sub GetRefreshRate(handle As DisplayHandle, refreshRate As Single) overload: OpenTK.Platform.Native.SDL.SDLDisplayComponent.GetRefreshRate* implements: - - OpenTK.Core.Platform.IDisplayComponent.GetRefreshRate(OpenTK.Core.Platform.DisplayHandle,System.Single@) + - OpenTK.Platform.IDisplayComponent.GetRefreshRate(OpenTK.Platform.DisplayHandle,System.Single@) nameWithType.vb: SDLDisplayComponent.GetRefreshRate(DisplayHandle, Single) - fullName.vb: OpenTK.Platform.Native.SDL.SDLDisplayComponent.GetRefreshRate(OpenTK.Core.Platform.DisplayHandle, Single) + fullName.vb: OpenTK.Platform.Native.SDL.SDLDisplayComponent.GetRefreshRate(OpenTK.Platform.DisplayHandle, Single) name.vb: GetRefreshRate(DisplayHandle, Single) -- uid: OpenTK.Platform.Native.SDL.SDLDisplayComponent.GetDisplayScale(OpenTK.Core.Platform.DisplayHandle,System.Single@,System.Single@) - commentId: M:OpenTK.Platform.Native.SDL.SDLDisplayComponent.GetDisplayScale(OpenTK.Core.Platform.DisplayHandle,System.Single@,System.Single@) - id: GetDisplayScale(OpenTK.Core.Platform.DisplayHandle,System.Single@,System.Single@) +- uid: OpenTK.Platform.Native.SDL.SDLDisplayComponent.GetDisplayScale(OpenTK.Platform.DisplayHandle,System.Single@,System.Single@) + commentId: M:OpenTK.Platform.Native.SDL.SDLDisplayComponent.GetDisplayScale(OpenTK.Platform.DisplayHandle,System.Single@,System.Single@) + id: GetDisplayScale(OpenTK.Platform.DisplayHandle,System.Single@,System.Single@) parent: OpenTK.Platform.Native.SDL.SDLDisplayComponent langs: - csharp - vb name: GetDisplayScale(DisplayHandle, out float, out float) nameWithType: SDLDisplayComponent.GetDisplayScale(DisplayHandle, out float, out float) - fullName: OpenTK.Platform.Native.SDL.SDLDisplayComponent.GetDisplayScale(OpenTK.Core.Platform.DisplayHandle, out float, out float) + fullName: OpenTK.Platform.Native.SDL.SDLDisplayComponent.GetDisplayScale(OpenTK.Platform.DisplayHandle, out float, out float) type: Method source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLDisplayComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetDisplayScale - path: opentk/src/OpenTK.Platform.Native/SDL/SDLDisplayComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLDisplayComponent.cs startLine: 216 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: Get the scale of the display. example: [] @@ -773,7 +693,7 @@ items: content: public void GetDisplayScale(DisplayHandle handle, out float scaleX, out float scaleY) parameters: - id: handle - type: OpenTK.Core.Platform.DisplayHandle + type: OpenTK.Platform.DisplayHandle description: Handle to a display. - id: scaleX type: System.Single @@ -784,9 +704,9 @@ items: content.vb: Public Sub GetDisplayScale(handle As DisplayHandle, scaleX As Single, scaleY As Single) overload: OpenTK.Platform.Native.SDL.SDLDisplayComponent.GetDisplayScale* implements: - - OpenTK.Core.Platform.IDisplayComponent.GetDisplayScale(OpenTK.Core.Platform.DisplayHandle,System.Single@,System.Single@) + - OpenTK.Platform.IDisplayComponent.GetDisplayScale(OpenTK.Platform.DisplayHandle,System.Single@,System.Single@) nameWithType.vb: SDLDisplayComponent.GetDisplayScale(DisplayHandle, Single, Single) - fullName.vb: OpenTK.Platform.Native.SDL.SDLDisplayComponent.GetDisplayScale(OpenTK.Core.Platform.DisplayHandle, Single, Single) + fullName.vb: OpenTK.Platform.Native.SDL.SDLDisplayComponent.GetDisplayScale(OpenTK.Platform.DisplayHandle, Single, Single) name.vb: GetDisplayScale(DisplayHandle, Single, Single) references: - uid: OpenTK.Platform.Native.SDL @@ -838,20 +758,20 @@ references: nameWithType.vb: Object fullName.vb: Object name.vb: Object -- uid: OpenTK.Core.Platform.IDisplayComponent - commentId: T:OpenTK.Core.Platform.IDisplayComponent - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.IDisplayComponent.html +- uid: OpenTK.Platform.IDisplayComponent + commentId: T:OpenTK.Platform.IDisplayComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IDisplayComponent.html name: IDisplayComponent nameWithType: IDisplayComponent - fullName: OpenTK.Core.Platform.IDisplayComponent -- uid: OpenTK.Core.Platform.IPalComponent - commentId: T:OpenTK.Core.Platform.IPalComponent - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.IPalComponent.html + fullName: OpenTK.Platform.IDisplayComponent +- uid: OpenTK.Platform.IPalComponent + commentId: T:OpenTK.Platform.IPalComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IPalComponent.html name: IPalComponent nameWithType: IPalComponent - fullName: OpenTK.Core.Platform.IPalComponent + fullName: OpenTK.Platform.IPalComponent - uid: System.Object.Equals(System.Object) commentId: M:System.Object.Equals(System.Object) parent: System.Object @@ -1078,49 +998,41 @@ references: name: System nameWithType: System fullName: System -- uid: OpenTK.Core.Platform - commentId: N:OpenTK.Core.Platform +- uid: OpenTK.Platform + commentId: N:OpenTK.Platform href: OpenTK.html - name: OpenTK.Core.Platform - nameWithType: OpenTK.Core.Platform - fullName: OpenTK.Core.Platform + name: OpenTK.Platform + nameWithType: OpenTK.Platform + fullName: OpenTK.Platform spec.csharp: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html spec.vb: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html - uid: OpenTK.Platform.Native.SDL.SDLDisplayComponent.Name* commentId: Overload:OpenTK.Platform.Native.SDL.SDLDisplayComponent.Name href: OpenTK.Platform.Native.SDL.SDLDisplayComponent.html#OpenTK_Platform_Native_SDL_SDLDisplayComponent_Name name: Name nameWithType: SDLDisplayComponent.Name fullName: OpenTK.Platform.Native.SDL.SDLDisplayComponent.Name -- uid: OpenTK.Core.Platform.IPalComponent.Name - commentId: P:OpenTK.Core.Platform.IPalComponent.Name - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Name +- uid: OpenTK.Platform.IPalComponent.Name + commentId: P:OpenTK.Platform.IPalComponent.Name + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Name name: Name nameWithType: IPalComponent.Name - fullName: OpenTK.Core.Platform.IPalComponent.Name + fullName: OpenTK.Platform.IPalComponent.Name - uid: System.String commentId: T:System.String parent: System @@ -1138,33 +1050,33 @@ references: name: Provides nameWithType: SDLDisplayComponent.Provides fullName: OpenTK.Platform.Native.SDL.SDLDisplayComponent.Provides -- uid: OpenTK.Core.Platform.IPalComponent.Provides - commentId: P:OpenTK.Core.Platform.IPalComponent.Provides - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Provides +- uid: OpenTK.Platform.IPalComponent.Provides + commentId: P:OpenTK.Platform.IPalComponent.Provides + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Provides name: Provides nameWithType: IPalComponent.Provides - fullName: OpenTK.Core.Platform.IPalComponent.Provides -- uid: OpenTK.Core.Platform.PalComponents - commentId: T:OpenTK.Core.Platform.PalComponents - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.PalComponents.html + fullName: OpenTK.Platform.IPalComponent.Provides +- uid: OpenTK.Platform.PalComponents + commentId: T:OpenTK.Platform.PalComponents + parent: OpenTK.Platform + href: OpenTK.Platform.PalComponents.html name: PalComponents nameWithType: PalComponents - fullName: OpenTK.Core.Platform.PalComponents + fullName: OpenTK.Platform.PalComponents - uid: OpenTK.Platform.Native.SDL.SDLDisplayComponent.Logger* commentId: Overload:OpenTK.Platform.Native.SDL.SDLDisplayComponent.Logger href: OpenTK.Platform.Native.SDL.SDLDisplayComponent.html#OpenTK_Platform_Native_SDL_SDLDisplayComponent_Logger name: Logger nameWithType: SDLDisplayComponent.Logger fullName: OpenTK.Platform.Native.SDL.SDLDisplayComponent.Logger -- uid: OpenTK.Core.Platform.IPalComponent.Logger - commentId: P:OpenTK.Core.Platform.IPalComponent.Logger - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Logger +- uid: OpenTK.Platform.IPalComponent.Logger + commentId: P:OpenTK.Platform.IPalComponent.Logger + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Logger name: Logger nameWithType: IPalComponent.Logger - fullName: OpenTK.Core.Platform.IPalComponent.Logger + fullName: OpenTK.Platform.IPalComponent.Logger - uid: OpenTK.Core.Utility.ILogger commentId: T:OpenTK.Core.Utility.ILogger parent: OpenTK.Core.Utility @@ -1204,42 +1116,42 @@ references: href: OpenTK.Core.Utility.html - uid: OpenTK.Platform.Native.SDL.SDLDisplayComponent.Initialize* commentId: Overload:OpenTK.Platform.Native.SDL.SDLDisplayComponent.Initialize - href: OpenTK.Platform.Native.SDL.SDLDisplayComponent.html#OpenTK_Platform_Native_SDL_SDLDisplayComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + href: OpenTK.Platform.Native.SDL.SDLDisplayComponent.html#OpenTK_Platform_Native_SDL_SDLDisplayComponent_Initialize_OpenTK_Platform_ToolkitOptions_ name: Initialize nameWithType: SDLDisplayComponent.Initialize fullName: OpenTK.Platform.Native.SDL.SDLDisplayComponent.Initialize -- uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - commentId: M:OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ +- uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ name: Initialize(ToolkitOptions) nameWithType: IPalComponent.Initialize(ToolkitOptions) - fullName: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + fullName: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) spec.csharp: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + - uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.ToolkitOptions + - uid: OpenTK.Platform.ToolkitOptions name: ToolkitOptions - href: OpenTK.Core.Platform.ToolkitOptions.html + href: OpenTK.Platform.ToolkitOptions.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + - uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.ToolkitOptions + - uid: OpenTK.Platform.ToolkitOptions name: ToolkitOptions - href: OpenTK.Core.Platform.ToolkitOptions.html + href: OpenTK.Platform.ToolkitOptions.html - name: ) -- uid: OpenTK.Core.Platform.ToolkitOptions - commentId: T:OpenTK.Core.Platform.ToolkitOptions - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.ToolkitOptions.html +- uid: OpenTK.Platform.ToolkitOptions + commentId: T:OpenTK.Platform.ToolkitOptions + parent: OpenTK.Platform + href: OpenTK.Platform.ToolkitOptions.html name: ToolkitOptions nameWithType: ToolkitOptions - fullName: OpenTK.Core.Platform.ToolkitOptions + fullName: OpenTK.Platform.ToolkitOptions - uid: OpenTK.Platform.Native.SDL.SDLDisplayComponent.CanSetVideoMode* commentId: Overload:OpenTK.Platform.Native.SDL.SDLDisplayComponent.CanSetVideoMode href: OpenTK.Platform.Native.SDL.SDLDisplayComponent.html#OpenTK_Platform_Native_SDL_SDLDisplayComponent_CanSetVideoMode @@ -1257,42 +1169,99 @@ references: nameWithType.vb: Boolean fullName.vb: Boolean name.vb: Boolean +- uid: OpenTK.Platform.IDisplayComponent.GetVirtualPosition(OpenTK.Platform.DisplayHandle,System.Int32@,System.Int32@) + commentId: M:OpenTK.Platform.IDisplayComponent.GetVirtualPosition(OpenTK.Platform.DisplayHandle,System.Int32@,System.Int32@) + parent: OpenTK.Platform.IDisplayComponent + isExternal: true + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_GetVirtualPosition_OpenTK_Platform_DisplayHandle_System_Int32__System_Int32__ + name: GetVirtualPosition(DisplayHandle, out int, out int) + nameWithType: IDisplayComponent.GetVirtualPosition(DisplayHandle, out int, out int) + fullName: OpenTK.Platform.IDisplayComponent.GetVirtualPosition(OpenTK.Platform.DisplayHandle, out int, out int) + nameWithType.vb: IDisplayComponent.GetVirtualPosition(DisplayHandle, Integer, Integer) + fullName.vb: OpenTK.Platform.IDisplayComponent.GetVirtualPosition(OpenTK.Platform.DisplayHandle, Integer, Integer) + name.vb: GetVirtualPosition(DisplayHandle, Integer, Integer) + spec.csharp: + - uid: OpenTK.Platform.IDisplayComponent.GetVirtualPosition(OpenTK.Platform.DisplayHandle,System.Int32@,System.Int32@) + name: GetVirtualPosition + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_GetVirtualPosition_OpenTK_Platform_DisplayHandle_System_Int32__System_Int32__ + - name: ( + - uid: OpenTK.Platform.DisplayHandle + name: DisplayHandle + href: OpenTK.Platform.DisplayHandle.html + - name: ',' + - name: " " + - name: out + - name: " " + - uid: System.Int32 + name: int + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ',' + - name: " " + - name: out + - name: " " + - uid: System.Int32 + name: int + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ) + spec.vb: + - uid: OpenTK.Platform.IDisplayComponent.GetVirtualPosition(OpenTK.Platform.DisplayHandle,System.Int32@,System.Int32@) + name: GetVirtualPosition + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_GetVirtualPosition_OpenTK_Platform_DisplayHandle_System_Int32__System_Int32__ + - name: ( + - uid: OpenTK.Platform.DisplayHandle + name: DisplayHandle + href: OpenTK.Platform.DisplayHandle.html + - name: ',' + - name: " " + - uid: System.Int32 + name: Integer + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ',' + - name: " " + - uid: System.Int32 + name: Integer + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ) - uid: OpenTK.Platform.Native.SDL.SDLDisplayComponent.CanGetVirtualPosition* commentId: Overload:OpenTK.Platform.Native.SDL.SDLDisplayComponent.CanGetVirtualPosition href: OpenTK.Platform.Native.SDL.SDLDisplayComponent.html#OpenTK_Platform_Native_SDL_SDLDisplayComponent_CanGetVirtualPosition name: CanGetVirtualPosition nameWithType: SDLDisplayComponent.CanGetVirtualPosition fullName: OpenTK.Platform.Native.SDL.SDLDisplayComponent.CanGetVirtualPosition -- uid: OpenTK.Core.Platform.IDisplayComponent.CanGetVirtualPosition - commentId: P:OpenTK.Core.Platform.IDisplayComponent.CanGetVirtualPosition - parent: OpenTK.Core.Platform.IDisplayComponent - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_CanGetVirtualPosition +- uid: OpenTK.Platform.IDisplayComponent.CanGetVirtualPosition + commentId: P:OpenTK.Platform.IDisplayComponent.CanGetVirtualPosition + parent: OpenTK.Platform.IDisplayComponent + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_CanGetVirtualPosition name: CanGetVirtualPosition nameWithType: IDisplayComponent.CanGetVirtualPosition - fullName: OpenTK.Core.Platform.IDisplayComponent.CanGetVirtualPosition + fullName: OpenTK.Platform.IDisplayComponent.CanGetVirtualPosition - uid: OpenTK.Platform.Native.SDL.SDLDisplayComponent.GetDisplayCount* commentId: Overload:OpenTK.Platform.Native.SDL.SDLDisplayComponent.GetDisplayCount href: OpenTK.Platform.Native.SDL.SDLDisplayComponent.html#OpenTK_Platform_Native_SDL_SDLDisplayComponent_GetDisplayCount name: GetDisplayCount nameWithType: SDLDisplayComponent.GetDisplayCount fullName: OpenTK.Platform.Native.SDL.SDLDisplayComponent.GetDisplayCount -- uid: OpenTK.Core.Platform.IDisplayComponent.GetDisplayCount - commentId: M:OpenTK.Core.Platform.IDisplayComponent.GetDisplayCount - parent: OpenTK.Core.Platform.IDisplayComponent - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_GetDisplayCount +- uid: OpenTK.Platform.IDisplayComponent.GetDisplayCount + commentId: M:OpenTK.Platform.IDisplayComponent.GetDisplayCount + parent: OpenTK.Platform.IDisplayComponent + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_GetDisplayCount name: GetDisplayCount() nameWithType: IDisplayComponent.GetDisplayCount() - fullName: OpenTK.Core.Platform.IDisplayComponent.GetDisplayCount() + fullName: OpenTK.Platform.IDisplayComponent.GetDisplayCount() spec.csharp: - - uid: OpenTK.Core.Platform.IDisplayComponent.GetDisplayCount + - uid: OpenTK.Platform.IDisplayComponent.GetDisplayCount name: GetDisplayCount - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_GetDisplayCount + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_GetDisplayCount - name: ( - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IDisplayComponent.GetDisplayCount + - uid: OpenTK.Platform.IDisplayComponent.GetDisplayCount name: GetDisplayCount - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_GetDisplayCount + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_GetDisplayCount - name: ( - name: ) - uid: System.Int32 @@ -1319,21 +1288,21 @@ references: name: Open nameWithType: SDLDisplayComponent.Open fullName: OpenTK.Platform.Native.SDL.SDLDisplayComponent.Open -- uid: OpenTK.Core.Platform.IDisplayComponent.Open(System.Int32) - commentId: M:OpenTK.Core.Platform.IDisplayComponent.Open(System.Int32) - parent: OpenTK.Core.Platform.IDisplayComponent +- uid: OpenTK.Platform.IDisplayComponent.Open(System.Int32) + commentId: M:OpenTK.Platform.IDisplayComponent.Open(System.Int32) + parent: OpenTK.Platform.IDisplayComponent isExternal: true - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_Open_System_Int32_ + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_Open_System_Int32_ name: Open(int) nameWithType: IDisplayComponent.Open(int) - fullName: OpenTK.Core.Platform.IDisplayComponent.Open(int) + fullName: OpenTK.Platform.IDisplayComponent.Open(int) nameWithType.vb: IDisplayComponent.Open(Integer) - fullName.vb: OpenTK.Core.Platform.IDisplayComponent.Open(Integer) + fullName.vb: OpenTK.Platform.IDisplayComponent.Open(Integer) name.vb: Open(Integer) spec.csharp: - - uid: OpenTK.Core.Platform.IDisplayComponent.Open(System.Int32) + - uid: OpenTK.Platform.IDisplayComponent.Open(System.Int32) name: Open - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_Open_System_Int32_ + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_Open_System_Int32_ - name: ( - uid: System.Int32 name: int @@ -1341,45 +1310,45 @@ references: href: https://learn.microsoft.com/dotnet/api/system.int32 - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IDisplayComponent.Open(System.Int32) + - uid: OpenTK.Platform.IDisplayComponent.Open(System.Int32) name: Open - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_Open_System_Int32_ + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_Open_System_Int32_ - name: ( - uid: System.Int32 name: Integer isExternal: true href: https://learn.microsoft.com/dotnet/api/system.int32 - name: ) -- uid: OpenTK.Core.Platform.DisplayHandle - commentId: T:OpenTK.Core.Platform.DisplayHandle - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.DisplayHandle.html +- uid: OpenTK.Platform.DisplayHandle + commentId: T:OpenTK.Platform.DisplayHandle + parent: OpenTK.Platform + href: OpenTK.Platform.DisplayHandle.html name: DisplayHandle nameWithType: DisplayHandle - fullName: OpenTK.Core.Platform.DisplayHandle + fullName: OpenTK.Platform.DisplayHandle - uid: OpenTK.Platform.Native.SDL.SDLDisplayComponent.OpenPrimary* commentId: Overload:OpenTK.Platform.Native.SDL.SDLDisplayComponent.OpenPrimary href: OpenTK.Platform.Native.SDL.SDLDisplayComponent.html#OpenTK_Platform_Native_SDL_SDLDisplayComponent_OpenPrimary name: OpenPrimary nameWithType: SDLDisplayComponent.OpenPrimary fullName: OpenTK.Platform.Native.SDL.SDLDisplayComponent.OpenPrimary -- uid: OpenTK.Core.Platform.IDisplayComponent.OpenPrimary - commentId: M:OpenTK.Core.Platform.IDisplayComponent.OpenPrimary - parent: OpenTK.Core.Platform.IDisplayComponent - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_OpenPrimary +- uid: OpenTK.Platform.IDisplayComponent.OpenPrimary + commentId: M:OpenTK.Platform.IDisplayComponent.OpenPrimary + parent: OpenTK.Platform.IDisplayComponent + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_OpenPrimary name: OpenPrimary() nameWithType: IDisplayComponent.OpenPrimary() - fullName: OpenTK.Core.Platform.IDisplayComponent.OpenPrimary() + fullName: OpenTK.Platform.IDisplayComponent.OpenPrimary() spec.csharp: - - uid: OpenTK.Core.Platform.IDisplayComponent.OpenPrimary + - uid: OpenTK.Platform.IDisplayComponent.OpenPrimary name: OpenPrimary - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_OpenPrimary + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_OpenPrimary - name: ( - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IDisplayComponent.OpenPrimary + - uid: OpenTK.Platform.IDisplayComponent.OpenPrimary name: OpenPrimary - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_OpenPrimary + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_OpenPrimary - name: ( - name: ) - uid: System.ArgumentNullException @@ -1391,296 +1360,239 @@ references: fullName: System.ArgumentNullException - uid: OpenTK.Platform.Native.SDL.SDLDisplayComponent.Close* commentId: Overload:OpenTK.Platform.Native.SDL.SDLDisplayComponent.Close - href: OpenTK.Platform.Native.SDL.SDLDisplayComponent.html#OpenTK_Platform_Native_SDL_SDLDisplayComponent_Close_OpenTK_Core_Platform_DisplayHandle_ + href: OpenTK.Platform.Native.SDL.SDLDisplayComponent.html#OpenTK_Platform_Native_SDL_SDLDisplayComponent_Close_OpenTK_Platform_DisplayHandle_ name: Close nameWithType: SDLDisplayComponent.Close fullName: OpenTK.Platform.Native.SDL.SDLDisplayComponent.Close -- uid: OpenTK.Core.Platform.IDisplayComponent.Close(OpenTK.Core.Platform.DisplayHandle) - commentId: M:OpenTK.Core.Platform.IDisplayComponent.Close(OpenTK.Core.Platform.DisplayHandle) - parent: OpenTK.Core.Platform.IDisplayComponent - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_Close_OpenTK_Core_Platform_DisplayHandle_ +- uid: OpenTK.Platform.IDisplayComponent.Close(OpenTK.Platform.DisplayHandle) + commentId: M:OpenTK.Platform.IDisplayComponent.Close(OpenTK.Platform.DisplayHandle) + parent: OpenTK.Platform.IDisplayComponent + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_Close_OpenTK_Platform_DisplayHandle_ name: Close(DisplayHandle) nameWithType: IDisplayComponent.Close(DisplayHandle) - fullName: OpenTK.Core.Platform.IDisplayComponent.Close(OpenTK.Core.Platform.DisplayHandle) + fullName: OpenTK.Platform.IDisplayComponent.Close(OpenTK.Platform.DisplayHandle) spec.csharp: - - uid: OpenTK.Core.Platform.IDisplayComponent.Close(OpenTK.Core.Platform.DisplayHandle) + - uid: OpenTK.Platform.IDisplayComponent.Close(OpenTK.Platform.DisplayHandle) name: Close - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_Close_OpenTK_Core_Platform_DisplayHandle_ + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_Close_OpenTK_Platform_DisplayHandle_ - name: ( - - uid: OpenTK.Core.Platform.DisplayHandle + - uid: OpenTK.Platform.DisplayHandle name: DisplayHandle - href: OpenTK.Core.Platform.DisplayHandle.html + href: OpenTK.Platform.DisplayHandle.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IDisplayComponent.Close(OpenTK.Core.Platform.DisplayHandle) + - uid: OpenTK.Platform.IDisplayComponent.Close(OpenTK.Platform.DisplayHandle) name: Close - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_Close_OpenTK_Core_Platform_DisplayHandle_ + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_Close_OpenTK_Platform_DisplayHandle_ - name: ( - - uid: OpenTK.Core.Platform.DisplayHandle + - uid: OpenTK.Platform.DisplayHandle name: DisplayHandle - href: OpenTK.Core.Platform.DisplayHandle.html + href: OpenTK.Platform.DisplayHandle.html - name: ) - uid: OpenTK.Platform.Native.SDL.SDLDisplayComponent.IsPrimary* commentId: Overload:OpenTK.Platform.Native.SDL.SDLDisplayComponent.IsPrimary - href: OpenTK.Platform.Native.SDL.SDLDisplayComponent.html#OpenTK_Platform_Native_SDL_SDLDisplayComponent_IsPrimary_OpenTK_Core_Platform_DisplayHandle_ + href: OpenTK.Platform.Native.SDL.SDLDisplayComponent.html#OpenTK_Platform_Native_SDL_SDLDisplayComponent_IsPrimary_OpenTK_Platform_DisplayHandle_ name: IsPrimary nameWithType: SDLDisplayComponent.IsPrimary fullName: OpenTK.Platform.Native.SDL.SDLDisplayComponent.IsPrimary -- uid: OpenTK.Core.Platform.IDisplayComponent.IsPrimary(OpenTK.Core.Platform.DisplayHandle) - commentId: M:OpenTK.Core.Platform.IDisplayComponent.IsPrimary(OpenTK.Core.Platform.DisplayHandle) - parent: OpenTK.Core.Platform.IDisplayComponent - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_IsPrimary_OpenTK_Core_Platform_DisplayHandle_ +- uid: OpenTK.Platform.IDisplayComponent.IsPrimary(OpenTK.Platform.DisplayHandle) + commentId: M:OpenTK.Platform.IDisplayComponent.IsPrimary(OpenTK.Platform.DisplayHandle) + parent: OpenTK.Platform.IDisplayComponent + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_IsPrimary_OpenTK_Platform_DisplayHandle_ name: IsPrimary(DisplayHandle) nameWithType: IDisplayComponent.IsPrimary(DisplayHandle) - fullName: OpenTK.Core.Platform.IDisplayComponent.IsPrimary(OpenTK.Core.Platform.DisplayHandle) + fullName: OpenTK.Platform.IDisplayComponent.IsPrimary(OpenTK.Platform.DisplayHandle) spec.csharp: - - uid: OpenTK.Core.Platform.IDisplayComponent.IsPrimary(OpenTK.Core.Platform.DisplayHandle) + - uid: OpenTK.Platform.IDisplayComponent.IsPrimary(OpenTK.Platform.DisplayHandle) name: IsPrimary - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_IsPrimary_OpenTK_Core_Platform_DisplayHandle_ + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_IsPrimary_OpenTK_Platform_DisplayHandle_ - name: ( - - uid: OpenTK.Core.Platform.DisplayHandle + - uid: OpenTK.Platform.DisplayHandle name: DisplayHandle - href: OpenTK.Core.Platform.DisplayHandle.html + href: OpenTK.Platform.DisplayHandle.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IDisplayComponent.IsPrimary(OpenTK.Core.Platform.DisplayHandle) + - uid: OpenTK.Platform.IDisplayComponent.IsPrimary(OpenTK.Platform.DisplayHandle) name: IsPrimary - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_IsPrimary_OpenTK_Core_Platform_DisplayHandle_ + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_IsPrimary_OpenTK_Platform_DisplayHandle_ - name: ( - - uid: OpenTK.Core.Platform.DisplayHandle + - uid: OpenTK.Platform.DisplayHandle name: DisplayHandle - href: OpenTK.Core.Platform.DisplayHandle.html + href: OpenTK.Platform.DisplayHandle.html - name: ) - uid: OpenTK.Platform.Native.SDL.SDLDisplayComponent.GetName* commentId: Overload:OpenTK.Platform.Native.SDL.SDLDisplayComponent.GetName - href: OpenTK.Platform.Native.SDL.SDLDisplayComponent.html#OpenTK_Platform_Native_SDL_SDLDisplayComponent_GetName_OpenTK_Core_Platform_DisplayHandle_ + href: OpenTK.Platform.Native.SDL.SDLDisplayComponent.html#OpenTK_Platform_Native_SDL_SDLDisplayComponent_GetName_OpenTK_Platform_DisplayHandle_ name: GetName nameWithType: SDLDisplayComponent.GetName fullName: OpenTK.Platform.Native.SDL.SDLDisplayComponent.GetName -- uid: OpenTK.Core.Platform.IDisplayComponent.GetName(OpenTK.Core.Platform.DisplayHandle) - commentId: M:OpenTK.Core.Platform.IDisplayComponent.GetName(OpenTK.Core.Platform.DisplayHandle) - parent: OpenTK.Core.Platform.IDisplayComponent - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_GetName_OpenTK_Core_Platform_DisplayHandle_ +- uid: OpenTK.Platform.IDisplayComponent.GetName(OpenTK.Platform.DisplayHandle) + commentId: M:OpenTK.Platform.IDisplayComponent.GetName(OpenTK.Platform.DisplayHandle) + parent: OpenTK.Platform.IDisplayComponent + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_GetName_OpenTK_Platform_DisplayHandle_ name: GetName(DisplayHandle) nameWithType: IDisplayComponent.GetName(DisplayHandle) - fullName: OpenTK.Core.Platform.IDisplayComponent.GetName(OpenTK.Core.Platform.DisplayHandle) + fullName: OpenTK.Platform.IDisplayComponent.GetName(OpenTK.Platform.DisplayHandle) spec.csharp: - - uid: OpenTK.Core.Platform.IDisplayComponent.GetName(OpenTK.Core.Platform.DisplayHandle) + - uid: OpenTK.Platform.IDisplayComponent.GetName(OpenTK.Platform.DisplayHandle) name: GetName - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_GetName_OpenTK_Core_Platform_DisplayHandle_ + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_GetName_OpenTK_Platform_DisplayHandle_ - name: ( - - uid: OpenTK.Core.Platform.DisplayHandle + - uid: OpenTK.Platform.DisplayHandle name: DisplayHandle - href: OpenTK.Core.Platform.DisplayHandle.html + href: OpenTK.Platform.DisplayHandle.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IDisplayComponent.GetName(OpenTK.Core.Platform.DisplayHandle) + - uid: OpenTK.Platform.IDisplayComponent.GetName(OpenTK.Platform.DisplayHandle) name: GetName - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_GetName_OpenTK_Core_Platform_DisplayHandle_ + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_GetName_OpenTK_Platform_DisplayHandle_ - name: ( - - uid: OpenTK.Core.Platform.DisplayHandle + - uid: OpenTK.Platform.DisplayHandle name: DisplayHandle - href: OpenTK.Core.Platform.DisplayHandle.html + href: OpenTK.Platform.DisplayHandle.html - name: ) - uid: OpenTK.Platform.Native.SDL.SDLDisplayComponent.GetVideoMode* commentId: Overload:OpenTK.Platform.Native.SDL.SDLDisplayComponent.GetVideoMode - href: OpenTK.Platform.Native.SDL.SDLDisplayComponent.html#OpenTK_Platform_Native_SDL_SDLDisplayComponent_GetVideoMode_OpenTK_Core_Platform_DisplayHandle_OpenTK_Core_Platform_VideoMode__ + href: OpenTK.Platform.Native.SDL.SDLDisplayComponent.html#OpenTK_Platform_Native_SDL_SDLDisplayComponent_GetVideoMode_OpenTK_Platform_DisplayHandle_OpenTK_Platform_VideoMode__ name: GetVideoMode nameWithType: SDLDisplayComponent.GetVideoMode fullName: OpenTK.Platform.Native.SDL.SDLDisplayComponent.GetVideoMode -- uid: OpenTK.Core.Platform.IDisplayComponent.GetVideoMode(OpenTK.Core.Platform.DisplayHandle,OpenTK.Core.Platform.VideoMode@) - commentId: M:OpenTK.Core.Platform.IDisplayComponent.GetVideoMode(OpenTK.Core.Platform.DisplayHandle,OpenTK.Core.Platform.VideoMode@) - parent: OpenTK.Core.Platform.IDisplayComponent - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_GetVideoMode_OpenTK_Core_Platform_DisplayHandle_OpenTK_Core_Platform_VideoMode__ +- uid: OpenTK.Platform.IDisplayComponent.GetVideoMode(OpenTK.Platform.DisplayHandle,OpenTK.Platform.VideoMode@) + commentId: M:OpenTK.Platform.IDisplayComponent.GetVideoMode(OpenTK.Platform.DisplayHandle,OpenTK.Platform.VideoMode@) + parent: OpenTK.Platform.IDisplayComponent + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_GetVideoMode_OpenTK_Platform_DisplayHandle_OpenTK_Platform_VideoMode__ name: GetVideoMode(DisplayHandle, out VideoMode) nameWithType: IDisplayComponent.GetVideoMode(DisplayHandle, out VideoMode) - fullName: OpenTK.Core.Platform.IDisplayComponent.GetVideoMode(OpenTK.Core.Platform.DisplayHandle, out OpenTK.Core.Platform.VideoMode) + fullName: OpenTK.Platform.IDisplayComponent.GetVideoMode(OpenTK.Platform.DisplayHandle, out OpenTK.Platform.VideoMode) nameWithType.vb: IDisplayComponent.GetVideoMode(DisplayHandle, VideoMode) - fullName.vb: OpenTK.Core.Platform.IDisplayComponent.GetVideoMode(OpenTK.Core.Platform.DisplayHandle, OpenTK.Core.Platform.VideoMode) + fullName.vb: OpenTK.Platform.IDisplayComponent.GetVideoMode(OpenTK.Platform.DisplayHandle, OpenTK.Platform.VideoMode) name.vb: GetVideoMode(DisplayHandle, VideoMode) spec.csharp: - - uid: OpenTK.Core.Platform.IDisplayComponent.GetVideoMode(OpenTK.Core.Platform.DisplayHandle,OpenTK.Core.Platform.VideoMode@) + - uid: OpenTK.Platform.IDisplayComponent.GetVideoMode(OpenTK.Platform.DisplayHandle,OpenTK.Platform.VideoMode@) name: GetVideoMode - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_GetVideoMode_OpenTK_Core_Platform_DisplayHandle_OpenTK_Core_Platform_VideoMode__ + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_GetVideoMode_OpenTK_Platform_DisplayHandle_OpenTK_Platform_VideoMode__ - name: ( - - uid: OpenTK.Core.Platform.DisplayHandle + - uid: OpenTK.Platform.DisplayHandle name: DisplayHandle - href: OpenTK.Core.Platform.DisplayHandle.html + href: OpenTK.Platform.DisplayHandle.html - name: ',' - name: " " - name: out - name: " " - - uid: OpenTK.Core.Platform.VideoMode + - uid: OpenTK.Platform.VideoMode name: VideoMode - href: OpenTK.Core.Platform.VideoMode.html + href: OpenTK.Platform.VideoMode.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IDisplayComponent.GetVideoMode(OpenTK.Core.Platform.DisplayHandle,OpenTK.Core.Platform.VideoMode@) + - uid: OpenTK.Platform.IDisplayComponent.GetVideoMode(OpenTK.Platform.DisplayHandle,OpenTK.Platform.VideoMode@) name: GetVideoMode - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_GetVideoMode_OpenTK_Core_Platform_DisplayHandle_OpenTK_Core_Platform_VideoMode__ + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_GetVideoMode_OpenTK_Platform_DisplayHandle_OpenTK_Platform_VideoMode__ - name: ( - - uid: OpenTK.Core.Platform.DisplayHandle + - uid: OpenTK.Platform.DisplayHandle name: DisplayHandle - href: OpenTK.Core.Platform.DisplayHandle.html + href: OpenTK.Platform.DisplayHandle.html - name: ',' - name: " " - - uid: OpenTK.Core.Platform.VideoMode + - uid: OpenTK.Platform.VideoMode name: VideoMode - href: OpenTK.Core.Platform.VideoMode.html + href: OpenTK.Platform.VideoMode.html - name: ) -- uid: OpenTK.Core.Platform.VideoMode - commentId: T:OpenTK.Core.Platform.VideoMode - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.VideoMode.html +- uid: OpenTK.Platform.VideoMode + commentId: T:OpenTK.Platform.VideoMode + parent: OpenTK.Platform + href: OpenTK.Platform.VideoMode.html name: VideoMode nameWithType: VideoMode - fullName: OpenTK.Core.Platform.VideoMode + fullName: OpenTK.Platform.VideoMode - uid: OpenTK.Platform.Native.SDL.SDLDisplayComponent.GetSupportedVideoModes* commentId: Overload:OpenTK.Platform.Native.SDL.SDLDisplayComponent.GetSupportedVideoModes - href: OpenTK.Platform.Native.SDL.SDLDisplayComponent.html#OpenTK_Platform_Native_SDL_SDLDisplayComponent_GetSupportedVideoModes_OpenTK_Core_Platform_DisplayHandle_ + href: OpenTK.Platform.Native.SDL.SDLDisplayComponent.html#OpenTK_Platform_Native_SDL_SDLDisplayComponent_GetSupportedVideoModes_OpenTK_Platform_DisplayHandle_ name: GetSupportedVideoModes nameWithType: SDLDisplayComponent.GetSupportedVideoModes fullName: OpenTK.Platform.Native.SDL.SDLDisplayComponent.GetSupportedVideoModes -- uid: OpenTK.Core.Platform.IDisplayComponent.GetSupportedVideoModes(OpenTK.Core.Platform.DisplayHandle) - commentId: M:OpenTK.Core.Platform.IDisplayComponent.GetSupportedVideoModes(OpenTK.Core.Platform.DisplayHandle) - parent: OpenTK.Core.Platform.IDisplayComponent - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_GetSupportedVideoModes_OpenTK_Core_Platform_DisplayHandle_ +- uid: OpenTK.Platform.IDisplayComponent.GetSupportedVideoModes(OpenTK.Platform.DisplayHandle) + commentId: M:OpenTK.Platform.IDisplayComponent.GetSupportedVideoModes(OpenTK.Platform.DisplayHandle) + parent: OpenTK.Platform.IDisplayComponent + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_GetSupportedVideoModes_OpenTK_Platform_DisplayHandle_ name: GetSupportedVideoModes(DisplayHandle) nameWithType: IDisplayComponent.GetSupportedVideoModes(DisplayHandle) - fullName: OpenTK.Core.Platform.IDisplayComponent.GetSupportedVideoModes(OpenTK.Core.Platform.DisplayHandle) + fullName: OpenTK.Platform.IDisplayComponent.GetSupportedVideoModes(OpenTK.Platform.DisplayHandle) spec.csharp: - - uid: OpenTK.Core.Platform.IDisplayComponent.GetSupportedVideoModes(OpenTK.Core.Platform.DisplayHandle) + - uid: OpenTK.Platform.IDisplayComponent.GetSupportedVideoModes(OpenTK.Platform.DisplayHandle) name: GetSupportedVideoModes - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_GetSupportedVideoModes_OpenTK_Core_Platform_DisplayHandle_ + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_GetSupportedVideoModes_OpenTK_Platform_DisplayHandle_ - name: ( - - uid: OpenTK.Core.Platform.DisplayHandle + - uid: OpenTK.Platform.DisplayHandle name: DisplayHandle - href: OpenTK.Core.Platform.DisplayHandle.html + href: OpenTK.Platform.DisplayHandle.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IDisplayComponent.GetSupportedVideoModes(OpenTK.Core.Platform.DisplayHandle) + - uid: OpenTK.Platform.IDisplayComponent.GetSupportedVideoModes(OpenTK.Platform.DisplayHandle) name: GetSupportedVideoModes - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_GetSupportedVideoModes_OpenTK_Core_Platform_DisplayHandle_ + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_GetSupportedVideoModes_OpenTK_Platform_DisplayHandle_ - name: ( - - uid: OpenTK.Core.Platform.DisplayHandle + - uid: OpenTK.Platform.DisplayHandle name: DisplayHandle - href: OpenTK.Core.Platform.DisplayHandle.html + href: OpenTK.Platform.DisplayHandle.html - name: ) -- uid: OpenTK.Core.Platform.VideoMode[] +- uid: OpenTK.Platform.VideoMode[] isExternal: true - href: OpenTK.Core.Platform.VideoMode.html + href: OpenTK.Platform.VideoMode.html name: VideoMode[] nameWithType: VideoMode[] - fullName: OpenTK.Core.Platform.VideoMode[] + fullName: OpenTK.Platform.VideoMode[] nameWithType.vb: VideoMode() - fullName.vb: OpenTK.Core.Platform.VideoMode() + fullName.vb: OpenTK.Platform.VideoMode() name.vb: VideoMode() spec.csharp: - - uid: OpenTK.Core.Platform.VideoMode + - uid: OpenTK.Platform.VideoMode name: VideoMode - href: OpenTK.Core.Platform.VideoMode.html + href: OpenTK.Platform.VideoMode.html - name: '[' - name: ']' spec.vb: - - uid: OpenTK.Core.Platform.VideoMode + - uid: OpenTK.Platform.VideoMode name: VideoMode - href: OpenTK.Core.Platform.VideoMode.html + href: OpenTK.Platform.VideoMode.html - name: ( - name: ) -- uid: OpenTK.Core.Platform.PalNotImplementedException - commentId: T:OpenTK.Core.Platform.PalNotImplementedException - href: OpenTK.Core.Platform.PalNotImplementedException.html +- uid: OpenTK.Platform.PalNotImplementedException + commentId: T:OpenTK.Platform.PalNotImplementedException + href: OpenTK.Platform.PalNotImplementedException.html name: PalNotImplementedException nameWithType: PalNotImplementedException - fullName: OpenTK.Core.Platform.PalNotImplementedException + fullName: OpenTK.Platform.PalNotImplementedException - uid: OpenTK.Platform.Native.SDL.SDLDisplayComponent.GetVirtualPosition* commentId: Overload:OpenTK.Platform.Native.SDL.SDLDisplayComponent.GetVirtualPosition - href: OpenTK.Platform.Native.SDL.SDLDisplayComponent.html#OpenTK_Platform_Native_SDL_SDLDisplayComponent_GetVirtualPosition_OpenTK_Core_Platform_DisplayHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.Native.SDL.SDLDisplayComponent.html#OpenTK_Platform_Native_SDL_SDLDisplayComponent_GetVirtualPosition_OpenTK_Platform_DisplayHandle_System_Int32__System_Int32__ name: GetVirtualPosition nameWithType: SDLDisplayComponent.GetVirtualPosition fullName: OpenTK.Platform.Native.SDL.SDLDisplayComponent.GetVirtualPosition -- uid: OpenTK.Core.Platform.IDisplayComponent.GetVirtualPosition(OpenTK.Core.Platform.DisplayHandle,System.Int32@,System.Int32@) - commentId: M:OpenTK.Core.Platform.IDisplayComponent.GetVirtualPosition(OpenTK.Core.Platform.DisplayHandle,System.Int32@,System.Int32@) - parent: OpenTK.Core.Platform.IDisplayComponent - isExternal: true - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_GetVirtualPosition_OpenTK_Core_Platform_DisplayHandle_System_Int32__System_Int32__ - name: GetVirtualPosition(DisplayHandle, out int, out int) - nameWithType: IDisplayComponent.GetVirtualPosition(DisplayHandle, out int, out int) - fullName: OpenTK.Core.Platform.IDisplayComponent.GetVirtualPosition(OpenTK.Core.Platform.DisplayHandle, out int, out int) - nameWithType.vb: IDisplayComponent.GetVirtualPosition(DisplayHandle, Integer, Integer) - fullName.vb: OpenTK.Core.Platform.IDisplayComponent.GetVirtualPosition(OpenTK.Core.Platform.DisplayHandle, Integer, Integer) - name.vb: GetVirtualPosition(DisplayHandle, Integer, Integer) - spec.csharp: - - uid: OpenTK.Core.Platform.IDisplayComponent.GetVirtualPosition(OpenTK.Core.Platform.DisplayHandle,System.Int32@,System.Int32@) - name: GetVirtualPosition - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_GetVirtualPosition_OpenTK_Core_Platform_DisplayHandle_System_Int32__System_Int32__ - - name: ( - - uid: OpenTK.Core.Platform.DisplayHandle - name: DisplayHandle - href: OpenTK.Core.Platform.DisplayHandle.html - - name: ',' - - name: " " - - name: out - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - name: out - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) - spec.vb: - - uid: OpenTK.Core.Platform.IDisplayComponent.GetVirtualPosition(OpenTK.Core.Platform.DisplayHandle,System.Int32@,System.Int32@) - name: GetVirtualPosition - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_GetVirtualPosition_OpenTK_Core_Platform_DisplayHandle_System_Int32__System_Int32__ - - name: ( - - uid: OpenTK.Core.Platform.DisplayHandle - name: DisplayHandle - href: OpenTK.Core.Platform.DisplayHandle.html - - name: ',' - - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) - uid: OpenTK.Platform.Native.SDL.SDLDisplayComponent.GetResolution* commentId: Overload:OpenTK.Platform.Native.SDL.SDLDisplayComponent.GetResolution - href: OpenTK.Platform.Native.SDL.SDLDisplayComponent.html#OpenTK_Platform_Native_SDL_SDLDisplayComponent_GetResolution_OpenTK_Core_Platform_DisplayHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.Native.SDL.SDLDisplayComponent.html#OpenTK_Platform_Native_SDL_SDLDisplayComponent_GetResolution_OpenTK_Platform_DisplayHandle_System_Int32__System_Int32__ name: GetResolution nameWithType: SDLDisplayComponent.GetResolution fullName: OpenTK.Platform.Native.SDL.SDLDisplayComponent.GetResolution -- uid: OpenTK.Core.Platform.IDisplayComponent.GetResolution(OpenTK.Core.Platform.DisplayHandle,System.Int32@,System.Int32@) - commentId: M:OpenTK.Core.Platform.IDisplayComponent.GetResolution(OpenTK.Core.Platform.DisplayHandle,System.Int32@,System.Int32@) - parent: OpenTK.Core.Platform.IDisplayComponent +- uid: OpenTK.Platform.IDisplayComponent.GetResolution(OpenTK.Platform.DisplayHandle,System.Int32@,System.Int32@) + commentId: M:OpenTK.Platform.IDisplayComponent.GetResolution(OpenTK.Platform.DisplayHandle,System.Int32@,System.Int32@) + parent: OpenTK.Platform.IDisplayComponent isExternal: true - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_GetResolution_OpenTK_Core_Platform_DisplayHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_GetResolution_OpenTK_Platform_DisplayHandle_System_Int32__System_Int32__ name: GetResolution(DisplayHandle, out int, out int) nameWithType: IDisplayComponent.GetResolution(DisplayHandle, out int, out int) - fullName: OpenTK.Core.Platform.IDisplayComponent.GetResolution(OpenTK.Core.Platform.DisplayHandle, out int, out int) + fullName: OpenTK.Platform.IDisplayComponent.GetResolution(OpenTK.Platform.DisplayHandle, out int, out int) nameWithType.vb: IDisplayComponent.GetResolution(DisplayHandle, Integer, Integer) - fullName.vb: OpenTK.Core.Platform.IDisplayComponent.GetResolution(OpenTK.Core.Platform.DisplayHandle, Integer, Integer) + fullName.vb: OpenTK.Platform.IDisplayComponent.GetResolution(OpenTK.Platform.DisplayHandle, Integer, Integer) name.vb: GetResolution(DisplayHandle, Integer, Integer) spec.csharp: - - uid: OpenTK.Core.Platform.IDisplayComponent.GetResolution(OpenTK.Core.Platform.DisplayHandle,System.Int32@,System.Int32@) + - uid: OpenTK.Platform.IDisplayComponent.GetResolution(OpenTK.Platform.DisplayHandle,System.Int32@,System.Int32@) name: GetResolution - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_GetResolution_OpenTK_Core_Platform_DisplayHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_GetResolution_OpenTK_Platform_DisplayHandle_System_Int32__System_Int32__ - name: ( - - uid: OpenTK.Core.Platform.DisplayHandle + - uid: OpenTK.Platform.DisplayHandle name: DisplayHandle - href: OpenTK.Core.Platform.DisplayHandle.html + href: OpenTK.Platform.DisplayHandle.html - name: ',' - name: " " - name: out @@ -1699,13 +1611,13 @@ references: href: https://learn.microsoft.com/dotnet/api/system.int32 - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IDisplayComponent.GetResolution(OpenTK.Core.Platform.DisplayHandle,System.Int32@,System.Int32@) + - uid: OpenTK.Platform.IDisplayComponent.GetResolution(OpenTK.Platform.DisplayHandle,System.Int32@,System.Int32@) name: GetResolution - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_GetResolution_OpenTK_Core_Platform_DisplayHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_GetResolution_OpenTK_Platform_DisplayHandle_System_Int32__System_Int32__ - name: ( - - uid: OpenTK.Core.Platform.DisplayHandle + - uid: OpenTK.Platform.DisplayHandle name: DisplayHandle - href: OpenTK.Core.Platform.DisplayHandle.html + href: OpenTK.Platform.DisplayHandle.html - name: ',' - name: " " - uid: System.Int32 @@ -1721,28 +1633,28 @@ references: - name: ) - uid: OpenTK.Platform.Native.SDL.SDLDisplayComponent.GetWorkArea* commentId: Overload:OpenTK.Platform.Native.SDL.SDLDisplayComponent.GetWorkArea - href: OpenTK.Platform.Native.SDL.SDLDisplayComponent.html#OpenTK_Platform_Native_SDL_SDLDisplayComponent_GetWorkArea_OpenTK_Core_Platform_DisplayHandle_OpenTK_Mathematics_Box2i__ + href: OpenTK.Platform.Native.SDL.SDLDisplayComponent.html#OpenTK_Platform_Native_SDL_SDLDisplayComponent_GetWorkArea_OpenTK_Platform_DisplayHandle_OpenTK_Mathematics_Box2i__ name: GetWorkArea nameWithType: SDLDisplayComponent.GetWorkArea fullName: OpenTK.Platform.Native.SDL.SDLDisplayComponent.GetWorkArea -- uid: OpenTK.Core.Platform.IDisplayComponent.GetWorkArea(OpenTK.Core.Platform.DisplayHandle,OpenTK.Mathematics.Box2i@) - commentId: M:OpenTK.Core.Platform.IDisplayComponent.GetWorkArea(OpenTK.Core.Platform.DisplayHandle,OpenTK.Mathematics.Box2i@) - parent: OpenTK.Core.Platform.IDisplayComponent - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_GetWorkArea_OpenTK_Core_Platform_DisplayHandle_OpenTK_Mathematics_Box2i__ +- uid: OpenTK.Platform.IDisplayComponent.GetWorkArea(OpenTK.Platform.DisplayHandle,OpenTK.Mathematics.Box2i@) + commentId: M:OpenTK.Platform.IDisplayComponent.GetWorkArea(OpenTK.Platform.DisplayHandle,OpenTK.Mathematics.Box2i@) + parent: OpenTK.Platform.IDisplayComponent + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_GetWorkArea_OpenTK_Platform_DisplayHandle_OpenTK_Mathematics_Box2i__ name: GetWorkArea(DisplayHandle, out Box2i) nameWithType: IDisplayComponent.GetWorkArea(DisplayHandle, out Box2i) - fullName: OpenTK.Core.Platform.IDisplayComponent.GetWorkArea(OpenTK.Core.Platform.DisplayHandle, out OpenTK.Mathematics.Box2i) + fullName: OpenTK.Platform.IDisplayComponent.GetWorkArea(OpenTK.Platform.DisplayHandle, out OpenTK.Mathematics.Box2i) nameWithType.vb: IDisplayComponent.GetWorkArea(DisplayHandle, Box2i) - fullName.vb: OpenTK.Core.Platform.IDisplayComponent.GetWorkArea(OpenTK.Core.Platform.DisplayHandle, OpenTK.Mathematics.Box2i) + fullName.vb: OpenTK.Platform.IDisplayComponent.GetWorkArea(OpenTK.Platform.DisplayHandle, OpenTK.Mathematics.Box2i) name.vb: GetWorkArea(DisplayHandle, Box2i) spec.csharp: - - uid: OpenTK.Core.Platform.IDisplayComponent.GetWorkArea(OpenTK.Core.Platform.DisplayHandle,OpenTK.Mathematics.Box2i@) + - uid: OpenTK.Platform.IDisplayComponent.GetWorkArea(OpenTK.Platform.DisplayHandle,OpenTK.Mathematics.Box2i@) name: GetWorkArea - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_GetWorkArea_OpenTK_Core_Platform_DisplayHandle_OpenTK_Mathematics_Box2i__ + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_GetWorkArea_OpenTK_Platform_DisplayHandle_OpenTK_Mathematics_Box2i__ - name: ( - - uid: OpenTK.Core.Platform.DisplayHandle + - uid: OpenTK.Platform.DisplayHandle name: DisplayHandle - href: OpenTK.Core.Platform.DisplayHandle.html + href: OpenTK.Platform.DisplayHandle.html - name: ',' - name: " " - name: out @@ -1752,13 +1664,13 @@ references: href: OpenTK.Mathematics.Box2i.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IDisplayComponent.GetWorkArea(OpenTK.Core.Platform.DisplayHandle,OpenTK.Mathematics.Box2i@) + - uid: OpenTK.Platform.IDisplayComponent.GetWorkArea(OpenTK.Platform.DisplayHandle,OpenTK.Mathematics.Box2i@) name: GetWorkArea - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_GetWorkArea_OpenTK_Core_Platform_DisplayHandle_OpenTK_Mathematics_Box2i__ + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_GetWorkArea_OpenTK_Platform_DisplayHandle_OpenTK_Mathematics_Box2i__ - name: ( - - uid: OpenTK.Core.Platform.DisplayHandle + - uid: OpenTK.Platform.DisplayHandle name: DisplayHandle - href: OpenTK.Core.Platform.DisplayHandle.html + href: OpenTK.Platform.DisplayHandle.html - name: ',' - name: " " - uid: OpenTK.Mathematics.Box2i @@ -1796,29 +1708,29 @@ references: href: OpenTK.Mathematics.html - uid: OpenTK.Platform.Native.SDL.SDLDisplayComponent.GetRefreshRate* commentId: Overload:OpenTK.Platform.Native.SDL.SDLDisplayComponent.GetRefreshRate - href: OpenTK.Platform.Native.SDL.SDLDisplayComponent.html#OpenTK_Platform_Native_SDL_SDLDisplayComponent_GetRefreshRate_OpenTK_Core_Platform_DisplayHandle_System_Single__ + href: OpenTK.Platform.Native.SDL.SDLDisplayComponent.html#OpenTK_Platform_Native_SDL_SDLDisplayComponent_GetRefreshRate_OpenTK_Platform_DisplayHandle_System_Single__ name: GetRefreshRate nameWithType: SDLDisplayComponent.GetRefreshRate fullName: OpenTK.Platform.Native.SDL.SDLDisplayComponent.GetRefreshRate -- uid: OpenTK.Core.Platform.IDisplayComponent.GetRefreshRate(OpenTK.Core.Platform.DisplayHandle,System.Single@) - commentId: M:OpenTK.Core.Platform.IDisplayComponent.GetRefreshRate(OpenTK.Core.Platform.DisplayHandle,System.Single@) - parent: OpenTK.Core.Platform.IDisplayComponent +- uid: OpenTK.Platform.IDisplayComponent.GetRefreshRate(OpenTK.Platform.DisplayHandle,System.Single@) + commentId: M:OpenTK.Platform.IDisplayComponent.GetRefreshRate(OpenTK.Platform.DisplayHandle,System.Single@) + parent: OpenTK.Platform.IDisplayComponent isExternal: true - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_GetRefreshRate_OpenTK_Core_Platform_DisplayHandle_System_Single__ + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_GetRefreshRate_OpenTK_Platform_DisplayHandle_System_Single__ name: GetRefreshRate(DisplayHandle, out float) nameWithType: IDisplayComponent.GetRefreshRate(DisplayHandle, out float) - fullName: OpenTK.Core.Platform.IDisplayComponent.GetRefreshRate(OpenTK.Core.Platform.DisplayHandle, out float) + fullName: OpenTK.Platform.IDisplayComponent.GetRefreshRate(OpenTK.Platform.DisplayHandle, out float) nameWithType.vb: IDisplayComponent.GetRefreshRate(DisplayHandle, Single) - fullName.vb: OpenTK.Core.Platform.IDisplayComponent.GetRefreshRate(OpenTK.Core.Platform.DisplayHandle, Single) + fullName.vb: OpenTK.Platform.IDisplayComponent.GetRefreshRate(OpenTK.Platform.DisplayHandle, Single) name.vb: GetRefreshRate(DisplayHandle, Single) spec.csharp: - - uid: OpenTK.Core.Platform.IDisplayComponent.GetRefreshRate(OpenTK.Core.Platform.DisplayHandle,System.Single@) + - uid: OpenTK.Platform.IDisplayComponent.GetRefreshRate(OpenTK.Platform.DisplayHandle,System.Single@) name: GetRefreshRate - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_GetRefreshRate_OpenTK_Core_Platform_DisplayHandle_System_Single__ + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_GetRefreshRate_OpenTK_Platform_DisplayHandle_System_Single__ - name: ( - - uid: OpenTK.Core.Platform.DisplayHandle + - uid: OpenTK.Platform.DisplayHandle name: DisplayHandle - href: OpenTK.Core.Platform.DisplayHandle.html + href: OpenTK.Platform.DisplayHandle.html - name: ',' - name: " " - name: out @@ -1829,13 +1741,13 @@ references: href: https://learn.microsoft.com/dotnet/api/system.single - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IDisplayComponent.GetRefreshRate(OpenTK.Core.Platform.DisplayHandle,System.Single@) + - uid: OpenTK.Platform.IDisplayComponent.GetRefreshRate(OpenTK.Platform.DisplayHandle,System.Single@) name: GetRefreshRate - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_GetRefreshRate_OpenTK_Core_Platform_DisplayHandle_System_Single__ + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_GetRefreshRate_OpenTK_Platform_DisplayHandle_System_Single__ - name: ( - - uid: OpenTK.Core.Platform.DisplayHandle + - uid: OpenTK.Platform.DisplayHandle name: DisplayHandle - href: OpenTK.Core.Platform.DisplayHandle.html + href: OpenTK.Platform.DisplayHandle.html - name: ',' - name: " " - uid: System.Single @@ -1856,29 +1768,29 @@ references: name.vb: Single - uid: OpenTK.Platform.Native.SDL.SDLDisplayComponent.GetDisplayScale* commentId: Overload:OpenTK.Platform.Native.SDL.SDLDisplayComponent.GetDisplayScale - href: OpenTK.Platform.Native.SDL.SDLDisplayComponent.html#OpenTK_Platform_Native_SDL_SDLDisplayComponent_GetDisplayScale_OpenTK_Core_Platform_DisplayHandle_System_Single__System_Single__ + href: OpenTK.Platform.Native.SDL.SDLDisplayComponent.html#OpenTK_Platform_Native_SDL_SDLDisplayComponent_GetDisplayScale_OpenTK_Platform_DisplayHandle_System_Single__System_Single__ name: GetDisplayScale nameWithType: SDLDisplayComponent.GetDisplayScale fullName: OpenTK.Platform.Native.SDL.SDLDisplayComponent.GetDisplayScale -- uid: OpenTK.Core.Platform.IDisplayComponent.GetDisplayScale(OpenTK.Core.Platform.DisplayHandle,System.Single@,System.Single@) - commentId: M:OpenTK.Core.Platform.IDisplayComponent.GetDisplayScale(OpenTK.Core.Platform.DisplayHandle,System.Single@,System.Single@) - parent: OpenTK.Core.Platform.IDisplayComponent +- uid: OpenTK.Platform.IDisplayComponent.GetDisplayScale(OpenTK.Platform.DisplayHandle,System.Single@,System.Single@) + commentId: M:OpenTK.Platform.IDisplayComponent.GetDisplayScale(OpenTK.Platform.DisplayHandle,System.Single@,System.Single@) + parent: OpenTK.Platform.IDisplayComponent isExternal: true - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_GetDisplayScale_OpenTK_Core_Platform_DisplayHandle_System_Single__System_Single__ + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_GetDisplayScale_OpenTK_Platform_DisplayHandle_System_Single__System_Single__ name: GetDisplayScale(DisplayHandle, out float, out float) nameWithType: IDisplayComponent.GetDisplayScale(DisplayHandle, out float, out float) - fullName: OpenTK.Core.Platform.IDisplayComponent.GetDisplayScale(OpenTK.Core.Platform.DisplayHandle, out float, out float) + fullName: OpenTK.Platform.IDisplayComponent.GetDisplayScale(OpenTK.Platform.DisplayHandle, out float, out float) nameWithType.vb: IDisplayComponent.GetDisplayScale(DisplayHandle, Single, Single) - fullName.vb: OpenTK.Core.Platform.IDisplayComponent.GetDisplayScale(OpenTK.Core.Platform.DisplayHandle, Single, Single) + fullName.vb: OpenTK.Platform.IDisplayComponent.GetDisplayScale(OpenTK.Platform.DisplayHandle, Single, Single) name.vb: GetDisplayScale(DisplayHandle, Single, Single) spec.csharp: - - uid: OpenTK.Core.Platform.IDisplayComponent.GetDisplayScale(OpenTK.Core.Platform.DisplayHandle,System.Single@,System.Single@) + - uid: OpenTK.Platform.IDisplayComponent.GetDisplayScale(OpenTK.Platform.DisplayHandle,System.Single@,System.Single@) name: GetDisplayScale - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_GetDisplayScale_OpenTK_Core_Platform_DisplayHandle_System_Single__System_Single__ + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_GetDisplayScale_OpenTK_Platform_DisplayHandle_System_Single__System_Single__ - name: ( - - uid: OpenTK.Core.Platform.DisplayHandle + - uid: OpenTK.Platform.DisplayHandle name: DisplayHandle - href: OpenTK.Core.Platform.DisplayHandle.html + href: OpenTK.Platform.DisplayHandle.html - name: ',' - name: " " - name: out @@ -1897,13 +1809,13 @@ references: href: https://learn.microsoft.com/dotnet/api/system.single - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IDisplayComponent.GetDisplayScale(OpenTK.Core.Platform.DisplayHandle,System.Single@,System.Single@) + - uid: OpenTK.Platform.IDisplayComponent.GetDisplayScale(OpenTK.Platform.DisplayHandle,System.Single@,System.Single@) name: GetDisplayScale - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_GetDisplayScale_OpenTK_Core_Platform_DisplayHandle_System_Single__System_Single__ + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_GetDisplayScale_OpenTK_Platform_DisplayHandle_System_Single__System_Single__ - name: ( - - uid: OpenTK.Core.Platform.DisplayHandle + - uid: OpenTK.Platform.DisplayHandle name: DisplayHandle - href: OpenTK.Core.Platform.DisplayHandle.html + href: OpenTK.Platform.DisplayHandle.html - name: ',' - name: " " - uid: System.Single diff --git a/api/OpenTK.Platform.Native.SDL.SDLIconComponent.yml b/api/OpenTK.Platform.Native.SDL.SDLIconComponent.yml index 57eef064..99143c7f 100644 --- a/api/OpenTK.Platform.Native.SDL.SDLIconComponent.yml +++ b/api/OpenTK.Platform.Native.SDL.SDLIconComponent.yml @@ -6,13 +6,13 @@ items: parent: OpenTK.Platform.Native.SDL children: - OpenTK.Platform.Native.SDL.SDLIconComponent.CanLoadSystemIcons - - OpenTK.Platform.Native.SDL.SDLIconComponent.Create(OpenTK.Core.Platform.SystemIconType) + - OpenTK.Platform.Native.SDL.SDLIconComponent.Create(OpenTK.Platform.SystemIconType) - OpenTK.Platform.Native.SDL.SDLIconComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte}) - - OpenTK.Platform.Native.SDL.SDLIconComponent.Destroy(OpenTK.Core.Platform.IconHandle) - - OpenTK.Platform.Native.SDL.SDLIconComponent.GetBitmapByteSize(OpenTK.Core.Platform.IconHandle) - - OpenTK.Platform.Native.SDL.SDLIconComponent.GetBitmapData(OpenTK.Core.Platform.IconHandle,System.Span{System.Byte}) - - OpenTK.Platform.Native.SDL.SDLIconComponent.GetSize(OpenTK.Core.Platform.IconHandle,System.Int32@,System.Int32@) - - OpenTK.Platform.Native.SDL.SDLIconComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + - OpenTK.Platform.Native.SDL.SDLIconComponent.Destroy(OpenTK.Platform.IconHandle) + - OpenTK.Platform.Native.SDL.SDLIconComponent.GetBitmapByteSize(OpenTK.Platform.IconHandle) + - OpenTK.Platform.Native.SDL.SDLIconComponent.GetBitmapData(OpenTK.Platform.IconHandle,System.Span{System.Byte}) + - OpenTK.Platform.Native.SDL.SDLIconComponent.GetSize(OpenTK.Platform.IconHandle,System.Int32@,System.Int32@) + - OpenTK.Platform.Native.SDL.SDLIconComponent.Initialize(OpenTK.Platform.ToolkitOptions) - OpenTK.Platform.Native.SDL.SDLIconComponent.Logger - OpenTK.Platform.Native.SDL.SDLIconComponent.Name - OpenTK.Platform.Native.SDL.SDLIconComponent.Provides @@ -24,15 +24,11 @@ items: fullName: OpenTK.Platform.Native.SDL.SDLIconComponent type: Class source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLIconComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SDLIconComponent - path: opentk/src/OpenTK.Platform.Native/SDL/SDLIconComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLIconComponent.cs startLine: 12 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL syntax: content: 'public class SDLIconComponent : IIconComponent, IPalComponent' @@ -40,8 +36,8 @@ items: inheritance: - System.Object implements: - - OpenTK.Core.Platform.IIconComponent - - OpenTK.Core.Platform.IPalComponent + - OpenTK.Platform.IIconComponent + - OpenTK.Platform.IPalComponent inheritedMembers: - System.Object.Equals(System.Object) - System.Object.Equals(System.Object,System.Object) @@ -62,15 +58,11 @@ items: fullName: OpenTK.Platform.Native.SDL.SDLIconComponent.Name type: Property source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLIconComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Name - path: opentk/src/OpenTK.Platform.Native/SDL/SDLIconComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLIconComponent.cs startLine: 15 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: Name of the abstraction layer component. example: [] @@ -82,7 +74,7 @@ items: content.vb: Public ReadOnly Property Name As String overload: OpenTK.Platform.Native.SDL.SDLIconComponent.Name* implements: - - OpenTK.Core.Platform.IPalComponent.Name + - OpenTK.Platform.IPalComponent.Name - uid: OpenTK.Platform.Native.SDL.SDLIconComponent.Provides commentId: P:OpenTK.Platform.Native.SDL.SDLIconComponent.Provides id: Provides @@ -95,15 +87,11 @@ items: fullName: OpenTK.Platform.Native.SDL.SDLIconComponent.Provides type: Property source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLIconComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Provides - path: opentk/src/OpenTK.Platform.Native/SDL/SDLIconComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLIconComponent.cs startLine: 18 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: Specifies which PAL components this object provides. example: [] @@ -111,11 +99,11 @@ items: content: public PalComponents Provides { get; } parameters: [] return: - type: OpenTK.Core.Platform.PalComponents + type: OpenTK.Platform.PalComponents content.vb: Public ReadOnly Property Provides As PalComponents overload: OpenTK.Platform.Native.SDL.SDLIconComponent.Provides* implements: - - OpenTK.Core.Platform.IPalComponent.Provides + - OpenTK.Platform.IPalComponent.Provides - uid: OpenTK.Platform.Native.SDL.SDLIconComponent.Logger commentId: P:OpenTK.Platform.Native.SDL.SDLIconComponent.Logger id: Logger @@ -128,15 +116,11 @@ items: fullName: OpenTK.Platform.Native.SDL.SDLIconComponent.Logger type: Property source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLIconComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Logger - path: opentk/src/OpenTK.Platform.Native/SDL/SDLIconComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLIconComponent.cs startLine: 21 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: Provides a logger for this component. example: [] @@ -148,28 +132,24 @@ items: content.vb: Public Property Logger As ILogger overload: OpenTK.Platform.Native.SDL.SDLIconComponent.Logger* implements: - - OpenTK.Core.Platform.IPalComponent.Logger -- uid: OpenTK.Platform.Native.SDL.SDLIconComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - commentId: M:OpenTK.Platform.Native.SDL.SDLIconComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - id: Initialize(OpenTK.Core.Platform.ToolkitOptions) + - OpenTK.Platform.IPalComponent.Logger +- uid: OpenTK.Platform.Native.SDL.SDLIconComponent.Initialize(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Native.SDL.SDLIconComponent.Initialize(OpenTK.Platform.ToolkitOptions) + id: Initialize(OpenTK.Platform.ToolkitOptions) parent: OpenTK.Platform.Native.SDL.SDLIconComponent langs: - csharp - vb name: Initialize(ToolkitOptions) nameWithType: SDLIconComponent.Initialize(ToolkitOptions) - fullName: OpenTK.Platform.Native.SDL.SDLIconComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + fullName: OpenTK.Platform.Native.SDL.SDLIconComponent.Initialize(OpenTK.Platform.ToolkitOptions) type: Method source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLIconComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Initialize - path: opentk/src/OpenTK.Platform.Native/SDL/SDLIconComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLIconComponent.cs startLine: 24 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: Initialize the component. example: [] @@ -177,12 +157,12 @@ items: content: public void Initialize(ToolkitOptions options) parameters: - id: options - type: OpenTK.Core.Platform.ToolkitOptions + type: OpenTK.Platform.ToolkitOptions description: The options to initialize the component with. content.vb: Public Sub Initialize(options As ToolkitOptions) overload: OpenTK.Platform.Native.SDL.SDLIconComponent.Initialize* implements: - - OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + - OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) - uid: OpenTK.Platform.Native.SDL.SDLIconComponent.CanLoadSystemIcons commentId: P:OpenTK.Platform.Native.SDL.SDLIconComponent.CanLoadSystemIcons id: CanLoadSystemIcons @@ -195,20 +175,16 @@ items: fullName: OpenTK.Platform.Native.SDL.SDLIconComponent.CanLoadSystemIcons type: Property source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLIconComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CanLoadSystemIcons - path: opentk/src/OpenTK.Platform.Native/SDL/SDLIconComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLIconComponent.cs startLine: 29 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: >- True if icon objects can be populated from common system icons. - If this is true, then will work, otherwise an exception will be thrown. + If this is true, then will work, otherwise an exception will be thrown. example: [] syntax: content: public bool CanLoadSystemIcons { get; } @@ -217,51 +193,50 @@ items: type: System.Boolean content.vb: Public ReadOnly Property CanLoadSystemIcons As Boolean overload: OpenTK.Platform.Native.SDL.SDLIconComponent.CanLoadSystemIcons* + seealso: + - linkId: OpenTK.Platform.IIconComponent.Create(OpenTK.Platform.SystemIconType) + commentId: M:OpenTK.Platform.IIconComponent.Create(OpenTK.Platform.SystemIconType) implements: - - OpenTK.Core.Platform.IIconComponent.CanLoadSystemIcons -- uid: OpenTK.Platform.Native.SDL.SDLIconComponent.Create(OpenTK.Core.Platform.SystemIconType) - commentId: M:OpenTK.Platform.Native.SDL.SDLIconComponent.Create(OpenTK.Core.Platform.SystemIconType) - id: Create(OpenTK.Core.Platform.SystemIconType) + - OpenTK.Platform.IIconComponent.CanLoadSystemIcons +- uid: OpenTK.Platform.Native.SDL.SDLIconComponent.Create(OpenTK.Platform.SystemIconType) + commentId: M:OpenTK.Platform.Native.SDL.SDLIconComponent.Create(OpenTK.Platform.SystemIconType) + id: Create(OpenTK.Platform.SystemIconType) parent: OpenTK.Platform.Native.SDL.SDLIconComponent langs: - csharp - vb name: Create(SystemIconType) nameWithType: SDLIconComponent.Create(SystemIconType) - fullName: OpenTK.Platform.Native.SDL.SDLIconComponent.Create(OpenTK.Core.Platform.SystemIconType) + fullName: OpenTK.Platform.Native.SDL.SDLIconComponent.Create(OpenTK.Platform.SystemIconType) type: Method source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLIconComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Create - path: opentk/src/OpenTK.Platform.Native/SDL/SDLIconComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLIconComponent.cs startLine: 32 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: >- Load a system icon. - Only works if is true. + Only works if is true. example: [] syntax: content: public IconHandle Create(SystemIconType systemIcon) parameters: - id: systemIcon - type: OpenTK.Core.Platform.SystemIconType + type: OpenTK.Platform.SystemIconType description: The system icon to create. return: - type: OpenTK.Core.Platform.IconHandle + type: OpenTK.Platform.IconHandle description: A handle to the created system icon. content.vb: Public Function Create(systemIcon As SystemIconType) As IconHandle overload: OpenTK.Platform.Native.SDL.SDLIconComponent.Create* seealso: - - linkId: OpenTK.Core.Platform.IIconComponent.CanLoadSystemIcons - commentId: P:OpenTK.Core.Platform.IIconComponent.CanLoadSystemIcons + - linkId: OpenTK.Platform.IIconComponent.CanLoadSystemIcons + commentId: P:OpenTK.Platform.IIconComponent.CanLoadSystemIcons implements: - - OpenTK.Core.Platform.IIconComponent.Create(OpenTK.Core.Platform.SystemIconType) + - OpenTK.Platform.IIconComponent.Create(OpenTK.Platform.SystemIconType) - uid: OpenTK.Platform.Native.SDL.SDLIconComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte}) commentId: M:OpenTK.Platform.Native.SDL.SDLIconComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte}) id: Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte}) @@ -274,15 +249,11 @@ items: fullName: OpenTK.Platform.Native.SDL.SDLIconComponent.Create(int, int, System.ReadOnlySpan) type: Method source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLIconComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Create - path: opentk/src/OpenTK.Platform.Native/SDL/SDLIconComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLIconComponent.cs startLine: 38 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: Load an icon object with image data. example: [] @@ -299,36 +270,32 @@ items: type: System.ReadOnlySpan{System.Byte} description: Image data to load into icon. return: - type: OpenTK.Core.Platform.IconHandle + type: OpenTK.Platform.IconHandle description: A handle to the created icon. content.vb: Public Function Create(width As Integer, height As Integer, data As ReadOnlySpan(Of Byte)) As IconHandle overload: OpenTK.Platform.Native.SDL.SDLIconComponent.Create* implements: - - OpenTK.Core.Platform.IIconComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte}) + - OpenTK.Platform.IIconComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte}) nameWithType.vb: SDLIconComponent.Create(Integer, Integer, ReadOnlySpan(Of Byte)) fullName.vb: OpenTK.Platform.Native.SDL.SDLIconComponent.Create(Integer, Integer, System.ReadOnlySpan(Of Byte)) name.vb: Create(Integer, Integer, ReadOnlySpan(Of Byte)) -- uid: OpenTK.Platform.Native.SDL.SDLIconComponent.Destroy(OpenTK.Core.Platform.IconHandle) - commentId: M:OpenTK.Platform.Native.SDL.SDLIconComponent.Destroy(OpenTK.Core.Platform.IconHandle) - id: Destroy(OpenTK.Core.Platform.IconHandle) +- uid: OpenTK.Platform.Native.SDL.SDLIconComponent.Destroy(OpenTK.Platform.IconHandle) + commentId: M:OpenTK.Platform.Native.SDL.SDLIconComponent.Destroy(OpenTK.Platform.IconHandle) + id: Destroy(OpenTK.Platform.IconHandle) parent: OpenTK.Platform.Native.SDL.SDLIconComponent langs: - csharp - vb name: Destroy(IconHandle) nameWithType: SDLIconComponent.Destroy(IconHandle) - fullName: OpenTK.Platform.Native.SDL.SDLIconComponent.Destroy(OpenTK.Core.Platform.IconHandle) + fullName: OpenTK.Platform.Native.SDL.SDLIconComponent.Destroy(OpenTK.Platform.IconHandle) type: Method source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLIconComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Destroy - path: opentk/src/OpenTK.Platform.Native/SDL/SDLIconComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLIconComponent.cs startLine: 59 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: Destroy an icon object. example: [] @@ -336,7 +303,7 @@ items: content: public void Destroy(IconHandle handle) parameters: - id: handle - type: OpenTK.Core.Platform.IconHandle + type: OpenTK.Platform.IconHandle description: Handle to the icon object to destroy. content.vb: Public Sub Destroy(handle As IconHandle) overload: OpenTK.Platform.Native.SDL.SDLIconComponent.Destroy* @@ -345,28 +312,24 @@ items: commentId: T:System.ArgumentNullException description: handle is null. implements: - - OpenTK.Core.Platform.IIconComponent.Destroy(OpenTK.Core.Platform.IconHandle) -- uid: OpenTK.Platform.Native.SDL.SDLIconComponent.GetSize(OpenTK.Core.Platform.IconHandle,System.Int32@,System.Int32@) - commentId: M:OpenTK.Platform.Native.SDL.SDLIconComponent.GetSize(OpenTK.Core.Platform.IconHandle,System.Int32@,System.Int32@) - id: GetSize(OpenTK.Core.Platform.IconHandle,System.Int32@,System.Int32@) + - OpenTK.Platform.IIconComponent.Destroy(OpenTK.Platform.IconHandle) +- uid: OpenTK.Platform.Native.SDL.SDLIconComponent.GetSize(OpenTK.Platform.IconHandle,System.Int32@,System.Int32@) + commentId: M:OpenTK.Platform.Native.SDL.SDLIconComponent.GetSize(OpenTK.Platform.IconHandle,System.Int32@,System.Int32@) + id: GetSize(OpenTK.Platform.IconHandle,System.Int32@,System.Int32@) parent: OpenTK.Platform.Native.SDL.SDLIconComponent langs: - csharp - vb name: GetSize(IconHandle, out int, out int) nameWithType: SDLIconComponent.GetSize(IconHandle, out int, out int) - fullName: OpenTK.Platform.Native.SDL.SDLIconComponent.GetSize(OpenTK.Core.Platform.IconHandle, out int, out int) + fullName: OpenTK.Platform.Native.SDL.SDLIconComponent.GetSize(OpenTK.Platform.IconHandle, out int, out int) type: Method source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLIconComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetSize - path: opentk/src/OpenTK.Platform.Native/SDL/SDLIconComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLIconComponent.cs startLine: 71 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: Get the dimensions of a icon object. example: [] @@ -374,7 +337,7 @@ items: content: public void GetSize(IconHandle handle, out int width, out int height) parameters: - id: handle - type: OpenTK.Core.Platform.IconHandle + type: OpenTK.Platform.IconHandle description: Handle to icon object. - id: width type: System.Int32 @@ -389,71 +352,63 @@ items: commentId: T:System.ArgumentNullException description: handle is null. implements: - - OpenTK.Core.Platform.IIconComponent.GetSize(OpenTK.Core.Platform.IconHandle,System.Int32@,System.Int32@) + - OpenTK.Platform.IIconComponent.GetSize(OpenTK.Platform.IconHandle,System.Int32@,System.Int32@) nameWithType.vb: SDLIconComponent.GetSize(IconHandle, Integer, Integer) - fullName.vb: OpenTK.Platform.Native.SDL.SDLIconComponent.GetSize(OpenTK.Core.Platform.IconHandle, Integer, Integer) + fullName.vb: OpenTK.Platform.Native.SDL.SDLIconComponent.GetSize(OpenTK.Platform.IconHandle, Integer, Integer) name.vb: GetSize(IconHandle, Integer, Integer) -- uid: OpenTK.Platform.Native.SDL.SDLIconComponent.GetBitmapData(OpenTK.Core.Platform.IconHandle,System.Span{System.Byte}) - commentId: M:OpenTK.Platform.Native.SDL.SDLIconComponent.GetBitmapData(OpenTK.Core.Platform.IconHandle,System.Span{System.Byte}) - id: GetBitmapData(OpenTK.Core.Platform.IconHandle,System.Span{System.Byte}) +- uid: OpenTK.Platform.Native.SDL.SDLIconComponent.GetBitmapData(OpenTK.Platform.IconHandle,System.Span{System.Byte}) + commentId: M:OpenTK.Platform.Native.SDL.SDLIconComponent.GetBitmapData(OpenTK.Platform.IconHandle,System.Span{System.Byte}) + id: GetBitmapData(OpenTK.Platform.IconHandle,System.Span{System.Byte}) parent: OpenTK.Platform.Native.SDL.SDLIconComponent langs: - csharp - vb name: GetBitmapData(IconHandle, Span) nameWithType: SDLIconComponent.GetBitmapData(IconHandle, Span) - fullName: OpenTK.Platform.Native.SDL.SDLIconComponent.GetBitmapData(OpenTK.Core.Platform.IconHandle, System.Span) + fullName: OpenTK.Platform.Native.SDL.SDLIconComponent.GetBitmapData(OpenTK.Platform.IconHandle, System.Span) type: Method source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLIconComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetBitmapData - path: opentk/src/OpenTK.Platform.Native/SDL/SDLIconComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLIconComponent.cs startLine: 79 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL syntax: content: public void GetBitmapData(IconHandle handle, Span data) parameters: - id: handle - type: OpenTK.Core.Platform.IconHandle + type: OpenTK.Platform.IconHandle - id: data type: System.Span{System.Byte} content.vb: Public Sub GetBitmapData(handle As IconHandle, data As Span(Of Byte)) overload: OpenTK.Platform.Native.SDL.SDLIconComponent.GetBitmapData* nameWithType.vb: SDLIconComponent.GetBitmapData(IconHandle, Span(Of Byte)) - fullName.vb: OpenTK.Platform.Native.SDL.SDLIconComponent.GetBitmapData(OpenTK.Core.Platform.IconHandle, System.Span(Of Byte)) + fullName.vb: OpenTK.Platform.Native.SDL.SDLIconComponent.GetBitmapData(OpenTK.Platform.IconHandle, System.Span(Of Byte)) name.vb: GetBitmapData(IconHandle, Span(Of Byte)) -- uid: OpenTK.Platform.Native.SDL.SDLIconComponent.GetBitmapByteSize(OpenTK.Core.Platform.IconHandle) - commentId: M:OpenTK.Platform.Native.SDL.SDLIconComponent.GetBitmapByteSize(OpenTK.Core.Platform.IconHandle) - id: GetBitmapByteSize(OpenTK.Core.Platform.IconHandle) +- uid: OpenTK.Platform.Native.SDL.SDLIconComponent.GetBitmapByteSize(OpenTK.Platform.IconHandle) + commentId: M:OpenTK.Platform.Native.SDL.SDLIconComponent.GetBitmapByteSize(OpenTK.Platform.IconHandle) + id: GetBitmapByteSize(OpenTK.Platform.IconHandle) parent: OpenTK.Platform.Native.SDL.SDLIconComponent langs: - csharp - vb name: GetBitmapByteSize(IconHandle) nameWithType: SDLIconComponent.GetBitmapByteSize(IconHandle) - fullName: OpenTK.Platform.Native.SDL.SDLIconComponent.GetBitmapByteSize(OpenTK.Core.Platform.IconHandle) + fullName: OpenTK.Platform.Native.SDL.SDLIconComponent.GetBitmapByteSize(OpenTK.Platform.IconHandle) type: Method source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLIconComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetBitmapByteSize - path: opentk/src/OpenTK.Platform.Native/SDL/SDLIconComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLIconComponent.cs startLine: 92 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL syntax: content: public int GetBitmapByteSize(IconHandle handle) parameters: - id: handle - type: OpenTK.Core.Platform.IconHandle + type: OpenTK.Platform.IconHandle return: type: System.Int32 content.vb: Public Function GetBitmapByteSize(handle As IconHandle) As Integer @@ -508,20 +463,20 @@ references: nameWithType.vb: Object fullName.vb: Object name.vb: Object -- uid: OpenTK.Core.Platform.IIconComponent - commentId: T:OpenTK.Core.Platform.IIconComponent - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.IIconComponent.html +- uid: OpenTK.Platform.IIconComponent + commentId: T:OpenTK.Platform.IIconComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IIconComponent.html name: IIconComponent nameWithType: IIconComponent - fullName: OpenTK.Core.Platform.IIconComponent -- uid: OpenTK.Core.Platform.IPalComponent - commentId: T:OpenTK.Core.Platform.IPalComponent - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.IPalComponent.html + fullName: OpenTK.Platform.IIconComponent +- uid: OpenTK.Platform.IPalComponent + commentId: T:OpenTK.Platform.IPalComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IPalComponent.html name: IPalComponent nameWithType: IPalComponent - fullName: OpenTK.Core.Platform.IPalComponent + fullName: OpenTK.Platform.IPalComponent - uid: System.Object.Equals(System.Object) commentId: M:System.Object.Equals(System.Object) parent: System.Object @@ -748,49 +703,41 @@ references: name: System nameWithType: System fullName: System -- uid: OpenTK.Core.Platform - commentId: N:OpenTK.Core.Platform +- uid: OpenTK.Platform + commentId: N:OpenTK.Platform href: OpenTK.html - name: OpenTK.Core.Platform - nameWithType: OpenTK.Core.Platform - fullName: OpenTK.Core.Platform + name: OpenTK.Platform + nameWithType: OpenTK.Platform + fullName: OpenTK.Platform spec.csharp: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html spec.vb: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html - uid: OpenTK.Platform.Native.SDL.SDLIconComponent.Name* commentId: Overload:OpenTK.Platform.Native.SDL.SDLIconComponent.Name href: OpenTK.Platform.Native.SDL.SDLIconComponent.html#OpenTK_Platform_Native_SDL_SDLIconComponent_Name name: Name nameWithType: SDLIconComponent.Name fullName: OpenTK.Platform.Native.SDL.SDLIconComponent.Name -- uid: OpenTK.Core.Platform.IPalComponent.Name - commentId: P:OpenTK.Core.Platform.IPalComponent.Name - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Name +- uid: OpenTK.Platform.IPalComponent.Name + commentId: P:OpenTK.Platform.IPalComponent.Name + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Name name: Name nameWithType: IPalComponent.Name - fullName: OpenTK.Core.Platform.IPalComponent.Name + fullName: OpenTK.Platform.IPalComponent.Name - uid: System.String commentId: T:System.String parent: System @@ -808,33 +755,33 @@ references: name: Provides nameWithType: SDLIconComponent.Provides fullName: OpenTK.Platform.Native.SDL.SDLIconComponent.Provides -- uid: OpenTK.Core.Platform.IPalComponent.Provides - commentId: P:OpenTK.Core.Platform.IPalComponent.Provides - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Provides +- uid: OpenTK.Platform.IPalComponent.Provides + commentId: P:OpenTK.Platform.IPalComponent.Provides + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Provides name: Provides nameWithType: IPalComponent.Provides - fullName: OpenTK.Core.Platform.IPalComponent.Provides -- uid: OpenTK.Core.Platform.PalComponents - commentId: T:OpenTK.Core.Platform.PalComponents - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.PalComponents.html + fullName: OpenTK.Platform.IPalComponent.Provides +- uid: OpenTK.Platform.PalComponents + commentId: T:OpenTK.Platform.PalComponents + parent: OpenTK.Platform + href: OpenTK.Platform.PalComponents.html name: PalComponents nameWithType: PalComponents - fullName: OpenTK.Core.Platform.PalComponents + fullName: OpenTK.Platform.PalComponents - uid: OpenTK.Platform.Native.SDL.SDLIconComponent.Logger* commentId: Overload:OpenTK.Platform.Native.SDL.SDLIconComponent.Logger href: OpenTK.Platform.Native.SDL.SDLIconComponent.html#OpenTK_Platform_Native_SDL_SDLIconComponent_Logger name: Logger nameWithType: SDLIconComponent.Logger fullName: OpenTK.Platform.Native.SDL.SDLIconComponent.Logger -- uid: OpenTK.Core.Platform.IPalComponent.Logger - commentId: P:OpenTK.Core.Platform.IPalComponent.Logger - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Logger +- uid: OpenTK.Platform.IPalComponent.Logger + commentId: P:OpenTK.Platform.IPalComponent.Logger + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Logger name: Logger nameWithType: IPalComponent.Logger - fullName: OpenTK.Core.Platform.IPalComponent.Logger + fullName: OpenTK.Platform.IPalComponent.Logger - uid: OpenTK.Core.Utility.ILogger commentId: T:OpenTK.Core.Utility.ILogger parent: OpenTK.Core.Utility @@ -874,66 +821,66 @@ references: href: OpenTK.Core.Utility.html - uid: OpenTK.Platform.Native.SDL.SDLIconComponent.Initialize* commentId: Overload:OpenTK.Platform.Native.SDL.SDLIconComponent.Initialize - href: OpenTK.Platform.Native.SDL.SDLIconComponent.html#OpenTK_Platform_Native_SDL_SDLIconComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + href: OpenTK.Platform.Native.SDL.SDLIconComponent.html#OpenTK_Platform_Native_SDL_SDLIconComponent_Initialize_OpenTK_Platform_ToolkitOptions_ name: Initialize nameWithType: SDLIconComponent.Initialize fullName: OpenTK.Platform.Native.SDL.SDLIconComponent.Initialize -- uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - commentId: M:OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ +- uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ name: Initialize(ToolkitOptions) nameWithType: IPalComponent.Initialize(ToolkitOptions) - fullName: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + fullName: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) spec.csharp: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + - uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.ToolkitOptions + - uid: OpenTK.Platform.ToolkitOptions name: ToolkitOptions - href: OpenTK.Core.Platform.ToolkitOptions.html + href: OpenTK.Platform.ToolkitOptions.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + - uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.ToolkitOptions + - uid: OpenTK.Platform.ToolkitOptions name: ToolkitOptions - href: OpenTK.Core.Platform.ToolkitOptions.html + href: OpenTK.Platform.ToolkitOptions.html - name: ) -- uid: OpenTK.Core.Platform.ToolkitOptions - commentId: T:OpenTK.Core.Platform.ToolkitOptions - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.ToolkitOptions.html +- uid: OpenTK.Platform.ToolkitOptions + commentId: T:OpenTK.Platform.ToolkitOptions + parent: OpenTK.Platform + href: OpenTK.Platform.ToolkitOptions.html name: ToolkitOptions nameWithType: ToolkitOptions - fullName: OpenTK.Core.Platform.ToolkitOptions -- uid: OpenTK.Core.Platform.IIconComponent.Create(OpenTK.Core.Platform.SystemIconType) - commentId: M:OpenTK.Core.Platform.IIconComponent.Create(OpenTK.Core.Platform.SystemIconType) - parent: OpenTK.Core.Platform.IIconComponent - href: OpenTK.Core.Platform.IIconComponent.html#OpenTK_Core_Platform_IIconComponent_Create_OpenTK_Core_Platform_SystemIconType_ + fullName: OpenTK.Platform.ToolkitOptions +- uid: OpenTK.Platform.IIconComponent.Create(OpenTK.Platform.SystemIconType) + commentId: M:OpenTK.Platform.IIconComponent.Create(OpenTK.Platform.SystemIconType) + parent: OpenTK.Platform.IIconComponent + href: OpenTK.Platform.IIconComponent.html#OpenTK_Platform_IIconComponent_Create_OpenTK_Platform_SystemIconType_ name: Create(SystemIconType) nameWithType: IIconComponent.Create(SystemIconType) - fullName: OpenTK.Core.Platform.IIconComponent.Create(OpenTK.Core.Platform.SystemIconType) + fullName: OpenTK.Platform.IIconComponent.Create(OpenTK.Platform.SystemIconType) spec.csharp: - - uid: OpenTK.Core.Platform.IIconComponent.Create(OpenTK.Core.Platform.SystemIconType) + - uid: OpenTK.Platform.IIconComponent.Create(OpenTK.Platform.SystemIconType) name: Create - href: OpenTK.Core.Platform.IIconComponent.html#OpenTK_Core_Platform_IIconComponent_Create_OpenTK_Core_Platform_SystemIconType_ + href: OpenTK.Platform.IIconComponent.html#OpenTK_Platform_IIconComponent_Create_OpenTK_Platform_SystemIconType_ - name: ( - - uid: OpenTK.Core.Platform.SystemIconType + - uid: OpenTK.Platform.SystemIconType name: SystemIconType - href: OpenTK.Core.Platform.SystemIconType.html + href: OpenTK.Platform.SystemIconType.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IIconComponent.Create(OpenTK.Core.Platform.SystemIconType) + - uid: OpenTK.Platform.IIconComponent.Create(OpenTK.Platform.SystemIconType) name: Create - href: OpenTK.Core.Platform.IIconComponent.html#OpenTK_Core_Platform_IIconComponent_Create_OpenTK_Core_Platform_SystemIconType_ + href: OpenTK.Platform.IIconComponent.html#OpenTK_Platform_IIconComponent_Create_OpenTK_Platform_SystemIconType_ - name: ( - - uid: OpenTK.Core.Platform.SystemIconType + - uid: OpenTK.Platform.SystemIconType name: SystemIconType - href: OpenTK.Core.Platform.SystemIconType.html + href: OpenTK.Platform.SystemIconType.html - name: ) - uid: OpenTK.Platform.Native.SDL.SDLIconComponent.CanLoadSystemIcons* commentId: Overload:OpenTK.Platform.Native.SDL.SDLIconComponent.CanLoadSystemIcons @@ -941,13 +888,13 @@ references: name: CanLoadSystemIcons nameWithType: SDLIconComponent.CanLoadSystemIcons fullName: OpenTK.Platform.Native.SDL.SDLIconComponent.CanLoadSystemIcons -- uid: OpenTK.Core.Platform.IIconComponent.CanLoadSystemIcons - commentId: P:OpenTK.Core.Platform.IIconComponent.CanLoadSystemIcons - parent: OpenTK.Core.Platform.IIconComponent - href: OpenTK.Core.Platform.IIconComponent.html#OpenTK_Core_Platform_IIconComponent_CanLoadSystemIcons +- uid: OpenTK.Platform.IIconComponent.CanLoadSystemIcons + commentId: P:OpenTK.Platform.IIconComponent.CanLoadSystemIcons + parent: OpenTK.Platform.IIconComponent + href: OpenTK.Platform.IIconComponent.html#OpenTK_Platform_IIconComponent_CanLoadSystemIcons name: CanLoadSystemIcons nameWithType: IIconComponent.CanLoadSystemIcons - fullName: OpenTK.Core.Platform.IIconComponent.CanLoadSystemIcons + fullName: OpenTK.Platform.IIconComponent.CanLoadSystemIcons - uid: System.Boolean commentId: T:System.Boolean parent: System @@ -961,39 +908,39 @@ references: name.vb: Boolean - uid: OpenTK.Platform.Native.SDL.SDLIconComponent.Create* commentId: Overload:OpenTK.Platform.Native.SDL.SDLIconComponent.Create - href: OpenTK.Platform.Native.SDL.SDLIconComponent.html#OpenTK_Platform_Native_SDL_SDLIconComponent_Create_OpenTK_Core_Platform_SystemIconType_ + href: OpenTK.Platform.Native.SDL.SDLIconComponent.html#OpenTK_Platform_Native_SDL_SDLIconComponent_Create_OpenTK_Platform_SystemIconType_ name: Create nameWithType: SDLIconComponent.Create fullName: OpenTK.Platform.Native.SDL.SDLIconComponent.Create -- uid: OpenTK.Core.Platform.SystemIconType - commentId: T:OpenTK.Core.Platform.SystemIconType - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.SystemIconType.html +- uid: OpenTK.Platform.SystemIconType + commentId: T:OpenTK.Platform.SystemIconType + parent: OpenTK.Platform + href: OpenTK.Platform.SystemIconType.html name: SystemIconType nameWithType: SystemIconType - fullName: OpenTK.Core.Platform.SystemIconType -- uid: OpenTK.Core.Platform.IconHandle - commentId: T:OpenTK.Core.Platform.IconHandle - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.IconHandle.html + fullName: OpenTK.Platform.SystemIconType +- uid: OpenTK.Platform.IconHandle + commentId: T:OpenTK.Platform.IconHandle + parent: OpenTK.Platform + href: OpenTK.Platform.IconHandle.html name: IconHandle nameWithType: IconHandle - fullName: OpenTK.Core.Platform.IconHandle -- uid: OpenTK.Core.Platform.IIconComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte}) - commentId: M:OpenTK.Core.Platform.IIconComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte}) - parent: OpenTK.Core.Platform.IIconComponent + fullName: OpenTK.Platform.IconHandle +- uid: OpenTK.Platform.IIconComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte}) + commentId: M:OpenTK.Platform.IIconComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte}) + parent: OpenTK.Platform.IIconComponent isExternal: true - href: OpenTK.Core.Platform.IIconComponent.html#OpenTK_Core_Platform_IIconComponent_Create_System_Int32_System_Int32_System_ReadOnlySpan_System_Byte__ + href: OpenTK.Platform.IIconComponent.html#OpenTK_Platform_IIconComponent_Create_System_Int32_System_Int32_System_ReadOnlySpan_System_Byte__ name: Create(int, int, ReadOnlySpan) nameWithType: IIconComponent.Create(int, int, ReadOnlySpan) - fullName: OpenTK.Core.Platform.IIconComponent.Create(int, int, System.ReadOnlySpan) + fullName: OpenTK.Platform.IIconComponent.Create(int, int, System.ReadOnlySpan) nameWithType.vb: IIconComponent.Create(Integer, Integer, ReadOnlySpan(Of Byte)) - fullName.vb: OpenTK.Core.Platform.IIconComponent.Create(Integer, Integer, System.ReadOnlySpan(Of Byte)) + fullName.vb: OpenTK.Platform.IIconComponent.Create(Integer, Integer, System.ReadOnlySpan(Of Byte)) name.vb: Create(Integer, Integer, ReadOnlySpan(Of Byte)) spec.csharp: - - uid: OpenTK.Core.Platform.IIconComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte}) + - uid: OpenTK.Platform.IIconComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte}) name: Create - href: OpenTK.Core.Platform.IIconComponent.html#OpenTK_Core_Platform_IIconComponent_Create_System_Int32_System_Int32_System_ReadOnlySpan_System_Byte__ + href: OpenTK.Platform.IIconComponent.html#OpenTK_Platform_IIconComponent_Create_System_Int32_System_Int32_System_ReadOnlySpan_System_Byte__ - name: ( - uid: System.Int32 name: int @@ -1019,9 +966,9 @@ references: - name: '>' - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IIconComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte}) + - uid: OpenTK.Platform.IIconComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte}) name: Create - href: OpenTK.Core.Platform.IIconComponent.html#OpenTK_Core_Platform_IIconComponent_Create_System_Int32_System_Int32_System_ReadOnlySpan_System_Byte__ + href: OpenTK.Platform.IIconComponent.html#OpenTK_Platform_IIconComponent_Create_System_Int32_System_Int32_System_ReadOnlySpan_System_Byte__ - name: ( - uid: System.Int32 name: Integer @@ -1131,60 +1078,60 @@ references: fullName: System.ArgumentNullException - uid: OpenTK.Platform.Native.SDL.SDLIconComponent.Destroy* commentId: Overload:OpenTK.Platform.Native.SDL.SDLIconComponent.Destroy - href: OpenTK.Platform.Native.SDL.SDLIconComponent.html#OpenTK_Platform_Native_SDL_SDLIconComponent_Destroy_OpenTK_Core_Platform_IconHandle_ + href: OpenTK.Platform.Native.SDL.SDLIconComponent.html#OpenTK_Platform_Native_SDL_SDLIconComponent_Destroy_OpenTK_Platform_IconHandle_ name: Destroy nameWithType: SDLIconComponent.Destroy fullName: OpenTK.Platform.Native.SDL.SDLIconComponent.Destroy -- uid: OpenTK.Core.Platform.IIconComponent.Destroy(OpenTK.Core.Platform.IconHandle) - commentId: M:OpenTK.Core.Platform.IIconComponent.Destroy(OpenTK.Core.Platform.IconHandle) - parent: OpenTK.Core.Platform.IIconComponent - href: OpenTK.Core.Platform.IIconComponent.html#OpenTK_Core_Platform_IIconComponent_Destroy_OpenTK_Core_Platform_IconHandle_ +- uid: OpenTK.Platform.IIconComponent.Destroy(OpenTK.Platform.IconHandle) + commentId: M:OpenTK.Platform.IIconComponent.Destroy(OpenTK.Platform.IconHandle) + parent: OpenTK.Platform.IIconComponent + href: OpenTK.Platform.IIconComponent.html#OpenTK_Platform_IIconComponent_Destroy_OpenTK_Platform_IconHandle_ name: Destroy(IconHandle) nameWithType: IIconComponent.Destroy(IconHandle) - fullName: OpenTK.Core.Platform.IIconComponent.Destroy(OpenTK.Core.Platform.IconHandle) + fullName: OpenTK.Platform.IIconComponent.Destroy(OpenTK.Platform.IconHandle) spec.csharp: - - uid: OpenTK.Core.Platform.IIconComponent.Destroy(OpenTK.Core.Platform.IconHandle) + - uid: OpenTK.Platform.IIconComponent.Destroy(OpenTK.Platform.IconHandle) name: Destroy - href: OpenTK.Core.Platform.IIconComponent.html#OpenTK_Core_Platform_IIconComponent_Destroy_OpenTK_Core_Platform_IconHandle_ + href: OpenTK.Platform.IIconComponent.html#OpenTK_Platform_IIconComponent_Destroy_OpenTK_Platform_IconHandle_ - name: ( - - uid: OpenTK.Core.Platform.IconHandle + - uid: OpenTK.Platform.IconHandle name: IconHandle - href: OpenTK.Core.Platform.IconHandle.html + href: OpenTK.Platform.IconHandle.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IIconComponent.Destroy(OpenTK.Core.Platform.IconHandle) + - uid: OpenTK.Platform.IIconComponent.Destroy(OpenTK.Platform.IconHandle) name: Destroy - href: OpenTK.Core.Platform.IIconComponent.html#OpenTK_Core_Platform_IIconComponent_Destroy_OpenTK_Core_Platform_IconHandle_ + href: OpenTK.Platform.IIconComponent.html#OpenTK_Platform_IIconComponent_Destroy_OpenTK_Platform_IconHandle_ - name: ( - - uid: OpenTK.Core.Platform.IconHandle + - uid: OpenTK.Platform.IconHandle name: IconHandle - href: OpenTK.Core.Platform.IconHandle.html + href: OpenTK.Platform.IconHandle.html - name: ) - uid: OpenTK.Platform.Native.SDL.SDLIconComponent.GetSize* commentId: Overload:OpenTK.Platform.Native.SDL.SDLIconComponent.GetSize - href: OpenTK.Platform.Native.SDL.SDLIconComponent.html#OpenTK_Platform_Native_SDL_SDLIconComponent_GetSize_OpenTK_Core_Platform_IconHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.Native.SDL.SDLIconComponent.html#OpenTK_Platform_Native_SDL_SDLIconComponent_GetSize_OpenTK_Platform_IconHandle_System_Int32__System_Int32__ name: GetSize nameWithType: SDLIconComponent.GetSize fullName: OpenTK.Platform.Native.SDL.SDLIconComponent.GetSize -- uid: OpenTK.Core.Platform.IIconComponent.GetSize(OpenTK.Core.Platform.IconHandle,System.Int32@,System.Int32@) - commentId: M:OpenTK.Core.Platform.IIconComponent.GetSize(OpenTK.Core.Platform.IconHandle,System.Int32@,System.Int32@) - parent: OpenTK.Core.Platform.IIconComponent +- uid: OpenTK.Platform.IIconComponent.GetSize(OpenTK.Platform.IconHandle,System.Int32@,System.Int32@) + commentId: M:OpenTK.Platform.IIconComponent.GetSize(OpenTK.Platform.IconHandle,System.Int32@,System.Int32@) + parent: OpenTK.Platform.IIconComponent isExternal: true - href: OpenTK.Core.Platform.IIconComponent.html#OpenTK_Core_Platform_IIconComponent_GetSize_OpenTK_Core_Platform_IconHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.IIconComponent.html#OpenTK_Platform_IIconComponent_GetSize_OpenTK_Platform_IconHandle_System_Int32__System_Int32__ name: GetSize(IconHandle, out int, out int) nameWithType: IIconComponent.GetSize(IconHandle, out int, out int) - fullName: OpenTK.Core.Platform.IIconComponent.GetSize(OpenTK.Core.Platform.IconHandle, out int, out int) + fullName: OpenTK.Platform.IIconComponent.GetSize(OpenTK.Platform.IconHandle, out int, out int) nameWithType.vb: IIconComponent.GetSize(IconHandle, Integer, Integer) - fullName.vb: OpenTK.Core.Platform.IIconComponent.GetSize(OpenTK.Core.Platform.IconHandle, Integer, Integer) + fullName.vb: OpenTK.Platform.IIconComponent.GetSize(OpenTK.Platform.IconHandle, Integer, Integer) name.vb: GetSize(IconHandle, Integer, Integer) spec.csharp: - - uid: OpenTK.Core.Platform.IIconComponent.GetSize(OpenTK.Core.Platform.IconHandle,System.Int32@,System.Int32@) + - uid: OpenTK.Platform.IIconComponent.GetSize(OpenTK.Platform.IconHandle,System.Int32@,System.Int32@) name: GetSize - href: OpenTK.Core.Platform.IIconComponent.html#OpenTK_Core_Platform_IIconComponent_GetSize_OpenTK_Core_Platform_IconHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.IIconComponent.html#OpenTK_Platform_IIconComponent_GetSize_OpenTK_Platform_IconHandle_System_Int32__System_Int32__ - name: ( - - uid: OpenTK.Core.Platform.IconHandle + - uid: OpenTK.Platform.IconHandle name: IconHandle - href: OpenTK.Core.Platform.IconHandle.html + href: OpenTK.Platform.IconHandle.html - name: ',' - name: " " - name: out @@ -1203,13 +1150,13 @@ references: href: https://learn.microsoft.com/dotnet/api/system.int32 - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IIconComponent.GetSize(OpenTK.Core.Platform.IconHandle,System.Int32@,System.Int32@) + - uid: OpenTK.Platform.IIconComponent.GetSize(OpenTK.Platform.IconHandle,System.Int32@,System.Int32@) name: GetSize - href: OpenTK.Core.Platform.IIconComponent.html#OpenTK_Core_Platform_IIconComponent_GetSize_OpenTK_Core_Platform_IconHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.IIconComponent.html#OpenTK_Platform_IIconComponent_GetSize_OpenTK_Platform_IconHandle_System_Int32__System_Int32__ - name: ( - - uid: OpenTK.Core.Platform.IconHandle + - uid: OpenTK.Platform.IconHandle name: IconHandle - href: OpenTK.Core.Platform.IconHandle.html + href: OpenTK.Platform.IconHandle.html - name: ',' - name: " " - uid: System.Int32 @@ -1225,7 +1172,7 @@ references: - name: ) - uid: OpenTK.Platform.Native.SDL.SDLIconComponent.GetBitmapData* commentId: Overload:OpenTK.Platform.Native.SDL.SDLIconComponent.GetBitmapData - href: OpenTK.Platform.Native.SDL.SDLIconComponent.html#OpenTK_Platform_Native_SDL_SDLIconComponent_GetBitmapData_OpenTK_Core_Platform_IconHandle_System_Span_System_Byte__ + href: OpenTK.Platform.Native.SDL.SDLIconComponent.html#OpenTK_Platform_Native_SDL_SDLIconComponent_GetBitmapData_OpenTK_Platform_IconHandle_System_Span_System_Byte__ name: GetBitmapData nameWithType: SDLIconComponent.GetBitmapData fullName: OpenTK.Platform.Native.SDL.SDLIconComponent.GetBitmapData @@ -1294,7 +1241,7 @@ references: - name: ) - uid: OpenTK.Platform.Native.SDL.SDLIconComponent.GetBitmapByteSize* commentId: Overload:OpenTK.Platform.Native.SDL.SDLIconComponent.GetBitmapByteSize - href: OpenTK.Platform.Native.SDL.SDLIconComponent.html#OpenTK_Platform_Native_SDL_SDLIconComponent_GetBitmapByteSize_OpenTK_Core_Platform_IconHandle_ + href: OpenTK.Platform.Native.SDL.SDLIconComponent.html#OpenTK_Platform_Native_SDL_SDLIconComponent_GetBitmapByteSize_OpenTK_Platform_IconHandle_ name: GetBitmapByteSize nameWithType: SDLIconComponent.GetBitmapByteSize fullName: OpenTK.Platform.Native.SDL.SDLIconComponent.GetBitmapByteSize diff --git a/api/OpenTK.Platform.Native.SDL.SDLJoystickComponent.yml b/api/OpenTK.Platform.Native.SDL.SDLJoystickComponent.yml index a9825587..f3d7d317 100644 --- a/api/OpenTK.Platform.Native.SDL.SDLJoystickComponent.yml +++ b/api/OpenTK.Platform.Native.SDL.SDLJoystickComponent.yml @@ -5,12 +5,12 @@ items: id: SDLJoystickComponent parent: OpenTK.Platform.Native.SDL children: - - OpenTK.Platform.Native.SDL.SDLJoystickComponent.Close(OpenTK.Core.Platform.JoystickHandle) - - OpenTK.Platform.Native.SDL.SDLJoystickComponent.GetAxis(OpenTK.Core.Platform.JoystickHandle,OpenTK.Core.Platform.JoystickAxis) - - OpenTK.Platform.Native.SDL.SDLJoystickComponent.GetButton(OpenTK.Core.Platform.JoystickHandle,OpenTK.Core.Platform.JoystickButton) - - OpenTK.Platform.Native.SDL.SDLJoystickComponent.GetGuid(OpenTK.Core.Platform.JoystickHandle) - - OpenTK.Platform.Native.SDL.SDLJoystickComponent.GetName(OpenTK.Core.Platform.JoystickHandle) - - OpenTK.Platform.Native.SDL.SDLJoystickComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + - OpenTK.Platform.Native.SDL.SDLJoystickComponent.Close(OpenTK.Platform.JoystickHandle) + - OpenTK.Platform.Native.SDL.SDLJoystickComponent.GetAxis(OpenTK.Platform.JoystickHandle,OpenTK.Platform.JoystickAxis) + - OpenTK.Platform.Native.SDL.SDLJoystickComponent.GetButton(OpenTK.Platform.JoystickHandle,OpenTK.Platform.JoystickButton) + - OpenTK.Platform.Native.SDL.SDLJoystickComponent.GetGuid(OpenTK.Platform.JoystickHandle) + - OpenTK.Platform.Native.SDL.SDLJoystickComponent.GetName(OpenTK.Platform.JoystickHandle) + - OpenTK.Platform.Native.SDL.SDLJoystickComponent.Initialize(OpenTK.Platform.ToolkitOptions) - OpenTK.Platform.Native.SDL.SDLJoystickComponent.IsConnected(System.Int32) - OpenTK.Platform.Native.SDL.SDLJoystickComponent.LeftDeadzone - OpenTK.Platform.Native.SDL.SDLJoystickComponent.Logger @@ -18,9 +18,9 @@ items: - OpenTK.Platform.Native.SDL.SDLJoystickComponent.Open(System.Int32) - OpenTK.Platform.Native.SDL.SDLJoystickComponent.Provides - OpenTK.Platform.Native.SDL.SDLJoystickComponent.RightDeadzone - - OpenTK.Platform.Native.SDL.SDLJoystickComponent.SetVibration(OpenTK.Core.Platform.JoystickHandle,System.Single,System.Single) + - OpenTK.Platform.Native.SDL.SDLJoystickComponent.SetVibration(OpenTK.Platform.JoystickHandle,System.Single,System.Single) - OpenTK.Platform.Native.SDL.SDLJoystickComponent.TriggerThreshold - - OpenTK.Platform.Native.SDL.SDLJoystickComponent.TryGetBatteryInfo(OpenTK.Core.Platform.JoystickHandle,OpenTK.Core.Platform.GamepadBatteryInfo@) + - OpenTK.Platform.Native.SDL.SDLJoystickComponent.TryGetBatteryInfo(OpenTK.Platform.JoystickHandle,OpenTK.Platform.GamepadBatteryInfo@) langs: - csharp - vb @@ -29,15 +29,11 @@ items: fullName: OpenTK.Platform.Native.SDL.SDLJoystickComponent type: Class source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLJoystickComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SDLJoystickComponent - path: opentk/src/OpenTK.Platform.Native/SDL/SDLJoystickComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLJoystickComponent.cs startLine: 13 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL syntax: content: 'public class SDLJoystickComponent : IJoystickComponent, IPalComponent' @@ -45,8 +41,8 @@ items: inheritance: - System.Object implements: - - OpenTK.Core.Platform.IJoystickComponent - - OpenTK.Core.Platform.IPalComponent + - OpenTK.Platform.IJoystickComponent + - OpenTK.Platform.IPalComponent inheritedMembers: - System.Object.Equals(System.Object) - System.Object.Equals(System.Object,System.Object) @@ -67,15 +63,11 @@ items: fullName: OpenTK.Platform.Native.SDL.SDLJoystickComponent.Name type: Property source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLJoystickComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Name - path: opentk/src/OpenTK.Platform.Native/SDL/SDLJoystickComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLJoystickComponent.cs startLine: 16 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: Name of the abstraction layer component. example: [] @@ -87,7 +79,7 @@ items: content.vb: Public ReadOnly Property Name As String overload: OpenTK.Platform.Native.SDL.SDLJoystickComponent.Name* implements: - - OpenTK.Core.Platform.IPalComponent.Name + - OpenTK.Platform.IPalComponent.Name - uid: OpenTK.Platform.Native.SDL.SDLJoystickComponent.Provides commentId: P:OpenTK.Platform.Native.SDL.SDLJoystickComponent.Provides id: Provides @@ -100,15 +92,11 @@ items: fullName: OpenTK.Platform.Native.SDL.SDLJoystickComponent.Provides type: Property source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLJoystickComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Provides - path: opentk/src/OpenTK.Platform.Native/SDL/SDLJoystickComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLJoystickComponent.cs startLine: 19 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: Specifies which PAL components this object provides. example: [] @@ -116,11 +104,11 @@ items: content: public PalComponents Provides { get; } parameters: [] return: - type: OpenTK.Core.Platform.PalComponents + type: OpenTK.Platform.PalComponents content.vb: Public ReadOnly Property Provides As PalComponents overload: OpenTK.Platform.Native.SDL.SDLJoystickComponent.Provides* implements: - - OpenTK.Core.Platform.IPalComponent.Provides + - OpenTK.Platform.IPalComponent.Provides - uid: OpenTK.Platform.Native.SDL.SDLJoystickComponent.Logger commentId: P:OpenTK.Platform.Native.SDL.SDLJoystickComponent.Logger id: Logger @@ -133,15 +121,11 @@ items: fullName: OpenTK.Platform.Native.SDL.SDLJoystickComponent.Logger type: Property source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLJoystickComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Logger - path: opentk/src/OpenTK.Platform.Native/SDL/SDLJoystickComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLJoystickComponent.cs startLine: 22 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: Provides a logger for this component. example: [] @@ -153,28 +137,24 @@ items: content.vb: Public Property Logger As ILogger overload: OpenTK.Platform.Native.SDL.SDLJoystickComponent.Logger* implements: - - OpenTK.Core.Platform.IPalComponent.Logger -- uid: OpenTK.Platform.Native.SDL.SDLJoystickComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - commentId: M:OpenTK.Platform.Native.SDL.SDLJoystickComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - id: Initialize(OpenTK.Core.Platform.ToolkitOptions) + - OpenTK.Platform.IPalComponent.Logger +- uid: OpenTK.Platform.Native.SDL.SDLJoystickComponent.Initialize(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Native.SDL.SDLJoystickComponent.Initialize(OpenTK.Platform.ToolkitOptions) + id: Initialize(OpenTK.Platform.ToolkitOptions) parent: OpenTK.Platform.Native.SDL.SDLJoystickComponent langs: - csharp - vb name: Initialize(ToolkitOptions) nameWithType: SDLJoystickComponent.Initialize(ToolkitOptions) - fullName: OpenTK.Platform.Native.SDL.SDLJoystickComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + fullName: OpenTK.Platform.Native.SDL.SDLJoystickComponent.Initialize(OpenTK.Platform.ToolkitOptions) type: Method source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLJoystickComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Initialize - path: opentk/src/OpenTK.Platform.Native/SDL/SDLJoystickComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLJoystickComponent.cs startLine: 25 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: Initialize the component. example: [] @@ -182,12 +162,12 @@ items: content: public void Initialize(ToolkitOptions options) parameters: - id: options - type: OpenTK.Core.Platform.ToolkitOptions + type: OpenTK.Platform.ToolkitOptions description: The options to initialize the component with. content.vb: Public Sub Initialize(options As ToolkitOptions) overload: OpenTK.Platform.Native.SDL.SDLJoystickComponent.Initialize* implements: - - OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + - OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) - uid: OpenTK.Platform.Native.SDL.SDLJoystickComponent.LeftDeadzone commentId: P:OpenTK.Platform.Native.SDL.SDLJoystickComponent.LeftDeadzone id: LeftDeadzone @@ -200,15 +180,11 @@ items: fullName: OpenTK.Platform.Native.SDL.SDLJoystickComponent.LeftDeadzone type: Property source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLJoystickComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: LeftDeadzone - path: opentk/src/OpenTK.Platform.Native/SDL/SDLJoystickComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLJoystickComponent.cs startLine: 34 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: The recommended deadzone value for the left analog stick. example: [] @@ -220,7 +196,7 @@ items: content.vb: Public ReadOnly Property LeftDeadzone As Single overload: OpenTK.Platform.Native.SDL.SDLJoystickComponent.LeftDeadzone* implements: - - OpenTK.Core.Platform.IJoystickComponent.LeftDeadzone + - OpenTK.Platform.IJoystickComponent.LeftDeadzone - uid: OpenTK.Platform.Native.SDL.SDLJoystickComponent.RightDeadzone commentId: P:OpenTK.Platform.Native.SDL.SDLJoystickComponent.RightDeadzone id: RightDeadzone @@ -233,15 +209,11 @@ items: fullName: OpenTK.Platform.Native.SDL.SDLJoystickComponent.RightDeadzone type: Property source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLJoystickComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: RightDeadzone - path: opentk/src/OpenTK.Platform.Native/SDL/SDLJoystickComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLJoystickComponent.cs startLine: 36 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: The recommended deadzone value for the right analog stick. example: [] @@ -253,7 +225,7 @@ items: content.vb: Public ReadOnly Property RightDeadzone As Single overload: OpenTK.Platform.Native.SDL.SDLJoystickComponent.RightDeadzone* implements: - - OpenTK.Core.Platform.IJoystickComponent.RightDeadzone + - OpenTK.Platform.IJoystickComponent.RightDeadzone - uid: OpenTK.Platform.Native.SDL.SDLJoystickComponent.TriggerThreshold commentId: P:OpenTK.Platform.Native.SDL.SDLJoystickComponent.TriggerThreshold id: TriggerThreshold @@ -266,15 +238,11 @@ items: fullName: OpenTK.Platform.Native.SDL.SDLJoystickComponent.TriggerThreshold type: Property source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLJoystickComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TriggerThreshold - path: opentk/src/OpenTK.Platform.Native/SDL/SDLJoystickComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLJoystickComponent.cs startLine: 38 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: The recommended threshold for considering the left or right trigger pressed. example: [] @@ -286,7 +254,7 @@ items: content.vb: Public ReadOnly Property TriggerThreshold As Single overload: OpenTK.Platform.Native.SDL.SDLJoystickComponent.TriggerThreshold* implements: - - OpenTK.Core.Platform.IJoystickComponent.TriggerThreshold + - OpenTK.Platform.IJoystickComponent.TriggerThreshold - uid: OpenTK.Platform.Native.SDL.SDLJoystickComponent.IsConnected(System.Int32) commentId: M:OpenTK.Platform.Native.SDL.SDLJoystickComponent.IsConnected(System.Int32) id: IsConnected(System.Int32) @@ -299,15 +267,11 @@ items: fullName: OpenTK.Platform.Native.SDL.SDLJoystickComponent.IsConnected(int) type: Method source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLJoystickComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: IsConnected - path: opentk/src/OpenTK.Platform.Native/SDL/SDLJoystickComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLJoystickComponent.cs startLine: 41 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: Checks wether a joystick with the specific index is present on the system or not. example: [] @@ -323,7 +287,7 @@ items: content.vb: Public Function IsConnected(index As Integer) As Boolean overload: OpenTK.Platform.Native.SDL.SDLJoystickComponent.IsConnected* implements: - - OpenTK.Core.Platform.IJoystickComponent.IsConnected(System.Int32) + - OpenTK.Platform.IJoystickComponent.IsConnected(System.Int32) nameWithType.vb: SDLJoystickComponent.IsConnected(Integer) fullName.vb: OpenTK.Platform.Native.SDL.SDLJoystickComponent.IsConnected(Integer) name.vb: IsConnected(Integer) @@ -339,15 +303,11 @@ items: fullName: OpenTK.Platform.Native.SDL.SDLJoystickComponent.Open(int) type: Method source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLJoystickComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Open - path: opentk/src/OpenTK.Platform.Native/SDL/SDLJoystickComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLJoystickComponent.cs startLine: 48 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: Opens a handle to a specific joystick. example: [] @@ -358,36 +318,32 @@ items: type: System.Int32 description: The player index of the joystick to open. return: - type: OpenTK.Core.Platform.JoystickHandle + type: OpenTK.Platform.JoystickHandle description: The opened joystick handle. content.vb: Public Function Open(index As Integer) As JoystickHandle overload: OpenTK.Platform.Native.SDL.SDLJoystickComponent.Open* implements: - - OpenTK.Core.Platform.IJoystickComponent.Open(System.Int32) + - OpenTK.Platform.IJoystickComponent.Open(System.Int32) nameWithType.vb: SDLJoystickComponent.Open(Integer) fullName.vb: OpenTK.Platform.Native.SDL.SDLJoystickComponent.Open(Integer) name.vb: Open(Integer) -- uid: OpenTK.Platform.Native.SDL.SDLJoystickComponent.Close(OpenTK.Core.Platform.JoystickHandle) - commentId: M:OpenTK.Platform.Native.SDL.SDLJoystickComponent.Close(OpenTK.Core.Platform.JoystickHandle) - id: Close(OpenTK.Core.Platform.JoystickHandle) +- uid: OpenTK.Platform.Native.SDL.SDLJoystickComponent.Close(OpenTK.Platform.JoystickHandle) + commentId: M:OpenTK.Platform.Native.SDL.SDLJoystickComponent.Close(OpenTK.Platform.JoystickHandle) + id: Close(OpenTK.Platform.JoystickHandle) parent: OpenTK.Platform.Native.SDL.SDLJoystickComponent langs: - csharp - vb name: Close(JoystickHandle) nameWithType: SDLJoystickComponent.Close(JoystickHandle) - fullName: OpenTK.Platform.Native.SDL.SDLJoystickComponent.Close(OpenTK.Core.Platform.JoystickHandle) + fullName: OpenTK.Platform.Native.SDL.SDLJoystickComponent.Close(OpenTK.Platform.JoystickHandle) type: Method source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLJoystickComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Close - path: opentk/src/OpenTK.Platform.Native/SDL/SDLJoystickComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLJoystickComponent.cs startLine: 64 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: Closes a handle to a joystick. example: [] @@ -395,101 +351,89 @@ items: content: public void Close(JoystickHandle handle) parameters: - id: handle - type: OpenTK.Core.Platform.JoystickHandle + type: OpenTK.Platform.JoystickHandle description: The joystick handle. content.vb: Public Sub Close(handle As JoystickHandle) overload: OpenTK.Platform.Native.SDL.SDLJoystickComponent.Close* implements: - - OpenTK.Core.Platform.IJoystickComponent.Close(OpenTK.Core.Platform.JoystickHandle) -- uid: OpenTK.Platform.Native.SDL.SDLJoystickComponent.GetGuid(OpenTK.Core.Platform.JoystickHandle) - commentId: M:OpenTK.Platform.Native.SDL.SDLJoystickComponent.GetGuid(OpenTK.Core.Platform.JoystickHandle) - id: GetGuid(OpenTK.Core.Platform.JoystickHandle) + - OpenTK.Platform.IJoystickComponent.Close(OpenTK.Platform.JoystickHandle) +- uid: OpenTK.Platform.Native.SDL.SDLJoystickComponent.GetGuid(OpenTK.Platform.JoystickHandle) + commentId: M:OpenTK.Platform.Native.SDL.SDLJoystickComponent.GetGuid(OpenTK.Platform.JoystickHandle) + id: GetGuid(OpenTK.Platform.JoystickHandle) parent: OpenTK.Platform.Native.SDL.SDLJoystickComponent langs: - csharp - vb name: GetGuid(JoystickHandle) nameWithType: SDLJoystickComponent.GetGuid(JoystickHandle) - fullName: OpenTK.Platform.Native.SDL.SDLJoystickComponent.GetGuid(OpenTK.Core.Platform.JoystickHandle) + fullName: OpenTK.Platform.Native.SDL.SDLJoystickComponent.GetGuid(OpenTK.Platform.JoystickHandle) type: Method source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLJoystickComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetGuid - path: opentk/src/OpenTK.Platform.Native/SDL/SDLJoystickComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLJoystickComponent.cs startLine: 73 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL example: [] syntax: content: public Guid GetGuid(JoystickHandle handle) parameters: - id: handle - type: OpenTK.Core.Platform.JoystickHandle + type: OpenTK.Platform.JoystickHandle return: type: System.Guid content.vb: Public Function GetGuid(handle As JoystickHandle) As Guid overload: OpenTK.Platform.Native.SDL.SDLJoystickComponent.GetGuid* implements: - - OpenTK.Core.Platform.IJoystickComponent.GetGuid(OpenTK.Core.Platform.JoystickHandle) -- uid: OpenTK.Platform.Native.SDL.SDLJoystickComponent.GetName(OpenTK.Core.Platform.JoystickHandle) - commentId: M:OpenTK.Platform.Native.SDL.SDLJoystickComponent.GetName(OpenTK.Core.Platform.JoystickHandle) - id: GetName(OpenTK.Core.Platform.JoystickHandle) + - OpenTK.Platform.IJoystickComponent.GetGuid(OpenTK.Platform.JoystickHandle) +- uid: OpenTK.Platform.Native.SDL.SDLJoystickComponent.GetName(OpenTK.Platform.JoystickHandle) + commentId: M:OpenTK.Platform.Native.SDL.SDLJoystickComponent.GetName(OpenTK.Platform.JoystickHandle) + id: GetName(OpenTK.Platform.JoystickHandle) parent: OpenTK.Platform.Native.SDL.SDLJoystickComponent langs: - csharp - vb name: GetName(JoystickHandle) nameWithType: SDLJoystickComponent.GetName(JoystickHandle) - fullName: OpenTK.Platform.Native.SDL.SDLJoystickComponent.GetName(OpenTK.Core.Platform.JoystickHandle) + fullName: OpenTK.Platform.Native.SDL.SDLJoystickComponent.GetName(OpenTK.Platform.JoystickHandle) type: Method source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLJoystickComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetName - path: opentk/src/OpenTK.Platform.Native/SDL/SDLJoystickComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLJoystickComponent.cs startLine: 86 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL example: [] syntax: content: public string GetName(JoystickHandle handle) parameters: - id: handle - type: OpenTK.Core.Platform.JoystickHandle + type: OpenTK.Platform.JoystickHandle return: type: System.String content.vb: Public Function GetName(handle As JoystickHandle) As String overload: OpenTK.Platform.Native.SDL.SDLJoystickComponent.GetName* implements: - - OpenTK.Core.Platform.IJoystickComponent.GetName(OpenTK.Core.Platform.JoystickHandle) -- uid: OpenTK.Platform.Native.SDL.SDLJoystickComponent.GetAxis(OpenTK.Core.Platform.JoystickHandle,OpenTK.Core.Platform.JoystickAxis) - commentId: M:OpenTK.Platform.Native.SDL.SDLJoystickComponent.GetAxis(OpenTK.Core.Platform.JoystickHandle,OpenTK.Core.Platform.JoystickAxis) - id: GetAxis(OpenTK.Core.Platform.JoystickHandle,OpenTK.Core.Platform.JoystickAxis) + - OpenTK.Platform.IJoystickComponent.GetName(OpenTK.Platform.JoystickHandle) +- uid: OpenTK.Platform.Native.SDL.SDLJoystickComponent.GetAxis(OpenTK.Platform.JoystickHandle,OpenTK.Platform.JoystickAxis) + commentId: M:OpenTK.Platform.Native.SDL.SDLJoystickComponent.GetAxis(OpenTK.Platform.JoystickHandle,OpenTK.Platform.JoystickAxis) + id: GetAxis(OpenTK.Platform.JoystickHandle,OpenTK.Platform.JoystickAxis) parent: OpenTK.Platform.Native.SDL.SDLJoystickComponent langs: - csharp - vb name: GetAxis(JoystickHandle, JoystickAxis) nameWithType: SDLJoystickComponent.GetAxis(JoystickHandle, JoystickAxis) - fullName: OpenTK.Platform.Native.SDL.SDLJoystickComponent.GetAxis(OpenTK.Core.Platform.JoystickHandle, OpenTK.Core.Platform.JoystickAxis) + fullName: OpenTK.Platform.Native.SDL.SDLJoystickComponent.GetAxis(OpenTK.Platform.JoystickHandle, OpenTK.Platform.JoystickAxis) type: Method source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLJoystickComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetAxis - path: opentk/src/OpenTK.Platform.Native/SDL/SDLJoystickComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLJoystickComponent.cs startLine: 101 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: >- Gets the value of a specific joystick axis. @@ -500,10 +444,10 @@ items: content: public float GetAxis(JoystickHandle handle, JoystickAxis axis) parameters: - id: handle - type: OpenTK.Core.Platform.JoystickHandle + type: OpenTK.Platform.JoystickHandle description: A handle to a joystick. - id: axis - type: OpenTK.Core.Platform.JoystickAxis + type: OpenTK.Platform.JoystickAxis description: The joystick axis to get. return: type: System.Single @@ -511,28 +455,24 @@ items: content.vb: Public Function GetAxis(handle As JoystickHandle, axis As JoystickAxis) As Single overload: OpenTK.Platform.Native.SDL.SDLJoystickComponent.GetAxis* implements: - - OpenTK.Core.Platform.IJoystickComponent.GetAxis(OpenTK.Core.Platform.JoystickHandle,OpenTK.Core.Platform.JoystickAxis) -- uid: OpenTK.Platform.Native.SDL.SDLJoystickComponent.GetButton(OpenTK.Core.Platform.JoystickHandle,OpenTK.Core.Platform.JoystickButton) - commentId: M:OpenTK.Platform.Native.SDL.SDLJoystickComponent.GetButton(OpenTK.Core.Platform.JoystickHandle,OpenTK.Core.Platform.JoystickButton) - id: GetButton(OpenTK.Core.Platform.JoystickHandle,OpenTK.Core.Platform.JoystickButton) + - OpenTK.Platform.IJoystickComponent.GetAxis(OpenTK.Platform.JoystickHandle,OpenTK.Platform.JoystickAxis) +- uid: OpenTK.Platform.Native.SDL.SDLJoystickComponent.GetButton(OpenTK.Platform.JoystickHandle,OpenTK.Platform.JoystickButton) + commentId: M:OpenTK.Platform.Native.SDL.SDLJoystickComponent.GetButton(OpenTK.Platform.JoystickHandle,OpenTK.Platform.JoystickButton) + id: GetButton(OpenTK.Platform.JoystickHandle,OpenTK.Platform.JoystickButton) parent: OpenTK.Platform.Native.SDL.SDLJoystickComponent langs: - csharp - vb name: GetButton(JoystickHandle, JoystickButton) nameWithType: SDLJoystickComponent.GetButton(JoystickHandle, JoystickButton) - fullName: OpenTK.Platform.Native.SDL.SDLJoystickComponent.GetButton(OpenTK.Core.Platform.JoystickHandle, OpenTK.Core.Platform.JoystickButton) + fullName: OpenTK.Platform.Native.SDL.SDLJoystickComponent.GetButton(OpenTK.Platform.JoystickHandle, OpenTK.Platform.JoystickButton) type: Method source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLJoystickComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetButton - path: opentk/src/OpenTK.Platform.Native/SDL/SDLJoystickComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLJoystickComponent.cs startLine: 137 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: Get the pressed state of a specific joystick button. example: [] @@ -540,10 +480,10 @@ items: content: public bool GetButton(JoystickHandle handle, JoystickButton button) parameters: - id: handle - type: OpenTK.Core.Platform.JoystickHandle + type: OpenTK.Platform.JoystickHandle description: A handle to a joystick. - id: button - type: OpenTK.Core.Platform.JoystickButton + type: OpenTK.Platform.JoystickButton description: The joystick button to get. return: type: System.Boolean @@ -551,35 +491,31 @@ items: content.vb: Public Function GetButton(handle As JoystickHandle, button As JoystickButton) As Boolean overload: OpenTK.Platform.Native.SDL.SDLJoystickComponent.GetButton* implements: - - OpenTK.Core.Platform.IJoystickComponent.GetButton(OpenTK.Core.Platform.JoystickHandle,OpenTK.Core.Platform.JoystickButton) -- uid: OpenTK.Platform.Native.SDL.SDLJoystickComponent.SetVibration(OpenTK.Core.Platform.JoystickHandle,System.Single,System.Single) - commentId: M:OpenTK.Platform.Native.SDL.SDLJoystickComponent.SetVibration(OpenTK.Core.Platform.JoystickHandle,System.Single,System.Single) - id: SetVibration(OpenTK.Core.Platform.JoystickHandle,System.Single,System.Single) + - OpenTK.Platform.IJoystickComponent.GetButton(OpenTK.Platform.JoystickHandle,OpenTK.Platform.JoystickButton) +- uid: OpenTK.Platform.Native.SDL.SDLJoystickComponent.SetVibration(OpenTK.Platform.JoystickHandle,System.Single,System.Single) + commentId: M:OpenTK.Platform.Native.SDL.SDLJoystickComponent.SetVibration(OpenTK.Platform.JoystickHandle,System.Single,System.Single) + id: SetVibration(OpenTK.Platform.JoystickHandle,System.Single,System.Single) parent: OpenTK.Platform.Native.SDL.SDLJoystickComponent langs: - csharp - vb name: SetVibration(JoystickHandle, float, float) nameWithType: SDLJoystickComponent.SetVibration(JoystickHandle, float, float) - fullName: OpenTK.Platform.Native.SDL.SDLJoystickComponent.SetVibration(OpenTK.Core.Platform.JoystickHandle, float, float) + fullName: OpenTK.Platform.Native.SDL.SDLJoystickComponent.SetVibration(OpenTK.Platform.JoystickHandle, float, float) type: Method source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLJoystickComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetVibration - path: opentk/src/OpenTK.Platform.Native/SDL/SDLJoystickComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLJoystickComponent.cs startLine: 196 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL example: [] syntax: content: public bool SetVibration(JoystickHandle handle, float lowFreqIntensity, float highFreqIntensity) parameters: - id: handle - type: OpenTK.Core.Platform.JoystickHandle + type: OpenTK.Platform.JoystickHandle - id: lowFreqIntensity type: System.Single - id: highFreqIntensity @@ -589,48 +525,44 @@ items: content.vb: Public Function SetVibration(handle As JoystickHandle, lowFreqIntensity As Single, highFreqIntensity As Single) As Boolean overload: OpenTK.Platform.Native.SDL.SDLJoystickComponent.SetVibration* implements: - - OpenTK.Core.Platform.IJoystickComponent.SetVibration(OpenTK.Core.Platform.JoystickHandle,System.Single,System.Single) + - OpenTK.Platform.IJoystickComponent.SetVibration(OpenTK.Platform.JoystickHandle,System.Single,System.Single) nameWithType.vb: SDLJoystickComponent.SetVibration(JoystickHandle, Single, Single) - fullName.vb: OpenTK.Platform.Native.SDL.SDLJoystickComponent.SetVibration(OpenTK.Core.Platform.JoystickHandle, Single, Single) + fullName.vb: OpenTK.Platform.Native.SDL.SDLJoystickComponent.SetVibration(OpenTK.Platform.JoystickHandle, Single, Single) name.vb: SetVibration(JoystickHandle, Single, Single) -- uid: OpenTK.Platform.Native.SDL.SDLJoystickComponent.TryGetBatteryInfo(OpenTK.Core.Platform.JoystickHandle,OpenTK.Core.Platform.GamepadBatteryInfo@) - commentId: M:OpenTK.Platform.Native.SDL.SDLJoystickComponent.TryGetBatteryInfo(OpenTK.Core.Platform.JoystickHandle,OpenTK.Core.Platform.GamepadBatteryInfo@) - id: TryGetBatteryInfo(OpenTK.Core.Platform.JoystickHandle,OpenTK.Core.Platform.GamepadBatteryInfo@) +- uid: OpenTK.Platform.Native.SDL.SDLJoystickComponent.TryGetBatteryInfo(OpenTK.Platform.JoystickHandle,OpenTK.Platform.GamepadBatteryInfo@) + commentId: M:OpenTK.Platform.Native.SDL.SDLJoystickComponent.TryGetBatteryInfo(OpenTK.Platform.JoystickHandle,OpenTK.Platform.GamepadBatteryInfo@) + id: TryGetBatteryInfo(OpenTK.Platform.JoystickHandle,OpenTK.Platform.GamepadBatteryInfo@) parent: OpenTK.Platform.Native.SDL.SDLJoystickComponent langs: - csharp - vb name: TryGetBatteryInfo(JoystickHandle, out GamepadBatteryInfo) nameWithType: SDLJoystickComponent.TryGetBatteryInfo(JoystickHandle, out GamepadBatteryInfo) - fullName: OpenTK.Platform.Native.SDL.SDLJoystickComponent.TryGetBatteryInfo(OpenTK.Core.Platform.JoystickHandle, out OpenTK.Core.Platform.GamepadBatteryInfo) + fullName: OpenTK.Platform.Native.SDL.SDLJoystickComponent.TryGetBatteryInfo(OpenTK.Platform.JoystickHandle, out OpenTK.Platform.GamepadBatteryInfo) type: Method source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLJoystickComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TryGetBatteryInfo - path: opentk/src/OpenTK.Platform.Native/SDL/SDLJoystickComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLJoystickComponent.cs startLine: 212 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL example: [] syntax: content: public bool TryGetBatteryInfo(JoystickHandle handle, out GamepadBatteryInfo batteryInfo) parameters: - id: handle - type: OpenTK.Core.Platform.JoystickHandle + type: OpenTK.Platform.JoystickHandle - id: batteryInfo - type: OpenTK.Core.Platform.GamepadBatteryInfo + type: OpenTK.Platform.GamepadBatteryInfo return: type: System.Boolean content.vb: Public Function TryGetBatteryInfo(handle As JoystickHandle, batteryInfo As GamepadBatteryInfo) As Boolean overload: OpenTK.Platform.Native.SDL.SDLJoystickComponent.TryGetBatteryInfo* implements: - - OpenTK.Core.Platform.IJoystickComponent.TryGetBatteryInfo(OpenTK.Core.Platform.JoystickHandle,OpenTK.Core.Platform.GamepadBatteryInfo@) + - OpenTK.Platform.IJoystickComponent.TryGetBatteryInfo(OpenTK.Platform.JoystickHandle,OpenTK.Platform.GamepadBatteryInfo@) nameWithType.vb: SDLJoystickComponent.TryGetBatteryInfo(JoystickHandle, GamepadBatteryInfo) - fullName.vb: OpenTK.Platform.Native.SDL.SDLJoystickComponent.TryGetBatteryInfo(OpenTK.Core.Platform.JoystickHandle, OpenTK.Core.Platform.GamepadBatteryInfo) + fullName.vb: OpenTK.Platform.Native.SDL.SDLJoystickComponent.TryGetBatteryInfo(OpenTK.Platform.JoystickHandle, OpenTK.Platform.GamepadBatteryInfo) name.vb: TryGetBatteryInfo(JoystickHandle, GamepadBatteryInfo) references: - uid: OpenTK.Platform.Native.SDL @@ -682,20 +614,20 @@ references: nameWithType.vb: Object fullName.vb: Object name.vb: Object -- uid: OpenTK.Core.Platform.IJoystickComponent - commentId: T:OpenTK.Core.Platform.IJoystickComponent - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.IJoystickComponent.html +- uid: OpenTK.Platform.IJoystickComponent + commentId: T:OpenTK.Platform.IJoystickComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IJoystickComponent.html name: IJoystickComponent nameWithType: IJoystickComponent - fullName: OpenTK.Core.Platform.IJoystickComponent -- uid: OpenTK.Core.Platform.IPalComponent - commentId: T:OpenTK.Core.Platform.IPalComponent - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.IPalComponent.html + fullName: OpenTK.Platform.IJoystickComponent +- uid: OpenTK.Platform.IPalComponent + commentId: T:OpenTK.Platform.IPalComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IPalComponent.html name: IPalComponent nameWithType: IPalComponent - fullName: OpenTK.Core.Platform.IPalComponent + fullName: OpenTK.Platform.IPalComponent - uid: System.Object.Equals(System.Object) commentId: M:System.Object.Equals(System.Object) parent: System.Object @@ -922,49 +854,41 @@ references: name: System nameWithType: System fullName: System -- uid: OpenTK.Core.Platform - commentId: N:OpenTK.Core.Platform +- uid: OpenTK.Platform + commentId: N:OpenTK.Platform href: OpenTK.html - name: OpenTK.Core.Platform - nameWithType: OpenTK.Core.Platform - fullName: OpenTK.Core.Platform + name: OpenTK.Platform + nameWithType: OpenTK.Platform + fullName: OpenTK.Platform spec.csharp: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html spec.vb: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html - uid: OpenTK.Platform.Native.SDL.SDLJoystickComponent.Name* commentId: Overload:OpenTK.Platform.Native.SDL.SDLJoystickComponent.Name href: OpenTK.Platform.Native.SDL.SDLJoystickComponent.html#OpenTK_Platform_Native_SDL_SDLJoystickComponent_Name name: Name nameWithType: SDLJoystickComponent.Name fullName: OpenTK.Platform.Native.SDL.SDLJoystickComponent.Name -- uid: OpenTK.Core.Platform.IPalComponent.Name - commentId: P:OpenTK.Core.Platform.IPalComponent.Name - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Name +- uid: OpenTK.Platform.IPalComponent.Name + commentId: P:OpenTK.Platform.IPalComponent.Name + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Name name: Name nameWithType: IPalComponent.Name - fullName: OpenTK.Core.Platform.IPalComponent.Name + fullName: OpenTK.Platform.IPalComponent.Name - uid: System.String commentId: T:System.String parent: System @@ -982,33 +906,33 @@ references: name: Provides nameWithType: SDLJoystickComponent.Provides fullName: OpenTK.Platform.Native.SDL.SDLJoystickComponent.Provides -- uid: OpenTK.Core.Platform.IPalComponent.Provides - commentId: P:OpenTK.Core.Platform.IPalComponent.Provides - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Provides +- uid: OpenTK.Platform.IPalComponent.Provides + commentId: P:OpenTK.Platform.IPalComponent.Provides + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Provides name: Provides nameWithType: IPalComponent.Provides - fullName: OpenTK.Core.Platform.IPalComponent.Provides -- uid: OpenTK.Core.Platform.PalComponents - commentId: T:OpenTK.Core.Platform.PalComponents - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.PalComponents.html + fullName: OpenTK.Platform.IPalComponent.Provides +- uid: OpenTK.Platform.PalComponents + commentId: T:OpenTK.Platform.PalComponents + parent: OpenTK.Platform + href: OpenTK.Platform.PalComponents.html name: PalComponents nameWithType: PalComponents - fullName: OpenTK.Core.Platform.PalComponents + fullName: OpenTK.Platform.PalComponents - uid: OpenTK.Platform.Native.SDL.SDLJoystickComponent.Logger* commentId: Overload:OpenTK.Platform.Native.SDL.SDLJoystickComponent.Logger href: OpenTK.Platform.Native.SDL.SDLJoystickComponent.html#OpenTK_Platform_Native_SDL_SDLJoystickComponent_Logger name: Logger nameWithType: SDLJoystickComponent.Logger fullName: OpenTK.Platform.Native.SDL.SDLJoystickComponent.Logger -- uid: OpenTK.Core.Platform.IPalComponent.Logger - commentId: P:OpenTK.Core.Platform.IPalComponent.Logger - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Logger +- uid: OpenTK.Platform.IPalComponent.Logger + commentId: P:OpenTK.Platform.IPalComponent.Logger + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Logger name: Logger nameWithType: IPalComponent.Logger - fullName: OpenTK.Core.Platform.IPalComponent.Logger + fullName: OpenTK.Platform.IPalComponent.Logger - uid: OpenTK.Core.Utility.ILogger commentId: T:OpenTK.Core.Utility.ILogger parent: OpenTK.Core.Utility @@ -1048,55 +972,55 @@ references: href: OpenTK.Core.Utility.html - uid: OpenTK.Platform.Native.SDL.SDLJoystickComponent.Initialize* commentId: Overload:OpenTK.Platform.Native.SDL.SDLJoystickComponent.Initialize - href: OpenTK.Platform.Native.SDL.SDLJoystickComponent.html#OpenTK_Platform_Native_SDL_SDLJoystickComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + href: OpenTK.Platform.Native.SDL.SDLJoystickComponent.html#OpenTK_Platform_Native_SDL_SDLJoystickComponent_Initialize_OpenTK_Platform_ToolkitOptions_ name: Initialize nameWithType: SDLJoystickComponent.Initialize fullName: OpenTK.Platform.Native.SDL.SDLJoystickComponent.Initialize -- uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - commentId: M:OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ +- uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ name: Initialize(ToolkitOptions) nameWithType: IPalComponent.Initialize(ToolkitOptions) - fullName: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + fullName: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) spec.csharp: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + - uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.ToolkitOptions + - uid: OpenTK.Platform.ToolkitOptions name: ToolkitOptions - href: OpenTK.Core.Platform.ToolkitOptions.html + href: OpenTK.Platform.ToolkitOptions.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + - uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.ToolkitOptions + - uid: OpenTK.Platform.ToolkitOptions name: ToolkitOptions - href: OpenTK.Core.Platform.ToolkitOptions.html + href: OpenTK.Platform.ToolkitOptions.html - name: ) -- uid: OpenTK.Core.Platform.ToolkitOptions - commentId: T:OpenTK.Core.Platform.ToolkitOptions - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.ToolkitOptions.html +- uid: OpenTK.Platform.ToolkitOptions + commentId: T:OpenTK.Platform.ToolkitOptions + parent: OpenTK.Platform + href: OpenTK.Platform.ToolkitOptions.html name: ToolkitOptions nameWithType: ToolkitOptions - fullName: OpenTK.Core.Platform.ToolkitOptions + fullName: OpenTK.Platform.ToolkitOptions - uid: OpenTK.Platform.Native.SDL.SDLJoystickComponent.LeftDeadzone* commentId: Overload:OpenTK.Platform.Native.SDL.SDLJoystickComponent.LeftDeadzone href: OpenTK.Platform.Native.SDL.SDLJoystickComponent.html#OpenTK_Platform_Native_SDL_SDLJoystickComponent_LeftDeadzone name: LeftDeadzone nameWithType: SDLJoystickComponent.LeftDeadzone fullName: OpenTK.Platform.Native.SDL.SDLJoystickComponent.LeftDeadzone -- uid: OpenTK.Core.Platform.IJoystickComponent.LeftDeadzone - commentId: P:OpenTK.Core.Platform.IJoystickComponent.LeftDeadzone - parent: OpenTK.Core.Platform.IJoystickComponent - href: OpenTK.Core.Platform.IJoystickComponent.html#OpenTK_Core_Platform_IJoystickComponent_LeftDeadzone +- uid: OpenTK.Platform.IJoystickComponent.LeftDeadzone + commentId: P:OpenTK.Platform.IJoystickComponent.LeftDeadzone + parent: OpenTK.Platform.IJoystickComponent + href: OpenTK.Platform.IJoystickComponent.html#OpenTK_Platform_IJoystickComponent_LeftDeadzone name: LeftDeadzone nameWithType: IJoystickComponent.LeftDeadzone - fullName: OpenTK.Core.Platform.IJoystickComponent.LeftDeadzone + fullName: OpenTK.Platform.IJoystickComponent.LeftDeadzone - uid: System.Single commentId: T:System.Single parent: System @@ -1114,47 +1038,47 @@ references: name: RightDeadzone nameWithType: SDLJoystickComponent.RightDeadzone fullName: OpenTK.Platform.Native.SDL.SDLJoystickComponent.RightDeadzone -- uid: OpenTK.Core.Platform.IJoystickComponent.RightDeadzone - commentId: P:OpenTK.Core.Platform.IJoystickComponent.RightDeadzone - parent: OpenTK.Core.Platform.IJoystickComponent - href: OpenTK.Core.Platform.IJoystickComponent.html#OpenTK_Core_Platform_IJoystickComponent_RightDeadzone +- uid: OpenTK.Platform.IJoystickComponent.RightDeadzone + commentId: P:OpenTK.Platform.IJoystickComponent.RightDeadzone + parent: OpenTK.Platform.IJoystickComponent + href: OpenTK.Platform.IJoystickComponent.html#OpenTK_Platform_IJoystickComponent_RightDeadzone name: RightDeadzone nameWithType: IJoystickComponent.RightDeadzone - fullName: OpenTK.Core.Platform.IJoystickComponent.RightDeadzone + fullName: OpenTK.Platform.IJoystickComponent.RightDeadzone - uid: OpenTK.Platform.Native.SDL.SDLJoystickComponent.TriggerThreshold* commentId: Overload:OpenTK.Platform.Native.SDL.SDLJoystickComponent.TriggerThreshold href: OpenTK.Platform.Native.SDL.SDLJoystickComponent.html#OpenTK_Platform_Native_SDL_SDLJoystickComponent_TriggerThreshold name: TriggerThreshold nameWithType: SDLJoystickComponent.TriggerThreshold fullName: OpenTK.Platform.Native.SDL.SDLJoystickComponent.TriggerThreshold -- uid: OpenTK.Core.Platform.IJoystickComponent.TriggerThreshold - commentId: P:OpenTK.Core.Platform.IJoystickComponent.TriggerThreshold - parent: OpenTK.Core.Platform.IJoystickComponent - href: OpenTK.Core.Platform.IJoystickComponent.html#OpenTK_Core_Platform_IJoystickComponent_TriggerThreshold +- uid: OpenTK.Platform.IJoystickComponent.TriggerThreshold + commentId: P:OpenTK.Platform.IJoystickComponent.TriggerThreshold + parent: OpenTK.Platform.IJoystickComponent + href: OpenTK.Platform.IJoystickComponent.html#OpenTK_Platform_IJoystickComponent_TriggerThreshold name: TriggerThreshold nameWithType: IJoystickComponent.TriggerThreshold - fullName: OpenTK.Core.Platform.IJoystickComponent.TriggerThreshold + fullName: OpenTK.Platform.IJoystickComponent.TriggerThreshold - uid: OpenTK.Platform.Native.SDL.SDLJoystickComponent.IsConnected* commentId: Overload:OpenTK.Platform.Native.SDL.SDLJoystickComponent.IsConnected href: OpenTK.Platform.Native.SDL.SDLJoystickComponent.html#OpenTK_Platform_Native_SDL_SDLJoystickComponent_IsConnected_System_Int32_ name: IsConnected nameWithType: SDLJoystickComponent.IsConnected fullName: OpenTK.Platform.Native.SDL.SDLJoystickComponent.IsConnected -- uid: OpenTK.Core.Platform.IJoystickComponent.IsConnected(System.Int32) - commentId: M:OpenTK.Core.Platform.IJoystickComponent.IsConnected(System.Int32) - parent: OpenTK.Core.Platform.IJoystickComponent +- uid: OpenTK.Platform.IJoystickComponent.IsConnected(System.Int32) + commentId: M:OpenTK.Platform.IJoystickComponent.IsConnected(System.Int32) + parent: OpenTK.Platform.IJoystickComponent isExternal: true - href: OpenTK.Core.Platform.IJoystickComponent.html#OpenTK_Core_Platform_IJoystickComponent_IsConnected_System_Int32_ + href: OpenTK.Platform.IJoystickComponent.html#OpenTK_Platform_IJoystickComponent_IsConnected_System_Int32_ name: IsConnected(int) nameWithType: IJoystickComponent.IsConnected(int) - fullName: OpenTK.Core.Platform.IJoystickComponent.IsConnected(int) + fullName: OpenTK.Platform.IJoystickComponent.IsConnected(int) nameWithType.vb: IJoystickComponent.IsConnected(Integer) - fullName.vb: OpenTK.Core.Platform.IJoystickComponent.IsConnected(Integer) + fullName.vb: OpenTK.Platform.IJoystickComponent.IsConnected(Integer) name.vb: IsConnected(Integer) spec.csharp: - - uid: OpenTK.Core.Platform.IJoystickComponent.IsConnected(System.Int32) + - uid: OpenTK.Platform.IJoystickComponent.IsConnected(System.Int32) name: IsConnected - href: OpenTK.Core.Platform.IJoystickComponent.html#OpenTK_Core_Platform_IJoystickComponent_IsConnected_System_Int32_ + href: OpenTK.Platform.IJoystickComponent.html#OpenTK_Platform_IJoystickComponent_IsConnected_System_Int32_ - name: ( - uid: System.Int32 name: int @@ -1162,9 +1086,9 @@ references: href: https://learn.microsoft.com/dotnet/api/system.int32 - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IJoystickComponent.IsConnected(System.Int32) + - uid: OpenTK.Platform.IJoystickComponent.IsConnected(System.Int32) name: IsConnected - href: OpenTK.Core.Platform.IJoystickComponent.html#OpenTK_Core_Platform_IJoystickComponent_IsConnected_System_Int32_ + href: OpenTK.Platform.IJoystickComponent.html#OpenTK_Platform_IJoystickComponent_IsConnected_System_Int32_ - name: ( - uid: System.Int32 name: Integer @@ -1199,21 +1123,21 @@ references: name: Open nameWithType: SDLJoystickComponent.Open fullName: OpenTK.Platform.Native.SDL.SDLJoystickComponent.Open -- uid: OpenTK.Core.Platform.IJoystickComponent.Open(System.Int32) - commentId: M:OpenTK.Core.Platform.IJoystickComponent.Open(System.Int32) - parent: OpenTK.Core.Platform.IJoystickComponent +- uid: OpenTK.Platform.IJoystickComponent.Open(System.Int32) + commentId: M:OpenTK.Platform.IJoystickComponent.Open(System.Int32) + parent: OpenTK.Platform.IJoystickComponent isExternal: true - href: OpenTK.Core.Platform.IJoystickComponent.html#OpenTK_Core_Platform_IJoystickComponent_Open_System_Int32_ + href: OpenTK.Platform.IJoystickComponent.html#OpenTK_Platform_IJoystickComponent_Open_System_Int32_ name: Open(int) nameWithType: IJoystickComponent.Open(int) - fullName: OpenTK.Core.Platform.IJoystickComponent.Open(int) + fullName: OpenTK.Platform.IJoystickComponent.Open(int) nameWithType.vb: IJoystickComponent.Open(Integer) - fullName.vb: OpenTK.Core.Platform.IJoystickComponent.Open(Integer) + fullName.vb: OpenTK.Platform.IJoystickComponent.Open(Integer) name.vb: Open(Integer) spec.csharp: - - uid: OpenTK.Core.Platform.IJoystickComponent.Open(System.Int32) + - uid: OpenTK.Platform.IJoystickComponent.Open(System.Int32) name: Open - href: OpenTK.Core.Platform.IJoystickComponent.html#OpenTK_Core_Platform_IJoystickComponent_Open_System_Int32_ + href: OpenTK.Platform.IJoystickComponent.html#OpenTK_Platform_IJoystickComponent_Open_System_Int32_ - name: ( - uid: System.Int32 name: int @@ -1221,83 +1145,83 @@ references: href: https://learn.microsoft.com/dotnet/api/system.int32 - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IJoystickComponent.Open(System.Int32) + - uid: OpenTK.Platform.IJoystickComponent.Open(System.Int32) name: Open - href: OpenTK.Core.Platform.IJoystickComponent.html#OpenTK_Core_Platform_IJoystickComponent_Open_System_Int32_ + href: OpenTK.Platform.IJoystickComponent.html#OpenTK_Platform_IJoystickComponent_Open_System_Int32_ - name: ( - uid: System.Int32 name: Integer isExternal: true href: https://learn.microsoft.com/dotnet/api/system.int32 - name: ) -- uid: OpenTK.Core.Platform.JoystickHandle - commentId: T:OpenTK.Core.Platform.JoystickHandle - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.JoystickHandle.html +- uid: OpenTK.Platform.JoystickHandle + commentId: T:OpenTK.Platform.JoystickHandle + parent: OpenTK.Platform + href: OpenTK.Platform.JoystickHandle.html name: JoystickHandle nameWithType: JoystickHandle - fullName: OpenTK.Core.Platform.JoystickHandle + fullName: OpenTK.Platform.JoystickHandle - uid: OpenTK.Platform.Native.SDL.SDLJoystickComponent.Close* commentId: Overload:OpenTK.Platform.Native.SDL.SDLJoystickComponent.Close - href: OpenTK.Platform.Native.SDL.SDLJoystickComponent.html#OpenTK_Platform_Native_SDL_SDLJoystickComponent_Close_OpenTK_Core_Platform_JoystickHandle_ + href: OpenTK.Platform.Native.SDL.SDLJoystickComponent.html#OpenTK_Platform_Native_SDL_SDLJoystickComponent_Close_OpenTK_Platform_JoystickHandle_ name: Close nameWithType: SDLJoystickComponent.Close fullName: OpenTK.Platform.Native.SDL.SDLJoystickComponent.Close -- uid: OpenTK.Core.Platform.IJoystickComponent.Close(OpenTK.Core.Platform.JoystickHandle) - commentId: M:OpenTK.Core.Platform.IJoystickComponent.Close(OpenTK.Core.Platform.JoystickHandle) - parent: OpenTK.Core.Platform.IJoystickComponent - href: OpenTK.Core.Platform.IJoystickComponent.html#OpenTK_Core_Platform_IJoystickComponent_Close_OpenTK_Core_Platform_JoystickHandle_ +- uid: OpenTK.Platform.IJoystickComponent.Close(OpenTK.Platform.JoystickHandle) + commentId: M:OpenTK.Platform.IJoystickComponent.Close(OpenTK.Platform.JoystickHandle) + parent: OpenTK.Platform.IJoystickComponent + href: OpenTK.Platform.IJoystickComponent.html#OpenTK_Platform_IJoystickComponent_Close_OpenTK_Platform_JoystickHandle_ name: Close(JoystickHandle) nameWithType: IJoystickComponent.Close(JoystickHandle) - fullName: OpenTK.Core.Platform.IJoystickComponent.Close(OpenTK.Core.Platform.JoystickHandle) + fullName: OpenTK.Platform.IJoystickComponent.Close(OpenTK.Platform.JoystickHandle) spec.csharp: - - uid: OpenTK.Core.Platform.IJoystickComponent.Close(OpenTK.Core.Platform.JoystickHandle) + - uid: OpenTK.Platform.IJoystickComponent.Close(OpenTK.Platform.JoystickHandle) name: Close - href: OpenTK.Core.Platform.IJoystickComponent.html#OpenTK_Core_Platform_IJoystickComponent_Close_OpenTK_Core_Platform_JoystickHandle_ + href: OpenTK.Platform.IJoystickComponent.html#OpenTK_Platform_IJoystickComponent_Close_OpenTK_Platform_JoystickHandle_ - name: ( - - uid: OpenTK.Core.Platform.JoystickHandle + - uid: OpenTK.Platform.JoystickHandle name: JoystickHandle - href: OpenTK.Core.Platform.JoystickHandle.html + href: OpenTK.Platform.JoystickHandle.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IJoystickComponent.Close(OpenTK.Core.Platform.JoystickHandle) + - uid: OpenTK.Platform.IJoystickComponent.Close(OpenTK.Platform.JoystickHandle) name: Close - href: OpenTK.Core.Platform.IJoystickComponent.html#OpenTK_Core_Platform_IJoystickComponent_Close_OpenTK_Core_Platform_JoystickHandle_ + href: OpenTK.Platform.IJoystickComponent.html#OpenTK_Platform_IJoystickComponent_Close_OpenTK_Platform_JoystickHandle_ - name: ( - - uid: OpenTK.Core.Platform.JoystickHandle + - uid: OpenTK.Platform.JoystickHandle name: JoystickHandle - href: OpenTK.Core.Platform.JoystickHandle.html + href: OpenTK.Platform.JoystickHandle.html - name: ) - uid: OpenTK.Platform.Native.SDL.SDLJoystickComponent.GetGuid* commentId: Overload:OpenTK.Platform.Native.SDL.SDLJoystickComponent.GetGuid - href: OpenTK.Platform.Native.SDL.SDLJoystickComponent.html#OpenTK_Platform_Native_SDL_SDLJoystickComponent_GetGuid_OpenTK_Core_Platform_JoystickHandle_ + href: OpenTK.Platform.Native.SDL.SDLJoystickComponent.html#OpenTK_Platform_Native_SDL_SDLJoystickComponent_GetGuid_OpenTK_Platform_JoystickHandle_ name: GetGuid nameWithType: SDLJoystickComponent.GetGuid fullName: OpenTK.Platform.Native.SDL.SDLJoystickComponent.GetGuid -- uid: OpenTK.Core.Platform.IJoystickComponent.GetGuid(OpenTK.Core.Platform.JoystickHandle) - commentId: M:OpenTK.Core.Platform.IJoystickComponent.GetGuid(OpenTK.Core.Platform.JoystickHandle) - parent: OpenTK.Core.Platform.IJoystickComponent - href: OpenTK.Core.Platform.IJoystickComponent.html#OpenTK_Core_Platform_IJoystickComponent_GetGuid_OpenTK_Core_Platform_JoystickHandle_ +- uid: OpenTK.Platform.IJoystickComponent.GetGuid(OpenTK.Platform.JoystickHandle) + commentId: M:OpenTK.Platform.IJoystickComponent.GetGuid(OpenTK.Platform.JoystickHandle) + parent: OpenTK.Platform.IJoystickComponent + href: OpenTK.Platform.IJoystickComponent.html#OpenTK_Platform_IJoystickComponent_GetGuid_OpenTK_Platform_JoystickHandle_ name: GetGuid(JoystickHandle) nameWithType: IJoystickComponent.GetGuid(JoystickHandle) - fullName: OpenTK.Core.Platform.IJoystickComponent.GetGuid(OpenTK.Core.Platform.JoystickHandle) + fullName: OpenTK.Platform.IJoystickComponent.GetGuid(OpenTK.Platform.JoystickHandle) spec.csharp: - - uid: OpenTK.Core.Platform.IJoystickComponent.GetGuid(OpenTK.Core.Platform.JoystickHandle) + - uid: OpenTK.Platform.IJoystickComponent.GetGuid(OpenTK.Platform.JoystickHandle) name: GetGuid - href: OpenTK.Core.Platform.IJoystickComponent.html#OpenTK_Core_Platform_IJoystickComponent_GetGuid_OpenTK_Core_Platform_JoystickHandle_ + href: OpenTK.Platform.IJoystickComponent.html#OpenTK_Platform_IJoystickComponent_GetGuid_OpenTK_Platform_JoystickHandle_ - name: ( - - uid: OpenTK.Core.Platform.JoystickHandle + - uid: OpenTK.Platform.JoystickHandle name: JoystickHandle - href: OpenTK.Core.Platform.JoystickHandle.html + href: OpenTK.Platform.JoystickHandle.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IJoystickComponent.GetGuid(OpenTK.Core.Platform.JoystickHandle) + - uid: OpenTK.Platform.IJoystickComponent.GetGuid(OpenTK.Platform.JoystickHandle) name: GetGuid - href: OpenTK.Core.Platform.IJoystickComponent.html#OpenTK_Core_Platform_IJoystickComponent_GetGuid_OpenTK_Core_Platform_JoystickHandle_ + href: OpenTK.Platform.IJoystickComponent.html#OpenTK_Platform_IJoystickComponent_GetGuid_OpenTK_Platform_JoystickHandle_ - name: ( - - uid: OpenTK.Core.Platform.JoystickHandle + - uid: OpenTK.Platform.JoystickHandle name: JoystickHandle - href: OpenTK.Core.Platform.JoystickHandle.html + href: OpenTK.Platform.JoystickHandle.html - name: ) - uid: System.Guid commentId: T:System.Guid @@ -1309,156 +1233,156 @@ references: fullName: System.Guid - uid: OpenTK.Platform.Native.SDL.SDLJoystickComponent.GetName* commentId: Overload:OpenTK.Platform.Native.SDL.SDLJoystickComponent.GetName - href: OpenTK.Platform.Native.SDL.SDLJoystickComponent.html#OpenTK_Platform_Native_SDL_SDLJoystickComponent_GetName_OpenTK_Core_Platform_JoystickHandle_ + href: OpenTK.Platform.Native.SDL.SDLJoystickComponent.html#OpenTK_Platform_Native_SDL_SDLJoystickComponent_GetName_OpenTK_Platform_JoystickHandle_ name: GetName nameWithType: SDLJoystickComponent.GetName fullName: OpenTK.Platform.Native.SDL.SDLJoystickComponent.GetName -- uid: OpenTK.Core.Platform.IJoystickComponent.GetName(OpenTK.Core.Platform.JoystickHandle) - commentId: M:OpenTK.Core.Platform.IJoystickComponent.GetName(OpenTK.Core.Platform.JoystickHandle) - parent: OpenTK.Core.Platform.IJoystickComponent - href: OpenTK.Core.Platform.IJoystickComponent.html#OpenTK_Core_Platform_IJoystickComponent_GetName_OpenTK_Core_Platform_JoystickHandle_ +- uid: OpenTK.Platform.IJoystickComponent.GetName(OpenTK.Platform.JoystickHandle) + commentId: M:OpenTK.Platform.IJoystickComponent.GetName(OpenTK.Platform.JoystickHandle) + parent: OpenTK.Platform.IJoystickComponent + href: OpenTK.Platform.IJoystickComponent.html#OpenTK_Platform_IJoystickComponent_GetName_OpenTK_Platform_JoystickHandle_ name: GetName(JoystickHandle) nameWithType: IJoystickComponent.GetName(JoystickHandle) - fullName: OpenTK.Core.Platform.IJoystickComponent.GetName(OpenTK.Core.Platform.JoystickHandle) + fullName: OpenTK.Platform.IJoystickComponent.GetName(OpenTK.Platform.JoystickHandle) spec.csharp: - - uid: OpenTK.Core.Platform.IJoystickComponent.GetName(OpenTK.Core.Platform.JoystickHandle) + - uid: OpenTK.Platform.IJoystickComponent.GetName(OpenTK.Platform.JoystickHandle) name: GetName - href: OpenTK.Core.Platform.IJoystickComponent.html#OpenTK_Core_Platform_IJoystickComponent_GetName_OpenTK_Core_Platform_JoystickHandle_ + href: OpenTK.Platform.IJoystickComponent.html#OpenTK_Platform_IJoystickComponent_GetName_OpenTK_Platform_JoystickHandle_ - name: ( - - uid: OpenTK.Core.Platform.JoystickHandle + - uid: OpenTK.Platform.JoystickHandle name: JoystickHandle - href: OpenTK.Core.Platform.JoystickHandle.html + href: OpenTK.Platform.JoystickHandle.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IJoystickComponent.GetName(OpenTK.Core.Platform.JoystickHandle) + - uid: OpenTK.Platform.IJoystickComponent.GetName(OpenTK.Platform.JoystickHandle) name: GetName - href: OpenTK.Core.Platform.IJoystickComponent.html#OpenTK_Core_Platform_IJoystickComponent_GetName_OpenTK_Core_Platform_JoystickHandle_ + href: OpenTK.Platform.IJoystickComponent.html#OpenTK_Platform_IJoystickComponent_GetName_OpenTK_Platform_JoystickHandle_ - name: ( - - uid: OpenTK.Core.Platform.JoystickHandle + - uid: OpenTK.Platform.JoystickHandle name: JoystickHandle - href: OpenTK.Core.Platform.JoystickHandle.html + href: OpenTK.Platform.JoystickHandle.html - name: ) - uid: OpenTK.Platform.Native.SDL.SDLJoystickComponent.GetAxis* commentId: Overload:OpenTK.Platform.Native.SDL.SDLJoystickComponent.GetAxis - href: OpenTK.Platform.Native.SDL.SDLJoystickComponent.html#OpenTK_Platform_Native_SDL_SDLJoystickComponent_GetAxis_OpenTK_Core_Platform_JoystickHandle_OpenTK_Core_Platform_JoystickAxis_ + href: OpenTK.Platform.Native.SDL.SDLJoystickComponent.html#OpenTK_Platform_Native_SDL_SDLJoystickComponent_GetAxis_OpenTK_Platform_JoystickHandle_OpenTK_Platform_JoystickAxis_ name: GetAxis nameWithType: SDLJoystickComponent.GetAxis fullName: OpenTK.Platform.Native.SDL.SDLJoystickComponent.GetAxis -- uid: OpenTK.Core.Platform.IJoystickComponent.GetAxis(OpenTK.Core.Platform.JoystickHandle,OpenTK.Core.Platform.JoystickAxis) - commentId: M:OpenTK.Core.Platform.IJoystickComponent.GetAxis(OpenTK.Core.Platform.JoystickHandle,OpenTK.Core.Platform.JoystickAxis) - parent: OpenTK.Core.Platform.IJoystickComponent - href: OpenTK.Core.Platform.IJoystickComponent.html#OpenTK_Core_Platform_IJoystickComponent_GetAxis_OpenTK_Core_Platform_JoystickHandle_OpenTK_Core_Platform_JoystickAxis_ +- uid: OpenTK.Platform.IJoystickComponent.GetAxis(OpenTK.Platform.JoystickHandle,OpenTK.Platform.JoystickAxis) + commentId: M:OpenTK.Platform.IJoystickComponent.GetAxis(OpenTK.Platform.JoystickHandle,OpenTK.Platform.JoystickAxis) + parent: OpenTK.Platform.IJoystickComponent + href: OpenTK.Platform.IJoystickComponent.html#OpenTK_Platform_IJoystickComponent_GetAxis_OpenTK_Platform_JoystickHandle_OpenTK_Platform_JoystickAxis_ name: GetAxis(JoystickHandle, JoystickAxis) nameWithType: IJoystickComponent.GetAxis(JoystickHandle, JoystickAxis) - fullName: OpenTK.Core.Platform.IJoystickComponent.GetAxis(OpenTK.Core.Platform.JoystickHandle, OpenTK.Core.Platform.JoystickAxis) + fullName: OpenTK.Platform.IJoystickComponent.GetAxis(OpenTK.Platform.JoystickHandle, OpenTK.Platform.JoystickAxis) spec.csharp: - - uid: OpenTK.Core.Platform.IJoystickComponent.GetAxis(OpenTK.Core.Platform.JoystickHandle,OpenTK.Core.Platform.JoystickAxis) + - uid: OpenTK.Platform.IJoystickComponent.GetAxis(OpenTK.Platform.JoystickHandle,OpenTK.Platform.JoystickAxis) name: GetAxis - href: OpenTK.Core.Platform.IJoystickComponent.html#OpenTK_Core_Platform_IJoystickComponent_GetAxis_OpenTK_Core_Platform_JoystickHandle_OpenTK_Core_Platform_JoystickAxis_ + href: OpenTK.Platform.IJoystickComponent.html#OpenTK_Platform_IJoystickComponent_GetAxis_OpenTK_Platform_JoystickHandle_OpenTK_Platform_JoystickAxis_ - name: ( - - uid: OpenTK.Core.Platform.JoystickHandle + - uid: OpenTK.Platform.JoystickHandle name: JoystickHandle - href: OpenTK.Core.Platform.JoystickHandle.html + href: OpenTK.Platform.JoystickHandle.html - name: ',' - name: " " - - uid: OpenTK.Core.Platform.JoystickAxis + - uid: OpenTK.Platform.JoystickAxis name: JoystickAxis - href: OpenTK.Core.Platform.JoystickAxis.html + href: OpenTK.Platform.JoystickAxis.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IJoystickComponent.GetAxis(OpenTK.Core.Platform.JoystickHandle,OpenTK.Core.Platform.JoystickAxis) + - uid: OpenTK.Platform.IJoystickComponent.GetAxis(OpenTK.Platform.JoystickHandle,OpenTK.Platform.JoystickAxis) name: GetAxis - href: OpenTK.Core.Platform.IJoystickComponent.html#OpenTK_Core_Platform_IJoystickComponent_GetAxis_OpenTK_Core_Platform_JoystickHandle_OpenTK_Core_Platform_JoystickAxis_ + href: OpenTK.Platform.IJoystickComponent.html#OpenTK_Platform_IJoystickComponent_GetAxis_OpenTK_Platform_JoystickHandle_OpenTK_Platform_JoystickAxis_ - name: ( - - uid: OpenTK.Core.Platform.JoystickHandle + - uid: OpenTK.Platform.JoystickHandle name: JoystickHandle - href: OpenTK.Core.Platform.JoystickHandle.html + href: OpenTK.Platform.JoystickHandle.html - name: ',' - name: " " - - uid: OpenTK.Core.Platform.JoystickAxis + - uid: OpenTK.Platform.JoystickAxis name: JoystickAxis - href: OpenTK.Core.Platform.JoystickAxis.html + href: OpenTK.Platform.JoystickAxis.html - name: ) -- uid: OpenTK.Core.Platform.JoystickAxis - commentId: T:OpenTK.Core.Platform.JoystickAxis - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.JoystickAxis.html +- uid: OpenTK.Platform.JoystickAxis + commentId: T:OpenTK.Platform.JoystickAxis + parent: OpenTK.Platform + href: OpenTK.Platform.JoystickAxis.html name: JoystickAxis nameWithType: JoystickAxis - fullName: OpenTK.Core.Platform.JoystickAxis + fullName: OpenTK.Platform.JoystickAxis - uid: OpenTK.Platform.Native.SDL.SDLJoystickComponent.GetButton* commentId: Overload:OpenTK.Platform.Native.SDL.SDLJoystickComponent.GetButton - href: OpenTK.Platform.Native.SDL.SDLJoystickComponent.html#OpenTK_Platform_Native_SDL_SDLJoystickComponent_GetButton_OpenTK_Core_Platform_JoystickHandle_OpenTK_Core_Platform_JoystickButton_ + href: OpenTK.Platform.Native.SDL.SDLJoystickComponent.html#OpenTK_Platform_Native_SDL_SDLJoystickComponent_GetButton_OpenTK_Platform_JoystickHandle_OpenTK_Platform_JoystickButton_ name: GetButton nameWithType: SDLJoystickComponent.GetButton fullName: OpenTK.Platform.Native.SDL.SDLJoystickComponent.GetButton -- uid: OpenTK.Core.Platform.IJoystickComponent.GetButton(OpenTK.Core.Platform.JoystickHandle,OpenTK.Core.Platform.JoystickButton) - commentId: M:OpenTK.Core.Platform.IJoystickComponent.GetButton(OpenTK.Core.Platform.JoystickHandle,OpenTK.Core.Platform.JoystickButton) - parent: OpenTK.Core.Platform.IJoystickComponent - href: OpenTK.Core.Platform.IJoystickComponent.html#OpenTK_Core_Platform_IJoystickComponent_GetButton_OpenTK_Core_Platform_JoystickHandle_OpenTK_Core_Platform_JoystickButton_ +- uid: OpenTK.Platform.IJoystickComponent.GetButton(OpenTK.Platform.JoystickHandle,OpenTK.Platform.JoystickButton) + commentId: M:OpenTK.Platform.IJoystickComponent.GetButton(OpenTK.Platform.JoystickHandle,OpenTK.Platform.JoystickButton) + parent: OpenTK.Platform.IJoystickComponent + href: OpenTK.Platform.IJoystickComponent.html#OpenTK_Platform_IJoystickComponent_GetButton_OpenTK_Platform_JoystickHandle_OpenTK_Platform_JoystickButton_ name: GetButton(JoystickHandle, JoystickButton) nameWithType: IJoystickComponent.GetButton(JoystickHandle, JoystickButton) - fullName: OpenTK.Core.Platform.IJoystickComponent.GetButton(OpenTK.Core.Platform.JoystickHandle, OpenTK.Core.Platform.JoystickButton) + fullName: OpenTK.Platform.IJoystickComponent.GetButton(OpenTK.Platform.JoystickHandle, OpenTK.Platform.JoystickButton) spec.csharp: - - uid: OpenTK.Core.Platform.IJoystickComponent.GetButton(OpenTK.Core.Platform.JoystickHandle,OpenTK.Core.Platform.JoystickButton) + - uid: OpenTK.Platform.IJoystickComponent.GetButton(OpenTK.Platform.JoystickHandle,OpenTK.Platform.JoystickButton) name: GetButton - href: OpenTK.Core.Platform.IJoystickComponent.html#OpenTK_Core_Platform_IJoystickComponent_GetButton_OpenTK_Core_Platform_JoystickHandle_OpenTK_Core_Platform_JoystickButton_ + href: OpenTK.Platform.IJoystickComponent.html#OpenTK_Platform_IJoystickComponent_GetButton_OpenTK_Platform_JoystickHandle_OpenTK_Platform_JoystickButton_ - name: ( - - uid: OpenTK.Core.Platform.JoystickHandle + - uid: OpenTK.Platform.JoystickHandle name: JoystickHandle - href: OpenTK.Core.Platform.JoystickHandle.html + href: OpenTK.Platform.JoystickHandle.html - name: ',' - name: " " - - uid: OpenTK.Core.Platform.JoystickButton + - uid: OpenTK.Platform.JoystickButton name: JoystickButton - href: OpenTK.Core.Platform.JoystickButton.html + href: OpenTK.Platform.JoystickButton.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IJoystickComponent.GetButton(OpenTK.Core.Platform.JoystickHandle,OpenTK.Core.Platform.JoystickButton) + - uid: OpenTK.Platform.IJoystickComponent.GetButton(OpenTK.Platform.JoystickHandle,OpenTK.Platform.JoystickButton) name: GetButton - href: OpenTK.Core.Platform.IJoystickComponent.html#OpenTK_Core_Platform_IJoystickComponent_GetButton_OpenTK_Core_Platform_JoystickHandle_OpenTK_Core_Platform_JoystickButton_ + href: OpenTK.Platform.IJoystickComponent.html#OpenTK_Platform_IJoystickComponent_GetButton_OpenTK_Platform_JoystickHandle_OpenTK_Platform_JoystickButton_ - name: ( - - uid: OpenTK.Core.Platform.JoystickHandle + - uid: OpenTK.Platform.JoystickHandle name: JoystickHandle - href: OpenTK.Core.Platform.JoystickHandle.html + href: OpenTK.Platform.JoystickHandle.html - name: ',' - name: " " - - uid: OpenTK.Core.Platform.JoystickButton + - uid: OpenTK.Platform.JoystickButton name: JoystickButton - href: OpenTK.Core.Platform.JoystickButton.html + href: OpenTK.Platform.JoystickButton.html - name: ) -- uid: OpenTK.Core.Platform.JoystickButton - commentId: T:OpenTK.Core.Platform.JoystickButton - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.JoystickButton.html +- uid: OpenTK.Platform.JoystickButton + commentId: T:OpenTK.Platform.JoystickButton + parent: OpenTK.Platform + href: OpenTK.Platform.JoystickButton.html name: JoystickButton nameWithType: JoystickButton - fullName: OpenTK.Core.Platform.JoystickButton + fullName: OpenTK.Platform.JoystickButton - uid: OpenTK.Platform.Native.SDL.SDLJoystickComponent.SetVibration* commentId: Overload:OpenTK.Platform.Native.SDL.SDLJoystickComponent.SetVibration - href: OpenTK.Platform.Native.SDL.SDLJoystickComponent.html#OpenTK_Platform_Native_SDL_SDLJoystickComponent_SetVibration_OpenTK_Core_Platform_JoystickHandle_System_Single_System_Single_ + href: OpenTK.Platform.Native.SDL.SDLJoystickComponent.html#OpenTK_Platform_Native_SDL_SDLJoystickComponent_SetVibration_OpenTK_Platform_JoystickHandle_System_Single_System_Single_ name: SetVibration nameWithType: SDLJoystickComponent.SetVibration fullName: OpenTK.Platform.Native.SDL.SDLJoystickComponent.SetVibration -- uid: OpenTK.Core.Platform.IJoystickComponent.SetVibration(OpenTK.Core.Platform.JoystickHandle,System.Single,System.Single) - commentId: M:OpenTK.Core.Platform.IJoystickComponent.SetVibration(OpenTK.Core.Platform.JoystickHandle,System.Single,System.Single) - parent: OpenTK.Core.Platform.IJoystickComponent +- uid: OpenTK.Platform.IJoystickComponent.SetVibration(OpenTK.Platform.JoystickHandle,System.Single,System.Single) + commentId: M:OpenTK.Platform.IJoystickComponent.SetVibration(OpenTK.Platform.JoystickHandle,System.Single,System.Single) + parent: OpenTK.Platform.IJoystickComponent isExternal: true - href: OpenTK.Core.Platform.IJoystickComponent.html#OpenTK_Core_Platform_IJoystickComponent_SetVibration_OpenTK_Core_Platform_JoystickHandle_System_Single_System_Single_ + href: OpenTK.Platform.IJoystickComponent.html#OpenTK_Platform_IJoystickComponent_SetVibration_OpenTK_Platform_JoystickHandle_System_Single_System_Single_ name: SetVibration(JoystickHandle, float, float) nameWithType: IJoystickComponent.SetVibration(JoystickHandle, float, float) - fullName: OpenTK.Core.Platform.IJoystickComponent.SetVibration(OpenTK.Core.Platform.JoystickHandle, float, float) + fullName: OpenTK.Platform.IJoystickComponent.SetVibration(OpenTK.Platform.JoystickHandle, float, float) nameWithType.vb: IJoystickComponent.SetVibration(JoystickHandle, Single, Single) - fullName.vb: OpenTK.Core.Platform.IJoystickComponent.SetVibration(OpenTK.Core.Platform.JoystickHandle, Single, Single) + fullName.vb: OpenTK.Platform.IJoystickComponent.SetVibration(OpenTK.Platform.JoystickHandle, Single, Single) name.vb: SetVibration(JoystickHandle, Single, Single) spec.csharp: - - uid: OpenTK.Core.Platform.IJoystickComponent.SetVibration(OpenTK.Core.Platform.JoystickHandle,System.Single,System.Single) + - uid: OpenTK.Platform.IJoystickComponent.SetVibration(OpenTK.Platform.JoystickHandle,System.Single,System.Single) name: SetVibration - href: OpenTK.Core.Platform.IJoystickComponent.html#OpenTK_Core_Platform_IJoystickComponent_SetVibration_OpenTK_Core_Platform_JoystickHandle_System_Single_System_Single_ + href: OpenTK.Platform.IJoystickComponent.html#OpenTK_Platform_IJoystickComponent_SetVibration_OpenTK_Platform_JoystickHandle_System_Single_System_Single_ - name: ( - - uid: OpenTK.Core.Platform.JoystickHandle + - uid: OpenTK.Platform.JoystickHandle name: JoystickHandle - href: OpenTK.Core.Platform.JoystickHandle.html + href: OpenTK.Platform.JoystickHandle.html - name: ',' - name: " " - uid: System.Single @@ -1473,13 +1397,13 @@ references: href: https://learn.microsoft.com/dotnet/api/system.single - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IJoystickComponent.SetVibration(OpenTK.Core.Platform.JoystickHandle,System.Single,System.Single) + - uid: OpenTK.Platform.IJoystickComponent.SetVibration(OpenTK.Platform.JoystickHandle,System.Single,System.Single) name: SetVibration - href: OpenTK.Core.Platform.IJoystickComponent.html#OpenTK_Core_Platform_IJoystickComponent_SetVibration_OpenTK_Core_Platform_JoystickHandle_System_Single_System_Single_ + href: OpenTK.Platform.IJoystickComponent.html#OpenTK_Platform_IJoystickComponent_SetVibration_OpenTK_Platform_JoystickHandle_System_Single_System_Single_ - name: ( - - uid: OpenTK.Core.Platform.JoystickHandle + - uid: OpenTK.Platform.JoystickHandle name: JoystickHandle - href: OpenTK.Core.Platform.JoystickHandle.html + href: OpenTK.Platform.JoystickHandle.html - name: ',' - name: " " - uid: System.Single @@ -1495,54 +1419,54 @@ references: - name: ) - uid: OpenTK.Platform.Native.SDL.SDLJoystickComponent.TryGetBatteryInfo* commentId: Overload:OpenTK.Platform.Native.SDL.SDLJoystickComponent.TryGetBatteryInfo - href: OpenTK.Platform.Native.SDL.SDLJoystickComponent.html#OpenTK_Platform_Native_SDL_SDLJoystickComponent_TryGetBatteryInfo_OpenTK_Core_Platform_JoystickHandle_OpenTK_Core_Platform_GamepadBatteryInfo__ + href: OpenTK.Platform.Native.SDL.SDLJoystickComponent.html#OpenTK_Platform_Native_SDL_SDLJoystickComponent_TryGetBatteryInfo_OpenTK_Platform_JoystickHandle_OpenTK_Platform_GamepadBatteryInfo__ name: TryGetBatteryInfo nameWithType: SDLJoystickComponent.TryGetBatteryInfo fullName: OpenTK.Platform.Native.SDL.SDLJoystickComponent.TryGetBatteryInfo -- uid: OpenTK.Core.Platform.IJoystickComponent.TryGetBatteryInfo(OpenTK.Core.Platform.JoystickHandle,OpenTK.Core.Platform.GamepadBatteryInfo@) - commentId: M:OpenTK.Core.Platform.IJoystickComponent.TryGetBatteryInfo(OpenTK.Core.Platform.JoystickHandle,OpenTK.Core.Platform.GamepadBatteryInfo@) - parent: OpenTK.Core.Platform.IJoystickComponent - href: OpenTK.Core.Platform.IJoystickComponent.html#OpenTK_Core_Platform_IJoystickComponent_TryGetBatteryInfo_OpenTK_Core_Platform_JoystickHandle_OpenTK_Core_Platform_GamepadBatteryInfo__ +- uid: OpenTK.Platform.IJoystickComponent.TryGetBatteryInfo(OpenTK.Platform.JoystickHandle,OpenTK.Platform.GamepadBatteryInfo@) + commentId: M:OpenTK.Platform.IJoystickComponent.TryGetBatteryInfo(OpenTK.Platform.JoystickHandle,OpenTK.Platform.GamepadBatteryInfo@) + parent: OpenTK.Platform.IJoystickComponent + href: OpenTK.Platform.IJoystickComponent.html#OpenTK_Platform_IJoystickComponent_TryGetBatteryInfo_OpenTK_Platform_JoystickHandle_OpenTK_Platform_GamepadBatteryInfo__ name: TryGetBatteryInfo(JoystickHandle, out GamepadBatteryInfo) nameWithType: IJoystickComponent.TryGetBatteryInfo(JoystickHandle, out GamepadBatteryInfo) - fullName: OpenTK.Core.Platform.IJoystickComponent.TryGetBatteryInfo(OpenTK.Core.Platform.JoystickHandle, out OpenTK.Core.Platform.GamepadBatteryInfo) + fullName: OpenTK.Platform.IJoystickComponent.TryGetBatteryInfo(OpenTK.Platform.JoystickHandle, out OpenTK.Platform.GamepadBatteryInfo) nameWithType.vb: IJoystickComponent.TryGetBatteryInfo(JoystickHandle, GamepadBatteryInfo) - fullName.vb: OpenTK.Core.Platform.IJoystickComponent.TryGetBatteryInfo(OpenTK.Core.Platform.JoystickHandle, OpenTK.Core.Platform.GamepadBatteryInfo) + fullName.vb: OpenTK.Platform.IJoystickComponent.TryGetBatteryInfo(OpenTK.Platform.JoystickHandle, OpenTK.Platform.GamepadBatteryInfo) name.vb: TryGetBatteryInfo(JoystickHandle, GamepadBatteryInfo) spec.csharp: - - uid: OpenTK.Core.Platform.IJoystickComponent.TryGetBatteryInfo(OpenTK.Core.Platform.JoystickHandle,OpenTK.Core.Platform.GamepadBatteryInfo@) + - uid: OpenTK.Platform.IJoystickComponent.TryGetBatteryInfo(OpenTK.Platform.JoystickHandle,OpenTK.Platform.GamepadBatteryInfo@) name: TryGetBatteryInfo - href: OpenTK.Core.Platform.IJoystickComponent.html#OpenTK_Core_Platform_IJoystickComponent_TryGetBatteryInfo_OpenTK_Core_Platform_JoystickHandle_OpenTK_Core_Platform_GamepadBatteryInfo__ + href: OpenTK.Platform.IJoystickComponent.html#OpenTK_Platform_IJoystickComponent_TryGetBatteryInfo_OpenTK_Platform_JoystickHandle_OpenTK_Platform_GamepadBatteryInfo__ - name: ( - - uid: OpenTK.Core.Platform.JoystickHandle + - uid: OpenTK.Platform.JoystickHandle name: JoystickHandle - href: OpenTK.Core.Platform.JoystickHandle.html + href: OpenTK.Platform.JoystickHandle.html - name: ',' - name: " " - name: out - name: " " - - uid: OpenTK.Core.Platform.GamepadBatteryInfo + - uid: OpenTK.Platform.GamepadBatteryInfo name: GamepadBatteryInfo - href: OpenTK.Core.Platform.GamepadBatteryInfo.html + href: OpenTK.Platform.GamepadBatteryInfo.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IJoystickComponent.TryGetBatteryInfo(OpenTK.Core.Platform.JoystickHandle,OpenTK.Core.Platform.GamepadBatteryInfo@) + - uid: OpenTK.Platform.IJoystickComponent.TryGetBatteryInfo(OpenTK.Platform.JoystickHandle,OpenTK.Platform.GamepadBatteryInfo@) name: TryGetBatteryInfo - href: OpenTK.Core.Platform.IJoystickComponent.html#OpenTK_Core_Platform_IJoystickComponent_TryGetBatteryInfo_OpenTK_Core_Platform_JoystickHandle_OpenTK_Core_Platform_GamepadBatteryInfo__ + href: OpenTK.Platform.IJoystickComponent.html#OpenTK_Platform_IJoystickComponent_TryGetBatteryInfo_OpenTK_Platform_JoystickHandle_OpenTK_Platform_GamepadBatteryInfo__ - name: ( - - uid: OpenTK.Core.Platform.JoystickHandle + - uid: OpenTK.Platform.JoystickHandle name: JoystickHandle - href: OpenTK.Core.Platform.JoystickHandle.html + href: OpenTK.Platform.JoystickHandle.html - name: ',' - name: " " - - uid: OpenTK.Core.Platform.GamepadBatteryInfo + - uid: OpenTK.Platform.GamepadBatteryInfo name: GamepadBatteryInfo - href: OpenTK.Core.Platform.GamepadBatteryInfo.html + href: OpenTK.Platform.GamepadBatteryInfo.html - name: ) -- uid: OpenTK.Core.Platform.GamepadBatteryInfo - commentId: T:OpenTK.Core.Platform.GamepadBatteryInfo - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.GamepadBatteryInfo.html +- uid: OpenTK.Platform.GamepadBatteryInfo + commentId: T:OpenTK.Platform.GamepadBatteryInfo + parent: OpenTK.Platform + href: OpenTK.Platform.GamepadBatteryInfo.html name: GamepadBatteryInfo nameWithType: GamepadBatteryInfo - fullName: OpenTK.Core.Platform.GamepadBatteryInfo + fullName: OpenTK.Platform.GamepadBatteryInfo diff --git a/api/OpenTK.Platform.Native.SDL.SDLKeyboardComponent.yml b/api/OpenTK.Platform.Native.SDL.SDLKeyboardComponent.yml index 41eec5a0..b9ca0356 100644 --- a/api/OpenTK.Platform.Native.SDL.SDLKeyboardComponent.yml +++ b/api/OpenTK.Platform.Native.SDL.SDLKeyboardComponent.yml @@ -5,19 +5,19 @@ items: id: SDLKeyboardComponent parent: OpenTK.Platform.Native.SDL children: - - OpenTK.Platform.Native.SDL.SDLKeyboardComponent.BeginIme(OpenTK.Core.Platform.WindowHandle) - - OpenTK.Platform.Native.SDL.SDLKeyboardComponent.EndIme(OpenTK.Core.Platform.WindowHandle) - - OpenTK.Platform.Native.SDL.SDLKeyboardComponent.GetActiveKeyboardLayout(OpenTK.Core.Platform.WindowHandle) + - OpenTK.Platform.Native.SDL.SDLKeyboardComponent.BeginIme(OpenTK.Platform.WindowHandle) + - OpenTK.Platform.Native.SDL.SDLKeyboardComponent.EndIme(OpenTK.Platform.WindowHandle) + - OpenTK.Platform.Native.SDL.SDLKeyboardComponent.GetActiveKeyboardLayout(OpenTK.Platform.WindowHandle) - OpenTK.Platform.Native.SDL.SDLKeyboardComponent.GetAvailableKeyboardLayouts - - OpenTK.Platform.Native.SDL.SDLKeyboardComponent.GetKeyFromScancode(OpenTK.Core.Platform.Scancode) + - OpenTK.Platform.Native.SDL.SDLKeyboardComponent.GetKeyFromScancode(OpenTK.Platform.Scancode) - OpenTK.Platform.Native.SDL.SDLKeyboardComponent.GetKeyboardModifiers - OpenTK.Platform.Native.SDL.SDLKeyboardComponent.GetKeyboardState(System.Boolean[]) - - OpenTK.Platform.Native.SDL.SDLKeyboardComponent.GetScancodeFromKey(OpenTK.Core.Platform.Key) - - OpenTK.Platform.Native.SDL.SDLKeyboardComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + - OpenTK.Platform.Native.SDL.SDLKeyboardComponent.GetScancodeFromKey(OpenTK.Platform.Key) + - OpenTK.Platform.Native.SDL.SDLKeyboardComponent.Initialize(OpenTK.Platform.ToolkitOptions) - OpenTK.Platform.Native.SDL.SDLKeyboardComponent.Logger - OpenTK.Platform.Native.SDL.SDLKeyboardComponent.Name - OpenTK.Platform.Native.SDL.SDLKeyboardComponent.Provides - - OpenTK.Platform.Native.SDL.SDLKeyboardComponent.SetImeRectangle(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) + - OpenTK.Platform.Native.SDL.SDLKeyboardComponent.SetImeRectangle(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) - OpenTK.Platform.Native.SDL.SDLKeyboardComponent.SupportsIme - OpenTK.Platform.Native.SDL.SDLKeyboardComponent.SupportsLayouts langs: @@ -28,15 +28,11 @@ items: fullName: OpenTK.Platform.Native.SDL.SDLKeyboardComponent type: Class source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLKeyboardComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SDLKeyboardComponent - path: opentk/src/OpenTK.Platform.Native/SDL/SDLKeyboardComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLKeyboardComponent.cs startLine: 13 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL syntax: content: 'public class SDLKeyboardComponent : IKeyboardComponent, IPalComponent' @@ -44,8 +40,8 @@ items: inheritance: - System.Object implements: - - OpenTK.Core.Platform.IKeyboardComponent - - OpenTK.Core.Platform.IPalComponent + - OpenTK.Platform.IKeyboardComponent + - OpenTK.Platform.IPalComponent inheritedMembers: - System.Object.Equals(System.Object) - System.Object.Equals(System.Object,System.Object) @@ -66,15 +62,11 @@ items: fullName: OpenTK.Platform.Native.SDL.SDLKeyboardComponent.Name type: Property source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLKeyboardComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Name - path: opentk/src/OpenTK.Platform.Native/SDL/SDLKeyboardComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLKeyboardComponent.cs startLine: 16 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: Name of the abstraction layer component. example: [] @@ -86,7 +78,7 @@ items: content.vb: Public ReadOnly Property Name As String overload: OpenTK.Platform.Native.SDL.SDLKeyboardComponent.Name* implements: - - OpenTK.Core.Platform.IPalComponent.Name + - OpenTK.Platform.IPalComponent.Name - uid: OpenTK.Platform.Native.SDL.SDLKeyboardComponent.Provides commentId: P:OpenTK.Platform.Native.SDL.SDLKeyboardComponent.Provides id: Provides @@ -99,15 +91,11 @@ items: fullName: OpenTK.Platform.Native.SDL.SDLKeyboardComponent.Provides type: Property source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLKeyboardComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Provides - path: opentk/src/OpenTK.Platform.Native/SDL/SDLKeyboardComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLKeyboardComponent.cs startLine: 19 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: Specifies which PAL components this object provides. example: [] @@ -115,11 +103,11 @@ items: content: public PalComponents Provides { get; } parameters: [] return: - type: OpenTK.Core.Platform.PalComponents + type: OpenTK.Platform.PalComponents content.vb: Public ReadOnly Property Provides As PalComponents overload: OpenTK.Platform.Native.SDL.SDLKeyboardComponent.Provides* implements: - - OpenTK.Core.Platform.IPalComponent.Provides + - OpenTK.Platform.IPalComponent.Provides - uid: OpenTK.Platform.Native.SDL.SDLKeyboardComponent.Logger commentId: P:OpenTK.Platform.Native.SDL.SDLKeyboardComponent.Logger id: Logger @@ -132,15 +120,11 @@ items: fullName: OpenTK.Platform.Native.SDL.SDLKeyboardComponent.Logger type: Property source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLKeyboardComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Logger - path: opentk/src/OpenTK.Platform.Native/SDL/SDLKeyboardComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLKeyboardComponent.cs startLine: 22 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: Provides a logger for this component. example: [] @@ -152,28 +136,24 @@ items: content.vb: Public Property Logger As ILogger overload: OpenTK.Platform.Native.SDL.SDLKeyboardComponent.Logger* implements: - - OpenTK.Core.Platform.IPalComponent.Logger -- uid: OpenTK.Platform.Native.SDL.SDLKeyboardComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - commentId: M:OpenTK.Platform.Native.SDL.SDLKeyboardComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - id: Initialize(OpenTK.Core.Platform.ToolkitOptions) + - OpenTK.Platform.IPalComponent.Logger +- uid: OpenTK.Platform.Native.SDL.SDLKeyboardComponent.Initialize(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Native.SDL.SDLKeyboardComponent.Initialize(OpenTK.Platform.ToolkitOptions) + id: Initialize(OpenTK.Platform.ToolkitOptions) parent: OpenTK.Platform.Native.SDL.SDLKeyboardComponent langs: - csharp - vb name: Initialize(ToolkitOptions) nameWithType: SDLKeyboardComponent.Initialize(ToolkitOptions) - fullName: OpenTK.Platform.Native.SDL.SDLKeyboardComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + fullName: OpenTK.Platform.Native.SDL.SDLKeyboardComponent.Initialize(OpenTK.Platform.ToolkitOptions) type: Method source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLKeyboardComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Initialize - path: opentk/src/OpenTK.Platform.Native/SDL/SDLKeyboardComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLKeyboardComponent.cs startLine: 25 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: Initialize the component. example: [] @@ -181,12 +161,12 @@ items: content: public void Initialize(ToolkitOptions options) parameters: - id: options - type: OpenTK.Core.Platform.ToolkitOptions + type: OpenTK.Platform.ToolkitOptions description: The options to initialize the component with. content.vb: Public Sub Initialize(options As ToolkitOptions) overload: OpenTK.Platform.Native.SDL.SDLKeyboardComponent.Initialize* implements: - - OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + - OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) - uid: OpenTK.Platform.Native.SDL.SDLKeyboardComponent.SupportsLayouts commentId: P:OpenTK.Platform.Native.SDL.SDLKeyboardComponent.SupportsLayouts id: SupportsLayouts @@ -199,15 +179,11 @@ items: fullName: OpenTK.Platform.Native.SDL.SDLKeyboardComponent.SupportsLayouts type: Property source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLKeyboardComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SupportsLayouts - path: opentk/src/OpenTK.Platform.Native/SDL/SDLKeyboardComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLKeyboardComponent.cs startLine: 33 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: True if the driver supports keyboard layout functions. example: [] @@ -219,7 +195,7 @@ items: content.vb: Public ReadOnly Property SupportsLayouts As Boolean overload: OpenTK.Platform.Native.SDL.SDLKeyboardComponent.SupportsLayouts* implements: - - OpenTK.Core.Platform.IKeyboardComponent.SupportsLayouts + - OpenTK.Platform.IKeyboardComponent.SupportsLayouts - uid: OpenTK.Platform.Native.SDL.SDLKeyboardComponent.SupportsIme commentId: P:OpenTK.Platform.Native.SDL.SDLKeyboardComponent.SupportsIme id: SupportsIme @@ -232,15 +208,11 @@ items: fullName: OpenTK.Platform.Native.SDL.SDLKeyboardComponent.SupportsIme type: Property source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLKeyboardComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SupportsIme - path: opentk/src/OpenTK.Platform.Native/SDL/SDLKeyboardComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLKeyboardComponent.cs startLine: 36 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: True if the driver supports input method editor functions. example: [] @@ -252,28 +224,24 @@ items: content.vb: Public ReadOnly Property SupportsIme As Boolean overload: OpenTK.Platform.Native.SDL.SDLKeyboardComponent.SupportsIme* implements: - - OpenTK.Core.Platform.IKeyboardComponent.SupportsIme -- uid: OpenTK.Platform.Native.SDL.SDLKeyboardComponent.GetActiveKeyboardLayout(OpenTK.Core.Platform.WindowHandle) - commentId: M:OpenTK.Platform.Native.SDL.SDLKeyboardComponent.GetActiveKeyboardLayout(OpenTK.Core.Platform.WindowHandle) - id: GetActiveKeyboardLayout(OpenTK.Core.Platform.WindowHandle) + - OpenTK.Platform.IKeyboardComponent.SupportsIme +- uid: OpenTK.Platform.Native.SDL.SDLKeyboardComponent.GetActiveKeyboardLayout(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.Native.SDL.SDLKeyboardComponent.GetActiveKeyboardLayout(OpenTK.Platform.WindowHandle) + id: GetActiveKeyboardLayout(OpenTK.Platform.WindowHandle) parent: OpenTK.Platform.Native.SDL.SDLKeyboardComponent langs: - csharp - vb name: GetActiveKeyboardLayout(WindowHandle?) nameWithType: SDLKeyboardComponent.GetActiveKeyboardLayout(WindowHandle?) - fullName: OpenTK.Platform.Native.SDL.SDLKeyboardComponent.GetActiveKeyboardLayout(OpenTK.Core.Platform.WindowHandle?) + fullName: OpenTK.Platform.Native.SDL.SDLKeyboardComponent.GetActiveKeyboardLayout(OpenTK.Platform.WindowHandle?) type: Method source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLKeyboardComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetActiveKeyboardLayout - path: opentk/src/OpenTK.Platform.Native/SDL/SDLKeyboardComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLKeyboardComponent.cs startLine: 39 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: Get the active keyboard layout. example: [] @@ -281,7 +249,7 @@ items: content: public string GetActiveKeyboardLayout(WindowHandle? handle) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: (optional) Handle to a window to query the layout for. Ignored on systems where keyboard layout is global. return: type: System.String @@ -289,13 +257,13 @@ items: content.vb: Public Function GetActiveKeyboardLayout(handle As WindowHandle) As String overload: OpenTK.Platform.Native.SDL.SDLKeyboardComponent.GetActiveKeyboardLayout* exceptions: - - type: OpenTK.Core.Platform.PalNotImplementedException - commentId: T:OpenTK.Core.Platform.PalNotImplementedException + - type: OpenTK.Platform.PalNotImplementedException + commentId: T:OpenTK.Platform.PalNotImplementedException description: Driver cannot query active keyboard layout. implements: - - OpenTK.Core.Platform.IKeyboardComponent.GetActiveKeyboardLayout(OpenTK.Core.Platform.WindowHandle) + - OpenTK.Platform.IKeyboardComponent.GetActiveKeyboardLayout(OpenTK.Platform.WindowHandle) nameWithType.vb: SDLKeyboardComponent.GetActiveKeyboardLayout(WindowHandle) - fullName.vb: OpenTK.Platform.Native.SDL.SDLKeyboardComponent.GetActiveKeyboardLayout(OpenTK.Core.Platform.WindowHandle) + fullName.vb: OpenTK.Platform.Native.SDL.SDLKeyboardComponent.GetActiveKeyboardLayout(OpenTK.Platform.WindowHandle) name.vb: GetActiveKeyboardLayout(WindowHandle) - uid: OpenTK.Platform.Native.SDL.SDLKeyboardComponent.GetAvailableKeyboardLayouts commentId: M:OpenTK.Platform.Native.SDL.SDLKeyboardComponent.GetAvailableKeyboardLayouts @@ -309,15 +277,11 @@ items: fullName: OpenTK.Platform.Native.SDL.SDLKeyboardComponent.GetAvailableKeyboardLayouts() type: Method source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLKeyboardComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetAvailableKeyboardLayouts - path: opentk/src/OpenTK.Platform.Native/SDL/SDLKeyboardComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLKeyboardComponent.cs startLine: 47 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: See list of possible keyboard layouts for this system. example: [] @@ -329,31 +293,27 @@ items: content.vb: Public Function GetAvailableKeyboardLayouts() As String() overload: OpenTK.Platform.Native.SDL.SDLKeyboardComponent.GetAvailableKeyboardLayouts* implements: - - OpenTK.Core.Platform.IKeyboardComponent.GetAvailableKeyboardLayouts -- uid: OpenTK.Platform.Native.SDL.SDLKeyboardComponent.GetScancodeFromKey(OpenTK.Core.Platform.Key) - commentId: M:OpenTK.Platform.Native.SDL.SDLKeyboardComponent.GetScancodeFromKey(OpenTK.Core.Platform.Key) - id: GetScancodeFromKey(OpenTK.Core.Platform.Key) + - OpenTK.Platform.IKeyboardComponent.GetAvailableKeyboardLayouts +- uid: OpenTK.Platform.Native.SDL.SDLKeyboardComponent.GetScancodeFromKey(OpenTK.Platform.Key) + commentId: M:OpenTK.Platform.Native.SDL.SDLKeyboardComponent.GetScancodeFromKey(OpenTK.Platform.Key) + id: GetScancodeFromKey(OpenTK.Platform.Key) parent: OpenTK.Platform.Native.SDL.SDLKeyboardComponent langs: - csharp - vb name: GetScancodeFromKey(Key) nameWithType: SDLKeyboardComponent.GetScancodeFromKey(Key) - fullName: OpenTK.Platform.Native.SDL.SDLKeyboardComponent.GetScancodeFromKey(OpenTK.Core.Platform.Key) + fullName: OpenTK.Platform.Native.SDL.SDLKeyboardComponent.GetScancodeFromKey(OpenTK.Platform.Key) type: Method source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLKeyboardComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetScancodeFromKey - path: opentk/src/OpenTK.Platform.Native/SDL/SDLKeyboardComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLKeyboardComponent.cs startLine: 53 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: >- - Gets the associated with the specified . + Gets the associated with the specified . The Key to Scancode mapping is not 1 to 1, multiple scancodes can produce the same key. @@ -365,42 +325,38 @@ items: content: public Scancode GetScancodeFromKey(Key key) parameters: - id: key - type: OpenTK.Core.Platform.Key + type: OpenTK.Platform.Key description: The key. return: - type: OpenTK.Core.Platform.Scancode + type: OpenTK.Platform.Scancode description: >- - The that produces the + The that produces the - or if no scancode produces the key. + or if no scancode produces the key. content.vb: Public Function GetScancodeFromKey(key As Key) As Scancode overload: OpenTK.Platform.Native.SDL.SDLKeyboardComponent.GetScancodeFromKey* implements: - - OpenTK.Core.Platform.IKeyboardComponent.GetScancodeFromKey(OpenTK.Core.Platform.Key) -- uid: OpenTK.Platform.Native.SDL.SDLKeyboardComponent.GetKeyFromScancode(OpenTK.Core.Platform.Scancode) - commentId: M:OpenTK.Platform.Native.SDL.SDLKeyboardComponent.GetKeyFromScancode(OpenTK.Core.Platform.Scancode) - id: GetKeyFromScancode(OpenTK.Core.Platform.Scancode) + - OpenTK.Platform.IKeyboardComponent.GetScancodeFromKey(OpenTK.Platform.Key) +- uid: OpenTK.Platform.Native.SDL.SDLKeyboardComponent.GetKeyFromScancode(OpenTK.Platform.Scancode) + commentId: M:OpenTK.Platform.Native.SDL.SDLKeyboardComponent.GetKeyFromScancode(OpenTK.Platform.Scancode) + id: GetKeyFromScancode(OpenTK.Platform.Scancode) parent: OpenTK.Platform.Native.SDL.SDLKeyboardComponent langs: - csharp - vb name: GetKeyFromScancode(Scancode) nameWithType: SDLKeyboardComponent.GetKeyFromScancode(Scancode) - fullName: OpenTK.Platform.Native.SDL.SDLKeyboardComponent.GetKeyFromScancode(OpenTK.Core.Platform.Scancode) + fullName: OpenTK.Platform.Native.SDL.SDLKeyboardComponent.GetKeyFromScancode(OpenTK.Platform.Scancode) type: Method source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLKeyboardComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetKeyFromScancode - path: opentk/src/OpenTK.Platform.Native/SDL/SDLKeyboardComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLKeyboardComponent.cs startLine: 63 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: >- - Gets the associated with the specidied . + Gets the associated with the specidied . This function uses the current keyboard layout to determine the mapping. example: [] @@ -408,18 +364,18 @@ items: content: public Key GetKeyFromScancode(Scancode scancode) parameters: - id: scancode - type: OpenTK.Core.Platform.Scancode + type: OpenTK.Platform.Scancode description: The scancode. return: - type: OpenTK.Core.Platform.Key + type: OpenTK.Platform.Key description: >- - The associated with the + The associated with the - or if the scancode can't be mapped to a key. + or if the scancode can't be mapped to a key. content.vb: Public Function GetKeyFromScancode(scancode As Scancode) As Key overload: OpenTK.Platform.Native.SDL.SDLKeyboardComponent.GetKeyFromScancode* implements: - - OpenTK.Core.Platform.IKeyboardComponent.GetKeyFromScancode(OpenTK.Core.Platform.Scancode) + - OpenTK.Platform.IKeyboardComponent.GetKeyFromScancode(OpenTK.Platform.Scancode) - uid: OpenTK.Platform.Native.SDL.SDLKeyboardComponent.GetKeyboardState(System.Boolean[]) commentId: M:OpenTK.Platform.Native.SDL.SDLKeyboardComponent.GetKeyboardState(System.Boolean[]) id: GetKeyboardState(System.Boolean[]) @@ -432,22 +388,18 @@ items: fullName: OpenTK.Platform.Native.SDL.SDLKeyboardComponent.GetKeyboardState(bool[]) type: Method source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLKeyboardComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetKeyboardState - path: opentk/src/OpenTK.Platform.Native/SDL/SDLKeyboardComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLKeyboardComponent.cs startLine: 73 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: >- Copies the current state of the keyboard into the specified array. - This array should be indexed using values. + This array should be indexed using values. - The length of this array should be an array able to hold all possible values. + The length of this array should be an array able to hold all possible values. example: [] syntax: content: public void GetKeyboardState(bool[] keyboardState) @@ -458,7 +410,7 @@ items: content.vb: Public Sub GetKeyboardState(keyboardState As Boolean()) overload: OpenTK.Platform.Native.SDL.SDLKeyboardComponent.GetKeyboardState* implements: - - OpenTK.Core.Platform.IKeyboardComponent.GetKeyboardState(System.Boolean[]) + - OpenTK.Platform.IKeyboardComponent.GetKeyboardState(System.Boolean[]) nameWithType.vb: SDLKeyboardComponent.GetKeyboardState(Boolean()) fullName.vb: OpenTK.Platform.Native.SDL.SDLKeyboardComponent.GetKeyboardState(Boolean()) name.vb: GetKeyboardState(Boolean()) @@ -474,48 +426,40 @@ items: fullName: OpenTK.Platform.Native.SDL.SDLKeyboardComponent.GetKeyboardModifiers() type: Method source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLKeyboardComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetKeyboardModifiers - path: opentk/src/OpenTK.Platform.Native/SDL/SDLKeyboardComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLKeyboardComponent.cs startLine: 92 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: Gets the current keyboard modifiers. example: [] syntax: content: public KeyModifier GetKeyboardModifiers() return: - type: OpenTK.Core.Platform.KeyModifier + type: OpenTK.Platform.KeyModifier description: The current keyboard modifiers. content.vb: Public Function GetKeyboardModifiers() As KeyModifier overload: OpenTK.Platform.Native.SDL.SDLKeyboardComponent.GetKeyboardModifiers* implements: - - OpenTK.Core.Platform.IKeyboardComponent.GetKeyboardModifiers -- uid: OpenTK.Platform.Native.SDL.SDLKeyboardComponent.BeginIme(OpenTK.Core.Platform.WindowHandle) - commentId: M:OpenTK.Platform.Native.SDL.SDLKeyboardComponent.BeginIme(OpenTK.Core.Platform.WindowHandle) - id: BeginIme(OpenTK.Core.Platform.WindowHandle) + - OpenTK.Platform.IKeyboardComponent.GetKeyboardModifiers +- uid: OpenTK.Platform.Native.SDL.SDLKeyboardComponent.BeginIme(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.Native.SDL.SDLKeyboardComponent.BeginIme(OpenTK.Platform.WindowHandle) + id: BeginIme(OpenTK.Platform.WindowHandle) parent: OpenTK.Platform.Native.SDL.SDLKeyboardComponent langs: - csharp - vb name: BeginIme(WindowHandle) nameWithType: SDLKeyboardComponent.BeginIme(WindowHandle) - fullName: OpenTK.Platform.Native.SDL.SDLKeyboardComponent.BeginIme(OpenTK.Core.Platform.WindowHandle) + fullName: OpenTK.Platform.Native.SDL.SDLKeyboardComponent.BeginIme(OpenTK.Platform.WindowHandle) type: Method source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLKeyboardComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: BeginIme - path: opentk/src/OpenTK.Platform.Native/SDL/SDLKeyboardComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLKeyboardComponent.cs startLine: 98 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: Invoke input method editor. example: [] @@ -523,33 +467,29 @@ items: content: public void BeginIme(WindowHandle window) parameters: - id: window - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: The window corresponding to this IME window. content.vb: Public Sub BeginIme(window As WindowHandle) overload: OpenTK.Platform.Native.SDL.SDLKeyboardComponent.BeginIme* implements: - - OpenTK.Core.Platform.IKeyboardComponent.BeginIme(OpenTK.Core.Platform.WindowHandle) -- uid: OpenTK.Platform.Native.SDL.SDLKeyboardComponent.SetImeRectangle(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) - commentId: M:OpenTK.Platform.Native.SDL.SDLKeyboardComponent.SetImeRectangle(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) - id: SetImeRectangle(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) + - OpenTK.Platform.IKeyboardComponent.BeginIme(OpenTK.Platform.WindowHandle) +- uid: OpenTK.Platform.Native.SDL.SDLKeyboardComponent.SetImeRectangle(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) + commentId: M:OpenTK.Platform.Native.SDL.SDLKeyboardComponent.SetImeRectangle(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) + id: SetImeRectangle(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) parent: OpenTK.Platform.Native.SDL.SDLKeyboardComponent langs: - csharp - vb name: SetImeRectangle(WindowHandle, int, int, int, int) nameWithType: SDLKeyboardComponent.SetImeRectangle(WindowHandle, int, int, int, int) - fullName: OpenTK.Platform.Native.SDL.SDLKeyboardComponent.SetImeRectangle(OpenTK.Core.Platform.WindowHandle, int, int, int, int) + fullName: OpenTK.Platform.Native.SDL.SDLKeyboardComponent.SetImeRectangle(OpenTK.Platform.WindowHandle, int, int, int, int) type: Method source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLKeyboardComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetImeRectangle - path: opentk/src/OpenTK.Platform.Native/SDL/SDLKeyboardComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLKeyboardComponent.cs startLine: 106 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: Set the rectangle to which the IME interface will appear relative to. example: [] @@ -557,7 +497,7 @@ items: content: public void SetImeRectangle(WindowHandle window, int x, int y, int width, int height) parameters: - id: window - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: The window corresponding to this IME window. - id: x type: System.Int32 @@ -574,31 +514,27 @@ items: content.vb: Public Sub SetImeRectangle(window As WindowHandle, x As Integer, y As Integer, width As Integer, height As Integer) overload: OpenTK.Platform.Native.SDL.SDLKeyboardComponent.SetImeRectangle* implements: - - OpenTK.Core.Platform.IKeyboardComponent.SetImeRectangle(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) + - OpenTK.Platform.IKeyboardComponent.SetImeRectangle(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) nameWithType.vb: SDLKeyboardComponent.SetImeRectangle(WindowHandle, Integer, Integer, Integer, Integer) - fullName.vb: OpenTK.Platform.Native.SDL.SDLKeyboardComponent.SetImeRectangle(OpenTK.Core.Platform.WindowHandle, Integer, Integer, Integer, Integer) + fullName.vb: OpenTK.Platform.Native.SDL.SDLKeyboardComponent.SetImeRectangle(OpenTK.Platform.WindowHandle, Integer, Integer, Integer, Integer) name.vb: SetImeRectangle(WindowHandle, Integer, Integer, Integer, Integer) -- uid: OpenTK.Platform.Native.SDL.SDLKeyboardComponent.EndIme(OpenTK.Core.Platform.WindowHandle) - commentId: M:OpenTK.Platform.Native.SDL.SDLKeyboardComponent.EndIme(OpenTK.Core.Platform.WindowHandle) - id: EndIme(OpenTK.Core.Platform.WindowHandle) +- uid: OpenTK.Platform.Native.SDL.SDLKeyboardComponent.EndIme(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.Native.SDL.SDLKeyboardComponent.EndIme(OpenTK.Platform.WindowHandle) + id: EndIme(OpenTK.Platform.WindowHandle) parent: OpenTK.Platform.Native.SDL.SDLKeyboardComponent langs: - csharp - vb name: EndIme(WindowHandle) nameWithType: SDLKeyboardComponent.EndIme(WindowHandle) - fullName: OpenTK.Platform.Native.SDL.SDLKeyboardComponent.EndIme(OpenTK.Core.Platform.WindowHandle) + fullName: OpenTK.Platform.Native.SDL.SDLKeyboardComponent.EndIme(OpenTK.Platform.WindowHandle) type: Method source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLKeyboardComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: EndIme - path: opentk/src/OpenTK.Platform.Native/SDL/SDLKeyboardComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLKeyboardComponent.cs startLine: 120 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: Finish input method editor. example: [] @@ -606,12 +542,12 @@ items: content: public void EndIme(WindowHandle window) parameters: - id: window - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: The window corresponding to this IME window. content.vb: Public Sub EndIme(window As WindowHandle) overload: OpenTK.Platform.Native.SDL.SDLKeyboardComponent.EndIme* implements: - - OpenTK.Core.Platform.IKeyboardComponent.EndIme(OpenTK.Core.Platform.WindowHandle) + - OpenTK.Platform.IKeyboardComponent.EndIme(OpenTK.Platform.WindowHandle) references: - uid: OpenTK.Platform.Native.SDL commentId: N:OpenTK.Platform.Native.SDL @@ -662,20 +598,20 @@ references: nameWithType.vb: Object fullName.vb: Object name.vb: Object -- uid: OpenTK.Core.Platform.IKeyboardComponent - commentId: T:OpenTK.Core.Platform.IKeyboardComponent - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.IKeyboardComponent.html +- uid: OpenTK.Platform.IKeyboardComponent + commentId: T:OpenTK.Platform.IKeyboardComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IKeyboardComponent.html name: IKeyboardComponent nameWithType: IKeyboardComponent - fullName: OpenTK.Core.Platform.IKeyboardComponent -- uid: OpenTK.Core.Platform.IPalComponent - commentId: T:OpenTK.Core.Platform.IPalComponent - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.IPalComponent.html + fullName: OpenTK.Platform.IKeyboardComponent +- uid: OpenTK.Platform.IPalComponent + commentId: T:OpenTK.Platform.IPalComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IPalComponent.html name: IPalComponent nameWithType: IPalComponent - fullName: OpenTK.Core.Platform.IPalComponent + fullName: OpenTK.Platform.IPalComponent - uid: System.Object.Equals(System.Object) commentId: M:System.Object.Equals(System.Object) parent: System.Object @@ -902,49 +838,41 @@ references: name: System nameWithType: System fullName: System -- uid: OpenTK.Core.Platform - commentId: N:OpenTK.Core.Platform +- uid: OpenTK.Platform + commentId: N:OpenTK.Platform href: OpenTK.html - name: OpenTK.Core.Platform - nameWithType: OpenTK.Core.Platform - fullName: OpenTK.Core.Platform + name: OpenTK.Platform + nameWithType: OpenTK.Platform + fullName: OpenTK.Platform spec.csharp: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html spec.vb: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html - uid: OpenTK.Platform.Native.SDL.SDLKeyboardComponent.Name* commentId: Overload:OpenTK.Platform.Native.SDL.SDLKeyboardComponent.Name href: OpenTK.Platform.Native.SDL.SDLKeyboardComponent.html#OpenTK_Platform_Native_SDL_SDLKeyboardComponent_Name name: Name nameWithType: SDLKeyboardComponent.Name fullName: OpenTK.Platform.Native.SDL.SDLKeyboardComponent.Name -- uid: OpenTK.Core.Platform.IPalComponent.Name - commentId: P:OpenTK.Core.Platform.IPalComponent.Name - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Name +- uid: OpenTK.Platform.IPalComponent.Name + commentId: P:OpenTK.Platform.IPalComponent.Name + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Name name: Name nameWithType: IPalComponent.Name - fullName: OpenTK.Core.Platform.IPalComponent.Name + fullName: OpenTK.Platform.IPalComponent.Name - uid: System.String commentId: T:System.String parent: System @@ -962,33 +890,33 @@ references: name: Provides nameWithType: SDLKeyboardComponent.Provides fullName: OpenTK.Platform.Native.SDL.SDLKeyboardComponent.Provides -- uid: OpenTK.Core.Platform.IPalComponent.Provides - commentId: P:OpenTK.Core.Platform.IPalComponent.Provides - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Provides +- uid: OpenTK.Platform.IPalComponent.Provides + commentId: P:OpenTK.Platform.IPalComponent.Provides + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Provides name: Provides nameWithType: IPalComponent.Provides - fullName: OpenTK.Core.Platform.IPalComponent.Provides -- uid: OpenTK.Core.Platform.PalComponents - commentId: T:OpenTK.Core.Platform.PalComponents - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.PalComponents.html + fullName: OpenTK.Platform.IPalComponent.Provides +- uid: OpenTK.Platform.PalComponents + commentId: T:OpenTK.Platform.PalComponents + parent: OpenTK.Platform + href: OpenTK.Platform.PalComponents.html name: PalComponents nameWithType: PalComponents - fullName: OpenTK.Core.Platform.PalComponents + fullName: OpenTK.Platform.PalComponents - uid: OpenTK.Platform.Native.SDL.SDLKeyboardComponent.Logger* commentId: Overload:OpenTK.Platform.Native.SDL.SDLKeyboardComponent.Logger href: OpenTK.Platform.Native.SDL.SDLKeyboardComponent.html#OpenTK_Platform_Native_SDL_SDLKeyboardComponent_Logger name: Logger nameWithType: SDLKeyboardComponent.Logger fullName: OpenTK.Platform.Native.SDL.SDLKeyboardComponent.Logger -- uid: OpenTK.Core.Platform.IPalComponent.Logger - commentId: P:OpenTK.Core.Platform.IPalComponent.Logger - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Logger +- uid: OpenTK.Platform.IPalComponent.Logger + commentId: P:OpenTK.Platform.IPalComponent.Logger + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Logger name: Logger nameWithType: IPalComponent.Logger - fullName: OpenTK.Core.Platform.IPalComponent.Logger + fullName: OpenTK.Platform.IPalComponent.Logger - uid: OpenTK.Core.Utility.ILogger commentId: T:OpenTK.Core.Utility.ILogger parent: OpenTK.Core.Utility @@ -1028,55 +956,55 @@ references: href: OpenTK.Core.Utility.html - uid: OpenTK.Platform.Native.SDL.SDLKeyboardComponent.Initialize* commentId: Overload:OpenTK.Platform.Native.SDL.SDLKeyboardComponent.Initialize - href: OpenTK.Platform.Native.SDL.SDLKeyboardComponent.html#OpenTK_Platform_Native_SDL_SDLKeyboardComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + href: OpenTK.Platform.Native.SDL.SDLKeyboardComponent.html#OpenTK_Platform_Native_SDL_SDLKeyboardComponent_Initialize_OpenTK_Platform_ToolkitOptions_ name: Initialize nameWithType: SDLKeyboardComponent.Initialize fullName: OpenTK.Platform.Native.SDL.SDLKeyboardComponent.Initialize -- uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - commentId: M:OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ +- uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ name: Initialize(ToolkitOptions) nameWithType: IPalComponent.Initialize(ToolkitOptions) - fullName: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + fullName: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) spec.csharp: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + - uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.ToolkitOptions + - uid: OpenTK.Platform.ToolkitOptions name: ToolkitOptions - href: OpenTK.Core.Platform.ToolkitOptions.html + href: OpenTK.Platform.ToolkitOptions.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + - uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.ToolkitOptions + - uid: OpenTK.Platform.ToolkitOptions name: ToolkitOptions - href: OpenTK.Core.Platform.ToolkitOptions.html + href: OpenTK.Platform.ToolkitOptions.html - name: ) -- uid: OpenTK.Core.Platform.ToolkitOptions - commentId: T:OpenTK.Core.Platform.ToolkitOptions - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.ToolkitOptions.html +- uid: OpenTK.Platform.ToolkitOptions + commentId: T:OpenTK.Platform.ToolkitOptions + parent: OpenTK.Platform + href: OpenTK.Platform.ToolkitOptions.html name: ToolkitOptions nameWithType: ToolkitOptions - fullName: OpenTK.Core.Platform.ToolkitOptions + fullName: OpenTK.Platform.ToolkitOptions - uid: OpenTK.Platform.Native.SDL.SDLKeyboardComponent.SupportsLayouts* commentId: Overload:OpenTK.Platform.Native.SDL.SDLKeyboardComponent.SupportsLayouts href: OpenTK.Platform.Native.SDL.SDLKeyboardComponent.html#OpenTK_Platform_Native_SDL_SDLKeyboardComponent_SupportsLayouts name: SupportsLayouts nameWithType: SDLKeyboardComponent.SupportsLayouts fullName: OpenTK.Platform.Native.SDL.SDLKeyboardComponent.SupportsLayouts -- uid: OpenTK.Core.Platform.IKeyboardComponent.SupportsLayouts - commentId: P:OpenTK.Core.Platform.IKeyboardComponent.SupportsLayouts - parent: OpenTK.Core.Platform.IKeyboardComponent - href: OpenTK.Core.Platform.IKeyboardComponent.html#OpenTK_Core_Platform_IKeyboardComponent_SupportsLayouts +- uid: OpenTK.Platform.IKeyboardComponent.SupportsLayouts + commentId: P:OpenTK.Platform.IKeyboardComponent.SupportsLayouts + parent: OpenTK.Platform.IKeyboardComponent + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_SupportsLayouts name: SupportsLayouts nameWithType: IKeyboardComponent.SupportsLayouts - fullName: OpenTK.Core.Platform.IKeyboardComponent.SupportsLayouts + fullName: OpenTK.Platform.IKeyboardComponent.SupportsLayouts - uid: System.Boolean commentId: T:System.Boolean parent: System @@ -1094,80 +1022,80 @@ references: name: SupportsIme nameWithType: SDLKeyboardComponent.SupportsIme fullName: OpenTK.Platform.Native.SDL.SDLKeyboardComponent.SupportsIme -- uid: OpenTK.Core.Platform.IKeyboardComponent.SupportsIme - commentId: P:OpenTK.Core.Platform.IKeyboardComponent.SupportsIme - parent: OpenTK.Core.Platform.IKeyboardComponent - href: OpenTK.Core.Platform.IKeyboardComponent.html#OpenTK_Core_Platform_IKeyboardComponent_SupportsIme +- uid: OpenTK.Platform.IKeyboardComponent.SupportsIme + commentId: P:OpenTK.Platform.IKeyboardComponent.SupportsIme + parent: OpenTK.Platform.IKeyboardComponent + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_SupportsIme name: SupportsIme nameWithType: IKeyboardComponent.SupportsIme - fullName: OpenTK.Core.Platform.IKeyboardComponent.SupportsIme -- uid: OpenTK.Core.Platform.PalNotImplementedException - commentId: T:OpenTK.Core.Platform.PalNotImplementedException - href: OpenTK.Core.Platform.PalNotImplementedException.html + fullName: OpenTK.Platform.IKeyboardComponent.SupportsIme +- uid: OpenTK.Platform.PalNotImplementedException + commentId: T:OpenTK.Platform.PalNotImplementedException + href: OpenTK.Platform.PalNotImplementedException.html name: PalNotImplementedException nameWithType: PalNotImplementedException - fullName: OpenTK.Core.Platform.PalNotImplementedException + fullName: OpenTK.Platform.PalNotImplementedException - uid: OpenTK.Platform.Native.SDL.SDLKeyboardComponent.GetActiveKeyboardLayout* commentId: Overload:OpenTK.Platform.Native.SDL.SDLKeyboardComponent.GetActiveKeyboardLayout - href: OpenTK.Platform.Native.SDL.SDLKeyboardComponent.html#OpenTK_Platform_Native_SDL_SDLKeyboardComponent_GetActiveKeyboardLayout_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.Native.SDL.SDLKeyboardComponent.html#OpenTK_Platform_Native_SDL_SDLKeyboardComponent_GetActiveKeyboardLayout_OpenTK_Platform_WindowHandle_ name: GetActiveKeyboardLayout nameWithType: SDLKeyboardComponent.GetActiveKeyboardLayout fullName: OpenTK.Platform.Native.SDL.SDLKeyboardComponent.GetActiveKeyboardLayout -- uid: OpenTK.Core.Platform.IKeyboardComponent.GetActiveKeyboardLayout(OpenTK.Core.Platform.WindowHandle) - commentId: M:OpenTK.Core.Platform.IKeyboardComponent.GetActiveKeyboardLayout(OpenTK.Core.Platform.WindowHandle) - parent: OpenTK.Core.Platform.IKeyboardComponent - href: OpenTK.Core.Platform.IKeyboardComponent.html#OpenTK_Core_Platform_IKeyboardComponent_GetActiveKeyboardLayout_OpenTK_Core_Platform_WindowHandle_ +- uid: OpenTK.Platform.IKeyboardComponent.GetActiveKeyboardLayout(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IKeyboardComponent.GetActiveKeyboardLayout(OpenTK.Platform.WindowHandle) + parent: OpenTK.Platform.IKeyboardComponent + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_GetActiveKeyboardLayout_OpenTK_Platform_WindowHandle_ name: GetActiveKeyboardLayout(WindowHandle) nameWithType: IKeyboardComponent.GetActiveKeyboardLayout(WindowHandle) - fullName: OpenTK.Core.Platform.IKeyboardComponent.GetActiveKeyboardLayout(OpenTK.Core.Platform.WindowHandle) + fullName: OpenTK.Platform.IKeyboardComponent.GetActiveKeyboardLayout(OpenTK.Platform.WindowHandle) spec.csharp: - - uid: OpenTK.Core.Platform.IKeyboardComponent.GetActiveKeyboardLayout(OpenTK.Core.Platform.WindowHandle) + - uid: OpenTK.Platform.IKeyboardComponent.GetActiveKeyboardLayout(OpenTK.Platform.WindowHandle) name: GetActiveKeyboardLayout - href: OpenTK.Core.Platform.IKeyboardComponent.html#OpenTK_Core_Platform_IKeyboardComponent_GetActiveKeyboardLayout_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_GetActiveKeyboardLayout_OpenTK_Platform_WindowHandle_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IKeyboardComponent.GetActiveKeyboardLayout(OpenTK.Core.Platform.WindowHandle) + - uid: OpenTK.Platform.IKeyboardComponent.GetActiveKeyboardLayout(OpenTK.Platform.WindowHandle) name: GetActiveKeyboardLayout - href: OpenTK.Core.Platform.IKeyboardComponent.html#OpenTK_Core_Platform_IKeyboardComponent_GetActiveKeyboardLayout_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_GetActiveKeyboardLayout_OpenTK_Platform_WindowHandle_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ) -- uid: OpenTK.Core.Platform.WindowHandle - commentId: T:OpenTK.Core.Platform.WindowHandle - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.WindowHandle.html +- uid: OpenTK.Platform.WindowHandle + commentId: T:OpenTK.Platform.WindowHandle + parent: OpenTK.Platform + href: OpenTK.Platform.WindowHandle.html name: WindowHandle nameWithType: WindowHandle - fullName: OpenTK.Core.Platform.WindowHandle + fullName: OpenTK.Platform.WindowHandle - uid: OpenTK.Platform.Native.SDL.SDLKeyboardComponent.GetAvailableKeyboardLayouts* commentId: Overload:OpenTK.Platform.Native.SDL.SDLKeyboardComponent.GetAvailableKeyboardLayouts href: OpenTK.Platform.Native.SDL.SDLKeyboardComponent.html#OpenTK_Platform_Native_SDL_SDLKeyboardComponent_GetAvailableKeyboardLayouts name: GetAvailableKeyboardLayouts nameWithType: SDLKeyboardComponent.GetAvailableKeyboardLayouts fullName: OpenTK.Platform.Native.SDL.SDLKeyboardComponent.GetAvailableKeyboardLayouts -- uid: OpenTK.Core.Platform.IKeyboardComponent.GetAvailableKeyboardLayouts - commentId: M:OpenTK.Core.Platform.IKeyboardComponent.GetAvailableKeyboardLayouts - parent: OpenTK.Core.Platform.IKeyboardComponent - href: OpenTK.Core.Platform.IKeyboardComponent.html#OpenTK_Core_Platform_IKeyboardComponent_GetAvailableKeyboardLayouts +- uid: OpenTK.Platform.IKeyboardComponent.GetAvailableKeyboardLayouts + commentId: M:OpenTK.Platform.IKeyboardComponent.GetAvailableKeyboardLayouts + parent: OpenTK.Platform.IKeyboardComponent + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_GetAvailableKeyboardLayouts name: GetAvailableKeyboardLayouts() nameWithType: IKeyboardComponent.GetAvailableKeyboardLayouts() - fullName: OpenTK.Core.Platform.IKeyboardComponent.GetAvailableKeyboardLayouts() + fullName: OpenTK.Platform.IKeyboardComponent.GetAvailableKeyboardLayouts() spec.csharp: - - uid: OpenTK.Core.Platform.IKeyboardComponent.GetAvailableKeyboardLayouts + - uid: OpenTK.Platform.IKeyboardComponent.GetAvailableKeyboardLayouts name: GetAvailableKeyboardLayouts - href: OpenTK.Core.Platform.IKeyboardComponent.html#OpenTK_Core_Platform_IKeyboardComponent_GetAvailableKeyboardLayouts + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_GetAvailableKeyboardLayouts - name: ( - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IKeyboardComponent.GetAvailableKeyboardLayouts + - uid: OpenTK.Platform.IKeyboardComponent.GetAvailableKeyboardLayouts name: GetAvailableKeyboardLayouts - href: OpenTK.Core.Platform.IKeyboardComponent.html#OpenTK_Core_Platform_IKeyboardComponent_GetAvailableKeyboardLayouts + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_GetAvailableKeyboardLayouts - name: ( - name: ) - uid: System.String[] @@ -1193,93 +1121,93 @@ references: href: https://learn.microsoft.com/dotnet/api/system.string - name: ( - name: ) -- uid: OpenTK.Core.Platform.Scancode - commentId: T:OpenTK.Core.Platform.Scancode - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.Scancode.html +- uid: OpenTK.Platform.Scancode + commentId: T:OpenTK.Platform.Scancode + parent: OpenTK.Platform + href: OpenTK.Platform.Scancode.html name: Scancode nameWithType: Scancode - fullName: OpenTK.Core.Platform.Scancode -- uid: OpenTK.Core.Platform.Key - commentId: T:OpenTK.Core.Platform.Key - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.Key.html + fullName: OpenTK.Platform.Scancode +- uid: OpenTK.Platform.Key + commentId: T:OpenTK.Platform.Key + parent: OpenTK.Platform + href: OpenTK.Platform.Key.html name: Key nameWithType: Key - fullName: OpenTK.Core.Platform.Key -- uid: OpenTK.Core.Platform.Scancode.Unknown - commentId: F:OpenTK.Core.Platform.Scancode.Unknown - href: OpenTK.Core.Platform.Scancode.html#OpenTK_Core_Platform_Scancode_Unknown + fullName: OpenTK.Platform.Key +- uid: OpenTK.Platform.Scancode.Unknown + commentId: F:OpenTK.Platform.Scancode.Unknown + href: OpenTK.Platform.Scancode.html#OpenTK_Platform_Scancode_Unknown name: Unknown nameWithType: Scancode.Unknown - fullName: OpenTK.Core.Platform.Scancode.Unknown + fullName: OpenTK.Platform.Scancode.Unknown - uid: OpenTK.Platform.Native.SDL.SDLKeyboardComponent.GetScancodeFromKey* commentId: Overload:OpenTK.Platform.Native.SDL.SDLKeyboardComponent.GetScancodeFromKey - href: OpenTK.Platform.Native.SDL.SDLKeyboardComponent.html#OpenTK_Platform_Native_SDL_SDLKeyboardComponent_GetScancodeFromKey_OpenTK_Core_Platform_Key_ + href: OpenTK.Platform.Native.SDL.SDLKeyboardComponent.html#OpenTK_Platform_Native_SDL_SDLKeyboardComponent_GetScancodeFromKey_OpenTK_Platform_Key_ name: GetScancodeFromKey nameWithType: SDLKeyboardComponent.GetScancodeFromKey fullName: OpenTK.Platform.Native.SDL.SDLKeyboardComponent.GetScancodeFromKey -- uid: OpenTK.Core.Platform.IKeyboardComponent.GetScancodeFromKey(OpenTK.Core.Platform.Key) - commentId: M:OpenTK.Core.Platform.IKeyboardComponent.GetScancodeFromKey(OpenTK.Core.Platform.Key) - parent: OpenTK.Core.Platform.IKeyboardComponent - href: OpenTK.Core.Platform.IKeyboardComponent.html#OpenTK_Core_Platform_IKeyboardComponent_GetScancodeFromKey_OpenTK_Core_Platform_Key_ +- uid: OpenTK.Platform.IKeyboardComponent.GetScancodeFromKey(OpenTK.Platform.Key) + commentId: M:OpenTK.Platform.IKeyboardComponent.GetScancodeFromKey(OpenTK.Platform.Key) + parent: OpenTK.Platform.IKeyboardComponent + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_GetScancodeFromKey_OpenTK_Platform_Key_ name: GetScancodeFromKey(Key) nameWithType: IKeyboardComponent.GetScancodeFromKey(Key) - fullName: OpenTK.Core.Platform.IKeyboardComponent.GetScancodeFromKey(OpenTK.Core.Platform.Key) + fullName: OpenTK.Platform.IKeyboardComponent.GetScancodeFromKey(OpenTK.Platform.Key) spec.csharp: - - uid: OpenTK.Core.Platform.IKeyboardComponent.GetScancodeFromKey(OpenTK.Core.Platform.Key) + - uid: OpenTK.Platform.IKeyboardComponent.GetScancodeFromKey(OpenTK.Platform.Key) name: GetScancodeFromKey - href: OpenTK.Core.Platform.IKeyboardComponent.html#OpenTK_Core_Platform_IKeyboardComponent_GetScancodeFromKey_OpenTK_Core_Platform_Key_ + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_GetScancodeFromKey_OpenTK_Platform_Key_ - name: ( - - uid: OpenTK.Core.Platform.Key + - uid: OpenTK.Platform.Key name: Key - href: OpenTK.Core.Platform.Key.html + href: OpenTK.Platform.Key.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IKeyboardComponent.GetScancodeFromKey(OpenTK.Core.Platform.Key) + - uid: OpenTK.Platform.IKeyboardComponent.GetScancodeFromKey(OpenTK.Platform.Key) name: GetScancodeFromKey - href: OpenTK.Core.Platform.IKeyboardComponent.html#OpenTK_Core_Platform_IKeyboardComponent_GetScancodeFromKey_OpenTK_Core_Platform_Key_ + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_GetScancodeFromKey_OpenTK_Platform_Key_ - name: ( - - uid: OpenTK.Core.Platform.Key + - uid: OpenTK.Platform.Key name: Key - href: OpenTK.Core.Platform.Key.html + href: OpenTK.Platform.Key.html - name: ) -- uid: OpenTK.Core.Platform.Key.Unknown - commentId: F:OpenTK.Core.Platform.Key.Unknown - href: OpenTK.Core.Platform.Key.html#OpenTK_Core_Platform_Key_Unknown +- uid: OpenTK.Platform.Key.Unknown + commentId: F:OpenTK.Platform.Key.Unknown + href: OpenTK.Platform.Key.html#OpenTK_Platform_Key_Unknown name: Unknown nameWithType: Key.Unknown - fullName: OpenTK.Core.Platform.Key.Unknown + fullName: OpenTK.Platform.Key.Unknown - uid: OpenTK.Platform.Native.SDL.SDLKeyboardComponent.GetKeyFromScancode* commentId: Overload:OpenTK.Platform.Native.SDL.SDLKeyboardComponent.GetKeyFromScancode - href: OpenTK.Platform.Native.SDL.SDLKeyboardComponent.html#OpenTK_Platform_Native_SDL_SDLKeyboardComponent_GetKeyFromScancode_OpenTK_Core_Platform_Scancode_ + href: OpenTK.Platform.Native.SDL.SDLKeyboardComponent.html#OpenTK_Platform_Native_SDL_SDLKeyboardComponent_GetKeyFromScancode_OpenTK_Platform_Scancode_ name: GetKeyFromScancode nameWithType: SDLKeyboardComponent.GetKeyFromScancode fullName: OpenTK.Platform.Native.SDL.SDLKeyboardComponent.GetKeyFromScancode -- uid: OpenTK.Core.Platform.IKeyboardComponent.GetKeyFromScancode(OpenTK.Core.Platform.Scancode) - commentId: M:OpenTK.Core.Platform.IKeyboardComponent.GetKeyFromScancode(OpenTK.Core.Platform.Scancode) - parent: OpenTK.Core.Platform.IKeyboardComponent - href: OpenTK.Core.Platform.IKeyboardComponent.html#OpenTK_Core_Platform_IKeyboardComponent_GetKeyFromScancode_OpenTK_Core_Platform_Scancode_ +- uid: OpenTK.Platform.IKeyboardComponent.GetKeyFromScancode(OpenTK.Platform.Scancode) + commentId: M:OpenTK.Platform.IKeyboardComponent.GetKeyFromScancode(OpenTK.Platform.Scancode) + parent: OpenTK.Platform.IKeyboardComponent + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_GetKeyFromScancode_OpenTK_Platform_Scancode_ name: GetKeyFromScancode(Scancode) nameWithType: IKeyboardComponent.GetKeyFromScancode(Scancode) - fullName: OpenTK.Core.Platform.IKeyboardComponent.GetKeyFromScancode(OpenTK.Core.Platform.Scancode) + fullName: OpenTK.Platform.IKeyboardComponent.GetKeyFromScancode(OpenTK.Platform.Scancode) spec.csharp: - - uid: OpenTK.Core.Platform.IKeyboardComponent.GetKeyFromScancode(OpenTK.Core.Platform.Scancode) + - uid: OpenTK.Platform.IKeyboardComponent.GetKeyFromScancode(OpenTK.Platform.Scancode) name: GetKeyFromScancode - href: OpenTK.Core.Platform.IKeyboardComponent.html#OpenTK_Core_Platform_IKeyboardComponent_GetKeyFromScancode_OpenTK_Core_Platform_Scancode_ + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_GetKeyFromScancode_OpenTK_Platform_Scancode_ - name: ( - - uid: OpenTK.Core.Platform.Scancode + - uid: OpenTK.Platform.Scancode name: Scancode - href: OpenTK.Core.Platform.Scancode.html + href: OpenTK.Platform.Scancode.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IKeyboardComponent.GetKeyFromScancode(OpenTK.Core.Platform.Scancode) + - uid: OpenTK.Platform.IKeyboardComponent.GetKeyFromScancode(OpenTK.Platform.Scancode) name: GetKeyFromScancode - href: OpenTK.Core.Platform.IKeyboardComponent.html#OpenTK_Core_Platform_IKeyboardComponent_GetKeyFromScancode_OpenTK_Core_Platform_Scancode_ + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_GetKeyFromScancode_OpenTK_Platform_Scancode_ - name: ( - - uid: OpenTK.Core.Platform.Scancode + - uid: OpenTK.Platform.Scancode name: Scancode - href: OpenTK.Core.Platform.Scancode.html + href: OpenTK.Platform.Scancode.html - name: ) - uid: OpenTK.Platform.Native.SDL.SDLKeyboardComponent.GetKeyboardState* commentId: Overload:OpenTK.Platform.Native.SDL.SDLKeyboardComponent.GetKeyboardState @@ -1287,21 +1215,21 @@ references: name: GetKeyboardState nameWithType: SDLKeyboardComponent.GetKeyboardState fullName: OpenTK.Platform.Native.SDL.SDLKeyboardComponent.GetKeyboardState -- uid: OpenTK.Core.Platform.IKeyboardComponent.GetKeyboardState(System.Boolean[]) - commentId: M:OpenTK.Core.Platform.IKeyboardComponent.GetKeyboardState(System.Boolean[]) - parent: OpenTK.Core.Platform.IKeyboardComponent +- uid: OpenTK.Platform.IKeyboardComponent.GetKeyboardState(System.Boolean[]) + commentId: M:OpenTK.Platform.IKeyboardComponent.GetKeyboardState(System.Boolean[]) + parent: OpenTK.Platform.IKeyboardComponent isExternal: true - href: OpenTK.Core.Platform.IKeyboardComponent.html#OpenTK_Core_Platform_IKeyboardComponent_GetKeyboardState_System_Boolean___ + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_GetKeyboardState_System_Boolean___ name: GetKeyboardState(bool[]) nameWithType: IKeyboardComponent.GetKeyboardState(bool[]) - fullName: OpenTK.Core.Platform.IKeyboardComponent.GetKeyboardState(bool[]) + fullName: OpenTK.Platform.IKeyboardComponent.GetKeyboardState(bool[]) nameWithType.vb: IKeyboardComponent.GetKeyboardState(Boolean()) - fullName.vb: OpenTK.Core.Platform.IKeyboardComponent.GetKeyboardState(Boolean()) + fullName.vb: OpenTK.Platform.IKeyboardComponent.GetKeyboardState(Boolean()) name.vb: GetKeyboardState(Boolean()) spec.csharp: - - uid: OpenTK.Core.Platform.IKeyboardComponent.GetKeyboardState(System.Boolean[]) + - uid: OpenTK.Platform.IKeyboardComponent.GetKeyboardState(System.Boolean[]) name: GetKeyboardState - href: OpenTK.Core.Platform.IKeyboardComponent.html#OpenTK_Core_Platform_IKeyboardComponent_GetKeyboardState_System_Boolean___ + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_GetKeyboardState_System_Boolean___ - name: ( - uid: System.Boolean name: bool @@ -1311,9 +1239,9 @@ references: - name: ']' - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IKeyboardComponent.GetKeyboardState(System.Boolean[]) + - uid: OpenTK.Platform.IKeyboardComponent.GetKeyboardState(System.Boolean[]) name: GetKeyboardState - href: OpenTK.Core.Platform.IKeyboardComponent.html#OpenTK_Core_Platform_IKeyboardComponent_GetKeyboardState_System_Boolean___ + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_GetKeyboardState_System_Boolean___ - name: ( - uid: System.Boolean name: Boolean @@ -1351,88 +1279,88 @@ references: name: GetKeyboardModifiers nameWithType: SDLKeyboardComponent.GetKeyboardModifiers fullName: OpenTK.Platform.Native.SDL.SDLKeyboardComponent.GetKeyboardModifiers -- uid: OpenTK.Core.Platform.IKeyboardComponent.GetKeyboardModifiers - commentId: M:OpenTK.Core.Platform.IKeyboardComponent.GetKeyboardModifiers - parent: OpenTK.Core.Platform.IKeyboardComponent - href: OpenTK.Core.Platform.IKeyboardComponent.html#OpenTK_Core_Platform_IKeyboardComponent_GetKeyboardModifiers +- uid: OpenTK.Platform.IKeyboardComponent.GetKeyboardModifiers + commentId: M:OpenTK.Platform.IKeyboardComponent.GetKeyboardModifiers + parent: OpenTK.Platform.IKeyboardComponent + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_GetKeyboardModifiers name: GetKeyboardModifiers() nameWithType: IKeyboardComponent.GetKeyboardModifiers() - fullName: OpenTK.Core.Platform.IKeyboardComponent.GetKeyboardModifiers() + fullName: OpenTK.Platform.IKeyboardComponent.GetKeyboardModifiers() spec.csharp: - - uid: OpenTK.Core.Platform.IKeyboardComponent.GetKeyboardModifiers + - uid: OpenTK.Platform.IKeyboardComponent.GetKeyboardModifiers name: GetKeyboardModifiers - href: OpenTK.Core.Platform.IKeyboardComponent.html#OpenTK_Core_Platform_IKeyboardComponent_GetKeyboardModifiers + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_GetKeyboardModifiers - name: ( - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IKeyboardComponent.GetKeyboardModifiers + - uid: OpenTK.Platform.IKeyboardComponent.GetKeyboardModifiers name: GetKeyboardModifiers - href: OpenTK.Core.Platform.IKeyboardComponent.html#OpenTK_Core_Platform_IKeyboardComponent_GetKeyboardModifiers + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_GetKeyboardModifiers - name: ( - name: ) -- uid: OpenTK.Core.Platform.KeyModifier - commentId: T:OpenTK.Core.Platform.KeyModifier - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.KeyModifier.html +- uid: OpenTK.Platform.KeyModifier + commentId: T:OpenTK.Platform.KeyModifier + parent: OpenTK.Platform + href: OpenTK.Platform.KeyModifier.html name: KeyModifier nameWithType: KeyModifier - fullName: OpenTK.Core.Platform.KeyModifier + fullName: OpenTK.Platform.KeyModifier - uid: OpenTK.Platform.Native.SDL.SDLKeyboardComponent.BeginIme* commentId: Overload:OpenTK.Platform.Native.SDL.SDLKeyboardComponent.BeginIme - href: OpenTK.Platform.Native.SDL.SDLKeyboardComponent.html#OpenTK_Platform_Native_SDL_SDLKeyboardComponent_BeginIme_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.Native.SDL.SDLKeyboardComponent.html#OpenTK_Platform_Native_SDL_SDLKeyboardComponent_BeginIme_OpenTK_Platform_WindowHandle_ name: BeginIme nameWithType: SDLKeyboardComponent.BeginIme fullName: OpenTK.Platform.Native.SDL.SDLKeyboardComponent.BeginIme -- uid: OpenTK.Core.Platform.IKeyboardComponent.BeginIme(OpenTK.Core.Platform.WindowHandle) - commentId: M:OpenTK.Core.Platform.IKeyboardComponent.BeginIme(OpenTK.Core.Platform.WindowHandle) - parent: OpenTK.Core.Platform.IKeyboardComponent - href: OpenTK.Core.Platform.IKeyboardComponent.html#OpenTK_Core_Platform_IKeyboardComponent_BeginIme_OpenTK_Core_Platform_WindowHandle_ +- uid: OpenTK.Platform.IKeyboardComponent.BeginIme(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IKeyboardComponent.BeginIme(OpenTK.Platform.WindowHandle) + parent: OpenTK.Platform.IKeyboardComponent + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_BeginIme_OpenTK_Platform_WindowHandle_ name: BeginIme(WindowHandle) nameWithType: IKeyboardComponent.BeginIme(WindowHandle) - fullName: OpenTK.Core.Platform.IKeyboardComponent.BeginIme(OpenTK.Core.Platform.WindowHandle) + fullName: OpenTK.Platform.IKeyboardComponent.BeginIme(OpenTK.Platform.WindowHandle) spec.csharp: - - uid: OpenTK.Core.Platform.IKeyboardComponent.BeginIme(OpenTK.Core.Platform.WindowHandle) + - uid: OpenTK.Platform.IKeyboardComponent.BeginIme(OpenTK.Platform.WindowHandle) name: BeginIme - href: OpenTK.Core.Platform.IKeyboardComponent.html#OpenTK_Core_Platform_IKeyboardComponent_BeginIme_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_BeginIme_OpenTK_Platform_WindowHandle_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IKeyboardComponent.BeginIme(OpenTK.Core.Platform.WindowHandle) + - uid: OpenTK.Platform.IKeyboardComponent.BeginIme(OpenTK.Platform.WindowHandle) name: BeginIme - href: OpenTK.Core.Platform.IKeyboardComponent.html#OpenTK_Core_Platform_IKeyboardComponent_BeginIme_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_BeginIme_OpenTK_Platform_WindowHandle_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ) - uid: OpenTK.Platform.Native.SDL.SDLKeyboardComponent.SetImeRectangle* commentId: Overload:OpenTK.Platform.Native.SDL.SDLKeyboardComponent.SetImeRectangle - href: OpenTK.Platform.Native.SDL.SDLKeyboardComponent.html#OpenTK_Platform_Native_SDL_SDLKeyboardComponent_SetImeRectangle_OpenTK_Core_Platform_WindowHandle_System_Int32_System_Int32_System_Int32_System_Int32_ + href: OpenTK.Platform.Native.SDL.SDLKeyboardComponent.html#OpenTK_Platform_Native_SDL_SDLKeyboardComponent_SetImeRectangle_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_System_Int32_System_Int32_ name: SetImeRectangle nameWithType: SDLKeyboardComponent.SetImeRectangle fullName: OpenTK.Platform.Native.SDL.SDLKeyboardComponent.SetImeRectangle -- uid: OpenTK.Core.Platform.IKeyboardComponent.SetImeRectangle(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) - commentId: M:OpenTK.Core.Platform.IKeyboardComponent.SetImeRectangle(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) - parent: OpenTK.Core.Platform.IKeyboardComponent +- uid: OpenTK.Platform.IKeyboardComponent.SetImeRectangle(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) + commentId: M:OpenTK.Platform.IKeyboardComponent.SetImeRectangle(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) + parent: OpenTK.Platform.IKeyboardComponent isExternal: true - href: OpenTK.Core.Platform.IKeyboardComponent.html#OpenTK_Core_Platform_IKeyboardComponent_SetImeRectangle_OpenTK_Core_Platform_WindowHandle_System_Int32_System_Int32_System_Int32_System_Int32_ + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_SetImeRectangle_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_System_Int32_System_Int32_ name: SetImeRectangle(WindowHandle, int, int, int, int) nameWithType: IKeyboardComponent.SetImeRectangle(WindowHandle, int, int, int, int) - fullName: OpenTK.Core.Platform.IKeyboardComponent.SetImeRectangle(OpenTK.Core.Platform.WindowHandle, int, int, int, int) + fullName: OpenTK.Platform.IKeyboardComponent.SetImeRectangle(OpenTK.Platform.WindowHandle, int, int, int, int) nameWithType.vb: IKeyboardComponent.SetImeRectangle(WindowHandle, Integer, Integer, Integer, Integer) - fullName.vb: OpenTK.Core.Platform.IKeyboardComponent.SetImeRectangle(OpenTK.Core.Platform.WindowHandle, Integer, Integer, Integer, Integer) + fullName.vb: OpenTK.Platform.IKeyboardComponent.SetImeRectangle(OpenTK.Platform.WindowHandle, Integer, Integer, Integer, Integer) name.vb: SetImeRectangle(WindowHandle, Integer, Integer, Integer, Integer) spec.csharp: - - uid: OpenTK.Core.Platform.IKeyboardComponent.SetImeRectangle(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) + - uid: OpenTK.Platform.IKeyboardComponent.SetImeRectangle(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) name: SetImeRectangle - href: OpenTK.Core.Platform.IKeyboardComponent.html#OpenTK_Core_Platform_IKeyboardComponent_SetImeRectangle_OpenTK_Core_Platform_WindowHandle_System_Int32_System_Int32_System_Int32_System_Int32_ + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_SetImeRectangle_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_System_Int32_System_Int32_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - uid: System.Int32 @@ -1459,13 +1387,13 @@ references: href: https://learn.microsoft.com/dotnet/api/system.int32 - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IKeyboardComponent.SetImeRectangle(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) + - uid: OpenTK.Platform.IKeyboardComponent.SetImeRectangle(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) name: SetImeRectangle - href: OpenTK.Core.Platform.IKeyboardComponent.html#OpenTK_Core_Platform_IKeyboardComponent_SetImeRectangle_OpenTK_Core_Platform_WindowHandle_System_Int32_System_Int32_System_Int32_System_Int32_ + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_SetImeRectangle_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_System_Int32_System_Int32_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - uid: System.Int32 @@ -1504,32 +1432,32 @@ references: name.vb: Integer - uid: OpenTK.Platform.Native.SDL.SDLKeyboardComponent.EndIme* commentId: Overload:OpenTK.Platform.Native.SDL.SDLKeyboardComponent.EndIme - href: OpenTK.Platform.Native.SDL.SDLKeyboardComponent.html#OpenTK_Platform_Native_SDL_SDLKeyboardComponent_EndIme_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.Native.SDL.SDLKeyboardComponent.html#OpenTK_Platform_Native_SDL_SDLKeyboardComponent_EndIme_OpenTK_Platform_WindowHandle_ name: EndIme nameWithType: SDLKeyboardComponent.EndIme fullName: OpenTK.Platform.Native.SDL.SDLKeyboardComponent.EndIme -- uid: OpenTK.Core.Platform.IKeyboardComponent.EndIme(OpenTK.Core.Platform.WindowHandle) - commentId: M:OpenTK.Core.Platform.IKeyboardComponent.EndIme(OpenTK.Core.Platform.WindowHandle) - parent: OpenTK.Core.Platform.IKeyboardComponent - href: OpenTK.Core.Platform.IKeyboardComponent.html#OpenTK_Core_Platform_IKeyboardComponent_EndIme_OpenTK_Core_Platform_WindowHandle_ +- uid: OpenTK.Platform.IKeyboardComponent.EndIme(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IKeyboardComponent.EndIme(OpenTK.Platform.WindowHandle) + parent: OpenTK.Platform.IKeyboardComponent + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_EndIme_OpenTK_Platform_WindowHandle_ name: EndIme(WindowHandle) nameWithType: IKeyboardComponent.EndIme(WindowHandle) - fullName: OpenTK.Core.Platform.IKeyboardComponent.EndIme(OpenTK.Core.Platform.WindowHandle) + fullName: OpenTK.Platform.IKeyboardComponent.EndIme(OpenTK.Platform.WindowHandle) spec.csharp: - - uid: OpenTK.Core.Platform.IKeyboardComponent.EndIme(OpenTK.Core.Platform.WindowHandle) + - uid: OpenTK.Platform.IKeyboardComponent.EndIme(OpenTK.Platform.WindowHandle) name: EndIme - href: OpenTK.Core.Platform.IKeyboardComponent.html#OpenTK_Core_Platform_IKeyboardComponent_EndIme_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_EndIme_OpenTK_Platform_WindowHandle_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IKeyboardComponent.EndIme(OpenTK.Core.Platform.WindowHandle) + - uid: OpenTK.Platform.IKeyboardComponent.EndIme(OpenTK.Platform.WindowHandle) name: EndIme - href: OpenTK.Core.Platform.IKeyboardComponent.html#OpenTK_Core_Platform_IKeyboardComponent_EndIme_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_EndIme_OpenTK_Platform_WindowHandle_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ) diff --git a/api/OpenTK.Platform.Native.SDL.SDLMouseComponent.yml b/api/OpenTK.Platform.Native.SDL.SDLMouseComponent.yml index ec1bb024..6da9493a 100644 --- a/api/OpenTK.Platform.Native.SDL.SDLMouseComponent.yml +++ b/api/OpenTK.Platform.Native.SDL.SDLMouseComponent.yml @@ -6,14 +6,17 @@ items: parent: OpenTK.Platform.Native.SDL children: - OpenTK.Platform.Native.SDL.SDLMouseComponent.CanSetMousePosition - - OpenTK.Platform.Native.SDL.SDLMouseComponent.GetMouseState(OpenTK.Core.Platform.MouseState@) + - OpenTK.Platform.Native.SDL.SDLMouseComponent.EnableRawMouseMotion(OpenTK.Platform.WindowHandle,System.Boolean) + - OpenTK.Platform.Native.SDL.SDLMouseComponent.GetMouseState(OpenTK.Platform.MouseState@) - OpenTK.Platform.Native.SDL.SDLMouseComponent.GetPosition(System.Int32@,System.Int32@) - - OpenTK.Platform.Native.SDL.SDLMouseComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + - OpenTK.Platform.Native.SDL.SDLMouseComponent.Initialize(OpenTK.Platform.ToolkitOptions) + - OpenTK.Platform.Native.SDL.SDLMouseComponent.IsRawMouseMotionEnabled(OpenTK.Platform.WindowHandle) - OpenTK.Platform.Native.SDL.SDLMouseComponent.Logger - OpenTK.Platform.Native.SDL.SDLMouseComponent.Name - OpenTK.Platform.Native.SDL.SDLMouseComponent.Provides - OpenTK.Platform.Native.SDL.SDLMouseComponent.SetPosition(System.Int32,System.Int32) - - OpenTK.Platform.Native.SDL.SDLMouseComponent.SetPositionInWindow(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) + - OpenTK.Platform.Native.SDL.SDLMouseComponent.SetPositionInWindow(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) + - OpenTK.Platform.Native.SDL.SDLMouseComponent.SupportsRawMouseMotion langs: - csharp - vb @@ -22,15 +25,11 @@ items: fullName: OpenTK.Platform.Native.SDL.SDLMouseComponent type: Class source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLMouseComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SDLMouseComponent - path: opentk/src/OpenTK.Platform.Native/SDL/SDLMouseComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLMouseComponent.cs startLine: 13 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL syntax: content: 'public class SDLMouseComponent : IMouseComponent, IPalComponent' @@ -38,8 +37,8 @@ items: inheritance: - System.Object implements: - - OpenTK.Core.Platform.IMouseComponent - - OpenTK.Core.Platform.IPalComponent + - OpenTK.Platform.IMouseComponent + - OpenTK.Platform.IPalComponent inheritedMembers: - System.Object.Equals(System.Object) - System.Object.Equals(System.Object,System.Object) @@ -60,15 +59,11 @@ items: fullName: OpenTK.Platform.Native.SDL.SDLMouseComponent.Name type: Property source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLMouseComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Name - path: opentk/src/OpenTK.Platform.Native/SDL/SDLMouseComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLMouseComponent.cs startLine: 16 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: Name of the abstraction layer component. example: [] @@ -80,7 +75,7 @@ items: content.vb: Public ReadOnly Property Name As String overload: OpenTK.Platform.Native.SDL.SDLMouseComponent.Name* implements: - - OpenTK.Core.Platform.IPalComponent.Name + - OpenTK.Platform.IPalComponent.Name - uid: OpenTK.Platform.Native.SDL.SDLMouseComponent.Provides commentId: P:OpenTK.Platform.Native.SDL.SDLMouseComponent.Provides id: Provides @@ -93,15 +88,11 @@ items: fullName: OpenTK.Platform.Native.SDL.SDLMouseComponent.Provides type: Property source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLMouseComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Provides - path: opentk/src/OpenTK.Platform.Native/SDL/SDLMouseComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLMouseComponent.cs startLine: 19 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: Specifies which PAL components this object provides. example: [] @@ -109,11 +100,11 @@ items: content: public PalComponents Provides { get; } parameters: [] return: - type: OpenTK.Core.Platform.PalComponents + type: OpenTK.Platform.PalComponents content.vb: Public ReadOnly Property Provides As PalComponents overload: OpenTK.Platform.Native.SDL.SDLMouseComponent.Provides* implements: - - OpenTK.Core.Platform.IPalComponent.Provides + - OpenTK.Platform.IPalComponent.Provides - uid: OpenTK.Platform.Native.SDL.SDLMouseComponent.Logger commentId: P:OpenTK.Platform.Native.SDL.SDLMouseComponent.Logger id: Logger @@ -126,15 +117,11 @@ items: fullName: OpenTK.Platform.Native.SDL.SDLMouseComponent.Logger type: Property source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLMouseComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Logger - path: opentk/src/OpenTK.Platform.Native/SDL/SDLMouseComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLMouseComponent.cs startLine: 22 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: Provides a logger for this component. example: [] @@ -146,28 +133,24 @@ items: content.vb: Public Property Logger As ILogger overload: OpenTK.Platform.Native.SDL.SDLMouseComponent.Logger* implements: - - OpenTK.Core.Platform.IPalComponent.Logger -- uid: OpenTK.Platform.Native.SDL.SDLMouseComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - commentId: M:OpenTK.Platform.Native.SDL.SDLMouseComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - id: Initialize(OpenTK.Core.Platform.ToolkitOptions) + - OpenTK.Platform.IPalComponent.Logger +- uid: OpenTK.Platform.Native.SDL.SDLMouseComponent.Initialize(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Native.SDL.SDLMouseComponent.Initialize(OpenTK.Platform.ToolkitOptions) + id: Initialize(OpenTK.Platform.ToolkitOptions) parent: OpenTK.Platform.Native.SDL.SDLMouseComponent langs: - csharp - vb name: Initialize(ToolkitOptions) nameWithType: SDLMouseComponent.Initialize(ToolkitOptions) - fullName: OpenTK.Platform.Native.SDL.SDLMouseComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + fullName: OpenTK.Platform.Native.SDL.SDLMouseComponent.Initialize(OpenTK.Platform.ToolkitOptions) type: Method source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLMouseComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Initialize - path: opentk/src/OpenTK.Platform.Native/SDL/SDLMouseComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLMouseComponent.cs startLine: 25 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: Initialize the component. example: [] @@ -175,12 +158,12 @@ items: content: public void Initialize(ToolkitOptions options) parameters: - id: options - type: OpenTK.Core.Platform.ToolkitOptions + type: OpenTK.Platform.ToolkitOptions description: The options to initialize the component with. content.vb: Public Sub Initialize(options As ToolkitOptions) overload: OpenTK.Platform.Native.SDL.SDLMouseComponent.Initialize* implements: - - OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + - OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) - uid: OpenTK.Platform.Native.SDL.SDLMouseComponent.CanSetMousePosition commentId: P:OpenTK.Platform.Native.SDL.SDLMouseComponent.CanSetMousePosition id: CanSetMousePosition @@ -193,17 +176,13 @@ items: fullName: OpenTK.Platform.Native.SDL.SDLMouseComponent.CanSetMousePosition type: Property source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLMouseComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CanSetMousePosition - path: opentk/src/OpenTK.Platform.Native/SDL/SDLMouseComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLMouseComponent.cs startLine: 30 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL - summary: If it's possible to set the position of the mouse. + summary: If it's possible to set the position of the mouse using . example: [] syntax: content: public bool CanSetMousePosition { get; } @@ -212,8 +191,48 @@ items: type: System.Boolean content.vb: Public ReadOnly Property CanSetMousePosition As Boolean overload: OpenTK.Platform.Native.SDL.SDLMouseComponent.CanSetMousePosition* + seealso: + - linkId: OpenTK.Platform.IMouseComponent.SetPosition(System.Int32,System.Int32) + commentId: M:OpenTK.Platform.IMouseComponent.SetPosition(System.Int32,System.Int32) implements: - - OpenTK.Core.Platform.IMouseComponent.CanSetMousePosition + - OpenTK.Platform.IMouseComponent.CanSetMousePosition +- uid: OpenTK.Platform.Native.SDL.SDLMouseComponent.SupportsRawMouseMotion + commentId: P:OpenTK.Platform.Native.SDL.SDLMouseComponent.SupportsRawMouseMotion + id: SupportsRawMouseMotion + parent: OpenTK.Platform.Native.SDL.SDLMouseComponent + langs: + - csharp + - vb + name: SupportsRawMouseMotion + nameWithType: SDLMouseComponent.SupportsRawMouseMotion + fullName: OpenTK.Platform.Native.SDL.SDLMouseComponent.SupportsRawMouseMotion + type: Property + source: + id: SupportsRawMouseMotion + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLMouseComponent.cs + startLine: 33 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform.Native.SDL + summary: >- + If raw mouse motion is supported on this platform. + + If this is false and should not be used. + example: [] + syntax: + content: public bool SupportsRawMouseMotion { get; } + parameters: [] + return: + type: System.Boolean + content.vb: Public ReadOnly Property SupportsRawMouseMotion As Boolean + overload: OpenTK.Platform.Native.SDL.SDLMouseComponent.SupportsRawMouseMotion* + seealso: + - linkId: OpenTK.Platform.IMouseComponent.IsRawMouseMotionEnabled(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IMouseComponent.IsRawMouseMotionEnabled(OpenTK.Platform.WindowHandle) + - linkId: OpenTK.Platform.IMouseComponent.EnableRawMouseMotion(OpenTK.Platform.WindowHandle,System.Boolean) + commentId: M:OpenTK.Platform.IMouseComponent.EnableRawMouseMotion(OpenTK.Platform.WindowHandle,System.Boolean) + implements: + - OpenTK.Platform.IMouseComponent.SupportsRawMouseMotion - uid: OpenTK.Platform.Native.SDL.SDLMouseComponent.GetPosition(System.Int32@,System.Int32@) commentId: M:OpenTK.Platform.Native.SDL.SDLMouseComponent.GetPosition(System.Int32@,System.Int32@) id: GetPosition(System.Int32@,System.Int32@) @@ -226,15 +245,11 @@ items: fullName: OpenTK.Platform.Native.SDL.SDLMouseComponent.GetPosition(out int, out int) type: Method source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLMouseComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetPosition - path: opentk/src/OpenTK.Platform.Native/SDL/SDLMouseComponent.cs - startLine: 33 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLMouseComponent.cs + startLine: 36 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: Get the mouse cursor position. example: [] @@ -250,7 +265,7 @@ items: content.vb: Public Sub GetPosition(x As Integer, y As Integer) overload: OpenTK.Platform.Native.SDL.SDLMouseComponent.GetPosition* implements: - - OpenTK.Core.Platform.IMouseComponent.GetPosition(System.Int32@,System.Int32@) + - OpenTK.Platform.IMouseComponent.GetPosition(System.Int32@,System.Int32@) nameWithType.vb: SDLMouseComponent.GetPosition(Integer, Integer) fullName.vb: OpenTK.Platform.Native.SDL.SDLMouseComponent.GetPosition(Integer, Integer) name.vb: GetPosition(Integer, Integer) @@ -266,17 +281,16 @@ items: fullName: OpenTK.Platform.Native.SDL.SDLMouseComponent.SetPosition(int, int) type: Method source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLMouseComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetPosition - path: opentk/src/OpenTK.Platform.Native/SDL/SDLMouseComponent.cs - startLine: 39 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLMouseComponent.cs + startLine: 42 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL - summary: Set the mouse cursor position. + summary: >- + Set the mouse cursor position. + + Check that is true before using this. example: [] syntax: content: public void SetPosition(int x, int y) @@ -289,32 +303,31 @@ items: description: Y coordinate of the mouse in desktop space. content.vb: Public Sub SetPosition(x As Integer, y As Integer) overload: OpenTK.Platform.Native.SDL.SDLMouseComponent.SetPosition* + seealso: + - linkId: OpenTK.Platform.IMouseComponent.CanSetMousePosition + commentId: P:OpenTK.Platform.IMouseComponent.CanSetMousePosition implements: - - OpenTK.Core.Platform.IMouseComponent.SetPosition(System.Int32,System.Int32) + - OpenTK.Platform.IMouseComponent.SetPosition(System.Int32,System.Int32) nameWithType.vb: SDLMouseComponent.SetPosition(Integer, Integer) fullName.vb: OpenTK.Platform.Native.SDL.SDLMouseComponent.SetPosition(Integer, Integer) name.vb: SetPosition(Integer, Integer) -- uid: OpenTK.Platform.Native.SDL.SDLMouseComponent.SetPositionInWindow(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) - commentId: M:OpenTK.Platform.Native.SDL.SDLMouseComponent.SetPositionInWindow(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) - id: SetPositionInWindow(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) +- uid: OpenTK.Platform.Native.SDL.SDLMouseComponent.SetPositionInWindow(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) + commentId: M:OpenTK.Platform.Native.SDL.SDLMouseComponent.SetPositionInWindow(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) + id: SetPositionInWindow(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) parent: OpenTK.Platform.Native.SDL.SDLMouseComponent langs: - csharp - vb name: SetPositionInWindow(WindowHandle, int, int) nameWithType: SDLMouseComponent.SetPositionInWindow(WindowHandle, int, int) - fullName: OpenTK.Platform.Native.SDL.SDLMouseComponent.SetPositionInWindow(OpenTK.Core.Platform.WindowHandle, int, int) + fullName: OpenTK.Platform.Native.SDL.SDLMouseComponent.SetPositionInWindow(OpenTK.Platform.WindowHandle, int, int) type: Method source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLMouseComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetPositionInWindow - path: opentk/src/OpenTK.Platform.Native/SDL/SDLMouseComponent.cs - startLine: 55 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLMouseComponent.cs + startLine: 58 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: Calls SDL_WarpMouseInWindow. example: [] @@ -322,7 +335,7 @@ items: content: public void SetPositionInWindow(WindowHandle handle, int x, int y) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: The window to warp inside. - id: x type: System.Int32 @@ -333,29 +346,25 @@ items: content.vb: Public Sub SetPositionInWindow(handle As WindowHandle, x As Integer, y As Integer) overload: OpenTK.Platform.Native.SDL.SDLMouseComponent.SetPositionInWindow* nameWithType.vb: SDLMouseComponent.SetPositionInWindow(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Platform.Native.SDL.SDLMouseComponent.SetPositionInWindow(OpenTK.Core.Platform.WindowHandle, Integer, Integer) + fullName.vb: OpenTK.Platform.Native.SDL.SDLMouseComponent.SetPositionInWindow(OpenTK.Platform.WindowHandle, Integer, Integer) name.vb: SetPositionInWindow(WindowHandle, Integer, Integer) -- uid: OpenTK.Platform.Native.SDL.SDLMouseComponent.GetMouseState(OpenTK.Core.Platform.MouseState@) - commentId: M:OpenTK.Platform.Native.SDL.SDLMouseComponent.GetMouseState(OpenTK.Core.Platform.MouseState@) - id: GetMouseState(OpenTK.Core.Platform.MouseState@) +- uid: OpenTK.Platform.Native.SDL.SDLMouseComponent.GetMouseState(OpenTK.Platform.MouseState@) + commentId: M:OpenTK.Platform.Native.SDL.SDLMouseComponent.GetMouseState(OpenTK.Platform.MouseState@) + id: GetMouseState(OpenTK.Platform.MouseState@) parent: OpenTK.Platform.Native.SDL.SDLMouseComponent langs: - csharp - vb name: GetMouseState(out MouseState) nameWithType: SDLMouseComponent.GetMouseState(out MouseState) - fullName: OpenTK.Platform.Native.SDL.SDLMouseComponent.GetMouseState(out OpenTK.Core.Platform.MouseState) + fullName: OpenTK.Platform.Native.SDL.SDLMouseComponent.GetMouseState(out OpenTK.Platform.MouseState) type: Method source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLMouseComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetMouseState - path: opentk/src/OpenTK.Platform.Native/SDL/SDLMouseComponent.cs - startLine: 77 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLMouseComponent.cs + startLine: 80 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: Fills the state struct with the current mouse state. example: [] @@ -363,15 +372,100 @@ items: content: public void GetMouseState(out MouseState state) parameters: - id: state - type: OpenTK.Core.Platform.MouseState + type: OpenTK.Platform.MouseState description: The current mouse state. content.vb: Public Sub GetMouseState(state As MouseState) overload: OpenTK.Platform.Native.SDL.SDLMouseComponent.GetMouseState* implements: - - OpenTK.Core.Platform.IMouseComponent.GetMouseState(OpenTK.Core.Platform.MouseState@) + - OpenTK.Platform.IMouseComponent.GetMouseState(OpenTK.Platform.MouseState@) nameWithType.vb: SDLMouseComponent.GetMouseState(MouseState) - fullName.vb: OpenTK.Platform.Native.SDL.SDLMouseComponent.GetMouseState(OpenTK.Core.Platform.MouseState) + fullName.vb: OpenTK.Platform.Native.SDL.SDLMouseComponent.GetMouseState(OpenTK.Platform.MouseState) name.vb: GetMouseState(MouseState) +- uid: OpenTK.Platform.Native.SDL.SDLMouseComponent.IsRawMouseMotionEnabled(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.Native.SDL.SDLMouseComponent.IsRawMouseMotionEnabled(OpenTK.Platform.WindowHandle) + id: IsRawMouseMotionEnabled(OpenTK.Platform.WindowHandle) + parent: OpenTK.Platform.Native.SDL.SDLMouseComponent + langs: + - csharp + - vb + name: IsRawMouseMotionEnabled(WindowHandle) + nameWithType: SDLMouseComponent.IsRawMouseMotionEnabled(WindowHandle) + fullName: OpenTK.Platform.Native.SDL.SDLMouseComponent.IsRawMouseMotionEnabled(OpenTK.Platform.WindowHandle) + type: Method + source: + id: IsRawMouseMotionEnabled + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLMouseComponent.cs + startLine: 108 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform.Native.SDL + summary: >- + Returns whether raw mouse motion is enabled for the given window or not. + + Check that is true before using this. + example: [] + syntax: + content: public bool IsRawMouseMotionEnabled(WindowHandle window) + parameters: + - id: window + type: OpenTK.Platform.WindowHandle + description: The window to query. + return: + type: System.Boolean + description: If raw mouse motion is enabled. + content.vb: Public Function IsRawMouseMotionEnabled(window As WindowHandle) As Boolean + overload: OpenTK.Platform.Native.SDL.SDLMouseComponent.IsRawMouseMotionEnabled* + seealso: + - linkId: OpenTK.Platform.IMouseComponent.SupportsRawMouseMotion + commentId: P:OpenTK.Platform.IMouseComponent.SupportsRawMouseMotion + implements: + - OpenTK.Platform.IMouseComponent.IsRawMouseMotionEnabled(OpenTK.Platform.WindowHandle) +- uid: OpenTK.Platform.Native.SDL.SDLMouseComponent.EnableRawMouseMotion(OpenTK.Platform.WindowHandle,System.Boolean) + commentId: M:OpenTK.Platform.Native.SDL.SDLMouseComponent.EnableRawMouseMotion(OpenTK.Platform.WindowHandle,System.Boolean) + id: EnableRawMouseMotion(OpenTK.Platform.WindowHandle,System.Boolean) + parent: OpenTK.Platform.Native.SDL.SDLMouseComponent + langs: + - csharp + - vb + name: EnableRawMouseMotion(WindowHandle, bool) + nameWithType: SDLMouseComponent.EnableRawMouseMotion(WindowHandle, bool) + fullName: OpenTK.Platform.Native.SDL.SDLMouseComponent.EnableRawMouseMotion(OpenTK.Platform.WindowHandle, bool) + type: Method + source: + id: EnableRawMouseMotion + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLMouseComponent.cs + startLine: 114 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform.Native.SDL + summary: >- + Enables or disables raw mouse motion for a specific window. + + When raw mouse motion is enabled the window will receive events, + + in addition to the normal events. + + Check that is true before using this. + example: [] + syntax: + content: public void EnableRawMouseMotion(WindowHandle window, bool enable) + parameters: + - id: window + type: OpenTK.Platform.WindowHandle + description: The window to enable or disable raw mouse motion for. + - id: enable + type: System.Boolean + description: Whether to enable or disable raw mouse motion. + content.vb: Public Sub EnableRawMouseMotion(window As WindowHandle, enable As Boolean) + overload: OpenTK.Platform.Native.SDL.SDLMouseComponent.EnableRawMouseMotion* + seealso: + - linkId: OpenTK.Platform.IMouseComponent.SupportsRawMouseMotion + commentId: P:OpenTK.Platform.IMouseComponent.SupportsRawMouseMotion + implements: + - OpenTK.Platform.IMouseComponent.EnableRawMouseMotion(OpenTK.Platform.WindowHandle,System.Boolean) + nameWithType.vb: SDLMouseComponent.EnableRawMouseMotion(WindowHandle, Boolean) + fullName.vb: OpenTK.Platform.Native.SDL.SDLMouseComponent.EnableRawMouseMotion(OpenTK.Platform.WindowHandle, Boolean) + name.vb: EnableRawMouseMotion(WindowHandle, Boolean) references: - uid: OpenTK.Platform.Native.SDL commentId: N:OpenTK.Platform.Native.SDL @@ -422,20 +516,20 @@ references: nameWithType.vb: Object fullName.vb: Object name.vb: Object -- uid: OpenTK.Core.Platform.IMouseComponent - commentId: T:OpenTK.Core.Platform.IMouseComponent - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.IMouseComponent.html +- uid: OpenTK.Platform.IMouseComponent + commentId: T:OpenTK.Platform.IMouseComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IMouseComponent.html name: IMouseComponent nameWithType: IMouseComponent - fullName: OpenTK.Core.Platform.IMouseComponent -- uid: OpenTK.Core.Platform.IPalComponent - commentId: T:OpenTK.Core.Platform.IPalComponent - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.IPalComponent.html + fullName: OpenTK.Platform.IMouseComponent +- uid: OpenTK.Platform.IPalComponent + commentId: T:OpenTK.Platform.IPalComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IPalComponent.html name: IPalComponent nameWithType: IPalComponent - fullName: OpenTK.Core.Platform.IPalComponent + fullName: OpenTK.Platform.IPalComponent - uid: System.Object.Equals(System.Object) commentId: M:System.Object.Equals(System.Object) parent: System.Object @@ -662,49 +756,41 @@ references: name: System nameWithType: System fullName: System -- uid: OpenTK.Core.Platform - commentId: N:OpenTK.Core.Platform +- uid: OpenTK.Platform + commentId: N:OpenTK.Platform href: OpenTK.html - name: OpenTK.Core.Platform - nameWithType: OpenTK.Core.Platform - fullName: OpenTK.Core.Platform + name: OpenTK.Platform + nameWithType: OpenTK.Platform + fullName: OpenTK.Platform spec.csharp: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html spec.vb: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html - uid: OpenTK.Platform.Native.SDL.SDLMouseComponent.Name* commentId: Overload:OpenTK.Platform.Native.SDL.SDLMouseComponent.Name href: OpenTK.Platform.Native.SDL.SDLMouseComponent.html#OpenTK_Platform_Native_SDL_SDLMouseComponent_Name name: Name nameWithType: SDLMouseComponent.Name fullName: OpenTK.Platform.Native.SDL.SDLMouseComponent.Name -- uid: OpenTK.Core.Platform.IPalComponent.Name - commentId: P:OpenTK.Core.Platform.IPalComponent.Name - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Name +- uid: OpenTK.Platform.IPalComponent.Name + commentId: P:OpenTK.Platform.IPalComponent.Name + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Name name: Name nameWithType: IPalComponent.Name - fullName: OpenTK.Core.Platform.IPalComponent.Name + fullName: OpenTK.Platform.IPalComponent.Name - uid: System.String commentId: T:System.String parent: System @@ -722,33 +808,33 @@ references: name: Provides nameWithType: SDLMouseComponent.Provides fullName: OpenTK.Platform.Native.SDL.SDLMouseComponent.Provides -- uid: OpenTK.Core.Platform.IPalComponent.Provides - commentId: P:OpenTK.Core.Platform.IPalComponent.Provides - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Provides +- uid: OpenTK.Platform.IPalComponent.Provides + commentId: P:OpenTK.Platform.IPalComponent.Provides + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Provides name: Provides nameWithType: IPalComponent.Provides - fullName: OpenTK.Core.Platform.IPalComponent.Provides -- uid: OpenTK.Core.Platform.PalComponents - commentId: T:OpenTK.Core.Platform.PalComponents - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.PalComponents.html + fullName: OpenTK.Platform.IPalComponent.Provides +- uid: OpenTK.Platform.PalComponents + commentId: T:OpenTK.Platform.PalComponents + parent: OpenTK.Platform + href: OpenTK.Platform.PalComponents.html name: PalComponents nameWithType: PalComponents - fullName: OpenTK.Core.Platform.PalComponents + fullName: OpenTK.Platform.PalComponents - uid: OpenTK.Platform.Native.SDL.SDLMouseComponent.Logger* commentId: Overload:OpenTK.Platform.Native.SDL.SDLMouseComponent.Logger href: OpenTK.Platform.Native.SDL.SDLMouseComponent.html#OpenTK_Platform_Native_SDL_SDLMouseComponent_Logger name: Logger nameWithType: SDLMouseComponent.Logger fullName: OpenTK.Platform.Native.SDL.SDLMouseComponent.Logger -- uid: OpenTK.Core.Platform.IPalComponent.Logger - commentId: P:OpenTK.Core.Platform.IPalComponent.Logger - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Logger +- uid: OpenTK.Platform.IPalComponent.Logger + commentId: P:OpenTK.Platform.IPalComponent.Logger + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Logger name: Logger nameWithType: IPalComponent.Logger - fullName: OpenTK.Core.Platform.IPalComponent.Logger + fullName: OpenTK.Platform.IPalComponent.Logger - uid: OpenTK.Core.Utility.ILogger commentId: T:OpenTK.Core.Utility.ILogger parent: OpenTK.Core.Utility @@ -788,55 +874,98 @@ references: href: OpenTK.Core.Utility.html - uid: OpenTK.Platform.Native.SDL.SDLMouseComponent.Initialize* commentId: Overload:OpenTK.Platform.Native.SDL.SDLMouseComponent.Initialize - href: OpenTK.Platform.Native.SDL.SDLMouseComponent.html#OpenTK_Platform_Native_SDL_SDLMouseComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + href: OpenTK.Platform.Native.SDL.SDLMouseComponent.html#OpenTK_Platform_Native_SDL_SDLMouseComponent_Initialize_OpenTK_Platform_ToolkitOptions_ name: Initialize nameWithType: SDLMouseComponent.Initialize fullName: OpenTK.Platform.Native.SDL.SDLMouseComponent.Initialize -- uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - commentId: M:OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ +- uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ name: Initialize(ToolkitOptions) nameWithType: IPalComponent.Initialize(ToolkitOptions) - fullName: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + fullName: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) spec.csharp: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + - uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.ToolkitOptions + - uid: OpenTK.Platform.ToolkitOptions name: ToolkitOptions - href: OpenTK.Core.Platform.ToolkitOptions.html + href: OpenTK.Platform.ToolkitOptions.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + - uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.ToolkitOptions + - uid: OpenTK.Platform.ToolkitOptions name: ToolkitOptions - href: OpenTK.Core.Platform.ToolkitOptions.html + href: OpenTK.Platform.ToolkitOptions.html - name: ) -- uid: OpenTK.Core.Platform.ToolkitOptions - commentId: T:OpenTK.Core.Platform.ToolkitOptions - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.ToolkitOptions.html +- uid: OpenTK.Platform.ToolkitOptions + commentId: T:OpenTK.Platform.ToolkitOptions + parent: OpenTK.Platform + href: OpenTK.Platform.ToolkitOptions.html name: ToolkitOptions nameWithType: ToolkitOptions - fullName: OpenTK.Core.Platform.ToolkitOptions + fullName: OpenTK.Platform.ToolkitOptions +- uid: OpenTK.Platform.IMouseComponent.SetPosition(System.Int32,System.Int32) + commentId: M:OpenTK.Platform.IMouseComponent.SetPosition(System.Int32,System.Int32) + parent: OpenTK.Platform.IMouseComponent + isExternal: true + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_SetPosition_System_Int32_System_Int32_ + name: SetPosition(int, int) + nameWithType: IMouseComponent.SetPosition(int, int) + fullName: OpenTK.Platform.IMouseComponent.SetPosition(int, int) + nameWithType.vb: IMouseComponent.SetPosition(Integer, Integer) + fullName.vb: OpenTK.Platform.IMouseComponent.SetPosition(Integer, Integer) + name.vb: SetPosition(Integer, Integer) + spec.csharp: + - uid: OpenTK.Platform.IMouseComponent.SetPosition(System.Int32,System.Int32) + name: SetPosition + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_SetPosition_System_Int32_System_Int32_ + - name: ( + - uid: System.Int32 + name: int + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ',' + - name: " " + - uid: System.Int32 + name: int + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ) + spec.vb: + - uid: OpenTK.Platform.IMouseComponent.SetPosition(System.Int32,System.Int32) + name: SetPosition + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_SetPosition_System_Int32_System_Int32_ + - name: ( + - uid: System.Int32 + name: Integer + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ',' + - name: " " + - uid: System.Int32 + name: Integer + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ) - uid: OpenTK.Platform.Native.SDL.SDLMouseComponent.CanSetMousePosition* commentId: Overload:OpenTK.Platform.Native.SDL.SDLMouseComponent.CanSetMousePosition href: OpenTK.Platform.Native.SDL.SDLMouseComponent.html#OpenTK_Platform_Native_SDL_SDLMouseComponent_CanSetMousePosition name: CanSetMousePosition nameWithType: SDLMouseComponent.CanSetMousePosition fullName: OpenTK.Platform.Native.SDL.SDLMouseComponent.CanSetMousePosition -- uid: OpenTK.Core.Platform.IMouseComponent.CanSetMousePosition - commentId: P:OpenTK.Core.Platform.IMouseComponent.CanSetMousePosition - parent: OpenTK.Core.Platform.IMouseComponent - href: OpenTK.Core.Platform.IMouseComponent.html#OpenTK_Core_Platform_IMouseComponent_CanSetMousePosition +- uid: OpenTK.Platform.IMouseComponent.CanSetMousePosition + commentId: P:OpenTK.Platform.IMouseComponent.CanSetMousePosition + parent: OpenTK.Platform.IMouseComponent + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_CanSetMousePosition name: CanSetMousePosition nameWithType: IMouseComponent.CanSetMousePosition - fullName: OpenTK.Core.Platform.IMouseComponent.CanSetMousePosition + fullName: OpenTK.Platform.IMouseComponent.CanSetMousePosition - uid: System.Boolean commentId: T:System.Boolean parent: System @@ -848,27 +977,106 @@ references: nameWithType.vb: Boolean fullName.vb: Boolean name.vb: Boolean +- uid: OpenTK.Platform.IMouseComponent.IsRawMouseMotionEnabled(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IMouseComponent.IsRawMouseMotionEnabled(OpenTK.Platform.WindowHandle) + parent: OpenTK.Platform.IMouseComponent + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_IsRawMouseMotionEnabled_OpenTK_Platform_WindowHandle_ + name: IsRawMouseMotionEnabled(WindowHandle) + nameWithType: IMouseComponent.IsRawMouseMotionEnabled(WindowHandle) + fullName: OpenTK.Platform.IMouseComponent.IsRawMouseMotionEnabled(OpenTK.Platform.WindowHandle) + spec.csharp: + - uid: OpenTK.Platform.IMouseComponent.IsRawMouseMotionEnabled(OpenTK.Platform.WindowHandle) + name: IsRawMouseMotionEnabled + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_IsRawMouseMotionEnabled_OpenTK_Platform_WindowHandle_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IMouseComponent.IsRawMouseMotionEnabled(OpenTK.Platform.WindowHandle) + name: IsRawMouseMotionEnabled + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_IsRawMouseMotionEnabled_OpenTK_Platform_WindowHandle_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ) +- uid: OpenTK.Platform.IMouseComponent.EnableRawMouseMotion(OpenTK.Platform.WindowHandle,System.Boolean) + commentId: M:OpenTK.Platform.IMouseComponent.EnableRawMouseMotion(OpenTK.Platform.WindowHandle,System.Boolean) + parent: OpenTK.Platform.IMouseComponent + isExternal: true + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_EnableRawMouseMotion_OpenTK_Platform_WindowHandle_System_Boolean_ + name: EnableRawMouseMotion(WindowHandle, bool) + nameWithType: IMouseComponent.EnableRawMouseMotion(WindowHandle, bool) + fullName: OpenTK.Platform.IMouseComponent.EnableRawMouseMotion(OpenTK.Platform.WindowHandle, bool) + nameWithType.vb: IMouseComponent.EnableRawMouseMotion(WindowHandle, Boolean) + fullName.vb: OpenTK.Platform.IMouseComponent.EnableRawMouseMotion(OpenTK.Platform.WindowHandle, Boolean) + name.vb: EnableRawMouseMotion(WindowHandle, Boolean) + spec.csharp: + - uid: OpenTK.Platform.IMouseComponent.EnableRawMouseMotion(OpenTK.Platform.WindowHandle,System.Boolean) + name: EnableRawMouseMotion + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_EnableRawMouseMotion_OpenTK_Platform_WindowHandle_System_Boolean_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: System.Boolean + name: bool + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: ) + spec.vb: + - uid: OpenTK.Platform.IMouseComponent.EnableRawMouseMotion(OpenTK.Platform.WindowHandle,System.Boolean) + name: EnableRawMouseMotion + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_EnableRawMouseMotion_OpenTK_Platform_WindowHandle_System_Boolean_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: System.Boolean + name: Boolean + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: ) +- uid: OpenTK.Platform.Native.SDL.SDLMouseComponent.SupportsRawMouseMotion* + commentId: Overload:OpenTK.Platform.Native.SDL.SDLMouseComponent.SupportsRawMouseMotion + href: OpenTK.Platform.Native.SDL.SDLMouseComponent.html#OpenTK_Platform_Native_SDL_SDLMouseComponent_SupportsRawMouseMotion + name: SupportsRawMouseMotion + nameWithType: SDLMouseComponent.SupportsRawMouseMotion + fullName: OpenTK.Platform.Native.SDL.SDLMouseComponent.SupportsRawMouseMotion +- uid: OpenTK.Platform.IMouseComponent.SupportsRawMouseMotion + commentId: P:OpenTK.Platform.IMouseComponent.SupportsRawMouseMotion + parent: OpenTK.Platform.IMouseComponent + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_SupportsRawMouseMotion + name: SupportsRawMouseMotion + nameWithType: IMouseComponent.SupportsRawMouseMotion + fullName: OpenTK.Platform.IMouseComponent.SupportsRawMouseMotion - uid: OpenTK.Platform.Native.SDL.SDLMouseComponent.GetPosition* commentId: Overload:OpenTK.Platform.Native.SDL.SDLMouseComponent.GetPosition href: OpenTK.Platform.Native.SDL.SDLMouseComponent.html#OpenTK_Platform_Native_SDL_SDLMouseComponent_GetPosition_System_Int32__System_Int32__ name: GetPosition nameWithType: SDLMouseComponent.GetPosition fullName: OpenTK.Platform.Native.SDL.SDLMouseComponent.GetPosition -- uid: OpenTK.Core.Platform.IMouseComponent.GetPosition(System.Int32@,System.Int32@) - commentId: M:OpenTK.Core.Platform.IMouseComponent.GetPosition(System.Int32@,System.Int32@) - parent: OpenTK.Core.Platform.IMouseComponent +- uid: OpenTK.Platform.IMouseComponent.GetPosition(System.Int32@,System.Int32@) + commentId: M:OpenTK.Platform.IMouseComponent.GetPosition(System.Int32@,System.Int32@) + parent: OpenTK.Platform.IMouseComponent isExternal: true - href: OpenTK.Core.Platform.IMouseComponent.html#OpenTK_Core_Platform_IMouseComponent_GetPosition_System_Int32__System_Int32__ + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_GetPosition_System_Int32__System_Int32__ name: GetPosition(out int, out int) nameWithType: IMouseComponent.GetPosition(out int, out int) - fullName: OpenTK.Core.Platform.IMouseComponent.GetPosition(out int, out int) + fullName: OpenTK.Platform.IMouseComponent.GetPosition(out int, out int) nameWithType.vb: IMouseComponent.GetPosition(Integer, Integer) - fullName.vb: OpenTK.Core.Platform.IMouseComponent.GetPosition(Integer, Integer) + fullName.vb: OpenTK.Platform.IMouseComponent.GetPosition(Integer, Integer) name.vb: GetPosition(Integer, Integer) spec.csharp: - - uid: OpenTK.Core.Platform.IMouseComponent.GetPosition(System.Int32@,System.Int32@) + - uid: OpenTK.Platform.IMouseComponent.GetPosition(System.Int32@,System.Int32@) name: GetPosition - href: OpenTK.Core.Platform.IMouseComponent.html#OpenTK_Core_Platform_IMouseComponent_GetPosition_System_Int32__System_Int32__ + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_GetPosition_System_Int32__System_Int32__ - name: ( - name: out - name: " " @@ -886,9 +1094,9 @@ references: href: https://learn.microsoft.com/dotnet/api/system.int32 - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IMouseComponent.GetPosition(System.Int32@,System.Int32@) + - uid: OpenTK.Platform.IMouseComponent.GetPosition(System.Int32@,System.Int32@) name: GetPosition - href: OpenTK.Core.Platform.IMouseComponent.html#OpenTK_Core_Platform_IMouseComponent_GetPosition_System_Int32__System_Int32__ + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_GetPosition_System_Int32__System_Int32__ - name: ( - uid: System.Int32 name: Integer @@ -918,102 +1126,83 @@ references: name: SetPosition nameWithType: SDLMouseComponent.SetPosition fullName: OpenTK.Platform.Native.SDL.SDLMouseComponent.SetPosition -- uid: OpenTK.Core.Platform.IMouseComponent.SetPosition(System.Int32,System.Int32) - commentId: M:OpenTK.Core.Platform.IMouseComponent.SetPosition(System.Int32,System.Int32) - parent: OpenTK.Core.Platform.IMouseComponent - isExternal: true - href: OpenTK.Core.Platform.IMouseComponent.html#OpenTK_Core_Platform_IMouseComponent_SetPosition_System_Int32_System_Int32_ - name: SetPosition(int, int) - nameWithType: IMouseComponent.SetPosition(int, int) - fullName: OpenTK.Core.Platform.IMouseComponent.SetPosition(int, int) - nameWithType.vb: IMouseComponent.SetPosition(Integer, Integer) - fullName.vb: OpenTK.Core.Platform.IMouseComponent.SetPosition(Integer, Integer) - name.vb: SetPosition(Integer, Integer) - spec.csharp: - - uid: OpenTK.Core.Platform.IMouseComponent.SetPosition(System.Int32,System.Int32) - name: SetPosition - href: OpenTK.Core.Platform.IMouseComponent.html#OpenTK_Core_Platform_IMouseComponent_SetPosition_System_Int32_System_Int32_ - - name: ( - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) - spec.vb: - - uid: OpenTK.Core.Platform.IMouseComponent.SetPosition(System.Int32,System.Int32) - name: SetPosition - href: OpenTK.Core.Platform.IMouseComponent.html#OpenTK_Core_Platform_IMouseComponent_SetPosition_System_Int32_System_Int32_ - - name: ( - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) - uid: OpenTK.Platform.Native.SDL.SDLMouseComponent.SetPositionInWindow* commentId: Overload:OpenTK.Platform.Native.SDL.SDLMouseComponent.SetPositionInWindow - href: OpenTK.Platform.Native.SDL.SDLMouseComponent.html#OpenTK_Platform_Native_SDL_SDLMouseComponent_SetPositionInWindow_OpenTK_Core_Platform_WindowHandle_System_Int32_System_Int32_ + href: OpenTK.Platform.Native.SDL.SDLMouseComponent.html#OpenTK_Platform_Native_SDL_SDLMouseComponent_SetPositionInWindow_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_ name: SetPositionInWindow nameWithType: SDLMouseComponent.SetPositionInWindow fullName: OpenTK.Platform.Native.SDL.SDLMouseComponent.SetPositionInWindow -- uid: OpenTK.Core.Platform.WindowHandle - commentId: T:OpenTK.Core.Platform.WindowHandle - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.WindowHandle.html +- uid: OpenTK.Platform.WindowHandle + commentId: T:OpenTK.Platform.WindowHandle + parent: OpenTK.Platform + href: OpenTK.Platform.WindowHandle.html name: WindowHandle nameWithType: WindowHandle - fullName: OpenTK.Core.Platform.WindowHandle + fullName: OpenTK.Platform.WindowHandle - uid: OpenTK.Platform.Native.SDL.SDLMouseComponent.GetMouseState* commentId: Overload:OpenTK.Platform.Native.SDL.SDLMouseComponent.GetMouseState - href: OpenTK.Platform.Native.SDL.SDLMouseComponent.html#OpenTK_Platform_Native_SDL_SDLMouseComponent_GetMouseState_OpenTK_Core_Platform_MouseState__ + href: OpenTK.Platform.Native.SDL.SDLMouseComponent.html#OpenTK_Platform_Native_SDL_SDLMouseComponent_GetMouseState_OpenTK_Platform_MouseState__ name: GetMouseState nameWithType: SDLMouseComponent.GetMouseState fullName: OpenTK.Platform.Native.SDL.SDLMouseComponent.GetMouseState -- uid: OpenTK.Core.Platform.IMouseComponent.GetMouseState(OpenTK.Core.Platform.MouseState@) - commentId: M:OpenTK.Core.Platform.IMouseComponent.GetMouseState(OpenTK.Core.Platform.MouseState@) - parent: OpenTK.Core.Platform.IMouseComponent - href: OpenTK.Core.Platform.IMouseComponent.html#OpenTK_Core_Platform_IMouseComponent_GetMouseState_OpenTK_Core_Platform_MouseState__ +- uid: OpenTK.Platform.IMouseComponent.GetMouseState(OpenTK.Platform.MouseState@) + commentId: M:OpenTK.Platform.IMouseComponent.GetMouseState(OpenTK.Platform.MouseState@) + parent: OpenTK.Platform.IMouseComponent + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_GetMouseState_OpenTK_Platform_MouseState__ name: GetMouseState(out MouseState) nameWithType: IMouseComponent.GetMouseState(out MouseState) - fullName: OpenTK.Core.Platform.IMouseComponent.GetMouseState(out OpenTK.Core.Platform.MouseState) + fullName: OpenTK.Platform.IMouseComponent.GetMouseState(out OpenTK.Platform.MouseState) nameWithType.vb: IMouseComponent.GetMouseState(MouseState) - fullName.vb: OpenTK.Core.Platform.IMouseComponent.GetMouseState(OpenTK.Core.Platform.MouseState) + fullName.vb: OpenTK.Platform.IMouseComponent.GetMouseState(OpenTK.Platform.MouseState) name.vb: GetMouseState(MouseState) spec.csharp: - - uid: OpenTK.Core.Platform.IMouseComponent.GetMouseState(OpenTK.Core.Platform.MouseState@) + - uid: OpenTK.Platform.IMouseComponent.GetMouseState(OpenTK.Platform.MouseState@) name: GetMouseState - href: OpenTK.Core.Platform.IMouseComponent.html#OpenTK_Core_Platform_IMouseComponent_GetMouseState_OpenTK_Core_Platform_MouseState__ + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_GetMouseState_OpenTK_Platform_MouseState__ - name: ( - name: out - name: " " - - uid: OpenTK.Core.Platform.MouseState + - uid: OpenTK.Platform.MouseState name: MouseState - href: OpenTK.Core.Platform.MouseState.html + href: OpenTK.Platform.MouseState.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IMouseComponent.GetMouseState(OpenTK.Core.Platform.MouseState@) + - uid: OpenTK.Platform.IMouseComponent.GetMouseState(OpenTK.Platform.MouseState@) name: GetMouseState - href: OpenTK.Core.Platform.IMouseComponent.html#OpenTK_Core_Platform_IMouseComponent_GetMouseState_OpenTK_Core_Platform_MouseState__ + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_GetMouseState_OpenTK_Platform_MouseState__ - name: ( - - uid: OpenTK.Core.Platform.MouseState + - uid: OpenTK.Platform.MouseState name: MouseState - href: OpenTK.Core.Platform.MouseState.html + href: OpenTK.Platform.MouseState.html - name: ) -- uid: OpenTK.Core.Platform.MouseState - commentId: T:OpenTK.Core.Platform.MouseState - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.MouseState.html +- uid: OpenTK.Platform.MouseState + commentId: T:OpenTK.Platform.MouseState + parent: OpenTK.Platform + href: OpenTK.Platform.MouseState.html name: MouseState nameWithType: MouseState - fullName: OpenTK.Core.Platform.MouseState + fullName: OpenTK.Platform.MouseState +- uid: OpenTK.Platform.Native.SDL.SDLMouseComponent.IsRawMouseMotionEnabled* + commentId: Overload:OpenTK.Platform.Native.SDL.SDLMouseComponent.IsRawMouseMotionEnabled + href: OpenTK.Platform.Native.SDL.SDLMouseComponent.html#OpenTK_Platform_Native_SDL_SDLMouseComponent_IsRawMouseMotionEnabled_OpenTK_Platform_WindowHandle_ + name: IsRawMouseMotionEnabled + nameWithType: SDLMouseComponent.IsRawMouseMotionEnabled + fullName: OpenTK.Platform.Native.SDL.SDLMouseComponent.IsRawMouseMotionEnabled +- uid: OpenTK.Platform.RawMouseMoveEventArgs + commentId: T:OpenTK.Platform.RawMouseMoveEventArgs + href: OpenTK.Platform.RawMouseMoveEventArgs.html + name: RawMouseMoveEventArgs + nameWithType: RawMouseMoveEventArgs + fullName: OpenTK.Platform.RawMouseMoveEventArgs +- uid: OpenTK.Platform.MouseMoveEventArgs + commentId: T:OpenTK.Platform.MouseMoveEventArgs + href: OpenTK.Platform.MouseMoveEventArgs.html + name: MouseMoveEventArgs + nameWithType: MouseMoveEventArgs + fullName: OpenTK.Platform.MouseMoveEventArgs +- uid: OpenTK.Platform.Native.SDL.SDLMouseComponent.EnableRawMouseMotion* + commentId: Overload:OpenTK.Platform.Native.SDL.SDLMouseComponent.EnableRawMouseMotion + href: OpenTK.Platform.Native.SDL.SDLMouseComponent.html#OpenTK_Platform_Native_SDL_SDLMouseComponent_EnableRawMouseMotion_OpenTK_Platform_WindowHandle_System_Boolean_ + name: EnableRawMouseMotion + nameWithType: SDLMouseComponent.EnableRawMouseMotion + fullName: OpenTK.Platform.Native.SDL.SDLMouseComponent.EnableRawMouseMotion diff --git a/api/OpenTK.Platform.Native.SDL.SDLOpenGLComponent.yml b/api/OpenTK.Platform.Native.SDL.SDLOpenGLComponent.yml index 6cb1d381..0572d0ae 100644 --- a/api/OpenTK.Platform.Native.SDL.SDLOpenGLComponent.yml +++ b/api/OpenTK.Platform.Native.SDL.SDLOpenGLComponent.yml @@ -9,20 +9,20 @@ items: - OpenTK.Platform.Native.SDL.SDLOpenGLComponent.CanCreateFromWindow - OpenTK.Platform.Native.SDL.SDLOpenGLComponent.CanShareContexts - OpenTK.Platform.Native.SDL.SDLOpenGLComponent.CreateFromSurface - - OpenTK.Platform.Native.SDL.SDLOpenGLComponent.CreateFromWindow(OpenTK.Core.Platform.WindowHandle) - - OpenTK.Platform.Native.SDL.SDLOpenGLComponent.DestroyContext(OpenTK.Core.Platform.OpenGLContextHandle) - - OpenTK.Platform.Native.SDL.SDLOpenGLComponent.GetBindingsContext(OpenTK.Core.Platform.OpenGLContextHandle) + - OpenTK.Platform.Native.SDL.SDLOpenGLComponent.CreateFromWindow(OpenTK.Platform.WindowHandle) + - OpenTK.Platform.Native.SDL.SDLOpenGLComponent.DestroyContext(OpenTK.Platform.OpenGLContextHandle) + - OpenTK.Platform.Native.SDL.SDLOpenGLComponent.GetBindingsContext(OpenTK.Platform.OpenGLContextHandle) - OpenTK.Platform.Native.SDL.SDLOpenGLComponent.GetCurrentContext - - OpenTK.Platform.Native.SDL.SDLOpenGLComponent.GetProcedureAddress(OpenTK.Core.Platform.OpenGLContextHandle,System.String) - - OpenTK.Platform.Native.SDL.SDLOpenGLComponent.GetSharedContext(OpenTK.Core.Platform.OpenGLContextHandle) + - OpenTK.Platform.Native.SDL.SDLOpenGLComponent.GetProcedureAddress(OpenTK.Platform.OpenGLContextHandle,System.String) + - OpenTK.Platform.Native.SDL.SDLOpenGLComponent.GetSharedContext(OpenTK.Platform.OpenGLContextHandle) - OpenTK.Platform.Native.SDL.SDLOpenGLComponent.GetSwapInterval - - OpenTK.Platform.Native.SDL.SDLOpenGLComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + - OpenTK.Platform.Native.SDL.SDLOpenGLComponent.Initialize(OpenTK.Platform.ToolkitOptions) - OpenTK.Platform.Native.SDL.SDLOpenGLComponent.Logger - OpenTK.Platform.Native.SDL.SDLOpenGLComponent.Name - OpenTK.Platform.Native.SDL.SDLOpenGLComponent.Provides - - OpenTK.Platform.Native.SDL.SDLOpenGLComponent.SetCurrentContext(OpenTK.Core.Platform.OpenGLContextHandle) + - OpenTK.Platform.Native.SDL.SDLOpenGLComponent.SetCurrentContext(OpenTK.Platform.OpenGLContextHandle) - OpenTK.Platform.Native.SDL.SDLOpenGLComponent.SetSwapInterval(System.Int32) - - OpenTK.Platform.Native.SDL.SDLOpenGLComponent.SwapBuffers(OpenTK.Core.Platform.OpenGLContextHandle) + - OpenTK.Platform.Native.SDL.SDLOpenGLComponent.SwapBuffers(OpenTK.Platform.OpenGLContextHandle) langs: - csharp - vb @@ -31,15 +31,11 @@ items: fullName: OpenTK.Platform.Native.SDL.SDLOpenGLComponent type: Class source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLOpenGLComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SDLOpenGLComponent - path: opentk/src/OpenTK.Platform.Native/SDL/SDLOpenGLComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLOpenGLComponent.cs startLine: 11 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL syntax: content: 'public class SDLOpenGLComponent : IOpenGLComponent, IPalComponent' @@ -47,8 +43,8 @@ items: inheritance: - System.Object implements: - - OpenTK.Core.Platform.IOpenGLComponent - - OpenTK.Core.Platform.IPalComponent + - OpenTK.Platform.IOpenGLComponent + - OpenTK.Platform.IPalComponent inheritedMembers: - System.Object.Equals(System.Object) - System.Object.Equals(System.Object,System.Object) @@ -69,15 +65,11 @@ items: fullName: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.Name type: Property source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLOpenGLComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Name - path: opentk/src/OpenTK.Platform.Native/SDL/SDLOpenGLComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLOpenGLComponent.cs startLine: 16 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: Name of the abstraction layer component. example: [] @@ -89,7 +81,7 @@ items: content.vb: Public ReadOnly Property Name As String overload: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.Name* implements: - - OpenTK.Core.Platform.IPalComponent.Name + - OpenTK.Platform.IPalComponent.Name - uid: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.Provides commentId: P:OpenTK.Platform.Native.SDL.SDLOpenGLComponent.Provides id: Provides @@ -102,15 +94,11 @@ items: fullName: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.Provides type: Property source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLOpenGLComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Provides - path: opentk/src/OpenTK.Platform.Native/SDL/SDLOpenGLComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLOpenGLComponent.cs startLine: 19 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: Specifies which PAL components this object provides. example: [] @@ -118,11 +106,11 @@ items: content: public PalComponents Provides { get; } parameters: [] return: - type: OpenTK.Core.Platform.PalComponents + type: OpenTK.Platform.PalComponents content.vb: Public ReadOnly Property Provides As PalComponents overload: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.Provides* implements: - - OpenTK.Core.Platform.IPalComponent.Provides + - OpenTK.Platform.IPalComponent.Provides - uid: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.Logger commentId: P:OpenTK.Platform.Native.SDL.SDLOpenGLComponent.Logger id: Logger @@ -135,15 +123,11 @@ items: fullName: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.Logger type: Property source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLOpenGLComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Logger - path: opentk/src/OpenTK.Platform.Native/SDL/SDLOpenGLComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLOpenGLComponent.cs startLine: 22 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: Provides a logger for this component. example: [] @@ -155,28 +139,24 @@ items: content.vb: Public Property Logger As ILogger overload: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.Logger* implements: - - OpenTK.Core.Platform.IPalComponent.Logger -- uid: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - commentId: M:OpenTK.Platform.Native.SDL.SDLOpenGLComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - id: Initialize(OpenTK.Core.Platform.ToolkitOptions) + - OpenTK.Platform.IPalComponent.Logger +- uid: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.Initialize(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Native.SDL.SDLOpenGLComponent.Initialize(OpenTK.Platform.ToolkitOptions) + id: Initialize(OpenTK.Platform.ToolkitOptions) parent: OpenTK.Platform.Native.SDL.SDLOpenGLComponent langs: - csharp - vb name: Initialize(ToolkitOptions) nameWithType: SDLOpenGLComponent.Initialize(ToolkitOptions) - fullName: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + fullName: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.Initialize(OpenTK.Platform.ToolkitOptions) type: Method source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLOpenGLComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Initialize - path: opentk/src/OpenTK.Platform.Native/SDL/SDLOpenGLComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLOpenGLComponent.cs startLine: 25 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: Initialize the component. example: [] @@ -184,12 +164,12 @@ items: content: public void Initialize(ToolkitOptions options) parameters: - id: options - type: OpenTK.Core.Platform.ToolkitOptions + type: OpenTK.Platform.ToolkitOptions description: The options to initialize the component with. content.vb: Public Sub Initialize(options As ToolkitOptions) overload: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.Initialize* implements: - - OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + - OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) - uid: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.CanShareContexts commentId: P:OpenTK.Platform.Native.SDL.SDLOpenGLComponent.CanShareContexts id: CanShareContexts @@ -202,15 +182,11 @@ items: fullName: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.CanShareContexts type: Property source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLOpenGLComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CanShareContexts - path: opentk/src/OpenTK.Platform.Native/SDL/SDLOpenGLComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLOpenGLComponent.cs startLine: 36 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: True if the component driver has the capability to share display lists between OpenGL contexts. example: [] @@ -222,7 +198,7 @@ items: content.vb: Public ReadOnly Property CanShareContexts As Boolean overload: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.CanShareContexts* implements: - - OpenTK.Core.Platform.IOpenGLComponent.CanShareContexts + - OpenTK.Platform.IOpenGLComponent.CanShareContexts - uid: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.CanCreateFromWindow commentId: P:OpenTK.Platform.Native.SDL.SDLOpenGLComponent.CanCreateFromWindow id: CanCreateFromWindow @@ -235,17 +211,13 @@ items: fullName: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.CanCreateFromWindow type: Property source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLOpenGLComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CanCreateFromWindow - path: opentk/src/OpenTK.Platform.Native/SDL/SDLOpenGLComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLOpenGLComponent.cs startLine: 39 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL - summary: True if the component driver can create a context from windows. + summary: True if the component driver can create a context from windows using . example: [] syntax: content: public bool CanCreateFromWindow { get; } @@ -254,8 +226,11 @@ items: type: System.Boolean content.vb: Public ReadOnly Property CanCreateFromWindow As Boolean overload: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.CanCreateFromWindow* + seealso: + - linkId: OpenTK.Platform.IOpenGLComponent.CreateFromWindow(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IOpenGLComponent.CreateFromWindow(OpenTK.Platform.WindowHandle) implements: - - OpenTK.Core.Platform.IOpenGLComponent.CanCreateFromWindow + - OpenTK.Platform.IOpenGLComponent.CanCreateFromWindow - uid: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.CanCreateFromSurface commentId: P:OpenTK.Platform.Native.SDL.SDLOpenGLComponent.CanCreateFromSurface id: CanCreateFromSurface @@ -268,17 +243,13 @@ items: fullName: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.CanCreateFromSurface type: Property source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLOpenGLComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CanCreateFromSurface - path: opentk/src/OpenTK.Platform.Native/SDL/SDLOpenGLComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLOpenGLComponent.cs startLine: 42 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL - summary: True if the component driver can create a context from surfaces. + summary: True if the component driver can create a context from surfaces using . example: [] syntax: content: public bool CanCreateFromSurface { get; } @@ -288,7 +259,7 @@ items: content.vb: Public ReadOnly Property CanCreateFromSurface As Boolean overload: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.CanCreateFromSurface* implements: - - OpenTK.Core.Platform.IOpenGLComponent.CanCreateFromSurface + - OpenTK.Platform.IOpenGLComponent.CanCreateFromSurface - uid: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.CreateFromSurface commentId: M:OpenTK.Platform.Native.SDL.SDLOpenGLComponent.CreateFromSurface id: CreateFromSurface @@ -301,48 +272,40 @@ items: fullName: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.CreateFromSurface() type: Method source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLOpenGLComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateFromSurface - path: opentk/src/OpenTK.Platform.Native/SDL/SDLOpenGLComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLOpenGLComponent.cs startLine: 45 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: Create and OpenGL context for a surface. example: [] syntax: content: public OpenGLContextHandle CreateFromSurface() return: - type: OpenTK.Core.Platform.OpenGLContextHandle + type: OpenTK.Platform.OpenGLContextHandle description: An OpenGL context handle. content.vb: Public Function CreateFromSurface() As OpenGLContextHandle overload: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.CreateFromSurface* implements: - - OpenTK.Core.Platform.IOpenGLComponent.CreateFromSurface -- uid: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.CreateFromWindow(OpenTK.Core.Platform.WindowHandle) - commentId: M:OpenTK.Platform.Native.SDL.SDLOpenGLComponent.CreateFromWindow(OpenTK.Core.Platform.WindowHandle) - id: CreateFromWindow(OpenTK.Core.Platform.WindowHandle) + - OpenTK.Platform.IOpenGLComponent.CreateFromSurface +- uid: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.CreateFromWindow(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.Native.SDL.SDLOpenGLComponent.CreateFromWindow(OpenTK.Platform.WindowHandle) + id: CreateFromWindow(OpenTK.Platform.WindowHandle) parent: OpenTK.Platform.Native.SDL.SDLOpenGLComponent langs: - csharp - vb name: CreateFromWindow(WindowHandle) nameWithType: SDLOpenGLComponent.CreateFromWindow(WindowHandle) - fullName: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.CreateFromWindow(OpenTK.Core.Platform.WindowHandle) + fullName: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.CreateFromWindow(OpenTK.Platform.WindowHandle) type: Method source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLOpenGLComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateFromWindow - path: opentk/src/OpenTK.Platform.Native/SDL/SDLOpenGLComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLOpenGLComponent.cs startLine: 51 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: Create an OpenGL context for a window. example: [] @@ -350,36 +313,32 @@ items: content: public OpenGLContextHandle CreateFromWindow(WindowHandle handle) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: The window for which the OpenGL context should be created. return: - type: OpenTK.Core.Platform.OpenGLContextHandle + type: OpenTK.Platform.OpenGLContextHandle description: An OpenGL context handle. content.vb: Public Function CreateFromWindow(handle As WindowHandle) As OpenGLContextHandle overload: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.CreateFromWindow* implements: - - OpenTK.Core.Platform.IOpenGLComponent.CreateFromWindow(OpenTK.Core.Platform.WindowHandle) -- uid: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.DestroyContext(OpenTK.Core.Platform.OpenGLContextHandle) - commentId: M:OpenTK.Platform.Native.SDL.SDLOpenGLComponent.DestroyContext(OpenTK.Core.Platform.OpenGLContextHandle) - id: DestroyContext(OpenTK.Core.Platform.OpenGLContextHandle) + - OpenTK.Platform.IOpenGLComponent.CreateFromWindow(OpenTK.Platform.WindowHandle) +- uid: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.DestroyContext(OpenTK.Platform.OpenGLContextHandle) + commentId: M:OpenTK.Platform.Native.SDL.SDLOpenGLComponent.DestroyContext(OpenTK.Platform.OpenGLContextHandle) + id: DestroyContext(OpenTK.Platform.OpenGLContextHandle) parent: OpenTK.Platform.Native.SDL.SDLOpenGLComponent langs: - csharp - vb name: DestroyContext(OpenGLContextHandle) nameWithType: SDLOpenGLComponent.DestroyContext(OpenGLContextHandle) - fullName: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.DestroyContext(OpenTK.Core.Platform.OpenGLContextHandle) + fullName: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.DestroyContext(OpenTK.Platform.OpenGLContextHandle) type: Method source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLOpenGLComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DestroyContext - path: opentk/src/OpenTK.Platform.Native/SDL/SDLOpenGLComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLOpenGLComponent.cs startLine: 88 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: Destroy an OpenGL context. example: [] @@ -387,7 +346,7 @@ items: content: public void DestroyContext(OpenGLContextHandle handle) parameters: - id: handle - type: OpenTK.Core.Platform.OpenGLContextHandle + type: OpenTK.Platform.OpenGLContextHandle description: Handle to the OpenGL context to destroy. content.vb: Public Sub DestroyContext(handle As OpenGLContextHandle) overload: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.DestroyContext* @@ -396,36 +355,32 @@ items: commentId: T:System.ArgumentNullException description: OpenGL context handle is null. implements: - - OpenTK.Core.Platform.IOpenGLComponent.DestroyContext(OpenTK.Core.Platform.OpenGLContextHandle) -- uid: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.GetBindingsContext(OpenTK.Core.Platform.OpenGLContextHandle) - commentId: M:OpenTK.Platform.Native.SDL.SDLOpenGLComponent.GetBindingsContext(OpenTK.Core.Platform.OpenGLContextHandle) - id: GetBindingsContext(OpenTK.Core.Platform.OpenGLContextHandle) + - OpenTK.Platform.IOpenGLComponent.DestroyContext(OpenTK.Platform.OpenGLContextHandle) +- uid: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.GetBindingsContext(OpenTK.Platform.OpenGLContextHandle) + commentId: M:OpenTK.Platform.Native.SDL.SDLOpenGLComponent.GetBindingsContext(OpenTK.Platform.OpenGLContextHandle) + id: GetBindingsContext(OpenTK.Platform.OpenGLContextHandle) parent: OpenTK.Platform.Native.SDL.SDLOpenGLComponent langs: - csharp - vb name: GetBindingsContext(OpenGLContextHandle) nameWithType: SDLOpenGLComponent.GetBindingsContext(OpenGLContextHandle) - fullName: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.GetBindingsContext(OpenTK.Core.Platform.OpenGLContextHandle) + fullName: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.GetBindingsContext(OpenTK.Platform.OpenGLContextHandle) type: Method source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLOpenGLComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetBindingsContext - path: opentk/src/OpenTK.Platform.Native/SDL/SDLOpenGLComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLOpenGLComponent.cs startLine: 98 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL - summary: Gets a from an . + summary: Gets a from an . example: [] syntax: content: public IBindingsContext GetBindingsContext(OpenGLContextHandle handle) parameters: - id: handle - type: OpenTK.Core.Platform.OpenGLContextHandle + type: OpenTK.Platform.OpenGLContextHandle description: The handle to get a bindings context for. return: type: OpenTK.IBindingsContext @@ -433,28 +388,24 @@ items: content.vb: Public Function GetBindingsContext(handle As OpenGLContextHandle) As IBindingsContext overload: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.GetBindingsContext* implements: - - OpenTK.Core.Platform.IOpenGLComponent.GetBindingsContext(OpenTK.Core.Platform.OpenGLContextHandle) -- uid: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.GetProcedureAddress(OpenTK.Core.Platform.OpenGLContextHandle,System.String) - commentId: M:OpenTK.Platform.Native.SDL.SDLOpenGLComponent.GetProcedureAddress(OpenTK.Core.Platform.OpenGLContextHandle,System.String) - id: GetProcedureAddress(OpenTK.Core.Platform.OpenGLContextHandle,System.String) + - OpenTK.Platform.IOpenGLComponent.GetBindingsContext(OpenTK.Platform.OpenGLContextHandle) +- uid: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.GetProcedureAddress(OpenTK.Platform.OpenGLContextHandle,System.String) + commentId: M:OpenTK.Platform.Native.SDL.SDLOpenGLComponent.GetProcedureAddress(OpenTK.Platform.OpenGLContextHandle,System.String) + id: GetProcedureAddress(OpenTK.Platform.OpenGLContextHandle,System.String) parent: OpenTK.Platform.Native.SDL.SDLOpenGLComponent langs: - csharp - vb name: GetProcedureAddress(OpenGLContextHandle, string) nameWithType: SDLOpenGLComponent.GetProcedureAddress(OpenGLContextHandle, string) - fullName: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.GetProcedureAddress(OpenTK.Core.Platform.OpenGLContextHandle, string) + fullName: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.GetProcedureAddress(OpenTK.Platform.OpenGLContextHandle, string) type: Method source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLOpenGLComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetProcedureAddress - path: opentk/src/OpenTK.Platform.Native/SDL/SDLOpenGLComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLOpenGLComponent.cs startLine: 104 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: Get the procedure address for an OpenGL command. example: [] @@ -462,7 +413,7 @@ items: content: public nint GetProcedureAddress(OpenGLContextHandle handle, string procedureName) parameters: - id: handle - type: OpenTK.Core.Platform.OpenGLContextHandle + type: OpenTK.Platform.OpenGLContextHandle description: Handle to an OpenGL context. - id: procedureName type: System.String @@ -477,9 +428,9 @@ items: commentId: T:System.ArgumentNullException description: OpenGL context handle or procedure name is null. implements: - - OpenTK.Core.Platform.IOpenGLComponent.GetProcedureAddress(OpenTK.Core.Platform.OpenGLContextHandle,System.String) + - OpenTK.Platform.IOpenGLComponent.GetProcedureAddress(OpenTK.Platform.OpenGLContextHandle,System.String) nameWithType.vb: SDLOpenGLComponent.GetProcedureAddress(OpenGLContextHandle, String) - fullName.vb: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.GetProcedureAddress(OpenTK.Core.Platform.OpenGLContextHandle, String) + fullName.vb: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.GetProcedureAddress(OpenTK.Platform.OpenGLContextHandle, String) name.vb: GetProcedureAddress(OpenGLContextHandle, String) - uid: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.GetCurrentContext commentId: M:OpenTK.Platform.Native.SDL.SDLOpenGLComponent.GetCurrentContext @@ -493,48 +444,40 @@ items: fullName: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.GetCurrentContext() type: Method source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLOpenGLComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetCurrentContext - path: opentk/src/OpenTK.Platform.Native/SDL/SDLOpenGLComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLOpenGLComponent.cs startLine: 112 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: Get the current OpenGL context for this thread. example: [] syntax: content: public OpenGLContextHandle? GetCurrentContext() return: - type: OpenTK.Core.Platform.OpenGLContextHandle + type: OpenTK.Platform.OpenGLContextHandle description: Handle to the current OpenGL context, null if none are current. content.vb: Public Function GetCurrentContext() As OpenGLContextHandle overload: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.GetCurrentContext* implements: - - OpenTK.Core.Platform.IOpenGLComponent.GetCurrentContext -- uid: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.SetCurrentContext(OpenTK.Core.Platform.OpenGLContextHandle) - commentId: M:OpenTK.Platform.Native.SDL.SDLOpenGLComponent.SetCurrentContext(OpenTK.Core.Platform.OpenGLContextHandle) - id: SetCurrentContext(OpenTK.Core.Platform.OpenGLContextHandle) + - OpenTK.Platform.IOpenGLComponent.GetCurrentContext +- uid: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.SetCurrentContext(OpenTK.Platform.OpenGLContextHandle) + commentId: M:OpenTK.Platform.Native.SDL.SDLOpenGLComponent.SetCurrentContext(OpenTK.Platform.OpenGLContextHandle) + id: SetCurrentContext(OpenTK.Platform.OpenGLContextHandle) parent: OpenTK.Platform.Native.SDL.SDLOpenGLComponent langs: - csharp - vb name: SetCurrentContext(OpenGLContextHandle?) nameWithType: SDLOpenGLComponent.SetCurrentContext(OpenGLContextHandle?) - fullName: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.SetCurrentContext(OpenTK.Core.Platform.OpenGLContextHandle?) + fullName: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.SetCurrentContext(OpenTK.Platform.OpenGLContextHandle?) type: Method source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLOpenGLComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetCurrentContext - path: opentk/src/OpenTK.Platform.Native/SDL/SDLOpenGLComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLOpenGLComponent.cs startLine: 131 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: Set the current OpenGL context for this thread. example: [] @@ -542,7 +485,7 @@ items: content: public bool SetCurrentContext(OpenGLContextHandle? handle) parameters: - id: handle - type: OpenTK.Core.Platform.OpenGLContextHandle + type: OpenTK.Platform.OpenGLContextHandle description: Handle to the OpenGL context to make current, or null to make none current. return: type: System.Boolean @@ -550,31 +493,27 @@ items: content.vb: Public Function SetCurrentContext(handle As OpenGLContextHandle) As Boolean overload: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.SetCurrentContext* implements: - - OpenTK.Core.Platform.IOpenGLComponent.SetCurrentContext(OpenTK.Core.Platform.OpenGLContextHandle) + - OpenTK.Platform.IOpenGLComponent.SetCurrentContext(OpenTK.Platform.OpenGLContextHandle) nameWithType.vb: SDLOpenGLComponent.SetCurrentContext(OpenGLContextHandle) - fullName.vb: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.SetCurrentContext(OpenTK.Core.Platform.OpenGLContextHandle) + fullName.vb: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.SetCurrentContext(OpenTK.Platform.OpenGLContextHandle) name.vb: SetCurrentContext(OpenGLContextHandle) -- uid: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.GetSharedContext(OpenTK.Core.Platform.OpenGLContextHandle) - commentId: M:OpenTK.Platform.Native.SDL.SDLOpenGLComponent.GetSharedContext(OpenTK.Core.Platform.OpenGLContextHandle) - id: GetSharedContext(OpenTK.Core.Platform.OpenGLContextHandle) +- uid: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.GetSharedContext(OpenTK.Platform.OpenGLContextHandle) + commentId: M:OpenTK.Platform.Native.SDL.SDLOpenGLComponent.GetSharedContext(OpenTK.Platform.OpenGLContextHandle) + id: GetSharedContext(OpenTK.Platform.OpenGLContextHandle) parent: OpenTK.Platform.Native.SDL.SDLOpenGLComponent langs: - csharp - vb name: GetSharedContext(OpenGLContextHandle) nameWithType: SDLOpenGLComponent.GetSharedContext(OpenGLContextHandle) - fullName: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.GetSharedContext(OpenTK.Core.Platform.OpenGLContextHandle) + fullName: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.GetSharedContext(OpenTK.Platform.OpenGLContextHandle) type: Method source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLOpenGLComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetSharedContext - path: opentk/src/OpenTK.Platform.Native/SDL/SDLOpenGLComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLOpenGLComponent.cs startLine: 149 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: Gets the context which the given context shares display lists with. example: [] @@ -582,15 +521,15 @@ items: content: public OpenGLContextHandle? GetSharedContext(OpenGLContextHandle handle) parameters: - id: handle - type: OpenTK.Core.Platform.OpenGLContextHandle + type: OpenTK.Platform.OpenGLContextHandle description: Handle to the OpenGL context. return: - type: OpenTK.Core.Platform.OpenGLContextHandle + type: OpenTK.Platform.OpenGLContextHandle description: Handle to the OpenGL context the given context shares display lists with. content.vb: Public Function GetSharedContext(handle As OpenGLContextHandle) As OpenGLContextHandle overload: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.GetSharedContext* implements: - - OpenTK.Core.Platform.IOpenGLComponent.GetSharedContext(OpenTK.Core.Platform.OpenGLContextHandle) + - OpenTK.Platform.IOpenGLComponent.GetSharedContext(OpenTK.Platform.OpenGLContextHandle) - uid: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.SetSwapInterval(System.Int32) commentId: M:OpenTK.Platform.Native.SDL.SDLOpenGLComponent.SetSwapInterval(System.Int32) id: SetSwapInterval(System.Int32) @@ -603,15 +542,11 @@ items: fullName: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.SetSwapInterval(int) type: Method source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLOpenGLComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetSwapInterval - path: opentk/src/OpenTK.Platform.Native/SDL/SDLOpenGLComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLOpenGLComponent.cs startLine: 157 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: Sets the swap interval of the current OpenGL context. example: [] @@ -624,7 +559,7 @@ items: content.vb: Public Sub SetSwapInterval(interval As Integer) overload: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.SetSwapInterval* implements: - - OpenTK.Core.Platform.IOpenGLComponent.SetSwapInterval(System.Int32) + - OpenTK.Platform.IOpenGLComponent.SetSwapInterval(System.Int32) nameWithType.vb: SDLOpenGLComponent.SetSwapInterval(Integer) fullName.vb: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.SetSwapInterval(Integer) name.vb: SetSwapInterval(Integer) @@ -640,15 +575,11 @@ items: fullName: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.GetSwapInterval() type: Method source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLOpenGLComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetSwapInterval - path: opentk/src/OpenTK.Platform.Native/SDL/SDLOpenGLComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLOpenGLComponent.cs startLine: 163 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: Gets the swap interval of the current OpenGL context. example: [] @@ -660,28 +591,24 @@ items: content.vb: Public Function GetSwapInterval() As Integer overload: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.GetSwapInterval* implements: - - OpenTK.Core.Platform.IOpenGLComponent.GetSwapInterval -- uid: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.SwapBuffers(OpenTK.Core.Platform.OpenGLContextHandle) - commentId: M:OpenTK.Platform.Native.SDL.SDLOpenGLComponent.SwapBuffers(OpenTK.Core.Platform.OpenGLContextHandle) - id: SwapBuffers(OpenTK.Core.Platform.OpenGLContextHandle) + - OpenTK.Platform.IOpenGLComponent.GetSwapInterval +- uid: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.SwapBuffers(OpenTK.Platform.OpenGLContextHandle) + commentId: M:OpenTK.Platform.Native.SDL.SDLOpenGLComponent.SwapBuffers(OpenTK.Platform.OpenGLContextHandle) + id: SwapBuffers(OpenTK.Platform.OpenGLContextHandle) parent: OpenTK.Platform.Native.SDL.SDLOpenGLComponent langs: - csharp - vb name: SwapBuffers(OpenGLContextHandle) nameWithType: SDLOpenGLComponent.SwapBuffers(OpenGLContextHandle) - fullName: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.SwapBuffers(OpenTK.Core.Platform.OpenGLContextHandle) + fullName: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.SwapBuffers(OpenTK.Platform.OpenGLContextHandle) type: Method source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLOpenGLComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SwapBuffers - path: opentk/src/OpenTK.Platform.Native/SDL/SDLOpenGLComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLOpenGLComponent.cs startLine: 169 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: Swaps the buffer of the specified context. example: [] @@ -689,12 +616,12 @@ items: content: public void SwapBuffers(OpenGLContextHandle handle) parameters: - id: handle - type: OpenTK.Core.Platform.OpenGLContextHandle + type: OpenTK.Platform.OpenGLContextHandle description: Handle to the context. content.vb: Public Sub SwapBuffers(handle As OpenGLContextHandle) overload: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.SwapBuffers* implements: - - OpenTK.Core.Platform.IOpenGLComponent.SwapBuffers(OpenTK.Core.Platform.OpenGLContextHandle) + - OpenTK.Platform.IOpenGLComponent.SwapBuffers(OpenTK.Platform.OpenGLContextHandle) references: - uid: OpenTK.Platform.Native.SDL commentId: N:OpenTK.Platform.Native.SDL @@ -745,20 +672,20 @@ references: nameWithType.vb: Object fullName.vb: Object name.vb: Object -- uid: OpenTK.Core.Platform.IOpenGLComponent - commentId: T:OpenTK.Core.Platform.IOpenGLComponent - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.IOpenGLComponent.html +- uid: OpenTK.Platform.IOpenGLComponent + commentId: T:OpenTK.Platform.IOpenGLComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IOpenGLComponent.html name: IOpenGLComponent nameWithType: IOpenGLComponent - fullName: OpenTK.Core.Platform.IOpenGLComponent -- uid: OpenTK.Core.Platform.IPalComponent - commentId: T:OpenTK.Core.Platform.IPalComponent - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.IPalComponent.html + fullName: OpenTK.Platform.IOpenGLComponent +- uid: OpenTK.Platform.IPalComponent + commentId: T:OpenTK.Platform.IPalComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IPalComponent.html name: IPalComponent nameWithType: IPalComponent - fullName: OpenTK.Core.Platform.IPalComponent + fullName: OpenTK.Platform.IPalComponent - uid: System.Object.Equals(System.Object) commentId: M:System.Object.Equals(System.Object) parent: System.Object @@ -985,49 +912,41 @@ references: name: System nameWithType: System fullName: System -- uid: OpenTK.Core.Platform - commentId: N:OpenTK.Core.Platform +- uid: OpenTK.Platform + commentId: N:OpenTK.Platform href: OpenTK.html - name: OpenTK.Core.Platform - nameWithType: OpenTK.Core.Platform - fullName: OpenTK.Core.Platform + name: OpenTK.Platform + nameWithType: OpenTK.Platform + fullName: OpenTK.Platform spec.csharp: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html spec.vb: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html - uid: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.Name* commentId: Overload:OpenTK.Platform.Native.SDL.SDLOpenGLComponent.Name href: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.html#OpenTK_Platform_Native_SDL_SDLOpenGLComponent_Name name: Name nameWithType: SDLOpenGLComponent.Name fullName: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.Name -- uid: OpenTK.Core.Platform.IPalComponent.Name - commentId: P:OpenTK.Core.Platform.IPalComponent.Name - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Name +- uid: OpenTK.Platform.IPalComponent.Name + commentId: P:OpenTK.Platform.IPalComponent.Name + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Name name: Name nameWithType: IPalComponent.Name - fullName: OpenTK.Core.Platform.IPalComponent.Name + fullName: OpenTK.Platform.IPalComponent.Name - uid: System.String commentId: T:System.String parent: System @@ -1045,33 +964,33 @@ references: name: Provides nameWithType: SDLOpenGLComponent.Provides fullName: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.Provides -- uid: OpenTK.Core.Platform.IPalComponent.Provides - commentId: P:OpenTK.Core.Platform.IPalComponent.Provides - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Provides +- uid: OpenTK.Platform.IPalComponent.Provides + commentId: P:OpenTK.Platform.IPalComponent.Provides + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Provides name: Provides nameWithType: IPalComponent.Provides - fullName: OpenTK.Core.Platform.IPalComponent.Provides -- uid: OpenTK.Core.Platform.PalComponents - commentId: T:OpenTK.Core.Platform.PalComponents - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.PalComponents.html + fullName: OpenTK.Platform.IPalComponent.Provides +- uid: OpenTK.Platform.PalComponents + commentId: T:OpenTK.Platform.PalComponents + parent: OpenTK.Platform + href: OpenTK.Platform.PalComponents.html name: PalComponents nameWithType: PalComponents - fullName: OpenTK.Core.Platform.PalComponents + fullName: OpenTK.Platform.PalComponents - uid: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.Logger* commentId: Overload:OpenTK.Platform.Native.SDL.SDLOpenGLComponent.Logger href: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.html#OpenTK_Platform_Native_SDL_SDLOpenGLComponent_Logger name: Logger nameWithType: SDLOpenGLComponent.Logger fullName: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.Logger -- uid: OpenTK.Core.Platform.IPalComponent.Logger - commentId: P:OpenTK.Core.Platform.IPalComponent.Logger - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Logger +- uid: OpenTK.Platform.IPalComponent.Logger + commentId: P:OpenTK.Platform.IPalComponent.Logger + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Logger name: Logger nameWithType: IPalComponent.Logger - fullName: OpenTK.Core.Platform.IPalComponent.Logger + fullName: OpenTK.Platform.IPalComponent.Logger - uid: OpenTK.Core.Utility.ILogger commentId: T:OpenTK.Core.Utility.ILogger parent: OpenTK.Core.Utility @@ -1111,55 +1030,55 @@ references: href: OpenTK.Core.Utility.html - uid: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.Initialize* commentId: Overload:OpenTK.Platform.Native.SDL.SDLOpenGLComponent.Initialize - href: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.html#OpenTK_Platform_Native_SDL_SDLOpenGLComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + href: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.html#OpenTK_Platform_Native_SDL_SDLOpenGLComponent_Initialize_OpenTK_Platform_ToolkitOptions_ name: Initialize nameWithType: SDLOpenGLComponent.Initialize fullName: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.Initialize -- uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - commentId: M:OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ +- uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ name: Initialize(ToolkitOptions) nameWithType: IPalComponent.Initialize(ToolkitOptions) - fullName: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + fullName: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) spec.csharp: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + - uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.ToolkitOptions + - uid: OpenTK.Platform.ToolkitOptions name: ToolkitOptions - href: OpenTK.Core.Platform.ToolkitOptions.html + href: OpenTK.Platform.ToolkitOptions.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + - uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.ToolkitOptions + - uid: OpenTK.Platform.ToolkitOptions name: ToolkitOptions - href: OpenTK.Core.Platform.ToolkitOptions.html + href: OpenTK.Platform.ToolkitOptions.html - name: ) -- uid: OpenTK.Core.Platform.ToolkitOptions - commentId: T:OpenTK.Core.Platform.ToolkitOptions - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.ToolkitOptions.html +- uid: OpenTK.Platform.ToolkitOptions + commentId: T:OpenTK.Platform.ToolkitOptions + parent: OpenTK.Platform + href: OpenTK.Platform.ToolkitOptions.html name: ToolkitOptions nameWithType: ToolkitOptions - fullName: OpenTK.Core.Platform.ToolkitOptions + fullName: OpenTK.Platform.ToolkitOptions - uid: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.CanShareContexts* commentId: Overload:OpenTK.Platform.Native.SDL.SDLOpenGLComponent.CanShareContexts href: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.html#OpenTK_Platform_Native_SDL_SDLOpenGLComponent_CanShareContexts name: CanShareContexts nameWithType: SDLOpenGLComponent.CanShareContexts fullName: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.CanShareContexts -- uid: OpenTK.Core.Platform.IOpenGLComponent.CanShareContexts - commentId: P:OpenTK.Core.Platform.IOpenGLComponent.CanShareContexts - parent: OpenTK.Core.Platform.IOpenGLComponent - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_CanShareContexts +- uid: OpenTK.Platform.IOpenGLComponent.CanShareContexts + commentId: P:OpenTK.Platform.IOpenGLComponent.CanShareContexts + parent: OpenTK.Platform.IOpenGLComponent + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_CanShareContexts name: CanShareContexts nameWithType: IOpenGLComponent.CanShareContexts - fullName: OpenTK.Core.Platform.IOpenGLComponent.CanShareContexts + fullName: OpenTK.Platform.IOpenGLComponent.CanShareContexts - uid: System.Boolean commentId: T:System.Boolean parent: System @@ -1171,102 +1090,102 @@ references: nameWithType.vb: Boolean fullName.vb: Boolean name.vb: Boolean +- uid: OpenTK.Platform.IOpenGLComponent.CreateFromWindow(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IOpenGLComponent.CreateFromWindow(OpenTK.Platform.WindowHandle) + parent: OpenTK.Platform.IOpenGLComponent + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_CreateFromWindow_OpenTK_Platform_WindowHandle_ + name: CreateFromWindow(WindowHandle) + nameWithType: IOpenGLComponent.CreateFromWindow(WindowHandle) + fullName: OpenTK.Platform.IOpenGLComponent.CreateFromWindow(OpenTK.Platform.WindowHandle) + spec.csharp: + - uid: OpenTK.Platform.IOpenGLComponent.CreateFromWindow(OpenTK.Platform.WindowHandle) + name: CreateFromWindow + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_CreateFromWindow_OpenTK_Platform_WindowHandle_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IOpenGLComponent.CreateFromWindow(OpenTK.Platform.WindowHandle) + name: CreateFromWindow + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_CreateFromWindow_OpenTK_Platform_WindowHandle_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ) - uid: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.CanCreateFromWindow* commentId: Overload:OpenTK.Platform.Native.SDL.SDLOpenGLComponent.CanCreateFromWindow href: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.html#OpenTK_Platform_Native_SDL_SDLOpenGLComponent_CanCreateFromWindow name: CanCreateFromWindow nameWithType: SDLOpenGLComponent.CanCreateFromWindow fullName: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.CanCreateFromWindow -- uid: OpenTK.Core.Platform.IOpenGLComponent.CanCreateFromWindow - commentId: P:OpenTK.Core.Platform.IOpenGLComponent.CanCreateFromWindow - parent: OpenTK.Core.Platform.IOpenGLComponent - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_CanCreateFromWindow +- uid: OpenTK.Platform.IOpenGLComponent.CanCreateFromWindow + commentId: P:OpenTK.Platform.IOpenGLComponent.CanCreateFromWindow + parent: OpenTK.Platform.IOpenGLComponent + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_CanCreateFromWindow name: CanCreateFromWindow nameWithType: IOpenGLComponent.CanCreateFromWindow - fullName: OpenTK.Core.Platform.IOpenGLComponent.CanCreateFromWindow + fullName: OpenTK.Platform.IOpenGLComponent.CanCreateFromWindow +- uid: OpenTK.Platform.IOpenGLComponent.CreateFromSurface + commentId: M:OpenTK.Platform.IOpenGLComponent.CreateFromSurface + parent: OpenTK.Platform.IOpenGLComponent + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_CreateFromSurface + name: CreateFromSurface() + nameWithType: IOpenGLComponent.CreateFromSurface() + fullName: OpenTK.Platform.IOpenGLComponent.CreateFromSurface() + spec.csharp: + - uid: OpenTK.Platform.IOpenGLComponent.CreateFromSurface + name: CreateFromSurface + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_CreateFromSurface + - name: ( + - name: ) + spec.vb: + - uid: OpenTK.Platform.IOpenGLComponent.CreateFromSurface + name: CreateFromSurface + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_CreateFromSurface + - name: ( + - name: ) - uid: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.CanCreateFromSurface* commentId: Overload:OpenTK.Platform.Native.SDL.SDLOpenGLComponent.CanCreateFromSurface href: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.html#OpenTK_Platform_Native_SDL_SDLOpenGLComponent_CanCreateFromSurface name: CanCreateFromSurface nameWithType: SDLOpenGLComponent.CanCreateFromSurface fullName: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.CanCreateFromSurface -- uid: OpenTK.Core.Platform.IOpenGLComponent.CanCreateFromSurface - commentId: P:OpenTK.Core.Platform.IOpenGLComponent.CanCreateFromSurface - parent: OpenTK.Core.Platform.IOpenGLComponent - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_CanCreateFromSurface +- uid: OpenTK.Platform.IOpenGLComponent.CanCreateFromSurface + commentId: P:OpenTK.Platform.IOpenGLComponent.CanCreateFromSurface + parent: OpenTK.Platform.IOpenGLComponent + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_CanCreateFromSurface name: CanCreateFromSurface nameWithType: IOpenGLComponent.CanCreateFromSurface - fullName: OpenTK.Core.Platform.IOpenGLComponent.CanCreateFromSurface + fullName: OpenTK.Platform.IOpenGLComponent.CanCreateFromSurface - uid: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.CreateFromSurface* commentId: Overload:OpenTK.Platform.Native.SDL.SDLOpenGLComponent.CreateFromSurface href: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.html#OpenTK_Platform_Native_SDL_SDLOpenGLComponent_CreateFromSurface name: CreateFromSurface nameWithType: SDLOpenGLComponent.CreateFromSurface fullName: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.CreateFromSurface -- uid: OpenTK.Core.Platform.IOpenGLComponent.CreateFromSurface - commentId: M:OpenTK.Core.Platform.IOpenGLComponent.CreateFromSurface - parent: OpenTK.Core.Platform.IOpenGLComponent - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_CreateFromSurface - name: CreateFromSurface() - nameWithType: IOpenGLComponent.CreateFromSurface() - fullName: OpenTK.Core.Platform.IOpenGLComponent.CreateFromSurface() - spec.csharp: - - uid: OpenTK.Core.Platform.IOpenGLComponent.CreateFromSurface - name: CreateFromSurface - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_CreateFromSurface - - name: ( - - name: ) - spec.vb: - - uid: OpenTK.Core.Platform.IOpenGLComponent.CreateFromSurface - name: CreateFromSurface - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_CreateFromSurface - - name: ( - - name: ) -- uid: OpenTK.Core.Platform.OpenGLContextHandle - commentId: T:OpenTK.Core.Platform.OpenGLContextHandle - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.OpenGLContextHandle.html +- uid: OpenTK.Platform.OpenGLContextHandle + commentId: T:OpenTK.Platform.OpenGLContextHandle + parent: OpenTK.Platform + href: OpenTK.Platform.OpenGLContextHandle.html name: OpenGLContextHandle nameWithType: OpenGLContextHandle - fullName: OpenTK.Core.Platform.OpenGLContextHandle + fullName: OpenTK.Platform.OpenGLContextHandle - uid: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.CreateFromWindow* commentId: Overload:OpenTK.Platform.Native.SDL.SDLOpenGLComponent.CreateFromWindow - href: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.html#OpenTK_Platform_Native_SDL_SDLOpenGLComponent_CreateFromWindow_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.html#OpenTK_Platform_Native_SDL_SDLOpenGLComponent_CreateFromWindow_OpenTK_Platform_WindowHandle_ name: CreateFromWindow nameWithType: SDLOpenGLComponent.CreateFromWindow fullName: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.CreateFromWindow -- uid: OpenTK.Core.Platform.IOpenGLComponent.CreateFromWindow(OpenTK.Core.Platform.WindowHandle) - commentId: M:OpenTK.Core.Platform.IOpenGLComponent.CreateFromWindow(OpenTK.Core.Platform.WindowHandle) - parent: OpenTK.Core.Platform.IOpenGLComponent - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_CreateFromWindow_OpenTK_Core_Platform_WindowHandle_ - name: CreateFromWindow(WindowHandle) - nameWithType: IOpenGLComponent.CreateFromWindow(WindowHandle) - fullName: OpenTK.Core.Platform.IOpenGLComponent.CreateFromWindow(OpenTK.Core.Platform.WindowHandle) - spec.csharp: - - uid: OpenTK.Core.Platform.IOpenGLComponent.CreateFromWindow(OpenTK.Core.Platform.WindowHandle) - name: CreateFromWindow - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_CreateFromWindow_OpenTK_Core_Platform_WindowHandle_ - - name: ( - - uid: OpenTK.Core.Platform.WindowHandle - name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html - - name: ) - spec.vb: - - uid: OpenTK.Core.Platform.IOpenGLComponent.CreateFromWindow(OpenTK.Core.Platform.WindowHandle) - name: CreateFromWindow - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_CreateFromWindow_OpenTK_Core_Platform_WindowHandle_ - - name: ( - - uid: OpenTK.Core.Platform.WindowHandle - name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html - - name: ) -- uid: OpenTK.Core.Platform.WindowHandle - commentId: T:OpenTK.Core.Platform.WindowHandle - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.WindowHandle.html +- uid: OpenTK.Platform.WindowHandle + commentId: T:OpenTK.Platform.WindowHandle + parent: OpenTK.Platform + href: OpenTK.Platform.WindowHandle.html name: WindowHandle nameWithType: WindowHandle - fullName: OpenTK.Core.Platform.WindowHandle + fullName: OpenTK.Platform.WindowHandle - uid: System.ArgumentNullException commentId: T:System.ArgumentNullException isExternal: true @@ -1276,34 +1195,34 @@ references: fullName: System.ArgumentNullException - uid: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.DestroyContext* commentId: Overload:OpenTK.Platform.Native.SDL.SDLOpenGLComponent.DestroyContext - href: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.html#OpenTK_Platform_Native_SDL_SDLOpenGLComponent_DestroyContext_OpenTK_Core_Platform_OpenGLContextHandle_ + href: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.html#OpenTK_Platform_Native_SDL_SDLOpenGLComponent_DestroyContext_OpenTK_Platform_OpenGLContextHandle_ name: DestroyContext nameWithType: SDLOpenGLComponent.DestroyContext fullName: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.DestroyContext -- uid: OpenTK.Core.Platform.IOpenGLComponent.DestroyContext(OpenTK.Core.Platform.OpenGLContextHandle) - commentId: M:OpenTK.Core.Platform.IOpenGLComponent.DestroyContext(OpenTK.Core.Platform.OpenGLContextHandle) - parent: OpenTK.Core.Platform.IOpenGLComponent - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_DestroyContext_OpenTK_Core_Platform_OpenGLContextHandle_ +- uid: OpenTK.Platform.IOpenGLComponent.DestroyContext(OpenTK.Platform.OpenGLContextHandle) + commentId: M:OpenTK.Platform.IOpenGLComponent.DestroyContext(OpenTK.Platform.OpenGLContextHandle) + parent: OpenTK.Platform.IOpenGLComponent + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_DestroyContext_OpenTK_Platform_OpenGLContextHandle_ name: DestroyContext(OpenGLContextHandle) nameWithType: IOpenGLComponent.DestroyContext(OpenGLContextHandle) - fullName: OpenTK.Core.Platform.IOpenGLComponent.DestroyContext(OpenTK.Core.Platform.OpenGLContextHandle) + fullName: OpenTK.Platform.IOpenGLComponent.DestroyContext(OpenTK.Platform.OpenGLContextHandle) spec.csharp: - - uid: OpenTK.Core.Platform.IOpenGLComponent.DestroyContext(OpenTK.Core.Platform.OpenGLContextHandle) + - uid: OpenTK.Platform.IOpenGLComponent.DestroyContext(OpenTK.Platform.OpenGLContextHandle) name: DestroyContext - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_DestroyContext_OpenTK_Core_Platform_OpenGLContextHandle_ + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_DestroyContext_OpenTK_Platform_OpenGLContextHandle_ - name: ( - - uid: OpenTK.Core.Platform.OpenGLContextHandle + - uid: OpenTK.Platform.OpenGLContextHandle name: OpenGLContextHandle - href: OpenTK.Core.Platform.OpenGLContextHandle.html + href: OpenTK.Platform.OpenGLContextHandle.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IOpenGLComponent.DestroyContext(OpenTK.Core.Platform.OpenGLContextHandle) + - uid: OpenTK.Platform.IOpenGLComponent.DestroyContext(OpenTK.Platform.OpenGLContextHandle) name: DestroyContext - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_DestroyContext_OpenTK_Core_Platform_OpenGLContextHandle_ + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_DestroyContext_OpenTK_Platform_OpenGLContextHandle_ - name: ( - - uid: OpenTK.Core.Platform.OpenGLContextHandle + - uid: OpenTK.Platform.OpenGLContextHandle name: OpenGLContextHandle - href: OpenTK.Core.Platform.OpenGLContextHandle.html + href: OpenTK.Platform.OpenGLContextHandle.html - name: ) - uid: OpenTK.IBindingsContext commentId: T:OpenTK.IBindingsContext @@ -1314,34 +1233,34 @@ references: fullName: OpenTK.IBindingsContext - uid: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.GetBindingsContext* commentId: Overload:OpenTK.Platform.Native.SDL.SDLOpenGLComponent.GetBindingsContext - href: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.html#OpenTK_Platform_Native_SDL_SDLOpenGLComponent_GetBindingsContext_OpenTK_Core_Platform_OpenGLContextHandle_ + href: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.html#OpenTK_Platform_Native_SDL_SDLOpenGLComponent_GetBindingsContext_OpenTK_Platform_OpenGLContextHandle_ name: GetBindingsContext nameWithType: SDLOpenGLComponent.GetBindingsContext fullName: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.GetBindingsContext -- uid: OpenTK.Core.Platform.IOpenGLComponent.GetBindingsContext(OpenTK.Core.Platform.OpenGLContextHandle) - commentId: M:OpenTK.Core.Platform.IOpenGLComponent.GetBindingsContext(OpenTK.Core.Platform.OpenGLContextHandle) - parent: OpenTK.Core.Platform.IOpenGLComponent - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_GetBindingsContext_OpenTK_Core_Platform_OpenGLContextHandle_ +- uid: OpenTK.Platform.IOpenGLComponent.GetBindingsContext(OpenTK.Platform.OpenGLContextHandle) + commentId: M:OpenTK.Platform.IOpenGLComponent.GetBindingsContext(OpenTK.Platform.OpenGLContextHandle) + parent: OpenTK.Platform.IOpenGLComponent + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_GetBindingsContext_OpenTK_Platform_OpenGLContextHandle_ name: GetBindingsContext(OpenGLContextHandle) nameWithType: IOpenGLComponent.GetBindingsContext(OpenGLContextHandle) - fullName: OpenTK.Core.Platform.IOpenGLComponent.GetBindingsContext(OpenTK.Core.Platform.OpenGLContextHandle) + fullName: OpenTK.Platform.IOpenGLComponent.GetBindingsContext(OpenTK.Platform.OpenGLContextHandle) spec.csharp: - - uid: OpenTK.Core.Platform.IOpenGLComponent.GetBindingsContext(OpenTK.Core.Platform.OpenGLContextHandle) + - uid: OpenTK.Platform.IOpenGLComponent.GetBindingsContext(OpenTK.Platform.OpenGLContextHandle) name: GetBindingsContext - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_GetBindingsContext_OpenTK_Core_Platform_OpenGLContextHandle_ + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_GetBindingsContext_OpenTK_Platform_OpenGLContextHandle_ - name: ( - - uid: OpenTK.Core.Platform.OpenGLContextHandle + - uid: OpenTK.Platform.OpenGLContextHandle name: OpenGLContextHandle - href: OpenTK.Core.Platform.OpenGLContextHandle.html + href: OpenTK.Platform.OpenGLContextHandle.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IOpenGLComponent.GetBindingsContext(OpenTK.Core.Platform.OpenGLContextHandle) + - uid: OpenTK.Platform.IOpenGLComponent.GetBindingsContext(OpenTK.Platform.OpenGLContextHandle) name: GetBindingsContext - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_GetBindingsContext_OpenTK_Core_Platform_OpenGLContextHandle_ + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_GetBindingsContext_OpenTK_Platform_OpenGLContextHandle_ - name: ( - - uid: OpenTK.Core.Platform.OpenGLContextHandle + - uid: OpenTK.Platform.OpenGLContextHandle name: OpenGLContextHandle - href: OpenTK.Core.Platform.OpenGLContextHandle.html + href: OpenTK.Platform.OpenGLContextHandle.html - name: ) - uid: OpenTK commentId: N:OpenTK @@ -1351,29 +1270,29 @@ references: fullName: OpenTK - uid: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.GetProcedureAddress* commentId: Overload:OpenTK.Platform.Native.SDL.SDLOpenGLComponent.GetProcedureAddress - href: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.html#OpenTK_Platform_Native_SDL_SDLOpenGLComponent_GetProcedureAddress_OpenTK_Core_Platform_OpenGLContextHandle_System_String_ + href: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.html#OpenTK_Platform_Native_SDL_SDLOpenGLComponent_GetProcedureAddress_OpenTK_Platform_OpenGLContextHandle_System_String_ name: GetProcedureAddress nameWithType: SDLOpenGLComponent.GetProcedureAddress fullName: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.GetProcedureAddress -- uid: OpenTK.Core.Platform.IOpenGLComponent.GetProcedureAddress(OpenTK.Core.Platform.OpenGLContextHandle,System.String) - commentId: M:OpenTK.Core.Platform.IOpenGLComponent.GetProcedureAddress(OpenTK.Core.Platform.OpenGLContextHandle,System.String) - parent: OpenTK.Core.Platform.IOpenGLComponent +- uid: OpenTK.Platform.IOpenGLComponent.GetProcedureAddress(OpenTK.Platform.OpenGLContextHandle,System.String) + commentId: M:OpenTK.Platform.IOpenGLComponent.GetProcedureAddress(OpenTK.Platform.OpenGLContextHandle,System.String) + parent: OpenTK.Platform.IOpenGLComponent isExternal: true - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_GetProcedureAddress_OpenTK_Core_Platform_OpenGLContextHandle_System_String_ + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_GetProcedureAddress_OpenTK_Platform_OpenGLContextHandle_System_String_ name: GetProcedureAddress(OpenGLContextHandle, string) nameWithType: IOpenGLComponent.GetProcedureAddress(OpenGLContextHandle, string) - fullName: OpenTK.Core.Platform.IOpenGLComponent.GetProcedureAddress(OpenTK.Core.Platform.OpenGLContextHandle, string) + fullName: OpenTK.Platform.IOpenGLComponent.GetProcedureAddress(OpenTK.Platform.OpenGLContextHandle, string) nameWithType.vb: IOpenGLComponent.GetProcedureAddress(OpenGLContextHandle, String) - fullName.vb: OpenTK.Core.Platform.IOpenGLComponent.GetProcedureAddress(OpenTK.Core.Platform.OpenGLContextHandle, String) + fullName.vb: OpenTK.Platform.IOpenGLComponent.GetProcedureAddress(OpenTK.Platform.OpenGLContextHandle, String) name.vb: GetProcedureAddress(OpenGLContextHandle, String) spec.csharp: - - uid: OpenTK.Core.Platform.IOpenGLComponent.GetProcedureAddress(OpenTK.Core.Platform.OpenGLContextHandle,System.String) + - uid: OpenTK.Platform.IOpenGLComponent.GetProcedureAddress(OpenTK.Platform.OpenGLContextHandle,System.String) name: GetProcedureAddress - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_GetProcedureAddress_OpenTK_Core_Platform_OpenGLContextHandle_System_String_ + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_GetProcedureAddress_OpenTK_Platform_OpenGLContextHandle_System_String_ - name: ( - - uid: OpenTK.Core.Platform.OpenGLContextHandle + - uid: OpenTK.Platform.OpenGLContextHandle name: OpenGLContextHandle - href: OpenTK.Core.Platform.OpenGLContextHandle.html + href: OpenTK.Platform.OpenGLContextHandle.html - name: ',' - name: " " - uid: System.String @@ -1382,13 +1301,13 @@ references: href: https://learn.microsoft.com/dotnet/api/system.string - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IOpenGLComponent.GetProcedureAddress(OpenTK.Core.Platform.OpenGLContextHandle,System.String) + - uid: OpenTK.Platform.IOpenGLComponent.GetProcedureAddress(OpenTK.Platform.OpenGLContextHandle,System.String) name: GetProcedureAddress - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_GetProcedureAddress_OpenTK_Core_Platform_OpenGLContextHandle_System_String_ + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_GetProcedureAddress_OpenTK_Platform_OpenGLContextHandle_System_String_ - name: ( - - uid: OpenTK.Core.Platform.OpenGLContextHandle + - uid: OpenTK.Platform.OpenGLContextHandle name: OpenGLContextHandle - href: OpenTK.Core.Platform.OpenGLContextHandle.html + href: OpenTK.Platform.OpenGLContextHandle.html - name: ',' - name: " " - uid: System.String @@ -1413,86 +1332,86 @@ references: name: GetCurrentContext nameWithType: SDLOpenGLComponent.GetCurrentContext fullName: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.GetCurrentContext -- uid: OpenTK.Core.Platform.IOpenGLComponent.GetCurrentContext - commentId: M:OpenTK.Core.Platform.IOpenGLComponent.GetCurrentContext - parent: OpenTK.Core.Platform.IOpenGLComponent - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_GetCurrentContext +- uid: OpenTK.Platform.IOpenGLComponent.GetCurrentContext + commentId: M:OpenTK.Platform.IOpenGLComponent.GetCurrentContext + parent: OpenTK.Platform.IOpenGLComponent + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_GetCurrentContext name: GetCurrentContext() nameWithType: IOpenGLComponent.GetCurrentContext() - fullName: OpenTK.Core.Platform.IOpenGLComponent.GetCurrentContext() + fullName: OpenTK.Platform.IOpenGLComponent.GetCurrentContext() spec.csharp: - - uid: OpenTK.Core.Platform.IOpenGLComponent.GetCurrentContext + - uid: OpenTK.Platform.IOpenGLComponent.GetCurrentContext name: GetCurrentContext - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_GetCurrentContext + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_GetCurrentContext - name: ( - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IOpenGLComponent.GetCurrentContext + - uid: OpenTK.Platform.IOpenGLComponent.GetCurrentContext name: GetCurrentContext - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_GetCurrentContext + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_GetCurrentContext - name: ( - name: ) - uid: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.SetCurrentContext* commentId: Overload:OpenTK.Platform.Native.SDL.SDLOpenGLComponent.SetCurrentContext - href: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.html#OpenTK_Platform_Native_SDL_SDLOpenGLComponent_SetCurrentContext_OpenTK_Core_Platform_OpenGLContextHandle_ + href: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.html#OpenTK_Platform_Native_SDL_SDLOpenGLComponent_SetCurrentContext_OpenTK_Platform_OpenGLContextHandle_ name: SetCurrentContext nameWithType: SDLOpenGLComponent.SetCurrentContext fullName: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.SetCurrentContext -- uid: OpenTK.Core.Platform.IOpenGLComponent.SetCurrentContext(OpenTK.Core.Platform.OpenGLContextHandle) - commentId: M:OpenTK.Core.Platform.IOpenGLComponent.SetCurrentContext(OpenTK.Core.Platform.OpenGLContextHandle) - parent: OpenTK.Core.Platform.IOpenGLComponent - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_SetCurrentContext_OpenTK_Core_Platform_OpenGLContextHandle_ +- uid: OpenTK.Platform.IOpenGLComponent.SetCurrentContext(OpenTK.Platform.OpenGLContextHandle) + commentId: M:OpenTK.Platform.IOpenGLComponent.SetCurrentContext(OpenTK.Platform.OpenGLContextHandle) + parent: OpenTK.Platform.IOpenGLComponent + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_SetCurrentContext_OpenTK_Platform_OpenGLContextHandle_ name: SetCurrentContext(OpenGLContextHandle) nameWithType: IOpenGLComponent.SetCurrentContext(OpenGLContextHandle) - fullName: OpenTK.Core.Platform.IOpenGLComponent.SetCurrentContext(OpenTK.Core.Platform.OpenGLContextHandle) + fullName: OpenTK.Platform.IOpenGLComponent.SetCurrentContext(OpenTK.Platform.OpenGLContextHandle) spec.csharp: - - uid: OpenTK.Core.Platform.IOpenGLComponent.SetCurrentContext(OpenTK.Core.Platform.OpenGLContextHandle) + - uid: OpenTK.Platform.IOpenGLComponent.SetCurrentContext(OpenTK.Platform.OpenGLContextHandle) name: SetCurrentContext - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_SetCurrentContext_OpenTK_Core_Platform_OpenGLContextHandle_ + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_SetCurrentContext_OpenTK_Platform_OpenGLContextHandle_ - name: ( - - uid: OpenTK.Core.Platform.OpenGLContextHandle + - uid: OpenTK.Platform.OpenGLContextHandle name: OpenGLContextHandle - href: OpenTK.Core.Platform.OpenGLContextHandle.html + href: OpenTK.Platform.OpenGLContextHandle.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IOpenGLComponent.SetCurrentContext(OpenTK.Core.Platform.OpenGLContextHandle) + - uid: OpenTK.Platform.IOpenGLComponent.SetCurrentContext(OpenTK.Platform.OpenGLContextHandle) name: SetCurrentContext - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_SetCurrentContext_OpenTK_Core_Platform_OpenGLContextHandle_ + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_SetCurrentContext_OpenTK_Platform_OpenGLContextHandle_ - name: ( - - uid: OpenTK.Core.Platform.OpenGLContextHandle + - uid: OpenTK.Platform.OpenGLContextHandle name: OpenGLContextHandle - href: OpenTK.Core.Platform.OpenGLContextHandle.html + href: OpenTK.Platform.OpenGLContextHandle.html - name: ) - uid: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.GetSharedContext* commentId: Overload:OpenTK.Platform.Native.SDL.SDLOpenGLComponent.GetSharedContext - href: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.html#OpenTK_Platform_Native_SDL_SDLOpenGLComponent_GetSharedContext_OpenTK_Core_Platform_OpenGLContextHandle_ + href: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.html#OpenTK_Platform_Native_SDL_SDLOpenGLComponent_GetSharedContext_OpenTK_Platform_OpenGLContextHandle_ name: GetSharedContext nameWithType: SDLOpenGLComponent.GetSharedContext fullName: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.GetSharedContext -- uid: OpenTK.Core.Platform.IOpenGLComponent.GetSharedContext(OpenTK.Core.Platform.OpenGLContextHandle) - commentId: M:OpenTK.Core.Platform.IOpenGLComponent.GetSharedContext(OpenTK.Core.Platform.OpenGLContextHandle) - parent: OpenTK.Core.Platform.IOpenGLComponent - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_GetSharedContext_OpenTK_Core_Platform_OpenGLContextHandle_ +- uid: OpenTK.Platform.IOpenGLComponent.GetSharedContext(OpenTK.Platform.OpenGLContextHandle) + commentId: M:OpenTK.Platform.IOpenGLComponent.GetSharedContext(OpenTK.Platform.OpenGLContextHandle) + parent: OpenTK.Platform.IOpenGLComponent + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_GetSharedContext_OpenTK_Platform_OpenGLContextHandle_ name: GetSharedContext(OpenGLContextHandle) nameWithType: IOpenGLComponent.GetSharedContext(OpenGLContextHandle) - fullName: OpenTK.Core.Platform.IOpenGLComponent.GetSharedContext(OpenTK.Core.Platform.OpenGLContextHandle) + fullName: OpenTK.Platform.IOpenGLComponent.GetSharedContext(OpenTK.Platform.OpenGLContextHandle) spec.csharp: - - uid: OpenTK.Core.Platform.IOpenGLComponent.GetSharedContext(OpenTK.Core.Platform.OpenGLContextHandle) + - uid: OpenTK.Platform.IOpenGLComponent.GetSharedContext(OpenTK.Platform.OpenGLContextHandle) name: GetSharedContext - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_GetSharedContext_OpenTK_Core_Platform_OpenGLContextHandle_ + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_GetSharedContext_OpenTK_Platform_OpenGLContextHandle_ - name: ( - - uid: OpenTK.Core.Platform.OpenGLContextHandle + - uid: OpenTK.Platform.OpenGLContextHandle name: OpenGLContextHandle - href: OpenTK.Core.Platform.OpenGLContextHandle.html + href: OpenTK.Platform.OpenGLContextHandle.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IOpenGLComponent.GetSharedContext(OpenTK.Core.Platform.OpenGLContextHandle) + - uid: OpenTK.Platform.IOpenGLComponent.GetSharedContext(OpenTK.Platform.OpenGLContextHandle) name: GetSharedContext - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_GetSharedContext_OpenTK_Core_Platform_OpenGLContextHandle_ + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_GetSharedContext_OpenTK_Platform_OpenGLContextHandle_ - name: ( - - uid: OpenTK.Core.Platform.OpenGLContextHandle + - uid: OpenTK.Platform.OpenGLContextHandle name: OpenGLContextHandle - href: OpenTK.Core.Platform.OpenGLContextHandle.html + href: OpenTK.Platform.OpenGLContextHandle.html - name: ) - uid: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.SetSwapInterval* commentId: Overload:OpenTK.Platform.Native.SDL.SDLOpenGLComponent.SetSwapInterval @@ -1500,21 +1419,21 @@ references: name: SetSwapInterval nameWithType: SDLOpenGLComponent.SetSwapInterval fullName: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.SetSwapInterval -- uid: OpenTK.Core.Platform.IOpenGLComponent.SetSwapInterval(System.Int32) - commentId: M:OpenTK.Core.Platform.IOpenGLComponent.SetSwapInterval(System.Int32) - parent: OpenTK.Core.Platform.IOpenGLComponent +- uid: OpenTK.Platform.IOpenGLComponent.SetSwapInterval(System.Int32) + commentId: M:OpenTK.Platform.IOpenGLComponent.SetSwapInterval(System.Int32) + parent: OpenTK.Platform.IOpenGLComponent isExternal: true - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_SetSwapInterval_System_Int32_ + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_SetSwapInterval_System_Int32_ name: SetSwapInterval(int) nameWithType: IOpenGLComponent.SetSwapInterval(int) - fullName: OpenTK.Core.Platform.IOpenGLComponent.SetSwapInterval(int) + fullName: OpenTK.Platform.IOpenGLComponent.SetSwapInterval(int) nameWithType.vb: IOpenGLComponent.SetSwapInterval(Integer) - fullName.vb: OpenTK.Core.Platform.IOpenGLComponent.SetSwapInterval(Integer) + fullName.vb: OpenTK.Platform.IOpenGLComponent.SetSwapInterval(Integer) name.vb: SetSwapInterval(Integer) spec.csharp: - - uid: OpenTK.Core.Platform.IOpenGLComponent.SetSwapInterval(System.Int32) + - uid: OpenTK.Platform.IOpenGLComponent.SetSwapInterval(System.Int32) name: SetSwapInterval - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_SetSwapInterval_System_Int32_ + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_SetSwapInterval_System_Int32_ - name: ( - uid: System.Int32 name: int @@ -1522,9 +1441,9 @@ references: href: https://learn.microsoft.com/dotnet/api/system.int32 - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IOpenGLComponent.SetSwapInterval(System.Int32) + - uid: OpenTK.Platform.IOpenGLComponent.SetSwapInterval(System.Int32) name: SetSwapInterval - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_SetSwapInterval_System_Int32_ + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_SetSwapInterval_System_Int32_ - name: ( - uid: System.Int32 name: Integer @@ -1548,53 +1467,53 @@ references: name: GetSwapInterval nameWithType: SDLOpenGLComponent.GetSwapInterval fullName: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.GetSwapInterval -- uid: OpenTK.Core.Platform.IOpenGLComponent.GetSwapInterval - commentId: M:OpenTK.Core.Platform.IOpenGLComponent.GetSwapInterval - parent: OpenTK.Core.Platform.IOpenGLComponent - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_GetSwapInterval +- uid: OpenTK.Platform.IOpenGLComponent.GetSwapInterval + commentId: M:OpenTK.Platform.IOpenGLComponent.GetSwapInterval + parent: OpenTK.Platform.IOpenGLComponent + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_GetSwapInterval name: GetSwapInterval() nameWithType: IOpenGLComponent.GetSwapInterval() - fullName: OpenTK.Core.Platform.IOpenGLComponent.GetSwapInterval() + fullName: OpenTK.Platform.IOpenGLComponent.GetSwapInterval() spec.csharp: - - uid: OpenTK.Core.Platform.IOpenGLComponent.GetSwapInterval + - uid: OpenTK.Platform.IOpenGLComponent.GetSwapInterval name: GetSwapInterval - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_GetSwapInterval + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_GetSwapInterval - name: ( - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IOpenGLComponent.GetSwapInterval + - uid: OpenTK.Platform.IOpenGLComponent.GetSwapInterval name: GetSwapInterval - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_GetSwapInterval + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_GetSwapInterval - name: ( - name: ) - uid: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.SwapBuffers* commentId: Overload:OpenTK.Platform.Native.SDL.SDLOpenGLComponent.SwapBuffers - href: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.html#OpenTK_Platform_Native_SDL_SDLOpenGLComponent_SwapBuffers_OpenTK_Core_Platform_OpenGLContextHandle_ + href: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.html#OpenTK_Platform_Native_SDL_SDLOpenGLComponent_SwapBuffers_OpenTK_Platform_OpenGLContextHandle_ name: SwapBuffers nameWithType: SDLOpenGLComponent.SwapBuffers fullName: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.SwapBuffers -- uid: OpenTK.Core.Platform.IOpenGLComponent.SwapBuffers(OpenTK.Core.Platform.OpenGLContextHandle) - commentId: M:OpenTK.Core.Platform.IOpenGLComponent.SwapBuffers(OpenTK.Core.Platform.OpenGLContextHandle) - parent: OpenTK.Core.Platform.IOpenGLComponent - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_SwapBuffers_OpenTK_Core_Platform_OpenGLContextHandle_ +- uid: OpenTK.Platform.IOpenGLComponent.SwapBuffers(OpenTK.Platform.OpenGLContextHandle) + commentId: M:OpenTK.Platform.IOpenGLComponent.SwapBuffers(OpenTK.Platform.OpenGLContextHandle) + parent: OpenTK.Platform.IOpenGLComponent + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_SwapBuffers_OpenTK_Platform_OpenGLContextHandle_ name: SwapBuffers(OpenGLContextHandle) nameWithType: IOpenGLComponent.SwapBuffers(OpenGLContextHandle) - fullName: OpenTK.Core.Platform.IOpenGLComponent.SwapBuffers(OpenTK.Core.Platform.OpenGLContextHandle) + fullName: OpenTK.Platform.IOpenGLComponent.SwapBuffers(OpenTK.Platform.OpenGLContextHandle) spec.csharp: - - uid: OpenTK.Core.Platform.IOpenGLComponent.SwapBuffers(OpenTK.Core.Platform.OpenGLContextHandle) + - uid: OpenTK.Platform.IOpenGLComponent.SwapBuffers(OpenTK.Platform.OpenGLContextHandle) name: SwapBuffers - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_SwapBuffers_OpenTK_Core_Platform_OpenGLContextHandle_ + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_SwapBuffers_OpenTK_Platform_OpenGLContextHandle_ - name: ( - - uid: OpenTK.Core.Platform.OpenGLContextHandle + - uid: OpenTK.Platform.OpenGLContextHandle name: OpenGLContextHandle - href: OpenTK.Core.Platform.OpenGLContextHandle.html + href: OpenTK.Platform.OpenGLContextHandle.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IOpenGLComponent.SwapBuffers(OpenTK.Core.Platform.OpenGLContextHandle) + - uid: OpenTK.Platform.IOpenGLComponent.SwapBuffers(OpenTK.Platform.OpenGLContextHandle) name: SwapBuffers - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_SwapBuffers_OpenTK_Core_Platform_OpenGLContextHandle_ + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_SwapBuffers_OpenTK_Platform_OpenGLContextHandle_ - name: ( - - uid: OpenTK.Core.Platform.OpenGLContextHandle + - uid: OpenTK.Platform.OpenGLContextHandle name: OpenGLContextHandle - href: OpenTK.Core.Platform.OpenGLContextHandle.html + href: OpenTK.Platform.OpenGLContextHandle.html - name: ) diff --git a/api/OpenTK.Platform.Native.SDL.SDLShellComponent.yml b/api/OpenTK.Platform.Native.SDL.SDLShellComponent.yml index 5fdaad37..e0bd262d 100644 --- a/api/OpenTK.Platform.Native.SDL.SDLShellComponent.yml +++ b/api/OpenTK.Platform.Native.SDL.SDLShellComponent.yml @@ -6,10 +6,10 @@ items: parent: OpenTK.Platform.Native.SDL children: - OpenTK.Platform.Native.SDL.SDLShellComponent.AllowScreenSaver(System.Boolean) - - OpenTK.Platform.Native.SDL.SDLShellComponent.GetBatteryInfo(OpenTK.Core.Platform.BatteryInfo@) + - OpenTK.Platform.Native.SDL.SDLShellComponent.GetBatteryInfo(OpenTK.Platform.BatteryInfo@) - OpenTK.Platform.Native.SDL.SDLShellComponent.GetPreferredTheme - OpenTK.Platform.Native.SDL.SDLShellComponent.GetSystemMemoryInformation - - OpenTK.Platform.Native.SDL.SDLShellComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + - OpenTK.Platform.Native.SDL.SDLShellComponent.Initialize(OpenTK.Platform.ToolkitOptions) - OpenTK.Platform.Native.SDL.SDLShellComponent.Logger - OpenTK.Platform.Native.SDL.SDLShellComponent.Name - OpenTK.Platform.Native.SDL.SDLShellComponent.Provides @@ -21,15 +21,11 @@ items: fullName: OpenTK.Platform.Native.SDL.SDLShellComponent type: Class source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLShellComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SDLShellComponent - path: opentk/src/OpenTK.Platform.Native/SDL/SDLShellComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLShellComponent.cs startLine: 12 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL syntax: content: 'public class SDLShellComponent : IShellComponent, IPalComponent' @@ -37,8 +33,8 @@ items: inheritance: - System.Object implements: - - OpenTK.Core.Platform.IShellComponent - - OpenTK.Core.Platform.IPalComponent + - OpenTK.Platform.IShellComponent + - OpenTK.Platform.IPalComponent inheritedMembers: - System.Object.Equals(System.Object) - System.Object.Equals(System.Object,System.Object) @@ -59,15 +55,11 @@ items: fullName: OpenTK.Platform.Native.SDL.SDLShellComponent.Name type: Property source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLShellComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Name - path: opentk/src/OpenTK.Platform.Native/SDL/SDLShellComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLShellComponent.cs startLine: 15 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: Name of the abstraction layer component. example: [] @@ -79,7 +71,7 @@ items: content.vb: Public ReadOnly Property Name As String overload: OpenTK.Platform.Native.SDL.SDLShellComponent.Name* implements: - - OpenTK.Core.Platform.IPalComponent.Name + - OpenTK.Platform.IPalComponent.Name - uid: OpenTK.Platform.Native.SDL.SDLShellComponent.Provides commentId: P:OpenTK.Platform.Native.SDL.SDLShellComponent.Provides id: Provides @@ -92,15 +84,11 @@ items: fullName: OpenTK.Platform.Native.SDL.SDLShellComponent.Provides type: Property source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLShellComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Provides - path: opentk/src/OpenTK.Platform.Native/SDL/SDLShellComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLShellComponent.cs startLine: 18 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: Specifies which PAL components this object provides. example: [] @@ -108,11 +96,11 @@ items: content: public PalComponents Provides { get; } parameters: [] return: - type: OpenTK.Core.Platform.PalComponents + type: OpenTK.Platform.PalComponents content.vb: Public ReadOnly Property Provides As PalComponents overload: OpenTK.Platform.Native.SDL.SDLShellComponent.Provides* implements: - - OpenTK.Core.Platform.IPalComponent.Provides + - OpenTK.Platform.IPalComponent.Provides - uid: OpenTK.Platform.Native.SDL.SDLShellComponent.Logger commentId: P:OpenTK.Platform.Native.SDL.SDLShellComponent.Logger id: Logger @@ -125,15 +113,11 @@ items: fullName: OpenTK.Platform.Native.SDL.SDLShellComponent.Logger type: Property source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLShellComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Logger - path: opentk/src/OpenTK.Platform.Native/SDL/SDLShellComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLShellComponent.cs startLine: 21 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: Provides a logger for this component. example: [] @@ -145,28 +129,24 @@ items: content.vb: Public Property Logger As ILogger overload: OpenTK.Platform.Native.SDL.SDLShellComponent.Logger* implements: - - OpenTK.Core.Platform.IPalComponent.Logger -- uid: OpenTK.Platform.Native.SDL.SDLShellComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - commentId: M:OpenTK.Platform.Native.SDL.SDLShellComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - id: Initialize(OpenTK.Core.Platform.ToolkitOptions) + - OpenTK.Platform.IPalComponent.Logger +- uid: OpenTK.Platform.Native.SDL.SDLShellComponent.Initialize(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Native.SDL.SDLShellComponent.Initialize(OpenTK.Platform.ToolkitOptions) + id: Initialize(OpenTK.Platform.ToolkitOptions) parent: OpenTK.Platform.Native.SDL.SDLShellComponent langs: - csharp - vb name: Initialize(ToolkitOptions) nameWithType: SDLShellComponent.Initialize(ToolkitOptions) - fullName: OpenTK.Platform.Native.SDL.SDLShellComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + fullName: OpenTK.Platform.Native.SDL.SDLShellComponent.Initialize(OpenTK.Platform.ToolkitOptions) type: Method source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLShellComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Initialize - path: opentk/src/OpenTK.Platform.Native/SDL/SDLShellComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLShellComponent.cs startLine: 24 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: Initialize the component. example: [] @@ -174,12 +154,12 @@ items: content: public void Initialize(ToolkitOptions options) parameters: - id: options - type: OpenTK.Core.Platform.ToolkitOptions + type: OpenTK.Platform.ToolkitOptions description: The options to initialize the component with. content.vb: Public Sub Initialize(options As ToolkitOptions) overload: OpenTK.Platform.Native.SDL.SDLShellComponent.Initialize* implements: - - OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + - OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) - uid: OpenTK.Platform.Native.SDL.SDLShellComponent.AllowScreenSaver(System.Boolean) commentId: M:OpenTK.Platform.Native.SDL.SDLShellComponent.AllowScreenSaver(System.Boolean) id: AllowScreenSaver(System.Boolean) @@ -192,15 +172,11 @@ items: fullName: OpenTK.Platform.Native.SDL.SDLShellComponent.AllowScreenSaver(bool) type: Method source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLShellComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: AllowScreenSaver - path: opentk/src/OpenTK.Platform.Native/SDL/SDLShellComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLShellComponent.cs startLine: 29 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: >- Sets whether or not a screensaver is allowed to draw on top of the window. @@ -220,31 +196,27 @@ items: content.vb: Public Sub AllowScreenSaver(allow As Boolean) overload: OpenTK.Platform.Native.SDL.SDLShellComponent.AllowScreenSaver* implements: - - OpenTK.Core.Platform.IShellComponent.AllowScreenSaver(System.Boolean) + - OpenTK.Platform.IShellComponent.AllowScreenSaver(System.Boolean) nameWithType.vb: SDLShellComponent.AllowScreenSaver(Boolean) fullName.vb: OpenTK.Platform.Native.SDL.SDLShellComponent.AllowScreenSaver(Boolean) name.vb: AllowScreenSaver(Boolean) -- uid: OpenTK.Platform.Native.SDL.SDLShellComponent.GetBatteryInfo(OpenTK.Core.Platform.BatteryInfo@) - commentId: M:OpenTK.Platform.Native.SDL.SDLShellComponent.GetBatteryInfo(OpenTK.Core.Platform.BatteryInfo@) - id: GetBatteryInfo(OpenTK.Core.Platform.BatteryInfo@) +- uid: OpenTK.Platform.Native.SDL.SDLShellComponent.GetBatteryInfo(OpenTK.Platform.BatteryInfo@) + commentId: M:OpenTK.Platform.Native.SDL.SDLShellComponent.GetBatteryInfo(OpenTK.Platform.BatteryInfo@) + id: GetBatteryInfo(OpenTK.Platform.BatteryInfo@) parent: OpenTK.Platform.Native.SDL.SDLShellComponent langs: - csharp - vb name: GetBatteryInfo(out BatteryInfo) nameWithType: SDLShellComponent.GetBatteryInfo(out BatteryInfo) - fullName: OpenTK.Platform.Native.SDL.SDLShellComponent.GetBatteryInfo(out OpenTK.Core.Platform.BatteryInfo) + fullName: OpenTK.Platform.Native.SDL.SDLShellComponent.GetBatteryInfo(out OpenTK.Platform.BatteryInfo) type: Method source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLShellComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetBatteryInfo - path: opentk/src/OpenTK.Platform.Native/SDL/SDLShellComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLShellComponent.cs startLine: 42 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: Gets the battery status of the computer. example: [] @@ -252,19 +224,19 @@ items: content: public BatteryStatus GetBatteryInfo(out BatteryInfo batteryInfo) parameters: - id: batteryInfo - type: OpenTK.Core.Platform.BatteryInfo + type: OpenTK.Platform.BatteryInfo description: >- The battery status of the computer, - this is only filled with values when is returned. + this is only filled with values when is returned. return: - type: OpenTK.Core.Platform.BatteryStatus + type: OpenTK.Platform.BatteryStatus description: Whether the computer has a battery or not, or if this function failed. content.vb: Public Function GetBatteryInfo(batteryInfo As BatteryInfo) As BatteryStatus overload: OpenTK.Platform.Native.SDL.SDLShellComponent.GetBatteryInfo* implements: - - OpenTK.Core.Platform.IShellComponent.GetBatteryInfo(OpenTK.Core.Platform.BatteryInfo@) + - OpenTK.Platform.IShellComponent.GetBatteryInfo(OpenTK.Platform.BatteryInfo@) nameWithType.vb: SDLShellComponent.GetBatteryInfo(BatteryInfo) - fullName.vb: OpenTK.Platform.Native.SDL.SDLShellComponent.GetBatteryInfo(OpenTK.Core.Platform.BatteryInfo) + fullName.vb: OpenTK.Platform.Native.SDL.SDLShellComponent.GetBatteryInfo(OpenTK.Platform.BatteryInfo) name.vb: GetBatteryInfo(BatteryInfo) - uid: OpenTK.Platform.Native.SDL.SDLShellComponent.GetPreferredTheme commentId: M:OpenTK.Platform.Native.SDL.SDLShellComponent.GetPreferredTheme @@ -278,27 +250,23 @@ items: fullName: OpenTK.Platform.Native.SDL.SDLShellComponent.GetPreferredTheme() type: Method source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLShellComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetPreferredTheme - path: opentk/src/OpenTK.Platform.Native/SDL/SDLShellComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLShellComponent.cs startLine: 78 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: Gets the user preference for application theme. example: [] syntax: content: public ThemeInfo GetPreferredTheme() return: - type: OpenTK.Core.Platform.ThemeInfo + type: OpenTK.Platform.ThemeInfo description: The user set preferred theme. content.vb: Public Function GetPreferredTheme() As ThemeInfo overload: OpenTK.Platform.Native.SDL.SDLShellComponent.GetPreferredTheme* implements: - - OpenTK.Core.Platform.IShellComponent.GetPreferredTheme + - OpenTK.Platform.IShellComponent.GetPreferredTheme - uid: OpenTK.Platform.Native.SDL.SDLShellComponent.GetSystemMemoryInformation commentId: M:OpenTK.Platform.Native.SDL.SDLShellComponent.GetSystemMemoryInformation id: GetSystemMemoryInformation @@ -311,27 +279,23 @@ items: fullName: OpenTK.Platform.Native.SDL.SDLShellComponent.GetSystemMemoryInformation() type: Method source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLShellComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetSystemMemoryInformation - path: opentk/src/OpenTK.Platform.Native/SDL/SDLShellComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLShellComponent.cs startLine: 90 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: Gets information about the memory of the device and the current status. example: [] syntax: content: public SystemMemoryInfo GetSystemMemoryInformation() return: - type: OpenTK.Core.Platform.SystemMemoryInfo + type: OpenTK.Platform.SystemMemoryInfo description: The memory info. content.vb: Public Function GetSystemMemoryInformation() As SystemMemoryInfo overload: OpenTK.Platform.Native.SDL.SDLShellComponent.GetSystemMemoryInformation* implements: - - OpenTK.Core.Platform.IShellComponent.GetSystemMemoryInformation + - OpenTK.Platform.IShellComponent.GetSystemMemoryInformation references: - uid: OpenTK.Platform.Native.SDL commentId: N:OpenTK.Platform.Native.SDL @@ -382,20 +346,20 @@ references: nameWithType.vb: Object fullName.vb: Object name.vb: Object -- uid: OpenTK.Core.Platform.IShellComponent - commentId: T:OpenTK.Core.Platform.IShellComponent - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.IShellComponent.html +- uid: OpenTK.Platform.IShellComponent + commentId: T:OpenTK.Platform.IShellComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IShellComponent.html name: IShellComponent nameWithType: IShellComponent - fullName: OpenTK.Core.Platform.IShellComponent -- uid: OpenTK.Core.Platform.IPalComponent - commentId: T:OpenTK.Core.Platform.IPalComponent - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.IPalComponent.html + fullName: OpenTK.Platform.IShellComponent +- uid: OpenTK.Platform.IPalComponent + commentId: T:OpenTK.Platform.IPalComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IPalComponent.html name: IPalComponent nameWithType: IPalComponent - fullName: OpenTK.Core.Platform.IPalComponent + fullName: OpenTK.Platform.IPalComponent - uid: System.Object.Equals(System.Object) commentId: M:System.Object.Equals(System.Object) parent: System.Object @@ -622,49 +586,41 @@ references: name: System nameWithType: System fullName: System -- uid: OpenTK.Core.Platform - commentId: N:OpenTK.Core.Platform +- uid: OpenTK.Platform + commentId: N:OpenTK.Platform href: OpenTK.html - name: OpenTK.Core.Platform - nameWithType: OpenTK.Core.Platform - fullName: OpenTK.Core.Platform + name: OpenTK.Platform + nameWithType: OpenTK.Platform + fullName: OpenTK.Platform spec.csharp: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html spec.vb: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html - uid: OpenTK.Platform.Native.SDL.SDLShellComponent.Name* commentId: Overload:OpenTK.Platform.Native.SDL.SDLShellComponent.Name href: OpenTK.Platform.Native.SDL.SDLShellComponent.html#OpenTK_Platform_Native_SDL_SDLShellComponent_Name name: Name nameWithType: SDLShellComponent.Name fullName: OpenTK.Platform.Native.SDL.SDLShellComponent.Name -- uid: OpenTK.Core.Platform.IPalComponent.Name - commentId: P:OpenTK.Core.Platform.IPalComponent.Name - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Name +- uid: OpenTK.Platform.IPalComponent.Name + commentId: P:OpenTK.Platform.IPalComponent.Name + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Name name: Name nameWithType: IPalComponent.Name - fullName: OpenTK.Core.Platform.IPalComponent.Name + fullName: OpenTK.Platform.IPalComponent.Name - uid: System.String commentId: T:System.String parent: System @@ -682,33 +638,33 @@ references: name: Provides nameWithType: SDLShellComponent.Provides fullName: OpenTK.Platform.Native.SDL.SDLShellComponent.Provides -- uid: OpenTK.Core.Platform.IPalComponent.Provides - commentId: P:OpenTK.Core.Platform.IPalComponent.Provides - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Provides +- uid: OpenTK.Platform.IPalComponent.Provides + commentId: P:OpenTK.Platform.IPalComponent.Provides + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Provides name: Provides nameWithType: IPalComponent.Provides - fullName: OpenTK.Core.Platform.IPalComponent.Provides -- uid: OpenTK.Core.Platform.PalComponents - commentId: T:OpenTK.Core.Platform.PalComponents - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.PalComponents.html + fullName: OpenTK.Platform.IPalComponent.Provides +- uid: OpenTK.Platform.PalComponents + commentId: T:OpenTK.Platform.PalComponents + parent: OpenTK.Platform + href: OpenTK.Platform.PalComponents.html name: PalComponents nameWithType: PalComponents - fullName: OpenTK.Core.Platform.PalComponents + fullName: OpenTK.Platform.PalComponents - uid: OpenTK.Platform.Native.SDL.SDLShellComponent.Logger* commentId: Overload:OpenTK.Platform.Native.SDL.SDLShellComponent.Logger href: OpenTK.Platform.Native.SDL.SDLShellComponent.html#OpenTK_Platform_Native_SDL_SDLShellComponent_Logger name: Logger nameWithType: SDLShellComponent.Logger fullName: OpenTK.Platform.Native.SDL.SDLShellComponent.Logger -- uid: OpenTK.Core.Platform.IPalComponent.Logger - commentId: P:OpenTK.Core.Platform.IPalComponent.Logger - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Logger +- uid: OpenTK.Platform.IPalComponent.Logger + commentId: P:OpenTK.Platform.IPalComponent.Logger + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Logger name: Logger nameWithType: IPalComponent.Logger - fullName: OpenTK.Core.Platform.IPalComponent.Logger + fullName: OpenTK.Platform.IPalComponent.Logger - uid: OpenTK.Core.Utility.ILogger commentId: T:OpenTK.Core.Utility.ILogger parent: OpenTK.Core.Utility @@ -748,63 +704,63 @@ references: href: OpenTK.Core.Utility.html - uid: OpenTK.Platform.Native.SDL.SDLShellComponent.Initialize* commentId: Overload:OpenTK.Platform.Native.SDL.SDLShellComponent.Initialize - href: OpenTK.Platform.Native.SDL.SDLShellComponent.html#OpenTK_Platform_Native_SDL_SDLShellComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + href: OpenTK.Platform.Native.SDL.SDLShellComponent.html#OpenTK_Platform_Native_SDL_SDLShellComponent_Initialize_OpenTK_Platform_ToolkitOptions_ name: Initialize nameWithType: SDLShellComponent.Initialize fullName: OpenTK.Platform.Native.SDL.SDLShellComponent.Initialize -- uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - commentId: M:OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ +- uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ name: Initialize(ToolkitOptions) nameWithType: IPalComponent.Initialize(ToolkitOptions) - fullName: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + fullName: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) spec.csharp: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + - uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.ToolkitOptions + - uid: OpenTK.Platform.ToolkitOptions name: ToolkitOptions - href: OpenTK.Core.Platform.ToolkitOptions.html + href: OpenTK.Platform.ToolkitOptions.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + - uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.ToolkitOptions + - uid: OpenTK.Platform.ToolkitOptions name: ToolkitOptions - href: OpenTK.Core.Platform.ToolkitOptions.html + href: OpenTK.Platform.ToolkitOptions.html - name: ) -- uid: OpenTK.Core.Platform.ToolkitOptions - commentId: T:OpenTK.Core.Platform.ToolkitOptions - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.ToolkitOptions.html +- uid: OpenTK.Platform.ToolkitOptions + commentId: T:OpenTK.Platform.ToolkitOptions + parent: OpenTK.Platform + href: OpenTK.Platform.ToolkitOptions.html name: ToolkitOptions nameWithType: ToolkitOptions - fullName: OpenTK.Core.Platform.ToolkitOptions + fullName: OpenTK.Platform.ToolkitOptions - uid: OpenTK.Platform.Native.SDL.SDLShellComponent.AllowScreenSaver* commentId: Overload:OpenTK.Platform.Native.SDL.SDLShellComponent.AllowScreenSaver href: OpenTK.Platform.Native.SDL.SDLShellComponent.html#OpenTK_Platform_Native_SDL_SDLShellComponent_AllowScreenSaver_System_Boolean_ name: AllowScreenSaver nameWithType: SDLShellComponent.AllowScreenSaver fullName: OpenTK.Platform.Native.SDL.SDLShellComponent.AllowScreenSaver -- uid: OpenTK.Core.Platform.IShellComponent.AllowScreenSaver(System.Boolean) - commentId: M:OpenTK.Core.Platform.IShellComponent.AllowScreenSaver(System.Boolean) - parent: OpenTK.Core.Platform.IShellComponent +- uid: OpenTK.Platform.IShellComponent.AllowScreenSaver(System.Boolean) + commentId: M:OpenTK.Platform.IShellComponent.AllowScreenSaver(System.Boolean) + parent: OpenTK.Platform.IShellComponent isExternal: true - href: OpenTK.Core.Platform.IShellComponent.html#OpenTK_Core_Platform_IShellComponent_AllowScreenSaver_System_Boolean_ + href: OpenTK.Platform.IShellComponent.html#OpenTK_Platform_IShellComponent_AllowScreenSaver_System_Boolean_ name: AllowScreenSaver(bool) nameWithType: IShellComponent.AllowScreenSaver(bool) - fullName: OpenTK.Core.Platform.IShellComponent.AllowScreenSaver(bool) + fullName: OpenTK.Platform.IShellComponent.AllowScreenSaver(bool) nameWithType.vb: IShellComponent.AllowScreenSaver(Boolean) - fullName.vb: OpenTK.Core.Platform.IShellComponent.AllowScreenSaver(Boolean) + fullName.vb: OpenTK.Platform.IShellComponent.AllowScreenSaver(Boolean) name.vb: AllowScreenSaver(Boolean) spec.csharp: - - uid: OpenTK.Core.Platform.IShellComponent.AllowScreenSaver(System.Boolean) + - uid: OpenTK.Platform.IShellComponent.AllowScreenSaver(System.Boolean) name: AllowScreenSaver - href: OpenTK.Core.Platform.IShellComponent.html#OpenTK_Core_Platform_IShellComponent_AllowScreenSaver_System_Boolean_ + href: OpenTK.Platform.IShellComponent.html#OpenTK_Platform_IShellComponent_AllowScreenSaver_System_Boolean_ - name: ( - uid: System.Boolean name: bool @@ -812,9 +768,9 @@ references: href: https://learn.microsoft.com/dotnet/api/system.boolean - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IShellComponent.AllowScreenSaver(System.Boolean) + - uid: OpenTK.Platform.IShellComponent.AllowScreenSaver(System.Boolean) name: AllowScreenSaver - href: OpenTK.Core.Platform.IShellComponent.html#OpenTK_Core_Platform_IShellComponent_AllowScreenSaver_System_Boolean_ + href: OpenTK.Platform.IShellComponent.html#OpenTK_Platform_IShellComponent_AllowScreenSaver_System_Boolean_ - name: ( - uid: System.Boolean name: Boolean @@ -832,123 +788,123 @@ references: nameWithType.vb: Boolean fullName.vb: Boolean name.vb: Boolean -- uid: OpenTK.Core.Platform.BatteryStatus.HasSystemBattery - commentId: F:OpenTK.Core.Platform.BatteryStatus.HasSystemBattery - href: OpenTK.Core.Platform.BatteryStatus.html#OpenTK_Core_Platform_BatteryStatus_HasSystemBattery +- uid: OpenTK.Platform.BatteryStatus.HasSystemBattery + commentId: F:OpenTK.Platform.BatteryStatus.HasSystemBattery + href: OpenTK.Platform.BatteryStatus.html#OpenTK_Platform_BatteryStatus_HasSystemBattery name: HasSystemBattery nameWithType: BatteryStatus.HasSystemBattery - fullName: OpenTK.Core.Platform.BatteryStatus.HasSystemBattery + fullName: OpenTK.Platform.BatteryStatus.HasSystemBattery - uid: OpenTK.Platform.Native.SDL.SDLShellComponent.GetBatteryInfo* commentId: Overload:OpenTK.Platform.Native.SDL.SDLShellComponent.GetBatteryInfo - href: OpenTK.Platform.Native.SDL.SDLShellComponent.html#OpenTK_Platform_Native_SDL_SDLShellComponent_GetBatteryInfo_OpenTK_Core_Platform_BatteryInfo__ + href: OpenTK.Platform.Native.SDL.SDLShellComponent.html#OpenTK_Platform_Native_SDL_SDLShellComponent_GetBatteryInfo_OpenTK_Platform_BatteryInfo__ name: GetBatteryInfo nameWithType: SDLShellComponent.GetBatteryInfo fullName: OpenTK.Platform.Native.SDL.SDLShellComponent.GetBatteryInfo -- uid: OpenTK.Core.Platform.IShellComponent.GetBatteryInfo(OpenTK.Core.Platform.BatteryInfo@) - commentId: M:OpenTK.Core.Platform.IShellComponent.GetBatteryInfo(OpenTK.Core.Platform.BatteryInfo@) - parent: OpenTK.Core.Platform.IShellComponent - href: OpenTK.Core.Platform.IShellComponent.html#OpenTK_Core_Platform_IShellComponent_GetBatteryInfo_OpenTK_Core_Platform_BatteryInfo__ +- uid: OpenTK.Platform.IShellComponent.GetBatteryInfo(OpenTK.Platform.BatteryInfo@) + commentId: M:OpenTK.Platform.IShellComponent.GetBatteryInfo(OpenTK.Platform.BatteryInfo@) + parent: OpenTK.Platform.IShellComponent + href: OpenTK.Platform.IShellComponent.html#OpenTK_Platform_IShellComponent_GetBatteryInfo_OpenTK_Platform_BatteryInfo__ name: GetBatteryInfo(out BatteryInfo) nameWithType: IShellComponent.GetBatteryInfo(out BatteryInfo) - fullName: OpenTK.Core.Platform.IShellComponent.GetBatteryInfo(out OpenTK.Core.Platform.BatteryInfo) + fullName: OpenTK.Platform.IShellComponent.GetBatteryInfo(out OpenTK.Platform.BatteryInfo) nameWithType.vb: IShellComponent.GetBatteryInfo(BatteryInfo) - fullName.vb: OpenTK.Core.Platform.IShellComponent.GetBatteryInfo(OpenTK.Core.Platform.BatteryInfo) + fullName.vb: OpenTK.Platform.IShellComponent.GetBatteryInfo(OpenTK.Platform.BatteryInfo) name.vb: GetBatteryInfo(BatteryInfo) spec.csharp: - - uid: OpenTK.Core.Platform.IShellComponent.GetBatteryInfo(OpenTK.Core.Platform.BatteryInfo@) + - uid: OpenTK.Platform.IShellComponent.GetBatteryInfo(OpenTK.Platform.BatteryInfo@) name: GetBatteryInfo - href: OpenTK.Core.Platform.IShellComponent.html#OpenTK_Core_Platform_IShellComponent_GetBatteryInfo_OpenTK_Core_Platform_BatteryInfo__ + href: OpenTK.Platform.IShellComponent.html#OpenTK_Platform_IShellComponent_GetBatteryInfo_OpenTK_Platform_BatteryInfo__ - name: ( - name: out - name: " " - - uid: OpenTK.Core.Platform.BatteryInfo + - uid: OpenTK.Platform.BatteryInfo name: BatteryInfo - href: OpenTK.Core.Platform.BatteryInfo.html + href: OpenTK.Platform.BatteryInfo.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IShellComponent.GetBatteryInfo(OpenTK.Core.Platform.BatteryInfo@) + - uid: OpenTK.Platform.IShellComponent.GetBatteryInfo(OpenTK.Platform.BatteryInfo@) name: GetBatteryInfo - href: OpenTK.Core.Platform.IShellComponent.html#OpenTK_Core_Platform_IShellComponent_GetBatteryInfo_OpenTK_Core_Platform_BatteryInfo__ + href: OpenTK.Platform.IShellComponent.html#OpenTK_Platform_IShellComponent_GetBatteryInfo_OpenTK_Platform_BatteryInfo__ - name: ( - - uid: OpenTK.Core.Platform.BatteryInfo + - uid: OpenTK.Platform.BatteryInfo name: BatteryInfo - href: OpenTK.Core.Platform.BatteryInfo.html + href: OpenTK.Platform.BatteryInfo.html - name: ) -- uid: OpenTK.Core.Platform.BatteryInfo - commentId: T:OpenTK.Core.Platform.BatteryInfo - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.BatteryInfo.html +- uid: OpenTK.Platform.BatteryInfo + commentId: T:OpenTK.Platform.BatteryInfo + parent: OpenTK.Platform + href: OpenTK.Platform.BatteryInfo.html name: BatteryInfo nameWithType: BatteryInfo - fullName: OpenTK.Core.Platform.BatteryInfo -- uid: OpenTK.Core.Platform.BatteryStatus - commentId: T:OpenTK.Core.Platform.BatteryStatus - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.BatteryStatus.html + fullName: OpenTK.Platform.BatteryInfo +- uid: OpenTK.Platform.BatteryStatus + commentId: T:OpenTK.Platform.BatteryStatus + parent: OpenTK.Platform + href: OpenTK.Platform.BatteryStatus.html name: BatteryStatus nameWithType: BatteryStatus - fullName: OpenTK.Core.Platform.BatteryStatus + fullName: OpenTK.Platform.BatteryStatus - uid: OpenTK.Platform.Native.SDL.SDLShellComponent.GetPreferredTheme* commentId: Overload:OpenTK.Platform.Native.SDL.SDLShellComponent.GetPreferredTheme href: OpenTK.Platform.Native.SDL.SDLShellComponent.html#OpenTK_Platform_Native_SDL_SDLShellComponent_GetPreferredTheme name: GetPreferredTheme nameWithType: SDLShellComponent.GetPreferredTheme fullName: OpenTK.Platform.Native.SDL.SDLShellComponent.GetPreferredTheme -- uid: OpenTK.Core.Platform.IShellComponent.GetPreferredTheme - commentId: M:OpenTK.Core.Platform.IShellComponent.GetPreferredTheme - parent: OpenTK.Core.Platform.IShellComponent - href: OpenTK.Core.Platform.IShellComponent.html#OpenTK_Core_Platform_IShellComponent_GetPreferredTheme +- uid: OpenTK.Platform.IShellComponent.GetPreferredTheme + commentId: M:OpenTK.Platform.IShellComponent.GetPreferredTheme + parent: OpenTK.Platform.IShellComponent + href: OpenTK.Platform.IShellComponent.html#OpenTK_Platform_IShellComponent_GetPreferredTheme name: GetPreferredTheme() nameWithType: IShellComponent.GetPreferredTheme() - fullName: OpenTK.Core.Platform.IShellComponent.GetPreferredTheme() + fullName: OpenTK.Platform.IShellComponent.GetPreferredTheme() spec.csharp: - - uid: OpenTK.Core.Platform.IShellComponent.GetPreferredTheme + - uid: OpenTK.Platform.IShellComponent.GetPreferredTheme name: GetPreferredTheme - href: OpenTK.Core.Platform.IShellComponent.html#OpenTK_Core_Platform_IShellComponent_GetPreferredTheme + href: OpenTK.Platform.IShellComponent.html#OpenTK_Platform_IShellComponent_GetPreferredTheme - name: ( - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IShellComponent.GetPreferredTheme + - uid: OpenTK.Platform.IShellComponent.GetPreferredTheme name: GetPreferredTheme - href: OpenTK.Core.Platform.IShellComponent.html#OpenTK_Core_Platform_IShellComponent_GetPreferredTheme + href: OpenTK.Platform.IShellComponent.html#OpenTK_Platform_IShellComponent_GetPreferredTheme - name: ( - name: ) -- uid: OpenTK.Core.Platform.ThemeInfo - commentId: T:OpenTK.Core.Platform.ThemeInfo - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.ThemeInfo.html +- uid: OpenTK.Platform.ThemeInfo + commentId: T:OpenTK.Platform.ThemeInfo + parent: OpenTK.Platform + href: OpenTK.Platform.ThemeInfo.html name: ThemeInfo nameWithType: ThemeInfo - fullName: OpenTK.Core.Platform.ThemeInfo + fullName: OpenTK.Platform.ThemeInfo - uid: OpenTK.Platform.Native.SDL.SDLShellComponent.GetSystemMemoryInformation* commentId: Overload:OpenTK.Platform.Native.SDL.SDLShellComponent.GetSystemMemoryInformation href: OpenTK.Platform.Native.SDL.SDLShellComponent.html#OpenTK_Platform_Native_SDL_SDLShellComponent_GetSystemMemoryInformation name: GetSystemMemoryInformation nameWithType: SDLShellComponent.GetSystemMemoryInformation fullName: OpenTK.Platform.Native.SDL.SDLShellComponent.GetSystemMemoryInformation -- uid: OpenTK.Core.Platform.IShellComponent.GetSystemMemoryInformation - commentId: M:OpenTK.Core.Platform.IShellComponent.GetSystemMemoryInformation - parent: OpenTK.Core.Platform.IShellComponent - href: OpenTK.Core.Platform.IShellComponent.html#OpenTK_Core_Platform_IShellComponent_GetSystemMemoryInformation +- uid: OpenTK.Platform.IShellComponent.GetSystemMemoryInformation + commentId: M:OpenTK.Platform.IShellComponent.GetSystemMemoryInformation + parent: OpenTK.Platform.IShellComponent + href: OpenTK.Platform.IShellComponent.html#OpenTK_Platform_IShellComponent_GetSystemMemoryInformation name: GetSystemMemoryInformation() nameWithType: IShellComponent.GetSystemMemoryInformation() - fullName: OpenTK.Core.Platform.IShellComponent.GetSystemMemoryInformation() + fullName: OpenTK.Platform.IShellComponent.GetSystemMemoryInformation() spec.csharp: - - uid: OpenTK.Core.Platform.IShellComponent.GetSystemMemoryInformation + - uid: OpenTK.Platform.IShellComponent.GetSystemMemoryInformation name: GetSystemMemoryInformation - href: OpenTK.Core.Platform.IShellComponent.html#OpenTK_Core_Platform_IShellComponent_GetSystemMemoryInformation + href: OpenTK.Platform.IShellComponent.html#OpenTK_Platform_IShellComponent_GetSystemMemoryInformation - name: ( - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IShellComponent.GetSystemMemoryInformation + - uid: OpenTK.Platform.IShellComponent.GetSystemMemoryInformation name: GetSystemMemoryInformation - href: OpenTK.Core.Platform.IShellComponent.html#OpenTK_Core_Platform_IShellComponent_GetSystemMemoryInformation + href: OpenTK.Platform.IShellComponent.html#OpenTK_Platform_IShellComponent_GetSystemMemoryInformation - name: ( - name: ) -- uid: OpenTK.Core.Platform.SystemMemoryInfo - commentId: T:OpenTK.Core.Platform.SystemMemoryInfo - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.SystemMemoryInfo.html +- uid: OpenTK.Platform.SystemMemoryInfo + commentId: T:OpenTK.Platform.SystemMemoryInfo + parent: OpenTK.Platform + href: OpenTK.Platform.SystemMemoryInfo.html name: SystemMemoryInfo nameWithType: SystemMemoryInfo - fullName: OpenTK.Core.Platform.SystemMemoryInfo + fullName: OpenTK.Platform.SystemMemoryInfo diff --git a/api/OpenTK.Platform.Native.SDL.SDLWindowComponent.yml b/api/OpenTK.Platform.Native.SDL.SDLWindowComponent.yml index 07a63ffa..0d61d94b 100644 --- a/api/OpenTK.Platform.Native.SDL.SDLWindowComponent.yml +++ b/api/OpenTK.Platform.Native.SDL.SDLWindowComponent.yml @@ -9,55 +9,55 @@ items: - OpenTK.Platform.Native.SDL.SDLWindowComponent.CanGetDisplay - OpenTK.Platform.Native.SDL.SDLWindowComponent.CanSetCursor - OpenTK.Platform.Native.SDL.SDLWindowComponent.CanSetIcon - - OpenTK.Platform.Native.SDL.SDLWindowComponent.ClientToScreen(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) - - OpenTK.Platform.Native.SDL.SDLWindowComponent.Create(OpenTK.Core.Platform.GraphicsApiHints) - - OpenTK.Platform.Native.SDL.SDLWindowComponent.Destroy(OpenTK.Core.Platform.WindowHandle) - - OpenTK.Platform.Native.SDL.SDLWindowComponent.FocusWindow(OpenTK.Core.Platform.WindowHandle) - - OpenTK.Platform.Native.SDL.SDLWindowComponent.GetBorderStyle(OpenTK.Core.Platform.WindowHandle) - - OpenTK.Platform.Native.SDL.SDLWindowComponent.GetBounds(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) - - OpenTK.Platform.Native.SDL.SDLWindowComponent.GetClientBounds(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) - - OpenTK.Platform.Native.SDL.SDLWindowComponent.GetClientPosition(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) - - OpenTK.Platform.Native.SDL.SDLWindowComponent.GetClientSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) - - OpenTK.Platform.Native.SDL.SDLWindowComponent.GetCursorCaptureMode(OpenTK.Core.Platform.WindowHandle) - - OpenTK.Platform.Native.SDL.SDLWindowComponent.GetDisplay(OpenTK.Core.Platform.WindowHandle) - - OpenTK.Platform.Native.SDL.SDLWindowComponent.GetFramebufferSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) - - OpenTK.Platform.Native.SDL.SDLWindowComponent.GetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle@) - - OpenTK.Platform.Native.SDL.SDLWindowComponent.GetIcon(OpenTK.Core.Platform.WindowHandle) - - OpenTK.Platform.Native.SDL.SDLWindowComponent.GetMaxClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) - - OpenTK.Platform.Native.SDL.SDLWindowComponent.GetMinClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) - - OpenTK.Platform.Native.SDL.SDLWindowComponent.GetMode(OpenTK.Core.Platform.WindowHandle) - - OpenTK.Platform.Native.SDL.SDLWindowComponent.GetPosition(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) - - OpenTK.Platform.Native.SDL.SDLWindowComponent.GetScaleFactor(OpenTK.Core.Platform.WindowHandle,System.Single@,System.Single@) - - OpenTK.Platform.Native.SDL.SDLWindowComponent.GetSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) - - OpenTK.Platform.Native.SDL.SDLWindowComponent.GetTitle(OpenTK.Core.Platform.WindowHandle) - - OpenTK.Platform.Native.SDL.SDLWindowComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - - OpenTK.Platform.Native.SDL.SDLWindowComponent.IsAlwaysOnTop(OpenTK.Core.Platform.WindowHandle) - - OpenTK.Platform.Native.SDL.SDLWindowComponent.IsFocused(OpenTK.Core.Platform.WindowHandle) - - OpenTK.Platform.Native.SDL.SDLWindowComponent.IsWindowDestroyed(OpenTK.Core.Platform.WindowHandle) + - OpenTK.Platform.Native.SDL.SDLWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) + - OpenTK.Platform.Native.SDL.SDLWindowComponent.Create(OpenTK.Platform.GraphicsApiHints) + - OpenTK.Platform.Native.SDL.SDLWindowComponent.Destroy(OpenTK.Platform.WindowHandle) + - OpenTK.Platform.Native.SDL.SDLWindowComponent.FocusWindow(OpenTK.Platform.WindowHandle) + - OpenTK.Platform.Native.SDL.SDLWindowComponent.GetBorderStyle(OpenTK.Platform.WindowHandle) + - OpenTK.Platform.Native.SDL.SDLWindowComponent.GetBounds(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) + - OpenTK.Platform.Native.SDL.SDLWindowComponent.GetClientBounds(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) + - OpenTK.Platform.Native.SDL.SDLWindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + - OpenTK.Platform.Native.SDL.SDLWindowComponent.GetClientSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + - OpenTK.Platform.Native.SDL.SDLWindowComponent.GetCursorCaptureMode(OpenTK.Platform.WindowHandle) + - OpenTK.Platform.Native.SDL.SDLWindowComponent.GetDisplay(OpenTK.Platform.WindowHandle) + - OpenTK.Platform.Native.SDL.SDLWindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + - OpenTK.Platform.Native.SDL.SDLWindowComponent.GetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle@) + - OpenTK.Platform.Native.SDL.SDLWindowComponent.GetIcon(OpenTK.Platform.WindowHandle) + - OpenTK.Platform.Native.SDL.SDLWindowComponent.GetMaxClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) + - OpenTK.Platform.Native.SDL.SDLWindowComponent.GetMinClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) + - OpenTK.Platform.Native.SDL.SDLWindowComponent.GetMode(OpenTK.Platform.WindowHandle) + - OpenTK.Platform.Native.SDL.SDLWindowComponent.GetPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + - OpenTK.Platform.Native.SDL.SDLWindowComponent.GetScaleFactor(OpenTK.Platform.WindowHandle,System.Single@,System.Single@) + - OpenTK.Platform.Native.SDL.SDLWindowComponent.GetSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + - OpenTK.Platform.Native.SDL.SDLWindowComponent.GetTitle(OpenTK.Platform.WindowHandle) + - OpenTK.Platform.Native.SDL.SDLWindowComponent.Initialize(OpenTK.Platform.ToolkitOptions) + - OpenTK.Platform.Native.SDL.SDLWindowComponent.IsAlwaysOnTop(OpenTK.Platform.WindowHandle) + - OpenTK.Platform.Native.SDL.SDLWindowComponent.IsFocused(OpenTK.Platform.WindowHandle) + - OpenTK.Platform.Native.SDL.SDLWindowComponent.IsWindowDestroyed(OpenTK.Platform.WindowHandle) - OpenTK.Platform.Native.SDL.SDLWindowComponent.Logger - OpenTK.Platform.Native.SDL.SDLWindowComponent.Name - OpenTK.Platform.Native.SDL.SDLWindowComponent.ProcessEvents(System.Boolean) - OpenTK.Platform.Native.SDL.SDLWindowComponent.Provides - - OpenTK.Platform.Native.SDL.SDLWindowComponent.RequestAttention(OpenTK.Core.Platform.WindowHandle) - - OpenTK.Platform.Native.SDL.SDLWindowComponent.ScreenToClient(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) - - OpenTK.Platform.Native.SDL.SDLWindowComponent.SetAlwaysOnTop(OpenTK.Core.Platform.WindowHandle,System.Boolean) - - OpenTK.Platform.Native.SDL.SDLWindowComponent.SetBorderStyle(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.WindowBorderStyle) - - OpenTK.Platform.Native.SDL.SDLWindowComponent.SetBounds(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) - - OpenTK.Platform.Native.SDL.SDLWindowComponent.SetClientBounds(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) - - OpenTK.Platform.Native.SDL.SDLWindowComponent.SetClientPosition(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) - - OpenTK.Platform.Native.SDL.SDLWindowComponent.SetClientSize(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) - - OpenTK.Platform.Native.SDL.SDLWindowComponent.SetCursor(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.CursorHandle) - - OpenTK.Platform.Native.SDL.SDLWindowComponent.SetCursorCaptureMode(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.CursorCaptureMode) - - OpenTK.Platform.Native.SDL.SDLWindowComponent.SetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle) - - OpenTK.Platform.Native.SDL.SDLWindowComponent.SetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle,OpenTK.Core.Platform.VideoMode) - - OpenTK.Platform.Native.SDL.SDLWindowComponent.SetHitTestCallback(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.HitTest) - - OpenTK.Platform.Native.SDL.SDLWindowComponent.SetIcon(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.IconHandle) - - OpenTK.Platform.Native.SDL.SDLWindowComponent.SetMaxClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) - - OpenTK.Platform.Native.SDL.SDLWindowComponent.SetMinClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) - - OpenTK.Platform.Native.SDL.SDLWindowComponent.SetMode(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.WindowMode) - - OpenTK.Platform.Native.SDL.SDLWindowComponent.SetPosition(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) - - OpenTK.Platform.Native.SDL.SDLWindowComponent.SetSize(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) - - OpenTK.Platform.Native.SDL.SDLWindowComponent.SetTitle(OpenTK.Core.Platform.WindowHandle,System.String) + - OpenTK.Platform.Native.SDL.SDLWindowComponent.RequestAttention(OpenTK.Platform.WindowHandle) + - OpenTK.Platform.Native.SDL.SDLWindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) + - OpenTK.Platform.Native.SDL.SDLWindowComponent.SetAlwaysOnTop(OpenTK.Platform.WindowHandle,System.Boolean) + - OpenTK.Platform.Native.SDL.SDLWindowComponent.SetBorderStyle(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowBorderStyle) + - OpenTK.Platform.Native.SDL.SDLWindowComponent.SetBounds(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) + - OpenTK.Platform.Native.SDL.SDLWindowComponent.SetClientBounds(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) + - OpenTK.Platform.Native.SDL.SDLWindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) + - OpenTK.Platform.Native.SDL.SDLWindowComponent.SetClientSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) + - OpenTK.Platform.Native.SDL.SDLWindowComponent.SetCursor(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorHandle) + - OpenTK.Platform.Native.SDL.SDLWindowComponent.SetCursorCaptureMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorCaptureMode) + - OpenTK.Platform.Native.SDL.SDLWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle) + - OpenTK.Platform.Native.SDL.SDLWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle,OpenTK.Platform.VideoMode) + - OpenTK.Platform.Native.SDL.SDLWindowComponent.SetHitTestCallback(OpenTK.Platform.WindowHandle,OpenTK.Platform.HitTest) + - OpenTK.Platform.Native.SDL.SDLWindowComponent.SetIcon(OpenTK.Platform.WindowHandle,OpenTK.Platform.IconHandle) + - OpenTK.Platform.Native.SDL.SDLWindowComponent.SetMaxClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) + - OpenTK.Platform.Native.SDL.SDLWindowComponent.SetMinClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) + - OpenTK.Platform.Native.SDL.SDLWindowComponent.SetMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowMode) + - OpenTK.Platform.Native.SDL.SDLWindowComponent.SetPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) + - OpenTK.Platform.Native.SDL.SDLWindowComponent.SetSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) + - OpenTK.Platform.Native.SDL.SDLWindowComponent.SetTitle(OpenTK.Platform.WindowHandle,System.String) - OpenTK.Platform.Native.SDL.SDLWindowComponent.SupportedEvents - OpenTK.Platform.Native.SDL.SDLWindowComponent.SupportedModes - OpenTK.Platform.Native.SDL.SDLWindowComponent.SupportedStyles @@ -69,15 +69,11 @@ items: fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent type: Class source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SDLWindowComponent - path: opentk/src/OpenTK.Platform.Native/SDL/SDLWindowComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLWindowComponent.cs startLine: 15 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL syntax: content: 'public class SDLWindowComponent : IWindowComponent, IPalComponent' @@ -85,8 +81,8 @@ items: inheritance: - System.Object implements: - - OpenTK.Core.Platform.IWindowComponent - - OpenTK.Core.Platform.IPalComponent + - OpenTK.Platform.IWindowComponent + - OpenTK.Platform.IPalComponent inheritedMembers: - System.Object.Equals(System.Object) - System.Object.Equals(System.Object,System.Object) @@ -107,15 +103,11 @@ items: fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.Name type: Property source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Name - path: opentk/src/OpenTK.Platform.Native/SDL/SDLWindowComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLWindowComponent.cs startLine: 20 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: Name of the abstraction layer component. example: [] @@ -127,7 +119,7 @@ items: content.vb: Public ReadOnly Property Name As String overload: OpenTK.Platform.Native.SDL.SDLWindowComponent.Name* implements: - - OpenTK.Core.Platform.IPalComponent.Name + - OpenTK.Platform.IPalComponent.Name - uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.Provides commentId: P:OpenTK.Platform.Native.SDL.SDLWindowComponent.Provides id: Provides @@ -140,15 +132,11 @@ items: fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.Provides type: Property source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Provides - path: opentk/src/OpenTK.Platform.Native/SDL/SDLWindowComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLWindowComponent.cs startLine: 23 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: Specifies which PAL components this object provides. example: [] @@ -156,11 +144,11 @@ items: content: public PalComponents Provides { get; } parameters: [] return: - type: OpenTK.Core.Platform.PalComponents + type: OpenTK.Platform.PalComponents content.vb: Public ReadOnly Property Provides As PalComponents overload: OpenTK.Platform.Native.SDL.SDLWindowComponent.Provides* implements: - - OpenTK.Core.Platform.IPalComponent.Provides + - OpenTK.Platform.IPalComponent.Provides - uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.Logger commentId: P:OpenTK.Platform.Native.SDL.SDLWindowComponent.Logger id: Logger @@ -173,15 +161,11 @@ items: fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.Logger type: Property source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Logger - path: opentk/src/OpenTK.Platform.Native/SDL/SDLWindowComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLWindowComponent.cs startLine: 26 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: Provides a logger for this component. example: [] @@ -193,28 +177,24 @@ items: content.vb: Public Property Logger As ILogger overload: OpenTK.Platform.Native.SDL.SDLWindowComponent.Logger* implements: - - OpenTK.Core.Platform.IPalComponent.Logger -- uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - commentId: M:OpenTK.Platform.Native.SDL.SDLWindowComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - id: Initialize(OpenTK.Core.Platform.ToolkitOptions) + - OpenTK.Platform.IPalComponent.Logger +- uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.Initialize(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Native.SDL.SDLWindowComponent.Initialize(OpenTK.Platform.ToolkitOptions) + id: Initialize(OpenTK.Platform.ToolkitOptions) parent: OpenTK.Platform.Native.SDL.SDLWindowComponent langs: - csharp - vb name: Initialize(ToolkitOptions) nameWithType: SDLWindowComponent.Initialize(ToolkitOptions) - fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.Initialize(OpenTK.Platform.ToolkitOptions) type: Method source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Initialize - path: opentk/src/OpenTK.Platform.Native/SDL/SDLWindowComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLWindowComponent.cs startLine: 29 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: Initialize the component. example: [] @@ -222,12 +202,12 @@ items: content: public void Initialize(ToolkitOptions options) parameters: - id: options - type: OpenTK.Core.Platform.ToolkitOptions + type: OpenTK.Platform.ToolkitOptions description: The options to initialize the component with. content.vb: Public Sub Initialize(options As ToolkitOptions) overload: OpenTK.Platform.Native.SDL.SDLWindowComponent.Initialize* implements: - - OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + - OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) - uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.CanSetIcon commentId: P:OpenTK.Platform.Native.SDL.SDLWindowComponent.CanSetIcon id: CanSetIcon @@ -240,17 +220,13 @@ items: fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.CanSetIcon type: Property source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CanSetIcon - path: opentk/src/OpenTK.Platform.Native/SDL/SDLWindowComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLWindowComponent.cs startLine: 42 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL - summary: True when the driver supports setting the window icon. + summary: True when the driver supports setting the window icon using . example: [] syntax: content: public bool CanSetIcon { get; } @@ -259,8 +235,11 @@ items: type: System.Boolean content.vb: Public ReadOnly Property CanSetIcon As Boolean overload: OpenTK.Platform.Native.SDL.SDLWindowComponent.CanSetIcon* + seealso: + - linkId: OpenTK.Platform.IWindowComponent.SetIcon(OpenTK.Platform.WindowHandle,OpenTK.Platform.IconHandle) + commentId: M:OpenTK.Platform.IWindowComponent.SetIcon(OpenTK.Platform.WindowHandle,OpenTK.Platform.IconHandle) implements: - - OpenTK.Core.Platform.IWindowComponent.CanSetIcon + - OpenTK.Platform.IWindowComponent.CanSetIcon - uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.CanGetDisplay commentId: P:OpenTK.Platform.Native.SDL.SDLWindowComponent.CanGetDisplay id: CanGetDisplay @@ -273,17 +252,13 @@ items: fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.CanGetDisplay type: Property source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CanGetDisplay - path: opentk/src/OpenTK.Platform.Native/SDL/SDLWindowComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLWindowComponent.cs startLine: 45 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL - summary: True when the driver can provide the display the window is in. + summary: True when the driver can provide the display the window is in using . example: [] syntax: content: public bool CanGetDisplay { get; } @@ -292,8 +267,11 @@ items: type: System.Boolean content.vb: Public ReadOnly Property CanGetDisplay As Boolean overload: OpenTK.Platform.Native.SDL.SDLWindowComponent.CanGetDisplay* + seealso: + - linkId: OpenTK.Platform.IWindowComponent.GetDisplay(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.GetDisplay(OpenTK.Platform.WindowHandle) implements: - - OpenTK.Core.Platform.IWindowComponent.CanGetDisplay + - OpenTK.Platform.IWindowComponent.CanGetDisplay - uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.CanSetCursor commentId: P:OpenTK.Platform.Native.SDL.SDLWindowComponent.CanSetCursor id: CanSetCursor @@ -306,17 +284,13 @@ items: fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.CanSetCursor type: Property source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CanSetCursor - path: opentk/src/OpenTK.Platform.Native/SDL/SDLWindowComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLWindowComponent.cs startLine: 48 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL - summary: True when the driver supports setting the cursor of the window. + summary: True when the driver supports setting the cursor of the window using . example: [] syntax: content: public bool CanSetCursor { get; } @@ -325,8 +299,11 @@ items: type: System.Boolean content.vb: Public ReadOnly Property CanSetCursor As Boolean overload: OpenTK.Platform.Native.SDL.SDLWindowComponent.CanSetCursor* + seealso: + - linkId: OpenTK.Platform.IWindowComponent.SetCursor(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorHandle) + commentId: M:OpenTK.Platform.IWindowComponent.SetCursor(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorHandle) implements: - - OpenTK.Core.Platform.IWindowComponent.CanSetCursor + - OpenTK.Platform.IWindowComponent.CanSetCursor - uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.CanCaptureCursor commentId: P:OpenTK.Platform.Native.SDL.SDLWindowComponent.CanCaptureCursor id: CanCaptureCursor @@ -339,17 +316,13 @@ items: fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.CanCaptureCursor type: Property source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CanCaptureCursor - path: opentk/src/OpenTK.Platform.Native/SDL/SDLWindowComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLWindowComponent.cs startLine: 51 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL - summary: True when the driver supports capturing the cursor in a window. + summary: True when the driver supports capturing the cursor in a window using . example: [] syntax: content: public bool CanCaptureCursor { get; } @@ -358,8 +331,11 @@ items: type: System.Boolean content.vb: Public ReadOnly Property CanCaptureCursor As Boolean overload: OpenTK.Platform.Native.SDL.SDLWindowComponent.CanCaptureCursor* + seealso: + - linkId: OpenTK.Platform.IWindowComponent.SetCursorCaptureMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorCaptureMode) + commentId: M:OpenTK.Platform.IWindowComponent.SetCursorCaptureMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorCaptureMode) implements: - - OpenTK.Core.Platform.IWindowComponent.CanCaptureCursor + - OpenTK.Platform.IWindowComponent.CanCaptureCursor - uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.SupportedEvents commentId: P:OpenTK.Platform.Native.SDL.SDLWindowComponent.SupportedEvents id: SupportedEvents @@ -372,15 +348,11 @@ items: fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.SupportedEvents type: Property source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SupportedEvents - path: opentk/src/OpenTK.Platform.Native/SDL/SDLWindowComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLWindowComponent.cs startLine: 54 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: Read-only list of event types the driver supports. example: [] @@ -388,11 +360,11 @@ items: content: public IReadOnlyList SupportedEvents { get; } parameters: [] return: - type: System.Collections.Generic.IReadOnlyList{OpenTK.Core.Platform.PlatformEventType} + type: System.Collections.Generic.IReadOnlyList{OpenTK.Platform.PlatformEventType} content.vb: Public ReadOnly Property SupportedEvents As IReadOnlyList(Of PlatformEventType) overload: OpenTK.Platform.Native.SDL.SDLWindowComponent.SupportedEvents* implements: - - OpenTK.Core.Platform.IWindowComponent.SupportedEvents + - OpenTK.Platform.IWindowComponent.SupportedEvents - uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.SupportedStyles commentId: P:OpenTK.Platform.Native.SDL.SDLWindowComponent.SupportedStyles id: SupportedStyles @@ -405,15 +377,11 @@ items: fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.SupportedStyles type: Property source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SupportedStyles - path: opentk/src/OpenTK.Platform.Native/SDL/SDLWindowComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLWindowComponent.cs startLine: 57 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: Read-only list of window styles the driver supports. example: [] @@ -421,11 +389,11 @@ items: content: public IReadOnlyList SupportedStyles { get; } parameters: [] return: - type: System.Collections.Generic.IReadOnlyList{OpenTK.Core.Platform.WindowBorderStyle} + type: System.Collections.Generic.IReadOnlyList{OpenTK.Platform.WindowBorderStyle} content.vb: Public ReadOnly Property SupportedStyles As IReadOnlyList(Of WindowBorderStyle) overload: OpenTK.Platform.Native.SDL.SDLWindowComponent.SupportedStyles* implements: - - OpenTK.Core.Platform.IWindowComponent.SupportedStyles + - OpenTK.Platform.IWindowComponent.SupportedStyles - uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.SupportedModes commentId: P:OpenTK.Platform.Native.SDL.SDLWindowComponent.SupportedModes id: SupportedModes @@ -438,15 +406,11 @@ items: fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.SupportedModes type: Property source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SupportedModes - path: opentk/src/OpenTK.Platform.Native/SDL/SDLWindowComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLWindowComponent.cs startLine: 60 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: Read-only list of window modes the driver supports. example: [] @@ -454,11 +418,11 @@ items: content: public IReadOnlyList SupportedModes { get; } parameters: [] return: - type: System.Collections.Generic.IReadOnlyList{OpenTK.Core.Platform.WindowMode} + type: System.Collections.Generic.IReadOnlyList{OpenTK.Platform.WindowMode} content.vb: Public ReadOnly Property SupportedModes As IReadOnlyList(Of WindowMode) overload: OpenTK.Platform.Native.SDL.SDLWindowComponent.SupportedModes* implements: - - OpenTK.Core.Platform.IWindowComponent.SupportedModes + - OpenTK.Platform.IWindowComponent.SupportedModes - uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.ProcessEvents(System.Boolean) commentId: M:OpenTK.Platform.Native.SDL.SDLWindowComponent.ProcessEvents(System.Boolean) id: ProcessEvents(System.Boolean) @@ -471,52 +435,44 @@ items: fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.ProcessEvents(bool) type: Method source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ProcessEvents - path: opentk/src/OpenTK.Platform.Native/SDL/SDLWindowComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLWindowComponent.cs startLine: 69 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL - summary: Processes platform events and sends them to the . + summary: Processes platform events and sends them to the . example: [] syntax: - content: public void ProcessEvents(bool waitForEvents = false) + content: public void ProcessEvents(bool waitForEvents) parameters: - id: waitForEvents type: System.Boolean description: Specifies if this function should wait for events or return immediately if there are no events. - content.vb: Public Sub ProcessEvents(waitForEvents As Boolean = False) + content.vb: Public Sub ProcessEvents(waitForEvents As Boolean) overload: OpenTK.Platform.Native.SDL.SDLWindowComponent.ProcessEvents* implements: - - OpenTK.Core.Platform.IWindowComponent.ProcessEvents(System.Boolean) + - OpenTK.Platform.IWindowComponent.ProcessEvents(System.Boolean) nameWithType.vb: SDLWindowComponent.ProcessEvents(Boolean) fullName.vb: OpenTK.Platform.Native.SDL.SDLWindowComponent.ProcessEvents(Boolean) name.vb: ProcessEvents(Boolean) -- uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.Create(OpenTK.Core.Platform.GraphicsApiHints) - commentId: M:OpenTK.Platform.Native.SDL.SDLWindowComponent.Create(OpenTK.Core.Platform.GraphicsApiHints) - id: Create(OpenTK.Core.Platform.GraphicsApiHints) +- uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.Create(OpenTK.Platform.GraphicsApiHints) + commentId: M:OpenTK.Platform.Native.SDL.SDLWindowComponent.Create(OpenTK.Platform.GraphicsApiHints) + id: Create(OpenTK.Platform.GraphicsApiHints) parent: OpenTK.Platform.Native.SDL.SDLWindowComponent langs: - csharp - vb name: Create(GraphicsApiHints) nameWithType: SDLWindowComponent.Create(GraphicsApiHints) - fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.Create(OpenTK.Core.Platform.GraphicsApiHints) + fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.Create(OpenTK.Platform.GraphicsApiHints) type: Method source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Create - path: opentk/src/OpenTK.Platform.Native/SDL/SDLWindowComponent.cs - startLine: 425 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLWindowComponent.cs + startLine: 427 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: Create a window object. example: [] @@ -524,44 +480,40 @@ items: content: public WindowHandle Create(GraphicsApiHints hints) parameters: - id: hints - type: OpenTK.Core.Platform.GraphicsApiHints + type: OpenTK.Platform.GraphicsApiHints description: Graphics API hints to be passed to the operating system. return: - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: Handle to the new window object. content.vb: Public Function Create(hints As GraphicsApiHints) As WindowHandle overload: OpenTK.Platform.Native.SDL.SDLWindowComponent.Create* implements: - - OpenTK.Core.Platform.IWindowComponent.Create(OpenTK.Core.Platform.GraphicsApiHints) -- uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.Destroy(OpenTK.Core.Platform.WindowHandle) - commentId: M:OpenTK.Platform.Native.SDL.SDLWindowComponent.Destroy(OpenTK.Core.Platform.WindowHandle) - id: Destroy(OpenTK.Core.Platform.WindowHandle) + - OpenTK.Platform.IWindowComponent.Create(OpenTK.Platform.GraphicsApiHints) +- uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.Destroy(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.Native.SDL.SDLWindowComponent.Destroy(OpenTK.Platform.WindowHandle) + id: Destroy(OpenTK.Platform.WindowHandle) parent: OpenTK.Platform.Native.SDL.SDLWindowComponent langs: - csharp - vb name: Destroy(WindowHandle) nameWithType: SDLWindowComponent.Destroy(WindowHandle) - fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.Destroy(OpenTK.Core.Platform.WindowHandle) + fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.Destroy(OpenTK.Platform.WindowHandle) type: Method source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Destroy - path: opentk/src/OpenTK.Platform.Native/SDL/SDLWindowComponent.cs - startLine: 534 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLWindowComponent.cs + startLine: 536 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL - summary: Destroy a window object. + summary: Destroy a window object. After a window has been destroyed the handle should no longer be used in any function other than . example: [] syntax: content: public void Destroy(WindowHandle handle) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: Handle to a window object. content.vb: Public Sub Destroy(handle As WindowHandle) overload: OpenTK.Platform.Native.SDL.SDLWindowComponent.Destroy* @@ -570,65 +522,57 @@ items: commentId: T:System.ArgumentNullException description: handle is null. implements: - - OpenTK.Core.Platform.IWindowComponent.Destroy(OpenTK.Core.Platform.WindowHandle) -- uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.IsWindowDestroyed(OpenTK.Core.Platform.WindowHandle) - commentId: M:OpenTK.Platform.Native.SDL.SDLWindowComponent.IsWindowDestroyed(OpenTK.Core.Platform.WindowHandle) - id: IsWindowDestroyed(OpenTK.Core.Platform.WindowHandle) + - OpenTK.Platform.IWindowComponent.Destroy(OpenTK.Platform.WindowHandle) +- uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.IsWindowDestroyed(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.Native.SDL.SDLWindowComponent.IsWindowDestroyed(OpenTK.Platform.WindowHandle) + id: IsWindowDestroyed(OpenTK.Platform.WindowHandle) parent: OpenTK.Platform.Native.SDL.SDLWindowComponent langs: - csharp - vb name: IsWindowDestroyed(WindowHandle) nameWithType: SDLWindowComponent.IsWindowDestroyed(WindowHandle) - fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.IsWindowDestroyed(OpenTK.Core.Platform.WindowHandle) + fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.IsWindowDestroyed(OpenTK.Platform.WindowHandle) type: Method source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: IsWindowDestroyed - path: opentk/src/OpenTK.Platform.Native/SDL/SDLWindowComponent.cs - startLine: 546 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLWindowComponent.cs + startLine: 548 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL - summary: Checks if has been called on this handle. + summary: Checks if has been called on this handle. example: [] syntax: content: public bool IsWindowDestroyed(WindowHandle handle) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: The window handle to check if it's destroyed or not. return: type: System.Boolean - description: If was called with the window handle. + description: If was called with the window handle. content.vb: Public Function IsWindowDestroyed(handle As WindowHandle) As Boolean overload: OpenTK.Platform.Native.SDL.SDLWindowComponent.IsWindowDestroyed* implements: - - OpenTK.Core.Platform.IWindowComponent.IsWindowDestroyed(OpenTK.Core.Platform.WindowHandle) -- uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetTitle(OpenTK.Core.Platform.WindowHandle) - commentId: M:OpenTK.Platform.Native.SDL.SDLWindowComponent.GetTitle(OpenTK.Core.Platform.WindowHandle) - id: GetTitle(OpenTK.Core.Platform.WindowHandle) + - OpenTK.Platform.IWindowComponent.IsWindowDestroyed(OpenTK.Platform.WindowHandle) +- uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetTitle(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.Native.SDL.SDLWindowComponent.GetTitle(OpenTK.Platform.WindowHandle) + id: GetTitle(OpenTK.Platform.WindowHandle) parent: OpenTK.Platform.Native.SDL.SDLWindowComponent langs: - csharp - vb name: GetTitle(WindowHandle) nameWithType: SDLWindowComponent.GetTitle(WindowHandle) - fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetTitle(OpenTK.Core.Platform.WindowHandle) + fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetTitle(OpenTK.Platform.WindowHandle) type: Method source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetTitle - path: opentk/src/OpenTK.Platform.Native/SDL/SDLWindowComponent.cs - startLine: 554 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLWindowComponent.cs + startLine: 556 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: Get the title of a window. example: [] @@ -636,7 +580,7 @@ items: content: public string GetTitle(WindowHandle handle) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: Handle to a window. return: type: System.String @@ -648,28 +592,24 @@ items: commentId: T:System.ArgumentNullException description: handle is null. implements: - - OpenTK.Core.Platform.IWindowComponent.GetTitle(OpenTK.Core.Platform.WindowHandle) -- uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetTitle(OpenTK.Core.Platform.WindowHandle,System.String) - commentId: M:OpenTK.Platform.Native.SDL.SDLWindowComponent.SetTitle(OpenTK.Core.Platform.WindowHandle,System.String) - id: SetTitle(OpenTK.Core.Platform.WindowHandle,System.String) + - OpenTK.Platform.IWindowComponent.GetTitle(OpenTK.Platform.WindowHandle) +- uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetTitle(OpenTK.Platform.WindowHandle,System.String) + commentId: M:OpenTK.Platform.Native.SDL.SDLWindowComponent.SetTitle(OpenTK.Platform.WindowHandle,System.String) + id: SetTitle(OpenTK.Platform.WindowHandle,System.String) parent: OpenTK.Platform.Native.SDL.SDLWindowComponent langs: - csharp - vb name: SetTitle(WindowHandle, string) nameWithType: SDLWindowComponent.SetTitle(WindowHandle, string) - fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetTitle(OpenTK.Core.Platform.WindowHandle, string) + fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetTitle(OpenTK.Platform.WindowHandle, string) type: Method source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetTitle - path: opentk/src/OpenTK.Platform.Native/SDL/SDLWindowComponent.cs - startLine: 563 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLWindowComponent.cs + startLine: 565 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: Set the title of a window. example: [] @@ -677,7 +617,7 @@ items: content: public void SetTitle(WindowHandle handle, string title) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: Handle to a window. - id: title type: System.String @@ -689,31 +629,27 @@ items: commentId: T:System.ArgumentNullException description: handle or title is null. implements: - - OpenTK.Core.Platform.IWindowComponent.SetTitle(OpenTK.Core.Platform.WindowHandle,System.String) + - OpenTK.Platform.IWindowComponent.SetTitle(OpenTK.Platform.WindowHandle,System.String) nameWithType.vb: SDLWindowComponent.SetTitle(WindowHandle, String) - fullName.vb: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetTitle(OpenTK.Core.Platform.WindowHandle, String) + fullName.vb: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetTitle(OpenTK.Platform.WindowHandle, String) name.vb: SetTitle(WindowHandle, String) -- uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetIcon(OpenTK.Core.Platform.WindowHandle) - commentId: M:OpenTK.Platform.Native.SDL.SDLWindowComponent.GetIcon(OpenTK.Core.Platform.WindowHandle) - id: GetIcon(OpenTK.Core.Platform.WindowHandle) +- uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetIcon(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.Native.SDL.SDLWindowComponent.GetIcon(OpenTK.Platform.WindowHandle) + id: GetIcon(OpenTK.Platform.WindowHandle) parent: OpenTK.Platform.Native.SDL.SDLWindowComponent langs: - csharp - vb name: GetIcon(WindowHandle) nameWithType: SDLWindowComponent.GetIcon(WindowHandle) - fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetIcon(OpenTK.Core.Platform.WindowHandle) + fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetIcon(OpenTK.Platform.WindowHandle) type: Method source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetIcon - path: opentk/src/OpenTK.Platform.Native/SDL/SDLWindowComponent.cs - startLine: 571 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLWindowComponent.cs + startLine: 573 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: Get a handle to the window icon object. example: [] @@ -721,10 +657,10 @@ items: content: public IconHandle? GetIcon(WindowHandle handle) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: Handle to a window. return: - type: OpenTK.Core.Platform.IconHandle + type: OpenTK.Platform.IconHandle description: Handle to the windows icon object, or null if none is set. content.vb: Public Function GetIcon(handle As WindowHandle) As IconHandle overload: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetIcon* @@ -732,32 +668,28 @@ items: - type: System.ArgumentNullException commentId: T:System.ArgumentNullException description: handle is null. - - type: OpenTK.Core.Platform.PalNotImplementedException - commentId: T:OpenTK.Core.Platform.PalNotImplementedException - description: Driver does not support getting the window icon. See . + - type: OpenTK.Platform.PalNotImplementedException + commentId: T:OpenTK.Platform.PalNotImplementedException + description: Driver does not support getting the window icon. See . implements: - - OpenTK.Core.Platform.IWindowComponent.GetIcon(OpenTK.Core.Platform.WindowHandle) -- uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetIcon(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.IconHandle) - commentId: M:OpenTK.Platform.Native.SDL.SDLWindowComponent.SetIcon(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.IconHandle) - id: SetIcon(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.IconHandle) + - OpenTK.Platform.IWindowComponent.GetIcon(OpenTK.Platform.WindowHandle) +- uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetIcon(OpenTK.Platform.WindowHandle,OpenTK.Platform.IconHandle) + commentId: M:OpenTK.Platform.Native.SDL.SDLWindowComponent.SetIcon(OpenTK.Platform.WindowHandle,OpenTK.Platform.IconHandle) + id: SetIcon(OpenTK.Platform.WindowHandle,OpenTK.Platform.IconHandle) parent: OpenTK.Platform.Native.SDL.SDLWindowComponent langs: - csharp - vb name: SetIcon(WindowHandle, IconHandle) nameWithType: SDLWindowComponent.SetIcon(WindowHandle, IconHandle) - fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetIcon(OpenTK.Core.Platform.WindowHandle, OpenTK.Core.Platform.IconHandle) + fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetIcon(OpenTK.Platform.WindowHandle, OpenTK.Platform.IconHandle) type: Method source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetIcon - path: opentk/src/OpenTK.Platform.Native/SDL/SDLWindowComponent.cs - startLine: 579 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLWindowComponent.cs + startLine: 581 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: Set window icon object handle. example: [] @@ -765,10 +697,10 @@ items: content: public void SetIcon(WindowHandle handle, IconHandle icon) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: Handle to a window. - id: icon - type: OpenTK.Core.Platform.IconHandle + type: OpenTK.Platform.IconHandle description: Handle to an icon object, or null to revert to default. content.vb: Public Sub SetIcon(handle As WindowHandle, icon As IconHandle) overload: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetIcon* @@ -776,32 +708,31 @@ items: - type: System.ArgumentNullException commentId: T:System.ArgumentNullException description: handle or icon is null. - - type: OpenTK.Core.Platform.PalNotImplementedException - commentId: T:OpenTK.Core.Platform.PalNotImplementedException - description: Driver does not support setting the window icon. See . + - type: OpenTK.Platform.PalNotImplementedException + commentId: T:OpenTK.Platform.PalNotImplementedException + description: Backend does not support setting the window icon. See . + seealso: + - linkId: OpenTK.Platform.IWindowComponent.CanSetIcon + commentId: P:OpenTK.Platform.IWindowComponent.CanSetIcon implements: - - OpenTK.Core.Platform.IWindowComponent.SetIcon(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.IconHandle) -- uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetPosition(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) - commentId: M:OpenTK.Platform.Native.SDL.SDLWindowComponent.GetPosition(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) - id: GetPosition(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) + - OpenTK.Platform.IWindowComponent.SetIcon(OpenTK.Platform.WindowHandle,OpenTK.Platform.IconHandle) +- uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + commentId: M:OpenTK.Platform.Native.SDL.SDLWindowComponent.GetPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + id: GetPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) parent: OpenTK.Platform.Native.SDL.SDLWindowComponent langs: - csharp - vb name: GetPosition(WindowHandle, out int, out int) nameWithType: SDLWindowComponent.GetPosition(WindowHandle, out int, out int) - fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetPosition(OpenTK.Core.Platform.WindowHandle, out int, out int) + fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetPosition(OpenTK.Platform.WindowHandle, out int, out int) type: Method source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetPosition - path: opentk/src/OpenTK.Platform.Native/SDL/SDLWindowComponent.cs - startLine: 589 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLWindowComponent.cs + startLine: 591 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: Get the window position in display coordinates (top left origin). example: [] @@ -809,7 +740,7 @@ items: content: public void GetPosition(WindowHandle handle, out int x, out int y) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: Handle to a window. - id: x type: System.Int32 @@ -824,31 +755,27 @@ items: commentId: T:System.ArgumentNullException description: handle is null. implements: - - OpenTK.Core.Platform.IWindowComponent.GetPosition(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) + - OpenTK.Platform.IWindowComponent.GetPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) nameWithType.vb: SDLWindowComponent.GetPosition(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetPosition(OpenTK.Core.Platform.WindowHandle, Integer, Integer) + fullName.vb: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetPosition(OpenTK.Platform.WindowHandle, Integer, Integer) name.vb: GetPosition(WindowHandle, Integer, Integer) -- uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetPosition(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) - commentId: M:OpenTK.Platform.Native.SDL.SDLWindowComponent.SetPosition(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) - id: SetPosition(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) +- uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) + commentId: M:OpenTK.Platform.Native.SDL.SDLWindowComponent.SetPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) + id: SetPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) parent: OpenTK.Platform.Native.SDL.SDLWindowComponent langs: - csharp - vb name: SetPosition(WindowHandle, int, int) nameWithType: SDLWindowComponent.SetPosition(WindowHandle, int, int) - fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetPosition(OpenTK.Core.Platform.WindowHandle, int, int) + fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetPosition(OpenTK.Platform.WindowHandle, int, int) type: Method source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetPosition - path: opentk/src/OpenTK.Platform.Native/SDL/SDLWindowComponent.cs - startLine: 602 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLWindowComponent.cs + startLine: 604 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: Set the window position in display coordinates (top left origin). example: [] @@ -856,7 +783,7 @@ items: content: public void SetPosition(WindowHandle handle, int x, int y) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: Handle to a window. - id: x type: System.Int32 @@ -871,31 +798,27 @@ items: commentId: T:System.ArgumentNullException description: handle is null. implements: - - OpenTK.Core.Platform.IWindowComponent.SetPosition(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) + - OpenTK.Platform.IWindowComponent.SetPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) nameWithType.vb: SDLWindowComponent.SetPosition(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetPosition(OpenTK.Core.Platform.WindowHandle, Integer, Integer) + fullName.vb: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetPosition(OpenTK.Platform.WindowHandle, Integer, Integer) name.vb: SetPosition(WindowHandle, Integer, Integer) -- uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) - commentId: M:OpenTK.Platform.Native.SDL.SDLWindowComponent.GetSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) - id: GetSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) +- uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + commentId: M:OpenTK.Platform.Native.SDL.SDLWindowComponent.GetSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + id: GetSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) parent: OpenTK.Platform.Native.SDL.SDLWindowComponent langs: - csharp - vb name: GetSize(WindowHandle, out int, out int) nameWithType: SDLWindowComponent.GetSize(WindowHandle, out int, out int) - fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetSize(OpenTK.Core.Platform.WindowHandle, out int, out int) + fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetSize(OpenTK.Platform.WindowHandle, out int, out int) type: Method source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetSize - path: opentk/src/OpenTK.Platform.Native/SDL/SDLWindowComponent.cs - startLine: 614 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLWindowComponent.cs + startLine: 616 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: Get the size of the window. example: [] @@ -903,7 +826,7 @@ items: content: public void GetSize(WindowHandle handle, out int width, out int height) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: Handle to a window. - id: width type: System.Int32 @@ -918,31 +841,27 @@ items: commentId: T:System.ArgumentNullException description: handle is null. implements: - - OpenTK.Core.Platform.IWindowComponent.GetSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) + - OpenTK.Platform.IWindowComponent.GetSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) nameWithType.vb: SDLWindowComponent.GetSize(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetSize(OpenTK.Core.Platform.WindowHandle, Integer, Integer) + fullName.vb: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetSize(OpenTK.Platform.WindowHandle, Integer, Integer) name.vb: GetSize(WindowHandle, Integer, Integer) -- uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetSize(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) - commentId: M:OpenTK.Platform.Native.SDL.SDLWindowComponent.SetSize(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) - id: SetSize(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) +- uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) + commentId: M:OpenTK.Platform.Native.SDL.SDLWindowComponent.SetSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) + id: SetSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) parent: OpenTK.Platform.Native.SDL.SDLWindowComponent langs: - csharp - vb name: SetSize(WindowHandle, int, int) nameWithType: SDLWindowComponent.SetSize(WindowHandle, int, int) - fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetSize(OpenTK.Core.Platform.WindowHandle, int, int) + fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetSize(OpenTK.Platform.WindowHandle, int, int) type: Method source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetSize - path: opentk/src/OpenTK.Platform.Native/SDL/SDLWindowComponent.cs - startLine: 627 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLWindowComponent.cs + startLine: 629 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: Set the size of the window. example: [] @@ -950,7 +869,7 @@ items: content: public void SetSize(WindowHandle handle, int width, int height) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: Handle to a window. - id: width type: System.Int32 @@ -965,31 +884,27 @@ items: commentId: T:System.ArgumentNullException description: handle is null. implements: - - OpenTK.Core.Platform.IWindowComponent.SetSize(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) + - OpenTK.Platform.IWindowComponent.SetSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) nameWithType.vb: SDLWindowComponent.SetSize(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetSize(OpenTK.Core.Platform.WindowHandle, Integer, Integer) + fullName.vb: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetSize(OpenTK.Platform.WindowHandle, Integer, Integer) name.vb: SetSize(WindowHandle, Integer, Integer) -- uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetBounds(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) - commentId: M:OpenTK.Platform.Native.SDL.SDLWindowComponent.GetBounds(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) - id: GetBounds(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) +- uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetBounds(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) + commentId: M:OpenTK.Platform.Native.SDL.SDLWindowComponent.GetBounds(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) + id: GetBounds(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) parent: OpenTK.Platform.Native.SDL.SDLWindowComponent langs: - csharp - vb name: GetBounds(WindowHandle, out int, out int, out int, out int) nameWithType: SDLWindowComponent.GetBounds(WindowHandle, out int, out int, out int, out int) - fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetBounds(OpenTK.Core.Platform.WindowHandle, out int, out int, out int, out int) + fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetBounds(OpenTK.Platform.WindowHandle, out int, out int, out int, out int) type: Method source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetBounds - path: opentk/src/OpenTK.Platform.Native/SDL/SDLWindowComponent.cs - startLine: 640 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLWindowComponent.cs + startLine: 642 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: Get the bounds of the window. example: [] @@ -997,7 +912,7 @@ items: content: public void GetBounds(WindowHandle handle, out int x, out int y, out int width, out int height) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: Handle to a window. - id: x type: System.Int32 @@ -1014,31 +929,27 @@ items: content.vb: Public Sub GetBounds(handle As WindowHandle, x As Integer, y As Integer, width As Integer, height As Integer) overload: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetBounds* implements: - - OpenTK.Core.Platform.IWindowComponent.GetBounds(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) + - OpenTK.Platform.IWindowComponent.GetBounds(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) nameWithType.vb: SDLWindowComponent.GetBounds(WindowHandle, Integer, Integer, Integer, Integer) - fullName.vb: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetBounds(OpenTK.Core.Platform.WindowHandle, Integer, Integer, Integer, Integer) + fullName.vb: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetBounds(OpenTK.Platform.WindowHandle, Integer, Integer, Integer, Integer) name.vb: GetBounds(WindowHandle, Integer, Integer, Integer, Integer) -- uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetBounds(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) - commentId: M:OpenTK.Platform.Native.SDL.SDLWindowComponent.SetBounds(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) - id: SetBounds(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) +- uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetBounds(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) + commentId: M:OpenTK.Platform.Native.SDL.SDLWindowComponent.SetBounds(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) + id: SetBounds(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) parent: OpenTK.Platform.Native.SDL.SDLWindowComponent langs: - csharp - vb name: SetBounds(WindowHandle, int, int, int, int) nameWithType: SDLWindowComponent.SetBounds(WindowHandle, int, int, int, int) - fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetBounds(OpenTK.Core.Platform.WindowHandle, int, int, int, int) + fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetBounds(OpenTK.Platform.WindowHandle, int, int, int, int) type: Method source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetBounds - path: opentk/src/OpenTK.Platform.Native/SDL/SDLWindowComponent.cs - startLine: 655 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLWindowComponent.cs + startLine: 657 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: Set the bounds of the window. example: [] @@ -1046,7 +957,7 @@ items: content: public void SetBounds(WindowHandle handle, int x, int y, int width, int height) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: Handle to a window. - id: x type: System.Int32 @@ -1063,31 +974,27 @@ items: content.vb: Public Sub SetBounds(handle As WindowHandle, x As Integer, y As Integer, width As Integer, height As Integer) overload: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetBounds* implements: - - OpenTK.Core.Platform.IWindowComponent.SetBounds(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) + - OpenTK.Platform.IWindowComponent.SetBounds(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) nameWithType.vb: SDLWindowComponent.SetBounds(WindowHandle, Integer, Integer, Integer, Integer) - fullName.vb: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetBounds(OpenTK.Core.Platform.WindowHandle, Integer, Integer, Integer, Integer) + fullName.vb: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetBounds(OpenTK.Platform.WindowHandle, Integer, Integer, Integer, Integer) name.vb: SetBounds(WindowHandle, Integer, Integer, Integer, Integer) -- uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetClientPosition(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) - commentId: M:OpenTK.Platform.Native.SDL.SDLWindowComponent.GetClientPosition(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) - id: GetClientPosition(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) +- uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + commentId: M:OpenTK.Platform.Native.SDL.SDLWindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + id: GetClientPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) parent: OpenTK.Platform.Native.SDL.SDLWindowComponent langs: - csharp - vb name: GetClientPosition(WindowHandle, out int, out int) nameWithType: SDLWindowComponent.GetClientPosition(WindowHandle, out int, out int) - fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetClientPosition(OpenTK.Core.Platform.WindowHandle, out int, out int) + fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle, out int, out int) type: Method source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetClientPosition - path: opentk/src/OpenTK.Platform.Native/SDL/SDLWindowComponent.cs - startLine: 671 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLWindowComponent.cs + startLine: 673 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: Get the position of the client area (drawing area) of a window. example: [] @@ -1095,7 +1002,7 @@ items: content: public void GetClientPosition(WindowHandle handle, out int x, out int y) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: Handle to a window. - id: x type: System.Int32 @@ -1110,31 +1017,27 @@ items: commentId: T:System.ArgumentNullException description: handle is null. implements: - - OpenTK.Core.Platform.IWindowComponent.GetClientPosition(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) + - OpenTK.Platform.IWindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) nameWithType.vb: SDLWindowComponent.GetClientPosition(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetClientPosition(OpenTK.Core.Platform.WindowHandle, Integer, Integer) + fullName.vb: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle, Integer, Integer) name.vb: GetClientPosition(WindowHandle, Integer, Integer) -- uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetClientPosition(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) - commentId: M:OpenTK.Platform.Native.SDL.SDLWindowComponent.SetClientPosition(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) - id: SetClientPosition(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) +- uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) + commentId: M:OpenTK.Platform.Native.SDL.SDLWindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) + id: SetClientPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) parent: OpenTK.Platform.Native.SDL.SDLWindowComponent langs: - csharp - vb name: SetClientPosition(WindowHandle, int, int) nameWithType: SDLWindowComponent.SetClientPosition(WindowHandle, int, int) - fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetClientPosition(OpenTK.Core.Platform.WindowHandle, int, int) + fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle, int, int) type: Method source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetClientPosition - path: opentk/src/OpenTK.Platform.Native/SDL/SDLWindowComponent.cs - startLine: 679 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLWindowComponent.cs + startLine: 681 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: Set the position of the client area (drawing area) of a window. example: [] @@ -1142,7 +1045,7 @@ items: content: public void SetClientPosition(WindowHandle handle, int x, int y) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: Handle to a window. - id: x type: System.Int32 @@ -1157,31 +1060,27 @@ items: commentId: T:System.ArgumentNullException description: handle is null. implements: - - OpenTK.Core.Platform.IWindowComponent.SetClientPosition(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) + - OpenTK.Platform.IWindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) nameWithType.vb: SDLWindowComponent.SetClientPosition(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetClientPosition(OpenTK.Core.Platform.WindowHandle, Integer, Integer) + fullName.vb: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle, Integer, Integer) name.vb: SetClientPosition(WindowHandle, Integer, Integer) -- uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetClientSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) - commentId: M:OpenTK.Platform.Native.SDL.SDLWindowComponent.GetClientSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) - id: GetClientSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) +- uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetClientSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + commentId: M:OpenTK.Platform.Native.SDL.SDLWindowComponent.GetClientSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + id: GetClientSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) parent: OpenTK.Platform.Native.SDL.SDLWindowComponent langs: - csharp - vb name: GetClientSize(WindowHandle, out int, out int) nameWithType: SDLWindowComponent.GetClientSize(WindowHandle, out int, out int) - fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetClientSize(OpenTK.Core.Platform.WindowHandle, out int, out int) + fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetClientSize(OpenTK.Platform.WindowHandle, out int, out int) type: Method source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetClientSize - path: opentk/src/OpenTK.Platform.Native/SDL/SDLWindowComponent.cs - startLine: 687 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLWindowComponent.cs + startLine: 689 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: Get the size of the client area (drawing area) of a window. example: [] @@ -1189,7 +1088,7 @@ items: content: public void GetClientSize(WindowHandle handle, out int width, out int height) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: Handle to a window. - id: width type: System.Int32 @@ -1204,31 +1103,27 @@ items: commentId: T:System.ArgumentNullException description: handle is null. implements: - - OpenTK.Core.Platform.IWindowComponent.GetClientSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) + - OpenTK.Platform.IWindowComponent.GetClientSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) nameWithType.vb: SDLWindowComponent.GetClientSize(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetClientSize(OpenTK.Core.Platform.WindowHandle, Integer, Integer) + fullName.vb: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetClientSize(OpenTK.Platform.WindowHandle, Integer, Integer) name.vb: GetClientSize(WindowHandle, Integer, Integer) -- uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetClientSize(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) - commentId: M:OpenTK.Platform.Native.SDL.SDLWindowComponent.SetClientSize(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) - id: SetClientSize(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) +- uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetClientSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) + commentId: M:OpenTK.Platform.Native.SDL.SDLWindowComponent.SetClientSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) + id: SetClientSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) parent: OpenTK.Platform.Native.SDL.SDLWindowComponent langs: - csharp - vb name: SetClientSize(WindowHandle, int, int) nameWithType: SDLWindowComponent.SetClientSize(WindowHandle, int, int) - fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetClientSize(OpenTK.Core.Platform.WindowHandle, int, int) + fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetClientSize(OpenTK.Platform.WindowHandle, int, int) type: Method source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetClientSize - path: opentk/src/OpenTK.Platform.Native/SDL/SDLWindowComponent.cs - startLine: 695 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLWindowComponent.cs + startLine: 697 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: Set the size of the client area (drawing area) of a window. example: [] @@ -1236,7 +1131,7 @@ items: content: public void SetClientSize(WindowHandle handle, int width, int height) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: Handle to a window. - id: width type: System.Int32 @@ -1251,31 +1146,27 @@ items: commentId: T:System.ArgumentNullException description: handle is null. implements: - - OpenTK.Core.Platform.IWindowComponent.SetClientSize(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) + - OpenTK.Platform.IWindowComponent.SetClientSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) nameWithType.vb: SDLWindowComponent.SetClientSize(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetClientSize(OpenTK.Core.Platform.WindowHandle, Integer, Integer) + fullName.vb: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetClientSize(OpenTK.Platform.WindowHandle, Integer, Integer) name.vb: SetClientSize(WindowHandle, Integer, Integer) -- uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetClientBounds(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) - commentId: M:OpenTK.Platform.Native.SDL.SDLWindowComponent.GetClientBounds(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) - id: GetClientBounds(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) +- uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetClientBounds(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) + commentId: M:OpenTK.Platform.Native.SDL.SDLWindowComponent.GetClientBounds(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) + id: GetClientBounds(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) parent: OpenTK.Platform.Native.SDL.SDLWindowComponent langs: - csharp - vb name: GetClientBounds(WindowHandle, out int, out int, out int, out int) nameWithType: SDLWindowComponent.GetClientBounds(WindowHandle, out int, out int, out int, out int) - fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetClientBounds(OpenTK.Core.Platform.WindowHandle, out int, out int, out int, out int) + fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetClientBounds(OpenTK.Platform.WindowHandle, out int, out int, out int, out int) type: Method source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetClientBounds - path: opentk/src/OpenTK.Platform.Native/SDL/SDLWindowComponent.cs - startLine: 703 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLWindowComponent.cs + startLine: 705 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: Get the client area bounds (drawing area) of a window. example: [] @@ -1283,7 +1174,7 @@ items: content: public void GetClientBounds(WindowHandle handle, out int x, out int y, out int width, out int height) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: Handle to a window. - id: x type: System.Int32 @@ -1300,31 +1191,27 @@ items: content.vb: Public Sub GetClientBounds(handle As WindowHandle, x As Integer, y As Integer, width As Integer, height As Integer) overload: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetClientBounds* implements: - - OpenTK.Core.Platform.IWindowComponent.GetClientBounds(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) + - OpenTK.Platform.IWindowComponent.GetClientBounds(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) nameWithType.vb: SDLWindowComponent.GetClientBounds(WindowHandle, Integer, Integer, Integer, Integer) - fullName.vb: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetClientBounds(OpenTK.Core.Platform.WindowHandle, Integer, Integer, Integer, Integer) + fullName.vb: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetClientBounds(OpenTK.Platform.WindowHandle, Integer, Integer, Integer, Integer) name.vb: GetClientBounds(WindowHandle, Integer, Integer, Integer, Integer) -- uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetClientBounds(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) - commentId: M:OpenTK.Platform.Native.SDL.SDLWindowComponent.SetClientBounds(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) - id: SetClientBounds(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) +- uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetClientBounds(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) + commentId: M:OpenTK.Platform.Native.SDL.SDLWindowComponent.SetClientBounds(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) + id: SetClientBounds(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) parent: OpenTK.Platform.Native.SDL.SDLWindowComponent langs: - csharp - vb name: SetClientBounds(WindowHandle, int, int, int, int) nameWithType: SDLWindowComponent.SetClientBounds(WindowHandle, int, int, int, int) - fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetClientBounds(OpenTK.Core.Platform.WindowHandle, int, int, int, int) + fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetClientBounds(OpenTK.Platform.WindowHandle, int, int, int, int) type: Method source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetClientBounds - path: opentk/src/OpenTK.Platform.Native/SDL/SDLWindowComponent.cs - startLine: 712 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLWindowComponent.cs + startLine: 714 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: Set the client area bounds (drawing area) of a window. example: [] @@ -1332,7 +1219,7 @@ items: content: public void SetClientBounds(WindowHandle handle, int x, int y, int width, int height) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: Handle to a window. - id: x type: System.Int32 @@ -1349,31 +1236,27 @@ items: content.vb: Public Sub SetClientBounds(handle As WindowHandle, x As Integer, y As Integer, width As Integer, height As Integer) overload: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetClientBounds* implements: - - OpenTK.Core.Platform.IWindowComponent.SetClientBounds(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) + - OpenTK.Platform.IWindowComponent.SetClientBounds(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) nameWithType.vb: SDLWindowComponent.SetClientBounds(WindowHandle, Integer, Integer, Integer, Integer) - fullName.vb: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetClientBounds(OpenTK.Core.Platform.WindowHandle, Integer, Integer, Integer, Integer) + fullName.vb: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetClientBounds(OpenTK.Platform.WindowHandle, Integer, Integer, Integer, Integer) name.vb: SetClientBounds(WindowHandle, Integer, Integer, Integer, Integer) -- uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetFramebufferSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) - commentId: M:OpenTK.Platform.Native.SDL.SDLWindowComponent.GetFramebufferSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) - id: GetFramebufferSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) +- uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + commentId: M:OpenTK.Platform.Native.SDL.SDLWindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + id: GetFramebufferSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) parent: OpenTK.Platform.Native.SDL.SDLWindowComponent langs: - csharp - vb name: GetFramebufferSize(WindowHandle, out int, out int) nameWithType: SDLWindowComponent.GetFramebufferSize(WindowHandle, out int, out int) - fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetFramebufferSize(OpenTK.Core.Platform.WindowHandle, out int, out int) + fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle, out int, out int) type: Method source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetFramebufferSize - path: opentk/src/OpenTK.Platform.Native/SDL/SDLWindowComponent.cs - startLine: 721 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLWindowComponent.cs + startLine: 723 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: >- Get the size of the window framebuffer in pixels. @@ -1384,7 +1267,7 @@ items: content: public void GetFramebufferSize(WindowHandle handle, out int width, out int height) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: Handle to a window. - id: width type: System.Int32 @@ -1395,31 +1278,27 @@ items: content.vb: Public Sub GetFramebufferSize(handle As WindowHandle, width As Integer, height As Integer) overload: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetFramebufferSize* implements: - - OpenTK.Core.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) + - OpenTK.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) nameWithType.vb: SDLWindowComponent.GetFramebufferSize(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetFramebufferSize(OpenTK.Core.Platform.WindowHandle, Integer, Integer) + fullName.vb: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle, Integer, Integer) name.vb: GetFramebufferSize(WindowHandle, Integer, Integer) -- uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetMaxClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) - commentId: M:OpenTK.Platform.Native.SDL.SDLWindowComponent.GetMaxClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) - id: GetMaxClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) +- uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetMaxClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) + commentId: M:OpenTK.Platform.Native.SDL.SDLWindowComponent.GetMaxClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) + id: GetMaxClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) parent: OpenTK.Platform.Native.SDL.SDLWindowComponent langs: - csharp - vb name: GetMaxClientSize(WindowHandle, out int?, out int?) nameWithType: SDLWindowComponent.GetMaxClientSize(WindowHandle, out int?, out int?) - fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetMaxClientSize(OpenTK.Core.Platform.WindowHandle, out int?, out int?) + fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetMaxClientSize(OpenTK.Platform.WindowHandle, out int?, out int?) type: Method source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetMaxClientSize - path: opentk/src/OpenTK.Platform.Native/SDL/SDLWindowComponent.cs - startLine: 729 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLWindowComponent.cs + startLine: 731 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: Gets the maximum size of the client area. example: [] @@ -1427,7 +1306,7 @@ items: content: public void GetMaxClientSize(WindowHandle handle, out int? width, out int? height) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: Handle to a window. - id: width type: System.Nullable{System.Int32} @@ -1438,31 +1317,27 @@ items: content.vb: Public Sub GetMaxClientSize(handle As WindowHandle, width As Integer?, height As Integer?) overload: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetMaxClientSize* implements: - - OpenTK.Core.Platform.IWindowComponent.GetMaxClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) + - OpenTK.Platform.IWindowComponent.GetMaxClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) nameWithType.vb: SDLWindowComponent.GetMaxClientSize(WindowHandle, Integer?, Integer?) - fullName.vb: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetMaxClientSize(OpenTK.Core.Platform.WindowHandle, Integer?, Integer?) + fullName.vb: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetMaxClientSize(OpenTK.Platform.WindowHandle, Integer?, Integer?) name.vb: GetMaxClientSize(WindowHandle, Integer?, Integer?) -- uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetMaxClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) - commentId: M:OpenTK.Platform.Native.SDL.SDLWindowComponent.SetMaxClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) - id: SetMaxClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) +- uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetMaxClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) + commentId: M:OpenTK.Platform.Native.SDL.SDLWindowComponent.SetMaxClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) + id: SetMaxClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) parent: OpenTK.Platform.Native.SDL.SDLWindowComponent langs: - csharp - vb name: SetMaxClientSize(WindowHandle, int?, int?) nameWithType: SDLWindowComponent.SetMaxClientSize(WindowHandle, int?, int?) - fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetMaxClientSize(OpenTK.Core.Platform.WindowHandle, int?, int?) + fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetMaxClientSize(OpenTK.Platform.WindowHandle, int?, int?) type: Method source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetMaxClientSize - path: opentk/src/OpenTK.Platform.Native/SDL/SDLWindowComponent.cs - startLine: 744 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLWindowComponent.cs + startLine: 746 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: Sets the maximum size of the client area. example: [] @@ -1470,7 +1345,7 @@ items: content: public void SetMaxClientSize(WindowHandle handle, int? width, int? height) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: Handle to a window. - id: width type: System.Nullable{System.Int32} @@ -1481,31 +1356,27 @@ items: content.vb: Public Sub SetMaxClientSize(handle As WindowHandle, width As Integer?, height As Integer?) overload: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetMaxClientSize* implements: - - OpenTK.Core.Platform.IWindowComponent.SetMaxClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) + - OpenTK.Platform.IWindowComponent.SetMaxClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) nameWithType.vb: SDLWindowComponent.SetMaxClientSize(WindowHandle, Integer?, Integer?) - fullName.vb: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetMaxClientSize(OpenTK.Core.Platform.WindowHandle, Integer?, Integer?) + fullName.vb: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetMaxClientSize(OpenTK.Platform.WindowHandle, Integer?, Integer?) name.vb: SetMaxClientSize(WindowHandle, Integer?, Integer?) -- uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetMinClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) - commentId: M:OpenTK.Platform.Native.SDL.SDLWindowComponent.GetMinClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) - id: GetMinClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) +- uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetMinClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) + commentId: M:OpenTK.Platform.Native.SDL.SDLWindowComponent.GetMinClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) + id: GetMinClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) parent: OpenTK.Platform.Native.SDL.SDLWindowComponent langs: - csharp - vb name: GetMinClientSize(WindowHandle, out int?, out int?) nameWithType: SDLWindowComponent.GetMinClientSize(WindowHandle, out int?, out int?) - fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetMinClientSize(OpenTK.Core.Platform.WindowHandle, out int?, out int?) + fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetMinClientSize(OpenTK.Platform.WindowHandle, out int?, out int?) type: Method source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetMinClientSize - path: opentk/src/OpenTK.Platform.Native/SDL/SDLWindowComponent.cs - startLine: 754 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLWindowComponent.cs + startLine: 756 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: Gets the minimum size of the client area. example: [] @@ -1513,7 +1384,7 @@ items: content: public void GetMinClientSize(WindowHandle handle, out int? width, out int? height) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: Handle to a window. - id: width type: System.Nullable{System.Int32} @@ -1524,31 +1395,27 @@ items: content.vb: Public Sub GetMinClientSize(handle As WindowHandle, width As Integer?, height As Integer?) overload: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetMinClientSize* implements: - - OpenTK.Core.Platform.IWindowComponent.GetMinClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) + - OpenTK.Platform.IWindowComponent.GetMinClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) nameWithType.vb: SDLWindowComponent.GetMinClientSize(WindowHandle, Integer?, Integer?) - fullName.vb: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetMinClientSize(OpenTK.Core.Platform.WindowHandle, Integer?, Integer?) + fullName.vb: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetMinClientSize(OpenTK.Platform.WindowHandle, Integer?, Integer?) name.vb: GetMinClientSize(WindowHandle, Integer?, Integer?) -- uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetMinClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) - commentId: M:OpenTK.Platform.Native.SDL.SDLWindowComponent.SetMinClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) - id: SetMinClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) +- uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetMinClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) + commentId: M:OpenTK.Platform.Native.SDL.SDLWindowComponent.SetMinClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) + id: SetMinClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) parent: OpenTK.Platform.Native.SDL.SDLWindowComponent langs: - csharp - vb name: SetMinClientSize(WindowHandle, int?, int?) nameWithType: SDLWindowComponent.SetMinClientSize(WindowHandle, int?, int?) - fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetMinClientSize(OpenTK.Core.Platform.WindowHandle, int?, int?) + fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetMinClientSize(OpenTK.Platform.WindowHandle, int?, int?) type: Method source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetMinClientSize - path: opentk/src/OpenTK.Platform.Native/SDL/SDLWindowComponent.cs - startLine: 767 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLWindowComponent.cs + startLine: 769 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: Sets the minimum size of the client area. example: [] @@ -1556,7 +1423,7 @@ items: content: public void SetMinClientSize(WindowHandle handle, int? width, int? height) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: Handle to a window. - id: width type: System.Nullable{System.Int32} @@ -1567,31 +1434,27 @@ items: content.vb: Public Sub SetMinClientSize(handle As WindowHandle, width As Integer?, height As Integer?) overload: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetMinClientSize* implements: - - OpenTK.Core.Platform.IWindowComponent.SetMinClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) + - OpenTK.Platform.IWindowComponent.SetMinClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) nameWithType.vb: SDLWindowComponent.SetMinClientSize(WindowHandle, Integer?, Integer?) - fullName.vb: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetMinClientSize(OpenTK.Core.Platform.WindowHandle, Integer?, Integer?) + fullName.vb: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetMinClientSize(OpenTK.Platform.WindowHandle, Integer?, Integer?) name.vb: SetMinClientSize(WindowHandle, Integer?, Integer?) -- uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetDisplay(OpenTK.Core.Platform.WindowHandle) - commentId: M:OpenTK.Platform.Native.SDL.SDLWindowComponent.GetDisplay(OpenTK.Core.Platform.WindowHandle) - id: GetDisplay(OpenTK.Core.Platform.WindowHandle) +- uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetDisplay(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.Native.SDL.SDLWindowComponent.GetDisplay(OpenTK.Platform.WindowHandle) + id: GetDisplay(OpenTK.Platform.WindowHandle) parent: OpenTK.Platform.Native.SDL.SDLWindowComponent langs: - csharp - vb name: GetDisplay(WindowHandle) nameWithType: SDLWindowComponent.GetDisplay(WindowHandle) - fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetDisplay(OpenTK.Core.Platform.WindowHandle) + fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetDisplay(OpenTK.Platform.WindowHandle) type: Method source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetDisplay - path: opentk/src/OpenTK.Platform.Native/SDL/SDLWindowComponent.cs - startLine: 775 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLWindowComponent.cs + startLine: 777 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: Get the display handle a window is in. example: [] @@ -1599,10 +1462,10 @@ items: content: public DisplayHandle GetDisplay(WindowHandle handle) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: Handle to a window. return: - type: OpenTK.Core.Platform.DisplayHandle + type: OpenTK.Platform.DisplayHandle description: The display handle the window is in. content.vb: Public Function GetDisplay(handle As WindowHandle) As DisplayHandle overload: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetDisplay* @@ -1610,32 +1473,31 @@ items: - type: System.ArgumentNullException commentId: T:System.ArgumentNullException description: handle is null. - - type: OpenTK.Core.Platform.PalNotImplementedException - commentId: T:OpenTK.Core.Platform.PalNotImplementedException - description: Driver does not support finding the window display. . + - type: OpenTK.Platform.PalNotImplementedException + commentId: T:OpenTK.Platform.PalNotImplementedException + description: Backend does not support finding the window display. . + seealso: + - linkId: OpenTK.Platform.IWindowComponent.CanGetDisplay + commentId: P:OpenTK.Platform.IWindowComponent.CanGetDisplay implements: - - OpenTK.Core.Platform.IWindowComponent.GetDisplay(OpenTK.Core.Platform.WindowHandle) -- uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetMode(OpenTK.Core.Platform.WindowHandle) - commentId: M:OpenTK.Platform.Native.SDL.SDLWindowComponent.GetMode(OpenTK.Core.Platform.WindowHandle) - id: GetMode(OpenTK.Core.Platform.WindowHandle) + - OpenTK.Platform.IWindowComponent.GetDisplay(OpenTK.Platform.WindowHandle) +- uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetMode(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.Native.SDL.SDLWindowComponent.GetMode(OpenTK.Platform.WindowHandle) + id: GetMode(OpenTK.Platform.WindowHandle) parent: OpenTK.Platform.Native.SDL.SDLWindowComponent langs: - csharp - vb name: GetMode(WindowHandle) nameWithType: SDLWindowComponent.GetMode(WindowHandle) - fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetMode(OpenTK.Core.Platform.WindowHandle) + fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetMode(OpenTK.Platform.WindowHandle) type: Method source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetMode - path: opentk/src/OpenTK.Platform.Native/SDL/SDLWindowComponent.cs - startLine: 786 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLWindowComponent.cs + startLine: 788 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: Get the mode of a window. example: [] @@ -1643,10 +1505,10 @@ items: content: public WindowMode GetMode(WindowHandle handle) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: Handle to a window. return: - type: OpenTK.Core.Platform.WindowMode + type: OpenTK.Platform.WindowMode description: The mode of the window. content.vb: Public Function GetMode(handle As WindowHandle) As WindowMode overload: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetMode* @@ -1655,47 +1517,43 @@ items: commentId: T:System.ArgumentNullException description: handle is null. implements: - - OpenTK.Core.Platform.IWindowComponent.GetMode(OpenTK.Core.Platform.WindowHandle) -- uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetMode(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.WindowMode) - commentId: M:OpenTK.Platform.Native.SDL.SDLWindowComponent.SetMode(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.WindowMode) - id: SetMode(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.WindowMode) + - OpenTK.Platform.IWindowComponent.GetMode(OpenTK.Platform.WindowHandle) +- uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowMode) + commentId: M:OpenTK.Platform.Native.SDL.SDLWindowComponent.SetMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowMode) + id: SetMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowMode) parent: OpenTK.Platform.Native.SDL.SDLWindowComponent langs: - csharp - vb name: SetMode(WindowHandle, WindowMode) nameWithType: SDLWindowComponent.SetMode(WindowHandle, WindowMode) - fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetMode(OpenTK.Core.Platform.WindowHandle, OpenTK.Core.Platform.WindowMode) + fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetMode(OpenTK.Platform.WindowHandle, OpenTK.Platform.WindowMode) type: Method source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetMode - path: opentk/src/OpenTK.Platform.Native/SDL/SDLWindowComponent.cs - startLine: 820 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLWindowComponent.cs + startLine: 822 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: Set the mode of a window. remarks: >- - Setting or + Setting or will make the window fullscreen in the nearest monitor to the window location. - Use or + Use or - to explicitly set the monitor. + to explicitly set the monitor. example: [] syntax: content: public void SetMode(WindowHandle handle, WindowMode mode) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: Handle to a window. - id: mode - type: OpenTK.Core.Platform.WindowMode + type: OpenTK.Platform.WindowMode description: The new mode of the window. content.vb: Public Sub SetMode(handle As WindowHandle, mode As WindowMode) overload: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetMode* @@ -1706,120 +1564,108 @@ items: - type: System.ArgumentOutOfRangeException commentId: T:System.ArgumentOutOfRangeException description: mode is an invalid value. - - type: OpenTK.Core.Platform.PalNotImplementedException - commentId: T:OpenTK.Core.Platform.PalNotImplementedException - description: Driver does not support the value set by mode. See . + - type: OpenTK.Platform.PalNotImplementedException + commentId: T:OpenTK.Platform.PalNotImplementedException + description: Driver does not support the value set by mode. See . implements: - - OpenTK.Core.Platform.IWindowComponent.SetMode(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.WindowMode) -- uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle) - commentId: M:OpenTK.Platform.Native.SDL.SDLWindowComponent.SetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle) - id: SetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle) + - OpenTK.Platform.IWindowComponent.SetMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowMode) +- uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle) + commentId: M:OpenTK.Platform.Native.SDL.SDLWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle) + id: SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle) parent: OpenTK.Platform.Native.SDL.SDLWindowComponent langs: - csharp - vb name: SetFullscreenDisplay(WindowHandle, DisplayHandle?) nameWithType: SDLWindowComponent.SetFullscreenDisplay(WindowHandle, DisplayHandle?) - fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle, OpenTK.Core.Platform.DisplayHandle?) + fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle, OpenTK.Platform.DisplayHandle?) type: Method source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetFullscreenDisplay - path: opentk/src/OpenTK.Platform.Native/SDL/SDLWindowComponent.cs - startLine: 868 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLWindowComponent.cs + startLine: 870 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: >- Put a window into 'windowed fullscreen' on a specified display or the display the window is displayed on. If display is null then the window will be made fullscreen on the 'nearest' display. - remarks: To make an 'exclusive fullscreen' window see . + remarks: To make an 'exclusive fullscreen' window see . example: [] syntax: content: public void SetFullscreenDisplay(WindowHandle window, DisplayHandle? display) parameters: - id: window - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle - id: display - type: OpenTK.Core.Platform.DisplayHandle + type: OpenTK.Platform.DisplayHandle description: The display to make the window fullscreen on. content.vb: Public Sub SetFullscreenDisplay(window As WindowHandle, display As DisplayHandle) overload: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetFullscreenDisplay* implements: - - OpenTK.Core.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle) + - OpenTK.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle) nameWithType.vb: SDLWindowComponent.SetFullscreenDisplay(WindowHandle, DisplayHandle) - fullName.vb: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle, OpenTK.Core.Platform.DisplayHandle) + fullName.vb: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle, OpenTK.Platform.DisplayHandle) name.vb: SetFullscreenDisplay(WindowHandle, DisplayHandle) -- uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle,OpenTK.Core.Platform.VideoMode) - commentId: M:OpenTK.Platform.Native.SDL.SDLWindowComponent.SetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle,OpenTK.Core.Platform.VideoMode) - id: SetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle,OpenTK.Core.Platform.VideoMode) +- uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle,OpenTK.Platform.VideoMode) + commentId: M:OpenTK.Platform.Native.SDL.SDLWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle,OpenTK.Platform.VideoMode) + id: SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle,OpenTK.Platform.VideoMode) parent: OpenTK.Platform.Native.SDL.SDLWindowComponent langs: - csharp - vb name: SetFullscreenDisplay(WindowHandle, DisplayHandle, VideoMode) nameWithType: SDLWindowComponent.SetFullscreenDisplay(WindowHandle, DisplayHandle, VideoMode) - fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle, OpenTK.Core.Platform.DisplayHandle, OpenTK.Core.Platform.VideoMode) + fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle, OpenTK.Platform.DisplayHandle, OpenTK.Platform.VideoMode) type: Method source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetFullscreenDisplay - path: opentk/src/OpenTK.Platform.Native/SDL/SDLWindowComponent.cs - startLine: 903 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLWindowComponent.cs + startLine: 905 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: >- Put a window into 'exclusive fullscreen' on a specified display and change the video mode to the specified video mode. - Only video modes accuired using + Only video modes accuired using are expected to work. - remarks: To make an 'windowed fullscreen' window see . + remarks: To make an 'windowed fullscreen' window see . example: [] syntax: content: public void SetFullscreenDisplay(WindowHandle window, DisplayHandle display, VideoMode videoMode) parameters: - id: window - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle - id: display - type: OpenTK.Core.Platform.DisplayHandle + type: OpenTK.Platform.DisplayHandle description: The display to make the window fullscreen on. - id: videoMode - type: OpenTK.Core.Platform.VideoMode + type: OpenTK.Platform.VideoMode description: The video mode to use when making the window fullscreen. content.vb: Public Sub SetFullscreenDisplay(window As WindowHandle, display As DisplayHandle, videoMode As VideoMode) overload: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetFullscreenDisplay* implements: - - OpenTK.Core.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle,OpenTK.Core.Platform.VideoMode) -- uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle@) - commentId: M:OpenTK.Platform.Native.SDL.SDLWindowComponent.GetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle@) - id: GetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle@) + - OpenTK.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle,OpenTK.Platform.VideoMode) +- uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle@) + commentId: M:OpenTK.Platform.Native.SDL.SDLWindowComponent.GetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle@) + id: GetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle@) parent: OpenTK.Platform.Native.SDL.SDLWindowComponent langs: - csharp - vb name: GetFullscreenDisplay(WindowHandle, out DisplayHandle?) nameWithType: SDLWindowComponent.GetFullscreenDisplay(WindowHandle, out DisplayHandle?) - fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle, out OpenTK.Core.Platform.DisplayHandle?) + fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetFullscreenDisplay(OpenTK.Platform.WindowHandle, out OpenTK.Platform.DisplayHandle?) type: Method source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetFullscreenDisplay - path: opentk/src/OpenTK.Platform.Native/SDL/SDLWindowComponent.cs - startLine: 950 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLWindowComponent.cs + startLine: 952 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: Gets the display that the specified window is fullscreen on, if the window is fullscreen. example: [] @@ -1827,9 +1673,9 @@ items: content: public bool GetFullscreenDisplay(WindowHandle window, out DisplayHandle? display) parameters: - id: window - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle - id: display - type: OpenTK.Core.Platform.DisplayHandle + type: OpenTK.Platform.DisplayHandle description: The display where the window is fullscreen or null if the window is not fullscreen. return: type: System.Boolean @@ -1837,31 +1683,27 @@ items: content.vb: Public Function GetFullscreenDisplay(window As WindowHandle, display As DisplayHandle) As Boolean overload: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetFullscreenDisplay* implements: - - OpenTK.Core.Platform.IWindowComponent.GetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle@) + - OpenTK.Platform.IWindowComponent.GetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle@) nameWithType.vb: SDLWindowComponent.GetFullscreenDisplay(WindowHandle, DisplayHandle) - fullName.vb: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle, OpenTK.Core.Platform.DisplayHandle) + fullName.vb: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetFullscreenDisplay(OpenTK.Platform.WindowHandle, OpenTK.Platform.DisplayHandle) name.vb: GetFullscreenDisplay(WindowHandle, DisplayHandle) -- uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetBorderStyle(OpenTK.Core.Platform.WindowHandle) - commentId: M:OpenTK.Platform.Native.SDL.SDLWindowComponent.GetBorderStyle(OpenTK.Core.Platform.WindowHandle) - id: GetBorderStyle(OpenTK.Core.Platform.WindowHandle) +- uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetBorderStyle(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.Native.SDL.SDLWindowComponent.GetBorderStyle(OpenTK.Platform.WindowHandle) + id: GetBorderStyle(OpenTK.Platform.WindowHandle) parent: OpenTK.Platform.Native.SDL.SDLWindowComponent langs: - csharp - vb name: GetBorderStyle(WindowHandle) nameWithType: SDLWindowComponent.GetBorderStyle(WindowHandle) - fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetBorderStyle(OpenTK.Core.Platform.WindowHandle) + fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetBorderStyle(OpenTK.Platform.WindowHandle) type: Method source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetBorderStyle - path: opentk/src/OpenTK.Platform.Native/SDL/SDLWindowComponent.cs - startLine: 967 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLWindowComponent.cs + startLine: 969 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: Get the border style of a window. example: [] @@ -1869,10 +1711,10 @@ items: content: public WindowBorderStyle GetBorderStyle(WindowHandle handle) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: Handle to window. return: - type: OpenTK.Core.Platform.WindowBorderStyle + type: OpenTK.Platform.WindowBorderStyle description: The border style of the window. content.vb: Public Function GetBorderStyle(handle As WindowHandle) As WindowBorderStyle overload: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetBorderStyle* @@ -1881,28 +1723,24 @@ items: commentId: T:System.ArgumentNullException description: handle is null. implements: - - OpenTK.Core.Platform.IWindowComponent.GetBorderStyle(OpenTK.Core.Platform.WindowHandle) -- uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetBorderStyle(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.WindowBorderStyle) - commentId: M:OpenTK.Platform.Native.SDL.SDLWindowComponent.SetBorderStyle(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.WindowBorderStyle) - id: SetBorderStyle(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.WindowBorderStyle) + - OpenTK.Platform.IWindowComponent.GetBorderStyle(OpenTK.Platform.WindowHandle) +- uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetBorderStyle(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowBorderStyle) + commentId: M:OpenTK.Platform.Native.SDL.SDLWindowComponent.SetBorderStyle(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowBorderStyle) + id: SetBorderStyle(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowBorderStyle) parent: OpenTK.Platform.Native.SDL.SDLWindowComponent langs: - csharp - vb name: SetBorderStyle(WindowHandle, WindowBorderStyle) nameWithType: SDLWindowComponent.SetBorderStyle(WindowHandle, WindowBorderStyle) - fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetBorderStyle(OpenTK.Core.Platform.WindowHandle, OpenTK.Core.Platform.WindowBorderStyle) + fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetBorderStyle(OpenTK.Platform.WindowHandle, OpenTK.Platform.WindowBorderStyle) type: Method source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetBorderStyle - path: opentk/src/OpenTK.Platform.Native/SDL/SDLWindowComponent.cs - startLine: 994 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLWindowComponent.cs + startLine: 996 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: Set the border style of a window. example: [] @@ -1910,10 +1748,10 @@ items: content: public void SetBorderStyle(WindowHandle handle, WindowBorderStyle style) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: Handle to a window. - id: style - type: OpenTK.Core.Platform.WindowBorderStyle + type: OpenTK.Platform.WindowBorderStyle description: The new border style of the window. content.vb: Public Sub SetBorderStyle(handle As WindowHandle, style As WindowBorderStyle) overload: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetBorderStyle* @@ -1924,32 +1762,28 @@ items: - type: System.ArgumentOutOfRangeException commentId: T:System.ArgumentOutOfRangeException description: style is an invalid value. - - type: OpenTK.Core.Platform.PalNotImplementedException - commentId: T:OpenTK.Core.Platform.PalNotImplementedException - description: Driver does not support the value set by style. See . + - type: OpenTK.Platform.PalNotImplementedException + commentId: T:OpenTK.Platform.PalNotImplementedException + description: Driver does not support the value set by style. See . implements: - - OpenTK.Core.Platform.IWindowComponent.SetBorderStyle(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.WindowBorderStyle) -- uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetAlwaysOnTop(OpenTK.Core.Platform.WindowHandle,System.Boolean) - commentId: M:OpenTK.Platform.Native.SDL.SDLWindowComponent.SetAlwaysOnTop(OpenTK.Core.Platform.WindowHandle,System.Boolean) - id: SetAlwaysOnTop(OpenTK.Core.Platform.WindowHandle,System.Boolean) + - OpenTK.Platform.IWindowComponent.SetBorderStyle(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowBorderStyle) +- uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetAlwaysOnTop(OpenTK.Platform.WindowHandle,System.Boolean) + commentId: M:OpenTK.Platform.Native.SDL.SDLWindowComponent.SetAlwaysOnTop(OpenTK.Platform.WindowHandle,System.Boolean) + id: SetAlwaysOnTop(OpenTK.Platform.WindowHandle,System.Boolean) parent: OpenTK.Platform.Native.SDL.SDLWindowComponent langs: - csharp - vb name: SetAlwaysOnTop(WindowHandle, bool) nameWithType: SDLWindowComponent.SetAlwaysOnTop(WindowHandle, bool) - fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetAlwaysOnTop(OpenTK.Core.Platform.WindowHandle, bool) + fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetAlwaysOnTop(OpenTK.Platform.WindowHandle, bool) type: Method source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetAlwaysOnTop - path: opentk/src/OpenTK.Platform.Native/SDL/SDLWindowComponent.cs - startLine: 1021 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLWindowComponent.cs + startLine: 1023 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: Set if the window is an always on top window or not. example: [] @@ -1957,7 +1791,7 @@ items: content: public void SetAlwaysOnTop(WindowHandle handle, bool floating) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: A handle to the window to make always on top. - id: floating type: System.Boolean @@ -1965,31 +1799,27 @@ items: content.vb: Public Sub SetAlwaysOnTop(handle As WindowHandle, floating As Boolean) overload: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetAlwaysOnTop* implements: - - OpenTK.Core.Platform.IWindowComponent.SetAlwaysOnTop(OpenTK.Core.Platform.WindowHandle,System.Boolean) + - OpenTK.Platform.IWindowComponent.SetAlwaysOnTop(OpenTK.Platform.WindowHandle,System.Boolean) nameWithType.vb: SDLWindowComponent.SetAlwaysOnTop(WindowHandle, Boolean) - fullName.vb: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetAlwaysOnTop(OpenTK.Core.Platform.WindowHandle, Boolean) + fullName.vb: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetAlwaysOnTop(OpenTK.Platform.WindowHandle, Boolean) name.vb: SetAlwaysOnTop(WindowHandle, Boolean) -- uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.IsAlwaysOnTop(OpenTK.Core.Platform.WindowHandle) - commentId: M:OpenTK.Platform.Native.SDL.SDLWindowComponent.IsAlwaysOnTop(OpenTK.Core.Platform.WindowHandle) - id: IsAlwaysOnTop(OpenTK.Core.Platform.WindowHandle) +- uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.IsAlwaysOnTop(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.Native.SDL.SDLWindowComponent.IsAlwaysOnTop(OpenTK.Platform.WindowHandle) + id: IsAlwaysOnTop(OpenTK.Platform.WindowHandle) parent: OpenTK.Platform.Native.SDL.SDLWindowComponent langs: - csharp - vb name: IsAlwaysOnTop(WindowHandle) nameWithType: SDLWindowComponent.IsAlwaysOnTop(WindowHandle) - fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.IsAlwaysOnTop(OpenTK.Core.Platform.WindowHandle) + fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.IsAlwaysOnTop(OpenTK.Platform.WindowHandle) type: Method source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: IsAlwaysOnTop - path: opentk/src/OpenTK.Platform.Native/SDL/SDLWindowComponent.cs - startLine: 1029 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLWindowComponent.cs + startLine: 1031 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: Gets if the current window is always on top or not. example: [] @@ -1997,7 +1827,7 @@ items: content: public bool IsAlwaysOnTop(WindowHandle handle) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: A handle to the window to get whether or not is always on top. return: type: System.Boolean @@ -2005,28 +1835,24 @@ items: content.vb: Public Function IsAlwaysOnTop(handle As WindowHandle) As Boolean overload: OpenTK.Platform.Native.SDL.SDLWindowComponent.IsAlwaysOnTop* implements: - - OpenTK.Core.Platform.IWindowComponent.IsAlwaysOnTop(OpenTK.Core.Platform.WindowHandle) -- uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetHitTestCallback(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.HitTest) - commentId: M:OpenTK.Platform.Native.SDL.SDLWindowComponent.SetHitTestCallback(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.HitTest) - id: SetHitTestCallback(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.HitTest) + - OpenTK.Platform.IWindowComponent.IsAlwaysOnTop(OpenTK.Platform.WindowHandle) +- uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetHitTestCallback(OpenTK.Platform.WindowHandle,OpenTK.Platform.HitTest) + commentId: M:OpenTK.Platform.Native.SDL.SDLWindowComponent.SetHitTestCallback(OpenTK.Platform.WindowHandle,OpenTK.Platform.HitTest) + id: SetHitTestCallback(OpenTK.Platform.WindowHandle,OpenTK.Platform.HitTest) parent: OpenTK.Platform.Native.SDL.SDLWindowComponent langs: - csharp - vb name: SetHitTestCallback(WindowHandle, HitTest?) nameWithType: SDLWindowComponent.SetHitTestCallback(WindowHandle, HitTest?) - fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetHitTestCallback(OpenTK.Core.Platform.WindowHandle, OpenTK.Core.Platform.HitTest?) + fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetHitTestCallback(OpenTK.Platform.WindowHandle, OpenTK.Platform.HitTest?) type: Method source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetHitTestCallback - path: opentk/src/OpenTK.Platform.Native/SDL/SDLWindowComponent.cs - startLine: 1039 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLWindowComponent.cs + startLine: 1041 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: >- Sets a delegate that is used for hit testing. @@ -2044,39 +1870,35 @@ items: content: public void SetHitTestCallback(WindowHandle handle, HitTest? test) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: The window for which this hit test delegate should be used for. - id: test - type: OpenTK.Core.Platform.HitTest + type: OpenTK.Platform.HitTest description: The hit test delegate. content.vb: Public Sub SetHitTestCallback(handle As WindowHandle, test As HitTest) overload: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetHitTestCallback* implements: - - OpenTK.Core.Platform.IWindowComponent.SetHitTestCallback(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.HitTest) + - OpenTK.Platform.IWindowComponent.SetHitTestCallback(OpenTK.Platform.WindowHandle,OpenTK.Platform.HitTest) nameWithType.vb: SDLWindowComponent.SetHitTestCallback(WindowHandle, HitTest) - fullName.vb: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetHitTestCallback(OpenTK.Core.Platform.WindowHandle, OpenTK.Core.Platform.HitTest) + fullName.vb: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetHitTestCallback(OpenTK.Platform.WindowHandle, OpenTK.Platform.HitTest) name.vb: SetHitTestCallback(WindowHandle, HitTest) -- uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetCursor(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.CursorHandle) - commentId: M:OpenTK.Platform.Native.SDL.SDLWindowComponent.SetCursor(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.CursorHandle) - id: SetCursor(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.CursorHandle) +- uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetCursor(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorHandle) + commentId: M:OpenTK.Platform.Native.SDL.SDLWindowComponent.SetCursor(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorHandle) + id: SetCursor(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorHandle) parent: OpenTK.Platform.Native.SDL.SDLWindowComponent langs: - csharp - vb name: SetCursor(WindowHandle, CursorHandle?) nameWithType: SDLWindowComponent.SetCursor(WindowHandle, CursorHandle?) - fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetCursor(OpenTK.Core.Platform.WindowHandle, OpenTK.Core.Platform.CursorHandle?) + fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetCursor(OpenTK.Platform.WindowHandle, OpenTK.Platform.CursorHandle?) type: Method source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetCursor - path: opentk/src/OpenTK.Platform.Native/SDL/SDLWindowComponent.cs - startLine: 1084 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLWindowComponent.cs + startLine: 1086 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: Set the cursor object for a window. example: [] @@ -2084,10 +1906,10 @@ items: content: public void SetCursor(WindowHandle handle, CursorHandle? cursor) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: Handle to a window. - id: cursor - type: OpenTK.Core.Platform.CursorHandle + type: OpenTK.Platform.CursorHandle description: Handle to a cursor object, or null for hidden cursor. content.vb: Public Sub SetCursor(handle As WindowHandle, cursor As CursorHandle) overload: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetCursor* @@ -2095,72 +1917,67 @@ items: - type: System.ArgumentNullException commentId: T:System.ArgumentNullException description: handle is null. - - type: OpenTK.Core.Platform.PalNotImplementedException - commentId: T:OpenTK.Core.Platform.PalNotImplementedException - description: Driver does not support setting the window mouse cursor. See . + - type: OpenTK.Platform.PalNotImplementedException + commentId: T:OpenTK.Platform.PalNotImplementedException + description: Backend does not support setting the window mouse cursor. See . + seealso: + - linkId: OpenTK.Platform.IWindowComponent.CanSetCursor + commentId: P:OpenTK.Platform.IWindowComponent.CanSetCursor implements: - - OpenTK.Core.Platform.IWindowComponent.SetCursor(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.CursorHandle) + - OpenTK.Platform.IWindowComponent.SetCursor(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorHandle) nameWithType.vb: SDLWindowComponent.SetCursor(WindowHandle, CursorHandle) - fullName.vb: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetCursor(OpenTK.Core.Platform.WindowHandle, OpenTK.Core.Platform.CursorHandle) + fullName.vb: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetCursor(OpenTK.Platform.WindowHandle, OpenTK.Platform.CursorHandle) name.vb: SetCursor(WindowHandle, CursorHandle) -- uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetCursorCaptureMode(OpenTK.Core.Platform.WindowHandle) - commentId: M:OpenTK.Platform.Native.SDL.SDLWindowComponent.GetCursorCaptureMode(OpenTK.Core.Platform.WindowHandle) - id: GetCursorCaptureMode(OpenTK.Core.Platform.WindowHandle) +- uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetCursorCaptureMode(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.Native.SDL.SDLWindowComponent.GetCursorCaptureMode(OpenTK.Platform.WindowHandle) + id: GetCursorCaptureMode(OpenTK.Platform.WindowHandle) parent: OpenTK.Platform.Native.SDL.SDLWindowComponent langs: - csharp - vb name: GetCursorCaptureMode(WindowHandle) nameWithType: SDLWindowComponent.GetCursorCaptureMode(WindowHandle) - fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetCursorCaptureMode(OpenTK.Core.Platform.WindowHandle) + fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetCursorCaptureMode(OpenTK.Platform.WindowHandle) type: Method source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetCursorCaptureMode - path: opentk/src/OpenTK.Platform.Native/SDL/SDLWindowComponent.cs - startLine: 1108 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLWindowComponent.cs + startLine: 1110 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL - summary: Gets the current cursor capture mode. See for more details. + summary: Gets the current cursor capture mode. See for more details. example: [] syntax: content: public CursorCaptureMode GetCursorCaptureMode(WindowHandle handle) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: Handle to a window. return: - type: OpenTK.Core.Platform.CursorCaptureMode + type: OpenTK.Platform.CursorCaptureMode description: The current cursor capture mode. content.vb: Public Function GetCursorCaptureMode(handle As WindowHandle) As CursorCaptureMode overload: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetCursorCaptureMode* implements: - - OpenTK.Core.Platform.IWindowComponent.GetCursorCaptureMode(OpenTK.Core.Platform.WindowHandle) -- uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetCursorCaptureMode(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.CursorCaptureMode) - commentId: M:OpenTK.Platform.Native.SDL.SDLWindowComponent.SetCursorCaptureMode(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.CursorCaptureMode) - id: SetCursorCaptureMode(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.CursorCaptureMode) + - OpenTK.Platform.IWindowComponent.GetCursorCaptureMode(OpenTK.Platform.WindowHandle) +- uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetCursorCaptureMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorCaptureMode) + commentId: M:OpenTK.Platform.Native.SDL.SDLWindowComponent.SetCursorCaptureMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorCaptureMode) + id: SetCursorCaptureMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorCaptureMode) parent: OpenTK.Platform.Native.SDL.SDLWindowComponent langs: - csharp - vb name: SetCursorCaptureMode(WindowHandle, CursorCaptureMode) nameWithType: SDLWindowComponent.SetCursorCaptureMode(WindowHandle, CursorCaptureMode) - fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetCursorCaptureMode(OpenTK.Core.Platform.WindowHandle, OpenTK.Core.Platform.CursorCaptureMode) + fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetCursorCaptureMode(OpenTK.Platform.WindowHandle, OpenTK.Platform.CursorCaptureMode) type: Method source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetCursorCaptureMode - path: opentk/src/OpenTK.Platform.Native/SDL/SDLWindowComponent.cs - startLine: 1129 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLWindowComponent.cs + startLine: 1131 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: >- Sets the cursor capture mode of the window. @@ -2171,36 +1988,35 @@ items: content: public void SetCursorCaptureMode(WindowHandle handle, CursorCaptureMode mode) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: Handle to a window. - id: mode - type: OpenTK.Core.Platform.CursorCaptureMode + type: OpenTK.Platform.CursorCaptureMode description: The cursor capture mode. content.vb: Public Sub SetCursorCaptureMode(handle As WindowHandle, mode As CursorCaptureMode) overload: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetCursorCaptureMode* + seealso: + - linkId: OpenTK.Platform.IWindowComponent.CanCaptureCursor + commentId: P:OpenTK.Platform.IWindowComponent.CanCaptureCursor implements: - - OpenTK.Core.Platform.IWindowComponent.SetCursorCaptureMode(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.CursorCaptureMode) -- uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.IsFocused(OpenTK.Core.Platform.WindowHandle) - commentId: M:OpenTK.Platform.Native.SDL.SDLWindowComponent.IsFocused(OpenTK.Core.Platform.WindowHandle) - id: IsFocused(OpenTK.Core.Platform.WindowHandle) + - OpenTK.Platform.IWindowComponent.SetCursorCaptureMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorCaptureMode) +- uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.IsFocused(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.Native.SDL.SDLWindowComponent.IsFocused(OpenTK.Platform.WindowHandle) + id: IsFocused(OpenTK.Platform.WindowHandle) parent: OpenTK.Platform.Native.SDL.SDLWindowComponent langs: - csharp - vb name: IsFocused(WindowHandle) nameWithType: SDLWindowComponent.IsFocused(WindowHandle) - fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.IsFocused(OpenTK.Core.Platform.WindowHandle) + fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.IsFocused(OpenTK.Platform.WindowHandle) type: Method source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: IsFocused - path: opentk/src/OpenTK.Platform.Native/SDL/SDLWindowComponent.cs - startLine: 1150 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLWindowComponent.cs + startLine: 1152 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: Returns true if the given window has input focus. example: [] @@ -2208,7 +2024,7 @@ items: content: public bool IsFocused(WindowHandle handle) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: Handle to a window. return: type: System.Boolean @@ -2216,28 +2032,24 @@ items: content.vb: Public Function IsFocused(handle As WindowHandle) As Boolean overload: OpenTK.Platform.Native.SDL.SDLWindowComponent.IsFocused* implements: - - OpenTK.Core.Platform.IWindowComponent.IsFocused(OpenTK.Core.Platform.WindowHandle) -- uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.FocusWindow(OpenTK.Core.Platform.WindowHandle) - commentId: M:OpenTK.Platform.Native.SDL.SDLWindowComponent.FocusWindow(OpenTK.Core.Platform.WindowHandle) - id: FocusWindow(OpenTK.Core.Platform.WindowHandle) + - OpenTK.Platform.IWindowComponent.IsFocused(OpenTK.Platform.WindowHandle) +- uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.FocusWindow(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.Native.SDL.SDLWindowComponent.FocusWindow(OpenTK.Platform.WindowHandle) + id: FocusWindow(OpenTK.Platform.WindowHandle) parent: OpenTK.Platform.Native.SDL.SDLWindowComponent langs: - csharp - vb name: FocusWindow(WindowHandle) nameWithType: SDLWindowComponent.FocusWindow(WindowHandle) - fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.FocusWindow(OpenTK.Core.Platform.WindowHandle) + fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.FocusWindow(OpenTK.Platform.WindowHandle) type: Method source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: FocusWindow - path: opentk/src/OpenTK.Platform.Native/SDL/SDLWindowComponent.cs - startLine: 1158 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLWindowComponent.cs + startLine: 1160 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: Gives the window input focus. example: [] @@ -2245,33 +2057,29 @@ items: content: public void FocusWindow(WindowHandle handle) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: Handle to the window to focus. content.vb: Public Sub FocusWindow(handle As WindowHandle) overload: OpenTK.Platform.Native.SDL.SDLWindowComponent.FocusWindow* implements: - - OpenTK.Core.Platform.IWindowComponent.FocusWindow(OpenTK.Core.Platform.WindowHandle) -- uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.RequestAttention(OpenTK.Core.Platform.WindowHandle) - commentId: M:OpenTK.Platform.Native.SDL.SDLWindowComponent.RequestAttention(OpenTK.Core.Platform.WindowHandle) - id: RequestAttention(OpenTK.Core.Platform.WindowHandle) + - OpenTK.Platform.IWindowComponent.FocusWindow(OpenTK.Platform.WindowHandle) +- uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.RequestAttention(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.Native.SDL.SDLWindowComponent.RequestAttention(OpenTK.Platform.WindowHandle) + id: RequestAttention(OpenTK.Platform.WindowHandle) parent: OpenTK.Platform.Native.SDL.SDLWindowComponent langs: - csharp - vb name: RequestAttention(WindowHandle) nameWithType: SDLWindowComponent.RequestAttention(WindowHandle) - fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.RequestAttention(OpenTK.Core.Platform.WindowHandle) + fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.RequestAttention(OpenTK.Platform.WindowHandle) type: Method source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: RequestAttention - path: opentk/src/OpenTK.Platform.Native/SDL/SDLWindowComponent.cs - startLine: 1166 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLWindowComponent.cs + startLine: 1168 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: Requests that the user pay attention to the window. example: [] @@ -2279,33 +2087,29 @@ items: content: public void RequestAttention(WindowHandle handle) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: A handle to the window that requests attention. content.vb: Public Sub RequestAttention(handle As WindowHandle) overload: OpenTK.Platform.Native.SDL.SDLWindowComponent.RequestAttention* implements: - - OpenTK.Core.Platform.IWindowComponent.RequestAttention(OpenTK.Core.Platform.WindowHandle) -- uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.ScreenToClient(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) - commentId: M:OpenTK.Platform.Native.SDL.SDLWindowComponent.ScreenToClient(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) - id: ScreenToClient(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) + - OpenTK.Platform.IWindowComponent.RequestAttention(OpenTK.Platform.WindowHandle) +- uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) + commentId: M:OpenTK.Platform.Native.SDL.SDLWindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) + id: ScreenToClient(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) parent: OpenTK.Platform.Native.SDL.SDLWindowComponent langs: - csharp - vb name: ScreenToClient(WindowHandle, int, int, out int, out int) nameWithType: SDLWindowComponent.ScreenToClient(WindowHandle, int, int, out int, out int) - fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.ScreenToClient(OpenTK.Core.Platform.WindowHandle, int, int, out int, out int) + fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle, int, int, out int, out int) type: Method source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ScreenToClient - path: opentk/src/OpenTK.Platform.Native/SDL/SDLWindowComponent.cs - startLine: 1174 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLWindowComponent.cs + startLine: 1176 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: Converts screen coordinates to window relative coordinates. example: [] @@ -2313,7 +2117,7 @@ items: content: public void ScreenToClient(WindowHandle handle, int x, int y, out int clientX, out int clientY) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: The window handle. - id: x type: System.Int32 @@ -2330,31 +2134,27 @@ items: content.vb: Public Sub ScreenToClient(handle As WindowHandle, x As Integer, y As Integer, clientX As Integer, clientY As Integer) overload: OpenTK.Platform.Native.SDL.SDLWindowComponent.ScreenToClient* implements: - - OpenTK.Core.Platform.IWindowComponent.ScreenToClient(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) + - OpenTK.Platform.IWindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) nameWithType.vb: SDLWindowComponent.ScreenToClient(WindowHandle, Integer, Integer, Integer, Integer) - fullName.vb: OpenTK.Platform.Native.SDL.SDLWindowComponent.ScreenToClient(OpenTK.Core.Platform.WindowHandle, Integer, Integer, Integer, Integer) + fullName.vb: OpenTK.Platform.Native.SDL.SDLWindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle, Integer, Integer, Integer, Integer) name.vb: ScreenToClient(WindowHandle, Integer, Integer, Integer, Integer) -- uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.ClientToScreen(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) - commentId: M:OpenTK.Platform.Native.SDL.SDLWindowComponent.ClientToScreen(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) - id: ClientToScreen(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) +- uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) + commentId: M:OpenTK.Platform.Native.SDL.SDLWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) + id: ClientToScreen(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) parent: OpenTK.Platform.Native.SDL.SDLWindowComponent langs: - csharp - vb name: ClientToScreen(WindowHandle, int, int, out int, out int) nameWithType: SDLWindowComponent.ClientToScreen(WindowHandle, int, int, out int, out int) - fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.ClientToScreen(OpenTK.Core.Platform.WindowHandle, int, int, out int, out int) + fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle, int, int, out int, out int) type: Method source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ClientToScreen - path: opentk/src/OpenTK.Platform.Native/SDL/SDLWindowComponent.cs - startLine: 1184 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLWindowComponent.cs + startLine: 1186 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: Converts window relative coordinates to screen coordinates. example: [] @@ -2362,7 +2162,7 @@ items: content: public void ClientToScreen(WindowHandle handle, int clientX, int clientY, out int x, out int y) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: The window handle. - id: clientX type: System.Int32 @@ -2379,31 +2179,27 @@ items: content.vb: Public Sub ClientToScreen(handle As WindowHandle, clientX As Integer, clientY As Integer, x As Integer, y As Integer) overload: OpenTK.Platform.Native.SDL.SDLWindowComponent.ClientToScreen* implements: - - OpenTK.Core.Platform.IWindowComponent.ClientToScreen(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) + - OpenTK.Platform.IWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) nameWithType.vb: SDLWindowComponent.ClientToScreen(WindowHandle, Integer, Integer, Integer, Integer) - fullName.vb: OpenTK.Platform.Native.SDL.SDLWindowComponent.ClientToScreen(OpenTK.Core.Platform.WindowHandle, Integer, Integer, Integer, Integer) + fullName.vb: OpenTK.Platform.Native.SDL.SDLWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle, Integer, Integer, Integer, Integer) name.vb: ClientToScreen(WindowHandle, Integer, Integer, Integer, Integer) -- uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetScaleFactor(OpenTK.Core.Platform.WindowHandle,System.Single@,System.Single@) - commentId: M:OpenTK.Platform.Native.SDL.SDLWindowComponent.GetScaleFactor(OpenTK.Core.Platform.WindowHandle,System.Single@,System.Single@) - id: GetScaleFactor(OpenTK.Core.Platform.WindowHandle,System.Single@,System.Single@) +- uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetScaleFactor(OpenTK.Platform.WindowHandle,System.Single@,System.Single@) + commentId: M:OpenTK.Platform.Native.SDL.SDLWindowComponent.GetScaleFactor(OpenTK.Platform.WindowHandle,System.Single@,System.Single@) + id: GetScaleFactor(OpenTK.Platform.WindowHandle,System.Single@,System.Single@) parent: OpenTK.Platform.Native.SDL.SDLWindowComponent langs: - csharp - vb name: GetScaleFactor(WindowHandle, out float, out float) nameWithType: SDLWindowComponent.GetScaleFactor(WindowHandle, out float, out float) - fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetScaleFactor(OpenTK.Core.Platform.WindowHandle, out float, out float) + fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetScaleFactor(OpenTK.Platform.WindowHandle, out float, out float) type: Method source: - remote: - path: src/OpenTK.Platform.Native/SDL/SDLWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetScaleFactor - path: opentk/src/OpenTK.Platform.Native/SDL/SDLWindowComponent.cs - startLine: 1194 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLWindowComponent.cs + startLine: 1196 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: Returns the current scale factor of this window. example: [] @@ -2411,7 +2207,7 @@ items: content: public void GetScaleFactor(WindowHandle handle, out float scaleX, out float scaleY) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: The window handle. - id: scaleX type: System.Single @@ -2422,12 +2218,12 @@ items: content.vb: Public Sub GetScaleFactor(handle As WindowHandle, scaleX As Single, scaleY As Single) overload: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetScaleFactor* seealso: - - linkId: OpenTK.Core.Platform.WindowScaleChangeEventArgs - commentId: T:OpenTK.Core.Platform.WindowScaleChangeEventArgs + - linkId: OpenTK.Platform.WindowScaleChangeEventArgs + commentId: T:OpenTK.Platform.WindowScaleChangeEventArgs implements: - - OpenTK.Core.Platform.IWindowComponent.GetScaleFactor(OpenTK.Core.Platform.WindowHandle,System.Single@,System.Single@) + - OpenTK.Platform.IWindowComponent.GetScaleFactor(OpenTK.Platform.WindowHandle,System.Single@,System.Single@) nameWithType.vb: SDLWindowComponent.GetScaleFactor(WindowHandle, Single, Single) - fullName.vb: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetScaleFactor(OpenTK.Core.Platform.WindowHandle, Single, Single) + fullName.vb: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetScaleFactor(OpenTK.Platform.WindowHandle, Single, Single) name.vb: GetScaleFactor(WindowHandle, Single, Single) references: - uid: OpenTK.Platform.Native.SDL @@ -2479,20 +2275,20 @@ references: nameWithType.vb: Object fullName.vb: Object name.vb: Object -- uid: OpenTK.Core.Platform.IWindowComponent - commentId: T:OpenTK.Core.Platform.IWindowComponent - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.IWindowComponent.html +- uid: OpenTK.Platform.IWindowComponent + commentId: T:OpenTK.Platform.IWindowComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IWindowComponent.html name: IWindowComponent nameWithType: IWindowComponent - fullName: OpenTK.Core.Platform.IWindowComponent -- uid: OpenTK.Core.Platform.IPalComponent - commentId: T:OpenTK.Core.Platform.IPalComponent - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.IPalComponent.html + fullName: OpenTK.Platform.IWindowComponent +- uid: OpenTK.Platform.IPalComponent + commentId: T:OpenTK.Platform.IPalComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IPalComponent.html name: IPalComponent nameWithType: IPalComponent - fullName: OpenTK.Core.Platform.IPalComponent + fullName: OpenTK.Platform.IPalComponent - uid: System.Object.Equals(System.Object) commentId: M:System.Object.Equals(System.Object) parent: System.Object @@ -2719,49 +2515,41 @@ references: name: System nameWithType: System fullName: System -- uid: OpenTK.Core.Platform - commentId: N:OpenTK.Core.Platform +- uid: OpenTK.Platform + commentId: N:OpenTK.Platform href: OpenTK.html - name: OpenTK.Core.Platform - nameWithType: OpenTK.Core.Platform - fullName: OpenTK.Core.Platform + name: OpenTK.Platform + nameWithType: OpenTK.Platform + fullName: OpenTK.Platform spec.csharp: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html spec.vb: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html - uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.Name* commentId: Overload:OpenTK.Platform.Native.SDL.SDLWindowComponent.Name href: OpenTK.Platform.Native.SDL.SDLWindowComponent.html#OpenTK_Platform_Native_SDL_SDLWindowComponent_Name name: Name nameWithType: SDLWindowComponent.Name fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.Name -- uid: OpenTK.Core.Platform.IPalComponent.Name - commentId: P:OpenTK.Core.Platform.IPalComponent.Name - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Name +- uid: OpenTK.Platform.IPalComponent.Name + commentId: P:OpenTK.Platform.IPalComponent.Name + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Name name: Name nameWithType: IPalComponent.Name - fullName: OpenTK.Core.Platform.IPalComponent.Name + fullName: OpenTK.Platform.IPalComponent.Name - uid: System.String commentId: T:System.String parent: System @@ -2779,33 +2567,33 @@ references: name: Provides nameWithType: SDLWindowComponent.Provides fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.Provides -- uid: OpenTK.Core.Platform.IPalComponent.Provides - commentId: P:OpenTK.Core.Platform.IPalComponent.Provides - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Provides +- uid: OpenTK.Platform.IPalComponent.Provides + commentId: P:OpenTK.Platform.IPalComponent.Provides + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Provides name: Provides nameWithType: IPalComponent.Provides - fullName: OpenTK.Core.Platform.IPalComponent.Provides -- uid: OpenTK.Core.Platform.PalComponents - commentId: T:OpenTK.Core.Platform.PalComponents - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.PalComponents.html + fullName: OpenTK.Platform.IPalComponent.Provides +- uid: OpenTK.Platform.PalComponents + commentId: T:OpenTK.Platform.PalComponents + parent: OpenTK.Platform + href: OpenTK.Platform.PalComponents.html name: PalComponents nameWithType: PalComponents - fullName: OpenTK.Core.Platform.PalComponents + fullName: OpenTK.Platform.PalComponents - uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.Logger* commentId: Overload:OpenTK.Platform.Native.SDL.SDLWindowComponent.Logger href: OpenTK.Platform.Native.SDL.SDLWindowComponent.html#OpenTK_Platform_Native_SDL_SDLWindowComponent_Logger name: Logger nameWithType: SDLWindowComponent.Logger fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.Logger -- uid: OpenTK.Core.Platform.IPalComponent.Logger - commentId: P:OpenTK.Core.Platform.IPalComponent.Logger - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Logger +- uid: OpenTK.Platform.IPalComponent.Logger + commentId: P:OpenTK.Platform.IPalComponent.Logger + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Logger name: Logger nameWithType: IPalComponent.Logger - fullName: OpenTK.Core.Platform.IPalComponent.Logger + fullName: OpenTK.Platform.IPalComponent.Logger - uid: OpenTK.Core.Utility.ILogger commentId: T:OpenTK.Core.Utility.ILogger parent: OpenTK.Core.Utility @@ -2845,55 +2633,90 @@ references: href: OpenTK.Core.Utility.html - uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.Initialize* commentId: Overload:OpenTK.Platform.Native.SDL.SDLWindowComponent.Initialize - href: OpenTK.Platform.Native.SDL.SDLWindowComponent.html#OpenTK_Platform_Native_SDL_SDLWindowComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + href: OpenTK.Platform.Native.SDL.SDLWindowComponent.html#OpenTK_Platform_Native_SDL_SDLWindowComponent_Initialize_OpenTK_Platform_ToolkitOptions_ name: Initialize nameWithType: SDLWindowComponent.Initialize fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.Initialize -- uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - commentId: M:OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ +- uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ name: Initialize(ToolkitOptions) nameWithType: IPalComponent.Initialize(ToolkitOptions) - fullName: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + fullName: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) spec.csharp: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + - uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.ToolkitOptions + - uid: OpenTK.Platform.ToolkitOptions name: ToolkitOptions - href: OpenTK.Core.Platform.ToolkitOptions.html + href: OpenTK.Platform.ToolkitOptions.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + - uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.ToolkitOptions + - uid: OpenTK.Platform.ToolkitOptions name: ToolkitOptions - href: OpenTK.Core.Platform.ToolkitOptions.html + href: OpenTK.Platform.ToolkitOptions.html - name: ) -- uid: OpenTK.Core.Platform.ToolkitOptions - commentId: T:OpenTK.Core.Platform.ToolkitOptions - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.ToolkitOptions.html +- uid: OpenTK.Platform.ToolkitOptions + commentId: T:OpenTK.Platform.ToolkitOptions + parent: OpenTK.Platform + href: OpenTK.Platform.ToolkitOptions.html name: ToolkitOptions nameWithType: ToolkitOptions - fullName: OpenTK.Core.Platform.ToolkitOptions + fullName: OpenTK.Platform.ToolkitOptions +- uid: OpenTK.Platform.IWindowComponent.SetIcon(OpenTK.Platform.WindowHandle,OpenTK.Platform.IconHandle) + commentId: M:OpenTK.Platform.IWindowComponent.SetIcon(OpenTK.Platform.WindowHandle,OpenTK.Platform.IconHandle) + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetIcon_OpenTK_Platform_WindowHandle_OpenTK_Platform_IconHandle_ + name: SetIcon(WindowHandle, IconHandle) + nameWithType: IWindowComponent.SetIcon(WindowHandle, IconHandle) + fullName: OpenTK.Platform.IWindowComponent.SetIcon(OpenTK.Platform.WindowHandle, OpenTK.Platform.IconHandle) + spec.csharp: + - uid: OpenTK.Platform.IWindowComponent.SetIcon(OpenTK.Platform.WindowHandle,OpenTK.Platform.IconHandle) + name: SetIcon + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetIcon_OpenTK_Platform_WindowHandle_OpenTK_Platform_IconHandle_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: OpenTK.Platform.IconHandle + name: IconHandle + href: OpenTK.Platform.IconHandle.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IWindowComponent.SetIcon(OpenTK.Platform.WindowHandle,OpenTK.Platform.IconHandle) + name: SetIcon + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetIcon_OpenTK_Platform_WindowHandle_OpenTK_Platform_IconHandle_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: OpenTK.Platform.IconHandle + name: IconHandle + href: OpenTK.Platform.IconHandle.html + - name: ) - uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.CanSetIcon* commentId: Overload:OpenTK.Platform.Native.SDL.SDLWindowComponent.CanSetIcon href: OpenTK.Platform.Native.SDL.SDLWindowComponent.html#OpenTK_Platform_Native_SDL_SDLWindowComponent_CanSetIcon name: CanSetIcon nameWithType: SDLWindowComponent.CanSetIcon fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.CanSetIcon -- uid: OpenTK.Core.Platform.IWindowComponent.CanSetIcon - commentId: P:OpenTK.Core.Platform.IWindowComponent.CanSetIcon - parent: OpenTK.Core.Platform.IWindowComponent - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_CanSetIcon +- uid: OpenTK.Platform.IWindowComponent.CanSetIcon + commentId: P:OpenTK.Platform.IWindowComponent.CanSetIcon + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_CanSetIcon name: CanSetIcon nameWithType: IWindowComponent.CanSetIcon - fullName: OpenTK.Core.Platform.IWindowComponent.CanSetIcon + fullName: OpenTK.Platform.IWindowComponent.CanSetIcon - uid: System.Boolean commentId: T:System.Boolean parent: System @@ -2905,68 +2728,163 @@ references: nameWithType.vb: Boolean fullName.vb: Boolean name.vb: Boolean +- uid: OpenTK.Platform.IWindowComponent.GetDisplay(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.GetDisplay(OpenTK.Platform.WindowHandle) + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetDisplay_OpenTK_Platform_WindowHandle_ + name: GetDisplay(WindowHandle) + nameWithType: IWindowComponent.GetDisplay(WindowHandle) + fullName: OpenTK.Platform.IWindowComponent.GetDisplay(OpenTK.Platform.WindowHandle) + spec.csharp: + - uid: OpenTK.Platform.IWindowComponent.GetDisplay(OpenTK.Platform.WindowHandle) + name: GetDisplay + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetDisplay_OpenTK_Platform_WindowHandle_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IWindowComponent.GetDisplay(OpenTK.Platform.WindowHandle) + name: GetDisplay + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetDisplay_OpenTK_Platform_WindowHandle_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ) - uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.CanGetDisplay* commentId: Overload:OpenTK.Platform.Native.SDL.SDLWindowComponent.CanGetDisplay href: OpenTK.Platform.Native.SDL.SDLWindowComponent.html#OpenTK_Platform_Native_SDL_SDLWindowComponent_CanGetDisplay name: CanGetDisplay nameWithType: SDLWindowComponent.CanGetDisplay fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.CanGetDisplay -- uid: OpenTK.Core.Platform.IWindowComponent.CanGetDisplay - commentId: P:OpenTK.Core.Platform.IWindowComponent.CanGetDisplay - parent: OpenTK.Core.Platform.IWindowComponent - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_CanGetDisplay +- uid: OpenTK.Platform.IWindowComponent.CanGetDisplay + commentId: P:OpenTK.Platform.IWindowComponent.CanGetDisplay + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_CanGetDisplay name: CanGetDisplay nameWithType: IWindowComponent.CanGetDisplay - fullName: OpenTK.Core.Platform.IWindowComponent.CanGetDisplay + fullName: OpenTK.Platform.IWindowComponent.CanGetDisplay +- uid: OpenTK.Platform.IWindowComponent.SetCursor(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorHandle) + commentId: M:OpenTK.Platform.IWindowComponent.SetCursor(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorHandle) + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetCursor_OpenTK_Platform_WindowHandle_OpenTK_Platform_CursorHandle_ + name: SetCursor(WindowHandle, CursorHandle) + nameWithType: IWindowComponent.SetCursor(WindowHandle, CursorHandle) + fullName: OpenTK.Platform.IWindowComponent.SetCursor(OpenTK.Platform.WindowHandle, OpenTK.Platform.CursorHandle) + spec.csharp: + - uid: OpenTK.Platform.IWindowComponent.SetCursor(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorHandle) + name: SetCursor + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetCursor_OpenTK_Platform_WindowHandle_OpenTK_Platform_CursorHandle_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: OpenTK.Platform.CursorHandle + name: CursorHandle + href: OpenTK.Platform.CursorHandle.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IWindowComponent.SetCursor(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorHandle) + name: SetCursor + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetCursor_OpenTK_Platform_WindowHandle_OpenTK_Platform_CursorHandle_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: OpenTK.Platform.CursorHandle + name: CursorHandle + href: OpenTK.Platform.CursorHandle.html + - name: ) - uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.CanSetCursor* commentId: Overload:OpenTK.Platform.Native.SDL.SDLWindowComponent.CanSetCursor href: OpenTK.Platform.Native.SDL.SDLWindowComponent.html#OpenTK_Platform_Native_SDL_SDLWindowComponent_CanSetCursor name: CanSetCursor nameWithType: SDLWindowComponent.CanSetCursor fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.CanSetCursor -- uid: OpenTK.Core.Platform.IWindowComponent.CanSetCursor - commentId: P:OpenTK.Core.Platform.IWindowComponent.CanSetCursor - parent: OpenTK.Core.Platform.IWindowComponent - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_CanSetCursor +- uid: OpenTK.Platform.IWindowComponent.CanSetCursor + commentId: P:OpenTK.Platform.IWindowComponent.CanSetCursor + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_CanSetCursor name: CanSetCursor nameWithType: IWindowComponent.CanSetCursor - fullName: OpenTK.Core.Platform.IWindowComponent.CanSetCursor + fullName: OpenTK.Platform.IWindowComponent.CanSetCursor +- uid: OpenTK.Platform.IWindowComponent.SetCursorCaptureMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorCaptureMode) + commentId: M:OpenTK.Platform.IWindowComponent.SetCursorCaptureMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorCaptureMode) + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetCursorCaptureMode_OpenTK_Platform_WindowHandle_OpenTK_Platform_CursorCaptureMode_ + name: SetCursorCaptureMode(WindowHandle, CursorCaptureMode) + nameWithType: IWindowComponent.SetCursorCaptureMode(WindowHandle, CursorCaptureMode) + fullName: OpenTK.Platform.IWindowComponent.SetCursorCaptureMode(OpenTK.Platform.WindowHandle, OpenTK.Platform.CursorCaptureMode) + spec.csharp: + - uid: OpenTK.Platform.IWindowComponent.SetCursorCaptureMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorCaptureMode) + name: SetCursorCaptureMode + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetCursorCaptureMode_OpenTK_Platform_WindowHandle_OpenTK_Platform_CursorCaptureMode_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: OpenTK.Platform.CursorCaptureMode + name: CursorCaptureMode + href: OpenTK.Platform.CursorCaptureMode.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IWindowComponent.SetCursorCaptureMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorCaptureMode) + name: SetCursorCaptureMode + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetCursorCaptureMode_OpenTK_Platform_WindowHandle_OpenTK_Platform_CursorCaptureMode_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: OpenTK.Platform.CursorCaptureMode + name: CursorCaptureMode + href: OpenTK.Platform.CursorCaptureMode.html + - name: ) - uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.CanCaptureCursor* commentId: Overload:OpenTK.Platform.Native.SDL.SDLWindowComponent.CanCaptureCursor href: OpenTK.Platform.Native.SDL.SDLWindowComponent.html#OpenTK_Platform_Native_SDL_SDLWindowComponent_CanCaptureCursor name: CanCaptureCursor nameWithType: SDLWindowComponent.CanCaptureCursor fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.CanCaptureCursor -- uid: OpenTK.Core.Platform.IWindowComponent.CanCaptureCursor - commentId: P:OpenTK.Core.Platform.IWindowComponent.CanCaptureCursor - parent: OpenTK.Core.Platform.IWindowComponent - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_CanCaptureCursor +- uid: OpenTK.Platform.IWindowComponent.CanCaptureCursor + commentId: P:OpenTK.Platform.IWindowComponent.CanCaptureCursor + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_CanCaptureCursor name: CanCaptureCursor nameWithType: IWindowComponent.CanCaptureCursor - fullName: OpenTK.Core.Platform.IWindowComponent.CanCaptureCursor + fullName: OpenTK.Platform.IWindowComponent.CanCaptureCursor - uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.SupportedEvents* commentId: Overload:OpenTK.Platform.Native.SDL.SDLWindowComponent.SupportedEvents href: OpenTK.Platform.Native.SDL.SDLWindowComponent.html#OpenTK_Platform_Native_SDL_SDLWindowComponent_SupportedEvents name: SupportedEvents nameWithType: SDLWindowComponent.SupportedEvents fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.SupportedEvents -- uid: OpenTK.Core.Platform.IWindowComponent.SupportedEvents - commentId: P:OpenTK.Core.Platform.IWindowComponent.SupportedEvents - parent: OpenTK.Core.Platform.IWindowComponent - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SupportedEvents +- uid: OpenTK.Platform.IWindowComponent.SupportedEvents + commentId: P:OpenTK.Platform.IWindowComponent.SupportedEvents + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SupportedEvents name: SupportedEvents nameWithType: IWindowComponent.SupportedEvents - fullName: OpenTK.Core.Platform.IWindowComponent.SupportedEvents -- uid: System.Collections.Generic.IReadOnlyList{OpenTK.Core.Platform.PlatformEventType} - commentId: T:System.Collections.Generic.IReadOnlyList{OpenTK.Core.Platform.PlatformEventType} + fullName: OpenTK.Platform.IWindowComponent.SupportedEvents +- uid: System.Collections.Generic.IReadOnlyList{OpenTK.Platform.PlatformEventType} + commentId: T:System.Collections.Generic.IReadOnlyList{OpenTK.Platform.PlatformEventType} parent: System.Collections.Generic definition: System.Collections.Generic.IReadOnlyList`1 href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 name: IReadOnlyList nameWithType: IReadOnlyList - fullName: System.Collections.Generic.IReadOnlyList + fullName: System.Collections.Generic.IReadOnlyList nameWithType.vb: IReadOnlyList(Of PlatformEventType) - fullName.vb: System.Collections.Generic.IReadOnlyList(Of OpenTK.Core.Platform.PlatformEventType) + fullName.vb: System.Collections.Generic.IReadOnlyList(Of OpenTK.Platform.PlatformEventType) name.vb: IReadOnlyList(Of PlatformEventType) spec.csharp: - uid: System.Collections.Generic.IReadOnlyList`1 @@ -2974,9 +2892,9 @@ references: isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 - name: < - - uid: OpenTK.Core.Platform.PlatformEventType + - uid: OpenTK.Platform.PlatformEventType name: PlatformEventType - href: OpenTK.Core.Platform.PlatformEventType.html + href: OpenTK.Platform.PlatformEventType.html - name: '>' spec.vb: - uid: System.Collections.Generic.IReadOnlyList`1 @@ -2986,9 +2904,9 @@ references: - name: ( - name: Of - name: " " - - uid: OpenTK.Core.Platform.PlatformEventType + - uid: OpenTK.Platform.PlatformEventType name: PlatformEventType - href: OpenTK.Core.Platform.PlatformEventType.html + href: OpenTK.Platform.PlatformEventType.html - name: ) - uid: System.Collections.Generic.IReadOnlyList`1 commentId: T:System.Collections.Generic.IReadOnlyList`1 @@ -3061,23 +2979,23 @@ references: name: SupportedStyles nameWithType: SDLWindowComponent.SupportedStyles fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.SupportedStyles -- uid: OpenTK.Core.Platform.IWindowComponent.SupportedStyles - commentId: P:OpenTK.Core.Platform.IWindowComponent.SupportedStyles - parent: OpenTK.Core.Platform.IWindowComponent - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SupportedStyles +- uid: OpenTK.Platform.IWindowComponent.SupportedStyles + commentId: P:OpenTK.Platform.IWindowComponent.SupportedStyles + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SupportedStyles name: SupportedStyles nameWithType: IWindowComponent.SupportedStyles - fullName: OpenTK.Core.Platform.IWindowComponent.SupportedStyles -- uid: System.Collections.Generic.IReadOnlyList{OpenTK.Core.Platform.WindowBorderStyle} - commentId: T:System.Collections.Generic.IReadOnlyList{OpenTK.Core.Platform.WindowBorderStyle} + fullName: OpenTK.Platform.IWindowComponent.SupportedStyles +- uid: System.Collections.Generic.IReadOnlyList{OpenTK.Platform.WindowBorderStyle} + commentId: T:System.Collections.Generic.IReadOnlyList{OpenTK.Platform.WindowBorderStyle} parent: System.Collections.Generic definition: System.Collections.Generic.IReadOnlyList`1 href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 name: IReadOnlyList nameWithType: IReadOnlyList - fullName: System.Collections.Generic.IReadOnlyList + fullName: System.Collections.Generic.IReadOnlyList nameWithType.vb: IReadOnlyList(Of WindowBorderStyle) - fullName.vb: System.Collections.Generic.IReadOnlyList(Of OpenTK.Core.Platform.WindowBorderStyle) + fullName.vb: System.Collections.Generic.IReadOnlyList(Of OpenTK.Platform.WindowBorderStyle) name.vb: IReadOnlyList(Of WindowBorderStyle) spec.csharp: - uid: System.Collections.Generic.IReadOnlyList`1 @@ -3085,9 +3003,9 @@ references: isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 - name: < - - uid: OpenTK.Core.Platform.WindowBorderStyle + - uid: OpenTK.Platform.WindowBorderStyle name: WindowBorderStyle - href: OpenTK.Core.Platform.WindowBorderStyle.html + href: OpenTK.Platform.WindowBorderStyle.html - name: '>' spec.vb: - uid: System.Collections.Generic.IReadOnlyList`1 @@ -3097,9 +3015,9 @@ references: - name: ( - name: Of - name: " " - - uid: OpenTK.Core.Platform.WindowBorderStyle + - uid: OpenTK.Platform.WindowBorderStyle name: WindowBorderStyle - href: OpenTK.Core.Platform.WindowBorderStyle.html + href: OpenTK.Platform.WindowBorderStyle.html - name: ) - uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.SupportedModes* commentId: Overload:OpenTK.Platform.Native.SDL.SDLWindowComponent.SupportedModes @@ -3107,23 +3025,23 @@ references: name: SupportedModes nameWithType: SDLWindowComponent.SupportedModes fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.SupportedModes -- uid: OpenTK.Core.Platform.IWindowComponent.SupportedModes - commentId: P:OpenTK.Core.Platform.IWindowComponent.SupportedModes - parent: OpenTK.Core.Platform.IWindowComponent - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SupportedModes +- uid: OpenTK.Platform.IWindowComponent.SupportedModes + commentId: P:OpenTK.Platform.IWindowComponent.SupportedModes + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SupportedModes name: SupportedModes nameWithType: IWindowComponent.SupportedModes - fullName: OpenTK.Core.Platform.IWindowComponent.SupportedModes -- uid: System.Collections.Generic.IReadOnlyList{OpenTK.Core.Platform.WindowMode} - commentId: T:System.Collections.Generic.IReadOnlyList{OpenTK.Core.Platform.WindowMode} + fullName: OpenTK.Platform.IWindowComponent.SupportedModes +- uid: System.Collections.Generic.IReadOnlyList{OpenTK.Platform.WindowMode} + commentId: T:System.Collections.Generic.IReadOnlyList{OpenTK.Platform.WindowMode} parent: System.Collections.Generic definition: System.Collections.Generic.IReadOnlyList`1 href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 name: IReadOnlyList nameWithType: IReadOnlyList - fullName: System.Collections.Generic.IReadOnlyList + fullName: System.Collections.Generic.IReadOnlyList nameWithType.vb: IReadOnlyList(Of WindowMode) - fullName.vb: System.Collections.Generic.IReadOnlyList(Of OpenTK.Core.Platform.WindowMode) + fullName.vb: System.Collections.Generic.IReadOnlyList(Of OpenTK.Platform.WindowMode) name.vb: IReadOnlyList(Of WindowMode) spec.csharp: - uid: System.Collections.Generic.IReadOnlyList`1 @@ -3131,9 +3049,9 @@ references: isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 - name: < - - uid: OpenTK.Core.Platform.WindowMode + - uid: OpenTK.Platform.WindowMode name: WindowMode - href: OpenTK.Core.Platform.WindowMode.html + href: OpenTK.Platform.WindowMode.html - name: '>' spec.vb: - uid: System.Collections.Generic.IReadOnlyList`1 @@ -3143,38 +3061,38 @@ references: - name: ( - name: Of - name: " " - - uid: OpenTK.Core.Platform.WindowMode + - uid: OpenTK.Platform.WindowMode name: WindowMode - href: OpenTK.Core.Platform.WindowMode.html + href: OpenTK.Platform.WindowMode.html - name: ) -- uid: OpenTK.Core.Platform.EventQueue - commentId: T:OpenTK.Core.Platform.EventQueue - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.EventQueue.html +- uid: OpenTK.Platform.EventQueue + commentId: T:OpenTK.Platform.EventQueue + parent: OpenTK.Platform + href: OpenTK.Platform.EventQueue.html name: EventQueue nameWithType: EventQueue - fullName: OpenTK.Core.Platform.EventQueue + fullName: OpenTK.Platform.EventQueue - uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.ProcessEvents* commentId: Overload:OpenTK.Platform.Native.SDL.SDLWindowComponent.ProcessEvents href: OpenTK.Platform.Native.SDL.SDLWindowComponent.html#OpenTK_Platform_Native_SDL_SDLWindowComponent_ProcessEvents_System_Boolean_ name: ProcessEvents nameWithType: SDLWindowComponent.ProcessEvents fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.ProcessEvents -- uid: OpenTK.Core.Platform.IWindowComponent.ProcessEvents(System.Boolean) - commentId: M:OpenTK.Core.Platform.IWindowComponent.ProcessEvents(System.Boolean) - parent: OpenTK.Core.Platform.IWindowComponent +- uid: OpenTK.Platform.IWindowComponent.ProcessEvents(System.Boolean) + commentId: M:OpenTK.Platform.IWindowComponent.ProcessEvents(System.Boolean) + parent: OpenTK.Platform.IWindowComponent isExternal: true - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_ProcessEvents_System_Boolean_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_ProcessEvents_System_Boolean_ name: ProcessEvents(bool) nameWithType: IWindowComponent.ProcessEvents(bool) - fullName: OpenTK.Core.Platform.IWindowComponent.ProcessEvents(bool) + fullName: OpenTK.Platform.IWindowComponent.ProcessEvents(bool) nameWithType.vb: IWindowComponent.ProcessEvents(Boolean) - fullName.vb: OpenTK.Core.Platform.IWindowComponent.ProcessEvents(Boolean) + fullName.vb: OpenTK.Platform.IWindowComponent.ProcessEvents(Boolean) name.vb: ProcessEvents(Boolean) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.ProcessEvents(System.Boolean) + - uid: OpenTK.Platform.IWindowComponent.ProcessEvents(System.Boolean) name: ProcessEvents - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_ProcessEvents_System_Boolean_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_ProcessEvents_System_Boolean_ - name: ( - uid: System.Boolean name: bool @@ -3182,9 +3100,9 @@ references: href: https://learn.microsoft.com/dotnet/api/system.boolean - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.ProcessEvents(System.Boolean) + - uid: OpenTK.Platform.IWindowComponent.ProcessEvents(System.Boolean) name: ProcessEvents - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_ProcessEvents_System_Boolean_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_ProcessEvents_System_Boolean_ - name: ( - uid: System.Boolean name: Boolean @@ -3193,49 +3111,74 @@ references: - name: ) - uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.Create* commentId: Overload:OpenTK.Platform.Native.SDL.SDLWindowComponent.Create - href: OpenTK.Platform.Native.SDL.SDLWindowComponent.html#OpenTK_Platform_Native_SDL_SDLWindowComponent_Create_OpenTK_Core_Platform_GraphicsApiHints_ + href: OpenTK.Platform.Native.SDL.SDLWindowComponent.html#OpenTK_Platform_Native_SDL_SDLWindowComponent_Create_OpenTK_Platform_GraphicsApiHints_ name: Create nameWithType: SDLWindowComponent.Create fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.Create -- uid: OpenTK.Core.Platform.IWindowComponent.Create(OpenTK.Core.Platform.GraphicsApiHints) - commentId: M:OpenTK.Core.Platform.IWindowComponent.Create(OpenTK.Core.Platform.GraphicsApiHints) - parent: OpenTK.Core.Platform.IWindowComponent - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_Create_OpenTK_Core_Platform_GraphicsApiHints_ +- uid: OpenTK.Platform.IWindowComponent.Create(OpenTK.Platform.GraphicsApiHints) + commentId: M:OpenTK.Platform.IWindowComponent.Create(OpenTK.Platform.GraphicsApiHints) + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_Create_OpenTK_Platform_GraphicsApiHints_ name: Create(GraphicsApiHints) nameWithType: IWindowComponent.Create(GraphicsApiHints) - fullName: OpenTK.Core.Platform.IWindowComponent.Create(OpenTK.Core.Platform.GraphicsApiHints) + fullName: OpenTK.Platform.IWindowComponent.Create(OpenTK.Platform.GraphicsApiHints) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.Create(OpenTK.Core.Platform.GraphicsApiHints) + - uid: OpenTK.Platform.IWindowComponent.Create(OpenTK.Platform.GraphicsApiHints) name: Create - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_Create_OpenTK_Core_Platform_GraphicsApiHints_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_Create_OpenTK_Platform_GraphicsApiHints_ - name: ( - - uid: OpenTK.Core.Platform.GraphicsApiHints + - uid: OpenTK.Platform.GraphicsApiHints name: GraphicsApiHints - href: OpenTK.Core.Platform.GraphicsApiHints.html + href: OpenTK.Platform.GraphicsApiHints.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.Create(OpenTK.Core.Platform.GraphicsApiHints) + - uid: OpenTK.Platform.IWindowComponent.Create(OpenTK.Platform.GraphicsApiHints) name: Create - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_Create_OpenTK_Core_Platform_GraphicsApiHints_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_Create_OpenTK_Platform_GraphicsApiHints_ - name: ( - - uid: OpenTK.Core.Platform.GraphicsApiHints + - uid: OpenTK.Platform.GraphicsApiHints name: GraphicsApiHints - href: OpenTK.Core.Platform.GraphicsApiHints.html + href: OpenTK.Platform.GraphicsApiHints.html - name: ) -- uid: OpenTK.Core.Platform.GraphicsApiHints - commentId: T:OpenTK.Core.Platform.GraphicsApiHints - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.GraphicsApiHints.html +- uid: OpenTK.Platform.GraphicsApiHints + commentId: T:OpenTK.Platform.GraphicsApiHints + parent: OpenTK.Platform + href: OpenTK.Platform.GraphicsApiHints.html name: GraphicsApiHints nameWithType: GraphicsApiHints - fullName: OpenTK.Core.Platform.GraphicsApiHints -- uid: OpenTK.Core.Platform.WindowHandle - commentId: T:OpenTK.Core.Platform.WindowHandle - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.WindowHandle.html + fullName: OpenTK.Platform.GraphicsApiHints +- uid: OpenTK.Platform.WindowHandle + commentId: T:OpenTK.Platform.WindowHandle + parent: OpenTK.Platform + href: OpenTK.Platform.WindowHandle.html name: WindowHandle nameWithType: WindowHandle - fullName: OpenTK.Core.Platform.WindowHandle + fullName: OpenTK.Platform.WindowHandle +- uid: OpenTK.Platform.IWindowComponent.IsWindowDestroyed(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.IsWindowDestroyed(OpenTK.Platform.WindowHandle) + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_IsWindowDestroyed_OpenTK_Platform_WindowHandle_ + name: IsWindowDestroyed(WindowHandle) + nameWithType: IWindowComponent.IsWindowDestroyed(WindowHandle) + fullName: OpenTK.Platform.IWindowComponent.IsWindowDestroyed(OpenTK.Platform.WindowHandle) + spec.csharp: + - uid: OpenTK.Platform.IWindowComponent.IsWindowDestroyed(OpenTK.Platform.WindowHandle) + name: IsWindowDestroyed + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_IsWindowDestroyed_OpenTK_Platform_WindowHandle_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IWindowComponent.IsWindowDestroyed(OpenTK.Platform.WindowHandle) + name: IsWindowDestroyed + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_IsWindowDestroyed_OpenTK_Platform_WindowHandle_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ) - uid: System.ArgumentNullException commentId: T:System.ArgumentNullException isExternal: true @@ -3245,122 +3188,97 @@ references: fullName: System.ArgumentNullException - uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.Destroy* commentId: Overload:OpenTK.Platform.Native.SDL.SDLWindowComponent.Destroy - href: OpenTK.Platform.Native.SDL.SDLWindowComponent.html#OpenTK_Platform_Native_SDL_SDLWindowComponent_Destroy_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.Native.SDL.SDLWindowComponent.html#OpenTK_Platform_Native_SDL_SDLWindowComponent_Destroy_OpenTK_Platform_WindowHandle_ name: Destroy nameWithType: SDLWindowComponent.Destroy fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.Destroy -- uid: OpenTK.Core.Platform.IWindowComponent.Destroy(OpenTK.Core.Platform.WindowHandle) - commentId: M:OpenTK.Core.Platform.IWindowComponent.Destroy(OpenTK.Core.Platform.WindowHandle) - parent: OpenTK.Core.Platform.IWindowComponent - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_Destroy_OpenTK_Core_Platform_WindowHandle_ +- uid: OpenTK.Platform.IWindowComponent.Destroy(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.Destroy(OpenTK.Platform.WindowHandle) + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_Destroy_OpenTK_Platform_WindowHandle_ name: Destroy(WindowHandle) nameWithType: IWindowComponent.Destroy(WindowHandle) - fullName: OpenTK.Core.Platform.IWindowComponent.Destroy(OpenTK.Core.Platform.WindowHandle) + fullName: OpenTK.Platform.IWindowComponent.Destroy(OpenTK.Platform.WindowHandle) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.Destroy(OpenTK.Core.Platform.WindowHandle) + - uid: OpenTK.Platform.IWindowComponent.Destroy(OpenTK.Platform.WindowHandle) name: Destroy - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_Destroy_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_Destroy_OpenTK_Platform_WindowHandle_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.Destroy(OpenTK.Core.Platform.WindowHandle) + - uid: OpenTK.Platform.IWindowComponent.Destroy(OpenTK.Platform.WindowHandle) name: Destroy - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_Destroy_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_Destroy_OpenTK_Platform_WindowHandle_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ) - uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.IsWindowDestroyed* commentId: Overload:OpenTK.Platform.Native.SDL.SDLWindowComponent.IsWindowDestroyed - href: OpenTK.Platform.Native.SDL.SDLWindowComponent.html#OpenTK_Platform_Native_SDL_SDLWindowComponent_IsWindowDestroyed_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.Native.SDL.SDLWindowComponent.html#OpenTK_Platform_Native_SDL_SDLWindowComponent_IsWindowDestroyed_OpenTK_Platform_WindowHandle_ name: IsWindowDestroyed nameWithType: SDLWindowComponent.IsWindowDestroyed fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.IsWindowDestroyed -- uid: OpenTK.Core.Platform.IWindowComponent.IsWindowDestroyed(OpenTK.Core.Platform.WindowHandle) - commentId: M:OpenTK.Core.Platform.IWindowComponent.IsWindowDestroyed(OpenTK.Core.Platform.WindowHandle) - parent: OpenTK.Core.Platform.IWindowComponent - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_IsWindowDestroyed_OpenTK_Core_Platform_WindowHandle_ - name: IsWindowDestroyed(WindowHandle) - nameWithType: IWindowComponent.IsWindowDestroyed(WindowHandle) - fullName: OpenTK.Core.Platform.IWindowComponent.IsWindowDestroyed(OpenTK.Core.Platform.WindowHandle) - spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.IsWindowDestroyed(OpenTK.Core.Platform.WindowHandle) - name: IsWindowDestroyed - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_IsWindowDestroyed_OpenTK_Core_Platform_WindowHandle_ - - name: ( - - uid: OpenTK.Core.Platform.WindowHandle - name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html - - name: ) - spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.IsWindowDestroyed(OpenTK.Core.Platform.WindowHandle) - name: IsWindowDestroyed - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_IsWindowDestroyed_OpenTK_Core_Platform_WindowHandle_ - - name: ( - - uid: OpenTK.Core.Platform.WindowHandle - name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html - - name: ) - uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetTitle* commentId: Overload:OpenTK.Platform.Native.SDL.SDLWindowComponent.GetTitle - href: OpenTK.Platform.Native.SDL.SDLWindowComponent.html#OpenTK_Platform_Native_SDL_SDLWindowComponent_GetTitle_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.Native.SDL.SDLWindowComponent.html#OpenTK_Platform_Native_SDL_SDLWindowComponent_GetTitle_OpenTK_Platform_WindowHandle_ name: GetTitle nameWithType: SDLWindowComponent.GetTitle fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetTitle -- uid: OpenTK.Core.Platform.IWindowComponent.GetTitle(OpenTK.Core.Platform.WindowHandle) - commentId: M:OpenTK.Core.Platform.IWindowComponent.GetTitle(OpenTK.Core.Platform.WindowHandle) - parent: OpenTK.Core.Platform.IWindowComponent - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetTitle_OpenTK_Core_Platform_WindowHandle_ +- uid: OpenTK.Platform.IWindowComponent.GetTitle(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.GetTitle(OpenTK.Platform.WindowHandle) + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetTitle_OpenTK_Platform_WindowHandle_ name: GetTitle(WindowHandle) nameWithType: IWindowComponent.GetTitle(WindowHandle) - fullName: OpenTK.Core.Platform.IWindowComponent.GetTitle(OpenTK.Core.Platform.WindowHandle) + fullName: OpenTK.Platform.IWindowComponent.GetTitle(OpenTK.Platform.WindowHandle) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.GetTitle(OpenTK.Core.Platform.WindowHandle) + - uid: OpenTK.Platform.IWindowComponent.GetTitle(OpenTK.Platform.WindowHandle) name: GetTitle - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetTitle_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetTitle_OpenTK_Platform_WindowHandle_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.GetTitle(OpenTK.Core.Platform.WindowHandle) + - uid: OpenTK.Platform.IWindowComponent.GetTitle(OpenTK.Platform.WindowHandle) name: GetTitle - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetTitle_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetTitle_OpenTK_Platform_WindowHandle_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ) - uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetTitle* commentId: Overload:OpenTK.Platform.Native.SDL.SDLWindowComponent.SetTitle - href: OpenTK.Platform.Native.SDL.SDLWindowComponent.html#OpenTK_Platform_Native_SDL_SDLWindowComponent_SetTitle_OpenTK_Core_Platform_WindowHandle_System_String_ + href: OpenTK.Platform.Native.SDL.SDLWindowComponent.html#OpenTK_Platform_Native_SDL_SDLWindowComponent_SetTitle_OpenTK_Platform_WindowHandle_System_String_ name: SetTitle nameWithType: SDLWindowComponent.SetTitle fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetTitle -- uid: OpenTK.Core.Platform.IWindowComponent.SetTitle(OpenTK.Core.Platform.WindowHandle,System.String) - commentId: M:OpenTK.Core.Platform.IWindowComponent.SetTitle(OpenTK.Core.Platform.WindowHandle,System.String) - parent: OpenTK.Core.Platform.IWindowComponent +- uid: OpenTK.Platform.IWindowComponent.SetTitle(OpenTK.Platform.WindowHandle,System.String) + commentId: M:OpenTK.Platform.IWindowComponent.SetTitle(OpenTK.Platform.WindowHandle,System.String) + parent: OpenTK.Platform.IWindowComponent isExternal: true - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetTitle_OpenTK_Core_Platform_WindowHandle_System_String_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetTitle_OpenTK_Platform_WindowHandle_System_String_ name: SetTitle(WindowHandle, string) nameWithType: IWindowComponent.SetTitle(WindowHandle, string) - fullName: OpenTK.Core.Platform.IWindowComponent.SetTitle(OpenTK.Core.Platform.WindowHandle, string) + fullName: OpenTK.Platform.IWindowComponent.SetTitle(OpenTK.Platform.WindowHandle, string) nameWithType.vb: IWindowComponent.SetTitle(WindowHandle, String) - fullName.vb: OpenTK.Core.Platform.IWindowComponent.SetTitle(OpenTK.Core.Platform.WindowHandle, String) + fullName.vb: OpenTK.Platform.IWindowComponent.SetTitle(OpenTK.Platform.WindowHandle, String) name.vb: SetTitle(WindowHandle, String) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.SetTitle(OpenTK.Core.Platform.WindowHandle,System.String) + - uid: OpenTK.Platform.IWindowComponent.SetTitle(OpenTK.Platform.WindowHandle,System.String) name: SetTitle - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetTitle_OpenTK_Core_Platform_WindowHandle_System_String_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetTitle_OpenTK_Platform_WindowHandle_System_String_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - uid: System.String @@ -3369,13 +3287,13 @@ references: href: https://learn.microsoft.com/dotnet/api/system.string - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.SetTitle(OpenTK.Core.Platform.WindowHandle,System.String) + - uid: OpenTK.Platform.IWindowComponent.SetTitle(OpenTK.Platform.WindowHandle,System.String) name: SetTitle - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetTitle_OpenTK_Core_Platform_WindowHandle_System_String_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetTitle_OpenTK_Platform_WindowHandle_System_String_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - uid: System.String @@ -3383,116 +3301,81 @@ references: isExternal: true href: https://learn.microsoft.com/dotnet/api/system.string - name: ) -- uid: OpenTK.Core.Platform.PalNotImplementedException - commentId: T:OpenTK.Core.Platform.PalNotImplementedException - href: OpenTK.Core.Platform.PalNotImplementedException.html +- uid: OpenTK.Platform.PalNotImplementedException + commentId: T:OpenTK.Platform.PalNotImplementedException + href: OpenTK.Platform.PalNotImplementedException.html name: PalNotImplementedException nameWithType: PalNotImplementedException - fullName: OpenTK.Core.Platform.PalNotImplementedException + fullName: OpenTK.Platform.PalNotImplementedException - uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetIcon* commentId: Overload:OpenTK.Platform.Native.SDL.SDLWindowComponent.GetIcon - href: OpenTK.Platform.Native.SDL.SDLWindowComponent.html#OpenTK_Platform_Native_SDL_SDLWindowComponent_GetIcon_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.Native.SDL.SDLWindowComponent.html#OpenTK_Platform_Native_SDL_SDLWindowComponent_GetIcon_OpenTK_Platform_WindowHandle_ name: GetIcon nameWithType: SDLWindowComponent.GetIcon fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetIcon -- uid: OpenTK.Core.Platform.IWindowComponent.GetIcon(OpenTK.Core.Platform.WindowHandle) - commentId: M:OpenTK.Core.Platform.IWindowComponent.GetIcon(OpenTK.Core.Platform.WindowHandle) - parent: OpenTK.Core.Platform.IWindowComponent - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetIcon_OpenTK_Core_Platform_WindowHandle_ +- uid: OpenTK.Platform.IWindowComponent.GetIcon(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.GetIcon(OpenTK.Platform.WindowHandle) + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetIcon_OpenTK_Platform_WindowHandle_ name: GetIcon(WindowHandle) nameWithType: IWindowComponent.GetIcon(WindowHandle) - fullName: OpenTK.Core.Platform.IWindowComponent.GetIcon(OpenTK.Core.Platform.WindowHandle) + fullName: OpenTK.Platform.IWindowComponent.GetIcon(OpenTK.Platform.WindowHandle) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.GetIcon(OpenTK.Core.Platform.WindowHandle) + - uid: OpenTK.Platform.IWindowComponent.GetIcon(OpenTK.Platform.WindowHandle) name: GetIcon - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetIcon_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetIcon_OpenTK_Platform_WindowHandle_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.GetIcon(OpenTK.Core.Platform.WindowHandle) + - uid: OpenTK.Platform.IWindowComponent.GetIcon(OpenTK.Platform.WindowHandle) name: GetIcon - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetIcon_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetIcon_OpenTK_Platform_WindowHandle_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ) -- uid: OpenTK.Core.Platform.IconHandle - commentId: T:OpenTK.Core.Platform.IconHandle - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.IconHandle.html +- uid: OpenTK.Platform.IconHandle + commentId: T:OpenTK.Platform.IconHandle + parent: OpenTK.Platform + href: OpenTK.Platform.IconHandle.html name: IconHandle nameWithType: IconHandle - fullName: OpenTK.Core.Platform.IconHandle + fullName: OpenTK.Platform.IconHandle - uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetIcon* commentId: Overload:OpenTK.Platform.Native.SDL.SDLWindowComponent.SetIcon - href: OpenTK.Platform.Native.SDL.SDLWindowComponent.html#OpenTK_Platform_Native_SDL_SDLWindowComponent_SetIcon_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_IconHandle_ + href: OpenTK.Platform.Native.SDL.SDLWindowComponent.html#OpenTK_Platform_Native_SDL_SDLWindowComponent_SetIcon_OpenTK_Platform_WindowHandle_OpenTK_Platform_IconHandle_ name: SetIcon nameWithType: SDLWindowComponent.SetIcon fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetIcon -- uid: OpenTK.Core.Platform.IWindowComponent.SetIcon(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.IconHandle) - commentId: M:OpenTK.Core.Platform.IWindowComponent.SetIcon(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.IconHandle) - parent: OpenTK.Core.Platform.IWindowComponent - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetIcon_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_IconHandle_ - name: SetIcon(WindowHandle, IconHandle) - nameWithType: IWindowComponent.SetIcon(WindowHandle, IconHandle) - fullName: OpenTK.Core.Platform.IWindowComponent.SetIcon(OpenTK.Core.Platform.WindowHandle, OpenTK.Core.Platform.IconHandle) - spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.SetIcon(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.IconHandle) - name: SetIcon - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetIcon_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_IconHandle_ - - name: ( - - uid: OpenTK.Core.Platform.WindowHandle - name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html - - name: ',' - - name: " " - - uid: OpenTK.Core.Platform.IconHandle - name: IconHandle - href: OpenTK.Core.Platform.IconHandle.html - - name: ) - spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.SetIcon(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.IconHandle) - name: SetIcon - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetIcon_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_IconHandle_ - - name: ( - - uid: OpenTK.Core.Platform.WindowHandle - name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html - - name: ',' - - name: " " - - uid: OpenTK.Core.Platform.IconHandle - name: IconHandle - href: OpenTK.Core.Platform.IconHandle.html - - name: ) - uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetPosition* commentId: Overload:OpenTK.Platform.Native.SDL.SDLWindowComponent.GetPosition - href: OpenTK.Platform.Native.SDL.SDLWindowComponent.html#OpenTK_Platform_Native_SDL_SDLWindowComponent_GetPosition_OpenTK_Core_Platform_WindowHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.Native.SDL.SDLWindowComponent.html#OpenTK_Platform_Native_SDL_SDLWindowComponent_GetPosition_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ name: GetPosition nameWithType: SDLWindowComponent.GetPosition fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetPosition -- uid: OpenTK.Core.Platform.IWindowComponent.GetPosition(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) - commentId: M:OpenTK.Core.Platform.IWindowComponent.GetPosition(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) - parent: OpenTK.Core.Platform.IWindowComponent +- uid: OpenTK.Platform.IWindowComponent.GetPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + commentId: M:OpenTK.Platform.IWindowComponent.GetPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + parent: OpenTK.Platform.IWindowComponent isExternal: true - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetPosition_OpenTK_Core_Platform_WindowHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetPosition_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ name: GetPosition(WindowHandle, out int, out int) nameWithType: IWindowComponent.GetPosition(WindowHandle, out int, out int) - fullName: OpenTK.Core.Platform.IWindowComponent.GetPosition(OpenTK.Core.Platform.WindowHandle, out int, out int) + fullName: OpenTK.Platform.IWindowComponent.GetPosition(OpenTK.Platform.WindowHandle, out int, out int) nameWithType.vb: IWindowComponent.GetPosition(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Core.Platform.IWindowComponent.GetPosition(OpenTK.Core.Platform.WindowHandle, Integer, Integer) + fullName.vb: OpenTK.Platform.IWindowComponent.GetPosition(OpenTK.Platform.WindowHandle, Integer, Integer) name.vb: GetPosition(WindowHandle, Integer, Integer) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.GetPosition(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) + - uid: OpenTK.Platform.IWindowComponent.GetPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) name: GetPosition - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetPosition_OpenTK_Core_Platform_WindowHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetPosition_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - name: out @@ -3511,13 +3394,13 @@ references: href: https://learn.microsoft.com/dotnet/api/system.int32 - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.GetPosition(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) + - uid: OpenTK.Platform.IWindowComponent.GetPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) name: GetPosition - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetPosition_OpenTK_Core_Platform_WindowHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetPosition_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - uid: System.Int32 @@ -3544,29 +3427,29 @@ references: name.vb: Integer - uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetPosition* commentId: Overload:OpenTK.Platform.Native.SDL.SDLWindowComponent.SetPosition - href: OpenTK.Platform.Native.SDL.SDLWindowComponent.html#OpenTK_Platform_Native_SDL_SDLWindowComponent_SetPosition_OpenTK_Core_Platform_WindowHandle_System_Int32_System_Int32_ + href: OpenTK.Platform.Native.SDL.SDLWindowComponent.html#OpenTK_Platform_Native_SDL_SDLWindowComponent_SetPosition_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_ name: SetPosition nameWithType: SDLWindowComponent.SetPosition fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetPosition -- uid: OpenTK.Core.Platform.IWindowComponent.SetPosition(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) - commentId: M:OpenTK.Core.Platform.IWindowComponent.SetPosition(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) - parent: OpenTK.Core.Platform.IWindowComponent +- uid: OpenTK.Platform.IWindowComponent.SetPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) + commentId: M:OpenTK.Platform.IWindowComponent.SetPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) + parent: OpenTK.Platform.IWindowComponent isExternal: true - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetPosition_OpenTK_Core_Platform_WindowHandle_System_Int32_System_Int32_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetPosition_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_ name: SetPosition(WindowHandle, int, int) nameWithType: IWindowComponent.SetPosition(WindowHandle, int, int) - fullName: OpenTK.Core.Platform.IWindowComponent.SetPosition(OpenTK.Core.Platform.WindowHandle, int, int) + fullName: OpenTK.Platform.IWindowComponent.SetPosition(OpenTK.Platform.WindowHandle, int, int) nameWithType.vb: IWindowComponent.SetPosition(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Core.Platform.IWindowComponent.SetPosition(OpenTK.Core.Platform.WindowHandle, Integer, Integer) + fullName.vb: OpenTK.Platform.IWindowComponent.SetPosition(OpenTK.Platform.WindowHandle, Integer, Integer) name.vb: SetPosition(WindowHandle, Integer, Integer) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.SetPosition(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) + - uid: OpenTK.Platform.IWindowComponent.SetPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) name: SetPosition - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetPosition_OpenTK_Core_Platform_WindowHandle_System_Int32_System_Int32_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetPosition_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - uid: System.Int32 @@ -3581,13 +3464,13 @@ references: href: https://learn.microsoft.com/dotnet/api/system.int32 - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.SetPosition(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) + - uid: OpenTK.Platform.IWindowComponent.SetPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) name: SetPosition - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetPosition_OpenTK_Core_Platform_WindowHandle_System_Int32_System_Int32_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetPosition_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - uid: System.Int32 @@ -3603,29 +3486,29 @@ references: - name: ) - uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetSize* commentId: Overload:OpenTK.Platform.Native.SDL.SDLWindowComponent.GetSize - href: OpenTK.Platform.Native.SDL.SDLWindowComponent.html#OpenTK_Platform_Native_SDL_SDLWindowComponent_GetSize_OpenTK_Core_Platform_WindowHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.Native.SDL.SDLWindowComponent.html#OpenTK_Platform_Native_SDL_SDLWindowComponent_GetSize_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ name: GetSize nameWithType: SDLWindowComponent.GetSize fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetSize -- uid: OpenTK.Core.Platform.IWindowComponent.GetSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) - commentId: M:OpenTK.Core.Platform.IWindowComponent.GetSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) - parent: OpenTK.Core.Platform.IWindowComponent +- uid: OpenTK.Platform.IWindowComponent.GetSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + commentId: M:OpenTK.Platform.IWindowComponent.GetSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + parent: OpenTK.Platform.IWindowComponent isExternal: true - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetSize_OpenTK_Core_Platform_WindowHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetSize_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ name: GetSize(WindowHandle, out int, out int) nameWithType: IWindowComponent.GetSize(WindowHandle, out int, out int) - fullName: OpenTK.Core.Platform.IWindowComponent.GetSize(OpenTK.Core.Platform.WindowHandle, out int, out int) + fullName: OpenTK.Platform.IWindowComponent.GetSize(OpenTK.Platform.WindowHandle, out int, out int) nameWithType.vb: IWindowComponent.GetSize(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Core.Platform.IWindowComponent.GetSize(OpenTK.Core.Platform.WindowHandle, Integer, Integer) + fullName.vb: OpenTK.Platform.IWindowComponent.GetSize(OpenTK.Platform.WindowHandle, Integer, Integer) name.vb: GetSize(WindowHandle, Integer, Integer) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.GetSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) + - uid: OpenTK.Platform.IWindowComponent.GetSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) name: GetSize - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetSize_OpenTK_Core_Platform_WindowHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetSize_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - name: out @@ -3644,13 +3527,13 @@ references: href: https://learn.microsoft.com/dotnet/api/system.int32 - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.GetSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) + - uid: OpenTK.Platform.IWindowComponent.GetSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) name: GetSize - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetSize_OpenTK_Core_Platform_WindowHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetSize_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - uid: System.Int32 @@ -3666,29 +3549,29 @@ references: - name: ) - uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetSize* commentId: Overload:OpenTK.Platform.Native.SDL.SDLWindowComponent.SetSize - href: OpenTK.Platform.Native.SDL.SDLWindowComponent.html#OpenTK_Platform_Native_SDL_SDLWindowComponent_SetSize_OpenTK_Core_Platform_WindowHandle_System_Int32_System_Int32_ + href: OpenTK.Platform.Native.SDL.SDLWindowComponent.html#OpenTK_Platform_Native_SDL_SDLWindowComponent_SetSize_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_ name: SetSize nameWithType: SDLWindowComponent.SetSize fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetSize -- uid: OpenTK.Core.Platform.IWindowComponent.SetSize(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) - commentId: M:OpenTK.Core.Platform.IWindowComponent.SetSize(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) - parent: OpenTK.Core.Platform.IWindowComponent +- uid: OpenTK.Platform.IWindowComponent.SetSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) + commentId: M:OpenTK.Platform.IWindowComponent.SetSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) + parent: OpenTK.Platform.IWindowComponent isExternal: true - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetSize_OpenTK_Core_Platform_WindowHandle_System_Int32_System_Int32_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetSize_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_ name: SetSize(WindowHandle, int, int) nameWithType: IWindowComponent.SetSize(WindowHandle, int, int) - fullName: OpenTK.Core.Platform.IWindowComponent.SetSize(OpenTK.Core.Platform.WindowHandle, int, int) + fullName: OpenTK.Platform.IWindowComponent.SetSize(OpenTK.Platform.WindowHandle, int, int) nameWithType.vb: IWindowComponent.SetSize(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Core.Platform.IWindowComponent.SetSize(OpenTK.Core.Platform.WindowHandle, Integer, Integer) + fullName.vb: OpenTK.Platform.IWindowComponent.SetSize(OpenTK.Platform.WindowHandle, Integer, Integer) name.vb: SetSize(WindowHandle, Integer, Integer) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.SetSize(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) + - uid: OpenTK.Platform.IWindowComponent.SetSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) name: SetSize - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetSize_OpenTK_Core_Platform_WindowHandle_System_Int32_System_Int32_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetSize_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - uid: System.Int32 @@ -3703,13 +3586,13 @@ references: href: https://learn.microsoft.com/dotnet/api/system.int32 - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.SetSize(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) + - uid: OpenTK.Platform.IWindowComponent.SetSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) name: SetSize - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetSize_OpenTK_Core_Platform_WindowHandle_System_Int32_System_Int32_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetSize_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - uid: System.Int32 @@ -3725,29 +3608,29 @@ references: - name: ) - uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetBounds* commentId: Overload:OpenTK.Platform.Native.SDL.SDLWindowComponent.GetBounds - href: OpenTK.Platform.Native.SDL.SDLWindowComponent.html#OpenTK_Platform_Native_SDL_SDLWindowComponent_GetBounds_OpenTK_Core_Platform_WindowHandle_System_Int32__System_Int32__System_Int32__System_Int32__ + href: OpenTK.Platform.Native.SDL.SDLWindowComponent.html#OpenTK_Platform_Native_SDL_SDLWindowComponent_GetBounds_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__System_Int32__System_Int32__ name: GetBounds nameWithType: SDLWindowComponent.GetBounds fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetBounds -- uid: OpenTK.Core.Platform.IWindowComponent.GetBounds(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) - commentId: M:OpenTK.Core.Platform.IWindowComponent.GetBounds(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) - parent: OpenTK.Core.Platform.IWindowComponent +- uid: OpenTK.Platform.IWindowComponent.GetBounds(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) + commentId: M:OpenTK.Platform.IWindowComponent.GetBounds(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) + parent: OpenTK.Platform.IWindowComponent isExternal: true - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetBounds_OpenTK_Core_Platform_WindowHandle_System_Int32__System_Int32__System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetBounds_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__System_Int32__System_Int32__ name: GetBounds(WindowHandle, out int, out int, out int, out int) nameWithType: IWindowComponent.GetBounds(WindowHandle, out int, out int, out int, out int) - fullName: OpenTK.Core.Platform.IWindowComponent.GetBounds(OpenTK.Core.Platform.WindowHandle, out int, out int, out int, out int) + fullName: OpenTK.Platform.IWindowComponent.GetBounds(OpenTK.Platform.WindowHandle, out int, out int, out int, out int) nameWithType.vb: IWindowComponent.GetBounds(WindowHandle, Integer, Integer, Integer, Integer) - fullName.vb: OpenTK.Core.Platform.IWindowComponent.GetBounds(OpenTK.Core.Platform.WindowHandle, Integer, Integer, Integer, Integer) + fullName.vb: OpenTK.Platform.IWindowComponent.GetBounds(OpenTK.Platform.WindowHandle, Integer, Integer, Integer, Integer) name.vb: GetBounds(WindowHandle, Integer, Integer, Integer, Integer) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.GetBounds(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) + - uid: OpenTK.Platform.IWindowComponent.GetBounds(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) name: GetBounds - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetBounds_OpenTK_Core_Platform_WindowHandle_System_Int32__System_Int32__System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetBounds_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__System_Int32__System_Int32__ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - name: out @@ -3782,13 +3665,13 @@ references: href: https://learn.microsoft.com/dotnet/api/system.int32 - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.GetBounds(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) + - uid: OpenTK.Platform.IWindowComponent.GetBounds(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) name: GetBounds - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetBounds_OpenTK_Core_Platform_WindowHandle_System_Int32__System_Int32__System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetBounds_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__System_Int32__System_Int32__ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - uid: System.Int32 @@ -3816,29 +3699,29 @@ references: - name: ) - uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetBounds* commentId: Overload:OpenTK.Platform.Native.SDL.SDLWindowComponent.SetBounds - href: OpenTK.Platform.Native.SDL.SDLWindowComponent.html#OpenTK_Platform_Native_SDL_SDLWindowComponent_SetBounds_OpenTK_Core_Platform_WindowHandle_System_Int32_System_Int32_System_Int32_System_Int32_ + href: OpenTK.Platform.Native.SDL.SDLWindowComponent.html#OpenTK_Platform_Native_SDL_SDLWindowComponent_SetBounds_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_System_Int32_System_Int32_ name: SetBounds nameWithType: SDLWindowComponent.SetBounds fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetBounds -- uid: OpenTK.Core.Platform.IWindowComponent.SetBounds(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) - commentId: M:OpenTK.Core.Platform.IWindowComponent.SetBounds(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) - parent: OpenTK.Core.Platform.IWindowComponent +- uid: OpenTK.Platform.IWindowComponent.SetBounds(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) + commentId: M:OpenTK.Platform.IWindowComponent.SetBounds(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) + parent: OpenTK.Platform.IWindowComponent isExternal: true - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetBounds_OpenTK_Core_Platform_WindowHandle_System_Int32_System_Int32_System_Int32_System_Int32_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetBounds_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_System_Int32_System_Int32_ name: SetBounds(WindowHandle, int, int, int, int) nameWithType: IWindowComponent.SetBounds(WindowHandle, int, int, int, int) - fullName: OpenTK.Core.Platform.IWindowComponent.SetBounds(OpenTK.Core.Platform.WindowHandle, int, int, int, int) + fullName: OpenTK.Platform.IWindowComponent.SetBounds(OpenTK.Platform.WindowHandle, int, int, int, int) nameWithType.vb: IWindowComponent.SetBounds(WindowHandle, Integer, Integer, Integer, Integer) - fullName.vb: OpenTK.Core.Platform.IWindowComponent.SetBounds(OpenTK.Core.Platform.WindowHandle, Integer, Integer, Integer, Integer) + fullName.vb: OpenTK.Platform.IWindowComponent.SetBounds(OpenTK.Platform.WindowHandle, Integer, Integer, Integer, Integer) name.vb: SetBounds(WindowHandle, Integer, Integer, Integer, Integer) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.SetBounds(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) + - uid: OpenTK.Platform.IWindowComponent.SetBounds(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) name: SetBounds - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetBounds_OpenTK_Core_Platform_WindowHandle_System_Int32_System_Int32_System_Int32_System_Int32_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetBounds_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_System_Int32_System_Int32_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - uid: System.Int32 @@ -3865,13 +3748,13 @@ references: href: https://learn.microsoft.com/dotnet/api/system.int32 - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.SetBounds(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) + - uid: OpenTK.Platform.IWindowComponent.SetBounds(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) name: SetBounds - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetBounds_OpenTK_Core_Platform_WindowHandle_System_Int32_System_Int32_System_Int32_System_Int32_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetBounds_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_System_Int32_System_Int32_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - uid: System.Int32 @@ -3899,29 +3782,29 @@ references: - name: ) - uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetClientPosition* commentId: Overload:OpenTK.Platform.Native.SDL.SDLWindowComponent.GetClientPosition - href: OpenTK.Platform.Native.SDL.SDLWindowComponent.html#OpenTK_Platform_Native_SDL_SDLWindowComponent_GetClientPosition_OpenTK_Core_Platform_WindowHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.Native.SDL.SDLWindowComponent.html#OpenTK_Platform_Native_SDL_SDLWindowComponent_GetClientPosition_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ name: GetClientPosition nameWithType: SDLWindowComponent.GetClientPosition fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetClientPosition -- uid: OpenTK.Core.Platform.IWindowComponent.GetClientPosition(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) - commentId: M:OpenTK.Core.Platform.IWindowComponent.GetClientPosition(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) - parent: OpenTK.Core.Platform.IWindowComponent +- uid: OpenTK.Platform.IWindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + commentId: M:OpenTK.Platform.IWindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + parent: OpenTK.Platform.IWindowComponent isExternal: true - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetClientPosition_OpenTK_Core_Platform_WindowHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetClientPosition_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ name: GetClientPosition(WindowHandle, out int, out int) nameWithType: IWindowComponent.GetClientPosition(WindowHandle, out int, out int) - fullName: OpenTK.Core.Platform.IWindowComponent.GetClientPosition(OpenTK.Core.Platform.WindowHandle, out int, out int) + fullName: OpenTK.Platform.IWindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle, out int, out int) nameWithType.vb: IWindowComponent.GetClientPosition(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Core.Platform.IWindowComponent.GetClientPosition(OpenTK.Core.Platform.WindowHandle, Integer, Integer) + fullName.vb: OpenTK.Platform.IWindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle, Integer, Integer) name.vb: GetClientPosition(WindowHandle, Integer, Integer) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.GetClientPosition(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) + - uid: OpenTK.Platform.IWindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) name: GetClientPosition - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetClientPosition_OpenTK_Core_Platform_WindowHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetClientPosition_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - name: out @@ -3940,13 +3823,13 @@ references: href: https://learn.microsoft.com/dotnet/api/system.int32 - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.GetClientPosition(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) + - uid: OpenTK.Platform.IWindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) name: GetClientPosition - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetClientPosition_OpenTK_Core_Platform_WindowHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetClientPosition_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - uid: System.Int32 @@ -3962,29 +3845,29 @@ references: - name: ) - uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetClientPosition* commentId: Overload:OpenTK.Platform.Native.SDL.SDLWindowComponent.SetClientPosition - href: OpenTK.Platform.Native.SDL.SDLWindowComponent.html#OpenTK_Platform_Native_SDL_SDLWindowComponent_SetClientPosition_OpenTK_Core_Platform_WindowHandle_System_Int32_System_Int32_ + href: OpenTK.Platform.Native.SDL.SDLWindowComponent.html#OpenTK_Platform_Native_SDL_SDLWindowComponent_SetClientPosition_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_ name: SetClientPosition nameWithType: SDLWindowComponent.SetClientPosition fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetClientPosition -- uid: OpenTK.Core.Platform.IWindowComponent.SetClientPosition(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) - commentId: M:OpenTK.Core.Platform.IWindowComponent.SetClientPosition(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) - parent: OpenTK.Core.Platform.IWindowComponent +- uid: OpenTK.Platform.IWindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) + commentId: M:OpenTK.Platform.IWindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) + parent: OpenTK.Platform.IWindowComponent isExternal: true - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetClientPosition_OpenTK_Core_Platform_WindowHandle_System_Int32_System_Int32_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetClientPosition_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_ name: SetClientPosition(WindowHandle, int, int) nameWithType: IWindowComponent.SetClientPosition(WindowHandle, int, int) - fullName: OpenTK.Core.Platform.IWindowComponent.SetClientPosition(OpenTK.Core.Platform.WindowHandle, int, int) + fullName: OpenTK.Platform.IWindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle, int, int) nameWithType.vb: IWindowComponent.SetClientPosition(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Core.Platform.IWindowComponent.SetClientPosition(OpenTK.Core.Platform.WindowHandle, Integer, Integer) + fullName.vb: OpenTK.Platform.IWindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle, Integer, Integer) name.vb: SetClientPosition(WindowHandle, Integer, Integer) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.SetClientPosition(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) + - uid: OpenTK.Platform.IWindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) name: SetClientPosition - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetClientPosition_OpenTK_Core_Platform_WindowHandle_System_Int32_System_Int32_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetClientPosition_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - uid: System.Int32 @@ -3999,13 +3882,13 @@ references: href: https://learn.microsoft.com/dotnet/api/system.int32 - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.SetClientPosition(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) + - uid: OpenTK.Platform.IWindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) name: SetClientPosition - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetClientPosition_OpenTK_Core_Platform_WindowHandle_System_Int32_System_Int32_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetClientPosition_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - uid: System.Int32 @@ -4021,29 +3904,29 @@ references: - name: ) - uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetClientSize* commentId: Overload:OpenTK.Platform.Native.SDL.SDLWindowComponent.GetClientSize - href: OpenTK.Platform.Native.SDL.SDLWindowComponent.html#OpenTK_Platform_Native_SDL_SDLWindowComponent_GetClientSize_OpenTK_Core_Platform_WindowHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.Native.SDL.SDLWindowComponent.html#OpenTK_Platform_Native_SDL_SDLWindowComponent_GetClientSize_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ name: GetClientSize nameWithType: SDLWindowComponent.GetClientSize fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetClientSize -- uid: OpenTK.Core.Platform.IWindowComponent.GetClientSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) - commentId: M:OpenTK.Core.Platform.IWindowComponent.GetClientSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) - parent: OpenTK.Core.Platform.IWindowComponent +- uid: OpenTK.Platform.IWindowComponent.GetClientSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + commentId: M:OpenTK.Platform.IWindowComponent.GetClientSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + parent: OpenTK.Platform.IWindowComponent isExternal: true - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetClientSize_OpenTK_Core_Platform_WindowHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetClientSize_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ name: GetClientSize(WindowHandle, out int, out int) nameWithType: IWindowComponent.GetClientSize(WindowHandle, out int, out int) - fullName: OpenTK.Core.Platform.IWindowComponent.GetClientSize(OpenTK.Core.Platform.WindowHandle, out int, out int) + fullName: OpenTK.Platform.IWindowComponent.GetClientSize(OpenTK.Platform.WindowHandle, out int, out int) nameWithType.vb: IWindowComponent.GetClientSize(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Core.Platform.IWindowComponent.GetClientSize(OpenTK.Core.Platform.WindowHandle, Integer, Integer) + fullName.vb: OpenTK.Platform.IWindowComponent.GetClientSize(OpenTK.Platform.WindowHandle, Integer, Integer) name.vb: GetClientSize(WindowHandle, Integer, Integer) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.GetClientSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) + - uid: OpenTK.Platform.IWindowComponent.GetClientSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) name: GetClientSize - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetClientSize_OpenTK_Core_Platform_WindowHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetClientSize_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - name: out @@ -4062,13 +3945,13 @@ references: href: https://learn.microsoft.com/dotnet/api/system.int32 - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.GetClientSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) + - uid: OpenTK.Platform.IWindowComponent.GetClientSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) name: GetClientSize - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetClientSize_OpenTK_Core_Platform_WindowHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetClientSize_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - uid: System.Int32 @@ -4084,29 +3967,29 @@ references: - name: ) - uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetClientSize* commentId: Overload:OpenTK.Platform.Native.SDL.SDLWindowComponent.SetClientSize - href: OpenTK.Platform.Native.SDL.SDLWindowComponent.html#OpenTK_Platform_Native_SDL_SDLWindowComponent_SetClientSize_OpenTK_Core_Platform_WindowHandle_System_Int32_System_Int32_ + href: OpenTK.Platform.Native.SDL.SDLWindowComponent.html#OpenTK_Platform_Native_SDL_SDLWindowComponent_SetClientSize_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_ name: SetClientSize nameWithType: SDLWindowComponent.SetClientSize fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetClientSize -- uid: OpenTK.Core.Platform.IWindowComponent.SetClientSize(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) - commentId: M:OpenTK.Core.Platform.IWindowComponent.SetClientSize(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) - parent: OpenTK.Core.Platform.IWindowComponent +- uid: OpenTK.Platform.IWindowComponent.SetClientSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) + commentId: M:OpenTK.Platform.IWindowComponent.SetClientSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) + parent: OpenTK.Platform.IWindowComponent isExternal: true - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetClientSize_OpenTK_Core_Platform_WindowHandle_System_Int32_System_Int32_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetClientSize_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_ name: SetClientSize(WindowHandle, int, int) nameWithType: IWindowComponent.SetClientSize(WindowHandle, int, int) - fullName: OpenTK.Core.Platform.IWindowComponent.SetClientSize(OpenTK.Core.Platform.WindowHandle, int, int) + fullName: OpenTK.Platform.IWindowComponent.SetClientSize(OpenTK.Platform.WindowHandle, int, int) nameWithType.vb: IWindowComponent.SetClientSize(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Core.Platform.IWindowComponent.SetClientSize(OpenTK.Core.Platform.WindowHandle, Integer, Integer) + fullName.vb: OpenTK.Platform.IWindowComponent.SetClientSize(OpenTK.Platform.WindowHandle, Integer, Integer) name.vb: SetClientSize(WindowHandle, Integer, Integer) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.SetClientSize(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) + - uid: OpenTK.Platform.IWindowComponent.SetClientSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) name: SetClientSize - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetClientSize_OpenTK_Core_Platform_WindowHandle_System_Int32_System_Int32_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetClientSize_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - uid: System.Int32 @@ -4121,13 +4004,13 @@ references: href: https://learn.microsoft.com/dotnet/api/system.int32 - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.SetClientSize(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) + - uid: OpenTK.Platform.IWindowComponent.SetClientSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) name: SetClientSize - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetClientSize_OpenTK_Core_Platform_WindowHandle_System_Int32_System_Int32_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetClientSize_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - uid: System.Int32 @@ -4143,29 +4026,29 @@ references: - name: ) - uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetClientBounds* commentId: Overload:OpenTK.Platform.Native.SDL.SDLWindowComponent.GetClientBounds - href: OpenTK.Platform.Native.SDL.SDLWindowComponent.html#OpenTK_Platform_Native_SDL_SDLWindowComponent_GetClientBounds_OpenTK_Core_Platform_WindowHandle_System_Int32__System_Int32__System_Int32__System_Int32__ + href: OpenTK.Platform.Native.SDL.SDLWindowComponent.html#OpenTK_Platform_Native_SDL_SDLWindowComponent_GetClientBounds_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__System_Int32__System_Int32__ name: GetClientBounds nameWithType: SDLWindowComponent.GetClientBounds fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetClientBounds -- uid: OpenTK.Core.Platform.IWindowComponent.GetClientBounds(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) - commentId: M:OpenTK.Core.Platform.IWindowComponent.GetClientBounds(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) - parent: OpenTK.Core.Platform.IWindowComponent +- uid: OpenTK.Platform.IWindowComponent.GetClientBounds(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) + commentId: M:OpenTK.Platform.IWindowComponent.GetClientBounds(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) + parent: OpenTK.Platform.IWindowComponent isExternal: true - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetClientBounds_OpenTK_Core_Platform_WindowHandle_System_Int32__System_Int32__System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetClientBounds_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__System_Int32__System_Int32__ name: GetClientBounds(WindowHandle, out int, out int, out int, out int) nameWithType: IWindowComponent.GetClientBounds(WindowHandle, out int, out int, out int, out int) - fullName: OpenTK.Core.Platform.IWindowComponent.GetClientBounds(OpenTK.Core.Platform.WindowHandle, out int, out int, out int, out int) + fullName: OpenTK.Platform.IWindowComponent.GetClientBounds(OpenTK.Platform.WindowHandle, out int, out int, out int, out int) nameWithType.vb: IWindowComponent.GetClientBounds(WindowHandle, Integer, Integer, Integer, Integer) - fullName.vb: OpenTK.Core.Platform.IWindowComponent.GetClientBounds(OpenTK.Core.Platform.WindowHandle, Integer, Integer, Integer, Integer) + fullName.vb: OpenTK.Platform.IWindowComponent.GetClientBounds(OpenTK.Platform.WindowHandle, Integer, Integer, Integer, Integer) name.vb: GetClientBounds(WindowHandle, Integer, Integer, Integer, Integer) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.GetClientBounds(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) + - uid: OpenTK.Platform.IWindowComponent.GetClientBounds(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) name: GetClientBounds - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetClientBounds_OpenTK_Core_Platform_WindowHandle_System_Int32__System_Int32__System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetClientBounds_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__System_Int32__System_Int32__ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - name: out @@ -4200,13 +4083,13 @@ references: href: https://learn.microsoft.com/dotnet/api/system.int32 - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.GetClientBounds(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) + - uid: OpenTK.Platform.IWindowComponent.GetClientBounds(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) name: GetClientBounds - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetClientBounds_OpenTK_Core_Platform_WindowHandle_System_Int32__System_Int32__System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetClientBounds_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__System_Int32__System_Int32__ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - uid: System.Int32 @@ -4234,29 +4117,29 @@ references: - name: ) - uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetClientBounds* commentId: Overload:OpenTK.Platform.Native.SDL.SDLWindowComponent.SetClientBounds - href: OpenTK.Platform.Native.SDL.SDLWindowComponent.html#OpenTK_Platform_Native_SDL_SDLWindowComponent_SetClientBounds_OpenTK_Core_Platform_WindowHandle_System_Int32_System_Int32_System_Int32_System_Int32_ + href: OpenTK.Platform.Native.SDL.SDLWindowComponent.html#OpenTK_Platform_Native_SDL_SDLWindowComponent_SetClientBounds_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_System_Int32_System_Int32_ name: SetClientBounds nameWithType: SDLWindowComponent.SetClientBounds fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetClientBounds -- uid: OpenTK.Core.Platform.IWindowComponent.SetClientBounds(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) - commentId: M:OpenTK.Core.Platform.IWindowComponent.SetClientBounds(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) - parent: OpenTK.Core.Platform.IWindowComponent +- uid: OpenTK.Platform.IWindowComponent.SetClientBounds(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) + commentId: M:OpenTK.Platform.IWindowComponent.SetClientBounds(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) + parent: OpenTK.Platform.IWindowComponent isExternal: true - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetClientBounds_OpenTK_Core_Platform_WindowHandle_System_Int32_System_Int32_System_Int32_System_Int32_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetClientBounds_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_System_Int32_System_Int32_ name: SetClientBounds(WindowHandle, int, int, int, int) nameWithType: IWindowComponent.SetClientBounds(WindowHandle, int, int, int, int) - fullName: OpenTK.Core.Platform.IWindowComponent.SetClientBounds(OpenTK.Core.Platform.WindowHandle, int, int, int, int) + fullName: OpenTK.Platform.IWindowComponent.SetClientBounds(OpenTK.Platform.WindowHandle, int, int, int, int) nameWithType.vb: IWindowComponent.SetClientBounds(WindowHandle, Integer, Integer, Integer, Integer) - fullName.vb: OpenTK.Core.Platform.IWindowComponent.SetClientBounds(OpenTK.Core.Platform.WindowHandle, Integer, Integer, Integer, Integer) + fullName.vb: OpenTK.Platform.IWindowComponent.SetClientBounds(OpenTK.Platform.WindowHandle, Integer, Integer, Integer, Integer) name.vb: SetClientBounds(WindowHandle, Integer, Integer, Integer, Integer) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.SetClientBounds(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) + - uid: OpenTK.Platform.IWindowComponent.SetClientBounds(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) name: SetClientBounds - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetClientBounds_OpenTK_Core_Platform_WindowHandle_System_Int32_System_Int32_System_Int32_System_Int32_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetClientBounds_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_System_Int32_System_Int32_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - uid: System.Int32 @@ -4283,13 +4166,13 @@ references: href: https://learn.microsoft.com/dotnet/api/system.int32 - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.SetClientBounds(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) + - uid: OpenTK.Platform.IWindowComponent.SetClientBounds(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) name: SetClientBounds - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetClientBounds_OpenTK_Core_Platform_WindowHandle_System_Int32_System_Int32_System_Int32_System_Int32_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetClientBounds_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_System_Int32_System_Int32_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - uid: System.Int32 @@ -4317,29 +4200,29 @@ references: - name: ) - uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetFramebufferSize* commentId: Overload:OpenTK.Platform.Native.SDL.SDLWindowComponent.GetFramebufferSize - href: OpenTK.Platform.Native.SDL.SDLWindowComponent.html#OpenTK_Platform_Native_SDL_SDLWindowComponent_GetFramebufferSize_OpenTK_Core_Platform_WindowHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.Native.SDL.SDLWindowComponent.html#OpenTK_Platform_Native_SDL_SDLWindowComponent_GetFramebufferSize_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ name: GetFramebufferSize nameWithType: SDLWindowComponent.GetFramebufferSize fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetFramebufferSize -- uid: OpenTK.Core.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) - commentId: M:OpenTK.Core.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) - parent: OpenTK.Core.Platform.IWindowComponent +- uid: OpenTK.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + commentId: M:OpenTK.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + parent: OpenTK.Platform.IWindowComponent isExternal: true - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetFramebufferSize_OpenTK_Core_Platform_WindowHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetFramebufferSize_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ name: GetFramebufferSize(WindowHandle, out int, out int) nameWithType: IWindowComponent.GetFramebufferSize(WindowHandle, out int, out int) - fullName: OpenTK.Core.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Core.Platform.WindowHandle, out int, out int) + fullName: OpenTK.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle, out int, out int) nameWithType.vb: IWindowComponent.GetFramebufferSize(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Core.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Core.Platform.WindowHandle, Integer, Integer) + fullName.vb: OpenTK.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle, Integer, Integer) name.vb: GetFramebufferSize(WindowHandle, Integer, Integer) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) + - uid: OpenTK.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) name: GetFramebufferSize - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetFramebufferSize_OpenTK_Core_Platform_WindowHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetFramebufferSize_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - name: out @@ -4358,13 +4241,13 @@ references: href: https://learn.microsoft.com/dotnet/api/system.int32 - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) + - uid: OpenTK.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) name: GetFramebufferSize - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetFramebufferSize_OpenTK_Core_Platform_WindowHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetFramebufferSize_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - uid: System.Int32 @@ -4380,29 +4263,29 @@ references: - name: ) - uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetMaxClientSize* commentId: Overload:OpenTK.Platform.Native.SDL.SDLWindowComponent.GetMaxClientSize - href: OpenTK.Platform.Native.SDL.SDLWindowComponent.html#OpenTK_Platform_Native_SDL_SDLWindowComponent_GetMaxClientSize_OpenTK_Core_Platform_WindowHandle_System_Nullable_System_Int32___System_Nullable_System_Int32___ + href: OpenTK.Platform.Native.SDL.SDLWindowComponent.html#OpenTK_Platform_Native_SDL_SDLWindowComponent_GetMaxClientSize_OpenTK_Platform_WindowHandle_System_Nullable_System_Int32___System_Nullable_System_Int32___ name: GetMaxClientSize nameWithType: SDLWindowComponent.GetMaxClientSize fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetMaxClientSize -- uid: OpenTK.Core.Platform.IWindowComponent.GetMaxClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) - commentId: M:OpenTK.Core.Platform.IWindowComponent.GetMaxClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) - parent: OpenTK.Core.Platform.IWindowComponent +- uid: OpenTK.Platform.IWindowComponent.GetMaxClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) + commentId: M:OpenTK.Platform.IWindowComponent.GetMaxClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) + parent: OpenTK.Platform.IWindowComponent isExternal: true - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetMaxClientSize_OpenTK_Core_Platform_WindowHandle_System_Nullable_System_Int32___System_Nullable_System_Int32___ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetMaxClientSize_OpenTK_Platform_WindowHandle_System_Nullable_System_Int32___System_Nullable_System_Int32___ name: GetMaxClientSize(WindowHandle, out int?, out int?) nameWithType: IWindowComponent.GetMaxClientSize(WindowHandle, out int?, out int?) - fullName: OpenTK.Core.Platform.IWindowComponent.GetMaxClientSize(OpenTK.Core.Platform.WindowHandle, out int?, out int?) + fullName: OpenTK.Platform.IWindowComponent.GetMaxClientSize(OpenTK.Platform.WindowHandle, out int?, out int?) nameWithType.vb: IWindowComponent.GetMaxClientSize(WindowHandle, Integer?, Integer?) - fullName.vb: OpenTK.Core.Platform.IWindowComponent.GetMaxClientSize(OpenTK.Core.Platform.WindowHandle, Integer?, Integer?) + fullName.vb: OpenTK.Platform.IWindowComponent.GetMaxClientSize(OpenTK.Platform.WindowHandle, Integer?, Integer?) name.vb: GetMaxClientSize(WindowHandle, Integer?, Integer?) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.GetMaxClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) + - uid: OpenTK.Platform.IWindowComponent.GetMaxClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) name: GetMaxClientSize - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetMaxClientSize_OpenTK_Core_Platform_WindowHandle_System_Nullable_System_Int32___System_Nullable_System_Int32___ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetMaxClientSize_OpenTK_Platform_WindowHandle_System_Nullable_System_Int32___System_Nullable_System_Int32___ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - name: out @@ -4423,13 +4306,13 @@ references: - name: '?' - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.GetMaxClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) + - uid: OpenTK.Platform.IWindowComponent.GetMaxClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) name: GetMaxClientSize - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetMaxClientSize_OpenTK_Core_Platform_WindowHandle_System_Nullable_System_Int32___System_Nullable_System_Int32___ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetMaxClientSize_OpenTK_Platform_WindowHandle_System_Nullable_System_Int32___System_Nullable_System_Int32___ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - uid: System.Int32 @@ -4498,29 +4381,29 @@ references: - name: ) - uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetMaxClientSize* commentId: Overload:OpenTK.Platform.Native.SDL.SDLWindowComponent.SetMaxClientSize - href: OpenTK.Platform.Native.SDL.SDLWindowComponent.html#OpenTK_Platform_Native_SDL_SDLWindowComponent_SetMaxClientSize_OpenTK_Core_Platform_WindowHandle_System_Nullable_System_Int32__System_Nullable_System_Int32__ + href: OpenTK.Platform.Native.SDL.SDLWindowComponent.html#OpenTK_Platform_Native_SDL_SDLWindowComponent_SetMaxClientSize_OpenTK_Platform_WindowHandle_System_Nullable_System_Int32__System_Nullable_System_Int32__ name: SetMaxClientSize nameWithType: SDLWindowComponent.SetMaxClientSize fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetMaxClientSize -- uid: OpenTK.Core.Platform.IWindowComponent.SetMaxClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) - commentId: M:OpenTK.Core.Platform.IWindowComponent.SetMaxClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) - parent: OpenTK.Core.Platform.IWindowComponent +- uid: OpenTK.Platform.IWindowComponent.SetMaxClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) + commentId: M:OpenTK.Platform.IWindowComponent.SetMaxClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) + parent: OpenTK.Platform.IWindowComponent isExternal: true - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetMaxClientSize_OpenTK_Core_Platform_WindowHandle_System_Nullable_System_Int32__System_Nullable_System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetMaxClientSize_OpenTK_Platform_WindowHandle_System_Nullable_System_Int32__System_Nullable_System_Int32__ name: SetMaxClientSize(WindowHandle, int?, int?) nameWithType: IWindowComponent.SetMaxClientSize(WindowHandle, int?, int?) - fullName: OpenTK.Core.Platform.IWindowComponent.SetMaxClientSize(OpenTK.Core.Platform.WindowHandle, int?, int?) + fullName: OpenTK.Platform.IWindowComponent.SetMaxClientSize(OpenTK.Platform.WindowHandle, int?, int?) nameWithType.vb: IWindowComponent.SetMaxClientSize(WindowHandle, Integer?, Integer?) - fullName.vb: OpenTK.Core.Platform.IWindowComponent.SetMaxClientSize(OpenTK.Core.Platform.WindowHandle, Integer?, Integer?) + fullName.vb: OpenTK.Platform.IWindowComponent.SetMaxClientSize(OpenTK.Platform.WindowHandle, Integer?, Integer?) name.vb: SetMaxClientSize(WindowHandle, Integer?, Integer?) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.SetMaxClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) + - uid: OpenTK.Platform.IWindowComponent.SetMaxClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) name: SetMaxClientSize - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetMaxClientSize_OpenTK_Core_Platform_WindowHandle_System_Nullable_System_Int32__System_Nullable_System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetMaxClientSize_OpenTK_Platform_WindowHandle_System_Nullable_System_Int32__System_Nullable_System_Int32__ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - uid: System.Int32 @@ -4537,13 +4420,13 @@ references: - name: '?' - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.SetMaxClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) + - uid: OpenTK.Platform.IWindowComponent.SetMaxClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) name: SetMaxClientSize - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetMaxClientSize_OpenTK_Core_Platform_WindowHandle_System_Nullable_System_Int32__System_Nullable_System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetMaxClientSize_OpenTK_Platform_WindowHandle_System_Nullable_System_Int32__System_Nullable_System_Int32__ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - uid: System.Int32 @@ -4561,29 +4444,29 @@ references: - name: ) - uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetMinClientSize* commentId: Overload:OpenTK.Platform.Native.SDL.SDLWindowComponent.GetMinClientSize - href: OpenTK.Platform.Native.SDL.SDLWindowComponent.html#OpenTK_Platform_Native_SDL_SDLWindowComponent_GetMinClientSize_OpenTK_Core_Platform_WindowHandle_System_Nullable_System_Int32___System_Nullable_System_Int32___ + href: OpenTK.Platform.Native.SDL.SDLWindowComponent.html#OpenTK_Platform_Native_SDL_SDLWindowComponent_GetMinClientSize_OpenTK_Platform_WindowHandle_System_Nullable_System_Int32___System_Nullable_System_Int32___ name: GetMinClientSize nameWithType: SDLWindowComponent.GetMinClientSize fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetMinClientSize -- uid: OpenTK.Core.Platform.IWindowComponent.GetMinClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) - commentId: M:OpenTK.Core.Platform.IWindowComponent.GetMinClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) - parent: OpenTK.Core.Platform.IWindowComponent +- uid: OpenTK.Platform.IWindowComponent.GetMinClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) + commentId: M:OpenTK.Platform.IWindowComponent.GetMinClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) + parent: OpenTK.Platform.IWindowComponent isExternal: true - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetMinClientSize_OpenTK_Core_Platform_WindowHandle_System_Nullable_System_Int32___System_Nullable_System_Int32___ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetMinClientSize_OpenTK_Platform_WindowHandle_System_Nullable_System_Int32___System_Nullable_System_Int32___ name: GetMinClientSize(WindowHandle, out int?, out int?) nameWithType: IWindowComponent.GetMinClientSize(WindowHandle, out int?, out int?) - fullName: OpenTK.Core.Platform.IWindowComponent.GetMinClientSize(OpenTK.Core.Platform.WindowHandle, out int?, out int?) + fullName: OpenTK.Platform.IWindowComponent.GetMinClientSize(OpenTK.Platform.WindowHandle, out int?, out int?) nameWithType.vb: IWindowComponent.GetMinClientSize(WindowHandle, Integer?, Integer?) - fullName.vb: OpenTK.Core.Platform.IWindowComponent.GetMinClientSize(OpenTK.Core.Platform.WindowHandle, Integer?, Integer?) + fullName.vb: OpenTK.Platform.IWindowComponent.GetMinClientSize(OpenTK.Platform.WindowHandle, Integer?, Integer?) name.vb: GetMinClientSize(WindowHandle, Integer?, Integer?) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.GetMinClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) + - uid: OpenTK.Platform.IWindowComponent.GetMinClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) name: GetMinClientSize - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetMinClientSize_OpenTK_Core_Platform_WindowHandle_System_Nullable_System_Int32___System_Nullable_System_Int32___ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetMinClientSize_OpenTK_Platform_WindowHandle_System_Nullable_System_Int32___System_Nullable_System_Int32___ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - name: out @@ -4604,13 +4487,13 @@ references: - name: '?' - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.GetMinClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) + - uid: OpenTK.Platform.IWindowComponent.GetMinClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) name: GetMinClientSize - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetMinClientSize_OpenTK_Core_Platform_WindowHandle_System_Nullable_System_Int32___System_Nullable_System_Int32___ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetMinClientSize_OpenTK_Platform_WindowHandle_System_Nullable_System_Int32___System_Nullable_System_Int32___ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - uid: System.Int32 @@ -4628,29 +4511,29 @@ references: - name: ) - uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetMinClientSize* commentId: Overload:OpenTK.Platform.Native.SDL.SDLWindowComponent.SetMinClientSize - href: OpenTK.Platform.Native.SDL.SDLWindowComponent.html#OpenTK_Platform_Native_SDL_SDLWindowComponent_SetMinClientSize_OpenTK_Core_Platform_WindowHandle_System_Nullable_System_Int32__System_Nullable_System_Int32__ + href: OpenTK.Platform.Native.SDL.SDLWindowComponent.html#OpenTK_Platform_Native_SDL_SDLWindowComponent_SetMinClientSize_OpenTK_Platform_WindowHandle_System_Nullable_System_Int32__System_Nullable_System_Int32__ name: SetMinClientSize nameWithType: SDLWindowComponent.SetMinClientSize fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetMinClientSize -- uid: OpenTK.Core.Platform.IWindowComponent.SetMinClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) - commentId: M:OpenTK.Core.Platform.IWindowComponent.SetMinClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) - parent: OpenTK.Core.Platform.IWindowComponent +- uid: OpenTK.Platform.IWindowComponent.SetMinClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) + commentId: M:OpenTK.Platform.IWindowComponent.SetMinClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) + parent: OpenTK.Platform.IWindowComponent isExternal: true - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetMinClientSize_OpenTK_Core_Platform_WindowHandle_System_Nullable_System_Int32__System_Nullable_System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetMinClientSize_OpenTK_Platform_WindowHandle_System_Nullable_System_Int32__System_Nullable_System_Int32__ name: SetMinClientSize(WindowHandle, int?, int?) nameWithType: IWindowComponent.SetMinClientSize(WindowHandle, int?, int?) - fullName: OpenTK.Core.Platform.IWindowComponent.SetMinClientSize(OpenTK.Core.Platform.WindowHandle, int?, int?) + fullName: OpenTK.Platform.IWindowComponent.SetMinClientSize(OpenTK.Platform.WindowHandle, int?, int?) nameWithType.vb: IWindowComponent.SetMinClientSize(WindowHandle, Integer?, Integer?) - fullName.vb: OpenTK.Core.Platform.IWindowComponent.SetMinClientSize(OpenTK.Core.Platform.WindowHandle, Integer?, Integer?) + fullName.vb: OpenTK.Platform.IWindowComponent.SetMinClientSize(OpenTK.Platform.WindowHandle, Integer?, Integer?) name.vb: SetMinClientSize(WindowHandle, Integer?, Integer?) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.SetMinClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) + - uid: OpenTK.Platform.IWindowComponent.SetMinClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) name: SetMinClientSize - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetMinClientSize_OpenTK_Core_Platform_WindowHandle_System_Nullable_System_Int32__System_Nullable_System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetMinClientSize_OpenTK_Platform_WindowHandle_System_Nullable_System_Int32__System_Nullable_System_Int32__ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - uid: System.Int32 @@ -4667,13 +4550,13 @@ references: - name: '?' - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.SetMinClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) + - uid: OpenTK.Platform.IWindowComponent.SetMinClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) name: SetMinClientSize - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetMinClientSize_OpenTK_Core_Platform_WindowHandle_System_Nullable_System_Int32__System_Nullable_System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetMinClientSize_OpenTK_Platform_WindowHandle_System_Nullable_System_Int32__System_Nullable_System_Int32__ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - uid: System.Int32 @@ -4691,171 +4574,146 @@ references: - name: ) - uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetDisplay* commentId: Overload:OpenTK.Platform.Native.SDL.SDLWindowComponent.GetDisplay - href: OpenTK.Platform.Native.SDL.SDLWindowComponent.html#OpenTK_Platform_Native_SDL_SDLWindowComponent_GetDisplay_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.Native.SDL.SDLWindowComponent.html#OpenTK_Platform_Native_SDL_SDLWindowComponent_GetDisplay_OpenTK_Platform_WindowHandle_ name: GetDisplay nameWithType: SDLWindowComponent.GetDisplay fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetDisplay -- uid: OpenTK.Core.Platform.IWindowComponent.GetDisplay(OpenTK.Core.Platform.WindowHandle) - commentId: M:OpenTK.Core.Platform.IWindowComponent.GetDisplay(OpenTK.Core.Platform.WindowHandle) - parent: OpenTK.Core.Platform.IWindowComponent - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetDisplay_OpenTK_Core_Platform_WindowHandle_ - name: GetDisplay(WindowHandle) - nameWithType: IWindowComponent.GetDisplay(WindowHandle) - fullName: OpenTK.Core.Platform.IWindowComponent.GetDisplay(OpenTK.Core.Platform.WindowHandle) - spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.GetDisplay(OpenTK.Core.Platform.WindowHandle) - name: GetDisplay - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetDisplay_OpenTK_Core_Platform_WindowHandle_ - - name: ( - - uid: OpenTK.Core.Platform.WindowHandle - name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html - - name: ) - spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.GetDisplay(OpenTK.Core.Platform.WindowHandle) - name: GetDisplay - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetDisplay_OpenTK_Core_Platform_WindowHandle_ - - name: ( - - uid: OpenTK.Core.Platform.WindowHandle - name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html - - name: ) -- uid: OpenTK.Core.Platform.DisplayHandle - commentId: T:OpenTK.Core.Platform.DisplayHandle - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.DisplayHandle.html +- uid: OpenTK.Platform.DisplayHandle + commentId: T:OpenTK.Platform.DisplayHandle + parent: OpenTK.Platform + href: OpenTK.Platform.DisplayHandle.html name: DisplayHandle nameWithType: DisplayHandle - fullName: OpenTK.Core.Platform.DisplayHandle + fullName: OpenTK.Platform.DisplayHandle - uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetMode* commentId: Overload:OpenTK.Platform.Native.SDL.SDLWindowComponent.GetMode - href: OpenTK.Platform.Native.SDL.SDLWindowComponent.html#OpenTK_Platform_Native_SDL_SDLWindowComponent_GetMode_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.Native.SDL.SDLWindowComponent.html#OpenTK_Platform_Native_SDL_SDLWindowComponent_GetMode_OpenTK_Platform_WindowHandle_ name: GetMode nameWithType: SDLWindowComponent.GetMode fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetMode -- uid: OpenTK.Core.Platform.IWindowComponent.GetMode(OpenTK.Core.Platform.WindowHandle) - commentId: M:OpenTK.Core.Platform.IWindowComponent.GetMode(OpenTK.Core.Platform.WindowHandle) - parent: OpenTK.Core.Platform.IWindowComponent - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetMode_OpenTK_Core_Platform_WindowHandle_ +- uid: OpenTK.Platform.IWindowComponent.GetMode(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.GetMode(OpenTK.Platform.WindowHandle) + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetMode_OpenTK_Platform_WindowHandle_ name: GetMode(WindowHandle) nameWithType: IWindowComponent.GetMode(WindowHandle) - fullName: OpenTK.Core.Platform.IWindowComponent.GetMode(OpenTK.Core.Platform.WindowHandle) + fullName: OpenTK.Platform.IWindowComponent.GetMode(OpenTK.Platform.WindowHandle) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.GetMode(OpenTK.Core.Platform.WindowHandle) + - uid: OpenTK.Platform.IWindowComponent.GetMode(OpenTK.Platform.WindowHandle) name: GetMode - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetMode_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetMode_OpenTK_Platform_WindowHandle_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.GetMode(OpenTK.Core.Platform.WindowHandle) + - uid: OpenTK.Platform.IWindowComponent.GetMode(OpenTK.Platform.WindowHandle) name: GetMode - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetMode_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetMode_OpenTK_Platform_WindowHandle_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ) -- uid: OpenTK.Core.Platform.WindowMode - commentId: T:OpenTK.Core.Platform.WindowMode - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.WindowMode.html +- uid: OpenTK.Platform.WindowMode + commentId: T:OpenTK.Platform.WindowMode + parent: OpenTK.Platform + href: OpenTK.Platform.WindowMode.html name: WindowMode nameWithType: WindowMode - fullName: OpenTK.Core.Platform.WindowMode -- uid: OpenTK.Core.Platform.WindowMode.WindowedFullscreen - commentId: F:OpenTK.Core.Platform.WindowMode.WindowedFullscreen - href: OpenTK.Core.Platform.WindowMode.html#OpenTK_Core_Platform_WindowMode_WindowedFullscreen + fullName: OpenTK.Platform.WindowMode +- uid: OpenTK.Platform.WindowMode.WindowedFullscreen + commentId: F:OpenTK.Platform.WindowMode.WindowedFullscreen + href: OpenTK.Platform.WindowMode.html#OpenTK_Platform_WindowMode_WindowedFullscreen name: WindowedFullscreen nameWithType: WindowMode.WindowedFullscreen - fullName: OpenTK.Core.Platform.WindowMode.WindowedFullscreen -- uid: OpenTK.Core.Platform.WindowMode.ExclusiveFullscreen - commentId: F:OpenTK.Core.Platform.WindowMode.ExclusiveFullscreen - href: OpenTK.Core.Platform.WindowMode.html#OpenTK_Core_Platform_WindowMode_ExclusiveFullscreen + fullName: OpenTK.Platform.WindowMode.WindowedFullscreen +- uid: OpenTK.Platform.WindowMode.ExclusiveFullscreen + commentId: F:OpenTK.Platform.WindowMode.ExclusiveFullscreen + href: OpenTK.Platform.WindowMode.html#OpenTK_Platform_WindowMode_ExclusiveFullscreen name: ExclusiveFullscreen nameWithType: WindowMode.ExclusiveFullscreen - fullName: OpenTK.Core.Platform.WindowMode.ExclusiveFullscreen -- uid: OpenTK.Core.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle) - commentId: M:OpenTK.Core.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle) - parent: OpenTK.Core.Platform.IWindowComponent - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetFullscreenDisplay_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_DisplayHandle_ + fullName: OpenTK.Platform.WindowMode.ExclusiveFullscreen +- uid: OpenTK.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle) + commentId: M:OpenTK.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle) + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetFullscreenDisplay_OpenTK_Platform_WindowHandle_OpenTK_Platform_DisplayHandle_ name: SetFullscreenDisplay(WindowHandle, DisplayHandle) nameWithType: IWindowComponent.SetFullscreenDisplay(WindowHandle, DisplayHandle) - fullName: OpenTK.Core.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle, OpenTK.Core.Platform.DisplayHandle) + fullName: OpenTK.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle, OpenTK.Platform.DisplayHandle) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle) + - uid: OpenTK.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle) name: SetFullscreenDisplay - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetFullscreenDisplay_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_DisplayHandle_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetFullscreenDisplay_OpenTK_Platform_WindowHandle_OpenTK_Platform_DisplayHandle_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - - uid: OpenTK.Core.Platform.DisplayHandle + - uid: OpenTK.Platform.DisplayHandle name: DisplayHandle - href: OpenTK.Core.Platform.DisplayHandle.html + href: OpenTK.Platform.DisplayHandle.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle) + - uid: OpenTK.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle) name: SetFullscreenDisplay - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetFullscreenDisplay_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_DisplayHandle_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetFullscreenDisplay_OpenTK_Platform_WindowHandle_OpenTK_Platform_DisplayHandle_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - - uid: OpenTK.Core.Platform.DisplayHandle + - uid: OpenTK.Platform.DisplayHandle name: DisplayHandle - href: OpenTK.Core.Platform.DisplayHandle.html + href: OpenTK.Platform.DisplayHandle.html - name: ) -- uid: OpenTK.Core.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle,OpenTK.Core.Platform.VideoMode) - commentId: M:OpenTK.Core.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle,OpenTK.Core.Platform.VideoMode) - parent: OpenTK.Core.Platform.IWindowComponent - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetFullscreenDisplay_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_DisplayHandle_OpenTK_Core_Platform_VideoMode_ +- uid: OpenTK.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle,OpenTK.Platform.VideoMode) + commentId: M:OpenTK.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle,OpenTK.Platform.VideoMode) + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetFullscreenDisplay_OpenTK_Platform_WindowHandle_OpenTK_Platform_DisplayHandle_OpenTK_Platform_VideoMode_ name: SetFullscreenDisplay(WindowHandle, DisplayHandle, VideoMode) nameWithType: IWindowComponent.SetFullscreenDisplay(WindowHandle, DisplayHandle, VideoMode) - fullName: OpenTK.Core.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle, OpenTK.Core.Platform.DisplayHandle, OpenTK.Core.Platform.VideoMode) + fullName: OpenTK.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle, OpenTK.Platform.DisplayHandle, OpenTK.Platform.VideoMode) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle,OpenTK.Core.Platform.VideoMode) + - uid: OpenTK.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle,OpenTK.Platform.VideoMode) name: SetFullscreenDisplay - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetFullscreenDisplay_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_DisplayHandle_OpenTK_Core_Platform_VideoMode_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetFullscreenDisplay_OpenTK_Platform_WindowHandle_OpenTK_Platform_DisplayHandle_OpenTK_Platform_VideoMode_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - - uid: OpenTK.Core.Platform.DisplayHandle + - uid: OpenTK.Platform.DisplayHandle name: DisplayHandle - href: OpenTK.Core.Platform.DisplayHandle.html + href: OpenTK.Platform.DisplayHandle.html - name: ',' - name: " " - - uid: OpenTK.Core.Platform.VideoMode + - uid: OpenTK.Platform.VideoMode name: VideoMode - href: OpenTK.Core.Platform.VideoMode.html + href: OpenTK.Platform.VideoMode.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle,OpenTK.Core.Platform.VideoMode) + - uid: OpenTK.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle,OpenTK.Platform.VideoMode) name: SetFullscreenDisplay - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetFullscreenDisplay_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_DisplayHandle_OpenTK_Core_Platform_VideoMode_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetFullscreenDisplay_OpenTK_Platform_WindowHandle_OpenTK_Platform_DisplayHandle_OpenTK_Platform_VideoMode_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - - uid: OpenTK.Core.Platform.DisplayHandle + - uid: OpenTK.Platform.DisplayHandle name: DisplayHandle - href: OpenTK.Core.Platform.DisplayHandle.html + href: OpenTK.Platform.DisplayHandle.html - name: ',' - name: " " - - uid: OpenTK.Core.Platform.VideoMode + - uid: OpenTK.Platform.VideoMode name: VideoMode - href: OpenTK.Core.Platform.VideoMode.html + href: OpenTK.Platform.VideoMode.html - name: ) - uid: System.ArgumentOutOfRangeException commentId: T:System.ArgumentOutOfRangeException @@ -4866,240 +4724,240 @@ references: fullName: System.ArgumentOutOfRangeException - uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetMode* commentId: Overload:OpenTK.Platform.Native.SDL.SDLWindowComponent.SetMode - href: OpenTK.Platform.Native.SDL.SDLWindowComponent.html#OpenTK_Platform_Native_SDL_SDLWindowComponent_SetMode_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_WindowMode_ + href: OpenTK.Platform.Native.SDL.SDLWindowComponent.html#OpenTK_Platform_Native_SDL_SDLWindowComponent_SetMode_OpenTK_Platform_WindowHandle_OpenTK_Platform_WindowMode_ name: SetMode nameWithType: SDLWindowComponent.SetMode fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetMode -- uid: OpenTK.Core.Platform.IWindowComponent.SetMode(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.WindowMode) - commentId: M:OpenTK.Core.Platform.IWindowComponent.SetMode(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.WindowMode) - parent: OpenTK.Core.Platform.IWindowComponent - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetMode_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_WindowMode_ +- uid: OpenTK.Platform.IWindowComponent.SetMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowMode) + commentId: M:OpenTK.Platform.IWindowComponent.SetMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowMode) + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetMode_OpenTK_Platform_WindowHandle_OpenTK_Platform_WindowMode_ name: SetMode(WindowHandle, WindowMode) nameWithType: IWindowComponent.SetMode(WindowHandle, WindowMode) - fullName: OpenTK.Core.Platform.IWindowComponent.SetMode(OpenTK.Core.Platform.WindowHandle, OpenTK.Core.Platform.WindowMode) + fullName: OpenTK.Platform.IWindowComponent.SetMode(OpenTK.Platform.WindowHandle, OpenTK.Platform.WindowMode) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.SetMode(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.WindowMode) + - uid: OpenTK.Platform.IWindowComponent.SetMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowMode) name: SetMode - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetMode_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_WindowMode_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetMode_OpenTK_Platform_WindowHandle_OpenTK_Platform_WindowMode_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - - uid: OpenTK.Core.Platform.WindowMode + - uid: OpenTK.Platform.WindowMode name: WindowMode - href: OpenTK.Core.Platform.WindowMode.html + href: OpenTK.Platform.WindowMode.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.SetMode(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.WindowMode) + - uid: OpenTK.Platform.IWindowComponent.SetMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowMode) name: SetMode - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetMode_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_WindowMode_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetMode_OpenTK_Platform_WindowHandle_OpenTK_Platform_WindowMode_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - - uid: OpenTK.Core.Platform.WindowMode + - uid: OpenTK.Platform.WindowMode name: WindowMode - href: OpenTK.Core.Platform.WindowMode.html + href: OpenTK.Platform.WindowMode.html - name: ) - uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetFullscreenDisplay* commentId: Overload:OpenTK.Platform.Native.SDL.SDLWindowComponent.SetFullscreenDisplay - href: OpenTK.Platform.Native.SDL.SDLWindowComponent.html#OpenTK_Platform_Native_SDL_SDLWindowComponent_SetFullscreenDisplay_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_DisplayHandle_ + href: OpenTK.Platform.Native.SDL.SDLWindowComponent.html#OpenTK_Platform_Native_SDL_SDLWindowComponent_SetFullscreenDisplay_OpenTK_Platform_WindowHandle_OpenTK_Platform_DisplayHandle_ name: SetFullscreenDisplay nameWithType: SDLWindowComponent.SetFullscreenDisplay fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetFullscreenDisplay -- uid: OpenTK.Core.Platform.IDisplayComponent.GetSupportedVideoModes(OpenTK.Core.Platform.DisplayHandle) - commentId: M:OpenTK.Core.Platform.IDisplayComponent.GetSupportedVideoModes(OpenTK.Core.Platform.DisplayHandle) - parent: OpenTK.Core.Platform.IDisplayComponent - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_GetSupportedVideoModes_OpenTK_Core_Platform_DisplayHandle_ +- uid: OpenTK.Platform.IDisplayComponent.GetSupportedVideoModes(OpenTK.Platform.DisplayHandle) + commentId: M:OpenTK.Platform.IDisplayComponent.GetSupportedVideoModes(OpenTK.Platform.DisplayHandle) + parent: OpenTK.Platform.IDisplayComponent + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_GetSupportedVideoModes_OpenTK_Platform_DisplayHandle_ name: GetSupportedVideoModes(DisplayHandle) nameWithType: IDisplayComponent.GetSupportedVideoModes(DisplayHandle) - fullName: OpenTK.Core.Platform.IDisplayComponent.GetSupportedVideoModes(OpenTK.Core.Platform.DisplayHandle) + fullName: OpenTK.Platform.IDisplayComponent.GetSupportedVideoModes(OpenTK.Platform.DisplayHandle) spec.csharp: - - uid: OpenTK.Core.Platform.IDisplayComponent.GetSupportedVideoModes(OpenTK.Core.Platform.DisplayHandle) + - uid: OpenTK.Platform.IDisplayComponent.GetSupportedVideoModes(OpenTK.Platform.DisplayHandle) name: GetSupportedVideoModes - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_GetSupportedVideoModes_OpenTK_Core_Platform_DisplayHandle_ + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_GetSupportedVideoModes_OpenTK_Platform_DisplayHandle_ - name: ( - - uid: OpenTK.Core.Platform.DisplayHandle + - uid: OpenTK.Platform.DisplayHandle name: DisplayHandle - href: OpenTK.Core.Platform.DisplayHandle.html + href: OpenTK.Platform.DisplayHandle.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IDisplayComponent.GetSupportedVideoModes(OpenTK.Core.Platform.DisplayHandle) + - uid: OpenTK.Platform.IDisplayComponent.GetSupportedVideoModes(OpenTK.Platform.DisplayHandle) name: GetSupportedVideoModes - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_GetSupportedVideoModes_OpenTK_Core_Platform_DisplayHandle_ + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_GetSupportedVideoModes_OpenTK_Platform_DisplayHandle_ - name: ( - - uid: OpenTK.Core.Platform.DisplayHandle + - uid: OpenTK.Platform.DisplayHandle name: DisplayHandle - href: OpenTK.Core.Platform.DisplayHandle.html + href: OpenTK.Platform.DisplayHandle.html - name: ) -- uid: OpenTK.Core.Platform.VideoMode - commentId: T:OpenTK.Core.Platform.VideoMode - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.VideoMode.html +- uid: OpenTK.Platform.VideoMode + commentId: T:OpenTK.Platform.VideoMode + parent: OpenTK.Platform + href: OpenTK.Platform.VideoMode.html name: VideoMode nameWithType: VideoMode - fullName: OpenTK.Core.Platform.VideoMode -- uid: OpenTK.Core.Platform.IDisplayComponent - commentId: T:OpenTK.Core.Platform.IDisplayComponent - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.IDisplayComponent.html + fullName: OpenTK.Platform.VideoMode +- uid: OpenTK.Platform.IDisplayComponent + commentId: T:OpenTK.Platform.IDisplayComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IDisplayComponent.html name: IDisplayComponent nameWithType: IDisplayComponent - fullName: OpenTK.Core.Platform.IDisplayComponent + fullName: OpenTK.Platform.IDisplayComponent - uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetFullscreenDisplay* commentId: Overload:OpenTK.Platform.Native.SDL.SDLWindowComponent.GetFullscreenDisplay - href: OpenTK.Platform.Native.SDL.SDLWindowComponent.html#OpenTK_Platform_Native_SDL_SDLWindowComponent_GetFullscreenDisplay_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_DisplayHandle__ + href: OpenTK.Platform.Native.SDL.SDLWindowComponent.html#OpenTK_Platform_Native_SDL_SDLWindowComponent_GetFullscreenDisplay_OpenTK_Platform_WindowHandle_OpenTK_Platform_DisplayHandle__ name: GetFullscreenDisplay nameWithType: SDLWindowComponent.GetFullscreenDisplay fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetFullscreenDisplay -- uid: OpenTK.Core.Platform.IWindowComponent.GetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle@) - commentId: M:OpenTK.Core.Platform.IWindowComponent.GetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle@) - parent: OpenTK.Core.Platform.IWindowComponent - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetFullscreenDisplay_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_DisplayHandle__ +- uid: OpenTK.Platform.IWindowComponent.GetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle@) + commentId: M:OpenTK.Platform.IWindowComponent.GetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle@) + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetFullscreenDisplay_OpenTK_Platform_WindowHandle_OpenTK_Platform_DisplayHandle__ name: GetFullscreenDisplay(WindowHandle, out DisplayHandle) nameWithType: IWindowComponent.GetFullscreenDisplay(WindowHandle, out DisplayHandle) - fullName: OpenTK.Core.Platform.IWindowComponent.GetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle, out OpenTK.Core.Platform.DisplayHandle) + fullName: OpenTK.Platform.IWindowComponent.GetFullscreenDisplay(OpenTK.Platform.WindowHandle, out OpenTK.Platform.DisplayHandle) nameWithType.vb: IWindowComponent.GetFullscreenDisplay(WindowHandle, DisplayHandle) - fullName.vb: OpenTK.Core.Platform.IWindowComponent.GetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle, OpenTK.Core.Platform.DisplayHandle) + fullName.vb: OpenTK.Platform.IWindowComponent.GetFullscreenDisplay(OpenTK.Platform.WindowHandle, OpenTK.Platform.DisplayHandle) name.vb: GetFullscreenDisplay(WindowHandle, DisplayHandle) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.GetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle@) + - uid: OpenTK.Platform.IWindowComponent.GetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle@) name: GetFullscreenDisplay - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetFullscreenDisplay_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_DisplayHandle__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetFullscreenDisplay_OpenTK_Platform_WindowHandle_OpenTK_Platform_DisplayHandle__ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - name: out - name: " " - - uid: OpenTK.Core.Platform.DisplayHandle + - uid: OpenTK.Platform.DisplayHandle name: DisplayHandle - href: OpenTK.Core.Platform.DisplayHandle.html + href: OpenTK.Platform.DisplayHandle.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.GetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle@) + - uid: OpenTK.Platform.IWindowComponent.GetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle@) name: GetFullscreenDisplay - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetFullscreenDisplay_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_DisplayHandle__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetFullscreenDisplay_OpenTK_Platform_WindowHandle_OpenTK_Platform_DisplayHandle__ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - - uid: OpenTK.Core.Platform.DisplayHandle + - uid: OpenTK.Platform.DisplayHandle name: DisplayHandle - href: OpenTK.Core.Platform.DisplayHandle.html + href: OpenTK.Platform.DisplayHandle.html - name: ) - uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetBorderStyle* commentId: Overload:OpenTK.Platform.Native.SDL.SDLWindowComponent.GetBorderStyle - href: OpenTK.Platform.Native.SDL.SDLWindowComponent.html#OpenTK_Platform_Native_SDL_SDLWindowComponent_GetBorderStyle_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.Native.SDL.SDLWindowComponent.html#OpenTK_Platform_Native_SDL_SDLWindowComponent_GetBorderStyle_OpenTK_Platform_WindowHandle_ name: GetBorderStyle nameWithType: SDLWindowComponent.GetBorderStyle fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetBorderStyle -- uid: OpenTK.Core.Platform.IWindowComponent.GetBorderStyle(OpenTK.Core.Platform.WindowHandle) - commentId: M:OpenTK.Core.Platform.IWindowComponent.GetBorderStyle(OpenTK.Core.Platform.WindowHandle) - parent: OpenTK.Core.Platform.IWindowComponent - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetBorderStyle_OpenTK_Core_Platform_WindowHandle_ +- uid: OpenTK.Platform.IWindowComponent.GetBorderStyle(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.GetBorderStyle(OpenTK.Platform.WindowHandle) + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetBorderStyle_OpenTK_Platform_WindowHandle_ name: GetBorderStyle(WindowHandle) nameWithType: IWindowComponent.GetBorderStyle(WindowHandle) - fullName: OpenTK.Core.Platform.IWindowComponent.GetBorderStyle(OpenTK.Core.Platform.WindowHandle) + fullName: OpenTK.Platform.IWindowComponent.GetBorderStyle(OpenTK.Platform.WindowHandle) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.GetBorderStyle(OpenTK.Core.Platform.WindowHandle) + - uid: OpenTK.Platform.IWindowComponent.GetBorderStyle(OpenTK.Platform.WindowHandle) name: GetBorderStyle - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetBorderStyle_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetBorderStyle_OpenTK_Platform_WindowHandle_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.GetBorderStyle(OpenTK.Core.Platform.WindowHandle) + - uid: OpenTK.Platform.IWindowComponent.GetBorderStyle(OpenTK.Platform.WindowHandle) name: GetBorderStyle - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetBorderStyle_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetBorderStyle_OpenTK_Platform_WindowHandle_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ) -- uid: OpenTK.Core.Platform.WindowBorderStyle - commentId: T:OpenTK.Core.Platform.WindowBorderStyle - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.WindowBorderStyle.html +- uid: OpenTK.Platform.WindowBorderStyle + commentId: T:OpenTK.Platform.WindowBorderStyle + parent: OpenTK.Platform + href: OpenTK.Platform.WindowBorderStyle.html name: WindowBorderStyle nameWithType: WindowBorderStyle - fullName: OpenTK.Core.Platform.WindowBorderStyle + fullName: OpenTK.Platform.WindowBorderStyle - uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetBorderStyle* commentId: Overload:OpenTK.Platform.Native.SDL.SDLWindowComponent.SetBorderStyle - href: OpenTK.Platform.Native.SDL.SDLWindowComponent.html#OpenTK_Platform_Native_SDL_SDLWindowComponent_SetBorderStyle_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_WindowBorderStyle_ + href: OpenTK.Platform.Native.SDL.SDLWindowComponent.html#OpenTK_Platform_Native_SDL_SDLWindowComponent_SetBorderStyle_OpenTK_Platform_WindowHandle_OpenTK_Platform_WindowBorderStyle_ name: SetBorderStyle nameWithType: SDLWindowComponent.SetBorderStyle fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetBorderStyle -- uid: OpenTK.Core.Platform.IWindowComponent.SetBorderStyle(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.WindowBorderStyle) - commentId: M:OpenTK.Core.Platform.IWindowComponent.SetBorderStyle(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.WindowBorderStyle) - parent: OpenTK.Core.Platform.IWindowComponent - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetBorderStyle_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_WindowBorderStyle_ +- uid: OpenTK.Platform.IWindowComponent.SetBorderStyle(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowBorderStyle) + commentId: M:OpenTK.Platform.IWindowComponent.SetBorderStyle(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowBorderStyle) + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetBorderStyle_OpenTK_Platform_WindowHandle_OpenTK_Platform_WindowBorderStyle_ name: SetBorderStyle(WindowHandle, WindowBorderStyle) nameWithType: IWindowComponent.SetBorderStyle(WindowHandle, WindowBorderStyle) - fullName: OpenTK.Core.Platform.IWindowComponent.SetBorderStyle(OpenTK.Core.Platform.WindowHandle, OpenTK.Core.Platform.WindowBorderStyle) + fullName: OpenTK.Platform.IWindowComponent.SetBorderStyle(OpenTK.Platform.WindowHandle, OpenTK.Platform.WindowBorderStyle) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.SetBorderStyle(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.WindowBorderStyle) + - uid: OpenTK.Platform.IWindowComponent.SetBorderStyle(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowBorderStyle) name: SetBorderStyle - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetBorderStyle_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_WindowBorderStyle_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetBorderStyle_OpenTK_Platform_WindowHandle_OpenTK_Platform_WindowBorderStyle_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - - uid: OpenTK.Core.Platform.WindowBorderStyle + - uid: OpenTK.Platform.WindowBorderStyle name: WindowBorderStyle - href: OpenTK.Core.Platform.WindowBorderStyle.html + href: OpenTK.Platform.WindowBorderStyle.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.SetBorderStyle(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.WindowBorderStyle) + - uid: OpenTK.Platform.IWindowComponent.SetBorderStyle(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowBorderStyle) name: SetBorderStyle - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetBorderStyle_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_WindowBorderStyle_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetBorderStyle_OpenTK_Platform_WindowHandle_OpenTK_Platform_WindowBorderStyle_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - - uid: OpenTK.Core.Platform.WindowBorderStyle + - uid: OpenTK.Platform.WindowBorderStyle name: WindowBorderStyle - href: OpenTK.Core.Platform.WindowBorderStyle.html + href: OpenTK.Platform.WindowBorderStyle.html - name: ) - uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetAlwaysOnTop* commentId: Overload:OpenTK.Platform.Native.SDL.SDLWindowComponent.SetAlwaysOnTop - href: OpenTK.Platform.Native.SDL.SDLWindowComponent.html#OpenTK_Platform_Native_SDL_SDLWindowComponent_SetAlwaysOnTop_OpenTK_Core_Platform_WindowHandle_System_Boolean_ + href: OpenTK.Platform.Native.SDL.SDLWindowComponent.html#OpenTK_Platform_Native_SDL_SDLWindowComponent_SetAlwaysOnTop_OpenTK_Platform_WindowHandle_System_Boolean_ name: SetAlwaysOnTop nameWithType: SDLWindowComponent.SetAlwaysOnTop fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetAlwaysOnTop -- uid: OpenTK.Core.Platform.IWindowComponent.SetAlwaysOnTop(OpenTK.Core.Platform.WindowHandle,System.Boolean) - commentId: M:OpenTK.Core.Platform.IWindowComponent.SetAlwaysOnTop(OpenTK.Core.Platform.WindowHandle,System.Boolean) - parent: OpenTK.Core.Platform.IWindowComponent +- uid: OpenTK.Platform.IWindowComponent.SetAlwaysOnTop(OpenTK.Platform.WindowHandle,System.Boolean) + commentId: M:OpenTK.Platform.IWindowComponent.SetAlwaysOnTop(OpenTK.Platform.WindowHandle,System.Boolean) + parent: OpenTK.Platform.IWindowComponent isExternal: true - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetAlwaysOnTop_OpenTK_Core_Platform_WindowHandle_System_Boolean_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetAlwaysOnTop_OpenTK_Platform_WindowHandle_System_Boolean_ name: SetAlwaysOnTop(WindowHandle, bool) nameWithType: IWindowComponent.SetAlwaysOnTop(WindowHandle, bool) - fullName: OpenTK.Core.Platform.IWindowComponent.SetAlwaysOnTop(OpenTK.Core.Platform.WindowHandle, bool) + fullName: OpenTK.Platform.IWindowComponent.SetAlwaysOnTop(OpenTK.Platform.WindowHandle, bool) nameWithType.vb: IWindowComponent.SetAlwaysOnTop(WindowHandle, Boolean) - fullName.vb: OpenTK.Core.Platform.IWindowComponent.SetAlwaysOnTop(OpenTK.Core.Platform.WindowHandle, Boolean) + fullName.vb: OpenTK.Platform.IWindowComponent.SetAlwaysOnTop(OpenTK.Platform.WindowHandle, Boolean) name.vb: SetAlwaysOnTop(WindowHandle, Boolean) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.SetAlwaysOnTop(OpenTK.Core.Platform.WindowHandle,System.Boolean) + - uid: OpenTK.Platform.IWindowComponent.SetAlwaysOnTop(OpenTK.Platform.WindowHandle,System.Boolean) name: SetAlwaysOnTop - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetAlwaysOnTop_OpenTK_Core_Platform_WindowHandle_System_Boolean_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetAlwaysOnTop_OpenTK_Platform_WindowHandle_System_Boolean_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - uid: System.Boolean @@ -5108,13 +4966,13 @@ references: href: https://learn.microsoft.com/dotnet/api/system.boolean - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.SetAlwaysOnTop(OpenTK.Core.Platform.WindowHandle,System.Boolean) + - uid: OpenTK.Platform.IWindowComponent.SetAlwaysOnTop(OpenTK.Platform.WindowHandle,System.Boolean) name: SetAlwaysOnTop - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetAlwaysOnTop_OpenTK_Core_Platform_WindowHandle_System_Boolean_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetAlwaysOnTop_OpenTK_Platform_WindowHandle_System_Boolean_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - uid: System.Boolean @@ -5124,328 +4982,258 @@ references: - name: ) - uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.IsAlwaysOnTop* commentId: Overload:OpenTK.Platform.Native.SDL.SDLWindowComponent.IsAlwaysOnTop - href: OpenTK.Platform.Native.SDL.SDLWindowComponent.html#OpenTK_Platform_Native_SDL_SDLWindowComponent_IsAlwaysOnTop_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.Native.SDL.SDLWindowComponent.html#OpenTK_Platform_Native_SDL_SDLWindowComponent_IsAlwaysOnTop_OpenTK_Platform_WindowHandle_ name: IsAlwaysOnTop nameWithType: SDLWindowComponent.IsAlwaysOnTop fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.IsAlwaysOnTop -- uid: OpenTK.Core.Platform.IWindowComponent.IsAlwaysOnTop(OpenTK.Core.Platform.WindowHandle) - commentId: M:OpenTK.Core.Platform.IWindowComponent.IsAlwaysOnTop(OpenTK.Core.Platform.WindowHandle) - parent: OpenTK.Core.Platform.IWindowComponent - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_IsAlwaysOnTop_OpenTK_Core_Platform_WindowHandle_ +- uid: OpenTK.Platform.IWindowComponent.IsAlwaysOnTop(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.IsAlwaysOnTop(OpenTK.Platform.WindowHandle) + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_IsAlwaysOnTop_OpenTK_Platform_WindowHandle_ name: IsAlwaysOnTop(WindowHandle) nameWithType: IWindowComponent.IsAlwaysOnTop(WindowHandle) - fullName: OpenTK.Core.Platform.IWindowComponent.IsAlwaysOnTop(OpenTK.Core.Platform.WindowHandle) + fullName: OpenTK.Platform.IWindowComponent.IsAlwaysOnTop(OpenTK.Platform.WindowHandle) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.IsAlwaysOnTop(OpenTK.Core.Platform.WindowHandle) + - uid: OpenTK.Platform.IWindowComponent.IsAlwaysOnTop(OpenTK.Platform.WindowHandle) name: IsAlwaysOnTop - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_IsAlwaysOnTop_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_IsAlwaysOnTop_OpenTK_Platform_WindowHandle_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.IsAlwaysOnTop(OpenTK.Core.Platform.WindowHandle) + - uid: OpenTK.Platform.IWindowComponent.IsAlwaysOnTop(OpenTK.Platform.WindowHandle) name: IsAlwaysOnTop - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_IsAlwaysOnTop_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_IsAlwaysOnTop_OpenTK_Platform_WindowHandle_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ) - uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetHitTestCallback* commentId: Overload:OpenTK.Platform.Native.SDL.SDLWindowComponent.SetHitTestCallback - href: OpenTK.Platform.Native.SDL.SDLWindowComponent.html#OpenTK_Platform_Native_SDL_SDLWindowComponent_SetHitTestCallback_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_HitTest_ + href: OpenTK.Platform.Native.SDL.SDLWindowComponent.html#OpenTK_Platform_Native_SDL_SDLWindowComponent_SetHitTestCallback_OpenTK_Platform_WindowHandle_OpenTK_Platform_HitTest_ name: SetHitTestCallback nameWithType: SDLWindowComponent.SetHitTestCallback fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetHitTestCallback -- uid: OpenTK.Core.Platform.IWindowComponent.SetHitTestCallback(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.HitTest) - commentId: M:OpenTK.Core.Platform.IWindowComponent.SetHitTestCallback(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.HitTest) - parent: OpenTK.Core.Platform.IWindowComponent - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetHitTestCallback_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_HitTest_ +- uid: OpenTK.Platform.IWindowComponent.SetHitTestCallback(OpenTK.Platform.WindowHandle,OpenTK.Platform.HitTest) + commentId: M:OpenTK.Platform.IWindowComponent.SetHitTestCallback(OpenTK.Platform.WindowHandle,OpenTK.Platform.HitTest) + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetHitTestCallback_OpenTK_Platform_WindowHandle_OpenTK_Platform_HitTest_ name: SetHitTestCallback(WindowHandle, HitTest) nameWithType: IWindowComponent.SetHitTestCallback(WindowHandle, HitTest) - fullName: OpenTK.Core.Platform.IWindowComponent.SetHitTestCallback(OpenTK.Core.Platform.WindowHandle, OpenTK.Core.Platform.HitTest) + fullName: OpenTK.Platform.IWindowComponent.SetHitTestCallback(OpenTK.Platform.WindowHandle, OpenTK.Platform.HitTest) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.SetHitTestCallback(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.HitTest) + - uid: OpenTK.Platform.IWindowComponent.SetHitTestCallback(OpenTK.Platform.WindowHandle,OpenTK.Platform.HitTest) name: SetHitTestCallback - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetHitTestCallback_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_HitTest_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetHitTestCallback_OpenTK_Platform_WindowHandle_OpenTK_Platform_HitTest_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - - uid: OpenTK.Core.Platform.HitTest + - uid: OpenTK.Platform.HitTest name: HitTest - href: OpenTK.Core.Platform.HitTest.html + href: OpenTK.Platform.HitTest.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.SetHitTestCallback(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.HitTest) + - uid: OpenTK.Platform.IWindowComponent.SetHitTestCallback(OpenTK.Platform.WindowHandle,OpenTK.Platform.HitTest) name: SetHitTestCallback - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetHitTestCallback_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_HitTest_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetHitTestCallback_OpenTK_Platform_WindowHandle_OpenTK_Platform_HitTest_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - - uid: OpenTK.Core.Platform.HitTest + - uid: OpenTK.Platform.HitTest name: HitTest - href: OpenTK.Core.Platform.HitTest.html + href: OpenTK.Platform.HitTest.html - name: ) -- uid: OpenTK.Core.Platform.HitTest - commentId: T:OpenTK.Core.Platform.HitTest - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.HitTest.html +- uid: OpenTK.Platform.HitTest + commentId: T:OpenTK.Platform.HitTest + parent: OpenTK.Platform + href: OpenTK.Platform.HitTest.html name: HitTest nameWithType: HitTest - fullName: OpenTK.Core.Platform.HitTest + fullName: OpenTK.Platform.HitTest - uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetCursor* commentId: Overload:OpenTK.Platform.Native.SDL.SDLWindowComponent.SetCursor - href: OpenTK.Platform.Native.SDL.SDLWindowComponent.html#OpenTK_Platform_Native_SDL_SDLWindowComponent_SetCursor_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_CursorHandle_ + href: OpenTK.Platform.Native.SDL.SDLWindowComponent.html#OpenTK_Platform_Native_SDL_SDLWindowComponent_SetCursor_OpenTK_Platform_WindowHandle_OpenTK_Platform_CursorHandle_ name: SetCursor nameWithType: SDLWindowComponent.SetCursor fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetCursor -- uid: OpenTK.Core.Platform.IWindowComponent.SetCursor(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.CursorHandle) - commentId: M:OpenTK.Core.Platform.IWindowComponent.SetCursor(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.CursorHandle) - parent: OpenTK.Core.Platform.IWindowComponent - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetCursor_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_CursorHandle_ - name: SetCursor(WindowHandle, CursorHandle) - nameWithType: IWindowComponent.SetCursor(WindowHandle, CursorHandle) - fullName: OpenTK.Core.Platform.IWindowComponent.SetCursor(OpenTK.Core.Platform.WindowHandle, OpenTK.Core.Platform.CursorHandle) - spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.SetCursor(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.CursorHandle) - name: SetCursor - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetCursor_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_CursorHandle_ - - name: ( - - uid: OpenTK.Core.Platform.WindowHandle - name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html - - name: ',' - - name: " " - - uid: OpenTK.Core.Platform.CursorHandle - name: CursorHandle - href: OpenTK.Core.Platform.CursorHandle.html - - name: ) - spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.SetCursor(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.CursorHandle) - name: SetCursor - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetCursor_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_CursorHandle_ - - name: ( - - uid: OpenTK.Core.Platform.WindowHandle - name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html - - name: ',' - - name: " " - - uid: OpenTK.Core.Platform.CursorHandle - name: CursorHandle - href: OpenTK.Core.Platform.CursorHandle.html - - name: ) -- uid: OpenTK.Core.Platform.CursorHandle - commentId: T:OpenTK.Core.Platform.CursorHandle - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.CursorHandle.html +- uid: OpenTK.Platform.CursorHandle + commentId: T:OpenTK.Platform.CursorHandle + parent: OpenTK.Platform + href: OpenTK.Platform.CursorHandle.html name: CursorHandle nameWithType: CursorHandle - fullName: OpenTK.Core.Platform.CursorHandle -- uid: OpenTK.Core.Platform.IWindowComponent.SetCursorCaptureMode(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.CursorCaptureMode) - commentId: M:OpenTK.Core.Platform.IWindowComponent.SetCursorCaptureMode(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.CursorCaptureMode) - parent: OpenTK.Core.Platform.IWindowComponent - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetCursorCaptureMode_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_CursorCaptureMode_ - name: SetCursorCaptureMode(WindowHandle, CursorCaptureMode) - nameWithType: IWindowComponent.SetCursorCaptureMode(WindowHandle, CursorCaptureMode) - fullName: OpenTK.Core.Platform.IWindowComponent.SetCursorCaptureMode(OpenTK.Core.Platform.WindowHandle, OpenTK.Core.Platform.CursorCaptureMode) - spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.SetCursorCaptureMode(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.CursorCaptureMode) - name: SetCursorCaptureMode - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetCursorCaptureMode_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_CursorCaptureMode_ - - name: ( - - uid: OpenTK.Core.Platform.WindowHandle - name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html - - name: ',' - - name: " " - - uid: OpenTK.Core.Platform.CursorCaptureMode - name: CursorCaptureMode - href: OpenTK.Core.Platform.CursorCaptureMode.html - - name: ) - spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.SetCursorCaptureMode(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.CursorCaptureMode) - name: SetCursorCaptureMode - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetCursorCaptureMode_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_CursorCaptureMode_ - - name: ( - - uid: OpenTK.Core.Platform.WindowHandle - name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html - - name: ',' - - name: " " - - uid: OpenTK.Core.Platform.CursorCaptureMode - name: CursorCaptureMode - href: OpenTK.Core.Platform.CursorCaptureMode.html - - name: ) + fullName: OpenTK.Platform.CursorHandle - uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetCursorCaptureMode* commentId: Overload:OpenTK.Platform.Native.SDL.SDLWindowComponent.GetCursorCaptureMode - href: OpenTK.Platform.Native.SDL.SDLWindowComponent.html#OpenTK_Platform_Native_SDL_SDLWindowComponent_GetCursorCaptureMode_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.Native.SDL.SDLWindowComponent.html#OpenTK_Platform_Native_SDL_SDLWindowComponent_GetCursorCaptureMode_OpenTK_Platform_WindowHandle_ name: GetCursorCaptureMode nameWithType: SDLWindowComponent.GetCursorCaptureMode fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetCursorCaptureMode -- uid: OpenTK.Core.Platform.IWindowComponent.GetCursorCaptureMode(OpenTK.Core.Platform.WindowHandle) - commentId: M:OpenTK.Core.Platform.IWindowComponent.GetCursorCaptureMode(OpenTK.Core.Platform.WindowHandle) - parent: OpenTK.Core.Platform.IWindowComponent - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetCursorCaptureMode_OpenTK_Core_Platform_WindowHandle_ +- uid: OpenTK.Platform.IWindowComponent.GetCursorCaptureMode(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.GetCursorCaptureMode(OpenTK.Platform.WindowHandle) + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetCursorCaptureMode_OpenTK_Platform_WindowHandle_ name: GetCursorCaptureMode(WindowHandle) nameWithType: IWindowComponent.GetCursorCaptureMode(WindowHandle) - fullName: OpenTK.Core.Platform.IWindowComponent.GetCursorCaptureMode(OpenTK.Core.Platform.WindowHandle) + fullName: OpenTK.Platform.IWindowComponent.GetCursorCaptureMode(OpenTK.Platform.WindowHandle) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.GetCursorCaptureMode(OpenTK.Core.Platform.WindowHandle) + - uid: OpenTK.Platform.IWindowComponent.GetCursorCaptureMode(OpenTK.Platform.WindowHandle) name: GetCursorCaptureMode - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetCursorCaptureMode_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetCursorCaptureMode_OpenTK_Platform_WindowHandle_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.GetCursorCaptureMode(OpenTK.Core.Platform.WindowHandle) + - uid: OpenTK.Platform.IWindowComponent.GetCursorCaptureMode(OpenTK.Platform.WindowHandle) name: GetCursorCaptureMode - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetCursorCaptureMode_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetCursorCaptureMode_OpenTK_Platform_WindowHandle_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ) -- uid: OpenTK.Core.Platform.CursorCaptureMode - commentId: T:OpenTK.Core.Platform.CursorCaptureMode - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.CursorCaptureMode.html +- uid: OpenTK.Platform.CursorCaptureMode + commentId: T:OpenTK.Platform.CursorCaptureMode + parent: OpenTK.Platform + href: OpenTK.Platform.CursorCaptureMode.html name: CursorCaptureMode nameWithType: CursorCaptureMode - fullName: OpenTK.Core.Platform.CursorCaptureMode + fullName: OpenTK.Platform.CursorCaptureMode - uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetCursorCaptureMode* commentId: Overload:OpenTK.Platform.Native.SDL.SDLWindowComponent.SetCursorCaptureMode - href: OpenTK.Platform.Native.SDL.SDLWindowComponent.html#OpenTK_Platform_Native_SDL_SDLWindowComponent_SetCursorCaptureMode_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_CursorCaptureMode_ + href: OpenTK.Platform.Native.SDL.SDLWindowComponent.html#OpenTK_Platform_Native_SDL_SDLWindowComponent_SetCursorCaptureMode_OpenTK_Platform_WindowHandle_OpenTK_Platform_CursorCaptureMode_ name: SetCursorCaptureMode nameWithType: SDLWindowComponent.SetCursorCaptureMode fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetCursorCaptureMode - uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.IsFocused* commentId: Overload:OpenTK.Platform.Native.SDL.SDLWindowComponent.IsFocused - href: OpenTK.Platform.Native.SDL.SDLWindowComponent.html#OpenTK_Platform_Native_SDL_SDLWindowComponent_IsFocused_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.Native.SDL.SDLWindowComponent.html#OpenTK_Platform_Native_SDL_SDLWindowComponent_IsFocused_OpenTK_Platform_WindowHandle_ name: IsFocused nameWithType: SDLWindowComponent.IsFocused fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.IsFocused -- uid: OpenTK.Core.Platform.IWindowComponent.IsFocused(OpenTK.Core.Platform.WindowHandle) - commentId: M:OpenTK.Core.Platform.IWindowComponent.IsFocused(OpenTK.Core.Platform.WindowHandle) - parent: OpenTK.Core.Platform.IWindowComponent - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_IsFocused_OpenTK_Core_Platform_WindowHandle_ +- uid: OpenTK.Platform.IWindowComponent.IsFocused(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.IsFocused(OpenTK.Platform.WindowHandle) + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_IsFocused_OpenTK_Platform_WindowHandle_ name: IsFocused(WindowHandle) nameWithType: IWindowComponent.IsFocused(WindowHandle) - fullName: OpenTK.Core.Platform.IWindowComponent.IsFocused(OpenTK.Core.Platform.WindowHandle) + fullName: OpenTK.Platform.IWindowComponent.IsFocused(OpenTK.Platform.WindowHandle) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.IsFocused(OpenTK.Core.Platform.WindowHandle) + - uid: OpenTK.Platform.IWindowComponent.IsFocused(OpenTK.Platform.WindowHandle) name: IsFocused - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_IsFocused_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_IsFocused_OpenTK_Platform_WindowHandle_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.IsFocused(OpenTK.Core.Platform.WindowHandle) + - uid: OpenTK.Platform.IWindowComponent.IsFocused(OpenTK.Platform.WindowHandle) name: IsFocused - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_IsFocused_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_IsFocused_OpenTK_Platform_WindowHandle_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ) - uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.FocusWindow* commentId: Overload:OpenTK.Platform.Native.SDL.SDLWindowComponent.FocusWindow - href: OpenTK.Platform.Native.SDL.SDLWindowComponent.html#OpenTK_Platform_Native_SDL_SDLWindowComponent_FocusWindow_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.Native.SDL.SDLWindowComponent.html#OpenTK_Platform_Native_SDL_SDLWindowComponent_FocusWindow_OpenTK_Platform_WindowHandle_ name: FocusWindow nameWithType: SDLWindowComponent.FocusWindow fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.FocusWindow -- uid: OpenTK.Core.Platform.IWindowComponent.FocusWindow(OpenTK.Core.Platform.WindowHandle) - commentId: M:OpenTK.Core.Platform.IWindowComponent.FocusWindow(OpenTK.Core.Platform.WindowHandle) - parent: OpenTK.Core.Platform.IWindowComponent - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_FocusWindow_OpenTK_Core_Platform_WindowHandle_ +- uid: OpenTK.Platform.IWindowComponent.FocusWindow(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.FocusWindow(OpenTK.Platform.WindowHandle) + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_FocusWindow_OpenTK_Platform_WindowHandle_ name: FocusWindow(WindowHandle) nameWithType: IWindowComponent.FocusWindow(WindowHandle) - fullName: OpenTK.Core.Platform.IWindowComponent.FocusWindow(OpenTK.Core.Platform.WindowHandle) + fullName: OpenTK.Platform.IWindowComponent.FocusWindow(OpenTK.Platform.WindowHandle) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.FocusWindow(OpenTK.Core.Platform.WindowHandle) + - uid: OpenTK.Platform.IWindowComponent.FocusWindow(OpenTK.Platform.WindowHandle) name: FocusWindow - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_FocusWindow_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_FocusWindow_OpenTK_Platform_WindowHandle_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.FocusWindow(OpenTK.Core.Platform.WindowHandle) + - uid: OpenTK.Platform.IWindowComponent.FocusWindow(OpenTK.Platform.WindowHandle) name: FocusWindow - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_FocusWindow_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_FocusWindow_OpenTK_Platform_WindowHandle_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ) - uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.RequestAttention* commentId: Overload:OpenTK.Platform.Native.SDL.SDLWindowComponent.RequestAttention - href: OpenTK.Platform.Native.SDL.SDLWindowComponent.html#OpenTK_Platform_Native_SDL_SDLWindowComponent_RequestAttention_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.Native.SDL.SDLWindowComponent.html#OpenTK_Platform_Native_SDL_SDLWindowComponent_RequestAttention_OpenTK_Platform_WindowHandle_ name: RequestAttention nameWithType: SDLWindowComponent.RequestAttention fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.RequestAttention -- uid: OpenTK.Core.Platform.IWindowComponent.RequestAttention(OpenTK.Core.Platform.WindowHandle) - commentId: M:OpenTK.Core.Platform.IWindowComponent.RequestAttention(OpenTK.Core.Platform.WindowHandle) - parent: OpenTK.Core.Platform.IWindowComponent - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_RequestAttention_OpenTK_Core_Platform_WindowHandle_ +- uid: OpenTK.Platform.IWindowComponent.RequestAttention(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.RequestAttention(OpenTK.Platform.WindowHandle) + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_RequestAttention_OpenTK_Platform_WindowHandle_ name: RequestAttention(WindowHandle) nameWithType: IWindowComponent.RequestAttention(WindowHandle) - fullName: OpenTK.Core.Platform.IWindowComponent.RequestAttention(OpenTK.Core.Platform.WindowHandle) + fullName: OpenTK.Platform.IWindowComponent.RequestAttention(OpenTK.Platform.WindowHandle) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.RequestAttention(OpenTK.Core.Platform.WindowHandle) + - uid: OpenTK.Platform.IWindowComponent.RequestAttention(OpenTK.Platform.WindowHandle) name: RequestAttention - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_RequestAttention_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_RequestAttention_OpenTK_Platform_WindowHandle_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.RequestAttention(OpenTK.Core.Platform.WindowHandle) + - uid: OpenTK.Platform.IWindowComponent.RequestAttention(OpenTK.Platform.WindowHandle) name: RequestAttention - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_RequestAttention_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_RequestAttention_OpenTK_Platform_WindowHandle_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ) - uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.ScreenToClient* commentId: Overload:OpenTK.Platform.Native.SDL.SDLWindowComponent.ScreenToClient - href: OpenTK.Platform.Native.SDL.SDLWindowComponent.html#OpenTK_Platform_Native_SDL_SDLWindowComponent_ScreenToClient_OpenTK_Core_Platform_WindowHandle_System_Int32_System_Int32_System_Int32__System_Int32__ + href: OpenTK.Platform.Native.SDL.SDLWindowComponent.html#OpenTK_Platform_Native_SDL_SDLWindowComponent_ScreenToClient_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_System_Int32__System_Int32__ name: ScreenToClient nameWithType: SDLWindowComponent.ScreenToClient fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.ScreenToClient -- uid: OpenTK.Core.Platform.IWindowComponent.ScreenToClient(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) - commentId: M:OpenTK.Core.Platform.IWindowComponent.ScreenToClient(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) - parent: OpenTK.Core.Platform.IWindowComponent +- uid: OpenTK.Platform.IWindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) + commentId: M:OpenTK.Platform.IWindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) + parent: OpenTK.Platform.IWindowComponent isExternal: true - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_ScreenToClient_OpenTK_Core_Platform_WindowHandle_System_Int32_System_Int32_System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_ScreenToClient_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_System_Int32__System_Int32__ name: ScreenToClient(WindowHandle, int, int, out int, out int) nameWithType: IWindowComponent.ScreenToClient(WindowHandle, int, int, out int, out int) - fullName: OpenTK.Core.Platform.IWindowComponent.ScreenToClient(OpenTK.Core.Platform.WindowHandle, int, int, out int, out int) + fullName: OpenTK.Platform.IWindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle, int, int, out int, out int) nameWithType.vb: IWindowComponent.ScreenToClient(WindowHandle, Integer, Integer, Integer, Integer) - fullName.vb: OpenTK.Core.Platform.IWindowComponent.ScreenToClient(OpenTK.Core.Platform.WindowHandle, Integer, Integer, Integer, Integer) + fullName.vb: OpenTK.Platform.IWindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle, Integer, Integer, Integer, Integer) name.vb: ScreenToClient(WindowHandle, Integer, Integer, Integer, Integer) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.ScreenToClient(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) + - uid: OpenTK.Platform.IWindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) name: ScreenToClient - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_ScreenToClient_OpenTK_Core_Platform_WindowHandle_System_Int32_System_Int32_System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_ScreenToClient_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_System_Int32__System_Int32__ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - uid: System.Int32 @@ -5476,13 +5264,13 @@ references: href: https://learn.microsoft.com/dotnet/api/system.int32 - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.ScreenToClient(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) + - uid: OpenTK.Platform.IWindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) name: ScreenToClient - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_ScreenToClient_OpenTK_Core_Platform_WindowHandle_System_Int32_System_Int32_System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_ScreenToClient_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_System_Int32__System_Int32__ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - uid: System.Int32 @@ -5510,29 +5298,29 @@ references: - name: ) - uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.ClientToScreen* commentId: Overload:OpenTK.Platform.Native.SDL.SDLWindowComponent.ClientToScreen - href: OpenTK.Platform.Native.SDL.SDLWindowComponent.html#OpenTK_Platform_Native_SDL_SDLWindowComponent_ClientToScreen_OpenTK_Core_Platform_WindowHandle_System_Int32_System_Int32_System_Int32__System_Int32__ + href: OpenTK.Platform.Native.SDL.SDLWindowComponent.html#OpenTK_Platform_Native_SDL_SDLWindowComponent_ClientToScreen_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_System_Int32__System_Int32__ name: ClientToScreen nameWithType: SDLWindowComponent.ClientToScreen fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.ClientToScreen -- uid: OpenTK.Core.Platform.IWindowComponent.ClientToScreen(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) - commentId: M:OpenTK.Core.Platform.IWindowComponent.ClientToScreen(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) - parent: OpenTK.Core.Platform.IWindowComponent +- uid: OpenTK.Platform.IWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) + commentId: M:OpenTK.Platform.IWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) + parent: OpenTK.Platform.IWindowComponent isExternal: true - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_ClientToScreen_OpenTK_Core_Platform_WindowHandle_System_Int32_System_Int32_System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_ClientToScreen_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_System_Int32__System_Int32__ name: ClientToScreen(WindowHandle, int, int, out int, out int) nameWithType: IWindowComponent.ClientToScreen(WindowHandle, int, int, out int, out int) - fullName: OpenTK.Core.Platform.IWindowComponent.ClientToScreen(OpenTK.Core.Platform.WindowHandle, int, int, out int, out int) + fullName: OpenTK.Platform.IWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle, int, int, out int, out int) nameWithType.vb: IWindowComponent.ClientToScreen(WindowHandle, Integer, Integer, Integer, Integer) - fullName.vb: OpenTK.Core.Platform.IWindowComponent.ClientToScreen(OpenTK.Core.Platform.WindowHandle, Integer, Integer, Integer, Integer) + fullName.vb: OpenTK.Platform.IWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle, Integer, Integer, Integer, Integer) name.vb: ClientToScreen(WindowHandle, Integer, Integer, Integer, Integer) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.ClientToScreen(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) + - uid: OpenTK.Platform.IWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) name: ClientToScreen - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_ClientToScreen_OpenTK_Core_Platform_WindowHandle_System_Int32_System_Int32_System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_ClientToScreen_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_System_Int32__System_Int32__ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - uid: System.Int32 @@ -5563,13 +5351,13 @@ references: href: https://learn.microsoft.com/dotnet/api/system.int32 - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.ClientToScreen(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) + - uid: OpenTK.Platform.IWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) name: ClientToScreen - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_ClientToScreen_OpenTK_Core_Platform_WindowHandle_System_Int32_System_Int32_System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_ClientToScreen_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_System_Int32__System_Int32__ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - uid: System.Int32 @@ -5595,37 +5383,37 @@ references: isExternal: true href: https://learn.microsoft.com/dotnet/api/system.int32 - name: ) -- uid: OpenTK.Core.Platform.WindowScaleChangeEventArgs - commentId: T:OpenTK.Core.Platform.WindowScaleChangeEventArgs - href: OpenTK.Core.Platform.WindowScaleChangeEventArgs.html +- uid: OpenTK.Platform.WindowScaleChangeEventArgs + commentId: T:OpenTK.Platform.WindowScaleChangeEventArgs + href: OpenTK.Platform.WindowScaleChangeEventArgs.html name: WindowScaleChangeEventArgs nameWithType: WindowScaleChangeEventArgs - fullName: OpenTK.Core.Platform.WindowScaleChangeEventArgs + fullName: OpenTK.Platform.WindowScaleChangeEventArgs - uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetScaleFactor* commentId: Overload:OpenTK.Platform.Native.SDL.SDLWindowComponent.GetScaleFactor - href: OpenTK.Platform.Native.SDL.SDLWindowComponent.html#OpenTK_Platform_Native_SDL_SDLWindowComponent_GetScaleFactor_OpenTK_Core_Platform_WindowHandle_System_Single__System_Single__ + href: OpenTK.Platform.Native.SDL.SDLWindowComponent.html#OpenTK_Platform_Native_SDL_SDLWindowComponent_GetScaleFactor_OpenTK_Platform_WindowHandle_System_Single__System_Single__ name: GetScaleFactor nameWithType: SDLWindowComponent.GetScaleFactor fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetScaleFactor -- uid: OpenTK.Core.Platform.IWindowComponent.GetScaleFactor(OpenTK.Core.Platform.WindowHandle,System.Single@,System.Single@) - commentId: M:OpenTK.Core.Platform.IWindowComponent.GetScaleFactor(OpenTK.Core.Platform.WindowHandle,System.Single@,System.Single@) - parent: OpenTK.Core.Platform.IWindowComponent +- uid: OpenTK.Platform.IWindowComponent.GetScaleFactor(OpenTK.Platform.WindowHandle,System.Single@,System.Single@) + commentId: M:OpenTK.Platform.IWindowComponent.GetScaleFactor(OpenTK.Platform.WindowHandle,System.Single@,System.Single@) + parent: OpenTK.Platform.IWindowComponent isExternal: true - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetScaleFactor_OpenTK_Core_Platform_WindowHandle_System_Single__System_Single__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetScaleFactor_OpenTK_Platform_WindowHandle_System_Single__System_Single__ name: GetScaleFactor(WindowHandle, out float, out float) nameWithType: IWindowComponent.GetScaleFactor(WindowHandle, out float, out float) - fullName: OpenTK.Core.Platform.IWindowComponent.GetScaleFactor(OpenTK.Core.Platform.WindowHandle, out float, out float) + fullName: OpenTK.Platform.IWindowComponent.GetScaleFactor(OpenTK.Platform.WindowHandle, out float, out float) nameWithType.vb: IWindowComponent.GetScaleFactor(WindowHandle, Single, Single) - fullName.vb: OpenTK.Core.Platform.IWindowComponent.GetScaleFactor(OpenTK.Core.Platform.WindowHandle, Single, Single) + fullName.vb: OpenTK.Platform.IWindowComponent.GetScaleFactor(OpenTK.Platform.WindowHandle, Single, Single) name.vb: GetScaleFactor(WindowHandle, Single, Single) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.GetScaleFactor(OpenTK.Core.Platform.WindowHandle,System.Single@,System.Single@) + - uid: OpenTK.Platform.IWindowComponent.GetScaleFactor(OpenTK.Platform.WindowHandle,System.Single@,System.Single@) name: GetScaleFactor - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetScaleFactor_OpenTK_Core_Platform_WindowHandle_System_Single__System_Single__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetScaleFactor_OpenTK_Platform_WindowHandle_System_Single__System_Single__ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - name: out @@ -5644,13 +5432,13 @@ references: href: https://learn.microsoft.com/dotnet/api/system.single - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.GetScaleFactor(OpenTK.Core.Platform.WindowHandle,System.Single@,System.Single@) + - uid: OpenTK.Platform.IWindowComponent.GetScaleFactor(OpenTK.Platform.WindowHandle,System.Single@,System.Single@) name: GetScaleFactor - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetScaleFactor_OpenTK_Core_Platform_WindowHandle_System_Single__System_Single__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetScaleFactor_OpenTK_Platform_WindowHandle_System_Single__System_Single__ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - uid: System.Single diff --git a/api/OpenTK.Platform.Native.SDL.yml b/api/OpenTK.Platform.Native.SDL.yml index 18db66bf..91b723a6 100644 --- a/api/OpenTK.Platform.Native.SDL.yml +++ b/api/OpenTK.Platform.Native.SDL.yml @@ -22,7 +22,7 @@ items: fullName: OpenTK.Platform.Native.SDL type: Namespace assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform references: - uid: OpenTK.Platform.Native.SDL.SDLClipboardComponent commentId: T:OpenTK.Platform.Native.SDL.SDLClipboardComponent diff --git a/api/OpenTK.Platform.Native.Toolkit.yml b/api/OpenTK.Platform.Native.Toolkit.yml deleted file mode 100644 index 9f201772..00000000 --- a/api/OpenTK.Platform.Native.Toolkit.yml +++ /dev/null @@ -1,944 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: OpenTK.Platform.Native.Toolkit - commentId: T:OpenTK.Platform.Native.Toolkit - id: Toolkit - parent: OpenTK.Platform.Native - children: - - OpenTK.Platform.Native.Toolkit.Clipboard - - OpenTK.Platform.Native.Toolkit.Cursor - - OpenTK.Platform.Native.Toolkit.Dialog - - OpenTK.Platform.Native.Toolkit.Display - - OpenTK.Platform.Native.Toolkit.Icon - - OpenTK.Platform.Native.Toolkit.Init(OpenTK.Core.Platform.ToolkitOptions) - - OpenTK.Platform.Native.Toolkit.Joystick - - OpenTK.Platform.Native.Toolkit.Keyboard - - OpenTK.Platform.Native.Toolkit.Mouse - - OpenTK.Platform.Native.Toolkit.OpenGL - - OpenTK.Platform.Native.Toolkit.Shell - - OpenTK.Platform.Native.Toolkit.Surface - - OpenTK.Platform.Native.Toolkit.Window - langs: - - csharp - - vb - name: Toolkit - nameWithType: Toolkit - fullName: OpenTK.Platform.Native.Toolkit - type: Class - source: - remote: - path: src/OpenTK.Platform.Native/Toolkit.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Toolkit - path: opentk/src/OpenTK.Platform.Native/Toolkit.cs - startLine: 16 - assemblies: - - OpenTK.Platform.Native - namespace: OpenTK.Platform.Native - summary: >- - Provides static access to all OpenTK platform abstraction interfaces. - - This is the main way to access the OpenTK PAL2 api. - example: [] - syntax: - content: public static class Toolkit - content.vb: Public Module Toolkit - inheritance: - - System.Object - inheritedMembers: - - System.Object.Equals(System.Object) - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetHashCode - - System.Object.GetType - - System.Object.MemberwiseClone - - System.Object.ReferenceEquals(System.Object,System.Object) - - System.Object.ToString -- uid: OpenTK.Platform.Native.Toolkit.Window - commentId: P:OpenTK.Platform.Native.Toolkit.Window - id: Window - parent: OpenTK.Platform.Native.Toolkit - langs: - - csharp - - vb - name: Window - nameWithType: Toolkit.Window - fullName: OpenTK.Platform.Native.Toolkit.Window - type: Property - source: - remote: - path: src/OpenTK.Platform.Native/Toolkit.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Window - path: opentk/src/OpenTK.Platform.Native/Toolkit.cs - startLine: 34 - assemblies: - - OpenTK.Platform.Native - namespace: OpenTK.Platform.Native - summary: Interface for creating, interacting with, and deleting windows. - example: [] - syntax: - content: public static IWindowComponent Window { get; } - parameters: [] - return: - type: OpenTK.Core.Platform.IWindowComponent - content.vb: Public Shared ReadOnly Property Window As IWindowComponent - overload: OpenTK.Platform.Native.Toolkit.Window* -- uid: OpenTK.Platform.Native.Toolkit.Surface - commentId: P:OpenTK.Platform.Native.Toolkit.Surface - id: Surface - parent: OpenTK.Platform.Native.Toolkit - langs: - - csharp - - vb - name: Surface - nameWithType: Toolkit.Surface - fullName: OpenTK.Platform.Native.Toolkit.Surface - type: Property - source: - remote: - path: src/OpenTK.Platform.Native/Toolkit.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Surface - path: opentk/src/OpenTK.Platform.Native/Toolkit.cs - startLine: 39 - assemblies: - - OpenTK.Platform.Native - namespace: OpenTK.Platform.Native - summary: Interface for creating, interacting with, and deleting surfaces. - example: [] - syntax: - content: public static ISurfaceComponent Surface { get; } - parameters: [] - return: - type: OpenTK.Core.Platform.ISurfaceComponent - content.vb: Public Shared ReadOnly Property Surface As ISurfaceComponent - overload: OpenTK.Platform.Native.Toolkit.Surface* -- uid: OpenTK.Platform.Native.Toolkit.OpenGL - commentId: P:OpenTK.Platform.Native.Toolkit.OpenGL - id: OpenGL - parent: OpenTK.Platform.Native.Toolkit - langs: - - csharp - - vb - name: OpenGL - nameWithType: Toolkit.OpenGL - fullName: OpenTK.Platform.Native.Toolkit.OpenGL - type: Property - source: - remote: - path: src/OpenTK.Platform.Native/Toolkit.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: OpenGL - path: opentk/src/OpenTK.Platform.Native/Toolkit.cs - startLine: 44 - assemblies: - - OpenTK.Platform.Native - namespace: OpenTK.Platform.Native - summary: Interface for creating, interacting with, and deleting OpenGL contexts. - example: [] - syntax: - content: public static IOpenGLComponent OpenGL { get; } - parameters: [] - return: - type: OpenTK.Core.Platform.IOpenGLComponent - content.vb: Public Shared ReadOnly Property OpenGL As IOpenGLComponent - overload: OpenTK.Platform.Native.Toolkit.OpenGL* -- uid: OpenTK.Platform.Native.Toolkit.Display - commentId: P:OpenTK.Platform.Native.Toolkit.Display - id: Display - parent: OpenTK.Platform.Native.Toolkit - langs: - - csharp - - vb - name: Display - nameWithType: Toolkit.Display - fullName: OpenTK.Platform.Native.Toolkit.Display - type: Property - source: - remote: - path: src/OpenTK.Platform.Native/Toolkit.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Display - path: opentk/src/OpenTK.Platform.Native/Toolkit.cs - startLine: 49 - assemblies: - - OpenTK.Platform.Native - namespace: OpenTK.Platform.Native - summary: Interface for querying information about displays attached to the system. - example: [] - syntax: - content: public static IDisplayComponent Display { get; } - parameters: [] - return: - type: OpenTK.Core.Platform.IDisplayComponent - content.vb: Public Shared ReadOnly Property Display As IDisplayComponent - overload: OpenTK.Platform.Native.Toolkit.Display* -- uid: OpenTK.Platform.Native.Toolkit.Shell - commentId: P:OpenTK.Platform.Native.Toolkit.Shell - id: Shell - parent: OpenTK.Platform.Native.Toolkit - langs: - - csharp - - vb - name: Shell - nameWithType: Toolkit.Shell - fullName: OpenTK.Platform.Native.Toolkit.Shell - type: Property - source: - remote: - path: src/OpenTK.Platform.Native/Toolkit.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Shell - path: opentk/src/OpenTK.Platform.Native/Toolkit.cs - startLine: 54 - assemblies: - - OpenTK.Platform.Native - namespace: OpenTK.Platform.Native - summary: Interface for shell functions such as battery information, preferred theme, etc. - example: [] - syntax: - content: public static IShellComponent Shell { get; } - parameters: [] - return: - type: OpenTK.Core.Platform.IShellComponent - content.vb: Public Shared ReadOnly Property Shell As IShellComponent - overload: OpenTK.Platform.Native.Toolkit.Shell* -- uid: OpenTK.Platform.Native.Toolkit.Mouse - commentId: P:OpenTK.Platform.Native.Toolkit.Mouse - id: Mouse - parent: OpenTK.Platform.Native.Toolkit - langs: - - csharp - - vb - name: Mouse - nameWithType: Toolkit.Mouse - fullName: OpenTK.Platform.Native.Toolkit.Mouse - type: Property - source: - remote: - path: src/OpenTK.Platform.Native/Toolkit.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Mouse - path: opentk/src/OpenTK.Platform.Native/Toolkit.cs - startLine: 59 - assemblies: - - OpenTK.Platform.Native - namespace: OpenTK.Platform.Native - summary: Interface for getting and setting the mouse position, and getting mouse button information. - example: [] - syntax: - content: public static IMouseComponent Mouse { get; } - parameters: [] - return: - type: OpenTK.Core.Platform.IMouseComponent - content.vb: Public Shared ReadOnly Property Mouse As IMouseComponent - overload: OpenTK.Platform.Native.Toolkit.Mouse* -- uid: OpenTK.Platform.Native.Toolkit.Keyboard - commentId: P:OpenTK.Platform.Native.Toolkit.Keyboard - id: Keyboard - parent: OpenTK.Platform.Native.Toolkit - langs: - - csharp - - vb - name: Keyboard - nameWithType: Toolkit.Keyboard - fullName: OpenTK.Platform.Native.Toolkit.Keyboard - type: Property - source: - remote: - path: src/OpenTK.Platform.Native/Toolkit.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Keyboard - path: opentk/src/OpenTK.Platform.Native/Toolkit.cs - startLine: 64 - assemblies: - - OpenTK.Platform.Native - namespace: OpenTK.Platform.Native - summary: Interface for dealing with keyboard layouts, conversions between and , and IME. - example: [] - syntax: - content: public static IKeyboardComponent Keyboard { get; } - parameters: [] - return: - type: OpenTK.Core.Platform.IKeyboardComponent - content.vb: Public Shared ReadOnly Property Keyboard As IKeyboardComponent - overload: OpenTK.Platform.Native.Toolkit.Keyboard* -- uid: OpenTK.Platform.Native.Toolkit.Cursor - commentId: P:OpenTK.Platform.Native.Toolkit.Cursor - id: Cursor - parent: OpenTK.Platform.Native.Toolkit - langs: - - csharp - - vb - name: Cursor - nameWithType: Toolkit.Cursor - fullName: OpenTK.Platform.Native.Toolkit.Cursor - type: Property - source: - remote: - path: src/OpenTK.Platform.Native/Toolkit.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Cursor - path: opentk/src/OpenTK.Platform.Native/Toolkit.cs - startLine: 69 - assemblies: - - OpenTK.Platform.Native - namespace: OpenTK.Platform.Native - summary: Interface for creating, interacting with, and deleting mouse cursor images. - example: [] - syntax: - content: public static ICursorComponent Cursor { get; } - parameters: [] - return: - type: OpenTK.Core.Platform.ICursorComponent - content.vb: Public Shared ReadOnly Property Cursor As ICursorComponent - overload: OpenTK.Platform.Native.Toolkit.Cursor* -- uid: OpenTK.Platform.Native.Toolkit.Icon - commentId: P:OpenTK.Platform.Native.Toolkit.Icon - id: Icon - parent: OpenTK.Platform.Native.Toolkit - langs: - - csharp - - vb - name: Icon - nameWithType: Toolkit.Icon - fullName: OpenTK.Platform.Native.Toolkit.Icon - type: Property - source: - remote: - path: src/OpenTK.Platform.Native/Toolkit.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Icon - path: opentk/src/OpenTK.Platform.Native/Toolkit.cs - startLine: 74 - assemblies: - - OpenTK.Platform.Native - namespace: OpenTK.Platform.Native - summary: Interface for creating, interacting with, and deleting window icon images. - example: [] - syntax: - content: public static IIconComponent Icon { get; } - parameters: [] - return: - type: OpenTK.Core.Platform.IIconComponent - content.vb: Public Shared ReadOnly Property Icon As IIconComponent - overload: OpenTK.Platform.Native.Toolkit.Icon* -- uid: OpenTK.Platform.Native.Toolkit.Clipboard - commentId: P:OpenTK.Platform.Native.Toolkit.Clipboard - id: Clipboard - parent: OpenTK.Platform.Native.Toolkit - langs: - - csharp - - vb - name: Clipboard - nameWithType: Toolkit.Clipboard - fullName: OpenTK.Platform.Native.Toolkit.Clipboard - type: Property - source: - remote: - path: src/OpenTK.Platform.Native/Toolkit.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Clipboard - path: opentk/src/OpenTK.Platform.Native/Toolkit.cs - startLine: 79 - assemblies: - - OpenTK.Platform.Native - namespace: OpenTK.Platform.Native - summary: Interface for getting and setting clipboard data. - example: [] - syntax: - content: public static IClipboardComponent Clipboard { get; } - parameters: [] - return: - type: OpenTK.Core.Platform.IClipboardComponent - content.vb: Public Shared ReadOnly Property Clipboard As IClipboardComponent - overload: OpenTK.Platform.Native.Toolkit.Clipboard* -- uid: OpenTK.Platform.Native.Toolkit.Joystick - commentId: P:OpenTK.Platform.Native.Toolkit.Joystick - id: Joystick - parent: OpenTK.Platform.Native.Toolkit - langs: - - csharp - - vb - name: Joystick - nameWithType: Toolkit.Joystick - fullName: OpenTK.Platform.Native.Toolkit.Joystick - type: Property - source: - remote: - path: src/OpenTK.Platform.Native/Toolkit.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Joystick - path: opentk/src/OpenTK.Platform.Native/Toolkit.cs - startLine: 84 - assemblies: - - OpenTK.Platform.Native - namespace: OpenTK.Platform.Native - summary: Interface for getting joystick input. - example: [] - syntax: - content: public static IJoystickComponent Joystick { get; } - parameters: [] - return: - type: OpenTK.Core.Platform.IJoystickComponent - content.vb: Public Shared ReadOnly Property Joystick As IJoystickComponent - overload: OpenTK.Platform.Native.Toolkit.Joystick* -- uid: OpenTK.Platform.Native.Toolkit.Dialog - commentId: P:OpenTK.Platform.Native.Toolkit.Dialog - id: Dialog - parent: OpenTK.Platform.Native.Toolkit - langs: - - csharp - - vb - name: Dialog - nameWithType: Toolkit.Dialog - fullName: OpenTK.Platform.Native.Toolkit.Dialog - type: Property - source: - remote: - path: src/OpenTK.Platform.Native/Toolkit.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Dialog - path: opentk/src/OpenTK.Platform.Native/Toolkit.cs - startLine: 89 - assemblies: - - OpenTK.Platform.Native - namespace: OpenTK.Platform.Native - summary: Interface for opening system dialogs such as file open dialogs. - example: [] - syntax: - content: public static IDialogComponent Dialog { get; } - parameters: [] - return: - type: OpenTK.Core.Platform.IDialogComponent - content.vb: Public Shared ReadOnly Property Dialog As IDialogComponent - overload: OpenTK.Platform.Native.Toolkit.Dialog* -- uid: OpenTK.Platform.Native.Toolkit.Init(OpenTK.Core.Platform.ToolkitOptions) - commentId: M:OpenTK.Platform.Native.Toolkit.Init(OpenTK.Core.Platform.ToolkitOptions) - id: Init(OpenTK.Core.Platform.ToolkitOptions) - parent: OpenTK.Platform.Native.Toolkit - langs: - - csharp - - vb - name: Init(ToolkitOptions) - nameWithType: Toolkit.Init(ToolkitOptions) - fullName: OpenTK.Platform.Native.Toolkit.Init(OpenTK.Core.Platform.ToolkitOptions) - type: Method - source: - remote: - path: src/OpenTK.Platform.Native/Toolkit.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Init - path: opentk/src/OpenTK.Platform.Native/Toolkit.cs - startLine: 96 - assemblies: - - OpenTK.Platform.Native - namespace: OpenTK.Platform.Native - summary: >- - Initialize OpenTK with the given settings. - - This function must be called before trying to use the OpenTK api. - example: [] - syntax: - content: public static void Init(ToolkitOptions options) - parameters: - - id: options - type: OpenTK.Core.Platform.ToolkitOptions - description: The options to initialize with. - content.vb: Public Shared Sub Init(options As ToolkitOptions) - overload: OpenTK.Platform.Native.Toolkit.Init* -references: -- uid: OpenTK.Platform.Native - commentId: N:OpenTK.Platform.Native - href: OpenTK.html - name: OpenTK.Platform.Native - nameWithType: OpenTK.Platform.Native - fullName: OpenTK.Platform.Native - spec.csharp: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Platform - name: Platform - href: OpenTK.Platform.html - - name: . - - uid: OpenTK.Platform.Native - name: Native - href: OpenTK.Platform.Native.html - spec.vb: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Platform - name: Platform - href: OpenTK.Platform.html - - name: . - - uid: OpenTK.Platform.Native - name: Native - href: OpenTK.Platform.Native.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: System.Object.Equals(System.Object) - commentId: M:System.Object.Equals(System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - name: Equals(object) - nameWithType: object.Equals(object) - fullName: object.Equals(object) - nameWithType.vb: Object.Equals(Object) - fullName.vb: Object.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetHashCode - commentId: M:System.Object.GetHashCode - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - name: GetHashCode() - nameWithType: object.GetHashCode() - fullName: object.GetHashCode() - nameWithType.vb: Object.GetHashCode() - fullName.vb: Object.GetHashCode() - spec.csharp: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.MemberwiseClone - commentId: M:System.Object.MemberwiseClone - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - name: MemberwiseClone() - nameWithType: object.MemberwiseClone() - fullName: object.MemberwiseClone() - nameWithType.vb: Object.MemberwiseClone() - fullName.vb: Object.MemberwiseClone() - spec.csharp: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) - spec.vb: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.ToString - commentId: M:System.Object.ToString - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - name: ToString() - nameWithType: object.ToString() - fullName: object.ToString() - nameWithType.vb: Object.ToString() - fullName.vb: Object.ToString() - spec.csharp: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) - spec.vb: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: OpenTK.Platform.Native.Toolkit.Window* - commentId: Overload:OpenTK.Platform.Native.Toolkit.Window - href: OpenTK.Platform.Native.Toolkit.html#OpenTK_Platform_Native_Toolkit_Window - name: Window - nameWithType: Toolkit.Window - fullName: OpenTK.Platform.Native.Toolkit.Window -- uid: OpenTK.Core.Platform.IWindowComponent - commentId: T:OpenTK.Core.Platform.IWindowComponent - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.IWindowComponent.html - name: IWindowComponent - nameWithType: IWindowComponent - fullName: OpenTK.Core.Platform.IWindowComponent -- uid: OpenTK.Core.Platform - commentId: N:OpenTK.Core.Platform - href: OpenTK.html - name: OpenTK.Core.Platform - nameWithType: OpenTK.Core.Platform - fullName: OpenTK.Core.Platform - spec.csharp: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform - name: Platform - href: OpenTK.Core.Platform.html - spec.vb: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform - name: Platform - href: OpenTK.Core.Platform.html -- uid: OpenTK.Platform.Native.Toolkit.Surface* - commentId: Overload:OpenTK.Platform.Native.Toolkit.Surface - href: OpenTK.Platform.Native.Toolkit.html#OpenTK_Platform_Native_Toolkit_Surface - name: Surface - nameWithType: Toolkit.Surface - fullName: OpenTK.Platform.Native.Toolkit.Surface -- uid: OpenTK.Core.Platform.ISurfaceComponent - commentId: T:OpenTK.Core.Platform.ISurfaceComponent - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.ISurfaceComponent.html - name: ISurfaceComponent - nameWithType: ISurfaceComponent - fullName: OpenTK.Core.Platform.ISurfaceComponent -- uid: OpenTK.Platform.Native.Toolkit.OpenGL* - commentId: Overload:OpenTK.Platform.Native.Toolkit.OpenGL - href: OpenTK.Platform.Native.Toolkit.html#OpenTK_Platform_Native_Toolkit_OpenGL - name: OpenGL - nameWithType: Toolkit.OpenGL - fullName: OpenTK.Platform.Native.Toolkit.OpenGL -- uid: OpenTK.Core.Platform.IOpenGLComponent - commentId: T:OpenTK.Core.Platform.IOpenGLComponent - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.IOpenGLComponent.html - name: IOpenGLComponent - nameWithType: IOpenGLComponent - fullName: OpenTK.Core.Platform.IOpenGLComponent -- uid: OpenTK.Platform.Native.Toolkit.Display* - commentId: Overload:OpenTK.Platform.Native.Toolkit.Display - href: OpenTK.Platform.Native.Toolkit.html#OpenTK_Platform_Native_Toolkit_Display - name: Display - nameWithType: Toolkit.Display - fullName: OpenTK.Platform.Native.Toolkit.Display -- uid: OpenTK.Core.Platform.IDisplayComponent - commentId: T:OpenTK.Core.Platform.IDisplayComponent - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.IDisplayComponent.html - name: IDisplayComponent - nameWithType: IDisplayComponent - fullName: OpenTK.Core.Platform.IDisplayComponent -- uid: OpenTK.Platform.Native.Toolkit.Shell* - commentId: Overload:OpenTK.Platform.Native.Toolkit.Shell - href: OpenTK.Platform.Native.Toolkit.html#OpenTK_Platform_Native_Toolkit_Shell - name: Shell - nameWithType: Toolkit.Shell - fullName: OpenTK.Platform.Native.Toolkit.Shell -- uid: OpenTK.Core.Platform.IShellComponent - commentId: T:OpenTK.Core.Platform.IShellComponent - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.IShellComponent.html - name: IShellComponent - nameWithType: IShellComponent - fullName: OpenTK.Core.Platform.IShellComponent -- uid: OpenTK.Platform.Native.Toolkit.Mouse* - commentId: Overload:OpenTK.Platform.Native.Toolkit.Mouse - href: OpenTK.Platform.Native.Toolkit.html#OpenTK_Platform_Native_Toolkit_Mouse - name: Mouse - nameWithType: Toolkit.Mouse - fullName: OpenTK.Platform.Native.Toolkit.Mouse -- uid: OpenTK.Core.Platform.IMouseComponent - commentId: T:OpenTK.Core.Platform.IMouseComponent - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.IMouseComponent.html - name: IMouseComponent - nameWithType: IMouseComponent - fullName: OpenTK.Core.Platform.IMouseComponent -- uid: OpenTK.Core.Platform.Key - commentId: T:OpenTK.Core.Platform.Key - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.Key.html - name: Key - nameWithType: Key - fullName: OpenTK.Core.Platform.Key -- uid: OpenTK.Core.Platform.Scancode - commentId: T:OpenTK.Core.Platform.Scancode - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.Scancode.html - name: Scancode - nameWithType: Scancode - fullName: OpenTK.Core.Platform.Scancode -- uid: OpenTK.Platform.Native.Toolkit.Keyboard* - commentId: Overload:OpenTK.Platform.Native.Toolkit.Keyboard - href: OpenTK.Platform.Native.Toolkit.html#OpenTK_Platform_Native_Toolkit_Keyboard - name: Keyboard - nameWithType: Toolkit.Keyboard - fullName: OpenTK.Platform.Native.Toolkit.Keyboard -- uid: OpenTK.Core.Platform.IKeyboardComponent - commentId: T:OpenTK.Core.Platform.IKeyboardComponent - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.IKeyboardComponent.html - name: IKeyboardComponent - nameWithType: IKeyboardComponent - fullName: OpenTK.Core.Platform.IKeyboardComponent -- uid: OpenTK.Platform.Native.Toolkit.Cursor* - commentId: Overload:OpenTK.Platform.Native.Toolkit.Cursor - href: OpenTK.Platform.Native.Toolkit.html#OpenTK_Platform_Native_Toolkit_Cursor - name: Cursor - nameWithType: Toolkit.Cursor - fullName: OpenTK.Platform.Native.Toolkit.Cursor -- uid: OpenTK.Core.Platform.ICursorComponent - commentId: T:OpenTK.Core.Platform.ICursorComponent - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.ICursorComponent.html - name: ICursorComponent - nameWithType: ICursorComponent - fullName: OpenTK.Core.Platform.ICursorComponent -- uid: OpenTK.Platform.Native.Toolkit.Icon* - commentId: Overload:OpenTK.Platform.Native.Toolkit.Icon - href: OpenTK.Platform.Native.Toolkit.html#OpenTK_Platform_Native_Toolkit_Icon - name: Icon - nameWithType: Toolkit.Icon - fullName: OpenTK.Platform.Native.Toolkit.Icon -- uid: OpenTK.Core.Platform.IIconComponent - commentId: T:OpenTK.Core.Platform.IIconComponent - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.IIconComponent.html - name: IIconComponent - nameWithType: IIconComponent - fullName: OpenTK.Core.Platform.IIconComponent -- uid: OpenTK.Platform.Native.Toolkit.Clipboard* - commentId: Overload:OpenTK.Platform.Native.Toolkit.Clipboard - href: OpenTK.Platform.Native.Toolkit.html#OpenTK_Platform_Native_Toolkit_Clipboard - name: Clipboard - nameWithType: Toolkit.Clipboard - fullName: OpenTK.Platform.Native.Toolkit.Clipboard -- uid: OpenTK.Core.Platform.IClipboardComponent - commentId: T:OpenTK.Core.Platform.IClipboardComponent - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.IClipboardComponent.html - name: IClipboardComponent - nameWithType: IClipboardComponent - fullName: OpenTK.Core.Platform.IClipboardComponent -- uid: OpenTK.Platform.Native.Toolkit.Joystick* - commentId: Overload:OpenTK.Platform.Native.Toolkit.Joystick - href: OpenTK.Platform.Native.Toolkit.html#OpenTK_Platform_Native_Toolkit_Joystick - name: Joystick - nameWithType: Toolkit.Joystick - fullName: OpenTK.Platform.Native.Toolkit.Joystick -- uid: OpenTK.Core.Platform.IJoystickComponent - commentId: T:OpenTK.Core.Platform.IJoystickComponent - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.IJoystickComponent.html - name: IJoystickComponent - nameWithType: IJoystickComponent - fullName: OpenTK.Core.Platform.IJoystickComponent -- uid: OpenTK.Platform.Native.Toolkit.Dialog* - commentId: Overload:OpenTK.Platform.Native.Toolkit.Dialog - href: OpenTK.Platform.Native.Toolkit.html#OpenTK_Platform_Native_Toolkit_Dialog - name: Dialog - nameWithType: Toolkit.Dialog - fullName: OpenTK.Platform.Native.Toolkit.Dialog -- uid: OpenTK.Core.Platform.IDialogComponent - commentId: T:OpenTK.Core.Platform.IDialogComponent - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.IDialogComponent.html - name: IDialogComponent - nameWithType: IDialogComponent - fullName: OpenTK.Core.Platform.IDialogComponent -- uid: OpenTK.Platform.Native.Toolkit.Init* - commentId: Overload:OpenTK.Platform.Native.Toolkit.Init - href: OpenTK.Platform.Native.Toolkit.html#OpenTK_Platform_Native_Toolkit_Init_OpenTK_Core_Platform_ToolkitOptions_ - name: Init - nameWithType: Toolkit.Init - fullName: OpenTK.Platform.Native.Toolkit.Init -- uid: OpenTK.Core.Platform.ToolkitOptions - commentId: T:OpenTK.Core.Platform.ToolkitOptions - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.ToolkitOptions.html - name: ToolkitOptions - nameWithType: ToolkitOptions - fullName: OpenTK.Core.Platform.ToolkitOptions diff --git a/api/OpenTK.Platform.Native.ToolkitOptions.yml b/api/OpenTK.Platform.Native.ToolkitOptions.yml deleted file mode 100644 index 561ef116..00000000 --- a/api/OpenTK.Platform.Native.ToolkitOptions.yml +++ /dev/null @@ -1,401 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: OpenTK.Platform.Native.ToolkitOptions - commentId: T:OpenTK.Platform.Native.ToolkitOptions - id: ToolkitOptions - parent: OpenTK.Platform.Native - children: - - OpenTK.Platform.Native.ToolkitOptions.ApplicationName - - OpenTK.Platform.Native.ToolkitOptions.Logger - langs: - - csharp - - vb - name: ToolkitOptions - nameWithType: ToolkitOptions - fullName: OpenTK.Platform.Native.ToolkitOptions - type: Class - source: - remote: - path: src/OpenTK.Platform.Native/Toolkit.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: ToolkitOptions - path: opentk/src/OpenTK.Platform.Native/Toolkit.cs - startLine: 11 - assemblies: - - OpenTK.Platform.Native - namespace: OpenTK.Platform.Native - syntax: - content: public sealed class ToolkitOptions - content.vb: Public NotInheritable Class ToolkitOptions - inheritance: - - System.Object - inheritedMembers: - - System.Object.Equals(System.Object) - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetHashCode - - System.Object.GetType - - System.Object.ReferenceEquals(System.Object,System.Object) - - System.Object.ToString -- uid: OpenTK.Platform.Native.ToolkitOptions.ApplicationName - commentId: P:OpenTK.Platform.Native.ToolkitOptions.ApplicationName - id: ApplicationName - parent: OpenTK.Platform.Native.ToolkitOptions - langs: - - csharp - - vb - name: ApplicationName - nameWithType: ToolkitOptions.ApplicationName - fullName: OpenTK.Platform.Native.ToolkitOptions.ApplicationName - type: Property - source: - remote: - path: src/OpenTK.Platform.Native/Toolkit.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: ApplicationName - path: opentk/src/OpenTK.Platform.Native/Toolkit.cs - startLine: 13 - assemblies: - - OpenTK.Platform.Native - namespace: OpenTK.Platform.Native - syntax: - content: public string ApplicationName { get; set; } - parameters: [] - return: - type: System.String - content.vb: Public Property ApplicationName As String - overload: OpenTK.Platform.Native.ToolkitOptions.ApplicationName* -- uid: OpenTK.Platform.Native.ToolkitOptions.Logger - commentId: P:OpenTK.Platform.Native.ToolkitOptions.Logger - id: Logger - parent: OpenTK.Platform.Native.ToolkitOptions - langs: - - csharp - - vb - name: Logger - nameWithType: ToolkitOptions.Logger - fullName: OpenTK.Platform.Native.ToolkitOptions.Logger - type: Property - source: - remote: - path: src/OpenTK.Platform.Native/Toolkit.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Logger - path: opentk/src/OpenTK.Platform.Native/Toolkit.cs - startLine: 15 - assemblies: - - OpenTK.Platform.Native - namespace: OpenTK.Platform.Native - syntax: - content: public ILogger? Logger { get; set; } - parameters: [] - return: - type: OpenTK.Core.Utility.ILogger - content.vb: Public Property Logger As ILogger - overload: OpenTK.Platform.Native.ToolkitOptions.Logger* -references: -- uid: OpenTK.Platform.Native - commentId: N:OpenTK.Platform.Native - href: OpenTK.html - name: OpenTK.Platform.Native - nameWithType: OpenTK.Platform.Native - fullName: OpenTK.Platform.Native - spec.csharp: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Platform - name: Platform - href: OpenTK.Platform.html - - name: . - - uid: OpenTK.Platform.Native - name: Native - href: OpenTK.Platform.Native.html - spec.vb: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Platform - name: Platform - href: OpenTK.Platform.html - - name: . - - uid: OpenTK.Platform.Native - name: Native - href: OpenTK.Platform.Native.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: System.Object.Equals(System.Object) - commentId: M:System.Object.Equals(System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - name: Equals(object) - nameWithType: object.Equals(object) - fullName: object.Equals(object) - nameWithType.vb: Object.Equals(Object) - fullName.vb: Object.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetHashCode - commentId: M:System.Object.GetHashCode - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - name: GetHashCode() - nameWithType: object.GetHashCode() - fullName: object.GetHashCode() - nameWithType.vb: Object.GetHashCode() - fullName.vb: Object.GetHashCode() - spec.csharp: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.ToString - commentId: M:System.Object.ToString - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - name: ToString() - nameWithType: object.ToString() - fullName: object.ToString() - nameWithType.vb: Object.ToString() - fullName.vb: Object.ToString() - spec.csharp: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) - spec.vb: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: OpenTK.Platform.Native.ToolkitOptions.ApplicationName* - commentId: Overload:OpenTK.Platform.Native.ToolkitOptions.ApplicationName - href: OpenTK.Platform.Native.ToolkitOptions.html#OpenTK_Platform_Native_ToolkitOptions_ApplicationName - name: ApplicationName - nameWithType: ToolkitOptions.ApplicationName - fullName: OpenTK.Platform.Native.ToolkitOptions.ApplicationName -- uid: System.String - commentId: T:System.String - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - name: string - nameWithType: string - fullName: string - nameWithType.vb: String - fullName.vb: String - name.vb: String -- uid: OpenTK.Platform.Native.ToolkitOptions.Logger* - commentId: Overload:OpenTK.Platform.Native.ToolkitOptions.Logger - href: OpenTK.Platform.Native.ToolkitOptions.html#OpenTK_Platform_Native_ToolkitOptions_Logger - name: Logger - nameWithType: ToolkitOptions.Logger - fullName: OpenTK.Platform.Native.ToolkitOptions.Logger -- uid: OpenTK.Core.Utility.ILogger - commentId: T:OpenTK.Core.Utility.ILogger - parent: OpenTK.Core.Utility - href: OpenTK.Core.Utility.ILogger.html - name: ILogger - nameWithType: ILogger - fullName: OpenTK.Core.Utility.ILogger -- uid: OpenTK.Core.Utility - commentId: N:OpenTK.Core.Utility - href: OpenTK.html - name: OpenTK.Core.Utility - nameWithType: OpenTK.Core.Utility - fullName: OpenTK.Core.Utility - spec.csharp: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Utility - name: Utility - href: OpenTK.Core.Utility.html - spec.vb: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Utility - name: Utility - href: OpenTK.Core.Utility.html diff --git a/api/OpenTK.Platform.Native.Windows.ClipboardComponent.yml b/api/OpenTK.Platform.Native.Windows.ClipboardComponent.yml index e52782b2..cd6d5976 100644 --- a/api/OpenTK.Platform.Native.Windows.ClipboardComponent.yml +++ b/api/OpenTK.Platform.Native.Windows.ClipboardComponent.yml @@ -12,12 +12,12 @@ items: - OpenTK.Platform.Native.Windows.ClipboardComponent.GetClipboardFiles - OpenTK.Platform.Native.Windows.ClipboardComponent.GetClipboardFormat - OpenTK.Platform.Native.Windows.ClipboardComponent.GetClipboardText - - OpenTK.Platform.Native.Windows.ClipboardComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + - OpenTK.Platform.Native.Windows.ClipboardComponent.Initialize(OpenTK.Platform.ToolkitOptions) - OpenTK.Platform.Native.Windows.ClipboardComponent.Logger - OpenTK.Platform.Native.Windows.ClipboardComponent.Name - OpenTK.Platform.Native.Windows.ClipboardComponent.Provides - - OpenTK.Platform.Native.Windows.ClipboardComponent.SetClipboardAudio(OpenTK.Core.Platform.AudioData) - - OpenTK.Platform.Native.Windows.ClipboardComponent.SetClipboardBitmap(OpenTK.Core.Platform.Bitmap) + - OpenTK.Platform.Native.Windows.ClipboardComponent.SetClipboardAudio(OpenTK.Platform.AudioData) + - OpenTK.Platform.Native.Windows.ClipboardComponent.SetClipboardBitmap(OpenTK.Platform.Bitmap) - OpenTK.Platform.Native.Windows.ClipboardComponent.SetClipboardText(System.String) - OpenTK.Platform.Native.Windows.ClipboardComponent.SupportedFormats langs: @@ -28,15 +28,11 @@ items: fullName: OpenTK.Platform.Native.Windows.ClipboardComponent type: Class source: - remote: - path: src/OpenTK.Platform.Native/Windows/ClipboardComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ClipboardComponent - path: opentk/src/OpenTK.Platform.Native/Windows/ClipboardComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\ClipboardComponent.cs startLine: 14 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows syntax: content: 'public class ClipboardComponent : IClipboardComponent, IPalComponent' @@ -44,8 +40,8 @@ items: inheritance: - System.Object implements: - - OpenTK.Core.Platform.IClipboardComponent - - OpenTK.Core.Platform.IPalComponent + - OpenTK.Platform.IClipboardComponent + - OpenTK.Platform.IPalComponent inheritedMembers: - System.Object.Equals(System.Object) - System.Object.Equals(System.Object,System.Object) @@ -66,15 +62,11 @@ items: fullName: OpenTK.Platform.Native.Windows.ClipboardComponent.Name type: Property source: - remote: - path: src/OpenTK.Platform.Native/Windows/ClipboardComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Name - path: opentk/src/OpenTK.Platform.Native/Windows/ClipboardComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\ClipboardComponent.cs startLine: 17 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: Name of the abstraction layer component. example: [] @@ -86,7 +78,7 @@ items: content.vb: Public ReadOnly Property Name As String overload: OpenTK.Platform.Native.Windows.ClipboardComponent.Name* implements: - - OpenTK.Core.Platform.IPalComponent.Name + - OpenTK.Platform.IPalComponent.Name - uid: OpenTK.Platform.Native.Windows.ClipboardComponent.Provides commentId: P:OpenTK.Platform.Native.Windows.ClipboardComponent.Provides id: Provides @@ -99,15 +91,11 @@ items: fullName: OpenTK.Platform.Native.Windows.ClipboardComponent.Provides type: Property source: - remote: - path: src/OpenTK.Platform.Native/Windows/ClipboardComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Provides - path: opentk/src/OpenTK.Platform.Native/Windows/ClipboardComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\ClipboardComponent.cs startLine: 20 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: Specifies which PAL components this object provides. example: [] @@ -115,11 +103,11 @@ items: content: public PalComponents Provides { get; } parameters: [] return: - type: OpenTK.Core.Platform.PalComponents + type: OpenTK.Platform.PalComponents content.vb: Public ReadOnly Property Provides As PalComponents overload: OpenTK.Platform.Native.Windows.ClipboardComponent.Provides* implements: - - OpenTK.Core.Platform.IPalComponent.Provides + - OpenTK.Platform.IPalComponent.Provides - uid: OpenTK.Platform.Native.Windows.ClipboardComponent.Logger commentId: P:OpenTK.Platform.Native.Windows.ClipboardComponent.Logger id: Logger @@ -132,15 +120,11 @@ items: fullName: OpenTK.Platform.Native.Windows.ClipboardComponent.Logger type: Property source: - remote: - path: src/OpenTK.Platform.Native/Windows/ClipboardComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Logger - path: opentk/src/OpenTK.Platform.Native/Windows/ClipboardComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\ClipboardComponent.cs startLine: 23 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: Provides a logger for this component. example: [] @@ -152,7 +136,7 @@ items: content.vb: Public Property Logger As ILogger overload: OpenTK.Platform.Native.Windows.ClipboardComponent.Logger* implements: - - OpenTK.Core.Platform.IPalComponent.Logger + - OpenTK.Platform.IPalComponent.Logger - uid: OpenTK.Platform.Native.Windows.ClipboardComponent.CanIncludeInClipboardHistory commentId: P:OpenTK.Platform.Native.Windows.ClipboardComponent.CanIncludeInClipboardHistory id: CanIncludeInClipboardHistory @@ -165,15 +149,11 @@ items: fullName: OpenTK.Platform.Native.Windows.ClipboardComponent.CanIncludeInClipboardHistory type: Property source: - remote: - path: src/OpenTK.Platform.Native/Windows/ClipboardComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CanIncludeInClipboardHistory - path: opentk/src/OpenTK.Platform.Native/Windows/ClipboardComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\ClipboardComponent.cs startLine: 31 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: >- If this property is not null when setting the clipboard CanIncludeInClipboardHistory will be added to the clipboard format @@ -202,15 +182,11 @@ items: fullName: OpenTK.Platform.Native.Windows.ClipboardComponent.CanUploadToCloudClipboard type: Property source: - remote: - path: src/OpenTK.Platform.Native/Windows/ClipboardComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CanUploadToCloudClipboard - path: opentk/src/OpenTK.Platform.Native/Windows/ClipboardComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\ClipboardComponent.cs startLine: 39 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: >- If this property is not null when setting the clipboard CanUploadToCloudClipboard will be added to the clipboard format @@ -227,27 +203,23 @@ items: type: System.Nullable{System.Boolean} content.vb: Public Property CanUploadToCloudClipboard As Boolean? overload: OpenTK.Platform.Native.Windows.ClipboardComponent.CanUploadToCloudClipboard* -- uid: OpenTK.Platform.Native.Windows.ClipboardComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - commentId: M:OpenTK.Platform.Native.Windows.ClipboardComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - id: Initialize(OpenTK.Core.Platform.ToolkitOptions) +- uid: OpenTK.Platform.Native.Windows.ClipboardComponent.Initialize(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Native.Windows.ClipboardComponent.Initialize(OpenTK.Platform.ToolkitOptions) + id: Initialize(OpenTK.Platform.ToolkitOptions) parent: OpenTK.Platform.Native.Windows.ClipboardComponent langs: - csharp - vb name: Initialize(ToolkitOptions) nameWithType: ClipboardComponent.Initialize(ToolkitOptions) - fullName: OpenTK.Platform.Native.Windows.ClipboardComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + fullName: OpenTK.Platform.Native.Windows.ClipboardComponent.Initialize(OpenTK.Platform.ToolkitOptions) type: Method source: - remote: - path: src/OpenTK.Platform.Native/Windows/ClipboardComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Initialize - path: opentk/src/OpenTK.Platform.Native/Windows/ClipboardComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\ClipboardComponent.cs startLine: 136 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: Initialize the component. example: [] @@ -255,12 +227,12 @@ items: content: public void Initialize(ToolkitOptions options) parameters: - id: options - type: OpenTK.Core.Platform.ToolkitOptions + type: OpenTK.Platform.ToolkitOptions description: The options to initialize the component with. content.vb: Public Sub Initialize(options As ToolkitOptions) overload: OpenTK.Platform.Native.Windows.ClipboardComponent.Initialize* implements: - - OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + - OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) - uid: OpenTK.Platform.Native.Windows.ClipboardComponent.SupportedFormats commentId: P:OpenTK.Platform.Native.Windows.ClipboardComponent.SupportedFormats id: SupportedFormats @@ -273,15 +245,11 @@ items: fullName: OpenTK.Platform.Native.Windows.ClipboardComponent.SupportedFormats type: Property source: - remote: - path: src/OpenTK.Platform.Native/Windows/ClipboardComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SupportedFormats - path: opentk/src/OpenTK.Platform.Native/Windows/ClipboardComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\ClipboardComponent.cs startLine: 147 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: A list of formats that this clipboard component supports. example: [] @@ -289,11 +257,11 @@ items: content: public IReadOnlyList SupportedFormats { get; } parameters: [] return: - type: System.Collections.Generic.IReadOnlyList{OpenTK.Core.Platform.ClipboardFormat} + type: System.Collections.Generic.IReadOnlyList{OpenTK.Platform.ClipboardFormat} content.vb: Public ReadOnly Property SupportedFormats As IReadOnlyList(Of ClipboardFormat) overload: OpenTK.Platform.Native.Windows.ClipboardComponent.SupportedFormats* implements: - - OpenTK.Core.Platform.IClipboardComponent.SupportedFormats + - OpenTK.Platform.IClipboardComponent.SupportedFormats - uid: OpenTK.Platform.Native.Windows.ClipboardComponent.GetClipboardFormat commentId: M:OpenTK.Platform.Native.Windows.ClipboardComponent.GetClipboardFormat id: GetClipboardFormat @@ -306,27 +274,23 @@ items: fullName: OpenTK.Platform.Native.Windows.ClipboardComponent.GetClipboardFormat() type: Method source: - remote: - path: src/OpenTK.Platform.Native/Windows/ClipboardComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetClipboardFormat - path: opentk/src/OpenTK.Platform.Native/Windows/ClipboardComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\ClipboardComponent.cs startLine: 254 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: Gets the format of the data currently in the clipboard. example: [] syntax: content: public ClipboardFormat GetClipboardFormat() return: - type: OpenTK.Core.Platform.ClipboardFormat + type: OpenTK.Platform.ClipboardFormat description: The format of the data currently in the clipboard. content.vb: Public Function GetClipboardFormat() As ClipboardFormat overload: OpenTK.Platform.Native.Windows.ClipboardComponent.GetClipboardFormat* implements: - - OpenTK.Core.Platform.IClipboardComponent.GetClipboardFormat + - OpenTK.Platform.IClipboardComponent.GetClipboardFormat - uid: OpenTK.Platform.Native.Windows.ClipboardComponent.SetClipboardText(System.String) commentId: M:OpenTK.Platform.Native.Windows.ClipboardComponent.SetClipboardText(System.String) id: SetClipboardText(System.String) @@ -339,15 +303,11 @@ items: fullName: OpenTK.Platform.Native.Windows.ClipboardComponent.SetClipboardText(string) type: Method source: - remote: - path: src/OpenTK.Platform.Native/Windows/ClipboardComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetClipboardText - path: opentk/src/OpenTK.Platform.Native/Windows/ClipboardComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\ClipboardComponent.cs startLine: 260 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: Sets the string currently in the clipboard. example: [] @@ -360,68 +320,60 @@ items: content.vb: Public Sub SetClipboardText(text As String) overload: OpenTK.Platform.Native.Windows.ClipboardComponent.SetClipboardText* implements: - - OpenTK.Core.Platform.IClipboardComponent.SetClipboardText(System.String) + - OpenTK.Platform.IClipboardComponent.SetClipboardText(System.String) nameWithType.vb: ClipboardComponent.SetClipboardText(String) fullName.vb: OpenTK.Platform.Native.Windows.ClipboardComponent.SetClipboardText(String) name.vb: SetClipboardText(String) -- uid: OpenTK.Platform.Native.Windows.ClipboardComponent.SetClipboardAudio(OpenTK.Core.Platform.AudioData) - commentId: M:OpenTK.Platform.Native.Windows.ClipboardComponent.SetClipboardAudio(OpenTK.Core.Platform.AudioData) - id: SetClipboardAudio(OpenTK.Core.Platform.AudioData) +- uid: OpenTK.Platform.Native.Windows.ClipboardComponent.SetClipboardAudio(OpenTK.Platform.AudioData) + commentId: M:OpenTK.Platform.Native.Windows.ClipboardComponent.SetClipboardAudio(OpenTK.Platform.AudioData) + id: SetClipboardAudio(OpenTK.Platform.AudioData) parent: OpenTK.Platform.Native.Windows.ClipboardComponent langs: - csharp - vb name: SetClipboardAudio(AudioData) nameWithType: ClipboardComponent.SetClipboardAudio(AudioData) - fullName: OpenTK.Platform.Native.Windows.ClipboardComponent.SetClipboardAudio(OpenTK.Core.Platform.AudioData) + fullName: OpenTK.Platform.Native.Windows.ClipboardComponent.SetClipboardAudio(OpenTK.Platform.AudioData) type: Method source: - remote: - path: src/OpenTK.Platform.Native/Windows/ClipboardComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetClipboardAudio - path: opentk/src/OpenTK.Platform.Native/Windows/ClipboardComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\ClipboardComponent.cs startLine: 352 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows example: [] syntax: content: public void SetClipboardAudio(AudioData data) parameters: - id: data - type: OpenTK.Core.Platform.AudioData + type: OpenTK.Platform.AudioData content.vb: Public Sub SetClipboardAudio(data As AudioData) overload: OpenTK.Platform.Native.Windows.ClipboardComponent.SetClipboardAudio* -- uid: OpenTK.Platform.Native.Windows.ClipboardComponent.SetClipboardBitmap(OpenTK.Core.Platform.Bitmap) - commentId: M:OpenTK.Platform.Native.Windows.ClipboardComponent.SetClipboardBitmap(OpenTK.Core.Platform.Bitmap) - id: SetClipboardBitmap(OpenTK.Core.Platform.Bitmap) +- uid: OpenTK.Platform.Native.Windows.ClipboardComponent.SetClipboardBitmap(OpenTK.Platform.Bitmap) + commentId: M:OpenTK.Platform.Native.Windows.ClipboardComponent.SetClipboardBitmap(OpenTK.Platform.Bitmap) + id: SetClipboardBitmap(OpenTK.Platform.Bitmap) parent: OpenTK.Platform.Native.Windows.ClipboardComponent langs: - csharp - vb name: SetClipboardBitmap(Bitmap) nameWithType: ClipboardComponent.SetClipboardBitmap(Bitmap) - fullName: OpenTK.Platform.Native.Windows.ClipboardComponent.SetClipboardBitmap(OpenTK.Core.Platform.Bitmap) + fullName: OpenTK.Platform.Native.Windows.ClipboardComponent.SetClipboardBitmap(OpenTK.Platform.Bitmap) type: Method source: - remote: - path: src/OpenTK.Platform.Native/Windows/ClipboardComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetClipboardBitmap - path: opentk/src/OpenTK.Platform.Native/Windows/ClipboardComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\ClipboardComponent.cs startLine: 450 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows example: [] syntax: content: public void SetClipboardBitmap(Bitmap bitmap) parameters: - id: bitmap - type: OpenTK.Core.Platform.Bitmap + type: OpenTK.Platform.Bitmap content.vb: Public Sub SetClipboardBitmap(bitmap As Bitmap) overload: OpenTK.Platform.Native.Windows.ClipboardComponent.SetClipboardBitmap* - uid: OpenTK.Platform.Native.Windows.ClipboardComponent.GetClipboardText @@ -436,20 +388,16 @@ items: fullName: OpenTK.Platform.Native.Windows.ClipboardComponent.GetClipboardText() type: Method source: - remote: - path: src/OpenTK.Platform.Native/Windows/ClipboardComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetClipboardText - path: opentk/src/OpenTK.Platform.Native/Windows/ClipboardComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\ClipboardComponent.cs startLine: 548 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: >- Returns the string currently in the clipboard. - This function returns null if the current clipboard data doesn't have the format. + This function returns null if the current clipboard data doesn't have the format. example: [] syntax: content: public string? GetClipboardText() @@ -459,7 +407,7 @@ items: content.vb: Public Function GetClipboardText() As String overload: OpenTK.Platform.Native.Windows.ClipboardComponent.GetClipboardText* implements: - - OpenTK.Core.Platform.IClipboardComponent.GetClipboardText + - OpenTK.Platform.IClipboardComponent.GetClipboardText - uid: OpenTK.Platform.Native.Windows.ClipboardComponent.GetClipboardAudio commentId: M:OpenTK.Platform.Native.Windows.ClipboardComponent.GetClipboardAudio id: GetClipboardAudio @@ -472,30 +420,26 @@ items: fullName: OpenTK.Platform.Native.Windows.ClipboardComponent.GetClipboardAudio() type: Method source: - remote: - path: src/OpenTK.Platform.Native/Windows/ClipboardComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetClipboardAudio - path: opentk/src/OpenTK.Platform.Native/Windows/ClipboardComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\ClipboardComponent.cs startLine: 608 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: >- Gets the audio data currently in the clipboard. - This function returns null if the current clipboard data doesn't have the format. + This function returns null if the current clipboard data doesn't have the format. example: [] syntax: content: public AudioData? GetClipboardAudio() return: - type: OpenTK.Core.Platform.AudioData + type: OpenTK.Platform.AudioData description: The audio data currently in the clipboard. content.vb: Public Function GetClipboardAudio() As AudioData overload: OpenTK.Platform.Native.Windows.ClipboardComponent.GetClipboardAudio* implements: - - OpenTK.Core.Platform.IClipboardComponent.GetClipboardAudio + - OpenTK.Platform.IClipboardComponent.GetClipboardAudio - uid: OpenTK.Platform.Native.Windows.ClipboardComponent.GetClipboardBitmap commentId: M:OpenTK.Platform.Native.Windows.ClipboardComponent.GetClipboardBitmap id: GetClipboardBitmap @@ -508,30 +452,26 @@ items: fullName: OpenTK.Platform.Native.Windows.ClipboardComponent.GetClipboardBitmap() type: Method source: - remote: - path: src/OpenTK.Platform.Native/Windows/ClipboardComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetClipboardBitmap - path: opentk/src/OpenTK.Platform.Native/Windows/ClipboardComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\ClipboardComponent.cs startLine: 690 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: >- Gets the bitmap currently in the clipboard. - This function returns null if the current clipboard data doesn't have the format. + This function returns null if the current clipboard data doesn't have the format. example: [] syntax: content: public Bitmap? GetClipboardBitmap() return: - type: OpenTK.Core.Platform.Bitmap + type: OpenTK.Platform.Bitmap description: The bitmap currently in the clipboard. content.vb: Public Function GetClipboardBitmap() As Bitmap overload: OpenTK.Platform.Native.Windows.ClipboardComponent.GetClipboardBitmap* implements: - - OpenTK.Core.Platform.IClipboardComponent.GetClipboardBitmap + - OpenTK.Platform.IClipboardComponent.GetClipboardBitmap - uid: OpenTK.Platform.Native.Windows.ClipboardComponent.GetClipboardFiles commentId: M:OpenTK.Platform.Native.Windows.ClipboardComponent.GetClipboardFiles id: GetClipboardFiles @@ -544,20 +484,16 @@ items: fullName: OpenTK.Platform.Native.Windows.ClipboardComponent.GetClipboardFiles() type: Method source: - remote: - path: src/OpenTK.Platform.Native/Windows/ClipboardComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetClipboardFiles - path: opentk/src/OpenTK.Platform.Native/Windows/ClipboardComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\ClipboardComponent.cs startLine: 809 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: >- Gets a list of files and directories currently in the clipboard. - This function returns null if the current clipboard data doesn't have the format. + This function returns null if the current clipboard data doesn't have the format. example: [] syntax: content: public List? GetClipboardFiles() @@ -567,7 +503,7 @@ items: content.vb: Public Function GetClipboardFiles() As List(Of String) overload: OpenTK.Platform.Native.Windows.ClipboardComponent.GetClipboardFiles* implements: - - OpenTK.Core.Platform.IClipboardComponent.GetClipboardFiles + - OpenTK.Platform.IClipboardComponent.GetClipboardFiles references: - uid: OpenTK.Platform.Native.Windows commentId: N:OpenTK.Platform.Native.Windows @@ -618,20 +554,20 @@ references: nameWithType.vb: Object fullName.vb: Object name.vb: Object -- uid: OpenTK.Core.Platform.IClipboardComponent - commentId: T:OpenTK.Core.Platform.IClipboardComponent - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.IClipboardComponent.html +- uid: OpenTK.Platform.IClipboardComponent + commentId: T:OpenTK.Platform.IClipboardComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IClipboardComponent.html name: IClipboardComponent nameWithType: IClipboardComponent - fullName: OpenTK.Core.Platform.IClipboardComponent -- uid: OpenTK.Core.Platform.IPalComponent - commentId: T:OpenTK.Core.Platform.IPalComponent - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.IPalComponent.html + fullName: OpenTK.Platform.IClipboardComponent +- uid: OpenTK.Platform.IPalComponent + commentId: T:OpenTK.Platform.IPalComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IPalComponent.html name: IPalComponent nameWithType: IPalComponent - fullName: OpenTK.Core.Platform.IPalComponent + fullName: OpenTK.Platform.IPalComponent - uid: System.Object.Equals(System.Object) commentId: M:System.Object.Equals(System.Object) parent: System.Object @@ -858,49 +794,41 @@ references: name: System nameWithType: System fullName: System -- uid: OpenTK.Core.Platform - commentId: N:OpenTK.Core.Platform +- uid: OpenTK.Platform + commentId: N:OpenTK.Platform href: OpenTK.html - name: OpenTK.Core.Platform - nameWithType: OpenTK.Core.Platform - fullName: OpenTK.Core.Platform + name: OpenTK.Platform + nameWithType: OpenTK.Platform + fullName: OpenTK.Platform spec.csharp: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html spec.vb: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html - uid: OpenTK.Platform.Native.Windows.ClipboardComponent.Name* commentId: Overload:OpenTK.Platform.Native.Windows.ClipboardComponent.Name href: OpenTK.Platform.Native.Windows.ClipboardComponent.html#OpenTK_Platform_Native_Windows_ClipboardComponent_Name name: Name nameWithType: ClipboardComponent.Name fullName: OpenTK.Platform.Native.Windows.ClipboardComponent.Name -- uid: OpenTK.Core.Platform.IPalComponent.Name - commentId: P:OpenTK.Core.Platform.IPalComponent.Name - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Name +- uid: OpenTK.Platform.IPalComponent.Name + commentId: P:OpenTK.Platform.IPalComponent.Name + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Name name: Name nameWithType: IPalComponent.Name - fullName: OpenTK.Core.Platform.IPalComponent.Name + fullName: OpenTK.Platform.IPalComponent.Name - uid: System.String commentId: T:System.String parent: System @@ -918,33 +846,33 @@ references: name: Provides nameWithType: ClipboardComponent.Provides fullName: OpenTK.Platform.Native.Windows.ClipboardComponent.Provides -- uid: OpenTK.Core.Platform.IPalComponent.Provides - commentId: P:OpenTK.Core.Platform.IPalComponent.Provides - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Provides +- uid: OpenTK.Platform.IPalComponent.Provides + commentId: P:OpenTK.Platform.IPalComponent.Provides + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Provides name: Provides nameWithType: IPalComponent.Provides - fullName: OpenTK.Core.Platform.IPalComponent.Provides -- uid: OpenTK.Core.Platform.PalComponents - commentId: T:OpenTK.Core.Platform.PalComponents - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.PalComponents.html + fullName: OpenTK.Platform.IPalComponent.Provides +- uid: OpenTK.Platform.PalComponents + commentId: T:OpenTK.Platform.PalComponents + parent: OpenTK.Platform + href: OpenTK.Platform.PalComponents.html name: PalComponents nameWithType: PalComponents - fullName: OpenTK.Core.Platform.PalComponents + fullName: OpenTK.Platform.PalComponents - uid: OpenTK.Platform.Native.Windows.ClipboardComponent.Logger* commentId: Overload:OpenTK.Platform.Native.Windows.ClipboardComponent.Logger href: OpenTK.Platform.Native.Windows.ClipboardComponent.html#OpenTK_Platform_Native_Windows_ClipboardComponent_Logger name: Logger nameWithType: ClipboardComponent.Logger fullName: OpenTK.Platform.Native.Windows.ClipboardComponent.Logger -- uid: OpenTK.Core.Platform.IPalComponent.Logger - commentId: P:OpenTK.Core.Platform.IPalComponent.Logger - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Logger +- uid: OpenTK.Platform.IPalComponent.Logger + commentId: P:OpenTK.Platform.IPalComponent.Logger + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Logger name: Logger nameWithType: IPalComponent.Logger - fullName: OpenTK.Core.Platform.IPalComponent.Logger + fullName: OpenTK.Platform.IPalComponent.Logger - uid: OpenTK.Core.Utility.ILogger commentId: T:OpenTK.Core.Utility.ILogger parent: OpenTK.Core.Utility @@ -1047,65 +975,65 @@ references: fullName: OpenTK.Platform.Native.Windows.ClipboardComponent.CanUploadToCloudClipboard - uid: OpenTK.Platform.Native.Windows.ClipboardComponent.Initialize* commentId: Overload:OpenTK.Platform.Native.Windows.ClipboardComponent.Initialize - href: OpenTK.Platform.Native.Windows.ClipboardComponent.html#OpenTK_Platform_Native_Windows_ClipboardComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + href: OpenTK.Platform.Native.Windows.ClipboardComponent.html#OpenTK_Platform_Native_Windows_ClipboardComponent_Initialize_OpenTK_Platform_ToolkitOptions_ name: Initialize nameWithType: ClipboardComponent.Initialize fullName: OpenTK.Platform.Native.Windows.ClipboardComponent.Initialize -- uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - commentId: M:OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ +- uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ name: Initialize(ToolkitOptions) nameWithType: IPalComponent.Initialize(ToolkitOptions) - fullName: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + fullName: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) spec.csharp: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + - uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.ToolkitOptions + - uid: OpenTK.Platform.ToolkitOptions name: ToolkitOptions - href: OpenTK.Core.Platform.ToolkitOptions.html + href: OpenTK.Platform.ToolkitOptions.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + - uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.ToolkitOptions + - uid: OpenTK.Platform.ToolkitOptions name: ToolkitOptions - href: OpenTK.Core.Platform.ToolkitOptions.html + href: OpenTK.Platform.ToolkitOptions.html - name: ) -- uid: OpenTK.Core.Platform.ToolkitOptions - commentId: T:OpenTK.Core.Platform.ToolkitOptions - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.ToolkitOptions.html +- uid: OpenTK.Platform.ToolkitOptions + commentId: T:OpenTK.Platform.ToolkitOptions + parent: OpenTK.Platform + href: OpenTK.Platform.ToolkitOptions.html name: ToolkitOptions nameWithType: ToolkitOptions - fullName: OpenTK.Core.Platform.ToolkitOptions + fullName: OpenTK.Platform.ToolkitOptions - uid: OpenTK.Platform.Native.Windows.ClipboardComponent.SupportedFormats* commentId: Overload:OpenTK.Platform.Native.Windows.ClipboardComponent.SupportedFormats href: OpenTK.Platform.Native.Windows.ClipboardComponent.html#OpenTK_Platform_Native_Windows_ClipboardComponent_SupportedFormats name: SupportedFormats nameWithType: ClipboardComponent.SupportedFormats fullName: OpenTK.Platform.Native.Windows.ClipboardComponent.SupportedFormats -- uid: OpenTK.Core.Platform.IClipboardComponent.SupportedFormats - commentId: P:OpenTK.Core.Platform.IClipboardComponent.SupportedFormats - parent: OpenTK.Core.Platform.IClipboardComponent - href: OpenTK.Core.Platform.IClipboardComponent.html#OpenTK_Core_Platform_IClipboardComponent_SupportedFormats +- uid: OpenTK.Platform.IClipboardComponent.SupportedFormats + commentId: P:OpenTK.Platform.IClipboardComponent.SupportedFormats + parent: OpenTK.Platform.IClipboardComponent + href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_SupportedFormats name: SupportedFormats nameWithType: IClipboardComponent.SupportedFormats - fullName: OpenTK.Core.Platform.IClipboardComponent.SupportedFormats -- uid: System.Collections.Generic.IReadOnlyList{OpenTK.Core.Platform.ClipboardFormat} - commentId: T:System.Collections.Generic.IReadOnlyList{OpenTK.Core.Platform.ClipboardFormat} + fullName: OpenTK.Platform.IClipboardComponent.SupportedFormats +- uid: System.Collections.Generic.IReadOnlyList{OpenTK.Platform.ClipboardFormat} + commentId: T:System.Collections.Generic.IReadOnlyList{OpenTK.Platform.ClipboardFormat} parent: System.Collections.Generic definition: System.Collections.Generic.IReadOnlyList`1 href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 name: IReadOnlyList nameWithType: IReadOnlyList - fullName: System.Collections.Generic.IReadOnlyList + fullName: System.Collections.Generic.IReadOnlyList nameWithType.vb: IReadOnlyList(Of ClipboardFormat) - fullName.vb: System.Collections.Generic.IReadOnlyList(Of OpenTK.Core.Platform.ClipboardFormat) + fullName.vb: System.Collections.Generic.IReadOnlyList(Of OpenTK.Platform.ClipboardFormat) name.vb: IReadOnlyList(Of ClipboardFormat) spec.csharp: - uid: System.Collections.Generic.IReadOnlyList`1 @@ -1113,9 +1041,9 @@ references: isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 - name: < - - uid: OpenTK.Core.Platform.ClipboardFormat + - uid: OpenTK.Platform.ClipboardFormat name: ClipboardFormat - href: OpenTK.Core.Platform.ClipboardFormat.html + href: OpenTK.Platform.ClipboardFormat.html - name: '>' spec.vb: - uid: System.Collections.Generic.IReadOnlyList`1 @@ -1125,9 +1053,9 @@ references: - name: ( - name: Of - name: " " - - uid: OpenTK.Core.Platform.ClipboardFormat + - uid: OpenTK.Platform.ClipboardFormat name: ClipboardFormat - href: OpenTK.Core.Platform.ClipboardFormat.html + href: OpenTK.Platform.ClipboardFormat.html - name: ) - uid: System.Collections.Generic.IReadOnlyList`1 commentId: T:System.Collections.Generic.IReadOnlyList`1 @@ -1200,53 +1128,53 @@ references: name: GetClipboardFormat nameWithType: ClipboardComponent.GetClipboardFormat fullName: OpenTK.Platform.Native.Windows.ClipboardComponent.GetClipboardFormat -- uid: OpenTK.Core.Platform.IClipboardComponent.GetClipboardFormat - commentId: M:OpenTK.Core.Platform.IClipboardComponent.GetClipboardFormat - parent: OpenTK.Core.Platform.IClipboardComponent - href: OpenTK.Core.Platform.IClipboardComponent.html#OpenTK_Core_Platform_IClipboardComponent_GetClipboardFormat +- uid: OpenTK.Platform.IClipboardComponent.GetClipboardFormat + commentId: M:OpenTK.Platform.IClipboardComponent.GetClipboardFormat + parent: OpenTK.Platform.IClipboardComponent + href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_GetClipboardFormat name: GetClipboardFormat() nameWithType: IClipboardComponent.GetClipboardFormat() - fullName: OpenTK.Core.Platform.IClipboardComponent.GetClipboardFormat() + fullName: OpenTK.Platform.IClipboardComponent.GetClipboardFormat() spec.csharp: - - uid: OpenTK.Core.Platform.IClipboardComponent.GetClipboardFormat + - uid: OpenTK.Platform.IClipboardComponent.GetClipboardFormat name: GetClipboardFormat - href: OpenTK.Core.Platform.IClipboardComponent.html#OpenTK_Core_Platform_IClipboardComponent_GetClipboardFormat + href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_GetClipboardFormat - name: ( - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IClipboardComponent.GetClipboardFormat + - uid: OpenTK.Platform.IClipboardComponent.GetClipboardFormat name: GetClipboardFormat - href: OpenTK.Core.Platform.IClipboardComponent.html#OpenTK_Core_Platform_IClipboardComponent_GetClipboardFormat + href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_GetClipboardFormat - name: ( - name: ) -- uid: OpenTK.Core.Platform.ClipboardFormat - commentId: T:OpenTK.Core.Platform.ClipboardFormat - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.ClipboardFormat.html +- uid: OpenTK.Platform.ClipboardFormat + commentId: T:OpenTK.Platform.ClipboardFormat + parent: OpenTK.Platform + href: OpenTK.Platform.ClipboardFormat.html name: ClipboardFormat nameWithType: ClipboardFormat - fullName: OpenTK.Core.Platform.ClipboardFormat + fullName: OpenTK.Platform.ClipboardFormat - uid: OpenTK.Platform.Native.Windows.ClipboardComponent.SetClipboardText* commentId: Overload:OpenTK.Platform.Native.Windows.ClipboardComponent.SetClipboardText href: OpenTK.Platform.Native.Windows.ClipboardComponent.html#OpenTK_Platform_Native_Windows_ClipboardComponent_SetClipboardText_System_String_ name: SetClipboardText nameWithType: ClipboardComponent.SetClipboardText fullName: OpenTK.Platform.Native.Windows.ClipboardComponent.SetClipboardText -- uid: OpenTK.Core.Platform.IClipboardComponent.SetClipboardText(System.String) - commentId: M:OpenTK.Core.Platform.IClipboardComponent.SetClipboardText(System.String) - parent: OpenTK.Core.Platform.IClipboardComponent +- uid: OpenTK.Platform.IClipboardComponent.SetClipboardText(System.String) + commentId: M:OpenTK.Platform.IClipboardComponent.SetClipboardText(System.String) + parent: OpenTK.Platform.IClipboardComponent isExternal: true - href: OpenTK.Core.Platform.IClipboardComponent.html#OpenTK_Core_Platform_IClipboardComponent_SetClipboardText_System_String_ + href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_SetClipboardText_System_String_ name: SetClipboardText(string) nameWithType: IClipboardComponent.SetClipboardText(string) - fullName: OpenTK.Core.Platform.IClipboardComponent.SetClipboardText(string) + fullName: OpenTK.Platform.IClipboardComponent.SetClipboardText(string) nameWithType.vb: IClipboardComponent.SetClipboardText(String) - fullName.vb: OpenTK.Core.Platform.IClipboardComponent.SetClipboardText(String) + fullName.vb: OpenTK.Platform.IClipboardComponent.SetClipboardText(String) name.vb: SetClipboardText(String) spec.csharp: - - uid: OpenTK.Core.Platform.IClipboardComponent.SetClipboardText(System.String) + - uid: OpenTK.Platform.IClipboardComponent.SetClipboardText(System.String) name: SetClipboardText - href: OpenTK.Core.Platform.IClipboardComponent.html#OpenTK_Core_Platform_IClipboardComponent_SetClipboardText_System_String_ + href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_SetClipboardText_System_String_ - name: ( - uid: System.String name: string @@ -1254,9 +1182,9 @@ references: href: https://learn.microsoft.com/dotnet/api/system.string - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IClipboardComponent.SetClipboardText(System.String) + - uid: OpenTK.Platform.IClipboardComponent.SetClipboardText(System.String) name: SetClipboardText - href: OpenTK.Core.Platform.IClipboardComponent.html#OpenTK_Core_Platform_IClipboardComponent_SetClipboardText_System_String_ + href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_SetClipboardText_System_String_ - name: ( - uid: System.String name: String @@ -1265,152 +1193,152 @@ references: - name: ) - uid: OpenTK.Platform.Native.Windows.ClipboardComponent.SetClipboardAudio* commentId: Overload:OpenTK.Platform.Native.Windows.ClipboardComponent.SetClipboardAudio - href: OpenTK.Platform.Native.Windows.ClipboardComponent.html#OpenTK_Platform_Native_Windows_ClipboardComponent_SetClipboardAudio_OpenTK_Core_Platform_AudioData_ + href: OpenTK.Platform.Native.Windows.ClipboardComponent.html#OpenTK_Platform_Native_Windows_ClipboardComponent_SetClipboardAudio_OpenTK_Platform_AudioData_ name: SetClipboardAudio nameWithType: ClipboardComponent.SetClipboardAudio fullName: OpenTK.Platform.Native.Windows.ClipboardComponent.SetClipboardAudio -- uid: OpenTK.Core.Platform.AudioData - commentId: T:OpenTK.Core.Platform.AudioData - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.AudioData.html +- uid: OpenTK.Platform.AudioData + commentId: T:OpenTK.Platform.AudioData + parent: OpenTK.Platform + href: OpenTK.Platform.AudioData.html name: AudioData nameWithType: AudioData - fullName: OpenTK.Core.Platform.AudioData + fullName: OpenTK.Platform.AudioData - uid: OpenTK.Platform.Native.Windows.ClipboardComponent.SetClipboardBitmap* commentId: Overload:OpenTK.Platform.Native.Windows.ClipboardComponent.SetClipboardBitmap - href: OpenTK.Platform.Native.Windows.ClipboardComponent.html#OpenTK_Platform_Native_Windows_ClipboardComponent_SetClipboardBitmap_OpenTK_Core_Platform_Bitmap_ + href: OpenTK.Platform.Native.Windows.ClipboardComponent.html#OpenTK_Platform_Native_Windows_ClipboardComponent_SetClipboardBitmap_OpenTK_Platform_Bitmap_ name: SetClipboardBitmap nameWithType: ClipboardComponent.SetClipboardBitmap fullName: OpenTK.Platform.Native.Windows.ClipboardComponent.SetClipboardBitmap -- uid: OpenTK.Core.Platform.Bitmap - commentId: T:OpenTK.Core.Platform.Bitmap - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.Bitmap.html +- uid: OpenTK.Platform.Bitmap + commentId: T:OpenTK.Platform.Bitmap + parent: OpenTK.Platform + href: OpenTK.Platform.Bitmap.html name: Bitmap nameWithType: Bitmap - fullName: OpenTK.Core.Platform.Bitmap -- uid: OpenTK.Core.Platform.ClipboardFormat.Text - commentId: F:OpenTK.Core.Platform.ClipboardFormat.Text - href: OpenTK.Core.Platform.ClipboardFormat.html#OpenTK_Core_Platform_ClipboardFormat_Text + fullName: OpenTK.Platform.Bitmap +- uid: OpenTK.Platform.ClipboardFormat.Text + commentId: F:OpenTK.Platform.ClipboardFormat.Text + href: OpenTK.Platform.ClipboardFormat.html#OpenTK_Platform_ClipboardFormat_Text name: Text nameWithType: ClipboardFormat.Text - fullName: OpenTK.Core.Platform.ClipboardFormat.Text + fullName: OpenTK.Platform.ClipboardFormat.Text - uid: OpenTK.Platform.Native.Windows.ClipboardComponent.GetClipboardText* commentId: Overload:OpenTK.Platform.Native.Windows.ClipboardComponent.GetClipboardText href: OpenTK.Platform.Native.Windows.ClipboardComponent.html#OpenTK_Platform_Native_Windows_ClipboardComponent_GetClipboardText name: GetClipboardText nameWithType: ClipboardComponent.GetClipboardText fullName: OpenTK.Platform.Native.Windows.ClipboardComponent.GetClipboardText -- uid: OpenTK.Core.Platform.IClipboardComponent.GetClipboardText - commentId: M:OpenTK.Core.Platform.IClipboardComponent.GetClipboardText - parent: OpenTK.Core.Platform.IClipboardComponent - href: OpenTK.Core.Platform.IClipboardComponent.html#OpenTK_Core_Platform_IClipboardComponent_GetClipboardText +- uid: OpenTK.Platform.IClipboardComponent.GetClipboardText + commentId: M:OpenTK.Platform.IClipboardComponent.GetClipboardText + parent: OpenTK.Platform.IClipboardComponent + href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_GetClipboardText name: GetClipboardText() nameWithType: IClipboardComponent.GetClipboardText() - fullName: OpenTK.Core.Platform.IClipboardComponent.GetClipboardText() + fullName: OpenTK.Platform.IClipboardComponent.GetClipboardText() spec.csharp: - - uid: OpenTK.Core.Platform.IClipboardComponent.GetClipboardText + - uid: OpenTK.Platform.IClipboardComponent.GetClipboardText name: GetClipboardText - href: OpenTK.Core.Platform.IClipboardComponent.html#OpenTK_Core_Platform_IClipboardComponent_GetClipboardText + href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_GetClipboardText - name: ( - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IClipboardComponent.GetClipboardText + - uid: OpenTK.Platform.IClipboardComponent.GetClipboardText name: GetClipboardText - href: OpenTK.Core.Platform.IClipboardComponent.html#OpenTK_Core_Platform_IClipboardComponent_GetClipboardText + href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_GetClipboardText - name: ( - name: ) -- uid: OpenTK.Core.Platform.ClipboardFormat.Audio - commentId: F:OpenTK.Core.Platform.ClipboardFormat.Audio - href: OpenTK.Core.Platform.ClipboardFormat.html#OpenTK_Core_Platform_ClipboardFormat_Audio +- uid: OpenTK.Platform.ClipboardFormat.Audio + commentId: F:OpenTK.Platform.ClipboardFormat.Audio + href: OpenTK.Platform.ClipboardFormat.html#OpenTK_Platform_ClipboardFormat_Audio name: Audio nameWithType: ClipboardFormat.Audio - fullName: OpenTK.Core.Platform.ClipboardFormat.Audio + fullName: OpenTK.Platform.ClipboardFormat.Audio - uid: OpenTK.Platform.Native.Windows.ClipboardComponent.GetClipboardAudio* commentId: Overload:OpenTK.Platform.Native.Windows.ClipboardComponent.GetClipboardAudio href: OpenTK.Platform.Native.Windows.ClipboardComponent.html#OpenTK_Platform_Native_Windows_ClipboardComponent_GetClipboardAudio name: GetClipboardAudio nameWithType: ClipboardComponent.GetClipboardAudio fullName: OpenTK.Platform.Native.Windows.ClipboardComponent.GetClipboardAudio -- uid: OpenTK.Core.Platform.IClipboardComponent.GetClipboardAudio - commentId: M:OpenTK.Core.Platform.IClipboardComponent.GetClipboardAudio - parent: OpenTK.Core.Platform.IClipboardComponent - href: OpenTK.Core.Platform.IClipboardComponent.html#OpenTK_Core_Platform_IClipboardComponent_GetClipboardAudio +- uid: OpenTK.Platform.IClipboardComponent.GetClipboardAudio + commentId: M:OpenTK.Platform.IClipboardComponent.GetClipboardAudio + parent: OpenTK.Platform.IClipboardComponent + href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_GetClipboardAudio name: GetClipboardAudio() nameWithType: IClipboardComponent.GetClipboardAudio() - fullName: OpenTK.Core.Platform.IClipboardComponent.GetClipboardAudio() + fullName: OpenTK.Platform.IClipboardComponent.GetClipboardAudio() spec.csharp: - - uid: OpenTK.Core.Platform.IClipboardComponent.GetClipboardAudio + - uid: OpenTK.Platform.IClipboardComponent.GetClipboardAudio name: GetClipboardAudio - href: OpenTK.Core.Platform.IClipboardComponent.html#OpenTK_Core_Platform_IClipboardComponent_GetClipboardAudio + href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_GetClipboardAudio - name: ( - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IClipboardComponent.GetClipboardAudio + - uid: OpenTK.Platform.IClipboardComponent.GetClipboardAudio name: GetClipboardAudio - href: OpenTK.Core.Platform.IClipboardComponent.html#OpenTK_Core_Platform_IClipboardComponent_GetClipboardAudio + href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_GetClipboardAudio - name: ( - name: ) -- uid: OpenTK.Core.Platform.ClipboardFormat.Bitmap - commentId: F:OpenTK.Core.Platform.ClipboardFormat.Bitmap - href: OpenTK.Core.Platform.ClipboardFormat.html#OpenTK_Core_Platform_ClipboardFormat_Bitmap +- uid: OpenTK.Platform.ClipboardFormat.Bitmap + commentId: F:OpenTK.Platform.ClipboardFormat.Bitmap + href: OpenTK.Platform.ClipboardFormat.html#OpenTK_Platform_ClipboardFormat_Bitmap name: Bitmap nameWithType: ClipboardFormat.Bitmap - fullName: OpenTK.Core.Platform.ClipboardFormat.Bitmap + fullName: OpenTK.Platform.ClipboardFormat.Bitmap - uid: OpenTK.Platform.Native.Windows.ClipboardComponent.GetClipboardBitmap* commentId: Overload:OpenTK.Platform.Native.Windows.ClipboardComponent.GetClipboardBitmap href: OpenTK.Platform.Native.Windows.ClipboardComponent.html#OpenTK_Platform_Native_Windows_ClipboardComponent_GetClipboardBitmap name: GetClipboardBitmap nameWithType: ClipboardComponent.GetClipboardBitmap fullName: OpenTK.Platform.Native.Windows.ClipboardComponent.GetClipboardBitmap -- uid: OpenTK.Core.Platform.IClipboardComponent.GetClipboardBitmap - commentId: M:OpenTK.Core.Platform.IClipboardComponent.GetClipboardBitmap - parent: OpenTK.Core.Platform.IClipboardComponent - href: OpenTK.Core.Platform.IClipboardComponent.html#OpenTK_Core_Platform_IClipboardComponent_GetClipboardBitmap +- uid: OpenTK.Platform.IClipboardComponent.GetClipboardBitmap + commentId: M:OpenTK.Platform.IClipboardComponent.GetClipboardBitmap + parent: OpenTK.Platform.IClipboardComponent + href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_GetClipboardBitmap name: GetClipboardBitmap() nameWithType: IClipboardComponent.GetClipboardBitmap() - fullName: OpenTK.Core.Platform.IClipboardComponent.GetClipboardBitmap() + fullName: OpenTK.Platform.IClipboardComponent.GetClipboardBitmap() spec.csharp: - - uid: OpenTK.Core.Platform.IClipboardComponent.GetClipboardBitmap + - uid: OpenTK.Platform.IClipboardComponent.GetClipboardBitmap name: GetClipboardBitmap - href: OpenTK.Core.Platform.IClipboardComponent.html#OpenTK_Core_Platform_IClipboardComponent_GetClipboardBitmap + href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_GetClipboardBitmap - name: ( - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IClipboardComponent.GetClipboardBitmap + - uid: OpenTK.Platform.IClipboardComponent.GetClipboardBitmap name: GetClipboardBitmap - href: OpenTK.Core.Platform.IClipboardComponent.html#OpenTK_Core_Platform_IClipboardComponent_GetClipboardBitmap + href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_GetClipboardBitmap - name: ( - name: ) -- uid: OpenTK.Core.Platform.ClipboardFormat.Files - commentId: F:OpenTK.Core.Platform.ClipboardFormat.Files - href: OpenTK.Core.Platform.ClipboardFormat.html#OpenTK_Core_Platform_ClipboardFormat_Files +- uid: OpenTK.Platform.ClipboardFormat.Files + commentId: F:OpenTK.Platform.ClipboardFormat.Files + href: OpenTK.Platform.ClipboardFormat.html#OpenTK_Platform_ClipboardFormat_Files name: Files nameWithType: ClipboardFormat.Files - fullName: OpenTK.Core.Platform.ClipboardFormat.Files + fullName: OpenTK.Platform.ClipboardFormat.Files - uid: OpenTK.Platform.Native.Windows.ClipboardComponent.GetClipboardFiles* commentId: Overload:OpenTK.Platform.Native.Windows.ClipboardComponent.GetClipboardFiles href: OpenTK.Platform.Native.Windows.ClipboardComponent.html#OpenTK_Platform_Native_Windows_ClipboardComponent_GetClipboardFiles name: GetClipboardFiles nameWithType: ClipboardComponent.GetClipboardFiles fullName: OpenTK.Platform.Native.Windows.ClipboardComponent.GetClipboardFiles -- uid: OpenTK.Core.Platform.IClipboardComponent.GetClipboardFiles - commentId: M:OpenTK.Core.Platform.IClipboardComponent.GetClipboardFiles - parent: OpenTK.Core.Platform.IClipboardComponent - href: OpenTK.Core.Platform.IClipboardComponent.html#OpenTK_Core_Platform_IClipboardComponent_GetClipboardFiles +- uid: OpenTK.Platform.IClipboardComponent.GetClipboardFiles + commentId: M:OpenTK.Platform.IClipboardComponent.GetClipboardFiles + parent: OpenTK.Platform.IClipboardComponent + href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_GetClipboardFiles name: GetClipboardFiles() nameWithType: IClipboardComponent.GetClipboardFiles() - fullName: OpenTK.Core.Platform.IClipboardComponent.GetClipboardFiles() + fullName: OpenTK.Platform.IClipboardComponent.GetClipboardFiles() spec.csharp: - - uid: OpenTK.Core.Platform.IClipboardComponent.GetClipboardFiles + - uid: OpenTK.Platform.IClipboardComponent.GetClipboardFiles name: GetClipboardFiles - href: OpenTK.Core.Platform.IClipboardComponent.html#OpenTK_Core_Platform_IClipboardComponent_GetClipboardFiles + href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_GetClipboardFiles - name: ( - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IClipboardComponent.GetClipboardFiles + - uid: OpenTK.Platform.IClipboardComponent.GetClipboardFiles name: GetClipboardFiles - href: OpenTK.Core.Platform.IClipboardComponent.html#OpenTK_Core_Platform_IClipboardComponent_GetClipboardFiles + href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_GetClipboardFiles - name: ( - name: ) - uid: System.Collections.Generic.List{System.String} diff --git a/api/OpenTK.Platform.Native.Windows.CursorComponent.yml b/api/OpenTK.Platform.Native.Windows.CursorComponent.yml index 478980fd..4c8f583f 100644 --- a/api/OpenTK.Platform.Native.Windows.CursorComponent.yml +++ b/api/OpenTK.Platform.Native.Windows.CursorComponent.yml @@ -7,18 +7,18 @@ items: children: - OpenTK.Platform.Native.Windows.CursorComponent.CanInspectSystemCursors - OpenTK.Platform.Native.Windows.CursorComponent.CanLoadSystemCursors - - OpenTK.Platform.Native.Windows.CursorComponent.Create(OpenTK.Core.Platform.SystemCursorType) + - OpenTK.Platform.Native.Windows.CursorComponent.Create(OpenTK.Platform.SystemCursorType) - OpenTK.Platform.Native.Windows.CursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.Int32,System.Int32) - OpenTK.Platform.Native.Windows.CursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.ReadOnlySpan{System.Byte},System.Int32,System.Int32) - OpenTK.Platform.Native.Windows.CursorComponent.CreateFromCurFile(System.String) - OpenTK.Platform.Native.Windows.CursorComponent.CreateFromCurResorce(System.Byte[]) - OpenTK.Platform.Native.Windows.CursorComponent.CreateFromCurResorce(System.String) - - OpenTK.Platform.Native.Windows.CursorComponent.Destroy(OpenTK.Core.Platform.CursorHandle) - - OpenTK.Platform.Native.Windows.CursorComponent.GetHotspot(OpenTK.Core.Platform.CursorHandle,System.Int32@,System.Int32@) - - OpenTK.Platform.Native.Windows.CursorComponent.GetImage(OpenTK.Core.Platform.CursorHandle,System.Span{System.Byte}) - - OpenTK.Platform.Native.Windows.CursorComponent.GetSize(OpenTK.Core.Platform.CursorHandle,System.Int32@,System.Int32@) - - OpenTK.Platform.Native.Windows.CursorComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - - OpenTK.Platform.Native.Windows.CursorComponent.IsSystemCursor(OpenTK.Core.Platform.CursorHandle) + - OpenTK.Platform.Native.Windows.CursorComponent.Destroy(OpenTK.Platform.CursorHandle) + - OpenTK.Platform.Native.Windows.CursorComponent.GetHotspot(OpenTK.Platform.CursorHandle,System.Int32@,System.Int32@) + - OpenTK.Platform.Native.Windows.CursorComponent.GetImage(OpenTK.Platform.CursorHandle,System.Span{System.Byte}) + - OpenTK.Platform.Native.Windows.CursorComponent.GetSize(OpenTK.Platform.CursorHandle,System.Int32@,System.Int32@) + - OpenTK.Platform.Native.Windows.CursorComponent.Initialize(OpenTK.Platform.ToolkitOptions) + - OpenTK.Platform.Native.Windows.CursorComponent.IsSystemCursor(OpenTK.Platform.CursorHandle) - OpenTK.Platform.Native.Windows.CursorComponent.Logger - OpenTK.Platform.Native.Windows.CursorComponent.Name - OpenTK.Platform.Native.Windows.CursorComponent.Provides @@ -30,15 +30,11 @@ items: fullName: OpenTK.Platform.Native.Windows.CursorComponent type: Class source: - remote: - path: src/OpenTK.Platform.Native/Windows/CursorComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CursorComponent - path: opentk/src/OpenTK.Platform.Native/Windows/CursorComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\CursorComponent.cs startLine: 15 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows syntax: content: 'public class CursorComponent : ICursorComponent, IPalComponent' @@ -46,8 +42,8 @@ items: inheritance: - System.Object implements: - - OpenTK.Core.Platform.ICursorComponent - - OpenTK.Core.Platform.IPalComponent + - OpenTK.Platform.ICursorComponent + - OpenTK.Platform.IPalComponent inheritedMembers: - System.Object.Equals(System.Object) - System.Object.Equals(System.Object,System.Object) @@ -68,15 +64,11 @@ items: fullName: OpenTK.Platform.Native.Windows.CursorComponent.Name type: Property source: - remote: - path: src/OpenTK.Platform.Native/Windows/CursorComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Name - path: opentk/src/OpenTK.Platform.Native/Windows/CursorComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\CursorComponent.cs startLine: 18 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: Name of the abstraction layer component. example: [] @@ -88,7 +80,7 @@ items: content.vb: Public ReadOnly Property Name As String overload: OpenTK.Platform.Native.Windows.CursorComponent.Name* implements: - - OpenTK.Core.Platform.IPalComponent.Name + - OpenTK.Platform.IPalComponent.Name - uid: OpenTK.Platform.Native.Windows.CursorComponent.Provides commentId: P:OpenTK.Platform.Native.Windows.CursorComponent.Provides id: Provides @@ -101,15 +93,11 @@ items: fullName: OpenTK.Platform.Native.Windows.CursorComponent.Provides type: Property source: - remote: - path: src/OpenTK.Platform.Native/Windows/CursorComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Provides - path: opentk/src/OpenTK.Platform.Native/Windows/CursorComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\CursorComponent.cs startLine: 21 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: Specifies which PAL components this object provides. example: [] @@ -117,11 +105,11 @@ items: content: public PalComponents Provides { get; } parameters: [] return: - type: OpenTK.Core.Platform.PalComponents + type: OpenTK.Platform.PalComponents content.vb: Public ReadOnly Property Provides As PalComponents overload: OpenTK.Platform.Native.Windows.CursorComponent.Provides* implements: - - OpenTK.Core.Platform.IPalComponent.Provides + - OpenTK.Platform.IPalComponent.Provides - uid: OpenTK.Platform.Native.Windows.CursorComponent.Logger commentId: P:OpenTK.Platform.Native.Windows.CursorComponent.Logger id: Logger @@ -134,15 +122,11 @@ items: fullName: OpenTK.Platform.Native.Windows.CursorComponent.Logger type: Property source: - remote: - path: src/OpenTK.Platform.Native/Windows/CursorComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Logger - path: opentk/src/OpenTK.Platform.Native/Windows/CursorComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\CursorComponent.cs startLine: 24 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: Provides a logger for this component. example: [] @@ -154,28 +138,24 @@ items: content.vb: Public Property Logger As ILogger overload: OpenTK.Platform.Native.Windows.CursorComponent.Logger* implements: - - OpenTK.Core.Platform.IPalComponent.Logger -- uid: OpenTK.Platform.Native.Windows.CursorComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - commentId: M:OpenTK.Platform.Native.Windows.CursorComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - id: Initialize(OpenTK.Core.Platform.ToolkitOptions) + - OpenTK.Platform.IPalComponent.Logger +- uid: OpenTK.Platform.Native.Windows.CursorComponent.Initialize(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Native.Windows.CursorComponent.Initialize(OpenTK.Platform.ToolkitOptions) + id: Initialize(OpenTK.Platform.ToolkitOptions) parent: OpenTK.Platform.Native.Windows.CursorComponent langs: - csharp - vb name: Initialize(ToolkitOptions) nameWithType: CursorComponent.Initialize(ToolkitOptions) - fullName: OpenTK.Platform.Native.Windows.CursorComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + fullName: OpenTK.Platform.Native.Windows.CursorComponent.Initialize(OpenTK.Platform.ToolkitOptions) type: Method source: - remote: - path: src/OpenTK.Platform.Native/Windows/CursorComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Initialize - path: opentk/src/OpenTK.Platform.Native/Windows/CursorComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\CursorComponent.cs startLine: 27 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: Initialize the component. example: [] @@ -183,12 +163,12 @@ items: content: public void Initialize(ToolkitOptions options) parameters: - id: options - type: OpenTK.Core.Platform.ToolkitOptions + type: OpenTK.Platform.ToolkitOptions description: The options to initialize the component with. content.vb: Public Sub Initialize(options As ToolkitOptions) overload: OpenTK.Platform.Native.Windows.CursorComponent.Initialize* implements: - - OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + - OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) - uid: OpenTK.Platform.Native.Windows.CursorComponent.CanLoadSystemCursors commentId: P:OpenTK.Platform.Native.Windows.CursorComponent.CanLoadSystemCursors id: CanLoadSystemCursors @@ -201,15 +181,11 @@ items: fullName: OpenTK.Platform.Native.Windows.CursorComponent.CanLoadSystemCursors type: Property source: - remote: - path: src/OpenTK.Platform.Native/Windows/CursorComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CanLoadSystemCursors - path: opentk/src/OpenTK.Platform.Native/Windows/CursorComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\CursorComponent.cs startLine: 32 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: True if the driver can load system cursors. example: [] @@ -221,10 +197,10 @@ items: content.vb: Public ReadOnly Property CanLoadSystemCursors As Boolean overload: OpenTK.Platform.Native.Windows.CursorComponent.CanLoadSystemCursors* seealso: - - linkId: OpenTK.Core.Platform.ICursorComponent.Create(OpenTK.Core.Platform.SystemCursorType) - commentId: M:OpenTK.Core.Platform.ICursorComponent.Create(OpenTK.Core.Platform.SystemCursorType) + - linkId: OpenTK.Platform.ICursorComponent.Create(OpenTK.Platform.SystemCursorType) + commentId: M:OpenTK.Platform.ICursorComponent.Create(OpenTK.Platform.SystemCursorType) implements: - - OpenTK.Core.Platform.ICursorComponent.CanLoadSystemCursors + - OpenTK.Platform.ICursorComponent.CanLoadSystemCursors - uid: OpenTK.Platform.Native.Windows.CursorComponent.CanInspectSystemCursors commentId: P:OpenTK.Platform.Native.Windows.CursorComponent.CanInspectSystemCursors id: CanInspectSystemCursors @@ -237,20 +213,16 @@ items: fullName: OpenTK.Platform.Native.Windows.CursorComponent.CanInspectSystemCursors type: Property source: - remote: - path: src/OpenTK.Platform.Native/Windows/CursorComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CanInspectSystemCursors - path: opentk/src/OpenTK.Platform.Native/Windows/CursorComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\CursorComponent.cs startLine: 35 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: >- True if the backend supports inspecting system cursor handles. - If true, functions like and works on system cursors. + If true, functions like and works on system cursors. If false, these functions will fail. example: [] @@ -262,57 +234,53 @@ items: content.vb: Public ReadOnly Property CanInspectSystemCursors As Boolean overload: OpenTK.Platform.Native.Windows.CursorComponent.CanInspectSystemCursors* seealso: - - linkId: OpenTK.Core.Platform.ICursorComponent.GetSize(OpenTK.Core.Platform.CursorHandle,System.Int32@,System.Int32@) - commentId: M:OpenTK.Core.Platform.ICursorComponent.GetSize(OpenTK.Core.Platform.CursorHandle,System.Int32@,System.Int32@) - - linkId: OpenTK.Core.Platform.ICursorComponent.GetHotspot(OpenTK.Core.Platform.CursorHandle,System.Int32@,System.Int32@) - commentId: M:OpenTK.Core.Platform.ICursorComponent.GetHotspot(OpenTK.Core.Platform.CursorHandle,System.Int32@,System.Int32@) + - linkId: OpenTK.Platform.ICursorComponent.GetSize(OpenTK.Platform.CursorHandle,System.Int32@,System.Int32@) + commentId: M:OpenTK.Platform.ICursorComponent.GetSize(OpenTK.Platform.CursorHandle,System.Int32@,System.Int32@) + - linkId: OpenTK.Platform.ICursorComponent.GetHotspot(OpenTK.Platform.CursorHandle,System.Int32@,System.Int32@) + commentId: M:OpenTK.Platform.ICursorComponent.GetHotspot(OpenTK.Platform.CursorHandle,System.Int32@,System.Int32@) implements: - - OpenTK.Core.Platform.ICursorComponent.CanInspectSystemCursors -- uid: OpenTK.Platform.Native.Windows.CursorComponent.Create(OpenTK.Core.Platform.SystemCursorType) - commentId: M:OpenTK.Platform.Native.Windows.CursorComponent.Create(OpenTK.Core.Platform.SystemCursorType) - id: Create(OpenTK.Core.Platform.SystemCursorType) + - OpenTK.Platform.ICursorComponent.CanInspectSystemCursors +- uid: OpenTK.Platform.Native.Windows.CursorComponent.Create(OpenTK.Platform.SystemCursorType) + commentId: M:OpenTK.Platform.Native.Windows.CursorComponent.Create(OpenTK.Platform.SystemCursorType) + id: Create(OpenTK.Platform.SystemCursorType) parent: OpenTK.Platform.Native.Windows.CursorComponent langs: - csharp - vb name: Create(SystemCursorType) nameWithType: CursorComponent.Create(SystemCursorType) - fullName: OpenTK.Platform.Native.Windows.CursorComponent.Create(OpenTK.Core.Platform.SystemCursorType) + fullName: OpenTK.Platform.Native.Windows.CursorComponent.Create(OpenTK.Platform.SystemCursorType) type: Method source: - remote: - path: src/OpenTK.Platform.Native/Windows/CursorComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Create - path: opentk/src/OpenTK.Platform.Native/Windows/CursorComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\CursorComponent.cs startLine: 38 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: Create a standard system cursor. - remarks: This function is only supported if is true. + remarks: This function is only supported if is true. example: [] syntax: content: public CursorHandle Create(SystemCursorType systemCursor) parameters: - id: systemCursor - type: OpenTK.Core.Platform.SystemCursorType + type: OpenTK.Platform.SystemCursorType description: Type of the standard cursor to load. return: - type: OpenTK.Core.Platform.CursorHandle + type: OpenTK.Platform.CursorHandle description: A handle to the created cursor. content.vb: Public Function Create(systemCursor As SystemCursorType) As CursorHandle overload: OpenTK.Platform.Native.Windows.CursorComponent.Create* exceptions: - - type: OpenTK.Core.Platform.PalNotImplementedException - commentId: T:OpenTK.Core.Platform.PalNotImplementedException - description: Driver does not implement this function. See . - - type: OpenTK.Core.Platform.PlatformException - commentId: T:OpenTK.Core.Platform.PlatformException + - type: OpenTK.Platform.PalNotImplementedException + commentId: T:OpenTK.Platform.PalNotImplementedException + description: Driver does not implement this function. See . + - type: OpenTK.Platform.PlatformException + commentId: T:OpenTK.Platform.PlatformException description: System does not provide cursor type selected by systemCursor. implements: - - OpenTK.Core.Platform.ICursorComponent.Create(OpenTK.Core.Platform.SystemCursorType) + - OpenTK.Platform.ICursorComponent.Create(OpenTK.Platform.SystemCursorType) - uid: OpenTK.Platform.Native.Windows.CursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.Int32,System.Int32) commentId: M:OpenTK.Platform.Native.Windows.CursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.Int32,System.Int32) id: Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.Int32,System.Int32) @@ -325,15 +293,11 @@ items: fullName: OpenTK.Platform.Native.Windows.CursorComponent.Create(int, int, System.ReadOnlySpan, int, int) type: Method source: - remote: - path: src/OpenTK.Platform.Native/Windows/CursorComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Create - path: opentk/src/OpenTK.Platform.Native/Windows/CursorComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\CursorComponent.cs startLine: 112 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: Load a cursor image from memory. example: [] @@ -356,7 +320,7 @@ items: type: System.Int32 description: The y coordinate of the cursor hotspot. return: - type: OpenTK.Core.Platform.CursorHandle + type: OpenTK.Platform.CursorHandle description: A handle to the created cursor. content.vb: Public Function Create(width As Integer, height As Integer, image As ReadOnlySpan(Of Byte), hotspotX As Integer, hotspotY As Integer) As CursorHandle overload: OpenTK.Platform.Native.Windows.CursorComponent.Create* @@ -368,7 +332,7 @@ items: commentId: T:System.ArgumentException description: image is smaller than specified dimensions. implements: - - OpenTK.Core.Platform.ICursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.Int32,System.Int32) + - OpenTK.Platform.ICursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.Int32,System.Int32) nameWithType.vb: CursorComponent.Create(Integer, Integer, ReadOnlySpan(Of Byte), Integer, Integer) fullName.vb: OpenTK.Platform.Native.Windows.CursorComponent.Create(Integer, Integer, System.ReadOnlySpan(Of Byte), Integer, Integer) name.vb: Create(Integer, Integer, ReadOnlySpan(Of Byte), Integer, Integer) @@ -384,15 +348,11 @@ items: fullName: OpenTK.Platform.Native.Windows.CursorComponent.Create(int, int, System.ReadOnlySpan, System.ReadOnlySpan, int, int) type: Method source: - remote: - path: src/OpenTK.Platform.Native/Windows/CursorComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Create - path: opentk/src/OpenTK.Platform.Native/Windows/CursorComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\CursorComponent.cs startLine: 191 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: Load a cursor image from memory. example: [] @@ -418,7 +378,7 @@ items: type: System.Int32 description: The y coordinate of the cursor hotspot. return: - type: OpenTK.Core.Platform.CursorHandle + type: OpenTK.Platform.CursorHandle description: A handle to the created handle. content.vb: Public Function Create(width As Integer, height As Integer, colorData As ReadOnlySpan(Of Byte), maskData As ReadOnlySpan(Of Byte), hotspotX As Integer, hotspotY As Integer) As CursorHandle overload: OpenTK.Platform.Native.Windows.CursorComponent.Create* @@ -430,7 +390,7 @@ items: commentId: T:System.ArgumentException description: colorData or maskData is smaller than specified dimensions. implements: - - OpenTK.Core.Platform.ICursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.ReadOnlySpan{System.Byte},System.Int32,System.Int32) + - OpenTK.Platform.ICursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.ReadOnlySpan{System.Byte},System.Int32,System.Int32) nameWithType.vb: CursorComponent.Create(Integer, Integer, ReadOnlySpan(Of Byte), ReadOnlySpan(Of Byte), Integer, Integer) fullName.vb: OpenTK.Platform.Native.Windows.CursorComponent.Create(Integer, Integer, System.ReadOnlySpan(Of Byte), System.ReadOnlySpan(Of Byte), Integer, Integer) name.vb: Create(Integer, Integer, ReadOnlySpan(Of Byte), ReadOnlySpan(Of Byte), Integer, Integer) @@ -446,18 +406,14 @@ items: fullName: OpenTK.Platform.Native.Windows.CursorComponent.CreateFromCurFile(string) type: Method source: - remote: - path: src/OpenTK.Platform.Native/Windows/CursorComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateFromCurFile - path: opentk/src/OpenTK.Platform.Native/Windows/CursorComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\CursorComponent.cs startLine: 284 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: Creates a cursor from a .cur file. - remarks: Handles created by this method will work in and . + remarks: Handles created by this method will work in and . example: [] syntax: content: public CursorHandle CreateFromCurFile(string file) @@ -466,7 +422,7 @@ items: type: System.String description: The .cur file to load. return: - type: OpenTK.Core.Platform.CursorHandle + type: OpenTK.Platform.CursorHandle content.vb: Public Function CreateFromCurFile(file As String) As CursorHandle overload: OpenTK.Platform.Native.Windows.CursorComponent.CreateFromCurFile* exceptions: @@ -488,15 +444,11 @@ items: fullName: OpenTK.Platform.Native.Windows.CursorComponent.CreateFromCurResorce(byte[]) type: Method source: - remote: - path: src/OpenTK.Platform.Native/Windows/CursorComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateFromCurResorce - path: opentk/src/OpenTK.Platform.Native/Windows/CursorComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\CursorComponent.cs startLine: 333 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows remarks: Currently this function does not work with .ani files. example: [] @@ -506,7 +458,7 @@ items: - id: resource type: System.Byte[] return: - type: OpenTK.Core.Platform.CursorHandle + type: OpenTK.Platform.CursorHandle content.vb: Public Function CreateFromCurResorce(resource As Byte()) As CursorHandle overload: OpenTK.Platform.Native.Windows.CursorComponent.CreateFromCurResorce* nameWithType.vb: CursorComponent.CreateFromCurResorce(Byte()) @@ -524,15 +476,11 @@ items: fullName: OpenTK.Platform.Native.Windows.CursorComponent.CreateFromCurResorce(string) type: Method source: - remote: - path: src/OpenTK.Platform.Native/Windows/CursorComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateFromCurResorce - path: opentk/src/OpenTK.Platform.Native/Windows/CursorComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\CursorComponent.cs startLine: 409 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: Creates a cursor from a resource name. remarks: >- @@ -553,33 +501,29 @@ items: type: System.String description: The name of the icon resource to load. return: - type: OpenTK.Core.Platform.CursorHandle + type: OpenTK.Platform.CursorHandle content.vb: Public Function CreateFromCurResorce(resourceName As String) As CursorHandle overload: OpenTK.Platform.Native.Windows.CursorComponent.CreateFromCurResorce* nameWithType.vb: CursorComponent.CreateFromCurResorce(String) fullName.vb: OpenTK.Platform.Native.Windows.CursorComponent.CreateFromCurResorce(String) name.vb: CreateFromCurResorce(String) -- uid: OpenTK.Platform.Native.Windows.CursorComponent.Destroy(OpenTK.Core.Platform.CursorHandle) - commentId: M:OpenTK.Platform.Native.Windows.CursorComponent.Destroy(OpenTK.Core.Platform.CursorHandle) - id: Destroy(OpenTK.Core.Platform.CursorHandle) +- uid: OpenTK.Platform.Native.Windows.CursorComponent.Destroy(OpenTK.Platform.CursorHandle) + commentId: M:OpenTK.Platform.Native.Windows.CursorComponent.Destroy(OpenTK.Platform.CursorHandle) + id: Destroy(OpenTK.Platform.CursorHandle) parent: OpenTK.Platform.Native.Windows.CursorComponent langs: - csharp - vb name: Destroy(CursorHandle) nameWithType: CursorComponent.Destroy(CursorHandle) - fullName: OpenTK.Platform.Native.Windows.CursorComponent.Destroy(OpenTK.Core.Platform.CursorHandle) + fullName: OpenTK.Platform.Native.Windows.CursorComponent.Destroy(OpenTK.Platform.CursorHandle) type: Method source: - remote: - path: src/OpenTK.Platform.Native/Windows/CursorComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Destroy - path: opentk/src/OpenTK.Platform.Native/Windows/CursorComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\CursorComponent.cs startLine: 422 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: Destroy a cursor object. example: [] @@ -587,7 +531,7 @@ items: content: public void Destroy(CursorHandle handle) parameters: - id: handle - type: OpenTK.Core.Platform.CursorHandle + type: OpenTK.Platform.CursorHandle description: Handle to a cursor object. content.vb: Public Sub Destroy(handle As CursorHandle) overload: OpenTK.Platform.Native.Windows.CursorComponent.Destroy* @@ -596,28 +540,24 @@ items: commentId: T:System.ArgumentNullException description: handle is null. implements: - - OpenTK.Core.Platform.ICursorComponent.Destroy(OpenTK.Core.Platform.CursorHandle) -- uid: OpenTK.Platform.Native.Windows.CursorComponent.IsSystemCursor(OpenTK.Core.Platform.CursorHandle) - commentId: M:OpenTK.Platform.Native.Windows.CursorComponent.IsSystemCursor(OpenTK.Core.Platform.CursorHandle) - id: IsSystemCursor(OpenTK.Core.Platform.CursorHandle) + - OpenTK.Platform.ICursorComponent.Destroy(OpenTK.Platform.CursorHandle) +- uid: OpenTK.Platform.Native.Windows.CursorComponent.IsSystemCursor(OpenTK.Platform.CursorHandle) + commentId: M:OpenTK.Platform.Native.Windows.CursorComponent.IsSystemCursor(OpenTK.Platform.CursorHandle) + id: IsSystemCursor(OpenTK.Platform.CursorHandle) parent: OpenTK.Platform.Native.Windows.CursorComponent langs: - csharp - vb name: IsSystemCursor(CursorHandle) nameWithType: CursorComponent.IsSystemCursor(CursorHandle) - fullName: OpenTK.Platform.Native.Windows.CursorComponent.IsSystemCursor(OpenTK.Core.Platform.CursorHandle) + fullName: OpenTK.Platform.Native.Windows.CursorComponent.IsSystemCursor(OpenTK.Platform.CursorHandle) type: Method source: - remote: - path: src/OpenTK.Platform.Native/Windows/CursorComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: IsSystemCursor - path: opentk/src/OpenTK.Platform.Native/Windows/CursorComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\CursorComponent.cs startLine: 469 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: Returns true if this cursor is a system cursor. example: [] @@ -625,7 +565,7 @@ items: content: public bool IsSystemCursor(CursorHandle handle) parameters: - id: handle - type: OpenTK.Core.Platform.CursorHandle + type: OpenTK.Platform.CursorHandle description: Handle to a cursor. return: type: System.Boolean @@ -633,40 +573,36 @@ items: content.vb: Public Function IsSystemCursor(handle As CursorHandle) As Boolean overload: OpenTK.Platform.Native.Windows.CursorComponent.IsSystemCursor* seealso: - - linkId: OpenTK.Core.Platform.ICursorComponent.Create(OpenTK.Core.Platform.SystemCursorType) - commentId: M:OpenTK.Core.Platform.ICursorComponent.Create(OpenTK.Core.Platform.SystemCursorType) + - linkId: OpenTK.Platform.ICursorComponent.Create(OpenTK.Platform.SystemCursorType) + commentId: M:OpenTK.Platform.ICursorComponent.Create(OpenTK.Platform.SystemCursorType) implements: - - OpenTK.Core.Platform.ICursorComponent.IsSystemCursor(OpenTK.Core.Platform.CursorHandle) -- uid: OpenTK.Platform.Native.Windows.CursorComponent.GetSize(OpenTK.Core.Platform.CursorHandle,System.Int32@,System.Int32@) - commentId: M:OpenTK.Platform.Native.Windows.CursorComponent.GetSize(OpenTK.Core.Platform.CursorHandle,System.Int32@,System.Int32@) - id: GetSize(OpenTK.Core.Platform.CursorHandle,System.Int32@,System.Int32@) + - OpenTK.Platform.ICursorComponent.IsSystemCursor(OpenTK.Platform.CursorHandle) +- uid: OpenTK.Platform.Native.Windows.CursorComponent.GetSize(OpenTK.Platform.CursorHandle,System.Int32@,System.Int32@) + commentId: M:OpenTK.Platform.Native.Windows.CursorComponent.GetSize(OpenTK.Platform.CursorHandle,System.Int32@,System.Int32@) + id: GetSize(OpenTK.Platform.CursorHandle,System.Int32@,System.Int32@) parent: OpenTK.Platform.Native.Windows.CursorComponent langs: - csharp - vb name: GetSize(CursorHandle, out int, out int) nameWithType: CursorComponent.GetSize(CursorHandle, out int, out int) - fullName: OpenTK.Platform.Native.Windows.CursorComponent.GetSize(OpenTK.Core.Platform.CursorHandle, out int, out int) + fullName: OpenTK.Platform.Native.Windows.CursorComponent.GetSize(OpenTK.Platform.CursorHandle, out int, out int) type: Method source: - remote: - path: src/OpenTK.Platform.Native/Windows/CursorComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetSize - path: opentk/src/OpenTK.Platform.Native/Windows/CursorComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\CursorComponent.cs startLine: 476 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: Get the size of the cursor image. - remarks: If handle is a system cursor and is false this function will fail. + remarks: If handle is a system cursor and is false this function will fail. example: [] syntax: content: public void GetSize(CursorHandle handle, out int width, out int height) parameters: - id: handle - type: OpenTK.Core.Platform.CursorHandle + type: OpenTK.Platform.CursorHandle description: Handle to a cursor object. - id: width type: System.Int32 @@ -681,48 +617,44 @@ items: commentId: T:System.ArgumentNullException description: handle is null. seealso: - - linkId: OpenTK.Core.Platform.ICursorComponent.IsSystemCursor(OpenTK.Core.Platform.CursorHandle) - commentId: M:OpenTK.Core.Platform.ICursorComponent.IsSystemCursor(OpenTK.Core.Platform.CursorHandle) - - linkId: OpenTK.Core.Platform.ICursorComponent.CanInspectSystemCursors - commentId: P:OpenTK.Core.Platform.ICursorComponent.CanInspectSystemCursors + - linkId: OpenTK.Platform.ICursorComponent.IsSystemCursor(OpenTK.Platform.CursorHandle) + commentId: M:OpenTK.Platform.ICursorComponent.IsSystemCursor(OpenTK.Platform.CursorHandle) + - linkId: OpenTK.Platform.ICursorComponent.CanInspectSystemCursors + commentId: P:OpenTK.Platform.ICursorComponent.CanInspectSystemCursors implements: - - OpenTK.Core.Platform.ICursorComponent.GetSize(OpenTK.Core.Platform.CursorHandle,System.Int32@,System.Int32@) + - OpenTK.Platform.ICursorComponent.GetSize(OpenTK.Platform.CursorHandle,System.Int32@,System.Int32@) nameWithType.vb: CursorComponent.GetSize(CursorHandle, Integer, Integer) - fullName.vb: OpenTK.Platform.Native.Windows.CursorComponent.GetSize(OpenTK.Core.Platform.CursorHandle, Integer, Integer) + fullName.vb: OpenTK.Platform.Native.Windows.CursorComponent.GetSize(OpenTK.Platform.CursorHandle, Integer, Integer) name.vb: GetSize(CursorHandle, Integer, Integer) -- uid: OpenTK.Platform.Native.Windows.CursorComponent.GetHotspot(OpenTK.Core.Platform.CursorHandle,System.Int32@,System.Int32@) - commentId: M:OpenTK.Platform.Native.Windows.CursorComponent.GetHotspot(OpenTK.Core.Platform.CursorHandle,System.Int32@,System.Int32@) - id: GetHotspot(OpenTK.Core.Platform.CursorHandle,System.Int32@,System.Int32@) +- uid: OpenTK.Platform.Native.Windows.CursorComponent.GetHotspot(OpenTK.Platform.CursorHandle,System.Int32@,System.Int32@) + commentId: M:OpenTK.Platform.Native.Windows.CursorComponent.GetHotspot(OpenTK.Platform.CursorHandle,System.Int32@,System.Int32@) + id: GetHotspot(OpenTK.Platform.CursorHandle,System.Int32@,System.Int32@) parent: OpenTK.Platform.Native.Windows.CursorComponent langs: - csharp - vb name: GetHotspot(CursorHandle, out int, out int) nameWithType: CursorComponent.GetHotspot(CursorHandle, out int, out int) - fullName: OpenTK.Platform.Native.Windows.CursorComponent.GetHotspot(OpenTK.Core.Platform.CursorHandle, out int, out int) + fullName: OpenTK.Platform.Native.Windows.CursorComponent.GetHotspot(OpenTK.Platform.CursorHandle, out int, out int) type: Method source: - remote: - path: src/OpenTK.Platform.Native/Windows/CursorComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetHotspot - path: opentk/src/OpenTK.Platform.Native/Windows/CursorComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\CursorComponent.cs startLine: 503 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: >- Get the hotspot location of the mouse cursor. - Getting the hotspot of a system cursor is not guaranteed to be possible, check before trying. - remarks: If handle is a system cursor and is false this function will fail. + Getting the hotspot of a system cursor is not guaranteed to be possible, check before trying. + remarks: If handle is a system cursor and is false this function will fail. example: [] syntax: content: public void GetHotspot(CursorHandle handle, out int x, out int y) parameters: - id: handle - type: OpenTK.Core.Platform.CursorHandle + type: OpenTK.Platform.CursorHandle description: Handle to a cursor object. - id: x type: System.Int32 @@ -737,36 +669,32 @@ items: commentId: T:System.ArgumentNullException description: handle is null. seealso: - - linkId: OpenTK.Core.Platform.ICursorComponent.IsSystemCursor(OpenTK.Core.Platform.CursorHandle) - commentId: M:OpenTK.Core.Platform.ICursorComponent.IsSystemCursor(OpenTK.Core.Platform.CursorHandle) - - linkId: OpenTK.Core.Platform.ICursorComponent.CanInspectSystemCursors - commentId: P:OpenTK.Core.Platform.ICursorComponent.CanInspectSystemCursors + - linkId: OpenTK.Platform.ICursorComponent.IsSystemCursor(OpenTK.Platform.CursorHandle) + commentId: M:OpenTK.Platform.ICursorComponent.IsSystemCursor(OpenTK.Platform.CursorHandle) + - linkId: OpenTK.Platform.ICursorComponent.CanInspectSystemCursors + commentId: P:OpenTK.Platform.ICursorComponent.CanInspectSystemCursors implements: - - OpenTK.Core.Platform.ICursorComponent.GetHotspot(OpenTK.Core.Platform.CursorHandle,System.Int32@,System.Int32@) + - OpenTK.Platform.ICursorComponent.GetHotspot(OpenTK.Platform.CursorHandle,System.Int32@,System.Int32@) nameWithType.vb: CursorComponent.GetHotspot(CursorHandle, Integer, Integer) - fullName.vb: OpenTK.Platform.Native.Windows.CursorComponent.GetHotspot(OpenTK.Core.Platform.CursorHandle, Integer, Integer) + fullName.vb: OpenTK.Platform.Native.Windows.CursorComponent.GetHotspot(OpenTK.Platform.CursorHandle, Integer, Integer) name.vb: GetHotspot(CursorHandle, Integer, Integer) -- uid: OpenTK.Platform.Native.Windows.CursorComponent.GetImage(OpenTK.Core.Platform.CursorHandle,System.Span{System.Byte}) - commentId: M:OpenTK.Platform.Native.Windows.CursorComponent.GetImage(OpenTK.Core.Platform.CursorHandle,System.Span{System.Byte}) - id: GetImage(OpenTK.Core.Platform.CursorHandle,System.Span{System.Byte}) +- uid: OpenTK.Platform.Native.Windows.CursorComponent.GetImage(OpenTK.Platform.CursorHandle,System.Span{System.Byte}) + commentId: M:OpenTK.Platform.Native.Windows.CursorComponent.GetImage(OpenTK.Platform.CursorHandle,System.Span{System.Byte}) + id: GetImage(OpenTK.Platform.CursorHandle,System.Span{System.Byte}) parent: OpenTK.Platform.Native.Windows.CursorComponent langs: - csharp - vb name: GetImage(CursorHandle, Span) nameWithType: CursorComponent.GetImage(CursorHandle, Span) - fullName: OpenTK.Platform.Native.Windows.CursorComponent.GetImage(OpenTK.Core.Platform.CursorHandle, System.Span) + fullName: OpenTK.Platform.Native.Windows.CursorComponent.GetImage(OpenTK.Platform.CursorHandle, System.Span) type: Method source: - remote: - path: src/OpenTK.Platform.Native/Windows/CursorComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetImage - path: opentk/src/OpenTK.Platform.Native/Windows/CursorComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\CursorComponent.cs startLine: 533 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: Get the mouse cursor image. remarks: This method works for all cursors, even system cursors. @@ -775,7 +703,7 @@ items: content: public void GetImage(CursorHandle handle, Span image) parameters: - id: handle - type: OpenTK.Core.Platform.CursorHandle + type: OpenTK.Platform.CursorHandle description: Handle to a cursor object. - id: image type: System.Span{System.Byte} @@ -787,7 +715,7 @@ items: commentId: T:System.ArgumentNullException description: handle is null. nameWithType.vb: CursorComponent.GetImage(CursorHandle, Span(Of Byte)) - fullName.vb: OpenTK.Platform.Native.Windows.CursorComponent.GetImage(OpenTK.Core.Platform.CursorHandle, System.Span(Of Byte)) + fullName.vb: OpenTK.Platform.Native.Windows.CursorComponent.GetImage(OpenTK.Platform.CursorHandle, System.Span(Of Byte)) name.vb: GetImage(CursorHandle, Span(Of Byte)) references: - uid: OpenTK.Platform.Native.Windows @@ -839,20 +767,20 @@ references: nameWithType.vb: Object fullName.vb: Object name.vb: Object -- uid: OpenTK.Core.Platform.ICursorComponent - commentId: T:OpenTK.Core.Platform.ICursorComponent - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.ICursorComponent.html +- uid: OpenTK.Platform.ICursorComponent + commentId: T:OpenTK.Platform.ICursorComponent + parent: OpenTK.Platform + href: OpenTK.Platform.ICursorComponent.html name: ICursorComponent nameWithType: ICursorComponent - fullName: OpenTK.Core.Platform.ICursorComponent -- uid: OpenTK.Core.Platform.IPalComponent - commentId: T:OpenTK.Core.Platform.IPalComponent - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.IPalComponent.html + fullName: OpenTK.Platform.ICursorComponent +- uid: OpenTK.Platform.IPalComponent + commentId: T:OpenTK.Platform.IPalComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IPalComponent.html name: IPalComponent nameWithType: IPalComponent - fullName: OpenTK.Core.Platform.IPalComponent + fullName: OpenTK.Platform.IPalComponent - uid: System.Object.Equals(System.Object) commentId: M:System.Object.Equals(System.Object) parent: System.Object @@ -1079,49 +1007,41 @@ references: name: System nameWithType: System fullName: System -- uid: OpenTK.Core.Platform - commentId: N:OpenTK.Core.Platform +- uid: OpenTK.Platform + commentId: N:OpenTK.Platform href: OpenTK.html - name: OpenTK.Core.Platform - nameWithType: OpenTK.Core.Platform - fullName: OpenTK.Core.Platform + name: OpenTK.Platform + nameWithType: OpenTK.Platform + fullName: OpenTK.Platform spec.csharp: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html spec.vb: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html - uid: OpenTK.Platform.Native.Windows.CursorComponent.Name* commentId: Overload:OpenTK.Platform.Native.Windows.CursorComponent.Name href: OpenTK.Platform.Native.Windows.CursorComponent.html#OpenTK_Platform_Native_Windows_CursorComponent_Name name: Name nameWithType: CursorComponent.Name fullName: OpenTK.Platform.Native.Windows.CursorComponent.Name -- uid: OpenTK.Core.Platform.IPalComponent.Name - commentId: P:OpenTK.Core.Platform.IPalComponent.Name - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Name +- uid: OpenTK.Platform.IPalComponent.Name + commentId: P:OpenTK.Platform.IPalComponent.Name + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Name name: Name nameWithType: IPalComponent.Name - fullName: OpenTK.Core.Platform.IPalComponent.Name + fullName: OpenTK.Platform.IPalComponent.Name - uid: System.String commentId: T:System.String parent: System @@ -1139,33 +1059,33 @@ references: name: Provides nameWithType: CursorComponent.Provides fullName: OpenTK.Platform.Native.Windows.CursorComponent.Provides -- uid: OpenTK.Core.Platform.IPalComponent.Provides - commentId: P:OpenTK.Core.Platform.IPalComponent.Provides - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Provides +- uid: OpenTK.Platform.IPalComponent.Provides + commentId: P:OpenTK.Platform.IPalComponent.Provides + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Provides name: Provides nameWithType: IPalComponent.Provides - fullName: OpenTK.Core.Platform.IPalComponent.Provides -- uid: OpenTK.Core.Platform.PalComponents - commentId: T:OpenTK.Core.Platform.PalComponents - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.PalComponents.html + fullName: OpenTK.Platform.IPalComponent.Provides +- uid: OpenTK.Platform.PalComponents + commentId: T:OpenTK.Platform.PalComponents + parent: OpenTK.Platform + href: OpenTK.Platform.PalComponents.html name: PalComponents nameWithType: PalComponents - fullName: OpenTK.Core.Platform.PalComponents + fullName: OpenTK.Platform.PalComponents - uid: OpenTK.Platform.Native.Windows.CursorComponent.Logger* commentId: Overload:OpenTK.Platform.Native.Windows.CursorComponent.Logger href: OpenTK.Platform.Native.Windows.CursorComponent.html#OpenTK_Platform_Native_Windows_CursorComponent_Logger name: Logger nameWithType: CursorComponent.Logger fullName: OpenTK.Platform.Native.Windows.CursorComponent.Logger -- uid: OpenTK.Core.Platform.IPalComponent.Logger - commentId: P:OpenTK.Core.Platform.IPalComponent.Logger - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Logger +- uid: OpenTK.Platform.IPalComponent.Logger + commentId: P:OpenTK.Platform.IPalComponent.Logger + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Logger name: Logger nameWithType: IPalComponent.Logger - fullName: OpenTK.Core.Platform.IPalComponent.Logger + fullName: OpenTK.Platform.IPalComponent.Logger - uid: OpenTK.Core.Utility.ILogger commentId: T:OpenTK.Core.Utility.ILogger parent: OpenTK.Core.Utility @@ -1205,66 +1125,66 @@ references: href: OpenTK.Core.Utility.html - uid: OpenTK.Platform.Native.Windows.CursorComponent.Initialize* commentId: Overload:OpenTK.Platform.Native.Windows.CursorComponent.Initialize - href: OpenTK.Platform.Native.Windows.CursorComponent.html#OpenTK_Platform_Native_Windows_CursorComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + href: OpenTK.Platform.Native.Windows.CursorComponent.html#OpenTK_Platform_Native_Windows_CursorComponent_Initialize_OpenTK_Platform_ToolkitOptions_ name: Initialize nameWithType: CursorComponent.Initialize fullName: OpenTK.Platform.Native.Windows.CursorComponent.Initialize -- uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - commentId: M:OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ +- uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ name: Initialize(ToolkitOptions) nameWithType: IPalComponent.Initialize(ToolkitOptions) - fullName: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + fullName: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) spec.csharp: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + - uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.ToolkitOptions + - uid: OpenTK.Platform.ToolkitOptions name: ToolkitOptions - href: OpenTK.Core.Platform.ToolkitOptions.html + href: OpenTK.Platform.ToolkitOptions.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + - uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.ToolkitOptions + - uid: OpenTK.Platform.ToolkitOptions name: ToolkitOptions - href: OpenTK.Core.Platform.ToolkitOptions.html + href: OpenTK.Platform.ToolkitOptions.html - name: ) -- uid: OpenTK.Core.Platform.ToolkitOptions - commentId: T:OpenTK.Core.Platform.ToolkitOptions - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.ToolkitOptions.html +- uid: OpenTK.Platform.ToolkitOptions + commentId: T:OpenTK.Platform.ToolkitOptions + parent: OpenTK.Platform + href: OpenTK.Platform.ToolkitOptions.html name: ToolkitOptions nameWithType: ToolkitOptions - fullName: OpenTK.Core.Platform.ToolkitOptions -- uid: OpenTK.Core.Platform.ICursorComponent.Create(OpenTK.Core.Platform.SystemCursorType) - commentId: M:OpenTK.Core.Platform.ICursorComponent.Create(OpenTK.Core.Platform.SystemCursorType) - parent: OpenTK.Core.Platform.ICursorComponent - href: OpenTK.Core.Platform.ICursorComponent.html#OpenTK_Core_Platform_ICursorComponent_Create_OpenTK_Core_Platform_SystemCursorType_ + fullName: OpenTK.Platform.ToolkitOptions +- uid: OpenTK.Platform.ICursorComponent.Create(OpenTK.Platform.SystemCursorType) + commentId: M:OpenTK.Platform.ICursorComponent.Create(OpenTK.Platform.SystemCursorType) + parent: OpenTK.Platform.ICursorComponent + href: OpenTK.Platform.ICursorComponent.html#OpenTK_Platform_ICursorComponent_Create_OpenTK_Platform_SystemCursorType_ name: Create(SystemCursorType) nameWithType: ICursorComponent.Create(SystemCursorType) - fullName: OpenTK.Core.Platform.ICursorComponent.Create(OpenTK.Core.Platform.SystemCursorType) + fullName: OpenTK.Platform.ICursorComponent.Create(OpenTK.Platform.SystemCursorType) spec.csharp: - - uid: OpenTK.Core.Platform.ICursorComponent.Create(OpenTK.Core.Platform.SystemCursorType) + - uid: OpenTK.Platform.ICursorComponent.Create(OpenTK.Platform.SystemCursorType) name: Create - href: OpenTK.Core.Platform.ICursorComponent.html#OpenTK_Core_Platform_ICursorComponent_Create_OpenTK_Core_Platform_SystemCursorType_ + href: OpenTK.Platform.ICursorComponent.html#OpenTK_Platform_ICursorComponent_Create_OpenTK_Platform_SystemCursorType_ - name: ( - - uid: OpenTK.Core.Platform.SystemCursorType + - uid: OpenTK.Platform.SystemCursorType name: SystemCursorType - href: OpenTK.Core.Platform.SystemCursorType.html + href: OpenTK.Platform.SystemCursorType.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.ICursorComponent.Create(OpenTK.Core.Platform.SystemCursorType) + - uid: OpenTK.Platform.ICursorComponent.Create(OpenTK.Platform.SystemCursorType) name: Create - href: OpenTK.Core.Platform.ICursorComponent.html#OpenTK_Core_Platform_ICursorComponent_Create_OpenTK_Core_Platform_SystemCursorType_ + href: OpenTK.Platform.ICursorComponent.html#OpenTK_Platform_ICursorComponent_Create_OpenTK_Platform_SystemCursorType_ - name: ( - - uid: OpenTK.Core.Platform.SystemCursorType + - uid: OpenTK.Platform.SystemCursorType name: SystemCursorType - href: OpenTK.Core.Platform.SystemCursorType.html + href: OpenTK.Platform.SystemCursorType.html - name: ) - uid: OpenTK.Platform.Native.Windows.CursorComponent.CanLoadSystemCursors* commentId: Overload:OpenTK.Platform.Native.Windows.CursorComponent.CanLoadSystemCursors @@ -1272,13 +1192,13 @@ references: name: CanLoadSystemCursors nameWithType: CursorComponent.CanLoadSystemCursors fullName: OpenTK.Platform.Native.Windows.CursorComponent.CanLoadSystemCursors -- uid: OpenTK.Core.Platform.ICursorComponent.CanLoadSystemCursors - commentId: P:OpenTK.Core.Platform.ICursorComponent.CanLoadSystemCursors - parent: OpenTK.Core.Platform.ICursorComponent - href: OpenTK.Core.Platform.ICursorComponent.html#OpenTK_Core_Platform_ICursorComponent_CanLoadSystemCursors +- uid: OpenTK.Platform.ICursorComponent.CanLoadSystemCursors + commentId: P:OpenTK.Platform.ICursorComponent.CanLoadSystemCursors + parent: OpenTK.Platform.ICursorComponent + href: OpenTK.Platform.ICursorComponent.html#OpenTK_Platform_ICursorComponent_CanLoadSystemCursors name: CanLoadSystemCursors nameWithType: ICursorComponent.CanLoadSystemCursors - fullName: OpenTK.Core.Platform.ICursorComponent.CanLoadSystemCursors + fullName: OpenTK.Platform.ICursorComponent.CanLoadSystemCursors - uid: System.Boolean commentId: T:System.Boolean parent: System @@ -1290,25 +1210,25 @@ references: nameWithType.vb: Boolean fullName.vb: Boolean name.vb: Boolean -- uid: OpenTK.Core.Platform.ICursorComponent.GetSize(OpenTK.Core.Platform.CursorHandle,System.Int32@,System.Int32@) - commentId: M:OpenTK.Core.Platform.ICursorComponent.GetSize(OpenTK.Core.Platform.CursorHandle,System.Int32@,System.Int32@) - parent: OpenTK.Core.Platform.ICursorComponent +- uid: OpenTK.Platform.ICursorComponent.GetSize(OpenTK.Platform.CursorHandle,System.Int32@,System.Int32@) + commentId: M:OpenTK.Platform.ICursorComponent.GetSize(OpenTK.Platform.CursorHandle,System.Int32@,System.Int32@) + parent: OpenTK.Platform.ICursorComponent isExternal: true - href: OpenTK.Core.Platform.ICursorComponent.html#OpenTK_Core_Platform_ICursorComponent_GetSize_OpenTK_Core_Platform_CursorHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.ICursorComponent.html#OpenTK_Platform_ICursorComponent_GetSize_OpenTK_Platform_CursorHandle_System_Int32__System_Int32__ name: GetSize(CursorHandle, out int, out int) nameWithType: ICursorComponent.GetSize(CursorHandle, out int, out int) - fullName: OpenTK.Core.Platform.ICursorComponent.GetSize(OpenTK.Core.Platform.CursorHandle, out int, out int) + fullName: OpenTK.Platform.ICursorComponent.GetSize(OpenTK.Platform.CursorHandle, out int, out int) nameWithType.vb: ICursorComponent.GetSize(CursorHandle, Integer, Integer) - fullName.vb: OpenTK.Core.Platform.ICursorComponent.GetSize(OpenTK.Core.Platform.CursorHandle, Integer, Integer) + fullName.vb: OpenTK.Platform.ICursorComponent.GetSize(OpenTK.Platform.CursorHandle, Integer, Integer) name.vb: GetSize(CursorHandle, Integer, Integer) spec.csharp: - - uid: OpenTK.Core.Platform.ICursorComponent.GetSize(OpenTK.Core.Platform.CursorHandle,System.Int32@,System.Int32@) + - uid: OpenTK.Platform.ICursorComponent.GetSize(OpenTK.Platform.CursorHandle,System.Int32@,System.Int32@) name: GetSize - href: OpenTK.Core.Platform.ICursorComponent.html#OpenTK_Core_Platform_ICursorComponent_GetSize_OpenTK_Core_Platform_CursorHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.ICursorComponent.html#OpenTK_Platform_ICursorComponent_GetSize_OpenTK_Platform_CursorHandle_System_Int32__System_Int32__ - name: ( - - uid: OpenTK.Core.Platform.CursorHandle + - uid: OpenTK.Platform.CursorHandle name: CursorHandle - href: OpenTK.Core.Platform.CursorHandle.html + href: OpenTK.Platform.CursorHandle.html - name: ',' - name: " " - name: out @@ -1327,13 +1247,13 @@ references: href: https://learn.microsoft.com/dotnet/api/system.int32 - name: ) spec.vb: - - uid: OpenTK.Core.Platform.ICursorComponent.GetSize(OpenTK.Core.Platform.CursorHandle,System.Int32@,System.Int32@) + - uid: OpenTK.Platform.ICursorComponent.GetSize(OpenTK.Platform.CursorHandle,System.Int32@,System.Int32@) name: GetSize - href: OpenTK.Core.Platform.ICursorComponent.html#OpenTK_Core_Platform_ICursorComponent_GetSize_OpenTK_Core_Platform_CursorHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.ICursorComponent.html#OpenTK_Platform_ICursorComponent_GetSize_OpenTK_Platform_CursorHandle_System_Int32__System_Int32__ - name: ( - - uid: OpenTK.Core.Platform.CursorHandle + - uid: OpenTK.Platform.CursorHandle name: CursorHandle - href: OpenTK.Core.Platform.CursorHandle.html + href: OpenTK.Platform.CursorHandle.html - name: ',' - name: " " - uid: System.Int32 @@ -1347,25 +1267,25 @@ references: isExternal: true href: https://learn.microsoft.com/dotnet/api/system.int32 - name: ) -- uid: OpenTK.Core.Platform.ICursorComponent.GetHotspot(OpenTK.Core.Platform.CursorHandle,System.Int32@,System.Int32@) - commentId: M:OpenTK.Core.Platform.ICursorComponent.GetHotspot(OpenTK.Core.Platform.CursorHandle,System.Int32@,System.Int32@) - parent: OpenTK.Core.Platform.ICursorComponent +- uid: OpenTK.Platform.ICursorComponent.GetHotspot(OpenTK.Platform.CursorHandle,System.Int32@,System.Int32@) + commentId: M:OpenTK.Platform.ICursorComponent.GetHotspot(OpenTK.Platform.CursorHandle,System.Int32@,System.Int32@) + parent: OpenTK.Platform.ICursorComponent isExternal: true - href: OpenTK.Core.Platform.ICursorComponent.html#OpenTK_Core_Platform_ICursorComponent_GetHotspot_OpenTK_Core_Platform_CursorHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.ICursorComponent.html#OpenTK_Platform_ICursorComponent_GetHotspot_OpenTK_Platform_CursorHandle_System_Int32__System_Int32__ name: GetHotspot(CursorHandle, out int, out int) nameWithType: ICursorComponent.GetHotspot(CursorHandle, out int, out int) - fullName: OpenTK.Core.Platform.ICursorComponent.GetHotspot(OpenTK.Core.Platform.CursorHandle, out int, out int) + fullName: OpenTK.Platform.ICursorComponent.GetHotspot(OpenTK.Platform.CursorHandle, out int, out int) nameWithType.vb: ICursorComponent.GetHotspot(CursorHandle, Integer, Integer) - fullName.vb: OpenTK.Core.Platform.ICursorComponent.GetHotspot(OpenTK.Core.Platform.CursorHandle, Integer, Integer) + fullName.vb: OpenTK.Platform.ICursorComponent.GetHotspot(OpenTK.Platform.CursorHandle, Integer, Integer) name.vb: GetHotspot(CursorHandle, Integer, Integer) spec.csharp: - - uid: OpenTK.Core.Platform.ICursorComponent.GetHotspot(OpenTK.Core.Platform.CursorHandle,System.Int32@,System.Int32@) + - uid: OpenTK.Platform.ICursorComponent.GetHotspot(OpenTK.Platform.CursorHandle,System.Int32@,System.Int32@) name: GetHotspot - href: OpenTK.Core.Platform.ICursorComponent.html#OpenTK_Core_Platform_ICursorComponent_GetHotspot_OpenTK_Core_Platform_CursorHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.ICursorComponent.html#OpenTK_Platform_ICursorComponent_GetHotspot_OpenTK_Platform_CursorHandle_System_Int32__System_Int32__ - name: ( - - uid: OpenTK.Core.Platform.CursorHandle + - uid: OpenTK.Platform.CursorHandle name: CursorHandle - href: OpenTK.Core.Platform.CursorHandle.html + href: OpenTK.Platform.CursorHandle.html - name: ',' - name: " " - name: out @@ -1384,13 +1304,13 @@ references: href: https://learn.microsoft.com/dotnet/api/system.int32 - name: ) spec.vb: - - uid: OpenTK.Core.Platform.ICursorComponent.GetHotspot(OpenTK.Core.Platform.CursorHandle,System.Int32@,System.Int32@) + - uid: OpenTK.Platform.ICursorComponent.GetHotspot(OpenTK.Platform.CursorHandle,System.Int32@,System.Int32@) name: GetHotspot - href: OpenTK.Core.Platform.ICursorComponent.html#OpenTK_Core_Platform_ICursorComponent_GetHotspot_OpenTK_Core_Platform_CursorHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.ICursorComponent.html#OpenTK_Platform_ICursorComponent_GetHotspot_OpenTK_Platform_CursorHandle_System_Int32__System_Int32__ - name: ( - - uid: OpenTK.Core.Platform.CursorHandle + - uid: OpenTK.Platform.CursorHandle name: CursorHandle - href: OpenTK.Core.Platform.CursorHandle.html + href: OpenTK.Platform.CursorHandle.html - name: ',' - name: " " - uid: System.Int32 @@ -1410,45 +1330,45 @@ references: name: CanInspectSystemCursors nameWithType: CursorComponent.CanInspectSystemCursors fullName: OpenTK.Platform.Native.Windows.CursorComponent.CanInspectSystemCursors -- uid: OpenTK.Core.Platform.ICursorComponent.CanInspectSystemCursors - commentId: P:OpenTK.Core.Platform.ICursorComponent.CanInspectSystemCursors - parent: OpenTK.Core.Platform.ICursorComponent - href: OpenTK.Core.Platform.ICursorComponent.html#OpenTK_Core_Platform_ICursorComponent_CanInspectSystemCursors +- uid: OpenTK.Platform.ICursorComponent.CanInspectSystemCursors + commentId: P:OpenTK.Platform.ICursorComponent.CanInspectSystemCursors + parent: OpenTK.Platform.ICursorComponent + href: OpenTK.Platform.ICursorComponent.html#OpenTK_Platform_ICursorComponent_CanInspectSystemCursors name: CanInspectSystemCursors nameWithType: ICursorComponent.CanInspectSystemCursors - fullName: OpenTK.Core.Platform.ICursorComponent.CanInspectSystemCursors -- uid: OpenTK.Core.Platform.PalNotImplementedException - commentId: T:OpenTK.Core.Platform.PalNotImplementedException - href: OpenTK.Core.Platform.PalNotImplementedException.html + fullName: OpenTK.Platform.ICursorComponent.CanInspectSystemCursors +- uid: OpenTK.Platform.PalNotImplementedException + commentId: T:OpenTK.Platform.PalNotImplementedException + href: OpenTK.Platform.PalNotImplementedException.html name: PalNotImplementedException nameWithType: PalNotImplementedException - fullName: OpenTK.Core.Platform.PalNotImplementedException -- uid: OpenTK.Core.Platform.PlatformException - commentId: T:OpenTK.Core.Platform.PlatformException - href: OpenTK.Core.Platform.PlatformException.html + fullName: OpenTK.Platform.PalNotImplementedException +- uid: OpenTK.Platform.PlatformException + commentId: T:OpenTK.Platform.PlatformException + href: OpenTK.Platform.PlatformException.html name: PlatformException nameWithType: PlatformException - fullName: OpenTK.Core.Platform.PlatformException + fullName: OpenTK.Platform.PlatformException - uid: OpenTK.Platform.Native.Windows.CursorComponent.Create* commentId: Overload:OpenTK.Platform.Native.Windows.CursorComponent.Create - href: OpenTK.Platform.Native.Windows.CursorComponent.html#OpenTK_Platform_Native_Windows_CursorComponent_Create_OpenTK_Core_Platform_SystemCursorType_ + href: OpenTK.Platform.Native.Windows.CursorComponent.html#OpenTK_Platform_Native_Windows_CursorComponent_Create_OpenTK_Platform_SystemCursorType_ name: Create nameWithType: CursorComponent.Create fullName: OpenTK.Platform.Native.Windows.CursorComponent.Create -- uid: OpenTK.Core.Platform.SystemCursorType - commentId: T:OpenTK.Core.Platform.SystemCursorType - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.SystemCursorType.html +- uid: OpenTK.Platform.SystemCursorType + commentId: T:OpenTK.Platform.SystemCursorType + parent: OpenTK.Platform + href: OpenTK.Platform.SystemCursorType.html name: SystemCursorType nameWithType: SystemCursorType - fullName: OpenTK.Core.Platform.SystemCursorType -- uid: OpenTK.Core.Platform.CursorHandle - commentId: T:OpenTK.Core.Platform.CursorHandle - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.CursorHandle.html + fullName: OpenTK.Platform.SystemCursorType +- uid: OpenTK.Platform.CursorHandle + commentId: T:OpenTK.Platform.CursorHandle + parent: OpenTK.Platform + href: OpenTK.Platform.CursorHandle.html name: CursorHandle nameWithType: CursorHandle - fullName: OpenTK.Core.Platform.CursorHandle + fullName: OpenTK.Platform.CursorHandle - uid: System.ArgumentOutOfRangeException commentId: T:System.ArgumentOutOfRangeException isExternal: true @@ -1463,21 +1383,21 @@ references: name: ArgumentException nameWithType: ArgumentException fullName: System.ArgumentException -- uid: OpenTK.Core.Platform.ICursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.Int32,System.Int32) - commentId: M:OpenTK.Core.Platform.ICursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.Int32,System.Int32) - parent: OpenTK.Core.Platform.ICursorComponent +- uid: OpenTK.Platform.ICursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.Int32,System.Int32) + commentId: M:OpenTK.Platform.ICursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.Int32,System.Int32) + parent: OpenTK.Platform.ICursorComponent isExternal: true - href: OpenTK.Core.Platform.ICursorComponent.html#OpenTK_Core_Platform_ICursorComponent_Create_System_Int32_System_Int32_System_ReadOnlySpan_System_Byte__System_Int32_System_Int32_ + href: OpenTK.Platform.ICursorComponent.html#OpenTK_Platform_ICursorComponent_Create_System_Int32_System_Int32_System_ReadOnlySpan_System_Byte__System_Int32_System_Int32_ name: Create(int, int, ReadOnlySpan, int, int) nameWithType: ICursorComponent.Create(int, int, ReadOnlySpan, int, int) - fullName: OpenTK.Core.Platform.ICursorComponent.Create(int, int, System.ReadOnlySpan, int, int) + fullName: OpenTK.Platform.ICursorComponent.Create(int, int, System.ReadOnlySpan, int, int) nameWithType.vb: ICursorComponent.Create(Integer, Integer, ReadOnlySpan(Of Byte), Integer, Integer) - fullName.vb: OpenTK.Core.Platform.ICursorComponent.Create(Integer, Integer, System.ReadOnlySpan(Of Byte), Integer, Integer) + fullName.vb: OpenTK.Platform.ICursorComponent.Create(Integer, Integer, System.ReadOnlySpan(Of Byte), Integer, Integer) name.vb: Create(Integer, Integer, ReadOnlySpan(Of Byte), Integer, Integer) spec.csharp: - - uid: OpenTK.Core.Platform.ICursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.Int32,System.Int32) + - uid: OpenTK.Platform.ICursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.Int32,System.Int32) name: Create - href: OpenTK.Core.Platform.ICursorComponent.html#OpenTK_Core_Platform_ICursorComponent_Create_System_Int32_System_Int32_System_ReadOnlySpan_System_Byte__System_Int32_System_Int32_ + href: OpenTK.Platform.ICursorComponent.html#OpenTK_Platform_ICursorComponent_Create_System_Int32_System_Int32_System_ReadOnlySpan_System_Byte__System_Int32_System_Int32_ - name: ( - uid: System.Int32 name: int @@ -1515,9 +1435,9 @@ references: href: https://learn.microsoft.com/dotnet/api/system.int32 - name: ) spec.vb: - - uid: OpenTK.Core.Platform.ICursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.Int32,System.Int32) + - uid: OpenTK.Platform.ICursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.Int32,System.Int32) name: Create - href: OpenTK.Core.Platform.ICursorComponent.html#OpenTK_Core_Platform_ICursorComponent_Create_System_Int32_System_Int32_System_ReadOnlySpan_System_Byte__System_Int32_System_Int32_ + href: OpenTK.Platform.ICursorComponent.html#OpenTK_Platform_ICursorComponent_Create_System_Int32_System_Int32_System_ReadOnlySpan_System_Byte__System_Int32_System_Int32_ - name: ( - uid: System.Int32 name: Integer @@ -1630,21 +1550,21 @@ references: - name: " " - name: T - name: ) -- uid: OpenTK.Core.Platform.ICursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.ReadOnlySpan{System.Byte},System.Int32,System.Int32) - commentId: M:OpenTK.Core.Platform.ICursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.ReadOnlySpan{System.Byte},System.Int32,System.Int32) - parent: OpenTK.Core.Platform.ICursorComponent +- uid: OpenTK.Platform.ICursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.ReadOnlySpan{System.Byte},System.Int32,System.Int32) + commentId: M:OpenTK.Platform.ICursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.ReadOnlySpan{System.Byte},System.Int32,System.Int32) + parent: OpenTK.Platform.ICursorComponent isExternal: true - href: OpenTK.Core.Platform.ICursorComponent.html#OpenTK_Core_Platform_ICursorComponent_Create_System_Int32_System_Int32_System_ReadOnlySpan_System_Byte__System_ReadOnlySpan_System_Byte__System_Int32_System_Int32_ + href: OpenTK.Platform.ICursorComponent.html#OpenTK_Platform_ICursorComponent_Create_System_Int32_System_Int32_System_ReadOnlySpan_System_Byte__System_ReadOnlySpan_System_Byte__System_Int32_System_Int32_ name: Create(int, int, ReadOnlySpan, ReadOnlySpan, int, int) nameWithType: ICursorComponent.Create(int, int, ReadOnlySpan, ReadOnlySpan, int, int) - fullName: OpenTK.Core.Platform.ICursorComponent.Create(int, int, System.ReadOnlySpan, System.ReadOnlySpan, int, int) + fullName: OpenTK.Platform.ICursorComponent.Create(int, int, System.ReadOnlySpan, System.ReadOnlySpan, int, int) nameWithType.vb: ICursorComponent.Create(Integer, Integer, ReadOnlySpan(Of Byte), ReadOnlySpan(Of Byte), Integer, Integer) - fullName.vb: OpenTK.Core.Platform.ICursorComponent.Create(Integer, Integer, System.ReadOnlySpan(Of Byte), System.ReadOnlySpan(Of Byte), Integer, Integer) + fullName.vb: OpenTK.Platform.ICursorComponent.Create(Integer, Integer, System.ReadOnlySpan(Of Byte), System.ReadOnlySpan(Of Byte), Integer, Integer) name.vb: Create(Integer, Integer, ReadOnlySpan(Of Byte), ReadOnlySpan(Of Byte), Integer, Integer) spec.csharp: - - uid: OpenTK.Core.Platform.ICursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.ReadOnlySpan{System.Byte},System.Int32,System.Int32) + - uid: OpenTK.Platform.ICursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.ReadOnlySpan{System.Byte},System.Int32,System.Int32) name: Create - href: OpenTK.Core.Platform.ICursorComponent.html#OpenTK_Core_Platform_ICursorComponent_Create_System_Int32_System_Int32_System_ReadOnlySpan_System_Byte__System_ReadOnlySpan_System_Byte__System_Int32_System_Int32_ + href: OpenTK.Platform.ICursorComponent.html#OpenTK_Platform_ICursorComponent_Create_System_Int32_System_Int32_System_ReadOnlySpan_System_Byte__System_ReadOnlySpan_System_Byte__System_Int32_System_Int32_ - name: ( - uid: System.Int32 name: int @@ -1694,9 +1614,9 @@ references: href: https://learn.microsoft.com/dotnet/api/system.int32 - name: ) spec.vb: - - uid: OpenTK.Core.Platform.ICursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.ReadOnlySpan{System.Byte},System.Int32,System.Int32) + - uid: OpenTK.Platform.ICursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.ReadOnlySpan{System.Byte},System.Int32,System.Int32) name: Create - href: OpenTK.Core.Platform.ICursorComponent.html#OpenTK_Core_Platform_ICursorComponent_Create_System_Int32_System_Int32_System_ReadOnlySpan_System_Byte__System_ReadOnlySpan_System_Byte__System_Int32_System_Int32_ + href: OpenTK.Platform.ICursorComponent.html#OpenTK_Platform_ICursorComponent_Create_System_Int32_System_Int32_System_ReadOnlySpan_System_Byte__System_ReadOnlySpan_System_Byte__System_Int32_System_Int32_ - name: ( - uid: System.Int32 name: Integer @@ -1749,24 +1669,24 @@ references: isExternal: true href: https://learn.microsoft.com/dotnet/api/system.int32 - name: ) -- uid: OpenTK.Platform.Native.Windows.CursorComponent.GetSize(OpenTK.Core.Platform.CursorHandle,System.Int32@,System.Int32@) - commentId: M:OpenTK.Platform.Native.Windows.CursorComponent.GetSize(OpenTK.Core.Platform.CursorHandle,System.Int32@,System.Int32@) +- uid: OpenTK.Platform.Native.Windows.CursorComponent.GetSize(OpenTK.Platform.CursorHandle,System.Int32@,System.Int32@) + commentId: M:OpenTK.Platform.Native.Windows.CursorComponent.GetSize(OpenTK.Platform.CursorHandle,System.Int32@,System.Int32@) isExternal: true - href: OpenTK.Platform.Native.Windows.CursorComponent.html#OpenTK_Platform_Native_Windows_CursorComponent_GetSize_OpenTK_Core_Platform_CursorHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.Native.Windows.CursorComponent.html#OpenTK_Platform_Native_Windows_CursorComponent_GetSize_OpenTK_Platform_CursorHandle_System_Int32__System_Int32__ name: GetSize(CursorHandle, out int, out int) nameWithType: CursorComponent.GetSize(CursorHandle, out int, out int) - fullName: OpenTK.Platform.Native.Windows.CursorComponent.GetSize(OpenTK.Core.Platform.CursorHandle, out int, out int) + fullName: OpenTK.Platform.Native.Windows.CursorComponent.GetSize(OpenTK.Platform.CursorHandle, out int, out int) nameWithType.vb: CursorComponent.GetSize(CursorHandle, Integer, Integer) - fullName.vb: OpenTK.Platform.Native.Windows.CursorComponent.GetSize(OpenTK.Core.Platform.CursorHandle, Integer, Integer) + fullName.vb: OpenTK.Platform.Native.Windows.CursorComponent.GetSize(OpenTK.Platform.CursorHandle, Integer, Integer) name.vb: GetSize(CursorHandle, Integer, Integer) spec.csharp: - - uid: OpenTK.Platform.Native.Windows.CursorComponent.GetSize(OpenTK.Core.Platform.CursorHandle,System.Int32@,System.Int32@) + - uid: OpenTK.Platform.Native.Windows.CursorComponent.GetSize(OpenTK.Platform.CursorHandle,System.Int32@,System.Int32@) name: GetSize - href: OpenTK.Platform.Native.Windows.CursorComponent.html#OpenTK_Platform_Native_Windows_CursorComponent_GetSize_OpenTK_Core_Platform_CursorHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.Native.Windows.CursorComponent.html#OpenTK_Platform_Native_Windows_CursorComponent_GetSize_OpenTK_Platform_CursorHandle_System_Int32__System_Int32__ - name: ( - - uid: OpenTK.Core.Platform.CursorHandle + - uid: OpenTK.Platform.CursorHandle name: CursorHandle - href: OpenTK.Core.Platform.CursorHandle.html + href: OpenTK.Platform.CursorHandle.html - name: ',' - name: " " - name: out @@ -1785,13 +1705,13 @@ references: href: https://learn.microsoft.com/dotnet/api/system.int32 - name: ) spec.vb: - - uid: OpenTK.Platform.Native.Windows.CursorComponent.GetSize(OpenTK.Core.Platform.CursorHandle,System.Int32@,System.Int32@) + - uid: OpenTK.Platform.Native.Windows.CursorComponent.GetSize(OpenTK.Platform.CursorHandle,System.Int32@,System.Int32@) name: GetSize - href: OpenTK.Platform.Native.Windows.CursorComponent.html#OpenTK_Platform_Native_Windows_CursorComponent_GetSize_OpenTK_Core_Platform_CursorHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.Native.Windows.CursorComponent.html#OpenTK_Platform_Native_Windows_CursorComponent_GetSize_OpenTK_Platform_CursorHandle_System_Int32__System_Int32__ - name: ( - - uid: OpenTK.Core.Platform.CursorHandle + - uid: OpenTK.Platform.CursorHandle name: CursorHandle - href: OpenTK.Core.Platform.CursorHandle.html + href: OpenTK.Platform.CursorHandle.html - name: ',' - name: " " - uid: System.Int32 @@ -1805,24 +1725,24 @@ references: isExternal: true href: https://learn.microsoft.com/dotnet/api/system.int32 - name: ) -- uid: OpenTK.Platform.Native.Windows.CursorComponent.GetHotspot(OpenTK.Core.Platform.CursorHandle,System.Int32@,System.Int32@) - commentId: M:OpenTK.Platform.Native.Windows.CursorComponent.GetHotspot(OpenTK.Core.Platform.CursorHandle,System.Int32@,System.Int32@) +- uid: OpenTK.Platform.Native.Windows.CursorComponent.GetHotspot(OpenTK.Platform.CursorHandle,System.Int32@,System.Int32@) + commentId: M:OpenTK.Platform.Native.Windows.CursorComponent.GetHotspot(OpenTK.Platform.CursorHandle,System.Int32@,System.Int32@) isExternal: true - href: OpenTK.Platform.Native.Windows.CursorComponent.html#OpenTK_Platform_Native_Windows_CursorComponent_GetHotspot_OpenTK_Core_Platform_CursorHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.Native.Windows.CursorComponent.html#OpenTK_Platform_Native_Windows_CursorComponent_GetHotspot_OpenTK_Platform_CursorHandle_System_Int32__System_Int32__ name: GetHotspot(CursorHandle, out int, out int) nameWithType: CursorComponent.GetHotspot(CursorHandle, out int, out int) - fullName: OpenTK.Platform.Native.Windows.CursorComponent.GetHotspot(OpenTK.Core.Platform.CursorHandle, out int, out int) + fullName: OpenTK.Platform.Native.Windows.CursorComponent.GetHotspot(OpenTK.Platform.CursorHandle, out int, out int) nameWithType.vb: CursorComponent.GetHotspot(CursorHandle, Integer, Integer) - fullName.vb: OpenTK.Platform.Native.Windows.CursorComponent.GetHotspot(OpenTK.Core.Platform.CursorHandle, Integer, Integer) + fullName.vb: OpenTK.Platform.Native.Windows.CursorComponent.GetHotspot(OpenTK.Platform.CursorHandle, Integer, Integer) name.vb: GetHotspot(CursorHandle, Integer, Integer) spec.csharp: - - uid: OpenTK.Platform.Native.Windows.CursorComponent.GetHotspot(OpenTK.Core.Platform.CursorHandle,System.Int32@,System.Int32@) + - uid: OpenTK.Platform.Native.Windows.CursorComponent.GetHotspot(OpenTK.Platform.CursorHandle,System.Int32@,System.Int32@) name: GetHotspot - href: OpenTK.Platform.Native.Windows.CursorComponent.html#OpenTK_Platform_Native_Windows_CursorComponent_GetHotspot_OpenTK_Core_Platform_CursorHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.Native.Windows.CursorComponent.html#OpenTK_Platform_Native_Windows_CursorComponent_GetHotspot_OpenTK_Platform_CursorHandle_System_Int32__System_Int32__ - name: ( - - uid: OpenTK.Core.Platform.CursorHandle + - uid: OpenTK.Platform.CursorHandle name: CursorHandle - href: OpenTK.Core.Platform.CursorHandle.html + href: OpenTK.Platform.CursorHandle.html - name: ',' - name: " " - name: out @@ -1841,13 +1761,13 @@ references: href: https://learn.microsoft.com/dotnet/api/system.int32 - name: ) spec.vb: - - uid: OpenTK.Platform.Native.Windows.CursorComponent.GetHotspot(OpenTK.Core.Platform.CursorHandle,System.Int32@,System.Int32@) + - uid: OpenTK.Platform.Native.Windows.CursorComponent.GetHotspot(OpenTK.Platform.CursorHandle,System.Int32@,System.Int32@) name: GetHotspot - href: OpenTK.Platform.Native.Windows.CursorComponent.html#OpenTK_Platform_Native_Windows_CursorComponent_GetHotspot_OpenTK_Core_Platform_CursorHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.Native.Windows.CursorComponent.html#OpenTK_Platform_Native_Windows_CursorComponent_GetHotspot_OpenTK_Platform_CursorHandle_System_Int32__System_Int32__ - name: ( - - uid: OpenTK.Core.Platform.CursorHandle + - uid: OpenTK.Platform.CursorHandle name: CursorHandle - href: OpenTK.Core.Platform.CursorHandle.html + href: OpenTK.Platform.CursorHandle.html - name: ',' - name: " " - uid: System.Int32 @@ -1912,81 +1832,81 @@ references: fullName: System.ArgumentNullException - uid: OpenTK.Platform.Native.Windows.CursorComponent.Destroy* commentId: Overload:OpenTK.Platform.Native.Windows.CursorComponent.Destroy - href: OpenTK.Platform.Native.Windows.CursorComponent.html#OpenTK_Platform_Native_Windows_CursorComponent_Destroy_OpenTK_Core_Platform_CursorHandle_ + href: OpenTK.Platform.Native.Windows.CursorComponent.html#OpenTK_Platform_Native_Windows_CursorComponent_Destroy_OpenTK_Platform_CursorHandle_ name: Destroy nameWithType: CursorComponent.Destroy fullName: OpenTK.Platform.Native.Windows.CursorComponent.Destroy -- uid: OpenTK.Core.Platform.ICursorComponent.Destroy(OpenTK.Core.Platform.CursorHandle) - commentId: M:OpenTK.Core.Platform.ICursorComponent.Destroy(OpenTK.Core.Platform.CursorHandle) - parent: OpenTK.Core.Platform.ICursorComponent - href: OpenTK.Core.Platform.ICursorComponent.html#OpenTK_Core_Platform_ICursorComponent_Destroy_OpenTK_Core_Platform_CursorHandle_ +- uid: OpenTK.Platform.ICursorComponent.Destroy(OpenTK.Platform.CursorHandle) + commentId: M:OpenTK.Platform.ICursorComponent.Destroy(OpenTK.Platform.CursorHandle) + parent: OpenTK.Platform.ICursorComponent + href: OpenTK.Platform.ICursorComponent.html#OpenTK_Platform_ICursorComponent_Destroy_OpenTK_Platform_CursorHandle_ name: Destroy(CursorHandle) nameWithType: ICursorComponent.Destroy(CursorHandle) - fullName: OpenTK.Core.Platform.ICursorComponent.Destroy(OpenTK.Core.Platform.CursorHandle) + fullName: OpenTK.Platform.ICursorComponent.Destroy(OpenTK.Platform.CursorHandle) spec.csharp: - - uid: OpenTK.Core.Platform.ICursorComponent.Destroy(OpenTK.Core.Platform.CursorHandle) + - uid: OpenTK.Platform.ICursorComponent.Destroy(OpenTK.Platform.CursorHandle) name: Destroy - href: OpenTK.Core.Platform.ICursorComponent.html#OpenTK_Core_Platform_ICursorComponent_Destroy_OpenTK_Core_Platform_CursorHandle_ + href: OpenTK.Platform.ICursorComponent.html#OpenTK_Platform_ICursorComponent_Destroy_OpenTK_Platform_CursorHandle_ - name: ( - - uid: OpenTK.Core.Platform.CursorHandle + - uid: OpenTK.Platform.CursorHandle name: CursorHandle - href: OpenTK.Core.Platform.CursorHandle.html + href: OpenTK.Platform.CursorHandle.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.ICursorComponent.Destroy(OpenTK.Core.Platform.CursorHandle) + - uid: OpenTK.Platform.ICursorComponent.Destroy(OpenTK.Platform.CursorHandle) name: Destroy - href: OpenTK.Core.Platform.ICursorComponent.html#OpenTK_Core_Platform_ICursorComponent_Destroy_OpenTK_Core_Platform_CursorHandle_ + href: OpenTK.Platform.ICursorComponent.html#OpenTK_Platform_ICursorComponent_Destroy_OpenTK_Platform_CursorHandle_ - name: ( - - uid: OpenTK.Core.Platform.CursorHandle + - uid: OpenTK.Platform.CursorHandle name: CursorHandle - href: OpenTK.Core.Platform.CursorHandle.html + href: OpenTK.Platform.CursorHandle.html - name: ) - uid: OpenTK.Platform.Native.Windows.CursorComponent.IsSystemCursor* commentId: Overload:OpenTK.Platform.Native.Windows.CursorComponent.IsSystemCursor - href: OpenTK.Platform.Native.Windows.CursorComponent.html#OpenTK_Platform_Native_Windows_CursorComponent_IsSystemCursor_OpenTK_Core_Platform_CursorHandle_ + href: OpenTK.Platform.Native.Windows.CursorComponent.html#OpenTK_Platform_Native_Windows_CursorComponent_IsSystemCursor_OpenTK_Platform_CursorHandle_ name: IsSystemCursor nameWithType: CursorComponent.IsSystemCursor fullName: OpenTK.Platform.Native.Windows.CursorComponent.IsSystemCursor -- uid: OpenTK.Core.Platform.ICursorComponent.IsSystemCursor(OpenTK.Core.Platform.CursorHandle) - commentId: M:OpenTK.Core.Platform.ICursorComponent.IsSystemCursor(OpenTK.Core.Platform.CursorHandle) - parent: OpenTK.Core.Platform.ICursorComponent - href: OpenTK.Core.Platform.ICursorComponent.html#OpenTK_Core_Platform_ICursorComponent_IsSystemCursor_OpenTK_Core_Platform_CursorHandle_ +- uid: OpenTK.Platform.ICursorComponent.IsSystemCursor(OpenTK.Platform.CursorHandle) + commentId: M:OpenTK.Platform.ICursorComponent.IsSystemCursor(OpenTK.Platform.CursorHandle) + parent: OpenTK.Platform.ICursorComponent + href: OpenTK.Platform.ICursorComponent.html#OpenTK_Platform_ICursorComponent_IsSystemCursor_OpenTK_Platform_CursorHandle_ name: IsSystemCursor(CursorHandle) nameWithType: ICursorComponent.IsSystemCursor(CursorHandle) - fullName: OpenTK.Core.Platform.ICursorComponent.IsSystemCursor(OpenTK.Core.Platform.CursorHandle) + fullName: OpenTK.Platform.ICursorComponent.IsSystemCursor(OpenTK.Platform.CursorHandle) spec.csharp: - - uid: OpenTK.Core.Platform.ICursorComponent.IsSystemCursor(OpenTK.Core.Platform.CursorHandle) + - uid: OpenTK.Platform.ICursorComponent.IsSystemCursor(OpenTK.Platform.CursorHandle) name: IsSystemCursor - href: OpenTK.Core.Platform.ICursorComponent.html#OpenTK_Core_Platform_ICursorComponent_IsSystemCursor_OpenTK_Core_Platform_CursorHandle_ + href: OpenTK.Platform.ICursorComponent.html#OpenTK_Platform_ICursorComponent_IsSystemCursor_OpenTK_Platform_CursorHandle_ - name: ( - - uid: OpenTK.Core.Platform.CursorHandle + - uid: OpenTK.Platform.CursorHandle name: CursorHandle - href: OpenTK.Core.Platform.CursorHandle.html + href: OpenTK.Platform.CursorHandle.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.ICursorComponent.IsSystemCursor(OpenTK.Core.Platform.CursorHandle) + - uid: OpenTK.Platform.ICursorComponent.IsSystemCursor(OpenTK.Platform.CursorHandle) name: IsSystemCursor - href: OpenTK.Core.Platform.ICursorComponent.html#OpenTK_Core_Platform_ICursorComponent_IsSystemCursor_OpenTK_Core_Platform_CursorHandle_ + href: OpenTK.Platform.ICursorComponent.html#OpenTK_Platform_ICursorComponent_IsSystemCursor_OpenTK_Platform_CursorHandle_ - name: ( - - uid: OpenTK.Core.Platform.CursorHandle + - uid: OpenTK.Platform.CursorHandle name: CursorHandle - href: OpenTK.Core.Platform.CursorHandle.html + href: OpenTK.Platform.CursorHandle.html - name: ) - uid: OpenTK.Platform.Native.Windows.CursorComponent.GetSize* commentId: Overload:OpenTK.Platform.Native.Windows.CursorComponent.GetSize - href: OpenTK.Platform.Native.Windows.CursorComponent.html#OpenTK_Platform_Native_Windows_CursorComponent_GetSize_OpenTK_Core_Platform_CursorHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.Native.Windows.CursorComponent.html#OpenTK_Platform_Native_Windows_CursorComponent_GetSize_OpenTK_Platform_CursorHandle_System_Int32__System_Int32__ name: GetSize nameWithType: CursorComponent.GetSize fullName: OpenTK.Platform.Native.Windows.CursorComponent.GetSize - uid: OpenTK.Platform.Native.Windows.CursorComponent.GetHotspot* commentId: Overload:OpenTK.Platform.Native.Windows.CursorComponent.GetHotspot - href: OpenTK.Platform.Native.Windows.CursorComponent.html#OpenTK_Platform_Native_Windows_CursorComponent_GetHotspot_OpenTK_Core_Platform_CursorHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.Native.Windows.CursorComponent.html#OpenTK_Platform_Native_Windows_CursorComponent_GetHotspot_OpenTK_Platform_CursorHandle_System_Int32__System_Int32__ name: GetHotspot nameWithType: CursorComponent.GetHotspot fullName: OpenTK.Platform.Native.Windows.CursorComponent.GetHotspot - uid: OpenTK.Platform.Native.Windows.CursorComponent.GetImage* commentId: Overload:OpenTK.Platform.Native.Windows.CursorComponent.GetImage - href: OpenTK.Platform.Native.Windows.CursorComponent.html#OpenTK_Platform_Native_Windows_CursorComponent_GetImage_OpenTK_Core_Platform_CursorHandle_System_Span_System_Byte__ + href: OpenTK.Platform.Native.Windows.CursorComponent.html#OpenTK_Platform_Native_Windows_CursorComponent_GetImage_OpenTK_Platform_CursorHandle_System_Span_System_Byte__ name: GetImage nameWithType: CursorComponent.GetImage fullName: OpenTK.Platform.Native.Windows.CursorComponent.GetImage diff --git a/api/OpenTK.Platform.Native.Windows.DialogComponent.yml b/api/OpenTK.Platform.Native.Windows.DialogComponent.yml index 650992d3..c64437ed 100644 --- a/api/OpenTK.Platform.Native.Windows.DialogComponent.yml +++ b/api/OpenTK.Platform.Native.Windows.DialogComponent.yml @@ -6,12 +6,13 @@ items: parent: OpenTK.Platform.Native.Windows children: - OpenTK.Platform.Native.Windows.DialogComponent.CanTargetFolders - - OpenTK.Platform.Native.Windows.DialogComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + - OpenTK.Platform.Native.Windows.DialogComponent.Initialize(OpenTK.Platform.ToolkitOptions) - OpenTK.Platform.Native.Windows.DialogComponent.Logger - OpenTK.Platform.Native.Windows.DialogComponent.Name - OpenTK.Platform.Native.Windows.DialogComponent.Provides - - OpenTK.Platform.Native.Windows.DialogComponent.ShowOpenDialog(OpenTK.Core.Platform.WindowHandle,System.String,System.String,OpenTK.Core.Platform.DialogFileFilter[],OpenTK.Core.Platform.OpenDialogOptions) - - OpenTK.Platform.Native.Windows.DialogComponent.ShowSaveDialog(OpenTK.Core.Platform.WindowHandle,System.String,System.String,OpenTK.Core.Platform.DialogFileFilter[],OpenTK.Core.Platform.SaveDialogOptions) + - OpenTK.Platform.Native.Windows.DialogComponent.ShowMessageBox(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.MessageBoxType,OpenTK.Platform.IconHandle) + - OpenTK.Platform.Native.Windows.DialogComponent.ShowOpenDialog(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.DialogFileFilter[],OpenTK.Platform.OpenDialogOptions) + - OpenTK.Platform.Native.Windows.DialogComponent.ShowSaveDialog(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.DialogFileFilter[],OpenTK.Platform.SaveDialogOptions) langs: - csharp - vb @@ -20,15 +21,11 @@ items: fullName: OpenTK.Platform.Native.Windows.DialogComponent type: Class source: - remote: - path: src/OpenTK.Platform.Native/Windows/DialogComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DialogComponent - path: opentk/src/OpenTK.Platform.Native/Windows/DialogComponent.cs - startLine: 202 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\DialogComponent.cs + startLine: 13 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows syntax: content: 'public class DialogComponent : IDialogComponent, IPalComponent' @@ -36,8 +33,8 @@ items: inheritance: - System.Object implements: - - OpenTK.Core.Platform.IDialogComponent - - OpenTK.Core.Platform.IPalComponent + - OpenTK.Platform.IDialogComponent + - OpenTK.Platform.IPalComponent inheritedMembers: - System.Object.Equals(System.Object) - System.Object.Equals(System.Object,System.Object) @@ -58,15 +55,11 @@ items: fullName: OpenTK.Platform.Native.Windows.DialogComponent.Name type: Property source: - remote: - path: src/OpenTK.Platform.Native/Windows/DialogComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Name - path: opentk/src/OpenTK.Platform.Native/Windows/DialogComponent.cs - startLine: 205 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\DialogComponent.cs + startLine: 16 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: Name of the abstraction layer component. example: [] @@ -78,7 +71,7 @@ items: content.vb: Public ReadOnly Property Name As String overload: OpenTK.Platform.Native.Windows.DialogComponent.Name* implements: - - OpenTK.Core.Platform.IPalComponent.Name + - OpenTK.Platform.IPalComponent.Name - uid: OpenTK.Platform.Native.Windows.DialogComponent.Provides commentId: P:OpenTK.Platform.Native.Windows.DialogComponent.Provides id: Provides @@ -91,15 +84,11 @@ items: fullName: OpenTK.Platform.Native.Windows.DialogComponent.Provides type: Property source: - remote: - path: src/OpenTK.Platform.Native/Windows/DialogComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Provides - path: opentk/src/OpenTK.Platform.Native/Windows/DialogComponent.cs - startLine: 208 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\DialogComponent.cs + startLine: 19 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: Specifies which PAL components this object provides. example: [] @@ -107,11 +96,11 @@ items: content: public PalComponents Provides { get; } parameters: [] return: - type: OpenTK.Core.Platform.PalComponents + type: OpenTK.Platform.PalComponents content.vb: Public ReadOnly Property Provides As PalComponents overload: OpenTK.Platform.Native.Windows.DialogComponent.Provides* implements: - - OpenTK.Core.Platform.IPalComponent.Provides + - OpenTK.Platform.IPalComponent.Provides - uid: OpenTK.Platform.Native.Windows.DialogComponent.Logger commentId: P:OpenTK.Platform.Native.Windows.DialogComponent.Logger id: Logger @@ -124,15 +113,11 @@ items: fullName: OpenTK.Platform.Native.Windows.DialogComponent.Logger type: Property source: - remote: - path: src/OpenTK.Platform.Native/Windows/DialogComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Logger - path: opentk/src/OpenTK.Platform.Native/Windows/DialogComponent.cs - startLine: 211 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\DialogComponent.cs + startLine: 22 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: Provides a logger for this component. example: [] @@ -144,28 +129,24 @@ items: content.vb: Public Property Logger As ILogger overload: OpenTK.Platform.Native.Windows.DialogComponent.Logger* implements: - - OpenTK.Core.Platform.IPalComponent.Logger -- uid: OpenTK.Platform.Native.Windows.DialogComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - commentId: M:OpenTK.Platform.Native.Windows.DialogComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - id: Initialize(OpenTK.Core.Platform.ToolkitOptions) + - OpenTK.Platform.IPalComponent.Logger +- uid: OpenTK.Platform.Native.Windows.DialogComponent.Initialize(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Native.Windows.DialogComponent.Initialize(OpenTK.Platform.ToolkitOptions) + id: Initialize(OpenTK.Platform.ToolkitOptions) parent: OpenTK.Platform.Native.Windows.DialogComponent langs: - csharp - vb name: Initialize(ToolkitOptions) nameWithType: DialogComponent.Initialize(ToolkitOptions) - fullName: OpenTK.Platform.Native.Windows.DialogComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + fullName: OpenTK.Platform.Native.Windows.DialogComponent.Initialize(OpenTK.Platform.ToolkitOptions) type: Method source: - remote: - path: src/OpenTK.Platform.Native/Windows/DialogComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Initialize - path: opentk/src/OpenTK.Platform.Native/Windows/DialogComponent.cs - startLine: 214 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\DialogComponent.cs + startLine: 28 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: Initialize the component. example: [] @@ -173,12 +154,12 @@ items: content: public void Initialize(ToolkitOptions options) parameters: - id: options - type: OpenTK.Core.Platform.ToolkitOptions + type: OpenTK.Platform.ToolkitOptions description: The options to initialize the component with. content.vb: Public Sub Initialize(options As ToolkitOptions) overload: OpenTK.Platform.Native.Windows.DialogComponent.Initialize* implements: - - OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + - OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) - uid: OpenTK.Platform.Native.Windows.DialogComponent.CanTargetFolders commentId: P:OpenTK.Platform.Native.Windows.DialogComponent.CanTargetFolders id: CanTargetFolders @@ -191,18 +172,14 @@ items: fullName: OpenTK.Platform.Native.Windows.DialogComponent.CanTargetFolders type: Property source: - remote: - path: src/OpenTK.Platform.Native/Windows/DialogComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CanTargetFolders - path: opentk/src/OpenTK.Platform.Native/Windows/DialogComponent.cs - startLine: 219 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\DialogComponent.cs + startLine: 118 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: >- - If the value of this property is true and will work. + If the value of this property is true will work. Otherwise these flags will be ignored. example: [] @@ -213,97 +190,173 @@ items: type: System.Boolean content.vb: Public ReadOnly Property CanTargetFolders As Boolean overload: OpenTK.Platform.Native.Windows.DialogComponent.CanTargetFolders* + seealso: + - linkId: OpenTK.Platform.OpenDialogOptions.SelectDirectory + commentId: F:OpenTK.Platform.OpenDialogOptions.SelectDirectory + - linkId: OpenTK.Platform.IDialogComponent.ShowOpenDialog(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.DialogFileFilter[],OpenTK.Platform.OpenDialogOptions) + commentId: M:OpenTK.Platform.IDialogComponent.ShowOpenDialog(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.DialogFileFilter[],OpenTK.Platform.OpenDialogOptions) implements: - - OpenTK.Core.Platform.IDialogComponent.CanTargetFolders -- uid: OpenTK.Platform.Native.Windows.DialogComponent.ShowOpenDialog(OpenTK.Core.Platform.WindowHandle,System.String,System.String,OpenTK.Core.Platform.DialogFileFilter[],OpenTK.Core.Platform.OpenDialogOptions) - commentId: M:OpenTK.Platform.Native.Windows.DialogComponent.ShowOpenDialog(OpenTK.Core.Platform.WindowHandle,System.String,System.String,OpenTK.Core.Platform.DialogFileFilter[],OpenTK.Core.Platform.OpenDialogOptions) - id: ShowOpenDialog(OpenTK.Core.Platform.WindowHandle,System.String,System.String,OpenTK.Core.Platform.DialogFileFilter[],OpenTK.Core.Platform.OpenDialogOptions) + - OpenTK.Platform.IDialogComponent.CanTargetFolders +- uid: OpenTK.Platform.Native.Windows.DialogComponent.ShowMessageBox(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.MessageBoxType,OpenTK.Platform.IconHandle) + commentId: M:OpenTK.Platform.Native.Windows.DialogComponent.ShowMessageBox(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.MessageBoxType,OpenTK.Platform.IconHandle) + id: ShowMessageBox(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.MessageBoxType,OpenTK.Platform.IconHandle) + parent: OpenTK.Platform.Native.Windows.DialogComponent + langs: + - csharp + - vb + name: ShowMessageBox(WindowHandle, string, string, MessageBoxType, IconHandle?) + nameWithType: DialogComponent.ShowMessageBox(WindowHandle, string, string, MessageBoxType, IconHandle?) + fullName: OpenTK.Platform.Native.Windows.DialogComponent.ShowMessageBox(OpenTK.Platform.WindowHandle, string, string, OpenTK.Platform.MessageBoxType, OpenTK.Platform.IconHandle?) + type: Method + source: + id: ShowMessageBox + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\DialogComponent.cs + startLine: 121 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform.Native.Windows + summary: Shows a modal message box. + example: [] + syntax: + content: public MessageBoxButton ShowMessageBox(WindowHandle parent, string title, string content, MessageBoxType messageBoxType, IconHandle? customIcon = null) + parameters: + - id: parent + type: OpenTK.Platform.WindowHandle + description: The parent window for which this dialog is modal. + - id: title + type: System.String + description: The title of the dialog box. + - id: content + type: System.String + description: The content text of the dialog box. + - id: messageBoxType + type: OpenTK.Platform.MessageBoxType + description: The type of message box. Determines button layout and default icon. + - id: customIcon + type: OpenTK.Platform.IconHandle + description: An optional custom icon to use instead of the default one. + return: + type: OpenTK.Platform.MessageBoxButton + description: The pressed message box button. + content.vb: Public Function ShowMessageBox(parent As WindowHandle, title As String, content As String, messageBoxType As MessageBoxType, customIcon As IconHandle = Nothing) As MessageBoxButton + overload: OpenTK.Platform.Native.Windows.DialogComponent.ShowMessageBox* + implements: + - OpenTK.Platform.IDialogComponent.ShowMessageBox(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.MessageBoxType,OpenTK.Platform.IconHandle) + nameWithType.vb: DialogComponent.ShowMessageBox(WindowHandle, String, String, MessageBoxType, IconHandle) + fullName.vb: OpenTK.Platform.Native.Windows.DialogComponent.ShowMessageBox(OpenTK.Platform.WindowHandle, String, String, OpenTK.Platform.MessageBoxType, OpenTK.Platform.IconHandle) + name.vb: ShowMessageBox(WindowHandle, String, String, MessageBoxType, IconHandle) +- uid: OpenTK.Platform.Native.Windows.DialogComponent.ShowOpenDialog(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.DialogFileFilter[],OpenTK.Platform.OpenDialogOptions) + commentId: M:OpenTK.Platform.Native.Windows.DialogComponent.ShowOpenDialog(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.DialogFileFilter[],OpenTK.Platform.OpenDialogOptions) + id: ShowOpenDialog(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.DialogFileFilter[],OpenTK.Platform.OpenDialogOptions) parent: OpenTK.Platform.Native.Windows.DialogComponent langs: - csharp - vb name: ShowOpenDialog(WindowHandle, string, string, DialogFileFilter[]?, OpenDialogOptions) nameWithType: DialogComponent.ShowOpenDialog(WindowHandle, string, string, DialogFileFilter[]?, OpenDialogOptions) - fullName: OpenTK.Platform.Native.Windows.DialogComponent.ShowOpenDialog(OpenTK.Core.Platform.WindowHandle, string, string, OpenTK.Core.Platform.DialogFileFilter[]?, OpenTK.Core.Platform.OpenDialogOptions) + fullName: OpenTK.Platform.Native.Windows.DialogComponent.ShowOpenDialog(OpenTK.Platform.WindowHandle, string, string, OpenTK.Platform.DialogFileFilter[]?, OpenTK.Platform.OpenDialogOptions) type: Method source: - remote: - path: src/OpenTK.Platform.Native/Windows/DialogComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ShowOpenDialog - path: opentk/src/OpenTK.Platform.Native/Windows/DialogComponent.cs - startLine: 300 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\DialogComponent.cs + startLine: 324 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows + summary: Shows a modal "open file/folder" dialog. example: [] syntax: content: public List? ShowOpenDialog(WindowHandle parent, string title, string directory, DialogFileFilter[]? allowedExtensions, OpenDialogOptions options) parameters: - id: parent - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle + description: The parent window handle for which this dialog will be modal. - id: title type: System.String + description: The title of the dialog. - id: directory type: System.String + description: The start directory of the file dialog. - id: allowedExtensions - type: OpenTK.Core.Platform.DialogFileFilter[] + type: OpenTK.Platform.DialogFileFilter[] + description: A list of file filters that filter valid files to open. See for more info. - id: options - type: OpenTK.Core.Platform.OpenDialogOptions + type: OpenTK.Platform.OpenDialogOptions + description: Additional options for the file dialog (e.g. for allowing multiple files to be selected.) return: type: System.Collections.Generic.List{System.String} + description: >- + A list of selected files or null if no files where selected. + + If is not specified the list will only contain a single element. content.vb: Public Function ShowOpenDialog(parent As WindowHandle, title As String, directory As String, allowedExtensions As DialogFileFilter(), options As OpenDialogOptions) As List(Of String) overload: OpenTK.Platform.Native.Windows.DialogComponent.ShowOpenDialog* + seealso: + - linkId: OpenTK.Platform.DialogFileFilter + commentId: T:OpenTK.Platform.DialogFileFilter + - linkId: OpenTK.Platform.OpenDialogOptions + commentId: T:OpenTK.Platform.OpenDialogOptions + - linkId: OpenTK.Platform.IDialogComponent.ShowSaveDialog(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.DialogFileFilter[],OpenTK.Platform.SaveDialogOptions) + commentId: M:OpenTK.Platform.IDialogComponent.ShowSaveDialog(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.DialogFileFilter[],OpenTK.Platform.SaveDialogOptions) + - linkId: OpenTK.Platform.IDialogComponent.CanTargetFolders + commentId: P:OpenTK.Platform.IDialogComponent.CanTargetFolders implements: - - OpenTK.Core.Platform.IDialogComponent.ShowOpenDialog(OpenTK.Core.Platform.WindowHandle,System.String,System.String,OpenTK.Core.Platform.DialogFileFilter[],OpenTK.Core.Platform.OpenDialogOptions) + - OpenTK.Platform.IDialogComponent.ShowOpenDialog(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.DialogFileFilter[],OpenTK.Platform.OpenDialogOptions) nameWithType.vb: DialogComponent.ShowOpenDialog(WindowHandle, String, String, DialogFileFilter(), OpenDialogOptions) - fullName.vb: OpenTK.Platform.Native.Windows.DialogComponent.ShowOpenDialog(OpenTK.Core.Platform.WindowHandle, String, String, OpenTK.Core.Platform.DialogFileFilter(), OpenTK.Core.Platform.OpenDialogOptions) + fullName.vb: OpenTK.Platform.Native.Windows.DialogComponent.ShowOpenDialog(OpenTK.Platform.WindowHandle, String, String, OpenTK.Platform.DialogFileFilter(), OpenTK.Platform.OpenDialogOptions) name.vb: ShowOpenDialog(WindowHandle, String, String, DialogFileFilter(), OpenDialogOptions) -- uid: OpenTK.Platform.Native.Windows.DialogComponent.ShowSaveDialog(OpenTK.Core.Platform.WindowHandle,System.String,System.String,OpenTK.Core.Platform.DialogFileFilter[],OpenTK.Core.Platform.SaveDialogOptions) - commentId: M:OpenTK.Platform.Native.Windows.DialogComponent.ShowSaveDialog(OpenTK.Core.Platform.WindowHandle,System.String,System.String,OpenTK.Core.Platform.DialogFileFilter[],OpenTK.Core.Platform.SaveDialogOptions) - id: ShowSaveDialog(OpenTK.Core.Platform.WindowHandle,System.String,System.String,OpenTK.Core.Platform.DialogFileFilter[],OpenTK.Core.Platform.SaveDialogOptions) +- uid: OpenTK.Platform.Native.Windows.DialogComponent.ShowSaveDialog(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.DialogFileFilter[],OpenTK.Platform.SaveDialogOptions) + commentId: M:OpenTK.Platform.Native.Windows.DialogComponent.ShowSaveDialog(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.DialogFileFilter[],OpenTK.Platform.SaveDialogOptions) + id: ShowSaveDialog(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.DialogFileFilter[],OpenTK.Platform.SaveDialogOptions) parent: OpenTK.Platform.Native.Windows.DialogComponent langs: - csharp - vb name: ShowSaveDialog(WindowHandle, string, string, DialogFileFilter[]?, SaveDialogOptions) nameWithType: DialogComponent.ShowSaveDialog(WindowHandle, string, string, DialogFileFilter[]?, SaveDialogOptions) - fullName: OpenTK.Platform.Native.Windows.DialogComponent.ShowSaveDialog(OpenTK.Core.Platform.WindowHandle, string, string, OpenTK.Core.Platform.DialogFileFilter[]?, OpenTK.Core.Platform.SaveDialogOptions) + fullName: OpenTK.Platform.Native.Windows.DialogComponent.ShowSaveDialog(OpenTK.Platform.WindowHandle, string, string, OpenTK.Platform.DialogFileFilter[]?, OpenTK.Platform.SaveDialogOptions) type: Method source: - remote: - path: src/OpenTK.Platform.Native/Windows/DialogComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ShowSaveDialog - path: opentk/src/OpenTK.Platform.Native/Windows/DialogComponent.cs - startLine: 393 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\DialogComponent.cs + startLine: 417 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows + summary: Shows a modal "save file" dialog. example: [] syntax: content: public string? ShowSaveDialog(WindowHandle parent, string title, string directory, DialogFileFilter[]? allowedExtensions, SaveDialogOptions options) parameters: - id: parent - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle + description: The parent window handle for which this dialog will be modal. - id: title type: System.String + description: The title of the dialog. - id: directory type: System.String + description: The starting directory of the file dialog. - id: allowedExtensions - type: OpenTK.Core.Platform.DialogFileFilter[] + type: OpenTK.Platform.DialogFileFilter[] + description: A list of file filters that filter valid file extensions to save as. See for more info. - id: options - type: OpenTK.Core.Platform.SaveDialogOptions + type: OpenTK.Platform.SaveDialogOptions + description: Additional options for the file dialog. return: type: System.String + description: The path to the selected save file, or null if no file was selected. content.vb: Public Function ShowSaveDialog(parent As WindowHandle, title As String, directory As String, allowedExtensions As DialogFileFilter(), options As SaveDialogOptions) As String overload: OpenTK.Platform.Native.Windows.DialogComponent.ShowSaveDialog* + seealso: + - linkId: OpenTK.Platform.DialogFileFilter + commentId: T:OpenTK.Platform.DialogFileFilter + - linkId: OpenTK.Platform.SaveDialogOptions + commentId: T:OpenTK.Platform.SaveDialogOptions implements: - - OpenTK.Core.Platform.IDialogComponent.ShowSaveDialog(OpenTK.Core.Platform.WindowHandle,System.String,System.String,OpenTK.Core.Platform.DialogFileFilter[],OpenTK.Core.Platform.SaveDialogOptions) + - OpenTK.Platform.IDialogComponent.ShowSaveDialog(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.DialogFileFilter[],OpenTK.Platform.SaveDialogOptions) nameWithType.vb: DialogComponent.ShowSaveDialog(WindowHandle, String, String, DialogFileFilter(), SaveDialogOptions) - fullName.vb: OpenTK.Platform.Native.Windows.DialogComponent.ShowSaveDialog(OpenTK.Core.Platform.WindowHandle, String, String, OpenTK.Core.Platform.DialogFileFilter(), OpenTK.Core.Platform.SaveDialogOptions) + fullName.vb: OpenTK.Platform.Native.Windows.DialogComponent.ShowSaveDialog(OpenTK.Platform.WindowHandle, String, String, OpenTK.Platform.DialogFileFilter(), OpenTK.Platform.SaveDialogOptions) name.vb: ShowSaveDialog(WindowHandle, String, String, DialogFileFilter(), SaveDialogOptions) references: - uid: OpenTK.Platform.Native.Windows @@ -355,20 +408,20 @@ references: nameWithType.vb: Object fullName.vb: Object name.vb: Object -- uid: OpenTK.Core.Platform.IDialogComponent - commentId: T:OpenTK.Core.Platform.IDialogComponent - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.IDialogComponent.html +- uid: OpenTK.Platform.IDialogComponent + commentId: T:OpenTK.Platform.IDialogComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IDialogComponent.html name: IDialogComponent nameWithType: IDialogComponent - fullName: OpenTK.Core.Platform.IDialogComponent -- uid: OpenTK.Core.Platform.IPalComponent - commentId: T:OpenTK.Core.Platform.IPalComponent - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.IPalComponent.html + fullName: OpenTK.Platform.IDialogComponent +- uid: OpenTK.Platform.IPalComponent + commentId: T:OpenTK.Platform.IPalComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IPalComponent.html name: IPalComponent nameWithType: IPalComponent - fullName: OpenTK.Core.Platform.IPalComponent + fullName: OpenTK.Platform.IPalComponent - uid: System.Object.Equals(System.Object) commentId: M:System.Object.Equals(System.Object) parent: System.Object @@ -595,49 +648,41 @@ references: name: System nameWithType: System fullName: System -- uid: OpenTK.Core.Platform - commentId: N:OpenTK.Core.Platform +- uid: OpenTK.Platform + commentId: N:OpenTK.Platform href: OpenTK.html - name: OpenTK.Core.Platform - nameWithType: OpenTK.Core.Platform - fullName: OpenTK.Core.Platform + name: OpenTK.Platform + nameWithType: OpenTK.Platform + fullName: OpenTK.Platform spec.csharp: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html spec.vb: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html - uid: OpenTK.Platform.Native.Windows.DialogComponent.Name* commentId: Overload:OpenTK.Platform.Native.Windows.DialogComponent.Name href: OpenTK.Platform.Native.Windows.DialogComponent.html#OpenTK_Platform_Native_Windows_DialogComponent_Name name: Name nameWithType: DialogComponent.Name fullName: OpenTK.Platform.Native.Windows.DialogComponent.Name -- uid: OpenTK.Core.Platform.IPalComponent.Name - commentId: P:OpenTK.Core.Platform.IPalComponent.Name - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Name +- uid: OpenTK.Platform.IPalComponent.Name + commentId: P:OpenTK.Platform.IPalComponent.Name + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Name name: Name nameWithType: IPalComponent.Name - fullName: OpenTK.Core.Platform.IPalComponent.Name + fullName: OpenTK.Platform.IPalComponent.Name - uid: System.String commentId: T:System.String parent: System @@ -655,33 +700,33 @@ references: name: Provides nameWithType: DialogComponent.Provides fullName: OpenTK.Platform.Native.Windows.DialogComponent.Provides -- uid: OpenTK.Core.Platform.IPalComponent.Provides - commentId: P:OpenTK.Core.Platform.IPalComponent.Provides - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Provides +- uid: OpenTK.Platform.IPalComponent.Provides + commentId: P:OpenTK.Platform.IPalComponent.Provides + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Provides name: Provides nameWithType: IPalComponent.Provides - fullName: OpenTK.Core.Platform.IPalComponent.Provides -- uid: OpenTK.Core.Platform.PalComponents - commentId: T:OpenTK.Core.Platform.PalComponents - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.PalComponents.html + fullName: OpenTK.Platform.IPalComponent.Provides +- uid: OpenTK.Platform.PalComponents + commentId: T:OpenTK.Platform.PalComponents + parent: OpenTK.Platform + href: OpenTK.Platform.PalComponents.html name: PalComponents nameWithType: PalComponents - fullName: OpenTK.Core.Platform.PalComponents + fullName: OpenTK.Platform.PalComponents - uid: OpenTK.Platform.Native.Windows.DialogComponent.Logger* commentId: Overload:OpenTK.Platform.Native.Windows.DialogComponent.Logger href: OpenTK.Platform.Native.Windows.DialogComponent.html#OpenTK_Platform_Native_Windows_DialogComponent_Logger name: Logger nameWithType: DialogComponent.Logger fullName: OpenTK.Platform.Native.Windows.DialogComponent.Logger -- uid: OpenTK.Core.Platform.IPalComponent.Logger - commentId: P:OpenTK.Core.Platform.IPalComponent.Logger - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Logger +- uid: OpenTK.Platform.IPalComponent.Logger + commentId: P:OpenTK.Platform.IPalComponent.Logger + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Logger name: Logger nameWithType: IPalComponent.Logger - fullName: OpenTK.Core.Platform.IPalComponent.Logger + fullName: OpenTK.Platform.IPalComponent.Logger - uid: OpenTK.Core.Utility.ILogger commentId: T:OpenTK.Core.Utility.ILogger parent: OpenTK.Core.Utility @@ -721,61 +766,138 @@ references: href: OpenTK.Core.Utility.html - uid: OpenTK.Platform.Native.Windows.DialogComponent.Initialize* commentId: Overload:OpenTK.Platform.Native.Windows.DialogComponent.Initialize - href: OpenTK.Platform.Native.Windows.DialogComponent.html#OpenTK_Platform_Native_Windows_DialogComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + href: OpenTK.Platform.Native.Windows.DialogComponent.html#OpenTK_Platform_Native_Windows_DialogComponent_Initialize_OpenTK_Platform_ToolkitOptions_ name: Initialize nameWithType: DialogComponent.Initialize fullName: OpenTK.Platform.Native.Windows.DialogComponent.Initialize -- uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - commentId: M:OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ +- uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ name: Initialize(ToolkitOptions) nameWithType: IPalComponent.Initialize(ToolkitOptions) - fullName: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + fullName: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) spec.csharp: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + - uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.ToolkitOptions + - uid: OpenTK.Platform.ToolkitOptions name: ToolkitOptions - href: OpenTK.Core.Platform.ToolkitOptions.html + href: OpenTK.Platform.ToolkitOptions.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + - uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.ToolkitOptions + - uid: OpenTK.Platform.ToolkitOptions name: ToolkitOptions - href: OpenTK.Core.Platform.ToolkitOptions.html + href: OpenTK.Platform.ToolkitOptions.html - name: ) -- uid: OpenTK.Core.Platform.ToolkitOptions - commentId: T:OpenTK.Core.Platform.ToolkitOptions - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.ToolkitOptions.html +- uid: OpenTK.Platform.ToolkitOptions + commentId: T:OpenTK.Platform.ToolkitOptions + parent: OpenTK.Platform + href: OpenTK.Platform.ToolkitOptions.html name: ToolkitOptions nameWithType: ToolkitOptions - fullName: OpenTK.Core.Platform.ToolkitOptions -- uid: OpenTK.Core.Platform.OpenDialogOptions.SelectDirectory - commentId: F:OpenTK.Core.Platform.OpenDialogOptions.SelectDirectory - href: OpenTK.Core.Platform.OpenDialogOptions.html#OpenTK_Core_Platform_OpenDialogOptions_SelectDirectory + fullName: OpenTK.Platform.ToolkitOptions +- uid: OpenTK.Platform.OpenDialogOptions.SelectDirectory + commentId: F:OpenTK.Platform.OpenDialogOptions.SelectDirectory + href: OpenTK.Platform.OpenDialogOptions.html#OpenTK_Platform_OpenDialogOptions_SelectDirectory name: SelectDirectory nameWithType: OpenDialogOptions.SelectDirectory - fullName: OpenTK.Core.Platform.OpenDialogOptions.SelectDirectory + fullName: OpenTK.Platform.OpenDialogOptions.SelectDirectory +- uid: OpenTK.Platform.IDialogComponent.ShowOpenDialog(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.DialogFileFilter[],OpenTK.Platform.OpenDialogOptions) + commentId: M:OpenTK.Platform.IDialogComponent.ShowOpenDialog(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.DialogFileFilter[],OpenTK.Platform.OpenDialogOptions) + parent: OpenTK.Platform.IDialogComponent + isExternal: true + href: OpenTK.Platform.IDialogComponent.html#OpenTK_Platform_IDialogComponent_ShowOpenDialog_OpenTK_Platform_WindowHandle_System_String_System_String_OpenTK_Platform_DialogFileFilter___OpenTK_Platform_OpenDialogOptions_ + name: ShowOpenDialog(WindowHandle, string, string, DialogFileFilter[], OpenDialogOptions) + nameWithType: IDialogComponent.ShowOpenDialog(WindowHandle, string, string, DialogFileFilter[], OpenDialogOptions) + fullName: OpenTK.Platform.IDialogComponent.ShowOpenDialog(OpenTK.Platform.WindowHandle, string, string, OpenTK.Platform.DialogFileFilter[], OpenTK.Platform.OpenDialogOptions) + nameWithType.vb: IDialogComponent.ShowOpenDialog(WindowHandle, String, String, DialogFileFilter(), OpenDialogOptions) + fullName.vb: OpenTK.Platform.IDialogComponent.ShowOpenDialog(OpenTK.Platform.WindowHandle, String, String, OpenTK.Platform.DialogFileFilter(), OpenTK.Platform.OpenDialogOptions) + name.vb: ShowOpenDialog(WindowHandle, String, String, DialogFileFilter(), OpenDialogOptions) + spec.csharp: + - uid: OpenTK.Platform.IDialogComponent.ShowOpenDialog(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.DialogFileFilter[],OpenTK.Platform.OpenDialogOptions) + name: ShowOpenDialog + href: OpenTK.Platform.IDialogComponent.html#OpenTK_Platform_IDialogComponent_ShowOpenDialog_OpenTK_Platform_WindowHandle_System_String_System_String_OpenTK_Platform_DialogFileFilter___OpenTK_Platform_OpenDialogOptions_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: System.String + name: string + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ',' + - name: " " + - uid: System.String + name: string + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ',' + - name: " " + - uid: OpenTK.Platform.DialogFileFilter + name: DialogFileFilter + href: OpenTK.Platform.DialogFileFilter.html + - name: '[' + - name: ']' + - name: ',' + - name: " " + - uid: OpenTK.Platform.OpenDialogOptions + name: OpenDialogOptions + href: OpenTK.Platform.OpenDialogOptions.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IDialogComponent.ShowOpenDialog(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.DialogFileFilter[],OpenTK.Platform.OpenDialogOptions) + name: ShowOpenDialog + href: OpenTK.Platform.IDialogComponent.html#OpenTK_Platform_IDialogComponent_ShowOpenDialog_OpenTK_Platform_WindowHandle_System_String_System_String_OpenTK_Platform_DialogFileFilter___OpenTK_Platform_OpenDialogOptions_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: System.String + name: String + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ',' + - name: " " + - uid: System.String + name: String + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ',' + - name: " " + - uid: OpenTK.Platform.DialogFileFilter + name: DialogFileFilter + href: OpenTK.Platform.DialogFileFilter.html + - name: ( + - name: ) + - name: ',' + - name: " " + - uid: OpenTK.Platform.OpenDialogOptions + name: OpenDialogOptions + href: OpenTK.Platform.OpenDialogOptions.html + - name: ) - uid: OpenTK.Platform.Native.Windows.DialogComponent.CanTargetFolders* commentId: Overload:OpenTK.Platform.Native.Windows.DialogComponent.CanTargetFolders href: OpenTK.Platform.Native.Windows.DialogComponent.html#OpenTK_Platform_Native_Windows_DialogComponent_CanTargetFolders name: CanTargetFolders nameWithType: DialogComponent.CanTargetFolders fullName: OpenTK.Platform.Native.Windows.DialogComponent.CanTargetFolders -- uid: OpenTK.Core.Platform.IDialogComponent.CanTargetFolders - commentId: P:OpenTK.Core.Platform.IDialogComponent.CanTargetFolders - parent: OpenTK.Core.Platform.IDialogComponent - href: OpenTK.Core.Platform.IDialogComponent.html#OpenTK_Core_Platform_IDialogComponent_CanTargetFolders +- uid: OpenTK.Platform.IDialogComponent.CanTargetFolders + commentId: P:OpenTK.Platform.IDialogComponent.CanTargetFolders + parent: OpenTK.Platform.IDialogComponent + href: OpenTK.Platform.IDialogComponent.html#OpenTK_Platform_IDialogComponent_CanTargetFolders name: CanTargetFolders nameWithType: IDialogComponent.CanTargetFolders - fullName: OpenTK.Core.Platform.IDialogComponent.CanTargetFolders + fullName: OpenTK.Platform.IDialogComponent.CanTargetFolders - uid: System.Boolean commentId: T:System.Boolean parent: System @@ -787,31 +909,31 @@ references: nameWithType.vb: Boolean fullName.vb: Boolean name.vb: Boolean -- uid: OpenTK.Platform.Native.Windows.DialogComponent.ShowOpenDialog* - commentId: Overload:OpenTK.Platform.Native.Windows.DialogComponent.ShowOpenDialog - href: OpenTK.Platform.Native.Windows.DialogComponent.html#OpenTK_Platform_Native_Windows_DialogComponent_ShowOpenDialog_OpenTK_Core_Platform_WindowHandle_System_String_System_String_OpenTK_Core_Platform_DialogFileFilter___OpenTK_Core_Platform_OpenDialogOptions_ - name: ShowOpenDialog - nameWithType: DialogComponent.ShowOpenDialog - fullName: OpenTK.Platform.Native.Windows.DialogComponent.ShowOpenDialog -- uid: OpenTK.Core.Platform.IDialogComponent.ShowOpenDialog(OpenTK.Core.Platform.WindowHandle,System.String,System.String,OpenTK.Core.Platform.DialogFileFilter[],OpenTK.Core.Platform.OpenDialogOptions) - commentId: M:OpenTK.Core.Platform.IDialogComponent.ShowOpenDialog(OpenTK.Core.Platform.WindowHandle,System.String,System.String,OpenTK.Core.Platform.DialogFileFilter[],OpenTK.Core.Platform.OpenDialogOptions) - parent: OpenTK.Core.Platform.IDialogComponent +- uid: OpenTK.Platform.Native.Windows.DialogComponent.ShowMessageBox* + commentId: Overload:OpenTK.Platform.Native.Windows.DialogComponent.ShowMessageBox + href: OpenTK.Platform.Native.Windows.DialogComponent.html#OpenTK_Platform_Native_Windows_DialogComponent_ShowMessageBox_OpenTK_Platform_WindowHandle_System_String_System_String_OpenTK_Platform_MessageBoxType_OpenTK_Platform_IconHandle_ + name: ShowMessageBox + nameWithType: DialogComponent.ShowMessageBox + fullName: OpenTK.Platform.Native.Windows.DialogComponent.ShowMessageBox +- uid: OpenTK.Platform.IDialogComponent.ShowMessageBox(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.MessageBoxType,OpenTK.Platform.IconHandle) + commentId: M:OpenTK.Platform.IDialogComponent.ShowMessageBox(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.MessageBoxType,OpenTK.Platform.IconHandle) + parent: OpenTK.Platform.IDialogComponent isExternal: true - href: OpenTK.Core.Platform.IDialogComponent.html#OpenTK_Core_Platform_IDialogComponent_ShowOpenDialog_OpenTK_Core_Platform_WindowHandle_System_String_System_String_OpenTK_Core_Platform_DialogFileFilter___OpenTK_Core_Platform_OpenDialogOptions_ - name: ShowOpenDialog(WindowHandle, string, string, DialogFileFilter[], OpenDialogOptions) - nameWithType: IDialogComponent.ShowOpenDialog(WindowHandle, string, string, DialogFileFilter[], OpenDialogOptions) - fullName: OpenTK.Core.Platform.IDialogComponent.ShowOpenDialog(OpenTK.Core.Platform.WindowHandle, string, string, OpenTK.Core.Platform.DialogFileFilter[], OpenTK.Core.Platform.OpenDialogOptions) - nameWithType.vb: IDialogComponent.ShowOpenDialog(WindowHandle, String, String, DialogFileFilter(), OpenDialogOptions) - fullName.vb: OpenTK.Core.Platform.IDialogComponent.ShowOpenDialog(OpenTK.Core.Platform.WindowHandle, String, String, OpenTK.Core.Platform.DialogFileFilter(), OpenTK.Core.Platform.OpenDialogOptions) - name.vb: ShowOpenDialog(WindowHandle, String, String, DialogFileFilter(), OpenDialogOptions) + href: OpenTK.Platform.IDialogComponent.html#OpenTK_Platform_IDialogComponent_ShowMessageBox_OpenTK_Platform_WindowHandle_System_String_System_String_OpenTK_Platform_MessageBoxType_OpenTK_Platform_IconHandle_ + name: ShowMessageBox(WindowHandle, string, string, MessageBoxType, IconHandle) + nameWithType: IDialogComponent.ShowMessageBox(WindowHandle, string, string, MessageBoxType, IconHandle) + fullName: OpenTK.Platform.IDialogComponent.ShowMessageBox(OpenTK.Platform.WindowHandle, string, string, OpenTK.Platform.MessageBoxType, OpenTK.Platform.IconHandle) + nameWithType.vb: IDialogComponent.ShowMessageBox(WindowHandle, String, String, MessageBoxType, IconHandle) + fullName.vb: OpenTK.Platform.IDialogComponent.ShowMessageBox(OpenTK.Platform.WindowHandle, String, String, OpenTK.Platform.MessageBoxType, OpenTK.Platform.IconHandle) + name.vb: ShowMessageBox(WindowHandle, String, String, MessageBoxType, IconHandle) spec.csharp: - - uid: OpenTK.Core.Platform.IDialogComponent.ShowOpenDialog(OpenTK.Core.Platform.WindowHandle,System.String,System.String,OpenTK.Core.Platform.DialogFileFilter[],OpenTK.Core.Platform.OpenDialogOptions) - name: ShowOpenDialog - href: OpenTK.Core.Platform.IDialogComponent.html#OpenTK_Core_Platform_IDialogComponent_ShowOpenDialog_OpenTK_Core_Platform_WindowHandle_System_String_System_String_OpenTK_Core_Platform_DialogFileFilter___OpenTK_Core_Platform_OpenDialogOptions_ + - uid: OpenTK.Platform.IDialogComponent.ShowMessageBox(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.MessageBoxType,OpenTK.Platform.IconHandle) + name: ShowMessageBox + href: OpenTK.Platform.IDialogComponent.html#OpenTK_Platform_IDialogComponent_ShowMessageBox_OpenTK_Platform_WindowHandle_System_String_System_String_OpenTK_Platform_MessageBoxType_OpenTK_Platform_IconHandle_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - uid: System.String @@ -826,25 +948,140 @@ references: href: https://learn.microsoft.com/dotnet/api/system.string - name: ',' - name: " " - - uid: OpenTK.Core.Platform.DialogFileFilter + - uid: OpenTK.Platform.MessageBoxType + name: MessageBoxType + href: OpenTK.Platform.MessageBoxType.html + - name: ',' + - name: " " + - uid: OpenTK.Platform.IconHandle + name: IconHandle + href: OpenTK.Platform.IconHandle.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IDialogComponent.ShowMessageBox(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.MessageBoxType,OpenTK.Platform.IconHandle) + name: ShowMessageBox + href: OpenTK.Platform.IDialogComponent.html#OpenTK_Platform_IDialogComponent_ShowMessageBox_OpenTK_Platform_WindowHandle_System_String_System_String_OpenTK_Platform_MessageBoxType_OpenTK_Platform_IconHandle_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: System.String + name: String + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ',' + - name: " " + - uid: System.String + name: String + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ',' + - name: " " + - uid: OpenTK.Platform.MessageBoxType + name: MessageBoxType + href: OpenTK.Platform.MessageBoxType.html + - name: ',' + - name: " " + - uid: OpenTK.Platform.IconHandle + name: IconHandle + href: OpenTK.Platform.IconHandle.html + - name: ) +- uid: OpenTK.Platform.WindowHandle + commentId: T:OpenTK.Platform.WindowHandle + parent: OpenTK.Platform + href: OpenTK.Platform.WindowHandle.html + name: WindowHandle + nameWithType: WindowHandle + fullName: OpenTK.Platform.WindowHandle +- uid: OpenTK.Platform.MessageBoxType + commentId: T:OpenTK.Platform.MessageBoxType + parent: OpenTK.Platform + href: OpenTK.Platform.MessageBoxType.html + name: MessageBoxType + nameWithType: MessageBoxType + fullName: OpenTK.Platform.MessageBoxType +- uid: OpenTK.Platform.IconHandle + commentId: T:OpenTK.Platform.IconHandle + parent: OpenTK.Platform + href: OpenTK.Platform.IconHandle.html + name: IconHandle + nameWithType: IconHandle + fullName: OpenTK.Platform.IconHandle +- uid: OpenTK.Platform.MessageBoxButton + commentId: T:OpenTK.Platform.MessageBoxButton + parent: OpenTK.Platform + href: OpenTK.Platform.MessageBoxButton.html + name: MessageBoxButton + nameWithType: MessageBoxButton + fullName: OpenTK.Platform.MessageBoxButton +- uid: OpenTK.Platform.DialogFileFilter + commentId: T:OpenTK.Platform.DialogFileFilter + parent: OpenTK.Platform + href: OpenTK.Platform.DialogFileFilter.html + name: DialogFileFilter + nameWithType: DialogFileFilter + fullName: OpenTK.Platform.DialogFileFilter +- uid: OpenTK.Platform.OpenDialogOptions + commentId: T:OpenTK.Platform.OpenDialogOptions + parent: OpenTK.Platform + href: OpenTK.Platform.OpenDialogOptions.html + name: OpenDialogOptions + nameWithType: OpenDialogOptions + fullName: OpenTK.Platform.OpenDialogOptions +- uid: OpenTK.Platform.IDialogComponent.ShowSaveDialog(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.DialogFileFilter[],OpenTK.Platform.SaveDialogOptions) + commentId: M:OpenTK.Platform.IDialogComponent.ShowSaveDialog(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.DialogFileFilter[],OpenTK.Platform.SaveDialogOptions) + parent: OpenTK.Platform.IDialogComponent + isExternal: true + href: OpenTK.Platform.IDialogComponent.html#OpenTK_Platform_IDialogComponent_ShowSaveDialog_OpenTK_Platform_WindowHandle_System_String_System_String_OpenTK_Platform_DialogFileFilter___OpenTK_Platform_SaveDialogOptions_ + name: ShowSaveDialog(WindowHandle, string, string, DialogFileFilter[], SaveDialogOptions) + nameWithType: IDialogComponent.ShowSaveDialog(WindowHandle, string, string, DialogFileFilter[], SaveDialogOptions) + fullName: OpenTK.Platform.IDialogComponent.ShowSaveDialog(OpenTK.Platform.WindowHandle, string, string, OpenTK.Platform.DialogFileFilter[], OpenTK.Platform.SaveDialogOptions) + nameWithType.vb: IDialogComponent.ShowSaveDialog(WindowHandle, String, String, DialogFileFilter(), SaveDialogOptions) + fullName.vb: OpenTK.Platform.IDialogComponent.ShowSaveDialog(OpenTK.Platform.WindowHandle, String, String, OpenTK.Platform.DialogFileFilter(), OpenTK.Platform.SaveDialogOptions) + name.vb: ShowSaveDialog(WindowHandle, String, String, DialogFileFilter(), SaveDialogOptions) + spec.csharp: + - uid: OpenTK.Platform.IDialogComponent.ShowSaveDialog(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.DialogFileFilter[],OpenTK.Platform.SaveDialogOptions) + name: ShowSaveDialog + href: OpenTK.Platform.IDialogComponent.html#OpenTK_Platform_IDialogComponent_ShowSaveDialog_OpenTK_Platform_WindowHandle_System_String_System_String_OpenTK_Platform_DialogFileFilter___OpenTK_Platform_SaveDialogOptions_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: System.String + name: string + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ',' + - name: " " + - uid: System.String + name: string + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ',' + - name: " " + - uid: OpenTK.Platform.DialogFileFilter name: DialogFileFilter - href: OpenTK.Core.Platform.DialogFileFilter.html + href: OpenTK.Platform.DialogFileFilter.html - name: '[' - name: ']' - name: ',' - name: " " - - uid: OpenTK.Core.Platform.OpenDialogOptions - name: OpenDialogOptions - href: OpenTK.Core.Platform.OpenDialogOptions.html + - uid: OpenTK.Platform.SaveDialogOptions + name: SaveDialogOptions + href: OpenTK.Platform.SaveDialogOptions.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IDialogComponent.ShowOpenDialog(OpenTK.Core.Platform.WindowHandle,System.String,System.String,OpenTK.Core.Platform.DialogFileFilter[],OpenTK.Core.Platform.OpenDialogOptions) - name: ShowOpenDialog - href: OpenTK.Core.Platform.IDialogComponent.html#OpenTK_Core_Platform_IDialogComponent_ShowOpenDialog_OpenTK_Core_Platform_WindowHandle_System_String_System_String_OpenTK_Core_Platform_DialogFileFilter___OpenTK_Core_Platform_OpenDialogOptions_ + - uid: OpenTK.Platform.IDialogComponent.ShowSaveDialog(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.DialogFileFilter[],OpenTK.Platform.SaveDialogOptions) + name: ShowSaveDialog + href: OpenTK.Platform.IDialogComponent.html#OpenTK_Platform_IDialogComponent_ShowSaveDialog_OpenTK_Platform_WindowHandle_System_String_System_String_OpenTK_Platform_DialogFileFilter___OpenTK_Platform_SaveDialogOptions_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - uid: System.String @@ -859,52 +1096,50 @@ references: href: https://learn.microsoft.com/dotnet/api/system.string - name: ',' - name: " " - - uid: OpenTK.Core.Platform.DialogFileFilter + - uid: OpenTK.Platform.DialogFileFilter name: DialogFileFilter - href: OpenTK.Core.Platform.DialogFileFilter.html + href: OpenTK.Platform.DialogFileFilter.html - name: ( - name: ) - name: ',' - name: " " - - uid: OpenTK.Core.Platform.OpenDialogOptions - name: OpenDialogOptions - href: OpenTK.Core.Platform.OpenDialogOptions.html + - uid: OpenTK.Platform.SaveDialogOptions + name: SaveDialogOptions + href: OpenTK.Platform.SaveDialogOptions.html - name: ) -- uid: OpenTK.Core.Platform.WindowHandle - commentId: T:OpenTK.Core.Platform.WindowHandle - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.WindowHandle.html - name: WindowHandle - nameWithType: WindowHandle - fullName: OpenTK.Core.Platform.WindowHandle -- uid: OpenTK.Core.Platform.DialogFileFilter[] +- uid: OpenTK.Platform.OpenDialogOptions.AllowMultiSelect + commentId: F:OpenTK.Platform.OpenDialogOptions.AllowMultiSelect + href: OpenTK.Platform.OpenDialogOptions.html#OpenTK_Platform_OpenDialogOptions_AllowMultiSelect + name: AllowMultiSelect + nameWithType: OpenDialogOptions.AllowMultiSelect + fullName: OpenTK.Platform.OpenDialogOptions.AllowMultiSelect +- uid: OpenTK.Platform.Native.Windows.DialogComponent.ShowOpenDialog* + commentId: Overload:OpenTK.Platform.Native.Windows.DialogComponent.ShowOpenDialog + href: OpenTK.Platform.Native.Windows.DialogComponent.html#OpenTK_Platform_Native_Windows_DialogComponent_ShowOpenDialog_OpenTK_Platform_WindowHandle_System_String_System_String_OpenTK_Platform_DialogFileFilter___OpenTK_Platform_OpenDialogOptions_ + name: ShowOpenDialog + nameWithType: DialogComponent.ShowOpenDialog + fullName: OpenTK.Platform.Native.Windows.DialogComponent.ShowOpenDialog +- uid: OpenTK.Platform.DialogFileFilter[] isExternal: true - href: OpenTK.Core.Platform.DialogFileFilter.html + href: OpenTK.Platform.DialogFileFilter.html name: DialogFileFilter[] nameWithType: DialogFileFilter[] - fullName: OpenTK.Core.Platform.DialogFileFilter[] + fullName: OpenTK.Platform.DialogFileFilter[] nameWithType.vb: DialogFileFilter() - fullName.vb: OpenTK.Core.Platform.DialogFileFilter() + fullName.vb: OpenTK.Platform.DialogFileFilter() name.vb: DialogFileFilter() spec.csharp: - - uid: OpenTK.Core.Platform.DialogFileFilter + - uid: OpenTK.Platform.DialogFileFilter name: DialogFileFilter - href: OpenTK.Core.Platform.DialogFileFilter.html + href: OpenTK.Platform.DialogFileFilter.html - name: '[' - name: ']' spec.vb: - - uid: OpenTK.Core.Platform.DialogFileFilter + - uid: OpenTK.Platform.DialogFileFilter name: DialogFileFilter - href: OpenTK.Core.Platform.DialogFileFilter.html + href: OpenTK.Platform.DialogFileFilter.html - name: ( - name: ) -- uid: OpenTK.Core.Platform.OpenDialogOptions - commentId: T:OpenTK.Core.Platform.OpenDialogOptions - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.OpenDialogOptions.html - name: OpenDialogOptions - nameWithType: OpenDialogOptions - fullName: OpenTK.Core.Platform.OpenDialogOptions - uid: System.Collections.Generic.List{System.String} commentId: T:System.Collections.Generic.List{System.String} parent: System.Collections.Generic @@ -1005,93 +1240,16 @@ references: name: Generic isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic +- uid: OpenTK.Platform.SaveDialogOptions + commentId: T:OpenTK.Platform.SaveDialogOptions + parent: OpenTK.Platform + href: OpenTK.Platform.SaveDialogOptions.html + name: SaveDialogOptions + nameWithType: SaveDialogOptions + fullName: OpenTK.Platform.SaveDialogOptions - uid: OpenTK.Platform.Native.Windows.DialogComponent.ShowSaveDialog* commentId: Overload:OpenTK.Platform.Native.Windows.DialogComponent.ShowSaveDialog - href: OpenTK.Platform.Native.Windows.DialogComponent.html#OpenTK_Platform_Native_Windows_DialogComponent_ShowSaveDialog_OpenTK_Core_Platform_WindowHandle_System_String_System_String_OpenTK_Core_Platform_DialogFileFilter___OpenTK_Core_Platform_SaveDialogOptions_ + href: OpenTK.Platform.Native.Windows.DialogComponent.html#OpenTK_Platform_Native_Windows_DialogComponent_ShowSaveDialog_OpenTK_Platform_WindowHandle_System_String_System_String_OpenTK_Platform_DialogFileFilter___OpenTK_Platform_SaveDialogOptions_ name: ShowSaveDialog nameWithType: DialogComponent.ShowSaveDialog fullName: OpenTK.Platform.Native.Windows.DialogComponent.ShowSaveDialog -- uid: OpenTK.Core.Platform.IDialogComponent.ShowSaveDialog(OpenTK.Core.Platform.WindowHandle,System.String,System.String,OpenTK.Core.Platform.DialogFileFilter[],OpenTK.Core.Platform.SaveDialogOptions) - commentId: M:OpenTK.Core.Platform.IDialogComponent.ShowSaveDialog(OpenTK.Core.Platform.WindowHandle,System.String,System.String,OpenTK.Core.Platform.DialogFileFilter[],OpenTK.Core.Platform.SaveDialogOptions) - parent: OpenTK.Core.Platform.IDialogComponent - isExternal: true - href: OpenTK.Core.Platform.IDialogComponent.html#OpenTK_Core_Platform_IDialogComponent_ShowSaveDialog_OpenTK_Core_Platform_WindowHandle_System_String_System_String_OpenTK_Core_Platform_DialogFileFilter___OpenTK_Core_Platform_SaveDialogOptions_ - name: ShowSaveDialog(WindowHandle, string, string, DialogFileFilter[], SaveDialogOptions) - nameWithType: IDialogComponent.ShowSaveDialog(WindowHandle, string, string, DialogFileFilter[], SaveDialogOptions) - fullName: OpenTK.Core.Platform.IDialogComponent.ShowSaveDialog(OpenTK.Core.Platform.WindowHandle, string, string, OpenTK.Core.Platform.DialogFileFilter[], OpenTK.Core.Platform.SaveDialogOptions) - nameWithType.vb: IDialogComponent.ShowSaveDialog(WindowHandle, String, String, DialogFileFilter(), SaveDialogOptions) - fullName.vb: OpenTK.Core.Platform.IDialogComponent.ShowSaveDialog(OpenTK.Core.Platform.WindowHandle, String, String, OpenTK.Core.Platform.DialogFileFilter(), OpenTK.Core.Platform.SaveDialogOptions) - name.vb: ShowSaveDialog(WindowHandle, String, String, DialogFileFilter(), SaveDialogOptions) - spec.csharp: - - uid: OpenTK.Core.Platform.IDialogComponent.ShowSaveDialog(OpenTK.Core.Platform.WindowHandle,System.String,System.String,OpenTK.Core.Platform.DialogFileFilter[],OpenTK.Core.Platform.SaveDialogOptions) - name: ShowSaveDialog - href: OpenTK.Core.Platform.IDialogComponent.html#OpenTK_Core_Platform_IDialogComponent_ShowSaveDialog_OpenTK_Core_Platform_WindowHandle_System_String_System_String_OpenTK_Core_Platform_DialogFileFilter___OpenTK_Core_Platform_SaveDialogOptions_ - - name: ( - - uid: OpenTK.Core.Platform.WindowHandle - name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ',' - - name: " " - - uid: OpenTK.Core.Platform.DialogFileFilter - name: DialogFileFilter - href: OpenTK.Core.Platform.DialogFileFilter.html - - name: '[' - - name: ']' - - name: ',' - - name: " " - - uid: OpenTK.Core.Platform.SaveDialogOptions - name: SaveDialogOptions - href: OpenTK.Core.Platform.SaveDialogOptions.html - - name: ) - spec.vb: - - uid: OpenTK.Core.Platform.IDialogComponent.ShowSaveDialog(OpenTK.Core.Platform.WindowHandle,System.String,System.String,OpenTK.Core.Platform.DialogFileFilter[],OpenTK.Core.Platform.SaveDialogOptions) - name: ShowSaveDialog - href: OpenTK.Core.Platform.IDialogComponent.html#OpenTK_Core_Platform_IDialogComponent_ShowSaveDialog_OpenTK_Core_Platform_WindowHandle_System_String_System_String_OpenTK_Core_Platform_DialogFileFilter___OpenTK_Core_Platform_SaveDialogOptions_ - - name: ( - - uid: OpenTK.Core.Platform.WindowHandle - name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ',' - - name: " " - - uid: OpenTK.Core.Platform.DialogFileFilter - name: DialogFileFilter - href: OpenTK.Core.Platform.DialogFileFilter.html - - name: ( - - name: ) - - name: ',' - - name: " " - - uid: OpenTK.Core.Platform.SaveDialogOptions - name: SaveDialogOptions - href: OpenTK.Core.Platform.SaveDialogOptions.html - - name: ) -- uid: OpenTK.Core.Platform.SaveDialogOptions - commentId: T:OpenTK.Core.Platform.SaveDialogOptions - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.SaveDialogOptions.html - name: SaveDialogOptions - nameWithType: SaveDialogOptions - fullName: OpenTK.Core.Platform.SaveDialogOptions diff --git a/api/OpenTK.Platform.Native.Windows.DisplayComponent.yml b/api/OpenTK.Platform.Native.Windows.DisplayComponent.yml index 3a9d70c4..e96ecaef 100644 --- a/api/OpenTK.Platform.Native.Windows.DisplayComponent.yml +++ b/api/OpenTK.Platform.Native.Windows.DisplayComponent.yml @@ -6,20 +6,20 @@ items: parent: OpenTK.Platform.Native.Windows children: - OpenTK.Platform.Native.Windows.DisplayComponent.CanGetVirtualPosition - - OpenTK.Platform.Native.Windows.DisplayComponent.Close(OpenTK.Core.Platform.DisplayHandle) - - OpenTK.Platform.Native.Windows.DisplayComponent.GetAdapter(OpenTK.Core.Platform.DisplayHandle) + - OpenTK.Platform.Native.Windows.DisplayComponent.Close(OpenTK.Platform.DisplayHandle) + - OpenTK.Platform.Native.Windows.DisplayComponent.GetAdapter(OpenTK.Platform.DisplayHandle) - OpenTK.Platform.Native.Windows.DisplayComponent.GetDisplayCount - - OpenTK.Platform.Native.Windows.DisplayComponent.GetDisplayScale(OpenTK.Core.Platform.DisplayHandle,System.Single@,System.Single@) - - OpenTK.Platform.Native.Windows.DisplayComponent.GetMonitor(OpenTK.Core.Platform.DisplayHandle) - - OpenTK.Platform.Native.Windows.DisplayComponent.GetName(OpenTK.Core.Platform.DisplayHandle) - - OpenTK.Platform.Native.Windows.DisplayComponent.GetRefreshRate(OpenTK.Core.Platform.DisplayHandle,System.Single@) - - OpenTK.Platform.Native.Windows.DisplayComponent.GetResolution(OpenTK.Core.Platform.DisplayHandle,System.Int32@,System.Int32@) - - OpenTK.Platform.Native.Windows.DisplayComponent.GetSupportedVideoModes(OpenTK.Core.Platform.DisplayHandle) - - OpenTK.Platform.Native.Windows.DisplayComponent.GetVideoMode(OpenTK.Core.Platform.DisplayHandle,OpenTK.Core.Platform.VideoMode@) - - OpenTK.Platform.Native.Windows.DisplayComponent.GetVirtualPosition(OpenTK.Core.Platform.DisplayHandle,System.Int32@,System.Int32@) - - OpenTK.Platform.Native.Windows.DisplayComponent.GetWorkArea(OpenTK.Core.Platform.DisplayHandle,OpenTK.Mathematics.Box2i@) - - OpenTK.Platform.Native.Windows.DisplayComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - - OpenTK.Platform.Native.Windows.DisplayComponent.IsPrimary(OpenTK.Core.Platform.DisplayHandle) + - OpenTK.Platform.Native.Windows.DisplayComponent.GetDisplayScale(OpenTK.Platform.DisplayHandle,System.Single@,System.Single@) + - OpenTK.Platform.Native.Windows.DisplayComponent.GetMonitor(OpenTK.Platform.DisplayHandle) + - OpenTK.Platform.Native.Windows.DisplayComponent.GetName(OpenTK.Platform.DisplayHandle) + - OpenTK.Platform.Native.Windows.DisplayComponent.GetRefreshRate(OpenTK.Platform.DisplayHandle,System.Single@) + - OpenTK.Platform.Native.Windows.DisplayComponent.GetResolution(OpenTK.Platform.DisplayHandle,System.Int32@,System.Int32@) + - OpenTK.Platform.Native.Windows.DisplayComponent.GetSupportedVideoModes(OpenTK.Platform.DisplayHandle) + - OpenTK.Platform.Native.Windows.DisplayComponent.GetVideoMode(OpenTK.Platform.DisplayHandle,OpenTK.Platform.VideoMode@) + - OpenTK.Platform.Native.Windows.DisplayComponent.GetVirtualPosition(OpenTK.Platform.DisplayHandle,System.Int32@,System.Int32@) + - OpenTK.Platform.Native.Windows.DisplayComponent.GetWorkArea(OpenTK.Platform.DisplayHandle,OpenTK.Mathematics.Box2i@) + - OpenTK.Platform.Native.Windows.DisplayComponent.Initialize(OpenTK.Platform.ToolkitOptions) + - OpenTK.Platform.Native.Windows.DisplayComponent.IsPrimary(OpenTK.Platform.DisplayHandle) - OpenTK.Platform.Native.Windows.DisplayComponent.Logger - OpenTK.Platform.Native.Windows.DisplayComponent.Name - OpenTK.Platform.Native.Windows.DisplayComponent.Open(System.Int32) @@ -33,15 +33,11 @@ items: fullName: OpenTK.Platform.Native.Windows.DisplayComponent type: Class source: - remote: - path: src/OpenTK.Platform.Native/Windows/DisplayComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DisplayComponent - path: opentk/src/OpenTK.Platform.Native/Windows/DisplayComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\DisplayComponent.cs startLine: 15 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows syntax: content: 'public class DisplayComponent : IDisplayComponent, IPalComponent' @@ -49,8 +45,8 @@ items: inheritance: - System.Object implements: - - OpenTK.Core.Platform.IDisplayComponent - - OpenTK.Core.Platform.IPalComponent + - OpenTK.Platform.IDisplayComponent + - OpenTK.Platform.IPalComponent inheritedMembers: - System.Object.Equals(System.Object) - System.Object.Equals(System.Object,System.Object) @@ -71,15 +67,11 @@ items: fullName: OpenTK.Platform.Native.Windows.DisplayComponent.Name type: Property source: - remote: - path: src/OpenTK.Platform.Native/Windows/DisplayComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Name - path: opentk/src/OpenTK.Platform.Native/Windows/DisplayComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\DisplayComponent.cs startLine: 18 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: Name of the abstraction layer component. example: [] @@ -91,7 +83,7 @@ items: content.vb: Public ReadOnly Property Name As String overload: OpenTK.Platform.Native.Windows.DisplayComponent.Name* implements: - - OpenTK.Core.Platform.IPalComponent.Name + - OpenTK.Platform.IPalComponent.Name - uid: OpenTK.Platform.Native.Windows.DisplayComponent.Provides commentId: P:OpenTK.Platform.Native.Windows.DisplayComponent.Provides id: Provides @@ -104,15 +96,11 @@ items: fullName: OpenTK.Platform.Native.Windows.DisplayComponent.Provides type: Property source: - remote: - path: src/OpenTK.Platform.Native/Windows/DisplayComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Provides - path: opentk/src/OpenTK.Platform.Native/Windows/DisplayComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\DisplayComponent.cs startLine: 21 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: Specifies which PAL components this object provides. example: [] @@ -120,11 +108,11 @@ items: content: public PalComponents Provides { get; } parameters: [] return: - type: OpenTK.Core.Platform.PalComponents + type: OpenTK.Platform.PalComponents content.vb: Public ReadOnly Property Provides As PalComponents overload: OpenTK.Platform.Native.Windows.DisplayComponent.Provides* implements: - - OpenTK.Core.Platform.IPalComponent.Provides + - OpenTK.Platform.IPalComponent.Provides - uid: OpenTK.Platform.Native.Windows.DisplayComponent.Logger commentId: P:OpenTK.Platform.Native.Windows.DisplayComponent.Logger id: Logger @@ -137,15 +125,11 @@ items: fullName: OpenTK.Platform.Native.Windows.DisplayComponent.Logger type: Property source: - remote: - path: src/OpenTK.Platform.Native/Windows/DisplayComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Logger - path: opentk/src/OpenTK.Platform.Native/Windows/DisplayComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\DisplayComponent.cs startLine: 24 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: Provides a logger for this component. example: [] @@ -157,28 +141,24 @@ items: content.vb: Public Property Logger As ILogger overload: OpenTK.Platform.Native.Windows.DisplayComponent.Logger* implements: - - OpenTK.Core.Platform.IPalComponent.Logger -- uid: OpenTK.Platform.Native.Windows.DisplayComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - commentId: M:OpenTK.Platform.Native.Windows.DisplayComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - id: Initialize(OpenTK.Core.Platform.ToolkitOptions) + - OpenTK.Platform.IPalComponent.Logger +- uid: OpenTK.Platform.Native.Windows.DisplayComponent.Initialize(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Native.Windows.DisplayComponent.Initialize(OpenTK.Platform.ToolkitOptions) + id: Initialize(OpenTK.Platform.ToolkitOptions) parent: OpenTK.Platform.Native.Windows.DisplayComponent langs: - csharp - vb name: Initialize(ToolkitOptions) nameWithType: DisplayComponent.Initialize(ToolkitOptions) - fullName: OpenTK.Platform.Native.Windows.DisplayComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + fullName: OpenTK.Platform.Native.Windows.DisplayComponent.Initialize(OpenTK.Platform.ToolkitOptions) type: Method source: - remote: - path: src/OpenTK.Platform.Native/Windows/DisplayComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Initialize - path: opentk/src/OpenTK.Platform.Native/Windows/DisplayComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\DisplayComponent.cs startLine: 256 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: Initialize the component. example: [] @@ -186,12 +166,12 @@ items: content: public void Initialize(ToolkitOptions options) parameters: - id: options - type: OpenTK.Core.Platform.ToolkitOptions + type: OpenTK.Platform.ToolkitOptions description: The options to initialize the component with. content.vb: Public Sub Initialize(options As ToolkitOptions) overload: OpenTK.Platform.Native.Windows.DisplayComponent.Initialize* implements: - - OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + - OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) - uid: OpenTK.Platform.Native.Windows.DisplayComponent.CanGetVirtualPosition commentId: P:OpenTK.Platform.Native.Windows.DisplayComponent.CanGetVirtualPosition id: CanGetVirtualPosition @@ -204,17 +184,13 @@ items: fullName: OpenTK.Platform.Native.Windows.DisplayComponent.CanGetVirtualPosition type: Property source: - remote: - path: src/OpenTK.Platform.Native/Windows/DisplayComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CanGetVirtualPosition - path: opentk/src/OpenTK.Platform.Native/Windows/DisplayComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\DisplayComponent.cs startLine: 299 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows - summary: True if the driver can get the virtual position of the display. + summary: True if the driver can get the virtual position of the display using . example: [] syntax: content: public bool CanGetVirtualPosition { get; } @@ -224,7 +200,7 @@ items: content.vb: Public ReadOnly Property CanGetVirtualPosition As Boolean overload: OpenTK.Platform.Native.Windows.DisplayComponent.CanGetVirtualPosition* implements: - - OpenTK.Core.Platform.IDisplayComponent.CanGetVirtualPosition + - OpenTK.Platform.IDisplayComponent.CanGetVirtualPosition - uid: OpenTK.Platform.Native.Windows.DisplayComponent.GetDisplayCount commentId: M:OpenTK.Platform.Native.Windows.DisplayComponent.GetDisplayCount id: GetDisplayCount @@ -237,15 +213,11 @@ items: fullName: OpenTK.Platform.Native.Windows.DisplayComponent.GetDisplayCount() type: Method source: - remote: - path: src/OpenTK.Platform.Native/Windows/DisplayComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetDisplayCount - path: opentk/src/OpenTK.Platform.Native/Windows/DisplayComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\DisplayComponent.cs startLine: 302 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: Get the number of available displays. example: [] @@ -257,7 +229,7 @@ items: content.vb: Public Function GetDisplayCount() As Integer overload: OpenTK.Platform.Native.Windows.DisplayComponent.GetDisplayCount* implements: - - OpenTK.Core.Platform.IDisplayComponent.GetDisplayCount + - OpenTK.Platform.IDisplayComponent.GetDisplayCount - uid: OpenTK.Platform.Native.Windows.DisplayComponent.Open(System.Int32) commentId: M:OpenTK.Platform.Native.Windows.DisplayComponent.Open(System.Int32) id: Open(System.Int32) @@ -270,15 +242,11 @@ items: fullName: OpenTK.Platform.Native.Windows.DisplayComponent.Open(int) type: Method source: - remote: - path: src/OpenTK.Platform.Native/Windows/DisplayComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Open - path: opentk/src/OpenTK.Platform.Native/Windows/DisplayComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\DisplayComponent.cs startLine: 319 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: Create a display handle to the indexed display. example: [] @@ -289,7 +257,7 @@ items: type: System.Int32 description: The display index to create a display handle to. return: - type: OpenTK.Core.Platform.DisplayHandle + type: OpenTK.Platform.DisplayHandle description: Handle to the display. content.vb: Public Function Open(index As Integer) As DisplayHandle overload: OpenTK.Platform.Native.Windows.DisplayComponent.Open* @@ -298,7 +266,7 @@ items: commentId: T:System.ArgumentOutOfRangeException description: index is out of range. implements: - - OpenTK.Core.Platform.IDisplayComponent.Open(System.Int32) + - OpenTK.Platform.IDisplayComponent.Open(System.Int32) nameWithType.vb: DisplayComponent.Open(Integer) fullName.vb: OpenTK.Platform.Native.Windows.DisplayComponent.Open(Integer) name.vb: Open(Integer) @@ -314,56 +282,48 @@ items: fullName: OpenTK.Platform.Native.Windows.DisplayComponent.OpenPrimary() type: Method source: - remote: - path: src/OpenTK.Platform.Native/Windows/DisplayComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: OpenPrimary - path: opentk/src/OpenTK.Platform.Native/Windows/DisplayComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\DisplayComponent.cs startLine: 328 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: Create a display handle to the primary display. example: [] syntax: content: public DisplayHandle OpenPrimary() return: - type: OpenTK.Core.Platform.DisplayHandle + type: OpenTK.Platform.DisplayHandle description: Handle to the primary display. content.vb: Public Function OpenPrimary() As DisplayHandle overload: OpenTK.Platform.Native.Windows.DisplayComponent.OpenPrimary* implements: - - OpenTK.Core.Platform.IDisplayComponent.OpenPrimary -- uid: OpenTK.Platform.Native.Windows.DisplayComponent.Close(OpenTK.Core.Platform.DisplayHandle) - commentId: M:OpenTK.Platform.Native.Windows.DisplayComponent.Close(OpenTK.Core.Platform.DisplayHandle) - id: Close(OpenTK.Core.Platform.DisplayHandle) + - OpenTK.Platform.IDisplayComponent.OpenPrimary +- uid: OpenTK.Platform.Native.Windows.DisplayComponent.Close(OpenTK.Platform.DisplayHandle) + commentId: M:OpenTK.Platform.Native.Windows.DisplayComponent.Close(OpenTK.Platform.DisplayHandle) + id: Close(OpenTK.Platform.DisplayHandle) parent: OpenTK.Platform.Native.Windows.DisplayComponent langs: - csharp - vb name: Close(DisplayHandle) nameWithType: DisplayComponent.Close(DisplayHandle) - fullName: OpenTK.Platform.Native.Windows.DisplayComponent.Close(OpenTK.Core.Platform.DisplayHandle) + fullName: OpenTK.Platform.Native.Windows.DisplayComponent.Close(OpenTK.Platform.DisplayHandle) type: Method source: - remote: - path: src/OpenTK.Platform.Native/Windows/DisplayComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Close - path: opentk/src/OpenTK.Platform.Native/Windows/DisplayComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\DisplayComponent.cs startLine: 342 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows - summary: Destroy a display handle. + summary: Close a display handle. example: [] syntax: content: public void Close(DisplayHandle handle) parameters: - id: handle - type: OpenTK.Core.Platform.DisplayHandle + type: OpenTK.Platform.DisplayHandle description: Handle to a display. content.vb: Public Sub Close(handle As DisplayHandle) overload: OpenTK.Platform.Native.Windows.DisplayComponent.Close* @@ -372,28 +332,24 @@ items: commentId: T:System.ArgumentNullException description: handle is null. implements: - - OpenTK.Core.Platform.IDisplayComponent.Close(OpenTK.Core.Platform.DisplayHandle) -- uid: OpenTK.Platform.Native.Windows.DisplayComponent.IsPrimary(OpenTK.Core.Platform.DisplayHandle) - commentId: M:OpenTK.Platform.Native.Windows.DisplayComponent.IsPrimary(OpenTK.Core.Platform.DisplayHandle) - id: IsPrimary(OpenTK.Core.Platform.DisplayHandle) + - OpenTK.Platform.IDisplayComponent.Close(OpenTK.Platform.DisplayHandle) +- uid: OpenTK.Platform.Native.Windows.DisplayComponent.IsPrimary(OpenTK.Platform.DisplayHandle) + commentId: M:OpenTK.Platform.Native.Windows.DisplayComponent.IsPrimary(OpenTK.Platform.DisplayHandle) + id: IsPrimary(OpenTK.Platform.DisplayHandle) parent: OpenTK.Platform.Native.Windows.DisplayComponent langs: - csharp - vb name: IsPrimary(DisplayHandle) nameWithType: DisplayComponent.IsPrimary(DisplayHandle) - fullName: OpenTK.Platform.Native.Windows.DisplayComponent.IsPrimary(OpenTK.Core.Platform.DisplayHandle) + fullName: OpenTK.Platform.Native.Windows.DisplayComponent.IsPrimary(OpenTK.Platform.DisplayHandle) type: Method source: - remote: - path: src/OpenTK.Platform.Native/Windows/DisplayComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: IsPrimary - path: opentk/src/OpenTK.Platform.Native/Windows/DisplayComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\DisplayComponent.cs startLine: 350 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: Checks if a display is the primary display or not. example: [] @@ -401,7 +357,7 @@ items: content: public bool IsPrimary(DisplayHandle handle) parameters: - id: handle - type: OpenTK.Core.Platform.DisplayHandle + type: OpenTK.Platform.DisplayHandle description: The display to check whether or not is the primary display. return: type: System.Boolean @@ -409,28 +365,24 @@ items: content.vb: Public Function IsPrimary(handle As DisplayHandle) As Boolean overload: OpenTK.Platform.Native.Windows.DisplayComponent.IsPrimary* implements: - - OpenTK.Core.Platform.IDisplayComponent.IsPrimary(OpenTK.Core.Platform.DisplayHandle) -- uid: OpenTK.Platform.Native.Windows.DisplayComponent.GetName(OpenTK.Core.Platform.DisplayHandle) - commentId: M:OpenTK.Platform.Native.Windows.DisplayComponent.GetName(OpenTK.Core.Platform.DisplayHandle) - id: GetName(OpenTK.Core.Platform.DisplayHandle) + - OpenTK.Platform.IDisplayComponent.IsPrimary(OpenTK.Platform.DisplayHandle) +- uid: OpenTK.Platform.Native.Windows.DisplayComponent.GetName(OpenTK.Platform.DisplayHandle) + commentId: M:OpenTK.Platform.Native.Windows.DisplayComponent.GetName(OpenTK.Platform.DisplayHandle) + id: GetName(OpenTK.Platform.DisplayHandle) parent: OpenTK.Platform.Native.Windows.DisplayComponent langs: - csharp - vb name: GetName(DisplayHandle) nameWithType: DisplayComponent.GetName(DisplayHandle) - fullName: OpenTK.Platform.Native.Windows.DisplayComponent.GetName(OpenTK.Core.Platform.DisplayHandle) + fullName: OpenTK.Platform.Native.Windows.DisplayComponent.GetName(OpenTK.Platform.DisplayHandle) type: Method source: - remote: - path: src/OpenTK.Platform.Native/Windows/DisplayComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetName - path: opentk/src/OpenTK.Platform.Native/Windows/DisplayComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\DisplayComponent.cs startLine: 358 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: Get the friendly name of a display. example: [] @@ -438,7 +390,7 @@ items: content: public string GetName(DisplayHandle handle) parameters: - id: handle - type: OpenTK.Core.Platform.DisplayHandle + type: OpenTK.Platform.DisplayHandle description: Handle to a display. return: type: System.String @@ -450,28 +402,24 @@ items: commentId: T:System.ArgumentNullException description: handle is null. implements: - - OpenTK.Core.Platform.IDisplayComponent.GetName(OpenTK.Core.Platform.DisplayHandle) -- uid: OpenTK.Platform.Native.Windows.DisplayComponent.GetVideoMode(OpenTK.Core.Platform.DisplayHandle,OpenTK.Core.Platform.VideoMode@) - commentId: M:OpenTK.Platform.Native.Windows.DisplayComponent.GetVideoMode(OpenTK.Core.Platform.DisplayHandle,OpenTK.Core.Platform.VideoMode@) - id: GetVideoMode(OpenTK.Core.Platform.DisplayHandle,OpenTK.Core.Platform.VideoMode@) + - OpenTK.Platform.IDisplayComponent.GetName(OpenTK.Platform.DisplayHandle) +- uid: OpenTK.Platform.Native.Windows.DisplayComponent.GetVideoMode(OpenTK.Platform.DisplayHandle,OpenTK.Platform.VideoMode@) + commentId: M:OpenTK.Platform.Native.Windows.DisplayComponent.GetVideoMode(OpenTK.Platform.DisplayHandle,OpenTK.Platform.VideoMode@) + id: GetVideoMode(OpenTK.Platform.DisplayHandle,OpenTK.Platform.VideoMode@) parent: OpenTK.Platform.Native.Windows.DisplayComponent langs: - csharp - vb name: GetVideoMode(DisplayHandle, out VideoMode) nameWithType: DisplayComponent.GetVideoMode(DisplayHandle, out VideoMode) - fullName: OpenTK.Platform.Native.Windows.DisplayComponent.GetVideoMode(OpenTK.Core.Platform.DisplayHandle, out OpenTK.Core.Platform.VideoMode) + fullName: OpenTK.Platform.Native.Windows.DisplayComponent.GetVideoMode(OpenTK.Platform.DisplayHandle, out OpenTK.Platform.VideoMode) type: Method source: - remote: - path: src/OpenTK.Platform.Native/Windows/DisplayComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetVideoMode - path: opentk/src/OpenTK.Platform.Native/Windows/DisplayComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\DisplayComponent.cs startLine: 366 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: Get the active video mode of a display. example: [] @@ -479,10 +427,10 @@ items: content: public void GetVideoMode(DisplayHandle handle, out VideoMode mode) parameters: - id: handle - type: OpenTK.Core.Platform.DisplayHandle + type: OpenTK.Platform.DisplayHandle description: Handle to a display. - id: mode - type: OpenTK.Core.Platform.VideoMode + type: OpenTK.Platform.VideoMode description: Active video mode of display. content.vb: Public Sub GetVideoMode(handle As DisplayHandle, mode As VideoMode) overload: OpenTK.Platform.Native.Windows.DisplayComponent.GetVideoMode* @@ -491,31 +439,27 @@ items: commentId: T:System.ArgumentNullException description: handle is null. implements: - - OpenTK.Core.Platform.IDisplayComponent.GetVideoMode(OpenTK.Core.Platform.DisplayHandle,OpenTK.Core.Platform.VideoMode@) + - OpenTK.Platform.IDisplayComponent.GetVideoMode(OpenTK.Platform.DisplayHandle,OpenTK.Platform.VideoMode@) nameWithType.vb: DisplayComponent.GetVideoMode(DisplayHandle, VideoMode) - fullName.vb: OpenTK.Platform.Native.Windows.DisplayComponent.GetVideoMode(OpenTK.Core.Platform.DisplayHandle, OpenTK.Core.Platform.VideoMode) + fullName.vb: OpenTK.Platform.Native.Windows.DisplayComponent.GetVideoMode(OpenTK.Platform.DisplayHandle, OpenTK.Platform.VideoMode) name.vb: GetVideoMode(DisplayHandle, VideoMode) -- uid: OpenTK.Platform.Native.Windows.DisplayComponent.GetSupportedVideoModes(OpenTK.Core.Platform.DisplayHandle) - commentId: M:OpenTK.Platform.Native.Windows.DisplayComponent.GetSupportedVideoModes(OpenTK.Core.Platform.DisplayHandle) - id: GetSupportedVideoModes(OpenTK.Core.Platform.DisplayHandle) +- uid: OpenTK.Platform.Native.Windows.DisplayComponent.GetSupportedVideoModes(OpenTK.Platform.DisplayHandle) + commentId: M:OpenTK.Platform.Native.Windows.DisplayComponent.GetSupportedVideoModes(OpenTK.Platform.DisplayHandle) + id: GetSupportedVideoModes(OpenTK.Platform.DisplayHandle) parent: OpenTK.Platform.Native.Windows.DisplayComponent langs: - csharp - vb name: GetSupportedVideoModes(DisplayHandle) nameWithType: DisplayComponent.GetSupportedVideoModes(DisplayHandle) - fullName: OpenTK.Platform.Native.Windows.DisplayComponent.GetSupportedVideoModes(OpenTK.Core.Platform.DisplayHandle) + fullName: OpenTK.Platform.Native.Windows.DisplayComponent.GetSupportedVideoModes(OpenTK.Platform.DisplayHandle) type: Method source: - remote: - path: src/OpenTK.Platform.Native/Windows/DisplayComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetSupportedVideoModes - path: opentk/src/OpenTK.Platform.Native/Windows/DisplayComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\DisplayComponent.cs startLine: 378 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: Get all supported video modes for a specific display. example: [] @@ -523,10 +467,10 @@ items: content: public VideoMode[] GetSupportedVideoModes(DisplayHandle handle) parameters: - id: handle - type: OpenTK.Core.Platform.DisplayHandle + type: OpenTK.Platform.DisplayHandle description: Handle to a display. return: - type: OpenTK.Core.Platform.VideoMode[] + type: OpenTK.Platform.VideoMode[] description: An array of all supported video modes. content.vb: Public Function GetSupportedVideoModes(handle As DisplayHandle) As VideoMode() overload: OpenTK.Platform.Native.Windows.DisplayComponent.GetSupportedVideoModes* @@ -535,28 +479,24 @@ items: commentId: T:System.ArgumentNullException description: handle is null. implements: - - OpenTK.Core.Platform.IDisplayComponent.GetSupportedVideoModes(OpenTK.Core.Platform.DisplayHandle) -- uid: OpenTK.Platform.Native.Windows.DisplayComponent.GetVirtualPosition(OpenTK.Core.Platform.DisplayHandle,System.Int32@,System.Int32@) - commentId: M:OpenTK.Platform.Native.Windows.DisplayComponent.GetVirtualPosition(OpenTK.Core.Platform.DisplayHandle,System.Int32@,System.Int32@) - id: GetVirtualPosition(OpenTK.Core.Platform.DisplayHandle,System.Int32@,System.Int32@) + - OpenTK.Platform.IDisplayComponent.GetSupportedVideoModes(OpenTK.Platform.DisplayHandle) +- uid: OpenTK.Platform.Native.Windows.DisplayComponent.GetVirtualPosition(OpenTK.Platform.DisplayHandle,System.Int32@,System.Int32@) + commentId: M:OpenTK.Platform.Native.Windows.DisplayComponent.GetVirtualPosition(OpenTK.Platform.DisplayHandle,System.Int32@,System.Int32@) + id: GetVirtualPosition(OpenTK.Platform.DisplayHandle,System.Int32@,System.Int32@) parent: OpenTK.Platform.Native.Windows.DisplayComponent langs: - csharp - vb name: GetVirtualPosition(DisplayHandle, out int, out int) nameWithType: DisplayComponent.GetVirtualPosition(DisplayHandle, out int, out int) - fullName: OpenTK.Platform.Native.Windows.DisplayComponent.GetVirtualPosition(OpenTK.Core.Platform.DisplayHandle, out int, out int) + fullName: OpenTK.Platform.Native.Windows.DisplayComponent.GetVirtualPosition(OpenTK.Platform.DisplayHandle, out int, out int) type: Method source: - remote: - path: src/OpenTK.Platform.Native/Windows/DisplayComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetVirtualPosition - path: opentk/src/OpenTK.Platform.Native/Windows/DisplayComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\DisplayComponent.cs startLine: 407 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: Get the position of the display in the virtual desktop. example: [] @@ -564,7 +504,7 @@ items: content: public void GetVirtualPosition(DisplayHandle handle, out int x, out int y) parameters: - id: handle - type: OpenTK.Core.Platform.DisplayHandle + type: OpenTK.Platform.DisplayHandle description: Handle to a display. - id: x type: System.Int32 @@ -578,35 +518,31 @@ items: - type: System.ArgumentNullException commentId: T:System.ArgumentNullException description: handle is null. - - type: OpenTK.Core.Platform.PalNotImplementedException - commentId: T:OpenTK.Core.Platform.PalNotImplementedException - description: Driver cannot get display virtual position. See . + - type: OpenTK.Platform.PalNotImplementedException + commentId: T:OpenTK.Platform.PalNotImplementedException + description: Driver cannot get display virtual position. See . implements: - - OpenTK.Core.Platform.IDisplayComponent.GetVirtualPosition(OpenTK.Core.Platform.DisplayHandle,System.Int32@,System.Int32@) + - OpenTK.Platform.IDisplayComponent.GetVirtualPosition(OpenTK.Platform.DisplayHandle,System.Int32@,System.Int32@) nameWithType.vb: DisplayComponent.GetVirtualPosition(DisplayHandle, Integer, Integer) - fullName.vb: OpenTK.Platform.Native.Windows.DisplayComponent.GetVirtualPosition(OpenTK.Core.Platform.DisplayHandle, Integer, Integer) + fullName.vb: OpenTK.Platform.Native.Windows.DisplayComponent.GetVirtualPosition(OpenTK.Platform.DisplayHandle, Integer, Integer) name.vb: GetVirtualPosition(DisplayHandle, Integer, Integer) -- uid: OpenTK.Platform.Native.Windows.DisplayComponent.GetResolution(OpenTK.Core.Platform.DisplayHandle,System.Int32@,System.Int32@) - commentId: M:OpenTK.Platform.Native.Windows.DisplayComponent.GetResolution(OpenTK.Core.Platform.DisplayHandle,System.Int32@,System.Int32@) - id: GetResolution(OpenTK.Core.Platform.DisplayHandle,System.Int32@,System.Int32@) +- uid: OpenTK.Platform.Native.Windows.DisplayComponent.GetResolution(OpenTK.Platform.DisplayHandle,System.Int32@,System.Int32@) + commentId: M:OpenTK.Platform.Native.Windows.DisplayComponent.GetResolution(OpenTK.Platform.DisplayHandle,System.Int32@,System.Int32@) + id: GetResolution(OpenTK.Platform.DisplayHandle,System.Int32@,System.Int32@) parent: OpenTK.Platform.Native.Windows.DisplayComponent langs: - csharp - vb name: GetResolution(DisplayHandle, out int, out int) nameWithType: DisplayComponent.GetResolution(DisplayHandle, out int, out int) - fullName: OpenTK.Platform.Native.Windows.DisplayComponent.GetResolution(OpenTK.Core.Platform.DisplayHandle, out int, out int) + fullName: OpenTK.Platform.Native.Windows.DisplayComponent.GetResolution(OpenTK.Platform.DisplayHandle, out int, out int) type: Method source: - remote: - path: src/OpenTK.Platform.Native/Windows/DisplayComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetResolution - path: opentk/src/OpenTK.Platform.Native/Windows/DisplayComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\DisplayComponent.cs startLine: 416 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: Get the resolution of the specified display. example: [] @@ -614,7 +550,7 @@ items: content: public void GetResolution(DisplayHandle handle, out int width, out int height) parameters: - id: handle - type: OpenTK.Core.Platform.DisplayHandle + type: OpenTK.Platform.DisplayHandle description: Handle to a display. - id: width type: System.Int32 @@ -629,31 +565,27 @@ items: commentId: T:System.ArgumentNullException description: handle is null. implements: - - OpenTK.Core.Platform.IDisplayComponent.GetResolution(OpenTK.Core.Platform.DisplayHandle,System.Int32@,System.Int32@) + - OpenTK.Platform.IDisplayComponent.GetResolution(OpenTK.Platform.DisplayHandle,System.Int32@,System.Int32@) nameWithType.vb: DisplayComponent.GetResolution(DisplayHandle, Integer, Integer) - fullName.vb: OpenTK.Platform.Native.Windows.DisplayComponent.GetResolution(OpenTK.Core.Platform.DisplayHandle, Integer, Integer) + fullName.vb: OpenTK.Platform.Native.Windows.DisplayComponent.GetResolution(OpenTK.Platform.DisplayHandle, Integer, Integer) name.vb: GetResolution(DisplayHandle, Integer, Integer) -- uid: OpenTK.Platform.Native.Windows.DisplayComponent.GetWorkArea(OpenTK.Core.Platform.DisplayHandle,OpenTK.Mathematics.Box2i@) - commentId: M:OpenTK.Platform.Native.Windows.DisplayComponent.GetWorkArea(OpenTK.Core.Platform.DisplayHandle,OpenTK.Mathematics.Box2i@) - id: GetWorkArea(OpenTK.Core.Platform.DisplayHandle,OpenTK.Mathematics.Box2i@) +- uid: OpenTK.Platform.Native.Windows.DisplayComponent.GetWorkArea(OpenTK.Platform.DisplayHandle,OpenTK.Mathematics.Box2i@) + commentId: M:OpenTK.Platform.Native.Windows.DisplayComponent.GetWorkArea(OpenTK.Platform.DisplayHandle,OpenTK.Mathematics.Box2i@) + id: GetWorkArea(OpenTK.Platform.DisplayHandle,OpenTK.Mathematics.Box2i@) parent: OpenTK.Platform.Native.Windows.DisplayComponent langs: - csharp - vb name: GetWorkArea(DisplayHandle, out Box2i) nameWithType: DisplayComponent.GetWorkArea(DisplayHandle, out Box2i) - fullName: OpenTK.Platform.Native.Windows.DisplayComponent.GetWorkArea(OpenTK.Core.Platform.DisplayHandle, out OpenTK.Mathematics.Box2i) + fullName: OpenTK.Platform.Native.Windows.DisplayComponent.GetWorkArea(OpenTK.Platform.DisplayHandle, out OpenTK.Mathematics.Box2i) type: Method source: - remote: - path: src/OpenTK.Platform.Native/Windows/DisplayComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetWorkArea - path: opentk/src/OpenTK.Platform.Native/Windows/DisplayComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\DisplayComponent.cs startLine: 425 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: >- Get the work area of this display. @@ -664,7 +596,7 @@ items: content: public void GetWorkArea(DisplayHandle handle, out Box2i area) parameters: - id: handle - type: OpenTK.Core.Platform.DisplayHandle + type: OpenTK.Platform.DisplayHandle description: Handle to a display. - id: area type: OpenTK.Mathematics.Box2i @@ -672,31 +604,27 @@ items: content.vb: Public Sub GetWorkArea(handle As DisplayHandle, area As Box2i) overload: OpenTK.Platform.Native.Windows.DisplayComponent.GetWorkArea* implements: - - OpenTK.Core.Platform.IDisplayComponent.GetWorkArea(OpenTK.Core.Platform.DisplayHandle,OpenTK.Mathematics.Box2i@) + - OpenTK.Platform.IDisplayComponent.GetWorkArea(OpenTK.Platform.DisplayHandle,OpenTK.Mathematics.Box2i@) nameWithType.vb: DisplayComponent.GetWorkArea(DisplayHandle, Box2i) - fullName.vb: OpenTK.Platform.Native.Windows.DisplayComponent.GetWorkArea(OpenTK.Core.Platform.DisplayHandle, OpenTK.Mathematics.Box2i) + fullName.vb: OpenTK.Platform.Native.Windows.DisplayComponent.GetWorkArea(OpenTK.Platform.DisplayHandle, OpenTK.Mathematics.Box2i) name.vb: GetWorkArea(DisplayHandle, Box2i) -- uid: OpenTK.Platform.Native.Windows.DisplayComponent.GetRefreshRate(OpenTK.Core.Platform.DisplayHandle,System.Single@) - commentId: M:OpenTK.Platform.Native.Windows.DisplayComponent.GetRefreshRate(OpenTK.Core.Platform.DisplayHandle,System.Single@) - id: GetRefreshRate(OpenTK.Core.Platform.DisplayHandle,System.Single@) +- uid: OpenTK.Platform.Native.Windows.DisplayComponent.GetRefreshRate(OpenTK.Platform.DisplayHandle,System.Single@) + commentId: M:OpenTK.Platform.Native.Windows.DisplayComponent.GetRefreshRate(OpenTK.Platform.DisplayHandle,System.Single@) + id: GetRefreshRate(OpenTK.Platform.DisplayHandle,System.Single@) parent: OpenTK.Platform.Native.Windows.DisplayComponent langs: - csharp - vb name: GetRefreshRate(DisplayHandle, out float) nameWithType: DisplayComponent.GetRefreshRate(DisplayHandle, out float) - fullName: OpenTK.Platform.Native.Windows.DisplayComponent.GetRefreshRate(OpenTK.Core.Platform.DisplayHandle, out float) + fullName: OpenTK.Platform.Native.Windows.DisplayComponent.GetRefreshRate(OpenTK.Platform.DisplayHandle, out float) type: Method source: - remote: - path: src/OpenTK.Platform.Native/Windows/DisplayComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetRefreshRate - path: opentk/src/OpenTK.Platform.Native/Windows/DisplayComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\DisplayComponent.cs startLine: 435 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: Get the refresh rate if the specified display. example: [] @@ -704,7 +632,7 @@ items: content: public void GetRefreshRate(DisplayHandle handle, out float refreshRate) parameters: - id: handle - type: OpenTK.Core.Platform.DisplayHandle + type: OpenTK.Platform.DisplayHandle description: Handle to a display. - id: refreshRate type: System.Single @@ -712,31 +640,27 @@ items: content.vb: Public Sub GetRefreshRate(handle As DisplayHandle, refreshRate As Single) overload: OpenTK.Platform.Native.Windows.DisplayComponent.GetRefreshRate* implements: - - OpenTK.Core.Platform.IDisplayComponent.GetRefreshRate(OpenTK.Core.Platform.DisplayHandle,System.Single@) + - OpenTK.Platform.IDisplayComponent.GetRefreshRate(OpenTK.Platform.DisplayHandle,System.Single@) nameWithType.vb: DisplayComponent.GetRefreshRate(DisplayHandle, Single) - fullName.vb: OpenTK.Platform.Native.Windows.DisplayComponent.GetRefreshRate(OpenTK.Core.Platform.DisplayHandle, Single) + fullName.vb: OpenTK.Platform.Native.Windows.DisplayComponent.GetRefreshRate(OpenTK.Platform.DisplayHandle, Single) name.vb: GetRefreshRate(DisplayHandle, Single) -- uid: OpenTK.Platform.Native.Windows.DisplayComponent.GetDisplayScale(OpenTK.Core.Platform.DisplayHandle,System.Single@,System.Single@) - commentId: M:OpenTK.Platform.Native.Windows.DisplayComponent.GetDisplayScale(OpenTK.Core.Platform.DisplayHandle,System.Single@,System.Single@) - id: GetDisplayScale(OpenTK.Core.Platform.DisplayHandle,System.Single@,System.Single@) +- uid: OpenTK.Platform.Native.Windows.DisplayComponent.GetDisplayScale(OpenTK.Platform.DisplayHandle,System.Single@,System.Single@) + commentId: M:OpenTK.Platform.Native.Windows.DisplayComponent.GetDisplayScale(OpenTK.Platform.DisplayHandle,System.Single@,System.Single@) + id: GetDisplayScale(OpenTK.Platform.DisplayHandle,System.Single@,System.Single@) parent: OpenTK.Platform.Native.Windows.DisplayComponent langs: - csharp - vb name: GetDisplayScale(DisplayHandle, out float, out float) nameWithType: DisplayComponent.GetDisplayScale(DisplayHandle, out float, out float) - fullName: OpenTK.Platform.Native.Windows.DisplayComponent.GetDisplayScale(OpenTK.Core.Platform.DisplayHandle, out float, out float) + fullName: OpenTK.Platform.Native.Windows.DisplayComponent.GetDisplayScale(OpenTK.Platform.DisplayHandle, out float, out float) type: Method source: - remote: - path: src/OpenTK.Platform.Native/Windows/DisplayComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetDisplayScale - path: opentk/src/OpenTK.Platform.Native/Windows/DisplayComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\DisplayComponent.cs startLine: 443 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: Get the scale of the display. example: [] @@ -744,7 +668,7 @@ items: content: public void GetDisplayScale(DisplayHandle handle, out float scaleX, out float scaleY) parameters: - id: handle - type: OpenTK.Core.Platform.DisplayHandle + type: OpenTK.Platform.DisplayHandle description: Handle to a display. - id: scaleX type: System.Single @@ -755,31 +679,27 @@ items: content.vb: Public Sub GetDisplayScale(handle As DisplayHandle, scaleX As Single, scaleY As Single) overload: OpenTK.Platform.Native.Windows.DisplayComponent.GetDisplayScale* implements: - - OpenTK.Core.Platform.IDisplayComponent.GetDisplayScale(OpenTK.Core.Platform.DisplayHandle,System.Single@,System.Single@) + - OpenTK.Platform.IDisplayComponent.GetDisplayScale(OpenTK.Platform.DisplayHandle,System.Single@,System.Single@) nameWithType.vb: DisplayComponent.GetDisplayScale(DisplayHandle, Single, Single) - fullName.vb: OpenTK.Platform.Native.Windows.DisplayComponent.GetDisplayScale(OpenTK.Core.Platform.DisplayHandle, Single, Single) + fullName.vb: OpenTK.Platform.Native.Windows.DisplayComponent.GetDisplayScale(OpenTK.Platform.DisplayHandle, Single, Single) name.vb: GetDisplayScale(DisplayHandle, Single, Single) -- uid: OpenTK.Platform.Native.Windows.DisplayComponent.GetAdapter(OpenTK.Core.Platform.DisplayHandle) - commentId: M:OpenTK.Platform.Native.Windows.DisplayComponent.GetAdapter(OpenTK.Core.Platform.DisplayHandle) - id: GetAdapter(OpenTK.Core.Platform.DisplayHandle) +- uid: OpenTK.Platform.Native.Windows.DisplayComponent.GetAdapter(OpenTK.Platform.DisplayHandle) + commentId: M:OpenTK.Platform.Native.Windows.DisplayComponent.GetAdapter(OpenTK.Platform.DisplayHandle) + id: GetAdapter(OpenTK.Platform.DisplayHandle) parent: OpenTK.Platform.Native.Windows.DisplayComponent langs: - csharp - vb name: GetAdapter(DisplayHandle) nameWithType: DisplayComponent.GetAdapter(DisplayHandle) - fullName: OpenTK.Platform.Native.Windows.DisplayComponent.GetAdapter(OpenTK.Core.Platform.DisplayHandle) + fullName: OpenTK.Platform.Native.Windows.DisplayComponent.GetAdapter(OpenTK.Platform.DisplayHandle) type: Method source: - remote: - path: src/OpenTK.Platform.Native/Windows/DisplayComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetAdapter - path: opentk/src/OpenTK.Platform.Native/Windows/DisplayComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\DisplayComponent.cs startLine: 465 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: Returns the win32 adapter string associated with this display. example: [] @@ -787,34 +707,30 @@ items: content: public string GetAdapter(DisplayHandle handle) parameters: - id: handle - type: OpenTK.Core.Platform.DisplayHandle + type: OpenTK.Platform.DisplayHandle description: A handle to a display to get the adapter name for. return: type: System.String description: The win32 adapter name for the display. content.vb: Public Function GetAdapter(handle As DisplayHandle) As String overload: OpenTK.Platform.Native.Windows.DisplayComponent.GetAdapter* -- uid: OpenTK.Platform.Native.Windows.DisplayComponent.GetMonitor(OpenTK.Core.Platform.DisplayHandle) - commentId: M:OpenTK.Platform.Native.Windows.DisplayComponent.GetMonitor(OpenTK.Core.Platform.DisplayHandle) - id: GetMonitor(OpenTK.Core.Platform.DisplayHandle) +- uid: OpenTK.Platform.Native.Windows.DisplayComponent.GetMonitor(OpenTK.Platform.DisplayHandle) + commentId: M:OpenTK.Platform.Native.Windows.DisplayComponent.GetMonitor(OpenTK.Platform.DisplayHandle) + id: GetMonitor(OpenTK.Platform.DisplayHandle) parent: OpenTK.Platform.Native.Windows.DisplayComponent langs: - csharp - vb name: GetMonitor(DisplayHandle) nameWithType: DisplayComponent.GetMonitor(DisplayHandle) - fullName: OpenTK.Platform.Native.Windows.DisplayComponent.GetMonitor(OpenTK.Core.Platform.DisplayHandle) + fullName: OpenTK.Platform.Native.Windows.DisplayComponent.GetMonitor(OpenTK.Platform.DisplayHandle) type: Method source: - remote: - path: src/OpenTK.Platform.Native/Windows/DisplayComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetMonitor - path: opentk/src/OpenTK.Platform.Native/Windows/DisplayComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\DisplayComponent.cs startLine: 477 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: Returns the win32 mointor device name string associated with this display. example: [] @@ -822,7 +738,7 @@ items: content: public string GetMonitor(DisplayHandle handle) parameters: - id: handle - type: OpenTK.Core.Platform.DisplayHandle + type: OpenTK.Platform.DisplayHandle description: A handle to a display to get the monitor name for. return: type: System.String @@ -879,20 +795,20 @@ references: nameWithType.vb: Object fullName.vb: Object name.vb: Object -- uid: OpenTK.Core.Platform.IDisplayComponent - commentId: T:OpenTK.Core.Platform.IDisplayComponent - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.IDisplayComponent.html +- uid: OpenTK.Platform.IDisplayComponent + commentId: T:OpenTK.Platform.IDisplayComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IDisplayComponent.html name: IDisplayComponent nameWithType: IDisplayComponent - fullName: OpenTK.Core.Platform.IDisplayComponent -- uid: OpenTK.Core.Platform.IPalComponent - commentId: T:OpenTK.Core.Platform.IPalComponent - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.IPalComponent.html + fullName: OpenTK.Platform.IDisplayComponent +- uid: OpenTK.Platform.IPalComponent + commentId: T:OpenTK.Platform.IPalComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IPalComponent.html name: IPalComponent nameWithType: IPalComponent - fullName: OpenTK.Core.Platform.IPalComponent + fullName: OpenTK.Platform.IPalComponent - uid: System.Object.Equals(System.Object) commentId: M:System.Object.Equals(System.Object) parent: System.Object @@ -1119,49 +1035,41 @@ references: name: System nameWithType: System fullName: System -- uid: OpenTK.Core.Platform - commentId: N:OpenTK.Core.Platform +- uid: OpenTK.Platform + commentId: N:OpenTK.Platform href: OpenTK.html - name: OpenTK.Core.Platform - nameWithType: OpenTK.Core.Platform - fullName: OpenTK.Core.Platform + name: OpenTK.Platform + nameWithType: OpenTK.Platform + fullName: OpenTK.Platform spec.csharp: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html spec.vb: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html - uid: OpenTK.Platform.Native.Windows.DisplayComponent.Name* commentId: Overload:OpenTK.Platform.Native.Windows.DisplayComponent.Name href: OpenTK.Platform.Native.Windows.DisplayComponent.html#OpenTK_Platform_Native_Windows_DisplayComponent_Name name: Name nameWithType: DisplayComponent.Name fullName: OpenTK.Platform.Native.Windows.DisplayComponent.Name -- uid: OpenTK.Core.Platform.IPalComponent.Name - commentId: P:OpenTK.Core.Platform.IPalComponent.Name - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Name +- uid: OpenTK.Platform.IPalComponent.Name + commentId: P:OpenTK.Platform.IPalComponent.Name + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Name name: Name nameWithType: IPalComponent.Name - fullName: OpenTK.Core.Platform.IPalComponent.Name + fullName: OpenTK.Platform.IPalComponent.Name - uid: System.String commentId: T:System.String parent: System @@ -1179,33 +1087,33 @@ references: name: Provides nameWithType: DisplayComponent.Provides fullName: OpenTK.Platform.Native.Windows.DisplayComponent.Provides -- uid: OpenTK.Core.Platform.IPalComponent.Provides - commentId: P:OpenTK.Core.Platform.IPalComponent.Provides - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Provides +- uid: OpenTK.Platform.IPalComponent.Provides + commentId: P:OpenTK.Platform.IPalComponent.Provides + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Provides name: Provides nameWithType: IPalComponent.Provides - fullName: OpenTK.Core.Platform.IPalComponent.Provides -- uid: OpenTK.Core.Platform.PalComponents - commentId: T:OpenTK.Core.Platform.PalComponents - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.PalComponents.html + fullName: OpenTK.Platform.IPalComponent.Provides +- uid: OpenTK.Platform.PalComponents + commentId: T:OpenTK.Platform.PalComponents + parent: OpenTK.Platform + href: OpenTK.Platform.PalComponents.html name: PalComponents nameWithType: PalComponents - fullName: OpenTK.Core.Platform.PalComponents + fullName: OpenTK.Platform.PalComponents - uid: OpenTK.Platform.Native.Windows.DisplayComponent.Logger* commentId: Overload:OpenTK.Platform.Native.Windows.DisplayComponent.Logger href: OpenTK.Platform.Native.Windows.DisplayComponent.html#OpenTK_Platform_Native_Windows_DisplayComponent_Logger name: Logger nameWithType: DisplayComponent.Logger fullName: OpenTK.Platform.Native.Windows.DisplayComponent.Logger -- uid: OpenTK.Core.Platform.IPalComponent.Logger - commentId: P:OpenTK.Core.Platform.IPalComponent.Logger - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Logger +- uid: OpenTK.Platform.IPalComponent.Logger + commentId: P:OpenTK.Platform.IPalComponent.Logger + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Logger name: Logger nameWithType: IPalComponent.Logger - fullName: OpenTK.Core.Platform.IPalComponent.Logger + fullName: OpenTK.Platform.IPalComponent.Logger - uid: OpenTK.Core.Utility.ILogger commentId: T:OpenTK.Core.Utility.ILogger parent: OpenTK.Core.Utility @@ -1245,55 +1153,112 @@ references: href: OpenTK.Core.Utility.html - uid: OpenTK.Platform.Native.Windows.DisplayComponent.Initialize* commentId: Overload:OpenTK.Platform.Native.Windows.DisplayComponent.Initialize - href: OpenTK.Platform.Native.Windows.DisplayComponent.html#OpenTK_Platform_Native_Windows_DisplayComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + href: OpenTK.Platform.Native.Windows.DisplayComponent.html#OpenTK_Platform_Native_Windows_DisplayComponent_Initialize_OpenTK_Platform_ToolkitOptions_ name: Initialize nameWithType: DisplayComponent.Initialize fullName: OpenTK.Platform.Native.Windows.DisplayComponent.Initialize -- uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - commentId: M:OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ +- uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ name: Initialize(ToolkitOptions) nameWithType: IPalComponent.Initialize(ToolkitOptions) - fullName: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + fullName: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) spec.csharp: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + - uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.ToolkitOptions + - uid: OpenTK.Platform.ToolkitOptions name: ToolkitOptions - href: OpenTK.Core.Platform.ToolkitOptions.html + href: OpenTK.Platform.ToolkitOptions.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + - uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.ToolkitOptions + - uid: OpenTK.Platform.ToolkitOptions name: ToolkitOptions - href: OpenTK.Core.Platform.ToolkitOptions.html + href: OpenTK.Platform.ToolkitOptions.html - name: ) -- uid: OpenTK.Core.Platform.ToolkitOptions - commentId: T:OpenTK.Core.Platform.ToolkitOptions - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.ToolkitOptions.html +- uid: OpenTK.Platform.ToolkitOptions + commentId: T:OpenTK.Platform.ToolkitOptions + parent: OpenTK.Platform + href: OpenTK.Platform.ToolkitOptions.html name: ToolkitOptions nameWithType: ToolkitOptions - fullName: OpenTK.Core.Platform.ToolkitOptions + fullName: OpenTK.Platform.ToolkitOptions +- uid: OpenTK.Platform.IDisplayComponent.GetVirtualPosition(OpenTK.Platform.DisplayHandle,System.Int32@,System.Int32@) + commentId: M:OpenTK.Platform.IDisplayComponent.GetVirtualPosition(OpenTK.Platform.DisplayHandle,System.Int32@,System.Int32@) + parent: OpenTK.Platform.IDisplayComponent + isExternal: true + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_GetVirtualPosition_OpenTK_Platform_DisplayHandle_System_Int32__System_Int32__ + name: GetVirtualPosition(DisplayHandle, out int, out int) + nameWithType: IDisplayComponent.GetVirtualPosition(DisplayHandle, out int, out int) + fullName: OpenTK.Platform.IDisplayComponent.GetVirtualPosition(OpenTK.Platform.DisplayHandle, out int, out int) + nameWithType.vb: IDisplayComponent.GetVirtualPosition(DisplayHandle, Integer, Integer) + fullName.vb: OpenTK.Platform.IDisplayComponent.GetVirtualPosition(OpenTK.Platform.DisplayHandle, Integer, Integer) + name.vb: GetVirtualPosition(DisplayHandle, Integer, Integer) + spec.csharp: + - uid: OpenTK.Platform.IDisplayComponent.GetVirtualPosition(OpenTK.Platform.DisplayHandle,System.Int32@,System.Int32@) + name: GetVirtualPosition + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_GetVirtualPosition_OpenTK_Platform_DisplayHandle_System_Int32__System_Int32__ + - name: ( + - uid: OpenTK.Platform.DisplayHandle + name: DisplayHandle + href: OpenTK.Platform.DisplayHandle.html + - name: ',' + - name: " " + - name: out + - name: " " + - uid: System.Int32 + name: int + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ',' + - name: " " + - name: out + - name: " " + - uid: System.Int32 + name: int + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ) + spec.vb: + - uid: OpenTK.Platform.IDisplayComponent.GetVirtualPosition(OpenTK.Platform.DisplayHandle,System.Int32@,System.Int32@) + name: GetVirtualPosition + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_GetVirtualPosition_OpenTK_Platform_DisplayHandle_System_Int32__System_Int32__ + - name: ( + - uid: OpenTK.Platform.DisplayHandle + name: DisplayHandle + href: OpenTK.Platform.DisplayHandle.html + - name: ',' + - name: " " + - uid: System.Int32 + name: Integer + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ',' + - name: " " + - uid: System.Int32 + name: Integer + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ) - uid: OpenTK.Platform.Native.Windows.DisplayComponent.CanGetVirtualPosition* commentId: Overload:OpenTK.Platform.Native.Windows.DisplayComponent.CanGetVirtualPosition href: OpenTK.Platform.Native.Windows.DisplayComponent.html#OpenTK_Platform_Native_Windows_DisplayComponent_CanGetVirtualPosition name: CanGetVirtualPosition nameWithType: DisplayComponent.CanGetVirtualPosition fullName: OpenTK.Platform.Native.Windows.DisplayComponent.CanGetVirtualPosition -- uid: OpenTK.Core.Platform.IDisplayComponent.CanGetVirtualPosition - commentId: P:OpenTK.Core.Platform.IDisplayComponent.CanGetVirtualPosition - parent: OpenTK.Core.Platform.IDisplayComponent - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_CanGetVirtualPosition +- uid: OpenTK.Platform.IDisplayComponent.CanGetVirtualPosition + commentId: P:OpenTK.Platform.IDisplayComponent.CanGetVirtualPosition + parent: OpenTK.Platform.IDisplayComponent + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_CanGetVirtualPosition name: CanGetVirtualPosition nameWithType: IDisplayComponent.CanGetVirtualPosition - fullName: OpenTK.Core.Platform.IDisplayComponent.CanGetVirtualPosition + fullName: OpenTK.Platform.IDisplayComponent.CanGetVirtualPosition - uid: System.Boolean commentId: T:System.Boolean parent: System @@ -1311,23 +1276,23 @@ references: name: GetDisplayCount nameWithType: DisplayComponent.GetDisplayCount fullName: OpenTK.Platform.Native.Windows.DisplayComponent.GetDisplayCount -- uid: OpenTK.Core.Platform.IDisplayComponent.GetDisplayCount - commentId: M:OpenTK.Core.Platform.IDisplayComponent.GetDisplayCount - parent: OpenTK.Core.Platform.IDisplayComponent - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_GetDisplayCount +- uid: OpenTK.Platform.IDisplayComponent.GetDisplayCount + commentId: M:OpenTK.Platform.IDisplayComponent.GetDisplayCount + parent: OpenTK.Platform.IDisplayComponent + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_GetDisplayCount name: GetDisplayCount() nameWithType: IDisplayComponent.GetDisplayCount() - fullName: OpenTK.Core.Platform.IDisplayComponent.GetDisplayCount() + fullName: OpenTK.Platform.IDisplayComponent.GetDisplayCount() spec.csharp: - - uid: OpenTK.Core.Platform.IDisplayComponent.GetDisplayCount + - uid: OpenTK.Platform.IDisplayComponent.GetDisplayCount name: GetDisplayCount - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_GetDisplayCount + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_GetDisplayCount - name: ( - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IDisplayComponent.GetDisplayCount + - uid: OpenTK.Platform.IDisplayComponent.GetDisplayCount name: GetDisplayCount - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_GetDisplayCount + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_GetDisplayCount - name: ( - name: ) - uid: System.Int32 @@ -1354,21 +1319,21 @@ references: name: Open nameWithType: DisplayComponent.Open fullName: OpenTK.Platform.Native.Windows.DisplayComponent.Open -- uid: OpenTK.Core.Platform.IDisplayComponent.Open(System.Int32) - commentId: M:OpenTK.Core.Platform.IDisplayComponent.Open(System.Int32) - parent: OpenTK.Core.Platform.IDisplayComponent +- uid: OpenTK.Platform.IDisplayComponent.Open(System.Int32) + commentId: M:OpenTK.Platform.IDisplayComponent.Open(System.Int32) + parent: OpenTK.Platform.IDisplayComponent isExternal: true - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_Open_System_Int32_ + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_Open_System_Int32_ name: Open(int) nameWithType: IDisplayComponent.Open(int) - fullName: OpenTK.Core.Platform.IDisplayComponent.Open(int) + fullName: OpenTK.Platform.IDisplayComponent.Open(int) nameWithType.vb: IDisplayComponent.Open(Integer) - fullName.vb: OpenTK.Core.Platform.IDisplayComponent.Open(Integer) + fullName.vb: OpenTK.Platform.IDisplayComponent.Open(Integer) name.vb: Open(Integer) spec.csharp: - - uid: OpenTK.Core.Platform.IDisplayComponent.Open(System.Int32) + - uid: OpenTK.Platform.IDisplayComponent.Open(System.Int32) name: Open - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_Open_System_Int32_ + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_Open_System_Int32_ - name: ( - uid: System.Int32 name: int @@ -1376,45 +1341,45 @@ references: href: https://learn.microsoft.com/dotnet/api/system.int32 - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IDisplayComponent.Open(System.Int32) + - uid: OpenTK.Platform.IDisplayComponent.Open(System.Int32) name: Open - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_Open_System_Int32_ + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_Open_System_Int32_ - name: ( - uid: System.Int32 name: Integer isExternal: true href: https://learn.microsoft.com/dotnet/api/system.int32 - name: ) -- uid: OpenTK.Core.Platform.DisplayHandle - commentId: T:OpenTK.Core.Platform.DisplayHandle - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.DisplayHandle.html +- uid: OpenTK.Platform.DisplayHandle + commentId: T:OpenTK.Platform.DisplayHandle + parent: OpenTK.Platform + href: OpenTK.Platform.DisplayHandle.html name: DisplayHandle nameWithType: DisplayHandle - fullName: OpenTK.Core.Platform.DisplayHandle + fullName: OpenTK.Platform.DisplayHandle - uid: OpenTK.Platform.Native.Windows.DisplayComponent.OpenPrimary* commentId: Overload:OpenTK.Platform.Native.Windows.DisplayComponent.OpenPrimary href: OpenTK.Platform.Native.Windows.DisplayComponent.html#OpenTK_Platform_Native_Windows_DisplayComponent_OpenPrimary name: OpenPrimary nameWithType: DisplayComponent.OpenPrimary fullName: OpenTK.Platform.Native.Windows.DisplayComponent.OpenPrimary -- uid: OpenTK.Core.Platform.IDisplayComponent.OpenPrimary - commentId: M:OpenTK.Core.Platform.IDisplayComponent.OpenPrimary - parent: OpenTK.Core.Platform.IDisplayComponent - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_OpenPrimary +- uid: OpenTK.Platform.IDisplayComponent.OpenPrimary + commentId: M:OpenTK.Platform.IDisplayComponent.OpenPrimary + parent: OpenTK.Platform.IDisplayComponent + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_OpenPrimary name: OpenPrimary() nameWithType: IDisplayComponent.OpenPrimary() - fullName: OpenTK.Core.Platform.IDisplayComponent.OpenPrimary() + fullName: OpenTK.Platform.IDisplayComponent.OpenPrimary() spec.csharp: - - uid: OpenTK.Core.Platform.IDisplayComponent.OpenPrimary + - uid: OpenTK.Platform.IDisplayComponent.OpenPrimary name: OpenPrimary - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_OpenPrimary + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_OpenPrimary - name: ( - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IDisplayComponent.OpenPrimary + - uid: OpenTK.Platform.IDisplayComponent.OpenPrimary name: OpenPrimary - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_OpenPrimary + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_OpenPrimary - name: ( - name: ) - uid: System.ArgumentNullException @@ -1426,296 +1391,239 @@ references: fullName: System.ArgumentNullException - uid: OpenTK.Platform.Native.Windows.DisplayComponent.Close* commentId: Overload:OpenTK.Platform.Native.Windows.DisplayComponent.Close - href: OpenTK.Platform.Native.Windows.DisplayComponent.html#OpenTK_Platform_Native_Windows_DisplayComponent_Close_OpenTK_Core_Platform_DisplayHandle_ + href: OpenTK.Platform.Native.Windows.DisplayComponent.html#OpenTK_Platform_Native_Windows_DisplayComponent_Close_OpenTK_Platform_DisplayHandle_ name: Close nameWithType: DisplayComponent.Close fullName: OpenTK.Platform.Native.Windows.DisplayComponent.Close -- uid: OpenTK.Core.Platform.IDisplayComponent.Close(OpenTK.Core.Platform.DisplayHandle) - commentId: M:OpenTK.Core.Platform.IDisplayComponent.Close(OpenTK.Core.Platform.DisplayHandle) - parent: OpenTK.Core.Platform.IDisplayComponent - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_Close_OpenTK_Core_Platform_DisplayHandle_ +- uid: OpenTK.Platform.IDisplayComponent.Close(OpenTK.Platform.DisplayHandle) + commentId: M:OpenTK.Platform.IDisplayComponent.Close(OpenTK.Platform.DisplayHandle) + parent: OpenTK.Platform.IDisplayComponent + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_Close_OpenTK_Platform_DisplayHandle_ name: Close(DisplayHandle) nameWithType: IDisplayComponent.Close(DisplayHandle) - fullName: OpenTK.Core.Platform.IDisplayComponent.Close(OpenTK.Core.Platform.DisplayHandle) + fullName: OpenTK.Platform.IDisplayComponent.Close(OpenTK.Platform.DisplayHandle) spec.csharp: - - uid: OpenTK.Core.Platform.IDisplayComponent.Close(OpenTK.Core.Platform.DisplayHandle) + - uid: OpenTK.Platform.IDisplayComponent.Close(OpenTK.Platform.DisplayHandle) name: Close - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_Close_OpenTK_Core_Platform_DisplayHandle_ + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_Close_OpenTK_Platform_DisplayHandle_ - name: ( - - uid: OpenTK.Core.Platform.DisplayHandle + - uid: OpenTK.Platform.DisplayHandle name: DisplayHandle - href: OpenTK.Core.Platform.DisplayHandle.html + href: OpenTK.Platform.DisplayHandle.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IDisplayComponent.Close(OpenTK.Core.Platform.DisplayHandle) + - uid: OpenTK.Platform.IDisplayComponent.Close(OpenTK.Platform.DisplayHandle) name: Close - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_Close_OpenTK_Core_Platform_DisplayHandle_ + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_Close_OpenTK_Platform_DisplayHandle_ - name: ( - - uid: OpenTK.Core.Platform.DisplayHandle + - uid: OpenTK.Platform.DisplayHandle name: DisplayHandle - href: OpenTK.Core.Platform.DisplayHandle.html + href: OpenTK.Platform.DisplayHandle.html - name: ) - uid: OpenTK.Platform.Native.Windows.DisplayComponent.IsPrimary* commentId: Overload:OpenTK.Platform.Native.Windows.DisplayComponent.IsPrimary - href: OpenTK.Platform.Native.Windows.DisplayComponent.html#OpenTK_Platform_Native_Windows_DisplayComponent_IsPrimary_OpenTK_Core_Platform_DisplayHandle_ + href: OpenTK.Platform.Native.Windows.DisplayComponent.html#OpenTK_Platform_Native_Windows_DisplayComponent_IsPrimary_OpenTK_Platform_DisplayHandle_ name: IsPrimary nameWithType: DisplayComponent.IsPrimary fullName: OpenTK.Platform.Native.Windows.DisplayComponent.IsPrimary -- uid: OpenTK.Core.Platform.IDisplayComponent.IsPrimary(OpenTK.Core.Platform.DisplayHandle) - commentId: M:OpenTK.Core.Platform.IDisplayComponent.IsPrimary(OpenTK.Core.Platform.DisplayHandle) - parent: OpenTK.Core.Platform.IDisplayComponent - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_IsPrimary_OpenTK_Core_Platform_DisplayHandle_ +- uid: OpenTK.Platform.IDisplayComponent.IsPrimary(OpenTK.Platform.DisplayHandle) + commentId: M:OpenTK.Platform.IDisplayComponent.IsPrimary(OpenTK.Platform.DisplayHandle) + parent: OpenTK.Platform.IDisplayComponent + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_IsPrimary_OpenTK_Platform_DisplayHandle_ name: IsPrimary(DisplayHandle) nameWithType: IDisplayComponent.IsPrimary(DisplayHandle) - fullName: OpenTK.Core.Platform.IDisplayComponent.IsPrimary(OpenTK.Core.Platform.DisplayHandle) + fullName: OpenTK.Platform.IDisplayComponent.IsPrimary(OpenTK.Platform.DisplayHandle) spec.csharp: - - uid: OpenTK.Core.Platform.IDisplayComponent.IsPrimary(OpenTK.Core.Platform.DisplayHandle) + - uid: OpenTK.Platform.IDisplayComponent.IsPrimary(OpenTK.Platform.DisplayHandle) name: IsPrimary - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_IsPrimary_OpenTK_Core_Platform_DisplayHandle_ + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_IsPrimary_OpenTK_Platform_DisplayHandle_ - name: ( - - uid: OpenTK.Core.Platform.DisplayHandle + - uid: OpenTK.Platform.DisplayHandle name: DisplayHandle - href: OpenTK.Core.Platform.DisplayHandle.html + href: OpenTK.Platform.DisplayHandle.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IDisplayComponent.IsPrimary(OpenTK.Core.Platform.DisplayHandle) + - uid: OpenTK.Platform.IDisplayComponent.IsPrimary(OpenTK.Platform.DisplayHandle) name: IsPrimary - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_IsPrimary_OpenTK_Core_Platform_DisplayHandle_ + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_IsPrimary_OpenTK_Platform_DisplayHandle_ - name: ( - - uid: OpenTK.Core.Platform.DisplayHandle + - uid: OpenTK.Platform.DisplayHandle name: DisplayHandle - href: OpenTK.Core.Platform.DisplayHandle.html + href: OpenTK.Platform.DisplayHandle.html - name: ) - uid: OpenTK.Platform.Native.Windows.DisplayComponent.GetName* commentId: Overload:OpenTK.Platform.Native.Windows.DisplayComponent.GetName - href: OpenTK.Platform.Native.Windows.DisplayComponent.html#OpenTK_Platform_Native_Windows_DisplayComponent_GetName_OpenTK_Core_Platform_DisplayHandle_ + href: OpenTK.Platform.Native.Windows.DisplayComponent.html#OpenTK_Platform_Native_Windows_DisplayComponent_GetName_OpenTK_Platform_DisplayHandle_ name: GetName nameWithType: DisplayComponent.GetName fullName: OpenTK.Platform.Native.Windows.DisplayComponent.GetName -- uid: OpenTK.Core.Platform.IDisplayComponent.GetName(OpenTK.Core.Platform.DisplayHandle) - commentId: M:OpenTK.Core.Platform.IDisplayComponent.GetName(OpenTK.Core.Platform.DisplayHandle) - parent: OpenTK.Core.Platform.IDisplayComponent - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_GetName_OpenTK_Core_Platform_DisplayHandle_ +- uid: OpenTK.Platform.IDisplayComponent.GetName(OpenTK.Platform.DisplayHandle) + commentId: M:OpenTK.Platform.IDisplayComponent.GetName(OpenTK.Platform.DisplayHandle) + parent: OpenTK.Platform.IDisplayComponent + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_GetName_OpenTK_Platform_DisplayHandle_ name: GetName(DisplayHandle) nameWithType: IDisplayComponent.GetName(DisplayHandle) - fullName: OpenTK.Core.Platform.IDisplayComponent.GetName(OpenTK.Core.Platform.DisplayHandle) + fullName: OpenTK.Platform.IDisplayComponent.GetName(OpenTK.Platform.DisplayHandle) spec.csharp: - - uid: OpenTK.Core.Platform.IDisplayComponent.GetName(OpenTK.Core.Platform.DisplayHandle) + - uid: OpenTK.Platform.IDisplayComponent.GetName(OpenTK.Platform.DisplayHandle) name: GetName - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_GetName_OpenTK_Core_Platform_DisplayHandle_ + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_GetName_OpenTK_Platform_DisplayHandle_ - name: ( - - uid: OpenTK.Core.Platform.DisplayHandle + - uid: OpenTK.Platform.DisplayHandle name: DisplayHandle - href: OpenTK.Core.Platform.DisplayHandle.html + href: OpenTK.Platform.DisplayHandle.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IDisplayComponent.GetName(OpenTK.Core.Platform.DisplayHandle) + - uid: OpenTK.Platform.IDisplayComponent.GetName(OpenTK.Platform.DisplayHandle) name: GetName - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_GetName_OpenTK_Core_Platform_DisplayHandle_ + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_GetName_OpenTK_Platform_DisplayHandle_ - name: ( - - uid: OpenTK.Core.Platform.DisplayHandle + - uid: OpenTK.Platform.DisplayHandle name: DisplayHandle - href: OpenTK.Core.Platform.DisplayHandle.html + href: OpenTK.Platform.DisplayHandle.html - name: ) - uid: OpenTK.Platform.Native.Windows.DisplayComponent.GetVideoMode* commentId: Overload:OpenTK.Platform.Native.Windows.DisplayComponent.GetVideoMode - href: OpenTK.Platform.Native.Windows.DisplayComponent.html#OpenTK_Platform_Native_Windows_DisplayComponent_GetVideoMode_OpenTK_Core_Platform_DisplayHandle_OpenTK_Core_Platform_VideoMode__ + href: OpenTK.Platform.Native.Windows.DisplayComponent.html#OpenTK_Platform_Native_Windows_DisplayComponent_GetVideoMode_OpenTK_Platform_DisplayHandle_OpenTK_Platform_VideoMode__ name: GetVideoMode nameWithType: DisplayComponent.GetVideoMode fullName: OpenTK.Platform.Native.Windows.DisplayComponent.GetVideoMode -- uid: OpenTK.Core.Platform.IDisplayComponent.GetVideoMode(OpenTK.Core.Platform.DisplayHandle,OpenTK.Core.Platform.VideoMode@) - commentId: M:OpenTK.Core.Platform.IDisplayComponent.GetVideoMode(OpenTK.Core.Platform.DisplayHandle,OpenTK.Core.Platform.VideoMode@) - parent: OpenTK.Core.Platform.IDisplayComponent - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_GetVideoMode_OpenTK_Core_Platform_DisplayHandle_OpenTK_Core_Platform_VideoMode__ +- uid: OpenTK.Platform.IDisplayComponent.GetVideoMode(OpenTK.Platform.DisplayHandle,OpenTK.Platform.VideoMode@) + commentId: M:OpenTK.Platform.IDisplayComponent.GetVideoMode(OpenTK.Platform.DisplayHandle,OpenTK.Platform.VideoMode@) + parent: OpenTK.Platform.IDisplayComponent + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_GetVideoMode_OpenTK_Platform_DisplayHandle_OpenTK_Platform_VideoMode__ name: GetVideoMode(DisplayHandle, out VideoMode) nameWithType: IDisplayComponent.GetVideoMode(DisplayHandle, out VideoMode) - fullName: OpenTK.Core.Platform.IDisplayComponent.GetVideoMode(OpenTK.Core.Platform.DisplayHandle, out OpenTK.Core.Platform.VideoMode) + fullName: OpenTK.Platform.IDisplayComponent.GetVideoMode(OpenTK.Platform.DisplayHandle, out OpenTK.Platform.VideoMode) nameWithType.vb: IDisplayComponent.GetVideoMode(DisplayHandle, VideoMode) - fullName.vb: OpenTK.Core.Platform.IDisplayComponent.GetVideoMode(OpenTK.Core.Platform.DisplayHandle, OpenTK.Core.Platform.VideoMode) + fullName.vb: OpenTK.Platform.IDisplayComponent.GetVideoMode(OpenTK.Platform.DisplayHandle, OpenTK.Platform.VideoMode) name.vb: GetVideoMode(DisplayHandle, VideoMode) spec.csharp: - - uid: OpenTK.Core.Platform.IDisplayComponent.GetVideoMode(OpenTK.Core.Platform.DisplayHandle,OpenTK.Core.Platform.VideoMode@) + - uid: OpenTK.Platform.IDisplayComponent.GetVideoMode(OpenTK.Platform.DisplayHandle,OpenTK.Platform.VideoMode@) name: GetVideoMode - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_GetVideoMode_OpenTK_Core_Platform_DisplayHandle_OpenTK_Core_Platform_VideoMode__ + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_GetVideoMode_OpenTK_Platform_DisplayHandle_OpenTK_Platform_VideoMode__ - name: ( - - uid: OpenTK.Core.Platform.DisplayHandle + - uid: OpenTK.Platform.DisplayHandle name: DisplayHandle - href: OpenTK.Core.Platform.DisplayHandle.html + href: OpenTK.Platform.DisplayHandle.html - name: ',' - name: " " - name: out - name: " " - - uid: OpenTK.Core.Platform.VideoMode + - uid: OpenTK.Platform.VideoMode name: VideoMode - href: OpenTK.Core.Platform.VideoMode.html + href: OpenTK.Platform.VideoMode.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IDisplayComponent.GetVideoMode(OpenTK.Core.Platform.DisplayHandle,OpenTK.Core.Platform.VideoMode@) + - uid: OpenTK.Platform.IDisplayComponent.GetVideoMode(OpenTK.Platform.DisplayHandle,OpenTK.Platform.VideoMode@) name: GetVideoMode - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_GetVideoMode_OpenTK_Core_Platform_DisplayHandle_OpenTK_Core_Platform_VideoMode__ + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_GetVideoMode_OpenTK_Platform_DisplayHandle_OpenTK_Platform_VideoMode__ - name: ( - - uid: OpenTK.Core.Platform.DisplayHandle + - uid: OpenTK.Platform.DisplayHandle name: DisplayHandle - href: OpenTK.Core.Platform.DisplayHandle.html + href: OpenTK.Platform.DisplayHandle.html - name: ',' - name: " " - - uid: OpenTK.Core.Platform.VideoMode + - uid: OpenTK.Platform.VideoMode name: VideoMode - href: OpenTK.Core.Platform.VideoMode.html + href: OpenTK.Platform.VideoMode.html - name: ) -- uid: OpenTK.Core.Platform.VideoMode - commentId: T:OpenTK.Core.Platform.VideoMode - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.VideoMode.html +- uid: OpenTK.Platform.VideoMode + commentId: T:OpenTK.Platform.VideoMode + parent: OpenTK.Platform + href: OpenTK.Platform.VideoMode.html name: VideoMode nameWithType: VideoMode - fullName: OpenTK.Core.Platform.VideoMode + fullName: OpenTK.Platform.VideoMode - uid: OpenTK.Platform.Native.Windows.DisplayComponent.GetSupportedVideoModes* commentId: Overload:OpenTK.Platform.Native.Windows.DisplayComponent.GetSupportedVideoModes - href: OpenTK.Platform.Native.Windows.DisplayComponent.html#OpenTK_Platform_Native_Windows_DisplayComponent_GetSupportedVideoModes_OpenTK_Core_Platform_DisplayHandle_ + href: OpenTK.Platform.Native.Windows.DisplayComponent.html#OpenTK_Platform_Native_Windows_DisplayComponent_GetSupportedVideoModes_OpenTK_Platform_DisplayHandle_ name: GetSupportedVideoModes nameWithType: DisplayComponent.GetSupportedVideoModes fullName: OpenTK.Platform.Native.Windows.DisplayComponent.GetSupportedVideoModes -- uid: OpenTK.Core.Platform.IDisplayComponent.GetSupportedVideoModes(OpenTK.Core.Platform.DisplayHandle) - commentId: M:OpenTK.Core.Platform.IDisplayComponent.GetSupportedVideoModes(OpenTK.Core.Platform.DisplayHandle) - parent: OpenTK.Core.Platform.IDisplayComponent - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_GetSupportedVideoModes_OpenTK_Core_Platform_DisplayHandle_ +- uid: OpenTK.Platform.IDisplayComponent.GetSupportedVideoModes(OpenTK.Platform.DisplayHandle) + commentId: M:OpenTK.Platform.IDisplayComponent.GetSupportedVideoModes(OpenTK.Platform.DisplayHandle) + parent: OpenTK.Platform.IDisplayComponent + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_GetSupportedVideoModes_OpenTK_Platform_DisplayHandle_ name: GetSupportedVideoModes(DisplayHandle) nameWithType: IDisplayComponent.GetSupportedVideoModes(DisplayHandle) - fullName: OpenTK.Core.Platform.IDisplayComponent.GetSupportedVideoModes(OpenTK.Core.Platform.DisplayHandle) + fullName: OpenTK.Platform.IDisplayComponent.GetSupportedVideoModes(OpenTK.Platform.DisplayHandle) spec.csharp: - - uid: OpenTK.Core.Platform.IDisplayComponent.GetSupportedVideoModes(OpenTK.Core.Platform.DisplayHandle) + - uid: OpenTK.Platform.IDisplayComponent.GetSupportedVideoModes(OpenTK.Platform.DisplayHandle) name: GetSupportedVideoModes - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_GetSupportedVideoModes_OpenTK_Core_Platform_DisplayHandle_ + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_GetSupportedVideoModes_OpenTK_Platform_DisplayHandle_ - name: ( - - uid: OpenTK.Core.Platform.DisplayHandle + - uid: OpenTK.Platform.DisplayHandle name: DisplayHandle - href: OpenTK.Core.Platform.DisplayHandle.html + href: OpenTK.Platform.DisplayHandle.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IDisplayComponent.GetSupportedVideoModes(OpenTK.Core.Platform.DisplayHandle) + - uid: OpenTK.Platform.IDisplayComponent.GetSupportedVideoModes(OpenTK.Platform.DisplayHandle) name: GetSupportedVideoModes - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_GetSupportedVideoModes_OpenTK_Core_Platform_DisplayHandle_ + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_GetSupportedVideoModes_OpenTK_Platform_DisplayHandle_ - name: ( - - uid: OpenTK.Core.Platform.DisplayHandle + - uid: OpenTK.Platform.DisplayHandle name: DisplayHandle - href: OpenTK.Core.Platform.DisplayHandle.html + href: OpenTK.Platform.DisplayHandle.html - name: ) -- uid: OpenTK.Core.Platform.VideoMode[] +- uid: OpenTK.Platform.VideoMode[] isExternal: true - href: OpenTK.Core.Platform.VideoMode.html + href: OpenTK.Platform.VideoMode.html name: VideoMode[] nameWithType: VideoMode[] - fullName: OpenTK.Core.Platform.VideoMode[] + fullName: OpenTK.Platform.VideoMode[] nameWithType.vb: VideoMode() - fullName.vb: OpenTK.Core.Platform.VideoMode() + fullName.vb: OpenTK.Platform.VideoMode() name.vb: VideoMode() spec.csharp: - - uid: OpenTK.Core.Platform.VideoMode + - uid: OpenTK.Platform.VideoMode name: VideoMode - href: OpenTK.Core.Platform.VideoMode.html + href: OpenTK.Platform.VideoMode.html - name: '[' - name: ']' spec.vb: - - uid: OpenTK.Core.Platform.VideoMode + - uid: OpenTK.Platform.VideoMode name: VideoMode - href: OpenTK.Core.Platform.VideoMode.html + href: OpenTK.Platform.VideoMode.html - name: ( - name: ) -- uid: OpenTK.Core.Platform.PalNotImplementedException - commentId: T:OpenTK.Core.Platform.PalNotImplementedException - href: OpenTK.Core.Platform.PalNotImplementedException.html +- uid: OpenTK.Platform.PalNotImplementedException + commentId: T:OpenTK.Platform.PalNotImplementedException + href: OpenTK.Platform.PalNotImplementedException.html name: PalNotImplementedException nameWithType: PalNotImplementedException - fullName: OpenTK.Core.Platform.PalNotImplementedException + fullName: OpenTK.Platform.PalNotImplementedException - uid: OpenTK.Platform.Native.Windows.DisplayComponent.GetVirtualPosition* commentId: Overload:OpenTK.Platform.Native.Windows.DisplayComponent.GetVirtualPosition - href: OpenTK.Platform.Native.Windows.DisplayComponent.html#OpenTK_Platform_Native_Windows_DisplayComponent_GetVirtualPosition_OpenTK_Core_Platform_DisplayHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.Native.Windows.DisplayComponent.html#OpenTK_Platform_Native_Windows_DisplayComponent_GetVirtualPosition_OpenTK_Platform_DisplayHandle_System_Int32__System_Int32__ name: GetVirtualPosition nameWithType: DisplayComponent.GetVirtualPosition fullName: OpenTK.Platform.Native.Windows.DisplayComponent.GetVirtualPosition -- uid: OpenTK.Core.Platform.IDisplayComponent.GetVirtualPosition(OpenTK.Core.Platform.DisplayHandle,System.Int32@,System.Int32@) - commentId: M:OpenTK.Core.Platform.IDisplayComponent.GetVirtualPosition(OpenTK.Core.Platform.DisplayHandle,System.Int32@,System.Int32@) - parent: OpenTK.Core.Platform.IDisplayComponent - isExternal: true - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_GetVirtualPosition_OpenTK_Core_Platform_DisplayHandle_System_Int32__System_Int32__ - name: GetVirtualPosition(DisplayHandle, out int, out int) - nameWithType: IDisplayComponent.GetVirtualPosition(DisplayHandle, out int, out int) - fullName: OpenTK.Core.Platform.IDisplayComponent.GetVirtualPosition(OpenTK.Core.Platform.DisplayHandle, out int, out int) - nameWithType.vb: IDisplayComponent.GetVirtualPosition(DisplayHandle, Integer, Integer) - fullName.vb: OpenTK.Core.Platform.IDisplayComponent.GetVirtualPosition(OpenTK.Core.Platform.DisplayHandle, Integer, Integer) - name.vb: GetVirtualPosition(DisplayHandle, Integer, Integer) - spec.csharp: - - uid: OpenTK.Core.Platform.IDisplayComponent.GetVirtualPosition(OpenTK.Core.Platform.DisplayHandle,System.Int32@,System.Int32@) - name: GetVirtualPosition - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_GetVirtualPosition_OpenTK_Core_Platform_DisplayHandle_System_Int32__System_Int32__ - - name: ( - - uid: OpenTK.Core.Platform.DisplayHandle - name: DisplayHandle - href: OpenTK.Core.Platform.DisplayHandle.html - - name: ',' - - name: " " - - name: out - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - name: out - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) - spec.vb: - - uid: OpenTK.Core.Platform.IDisplayComponent.GetVirtualPosition(OpenTK.Core.Platform.DisplayHandle,System.Int32@,System.Int32@) - name: GetVirtualPosition - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_GetVirtualPosition_OpenTK_Core_Platform_DisplayHandle_System_Int32__System_Int32__ - - name: ( - - uid: OpenTK.Core.Platform.DisplayHandle - name: DisplayHandle - href: OpenTK.Core.Platform.DisplayHandle.html - - name: ',' - - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) - uid: OpenTK.Platform.Native.Windows.DisplayComponent.GetResolution* commentId: Overload:OpenTK.Platform.Native.Windows.DisplayComponent.GetResolution - href: OpenTK.Platform.Native.Windows.DisplayComponent.html#OpenTK_Platform_Native_Windows_DisplayComponent_GetResolution_OpenTK_Core_Platform_DisplayHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.Native.Windows.DisplayComponent.html#OpenTK_Platform_Native_Windows_DisplayComponent_GetResolution_OpenTK_Platform_DisplayHandle_System_Int32__System_Int32__ name: GetResolution nameWithType: DisplayComponent.GetResolution fullName: OpenTK.Platform.Native.Windows.DisplayComponent.GetResolution -- uid: OpenTK.Core.Platform.IDisplayComponent.GetResolution(OpenTK.Core.Platform.DisplayHandle,System.Int32@,System.Int32@) - commentId: M:OpenTK.Core.Platform.IDisplayComponent.GetResolution(OpenTK.Core.Platform.DisplayHandle,System.Int32@,System.Int32@) - parent: OpenTK.Core.Platform.IDisplayComponent +- uid: OpenTK.Platform.IDisplayComponent.GetResolution(OpenTK.Platform.DisplayHandle,System.Int32@,System.Int32@) + commentId: M:OpenTK.Platform.IDisplayComponent.GetResolution(OpenTK.Platform.DisplayHandle,System.Int32@,System.Int32@) + parent: OpenTK.Platform.IDisplayComponent isExternal: true - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_GetResolution_OpenTK_Core_Platform_DisplayHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_GetResolution_OpenTK_Platform_DisplayHandle_System_Int32__System_Int32__ name: GetResolution(DisplayHandle, out int, out int) nameWithType: IDisplayComponent.GetResolution(DisplayHandle, out int, out int) - fullName: OpenTK.Core.Platform.IDisplayComponent.GetResolution(OpenTK.Core.Platform.DisplayHandle, out int, out int) + fullName: OpenTK.Platform.IDisplayComponent.GetResolution(OpenTK.Platform.DisplayHandle, out int, out int) nameWithType.vb: IDisplayComponent.GetResolution(DisplayHandle, Integer, Integer) - fullName.vb: OpenTK.Core.Platform.IDisplayComponent.GetResolution(OpenTK.Core.Platform.DisplayHandle, Integer, Integer) + fullName.vb: OpenTK.Platform.IDisplayComponent.GetResolution(OpenTK.Platform.DisplayHandle, Integer, Integer) name.vb: GetResolution(DisplayHandle, Integer, Integer) spec.csharp: - - uid: OpenTK.Core.Platform.IDisplayComponent.GetResolution(OpenTK.Core.Platform.DisplayHandle,System.Int32@,System.Int32@) + - uid: OpenTK.Platform.IDisplayComponent.GetResolution(OpenTK.Platform.DisplayHandle,System.Int32@,System.Int32@) name: GetResolution - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_GetResolution_OpenTK_Core_Platform_DisplayHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_GetResolution_OpenTK_Platform_DisplayHandle_System_Int32__System_Int32__ - name: ( - - uid: OpenTK.Core.Platform.DisplayHandle + - uid: OpenTK.Platform.DisplayHandle name: DisplayHandle - href: OpenTK.Core.Platform.DisplayHandle.html + href: OpenTK.Platform.DisplayHandle.html - name: ',' - name: " " - name: out @@ -1734,13 +1642,13 @@ references: href: https://learn.microsoft.com/dotnet/api/system.int32 - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IDisplayComponent.GetResolution(OpenTK.Core.Platform.DisplayHandle,System.Int32@,System.Int32@) + - uid: OpenTK.Platform.IDisplayComponent.GetResolution(OpenTK.Platform.DisplayHandle,System.Int32@,System.Int32@) name: GetResolution - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_GetResolution_OpenTK_Core_Platform_DisplayHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_GetResolution_OpenTK_Platform_DisplayHandle_System_Int32__System_Int32__ - name: ( - - uid: OpenTK.Core.Platform.DisplayHandle + - uid: OpenTK.Platform.DisplayHandle name: DisplayHandle - href: OpenTK.Core.Platform.DisplayHandle.html + href: OpenTK.Platform.DisplayHandle.html - name: ',' - name: " " - uid: System.Int32 @@ -1756,28 +1664,28 @@ references: - name: ) - uid: OpenTK.Platform.Native.Windows.DisplayComponent.GetWorkArea* commentId: Overload:OpenTK.Platform.Native.Windows.DisplayComponent.GetWorkArea - href: OpenTK.Platform.Native.Windows.DisplayComponent.html#OpenTK_Platform_Native_Windows_DisplayComponent_GetWorkArea_OpenTK_Core_Platform_DisplayHandle_OpenTK_Mathematics_Box2i__ + href: OpenTK.Platform.Native.Windows.DisplayComponent.html#OpenTK_Platform_Native_Windows_DisplayComponent_GetWorkArea_OpenTK_Platform_DisplayHandle_OpenTK_Mathematics_Box2i__ name: GetWorkArea nameWithType: DisplayComponent.GetWorkArea fullName: OpenTK.Platform.Native.Windows.DisplayComponent.GetWorkArea -- uid: OpenTK.Core.Platform.IDisplayComponent.GetWorkArea(OpenTK.Core.Platform.DisplayHandle,OpenTK.Mathematics.Box2i@) - commentId: M:OpenTK.Core.Platform.IDisplayComponent.GetWorkArea(OpenTK.Core.Platform.DisplayHandle,OpenTK.Mathematics.Box2i@) - parent: OpenTK.Core.Platform.IDisplayComponent - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_GetWorkArea_OpenTK_Core_Platform_DisplayHandle_OpenTK_Mathematics_Box2i__ +- uid: OpenTK.Platform.IDisplayComponent.GetWorkArea(OpenTK.Platform.DisplayHandle,OpenTK.Mathematics.Box2i@) + commentId: M:OpenTK.Platform.IDisplayComponent.GetWorkArea(OpenTK.Platform.DisplayHandle,OpenTK.Mathematics.Box2i@) + parent: OpenTK.Platform.IDisplayComponent + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_GetWorkArea_OpenTK_Platform_DisplayHandle_OpenTK_Mathematics_Box2i__ name: GetWorkArea(DisplayHandle, out Box2i) nameWithType: IDisplayComponent.GetWorkArea(DisplayHandle, out Box2i) - fullName: OpenTK.Core.Platform.IDisplayComponent.GetWorkArea(OpenTK.Core.Platform.DisplayHandle, out OpenTK.Mathematics.Box2i) + fullName: OpenTK.Platform.IDisplayComponent.GetWorkArea(OpenTK.Platform.DisplayHandle, out OpenTK.Mathematics.Box2i) nameWithType.vb: IDisplayComponent.GetWorkArea(DisplayHandle, Box2i) - fullName.vb: OpenTK.Core.Platform.IDisplayComponent.GetWorkArea(OpenTK.Core.Platform.DisplayHandle, OpenTK.Mathematics.Box2i) + fullName.vb: OpenTK.Platform.IDisplayComponent.GetWorkArea(OpenTK.Platform.DisplayHandle, OpenTK.Mathematics.Box2i) name.vb: GetWorkArea(DisplayHandle, Box2i) spec.csharp: - - uid: OpenTK.Core.Platform.IDisplayComponent.GetWorkArea(OpenTK.Core.Platform.DisplayHandle,OpenTK.Mathematics.Box2i@) + - uid: OpenTK.Platform.IDisplayComponent.GetWorkArea(OpenTK.Platform.DisplayHandle,OpenTK.Mathematics.Box2i@) name: GetWorkArea - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_GetWorkArea_OpenTK_Core_Platform_DisplayHandle_OpenTK_Mathematics_Box2i__ + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_GetWorkArea_OpenTK_Platform_DisplayHandle_OpenTK_Mathematics_Box2i__ - name: ( - - uid: OpenTK.Core.Platform.DisplayHandle + - uid: OpenTK.Platform.DisplayHandle name: DisplayHandle - href: OpenTK.Core.Platform.DisplayHandle.html + href: OpenTK.Platform.DisplayHandle.html - name: ',' - name: " " - name: out @@ -1787,13 +1695,13 @@ references: href: OpenTK.Mathematics.Box2i.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IDisplayComponent.GetWorkArea(OpenTK.Core.Platform.DisplayHandle,OpenTK.Mathematics.Box2i@) + - uid: OpenTK.Platform.IDisplayComponent.GetWorkArea(OpenTK.Platform.DisplayHandle,OpenTK.Mathematics.Box2i@) name: GetWorkArea - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_GetWorkArea_OpenTK_Core_Platform_DisplayHandle_OpenTK_Mathematics_Box2i__ + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_GetWorkArea_OpenTK_Platform_DisplayHandle_OpenTK_Mathematics_Box2i__ - name: ( - - uid: OpenTK.Core.Platform.DisplayHandle + - uid: OpenTK.Platform.DisplayHandle name: DisplayHandle - href: OpenTK.Core.Platform.DisplayHandle.html + href: OpenTK.Platform.DisplayHandle.html - name: ',' - name: " " - uid: OpenTK.Mathematics.Box2i @@ -1831,29 +1739,29 @@ references: href: OpenTK.Mathematics.html - uid: OpenTK.Platform.Native.Windows.DisplayComponent.GetRefreshRate* commentId: Overload:OpenTK.Platform.Native.Windows.DisplayComponent.GetRefreshRate - href: OpenTK.Platform.Native.Windows.DisplayComponent.html#OpenTK_Platform_Native_Windows_DisplayComponent_GetRefreshRate_OpenTK_Core_Platform_DisplayHandle_System_Single__ + href: OpenTK.Platform.Native.Windows.DisplayComponent.html#OpenTK_Platform_Native_Windows_DisplayComponent_GetRefreshRate_OpenTK_Platform_DisplayHandle_System_Single__ name: GetRefreshRate nameWithType: DisplayComponent.GetRefreshRate fullName: OpenTK.Platform.Native.Windows.DisplayComponent.GetRefreshRate -- uid: OpenTK.Core.Platform.IDisplayComponent.GetRefreshRate(OpenTK.Core.Platform.DisplayHandle,System.Single@) - commentId: M:OpenTK.Core.Platform.IDisplayComponent.GetRefreshRate(OpenTK.Core.Platform.DisplayHandle,System.Single@) - parent: OpenTK.Core.Platform.IDisplayComponent +- uid: OpenTK.Platform.IDisplayComponent.GetRefreshRate(OpenTK.Platform.DisplayHandle,System.Single@) + commentId: M:OpenTK.Platform.IDisplayComponent.GetRefreshRate(OpenTK.Platform.DisplayHandle,System.Single@) + parent: OpenTK.Platform.IDisplayComponent isExternal: true - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_GetRefreshRate_OpenTK_Core_Platform_DisplayHandle_System_Single__ + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_GetRefreshRate_OpenTK_Platform_DisplayHandle_System_Single__ name: GetRefreshRate(DisplayHandle, out float) nameWithType: IDisplayComponent.GetRefreshRate(DisplayHandle, out float) - fullName: OpenTK.Core.Platform.IDisplayComponent.GetRefreshRate(OpenTK.Core.Platform.DisplayHandle, out float) + fullName: OpenTK.Platform.IDisplayComponent.GetRefreshRate(OpenTK.Platform.DisplayHandle, out float) nameWithType.vb: IDisplayComponent.GetRefreshRate(DisplayHandle, Single) - fullName.vb: OpenTK.Core.Platform.IDisplayComponent.GetRefreshRate(OpenTK.Core.Platform.DisplayHandle, Single) + fullName.vb: OpenTK.Platform.IDisplayComponent.GetRefreshRate(OpenTK.Platform.DisplayHandle, Single) name.vb: GetRefreshRate(DisplayHandle, Single) spec.csharp: - - uid: OpenTK.Core.Platform.IDisplayComponent.GetRefreshRate(OpenTK.Core.Platform.DisplayHandle,System.Single@) + - uid: OpenTK.Platform.IDisplayComponent.GetRefreshRate(OpenTK.Platform.DisplayHandle,System.Single@) name: GetRefreshRate - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_GetRefreshRate_OpenTK_Core_Platform_DisplayHandle_System_Single__ + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_GetRefreshRate_OpenTK_Platform_DisplayHandle_System_Single__ - name: ( - - uid: OpenTK.Core.Platform.DisplayHandle + - uid: OpenTK.Platform.DisplayHandle name: DisplayHandle - href: OpenTK.Core.Platform.DisplayHandle.html + href: OpenTK.Platform.DisplayHandle.html - name: ',' - name: " " - name: out @@ -1864,13 +1772,13 @@ references: href: https://learn.microsoft.com/dotnet/api/system.single - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IDisplayComponent.GetRefreshRate(OpenTK.Core.Platform.DisplayHandle,System.Single@) + - uid: OpenTK.Platform.IDisplayComponent.GetRefreshRate(OpenTK.Platform.DisplayHandle,System.Single@) name: GetRefreshRate - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_GetRefreshRate_OpenTK_Core_Platform_DisplayHandle_System_Single__ + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_GetRefreshRate_OpenTK_Platform_DisplayHandle_System_Single__ - name: ( - - uid: OpenTK.Core.Platform.DisplayHandle + - uid: OpenTK.Platform.DisplayHandle name: DisplayHandle - href: OpenTK.Core.Platform.DisplayHandle.html + href: OpenTK.Platform.DisplayHandle.html - name: ',' - name: " " - uid: System.Single @@ -1891,29 +1799,29 @@ references: name.vb: Single - uid: OpenTK.Platform.Native.Windows.DisplayComponent.GetDisplayScale* commentId: Overload:OpenTK.Platform.Native.Windows.DisplayComponent.GetDisplayScale - href: OpenTK.Platform.Native.Windows.DisplayComponent.html#OpenTK_Platform_Native_Windows_DisplayComponent_GetDisplayScale_OpenTK_Core_Platform_DisplayHandle_System_Single__System_Single__ + href: OpenTK.Platform.Native.Windows.DisplayComponent.html#OpenTK_Platform_Native_Windows_DisplayComponent_GetDisplayScale_OpenTK_Platform_DisplayHandle_System_Single__System_Single__ name: GetDisplayScale nameWithType: DisplayComponent.GetDisplayScale fullName: OpenTK.Platform.Native.Windows.DisplayComponent.GetDisplayScale -- uid: OpenTK.Core.Platform.IDisplayComponent.GetDisplayScale(OpenTK.Core.Platform.DisplayHandle,System.Single@,System.Single@) - commentId: M:OpenTK.Core.Platform.IDisplayComponent.GetDisplayScale(OpenTK.Core.Platform.DisplayHandle,System.Single@,System.Single@) - parent: OpenTK.Core.Platform.IDisplayComponent +- uid: OpenTK.Platform.IDisplayComponent.GetDisplayScale(OpenTK.Platform.DisplayHandle,System.Single@,System.Single@) + commentId: M:OpenTK.Platform.IDisplayComponent.GetDisplayScale(OpenTK.Platform.DisplayHandle,System.Single@,System.Single@) + parent: OpenTK.Platform.IDisplayComponent isExternal: true - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_GetDisplayScale_OpenTK_Core_Platform_DisplayHandle_System_Single__System_Single__ + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_GetDisplayScale_OpenTK_Platform_DisplayHandle_System_Single__System_Single__ name: GetDisplayScale(DisplayHandle, out float, out float) nameWithType: IDisplayComponent.GetDisplayScale(DisplayHandle, out float, out float) - fullName: OpenTK.Core.Platform.IDisplayComponent.GetDisplayScale(OpenTK.Core.Platform.DisplayHandle, out float, out float) + fullName: OpenTK.Platform.IDisplayComponent.GetDisplayScale(OpenTK.Platform.DisplayHandle, out float, out float) nameWithType.vb: IDisplayComponent.GetDisplayScale(DisplayHandle, Single, Single) - fullName.vb: OpenTK.Core.Platform.IDisplayComponent.GetDisplayScale(OpenTK.Core.Platform.DisplayHandle, Single, Single) + fullName.vb: OpenTK.Platform.IDisplayComponent.GetDisplayScale(OpenTK.Platform.DisplayHandle, Single, Single) name.vb: GetDisplayScale(DisplayHandle, Single, Single) spec.csharp: - - uid: OpenTK.Core.Platform.IDisplayComponent.GetDisplayScale(OpenTK.Core.Platform.DisplayHandle,System.Single@,System.Single@) + - uid: OpenTK.Platform.IDisplayComponent.GetDisplayScale(OpenTK.Platform.DisplayHandle,System.Single@,System.Single@) name: GetDisplayScale - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_GetDisplayScale_OpenTK_Core_Platform_DisplayHandle_System_Single__System_Single__ + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_GetDisplayScale_OpenTK_Platform_DisplayHandle_System_Single__System_Single__ - name: ( - - uid: OpenTK.Core.Platform.DisplayHandle + - uid: OpenTK.Platform.DisplayHandle name: DisplayHandle - href: OpenTK.Core.Platform.DisplayHandle.html + href: OpenTK.Platform.DisplayHandle.html - name: ',' - name: " " - name: out @@ -1932,13 +1840,13 @@ references: href: https://learn.microsoft.com/dotnet/api/system.single - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IDisplayComponent.GetDisplayScale(OpenTK.Core.Platform.DisplayHandle,System.Single@,System.Single@) + - uid: OpenTK.Platform.IDisplayComponent.GetDisplayScale(OpenTK.Platform.DisplayHandle,System.Single@,System.Single@) name: GetDisplayScale - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_GetDisplayScale_OpenTK_Core_Platform_DisplayHandle_System_Single__System_Single__ + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_GetDisplayScale_OpenTK_Platform_DisplayHandle_System_Single__System_Single__ - name: ( - - uid: OpenTK.Core.Platform.DisplayHandle + - uid: OpenTK.Platform.DisplayHandle name: DisplayHandle - href: OpenTK.Core.Platform.DisplayHandle.html + href: OpenTK.Platform.DisplayHandle.html - name: ',' - name: " " - uid: System.Single @@ -1954,13 +1862,13 @@ references: - name: ) - uid: OpenTK.Platform.Native.Windows.DisplayComponent.GetAdapter* commentId: Overload:OpenTK.Platform.Native.Windows.DisplayComponent.GetAdapter - href: OpenTK.Platform.Native.Windows.DisplayComponent.html#OpenTK_Platform_Native_Windows_DisplayComponent_GetAdapter_OpenTK_Core_Platform_DisplayHandle_ + href: OpenTK.Platform.Native.Windows.DisplayComponent.html#OpenTK_Platform_Native_Windows_DisplayComponent_GetAdapter_OpenTK_Platform_DisplayHandle_ name: GetAdapter nameWithType: DisplayComponent.GetAdapter fullName: OpenTK.Platform.Native.Windows.DisplayComponent.GetAdapter - uid: OpenTK.Platform.Native.Windows.DisplayComponent.GetMonitor* commentId: Overload:OpenTK.Platform.Native.Windows.DisplayComponent.GetMonitor - href: OpenTK.Platform.Native.Windows.DisplayComponent.html#OpenTK_Platform_Native_Windows_DisplayComponent_GetMonitor_OpenTK_Core_Platform_DisplayHandle_ + href: OpenTK.Platform.Native.Windows.DisplayComponent.html#OpenTK_Platform_Native_Windows_DisplayComponent_GetMonitor_OpenTK_Platform_DisplayHandle_ name: GetMonitor nameWithType: DisplayComponent.GetMonitor fullName: OpenTK.Platform.Native.Windows.DisplayComponent.GetMonitor diff --git a/api/OpenTK.Platform.Native.Windows.IconComponent.yml b/api/OpenTK.Platform.Native.Windows.IconComponent.yml index 5d679f9c..ca45e931 100644 --- a/api/OpenTK.Platform.Native.Windows.IconComponent.yml +++ b/api/OpenTK.Platform.Native.Windows.IconComponent.yml @@ -6,16 +6,16 @@ items: parent: OpenTK.Platform.Native.Windows children: - OpenTK.Platform.Native.Windows.IconComponent.CanLoadSystemIcons - - OpenTK.Platform.Native.Windows.IconComponent.Create(OpenTK.Core.Platform.SystemIconType) + - OpenTK.Platform.Native.Windows.IconComponent.Create(OpenTK.Platform.SystemIconType) - OpenTK.Platform.Native.Windows.IconComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte}) - OpenTK.Platform.Native.Windows.IconComponent.CreateFromIcoFile(System.String) - OpenTK.Platform.Native.Windows.IconComponent.CreateFromIcoResource(System.Byte[]) - OpenTK.Platform.Native.Windows.IconComponent.CreateFromIcoResource(System.String) - - OpenTK.Platform.Native.Windows.IconComponent.Destroy(OpenTK.Core.Platform.IconHandle) - - OpenTK.Platform.Native.Windows.IconComponent.GetBitmapByteSize(OpenTK.Core.Platform.IconHandle) - - OpenTK.Platform.Native.Windows.IconComponent.GetBitmapData(OpenTK.Core.Platform.IconHandle,System.Span{System.Byte}) - - OpenTK.Platform.Native.Windows.IconComponent.GetSize(OpenTK.Core.Platform.IconHandle,System.Int32@,System.Int32@) - - OpenTK.Platform.Native.Windows.IconComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + - OpenTK.Platform.Native.Windows.IconComponent.Destroy(OpenTK.Platform.IconHandle) + - OpenTK.Platform.Native.Windows.IconComponent.GetBitmapByteSize(OpenTK.Platform.IconHandle) + - OpenTK.Platform.Native.Windows.IconComponent.GetBitmapData(OpenTK.Platform.IconHandle,System.Span{System.Byte}) + - OpenTK.Platform.Native.Windows.IconComponent.GetSize(OpenTK.Platform.IconHandle,System.Int32@,System.Int32@) + - OpenTK.Platform.Native.Windows.IconComponent.Initialize(OpenTK.Platform.ToolkitOptions) - OpenTK.Platform.Native.Windows.IconComponent.Logger - OpenTK.Platform.Native.Windows.IconComponent.Name - OpenTK.Platform.Native.Windows.IconComponent.Provides @@ -27,15 +27,11 @@ items: fullName: OpenTK.Platform.Native.Windows.IconComponent type: Class source: - remote: - path: src/OpenTK.Platform.Native/Windows/IconComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: IconComponent - path: opentk/src/OpenTK.Platform.Native/Windows/IconComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\IconComponent.cs startLine: 13 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows syntax: content: 'public class IconComponent : IIconComponent, IPalComponent' @@ -43,8 +39,8 @@ items: inheritance: - System.Object implements: - - OpenTK.Core.Platform.IIconComponent - - OpenTK.Core.Platform.IPalComponent + - OpenTK.Platform.IIconComponent + - OpenTK.Platform.IPalComponent inheritedMembers: - System.Object.Equals(System.Object) - System.Object.Equals(System.Object,System.Object) @@ -65,15 +61,11 @@ items: fullName: OpenTK.Platform.Native.Windows.IconComponent.Name type: Property source: - remote: - path: src/OpenTK.Platform.Native/Windows/IconComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Name - path: opentk/src/OpenTK.Platform.Native/Windows/IconComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\IconComponent.cs startLine: 16 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: Name of the abstraction layer component. example: [] @@ -85,7 +77,7 @@ items: content.vb: Public ReadOnly Property Name As String overload: OpenTK.Platform.Native.Windows.IconComponent.Name* implements: - - OpenTK.Core.Platform.IPalComponent.Name + - OpenTK.Platform.IPalComponent.Name - uid: OpenTK.Platform.Native.Windows.IconComponent.Provides commentId: P:OpenTK.Platform.Native.Windows.IconComponent.Provides id: Provides @@ -98,15 +90,11 @@ items: fullName: OpenTK.Platform.Native.Windows.IconComponent.Provides type: Property source: - remote: - path: src/OpenTK.Platform.Native/Windows/IconComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Provides - path: opentk/src/OpenTK.Platform.Native/Windows/IconComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\IconComponent.cs startLine: 19 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: Specifies which PAL components this object provides. example: [] @@ -114,11 +102,11 @@ items: content: public PalComponents Provides { get; } parameters: [] return: - type: OpenTK.Core.Platform.PalComponents + type: OpenTK.Platform.PalComponents content.vb: Public ReadOnly Property Provides As PalComponents overload: OpenTK.Platform.Native.Windows.IconComponent.Provides* implements: - - OpenTK.Core.Platform.IPalComponent.Provides + - OpenTK.Platform.IPalComponent.Provides - uid: OpenTK.Platform.Native.Windows.IconComponent.Logger commentId: P:OpenTK.Platform.Native.Windows.IconComponent.Logger id: Logger @@ -131,15 +119,11 @@ items: fullName: OpenTK.Platform.Native.Windows.IconComponent.Logger type: Property source: - remote: - path: src/OpenTK.Platform.Native/Windows/IconComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Logger - path: opentk/src/OpenTK.Platform.Native/Windows/IconComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\IconComponent.cs startLine: 22 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: Provides a logger for this component. example: [] @@ -151,28 +135,24 @@ items: content.vb: Public Property Logger As ILogger overload: OpenTK.Platform.Native.Windows.IconComponent.Logger* implements: - - OpenTK.Core.Platform.IPalComponent.Logger -- uid: OpenTK.Platform.Native.Windows.IconComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - commentId: M:OpenTK.Platform.Native.Windows.IconComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - id: Initialize(OpenTK.Core.Platform.ToolkitOptions) + - OpenTK.Platform.IPalComponent.Logger +- uid: OpenTK.Platform.Native.Windows.IconComponent.Initialize(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Native.Windows.IconComponent.Initialize(OpenTK.Platform.ToolkitOptions) + id: Initialize(OpenTK.Platform.ToolkitOptions) parent: OpenTK.Platform.Native.Windows.IconComponent langs: - csharp - vb name: Initialize(ToolkitOptions) nameWithType: IconComponent.Initialize(ToolkitOptions) - fullName: OpenTK.Platform.Native.Windows.IconComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + fullName: OpenTK.Platform.Native.Windows.IconComponent.Initialize(OpenTK.Platform.ToolkitOptions) type: Method source: - remote: - path: src/OpenTK.Platform.Native/Windows/IconComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Initialize - path: opentk/src/OpenTK.Platform.Native/Windows/IconComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\IconComponent.cs startLine: 25 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: Initialize the component. example: [] @@ -180,12 +160,12 @@ items: content: public void Initialize(ToolkitOptions options) parameters: - id: options - type: OpenTK.Core.Platform.ToolkitOptions + type: OpenTK.Platform.ToolkitOptions description: The options to initialize the component with. content.vb: Public Sub Initialize(options As ToolkitOptions) overload: OpenTK.Platform.Native.Windows.IconComponent.Initialize* implements: - - OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + - OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) - uid: OpenTK.Platform.Native.Windows.IconComponent.CanLoadSystemIcons commentId: P:OpenTK.Platform.Native.Windows.IconComponent.CanLoadSystemIcons id: CanLoadSystemIcons @@ -198,20 +178,16 @@ items: fullName: OpenTK.Platform.Native.Windows.IconComponent.CanLoadSystemIcons type: Property source: - remote: - path: src/OpenTK.Platform.Native/Windows/IconComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CanLoadSystemIcons - path: opentk/src/OpenTK.Platform.Native/Windows/IconComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\IconComponent.cs startLine: 30 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: >- True if icon objects can be populated from common system icons. - If this is true, then will work, otherwise an exception will be thrown. + If this is true, then will work, otherwise an exception will be thrown. example: [] syntax: content: public bool CanLoadSystemIcons { get; } @@ -220,51 +196,50 @@ items: type: System.Boolean content.vb: Public ReadOnly Property CanLoadSystemIcons As Boolean overload: OpenTK.Platform.Native.Windows.IconComponent.CanLoadSystemIcons* + seealso: + - linkId: OpenTK.Platform.IIconComponent.Create(OpenTK.Platform.SystemIconType) + commentId: M:OpenTK.Platform.IIconComponent.Create(OpenTK.Platform.SystemIconType) implements: - - OpenTK.Core.Platform.IIconComponent.CanLoadSystemIcons -- uid: OpenTK.Platform.Native.Windows.IconComponent.Create(OpenTK.Core.Platform.SystemIconType) - commentId: M:OpenTK.Platform.Native.Windows.IconComponent.Create(OpenTK.Core.Platform.SystemIconType) - id: Create(OpenTK.Core.Platform.SystemIconType) + - OpenTK.Platform.IIconComponent.CanLoadSystemIcons +- uid: OpenTK.Platform.Native.Windows.IconComponent.Create(OpenTK.Platform.SystemIconType) + commentId: M:OpenTK.Platform.Native.Windows.IconComponent.Create(OpenTK.Platform.SystemIconType) + id: Create(OpenTK.Platform.SystemIconType) parent: OpenTK.Platform.Native.Windows.IconComponent langs: - csharp - vb name: Create(SystemIconType) nameWithType: IconComponent.Create(SystemIconType) - fullName: OpenTK.Platform.Native.Windows.IconComponent.Create(OpenTK.Core.Platform.SystemIconType) + fullName: OpenTK.Platform.Native.Windows.IconComponent.Create(OpenTK.Platform.SystemIconType) type: Method source: - remote: - path: src/OpenTK.Platform.Native/Windows/IconComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Create - path: opentk/src/OpenTK.Platform.Native/Windows/IconComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\IconComponent.cs startLine: 33 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: >- Load a system icon. - Only works if is true. + Only works if is true. example: [] syntax: content: public IconHandle Create(SystemIconType systemIcon) parameters: - id: systemIcon - type: OpenTK.Core.Platform.SystemIconType + type: OpenTK.Platform.SystemIconType description: The system icon to create. return: - type: OpenTK.Core.Platform.IconHandle + type: OpenTK.Platform.IconHandle description: A handle to the created system icon. content.vb: Public Function Create(systemIcon As SystemIconType) As IconHandle overload: OpenTK.Platform.Native.Windows.IconComponent.Create* seealso: - - linkId: OpenTK.Core.Platform.IIconComponent.CanLoadSystemIcons - commentId: P:OpenTK.Core.Platform.IIconComponent.CanLoadSystemIcons + - linkId: OpenTK.Platform.IIconComponent.CanLoadSystemIcons + commentId: P:OpenTK.Platform.IIconComponent.CanLoadSystemIcons implements: - - OpenTK.Core.Platform.IIconComponent.Create(OpenTK.Core.Platform.SystemIconType) + - OpenTK.Platform.IIconComponent.Create(OpenTK.Platform.SystemIconType) - uid: OpenTK.Platform.Native.Windows.IconComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte}) commentId: M:OpenTK.Platform.Native.Windows.IconComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte}) id: Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte}) @@ -277,15 +252,11 @@ items: fullName: OpenTK.Platform.Native.Windows.IconComponent.Create(int, int, System.ReadOnlySpan) type: Method source: - remote: - path: src/OpenTK.Platform.Native/Windows/IconComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Create - path: opentk/src/OpenTK.Platform.Native/Windows/IconComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\IconComponent.cs startLine: 73 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: Load an icon object with image data. example: [] @@ -302,12 +273,12 @@ items: type: System.ReadOnlySpan{System.Byte} description: Image data to load into icon. return: - type: OpenTK.Core.Platform.IconHandle + type: OpenTK.Platform.IconHandle description: A handle to the created icon. content.vb: Public Function Create(width As Integer, height As Integer, data As ReadOnlySpan(Of Byte)) As IconHandle overload: OpenTK.Platform.Native.Windows.IconComponent.Create* implements: - - OpenTK.Core.Platform.IIconComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte}) + - OpenTK.Platform.IIconComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte}) nameWithType.vb: IconComponent.Create(Integer, Integer, ReadOnlySpan(Of Byte)) fullName.vb: OpenTK.Platform.Native.Windows.IconComponent.Create(Integer, Integer, System.ReadOnlySpan(Of Byte)) name.vb: Create(Integer, Integer, ReadOnlySpan(Of Byte)) @@ -323,15 +294,11 @@ items: fullName: OpenTK.Platform.Native.Windows.IconComponent.CreateFromIcoFile(string) type: Method source: - remote: - path: src/OpenTK.Platform.Native/Windows/IconComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateFromIcoFile - path: opentk/src/OpenTK.Platform.Native/Windows/IconComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\IconComponent.cs startLine: 161 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: Creates an icon from a windows .ico file. remarks: This icon will have a dynamic resolution. @@ -343,7 +310,7 @@ items: type: System.String description: The icon file to load. return: - type: OpenTK.Core.Platform.IconHandle + type: OpenTK.Platform.IconHandle content.vb: Public Function CreateFromIcoFile(file As String) As IconHandle overload: OpenTK.Platform.Native.Windows.IconComponent.CreateFromIcoFile* nameWithType.vb: IconComponent.CreateFromIcoFile(String) @@ -361,15 +328,11 @@ items: fullName: OpenTK.Platform.Native.Windows.IconComponent.CreateFromIcoResource(byte[]) type: Method source: - remote: - path: src/OpenTK.Platform.Native/Windows/IconComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateFromIcoResource - path: opentk/src/OpenTK.Platform.Native/Windows/IconComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\IconComponent.cs startLine: 188 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: Creates an icon from resx ico resource data. remarks: >- @@ -384,7 +347,7 @@ items: type: System.Byte[] description: The ico resource data to load. return: - type: OpenTK.Core.Platform.IconHandle + type: OpenTK.Platform.IconHandle content.vb: Public Function CreateFromIcoResource(resource As Byte()) As IconHandle overload: OpenTK.Platform.Native.Windows.IconComponent.CreateFromIcoResource* nameWithType.vb: IconComponent.CreateFromIcoResource(Byte()) @@ -402,15 +365,11 @@ items: fullName: OpenTK.Platform.Native.Windows.IconComponent.CreateFromIcoResource(string) type: Method source: - remote: - path: src/OpenTK.Platform.Native/Windows/IconComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateFromIcoResource - path: opentk/src/OpenTK.Platform.Native/Windows/IconComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\IconComponent.cs startLine: 231 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: Creates an icon from a resource name. remarks: >- @@ -434,33 +393,29 @@ items: type: System.String description: The name of the icon resource to load. return: - type: OpenTK.Core.Platform.IconHandle + type: OpenTK.Platform.IconHandle content.vb: Public Function CreateFromIcoResource(resourceName As String) As IconHandle overload: OpenTK.Platform.Native.Windows.IconComponent.CreateFromIcoResource* nameWithType.vb: IconComponent.CreateFromIcoResource(String) fullName.vb: OpenTK.Platform.Native.Windows.IconComponent.CreateFromIcoResource(String) name.vb: CreateFromIcoResource(String) -- uid: OpenTK.Platform.Native.Windows.IconComponent.Destroy(OpenTK.Core.Platform.IconHandle) - commentId: M:OpenTK.Platform.Native.Windows.IconComponent.Destroy(OpenTK.Core.Platform.IconHandle) - id: Destroy(OpenTK.Core.Platform.IconHandle) +- uid: OpenTK.Platform.Native.Windows.IconComponent.Destroy(OpenTK.Platform.IconHandle) + commentId: M:OpenTK.Platform.Native.Windows.IconComponent.Destroy(OpenTK.Platform.IconHandle) + id: Destroy(OpenTK.Platform.IconHandle) parent: OpenTK.Platform.Native.Windows.IconComponent langs: - csharp - vb name: Destroy(IconHandle) nameWithType: IconComponent.Destroy(IconHandle) - fullName: OpenTK.Platform.Native.Windows.IconComponent.Destroy(OpenTK.Core.Platform.IconHandle) + fullName: OpenTK.Platform.Native.Windows.IconComponent.Destroy(OpenTK.Platform.IconHandle) type: Method source: - remote: - path: src/OpenTK.Platform.Native/Windows/IconComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Destroy - path: opentk/src/OpenTK.Platform.Native/Windows/IconComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\IconComponent.cs startLine: 248 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: Destroy an icon object. example: [] @@ -468,7 +423,7 @@ items: content: public void Destroy(IconHandle handle) parameters: - id: handle - type: OpenTK.Core.Platform.IconHandle + type: OpenTK.Platform.IconHandle description: Handle to the icon object to destroy. content.vb: Public Sub Destroy(handle As IconHandle) overload: OpenTK.Platform.Native.Windows.IconComponent.Destroy* @@ -477,28 +432,24 @@ items: commentId: T:System.ArgumentNullException description: handle is null. implements: - - OpenTK.Core.Platform.IIconComponent.Destroy(OpenTK.Core.Platform.IconHandle) -- uid: OpenTK.Platform.Native.Windows.IconComponent.GetSize(OpenTK.Core.Platform.IconHandle,System.Int32@,System.Int32@) - commentId: M:OpenTK.Platform.Native.Windows.IconComponent.GetSize(OpenTK.Core.Platform.IconHandle,System.Int32@,System.Int32@) - id: GetSize(OpenTK.Core.Platform.IconHandle,System.Int32@,System.Int32@) + - OpenTK.Platform.IIconComponent.Destroy(OpenTK.Platform.IconHandle) +- uid: OpenTK.Platform.Native.Windows.IconComponent.GetSize(OpenTK.Platform.IconHandle,System.Int32@,System.Int32@) + commentId: M:OpenTK.Platform.Native.Windows.IconComponent.GetSize(OpenTK.Platform.IconHandle,System.Int32@,System.Int32@) + id: GetSize(OpenTK.Platform.IconHandle,System.Int32@,System.Int32@) parent: OpenTK.Platform.Native.Windows.IconComponent langs: - csharp - vb name: GetSize(IconHandle, out int, out int) nameWithType: IconComponent.GetSize(IconHandle, out int, out int) - fullName: OpenTK.Platform.Native.Windows.IconComponent.GetSize(OpenTK.Core.Platform.IconHandle, out int, out int) + fullName: OpenTK.Platform.Native.Windows.IconComponent.GetSize(OpenTK.Platform.IconHandle, out int, out int) type: Method source: - remote: - path: src/OpenTK.Platform.Native/Windows/IconComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetSize - path: opentk/src/OpenTK.Platform.Native/Windows/IconComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\IconComponent.cs startLine: 290 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: Get the dimensions of a icon object. example: [] @@ -506,7 +457,7 @@ items: content: public void GetSize(IconHandle handle, out int width, out int height) parameters: - id: handle - type: OpenTK.Core.Platform.IconHandle + type: OpenTK.Platform.IconHandle description: Handle to icon object. - id: width type: System.Int32 @@ -521,71 +472,63 @@ items: commentId: T:System.ArgumentNullException description: handle is null. implements: - - OpenTK.Core.Platform.IIconComponent.GetSize(OpenTK.Core.Platform.IconHandle,System.Int32@,System.Int32@) + - OpenTK.Platform.IIconComponent.GetSize(OpenTK.Platform.IconHandle,System.Int32@,System.Int32@) nameWithType.vb: IconComponent.GetSize(IconHandle, Integer, Integer) - fullName.vb: OpenTK.Platform.Native.Windows.IconComponent.GetSize(OpenTK.Core.Platform.IconHandle, Integer, Integer) + fullName.vb: OpenTK.Platform.Native.Windows.IconComponent.GetSize(OpenTK.Platform.IconHandle, Integer, Integer) name.vb: GetSize(IconHandle, Integer, Integer) -- uid: OpenTK.Platform.Native.Windows.IconComponent.GetBitmapData(OpenTK.Core.Platform.IconHandle,System.Span{System.Byte}) - commentId: M:OpenTK.Platform.Native.Windows.IconComponent.GetBitmapData(OpenTK.Core.Platform.IconHandle,System.Span{System.Byte}) - id: GetBitmapData(OpenTK.Core.Platform.IconHandle,System.Span{System.Byte}) +- uid: OpenTK.Platform.Native.Windows.IconComponent.GetBitmapData(OpenTK.Platform.IconHandle,System.Span{System.Byte}) + commentId: M:OpenTK.Platform.Native.Windows.IconComponent.GetBitmapData(OpenTK.Platform.IconHandle,System.Span{System.Byte}) + id: GetBitmapData(OpenTK.Platform.IconHandle,System.Span{System.Byte}) parent: OpenTK.Platform.Native.Windows.IconComponent langs: - csharp - vb name: GetBitmapData(IconHandle, Span) nameWithType: IconComponent.GetBitmapData(IconHandle, Span) - fullName: OpenTK.Platform.Native.Windows.IconComponent.GetBitmapData(OpenTK.Core.Platform.IconHandle, System.Span) + fullName: OpenTK.Platform.Native.Windows.IconComponent.GetBitmapData(OpenTK.Platform.IconHandle, System.Span) type: Method source: - remote: - path: src/OpenTK.Platform.Native/Windows/IconComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetBitmapData - path: opentk/src/OpenTK.Platform.Native/Windows/IconComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\IconComponent.cs startLine: 316 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows syntax: content: public void GetBitmapData(IconHandle handle, Span data) parameters: - id: handle - type: OpenTK.Core.Platform.IconHandle + type: OpenTK.Platform.IconHandle - id: data type: System.Span{System.Byte} content.vb: Public Sub GetBitmapData(handle As IconHandle, data As Span(Of Byte)) overload: OpenTK.Platform.Native.Windows.IconComponent.GetBitmapData* nameWithType.vb: IconComponent.GetBitmapData(IconHandle, Span(Of Byte)) - fullName.vb: OpenTK.Platform.Native.Windows.IconComponent.GetBitmapData(OpenTK.Core.Platform.IconHandle, System.Span(Of Byte)) + fullName.vb: OpenTK.Platform.Native.Windows.IconComponent.GetBitmapData(OpenTK.Platform.IconHandle, System.Span(Of Byte)) name.vb: GetBitmapData(IconHandle, Span(Of Byte)) -- uid: OpenTK.Platform.Native.Windows.IconComponent.GetBitmapByteSize(OpenTK.Core.Platform.IconHandle) - commentId: M:OpenTK.Platform.Native.Windows.IconComponent.GetBitmapByteSize(OpenTK.Core.Platform.IconHandle) - id: GetBitmapByteSize(OpenTK.Core.Platform.IconHandle) +- uid: OpenTK.Platform.Native.Windows.IconComponent.GetBitmapByteSize(OpenTK.Platform.IconHandle) + commentId: M:OpenTK.Platform.Native.Windows.IconComponent.GetBitmapByteSize(OpenTK.Platform.IconHandle) + id: GetBitmapByteSize(OpenTK.Platform.IconHandle) parent: OpenTK.Platform.Native.Windows.IconComponent langs: - csharp - vb name: GetBitmapByteSize(IconHandle) nameWithType: IconComponent.GetBitmapByteSize(IconHandle) - fullName: OpenTK.Platform.Native.Windows.IconComponent.GetBitmapByteSize(OpenTK.Core.Platform.IconHandle) + fullName: OpenTK.Platform.Native.Windows.IconComponent.GetBitmapByteSize(OpenTK.Platform.IconHandle) type: Method source: - remote: - path: src/OpenTK.Platform.Native/Windows/IconComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetBitmapByteSize - path: opentk/src/OpenTK.Platform.Native/Windows/IconComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\IconComponent.cs startLine: 442 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows syntax: content: public int GetBitmapByteSize(IconHandle handle) parameters: - id: handle - type: OpenTK.Core.Platform.IconHandle + type: OpenTK.Platform.IconHandle return: type: System.Int32 content.vb: Public Function GetBitmapByteSize(handle As IconHandle) As Integer @@ -640,20 +583,20 @@ references: nameWithType.vb: Object fullName.vb: Object name.vb: Object -- uid: OpenTK.Core.Platform.IIconComponent - commentId: T:OpenTK.Core.Platform.IIconComponent - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.IIconComponent.html +- uid: OpenTK.Platform.IIconComponent + commentId: T:OpenTK.Platform.IIconComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IIconComponent.html name: IIconComponent nameWithType: IIconComponent - fullName: OpenTK.Core.Platform.IIconComponent -- uid: OpenTK.Core.Platform.IPalComponent - commentId: T:OpenTK.Core.Platform.IPalComponent - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.IPalComponent.html + fullName: OpenTK.Platform.IIconComponent +- uid: OpenTK.Platform.IPalComponent + commentId: T:OpenTK.Platform.IPalComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IPalComponent.html name: IPalComponent nameWithType: IPalComponent - fullName: OpenTK.Core.Platform.IPalComponent + fullName: OpenTK.Platform.IPalComponent - uid: System.Object.Equals(System.Object) commentId: M:System.Object.Equals(System.Object) parent: System.Object @@ -880,49 +823,41 @@ references: name: System nameWithType: System fullName: System -- uid: OpenTK.Core.Platform - commentId: N:OpenTK.Core.Platform +- uid: OpenTK.Platform + commentId: N:OpenTK.Platform href: OpenTK.html - name: OpenTK.Core.Platform - nameWithType: OpenTK.Core.Platform - fullName: OpenTK.Core.Platform + name: OpenTK.Platform + nameWithType: OpenTK.Platform + fullName: OpenTK.Platform spec.csharp: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html spec.vb: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html - uid: OpenTK.Platform.Native.Windows.IconComponent.Name* commentId: Overload:OpenTK.Platform.Native.Windows.IconComponent.Name href: OpenTK.Platform.Native.Windows.IconComponent.html#OpenTK_Platform_Native_Windows_IconComponent_Name name: Name nameWithType: IconComponent.Name fullName: OpenTK.Platform.Native.Windows.IconComponent.Name -- uid: OpenTK.Core.Platform.IPalComponent.Name - commentId: P:OpenTK.Core.Platform.IPalComponent.Name - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Name +- uid: OpenTK.Platform.IPalComponent.Name + commentId: P:OpenTK.Platform.IPalComponent.Name + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Name name: Name nameWithType: IPalComponent.Name - fullName: OpenTK.Core.Platform.IPalComponent.Name + fullName: OpenTK.Platform.IPalComponent.Name - uid: System.String commentId: T:System.String parent: System @@ -940,33 +875,33 @@ references: name: Provides nameWithType: IconComponent.Provides fullName: OpenTK.Platform.Native.Windows.IconComponent.Provides -- uid: OpenTK.Core.Platform.IPalComponent.Provides - commentId: P:OpenTK.Core.Platform.IPalComponent.Provides - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Provides +- uid: OpenTK.Platform.IPalComponent.Provides + commentId: P:OpenTK.Platform.IPalComponent.Provides + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Provides name: Provides nameWithType: IPalComponent.Provides - fullName: OpenTK.Core.Platform.IPalComponent.Provides -- uid: OpenTK.Core.Platform.PalComponents - commentId: T:OpenTK.Core.Platform.PalComponents - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.PalComponents.html + fullName: OpenTK.Platform.IPalComponent.Provides +- uid: OpenTK.Platform.PalComponents + commentId: T:OpenTK.Platform.PalComponents + parent: OpenTK.Platform + href: OpenTK.Platform.PalComponents.html name: PalComponents nameWithType: PalComponents - fullName: OpenTK.Core.Platform.PalComponents + fullName: OpenTK.Platform.PalComponents - uid: OpenTK.Platform.Native.Windows.IconComponent.Logger* commentId: Overload:OpenTK.Platform.Native.Windows.IconComponent.Logger href: OpenTK.Platform.Native.Windows.IconComponent.html#OpenTK_Platform_Native_Windows_IconComponent_Logger name: Logger nameWithType: IconComponent.Logger fullName: OpenTK.Platform.Native.Windows.IconComponent.Logger -- uid: OpenTK.Core.Platform.IPalComponent.Logger - commentId: P:OpenTK.Core.Platform.IPalComponent.Logger - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Logger +- uid: OpenTK.Platform.IPalComponent.Logger + commentId: P:OpenTK.Platform.IPalComponent.Logger + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Logger name: Logger nameWithType: IPalComponent.Logger - fullName: OpenTK.Core.Platform.IPalComponent.Logger + fullName: OpenTK.Platform.IPalComponent.Logger - uid: OpenTK.Core.Utility.ILogger commentId: T:OpenTK.Core.Utility.ILogger parent: OpenTK.Core.Utility @@ -1006,66 +941,66 @@ references: href: OpenTK.Core.Utility.html - uid: OpenTK.Platform.Native.Windows.IconComponent.Initialize* commentId: Overload:OpenTK.Platform.Native.Windows.IconComponent.Initialize - href: OpenTK.Platform.Native.Windows.IconComponent.html#OpenTK_Platform_Native_Windows_IconComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + href: OpenTK.Platform.Native.Windows.IconComponent.html#OpenTK_Platform_Native_Windows_IconComponent_Initialize_OpenTK_Platform_ToolkitOptions_ name: Initialize nameWithType: IconComponent.Initialize fullName: OpenTK.Platform.Native.Windows.IconComponent.Initialize -- uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - commentId: M:OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ +- uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ name: Initialize(ToolkitOptions) nameWithType: IPalComponent.Initialize(ToolkitOptions) - fullName: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + fullName: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) spec.csharp: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + - uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.ToolkitOptions + - uid: OpenTK.Platform.ToolkitOptions name: ToolkitOptions - href: OpenTK.Core.Platform.ToolkitOptions.html + href: OpenTK.Platform.ToolkitOptions.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + - uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.ToolkitOptions + - uid: OpenTK.Platform.ToolkitOptions name: ToolkitOptions - href: OpenTK.Core.Platform.ToolkitOptions.html + href: OpenTK.Platform.ToolkitOptions.html - name: ) -- uid: OpenTK.Core.Platform.ToolkitOptions - commentId: T:OpenTK.Core.Platform.ToolkitOptions - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.ToolkitOptions.html +- uid: OpenTK.Platform.ToolkitOptions + commentId: T:OpenTK.Platform.ToolkitOptions + parent: OpenTK.Platform + href: OpenTK.Platform.ToolkitOptions.html name: ToolkitOptions nameWithType: ToolkitOptions - fullName: OpenTK.Core.Platform.ToolkitOptions -- uid: OpenTK.Core.Platform.IIconComponent.Create(OpenTK.Core.Platform.SystemIconType) - commentId: M:OpenTK.Core.Platform.IIconComponent.Create(OpenTK.Core.Platform.SystemIconType) - parent: OpenTK.Core.Platform.IIconComponent - href: OpenTK.Core.Platform.IIconComponent.html#OpenTK_Core_Platform_IIconComponent_Create_OpenTK_Core_Platform_SystemIconType_ + fullName: OpenTK.Platform.ToolkitOptions +- uid: OpenTK.Platform.IIconComponent.Create(OpenTK.Platform.SystemIconType) + commentId: M:OpenTK.Platform.IIconComponent.Create(OpenTK.Platform.SystemIconType) + parent: OpenTK.Platform.IIconComponent + href: OpenTK.Platform.IIconComponent.html#OpenTK_Platform_IIconComponent_Create_OpenTK_Platform_SystemIconType_ name: Create(SystemIconType) nameWithType: IIconComponent.Create(SystemIconType) - fullName: OpenTK.Core.Platform.IIconComponent.Create(OpenTK.Core.Platform.SystemIconType) + fullName: OpenTK.Platform.IIconComponent.Create(OpenTK.Platform.SystemIconType) spec.csharp: - - uid: OpenTK.Core.Platform.IIconComponent.Create(OpenTK.Core.Platform.SystemIconType) + - uid: OpenTK.Platform.IIconComponent.Create(OpenTK.Platform.SystemIconType) name: Create - href: OpenTK.Core.Platform.IIconComponent.html#OpenTK_Core_Platform_IIconComponent_Create_OpenTK_Core_Platform_SystemIconType_ + href: OpenTK.Platform.IIconComponent.html#OpenTK_Platform_IIconComponent_Create_OpenTK_Platform_SystemIconType_ - name: ( - - uid: OpenTK.Core.Platform.SystemIconType + - uid: OpenTK.Platform.SystemIconType name: SystemIconType - href: OpenTK.Core.Platform.SystemIconType.html + href: OpenTK.Platform.SystemIconType.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IIconComponent.Create(OpenTK.Core.Platform.SystemIconType) + - uid: OpenTK.Platform.IIconComponent.Create(OpenTK.Platform.SystemIconType) name: Create - href: OpenTK.Core.Platform.IIconComponent.html#OpenTK_Core_Platform_IIconComponent_Create_OpenTK_Core_Platform_SystemIconType_ + href: OpenTK.Platform.IIconComponent.html#OpenTK_Platform_IIconComponent_Create_OpenTK_Platform_SystemIconType_ - name: ( - - uid: OpenTK.Core.Platform.SystemIconType + - uid: OpenTK.Platform.SystemIconType name: SystemIconType - href: OpenTK.Core.Platform.SystemIconType.html + href: OpenTK.Platform.SystemIconType.html - name: ) - uid: OpenTK.Platform.Native.Windows.IconComponent.CanLoadSystemIcons* commentId: Overload:OpenTK.Platform.Native.Windows.IconComponent.CanLoadSystemIcons @@ -1073,13 +1008,13 @@ references: name: CanLoadSystemIcons nameWithType: IconComponent.CanLoadSystemIcons fullName: OpenTK.Platform.Native.Windows.IconComponent.CanLoadSystemIcons -- uid: OpenTK.Core.Platform.IIconComponent.CanLoadSystemIcons - commentId: P:OpenTK.Core.Platform.IIconComponent.CanLoadSystemIcons - parent: OpenTK.Core.Platform.IIconComponent - href: OpenTK.Core.Platform.IIconComponent.html#OpenTK_Core_Platform_IIconComponent_CanLoadSystemIcons +- uid: OpenTK.Platform.IIconComponent.CanLoadSystemIcons + commentId: P:OpenTK.Platform.IIconComponent.CanLoadSystemIcons + parent: OpenTK.Platform.IIconComponent + href: OpenTK.Platform.IIconComponent.html#OpenTK_Platform_IIconComponent_CanLoadSystemIcons name: CanLoadSystemIcons nameWithType: IIconComponent.CanLoadSystemIcons - fullName: OpenTK.Core.Platform.IIconComponent.CanLoadSystemIcons + fullName: OpenTK.Platform.IIconComponent.CanLoadSystemIcons - uid: System.Boolean commentId: T:System.Boolean parent: System @@ -1093,39 +1028,39 @@ references: name.vb: Boolean - uid: OpenTK.Platform.Native.Windows.IconComponent.Create* commentId: Overload:OpenTK.Platform.Native.Windows.IconComponent.Create - href: OpenTK.Platform.Native.Windows.IconComponent.html#OpenTK_Platform_Native_Windows_IconComponent_Create_OpenTK_Core_Platform_SystemIconType_ + href: OpenTK.Platform.Native.Windows.IconComponent.html#OpenTK_Platform_Native_Windows_IconComponent_Create_OpenTK_Platform_SystemIconType_ name: Create nameWithType: IconComponent.Create fullName: OpenTK.Platform.Native.Windows.IconComponent.Create -- uid: OpenTK.Core.Platform.SystemIconType - commentId: T:OpenTK.Core.Platform.SystemIconType - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.SystemIconType.html +- uid: OpenTK.Platform.SystemIconType + commentId: T:OpenTK.Platform.SystemIconType + parent: OpenTK.Platform + href: OpenTK.Platform.SystemIconType.html name: SystemIconType nameWithType: SystemIconType - fullName: OpenTK.Core.Platform.SystemIconType -- uid: OpenTK.Core.Platform.IconHandle - commentId: T:OpenTK.Core.Platform.IconHandle - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.IconHandle.html + fullName: OpenTK.Platform.SystemIconType +- uid: OpenTK.Platform.IconHandle + commentId: T:OpenTK.Platform.IconHandle + parent: OpenTK.Platform + href: OpenTK.Platform.IconHandle.html name: IconHandle nameWithType: IconHandle - fullName: OpenTK.Core.Platform.IconHandle -- uid: OpenTK.Core.Platform.IIconComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte}) - commentId: M:OpenTK.Core.Platform.IIconComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte}) - parent: OpenTK.Core.Platform.IIconComponent + fullName: OpenTK.Platform.IconHandle +- uid: OpenTK.Platform.IIconComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte}) + commentId: M:OpenTK.Platform.IIconComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte}) + parent: OpenTK.Platform.IIconComponent isExternal: true - href: OpenTK.Core.Platform.IIconComponent.html#OpenTK_Core_Platform_IIconComponent_Create_System_Int32_System_Int32_System_ReadOnlySpan_System_Byte__ + href: OpenTK.Platform.IIconComponent.html#OpenTK_Platform_IIconComponent_Create_System_Int32_System_Int32_System_ReadOnlySpan_System_Byte__ name: Create(int, int, ReadOnlySpan) nameWithType: IIconComponent.Create(int, int, ReadOnlySpan) - fullName: OpenTK.Core.Platform.IIconComponent.Create(int, int, System.ReadOnlySpan) + fullName: OpenTK.Platform.IIconComponent.Create(int, int, System.ReadOnlySpan) nameWithType.vb: IIconComponent.Create(Integer, Integer, ReadOnlySpan(Of Byte)) - fullName.vb: OpenTK.Core.Platform.IIconComponent.Create(Integer, Integer, System.ReadOnlySpan(Of Byte)) + fullName.vb: OpenTK.Platform.IIconComponent.Create(Integer, Integer, System.ReadOnlySpan(Of Byte)) name.vb: Create(Integer, Integer, ReadOnlySpan(Of Byte)) spec.csharp: - - uid: OpenTK.Core.Platform.IIconComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte}) + - uid: OpenTK.Platform.IIconComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte}) name: Create - href: OpenTK.Core.Platform.IIconComponent.html#OpenTK_Core_Platform_IIconComponent_Create_System_Int32_System_Int32_System_ReadOnlySpan_System_Byte__ + href: OpenTK.Platform.IIconComponent.html#OpenTK_Platform_IIconComponent_Create_System_Int32_System_Int32_System_ReadOnlySpan_System_Byte__ - name: ( - uid: System.Int32 name: int @@ -1151,9 +1086,9 @@ references: - name: '>' - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IIconComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte}) + - uid: OpenTK.Platform.IIconComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte}) name: Create - href: OpenTK.Core.Platform.IIconComponent.html#OpenTK_Core_Platform_IIconComponent_Create_System_Int32_System_Int32_System_ReadOnlySpan_System_Byte__ + href: OpenTK.Platform.IIconComponent.html#OpenTK_Platform_IIconComponent_Create_System_Int32_System_Int32_System_ReadOnlySpan_System_Byte__ - name: ( - uid: System.Int32 name: Integer @@ -1358,60 +1293,60 @@ references: fullName: System.ArgumentNullException - uid: OpenTK.Platform.Native.Windows.IconComponent.Destroy* commentId: Overload:OpenTK.Platform.Native.Windows.IconComponent.Destroy - href: OpenTK.Platform.Native.Windows.IconComponent.html#OpenTK_Platform_Native_Windows_IconComponent_Destroy_OpenTK_Core_Platform_IconHandle_ + href: OpenTK.Platform.Native.Windows.IconComponent.html#OpenTK_Platform_Native_Windows_IconComponent_Destroy_OpenTK_Platform_IconHandle_ name: Destroy nameWithType: IconComponent.Destroy fullName: OpenTK.Platform.Native.Windows.IconComponent.Destroy -- uid: OpenTK.Core.Platform.IIconComponent.Destroy(OpenTK.Core.Platform.IconHandle) - commentId: M:OpenTK.Core.Platform.IIconComponent.Destroy(OpenTK.Core.Platform.IconHandle) - parent: OpenTK.Core.Platform.IIconComponent - href: OpenTK.Core.Platform.IIconComponent.html#OpenTK_Core_Platform_IIconComponent_Destroy_OpenTK_Core_Platform_IconHandle_ +- uid: OpenTK.Platform.IIconComponent.Destroy(OpenTK.Platform.IconHandle) + commentId: M:OpenTK.Platform.IIconComponent.Destroy(OpenTK.Platform.IconHandle) + parent: OpenTK.Platform.IIconComponent + href: OpenTK.Platform.IIconComponent.html#OpenTK_Platform_IIconComponent_Destroy_OpenTK_Platform_IconHandle_ name: Destroy(IconHandle) nameWithType: IIconComponent.Destroy(IconHandle) - fullName: OpenTK.Core.Platform.IIconComponent.Destroy(OpenTK.Core.Platform.IconHandle) + fullName: OpenTK.Platform.IIconComponent.Destroy(OpenTK.Platform.IconHandle) spec.csharp: - - uid: OpenTK.Core.Platform.IIconComponent.Destroy(OpenTK.Core.Platform.IconHandle) + - uid: OpenTK.Platform.IIconComponent.Destroy(OpenTK.Platform.IconHandle) name: Destroy - href: OpenTK.Core.Platform.IIconComponent.html#OpenTK_Core_Platform_IIconComponent_Destroy_OpenTK_Core_Platform_IconHandle_ + href: OpenTK.Platform.IIconComponent.html#OpenTK_Platform_IIconComponent_Destroy_OpenTK_Platform_IconHandle_ - name: ( - - uid: OpenTK.Core.Platform.IconHandle + - uid: OpenTK.Platform.IconHandle name: IconHandle - href: OpenTK.Core.Platform.IconHandle.html + href: OpenTK.Platform.IconHandle.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IIconComponent.Destroy(OpenTK.Core.Platform.IconHandle) + - uid: OpenTK.Platform.IIconComponent.Destroy(OpenTK.Platform.IconHandle) name: Destroy - href: OpenTK.Core.Platform.IIconComponent.html#OpenTK_Core_Platform_IIconComponent_Destroy_OpenTK_Core_Platform_IconHandle_ + href: OpenTK.Platform.IIconComponent.html#OpenTK_Platform_IIconComponent_Destroy_OpenTK_Platform_IconHandle_ - name: ( - - uid: OpenTK.Core.Platform.IconHandle + - uid: OpenTK.Platform.IconHandle name: IconHandle - href: OpenTK.Core.Platform.IconHandle.html + href: OpenTK.Platform.IconHandle.html - name: ) - uid: OpenTK.Platform.Native.Windows.IconComponent.GetSize* commentId: Overload:OpenTK.Platform.Native.Windows.IconComponent.GetSize - href: OpenTK.Platform.Native.Windows.IconComponent.html#OpenTK_Platform_Native_Windows_IconComponent_GetSize_OpenTK_Core_Platform_IconHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.Native.Windows.IconComponent.html#OpenTK_Platform_Native_Windows_IconComponent_GetSize_OpenTK_Platform_IconHandle_System_Int32__System_Int32__ name: GetSize nameWithType: IconComponent.GetSize fullName: OpenTK.Platform.Native.Windows.IconComponent.GetSize -- uid: OpenTK.Core.Platform.IIconComponent.GetSize(OpenTK.Core.Platform.IconHandle,System.Int32@,System.Int32@) - commentId: M:OpenTK.Core.Platform.IIconComponent.GetSize(OpenTK.Core.Platform.IconHandle,System.Int32@,System.Int32@) - parent: OpenTK.Core.Platform.IIconComponent +- uid: OpenTK.Platform.IIconComponent.GetSize(OpenTK.Platform.IconHandle,System.Int32@,System.Int32@) + commentId: M:OpenTK.Platform.IIconComponent.GetSize(OpenTK.Platform.IconHandle,System.Int32@,System.Int32@) + parent: OpenTK.Platform.IIconComponent isExternal: true - href: OpenTK.Core.Platform.IIconComponent.html#OpenTK_Core_Platform_IIconComponent_GetSize_OpenTK_Core_Platform_IconHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.IIconComponent.html#OpenTK_Platform_IIconComponent_GetSize_OpenTK_Platform_IconHandle_System_Int32__System_Int32__ name: GetSize(IconHandle, out int, out int) nameWithType: IIconComponent.GetSize(IconHandle, out int, out int) - fullName: OpenTK.Core.Platform.IIconComponent.GetSize(OpenTK.Core.Platform.IconHandle, out int, out int) + fullName: OpenTK.Platform.IIconComponent.GetSize(OpenTK.Platform.IconHandle, out int, out int) nameWithType.vb: IIconComponent.GetSize(IconHandle, Integer, Integer) - fullName.vb: OpenTK.Core.Platform.IIconComponent.GetSize(OpenTK.Core.Platform.IconHandle, Integer, Integer) + fullName.vb: OpenTK.Platform.IIconComponent.GetSize(OpenTK.Platform.IconHandle, Integer, Integer) name.vb: GetSize(IconHandle, Integer, Integer) spec.csharp: - - uid: OpenTK.Core.Platform.IIconComponent.GetSize(OpenTK.Core.Platform.IconHandle,System.Int32@,System.Int32@) + - uid: OpenTK.Platform.IIconComponent.GetSize(OpenTK.Platform.IconHandle,System.Int32@,System.Int32@) name: GetSize - href: OpenTK.Core.Platform.IIconComponent.html#OpenTK_Core_Platform_IIconComponent_GetSize_OpenTK_Core_Platform_IconHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.IIconComponent.html#OpenTK_Platform_IIconComponent_GetSize_OpenTK_Platform_IconHandle_System_Int32__System_Int32__ - name: ( - - uid: OpenTK.Core.Platform.IconHandle + - uid: OpenTK.Platform.IconHandle name: IconHandle - href: OpenTK.Core.Platform.IconHandle.html + href: OpenTK.Platform.IconHandle.html - name: ',' - name: " " - name: out @@ -1430,13 +1365,13 @@ references: href: https://learn.microsoft.com/dotnet/api/system.int32 - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IIconComponent.GetSize(OpenTK.Core.Platform.IconHandle,System.Int32@,System.Int32@) + - uid: OpenTK.Platform.IIconComponent.GetSize(OpenTK.Platform.IconHandle,System.Int32@,System.Int32@) name: GetSize - href: OpenTK.Core.Platform.IIconComponent.html#OpenTK_Core_Platform_IIconComponent_GetSize_OpenTK_Core_Platform_IconHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.IIconComponent.html#OpenTK_Platform_IIconComponent_GetSize_OpenTK_Platform_IconHandle_System_Int32__System_Int32__ - name: ( - - uid: OpenTK.Core.Platform.IconHandle + - uid: OpenTK.Platform.IconHandle name: IconHandle - href: OpenTK.Core.Platform.IconHandle.html + href: OpenTK.Platform.IconHandle.html - name: ',' - name: " " - uid: System.Int32 @@ -1452,7 +1387,7 @@ references: - name: ) - uid: OpenTK.Platform.Native.Windows.IconComponent.GetBitmapData* commentId: Overload:OpenTK.Platform.Native.Windows.IconComponent.GetBitmapData - href: OpenTK.Platform.Native.Windows.IconComponent.html#OpenTK_Platform_Native_Windows_IconComponent_GetBitmapData_OpenTK_Core_Platform_IconHandle_System_Span_System_Byte__ + href: OpenTK.Platform.Native.Windows.IconComponent.html#OpenTK_Platform_Native_Windows_IconComponent_GetBitmapData_OpenTK_Platform_IconHandle_System_Span_System_Byte__ name: GetBitmapData nameWithType: IconComponent.GetBitmapData fullName: OpenTK.Platform.Native.Windows.IconComponent.GetBitmapData @@ -1521,7 +1456,7 @@ references: - name: ) - uid: OpenTK.Platform.Native.Windows.IconComponent.GetBitmapByteSize* commentId: Overload:OpenTK.Platform.Native.Windows.IconComponent.GetBitmapByteSize - href: OpenTK.Platform.Native.Windows.IconComponent.html#OpenTK_Platform_Native_Windows_IconComponent_GetBitmapByteSize_OpenTK_Core_Platform_IconHandle_ + href: OpenTK.Platform.Native.Windows.IconComponent.html#OpenTK_Platform_Native_Windows_IconComponent_GetBitmapByteSize_OpenTK_Platform_IconHandle_ name: GetBitmapByteSize nameWithType: IconComponent.GetBitmapByteSize fullName: OpenTK.Platform.Native.Windows.IconComponent.GetBitmapByteSize diff --git a/api/OpenTK.Platform.Native.Windows.JoystickComponent.yml b/api/OpenTK.Platform.Native.Windows.JoystickComponent.yml index bd69052a..c457b852 100644 --- a/api/OpenTK.Platform.Native.Windows.JoystickComponent.yml +++ b/api/OpenTK.Platform.Native.Windows.JoystickComponent.yml @@ -5,14 +5,14 @@ items: id: JoystickComponent parent: OpenTK.Platform.Native.Windows children: - - OpenTK.Platform.Native.Windows.JoystickComponent.Close(OpenTK.Core.Platform.JoystickHandle) - - OpenTK.Platform.Native.Windows.JoystickComponent.GetAxis(OpenTK.Core.Platform.JoystickHandle,OpenTK.Core.Platform.JoystickAxis) - - OpenTK.Platform.Native.Windows.JoystickComponent.GetButton(OpenTK.Core.Platform.JoystickHandle,OpenTK.Core.Platform.JoystickButton) - - OpenTK.Platform.Native.Windows.JoystickComponent.GetGuid(OpenTK.Core.Platform.JoystickHandle) - - OpenTK.Platform.Native.Windows.JoystickComponent.GetName(OpenTK.Core.Platform.JoystickHandle) - - OpenTK.Platform.Native.Windows.JoystickComponent.GetNumberOfAxes(OpenTK.Core.Platform.JoystickHandle) - - OpenTK.Platform.Native.Windows.JoystickComponent.GetNumberOfButtons(OpenTK.Core.Platform.JoystickHandle) - - OpenTK.Platform.Native.Windows.JoystickComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + - OpenTK.Platform.Native.Windows.JoystickComponent.Close(OpenTK.Platform.JoystickHandle) + - OpenTK.Platform.Native.Windows.JoystickComponent.GetAxis(OpenTK.Platform.JoystickHandle,OpenTK.Platform.JoystickAxis) + - OpenTK.Platform.Native.Windows.JoystickComponent.GetButton(OpenTK.Platform.JoystickHandle,OpenTK.Platform.JoystickButton) + - OpenTK.Platform.Native.Windows.JoystickComponent.GetGuid(OpenTK.Platform.JoystickHandle) + - OpenTK.Platform.Native.Windows.JoystickComponent.GetName(OpenTK.Platform.JoystickHandle) + - OpenTK.Platform.Native.Windows.JoystickComponent.GetNumberOfAxes(OpenTK.Platform.JoystickHandle) + - OpenTK.Platform.Native.Windows.JoystickComponent.GetNumberOfButtons(OpenTK.Platform.JoystickHandle) + - OpenTK.Platform.Native.Windows.JoystickComponent.Initialize(OpenTK.Platform.ToolkitOptions) - OpenTK.Platform.Native.Windows.JoystickComponent.IsConnected(System.Int32) - OpenTK.Platform.Native.Windows.JoystickComponent.LeftDeadzone - OpenTK.Platform.Native.Windows.JoystickComponent.Logger @@ -20,11 +20,11 @@ items: - OpenTK.Platform.Native.Windows.JoystickComponent.Open(System.Int32) - OpenTK.Platform.Native.Windows.JoystickComponent.Provides - OpenTK.Platform.Native.Windows.JoystickComponent.RightDeadzone - - OpenTK.Platform.Native.Windows.JoystickComponent.SetVibration(OpenTK.Core.Platform.JoystickHandle,System.Single,System.Single) - - OpenTK.Platform.Native.Windows.JoystickComponent.SupportsForceFeedback(OpenTK.Core.Platform.JoystickHandle) - - OpenTK.Platform.Native.Windows.JoystickComponent.SupportsVibration(OpenTK.Core.Platform.JoystickHandle) + - OpenTK.Platform.Native.Windows.JoystickComponent.SetVibration(OpenTK.Platform.JoystickHandle,System.Single,System.Single) + - OpenTK.Platform.Native.Windows.JoystickComponent.SupportsForceFeedback(OpenTK.Platform.JoystickHandle) + - OpenTK.Platform.Native.Windows.JoystickComponent.SupportsVibration(OpenTK.Platform.JoystickHandle) - OpenTK.Platform.Native.Windows.JoystickComponent.TriggerThreshold - - OpenTK.Platform.Native.Windows.JoystickComponent.TryGetBatteryInfo(OpenTK.Core.Platform.JoystickHandle,OpenTK.Core.Platform.GamepadBatteryInfo@) + - OpenTK.Platform.Native.Windows.JoystickComponent.TryGetBatteryInfo(OpenTK.Platform.JoystickHandle,OpenTK.Platform.GamepadBatteryInfo@) langs: - csharp - vb @@ -33,17 +33,13 @@ items: fullName: OpenTK.Platform.Native.Windows.JoystickComponent type: Class source: - remote: - path: src/OpenTK.Platform.Native/Windows/JoystickComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: JoystickComponent - path: opentk/src/OpenTK.Platform.Native/Windows/JoystickComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\JoystickComponent.cs startLine: 22 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows - summary: Win32 implementation of . + summary: Win32 implementation of . example: [] syntax: content: 'public class JoystickComponent : IJoystickComponent, IPalComponent' @@ -51,8 +47,8 @@ items: inheritance: - System.Object implements: - - OpenTK.Core.Platform.IJoystickComponent - - OpenTK.Core.Platform.IPalComponent + - OpenTK.Platform.IJoystickComponent + - OpenTK.Platform.IPalComponent inheritedMembers: - System.Object.Equals(System.Object) - System.Object.Equals(System.Object,System.Object) @@ -73,15 +69,11 @@ items: fullName: OpenTK.Platform.Native.Windows.JoystickComponent.Name type: Property source: - remote: - path: src/OpenTK.Platform.Native/Windows/JoystickComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Name - path: opentk/src/OpenTK.Platform.Native/Windows/JoystickComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\JoystickComponent.cs startLine: 25 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: Name of the abstraction layer component. example: [] @@ -93,7 +85,7 @@ items: content.vb: Public ReadOnly Property Name As String overload: OpenTK.Platform.Native.Windows.JoystickComponent.Name* implements: - - OpenTK.Core.Platform.IPalComponent.Name + - OpenTK.Platform.IPalComponent.Name - uid: OpenTK.Platform.Native.Windows.JoystickComponent.Provides commentId: P:OpenTK.Platform.Native.Windows.JoystickComponent.Provides id: Provides @@ -106,15 +98,11 @@ items: fullName: OpenTK.Platform.Native.Windows.JoystickComponent.Provides type: Property source: - remote: - path: src/OpenTK.Platform.Native/Windows/JoystickComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Provides - path: opentk/src/OpenTK.Platform.Native/Windows/JoystickComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\JoystickComponent.cs startLine: 28 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: Specifies which PAL components this object provides. example: [] @@ -122,11 +110,11 @@ items: content: public PalComponents Provides { get; } parameters: [] return: - type: OpenTK.Core.Platform.PalComponents + type: OpenTK.Platform.PalComponents content.vb: Public ReadOnly Property Provides As PalComponents overload: OpenTK.Platform.Native.Windows.JoystickComponent.Provides* implements: - - OpenTK.Core.Platform.IPalComponent.Provides + - OpenTK.Platform.IPalComponent.Provides - uid: OpenTK.Platform.Native.Windows.JoystickComponent.Logger commentId: P:OpenTK.Platform.Native.Windows.JoystickComponent.Logger id: Logger @@ -139,15 +127,11 @@ items: fullName: OpenTK.Platform.Native.Windows.JoystickComponent.Logger type: Property source: - remote: - path: src/OpenTK.Platform.Native/Windows/JoystickComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Logger - path: opentk/src/OpenTK.Platform.Native/Windows/JoystickComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\JoystickComponent.cs startLine: 31 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: Provides a logger for this component. example: [] @@ -159,7 +143,7 @@ items: content.vb: Public Property Logger As ILogger overload: OpenTK.Platform.Native.Windows.JoystickComponent.Logger* implements: - - OpenTK.Core.Platform.IPalComponent.Logger + - OpenTK.Platform.IPalComponent.Logger - uid: OpenTK.Platform.Native.Windows.JoystickComponent.LeftDeadzone commentId: P:OpenTK.Platform.Native.Windows.JoystickComponent.LeftDeadzone id: LeftDeadzone @@ -172,15 +156,11 @@ items: fullName: OpenTK.Platform.Native.Windows.JoystickComponent.LeftDeadzone type: Property source: - remote: - path: src/OpenTK.Platform.Native/Windows/JoystickComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: LeftDeadzone - path: opentk/src/OpenTK.Platform.Native/Windows/JoystickComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\JoystickComponent.cs startLine: 38 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: The recommended deadzone value for the left analog stick. example: [] @@ -192,7 +172,7 @@ items: content.vb: Public ReadOnly Property LeftDeadzone As Single overload: OpenTK.Platform.Native.Windows.JoystickComponent.LeftDeadzone* implements: - - OpenTK.Core.Platform.IJoystickComponent.LeftDeadzone + - OpenTK.Platform.IJoystickComponent.LeftDeadzone - uid: OpenTK.Platform.Native.Windows.JoystickComponent.RightDeadzone commentId: P:OpenTK.Platform.Native.Windows.JoystickComponent.RightDeadzone id: RightDeadzone @@ -205,15 +185,11 @@ items: fullName: OpenTK.Platform.Native.Windows.JoystickComponent.RightDeadzone type: Property source: - remote: - path: src/OpenTK.Platform.Native/Windows/JoystickComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: RightDeadzone - path: opentk/src/OpenTK.Platform.Native/Windows/JoystickComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\JoystickComponent.cs startLine: 41 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: The recommended deadzone value for the right analog stick. example: [] @@ -225,7 +201,7 @@ items: content.vb: Public ReadOnly Property RightDeadzone As Single overload: OpenTK.Platform.Native.Windows.JoystickComponent.RightDeadzone* implements: - - OpenTK.Core.Platform.IJoystickComponent.RightDeadzone + - OpenTK.Platform.IJoystickComponent.RightDeadzone - uid: OpenTK.Platform.Native.Windows.JoystickComponent.TriggerThreshold commentId: P:OpenTK.Platform.Native.Windows.JoystickComponent.TriggerThreshold id: TriggerThreshold @@ -238,15 +214,11 @@ items: fullName: OpenTK.Platform.Native.Windows.JoystickComponent.TriggerThreshold type: Property source: - remote: - path: src/OpenTK.Platform.Native/Windows/JoystickComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TriggerThreshold - path: opentk/src/OpenTK.Platform.Native/Windows/JoystickComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\JoystickComponent.cs startLine: 44 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: The recommended threshold for considering the left or right trigger pressed. example: [] @@ -258,28 +230,24 @@ items: content.vb: Public ReadOnly Property TriggerThreshold As Single overload: OpenTK.Platform.Native.Windows.JoystickComponent.TriggerThreshold* implements: - - OpenTK.Core.Platform.IJoystickComponent.TriggerThreshold -- uid: OpenTK.Platform.Native.Windows.JoystickComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - commentId: M:OpenTK.Platform.Native.Windows.JoystickComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - id: Initialize(OpenTK.Core.Platform.ToolkitOptions) + - OpenTK.Platform.IJoystickComponent.TriggerThreshold +- uid: OpenTK.Platform.Native.Windows.JoystickComponent.Initialize(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Native.Windows.JoystickComponent.Initialize(OpenTK.Platform.ToolkitOptions) + id: Initialize(OpenTK.Platform.ToolkitOptions) parent: OpenTK.Platform.Native.Windows.JoystickComponent langs: - csharp - vb name: Initialize(ToolkitOptions) nameWithType: JoystickComponent.Initialize(ToolkitOptions) - fullName: OpenTK.Platform.Native.Windows.JoystickComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + fullName: OpenTK.Platform.Native.Windows.JoystickComponent.Initialize(OpenTK.Platform.ToolkitOptions) type: Method source: - remote: - path: src/OpenTK.Platform.Native/Windows/JoystickComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Initialize - path: opentk/src/OpenTK.Platform.Native/Windows/JoystickComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\JoystickComponent.cs startLine: 47 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: Initialize the component. example: [] @@ -287,12 +255,12 @@ items: content: public void Initialize(ToolkitOptions options) parameters: - id: options - type: OpenTK.Core.Platform.ToolkitOptions + type: OpenTK.Platform.ToolkitOptions description: The options to initialize the component with. content.vb: Public Sub Initialize(options As ToolkitOptions) overload: OpenTK.Platform.Native.Windows.JoystickComponent.Initialize* implements: - - OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + - OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) - uid: OpenTK.Platform.Native.Windows.JoystickComponent.IsConnected(System.Int32) commentId: M:OpenTK.Platform.Native.Windows.JoystickComponent.IsConnected(System.Int32) id: IsConnected(System.Int32) @@ -305,15 +273,11 @@ items: fullName: OpenTK.Platform.Native.Windows.JoystickComponent.IsConnected(int) type: Method source: - remote: - path: src/OpenTK.Platform.Native/Windows/JoystickComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: IsConnected - path: opentk/src/OpenTK.Platform.Native/Windows/JoystickComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\JoystickComponent.cs startLine: 110 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: Checks wether a joystick with the specific index is present on the system or not. example: [] @@ -328,7 +292,7 @@ items: content.vb: Public Function IsConnected(deviceIndex As Integer) As Boolean overload: OpenTK.Platform.Native.Windows.JoystickComponent.IsConnected* implements: - - OpenTK.Core.Platform.IJoystickComponent.IsConnected(System.Int32) + - OpenTK.Platform.IJoystickComponent.IsConnected(System.Int32) nameWithType.vb: JoystickComponent.IsConnected(Integer) fullName.vb: OpenTK.Platform.Native.Windows.JoystickComponent.IsConnected(Integer) name.vb: IsConnected(Integer) @@ -344,15 +308,11 @@ items: fullName: OpenTK.Platform.Native.Windows.JoystickComponent.Open(int) type: Method source: - remote: - path: src/OpenTK.Platform.Native/Windows/JoystickComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Open - path: opentk/src/OpenTK.Platform.Native/Windows/JoystickComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\JoystickComponent.cs startLine: 117 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: Opens a handle to a specific joystick. example: [] @@ -362,36 +322,32 @@ items: - id: deviceIndex type: System.Int32 return: - type: OpenTK.Core.Platform.JoystickHandle + type: OpenTK.Platform.JoystickHandle description: The opened joystick handle. content.vb: Public Function Open(deviceIndex As Integer) As JoystickHandle overload: OpenTK.Platform.Native.Windows.JoystickComponent.Open* implements: - - OpenTK.Core.Platform.IJoystickComponent.Open(System.Int32) + - OpenTK.Platform.IJoystickComponent.Open(System.Int32) nameWithType.vb: JoystickComponent.Open(Integer) fullName.vb: OpenTK.Platform.Native.Windows.JoystickComponent.Open(Integer) name.vb: Open(Integer) -- uid: OpenTK.Platform.Native.Windows.JoystickComponent.Close(OpenTK.Core.Platform.JoystickHandle) - commentId: M:OpenTK.Platform.Native.Windows.JoystickComponent.Close(OpenTK.Core.Platform.JoystickHandle) - id: Close(OpenTK.Core.Platform.JoystickHandle) +- uid: OpenTK.Platform.Native.Windows.JoystickComponent.Close(OpenTK.Platform.JoystickHandle) + commentId: M:OpenTK.Platform.Native.Windows.JoystickComponent.Close(OpenTK.Platform.JoystickHandle) + id: Close(OpenTK.Platform.JoystickHandle) parent: OpenTK.Platform.Native.Windows.JoystickComponent langs: - csharp - vb name: Close(JoystickHandle) nameWithType: JoystickComponent.Close(JoystickHandle) - fullName: OpenTK.Platform.Native.Windows.JoystickComponent.Close(OpenTK.Core.Platform.JoystickHandle) + fullName: OpenTK.Platform.Native.Windows.JoystickComponent.Close(OpenTK.Platform.JoystickHandle) type: Method source: - remote: - path: src/OpenTK.Platform.Native/Windows/JoystickComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Close - path: opentk/src/OpenTK.Platform.Native/Windows/JoystickComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\JoystickComponent.cs startLine: 125 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: Closes a handle to a joystick. example: [] @@ -399,225 +355,197 @@ items: content: public void Close(JoystickHandle handle) parameters: - id: handle - type: OpenTK.Core.Platform.JoystickHandle + type: OpenTK.Platform.JoystickHandle description: The joystick handle. content.vb: Public Sub Close(handle As JoystickHandle) overload: OpenTK.Platform.Native.Windows.JoystickComponent.Close* implements: - - OpenTK.Core.Platform.IJoystickComponent.Close(OpenTK.Core.Platform.JoystickHandle) -- uid: OpenTK.Platform.Native.Windows.JoystickComponent.SupportsVibration(OpenTK.Core.Platform.JoystickHandle) - commentId: M:OpenTK.Platform.Native.Windows.JoystickComponent.SupportsVibration(OpenTK.Core.Platform.JoystickHandle) - id: SupportsVibration(OpenTK.Core.Platform.JoystickHandle) + - OpenTK.Platform.IJoystickComponent.Close(OpenTK.Platform.JoystickHandle) +- uid: OpenTK.Platform.Native.Windows.JoystickComponent.SupportsVibration(OpenTK.Platform.JoystickHandle) + commentId: M:OpenTK.Platform.Native.Windows.JoystickComponent.SupportsVibration(OpenTK.Platform.JoystickHandle) + id: SupportsVibration(OpenTK.Platform.JoystickHandle) parent: OpenTK.Platform.Native.Windows.JoystickComponent langs: - csharp - vb name: SupportsVibration(JoystickHandle) nameWithType: JoystickComponent.SupportsVibration(JoystickHandle) - fullName: OpenTK.Platform.Native.Windows.JoystickComponent.SupportsVibration(OpenTK.Core.Platform.JoystickHandle) + fullName: OpenTK.Platform.Native.Windows.JoystickComponent.SupportsVibration(OpenTK.Platform.JoystickHandle) type: Method source: - remote: - path: src/OpenTK.Platform.Native/Windows/JoystickComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SupportsVibration - path: opentk/src/OpenTK.Platform.Native/Windows/JoystickComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\JoystickComponent.cs startLine: 131 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows syntax: content: public bool SupportsVibration(JoystickHandle handle) parameters: - id: handle - type: OpenTK.Core.Platform.JoystickHandle + type: OpenTK.Platform.JoystickHandle return: type: System.Boolean content.vb: Public Function SupportsVibration(handle As JoystickHandle) As Boolean overload: OpenTK.Platform.Native.Windows.JoystickComponent.SupportsVibration* -- uid: OpenTK.Platform.Native.Windows.JoystickComponent.GetGuid(OpenTK.Core.Platform.JoystickHandle) - commentId: M:OpenTK.Platform.Native.Windows.JoystickComponent.GetGuid(OpenTK.Core.Platform.JoystickHandle) - id: GetGuid(OpenTK.Core.Platform.JoystickHandle) +- uid: OpenTK.Platform.Native.Windows.JoystickComponent.GetGuid(OpenTK.Platform.JoystickHandle) + commentId: M:OpenTK.Platform.Native.Windows.JoystickComponent.GetGuid(OpenTK.Platform.JoystickHandle) + id: GetGuid(OpenTK.Platform.JoystickHandle) parent: OpenTK.Platform.Native.Windows.JoystickComponent langs: - csharp - vb name: GetGuid(JoystickHandle) nameWithType: JoystickComponent.GetGuid(JoystickHandle) - fullName: OpenTK.Platform.Native.Windows.JoystickComponent.GetGuid(OpenTK.Core.Platform.JoystickHandle) + fullName: OpenTK.Platform.Native.Windows.JoystickComponent.GetGuid(OpenTK.Platform.JoystickHandle) type: Method source: - remote: - path: src/OpenTK.Platform.Native/Windows/JoystickComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetGuid - path: opentk/src/OpenTK.Platform.Native/Windows/JoystickComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\JoystickComponent.cs startLine: 151 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows example: [] syntax: content: public Guid GetGuid(JoystickHandle handle) parameters: - id: handle - type: OpenTK.Core.Platform.JoystickHandle + type: OpenTK.Platform.JoystickHandle return: type: System.Guid content.vb: Public Function GetGuid(handle As JoystickHandle) As Guid overload: OpenTK.Platform.Native.Windows.JoystickComponent.GetGuid* implements: - - OpenTK.Core.Platform.IJoystickComponent.GetGuid(OpenTK.Core.Platform.JoystickHandle) -- uid: OpenTK.Platform.Native.Windows.JoystickComponent.GetName(OpenTK.Core.Platform.JoystickHandle) - commentId: M:OpenTK.Platform.Native.Windows.JoystickComponent.GetName(OpenTK.Core.Platform.JoystickHandle) - id: GetName(OpenTK.Core.Platform.JoystickHandle) + - OpenTK.Platform.IJoystickComponent.GetGuid(OpenTK.Platform.JoystickHandle) +- uid: OpenTK.Platform.Native.Windows.JoystickComponent.GetName(OpenTK.Platform.JoystickHandle) + commentId: M:OpenTK.Platform.Native.Windows.JoystickComponent.GetName(OpenTK.Platform.JoystickHandle) + id: GetName(OpenTK.Platform.JoystickHandle) parent: OpenTK.Platform.Native.Windows.JoystickComponent langs: - csharp - vb name: GetName(JoystickHandle) nameWithType: JoystickComponent.GetName(JoystickHandle) - fullName: OpenTK.Platform.Native.Windows.JoystickComponent.GetName(OpenTK.Core.Platform.JoystickHandle) + fullName: OpenTK.Platform.Native.Windows.JoystickComponent.GetName(OpenTK.Platform.JoystickHandle) type: Method source: - remote: - path: src/OpenTK.Platform.Native/Windows/JoystickComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetName - path: opentk/src/OpenTK.Platform.Native/Windows/JoystickComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\JoystickComponent.cs startLine: 159 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows example: [] syntax: content: public string GetName(JoystickHandle handle) parameters: - id: handle - type: OpenTK.Core.Platform.JoystickHandle + type: OpenTK.Platform.JoystickHandle return: type: System.String content.vb: Public Function GetName(handle As JoystickHandle) As String overload: OpenTK.Platform.Native.Windows.JoystickComponent.GetName* implements: - - OpenTK.Core.Platform.IJoystickComponent.GetName(OpenTK.Core.Platform.JoystickHandle) -- uid: OpenTK.Platform.Native.Windows.JoystickComponent.GetNumberOfButtons(OpenTK.Core.Platform.JoystickHandle) - commentId: M:OpenTK.Platform.Native.Windows.JoystickComponent.GetNumberOfButtons(OpenTK.Core.Platform.JoystickHandle) - id: GetNumberOfButtons(OpenTK.Core.Platform.JoystickHandle) + - OpenTK.Platform.IJoystickComponent.GetName(OpenTK.Platform.JoystickHandle) +- uid: OpenTK.Platform.Native.Windows.JoystickComponent.GetNumberOfButtons(OpenTK.Platform.JoystickHandle) + commentId: M:OpenTK.Platform.Native.Windows.JoystickComponent.GetNumberOfButtons(OpenTK.Platform.JoystickHandle) + id: GetNumberOfButtons(OpenTK.Platform.JoystickHandle) parent: OpenTK.Platform.Native.Windows.JoystickComponent langs: - csharp - vb name: GetNumberOfButtons(JoystickHandle) nameWithType: JoystickComponent.GetNumberOfButtons(JoystickHandle) - fullName: OpenTK.Platform.Native.Windows.JoystickComponent.GetNumberOfButtons(OpenTK.Core.Platform.JoystickHandle) + fullName: OpenTK.Platform.Native.Windows.JoystickComponent.GetNumberOfButtons(OpenTK.Platform.JoystickHandle) type: Method source: - remote: - path: src/OpenTK.Platform.Native/Windows/JoystickComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetNumberOfButtons - path: opentk/src/OpenTK.Platform.Native/Windows/JoystickComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\JoystickComponent.cs startLine: 166 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows syntax: content: public int GetNumberOfButtons(JoystickHandle handle) parameters: - id: handle - type: OpenTK.Core.Platform.JoystickHandle + type: OpenTK.Platform.JoystickHandle return: type: System.Int32 content.vb: Public Function GetNumberOfButtons(handle As JoystickHandle) As Integer overload: OpenTK.Platform.Native.Windows.JoystickComponent.GetNumberOfButtons* -- uid: OpenTK.Platform.Native.Windows.JoystickComponent.GetNumberOfAxes(OpenTK.Core.Platform.JoystickHandle) - commentId: M:OpenTK.Platform.Native.Windows.JoystickComponent.GetNumberOfAxes(OpenTK.Core.Platform.JoystickHandle) - id: GetNumberOfAxes(OpenTK.Core.Platform.JoystickHandle) +- uid: OpenTK.Platform.Native.Windows.JoystickComponent.GetNumberOfAxes(OpenTK.Platform.JoystickHandle) + commentId: M:OpenTK.Platform.Native.Windows.JoystickComponent.GetNumberOfAxes(OpenTK.Platform.JoystickHandle) + id: GetNumberOfAxes(OpenTK.Platform.JoystickHandle) parent: OpenTK.Platform.Native.Windows.JoystickComponent langs: - csharp - vb name: GetNumberOfAxes(JoystickHandle) nameWithType: JoystickComponent.GetNumberOfAxes(JoystickHandle) - fullName: OpenTK.Platform.Native.Windows.JoystickComponent.GetNumberOfAxes(OpenTK.Core.Platform.JoystickHandle) + fullName: OpenTK.Platform.Native.Windows.JoystickComponent.GetNumberOfAxes(OpenTK.Platform.JoystickHandle) type: Method source: - remote: - path: src/OpenTK.Platform.Native/Windows/JoystickComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetNumberOfAxes - path: opentk/src/OpenTK.Platform.Native/Windows/JoystickComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\JoystickComponent.cs startLine: 173 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows syntax: content: public int GetNumberOfAxes(JoystickHandle handle) parameters: - id: handle - type: OpenTK.Core.Platform.JoystickHandle + type: OpenTK.Platform.JoystickHandle return: type: System.Int32 content.vb: Public Function GetNumberOfAxes(handle As JoystickHandle) As Integer overload: OpenTK.Platform.Native.Windows.JoystickComponent.GetNumberOfAxes* -- uid: OpenTK.Platform.Native.Windows.JoystickComponent.SupportsForceFeedback(OpenTK.Core.Platform.JoystickHandle) - commentId: M:OpenTK.Platform.Native.Windows.JoystickComponent.SupportsForceFeedback(OpenTK.Core.Platform.JoystickHandle) - id: SupportsForceFeedback(OpenTK.Core.Platform.JoystickHandle) +- uid: OpenTK.Platform.Native.Windows.JoystickComponent.SupportsForceFeedback(OpenTK.Platform.JoystickHandle) + commentId: M:OpenTK.Platform.Native.Windows.JoystickComponent.SupportsForceFeedback(OpenTK.Platform.JoystickHandle) + id: SupportsForceFeedback(OpenTK.Platform.JoystickHandle) parent: OpenTK.Platform.Native.Windows.JoystickComponent langs: - csharp - vb name: SupportsForceFeedback(JoystickHandle) nameWithType: JoystickComponent.SupportsForceFeedback(JoystickHandle) - fullName: OpenTK.Platform.Native.Windows.JoystickComponent.SupportsForceFeedback(OpenTK.Core.Platform.JoystickHandle) + fullName: OpenTK.Platform.Native.Windows.JoystickComponent.SupportsForceFeedback(OpenTK.Platform.JoystickHandle) type: Method source: - remote: - path: src/OpenTK.Platform.Native/Windows/JoystickComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SupportsForceFeedback - path: opentk/src/OpenTK.Platform.Native/Windows/JoystickComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\JoystickComponent.cs startLine: 180 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows syntax: content: public bool SupportsForceFeedback(JoystickHandle handle) parameters: - id: handle - type: OpenTK.Core.Platform.JoystickHandle + type: OpenTK.Platform.JoystickHandle return: type: System.Boolean content.vb: Public Function SupportsForceFeedback(handle As JoystickHandle) As Boolean overload: OpenTK.Platform.Native.Windows.JoystickComponent.SupportsForceFeedback* -- uid: OpenTK.Platform.Native.Windows.JoystickComponent.GetAxis(OpenTK.Core.Platform.JoystickHandle,OpenTK.Core.Platform.JoystickAxis) - commentId: M:OpenTK.Platform.Native.Windows.JoystickComponent.GetAxis(OpenTK.Core.Platform.JoystickHandle,OpenTK.Core.Platform.JoystickAxis) - id: GetAxis(OpenTK.Core.Platform.JoystickHandle,OpenTK.Core.Platform.JoystickAxis) +- uid: OpenTK.Platform.Native.Windows.JoystickComponent.GetAxis(OpenTK.Platform.JoystickHandle,OpenTK.Platform.JoystickAxis) + commentId: M:OpenTK.Platform.Native.Windows.JoystickComponent.GetAxis(OpenTK.Platform.JoystickHandle,OpenTK.Platform.JoystickAxis) + id: GetAxis(OpenTK.Platform.JoystickHandle,OpenTK.Platform.JoystickAxis) parent: OpenTK.Platform.Native.Windows.JoystickComponent langs: - csharp - vb name: GetAxis(JoystickHandle, JoystickAxis) nameWithType: JoystickComponent.GetAxis(JoystickHandle, JoystickAxis) - fullName: OpenTK.Platform.Native.Windows.JoystickComponent.GetAxis(OpenTK.Core.Platform.JoystickHandle, OpenTK.Core.Platform.JoystickAxis) + fullName: OpenTK.Platform.Native.Windows.JoystickComponent.GetAxis(OpenTK.Platform.JoystickHandle, OpenTK.Platform.JoystickAxis) type: Method source: - remote: - path: src/OpenTK.Platform.Native/Windows/JoystickComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetAxis - path: opentk/src/OpenTK.Platform.Native/Windows/JoystickComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\JoystickComponent.cs startLine: 188 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: >- Gets the value of a specific joystick axis. @@ -628,10 +556,10 @@ items: content: public float GetAxis(JoystickHandle handle, JoystickAxis axis) parameters: - id: handle - type: OpenTK.Core.Platform.JoystickHandle + type: OpenTK.Platform.JoystickHandle description: A handle to a joystick. - id: axis - type: OpenTK.Core.Platform.JoystickAxis + type: OpenTK.Platform.JoystickAxis description: The joystick axis to get. return: type: System.Single @@ -639,28 +567,24 @@ items: content.vb: Public Function GetAxis(handle As JoystickHandle, axis As JoystickAxis) As Single overload: OpenTK.Platform.Native.Windows.JoystickComponent.GetAxis* implements: - - OpenTK.Core.Platform.IJoystickComponent.GetAxis(OpenTK.Core.Platform.JoystickHandle,OpenTK.Core.Platform.JoystickAxis) -- uid: OpenTK.Platform.Native.Windows.JoystickComponent.GetButton(OpenTK.Core.Platform.JoystickHandle,OpenTK.Core.Platform.JoystickButton) - commentId: M:OpenTK.Platform.Native.Windows.JoystickComponent.GetButton(OpenTK.Core.Platform.JoystickHandle,OpenTK.Core.Platform.JoystickButton) - id: GetButton(OpenTK.Core.Platform.JoystickHandle,OpenTK.Core.Platform.JoystickButton) + - OpenTK.Platform.IJoystickComponent.GetAxis(OpenTK.Platform.JoystickHandle,OpenTK.Platform.JoystickAxis) +- uid: OpenTK.Platform.Native.Windows.JoystickComponent.GetButton(OpenTK.Platform.JoystickHandle,OpenTK.Platform.JoystickButton) + commentId: M:OpenTK.Platform.Native.Windows.JoystickComponent.GetButton(OpenTK.Platform.JoystickHandle,OpenTK.Platform.JoystickButton) + id: GetButton(OpenTK.Platform.JoystickHandle,OpenTK.Platform.JoystickButton) parent: OpenTK.Platform.Native.Windows.JoystickComponent langs: - csharp - vb name: GetButton(JoystickHandle, JoystickButton) nameWithType: JoystickComponent.GetButton(JoystickHandle, JoystickButton) - fullName: OpenTK.Platform.Native.Windows.JoystickComponent.GetButton(OpenTK.Core.Platform.JoystickHandle, OpenTK.Core.Platform.JoystickButton) + fullName: OpenTK.Platform.Native.Windows.JoystickComponent.GetButton(OpenTK.Platform.JoystickHandle, OpenTK.Platform.JoystickButton) type: Method source: - remote: - path: src/OpenTK.Platform.Native/Windows/JoystickComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetButton - path: opentk/src/OpenTK.Platform.Native/Windows/JoystickComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\JoystickComponent.cs startLine: 230 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: Get the pressed state of a specific joystick button. example: [] @@ -668,10 +592,10 @@ items: content: public bool GetButton(JoystickHandle handle, JoystickButton button) parameters: - id: handle - type: OpenTK.Core.Platform.JoystickHandle + type: OpenTK.Platform.JoystickHandle description: A handle to a joystick. - id: button - type: OpenTK.Core.Platform.JoystickButton + type: OpenTK.Platform.JoystickButton description: The joystick button to get. return: type: System.Boolean @@ -679,35 +603,31 @@ items: content.vb: Public Function GetButton(handle As JoystickHandle, button As JoystickButton) As Boolean overload: OpenTK.Platform.Native.Windows.JoystickComponent.GetButton* implements: - - OpenTK.Core.Platform.IJoystickComponent.GetButton(OpenTK.Core.Platform.JoystickHandle,OpenTK.Core.Platform.JoystickButton) -- uid: OpenTK.Platform.Native.Windows.JoystickComponent.SetVibration(OpenTK.Core.Platform.JoystickHandle,System.Single,System.Single) - commentId: M:OpenTK.Platform.Native.Windows.JoystickComponent.SetVibration(OpenTK.Core.Platform.JoystickHandle,System.Single,System.Single) - id: SetVibration(OpenTK.Core.Platform.JoystickHandle,System.Single,System.Single) + - OpenTK.Platform.IJoystickComponent.GetButton(OpenTK.Platform.JoystickHandle,OpenTK.Platform.JoystickButton) +- uid: OpenTK.Platform.Native.Windows.JoystickComponent.SetVibration(OpenTK.Platform.JoystickHandle,System.Single,System.Single) + commentId: M:OpenTK.Platform.Native.Windows.JoystickComponent.SetVibration(OpenTK.Platform.JoystickHandle,System.Single,System.Single) + id: SetVibration(OpenTK.Platform.JoystickHandle,System.Single,System.Single) parent: OpenTK.Platform.Native.Windows.JoystickComponent langs: - csharp - vb name: SetVibration(JoystickHandle, float, float) nameWithType: JoystickComponent.SetVibration(JoystickHandle, float, float) - fullName: OpenTK.Platform.Native.Windows.JoystickComponent.SetVibration(OpenTK.Core.Platform.JoystickHandle, float, float) + fullName: OpenTK.Platform.Native.Windows.JoystickComponent.SetVibration(OpenTK.Platform.JoystickHandle, float, float) type: Method source: - remote: - path: src/OpenTK.Platform.Native/Windows/JoystickComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetVibration - path: opentk/src/OpenTK.Platform.Native/Windows/JoystickComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\JoystickComponent.cs startLine: 266 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows example: [] syntax: content: public bool SetVibration(JoystickHandle handle, float lowFrequenzyIntensity, float highFrequenzyIntensity) parameters: - id: handle - type: OpenTK.Core.Platform.JoystickHandle + type: OpenTK.Platform.JoystickHandle - id: lowFrequenzyIntensity type: System.Single - id: highFrequenzyIntensity @@ -717,57 +637,53 @@ items: content.vb: Public Function SetVibration(handle As JoystickHandle, lowFrequenzyIntensity As Single, highFrequenzyIntensity As Single) As Boolean overload: OpenTK.Platform.Native.Windows.JoystickComponent.SetVibration* implements: - - OpenTK.Core.Platform.IJoystickComponent.SetVibration(OpenTK.Core.Platform.JoystickHandle,System.Single,System.Single) + - OpenTK.Platform.IJoystickComponent.SetVibration(OpenTK.Platform.JoystickHandle,System.Single,System.Single) nameWithType.vb: JoystickComponent.SetVibration(JoystickHandle, Single, Single) - fullName.vb: OpenTK.Platform.Native.Windows.JoystickComponent.SetVibration(OpenTK.Core.Platform.JoystickHandle, Single, Single) + fullName.vb: OpenTK.Platform.Native.Windows.JoystickComponent.SetVibration(OpenTK.Platform.JoystickHandle, Single, Single) name.vb: SetVibration(JoystickHandle, Single, Single) -- uid: OpenTK.Platform.Native.Windows.JoystickComponent.TryGetBatteryInfo(OpenTK.Core.Platform.JoystickHandle,OpenTK.Core.Platform.GamepadBatteryInfo@) - commentId: M:OpenTK.Platform.Native.Windows.JoystickComponent.TryGetBatteryInfo(OpenTK.Core.Platform.JoystickHandle,OpenTK.Core.Platform.GamepadBatteryInfo@) - id: TryGetBatteryInfo(OpenTK.Core.Platform.JoystickHandle,OpenTK.Core.Platform.GamepadBatteryInfo@) +- uid: OpenTK.Platform.Native.Windows.JoystickComponent.TryGetBatteryInfo(OpenTK.Platform.JoystickHandle,OpenTK.Platform.GamepadBatteryInfo@) + commentId: M:OpenTK.Platform.Native.Windows.JoystickComponent.TryGetBatteryInfo(OpenTK.Platform.JoystickHandle,OpenTK.Platform.GamepadBatteryInfo@) + id: TryGetBatteryInfo(OpenTK.Platform.JoystickHandle,OpenTK.Platform.GamepadBatteryInfo@) parent: OpenTK.Platform.Native.Windows.JoystickComponent langs: - csharp - vb name: TryGetBatteryInfo(JoystickHandle, out GamepadBatteryInfo) nameWithType: JoystickComponent.TryGetBatteryInfo(JoystickHandle, out GamepadBatteryInfo) - fullName: OpenTK.Platform.Native.Windows.JoystickComponent.TryGetBatteryInfo(OpenTK.Core.Platform.JoystickHandle, out OpenTK.Core.Platform.GamepadBatteryInfo) + fullName: OpenTK.Platform.Native.Windows.JoystickComponent.TryGetBatteryInfo(OpenTK.Platform.JoystickHandle, out OpenTK.Platform.GamepadBatteryInfo) type: Method source: - remote: - path: src/OpenTK.Platform.Native/Windows/JoystickComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TryGetBatteryInfo - path: opentk/src/OpenTK.Platform.Native/Windows/JoystickComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\JoystickComponent.cs startLine: 281 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows example: [] syntax: content: public bool TryGetBatteryInfo(JoystickHandle handle, out GamepadBatteryInfo batteryInfo) parameters: - id: handle - type: OpenTK.Core.Platform.JoystickHandle + type: OpenTK.Platform.JoystickHandle - id: batteryInfo - type: OpenTK.Core.Platform.GamepadBatteryInfo + type: OpenTK.Platform.GamepadBatteryInfo return: type: System.Boolean content.vb: Public Function TryGetBatteryInfo(handle As JoystickHandle, batteryInfo As GamepadBatteryInfo) As Boolean overload: OpenTK.Platform.Native.Windows.JoystickComponent.TryGetBatteryInfo* implements: - - OpenTK.Core.Platform.IJoystickComponent.TryGetBatteryInfo(OpenTK.Core.Platform.JoystickHandle,OpenTK.Core.Platform.GamepadBatteryInfo@) + - OpenTK.Platform.IJoystickComponent.TryGetBatteryInfo(OpenTK.Platform.JoystickHandle,OpenTK.Platform.GamepadBatteryInfo@) nameWithType.vb: JoystickComponent.TryGetBatteryInfo(JoystickHandle, GamepadBatteryInfo) - fullName.vb: OpenTK.Platform.Native.Windows.JoystickComponent.TryGetBatteryInfo(OpenTK.Core.Platform.JoystickHandle, OpenTK.Core.Platform.GamepadBatteryInfo) + fullName.vb: OpenTK.Platform.Native.Windows.JoystickComponent.TryGetBatteryInfo(OpenTK.Platform.JoystickHandle, OpenTK.Platform.GamepadBatteryInfo) name.vb: TryGetBatteryInfo(JoystickHandle, GamepadBatteryInfo) references: -- uid: OpenTK.Core.Platform.IJoystickComponent - commentId: T:OpenTK.Core.Platform.IJoystickComponent - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.IJoystickComponent.html +- uid: OpenTK.Platform.IJoystickComponent + commentId: T:OpenTK.Platform.IJoystickComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IJoystickComponent.html name: IJoystickComponent nameWithType: IJoystickComponent - fullName: OpenTK.Core.Platform.IJoystickComponent + fullName: OpenTK.Platform.IJoystickComponent - uid: OpenTK.Platform.Native.Windows commentId: N:OpenTK.Platform.Native.Windows href: OpenTK.html @@ -817,13 +733,13 @@ references: nameWithType.vb: Object fullName.vb: Object name.vb: Object -- uid: OpenTK.Core.Platform.IPalComponent - commentId: T:OpenTK.Core.Platform.IPalComponent - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.IPalComponent.html +- uid: OpenTK.Platform.IPalComponent + commentId: T:OpenTK.Platform.IPalComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IPalComponent.html name: IPalComponent nameWithType: IPalComponent - fullName: OpenTK.Core.Platform.IPalComponent + fullName: OpenTK.Platform.IPalComponent - uid: System.Object.Equals(System.Object) commentId: M:System.Object.Equals(System.Object) parent: System.Object @@ -1043,36 +959,28 @@ references: href: https://learn.microsoft.com/dotnet/api/system.object.tostring - name: ( - name: ) -- uid: OpenTK.Core.Platform - commentId: N:OpenTK.Core.Platform +- uid: OpenTK.Platform + commentId: N:OpenTK.Platform href: OpenTK.html - name: OpenTK.Core.Platform - nameWithType: OpenTK.Core.Platform - fullName: OpenTK.Core.Platform + name: OpenTK.Platform + nameWithType: OpenTK.Platform + fullName: OpenTK.Platform spec.csharp: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html spec.vb: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html - uid: System commentId: N:System isExternal: true @@ -1086,13 +994,13 @@ references: name: Name nameWithType: JoystickComponent.Name fullName: OpenTK.Platform.Native.Windows.JoystickComponent.Name -- uid: OpenTK.Core.Platform.IPalComponent.Name - commentId: P:OpenTK.Core.Platform.IPalComponent.Name - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Name +- uid: OpenTK.Platform.IPalComponent.Name + commentId: P:OpenTK.Platform.IPalComponent.Name + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Name name: Name nameWithType: IPalComponent.Name - fullName: OpenTK.Core.Platform.IPalComponent.Name + fullName: OpenTK.Platform.IPalComponent.Name - uid: System.String commentId: T:System.String parent: System @@ -1110,33 +1018,33 @@ references: name: Provides nameWithType: JoystickComponent.Provides fullName: OpenTK.Platform.Native.Windows.JoystickComponent.Provides -- uid: OpenTK.Core.Platform.IPalComponent.Provides - commentId: P:OpenTK.Core.Platform.IPalComponent.Provides - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Provides +- uid: OpenTK.Platform.IPalComponent.Provides + commentId: P:OpenTK.Platform.IPalComponent.Provides + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Provides name: Provides nameWithType: IPalComponent.Provides - fullName: OpenTK.Core.Platform.IPalComponent.Provides -- uid: OpenTK.Core.Platform.PalComponents - commentId: T:OpenTK.Core.Platform.PalComponents - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.PalComponents.html + fullName: OpenTK.Platform.IPalComponent.Provides +- uid: OpenTK.Platform.PalComponents + commentId: T:OpenTK.Platform.PalComponents + parent: OpenTK.Platform + href: OpenTK.Platform.PalComponents.html name: PalComponents nameWithType: PalComponents - fullName: OpenTK.Core.Platform.PalComponents + fullName: OpenTK.Platform.PalComponents - uid: OpenTK.Platform.Native.Windows.JoystickComponent.Logger* commentId: Overload:OpenTK.Platform.Native.Windows.JoystickComponent.Logger href: OpenTK.Platform.Native.Windows.JoystickComponent.html#OpenTK_Platform_Native_Windows_JoystickComponent_Logger name: Logger nameWithType: JoystickComponent.Logger fullName: OpenTK.Platform.Native.Windows.JoystickComponent.Logger -- uid: OpenTK.Core.Platform.IPalComponent.Logger - commentId: P:OpenTK.Core.Platform.IPalComponent.Logger - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Logger +- uid: OpenTK.Platform.IPalComponent.Logger + commentId: P:OpenTK.Platform.IPalComponent.Logger + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Logger name: Logger nameWithType: IPalComponent.Logger - fullName: OpenTK.Core.Platform.IPalComponent.Logger + fullName: OpenTK.Platform.IPalComponent.Logger - uid: OpenTK.Core.Utility.ILogger commentId: T:OpenTK.Core.Utility.ILogger parent: OpenTK.Core.Utility @@ -1180,13 +1088,13 @@ references: name: LeftDeadzone nameWithType: JoystickComponent.LeftDeadzone fullName: OpenTK.Platform.Native.Windows.JoystickComponent.LeftDeadzone -- uid: OpenTK.Core.Platform.IJoystickComponent.LeftDeadzone - commentId: P:OpenTK.Core.Platform.IJoystickComponent.LeftDeadzone - parent: OpenTK.Core.Platform.IJoystickComponent - href: OpenTK.Core.Platform.IJoystickComponent.html#OpenTK_Core_Platform_IJoystickComponent_LeftDeadzone +- uid: OpenTK.Platform.IJoystickComponent.LeftDeadzone + commentId: P:OpenTK.Platform.IJoystickComponent.LeftDeadzone + parent: OpenTK.Platform.IJoystickComponent + href: OpenTK.Platform.IJoystickComponent.html#OpenTK_Platform_IJoystickComponent_LeftDeadzone name: LeftDeadzone nameWithType: IJoystickComponent.LeftDeadzone - fullName: OpenTK.Core.Platform.IJoystickComponent.LeftDeadzone + fullName: OpenTK.Platform.IJoystickComponent.LeftDeadzone - uid: System.Single commentId: T:System.Single parent: System @@ -1204,85 +1112,85 @@ references: name: RightDeadzone nameWithType: JoystickComponent.RightDeadzone fullName: OpenTK.Platform.Native.Windows.JoystickComponent.RightDeadzone -- uid: OpenTK.Core.Platform.IJoystickComponent.RightDeadzone - commentId: P:OpenTK.Core.Platform.IJoystickComponent.RightDeadzone - parent: OpenTK.Core.Platform.IJoystickComponent - href: OpenTK.Core.Platform.IJoystickComponent.html#OpenTK_Core_Platform_IJoystickComponent_RightDeadzone +- uid: OpenTK.Platform.IJoystickComponent.RightDeadzone + commentId: P:OpenTK.Platform.IJoystickComponent.RightDeadzone + parent: OpenTK.Platform.IJoystickComponent + href: OpenTK.Platform.IJoystickComponent.html#OpenTK_Platform_IJoystickComponent_RightDeadzone name: RightDeadzone nameWithType: IJoystickComponent.RightDeadzone - fullName: OpenTK.Core.Platform.IJoystickComponent.RightDeadzone + fullName: OpenTK.Platform.IJoystickComponent.RightDeadzone - uid: OpenTK.Platform.Native.Windows.JoystickComponent.TriggerThreshold* commentId: Overload:OpenTK.Platform.Native.Windows.JoystickComponent.TriggerThreshold href: OpenTK.Platform.Native.Windows.JoystickComponent.html#OpenTK_Platform_Native_Windows_JoystickComponent_TriggerThreshold name: TriggerThreshold nameWithType: JoystickComponent.TriggerThreshold fullName: OpenTK.Platform.Native.Windows.JoystickComponent.TriggerThreshold -- uid: OpenTK.Core.Platform.IJoystickComponent.TriggerThreshold - commentId: P:OpenTK.Core.Platform.IJoystickComponent.TriggerThreshold - parent: OpenTK.Core.Platform.IJoystickComponent - href: OpenTK.Core.Platform.IJoystickComponent.html#OpenTK_Core_Platform_IJoystickComponent_TriggerThreshold +- uid: OpenTK.Platform.IJoystickComponent.TriggerThreshold + commentId: P:OpenTK.Platform.IJoystickComponent.TriggerThreshold + parent: OpenTK.Platform.IJoystickComponent + href: OpenTK.Platform.IJoystickComponent.html#OpenTK_Platform_IJoystickComponent_TriggerThreshold name: TriggerThreshold nameWithType: IJoystickComponent.TriggerThreshold - fullName: OpenTK.Core.Platform.IJoystickComponent.TriggerThreshold + fullName: OpenTK.Platform.IJoystickComponent.TriggerThreshold - uid: OpenTK.Platform.Native.Windows.JoystickComponent.Initialize* commentId: Overload:OpenTK.Platform.Native.Windows.JoystickComponent.Initialize - href: OpenTK.Platform.Native.Windows.JoystickComponent.html#OpenTK_Platform_Native_Windows_JoystickComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + href: OpenTK.Platform.Native.Windows.JoystickComponent.html#OpenTK_Platform_Native_Windows_JoystickComponent_Initialize_OpenTK_Platform_ToolkitOptions_ name: Initialize nameWithType: JoystickComponent.Initialize fullName: OpenTK.Platform.Native.Windows.JoystickComponent.Initialize -- uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - commentId: M:OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ +- uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ name: Initialize(ToolkitOptions) nameWithType: IPalComponent.Initialize(ToolkitOptions) - fullName: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + fullName: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) spec.csharp: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + - uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.ToolkitOptions + - uid: OpenTK.Platform.ToolkitOptions name: ToolkitOptions - href: OpenTK.Core.Platform.ToolkitOptions.html + href: OpenTK.Platform.ToolkitOptions.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + - uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.ToolkitOptions + - uid: OpenTK.Platform.ToolkitOptions name: ToolkitOptions - href: OpenTK.Core.Platform.ToolkitOptions.html + href: OpenTK.Platform.ToolkitOptions.html - name: ) -- uid: OpenTK.Core.Platform.ToolkitOptions - commentId: T:OpenTK.Core.Platform.ToolkitOptions - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.ToolkitOptions.html +- uid: OpenTK.Platform.ToolkitOptions + commentId: T:OpenTK.Platform.ToolkitOptions + parent: OpenTK.Platform + href: OpenTK.Platform.ToolkitOptions.html name: ToolkitOptions nameWithType: ToolkitOptions - fullName: OpenTK.Core.Platform.ToolkitOptions + fullName: OpenTK.Platform.ToolkitOptions - uid: OpenTK.Platform.Native.Windows.JoystickComponent.IsConnected* commentId: Overload:OpenTK.Platform.Native.Windows.JoystickComponent.IsConnected href: OpenTK.Platform.Native.Windows.JoystickComponent.html#OpenTK_Platform_Native_Windows_JoystickComponent_IsConnected_System_Int32_ name: IsConnected nameWithType: JoystickComponent.IsConnected fullName: OpenTK.Platform.Native.Windows.JoystickComponent.IsConnected -- uid: OpenTK.Core.Platform.IJoystickComponent.IsConnected(System.Int32) - commentId: M:OpenTK.Core.Platform.IJoystickComponent.IsConnected(System.Int32) - parent: OpenTK.Core.Platform.IJoystickComponent +- uid: OpenTK.Platform.IJoystickComponent.IsConnected(System.Int32) + commentId: M:OpenTK.Platform.IJoystickComponent.IsConnected(System.Int32) + parent: OpenTK.Platform.IJoystickComponent isExternal: true - href: OpenTK.Core.Platform.IJoystickComponent.html#OpenTK_Core_Platform_IJoystickComponent_IsConnected_System_Int32_ + href: OpenTK.Platform.IJoystickComponent.html#OpenTK_Platform_IJoystickComponent_IsConnected_System_Int32_ name: IsConnected(int) nameWithType: IJoystickComponent.IsConnected(int) - fullName: OpenTK.Core.Platform.IJoystickComponent.IsConnected(int) + fullName: OpenTK.Platform.IJoystickComponent.IsConnected(int) nameWithType.vb: IJoystickComponent.IsConnected(Integer) - fullName.vb: OpenTK.Core.Platform.IJoystickComponent.IsConnected(Integer) + fullName.vb: OpenTK.Platform.IJoystickComponent.IsConnected(Integer) name.vb: IsConnected(Integer) spec.csharp: - - uid: OpenTK.Core.Platform.IJoystickComponent.IsConnected(System.Int32) + - uid: OpenTK.Platform.IJoystickComponent.IsConnected(System.Int32) name: IsConnected - href: OpenTK.Core.Platform.IJoystickComponent.html#OpenTK_Core_Platform_IJoystickComponent_IsConnected_System_Int32_ + href: OpenTK.Platform.IJoystickComponent.html#OpenTK_Platform_IJoystickComponent_IsConnected_System_Int32_ - name: ( - uid: System.Int32 name: int @@ -1290,9 +1198,9 @@ references: href: https://learn.microsoft.com/dotnet/api/system.int32 - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IJoystickComponent.IsConnected(System.Int32) + - uid: OpenTK.Platform.IJoystickComponent.IsConnected(System.Int32) name: IsConnected - href: OpenTK.Core.Platform.IJoystickComponent.html#OpenTK_Core_Platform_IJoystickComponent_IsConnected_System_Int32_ + href: OpenTK.Platform.IJoystickComponent.html#OpenTK_Platform_IJoystickComponent_IsConnected_System_Int32_ - name: ( - uid: System.Int32 name: Integer @@ -1327,21 +1235,21 @@ references: name: Open nameWithType: JoystickComponent.Open fullName: OpenTK.Platform.Native.Windows.JoystickComponent.Open -- uid: OpenTK.Core.Platform.IJoystickComponent.Open(System.Int32) - commentId: M:OpenTK.Core.Platform.IJoystickComponent.Open(System.Int32) - parent: OpenTK.Core.Platform.IJoystickComponent +- uid: OpenTK.Platform.IJoystickComponent.Open(System.Int32) + commentId: M:OpenTK.Platform.IJoystickComponent.Open(System.Int32) + parent: OpenTK.Platform.IJoystickComponent isExternal: true - href: OpenTK.Core.Platform.IJoystickComponent.html#OpenTK_Core_Platform_IJoystickComponent_Open_System_Int32_ + href: OpenTK.Platform.IJoystickComponent.html#OpenTK_Platform_IJoystickComponent_Open_System_Int32_ name: Open(int) nameWithType: IJoystickComponent.Open(int) - fullName: OpenTK.Core.Platform.IJoystickComponent.Open(int) + fullName: OpenTK.Platform.IJoystickComponent.Open(int) nameWithType.vb: IJoystickComponent.Open(Integer) - fullName.vb: OpenTK.Core.Platform.IJoystickComponent.Open(Integer) + fullName.vb: OpenTK.Platform.IJoystickComponent.Open(Integer) name.vb: Open(Integer) spec.csharp: - - uid: OpenTK.Core.Platform.IJoystickComponent.Open(System.Int32) + - uid: OpenTK.Platform.IJoystickComponent.Open(System.Int32) name: Open - href: OpenTK.Core.Platform.IJoystickComponent.html#OpenTK_Core_Platform_IJoystickComponent_Open_System_Int32_ + href: OpenTK.Platform.IJoystickComponent.html#OpenTK_Platform_IJoystickComponent_Open_System_Int32_ - name: ( - uid: System.Int32 name: int @@ -1349,89 +1257,89 @@ references: href: https://learn.microsoft.com/dotnet/api/system.int32 - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IJoystickComponent.Open(System.Int32) + - uid: OpenTK.Platform.IJoystickComponent.Open(System.Int32) name: Open - href: OpenTK.Core.Platform.IJoystickComponent.html#OpenTK_Core_Platform_IJoystickComponent_Open_System_Int32_ + href: OpenTK.Platform.IJoystickComponent.html#OpenTK_Platform_IJoystickComponent_Open_System_Int32_ - name: ( - uid: System.Int32 name: Integer isExternal: true href: https://learn.microsoft.com/dotnet/api/system.int32 - name: ) -- uid: OpenTK.Core.Platform.JoystickHandle - commentId: T:OpenTK.Core.Platform.JoystickHandle - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.JoystickHandle.html +- uid: OpenTK.Platform.JoystickHandle + commentId: T:OpenTK.Platform.JoystickHandle + parent: OpenTK.Platform + href: OpenTK.Platform.JoystickHandle.html name: JoystickHandle nameWithType: JoystickHandle - fullName: OpenTK.Core.Platform.JoystickHandle + fullName: OpenTK.Platform.JoystickHandle - uid: OpenTK.Platform.Native.Windows.JoystickComponent.Close* commentId: Overload:OpenTK.Platform.Native.Windows.JoystickComponent.Close - href: OpenTK.Platform.Native.Windows.JoystickComponent.html#OpenTK_Platform_Native_Windows_JoystickComponent_Close_OpenTK_Core_Platform_JoystickHandle_ + href: OpenTK.Platform.Native.Windows.JoystickComponent.html#OpenTK_Platform_Native_Windows_JoystickComponent_Close_OpenTK_Platform_JoystickHandle_ name: Close nameWithType: JoystickComponent.Close fullName: OpenTK.Platform.Native.Windows.JoystickComponent.Close -- uid: OpenTK.Core.Platform.IJoystickComponent.Close(OpenTK.Core.Platform.JoystickHandle) - commentId: M:OpenTK.Core.Platform.IJoystickComponent.Close(OpenTK.Core.Platform.JoystickHandle) - parent: OpenTK.Core.Platform.IJoystickComponent - href: OpenTK.Core.Platform.IJoystickComponent.html#OpenTK_Core_Platform_IJoystickComponent_Close_OpenTK_Core_Platform_JoystickHandle_ +- uid: OpenTK.Platform.IJoystickComponent.Close(OpenTK.Platform.JoystickHandle) + commentId: M:OpenTK.Platform.IJoystickComponent.Close(OpenTK.Platform.JoystickHandle) + parent: OpenTK.Platform.IJoystickComponent + href: OpenTK.Platform.IJoystickComponent.html#OpenTK_Platform_IJoystickComponent_Close_OpenTK_Platform_JoystickHandle_ name: Close(JoystickHandle) nameWithType: IJoystickComponent.Close(JoystickHandle) - fullName: OpenTK.Core.Platform.IJoystickComponent.Close(OpenTK.Core.Platform.JoystickHandle) + fullName: OpenTK.Platform.IJoystickComponent.Close(OpenTK.Platform.JoystickHandle) spec.csharp: - - uid: OpenTK.Core.Platform.IJoystickComponent.Close(OpenTK.Core.Platform.JoystickHandle) + - uid: OpenTK.Platform.IJoystickComponent.Close(OpenTK.Platform.JoystickHandle) name: Close - href: OpenTK.Core.Platform.IJoystickComponent.html#OpenTK_Core_Platform_IJoystickComponent_Close_OpenTK_Core_Platform_JoystickHandle_ + href: OpenTK.Platform.IJoystickComponent.html#OpenTK_Platform_IJoystickComponent_Close_OpenTK_Platform_JoystickHandle_ - name: ( - - uid: OpenTK.Core.Platform.JoystickHandle + - uid: OpenTK.Platform.JoystickHandle name: JoystickHandle - href: OpenTK.Core.Platform.JoystickHandle.html + href: OpenTK.Platform.JoystickHandle.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IJoystickComponent.Close(OpenTK.Core.Platform.JoystickHandle) + - uid: OpenTK.Platform.IJoystickComponent.Close(OpenTK.Platform.JoystickHandle) name: Close - href: OpenTK.Core.Platform.IJoystickComponent.html#OpenTK_Core_Platform_IJoystickComponent_Close_OpenTK_Core_Platform_JoystickHandle_ + href: OpenTK.Platform.IJoystickComponent.html#OpenTK_Platform_IJoystickComponent_Close_OpenTK_Platform_JoystickHandle_ - name: ( - - uid: OpenTK.Core.Platform.JoystickHandle + - uid: OpenTK.Platform.JoystickHandle name: JoystickHandle - href: OpenTK.Core.Platform.JoystickHandle.html + href: OpenTK.Platform.JoystickHandle.html - name: ) - uid: OpenTK.Platform.Native.Windows.JoystickComponent.SupportsVibration* commentId: Overload:OpenTK.Platform.Native.Windows.JoystickComponent.SupportsVibration - href: OpenTK.Platform.Native.Windows.JoystickComponent.html#OpenTK_Platform_Native_Windows_JoystickComponent_SupportsVibration_OpenTK_Core_Platform_JoystickHandle_ + href: OpenTK.Platform.Native.Windows.JoystickComponent.html#OpenTK_Platform_Native_Windows_JoystickComponent_SupportsVibration_OpenTK_Platform_JoystickHandle_ name: SupportsVibration nameWithType: JoystickComponent.SupportsVibration fullName: OpenTK.Platform.Native.Windows.JoystickComponent.SupportsVibration - uid: OpenTK.Platform.Native.Windows.JoystickComponent.GetGuid* commentId: Overload:OpenTK.Platform.Native.Windows.JoystickComponent.GetGuid - href: OpenTK.Platform.Native.Windows.JoystickComponent.html#OpenTK_Platform_Native_Windows_JoystickComponent_GetGuid_OpenTK_Core_Platform_JoystickHandle_ + href: OpenTK.Platform.Native.Windows.JoystickComponent.html#OpenTK_Platform_Native_Windows_JoystickComponent_GetGuid_OpenTK_Platform_JoystickHandle_ name: GetGuid nameWithType: JoystickComponent.GetGuid fullName: OpenTK.Platform.Native.Windows.JoystickComponent.GetGuid -- uid: OpenTK.Core.Platform.IJoystickComponent.GetGuid(OpenTK.Core.Platform.JoystickHandle) - commentId: M:OpenTK.Core.Platform.IJoystickComponent.GetGuid(OpenTK.Core.Platform.JoystickHandle) - parent: OpenTK.Core.Platform.IJoystickComponent - href: OpenTK.Core.Platform.IJoystickComponent.html#OpenTK_Core_Platform_IJoystickComponent_GetGuid_OpenTK_Core_Platform_JoystickHandle_ +- uid: OpenTK.Platform.IJoystickComponent.GetGuid(OpenTK.Platform.JoystickHandle) + commentId: M:OpenTK.Platform.IJoystickComponent.GetGuid(OpenTK.Platform.JoystickHandle) + parent: OpenTK.Platform.IJoystickComponent + href: OpenTK.Platform.IJoystickComponent.html#OpenTK_Platform_IJoystickComponent_GetGuid_OpenTK_Platform_JoystickHandle_ name: GetGuid(JoystickHandle) nameWithType: IJoystickComponent.GetGuid(JoystickHandle) - fullName: OpenTK.Core.Platform.IJoystickComponent.GetGuid(OpenTK.Core.Platform.JoystickHandle) + fullName: OpenTK.Platform.IJoystickComponent.GetGuid(OpenTK.Platform.JoystickHandle) spec.csharp: - - uid: OpenTK.Core.Platform.IJoystickComponent.GetGuid(OpenTK.Core.Platform.JoystickHandle) + - uid: OpenTK.Platform.IJoystickComponent.GetGuid(OpenTK.Platform.JoystickHandle) name: GetGuid - href: OpenTK.Core.Platform.IJoystickComponent.html#OpenTK_Core_Platform_IJoystickComponent_GetGuid_OpenTK_Core_Platform_JoystickHandle_ + href: OpenTK.Platform.IJoystickComponent.html#OpenTK_Platform_IJoystickComponent_GetGuid_OpenTK_Platform_JoystickHandle_ - name: ( - - uid: OpenTK.Core.Platform.JoystickHandle + - uid: OpenTK.Platform.JoystickHandle name: JoystickHandle - href: OpenTK.Core.Platform.JoystickHandle.html + href: OpenTK.Platform.JoystickHandle.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IJoystickComponent.GetGuid(OpenTK.Core.Platform.JoystickHandle) + - uid: OpenTK.Platform.IJoystickComponent.GetGuid(OpenTK.Platform.JoystickHandle) name: GetGuid - href: OpenTK.Core.Platform.IJoystickComponent.html#OpenTK_Core_Platform_IJoystickComponent_GetGuid_OpenTK_Core_Platform_JoystickHandle_ + href: OpenTK.Platform.IJoystickComponent.html#OpenTK_Platform_IJoystickComponent_GetGuid_OpenTK_Platform_JoystickHandle_ - name: ( - - uid: OpenTK.Core.Platform.JoystickHandle + - uid: OpenTK.Platform.JoystickHandle name: JoystickHandle - href: OpenTK.Core.Platform.JoystickHandle.html + href: OpenTK.Platform.JoystickHandle.html - name: ) - uid: System.Guid commentId: T:System.Guid @@ -1443,174 +1351,174 @@ references: fullName: System.Guid - uid: OpenTK.Platform.Native.Windows.JoystickComponent.GetName* commentId: Overload:OpenTK.Platform.Native.Windows.JoystickComponent.GetName - href: OpenTK.Platform.Native.Windows.JoystickComponent.html#OpenTK_Platform_Native_Windows_JoystickComponent_GetName_OpenTK_Core_Platform_JoystickHandle_ + href: OpenTK.Platform.Native.Windows.JoystickComponent.html#OpenTK_Platform_Native_Windows_JoystickComponent_GetName_OpenTK_Platform_JoystickHandle_ name: GetName nameWithType: JoystickComponent.GetName fullName: OpenTK.Platform.Native.Windows.JoystickComponent.GetName -- uid: OpenTK.Core.Platform.IJoystickComponent.GetName(OpenTK.Core.Platform.JoystickHandle) - commentId: M:OpenTK.Core.Platform.IJoystickComponent.GetName(OpenTK.Core.Platform.JoystickHandle) - parent: OpenTK.Core.Platform.IJoystickComponent - href: OpenTK.Core.Platform.IJoystickComponent.html#OpenTK_Core_Platform_IJoystickComponent_GetName_OpenTK_Core_Platform_JoystickHandle_ +- uid: OpenTK.Platform.IJoystickComponent.GetName(OpenTK.Platform.JoystickHandle) + commentId: M:OpenTK.Platform.IJoystickComponent.GetName(OpenTK.Platform.JoystickHandle) + parent: OpenTK.Platform.IJoystickComponent + href: OpenTK.Platform.IJoystickComponent.html#OpenTK_Platform_IJoystickComponent_GetName_OpenTK_Platform_JoystickHandle_ name: GetName(JoystickHandle) nameWithType: IJoystickComponent.GetName(JoystickHandle) - fullName: OpenTK.Core.Platform.IJoystickComponent.GetName(OpenTK.Core.Platform.JoystickHandle) + fullName: OpenTK.Platform.IJoystickComponent.GetName(OpenTK.Platform.JoystickHandle) spec.csharp: - - uid: OpenTK.Core.Platform.IJoystickComponent.GetName(OpenTK.Core.Platform.JoystickHandle) + - uid: OpenTK.Platform.IJoystickComponent.GetName(OpenTK.Platform.JoystickHandle) name: GetName - href: OpenTK.Core.Platform.IJoystickComponent.html#OpenTK_Core_Platform_IJoystickComponent_GetName_OpenTK_Core_Platform_JoystickHandle_ + href: OpenTK.Platform.IJoystickComponent.html#OpenTK_Platform_IJoystickComponent_GetName_OpenTK_Platform_JoystickHandle_ - name: ( - - uid: OpenTK.Core.Platform.JoystickHandle + - uid: OpenTK.Platform.JoystickHandle name: JoystickHandle - href: OpenTK.Core.Platform.JoystickHandle.html + href: OpenTK.Platform.JoystickHandle.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IJoystickComponent.GetName(OpenTK.Core.Platform.JoystickHandle) + - uid: OpenTK.Platform.IJoystickComponent.GetName(OpenTK.Platform.JoystickHandle) name: GetName - href: OpenTK.Core.Platform.IJoystickComponent.html#OpenTK_Core_Platform_IJoystickComponent_GetName_OpenTK_Core_Platform_JoystickHandle_ + href: OpenTK.Platform.IJoystickComponent.html#OpenTK_Platform_IJoystickComponent_GetName_OpenTK_Platform_JoystickHandle_ - name: ( - - uid: OpenTK.Core.Platform.JoystickHandle + - uid: OpenTK.Platform.JoystickHandle name: JoystickHandle - href: OpenTK.Core.Platform.JoystickHandle.html + href: OpenTK.Platform.JoystickHandle.html - name: ) - uid: OpenTK.Platform.Native.Windows.JoystickComponent.GetNumberOfButtons* commentId: Overload:OpenTK.Platform.Native.Windows.JoystickComponent.GetNumberOfButtons - href: OpenTK.Platform.Native.Windows.JoystickComponent.html#OpenTK_Platform_Native_Windows_JoystickComponent_GetNumberOfButtons_OpenTK_Core_Platform_JoystickHandle_ + href: OpenTK.Platform.Native.Windows.JoystickComponent.html#OpenTK_Platform_Native_Windows_JoystickComponent_GetNumberOfButtons_OpenTK_Platform_JoystickHandle_ name: GetNumberOfButtons nameWithType: JoystickComponent.GetNumberOfButtons fullName: OpenTK.Platform.Native.Windows.JoystickComponent.GetNumberOfButtons - uid: OpenTK.Platform.Native.Windows.JoystickComponent.GetNumberOfAxes* commentId: Overload:OpenTK.Platform.Native.Windows.JoystickComponent.GetNumberOfAxes - href: OpenTK.Platform.Native.Windows.JoystickComponent.html#OpenTK_Platform_Native_Windows_JoystickComponent_GetNumberOfAxes_OpenTK_Core_Platform_JoystickHandle_ + href: OpenTK.Platform.Native.Windows.JoystickComponent.html#OpenTK_Platform_Native_Windows_JoystickComponent_GetNumberOfAxes_OpenTK_Platform_JoystickHandle_ name: GetNumberOfAxes nameWithType: JoystickComponent.GetNumberOfAxes fullName: OpenTK.Platform.Native.Windows.JoystickComponent.GetNumberOfAxes - uid: OpenTK.Platform.Native.Windows.JoystickComponent.SupportsForceFeedback* commentId: Overload:OpenTK.Platform.Native.Windows.JoystickComponent.SupportsForceFeedback - href: OpenTK.Platform.Native.Windows.JoystickComponent.html#OpenTK_Platform_Native_Windows_JoystickComponent_SupportsForceFeedback_OpenTK_Core_Platform_JoystickHandle_ + href: OpenTK.Platform.Native.Windows.JoystickComponent.html#OpenTK_Platform_Native_Windows_JoystickComponent_SupportsForceFeedback_OpenTK_Platform_JoystickHandle_ name: SupportsForceFeedback nameWithType: JoystickComponent.SupportsForceFeedback fullName: OpenTK.Platform.Native.Windows.JoystickComponent.SupportsForceFeedback - uid: OpenTK.Platform.Native.Windows.JoystickComponent.GetAxis* commentId: Overload:OpenTK.Platform.Native.Windows.JoystickComponent.GetAxis - href: OpenTK.Platform.Native.Windows.JoystickComponent.html#OpenTK_Platform_Native_Windows_JoystickComponent_GetAxis_OpenTK_Core_Platform_JoystickHandle_OpenTK_Core_Platform_JoystickAxis_ + href: OpenTK.Platform.Native.Windows.JoystickComponent.html#OpenTK_Platform_Native_Windows_JoystickComponent_GetAxis_OpenTK_Platform_JoystickHandle_OpenTK_Platform_JoystickAxis_ name: GetAxis nameWithType: JoystickComponent.GetAxis fullName: OpenTK.Platform.Native.Windows.JoystickComponent.GetAxis -- uid: OpenTK.Core.Platform.IJoystickComponent.GetAxis(OpenTK.Core.Platform.JoystickHandle,OpenTK.Core.Platform.JoystickAxis) - commentId: M:OpenTK.Core.Platform.IJoystickComponent.GetAxis(OpenTK.Core.Platform.JoystickHandle,OpenTK.Core.Platform.JoystickAxis) - parent: OpenTK.Core.Platform.IJoystickComponent - href: OpenTK.Core.Platform.IJoystickComponent.html#OpenTK_Core_Platform_IJoystickComponent_GetAxis_OpenTK_Core_Platform_JoystickHandle_OpenTK_Core_Platform_JoystickAxis_ +- uid: OpenTK.Platform.IJoystickComponent.GetAxis(OpenTK.Platform.JoystickHandle,OpenTK.Platform.JoystickAxis) + commentId: M:OpenTK.Platform.IJoystickComponent.GetAxis(OpenTK.Platform.JoystickHandle,OpenTK.Platform.JoystickAxis) + parent: OpenTK.Platform.IJoystickComponent + href: OpenTK.Platform.IJoystickComponent.html#OpenTK_Platform_IJoystickComponent_GetAxis_OpenTK_Platform_JoystickHandle_OpenTK_Platform_JoystickAxis_ name: GetAxis(JoystickHandle, JoystickAxis) nameWithType: IJoystickComponent.GetAxis(JoystickHandle, JoystickAxis) - fullName: OpenTK.Core.Platform.IJoystickComponent.GetAxis(OpenTK.Core.Platform.JoystickHandle, OpenTK.Core.Platform.JoystickAxis) + fullName: OpenTK.Platform.IJoystickComponent.GetAxis(OpenTK.Platform.JoystickHandle, OpenTK.Platform.JoystickAxis) spec.csharp: - - uid: OpenTK.Core.Platform.IJoystickComponent.GetAxis(OpenTK.Core.Platform.JoystickHandle,OpenTK.Core.Platform.JoystickAxis) + - uid: OpenTK.Platform.IJoystickComponent.GetAxis(OpenTK.Platform.JoystickHandle,OpenTK.Platform.JoystickAxis) name: GetAxis - href: OpenTK.Core.Platform.IJoystickComponent.html#OpenTK_Core_Platform_IJoystickComponent_GetAxis_OpenTK_Core_Platform_JoystickHandle_OpenTK_Core_Platform_JoystickAxis_ + href: OpenTK.Platform.IJoystickComponent.html#OpenTK_Platform_IJoystickComponent_GetAxis_OpenTK_Platform_JoystickHandle_OpenTK_Platform_JoystickAxis_ - name: ( - - uid: OpenTK.Core.Platform.JoystickHandle + - uid: OpenTK.Platform.JoystickHandle name: JoystickHandle - href: OpenTK.Core.Platform.JoystickHandle.html + href: OpenTK.Platform.JoystickHandle.html - name: ',' - name: " " - - uid: OpenTK.Core.Platform.JoystickAxis + - uid: OpenTK.Platform.JoystickAxis name: JoystickAxis - href: OpenTK.Core.Platform.JoystickAxis.html + href: OpenTK.Platform.JoystickAxis.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IJoystickComponent.GetAxis(OpenTK.Core.Platform.JoystickHandle,OpenTK.Core.Platform.JoystickAxis) + - uid: OpenTK.Platform.IJoystickComponent.GetAxis(OpenTK.Platform.JoystickHandle,OpenTK.Platform.JoystickAxis) name: GetAxis - href: OpenTK.Core.Platform.IJoystickComponent.html#OpenTK_Core_Platform_IJoystickComponent_GetAxis_OpenTK_Core_Platform_JoystickHandle_OpenTK_Core_Platform_JoystickAxis_ + href: OpenTK.Platform.IJoystickComponent.html#OpenTK_Platform_IJoystickComponent_GetAxis_OpenTK_Platform_JoystickHandle_OpenTK_Platform_JoystickAxis_ - name: ( - - uid: OpenTK.Core.Platform.JoystickHandle + - uid: OpenTK.Platform.JoystickHandle name: JoystickHandle - href: OpenTK.Core.Platform.JoystickHandle.html + href: OpenTK.Platform.JoystickHandle.html - name: ',' - name: " " - - uid: OpenTK.Core.Platform.JoystickAxis + - uid: OpenTK.Platform.JoystickAxis name: JoystickAxis - href: OpenTK.Core.Platform.JoystickAxis.html + href: OpenTK.Platform.JoystickAxis.html - name: ) -- uid: OpenTK.Core.Platform.JoystickAxis - commentId: T:OpenTK.Core.Platform.JoystickAxis - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.JoystickAxis.html +- uid: OpenTK.Platform.JoystickAxis + commentId: T:OpenTK.Platform.JoystickAxis + parent: OpenTK.Platform + href: OpenTK.Platform.JoystickAxis.html name: JoystickAxis nameWithType: JoystickAxis - fullName: OpenTK.Core.Platform.JoystickAxis + fullName: OpenTK.Platform.JoystickAxis - uid: OpenTK.Platform.Native.Windows.JoystickComponent.GetButton* commentId: Overload:OpenTK.Platform.Native.Windows.JoystickComponent.GetButton - href: OpenTK.Platform.Native.Windows.JoystickComponent.html#OpenTK_Platform_Native_Windows_JoystickComponent_GetButton_OpenTK_Core_Platform_JoystickHandle_OpenTK_Core_Platform_JoystickButton_ + href: OpenTK.Platform.Native.Windows.JoystickComponent.html#OpenTK_Platform_Native_Windows_JoystickComponent_GetButton_OpenTK_Platform_JoystickHandle_OpenTK_Platform_JoystickButton_ name: GetButton nameWithType: JoystickComponent.GetButton fullName: OpenTK.Platform.Native.Windows.JoystickComponent.GetButton -- uid: OpenTK.Core.Platform.IJoystickComponent.GetButton(OpenTK.Core.Platform.JoystickHandle,OpenTK.Core.Platform.JoystickButton) - commentId: M:OpenTK.Core.Platform.IJoystickComponent.GetButton(OpenTK.Core.Platform.JoystickHandle,OpenTK.Core.Platform.JoystickButton) - parent: OpenTK.Core.Platform.IJoystickComponent - href: OpenTK.Core.Platform.IJoystickComponent.html#OpenTK_Core_Platform_IJoystickComponent_GetButton_OpenTK_Core_Platform_JoystickHandle_OpenTK_Core_Platform_JoystickButton_ +- uid: OpenTK.Platform.IJoystickComponent.GetButton(OpenTK.Platform.JoystickHandle,OpenTK.Platform.JoystickButton) + commentId: M:OpenTK.Platform.IJoystickComponent.GetButton(OpenTK.Platform.JoystickHandle,OpenTK.Platform.JoystickButton) + parent: OpenTK.Platform.IJoystickComponent + href: OpenTK.Platform.IJoystickComponent.html#OpenTK_Platform_IJoystickComponent_GetButton_OpenTK_Platform_JoystickHandle_OpenTK_Platform_JoystickButton_ name: GetButton(JoystickHandle, JoystickButton) nameWithType: IJoystickComponent.GetButton(JoystickHandle, JoystickButton) - fullName: OpenTK.Core.Platform.IJoystickComponent.GetButton(OpenTK.Core.Platform.JoystickHandle, OpenTK.Core.Platform.JoystickButton) + fullName: OpenTK.Platform.IJoystickComponent.GetButton(OpenTK.Platform.JoystickHandle, OpenTK.Platform.JoystickButton) spec.csharp: - - uid: OpenTK.Core.Platform.IJoystickComponent.GetButton(OpenTK.Core.Platform.JoystickHandle,OpenTK.Core.Platform.JoystickButton) + - uid: OpenTK.Platform.IJoystickComponent.GetButton(OpenTK.Platform.JoystickHandle,OpenTK.Platform.JoystickButton) name: GetButton - href: OpenTK.Core.Platform.IJoystickComponent.html#OpenTK_Core_Platform_IJoystickComponent_GetButton_OpenTK_Core_Platform_JoystickHandle_OpenTK_Core_Platform_JoystickButton_ + href: OpenTK.Platform.IJoystickComponent.html#OpenTK_Platform_IJoystickComponent_GetButton_OpenTK_Platform_JoystickHandle_OpenTK_Platform_JoystickButton_ - name: ( - - uid: OpenTK.Core.Platform.JoystickHandle + - uid: OpenTK.Platform.JoystickHandle name: JoystickHandle - href: OpenTK.Core.Platform.JoystickHandle.html + href: OpenTK.Platform.JoystickHandle.html - name: ',' - name: " " - - uid: OpenTK.Core.Platform.JoystickButton + - uid: OpenTK.Platform.JoystickButton name: JoystickButton - href: OpenTK.Core.Platform.JoystickButton.html + href: OpenTK.Platform.JoystickButton.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IJoystickComponent.GetButton(OpenTK.Core.Platform.JoystickHandle,OpenTK.Core.Platform.JoystickButton) + - uid: OpenTK.Platform.IJoystickComponent.GetButton(OpenTK.Platform.JoystickHandle,OpenTK.Platform.JoystickButton) name: GetButton - href: OpenTK.Core.Platform.IJoystickComponent.html#OpenTK_Core_Platform_IJoystickComponent_GetButton_OpenTK_Core_Platform_JoystickHandle_OpenTK_Core_Platform_JoystickButton_ + href: OpenTK.Platform.IJoystickComponent.html#OpenTK_Platform_IJoystickComponent_GetButton_OpenTK_Platform_JoystickHandle_OpenTK_Platform_JoystickButton_ - name: ( - - uid: OpenTK.Core.Platform.JoystickHandle + - uid: OpenTK.Platform.JoystickHandle name: JoystickHandle - href: OpenTK.Core.Platform.JoystickHandle.html + href: OpenTK.Platform.JoystickHandle.html - name: ',' - name: " " - - uid: OpenTK.Core.Platform.JoystickButton + - uid: OpenTK.Platform.JoystickButton name: JoystickButton - href: OpenTK.Core.Platform.JoystickButton.html + href: OpenTK.Platform.JoystickButton.html - name: ) -- uid: OpenTK.Core.Platform.JoystickButton - commentId: T:OpenTK.Core.Platform.JoystickButton - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.JoystickButton.html +- uid: OpenTK.Platform.JoystickButton + commentId: T:OpenTK.Platform.JoystickButton + parent: OpenTK.Platform + href: OpenTK.Platform.JoystickButton.html name: JoystickButton nameWithType: JoystickButton - fullName: OpenTK.Core.Platform.JoystickButton + fullName: OpenTK.Platform.JoystickButton - uid: OpenTK.Platform.Native.Windows.JoystickComponent.SetVibration* commentId: Overload:OpenTK.Platform.Native.Windows.JoystickComponent.SetVibration - href: OpenTK.Platform.Native.Windows.JoystickComponent.html#OpenTK_Platform_Native_Windows_JoystickComponent_SetVibration_OpenTK_Core_Platform_JoystickHandle_System_Single_System_Single_ + href: OpenTK.Platform.Native.Windows.JoystickComponent.html#OpenTK_Platform_Native_Windows_JoystickComponent_SetVibration_OpenTK_Platform_JoystickHandle_System_Single_System_Single_ name: SetVibration nameWithType: JoystickComponent.SetVibration fullName: OpenTK.Platform.Native.Windows.JoystickComponent.SetVibration -- uid: OpenTK.Core.Platform.IJoystickComponent.SetVibration(OpenTK.Core.Platform.JoystickHandle,System.Single,System.Single) - commentId: M:OpenTK.Core.Platform.IJoystickComponent.SetVibration(OpenTK.Core.Platform.JoystickHandle,System.Single,System.Single) - parent: OpenTK.Core.Platform.IJoystickComponent +- uid: OpenTK.Platform.IJoystickComponent.SetVibration(OpenTK.Platform.JoystickHandle,System.Single,System.Single) + commentId: M:OpenTK.Platform.IJoystickComponent.SetVibration(OpenTK.Platform.JoystickHandle,System.Single,System.Single) + parent: OpenTK.Platform.IJoystickComponent isExternal: true - href: OpenTK.Core.Platform.IJoystickComponent.html#OpenTK_Core_Platform_IJoystickComponent_SetVibration_OpenTK_Core_Platform_JoystickHandle_System_Single_System_Single_ + href: OpenTK.Platform.IJoystickComponent.html#OpenTK_Platform_IJoystickComponent_SetVibration_OpenTK_Platform_JoystickHandle_System_Single_System_Single_ name: SetVibration(JoystickHandle, float, float) nameWithType: IJoystickComponent.SetVibration(JoystickHandle, float, float) - fullName: OpenTK.Core.Platform.IJoystickComponent.SetVibration(OpenTK.Core.Platform.JoystickHandle, float, float) + fullName: OpenTK.Platform.IJoystickComponent.SetVibration(OpenTK.Platform.JoystickHandle, float, float) nameWithType.vb: IJoystickComponent.SetVibration(JoystickHandle, Single, Single) - fullName.vb: OpenTK.Core.Platform.IJoystickComponent.SetVibration(OpenTK.Core.Platform.JoystickHandle, Single, Single) + fullName.vb: OpenTK.Platform.IJoystickComponent.SetVibration(OpenTK.Platform.JoystickHandle, Single, Single) name.vb: SetVibration(JoystickHandle, Single, Single) spec.csharp: - - uid: OpenTK.Core.Platform.IJoystickComponent.SetVibration(OpenTK.Core.Platform.JoystickHandle,System.Single,System.Single) + - uid: OpenTK.Platform.IJoystickComponent.SetVibration(OpenTK.Platform.JoystickHandle,System.Single,System.Single) name: SetVibration - href: OpenTK.Core.Platform.IJoystickComponent.html#OpenTK_Core_Platform_IJoystickComponent_SetVibration_OpenTK_Core_Platform_JoystickHandle_System_Single_System_Single_ + href: OpenTK.Platform.IJoystickComponent.html#OpenTK_Platform_IJoystickComponent_SetVibration_OpenTK_Platform_JoystickHandle_System_Single_System_Single_ - name: ( - - uid: OpenTK.Core.Platform.JoystickHandle + - uid: OpenTK.Platform.JoystickHandle name: JoystickHandle - href: OpenTK.Core.Platform.JoystickHandle.html + href: OpenTK.Platform.JoystickHandle.html - name: ',' - name: " " - uid: System.Single @@ -1625,13 +1533,13 @@ references: href: https://learn.microsoft.com/dotnet/api/system.single - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IJoystickComponent.SetVibration(OpenTK.Core.Platform.JoystickHandle,System.Single,System.Single) + - uid: OpenTK.Platform.IJoystickComponent.SetVibration(OpenTK.Platform.JoystickHandle,System.Single,System.Single) name: SetVibration - href: OpenTK.Core.Platform.IJoystickComponent.html#OpenTK_Core_Platform_IJoystickComponent_SetVibration_OpenTK_Core_Platform_JoystickHandle_System_Single_System_Single_ + href: OpenTK.Platform.IJoystickComponent.html#OpenTK_Platform_IJoystickComponent_SetVibration_OpenTK_Platform_JoystickHandle_System_Single_System_Single_ - name: ( - - uid: OpenTK.Core.Platform.JoystickHandle + - uid: OpenTK.Platform.JoystickHandle name: JoystickHandle - href: OpenTK.Core.Platform.JoystickHandle.html + href: OpenTK.Platform.JoystickHandle.html - name: ',' - name: " " - uid: System.Single @@ -1647,54 +1555,54 @@ references: - name: ) - uid: OpenTK.Platform.Native.Windows.JoystickComponent.TryGetBatteryInfo* commentId: Overload:OpenTK.Platform.Native.Windows.JoystickComponent.TryGetBatteryInfo - href: OpenTK.Platform.Native.Windows.JoystickComponent.html#OpenTK_Platform_Native_Windows_JoystickComponent_TryGetBatteryInfo_OpenTK_Core_Platform_JoystickHandle_OpenTK_Core_Platform_GamepadBatteryInfo__ + href: OpenTK.Platform.Native.Windows.JoystickComponent.html#OpenTK_Platform_Native_Windows_JoystickComponent_TryGetBatteryInfo_OpenTK_Platform_JoystickHandle_OpenTK_Platform_GamepadBatteryInfo__ name: TryGetBatteryInfo nameWithType: JoystickComponent.TryGetBatteryInfo fullName: OpenTK.Platform.Native.Windows.JoystickComponent.TryGetBatteryInfo -- uid: OpenTK.Core.Platform.IJoystickComponent.TryGetBatteryInfo(OpenTK.Core.Platform.JoystickHandle,OpenTK.Core.Platform.GamepadBatteryInfo@) - commentId: M:OpenTK.Core.Platform.IJoystickComponent.TryGetBatteryInfo(OpenTK.Core.Platform.JoystickHandle,OpenTK.Core.Platform.GamepadBatteryInfo@) - parent: OpenTK.Core.Platform.IJoystickComponent - href: OpenTK.Core.Platform.IJoystickComponent.html#OpenTK_Core_Platform_IJoystickComponent_TryGetBatteryInfo_OpenTK_Core_Platform_JoystickHandle_OpenTK_Core_Platform_GamepadBatteryInfo__ +- uid: OpenTK.Platform.IJoystickComponent.TryGetBatteryInfo(OpenTK.Platform.JoystickHandle,OpenTK.Platform.GamepadBatteryInfo@) + commentId: M:OpenTK.Platform.IJoystickComponent.TryGetBatteryInfo(OpenTK.Platform.JoystickHandle,OpenTK.Platform.GamepadBatteryInfo@) + parent: OpenTK.Platform.IJoystickComponent + href: OpenTK.Platform.IJoystickComponent.html#OpenTK_Platform_IJoystickComponent_TryGetBatteryInfo_OpenTK_Platform_JoystickHandle_OpenTK_Platform_GamepadBatteryInfo__ name: TryGetBatteryInfo(JoystickHandle, out GamepadBatteryInfo) nameWithType: IJoystickComponent.TryGetBatteryInfo(JoystickHandle, out GamepadBatteryInfo) - fullName: OpenTK.Core.Platform.IJoystickComponent.TryGetBatteryInfo(OpenTK.Core.Platform.JoystickHandle, out OpenTK.Core.Platform.GamepadBatteryInfo) + fullName: OpenTK.Platform.IJoystickComponent.TryGetBatteryInfo(OpenTK.Platform.JoystickHandle, out OpenTK.Platform.GamepadBatteryInfo) nameWithType.vb: IJoystickComponent.TryGetBatteryInfo(JoystickHandle, GamepadBatteryInfo) - fullName.vb: OpenTK.Core.Platform.IJoystickComponent.TryGetBatteryInfo(OpenTK.Core.Platform.JoystickHandle, OpenTK.Core.Platform.GamepadBatteryInfo) + fullName.vb: OpenTK.Platform.IJoystickComponent.TryGetBatteryInfo(OpenTK.Platform.JoystickHandle, OpenTK.Platform.GamepadBatteryInfo) name.vb: TryGetBatteryInfo(JoystickHandle, GamepadBatteryInfo) spec.csharp: - - uid: OpenTK.Core.Platform.IJoystickComponent.TryGetBatteryInfo(OpenTK.Core.Platform.JoystickHandle,OpenTK.Core.Platform.GamepadBatteryInfo@) + - uid: OpenTK.Platform.IJoystickComponent.TryGetBatteryInfo(OpenTK.Platform.JoystickHandle,OpenTK.Platform.GamepadBatteryInfo@) name: TryGetBatteryInfo - href: OpenTK.Core.Platform.IJoystickComponent.html#OpenTK_Core_Platform_IJoystickComponent_TryGetBatteryInfo_OpenTK_Core_Platform_JoystickHandle_OpenTK_Core_Platform_GamepadBatteryInfo__ + href: OpenTK.Platform.IJoystickComponent.html#OpenTK_Platform_IJoystickComponent_TryGetBatteryInfo_OpenTK_Platform_JoystickHandle_OpenTK_Platform_GamepadBatteryInfo__ - name: ( - - uid: OpenTK.Core.Platform.JoystickHandle + - uid: OpenTK.Platform.JoystickHandle name: JoystickHandle - href: OpenTK.Core.Platform.JoystickHandle.html + href: OpenTK.Platform.JoystickHandle.html - name: ',' - name: " " - name: out - name: " " - - uid: OpenTK.Core.Platform.GamepadBatteryInfo + - uid: OpenTK.Platform.GamepadBatteryInfo name: GamepadBatteryInfo - href: OpenTK.Core.Platform.GamepadBatteryInfo.html + href: OpenTK.Platform.GamepadBatteryInfo.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IJoystickComponent.TryGetBatteryInfo(OpenTK.Core.Platform.JoystickHandle,OpenTK.Core.Platform.GamepadBatteryInfo@) + - uid: OpenTK.Platform.IJoystickComponent.TryGetBatteryInfo(OpenTK.Platform.JoystickHandle,OpenTK.Platform.GamepadBatteryInfo@) name: TryGetBatteryInfo - href: OpenTK.Core.Platform.IJoystickComponent.html#OpenTK_Core_Platform_IJoystickComponent_TryGetBatteryInfo_OpenTK_Core_Platform_JoystickHandle_OpenTK_Core_Platform_GamepadBatteryInfo__ + href: OpenTK.Platform.IJoystickComponent.html#OpenTK_Platform_IJoystickComponent_TryGetBatteryInfo_OpenTK_Platform_JoystickHandle_OpenTK_Platform_GamepadBatteryInfo__ - name: ( - - uid: OpenTK.Core.Platform.JoystickHandle + - uid: OpenTK.Platform.JoystickHandle name: JoystickHandle - href: OpenTK.Core.Platform.JoystickHandle.html + href: OpenTK.Platform.JoystickHandle.html - name: ',' - name: " " - - uid: OpenTK.Core.Platform.GamepadBatteryInfo + - uid: OpenTK.Platform.GamepadBatteryInfo name: GamepadBatteryInfo - href: OpenTK.Core.Platform.GamepadBatteryInfo.html + href: OpenTK.Platform.GamepadBatteryInfo.html - name: ) -- uid: OpenTK.Core.Platform.GamepadBatteryInfo - commentId: T:OpenTK.Core.Platform.GamepadBatteryInfo - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.GamepadBatteryInfo.html +- uid: OpenTK.Platform.GamepadBatteryInfo + commentId: T:OpenTK.Platform.GamepadBatteryInfo + parent: OpenTK.Platform + href: OpenTK.Platform.GamepadBatteryInfo.html name: GamepadBatteryInfo nameWithType: GamepadBatteryInfo - fullName: OpenTK.Core.Platform.GamepadBatteryInfo + fullName: OpenTK.Platform.GamepadBatteryInfo diff --git a/api/OpenTK.Platform.Native.Windows.KeyboardComponent.yml b/api/OpenTK.Platform.Native.Windows.KeyboardComponent.yml index 9d18af48..ca5d24bc 100644 --- a/api/OpenTK.Platform.Native.Windows.KeyboardComponent.yml +++ b/api/OpenTK.Platform.Native.Windows.KeyboardComponent.yml @@ -5,19 +5,19 @@ items: id: KeyboardComponent parent: OpenTK.Platform.Native.Windows children: - - OpenTK.Platform.Native.Windows.KeyboardComponent.BeginIme(OpenTK.Core.Platform.WindowHandle) - - OpenTK.Platform.Native.Windows.KeyboardComponent.EndIme(OpenTK.Core.Platform.WindowHandle) - - OpenTK.Platform.Native.Windows.KeyboardComponent.GetActiveKeyboardLayout(OpenTK.Core.Platform.WindowHandle) + - OpenTK.Platform.Native.Windows.KeyboardComponent.BeginIme(OpenTK.Platform.WindowHandle) + - OpenTK.Platform.Native.Windows.KeyboardComponent.EndIme(OpenTK.Platform.WindowHandle) + - OpenTK.Platform.Native.Windows.KeyboardComponent.GetActiveKeyboardLayout(OpenTK.Platform.WindowHandle) - OpenTK.Platform.Native.Windows.KeyboardComponent.GetAvailableKeyboardLayouts - - OpenTK.Platform.Native.Windows.KeyboardComponent.GetKeyFromScancode(OpenTK.Core.Platform.Scancode) + - OpenTK.Platform.Native.Windows.KeyboardComponent.GetKeyFromScancode(OpenTK.Platform.Scancode) - OpenTK.Platform.Native.Windows.KeyboardComponent.GetKeyboardModifiers - OpenTK.Platform.Native.Windows.KeyboardComponent.GetKeyboardState(System.Boolean[]) - - OpenTK.Platform.Native.Windows.KeyboardComponent.GetScancodeFromKey(OpenTK.Core.Platform.Key) - - OpenTK.Platform.Native.Windows.KeyboardComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + - OpenTK.Platform.Native.Windows.KeyboardComponent.GetScancodeFromKey(OpenTK.Platform.Key) + - OpenTK.Platform.Native.Windows.KeyboardComponent.Initialize(OpenTK.Platform.ToolkitOptions) - OpenTK.Platform.Native.Windows.KeyboardComponent.Logger - OpenTK.Platform.Native.Windows.KeyboardComponent.Name - OpenTK.Platform.Native.Windows.KeyboardComponent.Provides - - OpenTK.Platform.Native.Windows.KeyboardComponent.SetImeRectangle(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) + - OpenTK.Platform.Native.Windows.KeyboardComponent.SetImeRectangle(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) - OpenTK.Platform.Native.Windows.KeyboardComponent.SupportsIme - OpenTK.Platform.Native.Windows.KeyboardComponent.SupportsLayouts langs: @@ -28,15 +28,11 @@ items: fullName: OpenTK.Platform.Native.Windows.KeyboardComponent type: Class source: - remote: - path: src/OpenTK.Platform.Native/Windows/KeyboardComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: KeyboardComponent - path: opentk/src/OpenTK.Platform.Native/Windows/KeyboardComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\KeyboardComponent.cs startLine: 17 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows syntax: content: 'public class KeyboardComponent : IKeyboardComponent, IPalComponent' @@ -44,8 +40,8 @@ items: inheritance: - System.Object implements: - - OpenTK.Core.Platform.IKeyboardComponent - - OpenTK.Core.Platform.IPalComponent + - OpenTK.Platform.IKeyboardComponent + - OpenTK.Platform.IPalComponent inheritedMembers: - System.Object.Equals(System.Object) - System.Object.Equals(System.Object,System.Object) @@ -66,15 +62,11 @@ items: fullName: OpenTK.Platform.Native.Windows.KeyboardComponent.Name type: Property source: - remote: - path: src/OpenTK.Platform.Native/Windows/KeyboardComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Name - path: opentk/src/OpenTK.Platform.Native/Windows/KeyboardComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\KeyboardComponent.cs startLine: 25 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: Name of the abstraction layer component. example: [] @@ -86,7 +78,7 @@ items: content.vb: Public ReadOnly Property Name As String overload: OpenTK.Platform.Native.Windows.KeyboardComponent.Name* implements: - - OpenTK.Core.Platform.IPalComponent.Name + - OpenTK.Platform.IPalComponent.Name - uid: OpenTK.Platform.Native.Windows.KeyboardComponent.Provides commentId: P:OpenTK.Platform.Native.Windows.KeyboardComponent.Provides id: Provides @@ -99,15 +91,11 @@ items: fullName: OpenTK.Platform.Native.Windows.KeyboardComponent.Provides type: Property source: - remote: - path: src/OpenTK.Platform.Native/Windows/KeyboardComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Provides - path: opentk/src/OpenTK.Platform.Native/Windows/KeyboardComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\KeyboardComponent.cs startLine: 28 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: Specifies which PAL components this object provides. example: [] @@ -115,11 +103,11 @@ items: content: public PalComponents Provides { get; } parameters: [] return: - type: OpenTK.Core.Platform.PalComponents + type: OpenTK.Platform.PalComponents content.vb: Public ReadOnly Property Provides As PalComponents overload: OpenTK.Platform.Native.Windows.KeyboardComponent.Provides* implements: - - OpenTK.Core.Platform.IPalComponent.Provides + - OpenTK.Platform.IPalComponent.Provides - uid: OpenTK.Platform.Native.Windows.KeyboardComponent.Logger commentId: P:OpenTK.Platform.Native.Windows.KeyboardComponent.Logger id: Logger @@ -132,15 +120,11 @@ items: fullName: OpenTK.Platform.Native.Windows.KeyboardComponent.Logger type: Property source: - remote: - path: src/OpenTK.Platform.Native/Windows/KeyboardComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Logger - path: opentk/src/OpenTK.Platform.Native/Windows/KeyboardComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\KeyboardComponent.cs startLine: 31 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: Provides a logger for this component. example: [] @@ -152,28 +136,24 @@ items: content.vb: Public Property Logger As ILogger overload: OpenTK.Platform.Native.Windows.KeyboardComponent.Logger* implements: - - OpenTK.Core.Platform.IPalComponent.Logger -- uid: OpenTK.Platform.Native.Windows.KeyboardComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - commentId: M:OpenTK.Platform.Native.Windows.KeyboardComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - id: Initialize(OpenTK.Core.Platform.ToolkitOptions) + - OpenTK.Platform.IPalComponent.Logger +- uid: OpenTK.Platform.Native.Windows.KeyboardComponent.Initialize(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Native.Windows.KeyboardComponent.Initialize(OpenTK.Platform.ToolkitOptions) + id: Initialize(OpenTK.Platform.ToolkitOptions) parent: OpenTK.Platform.Native.Windows.KeyboardComponent langs: - csharp - vb name: Initialize(ToolkitOptions) nameWithType: KeyboardComponent.Initialize(ToolkitOptions) - fullName: OpenTK.Platform.Native.Windows.KeyboardComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + fullName: OpenTK.Platform.Native.Windows.KeyboardComponent.Initialize(OpenTK.Platform.ToolkitOptions) type: Method source: - remote: - path: src/OpenTK.Platform.Native/Windows/KeyboardComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Initialize - path: opentk/src/OpenTK.Platform.Native/Windows/KeyboardComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\KeyboardComponent.cs startLine: 38 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: Initialize the component. example: [] @@ -181,12 +161,12 @@ items: content: public void Initialize(ToolkitOptions options) parameters: - id: options - type: OpenTK.Core.Platform.ToolkitOptions + type: OpenTK.Platform.ToolkitOptions description: The options to initialize the component with. content.vb: Public Sub Initialize(options As ToolkitOptions) overload: OpenTK.Platform.Native.Windows.KeyboardComponent.Initialize* implements: - - OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + - OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) - uid: OpenTK.Platform.Native.Windows.KeyboardComponent.SupportsLayouts commentId: P:OpenTK.Platform.Native.Windows.KeyboardComponent.SupportsLayouts id: SupportsLayouts @@ -199,15 +179,11 @@ items: fullName: OpenTK.Platform.Native.Windows.KeyboardComponent.SupportsLayouts type: Property source: - remote: - path: src/OpenTK.Platform.Native/Windows/KeyboardComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SupportsLayouts - path: opentk/src/OpenTK.Platform.Native/Windows/KeyboardComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\KeyboardComponent.cs startLine: 137 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: True if the driver supports keyboard layout functions. example: [] @@ -219,7 +195,7 @@ items: content.vb: Public ReadOnly Property SupportsLayouts As Boolean overload: OpenTK.Platform.Native.Windows.KeyboardComponent.SupportsLayouts* implements: - - OpenTK.Core.Platform.IKeyboardComponent.SupportsLayouts + - OpenTK.Platform.IKeyboardComponent.SupportsLayouts - uid: OpenTK.Platform.Native.Windows.KeyboardComponent.SupportsIme commentId: P:OpenTK.Platform.Native.Windows.KeyboardComponent.SupportsIme id: SupportsIme @@ -232,15 +208,11 @@ items: fullName: OpenTK.Platform.Native.Windows.KeyboardComponent.SupportsIme type: Property source: - remote: - path: src/OpenTK.Platform.Native/Windows/KeyboardComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SupportsIme - path: opentk/src/OpenTK.Platform.Native/Windows/KeyboardComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\KeyboardComponent.cs startLine: 140 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: True if the driver supports input method editor functions. example: [] @@ -252,28 +224,24 @@ items: content.vb: Public ReadOnly Property SupportsIme As Boolean overload: OpenTK.Platform.Native.Windows.KeyboardComponent.SupportsIme* implements: - - OpenTK.Core.Platform.IKeyboardComponent.SupportsIme -- uid: OpenTK.Platform.Native.Windows.KeyboardComponent.GetActiveKeyboardLayout(OpenTK.Core.Platform.WindowHandle) - commentId: M:OpenTK.Platform.Native.Windows.KeyboardComponent.GetActiveKeyboardLayout(OpenTK.Core.Platform.WindowHandle) - id: GetActiveKeyboardLayout(OpenTK.Core.Platform.WindowHandle) + - OpenTK.Platform.IKeyboardComponent.SupportsIme +- uid: OpenTK.Platform.Native.Windows.KeyboardComponent.GetActiveKeyboardLayout(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.Native.Windows.KeyboardComponent.GetActiveKeyboardLayout(OpenTK.Platform.WindowHandle) + id: GetActiveKeyboardLayout(OpenTK.Platform.WindowHandle) parent: OpenTK.Platform.Native.Windows.KeyboardComponent langs: - csharp - vb name: GetActiveKeyboardLayout(WindowHandle?) nameWithType: KeyboardComponent.GetActiveKeyboardLayout(WindowHandle?) - fullName: OpenTK.Platform.Native.Windows.KeyboardComponent.GetActiveKeyboardLayout(OpenTK.Core.Platform.WindowHandle?) + fullName: OpenTK.Platform.Native.Windows.KeyboardComponent.GetActiveKeyboardLayout(OpenTK.Platform.WindowHandle?) type: Method source: - remote: - path: src/OpenTK.Platform.Native/Windows/KeyboardComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetActiveKeyboardLayout - path: opentk/src/OpenTK.Platform.Native/Windows/KeyboardComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\KeyboardComponent.cs startLine: 211 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: Get the active keyboard layout. example: [] @@ -281,7 +249,7 @@ items: content: public string GetActiveKeyboardLayout(WindowHandle? handle = null) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: (optional) Handle to a window to query the layout for. Ignored on systems where keyboard layout is global. return: type: System.String @@ -289,13 +257,13 @@ items: content.vb: Public Function GetActiveKeyboardLayout(handle As WindowHandle = Nothing) As String overload: OpenTK.Platform.Native.Windows.KeyboardComponent.GetActiveKeyboardLayout* exceptions: - - type: OpenTK.Core.Platform.PalNotImplementedException - commentId: T:OpenTK.Core.Platform.PalNotImplementedException + - type: OpenTK.Platform.PalNotImplementedException + commentId: T:OpenTK.Platform.PalNotImplementedException description: Driver cannot query active keyboard layout. implements: - - OpenTK.Core.Platform.IKeyboardComponent.GetActiveKeyboardLayout(OpenTK.Core.Platform.WindowHandle) + - OpenTK.Platform.IKeyboardComponent.GetActiveKeyboardLayout(OpenTK.Platform.WindowHandle) nameWithType.vb: KeyboardComponent.GetActiveKeyboardLayout(WindowHandle) - fullName.vb: OpenTK.Platform.Native.Windows.KeyboardComponent.GetActiveKeyboardLayout(OpenTK.Core.Platform.WindowHandle) + fullName.vb: OpenTK.Platform.Native.Windows.KeyboardComponent.GetActiveKeyboardLayout(OpenTK.Platform.WindowHandle) name.vb: GetActiveKeyboardLayout(WindowHandle) - uid: OpenTK.Platform.Native.Windows.KeyboardComponent.GetAvailableKeyboardLayouts commentId: M:OpenTK.Platform.Native.Windows.KeyboardComponent.GetAvailableKeyboardLayouts @@ -309,15 +277,11 @@ items: fullName: OpenTK.Platform.Native.Windows.KeyboardComponent.GetAvailableKeyboardLayouts() type: Method source: - remote: - path: src/OpenTK.Platform.Native/Windows/KeyboardComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetAvailableKeyboardLayouts - path: opentk/src/OpenTK.Platform.Native/Windows/KeyboardComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\KeyboardComponent.cs startLine: 226 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: See list of possible keyboard layouts for this system. remarks: This function is expensive and should be cached if possible. @@ -330,31 +294,27 @@ items: content.vb: Public Function GetAvailableKeyboardLayouts() As String() overload: OpenTK.Platform.Native.Windows.KeyboardComponent.GetAvailableKeyboardLayouts* implements: - - OpenTK.Core.Platform.IKeyboardComponent.GetAvailableKeyboardLayouts -- uid: OpenTK.Platform.Native.Windows.KeyboardComponent.GetScancodeFromKey(OpenTK.Core.Platform.Key) - commentId: M:OpenTK.Platform.Native.Windows.KeyboardComponent.GetScancodeFromKey(OpenTK.Core.Platform.Key) - id: GetScancodeFromKey(OpenTK.Core.Platform.Key) + - OpenTK.Platform.IKeyboardComponent.GetAvailableKeyboardLayouts +- uid: OpenTK.Platform.Native.Windows.KeyboardComponent.GetScancodeFromKey(OpenTK.Platform.Key) + commentId: M:OpenTK.Platform.Native.Windows.KeyboardComponent.GetScancodeFromKey(OpenTK.Platform.Key) + id: GetScancodeFromKey(OpenTK.Platform.Key) parent: OpenTK.Platform.Native.Windows.KeyboardComponent langs: - csharp - vb name: GetScancodeFromKey(Key) nameWithType: KeyboardComponent.GetScancodeFromKey(Key) - fullName: OpenTK.Platform.Native.Windows.KeyboardComponent.GetScancodeFromKey(OpenTK.Core.Platform.Key) + fullName: OpenTK.Platform.Native.Windows.KeyboardComponent.GetScancodeFromKey(OpenTK.Platform.Key) type: Method source: - remote: - path: src/OpenTK.Platform.Native/Windows/KeyboardComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetScancodeFromKey - path: opentk/src/OpenTK.Platform.Native/Windows/KeyboardComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\KeyboardComponent.cs startLine: 257 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: >- - Gets the associated with the specified . + Gets the associated with the specified . The Key to Scancode mapping is not 1 to 1, multiple scancodes can produce the same key. @@ -366,42 +326,38 @@ items: content: public Scancode GetScancodeFromKey(Key key) parameters: - id: key - type: OpenTK.Core.Platform.Key + type: OpenTK.Platform.Key description: The key. return: - type: OpenTK.Core.Platform.Scancode + type: OpenTK.Platform.Scancode description: >- - The that produces the + The that produces the - or if no scancode produces the key. + or if no scancode produces the key. content.vb: Public Function GetScancodeFromKey(key As Key) As Scancode overload: OpenTK.Platform.Native.Windows.KeyboardComponent.GetScancodeFromKey* implements: - - OpenTK.Core.Platform.IKeyboardComponent.GetScancodeFromKey(OpenTK.Core.Platform.Key) -- uid: OpenTK.Platform.Native.Windows.KeyboardComponent.GetKeyFromScancode(OpenTK.Core.Platform.Scancode) - commentId: M:OpenTK.Platform.Native.Windows.KeyboardComponent.GetKeyFromScancode(OpenTK.Core.Platform.Scancode) - id: GetKeyFromScancode(OpenTK.Core.Platform.Scancode) + - OpenTK.Platform.IKeyboardComponent.GetScancodeFromKey(OpenTK.Platform.Key) +- uid: OpenTK.Platform.Native.Windows.KeyboardComponent.GetKeyFromScancode(OpenTK.Platform.Scancode) + commentId: M:OpenTK.Platform.Native.Windows.KeyboardComponent.GetKeyFromScancode(OpenTK.Platform.Scancode) + id: GetKeyFromScancode(OpenTK.Platform.Scancode) parent: OpenTK.Platform.Native.Windows.KeyboardComponent langs: - csharp - vb name: GetKeyFromScancode(Scancode) nameWithType: KeyboardComponent.GetKeyFromScancode(Scancode) - fullName: OpenTK.Platform.Native.Windows.KeyboardComponent.GetKeyFromScancode(OpenTK.Core.Platform.Scancode) + fullName: OpenTK.Platform.Native.Windows.KeyboardComponent.GetKeyFromScancode(OpenTK.Platform.Scancode) type: Method source: - remote: - path: src/OpenTK.Platform.Native/Windows/KeyboardComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetKeyFromScancode - path: opentk/src/OpenTK.Platform.Native/Windows/KeyboardComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\KeyboardComponent.cs startLine: 264 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: >- - Gets the associated with the specidied . + Gets the associated with the specidied . This function uses the current keyboard layout to determine the mapping. example: [] @@ -409,18 +365,18 @@ items: content: public Key GetKeyFromScancode(Scancode scancode) parameters: - id: scancode - type: OpenTK.Core.Platform.Scancode + type: OpenTK.Platform.Scancode description: The scancode. return: - type: OpenTK.Core.Platform.Key + type: OpenTK.Platform.Key description: >- - The associated with the + The associated with the - or if the scancode can't be mapped to a key. + or if the scancode can't be mapped to a key. content.vb: Public Function GetKeyFromScancode(scancode As Scancode) As Key overload: OpenTK.Platform.Native.Windows.KeyboardComponent.GetKeyFromScancode* implements: - - OpenTK.Core.Platform.IKeyboardComponent.GetKeyFromScancode(OpenTK.Core.Platform.Scancode) + - OpenTK.Platform.IKeyboardComponent.GetKeyFromScancode(OpenTK.Platform.Scancode) - uid: OpenTK.Platform.Native.Windows.KeyboardComponent.GetKeyboardState(System.Boolean[]) commentId: M:OpenTK.Platform.Native.Windows.KeyboardComponent.GetKeyboardState(System.Boolean[]) id: GetKeyboardState(System.Boolean[]) @@ -433,22 +389,18 @@ items: fullName: OpenTK.Platform.Native.Windows.KeyboardComponent.GetKeyboardState(bool[]) type: Method source: - remote: - path: src/OpenTK.Platform.Native/Windows/KeyboardComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetKeyboardState - path: opentk/src/OpenTK.Platform.Native/Windows/KeyboardComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\KeyboardComponent.cs startLine: 270 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: >- Copies the current state of the keyboard into the specified array. - This array should be indexed using values. + This array should be indexed using values. - The length of this array should be an array able to hold all possible values. + The length of this array should be an array able to hold all possible values. example: [] syntax: content: public void GetKeyboardState(bool[] keyboardState) @@ -459,7 +411,7 @@ items: content.vb: Public Sub GetKeyboardState(keyboardState As Boolean()) overload: OpenTK.Platform.Native.Windows.KeyboardComponent.GetKeyboardState* implements: - - OpenTK.Core.Platform.IKeyboardComponent.GetKeyboardState(System.Boolean[]) + - OpenTK.Platform.IKeyboardComponent.GetKeyboardState(System.Boolean[]) nameWithType.vb: KeyboardComponent.GetKeyboardState(Boolean()) fullName.vb: OpenTK.Platform.Native.Windows.KeyboardComponent.GetKeyboardState(Boolean()) name.vb: GetKeyboardState(Boolean()) @@ -475,48 +427,40 @@ items: fullName: OpenTK.Platform.Native.Windows.KeyboardComponent.GetKeyboardModifiers() type: Method source: - remote: - path: src/OpenTK.Platform.Native/Windows/KeyboardComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetKeyboardModifiers - path: opentk/src/OpenTK.Platform.Native/Windows/KeyboardComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\KeyboardComponent.cs startLine: 319 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: Gets the current keyboard modifiers. example: [] syntax: content: public KeyModifier GetKeyboardModifiers() return: - type: OpenTK.Core.Platform.KeyModifier + type: OpenTK.Platform.KeyModifier description: The current keyboard modifiers. content.vb: Public Function GetKeyboardModifiers() As KeyModifier overload: OpenTK.Platform.Native.Windows.KeyboardComponent.GetKeyboardModifiers* implements: - - OpenTK.Core.Platform.IKeyboardComponent.GetKeyboardModifiers -- uid: OpenTK.Platform.Native.Windows.KeyboardComponent.BeginIme(OpenTK.Core.Platform.WindowHandle) - commentId: M:OpenTK.Platform.Native.Windows.KeyboardComponent.BeginIme(OpenTK.Core.Platform.WindowHandle) - id: BeginIme(OpenTK.Core.Platform.WindowHandle) + - OpenTK.Platform.IKeyboardComponent.GetKeyboardModifiers +- uid: OpenTK.Platform.Native.Windows.KeyboardComponent.BeginIme(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.Native.Windows.KeyboardComponent.BeginIme(OpenTK.Platform.WindowHandle) + id: BeginIme(OpenTK.Platform.WindowHandle) parent: OpenTK.Platform.Native.Windows.KeyboardComponent langs: - csharp - vb name: BeginIme(WindowHandle) nameWithType: KeyboardComponent.BeginIme(WindowHandle) - fullName: OpenTK.Platform.Native.Windows.KeyboardComponent.BeginIme(OpenTK.Core.Platform.WindowHandle) + fullName: OpenTK.Platform.Native.Windows.KeyboardComponent.BeginIme(OpenTK.Platform.WindowHandle) type: Method source: - remote: - path: src/OpenTK.Platform.Native/Windows/KeyboardComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: BeginIme - path: opentk/src/OpenTK.Platform.Native/Windows/KeyboardComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\KeyboardComponent.cs startLine: 327 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: Invoke input method editor. example: [] @@ -524,33 +468,29 @@ items: content: public void BeginIme(WindowHandle window) parameters: - id: window - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: The window corresponding to this IME window. content.vb: Public Sub BeginIme(window As WindowHandle) overload: OpenTK.Platform.Native.Windows.KeyboardComponent.BeginIme* implements: - - OpenTK.Core.Platform.IKeyboardComponent.BeginIme(OpenTK.Core.Platform.WindowHandle) -- uid: OpenTK.Platform.Native.Windows.KeyboardComponent.SetImeRectangle(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) - commentId: M:OpenTK.Platform.Native.Windows.KeyboardComponent.SetImeRectangle(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) - id: SetImeRectangle(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) + - OpenTK.Platform.IKeyboardComponent.BeginIme(OpenTK.Platform.WindowHandle) +- uid: OpenTK.Platform.Native.Windows.KeyboardComponent.SetImeRectangle(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) + commentId: M:OpenTK.Platform.Native.Windows.KeyboardComponent.SetImeRectangle(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) + id: SetImeRectangle(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) parent: OpenTK.Platform.Native.Windows.KeyboardComponent langs: - csharp - vb name: SetImeRectangle(WindowHandle, int, int, int, int) nameWithType: KeyboardComponent.SetImeRectangle(WindowHandle, int, int, int, int) - fullName: OpenTK.Platform.Native.Windows.KeyboardComponent.SetImeRectangle(OpenTK.Core.Platform.WindowHandle, int, int, int, int) + fullName: OpenTK.Platform.Native.Windows.KeyboardComponent.SetImeRectangle(OpenTK.Platform.WindowHandle, int, int, int, int) type: Method source: - remote: - path: src/OpenTK.Platform.Native/Windows/KeyboardComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetImeRectangle - path: opentk/src/OpenTK.Platform.Native/Windows/KeyboardComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\KeyboardComponent.cs startLine: 339 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: Set the rectangle to which the IME interface will appear relative to. example: [] @@ -558,7 +498,7 @@ items: content: public void SetImeRectangle(WindowHandle window, int x, int y, int width, int height) parameters: - id: window - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: The window corresponding to this IME window. - id: x type: System.Int32 @@ -575,31 +515,27 @@ items: content.vb: Public Sub SetImeRectangle(window As WindowHandle, x As Integer, y As Integer, width As Integer, height As Integer) overload: OpenTK.Platform.Native.Windows.KeyboardComponent.SetImeRectangle* implements: - - OpenTK.Core.Platform.IKeyboardComponent.SetImeRectangle(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) + - OpenTK.Platform.IKeyboardComponent.SetImeRectangle(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) nameWithType.vb: KeyboardComponent.SetImeRectangle(WindowHandle, Integer, Integer, Integer, Integer) - fullName.vb: OpenTK.Platform.Native.Windows.KeyboardComponent.SetImeRectangle(OpenTK.Core.Platform.WindowHandle, Integer, Integer, Integer, Integer) + fullName.vb: OpenTK.Platform.Native.Windows.KeyboardComponent.SetImeRectangle(OpenTK.Platform.WindowHandle, Integer, Integer, Integer, Integer) name.vb: SetImeRectangle(WindowHandle, Integer, Integer, Integer, Integer) -- uid: OpenTK.Platform.Native.Windows.KeyboardComponent.EndIme(OpenTK.Core.Platform.WindowHandle) - commentId: M:OpenTK.Platform.Native.Windows.KeyboardComponent.EndIme(OpenTK.Core.Platform.WindowHandle) - id: EndIme(OpenTK.Core.Platform.WindowHandle) +- uid: OpenTK.Platform.Native.Windows.KeyboardComponent.EndIme(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.Native.Windows.KeyboardComponent.EndIme(OpenTK.Platform.WindowHandle) + id: EndIme(OpenTK.Platform.WindowHandle) parent: OpenTK.Platform.Native.Windows.KeyboardComponent langs: - csharp - vb name: EndIme(WindowHandle) nameWithType: KeyboardComponent.EndIme(WindowHandle) - fullName: OpenTK.Platform.Native.Windows.KeyboardComponent.EndIme(OpenTK.Core.Platform.WindowHandle) + fullName: OpenTK.Platform.Native.Windows.KeyboardComponent.EndIme(OpenTK.Platform.WindowHandle) type: Method source: - remote: - path: src/OpenTK.Platform.Native/Windows/KeyboardComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: EndIme - path: opentk/src/OpenTK.Platform.Native/Windows/KeyboardComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\KeyboardComponent.cs startLine: 360 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: Finish input method editor. example: [] @@ -607,12 +543,12 @@ items: content: public void EndIme(WindowHandle window) parameters: - id: window - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: The window corresponding to this IME window. content.vb: Public Sub EndIme(window As WindowHandle) overload: OpenTK.Platform.Native.Windows.KeyboardComponent.EndIme* implements: - - OpenTK.Core.Platform.IKeyboardComponent.EndIme(OpenTK.Core.Platform.WindowHandle) + - OpenTK.Platform.IKeyboardComponent.EndIme(OpenTK.Platform.WindowHandle) references: - uid: OpenTK.Platform.Native.Windows commentId: N:OpenTK.Platform.Native.Windows @@ -663,20 +599,20 @@ references: nameWithType.vb: Object fullName.vb: Object name.vb: Object -- uid: OpenTK.Core.Platform.IKeyboardComponent - commentId: T:OpenTK.Core.Platform.IKeyboardComponent - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.IKeyboardComponent.html +- uid: OpenTK.Platform.IKeyboardComponent + commentId: T:OpenTK.Platform.IKeyboardComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IKeyboardComponent.html name: IKeyboardComponent nameWithType: IKeyboardComponent - fullName: OpenTK.Core.Platform.IKeyboardComponent -- uid: OpenTK.Core.Platform.IPalComponent - commentId: T:OpenTK.Core.Platform.IPalComponent - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.IPalComponent.html + fullName: OpenTK.Platform.IKeyboardComponent +- uid: OpenTK.Platform.IPalComponent + commentId: T:OpenTK.Platform.IPalComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IPalComponent.html name: IPalComponent nameWithType: IPalComponent - fullName: OpenTK.Core.Platform.IPalComponent + fullName: OpenTK.Platform.IPalComponent - uid: System.Object.Equals(System.Object) commentId: M:System.Object.Equals(System.Object) parent: System.Object @@ -903,49 +839,41 @@ references: name: System nameWithType: System fullName: System -- uid: OpenTK.Core.Platform - commentId: N:OpenTK.Core.Platform +- uid: OpenTK.Platform + commentId: N:OpenTK.Platform href: OpenTK.html - name: OpenTK.Core.Platform - nameWithType: OpenTK.Core.Platform - fullName: OpenTK.Core.Platform + name: OpenTK.Platform + nameWithType: OpenTK.Platform + fullName: OpenTK.Platform spec.csharp: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html spec.vb: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html - uid: OpenTK.Platform.Native.Windows.KeyboardComponent.Name* commentId: Overload:OpenTK.Platform.Native.Windows.KeyboardComponent.Name href: OpenTK.Platform.Native.Windows.KeyboardComponent.html#OpenTK_Platform_Native_Windows_KeyboardComponent_Name name: Name nameWithType: KeyboardComponent.Name fullName: OpenTK.Platform.Native.Windows.KeyboardComponent.Name -- uid: OpenTK.Core.Platform.IPalComponent.Name - commentId: P:OpenTK.Core.Platform.IPalComponent.Name - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Name +- uid: OpenTK.Platform.IPalComponent.Name + commentId: P:OpenTK.Platform.IPalComponent.Name + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Name name: Name nameWithType: IPalComponent.Name - fullName: OpenTK.Core.Platform.IPalComponent.Name + fullName: OpenTK.Platform.IPalComponent.Name - uid: System.String commentId: T:System.String parent: System @@ -963,33 +891,33 @@ references: name: Provides nameWithType: KeyboardComponent.Provides fullName: OpenTK.Platform.Native.Windows.KeyboardComponent.Provides -- uid: OpenTK.Core.Platform.IPalComponent.Provides - commentId: P:OpenTK.Core.Platform.IPalComponent.Provides - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Provides +- uid: OpenTK.Platform.IPalComponent.Provides + commentId: P:OpenTK.Platform.IPalComponent.Provides + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Provides name: Provides nameWithType: IPalComponent.Provides - fullName: OpenTK.Core.Platform.IPalComponent.Provides -- uid: OpenTK.Core.Platform.PalComponents - commentId: T:OpenTK.Core.Platform.PalComponents - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.PalComponents.html + fullName: OpenTK.Platform.IPalComponent.Provides +- uid: OpenTK.Platform.PalComponents + commentId: T:OpenTK.Platform.PalComponents + parent: OpenTK.Platform + href: OpenTK.Platform.PalComponents.html name: PalComponents nameWithType: PalComponents - fullName: OpenTK.Core.Platform.PalComponents + fullName: OpenTK.Platform.PalComponents - uid: OpenTK.Platform.Native.Windows.KeyboardComponent.Logger* commentId: Overload:OpenTK.Platform.Native.Windows.KeyboardComponent.Logger href: OpenTK.Platform.Native.Windows.KeyboardComponent.html#OpenTK_Platform_Native_Windows_KeyboardComponent_Logger name: Logger nameWithType: KeyboardComponent.Logger fullName: OpenTK.Platform.Native.Windows.KeyboardComponent.Logger -- uid: OpenTK.Core.Platform.IPalComponent.Logger - commentId: P:OpenTK.Core.Platform.IPalComponent.Logger - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Logger +- uid: OpenTK.Platform.IPalComponent.Logger + commentId: P:OpenTK.Platform.IPalComponent.Logger + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Logger name: Logger nameWithType: IPalComponent.Logger - fullName: OpenTK.Core.Platform.IPalComponent.Logger + fullName: OpenTK.Platform.IPalComponent.Logger - uid: OpenTK.Core.Utility.ILogger commentId: T:OpenTK.Core.Utility.ILogger parent: OpenTK.Core.Utility @@ -1029,55 +957,55 @@ references: href: OpenTK.Core.Utility.html - uid: OpenTK.Platform.Native.Windows.KeyboardComponent.Initialize* commentId: Overload:OpenTK.Platform.Native.Windows.KeyboardComponent.Initialize - href: OpenTK.Platform.Native.Windows.KeyboardComponent.html#OpenTK_Platform_Native_Windows_KeyboardComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + href: OpenTK.Platform.Native.Windows.KeyboardComponent.html#OpenTK_Platform_Native_Windows_KeyboardComponent_Initialize_OpenTK_Platform_ToolkitOptions_ name: Initialize nameWithType: KeyboardComponent.Initialize fullName: OpenTK.Platform.Native.Windows.KeyboardComponent.Initialize -- uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - commentId: M:OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ +- uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ name: Initialize(ToolkitOptions) nameWithType: IPalComponent.Initialize(ToolkitOptions) - fullName: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + fullName: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) spec.csharp: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + - uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.ToolkitOptions + - uid: OpenTK.Platform.ToolkitOptions name: ToolkitOptions - href: OpenTK.Core.Platform.ToolkitOptions.html + href: OpenTK.Platform.ToolkitOptions.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + - uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.ToolkitOptions + - uid: OpenTK.Platform.ToolkitOptions name: ToolkitOptions - href: OpenTK.Core.Platform.ToolkitOptions.html + href: OpenTK.Platform.ToolkitOptions.html - name: ) -- uid: OpenTK.Core.Platform.ToolkitOptions - commentId: T:OpenTK.Core.Platform.ToolkitOptions - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.ToolkitOptions.html +- uid: OpenTK.Platform.ToolkitOptions + commentId: T:OpenTK.Platform.ToolkitOptions + parent: OpenTK.Platform + href: OpenTK.Platform.ToolkitOptions.html name: ToolkitOptions nameWithType: ToolkitOptions - fullName: OpenTK.Core.Platform.ToolkitOptions + fullName: OpenTK.Platform.ToolkitOptions - uid: OpenTK.Platform.Native.Windows.KeyboardComponent.SupportsLayouts* commentId: Overload:OpenTK.Platform.Native.Windows.KeyboardComponent.SupportsLayouts href: OpenTK.Platform.Native.Windows.KeyboardComponent.html#OpenTK_Platform_Native_Windows_KeyboardComponent_SupportsLayouts name: SupportsLayouts nameWithType: KeyboardComponent.SupportsLayouts fullName: OpenTK.Platform.Native.Windows.KeyboardComponent.SupportsLayouts -- uid: OpenTK.Core.Platform.IKeyboardComponent.SupportsLayouts - commentId: P:OpenTK.Core.Platform.IKeyboardComponent.SupportsLayouts - parent: OpenTK.Core.Platform.IKeyboardComponent - href: OpenTK.Core.Platform.IKeyboardComponent.html#OpenTK_Core_Platform_IKeyboardComponent_SupportsLayouts +- uid: OpenTK.Platform.IKeyboardComponent.SupportsLayouts + commentId: P:OpenTK.Platform.IKeyboardComponent.SupportsLayouts + parent: OpenTK.Platform.IKeyboardComponent + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_SupportsLayouts name: SupportsLayouts nameWithType: IKeyboardComponent.SupportsLayouts - fullName: OpenTK.Core.Platform.IKeyboardComponent.SupportsLayouts + fullName: OpenTK.Platform.IKeyboardComponent.SupportsLayouts - uid: System.Boolean commentId: T:System.Boolean parent: System @@ -1095,80 +1023,80 @@ references: name: SupportsIme nameWithType: KeyboardComponent.SupportsIme fullName: OpenTK.Platform.Native.Windows.KeyboardComponent.SupportsIme -- uid: OpenTK.Core.Platform.IKeyboardComponent.SupportsIme - commentId: P:OpenTK.Core.Platform.IKeyboardComponent.SupportsIme - parent: OpenTK.Core.Platform.IKeyboardComponent - href: OpenTK.Core.Platform.IKeyboardComponent.html#OpenTK_Core_Platform_IKeyboardComponent_SupportsIme +- uid: OpenTK.Platform.IKeyboardComponent.SupportsIme + commentId: P:OpenTK.Platform.IKeyboardComponent.SupportsIme + parent: OpenTK.Platform.IKeyboardComponent + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_SupportsIme name: SupportsIme nameWithType: IKeyboardComponent.SupportsIme - fullName: OpenTK.Core.Platform.IKeyboardComponent.SupportsIme -- uid: OpenTK.Core.Platform.PalNotImplementedException - commentId: T:OpenTK.Core.Platform.PalNotImplementedException - href: OpenTK.Core.Platform.PalNotImplementedException.html + fullName: OpenTK.Platform.IKeyboardComponent.SupportsIme +- uid: OpenTK.Platform.PalNotImplementedException + commentId: T:OpenTK.Platform.PalNotImplementedException + href: OpenTK.Platform.PalNotImplementedException.html name: PalNotImplementedException nameWithType: PalNotImplementedException - fullName: OpenTK.Core.Platform.PalNotImplementedException + fullName: OpenTK.Platform.PalNotImplementedException - uid: OpenTK.Platform.Native.Windows.KeyboardComponent.GetActiveKeyboardLayout* commentId: Overload:OpenTK.Platform.Native.Windows.KeyboardComponent.GetActiveKeyboardLayout - href: OpenTK.Platform.Native.Windows.KeyboardComponent.html#OpenTK_Platform_Native_Windows_KeyboardComponent_GetActiveKeyboardLayout_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.Native.Windows.KeyboardComponent.html#OpenTK_Platform_Native_Windows_KeyboardComponent_GetActiveKeyboardLayout_OpenTK_Platform_WindowHandle_ name: GetActiveKeyboardLayout nameWithType: KeyboardComponent.GetActiveKeyboardLayout fullName: OpenTK.Platform.Native.Windows.KeyboardComponent.GetActiveKeyboardLayout -- uid: OpenTK.Core.Platform.IKeyboardComponent.GetActiveKeyboardLayout(OpenTK.Core.Platform.WindowHandle) - commentId: M:OpenTK.Core.Platform.IKeyboardComponent.GetActiveKeyboardLayout(OpenTK.Core.Platform.WindowHandle) - parent: OpenTK.Core.Platform.IKeyboardComponent - href: OpenTK.Core.Platform.IKeyboardComponent.html#OpenTK_Core_Platform_IKeyboardComponent_GetActiveKeyboardLayout_OpenTK_Core_Platform_WindowHandle_ +- uid: OpenTK.Platform.IKeyboardComponent.GetActiveKeyboardLayout(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IKeyboardComponent.GetActiveKeyboardLayout(OpenTK.Platform.WindowHandle) + parent: OpenTK.Platform.IKeyboardComponent + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_GetActiveKeyboardLayout_OpenTK_Platform_WindowHandle_ name: GetActiveKeyboardLayout(WindowHandle) nameWithType: IKeyboardComponent.GetActiveKeyboardLayout(WindowHandle) - fullName: OpenTK.Core.Platform.IKeyboardComponent.GetActiveKeyboardLayout(OpenTK.Core.Platform.WindowHandle) + fullName: OpenTK.Platform.IKeyboardComponent.GetActiveKeyboardLayout(OpenTK.Platform.WindowHandle) spec.csharp: - - uid: OpenTK.Core.Platform.IKeyboardComponent.GetActiveKeyboardLayout(OpenTK.Core.Platform.WindowHandle) + - uid: OpenTK.Platform.IKeyboardComponent.GetActiveKeyboardLayout(OpenTK.Platform.WindowHandle) name: GetActiveKeyboardLayout - href: OpenTK.Core.Platform.IKeyboardComponent.html#OpenTK_Core_Platform_IKeyboardComponent_GetActiveKeyboardLayout_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_GetActiveKeyboardLayout_OpenTK_Platform_WindowHandle_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IKeyboardComponent.GetActiveKeyboardLayout(OpenTK.Core.Platform.WindowHandle) + - uid: OpenTK.Platform.IKeyboardComponent.GetActiveKeyboardLayout(OpenTK.Platform.WindowHandle) name: GetActiveKeyboardLayout - href: OpenTK.Core.Platform.IKeyboardComponent.html#OpenTK_Core_Platform_IKeyboardComponent_GetActiveKeyboardLayout_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_GetActiveKeyboardLayout_OpenTK_Platform_WindowHandle_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ) -- uid: OpenTK.Core.Platform.WindowHandle - commentId: T:OpenTK.Core.Platform.WindowHandle - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.WindowHandle.html +- uid: OpenTK.Platform.WindowHandle + commentId: T:OpenTK.Platform.WindowHandle + parent: OpenTK.Platform + href: OpenTK.Platform.WindowHandle.html name: WindowHandle nameWithType: WindowHandle - fullName: OpenTK.Core.Platform.WindowHandle + fullName: OpenTK.Platform.WindowHandle - uid: OpenTK.Platform.Native.Windows.KeyboardComponent.GetAvailableKeyboardLayouts* commentId: Overload:OpenTK.Platform.Native.Windows.KeyboardComponent.GetAvailableKeyboardLayouts href: OpenTK.Platform.Native.Windows.KeyboardComponent.html#OpenTK_Platform_Native_Windows_KeyboardComponent_GetAvailableKeyboardLayouts name: GetAvailableKeyboardLayouts nameWithType: KeyboardComponent.GetAvailableKeyboardLayouts fullName: OpenTK.Platform.Native.Windows.KeyboardComponent.GetAvailableKeyboardLayouts -- uid: OpenTK.Core.Platform.IKeyboardComponent.GetAvailableKeyboardLayouts - commentId: M:OpenTK.Core.Platform.IKeyboardComponent.GetAvailableKeyboardLayouts - parent: OpenTK.Core.Platform.IKeyboardComponent - href: OpenTK.Core.Platform.IKeyboardComponent.html#OpenTK_Core_Platform_IKeyboardComponent_GetAvailableKeyboardLayouts +- uid: OpenTK.Platform.IKeyboardComponent.GetAvailableKeyboardLayouts + commentId: M:OpenTK.Platform.IKeyboardComponent.GetAvailableKeyboardLayouts + parent: OpenTK.Platform.IKeyboardComponent + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_GetAvailableKeyboardLayouts name: GetAvailableKeyboardLayouts() nameWithType: IKeyboardComponent.GetAvailableKeyboardLayouts() - fullName: OpenTK.Core.Platform.IKeyboardComponent.GetAvailableKeyboardLayouts() + fullName: OpenTK.Platform.IKeyboardComponent.GetAvailableKeyboardLayouts() spec.csharp: - - uid: OpenTK.Core.Platform.IKeyboardComponent.GetAvailableKeyboardLayouts + - uid: OpenTK.Platform.IKeyboardComponent.GetAvailableKeyboardLayouts name: GetAvailableKeyboardLayouts - href: OpenTK.Core.Platform.IKeyboardComponent.html#OpenTK_Core_Platform_IKeyboardComponent_GetAvailableKeyboardLayouts + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_GetAvailableKeyboardLayouts - name: ( - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IKeyboardComponent.GetAvailableKeyboardLayouts + - uid: OpenTK.Platform.IKeyboardComponent.GetAvailableKeyboardLayouts name: GetAvailableKeyboardLayouts - href: OpenTK.Core.Platform.IKeyboardComponent.html#OpenTK_Core_Platform_IKeyboardComponent_GetAvailableKeyboardLayouts + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_GetAvailableKeyboardLayouts - name: ( - name: ) - uid: System.String[] @@ -1194,93 +1122,93 @@ references: href: https://learn.microsoft.com/dotnet/api/system.string - name: ( - name: ) -- uid: OpenTK.Core.Platform.Scancode - commentId: T:OpenTK.Core.Platform.Scancode - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.Scancode.html +- uid: OpenTK.Platform.Scancode + commentId: T:OpenTK.Platform.Scancode + parent: OpenTK.Platform + href: OpenTK.Platform.Scancode.html name: Scancode nameWithType: Scancode - fullName: OpenTK.Core.Platform.Scancode -- uid: OpenTK.Core.Platform.Key - commentId: T:OpenTK.Core.Platform.Key - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.Key.html + fullName: OpenTK.Platform.Scancode +- uid: OpenTK.Platform.Key + commentId: T:OpenTK.Platform.Key + parent: OpenTK.Platform + href: OpenTK.Platform.Key.html name: Key nameWithType: Key - fullName: OpenTK.Core.Platform.Key -- uid: OpenTK.Core.Platform.Scancode.Unknown - commentId: F:OpenTK.Core.Platform.Scancode.Unknown - href: OpenTK.Core.Platform.Scancode.html#OpenTK_Core_Platform_Scancode_Unknown + fullName: OpenTK.Platform.Key +- uid: OpenTK.Platform.Scancode.Unknown + commentId: F:OpenTK.Platform.Scancode.Unknown + href: OpenTK.Platform.Scancode.html#OpenTK_Platform_Scancode_Unknown name: Unknown nameWithType: Scancode.Unknown - fullName: OpenTK.Core.Platform.Scancode.Unknown + fullName: OpenTK.Platform.Scancode.Unknown - uid: OpenTK.Platform.Native.Windows.KeyboardComponent.GetScancodeFromKey* commentId: Overload:OpenTK.Platform.Native.Windows.KeyboardComponent.GetScancodeFromKey - href: OpenTK.Platform.Native.Windows.KeyboardComponent.html#OpenTK_Platform_Native_Windows_KeyboardComponent_GetScancodeFromKey_OpenTK_Core_Platform_Key_ + href: OpenTK.Platform.Native.Windows.KeyboardComponent.html#OpenTK_Platform_Native_Windows_KeyboardComponent_GetScancodeFromKey_OpenTK_Platform_Key_ name: GetScancodeFromKey nameWithType: KeyboardComponent.GetScancodeFromKey fullName: OpenTK.Platform.Native.Windows.KeyboardComponent.GetScancodeFromKey -- uid: OpenTK.Core.Platform.IKeyboardComponent.GetScancodeFromKey(OpenTK.Core.Platform.Key) - commentId: M:OpenTK.Core.Platform.IKeyboardComponent.GetScancodeFromKey(OpenTK.Core.Platform.Key) - parent: OpenTK.Core.Platform.IKeyboardComponent - href: OpenTK.Core.Platform.IKeyboardComponent.html#OpenTK_Core_Platform_IKeyboardComponent_GetScancodeFromKey_OpenTK_Core_Platform_Key_ +- uid: OpenTK.Platform.IKeyboardComponent.GetScancodeFromKey(OpenTK.Platform.Key) + commentId: M:OpenTK.Platform.IKeyboardComponent.GetScancodeFromKey(OpenTK.Platform.Key) + parent: OpenTK.Platform.IKeyboardComponent + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_GetScancodeFromKey_OpenTK_Platform_Key_ name: GetScancodeFromKey(Key) nameWithType: IKeyboardComponent.GetScancodeFromKey(Key) - fullName: OpenTK.Core.Platform.IKeyboardComponent.GetScancodeFromKey(OpenTK.Core.Platform.Key) + fullName: OpenTK.Platform.IKeyboardComponent.GetScancodeFromKey(OpenTK.Platform.Key) spec.csharp: - - uid: OpenTK.Core.Platform.IKeyboardComponent.GetScancodeFromKey(OpenTK.Core.Platform.Key) + - uid: OpenTK.Platform.IKeyboardComponent.GetScancodeFromKey(OpenTK.Platform.Key) name: GetScancodeFromKey - href: OpenTK.Core.Platform.IKeyboardComponent.html#OpenTK_Core_Platform_IKeyboardComponent_GetScancodeFromKey_OpenTK_Core_Platform_Key_ + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_GetScancodeFromKey_OpenTK_Platform_Key_ - name: ( - - uid: OpenTK.Core.Platform.Key + - uid: OpenTK.Platform.Key name: Key - href: OpenTK.Core.Platform.Key.html + href: OpenTK.Platform.Key.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IKeyboardComponent.GetScancodeFromKey(OpenTK.Core.Platform.Key) + - uid: OpenTK.Platform.IKeyboardComponent.GetScancodeFromKey(OpenTK.Platform.Key) name: GetScancodeFromKey - href: OpenTK.Core.Platform.IKeyboardComponent.html#OpenTK_Core_Platform_IKeyboardComponent_GetScancodeFromKey_OpenTK_Core_Platform_Key_ + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_GetScancodeFromKey_OpenTK_Platform_Key_ - name: ( - - uid: OpenTK.Core.Platform.Key + - uid: OpenTK.Platform.Key name: Key - href: OpenTK.Core.Platform.Key.html + href: OpenTK.Platform.Key.html - name: ) -- uid: OpenTK.Core.Platform.Key.Unknown - commentId: F:OpenTK.Core.Platform.Key.Unknown - href: OpenTK.Core.Platform.Key.html#OpenTK_Core_Platform_Key_Unknown +- uid: OpenTK.Platform.Key.Unknown + commentId: F:OpenTK.Platform.Key.Unknown + href: OpenTK.Platform.Key.html#OpenTK_Platform_Key_Unknown name: Unknown nameWithType: Key.Unknown - fullName: OpenTK.Core.Platform.Key.Unknown + fullName: OpenTK.Platform.Key.Unknown - uid: OpenTK.Platform.Native.Windows.KeyboardComponent.GetKeyFromScancode* commentId: Overload:OpenTK.Platform.Native.Windows.KeyboardComponent.GetKeyFromScancode - href: OpenTK.Platform.Native.Windows.KeyboardComponent.html#OpenTK_Platform_Native_Windows_KeyboardComponent_GetKeyFromScancode_OpenTK_Core_Platform_Scancode_ + href: OpenTK.Platform.Native.Windows.KeyboardComponent.html#OpenTK_Platform_Native_Windows_KeyboardComponent_GetKeyFromScancode_OpenTK_Platform_Scancode_ name: GetKeyFromScancode nameWithType: KeyboardComponent.GetKeyFromScancode fullName: OpenTK.Platform.Native.Windows.KeyboardComponent.GetKeyFromScancode -- uid: OpenTK.Core.Platform.IKeyboardComponent.GetKeyFromScancode(OpenTK.Core.Platform.Scancode) - commentId: M:OpenTK.Core.Platform.IKeyboardComponent.GetKeyFromScancode(OpenTK.Core.Platform.Scancode) - parent: OpenTK.Core.Platform.IKeyboardComponent - href: OpenTK.Core.Platform.IKeyboardComponent.html#OpenTK_Core_Platform_IKeyboardComponent_GetKeyFromScancode_OpenTK_Core_Platform_Scancode_ +- uid: OpenTK.Platform.IKeyboardComponent.GetKeyFromScancode(OpenTK.Platform.Scancode) + commentId: M:OpenTK.Platform.IKeyboardComponent.GetKeyFromScancode(OpenTK.Platform.Scancode) + parent: OpenTK.Platform.IKeyboardComponent + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_GetKeyFromScancode_OpenTK_Platform_Scancode_ name: GetKeyFromScancode(Scancode) nameWithType: IKeyboardComponent.GetKeyFromScancode(Scancode) - fullName: OpenTK.Core.Platform.IKeyboardComponent.GetKeyFromScancode(OpenTK.Core.Platform.Scancode) + fullName: OpenTK.Platform.IKeyboardComponent.GetKeyFromScancode(OpenTK.Platform.Scancode) spec.csharp: - - uid: OpenTK.Core.Platform.IKeyboardComponent.GetKeyFromScancode(OpenTK.Core.Platform.Scancode) + - uid: OpenTK.Platform.IKeyboardComponent.GetKeyFromScancode(OpenTK.Platform.Scancode) name: GetKeyFromScancode - href: OpenTK.Core.Platform.IKeyboardComponent.html#OpenTK_Core_Platform_IKeyboardComponent_GetKeyFromScancode_OpenTK_Core_Platform_Scancode_ + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_GetKeyFromScancode_OpenTK_Platform_Scancode_ - name: ( - - uid: OpenTK.Core.Platform.Scancode + - uid: OpenTK.Platform.Scancode name: Scancode - href: OpenTK.Core.Platform.Scancode.html + href: OpenTK.Platform.Scancode.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IKeyboardComponent.GetKeyFromScancode(OpenTK.Core.Platform.Scancode) + - uid: OpenTK.Platform.IKeyboardComponent.GetKeyFromScancode(OpenTK.Platform.Scancode) name: GetKeyFromScancode - href: OpenTK.Core.Platform.IKeyboardComponent.html#OpenTK_Core_Platform_IKeyboardComponent_GetKeyFromScancode_OpenTK_Core_Platform_Scancode_ + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_GetKeyFromScancode_OpenTK_Platform_Scancode_ - name: ( - - uid: OpenTK.Core.Platform.Scancode + - uid: OpenTK.Platform.Scancode name: Scancode - href: OpenTK.Core.Platform.Scancode.html + href: OpenTK.Platform.Scancode.html - name: ) - uid: OpenTK.Platform.Native.Windows.KeyboardComponent.GetKeyboardState* commentId: Overload:OpenTK.Platform.Native.Windows.KeyboardComponent.GetKeyboardState @@ -1288,21 +1216,21 @@ references: name: GetKeyboardState nameWithType: KeyboardComponent.GetKeyboardState fullName: OpenTK.Platform.Native.Windows.KeyboardComponent.GetKeyboardState -- uid: OpenTK.Core.Platform.IKeyboardComponent.GetKeyboardState(System.Boolean[]) - commentId: M:OpenTK.Core.Platform.IKeyboardComponent.GetKeyboardState(System.Boolean[]) - parent: OpenTK.Core.Platform.IKeyboardComponent +- uid: OpenTK.Platform.IKeyboardComponent.GetKeyboardState(System.Boolean[]) + commentId: M:OpenTK.Platform.IKeyboardComponent.GetKeyboardState(System.Boolean[]) + parent: OpenTK.Platform.IKeyboardComponent isExternal: true - href: OpenTK.Core.Platform.IKeyboardComponent.html#OpenTK_Core_Platform_IKeyboardComponent_GetKeyboardState_System_Boolean___ + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_GetKeyboardState_System_Boolean___ name: GetKeyboardState(bool[]) nameWithType: IKeyboardComponent.GetKeyboardState(bool[]) - fullName: OpenTK.Core.Platform.IKeyboardComponent.GetKeyboardState(bool[]) + fullName: OpenTK.Platform.IKeyboardComponent.GetKeyboardState(bool[]) nameWithType.vb: IKeyboardComponent.GetKeyboardState(Boolean()) - fullName.vb: OpenTK.Core.Platform.IKeyboardComponent.GetKeyboardState(Boolean()) + fullName.vb: OpenTK.Platform.IKeyboardComponent.GetKeyboardState(Boolean()) name.vb: GetKeyboardState(Boolean()) spec.csharp: - - uid: OpenTK.Core.Platform.IKeyboardComponent.GetKeyboardState(System.Boolean[]) + - uid: OpenTK.Platform.IKeyboardComponent.GetKeyboardState(System.Boolean[]) name: GetKeyboardState - href: OpenTK.Core.Platform.IKeyboardComponent.html#OpenTK_Core_Platform_IKeyboardComponent_GetKeyboardState_System_Boolean___ + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_GetKeyboardState_System_Boolean___ - name: ( - uid: System.Boolean name: bool @@ -1312,9 +1240,9 @@ references: - name: ']' - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IKeyboardComponent.GetKeyboardState(System.Boolean[]) + - uid: OpenTK.Platform.IKeyboardComponent.GetKeyboardState(System.Boolean[]) name: GetKeyboardState - href: OpenTK.Core.Platform.IKeyboardComponent.html#OpenTK_Core_Platform_IKeyboardComponent_GetKeyboardState_System_Boolean___ + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_GetKeyboardState_System_Boolean___ - name: ( - uid: System.Boolean name: Boolean @@ -1352,88 +1280,88 @@ references: name: GetKeyboardModifiers nameWithType: KeyboardComponent.GetKeyboardModifiers fullName: OpenTK.Platform.Native.Windows.KeyboardComponent.GetKeyboardModifiers -- uid: OpenTK.Core.Platform.IKeyboardComponent.GetKeyboardModifiers - commentId: M:OpenTK.Core.Platform.IKeyboardComponent.GetKeyboardModifiers - parent: OpenTK.Core.Platform.IKeyboardComponent - href: OpenTK.Core.Platform.IKeyboardComponent.html#OpenTK_Core_Platform_IKeyboardComponent_GetKeyboardModifiers +- uid: OpenTK.Platform.IKeyboardComponent.GetKeyboardModifiers + commentId: M:OpenTK.Platform.IKeyboardComponent.GetKeyboardModifiers + parent: OpenTK.Platform.IKeyboardComponent + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_GetKeyboardModifiers name: GetKeyboardModifiers() nameWithType: IKeyboardComponent.GetKeyboardModifiers() - fullName: OpenTK.Core.Platform.IKeyboardComponent.GetKeyboardModifiers() + fullName: OpenTK.Platform.IKeyboardComponent.GetKeyboardModifiers() spec.csharp: - - uid: OpenTK.Core.Platform.IKeyboardComponent.GetKeyboardModifiers + - uid: OpenTK.Platform.IKeyboardComponent.GetKeyboardModifiers name: GetKeyboardModifiers - href: OpenTK.Core.Platform.IKeyboardComponent.html#OpenTK_Core_Platform_IKeyboardComponent_GetKeyboardModifiers + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_GetKeyboardModifiers - name: ( - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IKeyboardComponent.GetKeyboardModifiers + - uid: OpenTK.Platform.IKeyboardComponent.GetKeyboardModifiers name: GetKeyboardModifiers - href: OpenTK.Core.Platform.IKeyboardComponent.html#OpenTK_Core_Platform_IKeyboardComponent_GetKeyboardModifiers + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_GetKeyboardModifiers - name: ( - name: ) -- uid: OpenTK.Core.Platform.KeyModifier - commentId: T:OpenTK.Core.Platform.KeyModifier - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.KeyModifier.html +- uid: OpenTK.Platform.KeyModifier + commentId: T:OpenTK.Platform.KeyModifier + parent: OpenTK.Platform + href: OpenTK.Platform.KeyModifier.html name: KeyModifier nameWithType: KeyModifier - fullName: OpenTK.Core.Platform.KeyModifier + fullName: OpenTK.Platform.KeyModifier - uid: OpenTK.Platform.Native.Windows.KeyboardComponent.BeginIme* commentId: Overload:OpenTK.Platform.Native.Windows.KeyboardComponent.BeginIme - href: OpenTK.Platform.Native.Windows.KeyboardComponent.html#OpenTK_Platform_Native_Windows_KeyboardComponent_BeginIme_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.Native.Windows.KeyboardComponent.html#OpenTK_Platform_Native_Windows_KeyboardComponent_BeginIme_OpenTK_Platform_WindowHandle_ name: BeginIme nameWithType: KeyboardComponent.BeginIme fullName: OpenTK.Platform.Native.Windows.KeyboardComponent.BeginIme -- uid: OpenTK.Core.Platform.IKeyboardComponent.BeginIme(OpenTK.Core.Platform.WindowHandle) - commentId: M:OpenTK.Core.Platform.IKeyboardComponent.BeginIme(OpenTK.Core.Platform.WindowHandle) - parent: OpenTK.Core.Platform.IKeyboardComponent - href: OpenTK.Core.Platform.IKeyboardComponent.html#OpenTK_Core_Platform_IKeyboardComponent_BeginIme_OpenTK_Core_Platform_WindowHandle_ +- uid: OpenTK.Platform.IKeyboardComponent.BeginIme(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IKeyboardComponent.BeginIme(OpenTK.Platform.WindowHandle) + parent: OpenTK.Platform.IKeyboardComponent + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_BeginIme_OpenTK_Platform_WindowHandle_ name: BeginIme(WindowHandle) nameWithType: IKeyboardComponent.BeginIme(WindowHandle) - fullName: OpenTK.Core.Platform.IKeyboardComponent.BeginIme(OpenTK.Core.Platform.WindowHandle) + fullName: OpenTK.Platform.IKeyboardComponent.BeginIme(OpenTK.Platform.WindowHandle) spec.csharp: - - uid: OpenTK.Core.Platform.IKeyboardComponent.BeginIme(OpenTK.Core.Platform.WindowHandle) + - uid: OpenTK.Platform.IKeyboardComponent.BeginIme(OpenTK.Platform.WindowHandle) name: BeginIme - href: OpenTK.Core.Platform.IKeyboardComponent.html#OpenTK_Core_Platform_IKeyboardComponent_BeginIme_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_BeginIme_OpenTK_Platform_WindowHandle_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IKeyboardComponent.BeginIme(OpenTK.Core.Platform.WindowHandle) + - uid: OpenTK.Platform.IKeyboardComponent.BeginIme(OpenTK.Platform.WindowHandle) name: BeginIme - href: OpenTK.Core.Platform.IKeyboardComponent.html#OpenTK_Core_Platform_IKeyboardComponent_BeginIme_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_BeginIme_OpenTK_Platform_WindowHandle_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ) - uid: OpenTK.Platform.Native.Windows.KeyboardComponent.SetImeRectangle* commentId: Overload:OpenTK.Platform.Native.Windows.KeyboardComponent.SetImeRectangle - href: OpenTK.Platform.Native.Windows.KeyboardComponent.html#OpenTK_Platform_Native_Windows_KeyboardComponent_SetImeRectangle_OpenTK_Core_Platform_WindowHandle_System_Int32_System_Int32_System_Int32_System_Int32_ + href: OpenTK.Platform.Native.Windows.KeyboardComponent.html#OpenTK_Platform_Native_Windows_KeyboardComponent_SetImeRectangle_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_System_Int32_System_Int32_ name: SetImeRectangle nameWithType: KeyboardComponent.SetImeRectangle fullName: OpenTK.Platform.Native.Windows.KeyboardComponent.SetImeRectangle -- uid: OpenTK.Core.Platform.IKeyboardComponent.SetImeRectangle(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) - commentId: M:OpenTK.Core.Platform.IKeyboardComponent.SetImeRectangle(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) - parent: OpenTK.Core.Platform.IKeyboardComponent +- uid: OpenTK.Platform.IKeyboardComponent.SetImeRectangle(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) + commentId: M:OpenTK.Platform.IKeyboardComponent.SetImeRectangle(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) + parent: OpenTK.Platform.IKeyboardComponent isExternal: true - href: OpenTK.Core.Platform.IKeyboardComponent.html#OpenTK_Core_Platform_IKeyboardComponent_SetImeRectangle_OpenTK_Core_Platform_WindowHandle_System_Int32_System_Int32_System_Int32_System_Int32_ + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_SetImeRectangle_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_System_Int32_System_Int32_ name: SetImeRectangle(WindowHandle, int, int, int, int) nameWithType: IKeyboardComponent.SetImeRectangle(WindowHandle, int, int, int, int) - fullName: OpenTK.Core.Platform.IKeyboardComponent.SetImeRectangle(OpenTK.Core.Platform.WindowHandle, int, int, int, int) + fullName: OpenTK.Platform.IKeyboardComponent.SetImeRectangle(OpenTK.Platform.WindowHandle, int, int, int, int) nameWithType.vb: IKeyboardComponent.SetImeRectangle(WindowHandle, Integer, Integer, Integer, Integer) - fullName.vb: OpenTK.Core.Platform.IKeyboardComponent.SetImeRectangle(OpenTK.Core.Platform.WindowHandle, Integer, Integer, Integer, Integer) + fullName.vb: OpenTK.Platform.IKeyboardComponent.SetImeRectangle(OpenTK.Platform.WindowHandle, Integer, Integer, Integer, Integer) name.vb: SetImeRectangle(WindowHandle, Integer, Integer, Integer, Integer) spec.csharp: - - uid: OpenTK.Core.Platform.IKeyboardComponent.SetImeRectangle(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) + - uid: OpenTK.Platform.IKeyboardComponent.SetImeRectangle(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) name: SetImeRectangle - href: OpenTK.Core.Platform.IKeyboardComponent.html#OpenTK_Core_Platform_IKeyboardComponent_SetImeRectangle_OpenTK_Core_Platform_WindowHandle_System_Int32_System_Int32_System_Int32_System_Int32_ + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_SetImeRectangle_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_System_Int32_System_Int32_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - uid: System.Int32 @@ -1460,13 +1388,13 @@ references: href: https://learn.microsoft.com/dotnet/api/system.int32 - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IKeyboardComponent.SetImeRectangle(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) + - uid: OpenTK.Platform.IKeyboardComponent.SetImeRectangle(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) name: SetImeRectangle - href: OpenTK.Core.Platform.IKeyboardComponent.html#OpenTK_Core_Platform_IKeyboardComponent_SetImeRectangle_OpenTK_Core_Platform_WindowHandle_System_Int32_System_Int32_System_Int32_System_Int32_ + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_SetImeRectangle_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_System_Int32_System_Int32_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - uid: System.Int32 @@ -1505,32 +1433,32 @@ references: name.vb: Integer - uid: OpenTK.Platform.Native.Windows.KeyboardComponent.EndIme* commentId: Overload:OpenTK.Platform.Native.Windows.KeyboardComponent.EndIme - href: OpenTK.Platform.Native.Windows.KeyboardComponent.html#OpenTK_Platform_Native_Windows_KeyboardComponent_EndIme_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.Native.Windows.KeyboardComponent.html#OpenTK_Platform_Native_Windows_KeyboardComponent_EndIme_OpenTK_Platform_WindowHandle_ name: EndIme nameWithType: KeyboardComponent.EndIme fullName: OpenTK.Platform.Native.Windows.KeyboardComponent.EndIme -- uid: OpenTK.Core.Platform.IKeyboardComponent.EndIme(OpenTK.Core.Platform.WindowHandle) - commentId: M:OpenTK.Core.Platform.IKeyboardComponent.EndIme(OpenTK.Core.Platform.WindowHandle) - parent: OpenTK.Core.Platform.IKeyboardComponent - href: OpenTK.Core.Platform.IKeyboardComponent.html#OpenTK_Core_Platform_IKeyboardComponent_EndIme_OpenTK_Core_Platform_WindowHandle_ +- uid: OpenTK.Platform.IKeyboardComponent.EndIme(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IKeyboardComponent.EndIme(OpenTK.Platform.WindowHandle) + parent: OpenTK.Platform.IKeyboardComponent + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_EndIme_OpenTK_Platform_WindowHandle_ name: EndIme(WindowHandle) nameWithType: IKeyboardComponent.EndIme(WindowHandle) - fullName: OpenTK.Core.Platform.IKeyboardComponent.EndIme(OpenTK.Core.Platform.WindowHandle) + fullName: OpenTK.Platform.IKeyboardComponent.EndIme(OpenTK.Platform.WindowHandle) spec.csharp: - - uid: OpenTK.Core.Platform.IKeyboardComponent.EndIme(OpenTK.Core.Platform.WindowHandle) + - uid: OpenTK.Platform.IKeyboardComponent.EndIme(OpenTK.Platform.WindowHandle) name: EndIme - href: OpenTK.Core.Platform.IKeyboardComponent.html#OpenTK_Core_Platform_IKeyboardComponent_EndIme_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_EndIme_OpenTK_Platform_WindowHandle_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IKeyboardComponent.EndIme(OpenTK.Core.Platform.WindowHandle) + - uid: OpenTK.Platform.IKeyboardComponent.EndIme(OpenTK.Platform.WindowHandle) name: EndIme - href: OpenTK.Core.Platform.IKeyboardComponent.html#OpenTK_Core_Platform_IKeyboardComponent_EndIme_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_EndIme_OpenTK_Platform_WindowHandle_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ) diff --git a/api/OpenTK.Platform.Native.Windows.MouseComponent.yml b/api/OpenTK.Platform.Native.Windows.MouseComponent.yml index 2ed2b1cc..ebc1dd35 100644 --- a/api/OpenTK.Platform.Native.Windows.MouseComponent.yml +++ b/api/OpenTK.Platform.Native.Windows.MouseComponent.yml @@ -6,13 +6,16 @@ items: parent: OpenTK.Platform.Native.Windows children: - OpenTK.Platform.Native.Windows.MouseComponent.CanSetMousePosition - - OpenTK.Platform.Native.Windows.MouseComponent.GetMouseState(OpenTK.Core.Platform.MouseState@) + - OpenTK.Platform.Native.Windows.MouseComponent.EnableRawMouseMotion(OpenTK.Platform.WindowHandle,System.Boolean) + - OpenTK.Platform.Native.Windows.MouseComponent.GetMouseState(OpenTK.Platform.MouseState@) - OpenTK.Platform.Native.Windows.MouseComponent.GetPosition(System.Int32@,System.Int32@) - - OpenTK.Platform.Native.Windows.MouseComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + - OpenTK.Platform.Native.Windows.MouseComponent.Initialize(OpenTK.Platform.ToolkitOptions) + - OpenTK.Platform.Native.Windows.MouseComponent.IsRawMouseMotionEnabled(OpenTK.Platform.WindowHandle) - OpenTK.Platform.Native.Windows.MouseComponent.Logger - OpenTK.Platform.Native.Windows.MouseComponent.Name - OpenTK.Platform.Native.Windows.MouseComponent.Provides - OpenTK.Platform.Native.Windows.MouseComponent.SetPosition(System.Int32,System.Int32) + - OpenTK.Platform.Native.Windows.MouseComponent.SupportsRawMouseMotion langs: - csharp - vb @@ -21,15 +24,11 @@ items: fullName: OpenTK.Platform.Native.Windows.MouseComponent type: Class source: - remote: - path: src/OpenTK.Platform.Native/Windows/MouseComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MouseComponent - path: opentk/src/OpenTK.Platform.Native/Windows/MouseComponent.cs - startLine: 13 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\MouseComponent.cs + startLine: 14 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows syntax: content: 'public class MouseComponent : IMouseComponent, IPalComponent' @@ -37,8 +36,8 @@ items: inheritance: - System.Object implements: - - OpenTK.Core.Platform.IMouseComponent - - OpenTK.Core.Platform.IPalComponent + - OpenTK.Platform.IMouseComponent + - OpenTK.Platform.IPalComponent inheritedMembers: - System.Object.Equals(System.Object) - System.Object.Equals(System.Object,System.Object) @@ -59,15 +58,11 @@ items: fullName: OpenTK.Platform.Native.Windows.MouseComponent.Name type: Property source: - remote: - path: src/OpenTK.Platform.Native/Windows/MouseComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Name - path: opentk/src/OpenTK.Platform.Native/Windows/MouseComponent.cs - startLine: 16 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\MouseComponent.cs + startLine: 17 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: Name of the abstraction layer component. example: [] @@ -79,7 +74,7 @@ items: content.vb: Public ReadOnly Property Name As String overload: OpenTK.Platform.Native.Windows.MouseComponent.Name* implements: - - OpenTK.Core.Platform.IPalComponent.Name + - OpenTK.Platform.IPalComponent.Name - uid: OpenTK.Platform.Native.Windows.MouseComponent.Provides commentId: P:OpenTK.Platform.Native.Windows.MouseComponent.Provides id: Provides @@ -92,15 +87,11 @@ items: fullName: OpenTK.Platform.Native.Windows.MouseComponent.Provides type: Property source: - remote: - path: src/OpenTK.Platform.Native/Windows/MouseComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Provides - path: opentk/src/OpenTK.Platform.Native/Windows/MouseComponent.cs - startLine: 19 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\MouseComponent.cs + startLine: 20 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: Specifies which PAL components this object provides. example: [] @@ -108,11 +99,11 @@ items: content: public PalComponents Provides { get; } parameters: [] return: - type: OpenTK.Core.Platform.PalComponents + type: OpenTK.Platform.PalComponents content.vb: Public ReadOnly Property Provides As PalComponents overload: OpenTK.Platform.Native.Windows.MouseComponent.Provides* implements: - - OpenTK.Core.Platform.IPalComponent.Provides + - OpenTK.Platform.IPalComponent.Provides - uid: OpenTK.Platform.Native.Windows.MouseComponent.Logger commentId: P:OpenTK.Platform.Native.Windows.MouseComponent.Logger id: Logger @@ -125,15 +116,11 @@ items: fullName: OpenTK.Platform.Native.Windows.MouseComponent.Logger type: Property source: - remote: - path: src/OpenTK.Platform.Native/Windows/MouseComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Logger - path: opentk/src/OpenTK.Platform.Native/Windows/MouseComponent.cs - startLine: 22 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\MouseComponent.cs + startLine: 23 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: Provides a logger for this component. example: [] @@ -145,28 +132,24 @@ items: content.vb: Public Property Logger As ILogger overload: OpenTK.Platform.Native.Windows.MouseComponent.Logger* implements: - - OpenTK.Core.Platform.IPalComponent.Logger -- uid: OpenTK.Platform.Native.Windows.MouseComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - commentId: M:OpenTK.Platform.Native.Windows.MouseComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - id: Initialize(OpenTK.Core.Platform.ToolkitOptions) + - OpenTK.Platform.IPalComponent.Logger +- uid: OpenTK.Platform.Native.Windows.MouseComponent.Initialize(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Native.Windows.MouseComponent.Initialize(OpenTK.Platform.ToolkitOptions) + id: Initialize(OpenTK.Platform.ToolkitOptions) parent: OpenTK.Platform.Native.Windows.MouseComponent langs: - csharp - vb name: Initialize(ToolkitOptions) nameWithType: MouseComponent.Initialize(ToolkitOptions) - fullName: OpenTK.Platform.Native.Windows.MouseComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + fullName: OpenTK.Platform.Native.Windows.MouseComponent.Initialize(OpenTK.Platform.ToolkitOptions) type: Method source: - remote: - path: src/OpenTK.Platform.Native/Windows/MouseComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Initialize - path: opentk/src/OpenTK.Platform.Native/Windows/MouseComponent.cs - startLine: 25 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\MouseComponent.cs + startLine: 26 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: Initialize the component. example: [] @@ -174,12 +157,12 @@ items: content: public void Initialize(ToolkitOptions options) parameters: - id: options - type: OpenTK.Core.Platform.ToolkitOptions + type: OpenTK.Platform.ToolkitOptions description: The options to initialize the component with. content.vb: Public Sub Initialize(options As ToolkitOptions) overload: OpenTK.Platform.Native.Windows.MouseComponent.Initialize* implements: - - OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + - OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) - uid: OpenTK.Platform.Native.Windows.MouseComponent.CanSetMousePosition commentId: P:OpenTK.Platform.Native.Windows.MouseComponent.CanSetMousePosition id: CanSetMousePosition @@ -192,17 +175,13 @@ items: fullName: OpenTK.Platform.Native.Windows.MouseComponent.CanSetMousePosition type: Property source: - remote: - path: src/OpenTK.Platform.Native/Windows/MouseComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CanSetMousePosition - path: opentk/src/OpenTK.Platform.Native/Windows/MouseComponent.cs - startLine: 30 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\MouseComponent.cs + startLine: 31 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows - summary: If it's possible to set the position of the mouse. + summary: If it's possible to set the position of the mouse using . example: [] syntax: content: public bool CanSetMousePosition { get; } @@ -211,8 +190,48 @@ items: type: System.Boolean content.vb: Public ReadOnly Property CanSetMousePosition As Boolean overload: OpenTK.Platform.Native.Windows.MouseComponent.CanSetMousePosition* + seealso: + - linkId: OpenTK.Platform.IMouseComponent.SetPosition(System.Int32,System.Int32) + commentId: M:OpenTK.Platform.IMouseComponent.SetPosition(System.Int32,System.Int32) implements: - - OpenTK.Core.Platform.IMouseComponent.CanSetMousePosition + - OpenTK.Platform.IMouseComponent.CanSetMousePosition +- uid: OpenTK.Platform.Native.Windows.MouseComponent.SupportsRawMouseMotion + commentId: P:OpenTK.Platform.Native.Windows.MouseComponent.SupportsRawMouseMotion + id: SupportsRawMouseMotion + parent: OpenTK.Platform.Native.Windows.MouseComponent + langs: + - csharp + - vb + name: SupportsRawMouseMotion + nameWithType: MouseComponent.SupportsRawMouseMotion + fullName: OpenTK.Platform.Native.Windows.MouseComponent.SupportsRawMouseMotion + type: Property + source: + id: SupportsRawMouseMotion + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\MouseComponent.cs + startLine: 34 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform.Native.Windows + summary: >- + If raw mouse motion is supported on this platform. + + If this is false and should not be used. + example: [] + syntax: + content: public bool SupportsRawMouseMotion { get; } + parameters: [] + return: + type: System.Boolean + content.vb: Public ReadOnly Property SupportsRawMouseMotion As Boolean + overload: OpenTK.Platform.Native.Windows.MouseComponent.SupportsRawMouseMotion* + seealso: + - linkId: OpenTK.Platform.IMouseComponent.IsRawMouseMotionEnabled(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IMouseComponent.IsRawMouseMotionEnabled(OpenTK.Platform.WindowHandle) + - linkId: OpenTK.Platform.IMouseComponent.EnableRawMouseMotion(OpenTK.Platform.WindowHandle,System.Boolean) + commentId: M:OpenTK.Platform.IMouseComponent.EnableRawMouseMotion(OpenTK.Platform.WindowHandle,System.Boolean) + implements: + - OpenTK.Platform.IMouseComponent.SupportsRawMouseMotion - uid: OpenTK.Platform.Native.Windows.MouseComponent.GetPosition(System.Int32@,System.Int32@) commentId: M:OpenTK.Platform.Native.Windows.MouseComponent.GetPosition(System.Int32@,System.Int32@) id: GetPosition(System.Int32@,System.Int32@) @@ -225,15 +244,11 @@ items: fullName: OpenTK.Platform.Native.Windows.MouseComponent.GetPosition(out int, out int) type: Method source: - remote: - path: src/OpenTK.Platform.Native/Windows/MouseComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetPosition - path: opentk/src/OpenTK.Platform.Native/Windows/MouseComponent.cs - startLine: 33 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\MouseComponent.cs + startLine: 37 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: Get the mouse cursor position. example: [] @@ -249,7 +264,7 @@ items: content.vb: Public Sub GetPosition(x As Integer, y As Integer) overload: OpenTK.Platform.Native.Windows.MouseComponent.GetPosition* implements: - - OpenTK.Core.Platform.IMouseComponent.GetPosition(System.Int32@,System.Int32@) + - OpenTK.Platform.IMouseComponent.GetPosition(System.Int32@,System.Int32@) nameWithType.vb: MouseComponent.GetPosition(Integer, Integer) fullName.vb: OpenTK.Platform.Native.Windows.MouseComponent.GetPosition(Integer, Integer) name.vb: GetPosition(Integer, Integer) @@ -265,17 +280,16 @@ items: fullName: OpenTK.Platform.Native.Windows.MouseComponent.SetPosition(int, int) type: Method source: - remote: - path: src/OpenTK.Platform.Native/Windows/MouseComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetPosition - path: opentk/src/OpenTK.Platform.Native/Windows/MouseComponent.cs - startLine: 47 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\MouseComponent.cs + startLine: 51 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows - summary: Set the mouse cursor position. + summary: >- + Set the mouse cursor position. + + Check that is true before using this. example: [] syntax: content: public void SetPosition(int x, int y) @@ -288,32 +302,31 @@ items: description: Y coordinate of the mouse in desktop space. content.vb: Public Sub SetPosition(x As Integer, y As Integer) overload: OpenTK.Platform.Native.Windows.MouseComponent.SetPosition* + seealso: + - linkId: OpenTK.Platform.IMouseComponent.CanSetMousePosition + commentId: P:OpenTK.Platform.IMouseComponent.CanSetMousePosition implements: - - OpenTK.Core.Platform.IMouseComponent.SetPosition(System.Int32,System.Int32) + - OpenTK.Platform.IMouseComponent.SetPosition(System.Int32,System.Int32) nameWithType.vb: MouseComponent.SetPosition(Integer, Integer) fullName.vb: OpenTK.Platform.Native.Windows.MouseComponent.SetPosition(Integer, Integer) name.vb: SetPosition(Integer, Integer) -- uid: OpenTK.Platform.Native.Windows.MouseComponent.GetMouseState(OpenTK.Core.Platform.MouseState@) - commentId: M:OpenTK.Platform.Native.Windows.MouseComponent.GetMouseState(OpenTK.Core.Platform.MouseState@) - id: GetMouseState(OpenTK.Core.Platform.MouseState@) +- uid: OpenTK.Platform.Native.Windows.MouseComponent.GetMouseState(OpenTK.Platform.MouseState@) + commentId: M:OpenTK.Platform.Native.Windows.MouseComponent.GetMouseState(OpenTK.Platform.MouseState@) + id: GetMouseState(OpenTK.Platform.MouseState@) parent: OpenTK.Platform.Native.Windows.MouseComponent langs: - csharp - vb name: GetMouseState(out MouseState) nameWithType: MouseComponent.GetMouseState(out MouseState) - fullName: OpenTK.Platform.Native.Windows.MouseComponent.GetMouseState(out OpenTK.Core.Platform.MouseState) + fullName: OpenTK.Platform.Native.Windows.MouseComponent.GetMouseState(out OpenTK.Platform.MouseState) type: Method source: - remote: - path: src/OpenTK.Platform.Native/Windows/MouseComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetMouseState - path: opentk/src/OpenTK.Platform.Native/Windows/MouseComponent.cs - startLine: 71 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\MouseComponent.cs + startLine: 75 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: Fills the state struct with the current mouse state. example: [] @@ -321,15 +334,97 @@ items: content: public void GetMouseState(out MouseState state) parameters: - id: state - type: OpenTK.Core.Platform.MouseState + type: OpenTK.Platform.MouseState description: The current mouse state. content.vb: Public Sub GetMouseState(state As MouseState) overload: OpenTK.Platform.Native.Windows.MouseComponent.GetMouseState* implements: - - OpenTK.Core.Platform.IMouseComponent.GetMouseState(OpenTK.Core.Platform.MouseState@) + - OpenTK.Platform.IMouseComponent.GetMouseState(OpenTK.Platform.MouseState@) nameWithType.vb: MouseComponent.GetMouseState(MouseState) - fullName.vb: OpenTK.Platform.Native.Windows.MouseComponent.GetMouseState(OpenTK.Core.Platform.MouseState) + fullName.vb: OpenTK.Platform.Native.Windows.MouseComponent.GetMouseState(OpenTK.Platform.MouseState) name.vb: GetMouseState(MouseState) +- uid: OpenTK.Platform.Native.Windows.MouseComponent.IsRawMouseMotionEnabled(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.Native.Windows.MouseComponent.IsRawMouseMotionEnabled(OpenTK.Platform.WindowHandle) + id: IsRawMouseMotionEnabled(OpenTK.Platform.WindowHandle) + parent: OpenTK.Platform.Native.Windows.MouseComponent + langs: + - csharp + - vb + name: IsRawMouseMotionEnabled(WindowHandle) + nameWithType: MouseComponent.IsRawMouseMotionEnabled(WindowHandle) + fullName: OpenTK.Platform.Native.Windows.MouseComponent.IsRawMouseMotionEnabled(OpenTK.Platform.WindowHandle) + type: Method + source: + id: IsRawMouseMotionEnabled + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\MouseComponent.cs + startLine: 111 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform.Native.Windows + summary: >- + Returns whether raw mouse motion is enabled for the given window or not. + + Check that is true before using this. + example: [] + syntax: + content: public bool IsRawMouseMotionEnabled(WindowHandle handle) + parameters: + - id: handle + type: OpenTK.Platform.WindowHandle + return: + type: System.Boolean + description: If raw mouse motion is enabled. + content.vb: Public Function IsRawMouseMotionEnabled(handle As WindowHandle) As Boolean + overload: OpenTK.Platform.Native.Windows.MouseComponent.IsRawMouseMotionEnabled* + seealso: + - linkId: OpenTK.Platform.IMouseComponent.SupportsRawMouseMotion + commentId: P:OpenTK.Platform.IMouseComponent.SupportsRawMouseMotion + implements: + - OpenTK.Platform.IMouseComponent.IsRawMouseMotionEnabled(OpenTK.Platform.WindowHandle) +- uid: OpenTK.Platform.Native.Windows.MouseComponent.EnableRawMouseMotion(OpenTK.Platform.WindowHandle,System.Boolean) + commentId: M:OpenTK.Platform.Native.Windows.MouseComponent.EnableRawMouseMotion(OpenTK.Platform.WindowHandle,System.Boolean) + id: EnableRawMouseMotion(OpenTK.Platform.WindowHandle,System.Boolean) + parent: OpenTK.Platform.Native.Windows.MouseComponent + langs: + - csharp + - vb + name: EnableRawMouseMotion(WindowHandle, bool) + nameWithType: MouseComponent.EnableRawMouseMotion(WindowHandle, bool) + fullName: OpenTK.Platform.Native.Windows.MouseComponent.EnableRawMouseMotion(OpenTK.Platform.WindowHandle, bool) + type: Method + source: + id: EnableRawMouseMotion + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\MouseComponent.cs + startLine: 118 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform.Native.Windows + summary: >- + Enables or disables raw mouse motion for a specific window. + + When raw mouse motion is enabled the window will receive events, + + in addition to the normal events. + + Check that is true before using this. + example: [] + syntax: + content: public void EnableRawMouseMotion(WindowHandle handle, bool enabled) + parameters: + - id: handle + type: OpenTK.Platform.WindowHandle + - id: enabled + type: System.Boolean + content.vb: Public Sub EnableRawMouseMotion(handle As WindowHandle, enabled As Boolean) + overload: OpenTK.Platform.Native.Windows.MouseComponent.EnableRawMouseMotion* + seealso: + - linkId: OpenTK.Platform.IMouseComponent.SupportsRawMouseMotion + commentId: P:OpenTK.Platform.IMouseComponent.SupportsRawMouseMotion + implements: + - OpenTK.Platform.IMouseComponent.EnableRawMouseMotion(OpenTK.Platform.WindowHandle,System.Boolean) + nameWithType.vb: MouseComponent.EnableRawMouseMotion(WindowHandle, Boolean) + fullName.vb: OpenTK.Platform.Native.Windows.MouseComponent.EnableRawMouseMotion(OpenTK.Platform.WindowHandle, Boolean) + name.vb: EnableRawMouseMotion(WindowHandle, Boolean) references: - uid: OpenTK.Platform.Native.Windows commentId: N:OpenTK.Platform.Native.Windows @@ -380,20 +475,20 @@ references: nameWithType.vb: Object fullName.vb: Object name.vb: Object -- uid: OpenTK.Core.Platform.IMouseComponent - commentId: T:OpenTK.Core.Platform.IMouseComponent - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.IMouseComponent.html +- uid: OpenTK.Platform.IMouseComponent + commentId: T:OpenTK.Platform.IMouseComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IMouseComponent.html name: IMouseComponent nameWithType: IMouseComponent - fullName: OpenTK.Core.Platform.IMouseComponent -- uid: OpenTK.Core.Platform.IPalComponent - commentId: T:OpenTK.Core.Platform.IPalComponent - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.IPalComponent.html + fullName: OpenTK.Platform.IMouseComponent +- uid: OpenTK.Platform.IPalComponent + commentId: T:OpenTK.Platform.IPalComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IPalComponent.html name: IPalComponent nameWithType: IPalComponent - fullName: OpenTK.Core.Platform.IPalComponent + fullName: OpenTK.Platform.IPalComponent - uid: System.Object.Equals(System.Object) commentId: M:System.Object.Equals(System.Object) parent: System.Object @@ -620,49 +715,41 @@ references: name: System nameWithType: System fullName: System -- uid: OpenTK.Core.Platform - commentId: N:OpenTK.Core.Platform +- uid: OpenTK.Platform + commentId: N:OpenTK.Platform href: OpenTK.html - name: OpenTK.Core.Platform - nameWithType: OpenTK.Core.Platform - fullName: OpenTK.Core.Platform + name: OpenTK.Platform + nameWithType: OpenTK.Platform + fullName: OpenTK.Platform spec.csharp: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html spec.vb: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html - uid: OpenTK.Platform.Native.Windows.MouseComponent.Name* commentId: Overload:OpenTK.Platform.Native.Windows.MouseComponent.Name href: OpenTK.Platform.Native.Windows.MouseComponent.html#OpenTK_Platform_Native_Windows_MouseComponent_Name name: Name nameWithType: MouseComponent.Name fullName: OpenTK.Platform.Native.Windows.MouseComponent.Name -- uid: OpenTK.Core.Platform.IPalComponent.Name - commentId: P:OpenTK.Core.Platform.IPalComponent.Name - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Name +- uid: OpenTK.Platform.IPalComponent.Name + commentId: P:OpenTK.Platform.IPalComponent.Name + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Name name: Name nameWithType: IPalComponent.Name - fullName: OpenTK.Core.Platform.IPalComponent.Name + fullName: OpenTK.Platform.IPalComponent.Name - uid: System.String commentId: T:System.String parent: System @@ -680,33 +767,33 @@ references: name: Provides nameWithType: MouseComponent.Provides fullName: OpenTK.Platform.Native.Windows.MouseComponent.Provides -- uid: OpenTK.Core.Platform.IPalComponent.Provides - commentId: P:OpenTK.Core.Platform.IPalComponent.Provides - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Provides +- uid: OpenTK.Platform.IPalComponent.Provides + commentId: P:OpenTK.Platform.IPalComponent.Provides + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Provides name: Provides nameWithType: IPalComponent.Provides - fullName: OpenTK.Core.Platform.IPalComponent.Provides -- uid: OpenTK.Core.Platform.PalComponents - commentId: T:OpenTK.Core.Platform.PalComponents - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.PalComponents.html + fullName: OpenTK.Platform.IPalComponent.Provides +- uid: OpenTK.Platform.PalComponents + commentId: T:OpenTK.Platform.PalComponents + parent: OpenTK.Platform + href: OpenTK.Platform.PalComponents.html name: PalComponents nameWithType: PalComponents - fullName: OpenTK.Core.Platform.PalComponents + fullName: OpenTK.Platform.PalComponents - uid: OpenTK.Platform.Native.Windows.MouseComponent.Logger* commentId: Overload:OpenTK.Platform.Native.Windows.MouseComponent.Logger href: OpenTK.Platform.Native.Windows.MouseComponent.html#OpenTK_Platform_Native_Windows_MouseComponent_Logger name: Logger nameWithType: MouseComponent.Logger fullName: OpenTK.Platform.Native.Windows.MouseComponent.Logger -- uid: OpenTK.Core.Platform.IPalComponent.Logger - commentId: P:OpenTK.Core.Platform.IPalComponent.Logger - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Logger +- uid: OpenTK.Platform.IPalComponent.Logger + commentId: P:OpenTK.Platform.IPalComponent.Logger + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Logger name: Logger nameWithType: IPalComponent.Logger - fullName: OpenTK.Core.Platform.IPalComponent.Logger + fullName: OpenTK.Platform.IPalComponent.Logger - uid: OpenTK.Core.Utility.ILogger commentId: T:OpenTK.Core.Utility.ILogger parent: OpenTK.Core.Utility @@ -746,55 +833,98 @@ references: href: OpenTK.Core.Utility.html - uid: OpenTK.Platform.Native.Windows.MouseComponent.Initialize* commentId: Overload:OpenTK.Platform.Native.Windows.MouseComponent.Initialize - href: OpenTK.Platform.Native.Windows.MouseComponent.html#OpenTK_Platform_Native_Windows_MouseComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + href: OpenTK.Platform.Native.Windows.MouseComponent.html#OpenTK_Platform_Native_Windows_MouseComponent_Initialize_OpenTK_Platform_ToolkitOptions_ name: Initialize nameWithType: MouseComponent.Initialize fullName: OpenTK.Platform.Native.Windows.MouseComponent.Initialize -- uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - commentId: M:OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ +- uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ name: Initialize(ToolkitOptions) nameWithType: IPalComponent.Initialize(ToolkitOptions) - fullName: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + fullName: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) spec.csharp: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + - uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.ToolkitOptions + - uid: OpenTK.Platform.ToolkitOptions name: ToolkitOptions - href: OpenTK.Core.Platform.ToolkitOptions.html + href: OpenTK.Platform.ToolkitOptions.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + - uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.ToolkitOptions + - uid: OpenTK.Platform.ToolkitOptions name: ToolkitOptions - href: OpenTK.Core.Platform.ToolkitOptions.html + href: OpenTK.Platform.ToolkitOptions.html - name: ) -- uid: OpenTK.Core.Platform.ToolkitOptions - commentId: T:OpenTK.Core.Platform.ToolkitOptions - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.ToolkitOptions.html +- uid: OpenTK.Platform.ToolkitOptions + commentId: T:OpenTK.Platform.ToolkitOptions + parent: OpenTK.Platform + href: OpenTK.Platform.ToolkitOptions.html name: ToolkitOptions nameWithType: ToolkitOptions - fullName: OpenTK.Core.Platform.ToolkitOptions + fullName: OpenTK.Platform.ToolkitOptions +- uid: OpenTK.Platform.IMouseComponent.SetPosition(System.Int32,System.Int32) + commentId: M:OpenTK.Platform.IMouseComponent.SetPosition(System.Int32,System.Int32) + parent: OpenTK.Platform.IMouseComponent + isExternal: true + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_SetPosition_System_Int32_System_Int32_ + name: SetPosition(int, int) + nameWithType: IMouseComponent.SetPosition(int, int) + fullName: OpenTK.Platform.IMouseComponent.SetPosition(int, int) + nameWithType.vb: IMouseComponent.SetPosition(Integer, Integer) + fullName.vb: OpenTK.Platform.IMouseComponent.SetPosition(Integer, Integer) + name.vb: SetPosition(Integer, Integer) + spec.csharp: + - uid: OpenTK.Platform.IMouseComponent.SetPosition(System.Int32,System.Int32) + name: SetPosition + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_SetPosition_System_Int32_System_Int32_ + - name: ( + - uid: System.Int32 + name: int + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ',' + - name: " " + - uid: System.Int32 + name: int + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ) + spec.vb: + - uid: OpenTK.Platform.IMouseComponent.SetPosition(System.Int32,System.Int32) + name: SetPosition + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_SetPosition_System_Int32_System_Int32_ + - name: ( + - uid: System.Int32 + name: Integer + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ',' + - name: " " + - uid: System.Int32 + name: Integer + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ) - uid: OpenTK.Platform.Native.Windows.MouseComponent.CanSetMousePosition* commentId: Overload:OpenTK.Platform.Native.Windows.MouseComponent.CanSetMousePosition href: OpenTK.Platform.Native.Windows.MouseComponent.html#OpenTK_Platform_Native_Windows_MouseComponent_CanSetMousePosition name: CanSetMousePosition nameWithType: MouseComponent.CanSetMousePosition fullName: OpenTK.Platform.Native.Windows.MouseComponent.CanSetMousePosition -- uid: OpenTK.Core.Platform.IMouseComponent.CanSetMousePosition - commentId: P:OpenTK.Core.Platform.IMouseComponent.CanSetMousePosition - parent: OpenTK.Core.Platform.IMouseComponent - href: OpenTK.Core.Platform.IMouseComponent.html#OpenTK_Core_Platform_IMouseComponent_CanSetMousePosition +- uid: OpenTK.Platform.IMouseComponent.CanSetMousePosition + commentId: P:OpenTK.Platform.IMouseComponent.CanSetMousePosition + parent: OpenTK.Platform.IMouseComponent + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_CanSetMousePosition name: CanSetMousePosition nameWithType: IMouseComponent.CanSetMousePosition - fullName: OpenTK.Core.Platform.IMouseComponent.CanSetMousePosition + fullName: OpenTK.Platform.IMouseComponent.CanSetMousePosition - uid: System.Boolean commentId: T:System.Boolean parent: System @@ -806,27 +936,106 @@ references: nameWithType.vb: Boolean fullName.vb: Boolean name.vb: Boolean +- uid: OpenTK.Platform.IMouseComponent.IsRawMouseMotionEnabled(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IMouseComponent.IsRawMouseMotionEnabled(OpenTK.Platform.WindowHandle) + parent: OpenTK.Platform.IMouseComponent + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_IsRawMouseMotionEnabled_OpenTK_Platform_WindowHandle_ + name: IsRawMouseMotionEnabled(WindowHandle) + nameWithType: IMouseComponent.IsRawMouseMotionEnabled(WindowHandle) + fullName: OpenTK.Platform.IMouseComponent.IsRawMouseMotionEnabled(OpenTK.Platform.WindowHandle) + spec.csharp: + - uid: OpenTK.Platform.IMouseComponent.IsRawMouseMotionEnabled(OpenTK.Platform.WindowHandle) + name: IsRawMouseMotionEnabled + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_IsRawMouseMotionEnabled_OpenTK_Platform_WindowHandle_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IMouseComponent.IsRawMouseMotionEnabled(OpenTK.Platform.WindowHandle) + name: IsRawMouseMotionEnabled + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_IsRawMouseMotionEnabled_OpenTK_Platform_WindowHandle_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ) +- uid: OpenTK.Platform.IMouseComponent.EnableRawMouseMotion(OpenTK.Platform.WindowHandle,System.Boolean) + commentId: M:OpenTK.Platform.IMouseComponent.EnableRawMouseMotion(OpenTK.Platform.WindowHandle,System.Boolean) + parent: OpenTK.Platform.IMouseComponent + isExternal: true + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_EnableRawMouseMotion_OpenTK_Platform_WindowHandle_System_Boolean_ + name: EnableRawMouseMotion(WindowHandle, bool) + nameWithType: IMouseComponent.EnableRawMouseMotion(WindowHandle, bool) + fullName: OpenTK.Platform.IMouseComponent.EnableRawMouseMotion(OpenTK.Platform.WindowHandle, bool) + nameWithType.vb: IMouseComponent.EnableRawMouseMotion(WindowHandle, Boolean) + fullName.vb: OpenTK.Platform.IMouseComponent.EnableRawMouseMotion(OpenTK.Platform.WindowHandle, Boolean) + name.vb: EnableRawMouseMotion(WindowHandle, Boolean) + spec.csharp: + - uid: OpenTK.Platform.IMouseComponent.EnableRawMouseMotion(OpenTK.Platform.WindowHandle,System.Boolean) + name: EnableRawMouseMotion + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_EnableRawMouseMotion_OpenTK_Platform_WindowHandle_System_Boolean_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: System.Boolean + name: bool + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: ) + spec.vb: + - uid: OpenTK.Platform.IMouseComponent.EnableRawMouseMotion(OpenTK.Platform.WindowHandle,System.Boolean) + name: EnableRawMouseMotion + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_EnableRawMouseMotion_OpenTK_Platform_WindowHandle_System_Boolean_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: System.Boolean + name: Boolean + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: ) +- uid: OpenTK.Platform.Native.Windows.MouseComponent.SupportsRawMouseMotion* + commentId: Overload:OpenTK.Platform.Native.Windows.MouseComponent.SupportsRawMouseMotion + href: OpenTK.Platform.Native.Windows.MouseComponent.html#OpenTK_Platform_Native_Windows_MouseComponent_SupportsRawMouseMotion + name: SupportsRawMouseMotion + nameWithType: MouseComponent.SupportsRawMouseMotion + fullName: OpenTK.Platform.Native.Windows.MouseComponent.SupportsRawMouseMotion +- uid: OpenTK.Platform.IMouseComponent.SupportsRawMouseMotion + commentId: P:OpenTK.Platform.IMouseComponent.SupportsRawMouseMotion + parent: OpenTK.Platform.IMouseComponent + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_SupportsRawMouseMotion + name: SupportsRawMouseMotion + nameWithType: IMouseComponent.SupportsRawMouseMotion + fullName: OpenTK.Platform.IMouseComponent.SupportsRawMouseMotion - uid: OpenTK.Platform.Native.Windows.MouseComponent.GetPosition* commentId: Overload:OpenTK.Platform.Native.Windows.MouseComponent.GetPosition href: OpenTK.Platform.Native.Windows.MouseComponent.html#OpenTK_Platform_Native_Windows_MouseComponent_GetPosition_System_Int32__System_Int32__ name: GetPosition nameWithType: MouseComponent.GetPosition fullName: OpenTK.Platform.Native.Windows.MouseComponent.GetPosition -- uid: OpenTK.Core.Platform.IMouseComponent.GetPosition(System.Int32@,System.Int32@) - commentId: M:OpenTK.Core.Platform.IMouseComponent.GetPosition(System.Int32@,System.Int32@) - parent: OpenTK.Core.Platform.IMouseComponent +- uid: OpenTK.Platform.IMouseComponent.GetPosition(System.Int32@,System.Int32@) + commentId: M:OpenTK.Platform.IMouseComponent.GetPosition(System.Int32@,System.Int32@) + parent: OpenTK.Platform.IMouseComponent isExternal: true - href: OpenTK.Core.Platform.IMouseComponent.html#OpenTK_Core_Platform_IMouseComponent_GetPosition_System_Int32__System_Int32__ + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_GetPosition_System_Int32__System_Int32__ name: GetPosition(out int, out int) nameWithType: IMouseComponent.GetPosition(out int, out int) - fullName: OpenTK.Core.Platform.IMouseComponent.GetPosition(out int, out int) + fullName: OpenTK.Platform.IMouseComponent.GetPosition(out int, out int) nameWithType.vb: IMouseComponent.GetPosition(Integer, Integer) - fullName.vb: OpenTK.Core.Platform.IMouseComponent.GetPosition(Integer, Integer) + fullName.vb: OpenTK.Platform.IMouseComponent.GetPosition(Integer, Integer) name.vb: GetPosition(Integer, Integer) spec.csharp: - - uid: OpenTK.Core.Platform.IMouseComponent.GetPosition(System.Int32@,System.Int32@) + - uid: OpenTK.Platform.IMouseComponent.GetPosition(System.Int32@,System.Int32@) name: GetPosition - href: OpenTK.Core.Platform.IMouseComponent.html#OpenTK_Core_Platform_IMouseComponent_GetPosition_System_Int32__System_Int32__ + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_GetPosition_System_Int32__System_Int32__ - name: ( - name: out - name: " " @@ -844,9 +1053,9 @@ references: href: https://learn.microsoft.com/dotnet/api/system.int32 - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IMouseComponent.GetPosition(System.Int32@,System.Int32@) + - uid: OpenTK.Platform.IMouseComponent.GetPosition(System.Int32@,System.Int32@) name: GetPosition - href: OpenTK.Core.Platform.IMouseComponent.html#OpenTK_Core_Platform_IMouseComponent_GetPosition_System_Int32__System_Int32__ + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_GetPosition_System_Int32__System_Int32__ - name: ( - uid: System.Int32 name: Integer @@ -876,89 +1085,77 @@ references: name: SetPosition nameWithType: MouseComponent.SetPosition fullName: OpenTK.Platform.Native.Windows.MouseComponent.SetPosition -- uid: OpenTK.Core.Platform.IMouseComponent.SetPosition(System.Int32,System.Int32) - commentId: M:OpenTK.Core.Platform.IMouseComponent.SetPosition(System.Int32,System.Int32) - parent: OpenTK.Core.Platform.IMouseComponent - isExternal: true - href: OpenTK.Core.Platform.IMouseComponent.html#OpenTK_Core_Platform_IMouseComponent_SetPosition_System_Int32_System_Int32_ - name: SetPosition(int, int) - nameWithType: IMouseComponent.SetPosition(int, int) - fullName: OpenTK.Core.Platform.IMouseComponent.SetPosition(int, int) - nameWithType.vb: IMouseComponent.SetPosition(Integer, Integer) - fullName.vb: OpenTK.Core.Platform.IMouseComponent.SetPosition(Integer, Integer) - name.vb: SetPosition(Integer, Integer) - spec.csharp: - - uid: OpenTK.Core.Platform.IMouseComponent.SetPosition(System.Int32,System.Int32) - name: SetPosition - href: OpenTK.Core.Platform.IMouseComponent.html#OpenTK_Core_Platform_IMouseComponent_SetPosition_System_Int32_System_Int32_ - - name: ( - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) - spec.vb: - - uid: OpenTK.Core.Platform.IMouseComponent.SetPosition(System.Int32,System.Int32) - name: SetPosition - href: OpenTK.Core.Platform.IMouseComponent.html#OpenTK_Core_Platform_IMouseComponent_SetPosition_System_Int32_System_Int32_ - - name: ( - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) - uid: OpenTK.Platform.Native.Windows.MouseComponent.GetMouseState* commentId: Overload:OpenTK.Platform.Native.Windows.MouseComponent.GetMouseState - href: OpenTK.Platform.Native.Windows.MouseComponent.html#OpenTK_Platform_Native_Windows_MouseComponent_GetMouseState_OpenTK_Core_Platform_MouseState__ + href: OpenTK.Platform.Native.Windows.MouseComponent.html#OpenTK_Platform_Native_Windows_MouseComponent_GetMouseState_OpenTK_Platform_MouseState__ name: GetMouseState nameWithType: MouseComponent.GetMouseState fullName: OpenTK.Platform.Native.Windows.MouseComponent.GetMouseState -- uid: OpenTK.Core.Platform.IMouseComponent.GetMouseState(OpenTK.Core.Platform.MouseState@) - commentId: M:OpenTK.Core.Platform.IMouseComponent.GetMouseState(OpenTK.Core.Platform.MouseState@) - parent: OpenTK.Core.Platform.IMouseComponent - href: OpenTK.Core.Platform.IMouseComponent.html#OpenTK_Core_Platform_IMouseComponent_GetMouseState_OpenTK_Core_Platform_MouseState__ +- uid: OpenTK.Platform.IMouseComponent.GetMouseState(OpenTK.Platform.MouseState@) + commentId: M:OpenTK.Platform.IMouseComponent.GetMouseState(OpenTK.Platform.MouseState@) + parent: OpenTK.Platform.IMouseComponent + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_GetMouseState_OpenTK_Platform_MouseState__ name: GetMouseState(out MouseState) nameWithType: IMouseComponent.GetMouseState(out MouseState) - fullName: OpenTK.Core.Platform.IMouseComponent.GetMouseState(out OpenTK.Core.Platform.MouseState) + fullName: OpenTK.Platform.IMouseComponent.GetMouseState(out OpenTK.Platform.MouseState) nameWithType.vb: IMouseComponent.GetMouseState(MouseState) - fullName.vb: OpenTK.Core.Platform.IMouseComponent.GetMouseState(OpenTK.Core.Platform.MouseState) + fullName.vb: OpenTK.Platform.IMouseComponent.GetMouseState(OpenTK.Platform.MouseState) name.vb: GetMouseState(MouseState) spec.csharp: - - uid: OpenTK.Core.Platform.IMouseComponent.GetMouseState(OpenTK.Core.Platform.MouseState@) + - uid: OpenTK.Platform.IMouseComponent.GetMouseState(OpenTK.Platform.MouseState@) name: GetMouseState - href: OpenTK.Core.Platform.IMouseComponent.html#OpenTK_Core_Platform_IMouseComponent_GetMouseState_OpenTK_Core_Platform_MouseState__ + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_GetMouseState_OpenTK_Platform_MouseState__ - name: ( - name: out - name: " " - - uid: OpenTK.Core.Platform.MouseState + - uid: OpenTK.Platform.MouseState name: MouseState - href: OpenTK.Core.Platform.MouseState.html + href: OpenTK.Platform.MouseState.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IMouseComponent.GetMouseState(OpenTK.Core.Platform.MouseState@) + - uid: OpenTK.Platform.IMouseComponent.GetMouseState(OpenTK.Platform.MouseState@) name: GetMouseState - href: OpenTK.Core.Platform.IMouseComponent.html#OpenTK_Core_Platform_IMouseComponent_GetMouseState_OpenTK_Core_Platform_MouseState__ + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_GetMouseState_OpenTK_Platform_MouseState__ - name: ( - - uid: OpenTK.Core.Platform.MouseState + - uid: OpenTK.Platform.MouseState name: MouseState - href: OpenTK.Core.Platform.MouseState.html + href: OpenTK.Platform.MouseState.html - name: ) -- uid: OpenTK.Core.Platform.MouseState - commentId: T:OpenTK.Core.Platform.MouseState - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.MouseState.html +- uid: OpenTK.Platform.MouseState + commentId: T:OpenTK.Platform.MouseState + parent: OpenTK.Platform + href: OpenTK.Platform.MouseState.html name: MouseState nameWithType: MouseState - fullName: OpenTK.Core.Platform.MouseState + fullName: OpenTK.Platform.MouseState +- uid: OpenTK.Platform.Native.Windows.MouseComponent.IsRawMouseMotionEnabled* + commentId: Overload:OpenTK.Platform.Native.Windows.MouseComponent.IsRawMouseMotionEnabled + href: OpenTK.Platform.Native.Windows.MouseComponent.html#OpenTK_Platform_Native_Windows_MouseComponent_IsRawMouseMotionEnabled_OpenTK_Platform_WindowHandle_ + name: IsRawMouseMotionEnabled + nameWithType: MouseComponent.IsRawMouseMotionEnabled + fullName: OpenTK.Platform.Native.Windows.MouseComponent.IsRawMouseMotionEnabled +- uid: OpenTK.Platform.WindowHandle + commentId: T:OpenTK.Platform.WindowHandle + parent: OpenTK.Platform + href: OpenTK.Platform.WindowHandle.html + name: WindowHandle + nameWithType: WindowHandle + fullName: OpenTK.Platform.WindowHandle +- uid: OpenTK.Platform.RawMouseMoveEventArgs + commentId: T:OpenTK.Platform.RawMouseMoveEventArgs + href: OpenTK.Platform.RawMouseMoveEventArgs.html + name: RawMouseMoveEventArgs + nameWithType: RawMouseMoveEventArgs + fullName: OpenTK.Platform.RawMouseMoveEventArgs +- uid: OpenTK.Platform.MouseMoveEventArgs + commentId: T:OpenTK.Platform.MouseMoveEventArgs + href: OpenTK.Platform.MouseMoveEventArgs.html + name: MouseMoveEventArgs + nameWithType: MouseMoveEventArgs + fullName: OpenTK.Platform.MouseMoveEventArgs +- uid: OpenTK.Platform.Native.Windows.MouseComponent.EnableRawMouseMotion* + commentId: Overload:OpenTK.Platform.Native.Windows.MouseComponent.EnableRawMouseMotion + href: OpenTK.Platform.Native.Windows.MouseComponent.html#OpenTK_Platform_Native_Windows_MouseComponent_EnableRawMouseMotion_OpenTK_Platform_WindowHandle_System_Boolean_ + name: EnableRawMouseMotion + nameWithType: MouseComponent.EnableRawMouseMotion + fullName: OpenTK.Platform.Native.Windows.MouseComponent.EnableRawMouseMotion diff --git a/api/OpenTK.Platform.Native.Windows.OpenGLComponent.yml b/api/OpenTK.Platform.Native.Windows.OpenGLComponent.yml index 3360b94d..cae915f1 100644 --- a/api/OpenTK.Platform.Native.Windows.OpenGLComponent.yml +++ b/api/OpenTK.Platform.Native.Windows.OpenGLComponent.yml @@ -9,22 +9,22 @@ items: - OpenTK.Platform.Native.Windows.OpenGLComponent.CanCreateFromWindow - OpenTK.Platform.Native.Windows.OpenGLComponent.CanShareContexts - OpenTK.Platform.Native.Windows.OpenGLComponent.CreateFromSurface - - OpenTK.Platform.Native.Windows.OpenGLComponent.CreateFromWindow(OpenTK.Core.Platform.WindowHandle) - - OpenTK.Platform.Native.Windows.OpenGLComponent.DestroyContext(OpenTK.Core.Platform.OpenGLContextHandle) - - OpenTK.Platform.Native.Windows.OpenGLComponent.GetBindingsContext(OpenTK.Core.Platform.OpenGLContextHandle) + - OpenTK.Platform.Native.Windows.OpenGLComponent.CreateFromWindow(OpenTK.Platform.WindowHandle) + - OpenTK.Platform.Native.Windows.OpenGLComponent.DestroyContext(OpenTK.Platform.OpenGLContextHandle) + - OpenTK.Platform.Native.Windows.OpenGLComponent.GetBindingsContext(OpenTK.Platform.OpenGLContextHandle) - OpenTK.Platform.Native.Windows.OpenGLComponent.GetCurrentContext - - OpenTK.Platform.Native.Windows.OpenGLComponent.GetHGLRC(OpenTK.Core.Platform.OpenGLContextHandle) - - OpenTK.Platform.Native.Windows.OpenGLComponent.GetProcedureAddress(OpenTK.Core.Platform.OpenGLContextHandle,System.String) - - OpenTK.Platform.Native.Windows.OpenGLComponent.GetSharedContext(OpenTK.Core.Platform.OpenGLContextHandle) + - OpenTK.Platform.Native.Windows.OpenGLComponent.GetHGLRC(OpenTK.Platform.OpenGLContextHandle) + - OpenTK.Platform.Native.Windows.OpenGLComponent.GetProcedureAddress(OpenTK.Platform.OpenGLContextHandle,System.String) + - OpenTK.Platform.Native.Windows.OpenGLComponent.GetSharedContext(OpenTK.Platform.OpenGLContextHandle) - OpenTK.Platform.Native.Windows.OpenGLComponent.GetSwapInterval - - OpenTK.Platform.Native.Windows.OpenGLComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + - OpenTK.Platform.Native.Windows.OpenGLComponent.Initialize(OpenTK.Platform.ToolkitOptions) - OpenTK.Platform.Native.Windows.OpenGLComponent.Logger - OpenTK.Platform.Native.Windows.OpenGLComponent.Name - OpenTK.Platform.Native.Windows.OpenGLComponent.Provides - - OpenTK.Platform.Native.Windows.OpenGLComponent.SetCurrentContext(OpenTK.Core.Platform.OpenGLContextHandle) + - OpenTK.Platform.Native.Windows.OpenGLComponent.SetCurrentContext(OpenTK.Platform.OpenGLContextHandle) - OpenTK.Platform.Native.Windows.OpenGLComponent.SetSwapInterval(System.Int32) - - OpenTK.Platform.Native.Windows.OpenGLComponent.SwapBuffers(OpenTK.Core.Platform.OpenGLContextHandle) - - OpenTK.Platform.Native.Windows.OpenGLComponent.UseDwmFlushIfApplicable(OpenTK.Core.Platform.OpenGLContextHandle,System.Boolean) + - OpenTK.Platform.Native.Windows.OpenGLComponent.SwapBuffers(OpenTK.Platform.OpenGLContextHandle) + - OpenTK.Platform.Native.Windows.OpenGLComponent.UseDwmFlushIfApplicable(OpenTK.Platform.OpenGLContextHandle,System.Boolean) langs: - csharp - vb @@ -33,15 +33,11 @@ items: fullName: OpenTK.Platform.Native.Windows.OpenGLComponent type: Class source: - remote: - path: src/OpenTK.Platform.Native/Windows/OpenGLComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: OpenGLComponent - path: opentk/src/OpenTK.Platform.Native/Windows/OpenGLComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\OpenGLComponent.cs startLine: 26 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows syntax: content: 'public class OpenGLComponent : IOpenGLComponent, IPalComponent' @@ -49,8 +45,8 @@ items: inheritance: - System.Object implements: - - OpenTK.Core.Platform.IOpenGLComponent - - OpenTK.Core.Platform.IPalComponent + - OpenTK.Platform.IOpenGLComponent + - OpenTK.Platform.IPalComponent inheritedMembers: - System.Object.Equals(System.Object) - System.Object.Equals(System.Object,System.Object) @@ -71,15 +67,11 @@ items: fullName: OpenTK.Platform.Native.Windows.OpenGLComponent.Name type: Property source: - remote: - path: src/OpenTK.Platform.Native/Windows/OpenGLComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Name - path: opentk/src/OpenTK.Platform.Native/Windows/OpenGLComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\OpenGLComponent.cs startLine: 29 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: Name of the abstraction layer component. example: [] @@ -91,7 +83,7 @@ items: content.vb: Public ReadOnly Property Name As String overload: OpenTK.Platform.Native.Windows.OpenGLComponent.Name* implements: - - OpenTK.Core.Platform.IPalComponent.Name + - OpenTK.Platform.IPalComponent.Name - uid: OpenTK.Platform.Native.Windows.OpenGLComponent.Provides commentId: P:OpenTK.Platform.Native.Windows.OpenGLComponent.Provides id: Provides @@ -104,15 +96,11 @@ items: fullName: OpenTK.Platform.Native.Windows.OpenGLComponent.Provides type: Property source: - remote: - path: src/OpenTK.Platform.Native/Windows/OpenGLComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Provides - path: opentk/src/OpenTK.Platform.Native/Windows/OpenGLComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\OpenGLComponent.cs startLine: 32 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: Specifies which PAL components this object provides. example: [] @@ -120,11 +108,11 @@ items: content: public PalComponents Provides { get; } parameters: [] return: - type: OpenTK.Core.Platform.PalComponents + type: OpenTK.Platform.PalComponents content.vb: Public ReadOnly Property Provides As PalComponents overload: OpenTK.Platform.Native.Windows.OpenGLComponent.Provides* implements: - - OpenTK.Core.Platform.IPalComponent.Provides + - OpenTK.Platform.IPalComponent.Provides - uid: OpenTK.Platform.Native.Windows.OpenGLComponent.Logger commentId: P:OpenTK.Platform.Native.Windows.OpenGLComponent.Logger id: Logger @@ -137,15 +125,11 @@ items: fullName: OpenTK.Platform.Native.Windows.OpenGLComponent.Logger type: Property source: - remote: - path: src/OpenTK.Platform.Native/Windows/OpenGLComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Logger - path: opentk/src/OpenTK.Platform.Native/Windows/OpenGLComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\OpenGLComponent.cs startLine: 35 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: Provides a logger for this component. example: [] @@ -157,28 +141,24 @@ items: content.vb: Public Property Logger As ILogger overload: OpenTK.Platform.Native.Windows.OpenGLComponent.Logger* implements: - - OpenTK.Core.Platform.IPalComponent.Logger -- uid: OpenTK.Platform.Native.Windows.OpenGLComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - commentId: M:OpenTK.Platform.Native.Windows.OpenGLComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - id: Initialize(OpenTK.Core.Platform.ToolkitOptions) + - OpenTK.Platform.IPalComponent.Logger +- uid: OpenTK.Platform.Native.Windows.OpenGLComponent.Initialize(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Native.Windows.OpenGLComponent.Initialize(OpenTK.Platform.ToolkitOptions) + id: Initialize(OpenTK.Platform.ToolkitOptions) parent: OpenTK.Platform.Native.Windows.OpenGLComponent langs: - csharp - vb name: Initialize(ToolkitOptions) nameWithType: OpenGLComponent.Initialize(ToolkitOptions) - fullName: OpenTK.Platform.Native.Windows.OpenGLComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + fullName: OpenTK.Platform.Native.Windows.OpenGLComponent.Initialize(OpenTK.Platform.ToolkitOptions) type: Method source: - remote: - path: src/OpenTK.Platform.Native/Windows/OpenGLComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Initialize - path: opentk/src/OpenTK.Platform.Native/Windows/OpenGLComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\OpenGLComponent.cs startLine: 38 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: Initialize the component. example: [] @@ -186,12 +166,12 @@ items: content: public void Initialize(ToolkitOptions options) parameters: - id: options - type: OpenTK.Core.Platform.ToolkitOptions + type: OpenTK.Platform.ToolkitOptions description: The options to initialize the component with. content.vb: Public Sub Initialize(options As ToolkitOptions) overload: OpenTK.Platform.Native.Windows.OpenGLComponent.Initialize* implements: - - OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + - OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) - uid: OpenTK.Platform.Native.Windows.OpenGLComponent.CanShareContexts commentId: P:OpenTK.Platform.Native.Windows.OpenGLComponent.CanShareContexts id: CanShareContexts @@ -204,15 +184,11 @@ items: fullName: OpenTK.Platform.Native.Windows.OpenGLComponent.CanShareContexts type: Property source: - remote: - path: src/OpenTK.Platform.Native/Windows/OpenGLComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CanShareContexts - path: opentk/src/OpenTK.Platform.Native/Windows/OpenGLComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\OpenGLComponent.cs startLine: 229 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: True if the component driver has the capability to share display lists between OpenGL contexts. example: [] @@ -224,7 +200,7 @@ items: content.vb: Public ReadOnly Property CanShareContexts As Boolean overload: OpenTK.Platform.Native.Windows.OpenGLComponent.CanShareContexts* implements: - - OpenTK.Core.Platform.IOpenGLComponent.CanShareContexts + - OpenTK.Platform.IOpenGLComponent.CanShareContexts - uid: OpenTK.Platform.Native.Windows.OpenGLComponent.CanCreateFromWindow commentId: P:OpenTK.Platform.Native.Windows.OpenGLComponent.CanCreateFromWindow id: CanCreateFromWindow @@ -237,17 +213,13 @@ items: fullName: OpenTK.Platform.Native.Windows.OpenGLComponent.CanCreateFromWindow type: Property source: - remote: - path: src/OpenTK.Platform.Native/Windows/OpenGLComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CanCreateFromWindow - path: opentk/src/OpenTK.Platform.Native/Windows/OpenGLComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\OpenGLComponent.cs startLine: 232 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows - summary: True if the component driver can create a context from windows. + summary: True if the component driver can create a context from windows using . example: [] syntax: content: public bool CanCreateFromWindow { get; } @@ -256,8 +228,11 @@ items: type: System.Boolean content.vb: Public ReadOnly Property CanCreateFromWindow As Boolean overload: OpenTK.Platform.Native.Windows.OpenGLComponent.CanCreateFromWindow* + seealso: + - linkId: OpenTK.Platform.IOpenGLComponent.CreateFromWindow(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IOpenGLComponent.CreateFromWindow(OpenTK.Platform.WindowHandle) implements: - - OpenTK.Core.Platform.IOpenGLComponent.CanCreateFromWindow + - OpenTK.Platform.IOpenGLComponent.CanCreateFromWindow - uid: OpenTK.Platform.Native.Windows.OpenGLComponent.CanCreateFromSurface commentId: P:OpenTK.Platform.Native.Windows.OpenGLComponent.CanCreateFromSurface id: CanCreateFromSurface @@ -270,17 +245,13 @@ items: fullName: OpenTK.Platform.Native.Windows.OpenGLComponent.CanCreateFromSurface type: Property source: - remote: - path: src/OpenTK.Platform.Native/Windows/OpenGLComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CanCreateFromSurface - path: opentk/src/OpenTK.Platform.Native/Windows/OpenGLComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\OpenGLComponent.cs startLine: 235 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows - summary: True if the component driver can create a context from surfaces. + summary: True if the component driver can create a context from surfaces using . example: [] syntax: content: public bool CanCreateFromSurface { get; } @@ -290,7 +261,7 @@ items: content.vb: Public ReadOnly Property CanCreateFromSurface As Boolean overload: OpenTK.Platform.Native.Windows.OpenGLComponent.CanCreateFromSurface* implements: - - OpenTK.Core.Platform.IOpenGLComponent.CanCreateFromSurface + - OpenTK.Platform.IOpenGLComponent.CanCreateFromSurface - uid: OpenTK.Platform.Native.Windows.OpenGLComponent.CreateFromSurface commentId: M:OpenTK.Platform.Native.Windows.OpenGLComponent.CreateFromSurface id: CreateFromSurface @@ -303,48 +274,40 @@ items: fullName: OpenTK.Platform.Native.Windows.OpenGLComponent.CreateFromSurface() type: Method source: - remote: - path: src/OpenTK.Platform.Native/Windows/OpenGLComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateFromSurface - path: opentk/src/OpenTK.Platform.Native/Windows/OpenGLComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\OpenGLComponent.cs startLine: 238 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: Create and OpenGL context for a surface. example: [] syntax: content: public OpenGLContextHandle CreateFromSurface() return: - type: OpenTK.Core.Platform.OpenGLContextHandle + type: OpenTK.Platform.OpenGLContextHandle description: An OpenGL context handle. content.vb: Public Function CreateFromSurface() As OpenGLContextHandle overload: OpenTK.Platform.Native.Windows.OpenGLComponent.CreateFromSurface* implements: - - OpenTK.Core.Platform.IOpenGLComponent.CreateFromSurface -- uid: OpenTK.Platform.Native.Windows.OpenGLComponent.CreateFromWindow(OpenTK.Core.Platform.WindowHandle) - commentId: M:OpenTK.Platform.Native.Windows.OpenGLComponent.CreateFromWindow(OpenTK.Core.Platform.WindowHandle) - id: CreateFromWindow(OpenTK.Core.Platform.WindowHandle) + - OpenTK.Platform.IOpenGLComponent.CreateFromSurface +- uid: OpenTK.Platform.Native.Windows.OpenGLComponent.CreateFromWindow(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.Native.Windows.OpenGLComponent.CreateFromWindow(OpenTK.Platform.WindowHandle) + id: CreateFromWindow(OpenTK.Platform.WindowHandle) parent: OpenTK.Platform.Native.Windows.OpenGLComponent langs: - csharp - vb name: CreateFromWindow(WindowHandle) nameWithType: OpenGLComponent.CreateFromWindow(WindowHandle) - fullName: OpenTK.Platform.Native.Windows.OpenGLComponent.CreateFromWindow(OpenTK.Core.Platform.WindowHandle) + fullName: OpenTK.Platform.Native.Windows.OpenGLComponent.CreateFromWindow(OpenTK.Platform.WindowHandle) type: Method source: - remote: - path: src/OpenTK.Platform.Native/Windows/OpenGLComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateFromWindow - path: opentk/src/OpenTK.Platform.Native/Windows/OpenGLComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\OpenGLComponent.cs startLine: 244 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: Create an OpenGL context for a window. example: [] @@ -352,36 +315,32 @@ items: content: public OpenGLContextHandle CreateFromWindow(WindowHandle handle) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: The window for which the OpenGL context should be created. return: - type: OpenTK.Core.Platform.OpenGLContextHandle + type: OpenTK.Platform.OpenGLContextHandle description: An OpenGL context handle. content.vb: Public Function CreateFromWindow(handle As WindowHandle) As OpenGLContextHandle overload: OpenTK.Platform.Native.Windows.OpenGLComponent.CreateFromWindow* implements: - - OpenTK.Core.Platform.IOpenGLComponent.CreateFromWindow(OpenTK.Core.Platform.WindowHandle) -- uid: OpenTK.Platform.Native.Windows.OpenGLComponent.DestroyContext(OpenTK.Core.Platform.OpenGLContextHandle) - commentId: M:OpenTK.Platform.Native.Windows.OpenGLComponent.DestroyContext(OpenTK.Core.Platform.OpenGLContextHandle) - id: DestroyContext(OpenTK.Core.Platform.OpenGLContextHandle) + - OpenTK.Platform.IOpenGLComponent.CreateFromWindow(OpenTK.Platform.WindowHandle) +- uid: OpenTK.Platform.Native.Windows.OpenGLComponent.DestroyContext(OpenTK.Platform.OpenGLContextHandle) + commentId: M:OpenTK.Platform.Native.Windows.OpenGLComponent.DestroyContext(OpenTK.Platform.OpenGLContextHandle) + id: DestroyContext(OpenTK.Platform.OpenGLContextHandle) parent: OpenTK.Platform.Native.Windows.OpenGLComponent langs: - csharp - vb name: DestroyContext(OpenGLContextHandle) nameWithType: OpenGLComponent.DestroyContext(OpenGLContextHandle) - fullName: OpenTK.Platform.Native.Windows.OpenGLComponent.DestroyContext(OpenTK.Core.Platform.OpenGLContextHandle) + fullName: OpenTK.Platform.Native.Windows.OpenGLComponent.DestroyContext(OpenTK.Platform.OpenGLContextHandle) type: Method source: - remote: - path: src/OpenTK.Platform.Native/Windows/OpenGLComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DestroyContext - path: opentk/src/OpenTK.Platform.Native/Windows/OpenGLComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\OpenGLComponent.cs startLine: 849 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: Destroy an OpenGL context. example: [] @@ -389,7 +348,7 @@ items: content: public void DestroyContext(OpenGLContextHandle handle) parameters: - id: handle - type: OpenTK.Core.Platform.OpenGLContextHandle + type: OpenTK.Platform.OpenGLContextHandle description: Handle to the OpenGL context to destroy. content.vb: Public Sub DestroyContext(handle As OpenGLContextHandle) overload: OpenTK.Platform.Native.Windows.OpenGLComponent.DestroyContext* @@ -398,36 +357,32 @@ items: commentId: T:System.ArgumentNullException description: OpenGL context handle is null. implements: - - OpenTK.Core.Platform.IOpenGLComponent.DestroyContext(OpenTK.Core.Platform.OpenGLContextHandle) -- uid: OpenTK.Platform.Native.Windows.OpenGLComponent.GetBindingsContext(OpenTK.Core.Platform.OpenGLContextHandle) - commentId: M:OpenTK.Platform.Native.Windows.OpenGLComponent.GetBindingsContext(OpenTK.Core.Platform.OpenGLContextHandle) - id: GetBindingsContext(OpenTK.Core.Platform.OpenGLContextHandle) + - OpenTK.Platform.IOpenGLComponent.DestroyContext(OpenTK.Platform.OpenGLContextHandle) +- uid: OpenTK.Platform.Native.Windows.OpenGLComponent.GetBindingsContext(OpenTK.Platform.OpenGLContextHandle) + commentId: M:OpenTK.Platform.Native.Windows.OpenGLComponent.GetBindingsContext(OpenTK.Platform.OpenGLContextHandle) + id: GetBindingsContext(OpenTK.Platform.OpenGLContextHandle) parent: OpenTK.Platform.Native.Windows.OpenGLComponent langs: - csharp - vb name: GetBindingsContext(OpenGLContextHandle) nameWithType: OpenGLComponent.GetBindingsContext(OpenGLContextHandle) - fullName: OpenTK.Platform.Native.Windows.OpenGLComponent.GetBindingsContext(OpenTK.Core.Platform.OpenGLContextHandle) + fullName: OpenTK.Platform.Native.Windows.OpenGLComponent.GetBindingsContext(OpenTK.Platform.OpenGLContextHandle) type: Method source: - remote: - path: src/OpenTK.Platform.Native/Windows/OpenGLComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetBindingsContext - path: opentk/src/OpenTK.Platform.Native/Windows/OpenGLComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\OpenGLComponent.cs startLine: 864 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows - summary: Gets a from an . + summary: Gets a from an . example: [] syntax: content: public IBindingsContext GetBindingsContext(OpenGLContextHandle handle) parameters: - id: handle - type: OpenTK.Core.Platform.OpenGLContextHandle + type: OpenTK.Platform.OpenGLContextHandle description: The handle to get a bindings context for. return: type: OpenTK.IBindingsContext @@ -435,28 +390,24 @@ items: content.vb: Public Function GetBindingsContext(handle As OpenGLContextHandle) As IBindingsContext overload: OpenTK.Platform.Native.Windows.OpenGLComponent.GetBindingsContext* implements: - - OpenTK.Core.Platform.IOpenGLComponent.GetBindingsContext(OpenTK.Core.Platform.OpenGLContextHandle) -- uid: OpenTK.Platform.Native.Windows.OpenGLComponent.GetProcedureAddress(OpenTK.Core.Platform.OpenGLContextHandle,System.String) - commentId: M:OpenTK.Platform.Native.Windows.OpenGLComponent.GetProcedureAddress(OpenTK.Core.Platform.OpenGLContextHandle,System.String) - id: GetProcedureAddress(OpenTK.Core.Platform.OpenGLContextHandle,System.String) + - OpenTK.Platform.IOpenGLComponent.GetBindingsContext(OpenTK.Platform.OpenGLContextHandle) +- uid: OpenTK.Platform.Native.Windows.OpenGLComponent.GetProcedureAddress(OpenTK.Platform.OpenGLContextHandle,System.String) + commentId: M:OpenTK.Platform.Native.Windows.OpenGLComponent.GetProcedureAddress(OpenTK.Platform.OpenGLContextHandle,System.String) + id: GetProcedureAddress(OpenTK.Platform.OpenGLContextHandle,System.String) parent: OpenTK.Platform.Native.Windows.OpenGLComponent langs: - csharp - vb name: GetProcedureAddress(OpenGLContextHandle, string) nameWithType: OpenGLComponent.GetProcedureAddress(OpenGLContextHandle, string) - fullName: OpenTK.Platform.Native.Windows.OpenGLComponent.GetProcedureAddress(OpenTK.Core.Platform.OpenGLContextHandle, string) + fullName: OpenTK.Platform.Native.Windows.OpenGLComponent.GetProcedureAddress(OpenTK.Platform.OpenGLContextHandle, string) type: Method source: - remote: - path: src/OpenTK.Platform.Native/Windows/OpenGLComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetProcedureAddress - path: opentk/src/OpenTK.Platform.Native/Windows/OpenGLComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\OpenGLComponent.cs startLine: 870 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: Get the procedure address for an OpenGL command. example: [] @@ -464,7 +415,7 @@ items: content: public nint GetProcedureAddress(OpenGLContextHandle handle, string procedureName) parameters: - id: handle - type: OpenTK.Core.Platform.OpenGLContextHandle + type: OpenTK.Platform.OpenGLContextHandle description: Handle to an OpenGL context. - id: procedureName type: System.String @@ -479,9 +430,9 @@ items: commentId: T:System.ArgumentNullException description: OpenGL context handle or procedure name is null. implements: - - OpenTK.Core.Platform.IOpenGLComponent.GetProcedureAddress(OpenTK.Core.Platform.OpenGLContextHandle,System.String) + - OpenTK.Platform.IOpenGLComponent.GetProcedureAddress(OpenTK.Platform.OpenGLContextHandle,System.String) nameWithType.vb: OpenGLComponent.GetProcedureAddress(OpenGLContextHandle, String) - fullName.vb: OpenTK.Platform.Native.Windows.OpenGLComponent.GetProcedureAddress(OpenTK.Core.Platform.OpenGLContextHandle, String) + fullName.vb: OpenTK.Platform.Native.Windows.OpenGLComponent.GetProcedureAddress(OpenTK.Platform.OpenGLContextHandle, String) name.vb: GetProcedureAddress(OpenGLContextHandle, String) - uid: OpenTK.Platform.Native.Windows.OpenGLComponent.GetCurrentContext commentId: M:OpenTK.Platform.Native.Windows.OpenGLComponent.GetCurrentContext @@ -495,48 +446,40 @@ items: fullName: OpenTK.Platform.Native.Windows.OpenGLComponent.GetCurrentContext() type: Method source: - remote: - path: src/OpenTK.Platform.Native/Windows/OpenGLComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetCurrentContext - path: opentk/src/OpenTK.Platform.Native/Windows/OpenGLComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\OpenGLComponent.cs startLine: 878 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: Get the current OpenGL context for this thread. example: [] syntax: content: public OpenGLContextHandle? GetCurrentContext() return: - type: OpenTK.Core.Platform.OpenGLContextHandle + type: OpenTK.Platform.OpenGLContextHandle description: Handle to the current OpenGL context, null if none are current. content.vb: Public Function GetCurrentContext() As OpenGLContextHandle overload: OpenTK.Platform.Native.Windows.OpenGLComponent.GetCurrentContext* implements: - - OpenTK.Core.Platform.IOpenGLComponent.GetCurrentContext -- uid: OpenTK.Platform.Native.Windows.OpenGLComponent.SetCurrentContext(OpenTK.Core.Platform.OpenGLContextHandle) - commentId: M:OpenTK.Platform.Native.Windows.OpenGLComponent.SetCurrentContext(OpenTK.Core.Platform.OpenGLContextHandle) - id: SetCurrentContext(OpenTK.Core.Platform.OpenGLContextHandle) + - OpenTK.Platform.IOpenGLComponent.GetCurrentContext +- uid: OpenTK.Platform.Native.Windows.OpenGLComponent.SetCurrentContext(OpenTK.Platform.OpenGLContextHandle) + commentId: M:OpenTK.Platform.Native.Windows.OpenGLComponent.SetCurrentContext(OpenTK.Platform.OpenGLContextHandle) + id: SetCurrentContext(OpenTK.Platform.OpenGLContextHandle) parent: OpenTK.Platform.Native.Windows.OpenGLComponent langs: - csharp - vb name: SetCurrentContext(OpenGLContextHandle?) nameWithType: OpenGLComponent.SetCurrentContext(OpenGLContextHandle?) - fullName: OpenTK.Platform.Native.Windows.OpenGLComponent.SetCurrentContext(OpenTK.Core.Platform.OpenGLContextHandle?) + fullName: OpenTK.Platform.Native.Windows.OpenGLComponent.SetCurrentContext(OpenTK.Platform.OpenGLContextHandle?) type: Method source: - remote: - path: src/OpenTK.Platform.Native/Windows/OpenGLComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetCurrentContext - path: opentk/src/OpenTK.Platform.Native/Windows/OpenGLComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\OpenGLComponent.cs startLine: 892 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: Set the current OpenGL context for this thread. example: [] @@ -544,7 +487,7 @@ items: content: public bool SetCurrentContext(OpenGLContextHandle? handle) parameters: - id: handle - type: OpenTK.Core.Platform.OpenGLContextHandle + type: OpenTK.Platform.OpenGLContextHandle description: Handle to the OpenGL context to make current, or null to make none current. return: type: System.Boolean @@ -552,31 +495,27 @@ items: content.vb: Public Function SetCurrentContext(handle As OpenGLContextHandle) As Boolean overload: OpenTK.Platform.Native.Windows.OpenGLComponent.SetCurrentContext* implements: - - OpenTK.Core.Platform.IOpenGLComponent.SetCurrentContext(OpenTK.Core.Platform.OpenGLContextHandle) + - OpenTK.Platform.IOpenGLComponent.SetCurrentContext(OpenTK.Platform.OpenGLContextHandle) nameWithType.vb: OpenGLComponent.SetCurrentContext(OpenGLContextHandle) - fullName.vb: OpenTK.Platform.Native.Windows.OpenGLComponent.SetCurrentContext(OpenTK.Core.Platform.OpenGLContextHandle) + fullName.vb: OpenTK.Platform.Native.Windows.OpenGLComponent.SetCurrentContext(OpenTK.Platform.OpenGLContextHandle) name.vb: SetCurrentContext(OpenGLContextHandle) -- uid: OpenTK.Platform.Native.Windows.OpenGLComponent.GetSharedContext(OpenTK.Core.Platform.OpenGLContextHandle) - commentId: M:OpenTK.Platform.Native.Windows.OpenGLComponent.GetSharedContext(OpenTK.Core.Platform.OpenGLContextHandle) - id: GetSharedContext(OpenTK.Core.Platform.OpenGLContextHandle) +- uid: OpenTK.Platform.Native.Windows.OpenGLComponent.GetSharedContext(OpenTK.Platform.OpenGLContextHandle) + commentId: M:OpenTK.Platform.Native.Windows.OpenGLComponent.GetSharedContext(OpenTK.Platform.OpenGLContextHandle) + id: GetSharedContext(OpenTK.Platform.OpenGLContextHandle) parent: OpenTK.Platform.Native.Windows.OpenGLComponent langs: - csharp - vb name: GetSharedContext(OpenGLContextHandle) nameWithType: OpenGLComponent.GetSharedContext(OpenGLContextHandle) - fullName: OpenTK.Platform.Native.Windows.OpenGLComponent.GetSharedContext(OpenTK.Core.Platform.OpenGLContextHandle) + fullName: OpenTK.Platform.Native.Windows.OpenGLComponent.GetSharedContext(OpenTK.Platform.OpenGLContextHandle) type: Method source: - remote: - path: src/OpenTK.Platform.Native/Windows/OpenGLComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetSharedContext - path: opentk/src/OpenTK.Platform.Native/Windows/OpenGLComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\OpenGLComponent.cs startLine: 919 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: Gets the context which the given context shares display lists with. example: [] @@ -584,15 +523,15 @@ items: content: public OpenGLContextHandle? GetSharedContext(OpenGLContextHandle handle) parameters: - id: handle - type: OpenTK.Core.Platform.OpenGLContextHandle + type: OpenTK.Platform.OpenGLContextHandle description: Handle to the OpenGL context. return: - type: OpenTK.Core.Platform.OpenGLContextHandle + type: OpenTK.Platform.OpenGLContextHandle description: Handle to the OpenGL context the given context shares display lists with. content.vb: Public Function GetSharedContext(handle As OpenGLContextHandle) As OpenGLContextHandle overload: OpenTK.Platform.Native.Windows.OpenGLComponent.GetSharedContext* implements: - - OpenTK.Core.Platform.IOpenGLComponent.GetSharedContext(OpenTK.Core.Platform.OpenGLContextHandle) + - OpenTK.Platform.IOpenGLComponent.GetSharedContext(OpenTK.Platform.OpenGLContextHandle) - uid: OpenTK.Platform.Native.Windows.OpenGLComponent.SetSwapInterval(System.Int32) commentId: M:OpenTK.Platform.Native.Windows.OpenGLComponent.SetSwapInterval(System.Int32) id: SetSwapInterval(System.Int32) @@ -605,15 +544,11 @@ items: fullName: OpenTK.Platform.Native.Windows.OpenGLComponent.SetSwapInterval(int) type: Method source: - remote: - path: src/OpenTK.Platform.Native/Windows/OpenGLComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetSwapInterval - path: opentk/src/OpenTK.Platform.Native/Windows/OpenGLComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\OpenGLComponent.cs startLine: 926 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: Sets the swap interval of the current OpenGL context. example: [] @@ -626,7 +561,7 @@ items: content.vb: Public Sub SetSwapInterval(interval As Integer) overload: OpenTK.Platform.Native.Windows.OpenGLComponent.SetSwapInterval* implements: - - OpenTK.Core.Platform.IOpenGLComponent.SetSwapInterval(System.Int32) + - OpenTK.Platform.IOpenGLComponent.SetSwapInterval(System.Int32) nameWithType.vb: OpenGLComponent.SetSwapInterval(Integer) fullName.vb: OpenTK.Platform.Native.Windows.OpenGLComponent.SetSwapInterval(Integer) name.vb: SetSwapInterval(Integer) @@ -642,15 +577,11 @@ items: fullName: OpenTK.Platform.Native.Windows.OpenGLComponent.GetSwapInterval() type: Method source: - remote: - path: src/OpenTK.Platform.Native/Windows/OpenGLComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetSwapInterval - path: opentk/src/OpenTK.Platform.Native/Windows/OpenGLComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\OpenGLComponent.cs startLine: 939 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: Gets the swap interval of the current OpenGL context. example: [] @@ -662,28 +593,24 @@ items: content.vb: Public Function GetSwapInterval() As Integer overload: OpenTK.Platform.Native.Windows.OpenGLComponent.GetSwapInterval* implements: - - OpenTK.Core.Platform.IOpenGLComponent.GetSwapInterval -- uid: OpenTK.Platform.Native.Windows.OpenGLComponent.SwapBuffers(OpenTK.Core.Platform.OpenGLContextHandle) - commentId: M:OpenTK.Platform.Native.Windows.OpenGLComponent.SwapBuffers(OpenTK.Core.Platform.OpenGLContextHandle) - id: SwapBuffers(OpenTK.Core.Platform.OpenGLContextHandle) + - OpenTK.Platform.IOpenGLComponent.GetSwapInterval +- uid: OpenTK.Platform.Native.Windows.OpenGLComponent.SwapBuffers(OpenTK.Platform.OpenGLContextHandle) + commentId: M:OpenTK.Platform.Native.Windows.OpenGLComponent.SwapBuffers(OpenTK.Platform.OpenGLContextHandle) + id: SwapBuffers(OpenTK.Platform.OpenGLContextHandle) parent: OpenTK.Platform.Native.Windows.OpenGLComponent langs: - csharp - vb name: SwapBuffers(OpenGLContextHandle) nameWithType: OpenGLComponent.SwapBuffers(OpenGLContextHandle) - fullName: OpenTK.Platform.Native.Windows.OpenGLComponent.SwapBuffers(OpenTK.Core.Platform.OpenGLContextHandle) + fullName: OpenTK.Platform.Native.Windows.OpenGLComponent.SwapBuffers(OpenTK.Platform.OpenGLContextHandle) type: Method source: - remote: - path: src/OpenTK.Platform.Native/Windows/OpenGLComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SwapBuffers - path: opentk/src/OpenTK.Platform.Native/Windows/OpenGLComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\OpenGLComponent.cs startLine: 957 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: Swaps the buffer of the specified context. example: [] @@ -691,36 +618,32 @@ items: content: public void SwapBuffers(OpenGLContextHandle handle) parameters: - id: handle - type: OpenTK.Core.Platform.OpenGLContextHandle + type: OpenTK.Platform.OpenGLContextHandle description: Handle to the context. content.vb: Public Sub SwapBuffers(handle As OpenGLContextHandle) overload: OpenTK.Platform.Native.Windows.OpenGLComponent.SwapBuffers* implements: - - OpenTK.Core.Platform.IOpenGLComponent.SwapBuffers(OpenTK.Core.Platform.OpenGLContextHandle) -- uid: OpenTK.Platform.Native.Windows.OpenGLComponent.UseDwmFlushIfApplicable(OpenTK.Core.Platform.OpenGLContextHandle,System.Boolean) - commentId: M:OpenTK.Platform.Native.Windows.OpenGLComponent.UseDwmFlushIfApplicable(OpenTK.Core.Platform.OpenGLContextHandle,System.Boolean) - id: UseDwmFlushIfApplicable(OpenTK.Core.Platform.OpenGLContextHandle,System.Boolean) + - OpenTK.Platform.IOpenGLComponent.SwapBuffers(OpenTK.Platform.OpenGLContextHandle) +- uid: OpenTK.Platform.Native.Windows.OpenGLComponent.UseDwmFlushIfApplicable(OpenTK.Platform.OpenGLContextHandle,System.Boolean) + commentId: M:OpenTK.Platform.Native.Windows.OpenGLComponent.UseDwmFlushIfApplicable(OpenTK.Platform.OpenGLContextHandle,System.Boolean) + id: UseDwmFlushIfApplicable(OpenTK.Platform.OpenGLContextHandle,System.Boolean) parent: OpenTK.Platform.Native.Windows.OpenGLComponent langs: - csharp - vb name: UseDwmFlushIfApplicable(OpenGLContextHandle, bool) nameWithType: OpenGLComponent.UseDwmFlushIfApplicable(OpenGLContextHandle, bool) - fullName: OpenTK.Platform.Native.Windows.OpenGLComponent.UseDwmFlushIfApplicable(OpenTK.Core.Platform.OpenGLContextHandle, bool) + fullName: OpenTK.Platform.Native.Windows.OpenGLComponent.UseDwmFlushIfApplicable(OpenTK.Platform.OpenGLContextHandle, bool) type: Method source: - remote: - path: src/OpenTK.Platform.Native/Windows/OpenGLComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: UseDwmFlushIfApplicable - path: opentk/src/OpenTK.Platform.Native/Windows/OpenGLComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\OpenGLComponent.cs startLine: 1003 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: >- - Sets whether calls to should use DwmFlush() to sync if DWM compositing is enabled. + Sets whether calls to should use DwmFlush() to sync if DWM compositing is enabled. This can improve vsync performance on systems with multiple monitors using different refresh rates, but is likely to break in a multi-window scenario. @@ -733,7 +656,7 @@ items: content: public void UseDwmFlushIfApplicable(OpenGLContextHandle handle, bool enable) parameters: - id: handle - type: OpenTK.Core.Platform.OpenGLContextHandle + type: OpenTK.Platform.OpenGLContextHandle description: The OpenGL context that should DwmFlush() setting. - id: enable type: System.Boolean @@ -741,29 +664,25 @@ items: content.vb: Public Sub UseDwmFlushIfApplicable(handle As OpenGLContextHandle, enable As Boolean) overload: OpenTK.Platform.Native.Windows.OpenGLComponent.UseDwmFlushIfApplicable* nameWithType.vb: OpenGLComponent.UseDwmFlushIfApplicable(OpenGLContextHandle, Boolean) - fullName.vb: OpenTK.Platform.Native.Windows.OpenGLComponent.UseDwmFlushIfApplicable(OpenTK.Core.Platform.OpenGLContextHandle, Boolean) + fullName.vb: OpenTK.Platform.Native.Windows.OpenGLComponent.UseDwmFlushIfApplicable(OpenTK.Platform.OpenGLContextHandle, Boolean) name.vb: UseDwmFlushIfApplicable(OpenGLContextHandle, Boolean) -- uid: OpenTK.Platform.Native.Windows.OpenGLComponent.GetHGLRC(OpenTK.Core.Platform.OpenGLContextHandle) - commentId: M:OpenTK.Platform.Native.Windows.OpenGLComponent.GetHGLRC(OpenTK.Core.Platform.OpenGLContextHandle) - id: GetHGLRC(OpenTK.Core.Platform.OpenGLContextHandle) +- uid: OpenTK.Platform.Native.Windows.OpenGLComponent.GetHGLRC(OpenTK.Platform.OpenGLContextHandle) + commentId: M:OpenTK.Platform.Native.Windows.OpenGLComponent.GetHGLRC(OpenTK.Platform.OpenGLContextHandle) + id: GetHGLRC(OpenTK.Platform.OpenGLContextHandle) parent: OpenTK.Platform.Native.Windows.OpenGLComponent langs: - csharp - vb name: GetHGLRC(OpenGLContextHandle) nameWithType: OpenGLComponent.GetHGLRC(OpenGLContextHandle) - fullName: OpenTK.Platform.Native.Windows.OpenGLComponent.GetHGLRC(OpenTK.Core.Platform.OpenGLContextHandle) + fullName: OpenTK.Platform.Native.Windows.OpenGLComponent.GetHGLRC(OpenTK.Platform.OpenGLContextHandle) type: Method source: - remote: - path: src/OpenTK.Platform.Native/Windows/OpenGLComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetHGLRC - path: opentk/src/OpenTK.Platform.Native/Windows/OpenGLComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\OpenGLComponent.cs startLine: 1017 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: >- Gets the win32 HGLRC opengl context handle associated with the context. @@ -776,7 +695,7 @@ items: content: public nint GetHGLRC(OpenGLContextHandle handle) parameters: - id: handle - type: OpenTK.Core.Platform.OpenGLContextHandle + type: OpenTK.Platform.OpenGLContextHandle description: The OpenGL context to get the associated win32 HGLRC handle from. return: type: System.IntPtr @@ -833,20 +752,20 @@ references: nameWithType.vb: Object fullName.vb: Object name.vb: Object -- uid: OpenTK.Core.Platform.IOpenGLComponent - commentId: T:OpenTK.Core.Platform.IOpenGLComponent - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.IOpenGLComponent.html +- uid: OpenTK.Platform.IOpenGLComponent + commentId: T:OpenTK.Platform.IOpenGLComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IOpenGLComponent.html name: IOpenGLComponent nameWithType: IOpenGLComponent - fullName: OpenTK.Core.Platform.IOpenGLComponent -- uid: OpenTK.Core.Platform.IPalComponent - commentId: T:OpenTK.Core.Platform.IPalComponent - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.IPalComponent.html + fullName: OpenTK.Platform.IOpenGLComponent +- uid: OpenTK.Platform.IPalComponent + commentId: T:OpenTK.Platform.IPalComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IPalComponent.html name: IPalComponent nameWithType: IPalComponent - fullName: OpenTK.Core.Platform.IPalComponent + fullName: OpenTK.Platform.IPalComponent - uid: System.Object.Equals(System.Object) commentId: M:System.Object.Equals(System.Object) parent: System.Object @@ -1073,49 +992,41 @@ references: name: System nameWithType: System fullName: System -- uid: OpenTK.Core.Platform - commentId: N:OpenTK.Core.Platform +- uid: OpenTK.Platform + commentId: N:OpenTK.Platform href: OpenTK.html - name: OpenTK.Core.Platform - nameWithType: OpenTK.Core.Platform - fullName: OpenTK.Core.Platform + name: OpenTK.Platform + nameWithType: OpenTK.Platform + fullName: OpenTK.Platform spec.csharp: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html spec.vb: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html - uid: OpenTK.Platform.Native.Windows.OpenGLComponent.Name* commentId: Overload:OpenTK.Platform.Native.Windows.OpenGLComponent.Name href: OpenTK.Platform.Native.Windows.OpenGLComponent.html#OpenTK_Platform_Native_Windows_OpenGLComponent_Name name: Name nameWithType: OpenGLComponent.Name fullName: OpenTK.Platform.Native.Windows.OpenGLComponent.Name -- uid: OpenTK.Core.Platform.IPalComponent.Name - commentId: P:OpenTK.Core.Platform.IPalComponent.Name - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Name +- uid: OpenTK.Platform.IPalComponent.Name + commentId: P:OpenTK.Platform.IPalComponent.Name + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Name name: Name nameWithType: IPalComponent.Name - fullName: OpenTK.Core.Platform.IPalComponent.Name + fullName: OpenTK.Platform.IPalComponent.Name - uid: System.String commentId: T:System.String parent: System @@ -1133,33 +1044,33 @@ references: name: Provides nameWithType: OpenGLComponent.Provides fullName: OpenTK.Platform.Native.Windows.OpenGLComponent.Provides -- uid: OpenTK.Core.Platform.IPalComponent.Provides - commentId: P:OpenTK.Core.Platform.IPalComponent.Provides - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Provides +- uid: OpenTK.Platform.IPalComponent.Provides + commentId: P:OpenTK.Platform.IPalComponent.Provides + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Provides name: Provides nameWithType: IPalComponent.Provides - fullName: OpenTK.Core.Platform.IPalComponent.Provides -- uid: OpenTK.Core.Platform.PalComponents - commentId: T:OpenTK.Core.Platform.PalComponents - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.PalComponents.html + fullName: OpenTK.Platform.IPalComponent.Provides +- uid: OpenTK.Platform.PalComponents + commentId: T:OpenTK.Platform.PalComponents + parent: OpenTK.Platform + href: OpenTK.Platform.PalComponents.html name: PalComponents nameWithType: PalComponents - fullName: OpenTK.Core.Platform.PalComponents + fullName: OpenTK.Platform.PalComponents - uid: OpenTK.Platform.Native.Windows.OpenGLComponent.Logger* commentId: Overload:OpenTK.Platform.Native.Windows.OpenGLComponent.Logger href: OpenTK.Platform.Native.Windows.OpenGLComponent.html#OpenTK_Platform_Native_Windows_OpenGLComponent_Logger name: Logger nameWithType: OpenGLComponent.Logger fullName: OpenTK.Platform.Native.Windows.OpenGLComponent.Logger -- uid: OpenTK.Core.Platform.IPalComponent.Logger - commentId: P:OpenTK.Core.Platform.IPalComponent.Logger - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Logger +- uid: OpenTK.Platform.IPalComponent.Logger + commentId: P:OpenTK.Platform.IPalComponent.Logger + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Logger name: Logger nameWithType: IPalComponent.Logger - fullName: OpenTK.Core.Platform.IPalComponent.Logger + fullName: OpenTK.Platform.IPalComponent.Logger - uid: OpenTK.Core.Utility.ILogger commentId: T:OpenTK.Core.Utility.ILogger parent: OpenTK.Core.Utility @@ -1199,55 +1110,55 @@ references: href: OpenTK.Core.Utility.html - uid: OpenTK.Platform.Native.Windows.OpenGLComponent.Initialize* commentId: Overload:OpenTK.Platform.Native.Windows.OpenGLComponent.Initialize - href: OpenTK.Platform.Native.Windows.OpenGLComponent.html#OpenTK_Platform_Native_Windows_OpenGLComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + href: OpenTK.Platform.Native.Windows.OpenGLComponent.html#OpenTK_Platform_Native_Windows_OpenGLComponent_Initialize_OpenTK_Platform_ToolkitOptions_ name: Initialize nameWithType: OpenGLComponent.Initialize fullName: OpenTK.Platform.Native.Windows.OpenGLComponent.Initialize -- uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - commentId: M:OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ +- uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ name: Initialize(ToolkitOptions) nameWithType: IPalComponent.Initialize(ToolkitOptions) - fullName: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + fullName: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) spec.csharp: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + - uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.ToolkitOptions + - uid: OpenTK.Platform.ToolkitOptions name: ToolkitOptions - href: OpenTK.Core.Platform.ToolkitOptions.html + href: OpenTK.Platform.ToolkitOptions.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + - uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.ToolkitOptions + - uid: OpenTK.Platform.ToolkitOptions name: ToolkitOptions - href: OpenTK.Core.Platform.ToolkitOptions.html + href: OpenTK.Platform.ToolkitOptions.html - name: ) -- uid: OpenTK.Core.Platform.ToolkitOptions - commentId: T:OpenTK.Core.Platform.ToolkitOptions - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.ToolkitOptions.html +- uid: OpenTK.Platform.ToolkitOptions + commentId: T:OpenTK.Platform.ToolkitOptions + parent: OpenTK.Platform + href: OpenTK.Platform.ToolkitOptions.html name: ToolkitOptions nameWithType: ToolkitOptions - fullName: OpenTK.Core.Platform.ToolkitOptions + fullName: OpenTK.Platform.ToolkitOptions - uid: OpenTK.Platform.Native.Windows.OpenGLComponent.CanShareContexts* commentId: Overload:OpenTK.Platform.Native.Windows.OpenGLComponent.CanShareContexts href: OpenTK.Platform.Native.Windows.OpenGLComponent.html#OpenTK_Platform_Native_Windows_OpenGLComponent_CanShareContexts name: CanShareContexts nameWithType: OpenGLComponent.CanShareContexts fullName: OpenTK.Platform.Native.Windows.OpenGLComponent.CanShareContexts -- uid: OpenTK.Core.Platform.IOpenGLComponent.CanShareContexts - commentId: P:OpenTK.Core.Platform.IOpenGLComponent.CanShareContexts - parent: OpenTK.Core.Platform.IOpenGLComponent - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_CanShareContexts +- uid: OpenTK.Platform.IOpenGLComponent.CanShareContexts + commentId: P:OpenTK.Platform.IOpenGLComponent.CanShareContexts + parent: OpenTK.Platform.IOpenGLComponent + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_CanShareContexts name: CanShareContexts nameWithType: IOpenGLComponent.CanShareContexts - fullName: OpenTK.Core.Platform.IOpenGLComponent.CanShareContexts + fullName: OpenTK.Platform.IOpenGLComponent.CanShareContexts - uid: System.Boolean commentId: T:System.Boolean parent: System @@ -1259,102 +1170,102 @@ references: nameWithType.vb: Boolean fullName.vb: Boolean name.vb: Boolean +- uid: OpenTK.Platform.IOpenGLComponent.CreateFromWindow(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IOpenGLComponent.CreateFromWindow(OpenTK.Platform.WindowHandle) + parent: OpenTK.Platform.IOpenGLComponent + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_CreateFromWindow_OpenTK_Platform_WindowHandle_ + name: CreateFromWindow(WindowHandle) + nameWithType: IOpenGLComponent.CreateFromWindow(WindowHandle) + fullName: OpenTK.Platform.IOpenGLComponent.CreateFromWindow(OpenTK.Platform.WindowHandle) + spec.csharp: + - uid: OpenTK.Platform.IOpenGLComponent.CreateFromWindow(OpenTK.Platform.WindowHandle) + name: CreateFromWindow + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_CreateFromWindow_OpenTK_Platform_WindowHandle_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IOpenGLComponent.CreateFromWindow(OpenTK.Platform.WindowHandle) + name: CreateFromWindow + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_CreateFromWindow_OpenTK_Platform_WindowHandle_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ) - uid: OpenTK.Platform.Native.Windows.OpenGLComponent.CanCreateFromWindow* commentId: Overload:OpenTK.Platform.Native.Windows.OpenGLComponent.CanCreateFromWindow href: OpenTK.Platform.Native.Windows.OpenGLComponent.html#OpenTK_Platform_Native_Windows_OpenGLComponent_CanCreateFromWindow name: CanCreateFromWindow nameWithType: OpenGLComponent.CanCreateFromWindow fullName: OpenTK.Platform.Native.Windows.OpenGLComponent.CanCreateFromWindow -- uid: OpenTK.Core.Platform.IOpenGLComponent.CanCreateFromWindow - commentId: P:OpenTK.Core.Platform.IOpenGLComponent.CanCreateFromWindow - parent: OpenTK.Core.Platform.IOpenGLComponent - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_CanCreateFromWindow +- uid: OpenTK.Platform.IOpenGLComponent.CanCreateFromWindow + commentId: P:OpenTK.Platform.IOpenGLComponent.CanCreateFromWindow + parent: OpenTK.Platform.IOpenGLComponent + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_CanCreateFromWindow name: CanCreateFromWindow nameWithType: IOpenGLComponent.CanCreateFromWindow - fullName: OpenTK.Core.Platform.IOpenGLComponent.CanCreateFromWindow + fullName: OpenTK.Platform.IOpenGLComponent.CanCreateFromWindow +- uid: OpenTK.Platform.IOpenGLComponent.CreateFromSurface + commentId: M:OpenTK.Platform.IOpenGLComponent.CreateFromSurface + parent: OpenTK.Platform.IOpenGLComponent + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_CreateFromSurface + name: CreateFromSurface() + nameWithType: IOpenGLComponent.CreateFromSurface() + fullName: OpenTK.Platform.IOpenGLComponent.CreateFromSurface() + spec.csharp: + - uid: OpenTK.Platform.IOpenGLComponent.CreateFromSurface + name: CreateFromSurface + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_CreateFromSurface + - name: ( + - name: ) + spec.vb: + - uid: OpenTK.Platform.IOpenGLComponent.CreateFromSurface + name: CreateFromSurface + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_CreateFromSurface + - name: ( + - name: ) - uid: OpenTK.Platform.Native.Windows.OpenGLComponent.CanCreateFromSurface* commentId: Overload:OpenTK.Platform.Native.Windows.OpenGLComponent.CanCreateFromSurface href: OpenTK.Platform.Native.Windows.OpenGLComponent.html#OpenTK_Platform_Native_Windows_OpenGLComponent_CanCreateFromSurface name: CanCreateFromSurface nameWithType: OpenGLComponent.CanCreateFromSurface fullName: OpenTK.Platform.Native.Windows.OpenGLComponent.CanCreateFromSurface -- uid: OpenTK.Core.Platform.IOpenGLComponent.CanCreateFromSurface - commentId: P:OpenTK.Core.Platform.IOpenGLComponent.CanCreateFromSurface - parent: OpenTK.Core.Platform.IOpenGLComponent - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_CanCreateFromSurface +- uid: OpenTK.Platform.IOpenGLComponent.CanCreateFromSurface + commentId: P:OpenTK.Platform.IOpenGLComponent.CanCreateFromSurface + parent: OpenTK.Platform.IOpenGLComponent + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_CanCreateFromSurface name: CanCreateFromSurface nameWithType: IOpenGLComponent.CanCreateFromSurface - fullName: OpenTK.Core.Platform.IOpenGLComponent.CanCreateFromSurface + fullName: OpenTK.Platform.IOpenGLComponent.CanCreateFromSurface - uid: OpenTK.Platform.Native.Windows.OpenGLComponent.CreateFromSurface* commentId: Overload:OpenTK.Platform.Native.Windows.OpenGLComponent.CreateFromSurface href: OpenTK.Platform.Native.Windows.OpenGLComponent.html#OpenTK_Platform_Native_Windows_OpenGLComponent_CreateFromSurface name: CreateFromSurface nameWithType: OpenGLComponent.CreateFromSurface fullName: OpenTK.Platform.Native.Windows.OpenGLComponent.CreateFromSurface -- uid: OpenTK.Core.Platform.IOpenGLComponent.CreateFromSurface - commentId: M:OpenTK.Core.Platform.IOpenGLComponent.CreateFromSurface - parent: OpenTK.Core.Platform.IOpenGLComponent - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_CreateFromSurface - name: CreateFromSurface() - nameWithType: IOpenGLComponent.CreateFromSurface() - fullName: OpenTK.Core.Platform.IOpenGLComponent.CreateFromSurface() - spec.csharp: - - uid: OpenTK.Core.Platform.IOpenGLComponent.CreateFromSurface - name: CreateFromSurface - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_CreateFromSurface - - name: ( - - name: ) - spec.vb: - - uid: OpenTK.Core.Platform.IOpenGLComponent.CreateFromSurface - name: CreateFromSurface - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_CreateFromSurface - - name: ( - - name: ) -- uid: OpenTK.Core.Platform.OpenGLContextHandle - commentId: T:OpenTK.Core.Platform.OpenGLContextHandle - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.OpenGLContextHandle.html +- uid: OpenTK.Platform.OpenGLContextHandle + commentId: T:OpenTK.Platform.OpenGLContextHandle + parent: OpenTK.Platform + href: OpenTK.Platform.OpenGLContextHandle.html name: OpenGLContextHandle nameWithType: OpenGLContextHandle - fullName: OpenTK.Core.Platform.OpenGLContextHandle + fullName: OpenTK.Platform.OpenGLContextHandle - uid: OpenTK.Platform.Native.Windows.OpenGLComponent.CreateFromWindow* commentId: Overload:OpenTK.Platform.Native.Windows.OpenGLComponent.CreateFromWindow - href: OpenTK.Platform.Native.Windows.OpenGLComponent.html#OpenTK_Platform_Native_Windows_OpenGLComponent_CreateFromWindow_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.Native.Windows.OpenGLComponent.html#OpenTK_Platform_Native_Windows_OpenGLComponent_CreateFromWindow_OpenTK_Platform_WindowHandle_ name: CreateFromWindow nameWithType: OpenGLComponent.CreateFromWindow fullName: OpenTK.Platform.Native.Windows.OpenGLComponent.CreateFromWindow -- uid: OpenTK.Core.Platform.IOpenGLComponent.CreateFromWindow(OpenTK.Core.Platform.WindowHandle) - commentId: M:OpenTK.Core.Platform.IOpenGLComponent.CreateFromWindow(OpenTK.Core.Platform.WindowHandle) - parent: OpenTK.Core.Platform.IOpenGLComponent - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_CreateFromWindow_OpenTK_Core_Platform_WindowHandle_ - name: CreateFromWindow(WindowHandle) - nameWithType: IOpenGLComponent.CreateFromWindow(WindowHandle) - fullName: OpenTK.Core.Platform.IOpenGLComponent.CreateFromWindow(OpenTK.Core.Platform.WindowHandle) - spec.csharp: - - uid: OpenTK.Core.Platform.IOpenGLComponent.CreateFromWindow(OpenTK.Core.Platform.WindowHandle) - name: CreateFromWindow - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_CreateFromWindow_OpenTK_Core_Platform_WindowHandle_ - - name: ( - - uid: OpenTK.Core.Platform.WindowHandle - name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html - - name: ) - spec.vb: - - uid: OpenTK.Core.Platform.IOpenGLComponent.CreateFromWindow(OpenTK.Core.Platform.WindowHandle) - name: CreateFromWindow - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_CreateFromWindow_OpenTK_Core_Platform_WindowHandle_ - - name: ( - - uid: OpenTK.Core.Platform.WindowHandle - name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html - - name: ) -- uid: OpenTK.Core.Platform.WindowHandle - commentId: T:OpenTK.Core.Platform.WindowHandle - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.WindowHandle.html +- uid: OpenTK.Platform.WindowHandle + commentId: T:OpenTK.Platform.WindowHandle + parent: OpenTK.Platform + href: OpenTK.Platform.WindowHandle.html name: WindowHandle nameWithType: WindowHandle - fullName: OpenTK.Core.Platform.WindowHandle + fullName: OpenTK.Platform.WindowHandle - uid: System.ArgumentNullException commentId: T:System.ArgumentNullException isExternal: true @@ -1364,34 +1275,34 @@ references: fullName: System.ArgumentNullException - uid: OpenTK.Platform.Native.Windows.OpenGLComponent.DestroyContext* commentId: Overload:OpenTK.Platform.Native.Windows.OpenGLComponent.DestroyContext - href: OpenTK.Platform.Native.Windows.OpenGLComponent.html#OpenTK_Platform_Native_Windows_OpenGLComponent_DestroyContext_OpenTK_Core_Platform_OpenGLContextHandle_ + href: OpenTK.Platform.Native.Windows.OpenGLComponent.html#OpenTK_Platform_Native_Windows_OpenGLComponent_DestroyContext_OpenTK_Platform_OpenGLContextHandle_ name: DestroyContext nameWithType: OpenGLComponent.DestroyContext fullName: OpenTK.Platform.Native.Windows.OpenGLComponent.DestroyContext -- uid: OpenTK.Core.Platform.IOpenGLComponent.DestroyContext(OpenTK.Core.Platform.OpenGLContextHandle) - commentId: M:OpenTK.Core.Platform.IOpenGLComponent.DestroyContext(OpenTK.Core.Platform.OpenGLContextHandle) - parent: OpenTK.Core.Platform.IOpenGLComponent - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_DestroyContext_OpenTK_Core_Platform_OpenGLContextHandle_ +- uid: OpenTK.Platform.IOpenGLComponent.DestroyContext(OpenTK.Platform.OpenGLContextHandle) + commentId: M:OpenTK.Platform.IOpenGLComponent.DestroyContext(OpenTK.Platform.OpenGLContextHandle) + parent: OpenTK.Platform.IOpenGLComponent + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_DestroyContext_OpenTK_Platform_OpenGLContextHandle_ name: DestroyContext(OpenGLContextHandle) nameWithType: IOpenGLComponent.DestroyContext(OpenGLContextHandle) - fullName: OpenTK.Core.Platform.IOpenGLComponent.DestroyContext(OpenTK.Core.Platform.OpenGLContextHandle) + fullName: OpenTK.Platform.IOpenGLComponent.DestroyContext(OpenTK.Platform.OpenGLContextHandle) spec.csharp: - - uid: OpenTK.Core.Platform.IOpenGLComponent.DestroyContext(OpenTK.Core.Platform.OpenGLContextHandle) + - uid: OpenTK.Platform.IOpenGLComponent.DestroyContext(OpenTK.Platform.OpenGLContextHandle) name: DestroyContext - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_DestroyContext_OpenTK_Core_Platform_OpenGLContextHandle_ + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_DestroyContext_OpenTK_Platform_OpenGLContextHandle_ - name: ( - - uid: OpenTK.Core.Platform.OpenGLContextHandle + - uid: OpenTK.Platform.OpenGLContextHandle name: OpenGLContextHandle - href: OpenTK.Core.Platform.OpenGLContextHandle.html + href: OpenTK.Platform.OpenGLContextHandle.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IOpenGLComponent.DestroyContext(OpenTK.Core.Platform.OpenGLContextHandle) + - uid: OpenTK.Platform.IOpenGLComponent.DestroyContext(OpenTK.Platform.OpenGLContextHandle) name: DestroyContext - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_DestroyContext_OpenTK_Core_Platform_OpenGLContextHandle_ + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_DestroyContext_OpenTK_Platform_OpenGLContextHandle_ - name: ( - - uid: OpenTK.Core.Platform.OpenGLContextHandle + - uid: OpenTK.Platform.OpenGLContextHandle name: OpenGLContextHandle - href: OpenTK.Core.Platform.OpenGLContextHandle.html + href: OpenTK.Platform.OpenGLContextHandle.html - name: ) - uid: OpenTK.IBindingsContext commentId: T:OpenTK.IBindingsContext @@ -1402,34 +1313,34 @@ references: fullName: OpenTK.IBindingsContext - uid: OpenTK.Platform.Native.Windows.OpenGLComponent.GetBindingsContext* commentId: Overload:OpenTK.Platform.Native.Windows.OpenGLComponent.GetBindingsContext - href: OpenTK.Platform.Native.Windows.OpenGLComponent.html#OpenTK_Platform_Native_Windows_OpenGLComponent_GetBindingsContext_OpenTK_Core_Platform_OpenGLContextHandle_ + href: OpenTK.Platform.Native.Windows.OpenGLComponent.html#OpenTK_Platform_Native_Windows_OpenGLComponent_GetBindingsContext_OpenTK_Platform_OpenGLContextHandle_ name: GetBindingsContext nameWithType: OpenGLComponent.GetBindingsContext fullName: OpenTK.Platform.Native.Windows.OpenGLComponent.GetBindingsContext -- uid: OpenTK.Core.Platform.IOpenGLComponent.GetBindingsContext(OpenTK.Core.Platform.OpenGLContextHandle) - commentId: M:OpenTK.Core.Platform.IOpenGLComponent.GetBindingsContext(OpenTK.Core.Platform.OpenGLContextHandle) - parent: OpenTK.Core.Platform.IOpenGLComponent - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_GetBindingsContext_OpenTK_Core_Platform_OpenGLContextHandle_ +- uid: OpenTK.Platform.IOpenGLComponent.GetBindingsContext(OpenTK.Platform.OpenGLContextHandle) + commentId: M:OpenTK.Platform.IOpenGLComponent.GetBindingsContext(OpenTK.Platform.OpenGLContextHandle) + parent: OpenTK.Platform.IOpenGLComponent + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_GetBindingsContext_OpenTK_Platform_OpenGLContextHandle_ name: GetBindingsContext(OpenGLContextHandle) nameWithType: IOpenGLComponent.GetBindingsContext(OpenGLContextHandle) - fullName: OpenTK.Core.Platform.IOpenGLComponent.GetBindingsContext(OpenTK.Core.Platform.OpenGLContextHandle) + fullName: OpenTK.Platform.IOpenGLComponent.GetBindingsContext(OpenTK.Platform.OpenGLContextHandle) spec.csharp: - - uid: OpenTK.Core.Platform.IOpenGLComponent.GetBindingsContext(OpenTK.Core.Platform.OpenGLContextHandle) + - uid: OpenTK.Platform.IOpenGLComponent.GetBindingsContext(OpenTK.Platform.OpenGLContextHandle) name: GetBindingsContext - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_GetBindingsContext_OpenTK_Core_Platform_OpenGLContextHandle_ + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_GetBindingsContext_OpenTK_Platform_OpenGLContextHandle_ - name: ( - - uid: OpenTK.Core.Platform.OpenGLContextHandle + - uid: OpenTK.Platform.OpenGLContextHandle name: OpenGLContextHandle - href: OpenTK.Core.Platform.OpenGLContextHandle.html + href: OpenTK.Platform.OpenGLContextHandle.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IOpenGLComponent.GetBindingsContext(OpenTK.Core.Platform.OpenGLContextHandle) + - uid: OpenTK.Platform.IOpenGLComponent.GetBindingsContext(OpenTK.Platform.OpenGLContextHandle) name: GetBindingsContext - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_GetBindingsContext_OpenTK_Core_Platform_OpenGLContextHandle_ + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_GetBindingsContext_OpenTK_Platform_OpenGLContextHandle_ - name: ( - - uid: OpenTK.Core.Platform.OpenGLContextHandle + - uid: OpenTK.Platform.OpenGLContextHandle name: OpenGLContextHandle - href: OpenTK.Core.Platform.OpenGLContextHandle.html + href: OpenTK.Platform.OpenGLContextHandle.html - name: ) - uid: OpenTK commentId: N:OpenTK @@ -1439,29 +1350,29 @@ references: fullName: OpenTK - uid: OpenTK.Platform.Native.Windows.OpenGLComponent.GetProcedureAddress* commentId: Overload:OpenTK.Platform.Native.Windows.OpenGLComponent.GetProcedureAddress - href: OpenTK.Platform.Native.Windows.OpenGLComponent.html#OpenTK_Platform_Native_Windows_OpenGLComponent_GetProcedureAddress_OpenTK_Core_Platform_OpenGLContextHandle_System_String_ + href: OpenTK.Platform.Native.Windows.OpenGLComponent.html#OpenTK_Platform_Native_Windows_OpenGLComponent_GetProcedureAddress_OpenTK_Platform_OpenGLContextHandle_System_String_ name: GetProcedureAddress nameWithType: OpenGLComponent.GetProcedureAddress fullName: OpenTK.Platform.Native.Windows.OpenGLComponent.GetProcedureAddress -- uid: OpenTK.Core.Platform.IOpenGLComponent.GetProcedureAddress(OpenTK.Core.Platform.OpenGLContextHandle,System.String) - commentId: M:OpenTK.Core.Platform.IOpenGLComponent.GetProcedureAddress(OpenTK.Core.Platform.OpenGLContextHandle,System.String) - parent: OpenTK.Core.Platform.IOpenGLComponent +- uid: OpenTK.Platform.IOpenGLComponent.GetProcedureAddress(OpenTK.Platform.OpenGLContextHandle,System.String) + commentId: M:OpenTK.Platform.IOpenGLComponent.GetProcedureAddress(OpenTK.Platform.OpenGLContextHandle,System.String) + parent: OpenTK.Platform.IOpenGLComponent isExternal: true - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_GetProcedureAddress_OpenTK_Core_Platform_OpenGLContextHandle_System_String_ + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_GetProcedureAddress_OpenTK_Platform_OpenGLContextHandle_System_String_ name: GetProcedureAddress(OpenGLContextHandle, string) nameWithType: IOpenGLComponent.GetProcedureAddress(OpenGLContextHandle, string) - fullName: OpenTK.Core.Platform.IOpenGLComponent.GetProcedureAddress(OpenTK.Core.Platform.OpenGLContextHandle, string) + fullName: OpenTK.Platform.IOpenGLComponent.GetProcedureAddress(OpenTK.Platform.OpenGLContextHandle, string) nameWithType.vb: IOpenGLComponent.GetProcedureAddress(OpenGLContextHandle, String) - fullName.vb: OpenTK.Core.Platform.IOpenGLComponent.GetProcedureAddress(OpenTK.Core.Platform.OpenGLContextHandle, String) + fullName.vb: OpenTK.Platform.IOpenGLComponent.GetProcedureAddress(OpenTK.Platform.OpenGLContextHandle, String) name.vb: GetProcedureAddress(OpenGLContextHandle, String) spec.csharp: - - uid: OpenTK.Core.Platform.IOpenGLComponent.GetProcedureAddress(OpenTK.Core.Platform.OpenGLContextHandle,System.String) + - uid: OpenTK.Platform.IOpenGLComponent.GetProcedureAddress(OpenTK.Platform.OpenGLContextHandle,System.String) name: GetProcedureAddress - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_GetProcedureAddress_OpenTK_Core_Platform_OpenGLContextHandle_System_String_ + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_GetProcedureAddress_OpenTK_Platform_OpenGLContextHandle_System_String_ - name: ( - - uid: OpenTK.Core.Platform.OpenGLContextHandle + - uid: OpenTK.Platform.OpenGLContextHandle name: OpenGLContextHandle - href: OpenTK.Core.Platform.OpenGLContextHandle.html + href: OpenTK.Platform.OpenGLContextHandle.html - name: ',' - name: " " - uid: System.String @@ -1470,13 +1381,13 @@ references: href: https://learn.microsoft.com/dotnet/api/system.string - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IOpenGLComponent.GetProcedureAddress(OpenTK.Core.Platform.OpenGLContextHandle,System.String) + - uid: OpenTK.Platform.IOpenGLComponent.GetProcedureAddress(OpenTK.Platform.OpenGLContextHandle,System.String) name: GetProcedureAddress - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_GetProcedureAddress_OpenTK_Core_Platform_OpenGLContextHandle_System_String_ + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_GetProcedureAddress_OpenTK_Platform_OpenGLContextHandle_System_String_ - name: ( - - uid: OpenTK.Core.Platform.OpenGLContextHandle + - uid: OpenTK.Platform.OpenGLContextHandle name: OpenGLContextHandle - href: OpenTK.Core.Platform.OpenGLContextHandle.html + href: OpenTK.Platform.OpenGLContextHandle.html - name: ',' - name: " " - uid: System.String @@ -1501,86 +1412,86 @@ references: name: GetCurrentContext nameWithType: OpenGLComponent.GetCurrentContext fullName: OpenTK.Platform.Native.Windows.OpenGLComponent.GetCurrentContext -- uid: OpenTK.Core.Platform.IOpenGLComponent.GetCurrentContext - commentId: M:OpenTK.Core.Platform.IOpenGLComponent.GetCurrentContext - parent: OpenTK.Core.Platform.IOpenGLComponent - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_GetCurrentContext +- uid: OpenTK.Platform.IOpenGLComponent.GetCurrentContext + commentId: M:OpenTK.Platform.IOpenGLComponent.GetCurrentContext + parent: OpenTK.Platform.IOpenGLComponent + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_GetCurrentContext name: GetCurrentContext() nameWithType: IOpenGLComponent.GetCurrentContext() - fullName: OpenTK.Core.Platform.IOpenGLComponent.GetCurrentContext() + fullName: OpenTK.Platform.IOpenGLComponent.GetCurrentContext() spec.csharp: - - uid: OpenTK.Core.Platform.IOpenGLComponent.GetCurrentContext + - uid: OpenTK.Platform.IOpenGLComponent.GetCurrentContext name: GetCurrentContext - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_GetCurrentContext + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_GetCurrentContext - name: ( - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IOpenGLComponent.GetCurrentContext + - uid: OpenTK.Platform.IOpenGLComponent.GetCurrentContext name: GetCurrentContext - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_GetCurrentContext + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_GetCurrentContext - name: ( - name: ) - uid: OpenTK.Platform.Native.Windows.OpenGLComponent.SetCurrentContext* commentId: Overload:OpenTK.Platform.Native.Windows.OpenGLComponent.SetCurrentContext - href: OpenTK.Platform.Native.Windows.OpenGLComponent.html#OpenTK_Platform_Native_Windows_OpenGLComponent_SetCurrentContext_OpenTK_Core_Platform_OpenGLContextHandle_ + href: OpenTK.Platform.Native.Windows.OpenGLComponent.html#OpenTK_Platform_Native_Windows_OpenGLComponent_SetCurrentContext_OpenTK_Platform_OpenGLContextHandle_ name: SetCurrentContext nameWithType: OpenGLComponent.SetCurrentContext fullName: OpenTK.Platform.Native.Windows.OpenGLComponent.SetCurrentContext -- uid: OpenTK.Core.Platform.IOpenGLComponent.SetCurrentContext(OpenTK.Core.Platform.OpenGLContextHandle) - commentId: M:OpenTK.Core.Platform.IOpenGLComponent.SetCurrentContext(OpenTK.Core.Platform.OpenGLContextHandle) - parent: OpenTK.Core.Platform.IOpenGLComponent - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_SetCurrentContext_OpenTK_Core_Platform_OpenGLContextHandle_ +- uid: OpenTK.Platform.IOpenGLComponent.SetCurrentContext(OpenTK.Platform.OpenGLContextHandle) + commentId: M:OpenTK.Platform.IOpenGLComponent.SetCurrentContext(OpenTK.Platform.OpenGLContextHandle) + parent: OpenTK.Platform.IOpenGLComponent + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_SetCurrentContext_OpenTK_Platform_OpenGLContextHandle_ name: SetCurrentContext(OpenGLContextHandle) nameWithType: IOpenGLComponent.SetCurrentContext(OpenGLContextHandle) - fullName: OpenTK.Core.Platform.IOpenGLComponent.SetCurrentContext(OpenTK.Core.Platform.OpenGLContextHandle) + fullName: OpenTK.Platform.IOpenGLComponent.SetCurrentContext(OpenTK.Platform.OpenGLContextHandle) spec.csharp: - - uid: OpenTK.Core.Platform.IOpenGLComponent.SetCurrentContext(OpenTK.Core.Platform.OpenGLContextHandle) + - uid: OpenTK.Platform.IOpenGLComponent.SetCurrentContext(OpenTK.Platform.OpenGLContextHandle) name: SetCurrentContext - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_SetCurrentContext_OpenTK_Core_Platform_OpenGLContextHandle_ + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_SetCurrentContext_OpenTK_Platform_OpenGLContextHandle_ - name: ( - - uid: OpenTK.Core.Platform.OpenGLContextHandle + - uid: OpenTK.Platform.OpenGLContextHandle name: OpenGLContextHandle - href: OpenTK.Core.Platform.OpenGLContextHandle.html + href: OpenTK.Platform.OpenGLContextHandle.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IOpenGLComponent.SetCurrentContext(OpenTK.Core.Platform.OpenGLContextHandle) + - uid: OpenTK.Platform.IOpenGLComponent.SetCurrentContext(OpenTK.Platform.OpenGLContextHandle) name: SetCurrentContext - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_SetCurrentContext_OpenTK_Core_Platform_OpenGLContextHandle_ + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_SetCurrentContext_OpenTK_Platform_OpenGLContextHandle_ - name: ( - - uid: OpenTK.Core.Platform.OpenGLContextHandle + - uid: OpenTK.Platform.OpenGLContextHandle name: OpenGLContextHandle - href: OpenTK.Core.Platform.OpenGLContextHandle.html + href: OpenTK.Platform.OpenGLContextHandle.html - name: ) - uid: OpenTK.Platform.Native.Windows.OpenGLComponent.GetSharedContext* commentId: Overload:OpenTK.Platform.Native.Windows.OpenGLComponent.GetSharedContext - href: OpenTK.Platform.Native.Windows.OpenGLComponent.html#OpenTK_Platform_Native_Windows_OpenGLComponent_GetSharedContext_OpenTK_Core_Platform_OpenGLContextHandle_ + href: OpenTK.Platform.Native.Windows.OpenGLComponent.html#OpenTK_Platform_Native_Windows_OpenGLComponent_GetSharedContext_OpenTK_Platform_OpenGLContextHandle_ name: GetSharedContext nameWithType: OpenGLComponent.GetSharedContext fullName: OpenTK.Platform.Native.Windows.OpenGLComponent.GetSharedContext -- uid: OpenTK.Core.Platform.IOpenGLComponent.GetSharedContext(OpenTK.Core.Platform.OpenGLContextHandle) - commentId: M:OpenTK.Core.Platform.IOpenGLComponent.GetSharedContext(OpenTK.Core.Platform.OpenGLContextHandle) - parent: OpenTK.Core.Platform.IOpenGLComponent - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_GetSharedContext_OpenTK_Core_Platform_OpenGLContextHandle_ +- uid: OpenTK.Platform.IOpenGLComponent.GetSharedContext(OpenTK.Platform.OpenGLContextHandle) + commentId: M:OpenTK.Platform.IOpenGLComponent.GetSharedContext(OpenTK.Platform.OpenGLContextHandle) + parent: OpenTK.Platform.IOpenGLComponent + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_GetSharedContext_OpenTK_Platform_OpenGLContextHandle_ name: GetSharedContext(OpenGLContextHandle) nameWithType: IOpenGLComponent.GetSharedContext(OpenGLContextHandle) - fullName: OpenTK.Core.Platform.IOpenGLComponent.GetSharedContext(OpenTK.Core.Platform.OpenGLContextHandle) + fullName: OpenTK.Platform.IOpenGLComponent.GetSharedContext(OpenTK.Platform.OpenGLContextHandle) spec.csharp: - - uid: OpenTK.Core.Platform.IOpenGLComponent.GetSharedContext(OpenTK.Core.Platform.OpenGLContextHandle) + - uid: OpenTK.Platform.IOpenGLComponent.GetSharedContext(OpenTK.Platform.OpenGLContextHandle) name: GetSharedContext - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_GetSharedContext_OpenTK_Core_Platform_OpenGLContextHandle_ + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_GetSharedContext_OpenTK_Platform_OpenGLContextHandle_ - name: ( - - uid: OpenTK.Core.Platform.OpenGLContextHandle + - uid: OpenTK.Platform.OpenGLContextHandle name: OpenGLContextHandle - href: OpenTK.Core.Platform.OpenGLContextHandle.html + href: OpenTK.Platform.OpenGLContextHandle.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IOpenGLComponent.GetSharedContext(OpenTK.Core.Platform.OpenGLContextHandle) + - uid: OpenTK.Platform.IOpenGLComponent.GetSharedContext(OpenTK.Platform.OpenGLContextHandle) name: GetSharedContext - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_GetSharedContext_OpenTK_Core_Platform_OpenGLContextHandle_ + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_GetSharedContext_OpenTK_Platform_OpenGLContextHandle_ - name: ( - - uid: OpenTK.Core.Platform.OpenGLContextHandle + - uid: OpenTK.Platform.OpenGLContextHandle name: OpenGLContextHandle - href: OpenTK.Core.Platform.OpenGLContextHandle.html + href: OpenTK.Platform.OpenGLContextHandle.html - name: ) - uid: OpenTK.Platform.Native.Windows.OpenGLComponent.SetSwapInterval* commentId: Overload:OpenTK.Platform.Native.Windows.OpenGLComponent.SetSwapInterval @@ -1588,21 +1499,21 @@ references: name: SetSwapInterval nameWithType: OpenGLComponent.SetSwapInterval fullName: OpenTK.Platform.Native.Windows.OpenGLComponent.SetSwapInterval -- uid: OpenTK.Core.Platform.IOpenGLComponent.SetSwapInterval(System.Int32) - commentId: M:OpenTK.Core.Platform.IOpenGLComponent.SetSwapInterval(System.Int32) - parent: OpenTK.Core.Platform.IOpenGLComponent +- uid: OpenTK.Platform.IOpenGLComponent.SetSwapInterval(System.Int32) + commentId: M:OpenTK.Platform.IOpenGLComponent.SetSwapInterval(System.Int32) + parent: OpenTK.Platform.IOpenGLComponent isExternal: true - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_SetSwapInterval_System_Int32_ + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_SetSwapInterval_System_Int32_ name: SetSwapInterval(int) nameWithType: IOpenGLComponent.SetSwapInterval(int) - fullName: OpenTK.Core.Platform.IOpenGLComponent.SetSwapInterval(int) + fullName: OpenTK.Platform.IOpenGLComponent.SetSwapInterval(int) nameWithType.vb: IOpenGLComponent.SetSwapInterval(Integer) - fullName.vb: OpenTK.Core.Platform.IOpenGLComponent.SetSwapInterval(Integer) + fullName.vb: OpenTK.Platform.IOpenGLComponent.SetSwapInterval(Integer) name.vb: SetSwapInterval(Integer) spec.csharp: - - uid: OpenTK.Core.Platform.IOpenGLComponent.SetSwapInterval(System.Int32) + - uid: OpenTK.Platform.IOpenGLComponent.SetSwapInterval(System.Int32) name: SetSwapInterval - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_SetSwapInterval_System_Int32_ + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_SetSwapInterval_System_Int32_ - name: ( - uid: System.Int32 name: int @@ -1610,9 +1521,9 @@ references: href: https://learn.microsoft.com/dotnet/api/system.int32 - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IOpenGLComponent.SetSwapInterval(System.Int32) + - uid: OpenTK.Platform.IOpenGLComponent.SetSwapInterval(System.Int32) name: SetSwapInterval - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_SetSwapInterval_System_Int32_ + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_SetSwapInterval_System_Int32_ - name: ( - uid: System.Int32 name: Integer @@ -1636,89 +1547,89 @@ references: name: GetSwapInterval nameWithType: OpenGLComponent.GetSwapInterval fullName: OpenTK.Platform.Native.Windows.OpenGLComponent.GetSwapInterval -- uid: OpenTK.Core.Platform.IOpenGLComponent.GetSwapInterval - commentId: M:OpenTK.Core.Platform.IOpenGLComponent.GetSwapInterval - parent: OpenTK.Core.Platform.IOpenGLComponent - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_GetSwapInterval +- uid: OpenTK.Platform.IOpenGLComponent.GetSwapInterval + commentId: M:OpenTK.Platform.IOpenGLComponent.GetSwapInterval + parent: OpenTK.Platform.IOpenGLComponent + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_GetSwapInterval name: GetSwapInterval() nameWithType: IOpenGLComponent.GetSwapInterval() - fullName: OpenTK.Core.Platform.IOpenGLComponent.GetSwapInterval() + fullName: OpenTK.Platform.IOpenGLComponent.GetSwapInterval() spec.csharp: - - uid: OpenTK.Core.Platform.IOpenGLComponent.GetSwapInterval + - uid: OpenTK.Platform.IOpenGLComponent.GetSwapInterval name: GetSwapInterval - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_GetSwapInterval + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_GetSwapInterval - name: ( - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IOpenGLComponent.GetSwapInterval + - uid: OpenTK.Platform.IOpenGLComponent.GetSwapInterval name: GetSwapInterval - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_GetSwapInterval + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_GetSwapInterval - name: ( - name: ) - uid: OpenTK.Platform.Native.Windows.OpenGLComponent.SwapBuffers* commentId: Overload:OpenTK.Platform.Native.Windows.OpenGLComponent.SwapBuffers - href: OpenTK.Platform.Native.Windows.OpenGLComponent.html#OpenTK_Platform_Native_Windows_OpenGLComponent_SwapBuffers_OpenTK_Core_Platform_OpenGLContextHandle_ + href: OpenTK.Platform.Native.Windows.OpenGLComponent.html#OpenTK_Platform_Native_Windows_OpenGLComponent_SwapBuffers_OpenTK_Platform_OpenGLContextHandle_ name: SwapBuffers nameWithType: OpenGLComponent.SwapBuffers fullName: OpenTK.Platform.Native.Windows.OpenGLComponent.SwapBuffers -- uid: OpenTK.Core.Platform.IOpenGLComponent.SwapBuffers(OpenTK.Core.Platform.OpenGLContextHandle) - commentId: M:OpenTK.Core.Platform.IOpenGLComponent.SwapBuffers(OpenTK.Core.Platform.OpenGLContextHandle) - parent: OpenTK.Core.Platform.IOpenGLComponent - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_SwapBuffers_OpenTK_Core_Platform_OpenGLContextHandle_ +- uid: OpenTK.Platform.IOpenGLComponent.SwapBuffers(OpenTK.Platform.OpenGLContextHandle) + commentId: M:OpenTK.Platform.IOpenGLComponent.SwapBuffers(OpenTK.Platform.OpenGLContextHandle) + parent: OpenTK.Platform.IOpenGLComponent + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_SwapBuffers_OpenTK_Platform_OpenGLContextHandle_ name: SwapBuffers(OpenGLContextHandle) nameWithType: IOpenGLComponent.SwapBuffers(OpenGLContextHandle) - fullName: OpenTK.Core.Platform.IOpenGLComponent.SwapBuffers(OpenTK.Core.Platform.OpenGLContextHandle) + fullName: OpenTK.Platform.IOpenGLComponent.SwapBuffers(OpenTK.Platform.OpenGLContextHandle) spec.csharp: - - uid: OpenTK.Core.Platform.IOpenGLComponent.SwapBuffers(OpenTK.Core.Platform.OpenGLContextHandle) + - uid: OpenTK.Platform.IOpenGLComponent.SwapBuffers(OpenTK.Platform.OpenGLContextHandle) name: SwapBuffers - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_SwapBuffers_OpenTK_Core_Platform_OpenGLContextHandle_ + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_SwapBuffers_OpenTK_Platform_OpenGLContextHandle_ - name: ( - - uid: OpenTK.Core.Platform.OpenGLContextHandle + - uid: OpenTK.Platform.OpenGLContextHandle name: OpenGLContextHandle - href: OpenTK.Core.Platform.OpenGLContextHandle.html + href: OpenTK.Platform.OpenGLContextHandle.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IOpenGLComponent.SwapBuffers(OpenTK.Core.Platform.OpenGLContextHandle) + - uid: OpenTK.Platform.IOpenGLComponent.SwapBuffers(OpenTK.Platform.OpenGLContextHandle) name: SwapBuffers - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_SwapBuffers_OpenTK_Core_Platform_OpenGLContextHandle_ + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_SwapBuffers_OpenTK_Platform_OpenGLContextHandle_ - name: ( - - uid: OpenTK.Core.Platform.OpenGLContextHandle + - uid: OpenTK.Platform.OpenGLContextHandle name: OpenGLContextHandle - href: OpenTK.Core.Platform.OpenGLContextHandle.html + href: OpenTK.Platform.OpenGLContextHandle.html - name: ) -- uid: OpenTK.Platform.Native.Windows.OpenGLComponent.SwapBuffers(OpenTK.Core.Platform.OpenGLContextHandle) - commentId: M:OpenTK.Platform.Native.Windows.OpenGLComponent.SwapBuffers(OpenTK.Core.Platform.OpenGLContextHandle) - href: OpenTK.Platform.Native.Windows.OpenGLComponent.html#OpenTK_Platform_Native_Windows_OpenGLComponent_SwapBuffers_OpenTK_Core_Platform_OpenGLContextHandle_ +- uid: OpenTK.Platform.Native.Windows.OpenGLComponent.SwapBuffers(OpenTK.Platform.OpenGLContextHandle) + commentId: M:OpenTK.Platform.Native.Windows.OpenGLComponent.SwapBuffers(OpenTK.Platform.OpenGLContextHandle) + href: OpenTK.Platform.Native.Windows.OpenGLComponent.html#OpenTK_Platform_Native_Windows_OpenGLComponent_SwapBuffers_OpenTK_Platform_OpenGLContextHandle_ name: SwapBuffers(OpenGLContextHandle) nameWithType: OpenGLComponent.SwapBuffers(OpenGLContextHandle) - fullName: OpenTK.Platform.Native.Windows.OpenGLComponent.SwapBuffers(OpenTK.Core.Platform.OpenGLContextHandle) + fullName: OpenTK.Platform.Native.Windows.OpenGLComponent.SwapBuffers(OpenTK.Platform.OpenGLContextHandle) spec.csharp: - - uid: OpenTK.Platform.Native.Windows.OpenGLComponent.SwapBuffers(OpenTK.Core.Platform.OpenGLContextHandle) + - uid: OpenTK.Platform.Native.Windows.OpenGLComponent.SwapBuffers(OpenTK.Platform.OpenGLContextHandle) name: SwapBuffers - href: OpenTK.Platform.Native.Windows.OpenGLComponent.html#OpenTK_Platform_Native_Windows_OpenGLComponent_SwapBuffers_OpenTK_Core_Platform_OpenGLContextHandle_ + href: OpenTK.Platform.Native.Windows.OpenGLComponent.html#OpenTK_Platform_Native_Windows_OpenGLComponent_SwapBuffers_OpenTK_Platform_OpenGLContextHandle_ - name: ( - - uid: OpenTK.Core.Platform.OpenGLContextHandle + - uid: OpenTK.Platform.OpenGLContextHandle name: OpenGLContextHandle - href: OpenTK.Core.Platform.OpenGLContextHandle.html + href: OpenTK.Platform.OpenGLContextHandle.html - name: ) spec.vb: - - uid: OpenTK.Platform.Native.Windows.OpenGLComponent.SwapBuffers(OpenTK.Core.Platform.OpenGLContextHandle) + - uid: OpenTK.Platform.Native.Windows.OpenGLComponent.SwapBuffers(OpenTK.Platform.OpenGLContextHandle) name: SwapBuffers - href: OpenTK.Platform.Native.Windows.OpenGLComponent.html#OpenTK_Platform_Native_Windows_OpenGLComponent_SwapBuffers_OpenTK_Core_Platform_OpenGLContextHandle_ + href: OpenTK.Platform.Native.Windows.OpenGLComponent.html#OpenTK_Platform_Native_Windows_OpenGLComponent_SwapBuffers_OpenTK_Platform_OpenGLContextHandle_ - name: ( - - uid: OpenTK.Core.Platform.OpenGLContextHandle + - uid: OpenTK.Platform.OpenGLContextHandle name: OpenGLContextHandle - href: OpenTK.Core.Platform.OpenGLContextHandle.html + href: OpenTK.Platform.OpenGLContextHandle.html - name: ) - uid: OpenTK.Platform.Native.Windows.OpenGLComponent.UseDwmFlushIfApplicable* commentId: Overload:OpenTK.Platform.Native.Windows.OpenGLComponent.UseDwmFlushIfApplicable - href: OpenTK.Platform.Native.Windows.OpenGLComponent.html#OpenTK_Platform_Native_Windows_OpenGLComponent_UseDwmFlushIfApplicable_OpenTK_Core_Platform_OpenGLContextHandle_System_Boolean_ + href: OpenTK.Platform.Native.Windows.OpenGLComponent.html#OpenTK_Platform_Native_Windows_OpenGLComponent_UseDwmFlushIfApplicable_OpenTK_Platform_OpenGLContextHandle_System_Boolean_ name: UseDwmFlushIfApplicable nameWithType: OpenGLComponent.UseDwmFlushIfApplicable fullName: OpenTK.Platform.Native.Windows.OpenGLComponent.UseDwmFlushIfApplicable - uid: OpenTK.Platform.Native.Windows.OpenGLComponent.GetHGLRC* commentId: Overload:OpenTK.Platform.Native.Windows.OpenGLComponent.GetHGLRC - href: OpenTK.Platform.Native.Windows.OpenGLComponent.html#OpenTK_Platform_Native_Windows_OpenGLComponent_GetHGLRC_OpenTK_Core_Platform_OpenGLContextHandle_ + href: OpenTK.Platform.Native.Windows.OpenGLComponent.html#OpenTK_Platform_Native_Windows_OpenGLComponent_GetHGLRC_OpenTK_Platform_OpenGLContextHandle_ name: GetHGLRC nameWithType: OpenGLComponent.GetHGLRC fullName: OpenTK.Platform.Native.Windows.OpenGLComponent.GetHGLRC diff --git a/api/OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce.yml b/api/OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce.yml index 01ba9c44..fed684dd 100644 --- a/api/OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce.yml +++ b/api/OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce.yml @@ -17,15 +17,11 @@ items: fullName: OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce type: Enum source: - remote: - path: src/OpenTK.Platform.Native/Windows/ShellComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CornerPrefernce - path: opentk/src/OpenTK.Platform.Native/Windows/ShellComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\ShellComponent.cs startLine: 246 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: Window corner preference options. example: [] @@ -44,15 +40,11 @@ items: fullName: OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce.Default type: Field source: - remote: - path: src/OpenTK.Platform.Native/Windows/ShellComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Default - path: opentk/src/OpenTK.Platform.Native/Windows/ShellComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\ShellComponent.cs startLine: 251 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: Let windows decide if the window corners are rounded. example: [] @@ -72,15 +64,11 @@ items: fullName: OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce.DoNotRound type: Field source: - remote: - path: src/OpenTK.Platform.Native/Windows/ShellComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DoNotRound - path: opentk/src/OpenTK.Platform.Native/Windows/ShellComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\ShellComponent.cs startLine: 256 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: Do not round the corners of the window. example: [] @@ -100,15 +88,11 @@ items: fullName: OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce.Round type: Field source: - remote: - path: src/OpenTK.Platform.Native/Windows/ShellComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Round - path: opentk/src/OpenTK.Platform.Native/Windows/ShellComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\ShellComponent.cs startLine: 261 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: Round the corners of the window. example: [] @@ -128,15 +112,11 @@ items: fullName: OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce.RoundSmall type: Field source: - remote: - path: src/OpenTK.Platform.Native/Windows/ShellComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: RoundSmall - path: opentk/src/OpenTK.Platform.Native/Windows/ShellComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\ShellComponent.cs startLine: 266 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: Round the corners of the window, with a smaller radius. example: [] diff --git a/api/OpenTK.Platform.Native.Windows.ShellComponent.yml b/api/OpenTK.Platform.Native.Windows.ShellComponent.yml index f8b0eaa6..64f79cf3 100644 --- a/api/OpenTK.Platform.Native.Windows.ShellComponent.yml +++ b/api/OpenTK.Platform.Native.Windows.ShellComponent.yml @@ -6,17 +6,17 @@ items: parent: OpenTK.Platform.Native.Windows children: - OpenTK.Platform.Native.Windows.ShellComponent.AllowScreenSaver(System.Boolean) - - OpenTK.Platform.Native.Windows.ShellComponent.GetBatteryInfo(OpenTK.Core.Platform.BatteryInfo@) + - OpenTK.Platform.Native.Windows.ShellComponent.GetBatteryInfo(OpenTK.Platform.BatteryInfo@) - OpenTK.Platform.Native.Windows.ShellComponent.GetPreferredTheme - OpenTK.Platform.Native.Windows.ShellComponent.GetSystemMemoryInformation - - OpenTK.Platform.Native.Windows.ShellComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + - OpenTK.Platform.Native.Windows.ShellComponent.Initialize(OpenTK.Platform.ToolkitOptions) - OpenTK.Platform.Native.Windows.ShellComponent.Logger - OpenTK.Platform.Native.Windows.ShellComponent.Name - OpenTK.Platform.Native.Windows.ShellComponent.Provides - - OpenTK.Platform.Native.Windows.ShellComponent.SetCaptionColor(OpenTK.Core.Platform.WindowHandle,OpenTK.Mathematics.Color3{OpenTK.Mathematics.Rgb}) - - OpenTK.Platform.Native.Windows.ShellComponent.SetCaptionTextColor(OpenTK.Core.Platform.WindowHandle,OpenTK.Mathematics.Color3{OpenTK.Mathematics.Rgb}) - - OpenTK.Platform.Native.Windows.ShellComponent.SetImmersiveDarkMode(OpenTK.Core.Platform.WindowHandle,System.Boolean) - - OpenTK.Platform.Native.Windows.ShellComponent.SetWindowCornerPreference(OpenTK.Core.Platform.WindowHandle,OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce) + - OpenTK.Platform.Native.Windows.ShellComponent.SetCaptionColor(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Color3{OpenTK.Mathematics.Rgb}) + - OpenTK.Platform.Native.Windows.ShellComponent.SetCaptionTextColor(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Color3{OpenTK.Mathematics.Rgb}) + - OpenTK.Platform.Native.Windows.ShellComponent.SetImmersiveDarkMode(OpenTK.Platform.WindowHandle,System.Boolean) + - OpenTK.Platform.Native.Windows.ShellComponent.SetWindowCornerPreference(OpenTK.Platform.WindowHandle,OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce) langs: - csharp - vb @@ -25,17 +25,13 @@ items: fullName: OpenTK.Platform.Native.Windows.ShellComponent type: Class source: - remote: - path: src/OpenTK.Platform.Native/Windows/ShellComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ShellComponent - path: opentk/src/OpenTK.Platform.Native/Windows/ShellComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\ShellComponent.cs startLine: 19 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows - summary: Win32 implementation of . + summary: Win32 implementation of . example: [] syntax: content: 'public class ShellComponent : IShellComponent, IPalComponent' @@ -43,8 +39,8 @@ items: inheritance: - System.Object implements: - - OpenTK.Core.Platform.IShellComponent - - OpenTK.Core.Platform.IPalComponent + - OpenTK.Platform.IShellComponent + - OpenTK.Platform.IPalComponent inheritedMembers: - System.Object.Equals(System.Object) - System.Object.Equals(System.Object,System.Object) @@ -65,15 +61,11 @@ items: fullName: OpenTK.Platform.Native.Windows.ShellComponent.Name type: Property source: - remote: - path: src/OpenTK.Platform.Native/Windows/ShellComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Name - path: opentk/src/OpenTK.Platform.Native/Windows/ShellComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\ShellComponent.cs startLine: 22 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: Name of the abstraction layer component. example: [] @@ -85,7 +77,7 @@ items: content.vb: Public ReadOnly Property Name As String overload: OpenTK.Platform.Native.Windows.ShellComponent.Name* implements: - - OpenTK.Core.Platform.IPalComponent.Name + - OpenTK.Platform.IPalComponent.Name - uid: OpenTK.Platform.Native.Windows.ShellComponent.Provides commentId: P:OpenTK.Platform.Native.Windows.ShellComponent.Provides id: Provides @@ -98,15 +90,11 @@ items: fullName: OpenTK.Platform.Native.Windows.ShellComponent.Provides type: Property source: - remote: - path: src/OpenTK.Platform.Native/Windows/ShellComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Provides - path: opentk/src/OpenTK.Platform.Native/Windows/ShellComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\ShellComponent.cs startLine: 25 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: Specifies which PAL components this object provides. example: [] @@ -114,11 +102,11 @@ items: content: public PalComponents Provides { get; } parameters: [] return: - type: OpenTK.Core.Platform.PalComponents + type: OpenTK.Platform.PalComponents content.vb: Public ReadOnly Property Provides As PalComponents overload: OpenTK.Platform.Native.Windows.ShellComponent.Provides* implements: - - OpenTK.Core.Platform.IPalComponent.Provides + - OpenTK.Platform.IPalComponent.Provides - uid: OpenTK.Platform.Native.Windows.ShellComponent.Logger commentId: P:OpenTK.Platform.Native.Windows.ShellComponent.Logger id: Logger @@ -131,15 +119,11 @@ items: fullName: OpenTK.Platform.Native.Windows.ShellComponent.Logger type: Property source: - remote: - path: src/OpenTK.Platform.Native/Windows/ShellComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Logger - path: opentk/src/OpenTK.Platform.Native/Windows/ShellComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\ShellComponent.cs startLine: 28 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: Provides a logger for this component. example: [] @@ -151,28 +135,24 @@ items: content.vb: Public Property Logger As ILogger overload: OpenTK.Platform.Native.Windows.ShellComponent.Logger* implements: - - OpenTK.Core.Platform.IPalComponent.Logger -- uid: OpenTK.Platform.Native.Windows.ShellComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - commentId: M:OpenTK.Platform.Native.Windows.ShellComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - id: Initialize(OpenTK.Core.Platform.ToolkitOptions) + - OpenTK.Platform.IPalComponent.Logger +- uid: OpenTK.Platform.Native.Windows.ShellComponent.Initialize(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Native.Windows.ShellComponent.Initialize(OpenTK.Platform.ToolkitOptions) + id: Initialize(OpenTK.Platform.ToolkitOptions) parent: OpenTK.Platform.Native.Windows.ShellComponent langs: - csharp - vb name: Initialize(ToolkitOptions) nameWithType: ShellComponent.Initialize(ToolkitOptions) - fullName: OpenTK.Platform.Native.Windows.ShellComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + fullName: OpenTK.Platform.Native.Windows.ShellComponent.Initialize(OpenTK.Platform.ToolkitOptions) type: Method source: - remote: - path: src/OpenTK.Platform.Native/Windows/ShellComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Initialize - path: opentk/src/OpenTK.Platform.Native/Windows/ShellComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\ShellComponent.cs startLine: 31 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: Initialize the component. example: [] @@ -180,12 +160,12 @@ items: content: public void Initialize(ToolkitOptions options) parameters: - id: options - type: OpenTK.Core.Platform.ToolkitOptions + type: OpenTK.Platform.ToolkitOptions description: The options to initialize the component with. content.vb: Public Sub Initialize(options As ToolkitOptions) overload: OpenTK.Platform.Native.Windows.ShellComponent.Initialize* implements: - - OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + - OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) - uid: OpenTK.Platform.Native.Windows.ShellComponent.AllowScreenSaver(System.Boolean) commentId: M:OpenTK.Platform.Native.Windows.ShellComponent.AllowScreenSaver(System.Boolean) id: AllowScreenSaver(System.Boolean) @@ -198,15 +178,11 @@ items: fullName: OpenTK.Platform.Native.Windows.ShellComponent.AllowScreenSaver(bool) type: Method source: - remote: - path: src/OpenTK.Platform.Native/Windows/ShellComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: AllowScreenSaver - path: opentk/src/OpenTK.Platform.Native/Windows/ShellComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\ShellComponent.cs startLine: 38 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: >- Sets whether or not a screensaver is allowed to draw on top of the window. @@ -226,31 +202,27 @@ items: content.vb: Public Sub AllowScreenSaver(allow As Boolean) overload: OpenTK.Platform.Native.Windows.ShellComponent.AllowScreenSaver* implements: - - OpenTK.Core.Platform.IShellComponent.AllowScreenSaver(System.Boolean) + - OpenTK.Platform.IShellComponent.AllowScreenSaver(System.Boolean) nameWithType.vb: ShellComponent.AllowScreenSaver(Boolean) fullName.vb: OpenTK.Platform.Native.Windows.ShellComponent.AllowScreenSaver(Boolean) name.vb: AllowScreenSaver(Boolean) -- uid: OpenTK.Platform.Native.Windows.ShellComponent.GetBatteryInfo(OpenTK.Core.Platform.BatteryInfo@) - commentId: M:OpenTK.Platform.Native.Windows.ShellComponent.GetBatteryInfo(OpenTK.Core.Platform.BatteryInfo@) - id: GetBatteryInfo(OpenTK.Core.Platform.BatteryInfo@) +- uid: OpenTK.Platform.Native.Windows.ShellComponent.GetBatteryInfo(OpenTK.Platform.BatteryInfo@) + commentId: M:OpenTK.Platform.Native.Windows.ShellComponent.GetBatteryInfo(OpenTK.Platform.BatteryInfo@) + id: GetBatteryInfo(OpenTK.Platform.BatteryInfo@) parent: OpenTK.Platform.Native.Windows.ShellComponent langs: - csharp - vb name: GetBatteryInfo(out BatteryInfo) nameWithType: ShellComponent.GetBatteryInfo(out BatteryInfo) - fullName: OpenTK.Platform.Native.Windows.ShellComponent.GetBatteryInfo(out OpenTK.Core.Platform.BatteryInfo) + fullName: OpenTK.Platform.Native.Windows.ShellComponent.GetBatteryInfo(out OpenTK.Platform.BatteryInfo) type: Method source: - remote: - path: src/OpenTK.Platform.Native/Windows/ShellComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetBatteryInfo - path: opentk/src/OpenTK.Platform.Native/Windows/ShellComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\ShellComponent.cs startLine: 44 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: Gets the battery status of the computer. example: [] @@ -258,16 +230,16 @@ items: content: public BatteryStatus GetBatteryInfo(out BatteryInfo info) parameters: - id: info - type: OpenTK.Core.Platform.BatteryInfo + type: OpenTK.Platform.BatteryInfo return: - type: OpenTK.Core.Platform.BatteryStatus + type: OpenTK.Platform.BatteryStatus description: Whether the computer has a battery or not, or if this function failed. content.vb: Public Function GetBatteryInfo(info As BatteryInfo) As BatteryStatus overload: OpenTK.Platform.Native.Windows.ShellComponent.GetBatteryInfo* implements: - - OpenTK.Core.Platform.IShellComponent.GetBatteryInfo(OpenTK.Core.Platform.BatteryInfo@) + - OpenTK.Platform.IShellComponent.GetBatteryInfo(OpenTK.Platform.BatteryInfo@) nameWithType.vb: ShellComponent.GetBatteryInfo(BatteryInfo) - fullName.vb: OpenTK.Platform.Native.Windows.ShellComponent.GetBatteryInfo(OpenTK.Core.Platform.BatteryInfo) + fullName.vb: OpenTK.Platform.Native.Windows.ShellComponent.GetBatteryInfo(OpenTK.Platform.BatteryInfo) name.vb: GetBatteryInfo(BatteryInfo) - uid: OpenTK.Platform.Native.Windows.ShellComponent.GetPreferredTheme commentId: M:OpenTK.Platform.Native.Windows.ShellComponent.GetPreferredTheme @@ -281,48 +253,40 @@ items: fullName: OpenTK.Platform.Native.Windows.ShellComponent.GetPreferredTheme() type: Method source: - remote: - path: src/OpenTK.Platform.Native/Windows/ShellComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetPreferredTheme - path: opentk/src/OpenTK.Platform.Native/Windows/ShellComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\ShellComponent.cs startLine: 125 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: Gets the user preference for application theme. example: [] syntax: content: public ThemeInfo GetPreferredTheme() return: - type: OpenTK.Core.Platform.ThemeInfo + type: OpenTK.Platform.ThemeInfo description: The user set preferred theme. content.vb: Public Function GetPreferredTheme() As ThemeInfo overload: OpenTK.Platform.Native.Windows.ShellComponent.GetPreferredTheme* implements: - - OpenTK.Core.Platform.IShellComponent.GetPreferredTheme -- uid: OpenTK.Platform.Native.Windows.ShellComponent.SetImmersiveDarkMode(OpenTK.Core.Platform.WindowHandle,System.Boolean) - commentId: M:OpenTK.Platform.Native.Windows.ShellComponent.SetImmersiveDarkMode(OpenTK.Core.Platform.WindowHandle,System.Boolean) - id: SetImmersiveDarkMode(OpenTK.Core.Platform.WindowHandle,System.Boolean) + - OpenTK.Platform.IShellComponent.GetPreferredTheme +- uid: OpenTK.Platform.Native.Windows.ShellComponent.SetImmersiveDarkMode(OpenTK.Platform.WindowHandle,System.Boolean) + commentId: M:OpenTK.Platform.Native.Windows.ShellComponent.SetImmersiveDarkMode(OpenTK.Platform.WindowHandle,System.Boolean) + id: SetImmersiveDarkMode(OpenTK.Platform.WindowHandle,System.Boolean) parent: OpenTK.Platform.Native.Windows.ShellComponent langs: - csharp - vb name: SetImmersiveDarkMode(WindowHandle, bool) nameWithType: ShellComponent.SetImmersiveDarkMode(WindowHandle, bool) - fullName: OpenTK.Platform.Native.Windows.ShellComponent.SetImmersiveDarkMode(OpenTK.Core.Platform.WindowHandle, bool) + fullName: OpenTK.Platform.Native.Windows.ShellComponent.SetImmersiveDarkMode(OpenTK.Platform.WindowHandle, bool) type: Method source: - remote: - path: src/OpenTK.Platform.Native/Windows/ShellComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetImmersiveDarkMode - path: opentk/src/OpenTK.Platform.Native/Windows/ShellComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\ShellComponent.cs startLine: 139 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: Sets the DWMWA_USE_IMMERSIVE_DARK_MODE flag on the window causing the titlebar be rendered in dark mode colors. example: [] @@ -330,7 +294,7 @@ items: content: public void SetImmersiveDarkMode(WindowHandle handle, bool useImmersiveDarkMode) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: Handle to a window. - id: useImmersiveDarkMode type: System.Boolean @@ -338,29 +302,25 @@ items: content.vb: Public Sub SetImmersiveDarkMode(handle As WindowHandle, useImmersiveDarkMode As Boolean) overload: OpenTK.Platform.Native.Windows.ShellComponent.SetImmersiveDarkMode* nameWithType.vb: ShellComponent.SetImmersiveDarkMode(WindowHandle, Boolean) - fullName.vb: OpenTK.Platform.Native.Windows.ShellComponent.SetImmersiveDarkMode(OpenTK.Core.Platform.WindowHandle, Boolean) + fullName.vb: OpenTK.Platform.Native.Windows.ShellComponent.SetImmersiveDarkMode(OpenTK.Platform.WindowHandle, Boolean) name.vb: SetImmersiveDarkMode(WindowHandle, Boolean) -- uid: OpenTK.Platform.Native.Windows.ShellComponent.SetCaptionTextColor(OpenTK.Core.Platform.WindowHandle,OpenTK.Mathematics.Color3{OpenTK.Mathematics.Rgb}) - commentId: M:OpenTK.Platform.Native.Windows.ShellComponent.SetCaptionTextColor(OpenTK.Core.Platform.WindowHandle,OpenTK.Mathematics.Color3{OpenTK.Mathematics.Rgb}) - id: SetCaptionTextColor(OpenTK.Core.Platform.WindowHandle,OpenTK.Mathematics.Color3{OpenTK.Mathematics.Rgb}) +- uid: OpenTK.Platform.Native.Windows.ShellComponent.SetCaptionTextColor(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Color3{OpenTK.Mathematics.Rgb}) + commentId: M:OpenTK.Platform.Native.Windows.ShellComponent.SetCaptionTextColor(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Color3{OpenTK.Mathematics.Rgb}) + id: SetCaptionTextColor(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Color3{OpenTK.Mathematics.Rgb}) parent: OpenTK.Platform.Native.Windows.ShellComponent langs: - csharp - vb name: SetCaptionTextColor(WindowHandle, Color3) nameWithType: ShellComponent.SetCaptionTextColor(WindowHandle, Color3) - fullName: OpenTK.Platform.Native.Windows.ShellComponent.SetCaptionTextColor(OpenTK.Core.Platform.WindowHandle, OpenTK.Mathematics.Color3) + fullName: OpenTK.Platform.Native.Windows.ShellComponent.SetCaptionTextColor(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Color3) type: Method source: - remote: - path: src/OpenTK.Platform.Native/Windows/ShellComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetCaptionTextColor - path: opentk/src/OpenTK.Platform.Native/Windows/ShellComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\ShellComponent.cs startLine: 213 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: >- Works on Windows 11 only. @@ -371,35 +331,31 @@ items: content: public void SetCaptionTextColor(WindowHandle handle, Color3 color) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle - id: color type: OpenTK.Mathematics.Color3{OpenTK.Mathematics.Rgb} content.vb: Public Sub SetCaptionTextColor(handle As WindowHandle, color As Color3(Of Rgb)) overload: OpenTK.Platform.Native.Windows.ShellComponent.SetCaptionTextColor* nameWithType.vb: ShellComponent.SetCaptionTextColor(WindowHandle, Color3(Of Rgb)) - fullName.vb: OpenTK.Platform.Native.Windows.ShellComponent.SetCaptionTextColor(OpenTK.Core.Platform.WindowHandle, OpenTK.Mathematics.Color3(Of OpenTK.Mathematics.Rgb)) + fullName.vb: OpenTK.Platform.Native.Windows.ShellComponent.SetCaptionTextColor(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Color3(Of OpenTK.Mathematics.Rgb)) name.vb: SetCaptionTextColor(WindowHandle, Color3(Of Rgb)) -- uid: OpenTK.Platform.Native.Windows.ShellComponent.SetCaptionColor(OpenTK.Core.Platform.WindowHandle,OpenTK.Mathematics.Color3{OpenTK.Mathematics.Rgb}) - commentId: M:OpenTK.Platform.Native.Windows.ShellComponent.SetCaptionColor(OpenTK.Core.Platform.WindowHandle,OpenTK.Mathematics.Color3{OpenTK.Mathematics.Rgb}) - id: SetCaptionColor(OpenTK.Core.Platform.WindowHandle,OpenTK.Mathematics.Color3{OpenTK.Mathematics.Rgb}) +- uid: OpenTK.Platform.Native.Windows.ShellComponent.SetCaptionColor(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Color3{OpenTK.Mathematics.Rgb}) + commentId: M:OpenTK.Platform.Native.Windows.ShellComponent.SetCaptionColor(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Color3{OpenTK.Mathematics.Rgb}) + id: SetCaptionColor(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Color3{OpenTK.Mathematics.Rgb}) parent: OpenTK.Platform.Native.Windows.ShellComponent langs: - csharp - vb name: SetCaptionColor(WindowHandle, Color3) nameWithType: ShellComponent.SetCaptionColor(WindowHandle, Color3) - fullName: OpenTK.Platform.Native.Windows.ShellComponent.SetCaptionColor(OpenTK.Core.Platform.WindowHandle, OpenTK.Mathematics.Color3) + fullName: OpenTK.Platform.Native.Windows.ShellComponent.SetCaptionColor(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Color3) type: Method source: - remote: - path: src/OpenTK.Platform.Native/Windows/ShellComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetCaptionColor - path: opentk/src/OpenTK.Platform.Native/Windows/ShellComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\ShellComponent.cs startLine: 230 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: >- Works on Windows 11 only. @@ -410,35 +366,31 @@ items: content: public void SetCaptionColor(WindowHandle handle, Color3 color) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle - id: color type: OpenTK.Mathematics.Color3{OpenTK.Mathematics.Rgb} content.vb: Public Sub SetCaptionColor(handle As WindowHandle, color As Color3(Of Rgb)) overload: OpenTK.Platform.Native.Windows.ShellComponent.SetCaptionColor* nameWithType.vb: ShellComponent.SetCaptionColor(WindowHandle, Color3(Of Rgb)) - fullName.vb: OpenTK.Platform.Native.Windows.ShellComponent.SetCaptionColor(OpenTK.Core.Platform.WindowHandle, OpenTK.Mathematics.Color3(Of OpenTK.Mathematics.Rgb)) + fullName.vb: OpenTK.Platform.Native.Windows.ShellComponent.SetCaptionColor(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Color3(Of OpenTK.Mathematics.Rgb)) name.vb: SetCaptionColor(WindowHandle, Color3(Of Rgb)) -- uid: OpenTK.Platform.Native.Windows.ShellComponent.SetWindowCornerPreference(OpenTK.Core.Platform.WindowHandle,OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce) - commentId: M:OpenTK.Platform.Native.Windows.ShellComponent.SetWindowCornerPreference(OpenTK.Core.Platform.WindowHandle,OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce) - id: SetWindowCornerPreference(OpenTK.Core.Platform.WindowHandle,OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce) +- uid: OpenTK.Platform.Native.Windows.ShellComponent.SetWindowCornerPreference(OpenTK.Platform.WindowHandle,OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce) + commentId: M:OpenTK.Platform.Native.Windows.ShellComponent.SetWindowCornerPreference(OpenTK.Platform.WindowHandle,OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce) + id: SetWindowCornerPreference(OpenTK.Platform.WindowHandle,OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce) parent: OpenTK.Platform.Native.Windows.ShellComponent langs: - csharp - vb name: SetWindowCornerPreference(WindowHandle, CornerPrefernce) nameWithType: ShellComponent.SetWindowCornerPreference(WindowHandle, ShellComponent.CornerPrefernce) - fullName: OpenTK.Platform.Native.Windows.ShellComponent.SetWindowCornerPreference(OpenTK.Core.Platform.WindowHandle, OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce) + fullName: OpenTK.Platform.Native.Windows.ShellComponent.SetWindowCornerPreference(OpenTK.Platform.WindowHandle, OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce) type: Method source: - remote: - path: src/OpenTK.Platform.Native/Windows/ShellComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetWindowCornerPreference - path: opentk/src/OpenTK.Platform.Native/Windows/ShellComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\ShellComponent.cs startLine: 273 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: >- Works on Windows 11 only. @@ -449,7 +401,7 @@ items: content: public void SetWindowCornerPreference(WindowHandle handle, ShellComponent.CornerPrefernce preference) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle - id: preference type: OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce content.vb: Public Sub SetWindowCornerPreference(handle As WindowHandle, preference As ShellComponent.CornerPrefernce) @@ -466,35 +418,31 @@ items: fullName: OpenTK.Platform.Native.Windows.ShellComponent.GetSystemMemoryInformation() type: Method source: - remote: - path: src/OpenTK.Platform.Native/Windows/ShellComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetSystemMemoryInformation - path: opentk/src/OpenTK.Platform.Native/Windows/ShellComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\ShellComponent.cs startLine: 287 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: Gets information about the memory of the device and the current status. example: [] syntax: content: public SystemMemoryInfo GetSystemMemoryInformation() return: - type: OpenTK.Core.Platform.SystemMemoryInfo + type: OpenTK.Platform.SystemMemoryInfo description: The memory info. content.vb: Public Function GetSystemMemoryInformation() As SystemMemoryInfo overload: OpenTK.Platform.Native.Windows.ShellComponent.GetSystemMemoryInformation* implements: - - OpenTK.Core.Platform.IShellComponent.GetSystemMemoryInformation + - OpenTK.Platform.IShellComponent.GetSystemMemoryInformation references: -- uid: OpenTK.Core.Platform.IShellComponent - commentId: T:OpenTK.Core.Platform.IShellComponent - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.IShellComponent.html +- uid: OpenTK.Platform.IShellComponent + commentId: T:OpenTK.Platform.IShellComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IShellComponent.html name: IShellComponent nameWithType: IShellComponent - fullName: OpenTK.Core.Platform.IShellComponent + fullName: OpenTK.Platform.IShellComponent - uid: OpenTK.Platform.Native.Windows commentId: N:OpenTK.Platform.Native.Windows href: OpenTK.html @@ -544,13 +492,13 @@ references: nameWithType.vb: Object fullName.vb: Object name.vb: Object -- uid: OpenTK.Core.Platform.IPalComponent - commentId: T:OpenTK.Core.Platform.IPalComponent - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.IPalComponent.html +- uid: OpenTK.Platform.IPalComponent + commentId: T:OpenTK.Platform.IPalComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IPalComponent.html name: IPalComponent nameWithType: IPalComponent - fullName: OpenTK.Core.Platform.IPalComponent + fullName: OpenTK.Platform.IPalComponent - uid: System.Object.Equals(System.Object) commentId: M:System.Object.Equals(System.Object) parent: System.Object @@ -770,36 +718,28 @@ references: href: https://learn.microsoft.com/dotnet/api/system.object.tostring - name: ( - name: ) -- uid: OpenTK.Core.Platform - commentId: N:OpenTK.Core.Platform +- uid: OpenTK.Platform + commentId: N:OpenTK.Platform href: OpenTK.html - name: OpenTK.Core.Platform - nameWithType: OpenTK.Core.Platform - fullName: OpenTK.Core.Platform + name: OpenTK.Platform + nameWithType: OpenTK.Platform + fullName: OpenTK.Platform spec.csharp: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html spec.vb: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html - uid: System commentId: N:System isExternal: true @@ -813,13 +753,13 @@ references: name: Name nameWithType: ShellComponent.Name fullName: OpenTK.Platform.Native.Windows.ShellComponent.Name -- uid: OpenTK.Core.Platform.IPalComponent.Name - commentId: P:OpenTK.Core.Platform.IPalComponent.Name - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Name +- uid: OpenTK.Platform.IPalComponent.Name + commentId: P:OpenTK.Platform.IPalComponent.Name + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Name name: Name nameWithType: IPalComponent.Name - fullName: OpenTK.Core.Platform.IPalComponent.Name + fullName: OpenTK.Platform.IPalComponent.Name - uid: System.String commentId: T:System.String parent: System @@ -837,33 +777,33 @@ references: name: Provides nameWithType: ShellComponent.Provides fullName: OpenTK.Platform.Native.Windows.ShellComponent.Provides -- uid: OpenTK.Core.Platform.IPalComponent.Provides - commentId: P:OpenTK.Core.Platform.IPalComponent.Provides - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Provides +- uid: OpenTK.Platform.IPalComponent.Provides + commentId: P:OpenTK.Platform.IPalComponent.Provides + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Provides name: Provides nameWithType: IPalComponent.Provides - fullName: OpenTK.Core.Platform.IPalComponent.Provides -- uid: OpenTK.Core.Platform.PalComponents - commentId: T:OpenTK.Core.Platform.PalComponents - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.PalComponents.html + fullName: OpenTK.Platform.IPalComponent.Provides +- uid: OpenTK.Platform.PalComponents + commentId: T:OpenTK.Platform.PalComponents + parent: OpenTK.Platform + href: OpenTK.Platform.PalComponents.html name: PalComponents nameWithType: PalComponents - fullName: OpenTK.Core.Platform.PalComponents + fullName: OpenTK.Platform.PalComponents - uid: OpenTK.Platform.Native.Windows.ShellComponent.Logger* commentId: Overload:OpenTK.Platform.Native.Windows.ShellComponent.Logger href: OpenTK.Platform.Native.Windows.ShellComponent.html#OpenTK_Platform_Native_Windows_ShellComponent_Logger name: Logger nameWithType: ShellComponent.Logger fullName: OpenTK.Platform.Native.Windows.ShellComponent.Logger -- uid: OpenTK.Core.Platform.IPalComponent.Logger - commentId: P:OpenTK.Core.Platform.IPalComponent.Logger - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Logger +- uid: OpenTK.Platform.IPalComponent.Logger + commentId: P:OpenTK.Platform.IPalComponent.Logger + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Logger name: Logger nameWithType: IPalComponent.Logger - fullName: OpenTK.Core.Platform.IPalComponent.Logger + fullName: OpenTK.Platform.IPalComponent.Logger - uid: OpenTK.Core.Utility.ILogger commentId: T:OpenTK.Core.Utility.ILogger parent: OpenTK.Core.Utility @@ -903,63 +843,63 @@ references: href: OpenTK.Core.Utility.html - uid: OpenTK.Platform.Native.Windows.ShellComponent.Initialize* commentId: Overload:OpenTK.Platform.Native.Windows.ShellComponent.Initialize - href: OpenTK.Platform.Native.Windows.ShellComponent.html#OpenTK_Platform_Native_Windows_ShellComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + href: OpenTK.Platform.Native.Windows.ShellComponent.html#OpenTK_Platform_Native_Windows_ShellComponent_Initialize_OpenTK_Platform_ToolkitOptions_ name: Initialize nameWithType: ShellComponent.Initialize fullName: OpenTK.Platform.Native.Windows.ShellComponent.Initialize -- uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - commentId: M:OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ +- uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ name: Initialize(ToolkitOptions) nameWithType: IPalComponent.Initialize(ToolkitOptions) - fullName: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + fullName: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) spec.csharp: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + - uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.ToolkitOptions + - uid: OpenTK.Platform.ToolkitOptions name: ToolkitOptions - href: OpenTK.Core.Platform.ToolkitOptions.html + href: OpenTK.Platform.ToolkitOptions.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + - uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.ToolkitOptions + - uid: OpenTK.Platform.ToolkitOptions name: ToolkitOptions - href: OpenTK.Core.Platform.ToolkitOptions.html + href: OpenTK.Platform.ToolkitOptions.html - name: ) -- uid: OpenTK.Core.Platform.ToolkitOptions - commentId: T:OpenTK.Core.Platform.ToolkitOptions - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.ToolkitOptions.html +- uid: OpenTK.Platform.ToolkitOptions + commentId: T:OpenTK.Platform.ToolkitOptions + parent: OpenTK.Platform + href: OpenTK.Platform.ToolkitOptions.html name: ToolkitOptions nameWithType: ToolkitOptions - fullName: OpenTK.Core.Platform.ToolkitOptions + fullName: OpenTK.Platform.ToolkitOptions - uid: OpenTK.Platform.Native.Windows.ShellComponent.AllowScreenSaver* commentId: Overload:OpenTK.Platform.Native.Windows.ShellComponent.AllowScreenSaver href: OpenTK.Platform.Native.Windows.ShellComponent.html#OpenTK_Platform_Native_Windows_ShellComponent_AllowScreenSaver_System_Boolean_ name: AllowScreenSaver nameWithType: ShellComponent.AllowScreenSaver fullName: OpenTK.Platform.Native.Windows.ShellComponent.AllowScreenSaver -- uid: OpenTK.Core.Platform.IShellComponent.AllowScreenSaver(System.Boolean) - commentId: M:OpenTK.Core.Platform.IShellComponent.AllowScreenSaver(System.Boolean) - parent: OpenTK.Core.Platform.IShellComponent +- uid: OpenTK.Platform.IShellComponent.AllowScreenSaver(System.Boolean) + commentId: M:OpenTK.Platform.IShellComponent.AllowScreenSaver(System.Boolean) + parent: OpenTK.Platform.IShellComponent isExternal: true - href: OpenTK.Core.Platform.IShellComponent.html#OpenTK_Core_Platform_IShellComponent_AllowScreenSaver_System_Boolean_ + href: OpenTK.Platform.IShellComponent.html#OpenTK_Platform_IShellComponent_AllowScreenSaver_System_Boolean_ name: AllowScreenSaver(bool) nameWithType: IShellComponent.AllowScreenSaver(bool) - fullName: OpenTK.Core.Platform.IShellComponent.AllowScreenSaver(bool) + fullName: OpenTK.Platform.IShellComponent.AllowScreenSaver(bool) nameWithType.vb: IShellComponent.AllowScreenSaver(Boolean) - fullName.vb: OpenTK.Core.Platform.IShellComponent.AllowScreenSaver(Boolean) + fullName.vb: OpenTK.Platform.IShellComponent.AllowScreenSaver(Boolean) name.vb: AllowScreenSaver(Boolean) spec.csharp: - - uid: OpenTK.Core.Platform.IShellComponent.AllowScreenSaver(System.Boolean) + - uid: OpenTK.Platform.IShellComponent.AllowScreenSaver(System.Boolean) name: AllowScreenSaver - href: OpenTK.Core.Platform.IShellComponent.html#OpenTK_Core_Platform_IShellComponent_AllowScreenSaver_System_Boolean_ + href: OpenTK.Platform.IShellComponent.html#OpenTK_Platform_IShellComponent_AllowScreenSaver_System_Boolean_ - name: ( - uid: System.Boolean name: bool @@ -967,9 +907,9 @@ references: href: https://learn.microsoft.com/dotnet/api/system.boolean - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IShellComponent.AllowScreenSaver(System.Boolean) + - uid: OpenTK.Platform.IShellComponent.AllowScreenSaver(System.Boolean) name: AllowScreenSaver - href: OpenTK.Core.Platform.IShellComponent.html#OpenTK_Core_Platform_IShellComponent_AllowScreenSaver_System_Boolean_ + href: OpenTK.Platform.IShellComponent.html#OpenTK_Platform_IShellComponent_AllowScreenSaver_System_Boolean_ - name: ( - uid: System.Boolean name: Boolean @@ -987,110 +927,110 @@ references: nameWithType.vb: Boolean fullName.vb: Boolean name.vb: Boolean -- uid: OpenTK.Core.Platform.BatteryStatus.HasSystemBattery - commentId: F:OpenTK.Core.Platform.BatteryStatus.HasSystemBattery - href: OpenTK.Core.Platform.BatteryStatus.html#OpenTK_Core_Platform_BatteryStatus_HasSystemBattery +- uid: OpenTK.Platform.BatteryStatus.HasSystemBattery + commentId: F:OpenTK.Platform.BatteryStatus.HasSystemBattery + href: OpenTK.Platform.BatteryStatus.html#OpenTK_Platform_BatteryStatus_HasSystemBattery name: HasSystemBattery nameWithType: BatteryStatus.HasSystemBattery - fullName: OpenTK.Core.Platform.BatteryStatus.HasSystemBattery + fullName: OpenTK.Platform.BatteryStatus.HasSystemBattery - uid: OpenTK.Platform.Native.Windows.ShellComponent.GetBatteryInfo* commentId: Overload:OpenTK.Platform.Native.Windows.ShellComponent.GetBatteryInfo - href: OpenTK.Platform.Native.Windows.ShellComponent.html#OpenTK_Platform_Native_Windows_ShellComponent_GetBatteryInfo_OpenTK_Core_Platform_BatteryInfo__ + href: OpenTK.Platform.Native.Windows.ShellComponent.html#OpenTK_Platform_Native_Windows_ShellComponent_GetBatteryInfo_OpenTK_Platform_BatteryInfo__ name: GetBatteryInfo nameWithType: ShellComponent.GetBatteryInfo fullName: OpenTK.Platform.Native.Windows.ShellComponent.GetBatteryInfo -- uid: OpenTK.Core.Platform.IShellComponent.GetBatteryInfo(OpenTK.Core.Platform.BatteryInfo@) - commentId: M:OpenTK.Core.Platform.IShellComponent.GetBatteryInfo(OpenTK.Core.Platform.BatteryInfo@) - parent: OpenTK.Core.Platform.IShellComponent - href: OpenTK.Core.Platform.IShellComponent.html#OpenTK_Core_Platform_IShellComponent_GetBatteryInfo_OpenTK_Core_Platform_BatteryInfo__ +- uid: OpenTK.Platform.IShellComponent.GetBatteryInfo(OpenTK.Platform.BatteryInfo@) + commentId: M:OpenTK.Platform.IShellComponent.GetBatteryInfo(OpenTK.Platform.BatteryInfo@) + parent: OpenTK.Platform.IShellComponent + href: OpenTK.Platform.IShellComponent.html#OpenTK_Platform_IShellComponent_GetBatteryInfo_OpenTK_Platform_BatteryInfo__ name: GetBatteryInfo(out BatteryInfo) nameWithType: IShellComponent.GetBatteryInfo(out BatteryInfo) - fullName: OpenTK.Core.Platform.IShellComponent.GetBatteryInfo(out OpenTK.Core.Platform.BatteryInfo) + fullName: OpenTK.Platform.IShellComponent.GetBatteryInfo(out OpenTK.Platform.BatteryInfo) nameWithType.vb: IShellComponent.GetBatteryInfo(BatteryInfo) - fullName.vb: OpenTK.Core.Platform.IShellComponent.GetBatteryInfo(OpenTK.Core.Platform.BatteryInfo) + fullName.vb: OpenTK.Platform.IShellComponent.GetBatteryInfo(OpenTK.Platform.BatteryInfo) name.vb: GetBatteryInfo(BatteryInfo) spec.csharp: - - uid: OpenTK.Core.Platform.IShellComponent.GetBatteryInfo(OpenTK.Core.Platform.BatteryInfo@) + - uid: OpenTK.Platform.IShellComponent.GetBatteryInfo(OpenTK.Platform.BatteryInfo@) name: GetBatteryInfo - href: OpenTK.Core.Platform.IShellComponent.html#OpenTK_Core_Platform_IShellComponent_GetBatteryInfo_OpenTK_Core_Platform_BatteryInfo__ + href: OpenTK.Platform.IShellComponent.html#OpenTK_Platform_IShellComponent_GetBatteryInfo_OpenTK_Platform_BatteryInfo__ - name: ( - name: out - name: " " - - uid: OpenTK.Core.Platform.BatteryInfo + - uid: OpenTK.Platform.BatteryInfo name: BatteryInfo - href: OpenTK.Core.Platform.BatteryInfo.html + href: OpenTK.Platform.BatteryInfo.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IShellComponent.GetBatteryInfo(OpenTK.Core.Platform.BatteryInfo@) + - uid: OpenTK.Platform.IShellComponent.GetBatteryInfo(OpenTK.Platform.BatteryInfo@) name: GetBatteryInfo - href: OpenTK.Core.Platform.IShellComponent.html#OpenTK_Core_Platform_IShellComponent_GetBatteryInfo_OpenTK_Core_Platform_BatteryInfo__ + href: OpenTK.Platform.IShellComponent.html#OpenTK_Platform_IShellComponent_GetBatteryInfo_OpenTK_Platform_BatteryInfo__ - name: ( - - uid: OpenTK.Core.Platform.BatteryInfo + - uid: OpenTK.Platform.BatteryInfo name: BatteryInfo - href: OpenTK.Core.Platform.BatteryInfo.html + href: OpenTK.Platform.BatteryInfo.html - name: ) -- uid: OpenTK.Core.Platform.BatteryInfo - commentId: T:OpenTK.Core.Platform.BatteryInfo - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.BatteryInfo.html +- uid: OpenTK.Platform.BatteryInfo + commentId: T:OpenTK.Platform.BatteryInfo + parent: OpenTK.Platform + href: OpenTK.Platform.BatteryInfo.html name: BatteryInfo nameWithType: BatteryInfo - fullName: OpenTK.Core.Platform.BatteryInfo -- uid: OpenTK.Core.Platform.BatteryStatus - commentId: T:OpenTK.Core.Platform.BatteryStatus - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.BatteryStatus.html + fullName: OpenTK.Platform.BatteryInfo +- uid: OpenTK.Platform.BatteryStatus + commentId: T:OpenTK.Platform.BatteryStatus + parent: OpenTK.Platform + href: OpenTK.Platform.BatteryStatus.html name: BatteryStatus nameWithType: BatteryStatus - fullName: OpenTK.Core.Platform.BatteryStatus + fullName: OpenTK.Platform.BatteryStatus - uid: OpenTK.Platform.Native.Windows.ShellComponent.GetPreferredTheme* commentId: Overload:OpenTK.Platform.Native.Windows.ShellComponent.GetPreferredTheme href: OpenTK.Platform.Native.Windows.ShellComponent.html#OpenTK_Platform_Native_Windows_ShellComponent_GetPreferredTheme name: GetPreferredTheme nameWithType: ShellComponent.GetPreferredTheme fullName: OpenTK.Platform.Native.Windows.ShellComponent.GetPreferredTheme -- uid: OpenTK.Core.Platform.IShellComponent.GetPreferredTheme - commentId: M:OpenTK.Core.Platform.IShellComponent.GetPreferredTheme - parent: OpenTK.Core.Platform.IShellComponent - href: OpenTK.Core.Platform.IShellComponent.html#OpenTK_Core_Platform_IShellComponent_GetPreferredTheme +- uid: OpenTK.Platform.IShellComponent.GetPreferredTheme + commentId: M:OpenTK.Platform.IShellComponent.GetPreferredTheme + parent: OpenTK.Platform.IShellComponent + href: OpenTK.Platform.IShellComponent.html#OpenTK_Platform_IShellComponent_GetPreferredTheme name: GetPreferredTheme() nameWithType: IShellComponent.GetPreferredTheme() - fullName: OpenTK.Core.Platform.IShellComponent.GetPreferredTheme() + fullName: OpenTK.Platform.IShellComponent.GetPreferredTheme() spec.csharp: - - uid: OpenTK.Core.Platform.IShellComponent.GetPreferredTheme + - uid: OpenTK.Platform.IShellComponent.GetPreferredTheme name: GetPreferredTheme - href: OpenTK.Core.Platform.IShellComponent.html#OpenTK_Core_Platform_IShellComponent_GetPreferredTheme + href: OpenTK.Platform.IShellComponent.html#OpenTK_Platform_IShellComponent_GetPreferredTheme - name: ( - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IShellComponent.GetPreferredTheme + - uid: OpenTK.Platform.IShellComponent.GetPreferredTheme name: GetPreferredTheme - href: OpenTK.Core.Platform.IShellComponent.html#OpenTK_Core_Platform_IShellComponent_GetPreferredTheme + href: OpenTK.Platform.IShellComponent.html#OpenTK_Platform_IShellComponent_GetPreferredTheme - name: ( - name: ) -- uid: OpenTK.Core.Platform.ThemeInfo - commentId: T:OpenTK.Core.Platform.ThemeInfo - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.ThemeInfo.html +- uid: OpenTK.Platform.ThemeInfo + commentId: T:OpenTK.Platform.ThemeInfo + parent: OpenTK.Platform + href: OpenTK.Platform.ThemeInfo.html name: ThemeInfo nameWithType: ThemeInfo - fullName: OpenTK.Core.Platform.ThemeInfo + fullName: OpenTK.Platform.ThemeInfo - uid: OpenTK.Platform.Native.Windows.ShellComponent.SetImmersiveDarkMode* commentId: Overload:OpenTK.Platform.Native.Windows.ShellComponent.SetImmersiveDarkMode - href: OpenTK.Platform.Native.Windows.ShellComponent.html#OpenTK_Platform_Native_Windows_ShellComponent_SetImmersiveDarkMode_OpenTK_Core_Platform_WindowHandle_System_Boolean_ + href: OpenTK.Platform.Native.Windows.ShellComponent.html#OpenTK_Platform_Native_Windows_ShellComponent_SetImmersiveDarkMode_OpenTK_Platform_WindowHandle_System_Boolean_ name: SetImmersiveDarkMode nameWithType: ShellComponent.SetImmersiveDarkMode fullName: OpenTK.Platform.Native.Windows.ShellComponent.SetImmersiveDarkMode -- uid: OpenTK.Core.Platform.WindowHandle - commentId: T:OpenTK.Core.Platform.WindowHandle - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.WindowHandle.html +- uid: OpenTK.Platform.WindowHandle + commentId: T:OpenTK.Platform.WindowHandle + parent: OpenTK.Platform + href: OpenTK.Platform.WindowHandle.html name: WindowHandle nameWithType: WindowHandle - fullName: OpenTK.Core.Platform.WindowHandle + fullName: OpenTK.Platform.WindowHandle - uid: OpenTK.Platform.Native.Windows.ShellComponent.SetCaptionTextColor* commentId: Overload:OpenTK.Platform.Native.Windows.ShellComponent.SetCaptionTextColor - href: OpenTK.Platform.Native.Windows.ShellComponent.html#OpenTK_Platform_Native_Windows_ShellComponent_SetCaptionTextColor_OpenTK_Core_Platform_WindowHandle_OpenTK_Mathematics_Color3_OpenTK_Mathematics_Rgb__ + href: OpenTK.Platform.Native.Windows.ShellComponent.html#OpenTK_Platform_Native_Windows_ShellComponent_SetCaptionTextColor_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Color3_OpenTK_Mathematics_Rgb__ name: SetCaptionTextColor nameWithType: ShellComponent.SetCaptionTextColor fullName: OpenTK.Platform.Native.Windows.ShellComponent.SetCaptionTextColor @@ -1175,13 +1115,13 @@ references: href: OpenTK.Mathematics.html - uid: OpenTK.Platform.Native.Windows.ShellComponent.SetCaptionColor* commentId: Overload:OpenTK.Platform.Native.Windows.ShellComponent.SetCaptionColor - href: OpenTK.Platform.Native.Windows.ShellComponent.html#OpenTK_Platform_Native_Windows_ShellComponent_SetCaptionColor_OpenTK_Core_Platform_WindowHandle_OpenTK_Mathematics_Color3_OpenTK_Mathematics_Rgb__ + href: OpenTK.Platform.Native.Windows.ShellComponent.html#OpenTK_Platform_Native_Windows_ShellComponent_SetCaptionColor_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Color3_OpenTK_Mathematics_Rgb__ name: SetCaptionColor nameWithType: ShellComponent.SetCaptionColor fullName: OpenTK.Platform.Native.Windows.ShellComponent.SetCaptionColor - uid: OpenTK.Platform.Native.Windows.ShellComponent.SetWindowCornerPreference* commentId: Overload:OpenTK.Platform.Native.Windows.ShellComponent.SetWindowCornerPreference - href: OpenTK.Platform.Native.Windows.ShellComponent.html#OpenTK_Platform_Native_Windows_ShellComponent_SetWindowCornerPreference_OpenTK_Core_Platform_WindowHandle_OpenTK_Platform_Native_Windows_ShellComponent_CornerPrefernce_ + href: OpenTK.Platform.Native.Windows.ShellComponent.html#OpenTK_Platform_Native_Windows_ShellComponent_SetWindowCornerPreference_OpenTK_Platform_WindowHandle_OpenTK_Platform_Native_Windows_ShellComponent_CornerPrefernce_ name: SetWindowCornerPreference nameWithType: ShellComponent.SetWindowCornerPreference fullName: OpenTK.Platform.Native.Windows.ShellComponent.SetWindowCornerPreference @@ -1214,29 +1154,29 @@ references: name: GetSystemMemoryInformation nameWithType: ShellComponent.GetSystemMemoryInformation fullName: OpenTK.Platform.Native.Windows.ShellComponent.GetSystemMemoryInformation -- uid: OpenTK.Core.Platform.IShellComponent.GetSystemMemoryInformation - commentId: M:OpenTK.Core.Platform.IShellComponent.GetSystemMemoryInformation - parent: OpenTK.Core.Platform.IShellComponent - href: OpenTK.Core.Platform.IShellComponent.html#OpenTK_Core_Platform_IShellComponent_GetSystemMemoryInformation +- uid: OpenTK.Platform.IShellComponent.GetSystemMemoryInformation + commentId: M:OpenTK.Platform.IShellComponent.GetSystemMemoryInformation + parent: OpenTK.Platform.IShellComponent + href: OpenTK.Platform.IShellComponent.html#OpenTK_Platform_IShellComponent_GetSystemMemoryInformation name: GetSystemMemoryInformation() nameWithType: IShellComponent.GetSystemMemoryInformation() - fullName: OpenTK.Core.Platform.IShellComponent.GetSystemMemoryInformation() + fullName: OpenTK.Platform.IShellComponent.GetSystemMemoryInformation() spec.csharp: - - uid: OpenTK.Core.Platform.IShellComponent.GetSystemMemoryInformation + - uid: OpenTK.Platform.IShellComponent.GetSystemMemoryInformation name: GetSystemMemoryInformation - href: OpenTK.Core.Platform.IShellComponent.html#OpenTK_Core_Platform_IShellComponent_GetSystemMemoryInformation + href: OpenTK.Platform.IShellComponent.html#OpenTK_Platform_IShellComponent_GetSystemMemoryInformation - name: ( - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IShellComponent.GetSystemMemoryInformation + - uid: OpenTK.Platform.IShellComponent.GetSystemMemoryInformation name: GetSystemMemoryInformation - href: OpenTK.Core.Platform.IShellComponent.html#OpenTK_Core_Platform_IShellComponent_GetSystemMemoryInformation + href: OpenTK.Platform.IShellComponent.html#OpenTK_Platform_IShellComponent_GetSystemMemoryInformation - name: ( - name: ) -- uid: OpenTK.Core.Platform.SystemMemoryInfo - commentId: T:OpenTK.Core.Platform.SystemMemoryInfo - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.SystemMemoryInfo.html +- uid: OpenTK.Platform.SystemMemoryInfo + commentId: T:OpenTK.Platform.SystemMemoryInfo + parent: OpenTK.Platform + href: OpenTK.Platform.SystemMemoryInfo.html name: SystemMemoryInfo nameWithType: SystemMemoryInfo - fullName: OpenTK.Core.Platform.SystemMemoryInfo + fullName: OpenTK.Platform.SystemMemoryInfo diff --git a/api/OpenTK.Platform.Native.Windows.WindowComponent.yml b/api/OpenTK.Platform.Native.Windows.WindowComponent.yml index b805a41a..dcf8c092 100644 --- a/api/OpenTK.Platform.Native.Windows.WindowComponent.yml +++ b/api/OpenTK.Platform.Native.Windows.WindowComponent.yml @@ -10,58 +10,58 @@ items: - OpenTK.Platform.Native.Windows.WindowComponent.CanGetDisplay - OpenTK.Platform.Native.Windows.WindowComponent.CanSetCursor - OpenTK.Platform.Native.Windows.WindowComponent.CanSetIcon - - OpenTK.Platform.Native.Windows.WindowComponent.ClientToScreen(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) - - OpenTK.Platform.Native.Windows.WindowComponent.Create(OpenTK.Core.Platform.GraphicsApiHints) - - OpenTK.Platform.Native.Windows.WindowComponent.Destroy(OpenTK.Core.Platform.WindowHandle) - - OpenTK.Platform.Native.Windows.WindowComponent.FocusWindow(OpenTK.Core.Platform.WindowHandle) - - OpenTK.Platform.Native.Windows.WindowComponent.GetBorderStyle(OpenTK.Core.Platform.WindowHandle) - - OpenTK.Platform.Native.Windows.WindowComponent.GetBounds(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) - - OpenTK.Platform.Native.Windows.WindowComponent.GetClientBounds(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) - - OpenTK.Platform.Native.Windows.WindowComponent.GetClientPosition(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) - - OpenTK.Platform.Native.Windows.WindowComponent.GetClientSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) - - OpenTK.Platform.Native.Windows.WindowComponent.GetCursorCaptureMode(OpenTK.Core.Platform.WindowHandle) - - OpenTK.Platform.Native.Windows.WindowComponent.GetDisplay(OpenTK.Core.Platform.WindowHandle) - - OpenTK.Platform.Native.Windows.WindowComponent.GetFramebufferSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) - - OpenTK.Platform.Native.Windows.WindowComponent.GetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle@) - - OpenTK.Platform.Native.Windows.WindowComponent.GetHWND(OpenTK.Core.Platform.WindowHandle) - - OpenTK.Platform.Native.Windows.WindowComponent.GetIcon(OpenTK.Core.Platform.WindowHandle) - - OpenTK.Platform.Native.Windows.WindowComponent.GetMaxClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) - - OpenTK.Platform.Native.Windows.WindowComponent.GetMinClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) - - OpenTK.Platform.Native.Windows.WindowComponent.GetMode(OpenTK.Core.Platform.WindowHandle) - - OpenTK.Platform.Native.Windows.WindowComponent.GetPosition(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) - - OpenTK.Platform.Native.Windows.WindowComponent.GetScaleFactor(OpenTK.Core.Platform.WindowHandle,System.Single@,System.Single@) - - OpenTK.Platform.Native.Windows.WindowComponent.GetSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) - - OpenTK.Platform.Native.Windows.WindowComponent.GetTitle(OpenTK.Core.Platform.WindowHandle) + - OpenTK.Platform.Native.Windows.WindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) + - OpenTK.Platform.Native.Windows.WindowComponent.Create(OpenTK.Platform.GraphicsApiHints) + - OpenTK.Platform.Native.Windows.WindowComponent.Destroy(OpenTK.Platform.WindowHandle) + - OpenTK.Platform.Native.Windows.WindowComponent.FocusWindow(OpenTK.Platform.WindowHandle) + - OpenTK.Platform.Native.Windows.WindowComponent.GetBorderStyle(OpenTK.Platform.WindowHandle) + - OpenTK.Platform.Native.Windows.WindowComponent.GetBounds(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) + - OpenTK.Platform.Native.Windows.WindowComponent.GetClientBounds(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) + - OpenTK.Platform.Native.Windows.WindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + - OpenTK.Platform.Native.Windows.WindowComponent.GetClientSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + - OpenTK.Platform.Native.Windows.WindowComponent.GetCursorCaptureMode(OpenTK.Platform.WindowHandle) + - OpenTK.Platform.Native.Windows.WindowComponent.GetDisplay(OpenTK.Platform.WindowHandle) + - OpenTK.Platform.Native.Windows.WindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + - OpenTK.Platform.Native.Windows.WindowComponent.GetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle@) + - OpenTK.Platform.Native.Windows.WindowComponent.GetHWND(OpenTK.Platform.WindowHandle) + - OpenTK.Platform.Native.Windows.WindowComponent.GetIcon(OpenTK.Platform.WindowHandle) + - OpenTK.Platform.Native.Windows.WindowComponent.GetMaxClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) + - OpenTK.Platform.Native.Windows.WindowComponent.GetMinClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) + - OpenTK.Platform.Native.Windows.WindowComponent.GetMode(OpenTK.Platform.WindowHandle) + - OpenTK.Platform.Native.Windows.WindowComponent.GetPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + - OpenTK.Platform.Native.Windows.WindowComponent.GetScaleFactor(OpenTK.Platform.WindowHandle,System.Single@,System.Single@) + - OpenTK.Platform.Native.Windows.WindowComponent.GetSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + - OpenTK.Platform.Native.Windows.WindowComponent.GetTitle(OpenTK.Platform.WindowHandle) - OpenTK.Platform.Native.Windows.WindowComponent.HInstance - OpenTK.Platform.Native.Windows.WindowComponent.HelperHWnd - - OpenTK.Platform.Native.Windows.WindowComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - - OpenTK.Platform.Native.Windows.WindowComponent.IsAlwaysOnTop(OpenTK.Core.Platform.WindowHandle) - - OpenTK.Platform.Native.Windows.WindowComponent.IsFocused(OpenTK.Core.Platform.WindowHandle) - - OpenTK.Platform.Native.Windows.WindowComponent.IsWindowDestroyed(OpenTK.Core.Platform.WindowHandle) + - OpenTK.Platform.Native.Windows.WindowComponent.Initialize(OpenTK.Platform.ToolkitOptions) + - OpenTK.Platform.Native.Windows.WindowComponent.IsAlwaysOnTop(OpenTK.Platform.WindowHandle) + - OpenTK.Platform.Native.Windows.WindowComponent.IsFocused(OpenTK.Platform.WindowHandle) + - OpenTK.Platform.Native.Windows.WindowComponent.IsWindowDestroyed(OpenTK.Platform.WindowHandle) - OpenTK.Platform.Native.Windows.WindowComponent.Logger - OpenTK.Platform.Native.Windows.WindowComponent.Name - OpenTK.Platform.Native.Windows.WindowComponent.ProcessEvents(System.Boolean) - OpenTK.Platform.Native.Windows.WindowComponent.Provides - - OpenTK.Platform.Native.Windows.WindowComponent.RequestAttention(OpenTK.Core.Platform.WindowHandle) - - OpenTK.Platform.Native.Windows.WindowComponent.ScreenToClient(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) - - OpenTK.Platform.Native.Windows.WindowComponent.SetAlwaysOnTop(OpenTK.Core.Platform.WindowHandle,System.Boolean) - - OpenTK.Platform.Native.Windows.WindowComponent.SetBorderStyle(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.WindowBorderStyle) - - OpenTK.Platform.Native.Windows.WindowComponent.SetBounds(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) - - OpenTK.Platform.Native.Windows.WindowComponent.SetClientBounds(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) - - OpenTK.Platform.Native.Windows.WindowComponent.SetClientPosition(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) - - OpenTK.Platform.Native.Windows.WindowComponent.SetClientSize(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) - - OpenTK.Platform.Native.Windows.WindowComponent.SetCursor(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.CursorHandle) - - OpenTK.Platform.Native.Windows.WindowComponent.SetCursorCaptureMode(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.CursorCaptureMode) - - OpenTK.Platform.Native.Windows.WindowComponent.SetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle) - - OpenTK.Platform.Native.Windows.WindowComponent.SetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle,OpenTK.Core.Platform.VideoMode) - - OpenTK.Platform.Native.Windows.WindowComponent.SetHitTestCallback(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.HitTest) - - OpenTK.Platform.Native.Windows.WindowComponent.SetIcon(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.IconHandle) - - OpenTK.Platform.Native.Windows.WindowComponent.SetMaxClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) - - OpenTK.Platform.Native.Windows.WindowComponent.SetMinClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) - - OpenTK.Platform.Native.Windows.WindowComponent.SetMode(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.WindowMode) - - OpenTK.Platform.Native.Windows.WindowComponent.SetPosition(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) - - OpenTK.Platform.Native.Windows.WindowComponent.SetSize(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) - - OpenTK.Platform.Native.Windows.WindowComponent.SetTitle(OpenTK.Core.Platform.WindowHandle,System.String) + - OpenTK.Platform.Native.Windows.WindowComponent.RequestAttention(OpenTK.Platform.WindowHandle) + - OpenTK.Platform.Native.Windows.WindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) + - OpenTK.Platform.Native.Windows.WindowComponent.SetAlwaysOnTop(OpenTK.Platform.WindowHandle,System.Boolean) + - OpenTK.Platform.Native.Windows.WindowComponent.SetBorderStyle(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowBorderStyle) + - OpenTK.Platform.Native.Windows.WindowComponent.SetBounds(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) + - OpenTK.Platform.Native.Windows.WindowComponent.SetClientBounds(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) + - OpenTK.Platform.Native.Windows.WindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) + - OpenTK.Platform.Native.Windows.WindowComponent.SetClientSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) + - OpenTK.Platform.Native.Windows.WindowComponent.SetCursor(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorHandle) + - OpenTK.Platform.Native.Windows.WindowComponent.SetCursorCaptureMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorCaptureMode) + - OpenTK.Platform.Native.Windows.WindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle) + - OpenTK.Platform.Native.Windows.WindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle,OpenTK.Platform.VideoMode) + - OpenTK.Platform.Native.Windows.WindowComponent.SetHitTestCallback(OpenTK.Platform.WindowHandle,OpenTK.Platform.HitTest) + - OpenTK.Platform.Native.Windows.WindowComponent.SetIcon(OpenTK.Platform.WindowHandle,OpenTK.Platform.IconHandle) + - OpenTK.Platform.Native.Windows.WindowComponent.SetMaxClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) + - OpenTK.Platform.Native.Windows.WindowComponent.SetMinClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) + - OpenTK.Platform.Native.Windows.WindowComponent.SetMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowMode) + - OpenTK.Platform.Native.Windows.WindowComponent.SetPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) + - OpenTK.Platform.Native.Windows.WindowComponent.SetSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) + - OpenTK.Platform.Native.Windows.WindowComponent.SetTitle(OpenTK.Platform.WindowHandle,System.String) - OpenTK.Platform.Native.Windows.WindowComponent.SupportedEvents - OpenTK.Platform.Native.Windows.WindowComponent.SupportedModes - OpenTK.Platform.Native.Windows.WindowComponent.SupportedStyles @@ -73,17 +73,13 @@ items: fullName: OpenTK.Platform.Native.Windows.WindowComponent type: Class source: - remote: - path: src/OpenTK.Platform.Native/Windows/WindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: WindowComponent - path: opentk/src/OpenTK.Platform.Native/Windows/WindowComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\WindowComponent.cs startLine: 17 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows - summary: Win32 implementation of . + summary: Win32 implementation of . example: [] syntax: content: 'public class WindowComponent : IWindowComponent, IPalComponent' @@ -91,8 +87,8 @@ items: inheritance: - System.Object implements: - - OpenTK.Core.Platform.IWindowComponent - - OpenTK.Core.Platform.IPalComponent + - OpenTK.Platform.IWindowComponent + - OpenTK.Platform.IPalComponent inheritedMembers: - System.Object.Equals(System.Object) - System.Object.Equals(System.Object,System.Object) @@ -113,15 +109,11 @@ items: fullName: OpenTK.Platform.Native.Windows.WindowComponent.CLASS_NAME type: Field source: - remote: - path: src/OpenTK.Platform.Native/Windows/WindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CLASS_NAME - path: opentk/src/OpenTK.Platform.Native/Windows/WindowComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\WindowComponent.cs startLine: 22 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: Class name used to create windows. example: [] @@ -142,15 +134,11 @@ items: fullName: OpenTK.Platform.Native.Windows.WindowComponent.HInstance type: Field source: - remote: - path: src/OpenTK.Platform.Native/Windows/WindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: HInstance - path: opentk/src/OpenTK.Platform.Native/Windows/WindowComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\WindowComponent.cs startLine: 27 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: The applications HInstance. example: [] @@ -171,15 +159,11 @@ items: fullName: OpenTK.Platform.Native.Windows.WindowComponent.HelperHWnd type: Property source: - remote: - path: src/OpenTK.Platform.Native/Windows/WindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: HelperHWnd - path: opentk/src/OpenTK.Platform.Native/Windows/WindowComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\WindowComponent.cs startLine: 32 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: The helper window used to load wgl extensions. example: [] @@ -202,15 +186,11 @@ items: fullName: OpenTK.Platform.Native.Windows.WindowComponent.Name type: Property source: - remote: - path: src/OpenTK.Platform.Native/Windows/WindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Name - path: opentk/src/OpenTK.Platform.Native/Windows/WindowComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\WindowComponent.cs startLine: 49 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: Name of the abstraction layer component. example: [] @@ -222,7 +202,7 @@ items: content.vb: Public ReadOnly Property Name As String overload: OpenTK.Platform.Native.Windows.WindowComponent.Name* implements: - - OpenTK.Core.Platform.IPalComponent.Name + - OpenTK.Platform.IPalComponent.Name - uid: OpenTK.Platform.Native.Windows.WindowComponent.Provides commentId: P:OpenTK.Platform.Native.Windows.WindowComponent.Provides id: Provides @@ -235,15 +215,11 @@ items: fullName: OpenTK.Platform.Native.Windows.WindowComponent.Provides type: Property source: - remote: - path: src/OpenTK.Platform.Native/Windows/WindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Provides - path: opentk/src/OpenTK.Platform.Native/Windows/WindowComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\WindowComponent.cs startLine: 52 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: Specifies which PAL components this object provides. example: [] @@ -251,11 +227,11 @@ items: content: public PalComponents Provides { get; } parameters: [] return: - type: OpenTK.Core.Platform.PalComponents + type: OpenTK.Platform.PalComponents content.vb: Public ReadOnly Property Provides As PalComponents overload: OpenTK.Platform.Native.Windows.WindowComponent.Provides* implements: - - OpenTK.Core.Platform.IPalComponent.Provides + - OpenTK.Platform.IPalComponent.Provides - uid: OpenTK.Platform.Native.Windows.WindowComponent.Logger commentId: P:OpenTK.Platform.Native.Windows.WindowComponent.Logger id: Logger @@ -268,15 +244,11 @@ items: fullName: OpenTK.Platform.Native.Windows.WindowComponent.Logger type: Property source: - remote: - path: src/OpenTK.Platform.Native/Windows/WindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Logger - path: opentk/src/OpenTK.Platform.Native/Windows/WindowComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\WindowComponent.cs startLine: 55 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: Provides a logger for this component. example: [] @@ -288,28 +260,24 @@ items: content.vb: Public Property Logger As ILogger overload: OpenTK.Platform.Native.Windows.WindowComponent.Logger* implements: - - OpenTK.Core.Platform.IPalComponent.Logger -- uid: OpenTK.Platform.Native.Windows.WindowComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - commentId: M:OpenTK.Platform.Native.Windows.WindowComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - id: Initialize(OpenTK.Core.Platform.ToolkitOptions) + - OpenTK.Platform.IPalComponent.Logger +- uid: OpenTK.Platform.Native.Windows.WindowComponent.Initialize(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Native.Windows.WindowComponent.Initialize(OpenTK.Platform.ToolkitOptions) + id: Initialize(OpenTK.Platform.ToolkitOptions) parent: OpenTK.Platform.Native.Windows.WindowComponent langs: - csharp - vb name: Initialize(ToolkitOptions) nameWithType: WindowComponent.Initialize(ToolkitOptions) - fullName: OpenTK.Platform.Native.Windows.WindowComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + fullName: OpenTK.Platform.Native.Windows.WindowComponent.Initialize(OpenTK.Platform.ToolkitOptions) type: Method source: - remote: - path: src/OpenTK.Platform.Native/Windows/WindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Initialize - path: opentk/src/OpenTK.Platform.Native/Windows/WindowComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\WindowComponent.cs startLine: 58 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: Initialize the component. example: [] @@ -317,12 +285,12 @@ items: content: public void Initialize(ToolkitOptions options) parameters: - id: options - type: OpenTK.Core.Platform.ToolkitOptions + type: OpenTK.Platform.ToolkitOptions description: The options to initialize the component with. content.vb: Public Sub Initialize(options As ToolkitOptions) overload: OpenTK.Platform.Native.Windows.WindowComponent.Initialize* implements: - - OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + - OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) - uid: OpenTK.Platform.Native.Windows.WindowComponent.CanSetIcon commentId: P:OpenTK.Platform.Native.Windows.WindowComponent.CanSetIcon id: CanSetIcon @@ -335,17 +303,13 @@ items: fullName: OpenTK.Platform.Native.Windows.WindowComponent.CanSetIcon type: Property source: - remote: - path: src/OpenTK.Platform.Native/Windows/WindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CanSetIcon - path: opentk/src/OpenTK.Platform.Native/Windows/WindowComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\WindowComponent.cs startLine: 140 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows - summary: True when the driver supports setting the window icon. + summary: True when the driver supports setting the window icon using . example: [] syntax: content: public bool CanSetIcon { get; } @@ -354,8 +318,11 @@ items: type: System.Boolean content.vb: Public ReadOnly Property CanSetIcon As Boolean overload: OpenTK.Platform.Native.Windows.WindowComponent.CanSetIcon* + seealso: + - linkId: OpenTK.Platform.IWindowComponent.SetIcon(OpenTK.Platform.WindowHandle,OpenTK.Platform.IconHandle) + commentId: M:OpenTK.Platform.IWindowComponent.SetIcon(OpenTK.Platform.WindowHandle,OpenTK.Platform.IconHandle) implements: - - OpenTK.Core.Platform.IWindowComponent.CanSetIcon + - OpenTK.Platform.IWindowComponent.CanSetIcon - uid: OpenTK.Platform.Native.Windows.WindowComponent.CanGetDisplay commentId: P:OpenTK.Platform.Native.Windows.WindowComponent.CanGetDisplay id: CanGetDisplay @@ -368,17 +335,13 @@ items: fullName: OpenTK.Platform.Native.Windows.WindowComponent.CanGetDisplay type: Property source: - remote: - path: src/OpenTK.Platform.Native/Windows/WindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CanGetDisplay - path: opentk/src/OpenTK.Platform.Native/Windows/WindowComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\WindowComponent.cs startLine: 143 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows - summary: True when the driver can provide the display the window is in. + summary: True when the driver can provide the display the window is in using . example: [] syntax: content: public bool CanGetDisplay { get; } @@ -387,8 +350,11 @@ items: type: System.Boolean content.vb: Public ReadOnly Property CanGetDisplay As Boolean overload: OpenTK.Platform.Native.Windows.WindowComponent.CanGetDisplay* + seealso: + - linkId: OpenTK.Platform.IWindowComponent.GetDisplay(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.GetDisplay(OpenTK.Platform.WindowHandle) implements: - - OpenTK.Core.Platform.IWindowComponent.CanGetDisplay + - OpenTK.Platform.IWindowComponent.CanGetDisplay - uid: OpenTK.Platform.Native.Windows.WindowComponent.CanSetCursor commentId: P:OpenTK.Platform.Native.Windows.WindowComponent.CanSetCursor id: CanSetCursor @@ -401,17 +367,13 @@ items: fullName: OpenTK.Platform.Native.Windows.WindowComponent.CanSetCursor type: Property source: - remote: - path: src/OpenTK.Platform.Native/Windows/WindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CanSetCursor - path: opentk/src/OpenTK.Platform.Native/Windows/WindowComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\WindowComponent.cs startLine: 146 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows - summary: True when the driver supports setting the cursor of the window. + summary: True when the driver supports setting the cursor of the window using . example: [] syntax: content: public bool CanSetCursor { get; } @@ -420,8 +382,11 @@ items: type: System.Boolean content.vb: Public ReadOnly Property CanSetCursor As Boolean overload: OpenTK.Platform.Native.Windows.WindowComponent.CanSetCursor* + seealso: + - linkId: OpenTK.Platform.IWindowComponent.SetCursor(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorHandle) + commentId: M:OpenTK.Platform.IWindowComponent.SetCursor(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorHandle) implements: - - OpenTK.Core.Platform.IWindowComponent.CanSetCursor + - OpenTK.Platform.IWindowComponent.CanSetCursor - uid: OpenTK.Platform.Native.Windows.WindowComponent.CanCaptureCursor commentId: P:OpenTK.Platform.Native.Windows.WindowComponent.CanCaptureCursor id: CanCaptureCursor @@ -434,17 +399,13 @@ items: fullName: OpenTK.Platform.Native.Windows.WindowComponent.CanCaptureCursor type: Property source: - remote: - path: src/OpenTK.Platform.Native/Windows/WindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CanCaptureCursor - path: opentk/src/OpenTK.Platform.Native/Windows/WindowComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\WindowComponent.cs startLine: 149 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows - summary: True when the driver supports capturing the cursor in a window. + summary: True when the driver supports capturing the cursor in a window using . example: [] syntax: content: public bool CanCaptureCursor { get; } @@ -453,8 +414,11 @@ items: type: System.Boolean content.vb: Public ReadOnly Property CanCaptureCursor As Boolean overload: OpenTK.Platform.Native.Windows.WindowComponent.CanCaptureCursor* + seealso: + - linkId: OpenTK.Platform.IWindowComponent.SetCursorCaptureMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorCaptureMode) + commentId: M:OpenTK.Platform.IWindowComponent.SetCursorCaptureMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorCaptureMode) implements: - - OpenTK.Core.Platform.IWindowComponent.CanCaptureCursor + - OpenTK.Platform.IWindowComponent.CanCaptureCursor - uid: OpenTK.Platform.Native.Windows.WindowComponent.SupportedEvents commentId: P:OpenTK.Platform.Native.Windows.WindowComponent.SupportedEvents id: SupportedEvents @@ -467,15 +431,11 @@ items: fullName: OpenTK.Platform.Native.Windows.WindowComponent.SupportedEvents type: Property source: - remote: - path: src/OpenTK.Platform.Native/Windows/WindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SupportedEvents - path: opentk/src/OpenTK.Platform.Native/Windows/WindowComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\WindowComponent.cs startLine: 152 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: Read-only list of event types the driver supports. example: [] @@ -483,11 +443,11 @@ items: content: public IReadOnlyList SupportedEvents { get; } parameters: [] return: - type: System.Collections.Generic.IReadOnlyList{OpenTK.Core.Platform.PlatformEventType} + type: System.Collections.Generic.IReadOnlyList{OpenTK.Platform.PlatformEventType} content.vb: Public ReadOnly Property SupportedEvents As IReadOnlyList(Of PlatformEventType) overload: OpenTK.Platform.Native.Windows.WindowComponent.SupportedEvents* implements: - - OpenTK.Core.Platform.IWindowComponent.SupportedEvents + - OpenTK.Platform.IWindowComponent.SupportedEvents - uid: OpenTK.Platform.Native.Windows.WindowComponent.SupportedStyles commentId: P:OpenTK.Platform.Native.Windows.WindowComponent.SupportedStyles id: SupportedStyles @@ -500,15 +460,11 @@ items: fullName: OpenTK.Platform.Native.Windows.WindowComponent.SupportedStyles type: Property source: - remote: - path: src/OpenTK.Platform.Native/Windows/WindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SupportedStyles - path: opentk/src/OpenTK.Platform.Native/Windows/WindowComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\WindowComponent.cs startLine: 155 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: Read-only list of window styles the driver supports. example: [] @@ -516,11 +472,11 @@ items: content: public IReadOnlyList SupportedStyles { get; } parameters: [] return: - type: System.Collections.Generic.IReadOnlyList{OpenTK.Core.Platform.WindowBorderStyle} + type: System.Collections.Generic.IReadOnlyList{OpenTK.Platform.WindowBorderStyle} content.vb: Public ReadOnly Property SupportedStyles As IReadOnlyList(Of WindowBorderStyle) overload: OpenTK.Platform.Native.Windows.WindowComponent.SupportedStyles* implements: - - OpenTK.Core.Platform.IWindowComponent.SupportedStyles + - OpenTK.Platform.IWindowComponent.SupportedStyles - uid: OpenTK.Platform.Native.Windows.WindowComponent.SupportedModes commentId: P:OpenTK.Platform.Native.Windows.WindowComponent.SupportedModes id: SupportedModes @@ -533,15 +489,11 @@ items: fullName: OpenTK.Platform.Native.Windows.WindowComponent.SupportedModes type: Property source: - remote: - path: src/OpenTK.Platform.Native/Windows/WindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SupportedModes - path: opentk/src/OpenTK.Platform.Native/Windows/WindowComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\WindowComponent.cs startLine: 158 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: Read-only list of window modes the driver supports. example: [] @@ -549,11 +501,11 @@ items: content: public IReadOnlyList SupportedModes { get; } parameters: [] return: - type: System.Collections.Generic.IReadOnlyList{OpenTK.Core.Platform.WindowMode} + type: System.Collections.Generic.IReadOnlyList{OpenTK.Platform.WindowMode} content.vb: Public ReadOnly Property SupportedModes As IReadOnlyList(Of WindowMode) overload: OpenTK.Platform.Native.Windows.WindowComponent.SupportedModes* implements: - - OpenTK.Core.Platform.IWindowComponent.SupportedModes + - OpenTK.Platform.IWindowComponent.SupportedModes - uid: OpenTK.Platform.Native.Windows.WindowComponent.ProcessEvents(System.Boolean) commentId: M:OpenTK.Platform.Native.Windows.WindowComponent.ProcessEvents(System.Boolean) id: ProcessEvents(System.Boolean) @@ -566,52 +518,44 @@ items: fullName: OpenTK.Platform.Native.Windows.WindowComponent.ProcessEvents(bool) type: Method source: - remote: - path: src/OpenTK.Platform.Native/Windows/WindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ProcessEvents - path: opentk/src/OpenTK.Platform.Native/Windows/WindowComponent.cs - startLine: 1037 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\WindowComponent.cs + startLine: 1081 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows - summary: Processes platform events and sends them to the . + summary: Processes platform events and sends them to the . example: [] syntax: - content: public void ProcessEvents(bool waitForEvents = false) + content: public void ProcessEvents(bool waitForEvents) parameters: - id: waitForEvents type: System.Boolean description: Specifies if this function should wait for events or return immediately if there are no events. - content.vb: Public Sub ProcessEvents(waitForEvents As Boolean = False) + content.vb: Public Sub ProcessEvents(waitForEvents As Boolean) overload: OpenTK.Platform.Native.Windows.WindowComponent.ProcessEvents* implements: - - OpenTK.Core.Platform.IWindowComponent.ProcessEvents(System.Boolean) + - OpenTK.Platform.IWindowComponent.ProcessEvents(System.Boolean) nameWithType.vb: WindowComponent.ProcessEvents(Boolean) fullName.vb: OpenTK.Platform.Native.Windows.WindowComponent.ProcessEvents(Boolean) name.vb: ProcessEvents(Boolean) -- uid: OpenTK.Platform.Native.Windows.WindowComponent.Create(OpenTK.Core.Platform.GraphicsApiHints) - commentId: M:OpenTK.Platform.Native.Windows.WindowComponent.Create(OpenTK.Core.Platform.GraphicsApiHints) - id: Create(OpenTK.Core.Platform.GraphicsApiHints) +- uid: OpenTK.Platform.Native.Windows.WindowComponent.Create(OpenTK.Platform.GraphicsApiHints) + commentId: M:OpenTK.Platform.Native.Windows.WindowComponent.Create(OpenTK.Platform.GraphicsApiHints) + id: Create(OpenTK.Platform.GraphicsApiHints) parent: OpenTK.Platform.Native.Windows.WindowComponent langs: - csharp - vb name: Create(GraphicsApiHints) nameWithType: WindowComponent.Create(GraphicsApiHints) - fullName: OpenTK.Platform.Native.Windows.WindowComponent.Create(OpenTK.Core.Platform.GraphicsApiHints) + fullName: OpenTK.Platform.Native.Windows.WindowComponent.Create(OpenTK.Platform.GraphicsApiHints) type: Method source: - remote: - path: src/OpenTK.Platform.Native/Windows/WindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Create - path: opentk/src/OpenTK.Platform.Native/Windows/WindowComponent.cs - startLine: 1067 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\WindowComponent.cs + startLine: 1119 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: Create a window object. example: [] @@ -619,44 +563,40 @@ items: content: public WindowHandle Create(GraphicsApiHints hints) parameters: - id: hints - type: OpenTK.Core.Platform.GraphicsApiHints + type: OpenTK.Platform.GraphicsApiHints description: Graphics API hints to be passed to the operating system. return: - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: Handle to the new window object. content.vb: Public Function Create(hints As GraphicsApiHints) As WindowHandle overload: OpenTK.Platform.Native.Windows.WindowComponent.Create* implements: - - OpenTK.Core.Platform.IWindowComponent.Create(OpenTK.Core.Platform.GraphicsApiHints) -- uid: OpenTK.Platform.Native.Windows.WindowComponent.Destroy(OpenTK.Core.Platform.WindowHandle) - commentId: M:OpenTK.Platform.Native.Windows.WindowComponent.Destroy(OpenTK.Core.Platform.WindowHandle) - id: Destroy(OpenTK.Core.Platform.WindowHandle) + - OpenTK.Platform.IWindowComponent.Create(OpenTK.Platform.GraphicsApiHints) +- uid: OpenTK.Platform.Native.Windows.WindowComponent.Destroy(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.Native.Windows.WindowComponent.Destroy(OpenTK.Platform.WindowHandle) + id: Destroy(OpenTK.Platform.WindowHandle) parent: OpenTK.Platform.Native.Windows.WindowComponent langs: - csharp - vb name: Destroy(WindowHandle) nameWithType: WindowComponent.Destroy(WindowHandle) - fullName: OpenTK.Platform.Native.Windows.WindowComponent.Destroy(OpenTK.Core.Platform.WindowHandle) + fullName: OpenTK.Platform.Native.Windows.WindowComponent.Destroy(OpenTK.Platform.WindowHandle) type: Method source: - remote: - path: src/OpenTK.Platform.Native/Windows/WindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Destroy - path: opentk/src/OpenTK.Platform.Native/Windows/WindowComponent.cs - startLine: 1106 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\WindowComponent.cs + startLine: 1158 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows - summary: Destroy a window object. + summary: Destroy a window object. After a window has been destroyed the handle should no longer be used in any function other than . example: [] syntax: content: public void Destroy(WindowHandle handle) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: Handle to a window object. content.vb: Public Sub Destroy(handle As WindowHandle) overload: OpenTK.Platform.Native.Windows.WindowComponent.Destroy* @@ -665,65 +605,57 @@ items: commentId: T:System.ArgumentNullException description: handle is null. implements: - - OpenTK.Core.Platform.IWindowComponent.Destroy(OpenTK.Core.Platform.WindowHandle) -- uid: OpenTK.Platform.Native.Windows.WindowComponent.IsWindowDestroyed(OpenTK.Core.Platform.WindowHandle) - commentId: M:OpenTK.Platform.Native.Windows.WindowComponent.IsWindowDestroyed(OpenTK.Core.Platform.WindowHandle) - id: IsWindowDestroyed(OpenTK.Core.Platform.WindowHandle) + - OpenTK.Platform.IWindowComponent.Destroy(OpenTK.Platform.WindowHandle) +- uid: OpenTK.Platform.Native.Windows.WindowComponent.IsWindowDestroyed(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.Native.Windows.WindowComponent.IsWindowDestroyed(OpenTK.Platform.WindowHandle) + id: IsWindowDestroyed(OpenTK.Platform.WindowHandle) parent: OpenTK.Platform.Native.Windows.WindowComponent langs: - csharp - vb name: IsWindowDestroyed(WindowHandle) nameWithType: WindowComponent.IsWindowDestroyed(WindowHandle) - fullName: OpenTK.Platform.Native.Windows.WindowComponent.IsWindowDestroyed(OpenTK.Core.Platform.WindowHandle) + fullName: OpenTK.Platform.Native.Windows.WindowComponent.IsWindowDestroyed(OpenTK.Platform.WindowHandle) type: Method source: - remote: - path: src/OpenTK.Platform.Native/Windows/WindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: IsWindowDestroyed - path: opentk/src/OpenTK.Platform.Native/Windows/WindowComponent.cs - startLine: 1137 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\WindowComponent.cs + startLine: 1189 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows - summary: Checks if has been called on this handle. + summary: Checks if has been called on this handle. example: [] syntax: content: public bool IsWindowDestroyed(WindowHandle handle) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: The window handle to check if it's destroyed or not. return: type: System.Boolean - description: If was called with the window handle. + description: If was called with the window handle. content.vb: Public Function IsWindowDestroyed(handle As WindowHandle) As Boolean overload: OpenTK.Platform.Native.Windows.WindowComponent.IsWindowDestroyed* implements: - - OpenTK.Core.Platform.IWindowComponent.IsWindowDestroyed(OpenTK.Core.Platform.WindowHandle) -- uid: OpenTK.Platform.Native.Windows.WindowComponent.GetTitle(OpenTK.Core.Platform.WindowHandle) - commentId: M:OpenTK.Platform.Native.Windows.WindowComponent.GetTitle(OpenTK.Core.Platform.WindowHandle) - id: GetTitle(OpenTK.Core.Platform.WindowHandle) + - OpenTK.Platform.IWindowComponent.IsWindowDestroyed(OpenTK.Platform.WindowHandle) +- uid: OpenTK.Platform.Native.Windows.WindowComponent.GetTitle(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.Native.Windows.WindowComponent.GetTitle(OpenTK.Platform.WindowHandle) + id: GetTitle(OpenTK.Platform.WindowHandle) parent: OpenTK.Platform.Native.Windows.WindowComponent langs: - csharp - vb name: GetTitle(WindowHandle) nameWithType: WindowComponent.GetTitle(WindowHandle) - fullName: OpenTK.Platform.Native.Windows.WindowComponent.GetTitle(OpenTK.Core.Platform.WindowHandle) + fullName: OpenTK.Platform.Native.Windows.WindowComponent.GetTitle(OpenTK.Platform.WindowHandle) type: Method source: - remote: - path: src/OpenTK.Platform.Native/Windows/WindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetTitle - path: opentk/src/OpenTK.Platform.Native/Windows/WindowComponent.cs - startLine: 1145 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\WindowComponent.cs + startLine: 1197 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: Get the title of a window. example: [] @@ -731,7 +663,7 @@ items: content: public string GetTitle(WindowHandle handle) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: Handle to a window. return: type: System.String @@ -743,28 +675,24 @@ items: commentId: T:System.ArgumentNullException description: handle is null. implements: - - OpenTK.Core.Platform.IWindowComponent.GetTitle(OpenTK.Core.Platform.WindowHandle) -- uid: OpenTK.Platform.Native.Windows.WindowComponent.SetTitle(OpenTK.Core.Platform.WindowHandle,System.String) - commentId: M:OpenTK.Platform.Native.Windows.WindowComponent.SetTitle(OpenTK.Core.Platform.WindowHandle,System.String) - id: SetTitle(OpenTK.Core.Platform.WindowHandle,System.String) + - OpenTK.Platform.IWindowComponent.GetTitle(OpenTK.Platform.WindowHandle) +- uid: OpenTK.Platform.Native.Windows.WindowComponent.SetTitle(OpenTK.Platform.WindowHandle,System.String) + commentId: M:OpenTK.Platform.Native.Windows.WindowComponent.SetTitle(OpenTK.Platform.WindowHandle,System.String) + id: SetTitle(OpenTK.Platform.WindowHandle,System.String) parent: OpenTK.Platform.Native.Windows.WindowComponent langs: - csharp - vb name: SetTitle(WindowHandle, string) nameWithType: WindowComponent.SetTitle(WindowHandle, string) - fullName: OpenTK.Platform.Native.Windows.WindowComponent.SetTitle(OpenTK.Core.Platform.WindowHandle, string) + fullName: OpenTK.Platform.Native.Windows.WindowComponent.SetTitle(OpenTK.Platform.WindowHandle, string) type: Method source: - remote: - path: src/OpenTK.Platform.Native/Windows/WindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetTitle - path: opentk/src/OpenTK.Platform.Native/Windows/WindowComponent.cs - startLine: 1170 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\WindowComponent.cs + startLine: 1222 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: Set the title of a window. example: [] @@ -772,7 +700,7 @@ items: content: public void SetTitle(WindowHandle handle, string title) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: Handle to a window. - id: title type: System.String @@ -784,31 +712,27 @@ items: commentId: T:System.ArgumentNullException description: handle or title is null. implements: - - OpenTK.Core.Platform.IWindowComponent.SetTitle(OpenTK.Core.Platform.WindowHandle,System.String) + - OpenTK.Platform.IWindowComponent.SetTitle(OpenTK.Platform.WindowHandle,System.String) nameWithType.vb: WindowComponent.SetTitle(WindowHandle, String) - fullName.vb: OpenTK.Platform.Native.Windows.WindowComponent.SetTitle(OpenTK.Core.Platform.WindowHandle, String) + fullName.vb: OpenTK.Platform.Native.Windows.WindowComponent.SetTitle(OpenTK.Platform.WindowHandle, String) name.vb: SetTitle(WindowHandle, String) -- uid: OpenTK.Platform.Native.Windows.WindowComponent.GetIcon(OpenTK.Core.Platform.WindowHandle) - commentId: M:OpenTK.Platform.Native.Windows.WindowComponent.GetIcon(OpenTK.Core.Platform.WindowHandle) - id: GetIcon(OpenTK.Core.Platform.WindowHandle) +- uid: OpenTK.Platform.Native.Windows.WindowComponent.GetIcon(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.Native.Windows.WindowComponent.GetIcon(OpenTK.Platform.WindowHandle) + id: GetIcon(OpenTK.Platform.WindowHandle) parent: OpenTK.Platform.Native.Windows.WindowComponent langs: - csharp - vb name: GetIcon(WindowHandle) nameWithType: WindowComponent.GetIcon(WindowHandle) - fullName: OpenTK.Platform.Native.Windows.WindowComponent.GetIcon(OpenTK.Core.Platform.WindowHandle) + fullName: OpenTK.Platform.Native.Windows.WindowComponent.GetIcon(OpenTK.Platform.WindowHandle) type: Method source: - remote: - path: src/OpenTK.Platform.Native/Windows/WindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetIcon - path: opentk/src/OpenTK.Platform.Native/Windows/WindowComponent.cs - startLine: 1182 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\WindowComponent.cs + startLine: 1234 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: Get a handle to the window icon object. example: [] @@ -816,10 +740,10 @@ items: content: public IconHandle GetIcon(WindowHandle handle) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: Handle to a window. return: - type: OpenTK.Core.Platform.IconHandle + type: OpenTK.Platform.IconHandle description: Handle to the windows icon object, or null if none is set. content.vb: Public Function GetIcon(handle As WindowHandle) As IconHandle overload: OpenTK.Platform.Native.Windows.WindowComponent.GetIcon* @@ -827,32 +751,28 @@ items: - type: System.ArgumentNullException commentId: T:System.ArgumentNullException description: handle is null. - - type: OpenTK.Core.Platform.PalNotImplementedException - commentId: T:OpenTK.Core.Platform.PalNotImplementedException - description: Driver does not support getting the window icon. See . + - type: OpenTK.Platform.PalNotImplementedException + commentId: T:OpenTK.Platform.PalNotImplementedException + description: Driver does not support getting the window icon. See . implements: - - OpenTK.Core.Platform.IWindowComponent.GetIcon(OpenTK.Core.Platform.WindowHandle) -- uid: OpenTK.Platform.Native.Windows.WindowComponent.SetIcon(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.IconHandle) - commentId: M:OpenTK.Platform.Native.Windows.WindowComponent.SetIcon(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.IconHandle) - id: SetIcon(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.IconHandle) + - OpenTK.Platform.IWindowComponent.GetIcon(OpenTK.Platform.WindowHandle) +- uid: OpenTK.Platform.Native.Windows.WindowComponent.SetIcon(OpenTK.Platform.WindowHandle,OpenTK.Platform.IconHandle) + commentId: M:OpenTK.Platform.Native.Windows.WindowComponent.SetIcon(OpenTK.Platform.WindowHandle,OpenTK.Platform.IconHandle) + id: SetIcon(OpenTK.Platform.WindowHandle,OpenTK.Platform.IconHandle) parent: OpenTK.Platform.Native.Windows.WindowComponent langs: - csharp - vb name: SetIcon(WindowHandle, IconHandle) nameWithType: WindowComponent.SetIcon(WindowHandle, IconHandle) - fullName: OpenTK.Platform.Native.Windows.WindowComponent.SetIcon(OpenTK.Core.Platform.WindowHandle, OpenTK.Core.Platform.IconHandle) + fullName: OpenTK.Platform.Native.Windows.WindowComponent.SetIcon(OpenTK.Platform.WindowHandle, OpenTK.Platform.IconHandle) type: Method source: - remote: - path: src/OpenTK.Platform.Native/Windows/WindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetIcon - path: opentk/src/OpenTK.Platform.Native/Windows/WindowComponent.cs - startLine: 1238 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\WindowComponent.cs + startLine: 1290 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: Set window icon object handle. example: [] @@ -860,10 +780,10 @@ items: content: public void SetIcon(WindowHandle handle, IconHandle icon) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: Handle to a window. - id: icon - type: OpenTK.Core.Platform.IconHandle + type: OpenTK.Platform.IconHandle description: Handle to an icon object, or null to revert to default. content.vb: Public Sub SetIcon(handle As WindowHandle, icon As IconHandle) overload: OpenTK.Platform.Native.Windows.WindowComponent.SetIcon* @@ -871,32 +791,31 @@ items: - type: System.ArgumentNullException commentId: T:System.ArgumentNullException description: handle or icon is null. - - type: OpenTK.Core.Platform.PalNotImplementedException - commentId: T:OpenTK.Core.Platform.PalNotImplementedException - description: Driver does not support setting the window icon. See . + - type: OpenTK.Platform.PalNotImplementedException + commentId: T:OpenTK.Platform.PalNotImplementedException + description: Backend does not support setting the window icon. See . + seealso: + - linkId: OpenTK.Platform.IWindowComponent.CanSetIcon + commentId: P:OpenTK.Platform.IWindowComponent.CanSetIcon implements: - - OpenTK.Core.Platform.IWindowComponent.SetIcon(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.IconHandle) -- uid: OpenTK.Platform.Native.Windows.WindowComponent.GetPosition(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) - commentId: M:OpenTK.Platform.Native.Windows.WindowComponent.GetPosition(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) - id: GetPosition(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) + - OpenTK.Platform.IWindowComponent.SetIcon(OpenTK.Platform.WindowHandle,OpenTK.Platform.IconHandle) +- uid: OpenTK.Platform.Native.Windows.WindowComponent.GetPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + commentId: M:OpenTK.Platform.Native.Windows.WindowComponent.GetPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + id: GetPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) parent: OpenTK.Platform.Native.Windows.WindowComponent langs: - csharp - vb name: GetPosition(WindowHandle, out int, out int) nameWithType: WindowComponent.GetPosition(WindowHandle, out int, out int) - fullName: OpenTK.Platform.Native.Windows.WindowComponent.GetPosition(OpenTK.Core.Platform.WindowHandle, out int, out int) + fullName: OpenTK.Platform.Native.Windows.WindowComponent.GetPosition(OpenTK.Platform.WindowHandle, out int, out int) type: Method source: - remote: - path: src/OpenTK.Platform.Native/Windows/WindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetPosition - path: opentk/src/OpenTK.Platform.Native/Windows/WindowComponent.cs - startLine: 1252 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\WindowComponent.cs + startLine: 1304 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: Get the window position in display coordinates (top left origin). example: [] @@ -904,7 +823,7 @@ items: content: public void GetPosition(WindowHandle handle, out int x, out int y) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: Handle to a window. - id: x type: System.Int32 @@ -919,31 +838,27 @@ items: commentId: T:System.ArgumentNullException description: handle is null. implements: - - OpenTK.Core.Platform.IWindowComponent.GetPosition(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) + - OpenTK.Platform.IWindowComponent.GetPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) nameWithType.vb: WindowComponent.GetPosition(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Platform.Native.Windows.WindowComponent.GetPosition(OpenTK.Core.Platform.WindowHandle, Integer, Integer) + fullName.vb: OpenTK.Platform.Native.Windows.WindowComponent.GetPosition(OpenTK.Platform.WindowHandle, Integer, Integer) name.vb: GetPosition(WindowHandle, Integer, Integer) -- uid: OpenTK.Platform.Native.Windows.WindowComponent.SetPosition(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) - commentId: M:OpenTK.Platform.Native.Windows.WindowComponent.SetPosition(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) - id: SetPosition(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) +- uid: OpenTK.Platform.Native.Windows.WindowComponent.SetPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) + commentId: M:OpenTK.Platform.Native.Windows.WindowComponent.SetPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) + id: SetPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) parent: OpenTK.Platform.Native.Windows.WindowComponent langs: - csharp - vb name: SetPosition(WindowHandle, int, int) nameWithType: WindowComponent.SetPosition(WindowHandle, int, int) - fullName: OpenTK.Platform.Native.Windows.WindowComponent.SetPosition(OpenTK.Core.Platform.WindowHandle, int, int) + fullName: OpenTK.Platform.Native.Windows.WindowComponent.SetPosition(OpenTK.Platform.WindowHandle, int, int) type: Method source: - remote: - path: src/OpenTK.Platform.Native/Windows/WindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetPosition - path: opentk/src/OpenTK.Platform.Native/Windows/WindowComponent.cs - startLine: 1260 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\WindowComponent.cs + startLine: 1312 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: Set the window position in display coordinates (top left origin). example: [] @@ -951,7 +866,7 @@ items: content: public void SetPosition(WindowHandle handle, int x, int y) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: Handle to a window. - id: x type: System.Int32 @@ -966,31 +881,27 @@ items: commentId: T:System.ArgumentNullException description: handle is null. implements: - - OpenTK.Core.Platform.IWindowComponent.SetPosition(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) + - OpenTK.Platform.IWindowComponent.SetPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) nameWithType.vb: WindowComponent.SetPosition(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Platform.Native.Windows.WindowComponent.SetPosition(OpenTK.Core.Platform.WindowHandle, Integer, Integer) + fullName.vb: OpenTK.Platform.Native.Windows.WindowComponent.SetPosition(OpenTK.Platform.WindowHandle, Integer, Integer) name.vb: SetPosition(WindowHandle, Integer, Integer) -- uid: OpenTK.Platform.Native.Windows.WindowComponent.GetSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) - commentId: M:OpenTK.Platform.Native.Windows.WindowComponent.GetSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) - id: GetSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) +- uid: OpenTK.Platform.Native.Windows.WindowComponent.GetSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + commentId: M:OpenTK.Platform.Native.Windows.WindowComponent.GetSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + id: GetSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) parent: OpenTK.Platform.Native.Windows.WindowComponent langs: - csharp - vb name: GetSize(WindowHandle, out int, out int) nameWithType: WindowComponent.GetSize(WindowHandle, out int, out int) - fullName: OpenTK.Platform.Native.Windows.WindowComponent.GetSize(OpenTK.Core.Platform.WindowHandle, out int, out int) + fullName: OpenTK.Platform.Native.Windows.WindowComponent.GetSize(OpenTK.Platform.WindowHandle, out int, out int) type: Method source: - remote: - path: src/OpenTK.Platform.Native/Windows/WindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetSize - path: opentk/src/OpenTK.Platform.Native/Windows/WindowComponent.cs - startLine: 1273 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\WindowComponent.cs + startLine: 1325 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: Get the size of the window. example: [] @@ -998,7 +909,7 @@ items: content: public void GetSize(WindowHandle handle, out int width, out int height) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: Handle to a window. - id: width type: System.Int32 @@ -1013,31 +924,27 @@ items: commentId: T:System.ArgumentNullException description: handle is null. implements: - - OpenTK.Core.Platform.IWindowComponent.GetSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) + - OpenTK.Platform.IWindowComponent.GetSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) nameWithType.vb: WindowComponent.GetSize(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Platform.Native.Windows.WindowComponent.GetSize(OpenTK.Core.Platform.WindowHandle, Integer, Integer) + fullName.vb: OpenTK.Platform.Native.Windows.WindowComponent.GetSize(OpenTK.Platform.WindowHandle, Integer, Integer) name.vb: GetSize(WindowHandle, Integer, Integer) -- uid: OpenTK.Platform.Native.Windows.WindowComponent.SetSize(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) - commentId: M:OpenTK.Platform.Native.Windows.WindowComponent.SetSize(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) - id: SetSize(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) +- uid: OpenTK.Platform.Native.Windows.WindowComponent.SetSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) + commentId: M:OpenTK.Platform.Native.Windows.WindowComponent.SetSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) + id: SetSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) parent: OpenTK.Platform.Native.Windows.WindowComponent langs: - csharp - vb name: SetSize(WindowHandle, int, int) nameWithType: WindowComponent.SetSize(WindowHandle, int, int) - fullName: OpenTK.Platform.Native.Windows.WindowComponent.SetSize(OpenTK.Core.Platform.WindowHandle, int, int) + fullName: OpenTK.Platform.Native.Windows.WindowComponent.SetSize(OpenTK.Platform.WindowHandle, int, int) type: Method source: - remote: - path: src/OpenTK.Platform.Native/Windows/WindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetSize - path: opentk/src/OpenTK.Platform.Native/Windows/WindowComponent.cs - startLine: 1281 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\WindowComponent.cs + startLine: 1333 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: Set the size of the window. example: [] @@ -1045,7 +952,7 @@ items: content: public void SetSize(WindowHandle handle, int width, int height) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: Handle to a window. - id: width type: System.Int32 @@ -1060,31 +967,27 @@ items: commentId: T:System.ArgumentNullException description: handle is null. implements: - - OpenTK.Core.Platform.IWindowComponent.SetSize(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) + - OpenTK.Platform.IWindowComponent.SetSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) nameWithType.vb: WindowComponent.SetSize(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Platform.Native.Windows.WindowComponent.SetSize(OpenTK.Core.Platform.WindowHandle, Integer, Integer) + fullName.vb: OpenTK.Platform.Native.Windows.WindowComponent.SetSize(OpenTK.Platform.WindowHandle, Integer, Integer) name.vb: SetSize(WindowHandle, Integer, Integer) -- uid: OpenTK.Platform.Native.Windows.WindowComponent.GetBounds(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) - commentId: M:OpenTK.Platform.Native.Windows.WindowComponent.GetBounds(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) - id: GetBounds(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) +- uid: OpenTK.Platform.Native.Windows.WindowComponent.GetBounds(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) + commentId: M:OpenTK.Platform.Native.Windows.WindowComponent.GetBounds(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) + id: GetBounds(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) parent: OpenTK.Platform.Native.Windows.WindowComponent langs: - csharp - vb name: GetBounds(WindowHandle, out int, out int, out int, out int) nameWithType: WindowComponent.GetBounds(WindowHandle, out int, out int, out int, out int) - fullName: OpenTK.Platform.Native.Windows.WindowComponent.GetBounds(OpenTK.Core.Platform.WindowHandle, out int, out int, out int, out int) + fullName: OpenTK.Platform.Native.Windows.WindowComponent.GetBounds(OpenTK.Platform.WindowHandle, out int, out int, out int, out int) type: Method source: - remote: - path: src/OpenTK.Platform.Native/Windows/WindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetBounds - path: opentk/src/OpenTK.Platform.Native/Windows/WindowComponent.cs - startLine: 1294 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\WindowComponent.cs + startLine: 1346 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: Get the bounds of the window. example: [] @@ -1092,7 +995,7 @@ items: content: public void GetBounds(WindowHandle handle, out int x, out int y, out int width, out int height) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: Handle to a window. - id: x type: System.Int32 @@ -1109,31 +1012,27 @@ items: content.vb: Public Sub GetBounds(handle As WindowHandle, x As Integer, y As Integer, width As Integer, height As Integer) overload: OpenTK.Platform.Native.Windows.WindowComponent.GetBounds* implements: - - OpenTK.Core.Platform.IWindowComponent.GetBounds(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) + - OpenTK.Platform.IWindowComponent.GetBounds(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) nameWithType.vb: WindowComponent.GetBounds(WindowHandle, Integer, Integer, Integer, Integer) - fullName.vb: OpenTK.Platform.Native.Windows.WindowComponent.GetBounds(OpenTK.Core.Platform.WindowHandle, Integer, Integer, Integer, Integer) + fullName.vb: OpenTK.Platform.Native.Windows.WindowComponent.GetBounds(OpenTK.Platform.WindowHandle, Integer, Integer, Integer, Integer) name.vb: GetBounds(WindowHandle, Integer, Integer, Integer, Integer) -- uid: OpenTK.Platform.Native.Windows.WindowComponent.SetBounds(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) - commentId: M:OpenTK.Platform.Native.Windows.WindowComponent.SetBounds(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) - id: SetBounds(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) +- uid: OpenTK.Platform.Native.Windows.WindowComponent.SetBounds(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) + commentId: M:OpenTK.Platform.Native.Windows.WindowComponent.SetBounds(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) + id: SetBounds(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) parent: OpenTK.Platform.Native.Windows.WindowComponent langs: - csharp - vb name: SetBounds(WindowHandle, int, int, int, int) nameWithType: WindowComponent.SetBounds(WindowHandle, int, int, int, int) - fullName: OpenTK.Platform.Native.Windows.WindowComponent.SetBounds(OpenTK.Core.Platform.WindowHandle, int, int, int, int) + fullName: OpenTK.Platform.Native.Windows.WindowComponent.SetBounds(OpenTK.Platform.WindowHandle, int, int, int, int) type: Method source: - remote: - path: src/OpenTK.Platform.Native/Windows/WindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetBounds - path: opentk/src/OpenTK.Platform.Native/Windows/WindowComponent.cs - startLine: 1311 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\WindowComponent.cs + startLine: 1363 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: Set the bounds of the window. example: [] @@ -1141,7 +1040,7 @@ items: content: public void SetBounds(WindowHandle handle, int x, int y, int width, int height) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: Handle to a window. - id: x type: System.Int32 @@ -1158,31 +1057,27 @@ items: content.vb: Public Sub SetBounds(handle As WindowHandle, x As Integer, y As Integer, width As Integer, height As Integer) overload: OpenTK.Platform.Native.Windows.WindowComponent.SetBounds* implements: - - OpenTK.Core.Platform.IWindowComponent.SetBounds(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) + - OpenTK.Platform.IWindowComponent.SetBounds(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) nameWithType.vb: WindowComponent.SetBounds(WindowHandle, Integer, Integer, Integer, Integer) - fullName.vb: OpenTK.Platform.Native.Windows.WindowComponent.SetBounds(OpenTK.Core.Platform.WindowHandle, Integer, Integer, Integer, Integer) + fullName.vb: OpenTK.Platform.Native.Windows.WindowComponent.SetBounds(OpenTK.Platform.WindowHandle, Integer, Integer, Integer, Integer) name.vb: SetBounds(WindowHandle, Integer, Integer, Integer, Integer) -- uid: OpenTK.Platform.Native.Windows.WindowComponent.GetClientPosition(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) - commentId: M:OpenTK.Platform.Native.Windows.WindowComponent.GetClientPosition(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) - id: GetClientPosition(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) +- uid: OpenTK.Platform.Native.Windows.WindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + commentId: M:OpenTK.Platform.Native.Windows.WindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + id: GetClientPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) parent: OpenTK.Platform.Native.Windows.WindowComponent langs: - csharp - vb name: GetClientPosition(WindowHandle, out int, out int) nameWithType: WindowComponent.GetClientPosition(WindowHandle, out int, out int) - fullName: OpenTK.Platform.Native.Windows.WindowComponent.GetClientPosition(OpenTK.Core.Platform.WindowHandle, out int, out int) + fullName: OpenTK.Platform.Native.Windows.WindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle, out int, out int) type: Method source: - remote: - path: src/OpenTK.Platform.Native/Windows/WindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetClientPosition - path: opentk/src/OpenTK.Platform.Native/Windows/WindowComponent.cs - startLine: 1324 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\WindowComponent.cs + startLine: 1376 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: Get the position of the client area (drawing area) of a window. example: [] @@ -1190,7 +1085,7 @@ items: content: public void GetClientPosition(WindowHandle handle, out int x, out int y) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: Handle to a window. - id: x type: System.Int32 @@ -1205,31 +1100,27 @@ items: commentId: T:System.ArgumentNullException description: handle is null. implements: - - OpenTK.Core.Platform.IWindowComponent.GetClientPosition(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) + - OpenTK.Platform.IWindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) nameWithType.vb: WindowComponent.GetClientPosition(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Platform.Native.Windows.WindowComponent.GetClientPosition(OpenTK.Core.Platform.WindowHandle, Integer, Integer) + fullName.vb: OpenTK.Platform.Native.Windows.WindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle, Integer, Integer) name.vb: GetClientPosition(WindowHandle, Integer, Integer) -- uid: OpenTK.Platform.Native.Windows.WindowComponent.SetClientPosition(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) - commentId: M:OpenTK.Platform.Native.Windows.WindowComponent.SetClientPosition(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) - id: SetClientPosition(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) +- uid: OpenTK.Platform.Native.Windows.WindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) + commentId: M:OpenTK.Platform.Native.Windows.WindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) + id: SetClientPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) parent: OpenTK.Platform.Native.Windows.WindowComponent langs: - csharp - vb name: SetClientPosition(WindowHandle, int, int) nameWithType: WindowComponent.SetClientPosition(WindowHandle, int, int) - fullName: OpenTK.Platform.Native.Windows.WindowComponent.SetClientPosition(OpenTK.Core.Platform.WindowHandle, int, int) + fullName: OpenTK.Platform.Native.Windows.WindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle, int, int) type: Method source: - remote: - path: src/OpenTK.Platform.Native/Windows/WindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetClientPosition - path: opentk/src/OpenTK.Platform.Native/Windows/WindowComponent.cs - startLine: 1341 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\WindowComponent.cs + startLine: 1393 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: Set the position of the client area (drawing area) of a window. example: [] @@ -1237,7 +1128,7 @@ items: content: public void SetClientPosition(WindowHandle handle, int x, int y) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: Handle to a window. - id: x type: System.Int32 @@ -1252,31 +1143,27 @@ items: commentId: T:System.ArgumentNullException description: handle is null. implements: - - OpenTK.Core.Platform.IWindowComponent.SetClientPosition(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) + - OpenTK.Platform.IWindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) nameWithType.vb: WindowComponent.SetClientPosition(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Platform.Native.Windows.WindowComponent.SetClientPosition(OpenTK.Core.Platform.WindowHandle, Integer, Integer) + fullName.vb: OpenTK.Platform.Native.Windows.WindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle, Integer, Integer) name.vb: SetClientPosition(WindowHandle, Integer, Integer) -- uid: OpenTK.Platform.Native.Windows.WindowComponent.GetClientSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) - commentId: M:OpenTK.Platform.Native.Windows.WindowComponent.GetClientSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) - id: GetClientSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) +- uid: OpenTK.Platform.Native.Windows.WindowComponent.GetClientSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + commentId: M:OpenTK.Platform.Native.Windows.WindowComponent.GetClientSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + id: GetClientSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) parent: OpenTK.Platform.Native.Windows.WindowComponent langs: - csharp - vb name: GetClientSize(WindowHandle, out int, out int) nameWithType: WindowComponent.GetClientSize(WindowHandle, out int, out int) - fullName: OpenTK.Platform.Native.Windows.WindowComponent.GetClientSize(OpenTK.Core.Platform.WindowHandle, out int, out int) + fullName: OpenTK.Platform.Native.Windows.WindowComponent.GetClientSize(OpenTK.Platform.WindowHandle, out int, out int) type: Method source: - remote: - path: src/OpenTK.Platform.Native/Windows/WindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetClientSize - path: opentk/src/OpenTK.Platform.Native/Windows/WindowComponent.cs - startLine: 1367 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\WindowComponent.cs + startLine: 1419 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: Get the size of the client area (drawing area) of a window. example: [] @@ -1284,7 +1171,7 @@ items: content: public void GetClientSize(WindowHandle handle, out int width, out int height) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: Handle to a window. - id: width type: System.Int32 @@ -1299,31 +1186,27 @@ items: commentId: T:System.ArgumentNullException description: handle is null. implements: - - OpenTK.Core.Platform.IWindowComponent.GetClientSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) + - OpenTK.Platform.IWindowComponent.GetClientSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) nameWithType.vb: WindowComponent.GetClientSize(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Platform.Native.Windows.WindowComponent.GetClientSize(OpenTK.Core.Platform.WindowHandle, Integer, Integer) + fullName.vb: OpenTK.Platform.Native.Windows.WindowComponent.GetClientSize(OpenTK.Platform.WindowHandle, Integer, Integer) name.vb: GetClientSize(WindowHandle, Integer, Integer) -- uid: OpenTK.Platform.Native.Windows.WindowComponent.SetClientSize(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) - commentId: M:OpenTK.Platform.Native.Windows.WindowComponent.SetClientSize(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) - id: SetClientSize(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) +- uid: OpenTK.Platform.Native.Windows.WindowComponent.SetClientSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) + commentId: M:OpenTK.Platform.Native.Windows.WindowComponent.SetClientSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) + id: SetClientSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) parent: OpenTK.Platform.Native.Windows.WindowComponent langs: - csharp - vb name: SetClientSize(WindowHandle, int, int) nameWithType: WindowComponent.SetClientSize(WindowHandle, int, int) - fullName: OpenTK.Platform.Native.Windows.WindowComponent.SetClientSize(OpenTK.Core.Platform.WindowHandle, int, int) + fullName: OpenTK.Platform.Native.Windows.WindowComponent.SetClientSize(OpenTK.Platform.WindowHandle, int, int) type: Method source: - remote: - path: src/OpenTK.Platform.Native/Windows/WindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetClientSize - path: opentk/src/OpenTK.Platform.Native/Windows/WindowComponent.cs - startLine: 1375 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\WindowComponent.cs + startLine: 1427 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: Set the size of the client area (drawing area) of a window. example: [] @@ -1331,7 +1214,7 @@ items: content: public void SetClientSize(WindowHandle handle, int width, int height) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: Handle to a window. - id: width type: System.Int32 @@ -1346,31 +1229,27 @@ items: commentId: T:System.ArgumentNullException description: handle is null. implements: - - OpenTK.Core.Platform.IWindowComponent.SetClientSize(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) + - OpenTK.Platform.IWindowComponent.SetClientSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) nameWithType.vb: WindowComponent.SetClientSize(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Platform.Native.Windows.WindowComponent.SetClientSize(OpenTK.Core.Platform.WindowHandle, Integer, Integer) + fullName.vb: OpenTK.Platform.Native.Windows.WindowComponent.SetClientSize(OpenTK.Platform.WindowHandle, Integer, Integer) name.vb: SetClientSize(WindowHandle, Integer, Integer) -- uid: OpenTK.Platform.Native.Windows.WindowComponent.GetClientBounds(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) - commentId: M:OpenTK.Platform.Native.Windows.WindowComponent.GetClientBounds(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) - id: GetClientBounds(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) +- uid: OpenTK.Platform.Native.Windows.WindowComponent.GetClientBounds(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) + commentId: M:OpenTK.Platform.Native.Windows.WindowComponent.GetClientBounds(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) + id: GetClientBounds(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) parent: OpenTK.Platform.Native.Windows.WindowComponent langs: - csharp - vb name: GetClientBounds(WindowHandle, out int, out int, out int, out int) nameWithType: WindowComponent.GetClientBounds(WindowHandle, out int, out int, out int, out int) - fullName: OpenTK.Platform.Native.Windows.WindowComponent.GetClientBounds(OpenTK.Core.Platform.WindowHandle, out int, out int, out int, out int) + fullName: OpenTK.Platform.Native.Windows.WindowComponent.GetClientBounds(OpenTK.Platform.WindowHandle, out int, out int, out int, out int) type: Method source: - remote: - path: src/OpenTK.Platform.Native/Windows/WindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetClientBounds - path: opentk/src/OpenTK.Platform.Native/Windows/WindowComponent.cs - startLine: 1402 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\WindowComponent.cs + startLine: 1454 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: Get the client area bounds (drawing area) of a window. example: [] @@ -1378,7 +1257,7 @@ items: content: public void GetClientBounds(WindowHandle handle, out int x, out int y, out int width, out int height) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: Handle to a window. - id: x type: System.Int32 @@ -1395,31 +1274,27 @@ items: content.vb: Public Sub GetClientBounds(handle As WindowHandle, x As Integer, y As Integer, width As Integer, height As Integer) overload: OpenTK.Platform.Native.Windows.WindowComponent.GetClientBounds* implements: - - OpenTK.Core.Platform.IWindowComponent.GetClientBounds(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) + - OpenTK.Platform.IWindowComponent.GetClientBounds(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) nameWithType.vb: WindowComponent.GetClientBounds(WindowHandle, Integer, Integer, Integer, Integer) - fullName.vb: OpenTK.Platform.Native.Windows.WindowComponent.GetClientBounds(OpenTK.Core.Platform.WindowHandle, Integer, Integer, Integer, Integer) + fullName.vb: OpenTK.Platform.Native.Windows.WindowComponent.GetClientBounds(OpenTK.Platform.WindowHandle, Integer, Integer, Integer, Integer) name.vb: GetClientBounds(WindowHandle, Integer, Integer, Integer, Integer) -- uid: OpenTK.Platform.Native.Windows.WindowComponent.SetClientBounds(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) - commentId: M:OpenTK.Platform.Native.Windows.WindowComponent.SetClientBounds(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) - id: SetClientBounds(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) +- uid: OpenTK.Platform.Native.Windows.WindowComponent.SetClientBounds(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) + commentId: M:OpenTK.Platform.Native.Windows.WindowComponent.SetClientBounds(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) + id: SetClientBounds(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) parent: OpenTK.Platform.Native.Windows.WindowComponent langs: - csharp - vb name: SetClientBounds(WindowHandle, int, int, int, int) nameWithType: WindowComponent.SetClientBounds(WindowHandle, int, int, int, int) - fullName: OpenTK.Platform.Native.Windows.WindowComponent.SetClientBounds(OpenTK.Core.Platform.WindowHandle, int, int, int, int) + fullName: OpenTK.Platform.Native.Windows.WindowComponent.SetClientBounds(OpenTK.Platform.WindowHandle, int, int, int, int) type: Method source: - remote: - path: src/OpenTK.Platform.Native/Windows/WindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetClientBounds - path: opentk/src/OpenTK.Platform.Native/Windows/WindowComponent.cs - startLine: 1419 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\WindowComponent.cs + startLine: 1471 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: Set the client area bounds (drawing area) of a window. example: [] @@ -1427,7 +1302,7 @@ items: content: public void SetClientBounds(WindowHandle handle, int x, int y, int width, int height) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: Handle to a window. - id: x type: System.Int32 @@ -1444,31 +1319,27 @@ items: content.vb: Public Sub SetClientBounds(handle As WindowHandle, x As Integer, y As Integer, width As Integer, height As Integer) overload: OpenTK.Platform.Native.Windows.WindowComponent.SetClientBounds* implements: - - OpenTK.Core.Platform.IWindowComponent.SetClientBounds(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) + - OpenTK.Platform.IWindowComponent.SetClientBounds(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) nameWithType.vb: WindowComponent.SetClientBounds(WindowHandle, Integer, Integer, Integer, Integer) - fullName.vb: OpenTK.Platform.Native.Windows.WindowComponent.SetClientBounds(OpenTK.Core.Platform.WindowHandle, Integer, Integer, Integer, Integer) + fullName.vb: OpenTK.Platform.Native.Windows.WindowComponent.SetClientBounds(OpenTK.Platform.WindowHandle, Integer, Integer, Integer, Integer) name.vb: SetClientBounds(WindowHandle, Integer, Integer, Integer, Integer) -- uid: OpenTK.Platform.Native.Windows.WindowComponent.GetFramebufferSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) - commentId: M:OpenTK.Platform.Native.Windows.WindowComponent.GetFramebufferSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) - id: GetFramebufferSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) +- uid: OpenTK.Platform.Native.Windows.WindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + commentId: M:OpenTK.Platform.Native.Windows.WindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + id: GetFramebufferSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) parent: OpenTK.Platform.Native.Windows.WindowComponent langs: - csharp - vb name: GetFramebufferSize(WindowHandle, out int, out int) nameWithType: WindowComponent.GetFramebufferSize(WindowHandle, out int, out int) - fullName: OpenTK.Platform.Native.Windows.WindowComponent.GetFramebufferSize(OpenTK.Core.Platform.WindowHandle, out int, out int) + fullName: OpenTK.Platform.Native.Windows.WindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle, out int, out int) type: Method source: - remote: - path: src/OpenTK.Platform.Native/Windows/WindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetFramebufferSize - path: opentk/src/OpenTK.Platform.Native/Windows/WindowComponent.cs - startLine: 1446 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\WindowComponent.cs + startLine: 1498 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: >- Get the size of the window framebuffer in pixels. @@ -1479,7 +1350,7 @@ items: content: public void GetFramebufferSize(WindowHandle handle, out int width, out int height) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: Handle to a window. - id: width type: System.Int32 @@ -1490,31 +1361,27 @@ items: content.vb: Public Sub GetFramebufferSize(handle As WindowHandle, width As Integer, height As Integer) overload: OpenTK.Platform.Native.Windows.WindowComponent.GetFramebufferSize* implements: - - OpenTK.Core.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) + - OpenTK.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) nameWithType.vb: WindowComponent.GetFramebufferSize(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Platform.Native.Windows.WindowComponent.GetFramebufferSize(OpenTK.Core.Platform.WindowHandle, Integer, Integer) + fullName.vb: OpenTK.Platform.Native.Windows.WindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle, Integer, Integer) name.vb: GetFramebufferSize(WindowHandle, Integer, Integer) -- uid: OpenTK.Platform.Native.Windows.WindowComponent.GetMaxClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) - commentId: M:OpenTK.Platform.Native.Windows.WindowComponent.GetMaxClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) - id: GetMaxClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) +- uid: OpenTK.Platform.Native.Windows.WindowComponent.GetMaxClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) + commentId: M:OpenTK.Platform.Native.Windows.WindowComponent.GetMaxClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) + id: GetMaxClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) parent: OpenTK.Platform.Native.Windows.WindowComponent langs: - csharp - vb name: GetMaxClientSize(WindowHandle, out int?, out int?) nameWithType: WindowComponent.GetMaxClientSize(WindowHandle, out int?, out int?) - fullName: OpenTK.Platform.Native.Windows.WindowComponent.GetMaxClientSize(OpenTK.Core.Platform.WindowHandle, out int?, out int?) + fullName: OpenTK.Platform.Native.Windows.WindowComponent.GetMaxClientSize(OpenTK.Platform.WindowHandle, out int?, out int?) type: Method source: - remote: - path: src/OpenTK.Platform.Native/Windows/WindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetMaxClientSize - path: opentk/src/OpenTK.Platform.Native/Windows/WindowComponent.cs - startLine: 1455 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\WindowComponent.cs + startLine: 1507 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: Gets the maximum size of the client area. example: [] @@ -1522,7 +1389,7 @@ items: content: public void GetMaxClientSize(WindowHandle handle, out int? width, out int? height) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: Handle to a window. - id: width type: System.Nullable{System.Int32} @@ -1533,31 +1400,27 @@ items: content.vb: Public Sub GetMaxClientSize(handle As WindowHandle, width As Integer?, height As Integer?) overload: OpenTK.Platform.Native.Windows.WindowComponent.GetMaxClientSize* implements: - - OpenTK.Core.Platform.IWindowComponent.GetMaxClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) + - OpenTK.Platform.IWindowComponent.GetMaxClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) nameWithType.vb: WindowComponent.GetMaxClientSize(WindowHandle, Integer?, Integer?) - fullName.vb: OpenTK.Platform.Native.Windows.WindowComponent.GetMaxClientSize(OpenTK.Core.Platform.WindowHandle, Integer?, Integer?) + fullName.vb: OpenTK.Platform.Native.Windows.WindowComponent.GetMaxClientSize(OpenTK.Platform.WindowHandle, Integer?, Integer?) name.vb: GetMaxClientSize(WindowHandle, Integer?, Integer?) -- uid: OpenTK.Platform.Native.Windows.WindowComponent.SetMaxClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) - commentId: M:OpenTK.Platform.Native.Windows.WindowComponent.SetMaxClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) - id: SetMaxClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) +- uid: OpenTK.Platform.Native.Windows.WindowComponent.SetMaxClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) + commentId: M:OpenTK.Platform.Native.Windows.WindowComponent.SetMaxClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) + id: SetMaxClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) parent: OpenTK.Platform.Native.Windows.WindowComponent langs: - csharp - vb name: SetMaxClientSize(WindowHandle, int?, int?) nameWithType: WindowComponent.SetMaxClientSize(WindowHandle, int?, int?) - fullName: OpenTK.Platform.Native.Windows.WindowComponent.SetMaxClientSize(OpenTK.Core.Platform.WindowHandle, int?, int?) + fullName: OpenTK.Platform.Native.Windows.WindowComponent.SetMaxClientSize(OpenTK.Platform.WindowHandle, int?, int?) type: Method source: - remote: - path: src/OpenTK.Platform.Native/Windows/WindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetMaxClientSize - path: opentk/src/OpenTK.Platform.Native/Windows/WindowComponent.cs - startLine: 1464 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\WindowComponent.cs + startLine: 1516 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: Sets the maximum size of the client area. example: [] @@ -1565,7 +1428,7 @@ items: content: public void SetMaxClientSize(WindowHandle handle, int? width, int? height) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: Handle to a window. - id: width type: System.Nullable{System.Int32} @@ -1576,31 +1439,27 @@ items: content.vb: Public Sub SetMaxClientSize(handle As WindowHandle, width As Integer?, height As Integer?) overload: OpenTK.Platform.Native.Windows.WindowComponent.SetMaxClientSize* implements: - - OpenTK.Core.Platform.IWindowComponent.SetMaxClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) + - OpenTK.Platform.IWindowComponent.SetMaxClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) nameWithType.vb: WindowComponent.SetMaxClientSize(WindowHandle, Integer?, Integer?) - fullName.vb: OpenTK.Platform.Native.Windows.WindowComponent.SetMaxClientSize(OpenTK.Core.Platform.WindowHandle, Integer?, Integer?) + fullName.vb: OpenTK.Platform.Native.Windows.WindowComponent.SetMaxClientSize(OpenTK.Platform.WindowHandle, Integer?, Integer?) name.vb: SetMaxClientSize(WindowHandle, Integer?, Integer?) -- uid: OpenTK.Platform.Native.Windows.WindowComponent.GetMinClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) - commentId: M:OpenTK.Platform.Native.Windows.WindowComponent.GetMinClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) - id: GetMinClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) +- uid: OpenTK.Platform.Native.Windows.WindowComponent.GetMinClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) + commentId: M:OpenTK.Platform.Native.Windows.WindowComponent.GetMinClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) + id: GetMinClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) parent: OpenTK.Platform.Native.Windows.WindowComponent langs: - csharp - vb name: GetMinClientSize(WindowHandle, out int?, out int?) nameWithType: WindowComponent.GetMinClientSize(WindowHandle, out int?, out int?) - fullName: OpenTK.Platform.Native.Windows.WindowComponent.GetMinClientSize(OpenTK.Core.Platform.WindowHandle, out int?, out int?) + fullName: OpenTK.Platform.Native.Windows.WindowComponent.GetMinClientSize(OpenTK.Platform.WindowHandle, out int?, out int?) type: Method source: - remote: - path: src/OpenTK.Platform.Native/Windows/WindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetMinClientSize - path: opentk/src/OpenTK.Platform.Native/Windows/WindowComponent.cs - startLine: 1479 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\WindowComponent.cs + startLine: 1531 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: Gets the minimum size of the client area. example: [] @@ -1608,7 +1467,7 @@ items: content: public void GetMinClientSize(WindowHandle handle, out int? width, out int? height) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: Handle to a window. - id: width type: System.Nullable{System.Int32} @@ -1619,31 +1478,27 @@ items: content.vb: Public Sub GetMinClientSize(handle As WindowHandle, width As Integer?, height As Integer?) overload: OpenTK.Platform.Native.Windows.WindowComponent.GetMinClientSize* implements: - - OpenTK.Core.Platform.IWindowComponent.GetMinClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) + - OpenTK.Platform.IWindowComponent.GetMinClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) nameWithType.vb: WindowComponent.GetMinClientSize(WindowHandle, Integer?, Integer?) - fullName.vb: OpenTK.Platform.Native.Windows.WindowComponent.GetMinClientSize(OpenTK.Core.Platform.WindowHandle, Integer?, Integer?) + fullName.vb: OpenTK.Platform.Native.Windows.WindowComponent.GetMinClientSize(OpenTK.Platform.WindowHandle, Integer?, Integer?) name.vb: GetMinClientSize(WindowHandle, Integer?, Integer?) -- uid: OpenTK.Platform.Native.Windows.WindowComponent.SetMinClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) - commentId: M:OpenTK.Platform.Native.Windows.WindowComponent.SetMinClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) - id: SetMinClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) +- uid: OpenTK.Platform.Native.Windows.WindowComponent.SetMinClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) + commentId: M:OpenTK.Platform.Native.Windows.WindowComponent.SetMinClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) + id: SetMinClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) parent: OpenTK.Platform.Native.Windows.WindowComponent langs: - csharp - vb name: SetMinClientSize(WindowHandle, int?, int?) nameWithType: WindowComponent.SetMinClientSize(WindowHandle, int?, int?) - fullName: OpenTK.Platform.Native.Windows.WindowComponent.SetMinClientSize(OpenTK.Core.Platform.WindowHandle, int?, int?) + fullName: OpenTK.Platform.Native.Windows.WindowComponent.SetMinClientSize(OpenTK.Platform.WindowHandle, int?, int?) type: Method source: - remote: - path: src/OpenTK.Platform.Native/Windows/WindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetMinClientSize - path: opentk/src/OpenTK.Platform.Native/Windows/WindowComponent.cs - startLine: 1488 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\WindowComponent.cs + startLine: 1540 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: Sets the minimum size of the client area. example: [] @@ -1651,7 +1506,7 @@ items: content: public void SetMinClientSize(WindowHandle handle, int? width, int? height) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: Handle to a window. - id: width type: System.Nullable{System.Int32} @@ -1662,31 +1517,27 @@ items: content.vb: Public Sub SetMinClientSize(handle As WindowHandle, width As Integer?, height As Integer?) overload: OpenTK.Platform.Native.Windows.WindowComponent.SetMinClientSize* implements: - - OpenTK.Core.Platform.IWindowComponent.SetMinClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) + - OpenTK.Platform.IWindowComponent.SetMinClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) nameWithType.vb: WindowComponent.SetMinClientSize(WindowHandle, Integer?, Integer?) - fullName.vb: OpenTK.Platform.Native.Windows.WindowComponent.SetMinClientSize(OpenTK.Core.Platform.WindowHandle, Integer?, Integer?) + fullName.vb: OpenTK.Platform.Native.Windows.WindowComponent.SetMinClientSize(OpenTK.Platform.WindowHandle, Integer?, Integer?) name.vb: SetMinClientSize(WindowHandle, Integer?, Integer?) -- uid: OpenTK.Platform.Native.Windows.WindowComponent.GetDisplay(OpenTK.Core.Platform.WindowHandle) - commentId: M:OpenTK.Platform.Native.Windows.WindowComponent.GetDisplay(OpenTK.Core.Platform.WindowHandle) - id: GetDisplay(OpenTK.Core.Platform.WindowHandle) +- uid: OpenTK.Platform.Native.Windows.WindowComponent.GetDisplay(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.Native.Windows.WindowComponent.GetDisplay(OpenTK.Platform.WindowHandle) + id: GetDisplay(OpenTK.Platform.WindowHandle) parent: OpenTK.Platform.Native.Windows.WindowComponent langs: - csharp - vb name: GetDisplay(WindowHandle) nameWithType: WindowComponent.GetDisplay(WindowHandle) - fullName: OpenTK.Platform.Native.Windows.WindowComponent.GetDisplay(OpenTK.Core.Platform.WindowHandle) + fullName: OpenTK.Platform.Native.Windows.WindowComponent.GetDisplay(OpenTK.Platform.WindowHandle) type: Method source: - remote: - path: src/OpenTK.Platform.Native/Windows/WindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetDisplay - path: opentk/src/OpenTK.Platform.Native/Windows/WindowComponent.cs - startLine: 1503 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\WindowComponent.cs + startLine: 1555 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: Get the display handle a window is in. example: [] @@ -1694,10 +1545,10 @@ items: content: public DisplayHandle GetDisplay(WindowHandle handle) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: Handle to a window. return: - type: OpenTK.Core.Platform.DisplayHandle + type: OpenTK.Platform.DisplayHandle description: The display handle the window is in. content.vb: Public Function GetDisplay(handle As WindowHandle) As DisplayHandle overload: OpenTK.Platform.Native.Windows.WindowComponent.GetDisplay* @@ -1705,32 +1556,31 @@ items: - type: System.ArgumentNullException commentId: T:System.ArgumentNullException description: handle is null. - - type: OpenTK.Core.Platform.PalNotImplementedException - commentId: T:OpenTK.Core.Platform.PalNotImplementedException - description: Driver does not support finding the window display. . + - type: OpenTK.Platform.PalNotImplementedException + commentId: T:OpenTK.Platform.PalNotImplementedException + description: Backend does not support finding the window display. . + seealso: + - linkId: OpenTK.Platform.IWindowComponent.CanGetDisplay + commentId: P:OpenTK.Platform.IWindowComponent.CanGetDisplay implements: - - OpenTK.Core.Platform.IWindowComponent.GetDisplay(OpenTK.Core.Platform.WindowHandle) -- uid: OpenTK.Platform.Native.Windows.WindowComponent.GetMode(OpenTK.Core.Platform.WindowHandle) - commentId: M:OpenTK.Platform.Native.Windows.WindowComponent.GetMode(OpenTK.Core.Platform.WindowHandle) - id: GetMode(OpenTK.Core.Platform.WindowHandle) + - OpenTK.Platform.IWindowComponent.GetDisplay(OpenTK.Platform.WindowHandle) +- uid: OpenTK.Platform.Native.Windows.WindowComponent.GetMode(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.Native.Windows.WindowComponent.GetMode(OpenTK.Platform.WindowHandle) + id: GetMode(OpenTK.Platform.WindowHandle) parent: OpenTK.Platform.Native.Windows.WindowComponent langs: - csharp - vb name: GetMode(WindowHandle) nameWithType: WindowComponent.GetMode(WindowHandle) - fullName: OpenTK.Platform.Native.Windows.WindowComponent.GetMode(OpenTK.Core.Platform.WindowHandle) + fullName: OpenTK.Platform.Native.Windows.WindowComponent.GetMode(OpenTK.Platform.WindowHandle) type: Method source: - remote: - path: src/OpenTK.Platform.Native/Windows/WindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetMode - path: opentk/src/OpenTK.Platform.Native/Windows/WindowComponent.cs - startLine: 1521 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\WindowComponent.cs + startLine: 1573 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: Get the mode of a window. example: [] @@ -1738,10 +1588,10 @@ items: content: public WindowMode GetMode(WindowHandle handle) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: Handle to a window. return: - type: OpenTK.Core.Platform.WindowMode + type: OpenTK.Platform.WindowMode description: The mode of the window. content.vb: Public Function GetMode(handle As WindowHandle) As WindowMode overload: OpenTK.Platform.Native.Windows.WindowComponent.GetMode* @@ -1750,47 +1600,43 @@ items: commentId: T:System.ArgumentNullException description: handle is null. implements: - - OpenTK.Core.Platform.IWindowComponent.GetMode(OpenTK.Core.Platform.WindowHandle) -- uid: OpenTK.Platform.Native.Windows.WindowComponent.SetMode(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.WindowMode) - commentId: M:OpenTK.Platform.Native.Windows.WindowComponent.SetMode(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.WindowMode) - id: SetMode(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.WindowMode) + - OpenTK.Platform.IWindowComponent.GetMode(OpenTK.Platform.WindowHandle) +- uid: OpenTK.Platform.Native.Windows.WindowComponent.SetMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowMode) + commentId: M:OpenTK.Platform.Native.Windows.WindowComponent.SetMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowMode) + id: SetMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowMode) parent: OpenTK.Platform.Native.Windows.WindowComponent langs: - csharp - vb name: SetMode(WindowHandle, WindowMode) nameWithType: WindowComponent.SetMode(WindowHandle, WindowMode) - fullName: OpenTK.Platform.Native.Windows.WindowComponent.SetMode(OpenTK.Core.Platform.WindowHandle, OpenTK.Core.Platform.WindowMode) + fullName: OpenTK.Platform.Native.Windows.WindowComponent.SetMode(OpenTK.Platform.WindowHandle, OpenTK.Platform.WindowMode) type: Method source: - remote: - path: src/OpenTK.Platform.Native/Windows/WindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetMode - path: opentk/src/OpenTK.Platform.Native/Windows/WindowComponent.cs - startLine: 1572 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\WindowComponent.cs + startLine: 1624 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: Set the mode of a window. remarks: >- - Setting or + Setting or will make the window fullscreen in the nearest monitor to the window location. - Use or + Use or - to explicitly set the monitor. + to explicitly set the monitor. example: [] syntax: content: public void SetMode(WindowHandle handle, WindowMode mode) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: Handle to a window. - id: mode - type: OpenTK.Core.Platform.WindowMode + type: OpenTK.Platform.WindowMode description: The new mode of the window. content.vb: Public Sub SetMode(handle As WindowHandle, mode As WindowMode) overload: OpenTK.Platform.Native.Windows.WindowComponent.SetMode* @@ -1801,120 +1647,108 @@ items: - type: System.ArgumentOutOfRangeException commentId: T:System.ArgumentOutOfRangeException description: mode is an invalid value. - - type: OpenTK.Core.Platform.PalNotImplementedException - commentId: T:OpenTK.Core.Platform.PalNotImplementedException - description: Driver does not support the value set by mode. See . + - type: OpenTK.Platform.PalNotImplementedException + commentId: T:OpenTK.Platform.PalNotImplementedException + description: Driver does not support the value set by mode. See . implements: - - OpenTK.Core.Platform.IWindowComponent.SetMode(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.WindowMode) -- uid: OpenTK.Platform.Native.Windows.WindowComponent.SetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle) - commentId: M:OpenTK.Platform.Native.Windows.WindowComponent.SetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle) - id: SetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle) + - OpenTK.Platform.IWindowComponent.SetMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowMode) +- uid: OpenTK.Platform.Native.Windows.WindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle) + commentId: M:OpenTK.Platform.Native.Windows.WindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle) + id: SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle) parent: OpenTK.Platform.Native.Windows.WindowComponent langs: - csharp - vb name: SetFullscreenDisplay(WindowHandle, DisplayHandle?) nameWithType: WindowComponent.SetFullscreenDisplay(WindowHandle, DisplayHandle?) - fullName: OpenTK.Platform.Native.Windows.WindowComponent.SetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle, OpenTK.Core.Platform.DisplayHandle?) + fullName: OpenTK.Platform.Native.Windows.WindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle, OpenTK.Platform.DisplayHandle?) type: Method source: - remote: - path: src/OpenTK.Platform.Native/Windows/WindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetFullscreenDisplay - path: opentk/src/OpenTK.Platform.Native/Windows/WindowComponent.cs - startLine: 1625 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\WindowComponent.cs + startLine: 1677 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: >- Put a window into 'windowed fullscreen' on a specified display or the display the window is displayed on. If display is null then the window will be made fullscreen on the 'nearest' display. - remarks: To make an 'exclusive fullscreen' window see . + remarks: To make an 'exclusive fullscreen' window see . example: [] syntax: content: public void SetFullscreenDisplay(WindowHandle window, DisplayHandle? display) parameters: - id: window - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle - id: display - type: OpenTK.Core.Platform.DisplayHandle + type: OpenTK.Platform.DisplayHandle description: The display to make the window fullscreen on. content.vb: Public Sub SetFullscreenDisplay(window As WindowHandle, display As DisplayHandle) overload: OpenTK.Platform.Native.Windows.WindowComponent.SetFullscreenDisplay* implements: - - OpenTK.Core.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle) + - OpenTK.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle) nameWithType.vb: WindowComponent.SetFullscreenDisplay(WindowHandle, DisplayHandle) - fullName.vb: OpenTK.Platform.Native.Windows.WindowComponent.SetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle, OpenTK.Core.Platform.DisplayHandle) + fullName.vb: OpenTK.Platform.Native.Windows.WindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle, OpenTK.Platform.DisplayHandle) name.vb: SetFullscreenDisplay(WindowHandle, DisplayHandle) -- uid: OpenTK.Platform.Native.Windows.WindowComponent.SetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle,OpenTK.Core.Platform.VideoMode) - commentId: M:OpenTK.Platform.Native.Windows.WindowComponent.SetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle,OpenTK.Core.Platform.VideoMode) - id: SetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle,OpenTK.Core.Platform.VideoMode) +- uid: OpenTK.Platform.Native.Windows.WindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle,OpenTK.Platform.VideoMode) + commentId: M:OpenTK.Platform.Native.Windows.WindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle,OpenTK.Platform.VideoMode) + id: SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle,OpenTK.Platform.VideoMode) parent: OpenTK.Platform.Native.Windows.WindowComponent langs: - csharp - vb name: SetFullscreenDisplay(WindowHandle, DisplayHandle, VideoMode) nameWithType: WindowComponent.SetFullscreenDisplay(WindowHandle, DisplayHandle, VideoMode) - fullName: OpenTK.Platform.Native.Windows.WindowComponent.SetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle, OpenTK.Core.Platform.DisplayHandle, OpenTK.Core.Platform.VideoMode) + fullName: OpenTK.Platform.Native.Windows.WindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle, OpenTK.Platform.DisplayHandle, OpenTK.Platform.VideoMode) type: Method source: - remote: - path: src/OpenTK.Platform.Native/Windows/WindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetFullscreenDisplay - path: opentk/src/OpenTK.Platform.Native/Windows/WindowComponent.cs - startLine: 1675 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\WindowComponent.cs + startLine: 1727 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: >- Put a window into 'exclusive fullscreen' on a specified display and change the video mode to the specified video mode. - Only video modes accuired using + Only video modes accuired using are expected to work. - remarks: To make an 'windowed fullscreen' window see . + remarks: To make an 'windowed fullscreen' window see . example: [] syntax: content: public void SetFullscreenDisplay(WindowHandle window, DisplayHandle display, VideoMode videoMode) parameters: - id: window - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle - id: display - type: OpenTK.Core.Platform.DisplayHandle + type: OpenTK.Platform.DisplayHandle description: The display to make the window fullscreen on. - id: videoMode - type: OpenTK.Core.Platform.VideoMode + type: OpenTK.Platform.VideoMode description: The video mode to use when making the window fullscreen. content.vb: Public Sub SetFullscreenDisplay(window As WindowHandle, display As DisplayHandle, videoMode As VideoMode) overload: OpenTK.Platform.Native.Windows.WindowComponent.SetFullscreenDisplay* implements: - - OpenTK.Core.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle,OpenTK.Core.Platform.VideoMode) -- uid: OpenTK.Platform.Native.Windows.WindowComponent.GetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle@) - commentId: M:OpenTK.Platform.Native.Windows.WindowComponent.GetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle@) - id: GetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle@) + - OpenTK.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle,OpenTK.Platform.VideoMode) +- uid: OpenTK.Platform.Native.Windows.WindowComponent.GetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle@) + commentId: M:OpenTK.Platform.Native.Windows.WindowComponent.GetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle@) + id: GetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle@) parent: OpenTK.Platform.Native.Windows.WindowComponent langs: - csharp - vb name: GetFullscreenDisplay(WindowHandle, out DisplayHandle?) nameWithType: WindowComponent.GetFullscreenDisplay(WindowHandle, out DisplayHandle?) - fullName: OpenTK.Platform.Native.Windows.WindowComponent.GetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle, out OpenTK.Core.Platform.DisplayHandle?) + fullName: OpenTK.Platform.Native.Windows.WindowComponent.GetFullscreenDisplay(OpenTK.Platform.WindowHandle, out OpenTK.Platform.DisplayHandle?) type: Method source: - remote: - path: src/OpenTK.Platform.Native/Windows/WindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetFullscreenDisplay - path: opentk/src/OpenTK.Platform.Native/Windows/WindowComponent.cs - startLine: 1732 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\WindowComponent.cs + startLine: 1784 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: Gets the display that the specified window is fullscreen on, if the window is fullscreen. example: [] @@ -1922,9 +1756,9 @@ items: content: public bool GetFullscreenDisplay(WindowHandle window, out DisplayHandle? display) parameters: - id: window - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle - id: display - type: OpenTK.Core.Platform.DisplayHandle + type: OpenTK.Platform.DisplayHandle description: The display where the window is fullscreen or null if the window is not fullscreen. return: type: System.Boolean @@ -1932,31 +1766,27 @@ items: content.vb: Public Function GetFullscreenDisplay(window As WindowHandle, display As DisplayHandle) As Boolean overload: OpenTK.Platform.Native.Windows.WindowComponent.GetFullscreenDisplay* implements: - - OpenTK.Core.Platform.IWindowComponent.GetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle@) + - OpenTK.Platform.IWindowComponent.GetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle@) nameWithType.vb: WindowComponent.GetFullscreenDisplay(WindowHandle, DisplayHandle) - fullName.vb: OpenTK.Platform.Native.Windows.WindowComponent.GetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle, OpenTK.Core.Platform.DisplayHandle) + fullName.vb: OpenTK.Platform.Native.Windows.WindowComponent.GetFullscreenDisplay(OpenTK.Platform.WindowHandle, OpenTK.Platform.DisplayHandle) name.vb: GetFullscreenDisplay(WindowHandle, DisplayHandle) -- uid: OpenTK.Platform.Native.Windows.WindowComponent.GetBorderStyle(OpenTK.Core.Platform.WindowHandle) - commentId: M:OpenTK.Platform.Native.Windows.WindowComponent.GetBorderStyle(OpenTK.Core.Platform.WindowHandle) - id: GetBorderStyle(OpenTK.Core.Platform.WindowHandle) +- uid: OpenTK.Platform.Native.Windows.WindowComponent.GetBorderStyle(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.Native.Windows.WindowComponent.GetBorderStyle(OpenTK.Platform.WindowHandle) + id: GetBorderStyle(OpenTK.Platform.WindowHandle) parent: OpenTK.Platform.Native.Windows.WindowComponent langs: - csharp - vb name: GetBorderStyle(WindowHandle) nameWithType: WindowComponent.GetBorderStyle(WindowHandle) - fullName: OpenTK.Platform.Native.Windows.WindowComponent.GetBorderStyle(OpenTK.Core.Platform.WindowHandle) + fullName: OpenTK.Platform.Native.Windows.WindowComponent.GetBorderStyle(OpenTK.Platform.WindowHandle) type: Method source: - remote: - path: src/OpenTK.Platform.Native/Windows/WindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetBorderStyle - path: opentk/src/OpenTK.Platform.Native/Windows/WindowComponent.cs - startLine: 1740 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\WindowComponent.cs + startLine: 1792 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: Get the border style of a window. example: [] @@ -1964,10 +1794,10 @@ items: content: public WindowBorderStyle GetBorderStyle(WindowHandle handle) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: Handle to window. return: - type: OpenTK.Core.Platform.WindowBorderStyle + type: OpenTK.Platform.WindowBorderStyle description: The border style of the window. content.vb: Public Function GetBorderStyle(handle As WindowHandle) As WindowBorderStyle overload: OpenTK.Platform.Native.Windows.WindowComponent.GetBorderStyle* @@ -1976,28 +1806,24 @@ items: commentId: T:System.ArgumentNullException description: handle is null. implements: - - OpenTK.Core.Platform.IWindowComponent.GetBorderStyle(OpenTK.Core.Platform.WindowHandle) -- uid: OpenTK.Platform.Native.Windows.WindowComponent.SetBorderStyle(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.WindowBorderStyle) - commentId: M:OpenTK.Platform.Native.Windows.WindowComponent.SetBorderStyle(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.WindowBorderStyle) - id: SetBorderStyle(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.WindowBorderStyle) + - OpenTK.Platform.IWindowComponent.GetBorderStyle(OpenTK.Platform.WindowHandle) +- uid: OpenTK.Platform.Native.Windows.WindowComponent.SetBorderStyle(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowBorderStyle) + commentId: M:OpenTK.Platform.Native.Windows.WindowComponent.SetBorderStyle(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowBorderStyle) + id: SetBorderStyle(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowBorderStyle) parent: OpenTK.Platform.Native.Windows.WindowComponent langs: - csharp - vb name: SetBorderStyle(WindowHandle, WindowBorderStyle) nameWithType: WindowComponent.SetBorderStyle(WindowHandle, WindowBorderStyle) - fullName: OpenTK.Platform.Native.Windows.WindowComponent.SetBorderStyle(OpenTK.Core.Platform.WindowHandle, OpenTK.Core.Platform.WindowBorderStyle) + fullName: OpenTK.Platform.Native.Windows.WindowComponent.SetBorderStyle(OpenTK.Platform.WindowHandle, OpenTK.Platform.WindowBorderStyle) type: Method source: - remote: - path: src/OpenTK.Platform.Native/Windows/WindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetBorderStyle - path: opentk/src/OpenTK.Platform.Native/Windows/WindowComponent.cs - startLine: 1795 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\WindowComponent.cs + startLine: 1848 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: Set the border style of a window. example: [] @@ -2005,10 +1831,10 @@ items: content: public void SetBorderStyle(WindowHandle handle, WindowBorderStyle style) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: Handle to a window. - id: style - type: OpenTK.Core.Platform.WindowBorderStyle + type: OpenTK.Platform.WindowBorderStyle description: The new border style of the window. content.vb: Public Sub SetBorderStyle(handle As WindowHandle, style As WindowBorderStyle) overload: OpenTK.Platform.Native.Windows.WindowComponent.SetBorderStyle* @@ -2019,32 +1845,28 @@ items: - type: System.ArgumentOutOfRangeException commentId: T:System.ArgumentOutOfRangeException description: style is an invalid value. - - type: OpenTK.Core.Platform.PalNotImplementedException - commentId: T:OpenTK.Core.Platform.PalNotImplementedException - description: Driver does not support the value set by style. See . + - type: OpenTK.Platform.PalNotImplementedException + commentId: T:OpenTK.Platform.PalNotImplementedException + description: Driver does not support the value set by style. See . implements: - - OpenTK.Core.Platform.IWindowComponent.SetBorderStyle(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.WindowBorderStyle) -- uid: OpenTK.Platform.Native.Windows.WindowComponent.SetAlwaysOnTop(OpenTK.Core.Platform.WindowHandle,System.Boolean) - commentId: M:OpenTK.Platform.Native.Windows.WindowComponent.SetAlwaysOnTop(OpenTK.Core.Platform.WindowHandle,System.Boolean) - id: SetAlwaysOnTop(OpenTK.Core.Platform.WindowHandle,System.Boolean) + - OpenTK.Platform.IWindowComponent.SetBorderStyle(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowBorderStyle) +- uid: OpenTK.Platform.Native.Windows.WindowComponent.SetAlwaysOnTop(OpenTK.Platform.WindowHandle,System.Boolean) + commentId: M:OpenTK.Platform.Native.Windows.WindowComponent.SetAlwaysOnTop(OpenTK.Platform.WindowHandle,System.Boolean) + id: SetAlwaysOnTop(OpenTK.Platform.WindowHandle,System.Boolean) parent: OpenTK.Platform.Native.Windows.WindowComponent langs: - csharp - vb name: SetAlwaysOnTop(WindowHandle, bool) nameWithType: WindowComponent.SetAlwaysOnTop(WindowHandle, bool) - fullName: OpenTK.Platform.Native.Windows.WindowComponent.SetAlwaysOnTop(OpenTK.Core.Platform.WindowHandle, bool) + fullName: OpenTK.Platform.Native.Windows.WindowComponent.SetAlwaysOnTop(OpenTK.Platform.WindowHandle, bool) type: Method source: - remote: - path: src/OpenTK.Platform.Native/Windows/WindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetAlwaysOnTop - path: opentk/src/OpenTK.Platform.Native/Windows/WindowComponent.cs - startLine: 1847 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\WindowComponent.cs + startLine: 1900 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: Set if the window is an always on top window or not. example: [] @@ -2052,7 +1874,7 @@ items: content: public void SetAlwaysOnTop(WindowHandle handle, bool floating) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: A handle to the window to make always on top. - id: floating type: System.Boolean @@ -2060,31 +1882,27 @@ items: content.vb: Public Sub SetAlwaysOnTop(handle As WindowHandle, floating As Boolean) overload: OpenTK.Platform.Native.Windows.WindowComponent.SetAlwaysOnTop* implements: - - OpenTK.Core.Platform.IWindowComponent.SetAlwaysOnTop(OpenTK.Core.Platform.WindowHandle,System.Boolean) + - OpenTK.Platform.IWindowComponent.SetAlwaysOnTop(OpenTK.Platform.WindowHandle,System.Boolean) nameWithType.vb: WindowComponent.SetAlwaysOnTop(WindowHandle, Boolean) - fullName.vb: OpenTK.Platform.Native.Windows.WindowComponent.SetAlwaysOnTop(OpenTK.Core.Platform.WindowHandle, Boolean) + fullName.vb: OpenTK.Platform.Native.Windows.WindowComponent.SetAlwaysOnTop(OpenTK.Platform.WindowHandle, Boolean) name.vb: SetAlwaysOnTop(WindowHandle, Boolean) -- uid: OpenTK.Platform.Native.Windows.WindowComponent.IsAlwaysOnTop(OpenTK.Core.Platform.WindowHandle) - commentId: M:OpenTK.Platform.Native.Windows.WindowComponent.IsAlwaysOnTop(OpenTK.Core.Platform.WindowHandle) - id: IsAlwaysOnTop(OpenTK.Core.Platform.WindowHandle) +- uid: OpenTK.Platform.Native.Windows.WindowComponent.IsAlwaysOnTop(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.Native.Windows.WindowComponent.IsAlwaysOnTop(OpenTK.Platform.WindowHandle) + id: IsAlwaysOnTop(OpenTK.Platform.WindowHandle) parent: OpenTK.Platform.Native.Windows.WindowComponent langs: - csharp - vb name: IsAlwaysOnTop(WindowHandle) nameWithType: WindowComponent.IsAlwaysOnTop(WindowHandle) - fullName: OpenTK.Platform.Native.Windows.WindowComponent.IsAlwaysOnTop(OpenTK.Core.Platform.WindowHandle) + fullName: OpenTK.Platform.Native.Windows.WindowComponent.IsAlwaysOnTop(OpenTK.Platform.WindowHandle) type: Method source: - remote: - path: src/OpenTK.Platform.Native/Windows/WindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: IsAlwaysOnTop - path: opentk/src/OpenTK.Platform.Native/Windows/WindowComponent.cs - startLine: 1864 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\WindowComponent.cs + startLine: 1917 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: Gets if the current window is always on top or not. example: [] @@ -2092,7 +1910,7 @@ items: content: public bool IsAlwaysOnTop(WindowHandle handle) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: A handle to the window to get whether or not is always on top. return: type: System.Boolean @@ -2100,28 +1918,24 @@ items: content.vb: Public Function IsAlwaysOnTop(handle As WindowHandle) As Boolean overload: OpenTK.Platform.Native.Windows.WindowComponent.IsAlwaysOnTop* implements: - - OpenTK.Core.Platform.IWindowComponent.IsAlwaysOnTop(OpenTK.Core.Platform.WindowHandle) -- uid: OpenTK.Platform.Native.Windows.WindowComponent.SetHitTestCallback(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.HitTest) - commentId: M:OpenTK.Platform.Native.Windows.WindowComponent.SetHitTestCallback(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.HitTest) - id: SetHitTestCallback(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.HitTest) + - OpenTK.Platform.IWindowComponent.IsAlwaysOnTop(OpenTK.Platform.WindowHandle) +- uid: OpenTK.Platform.Native.Windows.WindowComponent.SetHitTestCallback(OpenTK.Platform.WindowHandle,OpenTK.Platform.HitTest) + commentId: M:OpenTK.Platform.Native.Windows.WindowComponent.SetHitTestCallback(OpenTK.Platform.WindowHandle,OpenTK.Platform.HitTest) + id: SetHitTestCallback(OpenTK.Platform.WindowHandle,OpenTK.Platform.HitTest) parent: OpenTK.Platform.Native.Windows.WindowComponent langs: - csharp - vb name: SetHitTestCallback(WindowHandle, HitTest?) nameWithType: WindowComponent.SetHitTestCallback(WindowHandle, HitTest?) - fullName: OpenTK.Platform.Native.Windows.WindowComponent.SetHitTestCallback(OpenTK.Core.Platform.WindowHandle, OpenTK.Core.Platform.HitTest?) + fullName: OpenTK.Platform.Native.Windows.WindowComponent.SetHitTestCallback(OpenTK.Platform.WindowHandle, OpenTK.Platform.HitTest?) type: Method source: - remote: - path: src/OpenTK.Platform.Native/Windows/WindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetHitTestCallback - path: opentk/src/OpenTK.Platform.Native/Windows/WindowComponent.cs - startLine: 1878 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\WindowComponent.cs + startLine: 1931 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: >- Sets a delegate that is used for hit testing. @@ -2139,39 +1953,35 @@ items: content: public void SetHitTestCallback(WindowHandle handle, HitTest? test) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: The window for which this hit test delegate should be used for. - id: test - type: OpenTK.Core.Platform.HitTest + type: OpenTK.Platform.HitTest description: The hit test delegate. content.vb: Public Sub SetHitTestCallback(handle As WindowHandle, test As HitTest) overload: OpenTK.Platform.Native.Windows.WindowComponent.SetHitTestCallback* implements: - - OpenTK.Core.Platform.IWindowComponent.SetHitTestCallback(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.HitTest) + - OpenTK.Platform.IWindowComponent.SetHitTestCallback(OpenTK.Platform.WindowHandle,OpenTK.Platform.HitTest) nameWithType.vb: WindowComponent.SetHitTestCallback(WindowHandle, HitTest) - fullName.vb: OpenTK.Platform.Native.Windows.WindowComponent.SetHitTestCallback(OpenTK.Core.Platform.WindowHandle, OpenTK.Core.Platform.HitTest) + fullName.vb: OpenTK.Platform.Native.Windows.WindowComponent.SetHitTestCallback(OpenTK.Platform.WindowHandle, OpenTK.Platform.HitTest) name.vb: SetHitTestCallback(WindowHandle, HitTest) -- uid: OpenTK.Platform.Native.Windows.WindowComponent.SetCursor(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.CursorHandle) - commentId: M:OpenTK.Platform.Native.Windows.WindowComponent.SetCursor(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.CursorHandle) - id: SetCursor(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.CursorHandle) +- uid: OpenTK.Platform.Native.Windows.WindowComponent.SetCursor(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorHandle) + commentId: M:OpenTK.Platform.Native.Windows.WindowComponent.SetCursor(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorHandle) + id: SetCursor(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorHandle) parent: OpenTK.Platform.Native.Windows.WindowComponent langs: - csharp - vb name: SetCursor(WindowHandle, CursorHandle?) nameWithType: WindowComponent.SetCursor(WindowHandle, CursorHandle?) - fullName: OpenTK.Platform.Native.Windows.WindowComponent.SetCursor(OpenTK.Core.Platform.WindowHandle, OpenTK.Core.Platform.CursorHandle?) + fullName: OpenTK.Platform.Native.Windows.WindowComponent.SetCursor(OpenTK.Platform.WindowHandle, OpenTK.Platform.CursorHandle?) type: Method source: - remote: - path: src/OpenTK.Platform.Native/Windows/WindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetCursor - path: opentk/src/OpenTK.Platform.Native/Windows/WindowComponent.cs - startLine: 1886 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\WindowComponent.cs + startLine: 1939 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: Set the cursor object for a window. example: [] @@ -2179,10 +1989,10 @@ items: content: public void SetCursor(WindowHandle handle, CursorHandle? cursor) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: Handle to a window. - id: cursor - type: OpenTK.Core.Platform.CursorHandle + type: OpenTK.Platform.CursorHandle description: Handle to a cursor object, or null for hidden cursor. content.vb: Public Sub SetCursor(handle As WindowHandle, cursor As CursorHandle) overload: OpenTK.Platform.Native.Windows.WindowComponent.SetCursor* @@ -2190,72 +2000,67 @@ items: - type: System.ArgumentNullException commentId: T:System.ArgumentNullException description: handle is null. - - type: OpenTK.Core.Platform.PalNotImplementedException - commentId: T:OpenTK.Core.Platform.PalNotImplementedException - description: Driver does not support setting the window mouse cursor. See . + - type: OpenTK.Platform.PalNotImplementedException + commentId: T:OpenTK.Platform.PalNotImplementedException + description: Backend does not support setting the window mouse cursor. See . + seealso: + - linkId: OpenTK.Platform.IWindowComponent.CanSetCursor + commentId: P:OpenTK.Platform.IWindowComponent.CanSetCursor implements: - - OpenTK.Core.Platform.IWindowComponent.SetCursor(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.CursorHandle) + - OpenTK.Platform.IWindowComponent.SetCursor(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorHandle) nameWithType.vb: WindowComponent.SetCursor(WindowHandle, CursorHandle) - fullName.vb: OpenTK.Platform.Native.Windows.WindowComponent.SetCursor(OpenTK.Core.Platform.WindowHandle, OpenTK.Core.Platform.CursorHandle) + fullName.vb: OpenTK.Platform.Native.Windows.WindowComponent.SetCursor(OpenTK.Platform.WindowHandle, OpenTK.Platform.CursorHandle) name.vb: SetCursor(WindowHandle, CursorHandle) -- uid: OpenTK.Platform.Native.Windows.WindowComponent.GetCursorCaptureMode(OpenTK.Core.Platform.WindowHandle) - commentId: M:OpenTK.Platform.Native.Windows.WindowComponent.GetCursorCaptureMode(OpenTK.Core.Platform.WindowHandle) - id: GetCursorCaptureMode(OpenTK.Core.Platform.WindowHandle) +- uid: OpenTK.Platform.Native.Windows.WindowComponent.GetCursorCaptureMode(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.Native.Windows.WindowComponent.GetCursorCaptureMode(OpenTK.Platform.WindowHandle) + id: GetCursorCaptureMode(OpenTK.Platform.WindowHandle) parent: OpenTK.Platform.Native.Windows.WindowComponent langs: - csharp - vb name: GetCursorCaptureMode(WindowHandle) nameWithType: WindowComponent.GetCursorCaptureMode(WindowHandle) - fullName: OpenTK.Platform.Native.Windows.WindowComponent.GetCursorCaptureMode(OpenTK.Core.Platform.WindowHandle) + fullName: OpenTK.Platform.Native.Windows.WindowComponent.GetCursorCaptureMode(OpenTK.Platform.WindowHandle) type: Method source: - remote: - path: src/OpenTK.Platform.Native/Windows/WindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetCursorCaptureMode - path: opentk/src/OpenTK.Platform.Native/Windows/WindowComponent.cs - startLine: 1898 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\WindowComponent.cs + startLine: 1951 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows - summary: Gets the current cursor capture mode. See for more details. + summary: Gets the current cursor capture mode. See for more details. example: [] syntax: content: public CursorCaptureMode GetCursorCaptureMode(WindowHandle handle) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: Handle to a window. return: - type: OpenTK.Core.Platform.CursorCaptureMode + type: OpenTK.Platform.CursorCaptureMode description: The current cursor capture mode. content.vb: Public Function GetCursorCaptureMode(handle As WindowHandle) As CursorCaptureMode overload: OpenTK.Platform.Native.Windows.WindowComponent.GetCursorCaptureMode* implements: - - OpenTK.Core.Platform.IWindowComponent.GetCursorCaptureMode(OpenTK.Core.Platform.WindowHandle) -- uid: OpenTK.Platform.Native.Windows.WindowComponent.SetCursorCaptureMode(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.CursorCaptureMode) - commentId: M:OpenTK.Platform.Native.Windows.WindowComponent.SetCursorCaptureMode(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.CursorCaptureMode) - id: SetCursorCaptureMode(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.CursorCaptureMode) + - OpenTK.Platform.IWindowComponent.GetCursorCaptureMode(OpenTK.Platform.WindowHandle) +- uid: OpenTK.Platform.Native.Windows.WindowComponent.SetCursorCaptureMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorCaptureMode) + commentId: M:OpenTK.Platform.Native.Windows.WindowComponent.SetCursorCaptureMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorCaptureMode) + id: SetCursorCaptureMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorCaptureMode) parent: OpenTK.Platform.Native.Windows.WindowComponent langs: - csharp - vb name: SetCursorCaptureMode(WindowHandle, CursorCaptureMode) nameWithType: WindowComponent.SetCursorCaptureMode(WindowHandle, CursorCaptureMode) - fullName: OpenTK.Platform.Native.Windows.WindowComponent.SetCursorCaptureMode(OpenTK.Core.Platform.WindowHandle, OpenTK.Core.Platform.CursorCaptureMode) + fullName: OpenTK.Platform.Native.Windows.WindowComponent.SetCursorCaptureMode(OpenTK.Platform.WindowHandle, OpenTK.Platform.CursorCaptureMode) type: Method source: - remote: - path: src/OpenTK.Platform.Native/Windows/WindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetCursorCaptureMode - path: opentk/src/OpenTK.Platform.Native/Windows/WindowComponent.cs - startLine: 1906 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\WindowComponent.cs + startLine: 1959 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: >- Sets the cursor capture mode of the window. @@ -2266,36 +2071,35 @@ items: content: public void SetCursorCaptureMode(WindowHandle handle, CursorCaptureMode mode) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: Handle to a window. - id: mode - type: OpenTK.Core.Platform.CursorCaptureMode + type: OpenTK.Platform.CursorCaptureMode description: The cursor capture mode. content.vb: Public Sub SetCursorCaptureMode(handle As WindowHandle, mode As CursorCaptureMode) overload: OpenTK.Platform.Native.Windows.WindowComponent.SetCursorCaptureMode* + seealso: + - linkId: OpenTK.Platform.IWindowComponent.CanCaptureCursor + commentId: P:OpenTK.Platform.IWindowComponent.CanCaptureCursor implements: - - OpenTK.Core.Platform.IWindowComponent.SetCursorCaptureMode(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.CursorCaptureMode) -- uid: OpenTK.Platform.Native.Windows.WindowComponent.IsFocused(OpenTK.Core.Platform.WindowHandle) - commentId: M:OpenTK.Platform.Native.Windows.WindowComponent.IsFocused(OpenTK.Core.Platform.WindowHandle) - id: IsFocused(OpenTK.Core.Platform.WindowHandle) + - OpenTK.Platform.IWindowComponent.SetCursorCaptureMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorCaptureMode) +- uid: OpenTK.Platform.Native.Windows.WindowComponent.IsFocused(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.Native.Windows.WindowComponent.IsFocused(OpenTK.Platform.WindowHandle) + id: IsFocused(OpenTK.Platform.WindowHandle) parent: OpenTK.Platform.Native.Windows.WindowComponent langs: - csharp - vb name: IsFocused(WindowHandle) nameWithType: WindowComponent.IsFocused(WindowHandle) - fullName: OpenTK.Platform.Native.Windows.WindowComponent.IsFocused(OpenTK.Core.Platform.WindowHandle) + fullName: OpenTK.Platform.Native.Windows.WindowComponent.IsFocused(OpenTK.Platform.WindowHandle) type: Method source: - remote: - path: src/OpenTK.Platform.Native/Windows/WindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: IsFocused - path: opentk/src/OpenTK.Platform.Native/Windows/WindowComponent.cs - startLine: 1971 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\WindowComponent.cs + startLine: 2024 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: Returns true if the given window has input focus. example: [] @@ -2303,7 +2107,7 @@ items: content: public bool IsFocused(WindowHandle handle) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: Handle to a window. return: type: System.Boolean @@ -2311,28 +2115,24 @@ items: content.vb: Public Function IsFocused(handle As WindowHandle) As Boolean overload: OpenTK.Platform.Native.Windows.WindowComponent.IsFocused* implements: - - OpenTK.Core.Platform.IWindowComponent.IsFocused(OpenTK.Core.Platform.WindowHandle) -- uid: OpenTK.Platform.Native.Windows.WindowComponent.FocusWindow(OpenTK.Core.Platform.WindowHandle) - commentId: M:OpenTK.Platform.Native.Windows.WindowComponent.FocusWindow(OpenTK.Core.Platform.WindowHandle) - id: FocusWindow(OpenTK.Core.Platform.WindowHandle) + - OpenTK.Platform.IWindowComponent.IsFocused(OpenTK.Platform.WindowHandle) +- uid: OpenTK.Platform.Native.Windows.WindowComponent.FocusWindow(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.Native.Windows.WindowComponent.FocusWindow(OpenTK.Platform.WindowHandle) + id: FocusWindow(OpenTK.Platform.WindowHandle) parent: OpenTK.Platform.Native.Windows.WindowComponent langs: - csharp - vb name: FocusWindow(WindowHandle) nameWithType: WindowComponent.FocusWindow(WindowHandle) - fullName: OpenTK.Platform.Native.Windows.WindowComponent.FocusWindow(OpenTK.Core.Platform.WindowHandle) + fullName: OpenTK.Platform.Native.Windows.WindowComponent.FocusWindow(OpenTK.Platform.WindowHandle) type: Method source: - remote: - path: src/OpenTK.Platform.Native/Windows/WindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: FocusWindow - path: opentk/src/OpenTK.Platform.Native/Windows/WindowComponent.cs - startLine: 1979 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\WindowComponent.cs + startLine: 2032 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: Gives the window input focus. example: [] @@ -2340,33 +2140,29 @@ items: content: public void FocusWindow(WindowHandle handle) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: Handle to the window to focus. content.vb: Public Sub FocusWindow(handle As WindowHandle) overload: OpenTK.Platform.Native.Windows.WindowComponent.FocusWindow* implements: - - OpenTK.Core.Platform.IWindowComponent.FocusWindow(OpenTK.Core.Platform.WindowHandle) -- uid: OpenTK.Platform.Native.Windows.WindowComponent.RequestAttention(OpenTK.Core.Platform.WindowHandle) - commentId: M:OpenTK.Platform.Native.Windows.WindowComponent.RequestAttention(OpenTK.Core.Platform.WindowHandle) - id: RequestAttention(OpenTK.Core.Platform.WindowHandle) + - OpenTK.Platform.IWindowComponent.FocusWindow(OpenTK.Platform.WindowHandle) +- uid: OpenTK.Platform.Native.Windows.WindowComponent.RequestAttention(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.Native.Windows.WindowComponent.RequestAttention(OpenTK.Platform.WindowHandle) + id: RequestAttention(OpenTK.Platform.WindowHandle) parent: OpenTK.Platform.Native.Windows.WindowComponent langs: - csharp - vb name: RequestAttention(WindowHandle) nameWithType: WindowComponent.RequestAttention(WindowHandle) - fullName: OpenTK.Platform.Native.Windows.WindowComponent.RequestAttention(OpenTK.Core.Platform.WindowHandle) + fullName: OpenTK.Platform.Native.Windows.WindowComponent.RequestAttention(OpenTK.Platform.WindowHandle) type: Method source: - remote: - path: src/OpenTK.Platform.Native/Windows/WindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: RequestAttention - path: opentk/src/OpenTK.Platform.Native/Windows/WindowComponent.cs - startLine: 2006 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\WindowComponent.cs + startLine: 2059 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: Requests that the user pay attention to the window. example: [] @@ -2374,33 +2170,29 @@ items: content: public void RequestAttention(WindowHandle handle) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: A handle to the window that requests attention. content.vb: Public Sub RequestAttention(handle As WindowHandle) overload: OpenTK.Platform.Native.Windows.WindowComponent.RequestAttention* implements: - - OpenTK.Core.Platform.IWindowComponent.RequestAttention(OpenTK.Core.Platform.WindowHandle) -- uid: OpenTK.Platform.Native.Windows.WindowComponent.ScreenToClient(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) - commentId: M:OpenTK.Platform.Native.Windows.WindowComponent.ScreenToClient(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) - id: ScreenToClient(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) + - OpenTK.Platform.IWindowComponent.RequestAttention(OpenTK.Platform.WindowHandle) +- uid: OpenTK.Platform.Native.Windows.WindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) + commentId: M:OpenTK.Platform.Native.Windows.WindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) + id: ScreenToClient(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) parent: OpenTK.Platform.Native.Windows.WindowComponent langs: - csharp - vb name: ScreenToClient(WindowHandle, int, int, out int, out int) nameWithType: WindowComponent.ScreenToClient(WindowHandle, int, int, out int, out int) - fullName: OpenTK.Platform.Native.Windows.WindowComponent.ScreenToClient(OpenTK.Core.Platform.WindowHandle, int, int, out int, out int) + fullName: OpenTK.Platform.Native.Windows.WindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle, int, int, out int, out int) type: Method source: - remote: - path: src/OpenTK.Platform.Native/Windows/WindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ScreenToClient - path: opentk/src/OpenTK.Platform.Native/Windows/WindowComponent.cs - startLine: 2023 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\WindowComponent.cs + startLine: 2076 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: Converts screen coordinates to window relative coordinates. example: [] @@ -2408,7 +2200,7 @@ items: content: public void ScreenToClient(WindowHandle handle, int x, int y, out int clientX, out int clientY) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: The window handle. - id: x type: System.Int32 @@ -2425,31 +2217,27 @@ items: content.vb: Public Sub ScreenToClient(handle As WindowHandle, x As Integer, y As Integer, clientX As Integer, clientY As Integer) overload: OpenTK.Platform.Native.Windows.WindowComponent.ScreenToClient* implements: - - OpenTK.Core.Platform.IWindowComponent.ScreenToClient(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) + - OpenTK.Platform.IWindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) nameWithType.vb: WindowComponent.ScreenToClient(WindowHandle, Integer, Integer, Integer, Integer) - fullName.vb: OpenTK.Platform.Native.Windows.WindowComponent.ScreenToClient(OpenTK.Core.Platform.WindowHandle, Integer, Integer, Integer, Integer) + fullName.vb: OpenTK.Platform.Native.Windows.WindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle, Integer, Integer, Integer, Integer) name.vb: ScreenToClient(WindowHandle, Integer, Integer, Integer, Integer) -- uid: OpenTK.Platform.Native.Windows.WindowComponent.ClientToScreen(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) - commentId: M:OpenTK.Platform.Native.Windows.WindowComponent.ClientToScreen(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) - id: ClientToScreen(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) +- uid: OpenTK.Platform.Native.Windows.WindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) + commentId: M:OpenTK.Platform.Native.Windows.WindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) + id: ClientToScreen(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) parent: OpenTK.Platform.Native.Windows.WindowComponent langs: - csharp - vb name: ClientToScreen(WindowHandle, int, int, out int, out int) nameWithType: WindowComponent.ClientToScreen(WindowHandle, int, int, out int, out int) - fullName: OpenTK.Platform.Native.Windows.WindowComponent.ClientToScreen(OpenTK.Core.Platform.WindowHandle, int, int, out int, out int) + fullName: OpenTK.Platform.Native.Windows.WindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle, int, int, out int, out int) type: Method source: - remote: - path: src/OpenTK.Platform.Native/Windows/WindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ClientToScreen - path: opentk/src/OpenTK.Platform.Native/Windows/WindowComponent.cs - startLine: 2041 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\WindowComponent.cs + startLine: 2094 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: Converts window relative coordinates to screen coordinates. example: [] @@ -2457,7 +2245,7 @@ items: content: public void ClientToScreen(WindowHandle handle, int clientX, int clientY, out int x, out int y) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: The window handle. - id: clientX type: System.Int32 @@ -2474,31 +2262,27 @@ items: content.vb: Public Sub ClientToScreen(handle As WindowHandle, clientX As Integer, clientY As Integer, x As Integer, y As Integer) overload: OpenTK.Platform.Native.Windows.WindowComponent.ClientToScreen* implements: - - OpenTK.Core.Platform.IWindowComponent.ClientToScreen(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) + - OpenTK.Platform.IWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) nameWithType.vb: WindowComponent.ClientToScreen(WindowHandle, Integer, Integer, Integer, Integer) - fullName.vb: OpenTK.Platform.Native.Windows.WindowComponent.ClientToScreen(OpenTK.Core.Platform.WindowHandle, Integer, Integer, Integer, Integer) + fullName.vb: OpenTK.Platform.Native.Windows.WindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle, Integer, Integer, Integer, Integer) name.vb: ClientToScreen(WindowHandle, Integer, Integer, Integer, Integer) -- uid: OpenTK.Platform.Native.Windows.WindowComponent.GetScaleFactor(OpenTK.Core.Platform.WindowHandle,System.Single@,System.Single@) - commentId: M:OpenTK.Platform.Native.Windows.WindowComponent.GetScaleFactor(OpenTK.Core.Platform.WindowHandle,System.Single@,System.Single@) - id: GetScaleFactor(OpenTK.Core.Platform.WindowHandle,System.Single@,System.Single@) +- uid: OpenTK.Platform.Native.Windows.WindowComponent.GetScaleFactor(OpenTK.Platform.WindowHandle,System.Single@,System.Single@) + commentId: M:OpenTK.Platform.Native.Windows.WindowComponent.GetScaleFactor(OpenTK.Platform.WindowHandle,System.Single@,System.Single@) + id: GetScaleFactor(OpenTK.Platform.WindowHandle,System.Single@,System.Single@) parent: OpenTK.Platform.Native.Windows.WindowComponent langs: - csharp - vb name: GetScaleFactor(WindowHandle, out float, out float) nameWithType: WindowComponent.GetScaleFactor(WindowHandle, out float, out float) - fullName: OpenTK.Platform.Native.Windows.WindowComponent.GetScaleFactor(OpenTK.Core.Platform.WindowHandle, out float, out float) + fullName: OpenTK.Platform.Native.Windows.WindowComponent.GetScaleFactor(OpenTK.Platform.WindowHandle, out float, out float) type: Method source: - remote: - path: src/OpenTK.Platform.Native/Windows/WindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetScaleFactor - path: opentk/src/OpenTK.Platform.Native/Windows/WindowComponent.cs - startLine: 2059 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\WindowComponent.cs + startLine: 2112 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: Returns the current scale factor of this window. example: [] @@ -2506,7 +2290,7 @@ items: content: public void GetScaleFactor(WindowHandle handle, out float scaleX, out float scaleY) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: The window handle. - id: scaleX type: System.Single @@ -2517,34 +2301,30 @@ items: content.vb: Public Sub GetScaleFactor(handle As WindowHandle, scaleX As Single, scaleY As Single) overload: OpenTK.Platform.Native.Windows.WindowComponent.GetScaleFactor* seealso: - - linkId: OpenTK.Core.Platform.WindowScaleChangeEventArgs - commentId: T:OpenTK.Core.Platform.WindowScaleChangeEventArgs + - linkId: OpenTK.Platform.WindowScaleChangeEventArgs + commentId: T:OpenTK.Platform.WindowScaleChangeEventArgs implements: - - OpenTK.Core.Platform.IWindowComponent.GetScaleFactor(OpenTK.Core.Platform.WindowHandle,System.Single@,System.Single@) + - OpenTK.Platform.IWindowComponent.GetScaleFactor(OpenTK.Platform.WindowHandle,System.Single@,System.Single@) nameWithType.vb: WindowComponent.GetScaleFactor(WindowHandle, Single, Single) - fullName.vb: OpenTK.Platform.Native.Windows.WindowComponent.GetScaleFactor(OpenTK.Core.Platform.WindowHandle, Single, Single) + fullName.vb: OpenTK.Platform.Native.Windows.WindowComponent.GetScaleFactor(OpenTK.Platform.WindowHandle, Single, Single) name.vb: GetScaleFactor(WindowHandle, Single, Single) -- uid: OpenTK.Platform.Native.Windows.WindowComponent.GetHWND(OpenTK.Core.Platform.WindowHandle) - commentId: M:OpenTK.Platform.Native.Windows.WindowComponent.GetHWND(OpenTK.Core.Platform.WindowHandle) - id: GetHWND(OpenTK.Core.Platform.WindowHandle) +- uid: OpenTK.Platform.Native.Windows.WindowComponent.GetHWND(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.Native.Windows.WindowComponent.GetHWND(OpenTK.Platform.WindowHandle) + id: GetHWND(OpenTK.Platform.WindowHandle) parent: OpenTK.Platform.Native.Windows.WindowComponent langs: - csharp - vb name: GetHWND(WindowHandle) nameWithType: WindowComponent.GetHWND(WindowHandle) - fullName: OpenTK.Platform.Native.Windows.WindowComponent.GetHWND(OpenTK.Core.Platform.WindowHandle) + fullName: OpenTK.Platform.Native.Windows.WindowComponent.GetHWND(OpenTK.Platform.WindowHandle) type: Method source: - remote: - path: src/OpenTK.Platform.Native/Windows/WindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetHWND - path: opentk/src/OpenTK.Platform.Native/Windows/WindowComponent.cs - startLine: 2074 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\WindowComponent.cs + startLine: 2127 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: >- Returns the underlying win32 HWND for the specified window. @@ -2555,7 +2335,7 @@ items: content: public nint GetHWND(WindowHandle handle) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: The window to get the HWND from. return: type: System.IntPtr @@ -2563,13 +2343,13 @@ items: content.vb: Public Function GetHWND(handle As WindowHandle) As IntPtr overload: OpenTK.Platform.Native.Windows.WindowComponent.GetHWND* references: -- uid: OpenTK.Core.Platform.IWindowComponent - commentId: T:OpenTK.Core.Platform.IWindowComponent - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.IWindowComponent.html +- uid: OpenTK.Platform.IWindowComponent + commentId: T:OpenTK.Platform.IWindowComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IWindowComponent.html name: IWindowComponent nameWithType: IWindowComponent - fullName: OpenTK.Core.Platform.IWindowComponent + fullName: OpenTK.Platform.IWindowComponent - uid: OpenTK.Platform.Native.Windows commentId: N:OpenTK.Platform.Native.Windows href: OpenTK.html @@ -2619,13 +2399,13 @@ references: nameWithType.vb: Object fullName.vb: Object name.vb: Object -- uid: OpenTK.Core.Platform.IPalComponent - commentId: T:OpenTK.Core.Platform.IPalComponent - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.IPalComponent.html +- uid: OpenTK.Platform.IPalComponent + commentId: T:OpenTK.Platform.IPalComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IPalComponent.html name: IPalComponent nameWithType: IPalComponent - fullName: OpenTK.Core.Platform.IPalComponent + fullName: OpenTK.Platform.IPalComponent - uid: System.Object.Equals(System.Object) commentId: M:System.Object.Equals(System.Object) parent: System.Object @@ -2845,36 +2625,28 @@ references: href: https://learn.microsoft.com/dotnet/api/system.object.tostring - name: ( - name: ) -- uid: OpenTK.Core.Platform - commentId: N:OpenTK.Core.Platform +- uid: OpenTK.Platform + commentId: N:OpenTK.Platform href: OpenTK.html - name: OpenTK.Core.Platform - nameWithType: OpenTK.Core.Platform - fullName: OpenTK.Core.Platform + name: OpenTK.Platform + nameWithType: OpenTK.Platform + fullName: OpenTK.Platform spec.csharp: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html spec.vb: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html - uid: System commentId: N:System isExternal: true @@ -2916,46 +2688,46 @@ references: name: Name nameWithType: WindowComponent.Name fullName: OpenTK.Platform.Native.Windows.WindowComponent.Name -- uid: OpenTK.Core.Platform.IPalComponent.Name - commentId: P:OpenTK.Core.Platform.IPalComponent.Name - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Name +- uid: OpenTK.Platform.IPalComponent.Name + commentId: P:OpenTK.Platform.IPalComponent.Name + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Name name: Name nameWithType: IPalComponent.Name - fullName: OpenTK.Core.Platform.IPalComponent.Name + fullName: OpenTK.Platform.IPalComponent.Name - uid: OpenTK.Platform.Native.Windows.WindowComponent.Provides* commentId: Overload:OpenTK.Platform.Native.Windows.WindowComponent.Provides href: OpenTK.Platform.Native.Windows.WindowComponent.html#OpenTK_Platform_Native_Windows_WindowComponent_Provides name: Provides nameWithType: WindowComponent.Provides fullName: OpenTK.Platform.Native.Windows.WindowComponent.Provides -- uid: OpenTK.Core.Platform.IPalComponent.Provides - commentId: P:OpenTK.Core.Platform.IPalComponent.Provides - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Provides +- uid: OpenTK.Platform.IPalComponent.Provides + commentId: P:OpenTK.Platform.IPalComponent.Provides + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Provides name: Provides nameWithType: IPalComponent.Provides - fullName: OpenTK.Core.Platform.IPalComponent.Provides -- uid: OpenTK.Core.Platform.PalComponents - commentId: T:OpenTK.Core.Platform.PalComponents - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.PalComponents.html + fullName: OpenTK.Platform.IPalComponent.Provides +- uid: OpenTK.Platform.PalComponents + commentId: T:OpenTK.Platform.PalComponents + parent: OpenTK.Platform + href: OpenTK.Platform.PalComponents.html name: PalComponents nameWithType: PalComponents - fullName: OpenTK.Core.Platform.PalComponents + fullName: OpenTK.Platform.PalComponents - uid: OpenTK.Platform.Native.Windows.WindowComponent.Logger* commentId: Overload:OpenTK.Platform.Native.Windows.WindowComponent.Logger href: OpenTK.Platform.Native.Windows.WindowComponent.html#OpenTK_Platform_Native_Windows_WindowComponent_Logger name: Logger nameWithType: WindowComponent.Logger fullName: OpenTK.Platform.Native.Windows.WindowComponent.Logger -- uid: OpenTK.Core.Platform.IPalComponent.Logger - commentId: P:OpenTK.Core.Platform.IPalComponent.Logger - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Logger +- uid: OpenTK.Platform.IPalComponent.Logger + commentId: P:OpenTK.Platform.IPalComponent.Logger + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Logger name: Logger nameWithType: IPalComponent.Logger - fullName: OpenTK.Core.Platform.IPalComponent.Logger + fullName: OpenTK.Platform.IPalComponent.Logger - uid: OpenTK.Core.Utility.ILogger commentId: T:OpenTK.Core.Utility.ILogger parent: OpenTK.Core.Utility @@ -2995,55 +2767,90 @@ references: href: OpenTK.Core.Utility.html - uid: OpenTK.Platform.Native.Windows.WindowComponent.Initialize* commentId: Overload:OpenTK.Platform.Native.Windows.WindowComponent.Initialize - href: OpenTK.Platform.Native.Windows.WindowComponent.html#OpenTK_Platform_Native_Windows_WindowComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + href: OpenTK.Platform.Native.Windows.WindowComponent.html#OpenTK_Platform_Native_Windows_WindowComponent_Initialize_OpenTK_Platform_ToolkitOptions_ name: Initialize nameWithType: WindowComponent.Initialize fullName: OpenTK.Platform.Native.Windows.WindowComponent.Initialize -- uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - commentId: M:OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ +- uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ name: Initialize(ToolkitOptions) nameWithType: IPalComponent.Initialize(ToolkitOptions) - fullName: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + fullName: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) spec.csharp: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + - uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.ToolkitOptions + - uid: OpenTK.Platform.ToolkitOptions name: ToolkitOptions - href: OpenTK.Core.Platform.ToolkitOptions.html + href: OpenTK.Platform.ToolkitOptions.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + - uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.ToolkitOptions + - uid: OpenTK.Platform.ToolkitOptions name: ToolkitOptions - href: OpenTK.Core.Platform.ToolkitOptions.html + href: OpenTK.Platform.ToolkitOptions.html - name: ) -- uid: OpenTK.Core.Platform.ToolkitOptions - commentId: T:OpenTK.Core.Platform.ToolkitOptions - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.ToolkitOptions.html +- uid: OpenTK.Platform.ToolkitOptions + commentId: T:OpenTK.Platform.ToolkitOptions + parent: OpenTK.Platform + href: OpenTK.Platform.ToolkitOptions.html name: ToolkitOptions nameWithType: ToolkitOptions - fullName: OpenTK.Core.Platform.ToolkitOptions + fullName: OpenTK.Platform.ToolkitOptions +- uid: OpenTK.Platform.IWindowComponent.SetIcon(OpenTK.Platform.WindowHandle,OpenTK.Platform.IconHandle) + commentId: M:OpenTK.Platform.IWindowComponent.SetIcon(OpenTK.Platform.WindowHandle,OpenTK.Platform.IconHandle) + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetIcon_OpenTK_Platform_WindowHandle_OpenTK_Platform_IconHandle_ + name: SetIcon(WindowHandle, IconHandle) + nameWithType: IWindowComponent.SetIcon(WindowHandle, IconHandle) + fullName: OpenTK.Platform.IWindowComponent.SetIcon(OpenTK.Platform.WindowHandle, OpenTK.Platform.IconHandle) + spec.csharp: + - uid: OpenTK.Platform.IWindowComponent.SetIcon(OpenTK.Platform.WindowHandle,OpenTK.Platform.IconHandle) + name: SetIcon + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetIcon_OpenTK_Platform_WindowHandle_OpenTK_Platform_IconHandle_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: OpenTK.Platform.IconHandle + name: IconHandle + href: OpenTK.Platform.IconHandle.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IWindowComponent.SetIcon(OpenTK.Platform.WindowHandle,OpenTK.Platform.IconHandle) + name: SetIcon + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetIcon_OpenTK_Platform_WindowHandle_OpenTK_Platform_IconHandle_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: OpenTK.Platform.IconHandle + name: IconHandle + href: OpenTK.Platform.IconHandle.html + - name: ) - uid: OpenTK.Platform.Native.Windows.WindowComponent.CanSetIcon* commentId: Overload:OpenTK.Platform.Native.Windows.WindowComponent.CanSetIcon href: OpenTK.Platform.Native.Windows.WindowComponent.html#OpenTK_Platform_Native_Windows_WindowComponent_CanSetIcon name: CanSetIcon nameWithType: WindowComponent.CanSetIcon fullName: OpenTK.Platform.Native.Windows.WindowComponent.CanSetIcon -- uid: OpenTK.Core.Platform.IWindowComponent.CanSetIcon - commentId: P:OpenTK.Core.Platform.IWindowComponent.CanSetIcon - parent: OpenTK.Core.Platform.IWindowComponent - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_CanSetIcon +- uid: OpenTK.Platform.IWindowComponent.CanSetIcon + commentId: P:OpenTK.Platform.IWindowComponent.CanSetIcon + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_CanSetIcon name: CanSetIcon nameWithType: IWindowComponent.CanSetIcon - fullName: OpenTK.Core.Platform.IWindowComponent.CanSetIcon + fullName: OpenTK.Platform.IWindowComponent.CanSetIcon - uid: System.Boolean commentId: T:System.Boolean parent: System @@ -3055,68 +2862,163 @@ references: nameWithType.vb: Boolean fullName.vb: Boolean name.vb: Boolean +- uid: OpenTK.Platform.IWindowComponent.GetDisplay(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.GetDisplay(OpenTK.Platform.WindowHandle) + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetDisplay_OpenTK_Platform_WindowHandle_ + name: GetDisplay(WindowHandle) + nameWithType: IWindowComponent.GetDisplay(WindowHandle) + fullName: OpenTK.Platform.IWindowComponent.GetDisplay(OpenTK.Platform.WindowHandle) + spec.csharp: + - uid: OpenTK.Platform.IWindowComponent.GetDisplay(OpenTK.Platform.WindowHandle) + name: GetDisplay + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetDisplay_OpenTK_Platform_WindowHandle_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IWindowComponent.GetDisplay(OpenTK.Platform.WindowHandle) + name: GetDisplay + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetDisplay_OpenTK_Platform_WindowHandle_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ) - uid: OpenTK.Platform.Native.Windows.WindowComponent.CanGetDisplay* commentId: Overload:OpenTK.Platform.Native.Windows.WindowComponent.CanGetDisplay href: OpenTK.Platform.Native.Windows.WindowComponent.html#OpenTK_Platform_Native_Windows_WindowComponent_CanGetDisplay name: CanGetDisplay nameWithType: WindowComponent.CanGetDisplay fullName: OpenTK.Platform.Native.Windows.WindowComponent.CanGetDisplay -- uid: OpenTK.Core.Platform.IWindowComponent.CanGetDisplay - commentId: P:OpenTK.Core.Platform.IWindowComponent.CanGetDisplay - parent: OpenTK.Core.Platform.IWindowComponent - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_CanGetDisplay +- uid: OpenTK.Platform.IWindowComponent.CanGetDisplay + commentId: P:OpenTK.Platform.IWindowComponent.CanGetDisplay + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_CanGetDisplay name: CanGetDisplay nameWithType: IWindowComponent.CanGetDisplay - fullName: OpenTK.Core.Platform.IWindowComponent.CanGetDisplay + fullName: OpenTK.Platform.IWindowComponent.CanGetDisplay +- uid: OpenTK.Platform.IWindowComponent.SetCursor(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorHandle) + commentId: M:OpenTK.Platform.IWindowComponent.SetCursor(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorHandle) + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetCursor_OpenTK_Platform_WindowHandle_OpenTK_Platform_CursorHandle_ + name: SetCursor(WindowHandle, CursorHandle) + nameWithType: IWindowComponent.SetCursor(WindowHandle, CursorHandle) + fullName: OpenTK.Platform.IWindowComponent.SetCursor(OpenTK.Platform.WindowHandle, OpenTK.Platform.CursorHandle) + spec.csharp: + - uid: OpenTK.Platform.IWindowComponent.SetCursor(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorHandle) + name: SetCursor + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetCursor_OpenTK_Platform_WindowHandle_OpenTK_Platform_CursorHandle_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: OpenTK.Platform.CursorHandle + name: CursorHandle + href: OpenTK.Platform.CursorHandle.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IWindowComponent.SetCursor(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorHandle) + name: SetCursor + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetCursor_OpenTK_Platform_WindowHandle_OpenTK_Platform_CursorHandle_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: OpenTK.Platform.CursorHandle + name: CursorHandle + href: OpenTK.Platform.CursorHandle.html + - name: ) - uid: OpenTK.Platform.Native.Windows.WindowComponent.CanSetCursor* commentId: Overload:OpenTK.Platform.Native.Windows.WindowComponent.CanSetCursor href: OpenTK.Platform.Native.Windows.WindowComponent.html#OpenTK_Platform_Native_Windows_WindowComponent_CanSetCursor name: CanSetCursor nameWithType: WindowComponent.CanSetCursor fullName: OpenTK.Platform.Native.Windows.WindowComponent.CanSetCursor -- uid: OpenTK.Core.Platform.IWindowComponent.CanSetCursor - commentId: P:OpenTK.Core.Platform.IWindowComponent.CanSetCursor - parent: OpenTK.Core.Platform.IWindowComponent - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_CanSetCursor +- uid: OpenTK.Platform.IWindowComponent.CanSetCursor + commentId: P:OpenTK.Platform.IWindowComponent.CanSetCursor + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_CanSetCursor name: CanSetCursor nameWithType: IWindowComponent.CanSetCursor - fullName: OpenTK.Core.Platform.IWindowComponent.CanSetCursor + fullName: OpenTK.Platform.IWindowComponent.CanSetCursor +- uid: OpenTK.Platform.IWindowComponent.SetCursorCaptureMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorCaptureMode) + commentId: M:OpenTK.Platform.IWindowComponent.SetCursorCaptureMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorCaptureMode) + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetCursorCaptureMode_OpenTK_Platform_WindowHandle_OpenTK_Platform_CursorCaptureMode_ + name: SetCursorCaptureMode(WindowHandle, CursorCaptureMode) + nameWithType: IWindowComponent.SetCursorCaptureMode(WindowHandle, CursorCaptureMode) + fullName: OpenTK.Platform.IWindowComponent.SetCursorCaptureMode(OpenTK.Platform.WindowHandle, OpenTK.Platform.CursorCaptureMode) + spec.csharp: + - uid: OpenTK.Platform.IWindowComponent.SetCursorCaptureMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorCaptureMode) + name: SetCursorCaptureMode + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetCursorCaptureMode_OpenTK_Platform_WindowHandle_OpenTK_Platform_CursorCaptureMode_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: OpenTK.Platform.CursorCaptureMode + name: CursorCaptureMode + href: OpenTK.Platform.CursorCaptureMode.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IWindowComponent.SetCursorCaptureMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorCaptureMode) + name: SetCursorCaptureMode + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetCursorCaptureMode_OpenTK_Platform_WindowHandle_OpenTK_Platform_CursorCaptureMode_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: OpenTK.Platform.CursorCaptureMode + name: CursorCaptureMode + href: OpenTK.Platform.CursorCaptureMode.html + - name: ) - uid: OpenTK.Platform.Native.Windows.WindowComponent.CanCaptureCursor* commentId: Overload:OpenTK.Platform.Native.Windows.WindowComponent.CanCaptureCursor href: OpenTK.Platform.Native.Windows.WindowComponent.html#OpenTK_Platform_Native_Windows_WindowComponent_CanCaptureCursor name: CanCaptureCursor nameWithType: WindowComponent.CanCaptureCursor fullName: OpenTK.Platform.Native.Windows.WindowComponent.CanCaptureCursor -- uid: OpenTK.Core.Platform.IWindowComponent.CanCaptureCursor - commentId: P:OpenTK.Core.Platform.IWindowComponent.CanCaptureCursor - parent: OpenTK.Core.Platform.IWindowComponent - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_CanCaptureCursor +- uid: OpenTK.Platform.IWindowComponent.CanCaptureCursor + commentId: P:OpenTK.Platform.IWindowComponent.CanCaptureCursor + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_CanCaptureCursor name: CanCaptureCursor nameWithType: IWindowComponent.CanCaptureCursor - fullName: OpenTK.Core.Platform.IWindowComponent.CanCaptureCursor + fullName: OpenTK.Platform.IWindowComponent.CanCaptureCursor - uid: OpenTK.Platform.Native.Windows.WindowComponent.SupportedEvents* commentId: Overload:OpenTK.Platform.Native.Windows.WindowComponent.SupportedEvents href: OpenTK.Platform.Native.Windows.WindowComponent.html#OpenTK_Platform_Native_Windows_WindowComponent_SupportedEvents name: SupportedEvents nameWithType: WindowComponent.SupportedEvents fullName: OpenTK.Platform.Native.Windows.WindowComponent.SupportedEvents -- uid: OpenTK.Core.Platform.IWindowComponent.SupportedEvents - commentId: P:OpenTK.Core.Platform.IWindowComponent.SupportedEvents - parent: OpenTK.Core.Platform.IWindowComponent - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SupportedEvents +- uid: OpenTK.Platform.IWindowComponent.SupportedEvents + commentId: P:OpenTK.Platform.IWindowComponent.SupportedEvents + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SupportedEvents name: SupportedEvents nameWithType: IWindowComponent.SupportedEvents - fullName: OpenTK.Core.Platform.IWindowComponent.SupportedEvents -- uid: System.Collections.Generic.IReadOnlyList{OpenTK.Core.Platform.PlatformEventType} - commentId: T:System.Collections.Generic.IReadOnlyList{OpenTK.Core.Platform.PlatformEventType} + fullName: OpenTK.Platform.IWindowComponent.SupportedEvents +- uid: System.Collections.Generic.IReadOnlyList{OpenTK.Platform.PlatformEventType} + commentId: T:System.Collections.Generic.IReadOnlyList{OpenTK.Platform.PlatformEventType} parent: System.Collections.Generic definition: System.Collections.Generic.IReadOnlyList`1 href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 name: IReadOnlyList nameWithType: IReadOnlyList - fullName: System.Collections.Generic.IReadOnlyList + fullName: System.Collections.Generic.IReadOnlyList nameWithType.vb: IReadOnlyList(Of PlatformEventType) - fullName.vb: System.Collections.Generic.IReadOnlyList(Of OpenTK.Core.Platform.PlatformEventType) + fullName.vb: System.Collections.Generic.IReadOnlyList(Of OpenTK.Platform.PlatformEventType) name.vb: IReadOnlyList(Of PlatformEventType) spec.csharp: - uid: System.Collections.Generic.IReadOnlyList`1 @@ -3124,9 +3026,9 @@ references: isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 - name: < - - uid: OpenTK.Core.Platform.PlatformEventType + - uid: OpenTK.Platform.PlatformEventType name: PlatformEventType - href: OpenTK.Core.Platform.PlatformEventType.html + href: OpenTK.Platform.PlatformEventType.html - name: '>' spec.vb: - uid: System.Collections.Generic.IReadOnlyList`1 @@ -3136,9 +3038,9 @@ references: - name: ( - name: Of - name: " " - - uid: OpenTK.Core.Platform.PlatformEventType + - uid: OpenTK.Platform.PlatformEventType name: PlatformEventType - href: OpenTK.Core.Platform.PlatformEventType.html + href: OpenTK.Platform.PlatformEventType.html - name: ) - uid: System.Collections.Generic.IReadOnlyList`1 commentId: T:System.Collections.Generic.IReadOnlyList`1 @@ -3211,23 +3113,23 @@ references: name: SupportedStyles nameWithType: WindowComponent.SupportedStyles fullName: OpenTK.Platform.Native.Windows.WindowComponent.SupportedStyles -- uid: OpenTK.Core.Platform.IWindowComponent.SupportedStyles - commentId: P:OpenTK.Core.Platform.IWindowComponent.SupportedStyles - parent: OpenTK.Core.Platform.IWindowComponent - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SupportedStyles +- uid: OpenTK.Platform.IWindowComponent.SupportedStyles + commentId: P:OpenTK.Platform.IWindowComponent.SupportedStyles + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SupportedStyles name: SupportedStyles nameWithType: IWindowComponent.SupportedStyles - fullName: OpenTK.Core.Platform.IWindowComponent.SupportedStyles -- uid: System.Collections.Generic.IReadOnlyList{OpenTK.Core.Platform.WindowBorderStyle} - commentId: T:System.Collections.Generic.IReadOnlyList{OpenTK.Core.Platform.WindowBorderStyle} + fullName: OpenTK.Platform.IWindowComponent.SupportedStyles +- uid: System.Collections.Generic.IReadOnlyList{OpenTK.Platform.WindowBorderStyle} + commentId: T:System.Collections.Generic.IReadOnlyList{OpenTK.Platform.WindowBorderStyle} parent: System.Collections.Generic definition: System.Collections.Generic.IReadOnlyList`1 href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 name: IReadOnlyList nameWithType: IReadOnlyList - fullName: System.Collections.Generic.IReadOnlyList + fullName: System.Collections.Generic.IReadOnlyList nameWithType.vb: IReadOnlyList(Of WindowBorderStyle) - fullName.vb: System.Collections.Generic.IReadOnlyList(Of OpenTK.Core.Platform.WindowBorderStyle) + fullName.vb: System.Collections.Generic.IReadOnlyList(Of OpenTK.Platform.WindowBorderStyle) name.vb: IReadOnlyList(Of WindowBorderStyle) spec.csharp: - uid: System.Collections.Generic.IReadOnlyList`1 @@ -3235,9 +3137,9 @@ references: isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 - name: < - - uid: OpenTK.Core.Platform.WindowBorderStyle + - uid: OpenTK.Platform.WindowBorderStyle name: WindowBorderStyle - href: OpenTK.Core.Platform.WindowBorderStyle.html + href: OpenTK.Platform.WindowBorderStyle.html - name: '>' spec.vb: - uid: System.Collections.Generic.IReadOnlyList`1 @@ -3247,9 +3149,9 @@ references: - name: ( - name: Of - name: " " - - uid: OpenTK.Core.Platform.WindowBorderStyle + - uid: OpenTK.Platform.WindowBorderStyle name: WindowBorderStyle - href: OpenTK.Core.Platform.WindowBorderStyle.html + href: OpenTK.Platform.WindowBorderStyle.html - name: ) - uid: OpenTK.Platform.Native.Windows.WindowComponent.SupportedModes* commentId: Overload:OpenTK.Platform.Native.Windows.WindowComponent.SupportedModes @@ -3257,23 +3159,23 @@ references: name: SupportedModes nameWithType: WindowComponent.SupportedModes fullName: OpenTK.Platform.Native.Windows.WindowComponent.SupportedModes -- uid: OpenTK.Core.Platform.IWindowComponent.SupportedModes - commentId: P:OpenTK.Core.Platform.IWindowComponent.SupportedModes - parent: OpenTK.Core.Platform.IWindowComponent - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SupportedModes +- uid: OpenTK.Platform.IWindowComponent.SupportedModes + commentId: P:OpenTK.Platform.IWindowComponent.SupportedModes + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SupportedModes name: SupportedModes nameWithType: IWindowComponent.SupportedModes - fullName: OpenTK.Core.Platform.IWindowComponent.SupportedModes -- uid: System.Collections.Generic.IReadOnlyList{OpenTK.Core.Platform.WindowMode} - commentId: T:System.Collections.Generic.IReadOnlyList{OpenTK.Core.Platform.WindowMode} + fullName: OpenTK.Platform.IWindowComponent.SupportedModes +- uid: System.Collections.Generic.IReadOnlyList{OpenTK.Platform.WindowMode} + commentId: T:System.Collections.Generic.IReadOnlyList{OpenTK.Platform.WindowMode} parent: System.Collections.Generic definition: System.Collections.Generic.IReadOnlyList`1 href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 name: IReadOnlyList nameWithType: IReadOnlyList - fullName: System.Collections.Generic.IReadOnlyList + fullName: System.Collections.Generic.IReadOnlyList nameWithType.vb: IReadOnlyList(Of WindowMode) - fullName.vb: System.Collections.Generic.IReadOnlyList(Of OpenTK.Core.Platform.WindowMode) + fullName.vb: System.Collections.Generic.IReadOnlyList(Of OpenTK.Platform.WindowMode) name.vb: IReadOnlyList(Of WindowMode) spec.csharp: - uid: System.Collections.Generic.IReadOnlyList`1 @@ -3281,9 +3183,9 @@ references: isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 - name: < - - uid: OpenTK.Core.Platform.WindowMode + - uid: OpenTK.Platform.WindowMode name: WindowMode - href: OpenTK.Core.Platform.WindowMode.html + href: OpenTK.Platform.WindowMode.html - name: '>' spec.vb: - uid: System.Collections.Generic.IReadOnlyList`1 @@ -3293,38 +3195,38 @@ references: - name: ( - name: Of - name: " " - - uid: OpenTK.Core.Platform.WindowMode + - uid: OpenTK.Platform.WindowMode name: WindowMode - href: OpenTK.Core.Platform.WindowMode.html + href: OpenTK.Platform.WindowMode.html - name: ) -- uid: OpenTK.Core.Platform.EventQueue - commentId: T:OpenTK.Core.Platform.EventQueue - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.EventQueue.html +- uid: OpenTK.Platform.EventQueue + commentId: T:OpenTK.Platform.EventQueue + parent: OpenTK.Platform + href: OpenTK.Platform.EventQueue.html name: EventQueue nameWithType: EventQueue - fullName: OpenTK.Core.Platform.EventQueue + fullName: OpenTK.Platform.EventQueue - uid: OpenTK.Platform.Native.Windows.WindowComponent.ProcessEvents* commentId: Overload:OpenTK.Platform.Native.Windows.WindowComponent.ProcessEvents href: OpenTK.Platform.Native.Windows.WindowComponent.html#OpenTK_Platform_Native_Windows_WindowComponent_ProcessEvents_System_Boolean_ name: ProcessEvents nameWithType: WindowComponent.ProcessEvents fullName: OpenTK.Platform.Native.Windows.WindowComponent.ProcessEvents -- uid: OpenTK.Core.Platform.IWindowComponent.ProcessEvents(System.Boolean) - commentId: M:OpenTK.Core.Platform.IWindowComponent.ProcessEvents(System.Boolean) - parent: OpenTK.Core.Platform.IWindowComponent +- uid: OpenTK.Platform.IWindowComponent.ProcessEvents(System.Boolean) + commentId: M:OpenTK.Platform.IWindowComponent.ProcessEvents(System.Boolean) + parent: OpenTK.Platform.IWindowComponent isExternal: true - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_ProcessEvents_System_Boolean_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_ProcessEvents_System_Boolean_ name: ProcessEvents(bool) nameWithType: IWindowComponent.ProcessEvents(bool) - fullName: OpenTK.Core.Platform.IWindowComponent.ProcessEvents(bool) + fullName: OpenTK.Platform.IWindowComponent.ProcessEvents(bool) nameWithType.vb: IWindowComponent.ProcessEvents(Boolean) - fullName.vb: OpenTK.Core.Platform.IWindowComponent.ProcessEvents(Boolean) + fullName.vb: OpenTK.Platform.IWindowComponent.ProcessEvents(Boolean) name.vb: ProcessEvents(Boolean) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.ProcessEvents(System.Boolean) + - uid: OpenTK.Platform.IWindowComponent.ProcessEvents(System.Boolean) name: ProcessEvents - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_ProcessEvents_System_Boolean_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_ProcessEvents_System_Boolean_ - name: ( - uid: System.Boolean name: bool @@ -3332,9 +3234,9 @@ references: href: https://learn.microsoft.com/dotnet/api/system.boolean - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.ProcessEvents(System.Boolean) + - uid: OpenTK.Platform.IWindowComponent.ProcessEvents(System.Boolean) name: ProcessEvents - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_ProcessEvents_System_Boolean_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_ProcessEvents_System_Boolean_ - name: ( - uid: System.Boolean name: Boolean @@ -3343,49 +3245,74 @@ references: - name: ) - uid: OpenTK.Platform.Native.Windows.WindowComponent.Create* commentId: Overload:OpenTK.Platform.Native.Windows.WindowComponent.Create - href: OpenTK.Platform.Native.Windows.WindowComponent.html#OpenTK_Platform_Native_Windows_WindowComponent_Create_OpenTK_Core_Platform_GraphicsApiHints_ + href: OpenTK.Platform.Native.Windows.WindowComponent.html#OpenTK_Platform_Native_Windows_WindowComponent_Create_OpenTK_Platform_GraphicsApiHints_ name: Create nameWithType: WindowComponent.Create fullName: OpenTK.Platform.Native.Windows.WindowComponent.Create -- uid: OpenTK.Core.Platform.IWindowComponent.Create(OpenTK.Core.Platform.GraphicsApiHints) - commentId: M:OpenTK.Core.Platform.IWindowComponent.Create(OpenTK.Core.Platform.GraphicsApiHints) - parent: OpenTK.Core.Platform.IWindowComponent - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_Create_OpenTK_Core_Platform_GraphicsApiHints_ +- uid: OpenTK.Platform.IWindowComponent.Create(OpenTK.Platform.GraphicsApiHints) + commentId: M:OpenTK.Platform.IWindowComponent.Create(OpenTK.Platform.GraphicsApiHints) + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_Create_OpenTK_Platform_GraphicsApiHints_ name: Create(GraphicsApiHints) nameWithType: IWindowComponent.Create(GraphicsApiHints) - fullName: OpenTK.Core.Platform.IWindowComponent.Create(OpenTK.Core.Platform.GraphicsApiHints) + fullName: OpenTK.Platform.IWindowComponent.Create(OpenTK.Platform.GraphicsApiHints) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.Create(OpenTK.Core.Platform.GraphicsApiHints) + - uid: OpenTK.Platform.IWindowComponent.Create(OpenTK.Platform.GraphicsApiHints) name: Create - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_Create_OpenTK_Core_Platform_GraphicsApiHints_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_Create_OpenTK_Platform_GraphicsApiHints_ - name: ( - - uid: OpenTK.Core.Platform.GraphicsApiHints + - uid: OpenTK.Platform.GraphicsApiHints name: GraphicsApiHints - href: OpenTK.Core.Platform.GraphicsApiHints.html + href: OpenTK.Platform.GraphicsApiHints.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.Create(OpenTK.Core.Platform.GraphicsApiHints) + - uid: OpenTK.Platform.IWindowComponent.Create(OpenTK.Platform.GraphicsApiHints) name: Create - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_Create_OpenTK_Core_Platform_GraphicsApiHints_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_Create_OpenTK_Platform_GraphicsApiHints_ - name: ( - - uid: OpenTK.Core.Platform.GraphicsApiHints + - uid: OpenTK.Platform.GraphicsApiHints name: GraphicsApiHints - href: OpenTK.Core.Platform.GraphicsApiHints.html + href: OpenTK.Platform.GraphicsApiHints.html - name: ) -- uid: OpenTK.Core.Platform.GraphicsApiHints - commentId: T:OpenTK.Core.Platform.GraphicsApiHints - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.GraphicsApiHints.html +- uid: OpenTK.Platform.GraphicsApiHints + commentId: T:OpenTK.Platform.GraphicsApiHints + parent: OpenTK.Platform + href: OpenTK.Platform.GraphicsApiHints.html name: GraphicsApiHints nameWithType: GraphicsApiHints - fullName: OpenTK.Core.Platform.GraphicsApiHints -- uid: OpenTK.Core.Platform.WindowHandle - commentId: T:OpenTK.Core.Platform.WindowHandle - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.WindowHandle.html + fullName: OpenTK.Platform.GraphicsApiHints +- uid: OpenTK.Platform.WindowHandle + commentId: T:OpenTK.Platform.WindowHandle + parent: OpenTK.Platform + href: OpenTK.Platform.WindowHandle.html name: WindowHandle nameWithType: WindowHandle - fullName: OpenTK.Core.Platform.WindowHandle + fullName: OpenTK.Platform.WindowHandle +- uid: OpenTK.Platform.IWindowComponent.IsWindowDestroyed(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.IsWindowDestroyed(OpenTK.Platform.WindowHandle) + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_IsWindowDestroyed_OpenTK_Platform_WindowHandle_ + name: IsWindowDestroyed(WindowHandle) + nameWithType: IWindowComponent.IsWindowDestroyed(WindowHandle) + fullName: OpenTK.Platform.IWindowComponent.IsWindowDestroyed(OpenTK.Platform.WindowHandle) + spec.csharp: + - uid: OpenTK.Platform.IWindowComponent.IsWindowDestroyed(OpenTK.Platform.WindowHandle) + name: IsWindowDestroyed + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_IsWindowDestroyed_OpenTK_Platform_WindowHandle_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IWindowComponent.IsWindowDestroyed(OpenTK.Platform.WindowHandle) + name: IsWindowDestroyed + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_IsWindowDestroyed_OpenTK_Platform_WindowHandle_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ) - uid: System.ArgumentNullException commentId: T:System.ArgumentNullException isExternal: true @@ -3395,122 +3322,97 @@ references: fullName: System.ArgumentNullException - uid: OpenTK.Platform.Native.Windows.WindowComponent.Destroy* commentId: Overload:OpenTK.Platform.Native.Windows.WindowComponent.Destroy - href: OpenTK.Platform.Native.Windows.WindowComponent.html#OpenTK_Platform_Native_Windows_WindowComponent_Destroy_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.Native.Windows.WindowComponent.html#OpenTK_Platform_Native_Windows_WindowComponent_Destroy_OpenTK_Platform_WindowHandle_ name: Destroy nameWithType: WindowComponent.Destroy fullName: OpenTK.Platform.Native.Windows.WindowComponent.Destroy -- uid: OpenTK.Core.Platform.IWindowComponent.Destroy(OpenTK.Core.Platform.WindowHandle) - commentId: M:OpenTK.Core.Platform.IWindowComponent.Destroy(OpenTK.Core.Platform.WindowHandle) - parent: OpenTK.Core.Platform.IWindowComponent - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_Destroy_OpenTK_Core_Platform_WindowHandle_ +- uid: OpenTK.Platform.IWindowComponent.Destroy(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.Destroy(OpenTK.Platform.WindowHandle) + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_Destroy_OpenTK_Platform_WindowHandle_ name: Destroy(WindowHandle) nameWithType: IWindowComponent.Destroy(WindowHandle) - fullName: OpenTK.Core.Platform.IWindowComponent.Destroy(OpenTK.Core.Platform.WindowHandle) + fullName: OpenTK.Platform.IWindowComponent.Destroy(OpenTK.Platform.WindowHandle) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.Destroy(OpenTK.Core.Platform.WindowHandle) + - uid: OpenTK.Platform.IWindowComponent.Destroy(OpenTK.Platform.WindowHandle) name: Destroy - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_Destroy_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_Destroy_OpenTK_Platform_WindowHandle_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.Destroy(OpenTK.Core.Platform.WindowHandle) + - uid: OpenTK.Platform.IWindowComponent.Destroy(OpenTK.Platform.WindowHandle) name: Destroy - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_Destroy_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_Destroy_OpenTK_Platform_WindowHandle_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ) - uid: OpenTK.Platform.Native.Windows.WindowComponent.IsWindowDestroyed* commentId: Overload:OpenTK.Platform.Native.Windows.WindowComponent.IsWindowDestroyed - href: OpenTK.Platform.Native.Windows.WindowComponent.html#OpenTK_Platform_Native_Windows_WindowComponent_IsWindowDestroyed_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.Native.Windows.WindowComponent.html#OpenTK_Platform_Native_Windows_WindowComponent_IsWindowDestroyed_OpenTK_Platform_WindowHandle_ name: IsWindowDestroyed nameWithType: WindowComponent.IsWindowDestroyed fullName: OpenTK.Platform.Native.Windows.WindowComponent.IsWindowDestroyed -- uid: OpenTK.Core.Platform.IWindowComponent.IsWindowDestroyed(OpenTK.Core.Platform.WindowHandle) - commentId: M:OpenTK.Core.Platform.IWindowComponent.IsWindowDestroyed(OpenTK.Core.Platform.WindowHandle) - parent: OpenTK.Core.Platform.IWindowComponent - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_IsWindowDestroyed_OpenTK_Core_Platform_WindowHandle_ - name: IsWindowDestroyed(WindowHandle) - nameWithType: IWindowComponent.IsWindowDestroyed(WindowHandle) - fullName: OpenTK.Core.Platform.IWindowComponent.IsWindowDestroyed(OpenTK.Core.Platform.WindowHandle) - spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.IsWindowDestroyed(OpenTK.Core.Platform.WindowHandle) - name: IsWindowDestroyed - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_IsWindowDestroyed_OpenTK_Core_Platform_WindowHandle_ - - name: ( - - uid: OpenTK.Core.Platform.WindowHandle - name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html - - name: ) - spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.IsWindowDestroyed(OpenTK.Core.Platform.WindowHandle) - name: IsWindowDestroyed - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_IsWindowDestroyed_OpenTK_Core_Platform_WindowHandle_ - - name: ( - - uid: OpenTK.Core.Platform.WindowHandle - name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html - - name: ) - uid: OpenTK.Platform.Native.Windows.WindowComponent.GetTitle* commentId: Overload:OpenTK.Platform.Native.Windows.WindowComponent.GetTitle - href: OpenTK.Platform.Native.Windows.WindowComponent.html#OpenTK_Platform_Native_Windows_WindowComponent_GetTitle_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.Native.Windows.WindowComponent.html#OpenTK_Platform_Native_Windows_WindowComponent_GetTitle_OpenTK_Platform_WindowHandle_ name: GetTitle nameWithType: WindowComponent.GetTitle fullName: OpenTK.Platform.Native.Windows.WindowComponent.GetTitle -- uid: OpenTK.Core.Platform.IWindowComponent.GetTitle(OpenTK.Core.Platform.WindowHandle) - commentId: M:OpenTK.Core.Platform.IWindowComponent.GetTitle(OpenTK.Core.Platform.WindowHandle) - parent: OpenTK.Core.Platform.IWindowComponent - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetTitle_OpenTK_Core_Platform_WindowHandle_ +- uid: OpenTK.Platform.IWindowComponent.GetTitle(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.GetTitle(OpenTK.Platform.WindowHandle) + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetTitle_OpenTK_Platform_WindowHandle_ name: GetTitle(WindowHandle) nameWithType: IWindowComponent.GetTitle(WindowHandle) - fullName: OpenTK.Core.Platform.IWindowComponent.GetTitle(OpenTK.Core.Platform.WindowHandle) + fullName: OpenTK.Platform.IWindowComponent.GetTitle(OpenTK.Platform.WindowHandle) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.GetTitle(OpenTK.Core.Platform.WindowHandle) + - uid: OpenTK.Platform.IWindowComponent.GetTitle(OpenTK.Platform.WindowHandle) name: GetTitle - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetTitle_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetTitle_OpenTK_Platform_WindowHandle_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.GetTitle(OpenTK.Core.Platform.WindowHandle) + - uid: OpenTK.Platform.IWindowComponent.GetTitle(OpenTK.Platform.WindowHandle) name: GetTitle - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetTitle_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetTitle_OpenTK_Platform_WindowHandle_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ) - uid: OpenTK.Platform.Native.Windows.WindowComponent.SetTitle* commentId: Overload:OpenTK.Platform.Native.Windows.WindowComponent.SetTitle - href: OpenTK.Platform.Native.Windows.WindowComponent.html#OpenTK_Platform_Native_Windows_WindowComponent_SetTitle_OpenTK_Core_Platform_WindowHandle_System_String_ + href: OpenTK.Platform.Native.Windows.WindowComponent.html#OpenTK_Platform_Native_Windows_WindowComponent_SetTitle_OpenTK_Platform_WindowHandle_System_String_ name: SetTitle nameWithType: WindowComponent.SetTitle fullName: OpenTK.Platform.Native.Windows.WindowComponent.SetTitle -- uid: OpenTK.Core.Platform.IWindowComponent.SetTitle(OpenTK.Core.Platform.WindowHandle,System.String) - commentId: M:OpenTK.Core.Platform.IWindowComponent.SetTitle(OpenTK.Core.Platform.WindowHandle,System.String) - parent: OpenTK.Core.Platform.IWindowComponent +- uid: OpenTK.Platform.IWindowComponent.SetTitle(OpenTK.Platform.WindowHandle,System.String) + commentId: M:OpenTK.Platform.IWindowComponent.SetTitle(OpenTK.Platform.WindowHandle,System.String) + parent: OpenTK.Platform.IWindowComponent isExternal: true - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetTitle_OpenTK_Core_Platform_WindowHandle_System_String_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetTitle_OpenTK_Platform_WindowHandle_System_String_ name: SetTitle(WindowHandle, string) nameWithType: IWindowComponent.SetTitle(WindowHandle, string) - fullName: OpenTK.Core.Platform.IWindowComponent.SetTitle(OpenTK.Core.Platform.WindowHandle, string) + fullName: OpenTK.Platform.IWindowComponent.SetTitle(OpenTK.Platform.WindowHandle, string) nameWithType.vb: IWindowComponent.SetTitle(WindowHandle, String) - fullName.vb: OpenTK.Core.Platform.IWindowComponent.SetTitle(OpenTK.Core.Platform.WindowHandle, String) + fullName.vb: OpenTK.Platform.IWindowComponent.SetTitle(OpenTK.Platform.WindowHandle, String) name.vb: SetTitle(WindowHandle, String) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.SetTitle(OpenTK.Core.Platform.WindowHandle,System.String) + - uid: OpenTK.Platform.IWindowComponent.SetTitle(OpenTK.Platform.WindowHandle,System.String) name: SetTitle - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetTitle_OpenTK_Core_Platform_WindowHandle_System_String_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetTitle_OpenTK_Platform_WindowHandle_System_String_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - uid: System.String @@ -3519,13 +3421,13 @@ references: href: https://learn.microsoft.com/dotnet/api/system.string - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.SetTitle(OpenTK.Core.Platform.WindowHandle,System.String) + - uid: OpenTK.Platform.IWindowComponent.SetTitle(OpenTK.Platform.WindowHandle,System.String) name: SetTitle - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetTitle_OpenTK_Core_Platform_WindowHandle_System_String_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetTitle_OpenTK_Platform_WindowHandle_System_String_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - uid: System.String @@ -3533,116 +3435,81 @@ references: isExternal: true href: https://learn.microsoft.com/dotnet/api/system.string - name: ) -- uid: OpenTK.Core.Platform.PalNotImplementedException - commentId: T:OpenTK.Core.Platform.PalNotImplementedException - href: OpenTK.Core.Platform.PalNotImplementedException.html +- uid: OpenTK.Platform.PalNotImplementedException + commentId: T:OpenTK.Platform.PalNotImplementedException + href: OpenTK.Platform.PalNotImplementedException.html name: PalNotImplementedException nameWithType: PalNotImplementedException - fullName: OpenTK.Core.Platform.PalNotImplementedException + fullName: OpenTK.Platform.PalNotImplementedException - uid: OpenTK.Platform.Native.Windows.WindowComponent.GetIcon* commentId: Overload:OpenTK.Platform.Native.Windows.WindowComponent.GetIcon - href: OpenTK.Platform.Native.Windows.WindowComponent.html#OpenTK_Platform_Native_Windows_WindowComponent_GetIcon_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.Native.Windows.WindowComponent.html#OpenTK_Platform_Native_Windows_WindowComponent_GetIcon_OpenTK_Platform_WindowHandle_ name: GetIcon nameWithType: WindowComponent.GetIcon fullName: OpenTK.Platform.Native.Windows.WindowComponent.GetIcon -- uid: OpenTK.Core.Platform.IWindowComponent.GetIcon(OpenTK.Core.Platform.WindowHandle) - commentId: M:OpenTK.Core.Platform.IWindowComponent.GetIcon(OpenTK.Core.Platform.WindowHandle) - parent: OpenTK.Core.Platform.IWindowComponent - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetIcon_OpenTK_Core_Platform_WindowHandle_ +- uid: OpenTK.Platform.IWindowComponent.GetIcon(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.GetIcon(OpenTK.Platform.WindowHandle) + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetIcon_OpenTK_Platform_WindowHandle_ name: GetIcon(WindowHandle) nameWithType: IWindowComponent.GetIcon(WindowHandle) - fullName: OpenTK.Core.Platform.IWindowComponent.GetIcon(OpenTK.Core.Platform.WindowHandle) + fullName: OpenTK.Platform.IWindowComponent.GetIcon(OpenTK.Platform.WindowHandle) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.GetIcon(OpenTK.Core.Platform.WindowHandle) + - uid: OpenTK.Platform.IWindowComponent.GetIcon(OpenTK.Platform.WindowHandle) name: GetIcon - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetIcon_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetIcon_OpenTK_Platform_WindowHandle_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.GetIcon(OpenTK.Core.Platform.WindowHandle) + - uid: OpenTK.Platform.IWindowComponent.GetIcon(OpenTK.Platform.WindowHandle) name: GetIcon - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetIcon_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetIcon_OpenTK_Platform_WindowHandle_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ) -- uid: OpenTK.Core.Platform.IconHandle - commentId: T:OpenTK.Core.Platform.IconHandle - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.IconHandle.html +- uid: OpenTK.Platform.IconHandle + commentId: T:OpenTK.Platform.IconHandle + parent: OpenTK.Platform + href: OpenTK.Platform.IconHandle.html name: IconHandle nameWithType: IconHandle - fullName: OpenTK.Core.Platform.IconHandle + fullName: OpenTK.Platform.IconHandle - uid: OpenTK.Platform.Native.Windows.WindowComponent.SetIcon* commentId: Overload:OpenTK.Platform.Native.Windows.WindowComponent.SetIcon - href: OpenTK.Platform.Native.Windows.WindowComponent.html#OpenTK_Platform_Native_Windows_WindowComponent_SetIcon_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_IconHandle_ + href: OpenTK.Platform.Native.Windows.WindowComponent.html#OpenTK_Platform_Native_Windows_WindowComponent_SetIcon_OpenTK_Platform_WindowHandle_OpenTK_Platform_IconHandle_ name: SetIcon nameWithType: WindowComponent.SetIcon fullName: OpenTK.Platform.Native.Windows.WindowComponent.SetIcon -- uid: OpenTK.Core.Platform.IWindowComponent.SetIcon(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.IconHandle) - commentId: M:OpenTK.Core.Platform.IWindowComponent.SetIcon(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.IconHandle) - parent: OpenTK.Core.Platform.IWindowComponent - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetIcon_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_IconHandle_ - name: SetIcon(WindowHandle, IconHandle) - nameWithType: IWindowComponent.SetIcon(WindowHandle, IconHandle) - fullName: OpenTK.Core.Platform.IWindowComponent.SetIcon(OpenTK.Core.Platform.WindowHandle, OpenTK.Core.Platform.IconHandle) - spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.SetIcon(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.IconHandle) - name: SetIcon - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetIcon_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_IconHandle_ - - name: ( - - uid: OpenTK.Core.Platform.WindowHandle - name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html - - name: ',' - - name: " " - - uid: OpenTK.Core.Platform.IconHandle - name: IconHandle - href: OpenTK.Core.Platform.IconHandle.html - - name: ) - spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.SetIcon(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.IconHandle) - name: SetIcon - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetIcon_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_IconHandle_ - - name: ( - - uid: OpenTK.Core.Platform.WindowHandle - name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html - - name: ',' - - name: " " - - uid: OpenTK.Core.Platform.IconHandle - name: IconHandle - href: OpenTK.Core.Platform.IconHandle.html - - name: ) - uid: OpenTK.Platform.Native.Windows.WindowComponent.GetPosition* commentId: Overload:OpenTK.Platform.Native.Windows.WindowComponent.GetPosition - href: OpenTK.Platform.Native.Windows.WindowComponent.html#OpenTK_Platform_Native_Windows_WindowComponent_GetPosition_OpenTK_Core_Platform_WindowHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.Native.Windows.WindowComponent.html#OpenTK_Platform_Native_Windows_WindowComponent_GetPosition_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ name: GetPosition nameWithType: WindowComponent.GetPosition fullName: OpenTK.Platform.Native.Windows.WindowComponent.GetPosition -- uid: OpenTK.Core.Platform.IWindowComponent.GetPosition(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) - commentId: M:OpenTK.Core.Platform.IWindowComponent.GetPosition(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) - parent: OpenTK.Core.Platform.IWindowComponent +- uid: OpenTK.Platform.IWindowComponent.GetPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + commentId: M:OpenTK.Platform.IWindowComponent.GetPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + parent: OpenTK.Platform.IWindowComponent isExternal: true - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetPosition_OpenTK_Core_Platform_WindowHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetPosition_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ name: GetPosition(WindowHandle, out int, out int) nameWithType: IWindowComponent.GetPosition(WindowHandle, out int, out int) - fullName: OpenTK.Core.Platform.IWindowComponent.GetPosition(OpenTK.Core.Platform.WindowHandle, out int, out int) + fullName: OpenTK.Platform.IWindowComponent.GetPosition(OpenTK.Platform.WindowHandle, out int, out int) nameWithType.vb: IWindowComponent.GetPosition(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Core.Platform.IWindowComponent.GetPosition(OpenTK.Core.Platform.WindowHandle, Integer, Integer) + fullName.vb: OpenTK.Platform.IWindowComponent.GetPosition(OpenTK.Platform.WindowHandle, Integer, Integer) name.vb: GetPosition(WindowHandle, Integer, Integer) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.GetPosition(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) + - uid: OpenTK.Platform.IWindowComponent.GetPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) name: GetPosition - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetPosition_OpenTK_Core_Platform_WindowHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetPosition_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - name: out @@ -3661,13 +3528,13 @@ references: href: https://learn.microsoft.com/dotnet/api/system.int32 - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.GetPosition(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) + - uid: OpenTK.Platform.IWindowComponent.GetPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) name: GetPosition - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetPosition_OpenTK_Core_Platform_WindowHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetPosition_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - uid: System.Int32 @@ -3694,29 +3561,29 @@ references: name.vb: Integer - uid: OpenTK.Platform.Native.Windows.WindowComponent.SetPosition* commentId: Overload:OpenTK.Platform.Native.Windows.WindowComponent.SetPosition - href: OpenTK.Platform.Native.Windows.WindowComponent.html#OpenTK_Platform_Native_Windows_WindowComponent_SetPosition_OpenTK_Core_Platform_WindowHandle_System_Int32_System_Int32_ + href: OpenTK.Platform.Native.Windows.WindowComponent.html#OpenTK_Platform_Native_Windows_WindowComponent_SetPosition_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_ name: SetPosition nameWithType: WindowComponent.SetPosition fullName: OpenTK.Platform.Native.Windows.WindowComponent.SetPosition -- uid: OpenTK.Core.Platform.IWindowComponent.SetPosition(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) - commentId: M:OpenTK.Core.Platform.IWindowComponent.SetPosition(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) - parent: OpenTK.Core.Platform.IWindowComponent +- uid: OpenTK.Platform.IWindowComponent.SetPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) + commentId: M:OpenTK.Platform.IWindowComponent.SetPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) + parent: OpenTK.Platform.IWindowComponent isExternal: true - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetPosition_OpenTK_Core_Platform_WindowHandle_System_Int32_System_Int32_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetPosition_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_ name: SetPosition(WindowHandle, int, int) nameWithType: IWindowComponent.SetPosition(WindowHandle, int, int) - fullName: OpenTK.Core.Platform.IWindowComponent.SetPosition(OpenTK.Core.Platform.WindowHandle, int, int) + fullName: OpenTK.Platform.IWindowComponent.SetPosition(OpenTK.Platform.WindowHandle, int, int) nameWithType.vb: IWindowComponent.SetPosition(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Core.Platform.IWindowComponent.SetPosition(OpenTK.Core.Platform.WindowHandle, Integer, Integer) + fullName.vb: OpenTK.Platform.IWindowComponent.SetPosition(OpenTK.Platform.WindowHandle, Integer, Integer) name.vb: SetPosition(WindowHandle, Integer, Integer) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.SetPosition(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) + - uid: OpenTK.Platform.IWindowComponent.SetPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) name: SetPosition - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetPosition_OpenTK_Core_Platform_WindowHandle_System_Int32_System_Int32_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetPosition_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - uid: System.Int32 @@ -3731,13 +3598,13 @@ references: href: https://learn.microsoft.com/dotnet/api/system.int32 - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.SetPosition(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) + - uid: OpenTK.Platform.IWindowComponent.SetPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) name: SetPosition - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetPosition_OpenTK_Core_Platform_WindowHandle_System_Int32_System_Int32_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetPosition_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - uid: System.Int32 @@ -3753,29 +3620,29 @@ references: - name: ) - uid: OpenTK.Platform.Native.Windows.WindowComponent.GetSize* commentId: Overload:OpenTK.Platform.Native.Windows.WindowComponent.GetSize - href: OpenTK.Platform.Native.Windows.WindowComponent.html#OpenTK_Platform_Native_Windows_WindowComponent_GetSize_OpenTK_Core_Platform_WindowHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.Native.Windows.WindowComponent.html#OpenTK_Platform_Native_Windows_WindowComponent_GetSize_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ name: GetSize nameWithType: WindowComponent.GetSize fullName: OpenTK.Platform.Native.Windows.WindowComponent.GetSize -- uid: OpenTK.Core.Platform.IWindowComponent.GetSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) - commentId: M:OpenTK.Core.Platform.IWindowComponent.GetSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) - parent: OpenTK.Core.Platform.IWindowComponent +- uid: OpenTK.Platform.IWindowComponent.GetSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + commentId: M:OpenTK.Platform.IWindowComponent.GetSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + parent: OpenTK.Platform.IWindowComponent isExternal: true - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetSize_OpenTK_Core_Platform_WindowHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetSize_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ name: GetSize(WindowHandle, out int, out int) nameWithType: IWindowComponent.GetSize(WindowHandle, out int, out int) - fullName: OpenTK.Core.Platform.IWindowComponent.GetSize(OpenTK.Core.Platform.WindowHandle, out int, out int) + fullName: OpenTK.Platform.IWindowComponent.GetSize(OpenTK.Platform.WindowHandle, out int, out int) nameWithType.vb: IWindowComponent.GetSize(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Core.Platform.IWindowComponent.GetSize(OpenTK.Core.Platform.WindowHandle, Integer, Integer) + fullName.vb: OpenTK.Platform.IWindowComponent.GetSize(OpenTK.Platform.WindowHandle, Integer, Integer) name.vb: GetSize(WindowHandle, Integer, Integer) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.GetSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) + - uid: OpenTK.Platform.IWindowComponent.GetSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) name: GetSize - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetSize_OpenTK_Core_Platform_WindowHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetSize_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - name: out @@ -3794,13 +3661,13 @@ references: href: https://learn.microsoft.com/dotnet/api/system.int32 - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.GetSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) + - uid: OpenTK.Platform.IWindowComponent.GetSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) name: GetSize - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetSize_OpenTK_Core_Platform_WindowHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetSize_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - uid: System.Int32 @@ -3816,29 +3683,29 @@ references: - name: ) - uid: OpenTK.Platform.Native.Windows.WindowComponent.SetSize* commentId: Overload:OpenTK.Platform.Native.Windows.WindowComponent.SetSize - href: OpenTK.Platform.Native.Windows.WindowComponent.html#OpenTK_Platform_Native_Windows_WindowComponent_SetSize_OpenTK_Core_Platform_WindowHandle_System_Int32_System_Int32_ + href: OpenTK.Platform.Native.Windows.WindowComponent.html#OpenTK_Platform_Native_Windows_WindowComponent_SetSize_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_ name: SetSize nameWithType: WindowComponent.SetSize fullName: OpenTK.Platform.Native.Windows.WindowComponent.SetSize -- uid: OpenTK.Core.Platform.IWindowComponent.SetSize(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) - commentId: M:OpenTK.Core.Platform.IWindowComponent.SetSize(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) - parent: OpenTK.Core.Platform.IWindowComponent +- uid: OpenTK.Platform.IWindowComponent.SetSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) + commentId: M:OpenTK.Platform.IWindowComponent.SetSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) + parent: OpenTK.Platform.IWindowComponent isExternal: true - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetSize_OpenTK_Core_Platform_WindowHandle_System_Int32_System_Int32_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetSize_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_ name: SetSize(WindowHandle, int, int) nameWithType: IWindowComponent.SetSize(WindowHandle, int, int) - fullName: OpenTK.Core.Platform.IWindowComponent.SetSize(OpenTK.Core.Platform.WindowHandle, int, int) + fullName: OpenTK.Platform.IWindowComponent.SetSize(OpenTK.Platform.WindowHandle, int, int) nameWithType.vb: IWindowComponent.SetSize(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Core.Platform.IWindowComponent.SetSize(OpenTK.Core.Platform.WindowHandle, Integer, Integer) + fullName.vb: OpenTK.Platform.IWindowComponent.SetSize(OpenTK.Platform.WindowHandle, Integer, Integer) name.vb: SetSize(WindowHandle, Integer, Integer) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.SetSize(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) + - uid: OpenTK.Platform.IWindowComponent.SetSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) name: SetSize - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetSize_OpenTK_Core_Platform_WindowHandle_System_Int32_System_Int32_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetSize_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - uid: System.Int32 @@ -3853,13 +3720,13 @@ references: href: https://learn.microsoft.com/dotnet/api/system.int32 - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.SetSize(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) + - uid: OpenTK.Platform.IWindowComponent.SetSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) name: SetSize - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetSize_OpenTK_Core_Platform_WindowHandle_System_Int32_System_Int32_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetSize_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - uid: System.Int32 @@ -3875,29 +3742,29 @@ references: - name: ) - uid: OpenTK.Platform.Native.Windows.WindowComponent.GetBounds* commentId: Overload:OpenTK.Platform.Native.Windows.WindowComponent.GetBounds - href: OpenTK.Platform.Native.Windows.WindowComponent.html#OpenTK_Platform_Native_Windows_WindowComponent_GetBounds_OpenTK_Core_Platform_WindowHandle_System_Int32__System_Int32__System_Int32__System_Int32__ + href: OpenTK.Platform.Native.Windows.WindowComponent.html#OpenTK_Platform_Native_Windows_WindowComponent_GetBounds_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__System_Int32__System_Int32__ name: GetBounds nameWithType: WindowComponent.GetBounds fullName: OpenTK.Platform.Native.Windows.WindowComponent.GetBounds -- uid: OpenTK.Core.Platform.IWindowComponent.GetBounds(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) - commentId: M:OpenTK.Core.Platform.IWindowComponent.GetBounds(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) - parent: OpenTK.Core.Platform.IWindowComponent +- uid: OpenTK.Platform.IWindowComponent.GetBounds(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) + commentId: M:OpenTK.Platform.IWindowComponent.GetBounds(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) + parent: OpenTK.Platform.IWindowComponent isExternal: true - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetBounds_OpenTK_Core_Platform_WindowHandle_System_Int32__System_Int32__System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetBounds_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__System_Int32__System_Int32__ name: GetBounds(WindowHandle, out int, out int, out int, out int) nameWithType: IWindowComponent.GetBounds(WindowHandle, out int, out int, out int, out int) - fullName: OpenTK.Core.Platform.IWindowComponent.GetBounds(OpenTK.Core.Platform.WindowHandle, out int, out int, out int, out int) + fullName: OpenTK.Platform.IWindowComponent.GetBounds(OpenTK.Platform.WindowHandle, out int, out int, out int, out int) nameWithType.vb: IWindowComponent.GetBounds(WindowHandle, Integer, Integer, Integer, Integer) - fullName.vb: OpenTK.Core.Platform.IWindowComponent.GetBounds(OpenTK.Core.Platform.WindowHandle, Integer, Integer, Integer, Integer) + fullName.vb: OpenTK.Platform.IWindowComponent.GetBounds(OpenTK.Platform.WindowHandle, Integer, Integer, Integer, Integer) name.vb: GetBounds(WindowHandle, Integer, Integer, Integer, Integer) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.GetBounds(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) + - uid: OpenTK.Platform.IWindowComponent.GetBounds(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) name: GetBounds - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetBounds_OpenTK_Core_Platform_WindowHandle_System_Int32__System_Int32__System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetBounds_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__System_Int32__System_Int32__ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - name: out @@ -3932,13 +3799,13 @@ references: href: https://learn.microsoft.com/dotnet/api/system.int32 - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.GetBounds(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) + - uid: OpenTK.Platform.IWindowComponent.GetBounds(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) name: GetBounds - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetBounds_OpenTK_Core_Platform_WindowHandle_System_Int32__System_Int32__System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetBounds_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__System_Int32__System_Int32__ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - uid: System.Int32 @@ -3966,29 +3833,29 @@ references: - name: ) - uid: OpenTK.Platform.Native.Windows.WindowComponent.SetBounds* commentId: Overload:OpenTK.Platform.Native.Windows.WindowComponent.SetBounds - href: OpenTK.Platform.Native.Windows.WindowComponent.html#OpenTK_Platform_Native_Windows_WindowComponent_SetBounds_OpenTK_Core_Platform_WindowHandle_System_Int32_System_Int32_System_Int32_System_Int32_ + href: OpenTK.Platform.Native.Windows.WindowComponent.html#OpenTK_Platform_Native_Windows_WindowComponent_SetBounds_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_System_Int32_System_Int32_ name: SetBounds nameWithType: WindowComponent.SetBounds fullName: OpenTK.Platform.Native.Windows.WindowComponent.SetBounds -- uid: OpenTK.Core.Platform.IWindowComponent.SetBounds(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) - commentId: M:OpenTK.Core.Platform.IWindowComponent.SetBounds(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) - parent: OpenTK.Core.Platform.IWindowComponent +- uid: OpenTK.Platform.IWindowComponent.SetBounds(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) + commentId: M:OpenTK.Platform.IWindowComponent.SetBounds(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) + parent: OpenTK.Platform.IWindowComponent isExternal: true - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetBounds_OpenTK_Core_Platform_WindowHandle_System_Int32_System_Int32_System_Int32_System_Int32_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetBounds_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_System_Int32_System_Int32_ name: SetBounds(WindowHandle, int, int, int, int) nameWithType: IWindowComponent.SetBounds(WindowHandle, int, int, int, int) - fullName: OpenTK.Core.Platform.IWindowComponent.SetBounds(OpenTK.Core.Platform.WindowHandle, int, int, int, int) + fullName: OpenTK.Platform.IWindowComponent.SetBounds(OpenTK.Platform.WindowHandle, int, int, int, int) nameWithType.vb: IWindowComponent.SetBounds(WindowHandle, Integer, Integer, Integer, Integer) - fullName.vb: OpenTK.Core.Platform.IWindowComponent.SetBounds(OpenTK.Core.Platform.WindowHandle, Integer, Integer, Integer, Integer) + fullName.vb: OpenTK.Platform.IWindowComponent.SetBounds(OpenTK.Platform.WindowHandle, Integer, Integer, Integer, Integer) name.vb: SetBounds(WindowHandle, Integer, Integer, Integer, Integer) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.SetBounds(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) + - uid: OpenTK.Platform.IWindowComponent.SetBounds(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) name: SetBounds - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetBounds_OpenTK_Core_Platform_WindowHandle_System_Int32_System_Int32_System_Int32_System_Int32_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetBounds_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_System_Int32_System_Int32_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - uid: System.Int32 @@ -4015,13 +3882,13 @@ references: href: https://learn.microsoft.com/dotnet/api/system.int32 - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.SetBounds(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) + - uid: OpenTK.Platform.IWindowComponent.SetBounds(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) name: SetBounds - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetBounds_OpenTK_Core_Platform_WindowHandle_System_Int32_System_Int32_System_Int32_System_Int32_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetBounds_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_System_Int32_System_Int32_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - uid: System.Int32 @@ -4049,29 +3916,29 @@ references: - name: ) - uid: OpenTK.Platform.Native.Windows.WindowComponent.GetClientPosition* commentId: Overload:OpenTK.Platform.Native.Windows.WindowComponent.GetClientPosition - href: OpenTK.Platform.Native.Windows.WindowComponent.html#OpenTK_Platform_Native_Windows_WindowComponent_GetClientPosition_OpenTK_Core_Platform_WindowHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.Native.Windows.WindowComponent.html#OpenTK_Platform_Native_Windows_WindowComponent_GetClientPosition_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ name: GetClientPosition nameWithType: WindowComponent.GetClientPosition fullName: OpenTK.Platform.Native.Windows.WindowComponent.GetClientPosition -- uid: OpenTK.Core.Platform.IWindowComponent.GetClientPosition(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) - commentId: M:OpenTK.Core.Platform.IWindowComponent.GetClientPosition(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) - parent: OpenTK.Core.Platform.IWindowComponent +- uid: OpenTK.Platform.IWindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + commentId: M:OpenTK.Platform.IWindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + parent: OpenTK.Platform.IWindowComponent isExternal: true - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetClientPosition_OpenTK_Core_Platform_WindowHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetClientPosition_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ name: GetClientPosition(WindowHandle, out int, out int) nameWithType: IWindowComponent.GetClientPosition(WindowHandle, out int, out int) - fullName: OpenTK.Core.Platform.IWindowComponent.GetClientPosition(OpenTK.Core.Platform.WindowHandle, out int, out int) + fullName: OpenTK.Platform.IWindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle, out int, out int) nameWithType.vb: IWindowComponent.GetClientPosition(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Core.Platform.IWindowComponent.GetClientPosition(OpenTK.Core.Platform.WindowHandle, Integer, Integer) + fullName.vb: OpenTK.Platform.IWindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle, Integer, Integer) name.vb: GetClientPosition(WindowHandle, Integer, Integer) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.GetClientPosition(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) + - uid: OpenTK.Platform.IWindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) name: GetClientPosition - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetClientPosition_OpenTK_Core_Platform_WindowHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetClientPosition_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - name: out @@ -4090,13 +3957,13 @@ references: href: https://learn.microsoft.com/dotnet/api/system.int32 - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.GetClientPosition(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) + - uid: OpenTK.Platform.IWindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) name: GetClientPosition - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetClientPosition_OpenTK_Core_Platform_WindowHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetClientPosition_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - uid: System.Int32 @@ -4112,29 +3979,29 @@ references: - name: ) - uid: OpenTK.Platform.Native.Windows.WindowComponent.SetClientPosition* commentId: Overload:OpenTK.Platform.Native.Windows.WindowComponent.SetClientPosition - href: OpenTK.Platform.Native.Windows.WindowComponent.html#OpenTK_Platform_Native_Windows_WindowComponent_SetClientPosition_OpenTK_Core_Platform_WindowHandle_System_Int32_System_Int32_ + href: OpenTK.Platform.Native.Windows.WindowComponent.html#OpenTK_Platform_Native_Windows_WindowComponent_SetClientPosition_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_ name: SetClientPosition nameWithType: WindowComponent.SetClientPosition fullName: OpenTK.Platform.Native.Windows.WindowComponent.SetClientPosition -- uid: OpenTK.Core.Platform.IWindowComponent.SetClientPosition(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) - commentId: M:OpenTK.Core.Platform.IWindowComponent.SetClientPosition(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) - parent: OpenTK.Core.Platform.IWindowComponent +- uid: OpenTK.Platform.IWindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) + commentId: M:OpenTK.Platform.IWindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) + parent: OpenTK.Platform.IWindowComponent isExternal: true - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetClientPosition_OpenTK_Core_Platform_WindowHandle_System_Int32_System_Int32_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetClientPosition_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_ name: SetClientPosition(WindowHandle, int, int) nameWithType: IWindowComponent.SetClientPosition(WindowHandle, int, int) - fullName: OpenTK.Core.Platform.IWindowComponent.SetClientPosition(OpenTK.Core.Platform.WindowHandle, int, int) + fullName: OpenTK.Platform.IWindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle, int, int) nameWithType.vb: IWindowComponent.SetClientPosition(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Core.Platform.IWindowComponent.SetClientPosition(OpenTK.Core.Platform.WindowHandle, Integer, Integer) + fullName.vb: OpenTK.Platform.IWindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle, Integer, Integer) name.vb: SetClientPosition(WindowHandle, Integer, Integer) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.SetClientPosition(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) + - uid: OpenTK.Platform.IWindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) name: SetClientPosition - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetClientPosition_OpenTK_Core_Platform_WindowHandle_System_Int32_System_Int32_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetClientPosition_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - uid: System.Int32 @@ -4149,13 +4016,13 @@ references: href: https://learn.microsoft.com/dotnet/api/system.int32 - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.SetClientPosition(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) + - uid: OpenTK.Platform.IWindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) name: SetClientPosition - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetClientPosition_OpenTK_Core_Platform_WindowHandle_System_Int32_System_Int32_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetClientPosition_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - uid: System.Int32 @@ -4171,29 +4038,29 @@ references: - name: ) - uid: OpenTK.Platform.Native.Windows.WindowComponent.GetClientSize* commentId: Overload:OpenTK.Platform.Native.Windows.WindowComponent.GetClientSize - href: OpenTK.Platform.Native.Windows.WindowComponent.html#OpenTK_Platform_Native_Windows_WindowComponent_GetClientSize_OpenTK_Core_Platform_WindowHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.Native.Windows.WindowComponent.html#OpenTK_Platform_Native_Windows_WindowComponent_GetClientSize_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ name: GetClientSize nameWithType: WindowComponent.GetClientSize fullName: OpenTK.Platform.Native.Windows.WindowComponent.GetClientSize -- uid: OpenTK.Core.Platform.IWindowComponent.GetClientSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) - commentId: M:OpenTK.Core.Platform.IWindowComponent.GetClientSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) - parent: OpenTK.Core.Platform.IWindowComponent +- uid: OpenTK.Platform.IWindowComponent.GetClientSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + commentId: M:OpenTK.Platform.IWindowComponent.GetClientSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + parent: OpenTK.Platform.IWindowComponent isExternal: true - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetClientSize_OpenTK_Core_Platform_WindowHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetClientSize_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ name: GetClientSize(WindowHandle, out int, out int) nameWithType: IWindowComponent.GetClientSize(WindowHandle, out int, out int) - fullName: OpenTK.Core.Platform.IWindowComponent.GetClientSize(OpenTK.Core.Platform.WindowHandle, out int, out int) + fullName: OpenTK.Platform.IWindowComponent.GetClientSize(OpenTK.Platform.WindowHandle, out int, out int) nameWithType.vb: IWindowComponent.GetClientSize(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Core.Platform.IWindowComponent.GetClientSize(OpenTK.Core.Platform.WindowHandle, Integer, Integer) + fullName.vb: OpenTK.Platform.IWindowComponent.GetClientSize(OpenTK.Platform.WindowHandle, Integer, Integer) name.vb: GetClientSize(WindowHandle, Integer, Integer) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.GetClientSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) + - uid: OpenTK.Platform.IWindowComponent.GetClientSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) name: GetClientSize - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetClientSize_OpenTK_Core_Platform_WindowHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetClientSize_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - name: out @@ -4212,13 +4079,13 @@ references: href: https://learn.microsoft.com/dotnet/api/system.int32 - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.GetClientSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) + - uid: OpenTK.Platform.IWindowComponent.GetClientSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) name: GetClientSize - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetClientSize_OpenTK_Core_Platform_WindowHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetClientSize_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - uid: System.Int32 @@ -4234,29 +4101,29 @@ references: - name: ) - uid: OpenTK.Platform.Native.Windows.WindowComponent.SetClientSize* commentId: Overload:OpenTK.Platform.Native.Windows.WindowComponent.SetClientSize - href: OpenTK.Platform.Native.Windows.WindowComponent.html#OpenTK_Platform_Native_Windows_WindowComponent_SetClientSize_OpenTK_Core_Platform_WindowHandle_System_Int32_System_Int32_ + href: OpenTK.Platform.Native.Windows.WindowComponent.html#OpenTK_Platform_Native_Windows_WindowComponent_SetClientSize_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_ name: SetClientSize nameWithType: WindowComponent.SetClientSize fullName: OpenTK.Platform.Native.Windows.WindowComponent.SetClientSize -- uid: OpenTK.Core.Platform.IWindowComponent.SetClientSize(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) - commentId: M:OpenTK.Core.Platform.IWindowComponent.SetClientSize(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) - parent: OpenTK.Core.Platform.IWindowComponent +- uid: OpenTK.Platform.IWindowComponent.SetClientSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) + commentId: M:OpenTK.Platform.IWindowComponent.SetClientSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) + parent: OpenTK.Platform.IWindowComponent isExternal: true - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetClientSize_OpenTK_Core_Platform_WindowHandle_System_Int32_System_Int32_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetClientSize_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_ name: SetClientSize(WindowHandle, int, int) nameWithType: IWindowComponent.SetClientSize(WindowHandle, int, int) - fullName: OpenTK.Core.Platform.IWindowComponent.SetClientSize(OpenTK.Core.Platform.WindowHandle, int, int) + fullName: OpenTK.Platform.IWindowComponent.SetClientSize(OpenTK.Platform.WindowHandle, int, int) nameWithType.vb: IWindowComponent.SetClientSize(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Core.Platform.IWindowComponent.SetClientSize(OpenTK.Core.Platform.WindowHandle, Integer, Integer) + fullName.vb: OpenTK.Platform.IWindowComponent.SetClientSize(OpenTK.Platform.WindowHandle, Integer, Integer) name.vb: SetClientSize(WindowHandle, Integer, Integer) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.SetClientSize(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) + - uid: OpenTK.Platform.IWindowComponent.SetClientSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) name: SetClientSize - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetClientSize_OpenTK_Core_Platform_WindowHandle_System_Int32_System_Int32_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetClientSize_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - uid: System.Int32 @@ -4271,13 +4138,13 @@ references: href: https://learn.microsoft.com/dotnet/api/system.int32 - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.SetClientSize(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) + - uid: OpenTK.Platform.IWindowComponent.SetClientSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) name: SetClientSize - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetClientSize_OpenTK_Core_Platform_WindowHandle_System_Int32_System_Int32_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetClientSize_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - uid: System.Int32 @@ -4293,29 +4160,29 @@ references: - name: ) - uid: OpenTK.Platform.Native.Windows.WindowComponent.GetClientBounds* commentId: Overload:OpenTK.Platform.Native.Windows.WindowComponent.GetClientBounds - href: OpenTK.Platform.Native.Windows.WindowComponent.html#OpenTK_Platform_Native_Windows_WindowComponent_GetClientBounds_OpenTK_Core_Platform_WindowHandle_System_Int32__System_Int32__System_Int32__System_Int32__ + href: OpenTK.Platform.Native.Windows.WindowComponent.html#OpenTK_Platform_Native_Windows_WindowComponent_GetClientBounds_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__System_Int32__System_Int32__ name: GetClientBounds nameWithType: WindowComponent.GetClientBounds fullName: OpenTK.Platform.Native.Windows.WindowComponent.GetClientBounds -- uid: OpenTK.Core.Platform.IWindowComponent.GetClientBounds(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) - commentId: M:OpenTK.Core.Platform.IWindowComponent.GetClientBounds(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) - parent: OpenTK.Core.Platform.IWindowComponent +- uid: OpenTK.Platform.IWindowComponent.GetClientBounds(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) + commentId: M:OpenTK.Platform.IWindowComponent.GetClientBounds(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) + parent: OpenTK.Platform.IWindowComponent isExternal: true - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetClientBounds_OpenTK_Core_Platform_WindowHandle_System_Int32__System_Int32__System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetClientBounds_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__System_Int32__System_Int32__ name: GetClientBounds(WindowHandle, out int, out int, out int, out int) nameWithType: IWindowComponent.GetClientBounds(WindowHandle, out int, out int, out int, out int) - fullName: OpenTK.Core.Platform.IWindowComponent.GetClientBounds(OpenTK.Core.Platform.WindowHandle, out int, out int, out int, out int) + fullName: OpenTK.Platform.IWindowComponent.GetClientBounds(OpenTK.Platform.WindowHandle, out int, out int, out int, out int) nameWithType.vb: IWindowComponent.GetClientBounds(WindowHandle, Integer, Integer, Integer, Integer) - fullName.vb: OpenTK.Core.Platform.IWindowComponent.GetClientBounds(OpenTK.Core.Platform.WindowHandle, Integer, Integer, Integer, Integer) + fullName.vb: OpenTK.Platform.IWindowComponent.GetClientBounds(OpenTK.Platform.WindowHandle, Integer, Integer, Integer, Integer) name.vb: GetClientBounds(WindowHandle, Integer, Integer, Integer, Integer) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.GetClientBounds(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) + - uid: OpenTK.Platform.IWindowComponent.GetClientBounds(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) name: GetClientBounds - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetClientBounds_OpenTK_Core_Platform_WindowHandle_System_Int32__System_Int32__System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetClientBounds_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__System_Int32__System_Int32__ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - name: out @@ -4350,13 +4217,13 @@ references: href: https://learn.microsoft.com/dotnet/api/system.int32 - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.GetClientBounds(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) + - uid: OpenTK.Platform.IWindowComponent.GetClientBounds(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) name: GetClientBounds - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetClientBounds_OpenTK_Core_Platform_WindowHandle_System_Int32__System_Int32__System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetClientBounds_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__System_Int32__System_Int32__ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - uid: System.Int32 @@ -4384,29 +4251,29 @@ references: - name: ) - uid: OpenTK.Platform.Native.Windows.WindowComponent.SetClientBounds* commentId: Overload:OpenTK.Platform.Native.Windows.WindowComponent.SetClientBounds - href: OpenTK.Platform.Native.Windows.WindowComponent.html#OpenTK_Platform_Native_Windows_WindowComponent_SetClientBounds_OpenTK_Core_Platform_WindowHandle_System_Int32_System_Int32_System_Int32_System_Int32_ + href: OpenTK.Platform.Native.Windows.WindowComponent.html#OpenTK_Platform_Native_Windows_WindowComponent_SetClientBounds_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_System_Int32_System_Int32_ name: SetClientBounds nameWithType: WindowComponent.SetClientBounds fullName: OpenTK.Platform.Native.Windows.WindowComponent.SetClientBounds -- uid: OpenTK.Core.Platform.IWindowComponent.SetClientBounds(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) - commentId: M:OpenTK.Core.Platform.IWindowComponent.SetClientBounds(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) - parent: OpenTK.Core.Platform.IWindowComponent +- uid: OpenTK.Platform.IWindowComponent.SetClientBounds(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) + commentId: M:OpenTK.Platform.IWindowComponent.SetClientBounds(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) + parent: OpenTK.Platform.IWindowComponent isExternal: true - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetClientBounds_OpenTK_Core_Platform_WindowHandle_System_Int32_System_Int32_System_Int32_System_Int32_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetClientBounds_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_System_Int32_System_Int32_ name: SetClientBounds(WindowHandle, int, int, int, int) nameWithType: IWindowComponent.SetClientBounds(WindowHandle, int, int, int, int) - fullName: OpenTK.Core.Platform.IWindowComponent.SetClientBounds(OpenTK.Core.Platform.WindowHandle, int, int, int, int) + fullName: OpenTK.Platform.IWindowComponent.SetClientBounds(OpenTK.Platform.WindowHandle, int, int, int, int) nameWithType.vb: IWindowComponent.SetClientBounds(WindowHandle, Integer, Integer, Integer, Integer) - fullName.vb: OpenTK.Core.Platform.IWindowComponent.SetClientBounds(OpenTK.Core.Platform.WindowHandle, Integer, Integer, Integer, Integer) + fullName.vb: OpenTK.Platform.IWindowComponent.SetClientBounds(OpenTK.Platform.WindowHandle, Integer, Integer, Integer, Integer) name.vb: SetClientBounds(WindowHandle, Integer, Integer, Integer, Integer) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.SetClientBounds(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) + - uid: OpenTK.Platform.IWindowComponent.SetClientBounds(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) name: SetClientBounds - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetClientBounds_OpenTK_Core_Platform_WindowHandle_System_Int32_System_Int32_System_Int32_System_Int32_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetClientBounds_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_System_Int32_System_Int32_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - uid: System.Int32 @@ -4433,13 +4300,13 @@ references: href: https://learn.microsoft.com/dotnet/api/system.int32 - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.SetClientBounds(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) + - uid: OpenTK.Platform.IWindowComponent.SetClientBounds(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) name: SetClientBounds - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetClientBounds_OpenTK_Core_Platform_WindowHandle_System_Int32_System_Int32_System_Int32_System_Int32_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetClientBounds_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_System_Int32_System_Int32_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - uid: System.Int32 @@ -4467,29 +4334,29 @@ references: - name: ) - uid: OpenTK.Platform.Native.Windows.WindowComponent.GetFramebufferSize* commentId: Overload:OpenTK.Platform.Native.Windows.WindowComponent.GetFramebufferSize - href: OpenTK.Platform.Native.Windows.WindowComponent.html#OpenTK_Platform_Native_Windows_WindowComponent_GetFramebufferSize_OpenTK_Core_Platform_WindowHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.Native.Windows.WindowComponent.html#OpenTK_Platform_Native_Windows_WindowComponent_GetFramebufferSize_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ name: GetFramebufferSize nameWithType: WindowComponent.GetFramebufferSize fullName: OpenTK.Platform.Native.Windows.WindowComponent.GetFramebufferSize -- uid: OpenTK.Core.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) - commentId: M:OpenTK.Core.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) - parent: OpenTK.Core.Platform.IWindowComponent +- uid: OpenTK.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + commentId: M:OpenTK.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + parent: OpenTK.Platform.IWindowComponent isExternal: true - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetFramebufferSize_OpenTK_Core_Platform_WindowHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetFramebufferSize_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ name: GetFramebufferSize(WindowHandle, out int, out int) nameWithType: IWindowComponent.GetFramebufferSize(WindowHandle, out int, out int) - fullName: OpenTK.Core.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Core.Platform.WindowHandle, out int, out int) + fullName: OpenTK.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle, out int, out int) nameWithType.vb: IWindowComponent.GetFramebufferSize(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Core.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Core.Platform.WindowHandle, Integer, Integer) + fullName.vb: OpenTK.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle, Integer, Integer) name.vb: GetFramebufferSize(WindowHandle, Integer, Integer) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) + - uid: OpenTK.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) name: GetFramebufferSize - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetFramebufferSize_OpenTK_Core_Platform_WindowHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetFramebufferSize_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - name: out @@ -4508,13 +4375,13 @@ references: href: https://learn.microsoft.com/dotnet/api/system.int32 - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) + - uid: OpenTK.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) name: GetFramebufferSize - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetFramebufferSize_OpenTK_Core_Platform_WindowHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetFramebufferSize_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - uid: System.Int32 @@ -4530,29 +4397,29 @@ references: - name: ) - uid: OpenTK.Platform.Native.Windows.WindowComponent.GetMaxClientSize* commentId: Overload:OpenTK.Platform.Native.Windows.WindowComponent.GetMaxClientSize - href: OpenTK.Platform.Native.Windows.WindowComponent.html#OpenTK_Platform_Native_Windows_WindowComponent_GetMaxClientSize_OpenTK_Core_Platform_WindowHandle_System_Nullable_System_Int32___System_Nullable_System_Int32___ + href: OpenTK.Platform.Native.Windows.WindowComponent.html#OpenTK_Platform_Native_Windows_WindowComponent_GetMaxClientSize_OpenTK_Platform_WindowHandle_System_Nullable_System_Int32___System_Nullable_System_Int32___ name: GetMaxClientSize nameWithType: WindowComponent.GetMaxClientSize fullName: OpenTK.Platform.Native.Windows.WindowComponent.GetMaxClientSize -- uid: OpenTK.Core.Platform.IWindowComponent.GetMaxClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) - commentId: M:OpenTK.Core.Platform.IWindowComponent.GetMaxClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) - parent: OpenTK.Core.Platform.IWindowComponent +- uid: OpenTK.Platform.IWindowComponent.GetMaxClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) + commentId: M:OpenTK.Platform.IWindowComponent.GetMaxClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) + parent: OpenTK.Platform.IWindowComponent isExternal: true - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetMaxClientSize_OpenTK_Core_Platform_WindowHandle_System_Nullable_System_Int32___System_Nullable_System_Int32___ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetMaxClientSize_OpenTK_Platform_WindowHandle_System_Nullable_System_Int32___System_Nullable_System_Int32___ name: GetMaxClientSize(WindowHandle, out int?, out int?) nameWithType: IWindowComponent.GetMaxClientSize(WindowHandle, out int?, out int?) - fullName: OpenTK.Core.Platform.IWindowComponent.GetMaxClientSize(OpenTK.Core.Platform.WindowHandle, out int?, out int?) + fullName: OpenTK.Platform.IWindowComponent.GetMaxClientSize(OpenTK.Platform.WindowHandle, out int?, out int?) nameWithType.vb: IWindowComponent.GetMaxClientSize(WindowHandle, Integer?, Integer?) - fullName.vb: OpenTK.Core.Platform.IWindowComponent.GetMaxClientSize(OpenTK.Core.Platform.WindowHandle, Integer?, Integer?) + fullName.vb: OpenTK.Platform.IWindowComponent.GetMaxClientSize(OpenTK.Platform.WindowHandle, Integer?, Integer?) name.vb: GetMaxClientSize(WindowHandle, Integer?, Integer?) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.GetMaxClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) + - uid: OpenTK.Platform.IWindowComponent.GetMaxClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) name: GetMaxClientSize - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetMaxClientSize_OpenTK_Core_Platform_WindowHandle_System_Nullable_System_Int32___System_Nullable_System_Int32___ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetMaxClientSize_OpenTK_Platform_WindowHandle_System_Nullable_System_Int32___System_Nullable_System_Int32___ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - name: out @@ -4573,13 +4440,13 @@ references: - name: '?' - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.GetMaxClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) + - uid: OpenTK.Platform.IWindowComponent.GetMaxClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) name: GetMaxClientSize - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetMaxClientSize_OpenTK_Core_Platform_WindowHandle_System_Nullable_System_Int32___System_Nullable_System_Int32___ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetMaxClientSize_OpenTK_Platform_WindowHandle_System_Nullable_System_Int32___System_Nullable_System_Int32___ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - uid: System.Int32 @@ -4648,29 +4515,29 @@ references: - name: ) - uid: OpenTK.Platform.Native.Windows.WindowComponent.SetMaxClientSize* commentId: Overload:OpenTK.Platform.Native.Windows.WindowComponent.SetMaxClientSize - href: OpenTK.Platform.Native.Windows.WindowComponent.html#OpenTK_Platform_Native_Windows_WindowComponent_SetMaxClientSize_OpenTK_Core_Platform_WindowHandle_System_Nullable_System_Int32__System_Nullable_System_Int32__ + href: OpenTK.Platform.Native.Windows.WindowComponent.html#OpenTK_Platform_Native_Windows_WindowComponent_SetMaxClientSize_OpenTK_Platform_WindowHandle_System_Nullable_System_Int32__System_Nullable_System_Int32__ name: SetMaxClientSize nameWithType: WindowComponent.SetMaxClientSize fullName: OpenTK.Platform.Native.Windows.WindowComponent.SetMaxClientSize -- uid: OpenTK.Core.Platform.IWindowComponent.SetMaxClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) - commentId: M:OpenTK.Core.Platform.IWindowComponent.SetMaxClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) - parent: OpenTK.Core.Platform.IWindowComponent +- uid: OpenTK.Platform.IWindowComponent.SetMaxClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) + commentId: M:OpenTK.Platform.IWindowComponent.SetMaxClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) + parent: OpenTK.Platform.IWindowComponent isExternal: true - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetMaxClientSize_OpenTK_Core_Platform_WindowHandle_System_Nullable_System_Int32__System_Nullable_System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetMaxClientSize_OpenTK_Platform_WindowHandle_System_Nullable_System_Int32__System_Nullable_System_Int32__ name: SetMaxClientSize(WindowHandle, int?, int?) nameWithType: IWindowComponent.SetMaxClientSize(WindowHandle, int?, int?) - fullName: OpenTK.Core.Platform.IWindowComponent.SetMaxClientSize(OpenTK.Core.Platform.WindowHandle, int?, int?) + fullName: OpenTK.Platform.IWindowComponent.SetMaxClientSize(OpenTK.Platform.WindowHandle, int?, int?) nameWithType.vb: IWindowComponent.SetMaxClientSize(WindowHandle, Integer?, Integer?) - fullName.vb: OpenTK.Core.Platform.IWindowComponent.SetMaxClientSize(OpenTK.Core.Platform.WindowHandle, Integer?, Integer?) + fullName.vb: OpenTK.Platform.IWindowComponent.SetMaxClientSize(OpenTK.Platform.WindowHandle, Integer?, Integer?) name.vb: SetMaxClientSize(WindowHandle, Integer?, Integer?) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.SetMaxClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) + - uid: OpenTK.Platform.IWindowComponent.SetMaxClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) name: SetMaxClientSize - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetMaxClientSize_OpenTK_Core_Platform_WindowHandle_System_Nullable_System_Int32__System_Nullable_System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetMaxClientSize_OpenTK_Platform_WindowHandle_System_Nullable_System_Int32__System_Nullable_System_Int32__ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - uid: System.Int32 @@ -4687,13 +4554,13 @@ references: - name: '?' - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.SetMaxClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) + - uid: OpenTK.Platform.IWindowComponent.SetMaxClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) name: SetMaxClientSize - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetMaxClientSize_OpenTK_Core_Platform_WindowHandle_System_Nullable_System_Int32__System_Nullable_System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetMaxClientSize_OpenTK_Platform_WindowHandle_System_Nullable_System_Int32__System_Nullable_System_Int32__ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - uid: System.Int32 @@ -4711,29 +4578,29 @@ references: - name: ) - uid: OpenTK.Platform.Native.Windows.WindowComponent.GetMinClientSize* commentId: Overload:OpenTK.Platform.Native.Windows.WindowComponent.GetMinClientSize - href: OpenTK.Platform.Native.Windows.WindowComponent.html#OpenTK_Platform_Native_Windows_WindowComponent_GetMinClientSize_OpenTK_Core_Platform_WindowHandle_System_Nullable_System_Int32___System_Nullable_System_Int32___ + href: OpenTK.Platform.Native.Windows.WindowComponent.html#OpenTK_Platform_Native_Windows_WindowComponent_GetMinClientSize_OpenTK_Platform_WindowHandle_System_Nullable_System_Int32___System_Nullable_System_Int32___ name: GetMinClientSize nameWithType: WindowComponent.GetMinClientSize fullName: OpenTK.Platform.Native.Windows.WindowComponent.GetMinClientSize -- uid: OpenTK.Core.Platform.IWindowComponent.GetMinClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) - commentId: M:OpenTK.Core.Platform.IWindowComponent.GetMinClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) - parent: OpenTK.Core.Platform.IWindowComponent +- uid: OpenTK.Platform.IWindowComponent.GetMinClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) + commentId: M:OpenTK.Platform.IWindowComponent.GetMinClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) + parent: OpenTK.Platform.IWindowComponent isExternal: true - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetMinClientSize_OpenTK_Core_Platform_WindowHandle_System_Nullable_System_Int32___System_Nullable_System_Int32___ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetMinClientSize_OpenTK_Platform_WindowHandle_System_Nullable_System_Int32___System_Nullable_System_Int32___ name: GetMinClientSize(WindowHandle, out int?, out int?) nameWithType: IWindowComponent.GetMinClientSize(WindowHandle, out int?, out int?) - fullName: OpenTK.Core.Platform.IWindowComponent.GetMinClientSize(OpenTK.Core.Platform.WindowHandle, out int?, out int?) + fullName: OpenTK.Platform.IWindowComponent.GetMinClientSize(OpenTK.Platform.WindowHandle, out int?, out int?) nameWithType.vb: IWindowComponent.GetMinClientSize(WindowHandle, Integer?, Integer?) - fullName.vb: OpenTK.Core.Platform.IWindowComponent.GetMinClientSize(OpenTK.Core.Platform.WindowHandle, Integer?, Integer?) + fullName.vb: OpenTK.Platform.IWindowComponent.GetMinClientSize(OpenTK.Platform.WindowHandle, Integer?, Integer?) name.vb: GetMinClientSize(WindowHandle, Integer?, Integer?) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.GetMinClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) + - uid: OpenTK.Platform.IWindowComponent.GetMinClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) name: GetMinClientSize - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetMinClientSize_OpenTK_Core_Platform_WindowHandle_System_Nullable_System_Int32___System_Nullable_System_Int32___ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetMinClientSize_OpenTK_Platform_WindowHandle_System_Nullable_System_Int32___System_Nullable_System_Int32___ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - name: out @@ -4754,13 +4621,13 @@ references: - name: '?' - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.GetMinClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) + - uid: OpenTK.Platform.IWindowComponent.GetMinClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) name: GetMinClientSize - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetMinClientSize_OpenTK_Core_Platform_WindowHandle_System_Nullable_System_Int32___System_Nullable_System_Int32___ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetMinClientSize_OpenTK_Platform_WindowHandle_System_Nullable_System_Int32___System_Nullable_System_Int32___ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - uid: System.Int32 @@ -4778,29 +4645,29 @@ references: - name: ) - uid: OpenTK.Platform.Native.Windows.WindowComponent.SetMinClientSize* commentId: Overload:OpenTK.Platform.Native.Windows.WindowComponent.SetMinClientSize - href: OpenTK.Platform.Native.Windows.WindowComponent.html#OpenTK_Platform_Native_Windows_WindowComponent_SetMinClientSize_OpenTK_Core_Platform_WindowHandle_System_Nullable_System_Int32__System_Nullable_System_Int32__ + href: OpenTK.Platform.Native.Windows.WindowComponent.html#OpenTK_Platform_Native_Windows_WindowComponent_SetMinClientSize_OpenTK_Platform_WindowHandle_System_Nullable_System_Int32__System_Nullable_System_Int32__ name: SetMinClientSize nameWithType: WindowComponent.SetMinClientSize fullName: OpenTK.Platform.Native.Windows.WindowComponent.SetMinClientSize -- uid: OpenTK.Core.Platform.IWindowComponent.SetMinClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) - commentId: M:OpenTK.Core.Platform.IWindowComponent.SetMinClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) - parent: OpenTK.Core.Platform.IWindowComponent +- uid: OpenTK.Platform.IWindowComponent.SetMinClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) + commentId: M:OpenTK.Platform.IWindowComponent.SetMinClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) + parent: OpenTK.Platform.IWindowComponent isExternal: true - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetMinClientSize_OpenTK_Core_Platform_WindowHandle_System_Nullable_System_Int32__System_Nullable_System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetMinClientSize_OpenTK_Platform_WindowHandle_System_Nullable_System_Int32__System_Nullable_System_Int32__ name: SetMinClientSize(WindowHandle, int?, int?) nameWithType: IWindowComponent.SetMinClientSize(WindowHandle, int?, int?) - fullName: OpenTK.Core.Platform.IWindowComponent.SetMinClientSize(OpenTK.Core.Platform.WindowHandle, int?, int?) + fullName: OpenTK.Platform.IWindowComponent.SetMinClientSize(OpenTK.Platform.WindowHandle, int?, int?) nameWithType.vb: IWindowComponent.SetMinClientSize(WindowHandle, Integer?, Integer?) - fullName.vb: OpenTK.Core.Platform.IWindowComponent.SetMinClientSize(OpenTK.Core.Platform.WindowHandle, Integer?, Integer?) + fullName.vb: OpenTK.Platform.IWindowComponent.SetMinClientSize(OpenTK.Platform.WindowHandle, Integer?, Integer?) name.vb: SetMinClientSize(WindowHandle, Integer?, Integer?) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.SetMinClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) + - uid: OpenTK.Platform.IWindowComponent.SetMinClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) name: SetMinClientSize - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetMinClientSize_OpenTK_Core_Platform_WindowHandle_System_Nullable_System_Int32__System_Nullable_System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetMinClientSize_OpenTK_Platform_WindowHandle_System_Nullable_System_Int32__System_Nullable_System_Int32__ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - uid: System.Int32 @@ -4817,13 +4684,13 @@ references: - name: '?' - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.SetMinClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) + - uid: OpenTK.Platform.IWindowComponent.SetMinClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) name: SetMinClientSize - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetMinClientSize_OpenTK_Core_Platform_WindowHandle_System_Nullable_System_Int32__System_Nullable_System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetMinClientSize_OpenTK_Platform_WindowHandle_System_Nullable_System_Int32__System_Nullable_System_Int32__ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - uid: System.Int32 @@ -4841,171 +4708,146 @@ references: - name: ) - uid: OpenTK.Platform.Native.Windows.WindowComponent.GetDisplay* commentId: Overload:OpenTK.Platform.Native.Windows.WindowComponent.GetDisplay - href: OpenTK.Platform.Native.Windows.WindowComponent.html#OpenTK_Platform_Native_Windows_WindowComponent_GetDisplay_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.Native.Windows.WindowComponent.html#OpenTK_Platform_Native_Windows_WindowComponent_GetDisplay_OpenTK_Platform_WindowHandle_ name: GetDisplay nameWithType: WindowComponent.GetDisplay fullName: OpenTK.Platform.Native.Windows.WindowComponent.GetDisplay -- uid: OpenTK.Core.Platform.IWindowComponent.GetDisplay(OpenTK.Core.Platform.WindowHandle) - commentId: M:OpenTK.Core.Platform.IWindowComponent.GetDisplay(OpenTK.Core.Platform.WindowHandle) - parent: OpenTK.Core.Platform.IWindowComponent - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetDisplay_OpenTK_Core_Platform_WindowHandle_ - name: GetDisplay(WindowHandle) - nameWithType: IWindowComponent.GetDisplay(WindowHandle) - fullName: OpenTK.Core.Platform.IWindowComponent.GetDisplay(OpenTK.Core.Platform.WindowHandle) - spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.GetDisplay(OpenTK.Core.Platform.WindowHandle) - name: GetDisplay - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetDisplay_OpenTK_Core_Platform_WindowHandle_ - - name: ( - - uid: OpenTK.Core.Platform.WindowHandle - name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html - - name: ) - spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.GetDisplay(OpenTK.Core.Platform.WindowHandle) - name: GetDisplay - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetDisplay_OpenTK_Core_Platform_WindowHandle_ - - name: ( - - uid: OpenTK.Core.Platform.WindowHandle - name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html - - name: ) -- uid: OpenTK.Core.Platform.DisplayHandle - commentId: T:OpenTK.Core.Platform.DisplayHandle - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.DisplayHandle.html +- uid: OpenTK.Platform.DisplayHandle + commentId: T:OpenTK.Platform.DisplayHandle + parent: OpenTK.Platform + href: OpenTK.Platform.DisplayHandle.html name: DisplayHandle nameWithType: DisplayHandle - fullName: OpenTK.Core.Platform.DisplayHandle + fullName: OpenTK.Platform.DisplayHandle - uid: OpenTK.Platform.Native.Windows.WindowComponent.GetMode* commentId: Overload:OpenTK.Platform.Native.Windows.WindowComponent.GetMode - href: OpenTK.Platform.Native.Windows.WindowComponent.html#OpenTK_Platform_Native_Windows_WindowComponent_GetMode_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.Native.Windows.WindowComponent.html#OpenTK_Platform_Native_Windows_WindowComponent_GetMode_OpenTK_Platform_WindowHandle_ name: GetMode nameWithType: WindowComponent.GetMode fullName: OpenTK.Platform.Native.Windows.WindowComponent.GetMode -- uid: OpenTK.Core.Platform.IWindowComponent.GetMode(OpenTK.Core.Platform.WindowHandle) - commentId: M:OpenTK.Core.Platform.IWindowComponent.GetMode(OpenTK.Core.Platform.WindowHandle) - parent: OpenTK.Core.Platform.IWindowComponent - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetMode_OpenTK_Core_Platform_WindowHandle_ +- uid: OpenTK.Platform.IWindowComponent.GetMode(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.GetMode(OpenTK.Platform.WindowHandle) + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetMode_OpenTK_Platform_WindowHandle_ name: GetMode(WindowHandle) nameWithType: IWindowComponent.GetMode(WindowHandle) - fullName: OpenTK.Core.Platform.IWindowComponent.GetMode(OpenTK.Core.Platform.WindowHandle) + fullName: OpenTK.Platform.IWindowComponent.GetMode(OpenTK.Platform.WindowHandle) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.GetMode(OpenTK.Core.Platform.WindowHandle) + - uid: OpenTK.Platform.IWindowComponent.GetMode(OpenTK.Platform.WindowHandle) name: GetMode - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetMode_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetMode_OpenTK_Platform_WindowHandle_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.GetMode(OpenTK.Core.Platform.WindowHandle) + - uid: OpenTK.Platform.IWindowComponent.GetMode(OpenTK.Platform.WindowHandle) name: GetMode - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetMode_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetMode_OpenTK_Platform_WindowHandle_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ) -- uid: OpenTK.Core.Platform.WindowMode - commentId: T:OpenTK.Core.Platform.WindowMode - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.WindowMode.html +- uid: OpenTK.Platform.WindowMode + commentId: T:OpenTK.Platform.WindowMode + parent: OpenTK.Platform + href: OpenTK.Platform.WindowMode.html name: WindowMode nameWithType: WindowMode - fullName: OpenTK.Core.Platform.WindowMode -- uid: OpenTK.Core.Platform.WindowMode.WindowedFullscreen - commentId: F:OpenTK.Core.Platform.WindowMode.WindowedFullscreen - href: OpenTK.Core.Platform.WindowMode.html#OpenTK_Core_Platform_WindowMode_WindowedFullscreen + fullName: OpenTK.Platform.WindowMode +- uid: OpenTK.Platform.WindowMode.WindowedFullscreen + commentId: F:OpenTK.Platform.WindowMode.WindowedFullscreen + href: OpenTK.Platform.WindowMode.html#OpenTK_Platform_WindowMode_WindowedFullscreen name: WindowedFullscreen nameWithType: WindowMode.WindowedFullscreen - fullName: OpenTK.Core.Platform.WindowMode.WindowedFullscreen -- uid: OpenTK.Core.Platform.WindowMode.ExclusiveFullscreen - commentId: F:OpenTK.Core.Platform.WindowMode.ExclusiveFullscreen - href: OpenTK.Core.Platform.WindowMode.html#OpenTK_Core_Platform_WindowMode_ExclusiveFullscreen + fullName: OpenTK.Platform.WindowMode.WindowedFullscreen +- uid: OpenTK.Platform.WindowMode.ExclusiveFullscreen + commentId: F:OpenTK.Platform.WindowMode.ExclusiveFullscreen + href: OpenTK.Platform.WindowMode.html#OpenTK_Platform_WindowMode_ExclusiveFullscreen name: ExclusiveFullscreen nameWithType: WindowMode.ExclusiveFullscreen - fullName: OpenTK.Core.Platform.WindowMode.ExclusiveFullscreen -- uid: OpenTK.Core.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle) - commentId: M:OpenTK.Core.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle) - parent: OpenTK.Core.Platform.IWindowComponent - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetFullscreenDisplay_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_DisplayHandle_ + fullName: OpenTK.Platform.WindowMode.ExclusiveFullscreen +- uid: OpenTK.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle) + commentId: M:OpenTK.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle) + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetFullscreenDisplay_OpenTK_Platform_WindowHandle_OpenTK_Platform_DisplayHandle_ name: SetFullscreenDisplay(WindowHandle, DisplayHandle) nameWithType: IWindowComponent.SetFullscreenDisplay(WindowHandle, DisplayHandle) - fullName: OpenTK.Core.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle, OpenTK.Core.Platform.DisplayHandle) + fullName: OpenTK.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle, OpenTK.Platform.DisplayHandle) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle) + - uid: OpenTK.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle) name: SetFullscreenDisplay - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetFullscreenDisplay_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_DisplayHandle_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetFullscreenDisplay_OpenTK_Platform_WindowHandle_OpenTK_Platform_DisplayHandle_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - - uid: OpenTK.Core.Platform.DisplayHandle + - uid: OpenTK.Platform.DisplayHandle name: DisplayHandle - href: OpenTK.Core.Platform.DisplayHandle.html + href: OpenTK.Platform.DisplayHandle.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle) + - uid: OpenTK.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle) name: SetFullscreenDisplay - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetFullscreenDisplay_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_DisplayHandle_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetFullscreenDisplay_OpenTK_Platform_WindowHandle_OpenTK_Platform_DisplayHandle_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - - uid: OpenTK.Core.Platform.DisplayHandle + - uid: OpenTK.Platform.DisplayHandle name: DisplayHandle - href: OpenTK.Core.Platform.DisplayHandle.html + href: OpenTK.Platform.DisplayHandle.html - name: ) -- uid: OpenTK.Core.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle,OpenTK.Core.Platform.VideoMode) - commentId: M:OpenTK.Core.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle,OpenTK.Core.Platform.VideoMode) - parent: OpenTK.Core.Platform.IWindowComponent - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetFullscreenDisplay_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_DisplayHandle_OpenTK_Core_Platform_VideoMode_ +- uid: OpenTK.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle,OpenTK.Platform.VideoMode) + commentId: M:OpenTK.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle,OpenTK.Platform.VideoMode) + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetFullscreenDisplay_OpenTK_Platform_WindowHandle_OpenTK_Platform_DisplayHandle_OpenTK_Platform_VideoMode_ name: SetFullscreenDisplay(WindowHandle, DisplayHandle, VideoMode) nameWithType: IWindowComponent.SetFullscreenDisplay(WindowHandle, DisplayHandle, VideoMode) - fullName: OpenTK.Core.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle, OpenTK.Core.Platform.DisplayHandle, OpenTK.Core.Platform.VideoMode) + fullName: OpenTK.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle, OpenTK.Platform.DisplayHandle, OpenTK.Platform.VideoMode) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle,OpenTK.Core.Platform.VideoMode) + - uid: OpenTK.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle,OpenTK.Platform.VideoMode) name: SetFullscreenDisplay - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetFullscreenDisplay_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_DisplayHandle_OpenTK_Core_Platform_VideoMode_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetFullscreenDisplay_OpenTK_Platform_WindowHandle_OpenTK_Platform_DisplayHandle_OpenTK_Platform_VideoMode_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - - uid: OpenTK.Core.Platform.DisplayHandle + - uid: OpenTK.Platform.DisplayHandle name: DisplayHandle - href: OpenTK.Core.Platform.DisplayHandle.html + href: OpenTK.Platform.DisplayHandle.html - name: ',' - name: " " - - uid: OpenTK.Core.Platform.VideoMode + - uid: OpenTK.Platform.VideoMode name: VideoMode - href: OpenTK.Core.Platform.VideoMode.html + href: OpenTK.Platform.VideoMode.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle,OpenTK.Core.Platform.VideoMode) + - uid: OpenTK.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle,OpenTK.Platform.VideoMode) name: SetFullscreenDisplay - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetFullscreenDisplay_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_DisplayHandle_OpenTK_Core_Platform_VideoMode_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetFullscreenDisplay_OpenTK_Platform_WindowHandle_OpenTK_Platform_DisplayHandle_OpenTK_Platform_VideoMode_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - - uid: OpenTK.Core.Platform.DisplayHandle + - uid: OpenTK.Platform.DisplayHandle name: DisplayHandle - href: OpenTK.Core.Platform.DisplayHandle.html + href: OpenTK.Platform.DisplayHandle.html - name: ',' - name: " " - - uid: OpenTK.Core.Platform.VideoMode + - uid: OpenTK.Platform.VideoMode name: VideoMode - href: OpenTK.Core.Platform.VideoMode.html + href: OpenTK.Platform.VideoMode.html - name: ) - uid: System.ArgumentOutOfRangeException commentId: T:System.ArgumentOutOfRangeException @@ -5016,240 +4858,240 @@ references: fullName: System.ArgumentOutOfRangeException - uid: OpenTK.Platform.Native.Windows.WindowComponent.SetMode* commentId: Overload:OpenTK.Platform.Native.Windows.WindowComponent.SetMode - href: OpenTK.Platform.Native.Windows.WindowComponent.html#OpenTK_Platform_Native_Windows_WindowComponent_SetMode_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_WindowMode_ + href: OpenTK.Platform.Native.Windows.WindowComponent.html#OpenTK_Platform_Native_Windows_WindowComponent_SetMode_OpenTK_Platform_WindowHandle_OpenTK_Platform_WindowMode_ name: SetMode nameWithType: WindowComponent.SetMode fullName: OpenTK.Platform.Native.Windows.WindowComponent.SetMode -- uid: OpenTK.Core.Platform.IWindowComponent.SetMode(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.WindowMode) - commentId: M:OpenTK.Core.Platform.IWindowComponent.SetMode(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.WindowMode) - parent: OpenTK.Core.Platform.IWindowComponent - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetMode_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_WindowMode_ +- uid: OpenTK.Platform.IWindowComponent.SetMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowMode) + commentId: M:OpenTK.Platform.IWindowComponent.SetMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowMode) + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetMode_OpenTK_Platform_WindowHandle_OpenTK_Platform_WindowMode_ name: SetMode(WindowHandle, WindowMode) nameWithType: IWindowComponent.SetMode(WindowHandle, WindowMode) - fullName: OpenTK.Core.Platform.IWindowComponent.SetMode(OpenTK.Core.Platform.WindowHandle, OpenTK.Core.Platform.WindowMode) + fullName: OpenTK.Platform.IWindowComponent.SetMode(OpenTK.Platform.WindowHandle, OpenTK.Platform.WindowMode) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.SetMode(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.WindowMode) + - uid: OpenTK.Platform.IWindowComponent.SetMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowMode) name: SetMode - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetMode_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_WindowMode_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetMode_OpenTK_Platform_WindowHandle_OpenTK_Platform_WindowMode_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - - uid: OpenTK.Core.Platform.WindowMode + - uid: OpenTK.Platform.WindowMode name: WindowMode - href: OpenTK.Core.Platform.WindowMode.html + href: OpenTK.Platform.WindowMode.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.SetMode(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.WindowMode) + - uid: OpenTK.Platform.IWindowComponent.SetMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowMode) name: SetMode - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetMode_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_WindowMode_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetMode_OpenTK_Platform_WindowHandle_OpenTK_Platform_WindowMode_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - - uid: OpenTK.Core.Platform.WindowMode + - uid: OpenTK.Platform.WindowMode name: WindowMode - href: OpenTK.Core.Platform.WindowMode.html + href: OpenTK.Platform.WindowMode.html - name: ) - uid: OpenTK.Platform.Native.Windows.WindowComponent.SetFullscreenDisplay* commentId: Overload:OpenTK.Platform.Native.Windows.WindowComponent.SetFullscreenDisplay - href: OpenTK.Platform.Native.Windows.WindowComponent.html#OpenTK_Platform_Native_Windows_WindowComponent_SetFullscreenDisplay_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_DisplayHandle_ + href: OpenTK.Platform.Native.Windows.WindowComponent.html#OpenTK_Platform_Native_Windows_WindowComponent_SetFullscreenDisplay_OpenTK_Platform_WindowHandle_OpenTK_Platform_DisplayHandle_ name: SetFullscreenDisplay nameWithType: WindowComponent.SetFullscreenDisplay fullName: OpenTK.Platform.Native.Windows.WindowComponent.SetFullscreenDisplay -- uid: OpenTK.Core.Platform.IDisplayComponent.GetSupportedVideoModes(OpenTK.Core.Platform.DisplayHandle) - commentId: M:OpenTK.Core.Platform.IDisplayComponent.GetSupportedVideoModes(OpenTK.Core.Platform.DisplayHandle) - parent: OpenTK.Core.Platform.IDisplayComponent - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_GetSupportedVideoModes_OpenTK_Core_Platform_DisplayHandle_ +- uid: OpenTK.Platform.IDisplayComponent.GetSupportedVideoModes(OpenTK.Platform.DisplayHandle) + commentId: M:OpenTK.Platform.IDisplayComponent.GetSupportedVideoModes(OpenTK.Platform.DisplayHandle) + parent: OpenTK.Platform.IDisplayComponent + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_GetSupportedVideoModes_OpenTK_Platform_DisplayHandle_ name: GetSupportedVideoModes(DisplayHandle) nameWithType: IDisplayComponent.GetSupportedVideoModes(DisplayHandle) - fullName: OpenTK.Core.Platform.IDisplayComponent.GetSupportedVideoModes(OpenTK.Core.Platform.DisplayHandle) + fullName: OpenTK.Platform.IDisplayComponent.GetSupportedVideoModes(OpenTK.Platform.DisplayHandle) spec.csharp: - - uid: OpenTK.Core.Platform.IDisplayComponent.GetSupportedVideoModes(OpenTK.Core.Platform.DisplayHandle) + - uid: OpenTK.Platform.IDisplayComponent.GetSupportedVideoModes(OpenTK.Platform.DisplayHandle) name: GetSupportedVideoModes - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_GetSupportedVideoModes_OpenTK_Core_Platform_DisplayHandle_ + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_GetSupportedVideoModes_OpenTK_Platform_DisplayHandle_ - name: ( - - uid: OpenTK.Core.Platform.DisplayHandle + - uid: OpenTK.Platform.DisplayHandle name: DisplayHandle - href: OpenTK.Core.Platform.DisplayHandle.html + href: OpenTK.Platform.DisplayHandle.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IDisplayComponent.GetSupportedVideoModes(OpenTK.Core.Platform.DisplayHandle) + - uid: OpenTK.Platform.IDisplayComponent.GetSupportedVideoModes(OpenTK.Platform.DisplayHandle) name: GetSupportedVideoModes - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_GetSupportedVideoModes_OpenTK_Core_Platform_DisplayHandle_ + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_GetSupportedVideoModes_OpenTK_Platform_DisplayHandle_ - name: ( - - uid: OpenTK.Core.Platform.DisplayHandle + - uid: OpenTK.Platform.DisplayHandle name: DisplayHandle - href: OpenTK.Core.Platform.DisplayHandle.html + href: OpenTK.Platform.DisplayHandle.html - name: ) -- uid: OpenTK.Core.Platform.VideoMode - commentId: T:OpenTK.Core.Platform.VideoMode - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.VideoMode.html +- uid: OpenTK.Platform.VideoMode + commentId: T:OpenTK.Platform.VideoMode + parent: OpenTK.Platform + href: OpenTK.Platform.VideoMode.html name: VideoMode nameWithType: VideoMode - fullName: OpenTK.Core.Platform.VideoMode -- uid: OpenTK.Core.Platform.IDisplayComponent - commentId: T:OpenTK.Core.Platform.IDisplayComponent - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.IDisplayComponent.html + fullName: OpenTK.Platform.VideoMode +- uid: OpenTK.Platform.IDisplayComponent + commentId: T:OpenTK.Platform.IDisplayComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IDisplayComponent.html name: IDisplayComponent nameWithType: IDisplayComponent - fullName: OpenTK.Core.Platform.IDisplayComponent + fullName: OpenTK.Platform.IDisplayComponent - uid: OpenTK.Platform.Native.Windows.WindowComponent.GetFullscreenDisplay* commentId: Overload:OpenTK.Platform.Native.Windows.WindowComponent.GetFullscreenDisplay - href: OpenTK.Platform.Native.Windows.WindowComponent.html#OpenTK_Platform_Native_Windows_WindowComponent_GetFullscreenDisplay_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_DisplayHandle__ + href: OpenTK.Platform.Native.Windows.WindowComponent.html#OpenTK_Platform_Native_Windows_WindowComponent_GetFullscreenDisplay_OpenTK_Platform_WindowHandle_OpenTK_Platform_DisplayHandle__ name: GetFullscreenDisplay nameWithType: WindowComponent.GetFullscreenDisplay fullName: OpenTK.Platform.Native.Windows.WindowComponent.GetFullscreenDisplay -- uid: OpenTK.Core.Platform.IWindowComponent.GetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle@) - commentId: M:OpenTK.Core.Platform.IWindowComponent.GetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle@) - parent: OpenTK.Core.Platform.IWindowComponent - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetFullscreenDisplay_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_DisplayHandle__ +- uid: OpenTK.Platform.IWindowComponent.GetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle@) + commentId: M:OpenTK.Platform.IWindowComponent.GetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle@) + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetFullscreenDisplay_OpenTK_Platform_WindowHandle_OpenTK_Platform_DisplayHandle__ name: GetFullscreenDisplay(WindowHandle, out DisplayHandle) nameWithType: IWindowComponent.GetFullscreenDisplay(WindowHandle, out DisplayHandle) - fullName: OpenTK.Core.Platform.IWindowComponent.GetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle, out OpenTK.Core.Platform.DisplayHandle) + fullName: OpenTK.Platform.IWindowComponent.GetFullscreenDisplay(OpenTK.Platform.WindowHandle, out OpenTK.Platform.DisplayHandle) nameWithType.vb: IWindowComponent.GetFullscreenDisplay(WindowHandle, DisplayHandle) - fullName.vb: OpenTK.Core.Platform.IWindowComponent.GetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle, OpenTK.Core.Platform.DisplayHandle) + fullName.vb: OpenTK.Platform.IWindowComponent.GetFullscreenDisplay(OpenTK.Platform.WindowHandle, OpenTK.Platform.DisplayHandle) name.vb: GetFullscreenDisplay(WindowHandle, DisplayHandle) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.GetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle@) + - uid: OpenTK.Platform.IWindowComponent.GetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle@) name: GetFullscreenDisplay - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetFullscreenDisplay_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_DisplayHandle__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetFullscreenDisplay_OpenTK_Platform_WindowHandle_OpenTK_Platform_DisplayHandle__ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - name: out - name: " " - - uid: OpenTK.Core.Platform.DisplayHandle + - uid: OpenTK.Platform.DisplayHandle name: DisplayHandle - href: OpenTK.Core.Platform.DisplayHandle.html + href: OpenTK.Platform.DisplayHandle.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.GetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle@) + - uid: OpenTK.Platform.IWindowComponent.GetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle@) name: GetFullscreenDisplay - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetFullscreenDisplay_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_DisplayHandle__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetFullscreenDisplay_OpenTK_Platform_WindowHandle_OpenTK_Platform_DisplayHandle__ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - - uid: OpenTK.Core.Platform.DisplayHandle + - uid: OpenTK.Platform.DisplayHandle name: DisplayHandle - href: OpenTK.Core.Platform.DisplayHandle.html + href: OpenTK.Platform.DisplayHandle.html - name: ) - uid: OpenTK.Platform.Native.Windows.WindowComponent.GetBorderStyle* commentId: Overload:OpenTK.Platform.Native.Windows.WindowComponent.GetBorderStyle - href: OpenTK.Platform.Native.Windows.WindowComponent.html#OpenTK_Platform_Native_Windows_WindowComponent_GetBorderStyle_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.Native.Windows.WindowComponent.html#OpenTK_Platform_Native_Windows_WindowComponent_GetBorderStyle_OpenTK_Platform_WindowHandle_ name: GetBorderStyle nameWithType: WindowComponent.GetBorderStyle fullName: OpenTK.Platform.Native.Windows.WindowComponent.GetBorderStyle -- uid: OpenTK.Core.Platform.IWindowComponent.GetBorderStyle(OpenTK.Core.Platform.WindowHandle) - commentId: M:OpenTK.Core.Platform.IWindowComponent.GetBorderStyle(OpenTK.Core.Platform.WindowHandle) - parent: OpenTK.Core.Platform.IWindowComponent - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetBorderStyle_OpenTK_Core_Platform_WindowHandle_ +- uid: OpenTK.Platform.IWindowComponent.GetBorderStyle(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.GetBorderStyle(OpenTK.Platform.WindowHandle) + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetBorderStyle_OpenTK_Platform_WindowHandle_ name: GetBorderStyle(WindowHandle) nameWithType: IWindowComponent.GetBorderStyle(WindowHandle) - fullName: OpenTK.Core.Platform.IWindowComponent.GetBorderStyle(OpenTK.Core.Platform.WindowHandle) + fullName: OpenTK.Platform.IWindowComponent.GetBorderStyle(OpenTK.Platform.WindowHandle) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.GetBorderStyle(OpenTK.Core.Platform.WindowHandle) + - uid: OpenTK.Platform.IWindowComponent.GetBorderStyle(OpenTK.Platform.WindowHandle) name: GetBorderStyle - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetBorderStyle_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetBorderStyle_OpenTK_Platform_WindowHandle_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.GetBorderStyle(OpenTK.Core.Platform.WindowHandle) + - uid: OpenTK.Platform.IWindowComponent.GetBorderStyle(OpenTK.Platform.WindowHandle) name: GetBorderStyle - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetBorderStyle_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetBorderStyle_OpenTK_Platform_WindowHandle_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ) -- uid: OpenTK.Core.Platform.WindowBorderStyle - commentId: T:OpenTK.Core.Platform.WindowBorderStyle - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.WindowBorderStyle.html +- uid: OpenTK.Platform.WindowBorderStyle + commentId: T:OpenTK.Platform.WindowBorderStyle + parent: OpenTK.Platform + href: OpenTK.Platform.WindowBorderStyle.html name: WindowBorderStyle nameWithType: WindowBorderStyle - fullName: OpenTK.Core.Platform.WindowBorderStyle + fullName: OpenTK.Platform.WindowBorderStyle - uid: OpenTK.Platform.Native.Windows.WindowComponent.SetBorderStyle* commentId: Overload:OpenTK.Platform.Native.Windows.WindowComponent.SetBorderStyle - href: OpenTK.Platform.Native.Windows.WindowComponent.html#OpenTK_Platform_Native_Windows_WindowComponent_SetBorderStyle_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_WindowBorderStyle_ + href: OpenTK.Platform.Native.Windows.WindowComponent.html#OpenTK_Platform_Native_Windows_WindowComponent_SetBorderStyle_OpenTK_Platform_WindowHandle_OpenTK_Platform_WindowBorderStyle_ name: SetBorderStyle nameWithType: WindowComponent.SetBorderStyle fullName: OpenTK.Platform.Native.Windows.WindowComponent.SetBorderStyle -- uid: OpenTK.Core.Platform.IWindowComponent.SetBorderStyle(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.WindowBorderStyle) - commentId: M:OpenTK.Core.Platform.IWindowComponent.SetBorderStyle(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.WindowBorderStyle) - parent: OpenTK.Core.Platform.IWindowComponent - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetBorderStyle_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_WindowBorderStyle_ +- uid: OpenTK.Platform.IWindowComponent.SetBorderStyle(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowBorderStyle) + commentId: M:OpenTK.Platform.IWindowComponent.SetBorderStyle(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowBorderStyle) + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetBorderStyle_OpenTK_Platform_WindowHandle_OpenTK_Platform_WindowBorderStyle_ name: SetBorderStyle(WindowHandle, WindowBorderStyle) nameWithType: IWindowComponent.SetBorderStyle(WindowHandle, WindowBorderStyle) - fullName: OpenTK.Core.Platform.IWindowComponent.SetBorderStyle(OpenTK.Core.Platform.WindowHandle, OpenTK.Core.Platform.WindowBorderStyle) + fullName: OpenTK.Platform.IWindowComponent.SetBorderStyle(OpenTK.Platform.WindowHandle, OpenTK.Platform.WindowBorderStyle) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.SetBorderStyle(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.WindowBorderStyle) + - uid: OpenTK.Platform.IWindowComponent.SetBorderStyle(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowBorderStyle) name: SetBorderStyle - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetBorderStyle_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_WindowBorderStyle_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetBorderStyle_OpenTK_Platform_WindowHandle_OpenTK_Platform_WindowBorderStyle_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - - uid: OpenTK.Core.Platform.WindowBorderStyle + - uid: OpenTK.Platform.WindowBorderStyle name: WindowBorderStyle - href: OpenTK.Core.Platform.WindowBorderStyle.html + href: OpenTK.Platform.WindowBorderStyle.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.SetBorderStyle(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.WindowBorderStyle) + - uid: OpenTK.Platform.IWindowComponent.SetBorderStyle(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowBorderStyle) name: SetBorderStyle - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetBorderStyle_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_WindowBorderStyle_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetBorderStyle_OpenTK_Platform_WindowHandle_OpenTK_Platform_WindowBorderStyle_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - - uid: OpenTK.Core.Platform.WindowBorderStyle + - uid: OpenTK.Platform.WindowBorderStyle name: WindowBorderStyle - href: OpenTK.Core.Platform.WindowBorderStyle.html + href: OpenTK.Platform.WindowBorderStyle.html - name: ) - uid: OpenTK.Platform.Native.Windows.WindowComponent.SetAlwaysOnTop* commentId: Overload:OpenTK.Platform.Native.Windows.WindowComponent.SetAlwaysOnTop - href: OpenTK.Platform.Native.Windows.WindowComponent.html#OpenTK_Platform_Native_Windows_WindowComponent_SetAlwaysOnTop_OpenTK_Core_Platform_WindowHandle_System_Boolean_ + href: OpenTK.Platform.Native.Windows.WindowComponent.html#OpenTK_Platform_Native_Windows_WindowComponent_SetAlwaysOnTop_OpenTK_Platform_WindowHandle_System_Boolean_ name: SetAlwaysOnTop nameWithType: WindowComponent.SetAlwaysOnTop fullName: OpenTK.Platform.Native.Windows.WindowComponent.SetAlwaysOnTop -- uid: OpenTK.Core.Platform.IWindowComponent.SetAlwaysOnTop(OpenTK.Core.Platform.WindowHandle,System.Boolean) - commentId: M:OpenTK.Core.Platform.IWindowComponent.SetAlwaysOnTop(OpenTK.Core.Platform.WindowHandle,System.Boolean) - parent: OpenTK.Core.Platform.IWindowComponent +- uid: OpenTK.Platform.IWindowComponent.SetAlwaysOnTop(OpenTK.Platform.WindowHandle,System.Boolean) + commentId: M:OpenTK.Platform.IWindowComponent.SetAlwaysOnTop(OpenTK.Platform.WindowHandle,System.Boolean) + parent: OpenTK.Platform.IWindowComponent isExternal: true - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetAlwaysOnTop_OpenTK_Core_Platform_WindowHandle_System_Boolean_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetAlwaysOnTop_OpenTK_Platform_WindowHandle_System_Boolean_ name: SetAlwaysOnTop(WindowHandle, bool) nameWithType: IWindowComponent.SetAlwaysOnTop(WindowHandle, bool) - fullName: OpenTK.Core.Platform.IWindowComponent.SetAlwaysOnTop(OpenTK.Core.Platform.WindowHandle, bool) + fullName: OpenTK.Platform.IWindowComponent.SetAlwaysOnTop(OpenTK.Platform.WindowHandle, bool) nameWithType.vb: IWindowComponent.SetAlwaysOnTop(WindowHandle, Boolean) - fullName.vb: OpenTK.Core.Platform.IWindowComponent.SetAlwaysOnTop(OpenTK.Core.Platform.WindowHandle, Boolean) + fullName.vb: OpenTK.Platform.IWindowComponent.SetAlwaysOnTop(OpenTK.Platform.WindowHandle, Boolean) name.vb: SetAlwaysOnTop(WindowHandle, Boolean) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.SetAlwaysOnTop(OpenTK.Core.Platform.WindowHandle,System.Boolean) + - uid: OpenTK.Platform.IWindowComponent.SetAlwaysOnTop(OpenTK.Platform.WindowHandle,System.Boolean) name: SetAlwaysOnTop - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetAlwaysOnTop_OpenTK_Core_Platform_WindowHandle_System_Boolean_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetAlwaysOnTop_OpenTK_Platform_WindowHandle_System_Boolean_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - uid: System.Boolean @@ -5258,13 +5100,13 @@ references: href: https://learn.microsoft.com/dotnet/api/system.boolean - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.SetAlwaysOnTop(OpenTK.Core.Platform.WindowHandle,System.Boolean) + - uid: OpenTK.Platform.IWindowComponent.SetAlwaysOnTop(OpenTK.Platform.WindowHandle,System.Boolean) name: SetAlwaysOnTop - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetAlwaysOnTop_OpenTK_Core_Platform_WindowHandle_System_Boolean_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetAlwaysOnTop_OpenTK_Platform_WindowHandle_System_Boolean_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - uid: System.Boolean @@ -5274,328 +5116,258 @@ references: - name: ) - uid: OpenTK.Platform.Native.Windows.WindowComponent.IsAlwaysOnTop* commentId: Overload:OpenTK.Platform.Native.Windows.WindowComponent.IsAlwaysOnTop - href: OpenTK.Platform.Native.Windows.WindowComponent.html#OpenTK_Platform_Native_Windows_WindowComponent_IsAlwaysOnTop_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.Native.Windows.WindowComponent.html#OpenTK_Platform_Native_Windows_WindowComponent_IsAlwaysOnTop_OpenTK_Platform_WindowHandle_ name: IsAlwaysOnTop nameWithType: WindowComponent.IsAlwaysOnTop fullName: OpenTK.Platform.Native.Windows.WindowComponent.IsAlwaysOnTop -- uid: OpenTK.Core.Platform.IWindowComponent.IsAlwaysOnTop(OpenTK.Core.Platform.WindowHandle) - commentId: M:OpenTK.Core.Platform.IWindowComponent.IsAlwaysOnTop(OpenTK.Core.Platform.WindowHandle) - parent: OpenTK.Core.Platform.IWindowComponent - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_IsAlwaysOnTop_OpenTK_Core_Platform_WindowHandle_ +- uid: OpenTK.Platform.IWindowComponent.IsAlwaysOnTop(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.IsAlwaysOnTop(OpenTK.Platform.WindowHandle) + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_IsAlwaysOnTop_OpenTK_Platform_WindowHandle_ name: IsAlwaysOnTop(WindowHandle) nameWithType: IWindowComponent.IsAlwaysOnTop(WindowHandle) - fullName: OpenTK.Core.Platform.IWindowComponent.IsAlwaysOnTop(OpenTK.Core.Platform.WindowHandle) + fullName: OpenTK.Platform.IWindowComponent.IsAlwaysOnTop(OpenTK.Platform.WindowHandle) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.IsAlwaysOnTop(OpenTK.Core.Platform.WindowHandle) + - uid: OpenTK.Platform.IWindowComponent.IsAlwaysOnTop(OpenTK.Platform.WindowHandle) name: IsAlwaysOnTop - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_IsAlwaysOnTop_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_IsAlwaysOnTop_OpenTK_Platform_WindowHandle_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.IsAlwaysOnTop(OpenTK.Core.Platform.WindowHandle) + - uid: OpenTK.Platform.IWindowComponent.IsAlwaysOnTop(OpenTK.Platform.WindowHandle) name: IsAlwaysOnTop - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_IsAlwaysOnTop_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_IsAlwaysOnTop_OpenTK_Platform_WindowHandle_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ) - uid: OpenTK.Platform.Native.Windows.WindowComponent.SetHitTestCallback* commentId: Overload:OpenTK.Platform.Native.Windows.WindowComponent.SetHitTestCallback - href: OpenTK.Platform.Native.Windows.WindowComponent.html#OpenTK_Platform_Native_Windows_WindowComponent_SetHitTestCallback_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_HitTest_ + href: OpenTK.Platform.Native.Windows.WindowComponent.html#OpenTK_Platform_Native_Windows_WindowComponent_SetHitTestCallback_OpenTK_Platform_WindowHandle_OpenTK_Platform_HitTest_ name: SetHitTestCallback nameWithType: WindowComponent.SetHitTestCallback fullName: OpenTK.Platform.Native.Windows.WindowComponent.SetHitTestCallback -- uid: OpenTK.Core.Platform.IWindowComponent.SetHitTestCallback(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.HitTest) - commentId: M:OpenTK.Core.Platform.IWindowComponent.SetHitTestCallback(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.HitTest) - parent: OpenTK.Core.Platform.IWindowComponent - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetHitTestCallback_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_HitTest_ +- uid: OpenTK.Platform.IWindowComponent.SetHitTestCallback(OpenTK.Platform.WindowHandle,OpenTK.Platform.HitTest) + commentId: M:OpenTK.Platform.IWindowComponent.SetHitTestCallback(OpenTK.Platform.WindowHandle,OpenTK.Platform.HitTest) + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetHitTestCallback_OpenTK_Platform_WindowHandle_OpenTK_Platform_HitTest_ name: SetHitTestCallback(WindowHandle, HitTest) nameWithType: IWindowComponent.SetHitTestCallback(WindowHandle, HitTest) - fullName: OpenTK.Core.Platform.IWindowComponent.SetHitTestCallback(OpenTK.Core.Platform.WindowHandle, OpenTK.Core.Platform.HitTest) + fullName: OpenTK.Platform.IWindowComponent.SetHitTestCallback(OpenTK.Platform.WindowHandle, OpenTK.Platform.HitTest) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.SetHitTestCallback(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.HitTest) + - uid: OpenTK.Platform.IWindowComponent.SetHitTestCallback(OpenTK.Platform.WindowHandle,OpenTK.Platform.HitTest) name: SetHitTestCallback - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetHitTestCallback_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_HitTest_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetHitTestCallback_OpenTK_Platform_WindowHandle_OpenTK_Platform_HitTest_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - - uid: OpenTK.Core.Platform.HitTest + - uid: OpenTK.Platform.HitTest name: HitTest - href: OpenTK.Core.Platform.HitTest.html + href: OpenTK.Platform.HitTest.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.SetHitTestCallback(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.HitTest) + - uid: OpenTK.Platform.IWindowComponent.SetHitTestCallback(OpenTK.Platform.WindowHandle,OpenTK.Platform.HitTest) name: SetHitTestCallback - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetHitTestCallback_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_HitTest_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetHitTestCallback_OpenTK_Platform_WindowHandle_OpenTK_Platform_HitTest_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - - uid: OpenTK.Core.Platform.HitTest + - uid: OpenTK.Platform.HitTest name: HitTest - href: OpenTK.Core.Platform.HitTest.html + href: OpenTK.Platform.HitTest.html - name: ) -- uid: OpenTK.Core.Platform.HitTest - commentId: T:OpenTK.Core.Platform.HitTest - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.HitTest.html +- uid: OpenTK.Platform.HitTest + commentId: T:OpenTK.Platform.HitTest + parent: OpenTK.Platform + href: OpenTK.Platform.HitTest.html name: HitTest nameWithType: HitTest - fullName: OpenTK.Core.Platform.HitTest + fullName: OpenTK.Platform.HitTest - uid: OpenTK.Platform.Native.Windows.WindowComponent.SetCursor* commentId: Overload:OpenTK.Platform.Native.Windows.WindowComponent.SetCursor - href: OpenTK.Platform.Native.Windows.WindowComponent.html#OpenTK_Platform_Native_Windows_WindowComponent_SetCursor_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_CursorHandle_ + href: OpenTK.Platform.Native.Windows.WindowComponent.html#OpenTK_Platform_Native_Windows_WindowComponent_SetCursor_OpenTK_Platform_WindowHandle_OpenTK_Platform_CursorHandle_ name: SetCursor nameWithType: WindowComponent.SetCursor fullName: OpenTK.Platform.Native.Windows.WindowComponent.SetCursor -- uid: OpenTK.Core.Platform.IWindowComponent.SetCursor(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.CursorHandle) - commentId: M:OpenTK.Core.Platform.IWindowComponent.SetCursor(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.CursorHandle) - parent: OpenTK.Core.Platform.IWindowComponent - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetCursor_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_CursorHandle_ - name: SetCursor(WindowHandle, CursorHandle) - nameWithType: IWindowComponent.SetCursor(WindowHandle, CursorHandle) - fullName: OpenTK.Core.Platform.IWindowComponent.SetCursor(OpenTK.Core.Platform.WindowHandle, OpenTK.Core.Platform.CursorHandle) - spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.SetCursor(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.CursorHandle) - name: SetCursor - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetCursor_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_CursorHandle_ - - name: ( - - uid: OpenTK.Core.Platform.WindowHandle - name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html - - name: ',' - - name: " " - - uid: OpenTK.Core.Platform.CursorHandle - name: CursorHandle - href: OpenTK.Core.Platform.CursorHandle.html - - name: ) - spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.SetCursor(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.CursorHandle) - name: SetCursor - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetCursor_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_CursorHandle_ - - name: ( - - uid: OpenTK.Core.Platform.WindowHandle - name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html - - name: ',' - - name: " " - - uid: OpenTK.Core.Platform.CursorHandle - name: CursorHandle - href: OpenTK.Core.Platform.CursorHandle.html - - name: ) -- uid: OpenTK.Core.Platform.CursorHandle - commentId: T:OpenTK.Core.Platform.CursorHandle - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.CursorHandle.html +- uid: OpenTK.Platform.CursorHandle + commentId: T:OpenTK.Platform.CursorHandle + parent: OpenTK.Platform + href: OpenTK.Platform.CursorHandle.html name: CursorHandle nameWithType: CursorHandle - fullName: OpenTK.Core.Platform.CursorHandle -- uid: OpenTK.Core.Platform.IWindowComponent.SetCursorCaptureMode(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.CursorCaptureMode) - commentId: M:OpenTK.Core.Platform.IWindowComponent.SetCursorCaptureMode(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.CursorCaptureMode) - parent: OpenTK.Core.Platform.IWindowComponent - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetCursorCaptureMode_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_CursorCaptureMode_ - name: SetCursorCaptureMode(WindowHandle, CursorCaptureMode) - nameWithType: IWindowComponent.SetCursorCaptureMode(WindowHandle, CursorCaptureMode) - fullName: OpenTK.Core.Platform.IWindowComponent.SetCursorCaptureMode(OpenTK.Core.Platform.WindowHandle, OpenTK.Core.Platform.CursorCaptureMode) - spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.SetCursorCaptureMode(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.CursorCaptureMode) - name: SetCursorCaptureMode - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetCursorCaptureMode_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_CursorCaptureMode_ - - name: ( - - uid: OpenTK.Core.Platform.WindowHandle - name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html - - name: ',' - - name: " " - - uid: OpenTK.Core.Platform.CursorCaptureMode - name: CursorCaptureMode - href: OpenTK.Core.Platform.CursorCaptureMode.html - - name: ) - spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.SetCursorCaptureMode(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.CursorCaptureMode) - name: SetCursorCaptureMode - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetCursorCaptureMode_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_CursorCaptureMode_ - - name: ( - - uid: OpenTK.Core.Platform.WindowHandle - name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html - - name: ',' - - name: " " - - uid: OpenTK.Core.Platform.CursorCaptureMode - name: CursorCaptureMode - href: OpenTK.Core.Platform.CursorCaptureMode.html - - name: ) + fullName: OpenTK.Platform.CursorHandle - uid: OpenTK.Platform.Native.Windows.WindowComponent.GetCursorCaptureMode* commentId: Overload:OpenTK.Platform.Native.Windows.WindowComponent.GetCursorCaptureMode - href: OpenTK.Platform.Native.Windows.WindowComponent.html#OpenTK_Platform_Native_Windows_WindowComponent_GetCursorCaptureMode_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.Native.Windows.WindowComponent.html#OpenTK_Platform_Native_Windows_WindowComponent_GetCursorCaptureMode_OpenTK_Platform_WindowHandle_ name: GetCursorCaptureMode nameWithType: WindowComponent.GetCursorCaptureMode fullName: OpenTK.Platform.Native.Windows.WindowComponent.GetCursorCaptureMode -- uid: OpenTK.Core.Platform.IWindowComponent.GetCursorCaptureMode(OpenTK.Core.Platform.WindowHandle) - commentId: M:OpenTK.Core.Platform.IWindowComponent.GetCursorCaptureMode(OpenTK.Core.Platform.WindowHandle) - parent: OpenTK.Core.Platform.IWindowComponent - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetCursorCaptureMode_OpenTK_Core_Platform_WindowHandle_ +- uid: OpenTK.Platform.IWindowComponent.GetCursorCaptureMode(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.GetCursorCaptureMode(OpenTK.Platform.WindowHandle) + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetCursorCaptureMode_OpenTK_Platform_WindowHandle_ name: GetCursorCaptureMode(WindowHandle) nameWithType: IWindowComponent.GetCursorCaptureMode(WindowHandle) - fullName: OpenTK.Core.Platform.IWindowComponent.GetCursorCaptureMode(OpenTK.Core.Platform.WindowHandle) + fullName: OpenTK.Platform.IWindowComponent.GetCursorCaptureMode(OpenTK.Platform.WindowHandle) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.GetCursorCaptureMode(OpenTK.Core.Platform.WindowHandle) + - uid: OpenTK.Platform.IWindowComponent.GetCursorCaptureMode(OpenTK.Platform.WindowHandle) name: GetCursorCaptureMode - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetCursorCaptureMode_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetCursorCaptureMode_OpenTK_Platform_WindowHandle_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.GetCursorCaptureMode(OpenTK.Core.Platform.WindowHandle) + - uid: OpenTK.Platform.IWindowComponent.GetCursorCaptureMode(OpenTK.Platform.WindowHandle) name: GetCursorCaptureMode - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetCursorCaptureMode_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetCursorCaptureMode_OpenTK_Platform_WindowHandle_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ) -- uid: OpenTK.Core.Platform.CursorCaptureMode - commentId: T:OpenTK.Core.Platform.CursorCaptureMode - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.CursorCaptureMode.html +- uid: OpenTK.Platform.CursorCaptureMode + commentId: T:OpenTK.Platform.CursorCaptureMode + parent: OpenTK.Platform + href: OpenTK.Platform.CursorCaptureMode.html name: CursorCaptureMode nameWithType: CursorCaptureMode - fullName: OpenTK.Core.Platform.CursorCaptureMode + fullName: OpenTK.Platform.CursorCaptureMode - uid: OpenTK.Platform.Native.Windows.WindowComponent.SetCursorCaptureMode* commentId: Overload:OpenTK.Platform.Native.Windows.WindowComponent.SetCursorCaptureMode - href: OpenTK.Platform.Native.Windows.WindowComponent.html#OpenTK_Platform_Native_Windows_WindowComponent_SetCursorCaptureMode_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_CursorCaptureMode_ + href: OpenTK.Platform.Native.Windows.WindowComponent.html#OpenTK_Platform_Native_Windows_WindowComponent_SetCursorCaptureMode_OpenTK_Platform_WindowHandle_OpenTK_Platform_CursorCaptureMode_ name: SetCursorCaptureMode nameWithType: WindowComponent.SetCursorCaptureMode fullName: OpenTK.Platform.Native.Windows.WindowComponent.SetCursorCaptureMode - uid: OpenTK.Platform.Native.Windows.WindowComponent.IsFocused* commentId: Overload:OpenTK.Platform.Native.Windows.WindowComponent.IsFocused - href: OpenTK.Platform.Native.Windows.WindowComponent.html#OpenTK_Platform_Native_Windows_WindowComponent_IsFocused_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.Native.Windows.WindowComponent.html#OpenTK_Platform_Native_Windows_WindowComponent_IsFocused_OpenTK_Platform_WindowHandle_ name: IsFocused nameWithType: WindowComponent.IsFocused fullName: OpenTK.Platform.Native.Windows.WindowComponent.IsFocused -- uid: OpenTK.Core.Platform.IWindowComponent.IsFocused(OpenTK.Core.Platform.WindowHandle) - commentId: M:OpenTK.Core.Platform.IWindowComponent.IsFocused(OpenTK.Core.Platform.WindowHandle) - parent: OpenTK.Core.Platform.IWindowComponent - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_IsFocused_OpenTK_Core_Platform_WindowHandle_ +- uid: OpenTK.Platform.IWindowComponent.IsFocused(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.IsFocused(OpenTK.Platform.WindowHandle) + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_IsFocused_OpenTK_Platform_WindowHandle_ name: IsFocused(WindowHandle) nameWithType: IWindowComponent.IsFocused(WindowHandle) - fullName: OpenTK.Core.Platform.IWindowComponent.IsFocused(OpenTK.Core.Platform.WindowHandle) + fullName: OpenTK.Platform.IWindowComponent.IsFocused(OpenTK.Platform.WindowHandle) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.IsFocused(OpenTK.Core.Platform.WindowHandle) + - uid: OpenTK.Platform.IWindowComponent.IsFocused(OpenTK.Platform.WindowHandle) name: IsFocused - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_IsFocused_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_IsFocused_OpenTK_Platform_WindowHandle_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.IsFocused(OpenTK.Core.Platform.WindowHandle) + - uid: OpenTK.Platform.IWindowComponent.IsFocused(OpenTK.Platform.WindowHandle) name: IsFocused - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_IsFocused_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_IsFocused_OpenTK_Platform_WindowHandle_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ) - uid: OpenTK.Platform.Native.Windows.WindowComponent.FocusWindow* commentId: Overload:OpenTK.Platform.Native.Windows.WindowComponent.FocusWindow - href: OpenTK.Platform.Native.Windows.WindowComponent.html#OpenTK_Platform_Native_Windows_WindowComponent_FocusWindow_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.Native.Windows.WindowComponent.html#OpenTK_Platform_Native_Windows_WindowComponent_FocusWindow_OpenTK_Platform_WindowHandle_ name: FocusWindow nameWithType: WindowComponent.FocusWindow fullName: OpenTK.Platform.Native.Windows.WindowComponent.FocusWindow -- uid: OpenTK.Core.Platform.IWindowComponent.FocusWindow(OpenTK.Core.Platform.WindowHandle) - commentId: M:OpenTK.Core.Platform.IWindowComponent.FocusWindow(OpenTK.Core.Platform.WindowHandle) - parent: OpenTK.Core.Platform.IWindowComponent - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_FocusWindow_OpenTK_Core_Platform_WindowHandle_ +- uid: OpenTK.Platform.IWindowComponent.FocusWindow(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.FocusWindow(OpenTK.Platform.WindowHandle) + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_FocusWindow_OpenTK_Platform_WindowHandle_ name: FocusWindow(WindowHandle) nameWithType: IWindowComponent.FocusWindow(WindowHandle) - fullName: OpenTK.Core.Platform.IWindowComponent.FocusWindow(OpenTK.Core.Platform.WindowHandle) + fullName: OpenTK.Platform.IWindowComponent.FocusWindow(OpenTK.Platform.WindowHandle) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.FocusWindow(OpenTK.Core.Platform.WindowHandle) + - uid: OpenTK.Platform.IWindowComponent.FocusWindow(OpenTK.Platform.WindowHandle) name: FocusWindow - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_FocusWindow_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_FocusWindow_OpenTK_Platform_WindowHandle_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.FocusWindow(OpenTK.Core.Platform.WindowHandle) + - uid: OpenTK.Platform.IWindowComponent.FocusWindow(OpenTK.Platform.WindowHandle) name: FocusWindow - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_FocusWindow_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_FocusWindow_OpenTK_Platform_WindowHandle_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ) - uid: OpenTK.Platform.Native.Windows.WindowComponent.RequestAttention* commentId: Overload:OpenTK.Platform.Native.Windows.WindowComponent.RequestAttention - href: OpenTK.Platform.Native.Windows.WindowComponent.html#OpenTK_Platform_Native_Windows_WindowComponent_RequestAttention_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.Native.Windows.WindowComponent.html#OpenTK_Platform_Native_Windows_WindowComponent_RequestAttention_OpenTK_Platform_WindowHandle_ name: RequestAttention nameWithType: WindowComponent.RequestAttention fullName: OpenTK.Platform.Native.Windows.WindowComponent.RequestAttention -- uid: OpenTK.Core.Platform.IWindowComponent.RequestAttention(OpenTK.Core.Platform.WindowHandle) - commentId: M:OpenTK.Core.Platform.IWindowComponent.RequestAttention(OpenTK.Core.Platform.WindowHandle) - parent: OpenTK.Core.Platform.IWindowComponent - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_RequestAttention_OpenTK_Core_Platform_WindowHandle_ +- uid: OpenTK.Platform.IWindowComponent.RequestAttention(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.RequestAttention(OpenTK.Platform.WindowHandle) + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_RequestAttention_OpenTK_Platform_WindowHandle_ name: RequestAttention(WindowHandle) nameWithType: IWindowComponent.RequestAttention(WindowHandle) - fullName: OpenTK.Core.Platform.IWindowComponent.RequestAttention(OpenTK.Core.Platform.WindowHandle) + fullName: OpenTK.Platform.IWindowComponent.RequestAttention(OpenTK.Platform.WindowHandle) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.RequestAttention(OpenTK.Core.Platform.WindowHandle) + - uid: OpenTK.Platform.IWindowComponent.RequestAttention(OpenTK.Platform.WindowHandle) name: RequestAttention - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_RequestAttention_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_RequestAttention_OpenTK_Platform_WindowHandle_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.RequestAttention(OpenTK.Core.Platform.WindowHandle) + - uid: OpenTK.Platform.IWindowComponent.RequestAttention(OpenTK.Platform.WindowHandle) name: RequestAttention - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_RequestAttention_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_RequestAttention_OpenTK_Platform_WindowHandle_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ) - uid: OpenTK.Platform.Native.Windows.WindowComponent.ScreenToClient* commentId: Overload:OpenTK.Platform.Native.Windows.WindowComponent.ScreenToClient - href: OpenTK.Platform.Native.Windows.WindowComponent.html#OpenTK_Platform_Native_Windows_WindowComponent_ScreenToClient_OpenTK_Core_Platform_WindowHandle_System_Int32_System_Int32_System_Int32__System_Int32__ + href: OpenTK.Platform.Native.Windows.WindowComponent.html#OpenTK_Platform_Native_Windows_WindowComponent_ScreenToClient_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_System_Int32__System_Int32__ name: ScreenToClient nameWithType: WindowComponent.ScreenToClient fullName: OpenTK.Platform.Native.Windows.WindowComponent.ScreenToClient -- uid: OpenTK.Core.Platform.IWindowComponent.ScreenToClient(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) - commentId: M:OpenTK.Core.Platform.IWindowComponent.ScreenToClient(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) - parent: OpenTK.Core.Platform.IWindowComponent +- uid: OpenTK.Platform.IWindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) + commentId: M:OpenTK.Platform.IWindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) + parent: OpenTK.Platform.IWindowComponent isExternal: true - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_ScreenToClient_OpenTK_Core_Platform_WindowHandle_System_Int32_System_Int32_System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_ScreenToClient_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_System_Int32__System_Int32__ name: ScreenToClient(WindowHandle, int, int, out int, out int) nameWithType: IWindowComponent.ScreenToClient(WindowHandle, int, int, out int, out int) - fullName: OpenTK.Core.Platform.IWindowComponent.ScreenToClient(OpenTK.Core.Platform.WindowHandle, int, int, out int, out int) + fullName: OpenTK.Platform.IWindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle, int, int, out int, out int) nameWithType.vb: IWindowComponent.ScreenToClient(WindowHandle, Integer, Integer, Integer, Integer) - fullName.vb: OpenTK.Core.Platform.IWindowComponent.ScreenToClient(OpenTK.Core.Platform.WindowHandle, Integer, Integer, Integer, Integer) + fullName.vb: OpenTK.Platform.IWindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle, Integer, Integer, Integer, Integer) name.vb: ScreenToClient(WindowHandle, Integer, Integer, Integer, Integer) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.ScreenToClient(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) + - uid: OpenTK.Platform.IWindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) name: ScreenToClient - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_ScreenToClient_OpenTK_Core_Platform_WindowHandle_System_Int32_System_Int32_System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_ScreenToClient_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_System_Int32__System_Int32__ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - uid: System.Int32 @@ -5626,13 +5398,13 @@ references: href: https://learn.microsoft.com/dotnet/api/system.int32 - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.ScreenToClient(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) + - uid: OpenTK.Platform.IWindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) name: ScreenToClient - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_ScreenToClient_OpenTK_Core_Platform_WindowHandle_System_Int32_System_Int32_System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_ScreenToClient_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_System_Int32__System_Int32__ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - uid: System.Int32 @@ -5660,29 +5432,29 @@ references: - name: ) - uid: OpenTK.Platform.Native.Windows.WindowComponent.ClientToScreen* commentId: Overload:OpenTK.Platform.Native.Windows.WindowComponent.ClientToScreen - href: OpenTK.Platform.Native.Windows.WindowComponent.html#OpenTK_Platform_Native_Windows_WindowComponent_ClientToScreen_OpenTK_Core_Platform_WindowHandle_System_Int32_System_Int32_System_Int32__System_Int32__ + href: OpenTK.Platform.Native.Windows.WindowComponent.html#OpenTK_Platform_Native_Windows_WindowComponent_ClientToScreen_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_System_Int32__System_Int32__ name: ClientToScreen nameWithType: WindowComponent.ClientToScreen fullName: OpenTK.Platform.Native.Windows.WindowComponent.ClientToScreen -- uid: OpenTK.Core.Platform.IWindowComponent.ClientToScreen(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) - commentId: M:OpenTK.Core.Platform.IWindowComponent.ClientToScreen(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) - parent: OpenTK.Core.Platform.IWindowComponent +- uid: OpenTK.Platform.IWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) + commentId: M:OpenTK.Platform.IWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) + parent: OpenTK.Platform.IWindowComponent isExternal: true - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_ClientToScreen_OpenTK_Core_Platform_WindowHandle_System_Int32_System_Int32_System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_ClientToScreen_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_System_Int32__System_Int32__ name: ClientToScreen(WindowHandle, int, int, out int, out int) nameWithType: IWindowComponent.ClientToScreen(WindowHandle, int, int, out int, out int) - fullName: OpenTK.Core.Platform.IWindowComponent.ClientToScreen(OpenTK.Core.Platform.WindowHandle, int, int, out int, out int) + fullName: OpenTK.Platform.IWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle, int, int, out int, out int) nameWithType.vb: IWindowComponent.ClientToScreen(WindowHandle, Integer, Integer, Integer, Integer) - fullName.vb: OpenTK.Core.Platform.IWindowComponent.ClientToScreen(OpenTK.Core.Platform.WindowHandle, Integer, Integer, Integer, Integer) + fullName.vb: OpenTK.Platform.IWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle, Integer, Integer, Integer, Integer) name.vb: ClientToScreen(WindowHandle, Integer, Integer, Integer, Integer) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.ClientToScreen(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) + - uid: OpenTK.Platform.IWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) name: ClientToScreen - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_ClientToScreen_OpenTK_Core_Platform_WindowHandle_System_Int32_System_Int32_System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_ClientToScreen_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_System_Int32__System_Int32__ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - uid: System.Int32 @@ -5713,13 +5485,13 @@ references: href: https://learn.microsoft.com/dotnet/api/system.int32 - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.ClientToScreen(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) + - uid: OpenTK.Platform.IWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) name: ClientToScreen - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_ClientToScreen_OpenTK_Core_Platform_WindowHandle_System_Int32_System_Int32_System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_ClientToScreen_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_System_Int32__System_Int32__ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - uid: System.Int32 @@ -5745,37 +5517,37 @@ references: isExternal: true href: https://learn.microsoft.com/dotnet/api/system.int32 - name: ) -- uid: OpenTK.Core.Platform.WindowScaleChangeEventArgs - commentId: T:OpenTK.Core.Platform.WindowScaleChangeEventArgs - href: OpenTK.Core.Platform.WindowScaleChangeEventArgs.html +- uid: OpenTK.Platform.WindowScaleChangeEventArgs + commentId: T:OpenTK.Platform.WindowScaleChangeEventArgs + href: OpenTK.Platform.WindowScaleChangeEventArgs.html name: WindowScaleChangeEventArgs nameWithType: WindowScaleChangeEventArgs - fullName: OpenTK.Core.Platform.WindowScaleChangeEventArgs + fullName: OpenTK.Platform.WindowScaleChangeEventArgs - uid: OpenTK.Platform.Native.Windows.WindowComponent.GetScaleFactor* commentId: Overload:OpenTK.Platform.Native.Windows.WindowComponent.GetScaleFactor - href: OpenTK.Platform.Native.Windows.WindowComponent.html#OpenTK_Platform_Native_Windows_WindowComponent_GetScaleFactor_OpenTK_Core_Platform_WindowHandle_System_Single__System_Single__ + href: OpenTK.Platform.Native.Windows.WindowComponent.html#OpenTK_Platform_Native_Windows_WindowComponent_GetScaleFactor_OpenTK_Platform_WindowHandle_System_Single__System_Single__ name: GetScaleFactor nameWithType: WindowComponent.GetScaleFactor fullName: OpenTK.Platform.Native.Windows.WindowComponent.GetScaleFactor -- uid: OpenTK.Core.Platform.IWindowComponent.GetScaleFactor(OpenTK.Core.Platform.WindowHandle,System.Single@,System.Single@) - commentId: M:OpenTK.Core.Platform.IWindowComponent.GetScaleFactor(OpenTK.Core.Platform.WindowHandle,System.Single@,System.Single@) - parent: OpenTK.Core.Platform.IWindowComponent +- uid: OpenTK.Platform.IWindowComponent.GetScaleFactor(OpenTK.Platform.WindowHandle,System.Single@,System.Single@) + commentId: M:OpenTK.Platform.IWindowComponent.GetScaleFactor(OpenTK.Platform.WindowHandle,System.Single@,System.Single@) + parent: OpenTK.Platform.IWindowComponent isExternal: true - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetScaleFactor_OpenTK_Core_Platform_WindowHandle_System_Single__System_Single__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetScaleFactor_OpenTK_Platform_WindowHandle_System_Single__System_Single__ name: GetScaleFactor(WindowHandle, out float, out float) nameWithType: IWindowComponent.GetScaleFactor(WindowHandle, out float, out float) - fullName: OpenTK.Core.Platform.IWindowComponent.GetScaleFactor(OpenTK.Core.Platform.WindowHandle, out float, out float) + fullName: OpenTK.Platform.IWindowComponent.GetScaleFactor(OpenTK.Platform.WindowHandle, out float, out float) nameWithType.vb: IWindowComponent.GetScaleFactor(WindowHandle, Single, Single) - fullName.vb: OpenTK.Core.Platform.IWindowComponent.GetScaleFactor(OpenTK.Core.Platform.WindowHandle, Single, Single) + fullName.vb: OpenTK.Platform.IWindowComponent.GetScaleFactor(OpenTK.Platform.WindowHandle, Single, Single) name.vb: GetScaleFactor(WindowHandle, Single, Single) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.GetScaleFactor(OpenTK.Core.Platform.WindowHandle,System.Single@,System.Single@) + - uid: OpenTK.Platform.IWindowComponent.GetScaleFactor(OpenTK.Platform.WindowHandle,System.Single@,System.Single@) name: GetScaleFactor - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetScaleFactor_OpenTK_Core_Platform_WindowHandle_System_Single__System_Single__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetScaleFactor_OpenTK_Platform_WindowHandle_System_Single__System_Single__ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - name: out @@ -5794,13 +5566,13 @@ references: href: https://learn.microsoft.com/dotnet/api/system.single - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.GetScaleFactor(OpenTK.Core.Platform.WindowHandle,System.Single@,System.Single@) + - uid: OpenTK.Platform.IWindowComponent.GetScaleFactor(OpenTK.Platform.WindowHandle,System.Single@,System.Single@) name: GetScaleFactor - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetScaleFactor_OpenTK_Core_Platform_WindowHandle_System_Single__System_Single__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetScaleFactor_OpenTK_Platform_WindowHandle_System_Single__System_Single__ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - uid: System.Single @@ -5827,7 +5599,7 @@ references: name.vb: Single - uid: OpenTK.Platform.Native.Windows.WindowComponent.GetHWND* commentId: Overload:OpenTK.Platform.Native.Windows.WindowComponent.GetHWND - href: OpenTK.Platform.Native.Windows.WindowComponent.html#OpenTK_Platform_Native_Windows_WindowComponent_GetHWND_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.Native.Windows.WindowComponent.html#OpenTK_Platform_Native_Windows_WindowComponent_GetHWND_OpenTK_Platform_WindowHandle_ name: GetHWND nameWithType: WindowComponent.GetHWND fullName: OpenTK.Platform.Native.Windows.WindowComponent.GetHWND diff --git a/api/OpenTK.Platform.Native.Windows.yml b/api/OpenTK.Platform.Native.Windows.yml index 6a353497..a16149e7 100644 --- a/api/OpenTK.Platform.Native.Windows.yml +++ b/api/OpenTK.Platform.Native.Windows.yml @@ -24,7 +24,7 @@ items: fullName: OpenTK.Platform.Native.Windows type: Namespace assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform references: - uid: OpenTK.Platform.Native.Windows.ClipboardComponent commentId: T:OpenTK.Platform.Native.Windows.ClipboardComponent diff --git a/api/OpenTK.Platform.Native.X11.X11ClipboardComponent.yml b/api/OpenTK.Platform.Native.X11.X11ClipboardComponent.yml index a0208f88..c9697426 100644 --- a/api/OpenTK.Platform.Native.X11.X11ClipboardComponent.yml +++ b/api/OpenTK.Platform.Native.X11.X11ClipboardComponent.yml @@ -10,7 +10,7 @@ items: - OpenTK.Platform.Native.X11.X11ClipboardComponent.GetClipboardFiles - OpenTK.Platform.Native.X11.X11ClipboardComponent.GetClipboardFormat - OpenTK.Platform.Native.X11.X11ClipboardComponent.GetClipboardText - - OpenTK.Platform.Native.X11.X11ClipboardComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + - OpenTK.Platform.Native.X11.X11ClipboardComponent.Initialize(OpenTK.Platform.ToolkitOptions) - OpenTK.Platform.Native.X11.X11ClipboardComponent.Logger - OpenTK.Platform.Native.X11.X11ClipboardComponent.Name - OpenTK.Platform.Native.X11.X11ClipboardComponent.Provides @@ -24,15 +24,11 @@ items: fullName: OpenTK.Platform.Native.X11.X11ClipboardComponent type: Class source: - remote: - path: src/OpenTK.Platform.Native/X11/X11ClipboardComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: X11ClipboardComponent - path: opentk/src/OpenTK.Platform.Native/X11/X11ClipboardComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11ClipboardComponent.cs startLine: 10 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 syntax: content: 'public class X11ClipboardComponent : IClipboardComponent, IPalComponent' @@ -40,8 +36,8 @@ items: inheritance: - System.Object implements: - - OpenTK.Core.Platform.IClipboardComponent - - OpenTK.Core.Platform.IPalComponent + - OpenTK.Platform.IClipboardComponent + - OpenTK.Platform.IPalComponent inheritedMembers: - System.Object.Equals(System.Object) - System.Object.Equals(System.Object,System.Object) @@ -62,15 +58,11 @@ items: fullName: OpenTK.Platform.Native.X11.X11ClipboardComponent.Name type: Property source: - remote: - path: src/OpenTK.Platform.Native/X11/X11ClipboardComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Name - path: opentk/src/OpenTK.Platform.Native/X11/X11ClipboardComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11ClipboardComponent.cs startLine: 13 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: Name of the abstraction layer component. example: [] @@ -82,7 +74,7 @@ items: content.vb: Public ReadOnly Property Name As String overload: OpenTK.Platform.Native.X11.X11ClipboardComponent.Name* implements: - - OpenTK.Core.Platform.IPalComponent.Name + - OpenTK.Platform.IPalComponent.Name - uid: OpenTK.Platform.Native.X11.X11ClipboardComponent.Provides commentId: P:OpenTK.Platform.Native.X11.X11ClipboardComponent.Provides id: Provides @@ -95,15 +87,11 @@ items: fullName: OpenTK.Platform.Native.X11.X11ClipboardComponent.Provides type: Property source: - remote: - path: src/OpenTK.Platform.Native/X11/X11ClipboardComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Provides - path: opentk/src/OpenTK.Platform.Native/X11/X11ClipboardComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11ClipboardComponent.cs startLine: 16 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: Specifies which PAL components this object provides. example: [] @@ -111,11 +99,11 @@ items: content: public PalComponents Provides { get; } parameters: [] return: - type: OpenTK.Core.Platform.PalComponents + type: OpenTK.Platform.PalComponents content.vb: Public ReadOnly Property Provides As PalComponents overload: OpenTK.Platform.Native.X11.X11ClipboardComponent.Provides* implements: - - OpenTK.Core.Platform.IPalComponent.Provides + - OpenTK.Platform.IPalComponent.Provides - uid: OpenTK.Platform.Native.X11.X11ClipboardComponent.Logger commentId: P:OpenTK.Platform.Native.X11.X11ClipboardComponent.Logger id: Logger @@ -128,15 +116,11 @@ items: fullName: OpenTK.Platform.Native.X11.X11ClipboardComponent.Logger type: Property source: - remote: - path: src/OpenTK.Platform.Native/X11/X11ClipboardComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Logger - path: opentk/src/OpenTK.Platform.Native/X11/X11ClipboardComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11ClipboardComponent.cs startLine: 19 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: Provides a logger for this component. example: [] @@ -148,28 +132,24 @@ items: content.vb: Public Property Logger As ILogger overload: OpenTK.Platform.Native.X11.X11ClipboardComponent.Logger* implements: - - OpenTK.Core.Platform.IPalComponent.Logger -- uid: OpenTK.Platform.Native.X11.X11ClipboardComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - commentId: M:OpenTK.Platform.Native.X11.X11ClipboardComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - id: Initialize(OpenTK.Core.Platform.ToolkitOptions) + - OpenTK.Platform.IPalComponent.Logger +- uid: OpenTK.Platform.Native.X11.X11ClipboardComponent.Initialize(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Native.X11.X11ClipboardComponent.Initialize(OpenTK.Platform.ToolkitOptions) + id: Initialize(OpenTK.Platform.ToolkitOptions) parent: OpenTK.Platform.Native.X11.X11ClipboardComponent langs: - csharp - vb name: Initialize(ToolkitOptions) nameWithType: X11ClipboardComponent.Initialize(ToolkitOptions) - fullName: OpenTK.Platform.Native.X11.X11ClipboardComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + fullName: OpenTK.Platform.Native.X11.X11ClipboardComponent.Initialize(OpenTK.Platform.ToolkitOptions) type: Method source: - remote: - path: src/OpenTK.Platform.Native/X11/X11ClipboardComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Initialize - path: opentk/src/OpenTK.Platform.Native/X11/X11ClipboardComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11ClipboardComponent.cs startLine: 22 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: Initialize the component. example: [] @@ -177,12 +157,12 @@ items: content: public void Initialize(ToolkitOptions options) parameters: - id: options - type: OpenTK.Core.Platform.ToolkitOptions + type: OpenTK.Platform.ToolkitOptions description: The options to initialize the component with. content.vb: Public Sub Initialize(options As ToolkitOptions) overload: OpenTK.Platform.Native.X11.X11ClipboardComponent.Initialize* implements: - - OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + - OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) - uid: OpenTK.Platform.Native.X11.X11ClipboardComponent.SupportedFormats commentId: P:OpenTK.Platform.Native.X11.X11ClipboardComponent.SupportedFormats id: SupportedFormats @@ -195,15 +175,11 @@ items: fullName: OpenTK.Platform.Native.X11.X11ClipboardComponent.SupportedFormats type: Property source: - remote: - path: src/OpenTK.Platform.Native/X11/X11ClipboardComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SupportedFormats - path: opentk/src/OpenTK.Platform.Native/X11/X11ClipboardComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11ClipboardComponent.cs startLine: 90 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: A list of formats that this clipboard component supports. example: [] @@ -211,11 +187,11 @@ items: content: public IReadOnlyList SupportedFormats { get; } parameters: [] return: - type: System.Collections.Generic.IReadOnlyList{OpenTK.Core.Platform.ClipboardFormat} + type: System.Collections.Generic.IReadOnlyList{OpenTK.Platform.ClipboardFormat} content.vb: Public ReadOnly Property SupportedFormats As IReadOnlyList(Of ClipboardFormat) overload: OpenTK.Platform.Native.X11.X11ClipboardComponent.SupportedFormats* implements: - - OpenTK.Core.Platform.IClipboardComponent.SupportedFormats + - OpenTK.Platform.IClipboardComponent.SupportedFormats - uid: OpenTK.Platform.Native.X11.X11ClipboardComponent.GetClipboardFormat commentId: M:OpenTK.Platform.Native.X11.X11ClipboardComponent.GetClipboardFormat id: GetClipboardFormat @@ -228,27 +204,23 @@ items: fullName: OpenTK.Platform.Native.X11.X11ClipboardComponent.GetClipboardFormat() type: Method source: - remote: - path: src/OpenTK.Platform.Native/X11/X11ClipboardComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetClipboardFormat - path: opentk/src/OpenTK.Platform.Native/X11/X11ClipboardComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11ClipboardComponent.cs startLine: 167 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: Gets the format of the data currently in the clipboard. example: [] syntax: content: public ClipboardFormat GetClipboardFormat() return: - type: OpenTK.Core.Platform.ClipboardFormat + type: OpenTK.Platform.ClipboardFormat description: The format of the data currently in the clipboard. content.vb: Public Function GetClipboardFormat() As ClipboardFormat overload: OpenTK.Platform.Native.X11.X11ClipboardComponent.GetClipboardFormat* implements: - - OpenTK.Core.Platform.IClipboardComponent.GetClipboardFormat + - OpenTK.Platform.IClipboardComponent.GetClipboardFormat - uid: OpenTK.Platform.Native.X11.X11ClipboardComponent.SetClipboardText(System.String) commentId: M:OpenTK.Platform.Native.X11.X11ClipboardComponent.SetClipboardText(System.String) id: SetClipboardText(System.String) @@ -261,15 +233,11 @@ items: fullName: OpenTK.Platform.Native.X11.X11ClipboardComponent.SetClipboardText(string) type: Method source: - remote: - path: src/OpenTK.Platform.Native/X11/X11ClipboardComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetClipboardText - path: opentk/src/OpenTK.Platform.Native/X11/X11ClipboardComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11ClipboardComponent.cs startLine: 173 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: Sets the string currently in the clipboard. example: [] @@ -282,7 +250,7 @@ items: content.vb: Public Sub SetClipboardText(text As String) overload: OpenTK.Platform.Native.X11.X11ClipboardComponent.SetClipboardText* implements: - - OpenTK.Core.Platform.IClipboardComponent.SetClipboardText(System.String) + - OpenTK.Platform.IClipboardComponent.SetClipboardText(System.String) nameWithType.vb: X11ClipboardComponent.SetClipboardText(String) fullName.vb: OpenTK.Platform.Native.X11.X11ClipboardComponent.SetClipboardText(String) name.vb: SetClipboardText(String) @@ -298,20 +266,16 @@ items: fullName: OpenTK.Platform.Native.X11.X11ClipboardComponent.GetClipboardText() type: Method source: - remote: - path: src/OpenTK.Platform.Native/X11/X11ClipboardComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetClipboardText - path: opentk/src/OpenTK.Platform.Native/X11/X11ClipboardComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11ClipboardComponent.cs startLine: 179 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: >- Returns the string currently in the clipboard. - This function returns null if the current clipboard data doesn't have the format. + This function returns null if the current clipboard data doesn't have the format. example: [] syntax: content: public string? GetClipboardText() @@ -321,7 +285,7 @@ items: content.vb: Public Function GetClipboardText() As String overload: OpenTK.Platform.Native.X11.X11ClipboardComponent.GetClipboardText* implements: - - OpenTK.Core.Platform.IClipboardComponent.GetClipboardText + - OpenTK.Platform.IClipboardComponent.GetClipboardText - uid: OpenTK.Platform.Native.X11.X11ClipboardComponent.GetClipboardAudio commentId: M:OpenTK.Platform.Native.X11.X11ClipboardComponent.GetClipboardAudio id: GetClipboardAudio @@ -334,30 +298,26 @@ items: fullName: OpenTK.Platform.Native.X11.X11ClipboardComponent.GetClipboardAudio() type: Method source: - remote: - path: src/OpenTK.Platform.Native/X11/X11ClipboardComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetClipboardAudio - path: opentk/src/OpenTK.Platform.Native/X11/X11ClipboardComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11ClipboardComponent.cs startLine: 259 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: >- Gets the audio data currently in the clipboard. - This function returns null if the current clipboard data doesn't have the format. + This function returns null if the current clipboard data doesn't have the format. example: [] syntax: content: public AudioData? GetClipboardAudio() return: - type: OpenTK.Core.Platform.AudioData + type: OpenTK.Platform.AudioData description: The audio data currently in the clipboard. content.vb: Public Function GetClipboardAudio() As AudioData overload: OpenTK.Platform.Native.X11.X11ClipboardComponent.GetClipboardAudio* implements: - - OpenTK.Core.Platform.IClipboardComponent.GetClipboardAudio + - OpenTK.Platform.IClipboardComponent.GetClipboardAudio - uid: OpenTK.Platform.Native.X11.X11ClipboardComponent.GetClipboardBitmap commentId: M:OpenTK.Platform.Native.X11.X11ClipboardComponent.GetClipboardBitmap id: GetClipboardBitmap @@ -370,30 +330,26 @@ items: fullName: OpenTK.Platform.Native.X11.X11ClipboardComponent.GetClipboardBitmap() type: Method source: - remote: - path: src/OpenTK.Platform.Native/X11/X11ClipboardComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetClipboardBitmap - path: opentk/src/OpenTK.Platform.Native/X11/X11ClipboardComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11ClipboardComponent.cs startLine: 265 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: >- Gets the bitmap currently in the clipboard. - This function returns null if the current clipboard data doesn't have the format. + This function returns null if the current clipboard data doesn't have the format. example: [] syntax: content: public Bitmap? GetClipboardBitmap() return: - type: OpenTK.Core.Platform.Bitmap + type: OpenTK.Platform.Bitmap description: The bitmap currently in the clipboard. content.vb: Public Function GetClipboardBitmap() As Bitmap overload: OpenTK.Platform.Native.X11.X11ClipboardComponent.GetClipboardBitmap* implements: - - OpenTK.Core.Platform.IClipboardComponent.GetClipboardBitmap + - OpenTK.Platform.IClipboardComponent.GetClipboardBitmap - uid: OpenTK.Platform.Native.X11.X11ClipboardComponent.GetClipboardFiles commentId: M:OpenTK.Platform.Native.X11.X11ClipboardComponent.GetClipboardFiles id: GetClipboardFiles @@ -406,20 +362,16 @@ items: fullName: OpenTK.Platform.Native.X11.X11ClipboardComponent.GetClipboardFiles() type: Method source: - remote: - path: src/OpenTK.Platform.Native/X11/X11ClipboardComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetClipboardFiles - path: opentk/src/OpenTK.Platform.Native/X11/X11ClipboardComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11ClipboardComponent.cs startLine: 272 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: >- Gets a list of files and directories currently in the clipboard. - This function returns null if the current clipboard data doesn't have the format. + This function returns null if the current clipboard data doesn't have the format. example: [] syntax: content: public List? GetClipboardFiles() @@ -429,7 +381,7 @@ items: content.vb: Public Function GetClipboardFiles() As List(Of String) overload: OpenTK.Platform.Native.X11.X11ClipboardComponent.GetClipboardFiles* implements: - - OpenTK.Core.Platform.IClipboardComponent.GetClipboardFiles + - OpenTK.Platform.IClipboardComponent.GetClipboardFiles references: - uid: OpenTK.Platform.Native.X11 commentId: N:OpenTK.Platform.Native.X11 @@ -480,20 +432,20 @@ references: nameWithType.vb: Object fullName.vb: Object name.vb: Object -- uid: OpenTK.Core.Platform.IClipboardComponent - commentId: T:OpenTK.Core.Platform.IClipboardComponent - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.IClipboardComponent.html +- uid: OpenTK.Platform.IClipboardComponent + commentId: T:OpenTK.Platform.IClipboardComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IClipboardComponent.html name: IClipboardComponent nameWithType: IClipboardComponent - fullName: OpenTK.Core.Platform.IClipboardComponent -- uid: OpenTK.Core.Platform.IPalComponent - commentId: T:OpenTK.Core.Platform.IPalComponent - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.IPalComponent.html + fullName: OpenTK.Platform.IClipboardComponent +- uid: OpenTK.Platform.IPalComponent + commentId: T:OpenTK.Platform.IPalComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IPalComponent.html name: IPalComponent nameWithType: IPalComponent - fullName: OpenTK.Core.Platform.IPalComponent + fullName: OpenTK.Platform.IPalComponent - uid: System.Object.Equals(System.Object) commentId: M:System.Object.Equals(System.Object) parent: System.Object @@ -720,49 +672,41 @@ references: name: System nameWithType: System fullName: System -- uid: OpenTK.Core.Platform - commentId: N:OpenTK.Core.Platform +- uid: OpenTK.Platform + commentId: N:OpenTK.Platform href: OpenTK.html - name: OpenTK.Core.Platform - nameWithType: OpenTK.Core.Platform - fullName: OpenTK.Core.Platform + name: OpenTK.Platform + nameWithType: OpenTK.Platform + fullName: OpenTK.Platform spec.csharp: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html spec.vb: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html - uid: OpenTK.Platform.Native.X11.X11ClipboardComponent.Name* commentId: Overload:OpenTK.Platform.Native.X11.X11ClipboardComponent.Name href: OpenTK.Platform.Native.X11.X11ClipboardComponent.html#OpenTK_Platform_Native_X11_X11ClipboardComponent_Name name: Name nameWithType: X11ClipboardComponent.Name fullName: OpenTK.Platform.Native.X11.X11ClipboardComponent.Name -- uid: OpenTK.Core.Platform.IPalComponent.Name - commentId: P:OpenTK.Core.Platform.IPalComponent.Name - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Name +- uid: OpenTK.Platform.IPalComponent.Name + commentId: P:OpenTK.Platform.IPalComponent.Name + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Name name: Name nameWithType: IPalComponent.Name - fullName: OpenTK.Core.Platform.IPalComponent.Name + fullName: OpenTK.Platform.IPalComponent.Name - uid: System.String commentId: T:System.String parent: System @@ -780,33 +724,33 @@ references: name: Provides nameWithType: X11ClipboardComponent.Provides fullName: OpenTK.Platform.Native.X11.X11ClipboardComponent.Provides -- uid: OpenTK.Core.Platform.IPalComponent.Provides - commentId: P:OpenTK.Core.Platform.IPalComponent.Provides - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Provides +- uid: OpenTK.Platform.IPalComponent.Provides + commentId: P:OpenTK.Platform.IPalComponent.Provides + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Provides name: Provides nameWithType: IPalComponent.Provides - fullName: OpenTK.Core.Platform.IPalComponent.Provides -- uid: OpenTK.Core.Platform.PalComponents - commentId: T:OpenTK.Core.Platform.PalComponents - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.PalComponents.html + fullName: OpenTK.Platform.IPalComponent.Provides +- uid: OpenTK.Platform.PalComponents + commentId: T:OpenTK.Platform.PalComponents + parent: OpenTK.Platform + href: OpenTK.Platform.PalComponents.html name: PalComponents nameWithType: PalComponents - fullName: OpenTK.Core.Platform.PalComponents + fullName: OpenTK.Platform.PalComponents - uid: OpenTK.Platform.Native.X11.X11ClipboardComponent.Logger* commentId: Overload:OpenTK.Platform.Native.X11.X11ClipboardComponent.Logger href: OpenTK.Platform.Native.X11.X11ClipboardComponent.html#OpenTK_Platform_Native_X11_X11ClipboardComponent_Logger name: Logger nameWithType: X11ClipboardComponent.Logger fullName: OpenTK.Platform.Native.X11.X11ClipboardComponent.Logger -- uid: OpenTK.Core.Platform.IPalComponent.Logger - commentId: P:OpenTK.Core.Platform.IPalComponent.Logger - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Logger +- uid: OpenTK.Platform.IPalComponent.Logger + commentId: P:OpenTK.Platform.IPalComponent.Logger + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Logger name: Logger nameWithType: IPalComponent.Logger - fullName: OpenTK.Core.Platform.IPalComponent.Logger + fullName: OpenTK.Platform.IPalComponent.Logger - uid: OpenTK.Core.Utility.ILogger commentId: T:OpenTK.Core.Utility.ILogger parent: OpenTK.Core.Utility @@ -846,65 +790,65 @@ references: href: OpenTK.Core.Utility.html - uid: OpenTK.Platform.Native.X11.X11ClipboardComponent.Initialize* commentId: Overload:OpenTK.Platform.Native.X11.X11ClipboardComponent.Initialize - href: OpenTK.Platform.Native.X11.X11ClipboardComponent.html#OpenTK_Platform_Native_X11_X11ClipboardComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + href: OpenTK.Platform.Native.X11.X11ClipboardComponent.html#OpenTK_Platform_Native_X11_X11ClipboardComponent_Initialize_OpenTK_Platform_ToolkitOptions_ name: Initialize nameWithType: X11ClipboardComponent.Initialize fullName: OpenTK.Platform.Native.X11.X11ClipboardComponent.Initialize -- uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - commentId: M:OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ +- uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ name: Initialize(ToolkitOptions) nameWithType: IPalComponent.Initialize(ToolkitOptions) - fullName: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + fullName: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) spec.csharp: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + - uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.ToolkitOptions + - uid: OpenTK.Platform.ToolkitOptions name: ToolkitOptions - href: OpenTK.Core.Platform.ToolkitOptions.html + href: OpenTK.Platform.ToolkitOptions.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + - uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.ToolkitOptions + - uid: OpenTK.Platform.ToolkitOptions name: ToolkitOptions - href: OpenTK.Core.Platform.ToolkitOptions.html + href: OpenTK.Platform.ToolkitOptions.html - name: ) -- uid: OpenTK.Core.Platform.ToolkitOptions - commentId: T:OpenTK.Core.Platform.ToolkitOptions - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.ToolkitOptions.html +- uid: OpenTK.Platform.ToolkitOptions + commentId: T:OpenTK.Platform.ToolkitOptions + parent: OpenTK.Platform + href: OpenTK.Platform.ToolkitOptions.html name: ToolkitOptions nameWithType: ToolkitOptions - fullName: OpenTK.Core.Platform.ToolkitOptions + fullName: OpenTK.Platform.ToolkitOptions - uid: OpenTK.Platform.Native.X11.X11ClipboardComponent.SupportedFormats* commentId: Overload:OpenTK.Platform.Native.X11.X11ClipboardComponent.SupportedFormats href: OpenTK.Platform.Native.X11.X11ClipboardComponent.html#OpenTK_Platform_Native_X11_X11ClipboardComponent_SupportedFormats name: SupportedFormats nameWithType: X11ClipboardComponent.SupportedFormats fullName: OpenTK.Platform.Native.X11.X11ClipboardComponent.SupportedFormats -- uid: OpenTK.Core.Platform.IClipboardComponent.SupportedFormats - commentId: P:OpenTK.Core.Platform.IClipboardComponent.SupportedFormats - parent: OpenTK.Core.Platform.IClipboardComponent - href: OpenTK.Core.Platform.IClipboardComponent.html#OpenTK_Core_Platform_IClipboardComponent_SupportedFormats +- uid: OpenTK.Platform.IClipboardComponent.SupportedFormats + commentId: P:OpenTK.Platform.IClipboardComponent.SupportedFormats + parent: OpenTK.Platform.IClipboardComponent + href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_SupportedFormats name: SupportedFormats nameWithType: IClipboardComponent.SupportedFormats - fullName: OpenTK.Core.Platform.IClipboardComponent.SupportedFormats -- uid: System.Collections.Generic.IReadOnlyList{OpenTK.Core.Platform.ClipboardFormat} - commentId: T:System.Collections.Generic.IReadOnlyList{OpenTK.Core.Platform.ClipboardFormat} + fullName: OpenTK.Platform.IClipboardComponent.SupportedFormats +- uid: System.Collections.Generic.IReadOnlyList{OpenTK.Platform.ClipboardFormat} + commentId: T:System.Collections.Generic.IReadOnlyList{OpenTK.Platform.ClipboardFormat} parent: System.Collections.Generic definition: System.Collections.Generic.IReadOnlyList`1 href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 name: IReadOnlyList nameWithType: IReadOnlyList - fullName: System.Collections.Generic.IReadOnlyList + fullName: System.Collections.Generic.IReadOnlyList nameWithType.vb: IReadOnlyList(Of ClipboardFormat) - fullName.vb: System.Collections.Generic.IReadOnlyList(Of OpenTK.Core.Platform.ClipboardFormat) + fullName.vb: System.Collections.Generic.IReadOnlyList(Of OpenTK.Platform.ClipboardFormat) name.vb: IReadOnlyList(Of ClipboardFormat) spec.csharp: - uid: System.Collections.Generic.IReadOnlyList`1 @@ -912,9 +856,9 @@ references: isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 - name: < - - uid: OpenTK.Core.Platform.ClipboardFormat + - uid: OpenTK.Platform.ClipboardFormat name: ClipboardFormat - href: OpenTK.Core.Platform.ClipboardFormat.html + href: OpenTK.Platform.ClipboardFormat.html - name: '>' spec.vb: - uid: System.Collections.Generic.IReadOnlyList`1 @@ -924,9 +868,9 @@ references: - name: ( - name: Of - name: " " - - uid: OpenTK.Core.Platform.ClipboardFormat + - uid: OpenTK.Platform.ClipboardFormat name: ClipboardFormat - href: OpenTK.Core.Platform.ClipboardFormat.html + href: OpenTK.Platform.ClipboardFormat.html - name: ) - uid: System.Collections.Generic.IReadOnlyList`1 commentId: T:System.Collections.Generic.IReadOnlyList`1 @@ -999,53 +943,53 @@ references: name: GetClipboardFormat nameWithType: X11ClipboardComponent.GetClipboardFormat fullName: OpenTK.Platform.Native.X11.X11ClipboardComponent.GetClipboardFormat -- uid: OpenTK.Core.Platform.IClipboardComponent.GetClipboardFormat - commentId: M:OpenTK.Core.Platform.IClipboardComponent.GetClipboardFormat - parent: OpenTK.Core.Platform.IClipboardComponent - href: OpenTK.Core.Platform.IClipboardComponent.html#OpenTK_Core_Platform_IClipboardComponent_GetClipboardFormat +- uid: OpenTK.Platform.IClipboardComponent.GetClipboardFormat + commentId: M:OpenTK.Platform.IClipboardComponent.GetClipboardFormat + parent: OpenTK.Platform.IClipboardComponent + href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_GetClipboardFormat name: GetClipboardFormat() nameWithType: IClipboardComponent.GetClipboardFormat() - fullName: OpenTK.Core.Platform.IClipboardComponent.GetClipboardFormat() + fullName: OpenTK.Platform.IClipboardComponent.GetClipboardFormat() spec.csharp: - - uid: OpenTK.Core.Platform.IClipboardComponent.GetClipboardFormat + - uid: OpenTK.Platform.IClipboardComponent.GetClipboardFormat name: GetClipboardFormat - href: OpenTK.Core.Platform.IClipboardComponent.html#OpenTK_Core_Platform_IClipboardComponent_GetClipboardFormat + href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_GetClipboardFormat - name: ( - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IClipboardComponent.GetClipboardFormat + - uid: OpenTK.Platform.IClipboardComponent.GetClipboardFormat name: GetClipboardFormat - href: OpenTK.Core.Platform.IClipboardComponent.html#OpenTK_Core_Platform_IClipboardComponent_GetClipboardFormat + href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_GetClipboardFormat - name: ( - name: ) -- uid: OpenTK.Core.Platform.ClipboardFormat - commentId: T:OpenTK.Core.Platform.ClipboardFormat - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.ClipboardFormat.html +- uid: OpenTK.Platform.ClipboardFormat + commentId: T:OpenTK.Platform.ClipboardFormat + parent: OpenTK.Platform + href: OpenTK.Platform.ClipboardFormat.html name: ClipboardFormat nameWithType: ClipboardFormat - fullName: OpenTK.Core.Platform.ClipboardFormat + fullName: OpenTK.Platform.ClipboardFormat - uid: OpenTK.Platform.Native.X11.X11ClipboardComponent.SetClipboardText* commentId: Overload:OpenTK.Platform.Native.X11.X11ClipboardComponent.SetClipboardText href: OpenTK.Platform.Native.X11.X11ClipboardComponent.html#OpenTK_Platform_Native_X11_X11ClipboardComponent_SetClipboardText_System_String_ name: SetClipboardText nameWithType: X11ClipboardComponent.SetClipboardText fullName: OpenTK.Platform.Native.X11.X11ClipboardComponent.SetClipboardText -- uid: OpenTK.Core.Platform.IClipboardComponent.SetClipboardText(System.String) - commentId: M:OpenTK.Core.Platform.IClipboardComponent.SetClipboardText(System.String) - parent: OpenTK.Core.Platform.IClipboardComponent +- uid: OpenTK.Platform.IClipboardComponent.SetClipboardText(System.String) + commentId: M:OpenTK.Platform.IClipboardComponent.SetClipboardText(System.String) + parent: OpenTK.Platform.IClipboardComponent isExternal: true - href: OpenTK.Core.Platform.IClipboardComponent.html#OpenTK_Core_Platform_IClipboardComponent_SetClipboardText_System_String_ + href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_SetClipboardText_System_String_ name: SetClipboardText(string) nameWithType: IClipboardComponent.SetClipboardText(string) - fullName: OpenTK.Core.Platform.IClipboardComponent.SetClipboardText(string) + fullName: OpenTK.Platform.IClipboardComponent.SetClipboardText(string) nameWithType.vb: IClipboardComponent.SetClipboardText(String) - fullName.vb: OpenTK.Core.Platform.IClipboardComponent.SetClipboardText(String) + fullName.vb: OpenTK.Platform.IClipboardComponent.SetClipboardText(String) name.vb: SetClipboardText(String) spec.csharp: - - uid: OpenTK.Core.Platform.IClipboardComponent.SetClipboardText(System.String) + - uid: OpenTK.Platform.IClipboardComponent.SetClipboardText(System.String) name: SetClipboardText - href: OpenTK.Core.Platform.IClipboardComponent.html#OpenTK_Core_Platform_IClipboardComponent_SetClipboardText_System_String_ + href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_SetClipboardText_System_String_ - name: ( - uid: System.String name: string @@ -1053,151 +997,151 @@ references: href: https://learn.microsoft.com/dotnet/api/system.string - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IClipboardComponent.SetClipboardText(System.String) + - uid: OpenTK.Platform.IClipboardComponent.SetClipboardText(System.String) name: SetClipboardText - href: OpenTK.Core.Platform.IClipboardComponent.html#OpenTK_Core_Platform_IClipboardComponent_SetClipboardText_System_String_ + href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_SetClipboardText_System_String_ - name: ( - uid: System.String name: String isExternal: true href: https://learn.microsoft.com/dotnet/api/system.string - name: ) -- uid: OpenTK.Core.Platform.ClipboardFormat.Text - commentId: F:OpenTK.Core.Platform.ClipboardFormat.Text - href: OpenTK.Core.Platform.ClipboardFormat.html#OpenTK_Core_Platform_ClipboardFormat_Text +- uid: OpenTK.Platform.ClipboardFormat.Text + commentId: F:OpenTK.Platform.ClipboardFormat.Text + href: OpenTK.Platform.ClipboardFormat.html#OpenTK_Platform_ClipboardFormat_Text name: Text nameWithType: ClipboardFormat.Text - fullName: OpenTK.Core.Platform.ClipboardFormat.Text + fullName: OpenTK.Platform.ClipboardFormat.Text - uid: OpenTK.Platform.Native.X11.X11ClipboardComponent.GetClipboardText* commentId: Overload:OpenTK.Platform.Native.X11.X11ClipboardComponent.GetClipboardText href: OpenTK.Platform.Native.X11.X11ClipboardComponent.html#OpenTK_Platform_Native_X11_X11ClipboardComponent_GetClipboardText name: GetClipboardText nameWithType: X11ClipboardComponent.GetClipboardText fullName: OpenTK.Platform.Native.X11.X11ClipboardComponent.GetClipboardText -- uid: OpenTK.Core.Platform.IClipboardComponent.GetClipboardText - commentId: M:OpenTK.Core.Platform.IClipboardComponent.GetClipboardText - parent: OpenTK.Core.Platform.IClipboardComponent - href: OpenTK.Core.Platform.IClipboardComponent.html#OpenTK_Core_Platform_IClipboardComponent_GetClipboardText +- uid: OpenTK.Platform.IClipboardComponent.GetClipboardText + commentId: M:OpenTK.Platform.IClipboardComponent.GetClipboardText + parent: OpenTK.Platform.IClipboardComponent + href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_GetClipboardText name: GetClipboardText() nameWithType: IClipboardComponent.GetClipboardText() - fullName: OpenTK.Core.Platform.IClipboardComponent.GetClipboardText() + fullName: OpenTK.Platform.IClipboardComponent.GetClipboardText() spec.csharp: - - uid: OpenTK.Core.Platform.IClipboardComponent.GetClipboardText + - uid: OpenTK.Platform.IClipboardComponent.GetClipboardText name: GetClipboardText - href: OpenTK.Core.Platform.IClipboardComponent.html#OpenTK_Core_Platform_IClipboardComponent_GetClipboardText + href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_GetClipboardText - name: ( - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IClipboardComponent.GetClipboardText + - uid: OpenTK.Platform.IClipboardComponent.GetClipboardText name: GetClipboardText - href: OpenTK.Core.Platform.IClipboardComponent.html#OpenTK_Core_Platform_IClipboardComponent_GetClipboardText + href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_GetClipboardText - name: ( - name: ) -- uid: OpenTK.Core.Platform.ClipboardFormat.Audio - commentId: F:OpenTK.Core.Platform.ClipboardFormat.Audio - href: OpenTK.Core.Platform.ClipboardFormat.html#OpenTK_Core_Platform_ClipboardFormat_Audio +- uid: OpenTK.Platform.ClipboardFormat.Audio + commentId: F:OpenTK.Platform.ClipboardFormat.Audio + href: OpenTK.Platform.ClipboardFormat.html#OpenTK_Platform_ClipboardFormat_Audio name: Audio nameWithType: ClipboardFormat.Audio - fullName: OpenTK.Core.Platform.ClipboardFormat.Audio + fullName: OpenTK.Platform.ClipboardFormat.Audio - uid: OpenTK.Platform.Native.X11.X11ClipboardComponent.GetClipboardAudio* commentId: Overload:OpenTK.Platform.Native.X11.X11ClipboardComponent.GetClipboardAudio href: OpenTK.Platform.Native.X11.X11ClipboardComponent.html#OpenTK_Platform_Native_X11_X11ClipboardComponent_GetClipboardAudio name: GetClipboardAudio nameWithType: X11ClipboardComponent.GetClipboardAudio fullName: OpenTK.Platform.Native.X11.X11ClipboardComponent.GetClipboardAudio -- uid: OpenTK.Core.Platform.IClipboardComponent.GetClipboardAudio - commentId: M:OpenTK.Core.Platform.IClipboardComponent.GetClipboardAudio - parent: OpenTK.Core.Platform.IClipboardComponent - href: OpenTK.Core.Platform.IClipboardComponent.html#OpenTK_Core_Platform_IClipboardComponent_GetClipboardAudio +- uid: OpenTK.Platform.IClipboardComponent.GetClipboardAudio + commentId: M:OpenTK.Platform.IClipboardComponent.GetClipboardAudio + parent: OpenTK.Platform.IClipboardComponent + href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_GetClipboardAudio name: GetClipboardAudio() nameWithType: IClipboardComponent.GetClipboardAudio() - fullName: OpenTK.Core.Platform.IClipboardComponent.GetClipboardAudio() + fullName: OpenTK.Platform.IClipboardComponent.GetClipboardAudio() spec.csharp: - - uid: OpenTK.Core.Platform.IClipboardComponent.GetClipboardAudio + - uid: OpenTK.Platform.IClipboardComponent.GetClipboardAudio name: GetClipboardAudio - href: OpenTK.Core.Platform.IClipboardComponent.html#OpenTK_Core_Platform_IClipboardComponent_GetClipboardAudio + href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_GetClipboardAudio - name: ( - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IClipboardComponent.GetClipboardAudio + - uid: OpenTK.Platform.IClipboardComponent.GetClipboardAudio name: GetClipboardAudio - href: OpenTK.Core.Platform.IClipboardComponent.html#OpenTK_Core_Platform_IClipboardComponent_GetClipboardAudio + href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_GetClipboardAudio - name: ( - name: ) -- uid: OpenTK.Core.Platform.AudioData - commentId: T:OpenTK.Core.Platform.AudioData - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.AudioData.html +- uid: OpenTK.Platform.AudioData + commentId: T:OpenTK.Platform.AudioData + parent: OpenTK.Platform + href: OpenTK.Platform.AudioData.html name: AudioData nameWithType: AudioData - fullName: OpenTK.Core.Platform.AudioData -- uid: OpenTK.Core.Platform.ClipboardFormat.Bitmap - commentId: F:OpenTK.Core.Platform.ClipboardFormat.Bitmap - href: OpenTK.Core.Platform.ClipboardFormat.html#OpenTK_Core_Platform_ClipboardFormat_Bitmap + fullName: OpenTK.Platform.AudioData +- uid: OpenTK.Platform.ClipboardFormat.Bitmap + commentId: F:OpenTK.Platform.ClipboardFormat.Bitmap + href: OpenTK.Platform.ClipboardFormat.html#OpenTK_Platform_ClipboardFormat_Bitmap name: Bitmap nameWithType: ClipboardFormat.Bitmap - fullName: OpenTK.Core.Platform.ClipboardFormat.Bitmap + fullName: OpenTK.Platform.ClipboardFormat.Bitmap - uid: OpenTK.Platform.Native.X11.X11ClipboardComponent.GetClipboardBitmap* commentId: Overload:OpenTK.Platform.Native.X11.X11ClipboardComponent.GetClipboardBitmap href: OpenTK.Platform.Native.X11.X11ClipboardComponent.html#OpenTK_Platform_Native_X11_X11ClipboardComponent_GetClipboardBitmap name: GetClipboardBitmap nameWithType: X11ClipboardComponent.GetClipboardBitmap fullName: OpenTK.Platform.Native.X11.X11ClipboardComponent.GetClipboardBitmap -- uid: OpenTK.Core.Platform.IClipboardComponent.GetClipboardBitmap - commentId: M:OpenTK.Core.Platform.IClipboardComponent.GetClipboardBitmap - parent: OpenTK.Core.Platform.IClipboardComponent - href: OpenTK.Core.Platform.IClipboardComponent.html#OpenTK_Core_Platform_IClipboardComponent_GetClipboardBitmap +- uid: OpenTK.Platform.IClipboardComponent.GetClipboardBitmap + commentId: M:OpenTK.Platform.IClipboardComponent.GetClipboardBitmap + parent: OpenTK.Platform.IClipboardComponent + href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_GetClipboardBitmap name: GetClipboardBitmap() nameWithType: IClipboardComponent.GetClipboardBitmap() - fullName: OpenTK.Core.Platform.IClipboardComponent.GetClipboardBitmap() + fullName: OpenTK.Platform.IClipboardComponent.GetClipboardBitmap() spec.csharp: - - uid: OpenTK.Core.Platform.IClipboardComponent.GetClipboardBitmap + - uid: OpenTK.Platform.IClipboardComponent.GetClipboardBitmap name: GetClipboardBitmap - href: OpenTK.Core.Platform.IClipboardComponent.html#OpenTK_Core_Platform_IClipboardComponent_GetClipboardBitmap + href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_GetClipboardBitmap - name: ( - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IClipboardComponent.GetClipboardBitmap + - uid: OpenTK.Platform.IClipboardComponent.GetClipboardBitmap name: GetClipboardBitmap - href: OpenTK.Core.Platform.IClipboardComponent.html#OpenTK_Core_Platform_IClipboardComponent_GetClipboardBitmap + href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_GetClipboardBitmap - name: ( - name: ) -- uid: OpenTK.Core.Platform.Bitmap - commentId: T:OpenTK.Core.Platform.Bitmap - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.Bitmap.html +- uid: OpenTK.Platform.Bitmap + commentId: T:OpenTK.Platform.Bitmap + parent: OpenTK.Platform + href: OpenTK.Platform.Bitmap.html name: Bitmap nameWithType: Bitmap - fullName: OpenTK.Core.Platform.Bitmap -- uid: OpenTK.Core.Platform.ClipboardFormat.Files - commentId: F:OpenTK.Core.Platform.ClipboardFormat.Files - href: OpenTK.Core.Platform.ClipboardFormat.html#OpenTK_Core_Platform_ClipboardFormat_Files + fullName: OpenTK.Platform.Bitmap +- uid: OpenTK.Platform.ClipboardFormat.Files + commentId: F:OpenTK.Platform.ClipboardFormat.Files + href: OpenTK.Platform.ClipboardFormat.html#OpenTK_Platform_ClipboardFormat_Files name: Files nameWithType: ClipboardFormat.Files - fullName: OpenTK.Core.Platform.ClipboardFormat.Files + fullName: OpenTK.Platform.ClipboardFormat.Files - uid: OpenTK.Platform.Native.X11.X11ClipboardComponent.GetClipboardFiles* commentId: Overload:OpenTK.Platform.Native.X11.X11ClipboardComponent.GetClipboardFiles href: OpenTK.Platform.Native.X11.X11ClipboardComponent.html#OpenTK_Platform_Native_X11_X11ClipboardComponent_GetClipboardFiles name: GetClipboardFiles nameWithType: X11ClipboardComponent.GetClipboardFiles fullName: OpenTK.Platform.Native.X11.X11ClipboardComponent.GetClipboardFiles -- uid: OpenTK.Core.Platform.IClipboardComponent.GetClipboardFiles - commentId: M:OpenTK.Core.Platform.IClipboardComponent.GetClipboardFiles - parent: OpenTK.Core.Platform.IClipboardComponent - href: OpenTK.Core.Platform.IClipboardComponent.html#OpenTK_Core_Platform_IClipboardComponent_GetClipboardFiles +- uid: OpenTK.Platform.IClipboardComponent.GetClipboardFiles + commentId: M:OpenTK.Platform.IClipboardComponent.GetClipboardFiles + parent: OpenTK.Platform.IClipboardComponent + href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_GetClipboardFiles name: GetClipboardFiles() nameWithType: IClipboardComponent.GetClipboardFiles() - fullName: OpenTK.Core.Platform.IClipboardComponent.GetClipboardFiles() + fullName: OpenTK.Platform.IClipboardComponent.GetClipboardFiles() spec.csharp: - - uid: OpenTK.Core.Platform.IClipboardComponent.GetClipboardFiles + - uid: OpenTK.Platform.IClipboardComponent.GetClipboardFiles name: GetClipboardFiles - href: OpenTK.Core.Platform.IClipboardComponent.html#OpenTK_Core_Platform_IClipboardComponent_GetClipboardFiles + href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_GetClipboardFiles - name: ( - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IClipboardComponent.GetClipboardFiles + - uid: OpenTK.Platform.IClipboardComponent.GetClipboardFiles name: GetClipboardFiles - href: OpenTK.Core.Platform.IClipboardComponent.html#OpenTK_Core_Platform_IClipboardComponent_GetClipboardFiles + href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_GetClipboardFiles - name: ( - name: ) - uid: System.Collections.Generic.List{System.String} diff --git a/api/OpenTK.Platform.Native.X11.X11CursorComponent.yml b/api/OpenTK.Platform.Native.X11.X11CursorComponent.yml index 4b9cdb2d..41d37d09 100644 --- a/api/OpenTK.Platform.Native.X11.X11CursorComponent.yml +++ b/api/OpenTK.Platform.Native.X11.X11CursorComponent.yml @@ -7,14 +7,14 @@ items: children: - OpenTK.Platform.Native.X11.X11CursorComponent.CanInspectSystemCursors - OpenTK.Platform.Native.X11.X11CursorComponent.CanLoadSystemCursors - - OpenTK.Platform.Native.X11.X11CursorComponent.Create(OpenTK.Core.Platform.SystemCursorType) + - OpenTK.Platform.Native.X11.X11CursorComponent.Create(OpenTK.Platform.SystemCursorType) - OpenTK.Platform.Native.X11.X11CursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.Int32,System.Int32) - OpenTK.Platform.Native.X11.X11CursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.ReadOnlySpan{System.Byte},System.Int32,System.Int32) - - OpenTK.Platform.Native.X11.X11CursorComponent.Destroy(OpenTK.Core.Platform.CursorHandle) - - OpenTK.Platform.Native.X11.X11CursorComponent.GetHotspot(OpenTK.Core.Platform.CursorHandle,System.Int32@,System.Int32@) - - OpenTK.Platform.Native.X11.X11CursorComponent.GetSize(OpenTK.Core.Platform.CursorHandle,System.Int32@,System.Int32@) - - OpenTK.Platform.Native.X11.X11CursorComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - - OpenTK.Platform.Native.X11.X11CursorComponent.IsSystemCursor(OpenTK.Core.Platform.CursorHandle) + - OpenTK.Platform.Native.X11.X11CursorComponent.Destroy(OpenTK.Platform.CursorHandle) + - OpenTK.Platform.Native.X11.X11CursorComponent.GetHotspot(OpenTK.Platform.CursorHandle,System.Int32@,System.Int32@) + - OpenTK.Platform.Native.X11.X11CursorComponent.GetSize(OpenTK.Platform.CursorHandle,System.Int32@,System.Int32@) + - OpenTK.Platform.Native.X11.X11CursorComponent.Initialize(OpenTK.Platform.ToolkitOptions) + - OpenTK.Platform.Native.X11.X11CursorComponent.IsSystemCursor(OpenTK.Platform.CursorHandle) - OpenTK.Platform.Native.X11.X11CursorComponent.Logger - OpenTK.Platform.Native.X11.X11CursorComponent.Name - OpenTK.Platform.Native.X11.X11CursorComponent.Provides @@ -26,15 +26,11 @@ items: fullName: OpenTK.Platform.Native.X11.X11CursorComponent type: Class source: - remote: - path: src/OpenTK.Platform.Native/X11/X11CursorComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: X11CursorComponent - path: opentk/src/OpenTK.Platform.Native/X11/X11CursorComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11CursorComponent.cs startLine: 17 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 syntax: content: 'public class X11CursorComponent : ICursorComponent, IPalComponent' @@ -42,8 +38,8 @@ items: inheritance: - System.Object implements: - - OpenTK.Core.Platform.ICursorComponent - - OpenTK.Core.Platform.IPalComponent + - OpenTK.Platform.ICursorComponent + - OpenTK.Platform.IPalComponent inheritedMembers: - System.Object.Equals(System.Object) - System.Object.Equals(System.Object,System.Object) @@ -64,15 +60,11 @@ items: fullName: OpenTK.Platform.Native.X11.X11CursorComponent.Name type: Property source: - remote: - path: src/OpenTK.Platform.Native/X11/X11CursorComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Name - path: opentk/src/OpenTK.Platform.Native/X11/X11CursorComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11CursorComponent.cs startLine: 20 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: Name of the abstraction layer component. example: [] @@ -84,7 +76,7 @@ items: content.vb: Public ReadOnly Property Name As String overload: OpenTK.Platform.Native.X11.X11CursorComponent.Name* implements: - - OpenTK.Core.Platform.IPalComponent.Name + - OpenTK.Platform.IPalComponent.Name - uid: OpenTK.Platform.Native.X11.X11CursorComponent.Provides commentId: P:OpenTK.Platform.Native.X11.X11CursorComponent.Provides id: Provides @@ -97,15 +89,11 @@ items: fullName: OpenTK.Platform.Native.X11.X11CursorComponent.Provides type: Property source: - remote: - path: src/OpenTK.Platform.Native/X11/X11CursorComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Provides - path: opentk/src/OpenTK.Platform.Native/X11/X11CursorComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11CursorComponent.cs startLine: 23 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: Specifies which PAL components this object provides. example: [] @@ -113,11 +101,11 @@ items: content: public PalComponents Provides { get; } parameters: [] return: - type: OpenTK.Core.Platform.PalComponents + type: OpenTK.Platform.PalComponents content.vb: Public ReadOnly Property Provides As PalComponents overload: OpenTK.Platform.Native.X11.X11CursorComponent.Provides* implements: - - OpenTK.Core.Platform.IPalComponent.Provides + - OpenTK.Platform.IPalComponent.Provides - uid: OpenTK.Platform.Native.X11.X11CursorComponent.Logger commentId: P:OpenTK.Platform.Native.X11.X11CursorComponent.Logger id: Logger @@ -130,15 +118,11 @@ items: fullName: OpenTK.Platform.Native.X11.X11CursorComponent.Logger type: Property source: - remote: - path: src/OpenTK.Platform.Native/X11/X11CursorComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Logger - path: opentk/src/OpenTK.Platform.Native/X11/X11CursorComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11CursorComponent.cs startLine: 26 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: Provides a logger for this component. example: [] @@ -150,28 +134,24 @@ items: content.vb: Public Property Logger As ILogger overload: OpenTK.Platform.Native.X11.X11CursorComponent.Logger* implements: - - OpenTK.Core.Platform.IPalComponent.Logger -- uid: OpenTK.Platform.Native.X11.X11CursorComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - commentId: M:OpenTK.Platform.Native.X11.X11CursorComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - id: Initialize(OpenTK.Core.Platform.ToolkitOptions) + - OpenTK.Platform.IPalComponent.Logger +- uid: OpenTK.Platform.Native.X11.X11CursorComponent.Initialize(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Native.X11.X11CursorComponent.Initialize(OpenTK.Platform.ToolkitOptions) + id: Initialize(OpenTK.Platform.ToolkitOptions) parent: OpenTK.Platform.Native.X11.X11CursorComponent langs: - csharp - vb name: Initialize(ToolkitOptions) nameWithType: X11CursorComponent.Initialize(ToolkitOptions) - fullName: OpenTK.Platform.Native.X11.X11CursorComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + fullName: OpenTK.Platform.Native.X11.X11CursorComponent.Initialize(OpenTK.Platform.ToolkitOptions) type: Method source: - remote: - path: src/OpenTK.Platform.Native/X11/X11CursorComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Initialize - path: opentk/src/OpenTK.Platform.Native/X11/X11CursorComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11CursorComponent.cs startLine: 31 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: Initialize the component. example: [] @@ -179,12 +159,12 @@ items: content: public void Initialize(ToolkitOptions options) parameters: - id: options - type: OpenTK.Core.Platform.ToolkitOptions + type: OpenTK.Platform.ToolkitOptions description: The options to initialize the component with. content.vb: Public Sub Initialize(options As ToolkitOptions) overload: OpenTK.Platform.Native.X11.X11CursorComponent.Initialize* implements: - - OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + - OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) - uid: OpenTK.Platform.Native.X11.X11CursorComponent.CanLoadSystemCursors commentId: P:OpenTK.Platform.Native.X11.X11CursorComponent.CanLoadSystemCursors id: CanLoadSystemCursors @@ -197,15 +177,11 @@ items: fullName: OpenTK.Platform.Native.X11.X11CursorComponent.CanLoadSystemCursors type: Property source: - remote: - path: src/OpenTK.Platform.Native/X11/X11CursorComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CanLoadSystemCursors - path: opentk/src/OpenTK.Platform.Native/X11/X11CursorComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11CursorComponent.cs startLine: 52 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: True if the driver can load system cursors. example: [] @@ -217,10 +193,10 @@ items: content.vb: Public ReadOnly Property CanLoadSystemCursors As Boolean overload: OpenTK.Platform.Native.X11.X11CursorComponent.CanLoadSystemCursors* seealso: - - linkId: OpenTK.Core.Platform.ICursorComponent.Create(OpenTK.Core.Platform.SystemCursorType) - commentId: M:OpenTK.Core.Platform.ICursorComponent.Create(OpenTK.Core.Platform.SystemCursorType) + - linkId: OpenTK.Platform.ICursorComponent.Create(OpenTK.Platform.SystemCursorType) + commentId: M:OpenTK.Platform.ICursorComponent.Create(OpenTK.Platform.SystemCursorType) implements: - - OpenTK.Core.Platform.ICursorComponent.CanLoadSystemCursors + - OpenTK.Platform.ICursorComponent.CanLoadSystemCursors - uid: OpenTK.Platform.Native.X11.X11CursorComponent.CanInspectSystemCursors commentId: P:OpenTK.Platform.Native.X11.X11CursorComponent.CanInspectSystemCursors id: CanInspectSystemCursors @@ -233,20 +209,16 @@ items: fullName: OpenTK.Platform.Native.X11.X11CursorComponent.CanInspectSystemCursors type: Property source: - remote: - path: src/OpenTK.Platform.Native/X11/X11CursorComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CanInspectSystemCursors - path: opentk/src/OpenTK.Platform.Native/X11/X11CursorComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11CursorComponent.cs startLine: 55 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: >- True if the backend supports inspecting system cursor handles. - If true, functions like and works on system cursors. + If true, functions like and works on system cursors. If false, these functions will fail. example: [] @@ -258,57 +230,53 @@ items: content.vb: Public ReadOnly Property CanInspectSystemCursors As Boolean overload: OpenTK.Platform.Native.X11.X11CursorComponent.CanInspectSystemCursors* seealso: - - linkId: OpenTK.Core.Platform.ICursorComponent.GetSize(OpenTK.Core.Platform.CursorHandle,System.Int32@,System.Int32@) - commentId: M:OpenTK.Core.Platform.ICursorComponent.GetSize(OpenTK.Core.Platform.CursorHandle,System.Int32@,System.Int32@) - - linkId: OpenTK.Core.Platform.ICursorComponent.GetHotspot(OpenTK.Core.Platform.CursorHandle,System.Int32@,System.Int32@) - commentId: M:OpenTK.Core.Platform.ICursorComponent.GetHotspot(OpenTK.Core.Platform.CursorHandle,System.Int32@,System.Int32@) + - linkId: OpenTK.Platform.ICursorComponent.GetSize(OpenTK.Platform.CursorHandle,System.Int32@,System.Int32@) + commentId: M:OpenTK.Platform.ICursorComponent.GetSize(OpenTK.Platform.CursorHandle,System.Int32@,System.Int32@) + - linkId: OpenTK.Platform.ICursorComponent.GetHotspot(OpenTK.Platform.CursorHandle,System.Int32@,System.Int32@) + commentId: M:OpenTK.Platform.ICursorComponent.GetHotspot(OpenTK.Platform.CursorHandle,System.Int32@,System.Int32@) implements: - - OpenTK.Core.Platform.ICursorComponent.CanInspectSystemCursors -- uid: OpenTK.Platform.Native.X11.X11CursorComponent.Create(OpenTK.Core.Platform.SystemCursorType) - commentId: M:OpenTK.Platform.Native.X11.X11CursorComponent.Create(OpenTK.Core.Platform.SystemCursorType) - id: Create(OpenTK.Core.Platform.SystemCursorType) + - OpenTK.Platform.ICursorComponent.CanInspectSystemCursors +- uid: OpenTK.Platform.Native.X11.X11CursorComponent.Create(OpenTK.Platform.SystemCursorType) + commentId: M:OpenTK.Platform.Native.X11.X11CursorComponent.Create(OpenTK.Platform.SystemCursorType) + id: Create(OpenTK.Platform.SystemCursorType) parent: OpenTK.Platform.Native.X11.X11CursorComponent langs: - csharp - vb name: Create(SystemCursorType) nameWithType: X11CursorComponent.Create(SystemCursorType) - fullName: OpenTK.Platform.Native.X11.X11CursorComponent.Create(OpenTK.Core.Platform.SystemCursorType) + fullName: OpenTK.Platform.Native.X11.X11CursorComponent.Create(OpenTK.Platform.SystemCursorType) type: Method source: - remote: - path: src/OpenTK.Platform.Native/X11/X11CursorComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Create - path: opentk/src/OpenTK.Platform.Native/X11/X11CursorComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11CursorComponent.cs startLine: 58 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: Create a standard system cursor. - remarks: This function is only supported if is true. + remarks: This function is only supported if is true. example: [] syntax: content: public CursorHandle Create(SystemCursorType systemCursor) parameters: - id: systemCursor - type: OpenTK.Core.Platform.SystemCursorType + type: OpenTK.Platform.SystemCursorType description: Type of the standard cursor to load. return: - type: OpenTK.Core.Platform.CursorHandle + type: OpenTK.Platform.CursorHandle description: A handle to the created cursor. content.vb: Public Function Create(systemCursor As SystemCursorType) As CursorHandle overload: OpenTK.Platform.Native.X11.X11CursorComponent.Create* exceptions: - - type: OpenTK.Core.Platform.PalNotImplementedException - commentId: T:OpenTK.Core.Platform.PalNotImplementedException - description: Driver does not implement this function. See . - - type: OpenTK.Core.Platform.PlatformException - commentId: T:OpenTK.Core.Platform.PlatformException + - type: OpenTK.Platform.PalNotImplementedException + commentId: T:OpenTK.Platform.PalNotImplementedException + description: Driver does not implement this function. See . + - type: OpenTK.Platform.PlatformException + commentId: T:OpenTK.Platform.PlatformException description: System does not provide cursor type selected by systemCursor. implements: - - OpenTK.Core.Platform.ICursorComponent.Create(OpenTK.Core.Platform.SystemCursorType) + - OpenTK.Platform.ICursorComponent.Create(OpenTK.Platform.SystemCursorType) - uid: OpenTK.Platform.Native.X11.X11CursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.Int32,System.Int32) commentId: M:OpenTK.Platform.Native.X11.X11CursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.Int32,System.Int32) id: Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.Int32,System.Int32) @@ -321,15 +289,11 @@ items: fullName: OpenTK.Platform.Native.X11.X11CursorComponent.Create(int, int, System.ReadOnlySpan, int, int) type: Method source: - remote: - path: src/OpenTK.Platform.Native/X11/X11CursorComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Create - path: opentk/src/OpenTK.Platform.Native/X11/X11CursorComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11CursorComponent.cs startLine: 152 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: Load a cursor image from memory. example: [] @@ -352,7 +316,7 @@ items: type: System.Int32 description: The y coordinate of the cursor hotspot. return: - type: OpenTK.Core.Platform.CursorHandle + type: OpenTK.Platform.CursorHandle description: A handle to the created cursor. content.vb: Public Function Create(width As Integer, height As Integer, image As ReadOnlySpan(Of Byte), hotspotX As Integer, hotspotY As Integer) As CursorHandle overload: OpenTK.Platform.Native.X11.X11CursorComponent.Create* @@ -364,7 +328,7 @@ items: commentId: T:System.ArgumentException description: image is smaller than specified dimensions. implements: - - OpenTK.Core.Platform.ICursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.Int32,System.Int32) + - OpenTK.Platform.ICursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.Int32,System.Int32) nameWithType.vb: X11CursorComponent.Create(Integer, Integer, ReadOnlySpan(Of Byte), Integer, Integer) fullName.vb: OpenTK.Platform.Native.X11.X11CursorComponent.Create(Integer, Integer, System.ReadOnlySpan(Of Byte), Integer, Integer) name.vb: Create(Integer, Integer, ReadOnlySpan(Of Byte), Integer, Integer) @@ -380,15 +344,11 @@ items: fullName: OpenTK.Platform.Native.X11.X11CursorComponent.Create(int, int, System.ReadOnlySpan, System.ReadOnlySpan, int, int) type: Method source: - remote: - path: src/OpenTK.Platform.Native/X11/X11CursorComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Create - path: opentk/src/OpenTK.Platform.Native/X11/X11CursorComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11CursorComponent.cs startLine: 184 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: Load a cursor image from memory. example: [] @@ -414,7 +374,7 @@ items: type: System.Int32 description: The y coordinate of the cursor hotspot. return: - type: OpenTK.Core.Platform.CursorHandle + type: OpenTK.Platform.CursorHandle description: A handle to the created handle. content.vb: Public Function Create(width As Integer, height As Integer, colorData As ReadOnlySpan(Of Byte), maskData As ReadOnlySpan(Of Byte), hotspotX As Integer, hotspotY As Integer) As CursorHandle overload: OpenTK.Platform.Native.X11.X11CursorComponent.Create* @@ -426,31 +386,27 @@ items: commentId: T:System.ArgumentException description: colorData or maskData is smaller than specified dimensions. implements: - - OpenTK.Core.Platform.ICursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.ReadOnlySpan{System.Byte},System.Int32,System.Int32) + - OpenTK.Platform.ICursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.ReadOnlySpan{System.Byte},System.Int32,System.Int32) nameWithType.vb: X11CursorComponent.Create(Integer, Integer, ReadOnlySpan(Of Byte), ReadOnlySpan(Of Byte), Integer, Integer) fullName.vb: OpenTK.Platform.Native.X11.X11CursorComponent.Create(Integer, Integer, System.ReadOnlySpan(Of Byte), System.ReadOnlySpan(Of Byte), Integer, Integer) name.vb: Create(Integer, Integer, ReadOnlySpan(Of Byte), ReadOnlySpan(Of Byte), Integer, Integer) -- uid: OpenTK.Platform.Native.X11.X11CursorComponent.Destroy(OpenTK.Core.Platform.CursorHandle) - commentId: M:OpenTK.Platform.Native.X11.X11CursorComponent.Destroy(OpenTK.Core.Platform.CursorHandle) - id: Destroy(OpenTK.Core.Platform.CursorHandle) +- uid: OpenTK.Platform.Native.X11.X11CursorComponent.Destroy(OpenTK.Platform.CursorHandle) + commentId: M:OpenTK.Platform.Native.X11.X11CursorComponent.Destroy(OpenTK.Platform.CursorHandle) + id: Destroy(OpenTK.Platform.CursorHandle) parent: OpenTK.Platform.Native.X11.X11CursorComponent langs: - csharp - vb name: Destroy(CursorHandle) nameWithType: X11CursorComponent.Destroy(CursorHandle) - fullName: OpenTK.Platform.Native.X11.X11CursorComponent.Destroy(OpenTK.Core.Platform.CursorHandle) + fullName: OpenTK.Platform.Native.X11.X11CursorComponent.Destroy(OpenTK.Platform.CursorHandle) type: Method source: - remote: - path: src/OpenTK.Platform.Native/X11/X11CursorComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Destroy - path: opentk/src/OpenTK.Platform.Native/X11/X11CursorComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11CursorComponent.cs startLine: 224 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: Destroy a cursor object. example: [] @@ -458,7 +414,7 @@ items: content: public void Destroy(CursorHandle handle) parameters: - id: handle - type: OpenTK.Core.Platform.CursorHandle + type: OpenTK.Platform.CursorHandle description: Handle to a cursor object. content.vb: Public Sub Destroy(handle As CursorHandle) overload: OpenTK.Platform.Native.X11.X11CursorComponent.Destroy* @@ -467,28 +423,24 @@ items: commentId: T:System.ArgumentNullException description: handle is null. implements: - - OpenTK.Core.Platform.ICursorComponent.Destroy(OpenTK.Core.Platform.CursorHandle) -- uid: OpenTK.Platform.Native.X11.X11CursorComponent.IsSystemCursor(OpenTK.Core.Platform.CursorHandle) - commentId: M:OpenTK.Platform.Native.X11.X11CursorComponent.IsSystemCursor(OpenTK.Core.Platform.CursorHandle) - id: IsSystemCursor(OpenTK.Core.Platform.CursorHandle) + - OpenTK.Platform.ICursorComponent.Destroy(OpenTK.Platform.CursorHandle) +- uid: OpenTK.Platform.Native.X11.X11CursorComponent.IsSystemCursor(OpenTK.Platform.CursorHandle) + commentId: M:OpenTK.Platform.Native.X11.X11CursorComponent.IsSystemCursor(OpenTK.Platform.CursorHandle) + id: IsSystemCursor(OpenTK.Platform.CursorHandle) parent: OpenTK.Platform.Native.X11.X11CursorComponent langs: - csharp - vb name: IsSystemCursor(CursorHandle) nameWithType: X11CursorComponent.IsSystemCursor(CursorHandle) - fullName: OpenTK.Platform.Native.X11.X11CursorComponent.IsSystemCursor(OpenTK.Core.Platform.CursorHandle) + fullName: OpenTK.Platform.Native.X11.X11CursorComponent.IsSystemCursor(OpenTK.Platform.CursorHandle) type: Method source: - remote: - path: src/OpenTK.Platform.Native/X11/X11CursorComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: IsSystemCursor - path: opentk/src/OpenTK.Platform.Native/X11/X11CursorComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11CursorComponent.cs startLine: 239 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: Returns true if this cursor is a system cursor. example: [] @@ -496,7 +448,7 @@ items: content: public bool IsSystemCursor(CursorHandle handle) parameters: - id: handle - type: OpenTK.Core.Platform.CursorHandle + type: OpenTK.Platform.CursorHandle description: Handle to a cursor. return: type: System.Boolean @@ -504,40 +456,36 @@ items: content.vb: Public Function IsSystemCursor(handle As CursorHandle) As Boolean overload: OpenTK.Platform.Native.X11.X11CursorComponent.IsSystemCursor* seealso: - - linkId: OpenTK.Core.Platform.ICursorComponent.Create(OpenTK.Core.Platform.SystemCursorType) - commentId: M:OpenTK.Core.Platform.ICursorComponent.Create(OpenTK.Core.Platform.SystemCursorType) + - linkId: OpenTK.Platform.ICursorComponent.Create(OpenTK.Platform.SystemCursorType) + commentId: M:OpenTK.Platform.ICursorComponent.Create(OpenTK.Platform.SystemCursorType) implements: - - OpenTK.Core.Platform.ICursorComponent.IsSystemCursor(OpenTK.Core.Platform.CursorHandle) -- uid: OpenTK.Platform.Native.X11.X11CursorComponent.GetSize(OpenTK.Core.Platform.CursorHandle,System.Int32@,System.Int32@) - commentId: M:OpenTK.Platform.Native.X11.X11CursorComponent.GetSize(OpenTK.Core.Platform.CursorHandle,System.Int32@,System.Int32@) - id: GetSize(OpenTK.Core.Platform.CursorHandle,System.Int32@,System.Int32@) + - OpenTK.Platform.ICursorComponent.IsSystemCursor(OpenTK.Platform.CursorHandle) +- uid: OpenTK.Platform.Native.X11.X11CursorComponent.GetSize(OpenTK.Platform.CursorHandle,System.Int32@,System.Int32@) + commentId: M:OpenTK.Platform.Native.X11.X11CursorComponent.GetSize(OpenTK.Platform.CursorHandle,System.Int32@,System.Int32@) + id: GetSize(OpenTK.Platform.CursorHandle,System.Int32@,System.Int32@) parent: OpenTK.Platform.Native.X11.X11CursorComponent langs: - csharp - vb name: GetSize(CursorHandle, out int, out int) nameWithType: X11CursorComponent.GetSize(CursorHandle, out int, out int) - fullName: OpenTK.Platform.Native.X11.X11CursorComponent.GetSize(OpenTK.Core.Platform.CursorHandle, out int, out int) + fullName: OpenTK.Platform.Native.X11.X11CursorComponent.GetSize(OpenTK.Platform.CursorHandle, out int, out int) type: Method source: - remote: - path: src/OpenTK.Platform.Native/X11/X11CursorComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetSize - path: opentk/src/OpenTK.Platform.Native/X11/X11CursorComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11CursorComponent.cs startLine: 247 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: Get the size of the cursor image. - remarks: If handle is a system cursor and is false this function will fail. + remarks: If handle is a system cursor and is false this function will fail. example: [] syntax: content: public void GetSize(CursorHandle handle, out int width, out int height) parameters: - id: handle - type: OpenTK.Core.Platform.CursorHandle + type: OpenTK.Platform.CursorHandle description: Handle to a cursor object. - id: width type: System.Int32 @@ -552,48 +500,44 @@ items: commentId: T:System.ArgumentNullException description: handle is null. seealso: - - linkId: OpenTK.Core.Platform.ICursorComponent.IsSystemCursor(OpenTK.Core.Platform.CursorHandle) - commentId: M:OpenTK.Core.Platform.ICursorComponent.IsSystemCursor(OpenTK.Core.Platform.CursorHandle) - - linkId: OpenTK.Core.Platform.ICursorComponent.CanInspectSystemCursors - commentId: P:OpenTK.Core.Platform.ICursorComponent.CanInspectSystemCursors + - linkId: OpenTK.Platform.ICursorComponent.IsSystemCursor(OpenTK.Platform.CursorHandle) + commentId: M:OpenTK.Platform.ICursorComponent.IsSystemCursor(OpenTK.Platform.CursorHandle) + - linkId: OpenTK.Platform.ICursorComponent.CanInspectSystemCursors + commentId: P:OpenTK.Platform.ICursorComponent.CanInspectSystemCursors implements: - - OpenTK.Core.Platform.ICursorComponent.GetSize(OpenTK.Core.Platform.CursorHandle,System.Int32@,System.Int32@) + - OpenTK.Platform.ICursorComponent.GetSize(OpenTK.Platform.CursorHandle,System.Int32@,System.Int32@) nameWithType.vb: X11CursorComponent.GetSize(CursorHandle, Integer, Integer) - fullName.vb: OpenTK.Platform.Native.X11.X11CursorComponent.GetSize(OpenTK.Core.Platform.CursorHandle, Integer, Integer) + fullName.vb: OpenTK.Platform.Native.X11.X11CursorComponent.GetSize(OpenTK.Platform.CursorHandle, Integer, Integer) name.vb: GetSize(CursorHandle, Integer, Integer) -- uid: OpenTK.Platform.Native.X11.X11CursorComponent.GetHotspot(OpenTK.Core.Platform.CursorHandle,System.Int32@,System.Int32@) - commentId: M:OpenTK.Platform.Native.X11.X11CursorComponent.GetHotspot(OpenTK.Core.Platform.CursorHandle,System.Int32@,System.Int32@) - id: GetHotspot(OpenTK.Core.Platform.CursorHandle,System.Int32@,System.Int32@) +- uid: OpenTK.Platform.Native.X11.X11CursorComponent.GetHotspot(OpenTK.Platform.CursorHandle,System.Int32@,System.Int32@) + commentId: M:OpenTK.Platform.Native.X11.X11CursorComponent.GetHotspot(OpenTK.Platform.CursorHandle,System.Int32@,System.Int32@) + id: GetHotspot(OpenTK.Platform.CursorHandle,System.Int32@,System.Int32@) parent: OpenTK.Platform.Native.X11.X11CursorComponent langs: - csharp - vb name: GetHotspot(CursorHandle, out int, out int) nameWithType: X11CursorComponent.GetHotspot(CursorHandle, out int, out int) - fullName: OpenTK.Platform.Native.X11.X11CursorComponent.GetHotspot(OpenTK.Core.Platform.CursorHandle, out int, out int) + fullName: OpenTK.Platform.Native.X11.X11CursorComponent.GetHotspot(OpenTK.Platform.CursorHandle, out int, out int) type: Method source: - remote: - path: src/OpenTK.Platform.Native/X11/X11CursorComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetHotspot - path: opentk/src/OpenTK.Platform.Native/X11/X11CursorComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11CursorComponent.cs startLine: 261 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: >- Get the hotspot location of the mouse cursor. - Getting the hotspot of a system cursor is not guaranteed to be possible, check before trying. - remarks: If handle is a system cursor and is false this function will fail. + Getting the hotspot of a system cursor is not guaranteed to be possible, check before trying. + remarks: If handle is a system cursor and is false this function will fail. example: [] syntax: content: public void GetHotspot(CursorHandle handle, out int x, out int y) parameters: - id: handle - type: OpenTK.Core.Platform.CursorHandle + type: OpenTK.Platform.CursorHandle description: Handle to a cursor object. - id: x type: System.Int32 @@ -608,14 +552,14 @@ items: commentId: T:System.ArgumentNullException description: handle is null. seealso: - - linkId: OpenTK.Core.Platform.ICursorComponent.IsSystemCursor(OpenTK.Core.Platform.CursorHandle) - commentId: M:OpenTK.Core.Platform.ICursorComponent.IsSystemCursor(OpenTK.Core.Platform.CursorHandle) - - linkId: OpenTK.Core.Platform.ICursorComponent.CanInspectSystemCursors - commentId: P:OpenTK.Core.Platform.ICursorComponent.CanInspectSystemCursors + - linkId: OpenTK.Platform.ICursorComponent.IsSystemCursor(OpenTK.Platform.CursorHandle) + commentId: M:OpenTK.Platform.ICursorComponent.IsSystemCursor(OpenTK.Platform.CursorHandle) + - linkId: OpenTK.Platform.ICursorComponent.CanInspectSystemCursors + commentId: P:OpenTK.Platform.ICursorComponent.CanInspectSystemCursors implements: - - OpenTK.Core.Platform.ICursorComponent.GetHotspot(OpenTK.Core.Platform.CursorHandle,System.Int32@,System.Int32@) + - OpenTK.Platform.ICursorComponent.GetHotspot(OpenTK.Platform.CursorHandle,System.Int32@,System.Int32@) nameWithType.vb: X11CursorComponent.GetHotspot(CursorHandle, Integer, Integer) - fullName.vb: OpenTK.Platform.Native.X11.X11CursorComponent.GetHotspot(OpenTK.Core.Platform.CursorHandle, Integer, Integer) + fullName.vb: OpenTK.Platform.Native.X11.X11CursorComponent.GetHotspot(OpenTK.Platform.CursorHandle, Integer, Integer) name.vb: GetHotspot(CursorHandle, Integer, Integer) references: - uid: OpenTK.Platform.Native.X11 @@ -667,20 +611,20 @@ references: nameWithType.vb: Object fullName.vb: Object name.vb: Object -- uid: OpenTK.Core.Platform.ICursorComponent - commentId: T:OpenTK.Core.Platform.ICursorComponent - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.ICursorComponent.html +- uid: OpenTK.Platform.ICursorComponent + commentId: T:OpenTK.Platform.ICursorComponent + parent: OpenTK.Platform + href: OpenTK.Platform.ICursorComponent.html name: ICursorComponent nameWithType: ICursorComponent - fullName: OpenTK.Core.Platform.ICursorComponent -- uid: OpenTK.Core.Platform.IPalComponent - commentId: T:OpenTK.Core.Platform.IPalComponent - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.IPalComponent.html + fullName: OpenTK.Platform.ICursorComponent +- uid: OpenTK.Platform.IPalComponent + commentId: T:OpenTK.Platform.IPalComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IPalComponent.html name: IPalComponent nameWithType: IPalComponent - fullName: OpenTK.Core.Platform.IPalComponent + fullName: OpenTK.Platform.IPalComponent - uid: System.Object.Equals(System.Object) commentId: M:System.Object.Equals(System.Object) parent: System.Object @@ -907,49 +851,41 @@ references: name: System nameWithType: System fullName: System -- uid: OpenTK.Core.Platform - commentId: N:OpenTK.Core.Platform +- uid: OpenTK.Platform + commentId: N:OpenTK.Platform href: OpenTK.html - name: OpenTK.Core.Platform - nameWithType: OpenTK.Core.Platform - fullName: OpenTK.Core.Platform + name: OpenTK.Platform + nameWithType: OpenTK.Platform + fullName: OpenTK.Platform spec.csharp: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html spec.vb: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html - uid: OpenTK.Platform.Native.X11.X11CursorComponent.Name* commentId: Overload:OpenTK.Platform.Native.X11.X11CursorComponent.Name href: OpenTK.Platform.Native.X11.X11CursorComponent.html#OpenTK_Platform_Native_X11_X11CursorComponent_Name name: Name nameWithType: X11CursorComponent.Name fullName: OpenTK.Platform.Native.X11.X11CursorComponent.Name -- uid: OpenTK.Core.Platform.IPalComponent.Name - commentId: P:OpenTK.Core.Platform.IPalComponent.Name - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Name +- uid: OpenTK.Platform.IPalComponent.Name + commentId: P:OpenTK.Platform.IPalComponent.Name + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Name name: Name nameWithType: IPalComponent.Name - fullName: OpenTK.Core.Platform.IPalComponent.Name + fullName: OpenTK.Platform.IPalComponent.Name - uid: System.String commentId: T:System.String parent: System @@ -967,33 +903,33 @@ references: name: Provides nameWithType: X11CursorComponent.Provides fullName: OpenTK.Platform.Native.X11.X11CursorComponent.Provides -- uid: OpenTK.Core.Platform.IPalComponent.Provides - commentId: P:OpenTK.Core.Platform.IPalComponent.Provides - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Provides +- uid: OpenTK.Platform.IPalComponent.Provides + commentId: P:OpenTK.Platform.IPalComponent.Provides + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Provides name: Provides nameWithType: IPalComponent.Provides - fullName: OpenTK.Core.Platform.IPalComponent.Provides -- uid: OpenTK.Core.Platform.PalComponents - commentId: T:OpenTK.Core.Platform.PalComponents - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.PalComponents.html + fullName: OpenTK.Platform.IPalComponent.Provides +- uid: OpenTK.Platform.PalComponents + commentId: T:OpenTK.Platform.PalComponents + parent: OpenTK.Platform + href: OpenTK.Platform.PalComponents.html name: PalComponents nameWithType: PalComponents - fullName: OpenTK.Core.Platform.PalComponents + fullName: OpenTK.Platform.PalComponents - uid: OpenTK.Platform.Native.X11.X11CursorComponent.Logger* commentId: Overload:OpenTK.Platform.Native.X11.X11CursorComponent.Logger href: OpenTK.Platform.Native.X11.X11CursorComponent.html#OpenTK_Platform_Native_X11_X11CursorComponent_Logger name: Logger nameWithType: X11CursorComponent.Logger fullName: OpenTK.Platform.Native.X11.X11CursorComponent.Logger -- uid: OpenTK.Core.Platform.IPalComponent.Logger - commentId: P:OpenTK.Core.Platform.IPalComponent.Logger - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Logger +- uid: OpenTK.Platform.IPalComponent.Logger + commentId: P:OpenTK.Platform.IPalComponent.Logger + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Logger name: Logger nameWithType: IPalComponent.Logger - fullName: OpenTK.Core.Platform.IPalComponent.Logger + fullName: OpenTK.Platform.IPalComponent.Logger - uid: OpenTK.Core.Utility.ILogger commentId: T:OpenTK.Core.Utility.ILogger parent: OpenTK.Core.Utility @@ -1033,66 +969,66 @@ references: href: OpenTK.Core.Utility.html - uid: OpenTK.Platform.Native.X11.X11CursorComponent.Initialize* commentId: Overload:OpenTK.Platform.Native.X11.X11CursorComponent.Initialize - href: OpenTK.Platform.Native.X11.X11CursorComponent.html#OpenTK_Platform_Native_X11_X11CursorComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + href: OpenTK.Platform.Native.X11.X11CursorComponent.html#OpenTK_Platform_Native_X11_X11CursorComponent_Initialize_OpenTK_Platform_ToolkitOptions_ name: Initialize nameWithType: X11CursorComponent.Initialize fullName: OpenTK.Platform.Native.X11.X11CursorComponent.Initialize -- uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - commentId: M:OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ +- uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ name: Initialize(ToolkitOptions) nameWithType: IPalComponent.Initialize(ToolkitOptions) - fullName: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + fullName: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) spec.csharp: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + - uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.ToolkitOptions + - uid: OpenTK.Platform.ToolkitOptions name: ToolkitOptions - href: OpenTK.Core.Platform.ToolkitOptions.html + href: OpenTK.Platform.ToolkitOptions.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + - uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.ToolkitOptions + - uid: OpenTK.Platform.ToolkitOptions name: ToolkitOptions - href: OpenTK.Core.Platform.ToolkitOptions.html + href: OpenTK.Platform.ToolkitOptions.html - name: ) -- uid: OpenTK.Core.Platform.ToolkitOptions - commentId: T:OpenTK.Core.Platform.ToolkitOptions - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.ToolkitOptions.html +- uid: OpenTK.Platform.ToolkitOptions + commentId: T:OpenTK.Platform.ToolkitOptions + parent: OpenTK.Platform + href: OpenTK.Platform.ToolkitOptions.html name: ToolkitOptions nameWithType: ToolkitOptions - fullName: OpenTK.Core.Platform.ToolkitOptions -- uid: OpenTK.Core.Platform.ICursorComponent.Create(OpenTK.Core.Platform.SystemCursorType) - commentId: M:OpenTK.Core.Platform.ICursorComponent.Create(OpenTK.Core.Platform.SystemCursorType) - parent: OpenTK.Core.Platform.ICursorComponent - href: OpenTK.Core.Platform.ICursorComponent.html#OpenTK_Core_Platform_ICursorComponent_Create_OpenTK_Core_Platform_SystemCursorType_ + fullName: OpenTK.Platform.ToolkitOptions +- uid: OpenTK.Platform.ICursorComponent.Create(OpenTK.Platform.SystemCursorType) + commentId: M:OpenTK.Platform.ICursorComponent.Create(OpenTK.Platform.SystemCursorType) + parent: OpenTK.Platform.ICursorComponent + href: OpenTK.Platform.ICursorComponent.html#OpenTK_Platform_ICursorComponent_Create_OpenTK_Platform_SystemCursorType_ name: Create(SystemCursorType) nameWithType: ICursorComponent.Create(SystemCursorType) - fullName: OpenTK.Core.Platform.ICursorComponent.Create(OpenTK.Core.Platform.SystemCursorType) + fullName: OpenTK.Platform.ICursorComponent.Create(OpenTK.Platform.SystemCursorType) spec.csharp: - - uid: OpenTK.Core.Platform.ICursorComponent.Create(OpenTK.Core.Platform.SystemCursorType) + - uid: OpenTK.Platform.ICursorComponent.Create(OpenTK.Platform.SystemCursorType) name: Create - href: OpenTK.Core.Platform.ICursorComponent.html#OpenTK_Core_Platform_ICursorComponent_Create_OpenTK_Core_Platform_SystemCursorType_ + href: OpenTK.Platform.ICursorComponent.html#OpenTK_Platform_ICursorComponent_Create_OpenTK_Platform_SystemCursorType_ - name: ( - - uid: OpenTK.Core.Platform.SystemCursorType + - uid: OpenTK.Platform.SystemCursorType name: SystemCursorType - href: OpenTK.Core.Platform.SystemCursorType.html + href: OpenTK.Platform.SystemCursorType.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.ICursorComponent.Create(OpenTK.Core.Platform.SystemCursorType) + - uid: OpenTK.Platform.ICursorComponent.Create(OpenTK.Platform.SystemCursorType) name: Create - href: OpenTK.Core.Platform.ICursorComponent.html#OpenTK_Core_Platform_ICursorComponent_Create_OpenTK_Core_Platform_SystemCursorType_ + href: OpenTK.Platform.ICursorComponent.html#OpenTK_Platform_ICursorComponent_Create_OpenTK_Platform_SystemCursorType_ - name: ( - - uid: OpenTK.Core.Platform.SystemCursorType + - uid: OpenTK.Platform.SystemCursorType name: SystemCursorType - href: OpenTK.Core.Platform.SystemCursorType.html + href: OpenTK.Platform.SystemCursorType.html - name: ) - uid: OpenTK.Platform.Native.X11.X11CursorComponent.CanLoadSystemCursors* commentId: Overload:OpenTK.Platform.Native.X11.X11CursorComponent.CanLoadSystemCursors @@ -1100,13 +1036,13 @@ references: name: CanLoadSystemCursors nameWithType: X11CursorComponent.CanLoadSystemCursors fullName: OpenTK.Platform.Native.X11.X11CursorComponent.CanLoadSystemCursors -- uid: OpenTK.Core.Platform.ICursorComponent.CanLoadSystemCursors - commentId: P:OpenTK.Core.Platform.ICursorComponent.CanLoadSystemCursors - parent: OpenTK.Core.Platform.ICursorComponent - href: OpenTK.Core.Platform.ICursorComponent.html#OpenTK_Core_Platform_ICursorComponent_CanLoadSystemCursors +- uid: OpenTK.Platform.ICursorComponent.CanLoadSystemCursors + commentId: P:OpenTK.Platform.ICursorComponent.CanLoadSystemCursors + parent: OpenTK.Platform.ICursorComponent + href: OpenTK.Platform.ICursorComponent.html#OpenTK_Platform_ICursorComponent_CanLoadSystemCursors name: CanLoadSystemCursors nameWithType: ICursorComponent.CanLoadSystemCursors - fullName: OpenTK.Core.Platform.ICursorComponent.CanLoadSystemCursors + fullName: OpenTK.Platform.ICursorComponent.CanLoadSystemCursors - uid: System.Boolean commentId: T:System.Boolean parent: System @@ -1118,25 +1054,25 @@ references: nameWithType.vb: Boolean fullName.vb: Boolean name.vb: Boolean -- uid: OpenTK.Core.Platform.ICursorComponent.GetSize(OpenTK.Core.Platform.CursorHandle,System.Int32@,System.Int32@) - commentId: M:OpenTK.Core.Platform.ICursorComponent.GetSize(OpenTK.Core.Platform.CursorHandle,System.Int32@,System.Int32@) - parent: OpenTK.Core.Platform.ICursorComponent +- uid: OpenTK.Platform.ICursorComponent.GetSize(OpenTK.Platform.CursorHandle,System.Int32@,System.Int32@) + commentId: M:OpenTK.Platform.ICursorComponent.GetSize(OpenTK.Platform.CursorHandle,System.Int32@,System.Int32@) + parent: OpenTK.Platform.ICursorComponent isExternal: true - href: OpenTK.Core.Platform.ICursorComponent.html#OpenTK_Core_Platform_ICursorComponent_GetSize_OpenTK_Core_Platform_CursorHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.ICursorComponent.html#OpenTK_Platform_ICursorComponent_GetSize_OpenTK_Platform_CursorHandle_System_Int32__System_Int32__ name: GetSize(CursorHandle, out int, out int) nameWithType: ICursorComponent.GetSize(CursorHandle, out int, out int) - fullName: OpenTK.Core.Platform.ICursorComponent.GetSize(OpenTK.Core.Platform.CursorHandle, out int, out int) + fullName: OpenTK.Platform.ICursorComponent.GetSize(OpenTK.Platform.CursorHandle, out int, out int) nameWithType.vb: ICursorComponent.GetSize(CursorHandle, Integer, Integer) - fullName.vb: OpenTK.Core.Platform.ICursorComponent.GetSize(OpenTK.Core.Platform.CursorHandle, Integer, Integer) + fullName.vb: OpenTK.Platform.ICursorComponent.GetSize(OpenTK.Platform.CursorHandle, Integer, Integer) name.vb: GetSize(CursorHandle, Integer, Integer) spec.csharp: - - uid: OpenTK.Core.Platform.ICursorComponent.GetSize(OpenTK.Core.Platform.CursorHandle,System.Int32@,System.Int32@) + - uid: OpenTK.Platform.ICursorComponent.GetSize(OpenTK.Platform.CursorHandle,System.Int32@,System.Int32@) name: GetSize - href: OpenTK.Core.Platform.ICursorComponent.html#OpenTK_Core_Platform_ICursorComponent_GetSize_OpenTK_Core_Platform_CursorHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.ICursorComponent.html#OpenTK_Platform_ICursorComponent_GetSize_OpenTK_Platform_CursorHandle_System_Int32__System_Int32__ - name: ( - - uid: OpenTK.Core.Platform.CursorHandle + - uid: OpenTK.Platform.CursorHandle name: CursorHandle - href: OpenTK.Core.Platform.CursorHandle.html + href: OpenTK.Platform.CursorHandle.html - name: ',' - name: " " - name: out @@ -1155,13 +1091,13 @@ references: href: https://learn.microsoft.com/dotnet/api/system.int32 - name: ) spec.vb: - - uid: OpenTK.Core.Platform.ICursorComponent.GetSize(OpenTK.Core.Platform.CursorHandle,System.Int32@,System.Int32@) + - uid: OpenTK.Platform.ICursorComponent.GetSize(OpenTK.Platform.CursorHandle,System.Int32@,System.Int32@) name: GetSize - href: OpenTK.Core.Platform.ICursorComponent.html#OpenTK_Core_Platform_ICursorComponent_GetSize_OpenTK_Core_Platform_CursorHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.ICursorComponent.html#OpenTK_Platform_ICursorComponent_GetSize_OpenTK_Platform_CursorHandle_System_Int32__System_Int32__ - name: ( - - uid: OpenTK.Core.Platform.CursorHandle + - uid: OpenTK.Platform.CursorHandle name: CursorHandle - href: OpenTK.Core.Platform.CursorHandle.html + href: OpenTK.Platform.CursorHandle.html - name: ',' - name: " " - uid: System.Int32 @@ -1175,25 +1111,25 @@ references: isExternal: true href: https://learn.microsoft.com/dotnet/api/system.int32 - name: ) -- uid: OpenTK.Core.Platform.ICursorComponent.GetHotspot(OpenTK.Core.Platform.CursorHandle,System.Int32@,System.Int32@) - commentId: M:OpenTK.Core.Platform.ICursorComponent.GetHotspot(OpenTK.Core.Platform.CursorHandle,System.Int32@,System.Int32@) - parent: OpenTK.Core.Platform.ICursorComponent +- uid: OpenTK.Platform.ICursorComponent.GetHotspot(OpenTK.Platform.CursorHandle,System.Int32@,System.Int32@) + commentId: M:OpenTK.Platform.ICursorComponent.GetHotspot(OpenTK.Platform.CursorHandle,System.Int32@,System.Int32@) + parent: OpenTK.Platform.ICursorComponent isExternal: true - href: OpenTK.Core.Platform.ICursorComponent.html#OpenTK_Core_Platform_ICursorComponent_GetHotspot_OpenTK_Core_Platform_CursorHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.ICursorComponent.html#OpenTK_Platform_ICursorComponent_GetHotspot_OpenTK_Platform_CursorHandle_System_Int32__System_Int32__ name: GetHotspot(CursorHandle, out int, out int) nameWithType: ICursorComponent.GetHotspot(CursorHandle, out int, out int) - fullName: OpenTK.Core.Platform.ICursorComponent.GetHotspot(OpenTK.Core.Platform.CursorHandle, out int, out int) + fullName: OpenTK.Platform.ICursorComponent.GetHotspot(OpenTK.Platform.CursorHandle, out int, out int) nameWithType.vb: ICursorComponent.GetHotspot(CursorHandle, Integer, Integer) - fullName.vb: OpenTK.Core.Platform.ICursorComponent.GetHotspot(OpenTK.Core.Platform.CursorHandle, Integer, Integer) + fullName.vb: OpenTK.Platform.ICursorComponent.GetHotspot(OpenTK.Platform.CursorHandle, Integer, Integer) name.vb: GetHotspot(CursorHandle, Integer, Integer) spec.csharp: - - uid: OpenTK.Core.Platform.ICursorComponent.GetHotspot(OpenTK.Core.Platform.CursorHandle,System.Int32@,System.Int32@) + - uid: OpenTK.Platform.ICursorComponent.GetHotspot(OpenTK.Platform.CursorHandle,System.Int32@,System.Int32@) name: GetHotspot - href: OpenTK.Core.Platform.ICursorComponent.html#OpenTK_Core_Platform_ICursorComponent_GetHotspot_OpenTK_Core_Platform_CursorHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.ICursorComponent.html#OpenTK_Platform_ICursorComponent_GetHotspot_OpenTK_Platform_CursorHandle_System_Int32__System_Int32__ - name: ( - - uid: OpenTK.Core.Platform.CursorHandle + - uid: OpenTK.Platform.CursorHandle name: CursorHandle - href: OpenTK.Core.Platform.CursorHandle.html + href: OpenTK.Platform.CursorHandle.html - name: ',' - name: " " - name: out @@ -1212,13 +1148,13 @@ references: href: https://learn.microsoft.com/dotnet/api/system.int32 - name: ) spec.vb: - - uid: OpenTK.Core.Platform.ICursorComponent.GetHotspot(OpenTK.Core.Platform.CursorHandle,System.Int32@,System.Int32@) + - uid: OpenTK.Platform.ICursorComponent.GetHotspot(OpenTK.Platform.CursorHandle,System.Int32@,System.Int32@) name: GetHotspot - href: OpenTK.Core.Platform.ICursorComponent.html#OpenTK_Core_Platform_ICursorComponent_GetHotspot_OpenTK_Core_Platform_CursorHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.ICursorComponent.html#OpenTK_Platform_ICursorComponent_GetHotspot_OpenTK_Platform_CursorHandle_System_Int32__System_Int32__ - name: ( - - uid: OpenTK.Core.Platform.CursorHandle + - uid: OpenTK.Platform.CursorHandle name: CursorHandle - href: OpenTK.Core.Platform.CursorHandle.html + href: OpenTK.Platform.CursorHandle.html - name: ',' - name: " " - uid: System.Int32 @@ -1238,45 +1174,45 @@ references: name: CanInspectSystemCursors nameWithType: X11CursorComponent.CanInspectSystemCursors fullName: OpenTK.Platform.Native.X11.X11CursorComponent.CanInspectSystemCursors -- uid: OpenTK.Core.Platform.ICursorComponent.CanInspectSystemCursors - commentId: P:OpenTK.Core.Platform.ICursorComponent.CanInspectSystemCursors - parent: OpenTK.Core.Platform.ICursorComponent - href: OpenTK.Core.Platform.ICursorComponent.html#OpenTK_Core_Platform_ICursorComponent_CanInspectSystemCursors +- uid: OpenTK.Platform.ICursorComponent.CanInspectSystemCursors + commentId: P:OpenTK.Platform.ICursorComponent.CanInspectSystemCursors + parent: OpenTK.Platform.ICursorComponent + href: OpenTK.Platform.ICursorComponent.html#OpenTK_Platform_ICursorComponent_CanInspectSystemCursors name: CanInspectSystemCursors nameWithType: ICursorComponent.CanInspectSystemCursors - fullName: OpenTK.Core.Platform.ICursorComponent.CanInspectSystemCursors -- uid: OpenTK.Core.Platform.PalNotImplementedException - commentId: T:OpenTK.Core.Platform.PalNotImplementedException - href: OpenTK.Core.Platform.PalNotImplementedException.html + fullName: OpenTK.Platform.ICursorComponent.CanInspectSystemCursors +- uid: OpenTK.Platform.PalNotImplementedException + commentId: T:OpenTK.Platform.PalNotImplementedException + href: OpenTK.Platform.PalNotImplementedException.html name: PalNotImplementedException nameWithType: PalNotImplementedException - fullName: OpenTK.Core.Platform.PalNotImplementedException -- uid: OpenTK.Core.Platform.PlatformException - commentId: T:OpenTK.Core.Platform.PlatformException - href: OpenTK.Core.Platform.PlatformException.html + fullName: OpenTK.Platform.PalNotImplementedException +- uid: OpenTK.Platform.PlatformException + commentId: T:OpenTK.Platform.PlatformException + href: OpenTK.Platform.PlatformException.html name: PlatformException nameWithType: PlatformException - fullName: OpenTK.Core.Platform.PlatformException + fullName: OpenTK.Platform.PlatformException - uid: OpenTK.Platform.Native.X11.X11CursorComponent.Create* commentId: Overload:OpenTK.Platform.Native.X11.X11CursorComponent.Create - href: OpenTK.Platform.Native.X11.X11CursorComponent.html#OpenTK_Platform_Native_X11_X11CursorComponent_Create_OpenTK_Core_Platform_SystemCursorType_ + href: OpenTK.Platform.Native.X11.X11CursorComponent.html#OpenTK_Platform_Native_X11_X11CursorComponent_Create_OpenTK_Platform_SystemCursorType_ name: Create nameWithType: X11CursorComponent.Create fullName: OpenTK.Platform.Native.X11.X11CursorComponent.Create -- uid: OpenTK.Core.Platform.SystemCursorType - commentId: T:OpenTK.Core.Platform.SystemCursorType - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.SystemCursorType.html +- uid: OpenTK.Platform.SystemCursorType + commentId: T:OpenTK.Platform.SystemCursorType + parent: OpenTK.Platform + href: OpenTK.Platform.SystemCursorType.html name: SystemCursorType nameWithType: SystemCursorType - fullName: OpenTK.Core.Platform.SystemCursorType -- uid: OpenTK.Core.Platform.CursorHandle - commentId: T:OpenTK.Core.Platform.CursorHandle - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.CursorHandle.html + fullName: OpenTK.Platform.SystemCursorType +- uid: OpenTK.Platform.CursorHandle + commentId: T:OpenTK.Platform.CursorHandle + parent: OpenTK.Platform + href: OpenTK.Platform.CursorHandle.html name: CursorHandle nameWithType: CursorHandle - fullName: OpenTK.Core.Platform.CursorHandle + fullName: OpenTK.Platform.CursorHandle - uid: System.ArgumentOutOfRangeException commentId: T:System.ArgumentOutOfRangeException isExternal: true @@ -1291,21 +1227,21 @@ references: name: ArgumentException nameWithType: ArgumentException fullName: System.ArgumentException -- uid: OpenTK.Core.Platform.ICursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.Int32,System.Int32) - commentId: M:OpenTK.Core.Platform.ICursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.Int32,System.Int32) - parent: OpenTK.Core.Platform.ICursorComponent +- uid: OpenTK.Platform.ICursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.Int32,System.Int32) + commentId: M:OpenTK.Platform.ICursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.Int32,System.Int32) + parent: OpenTK.Platform.ICursorComponent isExternal: true - href: OpenTK.Core.Platform.ICursorComponent.html#OpenTK_Core_Platform_ICursorComponent_Create_System_Int32_System_Int32_System_ReadOnlySpan_System_Byte__System_Int32_System_Int32_ + href: OpenTK.Platform.ICursorComponent.html#OpenTK_Platform_ICursorComponent_Create_System_Int32_System_Int32_System_ReadOnlySpan_System_Byte__System_Int32_System_Int32_ name: Create(int, int, ReadOnlySpan, int, int) nameWithType: ICursorComponent.Create(int, int, ReadOnlySpan, int, int) - fullName: OpenTK.Core.Platform.ICursorComponent.Create(int, int, System.ReadOnlySpan, int, int) + fullName: OpenTK.Platform.ICursorComponent.Create(int, int, System.ReadOnlySpan, int, int) nameWithType.vb: ICursorComponent.Create(Integer, Integer, ReadOnlySpan(Of Byte), Integer, Integer) - fullName.vb: OpenTK.Core.Platform.ICursorComponent.Create(Integer, Integer, System.ReadOnlySpan(Of Byte), Integer, Integer) + fullName.vb: OpenTK.Platform.ICursorComponent.Create(Integer, Integer, System.ReadOnlySpan(Of Byte), Integer, Integer) name.vb: Create(Integer, Integer, ReadOnlySpan(Of Byte), Integer, Integer) spec.csharp: - - uid: OpenTK.Core.Platform.ICursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.Int32,System.Int32) + - uid: OpenTK.Platform.ICursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.Int32,System.Int32) name: Create - href: OpenTK.Core.Platform.ICursorComponent.html#OpenTK_Core_Platform_ICursorComponent_Create_System_Int32_System_Int32_System_ReadOnlySpan_System_Byte__System_Int32_System_Int32_ + href: OpenTK.Platform.ICursorComponent.html#OpenTK_Platform_ICursorComponent_Create_System_Int32_System_Int32_System_ReadOnlySpan_System_Byte__System_Int32_System_Int32_ - name: ( - uid: System.Int32 name: int @@ -1343,9 +1279,9 @@ references: href: https://learn.microsoft.com/dotnet/api/system.int32 - name: ) spec.vb: - - uid: OpenTK.Core.Platform.ICursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.Int32,System.Int32) + - uid: OpenTK.Platform.ICursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.Int32,System.Int32) name: Create - href: OpenTK.Core.Platform.ICursorComponent.html#OpenTK_Core_Platform_ICursorComponent_Create_System_Int32_System_Int32_System_ReadOnlySpan_System_Byte__System_Int32_System_Int32_ + href: OpenTK.Platform.ICursorComponent.html#OpenTK_Platform_ICursorComponent_Create_System_Int32_System_Int32_System_ReadOnlySpan_System_Byte__System_Int32_System_Int32_ - name: ( - uid: System.Int32 name: Integer @@ -1458,21 +1394,21 @@ references: - name: " " - name: T - name: ) -- uid: OpenTK.Core.Platform.ICursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.ReadOnlySpan{System.Byte},System.Int32,System.Int32) - commentId: M:OpenTK.Core.Platform.ICursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.ReadOnlySpan{System.Byte},System.Int32,System.Int32) - parent: OpenTK.Core.Platform.ICursorComponent +- uid: OpenTK.Platform.ICursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.ReadOnlySpan{System.Byte},System.Int32,System.Int32) + commentId: M:OpenTK.Platform.ICursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.ReadOnlySpan{System.Byte},System.Int32,System.Int32) + parent: OpenTK.Platform.ICursorComponent isExternal: true - href: OpenTK.Core.Platform.ICursorComponent.html#OpenTK_Core_Platform_ICursorComponent_Create_System_Int32_System_Int32_System_ReadOnlySpan_System_Byte__System_ReadOnlySpan_System_Byte__System_Int32_System_Int32_ + href: OpenTK.Platform.ICursorComponent.html#OpenTK_Platform_ICursorComponent_Create_System_Int32_System_Int32_System_ReadOnlySpan_System_Byte__System_ReadOnlySpan_System_Byte__System_Int32_System_Int32_ name: Create(int, int, ReadOnlySpan, ReadOnlySpan, int, int) nameWithType: ICursorComponent.Create(int, int, ReadOnlySpan, ReadOnlySpan, int, int) - fullName: OpenTK.Core.Platform.ICursorComponent.Create(int, int, System.ReadOnlySpan, System.ReadOnlySpan, int, int) + fullName: OpenTK.Platform.ICursorComponent.Create(int, int, System.ReadOnlySpan, System.ReadOnlySpan, int, int) nameWithType.vb: ICursorComponent.Create(Integer, Integer, ReadOnlySpan(Of Byte), ReadOnlySpan(Of Byte), Integer, Integer) - fullName.vb: OpenTK.Core.Platform.ICursorComponent.Create(Integer, Integer, System.ReadOnlySpan(Of Byte), System.ReadOnlySpan(Of Byte), Integer, Integer) + fullName.vb: OpenTK.Platform.ICursorComponent.Create(Integer, Integer, System.ReadOnlySpan(Of Byte), System.ReadOnlySpan(Of Byte), Integer, Integer) name.vb: Create(Integer, Integer, ReadOnlySpan(Of Byte), ReadOnlySpan(Of Byte), Integer, Integer) spec.csharp: - - uid: OpenTK.Core.Platform.ICursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.ReadOnlySpan{System.Byte},System.Int32,System.Int32) + - uid: OpenTK.Platform.ICursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.ReadOnlySpan{System.Byte},System.Int32,System.Int32) name: Create - href: OpenTK.Core.Platform.ICursorComponent.html#OpenTK_Core_Platform_ICursorComponent_Create_System_Int32_System_Int32_System_ReadOnlySpan_System_Byte__System_ReadOnlySpan_System_Byte__System_Int32_System_Int32_ + href: OpenTK.Platform.ICursorComponent.html#OpenTK_Platform_ICursorComponent_Create_System_Int32_System_Int32_System_ReadOnlySpan_System_Byte__System_ReadOnlySpan_System_Byte__System_Int32_System_Int32_ - name: ( - uid: System.Int32 name: int @@ -1522,9 +1458,9 @@ references: href: https://learn.microsoft.com/dotnet/api/system.int32 - name: ) spec.vb: - - uid: OpenTK.Core.Platform.ICursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.ReadOnlySpan{System.Byte},System.Int32,System.Int32) + - uid: OpenTK.Platform.ICursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.ReadOnlySpan{System.Byte},System.Int32,System.Int32) name: Create - href: OpenTK.Core.Platform.ICursorComponent.html#OpenTK_Core_Platform_ICursorComponent_Create_System_Int32_System_Int32_System_ReadOnlySpan_System_Byte__System_ReadOnlySpan_System_Byte__System_Int32_System_Int32_ + href: OpenTK.Platform.ICursorComponent.html#OpenTK_Platform_ICursorComponent_Create_System_Int32_System_Int32_System_ReadOnlySpan_System_Byte__System_ReadOnlySpan_System_Byte__System_Int32_System_Int32_ - name: ( - uid: System.Int32 name: Integer @@ -1586,75 +1522,75 @@ references: fullName: System.ArgumentNullException - uid: OpenTK.Platform.Native.X11.X11CursorComponent.Destroy* commentId: Overload:OpenTK.Platform.Native.X11.X11CursorComponent.Destroy - href: OpenTK.Platform.Native.X11.X11CursorComponent.html#OpenTK_Platform_Native_X11_X11CursorComponent_Destroy_OpenTK_Core_Platform_CursorHandle_ + href: OpenTK.Platform.Native.X11.X11CursorComponent.html#OpenTK_Platform_Native_X11_X11CursorComponent_Destroy_OpenTK_Platform_CursorHandle_ name: Destroy nameWithType: X11CursorComponent.Destroy fullName: OpenTK.Platform.Native.X11.X11CursorComponent.Destroy -- uid: OpenTK.Core.Platform.ICursorComponent.Destroy(OpenTK.Core.Platform.CursorHandle) - commentId: M:OpenTK.Core.Platform.ICursorComponent.Destroy(OpenTK.Core.Platform.CursorHandle) - parent: OpenTK.Core.Platform.ICursorComponent - href: OpenTK.Core.Platform.ICursorComponent.html#OpenTK_Core_Platform_ICursorComponent_Destroy_OpenTK_Core_Platform_CursorHandle_ +- uid: OpenTK.Platform.ICursorComponent.Destroy(OpenTK.Platform.CursorHandle) + commentId: M:OpenTK.Platform.ICursorComponent.Destroy(OpenTK.Platform.CursorHandle) + parent: OpenTK.Platform.ICursorComponent + href: OpenTK.Platform.ICursorComponent.html#OpenTK_Platform_ICursorComponent_Destroy_OpenTK_Platform_CursorHandle_ name: Destroy(CursorHandle) nameWithType: ICursorComponent.Destroy(CursorHandle) - fullName: OpenTK.Core.Platform.ICursorComponent.Destroy(OpenTK.Core.Platform.CursorHandle) + fullName: OpenTK.Platform.ICursorComponent.Destroy(OpenTK.Platform.CursorHandle) spec.csharp: - - uid: OpenTK.Core.Platform.ICursorComponent.Destroy(OpenTK.Core.Platform.CursorHandle) + - uid: OpenTK.Platform.ICursorComponent.Destroy(OpenTK.Platform.CursorHandle) name: Destroy - href: OpenTK.Core.Platform.ICursorComponent.html#OpenTK_Core_Platform_ICursorComponent_Destroy_OpenTK_Core_Platform_CursorHandle_ + href: OpenTK.Platform.ICursorComponent.html#OpenTK_Platform_ICursorComponent_Destroy_OpenTK_Platform_CursorHandle_ - name: ( - - uid: OpenTK.Core.Platform.CursorHandle + - uid: OpenTK.Platform.CursorHandle name: CursorHandle - href: OpenTK.Core.Platform.CursorHandle.html + href: OpenTK.Platform.CursorHandle.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.ICursorComponent.Destroy(OpenTK.Core.Platform.CursorHandle) + - uid: OpenTK.Platform.ICursorComponent.Destroy(OpenTK.Platform.CursorHandle) name: Destroy - href: OpenTK.Core.Platform.ICursorComponent.html#OpenTK_Core_Platform_ICursorComponent_Destroy_OpenTK_Core_Platform_CursorHandle_ + href: OpenTK.Platform.ICursorComponent.html#OpenTK_Platform_ICursorComponent_Destroy_OpenTK_Platform_CursorHandle_ - name: ( - - uid: OpenTK.Core.Platform.CursorHandle + - uid: OpenTK.Platform.CursorHandle name: CursorHandle - href: OpenTK.Core.Platform.CursorHandle.html + href: OpenTK.Platform.CursorHandle.html - name: ) - uid: OpenTK.Platform.Native.X11.X11CursorComponent.IsSystemCursor* commentId: Overload:OpenTK.Platform.Native.X11.X11CursorComponent.IsSystemCursor - href: OpenTK.Platform.Native.X11.X11CursorComponent.html#OpenTK_Platform_Native_X11_X11CursorComponent_IsSystemCursor_OpenTK_Core_Platform_CursorHandle_ + href: OpenTK.Platform.Native.X11.X11CursorComponent.html#OpenTK_Platform_Native_X11_X11CursorComponent_IsSystemCursor_OpenTK_Platform_CursorHandle_ name: IsSystemCursor nameWithType: X11CursorComponent.IsSystemCursor fullName: OpenTK.Platform.Native.X11.X11CursorComponent.IsSystemCursor -- uid: OpenTK.Core.Platform.ICursorComponent.IsSystemCursor(OpenTK.Core.Platform.CursorHandle) - commentId: M:OpenTK.Core.Platform.ICursorComponent.IsSystemCursor(OpenTK.Core.Platform.CursorHandle) - parent: OpenTK.Core.Platform.ICursorComponent - href: OpenTK.Core.Platform.ICursorComponent.html#OpenTK_Core_Platform_ICursorComponent_IsSystemCursor_OpenTK_Core_Platform_CursorHandle_ +- uid: OpenTK.Platform.ICursorComponent.IsSystemCursor(OpenTK.Platform.CursorHandle) + commentId: M:OpenTK.Platform.ICursorComponent.IsSystemCursor(OpenTK.Platform.CursorHandle) + parent: OpenTK.Platform.ICursorComponent + href: OpenTK.Platform.ICursorComponent.html#OpenTK_Platform_ICursorComponent_IsSystemCursor_OpenTK_Platform_CursorHandle_ name: IsSystemCursor(CursorHandle) nameWithType: ICursorComponent.IsSystemCursor(CursorHandle) - fullName: OpenTK.Core.Platform.ICursorComponent.IsSystemCursor(OpenTK.Core.Platform.CursorHandle) + fullName: OpenTK.Platform.ICursorComponent.IsSystemCursor(OpenTK.Platform.CursorHandle) spec.csharp: - - uid: OpenTK.Core.Platform.ICursorComponent.IsSystemCursor(OpenTK.Core.Platform.CursorHandle) + - uid: OpenTK.Platform.ICursorComponent.IsSystemCursor(OpenTK.Platform.CursorHandle) name: IsSystemCursor - href: OpenTK.Core.Platform.ICursorComponent.html#OpenTK_Core_Platform_ICursorComponent_IsSystemCursor_OpenTK_Core_Platform_CursorHandle_ + href: OpenTK.Platform.ICursorComponent.html#OpenTK_Platform_ICursorComponent_IsSystemCursor_OpenTK_Platform_CursorHandle_ - name: ( - - uid: OpenTK.Core.Platform.CursorHandle + - uid: OpenTK.Platform.CursorHandle name: CursorHandle - href: OpenTK.Core.Platform.CursorHandle.html + href: OpenTK.Platform.CursorHandle.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.ICursorComponent.IsSystemCursor(OpenTK.Core.Platform.CursorHandle) + - uid: OpenTK.Platform.ICursorComponent.IsSystemCursor(OpenTK.Platform.CursorHandle) name: IsSystemCursor - href: OpenTK.Core.Platform.ICursorComponent.html#OpenTK_Core_Platform_ICursorComponent_IsSystemCursor_OpenTK_Core_Platform_CursorHandle_ + href: OpenTK.Platform.ICursorComponent.html#OpenTK_Platform_ICursorComponent_IsSystemCursor_OpenTK_Platform_CursorHandle_ - name: ( - - uid: OpenTK.Core.Platform.CursorHandle + - uid: OpenTK.Platform.CursorHandle name: CursorHandle - href: OpenTK.Core.Platform.CursorHandle.html + href: OpenTK.Platform.CursorHandle.html - name: ) - uid: OpenTK.Platform.Native.X11.X11CursorComponent.GetSize* commentId: Overload:OpenTK.Platform.Native.X11.X11CursorComponent.GetSize - href: OpenTK.Platform.Native.X11.X11CursorComponent.html#OpenTK_Platform_Native_X11_X11CursorComponent_GetSize_OpenTK_Core_Platform_CursorHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.Native.X11.X11CursorComponent.html#OpenTK_Platform_Native_X11_X11CursorComponent_GetSize_OpenTK_Platform_CursorHandle_System_Int32__System_Int32__ name: GetSize nameWithType: X11CursorComponent.GetSize fullName: OpenTK.Platform.Native.X11.X11CursorComponent.GetSize - uid: OpenTK.Platform.Native.X11.X11CursorComponent.GetHotspot* commentId: Overload:OpenTK.Platform.Native.X11.X11CursorComponent.GetHotspot - href: OpenTK.Platform.Native.X11.X11CursorComponent.html#OpenTK_Platform_Native_X11_X11CursorComponent_GetHotspot_OpenTK_Core_Platform_CursorHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.Native.X11.X11CursorComponent.html#OpenTK_Platform_Native_X11_X11CursorComponent_GetHotspot_OpenTK_Platform_CursorHandle_System_Int32__System_Int32__ name: GetHotspot nameWithType: X11CursorComponent.GetHotspot fullName: OpenTK.Platform.Native.X11.X11CursorComponent.GetHotspot diff --git a/api/OpenTK.Platform.Native.X11.X11DialogComponent.yml b/api/OpenTK.Platform.Native.X11.X11DialogComponent.yml new file mode 100644 index 00000000..78665017 --- /dev/null +++ b/api/OpenTK.Platform.Native.X11.X11DialogComponent.yml @@ -0,0 +1,1255 @@ +### YamlMime:ManagedReference +items: +- uid: OpenTK.Platform.Native.X11.X11DialogComponent + commentId: T:OpenTK.Platform.Native.X11.X11DialogComponent + id: X11DialogComponent + parent: OpenTK.Platform.Native.X11 + children: + - OpenTK.Platform.Native.X11.X11DialogComponent.CanTargetFolders + - OpenTK.Platform.Native.X11.X11DialogComponent.Initialize(OpenTK.Platform.ToolkitOptions) + - OpenTK.Platform.Native.X11.X11DialogComponent.Logger + - OpenTK.Platform.Native.X11.X11DialogComponent.Name + - OpenTK.Platform.Native.X11.X11DialogComponent.Provides + - OpenTK.Platform.Native.X11.X11DialogComponent.ShowMessageBox(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.MessageBoxType,OpenTK.Platform.IconHandle) + - OpenTK.Platform.Native.X11.X11DialogComponent.ShowOpenDialog(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.DialogFileFilter[],OpenTK.Platform.OpenDialogOptions) + - OpenTK.Platform.Native.X11.X11DialogComponent.ShowSaveDialog(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.DialogFileFilter[],OpenTK.Platform.SaveDialogOptions) + langs: + - csharp + - vb + name: X11DialogComponent + nameWithType: X11DialogComponent + fullName: OpenTK.Platform.Native.X11.X11DialogComponent + type: Class + source: + id: X11DialogComponent + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11DialogComponent.cs + startLine: 15 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform.Native.X11 + syntax: + content: 'public class X11DialogComponent : IDialogComponent, IPalComponent' + content.vb: Public Class X11DialogComponent Implements IDialogComponent, IPalComponent + inheritance: + - System.Object + implements: + - OpenTK.Platform.IDialogComponent + - OpenTK.Platform.IPalComponent + inheritedMembers: + - System.Object.Equals(System.Object) + - System.Object.Equals(System.Object,System.Object) + - System.Object.GetHashCode + - System.Object.GetType + - System.Object.MemberwiseClone + - System.Object.ReferenceEquals(System.Object,System.Object) + - System.Object.ToString +- uid: OpenTK.Platform.Native.X11.X11DialogComponent.Name + commentId: P:OpenTK.Platform.Native.X11.X11DialogComponent.Name + id: Name + parent: OpenTK.Platform.Native.X11.X11DialogComponent + langs: + - csharp + - vb + name: Name + nameWithType: X11DialogComponent.Name + fullName: OpenTK.Platform.Native.X11.X11DialogComponent.Name + type: Property + source: + id: Name + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11DialogComponent.cs + startLine: 18 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform.Native.X11 + summary: Name of the abstraction layer component. + example: [] + syntax: + content: public string Name { get; } + parameters: [] + return: + type: System.String + content.vb: Public ReadOnly Property Name As String + overload: OpenTK.Platform.Native.X11.X11DialogComponent.Name* + implements: + - OpenTK.Platform.IPalComponent.Name +- uid: OpenTK.Platform.Native.X11.X11DialogComponent.Provides + commentId: P:OpenTK.Platform.Native.X11.X11DialogComponent.Provides + id: Provides + parent: OpenTK.Platform.Native.X11.X11DialogComponent + langs: + - csharp + - vb + name: Provides + nameWithType: X11DialogComponent.Provides + fullName: OpenTK.Platform.Native.X11.X11DialogComponent.Provides + type: Property + source: + id: Provides + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11DialogComponent.cs + startLine: 21 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform.Native.X11 + summary: Specifies which PAL components this object provides. + example: [] + syntax: + content: public PalComponents Provides { get; } + parameters: [] + return: + type: OpenTK.Platform.PalComponents + content.vb: Public ReadOnly Property Provides As PalComponents + overload: OpenTK.Platform.Native.X11.X11DialogComponent.Provides* + implements: + - OpenTK.Platform.IPalComponent.Provides +- uid: OpenTK.Platform.Native.X11.X11DialogComponent.Logger + commentId: P:OpenTK.Platform.Native.X11.X11DialogComponent.Logger + id: Logger + parent: OpenTK.Platform.Native.X11.X11DialogComponent + langs: + - csharp + - vb + name: Logger + nameWithType: X11DialogComponent.Logger + fullName: OpenTK.Platform.Native.X11.X11DialogComponent.Logger + type: Property + source: + id: Logger + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11DialogComponent.cs + startLine: 24 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform.Native.X11 + summary: Provides a logger for this component. + example: [] + syntax: + content: public ILogger? Logger { get; set; } + parameters: [] + return: + type: OpenTK.Core.Utility.ILogger + content.vb: Public Property Logger As ILogger + overload: OpenTK.Platform.Native.X11.X11DialogComponent.Logger* + implements: + - OpenTK.Platform.IPalComponent.Logger +- uid: OpenTK.Platform.Native.X11.X11DialogComponent.Initialize(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Native.X11.X11DialogComponent.Initialize(OpenTK.Platform.ToolkitOptions) + id: Initialize(OpenTK.Platform.ToolkitOptions) + parent: OpenTK.Platform.Native.X11.X11DialogComponent + langs: + - csharp + - vb + name: Initialize(ToolkitOptions) + nameWithType: X11DialogComponent.Initialize(ToolkitOptions) + fullName: OpenTK.Platform.Native.X11.X11DialogComponent.Initialize(OpenTK.Platform.ToolkitOptions) + type: Method + source: + id: Initialize + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11DialogComponent.cs + startLine: 31 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform.Native.X11 + summary: Initialize the component. + example: [] + syntax: + content: public void Initialize(ToolkitOptions options) + parameters: + - id: options + type: OpenTK.Platform.ToolkitOptions + description: The options to initialize the component with. + content.vb: Public Sub Initialize(options As ToolkitOptions) + overload: OpenTK.Platform.Native.X11.X11DialogComponent.Initialize* + implements: + - OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) +- uid: OpenTK.Platform.Native.X11.X11DialogComponent.CanTargetFolders + commentId: P:OpenTK.Platform.Native.X11.X11DialogComponent.CanTargetFolders + id: CanTargetFolders + parent: OpenTK.Platform.Native.X11.X11DialogComponent + langs: + - csharp + - vb + name: CanTargetFolders + nameWithType: X11DialogComponent.CanTargetFolders + fullName: OpenTK.Platform.Native.X11.X11DialogComponent.CanTargetFolders + type: Property + source: + id: CanTargetFolders + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11DialogComponent.cs + startLine: 69 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform.Native.X11 + summary: >- + If the value of this property is true will work. + + Otherwise these flags will be ignored. + example: [] + syntax: + content: public bool CanTargetFolders { get; } + parameters: [] + return: + type: System.Boolean + content.vb: Public ReadOnly Property CanTargetFolders As Boolean + overload: OpenTK.Platform.Native.X11.X11DialogComponent.CanTargetFolders* + seealso: + - linkId: OpenTK.Platform.OpenDialogOptions.SelectDirectory + commentId: F:OpenTK.Platform.OpenDialogOptions.SelectDirectory + - linkId: OpenTK.Platform.IDialogComponent.ShowOpenDialog(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.DialogFileFilter[],OpenTK.Platform.OpenDialogOptions) + commentId: M:OpenTK.Platform.IDialogComponent.ShowOpenDialog(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.DialogFileFilter[],OpenTK.Platform.OpenDialogOptions) + implements: + - OpenTK.Platform.IDialogComponent.CanTargetFolders +- uid: OpenTK.Platform.Native.X11.X11DialogComponent.ShowMessageBox(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.MessageBoxType,OpenTK.Platform.IconHandle) + commentId: M:OpenTK.Platform.Native.X11.X11DialogComponent.ShowMessageBox(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.MessageBoxType,OpenTK.Platform.IconHandle) + id: ShowMessageBox(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.MessageBoxType,OpenTK.Platform.IconHandle) + parent: OpenTK.Platform.Native.X11.X11DialogComponent + langs: + - csharp + - vb + name: ShowMessageBox(WindowHandle, string, string, MessageBoxType, IconHandle?) + nameWithType: X11DialogComponent.ShowMessageBox(WindowHandle, string, string, MessageBoxType, IconHandle?) + fullName: OpenTK.Platform.Native.X11.X11DialogComponent.ShowMessageBox(OpenTK.Platform.WindowHandle, string, string, OpenTK.Platform.MessageBoxType, OpenTK.Platform.IconHandle?) + type: Method + source: + id: ShowMessageBox + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11DialogComponent.cs + startLine: 333 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform.Native.X11 + summary: Shows a modal message box. + example: [] + syntax: + content: public MessageBoxButton ShowMessageBox(WindowHandle parent, string title, string content, MessageBoxType messageBoxType, IconHandle? customIcon = null) + parameters: + - id: parent + type: OpenTK.Platform.WindowHandle + description: The parent window for which this dialog is modal. + - id: title + type: System.String + description: The title of the dialog box. + - id: content + type: System.String + description: The content text of the dialog box. + - id: messageBoxType + type: OpenTK.Platform.MessageBoxType + description: The type of message box. Determines button layout and default icon. + - id: customIcon + type: OpenTK.Platform.IconHandle + description: An optional custom icon to use instead of the default one. + return: + type: OpenTK.Platform.MessageBoxButton + description: The pressed message box button. + content.vb: Public Function ShowMessageBox(parent As WindowHandle, title As String, content As String, messageBoxType As MessageBoxType, customIcon As IconHandle = Nothing) As MessageBoxButton + overload: OpenTK.Platform.Native.X11.X11DialogComponent.ShowMessageBox* + implements: + - OpenTK.Platform.IDialogComponent.ShowMessageBox(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.MessageBoxType,OpenTK.Platform.IconHandle) + nameWithType.vb: X11DialogComponent.ShowMessageBox(WindowHandle, String, String, MessageBoxType, IconHandle) + fullName.vb: OpenTK.Platform.Native.X11.X11DialogComponent.ShowMessageBox(OpenTK.Platform.WindowHandle, String, String, OpenTK.Platform.MessageBoxType, OpenTK.Platform.IconHandle) + name.vb: ShowMessageBox(WindowHandle, String, String, MessageBoxType, IconHandle) +- uid: OpenTK.Platform.Native.X11.X11DialogComponent.ShowOpenDialog(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.DialogFileFilter[],OpenTK.Platform.OpenDialogOptions) + commentId: M:OpenTK.Platform.Native.X11.X11DialogComponent.ShowOpenDialog(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.DialogFileFilter[],OpenTK.Platform.OpenDialogOptions) + id: ShowOpenDialog(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.DialogFileFilter[],OpenTK.Platform.OpenDialogOptions) + parent: OpenTK.Platform.Native.X11.X11DialogComponent + langs: + - csharp + - vb + name: ShowOpenDialog(WindowHandle, string, string, DialogFileFilter[]?, OpenDialogOptions) + nameWithType: X11DialogComponent.ShowOpenDialog(WindowHandle, string, string, DialogFileFilter[]?, OpenDialogOptions) + fullName: OpenTK.Platform.Native.X11.X11DialogComponent.ShowOpenDialog(OpenTK.Platform.WindowHandle, string, string, OpenTK.Platform.DialogFileFilter[]?, OpenTK.Platform.OpenDialogOptions) + type: Method + source: + id: ShowOpenDialog + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11DialogComponent.cs + startLine: 477 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform.Native.X11 + summary: Shows a modal "open file/folder" dialog. + example: [] + syntax: + content: public List? ShowOpenDialog(WindowHandle parent, string title, string directory, DialogFileFilter[]? allowedExtensions, OpenDialogOptions options) + parameters: + - id: parent + type: OpenTK.Platform.WindowHandle + description: The parent window handle for which this dialog will be modal. + - id: title + type: System.String + description: The title of the dialog. + - id: directory + type: System.String + description: The start directory of the file dialog. + - id: allowedExtensions + type: OpenTK.Platform.DialogFileFilter[] + description: A list of file filters that filter valid files to open. See for more info. + - id: options + type: OpenTK.Platform.OpenDialogOptions + description: Additional options for the file dialog (e.g. for allowing multiple files to be selected.) + return: + type: System.Collections.Generic.List{System.String} + description: >- + A list of selected files or null if no files where selected. + + If is not specified the list will only contain a single element. + content.vb: Public Function ShowOpenDialog(parent As WindowHandle, title As String, directory As String, allowedExtensions As DialogFileFilter(), options As OpenDialogOptions) As List(Of String) + overload: OpenTK.Platform.Native.X11.X11DialogComponent.ShowOpenDialog* + seealso: + - linkId: OpenTK.Platform.DialogFileFilter + commentId: T:OpenTK.Platform.DialogFileFilter + - linkId: OpenTK.Platform.OpenDialogOptions + commentId: T:OpenTK.Platform.OpenDialogOptions + - linkId: OpenTK.Platform.IDialogComponent.ShowSaveDialog(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.DialogFileFilter[],OpenTK.Platform.SaveDialogOptions) + commentId: M:OpenTK.Platform.IDialogComponent.ShowSaveDialog(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.DialogFileFilter[],OpenTK.Platform.SaveDialogOptions) + - linkId: OpenTK.Platform.IDialogComponent.CanTargetFolders + commentId: P:OpenTK.Platform.IDialogComponent.CanTargetFolders + implements: + - OpenTK.Platform.IDialogComponent.ShowOpenDialog(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.DialogFileFilter[],OpenTK.Platform.OpenDialogOptions) + nameWithType.vb: X11DialogComponent.ShowOpenDialog(WindowHandle, String, String, DialogFileFilter(), OpenDialogOptions) + fullName.vb: OpenTK.Platform.Native.X11.X11DialogComponent.ShowOpenDialog(OpenTK.Platform.WindowHandle, String, String, OpenTK.Platform.DialogFileFilter(), OpenTK.Platform.OpenDialogOptions) + name.vb: ShowOpenDialog(WindowHandle, String, String, DialogFileFilter(), OpenDialogOptions) +- uid: OpenTK.Platform.Native.X11.X11DialogComponent.ShowSaveDialog(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.DialogFileFilter[],OpenTK.Platform.SaveDialogOptions) + commentId: M:OpenTK.Platform.Native.X11.X11DialogComponent.ShowSaveDialog(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.DialogFileFilter[],OpenTK.Platform.SaveDialogOptions) + id: ShowSaveDialog(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.DialogFileFilter[],OpenTK.Platform.SaveDialogOptions) + parent: OpenTK.Platform.Native.X11.X11DialogComponent + langs: + - csharp + - vb + name: ShowSaveDialog(WindowHandle, string, string, DialogFileFilter[]?, SaveDialogOptions) + nameWithType: X11DialogComponent.ShowSaveDialog(WindowHandle, string, string, DialogFileFilter[]?, SaveDialogOptions) + fullName: OpenTK.Platform.Native.X11.X11DialogComponent.ShowSaveDialog(OpenTK.Platform.WindowHandle, string, string, OpenTK.Platform.DialogFileFilter[]?, OpenTK.Platform.SaveDialogOptions) + type: Method + source: + id: ShowSaveDialog + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11DialogComponent.cs + startLine: 543 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform.Native.X11 + summary: Shows a modal "save file" dialog. + example: [] + syntax: + content: public string? ShowSaveDialog(WindowHandle parent, string title, string directory, DialogFileFilter[]? allowedExtensions, SaveDialogOptions options) + parameters: + - id: parent + type: OpenTK.Platform.WindowHandle + description: The parent window handle for which this dialog will be modal. + - id: title + type: System.String + description: The title of the dialog. + - id: directory + type: System.String + description: The starting directory of the file dialog. + - id: allowedExtensions + type: OpenTK.Platform.DialogFileFilter[] + description: A list of file filters that filter valid file extensions to save as. See for more info. + - id: options + type: OpenTK.Platform.SaveDialogOptions + description: Additional options for the file dialog. + return: + type: System.String + description: The path to the selected save file, or null if no file was selected. + content.vb: Public Function ShowSaveDialog(parent As WindowHandle, title As String, directory As String, allowedExtensions As DialogFileFilter(), options As SaveDialogOptions) As String + overload: OpenTK.Platform.Native.X11.X11DialogComponent.ShowSaveDialog* + seealso: + - linkId: OpenTK.Platform.DialogFileFilter + commentId: T:OpenTK.Platform.DialogFileFilter + - linkId: OpenTK.Platform.SaveDialogOptions + commentId: T:OpenTK.Platform.SaveDialogOptions + implements: + - OpenTK.Platform.IDialogComponent.ShowSaveDialog(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.DialogFileFilter[],OpenTK.Platform.SaveDialogOptions) + nameWithType.vb: X11DialogComponent.ShowSaveDialog(WindowHandle, String, String, DialogFileFilter(), SaveDialogOptions) + fullName.vb: OpenTK.Platform.Native.X11.X11DialogComponent.ShowSaveDialog(OpenTK.Platform.WindowHandle, String, String, OpenTK.Platform.DialogFileFilter(), OpenTK.Platform.SaveDialogOptions) + name.vb: ShowSaveDialog(WindowHandle, String, String, DialogFileFilter(), SaveDialogOptions) +references: +- uid: OpenTK.Platform.Native.X11 + commentId: N:OpenTK.Platform.Native.X11 + href: OpenTK.html + name: OpenTK.Platform.Native.X11 + nameWithType: OpenTK.Platform.Native.X11 + fullName: OpenTK.Platform.Native.X11 + spec.csharp: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Platform + name: Platform + href: OpenTK.Platform.html + - name: . + - uid: OpenTK.Platform.Native + name: Native + href: OpenTK.Platform.Native.html + - name: . + - uid: OpenTK.Platform.Native.X11 + name: X11 + href: OpenTK.Platform.Native.X11.html + spec.vb: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Platform + name: Platform + href: OpenTK.Platform.html + - name: . + - uid: OpenTK.Platform.Native + name: Native + href: OpenTK.Platform.Native.html + - name: . + - uid: OpenTK.Platform.Native.X11 + name: X11 + href: OpenTK.Platform.Native.X11.html +- uid: System.Object + commentId: T:System.Object + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + name: object + nameWithType: object + fullName: object + nameWithType.vb: Object + fullName.vb: Object + name.vb: Object +- uid: OpenTK.Platform.IDialogComponent + commentId: T:OpenTK.Platform.IDialogComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IDialogComponent.html + name: IDialogComponent + nameWithType: IDialogComponent + fullName: OpenTK.Platform.IDialogComponent +- uid: OpenTK.Platform.IPalComponent + commentId: T:OpenTK.Platform.IPalComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IPalComponent.html + name: IPalComponent + nameWithType: IPalComponent + fullName: OpenTK.Platform.IPalComponent +- uid: System.Object.Equals(System.Object) + commentId: M:System.Object.Equals(System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + name: Equals(object) + nameWithType: object.Equals(object) + fullName: object.Equals(object) + nameWithType.vb: Object.Equals(Object) + fullName.vb: Object.Equals(Object) + name.vb: Equals(Object) + spec.csharp: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.Equals(System.Object,System.Object) + commentId: M:System.Object.Equals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + name: Equals(object, object) + nameWithType: object.Equals(object, object) + fullName: object.Equals(object, object) + nameWithType.vb: Object.Equals(Object, Object) + fullName.vb: Object.Equals(Object, Object) + name.vb: Equals(Object, Object) + spec.csharp: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.GetHashCode + commentId: M:System.Object.GetHashCode + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + name: GetHashCode() + nameWithType: object.GetHashCode() + fullName: object.GetHashCode() + nameWithType.vb: Object.GetHashCode() + fullName.vb: Object.GetHashCode() + spec.csharp: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) +- uid: System.Object.GetType + commentId: M:System.Object.GetType + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + name: GetType() + nameWithType: object.GetType() + fullName: object.GetType() + nameWithType.vb: Object.GetType() + fullName.vb: Object.GetType() + spec.csharp: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) +- uid: System.Object.MemberwiseClone + commentId: M:System.Object.MemberwiseClone + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + name: MemberwiseClone() + nameWithType: object.MemberwiseClone() + fullName: object.MemberwiseClone() + nameWithType.vb: Object.MemberwiseClone() + fullName.vb: Object.MemberwiseClone() + spec.csharp: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) + spec.vb: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) +- uid: System.Object.ReferenceEquals(System.Object,System.Object) + commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + name: ReferenceEquals(object, object) + nameWithType: object.ReferenceEquals(object, object) + fullName: object.ReferenceEquals(object, object) + nameWithType.vb: Object.ReferenceEquals(Object, Object) + fullName.vb: Object.ReferenceEquals(Object, Object) + name.vb: ReferenceEquals(Object, Object) + spec.csharp: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.ToString + commentId: M:System.Object.ToString + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + name: ToString() + nameWithType: object.ToString() + fullName: object.ToString() + nameWithType.vb: Object.ToString() + fullName.vb: Object.ToString() + spec.csharp: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) + spec.vb: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) +- uid: System + commentId: N:System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System + nameWithType: System + fullName: System +- uid: OpenTK.Platform + commentId: N:OpenTK.Platform + href: OpenTK.html + name: OpenTK.Platform + nameWithType: OpenTK.Platform + fullName: OpenTK.Platform + spec.csharp: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Platform + name: Platform + href: OpenTK.Platform.html + spec.vb: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Platform + name: Platform + href: OpenTK.Platform.html +- uid: OpenTK.Platform.Native.X11.X11DialogComponent.Name* + commentId: Overload:OpenTK.Platform.Native.X11.X11DialogComponent.Name + href: OpenTK.Platform.Native.X11.X11DialogComponent.html#OpenTK_Platform_Native_X11_X11DialogComponent_Name + name: Name + nameWithType: X11DialogComponent.Name + fullName: OpenTK.Platform.Native.X11.X11DialogComponent.Name +- uid: OpenTK.Platform.IPalComponent.Name + commentId: P:OpenTK.Platform.IPalComponent.Name + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Name + name: Name + nameWithType: IPalComponent.Name + fullName: OpenTK.Platform.IPalComponent.Name +- uid: System.String + commentId: T:System.String + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + name: string + nameWithType: string + fullName: string + nameWithType.vb: String + fullName.vb: String + name.vb: String +- uid: OpenTK.Platform.Native.X11.X11DialogComponent.Provides* + commentId: Overload:OpenTK.Platform.Native.X11.X11DialogComponent.Provides + href: OpenTK.Platform.Native.X11.X11DialogComponent.html#OpenTK_Platform_Native_X11_X11DialogComponent_Provides + name: Provides + nameWithType: X11DialogComponent.Provides + fullName: OpenTK.Platform.Native.X11.X11DialogComponent.Provides +- uid: OpenTK.Platform.IPalComponent.Provides + commentId: P:OpenTK.Platform.IPalComponent.Provides + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Provides + name: Provides + nameWithType: IPalComponent.Provides + fullName: OpenTK.Platform.IPalComponent.Provides +- uid: OpenTK.Platform.PalComponents + commentId: T:OpenTK.Platform.PalComponents + parent: OpenTK.Platform + href: OpenTK.Platform.PalComponents.html + name: PalComponents + nameWithType: PalComponents + fullName: OpenTK.Platform.PalComponents +- uid: OpenTK.Platform.Native.X11.X11DialogComponent.Logger* + commentId: Overload:OpenTK.Platform.Native.X11.X11DialogComponent.Logger + href: OpenTK.Platform.Native.X11.X11DialogComponent.html#OpenTK_Platform_Native_X11_X11DialogComponent_Logger + name: Logger + nameWithType: X11DialogComponent.Logger + fullName: OpenTK.Platform.Native.X11.X11DialogComponent.Logger +- uid: OpenTK.Platform.IPalComponent.Logger + commentId: P:OpenTK.Platform.IPalComponent.Logger + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Logger + name: Logger + nameWithType: IPalComponent.Logger + fullName: OpenTK.Platform.IPalComponent.Logger +- uid: OpenTK.Core.Utility.ILogger + commentId: T:OpenTK.Core.Utility.ILogger + parent: OpenTK.Core.Utility + href: OpenTK.Core.Utility.ILogger.html + name: ILogger + nameWithType: ILogger + fullName: OpenTK.Core.Utility.ILogger +- uid: OpenTK.Core.Utility + commentId: N:OpenTK.Core.Utility + href: OpenTK.html + name: OpenTK.Core.Utility + nameWithType: OpenTK.Core.Utility + fullName: OpenTK.Core.Utility + spec.csharp: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Core + name: Core + href: OpenTK.Core.html + - name: . + - uid: OpenTK.Core.Utility + name: Utility + href: OpenTK.Core.Utility.html + spec.vb: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Core + name: Core + href: OpenTK.Core.html + - name: . + - uid: OpenTK.Core.Utility + name: Utility + href: OpenTK.Core.Utility.html +- uid: OpenTK.Platform.Native.X11.X11DialogComponent.Initialize* + commentId: Overload:OpenTK.Platform.Native.X11.X11DialogComponent.Initialize + href: OpenTK.Platform.Native.X11.X11DialogComponent.html#OpenTK_Platform_Native_X11_X11DialogComponent_Initialize_OpenTK_Platform_ToolkitOptions_ + name: Initialize + nameWithType: X11DialogComponent.Initialize + fullName: OpenTK.Platform.Native.X11.X11DialogComponent.Initialize +- uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ + name: Initialize(ToolkitOptions) + nameWithType: IPalComponent.Initialize(ToolkitOptions) + fullName: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + spec.csharp: + - uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + name: Initialize + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ + - name: ( + - uid: OpenTK.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Platform.ToolkitOptions.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + name: Initialize + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ + - name: ( + - uid: OpenTK.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Platform.ToolkitOptions.html + - name: ) +- uid: OpenTK.Platform.ToolkitOptions + commentId: T:OpenTK.Platform.ToolkitOptions + parent: OpenTK.Platform + href: OpenTK.Platform.ToolkitOptions.html + name: ToolkitOptions + nameWithType: ToolkitOptions + fullName: OpenTK.Platform.ToolkitOptions +- uid: OpenTK.Platform.OpenDialogOptions.SelectDirectory + commentId: F:OpenTK.Platform.OpenDialogOptions.SelectDirectory + href: OpenTK.Platform.OpenDialogOptions.html#OpenTK_Platform_OpenDialogOptions_SelectDirectory + name: SelectDirectory + nameWithType: OpenDialogOptions.SelectDirectory + fullName: OpenTK.Platform.OpenDialogOptions.SelectDirectory +- uid: OpenTK.Platform.IDialogComponent.ShowOpenDialog(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.DialogFileFilter[],OpenTK.Platform.OpenDialogOptions) + commentId: M:OpenTK.Platform.IDialogComponent.ShowOpenDialog(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.DialogFileFilter[],OpenTK.Platform.OpenDialogOptions) + parent: OpenTK.Platform.IDialogComponent + isExternal: true + href: OpenTK.Platform.IDialogComponent.html#OpenTK_Platform_IDialogComponent_ShowOpenDialog_OpenTK_Platform_WindowHandle_System_String_System_String_OpenTK_Platform_DialogFileFilter___OpenTK_Platform_OpenDialogOptions_ + name: ShowOpenDialog(WindowHandle, string, string, DialogFileFilter[], OpenDialogOptions) + nameWithType: IDialogComponent.ShowOpenDialog(WindowHandle, string, string, DialogFileFilter[], OpenDialogOptions) + fullName: OpenTK.Platform.IDialogComponent.ShowOpenDialog(OpenTK.Platform.WindowHandle, string, string, OpenTK.Platform.DialogFileFilter[], OpenTK.Platform.OpenDialogOptions) + nameWithType.vb: IDialogComponent.ShowOpenDialog(WindowHandle, String, String, DialogFileFilter(), OpenDialogOptions) + fullName.vb: OpenTK.Platform.IDialogComponent.ShowOpenDialog(OpenTK.Platform.WindowHandle, String, String, OpenTK.Platform.DialogFileFilter(), OpenTK.Platform.OpenDialogOptions) + name.vb: ShowOpenDialog(WindowHandle, String, String, DialogFileFilter(), OpenDialogOptions) + spec.csharp: + - uid: OpenTK.Platform.IDialogComponent.ShowOpenDialog(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.DialogFileFilter[],OpenTK.Platform.OpenDialogOptions) + name: ShowOpenDialog + href: OpenTK.Platform.IDialogComponent.html#OpenTK_Platform_IDialogComponent_ShowOpenDialog_OpenTK_Platform_WindowHandle_System_String_System_String_OpenTK_Platform_DialogFileFilter___OpenTK_Platform_OpenDialogOptions_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: System.String + name: string + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ',' + - name: " " + - uid: System.String + name: string + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ',' + - name: " " + - uid: OpenTK.Platform.DialogFileFilter + name: DialogFileFilter + href: OpenTK.Platform.DialogFileFilter.html + - name: '[' + - name: ']' + - name: ',' + - name: " " + - uid: OpenTK.Platform.OpenDialogOptions + name: OpenDialogOptions + href: OpenTK.Platform.OpenDialogOptions.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IDialogComponent.ShowOpenDialog(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.DialogFileFilter[],OpenTK.Platform.OpenDialogOptions) + name: ShowOpenDialog + href: OpenTK.Platform.IDialogComponent.html#OpenTK_Platform_IDialogComponent_ShowOpenDialog_OpenTK_Platform_WindowHandle_System_String_System_String_OpenTK_Platform_DialogFileFilter___OpenTK_Platform_OpenDialogOptions_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: System.String + name: String + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ',' + - name: " " + - uid: System.String + name: String + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ',' + - name: " " + - uid: OpenTK.Platform.DialogFileFilter + name: DialogFileFilter + href: OpenTK.Platform.DialogFileFilter.html + - name: ( + - name: ) + - name: ',' + - name: " " + - uid: OpenTK.Platform.OpenDialogOptions + name: OpenDialogOptions + href: OpenTK.Platform.OpenDialogOptions.html + - name: ) +- uid: OpenTK.Platform.Native.X11.X11DialogComponent.CanTargetFolders* + commentId: Overload:OpenTK.Platform.Native.X11.X11DialogComponent.CanTargetFolders + href: OpenTK.Platform.Native.X11.X11DialogComponent.html#OpenTK_Platform_Native_X11_X11DialogComponent_CanTargetFolders + name: CanTargetFolders + nameWithType: X11DialogComponent.CanTargetFolders + fullName: OpenTK.Platform.Native.X11.X11DialogComponent.CanTargetFolders +- uid: OpenTK.Platform.IDialogComponent.CanTargetFolders + commentId: P:OpenTK.Platform.IDialogComponent.CanTargetFolders + parent: OpenTK.Platform.IDialogComponent + href: OpenTK.Platform.IDialogComponent.html#OpenTK_Platform_IDialogComponent_CanTargetFolders + name: CanTargetFolders + nameWithType: IDialogComponent.CanTargetFolders + fullName: OpenTK.Platform.IDialogComponent.CanTargetFolders +- uid: System.Boolean + commentId: T:System.Boolean + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + name: bool + nameWithType: bool + fullName: bool + nameWithType.vb: Boolean + fullName.vb: Boolean + name.vb: Boolean +- uid: OpenTK.Platform.Native.X11.X11DialogComponent.ShowMessageBox* + commentId: Overload:OpenTK.Platform.Native.X11.X11DialogComponent.ShowMessageBox + href: OpenTK.Platform.Native.X11.X11DialogComponent.html#OpenTK_Platform_Native_X11_X11DialogComponent_ShowMessageBox_OpenTK_Platform_WindowHandle_System_String_System_String_OpenTK_Platform_MessageBoxType_OpenTK_Platform_IconHandle_ + name: ShowMessageBox + nameWithType: X11DialogComponent.ShowMessageBox + fullName: OpenTK.Platform.Native.X11.X11DialogComponent.ShowMessageBox +- uid: OpenTK.Platform.IDialogComponent.ShowMessageBox(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.MessageBoxType,OpenTK.Platform.IconHandle) + commentId: M:OpenTK.Platform.IDialogComponent.ShowMessageBox(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.MessageBoxType,OpenTK.Platform.IconHandle) + parent: OpenTK.Platform.IDialogComponent + isExternal: true + href: OpenTK.Platform.IDialogComponent.html#OpenTK_Platform_IDialogComponent_ShowMessageBox_OpenTK_Platform_WindowHandle_System_String_System_String_OpenTK_Platform_MessageBoxType_OpenTK_Platform_IconHandle_ + name: ShowMessageBox(WindowHandle, string, string, MessageBoxType, IconHandle) + nameWithType: IDialogComponent.ShowMessageBox(WindowHandle, string, string, MessageBoxType, IconHandle) + fullName: OpenTK.Platform.IDialogComponent.ShowMessageBox(OpenTK.Platform.WindowHandle, string, string, OpenTK.Platform.MessageBoxType, OpenTK.Platform.IconHandle) + nameWithType.vb: IDialogComponent.ShowMessageBox(WindowHandle, String, String, MessageBoxType, IconHandle) + fullName.vb: OpenTK.Platform.IDialogComponent.ShowMessageBox(OpenTK.Platform.WindowHandle, String, String, OpenTK.Platform.MessageBoxType, OpenTK.Platform.IconHandle) + name.vb: ShowMessageBox(WindowHandle, String, String, MessageBoxType, IconHandle) + spec.csharp: + - uid: OpenTK.Platform.IDialogComponent.ShowMessageBox(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.MessageBoxType,OpenTK.Platform.IconHandle) + name: ShowMessageBox + href: OpenTK.Platform.IDialogComponent.html#OpenTK_Platform_IDialogComponent_ShowMessageBox_OpenTK_Platform_WindowHandle_System_String_System_String_OpenTK_Platform_MessageBoxType_OpenTK_Platform_IconHandle_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: System.String + name: string + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ',' + - name: " " + - uid: System.String + name: string + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ',' + - name: " " + - uid: OpenTK.Platform.MessageBoxType + name: MessageBoxType + href: OpenTK.Platform.MessageBoxType.html + - name: ',' + - name: " " + - uid: OpenTK.Platform.IconHandle + name: IconHandle + href: OpenTK.Platform.IconHandle.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IDialogComponent.ShowMessageBox(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.MessageBoxType,OpenTK.Platform.IconHandle) + name: ShowMessageBox + href: OpenTK.Platform.IDialogComponent.html#OpenTK_Platform_IDialogComponent_ShowMessageBox_OpenTK_Platform_WindowHandle_System_String_System_String_OpenTK_Platform_MessageBoxType_OpenTK_Platform_IconHandle_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: System.String + name: String + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ',' + - name: " " + - uid: System.String + name: String + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ',' + - name: " " + - uid: OpenTK.Platform.MessageBoxType + name: MessageBoxType + href: OpenTK.Platform.MessageBoxType.html + - name: ',' + - name: " " + - uid: OpenTK.Platform.IconHandle + name: IconHandle + href: OpenTK.Platform.IconHandle.html + - name: ) +- uid: OpenTK.Platform.WindowHandle + commentId: T:OpenTK.Platform.WindowHandle + parent: OpenTK.Platform + href: OpenTK.Platform.WindowHandle.html + name: WindowHandle + nameWithType: WindowHandle + fullName: OpenTK.Platform.WindowHandle +- uid: OpenTK.Platform.MessageBoxType + commentId: T:OpenTK.Platform.MessageBoxType + parent: OpenTK.Platform + href: OpenTK.Platform.MessageBoxType.html + name: MessageBoxType + nameWithType: MessageBoxType + fullName: OpenTK.Platform.MessageBoxType +- uid: OpenTK.Platform.IconHandle + commentId: T:OpenTK.Platform.IconHandle + parent: OpenTK.Platform + href: OpenTK.Platform.IconHandle.html + name: IconHandle + nameWithType: IconHandle + fullName: OpenTK.Platform.IconHandle +- uid: OpenTK.Platform.MessageBoxButton + commentId: T:OpenTK.Platform.MessageBoxButton + parent: OpenTK.Platform + href: OpenTK.Platform.MessageBoxButton.html + name: MessageBoxButton + nameWithType: MessageBoxButton + fullName: OpenTK.Platform.MessageBoxButton +- uid: OpenTK.Platform.DialogFileFilter + commentId: T:OpenTK.Platform.DialogFileFilter + parent: OpenTK.Platform + href: OpenTK.Platform.DialogFileFilter.html + name: DialogFileFilter + nameWithType: DialogFileFilter + fullName: OpenTK.Platform.DialogFileFilter +- uid: OpenTK.Platform.OpenDialogOptions + commentId: T:OpenTK.Platform.OpenDialogOptions + parent: OpenTK.Platform + href: OpenTK.Platform.OpenDialogOptions.html + name: OpenDialogOptions + nameWithType: OpenDialogOptions + fullName: OpenTK.Platform.OpenDialogOptions +- uid: OpenTK.Platform.IDialogComponent.ShowSaveDialog(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.DialogFileFilter[],OpenTK.Platform.SaveDialogOptions) + commentId: M:OpenTK.Platform.IDialogComponent.ShowSaveDialog(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.DialogFileFilter[],OpenTK.Platform.SaveDialogOptions) + parent: OpenTK.Platform.IDialogComponent + isExternal: true + href: OpenTK.Platform.IDialogComponent.html#OpenTK_Platform_IDialogComponent_ShowSaveDialog_OpenTK_Platform_WindowHandle_System_String_System_String_OpenTK_Platform_DialogFileFilter___OpenTK_Platform_SaveDialogOptions_ + name: ShowSaveDialog(WindowHandle, string, string, DialogFileFilter[], SaveDialogOptions) + nameWithType: IDialogComponent.ShowSaveDialog(WindowHandle, string, string, DialogFileFilter[], SaveDialogOptions) + fullName: OpenTK.Platform.IDialogComponent.ShowSaveDialog(OpenTK.Platform.WindowHandle, string, string, OpenTK.Platform.DialogFileFilter[], OpenTK.Platform.SaveDialogOptions) + nameWithType.vb: IDialogComponent.ShowSaveDialog(WindowHandle, String, String, DialogFileFilter(), SaveDialogOptions) + fullName.vb: OpenTK.Platform.IDialogComponent.ShowSaveDialog(OpenTK.Platform.WindowHandle, String, String, OpenTK.Platform.DialogFileFilter(), OpenTK.Platform.SaveDialogOptions) + name.vb: ShowSaveDialog(WindowHandle, String, String, DialogFileFilter(), SaveDialogOptions) + spec.csharp: + - uid: OpenTK.Platform.IDialogComponent.ShowSaveDialog(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.DialogFileFilter[],OpenTK.Platform.SaveDialogOptions) + name: ShowSaveDialog + href: OpenTK.Platform.IDialogComponent.html#OpenTK_Platform_IDialogComponent_ShowSaveDialog_OpenTK_Platform_WindowHandle_System_String_System_String_OpenTK_Platform_DialogFileFilter___OpenTK_Platform_SaveDialogOptions_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: System.String + name: string + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ',' + - name: " " + - uid: System.String + name: string + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ',' + - name: " " + - uid: OpenTK.Platform.DialogFileFilter + name: DialogFileFilter + href: OpenTK.Platform.DialogFileFilter.html + - name: '[' + - name: ']' + - name: ',' + - name: " " + - uid: OpenTK.Platform.SaveDialogOptions + name: SaveDialogOptions + href: OpenTK.Platform.SaveDialogOptions.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IDialogComponent.ShowSaveDialog(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.DialogFileFilter[],OpenTK.Platform.SaveDialogOptions) + name: ShowSaveDialog + href: OpenTK.Platform.IDialogComponent.html#OpenTK_Platform_IDialogComponent_ShowSaveDialog_OpenTK_Platform_WindowHandle_System_String_System_String_OpenTK_Platform_DialogFileFilter___OpenTK_Platform_SaveDialogOptions_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: System.String + name: String + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ',' + - name: " " + - uid: System.String + name: String + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ',' + - name: " " + - uid: OpenTK.Platform.DialogFileFilter + name: DialogFileFilter + href: OpenTK.Platform.DialogFileFilter.html + - name: ( + - name: ) + - name: ',' + - name: " " + - uid: OpenTK.Platform.SaveDialogOptions + name: SaveDialogOptions + href: OpenTK.Platform.SaveDialogOptions.html + - name: ) +- uid: OpenTK.Platform.OpenDialogOptions.AllowMultiSelect + commentId: F:OpenTK.Platform.OpenDialogOptions.AllowMultiSelect + href: OpenTK.Platform.OpenDialogOptions.html#OpenTK_Platform_OpenDialogOptions_AllowMultiSelect + name: AllowMultiSelect + nameWithType: OpenDialogOptions.AllowMultiSelect + fullName: OpenTK.Platform.OpenDialogOptions.AllowMultiSelect +- uid: OpenTK.Platform.Native.X11.X11DialogComponent.ShowOpenDialog* + commentId: Overload:OpenTK.Platform.Native.X11.X11DialogComponent.ShowOpenDialog + href: OpenTK.Platform.Native.X11.X11DialogComponent.html#OpenTK_Platform_Native_X11_X11DialogComponent_ShowOpenDialog_OpenTK_Platform_WindowHandle_System_String_System_String_OpenTK_Platform_DialogFileFilter___OpenTK_Platform_OpenDialogOptions_ + name: ShowOpenDialog + nameWithType: X11DialogComponent.ShowOpenDialog + fullName: OpenTK.Platform.Native.X11.X11DialogComponent.ShowOpenDialog +- uid: OpenTK.Platform.DialogFileFilter[] + isExternal: true + href: OpenTK.Platform.DialogFileFilter.html + name: DialogFileFilter[] + nameWithType: DialogFileFilter[] + fullName: OpenTK.Platform.DialogFileFilter[] + nameWithType.vb: DialogFileFilter() + fullName.vb: OpenTK.Platform.DialogFileFilter() + name.vb: DialogFileFilter() + spec.csharp: + - uid: OpenTK.Platform.DialogFileFilter + name: DialogFileFilter + href: OpenTK.Platform.DialogFileFilter.html + - name: '[' + - name: ']' + spec.vb: + - uid: OpenTK.Platform.DialogFileFilter + name: DialogFileFilter + href: OpenTK.Platform.DialogFileFilter.html + - name: ( + - name: ) +- uid: System.Collections.Generic.List{System.String} + commentId: T:System.Collections.Generic.List{System.String} + parent: System.Collections.Generic + definition: System.Collections.Generic.List`1 + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 + name: List + nameWithType: List + fullName: System.Collections.Generic.List + nameWithType.vb: List(Of String) + fullName.vb: System.Collections.Generic.List(Of String) + name.vb: List(Of String) + spec.csharp: + - uid: System.Collections.Generic.List`1 + name: List + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 + - name: < + - uid: System.String + name: string + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: '>' + spec.vb: + - uid: System.Collections.Generic.List`1 + name: List + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 + - name: ( + - name: Of + - name: " " + - uid: System.String + name: String + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ) +- uid: System.Collections.Generic.List`1 + commentId: T:System.Collections.Generic.List`1 + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 + name: List + nameWithType: List + fullName: System.Collections.Generic.List + nameWithType.vb: List(Of T) + fullName.vb: System.Collections.Generic.List(Of T) + name.vb: List(Of T) + spec.csharp: + - uid: System.Collections.Generic.List`1 + name: List + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 + - name: < + - name: T + - name: '>' + spec.vb: + - uid: System.Collections.Generic.List`1 + name: List + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 + - name: ( + - name: Of + - name: " " + - name: T + - name: ) +- uid: System.Collections.Generic + commentId: N:System.Collections.Generic + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System.Collections.Generic + nameWithType: System.Collections.Generic + fullName: System.Collections.Generic + spec.csharp: + - uid: System + name: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + - name: . + - uid: System.Collections + name: Collections + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections + - name: . + - uid: System.Collections.Generic + name: Generic + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic + spec.vb: + - uid: System + name: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + - name: . + - uid: System.Collections + name: Collections + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections + - name: . + - uid: System.Collections.Generic + name: Generic + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic +- uid: OpenTK.Platform.SaveDialogOptions + commentId: T:OpenTK.Platform.SaveDialogOptions + parent: OpenTK.Platform + href: OpenTK.Platform.SaveDialogOptions.html + name: SaveDialogOptions + nameWithType: SaveDialogOptions + fullName: OpenTK.Platform.SaveDialogOptions +- uid: OpenTK.Platform.Native.X11.X11DialogComponent.ShowSaveDialog* + commentId: Overload:OpenTK.Platform.Native.X11.X11DialogComponent.ShowSaveDialog + href: OpenTK.Platform.Native.X11.X11DialogComponent.html#OpenTK_Platform_Native_X11_X11DialogComponent_ShowSaveDialog_OpenTK_Platform_WindowHandle_System_String_System_String_OpenTK_Platform_DialogFileFilter___OpenTK_Platform_SaveDialogOptions_ + name: ShowSaveDialog + nameWithType: X11DialogComponent.ShowSaveDialog + fullName: OpenTK.Platform.Native.X11.X11DialogComponent.ShowSaveDialog diff --git a/api/OpenTK.Platform.Native.X11.X11DisplayComponent.yml b/api/OpenTK.Platform.Native.X11.X11DisplayComponent.yml index c7a0285a..4b5f4184 100644 --- a/api/OpenTK.Platform.Native.X11.X11DisplayComponent.yml +++ b/api/OpenTK.Platform.Native.X11.X11DisplayComponent.yml @@ -6,20 +6,20 @@ items: parent: OpenTK.Platform.Native.X11 children: - OpenTK.Platform.Native.X11.X11DisplayComponent.CanGetVirtualPosition - - OpenTK.Platform.Native.X11.X11DisplayComponent.Close(OpenTK.Core.Platform.DisplayHandle) + - OpenTK.Platform.Native.X11.X11DisplayComponent.Close(OpenTK.Platform.DisplayHandle) - OpenTK.Platform.Native.X11.X11DisplayComponent.GetDisplayCount - - OpenTK.Platform.Native.X11.X11DisplayComponent.GetDisplayScale(OpenTK.Core.Platform.DisplayHandle,System.Single@,System.Single@) - - OpenTK.Platform.Native.X11.X11DisplayComponent.GetName(OpenTK.Core.Platform.DisplayHandle) - - OpenTK.Platform.Native.X11.X11DisplayComponent.GetRRCrtc(OpenTK.Core.Platform.DisplayHandle) - - OpenTK.Platform.Native.X11.X11DisplayComponent.GetRROutput(OpenTK.Core.Platform.DisplayHandle) - - OpenTK.Platform.Native.X11.X11DisplayComponent.GetRefreshRate(OpenTK.Core.Platform.DisplayHandle,System.Single@) - - OpenTK.Platform.Native.X11.X11DisplayComponent.GetResolution(OpenTK.Core.Platform.DisplayHandle,System.Int32@,System.Int32@) - - OpenTK.Platform.Native.X11.X11DisplayComponent.GetSupportedVideoModes(OpenTK.Core.Platform.DisplayHandle) - - OpenTK.Platform.Native.X11.X11DisplayComponent.GetVideoMode(OpenTK.Core.Platform.DisplayHandle,OpenTK.Core.Platform.VideoMode@) - - OpenTK.Platform.Native.X11.X11DisplayComponent.GetVirtualPosition(OpenTK.Core.Platform.DisplayHandle,System.Int32@,System.Int32@) - - OpenTK.Platform.Native.X11.X11DisplayComponent.GetWorkArea(OpenTK.Core.Platform.DisplayHandle,OpenTK.Mathematics.Box2i@) - - OpenTK.Platform.Native.X11.X11DisplayComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - - OpenTK.Platform.Native.X11.X11DisplayComponent.IsPrimary(OpenTK.Core.Platform.DisplayHandle) + - OpenTK.Platform.Native.X11.X11DisplayComponent.GetDisplayScale(OpenTK.Platform.DisplayHandle,System.Single@,System.Single@) + - OpenTK.Platform.Native.X11.X11DisplayComponent.GetName(OpenTK.Platform.DisplayHandle) + - OpenTK.Platform.Native.X11.X11DisplayComponent.GetRRCrtc(OpenTK.Platform.DisplayHandle) + - OpenTK.Platform.Native.X11.X11DisplayComponent.GetRROutput(OpenTK.Platform.DisplayHandle) + - OpenTK.Platform.Native.X11.X11DisplayComponent.GetRefreshRate(OpenTK.Platform.DisplayHandle,System.Single@) + - OpenTK.Platform.Native.X11.X11DisplayComponent.GetResolution(OpenTK.Platform.DisplayHandle,System.Int32@,System.Int32@) + - OpenTK.Platform.Native.X11.X11DisplayComponent.GetSupportedVideoModes(OpenTK.Platform.DisplayHandle) + - OpenTK.Platform.Native.X11.X11DisplayComponent.GetVideoMode(OpenTK.Platform.DisplayHandle,OpenTK.Platform.VideoMode@) + - OpenTK.Platform.Native.X11.X11DisplayComponent.GetVirtualPosition(OpenTK.Platform.DisplayHandle,System.Int32@,System.Int32@) + - OpenTK.Platform.Native.X11.X11DisplayComponent.GetWorkArea(OpenTK.Platform.DisplayHandle,OpenTK.Mathematics.Box2i@) + - OpenTK.Platform.Native.X11.X11DisplayComponent.Initialize(OpenTK.Platform.ToolkitOptions) + - OpenTK.Platform.Native.X11.X11DisplayComponent.IsPrimary(OpenTK.Platform.DisplayHandle) - OpenTK.Platform.Native.X11.X11DisplayComponent.Logger - OpenTK.Platform.Native.X11.X11DisplayComponent.Name - OpenTK.Platform.Native.X11.X11DisplayComponent.Open(System.Int32) @@ -33,15 +33,11 @@ items: fullName: OpenTK.Platform.Native.X11.X11DisplayComponent type: Class source: - remote: - path: src/OpenTK.Platform.Native/X11/X11DisplayComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: X11DisplayComponent - path: opentk/src/OpenTK.Platform.Native/X11/X11DisplayComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11DisplayComponent.cs startLine: 14 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 syntax: content: 'public class X11DisplayComponent : IDisplayComponent, IPalComponent' @@ -49,8 +45,8 @@ items: inheritance: - System.Object implements: - - OpenTK.Core.Platform.IDisplayComponent - - OpenTK.Core.Platform.IPalComponent + - OpenTK.Platform.IDisplayComponent + - OpenTK.Platform.IPalComponent inheritedMembers: - System.Object.Equals(System.Object) - System.Object.Equals(System.Object,System.Object) @@ -71,15 +67,11 @@ items: fullName: OpenTK.Platform.Native.X11.X11DisplayComponent.Name type: Property source: - remote: - path: src/OpenTK.Platform.Native/X11/X11DisplayComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Name - path: opentk/src/OpenTK.Platform.Native/X11/X11DisplayComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11DisplayComponent.cs startLine: 17 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: Name of the abstraction layer component. example: [] @@ -91,7 +83,7 @@ items: content.vb: Public ReadOnly Property Name As String overload: OpenTK.Platform.Native.X11.X11DisplayComponent.Name* implements: - - OpenTK.Core.Platform.IPalComponent.Name + - OpenTK.Platform.IPalComponent.Name - uid: OpenTK.Platform.Native.X11.X11DisplayComponent.Provides commentId: P:OpenTK.Platform.Native.X11.X11DisplayComponent.Provides id: Provides @@ -104,15 +96,11 @@ items: fullName: OpenTK.Platform.Native.X11.X11DisplayComponent.Provides type: Property source: - remote: - path: src/OpenTK.Platform.Native/X11/X11DisplayComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Provides - path: opentk/src/OpenTK.Platform.Native/X11/X11DisplayComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11DisplayComponent.cs startLine: 20 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: Specifies which PAL components this object provides. example: [] @@ -120,11 +108,11 @@ items: content: public PalComponents Provides { get; } parameters: [] return: - type: OpenTK.Core.Platform.PalComponents + type: OpenTK.Platform.PalComponents content.vb: Public ReadOnly Property Provides As PalComponents overload: OpenTK.Platform.Native.X11.X11DisplayComponent.Provides* implements: - - OpenTK.Core.Platform.IPalComponent.Provides + - OpenTK.Platform.IPalComponent.Provides - uid: OpenTK.Platform.Native.X11.X11DisplayComponent.Logger commentId: P:OpenTK.Platform.Native.X11.X11DisplayComponent.Logger id: Logger @@ -137,15 +125,11 @@ items: fullName: OpenTK.Platform.Native.X11.X11DisplayComponent.Logger type: Property source: - remote: - path: src/OpenTK.Platform.Native/X11/X11DisplayComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Logger - path: opentk/src/OpenTK.Platform.Native/X11/X11DisplayComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11DisplayComponent.cs startLine: 23 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: Provides a logger for this component. example: [] @@ -157,7 +141,7 @@ items: content.vb: Public Property Logger As ILogger overload: OpenTK.Platform.Native.X11.X11DisplayComponent.Logger* implements: - - OpenTK.Core.Platform.IPalComponent.Logger + - OpenTK.Platform.IPalComponent.Logger - uid: OpenTK.Platform.Native.X11.X11DisplayComponent.CanGetVirtualPosition commentId: P:OpenTK.Platform.Native.X11.X11DisplayComponent.CanGetVirtualPosition id: CanGetVirtualPosition @@ -170,17 +154,13 @@ items: fullName: OpenTK.Platform.Native.X11.X11DisplayComponent.CanGetVirtualPosition type: Property source: - remote: - path: src/OpenTK.Platform.Native/X11/X11DisplayComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CanGetVirtualPosition - path: opentk/src/OpenTK.Platform.Native/X11/X11DisplayComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11DisplayComponent.cs startLine: 28 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 - summary: True if the driver can get the virtual position of the display. + summary: True if the driver can get the virtual position of the display using . example: [] syntax: content: public bool CanGetVirtualPosition { get; } @@ -190,28 +170,24 @@ items: content.vb: Public ReadOnly Property CanGetVirtualPosition As Boolean overload: OpenTK.Platform.Native.X11.X11DisplayComponent.CanGetVirtualPosition* implements: - - OpenTK.Core.Platform.IDisplayComponent.CanGetVirtualPosition -- uid: OpenTK.Platform.Native.X11.X11DisplayComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - commentId: M:OpenTK.Platform.Native.X11.X11DisplayComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - id: Initialize(OpenTK.Core.Platform.ToolkitOptions) + - OpenTK.Platform.IDisplayComponent.CanGetVirtualPosition +- uid: OpenTK.Platform.Native.X11.X11DisplayComponent.Initialize(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Native.X11.X11DisplayComponent.Initialize(OpenTK.Platform.ToolkitOptions) + id: Initialize(OpenTK.Platform.ToolkitOptions) parent: OpenTK.Platform.Native.X11.X11DisplayComponent langs: - csharp - vb name: Initialize(ToolkitOptions) nameWithType: X11DisplayComponent.Initialize(ToolkitOptions) - fullName: OpenTK.Platform.Native.X11.X11DisplayComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + fullName: OpenTK.Platform.Native.X11.X11DisplayComponent.Initialize(OpenTK.Platform.ToolkitOptions) type: Method source: - remote: - path: src/OpenTK.Platform.Native/X11/X11DisplayComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Initialize - path: opentk/src/OpenTK.Platform.Native/X11/X11DisplayComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11DisplayComponent.cs startLine: 279 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: Initialize the component. example: [] @@ -219,12 +195,12 @@ items: content: public void Initialize(ToolkitOptions options) parameters: - id: options - type: OpenTK.Core.Platform.ToolkitOptions + type: OpenTK.Platform.ToolkitOptions description: The options to initialize the component with. content.vb: Public Sub Initialize(options As ToolkitOptions) overload: OpenTK.Platform.Native.X11.X11DisplayComponent.Initialize* implements: - - OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + - OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) - uid: OpenTK.Platform.Native.X11.X11DisplayComponent.GetDisplayCount commentId: M:OpenTK.Platform.Native.X11.X11DisplayComponent.GetDisplayCount id: GetDisplayCount @@ -237,15 +213,11 @@ items: fullName: OpenTK.Platform.Native.X11.X11DisplayComponent.GetDisplayCount() type: Method source: - remote: - path: src/OpenTK.Platform.Native/X11/X11DisplayComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetDisplayCount - path: opentk/src/OpenTK.Platform.Native/X11/X11DisplayComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11DisplayComponent.cs startLine: 453 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: Get the number of available displays. example: [] @@ -257,7 +229,7 @@ items: content.vb: Public Function GetDisplayCount() As Integer overload: OpenTK.Platform.Native.X11.X11DisplayComponent.GetDisplayCount* implements: - - OpenTK.Core.Platform.IDisplayComponent.GetDisplayCount + - OpenTK.Platform.IDisplayComponent.GetDisplayCount - uid: OpenTK.Platform.Native.X11.X11DisplayComponent.Open(System.Int32) commentId: M:OpenTK.Platform.Native.X11.X11DisplayComponent.Open(System.Int32) id: Open(System.Int32) @@ -270,15 +242,11 @@ items: fullName: OpenTK.Platform.Native.X11.X11DisplayComponent.Open(int) type: Method source: - remote: - path: src/OpenTK.Platform.Native/X11/X11DisplayComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Open - path: opentk/src/OpenTK.Platform.Native/X11/X11DisplayComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11DisplayComponent.cs startLine: 459 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: Create a display handle to the indexed display. example: [] @@ -289,7 +257,7 @@ items: type: System.Int32 description: The display index to create a display handle to. return: - type: OpenTK.Core.Platform.DisplayHandle + type: OpenTK.Platform.DisplayHandle description: Handle to the display. content.vb: Public Function Open(index As Integer) As DisplayHandle overload: OpenTK.Platform.Native.X11.X11DisplayComponent.Open* @@ -298,7 +266,7 @@ items: commentId: T:System.ArgumentOutOfRangeException description: index is out of range. implements: - - OpenTK.Core.Platform.IDisplayComponent.Open(System.Int32) + - OpenTK.Platform.IDisplayComponent.Open(System.Int32) nameWithType.vb: X11DisplayComponent.Open(Integer) fullName.vb: OpenTK.Platform.Native.X11.X11DisplayComponent.Open(Integer) name.vb: Open(Integer) @@ -314,56 +282,48 @@ items: fullName: OpenTK.Platform.Native.X11.X11DisplayComponent.OpenPrimary() type: Method source: - remote: - path: src/OpenTK.Platform.Native/X11/X11DisplayComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: OpenPrimary - path: opentk/src/OpenTK.Platform.Native/X11/X11DisplayComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11DisplayComponent.cs startLine: 469 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: Create a display handle to the primary display. example: [] syntax: content: public DisplayHandle OpenPrimary() return: - type: OpenTK.Core.Platform.DisplayHandle + type: OpenTK.Platform.DisplayHandle description: Handle to the primary display. content.vb: Public Function OpenPrimary() As DisplayHandle overload: OpenTK.Platform.Native.X11.X11DisplayComponent.OpenPrimary* implements: - - OpenTK.Core.Platform.IDisplayComponent.OpenPrimary -- uid: OpenTK.Platform.Native.X11.X11DisplayComponent.Close(OpenTK.Core.Platform.DisplayHandle) - commentId: M:OpenTK.Platform.Native.X11.X11DisplayComponent.Close(OpenTK.Core.Platform.DisplayHandle) - id: Close(OpenTK.Core.Platform.DisplayHandle) + - OpenTK.Platform.IDisplayComponent.OpenPrimary +- uid: OpenTK.Platform.Native.X11.X11DisplayComponent.Close(OpenTK.Platform.DisplayHandle) + commentId: M:OpenTK.Platform.Native.X11.X11DisplayComponent.Close(OpenTK.Platform.DisplayHandle) + id: Close(OpenTK.Platform.DisplayHandle) parent: OpenTK.Platform.Native.X11.X11DisplayComponent langs: - csharp - vb name: Close(DisplayHandle) nameWithType: X11DisplayComponent.Close(DisplayHandle) - fullName: OpenTK.Platform.Native.X11.X11DisplayComponent.Close(OpenTK.Core.Platform.DisplayHandle) + fullName: OpenTK.Platform.Native.X11.X11DisplayComponent.Close(OpenTK.Platform.DisplayHandle) type: Method source: - remote: - path: src/OpenTK.Platform.Native/X11/X11DisplayComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Close - path: opentk/src/OpenTK.Platform.Native/X11/X11DisplayComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11DisplayComponent.cs startLine: 475 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 - summary: Destroy a display handle. + summary: Close a display handle. example: [] syntax: content: public void Close(DisplayHandle handle) parameters: - id: handle - type: OpenTK.Core.Platform.DisplayHandle + type: OpenTK.Platform.DisplayHandle description: Handle to a display. content.vb: Public Sub Close(handle As DisplayHandle) overload: OpenTK.Platform.Native.X11.X11DisplayComponent.Close* @@ -372,28 +332,24 @@ items: commentId: T:System.ArgumentNullException description: handle is null. implements: - - OpenTK.Core.Platform.IDisplayComponent.Close(OpenTK.Core.Platform.DisplayHandle) -- uid: OpenTK.Platform.Native.X11.X11DisplayComponent.IsPrimary(OpenTK.Core.Platform.DisplayHandle) - commentId: M:OpenTK.Platform.Native.X11.X11DisplayComponent.IsPrimary(OpenTK.Core.Platform.DisplayHandle) - id: IsPrimary(OpenTK.Core.Platform.DisplayHandle) + - OpenTK.Platform.IDisplayComponent.Close(OpenTK.Platform.DisplayHandle) +- uid: OpenTK.Platform.Native.X11.X11DisplayComponent.IsPrimary(OpenTK.Platform.DisplayHandle) + commentId: M:OpenTK.Platform.Native.X11.X11DisplayComponent.IsPrimary(OpenTK.Platform.DisplayHandle) + id: IsPrimary(OpenTK.Platform.DisplayHandle) parent: OpenTK.Platform.Native.X11.X11DisplayComponent langs: - csharp - vb name: IsPrimary(DisplayHandle) nameWithType: X11DisplayComponent.IsPrimary(DisplayHandle) - fullName: OpenTK.Platform.Native.X11.X11DisplayComponent.IsPrimary(OpenTK.Core.Platform.DisplayHandle) + fullName: OpenTK.Platform.Native.X11.X11DisplayComponent.IsPrimary(OpenTK.Platform.DisplayHandle) type: Method source: - remote: - path: src/OpenTK.Platform.Native/X11/X11DisplayComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: IsPrimary - path: opentk/src/OpenTK.Platform.Native/X11/X11DisplayComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11DisplayComponent.cs startLine: 482 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: Checks if a display is the primary display or not. example: [] @@ -401,7 +357,7 @@ items: content: public bool IsPrimary(DisplayHandle handle) parameters: - id: handle - type: OpenTK.Core.Platform.DisplayHandle + type: OpenTK.Platform.DisplayHandle description: The display to check whether or not is the primary display. return: type: System.Boolean @@ -409,28 +365,24 @@ items: content.vb: Public Function IsPrimary(handle As DisplayHandle) As Boolean overload: OpenTK.Platform.Native.X11.X11DisplayComponent.IsPrimary* implements: - - OpenTK.Core.Platform.IDisplayComponent.IsPrimary(OpenTK.Core.Platform.DisplayHandle) -- uid: OpenTK.Platform.Native.X11.X11DisplayComponent.GetName(OpenTK.Core.Platform.DisplayHandle) - commentId: M:OpenTK.Platform.Native.X11.X11DisplayComponent.GetName(OpenTK.Core.Platform.DisplayHandle) - id: GetName(OpenTK.Core.Platform.DisplayHandle) + - OpenTK.Platform.IDisplayComponent.IsPrimary(OpenTK.Platform.DisplayHandle) +- uid: OpenTK.Platform.Native.X11.X11DisplayComponent.GetName(OpenTK.Platform.DisplayHandle) + commentId: M:OpenTK.Platform.Native.X11.X11DisplayComponent.GetName(OpenTK.Platform.DisplayHandle) + id: GetName(OpenTK.Platform.DisplayHandle) parent: OpenTK.Platform.Native.X11.X11DisplayComponent langs: - csharp - vb name: GetName(DisplayHandle) nameWithType: X11DisplayComponent.GetName(DisplayHandle) - fullName: OpenTK.Platform.Native.X11.X11DisplayComponent.GetName(OpenTK.Core.Platform.DisplayHandle) + fullName: OpenTK.Platform.Native.X11.X11DisplayComponent.GetName(OpenTK.Platform.DisplayHandle) type: Method source: - remote: - path: src/OpenTK.Platform.Native/X11/X11DisplayComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetName - path: opentk/src/OpenTK.Platform.Native/X11/X11DisplayComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11DisplayComponent.cs startLine: 491 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: Get the friendly name of a display. example: [] @@ -438,7 +390,7 @@ items: content: public string GetName(DisplayHandle handle) parameters: - id: handle - type: OpenTK.Core.Platform.DisplayHandle + type: OpenTK.Platform.DisplayHandle description: Handle to a display. return: type: System.String @@ -450,28 +402,24 @@ items: commentId: T:System.ArgumentNullException description: handle is null. implements: - - OpenTK.Core.Platform.IDisplayComponent.GetName(OpenTK.Core.Platform.DisplayHandle) -- uid: OpenTK.Platform.Native.X11.X11DisplayComponent.GetVideoMode(OpenTK.Core.Platform.DisplayHandle,OpenTK.Core.Platform.VideoMode@) - commentId: M:OpenTK.Platform.Native.X11.X11DisplayComponent.GetVideoMode(OpenTK.Core.Platform.DisplayHandle,OpenTK.Core.Platform.VideoMode@) - id: GetVideoMode(OpenTK.Core.Platform.DisplayHandle,OpenTK.Core.Platform.VideoMode@) + - OpenTK.Platform.IDisplayComponent.GetName(OpenTK.Platform.DisplayHandle) +- uid: OpenTK.Platform.Native.X11.X11DisplayComponent.GetVideoMode(OpenTK.Platform.DisplayHandle,OpenTK.Platform.VideoMode@) + commentId: M:OpenTK.Platform.Native.X11.X11DisplayComponent.GetVideoMode(OpenTK.Platform.DisplayHandle,OpenTK.Platform.VideoMode@) + id: GetVideoMode(OpenTK.Platform.DisplayHandle,OpenTK.Platform.VideoMode@) parent: OpenTK.Platform.Native.X11.X11DisplayComponent langs: - csharp - vb name: GetVideoMode(DisplayHandle, out VideoMode) nameWithType: X11DisplayComponent.GetVideoMode(DisplayHandle, out VideoMode) - fullName: OpenTK.Platform.Native.X11.X11DisplayComponent.GetVideoMode(OpenTK.Core.Platform.DisplayHandle, out OpenTK.Core.Platform.VideoMode) + fullName: OpenTK.Platform.Native.X11.X11DisplayComponent.GetVideoMode(OpenTK.Platform.DisplayHandle, out OpenTK.Platform.VideoMode) type: Method source: - remote: - path: src/OpenTK.Platform.Native/X11/X11DisplayComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetVideoMode - path: opentk/src/OpenTK.Platform.Native/X11/X11DisplayComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11DisplayComponent.cs startLine: 498 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: Get the active video mode of a display. example: [] @@ -479,10 +427,10 @@ items: content: public void GetVideoMode(DisplayHandle handle, out VideoMode mode) parameters: - id: handle - type: OpenTK.Core.Platform.DisplayHandle + type: OpenTK.Platform.DisplayHandle description: Handle to a display. - id: mode - type: OpenTK.Core.Platform.VideoMode + type: OpenTK.Platform.VideoMode description: Active video mode of display. content.vb: Public Sub GetVideoMode(handle As DisplayHandle, mode As VideoMode) overload: OpenTK.Platform.Native.X11.X11DisplayComponent.GetVideoMode* @@ -491,31 +439,27 @@ items: commentId: T:System.ArgumentNullException description: handle is null. implements: - - OpenTK.Core.Platform.IDisplayComponent.GetVideoMode(OpenTK.Core.Platform.DisplayHandle,OpenTK.Core.Platform.VideoMode@) + - OpenTK.Platform.IDisplayComponent.GetVideoMode(OpenTK.Platform.DisplayHandle,OpenTK.Platform.VideoMode@) nameWithType.vb: X11DisplayComponent.GetVideoMode(DisplayHandle, VideoMode) - fullName.vb: OpenTK.Platform.Native.X11.X11DisplayComponent.GetVideoMode(OpenTK.Core.Platform.DisplayHandle, OpenTK.Core.Platform.VideoMode) + fullName.vb: OpenTK.Platform.Native.X11.X11DisplayComponent.GetVideoMode(OpenTK.Platform.DisplayHandle, OpenTK.Platform.VideoMode) name.vb: GetVideoMode(DisplayHandle, VideoMode) -- uid: OpenTK.Platform.Native.X11.X11DisplayComponent.GetSupportedVideoModes(OpenTK.Core.Platform.DisplayHandle) - commentId: M:OpenTK.Platform.Native.X11.X11DisplayComponent.GetSupportedVideoModes(OpenTK.Core.Platform.DisplayHandle) - id: GetSupportedVideoModes(OpenTK.Core.Platform.DisplayHandle) +- uid: OpenTK.Platform.Native.X11.X11DisplayComponent.GetSupportedVideoModes(OpenTK.Platform.DisplayHandle) + commentId: M:OpenTK.Platform.Native.X11.X11DisplayComponent.GetSupportedVideoModes(OpenTK.Platform.DisplayHandle) + id: GetSupportedVideoModes(OpenTK.Platform.DisplayHandle) parent: OpenTK.Platform.Native.X11.X11DisplayComponent langs: - csharp - vb name: GetSupportedVideoModes(DisplayHandle) nameWithType: X11DisplayComponent.GetSupportedVideoModes(DisplayHandle) - fullName: OpenTK.Platform.Native.X11.X11DisplayComponent.GetSupportedVideoModes(OpenTK.Core.Platform.DisplayHandle) + fullName: OpenTK.Platform.Native.X11.X11DisplayComponent.GetSupportedVideoModes(OpenTK.Platform.DisplayHandle) type: Method source: - remote: - path: src/OpenTK.Platform.Native/X11/X11DisplayComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetSupportedVideoModes - path: opentk/src/OpenTK.Platform.Native/X11/X11DisplayComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11DisplayComponent.cs startLine: 573 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: Get all supported video modes for a specific display. example: [] @@ -523,10 +467,10 @@ items: content: public VideoMode[] GetSupportedVideoModes(DisplayHandle handle) parameters: - id: handle - type: OpenTK.Core.Platform.DisplayHandle + type: OpenTK.Platform.DisplayHandle description: Handle to a display. return: - type: OpenTK.Core.Platform.VideoMode[] + type: OpenTK.Platform.VideoMode[] description: An array of all supported video modes. content.vb: Public Function GetSupportedVideoModes(handle As DisplayHandle) As VideoMode() overload: OpenTK.Platform.Native.X11.X11DisplayComponent.GetSupportedVideoModes* @@ -535,28 +479,24 @@ items: commentId: T:System.ArgumentNullException description: handle is null. implements: - - OpenTK.Core.Platform.IDisplayComponent.GetSupportedVideoModes(OpenTK.Core.Platform.DisplayHandle) -- uid: OpenTK.Platform.Native.X11.X11DisplayComponent.GetVirtualPosition(OpenTK.Core.Platform.DisplayHandle,System.Int32@,System.Int32@) - commentId: M:OpenTK.Platform.Native.X11.X11DisplayComponent.GetVirtualPosition(OpenTK.Core.Platform.DisplayHandle,System.Int32@,System.Int32@) - id: GetVirtualPosition(OpenTK.Core.Platform.DisplayHandle,System.Int32@,System.Int32@) + - OpenTK.Platform.IDisplayComponent.GetSupportedVideoModes(OpenTK.Platform.DisplayHandle) +- uid: OpenTK.Platform.Native.X11.X11DisplayComponent.GetVirtualPosition(OpenTK.Platform.DisplayHandle,System.Int32@,System.Int32@) + commentId: M:OpenTK.Platform.Native.X11.X11DisplayComponent.GetVirtualPosition(OpenTK.Platform.DisplayHandle,System.Int32@,System.Int32@) + id: GetVirtualPosition(OpenTK.Platform.DisplayHandle,System.Int32@,System.Int32@) parent: OpenTK.Platform.Native.X11.X11DisplayComponent langs: - csharp - vb name: GetVirtualPosition(DisplayHandle, out int, out int) nameWithType: X11DisplayComponent.GetVirtualPosition(DisplayHandle, out int, out int) - fullName: OpenTK.Platform.Native.X11.X11DisplayComponent.GetVirtualPosition(OpenTK.Core.Platform.DisplayHandle, out int, out int) + fullName: OpenTK.Platform.Native.X11.X11DisplayComponent.GetVirtualPosition(OpenTK.Platform.DisplayHandle, out int, out int) type: Method source: - remote: - path: src/OpenTK.Platform.Native/X11/X11DisplayComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetVirtualPosition - path: opentk/src/OpenTK.Platform.Native/X11/X11DisplayComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11DisplayComponent.cs startLine: 606 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: Get the position of the display in the virtual desktop. example: [] @@ -564,7 +504,7 @@ items: content: public void GetVirtualPosition(DisplayHandle handle, out int x, out int y) parameters: - id: handle - type: OpenTK.Core.Platform.DisplayHandle + type: OpenTK.Platform.DisplayHandle description: Handle to a display. - id: x type: System.Int32 @@ -578,35 +518,31 @@ items: - type: System.ArgumentNullException commentId: T:System.ArgumentNullException description: handle is null. - - type: OpenTK.Core.Platform.PalNotImplementedException - commentId: T:OpenTK.Core.Platform.PalNotImplementedException - description: Driver cannot get display virtual position. See . + - type: OpenTK.Platform.PalNotImplementedException + commentId: T:OpenTK.Platform.PalNotImplementedException + description: Driver cannot get display virtual position. See . implements: - - OpenTK.Core.Platform.IDisplayComponent.GetVirtualPosition(OpenTK.Core.Platform.DisplayHandle,System.Int32@,System.Int32@) + - OpenTK.Platform.IDisplayComponent.GetVirtualPosition(OpenTK.Platform.DisplayHandle,System.Int32@,System.Int32@) nameWithType.vb: X11DisplayComponent.GetVirtualPosition(DisplayHandle, Integer, Integer) - fullName.vb: OpenTK.Platform.Native.X11.X11DisplayComponent.GetVirtualPosition(OpenTK.Core.Platform.DisplayHandle, Integer, Integer) + fullName.vb: OpenTK.Platform.Native.X11.X11DisplayComponent.GetVirtualPosition(OpenTK.Platform.DisplayHandle, Integer, Integer) name.vb: GetVirtualPosition(DisplayHandle, Integer, Integer) -- uid: OpenTK.Platform.Native.X11.X11DisplayComponent.GetResolution(OpenTK.Core.Platform.DisplayHandle,System.Int32@,System.Int32@) - commentId: M:OpenTK.Platform.Native.X11.X11DisplayComponent.GetResolution(OpenTK.Core.Platform.DisplayHandle,System.Int32@,System.Int32@) - id: GetResolution(OpenTK.Core.Platform.DisplayHandle,System.Int32@,System.Int32@) +- uid: OpenTK.Platform.Native.X11.X11DisplayComponent.GetResolution(OpenTK.Platform.DisplayHandle,System.Int32@,System.Int32@) + commentId: M:OpenTK.Platform.Native.X11.X11DisplayComponent.GetResolution(OpenTK.Platform.DisplayHandle,System.Int32@,System.Int32@) + id: GetResolution(OpenTK.Platform.DisplayHandle,System.Int32@,System.Int32@) parent: OpenTK.Platform.Native.X11.X11DisplayComponent langs: - csharp - vb name: GetResolution(DisplayHandle, out int, out int) nameWithType: X11DisplayComponent.GetResolution(DisplayHandle, out int, out int) - fullName: OpenTK.Platform.Native.X11.X11DisplayComponent.GetResolution(OpenTK.Core.Platform.DisplayHandle, out int, out int) + fullName: OpenTK.Platform.Native.X11.X11DisplayComponent.GetResolution(OpenTK.Platform.DisplayHandle, out int, out int) type: Method source: - remote: - path: src/OpenTK.Platform.Native/X11/X11DisplayComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetResolution - path: opentk/src/OpenTK.Platform.Native/X11/X11DisplayComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11DisplayComponent.cs startLine: 636 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: Get the resolution of the specified display. example: [] @@ -614,7 +550,7 @@ items: content: public void GetResolution(DisplayHandle handle, out int width, out int height) parameters: - id: handle - type: OpenTK.Core.Platform.DisplayHandle + type: OpenTK.Platform.DisplayHandle description: Handle to a display. - id: width type: System.Int32 @@ -629,31 +565,27 @@ items: commentId: T:System.ArgumentNullException description: handle is null. implements: - - OpenTK.Core.Platform.IDisplayComponent.GetResolution(OpenTK.Core.Platform.DisplayHandle,System.Int32@,System.Int32@) + - OpenTK.Platform.IDisplayComponent.GetResolution(OpenTK.Platform.DisplayHandle,System.Int32@,System.Int32@) nameWithType.vb: X11DisplayComponent.GetResolution(DisplayHandle, Integer, Integer) - fullName.vb: OpenTK.Platform.Native.X11.X11DisplayComponent.GetResolution(OpenTK.Core.Platform.DisplayHandle, Integer, Integer) + fullName.vb: OpenTK.Platform.Native.X11.X11DisplayComponent.GetResolution(OpenTK.Platform.DisplayHandle, Integer, Integer) name.vb: GetResolution(DisplayHandle, Integer, Integer) -- uid: OpenTK.Platform.Native.X11.X11DisplayComponent.GetWorkArea(OpenTK.Core.Platform.DisplayHandle,OpenTK.Mathematics.Box2i@) - commentId: M:OpenTK.Platform.Native.X11.X11DisplayComponent.GetWorkArea(OpenTK.Core.Platform.DisplayHandle,OpenTK.Mathematics.Box2i@) - id: GetWorkArea(OpenTK.Core.Platform.DisplayHandle,OpenTK.Mathematics.Box2i@) +- uid: OpenTK.Platform.Native.X11.X11DisplayComponent.GetWorkArea(OpenTK.Platform.DisplayHandle,OpenTK.Mathematics.Box2i@) + commentId: M:OpenTK.Platform.Native.X11.X11DisplayComponent.GetWorkArea(OpenTK.Platform.DisplayHandle,OpenTK.Mathematics.Box2i@) + id: GetWorkArea(OpenTK.Platform.DisplayHandle,OpenTK.Mathematics.Box2i@) parent: OpenTK.Platform.Native.X11.X11DisplayComponent langs: - csharp - vb name: GetWorkArea(DisplayHandle, out Box2i) nameWithType: X11DisplayComponent.GetWorkArea(DisplayHandle, out Box2i) - fullName: OpenTK.Platform.Native.X11.X11DisplayComponent.GetWorkArea(OpenTK.Core.Platform.DisplayHandle, out OpenTK.Mathematics.Box2i) + fullName: OpenTK.Platform.Native.X11.X11DisplayComponent.GetWorkArea(OpenTK.Platform.DisplayHandle, out OpenTK.Mathematics.Box2i) type: Method source: - remote: - path: src/OpenTK.Platform.Native/X11/X11DisplayComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetWorkArea - path: opentk/src/OpenTK.Platform.Native/X11/X11DisplayComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11DisplayComponent.cs startLine: 667 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: >- Get the work area of this display. @@ -664,7 +596,7 @@ items: content: public void GetWorkArea(DisplayHandle handle, out Box2i area) parameters: - id: handle - type: OpenTK.Core.Platform.DisplayHandle + type: OpenTK.Platform.DisplayHandle description: Handle to a display. - id: area type: OpenTK.Mathematics.Box2i @@ -672,31 +604,27 @@ items: content.vb: Public Sub GetWorkArea(handle As DisplayHandle, area As Box2i) overload: OpenTK.Platform.Native.X11.X11DisplayComponent.GetWorkArea* implements: - - OpenTK.Core.Platform.IDisplayComponent.GetWorkArea(OpenTK.Core.Platform.DisplayHandle,OpenTK.Mathematics.Box2i@) + - OpenTK.Platform.IDisplayComponent.GetWorkArea(OpenTK.Platform.DisplayHandle,OpenTK.Mathematics.Box2i@) nameWithType.vb: X11DisplayComponent.GetWorkArea(DisplayHandle, Box2i) - fullName.vb: OpenTK.Platform.Native.X11.X11DisplayComponent.GetWorkArea(OpenTK.Core.Platform.DisplayHandle, OpenTK.Mathematics.Box2i) + fullName.vb: OpenTK.Platform.Native.X11.X11DisplayComponent.GetWorkArea(OpenTK.Platform.DisplayHandle, OpenTK.Mathematics.Box2i) name.vb: GetWorkArea(DisplayHandle, Box2i) -- uid: OpenTK.Platform.Native.X11.X11DisplayComponent.GetRefreshRate(OpenTK.Core.Platform.DisplayHandle,System.Single@) - commentId: M:OpenTK.Platform.Native.X11.X11DisplayComponent.GetRefreshRate(OpenTK.Core.Platform.DisplayHandle,System.Single@) - id: GetRefreshRate(OpenTK.Core.Platform.DisplayHandle,System.Single@) +- uid: OpenTK.Platform.Native.X11.X11DisplayComponent.GetRefreshRate(OpenTK.Platform.DisplayHandle,System.Single@) + commentId: M:OpenTK.Platform.Native.X11.X11DisplayComponent.GetRefreshRate(OpenTK.Platform.DisplayHandle,System.Single@) + id: GetRefreshRate(OpenTK.Platform.DisplayHandle,System.Single@) parent: OpenTK.Platform.Native.X11.X11DisplayComponent langs: - csharp - vb name: GetRefreshRate(DisplayHandle, out float) nameWithType: X11DisplayComponent.GetRefreshRate(DisplayHandle, out float) - fullName: OpenTK.Platform.Native.X11.X11DisplayComponent.GetRefreshRate(OpenTK.Core.Platform.DisplayHandle, out float) + fullName: OpenTK.Platform.Native.X11.X11DisplayComponent.GetRefreshRate(OpenTK.Platform.DisplayHandle, out float) type: Method source: - remote: - path: src/OpenTK.Platform.Native/X11/X11DisplayComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetRefreshRate - path: opentk/src/OpenTK.Platform.Native/X11/X11DisplayComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11DisplayComponent.cs startLine: 760 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: Get the refresh rate if the specified display. example: [] @@ -704,7 +632,7 @@ items: content: public void GetRefreshRate(DisplayHandle handle, out float refreshRate) parameters: - id: handle - type: OpenTK.Core.Platform.DisplayHandle + type: OpenTK.Platform.DisplayHandle description: Handle to a display. - id: refreshRate type: System.Single @@ -712,31 +640,27 @@ items: content.vb: Public Sub GetRefreshRate(handle As DisplayHandle, refreshRate As Single) overload: OpenTK.Platform.Native.X11.X11DisplayComponent.GetRefreshRate* implements: - - OpenTK.Core.Platform.IDisplayComponent.GetRefreshRate(OpenTK.Core.Platform.DisplayHandle,System.Single@) + - OpenTK.Platform.IDisplayComponent.GetRefreshRate(OpenTK.Platform.DisplayHandle,System.Single@) nameWithType.vb: X11DisplayComponent.GetRefreshRate(DisplayHandle, Single) - fullName.vb: OpenTK.Platform.Native.X11.X11DisplayComponent.GetRefreshRate(OpenTK.Core.Platform.DisplayHandle, Single) + fullName.vb: OpenTK.Platform.Native.X11.X11DisplayComponent.GetRefreshRate(OpenTK.Platform.DisplayHandle, Single) name.vb: GetRefreshRate(DisplayHandle, Single) -- uid: OpenTK.Platform.Native.X11.X11DisplayComponent.GetDisplayScale(OpenTK.Core.Platform.DisplayHandle,System.Single@,System.Single@) - commentId: M:OpenTK.Platform.Native.X11.X11DisplayComponent.GetDisplayScale(OpenTK.Core.Platform.DisplayHandle,System.Single@,System.Single@) - id: GetDisplayScale(OpenTK.Core.Platform.DisplayHandle,System.Single@,System.Single@) +- uid: OpenTK.Platform.Native.X11.X11DisplayComponent.GetDisplayScale(OpenTK.Platform.DisplayHandle,System.Single@,System.Single@) + commentId: M:OpenTK.Platform.Native.X11.X11DisplayComponent.GetDisplayScale(OpenTK.Platform.DisplayHandle,System.Single@,System.Single@) + id: GetDisplayScale(OpenTK.Platform.DisplayHandle,System.Single@,System.Single@) parent: OpenTK.Platform.Native.X11.X11DisplayComponent langs: - csharp - vb name: GetDisplayScale(DisplayHandle, out float, out float) nameWithType: X11DisplayComponent.GetDisplayScale(DisplayHandle, out float, out float) - fullName: OpenTK.Platform.Native.X11.X11DisplayComponent.GetDisplayScale(OpenTK.Core.Platform.DisplayHandle, out float, out float) + fullName: OpenTK.Platform.Native.X11.X11DisplayComponent.GetDisplayScale(OpenTK.Platform.DisplayHandle, out float, out float) type: Method source: - remote: - path: src/OpenTK.Platform.Native/X11/X11DisplayComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetDisplayScale - path: opentk/src/OpenTK.Platform.Native/X11/X11DisplayComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11DisplayComponent.cs startLine: 805 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: Get the scale of the display. example: [] @@ -744,7 +668,7 @@ items: content: public void GetDisplayScale(DisplayHandle handle, out float scaleX, out float scaleY) parameters: - id: handle - type: OpenTK.Core.Platform.DisplayHandle + type: OpenTK.Platform.DisplayHandle description: Handle to a display. - id: scaleX type: System.Single @@ -755,31 +679,27 @@ items: content.vb: Public Sub GetDisplayScale(handle As DisplayHandle, scaleX As Single, scaleY As Single) overload: OpenTK.Platform.Native.X11.X11DisplayComponent.GetDisplayScale* implements: - - OpenTK.Core.Platform.IDisplayComponent.GetDisplayScale(OpenTK.Core.Platform.DisplayHandle,System.Single@,System.Single@) + - OpenTK.Platform.IDisplayComponent.GetDisplayScale(OpenTK.Platform.DisplayHandle,System.Single@,System.Single@) nameWithType.vb: X11DisplayComponent.GetDisplayScale(DisplayHandle, Single, Single) - fullName.vb: OpenTK.Platform.Native.X11.X11DisplayComponent.GetDisplayScale(OpenTK.Core.Platform.DisplayHandle, Single, Single) + fullName.vb: OpenTK.Platform.Native.X11.X11DisplayComponent.GetDisplayScale(OpenTK.Platform.DisplayHandle, Single, Single) name.vb: GetDisplayScale(DisplayHandle, Single, Single) -- uid: OpenTK.Platform.Native.X11.X11DisplayComponent.GetRRCrtc(OpenTK.Core.Platform.DisplayHandle) - commentId: M:OpenTK.Platform.Native.X11.X11DisplayComponent.GetRRCrtc(OpenTK.Core.Platform.DisplayHandle) - id: GetRRCrtc(OpenTK.Core.Platform.DisplayHandle) +- uid: OpenTK.Platform.Native.X11.X11DisplayComponent.GetRRCrtc(OpenTK.Platform.DisplayHandle) + commentId: M:OpenTK.Platform.Native.X11.X11DisplayComponent.GetRRCrtc(OpenTK.Platform.DisplayHandle) + id: GetRRCrtc(OpenTK.Platform.DisplayHandle) parent: OpenTK.Platform.Native.X11.X11DisplayComponent langs: - csharp - vb name: GetRRCrtc(DisplayHandle) nameWithType: X11DisplayComponent.GetRRCrtc(DisplayHandle) - fullName: OpenTK.Platform.Native.X11.X11DisplayComponent.GetRRCrtc(OpenTK.Core.Platform.DisplayHandle) + fullName: OpenTK.Platform.Native.X11.X11DisplayComponent.GetRRCrtc(OpenTK.Platform.DisplayHandle) type: Method source: - remote: - path: src/OpenTK.Platform.Native/X11/X11DisplayComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetRRCrtc - path: opentk/src/OpenTK.Platform.Native/X11/X11DisplayComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11DisplayComponent.cs startLine: 820 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: Gets the RandR RRCrtc associated with the display handle. example: [] @@ -787,34 +707,30 @@ items: content: public nint GetRRCrtc(DisplayHandle handle) parameters: - id: handle - type: OpenTK.Core.Platform.DisplayHandle + type: OpenTK.Platform.DisplayHandle description: A handle to a display to get the RRCrtc from. return: type: System.IntPtr description: The RRCrtc associated with the display handle. content.vb: Public Function GetRRCrtc(handle As DisplayHandle) As IntPtr overload: OpenTK.Platform.Native.X11.X11DisplayComponent.GetRRCrtc* -- uid: OpenTK.Platform.Native.X11.X11DisplayComponent.GetRROutput(OpenTK.Core.Platform.DisplayHandle) - commentId: M:OpenTK.Platform.Native.X11.X11DisplayComponent.GetRROutput(OpenTK.Core.Platform.DisplayHandle) - id: GetRROutput(OpenTK.Core.Platform.DisplayHandle) +- uid: OpenTK.Platform.Native.X11.X11DisplayComponent.GetRROutput(OpenTK.Platform.DisplayHandle) + commentId: M:OpenTK.Platform.Native.X11.X11DisplayComponent.GetRROutput(OpenTK.Platform.DisplayHandle) + id: GetRROutput(OpenTK.Platform.DisplayHandle) parent: OpenTK.Platform.Native.X11.X11DisplayComponent langs: - csharp - vb name: GetRROutput(DisplayHandle) nameWithType: X11DisplayComponent.GetRROutput(DisplayHandle) - fullName: OpenTK.Platform.Native.X11.X11DisplayComponent.GetRROutput(OpenTK.Core.Platform.DisplayHandle) + fullName: OpenTK.Platform.Native.X11.X11DisplayComponent.GetRROutput(OpenTK.Platform.DisplayHandle) type: Method source: - remote: - path: src/OpenTK.Platform.Native/X11/X11DisplayComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetRROutput - path: opentk/src/OpenTK.Platform.Native/X11/X11DisplayComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11DisplayComponent.cs startLine: 835 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: Gets the RandR RROutput associated with the display handle. example: [] @@ -822,7 +738,7 @@ items: content: public nint GetRROutput(DisplayHandle handle) parameters: - id: handle - type: OpenTK.Core.Platform.DisplayHandle + type: OpenTK.Platform.DisplayHandle description: A handle to a display to get the RROutput from. return: type: System.IntPtr @@ -879,20 +795,20 @@ references: nameWithType.vb: Object fullName.vb: Object name.vb: Object -- uid: OpenTK.Core.Platform.IDisplayComponent - commentId: T:OpenTK.Core.Platform.IDisplayComponent - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.IDisplayComponent.html +- uid: OpenTK.Platform.IDisplayComponent + commentId: T:OpenTK.Platform.IDisplayComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IDisplayComponent.html name: IDisplayComponent nameWithType: IDisplayComponent - fullName: OpenTK.Core.Platform.IDisplayComponent -- uid: OpenTK.Core.Platform.IPalComponent - commentId: T:OpenTK.Core.Platform.IPalComponent - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.IPalComponent.html + fullName: OpenTK.Platform.IDisplayComponent +- uid: OpenTK.Platform.IPalComponent + commentId: T:OpenTK.Platform.IPalComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IPalComponent.html name: IPalComponent nameWithType: IPalComponent - fullName: OpenTK.Core.Platform.IPalComponent + fullName: OpenTK.Platform.IPalComponent - uid: System.Object.Equals(System.Object) commentId: M:System.Object.Equals(System.Object) parent: System.Object @@ -1119,49 +1035,41 @@ references: name: System nameWithType: System fullName: System -- uid: OpenTK.Core.Platform - commentId: N:OpenTK.Core.Platform +- uid: OpenTK.Platform + commentId: N:OpenTK.Platform href: OpenTK.html - name: OpenTK.Core.Platform - nameWithType: OpenTK.Core.Platform - fullName: OpenTK.Core.Platform + name: OpenTK.Platform + nameWithType: OpenTK.Platform + fullName: OpenTK.Platform spec.csharp: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html spec.vb: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html - uid: OpenTK.Platform.Native.X11.X11DisplayComponent.Name* commentId: Overload:OpenTK.Platform.Native.X11.X11DisplayComponent.Name href: OpenTK.Platform.Native.X11.X11DisplayComponent.html#OpenTK_Platform_Native_X11_X11DisplayComponent_Name name: Name nameWithType: X11DisplayComponent.Name fullName: OpenTK.Platform.Native.X11.X11DisplayComponent.Name -- uid: OpenTK.Core.Platform.IPalComponent.Name - commentId: P:OpenTK.Core.Platform.IPalComponent.Name - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Name +- uid: OpenTK.Platform.IPalComponent.Name + commentId: P:OpenTK.Platform.IPalComponent.Name + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Name name: Name nameWithType: IPalComponent.Name - fullName: OpenTK.Core.Platform.IPalComponent.Name + fullName: OpenTK.Platform.IPalComponent.Name - uid: System.String commentId: T:System.String parent: System @@ -1179,33 +1087,33 @@ references: name: Provides nameWithType: X11DisplayComponent.Provides fullName: OpenTK.Platform.Native.X11.X11DisplayComponent.Provides -- uid: OpenTK.Core.Platform.IPalComponent.Provides - commentId: P:OpenTK.Core.Platform.IPalComponent.Provides - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Provides +- uid: OpenTK.Platform.IPalComponent.Provides + commentId: P:OpenTK.Platform.IPalComponent.Provides + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Provides name: Provides nameWithType: IPalComponent.Provides - fullName: OpenTK.Core.Platform.IPalComponent.Provides -- uid: OpenTK.Core.Platform.PalComponents - commentId: T:OpenTK.Core.Platform.PalComponents - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.PalComponents.html + fullName: OpenTK.Platform.IPalComponent.Provides +- uid: OpenTK.Platform.PalComponents + commentId: T:OpenTK.Platform.PalComponents + parent: OpenTK.Platform + href: OpenTK.Platform.PalComponents.html name: PalComponents nameWithType: PalComponents - fullName: OpenTK.Core.Platform.PalComponents + fullName: OpenTK.Platform.PalComponents - uid: OpenTK.Platform.Native.X11.X11DisplayComponent.Logger* commentId: Overload:OpenTK.Platform.Native.X11.X11DisplayComponent.Logger href: OpenTK.Platform.Native.X11.X11DisplayComponent.html#OpenTK_Platform_Native_X11_X11DisplayComponent_Logger name: Logger nameWithType: X11DisplayComponent.Logger fullName: OpenTK.Platform.Native.X11.X11DisplayComponent.Logger -- uid: OpenTK.Core.Platform.IPalComponent.Logger - commentId: P:OpenTK.Core.Platform.IPalComponent.Logger - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Logger +- uid: OpenTK.Platform.IPalComponent.Logger + commentId: P:OpenTK.Platform.IPalComponent.Logger + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Logger name: Logger nameWithType: IPalComponent.Logger - fullName: OpenTK.Core.Platform.IPalComponent.Logger + fullName: OpenTK.Platform.IPalComponent.Logger - uid: OpenTK.Core.Utility.ILogger commentId: T:OpenTK.Core.Utility.ILogger parent: OpenTK.Core.Utility @@ -1243,19 +1151,76 @@ references: - uid: OpenTK.Core.Utility name: Utility href: OpenTK.Core.Utility.html +- uid: OpenTK.Platform.IDisplayComponent.GetVirtualPosition(OpenTK.Platform.DisplayHandle,System.Int32@,System.Int32@) + commentId: M:OpenTK.Platform.IDisplayComponent.GetVirtualPosition(OpenTK.Platform.DisplayHandle,System.Int32@,System.Int32@) + parent: OpenTK.Platform.IDisplayComponent + isExternal: true + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_GetVirtualPosition_OpenTK_Platform_DisplayHandle_System_Int32__System_Int32__ + name: GetVirtualPosition(DisplayHandle, out int, out int) + nameWithType: IDisplayComponent.GetVirtualPosition(DisplayHandle, out int, out int) + fullName: OpenTK.Platform.IDisplayComponent.GetVirtualPosition(OpenTK.Platform.DisplayHandle, out int, out int) + nameWithType.vb: IDisplayComponent.GetVirtualPosition(DisplayHandle, Integer, Integer) + fullName.vb: OpenTK.Platform.IDisplayComponent.GetVirtualPosition(OpenTK.Platform.DisplayHandle, Integer, Integer) + name.vb: GetVirtualPosition(DisplayHandle, Integer, Integer) + spec.csharp: + - uid: OpenTK.Platform.IDisplayComponent.GetVirtualPosition(OpenTK.Platform.DisplayHandle,System.Int32@,System.Int32@) + name: GetVirtualPosition + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_GetVirtualPosition_OpenTK_Platform_DisplayHandle_System_Int32__System_Int32__ + - name: ( + - uid: OpenTK.Platform.DisplayHandle + name: DisplayHandle + href: OpenTK.Platform.DisplayHandle.html + - name: ',' + - name: " " + - name: out + - name: " " + - uid: System.Int32 + name: int + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ',' + - name: " " + - name: out + - name: " " + - uid: System.Int32 + name: int + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ) + spec.vb: + - uid: OpenTK.Platform.IDisplayComponent.GetVirtualPosition(OpenTK.Platform.DisplayHandle,System.Int32@,System.Int32@) + name: GetVirtualPosition + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_GetVirtualPosition_OpenTK_Platform_DisplayHandle_System_Int32__System_Int32__ + - name: ( + - uid: OpenTK.Platform.DisplayHandle + name: DisplayHandle + href: OpenTK.Platform.DisplayHandle.html + - name: ',' + - name: " " + - uid: System.Int32 + name: Integer + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ',' + - name: " " + - uid: System.Int32 + name: Integer + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ) - uid: OpenTK.Platform.Native.X11.X11DisplayComponent.CanGetVirtualPosition* commentId: Overload:OpenTK.Platform.Native.X11.X11DisplayComponent.CanGetVirtualPosition href: OpenTK.Platform.Native.X11.X11DisplayComponent.html#OpenTK_Platform_Native_X11_X11DisplayComponent_CanGetVirtualPosition name: CanGetVirtualPosition nameWithType: X11DisplayComponent.CanGetVirtualPosition fullName: OpenTK.Platform.Native.X11.X11DisplayComponent.CanGetVirtualPosition -- uid: OpenTK.Core.Platform.IDisplayComponent.CanGetVirtualPosition - commentId: P:OpenTK.Core.Platform.IDisplayComponent.CanGetVirtualPosition - parent: OpenTK.Core.Platform.IDisplayComponent - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_CanGetVirtualPosition +- uid: OpenTK.Platform.IDisplayComponent.CanGetVirtualPosition + commentId: P:OpenTK.Platform.IDisplayComponent.CanGetVirtualPosition + parent: OpenTK.Platform.IDisplayComponent + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_CanGetVirtualPosition name: CanGetVirtualPosition nameWithType: IDisplayComponent.CanGetVirtualPosition - fullName: OpenTK.Core.Platform.IDisplayComponent.CanGetVirtualPosition + fullName: OpenTK.Platform.IDisplayComponent.CanGetVirtualPosition - uid: System.Boolean commentId: T:System.Boolean parent: System @@ -1269,65 +1234,65 @@ references: name.vb: Boolean - uid: OpenTK.Platform.Native.X11.X11DisplayComponent.Initialize* commentId: Overload:OpenTK.Platform.Native.X11.X11DisplayComponent.Initialize - href: OpenTK.Platform.Native.X11.X11DisplayComponent.html#OpenTK_Platform_Native_X11_X11DisplayComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + href: OpenTK.Platform.Native.X11.X11DisplayComponent.html#OpenTK_Platform_Native_X11_X11DisplayComponent_Initialize_OpenTK_Platform_ToolkitOptions_ name: Initialize nameWithType: X11DisplayComponent.Initialize fullName: OpenTK.Platform.Native.X11.X11DisplayComponent.Initialize -- uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - commentId: M:OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ +- uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ name: Initialize(ToolkitOptions) nameWithType: IPalComponent.Initialize(ToolkitOptions) - fullName: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + fullName: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) spec.csharp: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + - uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.ToolkitOptions + - uid: OpenTK.Platform.ToolkitOptions name: ToolkitOptions - href: OpenTK.Core.Platform.ToolkitOptions.html + href: OpenTK.Platform.ToolkitOptions.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + - uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.ToolkitOptions + - uid: OpenTK.Platform.ToolkitOptions name: ToolkitOptions - href: OpenTK.Core.Platform.ToolkitOptions.html + href: OpenTK.Platform.ToolkitOptions.html - name: ) -- uid: OpenTK.Core.Platform.ToolkitOptions - commentId: T:OpenTK.Core.Platform.ToolkitOptions - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.ToolkitOptions.html +- uid: OpenTK.Platform.ToolkitOptions + commentId: T:OpenTK.Platform.ToolkitOptions + parent: OpenTK.Platform + href: OpenTK.Platform.ToolkitOptions.html name: ToolkitOptions nameWithType: ToolkitOptions - fullName: OpenTK.Core.Platform.ToolkitOptions + fullName: OpenTK.Platform.ToolkitOptions - uid: OpenTK.Platform.Native.X11.X11DisplayComponent.GetDisplayCount* commentId: Overload:OpenTK.Platform.Native.X11.X11DisplayComponent.GetDisplayCount href: OpenTK.Platform.Native.X11.X11DisplayComponent.html#OpenTK_Platform_Native_X11_X11DisplayComponent_GetDisplayCount name: GetDisplayCount nameWithType: X11DisplayComponent.GetDisplayCount fullName: OpenTK.Platform.Native.X11.X11DisplayComponent.GetDisplayCount -- uid: OpenTK.Core.Platform.IDisplayComponent.GetDisplayCount - commentId: M:OpenTK.Core.Platform.IDisplayComponent.GetDisplayCount - parent: OpenTK.Core.Platform.IDisplayComponent - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_GetDisplayCount +- uid: OpenTK.Platform.IDisplayComponent.GetDisplayCount + commentId: M:OpenTK.Platform.IDisplayComponent.GetDisplayCount + parent: OpenTK.Platform.IDisplayComponent + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_GetDisplayCount name: GetDisplayCount() nameWithType: IDisplayComponent.GetDisplayCount() - fullName: OpenTK.Core.Platform.IDisplayComponent.GetDisplayCount() + fullName: OpenTK.Platform.IDisplayComponent.GetDisplayCount() spec.csharp: - - uid: OpenTK.Core.Platform.IDisplayComponent.GetDisplayCount + - uid: OpenTK.Platform.IDisplayComponent.GetDisplayCount name: GetDisplayCount - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_GetDisplayCount + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_GetDisplayCount - name: ( - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IDisplayComponent.GetDisplayCount + - uid: OpenTK.Platform.IDisplayComponent.GetDisplayCount name: GetDisplayCount - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_GetDisplayCount + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_GetDisplayCount - name: ( - name: ) - uid: System.Int32 @@ -1354,21 +1319,21 @@ references: name: Open nameWithType: X11DisplayComponent.Open fullName: OpenTK.Platform.Native.X11.X11DisplayComponent.Open -- uid: OpenTK.Core.Platform.IDisplayComponent.Open(System.Int32) - commentId: M:OpenTK.Core.Platform.IDisplayComponent.Open(System.Int32) - parent: OpenTK.Core.Platform.IDisplayComponent +- uid: OpenTK.Platform.IDisplayComponent.Open(System.Int32) + commentId: M:OpenTK.Platform.IDisplayComponent.Open(System.Int32) + parent: OpenTK.Platform.IDisplayComponent isExternal: true - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_Open_System_Int32_ + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_Open_System_Int32_ name: Open(int) nameWithType: IDisplayComponent.Open(int) - fullName: OpenTK.Core.Platform.IDisplayComponent.Open(int) + fullName: OpenTK.Platform.IDisplayComponent.Open(int) nameWithType.vb: IDisplayComponent.Open(Integer) - fullName.vb: OpenTK.Core.Platform.IDisplayComponent.Open(Integer) + fullName.vb: OpenTK.Platform.IDisplayComponent.Open(Integer) name.vb: Open(Integer) spec.csharp: - - uid: OpenTK.Core.Platform.IDisplayComponent.Open(System.Int32) + - uid: OpenTK.Platform.IDisplayComponent.Open(System.Int32) name: Open - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_Open_System_Int32_ + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_Open_System_Int32_ - name: ( - uid: System.Int32 name: int @@ -1376,45 +1341,45 @@ references: href: https://learn.microsoft.com/dotnet/api/system.int32 - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IDisplayComponent.Open(System.Int32) + - uid: OpenTK.Platform.IDisplayComponent.Open(System.Int32) name: Open - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_Open_System_Int32_ + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_Open_System_Int32_ - name: ( - uid: System.Int32 name: Integer isExternal: true href: https://learn.microsoft.com/dotnet/api/system.int32 - name: ) -- uid: OpenTK.Core.Platform.DisplayHandle - commentId: T:OpenTK.Core.Platform.DisplayHandle - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.DisplayHandle.html +- uid: OpenTK.Platform.DisplayHandle + commentId: T:OpenTK.Platform.DisplayHandle + parent: OpenTK.Platform + href: OpenTK.Platform.DisplayHandle.html name: DisplayHandle nameWithType: DisplayHandle - fullName: OpenTK.Core.Platform.DisplayHandle + fullName: OpenTK.Platform.DisplayHandle - uid: OpenTK.Platform.Native.X11.X11DisplayComponent.OpenPrimary* commentId: Overload:OpenTK.Platform.Native.X11.X11DisplayComponent.OpenPrimary href: OpenTK.Platform.Native.X11.X11DisplayComponent.html#OpenTK_Platform_Native_X11_X11DisplayComponent_OpenPrimary name: OpenPrimary nameWithType: X11DisplayComponent.OpenPrimary fullName: OpenTK.Platform.Native.X11.X11DisplayComponent.OpenPrimary -- uid: OpenTK.Core.Platform.IDisplayComponent.OpenPrimary - commentId: M:OpenTK.Core.Platform.IDisplayComponent.OpenPrimary - parent: OpenTK.Core.Platform.IDisplayComponent - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_OpenPrimary +- uid: OpenTK.Platform.IDisplayComponent.OpenPrimary + commentId: M:OpenTK.Platform.IDisplayComponent.OpenPrimary + parent: OpenTK.Platform.IDisplayComponent + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_OpenPrimary name: OpenPrimary() nameWithType: IDisplayComponent.OpenPrimary() - fullName: OpenTK.Core.Platform.IDisplayComponent.OpenPrimary() + fullName: OpenTK.Platform.IDisplayComponent.OpenPrimary() spec.csharp: - - uid: OpenTK.Core.Platform.IDisplayComponent.OpenPrimary + - uid: OpenTK.Platform.IDisplayComponent.OpenPrimary name: OpenPrimary - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_OpenPrimary + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_OpenPrimary - name: ( - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IDisplayComponent.OpenPrimary + - uid: OpenTK.Platform.IDisplayComponent.OpenPrimary name: OpenPrimary - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_OpenPrimary + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_OpenPrimary - name: ( - name: ) - uid: System.ArgumentNullException @@ -1426,296 +1391,239 @@ references: fullName: System.ArgumentNullException - uid: OpenTK.Platform.Native.X11.X11DisplayComponent.Close* commentId: Overload:OpenTK.Platform.Native.X11.X11DisplayComponent.Close - href: OpenTK.Platform.Native.X11.X11DisplayComponent.html#OpenTK_Platform_Native_X11_X11DisplayComponent_Close_OpenTK_Core_Platform_DisplayHandle_ + href: OpenTK.Platform.Native.X11.X11DisplayComponent.html#OpenTK_Platform_Native_X11_X11DisplayComponent_Close_OpenTK_Platform_DisplayHandle_ name: Close nameWithType: X11DisplayComponent.Close fullName: OpenTK.Platform.Native.X11.X11DisplayComponent.Close -- uid: OpenTK.Core.Platform.IDisplayComponent.Close(OpenTK.Core.Platform.DisplayHandle) - commentId: M:OpenTK.Core.Platform.IDisplayComponent.Close(OpenTK.Core.Platform.DisplayHandle) - parent: OpenTK.Core.Platform.IDisplayComponent - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_Close_OpenTK_Core_Platform_DisplayHandle_ +- uid: OpenTK.Platform.IDisplayComponent.Close(OpenTK.Platform.DisplayHandle) + commentId: M:OpenTK.Platform.IDisplayComponent.Close(OpenTK.Platform.DisplayHandle) + parent: OpenTK.Platform.IDisplayComponent + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_Close_OpenTK_Platform_DisplayHandle_ name: Close(DisplayHandle) nameWithType: IDisplayComponent.Close(DisplayHandle) - fullName: OpenTK.Core.Platform.IDisplayComponent.Close(OpenTK.Core.Platform.DisplayHandle) + fullName: OpenTK.Platform.IDisplayComponent.Close(OpenTK.Platform.DisplayHandle) spec.csharp: - - uid: OpenTK.Core.Platform.IDisplayComponent.Close(OpenTK.Core.Platform.DisplayHandle) + - uid: OpenTK.Platform.IDisplayComponent.Close(OpenTK.Platform.DisplayHandle) name: Close - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_Close_OpenTK_Core_Platform_DisplayHandle_ + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_Close_OpenTK_Platform_DisplayHandle_ - name: ( - - uid: OpenTK.Core.Platform.DisplayHandle + - uid: OpenTK.Platform.DisplayHandle name: DisplayHandle - href: OpenTK.Core.Platform.DisplayHandle.html + href: OpenTK.Platform.DisplayHandle.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IDisplayComponent.Close(OpenTK.Core.Platform.DisplayHandle) + - uid: OpenTK.Platform.IDisplayComponent.Close(OpenTK.Platform.DisplayHandle) name: Close - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_Close_OpenTK_Core_Platform_DisplayHandle_ + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_Close_OpenTK_Platform_DisplayHandle_ - name: ( - - uid: OpenTK.Core.Platform.DisplayHandle + - uid: OpenTK.Platform.DisplayHandle name: DisplayHandle - href: OpenTK.Core.Platform.DisplayHandle.html + href: OpenTK.Platform.DisplayHandle.html - name: ) - uid: OpenTK.Platform.Native.X11.X11DisplayComponent.IsPrimary* commentId: Overload:OpenTK.Platform.Native.X11.X11DisplayComponent.IsPrimary - href: OpenTK.Platform.Native.X11.X11DisplayComponent.html#OpenTK_Platform_Native_X11_X11DisplayComponent_IsPrimary_OpenTK_Core_Platform_DisplayHandle_ + href: OpenTK.Platform.Native.X11.X11DisplayComponent.html#OpenTK_Platform_Native_X11_X11DisplayComponent_IsPrimary_OpenTK_Platform_DisplayHandle_ name: IsPrimary nameWithType: X11DisplayComponent.IsPrimary fullName: OpenTK.Platform.Native.X11.X11DisplayComponent.IsPrimary -- uid: OpenTK.Core.Platform.IDisplayComponent.IsPrimary(OpenTK.Core.Platform.DisplayHandle) - commentId: M:OpenTK.Core.Platform.IDisplayComponent.IsPrimary(OpenTK.Core.Platform.DisplayHandle) - parent: OpenTK.Core.Platform.IDisplayComponent - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_IsPrimary_OpenTK_Core_Platform_DisplayHandle_ +- uid: OpenTK.Platform.IDisplayComponent.IsPrimary(OpenTK.Platform.DisplayHandle) + commentId: M:OpenTK.Platform.IDisplayComponent.IsPrimary(OpenTK.Platform.DisplayHandle) + parent: OpenTK.Platform.IDisplayComponent + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_IsPrimary_OpenTK_Platform_DisplayHandle_ name: IsPrimary(DisplayHandle) nameWithType: IDisplayComponent.IsPrimary(DisplayHandle) - fullName: OpenTK.Core.Platform.IDisplayComponent.IsPrimary(OpenTK.Core.Platform.DisplayHandle) + fullName: OpenTK.Platform.IDisplayComponent.IsPrimary(OpenTK.Platform.DisplayHandle) spec.csharp: - - uid: OpenTK.Core.Platform.IDisplayComponent.IsPrimary(OpenTK.Core.Platform.DisplayHandle) + - uid: OpenTK.Platform.IDisplayComponent.IsPrimary(OpenTK.Platform.DisplayHandle) name: IsPrimary - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_IsPrimary_OpenTK_Core_Platform_DisplayHandle_ + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_IsPrimary_OpenTK_Platform_DisplayHandle_ - name: ( - - uid: OpenTK.Core.Platform.DisplayHandle + - uid: OpenTK.Platform.DisplayHandle name: DisplayHandle - href: OpenTK.Core.Platform.DisplayHandle.html + href: OpenTK.Platform.DisplayHandle.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IDisplayComponent.IsPrimary(OpenTK.Core.Platform.DisplayHandle) + - uid: OpenTK.Platform.IDisplayComponent.IsPrimary(OpenTK.Platform.DisplayHandle) name: IsPrimary - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_IsPrimary_OpenTK_Core_Platform_DisplayHandle_ + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_IsPrimary_OpenTK_Platform_DisplayHandle_ - name: ( - - uid: OpenTK.Core.Platform.DisplayHandle + - uid: OpenTK.Platform.DisplayHandle name: DisplayHandle - href: OpenTK.Core.Platform.DisplayHandle.html + href: OpenTK.Platform.DisplayHandle.html - name: ) - uid: OpenTK.Platform.Native.X11.X11DisplayComponent.GetName* commentId: Overload:OpenTK.Platform.Native.X11.X11DisplayComponent.GetName - href: OpenTK.Platform.Native.X11.X11DisplayComponent.html#OpenTK_Platform_Native_X11_X11DisplayComponent_GetName_OpenTK_Core_Platform_DisplayHandle_ + href: OpenTK.Platform.Native.X11.X11DisplayComponent.html#OpenTK_Platform_Native_X11_X11DisplayComponent_GetName_OpenTK_Platform_DisplayHandle_ name: GetName nameWithType: X11DisplayComponent.GetName fullName: OpenTK.Platform.Native.X11.X11DisplayComponent.GetName -- uid: OpenTK.Core.Platform.IDisplayComponent.GetName(OpenTK.Core.Platform.DisplayHandle) - commentId: M:OpenTK.Core.Platform.IDisplayComponent.GetName(OpenTK.Core.Platform.DisplayHandle) - parent: OpenTK.Core.Platform.IDisplayComponent - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_GetName_OpenTK_Core_Platform_DisplayHandle_ +- uid: OpenTK.Platform.IDisplayComponent.GetName(OpenTK.Platform.DisplayHandle) + commentId: M:OpenTK.Platform.IDisplayComponent.GetName(OpenTK.Platform.DisplayHandle) + parent: OpenTK.Platform.IDisplayComponent + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_GetName_OpenTK_Platform_DisplayHandle_ name: GetName(DisplayHandle) nameWithType: IDisplayComponent.GetName(DisplayHandle) - fullName: OpenTK.Core.Platform.IDisplayComponent.GetName(OpenTK.Core.Platform.DisplayHandle) + fullName: OpenTK.Platform.IDisplayComponent.GetName(OpenTK.Platform.DisplayHandle) spec.csharp: - - uid: OpenTK.Core.Platform.IDisplayComponent.GetName(OpenTK.Core.Platform.DisplayHandle) + - uid: OpenTK.Platform.IDisplayComponent.GetName(OpenTK.Platform.DisplayHandle) name: GetName - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_GetName_OpenTK_Core_Platform_DisplayHandle_ + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_GetName_OpenTK_Platform_DisplayHandle_ - name: ( - - uid: OpenTK.Core.Platform.DisplayHandle + - uid: OpenTK.Platform.DisplayHandle name: DisplayHandle - href: OpenTK.Core.Platform.DisplayHandle.html + href: OpenTK.Platform.DisplayHandle.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IDisplayComponent.GetName(OpenTK.Core.Platform.DisplayHandle) + - uid: OpenTK.Platform.IDisplayComponent.GetName(OpenTK.Platform.DisplayHandle) name: GetName - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_GetName_OpenTK_Core_Platform_DisplayHandle_ + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_GetName_OpenTK_Platform_DisplayHandle_ - name: ( - - uid: OpenTK.Core.Platform.DisplayHandle + - uid: OpenTK.Platform.DisplayHandle name: DisplayHandle - href: OpenTK.Core.Platform.DisplayHandle.html + href: OpenTK.Platform.DisplayHandle.html - name: ) - uid: OpenTK.Platform.Native.X11.X11DisplayComponent.GetVideoMode* commentId: Overload:OpenTK.Platform.Native.X11.X11DisplayComponent.GetVideoMode - href: OpenTK.Platform.Native.X11.X11DisplayComponent.html#OpenTK_Platform_Native_X11_X11DisplayComponent_GetVideoMode_OpenTK_Core_Platform_DisplayHandle_OpenTK_Core_Platform_VideoMode__ + href: OpenTK.Platform.Native.X11.X11DisplayComponent.html#OpenTK_Platform_Native_X11_X11DisplayComponent_GetVideoMode_OpenTK_Platform_DisplayHandle_OpenTK_Platform_VideoMode__ name: GetVideoMode nameWithType: X11DisplayComponent.GetVideoMode fullName: OpenTK.Platform.Native.X11.X11DisplayComponent.GetVideoMode -- uid: OpenTK.Core.Platform.IDisplayComponent.GetVideoMode(OpenTK.Core.Platform.DisplayHandle,OpenTK.Core.Platform.VideoMode@) - commentId: M:OpenTK.Core.Platform.IDisplayComponent.GetVideoMode(OpenTK.Core.Platform.DisplayHandle,OpenTK.Core.Platform.VideoMode@) - parent: OpenTK.Core.Platform.IDisplayComponent - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_GetVideoMode_OpenTK_Core_Platform_DisplayHandle_OpenTK_Core_Platform_VideoMode__ +- uid: OpenTK.Platform.IDisplayComponent.GetVideoMode(OpenTK.Platform.DisplayHandle,OpenTK.Platform.VideoMode@) + commentId: M:OpenTK.Platform.IDisplayComponent.GetVideoMode(OpenTK.Platform.DisplayHandle,OpenTK.Platform.VideoMode@) + parent: OpenTK.Platform.IDisplayComponent + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_GetVideoMode_OpenTK_Platform_DisplayHandle_OpenTK_Platform_VideoMode__ name: GetVideoMode(DisplayHandle, out VideoMode) nameWithType: IDisplayComponent.GetVideoMode(DisplayHandle, out VideoMode) - fullName: OpenTK.Core.Platform.IDisplayComponent.GetVideoMode(OpenTK.Core.Platform.DisplayHandle, out OpenTK.Core.Platform.VideoMode) + fullName: OpenTK.Platform.IDisplayComponent.GetVideoMode(OpenTK.Platform.DisplayHandle, out OpenTK.Platform.VideoMode) nameWithType.vb: IDisplayComponent.GetVideoMode(DisplayHandle, VideoMode) - fullName.vb: OpenTK.Core.Platform.IDisplayComponent.GetVideoMode(OpenTK.Core.Platform.DisplayHandle, OpenTK.Core.Platform.VideoMode) + fullName.vb: OpenTK.Platform.IDisplayComponent.GetVideoMode(OpenTK.Platform.DisplayHandle, OpenTK.Platform.VideoMode) name.vb: GetVideoMode(DisplayHandle, VideoMode) spec.csharp: - - uid: OpenTK.Core.Platform.IDisplayComponent.GetVideoMode(OpenTK.Core.Platform.DisplayHandle,OpenTK.Core.Platform.VideoMode@) + - uid: OpenTK.Platform.IDisplayComponent.GetVideoMode(OpenTK.Platform.DisplayHandle,OpenTK.Platform.VideoMode@) name: GetVideoMode - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_GetVideoMode_OpenTK_Core_Platform_DisplayHandle_OpenTK_Core_Platform_VideoMode__ + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_GetVideoMode_OpenTK_Platform_DisplayHandle_OpenTK_Platform_VideoMode__ - name: ( - - uid: OpenTK.Core.Platform.DisplayHandle + - uid: OpenTK.Platform.DisplayHandle name: DisplayHandle - href: OpenTK.Core.Platform.DisplayHandle.html + href: OpenTK.Platform.DisplayHandle.html - name: ',' - name: " " - name: out - name: " " - - uid: OpenTK.Core.Platform.VideoMode + - uid: OpenTK.Platform.VideoMode name: VideoMode - href: OpenTK.Core.Platform.VideoMode.html + href: OpenTK.Platform.VideoMode.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IDisplayComponent.GetVideoMode(OpenTK.Core.Platform.DisplayHandle,OpenTK.Core.Platform.VideoMode@) + - uid: OpenTK.Platform.IDisplayComponent.GetVideoMode(OpenTK.Platform.DisplayHandle,OpenTK.Platform.VideoMode@) name: GetVideoMode - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_GetVideoMode_OpenTK_Core_Platform_DisplayHandle_OpenTK_Core_Platform_VideoMode__ + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_GetVideoMode_OpenTK_Platform_DisplayHandle_OpenTK_Platform_VideoMode__ - name: ( - - uid: OpenTK.Core.Platform.DisplayHandle + - uid: OpenTK.Platform.DisplayHandle name: DisplayHandle - href: OpenTK.Core.Platform.DisplayHandle.html + href: OpenTK.Platform.DisplayHandle.html - name: ',' - name: " " - - uid: OpenTK.Core.Platform.VideoMode + - uid: OpenTK.Platform.VideoMode name: VideoMode - href: OpenTK.Core.Platform.VideoMode.html + href: OpenTK.Platform.VideoMode.html - name: ) -- uid: OpenTK.Core.Platform.VideoMode - commentId: T:OpenTK.Core.Platform.VideoMode - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.VideoMode.html +- uid: OpenTK.Platform.VideoMode + commentId: T:OpenTK.Platform.VideoMode + parent: OpenTK.Platform + href: OpenTK.Platform.VideoMode.html name: VideoMode nameWithType: VideoMode - fullName: OpenTK.Core.Platform.VideoMode + fullName: OpenTK.Platform.VideoMode - uid: OpenTK.Platform.Native.X11.X11DisplayComponent.GetSupportedVideoModes* commentId: Overload:OpenTK.Platform.Native.X11.X11DisplayComponent.GetSupportedVideoModes - href: OpenTK.Platform.Native.X11.X11DisplayComponent.html#OpenTK_Platform_Native_X11_X11DisplayComponent_GetSupportedVideoModes_OpenTK_Core_Platform_DisplayHandle_ + href: OpenTK.Platform.Native.X11.X11DisplayComponent.html#OpenTK_Platform_Native_X11_X11DisplayComponent_GetSupportedVideoModes_OpenTK_Platform_DisplayHandle_ name: GetSupportedVideoModes nameWithType: X11DisplayComponent.GetSupportedVideoModes fullName: OpenTK.Platform.Native.X11.X11DisplayComponent.GetSupportedVideoModes -- uid: OpenTK.Core.Platform.IDisplayComponent.GetSupportedVideoModes(OpenTK.Core.Platform.DisplayHandle) - commentId: M:OpenTK.Core.Platform.IDisplayComponent.GetSupportedVideoModes(OpenTK.Core.Platform.DisplayHandle) - parent: OpenTK.Core.Platform.IDisplayComponent - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_GetSupportedVideoModes_OpenTK_Core_Platform_DisplayHandle_ +- uid: OpenTK.Platform.IDisplayComponent.GetSupportedVideoModes(OpenTK.Platform.DisplayHandle) + commentId: M:OpenTK.Platform.IDisplayComponent.GetSupportedVideoModes(OpenTK.Platform.DisplayHandle) + parent: OpenTK.Platform.IDisplayComponent + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_GetSupportedVideoModes_OpenTK_Platform_DisplayHandle_ name: GetSupportedVideoModes(DisplayHandle) nameWithType: IDisplayComponent.GetSupportedVideoModes(DisplayHandle) - fullName: OpenTK.Core.Platform.IDisplayComponent.GetSupportedVideoModes(OpenTK.Core.Platform.DisplayHandle) + fullName: OpenTK.Platform.IDisplayComponent.GetSupportedVideoModes(OpenTK.Platform.DisplayHandle) spec.csharp: - - uid: OpenTK.Core.Platform.IDisplayComponent.GetSupportedVideoModes(OpenTK.Core.Platform.DisplayHandle) + - uid: OpenTK.Platform.IDisplayComponent.GetSupportedVideoModes(OpenTK.Platform.DisplayHandle) name: GetSupportedVideoModes - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_GetSupportedVideoModes_OpenTK_Core_Platform_DisplayHandle_ + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_GetSupportedVideoModes_OpenTK_Platform_DisplayHandle_ - name: ( - - uid: OpenTK.Core.Platform.DisplayHandle + - uid: OpenTK.Platform.DisplayHandle name: DisplayHandle - href: OpenTK.Core.Platform.DisplayHandle.html + href: OpenTK.Platform.DisplayHandle.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IDisplayComponent.GetSupportedVideoModes(OpenTK.Core.Platform.DisplayHandle) + - uid: OpenTK.Platform.IDisplayComponent.GetSupportedVideoModes(OpenTK.Platform.DisplayHandle) name: GetSupportedVideoModes - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_GetSupportedVideoModes_OpenTK_Core_Platform_DisplayHandle_ + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_GetSupportedVideoModes_OpenTK_Platform_DisplayHandle_ - name: ( - - uid: OpenTK.Core.Platform.DisplayHandle + - uid: OpenTK.Platform.DisplayHandle name: DisplayHandle - href: OpenTK.Core.Platform.DisplayHandle.html + href: OpenTK.Platform.DisplayHandle.html - name: ) -- uid: OpenTK.Core.Platform.VideoMode[] +- uid: OpenTK.Platform.VideoMode[] isExternal: true - href: OpenTK.Core.Platform.VideoMode.html + href: OpenTK.Platform.VideoMode.html name: VideoMode[] nameWithType: VideoMode[] - fullName: OpenTK.Core.Platform.VideoMode[] + fullName: OpenTK.Platform.VideoMode[] nameWithType.vb: VideoMode() - fullName.vb: OpenTK.Core.Platform.VideoMode() + fullName.vb: OpenTK.Platform.VideoMode() name.vb: VideoMode() spec.csharp: - - uid: OpenTK.Core.Platform.VideoMode + - uid: OpenTK.Platform.VideoMode name: VideoMode - href: OpenTK.Core.Platform.VideoMode.html + href: OpenTK.Platform.VideoMode.html - name: '[' - name: ']' spec.vb: - - uid: OpenTK.Core.Platform.VideoMode + - uid: OpenTK.Platform.VideoMode name: VideoMode - href: OpenTK.Core.Platform.VideoMode.html + href: OpenTK.Platform.VideoMode.html - name: ( - name: ) -- uid: OpenTK.Core.Platform.PalNotImplementedException - commentId: T:OpenTK.Core.Platform.PalNotImplementedException - href: OpenTK.Core.Platform.PalNotImplementedException.html +- uid: OpenTK.Platform.PalNotImplementedException + commentId: T:OpenTK.Platform.PalNotImplementedException + href: OpenTK.Platform.PalNotImplementedException.html name: PalNotImplementedException nameWithType: PalNotImplementedException - fullName: OpenTK.Core.Platform.PalNotImplementedException + fullName: OpenTK.Platform.PalNotImplementedException - uid: OpenTK.Platform.Native.X11.X11DisplayComponent.GetVirtualPosition* commentId: Overload:OpenTK.Platform.Native.X11.X11DisplayComponent.GetVirtualPosition - href: OpenTK.Platform.Native.X11.X11DisplayComponent.html#OpenTK_Platform_Native_X11_X11DisplayComponent_GetVirtualPosition_OpenTK_Core_Platform_DisplayHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.Native.X11.X11DisplayComponent.html#OpenTK_Platform_Native_X11_X11DisplayComponent_GetVirtualPosition_OpenTK_Platform_DisplayHandle_System_Int32__System_Int32__ name: GetVirtualPosition nameWithType: X11DisplayComponent.GetVirtualPosition fullName: OpenTK.Platform.Native.X11.X11DisplayComponent.GetVirtualPosition -- uid: OpenTK.Core.Platform.IDisplayComponent.GetVirtualPosition(OpenTK.Core.Platform.DisplayHandle,System.Int32@,System.Int32@) - commentId: M:OpenTK.Core.Platform.IDisplayComponent.GetVirtualPosition(OpenTK.Core.Platform.DisplayHandle,System.Int32@,System.Int32@) - parent: OpenTK.Core.Platform.IDisplayComponent - isExternal: true - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_GetVirtualPosition_OpenTK_Core_Platform_DisplayHandle_System_Int32__System_Int32__ - name: GetVirtualPosition(DisplayHandle, out int, out int) - nameWithType: IDisplayComponent.GetVirtualPosition(DisplayHandle, out int, out int) - fullName: OpenTK.Core.Platform.IDisplayComponent.GetVirtualPosition(OpenTK.Core.Platform.DisplayHandle, out int, out int) - nameWithType.vb: IDisplayComponent.GetVirtualPosition(DisplayHandle, Integer, Integer) - fullName.vb: OpenTK.Core.Platform.IDisplayComponent.GetVirtualPosition(OpenTK.Core.Platform.DisplayHandle, Integer, Integer) - name.vb: GetVirtualPosition(DisplayHandle, Integer, Integer) - spec.csharp: - - uid: OpenTK.Core.Platform.IDisplayComponent.GetVirtualPosition(OpenTK.Core.Platform.DisplayHandle,System.Int32@,System.Int32@) - name: GetVirtualPosition - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_GetVirtualPosition_OpenTK_Core_Platform_DisplayHandle_System_Int32__System_Int32__ - - name: ( - - uid: OpenTK.Core.Platform.DisplayHandle - name: DisplayHandle - href: OpenTK.Core.Platform.DisplayHandle.html - - name: ',' - - name: " " - - name: out - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - name: out - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) - spec.vb: - - uid: OpenTK.Core.Platform.IDisplayComponent.GetVirtualPosition(OpenTK.Core.Platform.DisplayHandle,System.Int32@,System.Int32@) - name: GetVirtualPosition - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_GetVirtualPosition_OpenTK_Core_Platform_DisplayHandle_System_Int32__System_Int32__ - - name: ( - - uid: OpenTK.Core.Platform.DisplayHandle - name: DisplayHandle - href: OpenTK.Core.Platform.DisplayHandle.html - - name: ',' - - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) - uid: OpenTK.Platform.Native.X11.X11DisplayComponent.GetResolution* commentId: Overload:OpenTK.Platform.Native.X11.X11DisplayComponent.GetResolution - href: OpenTK.Platform.Native.X11.X11DisplayComponent.html#OpenTK_Platform_Native_X11_X11DisplayComponent_GetResolution_OpenTK_Core_Platform_DisplayHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.Native.X11.X11DisplayComponent.html#OpenTK_Platform_Native_X11_X11DisplayComponent_GetResolution_OpenTK_Platform_DisplayHandle_System_Int32__System_Int32__ name: GetResolution nameWithType: X11DisplayComponent.GetResolution fullName: OpenTK.Platform.Native.X11.X11DisplayComponent.GetResolution -- uid: OpenTK.Core.Platform.IDisplayComponent.GetResolution(OpenTK.Core.Platform.DisplayHandle,System.Int32@,System.Int32@) - commentId: M:OpenTK.Core.Platform.IDisplayComponent.GetResolution(OpenTK.Core.Platform.DisplayHandle,System.Int32@,System.Int32@) - parent: OpenTK.Core.Platform.IDisplayComponent +- uid: OpenTK.Platform.IDisplayComponent.GetResolution(OpenTK.Platform.DisplayHandle,System.Int32@,System.Int32@) + commentId: M:OpenTK.Platform.IDisplayComponent.GetResolution(OpenTK.Platform.DisplayHandle,System.Int32@,System.Int32@) + parent: OpenTK.Platform.IDisplayComponent isExternal: true - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_GetResolution_OpenTK_Core_Platform_DisplayHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_GetResolution_OpenTK_Platform_DisplayHandle_System_Int32__System_Int32__ name: GetResolution(DisplayHandle, out int, out int) nameWithType: IDisplayComponent.GetResolution(DisplayHandle, out int, out int) - fullName: OpenTK.Core.Platform.IDisplayComponent.GetResolution(OpenTK.Core.Platform.DisplayHandle, out int, out int) + fullName: OpenTK.Platform.IDisplayComponent.GetResolution(OpenTK.Platform.DisplayHandle, out int, out int) nameWithType.vb: IDisplayComponent.GetResolution(DisplayHandle, Integer, Integer) - fullName.vb: OpenTK.Core.Platform.IDisplayComponent.GetResolution(OpenTK.Core.Platform.DisplayHandle, Integer, Integer) + fullName.vb: OpenTK.Platform.IDisplayComponent.GetResolution(OpenTK.Platform.DisplayHandle, Integer, Integer) name.vb: GetResolution(DisplayHandle, Integer, Integer) spec.csharp: - - uid: OpenTK.Core.Platform.IDisplayComponent.GetResolution(OpenTK.Core.Platform.DisplayHandle,System.Int32@,System.Int32@) + - uid: OpenTK.Platform.IDisplayComponent.GetResolution(OpenTK.Platform.DisplayHandle,System.Int32@,System.Int32@) name: GetResolution - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_GetResolution_OpenTK_Core_Platform_DisplayHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_GetResolution_OpenTK_Platform_DisplayHandle_System_Int32__System_Int32__ - name: ( - - uid: OpenTK.Core.Platform.DisplayHandle + - uid: OpenTK.Platform.DisplayHandle name: DisplayHandle - href: OpenTK.Core.Platform.DisplayHandle.html + href: OpenTK.Platform.DisplayHandle.html - name: ',' - name: " " - name: out @@ -1734,13 +1642,13 @@ references: href: https://learn.microsoft.com/dotnet/api/system.int32 - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IDisplayComponent.GetResolution(OpenTK.Core.Platform.DisplayHandle,System.Int32@,System.Int32@) + - uid: OpenTK.Platform.IDisplayComponent.GetResolution(OpenTK.Platform.DisplayHandle,System.Int32@,System.Int32@) name: GetResolution - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_GetResolution_OpenTK_Core_Platform_DisplayHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_GetResolution_OpenTK_Platform_DisplayHandle_System_Int32__System_Int32__ - name: ( - - uid: OpenTK.Core.Platform.DisplayHandle + - uid: OpenTK.Platform.DisplayHandle name: DisplayHandle - href: OpenTK.Core.Platform.DisplayHandle.html + href: OpenTK.Platform.DisplayHandle.html - name: ',' - name: " " - uid: System.Int32 @@ -1756,28 +1664,28 @@ references: - name: ) - uid: OpenTK.Platform.Native.X11.X11DisplayComponent.GetWorkArea* commentId: Overload:OpenTK.Platform.Native.X11.X11DisplayComponent.GetWorkArea - href: OpenTK.Platform.Native.X11.X11DisplayComponent.html#OpenTK_Platform_Native_X11_X11DisplayComponent_GetWorkArea_OpenTK_Core_Platform_DisplayHandle_OpenTK_Mathematics_Box2i__ + href: OpenTK.Platform.Native.X11.X11DisplayComponent.html#OpenTK_Platform_Native_X11_X11DisplayComponent_GetWorkArea_OpenTK_Platform_DisplayHandle_OpenTK_Mathematics_Box2i__ name: GetWorkArea nameWithType: X11DisplayComponent.GetWorkArea fullName: OpenTK.Platform.Native.X11.X11DisplayComponent.GetWorkArea -- uid: OpenTK.Core.Platform.IDisplayComponent.GetWorkArea(OpenTK.Core.Platform.DisplayHandle,OpenTK.Mathematics.Box2i@) - commentId: M:OpenTK.Core.Platform.IDisplayComponent.GetWorkArea(OpenTK.Core.Platform.DisplayHandle,OpenTK.Mathematics.Box2i@) - parent: OpenTK.Core.Platform.IDisplayComponent - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_GetWorkArea_OpenTK_Core_Platform_DisplayHandle_OpenTK_Mathematics_Box2i__ +- uid: OpenTK.Platform.IDisplayComponent.GetWorkArea(OpenTK.Platform.DisplayHandle,OpenTK.Mathematics.Box2i@) + commentId: M:OpenTK.Platform.IDisplayComponent.GetWorkArea(OpenTK.Platform.DisplayHandle,OpenTK.Mathematics.Box2i@) + parent: OpenTK.Platform.IDisplayComponent + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_GetWorkArea_OpenTK_Platform_DisplayHandle_OpenTK_Mathematics_Box2i__ name: GetWorkArea(DisplayHandle, out Box2i) nameWithType: IDisplayComponent.GetWorkArea(DisplayHandle, out Box2i) - fullName: OpenTK.Core.Platform.IDisplayComponent.GetWorkArea(OpenTK.Core.Platform.DisplayHandle, out OpenTK.Mathematics.Box2i) + fullName: OpenTK.Platform.IDisplayComponent.GetWorkArea(OpenTK.Platform.DisplayHandle, out OpenTK.Mathematics.Box2i) nameWithType.vb: IDisplayComponent.GetWorkArea(DisplayHandle, Box2i) - fullName.vb: OpenTK.Core.Platform.IDisplayComponent.GetWorkArea(OpenTK.Core.Platform.DisplayHandle, OpenTK.Mathematics.Box2i) + fullName.vb: OpenTK.Platform.IDisplayComponent.GetWorkArea(OpenTK.Platform.DisplayHandle, OpenTK.Mathematics.Box2i) name.vb: GetWorkArea(DisplayHandle, Box2i) spec.csharp: - - uid: OpenTK.Core.Platform.IDisplayComponent.GetWorkArea(OpenTK.Core.Platform.DisplayHandle,OpenTK.Mathematics.Box2i@) + - uid: OpenTK.Platform.IDisplayComponent.GetWorkArea(OpenTK.Platform.DisplayHandle,OpenTK.Mathematics.Box2i@) name: GetWorkArea - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_GetWorkArea_OpenTK_Core_Platform_DisplayHandle_OpenTK_Mathematics_Box2i__ + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_GetWorkArea_OpenTK_Platform_DisplayHandle_OpenTK_Mathematics_Box2i__ - name: ( - - uid: OpenTK.Core.Platform.DisplayHandle + - uid: OpenTK.Platform.DisplayHandle name: DisplayHandle - href: OpenTK.Core.Platform.DisplayHandle.html + href: OpenTK.Platform.DisplayHandle.html - name: ',' - name: " " - name: out @@ -1787,13 +1695,13 @@ references: href: OpenTK.Mathematics.Box2i.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IDisplayComponent.GetWorkArea(OpenTK.Core.Platform.DisplayHandle,OpenTK.Mathematics.Box2i@) + - uid: OpenTK.Platform.IDisplayComponent.GetWorkArea(OpenTK.Platform.DisplayHandle,OpenTK.Mathematics.Box2i@) name: GetWorkArea - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_GetWorkArea_OpenTK_Core_Platform_DisplayHandle_OpenTK_Mathematics_Box2i__ + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_GetWorkArea_OpenTK_Platform_DisplayHandle_OpenTK_Mathematics_Box2i__ - name: ( - - uid: OpenTK.Core.Platform.DisplayHandle + - uid: OpenTK.Platform.DisplayHandle name: DisplayHandle - href: OpenTK.Core.Platform.DisplayHandle.html + href: OpenTK.Platform.DisplayHandle.html - name: ',' - name: " " - uid: OpenTK.Mathematics.Box2i @@ -1831,29 +1739,29 @@ references: href: OpenTK.Mathematics.html - uid: OpenTK.Platform.Native.X11.X11DisplayComponent.GetRefreshRate* commentId: Overload:OpenTK.Platform.Native.X11.X11DisplayComponent.GetRefreshRate - href: OpenTK.Platform.Native.X11.X11DisplayComponent.html#OpenTK_Platform_Native_X11_X11DisplayComponent_GetRefreshRate_OpenTK_Core_Platform_DisplayHandle_System_Single__ + href: OpenTK.Platform.Native.X11.X11DisplayComponent.html#OpenTK_Platform_Native_X11_X11DisplayComponent_GetRefreshRate_OpenTK_Platform_DisplayHandle_System_Single__ name: GetRefreshRate nameWithType: X11DisplayComponent.GetRefreshRate fullName: OpenTK.Platform.Native.X11.X11DisplayComponent.GetRefreshRate -- uid: OpenTK.Core.Platform.IDisplayComponent.GetRefreshRate(OpenTK.Core.Platform.DisplayHandle,System.Single@) - commentId: M:OpenTK.Core.Platform.IDisplayComponent.GetRefreshRate(OpenTK.Core.Platform.DisplayHandle,System.Single@) - parent: OpenTK.Core.Platform.IDisplayComponent +- uid: OpenTK.Platform.IDisplayComponent.GetRefreshRate(OpenTK.Platform.DisplayHandle,System.Single@) + commentId: M:OpenTK.Platform.IDisplayComponent.GetRefreshRate(OpenTK.Platform.DisplayHandle,System.Single@) + parent: OpenTK.Platform.IDisplayComponent isExternal: true - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_GetRefreshRate_OpenTK_Core_Platform_DisplayHandle_System_Single__ + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_GetRefreshRate_OpenTK_Platform_DisplayHandle_System_Single__ name: GetRefreshRate(DisplayHandle, out float) nameWithType: IDisplayComponent.GetRefreshRate(DisplayHandle, out float) - fullName: OpenTK.Core.Platform.IDisplayComponent.GetRefreshRate(OpenTK.Core.Platform.DisplayHandle, out float) + fullName: OpenTK.Platform.IDisplayComponent.GetRefreshRate(OpenTK.Platform.DisplayHandle, out float) nameWithType.vb: IDisplayComponent.GetRefreshRate(DisplayHandle, Single) - fullName.vb: OpenTK.Core.Platform.IDisplayComponent.GetRefreshRate(OpenTK.Core.Platform.DisplayHandle, Single) + fullName.vb: OpenTK.Platform.IDisplayComponent.GetRefreshRate(OpenTK.Platform.DisplayHandle, Single) name.vb: GetRefreshRate(DisplayHandle, Single) spec.csharp: - - uid: OpenTK.Core.Platform.IDisplayComponent.GetRefreshRate(OpenTK.Core.Platform.DisplayHandle,System.Single@) + - uid: OpenTK.Platform.IDisplayComponent.GetRefreshRate(OpenTK.Platform.DisplayHandle,System.Single@) name: GetRefreshRate - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_GetRefreshRate_OpenTK_Core_Platform_DisplayHandle_System_Single__ + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_GetRefreshRate_OpenTK_Platform_DisplayHandle_System_Single__ - name: ( - - uid: OpenTK.Core.Platform.DisplayHandle + - uid: OpenTK.Platform.DisplayHandle name: DisplayHandle - href: OpenTK.Core.Platform.DisplayHandle.html + href: OpenTK.Platform.DisplayHandle.html - name: ',' - name: " " - name: out @@ -1864,13 +1772,13 @@ references: href: https://learn.microsoft.com/dotnet/api/system.single - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IDisplayComponent.GetRefreshRate(OpenTK.Core.Platform.DisplayHandle,System.Single@) + - uid: OpenTK.Platform.IDisplayComponent.GetRefreshRate(OpenTK.Platform.DisplayHandle,System.Single@) name: GetRefreshRate - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_GetRefreshRate_OpenTK_Core_Platform_DisplayHandle_System_Single__ + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_GetRefreshRate_OpenTK_Platform_DisplayHandle_System_Single__ - name: ( - - uid: OpenTK.Core.Platform.DisplayHandle + - uid: OpenTK.Platform.DisplayHandle name: DisplayHandle - href: OpenTK.Core.Platform.DisplayHandle.html + href: OpenTK.Platform.DisplayHandle.html - name: ',' - name: " " - uid: System.Single @@ -1891,29 +1799,29 @@ references: name.vb: Single - uid: OpenTK.Platform.Native.X11.X11DisplayComponent.GetDisplayScale* commentId: Overload:OpenTK.Platform.Native.X11.X11DisplayComponent.GetDisplayScale - href: OpenTK.Platform.Native.X11.X11DisplayComponent.html#OpenTK_Platform_Native_X11_X11DisplayComponent_GetDisplayScale_OpenTK_Core_Platform_DisplayHandle_System_Single__System_Single__ + href: OpenTK.Platform.Native.X11.X11DisplayComponent.html#OpenTK_Platform_Native_X11_X11DisplayComponent_GetDisplayScale_OpenTK_Platform_DisplayHandle_System_Single__System_Single__ name: GetDisplayScale nameWithType: X11DisplayComponent.GetDisplayScale fullName: OpenTK.Platform.Native.X11.X11DisplayComponent.GetDisplayScale -- uid: OpenTK.Core.Platform.IDisplayComponent.GetDisplayScale(OpenTK.Core.Platform.DisplayHandle,System.Single@,System.Single@) - commentId: M:OpenTK.Core.Platform.IDisplayComponent.GetDisplayScale(OpenTK.Core.Platform.DisplayHandle,System.Single@,System.Single@) - parent: OpenTK.Core.Platform.IDisplayComponent +- uid: OpenTK.Platform.IDisplayComponent.GetDisplayScale(OpenTK.Platform.DisplayHandle,System.Single@,System.Single@) + commentId: M:OpenTK.Platform.IDisplayComponent.GetDisplayScale(OpenTK.Platform.DisplayHandle,System.Single@,System.Single@) + parent: OpenTK.Platform.IDisplayComponent isExternal: true - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_GetDisplayScale_OpenTK_Core_Platform_DisplayHandle_System_Single__System_Single__ + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_GetDisplayScale_OpenTK_Platform_DisplayHandle_System_Single__System_Single__ name: GetDisplayScale(DisplayHandle, out float, out float) nameWithType: IDisplayComponent.GetDisplayScale(DisplayHandle, out float, out float) - fullName: OpenTK.Core.Platform.IDisplayComponent.GetDisplayScale(OpenTK.Core.Platform.DisplayHandle, out float, out float) + fullName: OpenTK.Platform.IDisplayComponent.GetDisplayScale(OpenTK.Platform.DisplayHandle, out float, out float) nameWithType.vb: IDisplayComponent.GetDisplayScale(DisplayHandle, Single, Single) - fullName.vb: OpenTK.Core.Platform.IDisplayComponent.GetDisplayScale(OpenTK.Core.Platform.DisplayHandle, Single, Single) + fullName.vb: OpenTK.Platform.IDisplayComponent.GetDisplayScale(OpenTK.Platform.DisplayHandle, Single, Single) name.vb: GetDisplayScale(DisplayHandle, Single, Single) spec.csharp: - - uid: OpenTK.Core.Platform.IDisplayComponent.GetDisplayScale(OpenTK.Core.Platform.DisplayHandle,System.Single@,System.Single@) + - uid: OpenTK.Platform.IDisplayComponent.GetDisplayScale(OpenTK.Platform.DisplayHandle,System.Single@,System.Single@) name: GetDisplayScale - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_GetDisplayScale_OpenTK_Core_Platform_DisplayHandle_System_Single__System_Single__ + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_GetDisplayScale_OpenTK_Platform_DisplayHandle_System_Single__System_Single__ - name: ( - - uid: OpenTK.Core.Platform.DisplayHandle + - uid: OpenTK.Platform.DisplayHandle name: DisplayHandle - href: OpenTK.Core.Platform.DisplayHandle.html + href: OpenTK.Platform.DisplayHandle.html - name: ',' - name: " " - name: out @@ -1932,13 +1840,13 @@ references: href: https://learn.microsoft.com/dotnet/api/system.single - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IDisplayComponent.GetDisplayScale(OpenTK.Core.Platform.DisplayHandle,System.Single@,System.Single@) + - uid: OpenTK.Platform.IDisplayComponent.GetDisplayScale(OpenTK.Platform.DisplayHandle,System.Single@,System.Single@) name: GetDisplayScale - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_GetDisplayScale_OpenTK_Core_Platform_DisplayHandle_System_Single__System_Single__ + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_GetDisplayScale_OpenTK_Platform_DisplayHandle_System_Single__System_Single__ - name: ( - - uid: OpenTK.Core.Platform.DisplayHandle + - uid: OpenTK.Platform.DisplayHandle name: DisplayHandle - href: OpenTK.Core.Platform.DisplayHandle.html + href: OpenTK.Platform.DisplayHandle.html - name: ',' - name: " " - uid: System.Single @@ -1954,7 +1862,7 @@ references: - name: ) - uid: OpenTK.Platform.Native.X11.X11DisplayComponent.GetRRCrtc* commentId: Overload:OpenTK.Platform.Native.X11.X11DisplayComponent.GetRRCrtc - href: OpenTK.Platform.Native.X11.X11DisplayComponent.html#OpenTK_Platform_Native_X11_X11DisplayComponent_GetRRCrtc_OpenTK_Core_Platform_DisplayHandle_ + href: OpenTK.Platform.Native.X11.X11DisplayComponent.html#OpenTK_Platform_Native_X11_X11DisplayComponent_GetRRCrtc_OpenTK_Platform_DisplayHandle_ name: GetRRCrtc nameWithType: X11DisplayComponent.GetRRCrtc fullName: OpenTK.Platform.Native.X11.X11DisplayComponent.GetRRCrtc @@ -1971,7 +1879,7 @@ references: name.vb: IntPtr - uid: OpenTK.Platform.Native.X11.X11DisplayComponent.GetRROutput* commentId: Overload:OpenTK.Platform.Native.X11.X11DisplayComponent.GetRROutput - href: OpenTK.Platform.Native.X11.X11DisplayComponent.html#OpenTK_Platform_Native_X11_X11DisplayComponent_GetRROutput_OpenTK_Core_Platform_DisplayHandle_ + href: OpenTK.Platform.Native.X11.X11DisplayComponent.html#OpenTK_Platform_Native_X11_X11DisplayComponent_GetRROutput_OpenTK_Platform_DisplayHandle_ name: GetRROutput nameWithType: X11DisplayComponent.GetRROutput fullName: OpenTK.Platform.Native.X11.X11DisplayComponent.GetRROutput diff --git a/api/OpenTK.Platform.Native.X11.X11IconComponent.IconImage.yml b/api/OpenTK.Platform.Native.X11.X11IconComponent.IconImage.yml index ab89bf8e..0e68e672 100644 --- a/api/OpenTK.Platform.Native.X11.X11IconComponent.IconImage.yml +++ b/api/OpenTK.Platform.Native.X11.X11IconComponent.IconImage.yml @@ -17,15 +17,11 @@ items: fullName: OpenTK.Platform.Native.X11.X11IconComponent.IconImage type: Struct source: - remote: - path: src/OpenTK.Platform.Native/X11/X11IconComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: IconImage - path: opentk/src/OpenTK.Platform.Native/X11/X11IconComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11IconComponent.cs startLine: 8 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 syntax: content: public struct X11IconComponent.IconImage @@ -49,15 +45,11 @@ items: fullName: OpenTK.Platform.Native.X11.X11IconComponent.IconImage.Width type: Field source: - remote: - path: src/OpenTK.Platform.Native/X11/X11IconComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Width - path: opentk/src/OpenTK.Platform.Native/X11/X11IconComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11IconComponent.cs startLine: 10 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 syntax: content: public int Width @@ -76,15 +68,11 @@ items: fullName: OpenTK.Platform.Native.X11.X11IconComponent.IconImage.Height type: Field source: - remote: - path: src/OpenTK.Platform.Native/X11/X11IconComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Height - path: opentk/src/OpenTK.Platform.Native/X11/X11IconComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11IconComponent.cs startLine: 11 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 syntax: content: public int Height @@ -103,15 +91,11 @@ items: fullName: OpenTK.Platform.Native.X11.X11IconComponent.IconImage.Data type: Field source: - remote: - path: src/OpenTK.Platform.Native/X11/X11IconComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Data - path: opentk/src/OpenTK.Platform.Native/X11/X11IconComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11IconComponent.cs startLine: 12 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 syntax: content: public byte[] Data @@ -130,15 +114,11 @@ items: fullName: OpenTK.Platform.Native.X11.X11IconComponent.IconImage.IconImage(int, int, byte[]) type: Constructor source: - remote: - path: src/OpenTK.Platform.Native/X11/X11IconComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Platform.Native/X11/X11IconComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11IconComponent.cs startLine: 14 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 syntax: content: public IconImage(int width, int height, byte[] data) diff --git a/api/OpenTK.Platform.Native.X11.X11IconComponent.yml b/api/OpenTK.Platform.Native.X11.X11IconComponent.yml index 0c3b5b45..aebc4177 100644 --- a/api/OpenTK.Platform.Native.X11.X11IconComponent.yml +++ b/api/OpenTK.Platform.Native.X11.X11IconComponent.yml @@ -6,12 +6,12 @@ items: parent: OpenTK.Platform.Native.X11 children: - OpenTK.Platform.Native.X11.X11IconComponent.CanLoadSystemIcons - - OpenTK.Platform.Native.X11.X11IconComponent.Create(OpenTK.Core.Platform.SystemIconType) + - OpenTK.Platform.Native.X11.X11IconComponent.Create(OpenTK.Platform.SystemIconType) - OpenTK.Platform.Native.X11.X11IconComponent.Create(System.Int32,System.Int32,OpenTK.Platform.Native.X11.X11IconComponent.IconImage[]) - OpenTK.Platform.Native.X11.X11IconComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte}) - - OpenTK.Platform.Native.X11.X11IconComponent.Destroy(OpenTK.Core.Platform.IconHandle) - - OpenTK.Platform.Native.X11.X11IconComponent.GetSize(OpenTK.Core.Platform.IconHandle,System.Int32@,System.Int32@) - - OpenTK.Platform.Native.X11.X11IconComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + - OpenTK.Platform.Native.X11.X11IconComponent.Destroy(OpenTK.Platform.IconHandle) + - OpenTK.Platform.Native.X11.X11IconComponent.GetSize(OpenTK.Platform.IconHandle,System.Int32@,System.Int32@) + - OpenTK.Platform.Native.X11.X11IconComponent.Initialize(OpenTK.Platform.ToolkitOptions) - OpenTK.Platform.Native.X11.X11IconComponent.Logger - OpenTK.Platform.Native.X11.X11IconComponent.Name - OpenTK.Platform.Native.X11.X11IconComponent.Provides @@ -23,15 +23,11 @@ items: fullName: OpenTK.Platform.Native.X11.X11IconComponent type: Class source: - remote: - path: src/OpenTK.Platform.Native/X11/X11IconComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: X11IconComponent - path: opentk/src/OpenTK.Platform.Native/X11/X11IconComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11IconComponent.cs startLine: 6 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 syntax: content: 'public class X11IconComponent : IIconComponent, IPalComponent' @@ -39,8 +35,8 @@ items: inheritance: - System.Object implements: - - OpenTK.Core.Platform.IIconComponent - - OpenTK.Core.Platform.IPalComponent + - OpenTK.Platform.IIconComponent + - OpenTK.Platform.IPalComponent inheritedMembers: - System.Object.Equals(System.Object) - System.Object.Equals(System.Object,System.Object) @@ -61,15 +57,11 @@ items: fullName: OpenTK.Platform.Native.X11.X11IconComponent.Name type: Property source: - remote: - path: src/OpenTK.Platform.Native/X11/X11IconComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Name - path: opentk/src/OpenTK.Platform.Native/X11/X11IconComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11IconComponent.cs startLine: 23 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: Name of the abstraction layer component. example: [] @@ -81,7 +73,7 @@ items: content.vb: Public ReadOnly Property Name As String overload: OpenTK.Platform.Native.X11.X11IconComponent.Name* implements: - - OpenTK.Core.Platform.IPalComponent.Name + - OpenTK.Platform.IPalComponent.Name - uid: OpenTK.Platform.Native.X11.X11IconComponent.Provides commentId: P:OpenTK.Platform.Native.X11.X11IconComponent.Provides id: Provides @@ -94,15 +86,11 @@ items: fullName: OpenTK.Platform.Native.X11.X11IconComponent.Provides type: Property source: - remote: - path: src/OpenTK.Platform.Native/X11/X11IconComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Provides - path: opentk/src/OpenTK.Platform.Native/X11/X11IconComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11IconComponent.cs startLine: 26 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: Specifies which PAL components this object provides. example: [] @@ -110,11 +98,11 @@ items: content: public PalComponents Provides { get; } parameters: [] return: - type: OpenTK.Core.Platform.PalComponents + type: OpenTK.Platform.PalComponents content.vb: Public ReadOnly Property Provides As PalComponents overload: OpenTK.Platform.Native.X11.X11IconComponent.Provides* implements: - - OpenTK.Core.Platform.IPalComponent.Provides + - OpenTK.Platform.IPalComponent.Provides - uid: OpenTK.Platform.Native.X11.X11IconComponent.Logger commentId: P:OpenTK.Platform.Native.X11.X11IconComponent.Logger id: Logger @@ -127,15 +115,11 @@ items: fullName: OpenTK.Platform.Native.X11.X11IconComponent.Logger type: Property source: - remote: - path: src/OpenTK.Platform.Native/X11/X11IconComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Logger - path: opentk/src/OpenTK.Platform.Native/X11/X11IconComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11IconComponent.cs startLine: 29 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: Provides a logger for this component. example: [] @@ -147,28 +131,24 @@ items: content.vb: Public Property Logger As ILogger overload: OpenTK.Platform.Native.X11.X11IconComponent.Logger* implements: - - OpenTK.Core.Platform.IPalComponent.Logger -- uid: OpenTK.Platform.Native.X11.X11IconComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - commentId: M:OpenTK.Platform.Native.X11.X11IconComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - id: Initialize(OpenTK.Core.Platform.ToolkitOptions) + - OpenTK.Platform.IPalComponent.Logger +- uid: OpenTK.Platform.Native.X11.X11IconComponent.Initialize(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Native.X11.X11IconComponent.Initialize(OpenTK.Platform.ToolkitOptions) + id: Initialize(OpenTK.Platform.ToolkitOptions) parent: OpenTK.Platform.Native.X11.X11IconComponent langs: - csharp - vb name: Initialize(ToolkitOptions) nameWithType: X11IconComponent.Initialize(ToolkitOptions) - fullName: OpenTK.Platform.Native.X11.X11IconComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + fullName: OpenTK.Platform.Native.X11.X11IconComponent.Initialize(OpenTK.Platform.ToolkitOptions) type: Method source: - remote: - path: src/OpenTK.Platform.Native/X11/X11IconComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Initialize - path: opentk/src/OpenTK.Platform.Native/X11/X11IconComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11IconComponent.cs startLine: 32 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: Initialize the component. example: [] @@ -176,12 +156,12 @@ items: content: public void Initialize(ToolkitOptions options) parameters: - id: options - type: OpenTK.Core.Platform.ToolkitOptions + type: OpenTK.Platform.ToolkitOptions description: The options to initialize the component with. content.vb: Public Sub Initialize(options As ToolkitOptions) overload: OpenTK.Platform.Native.X11.X11IconComponent.Initialize* implements: - - OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + - OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) - uid: OpenTK.Platform.Native.X11.X11IconComponent.CanLoadSystemIcons commentId: P:OpenTK.Platform.Native.X11.X11IconComponent.CanLoadSystemIcons id: CanLoadSystemIcons @@ -194,20 +174,16 @@ items: fullName: OpenTK.Platform.Native.X11.X11IconComponent.CanLoadSystemIcons type: Property source: - remote: - path: src/OpenTK.Platform.Native/X11/X11IconComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CanLoadSystemIcons - path: opentk/src/OpenTK.Platform.Native/X11/X11IconComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11IconComponent.cs startLine: 37 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: >- True if icon objects can be populated from common system icons. - If this is true, then will work, otherwise an exception will be thrown. + If this is true, then will work, otherwise an exception will be thrown. example: [] syntax: content: public bool CanLoadSystemIcons { get; } @@ -216,51 +192,50 @@ items: type: System.Boolean content.vb: Public ReadOnly Property CanLoadSystemIcons As Boolean overload: OpenTK.Platform.Native.X11.X11IconComponent.CanLoadSystemIcons* + seealso: + - linkId: OpenTK.Platform.IIconComponent.Create(OpenTK.Platform.SystemIconType) + commentId: M:OpenTK.Platform.IIconComponent.Create(OpenTK.Platform.SystemIconType) implements: - - OpenTK.Core.Platform.IIconComponent.CanLoadSystemIcons -- uid: OpenTK.Platform.Native.X11.X11IconComponent.Create(OpenTK.Core.Platform.SystemIconType) - commentId: M:OpenTK.Platform.Native.X11.X11IconComponent.Create(OpenTK.Core.Platform.SystemIconType) - id: Create(OpenTK.Core.Platform.SystemIconType) + - OpenTK.Platform.IIconComponent.CanLoadSystemIcons +- uid: OpenTK.Platform.Native.X11.X11IconComponent.Create(OpenTK.Platform.SystemIconType) + commentId: M:OpenTK.Platform.Native.X11.X11IconComponent.Create(OpenTK.Platform.SystemIconType) + id: Create(OpenTK.Platform.SystemIconType) parent: OpenTK.Platform.Native.X11.X11IconComponent langs: - csharp - vb name: Create(SystemIconType) nameWithType: X11IconComponent.Create(SystemIconType) - fullName: OpenTK.Platform.Native.X11.X11IconComponent.Create(OpenTK.Core.Platform.SystemIconType) + fullName: OpenTK.Platform.Native.X11.X11IconComponent.Create(OpenTK.Platform.SystemIconType) type: Method source: - remote: - path: src/OpenTK.Platform.Native/X11/X11IconComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Create - path: opentk/src/OpenTK.Platform.Native/X11/X11IconComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11IconComponent.cs startLine: 40 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: >- Load a system icon. - Only works if is true. + Only works if is true. example: [] syntax: content: public IconHandle Create(SystemIconType systemIcon) parameters: - id: systemIcon - type: OpenTK.Core.Platform.SystemIconType + type: OpenTK.Platform.SystemIconType description: The system icon to create. return: - type: OpenTK.Core.Platform.IconHandle + type: OpenTK.Platform.IconHandle description: A handle to the created system icon. content.vb: Public Function Create(systemIcon As SystemIconType) As IconHandle overload: OpenTK.Platform.Native.X11.X11IconComponent.Create* seealso: - - linkId: OpenTK.Core.Platform.IIconComponent.CanLoadSystemIcons - commentId: P:OpenTK.Core.Platform.IIconComponent.CanLoadSystemIcons + - linkId: OpenTK.Platform.IIconComponent.CanLoadSystemIcons + commentId: P:OpenTK.Platform.IIconComponent.CanLoadSystemIcons implements: - - OpenTK.Core.Platform.IIconComponent.Create(OpenTK.Core.Platform.SystemIconType) + - OpenTK.Platform.IIconComponent.Create(OpenTK.Platform.SystemIconType) - uid: OpenTK.Platform.Native.X11.X11IconComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte}) commentId: M:OpenTK.Platform.Native.X11.X11IconComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte}) id: Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte}) @@ -273,15 +248,11 @@ items: fullName: OpenTK.Platform.Native.X11.X11IconComponent.Create(int, int, System.ReadOnlySpan) type: Method source: - remote: - path: src/OpenTK.Platform.Native/X11/X11IconComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Create - path: opentk/src/OpenTK.Platform.Native/X11/X11IconComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11IconComponent.cs startLine: 47 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: Load an icon object with image data. example: [] @@ -298,12 +269,12 @@ items: type: System.ReadOnlySpan{System.Byte} description: Image data to load into icon. return: - type: OpenTK.Core.Platform.IconHandle + type: OpenTK.Platform.IconHandle description: A handle to the created icon. content.vb: Public Function Create(width As Integer, height As Integer, data As ReadOnlySpan(Of Byte)) As IconHandle overload: OpenTK.Platform.Native.X11.X11IconComponent.Create* implements: - - OpenTK.Core.Platform.IIconComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte}) + - OpenTK.Platform.IIconComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte}) nameWithType.vb: X11IconComponent.Create(Integer, Integer, ReadOnlySpan(Of Byte)) fullName.vb: OpenTK.Platform.Native.X11.X11IconComponent.Create(Integer, Integer, System.ReadOnlySpan(Of Byte)) name.vb: Create(Integer, Integer, ReadOnlySpan(Of Byte)) @@ -319,15 +290,11 @@ items: fullName: OpenTK.Platform.Native.X11.X11IconComponent.Create(int, int, OpenTK.Platform.Native.X11.X11IconComponent.IconImage[]) type: Method source: - remote: - path: src/OpenTK.Platform.Native/X11/X11IconComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Create - path: opentk/src/OpenTK.Platform.Native/X11/X11IconComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11IconComponent.cs startLine: 66 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: >- Creates a _NET_WM_ICON from a number of images. @@ -339,42 +306,38 @@ items: parameters: - id: width type: System.Int32 - description: The width of the icon to report in . + description: The width of the icon to report in . - id: height type: System.Int32 - description: The height of the icon to report in . + description: The height of the icon to report in . - id: images type: OpenTK.Platform.Native.X11.X11IconComponent.IconImage[] description: The icon images. return: - type: OpenTK.Core.Platform.IconHandle + type: OpenTK.Platform.IconHandle description: A handle to the created icon. content.vb: Public Function Create(width As Integer, height As Integer, images As X11IconComponent.IconImage()) As IconHandle overload: OpenTK.Platform.Native.X11.X11IconComponent.Create* nameWithType.vb: X11IconComponent.Create(Integer, Integer, X11IconComponent.IconImage()) fullName.vb: OpenTK.Platform.Native.X11.X11IconComponent.Create(Integer, Integer, OpenTK.Platform.Native.X11.X11IconComponent.IconImage()) name.vb: Create(Integer, Integer, IconImage()) -- uid: OpenTK.Platform.Native.X11.X11IconComponent.Destroy(OpenTK.Core.Platform.IconHandle) - commentId: M:OpenTK.Platform.Native.X11.X11IconComponent.Destroy(OpenTK.Core.Platform.IconHandle) - id: Destroy(OpenTK.Core.Platform.IconHandle) +- uid: OpenTK.Platform.Native.X11.X11IconComponent.Destroy(OpenTK.Platform.IconHandle) + commentId: M:OpenTK.Platform.Native.X11.X11IconComponent.Destroy(OpenTK.Platform.IconHandle) + id: Destroy(OpenTK.Platform.IconHandle) parent: OpenTK.Platform.Native.X11.X11IconComponent langs: - csharp - vb name: Destroy(IconHandle) nameWithType: X11IconComponent.Destroy(IconHandle) - fullName: OpenTK.Platform.Native.X11.X11IconComponent.Destroy(OpenTK.Core.Platform.IconHandle) + fullName: OpenTK.Platform.Native.X11.X11IconComponent.Destroy(OpenTK.Platform.IconHandle) type: Method source: - remote: - path: src/OpenTK.Platform.Native/X11/X11IconComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Destroy - path: opentk/src/OpenTK.Platform.Native/X11/X11IconComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11IconComponent.cs startLine: 74 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: Destroy an icon object. example: [] @@ -382,7 +345,7 @@ items: content: public void Destroy(IconHandle handle) parameters: - id: handle - type: OpenTK.Core.Platform.IconHandle + type: OpenTK.Platform.IconHandle description: Handle to the icon object to destroy. content.vb: Public Sub Destroy(handle As IconHandle) overload: OpenTK.Platform.Native.X11.X11IconComponent.Destroy* @@ -391,28 +354,24 @@ items: commentId: T:System.ArgumentNullException description: handle is null. implements: - - OpenTK.Core.Platform.IIconComponent.Destroy(OpenTK.Core.Platform.IconHandle) -- uid: OpenTK.Platform.Native.X11.X11IconComponent.GetSize(OpenTK.Core.Platform.IconHandle,System.Int32@,System.Int32@) - commentId: M:OpenTK.Platform.Native.X11.X11IconComponent.GetSize(OpenTK.Core.Platform.IconHandle,System.Int32@,System.Int32@) - id: GetSize(OpenTK.Core.Platform.IconHandle,System.Int32@,System.Int32@) + - OpenTK.Platform.IIconComponent.Destroy(OpenTK.Platform.IconHandle) +- uid: OpenTK.Platform.Native.X11.X11IconComponent.GetSize(OpenTK.Platform.IconHandle,System.Int32@,System.Int32@) + commentId: M:OpenTK.Platform.Native.X11.X11IconComponent.GetSize(OpenTK.Platform.IconHandle,System.Int32@,System.Int32@) + id: GetSize(OpenTK.Platform.IconHandle,System.Int32@,System.Int32@) parent: OpenTK.Platform.Native.X11.X11IconComponent langs: - csharp - vb name: GetSize(IconHandle, out int, out int) nameWithType: X11IconComponent.GetSize(IconHandle, out int, out int) - fullName: OpenTK.Platform.Native.X11.X11IconComponent.GetSize(OpenTK.Core.Platform.IconHandle, out int, out int) + fullName: OpenTK.Platform.Native.X11.X11IconComponent.GetSize(OpenTK.Platform.IconHandle, out int, out int) type: Method source: - remote: - path: src/OpenTK.Platform.Native/X11/X11IconComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetSize - path: opentk/src/OpenTK.Platform.Native/X11/X11IconComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11IconComponent.cs startLine: 84 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: Get the dimensions of a icon object. example: [] @@ -420,7 +379,7 @@ items: content: public void GetSize(IconHandle handle, out int width, out int height) parameters: - id: handle - type: OpenTK.Core.Platform.IconHandle + type: OpenTK.Platform.IconHandle description: Handle to icon object. - id: width type: System.Int32 @@ -435,9 +394,9 @@ items: commentId: T:System.ArgumentNullException description: handle is null. implements: - - OpenTK.Core.Platform.IIconComponent.GetSize(OpenTK.Core.Platform.IconHandle,System.Int32@,System.Int32@) + - OpenTK.Platform.IIconComponent.GetSize(OpenTK.Platform.IconHandle,System.Int32@,System.Int32@) nameWithType.vb: X11IconComponent.GetSize(IconHandle, Integer, Integer) - fullName.vb: OpenTK.Platform.Native.X11.X11IconComponent.GetSize(OpenTK.Core.Platform.IconHandle, Integer, Integer) + fullName.vb: OpenTK.Platform.Native.X11.X11IconComponent.GetSize(OpenTK.Platform.IconHandle, Integer, Integer) name.vb: GetSize(IconHandle, Integer, Integer) references: - uid: OpenTK.Platform.Native.X11 @@ -489,20 +448,20 @@ references: nameWithType.vb: Object fullName.vb: Object name.vb: Object -- uid: OpenTK.Core.Platform.IIconComponent - commentId: T:OpenTK.Core.Platform.IIconComponent - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.IIconComponent.html +- uid: OpenTK.Platform.IIconComponent + commentId: T:OpenTK.Platform.IIconComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IIconComponent.html name: IIconComponent nameWithType: IIconComponent - fullName: OpenTK.Core.Platform.IIconComponent -- uid: OpenTK.Core.Platform.IPalComponent - commentId: T:OpenTK.Core.Platform.IPalComponent - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.IPalComponent.html + fullName: OpenTK.Platform.IIconComponent +- uid: OpenTK.Platform.IPalComponent + commentId: T:OpenTK.Platform.IPalComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IPalComponent.html name: IPalComponent nameWithType: IPalComponent - fullName: OpenTK.Core.Platform.IPalComponent + fullName: OpenTK.Platform.IPalComponent - uid: System.Object.Equals(System.Object) commentId: M:System.Object.Equals(System.Object) parent: System.Object @@ -729,49 +688,41 @@ references: name: System nameWithType: System fullName: System -- uid: OpenTK.Core.Platform - commentId: N:OpenTK.Core.Platform +- uid: OpenTK.Platform + commentId: N:OpenTK.Platform href: OpenTK.html - name: OpenTK.Core.Platform - nameWithType: OpenTK.Core.Platform - fullName: OpenTK.Core.Platform + name: OpenTK.Platform + nameWithType: OpenTK.Platform + fullName: OpenTK.Platform spec.csharp: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html spec.vb: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html - uid: OpenTK.Platform.Native.X11.X11IconComponent.Name* commentId: Overload:OpenTK.Platform.Native.X11.X11IconComponent.Name href: OpenTK.Platform.Native.X11.X11IconComponent.html#OpenTK_Platform_Native_X11_X11IconComponent_Name name: Name nameWithType: X11IconComponent.Name fullName: OpenTK.Platform.Native.X11.X11IconComponent.Name -- uid: OpenTK.Core.Platform.IPalComponent.Name - commentId: P:OpenTK.Core.Platform.IPalComponent.Name - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Name +- uid: OpenTK.Platform.IPalComponent.Name + commentId: P:OpenTK.Platform.IPalComponent.Name + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Name name: Name nameWithType: IPalComponent.Name - fullName: OpenTK.Core.Platform.IPalComponent.Name + fullName: OpenTK.Platform.IPalComponent.Name - uid: System.String commentId: T:System.String parent: System @@ -789,33 +740,33 @@ references: name: Provides nameWithType: X11IconComponent.Provides fullName: OpenTK.Platform.Native.X11.X11IconComponent.Provides -- uid: OpenTK.Core.Platform.IPalComponent.Provides - commentId: P:OpenTK.Core.Platform.IPalComponent.Provides - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Provides +- uid: OpenTK.Platform.IPalComponent.Provides + commentId: P:OpenTK.Platform.IPalComponent.Provides + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Provides name: Provides nameWithType: IPalComponent.Provides - fullName: OpenTK.Core.Platform.IPalComponent.Provides -- uid: OpenTK.Core.Platform.PalComponents - commentId: T:OpenTK.Core.Platform.PalComponents - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.PalComponents.html + fullName: OpenTK.Platform.IPalComponent.Provides +- uid: OpenTK.Platform.PalComponents + commentId: T:OpenTK.Platform.PalComponents + parent: OpenTK.Platform + href: OpenTK.Platform.PalComponents.html name: PalComponents nameWithType: PalComponents - fullName: OpenTK.Core.Platform.PalComponents + fullName: OpenTK.Platform.PalComponents - uid: OpenTK.Platform.Native.X11.X11IconComponent.Logger* commentId: Overload:OpenTK.Platform.Native.X11.X11IconComponent.Logger href: OpenTK.Platform.Native.X11.X11IconComponent.html#OpenTK_Platform_Native_X11_X11IconComponent_Logger name: Logger nameWithType: X11IconComponent.Logger fullName: OpenTK.Platform.Native.X11.X11IconComponent.Logger -- uid: OpenTK.Core.Platform.IPalComponent.Logger - commentId: P:OpenTK.Core.Platform.IPalComponent.Logger - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Logger +- uid: OpenTK.Platform.IPalComponent.Logger + commentId: P:OpenTK.Platform.IPalComponent.Logger + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Logger name: Logger nameWithType: IPalComponent.Logger - fullName: OpenTK.Core.Platform.IPalComponent.Logger + fullName: OpenTK.Platform.IPalComponent.Logger - uid: OpenTK.Core.Utility.ILogger commentId: T:OpenTK.Core.Utility.ILogger parent: OpenTK.Core.Utility @@ -855,66 +806,66 @@ references: href: OpenTK.Core.Utility.html - uid: OpenTK.Platform.Native.X11.X11IconComponent.Initialize* commentId: Overload:OpenTK.Platform.Native.X11.X11IconComponent.Initialize - href: OpenTK.Platform.Native.X11.X11IconComponent.html#OpenTK_Platform_Native_X11_X11IconComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + href: OpenTK.Platform.Native.X11.X11IconComponent.html#OpenTK_Platform_Native_X11_X11IconComponent_Initialize_OpenTK_Platform_ToolkitOptions_ name: Initialize nameWithType: X11IconComponent.Initialize fullName: OpenTK.Platform.Native.X11.X11IconComponent.Initialize -- uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - commentId: M:OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ +- uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ name: Initialize(ToolkitOptions) nameWithType: IPalComponent.Initialize(ToolkitOptions) - fullName: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + fullName: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) spec.csharp: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + - uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.ToolkitOptions + - uid: OpenTK.Platform.ToolkitOptions name: ToolkitOptions - href: OpenTK.Core.Platform.ToolkitOptions.html + href: OpenTK.Platform.ToolkitOptions.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + - uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.ToolkitOptions + - uid: OpenTK.Platform.ToolkitOptions name: ToolkitOptions - href: OpenTK.Core.Platform.ToolkitOptions.html + href: OpenTK.Platform.ToolkitOptions.html - name: ) -- uid: OpenTK.Core.Platform.ToolkitOptions - commentId: T:OpenTK.Core.Platform.ToolkitOptions - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.ToolkitOptions.html +- uid: OpenTK.Platform.ToolkitOptions + commentId: T:OpenTK.Platform.ToolkitOptions + parent: OpenTK.Platform + href: OpenTK.Platform.ToolkitOptions.html name: ToolkitOptions nameWithType: ToolkitOptions - fullName: OpenTK.Core.Platform.ToolkitOptions -- uid: OpenTK.Core.Platform.IIconComponent.Create(OpenTK.Core.Platform.SystemIconType) - commentId: M:OpenTK.Core.Platform.IIconComponent.Create(OpenTK.Core.Platform.SystemIconType) - parent: OpenTK.Core.Platform.IIconComponent - href: OpenTK.Core.Platform.IIconComponent.html#OpenTK_Core_Platform_IIconComponent_Create_OpenTK_Core_Platform_SystemIconType_ + fullName: OpenTK.Platform.ToolkitOptions +- uid: OpenTK.Platform.IIconComponent.Create(OpenTK.Platform.SystemIconType) + commentId: M:OpenTK.Platform.IIconComponent.Create(OpenTK.Platform.SystemIconType) + parent: OpenTK.Platform.IIconComponent + href: OpenTK.Platform.IIconComponent.html#OpenTK_Platform_IIconComponent_Create_OpenTK_Platform_SystemIconType_ name: Create(SystemIconType) nameWithType: IIconComponent.Create(SystemIconType) - fullName: OpenTK.Core.Platform.IIconComponent.Create(OpenTK.Core.Platform.SystemIconType) + fullName: OpenTK.Platform.IIconComponent.Create(OpenTK.Platform.SystemIconType) spec.csharp: - - uid: OpenTK.Core.Platform.IIconComponent.Create(OpenTK.Core.Platform.SystemIconType) + - uid: OpenTK.Platform.IIconComponent.Create(OpenTK.Platform.SystemIconType) name: Create - href: OpenTK.Core.Platform.IIconComponent.html#OpenTK_Core_Platform_IIconComponent_Create_OpenTK_Core_Platform_SystemIconType_ + href: OpenTK.Platform.IIconComponent.html#OpenTK_Platform_IIconComponent_Create_OpenTK_Platform_SystemIconType_ - name: ( - - uid: OpenTK.Core.Platform.SystemIconType + - uid: OpenTK.Platform.SystemIconType name: SystemIconType - href: OpenTK.Core.Platform.SystemIconType.html + href: OpenTK.Platform.SystemIconType.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IIconComponent.Create(OpenTK.Core.Platform.SystemIconType) + - uid: OpenTK.Platform.IIconComponent.Create(OpenTK.Platform.SystemIconType) name: Create - href: OpenTK.Core.Platform.IIconComponent.html#OpenTK_Core_Platform_IIconComponent_Create_OpenTK_Core_Platform_SystemIconType_ + href: OpenTK.Platform.IIconComponent.html#OpenTK_Platform_IIconComponent_Create_OpenTK_Platform_SystemIconType_ - name: ( - - uid: OpenTK.Core.Platform.SystemIconType + - uid: OpenTK.Platform.SystemIconType name: SystemIconType - href: OpenTK.Core.Platform.SystemIconType.html + href: OpenTK.Platform.SystemIconType.html - name: ) - uid: OpenTK.Platform.Native.X11.X11IconComponent.CanLoadSystemIcons* commentId: Overload:OpenTK.Platform.Native.X11.X11IconComponent.CanLoadSystemIcons @@ -922,13 +873,13 @@ references: name: CanLoadSystemIcons nameWithType: X11IconComponent.CanLoadSystemIcons fullName: OpenTK.Platform.Native.X11.X11IconComponent.CanLoadSystemIcons -- uid: OpenTK.Core.Platform.IIconComponent.CanLoadSystemIcons - commentId: P:OpenTK.Core.Platform.IIconComponent.CanLoadSystemIcons - parent: OpenTK.Core.Platform.IIconComponent - href: OpenTK.Core.Platform.IIconComponent.html#OpenTK_Core_Platform_IIconComponent_CanLoadSystemIcons +- uid: OpenTK.Platform.IIconComponent.CanLoadSystemIcons + commentId: P:OpenTK.Platform.IIconComponent.CanLoadSystemIcons + parent: OpenTK.Platform.IIconComponent + href: OpenTK.Platform.IIconComponent.html#OpenTK_Platform_IIconComponent_CanLoadSystemIcons name: CanLoadSystemIcons nameWithType: IIconComponent.CanLoadSystemIcons - fullName: OpenTK.Core.Platform.IIconComponent.CanLoadSystemIcons + fullName: OpenTK.Platform.IIconComponent.CanLoadSystemIcons - uid: System.Boolean commentId: T:System.Boolean parent: System @@ -942,39 +893,39 @@ references: name.vb: Boolean - uid: OpenTK.Platform.Native.X11.X11IconComponent.Create* commentId: Overload:OpenTK.Platform.Native.X11.X11IconComponent.Create - href: OpenTK.Platform.Native.X11.X11IconComponent.html#OpenTK_Platform_Native_X11_X11IconComponent_Create_OpenTK_Core_Platform_SystemIconType_ + href: OpenTK.Platform.Native.X11.X11IconComponent.html#OpenTK_Platform_Native_X11_X11IconComponent_Create_OpenTK_Platform_SystemIconType_ name: Create nameWithType: X11IconComponent.Create fullName: OpenTK.Platform.Native.X11.X11IconComponent.Create -- uid: OpenTK.Core.Platform.SystemIconType - commentId: T:OpenTK.Core.Platform.SystemIconType - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.SystemIconType.html +- uid: OpenTK.Platform.SystemIconType + commentId: T:OpenTK.Platform.SystemIconType + parent: OpenTK.Platform + href: OpenTK.Platform.SystemIconType.html name: SystemIconType nameWithType: SystemIconType - fullName: OpenTK.Core.Platform.SystemIconType -- uid: OpenTK.Core.Platform.IconHandle - commentId: T:OpenTK.Core.Platform.IconHandle - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.IconHandle.html + fullName: OpenTK.Platform.SystemIconType +- uid: OpenTK.Platform.IconHandle + commentId: T:OpenTK.Platform.IconHandle + parent: OpenTK.Platform + href: OpenTK.Platform.IconHandle.html name: IconHandle nameWithType: IconHandle - fullName: OpenTK.Core.Platform.IconHandle -- uid: OpenTK.Core.Platform.IIconComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte}) - commentId: M:OpenTK.Core.Platform.IIconComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte}) - parent: OpenTK.Core.Platform.IIconComponent + fullName: OpenTK.Platform.IconHandle +- uid: OpenTK.Platform.IIconComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte}) + commentId: M:OpenTK.Platform.IIconComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte}) + parent: OpenTK.Platform.IIconComponent isExternal: true - href: OpenTK.Core.Platform.IIconComponent.html#OpenTK_Core_Platform_IIconComponent_Create_System_Int32_System_Int32_System_ReadOnlySpan_System_Byte__ + href: OpenTK.Platform.IIconComponent.html#OpenTK_Platform_IIconComponent_Create_System_Int32_System_Int32_System_ReadOnlySpan_System_Byte__ name: Create(int, int, ReadOnlySpan) nameWithType: IIconComponent.Create(int, int, ReadOnlySpan) - fullName: OpenTK.Core.Platform.IIconComponent.Create(int, int, System.ReadOnlySpan) + fullName: OpenTK.Platform.IIconComponent.Create(int, int, System.ReadOnlySpan) nameWithType.vb: IIconComponent.Create(Integer, Integer, ReadOnlySpan(Of Byte)) - fullName.vb: OpenTK.Core.Platform.IIconComponent.Create(Integer, Integer, System.ReadOnlySpan(Of Byte)) + fullName.vb: OpenTK.Platform.IIconComponent.Create(Integer, Integer, System.ReadOnlySpan(Of Byte)) name.vb: Create(Integer, Integer, ReadOnlySpan(Of Byte)) spec.csharp: - - uid: OpenTK.Core.Platform.IIconComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte}) + - uid: OpenTK.Platform.IIconComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte}) name: Create - href: OpenTK.Core.Platform.IIconComponent.html#OpenTK_Core_Platform_IIconComponent_Create_System_Int32_System_Int32_System_ReadOnlySpan_System_Byte__ + href: OpenTK.Platform.IIconComponent.html#OpenTK_Platform_IIconComponent_Create_System_Int32_System_Int32_System_ReadOnlySpan_System_Byte__ - name: ( - uid: System.Int32 name: int @@ -1000,9 +951,9 @@ references: - name: '>' - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IIconComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte}) + - uid: OpenTK.Platform.IIconComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte}) name: Create - href: OpenTK.Core.Platform.IIconComponent.html#OpenTK_Core_Platform_IIconComponent_Create_System_Int32_System_Int32_System_ReadOnlySpan_System_Byte__ + href: OpenTK.Platform.IIconComponent.html#OpenTK_Platform_IIconComponent_Create_System_Int32_System_Int32_System_ReadOnlySpan_System_Byte__ - name: ( - uid: System.Int32 name: Integer @@ -1103,24 +1054,24 @@ references: - name: " " - name: T - name: ) -- uid: OpenTK.Platform.Native.X11.X11IconComponent.GetSize(OpenTK.Core.Platform.IconHandle,System.Int32@,System.Int32@) - commentId: M:OpenTK.Platform.Native.X11.X11IconComponent.GetSize(OpenTK.Core.Platform.IconHandle,System.Int32@,System.Int32@) +- uid: OpenTK.Platform.Native.X11.X11IconComponent.GetSize(OpenTK.Platform.IconHandle,System.Int32@,System.Int32@) + commentId: M:OpenTK.Platform.Native.X11.X11IconComponent.GetSize(OpenTK.Platform.IconHandle,System.Int32@,System.Int32@) isExternal: true - href: OpenTK.Platform.Native.X11.X11IconComponent.html#OpenTK_Platform_Native_X11_X11IconComponent_GetSize_OpenTK_Core_Platform_IconHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.Native.X11.X11IconComponent.html#OpenTK_Platform_Native_X11_X11IconComponent_GetSize_OpenTK_Platform_IconHandle_System_Int32__System_Int32__ name: GetSize(IconHandle, out int, out int) nameWithType: X11IconComponent.GetSize(IconHandle, out int, out int) - fullName: OpenTK.Platform.Native.X11.X11IconComponent.GetSize(OpenTK.Core.Platform.IconHandle, out int, out int) + fullName: OpenTK.Platform.Native.X11.X11IconComponent.GetSize(OpenTK.Platform.IconHandle, out int, out int) nameWithType.vb: X11IconComponent.GetSize(IconHandle, Integer, Integer) - fullName.vb: OpenTK.Platform.Native.X11.X11IconComponent.GetSize(OpenTK.Core.Platform.IconHandle, Integer, Integer) + fullName.vb: OpenTK.Platform.Native.X11.X11IconComponent.GetSize(OpenTK.Platform.IconHandle, Integer, Integer) name.vb: GetSize(IconHandle, Integer, Integer) spec.csharp: - - uid: OpenTK.Platform.Native.X11.X11IconComponent.GetSize(OpenTK.Core.Platform.IconHandle,System.Int32@,System.Int32@) + - uid: OpenTK.Platform.Native.X11.X11IconComponent.GetSize(OpenTK.Platform.IconHandle,System.Int32@,System.Int32@) name: GetSize - href: OpenTK.Platform.Native.X11.X11IconComponent.html#OpenTK_Platform_Native_X11_X11IconComponent_GetSize_OpenTK_Core_Platform_IconHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.Native.X11.X11IconComponent.html#OpenTK_Platform_Native_X11_X11IconComponent_GetSize_OpenTK_Platform_IconHandle_System_Int32__System_Int32__ - name: ( - - uid: OpenTK.Core.Platform.IconHandle + - uid: OpenTK.Platform.IconHandle name: IconHandle - href: OpenTK.Core.Platform.IconHandle.html + href: OpenTK.Platform.IconHandle.html - name: ',' - name: " " - name: out @@ -1139,13 +1090,13 @@ references: href: https://learn.microsoft.com/dotnet/api/system.int32 - name: ) spec.vb: - - uid: OpenTK.Platform.Native.X11.X11IconComponent.GetSize(OpenTK.Core.Platform.IconHandle,System.Int32@,System.Int32@) + - uid: OpenTK.Platform.Native.X11.X11IconComponent.GetSize(OpenTK.Platform.IconHandle,System.Int32@,System.Int32@) name: GetSize - href: OpenTK.Platform.Native.X11.X11IconComponent.html#OpenTK_Platform_Native_X11_X11IconComponent_GetSize_OpenTK_Core_Platform_IconHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.Native.X11.X11IconComponent.html#OpenTK_Platform_Native_X11_X11IconComponent_GetSize_OpenTK_Platform_IconHandle_System_Int32__System_Int32__ - name: ( - - uid: OpenTK.Core.Platform.IconHandle + - uid: OpenTK.Platform.IconHandle name: IconHandle - href: OpenTK.Core.Platform.IconHandle.html + href: OpenTK.Platform.IconHandle.html - name: ',' - name: " " - uid: System.Int32 @@ -1189,60 +1140,60 @@ references: fullName: System.ArgumentNullException - uid: OpenTK.Platform.Native.X11.X11IconComponent.Destroy* commentId: Overload:OpenTK.Platform.Native.X11.X11IconComponent.Destroy - href: OpenTK.Platform.Native.X11.X11IconComponent.html#OpenTK_Platform_Native_X11_X11IconComponent_Destroy_OpenTK_Core_Platform_IconHandle_ + href: OpenTK.Platform.Native.X11.X11IconComponent.html#OpenTK_Platform_Native_X11_X11IconComponent_Destroy_OpenTK_Platform_IconHandle_ name: Destroy nameWithType: X11IconComponent.Destroy fullName: OpenTK.Platform.Native.X11.X11IconComponent.Destroy -- uid: OpenTK.Core.Platform.IIconComponent.Destroy(OpenTK.Core.Platform.IconHandle) - commentId: M:OpenTK.Core.Platform.IIconComponent.Destroy(OpenTK.Core.Platform.IconHandle) - parent: OpenTK.Core.Platform.IIconComponent - href: OpenTK.Core.Platform.IIconComponent.html#OpenTK_Core_Platform_IIconComponent_Destroy_OpenTK_Core_Platform_IconHandle_ +- uid: OpenTK.Platform.IIconComponent.Destroy(OpenTK.Platform.IconHandle) + commentId: M:OpenTK.Platform.IIconComponent.Destroy(OpenTK.Platform.IconHandle) + parent: OpenTK.Platform.IIconComponent + href: OpenTK.Platform.IIconComponent.html#OpenTK_Platform_IIconComponent_Destroy_OpenTK_Platform_IconHandle_ name: Destroy(IconHandle) nameWithType: IIconComponent.Destroy(IconHandle) - fullName: OpenTK.Core.Platform.IIconComponent.Destroy(OpenTK.Core.Platform.IconHandle) + fullName: OpenTK.Platform.IIconComponent.Destroy(OpenTK.Platform.IconHandle) spec.csharp: - - uid: OpenTK.Core.Platform.IIconComponent.Destroy(OpenTK.Core.Platform.IconHandle) + - uid: OpenTK.Platform.IIconComponent.Destroy(OpenTK.Platform.IconHandle) name: Destroy - href: OpenTK.Core.Platform.IIconComponent.html#OpenTK_Core_Platform_IIconComponent_Destroy_OpenTK_Core_Platform_IconHandle_ + href: OpenTK.Platform.IIconComponent.html#OpenTK_Platform_IIconComponent_Destroy_OpenTK_Platform_IconHandle_ - name: ( - - uid: OpenTK.Core.Platform.IconHandle + - uid: OpenTK.Platform.IconHandle name: IconHandle - href: OpenTK.Core.Platform.IconHandle.html + href: OpenTK.Platform.IconHandle.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IIconComponent.Destroy(OpenTK.Core.Platform.IconHandle) + - uid: OpenTK.Platform.IIconComponent.Destroy(OpenTK.Platform.IconHandle) name: Destroy - href: OpenTK.Core.Platform.IIconComponent.html#OpenTK_Core_Platform_IIconComponent_Destroy_OpenTK_Core_Platform_IconHandle_ + href: OpenTK.Platform.IIconComponent.html#OpenTK_Platform_IIconComponent_Destroy_OpenTK_Platform_IconHandle_ - name: ( - - uid: OpenTK.Core.Platform.IconHandle + - uid: OpenTK.Platform.IconHandle name: IconHandle - href: OpenTK.Core.Platform.IconHandle.html + href: OpenTK.Platform.IconHandle.html - name: ) - uid: OpenTK.Platform.Native.X11.X11IconComponent.GetSize* commentId: Overload:OpenTK.Platform.Native.X11.X11IconComponent.GetSize - href: OpenTK.Platform.Native.X11.X11IconComponent.html#OpenTK_Platform_Native_X11_X11IconComponent_GetSize_OpenTK_Core_Platform_IconHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.Native.X11.X11IconComponent.html#OpenTK_Platform_Native_X11_X11IconComponent_GetSize_OpenTK_Platform_IconHandle_System_Int32__System_Int32__ name: GetSize nameWithType: X11IconComponent.GetSize fullName: OpenTK.Platform.Native.X11.X11IconComponent.GetSize -- uid: OpenTK.Core.Platform.IIconComponent.GetSize(OpenTK.Core.Platform.IconHandle,System.Int32@,System.Int32@) - commentId: M:OpenTK.Core.Platform.IIconComponent.GetSize(OpenTK.Core.Platform.IconHandle,System.Int32@,System.Int32@) - parent: OpenTK.Core.Platform.IIconComponent +- uid: OpenTK.Platform.IIconComponent.GetSize(OpenTK.Platform.IconHandle,System.Int32@,System.Int32@) + commentId: M:OpenTK.Platform.IIconComponent.GetSize(OpenTK.Platform.IconHandle,System.Int32@,System.Int32@) + parent: OpenTK.Platform.IIconComponent isExternal: true - href: OpenTK.Core.Platform.IIconComponent.html#OpenTK_Core_Platform_IIconComponent_GetSize_OpenTK_Core_Platform_IconHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.IIconComponent.html#OpenTK_Platform_IIconComponent_GetSize_OpenTK_Platform_IconHandle_System_Int32__System_Int32__ name: GetSize(IconHandle, out int, out int) nameWithType: IIconComponent.GetSize(IconHandle, out int, out int) - fullName: OpenTK.Core.Platform.IIconComponent.GetSize(OpenTK.Core.Platform.IconHandle, out int, out int) + fullName: OpenTK.Platform.IIconComponent.GetSize(OpenTK.Platform.IconHandle, out int, out int) nameWithType.vb: IIconComponent.GetSize(IconHandle, Integer, Integer) - fullName.vb: OpenTK.Core.Platform.IIconComponent.GetSize(OpenTK.Core.Platform.IconHandle, Integer, Integer) + fullName.vb: OpenTK.Platform.IIconComponent.GetSize(OpenTK.Platform.IconHandle, Integer, Integer) name.vb: GetSize(IconHandle, Integer, Integer) spec.csharp: - - uid: OpenTK.Core.Platform.IIconComponent.GetSize(OpenTK.Core.Platform.IconHandle,System.Int32@,System.Int32@) + - uid: OpenTK.Platform.IIconComponent.GetSize(OpenTK.Platform.IconHandle,System.Int32@,System.Int32@) name: GetSize - href: OpenTK.Core.Platform.IIconComponent.html#OpenTK_Core_Platform_IIconComponent_GetSize_OpenTK_Core_Platform_IconHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.IIconComponent.html#OpenTK_Platform_IIconComponent_GetSize_OpenTK_Platform_IconHandle_System_Int32__System_Int32__ - name: ( - - uid: OpenTK.Core.Platform.IconHandle + - uid: OpenTK.Platform.IconHandle name: IconHandle - href: OpenTK.Core.Platform.IconHandle.html + href: OpenTK.Platform.IconHandle.html - name: ',' - name: " " - name: out @@ -1261,13 +1212,13 @@ references: href: https://learn.microsoft.com/dotnet/api/system.int32 - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IIconComponent.GetSize(OpenTK.Core.Platform.IconHandle,System.Int32@,System.Int32@) + - uid: OpenTK.Platform.IIconComponent.GetSize(OpenTK.Platform.IconHandle,System.Int32@,System.Int32@) name: GetSize - href: OpenTK.Core.Platform.IIconComponent.html#OpenTK_Core_Platform_IIconComponent_GetSize_OpenTK_Core_Platform_IconHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.IIconComponent.html#OpenTK_Platform_IIconComponent_GetSize_OpenTK_Platform_IconHandle_System_Int32__System_Int32__ - name: ( - - uid: OpenTK.Core.Platform.IconHandle + - uid: OpenTK.Platform.IconHandle name: IconHandle - href: OpenTK.Core.Platform.IconHandle.html + href: OpenTK.Platform.IconHandle.html - name: ',' - name: " " - uid: System.Int32 diff --git a/api/OpenTK.Platform.Native.X11.X11KeyboardComponent.yml b/api/OpenTK.Platform.Native.X11.X11KeyboardComponent.yml index d08745bb..0cb0f903 100644 --- a/api/OpenTK.Platform.Native.X11.X11KeyboardComponent.yml +++ b/api/OpenTK.Platform.Native.X11.X11KeyboardComponent.yml @@ -5,19 +5,19 @@ items: id: X11KeyboardComponent parent: OpenTK.Platform.Native.X11 children: - - OpenTK.Platform.Native.X11.X11KeyboardComponent.BeginIme(OpenTK.Core.Platform.WindowHandle) - - OpenTK.Platform.Native.X11.X11KeyboardComponent.EndIme(OpenTK.Core.Platform.WindowHandle) - - OpenTK.Platform.Native.X11.X11KeyboardComponent.GetActiveKeyboardLayout(OpenTK.Core.Platform.WindowHandle) + - OpenTK.Platform.Native.X11.X11KeyboardComponent.BeginIme(OpenTK.Platform.WindowHandle) + - OpenTK.Platform.Native.X11.X11KeyboardComponent.EndIme(OpenTK.Platform.WindowHandle) + - OpenTK.Platform.Native.X11.X11KeyboardComponent.GetActiveKeyboardLayout(OpenTK.Platform.WindowHandle) - OpenTK.Platform.Native.X11.X11KeyboardComponent.GetAvailableKeyboardLayouts - - OpenTK.Platform.Native.X11.X11KeyboardComponent.GetKeyFromScancode(OpenTK.Core.Platform.Scancode) + - OpenTK.Platform.Native.X11.X11KeyboardComponent.GetKeyFromScancode(OpenTK.Platform.Scancode) - OpenTK.Platform.Native.X11.X11KeyboardComponent.GetKeyboardModifiers - OpenTK.Platform.Native.X11.X11KeyboardComponent.GetKeyboardState(System.Boolean[]) - - OpenTK.Platform.Native.X11.X11KeyboardComponent.GetScancodeFromKey(OpenTK.Core.Platform.Key) - - OpenTK.Platform.Native.X11.X11KeyboardComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + - OpenTK.Platform.Native.X11.X11KeyboardComponent.GetScancodeFromKey(OpenTK.Platform.Key) + - OpenTK.Platform.Native.X11.X11KeyboardComponent.Initialize(OpenTK.Platform.ToolkitOptions) - OpenTK.Platform.Native.X11.X11KeyboardComponent.Logger - OpenTK.Platform.Native.X11.X11KeyboardComponent.Name - OpenTK.Platform.Native.X11.X11KeyboardComponent.Provides - - OpenTK.Platform.Native.X11.X11KeyboardComponent.SetImeRectangle(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) + - OpenTK.Platform.Native.X11.X11KeyboardComponent.SetImeRectangle(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) - OpenTK.Platform.Native.X11.X11KeyboardComponent.SupportsIme - OpenTK.Platform.Native.X11.X11KeyboardComponent.SupportsLayouts langs: @@ -28,15 +28,11 @@ items: fullName: OpenTK.Platform.Native.X11.X11KeyboardComponent type: Class source: - remote: - path: src/OpenTK.Platform.Native/X11/X11KeyboardComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: X11KeyboardComponent - path: opentk/src/OpenTK.Platform.Native/X11/X11KeyboardComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11KeyboardComponent.cs startLine: 11 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 syntax: content: 'public class X11KeyboardComponent : IKeyboardComponent, IPalComponent' @@ -44,8 +40,8 @@ items: inheritance: - System.Object implements: - - OpenTK.Core.Platform.IKeyboardComponent - - OpenTK.Core.Platform.IPalComponent + - OpenTK.Platform.IKeyboardComponent + - OpenTK.Platform.IPalComponent inheritedMembers: - System.Object.Equals(System.Object) - System.Object.Equals(System.Object,System.Object) @@ -66,15 +62,11 @@ items: fullName: OpenTK.Platform.Native.X11.X11KeyboardComponent.Name type: Property source: - remote: - path: src/OpenTK.Platform.Native/X11/X11KeyboardComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Name - path: opentk/src/OpenTK.Platform.Native/X11/X11KeyboardComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11KeyboardComponent.cs startLine: 14 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: Name of the abstraction layer component. example: [] @@ -86,7 +78,7 @@ items: content.vb: Public ReadOnly Property Name As String overload: OpenTK.Platform.Native.X11.X11KeyboardComponent.Name* implements: - - OpenTK.Core.Platform.IPalComponent.Name + - OpenTK.Platform.IPalComponent.Name - uid: OpenTK.Platform.Native.X11.X11KeyboardComponent.Provides commentId: P:OpenTK.Platform.Native.X11.X11KeyboardComponent.Provides id: Provides @@ -99,15 +91,11 @@ items: fullName: OpenTK.Platform.Native.X11.X11KeyboardComponent.Provides type: Property source: - remote: - path: src/OpenTK.Platform.Native/X11/X11KeyboardComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Provides - path: opentk/src/OpenTK.Platform.Native/X11/X11KeyboardComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11KeyboardComponent.cs startLine: 17 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: Specifies which PAL components this object provides. example: [] @@ -115,11 +103,11 @@ items: content: public PalComponents Provides { get; } parameters: [] return: - type: OpenTK.Core.Platform.PalComponents + type: OpenTK.Platform.PalComponents content.vb: Public ReadOnly Property Provides As PalComponents overload: OpenTK.Platform.Native.X11.X11KeyboardComponent.Provides* implements: - - OpenTK.Core.Platform.IPalComponent.Provides + - OpenTK.Platform.IPalComponent.Provides - uid: OpenTK.Platform.Native.X11.X11KeyboardComponent.Logger commentId: P:OpenTK.Platform.Native.X11.X11KeyboardComponent.Logger id: Logger @@ -132,15 +120,11 @@ items: fullName: OpenTK.Platform.Native.X11.X11KeyboardComponent.Logger type: Property source: - remote: - path: src/OpenTK.Platform.Native/X11/X11KeyboardComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Logger - path: opentk/src/OpenTK.Platform.Native/X11/X11KeyboardComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11KeyboardComponent.cs startLine: 20 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: Provides a logger for this component. example: [] @@ -152,28 +136,24 @@ items: content.vb: Public Property Logger As ILogger overload: OpenTK.Platform.Native.X11.X11KeyboardComponent.Logger* implements: - - OpenTK.Core.Platform.IPalComponent.Logger -- uid: OpenTK.Platform.Native.X11.X11KeyboardComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - commentId: M:OpenTK.Platform.Native.X11.X11KeyboardComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - id: Initialize(OpenTK.Core.Platform.ToolkitOptions) + - OpenTK.Platform.IPalComponent.Logger +- uid: OpenTK.Platform.Native.X11.X11KeyboardComponent.Initialize(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Native.X11.X11KeyboardComponent.Initialize(OpenTK.Platform.ToolkitOptions) + id: Initialize(OpenTK.Platform.ToolkitOptions) parent: OpenTK.Platform.Native.X11.X11KeyboardComponent langs: - csharp - vb name: Initialize(ToolkitOptions) nameWithType: X11KeyboardComponent.Initialize(ToolkitOptions) - fullName: OpenTK.Platform.Native.X11.X11KeyboardComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + fullName: OpenTK.Platform.Native.X11.X11KeyboardComponent.Initialize(OpenTK.Platform.ToolkitOptions) type: Method source: - remote: - path: src/OpenTK.Platform.Native/X11/X11KeyboardComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Initialize - path: opentk/src/OpenTK.Platform.Native/X11/X11KeyboardComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11KeyboardComponent.cs startLine: 27 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: Initialize the component. example: [] @@ -181,12 +161,12 @@ items: content: public void Initialize(ToolkitOptions options) parameters: - id: options - type: OpenTK.Core.Platform.ToolkitOptions + type: OpenTK.Platform.ToolkitOptions description: The options to initialize the component with. content.vb: Public Sub Initialize(options As ToolkitOptions) overload: OpenTK.Platform.Native.X11.X11KeyboardComponent.Initialize* implements: - - OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + - OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) - uid: OpenTK.Platform.Native.X11.X11KeyboardComponent.SupportsLayouts commentId: P:OpenTK.Platform.Native.X11.X11KeyboardComponent.SupportsLayouts id: SupportsLayouts @@ -199,15 +179,11 @@ items: fullName: OpenTK.Platform.Native.X11.X11KeyboardComponent.SupportsLayouts type: Property source: - remote: - path: src/OpenTK.Platform.Native/X11/X11KeyboardComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SupportsLayouts - path: opentk/src/OpenTK.Platform.Native/X11/X11KeyboardComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11KeyboardComponent.cs startLine: 408 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: True if the driver supports keyboard layout functions. example: [] @@ -219,7 +195,7 @@ items: content.vb: Public ReadOnly Property SupportsLayouts As Boolean overload: OpenTK.Platform.Native.X11.X11KeyboardComponent.SupportsLayouts* implements: - - OpenTK.Core.Platform.IKeyboardComponent.SupportsLayouts + - OpenTK.Platform.IKeyboardComponent.SupportsLayouts - uid: OpenTK.Platform.Native.X11.X11KeyboardComponent.SupportsIme commentId: P:OpenTK.Platform.Native.X11.X11KeyboardComponent.SupportsIme id: SupportsIme @@ -232,15 +208,11 @@ items: fullName: OpenTK.Platform.Native.X11.X11KeyboardComponent.SupportsIme type: Property source: - remote: - path: src/OpenTK.Platform.Native/X11/X11KeyboardComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SupportsIme - path: opentk/src/OpenTK.Platform.Native/X11/X11KeyboardComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11KeyboardComponent.cs startLine: 411 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: True if the driver supports input method editor functions. example: [] @@ -252,28 +224,24 @@ items: content.vb: Public ReadOnly Property SupportsIme As Boolean overload: OpenTK.Platform.Native.X11.X11KeyboardComponent.SupportsIme* implements: - - OpenTK.Core.Platform.IKeyboardComponent.SupportsIme -- uid: OpenTK.Platform.Native.X11.X11KeyboardComponent.GetActiveKeyboardLayout(OpenTK.Core.Platform.WindowHandle) - commentId: M:OpenTK.Platform.Native.X11.X11KeyboardComponent.GetActiveKeyboardLayout(OpenTK.Core.Platform.WindowHandle) - id: GetActiveKeyboardLayout(OpenTK.Core.Platform.WindowHandle) + - OpenTK.Platform.IKeyboardComponent.SupportsIme +- uid: OpenTK.Platform.Native.X11.X11KeyboardComponent.GetActiveKeyboardLayout(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.Native.X11.X11KeyboardComponent.GetActiveKeyboardLayout(OpenTK.Platform.WindowHandle) + id: GetActiveKeyboardLayout(OpenTK.Platform.WindowHandle) parent: OpenTK.Platform.Native.X11.X11KeyboardComponent langs: - csharp - vb name: GetActiveKeyboardLayout(WindowHandle?) nameWithType: X11KeyboardComponent.GetActiveKeyboardLayout(WindowHandle?) - fullName: OpenTK.Platform.Native.X11.X11KeyboardComponent.GetActiveKeyboardLayout(OpenTK.Core.Platform.WindowHandle?) + fullName: OpenTK.Platform.Native.X11.X11KeyboardComponent.GetActiveKeyboardLayout(OpenTK.Platform.WindowHandle?) type: Method source: - remote: - path: src/OpenTK.Platform.Native/X11/X11KeyboardComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetActiveKeyboardLayout - path: opentk/src/OpenTK.Platform.Native/X11/X11KeyboardComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11KeyboardComponent.cs startLine: 414 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: Get the active keyboard layout. example: [] @@ -281,7 +249,7 @@ items: content: public string GetActiveKeyboardLayout(WindowHandle? handle) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: (optional) Handle to a window to query the layout for. Ignored on systems where keyboard layout is global. return: type: System.String @@ -289,13 +257,13 @@ items: content.vb: Public Function GetActiveKeyboardLayout(handle As WindowHandle) As String overload: OpenTK.Platform.Native.X11.X11KeyboardComponent.GetActiveKeyboardLayout* exceptions: - - type: OpenTK.Core.Platform.PalNotImplementedException - commentId: T:OpenTK.Core.Platform.PalNotImplementedException + - type: OpenTK.Platform.PalNotImplementedException + commentId: T:OpenTK.Platform.PalNotImplementedException description: Driver cannot query active keyboard layout. implements: - - OpenTK.Core.Platform.IKeyboardComponent.GetActiveKeyboardLayout(OpenTK.Core.Platform.WindowHandle) + - OpenTK.Platform.IKeyboardComponent.GetActiveKeyboardLayout(OpenTK.Platform.WindowHandle) nameWithType.vb: X11KeyboardComponent.GetActiveKeyboardLayout(WindowHandle) - fullName.vb: OpenTK.Platform.Native.X11.X11KeyboardComponent.GetActiveKeyboardLayout(OpenTK.Core.Platform.WindowHandle) + fullName.vb: OpenTK.Platform.Native.X11.X11KeyboardComponent.GetActiveKeyboardLayout(OpenTK.Platform.WindowHandle) name.vb: GetActiveKeyboardLayout(WindowHandle) - uid: OpenTK.Platform.Native.X11.X11KeyboardComponent.GetAvailableKeyboardLayouts commentId: M:OpenTK.Platform.Native.X11.X11KeyboardComponent.GetAvailableKeyboardLayouts @@ -309,15 +277,11 @@ items: fullName: OpenTK.Platform.Native.X11.X11KeyboardComponent.GetAvailableKeyboardLayouts() type: Method source: - remote: - path: src/OpenTK.Platform.Native/X11/X11KeyboardComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetAvailableKeyboardLayouts - path: opentk/src/OpenTK.Platform.Native/X11/X11KeyboardComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11KeyboardComponent.cs startLine: 422 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: See list of possible keyboard layouts for this system. example: [] @@ -329,31 +293,27 @@ items: content.vb: Public Function GetAvailableKeyboardLayouts() As String() overload: OpenTK.Platform.Native.X11.X11KeyboardComponent.GetAvailableKeyboardLayouts* implements: - - OpenTK.Core.Platform.IKeyboardComponent.GetAvailableKeyboardLayouts -- uid: OpenTK.Platform.Native.X11.X11KeyboardComponent.GetScancodeFromKey(OpenTK.Core.Platform.Key) - commentId: M:OpenTK.Platform.Native.X11.X11KeyboardComponent.GetScancodeFromKey(OpenTK.Core.Platform.Key) - id: GetScancodeFromKey(OpenTK.Core.Platform.Key) + - OpenTK.Platform.IKeyboardComponent.GetAvailableKeyboardLayouts +- uid: OpenTK.Platform.Native.X11.X11KeyboardComponent.GetScancodeFromKey(OpenTK.Platform.Key) + commentId: M:OpenTK.Platform.Native.X11.X11KeyboardComponent.GetScancodeFromKey(OpenTK.Platform.Key) + id: GetScancodeFromKey(OpenTK.Platform.Key) parent: OpenTK.Platform.Native.X11.X11KeyboardComponent langs: - csharp - vb name: GetScancodeFromKey(Key) nameWithType: X11KeyboardComponent.GetScancodeFromKey(Key) - fullName: OpenTK.Platform.Native.X11.X11KeyboardComponent.GetScancodeFromKey(OpenTK.Core.Platform.Key) + fullName: OpenTK.Platform.Native.X11.X11KeyboardComponent.GetScancodeFromKey(OpenTK.Platform.Key) type: Method source: - remote: - path: src/OpenTK.Platform.Native/X11/X11KeyboardComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetScancodeFromKey - path: opentk/src/OpenTK.Platform.Native/X11/X11KeyboardComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11KeyboardComponent.cs startLine: 430 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: >- - Gets the associated with the specified . + Gets the associated with the specified . The Key to Scancode mapping is not 1 to 1, multiple scancodes can produce the same key. @@ -365,42 +325,38 @@ items: content: public Scancode GetScancodeFromKey(Key key) parameters: - id: key - type: OpenTK.Core.Platform.Key + type: OpenTK.Platform.Key description: The key. return: - type: OpenTK.Core.Platform.Scancode + type: OpenTK.Platform.Scancode description: >- - The that produces the + The that produces the - or if no scancode produces the key. + or if no scancode produces the key. content.vb: Public Function GetScancodeFromKey(key As Key) As Scancode overload: OpenTK.Platform.Native.X11.X11KeyboardComponent.GetScancodeFromKey* implements: - - OpenTK.Core.Platform.IKeyboardComponent.GetScancodeFromKey(OpenTK.Core.Platform.Key) -- uid: OpenTK.Platform.Native.X11.X11KeyboardComponent.GetKeyFromScancode(OpenTK.Core.Platform.Scancode) - commentId: M:OpenTK.Platform.Native.X11.X11KeyboardComponent.GetKeyFromScancode(OpenTK.Core.Platform.Scancode) - id: GetKeyFromScancode(OpenTK.Core.Platform.Scancode) + - OpenTK.Platform.IKeyboardComponent.GetScancodeFromKey(OpenTK.Platform.Key) +- uid: OpenTK.Platform.Native.X11.X11KeyboardComponent.GetKeyFromScancode(OpenTK.Platform.Scancode) + commentId: M:OpenTK.Platform.Native.X11.X11KeyboardComponent.GetKeyFromScancode(OpenTK.Platform.Scancode) + id: GetKeyFromScancode(OpenTK.Platform.Scancode) parent: OpenTK.Platform.Native.X11.X11KeyboardComponent langs: - csharp - vb name: GetKeyFromScancode(Scancode) nameWithType: X11KeyboardComponent.GetKeyFromScancode(Scancode) - fullName: OpenTK.Platform.Native.X11.X11KeyboardComponent.GetKeyFromScancode(OpenTK.Core.Platform.Scancode) + fullName: OpenTK.Platform.Native.X11.X11KeyboardComponent.GetKeyFromScancode(OpenTK.Platform.Scancode) type: Method source: - remote: - path: src/OpenTK.Platform.Native/X11/X11KeyboardComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetKeyFromScancode - path: opentk/src/OpenTK.Platform.Native/X11/X11KeyboardComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11KeyboardComponent.cs startLine: 440 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: >- - Gets the associated with the specidied . + Gets the associated with the specidied . This function uses the current keyboard layout to determine the mapping. example: [] @@ -408,18 +364,18 @@ items: content: public Key GetKeyFromScancode(Scancode scancode) parameters: - id: scancode - type: OpenTK.Core.Platform.Scancode + type: OpenTK.Platform.Scancode description: The scancode. return: - type: OpenTK.Core.Platform.Key + type: OpenTK.Platform.Key description: >- - The associated with the + The associated with the - or if the scancode can't be mapped to a key. + or if the scancode can't be mapped to a key. content.vb: Public Function GetKeyFromScancode(scancode As Scancode) As Key overload: OpenTK.Platform.Native.X11.X11KeyboardComponent.GetKeyFromScancode* implements: - - OpenTK.Core.Platform.IKeyboardComponent.GetKeyFromScancode(OpenTK.Core.Platform.Scancode) + - OpenTK.Platform.IKeyboardComponent.GetKeyFromScancode(OpenTK.Platform.Scancode) - uid: OpenTK.Platform.Native.X11.X11KeyboardComponent.GetKeyboardState(System.Boolean[]) commentId: M:OpenTK.Platform.Native.X11.X11KeyboardComponent.GetKeyboardState(System.Boolean[]) id: GetKeyboardState(System.Boolean[]) @@ -432,22 +388,18 @@ items: fullName: OpenTK.Platform.Native.X11.X11KeyboardComponent.GetKeyboardState(bool[]) type: Method source: - remote: - path: src/OpenTK.Platform.Native/X11/X11KeyboardComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetKeyboardState - path: opentk/src/OpenTK.Platform.Native/X11/X11KeyboardComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11KeyboardComponent.cs startLine: 451 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: >- Copies the current state of the keyboard into the specified array. - This array should be indexed using values. + This array should be indexed using values. - The length of this array should be an array able to hold all possible values. + The length of this array should be an array able to hold all possible values. example: [] syntax: content: public void GetKeyboardState(bool[] keyboardState) @@ -458,7 +410,7 @@ items: content.vb: Public Sub GetKeyboardState(keyboardState As Boolean()) overload: OpenTK.Platform.Native.X11.X11KeyboardComponent.GetKeyboardState* implements: - - OpenTK.Core.Platform.IKeyboardComponent.GetKeyboardState(System.Boolean[]) + - OpenTK.Platform.IKeyboardComponent.GetKeyboardState(System.Boolean[]) nameWithType.vb: X11KeyboardComponent.GetKeyboardState(Boolean()) fullName.vb: OpenTK.Platform.Native.X11.X11KeyboardComponent.GetKeyboardState(Boolean()) name.vb: GetKeyboardState(Boolean()) @@ -474,48 +426,40 @@ items: fullName: OpenTK.Platform.Native.X11.X11KeyboardComponent.GetKeyboardModifiers() type: Method source: - remote: - path: src/OpenTK.Platform.Native/X11/X11KeyboardComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetKeyboardModifiers - path: opentk/src/OpenTK.Platform.Native/X11/X11KeyboardComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11KeyboardComponent.cs startLine: 458 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: Gets the current keyboard modifiers. example: [] syntax: content: public KeyModifier GetKeyboardModifiers() return: - type: OpenTK.Core.Platform.KeyModifier + type: OpenTK.Platform.KeyModifier description: The current keyboard modifiers. content.vb: Public Function GetKeyboardModifiers() As KeyModifier overload: OpenTK.Platform.Native.X11.X11KeyboardComponent.GetKeyboardModifiers* implements: - - OpenTK.Core.Platform.IKeyboardComponent.GetKeyboardModifiers -- uid: OpenTK.Platform.Native.X11.X11KeyboardComponent.BeginIme(OpenTK.Core.Platform.WindowHandle) - commentId: M:OpenTK.Platform.Native.X11.X11KeyboardComponent.BeginIme(OpenTK.Core.Platform.WindowHandle) - id: BeginIme(OpenTK.Core.Platform.WindowHandle) + - OpenTK.Platform.IKeyboardComponent.GetKeyboardModifiers +- uid: OpenTK.Platform.Native.X11.X11KeyboardComponent.BeginIme(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.Native.X11.X11KeyboardComponent.BeginIme(OpenTK.Platform.WindowHandle) + id: BeginIme(OpenTK.Platform.WindowHandle) parent: OpenTK.Platform.Native.X11.X11KeyboardComponent langs: - csharp - vb name: BeginIme(WindowHandle) nameWithType: X11KeyboardComponent.BeginIme(WindowHandle) - fullName: OpenTK.Platform.Native.X11.X11KeyboardComponent.BeginIme(OpenTK.Core.Platform.WindowHandle) + fullName: OpenTK.Platform.Native.X11.X11KeyboardComponent.BeginIme(OpenTK.Platform.WindowHandle) type: Method source: - remote: - path: src/OpenTK.Platform.Native/X11/X11KeyboardComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: BeginIme - path: opentk/src/OpenTK.Platform.Native/X11/X11KeyboardComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11KeyboardComponent.cs startLine: 472 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: Invoke input method editor. example: [] @@ -523,33 +467,29 @@ items: content: public void BeginIme(WindowHandle window) parameters: - id: window - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: The window corresponding to this IME window. content.vb: Public Sub BeginIme(window As WindowHandle) overload: OpenTK.Platform.Native.X11.X11KeyboardComponent.BeginIme* implements: - - OpenTK.Core.Platform.IKeyboardComponent.BeginIme(OpenTK.Core.Platform.WindowHandle) -- uid: OpenTK.Platform.Native.X11.X11KeyboardComponent.SetImeRectangle(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) - commentId: M:OpenTK.Platform.Native.X11.X11KeyboardComponent.SetImeRectangle(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) - id: SetImeRectangle(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) + - OpenTK.Platform.IKeyboardComponent.BeginIme(OpenTK.Platform.WindowHandle) +- uid: OpenTK.Platform.Native.X11.X11KeyboardComponent.SetImeRectangle(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) + commentId: M:OpenTK.Platform.Native.X11.X11KeyboardComponent.SetImeRectangle(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) + id: SetImeRectangle(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) parent: OpenTK.Platform.Native.X11.X11KeyboardComponent langs: - csharp - vb name: SetImeRectangle(WindowHandle, int, int, int, int) nameWithType: X11KeyboardComponent.SetImeRectangle(WindowHandle, int, int, int, int) - fullName: OpenTK.Platform.Native.X11.X11KeyboardComponent.SetImeRectangle(OpenTK.Core.Platform.WindowHandle, int, int, int, int) + fullName: OpenTK.Platform.Native.X11.X11KeyboardComponent.SetImeRectangle(OpenTK.Platform.WindowHandle, int, int, int, int) type: Method source: - remote: - path: src/OpenTK.Platform.Native/X11/X11KeyboardComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetImeRectangle - path: opentk/src/OpenTK.Platform.Native/X11/X11KeyboardComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11KeyboardComponent.cs startLine: 478 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: Set the rectangle to which the IME interface will appear relative to. example: [] @@ -557,7 +497,7 @@ items: content: public void SetImeRectangle(WindowHandle window, int x, int y, int width, int height) parameters: - id: window - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: The window corresponding to this IME window. - id: x type: System.Int32 @@ -574,31 +514,27 @@ items: content.vb: Public Sub SetImeRectangle(window As WindowHandle, x As Integer, y As Integer, width As Integer, height As Integer) overload: OpenTK.Platform.Native.X11.X11KeyboardComponent.SetImeRectangle* implements: - - OpenTK.Core.Platform.IKeyboardComponent.SetImeRectangle(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) + - OpenTK.Platform.IKeyboardComponent.SetImeRectangle(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) nameWithType.vb: X11KeyboardComponent.SetImeRectangle(WindowHandle, Integer, Integer, Integer, Integer) - fullName.vb: OpenTK.Platform.Native.X11.X11KeyboardComponent.SetImeRectangle(OpenTK.Core.Platform.WindowHandle, Integer, Integer, Integer, Integer) + fullName.vb: OpenTK.Platform.Native.X11.X11KeyboardComponent.SetImeRectangle(OpenTK.Platform.WindowHandle, Integer, Integer, Integer, Integer) name.vb: SetImeRectangle(WindowHandle, Integer, Integer, Integer, Integer) -- uid: OpenTK.Platform.Native.X11.X11KeyboardComponent.EndIme(OpenTK.Core.Platform.WindowHandle) - commentId: M:OpenTK.Platform.Native.X11.X11KeyboardComponent.EndIme(OpenTK.Core.Platform.WindowHandle) - id: EndIme(OpenTK.Core.Platform.WindowHandle) +- uid: OpenTK.Platform.Native.X11.X11KeyboardComponent.EndIme(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.Native.X11.X11KeyboardComponent.EndIme(OpenTK.Platform.WindowHandle) + id: EndIme(OpenTK.Platform.WindowHandle) parent: OpenTK.Platform.Native.X11.X11KeyboardComponent langs: - csharp - vb name: EndIme(WindowHandle) nameWithType: X11KeyboardComponent.EndIme(WindowHandle) - fullName: OpenTK.Platform.Native.X11.X11KeyboardComponent.EndIme(OpenTK.Core.Platform.WindowHandle) + fullName: OpenTK.Platform.Native.X11.X11KeyboardComponent.EndIme(OpenTK.Platform.WindowHandle) type: Method source: - remote: - path: src/OpenTK.Platform.Native/X11/X11KeyboardComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: EndIme - path: opentk/src/OpenTK.Platform.Native/X11/X11KeyboardComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11KeyboardComponent.cs startLine: 484 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: Finish input method editor. example: [] @@ -606,12 +542,12 @@ items: content: public void EndIme(WindowHandle window) parameters: - id: window - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: The window corresponding to this IME window. content.vb: Public Sub EndIme(window As WindowHandle) overload: OpenTK.Platform.Native.X11.X11KeyboardComponent.EndIme* implements: - - OpenTK.Core.Platform.IKeyboardComponent.EndIme(OpenTK.Core.Platform.WindowHandle) + - OpenTK.Platform.IKeyboardComponent.EndIme(OpenTK.Platform.WindowHandle) references: - uid: OpenTK.Platform.Native.X11 commentId: N:OpenTK.Platform.Native.X11 @@ -662,20 +598,20 @@ references: nameWithType.vb: Object fullName.vb: Object name.vb: Object -- uid: OpenTK.Core.Platform.IKeyboardComponent - commentId: T:OpenTK.Core.Platform.IKeyboardComponent - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.IKeyboardComponent.html +- uid: OpenTK.Platform.IKeyboardComponent + commentId: T:OpenTK.Platform.IKeyboardComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IKeyboardComponent.html name: IKeyboardComponent nameWithType: IKeyboardComponent - fullName: OpenTK.Core.Platform.IKeyboardComponent -- uid: OpenTK.Core.Platform.IPalComponent - commentId: T:OpenTK.Core.Platform.IPalComponent - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.IPalComponent.html + fullName: OpenTK.Platform.IKeyboardComponent +- uid: OpenTK.Platform.IPalComponent + commentId: T:OpenTK.Platform.IPalComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IPalComponent.html name: IPalComponent nameWithType: IPalComponent - fullName: OpenTK.Core.Platform.IPalComponent + fullName: OpenTK.Platform.IPalComponent - uid: System.Object.Equals(System.Object) commentId: M:System.Object.Equals(System.Object) parent: System.Object @@ -902,49 +838,41 @@ references: name: System nameWithType: System fullName: System -- uid: OpenTK.Core.Platform - commentId: N:OpenTK.Core.Platform +- uid: OpenTK.Platform + commentId: N:OpenTK.Platform href: OpenTK.html - name: OpenTK.Core.Platform - nameWithType: OpenTK.Core.Platform - fullName: OpenTK.Core.Platform + name: OpenTK.Platform + nameWithType: OpenTK.Platform + fullName: OpenTK.Platform spec.csharp: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html spec.vb: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html - uid: OpenTK.Platform.Native.X11.X11KeyboardComponent.Name* commentId: Overload:OpenTK.Platform.Native.X11.X11KeyboardComponent.Name href: OpenTK.Platform.Native.X11.X11KeyboardComponent.html#OpenTK_Platform_Native_X11_X11KeyboardComponent_Name name: Name nameWithType: X11KeyboardComponent.Name fullName: OpenTK.Platform.Native.X11.X11KeyboardComponent.Name -- uid: OpenTK.Core.Platform.IPalComponent.Name - commentId: P:OpenTK.Core.Platform.IPalComponent.Name - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Name +- uid: OpenTK.Platform.IPalComponent.Name + commentId: P:OpenTK.Platform.IPalComponent.Name + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Name name: Name nameWithType: IPalComponent.Name - fullName: OpenTK.Core.Platform.IPalComponent.Name + fullName: OpenTK.Platform.IPalComponent.Name - uid: System.String commentId: T:System.String parent: System @@ -962,33 +890,33 @@ references: name: Provides nameWithType: X11KeyboardComponent.Provides fullName: OpenTK.Platform.Native.X11.X11KeyboardComponent.Provides -- uid: OpenTK.Core.Platform.IPalComponent.Provides - commentId: P:OpenTK.Core.Platform.IPalComponent.Provides - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Provides +- uid: OpenTK.Platform.IPalComponent.Provides + commentId: P:OpenTK.Platform.IPalComponent.Provides + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Provides name: Provides nameWithType: IPalComponent.Provides - fullName: OpenTK.Core.Platform.IPalComponent.Provides -- uid: OpenTK.Core.Platform.PalComponents - commentId: T:OpenTK.Core.Platform.PalComponents - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.PalComponents.html + fullName: OpenTK.Platform.IPalComponent.Provides +- uid: OpenTK.Platform.PalComponents + commentId: T:OpenTK.Platform.PalComponents + parent: OpenTK.Platform + href: OpenTK.Platform.PalComponents.html name: PalComponents nameWithType: PalComponents - fullName: OpenTK.Core.Platform.PalComponents + fullName: OpenTK.Platform.PalComponents - uid: OpenTK.Platform.Native.X11.X11KeyboardComponent.Logger* commentId: Overload:OpenTK.Platform.Native.X11.X11KeyboardComponent.Logger href: OpenTK.Platform.Native.X11.X11KeyboardComponent.html#OpenTK_Platform_Native_X11_X11KeyboardComponent_Logger name: Logger nameWithType: X11KeyboardComponent.Logger fullName: OpenTK.Platform.Native.X11.X11KeyboardComponent.Logger -- uid: OpenTK.Core.Platform.IPalComponent.Logger - commentId: P:OpenTK.Core.Platform.IPalComponent.Logger - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Logger +- uid: OpenTK.Platform.IPalComponent.Logger + commentId: P:OpenTK.Platform.IPalComponent.Logger + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Logger name: Logger nameWithType: IPalComponent.Logger - fullName: OpenTK.Core.Platform.IPalComponent.Logger + fullName: OpenTK.Platform.IPalComponent.Logger - uid: OpenTK.Core.Utility.ILogger commentId: T:OpenTK.Core.Utility.ILogger parent: OpenTK.Core.Utility @@ -1028,55 +956,55 @@ references: href: OpenTK.Core.Utility.html - uid: OpenTK.Platform.Native.X11.X11KeyboardComponent.Initialize* commentId: Overload:OpenTK.Platform.Native.X11.X11KeyboardComponent.Initialize - href: OpenTK.Platform.Native.X11.X11KeyboardComponent.html#OpenTK_Platform_Native_X11_X11KeyboardComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + href: OpenTK.Platform.Native.X11.X11KeyboardComponent.html#OpenTK_Platform_Native_X11_X11KeyboardComponent_Initialize_OpenTK_Platform_ToolkitOptions_ name: Initialize nameWithType: X11KeyboardComponent.Initialize fullName: OpenTK.Platform.Native.X11.X11KeyboardComponent.Initialize -- uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - commentId: M:OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ +- uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ name: Initialize(ToolkitOptions) nameWithType: IPalComponent.Initialize(ToolkitOptions) - fullName: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + fullName: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) spec.csharp: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + - uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.ToolkitOptions + - uid: OpenTK.Platform.ToolkitOptions name: ToolkitOptions - href: OpenTK.Core.Platform.ToolkitOptions.html + href: OpenTK.Platform.ToolkitOptions.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + - uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.ToolkitOptions + - uid: OpenTK.Platform.ToolkitOptions name: ToolkitOptions - href: OpenTK.Core.Platform.ToolkitOptions.html + href: OpenTK.Platform.ToolkitOptions.html - name: ) -- uid: OpenTK.Core.Platform.ToolkitOptions - commentId: T:OpenTK.Core.Platform.ToolkitOptions - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.ToolkitOptions.html +- uid: OpenTK.Platform.ToolkitOptions + commentId: T:OpenTK.Platform.ToolkitOptions + parent: OpenTK.Platform + href: OpenTK.Platform.ToolkitOptions.html name: ToolkitOptions nameWithType: ToolkitOptions - fullName: OpenTK.Core.Platform.ToolkitOptions + fullName: OpenTK.Platform.ToolkitOptions - uid: OpenTK.Platform.Native.X11.X11KeyboardComponent.SupportsLayouts* commentId: Overload:OpenTK.Platform.Native.X11.X11KeyboardComponent.SupportsLayouts href: OpenTK.Platform.Native.X11.X11KeyboardComponent.html#OpenTK_Platform_Native_X11_X11KeyboardComponent_SupportsLayouts name: SupportsLayouts nameWithType: X11KeyboardComponent.SupportsLayouts fullName: OpenTK.Platform.Native.X11.X11KeyboardComponent.SupportsLayouts -- uid: OpenTK.Core.Platform.IKeyboardComponent.SupportsLayouts - commentId: P:OpenTK.Core.Platform.IKeyboardComponent.SupportsLayouts - parent: OpenTK.Core.Platform.IKeyboardComponent - href: OpenTK.Core.Platform.IKeyboardComponent.html#OpenTK_Core_Platform_IKeyboardComponent_SupportsLayouts +- uid: OpenTK.Platform.IKeyboardComponent.SupportsLayouts + commentId: P:OpenTK.Platform.IKeyboardComponent.SupportsLayouts + parent: OpenTK.Platform.IKeyboardComponent + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_SupportsLayouts name: SupportsLayouts nameWithType: IKeyboardComponent.SupportsLayouts - fullName: OpenTK.Core.Platform.IKeyboardComponent.SupportsLayouts + fullName: OpenTK.Platform.IKeyboardComponent.SupportsLayouts - uid: System.Boolean commentId: T:System.Boolean parent: System @@ -1094,80 +1022,80 @@ references: name: SupportsIme nameWithType: X11KeyboardComponent.SupportsIme fullName: OpenTK.Platform.Native.X11.X11KeyboardComponent.SupportsIme -- uid: OpenTK.Core.Platform.IKeyboardComponent.SupportsIme - commentId: P:OpenTK.Core.Platform.IKeyboardComponent.SupportsIme - parent: OpenTK.Core.Platform.IKeyboardComponent - href: OpenTK.Core.Platform.IKeyboardComponent.html#OpenTK_Core_Platform_IKeyboardComponent_SupportsIme +- uid: OpenTK.Platform.IKeyboardComponent.SupportsIme + commentId: P:OpenTK.Platform.IKeyboardComponent.SupportsIme + parent: OpenTK.Platform.IKeyboardComponent + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_SupportsIme name: SupportsIme nameWithType: IKeyboardComponent.SupportsIme - fullName: OpenTK.Core.Platform.IKeyboardComponent.SupportsIme -- uid: OpenTK.Core.Platform.PalNotImplementedException - commentId: T:OpenTK.Core.Platform.PalNotImplementedException - href: OpenTK.Core.Platform.PalNotImplementedException.html + fullName: OpenTK.Platform.IKeyboardComponent.SupportsIme +- uid: OpenTK.Platform.PalNotImplementedException + commentId: T:OpenTK.Platform.PalNotImplementedException + href: OpenTK.Platform.PalNotImplementedException.html name: PalNotImplementedException nameWithType: PalNotImplementedException - fullName: OpenTK.Core.Platform.PalNotImplementedException + fullName: OpenTK.Platform.PalNotImplementedException - uid: OpenTK.Platform.Native.X11.X11KeyboardComponent.GetActiveKeyboardLayout* commentId: Overload:OpenTK.Platform.Native.X11.X11KeyboardComponent.GetActiveKeyboardLayout - href: OpenTK.Platform.Native.X11.X11KeyboardComponent.html#OpenTK_Platform_Native_X11_X11KeyboardComponent_GetActiveKeyboardLayout_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.Native.X11.X11KeyboardComponent.html#OpenTK_Platform_Native_X11_X11KeyboardComponent_GetActiveKeyboardLayout_OpenTK_Platform_WindowHandle_ name: GetActiveKeyboardLayout nameWithType: X11KeyboardComponent.GetActiveKeyboardLayout fullName: OpenTK.Platform.Native.X11.X11KeyboardComponent.GetActiveKeyboardLayout -- uid: OpenTK.Core.Platform.IKeyboardComponent.GetActiveKeyboardLayout(OpenTK.Core.Platform.WindowHandle) - commentId: M:OpenTK.Core.Platform.IKeyboardComponent.GetActiveKeyboardLayout(OpenTK.Core.Platform.WindowHandle) - parent: OpenTK.Core.Platform.IKeyboardComponent - href: OpenTK.Core.Platform.IKeyboardComponent.html#OpenTK_Core_Platform_IKeyboardComponent_GetActiveKeyboardLayout_OpenTK_Core_Platform_WindowHandle_ +- uid: OpenTK.Platform.IKeyboardComponent.GetActiveKeyboardLayout(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IKeyboardComponent.GetActiveKeyboardLayout(OpenTK.Platform.WindowHandle) + parent: OpenTK.Platform.IKeyboardComponent + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_GetActiveKeyboardLayout_OpenTK_Platform_WindowHandle_ name: GetActiveKeyboardLayout(WindowHandle) nameWithType: IKeyboardComponent.GetActiveKeyboardLayout(WindowHandle) - fullName: OpenTK.Core.Platform.IKeyboardComponent.GetActiveKeyboardLayout(OpenTK.Core.Platform.WindowHandle) + fullName: OpenTK.Platform.IKeyboardComponent.GetActiveKeyboardLayout(OpenTK.Platform.WindowHandle) spec.csharp: - - uid: OpenTK.Core.Platform.IKeyboardComponent.GetActiveKeyboardLayout(OpenTK.Core.Platform.WindowHandle) + - uid: OpenTK.Platform.IKeyboardComponent.GetActiveKeyboardLayout(OpenTK.Platform.WindowHandle) name: GetActiveKeyboardLayout - href: OpenTK.Core.Platform.IKeyboardComponent.html#OpenTK_Core_Platform_IKeyboardComponent_GetActiveKeyboardLayout_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_GetActiveKeyboardLayout_OpenTK_Platform_WindowHandle_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IKeyboardComponent.GetActiveKeyboardLayout(OpenTK.Core.Platform.WindowHandle) + - uid: OpenTK.Platform.IKeyboardComponent.GetActiveKeyboardLayout(OpenTK.Platform.WindowHandle) name: GetActiveKeyboardLayout - href: OpenTK.Core.Platform.IKeyboardComponent.html#OpenTK_Core_Platform_IKeyboardComponent_GetActiveKeyboardLayout_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_GetActiveKeyboardLayout_OpenTK_Platform_WindowHandle_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ) -- uid: OpenTK.Core.Platform.WindowHandle - commentId: T:OpenTK.Core.Platform.WindowHandle - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.WindowHandle.html +- uid: OpenTK.Platform.WindowHandle + commentId: T:OpenTK.Platform.WindowHandle + parent: OpenTK.Platform + href: OpenTK.Platform.WindowHandle.html name: WindowHandle nameWithType: WindowHandle - fullName: OpenTK.Core.Platform.WindowHandle + fullName: OpenTK.Platform.WindowHandle - uid: OpenTK.Platform.Native.X11.X11KeyboardComponent.GetAvailableKeyboardLayouts* commentId: Overload:OpenTK.Platform.Native.X11.X11KeyboardComponent.GetAvailableKeyboardLayouts href: OpenTK.Platform.Native.X11.X11KeyboardComponent.html#OpenTK_Platform_Native_X11_X11KeyboardComponent_GetAvailableKeyboardLayouts name: GetAvailableKeyboardLayouts nameWithType: X11KeyboardComponent.GetAvailableKeyboardLayouts fullName: OpenTK.Platform.Native.X11.X11KeyboardComponent.GetAvailableKeyboardLayouts -- uid: OpenTK.Core.Platform.IKeyboardComponent.GetAvailableKeyboardLayouts - commentId: M:OpenTK.Core.Platform.IKeyboardComponent.GetAvailableKeyboardLayouts - parent: OpenTK.Core.Platform.IKeyboardComponent - href: OpenTK.Core.Platform.IKeyboardComponent.html#OpenTK_Core_Platform_IKeyboardComponent_GetAvailableKeyboardLayouts +- uid: OpenTK.Platform.IKeyboardComponent.GetAvailableKeyboardLayouts + commentId: M:OpenTK.Platform.IKeyboardComponent.GetAvailableKeyboardLayouts + parent: OpenTK.Platform.IKeyboardComponent + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_GetAvailableKeyboardLayouts name: GetAvailableKeyboardLayouts() nameWithType: IKeyboardComponent.GetAvailableKeyboardLayouts() - fullName: OpenTK.Core.Platform.IKeyboardComponent.GetAvailableKeyboardLayouts() + fullName: OpenTK.Platform.IKeyboardComponent.GetAvailableKeyboardLayouts() spec.csharp: - - uid: OpenTK.Core.Platform.IKeyboardComponent.GetAvailableKeyboardLayouts + - uid: OpenTK.Platform.IKeyboardComponent.GetAvailableKeyboardLayouts name: GetAvailableKeyboardLayouts - href: OpenTK.Core.Platform.IKeyboardComponent.html#OpenTK_Core_Platform_IKeyboardComponent_GetAvailableKeyboardLayouts + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_GetAvailableKeyboardLayouts - name: ( - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IKeyboardComponent.GetAvailableKeyboardLayouts + - uid: OpenTK.Platform.IKeyboardComponent.GetAvailableKeyboardLayouts name: GetAvailableKeyboardLayouts - href: OpenTK.Core.Platform.IKeyboardComponent.html#OpenTK_Core_Platform_IKeyboardComponent_GetAvailableKeyboardLayouts + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_GetAvailableKeyboardLayouts - name: ( - name: ) - uid: System.String[] @@ -1193,93 +1121,93 @@ references: href: https://learn.microsoft.com/dotnet/api/system.string - name: ( - name: ) -- uid: OpenTK.Core.Platform.Scancode - commentId: T:OpenTK.Core.Platform.Scancode - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.Scancode.html +- uid: OpenTK.Platform.Scancode + commentId: T:OpenTK.Platform.Scancode + parent: OpenTK.Platform + href: OpenTK.Platform.Scancode.html name: Scancode nameWithType: Scancode - fullName: OpenTK.Core.Platform.Scancode -- uid: OpenTK.Core.Platform.Key - commentId: T:OpenTK.Core.Platform.Key - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.Key.html + fullName: OpenTK.Platform.Scancode +- uid: OpenTK.Platform.Key + commentId: T:OpenTK.Platform.Key + parent: OpenTK.Platform + href: OpenTK.Platform.Key.html name: Key nameWithType: Key - fullName: OpenTK.Core.Platform.Key -- uid: OpenTK.Core.Platform.Scancode.Unknown - commentId: F:OpenTK.Core.Platform.Scancode.Unknown - href: OpenTK.Core.Platform.Scancode.html#OpenTK_Core_Platform_Scancode_Unknown + fullName: OpenTK.Platform.Key +- uid: OpenTK.Platform.Scancode.Unknown + commentId: F:OpenTK.Platform.Scancode.Unknown + href: OpenTK.Platform.Scancode.html#OpenTK_Platform_Scancode_Unknown name: Unknown nameWithType: Scancode.Unknown - fullName: OpenTK.Core.Platform.Scancode.Unknown + fullName: OpenTK.Platform.Scancode.Unknown - uid: OpenTK.Platform.Native.X11.X11KeyboardComponent.GetScancodeFromKey* commentId: Overload:OpenTK.Platform.Native.X11.X11KeyboardComponent.GetScancodeFromKey - href: OpenTK.Platform.Native.X11.X11KeyboardComponent.html#OpenTK_Platform_Native_X11_X11KeyboardComponent_GetScancodeFromKey_OpenTK_Core_Platform_Key_ + href: OpenTK.Platform.Native.X11.X11KeyboardComponent.html#OpenTK_Platform_Native_X11_X11KeyboardComponent_GetScancodeFromKey_OpenTK_Platform_Key_ name: GetScancodeFromKey nameWithType: X11KeyboardComponent.GetScancodeFromKey fullName: OpenTK.Platform.Native.X11.X11KeyboardComponent.GetScancodeFromKey -- uid: OpenTK.Core.Platform.IKeyboardComponent.GetScancodeFromKey(OpenTK.Core.Platform.Key) - commentId: M:OpenTK.Core.Platform.IKeyboardComponent.GetScancodeFromKey(OpenTK.Core.Platform.Key) - parent: OpenTK.Core.Platform.IKeyboardComponent - href: OpenTK.Core.Platform.IKeyboardComponent.html#OpenTK_Core_Platform_IKeyboardComponent_GetScancodeFromKey_OpenTK_Core_Platform_Key_ +- uid: OpenTK.Platform.IKeyboardComponent.GetScancodeFromKey(OpenTK.Platform.Key) + commentId: M:OpenTK.Platform.IKeyboardComponent.GetScancodeFromKey(OpenTK.Platform.Key) + parent: OpenTK.Platform.IKeyboardComponent + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_GetScancodeFromKey_OpenTK_Platform_Key_ name: GetScancodeFromKey(Key) nameWithType: IKeyboardComponent.GetScancodeFromKey(Key) - fullName: OpenTK.Core.Platform.IKeyboardComponent.GetScancodeFromKey(OpenTK.Core.Platform.Key) + fullName: OpenTK.Platform.IKeyboardComponent.GetScancodeFromKey(OpenTK.Platform.Key) spec.csharp: - - uid: OpenTK.Core.Platform.IKeyboardComponent.GetScancodeFromKey(OpenTK.Core.Platform.Key) + - uid: OpenTK.Platform.IKeyboardComponent.GetScancodeFromKey(OpenTK.Platform.Key) name: GetScancodeFromKey - href: OpenTK.Core.Platform.IKeyboardComponent.html#OpenTK_Core_Platform_IKeyboardComponent_GetScancodeFromKey_OpenTK_Core_Platform_Key_ + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_GetScancodeFromKey_OpenTK_Platform_Key_ - name: ( - - uid: OpenTK.Core.Platform.Key + - uid: OpenTK.Platform.Key name: Key - href: OpenTK.Core.Platform.Key.html + href: OpenTK.Platform.Key.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IKeyboardComponent.GetScancodeFromKey(OpenTK.Core.Platform.Key) + - uid: OpenTK.Platform.IKeyboardComponent.GetScancodeFromKey(OpenTK.Platform.Key) name: GetScancodeFromKey - href: OpenTK.Core.Platform.IKeyboardComponent.html#OpenTK_Core_Platform_IKeyboardComponent_GetScancodeFromKey_OpenTK_Core_Platform_Key_ + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_GetScancodeFromKey_OpenTK_Platform_Key_ - name: ( - - uid: OpenTK.Core.Platform.Key + - uid: OpenTK.Platform.Key name: Key - href: OpenTK.Core.Platform.Key.html + href: OpenTK.Platform.Key.html - name: ) -- uid: OpenTK.Core.Platform.Key.Unknown - commentId: F:OpenTK.Core.Platform.Key.Unknown - href: OpenTK.Core.Platform.Key.html#OpenTK_Core_Platform_Key_Unknown +- uid: OpenTK.Platform.Key.Unknown + commentId: F:OpenTK.Platform.Key.Unknown + href: OpenTK.Platform.Key.html#OpenTK_Platform_Key_Unknown name: Unknown nameWithType: Key.Unknown - fullName: OpenTK.Core.Platform.Key.Unknown + fullName: OpenTK.Platform.Key.Unknown - uid: OpenTK.Platform.Native.X11.X11KeyboardComponent.GetKeyFromScancode* commentId: Overload:OpenTK.Platform.Native.X11.X11KeyboardComponent.GetKeyFromScancode - href: OpenTK.Platform.Native.X11.X11KeyboardComponent.html#OpenTK_Platform_Native_X11_X11KeyboardComponent_GetKeyFromScancode_OpenTK_Core_Platform_Scancode_ + href: OpenTK.Platform.Native.X11.X11KeyboardComponent.html#OpenTK_Platform_Native_X11_X11KeyboardComponent_GetKeyFromScancode_OpenTK_Platform_Scancode_ name: GetKeyFromScancode nameWithType: X11KeyboardComponent.GetKeyFromScancode fullName: OpenTK.Platform.Native.X11.X11KeyboardComponent.GetKeyFromScancode -- uid: OpenTK.Core.Platform.IKeyboardComponent.GetKeyFromScancode(OpenTK.Core.Platform.Scancode) - commentId: M:OpenTK.Core.Platform.IKeyboardComponent.GetKeyFromScancode(OpenTK.Core.Platform.Scancode) - parent: OpenTK.Core.Platform.IKeyboardComponent - href: OpenTK.Core.Platform.IKeyboardComponent.html#OpenTK_Core_Platform_IKeyboardComponent_GetKeyFromScancode_OpenTK_Core_Platform_Scancode_ +- uid: OpenTK.Platform.IKeyboardComponent.GetKeyFromScancode(OpenTK.Platform.Scancode) + commentId: M:OpenTK.Platform.IKeyboardComponent.GetKeyFromScancode(OpenTK.Platform.Scancode) + parent: OpenTK.Platform.IKeyboardComponent + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_GetKeyFromScancode_OpenTK_Platform_Scancode_ name: GetKeyFromScancode(Scancode) nameWithType: IKeyboardComponent.GetKeyFromScancode(Scancode) - fullName: OpenTK.Core.Platform.IKeyboardComponent.GetKeyFromScancode(OpenTK.Core.Platform.Scancode) + fullName: OpenTK.Platform.IKeyboardComponent.GetKeyFromScancode(OpenTK.Platform.Scancode) spec.csharp: - - uid: OpenTK.Core.Platform.IKeyboardComponent.GetKeyFromScancode(OpenTK.Core.Platform.Scancode) + - uid: OpenTK.Platform.IKeyboardComponent.GetKeyFromScancode(OpenTK.Platform.Scancode) name: GetKeyFromScancode - href: OpenTK.Core.Platform.IKeyboardComponent.html#OpenTK_Core_Platform_IKeyboardComponent_GetKeyFromScancode_OpenTK_Core_Platform_Scancode_ + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_GetKeyFromScancode_OpenTK_Platform_Scancode_ - name: ( - - uid: OpenTK.Core.Platform.Scancode + - uid: OpenTK.Platform.Scancode name: Scancode - href: OpenTK.Core.Platform.Scancode.html + href: OpenTK.Platform.Scancode.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IKeyboardComponent.GetKeyFromScancode(OpenTK.Core.Platform.Scancode) + - uid: OpenTK.Platform.IKeyboardComponent.GetKeyFromScancode(OpenTK.Platform.Scancode) name: GetKeyFromScancode - href: OpenTK.Core.Platform.IKeyboardComponent.html#OpenTK_Core_Platform_IKeyboardComponent_GetKeyFromScancode_OpenTK_Core_Platform_Scancode_ + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_GetKeyFromScancode_OpenTK_Platform_Scancode_ - name: ( - - uid: OpenTK.Core.Platform.Scancode + - uid: OpenTK.Platform.Scancode name: Scancode - href: OpenTK.Core.Platform.Scancode.html + href: OpenTK.Platform.Scancode.html - name: ) - uid: OpenTK.Platform.Native.X11.X11KeyboardComponent.GetKeyboardState* commentId: Overload:OpenTK.Platform.Native.X11.X11KeyboardComponent.GetKeyboardState @@ -1287,21 +1215,21 @@ references: name: GetKeyboardState nameWithType: X11KeyboardComponent.GetKeyboardState fullName: OpenTK.Platform.Native.X11.X11KeyboardComponent.GetKeyboardState -- uid: OpenTK.Core.Platform.IKeyboardComponent.GetKeyboardState(System.Boolean[]) - commentId: M:OpenTK.Core.Platform.IKeyboardComponent.GetKeyboardState(System.Boolean[]) - parent: OpenTK.Core.Platform.IKeyboardComponent +- uid: OpenTK.Platform.IKeyboardComponent.GetKeyboardState(System.Boolean[]) + commentId: M:OpenTK.Platform.IKeyboardComponent.GetKeyboardState(System.Boolean[]) + parent: OpenTK.Platform.IKeyboardComponent isExternal: true - href: OpenTK.Core.Platform.IKeyboardComponent.html#OpenTK_Core_Platform_IKeyboardComponent_GetKeyboardState_System_Boolean___ + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_GetKeyboardState_System_Boolean___ name: GetKeyboardState(bool[]) nameWithType: IKeyboardComponent.GetKeyboardState(bool[]) - fullName: OpenTK.Core.Platform.IKeyboardComponent.GetKeyboardState(bool[]) + fullName: OpenTK.Platform.IKeyboardComponent.GetKeyboardState(bool[]) nameWithType.vb: IKeyboardComponent.GetKeyboardState(Boolean()) - fullName.vb: OpenTK.Core.Platform.IKeyboardComponent.GetKeyboardState(Boolean()) + fullName.vb: OpenTK.Platform.IKeyboardComponent.GetKeyboardState(Boolean()) name.vb: GetKeyboardState(Boolean()) spec.csharp: - - uid: OpenTK.Core.Platform.IKeyboardComponent.GetKeyboardState(System.Boolean[]) + - uid: OpenTK.Platform.IKeyboardComponent.GetKeyboardState(System.Boolean[]) name: GetKeyboardState - href: OpenTK.Core.Platform.IKeyboardComponent.html#OpenTK_Core_Platform_IKeyboardComponent_GetKeyboardState_System_Boolean___ + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_GetKeyboardState_System_Boolean___ - name: ( - uid: System.Boolean name: bool @@ -1311,9 +1239,9 @@ references: - name: ']' - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IKeyboardComponent.GetKeyboardState(System.Boolean[]) + - uid: OpenTK.Platform.IKeyboardComponent.GetKeyboardState(System.Boolean[]) name: GetKeyboardState - href: OpenTK.Core.Platform.IKeyboardComponent.html#OpenTK_Core_Platform_IKeyboardComponent_GetKeyboardState_System_Boolean___ + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_GetKeyboardState_System_Boolean___ - name: ( - uid: System.Boolean name: Boolean @@ -1351,88 +1279,88 @@ references: name: GetKeyboardModifiers nameWithType: X11KeyboardComponent.GetKeyboardModifiers fullName: OpenTK.Platform.Native.X11.X11KeyboardComponent.GetKeyboardModifiers -- uid: OpenTK.Core.Platform.IKeyboardComponent.GetKeyboardModifiers - commentId: M:OpenTK.Core.Platform.IKeyboardComponent.GetKeyboardModifiers - parent: OpenTK.Core.Platform.IKeyboardComponent - href: OpenTK.Core.Platform.IKeyboardComponent.html#OpenTK_Core_Platform_IKeyboardComponent_GetKeyboardModifiers +- uid: OpenTK.Platform.IKeyboardComponent.GetKeyboardModifiers + commentId: M:OpenTK.Platform.IKeyboardComponent.GetKeyboardModifiers + parent: OpenTK.Platform.IKeyboardComponent + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_GetKeyboardModifiers name: GetKeyboardModifiers() nameWithType: IKeyboardComponent.GetKeyboardModifiers() - fullName: OpenTK.Core.Platform.IKeyboardComponent.GetKeyboardModifiers() + fullName: OpenTK.Platform.IKeyboardComponent.GetKeyboardModifiers() spec.csharp: - - uid: OpenTK.Core.Platform.IKeyboardComponent.GetKeyboardModifiers + - uid: OpenTK.Platform.IKeyboardComponent.GetKeyboardModifiers name: GetKeyboardModifiers - href: OpenTK.Core.Platform.IKeyboardComponent.html#OpenTK_Core_Platform_IKeyboardComponent_GetKeyboardModifiers + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_GetKeyboardModifiers - name: ( - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IKeyboardComponent.GetKeyboardModifiers + - uid: OpenTK.Platform.IKeyboardComponent.GetKeyboardModifiers name: GetKeyboardModifiers - href: OpenTK.Core.Platform.IKeyboardComponent.html#OpenTK_Core_Platform_IKeyboardComponent_GetKeyboardModifiers + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_GetKeyboardModifiers - name: ( - name: ) -- uid: OpenTK.Core.Platform.KeyModifier - commentId: T:OpenTK.Core.Platform.KeyModifier - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.KeyModifier.html +- uid: OpenTK.Platform.KeyModifier + commentId: T:OpenTK.Platform.KeyModifier + parent: OpenTK.Platform + href: OpenTK.Platform.KeyModifier.html name: KeyModifier nameWithType: KeyModifier - fullName: OpenTK.Core.Platform.KeyModifier + fullName: OpenTK.Platform.KeyModifier - uid: OpenTK.Platform.Native.X11.X11KeyboardComponent.BeginIme* commentId: Overload:OpenTK.Platform.Native.X11.X11KeyboardComponent.BeginIme - href: OpenTK.Platform.Native.X11.X11KeyboardComponent.html#OpenTK_Platform_Native_X11_X11KeyboardComponent_BeginIme_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.Native.X11.X11KeyboardComponent.html#OpenTK_Platform_Native_X11_X11KeyboardComponent_BeginIme_OpenTK_Platform_WindowHandle_ name: BeginIme nameWithType: X11KeyboardComponent.BeginIme fullName: OpenTK.Platform.Native.X11.X11KeyboardComponent.BeginIme -- uid: OpenTK.Core.Platform.IKeyboardComponent.BeginIme(OpenTK.Core.Platform.WindowHandle) - commentId: M:OpenTK.Core.Platform.IKeyboardComponent.BeginIme(OpenTK.Core.Platform.WindowHandle) - parent: OpenTK.Core.Platform.IKeyboardComponent - href: OpenTK.Core.Platform.IKeyboardComponent.html#OpenTK_Core_Platform_IKeyboardComponent_BeginIme_OpenTK_Core_Platform_WindowHandle_ +- uid: OpenTK.Platform.IKeyboardComponent.BeginIme(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IKeyboardComponent.BeginIme(OpenTK.Platform.WindowHandle) + parent: OpenTK.Platform.IKeyboardComponent + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_BeginIme_OpenTK_Platform_WindowHandle_ name: BeginIme(WindowHandle) nameWithType: IKeyboardComponent.BeginIme(WindowHandle) - fullName: OpenTK.Core.Platform.IKeyboardComponent.BeginIme(OpenTK.Core.Platform.WindowHandle) + fullName: OpenTK.Platform.IKeyboardComponent.BeginIme(OpenTK.Platform.WindowHandle) spec.csharp: - - uid: OpenTK.Core.Platform.IKeyboardComponent.BeginIme(OpenTK.Core.Platform.WindowHandle) + - uid: OpenTK.Platform.IKeyboardComponent.BeginIme(OpenTK.Platform.WindowHandle) name: BeginIme - href: OpenTK.Core.Platform.IKeyboardComponent.html#OpenTK_Core_Platform_IKeyboardComponent_BeginIme_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_BeginIme_OpenTK_Platform_WindowHandle_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IKeyboardComponent.BeginIme(OpenTK.Core.Platform.WindowHandle) + - uid: OpenTK.Platform.IKeyboardComponent.BeginIme(OpenTK.Platform.WindowHandle) name: BeginIme - href: OpenTK.Core.Platform.IKeyboardComponent.html#OpenTK_Core_Platform_IKeyboardComponent_BeginIme_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_BeginIme_OpenTK_Platform_WindowHandle_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ) - uid: OpenTK.Platform.Native.X11.X11KeyboardComponent.SetImeRectangle* commentId: Overload:OpenTK.Platform.Native.X11.X11KeyboardComponent.SetImeRectangle - href: OpenTK.Platform.Native.X11.X11KeyboardComponent.html#OpenTK_Platform_Native_X11_X11KeyboardComponent_SetImeRectangle_OpenTK_Core_Platform_WindowHandle_System_Int32_System_Int32_System_Int32_System_Int32_ + href: OpenTK.Platform.Native.X11.X11KeyboardComponent.html#OpenTK_Platform_Native_X11_X11KeyboardComponent_SetImeRectangle_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_System_Int32_System_Int32_ name: SetImeRectangle nameWithType: X11KeyboardComponent.SetImeRectangle fullName: OpenTK.Platform.Native.X11.X11KeyboardComponent.SetImeRectangle -- uid: OpenTK.Core.Platform.IKeyboardComponent.SetImeRectangle(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) - commentId: M:OpenTK.Core.Platform.IKeyboardComponent.SetImeRectangle(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) - parent: OpenTK.Core.Platform.IKeyboardComponent +- uid: OpenTK.Platform.IKeyboardComponent.SetImeRectangle(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) + commentId: M:OpenTK.Platform.IKeyboardComponent.SetImeRectangle(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) + parent: OpenTK.Platform.IKeyboardComponent isExternal: true - href: OpenTK.Core.Platform.IKeyboardComponent.html#OpenTK_Core_Platform_IKeyboardComponent_SetImeRectangle_OpenTK_Core_Platform_WindowHandle_System_Int32_System_Int32_System_Int32_System_Int32_ + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_SetImeRectangle_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_System_Int32_System_Int32_ name: SetImeRectangle(WindowHandle, int, int, int, int) nameWithType: IKeyboardComponent.SetImeRectangle(WindowHandle, int, int, int, int) - fullName: OpenTK.Core.Platform.IKeyboardComponent.SetImeRectangle(OpenTK.Core.Platform.WindowHandle, int, int, int, int) + fullName: OpenTK.Platform.IKeyboardComponent.SetImeRectangle(OpenTK.Platform.WindowHandle, int, int, int, int) nameWithType.vb: IKeyboardComponent.SetImeRectangle(WindowHandle, Integer, Integer, Integer, Integer) - fullName.vb: OpenTK.Core.Platform.IKeyboardComponent.SetImeRectangle(OpenTK.Core.Platform.WindowHandle, Integer, Integer, Integer, Integer) + fullName.vb: OpenTK.Platform.IKeyboardComponent.SetImeRectangle(OpenTK.Platform.WindowHandle, Integer, Integer, Integer, Integer) name.vb: SetImeRectangle(WindowHandle, Integer, Integer, Integer, Integer) spec.csharp: - - uid: OpenTK.Core.Platform.IKeyboardComponent.SetImeRectangle(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) + - uid: OpenTK.Platform.IKeyboardComponent.SetImeRectangle(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) name: SetImeRectangle - href: OpenTK.Core.Platform.IKeyboardComponent.html#OpenTK_Core_Platform_IKeyboardComponent_SetImeRectangle_OpenTK_Core_Platform_WindowHandle_System_Int32_System_Int32_System_Int32_System_Int32_ + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_SetImeRectangle_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_System_Int32_System_Int32_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - uid: System.Int32 @@ -1459,13 +1387,13 @@ references: href: https://learn.microsoft.com/dotnet/api/system.int32 - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IKeyboardComponent.SetImeRectangle(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) + - uid: OpenTK.Platform.IKeyboardComponent.SetImeRectangle(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) name: SetImeRectangle - href: OpenTK.Core.Platform.IKeyboardComponent.html#OpenTK_Core_Platform_IKeyboardComponent_SetImeRectangle_OpenTK_Core_Platform_WindowHandle_System_Int32_System_Int32_System_Int32_System_Int32_ + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_SetImeRectangle_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_System_Int32_System_Int32_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - uid: System.Int32 @@ -1504,32 +1432,32 @@ references: name.vb: Integer - uid: OpenTK.Platform.Native.X11.X11KeyboardComponent.EndIme* commentId: Overload:OpenTK.Platform.Native.X11.X11KeyboardComponent.EndIme - href: OpenTK.Platform.Native.X11.X11KeyboardComponent.html#OpenTK_Platform_Native_X11_X11KeyboardComponent_EndIme_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.Native.X11.X11KeyboardComponent.html#OpenTK_Platform_Native_X11_X11KeyboardComponent_EndIme_OpenTK_Platform_WindowHandle_ name: EndIme nameWithType: X11KeyboardComponent.EndIme fullName: OpenTK.Platform.Native.X11.X11KeyboardComponent.EndIme -- uid: OpenTK.Core.Platform.IKeyboardComponent.EndIme(OpenTK.Core.Platform.WindowHandle) - commentId: M:OpenTK.Core.Platform.IKeyboardComponent.EndIme(OpenTK.Core.Platform.WindowHandle) - parent: OpenTK.Core.Platform.IKeyboardComponent - href: OpenTK.Core.Platform.IKeyboardComponent.html#OpenTK_Core_Platform_IKeyboardComponent_EndIme_OpenTK_Core_Platform_WindowHandle_ +- uid: OpenTK.Platform.IKeyboardComponent.EndIme(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IKeyboardComponent.EndIme(OpenTK.Platform.WindowHandle) + parent: OpenTK.Platform.IKeyboardComponent + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_EndIme_OpenTK_Platform_WindowHandle_ name: EndIme(WindowHandle) nameWithType: IKeyboardComponent.EndIme(WindowHandle) - fullName: OpenTK.Core.Platform.IKeyboardComponent.EndIme(OpenTK.Core.Platform.WindowHandle) + fullName: OpenTK.Platform.IKeyboardComponent.EndIme(OpenTK.Platform.WindowHandle) spec.csharp: - - uid: OpenTK.Core.Platform.IKeyboardComponent.EndIme(OpenTK.Core.Platform.WindowHandle) + - uid: OpenTK.Platform.IKeyboardComponent.EndIme(OpenTK.Platform.WindowHandle) name: EndIme - href: OpenTK.Core.Platform.IKeyboardComponent.html#OpenTK_Core_Platform_IKeyboardComponent_EndIme_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_EndIme_OpenTK_Platform_WindowHandle_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IKeyboardComponent.EndIme(OpenTK.Core.Platform.WindowHandle) + - uid: OpenTK.Platform.IKeyboardComponent.EndIme(OpenTK.Platform.WindowHandle) name: EndIme - href: OpenTK.Core.Platform.IKeyboardComponent.html#OpenTK_Core_Platform_IKeyboardComponent_EndIme_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_EndIme_OpenTK_Platform_WindowHandle_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ) diff --git a/api/OpenTK.Platform.Native.X11.X11MouseComponent.yml b/api/OpenTK.Platform.Native.X11.X11MouseComponent.yml index 82476fb8..7b4a94a7 100644 --- a/api/OpenTK.Platform.Native.X11.X11MouseComponent.yml +++ b/api/OpenTK.Platform.Native.X11.X11MouseComponent.yml @@ -6,13 +6,16 @@ items: parent: OpenTK.Platform.Native.X11 children: - OpenTK.Platform.Native.X11.X11MouseComponent.CanSetMousePosition - - OpenTK.Platform.Native.X11.X11MouseComponent.GetMouseState(OpenTK.Core.Platform.MouseState@) + - OpenTK.Platform.Native.X11.X11MouseComponent.EnableRawMouseMotion(OpenTK.Platform.WindowHandle,System.Boolean) + - OpenTK.Platform.Native.X11.X11MouseComponent.GetMouseState(OpenTK.Platform.MouseState@) - OpenTK.Platform.Native.X11.X11MouseComponent.GetPosition(System.Int32@,System.Int32@) - - OpenTK.Platform.Native.X11.X11MouseComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + - OpenTK.Platform.Native.X11.X11MouseComponent.Initialize(OpenTK.Platform.ToolkitOptions) + - OpenTK.Platform.Native.X11.X11MouseComponent.IsRawMouseMotionEnabled(OpenTK.Platform.WindowHandle) - OpenTK.Platform.Native.X11.X11MouseComponent.Logger - OpenTK.Platform.Native.X11.X11MouseComponent.Name - OpenTK.Platform.Native.X11.X11MouseComponent.Provides - OpenTK.Platform.Native.X11.X11MouseComponent.SetPosition(System.Int32,System.Int32) + - OpenTK.Platform.Native.X11.X11MouseComponent.SupportsRawMouseMotion langs: - csharp - vb @@ -21,15 +24,11 @@ items: fullName: OpenTK.Platform.Native.X11.X11MouseComponent type: Class source: - remote: - path: src/OpenTK.Platform.Native/X11/X11MouseComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: X11MouseComponent - path: opentk/src/OpenTK.Platform.Native/X11/X11MouseComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11MouseComponent.cs startLine: 12 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 syntax: content: 'public class X11MouseComponent : IMouseComponent, IPalComponent' @@ -37,8 +36,8 @@ items: inheritance: - System.Object implements: - - OpenTK.Core.Platform.IMouseComponent - - OpenTK.Core.Platform.IPalComponent + - OpenTK.Platform.IMouseComponent + - OpenTK.Platform.IPalComponent inheritedMembers: - System.Object.Equals(System.Object) - System.Object.Equals(System.Object,System.Object) @@ -59,15 +58,11 @@ items: fullName: OpenTK.Platform.Native.X11.X11MouseComponent.Name type: Property source: - remote: - path: src/OpenTK.Platform.Native/X11/X11MouseComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Name - path: opentk/src/OpenTK.Platform.Native/X11/X11MouseComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11MouseComponent.cs startLine: 15 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: Name of the abstraction layer component. example: [] @@ -79,7 +74,7 @@ items: content.vb: Public ReadOnly Property Name As String overload: OpenTK.Platform.Native.X11.X11MouseComponent.Name* implements: - - OpenTK.Core.Platform.IPalComponent.Name + - OpenTK.Platform.IPalComponent.Name - uid: OpenTK.Platform.Native.X11.X11MouseComponent.Provides commentId: P:OpenTK.Platform.Native.X11.X11MouseComponent.Provides id: Provides @@ -92,15 +87,11 @@ items: fullName: OpenTK.Platform.Native.X11.X11MouseComponent.Provides type: Property source: - remote: - path: src/OpenTK.Platform.Native/X11/X11MouseComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Provides - path: opentk/src/OpenTK.Platform.Native/X11/X11MouseComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11MouseComponent.cs startLine: 18 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: Specifies which PAL components this object provides. example: [] @@ -108,11 +99,11 @@ items: content: public PalComponents Provides { get; } parameters: [] return: - type: OpenTK.Core.Platform.PalComponents + type: OpenTK.Platform.PalComponents content.vb: Public ReadOnly Property Provides As PalComponents overload: OpenTK.Platform.Native.X11.X11MouseComponent.Provides* implements: - - OpenTK.Core.Platform.IPalComponent.Provides + - OpenTK.Platform.IPalComponent.Provides - uid: OpenTK.Platform.Native.X11.X11MouseComponent.Logger commentId: P:OpenTK.Platform.Native.X11.X11MouseComponent.Logger id: Logger @@ -125,15 +116,11 @@ items: fullName: OpenTK.Platform.Native.X11.X11MouseComponent.Logger type: Property source: - remote: - path: src/OpenTK.Platform.Native/X11/X11MouseComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Logger - path: opentk/src/OpenTK.Platform.Native/X11/X11MouseComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11MouseComponent.cs startLine: 21 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: Provides a logger for this component. example: [] @@ -145,28 +132,24 @@ items: content.vb: Public Property Logger As ILogger overload: OpenTK.Platform.Native.X11.X11MouseComponent.Logger* implements: - - OpenTK.Core.Platform.IPalComponent.Logger -- uid: OpenTK.Platform.Native.X11.X11MouseComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - commentId: M:OpenTK.Platform.Native.X11.X11MouseComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - id: Initialize(OpenTK.Core.Platform.ToolkitOptions) + - OpenTK.Platform.IPalComponent.Logger +- uid: OpenTK.Platform.Native.X11.X11MouseComponent.Initialize(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Native.X11.X11MouseComponent.Initialize(OpenTK.Platform.ToolkitOptions) + id: Initialize(OpenTK.Platform.ToolkitOptions) parent: OpenTK.Platform.Native.X11.X11MouseComponent langs: - csharp - vb name: Initialize(ToolkitOptions) nameWithType: X11MouseComponent.Initialize(ToolkitOptions) - fullName: OpenTK.Platform.Native.X11.X11MouseComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + fullName: OpenTK.Platform.Native.X11.X11MouseComponent.Initialize(OpenTK.Platform.ToolkitOptions) type: Method source: - remote: - path: src/OpenTK.Platform.Native/X11/X11MouseComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Initialize - path: opentk/src/OpenTK.Platform.Native/X11/X11MouseComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11MouseComponent.cs startLine: 24 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: Initialize the component. example: [] @@ -174,12 +157,12 @@ items: content: public void Initialize(ToolkitOptions options) parameters: - id: options - type: OpenTK.Core.Platform.ToolkitOptions + type: OpenTK.Platform.ToolkitOptions description: The options to initialize the component with. content.vb: Public Sub Initialize(options As ToolkitOptions) overload: OpenTK.Platform.Native.X11.X11MouseComponent.Initialize* implements: - - OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + - OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) - uid: OpenTK.Platform.Native.X11.X11MouseComponent.CanSetMousePosition commentId: P:OpenTK.Platform.Native.X11.X11MouseComponent.CanSetMousePosition id: CanSetMousePosition @@ -192,17 +175,13 @@ items: fullName: OpenTK.Platform.Native.X11.X11MouseComponent.CanSetMousePosition type: Property source: - remote: - path: src/OpenTK.Platform.Native/X11/X11MouseComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CanSetMousePosition - path: opentk/src/OpenTK.Platform.Native/X11/X11MouseComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11MouseComponent.cs startLine: 29 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 - summary: If it's possible to set the position of the mouse. + summary: If it's possible to set the position of the mouse using . example: [] syntax: content: public bool CanSetMousePosition { get; } @@ -211,8 +190,48 @@ items: type: System.Boolean content.vb: Public ReadOnly Property CanSetMousePosition As Boolean overload: OpenTK.Platform.Native.X11.X11MouseComponent.CanSetMousePosition* + seealso: + - linkId: OpenTK.Platform.IMouseComponent.SetPosition(System.Int32,System.Int32) + commentId: M:OpenTK.Platform.IMouseComponent.SetPosition(System.Int32,System.Int32) implements: - - OpenTK.Core.Platform.IMouseComponent.CanSetMousePosition + - OpenTK.Platform.IMouseComponent.CanSetMousePosition +- uid: OpenTK.Platform.Native.X11.X11MouseComponent.SupportsRawMouseMotion + commentId: P:OpenTK.Platform.Native.X11.X11MouseComponent.SupportsRawMouseMotion + id: SupportsRawMouseMotion + parent: OpenTK.Platform.Native.X11.X11MouseComponent + langs: + - csharp + - vb + name: SupportsRawMouseMotion + nameWithType: X11MouseComponent.SupportsRawMouseMotion + fullName: OpenTK.Platform.Native.X11.X11MouseComponent.SupportsRawMouseMotion + type: Property + source: + id: SupportsRawMouseMotion + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11MouseComponent.cs + startLine: 32 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform.Native.X11 + summary: >- + If raw mouse motion is supported on this platform. + + If this is false and should not be used. + example: [] + syntax: + content: public bool SupportsRawMouseMotion { get; } + parameters: [] + return: + type: System.Boolean + content.vb: Public ReadOnly Property SupportsRawMouseMotion As Boolean + overload: OpenTK.Platform.Native.X11.X11MouseComponent.SupportsRawMouseMotion* + seealso: + - linkId: OpenTK.Platform.IMouseComponent.IsRawMouseMotionEnabled(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IMouseComponent.IsRawMouseMotionEnabled(OpenTK.Platform.WindowHandle) + - linkId: OpenTK.Platform.IMouseComponent.EnableRawMouseMotion(OpenTK.Platform.WindowHandle,System.Boolean) + commentId: M:OpenTK.Platform.IMouseComponent.EnableRawMouseMotion(OpenTK.Platform.WindowHandle,System.Boolean) + implements: + - OpenTK.Platform.IMouseComponent.SupportsRawMouseMotion - uid: OpenTK.Platform.Native.X11.X11MouseComponent.GetPosition(System.Int32@,System.Int32@) commentId: M:OpenTK.Platform.Native.X11.X11MouseComponent.GetPosition(System.Int32@,System.Int32@) id: GetPosition(System.Int32@,System.Int32@) @@ -225,15 +244,11 @@ items: fullName: OpenTK.Platform.Native.X11.X11MouseComponent.GetPosition(out int, out int) type: Method source: - remote: - path: src/OpenTK.Platform.Native/X11/X11MouseComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetPosition - path: opentk/src/OpenTK.Platform.Native/X11/X11MouseComponent.cs - startLine: 32 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11MouseComponent.cs + startLine: 35 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: Get the mouse cursor position. example: [] @@ -249,7 +264,7 @@ items: content.vb: Public Sub GetPosition(x As Integer, y As Integer) overload: OpenTK.Platform.Native.X11.X11MouseComponent.GetPosition* implements: - - OpenTK.Core.Platform.IMouseComponent.GetPosition(System.Int32@,System.Int32@) + - OpenTK.Platform.IMouseComponent.GetPosition(System.Int32@,System.Int32@) nameWithType.vb: X11MouseComponent.GetPosition(Integer, Integer) fullName.vb: OpenTK.Platform.Native.X11.X11MouseComponent.GetPosition(Integer, Integer) name.vb: GetPosition(Integer, Integer) @@ -265,17 +280,16 @@ items: fullName: OpenTK.Platform.Native.X11.X11MouseComponent.SetPosition(int, int) type: Method source: - remote: - path: src/OpenTK.Platform.Native/X11/X11MouseComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetPosition - path: opentk/src/OpenTK.Platform.Native/X11/X11MouseComponent.cs - startLine: 41 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11MouseComponent.cs + startLine: 44 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 - summary: Set the mouse cursor position. + summary: >- + Set the mouse cursor position. + + Check that is true before using this. example: [] syntax: content: public void SetPosition(int x, int y) @@ -288,32 +302,31 @@ items: description: Y coordinate of the mouse in desktop space. content.vb: Public Sub SetPosition(x As Integer, y As Integer) overload: OpenTK.Platform.Native.X11.X11MouseComponent.SetPosition* + seealso: + - linkId: OpenTK.Platform.IMouseComponent.CanSetMousePosition + commentId: P:OpenTK.Platform.IMouseComponent.CanSetMousePosition implements: - - OpenTK.Core.Platform.IMouseComponent.SetPosition(System.Int32,System.Int32) + - OpenTK.Platform.IMouseComponent.SetPosition(System.Int32,System.Int32) nameWithType.vb: X11MouseComponent.SetPosition(Integer, Integer) fullName.vb: OpenTK.Platform.Native.X11.X11MouseComponent.SetPosition(Integer, Integer) name.vb: SetPosition(Integer, Integer) -- uid: OpenTK.Platform.Native.X11.X11MouseComponent.GetMouseState(OpenTK.Core.Platform.MouseState@) - commentId: M:OpenTK.Platform.Native.X11.X11MouseComponent.GetMouseState(OpenTK.Core.Platform.MouseState@) - id: GetMouseState(OpenTK.Core.Platform.MouseState@) +- uid: OpenTK.Platform.Native.X11.X11MouseComponent.GetMouseState(OpenTK.Platform.MouseState@) + commentId: M:OpenTK.Platform.Native.X11.X11MouseComponent.GetMouseState(OpenTK.Platform.MouseState@) + id: GetMouseState(OpenTK.Platform.MouseState@) parent: OpenTK.Platform.Native.X11.X11MouseComponent langs: - csharp - vb name: GetMouseState(out MouseState) nameWithType: X11MouseComponent.GetMouseState(out MouseState) - fullName: OpenTK.Platform.Native.X11.X11MouseComponent.GetMouseState(out OpenTK.Core.Platform.MouseState) + fullName: OpenTK.Platform.Native.X11.X11MouseComponent.GetMouseState(out OpenTK.Platform.MouseState) type: Method source: - remote: - path: src/OpenTK.Platform.Native/X11/X11MouseComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetMouseState - path: opentk/src/OpenTK.Platform.Native/X11/X11MouseComponent.cs - startLine: 74 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11MouseComponent.cs + startLine: 77 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: Fills the state struct with the current mouse state. example: [] @@ -321,15 +334,100 @@ items: content: public void GetMouseState(out MouseState state) parameters: - id: state - type: OpenTK.Core.Platform.MouseState + type: OpenTK.Platform.MouseState description: The current mouse state. content.vb: Public Sub GetMouseState(state As MouseState) overload: OpenTK.Platform.Native.X11.X11MouseComponent.GetMouseState* implements: - - OpenTK.Core.Platform.IMouseComponent.GetMouseState(OpenTK.Core.Platform.MouseState@) + - OpenTK.Platform.IMouseComponent.GetMouseState(OpenTK.Platform.MouseState@) nameWithType.vb: X11MouseComponent.GetMouseState(MouseState) - fullName.vb: OpenTK.Platform.Native.X11.X11MouseComponent.GetMouseState(OpenTK.Core.Platform.MouseState) + fullName.vb: OpenTK.Platform.Native.X11.X11MouseComponent.GetMouseState(OpenTK.Platform.MouseState) name.vb: GetMouseState(MouseState) +- uid: OpenTK.Platform.Native.X11.X11MouseComponent.IsRawMouseMotionEnabled(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.Native.X11.X11MouseComponent.IsRawMouseMotionEnabled(OpenTK.Platform.WindowHandle) + id: IsRawMouseMotionEnabled(OpenTK.Platform.WindowHandle) + parent: OpenTK.Platform.Native.X11.X11MouseComponent + langs: + - csharp + - vb + name: IsRawMouseMotionEnabled(WindowHandle) + nameWithType: X11MouseComponent.IsRawMouseMotionEnabled(WindowHandle) + fullName: OpenTK.Platform.Native.X11.X11MouseComponent.IsRawMouseMotionEnabled(OpenTK.Platform.WindowHandle) + type: Method + source: + id: IsRawMouseMotionEnabled + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11MouseComponent.cs + startLine: 87 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform.Native.X11 + summary: >- + Returns whether raw mouse motion is enabled for the given window or not. + + Check that is true before using this. + example: [] + syntax: + content: public bool IsRawMouseMotionEnabled(WindowHandle window) + parameters: + - id: window + type: OpenTK.Platform.WindowHandle + description: The window to query. + return: + type: System.Boolean + description: If raw mouse motion is enabled. + content.vb: Public Function IsRawMouseMotionEnabled(window As WindowHandle) As Boolean + overload: OpenTK.Platform.Native.X11.X11MouseComponent.IsRawMouseMotionEnabled* + seealso: + - linkId: OpenTK.Platform.IMouseComponent.SupportsRawMouseMotion + commentId: P:OpenTK.Platform.IMouseComponent.SupportsRawMouseMotion + implements: + - OpenTK.Platform.IMouseComponent.IsRawMouseMotionEnabled(OpenTK.Platform.WindowHandle) +- uid: OpenTK.Platform.Native.X11.X11MouseComponent.EnableRawMouseMotion(OpenTK.Platform.WindowHandle,System.Boolean) + commentId: M:OpenTK.Platform.Native.X11.X11MouseComponent.EnableRawMouseMotion(OpenTK.Platform.WindowHandle,System.Boolean) + id: EnableRawMouseMotion(OpenTK.Platform.WindowHandle,System.Boolean) + parent: OpenTK.Platform.Native.X11.X11MouseComponent + langs: + - csharp + - vb + name: EnableRawMouseMotion(WindowHandle, bool) + nameWithType: X11MouseComponent.EnableRawMouseMotion(WindowHandle, bool) + fullName: OpenTK.Platform.Native.X11.X11MouseComponent.EnableRawMouseMotion(OpenTK.Platform.WindowHandle, bool) + type: Method + source: + id: EnableRawMouseMotion + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11MouseComponent.cs + startLine: 93 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform.Native.X11 + summary: >- + Enables or disables raw mouse motion for a specific window. + + When raw mouse motion is enabled the window will receive events, + + in addition to the normal events. + + Check that is true before using this. + example: [] + syntax: + content: public void EnableRawMouseMotion(WindowHandle window, bool enable) + parameters: + - id: window + type: OpenTK.Platform.WindowHandle + description: The window to enable or disable raw mouse motion for. + - id: enable + type: System.Boolean + description: Whether to enable or disable raw mouse motion. + content.vb: Public Sub EnableRawMouseMotion(window As WindowHandle, enable As Boolean) + overload: OpenTK.Platform.Native.X11.X11MouseComponent.EnableRawMouseMotion* + seealso: + - linkId: OpenTK.Platform.IMouseComponent.SupportsRawMouseMotion + commentId: P:OpenTK.Platform.IMouseComponent.SupportsRawMouseMotion + implements: + - OpenTK.Platform.IMouseComponent.EnableRawMouseMotion(OpenTK.Platform.WindowHandle,System.Boolean) + nameWithType.vb: X11MouseComponent.EnableRawMouseMotion(WindowHandle, Boolean) + fullName.vb: OpenTK.Platform.Native.X11.X11MouseComponent.EnableRawMouseMotion(OpenTK.Platform.WindowHandle, Boolean) + name.vb: EnableRawMouseMotion(WindowHandle, Boolean) references: - uid: OpenTK.Platform.Native.X11 commentId: N:OpenTK.Platform.Native.X11 @@ -380,20 +478,20 @@ references: nameWithType.vb: Object fullName.vb: Object name.vb: Object -- uid: OpenTK.Core.Platform.IMouseComponent - commentId: T:OpenTK.Core.Platform.IMouseComponent - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.IMouseComponent.html +- uid: OpenTK.Platform.IMouseComponent + commentId: T:OpenTK.Platform.IMouseComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IMouseComponent.html name: IMouseComponent nameWithType: IMouseComponent - fullName: OpenTK.Core.Platform.IMouseComponent -- uid: OpenTK.Core.Platform.IPalComponent - commentId: T:OpenTK.Core.Platform.IPalComponent - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.IPalComponent.html + fullName: OpenTK.Platform.IMouseComponent +- uid: OpenTK.Platform.IPalComponent + commentId: T:OpenTK.Platform.IPalComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IPalComponent.html name: IPalComponent nameWithType: IPalComponent - fullName: OpenTK.Core.Platform.IPalComponent + fullName: OpenTK.Platform.IPalComponent - uid: System.Object.Equals(System.Object) commentId: M:System.Object.Equals(System.Object) parent: System.Object @@ -620,49 +718,41 @@ references: name: System nameWithType: System fullName: System -- uid: OpenTK.Core.Platform - commentId: N:OpenTK.Core.Platform +- uid: OpenTK.Platform + commentId: N:OpenTK.Platform href: OpenTK.html - name: OpenTK.Core.Platform - nameWithType: OpenTK.Core.Platform - fullName: OpenTK.Core.Platform + name: OpenTK.Platform + nameWithType: OpenTK.Platform + fullName: OpenTK.Platform spec.csharp: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html spec.vb: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html - uid: OpenTK.Platform.Native.X11.X11MouseComponent.Name* commentId: Overload:OpenTK.Platform.Native.X11.X11MouseComponent.Name href: OpenTK.Platform.Native.X11.X11MouseComponent.html#OpenTK_Platform_Native_X11_X11MouseComponent_Name name: Name nameWithType: X11MouseComponent.Name fullName: OpenTK.Platform.Native.X11.X11MouseComponent.Name -- uid: OpenTK.Core.Platform.IPalComponent.Name - commentId: P:OpenTK.Core.Platform.IPalComponent.Name - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Name +- uid: OpenTK.Platform.IPalComponent.Name + commentId: P:OpenTK.Platform.IPalComponent.Name + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Name name: Name nameWithType: IPalComponent.Name - fullName: OpenTK.Core.Platform.IPalComponent.Name + fullName: OpenTK.Platform.IPalComponent.Name - uid: System.String commentId: T:System.String parent: System @@ -680,33 +770,33 @@ references: name: Provides nameWithType: X11MouseComponent.Provides fullName: OpenTK.Platform.Native.X11.X11MouseComponent.Provides -- uid: OpenTK.Core.Platform.IPalComponent.Provides - commentId: P:OpenTK.Core.Platform.IPalComponent.Provides - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Provides +- uid: OpenTK.Platform.IPalComponent.Provides + commentId: P:OpenTK.Platform.IPalComponent.Provides + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Provides name: Provides nameWithType: IPalComponent.Provides - fullName: OpenTK.Core.Platform.IPalComponent.Provides -- uid: OpenTK.Core.Platform.PalComponents - commentId: T:OpenTK.Core.Platform.PalComponents - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.PalComponents.html + fullName: OpenTK.Platform.IPalComponent.Provides +- uid: OpenTK.Platform.PalComponents + commentId: T:OpenTK.Platform.PalComponents + parent: OpenTK.Platform + href: OpenTK.Platform.PalComponents.html name: PalComponents nameWithType: PalComponents - fullName: OpenTK.Core.Platform.PalComponents + fullName: OpenTK.Platform.PalComponents - uid: OpenTK.Platform.Native.X11.X11MouseComponent.Logger* commentId: Overload:OpenTK.Platform.Native.X11.X11MouseComponent.Logger href: OpenTK.Platform.Native.X11.X11MouseComponent.html#OpenTK_Platform_Native_X11_X11MouseComponent_Logger name: Logger nameWithType: X11MouseComponent.Logger fullName: OpenTK.Platform.Native.X11.X11MouseComponent.Logger -- uid: OpenTK.Core.Platform.IPalComponent.Logger - commentId: P:OpenTK.Core.Platform.IPalComponent.Logger - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Logger +- uid: OpenTK.Platform.IPalComponent.Logger + commentId: P:OpenTK.Platform.IPalComponent.Logger + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Logger name: Logger nameWithType: IPalComponent.Logger - fullName: OpenTK.Core.Platform.IPalComponent.Logger + fullName: OpenTK.Platform.IPalComponent.Logger - uid: OpenTK.Core.Utility.ILogger commentId: T:OpenTK.Core.Utility.ILogger parent: OpenTK.Core.Utility @@ -746,55 +836,98 @@ references: href: OpenTK.Core.Utility.html - uid: OpenTK.Platform.Native.X11.X11MouseComponent.Initialize* commentId: Overload:OpenTK.Platform.Native.X11.X11MouseComponent.Initialize - href: OpenTK.Platform.Native.X11.X11MouseComponent.html#OpenTK_Platform_Native_X11_X11MouseComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + href: OpenTK.Platform.Native.X11.X11MouseComponent.html#OpenTK_Platform_Native_X11_X11MouseComponent_Initialize_OpenTK_Platform_ToolkitOptions_ name: Initialize nameWithType: X11MouseComponent.Initialize fullName: OpenTK.Platform.Native.X11.X11MouseComponent.Initialize -- uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - commentId: M:OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ +- uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ name: Initialize(ToolkitOptions) nameWithType: IPalComponent.Initialize(ToolkitOptions) - fullName: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + fullName: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) spec.csharp: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + - uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.ToolkitOptions + - uid: OpenTK.Platform.ToolkitOptions name: ToolkitOptions - href: OpenTK.Core.Platform.ToolkitOptions.html + href: OpenTK.Platform.ToolkitOptions.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + - uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.ToolkitOptions + - uid: OpenTK.Platform.ToolkitOptions name: ToolkitOptions - href: OpenTK.Core.Platform.ToolkitOptions.html + href: OpenTK.Platform.ToolkitOptions.html - name: ) -- uid: OpenTK.Core.Platform.ToolkitOptions - commentId: T:OpenTK.Core.Platform.ToolkitOptions - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.ToolkitOptions.html +- uid: OpenTK.Platform.ToolkitOptions + commentId: T:OpenTK.Platform.ToolkitOptions + parent: OpenTK.Platform + href: OpenTK.Platform.ToolkitOptions.html name: ToolkitOptions nameWithType: ToolkitOptions - fullName: OpenTK.Core.Platform.ToolkitOptions + fullName: OpenTK.Platform.ToolkitOptions +- uid: OpenTK.Platform.IMouseComponent.SetPosition(System.Int32,System.Int32) + commentId: M:OpenTK.Platform.IMouseComponent.SetPosition(System.Int32,System.Int32) + parent: OpenTK.Platform.IMouseComponent + isExternal: true + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_SetPosition_System_Int32_System_Int32_ + name: SetPosition(int, int) + nameWithType: IMouseComponent.SetPosition(int, int) + fullName: OpenTK.Platform.IMouseComponent.SetPosition(int, int) + nameWithType.vb: IMouseComponent.SetPosition(Integer, Integer) + fullName.vb: OpenTK.Platform.IMouseComponent.SetPosition(Integer, Integer) + name.vb: SetPosition(Integer, Integer) + spec.csharp: + - uid: OpenTK.Platform.IMouseComponent.SetPosition(System.Int32,System.Int32) + name: SetPosition + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_SetPosition_System_Int32_System_Int32_ + - name: ( + - uid: System.Int32 + name: int + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ',' + - name: " " + - uid: System.Int32 + name: int + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ) + spec.vb: + - uid: OpenTK.Platform.IMouseComponent.SetPosition(System.Int32,System.Int32) + name: SetPosition + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_SetPosition_System_Int32_System_Int32_ + - name: ( + - uid: System.Int32 + name: Integer + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ',' + - name: " " + - uid: System.Int32 + name: Integer + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ) - uid: OpenTK.Platform.Native.X11.X11MouseComponent.CanSetMousePosition* commentId: Overload:OpenTK.Platform.Native.X11.X11MouseComponent.CanSetMousePosition href: OpenTK.Platform.Native.X11.X11MouseComponent.html#OpenTK_Platform_Native_X11_X11MouseComponent_CanSetMousePosition name: CanSetMousePosition nameWithType: X11MouseComponent.CanSetMousePosition fullName: OpenTK.Platform.Native.X11.X11MouseComponent.CanSetMousePosition -- uid: OpenTK.Core.Platform.IMouseComponent.CanSetMousePosition - commentId: P:OpenTK.Core.Platform.IMouseComponent.CanSetMousePosition - parent: OpenTK.Core.Platform.IMouseComponent - href: OpenTK.Core.Platform.IMouseComponent.html#OpenTK_Core_Platform_IMouseComponent_CanSetMousePosition +- uid: OpenTK.Platform.IMouseComponent.CanSetMousePosition + commentId: P:OpenTK.Platform.IMouseComponent.CanSetMousePosition + parent: OpenTK.Platform.IMouseComponent + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_CanSetMousePosition name: CanSetMousePosition nameWithType: IMouseComponent.CanSetMousePosition - fullName: OpenTK.Core.Platform.IMouseComponent.CanSetMousePosition + fullName: OpenTK.Platform.IMouseComponent.CanSetMousePosition - uid: System.Boolean commentId: T:System.Boolean parent: System @@ -806,27 +939,106 @@ references: nameWithType.vb: Boolean fullName.vb: Boolean name.vb: Boolean +- uid: OpenTK.Platform.IMouseComponent.IsRawMouseMotionEnabled(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IMouseComponent.IsRawMouseMotionEnabled(OpenTK.Platform.WindowHandle) + parent: OpenTK.Platform.IMouseComponent + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_IsRawMouseMotionEnabled_OpenTK_Platform_WindowHandle_ + name: IsRawMouseMotionEnabled(WindowHandle) + nameWithType: IMouseComponent.IsRawMouseMotionEnabled(WindowHandle) + fullName: OpenTK.Platform.IMouseComponent.IsRawMouseMotionEnabled(OpenTK.Platform.WindowHandle) + spec.csharp: + - uid: OpenTK.Platform.IMouseComponent.IsRawMouseMotionEnabled(OpenTK.Platform.WindowHandle) + name: IsRawMouseMotionEnabled + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_IsRawMouseMotionEnabled_OpenTK_Platform_WindowHandle_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IMouseComponent.IsRawMouseMotionEnabled(OpenTK.Platform.WindowHandle) + name: IsRawMouseMotionEnabled + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_IsRawMouseMotionEnabled_OpenTK_Platform_WindowHandle_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ) +- uid: OpenTK.Platform.IMouseComponent.EnableRawMouseMotion(OpenTK.Platform.WindowHandle,System.Boolean) + commentId: M:OpenTK.Platform.IMouseComponent.EnableRawMouseMotion(OpenTK.Platform.WindowHandle,System.Boolean) + parent: OpenTK.Platform.IMouseComponent + isExternal: true + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_EnableRawMouseMotion_OpenTK_Platform_WindowHandle_System_Boolean_ + name: EnableRawMouseMotion(WindowHandle, bool) + nameWithType: IMouseComponent.EnableRawMouseMotion(WindowHandle, bool) + fullName: OpenTK.Platform.IMouseComponent.EnableRawMouseMotion(OpenTK.Platform.WindowHandle, bool) + nameWithType.vb: IMouseComponent.EnableRawMouseMotion(WindowHandle, Boolean) + fullName.vb: OpenTK.Platform.IMouseComponent.EnableRawMouseMotion(OpenTK.Platform.WindowHandle, Boolean) + name.vb: EnableRawMouseMotion(WindowHandle, Boolean) + spec.csharp: + - uid: OpenTK.Platform.IMouseComponent.EnableRawMouseMotion(OpenTK.Platform.WindowHandle,System.Boolean) + name: EnableRawMouseMotion + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_EnableRawMouseMotion_OpenTK_Platform_WindowHandle_System_Boolean_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: System.Boolean + name: bool + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: ) + spec.vb: + - uid: OpenTK.Platform.IMouseComponent.EnableRawMouseMotion(OpenTK.Platform.WindowHandle,System.Boolean) + name: EnableRawMouseMotion + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_EnableRawMouseMotion_OpenTK_Platform_WindowHandle_System_Boolean_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: System.Boolean + name: Boolean + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: ) +- uid: OpenTK.Platform.Native.X11.X11MouseComponent.SupportsRawMouseMotion* + commentId: Overload:OpenTK.Platform.Native.X11.X11MouseComponent.SupportsRawMouseMotion + href: OpenTK.Platform.Native.X11.X11MouseComponent.html#OpenTK_Platform_Native_X11_X11MouseComponent_SupportsRawMouseMotion + name: SupportsRawMouseMotion + nameWithType: X11MouseComponent.SupportsRawMouseMotion + fullName: OpenTK.Platform.Native.X11.X11MouseComponent.SupportsRawMouseMotion +- uid: OpenTK.Platform.IMouseComponent.SupportsRawMouseMotion + commentId: P:OpenTK.Platform.IMouseComponent.SupportsRawMouseMotion + parent: OpenTK.Platform.IMouseComponent + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_SupportsRawMouseMotion + name: SupportsRawMouseMotion + nameWithType: IMouseComponent.SupportsRawMouseMotion + fullName: OpenTK.Platform.IMouseComponent.SupportsRawMouseMotion - uid: OpenTK.Platform.Native.X11.X11MouseComponent.GetPosition* commentId: Overload:OpenTK.Platform.Native.X11.X11MouseComponent.GetPosition href: OpenTK.Platform.Native.X11.X11MouseComponent.html#OpenTK_Platform_Native_X11_X11MouseComponent_GetPosition_System_Int32__System_Int32__ name: GetPosition nameWithType: X11MouseComponent.GetPosition fullName: OpenTK.Platform.Native.X11.X11MouseComponent.GetPosition -- uid: OpenTK.Core.Platform.IMouseComponent.GetPosition(System.Int32@,System.Int32@) - commentId: M:OpenTK.Core.Platform.IMouseComponent.GetPosition(System.Int32@,System.Int32@) - parent: OpenTK.Core.Platform.IMouseComponent +- uid: OpenTK.Platform.IMouseComponent.GetPosition(System.Int32@,System.Int32@) + commentId: M:OpenTK.Platform.IMouseComponent.GetPosition(System.Int32@,System.Int32@) + parent: OpenTK.Platform.IMouseComponent isExternal: true - href: OpenTK.Core.Platform.IMouseComponent.html#OpenTK_Core_Platform_IMouseComponent_GetPosition_System_Int32__System_Int32__ + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_GetPosition_System_Int32__System_Int32__ name: GetPosition(out int, out int) nameWithType: IMouseComponent.GetPosition(out int, out int) - fullName: OpenTK.Core.Platform.IMouseComponent.GetPosition(out int, out int) + fullName: OpenTK.Platform.IMouseComponent.GetPosition(out int, out int) nameWithType.vb: IMouseComponent.GetPosition(Integer, Integer) - fullName.vb: OpenTK.Core.Platform.IMouseComponent.GetPosition(Integer, Integer) + fullName.vb: OpenTK.Platform.IMouseComponent.GetPosition(Integer, Integer) name.vb: GetPosition(Integer, Integer) spec.csharp: - - uid: OpenTK.Core.Platform.IMouseComponent.GetPosition(System.Int32@,System.Int32@) + - uid: OpenTK.Platform.IMouseComponent.GetPosition(System.Int32@,System.Int32@) name: GetPosition - href: OpenTK.Core.Platform.IMouseComponent.html#OpenTK_Core_Platform_IMouseComponent_GetPosition_System_Int32__System_Int32__ + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_GetPosition_System_Int32__System_Int32__ - name: ( - name: out - name: " " @@ -844,9 +1056,9 @@ references: href: https://learn.microsoft.com/dotnet/api/system.int32 - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IMouseComponent.GetPosition(System.Int32@,System.Int32@) + - uid: OpenTK.Platform.IMouseComponent.GetPosition(System.Int32@,System.Int32@) name: GetPosition - href: OpenTK.Core.Platform.IMouseComponent.html#OpenTK_Core_Platform_IMouseComponent_GetPosition_System_Int32__System_Int32__ + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_GetPosition_System_Int32__System_Int32__ - name: ( - uid: System.Int32 name: Integer @@ -876,89 +1088,77 @@ references: name: SetPosition nameWithType: X11MouseComponent.SetPosition fullName: OpenTK.Platform.Native.X11.X11MouseComponent.SetPosition -- uid: OpenTK.Core.Platform.IMouseComponent.SetPosition(System.Int32,System.Int32) - commentId: M:OpenTK.Core.Platform.IMouseComponent.SetPosition(System.Int32,System.Int32) - parent: OpenTK.Core.Platform.IMouseComponent - isExternal: true - href: OpenTK.Core.Platform.IMouseComponent.html#OpenTK_Core_Platform_IMouseComponent_SetPosition_System_Int32_System_Int32_ - name: SetPosition(int, int) - nameWithType: IMouseComponent.SetPosition(int, int) - fullName: OpenTK.Core.Platform.IMouseComponent.SetPosition(int, int) - nameWithType.vb: IMouseComponent.SetPosition(Integer, Integer) - fullName.vb: OpenTK.Core.Platform.IMouseComponent.SetPosition(Integer, Integer) - name.vb: SetPosition(Integer, Integer) - spec.csharp: - - uid: OpenTK.Core.Platform.IMouseComponent.SetPosition(System.Int32,System.Int32) - name: SetPosition - href: OpenTK.Core.Platform.IMouseComponent.html#OpenTK_Core_Platform_IMouseComponent_SetPosition_System_Int32_System_Int32_ - - name: ( - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) - spec.vb: - - uid: OpenTK.Core.Platform.IMouseComponent.SetPosition(System.Int32,System.Int32) - name: SetPosition - href: OpenTK.Core.Platform.IMouseComponent.html#OpenTK_Core_Platform_IMouseComponent_SetPosition_System_Int32_System_Int32_ - - name: ( - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) - uid: OpenTK.Platform.Native.X11.X11MouseComponent.GetMouseState* commentId: Overload:OpenTK.Platform.Native.X11.X11MouseComponent.GetMouseState - href: OpenTK.Platform.Native.X11.X11MouseComponent.html#OpenTK_Platform_Native_X11_X11MouseComponent_GetMouseState_OpenTK_Core_Platform_MouseState__ + href: OpenTK.Platform.Native.X11.X11MouseComponent.html#OpenTK_Platform_Native_X11_X11MouseComponent_GetMouseState_OpenTK_Platform_MouseState__ name: GetMouseState nameWithType: X11MouseComponent.GetMouseState fullName: OpenTK.Platform.Native.X11.X11MouseComponent.GetMouseState -- uid: OpenTK.Core.Platform.IMouseComponent.GetMouseState(OpenTK.Core.Platform.MouseState@) - commentId: M:OpenTK.Core.Platform.IMouseComponent.GetMouseState(OpenTK.Core.Platform.MouseState@) - parent: OpenTK.Core.Platform.IMouseComponent - href: OpenTK.Core.Platform.IMouseComponent.html#OpenTK_Core_Platform_IMouseComponent_GetMouseState_OpenTK_Core_Platform_MouseState__ +- uid: OpenTK.Platform.IMouseComponent.GetMouseState(OpenTK.Platform.MouseState@) + commentId: M:OpenTK.Platform.IMouseComponent.GetMouseState(OpenTK.Platform.MouseState@) + parent: OpenTK.Platform.IMouseComponent + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_GetMouseState_OpenTK_Platform_MouseState__ name: GetMouseState(out MouseState) nameWithType: IMouseComponent.GetMouseState(out MouseState) - fullName: OpenTK.Core.Platform.IMouseComponent.GetMouseState(out OpenTK.Core.Platform.MouseState) + fullName: OpenTK.Platform.IMouseComponent.GetMouseState(out OpenTK.Platform.MouseState) nameWithType.vb: IMouseComponent.GetMouseState(MouseState) - fullName.vb: OpenTK.Core.Platform.IMouseComponent.GetMouseState(OpenTK.Core.Platform.MouseState) + fullName.vb: OpenTK.Platform.IMouseComponent.GetMouseState(OpenTK.Platform.MouseState) name.vb: GetMouseState(MouseState) spec.csharp: - - uid: OpenTK.Core.Platform.IMouseComponent.GetMouseState(OpenTK.Core.Platform.MouseState@) + - uid: OpenTK.Platform.IMouseComponent.GetMouseState(OpenTK.Platform.MouseState@) name: GetMouseState - href: OpenTK.Core.Platform.IMouseComponent.html#OpenTK_Core_Platform_IMouseComponent_GetMouseState_OpenTK_Core_Platform_MouseState__ + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_GetMouseState_OpenTK_Platform_MouseState__ - name: ( - name: out - name: " " - - uid: OpenTK.Core.Platform.MouseState + - uid: OpenTK.Platform.MouseState name: MouseState - href: OpenTK.Core.Platform.MouseState.html + href: OpenTK.Platform.MouseState.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IMouseComponent.GetMouseState(OpenTK.Core.Platform.MouseState@) + - uid: OpenTK.Platform.IMouseComponent.GetMouseState(OpenTK.Platform.MouseState@) name: GetMouseState - href: OpenTK.Core.Platform.IMouseComponent.html#OpenTK_Core_Platform_IMouseComponent_GetMouseState_OpenTK_Core_Platform_MouseState__ + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_GetMouseState_OpenTK_Platform_MouseState__ - name: ( - - uid: OpenTK.Core.Platform.MouseState + - uid: OpenTK.Platform.MouseState name: MouseState - href: OpenTK.Core.Platform.MouseState.html + href: OpenTK.Platform.MouseState.html - name: ) -- uid: OpenTK.Core.Platform.MouseState - commentId: T:OpenTK.Core.Platform.MouseState - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.MouseState.html +- uid: OpenTK.Platform.MouseState + commentId: T:OpenTK.Platform.MouseState + parent: OpenTK.Platform + href: OpenTK.Platform.MouseState.html name: MouseState nameWithType: MouseState - fullName: OpenTK.Core.Platform.MouseState + fullName: OpenTK.Platform.MouseState +- uid: OpenTK.Platform.Native.X11.X11MouseComponent.IsRawMouseMotionEnabled* + commentId: Overload:OpenTK.Platform.Native.X11.X11MouseComponent.IsRawMouseMotionEnabled + href: OpenTK.Platform.Native.X11.X11MouseComponent.html#OpenTK_Platform_Native_X11_X11MouseComponent_IsRawMouseMotionEnabled_OpenTK_Platform_WindowHandle_ + name: IsRawMouseMotionEnabled + nameWithType: X11MouseComponent.IsRawMouseMotionEnabled + fullName: OpenTK.Platform.Native.X11.X11MouseComponent.IsRawMouseMotionEnabled +- uid: OpenTK.Platform.WindowHandle + commentId: T:OpenTK.Platform.WindowHandle + parent: OpenTK.Platform + href: OpenTK.Platform.WindowHandle.html + name: WindowHandle + nameWithType: WindowHandle + fullName: OpenTK.Platform.WindowHandle +- uid: OpenTK.Platform.RawMouseMoveEventArgs + commentId: T:OpenTK.Platform.RawMouseMoveEventArgs + href: OpenTK.Platform.RawMouseMoveEventArgs.html + name: RawMouseMoveEventArgs + nameWithType: RawMouseMoveEventArgs + fullName: OpenTK.Platform.RawMouseMoveEventArgs +- uid: OpenTK.Platform.MouseMoveEventArgs + commentId: T:OpenTK.Platform.MouseMoveEventArgs + href: OpenTK.Platform.MouseMoveEventArgs.html + name: MouseMoveEventArgs + nameWithType: MouseMoveEventArgs + fullName: OpenTK.Platform.MouseMoveEventArgs +- uid: OpenTK.Platform.Native.X11.X11MouseComponent.EnableRawMouseMotion* + commentId: Overload:OpenTK.Platform.Native.X11.X11MouseComponent.EnableRawMouseMotion + href: OpenTK.Platform.Native.X11.X11MouseComponent.html#OpenTK_Platform_Native_X11_X11MouseComponent_EnableRawMouseMotion_OpenTK_Platform_WindowHandle_System_Boolean_ + name: EnableRawMouseMotion + nameWithType: X11MouseComponent.EnableRawMouseMotion + fullName: OpenTK.Platform.Native.X11.X11MouseComponent.EnableRawMouseMotion diff --git a/api/OpenTK.Platform.Native.X11.X11OpenGLComponent.yml b/api/OpenTK.Platform.Native.X11.X11OpenGLComponent.yml index 13915eeb..56b3c427 100644 --- a/api/OpenTK.Platform.Native.X11.X11OpenGLComponent.yml +++ b/api/OpenTK.Platform.Native.X11.X11OpenGLComponent.yml @@ -9,8 +9,8 @@ items: - OpenTK.Platform.Native.X11.X11OpenGLComponent.CanCreateFromWindow - OpenTK.Platform.Native.X11.X11OpenGLComponent.CanShareContexts - OpenTK.Platform.Native.X11.X11OpenGLComponent.CreateFromSurface - - OpenTK.Platform.Native.X11.X11OpenGLComponent.CreateFromWindow(OpenTK.Core.Platform.WindowHandle) - - OpenTK.Platform.Native.X11.X11OpenGLComponent.DestroyContext(OpenTK.Core.Platform.OpenGLContextHandle) + - OpenTK.Platform.Native.X11.X11OpenGLComponent.CreateFromWindow(OpenTK.Platform.WindowHandle) + - OpenTK.Platform.Native.X11.X11OpenGLComponent.DestroyContext(OpenTK.Platform.OpenGLContextHandle) - OpenTK.Platform.Native.X11.X11OpenGLComponent.EXT_swap_control_GetMaxSwapInterval - OpenTK.Platform.Native.X11.X11OpenGLComponent.GLXClientExtensions - OpenTK.Platform.Native.X11.X11OpenGLComponent.GLXClientVendor @@ -20,20 +20,20 @@ items: - OpenTK.Platform.Native.X11.X11OpenGLComponent.GLXServerVendor - OpenTK.Platform.Native.X11.X11OpenGLComponent.GLXServerVersion - OpenTK.Platform.Native.X11.X11OpenGLComponent.GLXVersion - - OpenTK.Platform.Native.X11.X11OpenGLComponent.GetBindingsContext(OpenTK.Core.Platform.OpenGLContextHandle) + - OpenTK.Platform.Native.X11.X11OpenGLComponent.GetBindingsContext(OpenTK.Platform.OpenGLContextHandle) - OpenTK.Platform.Native.X11.X11OpenGLComponent.GetCurrentContext - - OpenTK.Platform.Native.X11.X11OpenGLComponent.GetGLXContext(OpenTK.Core.Platform.OpenGLContextHandle) - - OpenTK.Platform.Native.X11.X11OpenGLComponent.GetGLXWindow(OpenTK.Core.Platform.OpenGLContextHandle) - - OpenTK.Platform.Native.X11.X11OpenGLComponent.GetProcedureAddress(OpenTK.Core.Platform.OpenGLContextHandle,System.String) - - OpenTK.Platform.Native.X11.X11OpenGLComponent.GetSharedContext(OpenTK.Core.Platform.OpenGLContextHandle) + - OpenTK.Platform.Native.X11.X11OpenGLComponent.GetGLXContext(OpenTK.Platform.OpenGLContextHandle) + - OpenTK.Platform.Native.X11.X11OpenGLComponent.GetGLXWindow(OpenTK.Platform.OpenGLContextHandle) + - OpenTK.Platform.Native.X11.X11OpenGLComponent.GetProcedureAddress(OpenTK.Platform.OpenGLContextHandle,System.String) + - OpenTK.Platform.Native.X11.X11OpenGLComponent.GetSharedContext(OpenTK.Platform.OpenGLContextHandle) - OpenTK.Platform.Native.X11.X11OpenGLComponent.GetSwapInterval - - OpenTK.Platform.Native.X11.X11OpenGLComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + - OpenTK.Platform.Native.X11.X11OpenGLComponent.Initialize(OpenTK.Platform.ToolkitOptions) - OpenTK.Platform.Native.X11.X11OpenGLComponent.Logger - OpenTK.Platform.Native.X11.X11OpenGLComponent.Name - OpenTK.Platform.Native.X11.X11OpenGLComponent.Provides - - OpenTK.Platform.Native.X11.X11OpenGLComponent.SetCurrentContext(OpenTK.Core.Platform.OpenGLContextHandle) + - OpenTK.Platform.Native.X11.X11OpenGLComponent.SetCurrentContext(OpenTK.Platform.OpenGLContextHandle) - OpenTK.Platform.Native.X11.X11OpenGLComponent.SetSwapInterval(System.Int32) - - OpenTK.Platform.Native.X11.X11OpenGLComponent.SwapBuffers(OpenTK.Core.Platform.OpenGLContextHandle) + - OpenTK.Platform.Native.X11.X11OpenGLComponent.SwapBuffers(OpenTK.Platform.OpenGLContextHandle) langs: - csharp - vb @@ -42,15 +42,11 @@ items: fullName: OpenTK.Platform.Native.X11.X11OpenGLComponent type: Class source: - remote: - path: src/OpenTK.Platform.Native/X11/X11OpenGLComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: X11OpenGLComponent - path: opentk/src/OpenTK.Platform.Native/X11/X11OpenGLComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11OpenGLComponent.cs startLine: 12 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 syntax: content: 'public class X11OpenGLComponent : IOpenGLComponent, IPalComponent' @@ -58,8 +54,8 @@ items: inheritance: - System.Object implements: - - OpenTK.Core.Platform.IOpenGLComponent - - OpenTK.Core.Platform.IPalComponent + - OpenTK.Platform.IOpenGLComponent + - OpenTK.Platform.IPalComponent inheritedMembers: - System.Object.Equals(System.Object) - System.Object.Equals(System.Object,System.Object) @@ -80,15 +76,11 @@ items: fullName: OpenTK.Platform.Native.X11.X11OpenGLComponent.Name type: Property source: - remote: - path: src/OpenTK.Platform.Native/X11/X11OpenGLComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Name - path: opentk/src/OpenTK.Platform.Native/X11/X11OpenGLComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11OpenGLComponent.cs startLine: 15 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: Name of the abstraction layer component. example: [] @@ -100,7 +92,7 @@ items: content.vb: Public ReadOnly Property Name As String overload: OpenTK.Platform.Native.X11.X11OpenGLComponent.Name* implements: - - OpenTK.Core.Platform.IPalComponent.Name + - OpenTK.Platform.IPalComponent.Name - uid: OpenTK.Platform.Native.X11.X11OpenGLComponent.Provides commentId: P:OpenTK.Platform.Native.X11.X11OpenGLComponent.Provides id: Provides @@ -113,15 +105,11 @@ items: fullName: OpenTK.Platform.Native.X11.X11OpenGLComponent.Provides type: Property source: - remote: - path: src/OpenTK.Platform.Native/X11/X11OpenGLComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Provides - path: opentk/src/OpenTK.Platform.Native/X11/X11OpenGLComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11OpenGLComponent.cs startLine: 18 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: Specifies which PAL components this object provides. example: [] @@ -129,11 +117,11 @@ items: content: public PalComponents Provides { get; } parameters: [] return: - type: OpenTK.Core.Platform.PalComponents + type: OpenTK.Platform.PalComponents content.vb: Public ReadOnly Property Provides As PalComponents overload: OpenTK.Platform.Native.X11.X11OpenGLComponent.Provides* implements: - - OpenTK.Core.Platform.IPalComponent.Provides + - OpenTK.Platform.IPalComponent.Provides - uid: OpenTK.Platform.Native.X11.X11OpenGLComponent.Logger commentId: P:OpenTK.Platform.Native.X11.X11OpenGLComponent.Logger id: Logger @@ -146,15 +134,11 @@ items: fullName: OpenTK.Platform.Native.X11.X11OpenGLComponent.Logger type: Property source: - remote: - path: src/OpenTK.Platform.Native/X11/X11OpenGLComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Logger - path: opentk/src/OpenTK.Platform.Native/X11/X11OpenGLComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11OpenGLComponent.cs startLine: 21 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: Provides a logger for this component. example: [] @@ -166,28 +150,24 @@ items: content.vb: Public Property Logger As ILogger overload: OpenTK.Platform.Native.X11.X11OpenGLComponent.Logger* implements: - - OpenTK.Core.Platform.IPalComponent.Logger -- uid: OpenTK.Platform.Native.X11.X11OpenGLComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - commentId: M:OpenTK.Platform.Native.X11.X11OpenGLComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - id: Initialize(OpenTK.Core.Platform.ToolkitOptions) + - OpenTK.Platform.IPalComponent.Logger +- uid: OpenTK.Platform.Native.X11.X11OpenGLComponent.Initialize(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Native.X11.X11OpenGLComponent.Initialize(OpenTK.Platform.ToolkitOptions) + id: Initialize(OpenTK.Platform.ToolkitOptions) parent: OpenTK.Platform.Native.X11.X11OpenGLComponent langs: - csharp - vb name: Initialize(ToolkitOptions) nameWithType: X11OpenGLComponent.Initialize(ToolkitOptions) - fullName: OpenTK.Platform.Native.X11.X11OpenGLComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + fullName: OpenTK.Platform.Native.X11.X11OpenGLComponent.Initialize(OpenTK.Platform.ToolkitOptions) type: Method source: - remote: - path: src/OpenTK.Platform.Native/X11/X11OpenGLComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Initialize - path: opentk/src/OpenTK.Platform.Native/X11/X11OpenGLComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11OpenGLComponent.cs startLine: 24 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: Initialize the component. example: [] @@ -195,12 +175,12 @@ items: content: public void Initialize(ToolkitOptions options) parameters: - id: options - type: OpenTK.Core.Platform.ToolkitOptions + type: OpenTK.Platform.ToolkitOptions description: The options to initialize the component with. content.vb: Public Sub Initialize(options As ToolkitOptions) overload: OpenTK.Platform.Native.X11.X11OpenGLComponent.Initialize* implements: - - OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + - OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) - uid: OpenTK.Platform.Native.X11.X11OpenGLComponent.CanShareContexts commentId: P:OpenTK.Platform.Native.X11.X11OpenGLComponent.CanShareContexts id: CanShareContexts @@ -213,15 +193,11 @@ items: fullName: OpenTK.Platform.Native.X11.X11OpenGLComponent.CanShareContexts type: Property source: - remote: - path: src/OpenTK.Platform.Native/X11/X11OpenGLComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CanShareContexts - path: opentk/src/OpenTK.Platform.Native/X11/X11OpenGLComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11OpenGLComponent.cs startLine: 109 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: True if the component driver has the capability to share display lists between OpenGL contexts. example: [] @@ -233,7 +209,7 @@ items: content.vb: Public ReadOnly Property CanShareContexts As Boolean overload: OpenTK.Platform.Native.X11.X11OpenGLComponent.CanShareContexts* implements: - - OpenTK.Core.Platform.IOpenGLComponent.CanShareContexts + - OpenTK.Platform.IOpenGLComponent.CanShareContexts - uid: OpenTK.Platform.Native.X11.X11OpenGLComponent.CanCreateFromWindow commentId: P:OpenTK.Platform.Native.X11.X11OpenGLComponent.CanCreateFromWindow id: CanCreateFromWindow @@ -246,17 +222,13 @@ items: fullName: OpenTK.Platform.Native.X11.X11OpenGLComponent.CanCreateFromWindow type: Property source: - remote: - path: src/OpenTK.Platform.Native/X11/X11OpenGLComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CanCreateFromWindow - path: opentk/src/OpenTK.Platform.Native/X11/X11OpenGLComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11OpenGLComponent.cs startLine: 112 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 - summary: True if the component driver can create a context from windows. + summary: True if the component driver can create a context from windows using . example: [] syntax: content: public bool CanCreateFromWindow { get; } @@ -265,8 +237,11 @@ items: type: System.Boolean content.vb: Public ReadOnly Property CanCreateFromWindow As Boolean overload: OpenTK.Platform.Native.X11.X11OpenGLComponent.CanCreateFromWindow* + seealso: + - linkId: OpenTK.Platform.IOpenGLComponent.CreateFromWindow(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IOpenGLComponent.CreateFromWindow(OpenTK.Platform.WindowHandle) implements: - - OpenTK.Core.Platform.IOpenGLComponent.CanCreateFromWindow + - OpenTK.Platform.IOpenGLComponent.CanCreateFromWindow - uid: OpenTK.Platform.Native.X11.X11OpenGLComponent.CanCreateFromSurface commentId: P:OpenTK.Platform.Native.X11.X11OpenGLComponent.CanCreateFromSurface id: CanCreateFromSurface @@ -279,17 +254,13 @@ items: fullName: OpenTK.Platform.Native.X11.X11OpenGLComponent.CanCreateFromSurface type: Property source: - remote: - path: src/OpenTK.Platform.Native/X11/X11OpenGLComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CanCreateFromSurface - path: opentk/src/OpenTK.Platform.Native/X11/X11OpenGLComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11OpenGLComponent.cs startLine: 115 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 - summary: True if the component driver can create a context from surfaces. + summary: True if the component driver can create a context from surfaces using . example: [] syntax: content: public bool CanCreateFromSurface { get; } @@ -299,7 +270,7 @@ items: content.vb: Public ReadOnly Property CanCreateFromSurface As Boolean overload: OpenTK.Platform.Native.X11.X11OpenGLComponent.CanCreateFromSurface* implements: - - OpenTK.Core.Platform.IOpenGLComponent.CanCreateFromSurface + - OpenTK.Platform.IOpenGLComponent.CanCreateFromSurface - uid: OpenTK.Platform.Native.X11.X11OpenGLComponent.GLXVersion commentId: P:OpenTK.Platform.Native.X11.X11OpenGLComponent.GLXVersion id: GLXVersion @@ -312,15 +283,11 @@ items: fullName: OpenTK.Platform.Native.X11.X11OpenGLComponent.GLXVersion type: Property source: - remote: - path: src/OpenTK.Platform.Native/X11/X11OpenGLComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GLXVersion - path: opentk/src/OpenTK.Platform.Native/X11/X11OpenGLComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11OpenGLComponent.cs startLine: 117 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 syntax: content: public Version GLXVersion { get; } @@ -341,15 +308,11 @@ items: fullName: OpenTK.Platform.Native.X11.X11OpenGLComponent.GLXExtensions type: Property source: - remote: - path: src/OpenTK.Platform.Native/X11/X11OpenGLComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GLXExtensions - path: opentk/src/OpenTK.Platform.Native/X11/X11OpenGLComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11OpenGLComponent.cs startLine: 118 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 syntax: content: public HashSet GLXExtensions { get; } @@ -370,15 +333,11 @@ items: fullName: OpenTK.Platform.Native.X11.X11OpenGLComponent.GLXServerExtensions type: Property source: - remote: - path: src/OpenTK.Platform.Native/X11/X11OpenGLComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GLXServerExtensions - path: opentk/src/OpenTK.Platform.Native/X11/X11OpenGLComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11OpenGLComponent.cs startLine: 119 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 syntax: content: public HashSet GLXServerExtensions { get; } @@ -399,15 +358,11 @@ items: fullName: OpenTK.Platform.Native.X11.X11OpenGLComponent.GLXClientExtensions type: Property source: - remote: - path: src/OpenTK.Platform.Native/X11/X11OpenGLComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GLXClientExtensions - path: opentk/src/OpenTK.Platform.Native/X11/X11OpenGLComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11OpenGLComponent.cs startLine: 120 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 syntax: content: public HashSet GLXClientExtensions { get; } @@ -428,15 +383,11 @@ items: fullName: OpenTK.Platform.Native.X11.X11OpenGLComponent.GLXServerVendor type: Property source: - remote: - path: src/OpenTK.Platform.Native/X11/X11OpenGLComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GLXServerVendor - path: opentk/src/OpenTK.Platform.Native/X11/X11OpenGLComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11OpenGLComponent.cs startLine: 121 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 syntax: content: public string GLXServerVendor { get; } @@ -457,15 +408,11 @@ items: fullName: OpenTK.Platform.Native.X11.X11OpenGLComponent.GLXClientVendor type: Property source: - remote: - path: src/OpenTK.Platform.Native/X11/X11OpenGLComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GLXClientVendor - path: opentk/src/OpenTK.Platform.Native/X11/X11OpenGLComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11OpenGLComponent.cs startLine: 122 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 syntax: content: public string GLXClientVendor { get; } @@ -486,15 +433,11 @@ items: fullName: OpenTK.Platform.Native.X11.X11OpenGLComponent.GLXServerVersion type: Property source: - remote: - path: src/OpenTK.Platform.Native/X11/X11OpenGLComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GLXServerVersion - path: opentk/src/OpenTK.Platform.Native/X11/X11OpenGLComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11OpenGLComponent.cs startLine: 123 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 syntax: content: public Version? GLXServerVersion { get; } @@ -515,15 +458,11 @@ items: fullName: OpenTK.Platform.Native.X11.X11OpenGLComponent.GLXClientVersion type: Property source: - remote: - path: src/OpenTK.Platform.Native/X11/X11OpenGLComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GLXClientVersion - path: opentk/src/OpenTK.Platform.Native/X11/X11OpenGLComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11OpenGLComponent.cs startLine: 124 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 syntax: content: public Version? GLXClientVersion { get; } @@ -544,48 +483,40 @@ items: fullName: OpenTK.Platform.Native.X11.X11OpenGLComponent.CreateFromSurface() type: Method source: - remote: - path: src/OpenTK.Platform.Native/X11/X11OpenGLComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateFromSurface - path: opentk/src/OpenTK.Platform.Native/X11/X11OpenGLComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11OpenGLComponent.cs startLine: 139 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: Create and OpenGL context for a surface. example: [] syntax: content: public OpenGLContextHandle CreateFromSurface() return: - type: OpenTK.Core.Platform.OpenGLContextHandle + type: OpenTK.Platform.OpenGLContextHandle description: An OpenGL context handle. content.vb: Public Function CreateFromSurface() As OpenGLContextHandle overload: OpenTK.Platform.Native.X11.X11OpenGLComponent.CreateFromSurface* implements: - - OpenTK.Core.Platform.IOpenGLComponent.CreateFromSurface -- uid: OpenTK.Platform.Native.X11.X11OpenGLComponent.CreateFromWindow(OpenTK.Core.Platform.WindowHandle) - commentId: M:OpenTK.Platform.Native.X11.X11OpenGLComponent.CreateFromWindow(OpenTK.Core.Platform.WindowHandle) - id: CreateFromWindow(OpenTK.Core.Platform.WindowHandle) + - OpenTK.Platform.IOpenGLComponent.CreateFromSurface +- uid: OpenTK.Platform.Native.X11.X11OpenGLComponent.CreateFromWindow(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.Native.X11.X11OpenGLComponent.CreateFromWindow(OpenTK.Platform.WindowHandle) + id: CreateFromWindow(OpenTK.Platform.WindowHandle) parent: OpenTK.Platform.Native.X11.X11OpenGLComponent langs: - csharp - vb name: CreateFromWindow(WindowHandle) nameWithType: X11OpenGLComponent.CreateFromWindow(WindowHandle) - fullName: OpenTK.Platform.Native.X11.X11OpenGLComponent.CreateFromWindow(OpenTK.Core.Platform.WindowHandle) + fullName: OpenTK.Platform.Native.X11.X11OpenGLComponent.CreateFromWindow(OpenTK.Platform.WindowHandle) type: Method source: - remote: - path: src/OpenTK.Platform.Native/X11/X11OpenGLComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateFromWindow - path: opentk/src/OpenTK.Platform.Native/X11/X11OpenGLComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11OpenGLComponent.cs startLine: 145 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: Create an OpenGL context for a window. example: [] @@ -593,36 +524,32 @@ items: content: public OpenGLContextHandle CreateFromWindow(WindowHandle handle) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: The window for which the OpenGL context should be created. return: - type: OpenTK.Core.Platform.OpenGLContextHandle + type: OpenTK.Platform.OpenGLContextHandle description: An OpenGL context handle. content.vb: Public Function CreateFromWindow(handle As WindowHandle) As OpenGLContextHandle overload: OpenTK.Platform.Native.X11.X11OpenGLComponent.CreateFromWindow* implements: - - OpenTK.Core.Platform.IOpenGLComponent.CreateFromWindow(OpenTK.Core.Platform.WindowHandle) -- uid: OpenTK.Platform.Native.X11.X11OpenGLComponent.DestroyContext(OpenTK.Core.Platform.OpenGLContextHandle) - commentId: M:OpenTK.Platform.Native.X11.X11OpenGLComponent.DestroyContext(OpenTK.Core.Platform.OpenGLContextHandle) - id: DestroyContext(OpenTK.Core.Platform.OpenGLContextHandle) + - OpenTK.Platform.IOpenGLComponent.CreateFromWindow(OpenTK.Platform.WindowHandle) +- uid: OpenTK.Platform.Native.X11.X11OpenGLComponent.DestroyContext(OpenTK.Platform.OpenGLContextHandle) + commentId: M:OpenTK.Platform.Native.X11.X11OpenGLComponent.DestroyContext(OpenTK.Platform.OpenGLContextHandle) + id: DestroyContext(OpenTK.Platform.OpenGLContextHandle) parent: OpenTK.Platform.Native.X11.X11OpenGLComponent langs: - csharp - vb name: DestroyContext(OpenGLContextHandle) nameWithType: X11OpenGLComponent.DestroyContext(OpenGLContextHandle) - fullName: OpenTK.Platform.Native.X11.X11OpenGLComponent.DestroyContext(OpenTK.Core.Platform.OpenGLContextHandle) + fullName: OpenTK.Platform.Native.X11.X11OpenGLComponent.DestroyContext(OpenTK.Platform.OpenGLContextHandle) type: Method source: - remote: - path: src/OpenTK.Platform.Native/X11/X11OpenGLComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DestroyContext - path: opentk/src/OpenTK.Platform.Native/X11/X11OpenGLComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11OpenGLComponent.cs startLine: 284 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: Destroy an OpenGL context. example: [] @@ -630,7 +557,7 @@ items: content: public void DestroyContext(OpenGLContextHandle handle) parameters: - id: handle - type: OpenTK.Core.Platform.OpenGLContextHandle + type: OpenTK.Platform.OpenGLContextHandle description: Handle to the OpenGL context to destroy. content.vb: Public Sub DestroyContext(handle As OpenGLContextHandle) overload: OpenTK.Platform.Native.X11.X11OpenGLComponent.DestroyContext* @@ -639,36 +566,32 @@ items: commentId: T:System.ArgumentNullException description: OpenGL context handle is null. implements: - - OpenTK.Core.Platform.IOpenGLComponent.DestroyContext(OpenTK.Core.Platform.OpenGLContextHandle) -- uid: OpenTK.Platform.Native.X11.X11OpenGLComponent.GetBindingsContext(OpenTK.Core.Platform.OpenGLContextHandle) - commentId: M:OpenTK.Platform.Native.X11.X11OpenGLComponent.GetBindingsContext(OpenTK.Core.Platform.OpenGLContextHandle) - id: GetBindingsContext(OpenTK.Core.Platform.OpenGLContextHandle) + - OpenTK.Platform.IOpenGLComponent.DestroyContext(OpenTK.Platform.OpenGLContextHandle) +- uid: OpenTK.Platform.Native.X11.X11OpenGLComponent.GetBindingsContext(OpenTK.Platform.OpenGLContextHandle) + commentId: M:OpenTK.Platform.Native.X11.X11OpenGLComponent.GetBindingsContext(OpenTK.Platform.OpenGLContextHandle) + id: GetBindingsContext(OpenTK.Platform.OpenGLContextHandle) parent: OpenTK.Platform.Native.X11.X11OpenGLComponent langs: - csharp - vb name: GetBindingsContext(OpenGLContextHandle) nameWithType: X11OpenGLComponent.GetBindingsContext(OpenGLContextHandle) - fullName: OpenTK.Platform.Native.X11.X11OpenGLComponent.GetBindingsContext(OpenTK.Core.Platform.OpenGLContextHandle) + fullName: OpenTK.Platform.Native.X11.X11OpenGLComponent.GetBindingsContext(OpenTK.Platform.OpenGLContextHandle) type: Method source: - remote: - path: src/OpenTK.Platform.Native/X11/X11OpenGLComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetBindingsContext - path: opentk/src/OpenTK.Platform.Native/X11/X11OpenGLComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11OpenGLComponent.cs startLine: 293 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 - summary: Gets a from an . + summary: Gets a from an . example: [] syntax: content: public IBindingsContext GetBindingsContext(OpenGLContextHandle handle) parameters: - id: handle - type: OpenTK.Core.Platform.OpenGLContextHandle + type: OpenTK.Platform.OpenGLContextHandle description: The handle to get a bindings context for. return: type: OpenTK.IBindingsContext @@ -676,28 +599,24 @@ items: content.vb: Public Function GetBindingsContext(handle As OpenGLContextHandle) As IBindingsContext overload: OpenTK.Platform.Native.X11.X11OpenGLComponent.GetBindingsContext* implements: - - OpenTK.Core.Platform.IOpenGLComponent.GetBindingsContext(OpenTK.Core.Platform.OpenGLContextHandle) -- uid: OpenTK.Platform.Native.X11.X11OpenGLComponent.GetProcedureAddress(OpenTK.Core.Platform.OpenGLContextHandle,System.String) - commentId: M:OpenTK.Platform.Native.X11.X11OpenGLComponent.GetProcedureAddress(OpenTK.Core.Platform.OpenGLContextHandle,System.String) - id: GetProcedureAddress(OpenTK.Core.Platform.OpenGLContextHandle,System.String) + - OpenTK.Platform.IOpenGLComponent.GetBindingsContext(OpenTK.Platform.OpenGLContextHandle) +- uid: OpenTK.Platform.Native.X11.X11OpenGLComponent.GetProcedureAddress(OpenTK.Platform.OpenGLContextHandle,System.String) + commentId: M:OpenTK.Platform.Native.X11.X11OpenGLComponent.GetProcedureAddress(OpenTK.Platform.OpenGLContextHandle,System.String) + id: GetProcedureAddress(OpenTK.Platform.OpenGLContextHandle,System.String) parent: OpenTK.Platform.Native.X11.X11OpenGLComponent langs: - csharp - vb name: GetProcedureAddress(OpenGLContextHandle, string) nameWithType: X11OpenGLComponent.GetProcedureAddress(OpenGLContextHandle, string) - fullName: OpenTK.Platform.Native.X11.X11OpenGLComponent.GetProcedureAddress(OpenTK.Core.Platform.OpenGLContextHandle, string) + fullName: OpenTK.Platform.Native.X11.X11OpenGLComponent.GetProcedureAddress(OpenTK.Platform.OpenGLContextHandle, string) type: Method source: - remote: - path: src/OpenTK.Platform.Native/X11/X11OpenGLComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetProcedureAddress - path: opentk/src/OpenTK.Platform.Native/X11/X11OpenGLComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11OpenGLComponent.cs startLine: 299 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: Get the procedure address for an OpenGL command. example: [] @@ -705,7 +624,7 @@ items: content: public nint GetProcedureAddress(OpenGLContextHandle handle, string procedureName) parameters: - id: handle - type: OpenTK.Core.Platform.OpenGLContextHandle + type: OpenTK.Platform.OpenGLContextHandle description: Handle to an OpenGL context. - id: procedureName type: System.String @@ -720,9 +639,9 @@ items: commentId: T:System.ArgumentNullException description: OpenGL context handle or procedure name is null. implements: - - OpenTK.Core.Platform.IOpenGLComponent.GetProcedureAddress(OpenTK.Core.Platform.OpenGLContextHandle,System.String) + - OpenTK.Platform.IOpenGLComponent.GetProcedureAddress(OpenTK.Platform.OpenGLContextHandle,System.String) nameWithType.vb: X11OpenGLComponent.GetProcedureAddress(OpenGLContextHandle, String) - fullName.vb: OpenTK.Platform.Native.X11.X11OpenGLComponent.GetProcedureAddress(OpenTK.Core.Platform.OpenGLContextHandle, String) + fullName.vb: OpenTK.Platform.Native.X11.X11OpenGLComponent.GetProcedureAddress(OpenTK.Platform.OpenGLContextHandle, String) name.vb: GetProcedureAddress(OpenGLContextHandle, String) - uid: OpenTK.Platform.Native.X11.X11OpenGLComponent.GetCurrentContext commentId: M:OpenTK.Platform.Native.X11.X11OpenGLComponent.GetCurrentContext @@ -736,48 +655,40 @@ items: fullName: OpenTK.Platform.Native.X11.X11OpenGLComponent.GetCurrentContext() type: Method source: - remote: - path: src/OpenTK.Platform.Native/X11/X11OpenGLComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetCurrentContext - path: opentk/src/OpenTK.Platform.Native/X11/X11OpenGLComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11OpenGLComponent.cs startLine: 306 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: Get the current OpenGL context for this thread. example: [] syntax: content: public OpenGLContextHandle? GetCurrentContext() return: - type: OpenTK.Core.Platform.OpenGLContextHandle + type: OpenTK.Platform.OpenGLContextHandle description: Handle to the current OpenGL context, null if none are current. content.vb: Public Function GetCurrentContext() As OpenGLContextHandle overload: OpenTK.Platform.Native.X11.X11OpenGLComponent.GetCurrentContext* implements: - - OpenTK.Core.Platform.IOpenGLComponent.GetCurrentContext -- uid: OpenTK.Platform.Native.X11.X11OpenGLComponent.SetCurrentContext(OpenTK.Core.Platform.OpenGLContextHandle) - commentId: M:OpenTK.Platform.Native.X11.X11OpenGLComponent.SetCurrentContext(OpenTK.Core.Platform.OpenGLContextHandle) - id: SetCurrentContext(OpenTK.Core.Platform.OpenGLContextHandle) + - OpenTK.Platform.IOpenGLComponent.GetCurrentContext +- uid: OpenTK.Platform.Native.X11.X11OpenGLComponent.SetCurrentContext(OpenTK.Platform.OpenGLContextHandle) + commentId: M:OpenTK.Platform.Native.X11.X11OpenGLComponent.SetCurrentContext(OpenTK.Platform.OpenGLContextHandle) + id: SetCurrentContext(OpenTK.Platform.OpenGLContextHandle) parent: OpenTK.Platform.Native.X11.X11OpenGLComponent langs: - csharp - vb name: SetCurrentContext(OpenGLContextHandle?) nameWithType: X11OpenGLComponent.SetCurrentContext(OpenGLContextHandle?) - fullName: OpenTK.Platform.Native.X11.X11OpenGLComponent.SetCurrentContext(OpenTK.Core.Platform.OpenGLContextHandle?) + fullName: OpenTK.Platform.Native.X11.X11OpenGLComponent.SetCurrentContext(OpenTK.Platform.OpenGLContextHandle?) type: Method source: - remote: - path: src/OpenTK.Platform.Native/X11/X11OpenGLComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetCurrentContext - path: opentk/src/OpenTK.Platform.Native/X11/X11OpenGLComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11OpenGLComponent.cs startLine: 314 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: Set the current OpenGL context for this thread. example: [] @@ -785,7 +696,7 @@ items: content: public bool SetCurrentContext(OpenGLContextHandle? handle) parameters: - id: handle - type: OpenTK.Core.Platform.OpenGLContextHandle + type: OpenTK.Platform.OpenGLContextHandle description: Handle to the OpenGL context to make current, or null to make none current. return: type: System.Boolean @@ -793,31 +704,27 @@ items: content.vb: Public Function SetCurrentContext(handle As OpenGLContextHandle) As Boolean overload: OpenTK.Platform.Native.X11.X11OpenGLComponent.SetCurrentContext* implements: - - OpenTK.Core.Platform.IOpenGLComponent.SetCurrentContext(OpenTK.Core.Platform.OpenGLContextHandle) + - OpenTK.Platform.IOpenGLComponent.SetCurrentContext(OpenTK.Platform.OpenGLContextHandle) nameWithType.vb: X11OpenGLComponent.SetCurrentContext(OpenGLContextHandle) - fullName.vb: OpenTK.Platform.Native.X11.X11OpenGLComponent.SetCurrentContext(OpenTK.Core.Platform.OpenGLContextHandle) + fullName.vb: OpenTK.Platform.Native.X11.X11OpenGLComponent.SetCurrentContext(OpenTK.Platform.OpenGLContextHandle) name.vb: SetCurrentContext(OpenGLContextHandle) -- uid: OpenTK.Platform.Native.X11.X11OpenGLComponent.GetSharedContext(OpenTK.Core.Platform.OpenGLContextHandle) - commentId: M:OpenTK.Platform.Native.X11.X11OpenGLComponent.GetSharedContext(OpenTK.Core.Platform.OpenGLContextHandle) - id: GetSharedContext(OpenTK.Core.Platform.OpenGLContextHandle) +- uid: OpenTK.Platform.Native.X11.X11OpenGLComponent.GetSharedContext(OpenTK.Platform.OpenGLContextHandle) + commentId: M:OpenTK.Platform.Native.X11.X11OpenGLComponent.GetSharedContext(OpenTK.Platform.OpenGLContextHandle) + id: GetSharedContext(OpenTK.Platform.OpenGLContextHandle) parent: OpenTK.Platform.Native.X11.X11OpenGLComponent langs: - csharp - vb name: GetSharedContext(OpenGLContextHandle) nameWithType: X11OpenGLComponent.GetSharedContext(OpenGLContextHandle) - fullName: OpenTK.Platform.Native.X11.X11OpenGLComponent.GetSharedContext(OpenTK.Core.Platform.OpenGLContextHandle) + fullName: OpenTK.Platform.Native.X11.X11OpenGLComponent.GetSharedContext(OpenTK.Platform.OpenGLContextHandle) type: Method source: - remote: - path: src/OpenTK.Platform.Native/X11/X11OpenGLComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetSharedContext - path: opentk/src/OpenTK.Platform.Native/X11/X11OpenGLComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11OpenGLComponent.cs startLine: 329 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: Gets the context which the given context shares display lists with. example: [] @@ -825,15 +732,15 @@ items: content: public OpenGLContextHandle? GetSharedContext(OpenGLContextHandle handle) parameters: - id: handle - type: OpenTK.Core.Platform.OpenGLContextHandle + type: OpenTK.Platform.OpenGLContextHandle description: Handle to the OpenGL context. return: - type: OpenTK.Core.Platform.OpenGLContextHandle + type: OpenTK.Platform.OpenGLContextHandle description: Handle to the OpenGL context the given context shares display lists with. content.vb: Public Function GetSharedContext(handle As OpenGLContextHandle) As OpenGLContextHandle overload: OpenTK.Platform.Native.X11.X11OpenGLComponent.GetSharedContext* implements: - - OpenTK.Core.Platform.IOpenGLComponent.GetSharedContext(OpenTK.Core.Platform.OpenGLContextHandle) + - OpenTK.Platform.IOpenGLComponent.GetSharedContext(OpenTK.Platform.OpenGLContextHandle) - uid: OpenTK.Platform.Native.X11.X11OpenGLComponent.EXT_swap_control_GetMaxSwapInterval commentId: M:OpenTK.Platform.Native.X11.X11OpenGLComponent.EXT_swap_control_GetMaxSwapInterval id: EXT_swap_control_GetMaxSwapInterval @@ -846,15 +753,11 @@ items: fullName: OpenTK.Platform.Native.X11.X11OpenGLComponent.EXT_swap_control_GetMaxSwapInterval() type: Method source: - remote: - path: src/OpenTK.Platform.Native/X11/X11OpenGLComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: EXT_swap_control_GetMaxSwapInterval - path: opentk/src/OpenTK.Platform.Native/X11/X11OpenGLComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11OpenGLComponent.cs startLine: 338 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: >- Queries EXT_swap_control for the max supported swap interval. @@ -879,15 +782,11 @@ items: fullName: OpenTK.Platform.Native.X11.X11OpenGLComponent.SetSwapInterval(int) type: Method source: - remote: - path: src/OpenTK.Platform.Native/X11/X11OpenGLComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetSwapInterval - path: opentk/src/OpenTK.Platform.Native/X11/X11OpenGLComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11OpenGLComponent.cs startLine: 359 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: Sets the swap interval of the current OpenGL context. example: [] @@ -900,7 +799,7 @@ items: content.vb: Public Sub SetSwapInterval(interval As Integer) overload: OpenTK.Platform.Native.X11.X11OpenGLComponent.SetSwapInterval* implements: - - OpenTK.Core.Platform.IOpenGLComponent.SetSwapInterval(System.Int32) + - OpenTK.Platform.IOpenGLComponent.SetSwapInterval(System.Int32) nameWithType.vb: X11OpenGLComponent.SetSwapInterval(Integer) fullName.vb: OpenTK.Platform.Native.X11.X11OpenGLComponent.SetSwapInterval(Integer) name.vb: SetSwapInterval(Integer) @@ -916,15 +815,11 @@ items: fullName: OpenTK.Platform.Native.X11.X11OpenGLComponent.GetSwapInterval() type: Method source: - remote: - path: src/OpenTK.Platform.Native/X11/X11OpenGLComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetSwapInterval - path: opentk/src/OpenTK.Platform.Native/X11/X11OpenGLComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11OpenGLComponent.cs startLine: 405 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: Gets the swap interval of the current OpenGL context. example: [] @@ -936,28 +831,24 @@ items: content.vb: Public Function GetSwapInterval() As Integer overload: OpenTK.Platform.Native.X11.X11OpenGLComponent.GetSwapInterval* implements: - - OpenTK.Core.Platform.IOpenGLComponent.GetSwapInterval -- uid: OpenTK.Platform.Native.X11.X11OpenGLComponent.SwapBuffers(OpenTK.Core.Platform.OpenGLContextHandle) - commentId: M:OpenTK.Platform.Native.X11.X11OpenGLComponent.SwapBuffers(OpenTK.Core.Platform.OpenGLContextHandle) - id: SwapBuffers(OpenTK.Core.Platform.OpenGLContextHandle) + - OpenTK.Platform.IOpenGLComponent.GetSwapInterval +- uid: OpenTK.Platform.Native.X11.X11OpenGLComponent.SwapBuffers(OpenTK.Platform.OpenGLContextHandle) + commentId: M:OpenTK.Platform.Native.X11.X11OpenGLComponent.SwapBuffers(OpenTK.Platform.OpenGLContextHandle) + id: SwapBuffers(OpenTK.Platform.OpenGLContextHandle) parent: OpenTK.Platform.Native.X11.X11OpenGLComponent langs: - csharp - vb name: SwapBuffers(OpenGLContextHandle) nameWithType: X11OpenGLComponent.SwapBuffers(OpenGLContextHandle) - fullName: OpenTK.Platform.Native.X11.X11OpenGLComponent.SwapBuffers(OpenTK.Core.Platform.OpenGLContextHandle) + fullName: OpenTK.Platform.Native.X11.X11OpenGLComponent.SwapBuffers(OpenTK.Platform.OpenGLContextHandle) type: Method source: - remote: - path: src/OpenTK.Platform.Native/X11/X11OpenGLComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SwapBuffers - path: opentk/src/OpenTK.Platform.Native/X11/X11OpenGLComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11OpenGLComponent.cs startLine: 435 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: Swaps the buffer of the specified context. example: [] @@ -965,33 +856,29 @@ items: content: public void SwapBuffers(OpenGLContextHandle handle) parameters: - id: handle - type: OpenTK.Core.Platform.OpenGLContextHandle + type: OpenTK.Platform.OpenGLContextHandle description: Handle to the context. content.vb: Public Sub SwapBuffers(handle As OpenGLContextHandle) overload: OpenTK.Platform.Native.X11.X11OpenGLComponent.SwapBuffers* implements: - - OpenTK.Core.Platform.IOpenGLComponent.SwapBuffers(OpenTK.Core.Platform.OpenGLContextHandle) -- uid: OpenTK.Platform.Native.X11.X11OpenGLComponent.GetGLXContext(OpenTK.Core.Platform.OpenGLContextHandle) - commentId: M:OpenTK.Platform.Native.X11.X11OpenGLComponent.GetGLXContext(OpenTK.Core.Platform.OpenGLContextHandle) - id: GetGLXContext(OpenTK.Core.Platform.OpenGLContextHandle) + - OpenTK.Platform.IOpenGLComponent.SwapBuffers(OpenTK.Platform.OpenGLContextHandle) +- uid: OpenTK.Platform.Native.X11.X11OpenGLComponent.GetGLXContext(OpenTK.Platform.OpenGLContextHandle) + commentId: M:OpenTK.Platform.Native.X11.X11OpenGLComponent.GetGLXContext(OpenTK.Platform.OpenGLContextHandle) + id: GetGLXContext(OpenTK.Platform.OpenGLContextHandle) parent: OpenTK.Platform.Native.X11.X11OpenGLComponent langs: - csharp - vb name: GetGLXContext(OpenGLContextHandle) nameWithType: X11OpenGLComponent.GetGLXContext(OpenGLContextHandle) - fullName: OpenTK.Platform.Native.X11.X11OpenGLComponent.GetGLXContext(OpenTK.Core.Platform.OpenGLContextHandle) + fullName: OpenTK.Platform.Native.X11.X11OpenGLComponent.GetGLXContext(OpenTK.Platform.OpenGLContextHandle) type: Method source: - remote: - path: src/OpenTK.Platform.Native/X11/X11OpenGLComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetGLXContext - path: opentk/src/OpenTK.Platform.Native/X11/X11OpenGLComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11OpenGLComponent.cs startLine: 446 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: Gets the GLXContext associated with this OpenGL context. example: [] @@ -999,34 +886,30 @@ items: content: public nint GetGLXContext(OpenGLContextHandle handle) parameters: - id: handle - type: OpenTK.Core.Platform.OpenGLContextHandle + type: OpenTK.Platform.OpenGLContextHandle description: A handle to the OpenGL context to get the GLXContext from. return: type: System.IntPtr description: The GLXContext associated with the OpenGL context. content.vb: Public Function GetGLXContext(handle As OpenGLContextHandle) As IntPtr overload: OpenTK.Platform.Native.X11.X11OpenGLComponent.GetGLXContext* -- uid: OpenTK.Platform.Native.X11.X11OpenGLComponent.GetGLXWindow(OpenTK.Core.Platform.OpenGLContextHandle) - commentId: M:OpenTK.Platform.Native.X11.X11OpenGLComponent.GetGLXWindow(OpenTK.Core.Platform.OpenGLContextHandle) - id: GetGLXWindow(OpenTK.Core.Platform.OpenGLContextHandle) +- uid: OpenTK.Platform.Native.X11.X11OpenGLComponent.GetGLXWindow(OpenTK.Platform.OpenGLContextHandle) + commentId: M:OpenTK.Platform.Native.X11.X11OpenGLComponent.GetGLXWindow(OpenTK.Platform.OpenGLContextHandle) + id: GetGLXWindow(OpenTK.Platform.OpenGLContextHandle) parent: OpenTK.Platform.Native.X11.X11OpenGLComponent langs: - csharp - vb name: GetGLXWindow(OpenGLContextHandle) nameWithType: X11OpenGLComponent.GetGLXWindow(OpenGLContextHandle) - fullName: OpenTK.Platform.Native.X11.X11OpenGLComponent.GetGLXWindow(OpenTK.Core.Platform.OpenGLContextHandle) + fullName: OpenTK.Platform.Native.X11.X11OpenGLComponent.GetGLXWindow(OpenTK.Platform.OpenGLContextHandle) type: Method source: - remote: - path: src/OpenTK.Platform.Native/X11/X11OpenGLComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetGLXWindow - path: opentk/src/OpenTK.Platform.Native/X11/X11OpenGLComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11OpenGLComponent.cs startLine: 458 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: Gets the GLXWindow associated with this OpenGL context. example: [] @@ -1034,7 +917,7 @@ items: content: public nint GetGLXWindow(OpenGLContextHandle handle) parameters: - id: handle - type: OpenTK.Core.Platform.OpenGLContextHandle + type: OpenTK.Platform.OpenGLContextHandle description: A handle to the OpenGL context to get the GLXWindow from. return: type: System.IntPtr @@ -1091,20 +974,20 @@ references: nameWithType.vb: Object fullName.vb: Object name.vb: Object -- uid: OpenTK.Core.Platform.IOpenGLComponent - commentId: T:OpenTK.Core.Platform.IOpenGLComponent - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.IOpenGLComponent.html +- uid: OpenTK.Platform.IOpenGLComponent + commentId: T:OpenTK.Platform.IOpenGLComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IOpenGLComponent.html name: IOpenGLComponent nameWithType: IOpenGLComponent - fullName: OpenTK.Core.Platform.IOpenGLComponent -- uid: OpenTK.Core.Platform.IPalComponent - commentId: T:OpenTK.Core.Platform.IPalComponent - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.IPalComponent.html + fullName: OpenTK.Platform.IOpenGLComponent +- uid: OpenTK.Platform.IPalComponent + commentId: T:OpenTK.Platform.IPalComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IPalComponent.html name: IPalComponent nameWithType: IPalComponent - fullName: OpenTK.Core.Platform.IPalComponent + fullName: OpenTK.Platform.IPalComponent - uid: System.Object.Equals(System.Object) commentId: M:System.Object.Equals(System.Object) parent: System.Object @@ -1331,49 +1214,41 @@ references: name: System nameWithType: System fullName: System -- uid: OpenTK.Core.Platform - commentId: N:OpenTK.Core.Platform +- uid: OpenTK.Platform + commentId: N:OpenTK.Platform href: OpenTK.html - name: OpenTK.Core.Platform - nameWithType: OpenTK.Core.Platform - fullName: OpenTK.Core.Platform + name: OpenTK.Platform + nameWithType: OpenTK.Platform + fullName: OpenTK.Platform spec.csharp: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html spec.vb: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html - uid: OpenTK.Platform.Native.X11.X11OpenGLComponent.Name* commentId: Overload:OpenTK.Platform.Native.X11.X11OpenGLComponent.Name href: OpenTK.Platform.Native.X11.X11OpenGLComponent.html#OpenTK_Platform_Native_X11_X11OpenGLComponent_Name name: Name nameWithType: X11OpenGLComponent.Name fullName: OpenTK.Platform.Native.X11.X11OpenGLComponent.Name -- uid: OpenTK.Core.Platform.IPalComponent.Name - commentId: P:OpenTK.Core.Platform.IPalComponent.Name - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Name +- uid: OpenTK.Platform.IPalComponent.Name + commentId: P:OpenTK.Platform.IPalComponent.Name + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Name name: Name nameWithType: IPalComponent.Name - fullName: OpenTK.Core.Platform.IPalComponent.Name + fullName: OpenTK.Platform.IPalComponent.Name - uid: System.String commentId: T:System.String parent: System @@ -1391,33 +1266,33 @@ references: name: Provides nameWithType: X11OpenGLComponent.Provides fullName: OpenTK.Platform.Native.X11.X11OpenGLComponent.Provides -- uid: OpenTK.Core.Platform.IPalComponent.Provides - commentId: P:OpenTK.Core.Platform.IPalComponent.Provides - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Provides +- uid: OpenTK.Platform.IPalComponent.Provides + commentId: P:OpenTK.Platform.IPalComponent.Provides + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Provides name: Provides nameWithType: IPalComponent.Provides - fullName: OpenTK.Core.Platform.IPalComponent.Provides -- uid: OpenTK.Core.Platform.PalComponents - commentId: T:OpenTK.Core.Platform.PalComponents - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.PalComponents.html + fullName: OpenTK.Platform.IPalComponent.Provides +- uid: OpenTK.Platform.PalComponents + commentId: T:OpenTK.Platform.PalComponents + parent: OpenTK.Platform + href: OpenTK.Platform.PalComponents.html name: PalComponents nameWithType: PalComponents - fullName: OpenTK.Core.Platform.PalComponents + fullName: OpenTK.Platform.PalComponents - uid: OpenTK.Platform.Native.X11.X11OpenGLComponent.Logger* commentId: Overload:OpenTK.Platform.Native.X11.X11OpenGLComponent.Logger href: OpenTK.Platform.Native.X11.X11OpenGLComponent.html#OpenTK_Platform_Native_X11_X11OpenGLComponent_Logger name: Logger nameWithType: X11OpenGLComponent.Logger fullName: OpenTK.Platform.Native.X11.X11OpenGLComponent.Logger -- uid: OpenTK.Core.Platform.IPalComponent.Logger - commentId: P:OpenTK.Core.Platform.IPalComponent.Logger - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Logger +- uid: OpenTK.Platform.IPalComponent.Logger + commentId: P:OpenTK.Platform.IPalComponent.Logger + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Logger name: Logger nameWithType: IPalComponent.Logger - fullName: OpenTK.Core.Platform.IPalComponent.Logger + fullName: OpenTK.Platform.IPalComponent.Logger - uid: OpenTK.Core.Utility.ILogger commentId: T:OpenTK.Core.Utility.ILogger parent: OpenTK.Core.Utility @@ -1457,55 +1332,55 @@ references: href: OpenTK.Core.Utility.html - uid: OpenTK.Platform.Native.X11.X11OpenGLComponent.Initialize* commentId: Overload:OpenTK.Platform.Native.X11.X11OpenGLComponent.Initialize - href: OpenTK.Platform.Native.X11.X11OpenGLComponent.html#OpenTK_Platform_Native_X11_X11OpenGLComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + href: OpenTK.Platform.Native.X11.X11OpenGLComponent.html#OpenTK_Platform_Native_X11_X11OpenGLComponent_Initialize_OpenTK_Platform_ToolkitOptions_ name: Initialize nameWithType: X11OpenGLComponent.Initialize fullName: OpenTK.Platform.Native.X11.X11OpenGLComponent.Initialize -- uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - commentId: M:OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ +- uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ name: Initialize(ToolkitOptions) nameWithType: IPalComponent.Initialize(ToolkitOptions) - fullName: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + fullName: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) spec.csharp: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + - uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.ToolkitOptions + - uid: OpenTK.Platform.ToolkitOptions name: ToolkitOptions - href: OpenTK.Core.Platform.ToolkitOptions.html + href: OpenTK.Platform.ToolkitOptions.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + - uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.ToolkitOptions + - uid: OpenTK.Platform.ToolkitOptions name: ToolkitOptions - href: OpenTK.Core.Platform.ToolkitOptions.html + href: OpenTK.Platform.ToolkitOptions.html - name: ) -- uid: OpenTK.Core.Platform.ToolkitOptions - commentId: T:OpenTK.Core.Platform.ToolkitOptions - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.ToolkitOptions.html +- uid: OpenTK.Platform.ToolkitOptions + commentId: T:OpenTK.Platform.ToolkitOptions + parent: OpenTK.Platform + href: OpenTK.Platform.ToolkitOptions.html name: ToolkitOptions nameWithType: ToolkitOptions - fullName: OpenTK.Core.Platform.ToolkitOptions + fullName: OpenTK.Platform.ToolkitOptions - uid: OpenTK.Platform.Native.X11.X11OpenGLComponent.CanShareContexts* commentId: Overload:OpenTK.Platform.Native.X11.X11OpenGLComponent.CanShareContexts href: OpenTK.Platform.Native.X11.X11OpenGLComponent.html#OpenTK_Platform_Native_X11_X11OpenGLComponent_CanShareContexts name: CanShareContexts nameWithType: X11OpenGLComponent.CanShareContexts fullName: OpenTK.Platform.Native.X11.X11OpenGLComponent.CanShareContexts -- uid: OpenTK.Core.Platform.IOpenGLComponent.CanShareContexts - commentId: P:OpenTK.Core.Platform.IOpenGLComponent.CanShareContexts - parent: OpenTK.Core.Platform.IOpenGLComponent - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_CanShareContexts +- uid: OpenTK.Platform.IOpenGLComponent.CanShareContexts + commentId: P:OpenTK.Platform.IOpenGLComponent.CanShareContexts + parent: OpenTK.Platform.IOpenGLComponent + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_CanShareContexts name: CanShareContexts nameWithType: IOpenGLComponent.CanShareContexts - fullName: OpenTK.Core.Platform.IOpenGLComponent.CanShareContexts + fullName: OpenTK.Platform.IOpenGLComponent.CanShareContexts - uid: System.Boolean commentId: T:System.Boolean parent: System @@ -1517,32 +1392,76 @@ references: nameWithType.vb: Boolean fullName.vb: Boolean name.vb: Boolean +- uid: OpenTK.Platform.IOpenGLComponent.CreateFromWindow(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IOpenGLComponent.CreateFromWindow(OpenTK.Platform.WindowHandle) + parent: OpenTK.Platform.IOpenGLComponent + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_CreateFromWindow_OpenTK_Platform_WindowHandle_ + name: CreateFromWindow(WindowHandle) + nameWithType: IOpenGLComponent.CreateFromWindow(WindowHandle) + fullName: OpenTK.Platform.IOpenGLComponent.CreateFromWindow(OpenTK.Platform.WindowHandle) + spec.csharp: + - uid: OpenTK.Platform.IOpenGLComponent.CreateFromWindow(OpenTK.Platform.WindowHandle) + name: CreateFromWindow + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_CreateFromWindow_OpenTK_Platform_WindowHandle_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IOpenGLComponent.CreateFromWindow(OpenTK.Platform.WindowHandle) + name: CreateFromWindow + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_CreateFromWindow_OpenTK_Platform_WindowHandle_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ) - uid: OpenTK.Platform.Native.X11.X11OpenGLComponent.CanCreateFromWindow* commentId: Overload:OpenTK.Platform.Native.X11.X11OpenGLComponent.CanCreateFromWindow href: OpenTK.Platform.Native.X11.X11OpenGLComponent.html#OpenTK_Platform_Native_X11_X11OpenGLComponent_CanCreateFromWindow name: CanCreateFromWindow nameWithType: X11OpenGLComponent.CanCreateFromWindow fullName: OpenTK.Platform.Native.X11.X11OpenGLComponent.CanCreateFromWindow -- uid: OpenTK.Core.Platform.IOpenGLComponent.CanCreateFromWindow - commentId: P:OpenTK.Core.Platform.IOpenGLComponent.CanCreateFromWindow - parent: OpenTK.Core.Platform.IOpenGLComponent - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_CanCreateFromWindow +- uid: OpenTK.Platform.IOpenGLComponent.CanCreateFromWindow + commentId: P:OpenTK.Platform.IOpenGLComponent.CanCreateFromWindow + parent: OpenTK.Platform.IOpenGLComponent + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_CanCreateFromWindow name: CanCreateFromWindow nameWithType: IOpenGLComponent.CanCreateFromWindow - fullName: OpenTK.Core.Platform.IOpenGLComponent.CanCreateFromWindow + fullName: OpenTK.Platform.IOpenGLComponent.CanCreateFromWindow +- uid: OpenTK.Platform.IOpenGLComponent.CreateFromSurface + commentId: M:OpenTK.Platform.IOpenGLComponent.CreateFromSurface + parent: OpenTK.Platform.IOpenGLComponent + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_CreateFromSurface + name: CreateFromSurface() + nameWithType: IOpenGLComponent.CreateFromSurface() + fullName: OpenTK.Platform.IOpenGLComponent.CreateFromSurface() + spec.csharp: + - uid: OpenTK.Platform.IOpenGLComponent.CreateFromSurface + name: CreateFromSurface + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_CreateFromSurface + - name: ( + - name: ) + spec.vb: + - uid: OpenTK.Platform.IOpenGLComponent.CreateFromSurface + name: CreateFromSurface + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_CreateFromSurface + - name: ( + - name: ) - uid: OpenTK.Platform.Native.X11.X11OpenGLComponent.CanCreateFromSurface* commentId: Overload:OpenTK.Platform.Native.X11.X11OpenGLComponent.CanCreateFromSurface href: OpenTK.Platform.Native.X11.X11OpenGLComponent.html#OpenTK_Platform_Native_X11_X11OpenGLComponent_CanCreateFromSurface name: CanCreateFromSurface nameWithType: X11OpenGLComponent.CanCreateFromSurface fullName: OpenTK.Platform.Native.X11.X11OpenGLComponent.CanCreateFromSurface -- uid: OpenTK.Core.Platform.IOpenGLComponent.CanCreateFromSurface - commentId: P:OpenTK.Core.Platform.IOpenGLComponent.CanCreateFromSurface - parent: OpenTK.Core.Platform.IOpenGLComponent - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_CanCreateFromSurface +- uid: OpenTK.Platform.IOpenGLComponent.CanCreateFromSurface + commentId: P:OpenTK.Platform.IOpenGLComponent.CanCreateFromSurface + parent: OpenTK.Platform.IOpenGLComponent + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_CanCreateFromSurface name: CanCreateFromSurface nameWithType: IOpenGLComponent.CanCreateFromSurface - fullName: OpenTK.Core.Platform.IOpenGLComponent.CanCreateFromSurface + fullName: OpenTK.Platform.IOpenGLComponent.CanCreateFromSurface - uid: OpenTK.Platform.Native.X11.X11OpenGLComponent.GLXVersion* commentId: Overload:OpenTK.Platform.Native.X11.X11OpenGLComponent.GLXVersion href: OpenTK.Platform.Native.X11.X11OpenGLComponent.html#OpenTK_Platform_Native_X11_X11OpenGLComponent_GLXVersion @@ -1705,70 +1624,26 @@ references: name: CreateFromSurface nameWithType: X11OpenGLComponent.CreateFromSurface fullName: OpenTK.Platform.Native.X11.X11OpenGLComponent.CreateFromSurface -- uid: OpenTK.Core.Platform.IOpenGLComponent.CreateFromSurface - commentId: M:OpenTK.Core.Platform.IOpenGLComponent.CreateFromSurface - parent: OpenTK.Core.Platform.IOpenGLComponent - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_CreateFromSurface - name: CreateFromSurface() - nameWithType: IOpenGLComponent.CreateFromSurface() - fullName: OpenTK.Core.Platform.IOpenGLComponent.CreateFromSurface() - spec.csharp: - - uid: OpenTK.Core.Platform.IOpenGLComponent.CreateFromSurface - name: CreateFromSurface - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_CreateFromSurface - - name: ( - - name: ) - spec.vb: - - uid: OpenTK.Core.Platform.IOpenGLComponent.CreateFromSurface - name: CreateFromSurface - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_CreateFromSurface - - name: ( - - name: ) -- uid: OpenTK.Core.Platform.OpenGLContextHandle - commentId: T:OpenTK.Core.Platform.OpenGLContextHandle - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.OpenGLContextHandle.html +- uid: OpenTK.Platform.OpenGLContextHandle + commentId: T:OpenTK.Platform.OpenGLContextHandle + parent: OpenTK.Platform + href: OpenTK.Platform.OpenGLContextHandle.html name: OpenGLContextHandle nameWithType: OpenGLContextHandle - fullName: OpenTK.Core.Platform.OpenGLContextHandle + fullName: OpenTK.Platform.OpenGLContextHandle - uid: OpenTK.Platform.Native.X11.X11OpenGLComponent.CreateFromWindow* commentId: Overload:OpenTK.Platform.Native.X11.X11OpenGLComponent.CreateFromWindow - href: OpenTK.Platform.Native.X11.X11OpenGLComponent.html#OpenTK_Platform_Native_X11_X11OpenGLComponent_CreateFromWindow_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.Native.X11.X11OpenGLComponent.html#OpenTK_Platform_Native_X11_X11OpenGLComponent_CreateFromWindow_OpenTK_Platform_WindowHandle_ name: CreateFromWindow nameWithType: X11OpenGLComponent.CreateFromWindow fullName: OpenTK.Platform.Native.X11.X11OpenGLComponent.CreateFromWindow -- uid: OpenTK.Core.Platform.IOpenGLComponent.CreateFromWindow(OpenTK.Core.Platform.WindowHandle) - commentId: M:OpenTK.Core.Platform.IOpenGLComponent.CreateFromWindow(OpenTK.Core.Platform.WindowHandle) - parent: OpenTK.Core.Platform.IOpenGLComponent - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_CreateFromWindow_OpenTK_Core_Platform_WindowHandle_ - name: CreateFromWindow(WindowHandle) - nameWithType: IOpenGLComponent.CreateFromWindow(WindowHandle) - fullName: OpenTK.Core.Platform.IOpenGLComponent.CreateFromWindow(OpenTK.Core.Platform.WindowHandle) - spec.csharp: - - uid: OpenTK.Core.Platform.IOpenGLComponent.CreateFromWindow(OpenTK.Core.Platform.WindowHandle) - name: CreateFromWindow - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_CreateFromWindow_OpenTK_Core_Platform_WindowHandle_ - - name: ( - - uid: OpenTK.Core.Platform.WindowHandle - name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html - - name: ) - spec.vb: - - uid: OpenTK.Core.Platform.IOpenGLComponent.CreateFromWindow(OpenTK.Core.Platform.WindowHandle) - name: CreateFromWindow - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_CreateFromWindow_OpenTK_Core_Platform_WindowHandle_ - - name: ( - - uid: OpenTK.Core.Platform.WindowHandle - name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html - - name: ) -- uid: OpenTK.Core.Platform.WindowHandle - commentId: T:OpenTK.Core.Platform.WindowHandle - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.WindowHandle.html +- uid: OpenTK.Platform.WindowHandle + commentId: T:OpenTK.Platform.WindowHandle + parent: OpenTK.Platform + href: OpenTK.Platform.WindowHandle.html name: WindowHandle nameWithType: WindowHandle - fullName: OpenTK.Core.Platform.WindowHandle + fullName: OpenTK.Platform.WindowHandle - uid: System.ArgumentNullException commentId: T:System.ArgumentNullException isExternal: true @@ -1778,34 +1653,34 @@ references: fullName: System.ArgumentNullException - uid: OpenTK.Platform.Native.X11.X11OpenGLComponent.DestroyContext* commentId: Overload:OpenTK.Platform.Native.X11.X11OpenGLComponent.DestroyContext - href: OpenTK.Platform.Native.X11.X11OpenGLComponent.html#OpenTK_Platform_Native_X11_X11OpenGLComponent_DestroyContext_OpenTK_Core_Platform_OpenGLContextHandle_ + href: OpenTK.Platform.Native.X11.X11OpenGLComponent.html#OpenTK_Platform_Native_X11_X11OpenGLComponent_DestroyContext_OpenTK_Platform_OpenGLContextHandle_ name: DestroyContext nameWithType: X11OpenGLComponent.DestroyContext fullName: OpenTK.Platform.Native.X11.X11OpenGLComponent.DestroyContext -- uid: OpenTK.Core.Platform.IOpenGLComponent.DestroyContext(OpenTK.Core.Platform.OpenGLContextHandle) - commentId: M:OpenTK.Core.Platform.IOpenGLComponent.DestroyContext(OpenTK.Core.Platform.OpenGLContextHandle) - parent: OpenTK.Core.Platform.IOpenGLComponent - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_DestroyContext_OpenTK_Core_Platform_OpenGLContextHandle_ +- uid: OpenTK.Platform.IOpenGLComponent.DestroyContext(OpenTK.Platform.OpenGLContextHandle) + commentId: M:OpenTK.Platform.IOpenGLComponent.DestroyContext(OpenTK.Platform.OpenGLContextHandle) + parent: OpenTK.Platform.IOpenGLComponent + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_DestroyContext_OpenTK_Platform_OpenGLContextHandle_ name: DestroyContext(OpenGLContextHandle) nameWithType: IOpenGLComponent.DestroyContext(OpenGLContextHandle) - fullName: OpenTK.Core.Platform.IOpenGLComponent.DestroyContext(OpenTK.Core.Platform.OpenGLContextHandle) + fullName: OpenTK.Platform.IOpenGLComponent.DestroyContext(OpenTK.Platform.OpenGLContextHandle) spec.csharp: - - uid: OpenTK.Core.Platform.IOpenGLComponent.DestroyContext(OpenTK.Core.Platform.OpenGLContextHandle) + - uid: OpenTK.Platform.IOpenGLComponent.DestroyContext(OpenTK.Platform.OpenGLContextHandle) name: DestroyContext - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_DestroyContext_OpenTK_Core_Platform_OpenGLContextHandle_ + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_DestroyContext_OpenTK_Platform_OpenGLContextHandle_ - name: ( - - uid: OpenTK.Core.Platform.OpenGLContextHandle + - uid: OpenTK.Platform.OpenGLContextHandle name: OpenGLContextHandle - href: OpenTK.Core.Platform.OpenGLContextHandle.html + href: OpenTK.Platform.OpenGLContextHandle.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IOpenGLComponent.DestroyContext(OpenTK.Core.Platform.OpenGLContextHandle) + - uid: OpenTK.Platform.IOpenGLComponent.DestroyContext(OpenTK.Platform.OpenGLContextHandle) name: DestroyContext - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_DestroyContext_OpenTK_Core_Platform_OpenGLContextHandle_ + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_DestroyContext_OpenTK_Platform_OpenGLContextHandle_ - name: ( - - uid: OpenTK.Core.Platform.OpenGLContextHandle + - uid: OpenTK.Platform.OpenGLContextHandle name: OpenGLContextHandle - href: OpenTK.Core.Platform.OpenGLContextHandle.html + href: OpenTK.Platform.OpenGLContextHandle.html - name: ) - uid: OpenTK.IBindingsContext commentId: T:OpenTK.IBindingsContext @@ -1816,34 +1691,34 @@ references: fullName: OpenTK.IBindingsContext - uid: OpenTK.Platform.Native.X11.X11OpenGLComponent.GetBindingsContext* commentId: Overload:OpenTK.Platform.Native.X11.X11OpenGLComponent.GetBindingsContext - href: OpenTK.Platform.Native.X11.X11OpenGLComponent.html#OpenTK_Platform_Native_X11_X11OpenGLComponent_GetBindingsContext_OpenTK_Core_Platform_OpenGLContextHandle_ + href: OpenTK.Platform.Native.X11.X11OpenGLComponent.html#OpenTK_Platform_Native_X11_X11OpenGLComponent_GetBindingsContext_OpenTK_Platform_OpenGLContextHandle_ name: GetBindingsContext nameWithType: X11OpenGLComponent.GetBindingsContext fullName: OpenTK.Platform.Native.X11.X11OpenGLComponent.GetBindingsContext -- uid: OpenTK.Core.Platform.IOpenGLComponent.GetBindingsContext(OpenTK.Core.Platform.OpenGLContextHandle) - commentId: M:OpenTK.Core.Platform.IOpenGLComponent.GetBindingsContext(OpenTK.Core.Platform.OpenGLContextHandle) - parent: OpenTK.Core.Platform.IOpenGLComponent - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_GetBindingsContext_OpenTK_Core_Platform_OpenGLContextHandle_ +- uid: OpenTK.Platform.IOpenGLComponent.GetBindingsContext(OpenTK.Platform.OpenGLContextHandle) + commentId: M:OpenTK.Platform.IOpenGLComponent.GetBindingsContext(OpenTK.Platform.OpenGLContextHandle) + parent: OpenTK.Platform.IOpenGLComponent + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_GetBindingsContext_OpenTK_Platform_OpenGLContextHandle_ name: GetBindingsContext(OpenGLContextHandle) nameWithType: IOpenGLComponent.GetBindingsContext(OpenGLContextHandle) - fullName: OpenTK.Core.Platform.IOpenGLComponent.GetBindingsContext(OpenTK.Core.Platform.OpenGLContextHandle) + fullName: OpenTK.Platform.IOpenGLComponent.GetBindingsContext(OpenTK.Platform.OpenGLContextHandle) spec.csharp: - - uid: OpenTK.Core.Platform.IOpenGLComponent.GetBindingsContext(OpenTK.Core.Platform.OpenGLContextHandle) + - uid: OpenTK.Platform.IOpenGLComponent.GetBindingsContext(OpenTK.Platform.OpenGLContextHandle) name: GetBindingsContext - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_GetBindingsContext_OpenTK_Core_Platform_OpenGLContextHandle_ + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_GetBindingsContext_OpenTK_Platform_OpenGLContextHandle_ - name: ( - - uid: OpenTK.Core.Platform.OpenGLContextHandle + - uid: OpenTK.Platform.OpenGLContextHandle name: OpenGLContextHandle - href: OpenTK.Core.Platform.OpenGLContextHandle.html + href: OpenTK.Platform.OpenGLContextHandle.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IOpenGLComponent.GetBindingsContext(OpenTK.Core.Platform.OpenGLContextHandle) + - uid: OpenTK.Platform.IOpenGLComponent.GetBindingsContext(OpenTK.Platform.OpenGLContextHandle) name: GetBindingsContext - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_GetBindingsContext_OpenTK_Core_Platform_OpenGLContextHandle_ + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_GetBindingsContext_OpenTK_Platform_OpenGLContextHandle_ - name: ( - - uid: OpenTK.Core.Platform.OpenGLContextHandle + - uid: OpenTK.Platform.OpenGLContextHandle name: OpenGLContextHandle - href: OpenTK.Core.Platform.OpenGLContextHandle.html + href: OpenTK.Platform.OpenGLContextHandle.html - name: ) - uid: OpenTK commentId: N:OpenTK @@ -1853,29 +1728,29 @@ references: fullName: OpenTK - uid: OpenTK.Platform.Native.X11.X11OpenGLComponent.GetProcedureAddress* commentId: Overload:OpenTK.Platform.Native.X11.X11OpenGLComponent.GetProcedureAddress - href: OpenTK.Platform.Native.X11.X11OpenGLComponent.html#OpenTK_Platform_Native_X11_X11OpenGLComponent_GetProcedureAddress_OpenTK_Core_Platform_OpenGLContextHandle_System_String_ + href: OpenTK.Platform.Native.X11.X11OpenGLComponent.html#OpenTK_Platform_Native_X11_X11OpenGLComponent_GetProcedureAddress_OpenTK_Platform_OpenGLContextHandle_System_String_ name: GetProcedureAddress nameWithType: X11OpenGLComponent.GetProcedureAddress fullName: OpenTK.Platform.Native.X11.X11OpenGLComponent.GetProcedureAddress -- uid: OpenTK.Core.Platform.IOpenGLComponent.GetProcedureAddress(OpenTK.Core.Platform.OpenGLContextHandle,System.String) - commentId: M:OpenTK.Core.Platform.IOpenGLComponent.GetProcedureAddress(OpenTK.Core.Platform.OpenGLContextHandle,System.String) - parent: OpenTK.Core.Platform.IOpenGLComponent +- uid: OpenTK.Platform.IOpenGLComponent.GetProcedureAddress(OpenTK.Platform.OpenGLContextHandle,System.String) + commentId: M:OpenTK.Platform.IOpenGLComponent.GetProcedureAddress(OpenTK.Platform.OpenGLContextHandle,System.String) + parent: OpenTK.Platform.IOpenGLComponent isExternal: true - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_GetProcedureAddress_OpenTK_Core_Platform_OpenGLContextHandle_System_String_ + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_GetProcedureAddress_OpenTK_Platform_OpenGLContextHandle_System_String_ name: GetProcedureAddress(OpenGLContextHandle, string) nameWithType: IOpenGLComponent.GetProcedureAddress(OpenGLContextHandle, string) - fullName: OpenTK.Core.Platform.IOpenGLComponent.GetProcedureAddress(OpenTK.Core.Platform.OpenGLContextHandle, string) + fullName: OpenTK.Platform.IOpenGLComponent.GetProcedureAddress(OpenTK.Platform.OpenGLContextHandle, string) nameWithType.vb: IOpenGLComponent.GetProcedureAddress(OpenGLContextHandle, String) - fullName.vb: OpenTK.Core.Platform.IOpenGLComponent.GetProcedureAddress(OpenTK.Core.Platform.OpenGLContextHandle, String) + fullName.vb: OpenTK.Platform.IOpenGLComponent.GetProcedureAddress(OpenTK.Platform.OpenGLContextHandle, String) name.vb: GetProcedureAddress(OpenGLContextHandle, String) spec.csharp: - - uid: OpenTK.Core.Platform.IOpenGLComponent.GetProcedureAddress(OpenTK.Core.Platform.OpenGLContextHandle,System.String) + - uid: OpenTK.Platform.IOpenGLComponent.GetProcedureAddress(OpenTK.Platform.OpenGLContextHandle,System.String) name: GetProcedureAddress - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_GetProcedureAddress_OpenTK_Core_Platform_OpenGLContextHandle_System_String_ + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_GetProcedureAddress_OpenTK_Platform_OpenGLContextHandle_System_String_ - name: ( - - uid: OpenTK.Core.Platform.OpenGLContextHandle + - uid: OpenTK.Platform.OpenGLContextHandle name: OpenGLContextHandle - href: OpenTK.Core.Platform.OpenGLContextHandle.html + href: OpenTK.Platform.OpenGLContextHandle.html - name: ',' - name: " " - uid: System.String @@ -1884,13 +1759,13 @@ references: href: https://learn.microsoft.com/dotnet/api/system.string - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IOpenGLComponent.GetProcedureAddress(OpenTK.Core.Platform.OpenGLContextHandle,System.String) + - uid: OpenTK.Platform.IOpenGLComponent.GetProcedureAddress(OpenTK.Platform.OpenGLContextHandle,System.String) name: GetProcedureAddress - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_GetProcedureAddress_OpenTK_Core_Platform_OpenGLContextHandle_System_String_ + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_GetProcedureAddress_OpenTK_Platform_OpenGLContextHandle_System_String_ - name: ( - - uid: OpenTK.Core.Platform.OpenGLContextHandle + - uid: OpenTK.Platform.OpenGLContextHandle name: OpenGLContextHandle - href: OpenTK.Core.Platform.OpenGLContextHandle.html + href: OpenTK.Platform.OpenGLContextHandle.html - name: ',' - name: " " - uid: System.String @@ -1915,86 +1790,86 @@ references: name: GetCurrentContext nameWithType: X11OpenGLComponent.GetCurrentContext fullName: OpenTK.Platform.Native.X11.X11OpenGLComponent.GetCurrentContext -- uid: OpenTK.Core.Platform.IOpenGLComponent.GetCurrentContext - commentId: M:OpenTK.Core.Platform.IOpenGLComponent.GetCurrentContext - parent: OpenTK.Core.Platform.IOpenGLComponent - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_GetCurrentContext +- uid: OpenTK.Platform.IOpenGLComponent.GetCurrentContext + commentId: M:OpenTK.Platform.IOpenGLComponent.GetCurrentContext + parent: OpenTK.Platform.IOpenGLComponent + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_GetCurrentContext name: GetCurrentContext() nameWithType: IOpenGLComponent.GetCurrentContext() - fullName: OpenTK.Core.Platform.IOpenGLComponent.GetCurrentContext() + fullName: OpenTK.Platform.IOpenGLComponent.GetCurrentContext() spec.csharp: - - uid: OpenTK.Core.Platform.IOpenGLComponent.GetCurrentContext + - uid: OpenTK.Platform.IOpenGLComponent.GetCurrentContext name: GetCurrentContext - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_GetCurrentContext + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_GetCurrentContext - name: ( - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IOpenGLComponent.GetCurrentContext + - uid: OpenTK.Platform.IOpenGLComponent.GetCurrentContext name: GetCurrentContext - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_GetCurrentContext + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_GetCurrentContext - name: ( - name: ) - uid: OpenTK.Platform.Native.X11.X11OpenGLComponent.SetCurrentContext* commentId: Overload:OpenTK.Platform.Native.X11.X11OpenGLComponent.SetCurrentContext - href: OpenTK.Platform.Native.X11.X11OpenGLComponent.html#OpenTK_Platform_Native_X11_X11OpenGLComponent_SetCurrentContext_OpenTK_Core_Platform_OpenGLContextHandle_ + href: OpenTK.Platform.Native.X11.X11OpenGLComponent.html#OpenTK_Platform_Native_X11_X11OpenGLComponent_SetCurrentContext_OpenTK_Platform_OpenGLContextHandle_ name: SetCurrentContext nameWithType: X11OpenGLComponent.SetCurrentContext fullName: OpenTK.Platform.Native.X11.X11OpenGLComponent.SetCurrentContext -- uid: OpenTK.Core.Platform.IOpenGLComponent.SetCurrentContext(OpenTK.Core.Platform.OpenGLContextHandle) - commentId: M:OpenTK.Core.Platform.IOpenGLComponent.SetCurrentContext(OpenTK.Core.Platform.OpenGLContextHandle) - parent: OpenTK.Core.Platform.IOpenGLComponent - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_SetCurrentContext_OpenTK_Core_Platform_OpenGLContextHandle_ +- uid: OpenTK.Platform.IOpenGLComponent.SetCurrentContext(OpenTK.Platform.OpenGLContextHandle) + commentId: M:OpenTK.Platform.IOpenGLComponent.SetCurrentContext(OpenTK.Platform.OpenGLContextHandle) + parent: OpenTK.Platform.IOpenGLComponent + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_SetCurrentContext_OpenTK_Platform_OpenGLContextHandle_ name: SetCurrentContext(OpenGLContextHandle) nameWithType: IOpenGLComponent.SetCurrentContext(OpenGLContextHandle) - fullName: OpenTK.Core.Platform.IOpenGLComponent.SetCurrentContext(OpenTK.Core.Platform.OpenGLContextHandle) + fullName: OpenTK.Platform.IOpenGLComponent.SetCurrentContext(OpenTK.Platform.OpenGLContextHandle) spec.csharp: - - uid: OpenTK.Core.Platform.IOpenGLComponent.SetCurrentContext(OpenTK.Core.Platform.OpenGLContextHandle) + - uid: OpenTK.Platform.IOpenGLComponent.SetCurrentContext(OpenTK.Platform.OpenGLContextHandle) name: SetCurrentContext - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_SetCurrentContext_OpenTK_Core_Platform_OpenGLContextHandle_ + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_SetCurrentContext_OpenTK_Platform_OpenGLContextHandle_ - name: ( - - uid: OpenTK.Core.Platform.OpenGLContextHandle + - uid: OpenTK.Platform.OpenGLContextHandle name: OpenGLContextHandle - href: OpenTK.Core.Platform.OpenGLContextHandle.html + href: OpenTK.Platform.OpenGLContextHandle.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IOpenGLComponent.SetCurrentContext(OpenTK.Core.Platform.OpenGLContextHandle) + - uid: OpenTK.Platform.IOpenGLComponent.SetCurrentContext(OpenTK.Platform.OpenGLContextHandle) name: SetCurrentContext - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_SetCurrentContext_OpenTK_Core_Platform_OpenGLContextHandle_ + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_SetCurrentContext_OpenTK_Platform_OpenGLContextHandle_ - name: ( - - uid: OpenTK.Core.Platform.OpenGLContextHandle + - uid: OpenTK.Platform.OpenGLContextHandle name: OpenGLContextHandle - href: OpenTK.Core.Platform.OpenGLContextHandle.html + href: OpenTK.Platform.OpenGLContextHandle.html - name: ) - uid: OpenTK.Platform.Native.X11.X11OpenGLComponent.GetSharedContext* commentId: Overload:OpenTK.Platform.Native.X11.X11OpenGLComponent.GetSharedContext - href: OpenTK.Platform.Native.X11.X11OpenGLComponent.html#OpenTK_Platform_Native_X11_X11OpenGLComponent_GetSharedContext_OpenTK_Core_Platform_OpenGLContextHandle_ + href: OpenTK.Platform.Native.X11.X11OpenGLComponent.html#OpenTK_Platform_Native_X11_X11OpenGLComponent_GetSharedContext_OpenTK_Platform_OpenGLContextHandle_ name: GetSharedContext nameWithType: X11OpenGLComponent.GetSharedContext fullName: OpenTK.Platform.Native.X11.X11OpenGLComponent.GetSharedContext -- uid: OpenTK.Core.Platform.IOpenGLComponent.GetSharedContext(OpenTK.Core.Platform.OpenGLContextHandle) - commentId: M:OpenTK.Core.Platform.IOpenGLComponent.GetSharedContext(OpenTK.Core.Platform.OpenGLContextHandle) - parent: OpenTK.Core.Platform.IOpenGLComponent - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_GetSharedContext_OpenTK_Core_Platform_OpenGLContextHandle_ +- uid: OpenTK.Platform.IOpenGLComponent.GetSharedContext(OpenTK.Platform.OpenGLContextHandle) + commentId: M:OpenTK.Platform.IOpenGLComponent.GetSharedContext(OpenTK.Platform.OpenGLContextHandle) + parent: OpenTK.Platform.IOpenGLComponent + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_GetSharedContext_OpenTK_Platform_OpenGLContextHandle_ name: GetSharedContext(OpenGLContextHandle) nameWithType: IOpenGLComponent.GetSharedContext(OpenGLContextHandle) - fullName: OpenTK.Core.Platform.IOpenGLComponent.GetSharedContext(OpenTK.Core.Platform.OpenGLContextHandle) + fullName: OpenTK.Platform.IOpenGLComponent.GetSharedContext(OpenTK.Platform.OpenGLContextHandle) spec.csharp: - - uid: OpenTK.Core.Platform.IOpenGLComponent.GetSharedContext(OpenTK.Core.Platform.OpenGLContextHandle) + - uid: OpenTK.Platform.IOpenGLComponent.GetSharedContext(OpenTK.Platform.OpenGLContextHandle) name: GetSharedContext - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_GetSharedContext_OpenTK_Core_Platform_OpenGLContextHandle_ + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_GetSharedContext_OpenTK_Platform_OpenGLContextHandle_ - name: ( - - uid: OpenTK.Core.Platform.OpenGLContextHandle + - uid: OpenTK.Platform.OpenGLContextHandle name: OpenGLContextHandle - href: OpenTK.Core.Platform.OpenGLContextHandle.html + href: OpenTK.Platform.OpenGLContextHandle.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IOpenGLComponent.GetSharedContext(OpenTK.Core.Platform.OpenGLContextHandle) + - uid: OpenTK.Platform.IOpenGLComponent.GetSharedContext(OpenTK.Platform.OpenGLContextHandle) name: GetSharedContext - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_GetSharedContext_OpenTK_Core_Platform_OpenGLContextHandle_ + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_GetSharedContext_OpenTK_Platform_OpenGLContextHandle_ - name: ( - - uid: OpenTK.Core.Platform.OpenGLContextHandle + - uid: OpenTK.Platform.OpenGLContextHandle name: OpenGLContextHandle - href: OpenTK.Core.Platform.OpenGLContextHandle.html + href: OpenTK.Platform.OpenGLContextHandle.html - name: ) - uid: OpenTK.Platform.Native.X11.X11OpenGLComponent.EXT_swap_control_GetMaxSwapInterval* commentId: Overload:OpenTK.Platform.Native.X11.X11OpenGLComponent.EXT_swap_control_GetMaxSwapInterval @@ -2059,21 +1934,21 @@ references: name: SetSwapInterval nameWithType: X11OpenGLComponent.SetSwapInterval fullName: OpenTK.Platform.Native.X11.X11OpenGLComponent.SetSwapInterval -- uid: OpenTK.Core.Platform.IOpenGLComponent.SetSwapInterval(System.Int32) - commentId: M:OpenTK.Core.Platform.IOpenGLComponent.SetSwapInterval(System.Int32) - parent: OpenTK.Core.Platform.IOpenGLComponent +- uid: OpenTK.Platform.IOpenGLComponent.SetSwapInterval(System.Int32) + commentId: M:OpenTK.Platform.IOpenGLComponent.SetSwapInterval(System.Int32) + parent: OpenTK.Platform.IOpenGLComponent isExternal: true - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_SetSwapInterval_System_Int32_ + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_SetSwapInterval_System_Int32_ name: SetSwapInterval(int) nameWithType: IOpenGLComponent.SetSwapInterval(int) - fullName: OpenTK.Core.Platform.IOpenGLComponent.SetSwapInterval(int) + fullName: OpenTK.Platform.IOpenGLComponent.SetSwapInterval(int) nameWithType.vb: IOpenGLComponent.SetSwapInterval(Integer) - fullName.vb: OpenTK.Core.Platform.IOpenGLComponent.SetSwapInterval(Integer) + fullName.vb: OpenTK.Platform.IOpenGLComponent.SetSwapInterval(Integer) name.vb: SetSwapInterval(Integer) spec.csharp: - - uid: OpenTK.Core.Platform.IOpenGLComponent.SetSwapInterval(System.Int32) + - uid: OpenTK.Platform.IOpenGLComponent.SetSwapInterval(System.Int32) name: SetSwapInterval - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_SetSwapInterval_System_Int32_ + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_SetSwapInterval_System_Int32_ - name: ( - uid: System.Int32 name: int @@ -2081,9 +1956,9 @@ references: href: https://learn.microsoft.com/dotnet/api/system.int32 - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IOpenGLComponent.SetSwapInterval(System.Int32) + - uid: OpenTK.Platform.IOpenGLComponent.SetSwapInterval(System.Int32) name: SetSwapInterval - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_SetSwapInterval_System_Int32_ + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_SetSwapInterval_System_Int32_ - name: ( - uid: System.Int32 name: Integer @@ -2107,65 +1982,65 @@ references: name: GetSwapInterval nameWithType: X11OpenGLComponent.GetSwapInterval fullName: OpenTK.Platform.Native.X11.X11OpenGLComponent.GetSwapInterval -- uid: OpenTK.Core.Platform.IOpenGLComponent.GetSwapInterval - commentId: M:OpenTK.Core.Platform.IOpenGLComponent.GetSwapInterval - parent: OpenTK.Core.Platform.IOpenGLComponent - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_GetSwapInterval +- uid: OpenTK.Platform.IOpenGLComponent.GetSwapInterval + commentId: M:OpenTK.Platform.IOpenGLComponent.GetSwapInterval + parent: OpenTK.Platform.IOpenGLComponent + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_GetSwapInterval name: GetSwapInterval() nameWithType: IOpenGLComponent.GetSwapInterval() - fullName: OpenTK.Core.Platform.IOpenGLComponent.GetSwapInterval() + fullName: OpenTK.Platform.IOpenGLComponent.GetSwapInterval() spec.csharp: - - uid: OpenTK.Core.Platform.IOpenGLComponent.GetSwapInterval + - uid: OpenTK.Platform.IOpenGLComponent.GetSwapInterval name: GetSwapInterval - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_GetSwapInterval + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_GetSwapInterval - name: ( - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IOpenGLComponent.GetSwapInterval + - uid: OpenTK.Platform.IOpenGLComponent.GetSwapInterval name: GetSwapInterval - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_GetSwapInterval + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_GetSwapInterval - name: ( - name: ) - uid: OpenTK.Platform.Native.X11.X11OpenGLComponent.SwapBuffers* commentId: Overload:OpenTK.Platform.Native.X11.X11OpenGLComponent.SwapBuffers - href: OpenTK.Platform.Native.X11.X11OpenGLComponent.html#OpenTK_Platform_Native_X11_X11OpenGLComponent_SwapBuffers_OpenTK_Core_Platform_OpenGLContextHandle_ + href: OpenTK.Platform.Native.X11.X11OpenGLComponent.html#OpenTK_Platform_Native_X11_X11OpenGLComponent_SwapBuffers_OpenTK_Platform_OpenGLContextHandle_ name: SwapBuffers nameWithType: X11OpenGLComponent.SwapBuffers fullName: OpenTK.Platform.Native.X11.X11OpenGLComponent.SwapBuffers -- uid: OpenTK.Core.Platform.IOpenGLComponent.SwapBuffers(OpenTK.Core.Platform.OpenGLContextHandle) - commentId: M:OpenTK.Core.Platform.IOpenGLComponent.SwapBuffers(OpenTK.Core.Platform.OpenGLContextHandle) - parent: OpenTK.Core.Platform.IOpenGLComponent - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_SwapBuffers_OpenTK_Core_Platform_OpenGLContextHandle_ +- uid: OpenTK.Platform.IOpenGLComponent.SwapBuffers(OpenTK.Platform.OpenGLContextHandle) + commentId: M:OpenTK.Platform.IOpenGLComponent.SwapBuffers(OpenTK.Platform.OpenGLContextHandle) + parent: OpenTK.Platform.IOpenGLComponent + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_SwapBuffers_OpenTK_Platform_OpenGLContextHandle_ name: SwapBuffers(OpenGLContextHandle) nameWithType: IOpenGLComponent.SwapBuffers(OpenGLContextHandle) - fullName: OpenTK.Core.Platform.IOpenGLComponent.SwapBuffers(OpenTK.Core.Platform.OpenGLContextHandle) + fullName: OpenTK.Platform.IOpenGLComponent.SwapBuffers(OpenTK.Platform.OpenGLContextHandle) spec.csharp: - - uid: OpenTK.Core.Platform.IOpenGLComponent.SwapBuffers(OpenTK.Core.Platform.OpenGLContextHandle) + - uid: OpenTK.Platform.IOpenGLComponent.SwapBuffers(OpenTK.Platform.OpenGLContextHandle) name: SwapBuffers - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_SwapBuffers_OpenTK_Core_Platform_OpenGLContextHandle_ + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_SwapBuffers_OpenTK_Platform_OpenGLContextHandle_ - name: ( - - uid: OpenTK.Core.Platform.OpenGLContextHandle + - uid: OpenTK.Platform.OpenGLContextHandle name: OpenGLContextHandle - href: OpenTK.Core.Platform.OpenGLContextHandle.html + href: OpenTK.Platform.OpenGLContextHandle.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IOpenGLComponent.SwapBuffers(OpenTK.Core.Platform.OpenGLContextHandle) + - uid: OpenTK.Platform.IOpenGLComponent.SwapBuffers(OpenTK.Platform.OpenGLContextHandle) name: SwapBuffers - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_SwapBuffers_OpenTK_Core_Platform_OpenGLContextHandle_ + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_SwapBuffers_OpenTK_Platform_OpenGLContextHandle_ - name: ( - - uid: OpenTK.Core.Platform.OpenGLContextHandle + - uid: OpenTK.Platform.OpenGLContextHandle name: OpenGLContextHandle - href: OpenTK.Core.Platform.OpenGLContextHandle.html + href: OpenTK.Platform.OpenGLContextHandle.html - name: ) - uid: OpenTK.Platform.Native.X11.X11OpenGLComponent.GetGLXContext* commentId: Overload:OpenTK.Platform.Native.X11.X11OpenGLComponent.GetGLXContext - href: OpenTK.Platform.Native.X11.X11OpenGLComponent.html#OpenTK_Platform_Native_X11_X11OpenGLComponent_GetGLXContext_OpenTK_Core_Platform_OpenGLContextHandle_ + href: OpenTK.Platform.Native.X11.X11OpenGLComponent.html#OpenTK_Platform_Native_X11_X11OpenGLComponent_GetGLXContext_OpenTK_Platform_OpenGLContextHandle_ name: GetGLXContext nameWithType: X11OpenGLComponent.GetGLXContext fullName: OpenTK.Platform.Native.X11.X11OpenGLComponent.GetGLXContext - uid: OpenTK.Platform.Native.X11.X11OpenGLComponent.GetGLXWindow* commentId: Overload:OpenTK.Platform.Native.X11.X11OpenGLComponent.GetGLXWindow - href: OpenTK.Platform.Native.X11.X11OpenGLComponent.html#OpenTK_Platform_Native_X11_X11OpenGLComponent_GetGLXWindow_OpenTK_Core_Platform_OpenGLContextHandle_ + href: OpenTK.Platform.Native.X11.X11OpenGLComponent.html#OpenTK_Platform_Native_X11_X11OpenGLComponent_GetGLXWindow_OpenTK_Platform_OpenGLContextHandle_ name: GetGLXWindow nameWithType: X11OpenGLComponent.GetGLXWindow fullName: OpenTK.Platform.Native.X11.X11OpenGLComponent.GetGLXWindow diff --git a/api/OpenTK.Platform.Native.X11.X11ShellComponent.yml b/api/OpenTK.Platform.Native.X11.X11ShellComponent.yml index 377d6bca..dcb305c4 100644 --- a/api/OpenTK.Platform.Native.X11.X11ShellComponent.yml +++ b/api/OpenTK.Platform.Native.X11.X11ShellComponent.yml @@ -6,10 +6,10 @@ items: parent: OpenTK.Platform.Native.X11 children: - OpenTK.Platform.Native.X11.X11ShellComponent.AllowScreenSaver(System.Boolean) - - OpenTK.Platform.Native.X11.X11ShellComponent.GetBatteryInfo(OpenTK.Core.Platform.BatteryInfo@) + - OpenTK.Platform.Native.X11.X11ShellComponent.GetBatteryInfo(OpenTK.Platform.BatteryInfo@) - OpenTK.Platform.Native.X11.X11ShellComponent.GetPreferredTheme - OpenTK.Platform.Native.X11.X11ShellComponent.GetSystemMemoryInformation - - OpenTK.Platform.Native.X11.X11ShellComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + - OpenTK.Platform.Native.X11.X11ShellComponent.Initialize(OpenTK.Platform.ToolkitOptions) - OpenTK.Platform.Native.X11.X11ShellComponent.Logger - OpenTK.Platform.Native.X11.X11ShellComponent.Name - OpenTK.Platform.Native.X11.X11ShellComponent.Provides @@ -21,15 +21,11 @@ items: fullName: OpenTK.Platform.Native.X11.X11ShellComponent type: Class source: - remote: - path: src/OpenTK.Platform.Native/X11/X11ShellComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: X11ShellComponent - path: opentk/src/OpenTK.Platform.Native/X11/X11ShellComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11ShellComponent.cs startLine: 16 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 syntax: content: 'public class X11ShellComponent : IShellComponent, IPalComponent' @@ -37,8 +33,8 @@ items: inheritance: - System.Object implements: - - OpenTK.Core.Platform.IShellComponent - - OpenTK.Core.Platform.IPalComponent + - OpenTK.Platform.IShellComponent + - OpenTK.Platform.IPalComponent inheritedMembers: - System.Object.Equals(System.Object) - System.Object.Equals(System.Object,System.Object) @@ -59,15 +55,11 @@ items: fullName: OpenTK.Platform.Native.X11.X11ShellComponent.Name type: Property source: - remote: - path: src/OpenTK.Platform.Native/X11/X11ShellComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Name - path: opentk/src/OpenTK.Platform.Native/X11/X11ShellComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11ShellComponent.cs startLine: 19 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: Name of the abstraction layer component. example: [] @@ -79,7 +71,7 @@ items: content.vb: Public ReadOnly Property Name As String overload: OpenTK.Platform.Native.X11.X11ShellComponent.Name* implements: - - OpenTK.Core.Platform.IPalComponent.Name + - OpenTK.Platform.IPalComponent.Name - uid: OpenTK.Platform.Native.X11.X11ShellComponent.Provides commentId: P:OpenTK.Platform.Native.X11.X11ShellComponent.Provides id: Provides @@ -92,15 +84,11 @@ items: fullName: OpenTK.Platform.Native.X11.X11ShellComponent.Provides type: Property source: - remote: - path: src/OpenTK.Platform.Native/X11/X11ShellComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Provides - path: opentk/src/OpenTK.Platform.Native/X11/X11ShellComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11ShellComponent.cs startLine: 22 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: Specifies which PAL components this object provides. example: [] @@ -108,11 +96,11 @@ items: content: public PalComponents Provides { get; } parameters: [] return: - type: OpenTK.Core.Platform.PalComponents + type: OpenTK.Platform.PalComponents content.vb: Public ReadOnly Property Provides As PalComponents overload: OpenTK.Platform.Native.X11.X11ShellComponent.Provides* implements: - - OpenTK.Core.Platform.IPalComponent.Provides + - OpenTK.Platform.IPalComponent.Provides - uid: OpenTK.Platform.Native.X11.X11ShellComponent.Logger commentId: P:OpenTK.Platform.Native.X11.X11ShellComponent.Logger id: Logger @@ -125,15 +113,11 @@ items: fullName: OpenTK.Platform.Native.X11.X11ShellComponent.Logger type: Property source: - remote: - path: src/OpenTK.Platform.Native/X11/X11ShellComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Logger - path: opentk/src/OpenTK.Platform.Native/X11/X11ShellComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11ShellComponent.cs startLine: 25 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: Provides a logger for this component. example: [] @@ -145,28 +129,24 @@ items: content.vb: Public Property Logger As ILogger overload: OpenTK.Platform.Native.X11.X11ShellComponent.Logger* implements: - - OpenTK.Core.Platform.IPalComponent.Logger -- uid: OpenTK.Platform.Native.X11.X11ShellComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - commentId: M:OpenTK.Platform.Native.X11.X11ShellComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - id: Initialize(OpenTK.Core.Platform.ToolkitOptions) + - OpenTK.Platform.IPalComponent.Logger +- uid: OpenTK.Platform.Native.X11.X11ShellComponent.Initialize(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Native.X11.X11ShellComponent.Initialize(OpenTK.Platform.ToolkitOptions) + id: Initialize(OpenTK.Platform.ToolkitOptions) parent: OpenTK.Platform.Native.X11.X11ShellComponent langs: - csharp - vb name: Initialize(ToolkitOptions) nameWithType: X11ShellComponent.Initialize(ToolkitOptions) - fullName: OpenTK.Platform.Native.X11.X11ShellComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + fullName: OpenTK.Platform.Native.X11.X11ShellComponent.Initialize(OpenTK.Platform.ToolkitOptions) type: Method source: - remote: - path: src/OpenTK.Platform.Native/X11/X11ShellComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Initialize - path: opentk/src/OpenTK.Platform.Native/X11/X11ShellComponent.cs - startLine: 32 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11ShellComponent.cs + startLine: 55 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: Initialize the component. example: [] @@ -174,12 +154,12 @@ items: content: public void Initialize(ToolkitOptions options) parameters: - id: options - type: OpenTK.Core.Platform.ToolkitOptions + type: OpenTK.Platform.ToolkitOptions description: The options to initialize the component with. content.vb: Public Sub Initialize(options As ToolkitOptions) overload: OpenTK.Platform.Native.X11.X11ShellComponent.Initialize* implements: - - OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + - OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) - uid: OpenTK.Platform.Native.X11.X11ShellComponent.AllowScreenSaver(System.Boolean) commentId: M:OpenTK.Platform.Native.X11.X11ShellComponent.AllowScreenSaver(System.Boolean) id: AllowScreenSaver(System.Boolean) @@ -192,15 +172,11 @@ items: fullName: OpenTK.Platform.Native.X11.X11ShellComponent.AllowScreenSaver(bool) type: Method source: - remote: - path: src/OpenTK.Platform.Native/X11/X11ShellComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: AllowScreenSaver - path: opentk/src/OpenTK.Platform.Native/X11/X11ShellComponent.cs - startLine: 69 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11ShellComponent.cs + startLine: 182 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: >- Sets whether or not a screensaver is allowed to draw on top of the window. @@ -220,31 +196,27 @@ items: content.vb: Public Sub AllowScreenSaver(allow As Boolean) overload: OpenTK.Platform.Native.X11.X11ShellComponent.AllowScreenSaver* implements: - - OpenTK.Core.Platform.IShellComponent.AllowScreenSaver(System.Boolean) + - OpenTK.Platform.IShellComponent.AllowScreenSaver(System.Boolean) nameWithType.vb: X11ShellComponent.AllowScreenSaver(Boolean) fullName.vb: OpenTK.Platform.Native.X11.X11ShellComponent.AllowScreenSaver(Boolean) name.vb: AllowScreenSaver(Boolean) -- uid: OpenTK.Platform.Native.X11.X11ShellComponent.GetBatteryInfo(OpenTK.Core.Platform.BatteryInfo@) - commentId: M:OpenTK.Platform.Native.X11.X11ShellComponent.GetBatteryInfo(OpenTK.Core.Platform.BatteryInfo@) - id: GetBatteryInfo(OpenTK.Core.Platform.BatteryInfo@) +- uid: OpenTK.Platform.Native.X11.X11ShellComponent.GetBatteryInfo(OpenTK.Platform.BatteryInfo@) + commentId: M:OpenTK.Platform.Native.X11.X11ShellComponent.GetBatteryInfo(OpenTK.Platform.BatteryInfo@) + id: GetBatteryInfo(OpenTK.Platform.BatteryInfo@) parent: OpenTK.Platform.Native.X11.X11ShellComponent langs: - csharp - vb name: GetBatteryInfo(out BatteryInfo) nameWithType: X11ShellComponent.GetBatteryInfo(out BatteryInfo) - fullName: OpenTK.Platform.Native.X11.X11ShellComponent.GetBatteryInfo(out OpenTK.Core.Platform.BatteryInfo) + fullName: OpenTK.Platform.Native.X11.X11ShellComponent.GetBatteryInfo(out OpenTK.Platform.BatteryInfo) type: Method source: - remote: - path: src/OpenTK.Platform.Native/X11/X11ShellComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetBatteryInfo - path: opentk/src/OpenTK.Platform.Native/X11/X11ShellComponent.cs - startLine: 101 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11ShellComponent.cs + startLine: 214 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: Gets the battery status of the computer. example: [] @@ -252,19 +224,19 @@ items: content: public BatteryStatus GetBatteryInfo(out BatteryInfo batteryInfo) parameters: - id: batteryInfo - type: OpenTK.Core.Platform.BatteryInfo + type: OpenTK.Platform.BatteryInfo description: >- The battery status of the computer, - this is only filled with values when is returned. + this is only filled with values when is returned. return: - type: OpenTK.Core.Platform.BatteryStatus + type: OpenTK.Platform.BatteryStatus description: Whether the computer has a battery or not, or if this function failed. content.vb: Public Function GetBatteryInfo(batteryInfo As BatteryInfo) As BatteryStatus overload: OpenTK.Platform.Native.X11.X11ShellComponent.GetBatteryInfo* implements: - - OpenTK.Core.Platform.IShellComponent.GetBatteryInfo(OpenTK.Core.Platform.BatteryInfo@) + - OpenTK.Platform.IShellComponent.GetBatteryInfo(OpenTK.Platform.BatteryInfo@) nameWithType.vb: X11ShellComponent.GetBatteryInfo(BatteryInfo) - fullName.vb: OpenTK.Platform.Native.X11.X11ShellComponent.GetBatteryInfo(OpenTK.Core.Platform.BatteryInfo) + fullName.vb: OpenTK.Platform.Native.X11.X11ShellComponent.GetBatteryInfo(OpenTK.Platform.BatteryInfo) name.vb: GetBatteryInfo(BatteryInfo) - uid: OpenTK.Platform.Native.X11.X11ShellComponent.GetPreferredTheme commentId: M:OpenTK.Platform.Native.X11.X11ShellComponent.GetPreferredTheme @@ -278,27 +250,23 @@ items: fullName: OpenTK.Platform.Native.X11.X11ShellComponent.GetPreferredTheme() type: Method source: - remote: - path: src/OpenTK.Platform.Native/X11/X11ShellComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetPreferredTheme - path: opentk/src/OpenTK.Platform.Native/X11/X11ShellComponent.cs - startLine: 293 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11ShellComponent.cs + startLine: 439 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: Gets the user preference for application theme. example: [] syntax: content: public ThemeInfo GetPreferredTheme() return: - type: OpenTK.Core.Platform.ThemeInfo + type: OpenTK.Platform.ThemeInfo description: The user set preferred theme. content.vb: Public Function GetPreferredTheme() As ThemeInfo overload: OpenTK.Platform.Native.X11.X11ShellComponent.GetPreferredTheme* implements: - - OpenTK.Core.Platform.IShellComponent.GetPreferredTheme + - OpenTK.Platform.IShellComponent.GetPreferredTheme - uid: OpenTK.Platform.Native.X11.X11ShellComponent.GetSystemMemoryInformation commentId: M:OpenTK.Platform.Native.X11.X11ShellComponent.GetSystemMemoryInformation id: GetSystemMemoryInformation @@ -311,27 +279,23 @@ items: fullName: OpenTK.Platform.Native.X11.X11ShellComponent.GetSystemMemoryInformation() type: Method source: - remote: - path: src/OpenTK.Platform.Native/X11/X11ShellComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetSystemMemoryInformation - path: opentk/src/OpenTK.Platform.Native/X11/X11ShellComponent.cs - startLine: 324 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11ShellComponent.cs + startLine: 448 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: Gets information about the memory of the device and the current status. example: [] syntax: content: public SystemMemoryInfo GetSystemMemoryInformation() return: - type: OpenTK.Core.Platform.SystemMemoryInfo + type: OpenTK.Platform.SystemMemoryInfo description: The memory info. content.vb: Public Function GetSystemMemoryInformation() As SystemMemoryInfo overload: OpenTK.Platform.Native.X11.X11ShellComponent.GetSystemMemoryInformation* implements: - - OpenTK.Core.Platform.IShellComponent.GetSystemMemoryInformation + - OpenTK.Platform.IShellComponent.GetSystemMemoryInformation references: - uid: OpenTK.Platform.Native.X11 commentId: N:OpenTK.Platform.Native.X11 @@ -382,20 +346,20 @@ references: nameWithType.vb: Object fullName.vb: Object name.vb: Object -- uid: OpenTK.Core.Platform.IShellComponent - commentId: T:OpenTK.Core.Platform.IShellComponent - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.IShellComponent.html +- uid: OpenTK.Platform.IShellComponent + commentId: T:OpenTK.Platform.IShellComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IShellComponent.html name: IShellComponent nameWithType: IShellComponent - fullName: OpenTK.Core.Platform.IShellComponent -- uid: OpenTK.Core.Platform.IPalComponent - commentId: T:OpenTK.Core.Platform.IPalComponent - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.IPalComponent.html + fullName: OpenTK.Platform.IShellComponent +- uid: OpenTK.Platform.IPalComponent + commentId: T:OpenTK.Platform.IPalComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IPalComponent.html name: IPalComponent nameWithType: IPalComponent - fullName: OpenTK.Core.Platform.IPalComponent + fullName: OpenTK.Platform.IPalComponent - uid: System.Object.Equals(System.Object) commentId: M:System.Object.Equals(System.Object) parent: System.Object @@ -622,49 +586,41 @@ references: name: System nameWithType: System fullName: System -- uid: OpenTK.Core.Platform - commentId: N:OpenTK.Core.Platform +- uid: OpenTK.Platform + commentId: N:OpenTK.Platform href: OpenTK.html - name: OpenTK.Core.Platform - nameWithType: OpenTK.Core.Platform - fullName: OpenTK.Core.Platform + name: OpenTK.Platform + nameWithType: OpenTK.Platform + fullName: OpenTK.Platform spec.csharp: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html spec.vb: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html - uid: OpenTK.Platform.Native.X11.X11ShellComponent.Name* commentId: Overload:OpenTK.Platform.Native.X11.X11ShellComponent.Name href: OpenTK.Platform.Native.X11.X11ShellComponent.html#OpenTK_Platform_Native_X11_X11ShellComponent_Name name: Name nameWithType: X11ShellComponent.Name fullName: OpenTK.Platform.Native.X11.X11ShellComponent.Name -- uid: OpenTK.Core.Platform.IPalComponent.Name - commentId: P:OpenTK.Core.Platform.IPalComponent.Name - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Name +- uid: OpenTK.Platform.IPalComponent.Name + commentId: P:OpenTK.Platform.IPalComponent.Name + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Name name: Name nameWithType: IPalComponent.Name - fullName: OpenTK.Core.Platform.IPalComponent.Name + fullName: OpenTK.Platform.IPalComponent.Name - uid: System.String commentId: T:System.String parent: System @@ -682,33 +638,33 @@ references: name: Provides nameWithType: X11ShellComponent.Provides fullName: OpenTK.Platform.Native.X11.X11ShellComponent.Provides -- uid: OpenTK.Core.Platform.IPalComponent.Provides - commentId: P:OpenTK.Core.Platform.IPalComponent.Provides - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Provides +- uid: OpenTK.Platform.IPalComponent.Provides + commentId: P:OpenTK.Platform.IPalComponent.Provides + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Provides name: Provides nameWithType: IPalComponent.Provides - fullName: OpenTK.Core.Platform.IPalComponent.Provides -- uid: OpenTK.Core.Platform.PalComponents - commentId: T:OpenTK.Core.Platform.PalComponents - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.PalComponents.html + fullName: OpenTK.Platform.IPalComponent.Provides +- uid: OpenTK.Platform.PalComponents + commentId: T:OpenTK.Platform.PalComponents + parent: OpenTK.Platform + href: OpenTK.Platform.PalComponents.html name: PalComponents nameWithType: PalComponents - fullName: OpenTK.Core.Platform.PalComponents + fullName: OpenTK.Platform.PalComponents - uid: OpenTK.Platform.Native.X11.X11ShellComponent.Logger* commentId: Overload:OpenTK.Platform.Native.X11.X11ShellComponent.Logger href: OpenTK.Platform.Native.X11.X11ShellComponent.html#OpenTK_Platform_Native_X11_X11ShellComponent_Logger name: Logger nameWithType: X11ShellComponent.Logger fullName: OpenTK.Platform.Native.X11.X11ShellComponent.Logger -- uid: OpenTK.Core.Platform.IPalComponent.Logger - commentId: P:OpenTK.Core.Platform.IPalComponent.Logger - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Logger +- uid: OpenTK.Platform.IPalComponent.Logger + commentId: P:OpenTK.Platform.IPalComponent.Logger + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Logger name: Logger nameWithType: IPalComponent.Logger - fullName: OpenTK.Core.Platform.IPalComponent.Logger + fullName: OpenTK.Platform.IPalComponent.Logger - uid: OpenTK.Core.Utility.ILogger commentId: T:OpenTK.Core.Utility.ILogger parent: OpenTK.Core.Utility @@ -748,63 +704,63 @@ references: href: OpenTK.Core.Utility.html - uid: OpenTK.Platform.Native.X11.X11ShellComponent.Initialize* commentId: Overload:OpenTK.Platform.Native.X11.X11ShellComponent.Initialize - href: OpenTK.Platform.Native.X11.X11ShellComponent.html#OpenTK_Platform_Native_X11_X11ShellComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + href: OpenTK.Platform.Native.X11.X11ShellComponent.html#OpenTK_Platform_Native_X11_X11ShellComponent_Initialize_OpenTK_Platform_ToolkitOptions_ name: Initialize nameWithType: X11ShellComponent.Initialize fullName: OpenTK.Platform.Native.X11.X11ShellComponent.Initialize -- uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - commentId: M:OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ +- uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ name: Initialize(ToolkitOptions) nameWithType: IPalComponent.Initialize(ToolkitOptions) - fullName: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + fullName: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) spec.csharp: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + - uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.ToolkitOptions + - uid: OpenTK.Platform.ToolkitOptions name: ToolkitOptions - href: OpenTK.Core.Platform.ToolkitOptions.html + href: OpenTK.Platform.ToolkitOptions.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + - uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.ToolkitOptions + - uid: OpenTK.Platform.ToolkitOptions name: ToolkitOptions - href: OpenTK.Core.Platform.ToolkitOptions.html + href: OpenTK.Platform.ToolkitOptions.html - name: ) -- uid: OpenTK.Core.Platform.ToolkitOptions - commentId: T:OpenTK.Core.Platform.ToolkitOptions - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.ToolkitOptions.html +- uid: OpenTK.Platform.ToolkitOptions + commentId: T:OpenTK.Platform.ToolkitOptions + parent: OpenTK.Platform + href: OpenTK.Platform.ToolkitOptions.html name: ToolkitOptions nameWithType: ToolkitOptions - fullName: OpenTK.Core.Platform.ToolkitOptions + fullName: OpenTK.Platform.ToolkitOptions - uid: OpenTK.Platform.Native.X11.X11ShellComponent.AllowScreenSaver* commentId: Overload:OpenTK.Platform.Native.X11.X11ShellComponent.AllowScreenSaver href: OpenTK.Platform.Native.X11.X11ShellComponent.html#OpenTK_Platform_Native_X11_X11ShellComponent_AllowScreenSaver_System_Boolean_ name: AllowScreenSaver nameWithType: X11ShellComponent.AllowScreenSaver fullName: OpenTK.Platform.Native.X11.X11ShellComponent.AllowScreenSaver -- uid: OpenTK.Core.Platform.IShellComponent.AllowScreenSaver(System.Boolean) - commentId: M:OpenTK.Core.Platform.IShellComponent.AllowScreenSaver(System.Boolean) - parent: OpenTK.Core.Platform.IShellComponent +- uid: OpenTK.Platform.IShellComponent.AllowScreenSaver(System.Boolean) + commentId: M:OpenTK.Platform.IShellComponent.AllowScreenSaver(System.Boolean) + parent: OpenTK.Platform.IShellComponent isExternal: true - href: OpenTK.Core.Platform.IShellComponent.html#OpenTK_Core_Platform_IShellComponent_AllowScreenSaver_System_Boolean_ + href: OpenTK.Platform.IShellComponent.html#OpenTK_Platform_IShellComponent_AllowScreenSaver_System_Boolean_ name: AllowScreenSaver(bool) nameWithType: IShellComponent.AllowScreenSaver(bool) - fullName: OpenTK.Core.Platform.IShellComponent.AllowScreenSaver(bool) + fullName: OpenTK.Platform.IShellComponent.AllowScreenSaver(bool) nameWithType.vb: IShellComponent.AllowScreenSaver(Boolean) - fullName.vb: OpenTK.Core.Platform.IShellComponent.AllowScreenSaver(Boolean) + fullName.vb: OpenTK.Platform.IShellComponent.AllowScreenSaver(Boolean) name.vb: AllowScreenSaver(Boolean) spec.csharp: - - uid: OpenTK.Core.Platform.IShellComponent.AllowScreenSaver(System.Boolean) + - uid: OpenTK.Platform.IShellComponent.AllowScreenSaver(System.Boolean) name: AllowScreenSaver - href: OpenTK.Core.Platform.IShellComponent.html#OpenTK_Core_Platform_IShellComponent_AllowScreenSaver_System_Boolean_ + href: OpenTK.Platform.IShellComponent.html#OpenTK_Platform_IShellComponent_AllowScreenSaver_System_Boolean_ - name: ( - uid: System.Boolean name: bool @@ -812,9 +768,9 @@ references: href: https://learn.microsoft.com/dotnet/api/system.boolean - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IShellComponent.AllowScreenSaver(System.Boolean) + - uid: OpenTK.Platform.IShellComponent.AllowScreenSaver(System.Boolean) name: AllowScreenSaver - href: OpenTK.Core.Platform.IShellComponent.html#OpenTK_Core_Platform_IShellComponent_AllowScreenSaver_System_Boolean_ + href: OpenTK.Platform.IShellComponent.html#OpenTK_Platform_IShellComponent_AllowScreenSaver_System_Boolean_ - name: ( - uid: System.Boolean name: Boolean @@ -832,123 +788,123 @@ references: nameWithType.vb: Boolean fullName.vb: Boolean name.vb: Boolean -- uid: OpenTK.Core.Platform.BatteryStatus.HasSystemBattery - commentId: F:OpenTK.Core.Platform.BatteryStatus.HasSystemBattery - href: OpenTK.Core.Platform.BatteryStatus.html#OpenTK_Core_Platform_BatteryStatus_HasSystemBattery +- uid: OpenTK.Platform.BatteryStatus.HasSystemBattery + commentId: F:OpenTK.Platform.BatteryStatus.HasSystemBattery + href: OpenTK.Platform.BatteryStatus.html#OpenTK_Platform_BatteryStatus_HasSystemBattery name: HasSystemBattery nameWithType: BatteryStatus.HasSystemBattery - fullName: OpenTK.Core.Platform.BatteryStatus.HasSystemBattery + fullName: OpenTK.Platform.BatteryStatus.HasSystemBattery - uid: OpenTK.Platform.Native.X11.X11ShellComponent.GetBatteryInfo* commentId: Overload:OpenTK.Platform.Native.X11.X11ShellComponent.GetBatteryInfo - href: OpenTK.Platform.Native.X11.X11ShellComponent.html#OpenTK_Platform_Native_X11_X11ShellComponent_GetBatteryInfo_OpenTK_Core_Platform_BatteryInfo__ + href: OpenTK.Platform.Native.X11.X11ShellComponent.html#OpenTK_Platform_Native_X11_X11ShellComponent_GetBatteryInfo_OpenTK_Platform_BatteryInfo__ name: GetBatteryInfo nameWithType: X11ShellComponent.GetBatteryInfo fullName: OpenTK.Platform.Native.X11.X11ShellComponent.GetBatteryInfo -- uid: OpenTK.Core.Platform.IShellComponent.GetBatteryInfo(OpenTK.Core.Platform.BatteryInfo@) - commentId: M:OpenTK.Core.Platform.IShellComponent.GetBatteryInfo(OpenTK.Core.Platform.BatteryInfo@) - parent: OpenTK.Core.Platform.IShellComponent - href: OpenTK.Core.Platform.IShellComponent.html#OpenTK_Core_Platform_IShellComponent_GetBatteryInfo_OpenTK_Core_Platform_BatteryInfo__ +- uid: OpenTK.Platform.IShellComponent.GetBatteryInfo(OpenTK.Platform.BatteryInfo@) + commentId: M:OpenTK.Platform.IShellComponent.GetBatteryInfo(OpenTK.Platform.BatteryInfo@) + parent: OpenTK.Platform.IShellComponent + href: OpenTK.Platform.IShellComponent.html#OpenTK_Platform_IShellComponent_GetBatteryInfo_OpenTK_Platform_BatteryInfo__ name: GetBatteryInfo(out BatteryInfo) nameWithType: IShellComponent.GetBatteryInfo(out BatteryInfo) - fullName: OpenTK.Core.Platform.IShellComponent.GetBatteryInfo(out OpenTK.Core.Platform.BatteryInfo) + fullName: OpenTK.Platform.IShellComponent.GetBatteryInfo(out OpenTK.Platform.BatteryInfo) nameWithType.vb: IShellComponent.GetBatteryInfo(BatteryInfo) - fullName.vb: OpenTK.Core.Platform.IShellComponent.GetBatteryInfo(OpenTK.Core.Platform.BatteryInfo) + fullName.vb: OpenTK.Platform.IShellComponent.GetBatteryInfo(OpenTK.Platform.BatteryInfo) name.vb: GetBatteryInfo(BatteryInfo) spec.csharp: - - uid: OpenTK.Core.Platform.IShellComponent.GetBatteryInfo(OpenTK.Core.Platform.BatteryInfo@) + - uid: OpenTK.Platform.IShellComponent.GetBatteryInfo(OpenTK.Platform.BatteryInfo@) name: GetBatteryInfo - href: OpenTK.Core.Platform.IShellComponent.html#OpenTK_Core_Platform_IShellComponent_GetBatteryInfo_OpenTK_Core_Platform_BatteryInfo__ + href: OpenTK.Platform.IShellComponent.html#OpenTK_Platform_IShellComponent_GetBatteryInfo_OpenTK_Platform_BatteryInfo__ - name: ( - name: out - name: " " - - uid: OpenTK.Core.Platform.BatteryInfo + - uid: OpenTK.Platform.BatteryInfo name: BatteryInfo - href: OpenTK.Core.Platform.BatteryInfo.html + href: OpenTK.Platform.BatteryInfo.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IShellComponent.GetBatteryInfo(OpenTK.Core.Platform.BatteryInfo@) + - uid: OpenTK.Platform.IShellComponent.GetBatteryInfo(OpenTK.Platform.BatteryInfo@) name: GetBatteryInfo - href: OpenTK.Core.Platform.IShellComponent.html#OpenTK_Core_Platform_IShellComponent_GetBatteryInfo_OpenTK_Core_Platform_BatteryInfo__ + href: OpenTK.Platform.IShellComponent.html#OpenTK_Platform_IShellComponent_GetBatteryInfo_OpenTK_Platform_BatteryInfo__ - name: ( - - uid: OpenTK.Core.Platform.BatteryInfo + - uid: OpenTK.Platform.BatteryInfo name: BatteryInfo - href: OpenTK.Core.Platform.BatteryInfo.html + href: OpenTK.Platform.BatteryInfo.html - name: ) -- uid: OpenTK.Core.Platform.BatteryInfo - commentId: T:OpenTK.Core.Platform.BatteryInfo - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.BatteryInfo.html +- uid: OpenTK.Platform.BatteryInfo + commentId: T:OpenTK.Platform.BatteryInfo + parent: OpenTK.Platform + href: OpenTK.Platform.BatteryInfo.html name: BatteryInfo nameWithType: BatteryInfo - fullName: OpenTK.Core.Platform.BatteryInfo -- uid: OpenTK.Core.Platform.BatteryStatus - commentId: T:OpenTK.Core.Platform.BatteryStatus - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.BatteryStatus.html + fullName: OpenTK.Platform.BatteryInfo +- uid: OpenTK.Platform.BatteryStatus + commentId: T:OpenTK.Platform.BatteryStatus + parent: OpenTK.Platform + href: OpenTK.Platform.BatteryStatus.html name: BatteryStatus nameWithType: BatteryStatus - fullName: OpenTK.Core.Platform.BatteryStatus + fullName: OpenTK.Platform.BatteryStatus - uid: OpenTK.Platform.Native.X11.X11ShellComponent.GetPreferredTheme* commentId: Overload:OpenTK.Platform.Native.X11.X11ShellComponent.GetPreferredTheme href: OpenTK.Platform.Native.X11.X11ShellComponent.html#OpenTK_Platform_Native_X11_X11ShellComponent_GetPreferredTheme name: GetPreferredTheme nameWithType: X11ShellComponent.GetPreferredTheme fullName: OpenTK.Platform.Native.X11.X11ShellComponent.GetPreferredTheme -- uid: OpenTK.Core.Platform.IShellComponent.GetPreferredTheme - commentId: M:OpenTK.Core.Platform.IShellComponent.GetPreferredTheme - parent: OpenTK.Core.Platform.IShellComponent - href: OpenTK.Core.Platform.IShellComponent.html#OpenTK_Core_Platform_IShellComponent_GetPreferredTheme +- uid: OpenTK.Platform.IShellComponent.GetPreferredTheme + commentId: M:OpenTK.Platform.IShellComponent.GetPreferredTheme + parent: OpenTK.Platform.IShellComponent + href: OpenTK.Platform.IShellComponent.html#OpenTK_Platform_IShellComponent_GetPreferredTheme name: GetPreferredTheme() nameWithType: IShellComponent.GetPreferredTheme() - fullName: OpenTK.Core.Platform.IShellComponent.GetPreferredTheme() + fullName: OpenTK.Platform.IShellComponent.GetPreferredTheme() spec.csharp: - - uid: OpenTK.Core.Platform.IShellComponent.GetPreferredTheme + - uid: OpenTK.Platform.IShellComponent.GetPreferredTheme name: GetPreferredTheme - href: OpenTK.Core.Platform.IShellComponent.html#OpenTK_Core_Platform_IShellComponent_GetPreferredTheme + href: OpenTK.Platform.IShellComponent.html#OpenTK_Platform_IShellComponent_GetPreferredTheme - name: ( - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IShellComponent.GetPreferredTheme + - uid: OpenTK.Platform.IShellComponent.GetPreferredTheme name: GetPreferredTheme - href: OpenTK.Core.Platform.IShellComponent.html#OpenTK_Core_Platform_IShellComponent_GetPreferredTheme + href: OpenTK.Platform.IShellComponent.html#OpenTK_Platform_IShellComponent_GetPreferredTheme - name: ( - name: ) -- uid: OpenTK.Core.Platform.ThemeInfo - commentId: T:OpenTK.Core.Platform.ThemeInfo - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.ThemeInfo.html +- uid: OpenTK.Platform.ThemeInfo + commentId: T:OpenTK.Platform.ThemeInfo + parent: OpenTK.Platform + href: OpenTK.Platform.ThemeInfo.html name: ThemeInfo nameWithType: ThemeInfo - fullName: OpenTK.Core.Platform.ThemeInfo + fullName: OpenTK.Platform.ThemeInfo - uid: OpenTK.Platform.Native.X11.X11ShellComponent.GetSystemMemoryInformation* commentId: Overload:OpenTK.Platform.Native.X11.X11ShellComponent.GetSystemMemoryInformation href: OpenTK.Platform.Native.X11.X11ShellComponent.html#OpenTK_Platform_Native_X11_X11ShellComponent_GetSystemMemoryInformation name: GetSystemMemoryInformation nameWithType: X11ShellComponent.GetSystemMemoryInformation fullName: OpenTK.Platform.Native.X11.X11ShellComponent.GetSystemMemoryInformation -- uid: OpenTK.Core.Platform.IShellComponent.GetSystemMemoryInformation - commentId: M:OpenTK.Core.Platform.IShellComponent.GetSystemMemoryInformation - parent: OpenTK.Core.Platform.IShellComponent - href: OpenTK.Core.Platform.IShellComponent.html#OpenTK_Core_Platform_IShellComponent_GetSystemMemoryInformation +- uid: OpenTK.Platform.IShellComponent.GetSystemMemoryInformation + commentId: M:OpenTK.Platform.IShellComponent.GetSystemMemoryInformation + parent: OpenTK.Platform.IShellComponent + href: OpenTK.Platform.IShellComponent.html#OpenTK_Platform_IShellComponent_GetSystemMemoryInformation name: GetSystemMemoryInformation() nameWithType: IShellComponent.GetSystemMemoryInformation() - fullName: OpenTK.Core.Platform.IShellComponent.GetSystemMemoryInformation() + fullName: OpenTK.Platform.IShellComponent.GetSystemMemoryInformation() spec.csharp: - - uid: OpenTK.Core.Platform.IShellComponent.GetSystemMemoryInformation + - uid: OpenTK.Platform.IShellComponent.GetSystemMemoryInformation name: GetSystemMemoryInformation - href: OpenTK.Core.Platform.IShellComponent.html#OpenTK_Core_Platform_IShellComponent_GetSystemMemoryInformation + href: OpenTK.Platform.IShellComponent.html#OpenTK_Platform_IShellComponent_GetSystemMemoryInformation - name: ( - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IShellComponent.GetSystemMemoryInformation + - uid: OpenTK.Platform.IShellComponent.GetSystemMemoryInformation name: GetSystemMemoryInformation - href: OpenTK.Core.Platform.IShellComponent.html#OpenTK_Core_Platform_IShellComponent_GetSystemMemoryInformation + href: OpenTK.Platform.IShellComponent.html#OpenTK_Platform_IShellComponent_GetSystemMemoryInformation - name: ( - name: ) -- uid: OpenTK.Core.Platform.SystemMemoryInfo - commentId: T:OpenTK.Core.Platform.SystemMemoryInfo - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.SystemMemoryInfo.html +- uid: OpenTK.Platform.SystemMemoryInfo + commentId: T:OpenTK.Platform.SystemMemoryInfo + parent: OpenTK.Platform + href: OpenTK.Platform.SystemMemoryInfo.html name: SystemMemoryInfo nameWithType: SystemMemoryInfo - fullName: OpenTK.Core.Platform.SystemMemoryInfo + fullName: OpenTK.Platform.SystemMemoryInfo diff --git a/api/OpenTK.Platform.Native.X11.X11WindowComponent.yml b/api/OpenTK.Platform.Native.X11.X11WindowComponent.yml index 59791b08..72cfc21d 100644 --- a/api/OpenTK.Platform.Native.X11.X11WindowComponent.yml +++ b/api/OpenTK.Platform.Native.X11.X11WindowComponent.yml @@ -9,62 +9,62 @@ items: - OpenTK.Platform.Native.X11.X11WindowComponent.CanGetDisplay - OpenTK.Platform.Native.X11.X11WindowComponent.CanSetCursor - OpenTK.Platform.Native.X11.X11WindowComponent.CanSetIcon - - OpenTK.Platform.Native.X11.X11WindowComponent.ClientToScreen(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) - - OpenTK.Platform.Native.X11.X11WindowComponent.Create(OpenTK.Core.Platform.GraphicsApiHints) - - OpenTK.Platform.Native.X11.X11WindowComponent.DemandAttention(OpenTK.Core.Platform.WindowHandle) - - OpenTK.Platform.Native.X11.X11WindowComponent.Destroy(OpenTK.Core.Platform.WindowHandle) - - OpenTK.Platform.Native.X11.X11WindowComponent.FocusWindow(OpenTK.Core.Platform.WindowHandle) + - OpenTK.Platform.Native.X11.X11WindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) + - OpenTK.Platform.Native.X11.X11WindowComponent.Create(OpenTK.Platform.GraphicsApiHints) + - OpenTK.Platform.Native.X11.X11WindowComponent.DemandAttention(OpenTK.Platform.WindowHandle) + - OpenTK.Platform.Native.X11.X11WindowComponent.Destroy(OpenTK.Platform.WindowHandle) + - OpenTK.Platform.Native.X11.X11WindowComponent.FocusWindow(OpenTK.Platform.WindowHandle) - OpenTK.Platform.Native.X11.X11WindowComponent.FreedesktopWindowManagerName - - OpenTK.Platform.Native.X11.X11WindowComponent.GetBorderStyle(OpenTK.Core.Platform.WindowHandle) - - OpenTK.Platform.Native.X11.X11WindowComponent.GetBounds(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) - - OpenTK.Platform.Native.X11.X11WindowComponent.GetClientBounds(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) - - OpenTK.Platform.Native.X11.X11WindowComponent.GetClientPosition(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) - - OpenTK.Platform.Native.X11.X11WindowComponent.GetClientSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) - - OpenTK.Platform.Native.X11.X11WindowComponent.GetCursorCaptureMode(OpenTK.Core.Platform.WindowHandle) - - OpenTK.Platform.Native.X11.X11WindowComponent.GetDisplay(OpenTK.Core.Platform.WindowHandle) - - OpenTK.Platform.Native.X11.X11WindowComponent.GetFramebufferSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) - - OpenTK.Platform.Native.X11.X11WindowComponent.GetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle@) - - OpenTK.Platform.Native.X11.X11WindowComponent.GetIcon(OpenTK.Core.Platform.WindowHandle) - - OpenTK.Platform.Native.X11.X11WindowComponent.GetIconifiedTitle(OpenTK.Core.Platform.WindowHandle) - - OpenTK.Platform.Native.X11.X11WindowComponent.GetMaxClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) - - OpenTK.Platform.Native.X11.X11WindowComponent.GetMinClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) - - OpenTK.Platform.Native.X11.X11WindowComponent.GetMode(OpenTK.Core.Platform.WindowHandle) - - OpenTK.Platform.Native.X11.X11WindowComponent.GetPosition(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) - - OpenTK.Platform.Native.X11.X11WindowComponent.GetScaleFactor(OpenTK.Core.Platform.WindowHandle,System.Single@,System.Single@) - - OpenTK.Platform.Native.X11.X11WindowComponent.GetSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) - - OpenTK.Platform.Native.X11.X11WindowComponent.GetTitle(OpenTK.Core.Platform.WindowHandle) + - OpenTK.Platform.Native.X11.X11WindowComponent.GetBorderStyle(OpenTK.Platform.WindowHandle) + - OpenTK.Platform.Native.X11.X11WindowComponent.GetBounds(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) + - OpenTK.Platform.Native.X11.X11WindowComponent.GetClientBounds(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) + - OpenTK.Platform.Native.X11.X11WindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + - OpenTK.Platform.Native.X11.X11WindowComponent.GetClientSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + - OpenTK.Platform.Native.X11.X11WindowComponent.GetCursorCaptureMode(OpenTK.Platform.WindowHandle) + - OpenTK.Platform.Native.X11.X11WindowComponent.GetDisplay(OpenTK.Platform.WindowHandle) + - OpenTK.Platform.Native.X11.X11WindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + - OpenTK.Platform.Native.X11.X11WindowComponent.GetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle@) + - OpenTK.Platform.Native.X11.X11WindowComponent.GetIcon(OpenTK.Platform.WindowHandle) + - OpenTK.Platform.Native.X11.X11WindowComponent.GetIconifiedTitle(OpenTK.Platform.WindowHandle) + - OpenTK.Platform.Native.X11.X11WindowComponent.GetMaxClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) + - OpenTK.Platform.Native.X11.X11WindowComponent.GetMinClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) + - OpenTK.Platform.Native.X11.X11WindowComponent.GetMode(OpenTK.Platform.WindowHandle) + - OpenTK.Platform.Native.X11.X11WindowComponent.GetPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + - OpenTK.Platform.Native.X11.X11WindowComponent.GetScaleFactor(OpenTK.Platform.WindowHandle,System.Single@,System.Single@) + - OpenTK.Platform.Native.X11.X11WindowComponent.GetSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + - OpenTK.Platform.Native.X11.X11WindowComponent.GetTitle(OpenTK.Platform.WindowHandle) - OpenTK.Platform.Native.X11.X11WindowComponent.GetX11Display - - OpenTK.Platform.Native.X11.X11WindowComponent.GetX11Window(OpenTK.Core.Platform.WindowHandle) - - OpenTK.Platform.Native.X11.X11WindowComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - - OpenTK.Platform.Native.X11.X11WindowComponent.IsAlwaysOnTop(OpenTK.Core.Platform.WindowHandle) - - OpenTK.Platform.Native.X11.X11WindowComponent.IsFocused(OpenTK.Core.Platform.WindowHandle) - - OpenTK.Platform.Native.X11.X11WindowComponent.IsWindowDestroyed(OpenTK.Core.Platform.WindowHandle) + - OpenTK.Platform.Native.X11.X11WindowComponent.GetX11Window(OpenTK.Platform.WindowHandle) + - OpenTK.Platform.Native.X11.X11WindowComponent.Initialize(OpenTK.Platform.ToolkitOptions) + - OpenTK.Platform.Native.X11.X11WindowComponent.IsAlwaysOnTop(OpenTK.Platform.WindowHandle) + - OpenTK.Platform.Native.X11.X11WindowComponent.IsFocused(OpenTK.Platform.WindowHandle) + - OpenTK.Platform.Native.X11.X11WindowComponent.IsWindowDestroyed(OpenTK.Platform.WindowHandle) - OpenTK.Platform.Native.X11.X11WindowComponent.IsWindowManagerFreedesktop - OpenTK.Platform.Native.X11.X11WindowComponent.Logger - OpenTK.Platform.Native.X11.X11WindowComponent.Name - OpenTK.Platform.Native.X11.X11WindowComponent.ProcessEvents(System.Boolean) - OpenTK.Platform.Native.X11.X11WindowComponent.Provides - - OpenTK.Platform.Native.X11.X11WindowComponent.RequestAttention(OpenTK.Core.Platform.WindowHandle) - - OpenTK.Platform.Native.X11.X11WindowComponent.ScreenToClient(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) - - OpenTK.Platform.Native.X11.X11WindowComponent.SetAlwaysOnTop(OpenTK.Core.Platform.WindowHandle,System.Boolean) - - OpenTK.Platform.Native.X11.X11WindowComponent.SetBorderStyle(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.WindowBorderStyle) - - OpenTK.Platform.Native.X11.X11WindowComponent.SetBounds(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) - - OpenTK.Platform.Native.X11.X11WindowComponent.SetClientBounds(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) - - OpenTK.Platform.Native.X11.X11WindowComponent.SetClientPosition(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) - - OpenTK.Platform.Native.X11.X11WindowComponent.SetClientSize(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) - - OpenTK.Platform.Native.X11.X11WindowComponent.SetCursor(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.CursorHandle) - - OpenTK.Platform.Native.X11.X11WindowComponent.SetCursorCaptureMode(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.CursorCaptureMode) - - OpenTK.Platform.Native.X11.X11WindowComponent.SetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle) - - OpenTK.Platform.Native.X11.X11WindowComponent.SetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle,OpenTK.Core.Platform.VideoMode) - - OpenTK.Platform.Native.X11.X11WindowComponent.SetHitTestCallback(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.HitTest) - - OpenTK.Platform.Native.X11.X11WindowComponent.SetIcon(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.IconHandle) - - OpenTK.Platform.Native.X11.X11WindowComponent.SetIconifiedTitle(OpenTK.Core.Platform.WindowHandle,System.String) - - OpenTK.Platform.Native.X11.X11WindowComponent.SetMaxClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) - - OpenTK.Platform.Native.X11.X11WindowComponent.SetMinClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) - - OpenTK.Platform.Native.X11.X11WindowComponent.SetMode(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.WindowMode) - - OpenTK.Platform.Native.X11.X11WindowComponent.SetPosition(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) - - OpenTK.Platform.Native.X11.X11WindowComponent.SetSize(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) - - OpenTK.Platform.Native.X11.X11WindowComponent.SetTitle(OpenTK.Core.Platform.WindowHandle,System.String) + - OpenTK.Platform.Native.X11.X11WindowComponent.RequestAttention(OpenTK.Platform.WindowHandle) + - OpenTK.Platform.Native.X11.X11WindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) + - OpenTK.Platform.Native.X11.X11WindowComponent.SetAlwaysOnTop(OpenTK.Platform.WindowHandle,System.Boolean) + - OpenTK.Platform.Native.X11.X11WindowComponent.SetBorderStyle(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowBorderStyle) + - OpenTK.Platform.Native.X11.X11WindowComponent.SetBounds(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) + - OpenTK.Platform.Native.X11.X11WindowComponent.SetClientBounds(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) + - OpenTK.Platform.Native.X11.X11WindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) + - OpenTK.Platform.Native.X11.X11WindowComponent.SetClientSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) + - OpenTK.Platform.Native.X11.X11WindowComponent.SetCursor(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorHandle) + - OpenTK.Platform.Native.X11.X11WindowComponent.SetCursorCaptureMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorCaptureMode) + - OpenTK.Platform.Native.X11.X11WindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle) + - OpenTK.Platform.Native.X11.X11WindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle,OpenTK.Platform.VideoMode) + - OpenTK.Platform.Native.X11.X11WindowComponent.SetHitTestCallback(OpenTK.Platform.WindowHandle,OpenTK.Platform.HitTest) + - OpenTK.Platform.Native.X11.X11WindowComponent.SetIcon(OpenTK.Platform.WindowHandle,OpenTK.Platform.IconHandle) + - OpenTK.Platform.Native.X11.X11WindowComponent.SetIconifiedTitle(OpenTK.Platform.WindowHandle,System.String) + - OpenTK.Platform.Native.X11.X11WindowComponent.SetMaxClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) + - OpenTK.Platform.Native.X11.X11WindowComponent.SetMinClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) + - OpenTK.Platform.Native.X11.X11WindowComponent.SetMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowMode) + - OpenTK.Platform.Native.X11.X11WindowComponent.SetPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) + - OpenTK.Platform.Native.X11.X11WindowComponent.SetSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) + - OpenTK.Platform.Native.X11.X11WindowComponent.SetTitle(OpenTK.Platform.WindowHandle,System.String) - OpenTK.Platform.Native.X11.X11WindowComponent.SupportedEvents - OpenTK.Platform.Native.X11.X11WindowComponent.SupportedModes - OpenTK.Platform.Native.X11.X11WindowComponent.SupportedStyles @@ -76,15 +76,11 @@ items: fullName: OpenTK.Platform.Native.X11.X11WindowComponent type: Class source: - remote: - path: src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: X11WindowComponent - path: opentk/src/OpenTK.Platform.Native/X11/X11WindowComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11WindowComponent.cs startLine: 20 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 syntax: content: 'public class X11WindowComponent : IWindowComponent, IPalComponent' @@ -92,8 +88,8 @@ items: inheritance: - System.Object implements: - - OpenTK.Core.Platform.IWindowComponent - - OpenTK.Core.Platform.IPalComponent + - OpenTK.Platform.IWindowComponent + - OpenTK.Platform.IPalComponent inheritedMembers: - System.Object.Equals(System.Object) - System.Object.Equals(System.Object,System.Object) @@ -114,15 +110,11 @@ items: fullName: OpenTK.Platform.Native.X11.X11WindowComponent.Name type: Property source: - remote: - path: src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Name - path: opentk/src/OpenTK.Platform.Native/X11/X11WindowComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11WindowComponent.cs startLine: 23 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: Name of the abstraction layer component. example: [] @@ -134,7 +126,7 @@ items: content.vb: Public ReadOnly Property Name As String overload: OpenTK.Platform.Native.X11.X11WindowComponent.Name* implements: - - OpenTK.Core.Platform.IPalComponent.Name + - OpenTK.Platform.IPalComponent.Name - uid: OpenTK.Platform.Native.X11.X11WindowComponent.Provides commentId: P:OpenTK.Platform.Native.X11.X11WindowComponent.Provides id: Provides @@ -147,15 +139,11 @@ items: fullName: OpenTK.Platform.Native.X11.X11WindowComponent.Provides type: Property source: - remote: - path: src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Provides - path: opentk/src/OpenTK.Platform.Native/X11/X11WindowComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11WindowComponent.cs startLine: 26 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: Specifies which PAL components this object provides. example: [] @@ -163,11 +151,11 @@ items: content: public PalComponents Provides { get; } parameters: [] return: - type: OpenTK.Core.Platform.PalComponents + type: OpenTK.Platform.PalComponents content.vb: Public ReadOnly Property Provides As PalComponents overload: OpenTK.Platform.Native.X11.X11WindowComponent.Provides* implements: - - OpenTK.Core.Platform.IPalComponent.Provides + - OpenTK.Platform.IPalComponent.Provides - uid: OpenTK.Platform.Native.X11.X11WindowComponent.Logger commentId: P:OpenTK.Platform.Native.X11.X11WindowComponent.Logger id: Logger @@ -180,15 +168,11 @@ items: fullName: OpenTK.Platform.Native.X11.X11WindowComponent.Logger type: Property source: - remote: - path: src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Logger - path: opentk/src/OpenTK.Platform.Native/X11/X11WindowComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11WindowComponent.cs startLine: 29 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: Provides a logger for this component. example: [] @@ -200,28 +184,24 @@ items: content.vb: Public Property Logger As ILogger overload: OpenTK.Platform.Native.X11.X11WindowComponent.Logger* implements: - - OpenTK.Core.Platform.IPalComponent.Logger -- uid: OpenTK.Platform.Native.X11.X11WindowComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - commentId: M:OpenTK.Platform.Native.X11.X11WindowComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - id: Initialize(OpenTK.Core.Platform.ToolkitOptions) + - OpenTK.Platform.IPalComponent.Logger +- uid: OpenTK.Platform.Native.X11.X11WindowComponent.Initialize(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Native.X11.X11WindowComponent.Initialize(OpenTK.Platform.ToolkitOptions) + id: Initialize(OpenTK.Platform.ToolkitOptions) parent: OpenTK.Platform.Native.X11.X11WindowComponent langs: - csharp - vb name: Initialize(ToolkitOptions) nameWithType: X11WindowComponent.Initialize(ToolkitOptions) - fullName: OpenTK.Platform.Native.X11.X11WindowComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + fullName: OpenTK.Platform.Native.X11.X11WindowComponent.Initialize(OpenTK.Platform.ToolkitOptions) type: Method source: - remote: - path: src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Initialize - path: opentk/src/OpenTK.Platform.Native/X11/X11WindowComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11WindowComponent.cs startLine: 56 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: Initialize the component. example: [] @@ -229,12 +209,12 @@ items: content: public void Initialize(ToolkitOptions options) parameters: - id: options - type: OpenTK.Core.Platform.ToolkitOptions + type: OpenTK.Platform.ToolkitOptions description: The options to initialize the component with. content.vb: Public Sub Initialize(options As ToolkitOptions) overload: OpenTK.Platform.Native.X11.X11WindowComponent.Initialize* implements: - - OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + - OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) - uid: OpenTK.Platform.Native.X11.X11WindowComponent.CanSetIcon commentId: P:OpenTK.Platform.Native.X11.X11WindowComponent.CanSetIcon id: CanSetIcon @@ -247,17 +227,13 @@ items: fullName: OpenTK.Platform.Native.X11.X11WindowComponent.CanSetIcon type: Property source: - remote: - path: src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CanSetIcon - path: opentk/src/OpenTK.Platform.Native/X11/X11WindowComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11WindowComponent.cs startLine: 224 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 - summary: True when the driver supports setting the window icon. + summary: True when the driver supports setting the window icon using . example: [] syntax: content: public bool CanSetIcon { get; } @@ -266,8 +242,11 @@ items: type: System.Boolean content.vb: Public ReadOnly Property CanSetIcon As Boolean overload: OpenTK.Platform.Native.X11.X11WindowComponent.CanSetIcon* + seealso: + - linkId: OpenTK.Platform.IWindowComponent.SetIcon(OpenTK.Platform.WindowHandle,OpenTK.Platform.IconHandle) + commentId: M:OpenTK.Platform.IWindowComponent.SetIcon(OpenTK.Platform.WindowHandle,OpenTK.Platform.IconHandle) implements: - - OpenTK.Core.Platform.IWindowComponent.CanSetIcon + - OpenTK.Platform.IWindowComponent.CanSetIcon - uid: OpenTK.Platform.Native.X11.X11WindowComponent.CanGetDisplay commentId: P:OpenTK.Platform.Native.X11.X11WindowComponent.CanGetDisplay id: CanGetDisplay @@ -280,17 +259,13 @@ items: fullName: OpenTK.Platform.Native.X11.X11WindowComponent.CanGetDisplay type: Property source: - remote: - path: src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CanGetDisplay - path: opentk/src/OpenTK.Platform.Native/X11/X11WindowComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11WindowComponent.cs startLine: 227 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 - summary: True when the driver can provide the display the window is in. + summary: True when the driver can provide the display the window is in using . example: [] syntax: content: public bool CanGetDisplay { get; } @@ -299,8 +274,11 @@ items: type: System.Boolean content.vb: Public ReadOnly Property CanGetDisplay As Boolean overload: OpenTK.Platform.Native.X11.X11WindowComponent.CanGetDisplay* + seealso: + - linkId: OpenTK.Platform.IWindowComponent.GetDisplay(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.GetDisplay(OpenTK.Platform.WindowHandle) implements: - - OpenTK.Core.Platform.IWindowComponent.CanGetDisplay + - OpenTK.Platform.IWindowComponent.CanGetDisplay - uid: OpenTK.Platform.Native.X11.X11WindowComponent.CanSetCursor commentId: P:OpenTK.Platform.Native.X11.X11WindowComponent.CanSetCursor id: CanSetCursor @@ -313,17 +291,13 @@ items: fullName: OpenTK.Platform.Native.X11.X11WindowComponent.CanSetCursor type: Property source: - remote: - path: src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CanSetCursor - path: opentk/src/OpenTK.Platform.Native/X11/X11WindowComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11WindowComponent.cs startLine: 230 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 - summary: True when the driver supports setting the cursor of the window. + summary: True when the driver supports setting the cursor of the window using . example: [] syntax: content: public bool CanSetCursor { get; } @@ -332,8 +306,11 @@ items: type: System.Boolean content.vb: Public ReadOnly Property CanSetCursor As Boolean overload: OpenTK.Platform.Native.X11.X11WindowComponent.CanSetCursor* + seealso: + - linkId: OpenTK.Platform.IWindowComponent.SetCursor(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorHandle) + commentId: M:OpenTK.Platform.IWindowComponent.SetCursor(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorHandle) implements: - - OpenTK.Core.Platform.IWindowComponent.CanSetCursor + - OpenTK.Platform.IWindowComponent.CanSetCursor - uid: OpenTK.Platform.Native.X11.X11WindowComponent.CanCaptureCursor commentId: P:OpenTK.Platform.Native.X11.X11WindowComponent.CanCaptureCursor id: CanCaptureCursor @@ -346,17 +323,13 @@ items: fullName: OpenTK.Platform.Native.X11.X11WindowComponent.CanCaptureCursor type: Property source: - remote: - path: src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CanCaptureCursor - path: opentk/src/OpenTK.Platform.Native/X11/X11WindowComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11WindowComponent.cs startLine: 233 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 - summary: True when the driver supports capturing the cursor in a window. + summary: True when the driver supports capturing the cursor in a window using . example: [] syntax: content: public bool CanCaptureCursor { get; } @@ -365,8 +338,11 @@ items: type: System.Boolean content.vb: Public ReadOnly Property CanCaptureCursor As Boolean overload: OpenTK.Platform.Native.X11.X11WindowComponent.CanCaptureCursor* + seealso: + - linkId: OpenTK.Platform.IWindowComponent.SetCursorCaptureMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorCaptureMode) + commentId: M:OpenTK.Platform.IWindowComponent.SetCursorCaptureMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorCaptureMode) implements: - - OpenTK.Core.Platform.IWindowComponent.CanCaptureCursor + - OpenTK.Platform.IWindowComponent.CanCaptureCursor - uid: OpenTK.Platform.Native.X11.X11WindowComponent.SupportedEvents commentId: P:OpenTK.Platform.Native.X11.X11WindowComponent.SupportedEvents id: SupportedEvents @@ -379,15 +355,11 @@ items: fullName: OpenTK.Platform.Native.X11.X11WindowComponent.SupportedEvents type: Property source: - remote: - path: src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SupportedEvents - path: opentk/src/OpenTK.Platform.Native/X11/X11WindowComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11WindowComponent.cs startLine: 247 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: Read-only list of event types the driver supports. example: [] @@ -395,11 +367,11 @@ items: content: public IReadOnlyList SupportedEvents { get; } parameters: [] return: - type: System.Collections.Generic.IReadOnlyList{OpenTK.Core.Platform.PlatformEventType} + type: System.Collections.Generic.IReadOnlyList{OpenTK.Platform.PlatformEventType} content.vb: Public ReadOnly Property SupportedEvents As IReadOnlyList(Of PlatformEventType) overload: OpenTK.Platform.Native.X11.X11WindowComponent.SupportedEvents* implements: - - OpenTK.Core.Platform.IWindowComponent.SupportedEvents + - OpenTK.Platform.IWindowComponent.SupportedEvents - uid: OpenTK.Platform.Native.X11.X11WindowComponent.SupportedStyles commentId: P:OpenTK.Platform.Native.X11.X11WindowComponent.SupportedStyles id: SupportedStyles @@ -412,15 +384,11 @@ items: fullName: OpenTK.Platform.Native.X11.X11WindowComponent.SupportedStyles type: Property source: - remote: - path: src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SupportedStyles - path: opentk/src/OpenTK.Platform.Native/X11/X11WindowComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11WindowComponent.cs startLine: 250 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: Read-only list of window styles the driver supports. example: [] @@ -428,11 +396,11 @@ items: content: public IReadOnlyList SupportedStyles { get; } parameters: [] return: - type: System.Collections.Generic.IReadOnlyList{OpenTK.Core.Platform.WindowBorderStyle} + type: System.Collections.Generic.IReadOnlyList{OpenTK.Platform.WindowBorderStyle} content.vb: Public Property SupportedStyles As IReadOnlyList(Of WindowBorderStyle) overload: OpenTK.Platform.Native.X11.X11WindowComponent.SupportedStyles* implements: - - OpenTK.Core.Platform.IWindowComponent.SupportedStyles + - OpenTK.Platform.IWindowComponent.SupportedStyles - uid: OpenTK.Platform.Native.X11.X11WindowComponent.SupportedModes commentId: P:OpenTK.Platform.Native.X11.X11WindowComponent.SupportedModes id: SupportedModes @@ -445,15 +413,11 @@ items: fullName: OpenTK.Platform.Native.X11.X11WindowComponent.SupportedModes type: Property source: - remote: - path: src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SupportedModes - path: opentk/src/OpenTK.Platform.Native/X11/X11WindowComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11WindowComponent.cs startLine: 253 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: Read-only list of window modes the driver supports. example: [] @@ -461,11 +425,11 @@ items: content: public IReadOnlyList SupportedModes { get; } parameters: [] return: - type: System.Collections.Generic.IReadOnlyList{OpenTK.Core.Platform.WindowMode} + type: System.Collections.Generic.IReadOnlyList{OpenTK.Platform.WindowMode} content.vb: Public Property SupportedModes As IReadOnlyList(Of WindowMode) overload: OpenTK.Platform.Native.X11.X11WindowComponent.SupportedModes* implements: - - OpenTK.Core.Platform.IWindowComponent.SupportedModes + - OpenTK.Platform.IWindowComponent.SupportedModes - uid: OpenTK.Platform.Native.X11.X11WindowComponent.IsWindowManagerFreedesktop commentId: P:OpenTK.Platform.Native.X11.X11WindowComponent.IsWindowManagerFreedesktop id: IsWindowManagerFreedesktop @@ -478,15 +442,11 @@ items: fullName: OpenTK.Platform.Native.X11.X11WindowComponent.IsWindowManagerFreedesktop type: Property source: - remote: - path: src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: IsWindowManagerFreedesktop - path: opentk/src/OpenTK.Platform.Native/X11/X11WindowComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11WindowComponent.cs startLine: 258 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: When true, indicates the current window manager is Freedesktop compliant. example: [] @@ -509,15 +469,11 @@ items: fullName: OpenTK.Platform.Native.X11.X11WindowComponent.FreedesktopWindowManagerName type: Property source: - remote: - path: src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: FreedesktopWindowManagerName - path: opentk/src/OpenTK.Platform.Native/X11/X11WindowComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11WindowComponent.cs startLine: 263 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: The name of the Freedesktop manager. example: [] @@ -540,52 +496,44 @@ items: fullName: OpenTK.Platform.Native.X11.X11WindowComponent.ProcessEvents(bool) type: Method source: - remote: - path: src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ProcessEvents - path: opentk/src/OpenTK.Platform.Native/X11/X11WindowComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11WindowComponent.cs startLine: 335 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 - summary: Processes platform events and sends them to the . + summary: Processes platform events and sends them to the . example: [] syntax: - content: public void ProcessEvents(bool waitForEvents = false) + content: public void ProcessEvents(bool waitForEvents) parameters: - id: waitForEvents type: System.Boolean description: Specifies if this function should wait for events or return immediately if there are no events. - content.vb: Public Sub ProcessEvents(waitForEvents As Boolean = False) + content.vb: Public Sub ProcessEvents(waitForEvents As Boolean) overload: OpenTK.Platform.Native.X11.X11WindowComponent.ProcessEvents* implements: - - OpenTK.Core.Platform.IWindowComponent.ProcessEvents(System.Boolean) + - OpenTK.Platform.IWindowComponent.ProcessEvents(System.Boolean) nameWithType.vb: X11WindowComponent.ProcessEvents(Boolean) fullName.vb: OpenTK.Platform.Native.X11.X11WindowComponent.ProcessEvents(Boolean) name.vb: ProcessEvents(Boolean) -- uid: OpenTK.Platform.Native.X11.X11WindowComponent.Create(OpenTK.Core.Platform.GraphicsApiHints) - commentId: M:OpenTK.Platform.Native.X11.X11WindowComponent.Create(OpenTK.Core.Platform.GraphicsApiHints) - id: Create(OpenTK.Core.Platform.GraphicsApiHints) +- uid: OpenTK.Platform.Native.X11.X11WindowComponent.Create(OpenTK.Platform.GraphicsApiHints) + commentId: M:OpenTK.Platform.Native.X11.X11WindowComponent.Create(OpenTK.Platform.GraphicsApiHints) + id: Create(OpenTK.Platform.GraphicsApiHints) parent: OpenTK.Platform.Native.X11.X11WindowComponent langs: - csharp - vb name: Create(GraphicsApiHints) nameWithType: X11WindowComponent.Create(GraphicsApiHints) - fullName: OpenTK.Platform.Native.X11.X11WindowComponent.Create(OpenTK.Core.Platform.GraphicsApiHints) + fullName: OpenTK.Platform.Native.X11.X11WindowComponent.Create(OpenTK.Platform.GraphicsApiHints) type: Method source: - remote: - path: src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Create - path: opentk/src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - startLine: 1064 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11WindowComponent.cs + startLine: 1077 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: Create a window object. example: [] @@ -593,44 +541,40 @@ items: content: public WindowHandle Create(GraphicsApiHints hints) parameters: - id: hints - type: OpenTK.Core.Platform.GraphicsApiHints + type: OpenTK.Platform.GraphicsApiHints description: Graphics API hints to be passed to the operating system. return: - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: Handle to the new window object. content.vb: Public Function Create(hints As GraphicsApiHints) As WindowHandle overload: OpenTK.Platform.Native.X11.X11WindowComponent.Create* implements: - - OpenTK.Core.Platform.IWindowComponent.Create(OpenTK.Core.Platform.GraphicsApiHints) -- uid: OpenTK.Platform.Native.X11.X11WindowComponent.Destroy(OpenTK.Core.Platform.WindowHandle) - commentId: M:OpenTK.Platform.Native.X11.X11WindowComponent.Destroy(OpenTK.Core.Platform.WindowHandle) - id: Destroy(OpenTK.Core.Platform.WindowHandle) + - OpenTK.Platform.IWindowComponent.Create(OpenTK.Platform.GraphicsApiHints) +- uid: OpenTK.Platform.Native.X11.X11WindowComponent.Destroy(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.Native.X11.X11WindowComponent.Destroy(OpenTK.Platform.WindowHandle) + id: Destroy(OpenTK.Platform.WindowHandle) parent: OpenTK.Platform.Native.X11.X11WindowComponent langs: - csharp - vb name: Destroy(WindowHandle) nameWithType: X11WindowComponent.Destroy(WindowHandle) - fullName: OpenTK.Platform.Native.X11.X11WindowComponent.Destroy(OpenTK.Core.Platform.WindowHandle) + fullName: OpenTK.Platform.Native.X11.X11WindowComponent.Destroy(OpenTK.Platform.WindowHandle) type: Method source: - remote: - path: src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Destroy - path: opentk/src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - startLine: 1387 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11WindowComponent.cs + startLine: 1403 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 - summary: Destroy a window object. + summary: Destroy a window object. After a window has been destroyed the handle should no longer be used in any function other than . example: [] syntax: content: public void Destroy(WindowHandle handle) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: Handle to a window object. content.vb: Public Sub Destroy(handle As WindowHandle) overload: OpenTK.Platform.Native.X11.X11WindowComponent.Destroy* @@ -639,65 +583,57 @@ items: commentId: T:System.ArgumentNullException description: handle is null. implements: - - OpenTK.Core.Platform.IWindowComponent.Destroy(OpenTK.Core.Platform.WindowHandle) -- uid: OpenTK.Platform.Native.X11.X11WindowComponent.IsWindowDestroyed(OpenTK.Core.Platform.WindowHandle) - commentId: M:OpenTK.Platform.Native.X11.X11WindowComponent.IsWindowDestroyed(OpenTK.Core.Platform.WindowHandle) - id: IsWindowDestroyed(OpenTK.Core.Platform.WindowHandle) + - OpenTK.Platform.IWindowComponent.Destroy(OpenTK.Platform.WindowHandle) +- uid: OpenTK.Platform.Native.X11.X11WindowComponent.IsWindowDestroyed(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.Native.X11.X11WindowComponent.IsWindowDestroyed(OpenTK.Platform.WindowHandle) + id: IsWindowDestroyed(OpenTK.Platform.WindowHandle) parent: OpenTK.Platform.Native.X11.X11WindowComponent langs: - csharp - vb name: IsWindowDestroyed(WindowHandle) nameWithType: X11WindowComponent.IsWindowDestroyed(WindowHandle) - fullName: OpenTK.Platform.Native.X11.X11WindowComponent.IsWindowDestroyed(OpenTK.Core.Platform.WindowHandle) + fullName: OpenTK.Platform.Native.X11.X11WindowComponent.IsWindowDestroyed(OpenTK.Platform.WindowHandle) type: Method source: - remote: - path: src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: IsWindowDestroyed - path: opentk/src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - startLine: 1410 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11WindowComponent.cs + startLine: 1426 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 - summary: Checks if has been called on this handle. + summary: Checks if has been called on this handle. example: [] syntax: content: public bool IsWindowDestroyed(WindowHandle handle) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: The window handle to check if it's destroyed or not. return: type: System.Boolean - description: If was called with the window handle. + description: If was called with the window handle. content.vb: Public Function IsWindowDestroyed(handle As WindowHandle) As Boolean overload: OpenTK.Platform.Native.X11.X11WindowComponent.IsWindowDestroyed* implements: - - OpenTK.Core.Platform.IWindowComponent.IsWindowDestroyed(OpenTK.Core.Platform.WindowHandle) -- uid: OpenTK.Platform.Native.X11.X11WindowComponent.GetTitle(OpenTK.Core.Platform.WindowHandle) - commentId: M:OpenTK.Platform.Native.X11.X11WindowComponent.GetTitle(OpenTK.Core.Platform.WindowHandle) - id: GetTitle(OpenTK.Core.Platform.WindowHandle) + - OpenTK.Platform.IWindowComponent.IsWindowDestroyed(OpenTK.Platform.WindowHandle) +- uid: OpenTK.Platform.Native.X11.X11WindowComponent.GetTitle(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.Native.X11.X11WindowComponent.GetTitle(OpenTK.Platform.WindowHandle) + id: GetTitle(OpenTK.Platform.WindowHandle) parent: OpenTK.Platform.Native.X11.X11WindowComponent langs: - csharp - vb name: GetTitle(WindowHandle) nameWithType: X11WindowComponent.GetTitle(WindowHandle) - fullName: OpenTK.Platform.Native.X11.X11WindowComponent.GetTitle(OpenTK.Core.Platform.WindowHandle) + fullName: OpenTK.Platform.Native.X11.X11WindowComponent.GetTitle(OpenTK.Platform.WindowHandle) type: Method source: - remote: - path: src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetTitle - path: opentk/src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - startLine: 1418 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11WindowComponent.cs + startLine: 1434 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: Get the title of a window. example: [] @@ -705,7 +641,7 @@ items: content: public string GetTitle(WindowHandle handle) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: Handle to a window. return: type: System.String @@ -717,28 +653,24 @@ items: commentId: T:System.ArgumentNullException description: handle is null. implements: - - OpenTK.Core.Platform.IWindowComponent.GetTitle(OpenTK.Core.Platform.WindowHandle) -- uid: OpenTK.Platform.Native.X11.X11WindowComponent.SetTitle(OpenTK.Core.Platform.WindowHandle,System.String) - commentId: M:OpenTK.Platform.Native.X11.X11WindowComponent.SetTitle(OpenTK.Core.Platform.WindowHandle,System.String) - id: SetTitle(OpenTK.Core.Platform.WindowHandle,System.String) + - OpenTK.Platform.IWindowComponent.GetTitle(OpenTK.Platform.WindowHandle) +- uid: OpenTK.Platform.Native.X11.X11WindowComponent.SetTitle(OpenTK.Platform.WindowHandle,System.String) + commentId: M:OpenTK.Platform.Native.X11.X11WindowComponent.SetTitle(OpenTK.Platform.WindowHandle,System.String) + id: SetTitle(OpenTK.Platform.WindowHandle,System.String) parent: OpenTK.Platform.Native.X11.X11WindowComponent langs: - csharp - vb name: SetTitle(WindowHandle, string) nameWithType: X11WindowComponent.SetTitle(WindowHandle, string) - fullName: OpenTK.Platform.Native.X11.X11WindowComponent.SetTitle(OpenTK.Core.Platform.WindowHandle, string) + fullName: OpenTK.Platform.Native.X11.X11WindowComponent.SetTitle(OpenTK.Platform.WindowHandle, string) type: Method source: - remote: - path: src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetTitle - path: opentk/src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - startLine: 1452 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11WindowComponent.cs + startLine: 1468 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: Set the title of a window. example: [] @@ -746,7 +678,7 @@ items: content: public void SetTitle(WindowHandle handle, string title) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: Handle to a window. - id: title type: System.String @@ -758,31 +690,27 @@ items: commentId: T:System.ArgumentNullException description: handle or title is null. implements: - - OpenTK.Core.Platform.IWindowComponent.SetTitle(OpenTK.Core.Platform.WindowHandle,System.String) + - OpenTK.Platform.IWindowComponent.SetTitle(OpenTK.Platform.WindowHandle,System.String) nameWithType.vb: X11WindowComponent.SetTitle(WindowHandle, String) - fullName.vb: OpenTK.Platform.Native.X11.X11WindowComponent.SetTitle(OpenTK.Core.Platform.WindowHandle, String) + fullName.vb: OpenTK.Platform.Native.X11.X11WindowComponent.SetTitle(OpenTK.Platform.WindowHandle, String) name.vb: SetTitle(WindowHandle, String) -- uid: OpenTK.Platform.Native.X11.X11WindowComponent.GetIconifiedTitle(OpenTK.Core.Platform.WindowHandle) - commentId: M:OpenTK.Platform.Native.X11.X11WindowComponent.GetIconifiedTitle(OpenTK.Core.Platform.WindowHandle) - id: GetIconifiedTitle(OpenTK.Core.Platform.WindowHandle) +- uid: OpenTK.Platform.Native.X11.X11WindowComponent.GetIconifiedTitle(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.Native.X11.X11WindowComponent.GetIconifiedTitle(OpenTK.Platform.WindowHandle) + id: GetIconifiedTitle(OpenTK.Platform.WindowHandle) parent: OpenTK.Platform.Native.X11.X11WindowComponent langs: - csharp - vb name: GetIconifiedTitle(WindowHandle) nameWithType: X11WindowComponent.GetIconifiedTitle(WindowHandle) - fullName: OpenTK.Platform.Native.X11.X11WindowComponent.GetIconifiedTitle(OpenTK.Core.Platform.WindowHandle) + fullName: OpenTK.Platform.Native.X11.X11WindowComponent.GetIconifiedTitle(OpenTK.Platform.WindowHandle) type: Method source: - remote: - path: src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetIconifiedTitle - path: opentk/src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - startLine: 1485 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11WindowComponent.cs + startLine: 1501 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: Gets the iconified title of the window using either _NET_WM_ICON_NAME or WM_ICON_NAME. example: [] @@ -790,34 +718,30 @@ items: content: public string GetIconifiedTitle(WindowHandle handle) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: A handle to the window to get the iconified title of. return: type: System.String description: The title of the window when it's iconified. content.vb: Public Function GetIconifiedTitle(handle As WindowHandle) As String overload: OpenTK.Platform.Native.X11.X11WindowComponent.GetIconifiedTitle* -- uid: OpenTK.Platform.Native.X11.X11WindowComponent.SetIconifiedTitle(OpenTK.Core.Platform.WindowHandle,System.String) - commentId: M:OpenTK.Platform.Native.X11.X11WindowComponent.SetIconifiedTitle(OpenTK.Core.Platform.WindowHandle,System.String) - id: SetIconifiedTitle(OpenTK.Core.Platform.WindowHandle,System.String) +- uid: OpenTK.Platform.Native.X11.X11WindowComponent.SetIconifiedTitle(OpenTK.Platform.WindowHandle,System.String) + commentId: M:OpenTK.Platform.Native.X11.X11WindowComponent.SetIconifiedTitle(OpenTK.Platform.WindowHandle,System.String) + id: SetIconifiedTitle(OpenTK.Platform.WindowHandle,System.String) parent: OpenTK.Platform.Native.X11.X11WindowComponent langs: - csharp - vb name: SetIconifiedTitle(WindowHandle, string) nameWithType: X11WindowComponent.SetIconifiedTitle(WindowHandle, string) - fullName: OpenTK.Platform.Native.X11.X11WindowComponent.SetIconifiedTitle(OpenTK.Core.Platform.WindowHandle, string) + fullName: OpenTK.Platform.Native.X11.X11WindowComponent.SetIconifiedTitle(OpenTK.Platform.WindowHandle, string) type: Method source: - remote: - path: src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetIconifiedTitle - path: opentk/src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - startLine: 1519 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11WindowComponent.cs + startLine: 1535 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: Sets the iconified title of the window using both _NET_WM_ICON_NAME and WM_ICON_NAME. example: [] @@ -825,7 +749,7 @@ items: content: public void SetIconifiedTitle(WindowHandle handle, string iconTitle) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: A handle to the window to set the iconified title of. - id: iconTitle type: System.String @@ -833,29 +757,25 @@ items: content.vb: Public Sub SetIconifiedTitle(handle As WindowHandle, iconTitle As String) overload: OpenTK.Platform.Native.X11.X11WindowComponent.SetIconifiedTitle* nameWithType.vb: X11WindowComponent.SetIconifiedTitle(WindowHandle, String) - fullName.vb: OpenTK.Platform.Native.X11.X11WindowComponent.SetIconifiedTitle(OpenTK.Core.Platform.WindowHandle, String) + fullName.vb: OpenTK.Platform.Native.X11.X11WindowComponent.SetIconifiedTitle(OpenTK.Platform.WindowHandle, String) name.vb: SetIconifiedTitle(WindowHandle, String) -- uid: OpenTK.Platform.Native.X11.X11WindowComponent.GetIcon(OpenTK.Core.Platform.WindowHandle) - commentId: M:OpenTK.Platform.Native.X11.X11WindowComponent.GetIcon(OpenTK.Core.Platform.WindowHandle) - id: GetIcon(OpenTK.Core.Platform.WindowHandle) +- uid: OpenTK.Platform.Native.X11.X11WindowComponent.GetIcon(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.Native.X11.X11WindowComponent.GetIcon(OpenTK.Platform.WindowHandle) + id: GetIcon(OpenTK.Platform.WindowHandle) parent: OpenTK.Platform.Native.X11.X11WindowComponent langs: - csharp - vb name: GetIcon(WindowHandle) nameWithType: X11WindowComponent.GetIcon(WindowHandle) - fullName: OpenTK.Platform.Native.X11.X11WindowComponent.GetIcon(OpenTK.Core.Platform.WindowHandle) + fullName: OpenTK.Platform.Native.X11.X11WindowComponent.GetIcon(OpenTK.Platform.WindowHandle) type: Method source: - remote: - path: src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetIcon - path: opentk/src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - startLine: 1543 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11WindowComponent.cs + startLine: 1559 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: Get a handle to the window icon object. example: [] @@ -863,10 +783,10 @@ items: content: public IconHandle? GetIcon(WindowHandle handle) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: Handle to a window. return: - type: OpenTK.Core.Platform.IconHandle + type: OpenTK.Platform.IconHandle description: Handle to the windows icon object, or null if none is set. content.vb: Public Function GetIcon(handle As WindowHandle) As IconHandle overload: OpenTK.Platform.Native.X11.X11WindowComponent.GetIcon* @@ -874,32 +794,28 @@ items: - type: System.ArgumentNullException commentId: T:System.ArgumentNullException description: handle is null. - - type: OpenTK.Core.Platform.PalNotImplementedException - commentId: T:OpenTK.Core.Platform.PalNotImplementedException - description: Driver does not support getting the window icon. See . + - type: OpenTK.Platform.PalNotImplementedException + commentId: T:OpenTK.Platform.PalNotImplementedException + description: Driver does not support getting the window icon. See . implements: - - OpenTK.Core.Platform.IWindowComponent.GetIcon(OpenTK.Core.Platform.WindowHandle) -- uid: OpenTK.Platform.Native.X11.X11WindowComponent.SetIcon(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.IconHandle) - commentId: M:OpenTK.Platform.Native.X11.X11WindowComponent.SetIcon(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.IconHandle) - id: SetIcon(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.IconHandle) + - OpenTK.Platform.IWindowComponent.GetIcon(OpenTK.Platform.WindowHandle) +- uid: OpenTK.Platform.Native.X11.X11WindowComponent.SetIcon(OpenTK.Platform.WindowHandle,OpenTK.Platform.IconHandle) + commentId: M:OpenTK.Platform.Native.X11.X11WindowComponent.SetIcon(OpenTK.Platform.WindowHandle,OpenTK.Platform.IconHandle) + id: SetIcon(OpenTK.Platform.WindowHandle,OpenTK.Platform.IconHandle) parent: OpenTK.Platform.Native.X11.X11WindowComponent langs: - csharp - vb name: SetIcon(WindowHandle, IconHandle) nameWithType: X11WindowComponent.SetIcon(WindowHandle, IconHandle) - fullName: OpenTK.Platform.Native.X11.X11WindowComponent.SetIcon(OpenTK.Core.Platform.WindowHandle, OpenTK.Core.Platform.IconHandle) + fullName: OpenTK.Platform.Native.X11.X11WindowComponent.SetIcon(OpenTK.Platform.WindowHandle, OpenTK.Platform.IconHandle) type: Method source: - remote: - path: src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetIcon - path: opentk/src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - startLine: 1551 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11WindowComponent.cs + startLine: 1567 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: Set window icon object handle. example: [] @@ -907,10 +823,10 @@ items: content: public void SetIcon(WindowHandle handle, IconHandle icon) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: Handle to a window. - id: icon - type: OpenTK.Core.Platform.IconHandle + type: OpenTK.Platform.IconHandle description: Handle to an icon object, or null to revert to default. content.vb: Public Sub SetIcon(handle As WindowHandle, icon As IconHandle) overload: OpenTK.Platform.Native.X11.X11WindowComponent.SetIcon* @@ -918,32 +834,31 @@ items: - type: System.ArgumentNullException commentId: T:System.ArgumentNullException description: handle or icon is null. - - type: OpenTK.Core.Platform.PalNotImplementedException - commentId: T:OpenTK.Core.Platform.PalNotImplementedException - description: Driver does not support setting the window icon. See . + - type: OpenTK.Platform.PalNotImplementedException + commentId: T:OpenTK.Platform.PalNotImplementedException + description: Backend does not support setting the window icon. See . + seealso: + - linkId: OpenTK.Platform.IWindowComponent.CanSetIcon + commentId: P:OpenTK.Platform.IWindowComponent.CanSetIcon implements: - - OpenTK.Core.Platform.IWindowComponent.SetIcon(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.IconHandle) -- uid: OpenTK.Platform.Native.X11.X11WindowComponent.GetPosition(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) - commentId: M:OpenTK.Platform.Native.X11.X11WindowComponent.GetPosition(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) - id: GetPosition(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) + - OpenTK.Platform.IWindowComponent.SetIcon(OpenTK.Platform.WindowHandle,OpenTK.Platform.IconHandle) +- uid: OpenTK.Platform.Native.X11.X11WindowComponent.GetPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + commentId: M:OpenTK.Platform.Native.X11.X11WindowComponent.GetPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + id: GetPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) parent: OpenTK.Platform.Native.X11.X11WindowComponent langs: - csharp - vb name: GetPosition(WindowHandle, out int, out int) nameWithType: X11WindowComponent.GetPosition(WindowHandle, out int, out int) - fullName: OpenTK.Platform.Native.X11.X11WindowComponent.GetPosition(OpenTK.Core.Platform.WindowHandle, out int, out int) + fullName: OpenTK.Platform.Native.X11.X11WindowComponent.GetPosition(OpenTK.Platform.WindowHandle, out int, out int) type: Method source: - remote: - path: src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetPosition - path: opentk/src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - startLine: 1642 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11WindowComponent.cs + startLine: 1658 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: Get the window position in display coordinates (top left origin). example: [] @@ -951,7 +866,7 @@ items: content: public void GetPosition(WindowHandle handle, out int x, out int y) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: Handle to a window. - id: x type: System.Int32 @@ -966,31 +881,27 @@ items: commentId: T:System.ArgumentNullException description: handle is null. implements: - - OpenTK.Core.Platform.IWindowComponent.GetPosition(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) + - OpenTK.Platform.IWindowComponent.GetPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) nameWithType.vb: X11WindowComponent.GetPosition(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Platform.Native.X11.X11WindowComponent.GetPosition(OpenTK.Core.Platform.WindowHandle, Integer, Integer) + fullName.vb: OpenTK.Platform.Native.X11.X11WindowComponent.GetPosition(OpenTK.Platform.WindowHandle, Integer, Integer) name.vb: GetPosition(WindowHandle, Integer, Integer) -- uid: OpenTK.Platform.Native.X11.X11WindowComponent.SetPosition(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) - commentId: M:OpenTK.Platform.Native.X11.X11WindowComponent.SetPosition(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) - id: SetPosition(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) +- uid: OpenTK.Platform.Native.X11.X11WindowComponent.SetPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) + commentId: M:OpenTK.Platform.Native.X11.X11WindowComponent.SetPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) + id: SetPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) parent: OpenTK.Platform.Native.X11.X11WindowComponent langs: - csharp - vb name: SetPosition(WindowHandle, int, int) nameWithType: X11WindowComponent.SetPosition(WindowHandle, int, int) - fullName: OpenTK.Platform.Native.X11.X11WindowComponent.SetPosition(OpenTK.Core.Platform.WindowHandle, int, int) + fullName: OpenTK.Platform.Native.X11.X11WindowComponent.SetPosition(OpenTK.Platform.WindowHandle, int, int) type: Method source: - remote: - path: src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetPosition - path: opentk/src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - startLine: 1655 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11WindowComponent.cs + startLine: 1671 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: Set the window position in display coordinates (top left origin). example: [] @@ -998,7 +909,7 @@ items: content: public void SetPosition(WindowHandle handle, int x, int y) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: Handle to a window. - id: x type: System.Int32 @@ -1013,31 +924,27 @@ items: commentId: T:System.ArgumentNullException description: handle is null. implements: - - OpenTK.Core.Platform.IWindowComponent.SetPosition(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) + - OpenTK.Platform.IWindowComponent.SetPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) nameWithType.vb: X11WindowComponent.SetPosition(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Platform.Native.X11.X11WindowComponent.SetPosition(OpenTK.Core.Platform.WindowHandle, Integer, Integer) + fullName.vb: OpenTK.Platform.Native.X11.X11WindowComponent.SetPosition(OpenTK.Platform.WindowHandle, Integer, Integer) name.vb: SetPosition(WindowHandle, Integer, Integer) -- uid: OpenTK.Platform.Native.X11.X11WindowComponent.GetSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) - commentId: M:OpenTK.Platform.Native.X11.X11WindowComponent.GetSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) - id: GetSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) +- uid: OpenTK.Platform.Native.X11.X11WindowComponent.GetSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + commentId: M:OpenTK.Platform.Native.X11.X11WindowComponent.GetSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + id: GetSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) parent: OpenTK.Platform.Native.X11.X11WindowComponent langs: - csharp - vb name: GetSize(WindowHandle, out int, out int) nameWithType: X11WindowComponent.GetSize(WindowHandle, out int, out int) - fullName: OpenTK.Platform.Native.X11.X11WindowComponent.GetSize(OpenTK.Core.Platform.WindowHandle, out int, out int) + fullName: OpenTK.Platform.Native.X11.X11WindowComponent.GetSize(OpenTK.Platform.WindowHandle, out int, out int) type: Method source: - remote: - path: src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetSize - path: opentk/src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - startLine: 1670 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11WindowComponent.cs + startLine: 1686 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: Get the size of the window. example: [] @@ -1045,7 +952,7 @@ items: content: public void GetSize(WindowHandle handle, out int width, out int height) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: Handle to a window. - id: width type: System.Int32 @@ -1060,31 +967,27 @@ items: commentId: T:System.ArgumentNullException description: handle is null. implements: - - OpenTK.Core.Platform.IWindowComponent.GetSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) + - OpenTK.Platform.IWindowComponent.GetSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) nameWithType.vb: X11WindowComponent.GetSize(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Platform.Native.X11.X11WindowComponent.GetSize(OpenTK.Core.Platform.WindowHandle, Integer, Integer) + fullName.vb: OpenTK.Platform.Native.X11.X11WindowComponent.GetSize(OpenTK.Platform.WindowHandle, Integer, Integer) name.vb: GetSize(WindowHandle, Integer, Integer) -- uid: OpenTK.Platform.Native.X11.X11WindowComponent.SetSize(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) - commentId: M:OpenTK.Platform.Native.X11.X11WindowComponent.SetSize(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) - id: SetSize(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) +- uid: OpenTK.Platform.Native.X11.X11WindowComponent.SetSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) + commentId: M:OpenTK.Platform.Native.X11.X11WindowComponent.SetSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) + id: SetSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) parent: OpenTK.Platform.Native.X11.X11WindowComponent langs: - csharp - vb name: SetSize(WindowHandle, int, int) nameWithType: X11WindowComponent.SetSize(WindowHandle, int, int) - fullName: OpenTK.Platform.Native.X11.X11WindowComponent.SetSize(OpenTK.Core.Platform.WindowHandle, int, int) + fullName: OpenTK.Platform.Native.X11.X11WindowComponent.SetSize(OpenTK.Platform.WindowHandle, int, int) type: Method source: - remote: - path: src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetSize - path: opentk/src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - startLine: 1683 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11WindowComponent.cs + startLine: 1699 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: Set the size of the window. example: [] @@ -1092,7 +995,7 @@ items: content: public void SetSize(WindowHandle handle, int width, int height) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: Handle to a window. - id: width type: System.Int32 @@ -1107,31 +1010,27 @@ items: commentId: T:System.ArgumentNullException description: handle is null. implements: - - OpenTK.Core.Platform.IWindowComponent.SetSize(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) + - OpenTK.Platform.IWindowComponent.SetSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) nameWithType.vb: X11WindowComponent.SetSize(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Platform.Native.X11.X11WindowComponent.SetSize(OpenTK.Core.Platform.WindowHandle, Integer, Integer) + fullName.vb: OpenTK.Platform.Native.X11.X11WindowComponent.SetSize(OpenTK.Platform.WindowHandle, Integer, Integer) name.vb: SetSize(WindowHandle, Integer, Integer) -- uid: OpenTK.Platform.Native.X11.X11WindowComponent.GetBounds(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) - commentId: M:OpenTK.Platform.Native.X11.X11WindowComponent.GetBounds(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) - id: GetBounds(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) +- uid: OpenTK.Platform.Native.X11.X11WindowComponent.GetBounds(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) + commentId: M:OpenTK.Platform.Native.X11.X11WindowComponent.GetBounds(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) + id: GetBounds(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) parent: OpenTK.Platform.Native.X11.X11WindowComponent langs: - csharp - vb name: GetBounds(WindowHandle, out int, out int, out int, out int) nameWithType: X11WindowComponent.GetBounds(WindowHandle, out int, out int, out int, out int) - fullName: OpenTK.Platform.Native.X11.X11WindowComponent.GetBounds(OpenTK.Core.Platform.WindowHandle, out int, out int, out int, out int) + fullName: OpenTK.Platform.Native.X11.X11WindowComponent.GetBounds(OpenTK.Platform.WindowHandle, out int, out int, out int, out int) type: Method source: - remote: - path: src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetBounds - path: opentk/src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - startLine: 1701 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11WindowComponent.cs + startLine: 1717 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: Get the bounds of the window. example: [] @@ -1139,7 +1038,7 @@ items: content: public void GetBounds(WindowHandle handle, out int x, out int y, out int width, out int height) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: Handle to a window. - id: x type: System.Int32 @@ -1156,31 +1055,27 @@ items: content.vb: Public Sub GetBounds(handle As WindowHandle, x As Integer, y As Integer, width As Integer, height As Integer) overload: OpenTK.Platform.Native.X11.X11WindowComponent.GetBounds* implements: - - OpenTK.Core.Platform.IWindowComponent.GetBounds(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) + - OpenTK.Platform.IWindowComponent.GetBounds(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) nameWithType.vb: X11WindowComponent.GetBounds(WindowHandle, Integer, Integer, Integer, Integer) - fullName.vb: OpenTK.Platform.Native.X11.X11WindowComponent.GetBounds(OpenTK.Core.Platform.WindowHandle, Integer, Integer, Integer, Integer) + fullName.vb: OpenTK.Platform.Native.X11.X11WindowComponent.GetBounds(OpenTK.Platform.WindowHandle, Integer, Integer, Integer, Integer) name.vb: GetBounds(WindowHandle, Integer, Integer, Integer, Integer) -- uid: OpenTK.Platform.Native.X11.X11WindowComponent.SetBounds(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) - commentId: M:OpenTK.Platform.Native.X11.X11WindowComponent.SetBounds(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) - id: SetBounds(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) +- uid: OpenTK.Platform.Native.X11.X11WindowComponent.SetBounds(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) + commentId: M:OpenTK.Platform.Native.X11.X11WindowComponent.SetBounds(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) + id: SetBounds(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) parent: OpenTK.Platform.Native.X11.X11WindowComponent langs: - csharp - vb name: SetBounds(WindowHandle, int, int, int, int) nameWithType: X11WindowComponent.SetBounds(WindowHandle, int, int, int, int) - fullName: OpenTK.Platform.Native.X11.X11WindowComponent.SetBounds(OpenTK.Core.Platform.WindowHandle, int, int, int, int) + fullName: OpenTK.Platform.Native.X11.X11WindowComponent.SetBounds(OpenTK.Platform.WindowHandle, int, int, int, int) type: Method source: - remote: - path: src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetBounds - path: opentk/src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - startLine: 1724 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11WindowComponent.cs + startLine: 1740 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: Set the bounds of the window. example: [] @@ -1188,7 +1083,7 @@ items: content: public void SetBounds(WindowHandle handle, int x, int y, int width, int height) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: Handle to a window. - id: x type: System.Int32 @@ -1205,31 +1100,27 @@ items: content.vb: Public Sub SetBounds(handle As WindowHandle, x As Integer, y As Integer, width As Integer, height As Integer) overload: OpenTK.Platform.Native.X11.X11WindowComponent.SetBounds* implements: - - OpenTK.Core.Platform.IWindowComponent.SetBounds(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) + - OpenTK.Platform.IWindowComponent.SetBounds(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) nameWithType.vb: X11WindowComponent.SetBounds(WindowHandle, Integer, Integer, Integer, Integer) - fullName.vb: OpenTK.Platform.Native.X11.X11WindowComponent.SetBounds(OpenTK.Core.Platform.WindowHandle, Integer, Integer, Integer, Integer) + fullName.vb: OpenTK.Platform.Native.X11.X11WindowComponent.SetBounds(OpenTK.Platform.WindowHandle, Integer, Integer, Integer, Integer) name.vb: SetBounds(WindowHandle, Integer, Integer, Integer, Integer) -- uid: OpenTK.Platform.Native.X11.X11WindowComponent.GetClientPosition(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) - commentId: M:OpenTK.Platform.Native.X11.X11WindowComponent.GetClientPosition(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) - id: GetClientPosition(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) +- uid: OpenTK.Platform.Native.X11.X11WindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + commentId: M:OpenTK.Platform.Native.X11.X11WindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + id: GetClientPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) parent: OpenTK.Platform.Native.X11.X11WindowComponent langs: - csharp - vb name: GetClientPosition(WindowHandle, out int, out int) nameWithType: X11WindowComponent.GetClientPosition(WindowHandle, out int, out int) - fullName: OpenTK.Platform.Native.X11.X11WindowComponent.GetClientPosition(OpenTK.Core.Platform.WindowHandle, out int, out int) + fullName: OpenTK.Platform.Native.X11.X11WindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle, out int, out int) type: Method source: - remote: - path: src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetClientPosition - path: opentk/src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - startLine: 1744 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11WindowComponent.cs + startLine: 1760 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: Get the position of the client area (drawing area) of a window. example: [] @@ -1237,7 +1128,7 @@ items: content: public void GetClientPosition(WindowHandle handle, out int x, out int y) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: Handle to a window. - id: x type: System.Int32 @@ -1252,31 +1143,27 @@ items: commentId: T:System.ArgumentNullException description: handle is null. implements: - - OpenTK.Core.Platform.IWindowComponent.GetClientPosition(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) + - OpenTK.Platform.IWindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) nameWithType.vb: X11WindowComponent.GetClientPosition(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Platform.Native.X11.X11WindowComponent.GetClientPosition(OpenTK.Core.Platform.WindowHandle, Integer, Integer) + fullName.vb: OpenTK.Platform.Native.X11.X11WindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle, Integer, Integer) name.vb: GetClientPosition(WindowHandle, Integer, Integer) -- uid: OpenTK.Platform.Native.X11.X11WindowComponent.SetClientPosition(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) - commentId: M:OpenTK.Platform.Native.X11.X11WindowComponent.SetClientPosition(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) - id: SetClientPosition(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) +- uid: OpenTK.Platform.Native.X11.X11WindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) + commentId: M:OpenTK.Platform.Native.X11.X11WindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) + id: SetClientPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) parent: OpenTK.Platform.Native.X11.X11WindowComponent langs: - csharp - vb name: SetClientPosition(WindowHandle, int, int) nameWithType: X11WindowComponent.SetClientPosition(WindowHandle, int, int) - fullName: OpenTK.Platform.Native.X11.X11WindowComponent.SetClientPosition(OpenTK.Core.Platform.WindowHandle, int, int) + fullName: OpenTK.Platform.Native.X11.X11WindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle, int, int) type: Method source: - remote: - path: src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetClientPosition - path: opentk/src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - startLine: 1760 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11WindowComponent.cs + startLine: 1776 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: Set the position of the client area (drawing area) of a window. example: [] @@ -1284,7 +1171,7 @@ items: content: public void SetClientPosition(WindowHandle handle, int x, int y) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: Handle to a window. - id: x type: System.Int32 @@ -1299,31 +1186,27 @@ items: commentId: T:System.ArgumentNullException description: handle is null. implements: - - OpenTK.Core.Platform.IWindowComponent.SetClientPosition(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) + - OpenTK.Platform.IWindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) nameWithType.vb: X11WindowComponent.SetClientPosition(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Platform.Native.X11.X11WindowComponent.SetClientPosition(OpenTK.Core.Platform.WindowHandle, Integer, Integer) + fullName.vb: OpenTK.Platform.Native.X11.X11WindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle, Integer, Integer) name.vb: SetClientPosition(WindowHandle, Integer, Integer) -- uid: OpenTK.Platform.Native.X11.X11WindowComponent.GetClientSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) - commentId: M:OpenTK.Platform.Native.X11.X11WindowComponent.GetClientSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) - id: GetClientSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) +- uid: OpenTK.Platform.Native.X11.X11WindowComponent.GetClientSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + commentId: M:OpenTK.Platform.Native.X11.X11WindowComponent.GetClientSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + id: GetClientSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) parent: OpenTK.Platform.Native.X11.X11WindowComponent langs: - csharp - vb name: GetClientSize(WindowHandle, out int, out int) nameWithType: X11WindowComponent.GetClientSize(WindowHandle, out int, out int) - fullName: OpenTK.Platform.Native.X11.X11WindowComponent.GetClientSize(OpenTK.Core.Platform.WindowHandle, out int, out int) + fullName: OpenTK.Platform.Native.X11.X11WindowComponent.GetClientSize(OpenTK.Platform.WindowHandle, out int, out int) type: Method source: - remote: - path: src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetClientSize - path: opentk/src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - startLine: 1768 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11WindowComponent.cs + startLine: 1784 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: Get the size of the client area (drawing area) of a window. example: [] @@ -1331,7 +1214,7 @@ items: content: public void GetClientSize(WindowHandle handle, out int width, out int height) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: Handle to a window. - id: width type: System.Int32 @@ -1346,31 +1229,27 @@ items: commentId: T:System.ArgumentNullException description: handle is null. implements: - - OpenTK.Core.Platform.IWindowComponent.GetClientSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) + - OpenTK.Platform.IWindowComponent.GetClientSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) nameWithType.vb: X11WindowComponent.GetClientSize(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Platform.Native.X11.X11WindowComponent.GetClientSize(OpenTK.Core.Platform.WindowHandle, Integer, Integer) + fullName.vb: OpenTK.Platform.Native.X11.X11WindowComponent.GetClientSize(OpenTK.Platform.WindowHandle, Integer, Integer) name.vb: GetClientSize(WindowHandle, Integer, Integer) -- uid: OpenTK.Platform.Native.X11.X11WindowComponent.SetClientSize(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) - commentId: M:OpenTK.Platform.Native.X11.X11WindowComponent.SetClientSize(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) - id: SetClientSize(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) +- uid: OpenTK.Platform.Native.X11.X11WindowComponent.SetClientSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) + commentId: M:OpenTK.Platform.Native.X11.X11WindowComponent.SetClientSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) + id: SetClientSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) parent: OpenTK.Platform.Native.X11.X11WindowComponent langs: - csharp - vb name: SetClientSize(WindowHandle, int, int) nameWithType: X11WindowComponent.SetClientSize(WindowHandle, int, int) - fullName: OpenTK.Platform.Native.X11.X11WindowComponent.SetClientSize(OpenTK.Core.Platform.WindowHandle, int, int) + fullName: OpenTK.Platform.Native.X11.X11WindowComponent.SetClientSize(OpenTK.Platform.WindowHandle, int, int) type: Method source: - remote: - path: src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetClientSize - path: opentk/src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - startLine: 1778 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11WindowComponent.cs + startLine: 1794 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: Set the size of the client area (drawing area) of a window. example: [] @@ -1378,7 +1257,7 @@ items: content: public void SetClientSize(WindowHandle handle, int width, int height) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: Handle to a window. - id: width type: System.Int32 @@ -1393,31 +1272,27 @@ items: commentId: T:System.ArgumentNullException description: handle is null. implements: - - OpenTK.Core.Platform.IWindowComponent.SetClientSize(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) + - OpenTK.Platform.IWindowComponent.SetClientSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) nameWithType.vb: X11WindowComponent.SetClientSize(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Platform.Native.X11.X11WindowComponent.SetClientSize(OpenTK.Core.Platform.WindowHandle, Integer, Integer) + fullName.vb: OpenTK.Platform.Native.X11.X11WindowComponent.SetClientSize(OpenTK.Platform.WindowHandle, Integer, Integer) name.vb: SetClientSize(WindowHandle, Integer, Integer) -- uid: OpenTK.Platform.Native.X11.X11WindowComponent.GetClientBounds(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) - commentId: M:OpenTK.Platform.Native.X11.X11WindowComponent.GetClientBounds(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) - id: GetClientBounds(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) +- uid: OpenTK.Platform.Native.X11.X11WindowComponent.GetClientBounds(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) + commentId: M:OpenTK.Platform.Native.X11.X11WindowComponent.GetClientBounds(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) + id: GetClientBounds(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) parent: OpenTK.Platform.Native.X11.X11WindowComponent langs: - csharp - vb name: GetClientBounds(WindowHandle, out int, out int, out int, out int) nameWithType: X11WindowComponent.GetClientBounds(WindowHandle, out int, out int, out int, out int) - fullName: OpenTK.Platform.Native.X11.X11WindowComponent.GetClientBounds(OpenTK.Core.Platform.WindowHandle, out int, out int, out int, out int) + fullName: OpenTK.Platform.Native.X11.X11WindowComponent.GetClientBounds(OpenTK.Platform.WindowHandle, out int, out int, out int, out int) type: Method source: - remote: - path: src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetClientBounds - path: opentk/src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - startLine: 1788 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11WindowComponent.cs + startLine: 1804 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: Get the client area bounds (drawing area) of a window. example: [] @@ -1425,7 +1300,7 @@ items: content: public void GetClientBounds(WindowHandle handle, out int x, out int y, out int width, out int height) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: Handle to a window. - id: x type: System.Int32 @@ -1442,31 +1317,27 @@ items: content.vb: Public Sub GetClientBounds(handle As WindowHandle, x As Integer, y As Integer, width As Integer, height As Integer) overload: OpenTK.Platform.Native.X11.X11WindowComponent.GetClientBounds* implements: - - OpenTK.Core.Platform.IWindowComponent.GetClientBounds(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) + - OpenTK.Platform.IWindowComponent.GetClientBounds(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) nameWithType.vb: X11WindowComponent.GetClientBounds(WindowHandle, Integer, Integer, Integer, Integer) - fullName.vb: OpenTK.Platform.Native.X11.X11WindowComponent.GetClientBounds(OpenTK.Core.Platform.WindowHandle, Integer, Integer, Integer, Integer) + fullName.vb: OpenTK.Platform.Native.X11.X11WindowComponent.GetClientBounds(OpenTK.Platform.WindowHandle, Integer, Integer, Integer, Integer) name.vb: GetClientBounds(WindowHandle, Integer, Integer, Integer, Integer) -- uid: OpenTK.Platform.Native.X11.X11WindowComponent.SetClientBounds(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) - commentId: M:OpenTK.Platform.Native.X11.X11WindowComponent.SetClientBounds(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) - id: SetClientBounds(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) +- uid: OpenTK.Platform.Native.X11.X11WindowComponent.SetClientBounds(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) + commentId: M:OpenTK.Platform.Native.X11.X11WindowComponent.SetClientBounds(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) + id: SetClientBounds(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) parent: OpenTK.Platform.Native.X11.X11WindowComponent langs: - csharp - vb name: SetClientBounds(WindowHandle, int, int, int, int) nameWithType: X11WindowComponent.SetClientBounds(WindowHandle, int, int, int, int) - fullName: OpenTK.Platform.Native.X11.X11WindowComponent.SetClientBounds(OpenTK.Core.Platform.WindowHandle, int, int, int, int) + fullName: OpenTK.Platform.Native.X11.X11WindowComponent.SetClientBounds(OpenTK.Platform.WindowHandle, int, int, int, int) type: Method source: - remote: - path: src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetClientBounds - path: opentk/src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - startLine: 1802 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11WindowComponent.cs + startLine: 1818 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: Set the client area bounds (drawing area) of a window. example: [] @@ -1474,7 +1345,7 @@ items: content: public void SetClientBounds(WindowHandle handle, int x, int y, int width, int height) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: Handle to a window. - id: x type: System.Int32 @@ -1491,31 +1362,27 @@ items: content.vb: Public Sub SetClientBounds(handle As WindowHandle, x As Integer, y As Integer, width As Integer, height As Integer) overload: OpenTK.Platform.Native.X11.X11WindowComponent.SetClientBounds* implements: - - OpenTK.Core.Platform.IWindowComponent.SetClientBounds(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) + - OpenTK.Platform.IWindowComponent.SetClientBounds(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) nameWithType.vb: X11WindowComponent.SetClientBounds(WindowHandle, Integer, Integer, Integer, Integer) - fullName.vb: OpenTK.Platform.Native.X11.X11WindowComponent.SetClientBounds(OpenTK.Core.Platform.WindowHandle, Integer, Integer, Integer, Integer) + fullName.vb: OpenTK.Platform.Native.X11.X11WindowComponent.SetClientBounds(OpenTK.Platform.WindowHandle, Integer, Integer, Integer, Integer) name.vb: SetClientBounds(WindowHandle, Integer, Integer, Integer, Integer) -- uid: OpenTK.Platform.Native.X11.X11WindowComponent.GetFramebufferSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) - commentId: M:OpenTK.Platform.Native.X11.X11WindowComponent.GetFramebufferSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) - id: GetFramebufferSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) +- uid: OpenTK.Platform.Native.X11.X11WindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + commentId: M:OpenTK.Platform.Native.X11.X11WindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + id: GetFramebufferSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) parent: OpenTK.Platform.Native.X11.X11WindowComponent langs: - csharp - vb name: GetFramebufferSize(WindowHandle, out int, out int) nameWithType: X11WindowComponent.GetFramebufferSize(WindowHandle, out int, out int) - fullName: OpenTK.Platform.Native.X11.X11WindowComponent.GetFramebufferSize(OpenTK.Core.Platform.WindowHandle, out int, out int) + fullName: OpenTK.Platform.Native.X11.X11WindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle, out int, out int) type: Method source: - remote: - path: src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetFramebufferSize - path: opentk/src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - startLine: 1810 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11WindowComponent.cs + startLine: 1826 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: >- Get the size of the window framebuffer in pixels. @@ -1526,7 +1393,7 @@ items: content: public void GetFramebufferSize(WindowHandle handle, out int width, out int height) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: Handle to a window. - id: width type: System.Int32 @@ -1537,31 +1404,27 @@ items: content.vb: Public Sub GetFramebufferSize(handle As WindowHandle, width As Integer, height As Integer) overload: OpenTK.Platform.Native.X11.X11WindowComponent.GetFramebufferSize* implements: - - OpenTK.Core.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) + - OpenTK.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) nameWithType.vb: X11WindowComponent.GetFramebufferSize(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Platform.Native.X11.X11WindowComponent.GetFramebufferSize(OpenTK.Core.Platform.WindowHandle, Integer, Integer) + fullName.vb: OpenTK.Platform.Native.X11.X11WindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle, Integer, Integer) name.vb: GetFramebufferSize(WindowHandle, Integer, Integer) -- uid: OpenTK.Platform.Native.X11.X11WindowComponent.GetMaxClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) - commentId: M:OpenTK.Platform.Native.X11.X11WindowComponent.GetMaxClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) - id: GetMaxClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) +- uid: OpenTK.Platform.Native.X11.X11WindowComponent.GetMaxClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) + commentId: M:OpenTK.Platform.Native.X11.X11WindowComponent.GetMaxClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) + id: GetMaxClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) parent: OpenTK.Platform.Native.X11.X11WindowComponent langs: - csharp - vb name: GetMaxClientSize(WindowHandle, out int?, out int?) nameWithType: X11WindowComponent.GetMaxClientSize(WindowHandle, out int?, out int?) - fullName: OpenTK.Platform.Native.X11.X11WindowComponent.GetMaxClientSize(OpenTK.Core.Platform.WindowHandle, out int?, out int?) + fullName: OpenTK.Platform.Native.X11.X11WindowComponent.GetMaxClientSize(OpenTK.Platform.WindowHandle, out int?, out int?) type: Method source: - remote: - path: src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetMaxClientSize - path: opentk/src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - startLine: 1819 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11WindowComponent.cs + startLine: 1835 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: Gets the maximum size of the client area. example: [] @@ -1569,7 +1432,7 @@ items: content: public void GetMaxClientSize(WindowHandle handle, out int? width, out int? height) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: Handle to a window. - id: width type: System.Nullable{System.Int32} @@ -1580,31 +1443,27 @@ items: content.vb: Public Sub GetMaxClientSize(handle As WindowHandle, width As Integer?, height As Integer?) overload: OpenTK.Platform.Native.X11.X11WindowComponent.GetMaxClientSize* implements: - - OpenTK.Core.Platform.IWindowComponent.GetMaxClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) + - OpenTK.Platform.IWindowComponent.GetMaxClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) nameWithType.vb: X11WindowComponent.GetMaxClientSize(WindowHandle, Integer?, Integer?) - fullName.vb: OpenTK.Platform.Native.X11.X11WindowComponent.GetMaxClientSize(OpenTK.Core.Platform.WindowHandle, Integer?, Integer?) + fullName.vb: OpenTK.Platform.Native.X11.X11WindowComponent.GetMaxClientSize(OpenTK.Platform.WindowHandle, Integer?, Integer?) name.vb: GetMaxClientSize(WindowHandle, Integer?, Integer?) -- uid: OpenTK.Platform.Native.X11.X11WindowComponent.SetMaxClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) - commentId: M:OpenTK.Platform.Native.X11.X11WindowComponent.SetMaxClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) - id: SetMaxClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) +- uid: OpenTK.Platform.Native.X11.X11WindowComponent.SetMaxClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) + commentId: M:OpenTK.Platform.Native.X11.X11WindowComponent.SetMaxClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) + id: SetMaxClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) parent: OpenTK.Platform.Native.X11.X11WindowComponent langs: - csharp - vb name: SetMaxClientSize(WindowHandle, int?, int?) nameWithType: X11WindowComponent.SetMaxClientSize(WindowHandle, int?, int?) - fullName: OpenTK.Platform.Native.X11.X11WindowComponent.SetMaxClientSize(OpenTK.Core.Platform.WindowHandle, int?, int?) + fullName: OpenTK.Platform.Native.X11.X11WindowComponent.SetMaxClientSize(OpenTK.Platform.WindowHandle, int?, int?) type: Method source: - remote: - path: src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetMaxClientSize - path: opentk/src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - startLine: 1856 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11WindowComponent.cs + startLine: 1872 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: Sets the maximum size of the client area. example: [] @@ -1612,7 +1471,7 @@ items: content: public void SetMaxClientSize(WindowHandle handle, int? width, int? height) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: Handle to a window. - id: width type: System.Nullable{System.Int32} @@ -1623,31 +1482,27 @@ items: content.vb: Public Sub SetMaxClientSize(handle As WindowHandle, width As Integer?, height As Integer?) overload: OpenTK.Platform.Native.X11.X11WindowComponent.SetMaxClientSize* implements: - - OpenTK.Core.Platform.IWindowComponent.SetMaxClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) + - OpenTK.Platform.IWindowComponent.SetMaxClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) nameWithType.vb: X11WindowComponent.SetMaxClientSize(WindowHandle, Integer?, Integer?) - fullName.vb: OpenTK.Platform.Native.X11.X11WindowComponent.SetMaxClientSize(OpenTK.Core.Platform.WindowHandle, Integer?, Integer?) + fullName.vb: OpenTK.Platform.Native.X11.X11WindowComponent.SetMaxClientSize(OpenTK.Platform.WindowHandle, Integer?, Integer?) name.vb: SetMaxClientSize(WindowHandle, Integer?, Integer?) -- uid: OpenTK.Platform.Native.X11.X11WindowComponent.GetMinClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) - commentId: M:OpenTK.Platform.Native.X11.X11WindowComponent.GetMinClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) - id: GetMinClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) +- uid: OpenTK.Platform.Native.X11.X11WindowComponent.GetMinClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) + commentId: M:OpenTK.Platform.Native.X11.X11WindowComponent.GetMinClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) + id: GetMinClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) parent: OpenTK.Platform.Native.X11.X11WindowComponent langs: - csharp - vb name: GetMinClientSize(WindowHandle, out int?, out int?) nameWithType: X11WindowComponent.GetMinClientSize(WindowHandle, out int?, out int?) - fullName: OpenTK.Platform.Native.X11.X11WindowComponent.GetMinClientSize(OpenTK.Core.Platform.WindowHandle, out int?, out int?) + fullName: OpenTK.Platform.Native.X11.X11WindowComponent.GetMinClientSize(OpenTK.Platform.WindowHandle, out int?, out int?) type: Method source: - remote: - path: src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetMinClientSize - path: opentk/src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - startLine: 1885 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11WindowComponent.cs + startLine: 1901 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: Gets the minimum size of the client area. example: [] @@ -1655,7 +1510,7 @@ items: content: public void GetMinClientSize(WindowHandle handle, out int? width, out int? height) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: Handle to a window. - id: width type: System.Nullable{System.Int32} @@ -1666,31 +1521,27 @@ items: content.vb: Public Sub GetMinClientSize(handle As WindowHandle, width As Integer?, height As Integer?) overload: OpenTK.Platform.Native.X11.X11WindowComponent.GetMinClientSize* implements: - - OpenTK.Core.Platform.IWindowComponent.GetMinClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) + - OpenTK.Platform.IWindowComponent.GetMinClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) nameWithType.vb: X11WindowComponent.GetMinClientSize(WindowHandle, Integer?, Integer?) - fullName.vb: OpenTK.Platform.Native.X11.X11WindowComponent.GetMinClientSize(OpenTK.Core.Platform.WindowHandle, Integer?, Integer?) + fullName.vb: OpenTK.Platform.Native.X11.X11WindowComponent.GetMinClientSize(OpenTK.Platform.WindowHandle, Integer?, Integer?) name.vb: GetMinClientSize(WindowHandle, Integer?, Integer?) -- uid: OpenTK.Platform.Native.X11.X11WindowComponent.SetMinClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) - commentId: M:OpenTK.Platform.Native.X11.X11WindowComponent.SetMinClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) - id: SetMinClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) +- uid: OpenTK.Platform.Native.X11.X11WindowComponent.SetMinClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) + commentId: M:OpenTK.Platform.Native.X11.X11WindowComponent.SetMinClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) + id: SetMinClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) parent: OpenTK.Platform.Native.X11.X11WindowComponent langs: - csharp - vb name: SetMinClientSize(WindowHandle, int?, int?) nameWithType: X11WindowComponent.SetMinClientSize(WindowHandle, int?, int?) - fullName: OpenTK.Platform.Native.X11.X11WindowComponent.SetMinClientSize(OpenTK.Core.Platform.WindowHandle, int?, int?) + fullName: OpenTK.Platform.Native.X11.X11WindowComponent.SetMinClientSize(OpenTK.Platform.WindowHandle, int?, int?) type: Method source: - remote: - path: src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetMinClientSize - path: opentk/src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - startLine: 1923 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11WindowComponent.cs + startLine: 1939 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: Sets the minimum size of the client area. example: [] @@ -1698,7 +1549,7 @@ items: content: public void SetMinClientSize(WindowHandle handle, int? width, int? height) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: Handle to a window. - id: width type: System.Nullable{System.Int32} @@ -1709,31 +1560,27 @@ items: content.vb: Public Sub SetMinClientSize(handle As WindowHandle, width As Integer?, height As Integer?) overload: OpenTK.Platform.Native.X11.X11WindowComponent.SetMinClientSize* implements: - - OpenTK.Core.Platform.IWindowComponent.SetMinClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) + - OpenTK.Platform.IWindowComponent.SetMinClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) nameWithType.vb: X11WindowComponent.SetMinClientSize(WindowHandle, Integer?, Integer?) - fullName.vb: OpenTK.Platform.Native.X11.X11WindowComponent.SetMinClientSize(OpenTK.Core.Platform.WindowHandle, Integer?, Integer?) + fullName.vb: OpenTK.Platform.Native.X11.X11WindowComponent.SetMinClientSize(OpenTK.Platform.WindowHandle, Integer?, Integer?) name.vb: SetMinClientSize(WindowHandle, Integer?, Integer?) -- uid: OpenTK.Platform.Native.X11.X11WindowComponent.GetDisplay(OpenTK.Core.Platform.WindowHandle) - commentId: M:OpenTK.Platform.Native.X11.X11WindowComponent.GetDisplay(OpenTK.Core.Platform.WindowHandle) - id: GetDisplay(OpenTK.Core.Platform.WindowHandle) +- uid: OpenTK.Platform.Native.X11.X11WindowComponent.GetDisplay(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.Native.X11.X11WindowComponent.GetDisplay(OpenTK.Platform.WindowHandle) + id: GetDisplay(OpenTK.Platform.WindowHandle) parent: OpenTK.Platform.Native.X11.X11WindowComponent langs: - csharp - vb name: GetDisplay(WindowHandle) nameWithType: X11WindowComponent.GetDisplay(WindowHandle) - fullName: OpenTK.Platform.Native.X11.X11WindowComponent.GetDisplay(OpenTK.Core.Platform.WindowHandle) + fullName: OpenTK.Platform.Native.X11.X11WindowComponent.GetDisplay(OpenTK.Platform.WindowHandle) type: Method source: - remote: - path: src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetDisplay - path: opentk/src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - startLine: 1950 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11WindowComponent.cs + startLine: 1966 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: Get the display handle a window is in. example: [] @@ -1741,10 +1588,10 @@ items: content: public DisplayHandle GetDisplay(WindowHandle handle) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: Handle to a window. return: - type: OpenTK.Core.Platform.DisplayHandle + type: OpenTK.Platform.DisplayHandle description: The display handle the window is in. content.vb: Public Function GetDisplay(handle As WindowHandle) As DisplayHandle overload: OpenTK.Platform.Native.X11.X11WindowComponent.GetDisplay* @@ -1752,36 +1599,35 @@ items: - type: System.ArgumentNullException commentId: T:System.ArgumentNullException description: handle is null. - - type: OpenTK.Core.Platform.PalNotImplementedException - commentId: T:OpenTK.Core.Platform.PalNotImplementedException - description: Driver does not support finding the window display. . + - type: OpenTK.Platform.PalNotImplementedException + commentId: T:OpenTK.Platform.PalNotImplementedException + description: Backend does not support finding the window display. . + seealso: + - linkId: OpenTK.Platform.IWindowComponent.CanGetDisplay + commentId: P:OpenTK.Platform.IWindowComponent.CanGetDisplay implements: - - OpenTK.Core.Platform.IWindowComponent.GetDisplay(OpenTK.Core.Platform.WindowHandle) -- uid: OpenTK.Platform.Native.X11.X11WindowComponent.GetMode(OpenTK.Core.Platform.WindowHandle) - commentId: M:OpenTK.Platform.Native.X11.X11WindowComponent.GetMode(OpenTK.Core.Platform.WindowHandle) - id: GetMode(OpenTK.Core.Platform.WindowHandle) + - OpenTK.Platform.IWindowComponent.GetDisplay(OpenTK.Platform.WindowHandle) +- uid: OpenTK.Platform.Native.X11.X11WindowComponent.GetMode(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.Native.X11.X11WindowComponent.GetMode(OpenTK.Platform.WindowHandle) + id: GetMode(OpenTK.Platform.WindowHandle) parent: OpenTK.Platform.Native.X11.X11WindowComponent langs: - csharp - vb name: GetMode(WindowHandle) nameWithType: X11WindowComponent.GetMode(WindowHandle) - fullName: OpenTK.Platform.Native.X11.X11WindowComponent.GetMode(OpenTK.Core.Platform.WindowHandle) + fullName: OpenTK.Platform.Native.X11.X11WindowComponent.GetMode(OpenTK.Platform.WindowHandle) type: Method source: - remote: - path: src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetMode - path: opentk/src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - startLine: 2026 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11WindowComponent.cs + startLine: 2042 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: Get the mode of a window. remarks: >- - Calling this in rapid succession after will likely report the wrong mode as the X server hasn't updated the state of the window yet. + Calling this in rapid succession after will likely report the wrong mode as the X server hasn't updated the state of the window yet. We could add a delay where we wait for the server to change the window, but for now we leave it as it is. example: [] @@ -1789,10 +1635,10 @@ items: content: public WindowMode GetMode(WindowHandle handle) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: Handle to a window. return: - type: OpenTK.Core.Platform.WindowMode + type: OpenTK.Platform.WindowMode description: The mode of the window. content.vb: Public Function GetMode(handle As WindowHandle) As WindowMode overload: OpenTK.Platform.Native.X11.X11WindowComponent.GetMode* @@ -1801,47 +1647,43 @@ items: commentId: T:System.ArgumentNullException description: handle is null. implements: - - OpenTK.Core.Platform.IWindowComponent.GetMode(OpenTK.Core.Platform.WindowHandle) -- uid: OpenTK.Platform.Native.X11.X11WindowComponent.SetMode(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.WindowMode) - commentId: M:OpenTK.Platform.Native.X11.X11WindowComponent.SetMode(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.WindowMode) - id: SetMode(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.WindowMode) + - OpenTK.Platform.IWindowComponent.GetMode(OpenTK.Platform.WindowHandle) +- uid: OpenTK.Platform.Native.X11.X11WindowComponent.SetMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowMode) + commentId: M:OpenTK.Platform.Native.X11.X11WindowComponent.SetMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowMode) + id: SetMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowMode) parent: OpenTK.Platform.Native.X11.X11WindowComponent langs: - csharp - vb name: SetMode(WindowHandle, WindowMode) nameWithType: X11WindowComponent.SetMode(WindowHandle, WindowMode) - fullName: OpenTK.Platform.Native.X11.X11WindowComponent.SetMode(OpenTK.Core.Platform.WindowHandle, OpenTK.Core.Platform.WindowMode) + fullName: OpenTK.Platform.Native.X11.X11WindowComponent.SetMode(OpenTK.Platform.WindowHandle, OpenTK.Platform.WindowMode) type: Method source: - remote: - path: src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetMode - path: opentk/src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - startLine: 2097 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11WindowComponent.cs + startLine: 2113 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: Set the mode of a window. remarks: >- - Setting or + Setting or will make the window fullscreen in the nearest monitor to the window location. - Use or + Use or - to explicitly set the monitor. + to explicitly set the monitor. example: [] syntax: content: public void SetMode(WindowHandle handle, WindowMode mode) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: Handle to a window. - id: mode - type: OpenTK.Core.Platform.WindowMode + type: OpenTK.Platform.WindowMode description: The new mode of the window. content.vb: Public Sub SetMode(handle As WindowHandle, mode As WindowMode) overload: OpenTK.Platform.Native.X11.X11WindowComponent.SetMode* @@ -1852,122 +1694,110 @@ items: - type: System.ArgumentOutOfRangeException commentId: T:System.ArgumentOutOfRangeException description: mode is an invalid value. - - type: OpenTK.Core.Platform.PalNotImplementedException - commentId: T:OpenTK.Core.Platform.PalNotImplementedException - description: Driver does not support the value set by mode. See . + - type: OpenTK.Platform.PalNotImplementedException + commentId: T:OpenTK.Platform.PalNotImplementedException + description: Driver does not support the value set by mode. See . implements: - - OpenTK.Core.Platform.IWindowComponent.SetMode(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.WindowMode) -- uid: OpenTK.Platform.Native.X11.X11WindowComponent.SetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle) - commentId: M:OpenTK.Platform.Native.X11.X11WindowComponent.SetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle) - id: SetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle) + - OpenTK.Platform.IWindowComponent.SetMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowMode) +- uid: OpenTK.Platform.Native.X11.X11WindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle) + commentId: M:OpenTK.Platform.Native.X11.X11WindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle) + id: SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle) parent: OpenTK.Platform.Native.X11.X11WindowComponent langs: - csharp - vb name: SetFullscreenDisplay(WindowHandle, DisplayHandle?) nameWithType: X11WindowComponent.SetFullscreenDisplay(WindowHandle, DisplayHandle?) - fullName: OpenTK.Platform.Native.X11.X11WindowComponent.SetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle, OpenTK.Core.Platform.DisplayHandle?) + fullName: OpenTK.Platform.Native.X11.X11WindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle, OpenTK.Platform.DisplayHandle?) type: Method source: - remote: - path: src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetFullscreenDisplay - path: opentk/src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - startLine: 2285 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11WindowComponent.cs + startLine: 2301 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: >- Put a window into 'windowed fullscreen' on a specified display or the display the window is displayed on. If display is null then the window will be made fullscreen on the 'nearest' display. - remarks: To make an 'exclusive fullscreen' window see . + remarks: To make an 'exclusive fullscreen' window see . example: [] syntax: content: public void SetFullscreenDisplay(WindowHandle handle, DisplayHandle? display) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: The window to make fullscreen. - id: display - type: OpenTK.Core.Platform.DisplayHandle + type: OpenTK.Platform.DisplayHandle description: The display to make the window fullscreen on. content.vb: Public Sub SetFullscreenDisplay(handle As WindowHandle, display As DisplayHandle) overload: OpenTK.Platform.Native.X11.X11WindowComponent.SetFullscreenDisplay* implements: - - OpenTK.Core.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle) + - OpenTK.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle) nameWithType.vb: X11WindowComponent.SetFullscreenDisplay(WindowHandle, DisplayHandle) - fullName.vb: OpenTK.Platform.Native.X11.X11WindowComponent.SetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle, OpenTK.Core.Platform.DisplayHandle) + fullName.vb: OpenTK.Platform.Native.X11.X11WindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle, OpenTK.Platform.DisplayHandle) name.vb: SetFullscreenDisplay(WindowHandle, DisplayHandle) -- uid: OpenTK.Platform.Native.X11.X11WindowComponent.SetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle,OpenTK.Core.Platform.VideoMode) - commentId: M:OpenTK.Platform.Native.X11.X11WindowComponent.SetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle,OpenTK.Core.Platform.VideoMode) - id: SetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle,OpenTK.Core.Platform.VideoMode) +- uid: OpenTK.Platform.Native.X11.X11WindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle,OpenTK.Platform.VideoMode) + commentId: M:OpenTK.Platform.Native.X11.X11WindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle,OpenTK.Platform.VideoMode) + id: SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle,OpenTK.Platform.VideoMode) parent: OpenTK.Platform.Native.X11.X11WindowComponent langs: - csharp - vb name: SetFullscreenDisplay(WindowHandle, DisplayHandle, VideoMode) nameWithType: X11WindowComponent.SetFullscreenDisplay(WindowHandle, DisplayHandle, VideoMode) - fullName: OpenTK.Platform.Native.X11.X11WindowComponent.SetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle, OpenTK.Core.Platform.DisplayHandle, OpenTK.Core.Platform.VideoMode) + fullName: OpenTK.Platform.Native.X11.X11WindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle, OpenTK.Platform.DisplayHandle, OpenTK.Platform.VideoMode) type: Method source: - remote: - path: src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetFullscreenDisplay - path: opentk/src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - startLine: 2360 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11WindowComponent.cs + startLine: 2376 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: >- Put a window into 'exclusive fullscreen' on a specified display and change the video mode to the specified video mode. - Only video modes accuired using + Only video modes accuired using are expected to work. - remarks: To make an 'windowed fullscreen' window see . + remarks: To make an 'windowed fullscreen' window see . example: [] syntax: content: public void SetFullscreenDisplay(WindowHandle handle, DisplayHandle display, VideoMode videoMode) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: The window to make fullscreen. - id: display - type: OpenTK.Core.Platform.DisplayHandle + type: OpenTK.Platform.DisplayHandle description: The display to make the window fullscreen on. - id: videoMode - type: OpenTK.Core.Platform.VideoMode + type: OpenTK.Platform.VideoMode description: The video mode to use when making the window fullscreen. content.vb: Public Sub SetFullscreenDisplay(handle As WindowHandle, display As DisplayHandle, videoMode As VideoMode) overload: OpenTK.Platform.Native.X11.X11WindowComponent.SetFullscreenDisplay* implements: - - OpenTK.Core.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle,OpenTK.Core.Platform.VideoMode) -- uid: OpenTK.Platform.Native.X11.X11WindowComponent.GetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle@) - commentId: M:OpenTK.Platform.Native.X11.X11WindowComponent.GetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle@) - id: GetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle@) + - OpenTK.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle,OpenTK.Platform.VideoMode) +- uid: OpenTK.Platform.Native.X11.X11WindowComponent.GetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle@) + commentId: M:OpenTK.Platform.Native.X11.X11WindowComponent.GetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle@) + id: GetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle@) parent: OpenTK.Platform.Native.X11.X11WindowComponent langs: - csharp - vb name: GetFullscreenDisplay(WindowHandle, out DisplayHandle?) nameWithType: X11WindowComponent.GetFullscreenDisplay(WindowHandle, out DisplayHandle?) - fullName: OpenTK.Platform.Native.X11.X11WindowComponent.GetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle, out OpenTK.Core.Platform.DisplayHandle?) + fullName: OpenTK.Platform.Native.X11.X11WindowComponent.GetFullscreenDisplay(OpenTK.Platform.WindowHandle, out OpenTK.Platform.DisplayHandle?) type: Method source: - remote: - path: src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetFullscreenDisplay - path: opentk/src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - startLine: 2434 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11WindowComponent.cs + startLine: 2450 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: Gets the display that the specified window is fullscreen on, if the window is fullscreen. example: [] @@ -1975,10 +1805,10 @@ items: content: public bool GetFullscreenDisplay(WindowHandle handle, out DisplayHandle? display) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: The window handle. - id: display - type: OpenTK.Core.Platform.DisplayHandle + type: OpenTK.Platform.DisplayHandle description: The display where the window is fullscreen or null if the window is not fullscreen. return: type: System.Boolean @@ -1986,35 +1816,31 @@ items: content.vb: Public Function GetFullscreenDisplay(handle As WindowHandle, display As DisplayHandle) As Boolean overload: OpenTK.Platform.Native.X11.X11WindowComponent.GetFullscreenDisplay* implements: - - OpenTK.Core.Platform.IWindowComponent.GetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle@) + - OpenTK.Platform.IWindowComponent.GetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle@) nameWithType.vb: X11WindowComponent.GetFullscreenDisplay(WindowHandle, DisplayHandle) - fullName.vb: OpenTK.Platform.Native.X11.X11WindowComponent.GetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle, OpenTK.Core.Platform.DisplayHandle) + fullName.vb: OpenTK.Platform.Native.X11.X11WindowComponent.GetFullscreenDisplay(OpenTK.Platform.WindowHandle, OpenTK.Platform.DisplayHandle) name.vb: GetFullscreenDisplay(WindowHandle, DisplayHandle) -- uid: OpenTK.Platform.Native.X11.X11WindowComponent.GetBorderStyle(OpenTK.Core.Platform.WindowHandle) - commentId: M:OpenTK.Platform.Native.X11.X11WindowComponent.GetBorderStyle(OpenTK.Core.Platform.WindowHandle) - id: GetBorderStyle(OpenTK.Core.Platform.WindowHandle) +- uid: OpenTK.Platform.Native.X11.X11WindowComponent.GetBorderStyle(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.Native.X11.X11WindowComponent.GetBorderStyle(OpenTK.Platform.WindowHandle) + id: GetBorderStyle(OpenTK.Platform.WindowHandle) parent: OpenTK.Platform.Native.X11.X11WindowComponent langs: - csharp - vb name: GetBorderStyle(WindowHandle) nameWithType: X11WindowComponent.GetBorderStyle(WindowHandle) - fullName: OpenTK.Platform.Native.X11.X11WindowComponent.GetBorderStyle(OpenTK.Core.Platform.WindowHandle) + fullName: OpenTK.Platform.Native.X11.X11WindowComponent.GetBorderStyle(OpenTK.Platform.WindowHandle) type: Method source: - remote: - path: src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetBorderStyle - path: opentk/src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - startLine: 2446 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11WindowComponent.cs + startLine: 2462 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: Get the border style of a window. remarks: >- - Calling this in rapid succession after will likely report the wrong style as the X server hasn't updated the state of the window yet. + Calling this in rapid succession after will likely report the wrong style as the X server hasn't updated the state of the window yet. We could add a delay where we wait for the server to change the window, but for now we leave it as it is. example: [] @@ -2022,10 +1848,10 @@ items: content: public WindowBorderStyle GetBorderStyle(WindowHandle handle) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: Handle to window. return: - type: OpenTK.Core.Platform.WindowBorderStyle + type: OpenTK.Platform.WindowBorderStyle description: The border style of the window. content.vb: Public Function GetBorderStyle(handle As WindowHandle) As WindowBorderStyle overload: OpenTK.Platform.Native.X11.X11WindowComponent.GetBorderStyle* @@ -2034,28 +1860,24 @@ items: commentId: T:System.ArgumentNullException description: handle is null. implements: - - OpenTK.Core.Platform.IWindowComponent.GetBorderStyle(OpenTK.Core.Platform.WindowHandle) -- uid: OpenTK.Platform.Native.X11.X11WindowComponent.SetBorderStyle(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.WindowBorderStyle) - commentId: M:OpenTK.Platform.Native.X11.X11WindowComponent.SetBorderStyle(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.WindowBorderStyle) - id: SetBorderStyle(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.WindowBorderStyle) + - OpenTK.Platform.IWindowComponent.GetBorderStyle(OpenTK.Platform.WindowHandle) +- uid: OpenTK.Platform.Native.X11.X11WindowComponent.SetBorderStyle(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowBorderStyle) + commentId: M:OpenTK.Platform.Native.X11.X11WindowComponent.SetBorderStyle(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowBorderStyle) + id: SetBorderStyle(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowBorderStyle) parent: OpenTK.Platform.Native.X11.X11WindowComponent langs: - csharp - vb name: SetBorderStyle(WindowHandle, WindowBorderStyle) nameWithType: X11WindowComponent.SetBorderStyle(WindowHandle, WindowBorderStyle) - fullName: OpenTK.Platform.Native.X11.X11WindowComponent.SetBorderStyle(OpenTK.Core.Platform.WindowHandle, OpenTK.Core.Platform.WindowBorderStyle) + fullName: OpenTK.Platform.Native.X11.X11WindowComponent.SetBorderStyle(OpenTK.Platform.WindowHandle, OpenTK.Platform.WindowBorderStyle) type: Method source: - remote: - path: src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetBorderStyle - path: opentk/src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - startLine: 2512 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11WindowComponent.cs + startLine: 2528 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: Set the border style of a window. example: [] @@ -2063,10 +1885,10 @@ items: content: public void SetBorderStyle(WindowHandle handle, WindowBorderStyle style) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: Handle to a window. - id: style - type: OpenTK.Core.Platform.WindowBorderStyle + type: OpenTK.Platform.WindowBorderStyle description: The new border style of the window. content.vb: Public Sub SetBorderStyle(handle As WindowHandle, style As WindowBorderStyle) overload: OpenTK.Platform.Native.X11.X11WindowComponent.SetBorderStyle* @@ -2077,32 +1899,28 @@ items: - type: System.ArgumentOutOfRangeException commentId: T:System.ArgumentOutOfRangeException description: style is an invalid value. - - type: OpenTK.Core.Platform.PalNotImplementedException - commentId: T:OpenTK.Core.Platform.PalNotImplementedException - description: Driver does not support the value set by style. See . + - type: OpenTK.Platform.PalNotImplementedException + commentId: T:OpenTK.Platform.PalNotImplementedException + description: Driver does not support the value set by style. See . implements: - - OpenTK.Core.Platform.IWindowComponent.SetBorderStyle(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.WindowBorderStyle) -- uid: OpenTK.Platform.Native.X11.X11WindowComponent.SetAlwaysOnTop(OpenTK.Core.Platform.WindowHandle,System.Boolean) - commentId: M:OpenTK.Platform.Native.X11.X11WindowComponent.SetAlwaysOnTop(OpenTK.Core.Platform.WindowHandle,System.Boolean) - id: SetAlwaysOnTop(OpenTK.Core.Platform.WindowHandle,System.Boolean) + - OpenTK.Platform.IWindowComponent.SetBorderStyle(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowBorderStyle) +- uid: OpenTK.Platform.Native.X11.X11WindowComponent.SetAlwaysOnTop(OpenTK.Platform.WindowHandle,System.Boolean) + commentId: M:OpenTK.Platform.Native.X11.X11WindowComponent.SetAlwaysOnTop(OpenTK.Platform.WindowHandle,System.Boolean) + id: SetAlwaysOnTop(OpenTK.Platform.WindowHandle,System.Boolean) parent: OpenTK.Platform.Native.X11.X11WindowComponent langs: - csharp - vb name: SetAlwaysOnTop(WindowHandle, bool) nameWithType: X11WindowComponent.SetAlwaysOnTop(WindowHandle, bool) - fullName: OpenTK.Platform.Native.X11.X11WindowComponent.SetAlwaysOnTop(OpenTK.Core.Platform.WindowHandle, bool) + fullName: OpenTK.Platform.Native.X11.X11WindowComponent.SetAlwaysOnTop(OpenTK.Platform.WindowHandle, bool) type: Method source: - remote: - path: src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetAlwaysOnTop - path: opentk/src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - startLine: 2646 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11WindowComponent.cs + startLine: 2662 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: Set if the window is an always on top window or not. example: [] @@ -2110,7 +1928,7 @@ items: content: public void SetAlwaysOnTop(WindowHandle handle, bool floating) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: A handle to the window to make always on top. - id: floating type: System.Boolean @@ -2118,31 +1936,27 @@ items: content.vb: Public Sub SetAlwaysOnTop(handle As WindowHandle, floating As Boolean) overload: OpenTK.Platform.Native.X11.X11WindowComponent.SetAlwaysOnTop* implements: - - OpenTK.Core.Platform.IWindowComponent.SetAlwaysOnTop(OpenTK.Core.Platform.WindowHandle,System.Boolean) + - OpenTK.Platform.IWindowComponent.SetAlwaysOnTop(OpenTK.Platform.WindowHandle,System.Boolean) nameWithType.vb: X11WindowComponent.SetAlwaysOnTop(WindowHandle, Boolean) - fullName.vb: OpenTK.Platform.Native.X11.X11WindowComponent.SetAlwaysOnTop(OpenTK.Core.Platform.WindowHandle, Boolean) + fullName.vb: OpenTK.Platform.Native.X11.X11WindowComponent.SetAlwaysOnTop(OpenTK.Platform.WindowHandle, Boolean) name.vb: SetAlwaysOnTop(WindowHandle, Boolean) -- uid: OpenTK.Platform.Native.X11.X11WindowComponent.IsAlwaysOnTop(OpenTK.Core.Platform.WindowHandle) - commentId: M:OpenTK.Platform.Native.X11.X11WindowComponent.IsAlwaysOnTop(OpenTK.Core.Platform.WindowHandle) - id: IsAlwaysOnTop(OpenTK.Core.Platform.WindowHandle) +- uid: OpenTK.Platform.Native.X11.X11WindowComponent.IsAlwaysOnTop(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.Native.X11.X11WindowComponent.IsAlwaysOnTop(OpenTK.Platform.WindowHandle) + id: IsAlwaysOnTop(OpenTK.Platform.WindowHandle) parent: OpenTK.Platform.Native.X11.X11WindowComponent langs: - csharp - vb name: IsAlwaysOnTop(WindowHandle) nameWithType: X11WindowComponent.IsAlwaysOnTop(WindowHandle) - fullName: OpenTK.Platform.Native.X11.X11WindowComponent.IsAlwaysOnTop(OpenTK.Core.Platform.WindowHandle) + fullName: OpenTK.Platform.Native.X11.X11WindowComponent.IsAlwaysOnTop(OpenTK.Platform.WindowHandle) type: Method source: - remote: - path: src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: IsAlwaysOnTop - path: opentk/src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - startLine: 2685 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11WindowComponent.cs + startLine: 2701 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: Gets if the current window is always on top or not. example: [] @@ -2150,7 +1964,7 @@ items: content: public bool IsAlwaysOnTop(WindowHandle handle) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: A handle to the window to get whether or not is always on top. return: type: System.Boolean @@ -2158,28 +1972,24 @@ items: content.vb: Public Function IsAlwaysOnTop(handle As WindowHandle) As Boolean overload: OpenTK.Platform.Native.X11.X11WindowComponent.IsAlwaysOnTop* implements: - - OpenTK.Core.Platform.IWindowComponent.IsAlwaysOnTop(OpenTK.Core.Platform.WindowHandle) -- uid: OpenTK.Platform.Native.X11.X11WindowComponent.SetHitTestCallback(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.HitTest) - commentId: M:OpenTK.Platform.Native.X11.X11WindowComponent.SetHitTestCallback(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.HitTest) - id: SetHitTestCallback(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.HitTest) + - OpenTK.Platform.IWindowComponent.IsAlwaysOnTop(OpenTK.Platform.WindowHandle) +- uid: OpenTK.Platform.Native.X11.X11WindowComponent.SetHitTestCallback(OpenTK.Platform.WindowHandle,OpenTK.Platform.HitTest) + commentId: M:OpenTK.Platform.Native.X11.X11WindowComponent.SetHitTestCallback(OpenTK.Platform.WindowHandle,OpenTK.Platform.HitTest) + id: SetHitTestCallback(OpenTK.Platform.WindowHandle,OpenTK.Platform.HitTest) parent: OpenTK.Platform.Native.X11.X11WindowComponent langs: - csharp - vb name: SetHitTestCallback(WindowHandle, HitTest?) nameWithType: X11WindowComponent.SetHitTestCallback(WindowHandle, HitTest?) - fullName: OpenTK.Platform.Native.X11.X11WindowComponent.SetHitTestCallback(OpenTK.Core.Platform.WindowHandle, OpenTK.Core.Platform.HitTest?) + fullName: OpenTK.Platform.Native.X11.X11WindowComponent.SetHitTestCallback(OpenTK.Platform.WindowHandle, OpenTK.Platform.HitTest?) type: Method source: - remote: - path: src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetHitTestCallback - path: opentk/src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - startLine: 2730 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11WindowComponent.cs + startLine: 2746 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: >- Sets a delegate that is used for hit testing. @@ -2197,39 +2007,35 @@ items: content: public void SetHitTestCallback(WindowHandle handle, HitTest? test) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: The window for which this hit test delegate should be used for. - id: test - type: OpenTK.Core.Platform.HitTest + type: OpenTK.Platform.HitTest description: The hit test delegate. content.vb: Public Sub SetHitTestCallback(handle As WindowHandle, test As HitTest) overload: OpenTK.Platform.Native.X11.X11WindowComponent.SetHitTestCallback* implements: - - OpenTK.Core.Platform.IWindowComponent.SetHitTestCallback(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.HitTest) + - OpenTK.Platform.IWindowComponent.SetHitTestCallback(OpenTK.Platform.WindowHandle,OpenTK.Platform.HitTest) nameWithType.vb: X11WindowComponent.SetHitTestCallback(WindowHandle, HitTest) - fullName.vb: OpenTK.Platform.Native.X11.X11WindowComponent.SetHitTestCallback(OpenTK.Core.Platform.WindowHandle, OpenTK.Core.Platform.HitTest) + fullName.vb: OpenTK.Platform.Native.X11.X11WindowComponent.SetHitTestCallback(OpenTK.Platform.WindowHandle, OpenTK.Platform.HitTest) name.vb: SetHitTestCallback(WindowHandle, HitTest) -- uid: OpenTK.Platform.Native.X11.X11WindowComponent.SetCursor(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.CursorHandle) - commentId: M:OpenTK.Platform.Native.X11.X11WindowComponent.SetCursor(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.CursorHandle) - id: SetCursor(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.CursorHandle) +- uid: OpenTK.Platform.Native.X11.X11WindowComponent.SetCursor(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorHandle) + commentId: M:OpenTK.Platform.Native.X11.X11WindowComponent.SetCursor(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorHandle) + id: SetCursor(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorHandle) parent: OpenTK.Platform.Native.X11.X11WindowComponent langs: - csharp - vb name: SetCursor(WindowHandle, CursorHandle?) nameWithType: X11WindowComponent.SetCursor(WindowHandle, CursorHandle?) - fullName: OpenTK.Platform.Native.X11.X11WindowComponent.SetCursor(OpenTK.Core.Platform.WindowHandle, OpenTK.Core.Platform.CursorHandle?) + fullName: OpenTK.Platform.Native.X11.X11WindowComponent.SetCursor(OpenTK.Platform.WindowHandle, OpenTK.Platform.CursorHandle?) type: Method source: - remote: - path: src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetCursor - path: opentk/src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - startLine: 2738 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11WindowComponent.cs + startLine: 2754 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: Set the cursor object for a window. example: [] @@ -2237,10 +2043,10 @@ items: content: public void SetCursor(WindowHandle handle, CursorHandle? cursor) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: Handle to a window. - id: cursor - type: OpenTK.Core.Platform.CursorHandle + type: OpenTK.Platform.CursorHandle description: Handle to a cursor object, or null for hidden cursor. content.vb: Public Sub SetCursor(handle As WindowHandle, cursor As CursorHandle) overload: OpenTK.Platform.Native.X11.X11WindowComponent.SetCursor* @@ -2248,72 +2054,67 @@ items: - type: System.ArgumentNullException commentId: T:System.ArgumentNullException description: handle is null. - - type: OpenTK.Core.Platform.PalNotImplementedException - commentId: T:OpenTK.Core.Platform.PalNotImplementedException - description: Driver does not support setting the window mouse cursor. See . + - type: OpenTK.Platform.PalNotImplementedException + commentId: T:OpenTK.Platform.PalNotImplementedException + description: Backend does not support setting the window mouse cursor. See . + seealso: + - linkId: OpenTK.Platform.IWindowComponent.CanSetCursor + commentId: P:OpenTK.Platform.IWindowComponent.CanSetCursor implements: - - OpenTK.Core.Platform.IWindowComponent.SetCursor(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.CursorHandle) + - OpenTK.Platform.IWindowComponent.SetCursor(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorHandle) nameWithType.vb: X11WindowComponent.SetCursor(WindowHandle, CursorHandle) - fullName.vb: OpenTK.Platform.Native.X11.X11WindowComponent.SetCursor(OpenTK.Core.Platform.WindowHandle, OpenTK.Core.Platform.CursorHandle) + fullName.vb: OpenTK.Platform.Native.X11.X11WindowComponent.SetCursor(OpenTK.Platform.WindowHandle, OpenTK.Platform.CursorHandle) name.vb: SetCursor(WindowHandle, CursorHandle) -- uid: OpenTK.Platform.Native.X11.X11WindowComponent.GetCursorCaptureMode(OpenTK.Core.Platform.WindowHandle) - commentId: M:OpenTK.Platform.Native.X11.X11WindowComponent.GetCursorCaptureMode(OpenTK.Core.Platform.WindowHandle) - id: GetCursorCaptureMode(OpenTK.Core.Platform.WindowHandle) +- uid: OpenTK.Platform.Native.X11.X11WindowComponent.GetCursorCaptureMode(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.Native.X11.X11WindowComponent.GetCursorCaptureMode(OpenTK.Platform.WindowHandle) + id: GetCursorCaptureMode(OpenTK.Platform.WindowHandle) parent: OpenTK.Platform.Native.X11.X11WindowComponent langs: - csharp - vb name: GetCursorCaptureMode(WindowHandle) nameWithType: X11WindowComponent.GetCursorCaptureMode(WindowHandle) - fullName: OpenTK.Platform.Native.X11.X11WindowComponent.GetCursorCaptureMode(OpenTK.Core.Platform.WindowHandle) + fullName: OpenTK.Platform.Native.X11.X11WindowComponent.GetCursorCaptureMode(OpenTK.Platform.WindowHandle) type: Method source: - remote: - path: src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetCursorCaptureMode - path: opentk/src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - startLine: 2747 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11WindowComponent.cs + startLine: 2763 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 - summary: Gets the current cursor capture mode. See for more details. + summary: Gets the current cursor capture mode. See for more details. example: [] syntax: content: public CursorCaptureMode GetCursorCaptureMode(WindowHandle handle) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: Handle to a window. return: - type: OpenTK.Core.Platform.CursorCaptureMode + type: OpenTK.Platform.CursorCaptureMode description: The current cursor capture mode. content.vb: Public Function GetCursorCaptureMode(handle As WindowHandle) As CursorCaptureMode overload: OpenTK.Platform.Native.X11.X11WindowComponent.GetCursorCaptureMode* implements: - - OpenTK.Core.Platform.IWindowComponent.GetCursorCaptureMode(OpenTK.Core.Platform.WindowHandle) -- uid: OpenTK.Platform.Native.X11.X11WindowComponent.SetCursorCaptureMode(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.CursorCaptureMode) - commentId: M:OpenTK.Platform.Native.X11.X11WindowComponent.SetCursorCaptureMode(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.CursorCaptureMode) - id: SetCursorCaptureMode(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.CursorCaptureMode) + - OpenTK.Platform.IWindowComponent.GetCursorCaptureMode(OpenTK.Platform.WindowHandle) +- uid: OpenTK.Platform.Native.X11.X11WindowComponent.SetCursorCaptureMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorCaptureMode) + commentId: M:OpenTK.Platform.Native.X11.X11WindowComponent.SetCursorCaptureMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorCaptureMode) + id: SetCursorCaptureMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorCaptureMode) parent: OpenTK.Platform.Native.X11.X11WindowComponent langs: - csharp - vb name: SetCursorCaptureMode(WindowHandle, CursorCaptureMode) nameWithType: X11WindowComponent.SetCursorCaptureMode(WindowHandle, CursorCaptureMode) - fullName: OpenTK.Platform.Native.X11.X11WindowComponent.SetCursorCaptureMode(OpenTK.Core.Platform.WindowHandle, OpenTK.Core.Platform.CursorCaptureMode) + fullName: OpenTK.Platform.Native.X11.X11WindowComponent.SetCursorCaptureMode(OpenTK.Platform.WindowHandle, OpenTK.Platform.CursorCaptureMode) type: Method source: - remote: - path: src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetCursorCaptureMode - path: opentk/src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - startLine: 2755 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11WindowComponent.cs + startLine: 2771 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: >- Sets the cursor capture mode of the window. @@ -2324,36 +2125,35 @@ items: content: public void SetCursorCaptureMode(WindowHandle handle, CursorCaptureMode mode) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: Handle to a window. - id: mode - type: OpenTK.Core.Platform.CursorCaptureMode + type: OpenTK.Platform.CursorCaptureMode description: The cursor capture mode. content.vb: Public Sub SetCursorCaptureMode(handle As WindowHandle, mode As CursorCaptureMode) overload: OpenTK.Platform.Native.X11.X11WindowComponent.SetCursorCaptureMode* + seealso: + - linkId: OpenTK.Platform.IWindowComponent.CanCaptureCursor + commentId: P:OpenTK.Platform.IWindowComponent.CanCaptureCursor implements: - - OpenTK.Core.Platform.IWindowComponent.SetCursorCaptureMode(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.CursorCaptureMode) -- uid: OpenTK.Platform.Native.X11.X11WindowComponent.IsFocused(OpenTK.Core.Platform.WindowHandle) - commentId: M:OpenTK.Platform.Native.X11.X11WindowComponent.IsFocused(OpenTK.Core.Platform.WindowHandle) - id: IsFocused(OpenTK.Core.Platform.WindowHandle) + - OpenTK.Platform.IWindowComponent.SetCursorCaptureMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorCaptureMode) +- uid: OpenTK.Platform.Native.X11.X11WindowComponent.IsFocused(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.Native.X11.X11WindowComponent.IsFocused(OpenTK.Platform.WindowHandle) + id: IsFocused(OpenTK.Platform.WindowHandle) parent: OpenTK.Platform.Native.X11.X11WindowComponent langs: - csharp - vb name: IsFocused(WindowHandle) nameWithType: X11WindowComponent.IsFocused(WindowHandle) - fullName: OpenTK.Platform.Native.X11.X11WindowComponent.IsFocused(OpenTK.Core.Platform.WindowHandle) + fullName: OpenTK.Platform.Native.X11.X11WindowComponent.IsFocused(OpenTK.Platform.WindowHandle) type: Method source: - remote: - path: src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: IsFocused - path: opentk/src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - startLine: 2803 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11WindowComponent.cs + startLine: 2819 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: Returns true if the given window has input focus. example: [] @@ -2361,7 +2161,7 @@ items: content: public bool IsFocused(WindowHandle handle) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: Handle to a window. return: type: System.Boolean @@ -2369,28 +2169,24 @@ items: content.vb: Public Function IsFocused(handle As WindowHandle) As Boolean overload: OpenTK.Platform.Native.X11.X11WindowComponent.IsFocused* implements: - - OpenTK.Core.Platform.IWindowComponent.IsFocused(OpenTK.Core.Platform.WindowHandle) -- uid: OpenTK.Platform.Native.X11.X11WindowComponent.FocusWindow(OpenTK.Core.Platform.WindowHandle) - commentId: M:OpenTK.Platform.Native.X11.X11WindowComponent.FocusWindow(OpenTK.Core.Platform.WindowHandle) - id: FocusWindow(OpenTK.Core.Platform.WindowHandle) + - OpenTK.Platform.IWindowComponent.IsFocused(OpenTK.Platform.WindowHandle) +- uid: OpenTK.Platform.Native.X11.X11WindowComponent.FocusWindow(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.Native.X11.X11WindowComponent.FocusWindow(OpenTK.Platform.WindowHandle) + id: FocusWindow(OpenTK.Platform.WindowHandle) parent: OpenTK.Platform.Native.X11.X11WindowComponent langs: - csharp - vb name: FocusWindow(WindowHandle) nameWithType: X11WindowComponent.FocusWindow(WindowHandle) - fullName: OpenTK.Platform.Native.X11.X11WindowComponent.FocusWindow(OpenTK.Core.Platform.WindowHandle) + fullName: OpenTK.Platform.Native.X11.X11WindowComponent.FocusWindow(OpenTK.Platform.WindowHandle) type: Method source: - remote: - path: src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: FocusWindow - path: opentk/src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - startLine: 2813 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11WindowComponent.cs + startLine: 2829 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: Gives the window input focus. example: [] @@ -2398,33 +2194,29 @@ items: content: public void FocusWindow(WindowHandle handle) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: Handle to the window to focus. content.vb: Public Sub FocusWindow(handle As WindowHandle) overload: OpenTK.Platform.Native.X11.X11WindowComponent.FocusWindow* implements: - - OpenTK.Core.Platform.IWindowComponent.FocusWindow(OpenTK.Core.Platform.WindowHandle) -- uid: OpenTK.Platform.Native.X11.X11WindowComponent.RequestAttention(OpenTK.Core.Platform.WindowHandle) - commentId: M:OpenTK.Platform.Native.X11.X11WindowComponent.RequestAttention(OpenTK.Core.Platform.WindowHandle) - id: RequestAttention(OpenTK.Core.Platform.WindowHandle) + - OpenTK.Platform.IWindowComponent.FocusWindow(OpenTK.Platform.WindowHandle) +- uid: OpenTK.Platform.Native.X11.X11WindowComponent.RequestAttention(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.Native.X11.X11WindowComponent.RequestAttention(OpenTK.Platform.WindowHandle) + id: RequestAttention(OpenTK.Platform.WindowHandle) parent: OpenTK.Platform.Native.X11.X11WindowComponent langs: - csharp - vb name: RequestAttention(WindowHandle) nameWithType: X11WindowComponent.RequestAttention(WindowHandle) - fullName: OpenTK.Platform.Native.X11.X11WindowComponent.RequestAttention(OpenTK.Core.Platform.WindowHandle) + fullName: OpenTK.Platform.Native.X11.X11WindowComponent.RequestAttention(OpenTK.Platform.WindowHandle) type: Method source: - remote: - path: src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: RequestAttention - path: opentk/src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - startLine: 2822 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11WindowComponent.cs + startLine: 2838 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: Requests that the user pay attention to the window. example: [] @@ -2432,33 +2224,29 @@ items: content: public void RequestAttention(WindowHandle handle) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: A handle to the window that requests attention. content.vb: Public Sub RequestAttention(handle As WindowHandle) overload: OpenTK.Platform.Native.X11.X11WindowComponent.RequestAttention* implements: - - OpenTK.Core.Platform.IWindowComponent.RequestAttention(OpenTK.Core.Platform.WindowHandle) -- uid: OpenTK.Platform.Native.X11.X11WindowComponent.DemandAttention(OpenTK.Core.Platform.WindowHandle) - commentId: M:OpenTK.Platform.Native.X11.X11WindowComponent.DemandAttention(OpenTK.Core.Platform.WindowHandle) - id: DemandAttention(OpenTK.Core.Platform.WindowHandle) + - OpenTK.Platform.IWindowComponent.RequestAttention(OpenTK.Platform.WindowHandle) +- uid: OpenTK.Platform.Native.X11.X11WindowComponent.DemandAttention(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.Native.X11.X11WindowComponent.DemandAttention(OpenTK.Platform.WindowHandle) + id: DemandAttention(OpenTK.Platform.WindowHandle) parent: OpenTK.Platform.Native.X11.X11WindowComponent langs: - csharp - vb name: DemandAttention(WindowHandle) nameWithType: X11WindowComponent.DemandAttention(WindowHandle) - fullName: OpenTK.Platform.Native.X11.X11WindowComponent.DemandAttention(OpenTK.Core.Platform.WindowHandle) + fullName: OpenTK.Platform.Native.X11.X11WindowComponent.DemandAttention(OpenTK.Platform.WindowHandle) type: Method source: - remote: - path: src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DemandAttention - path: opentk/src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - startLine: 2848 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11WindowComponent.cs + startLine: 2864 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: >- Indicates that this window demands immediate attention. @@ -2469,31 +2257,27 @@ items: content: public void DemandAttention(WindowHandle handle) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: Handle to a window. content.vb: Public Sub DemandAttention(handle As WindowHandle) overload: OpenTK.Platform.Native.X11.X11WindowComponent.DemandAttention* -- uid: OpenTK.Platform.Native.X11.X11WindowComponent.ScreenToClient(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) - commentId: M:OpenTK.Platform.Native.X11.X11WindowComponent.ScreenToClient(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) - id: ScreenToClient(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) +- uid: OpenTK.Platform.Native.X11.X11WindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) + commentId: M:OpenTK.Platform.Native.X11.X11WindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) + id: ScreenToClient(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) parent: OpenTK.Platform.Native.X11.X11WindowComponent langs: - csharp - vb name: ScreenToClient(WindowHandle, int, int, out int, out int) nameWithType: X11WindowComponent.ScreenToClient(WindowHandle, int, int, out int, out int) - fullName: OpenTK.Platform.Native.X11.X11WindowComponent.ScreenToClient(OpenTK.Core.Platform.WindowHandle, int, int, out int, out int) + fullName: OpenTK.Platform.Native.X11.X11WindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle, int, int, out int, out int) type: Method source: - remote: - path: src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ScreenToClient - path: opentk/src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - startLine: 2883 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11WindowComponent.cs + startLine: 2899 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: Converts screen coordinates to window relative coordinates. example: [] @@ -2501,7 +2285,7 @@ items: content: public void ScreenToClient(WindowHandle handle, int x, int y, out int clientX, out int clientY) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: The window handle. - id: x type: System.Int32 @@ -2518,31 +2302,27 @@ items: content.vb: Public Sub ScreenToClient(handle As WindowHandle, x As Integer, y As Integer, clientX As Integer, clientY As Integer) overload: OpenTK.Platform.Native.X11.X11WindowComponent.ScreenToClient* implements: - - OpenTK.Core.Platform.IWindowComponent.ScreenToClient(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) + - OpenTK.Platform.IWindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) nameWithType.vb: X11WindowComponent.ScreenToClient(WindowHandle, Integer, Integer, Integer, Integer) - fullName.vb: OpenTK.Platform.Native.X11.X11WindowComponent.ScreenToClient(OpenTK.Core.Platform.WindowHandle, Integer, Integer, Integer, Integer) + fullName.vb: OpenTK.Platform.Native.X11.X11WindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle, Integer, Integer, Integer, Integer) name.vb: ScreenToClient(WindowHandle, Integer, Integer, Integer, Integer) -- uid: OpenTK.Platform.Native.X11.X11WindowComponent.ClientToScreen(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) - commentId: M:OpenTK.Platform.Native.X11.X11WindowComponent.ClientToScreen(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) - id: ClientToScreen(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) +- uid: OpenTK.Platform.Native.X11.X11WindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) + commentId: M:OpenTK.Platform.Native.X11.X11WindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) + id: ClientToScreen(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) parent: OpenTK.Platform.Native.X11.X11WindowComponent langs: - csharp - vb name: ClientToScreen(WindowHandle, int, int, out int, out int) nameWithType: X11WindowComponent.ClientToScreen(WindowHandle, int, int, out int, out int) - fullName: OpenTK.Platform.Native.X11.X11WindowComponent.ClientToScreen(OpenTK.Core.Platform.WindowHandle, int, int, out int, out int) + fullName: OpenTK.Platform.Native.X11.X11WindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle, int, int, out int, out int) type: Method source: - remote: - path: src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ClientToScreen - path: opentk/src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - startLine: 2895 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11WindowComponent.cs + startLine: 2911 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: Converts window relative coordinates to screen coordinates. example: [] @@ -2550,7 +2330,7 @@ items: content: public void ClientToScreen(WindowHandle handle, int clientX, int clientY, out int x, out int y) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: The window handle. - id: clientX type: System.Int32 @@ -2567,31 +2347,27 @@ items: content.vb: Public Sub ClientToScreen(handle As WindowHandle, clientX As Integer, clientY As Integer, x As Integer, y As Integer) overload: OpenTK.Platform.Native.X11.X11WindowComponent.ClientToScreen* implements: - - OpenTK.Core.Platform.IWindowComponent.ClientToScreen(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) + - OpenTK.Platform.IWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) nameWithType.vb: X11WindowComponent.ClientToScreen(WindowHandle, Integer, Integer, Integer, Integer) - fullName.vb: OpenTK.Platform.Native.X11.X11WindowComponent.ClientToScreen(OpenTK.Core.Platform.WindowHandle, Integer, Integer, Integer, Integer) + fullName.vb: OpenTK.Platform.Native.X11.X11WindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle, Integer, Integer, Integer, Integer) name.vb: ClientToScreen(WindowHandle, Integer, Integer, Integer, Integer) -- uid: OpenTK.Platform.Native.X11.X11WindowComponent.GetScaleFactor(OpenTK.Core.Platform.WindowHandle,System.Single@,System.Single@) - commentId: M:OpenTK.Platform.Native.X11.X11WindowComponent.GetScaleFactor(OpenTK.Core.Platform.WindowHandle,System.Single@,System.Single@) - id: GetScaleFactor(OpenTK.Core.Platform.WindowHandle,System.Single@,System.Single@) +- uid: OpenTK.Platform.Native.X11.X11WindowComponent.GetScaleFactor(OpenTK.Platform.WindowHandle,System.Single@,System.Single@) + commentId: M:OpenTK.Platform.Native.X11.X11WindowComponent.GetScaleFactor(OpenTK.Platform.WindowHandle,System.Single@,System.Single@) + id: GetScaleFactor(OpenTK.Platform.WindowHandle,System.Single@,System.Single@) parent: OpenTK.Platform.Native.X11.X11WindowComponent langs: - csharp - vb name: GetScaleFactor(WindowHandle, out float, out float) nameWithType: X11WindowComponent.GetScaleFactor(WindowHandle, out float, out float) - fullName: OpenTK.Platform.Native.X11.X11WindowComponent.GetScaleFactor(OpenTK.Core.Platform.WindowHandle, out float, out float) + fullName: OpenTK.Platform.Native.X11.X11WindowComponent.GetScaleFactor(OpenTK.Platform.WindowHandle, out float, out float) type: Method source: - remote: - path: src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetScaleFactor - path: opentk/src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - startLine: 2907 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11WindowComponent.cs + startLine: 2923 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: Returns the current scale factor of this window. example: [] @@ -2599,7 +2375,7 @@ items: content: public void GetScaleFactor(WindowHandle handle, out float scaleX, out float scaleY) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: The window handle. - id: scaleX type: System.Single @@ -2610,12 +2386,12 @@ items: content.vb: Public Sub GetScaleFactor(handle As WindowHandle, scaleX As Single, scaleY As Single) overload: OpenTK.Platform.Native.X11.X11WindowComponent.GetScaleFactor* seealso: - - linkId: OpenTK.Core.Platform.WindowScaleChangeEventArgs - commentId: T:OpenTK.Core.Platform.WindowScaleChangeEventArgs + - linkId: OpenTK.Platform.WindowScaleChangeEventArgs + commentId: T:OpenTK.Platform.WindowScaleChangeEventArgs implements: - - OpenTK.Core.Platform.IWindowComponent.GetScaleFactor(OpenTK.Core.Platform.WindowHandle,System.Single@,System.Single@) + - OpenTK.Platform.IWindowComponent.GetScaleFactor(OpenTK.Platform.WindowHandle,System.Single@,System.Single@) nameWithType.vb: X11WindowComponent.GetScaleFactor(WindowHandle, Single, Single) - fullName.vb: OpenTK.Platform.Native.X11.X11WindowComponent.GetScaleFactor(OpenTK.Core.Platform.WindowHandle, Single, Single) + fullName.vb: OpenTK.Platform.Native.X11.X11WindowComponent.GetScaleFactor(OpenTK.Platform.WindowHandle, Single, Single) name.vb: GetScaleFactor(WindowHandle, Single, Single) - uid: OpenTK.Platform.Native.X11.X11WindowComponent.GetX11Display commentId: M:OpenTK.Platform.Native.X11.X11WindowComponent.GetX11Display @@ -2629,15 +2405,11 @@ items: fullName: OpenTK.Platform.Native.X11.X11WindowComponent.GetX11Display() type: Method source: - remote: - path: src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetX11Display - path: opentk/src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - startLine: 2918 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11WindowComponent.cs + startLine: 2934 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: Returns the X11 Display used by OpenTK. example: [] @@ -2648,27 +2420,23 @@ items: description: The X11 Display handle. content.vb: Public Function GetX11Display() As IntPtr overload: OpenTK.Platform.Native.X11.X11WindowComponent.GetX11Display* -- uid: OpenTK.Platform.Native.X11.X11WindowComponent.GetX11Window(OpenTK.Core.Platform.WindowHandle) - commentId: M:OpenTK.Platform.Native.X11.X11WindowComponent.GetX11Window(OpenTK.Core.Platform.WindowHandle) - id: GetX11Window(OpenTK.Core.Platform.WindowHandle) +- uid: OpenTK.Platform.Native.X11.X11WindowComponent.GetX11Window(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.Native.X11.X11WindowComponent.GetX11Window(OpenTK.Platform.WindowHandle) + id: GetX11Window(OpenTK.Platform.WindowHandle) parent: OpenTK.Platform.Native.X11.X11WindowComponent langs: - csharp - vb name: GetX11Window(WindowHandle) nameWithType: X11WindowComponent.GetX11Window(WindowHandle) - fullName: OpenTK.Platform.Native.X11.X11WindowComponent.GetX11Window(OpenTK.Core.Platform.WindowHandle) + fullName: OpenTK.Platform.Native.X11.X11WindowComponent.GetX11Window(OpenTK.Platform.WindowHandle) type: Method source: - remote: - path: src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetX11Window - path: opentk/src/OpenTK.Platform.Native/X11/X11WindowComponent.cs - startLine: 2928 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11WindowComponent.cs + startLine: 2944 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: Returns the X11 Window handle associated with this window. example: [] @@ -2676,7 +2444,7 @@ items: content: public nint GetX11Window(WindowHandle handle) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: The window handle to get the associated X11 Window from. return: type: System.IntPtr @@ -2733,20 +2501,20 @@ references: nameWithType.vb: Object fullName.vb: Object name.vb: Object -- uid: OpenTK.Core.Platform.IWindowComponent - commentId: T:OpenTK.Core.Platform.IWindowComponent - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.IWindowComponent.html +- uid: OpenTK.Platform.IWindowComponent + commentId: T:OpenTK.Platform.IWindowComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IWindowComponent.html name: IWindowComponent nameWithType: IWindowComponent - fullName: OpenTK.Core.Platform.IWindowComponent -- uid: OpenTK.Core.Platform.IPalComponent - commentId: T:OpenTK.Core.Platform.IPalComponent - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.IPalComponent.html + fullName: OpenTK.Platform.IWindowComponent +- uid: OpenTK.Platform.IPalComponent + commentId: T:OpenTK.Platform.IPalComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IPalComponent.html name: IPalComponent nameWithType: IPalComponent - fullName: OpenTK.Core.Platform.IPalComponent + fullName: OpenTK.Platform.IPalComponent - uid: System.Object.Equals(System.Object) commentId: M:System.Object.Equals(System.Object) parent: System.Object @@ -2973,49 +2741,41 @@ references: name: System nameWithType: System fullName: System -- uid: OpenTK.Core.Platform - commentId: N:OpenTK.Core.Platform +- uid: OpenTK.Platform + commentId: N:OpenTK.Platform href: OpenTK.html - name: OpenTK.Core.Platform - nameWithType: OpenTK.Core.Platform - fullName: OpenTK.Core.Platform + name: OpenTK.Platform + nameWithType: OpenTK.Platform + fullName: OpenTK.Platform spec.csharp: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html spec.vb: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html - uid: OpenTK.Platform.Native.X11.X11WindowComponent.Name* commentId: Overload:OpenTK.Platform.Native.X11.X11WindowComponent.Name href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_Name name: Name nameWithType: X11WindowComponent.Name fullName: OpenTK.Platform.Native.X11.X11WindowComponent.Name -- uid: OpenTK.Core.Platform.IPalComponent.Name - commentId: P:OpenTK.Core.Platform.IPalComponent.Name - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Name +- uid: OpenTK.Platform.IPalComponent.Name + commentId: P:OpenTK.Platform.IPalComponent.Name + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Name name: Name nameWithType: IPalComponent.Name - fullName: OpenTK.Core.Platform.IPalComponent.Name + fullName: OpenTK.Platform.IPalComponent.Name - uid: System.String commentId: T:System.String parent: System @@ -3033,33 +2793,33 @@ references: name: Provides nameWithType: X11WindowComponent.Provides fullName: OpenTK.Platform.Native.X11.X11WindowComponent.Provides -- uid: OpenTK.Core.Platform.IPalComponent.Provides - commentId: P:OpenTK.Core.Platform.IPalComponent.Provides - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Provides +- uid: OpenTK.Platform.IPalComponent.Provides + commentId: P:OpenTK.Platform.IPalComponent.Provides + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Provides name: Provides nameWithType: IPalComponent.Provides - fullName: OpenTK.Core.Platform.IPalComponent.Provides -- uid: OpenTK.Core.Platform.PalComponents - commentId: T:OpenTK.Core.Platform.PalComponents - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.PalComponents.html + fullName: OpenTK.Platform.IPalComponent.Provides +- uid: OpenTK.Platform.PalComponents + commentId: T:OpenTK.Platform.PalComponents + parent: OpenTK.Platform + href: OpenTK.Platform.PalComponents.html name: PalComponents nameWithType: PalComponents - fullName: OpenTK.Core.Platform.PalComponents + fullName: OpenTK.Platform.PalComponents - uid: OpenTK.Platform.Native.X11.X11WindowComponent.Logger* commentId: Overload:OpenTK.Platform.Native.X11.X11WindowComponent.Logger href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_Logger name: Logger nameWithType: X11WindowComponent.Logger fullName: OpenTK.Platform.Native.X11.X11WindowComponent.Logger -- uid: OpenTK.Core.Platform.IPalComponent.Logger - commentId: P:OpenTK.Core.Platform.IPalComponent.Logger - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Logger +- uid: OpenTK.Platform.IPalComponent.Logger + commentId: P:OpenTK.Platform.IPalComponent.Logger + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Logger name: Logger nameWithType: IPalComponent.Logger - fullName: OpenTK.Core.Platform.IPalComponent.Logger + fullName: OpenTK.Platform.IPalComponent.Logger - uid: OpenTK.Core.Utility.ILogger commentId: T:OpenTK.Core.Utility.ILogger parent: OpenTK.Core.Utility @@ -3099,55 +2859,90 @@ references: href: OpenTK.Core.Utility.html - uid: OpenTK.Platform.Native.X11.X11WindowComponent.Initialize* commentId: Overload:OpenTK.Platform.Native.X11.X11WindowComponent.Initialize - href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_Initialize_OpenTK_Platform_ToolkitOptions_ name: Initialize nameWithType: X11WindowComponent.Initialize fullName: OpenTK.Platform.Native.X11.X11WindowComponent.Initialize -- uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - commentId: M:OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ +- uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ name: Initialize(ToolkitOptions) nameWithType: IPalComponent.Initialize(ToolkitOptions) - fullName: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + fullName: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) spec.csharp: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + - uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.ToolkitOptions + - uid: OpenTK.Platform.ToolkitOptions name: ToolkitOptions - href: OpenTK.Core.Platform.ToolkitOptions.html + href: OpenTK.Platform.ToolkitOptions.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + - uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.ToolkitOptions + - uid: OpenTK.Platform.ToolkitOptions name: ToolkitOptions - href: OpenTK.Core.Platform.ToolkitOptions.html + href: OpenTK.Platform.ToolkitOptions.html - name: ) -- uid: OpenTK.Core.Platform.ToolkitOptions - commentId: T:OpenTK.Core.Platform.ToolkitOptions - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.ToolkitOptions.html +- uid: OpenTK.Platform.ToolkitOptions + commentId: T:OpenTK.Platform.ToolkitOptions + parent: OpenTK.Platform + href: OpenTK.Platform.ToolkitOptions.html name: ToolkitOptions nameWithType: ToolkitOptions - fullName: OpenTK.Core.Platform.ToolkitOptions + fullName: OpenTK.Platform.ToolkitOptions +- uid: OpenTK.Platform.IWindowComponent.SetIcon(OpenTK.Platform.WindowHandle,OpenTK.Platform.IconHandle) + commentId: M:OpenTK.Platform.IWindowComponent.SetIcon(OpenTK.Platform.WindowHandle,OpenTK.Platform.IconHandle) + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetIcon_OpenTK_Platform_WindowHandle_OpenTK_Platform_IconHandle_ + name: SetIcon(WindowHandle, IconHandle) + nameWithType: IWindowComponent.SetIcon(WindowHandle, IconHandle) + fullName: OpenTK.Platform.IWindowComponent.SetIcon(OpenTK.Platform.WindowHandle, OpenTK.Platform.IconHandle) + spec.csharp: + - uid: OpenTK.Platform.IWindowComponent.SetIcon(OpenTK.Platform.WindowHandle,OpenTK.Platform.IconHandle) + name: SetIcon + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetIcon_OpenTK_Platform_WindowHandle_OpenTK_Platform_IconHandle_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: OpenTK.Platform.IconHandle + name: IconHandle + href: OpenTK.Platform.IconHandle.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IWindowComponent.SetIcon(OpenTK.Platform.WindowHandle,OpenTK.Platform.IconHandle) + name: SetIcon + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetIcon_OpenTK_Platform_WindowHandle_OpenTK_Platform_IconHandle_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: OpenTK.Platform.IconHandle + name: IconHandle + href: OpenTK.Platform.IconHandle.html + - name: ) - uid: OpenTK.Platform.Native.X11.X11WindowComponent.CanSetIcon* commentId: Overload:OpenTK.Platform.Native.X11.X11WindowComponent.CanSetIcon href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_CanSetIcon name: CanSetIcon nameWithType: X11WindowComponent.CanSetIcon fullName: OpenTK.Platform.Native.X11.X11WindowComponent.CanSetIcon -- uid: OpenTK.Core.Platform.IWindowComponent.CanSetIcon - commentId: P:OpenTK.Core.Platform.IWindowComponent.CanSetIcon - parent: OpenTK.Core.Platform.IWindowComponent - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_CanSetIcon +- uid: OpenTK.Platform.IWindowComponent.CanSetIcon + commentId: P:OpenTK.Platform.IWindowComponent.CanSetIcon + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_CanSetIcon name: CanSetIcon nameWithType: IWindowComponent.CanSetIcon - fullName: OpenTK.Core.Platform.IWindowComponent.CanSetIcon + fullName: OpenTK.Platform.IWindowComponent.CanSetIcon - uid: System.Boolean commentId: T:System.Boolean parent: System @@ -3159,68 +2954,163 @@ references: nameWithType.vb: Boolean fullName.vb: Boolean name.vb: Boolean +- uid: OpenTK.Platform.IWindowComponent.GetDisplay(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.GetDisplay(OpenTK.Platform.WindowHandle) + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetDisplay_OpenTK_Platform_WindowHandle_ + name: GetDisplay(WindowHandle) + nameWithType: IWindowComponent.GetDisplay(WindowHandle) + fullName: OpenTK.Platform.IWindowComponent.GetDisplay(OpenTK.Platform.WindowHandle) + spec.csharp: + - uid: OpenTK.Platform.IWindowComponent.GetDisplay(OpenTK.Platform.WindowHandle) + name: GetDisplay + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetDisplay_OpenTK_Platform_WindowHandle_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IWindowComponent.GetDisplay(OpenTK.Platform.WindowHandle) + name: GetDisplay + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetDisplay_OpenTK_Platform_WindowHandle_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ) - uid: OpenTK.Platform.Native.X11.X11WindowComponent.CanGetDisplay* commentId: Overload:OpenTK.Platform.Native.X11.X11WindowComponent.CanGetDisplay href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_CanGetDisplay name: CanGetDisplay nameWithType: X11WindowComponent.CanGetDisplay fullName: OpenTK.Platform.Native.X11.X11WindowComponent.CanGetDisplay -- uid: OpenTK.Core.Platform.IWindowComponent.CanGetDisplay - commentId: P:OpenTK.Core.Platform.IWindowComponent.CanGetDisplay - parent: OpenTK.Core.Platform.IWindowComponent - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_CanGetDisplay +- uid: OpenTK.Platform.IWindowComponent.CanGetDisplay + commentId: P:OpenTK.Platform.IWindowComponent.CanGetDisplay + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_CanGetDisplay name: CanGetDisplay nameWithType: IWindowComponent.CanGetDisplay - fullName: OpenTK.Core.Platform.IWindowComponent.CanGetDisplay + fullName: OpenTK.Platform.IWindowComponent.CanGetDisplay +- uid: OpenTK.Platform.IWindowComponent.SetCursor(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorHandle) + commentId: M:OpenTK.Platform.IWindowComponent.SetCursor(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorHandle) + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetCursor_OpenTK_Platform_WindowHandle_OpenTK_Platform_CursorHandle_ + name: SetCursor(WindowHandle, CursorHandle) + nameWithType: IWindowComponent.SetCursor(WindowHandle, CursorHandle) + fullName: OpenTK.Platform.IWindowComponent.SetCursor(OpenTK.Platform.WindowHandle, OpenTK.Platform.CursorHandle) + spec.csharp: + - uid: OpenTK.Platform.IWindowComponent.SetCursor(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorHandle) + name: SetCursor + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetCursor_OpenTK_Platform_WindowHandle_OpenTK_Platform_CursorHandle_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: OpenTK.Platform.CursorHandle + name: CursorHandle + href: OpenTK.Platform.CursorHandle.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IWindowComponent.SetCursor(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorHandle) + name: SetCursor + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetCursor_OpenTK_Platform_WindowHandle_OpenTK_Platform_CursorHandle_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: OpenTK.Platform.CursorHandle + name: CursorHandle + href: OpenTK.Platform.CursorHandle.html + - name: ) - uid: OpenTK.Platform.Native.X11.X11WindowComponent.CanSetCursor* commentId: Overload:OpenTK.Platform.Native.X11.X11WindowComponent.CanSetCursor href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_CanSetCursor name: CanSetCursor nameWithType: X11WindowComponent.CanSetCursor fullName: OpenTK.Platform.Native.X11.X11WindowComponent.CanSetCursor -- uid: OpenTK.Core.Platform.IWindowComponent.CanSetCursor - commentId: P:OpenTK.Core.Platform.IWindowComponent.CanSetCursor - parent: OpenTK.Core.Platform.IWindowComponent - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_CanSetCursor +- uid: OpenTK.Platform.IWindowComponent.CanSetCursor + commentId: P:OpenTK.Platform.IWindowComponent.CanSetCursor + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_CanSetCursor name: CanSetCursor nameWithType: IWindowComponent.CanSetCursor - fullName: OpenTK.Core.Platform.IWindowComponent.CanSetCursor + fullName: OpenTK.Platform.IWindowComponent.CanSetCursor +- uid: OpenTK.Platform.IWindowComponent.SetCursorCaptureMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorCaptureMode) + commentId: M:OpenTK.Platform.IWindowComponent.SetCursorCaptureMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorCaptureMode) + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetCursorCaptureMode_OpenTK_Platform_WindowHandle_OpenTK_Platform_CursorCaptureMode_ + name: SetCursorCaptureMode(WindowHandle, CursorCaptureMode) + nameWithType: IWindowComponent.SetCursorCaptureMode(WindowHandle, CursorCaptureMode) + fullName: OpenTK.Platform.IWindowComponent.SetCursorCaptureMode(OpenTK.Platform.WindowHandle, OpenTK.Platform.CursorCaptureMode) + spec.csharp: + - uid: OpenTK.Platform.IWindowComponent.SetCursorCaptureMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorCaptureMode) + name: SetCursorCaptureMode + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetCursorCaptureMode_OpenTK_Platform_WindowHandle_OpenTK_Platform_CursorCaptureMode_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: OpenTK.Platform.CursorCaptureMode + name: CursorCaptureMode + href: OpenTK.Platform.CursorCaptureMode.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IWindowComponent.SetCursorCaptureMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorCaptureMode) + name: SetCursorCaptureMode + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetCursorCaptureMode_OpenTK_Platform_WindowHandle_OpenTK_Platform_CursorCaptureMode_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: OpenTK.Platform.CursorCaptureMode + name: CursorCaptureMode + href: OpenTK.Platform.CursorCaptureMode.html + - name: ) - uid: OpenTK.Platform.Native.X11.X11WindowComponent.CanCaptureCursor* commentId: Overload:OpenTK.Platform.Native.X11.X11WindowComponent.CanCaptureCursor href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_CanCaptureCursor name: CanCaptureCursor nameWithType: X11WindowComponent.CanCaptureCursor fullName: OpenTK.Platform.Native.X11.X11WindowComponent.CanCaptureCursor -- uid: OpenTK.Core.Platform.IWindowComponent.CanCaptureCursor - commentId: P:OpenTK.Core.Platform.IWindowComponent.CanCaptureCursor - parent: OpenTK.Core.Platform.IWindowComponent - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_CanCaptureCursor +- uid: OpenTK.Platform.IWindowComponent.CanCaptureCursor + commentId: P:OpenTK.Platform.IWindowComponent.CanCaptureCursor + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_CanCaptureCursor name: CanCaptureCursor nameWithType: IWindowComponent.CanCaptureCursor - fullName: OpenTK.Core.Platform.IWindowComponent.CanCaptureCursor + fullName: OpenTK.Platform.IWindowComponent.CanCaptureCursor - uid: OpenTK.Platform.Native.X11.X11WindowComponent.SupportedEvents* commentId: Overload:OpenTK.Platform.Native.X11.X11WindowComponent.SupportedEvents href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_SupportedEvents name: SupportedEvents nameWithType: X11WindowComponent.SupportedEvents fullName: OpenTK.Platform.Native.X11.X11WindowComponent.SupportedEvents -- uid: OpenTK.Core.Platform.IWindowComponent.SupportedEvents - commentId: P:OpenTK.Core.Platform.IWindowComponent.SupportedEvents - parent: OpenTK.Core.Platform.IWindowComponent - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SupportedEvents +- uid: OpenTK.Platform.IWindowComponent.SupportedEvents + commentId: P:OpenTK.Platform.IWindowComponent.SupportedEvents + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SupportedEvents name: SupportedEvents nameWithType: IWindowComponent.SupportedEvents - fullName: OpenTK.Core.Platform.IWindowComponent.SupportedEvents -- uid: System.Collections.Generic.IReadOnlyList{OpenTK.Core.Platform.PlatformEventType} - commentId: T:System.Collections.Generic.IReadOnlyList{OpenTK.Core.Platform.PlatformEventType} + fullName: OpenTK.Platform.IWindowComponent.SupportedEvents +- uid: System.Collections.Generic.IReadOnlyList{OpenTK.Platform.PlatformEventType} + commentId: T:System.Collections.Generic.IReadOnlyList{OpenTK.Platform.PlatformEventType} parent: System.Collections.Generic definition: System.Collections.Generic.IReadOnlyList`1 href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 name: IReadOnlyList nameWithType: IReadOnlyList - fullName: System.Collections.Generic.IReadOnlyList + fullName: System.Collections.Generic.IReadOnlyList nameWithType.vb: IReadOnlyList(Of PlatformEventType) - fullName.vb: System.Collections.Generic.IReadOnlyList(Of OpenTK.Core.Platform.PlatformEventType) + fullName.vb: System.Collections.Generic.IReadOnlyList(Of OpenTK.Platform.PlatformEventType) name.vb: IReadOnlyList(Of PlatformEventType) spec.csharp: - uid: System.Collections.Generic.IReadOnlyList`1 @@ -3228,9 +3118,9 @@ references: isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 - name: < - - uid: OpenTK.Core.Platform.PlatformEventType + - uid: OpenTK.Platform.PlatformEventType name: PlatformEventType - href: OpenTK.Core.Platform.PlatformEventType.html + href: OpenTK.Platform.PlatformEventType.html - name: '>' spec.vb: - uid: System.Collections.Generic.IReadOnlyList`1 @@ -3240,9 +3130,9 @@ references: - name: ( - name: Of - name: " " - - uid: OpenTK.Core.Platform.PlatformEventType + - uid: OpenTK.Platform.PlatformEventType name: PlatformEventType - href: OpenTK.Core.Platform.PlatformEventType.html + href: OpenTK.Platform.PlatformEventType.html - name: ) - uid: System.Collections.Generic.IReadOnlyList`1 commentId: T:System.Collections.Generic.IReadOnlyList`1 @@ -3315,23 +3205,23 @@ references: name: SupportedStyles nameWithType: X11WindowComponent.SupportedStyles fullName: OpenTK.Platform.Native.X11.X11WindowComponent.SupportedStyles -- uid: OpenTK.Core.Platform.IWindowComponent.SupportedStyles - commentId: P:OpenTK.Core.Platform.IWindowComponent.SupportedStyles - parent: OpenTK.Core.Platform.IWindowComponent - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SupportedStyles +- uid: OpenTK.Platform.IWindowComponent.SupportedStyles + commentId: P:OpenTK.Platform.IWindowComponent.SupportedStyles + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SupportedStyles name: SupportedStyles nameWithType: IWindowComponent.SupportedStyles - fullName: OpenTK.Core.Platform.IWindowComponent.SupportedStyles -- uid: System.Collections.Generic.IReadOnlyList{OpenTK.Core.Platform.WindowBorderStyle} - commentId: T:System.Collections.Generic.IReadOnlyList{OpenTK.Core.Platform.WindowBorderStyle} + fullName: OpenTK.Platform.IWindowComponent.SupportedStyles +- uid: System.Collections.Generic.IReadOnlyList{OpenTK.Platform.WindowBorderStyle} + commentId: T:System.Collections.Generic.IReadOnlyList{OpenTK.Platform.WindowBorderStyle} parent: System.Collections.Generic definition: System.Collections.Generic.IReadOnlyList`1 href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 name: IReadOnlyList nameWithType: IReadOnlyList - fullName: System.Collections.Generic.IReadOnlyList + fullName: System.Collections.Generic.IReadOnlyList nameWithType.vb: IReadOnlyList(Of WindowBorderStyle) - fullName.vb: System.Collections.Generic.IReadOnlyList(Of OpenTK.Core.Platform.WindowBorderStyle) + fullName.vb: System.Collections.Generic.IReadOnlyList(Of OpenTK.Platform.WindowBorderStyle) name.vb: IReadOnlyList(Of WindowBorderStyle) spec.csharp: - uid: System.Collections.Generic.IReadOnlyList`1 @@ -3339,9 +3229,9 @@ references: isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 - name: < - - uid: OpenTK.Core.Platform.WindowBorderStyle + - uid: OpenTK.Platform.WindowBorderStyle name: WindowBorderStyle - href: OpenTK.Core.Platform.WindowBorderStyle.html + href: OpenTK.Platform.WindowBorderStyle.html - name: '>' spec.vb: - uid: System.Collections.Generic.IReadOnlyList`1 @@ -3351,9 +3241,9 @@ references: - name: ( - name: Of - name: " " - - uid: OpenTK.Core.Platform.WindowBorderStyle + - uid: OpenTK.Platform.WindowBorderStyle name: WindowBorderStyle - href: OpenTK.Core.Platform.WindowBorderStyle.html + href: OpenTK.Platform.WindowBorderStyle.html - name: ) - uid: OpenTK.Platform.Native.X11.X11WindowComponent.SupportedModes* commentId: Overload:OpenTK.Platform.Native.X11.X11WindowComponent.SupportedModes @@ -3361,23 +3251,23 @@ references: name: SupportedModes nameWithType: X11WindowComponent.SupportedModes fullName: OpenTK.Platform.Native.X11.X11WindowComponent.SupportedModes -- uid: OpenTK.Core.Platform.IWindowComponent.SupportedModes - commentId: P:OpenTK.Core.Platform.IWindowComponent.SupportedModes - parent: OpenTK.Core.Platform.IWindowComponent - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SupportedModes +- uid: OpenTK.Platform.IWindowComponent.SupportedModes + commentId: P:OpenTK.Platform.IWindowComponent.SupportedModes + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SupportedModes name: SupportedModes nameWithType: IWindowComponent.SupportedModes - fullName: OpenTK.Core.Platform.IWindowComponent.SupportedModes -- uid: System.Collections.Generic.IReadOnlyList{OpenTK.Core.Platform.WindowMode} - commentId: T:System.Collections.Generic.IReadOnlyList{OpenTK.Core.Platform.WindowMode} + fullName: OpenTK.Platform.IWindowComponent.SupportedModes +- uid: System.Collections.Generic.IReadOnlyList{OpenTK.Platform.WindowMode} + commentId: T:System.Collections.Generic.IReadOnlyList{OpenTK.Platform.WindowMode} parent: System.Collections.Generic definition: System.Collections.Generic.IReadOnlyList`1 href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 name: IReadOnlyList nameWithType: IReadOnlyList - fullName: System.Collections.Generic.IReadOnlyList + fullName: System.Collections.Generic.IReadOnlyList nameWithType.vb: IReadOnlyList(Of WindowMode) - fullName.vb: System.Collections.Generic.IReadOnlyList(Of OpenTK.Core.Platform.WindowMode) + fullName.vb: System.Collections.Generic.IReadOnlyList(Of OpenTK.Platform.WindowMode) name.vb: IReadOnlyList(Of WindowMode) spec.csharp: - uid: System.Collections.Generic.IReadOnlyList`1 @@ -3385,9 +3275,9 @@ references: isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 - name: < - - uid: OpenTK.Core.Platform.WindowMode + - uid: OpenTK.Platform.WindowMode name: WindowMode - href: OpenTK.Core.Platform.WindowMode.html + href: OpenTK.Platform.WindowMode.html - name: '>' spec.vb: - uid: System.Collections.Generic.IReadOnlyList`1 @@ -3397,9 +3287,9 @@ references: - name: ( - name: Of - name: " " - - uid: OpenTK.Core.Platform.WindowMode + - uid: OpenTK.Platform.WindowMode name: WindowMode - href: OpenTK.Core.Platform.WindowMode.html + href: OpenTK.Platform.WindowMode.html - name: ) - uid: OpenTK.Platform.Native.X11.X11WindowComponent.IsWindowManagerFreedesktop* commentId: Overload:OpenTK.Platform.Native.X11.X11WindowComponent.IsWindowManagerFreedesktop @@ -3413,34 +3303,34 @@ references: name: FreedesktopWindowManagerName nameWithType: X11WindowComponent.FreedesktopWindowManagerName fullName: OpenTK.Platform.Native.X11.X11WindowComponent.FreedesktopWindowManagerName -- uid: OpenTK.Core.Platform.EventQueue - commentId: T:OpenTK.Core.Platform.EventQueue - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.EventQueue.html +- uid: OpenTK.Platform.EventQueue + commentId: T:OpenTK.Platform.EventQueue + parent: OpenTK.Platform + href: OpenTK.Platform.EventQueue.html name: EventQueue nameWithType: EventQueue - fullName: OpenTK.Core.Platform.EventQueue + fullName: OpenTK.Platform.EventQueue - uid: OpenTK.Platform.Native.X11.X11WindowComponent.ProcessEvents* commentId: Overload:OpenTK.Platform.Native.X11.X11WindowComponent.ProcessEvents href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_ProcessEvents_System_Boolean_ name: ProcessEvents nameWithType: X11WindowComponent.ProcessEvents fullName: OpenTK.Platform.Native.X11.X11WindowComponent.ProcessEvents -- uid: OpenTK.Core.Platform.IWindowComponent.ProcessEvents(System.Boolean) - commentId: M:OpenTK.Core.Platform.IWindowComponent.ProcessEvents(System.Boolean) - parent: OpenTK.Core.Platform.IWindowComponent +- uid: OpenTK.Platform.IWindowComponent.ProcessEvents(System.Boolean) + commentId: M:OpenTK.Platform.IWindowComponent.ProcessEvents(System.Boolean) + parent: OpenTK.Platform.IWindowComponent isExternal: true - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_ProcessEvents_System_Boolean_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_ProcessEvents_System_Boolean_ name: ProcessEvents(bool) nameWithType: IWindowComponent.ProcessEvents(bool) - fullName: OpenTK.Core.Platform.IWindowComponent.ProcessEvents(bool) + fullName: OpenTK.Platform.IWindowComponent.ProcessEvents(bool) nameWithType.vb: IWindowComponent.ProcessEvents(Boolean) - fullName.vb: OpenTK.Core.Platform.IWindowComponent.ProcessEvents(Boolean) + fullName.vb: OpenTK.Platform.IWindowComponent.ProcessEvents(Boolean) name.vb: ProcessEvents(Boolean) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.ProcessEvents(System.Boolean) + - uid: OpenTK.Platform.IWindowComponent.ProcessEvents(System.Boolean) name: ProcessEvents - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_ProcessEvents_System_Boolean_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_ProcessEvents_System_Boolean_ - name: ( - uid: System.Boolean name: bool @@ -3448,9 +3338,9 @@ references: href: https://learn.microsoft.com/dotnet/api/system.boolean - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.ProcessEvents(System.Boolean) + - uid: OpenTK.Platform.IWindowComponent.ProcessEvents(System.Boolean) name: ProcessEvents - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_ProcessEvents_System_Boolean_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_ProcessEvents_System_Boolean_ - name: ( - uid: System.Boolean name: Boolean @@ -3459,49 +3349,74 @@ references: - name: ) - uid: OpenTK.Platform.Native.X11.X11WindowComponent.Create* commentId: Overload:OpenTK.Platform.Native.X11.X11WindowComponent.Create - href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_Create_OpenTK_Core_Platform_GraphicsApiHints_ + href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_Create_OpenTK_Platform_GraphicsApiHints_ name: Create nameWithType: X11WindowComponent.Create fullName: OpenTK.Platform.Native.X11.X11WindowComponent.Create -- uid: OpenTK.Core.Platform.IWindowComponent.Create(OpenTK.Core.Platform.GraphicsApiHints) - commentId: M:OpenTK.Core.Platform.IWindowComponent.Create(OpenTK.Core.Platform.GraphicsApiHints) - parent: OpenTK.Core.Platform.IWindowComponent - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_Create_OpenTK_Core_Platform_GraphicsApiHints_ +- uid: OpenTK.Platform.IWindowComponent.Create(OpenTK.Platform.GraphicsApiHints) + commentId: M:OpenTK.Platform.IWindowComponent.Create(OpenTK.Platform.GraphicsApiHints) + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_Create_OpenTK_Platform_GraphicsApiHints_ name: Create(GraphicsApiHints) nameWithType: IWindowComponent.Create(GraphicsApiHints) - fullName: OpenTK.Core.Platform.IWindowComponent.Create(OpenTK.Core.Platform.GraphicsApiHints) + fullName: OpenTK.Platform.IWindowComponent.Create(OpenTK.Platform.GraphicsApiHints) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.Create(OpenTK.Core.Platform.GraphicsApiHints) + - uid: OpenTK.Platform.IWindowComponent.Create(OpenTK.Platform.GraphicsApiHints) name: Create - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_Create_OpenTK_Core_Platform_GraphicsApiHints_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_Create_OpenTK_Platform_GraphicsApiHints_ - name: ( - - uid: OpenTK.Core.Platform.GraphicsApiHints + - uid: OpenTK.Platform.GraphicsApiHints name: GraphicsApiHints - href: OpenTK.Core.Platform.GraphicsApiHints.html + href: OpenTK.Platform.GraphicsApiHints.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.Create(OpenTK.Core.Platform.GraphicsApiHints) + - uid: OpenTK.Platform.IWindowComponent.Create(OpenTK.Platform.GraphicsApiHints) name: Create - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_Create_OpenTK_Core_Platform_GraphicsApiHints_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_Create_OpenTK_Platform_GraphicsApiHints_ - name: ( - - uid: OpenTK.Core.Platform.GraphicsApiHints + - uid: OpenTK.Platform.GraphicsApiHints name: GraphicsApiHints - href: OpenTK.Core.Platform.GraphicsApiHints.html + href: OpenTK.Platform.GraphicsApiHints.html - name: ) -- uid: OpenTK.Core.Platform.GraphicsApiHints - commentId: T:OpenTK.Core.Platform.GraphicsApiHints - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.GraphicsApiHints.html +- uid: OpenTK.Platform.GraphicsApiHints + commentId: T:OpenTK.Platform.GraphicsApiHints + parent: OpenTK.Platform + href: OpenTK.Platform.GraphicsApiHints.html name: GraphicsApiHints nameWithType: GraphicsApiHints - fullName: OpenTK.Core.Platform.GraphicsApiHints -- uid: OpenTK.Core.Platform.WindowHandle - commentId: T:OpenTK.Core.Platform.WindowHandle - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.WindowHandle.html + fullName: OpenTK.Platform.GraphicsApiHints +- uid: OpenTK.Platform.WindowHandle + commentId: T:OpenTK.Platform.WindowHandle + parent: OpenTK.Platform + href: OpenTK.Platform.WindowHandle.html name: WindowHandle nameWithType: WindowHandle - fullName: OpenTK.Core.Platform.WindowHandle + fullName: OpenTK.Platform.WindowHandle +- uid: OpenTK.Platform.IWindowComponent.IsWindowDestroyed(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.IsWindowDestroyed(OpenTK.Platform.WindowHandle) + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_IsWindowDestroyed_OpenTK_Platform_WindowHandle_ + name: IsWindowDestroyed(WindowHandle) + nameWithType: IWindowComponent.IsWindowDestroyed(WindowHandle) + fullName: OpenTK.Platform.IWindowComponent.IsWindowDestroyed(OpenTK.Platform.WindowHandle) + spec.csharp: + - uid: OpenTK.Platform.IWindowComponent.IsWindowDestroyed(OpenTK.Platform.WindowHandle) + name: IsWindowDestroyed + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_IsWindowDestroyed_OpenTK_Platform_WindowHandle_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IWindowComponent.IsWindowDestroyed(OpenTK.Platform.WindowHandle) + name: IsWindowDestroyed + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_IsWindowDestroyed_OpenTK_Platform_WindowHandle_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ) - uid: System.ArgumentNullException commentId: T:System.ArgumentNullException isExternal: true @@ -3511,122 +3426,97 @@ references: fullName: System.ArgumentNullException - uid: OpenTK.Platform.Native.X11.X11WindowComponent.Destroy* commentId: Overload:OpenTK.Platform.Native.X11.X11WindowComponent.Destroy - href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_Destroy_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_Destroy_OpenTK_Platform_WindowHandle_ name: Destroy nameWithType: X11WindowComponent.Destroy fullName: OpenTK.Platform.Native.X11.X11WindowComponent.Destroy -- uid: OpenTK.Core.Platform.IWindowComponent.Destroy(OpenTK.Core.Platform.WindowHandle) - commentId: M:OpenTK.Core.Platform.IWindowComponent.Destroy(OpenTK.Core.Platform.WindowHandle) - parent: OpenTK.Core.Platform.IWindowComponent - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_Destroy_OpenTK_Core_Platform_WindowHandle_ +- uid: OpenTK.Platform.IWindowComponent.Destroy(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.Destroy(OpenTK.Platform.WindowHandle) + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_Destroy_OpenTK_Platform_WindowHandle_ name: Destroy(WindowHandle) nameWithType: IWindowComponent.Destroy(WindowHandle) - fullName: OpenTK.Core.Platform.IWindowComponent.Destroy(OpenTK.Core.Platform.WindowHandle) + fullName: OpenTK.Platform.IWindowComponent.Destroy(OpenTK.Platform.WindowHandle) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.Destroy(OpenTK.Core.Platform.WindowHandle) + - uid: OpenTK.Platform.IWindowComponent.Destroy(OpenTK.Platform.WindowHandle) name: Destroy - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_Destroy_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_Destroy_OpenTK_Platform_WindowHandle_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.Destroy(OpenTK.Core.Platform.WindowHandle) + - uid: OpenTK.Platform.IWindowComponent.Destroy(OpenTK.Platform.WindowHandle) name: Destroy - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_Destroy_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_Destroy_OpenTK_Platform_WindowHandle_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ) - uid: OpenTK.Platform.Native.X11.X11WindowComponent.IsWindowDestroyed* commentId: Overload:OpenTK.Platform.Native.X11.X11WindowComponent.IsWindowDestroyed - href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_IsWindowDestroyed_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_IsWindowDestroyed_OpenTK_Platform_WindowHandle_ name: IsWindowDestroyed nameWithType: X11WindowComponent.IsWindowDestroyed fullName: OpenTK.Platform.Native.X11.X11WindowComponent.IsWindowDestroyed -- uid: OpenTK.Core.Platform.IWindowComponent.IsWindowDestroyed(OpenTK.Core.Platform.WindowHandle) - commentId: M:OpenTK.Core.Platform.IWindowComponent.IsWindowDestroyed(OpenTK.Core.Platform.WindowHandle) - parent: OpenTK.Core.Platform.IWindowComponent - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_IsWindowDestroyed_OpenTK_Core_Platform_WindowHandle_ - name: IsWindowDestroyed(WindowHandle) - nameWithType: IWindowComponent.IsWindowDestroyed(WindowHandle) - fullName: OpenTK.Core.Platform.IWindowComponent.IsWindowDestroyed(OpenTK.Core.Platform.WindowHandle) - spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.IsWindowDestroyed(OpenTK.Core.Platform.WindowHandle) - name: IsWindowDestroyed - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_IsWindowDestroyed_OpenTK_Core_Platform_WindowHandle_ - - name: ( - - uid: OpenTK.Core.Platform.WindowHandle - name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html - - name: ) - spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.IsWindowDestroyed(OpenTK.Core.Platform.WindowHandle) - name: IsWindowDestroyed - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_IsWindowDestroyed_OpenTK_Core_Platform_WindowHandle_ - - name: ( - - uid: OpenTK.Core.Platform.WindowHandle - name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html - - name: ) - uid: OpenTK.Platform.Native.X11.X11WindowComponent.GetTitle* commentId: Overload:OpenTK.Platform.Native.X11.X11WindowComponent.GetTitle - href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_GetTitle_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_GetTitle_OpenTK_Platform_WindowHandle_ name: GetTitle nameWithType: X11WindowComponent.GetTitle fullName: OpenTK.Platform.Native.X11.X11WindowComponent.GetTitle -- uid: OpenTK.Core.Platform.IWindowComponent.GetTitle(OpenTK.Core.Platform.WindowHandle) - commentId: M:OpenTK.Core.Platform.IWindowComponent.GetTitle(OpenTK.Core.Platform.WindowHandle) - parent: OpenTK.Core.Platform.IWindowComponent - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetTitle_OpenTK_Core_Platform_WindowHandle_ +- uid: OpenTK.Platform.IWindowComponent.GetTitle(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.GetTitle(OpenTK.Platform.WindowHandle) + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetTitle_OpenTK_Platform_WindowHandle_ name: GetTitle(WindowHandle) nameWithType: IWindowComponent.GetTitle(WindowHandle) - fullName: OpenTK.Core.Platform.IWindowComponent.GetTitle(OpenTK.Core.Platform.WindowHandle) + fullName: OpenTK.Platform.IWindowComponent.GetTitle(OpenTK.Platform.WindowHandle) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.GetTitle(OpenTK.Core.Platform.WindowHandle) + - uid: OpenTK.Platform.IWindowComponent.GetTitle(OpenTK.Platform.WindowHandle) name: GetTitle - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetTitle_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetTitle_OpenTK_Platform_WindowHandle_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.GetTitle(OpenTK.Core.Platform.WindowHandle) + - uid: OpenTK.Platform.IWindowComponent.GetTitle(OpenTK.Platform.WindowHandle) name: GetTitle - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetTitle_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetTitle_OpenTK_Platform_WindowHandle_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ) - uid: OpenTK.Platform.Native.X11.X11WindowComponent.SetTitle* commentId: Overload:OpenTK.Platform.Native.X11.X11WindowComponent.SetTitle - href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_SetTitle_OpenTK_Core_Platform_WindowHandle_System_String_ + href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_SetTitle_OpenTK_Platform_WindowHandle_System_String_ name: SetTitle nameWithType: X11WindowComponent.SetTitle fullName: OpenTK.Platform.Native.X11.X11WindowComponent.SetTitle -- uid: OpenTK.Core.Platform.IWindowComponent.SetTitle(OpenTK.Core.Platform.WindowHandle,System.String) - commentId: M:OpenTK.Core.Platform.IWindowComponent.SetTitle(OpenTK.Core.Platform.WindowHandle,System.String) - parent: OpenTK.Core.Platform.IWindowComponent +- uid: OpenTK.Platform.IWindowComponent.SetTitle(OpenTK.Platform.WindowHandle,System.String) + commentId: M:OpenTK.Platform.IWindowComponent.SetTitle(OpenTK.Platform.WindowHandle,System.String) + parent: OpenTK.Platform.IWindowComponent isExternal: true - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetTitle_OpenTK_Core_Platform_WindowHandle_System_String_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetTitle_OpenTK_Platform_WindowHandle_System_String_ name: SetTitle(WindowHandle, string) nameWithType: IWindowComponent.SetTitle(WindowHandle, string) - fullName: OpenTK.Core.Platform.IWindowComponent.SetTitle(OpenTK.Core.Platform.WindowHandle, string) + fullName: OpenTK.Platform.IWindowComponent.SetTitle(OpenTK.Platform.WindowHandle, string) nameWithType.vb: IWindowComponent.SetTitle(WindowHandle, String) - fullName.vb: OpenTK.Core.Platform.IWindowComponent.SetTitle(OpenTK.Core.Platform.WindowHandle, String) + fullName.vb: OpenTK.Platform.IWindowComponent.SetTitle(OpenTK.Platform.WindowHandle, String) name.vb: SetTitle(WindowHandle, String) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.SetTitle(OpenTK.Core.Platform.WindowHandle,System.String) + - uid: OpenTK.Platform.IWindowComponent.SetTitle(OpenTK.Platform.WindowHandle,System.String) name: SetTitle - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetTitle_OpenTK_Core_Platform_WindowHandle_System_String_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetTitle_OpenTK_Platform_WindowHandle_System_String_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - uid: System.String @@ -3635,13 +3525,13 @@ references: href: https://learn.microsoft.com/dotnet/api/system.string - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.SetTitle(OpenTK.Core.Platform.WindowHandle,System.String) + - uid: OpenTK.Platform.IWindowComponent.SetTitle(OpenTK.Platform.WindowHandle,System.String) name: SetTitle - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetTitle_OpenTK_Core_Platform_WindowHandle_System_String_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetTitle_OpenTK_Platform_WindowHandle_System_String_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - uid: System.String @@ -3651,126 +3541,91 @@ references: - name: ) - uid: OpenTK.Platform.Native.X11.X11WindowComponent.GetIconifiedTitle* commentId: Overload:OpenTK.Platform.Native.X11.X11WindowComponent.GetIconifiedTitle - href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_GetIconifiedTitle_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_GetIconifiedTitle_OpenTK_Platform_WindowHandle_ name: GetIconifiedTitle nameWithType: X11WindowComponent.GetIconifiedTitle fullName: OpenTK.Platform.Native.X11.X11WindowComponent.GetIconifiedTitle - uid: OpenTK.Platform.Native.X11.X11WindowComponent.SetIconifiedTitle* commentId: Overload:OpenTK.Platform.Native.X11.X11WindowComponent.SetIconifiedTitle - href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_SetIconifiedTitle_OpenTK_Core_Platform_WindowHandle_System_String_ + href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_SetIconifiedTitle_OpenTK_Platform_WindowHandle_System_String_ name: SetIconifiedTitle nameWithType: X11WindowComponent.SetIconifiedTitle fullName: OpenTK.Platform.Native.X11.X11WindowComponent.SetIconifiedTitle -- uid: OpenTK.Core.Platform.PalNotImplementedException - commentId: T:OpenTK.Core.Platform.PalNotImplementedException - href: OpenTK.Core.Platform.PalNotImplementedException.html +- uid: OpenTK.Platform.PalNotImplementedException + commentId: T:OpenTK.Platform.PalNotImplementedException + href: OpenTK.Platform.PalNotImplementedException.html name: PalNotImplementedException nameWithType: PalNotImplementedException - fullName: OpenTK.Core.Platform.PalNotImplementedException + fullName: OpenTK.Platform.PalNotImplementedException - uid: OpenTK.Platform.Native.X11.X11WindowComponent.GetIcon* commentId: Overload:OpenTK.Platform.Native.X11.X11WindowComponent.GetIcon - href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_GetIcon_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_GetIcon_OpenTK_Platform_WindowHandle_ name: GetIcon nameWithType: X11WindowComponent.GetIcon fullName: OpenTK.Platform.Native.X11.X11WindowComponent.GetIcon -- uid: OpenTK.Core.Platform.IWindowComponent.GetIcon(OpenTK.Core.Platform.WindowHandle) - commentId: M:OpenTK.Core.Platform.IWindowComponent.GetIcon(OpenTK.Core.Platform.WindowHandle) - parent: OpenTK.Core.Platform.IWindowComponent - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetIcon_OpenTK_Core_Platform_WindowHandle_ +- uid: OpenTK.Platform.IWindowComponent.GetIcon(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.GetIcon(OpenTK.Platform.WindowHandle) + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetIcon_OpenTK_Platform_WindowHandle_ name: GetIcon(WindowHandle) nameWithType: IWindowComponent.GetIcon(WindowHandle) - fullName: OpenTK.Core.Platform.IWindowComponent.GetIcon(OpenTK.Core.Platform.WindowHandle) + fullName: OpenTK.Platform.IWindowComponent.GetIcon(OpenTK.Platform.WindowHandle) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.GetIcon(OpenTK.Core.Platform.WindowHandle) + - uid: OpenTK.Platform.IWindowComponent.GetIcon(OpenTK.Platform.WindowHandle) name: GetIcon - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetIcon_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetIcon_OpenTK_Platform_WindowHandle_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.GetIcon(OpenTK.Core.Platform.WindowHandle) + - uid: OpenTK.Platform.IWindowComponent.GetIcon(OpenTK.Platform.WindowHandle) name: GetIcon - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetIcon_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetIcon_OpenTK_Platform_WindowHandle_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ) -- uid: OpenTK.Core.Platform.IconHandle - commentId: T:OpenTK.Core.Platform.IconHandle - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.IconHandle.html +- uid: OpenTK.Platform.IconHandle + commentId: T:OpenTK.Platform.IconHandle + parent: OpenTK.Platform + href: OpenTK.Platform.IconHandle.html name: IconHandle nameWithType: IconHandle - fullName: OpenTK.Core.Platform.IconHandle + fullName: OpenTK.Platform.IconHandle - uid: OpenTK.Platform.Native.X11.X11WindowComponent.SetIcon* commentId: Overload:OpenTK.Platform.Native.X11.X11WindowComponent.SetIcon - href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_SetIcon_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_IconHandle_ + href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_SetIcon_OpenTK_Platform_WindowHandle_OpenTK_Platform_IconHandle_ name: SetIcon nameWithType: X11WindowComponent.SetIcon fullName: OpenTK.Platform.Native.X11.X11WindowComponent.SetIcon -- uid: OpenTK.Core.Platform.IWindowComponent.SetIcon(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.IconHandle) - commentId: M:OpenTK.Core.Platform.IWindowComponent.SetIcon(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.IconHandle) - parent: OpenTK.Core.Platform.IWindowComponent - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetIcon_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_IconHandle_ - name: SetIcon(WindowHandle, IconHandle) - nameWithType: IWindowComponent.SetIcon(WindowHandle, IconHandle) - fullName: OpenTK.Core.Platform.IWindowComponent.SetIcon(OpenTK.Core.Platform.WindowHandle, OpenTK.Core.Platform.IconHandle) - spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.SetIcon(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.IconHandle) - name: SetIcon - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetIcon_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_IconHandle_ - - name: ( - - uid: OpenTK.Core.Platform.WindowHandle - name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html - - name: ',' - - name: " " - - uid: OpenTK.Core.Platform.IconHandle - name: IconHandle - href: OpenTK.Core.Platform.IconHandle.html - - name: ) - spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.SetIcon(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.IconHandle) - name: SetIcon - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetIcon_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_IconHandle_ - - name: ( - - uid: OpenTK.Core.Platform.WindowHandle - name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html - - name: ',' - - name: " " - - uid: OpenTK.Core.Platform.IconHandle - name: IconHandle - href: OpenTK.Core.Platform.IconHandle.html - - name: ) - uid: OpenTK.Platform.Native.X11.X11WindowComponent.GetPosition* commentId: Overload:OpenTK.Platform.Native.X11.X11WindowComponent.GetPosition - href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_GetPosition_OpenTK_Core_Platform_WindowHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_GetPosition_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ name: GetPosition nameWithType: X11WindowComponent.GetPosition fullName: OpenTK.Platform.Native.X11.X11WindowComponent.GetPosition -- uid: OpenTK.Core.Platform.IWindowComponent.GetPosition(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) - commentId: M:OpenTK.Core.Platform.IWindowComponent.GetPosition(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) - parent: OpenTK.Core.Platform.IWindowComponent +- uid: OpenTK.Platform.IWindowComponent.GetPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + commentId: M:OpenTK.Platform.IWindowComponent.GetPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + parent: OpenTK.Platform.IWindowComponent isExternal: true - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetPosition_OpenTK_Core_Platform_WindowHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetPosition_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ name: GetPosition(WindowHandle, out int, out int) nameWithType: IWindowComponent.GetPosition(WindowHandle, out int, out int) - fullName: OpenTK.Core.Platform.IWindowComponent.GetPosition(OpenTK.Core.Platform.WindowHandle, out int, out int) + fullName: OpenTK.Platform.IWindowComponent.GetPosition(OpenTK.Platform.WindowHandle, out int, out int) nameWithType.vb: IWindowComponent.GetPosition(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Core.Platform.IWindowComponent.GetPosition(OpenTK.Core.Platform.WindowHandle, Integer, Integer) + fullName.vb: OpenTK.Platform.IWindowComponent.GetPosition(OpenTK.Platform.WindowHandle, Integer, Integer) name.vb: GetPosition(WindowHandle, Integer, Integer) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.GetPosition(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) + - uid: OpenTK.Platform.IWindowComponent.GetPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) name: GetPosition - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetPosition_OpenTK_Core_Platform_WindowHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetPosition_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - name: out @@ -3789,13 +3644,13 @@ references: href: https://learn.microsoft.com/dotnet/api/system.int32 - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.GetPosition(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) + - uid: OpenTK.Platform.IWindowComponent.GetPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) name: GetPosition - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetPosition_OpenTK_Core_Platform_WindowHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetPosition_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - uid: System.Int32 @@ -3822,29 +3677,29 @@ references: name.vb: Integer - uid: OpenTK.Platform.Native.X11.X11WindowComponent.SetPosition* commentId: Overload:OpenTK.Platform.Native.X11.X11WindowComponent.SetPosition - href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_SetPosition_OpenTK_Core_Platform_WindowHandle_System_Int32_System_Int32_ + href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_SetPosition_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_ name: SetPosition nameWithType: X11WindowComponent.SetPosition fullName: OpenTK.Platform.Native.X11.X11WindowComponent.SetPosition -- uid: OpenTK.Core.Platform.IWindowComponent.SetPosition(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) - commentId: M:OpenTK.Core.Platform.IWindowComponent.SetPosition(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) - parent: OpenTK.Core.Platform.IWindowComponent +- uid: OpenTK.Platform.IWindowComponent.SetPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) + commentId: M:OpenTK.Platform.IWindowComponent.SetPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) + parent: OpenTK.Platform.IWindowComponent isExternal: true - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetPosition_OpenTK_Core_Platform_WindowHandle_System_Int32_System_Int32_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetPosition_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_ name: SetPosition(WindowHandle, int, int) nameWithType: IWindowComponent.SetPosition(WindowHandle, int, int) - fullName: OpenTK.Core.Platform.IWindowComponent.SetPosition(OpenTK.Core.Platform.WindowHandle, int, int) + fullName: OpenTK.Platform.IWindowComponent.SetPosition(OpenTK.Platform.WindowHandle, int, int) nameWithType.vb: IWindowComponent.SetPosition(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Core.Platform.IWindowComponent.SetPosition(OpenTK.Core.Platform.WindowHandle, Integer, Integer) + fullName.vb: OpenTK.Platform.IWindowComponent.SetPosition(OpenTK.Platform.WindowHandle, Integer, Integer) name.vb: SetPosition(WindowHandle, Integer, Integer) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.SetPosition(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) + - uid: OpenTK.Platform.IWindowComponent.SetPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) name: SetPosition - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetPosition_OpenTK_Core_Platform_WindowHandle_System_Int32_System_Int32_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetPosition_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - uid: System.Int32 @@ -3859,13 +3714,13 @@ references: href: https://learn.microsoft.com/dotnet/api/system.int32 - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.SetPosition(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) + - uid: OpenTK.Platform.IWindowComponent.SetPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) name: SetPosition - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetPosition_OpenTK_Core_Platform_WindowHandle_System_Int32_System_Int32_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetPosition_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - uid: System.Int32 @@ -3881,29 +3736,29 @@ references: - name: ) - uid: OpenTK.Platform.Native.X11.X11WindowComponent.GetSize* commentId: Overload:OpenTK.Platform.Native.X11.X11WindowComponent.GetSize - href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_GetSize_OpenTK_Core_Platform_WindowHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_GetSize_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ name: GetSize nameWithType: X11WindowComponent.GetSize fullName: OpenTK.Platform.Native.X11.X11WindowComponent.GetSize -- uid: OpenTK.Core.Platform.IWindowComponent.GetSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) - commentId: M:OpenTK.Core.Platform.IWindowComponent.GetSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) - parent: OpenTK.Core.Platform.IWindowComponent +- uid: OpenTK.Platform.IWindowComponent.GetSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + commentId: M:OpenTK.Platform.IWindowComponent.GetSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + parent: OpenTK.Platform.IWindowComponent isExternal: true - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetSize_OpenTK_Core_Platform_WindowHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetSize_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ name: GetSize(WindowHandle, out int, out int) nameWithType: IWindowComponent.GetSize(WindowHandle, out int, out int) - fullName: OpenTK.Core.Platform.IWindowComponent.GetSize(OpenTK.Core.Platform.WindowHandle, out int, out int) + fullName: OpenTK.Platform.IWindowComponent.GetSize(OpenTK.Platform.WindowHandle, out int, out int) nameWithType.vb: IWindowComponent.GetSize(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Core.Platform.IWindowComponent.GetSize(OpenTK.Core.Platform.WindowHandle, Integer, Integer) + fullName.vb: OpenTK.Platform.IWindowComponent.GetSize(OpenTK.Platform.WindowHandle, Integer, Integer) name.vb: GetSize(WindowHandle, Integer, Integer) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.GetSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) + - uid: OpenTK.Platform.IWindowComponent.GetSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) name: GetSize - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetSize_OpenTK_Core_Platform_WindowHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetSize_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - name: out @@ -3922,13 +3777,13 @@ references: href: https://learn.microsoft.com/dotnet/api/system.int32 - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.GetSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) + - uid: OpenTK.Platform.IWindowComponent.GetSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) name: GetSize - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetSize_OpenTK_Core_Platform_WindowHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetSize_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - uid: System.Int32 @@ -3944,29 +3799,29 @@ references: - name: ) - uid: OpenTK.Platform.Native.X11.X11WindowComponent.SetSize* commentId: Overload:OpenTK.Platform.Native.X11.X11WindowComponent.SetSize - href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_SetSize_OpenTK_Core_Platform_WindowHandle_System_Int32_System_Int32_ + href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_SetSize_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_ name: SetSize nameWithType: X11WindowComponent.SetSize fullName: OpenTK.Platform.Native.X11.X11WindowComponent.SetSize -- uid: OpenTK.Core.Platform.IWindowComponent.SetSize(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) - commentId: M:OpenTK.Core.Platform.IWindowComponent.SetSize(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) - parent: OpenTK.Core.Platform.IWindowComponent +- uid: OpenTK.Platform.IWindowComponent.SetSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) + commentId: M:OpenTK.Platform.IWindowComponent.SetSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) + parent: OpenTK.Platform.IWindowComponent isExternal: true - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetSize_OpenTK_Core_Platform_WindowHandle_System_Int32_System_Int32_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetSize_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_ name: SetSize(WindowHandle, int, int) nameWithType: IWindowComponent.SetSize(WindowHandle, int, int) - fullName: OpenTK.Core.Platform.IWindowComponent.SetSize(OpenTK.Core.Platform.WindowHandle, int, int) + fullName: OpenTK.Platform.IWindowComponent.SetSize(OpenTK.Platform.WindowHandle, int, int) nameWithType.vb: IWindowComponent.SetSize(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Core.Platform.IWindowComponent.SetSize(OpenTK.Core.Platform.WindowHandle, Integer, Integer) + fullName.vb: OpenTK.Platform.IWindowComponent.SetSize(OpenTK.Platform.WindowHandle, Integer, Integer) name.vb: SetSize(WindowHandle, Integer, Integer) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.SetSize(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) + - uid: OpenTK.Platform.IWindowComponent.SetSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) name: SetSize - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetSize_OpenTK_Core_Platform_WindowHandle_System_Int32_System_Int32_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetSize_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - uid: System.Int32 @@ -3981,13 +3836,13 @@ references: href: https://learn.microsoft.com/dotnet/api/system.int32 - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.SetSize(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) + - uid: OpenTK.Platform.IWindowComponent.SetSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) name: SetSize - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetSize_OpenTK_Core_Platform_WindowHandle_System_Int32_System_Int32_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetSize_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - uid: System.Int32 @@ -4003,29 +3858,29 @@ references: - name: ) - uid: OpenTK.Platform.Native.X11.X11WindowComponent.GetBounds* commentId: Overload:OpenTK.Platform.Native.X11.X11WindowComponent.GetBounds - href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_GetBounds_OpenTK_Core_Platform_WindowHandle_System_Int32__System_Int32__System_Int32__System_Int32__ + href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_GetBounds_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__System_Int32__System_Int32__ name: GetBounds nameWithType: X11WindowComponent.GetBounds fullName: OpenTK.Platform.Native.X11.X11WindowComponent.GetBounds -- uid: OpenTK.Core.Platform.IWindowComponent.GetBounds(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) - commentId: M:OpenTK.Core.Platform.IWindowComponent.GetBounds(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) - parent: OpenTK.Core.Platform.IWindowComponent +- uid: OpenTK.Platform.IWindowComponent.GetBounds(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) + commentId: M:OpenTK.Platform.IWindowComponent.GetBounds(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) + parent: OpenTK.Platform.IWindowComponent isExternal: true - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetBounds_OpenTK_Core_Platform_WindowHandle_System_Int32__System_Int32__System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetBounds_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__System_Int32__System_Int32__ name: GetBounds(WindowHandle, out int, out int, out int, out int) nameWithType: IWindowComponent.GetBounds(WindowHandle, out int, out int, out int, out int) - fullName: OpenTK.Core.Platform.IWindowComponent.GetBounds(OpenTK.Core.Platform.WindowHandle, out int, out int, out int, out int) + fullName: OpenTK.Platform.IWindowComponent.GetBounds(OpenTK.Platform.WindowHandle, out int, out int, out int, out int) nameWithType.vb: IWindowComponent.GetBounds(WindowHandle, Integer, Integer, Integer, Integer) - fullName.vb: OpenTK.Core.Platform.IWindowComponent.GetBounds(OpenTK.Core.Platform.WindowHandle, Integer, Integer, Integer, Integer) + fullName.vb: OpenTK.Platform.IWindowComponent.GetBounds(OpenTK.Platform.WindowHandle, Integer, Integer, Integer, Integer) name.vb: GetBounds(WindowHandle, Integer, Integer, Integer, Integer) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.GetBounds(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) + - uid: OpenTK.Platform.IWindowComponent.GetBounds(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) name: GetBounds - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetBounds_OpenTK_Core_Platform_WindowHandle_System_Int32__System_Int32__System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetBounds_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__System_Int32__System_Int32__ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - name: out @@ -4060,13 +3915,13 @@ references: href: https://learn.microsoft.com/dotnet/api/system.int32 - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.GetBounds(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) + - uid: OpenTK.Platform.IWindowComponent.GetBounds(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) name: GetBounds - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetBounds_OpenTK_Core_Platform_WindowHandle_System_Int32__System_Int32__System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetBounds_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__System_Int32__System_Int32__ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - uid: System.Int32 @@ -4094,29 +3949,29 @@ references: - name: ) - uid: OpenTK.Platform.Native.X11.X11WindowComponent.SetBounds* commentId: Overload:OpenTK.Platform.Native.X11.X11WindowComponent.SetBounds - href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_SetBounds_OpenTK_Core_Platform_WindowHandle_System_Int32_System_Int32_System_Int32_System_Int32_ + href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_SetBounds_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_System_Int32_System_Int32_ name: SetBounds nameWithType: X11WindowComponent.SetBounds fullName: OpenTK.Platform.Native.X11.X11WindowComponent.SetBounds -- uid: OpenTK.Core.Platform.IWindowComponent.SetBounds(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) - commentId: M:OpenTK.Core.Platform.IWindowComponent.SetBounds(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) - parent: OpenTK.Core.Platform.IWindowComponent +- uid: OpenTK.Platform.IWindowComponent.SetBounds(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) + commentId: M:OpenTK.Platform.IWindowComponent.SetBounds(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) + parent: OpenTK.Platform.IWindowComponent isExternal: true - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetBounds_OpenTK_Core_Platform_WindowHandle_System_Int32_System_Int32_System_Int32_System_Int32_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetBounds_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_System_Int32_System_Int32_ name: SetBounds(WindowHandle, int, int, int, int) nameWithType: IWindowComponent.SetBounds(WindowHandle, int, int, int, int) - fullName: OpenTK.Core.Platform.IWindowComponent.SetBounds(OpenTK.Core.Platform.WindowHandle, int, int, int, int) + fullName: OpenTK.Platform.IWindowComponent.SetBounds(OpenTK.Platform.WindowHandle, int, int, int, int) nameWithType.vb: IWindowComponent.SetBounds(WindowHandle, Integer, Integer, Integer, Integer) - fullName.vb: OpenTK.Core.Platform.IWindowComponent.SetBounds(OpenTK.Core.Platform.WindowHandle, Integer, Integer, Integer, Integer) + fullName.vb: OpenTK.Platform.IWindowComponent.SetBounds(OpenTK.Platform.WindowHandle, Integer, Integer, Integer, Integer) name.vb: SetBounds(WindowHandle, Integer, Integer, Integer, Integer) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.SetBounds(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) + - uid: OpenTK.Platform.IWindowComponent.SetBounds(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) name: SetBounds - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetBounds_OpenTK_Core_Platform_WindowHandle_System_Int32_System_Int32_System_Int32_System_Int32_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetBounds_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_System_Int32_System_Int32_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - uid: System.Int32 @@ -4143,13 +3998,13 @@ references: href: https://learn.microsoft.com/dotnet/api/system.int32 - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.SetBounds(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) + - uid: OpenTK.Platform.IWindowComponent.SetBounds(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) name: SetBounds - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetBounds_OpenTK_Core_Platform_WindowHandle_System_Int32_System_Int32_System_Int32_System_Int32_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetBounds_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_System_Int32_System_Int32_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - uid: System.Int32 @@ -4177,29 +4032,29 @@ references: - name: ) - uid: OpenTK.Platform.Native.X11.X11WindowComponent.GetClientPosition* commentId: Overload:OpenTK.Platform.Native.X11.X11WindowComponent.GetClientPosition - href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_GetClientPosition_OpenTK_Core_Platform_WindowHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_GetClientPosition_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ name: GetClientPosition nameWithType: X11WindowComponent.GetClientPosition fullName: OpenTK.Platform.Native.X11.X11WindowComponent.GetClientPosition -- uid: OpenTK.Core.Platform.IWindowComponent.GetClientPosition(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) - commentId: M:OpenTK.Core.Platform.IWindowComponent.GetClientPosition(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) - parent: OpenTK.Core.Platform.IWindowComponent +- uid: OpenTK.Platform.IWindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + commentId: M:OpenTK.Platform.IWindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + parent: OpenTK.Platform.IWindowComponent isExternal: true - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetClientPosition_OpenTK_Core_Platform_WindowHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetClientPosition_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ name: GetClientPosition(WindowHandle, out int, out int) nameWithType: IWindowComponent.GetClientPosition(WindowHandle, out int, out int) - fullName: OpenTK.Core.Platform.IWindowComponent.GetClientPosition(OpenTK.Core.Platform.WindowHandle, out int, out int) + fullName: OpenTK.Platform.IWindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle, out int, out int) nameWithType.vb: IWindowComponent.GetClientPosition(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Core.Platform.IWindowComponent.GetClientPosition(OpenTK.Core.Platform.WindowHandle, Integer, Integer) + fullName.vb: OpenTK.Platform.IWindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle, Integer, Integer) name.vb: GetClientPosition(WindowHandle, Integer, Integer) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.GetClientPosition(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) + - uid: OpenTK.Platform.IWindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) name: GetClientPosition - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetClientPosition_OpenTK_Core_Platform_WindowHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetClientPosition_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - name: out @@ -4218,13 +4073,13 @@ references: href: https://learn.microsoft.com/dotnet/api/system.int32 - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.GetClientPosition(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) + - uid: OpenTK.Platform.IWindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) name: GetClientPosition - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetClientPosition_OpenTK_Core_Platform_WindowHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetClientPosition_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - uid: System.Int32 @@ -4240,29 +4095,29 @@ references: - name: ) - uid: OpenTK.Platform.Native.X11.X11WindowComponent.SetClientPosition* commentId: Overload:OpenTK.Platform.Native.X11.X11WindowComponent.SetClientPosition - href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_SetClientPosition_OpenTK_Core_Platform_WindowHandle_System_Int32_System_Int32_ + href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_SetClientPosition_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_ name: SetClientPosition nameWithType: X11WindowComponent.SetClientPosition fullName: OpenTK.Platform.Native.X11.X11WindowComponent.SetClientPosition -- uid: OpenTK.Core.Platform.IWindowComponent.SetClientPosition(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) - commentId: M:OpenTK.Core.Platform.IWindowComponent.SetClientPosition(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) - parent: OpenTK.Core.Platform.IWindowComponent +- uid: OpenTK.Platform.IWindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) + commentId: M:OpenTK.Platform.IWindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) + parent: OpenTK.Platform.IWindowComponent isExternal: true - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetClientPosition_OpenTK_Core_Platform_WindowHandle_System_Int32_System_Int32_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetClientPosition_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_ name: SetClientPosition(WindowHandle, int, int) nameWithType: IWindowComponent.SetClientPosition(WindowHandle, int, int) - fullName: OpenTK.Core.Platform.IWindowComponent.SetClientPosition(OpenTK.Core.Platform.WindowHandle, int, int) + fullName: OpenTK.Platform.IWindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle, int, int) nameWithType.vb: IWindowComponent.SetClientPosition(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Core.Platform.IWindowComponent.SetClientPosition(OpenTK.Core.Platform.WindowHandle, Integer, Integer) + fullName.vb: OpenTK.Platform.IWindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle, Integer, Integer) name.vb: SetClientPosition(WindowHandle, Integer, Integer) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.SetClientPosition(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) + - uid: OpenTK.Platform.IWindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) name: SetClientPosition - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetClientPosition_OpenTK_Core_Platform_WindowHandle_System_Int32_System_Int32_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetClientPosition_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - uid: System.Int32 @@ -4277,13 +4132,13 @@ references: href: https://learn.microsoft.com/dotnet/api/system.int32 - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.SetClientPosition(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) + - uid: OpenTK.Platform.IWindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) name: SetClientPosition - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetClientPosition_OpenTK_Core_Platform_WindowHandle_System_Int32_System_Int32_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetClientPosition_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - uid: System.Int32 @@ -4299,29 +4154,29 @@ references: - name: ) - uid: OpenTK.Platform.Native.X11.X11WindowComponent.GetClientSize* commentId: Overload:OpenTK.Platform.Native.X11.X11WindowComponent.GetClientSize - href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_GetClientSize_OpenTK_Core_Platform_WindowHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_GetClientSize_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ name: GetClientSize nameWithType: X11WindowComponent.GetClientSize fullName: OpenTK.Platform.Native.X11.X11WindowComponent.GetClientSize -- uid: OpenTK.Core.Platform.IWindowComponent.GetClientSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) - commentId: M:OpenTK.Core.Platform.IWindowComponent.GetClientSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) - parent: OpenTK.Core.Platform.IWindowComponent +- uid: OpenTK.Platform.IWindowComponent.GetClientSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + commentId: M:OpenTK.Platform.IWindowComponent.GetClientSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + parent: OpenTK.Platform.IWindowComponent isExternal: true - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetClientSize_OpenTK_Core_Platform_WindowHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetClientSize_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ name: GetClientSize(WindowHandle, out int, out int) nameWithType: IWindowComponent.GetClientSize(WindowHandle, out int, out int) - fullName: OpenTK.Core.Platform.IWindowComponent.GetClientSize(OpenTK.Core.Platform.WindowHandle, out int, out int) + fullName: OpenTK.Platform.IWindowComponent.GetClientSize(OpenTK.Platform.WindowHandle, out int, out int) nameWithType.vb: IWindowComponent.GetClientSize(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Core.Platform.IWindowComponent.GetClientSize(OpenTK.Core.Platform.WindowHandle, Integer, Integer) + fullName.vb: OpenTK.Platform.IWindowComponent.GetClientSize(OpenTK.Platform.WindowHandle, Integer, Integer) name.vb: GetClientSize(WindowHandle, Integer, Integer) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.GetClientSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) + - uid: OpenTK.Platform.IWindowComponent.GetClientSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) name: GetClientSize - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetClientSize_OpenTK_Core_Platform_WindowHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetClientSize_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - name: out @@ -4340,13 +4195,13 @@ references: href: https://learn.microsoft.com/dotnet/api/system.int32 - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.GetClientSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) + - uid: OpenTK.Platform.IWindowComponent.GetClientSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) name: GetClientSize - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetClientSize_OpenTK_Core_Platform_WindowHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetClientSize_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - uid: System.Int32 @@ -4362,29 +4217,29 @@ references: - name: ) - uid: OpenTK.Platform.Native.X11.X11WindowComponent.SetClientSize* commentId: Overload:OpenTK.Platform.Native.X11.X11WindowComponent.SetClientSize - href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_SetClientSize_OpenTK_Core_Platform_WindowHandle_System_Int32_System_Int32_ + href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_SetClientSize_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_ name: SetClientSize nameWithType: X11WindowComponent.SetClientSize fullName: OpenTK.Platform.Native.X11.X11WindowComponent.SetClientSize -- uid: OpenTK.Core.Platform.IWindowComponent.SetClientSize(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) - commentId: M:OpenTK.Core.Platform.IWindowComponent.SetClientSize(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) - parent: OpenTK.Core.Platform.IWindowComponent +- uid: OpenTK.Platform.IWindowComponent.SetClientSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) + commentId: M:OpenTK.Platform.IWindowComponent.SetClientSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) + parent: OpenTK.Platform.IWindowComponent isExternal: true - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetClientSize_OpenTK_Core_Platform_WindowHandle_System_Int32_System_Int32_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetClientSize_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_ name: SetClientSize(WindowHandle, int, int) nameWithType: IWindowComponent.SetClientSize(WindowHandle, int, int) - fullName: OpenTK.Core.Platform.IWindowComponent.SetClientSize(OpenTK.Core.Platform.WindowHandle, int, int) + fullName: OpenTK.Platform.IWindowComponent.SetClientSize(OpenTK.Platform.WindowHandle, int, int) nameWithType.vb: IWindowComponent.SetClientSize(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Core.Platform.IWindowComponent.SetClientSize(OpenTK.Core.Platform.WindowHandle, Integer, Integer) + fullName.vb: OpenTK.Platform.IWindowComponent.SetClientSize(OpenTK.Platform.WindowHandle, Integer, Integer) name.vb: SetClientSize(WindowHandle, Integer, Integer) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.SetClientSize(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) + - uid: OpenTK.Platform.IWindowComponent.SetClientSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) name: SetClientSize - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetClientSize_OpenTK_Core_Platform_WindowHandle_System_Int32_System_Int32_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetClientSize_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - uid: System.Int32 @@ -4399,13 +4254,13 @@ references: href: https://learn.microsoft.com/dotnet/api/system.int32 - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.SetClientSize(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) + - uid: OpenTK.Platform.IWindowComponent.SetClientSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) name: SetClientSize - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetClientSize_OpenTK_Core_Platform_WindowHandle_System_Int32_System_Int32_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetClientSize_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - uid: System.Int32 @@ -4421,29 +4276,29 @@ references: - name: ) - uid: OpenTK.Platform.Native.X11.X11WindowComponent.GetClientBounds* commentId: Overload:OpenTK.Platform.Native.X11.X11WindowComponent.GetClientBounds - href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_GetClientBounds_OpenTK_Core_Platform_WindowHandle_System_Int32__System_Int32__System_Int32__System_Int32__ + href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_GetClientBounds_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__System_Int32__System_Int32__ name: GetClientBounds nameWithType: X11WindowComponent.GetClientBounds fullName: OpenTK.Platform.Native.X11.X11WindowComponent.GetClientBounds -- uid: OpenTK.Core.Platform.IWindowComponent.GetClientBounds(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) - commentId: M:OpenTK.Core.Platform.IWindowComponent.GetClientBounds(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) - parent: OpenTK.Core.Platform.IWindowComponent +- uid: OpenTK.Platform.IWindowComponent.GetClientBounds(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) + commentId: M:OpenTK.Platform.IWindowComponent.GetClientBounds(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) + parent: OpenTK.Platform.IWindowComponent isExternal: true - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetClientBounds_OpenTK_Core_Platform_WindowHandle_System_Int32__System_Int32__System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetClientBounds_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__System_Int32__System_Int32__ name: GetClientBounds(WindowHandle, out int, out int, out int, out int) nameWithType: IWindowComponent.GetClientBounds(WindowHandle, out int, out int, out int, out int) - fullName: OpenTK.Core.Platform.IWindowComponent.GetClientBounds(OpenTK.Core.Platform.WindowHandle, out int, out int, out int, out int) + fullName: OpenTK.Platform.IWindowComponent.GetClientBounds(OpenTK.Platform.WindowHandle, out int, out int, out int, out int) nameWithType.vb: IWindowComponent.GetClientBounds(WindowHandle, Integer, Integer, Integer, Integer) - fullName.vb: OpenTK.Core.Platform.IWindowComponent.GetClientBounds(OpenTK.Core.Platform.WindowHandle, Integer, Integer, Integer, Integer) + fullName.vb: OpenTK.Platform.IWindowComponent.GetClientBounds(OpenTK.Platform.WindowHandle, Integer, Integer, Integer, Integer) name.vb: GetClientBounds(WindowHandle, Integer, Integer, Integer, Integer) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.GetClientBounds(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) + - uid: OpenTK.Platform.IWindowComponent.GetClientBounds(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) name: GetClientBounds - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetClientBounds_OpenTK_Core_Platform_WindowHandle_System_Int32__System_Int32__System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetClientBounds_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__System_Int32__System_Int32__ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - name: out @@ -4478,13 +4333,13 @@ references: href: https://learn.microsoft.com/dotnet/api/system.int32 - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.GetClientBounds(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) + - uid: OpenTK.Platform.IWindowComponent.GetClientBounds(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) name: GetClientBounds - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetClientBounds_OpenTK_Core_Platform_WindowHandle_System_Int32__System_Int32__System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetClientBounds_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__System_Int32__System_Int32__ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - uid: System.Int32 @@ -4512,29 +4367,29 @@ references: - name: ) - uid: OpenTK.Platform.Native.X11.X11WindowComponent.SetClientBounds* commentId: Overload:OpenTK.Platform.Native.X11.X11WindowComponent.SetClientBounds - href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_SetClientBounds_OpenTK_Core_Platform_WindowHandle_System_Int32_System_Int32_System_Int32_System_Int32_ + href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_SetClientBounds_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_System_Int32_System_Int32_ name: SetClientBounds nameWithType: X11WindowComponent.SetClientBounds fullName: OpenTK.Platform.Native.X11.X11WindowComponent.SetClientBounds -- uid: OpenTK.Core.Platform.IWindowComponent.SetClientBounds(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) - commentId: M:OpenTK.Core.Platform.IWindowComponent.SetClientBounds(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) - parent: OpenTK.Core.Platform.IWindowComponent +- uid: OpenTK.Platform.IWindowComponent.SetClientBounds(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) + commentId: M:OpenTK.Platform.IWindowComponent.SetClientBounds(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) + parent: OpenTK.Platform.IWindowComponent isExternal: true - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetClientBounds_OpenTK_Core_Platform_WindowHandle_System_Int32_System_Int32_System_Int32_System_Int32_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetClientBounds_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_System_Int32_System_Int32_ name: SetClientBounds(WindowHandle, int, int, int, int) nameWithType: IWindowComponent.SetClientBounds(WindowHandle, int, int, int, int) - fullName: OpenTK.Core.Platform.IWindowComponent.SetClientBounds(OpenTK.Core.Platform.WindowHandle, int, int, int, int) + fullName: OpenTK.Platform.IWindowComponent.SetClientBounds(OpenTK.Platform.WindowHandle, int, int, int, int) nameWithType.vb: IWindowComponent.SetClientBounds(WindowHandle, Integer, Integer, Integer, Integer) - fullName.vb: OpenTK.Core.Platform.IWindowComponent.SetClientBounds(OpenTK.Core.Platform.WindowHandle, Integer, Integer, Integer, Integer) + fullName.vb: OpenTK.Platform.IWindowComponent.SetClientBounds(OpenTK.Platform.WindowHandle, Integer, Integer, Integer, Integer) name.vb: SetClientBounds(WindowHandle, Integer, Integer, Integer, Integer) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.SetClientBounds(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) + - uid: OpenTK.Platform.IWindowComponent.SetClientBounds(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) name: SetClientBounds - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetClientBounds_OpenTK_Core_Platform_WindowHandle_System_Int32_System_Int32_System_Int32_System_Int32_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetClientBounds_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_System_Int32_System_Int32_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - uid: System.Int32 @@ -4561,13 +4416,13 @@ references: href: https://learn.microsoft.com/dotnet/api/system.int32 - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.SetClientBounds(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) + - uid: OpenTK.Platform.IWindowComponent.SetClientBounds(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) name: SetClientBounds - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetClientBounds_OpenTK_Core_Platform_WindowHandle_System_Int32_System_Int32_System_Int32_System_Int32_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetClientBounds_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_System_Int32_System_Int32_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - uid: System.Int32 @@ -4595,29 +4450,29 @@ references: - name: ) - uid: OpenTK.Platform.Native.X11.X11WindowComponent.GetFramebufferSize* commentId: Overload:OpenTK.Platform.Native.X11.X11WindowComponent.GetFramebufferSize - href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_GetFramebufferSize_OpenTK_Core_Platform_WindowHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_GetFramebufferSize_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ name: GetFramebufferSize nameWithType: X11WindowComponent.GetFramebufferSize fullName: OpenTK.Platform.Native.X11.X11WindowComponent.GetFramebufferSize -- uid: OpenTK.Core.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) - commentId: M:OpenTK.Core.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) - parent: OpenTK.Core.Platform.IWindowComponent +- uid: OpenTK.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + commentId: M:OpenTK.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + parent: OpenTK.Platform.IWindowComponent isExternal: true - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetFramebufferSize_OpenTK_Core_Platform_WindowHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetFramebufferSize_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ name: GetFramebufferSize(WindowHandle, out int, out int) nameWithType: IWindowComponent.GetFramebufferSize(WindowHandle, out int, out int) - fullName: OpenTK.Core.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Core.Platform.WindowHandle, out int, out int) + fullName: OpenTK.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle, out int, out int) nameWithType.vb: IWindowComponent.GetFramebufferSize(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Core.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Core.Platform.WindowHandle, Integer, Integer) + fullName.vb: OpenTK.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle, Integer, Integer) name.vb: GetFramebufferSize(WindowHandle, Integer, Integer) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) + - uid: OpenTK.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) name: GetFramebufferSize - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetFramebufferSize_OpenTK_Core_Platform_WindowHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetFramebufferSize_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - name: out @@ -4636,13 +4491,13 @@ references: href: https://learn.microsoft.com/dotnet/api/system.int32 - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) + - uid: OpenTK.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) name: GetFramebufferSize - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetFramebufferSize_OpenTK_Core_Platform_WindowHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetFramebufferSize_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - uid: System.Int32 @@ -4658,29 +4513,29 @@ references: - name: ) - uid: OpenTK.Platform.Native.X11.X11WindowComponent.GetMaxClientSize* commentId: Overload:OpenTK.Platform.Native.X11.X11WindowComponent.GetMaxClientSize - href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_GetMaxClientSize_OpenTK_Core_Platform_WindowHandle_System_Nullable_System_Int32___System_Nullable_System_Int32___ + href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_GetMaxClientSize_OpenTK_Platform_WindowHandle_System_Nullable_System_Int32___System_Nullable_System_Int32___ name: GetMaxClientSize nameWithType: X11WindowComponent.GetMaxClientSize fullName: OpenTK.Platform.Native.X11.X11WindowComponent.GetMaxClientSize -- uid: OpenTK.Core.Platform.IWindowComponent.GetMaxClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) - commentId: M:OpenTK.Core.Platform.IWindowComponent.GetMaxClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) - parent: OpenTK.Core.Platform.IWindowComponent +- uid: OpenTK.Platform.IWindowComponent.GetMaxClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) + commentId: M:OpenTK.Platform.IWindowComponent.GetMaxClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) + parent: OpenTK.Platform.IWindowComponent isExternal: true - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetMaxClientSize_OpenTK_Core_Platform_WindowHandle_System_Nullable_System_Int32___System_Nullable_System_Int32___ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetMaxClientSize_OpenTK_Platform_WindowHandle_System_Nullable_System_Int32___System_Nullable_System_Int32___ name: GetMaxClientSize(WindowHandle, out int?, out int?) nameWithType: IWindowComponent.GetMaxClientSize(WindowHandle, out int?, out int?) - fullName: OpenTK.Core.Platform.IWindowComponent.GetMaxClientSize(OpenTK.Core.Platform.WindowHandle, out int?, out int?) + fullName: OpenTK.Platform.IWindowComponent.GetMaxClientSize(OpenTK.Platform.WindowHandle, out int?, out int?) nameWithType.vb: IWindowComponent.GetMaxClientSize(WindowHandle, Integer?, Integer?) - fullName.vb: OpenTK.Core.Platform.IWindowComponent.GetMaxClientSize(OpenTK.Core.Platform.WindowHandle, Integer?, Integer?) + fullName.vb: OpenTK.Platform.IWindowComponent.GetMaxClientSize(OpenTK.Platform.WindowHandle, Integer?, Integer?) name.vb: GetMaxClientSize(WindowHandle, Integer?, Integer?) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.GetMaxClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) + - uid: OpenTK.Platform.IWindowComponent.GetMaxClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) name: GetMaxClientSize - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetMaxClientSize_OpenTK_Core_Platform_WindowHandle_System_Nullable_System_Int32___System_Nullable_System_Int32___ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetMaxClientSize_OpenTK_Platform_WindowHandle_System_Nullable_System_Int32___System_Nullable_System_Int32___ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - name: out @@ -4701,13 +4556,13 @@ references: - name: '?' - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.GetMaxClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) + - uid: OpenTK.Platform.IWindowComponent.GetMaxClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) name: GetMaxClientSize - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetMaxClientSize_OpenTK_Core_Platform_WindowHandle_System_Nullable_System_Int32___System_Nullable_System_Int32___ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetMaxClientSize_OpenTK_Platform_WindowHandle_System_Nullable_System_Int32___System_Nullable_System_Int32___ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - uid: System.Int32 @@ -4776,29 +4631,29 @@ references: - name: ) - uid: OpenTK.Platform.Native.X11.X11WindowComponent.SetMaxClientSize* commentId: Overload:OpenTK.Platform.Native.X11.X11WindowComponent.SetMaxClientSize - href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_SetMaxClientSize_OpenTK_Core_Platform_WindowHandle_System_Nullable_System_Int32__System_Nullable_System_Int32__ + href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_SetMaxClientSize_OpenTK_Platform_WindowHandle_System_Nullable_System_Int32__System_Nullable_System_Int32__ name: SetMaxClientSize nameWithType: X11WindowComponent.SetMaxClientSize fullName: OpenTK.Platform.Native.X11.X11WindowComponent.SetMaxClientSize -- uid: OpenTK.Core.Platform.IWindowComponent.SetMaxClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) - commentId: M:OpenTK.Core.Platform.IWindowComponent.SetMaxClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) - parent: OpenTK.Core.Platform.IWindowComponent +- uid: OpenTK.Platform.IWindowComponent.SetMaxClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) + commentId: M:OpenTK.Platform.IWindowComponent.SetMaxClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) + parent: OpenTK.Platform.IWindowComponent isExternal: true - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetMaxClientSize_OpenTK_Core_Platform_WindowHandle_System_Nullable_System_Int32__System_Nullable_System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetMaxClientSize_OpenTK_Platform_WindowHandle_System_Nullable_System_Int32__System_Nullable_System_Int32__ name: SetMaxClientSize(WindowHandle, int?, int?) nameWithType: IWindowComponent.SetMaxClientSize(WindowHandle, int?, int?) - fullName: OpenTK.Core.Platform.IWindowComponent.SetMaxClientSize(OpenTK.Core.Platform.WindowHandle, int?, int?) + fullName: OpenTK.Platform.IWindowComponent.SetMaxClientSize(OpenTK.Platform.WindowHandle, int?, int?) nameWithType.vb: IWindowComponent.SetMaxClientSize(WindowHandle, Integer?, Integer?) - fullName.vb: OpenTK.Core.Platform.IWindowComponent.SetMaxClientSize(OpenTK.Core.Platform.WindowHandle, Integer?, Integer?) + fullName.vb: OpenTK.Platform.IWindowComponent.SetMaxClientSize(OpenTK.Platform.WindowHandle, Integer?, Integer?) name.vb: SetMaxClientSize(WindowHandle, Integer?, Integer?) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.SetMaxClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) + - uid: OpenTK.Platform.IWindowComponent.SetMaxClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) name: SetMaxClientSize - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetMaxClientSize_OpenTK_Core_Platform_WindowHandle_System_Nullable_System_Int32__System_Nullable_System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetMaxClientSize_OpenTK_Platform_WindowHandle_System_Nullable_System_Int32__System_Nullable_System_Int32__ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - uid: System.Int32 @@ -4815,13 +4670,13 @@ references: - name: '?' - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.SetMaxClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) + - uid: OpenTK.Platform.IWindowComponent.SetMaxClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) name: SetMaxClientSize - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetMaxClientSize_OpenTK_Core_Platform_WindowHandle_System_Nullable_System_Int32__System_Nullable_System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetMaxClientSize_OpenTK_Platform_WindowHandle_System_Nullable_System_Int32__System_Nullable_System_Int32__ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - uid: System.Int32 @@ -4839,29 +4694,29 @@ references: - name: ) - uid: OpenTK.Platform.Native.X11.X11WindowComponent.GetMinClientSize* commentId: Overload:OpenTK.Platform.Native.X11.X11WindowComponent.GetMinClientSize - href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_GetMinClientSize_OpenTK_Core_Platform_WindowHandle_System_Nullable_System_Int32___System_Nullable_System_Int32___ + href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_GetMinClientSize_OpenTK_Platform_WindowHandle_System_Nullable_System_Int32___System_Nullable_System_Int32___ name: GetMinClientSize nameWithType: X11WindowComponent.GetMinClientSize fullName: OpenTK.Platform.Native.X11.X11WindowComponent.GetMinClientSize -- uid: OpenTK.Core.Platform.IWindowComponent.GetMinClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) - commentId: M:OpenTK.Core.Platform.IWindowComponent.GetMinClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) - parent: OpenTK.Core.Platform.IWindowComponent +- uid: OpenTK.Platform.IWindowComponent.GetMinClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) + commentId: M:OpenTK.Platform.IWindowComponent.GetMinClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) + parent: OpenTK.Platform.IWindowComponent isExternal: true - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetMinClientSize_OpenTK_Core_Platform_WindowHandle_System_Nullable_System_Int32___System_Nullable_System_Int32___ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetMinClientSize_OpenTK_Platform_WindowHandle_System_Nullable_System_Int32___System_Nullable_System_Int32___ name: GetMinClientSize(WindowHandle, out int?, out int?) nameWithType: IWindowComponent.GetMinClientSize(WindowHandle, out int?, out int?) - fullName: OpenTK.Core.Platform.IWindowComponent.GetMinClientSize(OpenTK.Core.Platform.WindowHandle, out int?, out int?) + fullName: OpenTK.Platform.IWindowComponent.GetMinClientSize(OpenTK.Platform.WindowHandle, out int?, out int?) nameWithType.vb: IWindowComponent.GetMinClientSize(WindowHandle, Integer?, Integer?) - fullName.vb: OpenTK.Core.Platform.IWindowComponent.GetMinClientSize(OpenTK.Core.Platform.WindowHandle, Integer?, Integer?) + fullName.vb: OpenTK.Platform.IWindowComponent.GetMinClientSize(OpenTK.Platform.WindowHandle, Integer?, Integer?) name.vb: GetMinClientSize(WindowHandle, Integer?, Integer?) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.GetMinClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) + - uid: OpenTK.Platform.IWindowComponent.GetMinClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) name: GetMinClientSize - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetMinClientSize_OpenTK_Core_Platform_WindowHandle_System_Nullable_System_Int32___System_Nullable_System_Int32___ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetMinClientSize_OpenTK_Platform_WindowHandle_System_Nullable_System_Int32___System_Nullable_System_Int32___ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - name: out @@ -4882,13 +4737,13 @@ references: - name: '?' - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.GetMinClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) + - uid: OpenTK.Platform.IWindowComponent.GetMinClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) name: GetMinClientSize - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetMinClientSize_OpenTK_Core_Platform_WindowHandle_System_Nullable_System_Int32___System_Nullable_System_Int32___ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetMinClientSize_OpenTK_Platform_WindowHandle_System_Nullable_System_Int32___System_Nullable_System_Int32___ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - uid: System.Int32 @@ -4906,29 +4761,29 @@ references: - name: ) - uid: OpenTK.Platform.Native.X11.X11WindowComponent.SetMinClientSize* commentId: Overload:OpenTK.Platform.Native.X11.X11WindowComponent.SetMinClientSize - href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_SetMinClientSize_OpenTK_Core_Platform_WindowHandle_System_Nullable_System_Int32__System_Nullable_System_Int32__ + href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_SetMinClientSize_OpenTK_Platform_WindowHandle_System_Nullable_System_Int32__System_Nullable_System_Int32__ name: SetMinClientSize nameWithType: X11WindowComponent.SetMinClientSize fullName: OpenTK.Platform.Native.X11.X11WindowComponent.SetMinClientSize -- uid: OpenTK.Core.Platform.IWindowComponent.SetMinClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) - commentId: M:OpenTK.Core.Platform.IWindowComponent.SetMinClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) - parent: OpenTK.Core.Platform.IWindowComponent +- uid: OpenTK.Platform.IWindowComponent.SetMinClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) + commentId: M:OpenTK.Platform.IWindowComponent.SetMinClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) + parent: OpenTK.Platform.IWindowComponent isExternal: true - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetMinClientSize_OpenTK_Core_Platform_WindowHandle_System_Nullable_System_Int32__System_Nullable_System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetMinClientSize_OpenTK_Platform_WindowHandle_System_Nullable_System_Int32__System_Nullable_System_Int32__ name: SetMinClientSize(WindowHandle, int?, int?) nameWithType: IWindowComponent.SetMinClientSize(WindowHandle, int?, int?) - fullName: OpenTK.Core.Platform.IWindowComponent.SetMinClientSize(OpenTK.Core.Platform.WindowHandle, int?, int?) + fullName: OpenTK.Platform.IWindowComponent.SetMinClientSize(OpenTK.Platform.WindowHandle, int?, int?) nameWithType.vb: IWindowComponent.SetMinClientSize(WindowHandle, Integer?, Integer?) - fullName.vb: OpenTK.Core.Platform.IWindowComponent.SetMinClientSize(OpenTK.Core.Platform.WindowHandle, Integer?, Integer?) + fullName.vb: OpenTK.Platform.IWindowComponent.SetMinClientSize(OpenTK.Platform.WindowHandle, Integer?, Integer?) name.vb: SetMinClientSize(WindowHandle, Integer?, Integer?) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.SetMinClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) + - uid: OpenTK.Platform.IWindowComponent.SetMinClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) name: SetMinClientSize - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetMinClientSize_OpenTK_Core_Platform_WindowHandle_System_Nullable_System_Int32__System_Nullable_System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetMinClientSize_OpenTK_Platform_WindowHandle_System_Nullable_System_Int32__System_Nullable_System_Int32__ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - uid: System.Int32 @@ -4945,13 +4800,13 @@ references: - name: '?' - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.SetMinClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) + - uid: OpenTK.Platform.IWindowComponent.SetMinClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) name: SetMinClientSize - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetMinClientSize_OpenTK_Core_Platform_WindowHandle_System_Nullable_System_Int32__System_Nullable_System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetMinClientSize_OpenTK_Platform_WindowHandle_System_Nullable_System_Int32__System_Nullable_System_Int32__ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - uid: System.Int32 @@ -4969,205 +4824,180 @@ references: - name: ) - uid: OpenTK.Platform.Native.X11.X11WindowComponent.GetDisplay* commentId: Overload:OpenTK.Platform.Native.X11.X11WindowComponent.GetDisplay - href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_GetDisplay_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_GetDisplay_OpenTK_Platform_WindowHandle_ name: GetDisplay nameWithType: X11WindowComponent.GetDisplay fullName: OpenTK.Platform.Native.X11.X11WindowComponent.GetDisplay -- uid: OpenTK.Core.Platform.IWindowComponent.GetDisplay(OpenTK.Core.Platform.WindowHandle) - commentId: M:OpenTK.Core.Platform.IWindowComponent.GetDisplay(OpenTK.Core.Platform.WindowHandle) - parent: OpenTK.Core.Platform.IWindowComponent - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetDisplay_OpenTK_Core_Platform_WindowHandle_ - name: GetDisplay(WindowHandle) - nameWithType: IWindowComponent.GetDisplay(WindowHandle) - fullName: OpenTK.Core.Platform.IWindowComponent.GetDisplay(OpenTK.Core.Platform.WindowHandle) - spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.GetDisplay(OpenTK.Core.Platform.WindowHandle) - name: GetDisplay - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetDisplay_OpenTK_Core_Platform_WindowHandle_ - - name: ( - - uid: OpenTK.Core.Platform.WindowHandle - name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html - - name: ) - spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.GetDisplay(OpenTK.Core.Platform.WindowHandle) - name: GetDisplay - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetDisplay_OpenTK_Core_Platform_WindowHandle_ - - name: ( - - uid: OpenTK.Core.Platform.WindowHandle - name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html - - name: ) -- uid: OpenTK.Core.Platform.DisplayHandle - commentId: T:OpenTK.Core.Platform.DisplayHandle - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.DisplayHandle.html +- uid: OpenTK.Platform.DisplayHandle + commentId: T:OpenTK.Platform.DisplayHandle + parent: OpenTK.Platform + href: OpenTK.Platform.DisplayHandle.html name: DisplayHandle nameWithType: DisplayHandle - fullName: OpenTK.Core.Platform.DisplayHandle -- uid: OpenTK.Platform.Native.X11.X11WindowComponent.SetMode(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.WindowMode) - commentId: M:OpenTK.Platform.Native.X11.X11WindowComponent.SetMode(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.WindowMode) - href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_SetMode_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_WindowMode_ + fullName: OpenTK.Platform.DisplayHandle +- uid: OpenTK.Platform.Native.X11.X11WindowComponent.SetMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowMode) + commentId: M:OpenTK.Platform.Native.X11.X11WindowComponent.SetMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowMode) + href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_SetMode_OpenTK_Platform_WindowHandle_OpenTK_Platform_WindowMode_ name: SetMode(WindowHandle, WindowMode) nameWithType: X11WindowComponent.SetMode(WindowHandle, WindowMode) - fullName: OpenTK.Platform.Native.X11.X11WindowComponent.SetMode(OpenTK.Core.Platform.WindowHandle, OpenTK.Core.Platform.WindowMode) + fullName: OpenTK.Platform.Native.X11.X11WindowComponent.SetMode(OpenTK.Platform.WindowHandle, OpenTK.Platform.WindowMode) spec.csharp: - - uid: OpenTK.Platform.Native.X11.X11WindowComponent.SetMode(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.WindowMode) + - uid: OpenTK.Platform.Native.X11.X11WindowComponent.SetMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowMode) name: SetMode - href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_SetMode_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_WindowMode_ + href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_SetMode_OpenTK_Platform_WindowHandle_OpenTK_Platform_WindowMode_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - - uid: OpenTK.Core.Platform.WindowMode + - uid: OpenTK.Platform.WindowMode name: WindowMode - href: OpenTK.Core.Platform.WindowMode.html + href: OpenTK.Platform.WindowMode.html - name: ) spec.vb: - - uid: OpenTK.Platform.Native.X11.X11WindowComponent.SetMode(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.WindowMode) + - uid: OpenTK.Platform.Native.X11.X11WindowComponent.SetMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowMode) name: SetMode - href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_SetMode_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_WindowMode_ + href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_SetMode_OpenTK_Platform_WindowHandle_OpenTK_Platform_WindowMode_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - - uid: OpenTK.Core.Platform.WindowMode + - uid: OpenTK.Platform.WindowMode name: WindowMode - href: OpenTK.Core.Platform.WindowMode.html + href: OpenTK.Platform.WindowMode.html - name: ) - uid: OpenTK.Platform.Native.X11.X11WindowComponent.GetMode* commentId: Overload:OpenTK.Platform.Native.X11.X11WindowComponent.GetMode - href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_GetMode_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_GetMode_OpenTK_Platform_WindowHandle_ name: GetMode nameWithType: X11WindowComponent.GetMode fullName: OpenTK.Platform.Native.X11.X11WindowComponent.GetMode -- uid: OpenTK.Core.Platform.IWindowComponent.GetMode(OpenTK.Core.Platform.WindowHandle) - commentId: M:OpenTK.Core.Platform.IWindowComponent.GetMode(OpenTK.Core.Platform.WindowHandle) - parent: OpenTK.Core.Platform.IWindowComponent - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetMode_OpenTK_Core_Platform_WindowHandle_ +- uid: OpenTK.Platform.IWindowComponent.GetMode(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.GetMode(OpenTK.Platform.WindowHandle) + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetMode_OpenTK_Platform_WindowHandle_ name: GetMode(WindowHandle) nameWithType: IWindowComponent.GetMode(WindowHandle) - fullName: OpenTK.Core.Platform.IWindowComponent.GetMode(OpenTK.Core.Platform.WindowHandle) + fullName: OpenTK.Platform.IWindowComponent.GetMode(OpenTK.Platform.WindowHandle) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.GetMode(OpenTK.Core.Platform.WindowHandle) + - uid: OpenTK.Platform.IWindowComponent.GetMode(OpenTK.Platform.WindowHandle) name: GetMode - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetMode_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetMode_OpenTK_Platform_WindowHandle_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.GetMode(OpenTK.Core.Platform.WindowHandle) + - uid: OpenTK.Platform.IWindowComponent.GetMode(OpenTK.Platform.WindowHandle) name: GetMode - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetMode_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetMode_OpenTK_Platform_WindowHandle_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ) -- uid: OpenTK.Core.Platform.WindowMode - commentId: T:OpenTK.Core.Platform.WindowMode - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.WindowMode.html +- uid: OpenTK.Platform.WindowMode + commentId: T:OpenTK.Platform.WindowMode + parent: OpenTK.Platform + href: OpenTK.Platform.WindowMode.html name: WindowMode nameWithType: WindowMode - fullName: OpenTK.Core.Platform.WindowMode -- uid: OpenTK.Core.Platform.WindowMode.WindowedFullscreen - commentId: F:OpenTK.Core.Platform.WindowMode.WindowedFullscreen - href: OpenTK.Core.Platform.WindowMode.html#OpenTK_Core_Platform_WindowMode_WindowedFullscreen + fullName: OpenTK.Platform.WindowMode +- uid: OpenTK.Platform.WindowMode.WindowedFullscreen + commentId: F:OpenTK.Platform.WindowMode.WindowedFullscreen + href: OpenTK.Platform.WindowMode.html#OpenTK_Platform_WindowMode_WindowedFullscreen name: WindowedFullscreen nameWithType: WindowMode.WindowedFullscreen - fullName: OpenTK.Core.Platform.WindowMode.WindowedFullscreen -- uid: OpenTK.Core.Platform.WindowMode.ExclusiveFullscreen - commentId: F:OpenTK.Core.Platform.WindowMode.ExclusiveFullscreen - href: OpenTK.Core.Platform.WindowMode.html#OpenTK_Core_Platform_WindowMode_ExclusiveFullscreen + fullName: OpenTK.Platform.WindowMode.WindowedFullscreen +- uid: OpenTK.Platform.WindowMode.ExclusiveFullscreen + commentId: F:OpenTK.Platform.WindowMode.ExclusiveFullscreen + href: OpenTK.Platform.WindowMode.html#OpenTK_Platform_WindowMode_ExclusiveFullscreen name: ExclusiveFullscreen nameWithType: WindowMode.ExclusiveFullscreen - fullName: OpenTK.Core.Platform.WindowMode.ExclusiveFullscreen -- uid: OpenTK.Core.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle) - commentId: M:OpenTK.Core.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle) - parent: OpenTK.Core.Platform.IWindowComponent - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetFullscreenDisplay_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_DisplayHandle_ + fullName: OpenTK.Platform.WindowMode.ExclusiveFullscreen +- uid: OpenTK.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle) + commentId: M:OpenTK.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle) + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetFullscreenDisplay_OpenTK_Platform_WindowHandle_OpenTK_Platform_DisplayHandle_ name: SetFullscreenDisplay(WindowHandle, DisplayHandle) nameWithType: IWindowComponent.SetFullscreenDisplay(WindowHandle, DisplayHandle) - fullName: OpenTK.Core.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle, OpenTK.Core.Platform.DisplayHandle) + fullName: OpenTK.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle, OpenTK.Platform.DisplayHandle) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle) + - uid: OpenTK.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle) name: SetFullscreenDisplay - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetFullscreenDisplay_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_DisplayHandle_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetFullscreenDisplay_OpenTK_Platform_WindowHandle_OpenTK_Platform_DisplayHandle_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - - uid: OpenTK.Core.Platform.DisplayHandle + - uid: OpenTK.Platform.DisplayHandle name: DisplayHandle - href: OpenTK.Core.Platform.DisplayHandle.html + href: OpenTK.Platform.DisplayHandle.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle) + - uid: OpenTK.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle) name: SetFullscreenDisplay - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetFullscreenDisplay_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_DisplayHandle_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetFullscreenDisplay_OpenTK_Platform_WindowHandle_OpenTK_Platform_DisplayHandle_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - - uid: OpenTK.Core.Platform.DisplayHandle + - uid: OpenTK.Platform.DisplayHandle name: DisplayHandle - href: OpenTK.Core.Platform.DisplayHandle.html + href: OpenTK.Platform.DisplayHandle.html - name: ) -- uid: OpenTK.Core.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle,OpenTK.Core.Platform.VideoMode) - commentId: M:OpenTK.Core.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle,OpenTK.Core.Platform.VideoMode) - parent: OpenTK.Core.Platform.IWindowComponent - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetFullscreenDisplay_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_DisplayHandle_OpenTK_Core_Platform_VideoMode_ +- uid: OpenTK.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle,OpenTK.Platform.VideoMode) + commentId: M:OpenTK.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle,OpenTK.Platform.VideoMode) + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetFullscreenDisplay_OpenTK_Platform_WindowHandle_OpenTK_Platform_DisplayHandle_OpenTK_Platform_VideoMode_ name: SetFullscreenDisplay(WindowHandle, DisplayHandle, VideoMode) nameWithType: IWindowComponent.SetFullscreenDisplay(WindowHandle, DisplayHandle, VideoMode) - fullName: OpenTK.Core.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle, OpenTK.Core.Platform.DisplayHandle, OpenTK.Core.Platform.VideoMode) + fullName: OpenTK.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle, OpenTK.Platform.DisplayHandle, OpenTK.Platform.VideoMode) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle,OpenTK.Core.Platform.VideoMode) + - uid: OpenTK.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle,OpenTK.Platform.VideoMode) name: SetFullscreenDisplay - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetFullscreenDisplay_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_DisplayHandle_OpenTK_Core_Platform_VideoMode_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetFullscreenDisplay_OpenTK_Platform_WindowHandle_OpenTK_Platform_DisplayHandle_OpenTK_Platform_VideoMode_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - - uid: OpenTK.Core.Platform.DisplayHandle + - uid: OpenTK.Platform.DisplayHandle name: DisplayHandle - href: OpenTK.Core.Platform.DisplayHandle.html + href: OpenTK.Platform.DisplayHandle.html - name: ',' - name: " " - - uid: OpenTK.Core.Platform.VideoMode + - uid: OpenTK.Platform.VideoMode name: VideoMode - href: OpenTK.Core.Platform.VideoMode.html + href: OpenTK.Platform.VideoMode.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle,OpenTK.Core.Platform.VideoMode) + - uid: OpenTK.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle,OpenTK.Platform.VideoMode) name: SetFullscreenDisplay - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetFullscreenDisplay_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_DisplayHandle_OpenTK_Core_Platform_VideoMode_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetFullscreenDisplay_OpenTK_Platform_WindowHandle_OpenTK_Platform_DisplayHandle_OpenTK_Platform_VideoMode_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - - uid: OpenTK.Core.Platform.DisplayHandle + - uid: OpenTK.Platform.DisplayHandle name: DisplayHandle - href: OpenTK.Core.Platform.DisplayHandle.html + href: OpenTK.Platform.DisplayHandle.html - name: ',' - name: " " - - uid: OpenTK.Core.Platform.VideoMode + - uid: OpenTK.Platform.VideoMode name: VideoMode - href: OpenTK.Core.Platform.VideoMode.html + href: OpenTK.Platform.VideoMode.html - name: ) - uid: System.ArgumentOutOfRangeException commentId: T:System.ArgumentOutOfRangeException @@ -5178,274 +5008,274 @@ references: fullName: System.ArgumentOutOfRangeException - uid: OpenTK.Platform.Native.X11.X11WindowComponent.SetMode* commentId: Overload:OpenTK.Platform.Native.X11.X11WindowComponent.SetMode - href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_SetMode_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_WindowMode_ + href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_SetMode_OpenTK_Platform_WindowHandle_OpenTK_Platform_WindowMode_ name: SetMode nameWithType: X11WindowComponent.SetMode fullName: OpenTK.Platform.Native.X11.X11WindowComponent.SetMode -- uid: OpenTK.Core.Platform.IWindowComponent.SetMode(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.WindowMode) - commentId: M:OpenTK.Core.Platform.IWindowComponent.SetMode(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.WindowMode) - parent: OpenTK.Core.Platform.IWindowComponent - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetMode_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_WindowMode_ +- uid: OpenTK.Platform.IWindowComponent.SetMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowMode) + commentId: M:OpenTK.Platform.IWindowComponent.SetMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowMode) + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetMode_OpenTK_Platform_WindowHandle_OpenTK_Platform_WindowMode_ name: SetMode(WindowHandle, WindowMode) nameWithType: IWindowComponent.SetMode(WindowHandle, WindowMode) - fullName: OpenTK.Core.Platform.IWindowComponent.SetMode(OpenTK.Core.Platform.WindowHandle, OpenTK.Core.Platform.WindowMode) + fullName: OpenTK.Platform.IWindowComponent.SetMode(OpenTK.Platform.WindowHandle, OpenTK.Platform.WindowMode) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.SetMode(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.WindowMode) + - uid: OpenTK.Platform.IWindowComponent.SetMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowMode) name: SetMode - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetMode_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_WindowMode_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetMode_OpenTK_Platform_WindowHandle_OpenTK_Platform_WindowMode_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - - uid: OpenTK.Core.Platform.WindowMode + - uid: OpenTK.Platform.WindowMode name: WindowMode - href: OpenTK.Core.Platform.WindowMode.html + href: OpenTK.Platform.WindowMode.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.SetMode(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.WindowMode) + - uid: OpenTK.Platform.IWindowComponent.SetMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowMode) name: SetMode - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetMode_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_WindowMode_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetMode_OpenTK_Platform_WindowHandle_OpenTK_Platform_WindowMode_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - - uid: OpenTK.Core.Platform.WindowMode + - uid: OpenTK.Platform.WindowMode name: WindowMode - href: OpenTK.Core.Platform.WindowMode.html + href: OpenTK.Platform.WindowMode.html - name: ) - uid: OpenTK.Platform.Native.X11.X11WindowComponent.SetFullscreenDisplay* commentId: Overload:OpenTK.Platform.Native.X11.X11WindowComponent.SetFullscreenDisplay - href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_SetFullscreenDisplay_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_DisplayHandle_ + href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_SetFullscreenDisplay_OpenTK_Platform_WindowHandle_OpenTK_Platform_DisplayHandle_ name: SetFullscreenDisplay nameWithType: X11WindowComponent.SetFullscreenDisplay fullName: OpenTK.Platform.Native.X11.X11WindowComponent.SetFullscreenDisplay -- uid: OpenTK.Core.Platform.IDisplayComponent.GetSupportedVideoModes(OpenTK.Core.Platform.DisplayHandle) - commentId: M:OpenTK.Core.Platform.IDisplayComponent.GetSupportedVideoModes(OpenTK.Core.Platform.DisplayHandle) - parent: OpenTK.Core.Platform.IDisplayComponent - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_GetSupportedVideoModes_OpenTK_Core_Platform_DisplayHandle_ +- uid: OpenTK.Platform.IDisplayComponent.GetSupportedVideoModes(OpenTK.Platform.DisplayHandle) + commentId: M:OpenTK.Platform.IDisplayComponent.GetSupportedVideoModes(OpenTK.Platform.DisplayHandle) + parent: OpenTK.Platform.IDisplayComponent + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_GetSupportedVideoModes_OpenTK_Platform_DisplayHandle_ name: GetSupportedVideoModes(DisplayHandle) nameWithType: IDisplayComponent.GetSupportedVideoModes(DisplayHandle) - fullName: OpenTK.Core.Platform.IDisplayComponent.GetSupportedVideoModes(OpenTK.Core.Platform.DisplayHandle) + fullName: OpenTK.Platform.IDisplayComponent.GetSupportedVideoModes(OpenTK.Platform.DisplayHandle) spec.csharp: - - uid: OpenTK.Core.Platform.IDisplayComponent.GetSupportedVideoModes(OpenTK.Core.Platform.DisplayHandle) + - uid: OpenTK.Platform.IDisplayComponent.GetSupportedVideoModes(OpenTK.Platform.DisplayHandle) name: GetSupportedVideoModes - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_GetSupportedVideoModes_OpenTK_Core_Platform_DisplayHandle_ + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_GetSupportedVideoModes_OpenTK_Platform_DisplayHandle_ - name: ( - - uid: OpenTK.Core.Platform.DisplayHandle + - uid: OpenTK.Platform.DisplayHandle name: DisplayHandle - href: OpenTK.Core.Platform.DisplayHandle.html + href: OpenTK.Platform.DisplayHandle.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IDisplayComponent.GetSupportedVideoModes(OpenTK.Core.Platform.DisplayHandle) + - uid: OpenTK.Platform.IDisplayComponent.GetSupportedVideoModes(OpenTK.Platform.DisplayHandle) name: GetSupportedVideoModes - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_GetSupportedVideoModes_OpenTK_Core_Platform_DisplayHandle_ + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_GetSupportedVideoModes_OpenTK_Platform_DisplayHandle_ - name: ( - - uid: OpenTK.Core.Platform.DisplayHandle + - uid: OpenTK.Platform.DisplayHandle name: DisplayHandle - href: OpenTK.Core.Platform.DisplayHandle.html + href: OpenTK.Platform.DisplayHandle.html - name: ) -- uid: OpenTK.Core.Platform.VideoMode - commentId: T:OpenTK.Core.Platform.VideoMode - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.VideoMode.html +- uid: OpenTK.Platform.VideoMode + commentId: T:OpenTK.Platform.VideoMode + parent: OpenTK.Platform + href: OpenTK.Platform.VideoMode.html name: VideoMode nameWithType: VideoMode - fullName: OpenTK.Core.Platform.VideoMode -- uid: OpenTK.Core.Platform.IDisplayComponent - commentId: T:OpenTK.Core.Platform.IDisplayComponent - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.IDisplayComponent.html + fullName: OpenTK.Platform.VideoMode +- uid: OpenTK.Platform.IDisplayComponent + commentId: T:OpenTK.Platform.IDisplayComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IDisplayComponent.html name: IDisplayComponent nameWithType: IDisplayComponent - fullName: OpenTK.Core.Platform.IDisplayComponent + fullName: OpenTK.Platform.IDisplayComponent - uid: OpenTK.Platform.Native.X11.X11WindowComponent.GetFullscreenDisplay* commentId: Overload:OpenTK.Platform.Native.X11.X11WindowComponent.GetFullscreenDisplay - href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_GetFullscreenDisplay_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_DisplayHandle__ + href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_GetFullscreenDisplay_OpenTK_Platform_WindowHandle_OpenTK_Platform_DisplayHandle__ name: GetFullscreenDisplay nameWithType: X11WindowComponent.GetFullscreenDisplay fullName: OpenTK.Platform.Native.X11.X11WindowComponent.GetFullscreenDisplay -- uid: OpenTK.Core.Platform.IWindowComponent.GetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle@) - commentId: M:OpenTK.Core.Platform.IWindowComponent.GetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle@) - parent: OpenTK.Core.Platform.IWindowComponent - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetFullscreenDisplay_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_DisplayHandle__ +- uid: OpenTK.Platform.IWindowComponent.GetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle@) + commentId: M:OpenTK.Platform.IWindowComponent.GetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle@) + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetFullscreenDisplay_OpenTK_Platform_WindowHandle_OpenTK_Platform_DisplayHandle__ name: GetFullscreenDisplay(WindowHandle, out DisplayHandle) nameWithType: IWindowComponent.GetFullscreenDisplay(WindowHandle, out DisplayHandle) - fullName: OpenTK.Core.Platform.IWindowComponent.GetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle, out OpenTK.Core.Platform.DisplayHandle) + fullName: OpenTK.Platform.IWindowComponent.GetFullscreenDisplay(OpenTK.Platform.WindowHandle, out OpenTK.Platform.DisplayHandle) nameWithType.vb: IWindowComponent.GetFullscreenDisplay(WindowHandle, DisplayHandle) - fullName.vb: OpenTK.Core.Platform.IWindowComponent.GetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle, OpenTK.Core.Platform.DisplayHandle) + fullName.vb: OpenTK.Platform.IWindowComponent.GetFullscreenDisplay(OpenTK.Platform.WindowHandle, OpenTK.Platform.DisplayHandle) name.vb: GetFullscreenDisplay(WindowHandle, DisplayHandle) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.GetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle@) + - uid: OpenTK.Platform.IWindowComponent.GetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle@) name: GetFullscreenDisplay - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetFullscreenDisplay_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_DisplayHandle__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetFullscreenDisplay_OpenTK_Platform_WindowHandle_OpenTK_Platform_DisplayHandle__ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - name: out - name: " " - - uid: OpenTK.Core.Platform.DisplayHandle + - uid: OpenTK.Platform.DisplayHandle name: DisplayHandle - href: OpenTK.Core.Platform.DisplayHandle.html + href: OpenTK.Platform.DisplayHandle.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.GetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle@) + - uid: OpenTK.Platform.IWindowComponent.GetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle@) name: GetFullscreenDisplay - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetFullscreenDisplay_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_DisplayHandle__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetFullscreenDisplay_OpenTK_Platform_WindowHandle_OpenTK_Platform_DisplayHandle__ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - - uid: OpenTK.Core.Platform.DisplayHandle + - uid: OpenTK.Platform.DisplayHandle name: DisplayHandle - href: OpenTK.Core.Platform.DisplayHandle.html + href: OpenTK.Platform.DisplayHandle.html - name: ) -- uid: OpenTK.Platform.Native.X11.X11WindowComponent.SetBorderStyle(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.WindowBorderStyle) - commentId: M:OpenTK.Platform.Native.X11.X11WindowComponent.SetBorderStyle(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.WindowBorderStyle) - href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_SetBorderStyle_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_WindowBorderStyle_ +- uid: OpenTK.Platform.Native.X11.X11WindowComponent.SetBorderStyle(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowBorderStyle) + commentId: M:OpenTK.Platform.Native.X11.X11WindowComponent.SetBorderStyle(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowBorderStyle) + href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_SetBorderStyle_OpenTK_Platform_WindowHandle_OpenTK_Platform_WindowBorderStyle_ name: SetBorderStyle(WindowHandle, WindowBorderStyle) nameWithType: X11WindowComponent.SetBorderStyle(WindowHandle, WindowBorderStyle) - fullName: OpenTK.Platform.Native.X11.X11WindowComponent.SetBorderStyle(OpenTK.Core.Platform.WindowHandle, OpenTK.Core.Platform.WindowBorderStyle) + fullName: OpenTK.Platform.Native.X11.X11WindowComponent.SetBorderStyle(OpenTK.Platform.WindowHandle, OpenTK.Platform.WindowBorderStyle) spec.csharp: - - uid: OpenTK.Platform.Native.X11.X11WindowComponent.SetBorderStyle(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.WindowBorderStyle) + - uid: OpenTK.Platform.Native.X11.X11WindowComponent.SetBorderStyle(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowBorderStyle) name: SetBorderStyle - href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_SetBorderStyle_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_WindowBorderStyle_ + href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_SetBorderStyle_OpenTK_Platform_WindowHandle_OpenTK_Platform_WindowBorderStyle_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - - uid: OpenTK.Core.Platform.WindowBorderStyle + - uid: OpenTK.Platform.WindowBorderStyle name: WindowBorderStyle - href: OpenTK.Core.Platform.WindowBorderStyle.html + href: OpenTK.Platform.WindowBorderStyle.html - name: ) spec.vb: - - uid: OpenTK.Platform.Native.X11.X11WindowComponent.SetBorderStyle(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.WindowBorderStyle) + - uid: OpenTK.Platform.Native.X11.X11WindowComponent.SetBorderStyle(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowBorderStyle) name: SetBorderStyle - href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_SetBorderStyle_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_WindowBorderStyle_ + href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_SetBorderStyle_OpenTK_Platform_WindowHandle_OpenTK_Platform_WindowBorderStyle_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - - uid: OpenTK.Core.Platform.WindowBorderStyle + - uid: OpenTK.Platform.WindowBorderStyle name: WindowBorderStyle - href: OpenTK.Core.Platform.WindowBorderStyle.html + href: OpenTK.Platform.WindowBorderStyle.html - name: ) - uid: OpenTK.Platform.Native.X11.X11WindowComponent.GetBorderStyle* commentId: Overload:OpenTK.Platform.Native.X11.X11WindowComponent.GetBorderStyle - href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_GetBorderStyle_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_GetBorderStyle_OpenTK_Platform_WindowHandle_ name: GetBorderStyle nameWithType: X11WindowComponent.GetBorderStyle fullName: OpenTK.Platform.Native.X11.X11WindowComponent.GetBorderStyle -- uid: OpenTK.Core.Platform.IWindowComponent.GetBorderStyle(OpenTK.Core.Platform.WindowHandle) - commentId: M:OpenTK.Core.Platform.IWindowComponent.GetBorderStyle(OpenTK.Core.Platform.WindowHandle) - parent: OpenTK.Core.Platform.IWindowComponent - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetBorderStyle_OpenTK_Core_Platform_WindowHandle_ +- uid: OpenTK.Platform.IWindowComponent.GetBorderStyle(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.GetBorderStyle(OpenTK.Platform.WindowHandle) + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetBorderStyle_OpenTK_Platform_WindowHandle_ name: GetBorderStyle(WindowHandle) nameWithType: IWindowComponent.GetBorderStyle(WindowHandle) - fullName: OpenTK.Core.Platform.IWindowComponent.GetBorderStyle(OpenTK.Core.Platform.WindowHandle) + fullName: OpenTK.Platform.IWindowComponent.GetBorderStyle(OpenTK.Platform.WindowHandle) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.GetBorderStyle(OpenTK.Core.Platform.WindowHandle) + - uid: OpenTK.Platform.IWindowComponent.GetBorderStyle(OpenTK.Platform.WindowHandle) name: GetBorderStyle - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetBorderStyle_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetBorderStyle_OpenTK_Platform_WindowHandle_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.GetBorderStyle(OpenTK.Core.Platform.WindowHandle) + - uid: OpenTK.Platform.IWindowComponent.GetBorderStyle(OpenTK.Platform.WindowHandle) name: GetBorderStyle - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetBorderStyle_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetBorderStyle_OpenTK_Platform_WindowHandle_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ) -- uid: OpenTK.Core.Platform.WindowBorderStyle - commentId: T:OpenTK.Core.Platform.WindowBorderStyle - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.WindowBorderStyle.html +- uid: OpenTK.Platform.WindowBorderStyle + commentId: T:OpenTK.Platform.WindowBorderStyle + parent: OpenTK.Platform + href: OpenTK.Platform.WindowBorderStyle.html name: WindowBorderStyle nameWithType: WindowBorderStyle - fullName: OpenTK.Core.Platform.WindowBorderStyle + fullName: OpenTK.Platform.WindowBorderStyle - uid: OpenTK.Platform.Native.X11.X11WindowComponent.SetBorderStyle* commentId: Overload:OpenTK.Platform.Native.X11.X11WindowComponent.SetBorderStyle - href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_SetBorderStyle_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_WindowBorderStyle_ + href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_SetBorderStyle_OpenTK_Platform_WindowHandle_OpenTK_Platform_WindowBorderStyle_ name: SetBorderStyle nameWithType: X11WindowComponent.SetBorderStyle fullName: OpenTK.Platform.Native.X11.X11WindowComponent.SetBorderStyle -- uid: OpenTK.Core.Platform.IWindowComponent.SetBorderStyle(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.WindowBorderStyle) - commentId: M:OpenTK.Core.Platform.IWindowComponent.SetBorderStyle(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.WindowBorderStyle) - parent: OpenTK.Core.Platform.IWindowComponent - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetBorderStyle_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_WindowBorderStyle_ +- uid: OpenTK.Platform.IWindowComponent.SetBorderStyle(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowBorderStyle) + commentId: M:OpenTK.Platform.IWindowComponent.SetBorderStyle(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowBorderStyle) + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetBorderStyle_OpenTK_Platform_WindowHandle_OpenTK_Platform_WindowBorderStyle_ name: SetBorderStyle(WindowHandle, WindowBorderStyle) nameWithType: IWindowComponent.SetBorderStyle(WindowHandle, WindowBorderStyle) - fullName: OpenTK.Core.Platform.IWindowComponent.SetBorderStyle(OpenTK.Core.Platform.WindowHandle, OpenTK.Core.Platform.WindowBorderStyle) + fullName: OpenTK.Platform.IWindowComponent.SetBorderStyle(OpenTK.Platform.WindowHandle, OpenTK.Platform.WindowBorderStyle) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.SetBorderStyle(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.WindowBorderStyle) + - uid: OpenTK.Platform.IWindowComponent.SetBorderStyle(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowBorderStyle) name: SetBorderStyle - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetBorderStyle_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_WindowBorderStyle_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetBorderStyle_OpenTK_Platform_WindowHandle_OpenTK_Platform_WindowBorderStyle_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - - uid: OpenTK.Core.Platform.WindowBorderStyle + - uid: OpenTK.Platform.WindowBorderStyle name: WindowBorderStyle - href: OpenTK.Core.Platform.WindowBorderStyle.html + href: OpenTK.Platform.WindowBorderStyle.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.SetBorderStyle(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.WindowBorderStyle) + - uid: OpenTK.Platform.IWindowComponent.SetBorderStyle(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowBorderStyle) name: SetBorderStyle - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetBorderStyle_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_WindowBorderStyle_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetBorderStyle_OpenTK_Platform_WindowHandle_OpenTK_Platform_WindowBorderStyle_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - - uid: OpenTK.Core.Platform.WindowBorderStyle + - uid: OpenTK.Platform.WindowBorderStyle name: WindowBorderStyle - href: OpenTK.Core.Platform.WindowBorderStyle.html + href: OpenTK.Platform.WindowBorderStyle.html - name: ) - uid: OpenTK.Platform.Native.X11.X11WindowComponent.SetAlwaysOnTop* commentId: Overload:OpenTK.Platform.Native.X11.X11WindowComponent.SetAlwaysOnTop - href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_SetAlwaysOnTop_OpenTK_Core_Platform_WindowHandle_System_Boolean_ + href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_SetAlwaysOnTop_OpenTK_Platform_WindowHandle_System_Boolean_ name: SetAlwaysOnTop nameWithType: X11WindowComponent.SetAlwaysOnTop fullName: OpenTK.Platform.Native.X11.X11WindowComponent.SetAlwaysOnTop -- uid: OpenTK.Core.Platform.IWindowComponent.SetAlwaysOnTop(OpenTK.Core.Platform.WindowHandle,System.Boolean) - commentId: M:OpenTK.Core.Platform.IWindowComponent.SetAlwaysOnTop(OpenTK.Core.Platform.WindowHandle,System.Boolean) - parent: OpenTK.Core.Platform.IWindowComponent +- uid: OpenTK.Platform.IWindowComponent.SetAlwaysOnTop(OpenTK.Platform.WindowHandle,System.Boolean) + commentId: M:OpenTK.Platform.IWindowComponent.SetAlwaysOnTop(OpenTK.Platform.WindowHandle,System.Boolean) + parent: OpenTK.Platform.IWindowComponent isExternal: true - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetAlwaysOnTop_OpenTK_Core_Platform_WindowHandle_System_Boolean_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetAlwaysOnTop_OpenTK_Platform_WindowHandle_System_Boolean_ name: SetAlwaysOnTop(WindowHandle, bool) nameWithType: IWindowComponent.SetAlwaysOnTop(WindowHandle, bool) - fullName: OpenTK.Core.Platform.IWindowComponent.SetAlwaysOnTop(OpenTK.Core.Platform.WindowHandle, bool) + fullName: OpenTK.Platform.IWindowComponent.SetAlwaysOnTop(OpenTK.Platform.WindowHandle, bool) nameWithType.vb: IWindowComponent.SetAlwaysOnTop(WindowHandle, Boolean) - fullName.vb: OpenTK.Core.Platform.IWindowComponent.SetAlwaysOnTop(OpenTK.Core.Platform.WindowHandle, Boolean) + fullName.vb: OpenTK.Platform.IWindowComponent.SetAlwaysOnTop(OpenTK.Platform.WindowHandle, Boolean) name.vb: SetAlwaysOnTop(WindowHandle, Boolean) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.SetAlwaysOnTop(OpenTK.Core.Platform.WindowHandle,System.Boolean) + - uid: OpenTK.Platform.IWindowComponent.SetAlwaysOnTop(OpenTK.Platform.WindowHandle,System.Boolean) name: SetAlwaysOnTop - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetAlwaysOnTop_OpenTK_Core_Platform_WindowHandle_System_Boolean_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetAlwaysOnTop_OpenTK_Platform_WindowHandle_System_Boolean_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - uid: System.Boolean @@ -5454,13 +5284,13 @@ references: href: https://learn.microsoft.com/dotnet/api/system.boolean - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.SetAlwaysOnTop(OpenTK.Core.Platform.WindowHandle,System.Boolean) + - uid: OpenTK.Platform.IWindowComponent.SetAlwaysOnTop(OpenTK.Platform.WindowHandle,System.Boolean) name: SetAlwaysOnTop - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetAlwaysOnTop_OpenTK_Core_Platform_WindowHandle_System_Boolean_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetAlwaysOnTop_OpenTK_Platform_WindowHandle_System_Boolean_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - uid: System.Boolean @@ -5470,334 +5300,264 @@ references: - name: ) - uid: OpenTK.Platform.Native.X11.X11WindowComponent.IsAlwaysOnTop* commentId: Overload:OpenTK.Platform.Native.X11.X11WindowComponent.IsAlwaysOnTop - href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_IsAlwaysOnTop_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_IsAlwaysOnTop_OpenTK_Platform_WindowHandle_ name: IsAlwaysOnTop nameWithType: X11WindowComponent.IsAlwaysOnTop fullName: OpenTK.Platform.Native.X11.X11WindowComponent.IsAlwaysOnTop -- uid: OpenTK.Core.Platform.IWindowComponent.IsAlwaysOnTop(OpenTK.Core.Platform.WindowHandle) - commentId: M:OpenTK.Core.Platform.IWindowComponent.IsAlwaysOnTop(OpenTK.Core.Platform.WindowHandle) - parent: OpenTK.Core.Platform.IWindowComponent - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_IsAlwaysOnTop_OpenTK_Core_Platform_WindowHandle_ +- uid: OpenTK.Platform.IWindowComponent.IsAlwaysOnTop(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.IsAlwaysOnTop(OpenTK.Platform.WindowHandle) + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_IsAlwaysOnTop_OpenTK_Platform_WindowHandle_ name: IsAlwaysOnTop(WindowHandle) nameWithType: IWindowComponent.IsAlwaysOnTop(WindowHandle) - fullName: OpenTK.Core.Platform.IWindowComponent.IsAlwaysOnTop(OpenTK.Core.Platform.WindowHandle) + fullName: OpenTK.Platform.IWindowComponent.IsAlwaysOnTop(OpenTK.Platform.WindowHandle) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.IsAlwaysOnTop(OpenTK.Core.Platform.WindowHandle) + - uid: OpenTK.Platform.IWindowComponent.IsAlwaysOnTop(OpenTK.Platform.WindowHandle) name: IsAlwaysOnTop - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_IsAlwaysOnTop_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_IsAlwaysOnTop_OpenTK_Platform_WindowHandle_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.IsAlwaysOnTop(OpenTK.Core.Platform.WindowHandle) + - uid: OpenTK.Platform.IWindowComponent.IsAlwaysOnTop(OpenTK.Platform.WindowHandle) name: IsAlwaysOnTop - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_IsAlwaysOnTop_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_IsAlwaysOnTop_OpenTK_Platform_WindowHandle_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ) - uid: OpenTK.Platform.Native.X11.X11WindowComponent.SetHitTestCallback* commentId: Overload:OpenTK.Platform.Native.X11.X11WindowComponent.SetHitTestCallback - href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_SetHitTestCallback_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_HitTest_ + href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_SetHitTestCallback_OpenTK_Platform_WindowHandle_OpenTK_Platform_HitTest_ name: SetHitTestCallback nameWithType: X11WindowComponent.SetHitTestCallback fullName: OpenTK.Platform.Native.X11.X11WindowComponent.SetHitTestCallback -- uid: OpenTK.Core.Platform.IWindowComponent.SetHitTestCallback(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.HitTest) - commentId: M:OpenTK.Core.Platform.IWindowComponent.SetHitTestCallback(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.HitTest) - parent: OpenTK.Core.Platform.IWindowComponent - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetHitTestCallback_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_HitTest_ +- uid: OpenTK.Platform.IWindowComponent.SetHitTestCallback(OpenTK.Platform.WindowHandle,OpenTK.Platform.HitTest) + commentId: M:OpenTK.Platform.IWindowComponent.SetHitTestCallback(OpenTK.Platform.WindowHandle,OpenTK.Platform.HitTest) + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetHitTestCallback_OpenTK_Platform_WindowHandle_OpenTK_Platform_HitTest_ name: SetHitTestCallback(WindowHandle, HitTest) nameWithType: IWindowComponent.SetHitTestCallback(WindowHandle, HitTest) - fullName: OpenTK.Core.Platform.IWindowComponent.SetHitTestCallback(OpenTK.Core.Platform.WindowHandle, OpenTK.Core.Platform.HitTest) + fullName: OpenTK.Platform.IWindowComponent.SetHitTestCallback(OpenTK.Platform.WindowHandle, OpenTK.Platform.HitTest) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.SetHitTestCallback(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.HitTest) + - uid: OpenTK.Platform.IWindowComponent.SetHitTestCallback(OpenTK.Platform.WindowHandle,OpenTK.Platform.HitTest) name: SetHitTestCallback - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetHitTestCallback_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_HitTest_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetHitTestCallback_OpenTK_Platform_WindowHandle_OpenTK_Platform_HitTest_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - - uid: OpenTK.Core.Platform.HitTest + - uid: OpenTK.Platform.HitTest name: HitTest - href: OpenTK.Core.Platform.HitTest.html + href: OpenTK.Platform.HitTest.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.SetHitTestCallback(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.HitTest) + - uid: OpenTK.Platform.IWindowComponent.SetHitTestCallback(OpenTK.Platform.WindowHandle,OpenTK.Platform.HitTest) name: SetHitTestCallback - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetHitTestCallback_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_HitTest_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetHitTestCallback_OpenTK_Platform_WindowHandle_OpenTK_Platform_HitTest_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - - uid: OpenTK.Core.Platform.HitTest + - uid: OpenTK.Platform.HitTest name: HitTest - href: OpenTK.Core.Platform.HitTest.html + href: OpenTK.Platform.HitTest.html - name: ) -- uid: OpenTK.Core.Platform.HitTest - commentId: T:OpenTK.Core.Platform.HitTest - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.HitTest.html +- uid: OpenTK.Platform.HitTest + commentId: T:OpenTK.Platform.HitTest + parent: OpenTK.Platform + href: OpenTK.Platform.HitTest.html name: HitTest nameWithType: HitTest - fullName: OpenTK.Core.Platform.HitTest + fullName: OpenTK.Platform.HitTest - uid: OpenTK.Platform.Native.X11.X11WindowComponent.SetCursor* commentId: Overload:OpenTK.Platform.Native.X11.X11WindowComponent.SetCursor - href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_SetCursor_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_CursorHandle_ + href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_SetCursor_OpenTK_Platform_WindowHandle_OpenTK_Platform_CursorHandle_ name: SetCursor nameWithType: X11WindowComponent.SetCursor fullName: OpenTK.Platform.Native.X11.X11WindowComponent.SetCursor -- uid: OpenTK.Core.Platform.IWindowComponent.SetCursor(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.CursorHandle) - commentId: M:OpenTK.Core.Platform.IWindowComponent.SetCursor(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.CursorHandle) - parent: OpenTK.Core.Platform.IWindowComponent - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetCursor_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_CursorHandle_ - name: SetCursor(WindowHandle, CursorHandle) - nameWithType: IWindowComponent.SetCursor(WindowHandle, CursorHandle) - fullName: OpenTK.Core.Platform.IWindowComponent.SetCursor(OpenTK.Core.Platform.WindowHandle, OpenTK.Core.Platform.CursorHandle) - spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.SetCursor(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.CursorHandle) - name: SetCursor - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetCursor_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_CursorHandle_ - - name: ( - - uid: OpenTK.Core.Platform.WindowHandle - name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html - - name: ',' - - name: " " - - uid: OpenTK.Core.Platform.CursorHandle - name: CursorHandle - href: OpenTK.Core.Platform.CursorHandle.html - - name: ) - spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.SetCursor(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.CursorHandle) - name: SetCursor - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetCursor_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_CursorHandle_ - - name: ( - - uid: OpenTK.Core.Platform.WindowHandle - name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html - - name: ',' - - name: " " - - uid: OpenTK.Core.Platform.CursorHandle - name: CursorHandle - href: OpenTK.Core.Platform.CursorHandle.html - - name: ) -- uid: OpenTK.Core.Platform.CursorHandle - commentId: T:OpenTK.Core.Platform.CursorHandle - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.CursorHandle.html +- uid: OpenTK.Platform.CursorHandle + commentId: T:OpenTK.Platform.CursorHandle + parent: OpenTK.Platform + href: OpenTK.Platform.CursorHandle.html name: CursorHandle nameWithType: CursorHandle - fullName: OpenTK.Core.Platform.CursorHandle -- uid: OpenTK.Core.Platform.IWindowComponent.SetCursorCaptureMode(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.CursorCaptureMode) - commentId: M:OpenTK.Core.Platform.IWindowComponent.SetCursorCaptureMode(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.CursorCaptureMode) - parent: OpenTK.Core.Platform.IWindowComponent - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetCursorCaptureMode_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_CursorCaptureMode_ - name: SetCursorCaptureMode(WindowHandle, CursorCaptureMode) - nameWithType: IWindowComponent.SetCursorCaptureMode(WindowHandle, CursorCaptureMode) - fullName: OpenTK.Core.Platform.IWindowComponent.SetCursorCaptureMode(OpenTK.Core.Platform.WindowHandle, OpenTK.Core.Platform.CursorCaptureMode) - spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.SetCursorCaptureMode(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.CursorCaptureMode) - name: SetCursorCaptureMode - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetCursorCaptureMode_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_CursorCaptureMode_ - - name: ( - - uid: OpenTK.Core.Platform.WindowHandle - name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html - - name: ',' - - name: " " - - uid: OpenTK.Core.Platform.CursorCaptureMode - name: CursorCaptureMode - href: OpenTK.Core.Platform.CursorCaptureMode.html - - name: ) - spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.SetCursorCaptureMode(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.CursorCaptureMode) - name: SetCursorCaptureMode - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetCursorCaptureMode_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_CursorCaptureMode_ - - name: ( - - uid: OpenTK.Core.Platform.WindowHandle - name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html - - name: ',' - - name: " " - - uid: OpenTK.Core.Platform.CursorCaptureMode - name: CursorCaptureMode - href: OpenTK.Core.Platform.CursorCaptureMode.html - - name: ) + fullName: OpenTK.Platform.CursorHandle - uid: OpenTK.Platform.Native.X11.X11WindowComponent.GetCursorCaptureMode* commentId: Overload:OpenTK.Platform.Native.X11.X11WindowComponent.GetCursorCaptureMode - href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_GetCursorCaptureMode_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_GetCursorCaptureMode_OpenTK_Platform_WindowHandle_ name: GetCursorCaptureMode nameWithType: X11WindowComponent.GetCursorCaptureMode fullName: OpenTK.Platform.Native.X11.X11WindowComponent.GetCursorCaptureMode -- uid: OpenTK.Core.Platform.IWindowComponent.GetCursorCaptureMode(OpenTK.Core.Platform.WindowHandle) - commentId: M:OpenTK.Core.Platform.IWindowComponent.GetCursorCaptureMode(OpenTK.Core.Platform.WindowHandle) - parent: OpenTK.Core.Platform.IWindowComponent - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetCursorCaptureMode_OpenTK_Core_Platform_WindowHandle_ +- uid: OpenTK.Platform.IWindowComponent.GetCursorCaptureMode(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.GetCursorCaptureMode(OpenTK.Platform.WindowHandle) + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetCursorCaptureMode_OpenTK_Platform_WindowHandle_ name: GetCursorCaptureMode(WindowHandle) nameWithType: IWindowComponent.GetCursorCaptureMode(WindowHandle) - fullName: OpenTK.Core.Platform.IWindowComponent.GetCursorCaptureMode(OpenTK.Core.Platform.WindowHandle) + fullName: OpenTK.Platform.IWindowComponent.GetCursorCaptureMode(OpenTK.Platform.WindowHandle) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.GetCursorCaptureMode(OpenTK.Core.Platform.WindowHandle) + - uid: OpenTK.Platform.IWindowComponent.GetCursorCaptureMode(OpenTK.Platform.WindowHandle) name: GetCursorCaptureMode - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetCursorCaptureMode_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetCursorCaptureMode_OpenTK_Platform_WindowHandle_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.GetCursorCaptureMode(OpenTK.Core.Platform.WindowHandle) + - uid: OpenTK.Platform.IWindowComponent.GetCursorCaptureMode(OpenTK.Platform.WindowHandle) name: GetCursorCaptureMode - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetCursorCaptureMode_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetCursorCaptureMode_OpenTK_Platform_WindowHandle_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ) -- uid: OpenTK.Core.Platform.CursorCaptureMode - commentId: T:OpenTK.Core.Platform.CursorCaptureMode - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.CursorCaptureMode.html +- uid: OpenTK.Platform.CursorCaptureMode + commentId: T:OpenTK.Platform.CursorCaptureMode + parent: OpenTK.Platform + href: OpenTK.Platform.CursorCaptureMode.html name: CursorCaptureMode nameWithType: CursorCaptureMode - fullName: OpenTK.Core.Platform.CursorCaptureMode + fullName: OpenTK.Platform.CursorCaptureMode - uid: OpenTK.Platform.Native.X11.X11WindowComponent.SetCursorCaptureMode* commentId: Overload:OpenTK.Platform.Native.X11.X11WindowComponent.SetCursorCaptureMode - href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_SetCursorCaptureMode_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_CursorCaptureMode_ + href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_SetCursorCaptureMode_OpenTK_Platform_WindowHandle_OpenTK_Platform_CursorCaptureMode_ name: SetCursorCaptureMode nameWithType: X11WindowComponent.SetCursorCaptureMode fullName: OpenTK.Platform.Native.X11.X11WindowComponent.SetCursorCaptureMode - uid: OpenTK.Platform.Native.X11.X11WindowComponent.IsFocused* commentId: Overload:OpenTK.Platform.Native.X11.X11WindowComponent.IsFocused - href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_IsFocused_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_IsFocused_OpenTK_Platform_WindowHandle_ name: IsFocused nameWithType: X11WindowComponent.IsFocused fullName: OpenTK.Platform.Native.X11.X11WindowComponent.IsFocused -- uid: OpenTK.Core.Platform.IWindowComponent.IsFocused(OpenTK.Core.Platform.WindowHandle) - commentId: M:OpenTK.Core.Platform.IWindowComponent.IsFocused(OpenTK.Core.Platform.WindowHandle) - parent: OpenTK.Core.Platform.IWindowComponent - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_IsFocused_OpenTK_Core_Platform_WindowHandle_ +- uid: OpenTK.Platform.IWindowComponent.IsFocused(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.IsFocused(OpenTK.Platform.WindowHandle) + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_IsFocused_OpenTK_Platform_WindowHandle_ name: IsFocused(WindowHandle) nameWithType: IWindowComponent.IsFocused(WindowHandle) - fullName: OpenTK.Core.Platform.IWindowComponent.IsFocused(OpenTK.Core.Platform.WindowHandle) + fullName: OpenTK.Platform.IWindowComponent.IsFocused(OpenTK.Platform.WindowHandle) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.IsFocused(OpenTK.Core.Platform.WindowHandle) + - uid: OpenTK.Platform.IWindowComponent.IsFocused(OpenTK.Platform.WindowHandle) name: IsFocused - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_IsFocused_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_IsFocused_OpenTK_Platform_WindowHandle_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.IsFocused(OpenTK.Core.Platform.WindowHandle) + - uid: OpenTK.Platform.IWindowComponent.IsFocused(OpenTK.Platform.WindowHandle) name: IsFocused - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_IsFocused_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_IsFocused_OpenTK_Platform_WindowHandle_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ) - uid: OpenTK.Platform.Native.X11.X11WindowComponent.FocusWindow* commentId: Overload:OpenTK.Platform.Native.X11.X11WindowComponent.FocusWindow - href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_FocusWindow_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_FocusWindow_OpenTK_Platform_WindowHandle_ name: FocusWindow nameWithType: X11WindowComponent.FocusWindow fullName: OpenTK.Platform.Native.X11.X11WindowComponent.FocusWindow -- uid: OpenTK.Core.Platform.IWindowComponent.FocusWindow(OpenTK.Core.Platform.WindowHandle) - commentId: M:OpenTK.Core.Platform.IWindowComponent.FocusWindow(OpenTK.Core.Platform.WindowHandle) - parent: OpenTK.Core.Platform.IWindowComponent - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_FocusWindow_OpenTK_Core_Platform_WindowHandle_ +- uid: OpenTK.Platform.IWindowComponent.FocusWindow(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.FocusWindow(OpenTK.Platform.WindowHandle) + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_FocusWindow_OpenTK_Platform_WindowHandle_ name: FocusWindow(WindowHandle) nameWithType: IWindowComponent.FocusWindow(WindowHandle) - fullName: OpenTK.Core.Platform.IWindowComponent.FocusWindow(OpenTK.Core.Platform.WindowHandle) + fullName: OpenTK.Platform.IWindowComponent.FocusWindow(OpenTK.Platform.WindowHandle) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.FocusWindow(OpenTK.Core.Platform.WindowHandle) + - uid: OpenTK.Platform.IWindowComponent.FocusWindow(OpenTK.Platform.WindowHandle) name: FocusWindow - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_FocusWindow_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_FocusWindow_OpenTK_Platform_WindowHandle_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.FocusWindow(OpenTK.Core.Platform.WindowHandle) + - uid: OpenTK.Platform.IWindowComponent.FocusWindow(OpenTK.Platform.WindowHandle) name: FocusWindow - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_FocusWindow_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_FocusWindow_OpenTK_Platform_WindowHandle_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ) - uid: OpenTK.Platform.Native.X11.X11WindowComponent.RequestAttention* commentId: Overload:OpenTK.Platform.Native.X11.X11WindowComponent.RequestAttention - href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_RequestAttention_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_RequestAttention_OpenTK_Platform_WindowHandle_ name: RequestAttention nameWithType: X11WindowComponent.RequestAttention fullName: OpenTK.Platform.Native.X11.X11WindowComponent.RequestAttention -- uid: OpenTK.Core.Platform.IWindowComponent.RequestAttention(OpenTK.Core.Platform.WindowHandle) - commentId: M:OpenTK.Core.Platform.IWindowComponent.RequestAttention(OpenTK.Core.Platform.WindowHandle) - parent: OpenTK.Core.Platform.IWindowComponent - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_RequestAttention_OpenTK_Core_Platform_WindowHandle_ +- uid: OpenTK.Platform.IWindowComponent.RequestAttention(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.RequestAttention(OpenTK.Platform.WindowHandle) + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_RequestAttention_OpenTK_Platform_WindowHandle_ name: RequestAttention(WindowHandle) nameWithType: IWindowComponent.RequestAttention(WindowHandle) - fullName: OpenTK.Core.Platform.IWindowComponent.RequestAttention(OpenTK.Core.Platform.WindowHandle) + fullName: OpenTK.Platform.IWindowComponent.RequestAttention(OpenTK.Platform.WindowHandle) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.RequestAttention(OpenTK.Core.Platform.WindowHandle) + - uid: OpenTK.Platform.IWindowComponent.RequestAttention(OpenTK.Platform.WindowHandle) name: RequestAttention - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_RequestAttention_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_RequestAttention_OpenTK_Platform_WindowHandle_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.RequestAttention(OpenTK.Core.Platform.WindowHandle) + - uid: OpenTK.Platform.IWindowComponent.RequestAttention(OpenTK.Platform.WindowHandle) name: RequestAttention - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_RequestAttention_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_RequestAttention_OpenTK_Platform_WindowHandle_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ) - uid: OpenTK.Platform.Native.X11.X11WindowComponent.DemandAttention* commentId: Overload:OpenTK.Platform.Native.X11.X11WindowComponent.DemandAttention - href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_DemandAttention_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_DemandAttention_OpenTK_Platform_WindowHandle_ name: DemandAttention nameWithType: X11WindowComponent.DemandAttention fullName: OpenTK.Platform.Native.X11.X11WindowComponent.DemandAttention - uid: OpenTK.Platform.Native.X11.X11WindowComponent.ScreenToClient* commentId: Overload:OpenTK.Platform.Native.X11.X11WindowComponent.ScreenToClient - href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_ScreenToClient_OpenTK_Core_Platform_WindowHandle_System_Int32_System_Int32_System_Int32__System_Int32__ + href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_ScreenToClient_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_System_Int32__System_Int32__ name: ScreenToClient nameWithType: X11WindowComponent.ScreenToClient fullName: OpenTK.Platform.Native.X11.X11WindowComponent.ScreenToClient -- uid: OpenTK.Core.Platform.IWindowComponent.ScreenToClient(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) - commentId: M:OpenTK.Core.Platform.IWindowComponent.ScreenToClient(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) - parent: OpenTK.Core.Platform.IWindowComponent +- uid: OpenTK.Platform.IWindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) + commentId: M:OpenTK.Platform.IWindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) + parent: OpenTK.Platform.IWindowComponent isExternal: true - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_ScreenToClient_OpenTK_Core_Platform_WindowHandle_System_Int32_System_Int32_System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_ScreenToClient_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_System_Int32__System_Int32__ name: ScreenToClient(WindowHandle, int, int, out int, out int) nameWithType: IWindowComponent.ScreenToClient(WindowHandle, int, int, out int, out int) - fullName: OpenTK.Core.Platform.IWindowComponent.ScreenToClient(OpenTK.Core.Platform.WindowHandle, int, int, out int, out int) + fullName: OpenTK.Platform.IWindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle, int, int, out int, out int) nameWithType.vb: IWindowComponent.ScreenToClient(WindowHandle, Integer, Integer, Integer, Integer) - fullName.vb: OpenTK.Core.Platform.IWindowComponent.ScreenToClient(OpenTK.Core.Platform.WindowHandle, Integer, Integer, Integer, Integer) + fullName.vb: OpenTK.Platform.IWindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle, Integer, Integer, Integer, Integer) name.vb: ScreenToClient(WindowHandle, Integer, Integer, Integer, Integer) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.ScreenToClient(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) + - uid: OpenTK.Platform.IWindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) name: ScreenToClient - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_ScreenToClient_OpenTK_Core_Platform_WindowHandle_System_Int32_System_Int32_System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_ScreenToClient_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_System_Int32__System_Int32__ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - uid: System.Int32 @@ -5828,13 +5588,13 @@ references: href: https://learn.microsoft.com/dotnet/api/system.int32 - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.ScreenToClient(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) + - uid: OpenTK.Platform.IWindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) name: ScreenToClient - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_ScreenToClient_OpenTK_Core_Platform_WindowHandle_System_Int32_System_Int32_System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_ScreenToClient_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_System_Int32__System_Int32__ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - uid: System.Int32 @@ -5862,29 +5622,29 @@ references: - name: ) - uid: OpenTK.Platform.Native.X11.X11WindowComponent.ClientToScreen* commentId: Overload:OpenTK.Platform.Native.X11.X11WindowComponent.ClientToScreen - href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_ClientToScreen_OpenTK_Core_Platform_WindowHandle_System_Int32_System_Int32_System_Int32__System_Int32__ + href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_ClientToScreen_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_System_Int32__System_Int32__ name: ClientToScreen nameWithType: X11WindowComponent.ClientToScreen fullName: OpenTK.Platform.Native.X11.X11WindowComponent.ClientToScreen -- uid: OpenTK.Core.Platform.IWindowComponent.ClientToScreen(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) - commentId: M:OpenTK.Core.Platform.IWindowComponent.ClientToScreen(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) - parent: OpenTK.Core.Platform.IWindowComponent +- uid: OpenTK.Platform.IWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) + commentId: M:OpenTK.Platform.IWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) + parent: OpenTK.Platform.IWindowComponent isExternal: true - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_ClientToScreen_OpenTK_Core_Platform_WindowHandle_System_Int32_System_Int32_System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_ClientToScreen_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_System_Int32__System_Int32__ name: ClientToScreen(WindowHandle, int, int, out int, out int) nameWithType: IWindowComponent.ClientToScreen(WindowHandle, int, int, out int, out int) - fullName: OpenTK.Core.Platform.IWindowComponent.ClientToScreen(OpenTK.Core.Platform.WindowHandle, int, int, out int, out int) + fullName: OpenTK.Platform.IWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle, int, int, out int, out int) nameWithType.vb: IWindowComponent.ClientToScreen(WindowHandle, Integer, Integer, Integer, Integer) - fullName.vb: OpenTK.Core.Platform.IWindowComponent.ClientToScreen(OpenTK.Core.Platform.WindowHandle, Integer, Integer, Integer, Integer) + fullName.vb: OpenTK.Platform.IWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle, Integer, Integer, Integer, Integer) name.vb: ClientToScreen(WindowHandle, Integer, Integer, Integer, Integer) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.ClientToScreen(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) + - uid: OpenTK.Platform.IWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) name: ClientToScreen - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_ClientToScreen_OpenTK_Core_Platform_WindowHandle_System_Int32_System_Int32_System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_ClientToScreen_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_System_Int32__System_Int32__ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - uid: System.Int32 @@ -5915,13 +5675,13 @@ references: href: https://learn.microsoft.com/dotnet/api/system.int32 - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.ClientToScreen(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) + - uid: OpenTK.Platform.IWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) name: ClientToScreen - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_ClientToScreen_OpenTK_Core_Platform_WindowHandle_System_Int32_System_Int32_System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_ClientToScreen_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_System_Int32__System_Int32__ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - uid: System.Int32 @@ -5947,37 +5707,37 @@ references: isExternal: true href: https://learn.microsoft.com/dotnet/api/system.int32 - name: ) -- uid: OpenTK.Core.Platform.WindowScaleChangeEventArgs - commentId: T:OpenTK.Core.Platform.WindowScaleChangeEventArgs - href: OpenTK.Core.Platform.WindowScaleChangeEventArgs.html +- uid: OpenTK.Platform.WindowScaleChangeEventArgs + commentId: T:OpenTK.Platform.WindowScaleChangeEventArgs + href: OpenTK.Platform.WindowScaleChangeEventArgs.html name: WindowScaleChangeEventArgs nameWithType: WindowScaleChangeEventArgs - fullName: OpenTK.Core.Platform.WindowScaleChangeEventArgs + fullName: OpenTK.Platform.WindowScaleChangeEventArgs - uid: OpenTK.Platform.Native.X11.X11WindowComponent.GetScaleFactor* commentId: Overload:OpenTK.Platform.Native.X11.X11WindowComponent.GetScaleFactor - href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_GetScaleFactor_OpenTK_Core_Platform_WindowHandle_System_Single__System_Single__ + href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_GetScaleFactor_OpenTK_Platform_WindowHandle_System_Single__System_Single__ name: GetScaleFactor nameWithType: X11WindowComponent.GetScaleFactor fullName: OpenTK.Platform.Native.X11.X11WindowComponent.GetScaleFactor -- uid: OpenTK.Core.Platform.IWindowComponent.GetScaleFactor(OpenTK.Core.Platform.WindowHandle,System.Single@,System.Single@) - commentId: M:OpenTK.Core.Platform.IWindowComponent.GetScaleFactor(OpenTK.Core.Platform.WindowHandle,System.Single@,System.Single@) - parent: OpenTK.Core.Platform.IWindowComponent +- uid: OpenTK.Platform.IWindowComponent.GetScaleFactor(OpenTK.Platform.WindowHandle,System.Single@,System.Single@) + commentId: M:OpenTK.Platform.IWindowComponent.GetScaleFactor(OpenTK.Platform.WindowHandle,System.Single@,System.Single@) + parent: OpenTK.Platform.IWindowComponent isExternal: true - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetScaleFactor_OpenTK_Core_Platform_WindowHandle_System_Single__System_Single__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetScaleFactor_OpenTK_Platform_WindowHandle_System_Single__System_Single__ name: GetScaleFactor(WindowHandle, out float, out float) nameWithType: IWindowComponent.GetScaleFactor(WindowHandle, out float, out float) - fullName: OpenTK.Core.Platform.IWindowComponent.GetScaleFactor(OpenTK.Core.Platform.WindowHandle, out float, out float) + fullName: OpenTK.Platform.IWindowComponent.GetScaleFactor(OpenTK.Platform.WindowHandle, out float, out float) nameWithType.vb: IWindowComponent.GetScaleFactor(WindowHandle, Single, Single) - fullName.vb: OpenTK.Core.Platform.IWindowComponent.GetScaleFactor(OpenTK.Core.Platform.WindowHandle, Single, Single) + fullName.vb: OpenTK.Platform.IWindowComponent.GetScaleFactor(OpenTK.Platform.WindowHandle, Single, Single) name.vb: GetScaleFactor(WindowHandle, Single, Single) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.GetScaleFactor(OpenTK.Core.Platform.WindowHandle,System.Single@,System.Single@) + - uid: OpenTK.Platform.IWindowComponent.GetScaleFactor(OpenTK.Platform.WindowHandle,System.Single@,System.Single@) name: GetScaleFactor - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetScaleFactor_OpenTK_Core_Platform_WindowHandle_System_Single__System_Single__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetScaleFactor_OpenTK_Platform_WindowHandle_System_Single__System_Single__ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - name: out @@ -5996,13 +5756,13 @@ references: href: https://learn.microsoft.com/dotnet/api/system.single - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.GetScaleFactor(OpenTK.Core.Platform.WindowHandle,System.Single@,System.Single@) + - uid: OpenTK.Platform.IWindowComponent.GetScaleFactor(OpenTK.Platform.WindowHandle,System.Single@,System.Single@) name: GetScaleFactor - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetScaleFactor_OpenTK_Core_Platform_WindowHandle_System_Single__System_Single__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetScaleFactor_OpenTK_Platform_WindowHandle_System_Single__System_Single__ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - uid: System.Single @@ -6046,7 +5806,7 @@ references: name.vb: IntPtr - uid: OpenTK.Platform.Native.X11.X11WindowComponent.GetX11Window* commentId: Overload:OpenTK.Platform.Native.X11.X11WindowComponent.GetX11Window - href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_GetX11Window_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_GetX11Window_OpenTK_Platform_WindowHandle_ name: GetX11Window nameWithType: X11WindowComponent.GetX11Window fullName: OpenTK.Platform.Native.X11.X11WindowComponent.GetX11Window diff --git a/api/OpenTK.Platform.Native.X11.yml b/api/OpenTK.Platform.Native.X11.yml index dc1a5f87..c54d04d3 100644 --- a/api/OpenTK.Platform.Native.X11.yml +++ b/api/OpenTK.Platform.Native.X11.yml @@ -6,6 +6,7 @@ items: children: - OpenTK.Platform.Native.X11.X11ClipboardComponent - OpenTK.Platform.Native.X11.X11CursorComponent + - OpenTK.Platform.Native.X11.X11DialogComponent - OpenTK.Platform.Native.X11.X11DisplayComponent - OpenTK.Platform.Native.X11.X11IconComponent - OpenTK.Platform.Native.X11.X11IconComponent.IconImage @@ -22,7 +23,7 @@ items: fullName: OpenTK.Platform.Native.X11 type: Namespace assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform references: - uid: OpenTK.Platform.Native.X11.X11ClipboardComponent commentId: T:OpenTK.Platform.Native.X11.X11ClipboardComponent @@ -36,6 +37,12 @@ references: name: X11CursorComponent nameWithType: X11CursorComponent fullName: OpenTK.Platform.Native.X11.X11CursorComponent +- uid: OpenTK.Platform.Native.X11.X11DialogComponent + commentId: T:OpenTK.Platform.Native.X11.X11DialogComponent + href: OpenTK.Platform.Native.X11.X11DialogComponent.html + name: X11DialogComponent + nameWithType: X11DialogComponent + fullName: OpenTK.Platform.Native.X11.X11DialogComponent - uid: OpenTK.Platform.Native.X11.X11DisplayComponent commentId: T:OpenTK.Platform.Native.X11.X11DisplayComponent href: OpenTK.Platform.Native.X11.X11DisplayComponent.html diff --git a/api/OpenTK.Platform.Native.macOS.MacOSClipboardComponent.yml b/api/OpenTK.Platform.Native.macOS.MacOSClipboardComponent.yml index f789ce0a..34f155d9 100644 --- a/api/OpenTK.Platform.Native.macOS.MacOSClipboardComponent.yml +++ b/api/OpenTK.Platform.Native.macOS.MacOSClipboardComponent.yml @@ -11,11 +11,11 @@ items: - OpenTK.Platform.Native.macOS.MacOSClipboardComponent.GetClipboardFiles - OpenTK.Platform.Native.macOS.MacOSClipboardComponent.GetClipboardFormat - OpenTK.Platform.Native.macOS.MacOSClipboardComponent.GetClipboardText - - OpenTK.Platform.Native.macOS.MacOSClipboardComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + - OpenTK.Platform.Native.macOS.MacOSClipboardComponent.Initialize(OpenTK.Platform.ToolkitOptions) - OpenTK.Platform.Native.macOS.MacOSClipboardComponent.Logger - OpenTK.Platform.Native.macOS.MacOSClipboardComponent.Name - OpenTK.Platform.Native.macOS.MacOSClipboardComponent.Provides - - OpenTK.Platform.Native.macOS.MacOSClipboardComponent.SetClipboardBitmap(OpenTK.Core.Platform.Bitmap) + - OpenTK.Platform.Native.macOS.MacOSClipboardComponent.SetClipboardBitmap(OpenTK.Platform.Bitmap) - OpenTK.Platform.Native.macOS.MacOSClipboardComponent.SetClipboardText(System.String) - OpenTK.Platform.Native.macOS.MacOSClipboardComponent.SupportedFormats langs: @@ -26,15 +26,11 @@ items: fullName: OpenTK.Platform.Native.macOS.MacOSClipboardComponent type: Class source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSClipboardComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MacOSClipboardComponent - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSClipboardComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSClipboardComponent.cs startLine: 11 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS syntax: content: 'public class MacOSClipboardComponent : IClipboardComponent, IPalComponent' @@ -42,8 +38,8 @@ items: inheritance: - System.Object implements: - - OpenTK.Core.Platform.IClipboardComponent - - OpenTK.Core.Platform.IPalComponent + - OpenTK.Platform.IClipboardComponent + - OpenTK.Platform.IPalComponent inheritedMembers: - System.Object.Equals(System.Object) - System.Object.Equals(System.Object,System.Object) @@ -64,15 +60,11 @@ items: fullName: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.Name type: Property source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSClipboardComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Name - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSClipboardComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSClipboardComponent.cs startLine: 62 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: Name of the abstraction layer component. example: [] @@ -84,7 +76,7 @@ items: content.vb: Public ReadOnly Property Name As String overload: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.Name* implements: - - OpenTK.Core.Platform.IPalComponent.Name + - OpenTK.Platform.IPalComponent.Name - uid: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.Provides commentId: P:OpenTK.Platform.Native.macOS.MacOSClipboardComponent.Provides id: Provides @@ -97,15 +89,11 @@ items: fullName: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.Provides type: Property source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSClipboardComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Provides - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSClipboardComponent.cs - startLine: 64 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSClipboardComponent.cs + startLine: 65 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: Specifies which PAL components this object provides. example: [] @@ -113,11 +101,11 @@ items: content: public PalComponents Provides { get; } parameters: [] return: - type: OpenTK.Core.Platform.PalComponents + type: OpenTK.Platform.PalComponents content.vb: Public ReadOnly Property Provides As PalComponents overload: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.Provides* implements: - - OpenTK.Core.Platform.IPalComponent.Provides + - OpenTK.Platform.IPalComponent.Provides - uid: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.Logger commentId: P:OpenTK.Platform.Native.macOS.MacOSClipboardComponent.Logger id: Logger @@ -130,15 +118,11 @@ items: fullName: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.Logger type: Property source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSClipboardComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Logger - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSClipboardComponent.cs - startLine: 66 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSClipboardComponent.cs + startLine: 68 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: Provides a logger for this component. example: [] @@ -150,28 +134,24 @@ items: content.vb: Public Property Logger As ILogger overload: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.Logger* implements: - - OpenTK.Core.Platform.IPalComponent.Logger -- uid: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - commentId: M:OpenTK.Platform.Native.macOS.MacOSClipboardComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - id: Initialize(OpenTK.Core.Platform.ToolkitOptions) + - OpenTK.Platform.IPalComponent.Logger +- uid: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.Initialize(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Native.macOS.MacOSClipboardComponent.Initialize(OpenTK.Platform.ToolkitOptions) + id: Initialize(OpenTK.Platform.ToolkitOptions) parent: OpenTK.Platform.Native.macOS.MacOSClipboardComponent langs: - csharp - vb name: Initialize(ToolkitOptions) nameWithType: MacOSClipboardComponent.Initialize(ToolkitOptions) - fullName: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + fullName: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.Initialize(OpenTK.Platform.ToolkitOptions) type: Method source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSClipboardComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Initialize - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSClipboardComponent.cs - startLine: 70 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSClipboardComponent.cs + startLine: 73 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: Initialize the component. example: [] @@ -179,12 +159,12 @@ items: content: public void Initialize(ToolkitOptions options) parameters: - id: options - type: OpenTK.Core.Platform.ToolkitOptions + type: OpenTK.Platform.ToolkitOptions description: The options to initialize the component with. content.vb: Public Sub Initialize(options As ToolkitOptions) overload: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.Initialize* implements: - - OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + - OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) - uid: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.CheckClipboardUpdate commentId: M:OpenTK.Platform.Native.macOS.MacOSClipboardComponent.CheckClipboardUpdate id: CheckClipboardUpdate @@ -197,15 +177,11 @@ items: fullName: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.CheckClipboardUpdate() type: Method source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSClipboardComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CheckClipboardUpdate - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSClipboardComponent.cs - startLine: 77 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSClipboardComponent.cs + startLine: 80 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS syntax: content: public static bool CheckClipboardUpdate() @@ -225,15 +201,11 @@ items: fullName: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.SupportedFormats type: Property source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSClipboardComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SupportedFormats - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSClipboardComponent.cs - startLine: 86 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSClipboardComponent.cs + startLine: 90 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: A list of formats that this clipboard component supports. example: [] @@ -241,11 +213,11 @@ items: content: public IReadOnlyList SupportedFormats { get; } parameters: [] return: - type: System.Collections.Generic.IReadOnlyList{OpenTK.Core.Platform.ClipboardFormat} + type: System.Collections.Generic.IReadOnlyList{OpenTK.Platform.ClipboardFormat} content.vb: Public ReadOnly Property SupportedFormats As IReadOnlyList(Of ClipboardFormat) overload: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.SupportedFormats* implements: - - OpenTK.Core.Platform.IClipboardComponent.SupportedFormats + - OpenTK.Platform.IClipboardComponent.SupportedFormats - uid: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.GetClipboardFormat commentId: M:OpenTK.Platform.Native.macOS.MacOSClipboardComponent.GetClipboardFormat id: GetClipboardFormat @@ -258,27 +230,23 @@ items: fullName: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.GetClipboardFormat() type: Method source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSClipboardComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetClipboardFormat - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSClipboardComponent.cs - startLine: 139 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSClipboardComponent.cs + startLine: 144 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: Gets the format of the data currently in the clipboard. example: [] syntax: content: public ClipboardFormat GetClipboardFormat() return: - type: OpenTK.Core.Platform.ClipboardFormat + type: OpenTK.Platform.ClipboardFormat description: The format of the data currently in the clipboard. content.vb: Public Function GetClipboardFormat() As ClipboardFormat overload: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.GetClipboardFormat* implements: - - OpenTK.Core.Platform.IClipboardComponent.GetClipboardFormat + - OpenTK.Platform.IClipboardComponent.GetClipboardFormat - uid: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.SetClipboardText(System.String) commentId: M:OpenTK.Platform.Native.macOS.MacOSClipboardComponent.SetClipboardText(System.String) id: SetClipboardText(System.String) @@ -291,15 +259,11 @@ items: fullName: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.SetClipboardText(string) type: Method source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSClipboardComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetClipboardText - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSClipboardComponent.cs - startLine: 144 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSClipboardComponent.cs + startLine: 150 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: Sets the string currently in the clipboard. example: [] @@ -312,7 +276,7 @@ items: content.vb: Public Sub SetClipboardText(text As String) overload: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.SetClipboardText* implements: - - OpenTK.Core.Platform.IClipboardComponent.SetClipboardText(System.String) + - OpenTK.Platform.IClipboardComponent.SetClipboardText(System.String) nameWithType.vb: MacOSClipboardComponent.SetClipboardText(String) fullName.vb: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.SetClipboardText(String) name.vb: SetClipboardText(String) @@ -328,20 +292,16 @@ items: fullName: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.GetClipboardText() type: Method source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSClipboardComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetClipboardText - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSClipboardComponent.cs - startLine: 164 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSClipboardComponent.cs + startLine: 171 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: >- Returns the string currently in the clipboard. - This function returns null if the current clipboard data doesn't have the format. + This function returns null if the current clipboard data doesn't have the format. example: [] syntax: content: public string? GetClipboardText() @@ -351,7 +311,7 @@ items: content.vb: Public Function GetClipboardText() As String overload: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.GetClipboardText* implements: - - OpenTK.Core.Platform.IClipboardComponent.GetClipboardText + - OpenTK.Platform.IClipboardComponent.GetClipboardText - uid: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.GetClipboardAudio commentId: M:OpenTK.Platform.Native.macOS.MacOSClipboardComponent.GetClipboardAudio id: GetClipboardAudio @@ -364,51 +324,43 @@ items: fullName: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.GetClipboardAudio() type: Method source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSClipboardComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetClipboardAudio - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSClipboardComponent.cs - startLine: 176 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSClipboardComponent.cs + startLine: 184 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: >- Gets the audio data currently in the clipboard. - This function returns null if the current clipboard data doesn't have the format. + This function returns null if the current clipboard data doesn't have the format. example: [] syntax: content: public AudioData? GetClipboardAudio() return: - type: OpenTK.Core.Platform.AudioData + type: OpenTK.Platform.AudioData description: The audio data currently in the clipboard. content.vb: Public Function GetClipboardAudio() As AudioData overload: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.GetClipboardAudio* implements: - - OpenTK.Core.Platform.IClipboardComponent.GetClipboardAudio -- uid: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.SetClipboardBitmap(OpenTK.Core.Platform.Bitmap) - commentId: M:OpenTK.Platform.Native.macOS.MacOSClipboardComponent.SetClipboardBitmap(OpenTK.Core.Platform.Bitmap) - id: SetClipboardBitmap(OpenTK.Core.Platform.Bitmap) + - OpenTK.Platform.IClipboardComponent.GetClipboardAudio +- uid: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.SetClipboardBitmap(OpenTK.Platform.Bitmap) + commentId: M:OpenTK.Platform.Native.macOS.MacOSClipboardComponent.SetClipboardBitmap(OpenTK.Platform.Bitmap) + id: SetClipboardBitmap(OpenTK.Platform.Bitmap) parent: OpenTK.Platform.Native.macOS.MacOSClipboardComponent langs: - csharp - vb name: SetClipboardBitmap(Bitmap) nameWithType: MacOSClipboardComponent.SetClipboardBitmap(Bitmap) - fullName: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.SetClipboardBitmap(OpenTK.Core.Platform.Bitmap) + fullName: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.SetClipboardBitmap(OpenTK.Platform.Bitmap) type: Method source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSClipboardComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetClipboardBitmap - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSClipboardComponent.cs - startLine: 191 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSClipboardComponent.cs + startLine: 199 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: Writes a bitmap to the clipboard. example: [] @@ -416,7 +368,7 @@ items: content: public void SetClipboardBitmap(Bitmap bitmap) parameters: - id: bitmap - type: OpenTK.Core.Platform.Bitmap + type: OpenTK.Platform.Bitmap description: The bitmap to write to the clipboard. content.vb: Public Sub SetClipboardBitmap(bitmap As Bitmap) overload: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.SetClipboardBitmap* @@ -432,30 +384,26 @@ items: fullName: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.GetClipboardBitmap() type: Method source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSClipboardComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetClipboardBitmap - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSClipboardComponent.cs - startLine: 246 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSClipboardComponent.cs + startLine: 255 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: >- Gets the bitmap currently in the clipboard. - This function returns null if the current clipboard data doesn't have the format. + This function returns null if the current clipboard data doesn't have the format. example: [] syntax: content: public Bitmap? GetClipboardBitmap() return: - type: OpenTK.Core.Platform.Bitmap + type: OpenTK.Platform.Bitmap description: The bitmap currently in the clipboard. content.vb: Public Function GetClipboardBitmap() As Bitmap overload: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.GetClipboardBitmap* implements: - - OpenTK.Core.Platform.IClipboardComponent.GetClipboardBitmap + - OpenTK.Platform.IClipboardComponent.GetClipboardBitmap - uid: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.GetClipboardFiles commentId: M:OpenTK.Platform.Native.macOS.MacOSClipboardComponent.GetClipboardFiles id: GetClipboardFiles @@ -468,20 +416,16 @@ items: fullName: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.GetClipboardFiles() type: Method source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSClipboardComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetClipboardFiles - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSClipboardComponent.cs - startLine: 291 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSClipboardComponent.cs + startLine: 301 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: >- Gets a list of files and directories currently in the clipboard. - This function returns null if the current clipboard data doesn't have the format. + This function returns null if the current clipboard data doesn't have the format. example: [] syntax: content: public List? GetClipboardFiles() @@ -491,7 +435,7 @@ items: content.vb: Public Function GetClipboardFiles() As List(Of String) overload: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.GetClipboardFiles* implements: - - OpenTK.Core.Platform.IClipboardComponent.GetClipboardFiles + - OpenTK.Platform.IClipboardComponent.GetClipboardFiles references: - uid: OpenTK.Platform.Native.macOS commentId: N:OpenTK.Platform.Native.macOS @@ -542,20 +486,20 @@ references: nameWithType.vb: Object fullName.vb: Object name.vb: Object -- uid: OpenTK.Core.Platform.IClipboardComponent - commentId: T:OpenTK.Core.Platform.IClipboardComponent - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.IClipboardComponent.html +- uid: OpenTK.Platform.IClipboardComponent + commentId: T:OpenTK.Platform.IClipboardComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IClipboardComponent.html name: IClipboardComponent nameWithType: IClipboardComponent - fullName: OpenTK.Core.Platform.IClipboardComponent -- uid: OpenTK.Core.Platform.IPalComponent - commentId: T:OpenTK.Core.Platform.IPalComponent - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.IPalComponent.html + fullName: OpenTK.Platform.IClipboardComponent +- uid: OpenTK.Platform.IPalComponent + commentId: T:OpenTK.Platform.IPalComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IPalComponent.html name: IPalComponent nameWithType: IPalComponent - fullName: OpenTK.Core.Platform.IPalComponent + fullName: OpenTK.Platform.IPalComponent - uid: System.Object.Equals(System.Object) commentId: M:System.Object.Equals(System.Object) parent: System.Object @@ -782,49 +726,41 @@ references: name: System nameWithType: System fullName: System -- uid: OpenTK.Core.Platform - commentId: N:OpenTK.Core.Platform +- uid: OpenTK.Platform + commentId: N:OpenTK.Platform href: OpenTK.html - name: OpenTK.Core.Platform - nameWithType: OpenTK.Core.Platform - fullName: OpenTK.Core.Platform + name: OpenTK.Platform + nameWithType: OpenTK.Platform + fullName: OpenTK.Platform spec.csharp: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html spec.vb: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html - uid: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.Name* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSClipboardComponent.Name href: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.html#OpenTK_Platform_Native_macOS_MacOSClipboardComponent_Name name: Name nameWithType: MacOSClipboardComponent.Name fullName: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.Name -- uid: OpenTK.Core.Platform.IPalComponent.Name - commentId: P:OpenTK.Core.Platform.IPalComponent.Name - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Name +- uid: OpenTK.Platform.IPalComponent.Name + commentId: P:OpenTK.Platform.IPalComponent.Name + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Name name: Name nameWithType: IPalComponent.Name - fullName: OpenTK.Core.Platform.IPalComponent.Name + fullName: OpenTK.Platform.IPalComponent.Name - uid: System.String commentId: T:System.String parent: System @@ -842,33 +778,33 @@ references: name: Provides nameWithType: MacOSClipboardComponent.Provides fullName: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.Provides -- uid: OpenTK.Core.Platform.IPalComponent.Provides - commentId: P:OpenTK.Core.Platform.IPalComponent.Provides - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Provides +- uid: OpenTK.Platform.IPalComponent.Provides + commentId: P:OpenTK.Platform.IPalComponent.Provides + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Provides name: Provides nameWithType: IPalComponent.Provides - fullName: OpenTK.Core.Platform.IPalComponent.Provides -- uid: OpenTK.Core.Platform.PalComponents - commentId: T:OpenTK.Core.Platform.PalComponents - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.PalComponents.html + fullName: OpenTK.Platform.IPalComponent.Provides +- uid: OpenTK.Platform.PalComponents + commentId: T:OpenTK.Platform.PalComponents + parent: OpenTK.Platform + href: OpenTK.Platform.PalComponents.html name: PalComponents nameWithType: PalComponents - fullName: OpenTK.Core.Platform.PalComponents + fullName: OpenTK.Platform.PalComponents - uid: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.Logger* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSClipboardComponent.Logger href: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.html#OpenTK_Platform_Native_macOS_MacOSClipboardComponent_Logger name: Logger nameWithType: MacOSClipboardComponent.Logger fullName: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.Logger -- uid: OpenTK.Core.Platform.IPalComponent.Logger - commentId: P:OpenTK.Core.Platform.IPalComponent.Logger - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Logger +- uid: OpenTK.Platform.IPalComponent.Logger + commentId: P:OpenTK.Platform.IPalComponent.Logger + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Logger name: Logger nameWithType: IPalComponent.Logger - fullName: OpenTK.Core.Platform.IPalComponent.Logger + fullName: OpenTK.Platform.IPalComponent.Logger - uid: OpenTK.Core.Utility.ILogger commentId: T:OpenTK.Core.Utility.ILogger parent: OpenTK.Core.Utility @@ -908,42 +844,42 @@ references: href: OpenTK.Core.Utility.html - uid: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.Initialize* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSClipboardComponent.Initialize - href: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.html#OpenTK_Platform_Native_macOS_MacOSClipboardComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + href: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.html#OpenTK_Platform_Native_macOS_MacOSClipboardComponent_Initialize_OpenTK_Platform_ToolkitOptions_ name: Initialize nameWithType: MacOSClipboardComponent.Initialize fullName: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.Initialize -- uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - commentId: M:OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ +- uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ name: Initialize(ToolkitOptions) nameWithType: IPalComponent.Initialize(ToolkitOptions) - fullName: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + fullName: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) spec.csharp: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + - uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.ToolkitOptions + - uid: OpenTK.Platform.ToolkitOptions name: ToolkitOptions - href: OpenTK.Core.Platform.ToolkitOptions.html + href: OpenTK.Platform.ToolkitOptions.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + - uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.ToolkitOptions + - uid: OpenTK.Platform.ToolkitOptions name: ToolkitOptions - href: OpenTK.Core.Platform.ToolkitOptions.html + href: OpenTK.Platform.ToolkitOptions.html - name: ) -- uid: OpenTK.Core.Platform.ToolkitOptions - commentId: T:OpenTK.Core.Platform.ToolkitOptions - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.ToolkitOptions.html +- uid: OpenTK.Platform.ToolkitOptions + commentId: T:OpenTK.Platform.ToolkitOptions + parent: OpenTK.Platform + href: OpenTK.Platform.ToolkitOptions.html name: ToolkitOptions nameWithType: ToolkitOptions - fullName: OpenTK.Core.Platform.ToolkitOptions + fullName: OpenTK.Platform.ToolkitOptions - uid: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.CheckClipboardUpdate* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSClipboardComponent.CheckClipboardUpdate href: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.html#OpenTK_Platform_Native_macOS_MacOSClipboardComponent_CheckClipboardUpdate @@ -967,23 +903,23 @@ references: name: SupportedFormats nameWithType: MacOSClipboardComponent.SupportedFormats fullName: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.SupportedFormats -- uid: OpenTK.Core.Platform.IClipboardComponent.SupportedFormats - commentId: P:OpenTK.Core.Platform.IClipboardComponent.SupportedFormats - parent: OpenTK.Core.Platform.IClipboardComponent - href: OpenTK.Core.Platform.IClipboardComponent.html#OpenTK_Core_Platform_IClipboardComponent_SupportedFormats +- uid: OpenTK.Platform.IClipboardComponent.SupportedFormats + commentId: P:OpenTK.Platform.IClipboardComponent.SupportedFormats + parent: OpenTK.Platform.IClipboardComponent + href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_SupportedFormats name: SupportedFormats nameWithType: IClipboardComponent.SupportedFormats - fullName: OpenTK.Core.Platform.IClipboardComponent.SupportedFormats -- uid: System.Collections.Generic.IReadOnlyList{OpenTK.Core.Platform.ClipboardFormat} - commentId: T:System.Collections.Generic.IReadOnlyList{OpenTK.Core.Platform.ClipboardFormat} + fullName: OpenTK.Platform.IClipboardComponent.SupportedFormats +- uid: System.Collections.Generic.IReadOnlyList{OpenTK.Platform.ClipboardFormat} + commentId: T:System.Collections.Generic.IReadOnlyList{OpenTK.Platform.ClipboardFormat} parent: System.Collections.Generic definition: System.Collections.Generic.IReadOnlyList`1 href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 name: IReadOnlyList nameWithType: IReadOnlyList - fullName: System.Collections.Generic.IReadOnlyList + fullName: System.Collections.Generic.IReadOnlyList nameWithType.vb: IReadOnlyList(Of ClipboardFormat) - fullName.vb: System.Collections.Generic.IReadOnlyList(Of OpenTK.Core.Platform.ClipboardFormat) + fullName.vb: System.Collections.Generic.IReadOnlyList(Of OpenTK.Platform.ClipboardFormat) name.vb: IReadOnlyList(Of ClipboardFormat) spec.csharp: - uid: System.Collections.Generic.IReadOnlyList`1 @@ -991,9 +927,9 @@ references: isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 - name: < - - uid: OpenTK.Core.Platform.ClipboardFormat + - uid: OpenTK.Platform.ClipboardFormat name: ClipboardFormat - href: OpenTK.Core.Platform.ClipboardFormat.html + href: OpenTK.Platform.ClipboardFormat.html - name: '>' spec.vb: - uid: System.Collections.Generic.IReadOnlyList`1 @@ -1003,9 +939,9 @@ references: - name: ( - name: Of - name: " " - - uid: OpenTK.Core.Platform.ClipboardFormat + - uid: OpenTK.Platform.ClipboardFormat name: ClipboardFormat - href: OpenTK.Core.Platform.ClipboardFormat.html + href: OpenTK.Platform.ClipboardFormat.html - name: ) - uid: System.Collections.Generic.IReadOnlyList`1 commentId: T:System.Collections.Generic.IReadOnlyList`1 @@ -1078,53 +1014,53 @@ references: name: GetClipboardFormat nameWithType: MacOSClipboardComponent.GetClipboardFormat fullName: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.GetClipboardFormat -- uid: OpenTK.Core.Platform.IClipboardComponent.GetClipboardFormat - commentId: M:OpenTK.Core.Platform.IClipboardComponent.GetClipboardFormat - parent: OpenTK.Core.Platform.IClipboardComponent - href: OpenTK.Core.Platform.IClipboardComponent.html#OpenTK_Core_Platform_IClipboardComponent_GetClipboardFormat +- uid: OpenTK.Platform.IClipboardComponent.GetClipboardFormat + commentId: M:OpenTK.Platform.IClipboardComponent.GetClipboardFormat + parent: OpenTK.Platform.IClipboardComponent + href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_GetClipboardFormat name: GetClipboardFormat() nameWithType: IClipboardComponent.GetClipboardFormat() - fullName: OpenTK.Core.Platform.IClipboardComponent.GetClipboardFormat() + fullName: OpenTK.Platform.IClipboardComponent.GetClipboardFormat() spec.csharp: - - uid: OpenTK.Core.Platform.IClipboardComponent.GetClipboardFormat + - uid: OpenTK.Platform.IClipboardComponent.GetClipboardFormat name: GetClipboardFormat - href: OpenTK.Core.Platform.IClipboardComponent.html#OpenTK_Core_Platform_IClipboardComponent_GetClipboardFormat + href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_GetClipboardFormat - name: ( - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IClipboardComponent.GetClipboardFormat + - uid: OpenTK.Platform.IClipboardComponent.GetClipboardFormat name: GetClipboardFormat - href: OpenTK.Core.Platform.IClipboardComponent.html#OpenTK_Core_Platform_IClipboardComponent_GetClipboardFormat + href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_GetClipboardFormat - name: ( - name: ) -- uid: OpenTK.Core.Platform.ClipboardFormat - commentId: T:OpenTK.Core.Platform.ClipboardFormat - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.ClipboardFormat.html +- uid: OpenTK.Platform.ClipboardFormat + commentId: T:OpenTK.Platform.ClipboardFormat + parent: OpenTK.Platform + href: OpenTK.Platform.ClipboardFormat.html name: ClipboardFormat nameWithType: ClipboardFormat - fullName: OpenTK.Core.Platform.ClipboardFormat + fullName: OpenTK.Platform.ClipboardFormat - uid: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.SetClipboardText* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSClipboardComponent.SetClipboardText href: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.html#OpenTK_Platform_Native_macOS_MacOSClipboardComponent_SetClipboardText_System_String_ name: SetClipboardText nameWithType: MacOSClipboardComponent.SetClipboardText fullName: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.SetClipboardText -- uid: OpenTK.Core.Platform.IClipboardComponent.SetClipboardText(System.String) - commentId: M:OpenTK.Core.Platform.IClipboardComponent.SetClipboardText(System.String) - parent: OpenTK.Core.Platform.IClipboardComponent +- uid: OpenTK.Platform.IClipboardComponent.SetClipboardText(System.String) + commentId: M:OpenTK.Platform.IClipboardComponent.SetClipboardText(System.String) + parent: OpenTK.Platform.IClipboardComponent isExternal: true - href: OpenTK.Core.Platform.IClipboardComponent.html#OpenTK_Core_Platform_IClipboardComponent_SetClipboardText_System_String_ + href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_SetClipboardText_System_String_ name: SetClipboardText(string) nameWithType: IClipboardComponent.SetClipboardText(string) - fullName: OpenTK.Core.Platform.IClipboardComponent.SetClipboardText(string) + fullName: OpenTK.Platform.IClipboardComponent.SetClipboardText(string) nameWithType.vb: IClipboardComponent.SetClipboardText(String) - fullName.vb: OpenTK.Core.Platform.IClipboardComponent.SetClipboardText(String) + fullName.vb: OpenTK.Platform.IClipboardComponent.SetClipboardText(String) name.vb: SetClipboardText(String) spec.csharp: - - uid: OpenTK.Core.Platform.IClipboardComponent.SetClipboardText(System.String) + - uid: OpenTK.Platform.IClipboardComponent.SetClipboardText(System.String) name: SetClipboardText - href: OpenTK.Core.Platform.IClipboardComponent.html#OpenTK_Core_Platform_IClipboardComponent_SetClipboardText_System_String_ + href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_SetClipboardText_System_String_ - name: ( - uid: System.String name: string @@ -1132,157 +1068,157 @@ references: href: https://learn.microsoft.com/dotnet/api/system.string - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IClipboardComponent.SetClipboardText(System.String) + - uid: OpenTK.Platform.IClipboardComponent.SetClipboardText(System.String) name: SetClipboardText - href: OpenTK.Core.Platform.IClipboardComponent.html#OpenTK_Core_Platform_IClipboardComponent_SetClipboardText_System_String_ + href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_SetClipboardText_System_String_ - name: ( - uid: System.String name: String isExternal: true href: https://learn.microsoft.com/dotnet/api/system.string - name: ) -- uid: OpenTK.Core.Platform.ClipboardFormat.Text - commentId: F:OpenTK.Core.Platform.ClipboardFormat.Text - href: OpenTK.Core.Platform.ClipboardFormat.html#OpenTK_Core_Platform_ClipboardFormat_Text +- uid: OpenTK.Platform.ClipboardFormat.Text + commentId: F:OpenTK.Platform.ClipboardFormat.Text + href: OpenTK.Platform.ClipboardFormat.html#OpenTK_Platform_ClipboardFormat_Text name: Text nameWithType: ClipboardFormat.Text - fullName: OpenTK.Core.Platform.ClipboardFormat.Text + fullName: OpenTK.Platform.ClipboardFormat.Text - uid: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.GetClipboardText* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSClipboardComponent.GetClipboardText href: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.html#OpenTK_Platform_Native_macOS_MacOSClipboardComponent_GetClipboardText name: GetClipboardText nameWithType: MacOSClipboardComponent.GetClipboardText fullName: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.GetClipboardText -- uid: OpenTK.Core.Platform.IClipboardComponent.GetClipboardText - commentId: M:OpenTK.Core.Platform.IClipboardComponent.GetClipboardText - parent: OpenTK.Core.Platform.IClipboardComponent - href: OpenTK.Core.Platform.IClipboardComponent.html#OpenTK_Core_Platform_IClipboardComponent_GetClipboardText +- uid: OpenTK.Platform.IClipboardComponent.GetClipboardText + commentId: M:OpenTK.Platform.IClipboardComponent.GetClipboardText + parent: OpenTK.Platform.IClipboardComponent + href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_GetClipboardText name: GetClipboardText() nameWithType: IClipboardComponent.GetClipboardText() - fullName: OpenTK.Core.Platform.IClipboardComponent.GetClipboardText() + fullName: OpenTK.Platform.IClipboardComponent.GetClipboardText() spec.csharp: - - uid: OpenTK.Core.Platform.IClipboardComponent.GetClipboardText + - uid: OpenTK.Platform.IClipboardComponent.GetClipboardText name: GetClipboardText - href: OpenTK.Core.Platform.IClipboardComponent.html#OpenTK_Core_Platform_IClipboardComponent_GetClipboardText + href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_GetClipboardText - name: ( - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IClipboardComponent.GetClipboardText + - uid: OpenTK.Platform.IClipboardComponent.GetClipboardText name: GetClipboardText - href: OpenTK.Core.Platform.IClipboardComponent.html#OpenTK_Core_Platform_IClipboardComponent_GetClipboardText + href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_GetClipboardText - name: ( - name: ) -- uid: OpenTK.Core.Platform.ClipboardFormat.Audio - commentId: F:OpenTK.Core.Platform.ClipboardFormat.Audio - href: OpenTK.Core.Platform.ClipboardFormat.html#OpenTK_Core_Platform_ClipboardFormat_Audio +- uid: OpenTK.Platform.ClipboardFormat.Audio + commentId: F:OpenTK.Platform.ClipboardFormat.Audio + href: OpenTK.Platform.ClipboardFormat.html#OpenTK_Platform_ClipboardFormat_Audio name: Audio nameWithType: ClipboardFormat.Audio - fullName: OpenTK.Core.Platform.ClipboardFormat.Audio + fullName: OpenTK.Platform.ClipboardFormat.Audio - uid: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.GetClipboardAudio* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSClipboardComponent.GetClipboardAudio href: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.html#OpenTK_Platform_Native_macOS_MacOSClipboardComponent_GetClipboardAudio name: GetClipboardAudio nameWithType: MacOSClipboardComponent.GetClipboardAudio fullName: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.GetClipboardAudio -- uid: OpenTK.Core.Platform.IClipboardComponent.GetClipboardAudio - commentId: M:OpenTK.Core.Platform.IClipboardComponent.GetClipboardAudio - parent: OpenTK.Core.Platform.IClipboardComponent - href: OpenTK.Core.Platform.IClipboardComponent.html#OpenTK_Core_Platform_IClipboardComponent_GetClipboardAudio +- uid: OpenTK.Platform.IClipboardComponent.GetClipboardAudio + commentId: M:OpenTK.Platform.IClipboardComponent.GetClipboardAudio + parent: OpenTK.Platform.IClipboardComponent + href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_GetClipboardAudio name: GetClipboardAudio() nameWithType: IClipboardComponent.GetClipboardAudio() - fullName: OpenTK.Core.Platform.IClipboardComponent.GetClipboardAudio() + fullName: OpenTK.Platform.IClipboardComponent.GetClipboardAudio() spec.csharp: - - uid: OpenTK.Core.Platform.IClipboardComponent.GetClipboardAudio + - uid: OpenTK.Platform.IClipboardComponent.GetClipboardAudio name: GetClipboardAudio - href: OpenTK.Core.Platform.IClipboardComponent.html#OpenTK_Core_Platform_IClipboardComponent_GetClipboardAudio + href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_GetClipboardAudio - name: ( - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IClipboardComponent.GetClipboardAudio + - uid: OpenTK.Platform.IClipboardComponent.GetClipboardAudio name: GetClipboardAudio - href: OpenTK.Core.Platform.IClipboardComponent.html#OpenTK_Core_Platform_IClipboardComponent_GetClipboardAudio + href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_GetClipboardAudio - name: ( - name: ) -- uid: OpenTK.Core.Platform.AudioData - commentId: T:OpenTK.Core.Platform.AudioData - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.AudioData.html +- uid: OpenTK.Platform.AudioData + commentId: T:OpenTK.Platform.AudioData + parent: OpenTK.Platform + href: OpenTK.Platform.AudioData.html name: AudioData nameWithType: AudioData - fullName: OpenTK.Core.Platform.AudioData + fullName: OpenTK.Platform.AudioData - uid: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.SetClipboardBitmap* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSClipboardComponent.SetClipboardBitmap - href: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.html#OpenTK_Platform_Native_macOS_MacOSClipboardComponent_SetClipboardBitmap_OpenTK_Core_Platform_Bitmap_ + href: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.html#OpenTK_Platform_Native_macOS_MacOSClipboardComponent_SetClipboardBitmap_OpenTK_Platform_Bitmap_ name: SetClipboardBitmap nameWithType: MacOSClipboardComponent.SetClipboardBitmap fullName: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.SetClipboardBitmap -- uid: OpenTK.Core.Platform.Bitmap - commentId: T:OpenTK.Core.Platform.Bitmap - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.Bitmap.html +- uid: OpenTK.Platform.Bitmap + commentId: T:OpenTK.Platform.Bitmap + parent: OpenTK.Platform + href: OpenTK.Platform.Bitmap.html name: Bitmap nameWithType: Bitmap - fullName: OpenTK.Core.Platform.Bitmap -- uid: OpenTK.Core.Platform.ClipboardFormat.Bitmap - commentId: F:OpenTK.Core.Platform.ClipboardFormat.Bitmap - href: OpenTK.Core.Platform.ClipboardFormat.html#OpenTK_Core_Platform_ClipboardFormat_Bitmap + fullName: OpenTK.Platform.Bitmap +- uid: OpenTK.Platform.ClipboardFormat.Bitmap + commentId: F:OpenTK.Platform.ClipboardFormat.Bitmap + href: OpenTK.Platform.ClipboardFormat.html#OpenTK_Platform_ClipboardFormat_Bitmap name: Bitmap nameWithType: ClipboardFormat.Bitmap - fullName: OpenTK.Core.Platform.ClipboardFormat.Bitmap + fullName: OpenTK.Platform.ClipboardFormat.Bitmap - uid: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.GetClipboardBitmap* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSClipboardComponent.GetClipboardBitmap href: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.html#OpenTK_Platform_Native_macOS_MacOSClipboardComponent_GetClipboardBitmap name: GetClipboardBitmap nameWithType: MacOSClipboardComponent.GetClipboardBitmap fullName: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.GetClipboardBitmap -- uid: OpenTK.Core.Platform.IClipboardComponent.GetClipboardBitmap - commentId: M:OpenTK.Core.Platform.IClipboardComponent.GetClipboardBitmap - parent: OpenTK.Core.Platform.IClipboardComponent - href: OpenTK.Core.Platform.IClipboardComponent.html#OpenTK_Core_Platform_IClipboardComponent_GetClipboardBitmap +- uid: OpenTK.Platform.IClipboardComponent.GetClipboardBitmap + commentId: M:OpenTK.Platform.IClipboardComponent.GetClipboardBitmap + parent: OpenTK.Platform.IClipboardComponent + href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_GetClipboardBitmap name: GetClipboardBitmap() nameWithType: IClipboardComponent.GetClipboardBitmap() - fullName: OpenTK.Core.Platform.IClipboardComponent.GetClipboardBitmap() + fullName: OpenTK.Platform.IClipboardComponent.GetClipboardBitmap() spec.csharp: - - uid: OpenTK.Core.Platform.IClipboardComponent.GetClipboardBitmap + - uid: OpenTK.Platform.IClipboardComponent.GetClipboardBitmap name: GetClipboardBitmap - href: OpenTK.Core.Platform.IClipboardComponent.html#OpenTK_Core_Platform_IClipboardComponent_GetClipboardBitmap + href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_GetClipboardBitmap - name: ( - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IClipboardComponent.GetClipboardBitmap + - uid: OpenTK.Platform.IClipboardComponent.GetClipboardBitmap name: GetClipboardBitmap - href: OpenTK.Core.Platform.IClipboardComponent.html#OpenTK_Core_Platform_IClipboardComponent_GetClipboardBitmap + href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_GetClipboardBitmap - name: ( - name: ) -- uid: OpenTK.Core.Platform.ClipboardFormat.Files - commentId: F:OpenTK.Core.Platform.ClipboardFormat.Files - href: OpenTK.Core.Platform.ClipboardFormat.html#OpenTK_Core_Platform_ClipboardFormat_Files +- uid: OpenTK.Platform.ClipboardFormat.Files + commentId: F:OpenTK.Platform.ClipboardFormat.Files + href: OpenTK.Platform.ClipboardFormat.html#OpenTK_Platform_ClipboardFormat_Files name: Files nameWithType: ClipboardFormat.Files - fullName: OpenTK.Core.Platform.ClipboardFormat.Files + fullName: OpenTK.Platform.ClipboardFormat.Files - uid: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.GetClipboardFiles* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSClipboardComponent.GetClipboardFiles href: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.html#OpenTK_Platform_Native_macOS_MacOSClipboardComponent_GetClipboardFiles name: GetClipboardFiles nameWithType: MacOSClipboardComponent.GetClipboardFiles fullName: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.GetClipboardFiles -- uid: OpenTK.Core.Platform.IClipboardComponent.GetClipboardFiles - commentId: M:OpenTK.Core.Platform.IClipboardComponent.GetClipboardFiles - parent: OpenTK.Core.Platform.IClipboardComponent - href: OpenTK.Core.Platform.IClipboardComponent.html#OpenTK_Core_Platform_IClipboardComponent_GetClipboardFiles +- uid: OpenTK.Platform.IClipboardComponent.GetClipboardFiles + commentId: M:OpenTK.Platform.IClipboardComponent.GetClipboardFiles + parent: OpenTK.Platform.IClipboardComponent + href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_GetClipboardFiles name: GetClipboardFiles() nameWithType: IClipboardComponent.GetClipboardFiles() - fullName: OpenTK.Core.Platform.IClipboardComponent.GetClipboardFiles() + fullName: OpenTK.Platform.IClipboardComponent.GetClipboardFiles() spec.csharp: - - uid: OpenTK.Core.Platform.IClipboardComponent.GetClipboardFiles + - uid: OpenTK.Platform.IClipboardComponent.GetClipboardFiles name: GetClipboardFiles - href: OpenTK.Core.Platform.IClipboardComponent.html#OpenTK_Core_Platform_IClipboardComponent_GetClipboardFiles + href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_GetClipboardFiles - name: ( - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IClipboardComponent.GetClipboardFiles + - uid: OpenTK.Platform.IClipboardComponent.GetClipboardFiles name: GetClipboardFiles - href: OpenTK.Core.Platform.IClipboardComponent.html#OpenTK_Core_Platform_IClipboardComponent_GetClipboardFiles + href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_GetClipboardFiles - name: ( - name: ) - uid: System.Collections.Generic.List{System.String} diff --git a/api/OpenTK.Platform.Native.macOS.MacOSCursorComponent.Frame.yml b/api/OpenTK.Platform.Native.macOS.MacOSCursorComponent.Frame.yml index 8159edb1..f7e500d4 100644 --- a/api/OpenTK.Platform.Native.macOS.MacOSCursorComponent.Frame.yml +++ b/api/OpenTK.Platform.Native.macOS.MacOSCursorComponent.Frame.yml @@ -21,15 +21,11 @@ items: fullName: OpenTK.Platform.Native.macOS.MacOSCursorComponent.Frame type: Struct source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSCursorComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Frame - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSCursorComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSCursorComponent.cs startLine: 422 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS syntax: content: public struct MacOSCursorComponent.Frame @@ -53,15 +49,11 @@ items: fullName: OpenTK.Platform.Native.macOS.MacOSCursorComponent.Frame.ResX type: Field source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSCursorComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ResX - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSCursorComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSCursorComponent.cs startLine: 424 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS syntax: content: public int ResX @@ -80,15 +72,11 @@ items: fullName: OpenTK.Platform.Native.macOS.MacOSCursorComponent.Frame.ResY type: Field source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSCursorComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ResY - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSCursorComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSCursorComponent.cs startLine: 425 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS syntax: content: public int ResY @@ -107,15 +95,11 @@ items: fullName: OpenTK.Platform.Native.macOS.MacOSCursorComponent.Frame.Width type: Field source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSCursorComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Width - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSCursorComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSCursorComponent.cs startLine: 426 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS syntax: content: public float Width @@ -134,15 +118,11 @@ items: fullName: OpenTK.Platform.Native.macOS.MacOSCursorComponent.Frame.Height type: Field source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSCursorComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Height - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSCursorComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSCursorComponent.cs startLine: 427 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS syntax: content: public float Height @@ -161,15 +141,11 @@ items: fullName: OpenTK.Platform.Native.macOS.MacOSCursorComponent.Frame.HotspotX type: Field source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSCursorComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: HotspotX - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSCursorComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSCursorComponent.cs startLine: 428 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS syntax: content: public int HotspotX @@ -188,15 +164,11 @@ items: fullName: OpenTK.Platform.Native.macOS.MacOSCursorComponent.Frame.HotspotY type: Field source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSCursorComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: HotspotY - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSCursorComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSCursorComponent.cs startLine: 429 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS syntax: content: public int HotspotY @@ -215,15 +187,11 @@ items: fullName: OpenTK.Platform.Native.macOS.MacOSCursorComponent.Frame.Image type: Field source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSCursorComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Image - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSCursorComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSCursorComponent.cs startLine: 430 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS syntax: content: public byte[] Image @@ -242,15 +210,11 @@ items: fullName: OpenTK.Platform.Native.macOS.MacOSCursorComponent.Frame.Frame(int, int, byte[], int, int) type: Constructor source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSCursorComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSCursorComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSCursorComponent.cs startLine: 432 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS syntax: content: public Frame(int width, int height, byte[] image, int hotspotX, int hotspotY) diff --git a/api/OpenTK.Platform.Native.macOS.MacOSCursorComponent.yml b/api/OpenTK.Platform.Native.macOS.MacOSCursorComponent.yml index 529ae0f1..2413af84 100644 --- a/api/OpenTK.Platform.Native.macOS.MacOSCursorComponent.yml +++ b/api/OpenTK.Platform.Native.macOS.MacOSCursorComponent.yml @@ -7,20 +7,20 @@ items: children: - OpenTK.Platform.Native.macOS.MacOSCursorComponent.CanInspectSystemCursors - OpenTK.Platform.Native.macOS.MacOSCursorComponent.CanLoadSystemCursors - - OpenTK.Platform.Native.macOS.MacOSCursorComponent.Create(OpenTK.Core.Platform.SystemCursorType) - OpenTK.Platform.Native.macOS.MacOSCursorComponent.Create(OpenTK.Platform.Native.macOS.MacOSCursorComponent.Frame[],System.Single) + - OpenTK.Platform.Native.macOS.MacOSCursorComponent.Create(OpenTK.Platform.SystemCursorType) - OpenTK.Platform.Native.macOS.MacOSCursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.Int32,System.Int32) - OpenTK.Platform.Native.macOS.MacOSCursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.ReadOnlySpan{System.Byte},System.Int32,System.Int32) - - OpenTK.Platform.Native.macOS.MacOSCursorComponent.Destroy(OpenTK.Core.Platform.CursorHandle) - - OpenTK.Platform.Native.macOS.MacOSCursorComponent.GetHotspot(OpenTK.Core.Platform.CursorHandle,System.Int32@,System.Int32@) - - OpenTK.Platform.Native.macOS.MacOSCursorComponent.GetSize(OpenTK.Core.Platform.CursorHandle,System.Int32@,System.Int32@) - - OpenTK.Platform.Native.macOS.MacOSCursorComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - - OpenTK.Platform.Native.macOS.MacOSCursorComponent.IsAnimatedCursor(OpenTK.Core.Platform.CursorHandle) - - OpenTK.Platform.Native.macOS.MacOSCursorComponent.IsSystemCursor(OpenTK.Core.Platform.CursorHandle) + - OpenTK.Platform.Native.macOS.MacOSCursorComponent.Destroy(OpenTK.Platform.CursorHandle) + - OpenTK.Platform.Native.macOS.MacOSCursorComponent.GetHotspot(OpenTK.Platform.CursorHandle,System.Int32@,System.Int32@) + - OpenTK.Platform.Native.macOS.MacOSCursorComponent.GetSize(OpenTK.Platform.CursorHandle,System.Int32@,System.Int32@) + - OpenTK.Platform.Native.macOS.MacOSCursorComponent.Initialize(OpenTK.Platform.ToolkitOptions) + - OpenTK.Platform.Native.macOS.MacOSCursorComponent.IsAnimatedCursor(OpenTK.Platform.CursorHandle) + - OpenTK.Platform.Native.macOS.MacOSCursorComponent.IsSystemCursor(OpenTK.Platform.CursorHandle) - OpenTK.Platform.Native.macOS.MacOSCursorComponent.Logger - OpenTK.Platform.Native.macOS.MacOSCursorComponent.Name - OpenTK.Platform.Native.macOS.MacOSCursorComponent.Provides - - OpenTK.Platform.Native.macOS.MacOSCursorComponent.UpdateAnimation(OpenTK.Core.Platform.CursorHandle,System.Double) + - OpenTK.Platform.Native.macOS.MacOSCursorComponent.UpdateAnimation(OpenTK.Platform.CursorHandle,System.Double) langs: - csharp - vb @@ -29,15 +29,11 @@ items: fullName: OpenTK.Platform.Native.macOS.MacOSCursorComponent type: Class source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSCursorComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MacOSCursorComponent - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSCursorComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSCursorComponent.cs startLine: 13 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS syntax: content: 'public class MacOSCursorComponent : ICursorComponent, IPalComponent' @@ -45,8 +41,8 @@ items: inheritance: - System.Object implements: - - OpenTK.Core.Platform.ICursorComponent - - OpenTK.Core.Platform.IPalComponent + - OpenTK.Platform.ICursorComponent + - OpenTK.Platform.IPalComponent inheritedMembers: - System.Object.Equals(System.Object) - System.Object.Equals(System.Object,System.Object) @@ -67,15 +63,11 @@ items: fullName: OpenTK.Platform.Native.macOS.MacOSCursorComponent.Name type: Property source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSCursorComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Name - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSCursorComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSCursorComponent.cs startLine: 75 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: Name of the abstraction layer component. example: [] @@ -87,7 +79,7 @@ items: content.vb: Public ReadOnly Property Name As String overload: OpenTK.Platform.Native.macOS.MacOSCursorComponent.Name* implements: - - OpenTK.Core.Platform.IPalComponent.Name + - OpenTK.Platform.IPalComponent.Name - uid: OpenTK.Platform.Native.macOS.MacOSCursorComponent.Provides commentId: P:OpenTK.Platform.Native.macOS.MacOSCursorComponent.Provides id: Provides @@ -100,15 +92,11 @@ items: fullName: OpenTK.Platform.Native.macOS.MacOSCursorComponent.Provides type: Property source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSCursorComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Provides - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSCursorComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSCursorComponent.cs startLine: 78 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: Specifies which PAL components this object provides. example: [] @@ -116,11 +104,11 @@ items: content: public PalComponents Provides { get; } parameters: [] return: - type: OpenTK.Core.Platform.PalComponents + type: OpenTK.Platform.PalComponents content.vb: Public ReadOnly Property Provides As PalComponents overload: OpenTK.Platform.Native.macOS.MacOSCursorComponent.Provides* implements: - - OpenTK.Core.Platform.IPalComponent.Provides + - OpenTK.Platform.IPalComponent.Provides - uid: OpenTK.Platform.Native.macOS.MacOSCursorComponent.Logger commentId: P:OpenTK.Platform.Native.macOS.MacOSCursorComponent.Logger id: Logger @@ -133,15 +121,11 @@ items: fullName: OpenTK.Platform.Native.macOS.MacOSCursorComponent.Logger type: Property source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSCursorComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Logger - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSCursorComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSCursorComponent.cs startLine: 81 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: Provides a logger for this component. example: [] @@ -153,28 +137,24 @@ items: content.vb: Public Property Logger As ILogger overload: OpenTK.Platform.Native.macOS.MacOSCursorComponent.Logger* implements: - - OpenTK.Core.Platform.IPalComponent.Logger -- uid: OpenTK.Platform.Native.macOS.MacOSCursorComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - commentId: M:OpenTK.Platform.Native.macOS.MacOSCursorComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - id: Initialize(OpenTK.Core.Platform.ToolkitOptions) + - OpenTK.Platform.IPalComponent.Logger +- uid: OpenTK.Platform.Native.macOS.MacOSCursorComponent.Initialize(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Native.macOS.MacOSCursorComponent.Initialize(OpenTK.Platform.ToolkitOptions) + id: Initialize(OpenTK.Platform.ToolkitOptions) parent: OpenTK.Platform.Native.macOS.MacOSCursorComponent langs: - csharp - vb name: Initialize(ToolkitOptions) nameWithType: MacOSCursorComponent.Initialize(ToolkitOptions) - fullName: OpenTK.Platform.Native.macOS.MacOSCursorComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + fullName: OpenTK.Platform.Native.macOS.MacOSCursorComponent.Initialize(OpenTK.Platform.ToolkitOptions) type: Method source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSCursorComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Initialize - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSCursorComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSCursorComponent.cs startLine: 84 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: Initialize the component. example: [] @@ -182,12 +162,12 @@ items: content: public void Initialize(ToolkitOptions options) parameters: - id: options - type: OpenTK.Core.Platform.ToolkitOptions + type: OpenTK.Platform.ToolkitOptions description: The options to initialize the component with. content.vb: Public Sub Initialize(options As ToolkitOptions) overload: OpenTK.Platform.Native.macOS.MacOSCursorComponent.Initialize* implements: - - OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + - OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) - uid: OpenTK.Platform.Native.macOS.MacOSCursorComponent.CanLoadSystemCursors commentId: P:OpenTK.Platform.Native.macOS.MacOSCursorComponent.CanLoadSystemCursors id: CanLoadSystemCursors @@ -200,15 +180,11 @@ items: fullName: OpenTK.Platform.Native.macOS.MacOSCursorComponent.CanLoadSystemCursors type: Property source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSCursorComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CanLoadSystemCursors - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSCursorComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSCursorComponent.cs startLine: 89 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: True if the driver can load system cursors. example: [] @@ -220,10 +196,10 @@ items: content.vb: Public ReadOnly Property CanLoadSystemCursors As Boolean overload: OpenTK.Platform.Native.macOS.MacOSCursorComponent.CanLoadSystemCursors* seealso: - - linkId: OpenTK.Core.Platform.ICursorComponent.Create(OpenTK.Core.Platform.SystemCursorType) - commentId: M:OpenTK.Core.Platform.ICursorComponent.Create(OpenTK.Core.Platform.SystemCursorType) + - linkId: OpenTK.Platform.ICursorComponent.Create(OpenTK.Platform.SystemCursorType) + commentId: M:OpenTK.Platform.ICursorComponent.Create(OpenTK.Platform.SystemCursorType) implements: - - OpenTK.Core.Platform.ICursorComponent.CanLoadSystemCursors + - OpenTK.Platform.ICursorComponent.CanLoadSystemCursors - uid: OpenTK.Platform.Native.macOS.MacOSCursorComponent.CanInspectSystemCursors commentId: P:OpenTK.Platform.Native.macOS.MacOSCursorComponent.CanInspectSystemCursors id: CanInspectSystemCursors @@ -236,20 +212,16 @@ items: fullName: OpenTK.Platform.Native.macOS.MacOSCursorComponent.CanInspectSystemCursors type: Property source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSCursorComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CanInspectSystemCursors - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSCursorComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSCursorComponent.cs startLine: 92 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: >- True if the backend supports inspecting system cursor handles. - If true, functions like and works on system cursors. + If true, functions like and works on system cursors. If false, these functions will fail. example: [] @@ -261,57 +233,53 @@ items: content.vb: Public ReadOnly Property CanInspectSystemCursors As Boolean overload: OpenTK.Platform.Native.macOS.MacOSCursorComponent.CanInspectSystemCursors* seealso: - - linkId: OpenTK.Core.Platform.ICursorComponent.GetSize(OpenTK.Core.Platform.CursorHandle,System.Int32@,System.Int32@) - commentId: M:OpenTK.Core.Platform.ICursorComponent.GetSize(OpenTK.Core.Platform.CursorHandle,System.Int32@,System.Int32@) - - linkId: OpenTK.Core.Platform.ICursorComponent.GetHotspot(OpenTK.Core.Platform.CursorHandle,System.Int32@,System.Int32@) - commentId: M:OpenTK.Core.Platform.ICursorComponent.GetHotspot(OpenTK.Core.Platform.CursorHandle,System.Int32@,System.Int32@) + - linkId: OpenTK.Platform.ICursorComponent.GetSize(OpenTK.Platform.CursorHandle,System.Int32@,System.Int32@) + commentId: M:OpenTK.Platform.ICursorComponent.GetSize(OpenTK.Platform.CursorHandle,System.Int32@,System.Int32@) + - linkId: OpenTK.Platform.ICursorComponent.GetHotspot(OpenTK.Platform.CursorHandle,System.Int32@,System.Int32@) + commentId: M:OpenTK.Platform.ICursorComponent.GetHotspot(OpenTK.Platform.CursorHandle,System.Int32@,System.Int32@) implements: - - OpenTK.Core.Platform.ICursorComponent.CanInspectSystemCursors -- uid: OpenTK.Platform.Native.macOS.MacOSCursorComponent.Create(OpenTK.Core.Platform.SystemCursorType) - commentId: M:OpenTK.Platform.Native.macOS.MacOSCursorComponent.Create(OpenTK.Core.Platform.SystemCursorType) - id: Create(OpenTK.Core.Platform.SystemCursorType) + - OpenTK.Platform.ICursorComponent.CanInspectSystemCursors +- uid: OpenTK.Platform.Native.macOS.MacOSCursorComponent.Create(OpenTK.Platform.SystemCursorType) + commentId: M:OpenTK.Platform.Native.macOS.MacOSCursorComponent.Create(OpenTK.Platform.SystemCursorType) + id: Create(OpenTK.Platform.SystemCursorType) parent: OpenTK.Platform.Native.macOS.MacOSCursorComponent langs: - csharp - vb name: Create(SystemCursorType) nameWithType: MacOSCursorComponent.Create(SystemCursorType) - fullName: OpenTK.Platform.Native.macOS.MacOSCursorComponent.Create(OpenTK.Core.Platform.SystemCursorType) + fullName: OpenTK.Platform.Native.macOS.MacOSCursorComponent.Create(OpenTK.Platform.SystemCursorType) type: Method source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSCursorComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Create - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSCursorComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSCursorComponent.cs startLine: 237 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: Create a standard system cursor. - remarks: This function is only supported if is true. + remarks: This function is only supported if is true. example: [] syntax: content: public CursorHandle Create(SystemCursorType systemCursor) parameters: - id: systemCursor - type: OpenTK.Core.Platform.SystemCursorType + type: OpenTK.Platform.SystemCursorType description: Type of the standard cursor to load. return: - type: OpenTK.Core.Platform.CursorHandle + type: OpenTK.Platform.CursorHandle description: A handle to the created cursor. content.vb: Public Function Create(systemCursor As SystemCursorType) As CursorHandle overload: OpenTK.Platform.Native.macOS.MacOSCursorComponent.Create* exceptions: - - type: OpenTK.Core.Platform.PalNotImplementedException - commentId: T:OpenTK.Core.Platform.PalNotImplementedException - description: Driver does not implement this function. See . - - type: OpenTK.Core.Platform.PlatformException - commentId: T:OpenTK.Core.Platform.PlatformException + - type: OpenTK.Platform.PalNotImplementedException + commentId: T:OpenTK.Platform.PalNotImplementedException + description: Driver does not implement this function. See . + - type: OpenTK.Platform.PlatformException + commentId: T:OpenTK.Platform.PlatformException description: System does not provide cursor type selected by systemCursor. implements: - - OpenTK.Core.Platform.ICursorComponent.Create(OpenTK.Core.Platform.SystemCursorType) + - OpenTK.Platform.ICursorComponent.Create(OpenTK.Platform.SystemCursorType) - uid: OpenTK.Platform.Native.macOS.MacOSCursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.Int32,System.Int32) commentId: M:OpenTK.Platform.Native.macOS.MacOSCursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.Int32,System.Int32) id: Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.Int32,System.Int32) @@ -324,15 +292,11 @@ items: fullName: OpenTK.Platform.Native.macOS.MacOSCursorComponent.Create(int, int, System.ReadOnlySpan, int, int) type: Method source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSCursorComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Create - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSCursorComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSCursorComponent.cs startLine: 396 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: Load a cursor image from memory. example: [] @@ -355,7 +319,7 @@ items: type: System.Int32 description: The y coordinate of the cursor hotspot. return: - type: OpenTK.Core.Platform.CursorHandle + type: OpenTK.Platform.CursorHandle description: A handle to the created cursor. content.vb: Public Function Create(width As Integer, height As Integer, image As ReadOnlySpan(Of Byte), hotspotX As Integer, hotspotY As Integer) As CursorHandle overload: OpenTK.Platform.Native.macOS.MacOSCursorComponent.Create* @@ -367,7 +331,7 @@ items: commentId: T:System.ArgumentException description: image is smaller than specified dimensions. implements: - - OpenTK.Core.Platform.ICursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.Int32,System.Int32) + - OpenTK.Platform.ICursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.Int32,System.Int32) nameWithType.vb: MacOSCursorComponent.Create(Integer, Integer, ReadOnlySpan(Of Byte), Integer, Integer) fullName.vb: OpenTK.Platform.Native.macOS.MacOSCursorComponent.Create(Integer, Integer, System.ReadOnlySpan(Of Byte), Integer, Integer) name.vb: Create(Integer, Integer, ReadOnlySpan(Of Byte), Integer, Integer) @@ -383,15 +347,11 @@ items: fullName: OpenTK.Platform.Native.macOS.MacOSCursorComponent.Create(int, int, System.ReadOnlySpan, System.ReadOnlySpan, int, int) type: Method source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSCursorComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Create - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSCursorComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSCursorComponent.cs startLine: 406 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: Load a cursor image from memory. example: [] @@ -417,7 +377,7 @@ items: type: System.Int32 description: The y coordinate of the cursor hotspot. return: - type: OpenTK.Core.Platform.CursorHandle + type: OpenTK.Platform.CursorHandle description: A handle to the created handle. content.vb: Public Function Create(width As Integer, height As Integer, colorData As ReadOnlySpan(Of Byte), maskData As ReadOnlySpan(Of Byte), hotspotX As Integer, hotspotY As Integer) As CursorHandle overload: OpenTK.Platform.Native.macOS.MacOSCursorComponent.Create* @@ -429,7 +389,7 @@ items: commentId: T:System.ArgumentException description: colorData or maskData is smaller than specified dimensions. implements: - - OpenTK.Core.Platform.ICursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.ReadOnlySpan{System.Byte},System.Int32,System.Int32) + - OpenTK.Platform.ICursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.ReadOnlySpan{System.Byte},System.Int32,System.Int32) nameWithType.vb: MacOSCursorComponent.Create(Integer, Integer, ReadOnlySpan(Of Byte), ReadOnlySpan(Of Byte), Integer, Integer) fullName.vb: OpenTK.Platform.Native.macOS.MacOSCursorComponent.Create(Integer, Integer, System.ReadOnlySpan(Of Byte), System.ReadOnlySpan(Of Byte), Integer, Integer) name.vb: Create(Integer, Integer, ReadOnlySpan(Of Byte), ReadOnlySpan(Of Byte), Integer, Integer) @@ -445,15 +405,11 @@ items: fullName: OpenTK.Platform.Native.macOS.MacOSCursorComponent.Create(OpenTK.Platform.Native.macOS.MacOSCursorComponent.Frame[], float) type: Method source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSCursorComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Create - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSCursorComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSCursorComponent.cs startLine: 448 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: Creates an animated cursor from a collection of frames. example: [] @@ -467,34 +423,30 @@ items: type: System.Single description: The delay in seconds between frames of the animation. return: - type: OpenTK.Core.Platform.CursorHandle + type: OpenTK.Platform.CursorHandle description: The created animated cursor. content.vb: Public Function Create(frames As MacOSCursorComponent.Frame(), delay As Single) As CursorHandle overload: OpenTK.Platform.Native.macOS.MacOSCursorComponent.Create* nameWithType.vb: MacOSCursorComponent.Create(MacOSCursorComponent.Frame(), Single) fullName.vb: OpenTK.Platform.Native.macOS.MacOSCursorComponent.Create(OpenTK.Platform.Native.macOS.MacOSCursorComponent.Frame(), Single) name.vb: Create(Frame(), Single) -- uid: OpenTK.Platform.Native.macOS.MacOSCursorComponent.Destroy(OpenTK.Core.Platform.CursorHandle) - commentId: M:OpenTK.Platform.Native.macOS.MacOSCursorComponent.Destroy(OpenTK.Core.Platform.CursorHandle) - id: Destroy(OpenTK.Core.Platform.CursorHandle) +- uid: OpenTK.Platform.Native.macOS.MacOSCursorComponent.Destroy(OpenTK.Platform.CursorHandle) + commentId: M:OpenTK.Platform.Native.macOS.MacOSCursorComponent.Destroy(OpenTK.Platform.CursorHandle) + id: Destroy(OpenTK.Platform.CursorHandle) parent: OpenTK.Platform.Native.macOS.MacOSCursorComponent langs: - csharp - vb name: Destroy(CursorHandle) nameWithType: MacOSCursorComponent.Destroy(CursorHandle) - fullName: OpenTK.Platform.Native.macOS.MacOSCursorComponent.Destroy(OpenTK.Core.Platform.CursorHandle) + fullName: OpenTK.Platform.Native.macOS.MacOSCursorComponent.Destroy(OpenTK.Platform.CursorHandle) type: Method source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSCursorComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Destroy - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSCursorComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSCursorComponent.cs startLine: 463 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: Destroy a cursor object. example: [] @@ -502,7 +454,7 @@ items: content: public void Destroy(CursorHandle handle) parameters: - id: handle - type: OpenTK.Core.Platform.CursorHandle + type: OpenTK.Platform.CursorHandle description: Handle to a cursor object. content.vb: Public Sub Destroy(handle As CursorHandle) overload: OpenTK.Platform.Native.macOS.MacOSCursorComponent.Destroy* @@ -511,28 +463,24 @@ items: commentId: T:System.ArgumentNullException description: handle is null. implements: - - OpenTK.Core.Platform.ICursorComponent.Destroy(OpenTK.Core.Platform.CursorHandle) -- uid: OpenTK.Platform.Native.macOS.MacOSCursorComponent.IsSystemCursor(OpenTK.Core.Platform.CursorHandle) - commentId: M:OpenTK.Platform.Native.macOS.MacOSCursorComponent.IsSystemCursor(OpenTK.Core.Platform.CursorHandle) - id: IsSystemCursor(OpenTK.Core.Platform.CursorHandle) + - OpenTK.Platform.ICursorComponent.Destroy(OpenTK.Platform.CursorHandle) +- uid: OpenTK.Platform.Native.macOS.MacOSCursorComponent.IsSystemCursor(OpenTK.Platform.CursorHandle) + commentId: M:OpenTK.Platform.Native.macOS.MacOSCursorComponent.IsSystemCursor(OpenTK.Platform.CursorHandle) + id: IsSystemCursor(OpenTK.Platform.CursorHandle) parent: OpenTK.Platform.Native.macOS.MacOSCursorComponent langs: - csharp - vb name: IsSystemCursor(CursorHandle) nameWithType: MacOSCursorComponent.IsSystemCursor(CursorHandle) - fullName: OpenTK.Platform.Native.macOS.MacOSCursorComponent.IsSystemCursor(OpenTK.Core.Platform.CursorHandle) + fullName: OpenTK.Platform.Native.macOS.MacOSCursorComponent.IsSystemCursor(OpenTK.Platform.CursorHandle) type: Method source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSCursorComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: IsSystemCursor - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSCursorComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSCursorComponent.cs startLine: 492 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: Returns true if this cursor is a system cursor. example: [] @@ -540,7 +488,7 @@ items: content: public bool IsSystemCursor(CursorHandle handle) parameters: - id: handle - type: OpenTK.Core.Platform.CursorHandle + type: OpenTK.Platform.CursorHandle description: Handle to a cursor. return: type: System.Boolean @@ -548,31 +496,27 @@ items: content.vb: Public Function IsSystemCursor(handle As CursorHandle) As Boolean overload: OpenTK.Platform.Native.macOS.MacOSCursorComponent.IsSystemCursor* seealso: - - linkId: OpenTK.Core.Platform.ICursorComponent.Create(OpenTK.Core.Platform.SystemCursorType) - commentId: M:OpenTK.Core.Platform.ICursorComponent.Create(OpenTK.Core.Platform.SystemCursorType) + - linkId: OpenTK.Platform.ICursorComponent.Create(OpenTK.Platform.SystemCursorType) + commentId: M:OpenTK.Platform.ICursorComponent.Create(OpenTK.Platform.SystemCursorType) implements: - - OpenTK.Core.Platform.ICursorComponent.IsSystemCursor(OpenTK.Core.Platform.CursorHandle) -- uid: OpenTK.Platform.Native.macOS.MacOSCursorComponent.IsAnimatedCursor(OpenTK.Core.Platform.CursorHandle) - commentId: M:OpenTK.Platform.Native.macOS.MacOSCursorComponent.IsAnimatedCursor(OpenTK.Core.Platform.CursorHandle) - id: IsAnimatedCursor(OpenTK.Core.Platform.CursorHandle) + - OpenTK.Platform.ICursorComponent.IsSystemCursor(OpenTK.Platform.CursorHandle) +- uid: OpenTK.Platform.Native.macOS.MacOSCursorComponent.IsAnimatedCursor(OpenTK.Platform.CursorHandle) + commentId: M:OpenTK.Platform.Native.macOS.MacOSCursorComponent.IsAnimatedCursor(OpenTK.Platform.CursorHandle) + id: IsAnimatedCursor(OpenTK.Platform.CursorHandle) parent: OpenTK.Platform.Native.macOS.MacOSCursorComponent langs: - csharp - vb name: IsAnimatedCursor(CursorHandle) nameWithType: MacOSCursorComponent.IsAnimatedCursor(CursorHandle) - fullName: OpenTK.Platform.Native.macOS.MacOSCursorComponent.IsAnimatedCursor(OpenTK.Core.Platform.CursorHandle) + fullName: OpenTK.Platform.Native.macOS.MacOSCursorComponent.IsAnimatedCursor(OpenTK.Platform.CursorHandle) type: Method source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSCursorComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: IsAnimatedCursor - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSCursorComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSCursorComponent.cs startLine: 512 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: Returns true if the cursor is an animated cursor. example: [] @@ -580,43 +524,39 @@ items: content: public bool IsAnimatedCursor(CursorHandle handle) parameters: - id: handle - type: OpenTK.Core.Platform.CursorHandle + type: OpenTK.Platform.CursorHandle description: The cursor to check if it is an animated return: type: System.Boolean description: True if the cursor is animated, false otherwise. content.vb: Public Function IsAnimatedCursor(handle As CursorHandle) As Boolean overload: OpenTK.Platform.Native.macOS.MacOSCursorComponent.IsAnimatedCursor* -- uid: OpenTK.Platform.Native.macOS.MacOSCursorComponent.GetSize(OpenTK.Core.Platform.CursorHandle,System.Int32@,System.Int32@) - commentId: M:OpenTK.Platform.Native.macOS.MacOSCursorComponent.GetSize(OpenTK.Core.Platform.CursorHandle,System.Int32@,System.Int32@) - id: GetSize(OpenTK.Core.Platform.CursorHandle,System.Int32@,System.Int32@) +- uid: OpenTK.Platform.Native.macOS.MacOSCursorComponent.GetSize(OpenTK.Platform.CursorHandle,System.Int32@,System.Int32@) + commentId: M:OpenTK.Platform.Native.macOS.MacOSCursorComponent.GetSize(OpenTK.Platform.CursorHandle,System.Int32@,System.Int32@) + id: GetSize(OpenTK.Platform.CursorHandle,System.Int32@,System.Int32@) parent: OpenTK.Platform.Native.macOS.MacOSCursorComponent langs: - csharp - vb name: GetSize(CursorHandle, out int, out int) nameWithType: MacOSCursorComponent.GetSize(CursorHandle, out int, out int) - fullName: OpenTK.Platform.Native.macOS.MacOSCursorComponent.GetSize(OpenTK.Core.Platform.CursorHandle, out int, out int) + fullName: OpenTK.Platform.Native.macOS.MacOSCursorComponent.GetSize(OpenTK.Platform.CursorHandle, out int, out int) type: Method source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSCursorComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetSize - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSCursorComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSCursorComponent.cs startLine: 528 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: Get the size of the cursor image. - remarks: If handle is a system cursor and is false this function will fail. + remarks: If handle is a system cursor and is false this function will fail. example: [] syntax: content: public void GetSize(CursorHandle handle, out int width, out int height) parameters: - id: handle - type: OpenTK.Core.Platform.CursorHandle + type: OpenTK.Platform.CursorHandle description: Handle to a cursor object. - id: width type: System.Int32 @@ -631,48 +571,44 @@ items: commentId: T:System.ArgumentNullException description: handle is null. seealso: - - linkId: OpenTK.Core.Platform.ICursorComponent.IsSystemCursor(OpenTK.Core.Platform.CursorHandle) - commentId: M:OpenTK.Core.Platform.ICursorComponent.IsSystemCursor(OpenTK.Core.Platform.CursorHandle) - - linkId: OpenTK.Core.Platform.ICursorComponent.CanInspectSystemCursors - commentId: P:OpenTK.Core.Platform.ICursorComponent.CanInspectSystemCursors + - linkId: OpenTK.Platform.ICursorComponent.IsSystemCursor(OpenTK.Platform.CursorHandle) + commentId: M:OpenTK.Platform.ICursorComponent.IsSystemCursor(OpenTK.Platform.CursorHandle) + - linkId: OpenTK.Platform.ICursorComponent.CanInspectSystemCursors + commentId: P:OpenTK.Platform.ICursorComponent.CanInspectSystemCursors implements: - - OpenTK.Core.Platform.ICursorComponent.GetSize(OpenTK.Core.Platform.CursorHandle,System.Int32@,System.Int32@) + - OpenTK.Platform.ICursorComponent.GetSize(OpenTK.Platform.CursorHandle,System.Int32@,System.Int32@) nameWithType.vb: MacOSCursorComponent.GetSize(CursorHandle, Integer, Integer) - fullName.vb: OpenTK.Platform.Native.macOS.MacOSCursorComponent.GetSize(OpenTK.Core.Platform.CursorHandle, Integer, Integer) + fullName.vb: OpenTK.Platform.Native.macOS.MacOSCursorComponent.GetSize(OpenTK.Platform.CursorHandle, Integer, Integer) name.vb: GetSize(CursorHandle, Integer, Integer) -- uid: OpenTK.Platform.Native.macOS.MacOSCursorComponent.GetHotspot(OpenTK.Core.Platform.CursorHandle,System.Int32@,System.Int32@) - commentId: M:OpenTK.Platform.Native.macOS.MacOSCursorComponent.GetHotspot(OpenTK.Core.Platform.CursorHandle,System.Int32@,System.Int32@) - id: GetHotspot(OpenTK.Core.Platform.CursorHandle,System.Int32@,System.Int32@) +- uid: OpenTK.Platform.Native.macOS.MacOSCursorComponent.GetHotspot(OpenTK.Platform.CursorHandle,System.Int32@,System.Int32@) + commentId: M:OpenTK.Platform.Native.macOS.MacOSCursorComponent.GetHotspot(OpenTK.Platform.CursorHandle,System.Int32@,System.Int32@) + id: GetHotspot(OpenTK.Platform.CursorHandle,System.Int32@,System.Int32@) parent: OpenTK.Platform.Native.macOS.MacOSCursorComponent langs: - csharp - vb name: GetHotspot(CursorHandle, out int, out int) nameWithType: MacOSCursorComponent.GetHotspot(CursorHandle, out int, out int) - fullName: OpenTK.Platform.Native.macOS.MacOSCursorComponent.GetHotspot(OpenTK.Core.Platform.CursorHandle, out int, out int) + fullName: OpenTK.Platform.Native.macOS.MacOSCursorComponent.GetHotspot(OpenTK.Platform.CursorHandle, out int, out int) type: Method source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSCursorComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetHotspot - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSCursorComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSCursorComponent.cs startLine: 582 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: >- Get the hotspot location of the mouse cursor. - Getting the hotspot of a system cursor is not guaranteed to be possible, check before trying. - remarks: If handle is a system cursor and is false this function will fail. + Getting the hotspot of a system cursor is not guaranteed to be possible, check before trying. + remarks: If handle is a system cursor and is false this function will fail. example: [] syntax: content: public void GetHotspot(CursorHandle handle, out int x, out int y) parameters: - id: handle - type: OpenTK.Core.Platform.CursorHandle + type: OpenTK.Platform.CursorHandle description: Handle to a cursor object. - id: x type: System.Int32 @@ -687,41 +623,37 @@ items: commentId: T:System.ArgumentNullException description: handle is null. seealso: - - linkId: OpenTK.Core.Platform.ICursorComponent.IsSystemCursor(OpenTK.Core.Platform.CursorHandle) - commentId: M:OpenTK.Core.Platform.ICursorComponent.IsSystemCursor(OpenTK.Core.Platform.CursorHandle) - - linkId: OpenTK.Core.Platform.ICursorComponent.CanInspectSystemCursors - commentId: P:OpenTK.Core.Platform.ICursorComponent.CanInspectSystemCursors + - linkId: OpenTK.Platform.ICursorComponent.IsSystemCursor(OpenTK.Platform.CursorHandle) + commentId: M:OpenTK.Platform.ICursorComponent.IsSystemCursor(OpenTK.Platform.CursorHandle) + - linkId: OpenTK.Platform.ICursorComponent.CanInspectSystemCursors + commentId: P:OpenTK.Platform.ICursorComponent.CanInspectSystemCursors implements: - - OpenTK.Core.Platform.ICursorComponent.GetHotspot(OpenTK.Core.Platform.CursorHandle,System.Int32@,System.Int32@) + - OpenTK.Platform.ICursorComponent.GetHotspot(OpenTK.Platform.CursorHandle,System.Int32@,System.Int32@) nameWithType.vb: MacOSCursorComponent.GetHotspot(CursorHandle, Integer, Integer) - fullName.vb: OpenTK.Platform.Native.macOS.MacOSCursorComponent.GetHotspot(OpenTK.Core.Platform.CursorHandle, Integer, Integer) + fullName.vb: OpenTK.Platform.Native.macOS.MacOSCursorComponent.GetHotspot(OpenTK.Platform.CursorHandle, Integer, Integer) name.vb: GetHotspot(CursorHandle, Integer, Integer) -- uid: OpenTK.Platform.Native.macOS.MacOSCursorComponent.UpdateAnimation(OpenTK.Core.Platform.CursorHandle,System.Double) - commentId: M:OpenTK.Platform.Native.macOS.MacOSCursorComponent.UpdateAnimation(OpenTK.Core.Platform.CursorHandle,System.Double) - id: UpdateAnimation(OpenTK.Core.Platform.CursorHandle,System.Double) +- uid: OpenTK.Platform.Native.macOS.MacOSCursorComponent.UpdateAnimation(OpenTK.Platform.CursorHandle,System.Double) + commentId: M:OpenTK.Platform.Native.macOS.MacOSCursorComponent.UpdateAnimation(OpenTK.Platform.CursorHandle,System.Double) + id: UpdateAnimation(OpenTK.Platform.CursorHandle,System.Double) parent: OpenTK.Platform.Native.macOS.MacOSCursorComponent langs: - csharp - vb name: UpdateAnimation(CursorHandle, double) nameWithType: MacOSCursorComponent.UpdateAnimation(CursorHandle, double) - fullName: OpenTK.Platform.Native.macOS.MacOSCursorComponent.UpdateAnimation(OpenTK.Core.Platform.CursorHandle, double) + fullName: OpenTK.Platform.Native.macOS.MacOSCursorComponent.UpdateAnimation(OpenTK.Platform.CursorHandle, double) type: Method source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSCursorComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: UpdateAnimation - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSCursorComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSCursorComponent.cs startLine: 611 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: >- Updates the animation of an animated cursor. - When animated cursors change frame needs to be called to properly animate. + When animated cursors change frame needs to be called to properly animate. This function returns true if the cursor needs to be set again. example: [] @@ -729,18 +661,18 @@ items: content: public bool UpdateAnimation(CursorHandle handle, double deltaTime) parameters: - id: handle - type: OpenTK.Core.Platform.CursorHandle + type: OpenTK.Platform.CursorHandle description: An animated cursor to update. - id: deltaTime type: System.Double description: The amount of time to advance the cursor animation. return: type: System.Boolean - description: True if the cursor frame has changed and needs to be called for the cursor to update, false otherwise. + description: True if the cursor frame has changed and needs to be called for the cursor to update, false otherwise. content.vb: Public Function UpdateAnimation(handle As CursorHandle, deltaTime As Double) As Boolean overload: OpenTK.Platform.Native.macOS.MacOSCursorComponent.UpdateAnimation* nameWithType.vb: MacOSCursorComponent.UpdateAnimation(CursorHandle, Double) - fullName.vb: OpenTK.Platform.Native.macOS.MacOSCursorComponent.UpdateAnimation(OpenTK.Core.Platform.CursorHandle, Double) + fullName.vb: OpenTK.Platform.Native.macOS.MacOSCursorComponent.UpdateAnimation(OpenTK.Platform.CursorHandle, Double) name.vb: UpdateAnimation(CursorHandle, Double) references: - uid: OpenTK.Platform.Native.macOS @@ -792,20 +724,20 @@ references: nameWithType.vb: Object fullName.vb: Object name.vb: Object -- uid: OpenTK.Core.Platform.ICursorComponent - commentId: T:OpenTK.Core.Platform.ICursorComponent - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.ICursorComponent.html +- uid: OpenTK.Platform.ICursorComponent + commentId: T:OpenTK.Platform.ICursorComponent + parent: OpenTK.Platform + href: OpenTK.Platform.ICursorComponent.html name: ICursorComponent nameWithType: ICursorComponent - fullName: OpenTK.Core.Platform.ICursorComponent -- uid: OpenTK.Core.Platform.IPalComponent - commentId: T:OpenTK.Core.Platform.IPalComponent - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.IPalComponent.html + fullName: OpenTK.Platform.ICursorComponent +- uid: OpenTK.Platform.IPalComponent + commentId: T:OpenTK.Platform.IPalComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IPalComponent.html name: IPalComponent nameWithType: IPalComponent - fullName: OpenTK.Core.Platform.IPalComponent + fullName: OpenTK.Platform.IPalComponent - uid: System.Object.Equals(System.Object) commentId: M:System.Object.Equals(System.Object) parent: System.Object @@ -1032,49 +964,41 @@ references: name: System nameWithType: System fullName: System -- uid: OpenTK.Core.Platform - commentId: N:OpenTK.Core.Platform +- uid: OpenTK.Platform + commentId: N:OpenTK.Platform href: OpenTK.html - name: OpenTK.Core.Platform - nameWithType: OpenTK.Core.Platform - fullName: OpenTK.Core.Platform + name: OpenTK.Platform + nameWithType: OpenTK.Platform + fullName: OpenTK.Platform spec.csharp: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html spec.vb: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html - uid: OpenTK.Platform.Native.macOS.MacOSCursorComponent.Name* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSCursorComponent.Name href: OpenTK.Platform.Native.macOS.MacOSCursorComponent.html#OpenTK_Platform_Native_macOS_MacOSCursorComponent_Name name: Name nameWithType: MacOSCursorComponent.Name fullName: OpenTK.Platform.Native.macOS.MacOSCursorComponent.Name -- uid: OpenTK.Core.Platform.IPalComponent.Name - commentId: P:OpenTK.Core.Platform.IPalComponent.Name - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Name +- uid: OpenTK.Platform.IPalComponent.Name + commentId: P:OpenTK.Platform.IPalComponent.Name + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Name name: Name nameWithType: IPalComponent.Name - fullName: OpenTK.Core.Platform.IPalComponent.Name + fullName: OpenTK.Platform.IPalComponent.Name - uid: System.String commentId: T:System.String parent: System @@ -1092,33 +1016,33 @@ references: name: Provides nameWithType: MacOSCursorComponent.Provides fullName: OpenTK.Platform.Native.macOS.MacOSCursorComponent.Provides -- uid: OpenTK.Core.Platform.IPalComponent.Provides - commentId: P:OpenTK.Core.Platform.IPalComponent.Provides - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Provides +- uid: OpenTK.Platform.IPalComponent.Provides + commentId: P:OpenTK.Platform.IPalComponent.Provides + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Provides name: Provides nameWithType: IPalComponent.Provides - fullName: OpenTK.Core.Platform.IPalComponent.Provides -- uid: OpenTK.Core.Platform.PalComponents - commentId: T:OpenTK.Core.Platform.PalComponents - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.PalComponents.html + fullName: OpenTK.Platform.IPalComponent.Provides +- uid: OpenTK.Platform.PalComponents + commentId: T:OpenTK.Platform.PalComponents + parent: OpenTK.Platform + href: OpenTK.Platform.PalComponents.html name: PalComponents nameWithType: PalComponents - fullName: OpenTK.Core.Platform.PalComponents + fullName: OpenTK.Platform.PalComponents - uid: OpenTK.Platform.Native.macOS.MacOSCursorComponent.Logger* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSCursorComponent.Logger href: OpenTK.Platform.Native.macOS.MacOSCursorComponent.html#OpenTK_Platform_Native_macOS_MacOSCursorComponent_Logger name: Logger nameWithType: MacOSCursorComponent.Logger fullName: OpenTK.Platform.Native.macOS.MacOSCursorComponent.Logger -- uid: OpenTK.Core.Platform.IPalComponent.Logger - commentId: P:OpenTK.Core.Platform.IPalComponent.Logger - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Logger +- uid: OpenTK.Platform.IPalComponent.Logger + commentId: P:OpenTK.Platform.IPalComponent.Logger + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Logger name: Logger nameWithType: IPalComponent.Logger - fullName: OpenTK.Core.Platform.IPalComponent.Logger + fullName: OpenTK.Platform.IPalComponent.Logger - uid: OpenTK.Core.Utility.ILogger commentId: T:OpenTK.Core.Utility.ILogger parent: OpenTK.Core.Utility @@ -1158,66 +1082,66 @@ references: href: OpenTK.Core.Utility.html - uid: OpenTK.Platform.Native.macOS.MacOSCursorComponent.Initialize* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSCursorComponent.Initialize - href: OpenTK.Platform.Native.macOS.MacOSCursorComponent.html#OpenTK_Platform_Native_macOS_MacOSCursorComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + href: OpenTK.Platform.Native.macOS.MacOSCursorComponent.html#OpenTK_Platform_Native_macOS_MacOSCursorComponent_Initialize_OpenTK_Platform_ToolkitOptions_ name: Initialize nameWithType: MacOSCursorComponent.Initialize fullName: OpenTK.Platform.Native.macOS.MacOSCursorComponent.Initialize -- uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - commentId: M:OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ +- uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ name: Initialize(ToolkitOptions) nameWithType: IPalComponent.Initialize(ToolkitOptions) - fullName: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + fullName: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) spec.csharp: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + - uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.ToolkitOptions + - uid: OpenTK.Platform.ToolkitOptions name: ToolkitOptions - href: OpenTK.Core.Platform.ToolkitOptions.html + href: OpenTK.Platform.ToolkitOptions.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + - uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.ToolkitOptions + - uid: OpenTK.Platform.ToolkitOptions name: ToolkitOptions - href: OpenTK.Core.Platform.ToolkitOptions.html + href: OpenTK.Platform.ToolkitOptions.html - name: ) -- uid: OpenTK.Core.Platform.ToolkitOptions - commentId: T:OpenTK.Core.Platform.ToolkitOptions - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.ToolkitOptions.html +- uid: OpenTK.Platform.ToolkitOptions + commentId: T:OpenTK.Platform.ToolkitOptions + parent: OpenTK.Platform + href: OpenTK.Platform.ToolkitOptions.html name: ToolkitOptions nameWithType: ToolkitOptions - fullName: OpenTK.Core.Platform.ToolkitOptions -- uid: OpenTK.Core.Platform.ICursorComponent.Create(OpenTK.Core.Platform.SystemCursorType) - commentId: M:OpenTK.Core.Platform.ICursorComponent.Create(OpenTK.Core.Platform.SystemCursorType) - parent: OpenTK.Core.Platform.ICursorComponent - href: OpenTK.Core.Platform.ICursorComponent.html#OpenTK_Core_Platform_ICursorComponent_Create_OpenTK_Core_Platform_SystemCursorType_ + fullName: OpenTK.Platform.ToolkitOptions +- uid: OpenTK.Platform.ICursorComponent.Create(OpenTK.Platform.SystemCursorType) + commentId: M:OpenTK.Platform.ICursorComponent.Create(OpenTK.Platform.SystemCursorType) + parent: OpenTK.Platform.ICursorComponent + href: OpenTK.Platform.ICursorComponent.html#OpenTK_Platform_ICursorComponent_Create_OpenTK_Platform_SystemCursorType_ name: Create(SystemCursorType) nameWithType: ICursorComponent.Create(SystemCursorType) - fullName: OpenTK.Core.Platform.ICursorComponent.Create(OpenTK.Core.Platform.SystemCursorType) + fullName: OpenTK.Platform.ICursorComponent.Create(OpenTK.Platform.SystemCursorType) spec.csharp: - - uid: OpenTK.Core.Platform.ICursorComponent.Create(OpenTK.Core.Platform.SystemCursorType) + - uid: OpenTK.Platform.ICursorComponent.Create(OpenTK.Platform.SystemCursorType) name: Create - href: OpenTK.Core.Platform.ICursorComponent.html#OpenTK_Core_Platform_ICursorComponent_Create_OpenTK_Core_Platform_SystemCursorType_ + href: OpenTK.Platform.ICursorComponent.html#OpenTK_Platform_ICursorComponent_Create_OpenTK_Platform_SystemCursorType_ - name: ( - - uid: OpenTK.Core.Platform.SystemCursorType + - uid: OpenTK.Platform.SystemCursorType name: SystemCursorType - href: OpenTK.Core.Platform.SystemCursorType.html + href: OpenTK.Platform.SystemCursorType.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.ICursorComponent.Create(OpenTK.Core.Platform.SystemCursorType) + - uid: OpenTK.Platform.ICursorComponent.Create(OpenTK.Platform.SystemCursorType) name: Create - href: OpenTK.Core.Platform.ICursorComponent.html#OpenTK_Core_Platform_ICursorComponent_Create_OpenTK_Core_Platform_SystemCursorType_ + href: OpenTK.Platform.ICursorComponent.html#OpenTK_Platform_ICursorComponent_Create_OpenTK_Platform_SystemCursorType_ - name: ( - - uid: OpenTK.Core.Platform.SystemCursorType + - uid: OpenTK.Platform.SystemCursorType name: SystemCursorType - href: OpenTK.Core.Platform.SystemCursorType.html + href: OpenTK.Platform.SystemCursorType.html - name: ) - uid: OpenTK.Platform.Native.macOS.MacOSCursorComponent.CanLoadSystemCursors* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSCursorComponent.CanLoadSystemCursors @@ -1225,13 +1149,13 @@ references: name: CanLoadSystemCursors nameWithType: MacOSCursorComponent.CanLoadSystemCursors fullName: OpenTK.Platform.Native.macOS.MacOSCursorComponent.CanLoadSystemCursors -- uid: OpenTK.Core.Platform.ICursorComponent.CanLoadSystemCursors - commentId: P:OpenTK.Core.Platform.ICursorComponent.CanLoadSystemCursors - parent: OpenTK.Core.Platform.ICursorComponent - href: OpenTK.Core.Platform.ICursorComponent.html#OpenTK_Core_Platform_ICursorComponent_CanLoadSystemCursors +- uid: OpenTK.Platform.ICursorComponent.CanLoadSystemCursors + commentId: P:OpenTK.Platform.ICursorComponent.CanLoadSystemCursors + parent: OpenTK.Platform.ICursorComponent + href: OpenTK.Platform.ICursorComponent.html#OpenTK_Platform_ICursorComponent_CanLoadSystemCursors name: CanLoadSystemCursors nameWithType: ICursorComponent.CanLoadSystemCursors - fullName: OpenTK.Core.Platform.ICursorComponent.CanLoadSystemCursors + fullName: OpenTK.Platform.ICursorComponent.CanLoadSystemCursors - uid: System.Boolean commentId: T:System.Boolean parent: System @@ -1243,25 +1167,25 @@ references: nameWithType.vb: Boolean fullName.vb: Boolean name.vb: Boolean -- uid: OpenTK.Core.Platform.ICursorComponent.GetSize(OpenTK.Core.Platform.CursorHandle,System.Int32@,System.Int32@) - commentId: M:OpenTK.Core.Platform.ICursorComponent.GetSize(OpenTK.Core.Platform.CursorHandle,System.Int32@,System.Int32@) - parent: OpenTK.Core.Platform.ICursorComponent +- uid: OpenTK.Platform.ICursorComponent.GetSize(OpenTK.Platform.CursorHandle,System.Int32@,System.Int32@) + commentId: M:OpenTK.Platform.ICursorComponent.GetSize(OpenTK.Platform.CursorHandle,System.Int32@,System.Int32@) + parent: OpenTK.Platform.ICursorComponent isExternal: true - href: OpenTK.Core.Platform.ICursorComponent.html#OpenTK_Core_Platform_ICursorComponent_GetSize_OpenTK_Core_Platform_CursorHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.ICursorComponent.html#OpenTK_Platform_ICursorComponent_GetSize_OpenTK_Platform_CursorHandle_System_Int32__System_Int32__ name: GetSize(CursorHandle, out int, out int) nameWithType: ICursorComponent.GetSize(CursorHandle, out int, out int) - fullName: OpenTK.Core.Platform.ICursorComponent.GetSize(OpenTK.Core.Platform.CursorHandle, out int, out int) + fullName: OpenTK.Platform.ICursorComponent.GetSize(OpenTK.Platform.CursorHandle, out int, out int) nameWithType.vb: ICursorComponent.GetSize(CursorHandle, Integer, Integer) - fullName.vb: OpenTK.Core.Platform.ICursorComponent.GetSize(OpenTK.Core.Platform.CursorHandle, Integer, Integer) + fullName.vb: OpenTK.Platform.ICursorComponent.GetSize(OpenTK.Platform.CursorHandle, Integer, Integer) name.vb: GetSize(CursorHandle, Integer, Integer) spec.csharp: - - uid: OpenTK.Core.Platform.ICursorComponent.GetSize(OpenTK.Core.Platform.CursorHandle,System.Int32@,System.Int32@) + - uid: OpenTK.Platform.ICursorComponent.GetSize(OpenTK.Platform.CursorHandle,System.Int32@,System.Int32@) name: GetSize - href: OpenTK.Core.Platform.ICursorComponent.html#OpenTK_Core_Platform_ICursorComponent_GetSize_OpenTK_Core_Platform_CursorHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.ICursorComponent.html#OpenTK_Platform_ICursorComponent_GetSize_OpenTK_Platform_CursorHandle_System_Int32__System_Int32__ - name: ( - - uid: OpenTK.Core.Platform.CursorHandle + - uid: OpenTK.Platform.CursorHandle name: CursorHandle - href: OpenTK.Core.Platform.CursorHandle.html + href: OpenTK.Platform.CursorHandle.html - name: ',' - name: " " - name: out @@ -1280,13 +1204,13 @@ references: href: https://learn.microsoft.com/dotnet/api/system.int32 - name: ) spec.vb: - - uid: OpenTK.Core.Platform.ICursorComponent.GetSize(OpenTK.Core.Platform.CursorHandle,System.Int32@,System.Int32@) + - uid: OpenTK.Platform.ICursorComponent.GetSize(OpenTK.Platform.CursorHandle,System.Int32@,System.Int32@) name: GetSize - href: OpenTK.Core.Platform.ICursorComponent.html#OpenTK_Core_Platform_ICursorComponent_GetSize_OpenTK_Core_Platform_CursorHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.ICursorComponent.html#OpenTK_Platform_ICursorComponent_GetSize_OpenTK_Platform_CursorHandle_System_Int32__System_Int32__ - name: ( - - uid: OpenTK.Core.Platform.CursorHandle + - uid: OpenTK.Platform.CursorHandle name: CursorHandle - href: OpenTK.Core.Platform.CursorHandle.html + href: OpenTK.Platform.CursorHandle.html - name: ',' - name: " " - uid: System.Int32 @@ -1300,25 +1224,25 @@ references: isExternal: true href: https://learn.microsoft.com/dotnet/api/system.int32 - name: ) -- uid: OpenTK.Core.Platform.ICursorComponent.GetHotspot(OpenTK.Core.Platform.CursorHandle,System.Int32@,System.Int32@) - commentId: M:OpenTK.Core.Platform.ICursorComponent.GetHotspot(OpenTK.Core.Platform.CursorHandle,System.Int32@,System.Int32@) - parent: OpenTK.Core.Platform.ICursorComponent +- uid: OpenTK.Platform.ICursorComponent.GetHotspot(OpenTK.Platform.CursorHandle,System.Int32@,System.Int32@) + commentId: M:OpenTK.Platform.ICursorComponent.GetHotspot(OpenTK.Platform.CursorHandle,System.Int32@,System.Int32@) + parent: OpenTK.Platform.ICursorComponent isExternal: true - href: OpenTK.Core.Platform.ICursorComponent.html#OpenTK_Core_Platform_ICursorComponent_GetHotspot_OpenTK_Core_Platform_CursorHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.ICursorComponent.html#OpenTK_Platform_ICursorComponent_GetHotspot_OpenTK_Platform_CursorHandle_System_Int32__System_Int32__ name: GetHotspot(CursorHandle, out int, out int) nameWithType: ICursorComponent.GetHotspot(CursorHandle, out int, out int) - fullName: OpenTK.Core.Platform.ICursorComponent.GetHotspot(OpenTK.Core.Platform.CursorHandle, out int, out int) + fullName: OpenTK.Platform.ICursorComponent.GetHotspot(OpenTK.Platform.CursorHandle, out int, out int) nameWithType.vb: ICursorComponent.GetHotspot(CursorHandle, Integer, Integer) - fullName.vb: OpenTK.Core.Platform.ICursorComponent.GetHotspot(OpenTK.Core.Platform.CursorHandle, Integer, Integer) + fullName.vb: OpenTK.Platform.ICursorComponent.GetHotspot(OpenTK.Platform.CursorHandle, Integer, Integer) name.vb: GetHotspot(CursorHandle, Integer, Integer) spec.csharp: - - uid: OpenTK.Core.Platform.ICursorComponent.GetHotspot(OpenTK.Core.Platform.CursorHandle,System.Int32@,System.Int32@) + - uid: OpenTK.Platform.ICursorComponent.GetHotspot(OpenTK.Platform.CursorHandle,System.Int32@,System.Int32@) name: GetHotspot - href: OpenTK.Core.Platform.ICursorComponent.html#OpenTK_Core_Platform_ICursorComponent_GetHotspot_OpenTK_Core_Platform_CursorHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.ICursorComponent.html#OpenTK_Platform_ICursorComponent_GetHotspot_OpenTK_Platform_CursorHandle_System_Int32__System_Int32__ - name: ( - - uid: OpenTK.Core.Platform.CursorHandle + - uid: OpenTK.Platform.CursorHandle name: CursorHandle - href: OpenTK.Core.Platform.CursorHandle.html + href: OpenTK.Platform.CursorHandle.html - name: ',' - name: " " - name: out @@ -1337,13 +1261,13 @@ references: href: https://learn.microsoft.com/dotnet/api/system.int32 - name: ) spec.vb: - - uid: OpenTK.Core.Platform.ICursorComponent.GetHotspot(OpenTK.Core.Platform.CursorHandle,System.Int32@,System.Int32@) + - uid: OpenTK.Platform.ICursorComponent.GetHotspot(OpenTK.Platform.CursorHandle,System.Int32@,System.Int32@) name: GetHotspot - href: OpenTK.Core.Platform.ICursorComponent.html#OpenTK_Core_Platform_ICursorComponent_GetHotspot_OpenTK_Core_Platform_CursorHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.ICursorComponent.html#OpenTK_Platform_ICursorComponent_GetHotspot_OpenTK_Platform_CursorHandle_System_Int32__System_Int32__ - name: ( - - uid: OpenTK.Core.Platform.CursorHandle + - uid: OpenTK.Platform.CursorHandle name: CursorHandle - href: OpenTK.Core.Platform.CursorHandle.html + href: OpenTK.Platform.CursorHandle.html - name: ',' - name: " " - uid: System.Int32 @@ -1363,45 +1287,45 @@ references: name: CanInspectSystemCursors nameWithType: MacOSCursorComponent.CanInspectSystemCursors fullName: OpenTK.Platform.Native.macOS.MacOSCursorComponent.CanInspectSystemCursors -- uid: OpenTK.Core.Platform.ICursorComponent.CanInspectSystemCursors - commentId: P:OpenTK.Core.Platform.ICursorComponent.CanInspectSystemCursors - parent: OpenTK.Core.Platform.ICursorComponent - href: OpenTK.Core.Platform.ICursorComponent.html#OpenTK_Core_Platform_ICursorComponent_CanInspectSystemCursors +- uid: OpenTK.Platform.ICursorComponent.CanInspectSystemCursors + commentId: P:OpenTK.Platform.ICursorComponent.CanInspectSystemCursors + parent: OpenTK.Platform.ICursorComponent + href: OpenTK.Platform.ICursorComponent.html#OpenTK_Platform_ICursorComponent_CanInspectSystemCursors name: CanInspectSystemCursors nameWithType: ICursorComponent.CanInspectSystemCursors - fullName: OpenTK.Core.Platform.ICursorComponent.CanInspectSystemCursors -- uid: OpenTK.Core.Platform.PalNotImplementedException - commentId: T:OpenTK.Core.Platform.PalNotImplementedException - href: OpenTK.Core.Platform.PalNotImplementedException.html + fullName: OpenTK.Platform.ICursorComponent.CanInspectSystemCursors +- uid: OpenTK.Platform.PalNotImplementedException + commentId: T:OpenTK.Platform.PalNotImplementedException + href: OpenTK.Platform.PalNotImplementedException.html name: PalNotImplementedException nameWithType: PalNotImplementedException - fullName: OpenTK.Core.Platform.PalNotImplementedException -- uid: OpenTK.Core.Platform.PlatformException - commentId: T:OpenTK.Core.Platform.PlatformException - href: OpenTK.Core.Platform.PlatformException.html + fullName: OpenTK.Platform.PalNotImplementedException +- uid: OpenTK.Platform.PlatformException + commentId: T:OpenTK.Platform.PlatformException + href: OpenTK.Platform.PlatformException.html name: PlatformException nameWithType: PlatformException - fullName: OpenTK.Core.Platform.PlatformException + fullName: OpenTK.Platform.PlatformException - uid: OpenTK.Platform.Native.macOS.MacOSCursorComponent.Create* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSCursorComponent.Create - href: OpenTK.Platform.Native.macOS.MacOSCursorComponent.html#OpenTK_Platform_Native_macOS_MacOSCursorComponent_Create_OpenTK_Core_Platform_SystemCursorType_ + href: OpenTK.Platform.Native.macOS.MacOSCursorComponent.html#OpenTK_Platform_Native_macOS_MacOSCursorComponent_Create_OpenTK_Platform_SystemCursorType_ name: Create nameWithType: MacOSCursorComponent.Create fullName: OpenTK.Platform.Native.macOS.MacOSCursorComponent.Create -- uid: OpenTK.Core.Platform.SystemCursorType - commentId: T:OpenTK.Core.Platform.SystemCursorType - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.SystemCursorType.html +- uid: OpenTK.Platform.SystemCursorType + commentId: T:OpenTK.Platform.SystemCursorType + parent: OpenTK.Platform + href: OpenTK.Platform.SystemCursorType.html name: SystemCursorType nameWithType: SystemCursorType - fullName: OpenTK.Core.Platform.SystemCursorType -- uid: OpenTK.Core.Platform.CursorHandle - commentId: T:OpenTK.Core.Platform.CursorHandle - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.CursorHandle.html + fullName: OpenTK.Platform.SystemCursorType +- uid: OpenTK.Platform.CursorHandle + commentId: T:OpenTK.Platform.CursorHandle + parent: OpenTK.Platform + href: OpenTK.Platform.CursorHandle.html name: CursorHandle nameWithType: CursorHandle - fullName: OpenTK.Core.Platform.CursorHandle + fullName: OpenTK.Platform.CursorHandle - uid: System.ArgumentOutOfRangeException commentId: T:System.ArgumentOutOfRangeException isExternal: true @@ -1416,21 +1340,21 @@ references: name: ArgumentException nameWithType: ArgumentException fullName: System.ArgumentException -- uid: OpenTK.Core.Platform.ICursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.Int32,System.Int32) - commentId: M:OpenTK.Core.Platform.ICursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.Int32,System.Int32) - parent: OpenTK.Core.Platform.ICursorComponent +- uid: OpenTK.Platform.ICursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.Int32,System.Int32) + commentId: M:OpenTK.Platform.ICursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.Int32,System.Int32) + parent: OpenTK.Platform.ICursorComponent isExternal: true - href: OpenTK.Core.Platform.ICursorComponent.html#OpenTK_Core_Platform_ICursorComponent_Create_System_Int32_System_Int32_System_ReadOnlySpan_System_Byte__System_Int32_System_Int32_ + href: OpenTK.Platform.ICursorComponent.html#OpenTK_Platform_ICursorComponent_Create_System_Int32_System_Int32_System_ReadOnlySpan_System_Byte__System_Int32_System_Int32_ name: Create(int, int, ReadOnlySpan, int, int) nameWithType: ICursorComponent.Create(int, int, ReadOnlySpan, int, int) - fullName: OpenTK.Core.Platform.ICursorComponent.Create(int, int, System.ReadOnlySpan, int, int) + fullName: OpenTK.Platform.ICursorComponent.Create(int, int, System.ReadOnlySpan, int, int) nameWithType.vb: ICursorComponent.Create(Integer, Integer, ReadOnlySpan(Of Byte), Integer, Integer) - fullName.vb: OpenTK.Core.Platform.ICursorComponent.Create(Integer, Integer, System.ReadOnlySpan(Of Byte), Integer, Integer) + fullName.vb: OpenTK.Platform.ICursorComponent.Create(Integer, Integer, System.ReadOnlySpan(Of Byte), Integer, Integer) name.vb: Create(Integer, Integer, ReadOnlySpan(Of Byte), Integer, Integer) spec.csharp: - - uid: OpenTK.Core.Platform.ICursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.Int32,System.Int32) + - uid: OpenTK.Platform.ICursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.Int32,System.Int32) name: Create - href: OpenTK.Core.Platform.ICursorComponent.html#OpenTK_Core_Platform_ICursorComponent_Create_System_Int32_System_Int32_System_ReadOnlySpan_System_Byte__System_Int32_System_Int32_ + href: OpenTK.Platform.ICursorComponent.html#OpenTK_Platform_ICursorComponent_Create_System_Int32_System_Int32_System_ReadOnlySpan_System_Byte__System_Int32_System_Int32_ - name: ( - uid: System.Int32 name: int @@ -1468,9 +1392,9 @@ references: href: https://learn.microsoft.com/dotnet/api/system.int32 - name: ) spec.vb: - - uid: OpenTK.Core.Platform.ICursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.Int32,System.Int32) + - uid: OpenTK.Platform.ICursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.Int32,System.Int32) name: Create - href: OpenTK.Core.Platform.ICursorComponent.html#OpenTK_Core_Platform_ICursorComponent_Create_System_Int32_System_Int32_System_ReadOnlySpan_System_Byte__System_Int32_System_Int32_ + href: OpenTK.Platform.ICursorComponent.html#OpenTK_Platform_ICursorComponent_Create_System_Int32_System_Int32_System_ReadOnlySpan_System_Byte__System_Int32_System_Int32_ - name: ( - uid: System.Int32 name: Integer @@ -1583,21 +1507,21 @@ references: - name: " " - name: T - name: ) -- uid: OpenTK.Core.Platform.ICursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.ReadOnlySpan{System.Byte},System.Int32,System.Int32) - commentId: M:OpenTK.Core.Platform.ICursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.ReadOnlySpan{System.Byte},System.Int32,System.Int32) - parent: OpenTK.Core.Platform.ICursorComponent +- uid: OpenTK.Platform.ICursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.ReadOnlySpan{System.Byte},System.Int32,System.Int32) + commentId: M:OpenTK.Platform.ICursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.ReadOnlySpan{System.Byte},System.Int32,System.Int32) + parent: OpenTK.Platform.ICursorComponent isExternal: true - href: OpenTK.Core.Platform.ICursorComponent.html#OpenTK_Core_Platform_ICursorComponent_Create_System_Int32_System_Int32_System_ReadOnlySpan_System_Byte__System_ReadOnlySpan_System_Byte__System_Int32_System_Int32_ + href: OpenTK.Platform.ICursorComponent.html#OpenTK_Platform_ICursorComponent_Create_System_Int32_System_Int32_System_ReadOnlySpan_System_Byte__System_ReadOnlySpan_System_Byte__System_Int32_System_Int32_ name: Create(int, int, ReadOnlySpan, ReadOnlySpan, int, int) nameWithType: ICursorComponent.Create(int, int, ReadOnlySpan, ReadOnlySpan, int, int) - fullName: OpenTK.Core.Platform.ICursorComponent.Create(int, int, System.ReadOnlySpan, System.ReadOnlySpan, int, int) + fullName: OpenTK.Platform.ICursorComponent.Create(int, int, System.ReadOnlySpan, System.ReadOnlySpan, int, int) nameWithType.vb: ICursorComponent.Create(Integer, Integer, ReadOnlySpan(Of Byte), ReadOnlySpan(Of Byte), Integer, Integer) - fullName.vb: OpenTK.Core.Platform.ICursorComponent.Create(Integer, Integer, System.ReadOnlySpan(Of Byte), System.ReadOnlySpan(Of Byte), Integer, Integer) + fullName.vb: OpenTK.Platform.ICursorComponent.Create(Integer, Integer, System.ReadOnlySpan(Of Byte), System.ReadOnlySpan(Of Byte), Integer, Integer) name.vb: Create(Integer, Integer, ReadOnlySpan(Of Byte), ReadOnlySpan(Of Byte), Integer, Integer) spec.csharp: - - uid: OpenTK.Core.Platform.ICursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.ReadOnlySpan{System.Byte},System.Int32,System.Int32) + - uid: OpenTK.Platform.ICursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.ReadOnlySpan{System.Byte},System.Int32,System.Int32) name: Create - href: OpenTK.Core.Platform.ICursorComponent.html#OpenTK_Core_Platform_ICursorComponent_Create_System_Int32_System_Int32_System_ReadOnlySpan_System_Byte__System_ReadOnlySpan_System_Byte__System_Int32_System_Int32_ + href: OpenTK.Platform.ICursorComponent.html#OpenTK_Platform_ICursorComponent_Create_System_Int32_System_Int32_System_ReadOnlySpan_System_Byte__System_ReadOnlySpan_System_Byte__System_Int32_System_Int32_ - name: ( - uid: System.Int32 name: int @@ -1647,9 +1571,9 @@ references: href: https://learn.microsoft.com/dotnet/api/system.int32 - name: ) spec.vb: - - uid: OpenTK.Core.Platform.ICursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.ReadOnlySpan{System.Byte},System.Int32,System.Int32) + - uid: OpenTK.Platform.ICursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.ReadOnlySpan{System.Byte},System.Int32,System.Int32) name: Create - href: OpenTK.Core.Platform.ICursorComponent.html#OpenTK_Core_Platform_ICursorComponent_Create_System_Int32_System_Int32_System_ReadOnlySpan_System_Byte__System_ReadOnlySpan_System_Byte__System_Int32_System_Int32_ + href: OpenTK.Platform.ICursorComponent.html#OpenTK_Platform_ICursorComponent_Create_System_Int32_System_Int32_System_ReadOnlySpan_System_Byte__System_ReadOnlySpan_System_Byte__System_Int32_System_Int32_ - name: ( - uid: System.Int32 name: Integer @@ -1743,122 +1667,122 @@ references: fullName: System.ArgumentNullException - uid: OpenTK.Platform.Native.macOS.MacOSCursorComponent.Destroy* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSCursorComponent.Destroy - href: OpenTK.Platform.Native.macOS.MacOSCursorComponent.html#OpenTK_Platform_Native_macOS_MacOSCursorComponent_Destroy_OpenTK_Core_Platform_CursorHandle_ + href: OpenTK.Platform.Native.macOS.MacOSCursorComponent.html#OpenTK_Platform_Native_macOS_MacOSCursorComponent_Destroy_OpenTK_Platform_CursorHandle_ name: Destroy nameWithType: MacOSCursorComponent.Destroy fullName: OpenTK.Platform.Native.macOS.MacOSCursorComponent.Destroy -- uid: OpenTK.Core.Platform.ICursorComponent.Destroy(OpenTK.Core.Platform.CursorHandle) - commentId: M:OpenTK.Core.Platform.ICursorComponent.Destroy(OpenTK.Core.Platform.CursorHandle) - parent: OpenTK.Core.Platform.ICursorComponent - href: OpenTK.Core.Platform.ICursorComponent.html#OpenTK_Core_Platform_ICursorComponent_Destroy_OpenTK_Core_Platform_CursorHandle_ +- uid: OpenTK.Platform.ICursorComponent.Destroy(OpenTK.Platform.CursorHandle) + commentId: M:OpenTK.Platform.ICursorComponent.Destroy(OpenTK.Platform.CursorHandle) + parent: OpenTK.Platform.ICursorComponent + href: OpenTK.Platform.ICursorComponent.html#OpenTK_Platform_ICursorComponent_Destroy_OpenTK_Platform_CursorHandle_ name: Destroy(CursorHandle) nameWithType: ICursorComponent.Destroy(CursorHandle) - fullName: OpenTK.Core.Platform.ICursorComponent.Destroy(OpenTK.Core.Platform.CursorHandle) + fullName: OpenTK.Platform.ICursorComponent.Destroy(OpenTK.Platform.CursorHandle) spec.csharp: - - uid: OpenTK.Core.Platform.ICursorComponent.Destroy(OpenTK.Core.Platform.CursorHandle) + - uid: OpenTK.Platform.ICursorComponent.Destroy(OpenTK.Platform.CursorHandle) name: Destroy - href: OpenTK.Core.Platform.ICursorComponent.html#OpenTK_Core_Platform_ICursorComponent_Destroy_OpenTK_Core_Platform_CursorHandle_ + href: OpenTK.Platform.ICursorComponent.html#OpenTK_Platform_ICursorComponent_Destroy_OpenTK_Platform_CursorHandle_ - name: ( - - uid: OpenTK.Core.Platform.CursorHandle + - uid: OpenTK.Platform.CursorHandle name: CursorHandle - href: OpenTK.Core.Platform.CursorHandle.html + href: OpenTK.Platform.CursorHandle.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.ICursorComponent.Destroy(OpenTK.Core.Platform.CursorHandle) + - uid: OpenTK.Platform.ICursorComponent.Destroy(OpenTK.Platform.CursorHandle) name: Destroy - href: OpenTK.Core.Platform.ICursorComponent.html#OpenTK_Core_Platform_ICursorComponent_Destroy_OpenTK_Core_Platform_CursorHandle_ + href: OpenTK.Platform.ICursorComponent.html#OpenTK_Platform_ICursorComponent_Destroy_OpenTK_Platform_CursorHandle_ - name: ( - - uid: OpenTK.Core.Platform.CursorHandle + - uid: OpenTK.Platform.CursorHandle name: CursorHandle - href: OpenTK.Core.Platform.CursorHandle.html + href: OpenTK.Platform.CursorHandle.html - name: ) - uid: OpenTK.Platform.Native.macOS.MacOSCursorComponent.IsSystemCursor* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSCursorComponent.IsSystemCursor - href: OpenTK.Platform.Native.macOS.MacOSCursorComponent.html#OpenTK_Platform_Native_macOS_MacOSCursorComponent_IsSystemCursor_OpenTK_Core_Platform_CursorHandle_ + href: OpenTK.Platform.Native.macOS.MacOSCursorComponent.html#OpenTK_Platform_Native_macOS_MacOSCursorComponent_IsSystemCursor_OpenTK_Platform_CursorHandle_ name: IsSystemCursor nameWithType: MacOSCursorComponent.IsSystemCursor fullName: OpenTK.Platform.Native.macOS.MacOSCursorComponent.IsSystemCursor -- uid: OpenTK.Core.Platform.ICursorComponent.IsSystemCursor(OpenTK.Core.Platform.CursorHandle) - commentId: M:OpenTK.Core.Platform.ICursorComponent.IsSystemCursor(OpenTK.Core.Platform.CursorHandle) - parent: OpenTK.Core.Platform.ICursorComponent - href: OpenTK.Core.Platform.ICursorComponent.html#OpenTK_Core_Platform_ICursorComponent_IsSystemCursor_OpenTK_Core_Platform_CursorHandle_ +- uid: OpenTK.Platform.ICursorComponent.IsSystemCursor(OpenTK.Platform.CursorHandle) + commentId: M:OpenTK.Platform.ICursorComponent.IsSystemCursor(OpenTK.Platform.CursorHandle) + parent: OpenTK.Platform.ICursorComponent + href: OpenTK.Platform.ICursorComponent.html#OpenTK_Platform_ICursorComponent_IsSystemCursor_OpenTK_Platform_CursorHandle_ name: IsSystemCursor(CursorHandle) nameWithType: ICursorComponent.IsSystemCursor(CursorHandle) - fullName: OpenTK.Core.Platform.ICursorComponent.IsSystemCursor(OpenTK.Core.Platform.CursorHandle) + fullName: OpenTK.Platform.ICursorComponent.IsSystemCursor(OpenTK.Platform.CursorHandle) spec.csharp: - - uid: OpenTK.Core.Platform.ICursorComponent.IsSystemCursor(OpenTK.Core.Platform.CursorHandle) + - uid: OpenTK.Platform.ICursorComponent.IsSystemCursor(OpenTK.Platform.CursorHandle) name: IsSystemCursor - href: OpenTK.Core.Platform.ICursorComponent.html#OpenTK_Core_Platform_ICursorComponent_IsSystemCursor_OpenTK_Core_Platform_CursorHandle_ + href: OpenTK.Platform.ICursorComponent.html#OpenTK_Platform_ICursorComponent_IsSystemCursor_OpenTK_Platform_CursorHandle_ - name: ( - - uid: OpenTK.Core.Platform.CursorHandle + - uid: OpenTK.Platform.CursorHandle name: CursorHandle - href: OpenTK.Core.Platform.CursorHandle.html + href: OpenTK.Platform.CursorHandle.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.ICursorComponent.IsSystemCursor(OpenTK.Core.Platform.CursorHandle) + - uid: OpenTK.Platform.ICursorComponent.IsSystemCursor(OpenTK.Platform.CursorHandle) name: IsSystemCursor - href: OpenTK.Core.Platform.ICursorComponent.html#OpenTK_Core_Platform_ICursorComponent_IsSystemCursor_OpenTK_Core_Platform_CursorHandle_ + href: OpenTK.Platform.ICursorComponent.html#OpenTK_Platform_ICursorComponent_IsSystemCursor_OpenTK_Platform_CursorHandle_ - name: ( - - uid: OpenTK.Core.Platform.CursorHandle + - uid: OpenTK.Platform.CursorHandle name: CursorHandle - href: OpenTK.Core.Platform.CursorHandle.html + href: OpenTK.Platform.CursorHandle.html - name: ) - uid: OpenTK.Platform.Native.macOS.MacOSCursorComponent.IsAnimatedCursor* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSCursorComponent.IsAnimatedCursor - href: OpenTK.Platform.Native.macOS.MacOSCursorComponent.html#OpenTK_Platform_Native_macOS_MacOSCursorComponent_IsAnimatedCursor_OpenTK_Core_Platform_CursorHandle_ + href: OpenTK.Platform.Native.macOS.MacOSCursorComponent.html#OpenTK_Platform_Native_macOS_MacOSCursorComponent_IsAnimatedCursor_OpenTK_Platform_CursorHandle_ name: IsAnimatedCursor nameWithType: MacOSCursorComponent.IsAnimatedCursor fullName: OpenTK.Platform.Native.macOS.MacOSCursorComponent.IsAnimatedCursor - uid: OpenTK.Platform.Native.macOS.MacOSCursorComponent.GetSize* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSCursorComponent.GetSize - href: OpenTK.Platform.Native.macOS.MacOSCursorComponent.html#OpenTK_Platform_Native_macOS_MacOSCursorComponent_GetSize_OpenTK_Core_Platform_CursorHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.Native.macOS.MacOSCursorComponent.html#OpenTK_Platform_Native_macOS_MacOSCursorComponent_GetSize_OpenTK_Platform_CursorHandle_System_Int32__System_Int32__ name: GetSize nameWithType: MacOSCursorComponent.GetSize fullName: OpenTK.Platform.Native.macOS.MacOSCursorComponent.GetSize - uid: OpenTK.Platform.Native.macOS.MacOSCursorComponent.GetHotspot* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSCursorComponent.GetHotspot - href: OpenTK.Platform.Native.macOS.MacOSCursorComponent.html#OpenTK_Platform_Native_macOS_MacOSCursorComponent_GetHotspot_OpenTK_Core_Platform_CursorHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.Native.macOS.MacOSCursorComponent.html#OpenTK_Platform_Native_macOS_MacOSCursorComponent_GetHotspot_OpenTK_Platform_CursorHandle_System_Int32__System_Int32__ name: GetHotspot nameWithType: MacOSCursorComponent.GetHotspot fullName: OpenTK.Platform.Native.macOS.MacOSCursorComponent.GetHotspot -- uid: OpenTK.Core.Platform.IWindowComponent.SetCursor(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.CursorHandle) - commentId: M:OpenTK.Core.Platform.IWindowComponent.SetCursor(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.CursorHandle) - parent: OpenTK.Core.Platform.IWindowComponent - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetCursor_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_CursorHandle_ +- uid: OpenTK.Platform.IWindowComponent.SetCursor(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorHandle) + commentId: M:OpenTK.Platform.IWindowComponent.SetCursor(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorHandle) + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetCursor_OpenTK_Platform_WindowHandle_OpenTK_Platform_CursorHandle_ name: SetCursor(WindowHandle, CursorHandle) nameWithType: IWindowComponent.SetCursor(WindowHandle, CursorHandle) - fullName: OpenTK.Core.Platform.IWindowComponent.SetCursor(OpenTK.Core.Platform.WindowHandle, OpenTK.Core.Platform.CursorHandle) + fullName: OpenTK.Platform.IWindowComponent.SetCursor(OpenTK.Platform.WindowHandle, OpenTK.Platform.CursorHandle) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.SetCursor(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.CursorHandle) + - uid: OpenTK.Platform.IWindowComponent.SetCursor(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorHandle) name: SetCursor - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetCursor_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_CursorHandle_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetCursor_OpenTK_Platform_WindowHandle_OpenTK_Platform_CursorHandle_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - - uid: OpenTK.Core.Platform.CursorHandle + - uid: OpenTK.Platform.CursorHandle name: CursorHandle - href: OpenTK.Core.Platform.CursorHandle.html + href: OpenTK.Platform.CursorHandle.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.SetCursor(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.CursorHandle) + - uid: OpenTK.Platform.IWindowComponent.SetCursor(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorHandle) name: SetCursor - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetCursor_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_CursorHandle_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetCursor_OpenTK_Platform_WindowHandle_OpenTK_Platform_CursorHandle_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - - uid: OpenTK.Core.Platform.CursorHandle + - uid: OpenTK.Platform.CursorHandle name: CursorHandle - href: OpenTK.Core.Platform.CursorHandle.html + href: OpenTK.Platform.CursorHandle.html - name: ) - uid: OpenTK.Platform.Native.macOS.MacOSCursorComponent.UpdateAnimation* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSCursorComponent.UpdateAnimation - href: OpenTK.Platform.Native.macOS.MacOSCursorComponent.html#OpenTK_Platform_Native_macOS_MacOSCursorComponent_UpdateAnimation_OpenTK_Core_Platform_CursorHandle_System_Double_ + href: OpenTK.Platform.Native.macOS.MacOSCursorComponent.html#OpenTK_Platform_Native_macOS_MacOSCursorComponent_UpdateAnimation_OpenTK_Platform_CursorHandle_System_Double_ name: UpdateAnimation nameWithType: MacOSCursorComponent.UpdateAnimation fullName: OpenTK.Platform.Native.macOS.MacOSCursorComponent.UpdateAnimation @@ -1873,10 +1797,10 @@ references: nameWithType.vb: Double fullName.vb: Double name.vb: Double -- uid: OpenTK.Core.Platform.IWindowComponent - commentId: T:OpenTK.Core.Platform.IWindowComponent - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.IWindowComponent.html +- uid: OpenTK.Platform.IWindowComponent + commentId: T:OpenTK.Platform.IWindowComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IWindowComponent.html name: IWindowComponent nameWithType: IWindowComponent - fullName: OpenTK.Core.Platform.IWindowComponent + fullName: OpenTK.Platform.IWindowComponent diff --git a/api/OpenTK.Platform.Native.macOS.MacOSDialogComponent.yml b/api/OpenTK.Platform.Native.macOS.MacOSDialogComponent.yml index bfd1b14e..106ecc7e 100644 --- a/api/OpenTK.Platform.Native.macOS.MacOSDialogComponent.yml +++ b/api/OpenTK.Platform.Native.macOS.MacOSDialogComponent.yml @@ -6,12 +6,13 @@ items: parent: OpenTK.Platform.Native.macOS children: - OpenTK.Platform.Native.macOS.MacOSDialogComponent.CanTargetFolders - - OpenTK.Platform.Native.macOS.MacOSDialogComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + - OpenTK.Platform.Native.macOS.MacOSDialogComponent.Initialize(OpenTK.Platform.ToolkitOptions) - OpenTK.Platform.Native.macOS.MacOSDialogComponent.Logger - OpenTK.Platform.Native.macOS.MacOSDialogComponent.Name - OpenTK.Platform.Native.macOS.MacOSDialogComponent.Provides - - OpenTK.Platform.Native.macOS.MacOSDialogComponent.ShowOpenDialog(OpenTK.Core.Platform.WindowHandle,System.String,System.String,OpenTK.Core.Platform.DialogFileFilter[],OpenTK.Core.Platform.OpenDialogOptions) - - OpenTK.Platform.Native.macOS.MacOSDialogComponent.ShowSaveDialog(OpenTK.Core.Platform.WindowHandle,System.String,System.String,OpenTK.Core.Platform.DialogFileFilter[],OpenTK.Core.Platform.SaveDialogOptions) + - OpenTK.Platform.Native.macOS.MacOSDialogComponent.ShowMessageBox(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.MessageBoxType,OpenTK.Platform.IconHandle) + - OpenTK.Platform.Native.macOS.MacOSDialogComponent.ShowOpenDialog(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.DialogFileFilter[],OpenTK.Platform.OpenDialogOptions) + - OpenTK.Platform.Native.macOS.MacOSDialogComponent.ShowSaveDialog(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.DialogFileFilter[],OpenTK.Platform.SaveDialogOptions) langs: - csharp - vb @@ -20,15 +21,11 @@ items: fullName: OpenTK.Platform.Native.macOS.MacOSDialogComponent type: Class source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSDialogComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MacOSDialogComponent - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSDialogComponent.cs - startLine: 10 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSDialogComponent.cs + startLine: 12 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS syntax: content: 'public class MacOSDialogComponent : IDialogComponent, IPalComponent' @@ -36,8 +33,8 @@ items: inheritance: - System.Object implements: - - OpenTK.Core.Platform.IDialogComponent - - OpenTK.Core.Platform.IPalComponent + - OpenTK.Platform.IDialogComponent + - OpenTK.Platform.IPalComponent inheritedMembers: - System.Object.Equals(System.Object) - System.Object.Equals(System.Object,System.Object) @@ -58,15 +55,11 @@ items: fullName: OpenTK.Platform.Native.macOS.MacOSDialogComponent.Name type: Property source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSDialogComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Name - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSDialogComponent.cs - startLine: 63 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSDialogComponent.cs + startLine: 74 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: Name of the abstraction layer component. example: [] @@ -78,7 +71,7 @@ items: content.vb: Public ReadOnly Property Name As String overload: OpenTK.Platform.Native.macOS.MacOSDialogComponent.Name* implements: - - OpenTK.Core.Platform.IPalComponent.Name + - OpenTK.Platform.IPalComponent.Name - uid: OpenTK.Platform.Native.macOS.MacOSDialogComponent.Provides commentId: P:OpenTK.Platform.Native.macOS.MacOSDialogComponent.Provides id: Provides @@ -91,15 +84,11 @@ items: fullName: OpenTK.Platform.Native.macOS.MacOSDialogComponent.Provides type: Property source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSDialogComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Provides - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSDialogComponent.cs - startLine: 66 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSDialogComponent.cs + startLine: 77 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: Specifies which PAL components this object provides. example: [] @@ -107,11 +96,11 @@ items: content: public PalComponents Provides { get; } parameters: [] return: - type: OpenTK.Core.Platform.PalComponents + type: OpenTK.Platform.PalComponents content.vb: Public ReadOnly Property Provides As PalComponents overload: OpenTK.Platform.Native.macOS.MacOSDialogComponent.Provides* implements: - - OpenTK.Core.Platform.IPalComponent.Provides + - OpenTK.Platform.IPalComponent.Provides - uid: OpenTK.Platform.Native.macOS.MacOSDialogComponent.Logger commentId: P:OpenTK.Platform.Native.macOS.MacOSDialogComponent.Logger id: Logger @@ -124,15 +113,11 @@ items: fullName: OpenTK.Platform.Native.macOS.MacOSDialogComponent.Logger type: Property source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSDialogComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Logger - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSDialogComponent.cs - startLine: 69 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSDialogComponent.cs + startLine: 80 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: Provides a logger for this component. example: [] @@ -144,28 +129,24 @@ items: content.vb: Public Property Logger As ILogger overload: OpenTK.Platform.Native.macOS.MacOSDialogComponent.Logger* implements: - - OpenTK.Core.Platform.IPalComponent.Logger -- uid: OpenTK.Platform.Native.macOS.MacOSDialogComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - commentId: M:OpenTK.Platform.Native.macOS.MacOSDialogComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - id: Initialize(OpenTK.Core.Platform.ToolkitOptions) + - OpenTK.Platform.IPalComponent.Logger +- uid: OpenTK.Platform.Native.macOS.MacOSDialogComponent.Initialize(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Native.macOS.MacOSDialogComponent.Initialize(OpenTK.Platform.ToolkitOptions) + id: Initialize(OpenTK.Platform.ToolkitOptions) parent: OpenTK.Platform.Native.macOS.MacOSDialogComponent langs: - csharp - vb name: Initialize(ToolkitOptions) nameWithType: MacOSDialogComponent.Initialize(ToolkitOptions) - fullName: OpenTK.Platform.Native.macOS.MacOSDialogComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + fullName: OpenTK.Platform.Native.macOS.MacOSDialogComponent.Initialize(OpenTK.Platform.ToolkitOptions) type: Method source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSDialogComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Initialize - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSDialogComponent.cs - startLine: 72 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSDialogComponent.cs + startLine: 83 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: Initialize the component. example: [] @@ -173,12 +154,12 @@ items: content: public void Initialize(ToolkitOptions options) parameters: - id: options - type: OpenTK.Core.Platform.ToolkitOptions + type: OpenTK.Platform.ToolkitOptions description: The options to initialize the component with. content.vb: Public Sub Initialize(options As ToolkitOptions) overload: OpenTK.Platform.Native.macOS.MacOSDialogComponent.Initialize* implements: - - OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + - OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) - uid: OpenTK.Platform.Native.macOS.MacOSDialogComponent.CanTargetFolders commentId: P:OpenTK.Platform.Native.macOS.MacOSDialogComponent.CanTargetFolders id: CanTargetFolders @@ -191,18 +172,14 @@ items: fullName: OpenTK.Platform.Native.macOS.MacOSDialogComponent.CanTargetFolders type: Property source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSDialogComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CanTargetFolders - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSDialogComponent.cs - startLine: 77 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSDialogComponent.cs + startLine: 88 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: >- - If the value of this property is true and will work. + If the value of this property is true will work. Otherwise these flags will be ignored. example: [] @@ -213,97 +190,173 @@ items: type: System.Boolean content.vb: Public ReadOnly Property CanTargetFolders As Boolean overload: OpenTK.Platform.Native.macOS.MacOSDialogComponent.CanTargetFolders* + seealso: + - linkId: OpenTK.Platform.OpenDialogOptions.SelectDirectory + commentId: F:OpenTK.Platform.OpenDialogOptions.SelectDirectory + - linkId: OpenTK.Platform.IDialogComponent.ShowOpenDialog(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.DialogFileFilter[],OpenTK.Platform.OpenDialogOptions) + commentId: M:OpenTK.Platform.IDialogComponent.ShowOpenDialog(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.DialogFileFilter[],OpenTK.Platform.OpenDialogOptions) + implements: + - OpenTK.Platform.IDialogComponent.CanTargetFolders +- uid: OpenTK.Platform.Native.macOS.MacOSDialogComponent.ShowMessageBox(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.MessageBoxType,OpenTK.Platform.IconHandle) + commentId: M:OpenTK.Platform.Native.macOS.MacOSDialogComponent.ShowMessageBox(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.MessageBoxType,OpenTK.Platform.IconHandle) + id: ShowMessageBox(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.MessageBoxType,OpenTK.Platform.IconHandle) + parent: OpenTK.Platform.Native.macOS.MacOSDialogComponent + langs: + - csharp + - vb + name: ShowMessageBox(WindowHandle, string, string, MessageBoxType, IconHandle?) + nameWithType: MacOSDialogComponent.ShowMessageBox(WindowHandle, string, string, MessageBoxType, IconHandle?) + fullName: OpenTK.Platform.Native.macOS.MacOSDialogComponent.ShowMessageBox(OpenTK.Platform.WindowHandle, string, string, OpenTK.Platform.MessageBoxType, OpenTK.Platform.IconHandle?) + type: Method + source: + id: ShowMessageBox + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSDialogComponent.cs + startLine: 91 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform.Native.macOS + summary: Shows a modal message box. + example: [] + syntax: + content: public MessageBoxButton ShowMessageBox(WindowHandle parent, string title, string content, MessageBoxType messageBoxType, IconHandle? customIcon = null) + parameters: + - id: parent + type: OpenTK.Platform.WindowHandle + description: The parent window for which this dialog is modal. + - id: title + type: System.String + description: The title of the dialog box. + - id: content + type: System.String + description: The content text of the dialog box. + - id: messageBoxType + type: OpenTK.Platform.MessageBoxType + description: The type of message box. Determines button layout and default icon. + - id: customIcon + type: OpenTK.Platform.IconHandle + description: An optional custom icon to use instead of the default one. + return: + type: OpenTK.Platform.MessageBoxButton + description: The pressed message box button. + content.vb: Public Function ShowMessageBox(parent As WindowHandle, title As String, content As String, messageBoxType As MessageBoxType, customIcon As IconHandle = Nothing) As MessageBoxButton + overload: OpenTK.Platform.Native.macOS.MacOSDialogComponent.ShowMessageBox* implements: - - OpenTK.Core.Platform.IDialogComponent.CanTargetFolders -- uid: OpenTK.Platform.Native.macOS.MacOSDialogComponent.ShowOpenDialog(OpenTK.Core.Platform.WindowHandle,System.String,System.String,OpenTK.Core.Platform.DialogFileFilter[],OpenTK.Core.Platform.OpenDialogOptions) - commentId: M:OpenTK.Platform.Native.macOS.MacOSDialogComponent.ShowOpenDialog(OpenTK.Core.Platform.WindowHandle,System.String,System.String,OpenTK.Core.Platform.DialogFileFilter[],OpenTK.Core.Platform.OpenDialogOptions) - id: ShowOpenDialog(OpenTK.Core.Platform.WindowHandle,System.String,System.String,OpenTK.Core.Platform.DialogFileFilter[],OpenTK.Core.Platform.OpenDialogOptions) + - OpenTK.Platform.IDialogComponent.ShowMessageBox(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.MessageBoxType,OpenTK.Platform.IconHandle) + nameWithType.vb: MacOSDialogComponent.ShowMessageBox(WindowHandle, String, String, MessageBoxType, IconHandle) + fullName.vb: OpenTK.Platform.Native.macOS.MacOSDialogComponent.ShowMessageBox(OpenTK.Platform.WindowHandle, String, String, OpenTK.Platform.MessageBoxType, OpenTK.Platform.IconHandle) + name.vb: ShowMessageBox(WindowHandle, String, String, MessageBoxType, IconHandle) +- uid: OpenTK.Platform.Native.macOS.MacOSDialogComponent.ShowOpenDialog(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.DialogFileFilter[],OpenTK.Platform.OpenDialogOptions) + commentId: M:OpenTK.Platform.Native.macOS.MacOSDialogComponent.ShowOpenDialog(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.DialogFileFilter[],OpenTK.Platform.OpenDialogOptions) + id: ShowOpenDialog(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.DialogFileFilter[],OpenTK.Platform.OpenDialogOptions) parent: OpenTK.Platform.Native.macOS.MacOSDialogComponent langs: - csharp - vb name: ShowOpenDialog(WindowHandle, string, string, DialogFileFilter[]?, OpenDialogOptions) nameWithType: MacOSDialogComponent.ShowOpenDialog(WindowHandle, string, string, DialogFileFilter[]?, OpenDialogOptions) - fullName: OpenTK.Platform.Native.macOS.MacOSDialogComponent.ShowOpenDialog(OpenTK.Core.Platform.WindowHandle, string, string, OpenTK.Core.Platform.DialogFileFilter[]?, OpenTK.Core.Platform.OpenDialogOptions) + fullName: OpenTK.Platform.Native.macOS.MacOSDialogComponent.ShowOpenDialog(OpenTK.Platform.WindowHandle, string, string, OpenTK.Platform.DialogFileFilter[]?, OpenTK.Platform.OpenDialogOptions) type: Method source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSDialogComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ShowOpenDialog - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSDialogComponent.cs - startLine: 106 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSDialogComponent.cs + startLine: 222 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS + summary: Shows a modal "open file/folder" dialog. example: [] syntax: content: public List? ShowOpenDialog(WindowHandle parent, string title, string directory, DialogFileFilter[]? allowedExtensions, OpenDialogOptions options) parameters: - id: parent - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle + description: The parent window handle for which this dialog will be modal. - id: title type: System.String + description: The title of the dialog. - id: directory type: System.String + description: The start directory of the file dialog. - id: allowedExtensions - type: OpenTK.Core.Platform.DialogFileFilter[] + type: OpenTK.Platform.DialogFileFilter[] + description: A list of file filters that filter valid files to open. See for more info. - id: options - type: OpenTK.Core.Platform.OpenDialogOptions + type: OpenTK.Platform.OpenDialogOptions + description: Additional options for the file dialog (e.g. for allowing multiple files to be selected.) return: type: System.Collections.Generic.List{System.String} + description: >- + A list of selected files or null if no files where selected. + + If is not specified the list will only contain a single element. content.vb: Public Function ShowOpenDialog(parent As WindowHandle, title As String, directory As String, allowedExtensions As DialogFileFilter(), options As OpenDialogOptions) As List(Of String) overload: OpenTK.Platform.Native.macOS.MacOSDialogComponent.ShowOpenDialog* + seealso: + - linkId: OpenTK.Platform.DialogFileFilter + commentId: T:OpenTK.Platform.DialogFileFilter + - linkId: OpenTK.Platform.OpenDialogOptions + commentId: T:OpenTK.Platform.OpenDialogOptions + - linkId: OpenTK.Platform.IDialogComponent.ShowSaveDialog(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.DialogFileFilter[],OpenTK.Platform.SaveDialogOptions) + commentId: M:OpenTK.Platform.IDialogComponent.ShowSaveDialog(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.DialogFileFilter[],OpenTK.Platform.SaveDialogOptions) + - linkId: OpenTK.Platform.IDialogComponent.CanTargetFolders + commentId: P:OpenTK.Platform.IDialogComponent.CanTargetFolders implements: - - OpenTK.Core.Platform.IDialogComponent.ShowOpenDialog(OpenTK.Core.Platform.WindowHandle,System.String,System.String,OpenTK.Core.Platform.DialogFileFilter[],OpenTK.Core.Platform.OpenDialogOptions) + - OpenTK.Platform.IDialogComponent.ShowOpenDialog(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.DialogFileFilter[],OpenTK.Platform.OpenDialogOptions) nameWithType.vb: MacOSDialogComponent.ShowOpenDialog(WindowHandle, String, String, DialogFileFilter(), OpenDialogOptions) - fullName.vb: OpenTK.Platform.Native.macOS.MacOSDialogComponent.ShowOpenDialog(OpenTK.Core.Platform.WindowHandle, String, String, OpenTK.Core.Platform.DialogFileFilter(), OpenTK.Core.Platform.OpenDialogOptions) + fullName.vb: OpenTK.Platform.Native.macOS.MacOSDialogComponent.ShowOpenDialog(OpenTK.Platform.WindowHandle, String, String, OpenTK.Platform.DialogFileFilter(), OpenTK.Platform.OpenDialogOptions) name.vb: ShowOpenDialog(WindowHandle, String, String, DialogFileFilter(), OpenDialogOptions) -- uid: OpenTK.Platform.Native.macOS.MacOSDialogComponent.ShowSaveDialog(OpenTK.Core.Platform.WindowHandle,System.String,System.String,OpenTK.Core.Platform.DialogFileFilter[],OpenTK.Core.Platform.SaveDialogOptions) - commentId: M:OpenTK.Platform.Native.macOS.MacOSDialogComponent.ShowSaveDialog(OpenTK.Core.Platform.WindowHandle,System.String,System.String,OpenTK.Core.Platform.DialogFileFilter[],OpenTK.Core.Platform.SaveDialogOptions) - id: ShowSaveDialog(OpenTK.Core.Platform.WindowHandle,System.String,System.String,OpenTK.Core.Platform.DialogFileFilter[],OpenTK.Core.Platform.SaveDialogOptions) +- uid: OpenTK.Platform.Native.macOS.MacOSDialogComponent.ShowSaveDialog(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.DialogFileFilter[],OpenTK.Platform.SaveDialogOptions) + commentId: M:OpenTK.Platform.Native.macOS.MacOSDialogComponent.ShowSaveDialog(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.DialogFileFilter[],OpenTK.Platform.SaveDialogOptions) + id: ShowSaveDialog(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.DialogFileFilter[],OpenTK.Platform.SaveDialogOptions) parent: OpenTK.Platform.Native.macOS.MacOSDialogComponent langs: - csharp - vb name: ShowSaveDialog(WindowHandle, string, string, DialogFileFilter[]?, SaveDialogOptions) nameWithType: MacOSDialogComponent.ShowSaveDialog(WindowHandle, string, string, DialogFileFilter[]?, SaveDialogOptions) - fullName: OpenTK.Platform.Native.macOS.MacOSDialogComponent.ShowSaveDialog(OpenTK.Core.Platform.WindowHandle, string, string, OpenTK.Core.Platform.DialogFileFilter[]?, OpenTK.Core.Platform.SaveDialogOptions) + fullName: OpenTK.Platform.Native.macOS.MacOSDialogComponent.ShowSaveDialog(OpenTK.Platform.WindowHandle, string, string, OpenTK.Platform.DialogFileFilter[]?, OpenTK.Platform.SaveDialogOptions) type: Method source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSDialogComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ShowSaveDialog - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSDialogComponent.cs - startLine: 165 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSDialogComponent.cs + startLine: 281 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS + summary: Shows a modal "save file" dialog. example: [] syntax: content: public string? ShowSaveDialog(WindowHandle parent, string title, string directory, DialogFileFilter[]? allowedExtensions, SaveDialogOptions options) parameters: - id: parent - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle + description: The parent window handle for which this dialog will be modal. - id: title type: System.String + description: The title of the dialog. - id: directory type: System.String + description: The starting directory of the file dialog. - id: allowedExtensions - type: OpenTK.Core.Platform.DialogFileFilter[] + type: OpenTK.Platform.DialogFileFilter[] + description: A list of file filters that filter valid file extensions to save as. See for more info. - id: options - type: OpenTK.Core.Platform.SaveDialogOptions + type: OpenTK.Platform.SaveDialogOptions + description: Additional options for the file dialog. return: type: System.String + description: The path to the selected save file, or null if no file was selected. content.vb: Public Function ShowSaveDialog(parent As WindowHandle, title As String, directory As String, allowedExtensions As DialogFileFilter(), options As SaveDialogOptions) As String overload: OpenTK.Platform.Native.macOS.MacOSDialogComponent.ShowSaveDialog* + seealso: + - linkId: OpenTK.Platform.DialogFileFilter + commentId: T:OpenTK.Platform.DialogFileFilter + - linkId: OpenTK.Platform.SaveDialogOptions + commentId: T:OpenTK.Platform.SaveDialogOptions implements: - - OpenTK.Core.Platform.IDialogComponent.ShowSaveDialog(OpenTK.Core.Platform.WindowHandle,System.String,System.String,OpenTK.Core.Platform.DialogFileFilter[],OpenTK.Core.Platform.SaveDialogOptions) + - OpenTK.Platform.IDialogComponent.ShowSaveDialog(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.DialogFileFilter[],OpenTK.Platform.SaveDialogOptions) nameWithType.vb: MacOSDialogComponent.ShowSaveDialog(WindowHandle, String, String, DialogFileFilter(), SaveDialogOptions) - fullName.vb: OpenTK.Platform.Native.macOS.MacOSDialogComponent.ShowSaveDialog(OpenTK.Core.Platform.WindowHandle, String, String, OpenTK.Core.Platform.DialogFileFilter(), OpenTK.Core.Platform.SaveDialogOptions) + fullName.vb: OpenTK.Platform.Native.macOS.MacOSDialogComponent.ShowSaveDialog(OpenTK.Platform.WindowHandle, String, String, OpenTK.Platform.DialogFileFilter(), OpenTK.Platform.SaveDialogOptions) name.vb: ShowSaveDialog(WindowHandle, String, String, DialogFileFilter(), SaveDialogOptions) references: - uid: OpenTK.Platform.Native.macOS @@ -355,20 +408,20 @@ references: nameWithType.vb: Object fullName.vb: Object name.vb: Object -- uid: OpenTK.Core.Platform.IDialogComponent - commentId: T:OpenTK.Core.Platform.IDialogComponent - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.IDialogComponent.html +- uid: OpenTK.Platform.IDialogComponent + commentId: T:OpenTK.Platform.IDialogComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IDialogComponent.html name: IDialogComponent nameWithType: IDialogComponent - fullName: OpenTK.Core.Platform.IDialogComponent -- uid: OpenTK.Core.Platform.IPalComponent - commentId: T:OpenTK.Core.Platform.IPalComponent - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.IPalComponent.html + fullName: OpenTK.Platform.IDialogComponent +- uid: OpenTK.Platform.IPalComponent + commentId: T:OpenTK.Platform.IPalComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IPalComponent.html name: IPalComponent nameWithType: IPalComponent - fullName: OpenTK.Core.Platform.IPalComponent + fullName: OpenTK.Platform.IPalComponent - uid: System.Object.Equals(System.Object) commentId: M:System.Object.Equals(System.Object) parent: System.Object @@ -595,49 +648,41 @@ references: name: System nameWithType: System fullName: System -- uid: OpenTK.Core.Platform - commentId: N:OpenTK.Core.Platform +- uid: OpenTK.Platform + commentId: N:OpenTK.Platform href: OpenTK.html - name: OpenTK.Core.Platform - nameWithType: OpenTK.Core.Platform - fullName: OpenTK.Core.Platform + name: OpenTK.Platform + nameWithType: OpenTK.Platform + fullName: OpenTK.Platform spec.csharp: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html spec.vb: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html - uid: OpenTK.Platform.Native.macOS.MacOSDialogComponent.Name* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSDialogComponent.Name href: OpenTK.Platform.Native.macOS.MacOSDialogComponent.html#OpenTK_Platform_Native_macOS_MacOSDialogComponent_Name name: Name nameWithType: MacOSDialogComponent.Name fullName: OpenTK.Platform.Native.macOS.MacOSDialogComponent.Name -- uid: OpenTK.Core.Platform.IPalComponent.Name - commentId: P:OpenTK.Core.Platform.IPalComponent.Name - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Name +- uid: OpenTK.Platform.IPalComponent.Name + commentId: P:OpenTK.Platform.IPalComponent.Name + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Name name: Name nameWithType: IPalComponent.Name - fullName: OpenTK.Core.Platform.IPalComponent.Name + fullName: OpenTK.Platform.IPalComponent.Name - uid: System.String commentId: T:System.String parent: System @@ -655,33 +700,33 @@ references: name: Provides nameWithType: MacOSDialogComponent.Provides fullName: OpenTK.Platform.Native.macOS.MacOSDialogComponent.Provides -- uid: OpenTK.Core.Platform.IPalComponent.Provides - commentId: P:OpenTK.Core.Platform.IPalComponent.Provides - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Provides +- uid: OpenTK.Platform.IPalComponent.Provides + commentId: P:OpenTK.Platform.IPalComponent.Provides + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Provides name: Provides nameWithType: IPalComponent.Provides - fullName: OpenTK.Core.Platform.IPalComponent.Provides -- uid: OpenTK.Core.Platform.PalComponents - commentId: T:OpenTK.Core.Platform.PalComponents - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.PalComponents.html + fullName: OpenTK.Platform.IPalComponent.Provides +- uid: OpenTK.Platform.PalComponents + commentId: T:OpenTK.Platform.PalComponents + parent: OpenTK.Platform + href: OpenTK.Platform.PalComponents.html name: PalComponents nameWithType: PalComponents - fullName: OpenTK.Core.Platform.PalComponents + fullName: OpenTK.Platform.PalComponents - uid: OpenTK.Platform.Native.macOS.MacOSDialogComponent.Logger* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSDialogComponent.Logger href: OpenTK.Platform.Native.macOS.MacOSDialogComponent.html#OpenTK_Platform_Native_macOS_MacOSDialogComponent_Logger name: Logger nameWithType: MacOSDialogComponent.Logger fullName: OpenTK.Platform.Native.macOS.MacOSDialogComponent.Logger -- uid: OpenTK.Core.Platform.IPalComponent.Logger - commentId: P:OpenTK.Core.Platform.IPalComponent.Logger - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Logger +- uid: OpenTK.Platform.IPalComponent.Logger + commentId: P:OpenTK.Platform.IPalComponent.Logger + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Logger name: Logger nameWithType: IPalComponent.Logger - fullName: OpenTK.Core.Platform.IPalComponent.Logger + fullName: OpenTK.Platform.IPalComponent.Logger - uid: OpenTK.Core.Utility.ILogger commentId: T:OpenTK.Core.Utility.ILogger parent: OpenTK.Core.Utility @@ -721,61 +766,138 @@ references: href: OpenTK.Core.Utility.html - uid: OpenTK.Platform.Native.macOS.MacOSDialogComponent.Initialize* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSDialogComponent.Initialize - href: OpenTK.Platform.Native.macOS.MacOSDialogComponent.html#OpenTK_Platform_Native_macOS_MacOSDialogComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + href: OpenTK.Platform.Native.macOS.MacOSDialogComponent.html#OpenTK_Platform_Native_macOS_MacOSDialogComponent_Initialize_OpenTK_Platform_ToolkitOptions_ name: Initialize nameWithType: MacOSDialogComponent.Initialize fullName: OpenTK.Platform.Native.macOS.MacOSDialogComponent.Initialize -- uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - commentId: M:OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ +- uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ name: Initialize(ToolkitOptions) nameWithType: IPalComponent.Initialize(ToolkitOptions) - fullName: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + fullName: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) spec.csharp: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + - uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.ToolkitOptions + - uid: OpenTK.Platform.ToolkitOptions name: ToolkitOptions - href: OpenTK.Core.Platform.ToolkitOptions.html + href: OpenTK.Platform.ToolkitOptions.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + - uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.ToolkitOptions + - uid: OpenTK.Platform.ToolkitOptions name: ToolkitOptions - href: OpenTK.Core.Platform.ToolkitOptions.html + href: OpenTK.Platform.ToolkitOptions.html - name: ) -- uid: OpenTK.Core.Platform.ToolkitOptions - commentId: T:OpenTK.Core.Platform.ToolkitOptions - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.ToolkitOptions.html +- uid: OpenTK.Platform.ToolkitOptions + commentId: T:OpenTK.Platform.ToolkitOptions + parent: OpenTK.Platform + href: OpenTK.Platform.ToolkitOptions.html name: ToolkitOptions nameWithType: ToolkitOptions - fullName: OpenTK.Core.Platform.ToolkitOptions -- uid: OpenTK.Core.Platform.OpenDialogOptions.SelectDirectory - commentId: F:OpenTK.Core.Platform.OpenDialogOptions.SelectDirectory - href: OpenTK.Core.Platform.OpenDialogOptions.html#OpenTK_Core_Platform_OpenDialogOptions_SelectDirectory + fullName: OpenTK.Platform.ToolkitOptions +- uid: OpenTK.Platform.OpenDialogOptions.SelectDirectory + commentId: F:OpenTK.Platform.OpenDialogOptions.SelectDirectory + href: OpenTK.Platform.OpenDialogOptions.html#OpenTK_Platform_OpenDialogOptions_SelectDirectory name: SelectDirectory nameWithType: OpenDialogOptions.SelectDirectory - fullName: OpenTK.Core.Platform.OpenDialogOptions.SelectDirectory + fullName: OpenTK.Platform.OpenDialogOptions.SelectDirectory +- uid: OpenTK.Platform.IDialogComponent.ShowOpenDialog(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.DialogFileFilter[],OpenTK.Platform.OpenDialogOptions) + commentId: M:OpenTK.Platform.IDialogComponent.ShowOpenDialog(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.DialogFileFilter[],OpenTK.Platform.OpenDialogOptions) + parent: OpenTK.Platform.IDialogComponent + isExternal: true + href: OpenTK.Platform.IDialogComponent.html#OpenTK_Platform_IDialogComponent_ShowOpenDialog_OpenTK_Platform_WindowHandle_System_String_System_String_OpenTK_Platform_DialogFileFilter___OpenTK_Platform_OpenDialogOptions_ + name: ShowOpenDialog(WindowHandle, string, string, DialogFileFilter[], OpenDialogOptions) + nameWithType: IDialogComponent.ShowOpenDialog(WindowHandle, string, string, DialogFileFilter[], OpenDialogOptions) + fullName: OpenTK.Platform.IDialogComponent.ShowOpenDialog(OpenTK.Platform.WindowHandle, string, string, OpenTK.Platform.DialogFileFilter[], OpenTK.Platform.OpenDialogOptions) + nameWithType.vb: IDialogComponent.ShowOpenDialog(WindowHandle, String, String, DialogFileFilter(), OpenDialogOptions) + fullName.vb: OpenTK.Platform.IDialogComponent.ShowOpenDialog(OpenTK.Platform.WindowHandle, String, String, OpenTK.Platform.DialogFileFilter(), OpenTK.Platform.OpenDialogOptions) + name.vb: ShowOpenDialog(WindowHandle, String, String, DialogFileFilter(), OpenDialogOptions) + spec.csharp: + - uid: OpenTK.Platform.IDialogComponent.ShowOpenDialog(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.DialogFileFilter[],OpenTK.Platform.OpenDialogOptions) + name: ShowOpenDialog + href: OpenTK.Platform.IDialogComponent.html#OpenTK_Platform_IDialogComponent_ShowOpenDialog_OpenTK_Platform_WindowHandle_System_String_System_String_OpenTK_Platform_DialogFileFilter___OpenTK_Platform_OpenDialogOptions_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: System.String + name: string + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ',' + - name: " " + - uid: System.String + name: string + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ',' + - name: " " + - uid: OpenTK.Platform.DialogFileFilter + name: DialogFileFilter + href: OpenTK.Platform.DialogFileFilter.html + - name: '[' + - name: ']' + - name: ',' + - name: " " + - uid: OpenTK.Platform.OpenDialogOptions + name: OpenDialogOptions + href: OpenTK.Platform.OpenDialogOptions.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IDialogComponent.ShowOpenDialog(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.DialogFileFilter[],OpenTK.Platform.OpenDialogOptions) + name: ShowOpenDialog + href: OpenTK.Platform.IDialogComponent.html#OpenTK_Platform_IDialogComponent_ShowOpenDialog_OpenTK_Platform_WindowHandle_System_String_System_String_OpenTK_Platform_DialogFileFilter___OpenTK_Platform_OpenDialogOptions_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: System.String + name: String + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ',' + - name: " " + - uid: System.String + name: String + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ',' + - name: " " + - uid: OpenTK.Platform.DialogFileFilter + name: DialogFileFilter + href: OpenTK.Platform.DialogFileFilter.html + - name: ( + - name: ) + - name: ',' + - name: " " + - uid: OpenTK.Platform.OpenDialogOptions + name: OpenDialogOptions + href: OpenTK.Platform.OpenDialogOptions.html + - name: ) - uid: OpenTK.Platform.Native.macOS.MacOSDialogComponent.CanTargetFolders* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSDialogComponent.CanTargetFolders href: OpenTK.Platform.Native.macOS.MacOSDialogComponent.html#OpenTK_Platform_Native_macOS_MacOSDialogComponent_CanTargetFolders name: CanTargetFolders nameWithType: MacOSDialogComponent.CanTargetFolders fullName: OpenTK.Platform.Native.macOS.MacOSDialogComponent.CanTargetFolders -- uid: OpenTK.Core.Platform.IDialogComponent.CanTargetFolders - commentId: P:OpenTK.Core.Platform.IDialogComponent.CanTargetFolders - parent: OpenTK.Core.Platform.IDialogComponent - href: OpenTK.Core.Platform.IDialogComponent.html#OpenTK_Core_Platform_IDialogComponent_CanTargetFolders +- uid: OpenTK.Platform.IDialogComponent.CanTargetFolders + commentId: P:OpenTK.Platform.IDialogComponent.CanTargetFolders + parent: OpenTK.Platform.IDialogComponent + href: OpenTK.Platform.IDialogComponent.html#OpenTK_Platform_IDialogComponent_CanTargetFolders name: CanTargetFolders nameWithType: IDialogComponent.CanTargetFolders - fullName: OpenTK.Core.Platform.IDialogComponent.CanTargetFolders + fullName: OpenTK.Platform.IDialogComponent.CanTargetFolders - uid: System.Boolean commentId: T:System.Boolean parent: System @@ -787,31 +909,31 @@ references: nameWithType.vb: Boolean fullName.vb: Boolean name.vb: Boolean -- uid: OpenTK.Platform.Native.macOS.MacOSDialogComponent.ShowOpenDialog* - commentId: Overload:OpenTK.Platform.Native.macOS.MacOSDialogComponent.ShowOpenDialog - href: OpenTK.Platform.Native.macOS.MacOSDialogComponent.html#OpenTK_Platform_Native_macOS_MacOSDialogComponent_ShowOpenDialog_OpenTK_Core_Platform_WindowHandle_System_String_System_String_OpenTK_Core_Platform_DialogFileFilter___OpenTK_Core_Platform_OpenDialogOptions_ - name: ShowOpenDialog - nameWithType: MacOSDialogComponent.ShowOpenDialog - fullName: OpenTK.Platform.Native.macOS.MacOSDialogComponent.ShowOpenDialog -- uid: OpenTK.Core.Platform.IDialogComponent.ShowOpenDialog(OpenTK.Core.Platform.WindowHandle,System.String,System.String,OpenTK.Core.Platform.DialogFileFilter[],OpenTK.Core.Platform.OpenDialogOptions) - commentId: M:OpenTK.Core.Platform.IDialogComponent.ShowOpenDialog(OpenTK.Core.Platform.WindowHandle,System.String,System.String,OpenTK.Core.Platform.DialogFileFilter[],OpenTK.Core.Platform.OpenDialogOptions) - parent: OpenTK.Core.Platform.IDialogComponent +- uid: OpenTK.Platform.Native.macOS.MacOSDialogComponent.ShowMessageBox* + commentId: Overload:OpenTK.Platform.Native.macOS.MacOSDialogComponent.ShowMessageBox + href: OpenTK.Platform.Native.macOS.MacOSDialogComponent.html#OpenTK_Platform_Native_macOS_MacOSDialogComponent_ShowMessageBox_OpenTK_Platform_WindowHandle_System_String_System_String_OpenTK_Platform_MessageBoxType_OpenTK_Platform_IconHandle_ + name: ShowMessageBox + nameWithType: MacOSDialogComponent.ShowMessageBox + fullName: OpenTK.Platform.Native.macOS.MacOSDialogComponent.ShowMessageBox +- uid: OpenTK.Platform.IDialogComponent.ShowMessageBox(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.MessageBoxType,OpenTK.Platform.IconHandle) + commentId: M:OpenTK.Platform.IDialogComponent.ShowMessageBox(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.MessageBoxType,OpenTK.Platform.IconHandle) + parent: OpenTK.Platform.IDialogComponent isExternal: true - href: OpenTK.Core.Platform.IDialogComponent.html#OpenTK_Core_Platform_IDialogComponent_ShowOpenDialog_OpenTK_Core_Platform_WindowHandle_System_String_System_String_OpenTK_Core_Platform_DialogFileFilter___OpenTK_Core_Platform_OpenDialogOptions_ - name: ShowOpenDialog(WindowHandle, string, string, DialogFileFilter[], OpenDialogOptions) - nameWithType: IDialogComponent.ShowOpenDialog(WindowHandle, string, string, DialogFileFilter[], OpenDialogOptions) - fullName: OpenTK.Core.Platform.IDialogComponent.ShowOpenDialog(OpenTK.Core.Platform.WindowHandle, string, string, OpenTK.Core.Platform.DialogFileFilter[], OpenTK.Core.Platform.OpenDialogOptions) - nameWithType.vb: IDialogComponent.ShowOpenDialog(WindowHandle, String, String, DialogFileFilter(), OpenDialogOptions) - fullName.vb: OpenTK.Core.Platform.IDialogComponent.ShowOpenDialog(OpenTK.Core.Platform.WindowHandle, String, String, OpenTK.Core.Platform.DialogFileFilter(), OpenTK.Core.Platform.OpenDialogOptions) - name.vb: ShowOpenDialog(WindowHandle, String, String, DialogFileFilter(), OpenDialogOptions) + href: OpenTK.Platform.IDialogComponent.html#OpenTK_Platform_IDialogComponent_ShowMessageBox_OpenTK_Platform_WindowHandle_System_String_System_String_OpenTK_Platform_MessageBoxType_OpenTK_Platform_IconHandle_ + name: ShowMessageBox(WindowHandle, string, string, MessageBoxType, IconHandle) + nameWithType: IDialogComponent.ShowMessageBox(WindowHandle, string, string, MessageBoxType, IconHandle) + fullName: OpenTK.Platform.IDialogComponent.ShowMessageBox(OpenTK.Platform.WindowHandle, string, string, OpenTK.Platform.MessageBoxType, OpenTK.Platform.IconHandle) + nameWithType.vb: IDialogComponent.ShowMessageBox(WindowHandle, String, String, MessageBoxType, IconHandle) + fullName.vb: OpenTK.Platform.IDialogComponent.ShowMessageBox(OpenTK.Platform.WindowHandle, String, String, OpenTK.Platform.MessageBoxType, OpenTK.Platform.IconHandle) + name.vb: ShowMessageBox(WindowHandle, String, String, MessageBoxType, IconHandle) spec.csharp: - - uid: OpenTK.Core.Platform.IDialogComponent.ShowOpenDialog(OpenTK.Core.Platform.WindowHandle,System.String,System.String,OpenTK.Core.Platform.DialogFileFilter[],OpenTK.Core.Platform.OpenDialogOptions) - name: ShowOpenDialog - href: OpenTK.Core.Platform.IDialogComponent.html#OpenTK_Core_Platform_IDialogComponent_ShowOpenDialog_OpenTK_Core_Platform_WindowHandle_System_String_System_String_OpenTK_Core_Platform_DialogFileFilter___OpenTK_Core_Platform_OpenDialogOptions_ + - uid: OpenTK.Platform.IDialogComponent.ShowMessageBox(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.MessageBoxType,OpenTK.Platform.IconHandle) + name: ShowMessageBox + href: OpenTK.Platform.IDialogComponent.html#OpenTK_Platform_IDialogComponent_ShowMessageBox_OpenTK_Platform_WindowHandle_System_String_System_String_OpenTK_Platform_MessageBoxType_OpenTK_Platform_IconHandle_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - uid: System.String @@ -826,25 +948,140 @@ references: href: https://learn.microsoft.com/dotnet/api/system.string - name: ',' - name: " " - - uid: OpenTK.Core.Platform.DialogFileFilter + - uid: OpenTK.Platform.MessageBoxType + name: MessageBoxType + href: OpenTK.Platform.MessageBoxType.html + - name: ',' + - name: " " + - uid: OpenTK.Platform.IconHandle + name: IconHandle + href: OpenTK.Platform.IconHandle.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IDialogComponent.ShowMessageBox(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.MessageBoxType,OpenTK.Platform.IconHandle) + name: ShowMessageBox + href: OpenTK.Platform.IDialogComponent.html#OpenTK_Platform_IDialogComponent_ShowMessageBox_OpenTK_Platform_WindowHandle_System_String_System_String_OpenTK_Platform_MessageBoxType_OpenTK_Platform_IconHandle_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: System.String + name: String + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ',' + - name: " " + - uid: System.String + name: String + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ',' + - name: " " + - uid: OpenTK.Platform.MessageBoxType + name: MessageBoxType + href: OpenTK.Platform.MessageBoxType.html + - name: ',' + - name: " " + - uid: OpenTK.Platform.IconHandle + name: IconHandle + href: OpenTK.Platform.IconHandle.html + - name: ) +- uid: OpenTK.Platform.WindowHandle + commentId: T:OpenTK.Platform.WindowHandle + parent: OpenTK.Platform + href: OpenTK.Platform.WindowHandle.html + name: WindowHandle + nameWithType: WindowHandle + fullName: OpenTK.Platform.WindowHandle +- uid: OpenTK.Platform.MessageBoxType + commentId: T:OpenTK.Platform.MessageBoxType + parent: OpenTK.Platform + href: OpenTK.Platform.MessageBoxType.html + name: MessageBoxType + nameWithType: MessageBoxType + fullName: OpenTK.Platform.MessageBoxType +- uid: OpenTK.Platform.IconHandle + commentId: T:OpenTK.Platform.IconHandle + parent: OpenTK.Platform + href: OpenTK.Platform.IconHandle.html + name: IconHandle + nameWithType: IconHandle + fullName: OpenTK.Platform.IconHandle +- uid: OpenTK.Platform.MessageBoxButton + commentId: T:OpenTK.Platform.MessageBoxButton + parent: OpenTK.Platform + href: OpenTK.Platform.MessageBoxButton.html + name: MessageBoxButton + nameWithType: MessageBoxButton + fullName: OpenTK.Platform.MessageBoxButton +- uid: OpenTK.Platform.DialogFileFilter + commentId: T:OpenTK.Platform.DialogFileFilter + parent: OpenTK.Platform + href: OpenTK.Platform.DialogFileFilter.html + name: DialogFileFilter + nameWithType: DialogFileFilter + fullName: OpenTK.Platform.DialogFileFilter +- uid: OpenTK.Platform.OpenDialogOptions + commentId: T:OpenTK.Platform.OpenDialogOptions + parent: OpenTK.Platform + href: OpenTK.Platform.OpenDialogOptions.html + name: OpenDialogOptions + nameWithType: OpenDialogOptions + fullName: OpenTK.Platform.OpenDialogOptions +- uid: OpenTK.Platform.IDialogComponent.ShowSaveDialog(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.DialogFileFilter[],OpenTK.Platform.SaveDialogOptions) + commentId: M:OpenTK.Platform.IDialogComponent.ShowSaveDialog(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.DialogFileFilter[],OpenTK.Platform.SaveDialogOptions) + parent: OpenTK.Platform.IDialogComponent + isExternal: true + href: OpenTK.Platform.IDialogComponent.html#OpenTK_Platform_IDialogComponent_ShowSaveDialog_OpenTK_Platform_WindowHandle_System_String_System_String_OpenTK_Platform_DialogFileFilter___OpenTK_Platform_SaveDialogOptions_ + name: ShowSaveDialog(WindowHandle, string, string, DialogFileFilter[], SaveDialogOptions) + nameWithType: IDialogComponent.ShowSaveDialog(WindowHandle, string, string, DialogFileFilter[], SaveDialogOptions) + fullName: OpenTK.Platform.IDialogComponent.ShowSaveDialog(OpenTK.Platform.WindowHandle, string, string, OpenTK.Platform.DialogFileFilter[], OpenTK.Platform.SaveDialogOptions) + nameWithType.vb: IDialogComponent.ShowSaveDialog(WindowHandle, String, String, DialogFileFilter(), SaveDialogOptions) + fullName.vb: OpenTK.Platform.IDialogComponent.ShowSaveDialog(OpenTK.Platform.WindowHandle, String, String, OpenTK.Platform.DialogFileFilter(), OpenTK.Platform.SaveDialogOptions) + name.vb: ShowSaveDialog(WindowHandle, String, String, DialogFileFilter(), SaveDialogOptions) + spec.csharp: + - uid: OpenTK.Platform.IDialogComponent.ShowSaveDialog(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.DialogFileFilter[],OpenTK.Platform.SaveDialogOptions) + name: ShowSaveDialog + href: OpenTK.Platform.IDialogComponent.html#OpenTK_Platform_IDialogComponent_ShowSaveDialog_OpenTK_Platform_WindowHandle_System_String_System_String_OpenTK_Platform_DialogFileFilter___OpenTK_Platform_SaveDialogOptions_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: System.String + name: string + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ',' + - name: " " + - uid: System.String + name: string + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ',' + - name: " " + - uid: OpenTK.Platform.DialogFileFilter name: DialogFileFilter - href: OpenTK.Core.Platform.DialogFileFilter.html + href: OpenTK.Platform.DialogFileFilter.html - name: '[' - name: ']' - name: ',' - name: " " - - uid: OpenTK.Core.Platform.OpenDialogOptions - name: OpenDialogOptions - href: OpenTK.Core.Platform.OpenDialogOptions.html + - uid: OpenTK.Platform.SaveDialogOptions + name: SaveDialogOptions + href: OpenTK.Platform.SaveDialogOptions.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IDialogComponent.ShowOpenDialog(OpenTK.Core.Platform.WindowHandle,System.String,System.String,OpenTK.Core.Platform.DialogFileFilter[],OpenTK.Core.Platform.OpenDialogOptions) - name: ShowOpenDialog - href: OpenTK.Core.Platform.IDialogComponent.html#OpenTK_Core_Platform_IDialogComponent_ShowOpenDialog_OpenTK_Core_Platform_WindowHandle_System_String_System_String_OpenTK_Core_Platform_DialogFileFilter___OpenTK_Core_Platform_OpenDialogOptions_ + - uid: OpenTK.Platform.IDialogComponent.ShowSaveDialog(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.DialogFileFilter[],OpenTK.Platform.SaveDialogOptions) + name: ShowSaveDialog + href: OpenTK.Platform.IDialogComponent.html#OpenTK_Platform_IDialogComponent_ShowSaveDialog_OpenTK_Platform_WindowHandle_System_String_System_String_OpenTK_Platform_DialogFileFilter___OpenTK_Platform_SaveDialogOptions_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - uid: System.String @@ -859,52 +1096,50 @@ references: href: https://learn.microsoft.com/dotnet/api/system.string - name: ',' - name: " " - - uid: OpenTK.Core.Platform.DialogFileFilter + - uid: OpenTK.Platform.DialogFileFilter name: DialogFileFilter - href: OpenTK.Core.Platform.DialogFileFilter.html + href: OpenTK.Platform.DialogFileFilter.html - name: ( - name: ) - name: ',' - name: " " - - uid: OpenTK.Core.Platform.OpenDialogOptions - name: OpenDialogOptions - href: OpenTK.Core.Platform.OpenDialogOptions.html + - uid: OpenTK.Platform.SaveDialogOptions + name: SaveDialogOptions + href: OpenTK.Platform.SaveDialogOptions.html - name: ) -- uid: OpenTK.Core.Platform.WindowHandle - commentId: T:OpenTK.Core.Platform.WindowHandle - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.WindowHandle.html - name: WindowHandle - nameWithType: WindowHandle - fullName: OpenTK.Core.Platform.WindowHandle -- uid: OpenTK.Core.Platform.DialogFileFilter[] +- uid: OpenTK.Platform.OpenDialogOptions.AllowMultiSelect + commentId: F:OpenTK.Platform.OpenDialogOptions.AllowMultiSelect + href: OpenTK.Platform.OpenDialogOptions.html#OpenTK_Platform_OpenDialogOptions_AllowMultiSelect + name: AllowMultiSelect + nameWithType: OpenDialogOptions.AllowMultiSelect + fullName: OpenTK.Platform.OpenDialogOptions.AllowMultiSelect +- uid: OpenTK.Platform.Native.macOS.MacOSDialogComponent.ShowOpenDialog* + commentId: Overload:OpenTK.Platform.Native.macOS.MacOSDialogComponent.ShowOpenDialog + href: OpenTK.Platform.Native.macOS.MacOSDialogComponent.html#OpenTK_Platform_Native_macOS_MacOSDialogComponent_ShowOpenDialog_OpenTK_Platform_WindowHandle_System_String_System_String_OpenTK_Platform_DialogFileFilter___OpenTK_Platform_OpenDialogOptions_ + name: ShowOpenDialog + nameWithType: MacOSDialogComponent.ShowOpenDialog + fullName: OpenTK.Platform.Native.macOS.MacOSDialogComponent.ShowOpenDialog +- uid: OpenTK.Platform.DialogFileFilter[] isExternal: true - href: OpenTK.Core.Platform.DialogFileFilter.html + href: OpenTK.Platform.DialogFileFilter.html name: DialogFileFilter[] nameWithType: DialogFileFilter[] - fullName: OpenTK.Core.Platform.DialogFileFilter[] + fullName: OpenTK.Platform.DialogFileFilter[] nameWithType.vb: DialogFileFilter() - fullName.vb: OpenTK.Core.Platform.DialogFileFilter() + fullName.vb: OpenTK.Platform.DialogFileFilter() name.vb: DialogFileFilter() spec.csharp: - - uid: OpenTK.Core.Platform.DialogFileFilter + - uid: OpenTK.Platform.DialogFileFilter name: DialogFileFilter - href: OpenTK.Core.Platform.DialogFileFilter.html + href: OpenTK.Platform.DialogFileFilter.html - name: '[' - name: ']' spec.vb: - - uid: OpenTK.Core.Platform.DialogFileFilter + - uid: OpenTK.Platform.DialogFileFilter name: DialogFileFilter - href: OpenTK.Core.Platform.DialogFileFilter.html + href: OpenTK.Platform.DialogFileFilter.html - name: ( - name: ) -- uid: OpenTK.Core.Platform.OpenDialogOptions - commentId: T:OpenTK.Core.Platform.OpenDialogOptions - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.OpenDialogOptions.html - name: OpenDialogOptions - nameWithType: OpenDialogOptions - fullName: OpenTK.Core.Platform.OpenDialogOptions - uid: System.Collections.Generic.List{System.String} commentId: T:System.Collections.Generic.List{System.String} parent: System.Collections.Generic @@ -1005,93 +1240,16 @@ references: name: Generic isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic +- uid: OpenTK.Platform.SaveDialogOptions + commentId: T:OpenTK.Platform.SaveDialogOptions + parent: OpenTK.Platform + href: OpenTK.Platform.SaveDialogOptions.html + name: SaveDialogOptions + nameWithType: SaveDialogOptions + fullName: OpenTK.Platform.SaveDialogOptions - uid: OpenTK.Platform.Native.macOS.MacOSDialogComponent.ShowSaveDialog* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSDialogComponent.ShowSaveDialog - href: OpenTK.Platform.Native.macOS.MacOSDialogComponent.html#OpenTK_Platform_Native_macOS_MacOSDialogComponent_ShowSaveDialog_OpenTK_Core_Platform_WindowHandle_System_String_System_String_OpenTK_Core_Platform_DialogFileFilter___OpenTK_Core_Platform_SaveDialogOptions_ + href: OpenTK.Platform.Native.macOS.MacOSDialogComponent.html#OpenTK_Platform_Native_macOS_MacOSDialogComponent_ShowSaveDialog_OpenTK_Platform_WindowHandle_System_String_System_String_OpenTK_Platform_DialogFileFilter___OpenTK_Platform_SaveDialogOptions_ name: ShowSaveDialog nameWithType: MacOSDialogComponent.ShowSaveDialog fullName: OpenTK.Platform.Native.macOS.MacOSDialogComponent.ShowSaveDialog -- uid: OpenTK.Core.Platform.IDialogComponent.ShowSaveDialog(OpenTK.Core.Platform.WindowHandle,System.String,System.String,OpenTK.Core.Platform.DialogFileFilter[],OpenTK.Core.Platform.SaveDialogOptions) - commentId: M:OpenTK.Core.Platform.IDialogComponent.ShowSaveDialog(OpenTK.Core.Platform.WindowHandle,System.String,System.String,OpenTK.Core.Platform.DialogFileFilter[],OpenTK.Core.Platform.SaveDialogOptions) - parent: OpenTK.Core.Platform.IDialogComponent - isExternal: true - href: OpenTK.Core.Platform.IDialogComponent.html#OpenTK_Core_Platform_IDialogComponent_ShowSaveDialog_OpenTK_Core_Platform_WindowHandle_System_String_System_String_OpenTK_Core_Platform_DialogFileFilter___OpenTK_Core_Platform_SaveDialogOptions_ - name: ShowSaveDialog(WindowHandle, string, string, DialogFileFilter[], SaveDialogOptions) - nameWithType: IDialogComponent.ShowSaveDialog(WindowHandle, string, string, DialogFileFilter[], SaveDialogOptions) - fullName: OpenTK.Core.Platform.IDialogComponent.ShowSaveDialog(OpenTK.Core.Platform.WindowHandle, string, string, OpenTK.Core.Platform.DialogFileFilter[], OpenTK.Core.Platform.SaveDialogOptions) - nameWithType.vb: IDialogComponent.ShowSaveDialog(WindowHandle, String, String, DialogFileFilter(), SaveDialogOptions) - fullName.vb: OpenTK.Core.Platform.IDialogComponent.ShowSaveDialog(OpenTK.Core.Platform.WindowHandle, String, String, OpenTK.Core.Platform.DialogFileFilter(), OpenTK.Core.Platform.SaveDialogOptions) - name.vb: ShowSaveDialog(WindowHandle, String, String, DialogFileFilter(), SaveDialogOptions) - spec.csharp: - - uid: OpenTK.Core.Platform.IDialogComponent.ShowSaveDialog(OpenTK.Core.Platform.WindowHandle,System.String,System.String,OpenTK.Core.Platform.DialogFileFilter[],OpenTK.Core.Platform.SaveDialogOptions) - name: ShowSaveDialog - href: OpenTK.Core.Platform.IDialogComponent.html#OpenTK_Core_Platform_IDialogComponent_ShowSaveDialog_OpenTK_Core_Platform_WindowHandle_System_String_System_String_OpenTK_Core_Platform_DialogFileFilter___OpenTK_Core_Platform_SaveDialogOptions_ - - name: ( - - uid: OpenTK.Core.Platform.WindowHandle - name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ',' - - name: " " - - uid: OpenTK.Core.Platform.DialogFileFilter - name: DialogFileFilter - href: OpenTK.Core.Platform.DialogFileFilter.html - - name: '[' - - name: ']' - - name: ',' - - name: " " - - uid: OpenTK.Core.Platform.SaveDialogOptions - name: SaveDialogOptions - href: OpenTK.Core.Platform.SaveDialogOptions.html - - name: ) - spec.vb: - - uid: OpenTK.Core.Platform.IDialogComponent.ShowSaveDialog(OpenTK.Core.Platform.WindowHandle,System.String,System.String,OpenTK.Core.Platform.DialogFileFilter[],OpenTK.Core.Platform.SaveDialogOptions) - name: ShowSaveDialog - href: OpenTK.Core.Platform.IDialogComponent.html#OpenTK_Core_Platform_IDialogComponent_ShowSaveDialog_OpenTK_Core_Platform_WindowHandle_System_String_System_String_OpenTK_Core_Platform_DialogFileFilter___OpenTK_Core_Platform_SaveDialogOptions_ - - name: ( - - uid: OpenTK.Core.Platform.WindowHandle - name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ',' - - name: " " - - uid: OpenTK.Core.Platform.DialogFileFilter - name: DialogFileFilter - href: OpenTK.Core.Platform.DialogFileFilter.html - - name: ( - - name: ) - - name: ',' - - name: " " - - uid: OpenTK.Core.Platform.SaveDialogOptions - name: SaveDialogOptions - href: OpenTK.Core.Platform.SaveDialogOptions.html - - name: ) -- uid: OpenTK.Core.Platform.SaveDialogOptions - commentId: T:OpenTK.Core.Platform.SaveDialogOptions - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.SaveDialogOptions.html - name: SaveDialogOptions - nameWithType: SaveDialogOptions - fullName: OpenTK.Core.Platform.SaveDialogOptions diff --git a/api/OpenTK.Platform.Native.macOS.MacOSDisplayComponent.yml b/api/OpenTK.Platform.Native.macOS.MacOSDisplayComponent.yml index b2b24b5d..a802a10c 100644 --- a/api/OpenTK.Platform.Native.macOS.MacOSDisplayComponent.yml +++ b/api/OpenTK.Platform.Native.macOS.MacOSDisplayComponent.yml @@ -6,22 +6,22 @@ items: parent: OpenTK.Platform.Native.macOS children: - OpenTK.Platform.Native.macOS.MacOSDisplayComponent.CanGetVirtualPosition - - OpenTK.Platform.Native.macOS.MacOSDisplayComponent.Close(OpenTK.Core.Platform.DisplayHandle) - - OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetDirectDisplayID(OpenTK.Core.Platform.DisplayHandle) + - OpenTK.Platform.Native.macOS.MacOSDisplayComponent.Close(OpenTK.Platform.DisplayHandle) + - OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetDirectDisplayID(OpenTK.Platform.DisplayHandle) - OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetDisplayCount - - OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetDisplayScale(OpenTK.Core.Platform.DisplayHandle,System.Single@,System.Single@) - - OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetName(OpenTK.Core.Platform.DisplayHandle) - - OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetRefreshRate(OpenTK.Core.Platform.DisplayHandle,System.Single@) - - OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetResolution(OpenTK.Core.Platform.DisplayHandle,System.Int32@,System.Int32@) - - OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetSafeArea(OpenTK.Core.Platform.DisplayHandle,OpenTK.Mathematics.Box2i@) - - OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetSafeLeftAuxArea(OpenTK.Core.Platform.DisplayHandle,OpenTK.Mathematics.Box2i@) - - OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetSafeRightAuxArea(OpenTK.Core.Platform.DisplayHandle,OpenTK.Mathematics.Box2i@) - - OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetSupportedVideoModes(OpenTK.Core.Platform.DisplayHandle) - - OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetVideoMode(OpenTK.Core.Platform.DisplayHandle,OpenTK.Core.Platform.VideoMode@) - - OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetVirtualPosition(OpenTK.Core.Platform.DisplayHandle,System.Int32@,System.Int32@) - - OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetWorkArea(OpenTK.Core.Platform.DisplayHandle,OpenTK.Mathematics.Box2i@) - - OpenTK.Platform.Native.macOS.MacOSDisplayComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - - OpenTK.Platform.Native.macOS.MacOSDisplayComponent.IsPrimary(OpenTK.Core.Platform.DisplayHandle) + - OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetDisplayScale(OpenTK.Platform.DisplayHandle,System.Single@,System.Single@) + - OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetName(OpenTK.Platform.DisplayHandle) + - OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetRefreshRate(OpenTK.Platform.DisplayHandle,System.Single@) + - OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetResolution(OpenTK.Platform.DisplayHandle,System.Int32@,System.Int32@) + - OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetSafeArea(OpenTK.Platform.DisplayHandle,OpenTK.Mathematics.Box2i@) + - OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetSafeLeftAuxArea(OpenTK.Platform.DisplayHandle,OpenTK.Mathematics.Box2i@) + - OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetSafeRightAuxArea(OpenTK.Platform.DisplayHandle,OpenTK.Mathematics.Box2i@) + - OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetSupportedVideoModes(OpenTK.Platform.DisplayHandle) + - OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetVideoMode(OpenTK.Platform.DisplayHandle,OpenTK.Platform.VideoMode@) + - OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetVirtualPosition(OpenTK.Platform.DisplayHandle,System.Int32@,System.Int32@) + - OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetWorkArea(OpenTK.Platform.DisplayHandle,OpenTK.Mathematics.Box2i@) + - OpenTK.Platform.Native.macOS.MacOSDisplayComponent.Initialize(OpenTK.Platform.ToolkitOptions) + - OpenTK.Platform.Native.macOS.MacOSDisplayComponent.IsPrimary(OpenTK.Platform.DisplayHandle) - OpenTK.Platform.Native.macOS.MacOSDisplayComponent.Logger - OpenTK.Platform.Native.macOS.MacOSDisplayComponent.Name - OpenTK.Platform.Native.macOS.MacOSDisplayComponent.Open(System.Int32) @@ -35,15 +35,11 @@ items: fullName: OpenTK.Platform.Native.macOS.MacOSDisplayComponent type: Class source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSDisplayComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MacOSDisplayComponent - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSDisplayComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSDisplayComponent.cs startLine: 15 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS syntax: content: 'public class MacOSDisplayComponent : IDisplayComponent, IPalComponent' @@ -51,8 +47,8 @@ items: inheritance: - System.Object implements: - - OpenTK.Core.Platform.IDisplayComponent - - OpenTK.Core.Platform.IPalComponent + - OpenTK.Platform.IDisplayComponent + - OpenTK.Platform.IPalComponent inheritedMembers: - System.Object.Equals(System.Object) - System.Object.Equals(System.Object,System.Object) @@ -73,15 +69,11 @@ items: fullName: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.Name type: Property source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSDisplayComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Name - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSDisplayComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSDisplayComponent.cs startLine: 42 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: Name of the abstraction layer component. example: [] @@ -93,7 +85,7 @@ items: content.vb: Public ReadOnly Property Name As String overload: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.Name* implements: - - OpenTK.Core.Platform.IPalComponent.Name + - OpenTK.Platform.IPalComponent.Name - uid: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.Provides commentId: P:OpenTK.Platform.Native.macOS.MacOSDisplayComponent.Provides id: Provides @@ -106,15 +98,11 @@ items: fullName: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.Provides type: Property source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSDisplayComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Provides - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSDisplayComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSDisplayComponent.cs startLine: 45 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: Specifies which PAL components this object provides. example: [] @@ -122,11 +110,11 @@ items: content: public PalComponents Provides { get; } parameters: [] return: - type: OpenTK.Core.Platform.PalComponents + type: OpenTK.Platform.PalComponents content.vb: Public ReadOnly Property Provides As PalComponents overload: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.Provides* implements: - - OpenTK.Core.Platform.IPalComponent.Provides + - OpenTK.Platform.IPalComponent.Provides - uid: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.Logger commentId: P:OpenTK.Platform.Native.macOS.MacOSDisplayComponent.Logger id: Logger @@ -139,15 +127,11 @@ items: fullName: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.Logger type: Property source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSDisplayComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Logger - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSDisplayComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSDisplayComponent.cs startLine: 48 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: Provides a logger for this component. example: [] @@ -159,28 +143,24 @@ items: content.vb: Public Property Logger As ILogger overload: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.Logger* implements: - - OpenTK.Core.Platform.IPalComponent.Logger -- uid: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - commentId: M:OpenTK.Platform.Native.macOS.MacOSDisplayComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - id: Initialize(OpenTK.Core.Platform.ToolkitOptions) + - OpenTK.Platform.IPalComponent.Logger +- uid: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.Initialize(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Native.macOS.MacOSDisplayComponent.Initialize(OpenTK.Platform.ToolkitOptions) + id: Initialize(OpenTK.Platform.ToolkitOptions) parent: OpenTK.Platform.Native.macOS.MacOSDisplayComponent langs: - csharp - vb name: Initialize(ToolkitOptions) nameWithType: MacOSDisplayComponent.Initialize(ToolkitOptions) - fullName: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + fullName: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.Initialize(OpenTK.Platform.ToolkitOptions) type: Method source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSDisplayComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Initialize - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSDisplayComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSDisplayComponent.cs startLine: 53 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: Initialize the component. example: [] @@ -188,12 +168,12 @@ items: content: public void Initialize(ToolkitOptions options) parameters: - id: options - type: OpenTK.Core.Platform.ToolkitOptions + type: OpenTK.Platform.ToolkitOptions description: The options to initialize the component with. content.vb: Public Sub Initialize(options As ToolkitOptions) overload: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.Initialize* implements: - - OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + - OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) - uid: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.CanGetVirtualPosition commentId: P:OpenTK.Platform.Native.macOS.MacOSDisplayComponent.CanGetVirtualPosition id: CanGetVirtualPosition @@ -206,17 +186,13 @@ items: fullName: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.CanGetVirtualPosition type: Property source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSDisplayComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CanGetVirtualPosition - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSDisplayComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSDisplayComponent.cs startLine: 207 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS - summary: True if the driver can get the virtual position of the display. + summary: True if the driver can get the virtual position of the display using . example: [] syntax: content: public bool CanGetVirtualPosition { get; } @@ -226,7 +202,7 @@ items: content.vb: Public ReadOnly Property CanGetVirtualPosition As Boolean overload: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.CanGetVirtualPosition* implements: - - OpenTK.Core.Platform.IDisplayComponent.CanGetVirtualPosition + - OpenTK.Platform.IDisplayComponent.CanGetVirtualPosition - uid: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetDisplayCount commentId: M:OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetDisplayCount id: GetDisplayCount @@ -239,15 +215,11 @@ items: fullName: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetDisplayCount() type: Method source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSDisplayComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetDisplayCount - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSDisplayComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSDisplayComponent.cs startLine: 210 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: Get the number of available displays. example: [] @@ -259,7 +231,7 @@ items: content.vb: Public Function GetDisplayCount() As Integer overload: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetDisplayCount* implements: - - OpenTK.Core.Platform.IDisplayComponent.GetDisplayCount + - OpenTK.Platform.IDisplayComponent.GetDisplayCount - uid: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.Open(System.Int32) commentId: M:OpenTK.Platform.Native.macOS.MacOSDisplayComponent.Open(System.Int32) id: Open(System.Int32) @@ -272,15 +244,11 @@ items: fullName: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.Open(int) type: Method source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSDisplayComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Open - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSDisplayComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSDisplayComponent.cs startLine: 216 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: Create a display handle to the indexed display. example: [] @@ -291,7 +259,7 @@ items: type: System.Int32 description: The display index to create a display handle to. return: - type: OpenTK.Core.Platform.DisplayHandle + type: OpenTK.Platform.DisplayHandle description: Handle to the display. content.vb: Public Function Open(index As Integer) As DisplayHandle overload: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.Open* @@ -300,7 +268,7 @@ items: commentId: T:System.ArgumentOutOfRangeException description: index is out of range. implements: - - OpenTK.Core.Platform.IDisplayComponent.Open(System.Int32) + - OpenTK.Platform.IDisplayComponent.Open(System.Int32) nameWithType.vb: MacOSDisplayComponent.Open(Integer) fullName.vb: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.Open(Integer) name.vb: Open(Integer) @@ -316,56 +284,48 @@ items: fullName: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.OpenPrimary() type: Method source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSDisplayComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: OpenPrimary - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSDisplayComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSDisplayComponent.cs startLine: 225 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: Create a display handle to the primary display. example: [] syntax: content: public DisplayHandle OpenPrimary() return: - type: OpenTK.Core.Platform.DisplayHandle + type: OpenTK.Platform.DisplayHandle description: Handle to the primary display. content.vb: Public Function OpenPrimary() As DisplayHandle overload: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.OpenPrimary* implements: - - OpenTK.Core.Platform.IDisplayComponent.OpenPrimary -- uid: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.Close(OpenTK.Core.Platform.DisplayHandle) - commentId: M:OpenTK.Platform.Native.macOS.MacOSDisplayComponent.Close(OpenTK.Core.Platform.DisplayHandle) - id: Close(OpenTK.Core.Platform.DisplayHandle) + - OpenTK.Platform.IDisplayComponent.OpenPrimary +- uid: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.Close(OpenTK.Platform.DisplayHandle) + commentId: M:OpenTK.Platform.Native.macOS.MacOSDisplayComponent.Close(OpenTK.Platform.DisplayHandle) + id: Close(OpenTK.Platform.DisplayHandle) parent: OpenTK.Platform.Native.macOS.MacOSDisplayComponent langs: - csharp - vb name: Close(DisplayHandle) nameWithType: MacOSDisplayComponent.Close(DisplayHandle) - fullName: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.Close(OpenTK.Core.Platform.DisplayHandle) + fullName: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.Close(OpenTK.Platform.DisplayHandle) type: Method source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSDisplayComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Close - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSDisplayComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSDisplayComponent.cs startLine: 242 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS - summary: Destroy a display handle. + summary: Close a display handle. example: [] syntax: content: public void Close(DisplayHandle handle) parameters: - id: handle - type: OpenTK.Core.Platform.DisplayHandle + type: OpenTK.Platform.DisplayHandle description: Handle to a display. content.vb: Public Sub Close(handle As DisplayHandle) overload: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.Close* @@ -374,28 +334,24 @@ items: commentId: T:System.ArgumentNullException description: handle is null. implements: - - OpenTK.Core.Platform.IDisplayComponent.Close(OpenTK.Core.Platform.DisplayHandle) -- uid: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.IsPrimary(OpenTK.Core.Platform.DisplayHandle) - commentId: M:OpenTK.Platform.Native.macOS.MacOSDisplayComponent.IsPrimary(OpenTK.Core.Platform.DisplayHandle) - id: IsPrimary(OpenTK.Core.Platform.DisplayHandle) + - OpenTK.Platform.IDisplayComponent.Close(OpenTK.Platform.DisplayHandle) +- uid: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.IsPrimary(OpenTK.Platform.DisplayHandle) + commentId: M:OpenTK.Platform.Native.macOS.MacOSDisplayComponent.IsPrimary(OpenTK.Platform.DisplayHandle) + id: IsPrimary(OpenTK.Platform.DisplayHandle) parent: OpenTK.Platform.Native.macOS.MacOSDisplayComponent langs: - csharp - vb name: IsPrimary(DisplayHandle) nameWithType: MacOSDisplayComponent.IsPrimary(DisplayHandle) - fullName: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.IsPrimary(OpenTK.Core.Platform.DisplayHandle) + fullName: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.IsPrimary(OpenTK.Platform.DisplayHandle) type: Method source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSDisplayComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: IsPrimary - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSDisplayComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSDisplayComponent.cs startLine: 249 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: Checks if a display is the primary display or not. example: [] @@ -403,7 +359,7 @@ items: content: public bool IsPrimary(DisplayHandle handle) parameters: - id: handle - type: OpenTK.Core.Platform.DisplayHandle + type: OpenTK.Platform.DisplayHandle description: The display to check whether or not is the primary display. return: type: System.Boolean @@ -411,28 +367,24 @@ items: content.vb: Public Function IsPrimary(handle As DisplayHandle) As Boolean overload: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.IsPrimary* implements: - - OpenTK.Core.Platform.IDisplayComponent.IsPrimary(OpenTK.Core.Platform.DisplayHandle) -- uid: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetName(OpenTK.Core.Platform.DisplayHandle) - commentId: M:OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetName(OpenTK.Core.Platform.DisplayHandle) - id: GetName(OpenTK.Core.Platform.DisplayHandle) + - OpenTK.Platform.IDisplayComponent.IsPrimary(OpenTK.Platform.DisplayHandle) +- uid: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetName(OpenTK.Platform.DisplayHandle) + commentId: M:OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetName(OpenTK.Platform.DisplayHandle) + id: GetName(OpenTK.Platform.DisplayHandle) parent: OpenTK.Platform.Native.macOS.MacOSDisplayComponent langs: - csharp - vb name: GetName(DisplayHandle) nameWithType: MacOSDisplayComponent.GetName(DisplayHandle) - fullName: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetName(OpenTK.Core.Platform.DisplayHandle) + fullName: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetName(OpenTK.Platform.DisplayHandle) type: Method source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSDisplayComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetName - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSDisplayComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSDisplayComponent.cs startLine: 256 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: Get the friendly name of a display. example: [] @@ -440,7 +392,7 @@ items: content: public string GetName(DisplayHandle handle) parameters: - id: handle - type: OpenTK.Core.Platform.DisplayHandle + type: OpenTK.Platform.DisplayHandle description: Handle to a display. return: type: System.String @@ -452,28 +404,24 @@ items: commentId: T:System.ArgumentNullException description: handle is null. implements: - - OpenTK.Core.Platform.IDisplayComponent.GetName(OpenTK.Core.Platform.DisplayHandle) -- uid: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetVideoMode(OpenTK.Core.Platform.DisplayHandle,OpenTK.Core.Platform.VideoMode@) - commentId: M:OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetVideoMode(OpenTK.Core.Platform.DisplayHandle,OpenTK.Core.Platform.VideoMode@) - id: GetVideoMode(OpenTK.Core.Platform.DisplayHandle,OpenTK.Core.Platform.VideoMode@) + - OpenTK.Platform.IDisplayComponent.GetName(OpenTK.Platform.DisplayHandle) +- uid: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetVideoMode(OpenTK.Platform.DisplayHandle,OpenTK.Platform.VideoMode@) + commentId: M:OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetVideoMode(OpenTK.Platform.DisplayHandle,OpenTK.Platform.VideoMode@) + id: GetVideoMode(OpenTK.Platform.DisplayHandle,OpenTK.Platform.VideoMode@) parent: OpenTK.Platform.Native.macOS.MacOSDisplayComponent langs: - csharp - vb name: GetVideoMode(DisplayHandle, out VideoMode) nameWithType: MacOSDisplayComponent.GetVideoMode(DisplayHandle, out VideoMode) - fullName: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetVideoMode(OpenTK.Core.Platform.DisplayHandle, out OpenTK.Core.Platform.VideoMode) + fullName: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetVideoMode(OpenTK.Platform.DisplayHandle, out OpenTK.Platform.VideoMode) type: Method source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSDisplayComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetVideoMode - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSDisplayComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSDisplayComponent.cs startLine: 263 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: Get the active video mode of a display. example: [] @@ -481,10 +429,10 @@ items: content: public void GetVideoMode(DisplayHandle handle, out VideoMode mode) parameters: - id: handle - type: OpenTK.Core.Platform.DisplayHandle + type: OpenTK.Platform.DisplayHandle description: Handle to a display. - id: mode - type: OpenTK.Core.Platform.VideoMode + type: OpenTK.Platform.VideoMode description: Active video mode of display. content.vb: Public Sub GetVideoMode(handle As DisplayHandle, mode As VideoMode) overload: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetVideoMode* @@ -493,31 +441,27 @@ items: commentId: T:System.ArgumentNullException description: handle is null. implements: - - OpenTK.Core.Platform.IDisplayComponent.GetVideoMode(OpenTK.Core.Platform.DisplayHandle,OpenTK.Core.Platform.VideoMode@) + - OpenTK.Platform.IDisplayComponent.GetVideoMode(OpenTK.Platform.DisplayHandle,OpenTK.Platform.VideoMode@) nameWithType.vb: MacOSDisplayComponent.GetVideoMode(DisplayHandle, VideoMode) - fullName.vb: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetVideoMode(OpenTK.Core.Platform.DisplayHandle, OpenTK.Core.Platform.VideoMode) + fullName.vb: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetVideoMode(OpenTK.Platform.DisplayHandle, OpenTK.Platform.VideoMode) name.vb: GetVideoMode(DisplayHandle, VideoMode) -- uid: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetSupportedVideoModes(OpenTK.Core.Platform.DisplayHandle) - commentId: M:OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetSupportedVideoModes(OpenTK.Core.Platform.DisplayHandle) - id: GetSupportedVideoModes(OpenTK.Core.Platform.DisplayHandle) +- uid: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetSupportedVideoModes(OpenTK.Platform.DisplayHandle) + commentId: M:OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetSupportedVideoModes(OpenTK.Platform.DisplayHandle) + id: GetSupportedVideoModes(OpenTK.Platform.DisplayHandle) parent: OpenTK.Platform.Native.macOS.MacOSDisplayComponent langs: - csharp - vb name: GetSupportedVideoModes(DisplayHandle) nameWithType: MacOSDisplayComponent.GetSupportedVideoModes(DisplayHandle) - fullName: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetSupportedVideoModes(OpenTK.Core.Platform.DisplayHandle) + fullName: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetSupportedVideoModes(OpenTK.Platform.DisplayHandle) type: Method source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSDisplayComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetSupportedVideoModes - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSDisplayComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSDisplayComponent.cs startLine: 280 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: Get all supported video modes for a specific display. example: [] @@ -525,10 +469,10 @@ items: content: public VideoMode[] GetSupportedVideoModes(DisplayHandle handle) parameters: - id: handle - type: OpenTK.Core.Platform.DisplayHandle + type: OpenTK.Platform.DisplayHandle description: Handle to a display. return: - type: OpenTK.Core.Platform.VideoMode[] + type: OpenTK.Platform.VideoMode[] description: An array of all supported video modes. content.vb: Public Function GetSupportedVideoModes(handle As DisplayHandle) As VideoMode() overload: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetSupportedVideoModes* @@ -537,28 +481,24 @@ items: commentId: T:System.ArgumentNullException description: handle is null. implements: - - OpenTK.Core.Platform.IDisplayComponent.GetSupportedVideoModes(OpenTK.Core.Platform.DisplayHandle) -- uid: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetVirtualPosition(OpenTK.Core.Platform.DisplayHandle,System.Int32@,System.Int32@) - commentId: M:OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetVirtualPosition(OpenTK.Core.Platform.DisplayHandle,System.Int32@,System.Int32@) - id: GetVirtualPosition(OpenTK.Core.Platform.DisplayHandle,System.Int32@,System.Int32@) + - OpenTK.Platform.IDisplayComponent.GetSupportedVideoModes(OpenTK.Platform.DisplayHandle) +- uid: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetVirtualPosition(OpenTK.Platform.DisplayHandle,System.Int32@,System.Int32@) + commentId: M:OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetVirtualPosition(OpenTK.Platform.DisplayHandle,System.Int32@,System.Int32@) + id: GetVirtualPosition(OpenTK.Platform.DisplayHandle,System.Int32@,System.Int32@) parent: OpenTK.Platform.Native.macOS.MacOSDisplayComponent langs: - csharp - vb name: GetVirtualPosition(DisplayHandle, out int, out int) nameWithType: MacOSDisplayComponent.GetVirtualPosition(DisplayHandle, out int, out int) - fullName: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetVirtualPosition(OpenTK.Core.Platform.DisplayHandle, out int, out int) + fullName: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetVirtualPosition(OpenTK.Platform.DisplayHandle, out int, out int) type: Method source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSDisplayComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetVirtualPosition - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSDisplayComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSDisplayComponent.cs startLine: 368 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: Get the position of the display in the virtual desktop. example: [] @@ -566,7 +506,7 @@ items: content: public void GetVirtualPosition(DisplayHandle handle, out int x, out int y) parameters: - id: handle - type: OpenTK.Core.Platform.DisplayHandle + type: OpenTK.Platform.DisplayHandle description: Handle to a display. - id: x type: System.Int32 @@ -580,35 +520,31 @@ items: - type: System.ArgumentNullException commentId: T:System.ArgumentNullException description: handle is null. - - type: OpenTK.Core.Platform.PalNotImplementedException - commentId: T:OpenTK.Core.Platform.PalNotImplementedException - description: Driver cannot get display virtual position. See . + - type: OpenTK.Platform.PalNotImplementedException + commentId: T:OpenTK.Platform.PalNotImplementedException + description: Driver cannot get display virtual position. See . implements: - - OpenTK.Core.Platform.IDisplayComponent.GetVirtualPosition(OpenTK.Core.Platform.DisplayHandle,System.Int32@,System.Int32@) + - OpenTK.Platform.IDisplayComponent.GetVirtualPosition(OpenTK.Platform.DisplayHandle,System.Int32@,System.Int32@) nameWithType.vb: MacOSDisplayComponent.GetVirtualPosition(DisplayHandle, Integer, Integer) - fullName.vb: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetVirtualPosition(OpenTK.Core.Platform.DisplayHandle, Integer, Integer) + fullName.vb: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetVirtualPosition(OpenTK.Platform.DisplayHandle, Integer, Integer) name.vb: GetVirtualPosition(DisplayHandle, Integer, Integer) -- uid: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetResolution(OpenTK.Core.Platform.DisplayHandle,System.Int32@,System.Int32@) - commentId: M:OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetResolution(OpenTK.Core.Platform.DisplayHandle,System.Int32@,System.Int32@) - id: GetResolution(OpenTK.Core.Platform.DisplayHandle,System.Int32@,System.Int32@) +- uid: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetResolution(OpenTK.Platform.DisplayHandle,System.Int32@,System.Int32@) + commentId: M:OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetResolution(OpenTK.Platform.DisplayHandle,System.Int32@,System.Int32@) + id: GetResolution(OpenTK.Platform.DisplayHandle,System.Int32@,System.Int32@) parent: OpenTK.Platform.Native.macOS.MacOSDisplayComponent langs: - csharp - vb name: GetResolution(DisplayHandle, out int, out int) nameWithType: MacOSDisplayComponent.GetResolution(DisplayHandle, out int, out int) - fullName: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetResolution(OpenTK.Core.Platform.DisplayHandle, out int, out int) + fullName: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetResolution(OpenTK.Platform.DisplayHandle, out int, out int) type: Method source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSDisplayComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetResolution - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSDisplayComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSDisplayComponent.cs startLine: 384 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: Get the resolution of the specified display. example: [] @@ -616,7 +552,7 @@ items: content: public void GetResolution(DisplayHandle handle, out int width, out int height) parameters: - id: handle - type: OpenTK.Core.Platform.DisplayHandle + type: OpenTK.Platform.DisplayHandle description: Handle to a display. - id: width type: System.Int32 @@ -631,31 +567,27 @@ items: commentId: T:System.ArgumentNullException description: handle is null. implements: - - OpenTK.Core.Platform.IDisplayComponent.GetResolution(OpenTK.Core.Platform.DisplayHandle,System.Int32@,System.Int32@) + - OpenTK.Platform.IDisplayComponent.GetResolution(OpenTK.Platform.DisplayHandle,System.Int32@,System.Int32@) nameWithType.vb: MacOSDisplayComponent.GetResolution(DisplayHandle, Integer, Integer) - fullName.vb: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetResolution(OpenTK.Core.Platform.DisplayHandle, Integer, Integer) + fullName.vb: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetResolution(OpenTK.Platform.DisplayHandle, Integer, Integer) name.vb: GetResolution(DisplayHandle, Integer, Integer) -- uid: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetWorkArea(OpenTK.Core.Platform.DisplayHandle,OpenTK.Mathematics.Box2i@) - commentId: M:OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetWorkArea(OpenTK.Core.Platform.DisplayHandle,OpenTK.Mathematics.Box2i@) - id: GetWorkArea(OpenTK.Core.Platform.DisplayHandle,OpenTK.Mathematics.Box2i@) +- uid: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetWorkArea(OpenTK.Platform.DisplayHandle,OpenTK.Mathematics.Box2i@) + commentId: M:OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetWorkArea(OpenTK.Platform.DisplayHandle,OpenTK.Mathematics.Box2i@) + id: GetWorkArea(OpenTK.Platform.DisplayHandle,OpenTK.Mathematics.Box2i@) parent: OpenTK.Platform.Native.macOS.MacOSDisplayComponent langs: - csharp - vb name: GetWorkArea(DisplayHandle, out Box2i) nameWithType: MacOSDisplayComponent.GetWorkArea(DisplayHandle, out Box2i) - fullName: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetWorkArea(OpenTK.Core.Platform.DisplayHandle, out OpenTK.Mathematics.Box2i) + fullName: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetWorkArea(OpenTK.Platform.DisplayHandle, out OpenTK.Mathematics.Box2i) type: Method source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSDisplayComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetWorkArea - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSDisplayComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSDisplayComponent.cs startLine: 396 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: >- Get the work area of this display. @@ -666,7 +598,7 @@ items: content: public void GetWorkArea(DisplayHandle handle, out Box2i area) parameters: - id: handle - type: OpenTK.Core.Platform.DisplayHandle + type: OpenTK.Platform.DisplayHandle description: Handle to a display. - id: area type: OpenTK.Mathematics.Box2i @@ -674,65 +606,57 @@ items: content.vb: Public Sub GetWorkArea(handle As DisplayHandle, area As Box2i) overload: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetWorkArea* implements: - - OpenTK.Core.Platform.IDisplayComponent.GetWorkArea(OpenTK.Core.Platform.DisplayHandle,OpenTK.Mathematics.Box2i@) + - OpenTK.Platform.IDisplayComponent.GetWorkArea(OpenTK.Platform.DisplayHandle,OpenTK.Mathematics.Box2i@) nameWithType.vb: MacOSDisplayComponent.GetWorkArea(DisplayHandle, Box2i) - fullName.vb: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetWorkArea(OpenTK.Core.Platform.DisplayHandle, OpenTK.Mathematics.Box2i) + fullName.vb: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetWorkArea(OpenTK.Platform.DisplayHandle, OpenTK.Mathematics.Box2i) name.vb: GetWorkArea(DisplayHandle, Box2i) -- uid: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetSafeArea(OpenTK.Core.Platform.DisplayHandle,OpenTK.Mathematics.Box2i@) - commentId: M:OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetSafeArea(OpenTK.Core.Platform.DisplayHandle,OpenTK.Mathematics.Box2i@) - id: GetSafeArea(OpenTK.Core.Platform.DisplayHandle,OpenTK.Mathematics.Box2i@) +- uid: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetSafeArea(OpenTK.Platform.DisplayHandle,OpenTK.Mathematics.Box2i@) + commentId: M:OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetSafeArea(OpenTK.Platform.DisplayHandle,OpenTK.Mathematics.Box2i@) + id: GetSafeArea(OpenTK.Platform.DisplayHandle,OpenTK.Mathematics.Box2i@) parent: OpenTK.Platform.Native.macOS.MacOSDisplayComponent langs: - csharp - vb name: GetSafeArea(DisplayHandle, out Box2i) nameWithType: MacOSDisplayComponent.GetSafeArea(DisplayHandle, out Box2i) - fullName: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetSafeArea(OpenTK.Core.Platform.DisplayHandle, out OpenTK.Mathematics.Box2i) + fullName: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetSafeArea(OpenTK.Platform.DisplayHandle, out OpenTK.Mathematics.Box2i) type: Method source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSDisplayComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetSafeArea - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSDisplayComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSDisplayComponent.cs startLine: 410 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS syntax: content: public void GetSafeArea(DisplayHandle handle, out Box2i area) parameters: - id: handle - type: OpenTK.Core.Platform.DisplayHandle + type: OpenTK.Platform.DisplayHandle - id: area type: OpenTK.Mathematics.Box2i content.vb: Public Sub GetSafeArea(handle As DisplayHandle, area As Box2i) overload: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetSafeArea* nameWithType.vb: MacOSDisplayComponent.GetSafeArea(DisplayHandle, Box2i) - fullName.vb: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetSafeArea(OpenTK.Core.Platform.DisplayHandle, OpenTK.Mathematics.Box2i) + fullName.vb: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetSafeArea(OpenTK.Platform.DisplayHandle, OpenTK.Mathematics.Box2i) name.vb: GetSafeArea(DisplayHandle, Box2i) -- uid: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetSafeLeftAuxArea(OpenTK.Core.Platform.DisplayHandle,OpenTK.Mathematics.Box2i@) - commentId: M:OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetSafeLeftAuxArea(OpenTK.Core.Platform.DisplayHandle,OpenTK.Mathematics.Box2i@) - id: GetSafeLeftAuxArea(OpenTK.Core.Platform.DisplayHandle,OpenTK.Mathematics.Box2i@) +- uid: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetSafeLeftAuxArea(OpenTK.Platform.DisplayHandle,OpenTK.Mathematics.Box2i@) + commentId: M:OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetSafeLeftAuxArea(OpenTK.Platform.DisplayHandle,OpenTK.Mathematics.Box2i@) + id: GetSafeLeftAuxArea(OpenTK.Platform.DisplayHandle,OpenTK.Mathematics.Box2i@) parent: OpenTK.Platform.Native.macOS.MacOSDisplayComponent langs: - csharp - vb name: GetSafeLeftAuxArea(DisplayHandle, out Box2i) nameWithType: MacOSDisplayComponent.GetSafeLeftAuxArea(DisplayHandle, out Box2i) - fullName: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetSafeLeftAuxArea(OpenTK.Core.Platform.DisplayHandle, out OpenTK.Mathematics.Box2i) + fullName: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetSafeLeftAuxArea(OpenTK.Platform.DisplayHandle, out OpenTK.Mathematics.Box2i) type: Method source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSDisplayComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetSafeLeftAuxArea - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSDisplayComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSDisplayComponent.cs startLine: 439 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: >- The the top left unobscured area of the screen. @@ -747,7 +671,7 @@ items: content: public bool GetSafeLeftAuxArea(DisplayHandle handle, out Box2i area) parameters: - id: handle - type: OpenTK.Core.Platform.DisplayHandle + type: OpenTK.Platform.DisplayHandle description: The display to get the safe area of. - id: area type: OpenTK.Mathematics.Box2i @@ -758,29 +682,25 @@ items: content.vb: Public Function GetSafeLeftAuxArea(handle As DisplayHandle, area As Box2i) As Boolean overload: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetSafeLeftAuxArea* nameWithType.vb: MacOSDisplayComponent.GetSafeLeftAuxArea(DisplayHandle, Box2i) - fullName.vb: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetSafeLeftAuxArea(OpenTK.Core.Platform.DisplayHandle, OpenTK.Mathematics.Box2i) + fullName.vb: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetSafeLeftAuxArea(OpenTK.Platform.DisplayHandle, OpenTK.Mathematics.Box2i) name.vb: GetSafeLeftAuxArea(DisplayHandle, Box2i) -- uid: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetSafeRightAuxArea(OpenTK.Core.Platform.DisplayHandle,OpenTK.Mathematics.Box2i@) - commentId: M:OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetSafeRightAuxArea(OpenTK.Core.Platform.DisplayHandle,OpenTK.Mathematics.Box2i@) - id: GetSafeRightAuxArea(OpenTK.Core.Platform.DisplayHandle,OpenTK.Mathematics.Box2i@) +- uid: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetSafeRightAuxArea(OpenTK.Platform.DisplayHandle,OpenTK.Mathematics.Box2i@) + commentId: M:OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetSafeRightAuxArea(OpenTK.Platform.DisplayHandle,OpenTK.Mathematics.Box2i@) + id: GetSafeRightAuxArea(OpenTK.Platform.DisplayHandle,OpenTK.Mathematics.Box2i@) parent: OpenTK.Platform.Native.macOS.MacOSDisplayComponent langs: - csharp - vb name: GetSafeRightAuxArea(DisplayHandle, out Box2i) nameWithType: MacOSDisplayComponent.GetSafeRightAuxArea(DisplayHandle, out Box2i) - fullName: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetSafeRightAuxArea(OpenTK.Core.Platform.DisplayHandle, out OpenTK.Mathematics.Box2i) + fullName: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetSafeRightAuxArea(OpenTK.Platform.DisplayHandle, out OpenTK.Mathematics.Box2i) type: Method source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSDisplayComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetSafeRightAuxArea - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSDisplayComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSDisplayComponent.cs startLine: 470 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: >- The the top right unobscured area of the screen. @@ -795,7 +715,7 @@ items: content: public bool GetSafeRightAuxArea(DisplayHandle handle, out Box2i area) parameters: - id: handle - type: OpenTK.Core.Platform.DisplayHandle + type: OpenTK.Platform.DisplayHandle description: The display to get the safe area of. - id: area type: OpenTK.Mathematics.Box2i @@ -806,29 +726,25 @@ items: content.vb: Public Function GetSafeRightAuxArea(handle As DisplayHandle, area As Box2i) As Boolean overload: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetSafeRightAuxArea* nameWithType.vb: MacOSDisplayComponent.GetSafeRightAuxArea(DisplayHandle, Box2i) - fullName.vb: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetSafeRightAuxArea(OpenTK.Core.Platform.DisplayHandle, OpenTK.Mathematics.Box2i) + fullName.vb: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetSafeRightAuxArea(OpenTK.Platform.DisplayHandle, OpenTK.Mathematics.Box2i) name.vb: GetSafeRightAuxArea(DisplayHandle, Box2i) -- uid: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetRefreshRate(OpenTK.Core.Platform.DisplayHandle,System.Single@) - commentId: M:OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetRefreshRate(OpenTK.Core.Platform.DisplayHandle,System.Single@) - id: GetRefreshRate(OpenTK.Core.Platform.DisplayHandle,System.Single@) +- uid: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetRefreshRate(OpenTK.Platform.DisplayHandle,System.Single@) + commentId: M:OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetRefreshRate(OpenTK.Platform.DisplayHandle,System.Single@) + id: GetRefreshRate(OpenTK.Platform.DisplayHandle,System.Single@) parent: OpenTK.Platform.Native.macOS.MacOSDisplayComponent langs: - csharp - vb name: GetRefreshRate(DisplayHandle, out float) nameWithType: MacOSDisplayComponent.GetRefreshRate(DisplayHandle, out float) - fullName: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetRefreshRate(OpenTK.Core.Platform.DisplayHandle, out float) + fullName: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetRefreshRate(OpenTK.Platform.DisplayHandle, out float) type: Method source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSDisplayComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetRefreshRate - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSDisplayComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSDisplayComponent.cs startLine: 493 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: Get the refresh rate if the specified display. example: [] @@ -836,7 +752,7 @@ items: content: public void GetRefreshRate(DisplayHandle handle, out float refreshRate) parameters: - id: handle - type: OpenTK.Core.Platform.DisplayHandle + type: OpenTK.Platform.DisplayHandle description: Handle to a display. - id: refreshRate type: System.Single @@ -844,31 +760,27 @@ items: content.vb: Public Sub GetRefreshRate(handle As DisplayHandle, refreshRate As Single) overload: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetRefreshRate* implements: - - OpenTK.Core.Platform.IDisplayComponent.GetRefreshRate(OpenTK.Core.Platform.DisplayHandle,System.Single@) + - OpenTK.Platform.IDisplayComponent.GetRefreshRate(OpenTK.Platform.DisplayHandle,System.Single@) nameWithType.vb: MacOSDisplayComponent.GetRefreshRate(DisplayHandle, Single) - fullName.vb: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetRefreshRate(OpenTK.Core.Platform.DisplayHandle, Single) + fullName.vb: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetRefreshRate(OpenTK.Platform.DisplayHandle, Single) name.vb: GetRefreshRate(DisplayHandle, Single) -- uid: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetDisplayScale(OpenTK.Core.Platform.DisplayHandle,System.Single@,System.Single@) - commentId: M:OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetDisplayScale(OpenTK.Core.Platform.DisplayHandle,System.Single@,System.Single@) - id: GetDisplayScale(OpenTK.Core.Platform.DisplayHandle,System.Single@,System.Single@) +- uid: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetDisplayScale(OpenTK.Platform.DisplayHandle,System.Single@,System.Single@) + commentId: M:OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetDisplayScale(OpenTK.Platform.DisplayHandle,System.Single@,System.Single@) + id: GetDisplayScale(OpenTK.Platform.DisplayHandle,System.Single@,System.Single@) parent: OpenTK.Platform.Native.macOS.MacOSDisplayComponent langs: - csharp - vb name: GetDisplayScale(DisplayHandle, out float, out float) nameWithType: MacOSDisplayComponent.GetDisplayScale(DisplayHandle, out float, out float) - fullName: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetDisplayScale(OpenTK.Core.Platform.DisplayHandle, out float, out float) + fullName: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetDisplayScale(OpenTK.Platform.DisplayHandle, out float, out float) type: Method source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSDisplayComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetDisplayScale - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSDisplayComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSDisplayComponent.cs startLine: 518 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: Get the scale of the display. example: [] @@ -876,7 +788,7 @@ items: content: public void GetDisplayScale(DisplayHandle handle, out float scaleX, out float scaleY) parameters: - id: handle - type: OpenTK.Core.Platform.DisplayHandle + type: OpenTK.Platform.DisplayHandle description: Handle to a display. - id: scaleX type: System.Single @@ -887,31 +799,27 @@ items: content.vb: Public Sub GetDisplayScale(handle As DisplayHandle, scaleX As Single, scaleY As Single) overload: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetDisplayScale* implements: - - OpenTK.Core.Platform.IDisplayComponent.GetDisplayScale(OpenTK.Core.Platform.DisplayHandle,System.Single@,System.Single@) + - OpenTK.Platform.IDisplayComponent.GetDisplayScale(OpenTK.Platform.DisplayHandle,System.Single@,System.Single@) nameWithType.vb: MacOSDisplayComponent.GetDisplayScale(DisplayHandle, Single, Single) - fullName.vb: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetDisplayScale(OpenTK.Core.Platform.DisplayHandle, Single, Single) + fullName.vb: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetDisplayScale(OpenTK.Platform.DisplayHandle, Single, Single) name.vb: GetDisplayScale(DisplayHandle, Single, Single) -- uid: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetDirectDisplayID(OpenTK.Core.Platform.DisplayHandle) - commentId: M:OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetDirectDisplayID(OpenTK.Core.Platform.DisplayHandle) - id: GetDirectDisplayID(OpenTK.Core.Platform.DisplayHandle) +- uid: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetDirectDisplayID(OpenTK.Platform.DisplayHandle) + commentId: M:OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetDirectDisplayID(OpenTK.Platform.DisplayHandle) + id: GetDirectDisplayID(OpenTK.Platform.DisplayHandle) parent: OpenTK.Platform.Native.macOS.MacOSDisplayComponent langs: - csharp - vb name: GetDirectDisplayID(DisplayHandle) nameWithType: MacOSDisplayComponent.GetDirectDisplayID(DisplayHandle) - fullName: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetDirectDisplayID(OpenTK.Core.Platform.DisplayHandle) + fullName: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetDirectDisplayID(OpenTK.Platform.DisplayHandle) type: Method source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSDisplayComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetDirectDisplayID - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSDisplayComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSDisplayComponent.cs startLine: 536 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: Returns the CGDirectDisplayID associated with this display handle. example: [] @@ -919,7 +827,7 @@ items: content: public uint GetDirectDisplayID(DisplayHandle handle) parameters: - id: handle - type: OpenTK.Core.Platform.DisplayHandle + type: OpenTK.Platform.DisplayHandle description: A handle to a display to get the associated CGDirectDisplayID from. return: type: System.UInt32 @@ -976,20 +884,20 @@ references: nameWithType.vb: Object fullName.vb: Object name.vb: Object -- uid: OpenTK.Core.Platform.IDisplayComponent - commentId: T:OpenTK.Core.Platform.IDisplayComponent - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.IDisplayComponent.html +- uid: OpenTK.Platform.IDisplayComponent + commentId: T:OpenTK.Platform.IDisplayComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IDisplayComponent.html name: IDisplayComponent nameWithType: IDisplayComponent - fullName: OpenTK.Core.Platform.IDisplayComponent -- uid: OpenTK.Core.Platform.IPalComponent - commentId: T:OpenTK.Core.Platform.IPalComponent - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.IPalComponent.html + fullName: OpenTK.Platform.IDisplayComponent +- uid: OpenTK.Platform.IPalComponent + commentId: T:OpenTK.Platform.IPalComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IPalComponent.html name: IPalComponent nameWithType: IPalComponent - fullName: OpenTK.Core.Platform.IPalComponent + fullName: OpenTK.Platform.IPalComponent - uid: System.Object.Equals(System.Object) commentId: M:System.Object.Equals(System.Object) parent: System.Object @@ -1216,49 +1124,41 @@ references: name: System nameWithType: System fullName: System -- uid: OpenTK.Core.Platform - commentId: N:OpenTK.Core.Platform +- uid: OpenTK.Platform + commentId: N:OpenTK.Platform href: OpenTK.html - name: OpenTK.Core.Platform - nameWithType: OpenTK.Core.Platform - fullName: OpenTK.Core.Platform + name: OpenTK.Platform + nameWithType: OpenTK.Platform + fullName: OpenTK.Platform spec.csharp: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html spec.vb: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html - uid: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.Name* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSDisplayComponent.Name href: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.html#OpenTK_Platform_Native_macOS_MacOSDisplayComponent_Name name: Name nameWithType: MacOSDisplayComponent.Name fullName: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.Name -- uid: OpenTK.Core.Platform.IPalComponent.Name - commentId: P:OpenTK.Core.Platform.IPalComponent.Name - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Name +- uid: OpenTK.Platform.IPalComponent.Name + commentId: P:OpenTK.Platform.IPalComponent.Name + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Name name: Name nameWithType: IPalComponent.Name - fullName: OpenTK.Core.Platform.IPalComponent.Name + fullName: OpenTK.Platform.IPalComponent.Name - uid: System.String commentId: T:System.String parent: System @@ -1276,33 +1176,33 @@ references: name: Provides nameWithType: MacOSDisplayComponent.Provides fullName: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.Provides -- uid: OpenTK.Core.Platform.IPalComponent.Provides - commentId: P:OpenTK.Core.Platform.IPalComponent.Provides - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Provides +- uid: OpenTK.Platform.IPalComponent.Provides + commentId: P:OpenTK.Platform.IPalComponent.Provides + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Provides name: Provides nameWithType: IPalComponent.Provides - fullName: OpenTK.Core.Platform.IPalComponent.Provides -- uid: OpenTK.Core.Platform.PalComponents - commentId: T:OpenTK.Core.Platform.PalComponents - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.PalComponents.html + fullName: OpenTK.Platform.IPalComponent.Provides +- uid: OpenTK.Platform.PalComponents + commentId: T:OpenTK.Platform.PalComponents + parent: OpenTK.Platform + href: OpenTK.Platform.PalComponents.html name: PalComponents nameWithType: PalComponents - fullName: OpenTK.Core.Platform.PalComponents + fullName: OpenTK.Platform.PalComponents - uid: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.Logger* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSDisplayComponent.Logger href: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.html#OpenTK_Platform_Native_macOS_MacOSDisplayComponent_Logger name: Logger nameWithType: MacOSDisplayComponent.Logger fullName: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.Logger -- uid: OpenTK.Core.Platform.IPalComponent.Logger - commentId: P:OpenTK.Core.Platform.IPalComponent.Logger - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Logger +- uid: OpenTK.Platform.IPalComponent.Logger + commentId: P:OpenTK.Platform.IPalComponent.Logger + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Logger name: Logger nameWithType: IPalComponent.Logger - fullName: OpenTK.Core.Platform.IPalComponent.Logger + fullName: OpenTK.Platform.IPalComponent.Logger - uid: OpenTK.Core.Utility.ILogger commentId: T:OpenTK.Core.Utility.ILogger parent: OpenTK.Core.Utility @@ -1342,55 +1242,112 @@ references: href: OpenTK.Core.Utility.html - uid: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.Initialize* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSDisplayComponent.Initialize - href: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.html#OpenTK_Platform_Native_macOS_MacOSDisplayComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + href: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.html#OpenTK_Platform_Native_macOS_MacOSDisplayComponent_Initialize_OpenTK_Platform_ToolkitOptions_ name: Initialize nameWithType: MacOSDisplayComponent.Initialize fullName: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.Initialize -- uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - commentId: M:OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ +- uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ name: Initialize(ToolkitOptions) nameWithType: IPalComponent.Initialize(ToolkitOptions) - fullName: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + fullName: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) spec.csharp: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + - uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.ToolkitOptions + - uid: OpenTK.Platform.ToolkitOptions name: ToolkitOptions - href: OpenTK.Core.Platform.ToolkitOptions.html + href: OpenTK.Platform.ToolkitOptions.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + - uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.ToolkitOptions + - uid: OpenTK.Platform.ToolkitOptions name: ToolkitOptions - href: OpenTK.Core.Platform.ToolkitOptions.html + href: OpenTK.Platform.ToolkitOptions.html - name: ) -- uid: OpenTK.Core.Platform.ToolkitOptions - commentId: T:OpenTK.Core.Platform.ToolkitOptions - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.ToolkitOptions.html +- uid: OpenTK.Platform.ToolkitOptions + commentId: T:OpenTK.Platform.ToolkitOptions + parent: OpenTK.Platform + href: OpenTK.Platform.ToolkitOptions.html name: ToolkitOptions nameWithType: ToolkitOptions - fullName: OpenTK.Core.Platform.ToolkitOptions + fullName: OpenTK.Platform.ToolkitOptions +- uid: OpenTK.Platform.IDisplayComponent.GetVirtualPosition(OpenTK.Platform.DisplayHandle,System.Int32@,System.Int32@) + commentId: M:OpenTK.Platform.IDisplayComponent.GetVirtualPosition(OpenTK.Platform.DisplayHandle,System.Int32@,System.Int32@) + parent: OpenTK.Platform.IDisplayComponent + isExternal: true + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_GetVirtualPosition_OpenTK_Platform_DisplayHandle_System_Int32__System_Int32__ + name: GetVirtualPosition(DisplayHandle, out int, out int) + nameWithType: IDisplayComponent.GetVirtualPosition(DisplayHandle, out int, out int) + fullName: OpenTK.Platform.IDisplayComponent.GetVirtualPosition(OpenTK.Platform.DisplayHandle, out int, out int) + nameWithType.vb: IDisplayComponent.GetVirtualPosition(DisplayHandle, Integer, Integer) + fullName.vb: OpenTK.Platform.IDisplayComponent.GetVirtualPosition(OpenTK.Platform.DisplayHandle, Integer, Integer) + name.vb: GetVirtualPosition(DisplayHandle, Integer, Integer) + spec.csharp: + - uid: OpenTK.Platform.IDisplayComponent.GetVirtualPosition(OpenTK.Platform.DisplayHandle,System.Int32@,System.Int32@) + name: GetVirtualPosition + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_GetVirtualPosition_OpenTK_Platform_DisplayHandle_System_Int32__System_Int32__ + - name: ( + - uid: OpenTK.Platform.DisplayHandle + name: DisplayHandle + href: OpenTK.Platform.DisplayHandle.html + - name: ',' + - name: " " + - name: out + - name: " " + - uid: System.Int32 + name: int + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ',' + - name: " " + - name: out + - name: " " + - uid: System.Int32 + name: int + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ) + spec.vb: + - uid: OpenTK.Platform.IDisplayComponent.GetVirtualPosition(OpenTK.Platform.DisplayHandle,System.Int32@,System.Int32@) + name: GetVirtualPosition + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_GetVirtualPosition_OpenTK_Platform_DisplayHandle_System_Int32__System_Int32__ + - name: ( + - uid: OpenTK.Platform.DisplayHandle + name: DisplayHandle + href: OpenTK.Platform.DisplayHandle.html + - name: ',' + - name: " " + - uid: System.Int32 + name: Integer + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ',' + - name: " " + - uid: System.Int32 + name: Integer + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ) - uid: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.CanGetVirtualPosition* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSDisplayComponent.CanGetVirtualPosition href: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.html#OpenTK_Platform_Native_macOS_MacOSDisplayComponent_CanGetVirtualPosition name: CanGetVirtualPosition nameWithType: MacOSDisplayComponent.CanGetVirtualPosition fullName: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.CanGetVirtualPosition -- uid: OpenTK.Core.Platform.IDisplayComponent.CanGetVirtualPosition - commentId: P:OpenTK.Core.Platform.IDisplayComponent.CanGetVirtualPosition - parent: OpenTK.Core.Platform.IDisplayComponent - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_CanGetVirtualPosition +- uid: OpenTK.Platform.IDisplayComponent.CanGetVirtualPosition + commentId: P:OpenTK.Platform.IDisplayComponent.CanGetVirtualPosition + parent: OpenTK.Platform.IDisplayComponent + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_CanGetVirtualPosition name: CanGetVirtualPosition nameWithType: IDisplayComponent.CanGetVirtualPosition - fullName: OpenTK.Core.Platform.IDisplayComponent.CanGetVirtualPosition + fullName: OpenTK.Platform.IDisplayComponent.CanGetVirtualPosition - uid: System.Boolean commentId: T:System.Boolean parent: System @@ -1408,23 +1365,23 @@ references: name: GetDisplayCount nameWithType: MacOSDisplayComponent.GetDisplayCount fullName: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetDisplayCount -- uid: OpenTK.Core.Platform.IDisplayComponent.GetDisplayCount - commentId: M:OpenTK.Core.Platform.IDisplayComponent.GetDisplayCount - parent: OpenTK.Core.Platform.IDisplayComponent - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_GetDisplayCount +- uid: OpenTK.Platform.IDisplayComponent.GetDisplayCount + commentId: M:OpenTK.Platform.IDisplayComponent.GetDisplayCount + parent: OpenTK.Platform.IDisplayComponent + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_GetDisplayCount name: GetDisplayCount() nameWithType: IDisplayComponent.GetDisplayCount() - fullName: OpenTK.Core.Platform.IDisplayComponent.GetDisplayCount() + fullName: OpenTK.Platform.IDisplayComponent.GetDisplayCount() spec.csharp: - - uid: OpenTK.Core.Platform.IDisplayComponent.GetDisplayCount + - uid: OpenTK.Platform.IDisplayComponent.GetDisplayCount name: GetDisplayCount - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_GetDisplayCount + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_GetDisplayCount - name: ( - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IDisplayComponent.GetDisplayCount + - uid: OpenTK.Platform.IDisplayComponent.GetDisplayCount name: GetDisplayCount - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_GetDisplayCount + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_GetDisplayCount - name: ( - name: ) - uid: System.Int32 @@ -1451,21 +1408,21 @@ references: name: Open nameWithType: MacOSDisplayComponent.Open fullName: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.Open -- uid: OpenTK.Core.Platform.IDisplayComponent.Open(System.Int32) - commentId: M:OpenTK.Core.Platform.IDisplayComponent.Open(System.Int32) - parent: OpenTK.Core.Platform.IDisplayComponent +- uid: OpenTK.Platform.IDisplayComponent.Open(System.Int32) + commentId: M:OpenTK.Platform.IDisplayComponent.Open(System.Int32) + parent: OpenTK.Platform.IDisplayComponent isExternal: true - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_Open_System_Int32_ + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_Open_System_Int32_ name: Open(int) nameWithType: IDisplayComponent.Open(int) - fullName: OpenTK.Core.Platform.IDisplayComponent.Open(int) + fullName: OpenTK.Platform.IDisplayComponent.Open(int) nameWithType.vb: IDisplayComponent.Open(Integer) - fullName.vb: OpenTK.Core.Platform.IDisplayComponent.Open(Integer) + fullName.vb: OpenTK.Platform.IDisplayComponent.Open(Integer) name.vb: Open(Integer) spec.csharp: - - uid: OpenTK.Core.Platform.IDisplayComponent.Open(System.Int32) + - uid: OpenTK.Platform.IDisplayComponent.Open(System.Int32) name: Open - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_Open_System_Int32_ + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_Open_System_Int32_ - name: ( - uid: System.Int32 name: int @@ -1473,45 +1430,45 @@ references: href: https://learn.microsoft.com/dotnet/api/system.int32 - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IDisplayComponent.Open(System.Int32) + - uid: OpenTK.Platform.IDisplayComponent.Open(System.Int32) name: Open - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_Open_System_Int32_ + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_Open_System_Int32_ - name: ( - uid: System.Int32 name: Integer isExternal: true href: https://learn.microsoft.com/dotnet/api/system.int32 - name: ) -- uid: OpenTK.Core.Platform.DisplayHandle - commentId: T:OpenTK.Core.Platform.DisplayHandle - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.DisplayHandle.html +- uid: OpenTK.Platform.DisplayHandle + commentId: T:OpenTK.Platform.DisplayHandle + parent: OpenTK.Platform + href: OpenTK.Platform.DisplayHandle.html name: DisplayHandle nameWithType: DisplayHandle - fullName: OpenTK.Core.Platform.DisplayHandle + fullName: OpenTK.Platform.DisplayHandle - uid: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.OpenPrimary* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSDisplayComponent.OpenPrimary href: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.html#OpenTK_Platform_Native_macOS_MacOSDisplayComponent_OpenPrimary name: OpenPrimary nameWithType: MacOSDisplayComponent.OpenPrimary fullName: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.OpenPrimary -- uid: OpenTK.Core.Platform.IDisplayComponent.OpenPrimary - commentId: M:OpenTK.Core.Platform.IDisplayComponent.OpenPrimary - parent: OpenTK.Core.Platform.IDisplayComponent - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_OpenPrimary +- uid: OpenTK.Platform.IDisplayComponent.OpenPrimary + commentId: M:OpenTK.Platform.IDisplayComponent.OpenPrimary + parent: OpenTK.Platform.IDisplayComponent + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_OpenPrimary name: OpenPrimary() nameWithType: IDisplayComponent.OpenPrimary() - fullName: OpenTK.Core.Platform.IDisplayComponent.OpenPrimary() + fullName: OpenTK.Platform.IDisplayComponent.OpenPrimary() spec.csharp: - - uid: OpenTK.Core.Platform.IDisplayComponent.OpenPrimary + - uid: OpenTK.Platform.IDisplayComponent.OpenPrimary name: OpenPrimary - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_OpenPrimary + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_OpenPrimary - name: ( - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IDisplayComponent.OpenPrimary + - uid: OpenTK.Platform.IDisplayComponent.OpenPrimary name: OpenPrimary - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_OpenPrimary + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_OpenPrimary - name: ( - name: ) - uid: System.ArgumentNullException @@ -1523,296 +1480,239 @@ references: fullName: System.ArgumentNullException - uid: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.Close* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSDisplayComponent.Close - href: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.html#OpenTK_Platform_Native_macOS_MacOSDisplayComponent_Close_OpenTK_Core_Platform_DisplayHandle_ + href: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.html#OpenTK_Platform_Native_macOS_MacOSDisplayComponent_Close_OpenTK_Platform_DisplayHandle_ name: Close nameWithType: MacOSDisplayComponent.Close fullName: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.Close -- uid: OpenTK.Core.Platform.IDisplayComponent.Close(OpenTK.Core.Platform.DisplayHandle) - commentId: M:OpenTK.Core.Platform.IDisplayComponent.Close(OpenTK.Core.Platform.DisplayHandle) - parent: OpenTK.Core.Platform.IDisplayComponent - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_Close_OpenTK_Core_Platform_DisplayHandle_ +- uid: OpenTK.Platform.IDisplayComponent.Close(OpenTK.Platform.DisplayHandle) + commentId: M:OpenTK.Platform.IDisplayComponent.Close(OpenTK.Platform.DisplayHandle) + parent: OpenTK.Platform.IDisplayComponent + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_Close_OpenTK_Platform_DisplayHandle_ name: Close(DisplayHandle) nameWithType: IDisplayComponent.Close(DisplayHandle) - fullName: OpenTK.Core.Platform.IDisplayComponent.Close(OpenTK.Core.Platform.DisplayHandle) + fullName: OpenTK.Platform.IDisplayComponent.Close(OpenTK.Platform.DisplayHandle) spec.csharp: - - uid: OpenTK.Core.Platform.IDisplayComponent.Close(OpenTK.Core.Platform.DisplayHandle) + - uid: OpenTK.Platform.IDisplayComponent.Close(OpenTK.Platform.DisplayHandle) name: Close - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_Close_OpenTK_Core_Platform_DisplayHandle_ + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_Close_OpenTK_Platform_DisplayHandle_ - name: ( - - uid: OpenTK.Core.Platform.DisplayHandle + - uid: OpenTK.Platform.DisplayHandle name: DisplayHandle - href: OpenTK.Core.Platform.DisplayHandle.html + href: OpenTK.Platform.DisplayHandle.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IDisplayComponent.Close(OpenTK.Core.Platform.DisplayHandle) + - uid: OpenTK.Platform.IDisplayComponent.Close(OpenTK.Platform.DisplayHandle) name: Close - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_Close_OpenTK_Core_Platform_DisplayHandle_ + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_Close_OpenTK_Platform_DisplayHandle_ - name: ( - - uid: OpenTK.Core.Platform.DisplayHandle + - uid: OpenTK.Platform.DisplayHandle name: DisplayHandle - href: OpenTK.Core.Platform.DisplayHandle.html + href: OpenTK.Platform.DisplayHandle.html - name: ) - uid: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.IsPrimary* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSDisplayComponent.IsPrimary - href: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.html#OpenTK_Platform_Native_macOS_MacOSDisplayComponent_IsPrimary_OpenTK_Core_Platform_DisplayHandle_ + href: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.html#OpenTK_Platform_Native_macOS_MacOSDisplayComponent_IsPrimary_OpenTK_Platform_DisplayHandle_ name: IsPrimary nameWithType: MacOSDisplayComponent.IsPrimary fullName: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.IsPrimary -- uid: OpenTK.Core.Platform.IDisplayComponent.IsPrimary(OpenTK.Core.Platform.DisplayHandle) - commentId: M:OpenTK.Core.Platform.IDisplayComponent.IsPrimary(OpenTK.Core.Platform.DisplayHandle) - parent: OpenTK.Core.Platform.IDisplayComponent - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_IsPrimary_OpenTK_Core_Platform_DisplayHandle_ +- uid: OpenTK.Platform.IDisplayComponent.IsPrimary(OpenTK.Platform.DisplayHandle) + commentId: M:OpenTK.Platform.IDisplayComponent.IsPrimary(OpenTK.Platform.DisplayHandle) + parent: OpenTK.Platform.IDisplayComponent + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_IsPrimary_OpenTK_Platform_DisplayHandle_ name: IsPrimary(DisplayHandle) nameWithType: IDisplayComponent.IsPrimary(DisplayHandle) - fullName: OpenTK.Core.Platform.IDisplayComponent.IsPrimary(OpenTK.Core.Platform.DisplayHandle) + fullName: OpenTK.Platform.IDisplayComponent.IsPrimary(OpenTK.Platform.DisplayHandle) spec.csharp: - - uid: OpenTK.Core.Platform.IDisplayComponent.IsPrimary(OpenTK.Core.Platform.DisplayHandle) + - uid: OpenTK.Platform.IDisplayComponent.IsPrimary(OpenTK.Platform.DisplayHandle) name: IsPrimary - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_IsPrimary_OpenTK_Core_Platform_DisplayHandle_ + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_IsPrimary_OpenTK_Platform_DisplayHandle_ - name: ( - - uid: OpenTK.Core.Platform.DisplayHandle + - uid: OpenTK.Platform.DisplayHandle name: DisplayHandle - href: OpenTK.Core.Platform.DisplayHandle.html + href: OpenTK.Platform.DisplayHandle.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IDisplayComponent.IsPrimary(OpenTK.Core.Platform.DisplayHandle) + - uid: OpenTK.Platform.IDisplayComponent.IsPrimary(OpenTK.Platform.DisplayHandle) name: IsPrimary - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_IsPrimary_OpenTK_Core_Platform_DisplayHandle_ + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_IsPrimary_OpenTK_Platform_DisplayHandle_ - name: ( - - uid: OpenTK.Core.Platform.DisplayHandle + - uid: OpenTK.Platform.DisplayHandle name: DisplayHandle - href: OpenTK.Core.Platform.DisplayHandle.html + href: OpenTK.Platform.DisplayHandle.html - name: ) - uid: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetName* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetName - href: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.html#OpenTK_Platform_Native_macOS_MacOSDisplayComponent_GetName_OpenTK_Core_Platform_DisplayHandle_ + href: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.html#OpenTK_Platform_Native_macOS_MacOSDisplayComponent_GetName_OpenTK_Platform_DisplayHandle_ name: GetName nameWithType: MacOSDisplayComponent.GetName fullName: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetName -- uid: OpenTK.Core.Platform.IDisplayComponent.GetName(OpenTK.Core.Platform.DisplayHandle) - commentId: M:OpenTK.Core.Platform.IDisplayComponent.GetName(OpenTK.Core.Platform.DisplayHandle) - parent: OpenTK.Core.Platform.IDisplayComponent - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_GetName_OpenTK_Core_Platform_DisplayHandle_ +- uid: OpenTK.Platform.IDisplayComponent.GetName(OpenTK.Platform.DisplayHandle) + commentId: M:OpenTK.Platform.IDisplayComponent.GetName(OpenTK.Platform.DisplayHandle) + parent: OpenTK.Platform.IDisplayComponent + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_GetName_OpenTK_Platform_DisplayHandle_ name: GetName(DisplayHandle) nameWithType: IDisplayComponent.GetName(DisplayHandle) - fullName: OpenTK.Core.Platform.IDisplayComponent.GetName(OpenTK.Core.Platform.DisplayHandle) + fullName: OpenTK.Platform.IDisplayComponent.GetName(OpenTK.Platform.DisplayHandle) spec.csharp: - - uid: OpenTK.Core.Platform.IDisplayComponent.GetName(OpenTK.Core.Platform.DisplayHandle) + - uid: OpenTK.Platform.IDisplayComponent.GetName(OpenTK.Platform.DisplayHandle) name: GetName - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_GetName_OpenTK_Core_Platform_DisplayHandle_ + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_GetName_OpenTK_Platform_DisplayHandle_ - name: ( - - uid: OpenTK.Core.Platform.DisplayHandle + - uid: OpenTK.Platform.DisplayHandle name: DisplayHandle - href: OpenTK.Core.Platform.DisplayHandle.html + href: OpenTK.Platform.DisplayHandle.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IDisplayComponent.GetName(OpenTK.Core.Platform.DisplayHandle) + - uid: OpenTK.Platform.IDisplayComponent.GetName(OpenTK.Platform.DisplayHandle) name: GetName - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_GetName_OpenTK_Core_Platform_DisplayHandle_ + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_GetName_OpenTK_Platform_DisplayHandle_ - name: ( - - uid: OpenTK.Core.Platform.DisplayHandle + - uid: OpenTK.Platform.DisplayHandle name: DisplayHandle - href: OpenTK.Core.Platform.DisplayHandle.html + href: OpenTK.Platform.DisplayHandle.html - name: ) - uid: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetVideoMode* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetVideoMode - href: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.html#OpenTK_Platform_Native_macOS_MacOSDisplayComponent_GetVideoMode_OpenTK_Core_Platform_DisplayHandle_OpenTK_Core_Platform_VideoMode__ + href: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.html#OpenTK_Platform_Native_macOS_MacOSDisplayComponent_GetVideoMode_OpenTK_Platform_DisplayHandle_OpenTK_Platform_VideoMode__ name: GetVideoMode nameWithType: MacOSDisplayComponent.GetVideoMode fullName: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetVideoMode -- uid: OpenTK.Core.Platform.IDisplayComponent.GetVideoMode(OpenTK.Core.Platform.DisplayHandle,OpenTK.Core.Platform.VideoMode@) - commentId: M:OpenTK.Core.Platform.IDisplayComponent.GetVideoMode(OpenTK.Core.Platform.DisplayHandle,OpenTK.Core.Platform.VideoMode@) - parent: OpenTK.Core.Platform.IDisplayComponent - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_GetVideoMode_OpenTK_Core_Platform_DisplayHandle_OpenTK_Core_Platform_VideoMode__ +- uid: OpenTK.Platform.IDisplayComponent.GetVideoMode(OpenTK.Platform.DisplayHandle,OpenTK.Platform.VideoMode@) + commentId: M:OpenTK.Platform.IDisplayComponent.GetVideoMode(OpenTK.Platform.DisplayHandle,OpenTK.Platform.VideoMode@) + parent: OpenTK.Platform.IDisplayComponent + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_GetVideoMode_OpenTK_Platform_DisplayHandle_OpenTK_Platform_VideoMode__ name: GetVideoMode(DisplayHandle, out VideoMode) nameWithType: IDisplayComponent.GetVideoMode(DisplayHandle, out VideoMode) - fullName: OpenTK.Core.Platform.IDisplayComponent.GetVideoMode(OpenTK.Core.Platform.DisplayHandle, out OpenTK.Core.Platform.VideoMode) + fullName: OpenTK.Platform.IDisplayComponent.GetVideoMode(OpenTK.Platform.DisplayHandle, out OpenTK.Platform.VideoMode) nameWithType.vb: IDisplayComponent.GetVideoMode(DisplayHandle, VideoMode) - fullName.vb: OpenTK.Core.Platform.IDisplayComponent.GetVideoMode(OpenTK.Core.Platform.DisplayHandle, OpenTK.Core.Platform.VideoMode) + fullName.vb: OpenTK.Platform.IDisplayComponent.GetVideoMode(OpenTK.Platform.DisplayHandle, OpenTK.Platform.VideoMode) name.vb: GetVideoMode(DisplayHandle, VideoMode) spec.csharp: - - uid: OpenTK.Core.Platform.IDisplayComponent.GetVideoMode(OpenTK.Core.Platform.DisplayHandle,OpenTK.Core.Platform.VideoMode@) + - uid: OpenTK.Platform.IDisplayComponent.GetVideoMode(OpenTK.Platform.DisplayHandle,OpenTK.Platform.VideoMode@) name: GetVideoMode - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_GetVideoMode_OpenTK_Core_Platform_DisplayHandle_OpenTK_Core_Platform_VideoMode__ + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_GetVideoMode_OpenTK_Platform_DisplayHandle_OpenTK_Platform_VideoMode__ - name: ( - - uid: OpenTK.Core.Platform.DisplayHandle + - uid: OpenTK.Platform.DisplayHandle name: DisplayHandle - href: OpenTK.Core.Platform.DisplayHandle.html + href: OpenTK.Platform.DisplayHandle.html - name: ',' - name: " " - name: out - name: " " - - uid: OpenTK.Core.Platform.VideoMode + - uid: OpenTK.Platform.VideoMode name: VideoMode - href: OpenTK.Core.Platform.VideoMode.html + href: OpenTK.Platform.VideoMode.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IDisplayComponent.GetVideoMode(OpenTK.Core.Platform.DisplayHandle,OpenTK.Core.Platform.VideoMode@) + - uid: OpenTK.Platform.IDisplayComponent.GetVideoMode(OpenTK.Platform.DisplayHandle,OpenTK.Platform.VideoMode@) name: GetVideoMode - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_GetVideoMode_OpenTK_Core_Platform_DisplayHandle_OpenTK_Core_Platform_VideoMode__ + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_GetVideoMode_OpenTK_Platform_DisplayHandle_OpenTK_Platform_VideoMode__ - name: ( - - uid: OpenTK.Core.Platform.DisplayHandle + - uid: OpenTK.Platform.DisplayHandle name: DisplayHandle - href: OpenTK.Core.Platform.DisplayHandle.html + href: OpenTK.Platform.DisplayHandle.html - name: ',' - name: " " - - uid: OpenTK.Core.Platform.VideoMode + - uid: OpenTK.Platform.VideoMode name: VideoMode - href: OpenTK.Core.Platform.VideoMode.html + href: OpenTK.Platform.VideoMode.html - name: ) -- uid: OpenTK.Core.Platform.VideoMode - commentId: T:OpenTK.Core.Platform.VideoMode - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.VideoMode.html +- uid: OpenTK.Platform.VideoMode + commentId: T:OpenTK.Platform.VideoMode + parent: OpenTK.Platform + href: OpenTK.Platform.VideoMode.html name: VideoMode nameWithType: VideoMode - fullName: OpenTK.Core.Platform.VideoMode + fullName: OpenTK.Platform.VideoMode - uid: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetSupportedVideoModes* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetSupportedVideoModes - href: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.html#OpenTK_Platform_Native_macOS_MacOSDisplayComponent_GetSupportedVideoModes_OpenTK_Core_Platform_DisplayHandle_ + href: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.html#OpenTK_Platform_Native_macOS_MacOSDisplayComponent_GetSupportedVideoModes_OpenTK_Platform_DisplayHandle_ name: GetSupportedVideoModes nameWithType: MacOSDisplayComponent.GetSupportedVideoModes fullName: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetSupportedVideoModes -- uid: OpenTK.Core.Platform.IDisplayComponent.GetSupportedVideoModes(OpenTK.Core.Platform.DisplayHandle) - commentId: M:OpenTK.Core.Platform.IDisplayComponent.GetSupportedVideoModes(OpenTK.Core.Platform.DisplayHandle) - parent: OpenTK.Core.Platform.IDisplayComponent - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_GetSupportedVideoModes_OpenTK_Core_Platform_DisplayHandle_ +- uid: OpenTK.Platform.IDisplayComponent.GetSupportedVideoModes(OpenTK.Platform.DisplayHandle) + commentId: M:OpenTK.Platform.IDisplayComponent.GetSupportedVideoModes(OpenTK.Platform.DisplayHandle) + parent: OpenTK.Platform.IDisplayComponent + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_GetSupportedVideoModes_OpenTK_Platform_DisplayHandle_ name: GetSupportedVideoModes(DisplayHandle) nameWithType: IDisplayComponent.GetSupportedVideoModes(DisplayHandle) - fullName: OpenTK.Core.Platform.IDisplayComponent.GetSupportedVideoModes(OpenTK.Core.Platform.DisplayHandle) + fullName: OpenTK.Platform.IDisplayComponent.GetSupportedVideoModes(OpenTK.Platform.DisplayHandle) spec.csharp: - - uid: OpenTK.Core.Platform.IDisplayComponent.GetSupportedVideoModes(OpenTK.Core.Platform.DisplayHandle) + - uid: OpenTK.Platform.IDisplayComponent.GetSupportedVideoModes(OpenTK.Platform.DisplayHandle) name: GetSupportedVideoModes - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_GetSupportedVideoModes_OpenTK_Core_Platform_DisplayHandle_ + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_GetSupportedVideoModes_OpenTK_Platform_DisplayHandle_ - name: ( - - uid: OpenTK.Core.Platform.DisplayHandle + - uid: OpenTK.Platform.DisplayHandle name: DisplayHandle - href: OpenTK.Core.Platform.DisplayHandle.html + href: OpenTK.Platform.DisplayHandle.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IDisplayComponent.GetSupportedVideoModes(OpenTK.Core.Platform.DisplayHandle) + - uid: OpenTK.Platform.IDisplayComponent.GetSupportedVideoModes(OpenTK.Platform.DisplayHandle) name: GetSupportedVideoModes - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_GetSupportedVideoModes_OpenTK_Core_Platform_DisplayHandle_ + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_GetSupportedVideoModes_OpenTK_Platform_DisplayHandle_ - name: ( - - uid: OpenTK.Core.Platform.DisplayHandle + - uid: OpenTK.Platform.DisplayHandle name: DisplayHandle - href: OpenTK.Core.Platform.DisplayHandle.html + href: OpenTK.Platform.DisplayHandle.html - name: ) -- uid: OpenTK.Core.Platform.VideoMode[] +- uid: OpenTK.Platform.VideoMode[] isExternal: true - href: OpenTK.Core.Platform.VideoMode.html + href: OpenTK.Platform.VideoMode.html name: VideoMode[] nameWithType: VideoMode[] - fullName: OpenTK.Core.Platform.VideoMode[] + fullName: OpenTK.Platform.VideoMode[] nameWithType.vb: VideoMode() - fullName.vb: OpenTK.Core.Platform.VideoMode() + fullName.vb: OpenTK.Platform.VideoMode() name.vb: VideoMode() spec.csharp: - - uid: OpenTK.Core.Platform.VideoMode + - uid: OpenTK.Platform.VideoMode name: VideoMode - href: OpenTK.Core.Platform.VideoMode.html + href: OpenTK.Platform.VideoMode.html - name: '[' - name: ']' spec.vb: - - uid: OpenTK.Core.Platform.VideoMode + - uid: OpenTK.Platform.VideoMode name: VideoMode - href: OpenTK.Core.Platform.VideoMode.html + href: OpenTK.Platform.VideoMode.html - name: ( - name: ) -- uid: OpenTK.Core.Platform.PalNotImplementedException - commentId: T:OpenTK.Core.Platform.PalNotImplementedException - href: OpenTK.Core.Platform.PalNotImplementedException.html +- uid: OpenTK.Platform.PalNotImplementedException + commentId: T:OpenTK.Platform.PalNotImplementedException + href: OpenTK.Platform.PalNotImplementedException.html name: PalNotImplementedException nameWithType: PalNotImplementedException - fullName: OpenTK.Core.Platform.PalNotImplementedException + fullName: OpenTK.Platform.PalNotImplementedException - uid: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetVirtualPosition* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetVirtualPosition - href: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.html#OpenTK_Platform_Native_macOS_MacOSDisplayComponent_GetVirtualPosition_OpenTK_Core_Platform_DisplayHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.html#OpenTK_Platform_Native_macOS_MacOSDisplayComponent_GetVirtualPosition_OpenTK_Platform_DisplayHandle_System_Int32__System_Int32__ name: GetVirtualPosition nameWithType: MacOSDisplayComponent.GetVirtualPosition fullName: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetVirtualPosition -- uid: OpenTK.Core.Platform.IDisplayComponent.GetVirtualPosition(OpenTK.Core.Platform.DisplayHandle,System.Int32@,System.Int32@) - commentId: M:OpenTK.Core.Platform.IDisplayComponent.GetVirtualPosition(OpenTK.Core.Platform.DisplayHandle,System.Int32@,System.Int32@) - parent: OpenTK.Core.Platform.IDisplayComponent - isExternal: true - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_GetVirtualPosition_OpenTK_Core_Platform_DisplayHandle_System_Int32__System_Int32__ - name: GetVirtualPosition(DisplayHandle, out int, out int) - nameWithType: IDisplayComponent.GetVirtualPosition(DisplayHandle, out int, out int) - fullName: OpenTK.Core.Platform.IDisplayComponent.GetVirtualPosition(OpenTK.Core.Platform.DisplayHandle, out int, out int) - nameWithType.vb: IDisplayComponent.GetVirtualPosition(DisplayHandle, Integer, Integer) - fullName.vb: OpenTK.Core.Platform.IDisplayComponent.GetVirtualPosition(OpenTK.Core.Platform.DisplayHandle, Integer, Integer) - name.vb: GetVirtualPosition(DisplayHandle, Integer, Integer) - spec.csharp: - - uid: OpenTK.Core.Platform.IDisplayComponent.GetVirtualPosition(OpenTK.Core.Platform.DisplayHandle,System.Int32@,System.Int32@) - name: GetVirtualPosition - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_GetVirtualPosition_OpenTK_Core_Platform_DisplayHandle_System_Int32__System_Int32__ - - name: ( - - uid: OpenTK.Core.Platform.DisplayHandle - name: DisplayHandle - href: OpenTK.Core.Platform.DisplayHandle.html - - name: ',' - - name: " " - - name: out - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - name: out - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) - spec.vb: - - uid: OpenTK.Core.Platform.IDisplayComponent.GetVirtualPosition(OpenTK.Core.Platform.DisplayHandle,System.Int32@,System.Int32@) - name: GetVirtualPosition - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_GetVirtualPosition_OpenTK_Core_Platform_DisplayHandle_System_Int32__System_Int32__ - - name: ( - - uid: OpenTK.Core.Platform.DisplayHandle - name: DisplayHandle - href: OpenTK.Core.Platform.DisplayHandle.html - - name: ',' - - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) - uid: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetResolution* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetResolution - href: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.html#OpenTK_Platform_Native_macOS_MacOSDisplayComponent_GetResolution_OpenTK_Core_Platform_DisplayHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.html#OpenTK_Platform_Native_macOS_MacOSDisplayComponent_GetResolution_OpenTK_Platform_DisplayHandle_System_Int32__System_Int32__ name: GetResolution nameWithType: MacOSDisplayComponent.GetResolution fullName: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetResolution -- uid: OpenTK.Core.Platform.IDisplayComponent.GetResolution(OpenTK.Core.Platform.DisplayHandle,System.Int32@,System.Int32@) - commentId: M:OpenTK.Core.Platform.IDisplayComponent.GetResolution(OpenTK.Core.Platform.DisplayHandle,System.Int32@,System.Int32@) - parent: OpenTK.Core.Platform.IDisplayComponent +- uid: OpenTK.Platform.IDisplayComponent.GetResolution(OpenTK.Platform.DisplayHandle,System.Int32@,System.Int32@) + commentId: M:OpenTK.Platform.IDisplayComponent.GetResolution(OpenTK.Platform.DisplayHandle,System.Int32@,System.Int32@) + parent: OpenTK.Platform.IDisplayComponent isExternal: true - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_GetResolution_OpenTK_Core_Platform_DisplayHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_GetResolution_OpenTK_Platform_DisplayHandle_System_Int32__System_Int32__ name: GetResolution(DisplayHandle, out int, out int) nameWithType: IDisplayComponent.GetResolution(DisplayHandle, out int, out int) - fullName: OpenTK.Core.Platform.IDisplayComponent.GetResolution(OpenTK.Core.Platform.DisplayHandle, out int, out int) + fullName: OpenTK.Platform.IDisplayComponent.GetResolution(OpenTK.Platform.DisplayHandle, out int, out int) nameWithType.vb: IDisplayComponent.GetResolution(DisplayHandle, Integer, Integer) - fullName.vb: OpenTK.Core.Platform.IDisplayComponent.GetResolution(OpenTK.Core.Platform.DisplayHandle, Integer, Integer) + fullName.vb: OpenTK.Platform.IDisplayComponent.GetResolution(OpenTK.Platform.DisplayHandle, Integer, Integer) name.vb: GetResolution(DisplayHandle, Integer, Integer) spec.csharp: - - uid: OpenTK.Core.Platform.IDisplayComponent.GetResolution(OpenTK.Core.Platform.DisplayHandle,System.Int32@,System.Int32@) + - uid: OpenTK.Platform.IDisplayComponent.GetResolution(OpenTK.Platform.DisplayHandle,System.Int32@,System.Int32@) name: GetResolution - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_GetResolution_OpenTK_Core_Platform_DisplayHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_GetResolution_OpenTK_Platform_DisplayHandle_System_Int32__System_Int32__ - name: ( - - uid: OpenTK.Core.Platform.DisplayHandle + - uid: OpenTK.Platform.DisplayHandle name: DisplayHandle - href: OpenTK.Core.Platform.DisplayHandle.html + href: OpenTK.Platform.DisplayHandle.html - name: ',' - name: " " - name: out @@ -1831,13 +1731,13 @@ references: href: https://learn.microsoft.com/dotnet/api/system.int32 - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IDisplayComponent.GetResolution(OpenTK.Core.Platform.DisplayHandle,System.Int32@,System.Int32@) + - uid: OpenTK.Platform.IDisplayComponent.GetResolution(OpenTK.Platform.DisplayHandle,System.Int32@,System.Int32@) name: GetResolution - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_GetResolution_OpenTK_Core_Platform_DisplayHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_GetResolution_OpenTK_Platform_DisplayHandle_System_Int32__System_Int32__ - name: ( - - uid: OpenTK.Core.Platform.DisplayHandle + - uid: OpenTK.Platform.DisplayHandle name: DisplayHandle - href: OpenTK.Core.Platform.DisplayHandle.html + href: OpenTK.Platform.DisplayHandle.html - name: ',' - name: " " - uid: System.Int32 @@ -1853,28 +1753,28 @@ references: - name: ) - uid: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetWorkArea* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetWorkArea - href: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.html#OpenTK_Platform_Native_macOS_MacOSDisplayComponent_GetWorkArea_OpenTK_Core_Platform_DisplayHandle_OpenTK_Mathematics_Box2i__ + href: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.html#OpenTK_Platform_Native_macOS_MacOSDisplayComponent_GetWorkArea_OpenTK_Platform_DisplayHandle_OpenTK_Mathematics_Box2i__ name: GetWorkArea nameWithType: MacOSDisplayComponent.GetWorkArea fullName: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetWorkArea -- uid: OpenTK.Core.Platform.IDisplayComponent.GetWorkArea(OpenTK.Core.Platform.DisplayHandle,OpenTK.Mathematics.Box2i@) - commentId: M:OpenTK.Core.Platform.IDisplayComponent.GetWorkArea(OpenTK.Core.Platform.DisplayHandle,OpenTK.Mathematics.Box2i@) - parent: OpenTK.Core.Platform.IDisplayComponent - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_GetWorkArea_OpenTK_Core_Platform_DisplayHandle_OpenTK_Mathematics_Box2i__ +- uid: OpenTK.Platform.IDisplayComponent.GetWorkArea(OpenTK.Platform.DisplayHandle,OpenTK.Mathematics.Box2i@) + commentId: M:OpenTK.Platform.IDisplayComponent.GetWorkArea(OpenTK.Platform.DisplayHandle,OpenTK.Mathematics.Box2i@) + parent: OpenTK.Platform.IDisplayComponent + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_GetWorkArea_OpenTK_Platform_DisplayHandle_OpenTK_Mathematics_Box2i__ name: GetWorkArea(DisplayHandle, out Box2i) nameWithType: IDisplayComponent.GetWorkArea(DisplayHandle, out Box2i) - fullName: OpenTK.Core.Platform.IDisplayComponent.GetWorkArea(OpenTK.Core.Platform.DisplayHandle, out OpenTK.Mathematics.Box2i) + fullName: OpenTK.Platform.IDisplayComponent.GetWorkArea(OpenTK.Platform.DisplayHandle, out OpenTK.Mathematics.Box2i) nameWithType.vb: IDisplayComponent.GetWorkArea(DisplayHandle, Box2i) - fullName.vb: OpenTK.Core.Platform.IDisplayComponent.GetWorkArea(OpenTK.Core.Platform.DisplayHandle, OpenTK.Mathematics.Box2i) + fullName.vb: OpenTK.Platform.IDisplayComponent.GetWorkArea(OpenTK.Platform.DisplayHandle, OpenTK.Mathematics.Box2i) name.vb: GetWorkArea(DisplayHandle, Box2i) spec.csharp: - - uid: OpenTK.Core.Platform.IDisplayComponent.GetWorkArea(OpenTK.Core.Platform.DisplayHandle,OpenTK.Mathematics.Box2i@) + - uid: OpenTK.Platform.IDisplayComponent.GetWorkArea(OpenTK.Platform.DisplayHandle,OpenTK.Mathematics.Box2i@) name: GetWorkArea - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_GetWorkArea_OpenTK_Core_Platform_DisplayHandle_OpenTK_Mathematics_Box2i__ + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_GetWorkArea_OpenTK_Platform_DisplayHandle_OpenTK_Mathematics_Box2i__ - name: ( - - uid: OpenTK.Core.Platform.DisplayHandle + - uid: OpenTK.Platform.DisplayHandle name: DisplayHandle - href: OpenTK.Core.Platform.DisplayHandle.html + href: OpenTK.Platform.DisplayHandle.html - name: ',' - name: " " - name: out @@ -1884,13 +1784,13 @@ references: href: OpenTK.Mathematics.Box2i.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IDisplayComponent.GetWorkArea(OpenTK.Core.Platform.DisplayHandle,OpenTK.Mathematics.Box2i@) + - uid: OpenTK.Platform.IDisplayComponent.GetWorkArea(OpenTK.Platform.DisplayHandle,OpenTK.Mathematics.Box2i@) name: GetWorkArea - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_GetWorkArea_OpenTK_Core_Platform_DisplayHandle_OpenTK_Mathematics_Box2i__ + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_GetWorkArea_OpenTK_Platform_DisplayHandle_OpenTK_Mathematics_Box2i__ - name: ( - - uid: OpenTK.Core.Platform.DisplayHandle + - uid: OpenTK.Platform.DisplayHandle name: DisplayHandle - href: OpenTK.Core.Platform.DisplayHandle.html + href: OpenTK.Platform.DisplayHandle.html - name: ',' - name: " " - uid: OpenTK.Mathematics.Box2i @@ -1928,47 +1828,47 @@ references: href: OpenTK.Mathematics.html - uid: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetSafeArea* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetSafeArea - href: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.html#OpenTK_Platform_Native_macOS_MacOSDisplayComponent_GetSafeArea_OpenTK_Core_Platform_DisplayHandle_OpenTK_Mathematics_Box2i__ + href: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.html#OpenTK_Platform_Native_macOS_MacOSDisplayComponent_GetSafeArea_OpenTK_Platform_DisplayHandle_OpenTK_Mathematics_Box2i__ name: GetSafeArea nameWithType: MacOSDisplayComponent.GetSafeArea fullName: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetSafeArea - uid: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetSafeLeftAuxArea* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetSafeLeftAuxArea - href: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.html#OpenTK_Platform_Native_macOS_MacOSDisplayComponent_GetSafeLeftAuxArea_OpenTK_Core_Platform_DisplayHandle_OpenTK_Mathematics_Box2i__ + href: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.html#OpenTK_Platform_Native_macOS_MacOSDisplayComponent_GetSafeLeftAuxArea_OpenTK_Platform_DisplayHandle_OpenTK_Mathematics_Box2i__ name: GetSafeLeftAuxArea nameWithType: MacOSDisplayComponent.GetSafeLeftAuxArea fullName: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetSafeLeftAuxArea - uid: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetSafeRightAuxArea* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetSafeRightAuxArea - href: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.html#OpenTK_Platform_Native_macOS_MacOSDisplayComponent_GetSafeRightAuxArea_OpenTK_Core_Platform_DisplayHandle_OpenTK_Mathematics_Box2i__ + href: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.html#OpenTK_Platform_Native_macOS_MacOSDisplayComponent_GetSafeRightAuxArea_OpenTK_Platform_DisplayHandle_OpenTK_Mathematics_Box2i__ name: GetSafeRightAuxArea nameWithType: MacOSDisplayComponent.GetSafeRightAuxArea fullName: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetSafeRightAuxArea - uid: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetRefreshRate* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetRefreshRate - href: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.html#OpenTK_Platform_Native_macOS_MacOSDisplayComponent_GetRefreshRate_OpenTK_Core_Platform_DisplayHandle_System_Single__ + href: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.html#OpenTK_Platform_Native_macOS_MacOSDisplayComponent_GetRefreshRate_OpenTK_Platform_DisplayHandle_System_Single__ name: GetRefreshRate nameWithType: MacOSDisplayComponent.GetRefreshRate fullName: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetRefreshRate -- uid: OpenTK.Core.Platform.IDisplayComponent.GetRefreshRate(OpenTK.Core.Platform.DisplayHandle,System.Single@) - commentId: M:OpenTK.Core.Platform.IDisplayComponent.GetRefreshRate(OpenTK.Core.Platform.DisplayHandle,System.Single@) - parent: OpenTK.Core.Platform.IDisplayComponent +- uid: OpenTK.Platform.IDisplayComponent.GetRefreshRate(OpenTK.Platform.DisplayHandle,System.Single@) + commentId: M:OpenTK.Platform.IDisplayComponent.GetRefreshRate(OpenTK.Platform.DisplayHandle,System.Single@) + parent: OpenTK.Platform.IDisplayComponent isExternal: true - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_GetRefreshRate_OpenTK_Core_Platform_DisplayHandle_System_Single__ + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_GetRefreshRate_OpenTK_Platform_DisplayHandle_System_Single__ name: GetRefreshRate(DisplayHandle, out float) nameWithType: IDisplayComponent.GetRefreshRate(DisplayHandle, out float) - fullName: OpenTK.Core.Platform.IDisplayComponent.GetRefreshRate(OpenTK.Core.Platform.DisplayHandle, out float) + fullName: OpenTK.Platform.IDisplayComponent.GetRefreshRate(OpenTK.Platform.DisplayHandle, out float) nameWithType.vb: IDisplayComponent.GetRefreshRate(DisplayHandle, Single) - fullName.vb: OpenTK.Core.Platform.IDisplayComponent.GetRefreshRate(OpenTK.Core.Platform.DisplayHandle, Single) + fullName.vb: OpenTK.Platform.IDisplayComponent.GetRefreshRate(OpenTK.Platform.DisplayHandle, Single) name.vb: GetRefreshRate(DisplayHandle, Single) spec.csharp: - - uid: OpenTK.Core.Platform.IDisplayComponent.GetRefreshRate(OpenTK.Core.Platform.DisplayHandle,System.Single@) + - uid: OpenTK.Platform.IDisplayComponent.GetRefreshRate(OpenTK.Platform.DisplayHandle,System.Single@) name: GetRefreshRate - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_GetRefreshRate_OpenTK_Core_Platform_DisplayHandle_System_Single__ + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_GetRefreshRate_OpenTK_Platform_DisplayHandle_System_Single__ - name: ( - - uid: OpenTK.Core.Platform.DisplayHandle + - uid: OpenTK.Platform.DisplayHandle name: DisplayHandle - href: OpenTK.Core.Platform.DisplayHandle.html + href: OpenTK.Platform.DisplayHandle.html - name: ',' - name: " " - name: out @@ -1979,13 +1879,13 @@ references: href: https://learn.microsoft.com/dotnet/api/system.single - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IDisplayComponent.GetRefreshRate(OpenTK.Core.Platform.DisplayHandle,System.Single@) + - uid: OpenTK.Platform.IDisplayComponent.GetRefreshRate(OpenTK.Platform.DisplayHandle,System.Single@) name: GetRefreshRate - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_GetRefreshRate_OpenTK_Core_Platform_DisplayHandle_System_Single__ + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_GetRefreshRate_OpenTK_Platform_DisplayHandle_System_Single__ - name: ( - - uid: OpenTK.Core.Platform.DisplayHandle + - uid: OpenTK.Platform.DisplayHandle name: DisplayHandle - href: OpenTK.Core.Platform.DisplayHandle.html + href: OpenTK.Platform.DisplayHandle.html - name: ',' - name: " " - uid: System.Single @@ -2006,29 +1906,29 @@ references: name.vb: Single - uid: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetDisplayScale* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetDisplayScale - href: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.html#OpenTK_Platform_Native_macOS_MacOSDisplayComponent_GetDisplayScale_OpenTK_Core_Platform_DisplayHandle_System_Single__System_Single__ + href: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.html#OpenTK_Platform_Native_macOS_MacOSDisplayComponent_GetDisplayScale_OpenTK_Platform_DisplayHandle_System_Single__System_Single__ name: GetDisplayScale nameWithType: MacOSDisplayComponent.GetDisplayScale fullName: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetDisplayScale -- uid: OpenTK.Core.Platform.IDisplayComponent.GetDisplayScale(OpenTK.Core.Platform.DisplayHandle,System.Single@,System.Single@) - commentId: M:OpenTK.Core.Platform.IDisplayComponent.GetDisplayScale(OpenTK.Core.Platform.DisplayHandle,System.Single@,System.Single@) - parent: OpenTK.Core.Platform.IDisplayComponent +- uid: OpenTK.Platform.IDisplayComponent.GetDisplayScale(OpenTK.Platform.DisplayHandle,System.Single@,System.Single@) + commentId: M:OpenTK.Platform.IDisplayComponent.GetDisplayScale(OpenTK.Platform.DisplayHandle,System.Single@,System.Single@) + parent: OpenTK.Platform.IDisplayComponent isExternal: true - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_GetDisplayScale_OpenTK_Core_Platform_DisplayHandle_System_Single__System_Single__ + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_GetDisplayScale_OpenTK_Platform_DisplayHandle_System_Single__System_Single__ name: GetDisplayScale(DisplayHandle, out float, out float) nameWithType: IDisplayComponent.GetDisplayScale(DisplayHandle, out float, out float) - fullName: OpenTK.Core.Platform.IDisplayComponent.GetDisplayScale(OpenTK.Core.Platform.DisplayHandle, out float, out float) + fullName: OpenTK.Platform.IDisplayComponent.GetDisplayScale(OpenTK.Platform.DisplayHandle, out float, out float) nameWithType.vb: IDisplayComponent.GetDisplayScale(DisplayHandle, Single, Single) - fullName.vb: OpenTK.Core.Platform.IDisplayComponent.GetDisplayScale(OpenTK.Core.Platform.DisplayHandle, Single, Single) + fullName.vb: OpenTK.Platform.IDisplayComponent.GetDisplayScale(OpenTK.Platform.DisplayHandle, Single, Single) name.vb: GetDisplayScale(DisplayHandle, Single, Single) spec.csharp: - - uid: OpenTK.Core.Platform.IDisplayComponent.GetDisplayScale(OpenTK.Core.Platform.DisplayHandle,System.Single@,System.Single@) + - uid: OpenTK.Platform.IDisplayComponent.GetDisplayScale(OpenTK.Platform.DisplayHandle,System.Single@,System.Single@) name: GetDisplayScale - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_GetDisplayScale_OpenTK_Core_Platform_DisplayHandle_System_Single__System_Single__ + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_GetDisplayScale_OpenTK_Platform_DisplayHandle_System_Single__System_Single__ - name: ( - - uid: OpenTK.Core.Platform.DisplayHandle + - uid: OpenTK.Platform.DisplayHandle name: DisplayHandle - href: OpenTK.Core.Platform.DisplayHandle.html + href: OpenTK.Platform.DisplayHandle.html - name: ',' - name: " " - name: out @@ -2047,13 +1947,13 @@ references: href: https://learn.microsoft.com/dotnet/api/system.single - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IDisplayComponent.GetDisplayScale(OpenTK.Core.Platform.DisplayHandle,System.Single@,System.Single@) + - uid: OpenTK.Platform.IDisplayComponent.GetDisplayScale(OpenTK.Platform.DisplayHandle,System.Single@,System.Single@) name: GetDisplayScale - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_GetDisplayScale_OpenTK_Core_Platform_DisplayHandle_System_Single__System_Single__ + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_GetDisplayScale_OpenTK_Platform_DisplayHandle_System_Single__System_Single__ - name: ( - - uid: OpenTK.Core.Platform.DisplayHandle + - uid: OpenTK.Platform.DisplayHandle name: DisplayHandle - href: OpenTK.Core.Platform.DisplayHandle.html + href: OpenTK.Platform.DisplayHandle.html - name: ',' - name: " " - uid: System.Single @@ -2069,7 +1969,7 @@ references: - name: ) - uid: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetDirectDisplayID* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetDirectDisplayID - href: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.html#OpenTK_Platform_Native_macOS_MacOSDisplayComponent_GetDirectDisplayID_OpenTK_Core_Platform_DisplayHandle_ + href: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.html#OpenTK_Platform_Native_macOS_MacOSDisplayComponent_GetDirectDisplayID_OpenTK_Platform_DisplayHandle_ name: GetDirectDisplayID nameWithType: MacOSDisplayComponent.GetDirectDisplayID fullName: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetDirectDisplayID diff --git a/api/OpenTK.Platform.Native.macOS.MacOSIconComponent.yml b/api/OpenTK.Platform.Native.macOS.MacOSIconComponent.yml index 60b4c572..bedf04be 100644 --- a/api/OpenTK.Platform.Native.macOS.MacOSIconComponent.yml +++ b/api/OpenTK.Platform.Native.macOS.MacOSIconComponent.yml @@ -6,12 +6,12 @@ items: parent: OpenTK.Platform.Native.macOS children: - OpenTK.Platform.Native.macOS.MacOSIconComponent.CanLoadSystemIcons - - OpenTK.Platform.Native.macOS.MacOSIconComponent.Create(OpenTK.Core.Platform.SystemIconType) + - OpenTK.Platform.Native.macOS.MacOSIconComponent.Create(OpenTK.Platform.SystemIconType) - OpenTK.Platform.Native.macOS.MacOSIconComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte}) - OpenTK.Platform.Native.macOS.MacOSIconComponent.CreateSFSymbol(System.String,System.String) - - OpenTK.Platform.Native.macOS.MacOSIconComponent.Destroy(OpenTK.Core.Platform.IconHandle) - - OpenTK.Platform.Native.macOS.MacOSIconComponent.GetSize(OpenTK.Core.Platform.IconHandle,System.Int32@,System.Int32@) - - OpenTK.Platform.Native.macOS.MacOSIconComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + - OpenTK.Platform.Native.macOS.MacOSIconComponent.Destroy(OpenTK.Platform.IconHandle) + - OpenTK.Platform.Native.macOS.MacOSIconComponent.GetSize(OpenTK.Platform.IconHandle,System.Int32@,System.Int32@) + - OpenTK.Platform.Native.macOS.MacOSIconComponent.Initialize(OpenTK.Platform.ToolkitOptions) - OpenTK.Platform.Native.macOS.MacOSIconComponent.Logger - OpenTK.Platform.Native.macOS.MacOSIconComponent.Name - OpenTK.Platform.Native.macOS.MacOSIconComponent.Provides @@ -23,15 +23,11 @@ items: fullName: OpenTK.Platform.Native.macOS.MacOSIconComponent type: Class source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSIconComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MacOSIconComponent - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSIconComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSIconComponent.cs startLine: 8 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS syntax: content: 'public class MacOSIconComponent : IIconComponent, IPalComponent' @@ -39,8 +35,8 @@ items: inheritance: - System.Object implements: - - OpenTK.Core.Platform.IIconComponent - - OpenTK.Core.Platform.IPalComponent + - OpenTK.Platform.IIconComponent + - OpenTK.Platform.IPalComponent inheritedMembers: - System.Object.Equals(System.Object) - System.Object.Equals(System.Object,System.Object) @@ -61,15 +57,11 @@ items: fullName: OpenTK.Platform.Native.macOS.MacOSIconComponent.Name type: Property source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSIconComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Name - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSIconComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSIconComponent.cs startLine: 52 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: Name of the abstraction layer component. example: [] @@ -81,7 +73,7 @@ items: content.vb: Public ReadOnly Property Name As String overload: OpenTK.Platform.Native.macOS.MacOSIconComponent.Name* implements: - - OpenTK.Core.Platform.IPalComponent.Name + - OpenTK.Platform.IPalComponent.Name - uid: OpenTK.Platform.Native.macOS.MacOSIconComponent.Provides commentId: P:OpenTK.Platform.Native.macOS.MacOSIconComponent.Provides id: Provides @@ -94,15 +86,11 @@ items: fullName: OpenTK.Platform.Native.macOS.MacOSIconComponent.Provides type: Property source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSIconComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Provides - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSIconComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSIconComponent.cs startLine: 55 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: Specifies which PAL components this object provides. example: [] @@ -110,11 +98,11 @@ items: content: public PalComponents Provides { get; } parameters: [] return: - type: OpenTK.Core.Platform.PalComponents + type: OpenTK.Platform.PalComponents content.vb: Public ReadOnly Property Provides As PalComponents overload: OpenTK.Platform.Native.macOS.MacOSIconComponent.Provides* implements: - - OpenTK.Core.Platform.IPalComponent.Provides + - OpenTK.Platform.IPalComponent.Provides - uid: OpenTK.Platform.Native.macOS.MacOSIconComponent.Logger commentId: P:OpenTK.Platform.Native.macOS.MacOSIconComponent.Logger id: Logger @@ -127,15 +115,11 @@ items: fullName: OpenTK.Platform.Native.macOS.MacOSIconComponent.Logger type: Property source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSIconComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Logger - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSIconComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSIconComponent.cs startLine: 58 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: Provides a logger for this component. example: [] @@ -147,28 +131,24 @@ items: content.vb: Public Property Logger As ILogger overload: OpenTK.Platform.Native.macOS.MacOSIconComponent.Logger* implements: - - OpenTK.Core.Platform.IPalComponent.Logger -- uid: OpenTK.Platform.Native.macOS.MacOSIconComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - commentId: M:OpenTK.Platform.Native.macOS.MacOSIconComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - id: Initialize(OpenTK.Core.Platform.ToolkitOptions) + - OpenTK.Platform.IPalComponent.Logger +- uid: OpenTK.Platform.Native.macOS.MacOSIconComponent.Initialize(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Native.macOS.MacOSIconComponent.Initialize(OpenTK.Platform.ToolkitOptions) + id: Initialize(OpenTK.Platform.ToolkitOptions) parent: OpenTK.Platform.Native.macOS.MacOSIconComponent langs: - csharp - vb name: Initialize(ToolkitOptions) nameWithType: MacOSIconComponent.Initialize(ToolkitOptions) - fullName: OpenTK.Platform.Native.macOS.MacOSIconComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + fullName: OpenTK.Platform.Native.macOS.MacOSIconComponent.Initialize(OpenTK.Platform.ToolkitOptions) type: Method source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSIconComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Initialize - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSIconComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSIconComponent.cs startLine: 61 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: Initialize the component. example: [] @@ -176,12 +156,12 @@ items: content: public void Initialize(ToolkitOptions options) parameters: - id: options - type: OpenTK.Core.Platform.ToolkitOptions + type: OpenTK.Platform.ToolkitOptions description: The options to initialize the component with. content.vb: Public Sub Initialize(options As ToolkitOptions) overload: OpenTK.Platform.Native.macOS.MacOSIconComponent.Initialize* implements: - - OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + - OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) - uid: OpenTK.Platform.Native.macOS.MacOSIconComponent.CanLoadSystemIcons commentId: P:OpenTK.Platform.Native.macOS.MacOSIconComponent.CanLoadSystemIcons id: CanLoadSystemIcons @@ -194,20 +174,16 @@ items: fullName: OpenTK.Platform.Native.macOS.MacOSIconComponent.CanLoadSystemIcons type: Property source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSIconComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CanLoadSystemIcons - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSIconComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSIconComponent.cs startLine: 66 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: >- True if icon objects can be populated from common system icons. - If this is true, then will work, otherwise an exception will be thrown. + If this is true, then will work, otherwise an exception will be thrown. example: [] syntax: content: public bool CanLoadSystemIcons { get; } @@ -216,51 +192,50 @@ items: type: System.Boolean content.vb: Public ReadOnly Property CanLoadSystemIcons As Boolean overload: OpenTK.Platform.Native.macOS.MacOSIconComponent.CanLoadSystemIcons* + seealso: + - linkId: OpenTK.Platform.IIconComponent.Create(OpenTK.Platform.SystemIconType) + commentId: M:OpenTK.Platform.IIconComponent.Create(OpenTK.Platform.SystemIconType) implements: - - OpenTK.Core.Platform.IIconComponent.CanLoadSystemIcons -- uid: OpenTK.Platform.Native.macOS.MacOSIconComponent.Create(OpenTK.Core.Platform.SystemIconType) - commentId: M:OpenTK.Platform.Native.macOS.MacOSIconComponent.Create(OpenTK.Core.Platform.SystemIconType) - id: Create(OpenTK.Core.Platform.SystemIconType) + - OpenTK.Platform.IIconComponent.CanLoadSystemIcons +- uid: OpenTK.Platform.Native.macOS.MacOSIconComponent.Create(OpenTK.Platform.SystemIconType) + commentId: M:OpenTK.Platform.Native.macOS.MacOSIconComponent.Create(OpenTK.Platform.SystemIconType) + id: Create(OpenTK.Platform.SystemIconType) parent: OpenTK.Platform.Native.macOS.MacOSIconComponent langs: - csharp - vb name: Create(SystemIconType) nameWithType: MacOSIconComponent.Create(SystemIconType) - fullName: OpenTK.Platform.Native.macOS.MacOSIconComponent.Create(OpenTK.Core.Platform.SystemIconType) + fullName: OpenTK.Platform.Native.macOS.MacOSIconComponent.Create(OpenTK.Platform.SystemIconType) type: Method source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSIconComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Create - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSIconComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSIconComponent.cs startLine: 69 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: >- Load a system icon. - Only works if is true. + Only works if is true. example: [] syntax: content: public IconHandle Create(SystemIconType systemIcon) parameters: - id: systemIcon - type: OpenTK.Core.Platform.SystemIconType + type: OpenTK.Platform.SystemIconType description: The system icon to create. return: - type: OpenTK.Core.Platform.IconHandle + type: OpenTK.Platform.IconHandle description: A handle to the created system icon. content.vb: Public Function Create(systemIcon As SystemIconType) As IconHandle overload: OpenTK.Platform.Native.macOS.MacOSIconComponent.Create* seealso: - - linkId: OpenTK.Core.Platform.IIconComponent.CanLoadSystemIcons - commentId: P:OpenTK.Core.Platform.IIconComponent.CanLoadSystemIcons + - linkId: OpenTK.Platform.IIconComponent.CanLoadSystemIcons + commentId: P:OpenTK.Platform.IIconComponent.CanLoadSystemIcons implements: - - OpenTK.Core.Platform.IIconComponent.Create(OpenTK.Core.Platform.SystemIconType) + - OpenTK.Platform.IIconComponent.Create(OpenTK.Platform.SystemIconType) - uid: OpenTK.Platform.Native.macOS.MacOSIconComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte}) commentId: M:OpenTK.Platform.Native.macOS.MacOSIconComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte}) id: Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte}) @@ -273,15 +248,11 @@ items: fullName: OpenTK.Platform.Native.macOS.MacOSIconComponent.Create(int, int, System.ReadOnlySpan) type: Method source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSIconComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Create - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSIconComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSIconComponent.cs startLine: 121 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: Load an icon object with image data. example: [] @@ -298,12 +269,12 @@ items: type: System.ReadOnlySpan{System.Byte} description: Image data to load into icon. return: - type: OpenTK.Core.Platform.IconHandle + type: OpenTK.Platform.IconHandle description: A handle to the created icon. content.vb: Public Function Create(width As Integer, height As Integer, data As ReadOnlySpan(Of Byte)) As IconHandle overload: OpenTK.Platform.Native.macOS.MacOSIconComponent.Create* implements: - - OpenTK.Core.Platform.IIconComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte}) + - OpenTK.Platform.IIconComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte}) nameWithType.vb: MacOSIconComponent.Create(Integer, Integer, ReadOnlySpan(Of Byte)) fullName.vb: OpenTK.Platform.Native.macOS.MacOSIconComponent.Create(Integer, Integer, System.ReadOnlySpan(Of Byte)) name.vb: Create(Integer, Integer, ReadOnlySpan(Of Byte)) @@ -319,15 +290,11 @@ items: fullName: OpenTK.Platform.Native.macOS.MacOSIconComponent.CreateSFSymbol(string, string) type: Method source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSIconComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateSFSymbol - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSIconComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSIconComponent.cs startLine: 166 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: Loads a SF Symbols symbol by name. example: [] @@ -341,34 +308,30 @@ items: type: System.String description: An accessibility description of the icon. return: - type: OpenTK.Core.Platform.IconHandle + type: OpenTK.Platform.IconHandle description: A handle to the created icon, or null if no SF Symbol matching the name was found. content.vb: Public Function CreateSFSymbol(sfSymbolName As String, accessibilityDescription As String) As IconHandle overload: OpenTK.Platform.Native.macOS.MacOSIconComponent.CreateSFSymbol* nameWithType.vb: MacOSIconComponent.CreateSFSymbol(String, String) fullName.vb: OpenTK.Platform.Native.macOS.MacOSIconComponent.CreateSFSymbol(String, String) name.vb: CreateSFSymbol(String, String) -- uid: OpenTK.Platform.Native.macOS.MacOSIconComponent.Destroy(OpenTK.Core.Platform.IconHandle) - commentId: M:OpenTK.Platform.Native.macOS.MacOSIconComponent.Destroy(OpenTK.Core.Platform.IconHandle) - id: Destroy(OpenTK.Core.Platform.IconHandle) +- uid: OpenTK.Platform.Native.macOS.MacOSIconComponent.Destroy(OpenTK.Platform.IconHandle) + commentId: M:OpenTK.Platform.Native.macOS.MacOSIconComponent.Destroy(OpenTK.Platform.IconHandle) + id: Destroy(OpenTK.Platform.IconHandle) parent: OpenTK.Platform.Native.macOS.MacOSIconComponent langs: - csharp - vb name: Destroy(IconHandle) nameWithType: MacOSIconComponent.Destroy(IconHandle) - fullName: OpenTK.Platform.Native.macOS.MacOSIconComponent.Destroy(OpenTK.Core.Platform.IconHandle) + fullName: OpenTK.Platform.Native.macOS.MacOSIconComponent.Destroy(OpenTK.Platform.IconHandle) type: Method source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSIconComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Destroy - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSIconComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSIconComponent.cs startLine: 194 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: Destroy an icon object. example: [] @@ -376,7 +339,7 @@ items: content: public void Destroy(IconHandle handle) parameters: - id: handle - type: OpenTK.Core.Platform.IconHandle + type: OpenTK.Platform.IconHandle description: Handle to the icon object to destroy. content.vb: Public Sub Destroy(handle As IconHandle) overload: OpenTK.Platform.Native.macOS.MacOSIconComponent.Destroy* @@ -385,28 +348,24 @@ items: commentId: T:System.ArgumentNullException description: handle is null. implements: - - OpenTK.Core.Platform.IIconComponent.Destroy(OpenTK.Core.Platform.IconHandle) -- uid: OpenTK.Platform.Native.macOS.MacOSIconComponent.GetSize(OpenTK.Core.Platform.IconHandle,System.Int32@,System.Int32@) - commentId: M:OpenTK.Platform.Native.macOS.MacOSIconComponent.GetSize(OpenTK.Core.Platform.IconHandle,System.Int32@,System.Int32@) - id: GetSize(OpenTK.Core.Platform.IconHandle,System.Int32@,System.Int32@) + - OpenTK.Platform.IIconComponent.Destroy(OpenTK.Platform.IconHandle) +- uid: OpenTK.Platform.Native.macOS.MacOSIconComponent.GetSize(OpenTK.Platform.IconHandle,System.Int32@,System.Int32@) + commentId: M:OpenTK.Platform.Native.macOS.MacOSIconComponent.GetSize(OpenTK.Platform.IconHandle,System.Int32@,System.Int32@) + id: GetSize(OpenTK.Platform.IconHandle,System.Int32@,System.Int32@) parent: OpenTK.Platform.Native.macOS.MacOSIconComponent langs: - csharp - vb name: GetSize(IconHandle, out int, out int) nameWithType: MacOSIconComponent.GetSize(IconHandle, out int, out int) - fullName: OpenTK.Platform.Native.macOS.MacOSIconComponent.GetSize(OpenTK.Core.Platform.IconHandle, out int, out int) + fullName: OpenTK.Platform.Native.macOS.MacOSIconComponent.GetSize(OpenTK.Platform.IconHandle, out int, out int) type: Method source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSIconComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetSize - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSIconComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSIconComponent.cs startLine: 208 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: Get the dimensions of a icon object. example: [] @@ -414,7 +373,7 @@ items: content: public void GetSize(IconHandle handle, out int width, out int height) parameters: - id: handle - type: OpenTK.Core.Platform.IconHandle + type: OpenTK.Platform.IconHandle description: Handle to icon object. - id: width type: System.Int32 @@ -429,9 +388,9 @@ items: commentId: T:System.ArgumentNullException description: handle is null. implements: - - OpenTK.Core.Platform.IIconComponent.GetSize(OpenTK.Core.Platform.IconHandle,System.Int32@,System.Int32@) + - OpenTK.Platform.IIconComponent.GetSize(OpenTK.Platform.IconHandle,System.Int32@,System.Int32@) nameWithType.vb: MacOSIconComponent.GetSize(IconHandle, Integer, Integer) - fullName.vb: OpenTK.Platform.Native.macOS.MacOSIconComponent.GetSize(OpenTK.Core.Platform.IconHandle, Integer, Integer) + fullName.vb: OpenTK.Platform.Native.macOS.MacOSIconComponent.GetSize(OpenTK.Platform.IconHandle, Integer, Integer) name.vb: GetSize(IconHandle, Integer, Integer) references: - uid: OpenTK.Platform.Native.macOS @@ -483,20 +442,20 @@ references: nameWithType.vb: Object fullName.vb: Object name.vb: Object -- uid: OpenTK.Core.Platform.IIconComponent - commentId: T:OpenTK.Core.Platform.IIconComponent - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.IIconComponent.html +- uid: OpenTK.Platform.IIconComponent + commentId: T:OpenTK.Platform.IIconComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IIconComponent.html name: IIconComponent nameWithType: IIconComponent - fullName: OpenTK.Core.Platform.IIconComponent -- uid: OpenTK.Core.Platform.IPalComponent - commentId: T:OpenTK.Core.Platform.IPalComponent - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.IPalComponent.html + fullName: OpenTK.Platform.IIconComponent +- uid: OpenTK.Platform.IPalComponent + commentId: T:OpenTK.Platform.IPalComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IPalComponent.html name: IPalComponent nameWithType: IPalComponent - fullName: OpenTK.Core.Platform.IPalComponent + fullName: OpenTK.Platform.IPalComponent - uid: System.Object.Equals(System.Object) commentId: M:System.Object.Equals(System.Object) parent: System.Object @@ -723,49 +682,41 @@ references: name: System nameWithType: System fullName: System -- uid: OpenTK.Core.Platform - commentId: N:OpenTK.Core.Platform +- uid: OpenTK.Platform + commentId: N:OpenTK.Platform href: OpenTK.html - name: OpenTK.Core.Platform - nameWithType: OpenTK.Core.Platform - fullName: OpenTK.Core.Platform + name: OpenTK.Platform + nameWithType: OpenTK.Platform + fullName: OpenTK.Platform spec.csharp: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html spec.vb: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html - uid: OpenTK.Platform.Native.macOS.MacOSIconComponent.Name* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSIconComponent.Name href: OpenTK.Platform.Native.macOS.MacOSIconComponent.html#OpenTK_Platform_Native_macOS_MacOSIconComponent_Name name: Name nameWithType: MacOSIconComponent.Name fullName: OpenTK.Platform.Native.macOS.MacOSIconComponent.Name -- uid: OpenTK.Core.Platform.IPalComponent.Name - commentId: P:OpenTK.Core.Platform.IPalComponent.Name - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Name +- uid: OpenTK.Platform.IPalComponent.Name + commentId: P:OpenTK.Platform.IPalComponent.Name + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Name name: Name nameWithType: IPalComponent.Name - fullName: OpenTK.Core.Platform.IPalComponent.Name + fullName: OpenTK.Platform.IPalComponent.Name - uid: System.String commentId: T:System.String parent: System @@ -783,33 +734,33 @@ references: name: Provides nameWithType: MacOSIconComponent.Provides fullName: OpenTK.Platform.Native.macOS.MacOSIconComponent.Provides -- uid: OpenTK.Core.Platform.IPalComponent.Provides - commentId: P:OpenTK.Core.Platform.IPalComponent.Provides - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Provides +- uid: OpenTK.Platform.IPalComponent.Provides + commentId: P:OpenTK.Platform.IPalComponent.Provides + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Provides name: Provides nameWithType: IPalComponent.Provides - fullName: OpenTK.Core.Platform.IPalComponent.Provides -- uid: OpenTK.Core.Platform.PalComponents - commentId: T:OpenTK.Core.Platform.PalComponents - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.PalComponents.html + fullName: OpenTK.Platform.IPalComponent.Provides +- uid: OpenTK.Platform.PalComponents + commentId: T:OpenTK.Platform.PalComponents + parent: OpenTK.Platform + href: OpenTK.Platform.PalComponents.html name: PalComponents nameWithType: PalComponents - fullName: OpenTK.Core.Platform.PalComponents + fullName: OpenTK.Platform.PalComponents - uid: OpenTK.Platform.Native.macOS.MacOSIconComponent.Logger* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSIconComponent.Logger href: OpenTK.Platform.Native.macOS.MacOSIconComponent.html#OpenTK_Platform_Native_macOS_MacOSIconComponent_Logger name: Logger nameWithType: MacOSIconComponent.Logger fullName: OpenTK.Platform.Native.macOS.MacOSIconComponent.Logger -- uid: OpenTK.Core.Platform.IPalComponent.Logger - commentId: P:OpenTK.Core.Platform.IPalComponent.Logger - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Logger +- uid: OpenTK.Platform.IPalComponent.Logger + commentId: P:OpenTK.Platform.IPalComponent.Logger + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Logger name: Logger nameWithType: IPalComponent.Logger - fullName: OpenTK.Core.Platform.IPalComponent.Logger + fullName: OpenTK.Platform.IPalComponent.Logger - uid: OpenTK.Core.Utility.ILogger commentId: T:OpenTK.Core.Utility.ILogger parent: OpenTK.Core.Utility @@ -849,66 +800,66 @@ references: href: OpenTK.Core.Utility.html - uid: OpenTK.Platform.Native.macOS.MacOSIconComponent.Initialize* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSIconComponent.Initialize - href: OpenTK.Platform.Native.macOS.MacOSIconComponent.html#OpenTK_Platform_Native_macOS_MacOSIconComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + href: OpenTK.Platform.Native.macOS.MacOSIconComponent.html#OpenTK_Platform_Native_macOS_MacOSIconComponent_Initialize_OpenTK_Platform_ToolkitOptions_ name: Initialize nameWithType: MacOSIconComponent.Initialize fullName: OpenTK.Platform.Native.macOS.MacOSIconComponent.Initialize -- uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - commentId: M:OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ +- uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ name: Initialize(ToolkitOptions) nameWithType: IPalComponent.Initialize(ToolkitOptions) - fullName: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + fullName: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) spec.csharp: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + - uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.ToolkitOptions + - uid: OpenTK.Platform.ToolkitOptions name: ToolkitOptions - href: OpenTK.Core.Platform.ToolkitOptions.html + href: OpenTK.Platform.ToolkitOptions.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + - uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.ToolkitOptions + - uid: OpenTK.Platform.ToolkitOptions name: ToolkitOptions - href: OpenTK.Core.Platform.ToolkitOptions.html + href: OpenTK.Platform.ToolkitOptions.html - name: ) -- uid: OpenTK.Core.Platform.ToolkitOptions - commentId: T:OpenTK.Core.Platform.ToolkitOptions - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.ToolkitOptions.html +- uid: OpenTK.Platform.ToolkitOptions + commentId: T:OpenTK.Platform.ToolkitOptions + parent: OpenTK.Platform + href: OpenTK.Platform.ToolkitOptions.html name: ToolkitOptions nameWithType: ToolkitOptions - fullName: OpenTK.Core.Platform.ToolkitOptions -- uid: OpenTK.Core.Platform.IIconComponent.Create(OpenTK.Core.Platform.SystemIconType) - commentId: M:OpenTK.Core.Platform.IIconComponent.Create(OpenTK.Core.Platform.SystemIconType) - parent: OpenTK.Core.Platform.IIconComponent - href: OpenTK.Core.Platform.IIconComponent.html#OpenTK_Core_Platform_IIconComponent_Create_OpenTK_Core_Platform_SystemIconType_ + fullName: OpenTK.Platform.ToolkitOptions +- uid: OpenTK.Platform.IIconComponent.Create(OpenTK.Platform.SystemIconType) + commentId: M:OpenTK.Platform.IIconComponent.Create(OpenTK.Platform.SystemIconType) + parent: OpenTK.Platform.IIconComponent + href: OpenTK.Platform.IIconComponent.html#OpenTK_Platform_IIconComponent_Create_OpenTK_Platform_SystemIconType_ name: Create(SystemIconType) nameWithType: IIconComponent.Create(SystemIconType) - fullName: OpenTK.Core.Platform.IIconComponent.Create(OpenTK.Core.Platform.SystemIconType) + fullName: OpenTK.Platform.IIconComponent.Create(OpenTK.Platform.SystemIconType) spec.csharp: - - uid: OpenTK.Core.Platform.IIconComponent.Create(OpenTK.Core.Platform.SystemIconType) + - uid: OpenTK.Platform.IIconComponent.Create(OpenTK.Platform.SystemIconType) name: Create - href: OpenTK.Core.Platform.IIconComponent.html#OpenTK_Core_Platform_IIconComponent_Create_OpenTK_Core_Platform_SystemIconType_ + href: OpenTK.Platform.IIconComponent.html#OpenTK_Platform_IIconComponent_Create_OpenTK_Platform_SystemIconType_ - name: ( - - uid: OpenTK.Core.Platform.SystemIconType + - uid: OpenTK.Platform.SystemIconType name: SystemIconType - href: OpenTK.Core.Platform.SystemIconType.html + href: OpenTK.Platform.SystemIconType.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IIconComponent.Create(OpenTK.Core.Platform.SystemIconType) + - uid: OpenTK.Platform.IIconComponent.Create(OpenTK.Platform.SystemIconType) name: Create - href: OpenTK.Core.Platform.IIconComponent.html#OpenTK_Core_Platform_IIconComponent_Create_OpenTK_Core_Platform_SystemIconType_ + href: OpenTK.Platform.IIconComponent.html#OpenTK_Platform_IIconComponent_Create_OpenTK_Platform_SystemIconType_ - name: ( - - uid: OpenTK.Core.Platform.SystemIconType + - uid: OpenTK.Platform.SystemIconType name: SystemIconType - href: OpenTK.Core.Platform.SystemIconType.html + href: OpenTK.Platform.SystemIconType.html - name: ) - uid: OpenTK.Platform.Native.macOS.MacOSIconComponent.CanLoadSystemIcons* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSIconComponent.CanLoadSystemIcons @@ -916,13 +867,13 @@ references: name: CanLoadSystemIcons nameWithType: MacOSIconComponent.CanLoadSystemIcons fullName: OpenTK.Platform.Native.macOS.MacOSIconComponent.CanLoadSystemIcons -- uid: OpenTK.Core.Platform.IIconComponent.CanLoadSystemIcons - commentId: P:OpenTK.Core.Platform.IIconComponent.CanLoadSystemIcons - parent: OpenTK.Core.Platform.IIconComponent - href: OpenTK.Core.Platform.IIconComponent.html#OpenTK_Core_Platform_IIconComponent_CanLoadSystemIcons +- uid: OpenTK.Platform.IIconComponent.CanLoadSystemIcons + commentId: P:OpenTK.Platform.IIconComponent.CanLoadSystemIcons + parent: OpenTK.Platform.IIconComponent + href: OpenTK.Platform.IIconComponent.html#OpenTK_Platform_IIconComponent_CanLoadSystemIcons name: CanLoadSystemIcons nameWithType: IIconComponent.CanLoadSystemIcons - fullName: OpenTK.Core.Platform.IIconComponent.CanLoadSystemIcons + fullName: OpenTK.Platform.IIconComponent.CanLoadSystemIcons - uid: System.Boolean commentId: T:System.Boolean parent: System @@ -936,39 +887,39 @@ references: name.vb: Boolean - uid: OpenTK.Platform.Native.macOS.MacOSIconComponent.Create* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSIconComponent.Create - href: OpenTK.Platform.Native.macOS.MacOSIconComponent.html#OpenTK_Platform_Native_macOS_MacOSIconComponent_Create_OpenTK_Core_Platform_SystemIconType_ + href: OpenTK.Platform.Native.macOS.MacOSIconComponent.html#OpenTK_Platform_Native_macOS_MacOSIconComponent_Create_OpenTK_Platform_SystemIconType_ name: Create nameWithType: MacOSIconComponent.Create fullName: OpenTK.Platform.Native.macOS.MacOSIconComponent.Create -- uid: OpenTK.Core.Platform.SystemIconType - commentId: T:OpenTK.Core.Platform.SystemIconType - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.SystemIconType.html +- uid: OpenTK.Platform.SystemIconType + commentId: T:OpenTK.Platform.SystemIconType + parent: OpenTK.Platform + href: OpenTK.Platform.SystemIconType.html name: SystemIconType nameWithType: SystemIconType - fullName: OpenTK.Core.Platform.SystemIconType -- uid: OpenTK.Core.Platform.IconHandle - commentId: T:OpenTK.Core.Platform.IconHandle - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.IconHandle.html + fullName: OpenTK.Platform.SystemIconType +- uid: OpenTK.Platform.IconHandle + commentId: T:OpenTK.Platform.IconHandle + parent: OpenTK.Platform + href: OpenTK.Platform.IconHandle.html name: IconHandle nameWithType: IconHandle - fullName: OpenTK.Core.Platform.IconHandle -- uid: OpenTK.Core.Platform.IIconComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte}) - commentId: M:OpenTK.Core.Platform.IIconComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte}) - parent: OpenTK.Core.Platform.IIconComponent + fullName: OpenTK.Platform.IconHandle +- uid: OpenTK.Platform.IIconComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte}) + commentId: M:OpenTK.Platform.IIconComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte}) + parent: OpenTK.Platform.IIconComponent isExternal: true - href: OpenTK.Core.Platform.IIconComponent.html#OpenTK_Core_Platform_IIconComponent_Create_System_Int32_System_Int32_System_ReadOnlySpan_System_Byte__ + href: OpenTK.Platform.IIconComponent.html#OpenTK_Platform_IIconComponent_Create_System_Int32_System_Int32_System_ReadOnlySpan_System_Byte__ name: Create(int, int, ReadOnlySpan) nameWithType: IIconComponent.Create(int, int, ReadOnlySpan) - fullName: OpenTK.Core.Platform.IIconComponent.Create(int, int, System.ReadOnlySpan) + fullName: OpenTK.Platform.IIconComponent.Create(int, int, System.ReadOnlySpan) nameWithType.vb: IIconComponent.Create(Integer, Integer, ReadOnlySpan(Of Byte)) - fullName.vb: OpenTK.Core.Platform.IIconComponent.Create(Integer, Integer, System.ReadOnlySpan(Of Byte)) + fullName.vb: OpenTK.Platform.IIconComponent.Create(Integer, Integer, System.ReadOnlySpan(Of Byte)) name.vb: Create(Integer, Integer, ReadOnlySpan(Of Byte)) spec.csharp: - - uid: OpenTK.Core.Platform.IIconComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte}) + - uid: OpenTK.Platform.IIconComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte}) name: Create - href: OpenTK.Core.Platform.IIconComponent.html#OpenTK_Core_Platform_IIconComponent_Create_System_Int32_System_Int32_System_ReadOnlySpan_System_Byte__ + href: OpenTK.Platform.IIconComponent.html#OpenTK_Platform_IIconComponent_Create_System_Int32_System_Int32_System_ReadOnlySpan_System_Byte__ - name: ( - uid: System.Int32 name: int @@ -994,9 +945,9 @@ references: - name: '>' - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IIconComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte}) + - uid: OpenTK.Platform.IIconComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte}) name: Create - href: OpenTK.Core.Platform.IIconComponent.html#OpenTK_Core_Platform_IIconComponent_Create_System_Int32_System_Int32_System_ReadOnlySpan_System_Byte__ + href: OpenTK.Platform.IIconComponent.html#OpenTK_Platform_IIconComponent_Create_System_Int32_System_Int32_System_ReadOnlySpan_System_Byte__ - name: ( - uid: System.Int32 name: Integer @@ -1112,60 +1063,60 @@ references: fullName: System.ArgumentNullException - uid: OpenTK.Platform.Native.macOS.MacOSIconComponent.Destroy* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSIconComponent.Destroy - href: OpenTK.Platform.Native.macOS.MacOSIconComponent.html#OpenTK_Platform_Native_macOS_MacOSIconComponent_Destroy_OpenTK_Core_Platform_IconHandle_ + href: OpenTK.Platform.Native.macOS.MacOSIconComponent.html#OpenTK_Platform_Native_macOS_MacOSIconComponent_Destroy_OpenTK_Platform_IconHandle_ name: Destroy nameWithType: MacOSIconComponent.Destroy fullName: OpenTK.Platform.Native.macOS.MacOSIconComponent.Destroy -- uid: OpenTK.Core.Platform.IIconComponent.Destroy(OpenTK.Core.Platform.IconHandle) - commentId: M:OpenTK.Core.Platform.IIconComponent.Destroy(OpenTK.Core.Platform.IconHandle) - parent: OpenTK.Core.Platform.IIconComponent - href: OpenTK.Core.Platform.IIconComponent.html#OpenTK_Core_Platform_IIconComponent_Destroy_OpenTK_Core_Platform_IconHandle_ +- uid: OpenTK.Platform.IIconComponent.Destroy(OpenTK.Platform.IconHandle) + commentId: M:OpenTK.Platform.IIconComponent.Destroy(OpenTK.Platform.IconHandle) + parent: OpenTK.Platform.IIconComponent + href: OpenTK.Platform.IIconComponent.html#OpenTK_Platform_IIconComponent_Destroy_OpenTK_Platform_IconHandle_ name: Destroy(IconHandle) nameWithType: IIconComponent.Destroy(IconHandle) - fullName: OpenTK.Core.Platform.IIconComponent.Destroy(OpenTK.Core.Platform.IconHandle) + fullName: OpenTK.Platform.IIconComponent.Destroy(OpenTK.Platform.IconHandle) spec.csharp: - - uid: OpenTK.Core.Platform.IIconComponent.Destroy(OpenTK.Core.Platform.IconHandle) + - uid: OpenTK.Platform.IIconComponent.Destroy(OpenTK.Platform.IconHandle) name: Destroy - href: OpenTK.Core.Platform.IIconComponent.html#OpenTK_Core_Platform_IIconComponent_Destroy_OpenTK_Core_Platform_IconHandle_ + href: OpenTK.Platform.IIconComponent.html#OpenTK_Platform_IIconComponent_Destroy_OpenTK_Platform_IconHandle_ - name: ( - - uid: OpenTK.Core.Platform.IconHandle + - uid: OpenTK.Platform.IconHandle name: IconHandle - href: OpenTK.Core.Platform.IconHandle.html + href: OpenTK.Platform.IconHandle.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IIconComponent.Destroy(OpenTK.Core.Platform.IconHandle) + - uid: OpenTK.Platform.IIconComponent.Destroy(OpenTK.Platform.IconHandle) name: Destroy - href: OpenTK.Core.Platform.IIconComponent.html#OpenTK_Core_Platform_IIconComponent_Destroy_OpenTK_Core_Platform_IconHandle_ + href: OpenTK.Platform.IIconComponent.html#OpenTK_Platform_IIconComponent_Destroy_OpenTK_Platform_IconHandle_ - name: ( - - uid: OpenTK.Core.Platform.IconHandle + - uid: OpenTK.Platform.IconHandle name: IconHandle - href: OpenTK.Core.Platform.IconHandle.html + href: OpenTK.Platform.IconHandle.html - name: ) - uid: OpenTK.Platform.Native.macOS.MacOSIconComponent.GetSize* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSIconComponent.GetSize - href: OpenTK.Platform.Native.macOS.MacOSIconComponent.html#OpenTK_Platform_Native_macOS_MacOSIconComponent_GetSize_OpenTK_Core_Platform_IconHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.Native.macOS.MacOSIconComponent.html#OpenTK_Platform_Native_macOS_MacOSIconComponent_GetSize_OpenTK_Platform_IconHandle_System_Int32__System_Int32__ name: GetSize nameWithType: MacOSIconComponent.GetSize fullName: OpenTK.Platform.Native.macOS.MacOSIconComponent.GetSize -- uid: OpenTK.Core.Platform.IIconComponent.GetSize(OpenTK.Core.Platform.IconHandle,System.Int32@,System.Int32@) - commentId: M:OpenTK.Core.Platform.IIconComponent.GetSize(OpenTK.Core.Platform.IconHandle,System.Int32@,System.Int32@) - parent: OpenTK.Core.Platform.IIconComponent +- uid: OpenTK.Platform.IIconComponent.GetSize(OpenTK.Platform.IconHandle,System.Int32@,System.Int32@) + commentId: M:OpenTK.Platform.IIconComponent.GetSize(OpenTK.Platform.IconHandle,System.Int32@,System.Int32@) + parent: OpenTK.Platform.IIconComponent isExternal: true - href: OpenTK.Core.Platform.IIconComponent.html#OpenTK_Core_Platform_IIconComponent_GetSize_OpenTK_Core_Platform_IconHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.IIconComponent.html#OpenTK_Platform_IIconComponent_GetSize_OpenTK_Platform_IconHandle_System_Int32__System_Int32__ name: GetSize(IconHandle, out int, out int) nameWithType: IIconComponent.GetSize(IconHandle, out int, out int) - fullName: OpenTK.Core.Platform.IIconComponent.GetSize(OpenTK.Core.Platform.IconHandle, out int, out int) + fullName: OpenTK.Platform.IIconComponent.GetSize(OpenTK.Platform.IconHandle, out int, out int) nameWithType.vb: IIconComponent.GetSize(IconHandle, Integer, Integer) - fullName.vb: OpenTK.Core.Platform.IIconComponent.GetSize(OpenTK.Core.Platform.IconHandle, Integer, Integer) + fullName.vb: OpenTK.Platform.IIconComponent.GetSize(OpenTK.Platform.IconHandle, Integer, Integer) name.vb: GetSize(IconHandle, Integer, Integer) spec.csharp: - - uid: OpenTK.Core.Platform.IIconComponent.GetSize(OpenTK.Core.Platform.IconHandle,System.Int32@,System.Int32@) + - uid: OpenTK.Platform.IIconComponent.GetSize(OpenTK.Platform.IconHandle,System.Int32@,System.Int32@) name: GetSize - href: OpenTK.Core.Platform.IIconComponent.html#OpenTK_Core_Platform_IIconComponent_GetSize_OpenTK_Core_Platform_IconHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.IIconComponent.html#OpenTK_Platform_IIconComponent_GetSize_OpenTK_Platform_IconHandle_System_Int32__System_Int32__ - name: ( - - uid: OpenTK.Core.Platform.IconHandle + - uid: OpenTK.Platform.IconHandle name: IconHandle - href: OpenTK.Core.Platform.IconHandle.html + href: OpenTK.Platform.IconHandle.html - name: ',' - name: " " - name: out @@ -1184,13 +1135,13 @@ references: href: https://learn.microsoft.com/dotnet/api/system.int32 - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IIconComponent.GetSize(OpenTK.Core.Platform.IconHandle,System.Int32@,System.Int32@) + - uid: OpenTK.Platform.IIconComponent.GetSize(OpenTK.Platform.IconHandle,System.Int32@,System.Int32@) name: GetSize - href: OpenTK.Core.Platform.IIconComponent.html#OpenTK_Core_Platform_IIconComponent_GetSize_OpenTK_Core_Platform_IconHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.IIconComponent.html#OpenTK_Platform_IIconComponent_GetSize_OpenTK_Platform_IconHandle_System_Int32__System_Int32__ - name: ( - - uid: OpenTK.Core.Platform.IconHandle + - uid: OpenTK.Platform.IconHandle name: IconHandle - href: OpenTK.Core.Platform.IconHandle.html + href: OpenTK.Platform.IconHandle.html - name: ',' - name: " " - uid: System.Int32 diff --git a/api/OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.yml b/api/OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.yml index 7ddb33d5..73e33095 100644 --- a/api/OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.yml +++ b/api/OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.yml @@ -5,19 +5,19 @@ items: id: MacOSKeyboardComponent parent: OpenTK.Platform.Native.macOS children: - - OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.BeginIme(OpenTK.Core.Platform.WindowHandle) - - OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.EndIme(OpenTK.Core.Platform.WindowHandle) - - OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.GetActiveKeyboardLayout(OpenTK.Core.Platform.WindowHandle) + - OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.BeginIme(OpenTK.Platform.WindowHandle) + - OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.EndIme(OpenTK.Platform.WindowHandle) + - OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.GetActiveKeyboardLayout(OpenTK.Platform.WindowHandle) - OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.GetAvailableKeyboardLayouts - - OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.GetKeyFromScancode(OpenTK.Core.Platform.Scancode) + - OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.GetKeyFromScancode(OpenTK.Platform.Scancode) - OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.GetKeyboardModifiers - OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.GetKeyboardState(System.Boolean[]) - - OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.GetScancodeFromKey(OpenTK.Core.Platform.Key) - - OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + - OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.GetScancodeFromKey(OpenTK.Platform.Key) + - OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.Initialize(OpenTK.Platform.ToolkitOptions) - OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.Logger - OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.Name - OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.Provides - - OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.SetImeRectangle(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) + - OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.SetImeRectangle(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) - OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.SupportsIme - OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.SupportsLayouts langs: @@ -28,15 +28,11 @@ items: fullName: OpenTK.Platform.Native.macOS.MacOSKeyboardComponent type: Class source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSKeyboardComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MacOSKeyboardComponent - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSKeyboardComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSKeyboardComponent.cs startLine: 7 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS syntax: content: 'public class MacOSKeyboardComponent : IKeyboardComponent, IPalComponent' @@ -44,8 +40,8 @@ items: inheritance: - System.Object implements: - - OpenTK.Core.Platform.IKeyboardComponent - - OpenTK.Core.Platform.IPalComponent + - OpenTK.Platform.IKeyboardComponent + - OpenTK.Platform.IPalComponent inheritedMembers: - System.Object.Equals(System.Object) - System.Object.Equals(System.Object,System.Object) @@ -66,15 +62,11 @@ items: fullName: OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.Name type: Property source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSKeyboardComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Name - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSKeyboardComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSKeyboardComponent.cs startLine: 10 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: Name of the abstraction layer component. example: [] @@ -86,7 +78,7 @@ items: content.vb: Public ReadOnly Property Name As String overload: OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.Name* implements: - - OpenTK.Core.Platform.IPalComponent.Name + - OpenTK.Platform.IPalComponent.Name - uid: OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.Provides commentId: P:OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.Provides id: Provides @@ -99,15 +91,11 @@ items: fullName: OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.Provides type: Property source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSKeyboardComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Provides - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSKeyboardComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSKeyboardComponent.cs startLine: 13 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: Specifies which PAL components this object provides. example: [] @@ -115,11 +103,11 @@ items: content: public PalComponents Provides { get; } parameters: [] return: - type: OpenTK.Core.Platform.PalComponents + type: OpenTK.Platform.PalComponents content.vb: Public ReadOnly Property Provides As PalComponents overload: OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.Provides* implements: - - OpenTK.Core.Platform.IPalComponent.Provides + - OpenTK.Platform.IPalComponent.Provides - uid: OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.Logger commentId: P:OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.Logger id: Logger @@ -132,15 +120,11 @@ items: fullName: OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.Logger type: Property source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSKeyboardComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Logger - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSKeyboardComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSKeyboardComponent.cs startLine: 16 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: Provides a logger for this component. example: [] @@ -152,28 +136,24 @@ items: content.vb: Public Property Logger As ILogger overload: OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.Logger* implements: - - OpenTK.Core.Platform.IPalComponent.Logger -- uid: OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - commentId: M:OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - id: Initialize(OpenTK.Core.Platform.ToolkitOptions) + - OpenTK.Platform.IPalComponent.Logger +- uid: OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.Initialize(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.Initialize(OpenTK.Platform.ToolkitOptions) + id: Initialize(OpenTK.Platform.ToolkitOptions) parent: OpenTK.Platform.Native.macOS.MacOSKeyboardComponent langs: - csharp - vb name: Initialize(ToolkitOptions) nameWithType: MacOSKeyboardComponent.Initialize(ToolkitOptions) - fullName: OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + fullName: OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.Initialize(OpenTK.Platform.ToolkitOptions) type: Method source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSKeyboardComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Initialize - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSKeyboardComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSKeyboardComponent.cs startLine: 21 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: Initialize the component. example: [] @@ -181,12 +161,12 @@ items: content: public void Initialize(ToolkitOptions options) parameters: - id: options - type: OpenTK.Core.Platform.ToolkitOptions + type: OpenTK.Platform.ToolkitOptions description: The options to initialize the component with. content.vb: Public Sub Initialize(options As ToolkitOptions) overload: OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.Initialize* implements: - - OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + - OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) - uid: OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.SupportsLayouts commentId: P:OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.SupportsLayouts id: SupportsLayouts @@ -199,15 +179,11 @@ items: fullName: OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.SupportsLayouts type: Property source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSKeyboardComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SupportsLayouts - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSKeyboardComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSKeyboardComponent.cs startLine: 26 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: True if the driver supports keyboard layout functions. example: [] @@ -219,7 +195,7 @@ items: content.vb: Public ReadOnly Property SupportsLayouts As Boolean overload: OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.SupportsLayouts* implements: - - OpenTK.Core.Platform.IKeyboardComponent.SupportsLayouts + - OpenTK.Platform.IKeyboardComponent.SupportsLayouts - uid: OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.SupportsIme commentId: P:OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.SupportsIme id: SupportsIme @@ -232,15 +208,11 @@ items: fullName: OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.SupportsIme type: Property source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSKeyboardComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SupportsIme - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSKeyboardComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSKeyboardComponent.cs startLine: 29 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: True if the driver supports input method editor functions. example: [] @@ -252,28 +224,24 @@ items: content.vb: Public ReadOnly Property SupportsIme As Boolean overload: OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.SupportsIme* implements: - - OpenTK.Core.Platform.IKeyboardComponent.SupportsIme -- uid: OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.GetActiveKeyboardLayout(OpenTK.Core.Platform.WindowHandle) - commentId: M:OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.GetActiveKeyboardLayout(OpenTK.Core.Platform.WindowHandle) - id: GetActiveKeyboardLayout(OpenTK.Core.Platform.WindowHandle) + - OpenTK.Platform.IKeyboardComponent.SupportsIme +- uid: OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.GetActiveKeyboardLayout(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.GetActiveKeyboardLayout(OpenTK.Platform.WindowHandle) + id: GetActiveKeyboardLayout(OpenTK.Platform.WindowHandle) parent: OpenTK.Platform.Native.macOS.MacOSKeyboardComponent langs: - csharp - vb name: GetActiveKeyboardLayout(WindowHandle?) nameWithType: MacOSKeyboardComponent.GetActiveKeyboardLayout(WindowHandle?) - fullName: OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.GetActiveKeyboardLayout(OpenTK.Core.Platform.WindowHandle?) + fullName: OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.GetActiveKeyboardLayout(OpenTK.Platform.WindowHandle?) type: Method source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSKeyboardComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetActiveKeyboardLayout - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSKeyboardComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSKeyboardComponent.cs startLine: 32 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: Get the active keyboard layout. example: [] @@ -281,7 +249,7 @@ items: content: public string GetActiveKeyboardLayout(WindowHandle? handle) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: (optional) Handle to a window to query the layout for. Ignored on systems where keyboard layout is global. return: type: System.String @@ -289,13 +257,13 @@ items: content.vb: Public Function GetActiveKeyboardLayout(handle As WindowHandle) As String overload: OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.GetActiveKeyboardLayout* exceptions: - - type: OpenTK.Core.Platform.PalNotImplementedException - commentId: T:OpenTK.Core.Platform.PalNotImplementedException + - type: OpenTK.Platform.PalNotImplementedException + commentId: T:OpenTK.Platform.PalNotImplementedException description: Driver cannot query active keyboard layout. implements: - - OpenTK.Core.Platform.IKeyboardComponent.GetActiveKeyboardLayout(OpenTK.Core.Platform.WindowHandle) + - OpenTK.Platform.IKeyboardComponent.GetActiveKeyboardLayout(OpenTK.Platform.WindowHandle) nameWithType.vb: MacOSKeyboardComponent.GetActiveKeyboardLayout(WindowHandle) - fullName.vb: OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.GetActiveKeyboardLayout(OpenTK.Core.Platform.WindowHandle) + fullName.vb: OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.GetActiveKeyboardLayout(OpenTK.Platform.WindowHandle) name.vb: GetActiveKeyboardLayout(WindowHandle) - uid: OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.GetAvailableKeyboardLayouts commentId: M:OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.GetAvailableKeyboardLayouts @@ -309,15 +277,11 @@ items: fullName: OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.GetAvailableKeyboardLayouts() type: Method source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSKeyboardComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetAvailableKeyboardLayouts - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSKeyboardComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSKeyboardComponent.cs startLine: 39 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: See list of possible keyboard layouts for this system. example: [] @@ -329,31 +293,27 @@ items: content.vb: Public Function GetAvailableKeyboardLayouts() As String() overload: OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.GetAvailableKeyboardLayouts* implements: - - OpenTK.Core.Platform.IKeyboardComponent.GetAvailableKeyboardLayouts -- uid: OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.GetScancodeFromKey(OpenTK.Core.Platform.Key) - commentId: M:OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.GetScancodeFromKey(OpenTK.Core.Platform.Key) - id: GetScancodeFromKey(OpenTK.Core.Platform.Key) + - OpenTK.Platform.IKeyboardComponent.GetAvailableKeyboardLayouts +- uid: OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.GetScancodeFromKey(OpenTK.Platform.Key) + commentId: M:OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.GetScancodeFromKey(OpenTK.Platform.Key) + id: GetScancodeFromKey(OpenTK.Platform.Key) parent: OpenTK.Platform.Native.macOS.MacOSKeyboardComponent langs: - csharp - vb name: GetScancodeFromKey(Key) nameWithType: MacOSKeyboardComponent.GetScancodeFromKey(Key) - fullName: OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.GetScancodeFromKey(OpenTK.Core.Platform.Key) + fullName: OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.GetScancodeFromKey(OpenTK.Platform.Key) type: Method source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSKeyboardComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetScancodeFromKey - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSKeyboardComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSKeyboardComponent.cs startLine: 242 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: >- - Gets the associated with the specified . + Gets the associated with the specified . The Key to Scancode mapping is not 1 to 1, multiple scancodes can produce the same key. @@ -365,42 +325,38 @@ items: content: public Scancode GetScancodeFromKey(Key key) parameters: - id: key - type: OpenTK.Core.Platform.Key + type: OpenTK.Platform.Key description: The key. return: - type: OpenTK.Core.Platform.Scancode + type: OpenTK.Platform.Scancode description: >- - The that produces the + The that produces the - or if no scancode produces the key. + or if no scancode produces the key. content.vb: Public Function GetScancodeFromKey(key As Key) As Scancode overload: OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.GetScancodeFromKey* implements: - - OpenTK.Core.Platform.IKeyboardComponent.GetScancodeFromKey(OpenTK.Core.Platform.Key) -- uid: OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.GetKeyFromScancode(OpenTK.Core.Platform.Scancode) - commentId: M:OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.GetKeyFromScancode(OpenTK.Core.Platform.Scancode) - id: GetKeyFromScancode(OpenTK.Core.Platform.Scancode) + - OpenTK.Platform.IKeyboardComponent.GetScancodeFromKey(OpenTK.Platform.Key) +- uid: OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.GetKeyFromScancode(OpenTK.Platform.Scancode) + commentId: M:OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.GetKeyFromScancode(OpenTK.Platform.Scancode) + id: GetKeyFromScancode(OpenTK.Platform.Scancode) parent: OpenTK.Platform.Native.macOS.MacOSKeyboardComponent langs: - csharp - vb name: GetKeyFromScancode(Scancode) nameWithType: MacOSKeyboardComponent.GetKeyFromScancode(Scancode) - fullName: OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.GetKeyFromScancode(OpenTK.Core.Platform.Scancode) + fullName: OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.GetKeyFromScancode(OpenTK.Platform.Scancode) type: Method source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSKeyboardComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetKeyFromScancode - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSKeyboardComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSKeyboardComponent.cs startLine: 248 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: >- - Gets the associated with the specidied . + Gets the associated with the specidied . This function uses the current keyboard layout to determine the mapping. example: [] @@ -408,18 +364,18 @@ items: content: public Key GetKeyFromScancode(Scancode scancode) parameters: - id: scancode - type: OpenTK.Core.Platform.Scancode + type: OpenTK.Platform.Scancode description: The scancode. return: - type: OpenTK.Core.Platform.Key + type: OpenTK.Platform.Key description: >- - The associated with the + The associated with the - or if the scancode can't be mapped to a key. + or if the scancode can't be mapped to a key. content.vb: Public Function GetKeyFromScancode(scancode As Scancode) As Key overload: OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.GetKeyFromScancode* implements: - - OpenTK.Core.Platform.IKeyboardComponent.GetKeyFromScancode(OpenTK.Core.Platform.Scancode) + - OpenTK.Platform.IKeyboardComponent.GetKeyFromScancode(OpenTK.Platform.Scancode) - uid: OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.GetKeyboardState(System.Boolean[]) commentId: M:OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.GetKeyboardState(System.Boolean[]) id: GetKeyboardState(System.Boolean[]) @@ -432,22 +388,18 @@ items: fullName: OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.GetKeyboardState(bool[]) type: Method source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSKeyboardComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetKeyboardState - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSKeyboardComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSKeyboardComponent.cs startLine: 254 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: >- Copies the current state of the keyboard into the specified array. - This array should be indexed using values. + This array should be indexed using values. - The length of this array should be an array able to hold all possible values. + The length of this array should be an array able to hold all possible values. example: [] syntax: content: public void GetKeyboardState(bool[] keyboardState) @@ -458,7 +410,7 @@ items: content.vb: Public Sub GetKeyboardState(keyboardState As Boolean()) overload: OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.GetKeyboardState* implements: - - OpenTK.Core.Platform.IKeyboardComponent.GetKeyboardState(System.Boolean[]) + - OpenTK.Platform.IKeyboardComponent.GetKeyboardState(System.Boolean[]) nameWithType.vb: MacOSKeyboardComponent.GetKeyboardState(Boolean()) fullName.vb: OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.GetKeyboardState(Boolean()) name.vb: GetKeyboardState(Boolean()) @@ -474,48 +426,40 @@ items: fullName: OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.GetKeyboardModifiers() type: Method source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSKeyboardComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetKeyboardModifiers - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSKeyboardComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSKeyboardComponent.cs startLine: 261 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: Gets the current keyboard modifiers. example: [] syntax: content: public KeyModifier GetKeyboardModifiers() return: - type: OpenTK.Core.Platform.KeyModifier + type: OpenTK.Platform.KeyModifier description: The current keyboard modifiers. content.vb: Public Function GetKeyboardModifiers() As KeyModifier overload: OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.GetKeyboardModifiers* implements: - - OpenTK.Core.Platform.IKeyboardComponent.GetKeyboardModifiers -- uid: OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.BeginIme(OpenTK.Core.Platform.WindowHandle) - commentId: M:OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.BeginIme(OpenTK.Core.Platform.WindowHandle) - id: BeginIme(OpenTK.Core.Platform.WindowHandle) + - OpenTK.Platform.IKeyboardComponent.GetKeyboardModifiers +- uid: OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.BeginIme(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.BeginIme(OpenTK.Platform.WindowHandle) + id: BeginIme(OpenTK.Platform.WindowHandle) parent: OpenTK.Platform.Native.macOS.MacOSKeyboardComponent langs: - csharp - vb name: BeginIme(WindowHandle) nameWithType: MacOSKeyboardComponent.BeginIme(WindowHandle) - fullName: OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.BeginIme(OpenTK.Core.Platform.WindowHandle) + fullName: OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.BeginIme(OpenTK.Platform.WindowHandle) type: Method source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSKeyboardComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: BeginIme - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSKeyboardComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSKeyboardComponent.cs startLine: 302 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: Invoke input method editor. example: [] @@ -523,33 +467,29 @@ items: content: public void BeginIme(WindowHandle window) parameters: - id: window - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: The window corresponding to this IME window. content.vb: Public Sub BeginIme(window As WindowHandle) overload: OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.BeginIme* implements: - - OpenTK.Core.Platform.IKeyboardComponent.BeginIme(OpenTK.Core.Platform.WindowHandle) -- uid: OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.SetImeRectangle(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) - commentId: M:OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.SetImeRectangle(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) - id: SetImeRectangle(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) + - OpenTK.Platform.IKeyboardComponent.BeginIme(OpenTK.Platform.WindowHandle) +- uid: OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.SetImeRectangle(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) + commentId: M:OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.SetImeRectangle(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) + id: SetImeRectangle(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) parent: OpenTK.Platform.Native.macOS.MacOSKeyboardComponent langs: - csharp - vb name: SetImeRectangle(WindowHandle, int, int, int, int) nameWithType: MacOSKeyboardComponent.SetImeRectangle(WindowHandle, int, int, int, int) - fullName: OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.SetImeRectangle(OpenTK.Core.Platform.WindowHandle, int, int, int, int) + fullName: OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.SetImeRectangle(OpenTK.Platform.WindowHandle, int, int, int, int) type: Method source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSKeyboardComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetImeRectangle - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSKeyboardComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSKeyboardComponent.cs startLine: 308 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: Set the rectangle to which the IME interface will appear relative to. example: [] @@ -557,7 +497,7 @@ items: content: public void SetImeRectangle(WindowHandle window, int x, int y, int width, int height) parameters: - id: window - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: The window corresponding to this IME window. - id: x type: System.Int32 @@ -574,31 +514,27 @@ items: content.vb: Public Sub SetImeRectangle(window As WindowHandle, x As Integer, y As Integer, width As Integer, height As Integer) overload: OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.SetImeRectangle* implements: - - OpenTK.Core.Platform.IKeyboardComponent.SetImeRectangle(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) + - OpenTK.Platform.IKeyboardComponent.SetImeRectangle(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) nameWithType.vb: MacOSKeyboardComponent.SetImeRectangle(WindowHandle, Integer, Integer, Integer, Integer) - fullName.vb: OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.SetImeRectangle(OpenTK.Core.Platform.WindowHandle, Integer, Integer, Integer, Integer) + fullName.vb: OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.SetImeRectangle(OpenTK.Platform.WindowHandle, Integer, Integer, Integer, Integer) name.vb: SetImeRectangle(WindowHandle, Integer, Integer, Integer, Integer) -- uid: OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.EndIme(OpenTK.Core.Platform.WindowHandle) - commentId: M:OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.EndIme(OpenTK.Core.Platform.WindowHandle) - id: EndIme(OpenTK.Core.Platform.WindowHandle) +- uid: OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.EndIme(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.EndIme(OpenTK.Platform.WindowHandle) + id: EndIme(OpenTK.Platform.WindowHandle) parent: OpenTK.Platform.Native.macOS.MacOSKeyboardComponent langs: - csharp - vb name: EndIme(WindowHandle) nameWithType: MacOSKeyboardComponent.EndIme(WindowHandle) - fullName: OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.EndIme(OpenTK.Core.Platform.WindowHandle) + fullName: OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.EndIme(OpenTK.Platform.WindowHandle) type: Method source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSKeyboardComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: EndIme - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSKeyboardComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSKeyboardComponent.cs startLine: 314 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: Finish input method editor. example: [] @@ -606,12 +542,12 @@ items: content: public void EndIme(WindowHandle window) parameters: - id: window - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: The window corresponding to this IME window. content.vb: Public Sub EndIme(window As WindowHandle) overload: OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.EndIme* implements: - - OpenTK.Core.Platform.IKeyboardComponent.EndIme(OpenTK.Core.Platform.WindowHandle) + - OpenTK.Platform.IKeyboardComponent.EndIme(OpenTK.Platform.WindowHandle) references: - uid: OpenTK.Platform.Native.macOS commentId: N:OpenTK.Platform.Native.macOS @@ -662,20 +598,20 @@ references: nameWithType.vb: Object fullName.vb: Object name.vb: Object -- uid: OpenTK.Core.Platform.IKeyboardComponent - commentId: T:OpenTK.Core.Platform.IKeyboardComponent - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.IKeyboardComponent.html +- uid: OpenTK.Platform.IKeyboardComponent + commentId: T:OpenTK.Platform.IKeyboardComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IKeyboardComponent.html name: IKeyboardComponent nameWithType: IKeyboardComponent - fullName: OpenTK.Core.Platform.IKeyboardComponent -- uid: OpenTK.Core.Platform.IPalComponent - commentId: T:OpenTK.Core.Platform.IPalComponent - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.IPalComponent.html + fullName: OpenTK.Platform.IKeyboardComponent +- uid: OpenTK.Platform.IPalComponent + commentId: T:OpenTK.Platform.IPalComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IPalComponent.html name: IPalComponent nameWithType: IPalComponent - fullName: OpenTK.Core.Platform.IPalComponent + fullName: OpenTK.Platform.IPalComponent - uid: System.Object.Equals(System.Object) commentId: M:System.Object.Equals(System.Object) parent: System.Object @@ -902,49 +838,41 @@ references: name: System nameWithType: System fullName: System -- uid: OpenTK.Core.Platform - commentId: N:OpenTK.Core.Platform +- uid: OpenTK.Platform + commentId: N:OpenTK.Platform href: OpenTK.html - name: OpenTK.Core.Platform - nameWithType: OpenTK.Core.Platform - fullName: OpenTK.Core.Platform + name: OpenTK.Platform + nameWithType: OpenTK.Platform + fullName: OpenTK.Platform spec.csharp: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html spec.vb: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html - uid: OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.Name* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.Name href: OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.html#OpenTK_Platform_Native_macOS_MacOSKeyboardComponent_Name name: Name nameWithType: MacOSKeyboardComponent.Name fullName: OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.Name -- uid: OpenTK.Core.Platform.IPalComponent.Name - commentId: P:OpenTK.Core.Platform.IPalComponent.Name - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Name +- uid: OpenTK.Platform.IPalComponent.Name + commentId: P:OpenTK.Platform.IPalComponent.Name + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Name name: Name nameWithType: IPalComponent.Name - fullName: OpenTK.Core.Platform.IPalComponent.Name + fullName: OpenTK.Platform.IPalComponent.Name - uid: System.String commentId: T:System.String parent: System @@ -962,33 +890,33 @@ references: name: Provides nameWithType: MacOSKeyboardComponent.Provides fullName: OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.Provides -- uid: OpenTK.Core.Platform.IPalComponent.Provides - commentId: P:OpenTK.Core.Platform.IPalComponent.Provides - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Provides +- uid: OpenTK.Platform.IPalComponent.Provides + commentId: P:OpenTK.Platform.IPalComponent.Provides + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Provides name: Provides nameWithType: IPalComponent.Provides - fullName: OpenTK.Core.Platform.IPalComponent.Provides -- uid: OpenTK.Core.Platform.PalComponents - commentId: T:OpenTK.Core.Platform.PalComponents - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.PalComponents.html + fullName: OpenTK.Platform.IPalComponent.Provides +- uid: OpenTK.Platform.PalComponents + commentId: T:OpenTK.Platform.PalComponents + parent: OpenTK.Platform + href: OpenTK.Platform.PalComponents.html name: PalComponents nameWithType: PalComponents - fullName: OpenTK.Core.Platform.PalComponents + fullName: OpenTK.Platform.PalComponents - uid: OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.Logger* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.Logger href: OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.html#OpenTK_Platform_Native_macOS_MacOSKeyboardComponent_Logger name: Logger nameWithType: MacOSKeyboardComponent.Logger fullName: OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.Logger -- uid: OpenTK.Core.Platform.IPalComponent.Logger - commentId: P:OpenTK.Core.Platform.IPalComponent.Logger - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Logger +- uid: OpenTK.Platform.IPalComponent.Logger + commentId: P:OpenTK.Platform.IPalComponent.Logger + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Logger name: Logger nameWithType: IPalComponent.Logger - fullName: OpenTK.Core.Platform.IPalComponent.Logger + fullName: OpenTK.Platform.IPalComponent.Logger - uid: OpenTK.Core.Utility.ILogger commentId: T:OpenTK.Core.Utility.ILogger parent: OpenTK.Core.Utility @@ -1028,55 +956,55 @@ references: href: OpenTK.Core.Utility.html - uid: OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.Initialize* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.Initialize - href: OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.html#OpenTK_Platform_Native_macOS_MacOSKeyboardComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + href: OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.html#OpenTK_Platform_Native_macOS_MacOSKeyboardComponent_Initialize_OpenTK_Platform_ToolkitOptions_ name: Initialize nameWithType: MacOSKeyboardComponent.Initialize fullName: OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.Initialize -- uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - commentId: M:OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ +- uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ name: Initialize(ToolkitOptions) nameWithType: IPalComponent.Initialize(ToolkitOptions) - fullName: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + fullName: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) spec.csharp: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + - uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.ToolkitOptions + - uid: OpenTK.Platform.ToolkitOptions name: ToolkitOptions - href: OpenTK.Core.Platform.ToolkitOptions.html + href: OpenTK.Platform.ToolkitOptions.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + - uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.ToolkitOptions + - uid: OpenTK.Platform.ToolkitOptions name: ToolkitOptions - href: OpenTK.Core.Platform.ToolkitOptions.html + href: OpenTK.Platform.ToolkitOptions.html - name: ) -- uid: OpenTK.Core.Platform.ToolkitOptions - commentId: T:OpenTK.Core.Platform.ToolkitOptions - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.ToolkitOptions.html +- uid: OpenTK.Platform.ToolkitOptions + commentId: T:OpenTK.Platform.ToolkitOptions + parent: OpenTK.Platform + href: OpenTK.Platform.ToolkitOptions.html name: ToolkitOptions nameWithType: ToolkitOptions - fullName: OpenTK.Core.Platform.ToolkitOptions + fullName: OpenTK.Platform.ToolkitOptions - uid: OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.SupportsLayouts* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.SupportsLayouts href: OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.html#OpenTK_Platform_Native_macOS_MacOSKeyboardComponent_SupportsLayouts name: SupportsLayouts nameWithType: MacOSKeyboardComponent.SupportsLayouts fullName: OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.SupportsLayouts -- uid: OpenTK.Core.Platform.IKeyboardComponent.SupportsLayouts - commentId: P:OpenTK.Core.Platform.IKeyboardComponent.SupportsLayouts - parent: OpenTK.Core.Platform.IKeyboardComponent - href: OpenTK.Core.Platform.IKeyboardComponent.html#OpenTK_Core_Platform_IKeyboardComponent_SupportsLayouts +- uid: OpenTK.Platform.IKeyboardComponent.SupportsLayouts + commentId: P:OpenTK.Platform.IKeyboardComponent.SupportsLayouts + parent: OpenTK.Platform.IKeyboardComponent + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_SupportsLayouts name: SupportsLayouts nameWithType: IKeyboardComponent.SupportsLayouts - fullName: OpenTK.Core.Platform.IKeyboardComponent.SupportsLayouts + fullName: OpenTK.Platform.IKeyboardComponent.SupportsLayouts - uid: System.Boolean commentId: T:System.Boolean parent: System @@ -1094,80 +1022,80 @@ references: name: SupportsIme nameWithType: MacOSKeyboardComponent.SupportsIme fullName: OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.SupportsIme -- uid: OpenTK.Core.Platform.IKeyboardComponent.SupportsIme - commentId: P:OpenTK.Core.Platform.IKeyboardComponent.SupportsIme - parent: OpenTK.Core.Platform.IKeyboardComponent - href: OpenTK.Core.Platform.IKeyboardComponent.html#OpenTK_Core_Platform_IKeyboardComponent_SupportsIme +- uid: OpenTK.Platform.IKeyboardComponent.SupportsIme + commentId: P:OpenTK.Platform.IKeyboardComponent.SupportsIme + parent: OpenTK.Platform.IKeyboardComponent + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_SupportsIme name: SupportsIme nameWithType: IKeyboardComponent.SupportsIme - fullName: OpenTK.Core.Platform.IKeyboardComponent.SupportsIme -- uid: OpenTK.Core.Platform.PalNotImplementedException - commentId: T:OpenTK.Core.Platform.PalNotImplementedException - href: OpenTK.Core.Platform.PalNotImplementedException.html + fullName: OpenTK.Platform.IKeyboardComponent.SupportsIme +- uid: OpenTK.Platform.PalNotImplementedException + commentId: T:OpenTK.Platform.PalNotImplementedException + href: OpenTK.Platform.PalNotImplementedException.html name: PalNotImplementedException nameWithType: PalNotImplementedException - fullName: OpenTK.Core.Platform.PalNotImplementedException + fullName: OpenTK.Platform.PalNotImplementedException - uid: OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.GetActiveKeyboardLayout* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.GetActiveKeyboardLayout - href: OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.html#OpenTK_Platform_Native_macOS_MacOSKeyboardComponent_GetActiveKeyboardLayout_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.html#OpenTK_Platform_Native_macOS_MacOSKeyboardComponent_GetActiveKeyboardLayout_OpenTK_Platform_WindowHandle_ name: GetActiveKeyboardLayout nameWithType: MacOSKeyboardComponent.GetActiveKeyboardLayout fullName: OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.GetActiveKeyboardLayout -- uid: OpenTK.Core.Platform.IKeyboardComponent.GetActiveKeyboardLayout(OpenTK.Core.Platform.WindowHandle) - commentId: M:OpenTK.Core.Platform.IKeyboardComponent.GetActiveKeyboardLayout(OpenTK.Core.Platform.WindowHandle) - parent: OpenTK.Core.Platform.IKeyboardComponent - href: OpenTK.Core.Platform.IKeyboardComponent.html#OpenTK_Core_Platform_IKeyboardComponent_GetActiveKeyboardLayout_OpenTK_Core_Platform_WindowHandle_ +- uid: OpenTK.Platform.IKeyboardComponent.GetActiveKeyboardLayout(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IKeyboardComponent.GetActiveKeyboardLayout(OpenTK.Platform.WindowHandle) + parent: OpenTK.Platform.IKeyboardComponent + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_GetActiveKeyboardLayout_OpenTK_Platform_WindowHandle_ name: GetActiveKeyboardLayout(WindowHandle) nameWithType: IKeyboardComponent.GetActiveKeyboardLayout(WindowHandle) - fullName: OpenTK.Core.Platform.IKeyboardComponent.GetActiveKeyboardLayout(OpenTK.Core.Platform.WindowHandle) + fullName: OpenTK.Platform.IKeyboardComponent.GetActiveKeyboardLayout(OpenTK.Platform.WindowHandle) spec.csharp: - - uid: OpenTK.Core.Platform.IKeyboardComponent.GetActiveKeyboardLayout(OpenTK.Core.Platform.WindowHandle) + - uid: OpenTK.Platform.IKeyboardComponent.GetActiveKeyboardLayout(OpenTK.Platform.WindowHandle) name: GetActiveKeyboardLayout - href: OpenTK.Core.Platform.IKeyboardComponent.html#OpenTK_Core_Platform_IKeyboardComponent_GetActiveKeyboardLayout_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_GetActiveKeyboardLayout_OpenTK_Platform_WindowHandle_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IKeyboardComponent.GetActiveKeyboardLayout(OpenTK.Core.Platform.WindowHandle) + - uid: OpenTK.Platform.IKeyboardComponent.GetActiveKeyboardLayout(OpenTK.Platform.WindowHandle) name: GetActiveKeyboardLayout - href: OpenTK.Core.Platform.IKeyboardComponent.html#OpenTK_Core_Platform_IKeyboardComponent_GetActiveKeyboardLayout_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_GetActiveKeyboardLayout_OpenTK_Platform_WindowHandle_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ) -- uid: OpenTK.Core.Platform.WindowHandle - commentId: T:OpenTK.Core.Platform.WindowHandle - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.WindowHandle.html +- uid: OpenTK.Platform.WindowHandle + commentId: T:OpenTK.Platform.WindowHandle + parent: OpenTK.Platform + href: OpenTK.Platform.WindowHandle.html name: WindowHandle nameWithType: WindowHandle - fullName: OpenTK.Core.Platform.WindowHandle + fullName: OpenTK.Platform.WindowHandle - uid: OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.GetAvailableKeyboardLayouts* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.GetAvailableKeyboardLayouts href: OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.html#OpenTK_Platform_Native_macOS_MacOSKeyboardComponent_GetAvailableKeyboardLayouts name: GetAvailableKeyboardLayouts nameWithType: MacOSKeyboardComponent.GetAvailableKeyboardLayouts fullName: OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.GetAvailableKeyboardLayouts -- uid: OpenTK.Core.Platform.IKeyboardComponent.GetAvailableKeyboardLayouts - commentId: M:OpenTK.Core.Platform.IKeyboardComponent.GetAvailableKeyboardLayouts - parent: OpenTK.Core.Platform.IKeyboardComponent - href: OpenTK.Core.Platform.IKeyboardComponent.html#OpenTK_Core_Platform_IKeyboardComponent_GetAvailableKeyboardLayouts +- uid: OpenTK.Platform.IKeyboardComponent.GetAvailableKeyboardLayouts + commentId: M:OpenTK.Platform.IKeyboardComponent.GetAvailableKeyboardLayouts + parent: OpenTK.Platform.IKeyboardComponent + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_GetAvailableKeyboardLayouts name: GetAvailableKeyboardLayouts() nameWithType: IKeyboardComponent.GetAvailableKeyboardLayouts() - fullName: OpenTK.Core.Platform.IKeyboardComponent.GetAvailableKeyboardLayouts() + fullName: OpenTK.Platform.IKeyboardComponent.GetAvailableKeyboardLayouts() spec.csharp: - - uid: OpenTK.Core.Platform.IKeyboardComponent.GetAvailableKeyboardLayouts + - uid: OpenTK.Platform.IKeyboardComponent.GetAvailableKeyboardLayouts name: GetAvailableKeyboardLayouts - href: OpenTK.Core.Platform.IKeyboardComponent.html#OpenTK_Core_Platform_IKeyboardComponent_GetAvailableKeyboardLayouts + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_GetAvailableKeyboardLayouts - name: ( - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IKeyboardComponent.GetAvailableKeyboardLayouts + - uid: OpenTK.Platform.IKeyboardComponent.GetAvailableKeyboardLayouts name: GetAvailableKeyboardLayouts - href: OpenTK.Core.Platform.IKeyboardComponent.html#OpenTK_Core_Platform_IKeyboardComponent_GetAvailableKeyboardLayouts + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_GetAvailableKeyboardLayouts - name: ( - name: ) - uid: System.String[] @@ -1193,93 +1121,93 @@ references: href: https://learn.microsoft.com/dotnet/api/system.string - name: ( - name: ) -- uid: OpenTK.Core.Platform.Scancode - commentId: T:OpenTK.Core.Platform.Scancode - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.Scancode.html +- uid: OpenTK.Platform.Scancode + commentId: T:OpenTK.Platform.Scancode + parent: OpenTK.Platform + href: OpenTK.Platform.Scancode.html name: Scancode nameWithType: Scancode - fullName: OpenTK.Core.Platform.Scancode -- uid: OpenTK.Core.Platform.Key - commentId: T:OpenTK.Core.Platform.Key - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.Key.html + fullName: OpenTK.Platform.Scancode +- uid: OpenTK.Platform.Key + commentId: T:OpenTK.Platform.Key + parent: OpenTK.Platform + href: OpenTK.Platform.Key.html name: Key nameWithType: Key - fullName: OpenTK.Core.Platform.Key -- uid: OpenTK.Core.Platform.Scancode.Unknown - commentId: F:OpenTK.Core.Platform.Scancode.Unknown - href: OpenTK.Core.Platform.Scancode.html#OpenTK_Core_Platform_Scancode_Unknown + fullName: OpenTK.Platform.Key +- uid: OpenTK.Platform.Scancode.Unknown + commentId: F:OpenTK.Platform.Scancode.Unknown + href: OpenTK.Platform.Scancode.html#OpenTK_Platform_Scancode_Unknown name: Unknown nameWithType: Scancode.Unknown - fullName: OpenTK.Core.Platform.Scancode.Unknown + fullName: OpenTK.Platform.Scancode.Unknown - uid: OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.GetScancodeFromKey* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.GetScancodeFromKey - href: OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.html#OpenTK_Platform_Native_macOS_MacOSKeyboardComponent_GetScancodeFromKey_OpenTK_Core_Platform_Key_ + href: OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.html#OpenTK_Platform_Native_macOS_MacOSKeyboardComponent_GetScancodeFromKey_OpenTK_Platform_Key_ name: GetScancodeFromKey nameWithType: MacOSKeyboardComponent.GetScancodeFromKey fullName: OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.GetScancodeFromKey -- uid: OpenTK.Core.Platform.IKeyboardComponent.GetScancodeFromKey(OpenTK.Core.Platform.Key) - commentId: M:OpenTK.Core.Platform.IKeyboardComponent.GetScancodeFromKey(OpenTK.Core.Platform.Key) - parent: OpenTK.Core.Platform.IKeyboardComponent - href: OpenTK.Core.Platform.IKeyboardComponent.html#OpenTK_Core_Platform_IKeyboardComponent_GetScancodeFromKey_OpenTK_Core_Platform_Key_ +- uid: OpenTK.Platform.IKeyboardComponent.GetScancodeFromKey(OpenTK.Platform.Key) + commentId: M:OpenTK.Platform.IKeyboardComponent.GetScancodeFromKey(OpenTK.Platform.Key) + parent: OpenTK.Platform.IKeyboardComponent + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_GetScancodeFromKey_OpenTK_Platform_Key_ name: GetScancodeFromKey(Key) nameWithType: IKeyboardComponent.GetScancodeFromKey(Key) - fullName: OpenTK.Core.Platform.IKeyboardComponent.GetScancodeFromKey(OpenTK.Core.Platform.Key) + fullName: OpenTK.Platform.IKeyboardComponent.GetScancodeFromKey(OpenTK.Platform.Key) spec.csharp: - - uid: OpenTK.Core.Platform.IKeyboardComponent.GetScancodeFromKey(OpenTK.Core.Platform.Key) + - uid: OpenTK.Platform.IKeyboardComponent.GetScancodeFromKey(OpenTK.Platform.Key) name: GetScancodeFromKey - href: OpenTK.Core.Platform.IKeyboardComponent.html#OpenTK_Core_Platform_IKeyboardComponent_GetScancodeFromKey_OpenTK_Core_Platform_Key_ + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_GetScancodeFromKey_OpenTK_Platform_Key_ - name: ( - - uid: OpenTK.Core.Platform.Key + - uid: OpenTK.Platform.Key name: Key - href: OpenTK.Core.Platform.Key.html + href: OpenTK.Platform.Key.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IKeyboardComponent.GetScancodeFromKey(OpenTK.Core.Platform.Key) + - uid: OpenTK.Platform.IKeyboardComponent.GetScancodeFromKey(OpenTK.Platform.Key) name: GetScancodeFromKey - href: OpenTK.Core.Platform.IKeyboardComponent.html#OpenTK_Core_Platform_IKeyboardComponent_GetScancodeFromKey_OpenTK_Core_Platform_Key_ + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_GetScancodeFromKey_OpenTK_Platform_Key_ - name: ( - - uid: OpenTK.Core.Platform.Key + - uid: OpenTK.Platform.Key name: Key - href: OpenTK.Core.Platform.Key.html + href: OpenTK.Platform.Key.html - name: ) -- uid: OpenTK.Core.Platform.Key.Unknown - commentId: F:OpenTK.Core.Platform.Key.Unknown - href: OpenTK.Core.Platform.Key.html#OpenTK_Core_Platform_Key_Unknown +- uid: OpenTK.Platform.Key.Unknown + commentId: F:OpenTK.Platform.Key.Unknown + href: OpenTK.Platform.Key.html#OpenTK_Platform_Key_Unknown name: Unknown nameWithType: Key.Unknown - fullName: OpenTK.Core.Platform.Key.Unknown + fullName: OpenTK.Platform.Key.Unknown - uid: OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.GetKeyFromScancode* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.GetKeyFromScancode - href: OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.html#OpenTK_Platform_Native_macOS_MacOSKeyboardComponent_GetKeyFromScancode_OpenTK_Core_Platform_Scancode_ + href: OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.html#OpenTK_Platform_Native_macOS_MacOSKeyboardComponent_GetKeyFromScancode_OpenTK_Platform_Scancode_ name: GetKeyFromScancode nameWithType: MacOSKeyboardComponent.GetKeyFromScancode fullName: OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.GetKeyFromScancode -- uid: OpenTK.Core.Platform.IKeyboardComponent.GetKeyFromScancode(OpenTK.Core.Platform.Scancode) - commentId: M:OpenTK.Core.Platform.IKeyboardComponent.GetKeyFromScancode(OpenTK.Core.Platform.Scancode) - parent: OpenTK.Core.Platform.IKeyboardComponent - href: OpenTK.Core.Platform.IKeyboardComponent.html#OpenTK_Core_Platform_IKeyboardComponent_GetKeyFromScancode_OpenTK_Core_Platform_Scancode_ +- uid: OpenTK.Platform.IKeyboardComponent.GetKeyFromScancode(OpenTK.Platform.Scancode) + commentId: M:OpenTK.Platform.IKeyboardComponent.GetKeyFromScancode(OpenTK.Platform.Scancode) + parent: OpenTK.Platform.IKeyboardComponent + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_GetKeyFromScancode_OpenTK_Platform_Scancode_ name: GetKeyFromScancode(Scancode) nameWithType: IKeyboardComponent.GetKeyFromScancode(Scancode) - fullName: OpenTK.Core.Platform.IKeyboardComponent.GetKeyFromScancode(OpenTK.Core.Platform.Scancode) + fullName: OpenTK.Platform.IKeyboardComponent.GetKeyFromScancode(OpenTK.Platform.Scancode) spec.csharp: - - uid: OpenTK.Core.Platform.IKeyboardComponent.GetKeyFromScancode(OpenTK.Core.Platform.Scancode) + - uid: OpenTK.Platform.IKeyboardComponent.GetKeyFromScancode(OpenTK.Platform.Scancode) name: GetKeyFromScancode - href: OpenTK.Core.Platform.IKeyboardComponent.html#OpenTK_Core_Platform_IKeyboardComponent_GetKeyFromScancode_OpenTK_Core_Platform_Scancode_ + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_GetKeyFromScancode_OpenTK_Platform_Scancode_ - name: ( - - uid: OpenTK.Core.Platform.Scancode + - uid: OpenTK.Platform.Scancode name: Scancode - href: OpenTK.Core.Platform.Scancode.html + href: OpenTK.Platform.Scancode.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IKeyboardComponent.GetKeyFromScancode(OpenTK.Core.Platform.Scancode) + - uid: OpenTK.Platform.IKeyboardComponent.GetKeyFromScancode(OpenTK.Platform.Scancode) name: GetKeyFromScancode - href: OpenTK.Core.Platform.IKeyboardComponent.html#OpenTK_Core_Platform_IKeyboardComponent_GetKeyFromScancode_OpenTK_Core_Platform_Scancode_ + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_GetKeyFromScancode_OpenTK_Platform_Scancode_ - name: ( - - uid: OpenTK.Core.Platform.Scancode + - uid: OpenTK.Platform.Scancode name: Scancode - href: OpenTK.Core.Platform.Scancode.html + href: OpenTK.Platform.Scancode.html - name: ) - uid: OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.GetKeyboardState* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.GetKeyboardState @@ -1287,21 +1215,21 @@ references: name: GetKeyboardState nameWithType: MacOSKeyboardComponent.GetKeyboardState fullName: OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.GetKeyboardState -- uid: OpenTK.Core.Platform.IKeyboardComponent.GetKeyboardState(System.Boolean[]) - commentId: M:OpenTK.Core.Platform.IKeyboardComponent.GetKeyboardState(System.Boolean[]) - parent: OpenTK.Core.Platform.IKeyboardComponent +- uid: OpenTK.Platform.IKeyboardComponent.GetKeyboardState(System.Boolean[]) + commentId: M:OpenTK.Platform.IKeyboardComponent.GetKeyboardState(System.Boolean[]) + parent: OpenTK.Platform.IKeyboardComponent isExternal: true - href: OpenTK.Core.Platform.IKeyboardComponent.html#OpenTK_Core_Platform_IKeyboardComponent_GetKeyboardState_System_Boolean___ + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_GetKeyboardState_System_Boolean___ name: GetKeyboardState(bool[]) nameWithType: IKeyboardComponent.GetKeyboardState(bool[]) - fullName: OpenTK.Core.Platform.IKeyboardComponent.GetKeyboardState(bool[]) + fullName: OpenTK.Platform.IKeyboardComponent.GetKeyboardState(bool[]) nameWithType.vb: IKeyboardComponent.GetKeyboardState(Boolean()) - fullName.vb: OpenTK.Core.Platform.IKeyboardComponent.GetKeyboardState(Boolean()) + fullName.vb: OpenTK.Platform.IKeyboardComponent.GetKeyboardState(Boolean()) name.vb: GetKeyboardState(Boolean()) spec.csharp: - - uid: OpenTK.Core.Platform.IKeyboardComponent.GetKeyboardState(System.Boolean[]) + - uid: OpenTK.Platform.IKeyboardComponent.GetKeyboardState(System.Boolean[]) name: GetKeyboardState - href: OpenTK.Core.Platform.IKeyboardComponent.html#OpenTK_Core_Platform_IKeyboardComponent_GetKeyboardState_System_Boolean___ + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_GetKeyboardState_System_Boolean___ - name: ( - uid: System.Boolean name: bool @@ -1311,9 +1239,9 @@ references: - name: ']' - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IKeyboardComponent.GetKeyboardState(System.Boolean[]) + - uid: OpenTK.Platform.IKeyboardComponent.GetKeyboardState(System.Boolean[]) name: GetKeyboardState - href: OpenTK.Core.Platform.IKeyboardComponent.html#OpenTK_Core_Platform_IKeyboardComponent_GetKeyboardState_System_Boolean___ + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_GetKeyboardState_System_Boolean___ - name: ( - uid: System.Boolean name: Boolean @@ -1351,88 +1279,88 @@ references: name: GetKeyboardModifiers nameWithType: MacOSKeyboardComponent.GetKeyboardModifiers fullName: OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.GetKeyboardModifiers -- uid: OpenTK.Core.Platform.IKeyboardComponent.GetKeyboardModifiers - commentId: M:OpenTK.Core.Platform.IKeyboardComponent.GetKeyboardModifiers - parent: OpenTK.Core.Platform.IKeyboardComponent - href: OpenTK.Core.Platform.IKeyboardComponent.html#OpenTK_Core_Platform_IKeyboardComponent_GetKeyboardModifiers +- uid: OpenTK.Platform.IKeyboardComponent.GetKeyboardModifiers + commentId: M:OpenTK.Platform.IKeyboardComponent.GetKeyboardModifiers + parent: OpenTK.Platform.IKeyboardComponent + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_GetKeyboardModifiers name: GetKeyboardModifiers() nameWithType: IKeyboardComponent.GetKeyboardModifiers() - fullName: OpenTK.Core.Platform.IKeyboardComponent.GetKeyboardModifiers() + fullName: OpenTK.Platform.IKeyboardComponent.GetKeyboardModifiers() spec.csharp: - - uid: OpenTK.Core.Platform.IKeyboardComponent.GetKeyboardModifiers + - uid: OpenTK.Platform.IKeyboardComponent.GetKeyboardModifiers name: GetKeyboardModifiers - href: OpenTK.Core.Platform.IKeyboardComponent.html#OpenTK_Core_Platform_IKeyboardComponent_GetKeyboardModifiers + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_GetKeyboardModifiers - name: ( - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IKeyboardComponent.GetKeyboardModifiers + - uid: OpenTK.Platform.IKeyboardComponent.GetKeyboardModifiers name: GetKeyboardModifiers - href: OpenTK.Core.Platform.IKeyboardComponent.html#OpenTK_Core_Platform_IKeyboardComponent_GetKeyboardModifiers + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_GetKeyboardModifiers - name: ( - name: ) -- uid: OpenTK.Core.Platform.KeyModifier - commentId: T:OpenTK.Core.Platform.KeyModifier - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.KeyModifier.html +- uid: OpenTK.Platform.KeyModifier + commentId: T:OpenTK.Platform.KeyModifier + parent: OpenTK.Platform + href: OpenTK.Platform.KeyModifier.html name: KeyModifier nameWithType: KeyModifier - fullName: OpenTK.Core.Platform.KeyModifier + fullName: OpenTK.Platform.KeyModifier - uid: OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.BeginIme* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.BeginIme - href: OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.html#OpenTK_Platform_Native_macOS_MacOSKeyboardComponent_BeginIme_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.html#OpenTK_Platform_Native_macOS_MacOSKeyboardComponent_BeginIme_OpenTK_Platform_WindowHandle_ name: BeginIme nameWithType: MacOSKeyboardComponent.BeginIme fullName: OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.BeginIme -- uid: OpenTK.Core.Platform.IKeyboardComponent.BeginIme(OpenTK.Core.Platform.WindowHandle) - commentId: M:OpenTK.Core.Platform.IKeyboardComponent.BeginIme(OpenTK.Core.Platform.WindowHandle) - parent: OpenTK.Core.Platform.IKeyboardComponent - href: OpenTK.Core.Platform.IKeyboardComponent.html#OpenTK_Core_Platform_IKeyboardComponent_BeginIme_OpenTK_Core_Platform_WindowHandle_ +- uid: OpenTK.Platform.IKeyboardComponent.BeginIme(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IKeyboardComponent.BeginIme(OpenTK.Platform.WindowHandle) + parent: OpenTK.Platform.IKeyboardComponent + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_BeginIme_OpenTK_Platform_WindowHandle_ name: BeginIme(WindowHandle) nameWithType: IKeyboardComponent.BeginIme(WindowHandle) - fullName: OpenTK.Core.Platform.IKeyboardComponent.BeginIme(OpenTK.Core.Platform.WindowHandle) + fullName: OpenTK.Platform.IKeyboardComponent.BeginIme(OpenTK.Platform.WindowHandle) spec.csharp: - - uid: OpenTK.Core.Platform.IKeyboardComponent.BeginIme(OpenTK.Core.Platform.WindowHandle) + - uid: OpenTK.Platform.IKeyboardComponent.BeginIme(OpenTK.Platform.WindowHandle) name: BeginIme - href: OpenTK.Core.Platform.IKeyboardComponent.html#OpenTK_Core_Platform_IKeyboardComponent_BeginIme_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_BeginIme_OpenTK_Platform_WindowHandle_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IKeyboardComponent.BeginIme(OpenTK.Core.Platform.WindowHandle) + - uid: OpenTK.Platform.IKeyboardComponent.BeginIme(OpenTK.Platform.WindowHandle) name: BeginIme - href: OpenTK.Core.Platform.IKeyboardComponent.html#OpenTK_Core_Platform_IKeyboardComponent_BeginIme_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_BeginIme_OpenTK_Platform_WindowHandle_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ) - uid: OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.SetImeRectangle* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.SetImeRectangle - href: OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.html#OpenTK_Platform_Native_macOS_MacOSKeyboardComponent_SetImeRectangle_OpenTK_Core_Platform_WindowHandle_System_Int32_System_Int32_System_Int32_System_Int32_ + href: OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.html#OpenTK_Platform_Native_macOS_MacOSKeyboardComponent_SetImeRectangle_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_System_Int32_System_Int32_ name: SetImeRectangle nameWithType: MacOSKeyboardComponent.SetImeRectangle fullName: OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.SetImeRectangle -- uid: OpenTK.Core.Platform.IKeyboardComponent.SetImeRectangle(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) - commentId: M:OpenTK.Core.Platform.IKeyboardComponent.SetImeRectangle(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) - parent: OpenTK.Core.Platform.IKeyboardComponent +- uid: OpenTK.Platform.IKeyboardComponent.SetImeRectangle(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) + commentId: M:OpenTK.Platform.IKeyboardComponent.SetImeRectangle(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) + parent: OpenTK.Platform.IKeyboardComponent isExternal: true - href: OpenTK.Core.Platform.IKeyboardComponent.html#OpenTK_Core_Platform_IKeyboardComponent_SetImeRectangle_OpenTK_Core_Platform_WindowHandle_System_Int32_System_Int32_System_Int32_System_Int32_ + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_SetImeRectangle_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_System_Int32_System_Int32_ name: SetImeRectangle(WindowHandle, int, int, int, int) nameWithType: IKeyboardComponent.SetImeRectangle(WindowHandle, int, int, int, int) - fullName: OpenTK.Core.Platform.IKeyboardComponent.SetImeRectangle(OpenTK.Core.Platform.WindowHandle, int, int, int, int) + fullName: OpenTK.Platform.IKeyboardComponent.SetImeRectangle(OpenTK.Platform.WindowHandle, int, int, int, int) nameWithType.vb: IKeyboardComponent.SetImeRectangle(WindowHandle, Integer, Integer, Integer, Integer) - fullName.vb: OpenTK.Core.Platform.IKeyboardComponent.SetImeRectangle(OpenTK.Core.Platform.WindowHandle, Integer, Integer, Integer, Integer) + fullName.vb: OpenTK.Platform.IKeyboardComponent.SetImeRectangle(OpenTK.Platform.WindowHandle, Integer, Integer, Integer, Integer) name.vb: SetImeRectangle(WindowHandle, Integer, Integer, Integer, Integer) spec.csharp: - - uid: OpenTK.Core.Platform.IKeyboardComponent.SetImeRectangle(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) + - uid: OpenTK.Platform.IKeyboardComponent.SetImeRectangle(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) name: SetImeRectangle - href: OpenTK.Core.Platform.IKeyboardComponent.html#OpenTK_Core_Platform_IKeyboardComponent_SetImeRectangle_OpenTK_Core_Platform_WindowHandle_System_Int32_System_Int32_System_Int32_System_Int32_ + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_SetImeRectangle_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_System_Int32_System_Int32_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - uid: System.Int32 @@ -1459,13 +1387,13 @@ references: href: https://learn.microsoft.com/dotnet/api/system.int32 - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IKeyboardComponent.SetImeRectangle(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) + - uid: OpenTK.Platform.IKeyboardComponent.SetImeRectangle(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) name: SetImeRectangle - href: OpenTK.Core.Platform.IKeyboardComponent.html#OpenTK_Core_Platform_IKeyboardComponent_SetImeRectangle_OpenTK_Core_Platform_WindowHandle_System_Int32_System_Int32_System_Int32_System_Int32_ + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_SetImeRectangle_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_System_Int32_System_Int32_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - uid: System.Int32 @@ -1504,32 +1432,32 @@ references: name.vb: Integer - uid: OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.EndIme* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.EndIme - href: OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.html#OpenTK_Platform_Native_macOS_MacOSKeyboardComponent_EndIme_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.html#OpenTK_Platform_Native_macOS_MacOSKeyboardComponent_EndIme_OpenTK_Platform_WindowHandle_ name: EndIme nameWithType: MacOSKeyboardComponent.EndIme fullName: OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.EndIme -- uid: OpenTK.Core.Platform.IKeyboardComponent.EndIme(OpenTK.Core.Platform.WindowHandle) - commentId: M:OpenTK.Core.Platform.IKeyboardComponent.EndIme(OpenTK.Core.Platform.WindowHandle) - parent: OpenTK.Core.Platform.IKeyboardComponent - href: OpenTK.Core.Platform.IKeyboardComponent.html#OpenTK_Core_Platform_IKeyboardComponent_EndIme_OpenTK_Core_Platform_WindowHandle_ +- uid: OpenTK.Platform.IKeyboardComponent.EndIme(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IKeyboardComponent.EndIme(OpenTK.Platform.WindowHandle) + parent: OpenTK.Platform.IKeyboardComponent + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_EndIme_OpenTK_Platform_WindowHandle_ name: EndIme(WindowHandle) nameWithType: IKeyboardComponent.EndIme(WindowHandle) - fullName: OpenTK.Core.Platform.IKeyboardComponent.EndIme(OpenTK.Core.Platform.WindowHandle) + fullName: OpenTK.Platform.IKeyboardComponent.EndIme(OpenTK.Platform.WindowHandle) spec.csharp: - - uid: OpenTK.Core.Platform.IKeyboardComponent.EndIme(OpenTK.Core.Platform.WindowHandle) + - uid: OpenTK.Platform.IKeyboardComponent.EndIme(OpenTK.Platform.WindowHandle) name: EndIme - href: OpenTK.Core.Platform.IKeyboardComponent.html#OpenTK_Core_Platform_IKeyboardComponent_EndIme_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_EndIme_OpenTK_Platform_WindowHandle_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IKeyboardComponent.EndIme(OpenTK.Core.Platform.WindowHandle) + - uid: OpenTK.Platform.IKeyboardComponent.EndIme(OpenTK.Platform.WindowHandle) name: EndIme - href: OpenTK.Core.Platform.IKeyboardComponent.html#OpenTK_Core_Platform_IKeyboardComponent_EndIme_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_EndIme_OpenTK_Platform_WindowHandle_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ) diff --git a/api/OpenTK.Platform.Native.macOS.MacOSMouseComponent.yml b/api/OpenTK.Platform.Native.macOS.MacOSMouseComponent.yml index 4dacd9c1..052c509b 100644 --- a/api/OpenTK.Platform.Native.macOS.MacOSMouseComponent.yml +++ b/api/OpenTK.Platform.Native.macOS.MacOSMouseComponent.yml @@ -6,13 +6,16 @@ items: parent: OpenTK.Platform.Native.macOS children: - OpenTK.Platform.Native.macOS.MacOSMouseComponent.CanSetMousePosition - - OpenTK.Platform.Native.macOS.MacOSMouseComponent.GetMouseState(OpenTK.Core.Platform.MouseState@) + - OpenTK.Platform.Native.macOS.MacOSMouseComponent.EnableRawMouseMotion(OpenTK.Platform.WindowHandle,System.Boolean) + - OpenTK.Platform.Native.macOS.MacOSMouseComponent.GetMouseState(OpenTK.Platform.MouseState@) - OpenTK.Platform.Native.macOS.MacOSMouseComponent.GetPosition(System.Int32@,System.Int32@) - - OpenTK.Platform.Native.macOS.MacOSMouseComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + - OpenTK.Platform.Native.macOS.MacOSMouseComponent.Initialize(OpenTK.Platform.ToolkitOptions) + - OpenTK.Platform.Native.macOS.MacOSMouseComponent.IsRawMouseMotionEnabled(OpenTK.Platform.WindowHandle) - OpenTK.Platform.Native.macOS.MacOSMouseComponent.Logger - OpenTK.Platform.Native.macOS.MacOSMouseComponent.Name - OpenTK.Platform.Native.macOS.MacOSMouseComponent.Provides - OpenTK.Platform.Native.macOS.MacOSMouseComponent.SetPosition(System.Int32,System.Int32) + - OpenTK.Platform.Native.macOS.MacOSMouseComponent.SupportsRawMouseMotion langs: - csharp - vb @@ -21,15 +24,11 @@ items: fullName: OpenTK.Platform.Native.macOS.MacOSMouseComponent type: Class source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSMouseComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MacOSMouseComponent - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSMouseComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSMouseComponent.cs startLine: 10 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS syntax: content: 'public class MacOSMouseComponent : IMouseComponent, IPalComponent' @@ -37,8 +36,8 @@ items: inheritance: - System.Object implements: - - OpenTK.Core.Platform.IMouseComponent - - OpenTK.Core.Platform.IPalComponent + - OpenTK.Platform.IMouseComponent + - OpenTK.Platform.IPalComponent inheritedMembers: - System.Object.Equals(System.Object) - System.Object.Equals(System.Object,System.Object) @@ -59,15 +58,11 @@ items: fullName: OpenTK.Platform.Native.macOS.MacOSMouseComponent.Name type: Property source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSMouseComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Name - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSMouseComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSMouseComponent.cs startLine: 23 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: Name of the abstraction layer component. example: [] @@ -79,7 +74,7 @@ items: content.vb: Public ReadOnly Property Name As String overload: OpenTK.Platform.Native.macOS.MacOSMouseComponent.Name* implements: - - OpenTK.Core.Platform.IPalComponent.Name + - OpenTK.Platform.IPalComponent.Name - uid: OpenTK.Platform.Native.macOS.MacOSMouseComponent.Provides commentId: P:OpenTK.Platform.Native.macOS.MacOSMouseComponent.Provides id: Provides @@ -92,15 +87,11 @@ items: fullName: OpenTK.Platform.Native.macOS.MacOSMouseComponent.Provides type: Property source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSMouseComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Provides - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSMouseComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSMouseComponent.cs startLine: 26 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: Specifies which PAL components this object provides. example: [] @@ -108,11 +99,11 @@ items: content: public PalComponents Provides { get; } parameters: [] return: - type: OpenTK.Core.Platform.PalComponents + type: OpenTK.Platform.PalComponents content.vb: Public ReadOnly Property Provides As PalComponents overload: OpenTK.Platform.Native.macOS.MacOSMouseComponent.Provides* implements: - - OpenTK.Core.Platform.IPalComponent.Provides + - OpenTK.Platform.IPalComponent.Provides - uid: OpenTK.Platform.Native.macOS.MacOSMouseComponent.Logger commentId: P:OpenTK.Platform.Native.macOS.MacOSMouseComponent.Logger id: Logger @@ -125,15 +116,11 @@ items: fullName: OpenTK.Platform.Native.macOS.MacOSMouseComponent.Logger type: Property source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSMouseComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Logger - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSMouseComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSMouseComponent.cs startLine: 29 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: Provides a logger for this component. example: [] @@ -145,7 +132,7 @@ items: content.vb: Public Property Logger As ILogger overload: OpenTK.Platform.Native.macOS.MacOSMouseComponent.Logger* implements: - - OpenTK.Core.Platform.IPalComponent.Logger + - OpenTK.Platform.IPalComponent.Logger - uid: OpenTK.Platform.Native.macOS.MacOSMouseComponent.CanSetMousePosition commentId: P:OpenTK.Platform.Native.macOS.MacOSMouseComponent.CanSetMousePosition id: CanSetMousePosition @@ -158,17 +145,13 @@ items: fullName: OpenTK.Platform.Native.macOS.MacOSMouseComponent.CanSetMousePosition type: Property source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSMouseComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CanSetMousePosition - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSMouseComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSMouseComponent.cs startLine: 32 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS - summary: If it's possible to set the position of the mouse. + summary: If it's possible to set the position of the mouse using . example: [] syntax: content: public bool CanSetMousePosition { get; } @@ -177,29 +160,65 @@ items: type: System.Boolean content.vb: Public ReadOnly Property CanSetMousePosition As Boolean overload: OpenTK.Platform.Native.macOS.MacOSMouseComponent.CanSetMousePosition* + seealso: + - linkId: OpenTK.Platform.IMouseComponent.SetPosition(System.Int32,System.Int32) + commentId: M:OpenTK.Platform.IMouseComponent.SetPosition(System.Int32,System.Int32) implements: - - OpenTK.Core.Platform.IMouseComponent.CanSetMousePosition -- uid: OpenTK.Platform.Native.macOS.MacOSMouseComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - commentId: M:OpenTK.Platform.Native.macOS.MacOSMouseComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - id: Initialize(OpenTK.Core.Platform.ToolkitOptions) + - OpenTK.Platform.IMouseComponent.CanSetMousePosition +- uid: OpenTK.Platform.Native.macOS.MacOSMouseComponent.SupportsRawMouseMotion + commentId: P:OpenTK.Platform.Native.macOS.MacOSMouseComponent.SupportsRawMouseMotion + id: SupportsRawMouseMotion + parent: OpenTK.Platform.Native.macOS.MacOSMouseComponent + langs: + - csharp + - vb + name: SupportsRawMouseMotion + nameWithType: MacOSMouseComponent.SupportsRawMouseMotion + fullName: OpenTK.Platform.Native.macOS.MacOSMouseComponent.SupportsRawMouseMotion + type: Property + source: + id: SupportsRawMouseMotion + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSMouseComponent.cs + startLine: 35 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform.Native.macOS + summary: >- + If raw mouse motion is supported on this platform. + + If this is false and should not be used. + example: [] + syntax: + content: public bool SupportsRawMouseMotion { get; } + parameters: [] + return: + type: System.Boolean + content.vb: Public ReadOnly Property SupportsRawMouseMotion As Boolean + overload: OpenTK.Platform.Native.macOS.MacOSMouseComponent.SupportsRawMouseMotion* + seealso: + - linkId: OpenTK.Platform.IMouseComponent.IsRawMouseMotionEnabled(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IMouseComponent.IsRawMouseMotionEnabled(OpenTK.Platform.WindowHandle) + - linkId: OpenTK.Platform.IMouseComponent.EnableRawMouseMotion(OpenTK.Platform.WindowHandle,System.Boolean) + commentId: M:OpenTK.Platform.IMouseComponent.EnableRawMouseMotion(OpenTK.Platform.WindowHandle,System.Boolean) + implements: + - OpenTK.Platform.IMouseComponent.SupportsRawMouseMotion +- uid: OpenTK.Platform.Native.macOS.MacOSMouseComponent.Initialize(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Native.macOS.MacOSMouseComponent.Initialize(OpenTK.Platform.ToolkitOptions) + id: Initialize(OpenTK.Platform.ToolkitOptions) parent: OpenTK.Platform.Native.macOS.MacOSMouseComponent langs: - csharp - vb name: Initialize(ToolkitOptions) nameWithType: MacOSMouseComponent.Initialize(ToolkitOptions) - fullName: OpenTK.Platform.Native.macOS.MacOSMouseComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + fullName: OpenTK.Platform.Native.macOS.MacOSMouseComponent.Initialize(OpenTK.Platform.ToolkitOptions) type: Method source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSMouseComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Initialize - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSMouseComponent.cs - startLine: 35 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSMouseComponent.cs + startLine: 38 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: Initialize the component. example: [] @@ -207,12 +226,12 @@ items: content: public void Initialize(ToolkitOptions options) parameters: - id: options - type: OpenTK.Core.Platform.ToolkitOptions + type: OpenTK.Platform.ToolkitOptions description: The options to initialize the component with. content.vb: Public Sub Initialize(options As ToolkitOptions) overload: OpenTK.Platform.Native.macOS.MacOSMouseComponent.Initialize* implements: - - OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + - OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) - uid: OpenTK.Platform.Native.macOS.MacOSMouseComponent.GetPosition(System.Int32@,System.Int32@) commentId: M:OpenTK.Platform.Native.macOS.MacOSMouseComponent.GetPosition(System.Int32@,System.Int32@) id: GetPosition(System.Int32@,System.Int32@) @@ -225,15 +244,11 @@ items: fullName: OpenTK.Platform.Native.macOS.MacOSMouseComponent.GetPosition(out int, out int) type: Method source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSMouseComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetPosition - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSMouseComponent.cs - startLine: 49 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSMouseComponent.cs + startLine: 52 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: Get the mouse cursor position. example: [] @@ -249,7 +264,7 @@ items: content.vb: Public Sub GetPosition(x As Integer, y As Integer) overload: OpenTK.Platform.Native.macOS.MacOSMouseComponent.GetPosition* implements: - - OpenTK.Core.Platform.IMouseComponent.GetPosition(System.Int32@,System.Int32@) + - OpenTK.Platform.IMouseComponent.GetPosition(System.Int32@,System.Int32@) nameWithType.vb: MacOSMouseComponent.GetPosition(Integer, Integer) fullName.vb: OpenTK.Platform.Native.macOS.MacOSMouseComponent.GetPosition(Integer, Integer) name.vb: GetPosition(Integer, Integer) @@ -265,17 +280,16 @@ items: fullName: OpenTK.Platform.Native.macOS.MacOSMouseComponent.SetPosition(int, int) type: Method source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSMouseComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetPosition - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSMouseComponent.cs - startLine: 59 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSMouseComponent.cs + startLine: 62 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS - summary: Set the mouse cursor position. + summary: >- + Set the mouse cursor position. + + Check that is true before using this. example: [] syntax: content: public void SetPosition(int x, int y) @@ -288,32 +302,31 @@ items: description: Y coordinate of the mouse in desktop space. content.vb: Public Sub SetPosition(x As Integer, y As Integer) overload: OpenTK.Platform.Native.macOS.MacOSMouseComponent.SetPosition* + seealso: + - linkId: OpenTK.Platform.IMouseComponent.CanSetMousePosition + commentId: P:OpenTK.Platform.IMouseComponent.CanSetMousePosition implements: - - OpenTK.Core.Platform.IMouseComponent.SetPosition(System.Int32,System.Int32) + - OpenTK.Platform.IMouseComponent.SetPosition(System.Int32,System.Int32) nameWithType.vb: MacOSMouseComponent.SetPosition(Integer, Integer) fullName.vb: OpenTK.Platform.Native.macOS.MacOSMouseComponent.SetPosition(Integer, Integer) name.vb: SetPosition(Integer, Integer) -- uid: OpenTK.Platform.Native.macOS.MacOSMouseComponent.GetMouseState(OpenTK.Core.Platform.MouseState@) - commentId: M:OpenTK.Platform.Native.macOS.MacOSMouseComponent.GetMouseState(OpenTK.Core.Platform.MouseState@) - id: GetMouseState(OpenTK.Core.Platform.MouseState@) +- uid: OpenTK.Platform.Native.macOS.MacOSMouseComponent.GetMouseState(OpenTK.Platform.MouseState@) + commentId: M:OpenTK.Platform.Native.macOS.MacOSMouseComponent.GetMouseState(OpenTK.Platform.MouseState@) + id: GetMouseState(OpenTK.Platform.MouseState@) parent: OpenTK.Platform.Native.macOS.MacOSMouseComponent langs: - csharp - vb name: GetMouseState(out MouseState) nameWithType: MacOSMouseComponent.GetMouseState(out MouseState) - fullName: OpenTK.Platform.Native.macOS.MacOSMouseComponent.GetMouseState(out OpenTK.Core.Platform.MouseState) + fullName: OpenTK.Platform.Native.macOS.MacOSMouseComponent.GetMouseState(out OpenTK.Platform.MouseState) type: Method source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSMouseComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetMouseState - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSMouseComponent.cs - startLine: 80 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSMouseComponent.cs + startLine: 83 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: Fills the state struct with the current mouse state. example: [] @@ -321,15 +334,100 @@ items: content: public void GetMouseState(out MouseState state) parameters: - id: state - type: OpenTK.Core.Platform.MouseState + type: OpenTK.Platform.MouseState description: The current mouse state. content.vb: Public Sub GetMouseState(state As MouseState) overload: OpenTK.Platform.Native.macOS.MacOSMouseComponent.GetMouseState* implements: - - OpenTK.Core.Platform.IMouseComponent.GetMouseState(OpenTK.Core.Platform.MouseState@) + - OpenTK.Platform.IMouseComponent.GetMouseState(OpenTK.Platform.MouseState@) nameWithType.vb: MacOSMouseComponent.GetMouseState(MouseState) - fullName.vb: OpenTK.Platform.Native.macOS.MacOSMouseComponent.GetMouseState(OpenTK.Core.Platform.MouseState) + fullName.vb: OpenTK.Platform.Native.macOS.MacOSMouseComponent.GetMouseState(OpenTK.Platform.MouseState) name.vb: GetMouseState(MouseState) +- uid: OpenTK.Platform.Native.macOS.MacOSMouseComponent.IsRawMouseMotionEnabled(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.Native.macOS.MacOSMouseComponent.IsRawMouseMotionEnabled(OpenTK.Platform.WindowHandle) + id: IsRawMouseMotionEnabled(OpenTK.Platform.WindowHandle) + parent: OpenTK.Platform.Native.macOS.MacOSMouseComponent + langs: + - csharp + - vb + name: IsRawMouseMotionEnabled(WindowHandle) + nameWithType: MacOSMouseComponent.IsRawMouseMotionEnabled(WindowHandle) + fullName: OpenTK.Platform.Native.macOS.MacOSMouseComponent.IsRawMouseMotionEnabled(OpenTK.Platform.WindowHandle) + type: Method + source: + id: IsRawMouseMotionEnabled + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSMouseComponent.cs + startLine: 115 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform.Native.macOS + summary: >- + Returns whether raw mouse motion is enabled for the given window or not. + + Check that is true before using this. + example: [] + syntax: + content: public bool IsRawMouseMotionEnabled(WindowHandle window) + parameters: + - id: window + type: OpenTK.Platform.WindowHandle + description: The window to query. + return: + type: System.Boolean + description: If raw mouse motion is enabled. + content.vb: Public Function IsRawMouseMotionEnabled(window As WindowHandle) As Boolean + overload: OpenTK.Platform.Native.macOS.MacOSMouseComponent.IsRawMouseMotionEnabled* + seealso: + - linkId: OpenTK.Platform.IMouseComponent.SupportsRawMouseMotion + commentId: P:OpenTK.Platform.IMouseComponent.SupportsRawMouseMotion + implements: + - OpenTK.Platform.IMouseComponent.IsRawMouseMotionEnabled(OpenTK.Platform.WindowHandle) +- uid: OpenTK.Platform.Native.macOS.MacOSMouseComponent.EnableRawMouseMotion(OpenTK.Platform.WindowHandle,System.Boolean) + commentId: M:OpenTK.Platform.Native.macOS.MacOSMouseComponent.EnableRawMouseMotion(OpenTK.Platform.WindowHandle,System.Boolean) + id: EnableRawMouseMotion(OpenTK.Platform.WindowHandle,System.Boolean) + parent: OpenTK.Platform.Native.macOS.MacOSMouseComponent + langs: + - csharp + - vb + name: EnableRawMouseMotion(WindowHandle, bool) + nameWithType: MacOSMouseComponent.EnableRawMouseMotion(WindowHandle, bool) + fullName: OpenTK.Platform.Native.macOS.MacOSMouseComponent.EnableRawMouseMotion(OpenTK.Platform.WindowHandle, bool) + type: Method + source: + id: EnableRawMouseMotion + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSMouseComponent.cs + startLine: 121 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform.Native.macOS + summary: >- + Enables or disables raw mouse motion for a specific window. + + When raw mouse motion is enabled the window will receive events, + + in addition to the normal events. + + Check that is true before using this. + example: [] + syntax: + content: public void EnableRawMouseMotion(WindowHandle window, bool enable) + parameters: + - id: window + type: OpenTK.Platform.WindowHandle + description: The window to enable or disable raw mouse motion for. + - id: enable + type: System.Boolean + description: Whether to enable or disable raw mouse motion. + content.vb: Public Sub EnableRawMouseMotion(window As WindowHandle, enable As Boolean) + overload: OpenTK.Platform.Native.macOS.MacOSMouseComponent.EnableRawMouseMotion* + seealso: + - linkId: OpenTK.Platform.IMouseComponent.SupportsRawMouseMotion + commentId: P:OpenTK.Platform.IMouseComponent.SupportsRawMouseMotion + implements: + - OpenTK.Platform.IMouseComponent.EnableRawMouseMotion(OpenTK.Platform.WindowHandle,System.Boolean) + nameWithType.vb: MacOSMouseComponent.EnableRawMouseMotion(WindowHandle, Boolean) + fullName.vb: OpenTK.Platform.Native.macOS.MacOSMouseComponent.EnableRawMouseMotion(OpenTK.Platform.WindowHandle, Boolean) + name.vb: EnableRawMouseMotion(WindowHandle, Boolean) references: - uid: OpenTK.Platform.Native.macOS commentId: N:OpenTK.Platform.Native.macOS @@ -380,20 +478,20 @@ references: nameWithType.vb: Object fullName.vb: Object name.vb: Object -- uid: OpenTK.Core.Platform.IMouseComponent - commentId: T:OpenTK.Core.Platform.IMouseComponent - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.IMouseComponent.html +- uid: OpenTK.Platform.IMouseComponent + commentId: T:OpenTK.Platform.IMouseComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IMouseComponent.html name: IMouseComponent nameWithType: IMouseComponent - fullName: OpenTK.Core.Platform.IMouseComponent -- uid: OpenTK.Core.Platform.IPalComponent - commentId: T:OpenTK.Core.Platform.IPalComponent - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.IPalComponent.html + fullName: OpenTK.Platform.IMouseComponent +- uid: OpenTK.Platform.IPalComponent + commentId: T:OpenTK.Platform.IPalComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IPalComponent.html name: IPalComponent nameWithType: IPalComponent - fullName: OpenTK.Core.Platform.IPalComponent + fullName: OpenTK.Platform.IPalComponent - uid: System.Object.Equals(System.Object) commentId: M:System.Object.Equals(System.Object) parent: System.Object @@ -620,49 +718,41 @@ references: name: System nameWithType: System fullName: System -- uid: OpenTK.Core.Platform - commentId: N:OpenTK.Core.Platform +- uid: OpenTK.Platform + commentId: N:OpenTK.Platform href: OpenTK.html - name: OpenTK.Core.Platform - nameWithType: OpenTK.Core.Platform - fullName: OpenTK.Core.Platform + name: OpenTK.Platform + nameWithType: OpenTK.Platform + fullName: OpenTK.Platform spec.csharp: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html spec.vb: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html - uid: OpenTK.Platform.Native.macOS.MacOSMouseComponent.Name* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSMouseComponent.Name href: OpenTK.Platform.Native.macOS.MacOSMouseComponent.html#OpenTK_Platform_Native_macOS_MacOSMouseComponent_Name name: Name nameWithType: MacOSMouseComponent.Name fullName: OpenTK.Platform.Native.macOS.MacOSMouseComponent.Name -- uid: OpenTK.Core.Platform.IPalComponent.Name - commentId: P:OpenTK.Core.Platform.IPalComponent.Name - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Name +- uid: OpenTK.Platform.IPalComponent.Name + commentId: P:OpenTK.Platform.IPalComponent.Name + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Name name: Name nameWithType: IPalComponent.Name - fullName: OpenTK.Core.Platform.IPalComponent.Name + fullName: OpenTK.Platform.IPalComponent.Name - uid: System.String commentId: T:System.String parent: System @@ -680,33 +770,33 @@ references: name: Provides nameWithType: MacOSMouseComponent.Provides fullName: OpenTK.Platform.Native.macOS.MacOSMouseComponent.Provides -- uid: OpenTK.Core.Platform.IPalComponent.Provides - commentId: P:OpenTK.Core.Platform.IPalComponent.Provides - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Provides +- uid: OpenTK.Platform.IPalComponent.Provides + commentId: P:OpenTK.Platform.IPalComponent.Provides + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Provides name: Provides nameWithType: IPalComponent.Provides - fullName: OpenTK.Core.Platform.IPalComponent.Provides -- uid: OpenTK.Core.Platform.PalComponents - commentId: T:OpenTK.Core.Platform.PalComponents - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.PalComponents.html + fullName: OpenTK.Platform.IPalComponent.Provides +- uid: OpenTK.Platform.PalComponents + commentId: T:OpenTK.Platform.PalComponents + parent: OpenTK.Platform + href: OpenTK.Platform.PalComponents.html name: PalComponents nameWithType: PalComponents - fullName: OpenTK.Core.Platform.PalComponents + fullName: OpenTK.Platform.PalComponents - uid: OpenTK.Platform.Native.macOS.MacOSMouseComponent.Logger* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSMouseComponent.Logger href: OpenTK.Platform.Native.macOS.MacOSMouseComponent.html#OpenTK_Platform_Native_macOS_MacOSMouseComponent_Logger name: Logger nameWithType: MacOSMouseComponent.Logger fullName: OpenTK.Platform.Native.macOS.MacOSMouseComponent.Logger -- uid: OpenTK.Core.Platform.IPalComponent.Logger - commentId: P:OpenTK.Core.Platform.IPalComponent.Logger - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Logger +- uid: OpenTK.Platform.IPalComponent.Logger + commentId: P:OpenTK.Platform.IPalComponent.Logger + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Logger name: Logger nameWithType: IPalComponent.Logger - fullName: OpenTK.Core.Platform.IPalComponent.Logger + fullName: OpenTK.Platform.IPalComponent.Logger - uid: OpenTK.Core.Utility.ILogger commentId: T:OpenTK.Core.Utility.ILogger parent: OpenTK.Core.Utility @@ -744,19 +834,62 @@ references: - uid: OpenTK.Core.Utility name: Utility href: OpenTK.Core.Utility.html +- uid: OpenTK.Platform.IMouseComponent.SetPosition(System.Int32,System.Int32) + commentId: M:OpenTK.Platform.IMouseComponent.SetPosition(System.Int32,System.Int32) + parent: OpenTK.Platform.IMouseComponent + isExternal: true + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_SetPosition_System_Int32_System_Int32_ + name: SetPosition(int, int) + nameWithType: IMouseComponent.SetPosition(int, int) + fullName: OpenTK.Platform.IMouseComponent.SetPosition(int, int) + nameWithType.vb: IMouseComponent.SetPosition(Integer, Integer) + fullName.vb: OpenTK.Platform.IMouseComponent.SetPosition(Integer, Integer) + name.vb: SetPosition(Integer, Integer) + spec.csharp: + - uid: OpenTK.Platform.IMouseComponent.SetPosition(System.Int32,System.Int32) + name: SetPosition + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_SetPosition_System_Int32_System_Int32_ + - name: ( + - uid: System.Int32 + name: int + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ',' + - name: " " + - uid: System.Int32 + name: int + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ) + spec.vb: + - uid: OpenTK.Platform.IMouseComponent.SetPosition(System.Int32,System.Int32) + name: SetPosition + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_SetPosition_System_Int32_System_Int32_ + - name: ( + - uid: System.Int32 + name: Integer + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ',' + - name: " " + - uid: System.Int32 + name: Integer + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ) - uid: OpenTK.Platform.Native.macOS.MacOSMouseComponent.CanSetMousePosition* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSMouseComponent.CanSetMousePosition href: OpenTK.Platform.Native.macOS.MacOSMouseComponent.html#OpenTK_Platform_Native_macOS_MacOSMouseComponent_CanSetMousePosition name: CanSetMousePosition nameWithType: MacOSMouseComponent.CanSetMousePosition fullName: OpenTK.Platform.Native.macOS.MacOSMouseComponent.CanSetMousePosition -- uid: OpenTK.Core.Platform.IMouseComponent.CanSetMousePosition - commentId: P:OpenTK.Core.Platform.IMouseComponent.CanSetMousePosition - parent: OpenTK.Core.Platform.IMouseComponent - href: OpenTK.Core.Platform.IMouseComponent.html#OpenTK_Core_Platform_IMouseComponent_CanSetMousePosition +- uid: OpenTK.Platform.IMouseComponent.CanSetMousePosition + commentId: P:OpenTK.Platform.IMouseComponent.CanSetMousePosition + parent: OpenTK.Platform.IMouseComponent + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_CanSetMousePosition name: CanSetMousePosition nameWithType: IMouseComponent.CanSetMousePosition - fullName: OpenTK.Core.Platform.IMouseComponent.CanSetMousePosition + fullName: OpenTK.Platform.IMouseComponent.CanSetMousePosition - uid: System.Boolean commentId: T:System.Boolean parent: System @@ -768,65 +901,144 @@ references: nameWithType.vb: Boolean fullName.vb: Boolean name.vb: Boolean +- uid: OpenTK.Platform.IMouseComponent.IsRawMouseMotionEnabled(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IMouseComponent.IsRawMouseMotionEnabled(OpenTK.Platform.WindowHandle) + parent: OpenTK.Platform.IMouseComponent + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_IsRawMouseMotionEnabled_OpenTK_Platform_WindowHandle_ + name: IsRawMouseMotionEnabled(WindowHandle) + nameWithType: IMouseComponent.IsRawMouseMotionEnabled(WindowHandle) + fullName: OpenTK.Platform.IMouseComponent.IsRawMouseMotionEnabled(OpenTK.Platform.WindowHandle) + spec.csharp: + - uid: OpenTK.Platform.IMouseComponent.IsRawMouseMotionEnabled(OpenTK.Platform.WindowHandle) + name: IsRawMouseMotionEnabled + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_IsRawMouseMotionEnabled_OpenTK_Platform_WindowHandle_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IMouseComponent.IsRawMouseMotionEnabled(OpenTK.Platform.WindowHandle) + name: IsRawMouseMotionEnabled + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_IsRawMouseMotionEnabled_OpenTK_Platform_WindowHandle_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ) +- uid: OpenTK.Platform.IMouseComponent.EnableRawMouseMotion(OpenTK.Platform.WindowHandle,System.Boolean) + commentId: M:OpenTK.Platform.IMouseComponent.EnableRawMouseMotion(OpenTK.Platform.WindowHandle,System.Boolean) + parent: OpenTK.Platform.IMouseComponent + isExternal: true + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_EnableRawMouseMotion_OpenTK_Platform_WindowHandle_System_Boolean_ + name: EnableRawMouseMotion(WindowHandle, bool) + nameWithType: IMouseComponent.EnableRawMouseMotion(WindowHandle, bool) + fullName: OpenTK.Platform.IMouseComponent.EnableRawMouseMotion(OpenTK.Platform.WindowHandle, bool) + nameWithType.vb: IMouseComponent.EnableRawMouseMotion(WindowHandle, Boolean) + fullName.vb: OpenTK.Platform.IMouseComponent.EnableRawMouseMotion(OpenTK.Platform.WindowHandle, Boolean) + name.vb: EnableRawMouseMotion(WindowHandle, Boolean) + spec.csharp: + - uid: OpenTK.Platform.IMouseComponent.EnableRawMouseMotion(OpenTK.Platform.WindowHandle,System.Boolean) + name: EnableRawMouseMotion + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_EnableRawMouseMotion_OpenTK_Platform_WindowHandle_System_Boolean_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: System.Boolean + name: bool + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: ) + spec.vb: + - uid: OpenTK.Platform.IMouseComponent.EnableRawMouseMotion(OpenTK.Platform.WindowHandle,System.Boolean) + name: EnableRawMouseMotion + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_EnableRawMouseMotion_OpenTK_Platform_WindowHandle_System_Boolean_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: System.Boolean + name: Boolean + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: ) +- uid: OpenTK.Platform.Native.macOS.MacOSMouseComponent.SupportsRawMouseMotion* + commentId: Overload:OpenTK.Platform.Native.macOS.MacOSMouseComponent.SupportsRawMouseMotion + href: OpenTK.Platform.Native.macOS.MacOSMouseComponent.html#OpenTK_Platform_Native_macOS_MacOSMouseComponent_SupportsRawMouseMotion + name: SupportsRawMouseMotion + nameWithType: MacOSMouseComponent.SupportsRawMouseMotion + fullName: OpenTK.Platform.Native.macOS.MacOSMouseComponent.SupportsRawMouseMotion +- uid: OpenTK.Platform.IMouseComponent.SupportsRawMouseMotion + commentId: P:OpenTK.Platform.IMouseComponent.SupportsRawMouseMotion + parent: OpenTK.Platform.IMouseComponent + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_SupportsRawMouseMotion + name: SupportsRawMouseMotion + nameWithType: IMouseComponent.SupportsRawMouseMotion + fullName: OpenTK.Platform.IMouseComponent.SupportsRawMouseMotion - uid: OpenTK.Platform.Native.macOS.MacOSMouseComponent.Initialize* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSMouseComponent.Initialize - href: OpenTK.Platform.Native.macOS.MacOSMouseComponent.html#OpenTK_Platform_Native_macOS_MacOSMouseComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + href: OpenTK.Platform.Native.macOS.MacOSMouseComponent.html#OpenTK_Platform_Native_macOS_MacOSMouseComponent_Initialize_OpenTK_Platform_ToolkitOptions_ name: Initialize nameWithType: MacOSMouseComponent.Initialize fullName: OpenTK.Platform.Native.macOS.MacOSMouseComponent.Initialize -- uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - commentId: M:OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ +- uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ name: Initialize(ToolkitOptions) nameWithType: IPalComponent.Initialize(ToolkitOptions) - fullName: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + fullName: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) spec.csharp: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + - uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.ToolkitOptions + - uid: OpenTK.Platform.ToolkitOptions name: ToolkitOptions - href: OpenTK.Core.Platform.ToolkitOptions.html + href: OpenTK.Platform.ToolkitOptions.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + - uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.ToolkitOptions + - uid: OpenTK.Platform.ToolkitOptions name: ToolkitOptions - href: OpenTK.Core.Platform.ToolkitOptions.html + href: OpenTK.Platform.ToolkitOptions.html - name: ) -- uid: OpenTK.Core.Platform.ToolkitOptions - commentId: T:OpenTK.Core.Platform.ToolkitOptions - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.ToolkitOptions.html +- uid: OpenTK.Platform.ToolkitOptions + commentId: T:OpenTK.Platform.ToolkitOptions + parent: OpenTK.Platform + href: OpenTK.Platform.ToolkitOptions.html name: ToolkitOptions nameWithType: ToolkitOptions - fullName: OpenTK.Core.Platform.ToolkitOptions + fullName: OpenTK.Platform.ToolkitOptions - uid: OpenTK.Platform.Native.macOS.MacOSMouseComponent.GetPosition* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSMouseComponent.GetPosition href: OpenTK.Platform.Native.macOS.MacOSMouseComponent.html#OpenTK_Platform_Native_macOS_MacOSMouseComponent_GetPosition_System_Int32__System_Int32__ name: GetPosition nameWithType: MacOSMouseComponent.GetPosition fullName: OpenTK.Platform.Native.macOS.MacOSMouseComponent.GetPosition -- uid: OpenTK.Core.Platform.IMouseComponent.GetPosition(System.Int32@,System.Int32@) - commentId: M:OpenTK.Core.Platform.IMouseComponent.GetPosition(System.Int32@,System.Int32@) - parent: OpenTK.Core.Platform.IMouseComponent +- uid: OpenTK.Platform.IMouseComponent.GetPosition(System.Int32@,System.Int32@) + commentId: M:OpenTK.Platform.IMouseComponent.GetPosition(System.Int32@,System.Int32@) + parent: OpenTK.Platform.IMouseComponent isExternal: true - href: OpenTK.Core.Platform.IMouseComponent.html#OpenTK_Core_Platform_IMouseComponent_GetPosition_System_Int32__System_Int32__ + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_GetPosition_System_Int32__System_Int32__ name: GetPosition(out int, out int) nameWithType: IMouseComponent.GetPosition(out int, out int) - fullName: OpenTK.Core.Platform.IMouseComponent.GetPosition(out int, out int) + fullName: OpenTK.Platform.IMouseComponent.GetPosition(out int, out int) nameWithType.vb: IMouseComponent.GetPosition(Integer, Integer) - fullName.vb: OpenTK.Core.Platform.IMouseComponent.GetPosition(Integer, Integer) + fullName.vb: OpenTK.Platform.IMouseComponent.GetPosition(Integer, Integer) name.vb: GetPosition(Integer, Integer) spec.csharp: - - uid: OpenTK.Core.Platform.IMouseComponent.GetPosition(System.Int32@,System.Int32@) + - uid: OpenTK.Platform.IMouseComponent.GetPosition(System.Int32@,System.Int32@) name: GetPosition - href: OpenTK.Core.Platform.IMouseComponent.html#OpenTK_Core_Platform_IMouseComponent_GetPosition_System_Int32__System_Int32__ + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_GetPosition_System_Int32__System_Int32__ - name: ( - name: out - name: " " @@ -844,9 +1056,9 @@ references: href: https://learn.microsoft.com/dotnet/api/system.int32 - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IMouseComponent.GetPosition(System.Int32@,System.Int32@) + - uid: OpenTK.Platform.IMouseComponent.GetPosition(System.Int32@,System.Int32@) name: GetPosition - href: OpenTK.Core.Platform.IMouseComponent.html#OpenTK_Core_Platform_IMouseComponent_GetPosition_System_Int32__System_Int32__ + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_GetPosition_System_Int32__System_Int32__ - name: ( - uid: System.Int32 name: Integer @@ -876,89 +1088,77 @@ references: name: SetPosition nameWithType: MacOSMouseComponent.SetPosition fullName: OpenTK.Platform.Native.macOS.MacOSMouseComponent.SetPosition -- uid: OpenTK.Core.Platform.IMouseComponent.SetPosition(System.Int32,System.Int32) - commentId: M:OpenTK.Core.Platform.IMouseComponent.SetPosition(System.Int32,System.Int32) - parent: OpenTK.Core.Platform.IMouseComponent - isExternal: true - href: OpenTK.Core.Platform.IMouseComponent.html#OpenTK_Core_Platform_IMouseComponent_SetPosition_System_Int32_System_Int32_ - name: SetPosition(int, int) - nameWithType: IMouseComponent.SetPosition(int, int) - fullName: OpenTK.Core.Platform.IMouseComponent.SetPosition(int, int) - nameWithType.vb: IMouseComponent.SetPosition(Integer, Integer) - fullName.vb: OpenTK.Core.Platform.IMouseComponent.SetPosition(Integer, Integer) - name.vb: SetPosition(Integer, Integer) - spec.csharp: - - uid: OpenTK.Core.Platform.IMouseComponent.SetPosition(System.Int32,System.Int32) - name: SetPosition - href: OpenTK.Core.Platform.IMouseComponent.html#OpenTK_Core_Platform_IMouseComponent_SetPosition_System_Int32_System_Int32_ - - name: ( - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) - spec.vb: - - uid: OpenTK.Core.Platform.IMouseComponent.SetPosition(System.Int32,System.Int32) - name: SetPosition - href: OpenTK.Core.Platform.IMouseComponent.html#OpenTK_Core_Platform_IMouseComponent_SetPosition_System_Int32_System_Int32_ - - name: ( - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) - uid: OpenTK.Platform.Native.macOS.MacOSMouseComponent.GetMouseState* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSMouseComponent.GetMouseState - href: OpenTK.Platform.Native.macOS.MacOSMouseComponent.html#OpenTK_Platform_Native_macOS_MacOSMouseComponent_GetMouseState_OpenTK_Core_Platform_MouseState__ + href: OpenTK.Platform.Native.macOS.MacOSMouseComponent.html#OpenTK_Platform_Native_macOS_MacOSMouseComponent_GetMouseState_OpenTK_Platform_MouseState__ name: GetMouseState nameWithType: MacOSMouseComponent.GetMouseState fullName: OpenTK.Platform.Native.macOS.MacOSMouseComponent.GetMouseState -- uid: OpenTK.Core.Platform.IMouseComponent.GetMouseState(OpenTK.Core.Platform.MouseState@) - commentId: M:OpenTK.Core.Platform.IMouseComponent.GetMouseState(OpenTK.Core.Platform.MouseState@) - parent: OpenTK.Core.Platform.IMouseComponent - href: OpenTK.Core.Platform.IMouseComponent.html#OpenTK_Core_Platform_IMouseComponent_GetMouseState_OpenTK_Core_Platform_MouseState__ +- uid: OpenTK.Platform.IMouseComponent.GetMouseState(OpenTK.Platform.MouseState@) + commentId: M:OpenTK.Platform.IMouseComponent.GetMouseState(OpenTK.Platform.MouseState@) + parent: OpenTK.Platform.IMouseComponent + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_GetMouseState_OpenTK_Platform_MouseState__ name: GetMouseState(out MouseState) nameWithType: IMouseComponent.GetMouseState(out MouseState) - fullName: OpenTK.Core.Platform.IMouseComponent.GetMouseState(out OpenTK.Core.Platform.MouseState) + fullName: OpenTK.Platform.IMouseComponent.GetMouseState(out OpenTK.Platform.MouseState) nameWithType.vb: IMouseComponent.GetMouseState(MouseState) - fullName.vb: OpenTK.Core.Platform.IMouseComponent.GetMouseState(OpenTK.Core.Platform.MouseState) + fullName.vb: OpenTK.Platform.IMouseComponent.GetMouseState(OpenTK.Platform.MouseState) name.vb: GetMouseState(MouseState) spec.csharp: - - uid: OpenTK.Core.Platform.IMouseComponent.GetMouseState(OpenTK.Core.Platform.MouseState@) + - uid: OpenTK.Platform.IMouseComponent.GetMouseState(OpenTK.Platform.MouseState@) name: GetMouseState - href: OpenTK.Core.Platform.IMouseComponent.html#OpenTK_Core_Platform_IMouseComponent_GetMouseState_OpenTK_Core_Platform_MouseState__ + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_GetMouseState_OpenTK_Platform_MouseState__ - name: ( - name: out - name: " " - - uid: OpenTK.Core.Platform.MouseState + - uid: OpenTK.Platform.MouseState name: MouseState - href: OpenTK.Core.Platform.MouseState.html + href: OpenTK.Platform.MouseState.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IMouseComponent.GetMouseState(OpenTK.Core.Platform.MouseState@) + - uid: OpenTK.Platform.IMouseComponent.GetMouseState(OpenTK.Platform.MouseState@) name: GetMouseState - href: OpenTK.Core.Platform.IMouseComponent.html#OpenTK_Core_Platform_IMouseComponent_GetMouseState_OpenTK_Core_Platform_MouseState__ + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_GetMouseState_OpenTK_Platform_MouseState__ - name: ( - - uid: OpenTK.Core.Platform.MouseState + - uid: OpenTK.Platform.MouseState name: MouseState - href: OpenTK.Core.Platform.MouseState.html + href: OpenTK.Platform.MouseState.html - name: ) -- uid: OpenTK.Core.Platform.MouseState - commentId: T:OpenTK.Core.Platform.MouseState - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.MouseState.html +- uid: OpenTK.Platform.MouseState + commentId: T:OpenTK.Platform.MouseState + parent: OpenTK.Platform + href: OpenTK.Platform.MouseState.html name: MouseState nameWithType: MouseState - fullName: OpenTK.Core.Platform.MouseState + fullName: OpenTK.Platform.MouseState +- uid: OpenTK.Platform.Native.macOS.MacOSMouseComponent.IsRawMouseMotionEnabled* + commentId: Overload:OpenTK.Platform.Native.macOS.MacOSMouseComponent.IsRawMouseMotionEnabled + href: OpenTK.Platform.Native.macOS.MacOSMouseComponent.html#OpenTK_Platform_Native_macOS_MacOSMouseComponent_IsRawMouseMotionEnabled_OpenTK_Platform_WindowHandle_ + name: IsRawMouseMotionEnabled + nameWithType: MacOSMouseComponent.IsRawMouseMotionEnabled + fullName: OpenTK.Platform.Native.macOS.MacOSMouseComponent.IsRawMouseMotionEnabled +- uid: OpenTK.Platform.WindowHandle + commentId: T:OpenTK.Platform.WindowHandle + parent: OpenTK.Platform + href: OpenTK.Platform.WindowHandle.html + name: WindowHandle + nameWithType: WindowHandle + fullName: OpenTK.Platform.WindowHandle +- uid: OpenTK.Platform.RawMouseMoveEventArgs + commentId: T:OpenTK.Platform.RawMouseMoveEventArgs + href: OpenTK.Platform.RawMouseMoveEventArgs.html + name: RawMouseMoveEventArgs + nameWithType: RawMouseMoveEventArgs + fullName: OpenTK.Platform.RawMouseMoveEventArgs +- uid: OpenTK.Platform.MouseMoveEventArgs + commentId: T:OpenTK.Platform.MouseMoveEventArgs + href: OpenTK.Platform.MouseMoveEventArgs.html + name: MouseMoveEventArgs + nameWithType: MouseMoveEventArgs + fullName: OpenTK.Platform.MouseMoveEventArgs +- uid: OpenTK.Platform.Native.macOS.MacOSMouseComponent.EnableRawMouseMotion* + commentId: Overload:OpenTK.Platform.Native.macOS.MacOSMouseComponent.EnableRawMouseMotion + href: OpenTK.Platform.Native.macOS.MacOSMouseComponent.html#OpenTK_Platform_Native_macOS_MacOSMouseComponent_EnableRawMouseMotion_OpenTK_Platform_WindowHandle_System_Boolean_ + name: EnableRawMouseMotion + nameWithType: MacOSMouseComponent.EnableRawMouseMotion + fullName: OpenTK.Platform.Native.macOS.MacOSMouseComponent.EnableRawMouseMotion diff --git a/api/OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.yml b/api/OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.yml index 945b0fcf..c48cb689 100644 --- a/api/OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.yml +++ b/api/OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.yml @@ -9,21 +9,21 @@ items: - OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.CanCreateFromWindow - OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.CanShareContexts - OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.CreateFromSurface - - OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.CreateFromWindow(OpenTK.Core.Platform.WindowHandle) - - OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.DestroyContext(OpenTK.Core.Platform.OpenGLContextHandle) - - OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.GetBindingsContext(OpenTK.Core.Platform.OpenGLContextHandle) + - OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.CreateFromWindow(OpenTK.Platform.WindowHandle) + - OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.DestroyContext(OpenTK.Platform.OpenGLContextHandle) + - OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.GetBindingsContext(OpenTK.Platform.OpenGLContextHandle) - OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.GetCurrentContext - - OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.GetNSOpenGLContext(OpenTK.Core.Platform.OpenGLContextHandle) - - OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.GetProcedureAddress(OpenTK.Core.Platform.OpenGLContextHandle,System.String) - - OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.GetSharedContext(OpenTK.Core.Platform.OpenGLContextHandle) + - OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.GetNSOpenGLContext(OpenTK.Platform.OpenGLContextHandle) + - OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.GetProcedureAddress(OpenTK.Platform.OpenGLContextHandle,System.String) + - OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.GetSharedContext(OpenTK.Platform.OpenGLContextHandle) - OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.GetSwapInterval - - OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + - OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.Initialize(OpenTK.Platform.ToolkitOptions) - OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.Logger - OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.Name - OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.Provides - - OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.SetCurrentContext(OpenTK.Core.Platform.OpenGLContextHandle) + - OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.SetCurrentContext(OpenTK.Platform.OpenGLContextHandle) - OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.SetSwapInterval(System.Int32) - - OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.SwapBuffers(OpenTK.Core.Platform.OpenGLContextHandle) + - OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.SwapBuffers(OpenTK.Platform.OpenGLContextHandle) langs: - csharp - vb @@ -32,15 +32,11 @@ items: fullName: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent type: Class source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSOpenGLComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MacOSOpenGLComponent - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSOpenGLComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSOpenGLComponent.cs startLine: 11 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS syntax: content: 'public class MacOSOpenGLComponent : IOpenGLComponent, IPalComponent' @@ -48,8 +44,8 @@ items: inheritance: - System.Object implements: - - OpenTK.Core.Platform.IOpenGLComponent - - OpenTK.Core.Platform.IPalComponent + - OpenTK.Platform.IOpenGLComponent + - OpenTK.Platform.IPalComponent inheritedMembers: - System.Object.Equals(System.Object) - System.Object.Equals(System.Object,System.Object) @@ -70,15 +66,11 @@ items: fullName: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.Name type: Property source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSOpenGLComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Name - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSOpenGLComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSOpenGLComponent.cs startLine: 34 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: Name of the abstraction layer component. example: [] @@ -90,7 +82,7 @@ items: content.vb: Public ReadOnly Property Name As String overload: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.Name* implements: - - OpenTK.Core.Platform.IPalComponent.Name + - OpenTK.Platform.IPalComponent.Name - uid: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.Provides commentId: P:OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.Provides id: Provides @@ -103,15 +95,11 @@ items: fullName: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.Provides type: Property source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSOpenGLComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Provides - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSOpenGLComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSOpenGLComponent.cs startLine: 37 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: Specifies which PAL components this object provides. example: [] @@ -119,11 +107,11 @@ items: content: public PalComponents Provides { get; } parameters: [] return: - type: OpenTK.Core.Platform.PalComponents + type: OpenTK.Platform.PalComponents content.vb: Public ReadOnly Property Provides As PalComponents overload: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.Provides* implements: - - OpenTK.Core.Platform.IPalComponent.Provides + - OpenTK.Platform.IPalComponent.Provides - uid: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.Logger commentId: P:OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.Logger id: Logger @@ -136,15 +124,11 @@ items: fullName: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.Logger type: Property source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSOpenGLComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Logger - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSOpenGLComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSOpenGLComponent.cs startLine: 40 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: Provides a logger for this component. example: [] @@ -156,28 +140,24 @@ items: content.vb: Public Property Logger As ILogger overload: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.Logger* implements: - - OpenTK.Core.Platform.IPalComponent.Logger -- uid: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - commentId: M:OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - id: Initialize(OpenTK.Core.Platform.ToolkitOptions) + - OpenTK.Platform.IPalComponent.Logger +- uid: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.Initialize(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.Initialize(OpenTK.Platform.ToolkitOptions) + id: Initialize(OpenTK.Platform.ToolkitOptions) parent: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent langs: - csharp - vb name: Initialize(ToolkitOptions) nameWithType: MacOSOpenGLComponent.Initialize(ToolkitOptions) - fullName: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + fullName: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.Initialize(OpenTK.Platform.ToolkitOptions) type: Method source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSOpenGLComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Initialize - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSOpenGLComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSOpenGLComponent.cs startLine: 43 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: Initialize the component. example: [] @@ -185,12 +165,12 @@ items: content: public void Initialize(ToolkitOptions options) parameters: - id: options - type: OpenTK.Core.Platform.ToolkitOptions + type: OpenTK.Platform.ToolkitOptions description: The options to initialize the component with. content.vb: Public Sub Initialize(options As ToolkitOptions) overload: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.Initialize* implements: - - OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + - OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) - uid: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.CanShareContexts commentId: P:OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.CanShareContexts id: CanShareContexts @@ -203,15 +183,11 @@ items: fullName: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.CanShareContexts type: Property source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSOpenGLComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CanShareContexts - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSOpenGLComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSOpenGLComponent.cs startLine: 49 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: True if the component driver has the capability to share display lists between OpenGL contexts. example: [] @@ -223,7 +199,7 @@ items: content.vb: Public ReadOnly Property CanShareContexts As Boolean overload: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.CanShareContexts* implements: - - OpenTK.Core.Platform.IOpenGLComponent.CanShareContexts + - OpenTK.Platform.IOpenGLComponent.CanShareContexts - uid: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.CanCreateFromWindow commentId: P:OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.CanCreateFromWindow id: CanCreateFromWindow @@ -236,17 +212,13 @@ items: fullName: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.CanCreateFromWindow type: Property source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSOpenGLComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CanCreateFromWindow - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSOpenGLComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSOpenGLComponent.cs startLine: 52 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS - summary: True if the component driver can create a context from windows. + summary: True if the component driver can create a context from windows using . example: [] syntax: content: public bool CanCreateFromWindow { get; } @@ -255,8 +227,11 @@ items: type: System.Boolean content.vb: Public ReadOnly Property CanCreateFromWindow As Boolean overload: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.CanCreateFromWindow* + seealso: + - linkId: OpenTK.Platform.IOpenGLComponent.CreateFromWindow(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IOpenGLComponent.CreateFromWindow(OpenTK.Platform.WindowHandle) implements: - - OpenTK.Core.Platform.IOpenGLComponent.CanCreateFromWindow + - OpenTK.Platform.IOpenGLComponent.CanCreateFromWindow - uid: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.CanCreateFromSurface commentId: P:OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.CanCreateFromSurface id: CanCreateFromSurface @@ -269,17 +244,13 @@ items: fullName: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.CanCreateFromSurface type: Property source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSOpenGLComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CanCreateFromSurface - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSOpenGLComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSOpenGLComponent.cs startLine: 55 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS - summary: True if the component driver can create a context from surfaces. + summary: True if the component driver can create a context from surfaces using . example: [] syntax: content: public bool CanCreateFromSurface { get; } @@ -289,7 +260,7 @@ items: content.vb: Public ReadOnly Property CanCreateFromSurface As Boolean overload: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.CanCreateFromSurface* implements: - - OpenTK.Core.Platform.IOpenGLComponent.CanCreateFromSurface + - OpenTK.Platform.IOpenGLComponent.CanCreateFromSurface - uid: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.CreateFromSurface commentId: M:OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.CreateFromSurface id: CreateFromSurface @@ -302,48 +273,40 @@ items: fullName: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.CreateFromSurface() type: Method source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSOpenGLComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateFromSurface - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSOpenGLComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSOpenGLComponent.cs startLine: 58 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: Create and OpenGL context for a surface. example: [] syntax: content: public OpenGLContextHandle CreateFromSurface() return: - type: OpenTK.Core.Platform.OpenGLContextHandle + type: OpenTK.Platform.OpenGLContextHandle description: An OpenGL context handle. content.vb: Public Function CreateFromSurface() As OpenGLContextHandle overload: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.CreateFromSurface* implements: - - OpenTK.Core.Platform.IOpenGLComponent.CreateFromSurface -- uid: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.CreateFromWindow(OpenTK.Core.Platform.WindowHandle) - commentId: M:OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.CreateFromWindow(OpenTK.Core.Platform.WindowHandle) - id: CreateFromWindow(OpenTK.Core.Platform.WindowHandle) + - OpenTK.Platform.IOpenGLComponent.CreateFromSurface +- uid: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.CreateFromWindow(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.CreateFromWindow(OpenTK.Platform.WindowHandle) + id: CreateFromWindow(OpenTK.Platform.WindowHandle) parent: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent langs: - csharp - vb name: CreateFromWindow(WindowHandle) nameWithType: MacOSOpenGLComponent.CreateFromWindow(WindowHandle) - fullName: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.CreateFromWindow(OpenTK.Core.Platform.WindowHandle) + fullName: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.CreateFromWindow(OpenTK.Platform.WindowHandle) type: Method source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSOpenGLComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateFromWindow - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSOpenGLComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSOpenGLComponent.cs startLine: 227 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: Create an OpenGL context for a window. example: [] @@ -351,36 +314,32 @@ items: content: public OpenGLContextHandle CreateFromWindow(WindowHandle handle) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: The window for which the OpenGL context should be created. return: - type: OpenTK.Core.Platform.OpenGLContextHandle + type: OpenTK.Platform.OpenGLContextHandle description: An OpenGL context handle. content.vb: Public Function CreateFromWindow(handle As WindowHandle) As OpenGLContextHandle overload: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.CreateFromWindow* implements: - - OpenTK.Core.Platform.IOpenGLComponent.CreateFromWindow(OpenTK.Core.Platform.WindowHandle) -- uid: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.DestroyContext(OpenTK.Core.Platform.OpenGLContextHandle) - commentId: M:OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.DestroyContext(OpenTK.Core.Platform.OpenGLContextHandle) - id: DestroyContext(OpenTK.Core.Platform.OpenGLContextHandle) + - OpenTK.Platform.IOpenGLComponent.CreateFromWindow(OpenTK.Platform.WindowHandle) +- uid: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.DestroyContext(OpenTK.Platform.OpenGLContextHandle) + commentId: M:OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.DestroyContext(OpenTK.Platform.OpenGLContextHandle) + id: DestroyContext(OpenTK.Platform.OpenGLContextHandle) parent: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent langs: - csharp - vb name: DestroyContext(OpenGLContextHandle) nameWithType: MacOSOpenGLComponent.DestroyContext(OpenGLContextHandle) - fullName: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.DestroyContext(OpenTK.Core.Platform.OpenGLContextHandle) + fullName: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.DestroyContext(OpenTK.Platform.OpenGLContextHandle) type: Method source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSOpenGLComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DestroyContext - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSOpenGLComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSOpenGLComponent.cs startLine: 407 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: Destroy an OpenGL context. example: [] @@ -388,7 +347,7 @@ items: content: public void DestroyContext(OpenGLContextHandle handle) parameters: - id: handle - type: OpenTK.Core.Platform.OpenGLContextHandle + type: OpenTK.Platform.OpenGLContextHandle description: Handle to the OpenGL context to destroy. content.vb: Public Sub DestroyContext(handle As OpenGLContextHandle) overload: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.DestroyContext* @@ -397,36 +356,32 @@ items: commentId: T:System.ArgumentNullException description: OpenGL context handle is null. implements: - - OpenTK.Core.Platform.IOpenGLComponent.DestroyContext(OpenTK.Core.Platform.OpenGLContextHandle) -- uid: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.GetBindingsContext(OpenTK.Core.Platform.OpenGLContextHandle) - commentId: M:OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.GetBindingsContext(OpenTK.Core.Platform.OpenGLContextHandle) - id: GetBindingsContext(OpenTK.Core.Platform.OpenGLContextHandle) + - OpenTK.Platform.IOpenGLComponent.DestroyContext(OpenTK.Platform.OpenGLContextHandle) +- uid: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.GetBindingsContext(OpenTK.Platform.OpenGLContextHandle) + commentId: M:OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.GetBindingsContext(OpenTK.Platform.OpenGLContextHandle) + id: GetBindingsContext(OpenTK.Platform.OpenGLContextHandle) parent: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent langs: - csharp - vb name: GetBindingsContext(OpenGLContextHandle) nameWithType: MacOSOpenGLComponent.GetBindingsContext(OpenGLContextHandle) - fullName: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.GetBindingsContext(OpenTK.Core.Platform.OpenGLContextHandle) + fullName: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.GetBindingsContext(OpenTK.Platform.OpenGLContextHandle) type: Method source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSOpenGLComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetBindingsContext - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSOpenGLComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSOpenGLComponent.cs startLine: 420 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS - summary: Gets a from an . + summary: Gets a from an . example: [] syntax: content: public IBindingsContext GetBindingsContext(OpenGLContextHandle handle) parameters: - id: handle - type: OpenTK.Core.Platform.OpenGLContextHandle + type: OpenTK.Platform.OpenGLContextHandle description: The handle to get a bindings context for. return: type: OpenTK.IBindingsContext @@ -434,28 +389,24 @@ items: content.vb: Public Function GetBindingsContext(handle As OpenGLContextHandle) As IBindingsContext overload: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.GetBindingsContext* implements: - - OpenTK.Core.Platform.IOpenGLComponent.GetBindingsContext(OpenTK.Core.Platform.OpenGLContextHandle) -- uid: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.GetProcedureAddress(OpenTK.Core.Platform.OpenGLContextHandle,System.String) - commentId: M:OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.GetProcedureAddress(OpenTK.Core.Platform.OpenGLContextHandle,System.String) - id: GetProcedureAddress(OpenTK.Core.Platform.OpenGLContextHandle,System.String) + - OpenTK.Platform.IOpenGLComponent.GetBindingsContext(OpenTK.Platform.OpenGLContextHandle) +- uid: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.GetProcedureAddress(OpenTK.Platform.OpenGLContextHandle,System.String) + commentId: M:OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.GetProcedureAddress(OpenTK.Platform.OpenGLContextHandle,System.String) + id: GetProcedureAddress(OpenTK.Platform.OpenGLContextHandle,System.String) parent: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent langs: - csharp - vb name: GetProcedureAddress(OpenGLContextHandle, string) nameWithType: MacOSOpenGLComponent.GetProcedureAddress(OpenGLContextHandle, string) - fullName: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.GetProcedureAddress(OpenTK.Core.Platform.OpenGLContextHandle, string) + fullName: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.GetProcedureAddress(OpenTK.Platform.OpenGLContextHandle, string) type: Method source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSOpenGLComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetProcedureAddress - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSOpenGLComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSOpenGLComponent.cs startLine: 426 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: Get the procedure address for an OpenGL command. example: [] @@ -463,7 +414,7 @@ items: content: public nint GetProcedureAddress(OpenGLContextHandle handle, string procedureName) parameters: - id: handle - type: OpenTK.Core.Platform.OpenGLContextHandle + type: OpenTK.Platform.OpenGLContextHandle description: Handle to an OpenGL context. - id: procedureName type: System.String @@ -478,9 +429,9 @@ items: commentId: T:System.ArgumentNullException description: OpenGL context handle or procedure name is null. implements: - - OpenTK.Core.Platform.IOpenGLComponent.GetProcedureAddress(OpenTK.Core.Platform.OpenGLContextHandle,System.String) + - OpenTK.Platform.IOpenGLComponent.GetProcedureAddress(OpenTK.Platform.OpenGLContextHandle,System.String) nameWithType.vb: MacOSOpenGLComponent.GetProcedureAddress(OpenGLContextHandle, String) - fullName.vb: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.GetProcedureAddress(OpenTK.Core.Platform.OpenGLContextHandle, String) + fullName.vb: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.GetProcedureAddress(OpenTK.Platform.OpenGLContextHandle, String) name.vb: GetProcedureAddress(OpenGLContextHandle, String) - uid: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.GetCurrentContext commentId: M:OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.GetCurrentContext @@ -494,48 +445,40 @@ items: fullName: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.GetCurrentContext() type: Method source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSOpenGLComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetCurrentContext - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSOpenGLComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSOpenGLComponent.cs startLine: 433 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: Get the current OpenGL context for this thread. example: [] syntax: content: public OpenGLContextHandle? GetCurrentContext() return: - type: OpenTK.Core.Platform.OpenGLContextHandle + type: OpenTK.Platform.OpenGLContextHandle description: Handle to the current OpenGL context, null if none are current. content.vb: Public Function GetCurrentContext() As OpenGLContextHandle overload: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.GetCurrentContext* implements: - - OpenTK.Core.Platform.IOpenGLComponent.GetCurrentContext -- uid: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.SetCurrentContext(OpenTK.Core.Platform.OpenGLContextHandle) - commentId: M:OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.SetCurrentContext(OpenTK.Core.Platform.OpenGLContextHandle) - id: SetCurrentContext(OpenTK.Core.Platform.OpenGLContextHandle) + - OpenTK.Platform.IOpenGLComponent.GetCurrentContext +- uid: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.SetCurrentContext(OpenTK.Platform.OpenGLContextHandle) + commentId: M:OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.SetCurrentContext(OpenTK.Platform.OpenGLContextHandle) + id: SetCurrentContext(OpenTK.Platform.OpenGLContextHandle) parent: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent langs: - csharp - vb name: SetCurrentContext(OpenGLContextHandle?) nameWithType: MacOSOpenGLComponent.SetCurrentContext(OpenGLContextHandle?) - fullName: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.SetCurrentContext(OpenTK.Core.Platform.OpenGLContextHandle?) + fullName: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.SetCurrentContext(OpenTK.Platform.OpenGLContextHandle?) type: Method source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSOpenGLComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetCurrentContext - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSOpenGLComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSOpenGLComponent.cs startLine: 448 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: Set the current OpenGL context for this thread. example: [] @@ -543,7 +486,7 @@ items: content: public bool SetCurrentContext(OpenGLContextHandle? handle) parameters: - id: handle - type: OpenTK.Core.Platform.OpenGLContextHandle + type: OpenTK.Platform.OpenGLContextHandle description: Handle to the OpenGL context to make current, or null to make none current. return: type: System.Boolean @@ -551,31 +494,27 @@ items: content.vb: Public Function SetCurrentContext(handle As OpenGLContextHandle) As Boolean overload: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.SetCurrentContext* implements: - - OpenTK.Core.Platform.IOpenGLComponent.SetCurrentContext(OpenTK.Core.Platform.OpenGLContextHandle) + - OpenTK.Platform.IOpenGLComponent.SetCurrentContext(OpenTK.Platform.OpenGLContextHandle) nameWithType.vb: MacOSOpenGLComponent.SetCurrentContext(OpenGLContextHandle) - fullName.vb: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.SetCurrentContext(OpenTK.Core.Platform.OpenGLContextHandle) + fullName.vb: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.SetCurrentContext(OpenTK.Platform.OpenGLContextHandle) name.vb: SetCurrentContext(OpenGLContextHandle) -- uid: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.GetSharedContext(OpenTK.Core.Platform.OpenGLContextHandle) - commentId: M:OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.GetSharedContext(OpenTK.Core.Platform.OpenGLContextHandle) - id: GetSharedContext(OpenTK.Core.Platform.OpenGLContextHandle) +- uid: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.GetSharedContext(OpenTK.Platform.OpenGLContextHandle) + commentId: M:OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.GetSharedContext(OpenTK.Platform.OpenGLContextHandle) + id: GetSharedContext(OpenTK.Platform.OpenGLContextHandle) parent: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent langs: - csharp - vb name: GetSharedContext(OpenGLContextHandle) nameWithType: MacOSOpenGLComponent.GetSharedContext(OpenGLContextHandle) - fullName: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.GetSharedContext(OpenTK.Core.Platform.OpenGLContextHandle) + fullName: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.GetSharedContext(OpenTK.Platform.OpenGLContextHandle) type: Method source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSOpenGLComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetSharedContext - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSOpenGLComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSOpenGLComponent.cs startLine: 465 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: Gets the context which the given context shares display lists with. example: [] @@ -583,15 +522,15 @@ items: content: public OpenGLContextHandle? GetSharedContext(OpenGLContextHandle handle) parameters: - id: handle - type: OpenTK.Core.Platform.OpenGLContextHandle + type: OpenTK.Platform.OpenGLContextHandle description: Handle to the OpenGL context. return: - type: OpenTK.Core.Platform.OpenGLContextHandle + type: OpenTK.Platform.OpenGLContextHandle description: Handle to the OpenGL context the given context shares display lists with. content.vb: Public Function GetSharedContext(handle As OpenGLContextHandle) As OpenGLContextHandle overload: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.GetSharedContext* implements: - - OpenTK.Core.Platform.IOpenGLComponent.GetSharedContext(OpenTK.Core.Platform.OpenGLContextHandle) + - OpenTK.Platform.IOpenGLComponent.GetSharedContext(OpenTK.Platform.OpenGLContextHandle) - uid: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.SetSwapInterval(System.Int32) commentId: M:OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.SetSwapInterval(System.Int32) id: SetSwapInterval(System.Int32) @@ -604,15 +543,11 @@ items: fullName: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.SetSwapInterval(int) type: Method source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSOpenGLComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetSwapInterval - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSOpenGLComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSOpenGLComponent.cs startLine: 472 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: Sets the swap interval of the current OpenGL context. example: [] @@ -625,7 +560,7 @@ items: content.vb: Public Sub SetSwapInterval(interval As Integer) overload: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.SetSwapInterval* implements: - - OpenTK.Core.Platform.IOpenGLComponent.SetSwapInterval(System.Int32) + - OpenTK.Platform.IOpenGLComponent.SetSwapInterval(System.Int32) nameWithType.vb: MacOSOpenGLComponent.SetSwapInterval(Integer) fullName.vb: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.SetSwapInterval(Integer) name.vb: SetSwapInterval(Integer) @@ -641,15 +576,11 @@ items: fullName: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.GetSwapInterval() type: Method source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSOpenGLComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetSwapInterval - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSOpenGLComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSOpenGLComponent.cs startLine: 483 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: Gets the swap interval of the current OpenGL context. example: [] @@ -661,28 +592,24 @@ items: content.vb: Public Function GetSwapInterval() As Integer overload: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.GetSwapInterval* implements: - - OpenTK.Core.Platform.IOpenGLComponent.GetSwapInterval -- uid: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.SwapBuffers(OpenTK.Core.Platform.OpenGLContextHandle) - commentId: M:OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.SwapBuffers(OpenTK.Core.Platform.OpenGLContextHandle) - id: SwapBuffers(OpenTK.Core.Platform.OpenGLContextHandle) + - OpenTK.Platform.IOpenGLComponent.GetSwapInterval +- uid: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.SwapBuffers(OpenTK.Platform.OpenGLContextHandle) + commentId: M:OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.SwapBuffers(OpenTK.Platform.OpenGLContextHandle) + id: SwapBuffers(OpenTK.Platform.OpenGLContextHandle) parent: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent langs: - csharp - vb name: SwapBuffers(OpenGLContextHandle) nameWithType: MacOSOpenGLComponent.SwapBuffers(OpenGLContextHandle) - fullName: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.SwapBuffers(OpenTK.Core.Platform.OpenGLContextHandle) + fullName: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.SwapBuffers(OpenTK.Platform.OpenGLContextHandle) type: Method source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSOpenGLComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SwapBuffers - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSOpenGLComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSOpenGLComponent.cs startLine: 497 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: Swaps the buffer of the specified context. example: [] @@ -690,33 +617,29 @@ items: content: public void SwapBuffers(OpenGLContextHandle handle) parameters: - id: handle - type: OpenTK.Core.Platform.OpenGLContextHandle + type: OpenTK.Platform.OpenGLContextHandle description: Handle to the context. content.vb: Public Sub SwapBuffers(handle As OpenGLContextHandle) overload: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.SwapBuffers* implements: - - OpenTK.Core.Platform.IOpenGLComponent.SwapBuffers(OpenTK.Core.Platform.OpenGLContextHandle) -- uid: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.GetNSOpenGLContext(OpenTK.Core.Platform.OpenGLContextHandle) - commentId: M:OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.GetNSOpenGLContext(OpenTK.Core.Platform.OpenGLContextHandle) - id: GetNSOpenGLContext(OpenTK.Core.Platform.OpenGLContextHandle) + - OpenTK.Platform.IOpenGLComponent.SwapBuffers(OpenTK.Platform.OpenGLContextHandle) +- uid: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.GetNSOpenGLContext(OpenTK.Platform.OpenGLContextHandle) + commentId: M:OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.GetNSOpenGLContext(OpenTK.Platform.OpenGLContextHandle) + id: GetNSOpenGLContext(OpenTK.Platform.OpenGLContextHandle) parent: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent langs: - csharp - vb name: GetNSOpenGLContext(OpenGLContextHandle) nameWithType: MacOSOpenGLComponent.GetNSOpenGLContext(OpenGLContextHandle) - fullName: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.GetNSOpenGLContext(OpenTK.Core.Platform.OpenGLContextHandle) + fullName: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.GetNSOpenGLContext(OpenTK.Platform.OpenGLContextHandle) type: Method source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSOpenGLComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetNSOpenGLContext - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSOpenGLComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSOpenGLComponent.cs startLine: 508 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: Returns the NSOpenGLContext associated with the specified context handle. example: [] @@ -724,7 +647,7 @@ items: content: public nint GetNSOpenGLContext(OpenGLContextHandle handle) parameters: - id: handle - type: OpenTK.Core.Platform.OpenGLContextHandle + type: OpenTK.Platform.OpenGLContextHandle description: A handle to an OpenGL context to get the associated NSOpenGLContext from. return: type: System.IntPtr @@ -781,20 +704,20 @@ references: nameWithType.vb: Object fullName.vb: Object name.vb: Object -- uid: OpenTK.Core.Platform.IOpenGLComponent - commentId: T:OpenTK.Core.Platform.IOpenGLComponent - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.IOpenGLComponent.html +- uid: OpenTK.Platform.IOpenGLComponent + commentId: T:OpenTK.Platform.IOpenGLComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IOpenGLComponent.html name: IOpenGLComponent nameWithType: IOpenGLComponent - fullName: OpenTK.Core.Platform.IOpenGLComponent -- uid: OpenTK.Core.Platform.IPalComponent - commentId: T:OpenTK.Core.Platform.IPalComponent - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.IPalComponent.html + fullName: OpenTK.Platform.IOpenGLComponent +- uid: OpenTK.Platform.IPalComponent + commentId: T:OpenTK.Platform.IPalComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IPalComponent.html name: IPalComponent nameWithType: IPalComponent - fullName: OpenTK.Core.Platform.IPalComponent + fullName: OpenTK.Platform.IPalComponent - uid: System.Object.Equals(System.Object) commentId: M:System.Object.Equals(System.Object) parent: System.Object @@ -1021,49 +944,41 @@ references: name: System nameWithType: System fullName: System -- uid: OpenTK.Core.Platform - commentId: N:OpenTK.Core.Platform +- uid: OpenTK.Platform + commentId: N:OpenTK.Platform href: OpenTK.html - name: OpenTK.Core.Platform - nameWithType: OpenTK.Core.Platform - fullName: OpenTK.Core.Platform + name: OpenTK.Platform + nameWithType: OpenTK.Platform + fullName: OpenTK.Platform spec.csharp: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html spec.vb: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html - uid: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.Name* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.Name href: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.html#OpenTK_Platform_Native_macOS_MacOSOpenGLComponent_Name name: Name nameWithType: MacOSOpenGLComponent.Name fullName: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.Name -- uid: OpenTK.Core.Platform.IPalComponent.Name - commentId: P:OpenTK.Core.Platform.IPalComponent.Name - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Name +- uid: OpenTK.Platform.IPalComponent.Name + commentId: P:OpenTK.Platform.IPalComponent.Name + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Name name: Name nameWithType: IPalComponent.Name - fullName: OpenTK.Core.Platform.IPalComponent.Name + fullName: OpenTK.Platform.IPalComponent.Name - uid: System.String commentId: T:System.String parent: System @@ -1081,33 +996,33 @@ references: name: Provides nameWithType: MacOSOpenGLComponent.Provides fullName: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.Provides -- uid: OpenTK.Core.Platform.IPalComponent.Provides - commentId: P:OpenTK.Core.Platform.IPalComponent.Provides - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Provides +- uid: OpenTK.Platform.IPalComponent.Provides + commentId: P:OpenTK.Platform.IPalComponent.Provides + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Provides name: Provides nameWithType: IPalComponent.Provides - fullName: OpenTK.Core.Platform.IPalComponent.Provides -- uid: OpenTK.Core.Platform.PalComponents - commentId: T:OpenTK.Core.Platform.PalComponents - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.PalComponents.html + fullName: OpenTK.Platform.IPalComponent.Provides +- uid: OpenTK.Platform.PalComponents + commentId: T:OpenTK.Platform.PalComponents + parent: OpenTK.Platform + href: OpenTK.Platform.PalComponents.html name: PalComponents nameWithType: PalComponents - fullName: OpenTK.Core.Platform.PalComponents + fullName: OpenTK.Platform.PalComponents - uid: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.Logger* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.Logger href: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.html#OpenTK_Platform_Native_macOS_MacOSOpenGLComponent_Logger name: Logger nameWithType: MacOSOpenGLComponent.Logger fullName: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.Logger -- uid: OpenTK.Core.Platform.IPalComponent.Logger - commentId: P:OpenTK.Core.Platform.IPalComponent.Logger - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Logger +- uid: OpenTK.Platform.IPalComponent.Logger + commentId: P:OpenTK.Platform.IPalComponent.Logger + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Logger name: Logger nameWithType: IPalComponent.Logger - fullName: OpenTK.Core.Platform.IPalComponent.Logger + fullName: OpenTK.Platform.IPalComponent.Logger - uid: OpenTK.Core.Utility.ILogger commentId: T:OpenTK.Core.Utility.ILogger parent: OpenTK.Core.Utility @@ -1147,55 +1062,55 @@ references: href: OpenTK.Core.Utility.html - uid: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.Initialize* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.Initialize - href: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.html#OpenTK_Platform_Native_macOS_MacOSOpenGLComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + href: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.html#OpenTK_Platform_Native_macOS_MacOSOpenGLComponent_Initialize_OpenTK_Platform_ToolkitOptions_ name: Initialize nameWithType: MacOSOpenGLComponent.Initialize fullName: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.Initialize -- uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - commentId: M:OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ +- uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ name: Initialize(ToolkitOptions) nameWithType: IPalComponent.Initialize(ToolkitOptions) - fullName: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + fullName: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) spec.csharp: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + - uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.ToolkitOptions + - uid: OpenTK.Platform.ToolkitOptions name: ToolkitOptions - href: OpenTK.Core.Platform.ToolkitOptions.html + href: OpenTK.Platform.ToolkitOptions.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + - uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.ToolkitOptions + - uid: OpenTK.Platform.ToolkitOptions name: ToolkitOptions - href: OpenTK.Core.Platform.ToolkitOptions.html + href: OpenTK.Platform.ToolkitOptions.html - name: ) -- uid: OpenTK.Core.Platform.ToolkitOptions - commentId: T:OpenTK.Core.Platform.ToolkitOptions - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.ToolkitOptions.html +- uid: OpenTK.Platform.ToolkitOptions + commentId: T:OpenTK.Platform.ToolkitOptions + parent: OpenTK.Platform + href: OpenTK.Platform.ToolkitOptions.html name: ToolkitOptions nameWithType: ToolkitOptions - fullName: OpenTK.Core.Platform.ToolkitOptions + fullName: OpenTK.Platform.ToolkitOptions - uid: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.CanShareContexts* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.CanShareContexts href: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.html#OpenTK_Platform_Native_macOS_MacOSOpenGLComponent_CanShareContexts name: CanShareContexts nameWithType: MacOSOpenGLComponent.CanShareContexts fullName: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.CanShareContexts -- uid: OpenTK.Core.Platform.IOpenGLComponent.CanShareContexts - commentId: P:OpenTK.Core.Platform.IOpenGLComponent.CanShareContexts - parent: OpenTK.Core.Platform.IOpenGLComponent - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_CanShareContexts +- uid: OpenTK.Platform.IOpenGLComponent.CanShareContexts + commentId: P:OpenTK.Platform.IOpenGLComponent.CanShareContexts + parent: OpenTK.Platform.IOpenGLComponent + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_CanShareContexts name: CanShareContexts nameWithType: IOpenGLComponent.CanShareContexts - fullName: OpenTK.Core.Platform.IOpenGLComponent.CanShareContexts + fullName: OpenTK.Platform.IOpenGLComponent.CanShareContexts - uid: System.Boolean commentId: T:System.Boolean parent: System @@ -1207,102 +1122,102 @@ references: nameWithType.vb: Boolean fullName.vb: Boolean name.vb: Boolean +- uid: OpenTK.Platform.IOpenGLComponent.CreateFromWindow(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IOpenGLComponent.CreateFromWindow(OpenTK.Platform.WindowHandle) + parent: OpenTK.Platform.IOpenGLComponent + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_CreateFromWindow_OpenTK_Platform_WindowHandle_ + name: CreateFromWindow(WindowHandle) + nameWithType: IOpenGLComponent.CreateFromWindow(WindowHandle) + fullName: OpenTK.Platform.IOpenGLComponent.CreateFromWindow(OpenTK.Platform.WindowHandle) + spec.csharp: + - uid: OpenTK.Platform.IOpenGLComponent.CreateFromWindow(OpenTK.Platform.WindowHandle) + name: CreateFromWindow + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_CreateFromWindow_OpenTK_Platform_WindowHandle_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IOpenGLComponent.CreateFromWindow(OpenTK.Platform.WindowHandle) + name: CreateFromWindow + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_CreateFromWindow_OpenTK_Platform_WindowHandle_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ) - uid: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.CanCreateFromWindow* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.CanCreateFromWindow href: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.html#OpenTK_Platform_Native_macOS_MacOSOpenGLComponent_CanCreateFromWindow name: CanCreateFromWindow nameWithType: MacOSOpenGLComponent.CanCreateFromWindow fullName: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.CanCreateFromWindow -- uid: OpenTK.Core.Platform.IOpenGLComponent.CanCreateFromWindow - commentId: P:OpenTK.Core.Platform.IOpenGLComponent.CanCreateFromWindow - parent: OpenTK.Core.Platform.IOpenGLComponent - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_CanCreateFromWindow +- uid: OpenTK.Platform.IOpenGLComponent.CanCreateFromWindow + commentId: P:OpenTK.Platform.IOpenGLComponent.CanCreateFromWindow + parent: OpenTK.Platform.IOpenGLComponent + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_CanCreateFromWindow name: CanCreateFromWindow nameWithType: IOpenGLComponent.CanCreateFromWindow - fullName: OpenTK.Core.Platform.IOpenGLComponent.CanCreateFromWindow + fullName: OpenTK.Platform.IOpenGLComponent.CanCreateFromWindow +- uid: OpenTK.Platform.IOpenGLComponent.CreateFromSurface + commentId: M:OpenTK.Platform.IOpenGLComponent.CreateFromSurface + parent: OpenTK.Platform.IOpenGLComponent + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_CreateFromSurface + name: CreateFromSurface() + nameWithType: IOpenGLComponent.CreateFromSurface() + fullName: OpenTK.Platform.IOpenGLComponent.CreateFromSurface() + spec.csharp: + - uid: OpenTK.Platform.IOpenGLComponent.CreateFromSurface + name: CreateFromSurface + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_CreateFromSurface + - name: ( + - name: ) + spec.vb: + - uid: OpenTK.Platform.IOpenGLComponent.CreateFromSurface + name: CreateFromSurface + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_CreateFromSurface + - name: ( + - name: ) - uid: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.CanCreateFromSurface* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.CanCreateFromSurface href: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.html#OpenTK_Platform_Native_macOS_MacOSOpenGLComponent_CanCreateFromSurface name: CanCreateFromSurface nameWithType: MacOSOpenGLComponent.CanCreateFromSurface fullName: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.CanCreateFromSurface -- uid: OpenTK.Core.Platform.IOpenGLComponent.CanCreateFromSurface - commentId: P:OpenTK.Core.Platform.IOpenGLComponent.CanCreateFromSurface - parent: OpenTK.Core.Platform.IOpenGLComponent - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_CanCreateFromSurface +- uid: OpenTK.Platform.IOpenGLComponent.CanCreateFromSurface + commentId: P:OpenTK.Platform.IOpenGLComponent.CanCreateFromSurface + parent: OpenTK.Platform.IOpenGLComponent + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_CanCreateFromSurface name: CanCreateFromSurface nameWithType: IOpenGLComponent.CanCreateFromSurface - fullName: OpenTK.Core.Platform.IOpenGLComponent.CanCreateFromSurface + fullName: OpenTK.Platform.IOpenGLComponent.CanCreateFromSurface - uid: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.CreateFromSurface* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.CreateFromSurface href: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.html#OpenTK_Platform_Native_macOS_MacOSOpenGLComponent_CreateFromSurface name: CreateFromSurface nameWithType: MacOSOpenGLComponent.CreateFromSurface fullName: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.CreateFromSurface -- uid: OpenTK.Core.Platform.IOpenGLComponent.CreateFromSurface - commentId: M:OpenTK.Core.Platform.IOpenGLComponent.CreateFromSurface - parent: OpenTK.Core.Platform.IOpenGLComponent - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_CreateFromSurface - name: CreateFromSurface() - nameWithType: IOpenGLComponent.CreateFromSurface() - fullName: OpenTK.Core.Platform.IOpenGLComponent.CreateFromSurface() - spec.csharp: - - uid: OpenTK.Core.Platform.IOpenGLComponent.CreateFromSurface - name: CreateFromSurface - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_CreateFromSurface - - name: ( - - name: ) - spec.vb: - - uid: OpenTK.Core.Platform.IOpenGLComponent.CreateFromSurface - name: CreateFromSurface - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_CreateFromSurface - - name: ( - - name: ) -- uid: OpenTK.Core.Platform.OpenGLContextHandle - commentId: T:OpenTK.Core.Platform.OpenGLContextHandle - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.OpenGLContextHandle.html +- uid: OpenTK.Platform.OpenGLContextHandle + commentId: T:OpenTK.Platform.OpenGLContextHandle + parent: OpenTK.Platform + href: OpenTK.Platform.OpenGLContextHandle.html name: OpenGLContextHandle nameWithType: OpenGLContextHandle - fullName: OpenTK.Core.Platform.OpenGLContextHandle + fullName: OpenTK.Platform.OpenGLContextHandle - uid: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.CreateFromWindow* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.CreateFromWindow - href: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.html#OpenTK_Platform_Native_macOS_MacOSOpenGLComponent_CreateFromWindow_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.html#OpenTK_Platform_Native_macOS_MacOSOpenGLComponent_CreateFromWindow_OpenTK_Platform_WindowHandle_ name: CreateFromWindow nameWithType: MacOSOpenGLComponent.CreateFromWindow fullName: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.CreateFromWindow -- uid: OpenTK.Core.Platform.IOpenGLComponent.CreateFromWindow(OpenTK.Core.Platform.WindowHandle) - commentId: M:OpenTK.Core.Platform.IOpenGLComponent.CreateFromWindow(OpenTK.Core.Platform.WindowHandle) - parent: OpenTK.Core.Platform.IOpenGLComponent - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_CreateFromWindow_OpenTK_Core_Platform_WindowHandle_ - name: CreateFromWindow(WindowHandle) - nameWithType: IOpenGLComponent.CreateFromWindow(WindowHandle) - fullName: OpenTK.Core.Platform.IOpenGLComponent.CreateFromWindow(OpenTK.Core.Platform.WindowHandle) - spec.csharp: - - uid: OpenTK.Core.Platform.IOpenGLComponent.CreateFromWindow(OpenTK.Core.Platform.WindowHandle) - name: CreateFromWindow - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_CreateFromWindow_OpenTK_Core_Platform_WindowHandle_ - - name: ( - - uid: OpenTK.Core.Platform.WindowHandle - name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html - - name: ) - spec.vb: - - uid: OpenTK.Core.Platform.IOpenGLComponent.CreateFromWindow(OpenTK.Core.Platform.WindowHandle) - name: CreateFromWindow - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_CreateFromWindow_OpenTK_Core_Platform_WindowHandle_ - - name: ( - - uid: OpenTK.Core.Platform.WindowHandle - name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html - - name: ) -- uid: OpenTK.Core.Platform.WindowHandle - commentId: T:OpenTK.Core.Platform.WindowHandle - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.WindowHandle.html +- uid: OpenTK.Platform.WindowHandle + commentId: T:OpenTK.Platform.WindowHandle + parent: OpenTK.Platform + href: OpenTK.Platform.WindowHandle.html name: WindowHandle nameWithType: WindowHandle - fullName: OpenTK.Core.Platform.WindowHandle + fullName: OpenTK.Platform.WindowHandle - uid: System.ArgumentNullException commentId: T:System.ArgumentNullException isExternal: true @@ -1312,34 +1227,34 @@ references: fullName: System.ArgumentNullException - uid: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.DestroyContext* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.DestroyContext - href: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.html#OpenTK_Platform_Native_macOS_MacOSOpenGLComponent_DestroyContext_OpenTK_Core_Platform_OpenGLContextHandle_ + href: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.html#OpenTK_Platform_Native_macOS_MacOSOpenGLComponent_DestroyContext_OpenTK_Platform_OpenGLContextHandle_ name: DestroyContext nameWithType: MacOSOpenGLComponent.DestroyContext fullName: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.DestroyContext -- uid: OpenTK.Core.Platform.IOpenGLComponent.DestroyContext(OpenTK.Core.Platform.OpenGLContextHandle) - commentId: M:OpenTK.Core.Platform.IOpenGLComponent.DestroyContext(OpenTK.Core.Platform.OpenGLContextHandle) - parent: OpenTK.Core.Platform.IOpenGLComponent - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_DestroyContext_OpenTK_Core_Platform_OpenGLContextHandle_ +- uid: OpenTK.Platform.IOpenGLComponent.DestroyContext(OpenTK.Platform.OpenGLContextHandle) + commentId: M:OpenTK.Platform.IOpenGLComponent.DestroyContext(OpenTK.Platform.OpenGLContextHandle) + parent: OpenTK.Platform.IOpenGLComponent + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_DestroyContext_OpenTK_Platform_OpenGLContextHandle_ name: DestroyContext(OpenGLContextHandle) nameWithType: IOpenGLComponent.DestroyContext(OpenGLContextHandle) - fullName: OpenTK.Core.Platform.IOpenGLComponent.DestroyContext(OpenTK.Core.Platform.OpenGLContextHandle) + fullName: OpenTK.Platform.IOpenGLComponent.DestroyContext(OpenTK.Platform.OpenGLContextHandle) spec.csharp: - - uid: OpenTK.Core.Platform.IOpenGLComponent.DestroyContext(OpenTK.Core.Platform.OpenGLContextHandle) + - uid: OpenTK.Platform.IOpenGLComponent.DestroyContext(OpenTK.Platform.OpenGLContextHandle) name: DestroyContext - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_DestroyContext_OpenTK_Core_Platform_OpenGLContextHandle_ + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_DestroyContext_OpenTK_Platform_OpenGLContextHandle_ - name: ( - - uid: OpenTK.Core.Platform.OpenGLContextHandle + - uid: OpenTK.Platform.OpenGLContextHandle name: OpenGLContextHandle - href: OpenTK.Core.Platform.OpenGLContextHandle.html + href: OpenTK.Platform.OpenGLContextHandle.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IOpenGLComponent.DestroyContext(OpenTK.Core.Platform.OpenGLContextHandle) + - uid: OpenTK.Platform.IOpenGLComponent.DestroyContext(OpenTK.Platform.OpenGLContextHandle) name: DestroyContext - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_DestroyContext_OpenTK_Core_Platform_OpenGLContextHandle_ + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_DestroyContext_OpenTK_Platform_OpenGLContextHandle_ - name: ( - - uid: OpenTK.Core.Platform.OpenGLContextHandle + - uid: OpenTK.Platform.OpenGLContextHandle name: OpenGLContextHandle - href: OpenTK.Core.Platform.OpenGLContextHandle.html + href: OpenTK.Platform.OpenGLContextHandle.html - name: ) - uid: OpenTK.IBindingsContext commentId: T:OpenTK.IBindingsContext @@ -1350,34 +1265,34 @@ references: fullName: OpenTK.IBindingsContext - uid: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.GetBindingsContext* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.GetBindingsContext - href: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.html#OpenTK_Platform_Native_macOS_MacOSOpenGLComponent_GetBindingsContext_OpenTK_Core_Platform_OpenGLContextHandle_ + href: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.html#OpenTK_Platform_Native_macOS_MacOSOpenGLComponent_GetBindingsContext_OpenTK_Platform_OpenGLContextHandle_ name: GetBindingsContext nameWithType: MacOSOpenGLComponent.GetBindingsContext fullName: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.GetBindingsContext -- uid: OpenTK.Core.Platform.IOpenGLComponent.GetBindingsContext(OpenTK.Core.Platform.OpenGLContextHandle) - commentId: M:OpenTK.Core.Platform.IOpenGLComponent.GetBindingsContext(OpenTK.Core.Platform.OpenGLContextHandle) - parent: OpenTK.Core.Platform.IOpenGLComponent - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_GetBindingsContext_OpenTK_Core_Platform_OpenGLContextHandle_ +- uid: OpenTK.Platform.IOpenGLComponent.GetBindingsContext(OpenTK.Platform.OpenGLContextHandle) + commentId: M:OpenTK.Platform.IOpenGLComponent.GetBindingsContext(OpenTK.Platform.OpenGLContextHandle) + parent: OpenTK.Platform.IOpenGLComponent + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_GetBindingsContext_OpenTK_Platform_OpenGLContextHandle_ name: GetBindingsContext(OpenGLContextHandle) nameWithType: IOpenGLComponent.GetBindingsContext(OpenGLContextHandle) - fullName: OpenTK.Core.Platform.IOpenGLComponent.GetBindingsContext(OpenTK.Core.Platform.OpenGLContextHandle) + fullName: OpenTK.Platform.IOpenGLComponent.GetBindingsContext(OpenTK.Platform.OpenGLContextHandle) spec.csharp: - - uid: OpenTK.Core.Platform.IOpenGLComponent.GetBindingsContext(OpenTK.Core.Platform.OpenGLContextHandle) + - uid: OpenTK.Platform.IOpenGLComponent.GetBindingsContext(OpenTK.Platform.OpenGLContextHandle) name: GetBindingsContext - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_GetBindingsContext_OpenTK_Core_Platform_OpenGLContextHandle_ + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_GetBindingsContext_OpenTK_Platform_OpenGLContextHandle_ - name: ( - - uid: OpenTK.Core.Platform.OpenGLContextHandle + - uid: OpenTK.Platform.OpenGLContextHandle name: OpenGLContextHandle - href: OpenTK.Core.Platform.OpenGLContextHandle.html + href: OpenTK.Platform.OpenGLContextHandle.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IOpenGLComponent.GetBindingsContext(OpenTK.Core.Platform.OpenGLContextHandle) + - uid: OpenTK.Platform.IOpenGLComponent.GetBindingsContext(OpenTK.Platform.OpenGLContextHandle) name: GetBindingsContext - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_GetBindingsContext_OpenTK_Core_Platform_OpenGLContextHandle_ + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_GetBindingsContext_OpenTK_Platform_OpenGLContextHandle_ - name: ( - - uid: OpenTK.Core.Platform.OpenGLContextHandle + - uid: OpenTK.Platform.OpenGLContextHandle name: OpenGLContextHandle - href: OpenTK.Core.Platform.OpenGLContextHandle.html + href: OpenTK.Platform.OpenGLContextHandle.html - name: ) - uid: OpenTK commentId: N:OpenTK @@ -1387,29 +1302,29 @@ references: fullName: OpenTK - uid: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.GetProcedureAddress* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.GetProcedureAddress - href: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.html#OpenTK_Platform_Native_macOS_MacOSOpenGLComponent_GetProcedureAddress_OpenTK_Core_Platform_OpenGLContextHandle_System_String_ + href: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.html#OpenTK_Platform_Native_macOS_MacOSOpenGLComponent_GetProcedureAddress_OpenTK_Platform_OpenGLContextHandle_System_String_ name: GetProcedureAddress nameWithType: MacOSOpenGLComponent.GetProcedureAddress fullName: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.GetProcedureAddress -- uid: OpenTK.Core.Platform.IOpenGLComponent.GetProcedureAddress(OpenTK.Core.Platform.OpenGLContextHandle,System.String) - commentId: M:OpenTK.Core.Platform.IOpenGLComponent.GetProcedureAddress(OpenTK.Core.Platform.OpenGLContextHandle,System.String) - parent: OpenTK.Core.Platform.IOpenGLComponent +- uid: OpenTK.Platform.IOpenGLComponent.GetProcedureAddress(OpenTK.Platform.OpenGLContextHandle,System.String) + commentId: M:OpenTK.Platform.IOpenGLComponent.GetProcedureAddress(OpenTK.Platform.OpenGLContextHandle,System.String) + parent: OpenTK.Platform.IOpenGLComponent isExternal: true - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_GetProcedureAddress_OpenTK_Core_Platform_OpenGLContextHandle_System_String_ + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_GetProcedureAddress_OpenTK_Platform_OpenGLContextHandle_System_String_ name: GetProcedureAddress(OpenGLContextHandle, string) nameWithType: IOpenGLComponent.GetProcedureAddress(OpenGLContextHandle, string) - fullName: OpenTK.Core.Platform.IOpenGLComponent.GetProcedureAddress(OpenTK.Core.Platform.OpenGLContextHandle, string) + fullName: OpenTK.Platform.IOpenGLComponent.GetProcedureAddress(OpenTK.Platform.OpenGLContextHandle, string) nameWithType.vb: IOpenGLComponent.GetProcedureAddress(OpenGLContextHandle, String) - fullName.vb: OpenTK.Core.Platform.IOpenGLComponent.GetProcedureAddress(OpenTK.Core.Platform.OpenGLContextHandle, String) + fullName.vb: OpenTK.Platform.IOpenGLComponent.GetProcedureAddress(OpenTK.Platform.OpenGLContextHandle, String) name.vb: GetProcedureAddress(OpenGLContextHandle, String) spec.csharp: - - uid: OpenTK.Core.Platform.IOpenGLComponent.GetProcedureAddress(OpenTK.Core.Platform.OpenGLContextHandle,System.String) + - uid: OpenTK.Platform.IOpenGLComponent.GetProcedureAddress(OpenTK.Platform.OpenGLContextHandle,System.String) name: GetProcedureAddress - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_GetProcedureAddress_OpenTK_Core_Platform_OpenGLContextHandle_System_String_ + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_GetProcedureAddress_OpenTK_Platform_OpenGLContextHandle_System_String_ - name: ( - - uid: OpenTK.Core.Platform.OpenGLContextHandle + - uid: OpenTK.Platform.OpenGLContextHandle name: OpenGLContextHandle - href: OpenTK.Core.Platform.OpenGLContextHandle.html + href: OpenTK.Platform.OpenGLContextHandle.html - name: ',' - name: " " - uid: System.String @@ -1418,13 +1333,13 @@ references: href: https://learn.microsoft.com/dotnet/api/system.string - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IOpenGLComponent.GetProcedureAddress(OpenTK.Core.Platform.OpenGLContextHandle,System.String) + - uid: OpenTK.Platform.IOpenGLComponent.GetProcedureAddress(OpenTK.Platform.OpenGLContextHandle,System.String) name: GetProcedureAddress - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_GetProcedureAddress_OpenTK_Core_Platform_OpenGLContextHandle_System_String_ + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_GetProcedureAddress_OpenTK_Platform_OpenGLContextHandle_System_String_ - name: ( - - uid: OpenTK.Core.Platform.OpenGLContextHandle + - uid: OpenTK.Platform.OpenGLContextHandle name: OpenGLContextHandle - href: OpenTK.Core.Platform.OpenGLContextHandle.html + href: OpenTK.Platform.OpenGLContextHandle.html - name: ',' - name: " " - uid: System.String @@ -1449,86 +1364,86 @@ references: name: GetCurrentContext nameWithType: MacOSOpenGLComponent.GetCurrentContext fullName: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.GetCurrentContext -- uid: OpenTK.Core.Platform.IOpenGLComponent.GetCurrentContext - commentId: M:OpenTK.Core.Platform.IOpenGLComponent.GetCurrentContext - parent: OpenTK.Core.Platform.IOpenGLComponent - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_GetCurrentContext +- uid: OpenTK.Platform.IOpenGLComponent.GetCurrentContext + commentId: M:OpenTK.Platform.IOpenGLComponent.GetCurrentContext + parent: OpenTK.Platform.IOpenGLComponent + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_GetCurrentContext name: GetCurrentContext() nameWithType: IOpenGLComponent.GetCurrentContext() - fullName: OpenTK.Core.Platform.IOpenGLComponent.GetCurrentContext() + fullName: OpenTK.Platform.IOpenGLComponent.GetCurrentContext() spec.csharp: - - uid: OpenTK.Core.Platform.IOpenGLComponent.GetCurrentContext + - uid: OpenTK.Platform.IOpenGLComponent.GetCurrentContext name: GetCurrentContext - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_GetCurrentContext + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_GetCurrentContext - name: ( - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IOpenGLComponent.GetCurrentContext + - uid: OpenTK.Platform.IOpenGLComponent.GetCurrentContext name: GetCurrentContext - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_GetCurrentContext + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_GetCurrentContext - name: ( - name: ) - uid: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.SetCurrentContext* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.SetCurrentContext - href: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.html#OpenTK_Platform_Native_macOS_MacOSOpenGLComponent_SetCurrentContext_OpenTK_Core_Platform_OpenGLContextHandle_ + href: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.html#OpenTK_Platform_Native_macOS_MacOSOpenGLComponent_SetCurrentContext_OpenTK_Platform_OpenGLContextHandle_ name: SetCurrentContext nameWithType: MacOSOpenGLComponent.SetCurrentContext fullName: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.SetCurrentContext -- uid: OpenTK.Core.Platform.IOpenGLComponent.SetCurrentContext(OpenTK.Core.Platform.OpenGLContextHandle) - commentId: M:OpenTK.Core.Platform.IOpenGLComponent.SetCurrentContext(OpenTK.Core.Platform.OpenGLContextHandle) - parent: OpenTK.Core.Platform.IOpenGLComponent - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_SetCurrentContext_OpenTK_Core_Platform_OpenGLContextHandle_ +- uid: OpenTK.Platform.IOpenGLComponent.SetCurrentContext(OpenTK.Platform.OpenGLContextHandle) + commentId: M:OpenTK.Platform.IOpenGLComponent.SetCurrentContext(OpenTK.Platform.OpenGLContextHandle) + parent: OpenTK.Platform.IOpenGLComponent + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_SetCurrentContext_OpenTK_Platform_OpenGLContextHandle_ name: SetCurrentContext(OpenGLContextHandle) nameWithType: IOpenGLComponent.SetCurrentContext(OpenGLContextHandle) - fullName: OpenTK.Core.Platform.IOpenGLComponent.SetCurrentContext(OpenTK.Core.Platform.OpenGLContextHandle) + fullName: OpenTK.Platform.IOpenGLComponent.SetCurrentContext(OpenTK.Platform.OpenGLContextHandle) spec.csharp: - - uid: OpenTK.Core.Platform.IOpenGLComponent.SetCurrentContext(OpenTK.Core.Platform.OpenGLContextHandle) + - uid: OpenTK.Platform.IOpenGLComponent.SetCurrentContext(OpenTK.Platform.OpenGLContextHandle) name: SetCurrentContext - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_SetCurrentContext_OpenTK_Core_Platform_OpenGLContextHandle_ + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_SetCurrentContext_OpenTK_Platform_OpenGLContextHandle_ - name: ( - - uid: OpenTK.Core.Platform.OpenGLContextHandle + - uid: OpenTK.Platform.OpenGLContextHandle name: OpenGLContextHandle - href: OpenTK.Core.Platform.OpenGLContextHandle.html + href: OpenTK.Platform.OpenGLContextHandle.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IOpenGLComponent.SetCurrentContext(OpenTK.Core.Platform.OpenGLContextHandle) + - uid: OpenTK.Platform.IOpenGLComponent.SetCurrentContext(OpenTK.Platform.OpenGLContextHandle) name: SetCurrentContext - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_SetCurrentContext_OpenTK_Core_Platform_OpenGLContextHandle_ + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_SetCurrentContext_OpenTK_Platform_OpenGLContextHandle_ - name: ( - - uid: OpenTK.Core.Platform.OpenGLContextHandle + - uid: OpenTK.Platform.OpenGLContextHandle name: OpenGLContextHandle - href: OpenTK.Core.Platform.OpenGLContextHandle.html + href: OpenTK.Platform.OpenGLContextHandle.html - name: ) - uid: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.GetSharedContext* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.GetSharedContext - href: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.html#OpenTK_Platform_Native_macOS_MacOSOpenGLComponent_GetSharedContext_OpenTK_Core_Platform_OpenGLContextHandle_ + href: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.html#OpenTK_Platform_Native_macOS_MacOSOpenGLComponent_GetSharedContext_OpenTK_Platform_OpenGLContextHandle_ name: GetSharedContext nameWithType: MacOSOpenGLComponent.GetSharedContext fullName: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.GetSharedContext -- uid: OpenTK.Core.Platform.IOpenGLComponent.GetSharedContext(OpenTK.Core.Platform.OpenGLContextHandle) - commentId: M:OpenTK.Core.Platform.IOpenGLComponent.GetSharedContext(OpenTK.Core.Platform.OpenGLContextHandle) - parent: OpenTK.Core.Platform.IOpenGLComponent - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_GetSharedContext_OpenTK_Core_Platform_OpenGLContextHandle_ +- uid: OpenTK.Platform.IOpenGLComponent.GetSharedContext(OpenTK.Platform.OpenGLContextHandle) + commentId: M:OpenTK.Platform.IOpenGLComponent.GetSharedContext(OpenTK.Platform.OpenGLContextHandle) + parent: OpenTK.Platform.IOpenGLComponent + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_GetSharedContext_OpenTK_Platform_OpenGLContextHandle_ name: GetSharedContext(OpenGLContextHandle) nameWithType: IOpenGLComponent.GetSharedContext(OpenGLContextHandle) - fullName: OpenTK.Core.Platform.IOpenGLComponent.GetSharedContext(OpenTK.Core.Platform.OpenGLContextHandle) + fullName: OpenTK.Platform.IOpenGLComponent.GetSharedContext(OpenTK.Platform.OpenGLContextHandle) spec.csharp: - - uid: OpenTK.Core.Platform.IOpenGLComponent.GetSharedContext(OpenTK.Core.Platform.OpenGLContextHandle) + - uid: OpenTK.Platform.IOpenGLComponent.GetSharedContext(OpenTK.Platform.OpenGLContextHandle) name: GetSharedContext - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_GetSharedContext_OpenTK_Core_Platform_OpenGLContextHandle_ + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_GetSharedContext_OpenTK_Platform_OpenGLContextHandle_ - name: ( - - uid: OpenTK.Core.Platform.OpenGLContextHandle + - uid: OpenTK.Platform.OpenGLContextHandle name: OpenGLContextHandle - href: OpenTK.Core.Platform.OpenGLContextHandle.html + href: OpenTK.Platform.OpenGLContextHandle.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IOpenGLComponent.GetSharedContext(OpenTK.Core.Platform.OpenGLContextHandle) + - uid: OpenTK.Platform.IOpenGLComponent.GetSharedContext(OpenTK.Platform.OpenGLContextHandle) name: GetSharedContext - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_GetSharedContext_OpenTK_Core_Platform_OpenGLContextHandle_ + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_GetSharedContext_OpenTK_Platform_OpenGLContextHandle_ - name: ( - - uid: OpenTK.Core.Platform.OpenGLContextHandle + - uid: OpenTK.Platform.OpenGLContextHandle name: OpenGLContextHandle - href: OpenTK.Core.Platform.OpenGLContextHandle.html + href: OpenTK.Platform.OpenGLContextHandle.html - name: ) - uid: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.SetSwapInterval* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.SetSwapInterval @@ -1536,21 +1451,21 @@ references: name: SetSwapInterval nameWithType: MacOSOpenGLComponent.SetSwapInterval fullName: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.SetSwapInterval -- uid: OpenTK.Core.Platform.IOpenGLComponent.SetSwapInterval(System.Int32) - commentId: M:OpenTK.Core.Platform.IOpenGLComponent.SetSwapInterval(System.Int32) - parent: OpenTK.Core.Platform.IOpenGLComponent +- uid: OpenTK.Platform.IOpenGLComponent.SetSwapInterval(System.Int32) + commentId: M:OpenTK.Platform.IOpenGLComponent.SetSwapInterval(System.Int32) + parent: OpenTK.Platform.IOpenGLComponent isExternal: true - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_SetSwapInterval_System_Int32_ + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_SetSwapInterval_System_Int32_ name: SetSwapInterval(int) nameWithType: IOpenGLComponent.SetSwapInterval(int) - fullName: OpenTK.Core.Platform.IOpenGLComponent.SetSwapInterval(int) + fullName: OpenTK.Platform.IOpenGLComponent.SetSwapInterval(int) nameWithType.vb: IOpenGLComponent.SetSwapInterval(Integer) - fullName.vb: OpenTK.Core.Platform.IOpenGLComponent.SetSwapInterval(Integer) + fullName.vb: OpenTK.Platform.IOpenGLComponent.SetSwapInterval(Integer) name.vb: SetSwapInterval(Integer) spec.csharp: - - uid: OpenTK.Core.Platform.IOpenGLComponent.SetSwapInterval(System.Int32) + - uid: OpenTK.Platform.IOpenGLComponent.SetSwapInterval(System.Int32) name: SetSwapInterval - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_SetSwapInterval_System_Int32_ + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_SetSwapInterval_System_Int32_ - name: ( - uid: System.Int32 name: int @@ -1558,9 +1473,9 @@ references: href: https://learn.microsoft.com/dotnet/api/system.int32 - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IOpenGLComponent.SetSwapInterval(System.Int32) + - uid: OpenTK.Platform.IOpenGLComponent.SetSwapInterval(System.Int32) name: SetSwapInterval - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_SetSwapInterval_System_Int32_ + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_SetSwapInterval_System_Int32_ - name: ( - uid: System.Int32 name: Integer @@ -1584,59 +1499,59 @@ references: name: GetSwapInterval nameWithType: MacOSOpenGLComponent.GetSwapInterval fullName: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.GetSwapInterval -- uid: OpenTK.Core.Platform.IOpenGLComponent.GetSwapInterval - commentId: M:OpenTK.Core.Platform.IOpenGLComponent.GetSwapInterval - parent: OpenTK.Core.Platform.IOpenGLComponent - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_GetSwapInterval +- uid: OpenTK.Platform.IOpenGLComponent.GetSwapInterval + commentId: M:OpenTK.Platform.IOpenGLComponent.GetSwapInterval + parent: OpenTK.Platform.IOpenGLComponent + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_GetSwapInterval name: GetSwapInterval() nameWithType: IOpenGLComponent.GetSwapInterval() - fullName: OpenTK.Core.Platform.IOpenGLComponent.GetSwapInterval() + fullName: OpenTK.Platform.IOpenGLComponent.GetSwapInterval() spec.csharp: - - uid: OpenTK.Core.Platform.IOpenGLComponent.GetSwapInterval + - uid: OpenTK.Platform.IOpenGLComponent.GetSwapInterval name: GetSwapInterval - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_GetSwapInterval + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_GetSwapInterval - name: ( - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IOpenGLComponent.GetSwapInterval + - uid: OpenTK.Platform.IOpenGLComponent.GetSwapInterval name: GetSwapInterval - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_GetSwapInterval + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_GetSwapInterval - name: ( - name: ) - uid: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.SwapBuffers* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.SwapBuffers - href: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.html#OpenTK_Platform_Native_macOS_MacOSOpenGLComponent_SwapBuffers_OpenTK_Core_Platform_OpenGLContextHandle_ + href: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.html#OpenTK_Platform_Native_macOS_MacOSOpenGLComponent_SwapBuffers_OpenTK_Platform_OpenGLContextHandle_ name: SwapBuffers nameWithType: MacOSOpenGLComponent.SwapBuffers fullName: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.SwapBuffers -- uid: OpenTK.Core.Platform.IOpenGLComponent.SwapBuffers(OpenTK.Core.Platform.OpenGLContextHandle) - commentId: M:OpenTK.Core.Platform.IOpenGLComponent.SwapBuffers(OpenTK.Core.Platform.OpenGLContextHandle) - parent: OpenTK.Core.Platform.IOpenGLComponent - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_SwapBuffers_OpenTK_Core_Platform_OpenGLContextHandle_ +- uid: OpenTK.Platform.IOpenGLComponent.SwapBuffers(OpenTK.Platform.OpenGLContextHandle) + commentId: M:OpenTK.Platform.IOpenGLComponent.SwapBuffers(OpenTK.Platform.OpenGLContextHandle) + parent: OpenTK.Platform.IOpenGLComponent + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_SwapBuffers_OpenTK_Platform_OpenGLContextHandle_ name: SwapBuffers(OpenGLContextHandle) nameWithType: IOpenGLComponent.SwapBuffers(OpenGLContextHandle) - fullName: OpenTK.Core.Platform.IOpenGLComponent.SwapBuffers(OpenTK.Core.Platform.OpenGLContextHandle) + fullName: OpenTK.Platform.IOpenGLComponent.SwapBuffers(OpenTK.Platform.OpenGLContextHandle) spec.csharp: - - uid: OpenTK.Core.Platform.IOpenGLComponent.SwapBuffers(OpenTK.Core.Platform.OpenGLContextHandle) + - uid: OpenTK.Platform.IOpenGLComponent.SwapBuffers(OpenTK.Platform.OpenGLContextHandle) name: SwapBuffers - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_SwapBuffers_OpenTK_Core_Platform_OpenGLContextHandle_ + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_SwapBuffers_OpenTK_Platform_OpenGLContextHandle_ - name: ( - - uid: OpenTK.Core.Platform.OpenGLContextHandle + - uid: OpenTK.Platform.OpenGLContextHandle name: OpenGLContextHandle - href: OpenTK.Core.Platform.OpenGLContextHandle.html + href: OpenTK.Platform.OpenGLContextHandle.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IOpenGLComponent.SwapBuffers(OpenTK.Core.Platform.OpenGLContextHandle) + - uid: OpenTK.Platform.IOpenGLComponent.SwapBuffers(OpenTK.Platform.OpenGLContextHandle) name: SwapBuffers - href: OpenTK.Core.Platform.IOpenGLComponent.html#OpenTK_Core_Platform_IOpenGLComponent_SwapBuffers_OpenTK_Core_Platform_OpenGLContextHandle_ + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_SwapBuffers_OpenTK_Platform_OpenGLContextHandle_ - name: ( - - uid: OpenTK.Core.Platform.OpenGLContextHandle + - uid: OpenTK.Platform.OpenGLContextHandle name: OpenGLContextHandle - href: OpenTK.Core.Platform.OpenGLContextHandle.html + href: OpenTK.Platform.OpenGLContextHandle.html - name: ) - uid: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.GetNSOpenGLContext* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.GetNSOpenGLContext - href: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.html#OpenTK_Platform_Native_macOS_MacOSOpenGLComponent_GetNSOpenGLContext_OpenTK_Core_Platform_OpenGLContextHandle_ + href: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.html#OpenTK_Platform_Native_macOS_MacOSOpenGLComponent_GetNSOpenGLContext_OpenTK_Platform_OpenGLContextHandle_ name: GetNSOpenGLContext nameWithType: MacOSOpenGLComponent.GetNSOpenGLContext fullName: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.GetNSOpenGLContext diff --git a/api/OpenTK.Platform.Native.macOS.MacOSShellComponent.yml b/api/OpenTK.Platform.Native.macOS.MacOSShellComponent.yml index 889d2ea7..cc9e8626 100644 --- a/api/OpenTK.Platform.Native.macOS.MacOSShellComponent.yml +++ b/api/OpenTK.Platform.Native.macOS.MacOSShellComponent.yml @@ -6,10 +6,10 @@ items: parent: OpenTK.Platform.Native.macOS children: - OpenTK.Platform.Native.macOS.MacOSShellComponent.AllowScreenSaver(System.Boolean) - - OpenTK.Platform.Native.macOS.MacOSShellComponent.GetBatteryInfo(OpenTK.Core.Platform.BatteryInfo@) + - OpenTK.Platform.Native.macOS.MacOSShellComponent.GetBatteryInfo(OpenTK.Platform.BatteryInfo@) - OpenTK.Platform.Native.macOS.MacOSShellComponent.GetPreferredTheme - OpenTK.Platform.Native.macOS.MacOSShellComponent.GetSystemMemoryInformation - - OpenTK.Platform.Native.macOS.MacOSShellComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + - OpenTK.Platform.Native.macOS.MacOSShellComponent.Initialize(OpenTK.Platform.ToolkitOptions) - OpenTK.Platform.Native.macOS.MacOSShellComponent.Logger - OpenTK.Platform.Native.macOS.MacOSShellComponent.Name - OpenTK.Platform.Native.macOS.MacOSShellComponent.Provides @@ -21,15 +21,11 @@ items: fullName: OpenTK.Platform.Native.macOS.MacOSShellComponent type: Class source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSShellComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MacOSShellComponent - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSShellComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSShellComponent.cs startLine: 13 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS syntax: content: 'public class MacOSShellComponent : IShellComponent, IPalComponent' @@ -37,8 +33,8 @@ items: inheritance: - System.Object implements: - - OpenTK.Core.Platform.IShellComponent - - OpenTK.Core.Platform.IPalComponent + - OpenTK.Platform.IShellComponent + - OpenTK.Platform.IPalComponent inheritedMembers: - System.Object.Equals(System.Object) - System.Object.Equals(System.Object,System.Object) @@ -59,15 +55,11 @@ items: fullName: OpenTK.Platform.Native.macOS.MacOSShellComponent.Name type: Property source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSShellComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Name - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSShellComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSShellComponent.cs startLine: 36 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: Name of the abstraction layer component. example: [] @@ -79,7 +71,7 @@ items: content.vb: Public ReadOnly Property Name As String overload: OpenTK.Platform.Native.macOS.MacOSShellComponent.Name* implements: - - OpenTK.Core.Platform.IPalComponent.Name + - OpenTK.Platform.IPalComponent.Name - uid: OpenTK.Platform.Native.macOS.MacOSShellComponent.Provides commentId: P:OpenTK.Platform.Native.macOS.MacOSShellComponent.Provides id: Provides @@ -92,15 +84,11 @@ items: fullName: OpenTK.Platform.Native.macOS.MacOSShellComponent.Provides type: Property source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSShellComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Provides - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSShellComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSShellComponent.cs startLine: 38 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: Specifies which PAL components this object provides. example: [] @@ -108,11 +96,11 @@ items: content: public PalComponents Provides { get; } parameters: [] return: - type: OpenTK.Core.Platform.PalComponents + type: OpenTK.Platform.PalComponents content.vb: Public ReadOnly Property Provides As PalComponents overload: OpenTK.Platform.Native.macOS.MacOSShellComponent.Provides* implements: - - OpenTK.Core.Platform.IPalComponent.Provides + - OpenTK.Platform.IPalComponent.Provides - uid: OpenTK.Platform.Native.macOS.MacOSShellComponent.Logger commentId: P:OpenTK.Platform.Native.macOS.MacOSShellComponent.Logger id: Logger @@ -125,15 +113,11 @@ items: fullName: OpenTK.Platform.Native.macOS.MacOSShellComponent.Logger type: Property source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSShellComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Logger - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSShellComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSShellComponent.cs startLine: 40 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: Provides a logger for this component. example: [] @@ -145,28 +129,24 @@ items: content.vb: Public Property Logger As ILogger overload: OpenTK.Platform.Native.macOS.MacOSShellComponent.Logger* implements: - - OpenTK.Core.Platform.IPalComponent.Logger -- uid: OpenTK.Platform.Native.macOS.MacOSShellComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - commentId: M:OpenTK.Platform.Native.macOS.MacOSShellComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - id: Initialize(OpenTK.Core.Platform.ToolkitOptions) + - OpenTK.Platform.IPalComponent.Logger +- uid: OpenTK.Platform.Native.macOS.MacOSShellComponent.Initialize(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Native.macOS.MacOSShellComponent.Initialize(OpenTK.Platform.ToolkitOptions) + id: Initialize(OpenTK.Platform.ToolkitOptions) parent: OpenTK.Platform.Native.macOS.MacOSShellComponent langs: - csharp - vb name: Initialize(ToolkitOptions) nameWithType: MacOSShellComponent.Initialize(ToolkitOptions) - fullName: OpenTK.Platform.Native.macOS.MacOSShellComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + fullName: OpenTK.Platform.Native.macOS.MacOSShellComponent.Initialize(OpenTK.Platform.ToolkitOptions) type: Method source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSShellComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Initialize - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSShellComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSShellComponent.cs startLine: 44 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: Initialize the component. example: [] @@ -174,12 +154,12 @@ items: content: public void Initialize(ToolkitOptions options) parameters: - id: options - type: OpenTK.Core.Platform.ToolkitOptions + type: OpenTK.Platform.ToolkitOptions description: The options to initialize the component with. content.vb: Public Sub Initialize(options As ToolkitOptions) overload: OpenTK.Platform.Native.macOS.MacOSShellComponent.Initialize* implements: - - OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + - OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) - uid: OpenTK.Platform.Native.macOS.MacOSShellComponent.AllowScreenSaver(System.Boolean) commentId: M:OpenTK.Platform.Native.macOS.MacOSShellComponent.AllowScreenSaver(System.Boolean) id: AllowScreenSaver(System.Boolean) @@ -192,15 +172,11 @@ items: fullName: OpenTK.Platform.Native.macOS.MacOSShellComponent.AllowScreenSaver(bool) type: Method source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSShellComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: AllowScreenSaver - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSShellComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSShellComponent.cs startLine: 50 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: >- Sets whether or not a screensaver is allowed to draw on top of the window. @@ -220,31 +196,27 @@ items: content.vb: Public Sub AllowScreenSaver(allow As Boolean) overload: OpenTK.Platform.Native.macOS.MacOSShellComponent.AllowScreenSaver* implements: - - OpenTK.Core.Platform.IShellComponent.AllowScreenSaver(System.Boolean) + - OpenTK.Platform.IShellComponent.AllowScreenSaver(System.Boolean) nameWithType.vb: MacOSShellComponent.AllowScreenSaver(Boolean) fullName.vb: OpenTK.Platform.Native.macOS.MacOSShellComponent.AllowScreenSaver(Boolean) name.vb: AllowScreenSaver(Boolean) -- uid: OpenTK.Platform.Native.macOS.MacOSShellComponent.GetBatteryInfo(OpenTK.Core.Platform.BatteryInfo@) - commentId: M:OpenTK.Platform.Native.macOS.MacOSShellComponent.GetBatteryInfo(OpenTK.Core.Platform.BatteryInfo@) - id: GetBatteryInfo(OpenTK.Core.Platform.BatteryInfo@) +- uid: OpenTK.Platform.Native.macOS.MacOSShellComponent.GetBatteryInfo(OpenTK.Platform.BatteryInfo@) + commentId: M:OpenTK.Platform.Native.macOS.MacOSShellComponent.GetBatteryInfo(OpenTK.Platform.BatteryInfo@) + id: GetBatteryInfo(OpenTK.Platform.BatteryInfo@) parent: OpenTK.Platform.Native.macOS.MacOSShellComponent langs: - csharp - vb name: GetBatteryInfo(out BatteryInfo) nameWithType: MacOSShellComponent.GetBatteryInfo(out BatteryInfo) - fullName: OpenTK.Platform.Native.macOS.MacOSShellComponent.GetBatteryInfo(out OpenTK.Core.Platform.BatteryInfo) + fullName: OpenTK.Platform.Native.macOS.MacOSShellComponent.GetBatteryInfo(out OpenTK.Platform.BatteryInfo) type: Method source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSShellComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetBatteryInfo - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSShellComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSShellComponent.cs startLine: 77 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: Gets the battery status of the computer. example: [] @@ -252,19 +224,19 @@ items: content: public BatteryStatus GetBatteryInfo(out BatteryInfo batteryInfo) parameters: - id: batteryInfo - type: OpenTK.Core.Platform.BatteryInfo + type: OpenTK.Platform.BatteryInfo description: >- The battery status of the computer, - this is only filled with values when is returned. + this is only filled with values when is returned. return: - type: OpenTK.Core.Platform.BatteryStatus + type: OpenTK.Platform.BatteryStatus description: Whether the computer has a battery or not, or if this function failed. content.vb: Public Function GetBatteryInfo(batteryInfo As BatteryInfo) As BatteryStatus overload: OpenTK.Platform.Native.macOS.MacOSShellComponent.GetBatteryInfo* implements: - - OpenTK.Core.Platform.IShellComponent.GetBatteryInfo(OpenTK.Core.Platform.BatteryInfo@) + - OpenTK.Platform.IShellComponent.GetBatteryInfo(OpenTK.Platform.BatteryInfo@) nameWithType.vb: MacOSShellComponent.GetBatteryInfo(BatteryInfo) - fullName.vb: OpenTK.Platform.Native.macOS.MacOSShellComponent.GetBatteryInfo(OpenTK.Core.Platform.BatteryInfo) + fullName.vb: OpenTK.Platform.Native.macOS.MacOSShellComponent.GetBatteryInfo(OpenTK.Platform.BatteryInfo) name.vb: GetBatteryInfo(BatteryInfo) - uid: OpenTK.Platform.Native.macOS.MacOSShellComponent.GetPreferredTheme commentId: M:OpenTK.Platform.Native.macOS.MacOSShellComponent.GetPreferredTheme @@ -278,27 +250,23 @@ items: fullName: OpenTK.Platform.Native.macOS.MacOSShellComponent.GetPreferredTheme() type: Method source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSShellComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetPreferredTheme - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSShellComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSShellComponent.cs startLine: 230 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: Gets the user preference for application theme. example: [] syntax: content: public ThemeInfo GetPreferredTheme() return: - type: OpenTK.Core.Platform.ThemeInfo + type: OpenTK.Platform.ThemeInfo description: The user set preferred theme. content.vb: Public Function GetPreferredTheme() As ThemeInfo overload: OpenTK.Platform.Native.macOS.MacOSShellComponent.GetPreferredTheme* implements: - - OpenTK.Core.Platform.IShellComponent.GetPreferredTheme + - OpenTK.Platform.IShellComponent.GetPreferredTheme - uid: OpenTK.Platform.Native.macOS.MacOSShellComponent.GetSystemMemoryInformation commentId: M:OpenTK.Platform.Native.macOS.MacOSShellComponent.GetSystemMemoryInformation id: GetSystemMemoryInformation @@ -311,27 +279,23 @@ items: fullName: OpenTK.Platform.Native.macOS.MacOSShellComponent.GetSystemMemoryInformation() type: Method source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSShellComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetSystemMemoryInformation - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSShellComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSShellComponent.cs startLine: 235 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: Gets information about the memory of the device and the current status. example: [] syntax: content: public SystemMemoryInfo GetSystemMemoryInformation() return: - type: OpenTK.Core.Platform.SystemMemoryInfo + type: OpenTK.Platform.SystemMemoryInfo description: The memory info. content.vb: Public Function GetSystemMemoryInformation() As SystemMemoryInfo overload: OpenTK.Platform.Native.macOS.MacOSShellComponent.GetSystemMemoryInformation* implements: - - OpenTK.Core.Platform.IShellComponent.GetSystemMemoryInformation + - OpenTK.Platform.IShellComponent.GetSystemMemoryInformation references: - uid: OpenTK.Platform.Native.macOS commentId: N:OpenTK.Platform.Native.macOS @@ -382,20 +346,20 @@ references: nameWithType.vb: Object fullName.vb: Object name.vb: Object -- uid: OpenTK.Core.Platform.IShellComponent - commentId: T:OpenTK.Core.Platform.IShellComponent - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.IShellComponent.html +- uid: OpenTK.Platform.IShellComponent + commentId: T:OpenTK.Platform.IShellComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IShellComponent.html name: IShellComponent nameWithType: IShellComponent - fullName: OpenTK.Core.Platform.IShellComponent -- uid: OpenTK.Core.Platform.IPalComponent - commentId: T:OpenTK.Core.Platform.IPalComponent - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.IPalComponent.html + fullName: OpenTK.Platform.IShellComponent +- uid: OpenTK.Platform.IPalComponent + commentId: T:OpenTK.Platform.IPalComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IPalComponent.html name: IPalComponent nameWithType: IPalComponent - fullName: OpenTK.Core.Platform.IPalComponent + fullName: OpenTK.Platform.IPalComponent - uid: System.Object.Equals(System.Object) commentId: M:System.Object.Equals(System.Object) parent: System.Object @@ -622,49 +586,41 @@ references: name: System nameWithType: System fullName: System -- uid: OpenTK.Core.Platform - commentId: N:OpenTK.Core.Platform +- uid: OpenTK.Platform + commentId: N:OpenTK.Platform href: OpenTK.html - name: OpenTK.Core.Platform - nameWithType: OpenTK.Core.Platform - fullName: OpenTK.Core.Platform + name: OpenTK.Platform + nameWithType: OpenTK.Platform + fullName: OpenTK.Platform spec.csharp: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html spec.vb: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html - uid: OpenTK.Platform.Native.macOS.MacOSShellComponent.Name* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSShellComponent.Name href: OpenTK.Platform.Native.macOS.MacOSShellComponent.html#OpenTK_Platform_Native_macOS_MacOSShellComponent_Name name: Name nameWithType: MacOSShellComponent.Name fullName: OpenTK.Platform.Native.macOS.MacOSShellComponent.Name -- uid: OpenTK.Core.Platform.IPalComponent.Name - commentId: P:OpenTK.Core.Platform.IPalComponent.Name - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Name +- uid: OpenTK.Platform.IPalComponent.Name + commentId: P:OpenTK.Platform.IPalComponent.Name + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Name name: Name nameWithType: IPalComponent.Name - fullName: OpenTK.Core.Platform.IPalComponent.Name + fullName: OpenTK.Platform.IPalComponent.Name - uid: System.String commentId: T:System.String parent: System @@ -682,33 +638,33 @@ references: name: Provides nameWithType: MacOSShellComponent.Provides fullName: OpenTK.Platform.Native.macOS.MacOSShellComponent.Provides -- uid: OpenTK.Core.Platform.IPalComponent.Provides - commentId: P:OpenTK.Core.Platform.IPalComponent.Provides - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Provides +- uid: OpenTK.Platform.IPalComponent.Provides + commentId: P:OpenTK.Platform.IPalComponent.Provides + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Provides name: Provides nameWithType: IPalComponent.Provides - fullName: OpenTK.Core.Platform.IPalComponent.Provides -- uid: OpenTK.Core.Platform.PalComponents - commentId: T:OpenTK.Core.Platform.PalComponents - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.PalComponents.html + fullName: OpenTK.Platform.IPalComponent.Provides +- uid: OpenTK.Platform.PalComponents + commentId: T:OpenTK.Platform.PalComponents + parent: OpenTK.Platform + href: OpenTK.Platform.PalComponents.html name: PalComponents nameWithType: PalComponents - fullName: OpenTK.Core.Platform.PalComponents + fullName: OpenTK.Platform.PalComponents - uid: OpenTK.Platform.Native.macOS.MacOSShellComponent.Logger* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSShellComponent.Logger href: OpenTK.Platform.Native.macOS.MacOSShellComponent.html#OpenTK_Platform_Native_macOS_MacOSShellComponent_Logger name: Logger nameWithType: MacOSShellComponent.Logger fullName: OpenTK.Platform.Native.macOS.MacOSShellComponent.Logger -- uid: OpenTK.Core.Platform.IPalComponent.Logger - commentId: P:OpenTK.Core.Platform.IPalComponent.Logger - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Logger +- uid: OpenTK.Platform.IPalComponent.Logger + commentId: P:OpenTK.Platform.IPalComponent.Logger + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Logger name: Logger nameWithType: IPalComponent.Logger - fullName: OpenTK.Core.Platform.IPalComponent.Logger + fullName: OpenTK.Platform.IPalComponent.Logger - uid: OpenTK.Core.Utility.ILogger commentId: T:OpenTK.Core.Utility.ILogger parent: OpenTK.Core.Utility @@ -748,63 +704,63 @@ references: href: OpenTK.Core.Utility.html - uid: OpenTK.Platform.Native.macOS.MacOSShellComponent.Initialize* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSShellComponent.Initialize - href: OpenTK.Platform.Native.macOS.MacOSShellComponent.html#OpenTK_Platform_Native_macOS_MacOSShellComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + href: OpenTK.Platform.Native.macOS.MacOSShellComponent.html#OpenTK_Platform_Native_macOS_MacOSShellComponent_Initialize_OpenTK_Platform_ToolkitOptions_ name: Initialize nameWithType: MacOSShellComponent.Initialize fullName: OpenTK.Platform.Native.macOS.MacOSShellComponent.Initialize -- uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - commentId: M:OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ +- uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ name: Initialize(ToolkitOptions) nameWithType: IPalComponent.Initialize(ToolkitOptions) - fullName: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + fullName: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) spec.csharp: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + - uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.ToolkitOptions + - uid: OpenTK.Platform.ToolkitOptions name: ToolkitOptions - href: OpenTK.Core.Platform.ToolkitOptions.html + href: OpenTK.Platform.ToolkitOptions.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + - uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.ToolkitOptions + - uid: OpenTK.Platform.ToolkitOptions name: ToolkitOptions - href: OpenTK.Core.Platform.ToolkitOptions.html + href: OpenTK.Platform.ToolkitOptions.html - name: ) -- uid: OpenTK.Core.Platform.ToolkitOptions - commentId: T:OpenTK.Core.Platform.ToolkitOptions - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.ToolkitOptions.html +- uid: OpenTK.Platform.ToolkitOptions + commentId: T:OpenTK.Platform.ToolkitOptions + parent: OpenTK.Platform + href: OpenTK.Platform.ToolkitOptions.html name: ToolkitOptions nameWithType: ToolkitOptions - fullName: OpenTK.Core.Platform.ToolkitOptions + fullName: OpenTK.Platform.ToolkitOptions - uid: OpenTK.Platform.Native.macOS.MacOSShellComponent.AllowScreenSaver* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSShellComponent.AllowScreenSaver href: OpenTK.Platform.Native.macOS.MacOSShellComponent.html#OpenTK_Platform_Native_macOS_MacOSShellComponent_AllowScreenSaver_System_Boolean_ name: AllowScreenSaver nameWithType: MacOSShellComponent.AllowScreenSaver fullName: OpenTK.Platform.Native.macOS.MacOSShellComponent.AllowScreenSaver -- uid: OpenTK.Core.Platform.IShellComponent.AllowScreenSaver(System.Boolean) - commentId: M:OpenTK.Core.Platform.IShellComponent.AllowScreenSaver(System.Boolean) - parent: OpenTK.Core.Platform.IShellComponent +- uid: OpenTK.Platform.IShellComponent.AllowScreenSaver(System.Boolean) + commentId: M:OpenTK.Platform.IShellComponent.AllowScreenSaver(System.Boolean) + parent: OpenTK.Platform.IShellComponent isExternal: true - href: OpenTK.Core.Platform.IShellComponent.html#OpenTK_Core_Platform_IShellComponent_AllowScreenSaver_System_Boolean_ + href: OpenTK.Platform.IShellComponent.html#OpenTK_Platform_IShellComponent_AllowScreenSaver_System_Boolean_ name: AllowScreenSaver(bool) nameWithType: IShellComponent.AllowScreenSaver(bool) - fullName: OpenTK.Core.Platform.IShellComponent.AllowScreenSaver(bool) + fullName: OpenTK.Platform.IShellComponent.AllowScreenSaver(bool) nameWithType.vb: IShellComponent.AllowScreenSaver(Boolean) - fullName.vb: OpenTK.Core.Platform.IShellComponent.AllowScreenSaver(Boolean) + fullName.vb: OpenTK.Platform.IShellComponent.AllowScreenSaver(Boolean) name.vb: AllowScreenSaver(Boolean) spec.csharp: - - uid: OpenTK.Core.Platform.IShellComponent.AllowScreenSaver(System.Boolean) + - uid: OpenTK.Platform.IShellComponent.AllowScreenSaver(System.Boolean) name: AllowScreenSaver - href: OpenTK.Core.Platform.IShellComponent.html#OpenTK_Core_Platform_IShellComponent_AllowScreenSaver_System_Boolean_ + href: OpenTK.Platform.IShellComponent.html#OpenTK_Platform_IShellComponent_AllowScreenSaver_System_Boolean_ - name: ( - uid: System.Boolean name: bool @@ -812,9 +768,9 @@ references: href: https://learn.microsoft.com/dotnet/api/system.boolean - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IShellComponent.AllowScreenSaver(System.Boolean) + - uid: OpenTK.Platform.IShellComponent.AllowScreenSaver(System.Boolean) name: AllowScreenSaver - href: OpenTK.Core.Platform.IShellComponent.html#OpenTK_Core_Platform_IShellComponent_AllowScreenSaver_System_Boolean_ + href: OpenTK.Platform.IShellComponent.html#OpenTK_Platform_IShellComponent_AllowScreenSaver_System_Boolean_ - name: ( - uid: System.Boolean name: Boolean @@ -832,123 +788,123 @@ references: nameWithType.vb: Boolean fullName.vb: Boolean name.vb: Boolean -- uid: OpenTK.Core.Platform.BatteryStatus.HasSystemBattery - commentId: F:OpenTK.Core.Platform.BatteryStatus.HasSystemBattery - href: OpenTK.Core.Platform.BatteryStatus.html#OpenTK_Core_Platform_BatteryStatus_HasSystemBattery +- uid: OpenTK.Platform.BatteryStatus.HasSystemBattery + commentId: F:OpenTK.Platform.BatteryStatus.HasSystemBattery + href: OpenTK.Platform.BatteryStatus.html#OpenTK_Platform_BatteryStatus_HasSystemBattery name: HasSystemBattery nameWithType: BatteryStatus.HasSystemBattery - fullName: OpenTK.Core.Platform.BatteryStatus.HasSystemBattery + fullName: OpenTK.Platform.BatteryStatus.HasSystemBattery - uid: OpenTK.Platform.Native.macOS.MacOSShellComponent.GetBatteryInfo* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSShellComponent.GetBatteryInfo - href: OpenTK.Platform.Native.macOS.MacOSShellComponent.html#OpenTK_Platform_Native_macOS_MacOSShellComponent_GetBatteryInfo_OpenTK_Core_Platform_BatteryInfo__ + href: OpenTK.Platform.Native.macOS.MacOSShellComponent.html#OpenTK_Platform_Native_macOS_MacOSShellComponent_GetBatteryInfo_OpenTK_Platform_BatteryInfo__ name: GetBatteryInfo nameWithType: MacOSShellComponent.GetBatteryInfo fullName: OpenTK.Platform.Native.macOS.MacOSShellComponent.GetBatteryInfo -- uid: OpenTK.Core.Platform.IShellComponent.GetBatteryInfo(OpenTK.Core.Platform.BatteryInfo@) - commentId: M:OpenTK.Core.Platform.IShellComponent.GetBatteryInfo(OpenTK.Core.Platform.BatteryInfo@) - parent: OpenTK.Core.Platform.IShellComponent - href: OpenTK.Core.Platform.IShellComponent.html#OpenTK_Core_Platform_IShellComponent_GetBatteryInfo_OpenTK_Core_Platform_BatteryInfo__ +- uid: OpenTK.Platform.IShellComponent.GetBatteryInfo(OpenTK.Platform.BatteryInfo@) + commentId: M:OpenTK.Platform.IShellComponent.GetBatteryInfo(OpenTK.Platform.BatteryInfo@) + parent: OpenTK.Platform.IShellComponent + href: OpenTK.Platform.IShellComponent.html#OpenTK_Platform_IShellComponent_GetBatteryInfo_OpenTK_Platform_BatteryInfo__ name: GetBatteryInfo(out BatteryInfo) nameWithType: IShellComponent.GetBatteryInfo(out BatteryInfo) - fullName: OpenTK.Core.Platform.IShellComponent.GetBatteryInfo(out OpenTK.Core.Platform.BatteryInfo) + fullName: OpenTK.Platform.IShellComponent.GetBatteryInfo(out OpenTK.Platform.BatteryInfo) nameWithType.vb: IShellComponent.GetBatteryInfo(BatteryInfo) - fullName.vb: OpenTK.Core.Platform.IShellComponent.GetBatteryInfo(OpenTK.Core.Platform.BatteryInfo) + fullName.vb: OpenTK.Platform.IShellComponent.GetBatteryInfo(OpenTK.Platform.BatteryInfo) name.vb: GetBatteryInfo(BatteryInfo) spec.csharp: - - uid: OpenTK.Core.Platform.IShellComponent.GetBatteryInfo(OpenTK.Core.Platform.BatteryInfo@) + - uid: OpenTK.Platform.IShellComponent.GetBatteryInfo(OpenTK.Platform.BatteryInfo@) name: GetBatteryInfo - href: OpenTK.Core.Platform.IShellComponent.html#OpenTK_Core_Platform_IShellComponent_GetBatteryInfo_OpenTK_Core_Platform_BatteryInfo__ + href: OpenTK.Platform.IShellComponent.html#OpenTK_Platform_IShellComponent_GetBatteryInfo_OpenTK_Platform_BatteryInfo__ - name: ( - name: out - name: " " - - uid: OpenTK.Core.Platform.BatteryInfo + - uid: OpenTK.Platform.BatteryInfo name: BatteryInfo - href: OpenTK.Core.Platform.BatteryInfo.html + href: OpenTK.Platform.BatteryInfo.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IShellComponent.GetBatteryInfo(OpenTK.Core.Platform.BatteryInfo@) + - uid: OpenTK.Platform.IShellComponent.GetBatteryInfo(OpenTK.Platform.BatteryInfo@) name: GetBatteryInfo - href: OpenTK.Core.Platform.IShellComponent.html#OpenTK_Core_Platform_IShellComponent_GetBatteryInfo_OpenTK_Core_Platform_BatteryInfo__ + href: OpenTK.Platform.IShellComponent.html#OpenTK_Platform_IShellComponent_GetBatteryInfo_OpenTK_Platform_BatteryInfo__ - name: ( - - uid: OpenTK.Core.Platform.BatteryInfo + - uid: OpenTK.Platform.BatteryInfo name: BatteryInfo - href: OpenTK.Core.Platform.BatteryInfo.html + href: OpenTK.Platform.BatteryInfo.html - name: ) -- uid: OpenTK.Core.Platform.BatteryInfo - commentId: T:OpenTK.Core.Platform.BatteryInfo - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.BatteryInfo.html +- uid: OpenTK.Platform.BatteryInfo + commentId: T:OpenTK.Platform.BatteryInfo + parent: OpenTK.Platform + href: OpenTK.Platform.BatteryInfo.html name: BatteryInfo nameWithType: BatteryInfo - fullName: OpenTK.Core.Platform.BatteryInfo -- uid: OpenTK.Core.Platform.BatteryStatus - commentId: T:OpenTK.Core.Platform.BatteryStatus - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.BatteryStatus.html + fullName: OpenTK.Platform.BatteryInfo +- uid: OpenTK.Platform.BatteryStatus + commentId: T:OpenTK.Platform.BatteryStatus + parent: OpenTK.Platform + href: OpenTK.Platform.BatteryStatus.html name: BatteryStatus nameWithType: BatteryStatus - fullName: OpenTK.Core.Platform.BatteryStatus + fullName: OpenTK.Platform.BatteryStatus - uid: OpenTK.Platform.Native.macOS.MacOSShellComponent.GetPreferredTheme* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSShellComponent.GetPreferredTheme href: OpenTK.Platform.Native.macOS.MacOSShellComponent.html#OpenTK_Platform_Native_macOS_MacOSShellComponent_GetPreferredTheme name: GetPreferredTheme nameWithType: MacOSShellComponent.GetPreferredTheme fullName: OpenTK.Platform.Native.macOS.MacOSShellComponent.GetPreferredTheme -- uid: OpenTK.Core.Platform.IShellComponent.GetPreferredTheme - commentId: M:OpenTK.Core.Platform.IShellComponent.GetPreferredTheme - parent: OpenTK.Core.Platform.IShellComponent - href: OpenTK.Core.Platform.IShellComponent.html#OpenTK_Core_Platform_IShellComponent_GetPreferredTheme +- uid: OpenTK.Platform.IShellComponent.GetPreferredTheme + commentId: M:OpenTK.Platform.IShellComponent.GetPreferredTheme + parent: OpenTK.Platform.IShellComponent + href: OpenTK.Platform.IShellComponent.html#OpenTK_Platform_IShellComponent_GetPreferredTheme name: GetPreferredTheme() nameWithType: IShellComponent.GetPreferredTheme() - fullName: OpenTK.Core.Platform.IShellComponent.GetPreferredTheme() + fullName: OpenTK.Platform.IShellComponent.GetPreferredTheme() spec.csharp: - - uid: OpenTK.Core.Platform.IShellComponent.GetPreferredTheme + - uid: OpenTK.Platform.IShellComponent.GetPreferredTheme name: GetPreferredTheme - href: OpenTK.Core.Platform.IShellComponent.html#OpenTK_Core_Platform_IShellComponent_GetPreferredTheme + href: OpenTK.Platform.IShellComponent.html#OpenTK_Platform_IShellComponent_GetPreferredTheme - name: ( - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IShellComponent.GetPreferredTheme + - uid: OpenTK.Platform.IShellComponent.GetPreferredTheme name: GetPreferredTheme - href: OpenTK.Core.Platform.IShellComponent.html#OpenTK_Core_Platform_IShellComponent_GetPreferredTheme + href: OpenTK.Platform.IShellComponent.html#OpenTK_Platform_IShellComponent_GetPreferredTheme - name: ( - name: ) -- uid: OpenTK.Core.Platform.ThemeInfo - commentId: T:OpenTK.Core.Platform.ThemeInfo - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.ThemeInfo.html +- uid: OpenTK.Platform.ThemeInfo + commentId: T:OpenTK.Platform.ThemeInfo + parent: OpenTK.Platform + href: OpenTK.Platform.ThemeInfo.html name: ThemeInfo nameWithType: ThemeInfo - fullName: OpenTK.Core.Platform.ThemeInfo + fullName: OpenTK.Platform.ThemeInfo - uid: OpenTK.Platform.Native.macOS.MacOSShellComponent.GetSystemMemoryInformation* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSShellComponent.GetSystemMemoryInformation href: OpenTK.Platform.Native.macOS.MacOSShellComponent.html#OpenTK_Platform_Native_macOS_MacOSShellComponent_GetSystemMemoryInformation name: GetSystemMemoryInformation nameWithType: MacOSShellComponent.GetSystemMemoryInformation fullName: OpenTK.Platform.Native.macOS.MacOSShellComponent.GetSystemMemoryInformation -- uid: OpenTK.Core.Platform.IShellComponent.GetSystemMemoryInformation - commentId: M:OpenTK.Core.Platform.IShellComponent.GetSystemMemoryInformation - parent: OpenTK.Core.Platform.IShellComponent - href: OpenTK.Core.Platform.IShellComponent.html#OpenTK_Core_Platform_IShellComponent_GetSystemMemoryInformation +- uid: OpenTK.Platform.IShellComponent.GetSystemMemoryInformation + commentId: M:OpenTK.Platform.IShellComponent.GetSystemMemoryInformation + parent: OpenTK.Platform.IShellComponent + href: OpenTK.Platform.IShellComponent.html#OpenTK_Platform_IShellComponent_GetSystemMemoryInformation name: GetSystemMemoryInformation() nameWithType: IShellComponent.GetSystemMemoryInformation() - fullName: OpenTK.Core.Platform.IShellComponent.GetSystemMemoryInformation() + fullName: OpenTK.Platform.IShellComponent.GetSystemMemoryInformation() spec.csharp: - - uid: OpenTK.Core.Platform.IShellComponent.GetSystemMemoryInformation + - uid: OpenTK.Platform.IShellComponent.GetSystemMemoryInformation name: GetSystemMemoryInformation - href: OpenTK.Core.Platform.IShellComponent.html#OpenTK_Core_Platform_IShellComponent_GetSystemMemoryInformation + href: OpenTK.Platform.IShellComponent.html#OpenTK_Platform_IShellComponent_GetSystemMemoryInformation - name: ( - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IShellComponent.GetSystemMemoryInformation + - uid: OpenTK.Platform.IShellComponent.GetSystemMemoryInformation name: GetSystemMemoryInformation - href: OpenTK.Core.Platform.IShellComponent.html#OpenTK_Core_Platform_IShellComponent_GetSystemMemoryInformation + href: OpenTK.Platform.IShellComponent.html#OpenTK_Platform_IShellComponent_GetSystemMemoryInformation - name: ( - name: ) -- uid: OpenTK.Core.Platform.SystemMemoryInfo - commentId: T:OpenTK.Core.Platform.SystemMemoryInfo - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.SystemMemoryInfo.html +- uid: OpenTK.Platform.SystemMemoryInfo + commentId: T:OpenTK.Platform.SystemMemoryInfo + parent: OpenTK.Platform + href: OpenTK.Platform.SystemMemoryInfo.html name: SystemMemoryInfo nameWithType: SystemMemoryInfo - fullName: OpenTK.Core.Platform.SystemMemoryInfo + fullName: OpenTK.Platform.SystemMemoryInfo diff --git a/api/OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml b/api/OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml index f294121e..fb9ee6e3 100644 --- a/api/OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml +++ b/api/OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml @@ -9,59 +9,59 @@ items: - OpenTK.Platform.Native.macOS.MacOSWindowComponent.CanGetDisplay - OpenTK.Platform.Native.macOS.MacOSWindowComponent.CanSetCursor - OpenTK.Platform.Native.macOS.MacOSWindowComponent.CanSetIcon - - OpenTK.Platform.Native.macOS.MacOSWindowComponent.ClientToScreen(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) - - OpenTK.Platform.Native.macOS.MacOSWindowComponent.Create(OpenTK.Core.Platform.GraphicsApiHints) - - OpenTK.Platform.Native.macOS.MacOSWindowComponent.Destroy(OpenTK.Core.Platform.WindowHandle) - - OpenTK.Platform.Native.macOS.MacOSWindowComponent.FocusWindow(OpenTK.Core.Platform.WindowHandle) - - OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetBorderStyle(OpenTK.Core.Platform.WindowHandle) - - OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetBounds(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) - - OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetClientBounds(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) - - OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetClientPosition(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) - - OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetClientSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) - - OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetCursorCaptureMode(OpenTK.Core.Platform.WindowHandle) - - OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetDisplay(OpenTK.Core.Platform.WindowHandle) - - OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetFramebufferSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) - - OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle@) - - OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetIcon(OpenTK.Core.Platform.WindowHandle) - - OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetMaxClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) - - OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetMinClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) - - OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetMode(OpenTK.Core.Platform.WindowHandle) - - OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetNSView(OpenTK.Core.Platform.WindowHandle) - - OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetNSWindow(OpenTK.Core.Platform.WindowHandle) - - OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetPosition(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) - - OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetScaleFactor(OpenTK.Core.Platform.WindowHandle,System.Single@,System.Single@) - - OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) - - OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetTitle(OpenTK.Core.Platform.WindowHandle) - - OpenTK.Platform.Native.macOS.MacOSWindowComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - - OpenTK.Platform.Native.macOS.MacOSWindowComponent.IsAlwaysOnTop(OpenTK.Core.Platform.WindowHandle) - - OpenTK.Platform.Native.macOS.MacOSWindowComponent.IsFocused(OpenTK.Core.Platform.WindowHandle) - - OpenTK.Platform.Native.macOS.MacOSWindowComponent.IsWindowDestroyed(OpenTK.Core.Platform.WindowHandle) + - OpenTK.Platform.Native.macOS.MacOSWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) + - OpenTK.Platform.Native.macOS.MacOSWindowComponent.Create(OpenTK.Platform.GraphicsApiHints) + - OpenTK.Platform.Native.macOS.MacOSWindowComponent.Destroy(OpenTK.Platform.WindowHandle) + - OpenTK.Platform.Native.macOS.MacOSWindowComponent.FocusWindow(OpenTK.Platform.WindowHandle) + - OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetBorderStyle(OpenTK.Platform.WindowHandle) + - OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetBounds(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) + - OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetClientBounds(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) + - OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + - OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetClientSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + - OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetCursorCaptureMode(OpenTK.Platform.WindowHandle) + - OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetDisplay(OpenTK.Platform.WindowHandle) + - OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + - OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle@) + - OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetIcon(OpenTK.Platform.WindowHandle) + - OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetMaxClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) + - OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetMinClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) + - OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetMode(OpenTK.Platform.WindowHandle) + - OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetNSView(OpenTK.Platform.WindowHandle) + - OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetNSWindow(OpenTK.Platform.WindowHandle) + - OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + - OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetScaleFactor(OpenTK.Platform.WindowHandle,System.Single@,System.Single@) + - OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + - OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetTitle(OpenTK.Platform.WindowHandle) + - OpenTK.Platform.Native.macOS.MacOSWindowComponent.Initialize(OpenTK.Platform.ToolkitOptions) + - OpenTK.Platform.Native.macOS.MacOSWindowComponent.IsAlwaysOnTop(OpenTK.Platform.WindowHandle) + - OpenTK.Platform.Native.macOS.MacOSWindowComponent.IsFocused(OpenTK.Platform.WindowHandle) + - OpenTK.Platform.Native.macOS.MacOSWindowComponent.IsWindowDestroyed(OpenTK.Platform.WindowHandle) - OpenTK.Platform.Native.macOS.MacOSWindowComponent.Logger - OpenTK.Platform.Native.macOS.MacOSWindowComponent.Name - OpenTK.Platform.Native.macOS.MacOSWindowComponent.ProcessEvents(System.Boolean) - OpenTK.Platform.Native.macOS.MacOSWindowComponent.Provides - - OpenTK.Platform.Native.macOS.MacOSWindowComponent.RequestAttention(OpenTK.Core.Platform.WindowHandle) - - OpenTK.Platform.Native.macOS.MacOSWindowComponent.ScreenToClient(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) - - OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetAlwaysOnTop(OpenTK.Core.Platform.WindowHandle,System.Boolean) - - OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetBorderStyle(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.WindowBorderStyle) - - OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetBounds(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) - - OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetClientBounds(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) - - OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetClientPosition(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) - - OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetClientSize(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) - - OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetCursor(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.CursorHandle) - - OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetCursorCaptureMode(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.CursorCaptureMode) - - OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetDockIcon(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.IconHandle) - - OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle) - - OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle,OpenTK.Core.Platform.VideoMode) - - OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetFullscreenDisplayNoSpace(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle) - - OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetHitTestCallback(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.HitTest) - - OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetIcon(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.IconHandle) - - OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetMaxClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) - - OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetMinClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) - - OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetMode(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.WindowMode) - - OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetPosition(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) - - OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetSize(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) - - OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetTitle(OpenTK.Core.Platform.WindowHandle,System.String) + - OpenTK.Platform.Native.macOS.MacOSWindowComponent.RequestAttention(OpenTK.Platform.WindowHandle) + - OpenTK.Platform.Native.macOS.MacOSWindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) + - OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetAlwaysOnTop(OpenTK.Platform.WindowHandle,System.Boolean) + - OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetBorderStyle(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowBorderStyle) + - OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetBounds(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) + - OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetClientBounds(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) + - OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) + - OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetClientSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) + - OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetCursor(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorHandle) + - OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetCursorCaptureMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorCaptureMode) + - OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetDockIcon(OpenTK.Platform.WindowHandle,OpenTK.Platform.IconHandle) + - OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle) + - OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle,OpenTK.Platform.VideoMode) + - OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetFullscreenDisplayNoSpace(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle) + - OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetHitTestCallback(OpenTK.Platform.WindowHandle,OpenTK.Platform.HitTest) + - OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetIcon(OpenTK.Platform.WindowHandle,OpenTK.Platform.IconHandle) + - OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetMaxClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) + - OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetMinClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) + - OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowMode) + - OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) + - OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) + - OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetTitle(OpenTK.Platform.WindowHandle,System.String) - OpenTK.Platform.Native.macOS.MacOSWindowComponent.SupportedEvents - OpenTK.Platform.Native.macOS.MacOSWindowComponent.SupportedModes - OpenTK.Platform.Native.macOS.MacOSWindowComponent.SupportedStyles @@ -73,15 +73,11 @@ items: fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent type: Class source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MacOSWindowComponent - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSWindowComponent.cs startLine: 15 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS syntax: content: 'public class MacOSWindowComponent : IWindowComponent, IPalComponent' @@ -89,8 +85,8 @@ items: inheritance: - System.Object implements: - - OpenTK.Core.Platform.IWindowComponent - - OpenTK.Core.Platform.IPalComponent + - OpenTK.Platform.IWindowComponent + - OpenTK.Platform.IPalComponent inheritedMembers: - System.Object.Equals(System.Object) - System.Object.Equals(System.Object,System.Object) @@ -111,15 +107,11 @@ items: fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.Name type: Property source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Name - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSWindowComponent.cs startLine: 190 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: Name of the abstraction layer component. example: [] @@ -131,7 +123,7 @@ items: content.vb: Public ReadOnly Property Name As String overload: OpenTK.Platform.Native.macOS.MacOSWindowComponent.Name* implements: - - OpenTK.Core.Platform.IPalComponent.Name + - OpenTK.Platform.IPalComponent.Name - uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.Provides commentId: P:OpenTK.Platform.Native.macOS.MacOSWindowComponent.Provides id: Provides @@ -144,15 +136,11 @@ items: fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.Provides type: Property source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Provides - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSWindowComponent.cs startLine: 193 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: Specifies which PAL components this object provides. example: [] @@ -160,11 +148,11 @@ items: content: public PalComponents Provides { get; } parameters: [] return: - type: OpenTK.Core.Platform.PalComponents + type: OpenTK.Platform.PalComponents content.vb: Public ReadOnly Property Provides As PalComponents overload: OpenTK.Platform.Native.macOS.MacOSWindowComponent.Provides* implements: - - OpenTK.Core.Platform.IPalComponent.Provides + - OpenTK.Platform.IPalComponent.Provides - uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.Logger commentId: P:OpenTK.Platform.Native.macOS.MacOSWindowComponent.Logger id: Logger @@ -177,15 +165,11 @@ items: fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.Logger type: Property source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Logger - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSWindowComponent.cs startLine: 196 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: Provides a logger for this component. example: [] @@ -197,28 +181,24 @@ items: content.vb: Public Property Logger As ILogger overload: OpenTK.Platform.Native.macOS.MacOSWindowComponent.Logger* implements: - - OpenTK.Core.Platform.IPalComponent.Logger -- uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - commentId: M:OpenTK.Platform.Native.macOS.MacOSWindowComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - id: Initialize(OpenTK.Core.Platform.ToolkitOptions) + - OpenTK.Platform.IPalComponent.Logger +- uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.Initialize(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Native.macOS.MacOSWindowComponent.Initialize(OpenTK.Platform.ToolkitOptions) + id: Initialize(OpenTK.Platform.ToolkitOptions) parent: OpenTK.Platform.Native.macOS.MacOSWindowComponent langs: - csharp - vb name: Initialize(ToolkitOptions) nameWithType: MacOSWindowComponent.Initialize(ToolkitOptions) - fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.Initialize(OpenTK.Platform.ToolkitOptions) type: Method source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Initialize - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSWindowComponent.cs startLine: 199 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: Initialize the component. example: [] @@ -226,12 +206,12 @@ items: content: public void Initialize(ToolkitOptions options) parameters: - id: options - type: OpenTK.Core.Platform.ToolkitOptions + type: OpenTK.Platform.ToolkitOptions description: The options to initialize the component with. content.vb: Public Sub Initialize(options As ToolkitOptions) overload: OpenTK.Platform.Native.macOS.MacOSWindowComponent.Initialize* implements: - - OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + - OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) - uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.CanSetIcon commentId: P:OpenTK.Platform.Native.macOS.MacOSWindowComponent.CanSetIcon id: CanSetIcon @@ -244,17 +224,13 @@ items: fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.CanSetIcon type: Property source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CanSetIcon - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSWindowComponent.cs startLine: 970 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS - summary: True when the driver supports setting the window icon. + summary: True when the driver supports setting the window icon using . example: [] syntax: content: public bool CanSetIcon { get; } @@ -263,8 +239,11 @@ items: type: System.Boolean content.vb: Public ReadOnly Property CanSetIcon As Boolean overload: OpenTK.Platform.Native.macOS.MacOSWindowComponent.CanSetIcon* + seealso: + - linkId: OpenTK.Platform.IWindowComponent.SetIcon(OpenTK.Platform.WindowHandle,OpenTK.Platform.IconHandle) + commentId: M:OpenTK.Platform.IWindowComponent.SetIcon(OpenTK.Platform.WindowHandle,OpenTK.Platform.IconHandle) implements: - - OpenTK.Core.Platform.IWindowComponent.CanSetIcon + - OpenTK.Platform.IWindowComponent.CanSetIcon - uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.CanGetDisplay commentId: P:OpenTK.Platform.Native.macOS.MacOSWindowComponent.CanGetDisplay id: CanGetDisplay @@ -277,17 +256,13 @@ items: fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.CanGetDisplay type: Property source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CanGetDisplay - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSWindowComponent.cs startLine: 973 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS - summary: True when the driver can provide the display the window is in. + summary: True when the driver can provide the display the window is in using . example: [] syntax: content: public bool CanGetDisplay { get; } @@ -296,8 +271,11 @@ items: type: System.Boolean content.vb: Public ReadOnly Property CanGetDisplay As Boolean overload: OpenTK.Platform.Native.macOS.MacOSWindowComponent.CanGetDisplay* + seealso: + - linkId: OpenTK.Platform.IWindowComponent.GetDisplay(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.GetDisplay(OpenTK.Platform.WindowHandle) implements: - - OpenTK.Core.Platform.IWindowComponent.CanGetDisplay + - OpenTK.Platform.IWindowComponent.CanGetDisplay - uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.CanSetCursor commentId: P:OpenTK.Platform.Native.macOS.MacOSWindowComponent.CanSetCursor id: CanSetCursor @@ -310,17 +288,13 @@ items: fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.CanSetCursor type: Property source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CanSetCursor - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSWindowComponent.cs startLine: 976 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS - summary: True when the driver supports setting the cursor of the window. + summary: True when the driver supports setting the cursor of the window using . example: [] syntax: content: public bool CanSetCursor { get; } @@ -329,8 +303,11 @@ items: type: System.Boolean content.vb: Public ReadOnly Property CanSetCursor As Boolean overload: OpenTK.Platform.Native.macOS.MacOSWindowComponent.CanSetCursor* + seealso: + - linkId: OpenTK.Platform.IWindowComponent.SetCursor(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorHandle) + commentId: M:OpenTK.Platform.IWindowComponent.SetCursor(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorHandle) implements: - - OpenTK.Core.Platform.IWindowComponent.CanSetCursor + - OpenTK.Platform.IWindowComponent.CanSetCursor - uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.CanCaptureCursor commentId: P:OpenTK.Platform.Native.macOS.MacOSWindowComponent.CanCaptureCursor id: CanCaptureCursor @@ -343,17 +320,13 @@ items: fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.CanCaptureCursor type: Property source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CanCaptureCursor - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSWindowComponent.cs startLine: 979 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS - summary: True when the driver supports capturing the cursor in a window. + summary: True when the driver supports capturing the cursor in a window using . example: [] syntax: content: public bool CanCaptureCursor { get; } @@ -362,8 +335,11 @@ items: type: System.Boolean content.vb: Public ReadOnly Property CanCaptureCursor As Boolean overload: OpenTK.Platform.Native.macOS.MacOSWindowComponent.CanCaptureCursor* + seealso: + - linkId: OpenTK.Platform.IWindowComponent.SetCursorCaptureMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorCaptureMode) + commentId: M:OpenTK.Platform.IWindowComponent.SetCursorCaptureMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorCaptureMode) implements: - - OpenTK.Core.Platform.IWindowComponent.CanCaptureCursor + - OpenTK.Platform.IWindowComponent.CanCaptureCursor - uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SupportedEvents commentId: P:OpenTK.Platform.Native.macOS.MacOSWindowComponent.SupportedEvents id: SupportedEvents @@ -376,15 +352,11 @@ items: fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SupportedEvents type: Property source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SupportedEvents - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSWindowComponent.cs startLine: 982 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: Read-only list of event types the driver supports. example: [] @@ -392,11 +364,11 @@ items: content: public IReadOnlyList SupportedEvents { get; } parameters: [] return: - type: System.Collections.Generic.IReadOnlyList{OpenTK.Core.Platform.PlatformEventType} + type: System.Collections.Generic.IReadOnlyList{OpenTK.Platform.PlatformEventType} content.vb: Public ReadOnly Property SupportedEvents As IReadOnlyList(Of PlatformEventType) overload: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SupportedEvents* implements: - - OpenTK.Core.Platform.IWindowComponent.SupportedEvents + - OpenTK.Platform.IWindowComponent.SupportedEvents - uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SupportedStyles commentId: P:OpenTK.Platform.Native.macOS.MacOSWindowComponent.SupportedStyles id: SupportedStyles @@ -409,15 +381,11 @@ items: fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SupportedStyles type: Property source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SupportedStyles - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSWindowComponent.cs startLine: 985 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: Read-only list of window styles the driver supports. example: [] @@ -425,11 +393,11 @@ items: content: public IReadOnlyList SupportedStyles { get; } parameters: [] return: - type: System.Collections.Generic.IReadOnlyList{OpenTK.Core.Platform.WindowBorderStyle} + type: System.Collections.Generic.IReadOnlyList{OpenTK.Platform.WindowBorderStyle} content.vb: Public ReadOnly Property SupportedStyles As IReadOnlyList(Of WindowBorderStyle) overload: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SupportedStyles* implements: - - OpenTK.Core.Platform.IWindowComponent.SupportedStyles + - OpenTK.Platform.IWindowComponent.SupportedStyles - uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SupportedModes commentId: P:OpenTK.Platform.Native.macOS.MacOSWindowComponent.SupportedModes id: SupportedModes @@ -442,15 +410,11 @@ items: fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SupportedModes type: Property source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SupportedModes - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSWindowComponent.cs startLine: 988 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: Read-only list of window modes the driver supports. example: [] @@ -458,11 +422,11 @@ items: content: public IReadOnlyList SupportedModes { get; } parameters: [] return: - type: System.Collections.Generic.IReadOnlyList{OpenTK.Core.Platform.WindowMode} + type: System.Collections.Generic.IReadOnlyList{OpenTK.Platform.WindowMode} content.vb: Public ReadOnly Property SupportedModes As IReadOnlyList(Of WindowMode) overload: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SupportedModes* implements: - - OpenTK.Core.Platform.IWindowComponent.SupportedModes + - OpenTK.Platform.IWindowComponent.SupportedModes - uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.ProcessEvents(System.Boolean) commentId: M:OpenTK.Platform.Native.macOS.MacOSWindowComponent.ProcessEvents(System.Boolean) id: ProcessEvents(System.Boolean) @@ -475,52 +439,44 @@ items: fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.ProcessEvents(bool) type: Method source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ProcessEvents - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSWindowComponent.cs startLine: 993 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS - summary: Processes platform events and sends them to the . + summary: Processes platform events and sends them to the . example: [] syntax: - content: public void ProcessEvents(bool waitForEvents = false) + content: public void ProcessEvents(bool waitForEvents) parameters: - id: waitForEvents type: System.Boolean description: Specifies if this function should wait for events or return immediately if there are no events. - content.vb: Public Sub ProcessEvents(waitForEvents As Boolean = False) + content.vb: Public Sub ProcessEvents(waitForEvents As Boolean) overload: OpenTK.Platform.Native.macOS.MacOSWindowComponent.ProcessEvents* implements: - - OpenTK.Core.Platform.IWindowComponent.ProcessEvents(System.Boolean) + - OpenTK.Platform.IWindowComponent.ProcessEvents(System.Boolean) nameWithType.vb: MacOSWindowComponent.ProcessEvents(Boolean) fullName.vb: OpenTK.Platform.Native.macOS.MacOSWindowComponent.ProcessEvents(Boolean) name.vb: ProcessEvents(Boolean) -- uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.Create(OpenTK.Core.Platform.GraphicsApiHints) - commentId: M:OpenTK.Platform.Native.macOS.MacOSWindowComponent.Create(OpenTK.Core.Platform.GraphicsApiHints) - id: Create(OpenTK.Core.Platform.GraphicsApiHints) +- uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.Create(OpenTK.Platform.GraphicsApiHints) + commentId: M:OpenTK.Platform.Native.macOS.MacOSWindowComponent.Create(OpenTK.Platform.GraphicsApiHints) + id: Create(OpenTK.Platform.GraphicsApiHints) parent: OpenTK.Platform.Native.macOS.MacOSWindowComponent langs: - csharp - vb name: Create(GraphicsApiHints) nameWithType: MacOSWindowComponent.Create(GraphicsApiHints) - fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.Create(OpenTK.Core.Platform.GraphicsApiHints) + fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.Create(OpenTK.Platform.GraphicsApiHints) type: Method source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Create - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSWindowComponent.cs startLine: 1338 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: Create a window object. example: [] @@ -528,44 +484,40 @@ items: content: public WindowHandle Create(GraphicsApiHints hints) parameters: - id: hints - type: OpenTK.Core.Platform.GraphicsApiHints + type: OpenTK.Platform.GraphicsApiHints description: Graphics API hints to be passed to the operating system. return: - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: Handle to the new window object. content.vb: Public Function Create(hints As GraphicsApiHints) As WindowHandle overload: OpenTK.Platform.Native.macOS.MacOSWindowComponent.Create* implements: - - OpenTK.Core.Platform.IWindowComponent.Create(OpenTK.Core.Platform.GraphicsApiHints) -- uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.Destroy(OpenTK.Core.Platform.WindowHandle) - commentId: M:OpenTK.Platform.Native.macOS.MacOSWindowComponent.Destroy(OpenTK.Core.Platform.WindowHandle) - id: Destroy(OpenTK.Core.Platform.WindowHandle) + - OpenTK.Platform.IWindowComponent.Create(OpenTK.Platform.GraphicsApiHints) +- uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.Destroy(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.Native.macOS.MacOSWindowComponent.Destroy(OpenTK.Platform.WindowHandle) + id: Destroy(OpenTK.Platform.WindowHandle) parent: OpenTK.Platform.Native.macOS.MacOSWindowComponent langs: - csharp - vb name: Destroy(WindowHandle) nameWithType: MacOSWindowComponent.Destroy(WindowHandle) - fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.Destroy(OpenTK.Core.Platform.WindowHandle) + fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.Destroy(OpenTK.Platform.WindowHandle) type: Method source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Destroy - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSWindowComponent.cs startLine: 1400 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS - summary: Destroy a window object. + summary: Destroy a window object. After a window has been destroyed the handle should no longer be used in any function other than . example: [] syntax: content: public void Destroy(WindowHandle handle) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: Handle to a window object. content.vb: Public Sub Destroy(handle As WindowHandle) overload: OpenTK.Platform.Native.macOS.MacOSWindowComponent.Destroy* @@ -574,65 +526,57 @@ items: commentId: T:System.ArgumentNullException description: handle is null. implements: - - OpenTK.Core.Platform.IWindowComponent.Destroy(OpenTK.Core.Platform.WindowHandle) -- uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.IsWindowDestroyed(OpenTK.Core.Platform.WindowHandle) - commentId: M:OpenTK.Platform.Native.macOS.MacOSWindowComponent.IsWindowDestroyed(OpenTK.Core.Platform.WindowHandle) - id: IsWindowDestroyed(OpenTK.Core.Platform.WindowHandle) + - OpenTK.Platform.IWindowComponent.Destroy(OpenTK.Platform.WindowHandle) +- uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.IsWindowDestroyed(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.Native.macOS.MacOSWindowComponent.IsWindowDestroyed(OpenTK.Platform.WindowHandle) + id: IsWindowDestroyed(OpenTK.Platform.WindowHandle) parent: OpenTK.Platform.Native.macOS.MacOSWindowComponent langs: - csharp - vb name: IsWindowDestroyed(WindowHandle) nameWithType: MacOSWindowComponent.IsWindowDestroyed(WindowHandle) - fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.IsWindowDestroyed(OpenTK.Core.Platform.WindowHandle) + fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.IsWindowDestroyed(OpenTK.Platform.WindowHandle) type: Method source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: IsWindowDestroyed - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSWindowComponent.cs startLine: 1422 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS - summary: Checks if has been called on this handle. + summary: Checks if has been called on this handle. example: [] syntax: content: public bool IsWindowDestroyed(WindowHandle handle) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: The window handle to check if it's destroyed or not. return: type: System.Boolean - description: If was called with the window handle. + description: If was called with the window handle. content.vb: Public Function IsWindowDestroyed(handle As WindowHandle) As Boolean overload: OpenTK.Platform.Native.macOS.MacOSWindowComponent.IsWindowDestroyed* implements: - - OpenTK.Core.Platform.IWindowComponent.IsWindowDestroyed(OpenTK.Core.Platform.WindowHandle) -- uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetTitle(OpenTK.Core.Platform.WindowHandle) - commentId: M:OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetTitle(OpenTK.Core.Platform.WindowHandle) - id: GetTitle(OpenTK.Core.Platform.WindowHandle) + - OpenTK.Platform.IWindowComponent.IsWindowDestroyed(OpenTK.Platform.WindowHandle) +- uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetTitle(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetTitle(OpenTK.Platform.WindowHandle) + id: GetTitle(OpenTK.Platform.WindowHandle) parent: OpenTK.Platform.Native.macOS.MacOSWindowComponent langs: - csharp - vb name: GetTitle(WindowHandle) nameWithType: MacOSWindowComponent.GetTitle(WindowHandle) - fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetTitle(OpenTK.Core.Platform.WindowHandle) + fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetTitle(OpenTK.Platform.WindowHandle) type: Method source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetTitle - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSWindowComponent.cs startLine: 1430 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: Get the title of a window. example: [] @@ -640,7 +584,7 @@ items: content: public string GetTitle(WindowHandle handle) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: Handle to a window. return: type: System.String @@ -652,28 +596,24 @@ items: commentId: T:System.ArgumentNullException description: handle is null. implements: - - OpenTK.Core.Platform.IWindowComponent.GetTitle(OpenTK.Core.Platform.WindowHandle) -- uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetTitle(OpenTK.Core.Platform.WindowHandle,System.String) - commentId: M:OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetTitle(OpenTK.Core.Platform.WindowHandle,System.String) - id: SetTitle(OpenTK.Core.Platform.WindowHandle,System.String) + - OpenTK.Platform.IWindowComponent.GetTitle(OpenTK.Platform.WindowHandle) +- uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetTitle(OpenTK.Platform.WindowHandle,System.String) + commentId: M:OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetTitle(OpenTK.Platform.WindowHandle,System.String) + id: SetTitle(OpenTK.Platform.WindowHandle,System.String) parent: OpenTK.Platform.Native.macOS.MacOSWindowComponent langs: - csharp - vb name: SetTitle(WindowHandle, string) nameWithType: MacOSWindowComponent.SetTitle(WindowHandle, string) - fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetTitle(OpenTK.Core.Platform.WindowHandle, string) + fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetTitle(OpenTK.Platform.WindowHandle, string) type: Method source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetTitle - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSWindowComponent.cs startLine: 1440 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: Set the title of a window. example: [] @@ -681,7 +621,7 @@ items: content: public void SetTitle(WindowHandle handle, string title) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: Handle to a window. - id: title type: System.String @@ -693,31 +633,27 @@ items: commentId: T:System.ArgumentNullException description: handle or title is null. implements: - - OpenTK.Core.Platform.IWindowComponent.SetTitle(OpenTK.Core.Platform.WindowHandle,System.String) + - OpenTK.Platform.IWindowComponent.SetTitle(OpenTK.Platform.WindowHandle,System.String) nameWithType.vb: MacOSWindowComponent.SetTitle(WindowHandle, String) - fullName.vb: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetTitle(OpenTK.Core.Platform.WindowHandle, String) + fullName.vb: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetTitle(OpenTK.Platform.WindowHandle, String) name.vb: SetTitle(WindowHandle, String) -- uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetIcon(OpenTK.Core.Platform.WindowHandle) - commentId: M:OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetIcon(OpenTK.Core.Platform.WindowHandle) - id: GetIcon(OpenTK.Core.Platform.WindowHandle) +- uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetIcon(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetIcon(OpenTK.Platform.WindowHandle) + id: GetIcon(OpenTK.Platform.WindowHandle) parent: OpenTK.Platform.Native.macOS.MacOSWindowComponent langs: - csharp - vb name: GetIcon(WindowHandle) nameWithType: MacOSWindowComponent.GetIcon(WindowHandle) - fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetIcon(OpenTK.Core.Platform.WindowHandle) + fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetIcon(OpenTK.Platform.WindowHandle) type: Method source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetIcon - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSWindowComponent.cs startLine: 1448 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: Get a handle to the window icon object. example: [] @@ -725,10 +661,10 @@ items: content: public IconHandle? GetIcon(WindowHandle handle) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: Handle to a window. return: - type: OpenTK.Core.Platform.IconHandle + type: OpenTK.Platform.IconHandle description: Handle to the windows icon object, or null if none is set. content.vb: Public Function GetIcon(handle As WindowHandle) As IconHandle overload: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetIcon* @@ -736,32 +672,28 @@ items: - type: System.ArgumentNullException commentId: T:System.ArgumentNullException description: handle is null. - - type: OpenTK.Core.Platform.PalNotImplementedException - commentId: T:OpenTK.Core.Platform.PalNotImplementedException - description: Driver does not support getting the window icon. See . + - type: OpenTK.Platform.PalNotImplementedException + commentId: T:OpenTK.Platform.PalNotImplementedException + description: Driver does not support getting the window icon. See . implements: - - OpenTK.Core.Platform.IWindowComponent.GetIcon(OpenTK.Core.Platform.WindowHandle) -- uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetIcon(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.IconHandle) - commentId: M:OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetIcon(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.IconHandle) - id: SetIcon(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.IconHandle) + - OpenTK.Platform.IWindowComponent.GetIcon(OpenTK.Platform.WindowHandle) +- uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetIcon(OpenTK.Platform.WindowHandle,OpenTK.Platform.IconHandle) + commentId: M:OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetIcon(OpenTK.Platform.WindowHandle,OpenTK.Platform.IconHandle) + id: SetIcon(OpenTK.Platform.WindowHandle,OpenTK.Platform.IconHandle) parent: OpenTK.Platform.Native.macOS.MacOSWindowComponent langs: - csharp - vb name: SetIcon(WindowHandle, IconHandle) nameWithType: MacOSWindowComponent.SetIcon(WindowHandle, IconHandle) - fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetIcon(OpenTK.Core.Platform.WindowHandle, OpenTK.Core.Platform.IconHandle) + fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetIcon(OpenTK.Platform.WindowHandle, OpenTK.Platform.IconHandle) type: Method source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetIcon - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSWindowComponent.cs startLine: 1456 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: Set window icon object handle. example: [] @@ -769,10 +701,10 @@ items: content: public void SetIcon(WindowHandle handle, IconHandle icon) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: Handle to a window. - id: icon - type: OpenTK.Core.Platform.IconHandle + type: OpenTK.Platform.IconHandle description: Handle to an icon object, or null to revert to default. content.vb: Public Sub SetIcon(handle As WindowHandle, icon As IconHandle) overload: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetIcon* @@ -780,63 +712,58 @@ items: - type: System.ArgumentNullException commentId: T:System.ArgumentNullException description: handle or icon is null. - - type: OpenTK.Core.Platform.PalNotImplementedException - commentId: T:OpenTK.Core.Platform.PalNotImplementedException - description: Driver does not support setting the window icon. See . + - type: OpenTK.Platform.PalNotImplementedException + commentId: T:OpenTK.Platform.PalNotImplementedException + description: Backend does not support setting the window icon. See . + seealso: + - linkId: OpenTK.Platform.IWindowComponent.CanSetIcon + commentId: P:OpenTK.Platform.IWindowComponent.CanSetIcon implements: - - OpenTK.Core.Platform.IWindowComponent.SetIcon(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.IconHandle) -- uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetDockIcon(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.IconHandle) - commentId: M:OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetDockIcon(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.IconHandle) - id: SetDockIcon(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.IconHandle) + - OpenTK.Platform.IWindowComponent.SetIcon(OpenTK.Platform.WindowHandle,OpenTK.Platform.IconHandle) +- uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetDockIcon(OpenTK.Platform.WindowHandle,OpenTK.Platform.IconHandle) + commentId: M:OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetDockIcon(OpenTK.Platform.WindowHandle,OpenTK.Platform.IconHandle) + id: SetDockIcon(OpenTK.Platform.WindowHandle,OpenTK.Platform.IconHandle) parent: OpenTK.Platform.Native.macOS.MacOSWindowComponent langs: - csharp - vb name: SetDockIcon(WindowHandle, IconHandle) nameWithType: MacOSWindowComponent.SetDockIcon(WindowHandle, IconHandle) - fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetDockIcon(OpenTK.Core.Platform.WindowHandle, OpenTK.Core.Platform.IconHandle) + fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetDockIcon(OpenTK.Platform.WindowHandle, OpenTK.Platform.IconHandle) type: Method source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetDockIcon - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSWindowComponent.cs startLine: 1468 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS syntax: content: public void SetDockIcon(WindowHandle handle, IconHandle icon) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle - id: icon - type: OpenTK.Core.Platform.IconHandle + type: OpenTK.Platform.IconHandle content.vb: Public Sub SetDockIcon(handle As WindowHandle, icon As IconHandle) overload: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetDockIcon* -- uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetPosition(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) - commentId: M:OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetPosition(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) - id: GetPosition(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) +- uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + commentId: M:OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + id: GetPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) parent: OpenTK.Platform.Native.macOS.MacOSWindowComponent langs: - csharp - vb name: GetPosition(WindowHandle, out int, out int) nameWithType: MacOSWindowComponent.GetPosition(WindowHandle, out int, out int) - fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetPosition(OpenTK.Core.Platform.WindowHandle, out int, out int) + fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetPosition(OpenTK.Platform.WindowHandle, out int, out int) type: Method source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetPosition - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSWindowComponent.cs startLine: 1497 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: Get the window position in display coordinates (top left origin). example: [] @@ -844,7 +771,7 @@ items: content: public void GetPosition(WindowHandle handle, out int x, out int y) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: Handle to a window. - id: x type: System.Int32 @@ -859,31 +786,27 @@ items: commentId: T:System.ArgumentNullException description: handle is null. implements: - - OpenTK.Core.Platform.IWindowComponent.GetPosition(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) + - OpenTK.Platform.IWindowComponent.GetPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) nameWithType.vb: MacOSWindowComponent.GetPosition(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetPosition(OpenTK.Core.Platform.WindowHandle, Integer, Integer) + fullName.vb: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetPosition(OpenTK.Platform.WindowHandle, Integer, Integer) name.vb: GetPosition(WindowHandle, Integer, Integer) -- uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetPosition(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) - commentId: M:OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetPosition(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) - id: SetPosition(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) +- uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) + commentId: M:OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) + id: SetPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) parent: OpenTK.Platform.Native.macOS.MacOSWindowComponent langs: - csharp - vb name: SetPosition(WindowHandle, int, int) nameWithType: MacOSWindowComponent.SetPosition(WindowHandle, int, int) - fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetPosition(OpenTK.Core.Platform.WindowHandle, int, int) + fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetPosition(OpenTK.Platform.WindowHandle, int, int) type: Method source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetPosition - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSWindowComponent.cs startLine: 1508 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: Set the window position in display coordinates (top left origin). example: [] @@ -891,7 +814,7 @@ items: content: public void SetPosition(WindowHandle handle, int x, int y) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: Handle to a window. - id: x type: System.Int32 @@ -906,31 +829,27 @@ items: commentId: T:System.ArgumentNullException description: handle is null. implements: - - OpenTK.Core.Platform.IWindowComponent.SetPosition(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) + - OpenTK.Platform.IWindowComponent.SetPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) nameWithType.vb: MacOSWindowComponent.SetPosition(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetPosition(OpenTK.Core.Platform.WindowHandle, Integer, Integer) + fullName.vb: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetPosition(OpenTK.Platform.WindowHandle, Integer, Integer) name.vb: SetPosition(WindowHandle, Integer, Integer) -- uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) - commentId: M:OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) - id: GetSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) +- uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + commentId: M:OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + id: GetSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) parent: OpenTK.Platform.Native.macOS.MacOSWindowComponent langs: - csharp - vb name: GetSize(WindowHandle, out int, out int) nameWithType: MacOSWindowComponent.GetSize(WindowHandle, out int, out int) - fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetSize(OpenTK.Core.Platform.WindowHandle, out int, out int) + fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetSize(OpenTK.Platform.WindowHandle, out int, out int) type: Method source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetSize - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSWindowComponent.cs startLine: 1519 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: Get the size of the window. example: [] @@ -938,7 +857,7 @@ items: content: public void GetSize(WindowHandle handle, out int width, out int height) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: Handle to a window. - id: width type: System.Int32 @@ -953,31 +872,27 @@ items: commentId: T:System.ArgumentNullException description: handle is null. implements: - - OpenTK.Core.Platform.IWindowComponent.GetSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) + - OpenTK.Platform.IWindowComponent.GetSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) nameWithType.vb: MacOSWindowComponent.GetSize(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetSize(OpenTK.Core.Platform.WindowHandle, Integer, Integer) + fullName.vb: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetSize(OpenTK.Platform.WindowHandle, Integer, Integer) name.vb: GetSize(WindowHandle, Integer, Integer) -- uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetSize(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) - commentId: M:OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetSize(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) - id: SetSize(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) +- uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) + commentId: M:OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) + id: SetSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) parent: OpenTK.Platform.Native.macOS.MacOSWindowComponent langs: - csharp - vb name: SetSize(WindowHandle, int, int) nameWithType: MacOSWindowComponent.SetSize(WindowHandle, int, int) - fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetSize(OpenTK.Core.Platform.WindowHandle, int, int) + fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetSize(OpenTK.Platform.WindowHandle, int, int) type: Method source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetSize - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSWindowComponent.cs startLine: 1531 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: Set the size of the window. example: [] @@ -985,7 +900,7 @@ items: content: public void SetSize(WindowHandle handle, int width, int height) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: Handle to a window. - id: width type: System.Int32 @@ -1000,31 +915,27 @@ items: commentId: T:System.ArgumentNullException description: handle is null. implements: - - OpenTK.Core.Platform.IWindowComponent.SetSize(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) + - OpenTK.Platform.IWindowComponent.SetSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) nameWithType.vb: MacOSWindowComponent.SetSize(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetSize(OpenTK.Core.Platform.WindowHandle, Integer, Integer) + fullName.vb: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetSize(OpenTK.Platform.WindowHandle, Integer, Integer) name.vb: SetSize(WindowHandle, Integer, Integer) -- uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetBounds(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) - commentId: M:OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetBounds(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) - id: GetBounds(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) +- uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetBounds(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) + commentId: M:OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetBounds(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) + id: GetBounds(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) parent: OpenTK.Platform.Native.macOS.MacOSWindowComponent langs: - csharp - vb name: GetBounds(WindowHandle, out int, out int, out int, out int) nameWithType: MacOSWindowComponent.GetBounds(WindowHandle, out int, out int, out int, out int) - fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetBounds(OpenTK.Core.Platform.WindowHandle, out int, out int, out int, out int) + fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetBounds(OpenTK.Platform.WindowHandle, out int, out int, out int, out int) type: Method source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetBounds - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSWindowComponent.cs startLine: 1544 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: Get the bounds of the window. example: [] @@ -1032,7 +943,7 @@ items: content: public void GetBounds(WindowHandle handle, out int x, out int y, out int width, out int height) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: Handle to a window. - id: x type: System.Int32 @@ -1049,31 +960,27 @@ items: content.vb: Public Sub GetBounds(handle As WindowHandle, x As Integer, y As Integer, width As Integer, height As Integer) overload: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetBounds* implements: - - OpenTK.Core.Platform.IWindowComponent.GetBounds(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) + - OpenTK.Platform.IWindowComponent.GetBounds(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) nameWithType.vb: MacOSWindowComponent.GetBounds(WindowHandle, Integer, Integer, Integer, Integer) - fullName.vb: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetBounds(OpenTK.Core.Platform.WindowHandle, Integer, Integer, Integer, Integer) + fullName.vb: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetBounds(OpenTK.Platform.WindowHandle, Integer, Integer, Integer, Integer) name.vb: GetBounds(WindowHandle, Integer, Integer, Integer, Integer) -- uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetBounds(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) - commentId: M:OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetBounds(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) - id: SetBounds(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) +- uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetBounds(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) + commentId: M:OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetBounds(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) + id: SetBounds(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) parent: OpenTK.Platform.Native.macOS.MacOSWindowComponent langs: - csharp - vb name: SetBounds(WindowHandle, int, int, int, int) nameWithType: MacOSWindowComponent.SetBounds(WindowHandle, int, int, int, int) - fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetBounds(OpenTK.Core.Platform.WindowHandle, int, int, int, int) + fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetBounds(OpenTK.Platform.WindowHandle, int, int, int, int) type: Method source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetBounds - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSWindowComponent.cs startLine: 1558 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: Set the bounds of the window. example: [] @@ -1081,7 +988,7 @@ items: content: public void SetBounds(WindowHandle handle, int x, int y, int width, int height) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: Handle to a window. - id: x type: System.Int32 @@ -1098,31 +1005,27 @@ items: content.vb: Public Sub SetBounds(handle As WindowHandle, x As Integer, y As Integer, width As Integer, height As Integer) overload: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetBounds* implements: - - OpenTK.Core.Platform.IWindowComponent.SetBounds(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) + - OpenTK.Platform.IWindowComponent.SetBounds(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) nameWithType.vb: MacOSWindowComponent.SetBounds(WindowHandle, Integer, Integer, Integer, Integer) - fullName.vb: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetBounds(OpenTK.Core.Platform.WindowHandle, Integer, Integer, Integer, Integer) + fullName.vb: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetBounds(OpenTK.Platform.WindowHandle, Integer, Integer, Integer, Integer) name.vb: SetBounds(WindowHandle, Integer, Integer, Integer, Integer) -- uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetClientPosition(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) - commentId: M:OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetClientPosition(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) - id: GetClientPosition(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) +- uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + commentId: M:OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + id: GetClientPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) parent: OpenTK.Platform.Native.macOS.MacOSWindowComponent langs: - csharp - vb name: GetClientPosition(WindowHandle, out int, out int) nameWithType: MacOSWindowComponent.GetClientPosition(WindowHandle, out int, out int) - fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetClientPosition(OpenTK.Core.Platform.WindowHandle, out int, out int) + fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle, out int, out int) type: Method source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetClientPosition - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSWindowComponent.cs startLine: 1575 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: Get the position of the client area (drawing area) of a window. example: [] @@ -1130,7 +1033,7 @@ items: content: public void GetClientPosition(WindowHandle handle, out int x, out int y) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: Handle to a window. - id: x type: System.Int32 @@ -1145,31 +1048,27 @@ items: commentId: T:System.ArgumentNullException description: handle is null. implements: - - OpenTK.Core.Platform.IWindowComponent.GetClientPosition(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) + - OpenTK.Platform.IWindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) nameWithType.vb: MacOSWindowComponent.GetClientPosition(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetClientPosition(OpenTK.Core.Platform.WindowHandle, Integer, Integer) + fullName.vb: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle, Integer, Integer) name.vb: GetClientPosition(WindowHandle, Integer, Integer) -- uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetClientPosition(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) - commentId: M:OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetClientPosition(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) - id: SetClientPosition(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) +- uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) + commentId: M:OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) + id: SetClientPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) parent: OpenTK.Platform.Native.macOS.MacOSWindowComponent langs: - csharp - vb name: SetClientPosition(WindowHandle, int, int) nameWithType: MacOSWindowComponent.SetClientPosition(WindowHandle, int, int) - fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetClientPosition(OpenTK.Core.Platform.WindowHandle, int, int) + fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle, int, int) type: Method source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetClientPosition - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSWindowComponent.cs startLine: 1588 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: Set the position of the client area (drawing area) of a window. example: [] @@ -1177,7 +1076,7 @@ items: content: public void SetClientPosition(WindowHandle handle, int x, int y) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: Handle to a window. - id: x type: System.Int32 @@ -1192,31 +1091,27 @@ items: commentId: T:System.ArgumentNullException description: handle is null. implements: - - OpenTK.Core.Platform.IWindowComponent.SetClientPosition(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) + - OpenTK.Platform.IWindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) nameWithType.vb: MacOSWindowComponent.SetClientPosition(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetClientPosition(OpenTK.Core.Platform.WindowHandle, Integer, Integer) + fullName.vb: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle, Integer, Integer) name.vb: SetClientPosition(WindowHandle, Integer, Integer) -- uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetClientSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) - commentId: M:OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetClientSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) - id: GetClientSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) +- uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetClientSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + commentId: M:OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetClientSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + id: GetClientSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) parent: OpenTK.Platform.Native.macOS.MacOSWindowComponent langs: - csharp - vb name: GetClientSize(WindowHandle, out int, out int) nameWithType: MacOSWindowComponent.GetClientSize(WindowHandle, out int, out int) - fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetClientSize(OpenTK.Core.Platform.WindowHandle, out int, out int) + fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetClientSize(OpenTK.Platform.WindowHandle, out int, out int) type: Method source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetClientSize - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSWindowComponent.cs startLine: 1604 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: Get the size of the client area (drawing area) of a window. example: [] @@ -1224,7 +1119,7 @@ items: content: public void GetClientSize(WindowHandle handle, out int width, out int height) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: Handle to a window. - id: width type: System.Int32 @@ -1239,31 +1134,27 @@ items: commentId: T:System.ArgumentNullException description: handle is null. implements: - - OpenTK.Core.Platform.IWindowComponent.GetClientSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) + - OpenTK.Platform.IWindowComponent.GetClientSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) nameWithType.vb: MacOSWindowComponent.GetClientSize(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetClientSize(OpenTK.Core.Platform.WindowHandle, Integer, Integer) + fullName.vb: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetClientSize(OpenTK.Platform.WindowHandle, Integer, Integer) name.vb: GetClientSize(WindowHandle, Integer, Integer) -- uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetClientSize(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) - commentId: M:OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetClientSize(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) - id: SetClientSize(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) +- uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetClientSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) + commentId: M:OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetClientSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) + id: SetClientSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) parent: OpenTK.Platform.Native.macOS.MacOSWindowComponent langs: - csharp - vb name: SetClientSize(WindowHandle, int, int) nameWithType: MacOSWindowComponent.SetClientSize(WindowHandle, int, int) - fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetClientSize(OpenTK.Core.Platform.WindowHandle, int, int) + fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetClientSize(OpenTK.Platform.WindowHandle, int, int) type: Method source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetClientSize - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSWindowComponent.cs startLine: 1617 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: Set the size of the client area (drawing area) of a window. example: [] @@ -1271,7 +1162,7 @@ items: content: public void SetClientSize(WindowHandle handle, int width, int height) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: Handle to a window. - id: width type: System.Int32 @@ -1286,31 +1177,27 @@ items: commentId: T:System.ArgumentNullException description: handle is null. implements: - - OpenTK.Core.Platform.IWindowComponent.SetClientSize(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) + - OpenTK.Platform.IWindowComponent.SetClientSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) nameWithType.vb: MacOSWindowComponent.SetClientSize(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetClientSize(OpenTK.Core.Platform.WindowHandle, Integer, Integer) + fullName.vb: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetClientSize(OpenTK.Platform.WindowHandle, Integer, Integer) name.vb: SetClientSize(WindowHandle, Integer, Integer) -- uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetClientBounds(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) - commentId: M:OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetClientBounds(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) - id: GetClientBounds(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) +- uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetClientBounds(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) + commentId: M:OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetClientBounds(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) + id: GetClientBounds(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) parent: OpenTK.Platform.Native.macOS.MacOSWindowComponent langs: - csharp - vb name: GetClientBounds(WindowHandle, out int, out int, out int, out int) nameWithType: MacOSWindowComponent.GetClientBounds(WindowHandle, out int, out int, out int, out int) - fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetClientBounds(OpenTK.Core.Platform.WindowHandle, out int, out int, out int, out int) + fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetClientBounds(OpenTK.Platform.WindowHandle, out int, out int, out int, out int) type: Method source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetClientBounds - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSWindowComponent.cs startLine: 1627 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: Get the client area bounds (drawing area) of a window. example: [] @@ -1318,7 +1205,7 @@ items: content: public void GetClientBounds(WindowHandle handle, out int x, out int y, out int width, out int height) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: Handle to a window. - id: x type: System.Int32 @@ -1335,31 +1222,27 @@ items: content.vb: Public Sub GetClientBounds(handle As WindowHandle, x As Integer, y As Integer, width As Integer, height As Integer) overload: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetClientBounds* implements: - - OpenTK.Core.Platform.IWindowComponent.GetClientBounds(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) + - OpenTK.Platform.IWindowComponent.GetClientBounds(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) nameWithType.vb: MacOSWindowComponent.GetClientBounds(WindowHandle, Integer, Integer, Integer, Integer) - fullName.vb: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetClientBounds(OpenTK.Core.Platform.WindowHandle, Integer, Integer, Integer, Integer) + fullName.vb: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetClientBounds(OpenTK.Platform.WindowHandle, Integer, Integer, Integer, Integer) name.vb: GetClientBounds(WindowHandle, Integer, Integer, Integer, Integer) -- uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetClientBounds(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) - commentId: M:OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetClientBounds(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) - id: SetClientBounds(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) +- uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetClientBounds(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) + commentId: M:OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetClientBounds(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) + id: SetClientBounds(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) parent: OpenTK.Platform.Native.macOS.MacOSWindowComponent langs: - csharp - vb name: SetClientBounds(WindowHandle, int, int, int, int) nameWithType: MacOSWindowComponent.SetClientBounds(WindowHandle, int, int, int, int) - fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetClientBounds(OpenTK.Core.Platform.WindowHandle, int, int, int, int) + fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetClientBounds(OpenTK.Platform.WindowHandle, int, int, int, int) type: Method source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetClientBounds - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSWindowComponent.cs startLine: 1643 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: Set the client area bounds (drawing area) of a window. example: [] @@ -1367,7 +1250,7 @@ items: content: public void SetClientBounds(WindowHandle handle, int x, int y, int width, int height) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: Handle to a window. - id: x type: System.Int32 @@ -1384,31 +1267,27 @@ items: content.vb: Public Sub SetClientBounds(handle As WindowHandle, x As Integer, y As Integer, width As Integer, height As Integer) overload: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetClientBounds* implements: - - OpenTK.Core.Platform.IWindowComponent.SetClientBounds(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) + - OpenTK.Platform.IWindowComponent.SetClientBounds(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) nameWithType.vb: MacOSWindowComponent.SetClientBounds(WindowHandle, Integer, Integer, Integer, Integer) - fullName.vb: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetClientBounds(OpenTK.Core.Platform.WindowHandle, Integer, Integer, Integer, Integer) + fullName.vb: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetClientBounds(OpenTK.Platform.WindowHandle, Integer, Integer, Integer, Integer) name.vb: SetClientBounds(WindowHandle, Integer, Integer, Integer, Integer) -- uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetFramebufferSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) - commentId: M:OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetFramebufferSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) - id: GetFramebufferSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) +- uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + commentId: M:OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + id: GetFramebufferSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) parent: OpenTK.Platform.Native.macOS.MacOSWindowComponent langs: - csharp - vb name: GetFramebufferSize(WindowHandle, out int, out int) nameWithType: MacOSWindowComponent.GetFramebufferSize(WindowHandle, out int, out int) - fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetFramebufferSize(OpenTK.Core.Platform.WindowHandle, out int, out int) + fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle, out int, out int) type: Method source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetFramebufferSize - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSWindowComponent.cs startLine: 1656 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: >- Get the size of the window framebuffer in pixels. @@ -1419,7 +1298,7 @@ items: content: public void GetFramebufferSize(WindowHandle handle, out int width, out int height) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: Handle to a window. - id: width type: System.Int32 @@ -1430,31 +1309,27 @@ items: content.vb: Public Sub GetFramebufferSize(handle As WindowHandle, width As Integer, height As Integer) overload: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetFramebufferSize* implements: - - OpenTK.Core.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) + - OpenTK.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) nameWithType.vb: MacOSWindowComponent.GetFramebufferSize(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetFramebufferSize(OpenTK.Core.Platform.WindowHandle, Integer, Integer) + fullName.vb: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle, Integer, Integer) name.vb: GetFramebufferSize(WindowHandle, Integer, Integer) -- uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetMaxClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) - commentId: M:OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetMaxClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) - id: GetMaxClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) +- uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetMaxClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) + commentId: M:OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetMaxClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) + id: GetMaxClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) parent: OpenTK.Platform.Native.macOS.MacOSWindowComponent langs: - csharp - vb name: GetMaxClientSize(WindowHandle, out int?, out int?) nameWithType: MacOSWindowComponent.GetMaxClientSize(WindowHandle, out int?, out int?) - fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetMaxClientSize(OpenTK.Core.Platform.WindowHandle, out int?, out int?) + fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetMaxClientSize(OpenTK.Platform.WindowHandle, out int?, out int?) type: Method source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetMaxClientSize - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSWindowComponent.cs startLine: 1668 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: Gets the maximum size of the client area. example: [] @@ -1462,7 +1337,7 @@ items: content: public void GetMaxClientSize(WindowHandle handle, out int? width, out int? height) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: Handle to a window. - id: width type: System.Nullable{System.Int32} @@ -1473,31 +1348,27 @@ items: content.vb: Public Sub GetMaxClientSize(handle As WindowHandle, width As Integer?, height As Integer?) overload: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetMaxClientSize* implements: - - OpenTK.Core.Platform.IWindowComponent.GetMaxClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) + - OpenTK.Platform.IWindowComponent.GetMaxClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) nameWithType.vb: MacOSWindowComponent.GetMaxClientSize(WindowHandle, Integer?, Integer?) - fullName.vb: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetMaxClientSize(OpenTK.Core.Platform.WindowHandle, Integer?, Integer?) + fullName.vb: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetMaxClientSize(OpenTK.Platform.WindowHandle, Integer?, Integer?) name.vb: GetMaxClientSize(WindowHandle, Integer?, Integer?) -- uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetMaxClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) - commentId: M:OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetMaxClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) - id: SetMaxClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) +- uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetMaxClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) + commentId: M:OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetMaxClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) + id: SetMaxClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) parent: OpenTK.Platform.Native.macOS.MacOSWindowComponent langs: - csharp - vb name: SetMaxClientSize(WindowHandle, int?, int?) nameWithType: MacOSWindowComponent.SetMaxClientSize(WindowHandle, int?, int?) - fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetMaxClientSize(OpenTK.Core.Platform.WindowHandle, int?, int?) + fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetMaxClientSize(OpenTK.Platform.WindowHandle, int?, int?) type: Method source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetMaxClientSize - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSWindowComponent.cs startLine: 1677 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: Sets the maximum size of the client area. example: [] @@ -1505,7 +1376,7 @@ items: content: public void SetMaxClientSize(WindowHandle handle, int? width, int? height) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: Handle to a window. - id: width type: System.Nullable{System.Int32} @@ -1516,31 +1387,27 @@ items: content.vb: Public Sub SetMaxClientSize(handle As WindowHandle, width As Integer?, height As Integer?) overload: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetMaxClientSize* implements: - - OpenTK.Core.Platform.IWindowComponent.SetMaxClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) + - OpenTK.Platform.IWindowComponent.SetMaxClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) nameWithType.vb: MacOSWindowComponent.SetMaxClientSize(WindowHandle, Integer?, Integer?) - fullName.vb: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetMaxClientSize(OpenTK.Core.Platform.WindowHandle, Integer?, Integer?) + fullName.vb: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetMaxClientSize(OpenTK.Platform.WindowHandle, Integer?, Integer?) name.vb: SetMaxClientSize(WindowHandle, Integer?, Integer?) -- uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetMinClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) - commentId: M:OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetMinClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) - id: GetMinClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) +- uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetMinClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) + commentId: M:OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetMinClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) + id: GetMinClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) parent: OpenTK.Platform.Native.macOS.MacOSWindowComponent langs: - csharp - vb name: GetMinClientSize(WindowHandle, out int?, out int?) nameWithType: MacOSWindowComponent.GetMinClientSize(WindowHandle, out int?, out int?) - fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetMinClientSize(OpenTK.Core.Platform.WindowHandle, out int?, out int?) + fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetMinClientSize(OpenTK.Platform.WindowHandle, out int?, out int?) type: Method source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetMinClientSize - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSWindowComponent.cs startLine: 1691 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: Gets the minimum size of the client area. example: [] @@ -1548,7 +1415,7 @@ items: content: public void GetMinClientSize(WindowHandle handle, out int? width, out int? height) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: Handle to a window. - id: width type: System.Nullable{System.Int32} @@ -1559,31 +1426,27 @@ items: content.vb: Public Sub GetMinClientSize(handle As WindowHandle, width As Integer?, height As Integer?) overload: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetMinClientSize* implements: - - OpenTK.Core.Platform.IWindowComponent.GetMinClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) + - OpenTK.Platform.IWindowComponent.GetMinClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) nameWithType.vb: MacOSWindowComponent.GetMinClientSize(WindowHandle, Integer?, Integer?) - fullName.vb: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetMinClientSize(OpenTK.Core.Platform.WindowHandle, Integer?, Integer?) + fullName.vb: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetMinClientSize(OpenTK.Platform.WindowHandle, Integer?, Integer?) name.vb: GetMinClientSize(WindowHandle, Integer?, Integer?) -- uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetMinClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) - commentId: M:OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetMinClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) - id: SetMinClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) +- uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetMinClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) + commentId: M:OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetMinClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) + id: SetMinClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) parent: OpenTK.Platform.Native.macOS.MacOSWindowComponent langs: - csharp - vb name: SetMinClientSize(WindowHandle, int?, int?) nameWithType: MacOSWindowComponent.SetMinClientSize(WindowHandle, int?, int?) - fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetMinClientSize(OpenTK.Core.Platform.WindowHandle, int?, int?) + fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetMinClientSize(OpenTK.Platform.WindowHandle, int?, int?) type: Method source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetMinClientSize - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSWindowComponent.cs startLine: 1700 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: Sets the minimum size of the client area. example: [] @@ -1591,7 +1454,7 @@ items: content: public void SetMinClientSize(WindowHandle handle, int? width, int? height) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: Handle to a window. - id: width type: System.Nullable{System.Int32} @@ -1602,31 +1465,27 @@ items: content.vb: Public Sub SetMinClientSize(handle As WindowHandle, width As Integer?, height As Integer?) overload: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetMinClientSize* implements: - - OpenTK.Core.Platform.IWindowComponent.SetMinClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) + - OpenTK.Platform.IWindowComponent.SetMinClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) nameWithType.vb: MacOSWindowComponent.SetMinClientSize(WindowHandle, Integer?, Integer?) - fullName.vb: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetMinClientSize(OpenTK.Core.Platform.WindowHandle, Integer?, Integer?) + fullName.vb: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetMinClientSize(OpenTK.Platform.WindowHandle, Integer?, Integer?) name.vb: SetMinClientSize(WindowHandle, Integer?, Integer?) -- uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetDisplay(OpenTK.Core.Platform.WindowHandle) - commentId: M:OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetDisplay(OpenTK.Core.Platform.WindowHandle) - id: GetDisplay(OpenTK.Core.Platform.WindowHandle) +- uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetDisplay(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetDisplay(OpenTK.Platform.WindowHandle) + id: GetDisplay(OpenTK.Platform.WindowHandle) parent: OpenTK.Platform.Native.macOS.MacOSWindowComponent langs: - csharp - vb name: GetDisplay(WindowHandle) nameWithType: MacOSWindowComponent.GetDisplay(WindowHandle) - fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetDisplay(OpenTK.Core.Platform.WindowHandle) + fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetDisplay(OpenTK.Platform.WindowHandle) type: Method source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetDisplay - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSWindowComponent.cs startLine: 1714 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: Get the display handle a window is in. example: [] @@ -1634,10 +1493,10 @@ items: content: public DisplayHandle GetDisplay(WindowHandle handle) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: Handle to a window. return: - type: OpenTK.Core.Platform.DisplayHandle + type: OpenTK.Platform.DisplayHandle description: The display handle the window is in. content.vb: Public Function GetDisplay(handle As WindowHandle) As DisplayHandle overload: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetDisplay* @@ -1645,32 +1504,31 @@ items: - type: System.ArgumentNullException commentId: T:System.ArgumentNullException description: handle is null. - - type: OpenTK.Core.Platform.PalNotImplementedException - commentId: T:OpenTK.Core.Platform.PalNotImplementedException - description: Driver does not support finding the window display. . + - type: OpenTK.Platform.PalNotImplementedException + commentId: T:OpenTK.Platform.PalNotImplementedException + description: Backend does not support finding the window display. . + seealso: + - linkId: OpenTK.Platform.IWindowComponent.CanGetDisplay + commentId: P:OpenTK.Platform.IWindowComponent.CanGetDisplay implements: - - OpenTK.Core.Platform.IWindowComponent.GetDisplay(OpenTK.Core.Platform.WindowHandle) -- uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetMode(OpenTK.Core.Platform.WindowHandle) - commentId: M:OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetMode(OpenTK.Core.Platform.WindowHandle) - id: GetMode(OpenTK.Core.Platform.WindowHandle) + - OpenTK.Platform.IWindowComponent.GetDisplay(OpenTK.Platform.WindowHandle) +- uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetMode(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetMode(OpenTK.Platform.WindowHandle) + id: GetMode(OpenTK.Platform.WindowHandle) parent: OpenTK.Platform.Native.macOS.MacOSWindowComponent langs: - csharp - vb name: GetMode(WindowHandle) nameWithType: MacOSWindowComponent.GetMode(WindowHandle) - fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetMode(OpenTK.Core.Platform.WindowHandle) + fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetMode(OpenTK.Platform.WindowHandle) type: Method source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetMode - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSWindowComponent.cs startLine: 1790 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: Get the mode of a window. example: [] @@ -1678,10 +1536,10 @@ items: content: public WindowMode GetMode(WindowHandle handle) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: Handle to a window. return: - type: OpenTK.Core.Platform.WindowMode + type: OpenTK.Platform.WindowMode description: The mode of the window. content.vb: Public Function GetMode(handle As WindowHandle) As WindowMode overload: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetMode* @@ -1690,47 +1548,43 @@ items: commentId: T:System.ArgumentNullException description: handle is null. implements: - - OpenTK.Core.Platform.IWindowComponent.GetMode(OpenTK.Core.Platform.WindowHandle) -- uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetMode(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.WindowMode) - commentId: M:OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetMode(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.WindowMode) - id: SetMode(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.WindowMode) + - OpenTK.Platform.IWindowComponent.GetMode(OpenTK.Platform.WindowHandle) +- uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowMode) + commentId: M:OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowMode) + id: SetMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowMode) parent: OpenTK.Platform.Native.macOS.MacOSWindowComponent langs: - csharp - vb name: SetMode(WindowHandle, WindowMode) nameWithType: MacOSWindowComponent.SetMode(WindowHandle, WindowMode) - fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetMode(OpenTK.Core.Platform.WindowHandle, OpenTK.Core.Platform.WindowMode) + fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetMode(OpenTK.Platform.WindowHandle, OpenTK.Platform.WindowMode) type: Method source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetMode - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSWindowComponent.cs startLine: 1818 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: Set the mode of a window. remarks: >- - Setting or + Setting or will make the window fullscreen in the nearest monitor to the window location. - Use or + Use or - to explicitly set the monitor. + to explicitly set the monitor. example: [] syntax: content: public void SetMode(WindowHandle handle, WindowMode mode) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: Handle to a window. - id: mode - type: OpenTK.Core.Platform.WindowMode + type: OpenTK.Platform.WindowMode description: The new mode of the window. content.vb: Public Sub SetMode(handle As WindowHandle, mode As WindowMode) overload: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetMode* @@ -1741,32 +1595,28 @@ items: - type: System.ArgumentOutOfRangeException commentId: T:System.ArgumentOutOfRangeException description: mode is an invalid value. - - type: OpenTK.Core.Platform.PalNotImplementedException - commentId: T:OpenTK.Core.Platform.PalNotImplementedException - description: Driver does not support the value set by mode. See . + - type: OpenTK.Platform.PalNotImplementedException + commentId: T:OpenTK.Platform.PalNotImplementedException + description: Driver does not support the value set by mode. See . implements: - - OpenTK.Core.Platform.IWindowComponent.SetMode(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.WindowMode) -- uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetFullscreenDisplayNoSpace(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle) - commentId: M:OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetFullscreenDisplayNoSpace(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle) - id: SetFullscreenDisplayNoSpace(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle) + - OpenTK.Platform.IWindowComponent.SetMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowMode) +- uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetFullscreenDisplayNoSpace(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle) + commentId: M:OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetFullscreenDisplayNoSpace(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle) + id: SetFullscreenDisplayNoSpace(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle) parent: OpenTK.Platform.Native.macOS.MacOSWindowComponent langs: - csharp - vb name: SetFullscreenDisplayNoSpace(WindowHandle, DisplayHandle?) nameWithType: MacOSWindowComponent.SetFullscreenDisplayNoSpace(WindowHandle, DisplayHandle?) - fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetFullscreenDisplayNoSpace(OpenTK.Core.Platform.WindowHandle, OpenTK.Core.Platform.DisplayHandle?) + fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetFullscreenDisplayNoSpace(OpenTK.Platform.WindowHandle, OpenTK.Platform.DisplayHandle?) type: Method source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetFullscreenDisplayNoSpace - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSWindowComponent.cs startLine: 1945 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: >- Put a window into 'windowed fullscreen' on a specific display without creating a space for it. @@ -1777,126 +1627,114 @@ items: content: public void SetFullscreenDisplayNoSpace(WindowHandle window, DisplayHandle? display) parameters: - id: window - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: The window to make fullscreen. - id: display - type: OpenTK.Core.Platform.DisplayHandle + type: OpenTK.Platform.DisplayHandle description: The display to make the window fullscreen on. content.vb: Public Sub SetFullscreenDisplayNoSpace(window As WindowHandle, display As DisplayHandle) overload: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetFullscreenDisplayNoSpace* nameWithType.vb: MacOSWindowComponent.SetFullscreenDisplayNoSpace(WindowHandle, DisplayHandle) - fullName.vb: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetFullscreenDisplayNoSpace(OpenTK.Core.Platform.WindowHandle, OpenTK.Core.Platform.DisplayHandle) + fullName.vb: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetFullscreenDisplayNoSpace(OpenTK.Platform.WindowHandle, OpenTK.Platform.DisplayHandle) name.vb: SetFullscreenDisplayNoSpace(WindowHandle, DisplayHandle) -- uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle) - commentId: M:OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle) - id: SetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle) +- uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle) + commentId: M:OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle) + id: SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle) parent: OpenTK.Platform.Native.macOS.MacOSWindowComponent langs: - csharp - vb name: SetFullscreenDisplay(WindowHandle, DisplayHandle?) nameWithType: MacOSWindowComponent.SetFullscreenDisplay(WindowHandle, DisplayHandle?) - fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle, OpenTK.Core.Platform.DisplayHandle?) + fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle, OpenTK.Platform.DisplayHandle?) type: Method source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetFullscreenDisplay - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSWindowComponent.cs startLine: 1982 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: >- Put a window into 'windowed fullscreen' on a specified display or the display the window is displayed on. If display is null then the window will be made fullscreen on the 'nearest' display. - remarks: To make an 'exclusive fullscreen' window see . + remarks: To make an 'exclusive fullscreen' window see . example: [] syntax: content: public void SetFullscreenDisplay(WindowHandle handle, DisplayHandle? display) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: The window to make fullscreen. - id: display - type: OpenTK.Core.Platform.DisplayHandle + type: OpenTK.Platform.DisplayHandle description: The display to make the window fullscreen on. content.vb: Public Sub SetFullscreenDisplay(handle As WindowHandle, display As DisplayHandle) overload: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetFullscreenDisplay* implements: - - OpenTK.Core.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle) + - OpenTK.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle) nameWithType.vb: MacOSWindowComponent.SetFullscreenDisplay(WindowHandle, DisplayHandle) - fullName.vb: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle, OpenTK.Core.Platform.DisplayHandle) + fullName.vb: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle, OpenTK.Platform.DisplayHandle) name.vb: SetFullscreenDisplay(WindowHandle, DisplayHandle) -- uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle,OpenTK.Core.Platform.VideoMode) - commentId: M:OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle,OpenTK.Core.Platform.VideoMode) - id: SetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle,OpenTK.Core.Platform.VideoMode) +- uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle,OpenTK.Platform.VideoMode) + commentId: M:OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle,OpenTK.Platform.VideoMode) + id: SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle,OpenTK.Platform.VideoMode) parent: OpenTK.Platform.Native.macOS.MacOSWindowComponent langs: - csharp - vb name: SetFullscreenDisplay(WindowHandle, DisplayHandle, VideoMode) nameWithType: MacOSWindowComponent.SetFullscreenDisplay(WindowHandle, DisplayHandle, VideoMode) - fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle, OpenTK.Core.Platform.DisplayHandle, OpenTK.Core.Platform.VideoMode) + fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle, OpenTK.Platform.DisplayHandle, OpenTK.Platform.VideoMode) type: Method source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetFullscreenDisplay - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSWindowComponent.cs startLine: 2006 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: >- Put a window into 'exclusive fullscreen' on a specified display and change the video mode to the specified video mode. - Only video modes accuired using + Only video modes accuired using are expected to work. - remarks: To make an 'windowed fullscreen' window see . + remarks: To make an 'windowed fullscreen' window see . example: [] syntax: content: public void SetFullscreenDisplay(WindowHandle window, DisplayHandle display, VideoMode videoMode) parameters: - id: window - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle - id: display - type: OpenTK.Core.Platform.DisplayHandle + type: OpenTK.Platform.DisplayHandle description: The display to make the window fullscreen on. - id: videoMode - type: OpenTK.Core.Platform.VideoMode + type: OpenTK.Platform.VideoMode description: The video mode to use when making the window fullscreen. content.vb: Public Sub SetFullscreenDisplay(window As WindowHandle, display As DisplayHandle, videoMode As VideoMode) overload: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetFullscreenDisplay* implements: - - OpenTK.Core.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle,OpenTK.Core.Platform.VideoMode) -- uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle@) - commentId: M:OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle@) - id: GetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle@) + - OpenTK.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle,OpenTK.Platform.VideoMode) +- uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle@) + commentId: M:OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle@) + id: GetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle@) parent: OpenTK.Platform.Native.macOS.MacOSWindowComponent langs: - csharp - vb name: GetFullscreenDisplay(WindowHandle, out DisplayHandle?) nameWithType: MacOSWindowComponent.GetFullscreenDisplay(WindowHandle, out DisplayHandle?) - fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle, out OpenTK.Core.Platform.DisplayHandle?) + fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetFullscreenDisplay(OpenTK.Platform.WindowHandle, out OpenTK.Platform.DisplayHandle?) type: Method source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetFullscreenDisplay - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSWindowComponent.cs startLine: 2012 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: Gets the display that the specified window is fullscreen on, if the window is fullscreen. example: [] @@ -1904,9 +1742,9 @@ items: content: public bool GetFullscreenDisplay(WindowHandle window, out DisplayHandle? display) parameters: - id: window - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle - id: display - type: OpenTK.Core.Platform.DisplayHandle + type: OpenTK.Platform.DisplayHandle description: The display where the window is fullscreen or null if the window is not fullscreen. return: type: System.Boolean @@ -1914,31 +1752,27 @@ items: content.vb: Public Function GetFullscreenDisplay(window As WindowHandle, display As DisplayHandle) As Boolean overload: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetFullscreenDisplay* implements: - - OpenTK.Core.Platform.IWindowComponent.GetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle@) + - OpenTK.Platform.IWindowComponent.GetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle@) nameWithType.vb: MacOSWindowComponent.GetFullscreenDisplay(WindowHandle, DisplayHandle) - fullName.vb: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle, OpenTK.Core.Platform.DisplayHandle) + fullName.vb: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetFullscreenDisplay(OpenTK.Platform.WindowHandle, OpenTK.Platform.DisplayHandle) name.vb: GetFullscreenDisplay(WindowHandle, DisplayHandle) -- uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetBorderStyle(OpenTK.Core.Platform.WindowHandle) - commentId: M:OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetBorderStyle(OpenTK.Core.Platform.WindowHandle) - id: GetBorderStyle(OpenTK.Core.Platform.WindowHandle) +- uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetBorderStyle(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetBorderStyle(OpenTK.Platform.WindowHandle) + id: GetBorderStyle(OpenTK.Platform.WindowHandle) parent: OpenTK.Platform.Native.macOS.MacOSWindowComponent langs: - csharp - vb name: GetBorderStyle(WindowHandle) nameWithType: MacOSWindowComponent.GetBorderStyle(WindowHandle) - fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetBorderStyle(OpenTK.Core.Platform.WindowHandle) + fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetBorderStyle(OpenTK.Platform.WindowHandle) type: Method source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetBorderStyle - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSWindowComponent.cs startLine: 2020 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: Get the border style of a window. example: [] @@ -1946,10 +1780,10 @@ items: content: public WindowBorderStyle GetBorderStyle(WindowHandle handle) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: Handle to window. return: - type: OpenTK.Core.Platform.WindowBorderStyle + type: OpenTK.Platform.WindowBorderStyle description: The border style of the window. content.vb: Public Function GetBorderStyle(handle As WindowHandle) As WindowBorderStyle overload: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetBorderStyle* @@ -1958,28 +1792,24 @@ items: commentId: T:System.ArgumentNullException description: handle is null. implements: - - OpenTK.Core.Platform.IWindowComponent.GetBorderStyle(OpenTK.Core.Platform.WindowHandle) -- uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetBorderStyle(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.WindowBorderStyle) - commentId: M:OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetBorderStyle(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.WindowBorderStyle) - id: SetBorderStyle(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.WindowBorderStyle) + - OpenTK.Platform.IWindowComponent.GetBorderStyle(OpenTK.Platform.WindowHandle) +- uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetBorderStyle(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowBorderStyle) + commentId: M:OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetBorderStyle(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowBorderStyle) + id: SetBorderStyle(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowBorderStyle) parent: OpenTK.Platform.Native.macOS.MacOSWindowComponent langs: - csharp - vb name: SetBorderStyle(WindowHandle, WindowBorderStyle) nameWithType: MacOSWindowComponent.SetBorderStyle(WindowHandle, WindowBorderStyle) - fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetBorderStyle(OpenTK.Core.Platform.WindowHandle, OpenTK.Core.Platform.WindowBorderStyle) + fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetBorderStyle(OpenTK.Platform.WindowHandle, OpenTK.Platform.WindowBorderStyle) type: Method source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetBorderStyle - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSWindowComponent.cs startLine: 2046 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: Set the border style of a window. example: [] @@ -1987,10 +1817,10 @@ items: content: public void SetBorderStyle(WindowHandle handle, WindowBorderStyle style) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: Handle to a window. - id: style - type: OpenTK.Core.Platform.WindowBorderStyle + type: OpenTK.Platform.WindowBorderStyle description: The new border style of the window. content.vb: Public Sub SetBorderStyle(handle As WindowHandle, style As WindowBorderStyle) overload: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetBorderStyle* @@ -2001,32 +1831,28 @@ items: - type: System.ArgumentOutOfRangeException commentId: T:System.ArgumentOutOfRangeException description: style is an invalid value. - - type: OpenTK.Core.Platform.PalNotImplementedException - commentId: T:OpenTK.Core.Platform.PalNotImplementedException - description: Driver does not support the value set by style. See . + - type: OpenTK.Platform.PalNotImplementedException + commentId: T:OpenTK.Platform.PalNotImplementedException + description: Driver does not support the value set by style. See . implements: - - OpenTK.Core.Platform.IWindowComponent.SetBorderStyle(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.WindowBorderStyle) -- uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetAlwaysOnTop(OpenTK.Core.Platform.WindowHandle,System.Boolean) - commentId: M:OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetAlwaysOnTop(OpenTK.Core.Platform.WindowHandle,System.Boolean) - id: SetAlwaysOnTop(OpenTK.Core.Platform.WindowHandle,System.Boolean) + - OpenTK.Platform.IWindowComponent.SetBorderStyle(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowBorderStyle) +- uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetAlwaysOnTop(OpenTK.Platform.WindowHandle,System.Boolean) + commentId: M:OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetAlwaysOnTop(OpenTK.Platform.WindowHandle,System.Boolean) + id: SetAlwaysOnTop(OpenTK.Platform.WindowHandle,System.Boolean) parent: OpenTK.Platform.Native.macOS.MacOSWindowComponent langs: - csharp - vb name: SetAlwaysOnTop(WindowHandle, bool) nameWithType: MacOSWindowComponent.SetAlwaysOnTop(WindowHandle, bool) - fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetAlwaysOnTop(OpenTK.Core.Platform.WindowHandle, bool) + fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetAlwaysOnTop(OpenTK.Platform.WindowHandle, bool) type: Method source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetAlwaysOnTop - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSWindowComponent.cs startLine: 2096 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: Set if the window is an always on top window or not. example: [] @@ -2034,7 +1860,7 @@ items: content: public void SetAlwaysOnTop(WindowHandle handle, bool floating) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: A handle to the window to make always on top. - id: floating type: System.Boolean @@ -2042,31 +1868,27 @@ items: content.vb: Public Sub SetAlwaysOnTop(handle As WindowHandle, floating As Boolean) overload: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetAlwaysOnTop* implements: - - OpenTK.Core.Platform.IWindowComponent.SetAlwaysOnTop(OpenTK.Core.Platform.WindowHandle,System.Boolean) + - OpenTK.Platform.IWindowComponent.SetAlwaysOnTop(OpenTK.Platform.WindowHandle,System.Boolean) nameWithType.vb: MacOSWindowComponent.SetAlwaysOnTop(WindowHandle, Boolean) - fullName.vb: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetAlwaysOnTop(OpenTK.Core.Platform.WindowHandle, Boolean) + fullName.vb: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetAlwaysOnTop(OpenTK.Platform.WindowHandle, Boolean) name.vb: SetAlwaysOnTop(WindowHandle, Boolean) -- uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.IsAlwaysOnTop(OpenTK.Core.Platform.WindowHandle) - commentId: M:OpenTK.Platform.Native.macOS.MacOSWindowComponent.IsAlwaysOnTop(OpenTK.Core.Platform.WindowHandle) - id: IsAlwaysOnTop(OpenTK.Core.Platform.WindowHandle) +- uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.IsAlwaysOnTop(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.Native.macOS.MacOSWindowComponent.IsAlwaysOnTop(OpenTK.Platform.WindowHandle) + id: IsAlwaysOnTop(OpenTK.Platform.WindowHandle) parent: OpenTK.Platform.Native.macOS.MacOSWindowComponent langs: - csharp - vb name: IsAlwaysOnTop(WindowHandle) nameWithType: MacOSWindowComponent.IsAlwaysOnTop(WindowHandle) - fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.IsAlwaysOnTop(OpenTK.Core.Platform.WindowHandle) + fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.IsAlwaysOnTop(OpenTK.Platform.WindowHandle) type: Method source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: IsAlwaysOnTop - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSWindowComponent.cs startLine: 2111 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: Gets if the current window is always on top or not. example: [] @@ -2074,7 +1896,7 @@ items: content: public bool IsAlwaysOnTop(WindowHandle handle) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: A handle to the window to get whether or not is always on top. return: type: System.Boolean @@ -2082,28 +1904,24 @@ items: content.vb: Public Function IsAlwaysOnTop(handle As WindowHandle) As Boolean overload: OpenTK.Platform.Native.macOS.MacOSWindowComponent.IsAlwaysOnTop* implements: - - OpenTK.Core.Platform.IWindowComponent.IsAlwaysOnTop(OpenTK.Core.Platform.WindowHandle) -- uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetHitTestCallback(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.HitTest) - commentId: M:OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetHitTestCallback(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.HitTest) - id: SetHitTestCallback(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.HitTest) + - OpenTK.Platform.IWindowComponent.IsAlwaysOnTop(OpenTK.Platform.WindowHandle) +- uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetHitTestCallback(OpenTK.Platform.WindowHandle,OpenTK.Platform.HitTest) + commentId: M:OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetHitTestCallback(OpenTK.Platform.WindowHandle,OpenTK.Platform.HitTest) + id: SetHitTestCallback(OpenTK.Platform.WindowHandle,OpenTK.Platform.HitTest) parent: OpenTK.Platform.Native.macOS.MacOSWindowComponent langs: - csharp - vb name: SetHitTestCallback(WindowHandle, HitTest?) nameWithType: MacOSWindowComponent.SetHitTestCallback(WindowHandle, HitTest?) - fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetHitTestCallback(OpenTK.Core.Platform.WindowHandle, OpenTK.Core.Platform.HitTest?) + fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetHitTestCallback(OpenTK.Platform.WindowHandle, OpenTK.Platform.HitTest?) type: Method source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetHitTestCallback - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSWindowComponent.cs startLine: 2128 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: >- Sets a delegate that is used for hit testing. @@ -2121,39 +1939,35 @@ items: content: public void SetHitTestCallback(WindowHandle handle, HitTest? test) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: The window for which this hit test delegate should be used for. - id: test - type: OpenTK.Core.Platform.HitTest + type: OpenTK.Platform.HitTest description: The hit test delegate. content.vb: Public Sub SetHitTestCallback(handle As WindowHandle, test As HitTest) overload: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetHitTestCallback* implements: - - OpenTK.Core.Platform.IWindowComponent.SetHitTestCallback(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.HitTest) + - OpenTK.Platform.IWindowComponent.SetHitTestCallback(OpenTK.Platform.WindowHandle,OpenTK.Platform.HitTest) nameWithType.vb: MacOSWindowComponent.SetHitTestCallback(WindowHandle, HitTest) - fullName.vb: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetHitTestCallback(OpenTK.Core.Platform.WindowHandle, OpenTK.Core.Platform.HitTest) + fullName.vb: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetHitTestCallback(OpenTK.Platform.WindowHandle, OpenTK.Platform.HitTest) name.vb: SetHitTestCallback(WindowHandle, HitTest) -- uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetCursor(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.CursorHandle) - commentId: M:OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetCursor(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.CursorHandle) - id: SetCursor(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.CursorHandle) +- uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetCursor(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorHandle) + commentId: M:OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetCursor(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorHandle) + id: SetCursor(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorHandle) parent: OpenTK.Platform.Native.macOS.MacOSWindowComponent langs: - csharp - vb name: SetCursor(WindowHandle, CursorHandle?) nameWithType: MacOSWindowComponent.SetCursor(WindowHandle, CursorHandle?) - fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetCursor(OpenTK.Core.Platform.WindowHandle, OpenTK.Core.Platform.CursorHandle?) + fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetCursor(OpenTK.Platform.WindowHandle, OpenTK.Platform.CursorHandle?) type: Method source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetCursor - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSWindowComponent.cs startLine: 2143 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: Set the cursor object for a window. example: [] @@ -2161,10 +1975,10 @@ items: content: public void SetCursor(WindowHandle handle, CursorHandle? cursor) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: Handle to a window. - id: cursor - type: OpenTK.Core.Platform.CursorHandle + type: OpenTK.Platform.CursorHandle description: Handle to a cursor object, or null for hidden cursor. content.vb: Public Sub SetCursor(handle As WindowHandle, cursor As CursorHandle) overload: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetCursor* @@ -2172,72 +1986,67 @@ items: - type: System.ArgumentNullException commentId: T:System.ArgumentNullException description: handle is null. - - type: OpenTK.Core.Platform.PalNotImplementedException - commentId: T:OpenTK.Core.Platform.PalNotImplementedException - description: Driver does not support setting the window mouse cursor. See . + - type: OpenTK.Platform.PalNotImplementedException + commentId: T:OpenTK.Platform.PalNotImplementedException + description: Backend does not support setting the window mouse cursor. See . + seealso: + - linkId: OpenTK.Platform.IWindowComponent.CanSetCursor + commentId: P:OpenTK.Platform.IWindowComponent.CanSetCursor implements: - - OpenTK.Core.Platform.IWindowComponent.SetCursor(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.CursorHandle) + - OpenTK.Platform.IWindowComponent.SetCursor(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorHandle) nameWithType.vb: MacOSWindowComponent.SetCursor(WindowHandle, CursorHandle) - fullName.vb: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetCursor(OpenTK.Core.Platform.WindowHandle, OpenTK.Core.Platform.CursorHandle) + fullName.vb: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetCursor(OpenTK.Platform.WindowHandle, OpenTK.Platform.CursorHandle) name.vb: SetCursor(WindowHandle, CursorHandle) -- uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetCursorCaptureMode(OpenTK.Core.Platform.WindowHandle) - commentId: M:OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetCursorCaptureMode(OpenTK.Core.Platform.WindowHandle) - id: GetCursorCaptureMode(OpenTK.Core.Platform.WindowHandle) +- uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetCursorCaptureMode(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetCursorCaptureMode(OpenTK.Platform.WindowHandle) + id: GetCursorCaptureMode(OpenTK.Platform.WindowHandle) parent: OpenTK.Platform.Native.macOS.MacOSWindowComponent langs: - csharp - vb name: GetCursorCaptureMode(WindowHandle) nameWithType: MacOSWindowComponent.GetCursorCaptureMode(WindowHandle) - fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetCursorCaptureMode(OpenTK.Core.Platform.WindowHandle) + fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetCursorCaptureMode(OpenTK.Platform.WindowHandle) type: Method source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetCursorCaptureMode - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSWindowComponent.cs startLine: 2154 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS - summary: Gets the current cursor capture mode. See for more details. + summary: Gets the current cursor capture mode. See for more details. example: [] syntax: content: public CursorCaptureMode GetCursorCaptureMode(WindowHandle handle) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: Handle to a window. return: - type: OpenTK.Core.Platform.CursorCaptureMode + type: OpenTK.Platform.CursorCaptureMode description: The current cursor capture mode. content.vb: Public Function GetCursorCaptureMode(handle As WindowHandle) As CursorCaptureMode overload: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetCursorCaptureMode* implements: - - OpenTK.Core.Platform.IWindowComponent.GetCursorCaptureMode(OpenTK.Core.Platform.WindowHandle) -- uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetCursorCaptureMode(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.CursorCaptureMode) - commentId: M:OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetCursorCaptureMode(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.CursorCaptureMode) - id: SetCursorCaptureMode(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.CursorCaptureMode) + - OpenTK.Platform.IWindowComponent.GetCursorCaptureMode(OpenTK.Platform.WindowHandle) +- uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetCursorCaptureMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorCaptureMode) + commentId: M:OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetCursorCaptureMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorCaptureMode) + id: SetCursorCaptureMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorCaptureMode) parent: OpenTK.Platform.Native.macOS.MacOSWindowComponent langs: - csharp - vb name: SetCursorCaptureMode(WindowHandle, CursorCaptureMode) nameWithType: MacOSWindowComponent.SetCursorCaptureMode(WindowHandle, CursorCaptureMode) - fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetCursorCaptureMode(OpenTK.Core.Platform.WindowHandle, OpenTK.Core.Platform.CursorCaptureMode) + fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetCursorCaptureMode(OpenTK.Platform.WindowHandle, OpenTK.Platform.CursorCaptureMode) type: Method source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetCursorCaptureMode - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSWindowComponent.cs startLine: 2161 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: >- Sets the cursor capture mode of the window. @@ -2248,36 +2057,35 @@ items: content: public void SetCursorCaptureMode(WindowHandle handle, CursorCaptureMode mode) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: Handle to a window. - id: mode - type: OpenTK.Core.Platform.CursorCaptureMode + type: OpenTK.Platform.CursorCaptureMode description: The cursor capture mode. content.vb: Public Sub SetCursorCaptureMode(handle As WindowHandle, mode As CursorCaptureMode) overload: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetCursorCaptureMode* + seealso: + - linkId: OpenTK.Platform.IWindowComponent.CanCaptureCursor + commentId: P:OpenTK.Platform.IWindowComponent.CanCaptureCursor implements: - - OpenTK.Core.Platform.IWindowComponent.SetCursorCaptureMode(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.CursorCaptureMode) -- uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.IsFocused(OpenTK.Core.Platform.WindowHandle) - commentId: M:OpenTK.Platform.Native.macOS.MacOSWindowComponent.IsFocused(OpenTK.Core.Platform.WindowHandle) - id: IsFocused(OpenTK.Core.Platform.WindowHandle) + - OpenTK.Platform.IWindowComponent.SetCursorCaptureMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorCaptureMode) +- uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.IsFocused(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.Native.macOS.MacOSWindowComponent.IsFocused(OpenTK.Platform.WindowHandle) + id: IsFocused(OpenTK.Platform.WindowHandle) parent: OpenTK.Platform.Native.macOS.MacOSWindowComponent langs: - csharp - vb name: IsFocused(WindowHandle) nameWithType: MacOSWindowComponent.IsFocused(WindowHandle) - fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.IsFocused(OpenTK.Core.Platform.WindowHandle) + fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.IsFocused(OpenTK.Platform.WindowHandle) type: Method source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: IsFocused - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSWindowComponent.cs startLine: 2242 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: Returns true if the given window has input focus. example: [] @@ -2285,7 +2093,7 @@ items: content: public bool IsFocused(WindowHandle handle) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: Handle to a window. return: type: System.Boolean @@ -2293,28 +2101,24 @@ items: content.vb: Public Function IsFocused(handle As WindowHandle) As Boolean overload: OpenTK.Platform.Native.macOS.MacOSWindowComponent.IsFocused* implements: - - OpenTK.Core.Platform.IWindowComponent.IsFocused(OpenTK.Core.Platform.WindowHandle) -- uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.FocusWindow(OpenTK.Core.Platform.WindowHandle) - commentId: M:OpenTK.Platform.Native.macOS.MacOSWindowComponent.FocusWindow(OpenTK.Core.Platform.WindowHandle) - id: FocusWindow(OpenTK.Core.Platform.WindowHandle) + - OpenTK.Platform.IWindowComponent.IsFocused(OpenTK.Platform.WindowHandle) +- uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.FocusWindow(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.Native.macOS.MacOSWindowComponent.FocusWindow(OpenTK.Platform.WindowHandle) + id: FocusWindow(OpenTK.Platform.WindowHandle) parent: OpenTK.Platform.Native.macOS.MacOSWindowComponent langs: - csharp - vb name: FocusWindow(WindowHandle) nameWithType: MacOSWindowComponent.FocusWindow(WindowHandle) - fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.FocusWindow(OpenTK.Core.Platform.WindowHandle) + fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.FocusWindow(OpenTK.Platform.WindowHandle) type: Method source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: FocusWindow - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSWindowComponent.cs startLine: 2251 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: Gives the window input focus. example: [] @@ -2322,33 +2126,29 @@ items: content: public void FocusWindow(WindowHandle handle) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: Handle to the window to focus. content.vb: Public Sub FocusWindow(handle As WindowHandle) overload: OpenTK.Platform.Native.macOS.MacOSWindowComponent.FocusWindow* implements: - - OpenTK.Core.Platform.IWindowComponent.FocusWindow(OpenTK.Core.Platform.WindowHandle) -- uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.RequestAttention(OpenTK.Core.Platform.WindowHandle) - commentId: M:OpenTK.Platform.Native.macOS.MacOSWindowComponent.RequestAttention(OpenTK.Core.Platform.WindowHandle) - id: RequestAttention(OpenTK.Core.Platform.WindowHandle) + - OpenTK.Platform.IWindowComponent.FocusWindow(OpenTK.Platform.WindowHandle) +- uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.RequestAttention(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.Native.macOS.MacOSWindowComponent.RequestAttention(OpenTK.Platform.WindowHandle) + id: RequestAttention(OpenTK.Platform.WindowHandle) parent: OpenTK.Platform.Native.macOS.MacOSWindowComponent langs: - csharp - vb name: RequestAttention(WindowHandle) nameWithType: MacOSWindowComponent.RequestAttention(WindowHandle) - fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.RequestAttention(OpenTK.Core.Platform.WindowHandle) + fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.RequestAttention(OpenTK.Platform.WindowHandle) type: Method source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: RequestAttention - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSWindowComponent.cs startLine: 2259 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: Requests that the user pay attention to the window. example: [] @@ -2356,33 +2156,29 @@ items: content: public void RequestAttention(WindowHandle handle) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: A handle to the window that requests attention. content.vb: Public Sub RequestAttention(handle As WindowHandle) overload: OpenTK.Platform.Native.macOS.MacOSWindowComponent.RequestAttention* implements: - - OpenTK.Core.Platform.IWindowComponent.RequestAttention(OpenTK.Core.Platform.WindowHandle) -- uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.ScreenToClient(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) - commentId: M:OpenTK.Platform.Native.macOS.MacOSWindowComponent.ScreenToClient(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) - id: ScreenToClient(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) + - OpenTK.Platform.IWindowComponent.RequestAttention(OpenTK.Platform.WindowHandle) +- uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) + commentId: M:OpenTK.Platform.Native.macOS.MacOSWindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) + id: ScreenToClient(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) parent: OpenTK.Platform.Native.macOS.MacOSWindowComponent langs: - csharp - vb name: ScreenToClient(WindowHandle, int, int, out int, out int) nameWithType: MacOSWindowComponent.ScreenToClient(WindowHandle, int, int, out int, out int) - fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.ScreenToClient(OpenTK.Core.Platform.WindowHandle, int, int, out int, out int) + fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle, int, int, out int, out int) type: Method source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ScreenToClient - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSWindowComponent.cs startLine: 2280 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: Converts screen coordinates to window relative coordinates. example: [] @@ -2390,7 +2186,7 @@ items: content: public void ScreenToClient(WindowHandle handle, int x, int y, out int clientX, out int clientY) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: The window handle. - id: x type: System.Int32 @@ -2407,31 +2203,27 @@ items: content.vb: Public Sub ScreenToClient(handle As WindowHandle, x As Integer, y As Integer, clientX As Integer, clientY As Integer) overload: OpenTK.Platform.Native.macOS.MacOSWindowComponent.ScreenToClient* implements: - - OpenTK.Core.Platform.IWindowComponent.ScreenToClient(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) + - OpenTK.Platform.IWindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) nameWithType.vb: MacOSWindowComponent.ScreenToClient(WindowHandle, Integer, Integer, Integer, Integer) - fullName.vb: OpenTK.Platform.Native.macOS.MacOSWindowComponent.ScreenToClient(OpenTK.Core.Platform.WindowHandle, Integer, Integer, Integer, Integer) + fullName.vb: OpenTK.Platform.Native.macOS.MacOSWindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle, Integer, Integer, Integer, Integer) name.vb: ScreenToClient(WindowHandle, Integer, Integer, Integer, Integer) -- uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.ClientToScreen(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) - commentId: M:OpenTK.Platform.Native.macOS.MacOSWindowComponent.ClientToScreen(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) - id: ClientToScreen(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) +- uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) + commentId: M:OpenTK.Platform.Native.macOS.MacOSWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) + id: ClientToScreen(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) parent: OpenTK.Platform.Native.macOS.MacOSWindowComponent langs: - csharp - vb name: ClientToScreen(WindowHandle, int, int, out int, out int) nameWithType: MacOSWindowComponent.ClientToScreen(WindowHandle, int, int, out int, out int) - fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.ClientToScreen(OpenTK.Core.Platform.WindowHandle, int, int, out int, out int) + fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle, int, int, out int, out int) type: Method source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ClientToScreen - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSWindowComponent.cs startLine: 2291 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: Converts window relative coordinates to screen coordinates. example: [] @@ -2439,7 +2231,7 @@ items: content: public void ClientToScreen(WindowHandle handle, int clientX, int clientY, out int x, out int y) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: The window handle. - id: clientX type: System.Int32 @@ -2456,31 +2248,27 @@ items: content.vb: Public Sub ClientToScreen(handle As WindowHandle, clientX As Integer, clientY As Integer, x As Integer, y As Integer) overload: OpenTK.Platform.Native.macOS.MacOSWindowComponent.ClientToScreen* implements: - - OpenTK.Core.Platform.IWindowComponent.ClientToScreen(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) + - OpenTK.Platform.IWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) nameWithType.vb: MacOSWindowComponent.ClientToScreen(WindowHandle, Integer, Integer, Integer, Integer) - fullName.vb: OpenTK.Platform.Native.macOS.MacOSWindowComponent.ClientToScreen(OpenTK.Core.Platform.WindowHandle, Integer, Integer, Integer, Integer) + fullName.vb: OpenTK.Platform.Native.macOS.MacOSWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle, Integer, Integer, Integer, Integer) name.vb: ClientToScreen(WindowHandle, Integer, Integer, Integer, Integer) -- uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetScaleFactor(OpenTK.Core.Platform.WindowHandle,System.Single@,System.Single@) - commentId: M:OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetScaleFactor(OpenTK.Core.Platform.WindowHandle,System.Single@,System.Single@) - id: GetScaleFactor(OpenTK.Core.Platform.WindowHandle,System.Single@,System.Single@) +- uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetScaleFactor(OpenTK.Platform.WindowHandle,System.Single@,System.Single@) + commentId: M:OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetScaleFactor(OpenTK.Platform.WindowHandle,System.Single@,System.Single@) + id: GetScaleFactor(OpenTK.Platform.WindowHandle,System.Single@,System.Single@) parent: OpenTK.Platform.Native.macOS.MacOSWindowComponent langs: - csharp - vb name: GetScaleFactor(WindowHandle, out float, out float) nameWithType: MacOSWindowComponent.GetScaleFactor(WindowHandle, out float, out float) - fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetScaleFactor(OpenTK.Core.Platform.WindowHandle, out float, out float) + fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetScaleFactor(OpenTK.Platform.WindowHandle, out float, out float) type: Method source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetScaleFactor - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSWindowComponent.cs startLine: 2302 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: Returns the current scale factor of this window. example: [] @@ -2488,7 +2276,7 @@ items: content: public void GetScaleFactor(WindowHandle handle, out float scaleX, out float scaleY) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: The window handle. - id: scaleX type: System.Single @@ -2499,34 +2287,30 @@ items: content.vb: Public Sub GetScaleFactor(handle As WindowHandle, scaleX As Single, scaleY As Single) overload: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetScaleFactor* seealso: - - linkId: OpenTK.Core.Platform.WindowScaleChangeEventArgs - commentId: T:OpenTK.Core.Platform.WindowScaleChangeEventArgs + - linkId: OpenTK.Platform.WindowScaleChangeEventArgs + commentId: T:OpenTK.Platform.WindowScaleChangeEventArgs implements: - - OpenTK.Core.Platform.IWindowComponent.GetScaleFactor(OpenTK.Core.Platform.WindowHandle,System.Single@,System.Single@) + - OpenTK.Platform.IWindowComponent.GetScaleFactor(OpenTK.Platform.WindowHandle,System.Single@,System.Single@) nameWithType.vb: MacOSWindowComponent.GetScaleFactor(WindowHandle, Single, Single) - fullName.vb: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetScaleFactor(OpenTK.Core.Platform.WindowHandle, Single, Single) + fullName.vb: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetScaleFactor(OpenTK.Platform.WindowHandle, Single, Single) name.vb: GetScaleFactor(WindowHandle, Single, Single) -- uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetNSWindow(OpenTK.Core.Platform.WindowHandle) - commentId: M:OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetNSWindow(OpenTK.Core.Platform.WindowHandle) - id: GetNSWindow(OpenTK.Core.Platform.WindowHandle) +- uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetNSWindow(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetNSWindow(OpenTK.Platform.WindowHandle) + id: GetNSWindow(OpenTK.Platform.WindowHandle) parent: OpenTK.Platform.Native.macOS.MacOSWindowComponent langs: - csharp - vb name: GetNSWindow(WindowHandle) nameWithType: MacOSWindowComponent.GetNSWindow(WindowHandle) - fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetNSWindow(OpenTK.Core.Platform.WindowHandle) + fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetNSWindow(OpenTK.Platform.WindowHandle) type: Method source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetNSWindow - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSWindowComponent.cs startLine: 2319 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: >- Returns the NSWindow used by the specified window handle. @@ -2537,34 +2321,30 @@ items: content: public nint GetNSWindow(WindowHandle handle) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: A handle to a window to get the associated NSWindow from. return: type: System.IntPtr description: The NSWindow associated with the window handle. content.vb: Public Function GetNSWindow(handle As WindowHandle) As IntPtr overload: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetNSWindow* -- uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetNSView(OpenTK.Core.Platform.WindowHandle) - commentId: M:OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetNSView(OpenTK.Core.Platform.WindowHandle) - id: GetNSView(OpenTK.Core.Platform.WindowHandle) +- uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetNSView(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetNSView(OpenTK.Platform.WindowHandle) + id: GetNSView(OpenTK.Platform.WindowHandle) parent: OpenTK.Platform.Native.macOS.MacOSWindowComponent langs: - csharp - vb name: GetNSView(WindowHandle) nameWithType: MacOSWindowComponent.GetNSView(WindowHandle) - fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetNSView(OpenTK.Core.Platform.WindowHandle) + fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetNSView(OpenTK.Platform.WindowHandle) type: Method source: - remote: - path: src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetNSView - path: opentk/src/OpenTK.Platform.Native/macOS/MacOSWindowComponent.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSWindowComponent.cs startLine: 2332 assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: >- Returns the NSView used by the specified window handle. @@ -2575,7 +2355,7 @@ items: content: public nint GetNSView(WindowHandle handle) parameters: - id: handle - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: A handle to a window to get the associated NSView from. return: type: System.IntPtr @@ -2632,20 +2412,20 @@ references: nameWithType.vb: Object fullName.vb: Object name.vb: Object -- uid: OpenTK.Core.Platform.IWindowComponent - commentId: T:OpenTK.Core.Platform.IWindowComponent - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.IWindowComponent.html +- uid: OpenTK.Platform.IWindowComponent + commentId: T:OpenTK.Platform.IWindowComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IWindowComponent.html name: IWindowComponent nameWithType: IWindowComponent - fullName: OpenTK.Core.Platform.IWindowComponent -- uid: OpenTK.Core.Platform.IPalComponent - commentId: T:OpenTK.Core.Platform.IPalComponent - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.IPalComponent.html + fullName: OpenTK.Platform.IWindowComponent +- uid: OpenTK.Platform.IPalComponent + commentId: T:OpenTK.Platform.IPalComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IPalComponent.html name: IPalComponent nameWithType: IPalComponent - fullName: OpenTK.Core.Platform.IPalComponent + fullName: OpenTK.Platform.IPalComponent - uid: System.Object.Equals(System.Object) commentId: M:System.Object.Equals(System.Object) parent: System.Object @@ -2872,49 +2652,41 @@ references: name: System nameWithType: System fullName: System -- uid: OpenTK.Core.Platform - commentId: N:OpenTK.Core.Platform +- uid: OpenTK.Platform + commentId: N:OpenTK.Platform href: OpenTK.html - name: OpenTK.Core.Platform - nameWithType: OpenTK.Core.Platform - fullName: OpenTK.Core.Platform + name: OpenTK.Platform + nameWithType: OpenTK.Platform + fullName: OpenTK.Platform spec.csharp: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html spec.vb: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html - uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.Name* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSWindowComponent.Name href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_Name name: Name nameWithType: MacOSWindowComponent.Name fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.Name -- uid: OpenTK.Core.Platform.IPalComponent.Name - commentId: P:OpenTK.Core.Platform.IPalComponent.Name - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Name +- uid: OpenTK.Platform.IPalComponent.Name + commentId: P:OpenTK.Platform.IPalComponent.Name + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Name name: Name nameWithType: IPalComponent.Name - fullName: OpenTK.Core.Platform.IPalComponent.Name + fullName: OpenTK.Platform.IPalComponent.Name - uid: System.String commentId: T:System.String parent: System @@ -2932,33 +2704,33 @@ references: name: Provides nameWithType: MacOSWindowComponent.Provides fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.Provides -- uid: OpenTK.Core.Platform.IPalComponent.Provides - commentId: P:OpenTK.Core.Platform.IPalComponent.Provides - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Provides +- uid: OpenTK.Platform.IPalComponent.Provides + commentId: P:OpenTK.Platform.IPalComponent.Provides + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Provides name: Provides nameWithType: IPalComponent.Provides - fullName: OpenTK.Core.Platform.IPalComponent.Provides -- uid: OpenTK.Core.Platform.PalComponents - commentId: T:OpenTK.Core.Platform.PalComponents - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.PalComponents.html + fullName: OpenTK.Platform.IPalComponent.Provides +- uid: OpenTK.Platform.PalComponents + commentId: T:OpenTK.Platform.PalComponents + parent: OpenTK.Platform + href: OpenTK.Platform.PalComponents.html name: PalComponents nameWithType: PalComponents - fullName: OpenTK.Core.Platform.PalComponents + fullName: OpenTK.Platform.PalComponents - uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.Logger* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSWindowComponent.Logger href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_Logger name: Logger nameWithType: MacOSWindowComponent.Logger fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.Logger -- uid: OpenTK.Core.Platform.IPalComponent.Logger - commentId: P:OpenTK.Core.Platform.IPalComponent.Logger - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Logger +- uid: OpenTK.Platform.IPalComponent.Logger + commentId: P:OpenTK.Platform.IPalComponent.Logger + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Logger name: Logger nameWithType: IPalComponent.Logger - fullName: OpenTK.Core.Platform.IPalComponent.Logger + fullName: OpenTK.Platform.IPalComponent.Logger - uid: OpenTK.Core.Utility.ILogger commentId: T:OpenTK.Core.Utility.ILogger parent: OpenTK.Core.Utility @@ -2998,55 +2770,90 @@ references: href: OpenTK.Core.Utility.html - uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.Initialize* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSWindowComponent.Initialize - href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_Initialize_OpenTK_Platform_ToolkitOptions_ name: Initialize nameWithType: MacOSWindowComponent.Initialize fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.Initialize -- uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - commentId: M:OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) - parent: OpenTK.Core.Platform.IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ +- uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ name: Initialize(ToolkitOptions) nameWithType: IPalComponent.Initialize(ToolkitOptions) - fullName: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + fullName: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) spec.csharp: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + - uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.ToolkitOptions + - uid: OpenTK.Platform.ToolkitOptions name: ToolkitOptions - href: OpenTK.Core.Platform.ToolkitOptions.html + href: OpenTK.Platform.ToolkitOptions.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IPalComponent.Initialize(OpenTK.Core.Platform.ToolkitOptions) + - uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) name: Initialize - href: OpenTK.Core.Platform.IPalComponent.html#OpenTK_Core_Platform_IPalComponent_Initialize_OpenTK_Core_Platform_ToolkitOptions_ + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ - name: ( - - uid: OpenTK.Core.Platform.ToolkitOptions + - uid: OpenTK.Platform.ToolkitOptions name: ToolkitOptions - href: OpenTK.Core.Platform.ToolkitOptions.html + href: OpenTK.Platform.ToolkitOptions.html - name: ) -- uid: OpenTK.Core.Platform.ToolkitOptions - commentId: T:OpenTK.Core.Platform.ToolkitOptions - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.ToolkitOptions.html +- uid: OpenTK.Platform.ToolkitOptions + commentId: T:OpenTK.Platform.ToolkitOptions + parent: OpenTK.Platform + href: OpenTK.Platform.ToolkitOptions.html name: ToolkitOptions nameWithType: ToolkitOptions - fullName: OpenTK.Core.Platform.ToolkitOptions + fullName: OpenTK.Platform.ToolkitOptions +- uid: OpenTK.Platform.IWindowComponent.SetIcon(OpenTK.Platform.WindowHandle,OpenTK.Platform.IconHandle) + commentId: M:OpenTK.Platform.IWindowComponent.SetIcon(OpenTK.Platform.WindowHandle,OpenTK.Platform.IconHandle) + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetIcon_OpenTK_Platform_WindowHandle_OpenTK_Platform_IconHandle_ + name: SetIcon(WindowHandle, IconHandle) + nameWithType: IWindowComponent.SetIcon(WindowHandle, IconHandle) + fullName: OpenTK.Platform.IWindowComponent.SetIcon(OpenTK.Platform.WindowHandle, OpenTK.Platform.IconHandle) + spec.csharp: + - uid: OpenTK.Platform.IWindowComponent.SetIcon(OpenTK.Platform.WindowHandle,OpenTK.Platform.IconHandle) + name: SetIcon + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetIcon_OpenTK_Platform_WindowHandle_OpenTK_Platform_IconHandle_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: OpenTK.Platform.IconHandle + name: IconHandle + href: OpenTK.Platform.IconHandle.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IWindowComponent.SetIcon(OpenTK.Platform.WindowHandle,OpenTK.Platform.IconHandle) + name: SetIcon + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetIcon_OpenTK_Platform_WindowHandle_OpenTK_Platform_IconHandle_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: OpenTK.Platform.IconHandle + name: IconHandle + href: OpenTK.Platform.IconHandle.html + - name: ) - uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.CanSetIcon* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSWindowComponent.CanSetIcon href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_CanSetIcon name: CanSetIcon nameWithType: MacOSWindowComponent.CanSetIcon fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.CanSetIcon -- uid: OpenTK.Core.Platform.IWindowComponent.CanSetIcon - commentId: P:OpenTK.Core.Platform.IWindowComponent.CanSetIcon - parent: OpenTK.Core.Platform.IWindowComponent - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_CanSetIcon +- uid: OpenTK.Platform.IWindowComponent.CanSetIcon + commentId: P:OpenTK.Platform.IWindowComponent.CanSetIcon + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_CanSetIcon name: CanSetIcon nameWithType: IWindowComponent.CanSetIcon - fullName: OpenTK.Core.Platform.IWindowComponent.CanSetIcon + fullName: OpenTK.Platform.IWindowComponent.CanSetIcon - uid: System.Boolean commentId: T:System.Boolean parent: System @@ -3058,68 +2865,163 @@ references: nameWithType.vb: Boolean fullName.vb: Boolean name.vb: Boolean +- uid: OpenTK.Platform.IWindowComponent.GetDisplay(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.GetDisplay(OpenTK.Platform.WindowHandle) + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetDisplay_OpenTK_Platform_WindowHandle_ + name: GetDisplay(WindowHandle) + nameWithType: IWindowComponent.GetDisplay(WindowHandle) + fullName: OpenTK.Platform.IWindowComponent.GetDisplay(OpenTK.Platform.WindowHandle) + spec.csharp: + - uid: OpenTK.Platform.IWindowComponent.GetDisplay(OpenTK.Platform.WindowHandle) + name: GetDisplay + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetDisplay_OpenTK_Platform_WindowHandle_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IWindowComponent.GetDisplay(OpenTK.Platform.WindowHandle) + name: GetDisplay + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetDisplay_OpenTK_Platform_WindowHandle_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ) - uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.CanGetDisplay* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSWindowComponent.CanGetDisplay href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_CanGetDisplay name: CanGetDisplay nameWithType: MacOSWindowComponent.CanGetDisplay fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.CanGetDisplay -- uid: OpenTK.Core.Platform.IWindowComponent.CanGetDisplay - commentId: P:OpenTK.Core.Platform.IWindowComponent.CanGetDisplay - parent: OpenTK.Core.Platform.IWindowComponent - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_CanGetDisplay +- uid: OpenTK.Platform.IWindowComponent.CanGetDisplay + commentId: P:OpenTK.Platform.IWindowComponent.CanGetDisplay + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_CanGetDisplay name: CanGetDisplay nameWithType: IWindowComponent.CanGetDisplay - fullName: OpenTK.Core.Platform.IWindowComponent.CanGetDisplay + fullName: OpenTK.Platform.IWindowComponent.CanGetDisplay +- uid: OpenTK.Platform.IWindowComponent.SetCursor(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorHandle) + commentId: M:OpenTK.Platform.IWindowComponent.SetCursor(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorHandle) + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetCursor_OpenTK_Platform_WindowHandle_OpenTK_Platform_CursorHandle_ + name: SetCursor(WindowHandle, CursorHandle) + nameWithType: IWindowComponent.SetCursor(WindowHandle, CursorHandle) + fullName: OpenTK.Platform.IWindowComponent.SetCursor(OpenTK.Platform.WindowHandle, OpenTK.Platform.CursorHandle) + spec.csharp: + - uid: OpenTK.Platform.IWindowComponent.SetCursor(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorHandle) + name: SetCursor + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetCursor_OpenTK_Platform_WindowHandle_OpenTK_Platform_CursorHandle_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: OpenTK.Platform.CursorHandle + name: CursorHandle + href: OpenTK.Platform.CursorHandle.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IWindowComponent.SetCursor(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorHandle) + name: SetCursor + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetCursor_OpenTK_Platform_WindowHandle_OpenTK_Platform_CursorHandle_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: OpenTK.Platform.CursorHandle + name: CursorHandle + href: OpenTK.Platform.CursorHandle.html + - name: ) - uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.CanSetCursor* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSWindowComponent.CanSetCursor href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_CanSetCursor name: CanSetCursor nameWithType: MacOSWindowComponent.CanSetCursor fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.CanSetCursor -- uid: OpenTK.Core.Platform.IWindowComponent.CanSetCursor - commentId: P:OpenTK.Core.Platform.IWindowComponent.CanSetCursor - parent: OpenTK.Core.Platform.IWindowComponent - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_CanSetCursor +- uid: OpenTK.Platform.IWindowComponent.CanSetCursor + commentId: P:OpenTK.Platform.IWindowComponent.CanSetCursor + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_CanSetCursor name: CanSetCursor nameWithType: IWindowComponent.CanSetCursor - fullName: OpenTK.Core.Platform.IWindowComponent.CanSetCursor + fullName: OpenTK.Platform.IWindowComponent.CanSetCursor +- uid: OpenTK.Platform.IWindowComponent.SetCursorCaptureMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorCaptureMode) + commentId: M:OpenTK.Platform.IWindowComponent.SetCursorCaptureMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorCaptureMode) + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetCursorCaptureMode_OpenTK_Platform_WindowHandle_OpenTK_Platform_CursorCaptureMode_ + name: SetCursorCaptureMode(WindowHandle, CursorCaptureMode) + nameWithType: IWindowComponent.SetCursorCaptureMode(WindowHandle, CursorCaptureMode) + fullName: OpenTK.Platform.IWindowComponent.SetCursorCaptureMode(OpenTK.Platform.WindowHandle, OpenTK.Platform.CursorCaptureMode) + spec.csharp: + - uid: OpenTK.Platform.IWindowComponent.SetCursorCaptureMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorCaptureMode) + name: SetCursorCaptureMode + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetCursorCaptureMode_OpenTK_Platform_WindowHandle_OpenTK_Platform_CursorCaptureMode_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: OpenTK.Platform.CursorCaptureMode + name: CursorCaptureMode + href: OpenTK.Platform.CursorCaptureMode.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IWindowComponent.SetCursorCaptureMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorCaptureMode) + name: SetCursorCaptureMode + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetCursorCaptureMode_OpenTK_Platform_WindowHandle_OpenTK_Platform_CursorCaptureMode_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: OpenTK.Platform.CursorCaptureMode + name: CursorCaptureMode + href: OpenTK.Platform.CursorCaptureMode.html + - name: ) - uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.CanCaptureCursor* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSWindowComponent.CanCaptureCursor href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_CanCaptureCursor name: CanCaptureCursor nameWithType: MacOSWindowComponent.CanCaptureCursor fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.CanCaptureCursor -- uid: OpenTK.Core.Platform.IWindowComponent.CanCaptureCursor - commentId: P:OpenTK.Core.Platform.IWindowComponent.CanCaptureCursor - parent: OpenTK.Core.Platform.IWindowComponent - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_CanCaptureCursor +- uid: OpenTK.Platform.IWindowComponent.CanCaptureCursor + commentId: P:OpenTK.Platform.IWindowComponent.CanCaptureCursor + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_CanCaptureCursor name: CanCaptureCursor nameWithType: IWindowComponent.CanCaptureCursor - fullName: OpenTK.Core.Platform.IWindowComponent.CanCaptureCursor + fullName: OpenTK.Platform.IWindowComponent.CanCaptureCursor - uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SupportedEvents* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSWindowComponent.SupportedEvents href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_SupportedEvents name: SupportedEvents nameWithType: MacOSWindowComponent.SupportedEvents fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SupportedEvents -- uid: OpenTK.Core.Platform.IWindowComponent.SupportedEvents - commentId: P:OpenTK.Core.Platform.IWindowComponent.SupportedEvents - parent: OpenTK.Core.Platform.IWindowComponent - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SupportedEvents +- uid: OpenTK.Platform.IWindowComponent.SupportedEvents + commentId: P:OpenTK.Platform.IWindowComponent.SupportedEvents + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SupportedEvents name: SupportedEvents nameWithType: IWindowComponent.SupportedEvents - fullName: OpenTK.Core.Platform.IWindowComponent.SupportedEvents -- uid: System.Collections.Generic.IReadOnlyList{OpenTK.Core.Platform.PlatformEventType} - commentId: T:System.Collections.Generic.IReadOnlyList{OpenTK.Core.Platform.PlatformEventType} + fullName: OpenTK.Platform.IWindowComponent.SupportedEvents +- uid: System.Collections.Generic.IReadOnlyList{OpenTK.Platform.PlatformEventType} + commentId: T:System.Collections.Generic.IReadOnlyList{OpenTK.Platform.PlatformEventType} parent: System.Collections.Generic definition: System.Collections.Generic.IReadOnlyList`1 href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 name: IReadOnlyList nameWithType: IReadOnlyList - fullName: System.Collections.Generic.IReadOnlyList + fullName: System.Collections.Generic.IReadOnlyList nameWithType.vb: IReadOnlyList(Of PlatformEventType) - fullName.vb: System.Collections.Generic.IReadOnlyList(Of OpenTK.Core.Platform.PlatformEventType) + fullName.vb: System.Collections.Generic.IReadOnlyList(Of OpenTK.Platform.PlatformEventType) name.vb: IReadOnlyList(Of PlatformEventType) spec.csharp: - uid: System.Collections.Generic.IReadOnlyList`1 @@ -3127,9 +3029,9 @@ references: isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 - name: < - - uid: OpenTK.Core.Platform.PlatformEventType + - uid: OpenTK.Platform.PlatformEventType name: PlatformEventType - href: OpenTK.Core.Platform.PlatformEventType.html + href: OpenTK.Platform.PlatformEventType.html - name: '>' spec.vb: - uid: System.Collections.Generic.IReadOnlyList`1 @@ -3139,9 +3041,9 @@ references: - name: ( - name: Of - name: " " - - uid: OpenTK.Core.Platform.PlatformEventType + - uid: OpenTK.Platform.PlatformEventType name: PlatformEventType - href: OpenTK.Core.Platform.PlatformEventType.html + href: OpenTK.Platform.PlatformEventType.html - name: ) - uid: System.Collections.Generic.IReadOnlyList`1 commentId: T:System.Collections.Generic.IReadOnlyList`1 @@ -3214,23 +3116,23 @@ references: name: SupportedStyles nameWithType: MacOSWindowComponent.SupportedStyles fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SupportedStyles -- uid: OpenTK.Core.Platform.IWindowComponent.SupportedStyles - commentId: P:OpenTK.Core.Platform.IWindowComponent.SupportedStyles - parent: OpenTK.Core.Platform.IWindowComponent - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SupportedStyles +- uid: OpenTK.Platform.IWindowComponent.SupportedStyles + commentId: P:OpenTK.Platform.IWindowComponent.SupportedStyles + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SupportedStyles name: SupportedStyles nameWithType: IWindowComponent.SupportedStyles - fullName: OpenTK.Core.Platform.IWindowComponent.SupportedStyles -- uid: System.Collections.Generic.IReadOnlyList{OpenTK.Core.Platform.WindowBorderStyle} - commentId: T:System.Collections.Generic.IReadOnlyList{OpenTK.Core.Platform.WindowBorderStyle} + fullName: OpenTK.Platform.IWindowComponent.SupportedStyles +- uid: System.Collections.Generic.IReadOnlyList{OpenTK.Platform.WindowBorderStyle} + commentId: T:System.Collections.Generic.IReadOnlyList{OpenTK.Platform.WindowBorderStyle} parent: System.Collections.Generic definition: System.Collections.Generic.IReadOnlyList`1 href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 name: IReadOnlyList nameWithType: IReadOnlyList - fullName: System.Collections.Generic.IReadOnlyList + fullName: System.Collections.Generic.IReadOnlyList nameWithType.vb: IReadOnlyList(Of WindowBorderStyle) - fullName.vb: System.Collections.Generic.IReadOnlyList(Of OpenTK.Core.Platform.WindowBorderStyle) + fullName.vb: System.Collections.Generic.IReadOnlyList(Of OpenTK.Platform.WindowBorderStyle) name.vb: IReadOnlyList(Of WindowBorderStyle) spec.csharp: - uid: System.Collections.Generic.IReadOnlyList`1 @@ -3238,9 +3140,9 @@ references: isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 - name: < - - uid: OpenTK.Core.Platform.WindowBorderStyle + - uid: OpenTK.Platform.WindowBorderStyle name: WindowBorderStyle - href: OpenTK.Core.Platform.WindowBorderStyle.html + href: OpenTK.Platform.WindowBorderStyle.html - name: '>' spec.vb: - uid: System.Collections.Generic.IReadOnlyList`1 @@ -3250,9 +3152,9 @@ references: - name: ( - name: Of - name: " " - - uid: OpenTK.Core.Platform.WindowBorderStyle + - uid: OpenTK.Platform.WindowBorderStyle name: WindowBorderStyle - href: OpenTK.Core.Platform.WindowBorderStyle.html + href: OpenTK.Platform.WindowBorderStyle.html - name: ) - uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SupportedModes* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSWindowComponent.SupportedModes @@ -3260,23 +3162,23 @@ references: name: SupportedModes nameWithType: MacOSWindowComponent.SupportedModes fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SupportedModes -- uid: OpenTK.Core.Platform.IWindowComponent.SupportedModes - commentId: P:OpenTK.Core.Platform.IWindowComponent.SupportedModes - parent: OpenTK.Core.Platform.IWindowComponent - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SupportedModes +- uid: OpenTK.Platform.IWindowComponent.SupportedModes + commentId: P:OpenTK.Platform.IWindowComponent.SupportedModes + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SupportedModes name: SupportedModes nameWithType: IWindowComponent.SupportedModes - fullName: OpenTK.Core.Platform.IWindowComponent.SupportedModes -- uid: System.Collections.Generic.IReadOnlyList{OpenTK.Core.Platform.WindowMode} - commentId: T:System.Collections.Generic.IReadOnlyList{OpenTK.Core.Platform.WindowMode} + fullName: OpenTK.Platform.IWindowComponent.SupportedModes +- uid: System.Collections.Generic.IReadOnlyList{OpenTK.Platform.WindowMode} + commentId: T:System.Collections.Generic.IReadOnlyList{OpenTK.Platform.WindowMode} parent: System.Collections.Generic definition: System.Collections.Generic.IReadOnlyList`1 href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 name: IReadOnlyList nameWithType: IReadOnlyList - fullName: System.Collections.Generic.IReadOnlyList + fullName: System.Collections.Generic.IReadOnlyList nameWithType.vb: IReadOnlyList(Of WindowMode) - fullName.vb: System.Collections.Generic.IReadOnlyList(Of OpenTK.Core.Platform.WindowMode) + fullName.vb: System.Collections.Generic.IReadOnlyList(Of OpenTK.Platform.WindowMode) name.vb: IReadOnlyList(Of WindowMode) spec.csharp: - uid: System.Collections.Generic.IReadOnlyList`1 @@ -3284,9 +3186,9 @@ references: isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 - name: < - - uid: OpenTK.Core.Platform.WindowMode + - uid: OpenTK.Platform.WindowMode name: WindowMode - href: OpenTK.Core.Platform.WindowMode.html + href: OpenTK.Platform.WindowMode.html - name: '>' spec.vb: - uid: System.Collections.Generic.IReadOnlyList`1 @@ -3296,38 +3198,38 @@ references: - name: ( - name: Of - name: " " - - uid: OpenTK.Core.Platform.WindowMode + - uid: OpenTK.Platform.WindowMode name: WindowMode - href: OpenTK.Core.Platform.WindowMode.html + href: OpenTK.Platform.WindowMode.html - name: ) -- uid: OpenTK.Core.Platform.EventQueue - commentId: T:OpenTK.Core.Platform.EventQueue - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.EventQueue.html +- uid: OpenTK.Platform.EventQueue + commentId: T:OpenTK.Platform.EventQueue + parent: OpenTK.Platform + href: OpenTK.Platform.EventQueue.html name: EventQueue nameWithType: EventQueue - fullName: OpenTK.Core.Platform.EventQueue + fullName: OpenTK.Platform.EventQueue - uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.ProcessEvents* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSWindowComponent.ProcessEvents href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_ProcessEvents_System_Boolean_ name: ProcessEvents nameWithType: MacOSWindowComponent.ProcessEvents fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.ProcessEvents -- uid: OpenTK.Core.Platform.IWindowComponent.ProcessEvents(System.Boolean) - commentId: M:OpenTK.Core.Platform.IWindowComponent.ProcessEvents(System.Boolean) - parent: OpenTK.Core.Platform.IWindowComponent +- uid: OpenTK.Platform.IWindowComponent.ProcessEvents(System.Boolean) + commentId: M:OpenTK.Platform.IWindowComponent.ProcessEvents(System.Boolean) + parent: OpenTK.Platform.IWindowComponent isExternal: true - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_ProcessEvents_System_Boolean_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_ProcessEvents_System_Boolean_ name: ProcessEvents(bool) nameWithType: IWindowComponent.ProcessEvents(bool) - fullName: OpenTK.Core.Platform.IWindowComponent.ProcessEvents(bool) + fullName: OpenTK.Platform.IWindowComponent.ProcessEvents(bool) nameWithType.vb: IWindowComponent.ProcessEvents(Boolean) - fullName.vb: OpenTK.Core.Platform.IWindowComponent.ProcessEvents(Boolean) + fullName.vb: OpenTK.Platform.IWindowComponent.ProcessEvents(Boolean) name.vb: ProcessEvents(Boolean) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.ProcessEvents(System.Boolean) + - uid: OpenTK.Platform.IWindowComponent.ProcessEvents(System.Boolean) name: ProcessEvents - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_ProcessEvents_System_Boolean_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_ProcessEvents_System_Boolean_ - name: ( - uid: System.Boolean name: bool @@ -3335,9 +3237,9 @@ references: href: https://learn.microsoft.com/dotnet/api/system.boolean - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.ProcessEvents(System.Boolean) + - uid: OpenTK.Platform.IWindowComponent.ProcessEvents(System.Boolean) name: ProcessEvents - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_ProcessEvents_System_Boolean_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_ProcessEvents_System_Boolean_ - name: ( - uid: System.Boolean name: Boolean @@ -3346,49 +3248,74 @@ references: - name: ) - uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.Create* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSWindowComponent.Create - href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_Create_OpenTK_Core_Platform_GraphicsApiHints_ + href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_Create_OpenTK_Platform_GraphicsApiHints_ name: Create nameWithType: MacOSWindowComponent.Create fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.Create -- uid: OpenTK.Core.Platform.IWindowComponent.Create(OpenTK.Core.Platform.GraphicsApiHints) - commentId: M:OpenTK.Core.Platform.IWindowComponent.Create(OpenTK.Core.Platform.GraphicsApiHints) - parent: OpenTK.Core.Platform.IWindowComponent - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_Create_OpenTK_Core_Platform_GraphicsApiHints_ +- uid: OpenTK.Platform.IWindowComponent.Create(OpenTK.Platform.GraphicsApiHints) + commentId: M:OpenTK.Platform.IWindowComponent.Create(OpenTK.Platform.GraphicsApiHints) + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_Create_OpenTK_Platform_GraphicsApiHints_ name: Create(GraphicsApiHints) nameWithType: IWindowComponent.Create(GraphicsApiHints) - fullName: OpenTK.Core.Platform.IWindowComponent.Create(OpenTK.Core.Platform.GraphicsApiHints) + fullName: OpenTK.Platform.IWindowComponent.Create(OpenTK.Platform.GraphicsApiHints) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.Create(OpenTK.Core.Platform.GraphicsApiHints) + - uid: OpenTK.Platform.IWindowComponent.Create(OpenTK.Platform.GraphicsApiHints) name: Create - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_Create_OpenTK_Core_Platform_GraphicsApiHints_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_Create_OpenTK_Platform_GraphicsApiHints_ - name: ( - - uid: OpenTK.Core.Platform.GraphicsApiHints + - uid: OpenTK.Platform.GraphicsApiHints name: GraphicsApiHints - href: OpenTK.Core.Platform.GraphicsApiHints.html + href: OpenTK.Platform.GraphicsApiHints.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.Create(OpenTK.Core.Platform.GraphicsApiHints) + - uid: OpenTK.Platform.IWindowComponent.Create(OpenTK.Platform.GraphicsApiHints) name: Create - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_Create_OpenTK_Core_Platform_GraphicsApiHints_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_Create_OpenTK_Platform_GraphicsApiHints_ - name: ( - - uid: OpenTK.Core.Platform.GraphicsApiHints + - uid: OpenTK.Platform.GraphicsApiHints name: GraphicsApiHints - href: OpenTK.Core.Platform.GraphicsApiHints.html + href: OpenTK.Platform.GraphicsApiHints.html - name: ) -- uid: OpenTK.Core.Platform.GraphicsApiHints - commentId: T:OpenTK.Core.Platform.GraphicsApiHints - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.GraphicsApiHints.html +- uid: OpenTK.Platform.GraphicsApiHints + commentId: T:OpenTK.Platform.GraphicsApiHints + parent: OpenTK.Platform + href: OpenTK.Platform.GraphicsApiHints.html name: GraphicsApiHints nameWithType: GraphicsApiHints - fullName: OpenTK.Core.Platform.GraphicsApiHints -- uid: OpenTK.Core.Platform.WindowHandle - commentId: T:OpenTK.Core.Platform.WindowHandle - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.WindowHandle.html + fullName: OpenTK.Platform.GraphicsApiHints +- uid: OpenTK.Platform.WindowHandle + commentId: T:OpenTK.Platform.WindowHandle + parent: OpenTK.Platform + href: OpenTK.Platform.WindowHandle.html name: WindowHandle nameWithType: WindowHandle - fullName: OpenTK.Core.Platform.WindowHandle + fullName: OpenTK.Platform.WindowHandle +- uid: OpenTK.Platform.IWindowComponent.IsWindowDestroyed(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.IsWindowDestroyed(OpenTK.Platform.WindowHandle) + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_IsWindowDestroyed_OpenTK_Platform_WindowHandle_ + name: IsWindowDestroyed(WindowHandle) + nameWithType: IWindowComponent.IsWindowDestroyed(WindowHandle) + fullName: OpenTK.Platform.IWindowComponent.IsWindowDestroyed(OpenTK.Platform.WindowHandle) + spec.csharp: + - uid: OpenTK.Platform.IWindowComponent.IsWindowDestroyed(OpenTK.Platform.WindowHandle) + name: IsWindowDestroyed + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_IsWindowDestroyed_OpenTK_Platform_WindowHandle_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IWindowComponent.IsWindowDestroyed(OpenTK.Platform.WindowHandle) + name: IsWindowDestroyed + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_IsWindowDestroyed_OpenTK_Platform_WindowHandle_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ) - uid: System.ArgumentNullException commentId: T:System.ArgumentNullException isExternal: true @@ -3398,122 +3325,97 @@ references: fullName: System.ArgumentNullException - uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.Destroy* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSWindowComponent.Destroy - href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_Destroy_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_Destroy_OpenTK_Platform_WindowHandle_ name: Destroy nameWithType: MacOSWindowComponent.Destroy fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.Destroy -- uid: OpenTK.Core.Platform.IWindowComponent.Destroy(OpenTK.Core.Platform.WindowHandle) - commentId: M:OpenTK.Core.Platform.IWindowComponent.Destroy(OpenTK.Core.Platform.WindowHandle) - parent: OpenTK.Core.Platform.IWindowComponent - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_Destroy_OpenTK_Core_Platform_WindowHandle_ +- uid: OpenTK.Platform.IWindowComponent.Destroy(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.Destroy(OpenTK.Platform.WindowHandle) + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_Destroy_OpenTK_Platform_WindowHandle_ name: Destroy(WindowHandle) nameWithType: IWindowComponent.Destroy(WindowHandle) - fullName: OpenTK.Core.Platform.IWindowComponent.Destroy(OpenTK.Core.Platform.WindowHandle) + fullName: OpenTK.Platform.IWindowComponent.Destroy(OpenTK.Platform.WindowHandle) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.Destroy(OpenTK.Core.Platform.WindowHandle) + - uid: OpenTK.Platform.IWindowComponent.Destroy(OpenTK.Platform.WindowHandle) name: Destroy - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_Destroy_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_Destroy_OpenTK_Platform_WindowHandle_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.Destroy(OpenTK.Core.Platform.WindowHandle) + - uid: OpenTK.Platform.IWindowComponent.Destroy(OpenTK.Platform.WindowHandle) name: Destroy - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_Destroy_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_Destroy_OpenTK_Platform_WindowHandle_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ) - uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.IsWindowDestroyed* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSWindowComponent.IsWindowDestroyed - href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_IsWindowDestroyed_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_IsWindowDestroyed_OpenTK_Platform_WindowHandle_ name: IsWindowDestroyed nameWithType: MacOSWindowComponent.IsWindowDestroyed fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.IsWindowDestroyed -- uid: OpenTK.Core.Platform.IWindowComponent.IsWindowDestroyed(OpenTK.Core.Platform.WindowHandle) - commentId: M:OpenTK.Core.Platform.IWindowComponent.IsWindowDestroyed(OpenTK.Core.Platform.WindowHandle) - parent: OpenTK.Core.Platform.IWindowComponent - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_IsWindowDestroyed_OpenTK_Core_Platform_WindowHandle_ - name: IsWindowDestroyed(WindowHandle) - nameWithType: IWindowComponent.IsWindowDestroyed(WindowHandle) - fullName: OpenTK.Core.Platform.IWindowComponent.IsWindowDestroyed(OpenTK.Core.Platform.WindowHandle) - spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.IsWindowDestroyed(OpenTK.Core.Platform.WindowHandle) - name: IsWindowDestroyed - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_IsWindowDestroyed_OpenTK_Core_Platform_WindowHandle_ - - name: ( - - uid: OpenTK.Core.Platform.WindowHandle - name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html - - name: ) - spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.IsWindowDestroyed(OpenTK.Core.Platform.WindowHandle) - name: IsWindowDestroyed - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_IsWindowDestroyed_OpenTK_Core_Platform_WindowHandle_ - - name: ( - - uid: OpenTK.Core.Platform.WindowHandle - name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html - - name: ) - uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetTitle* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetTitle - href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_GetTitle_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_GetTitle_OpenTK_Platform_WindowHandle_ name: GetTitle nameWithType: MacOSWindowComponent.GetTitle fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetTitle -- uid: OpenTK.Core.Platform.IWindowComponent.GetTitle(OpenTK.Core.Platform.WindowHandle) - commentId: M:OpenTK.Core.Platform.IWindowComponent.GetTitle(OpenTK.Core.Platform.WindowHandle) - parent: OpenTK.Core.Platform.IWindowComponent - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetTitle_OpenTK_Core_Platform_WindowHandle_ +- uid: OpenTK.Platform.IWindowComponent.GetTitle(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.GetTitle(OpenTK.Platform.WindowHandle) + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetTitle_OpenTK_Platform_WindowHandle_ name: GetTitle(WindowHandle) nameWithType: IWindowComponent.GetTitle(WindowHandle) - fullName: OpenTK.Core.Platform.IWindowComponent.GetTitle(OpenTK.Core.Platform.WindowHandle) + fullName: OpenTK.Platform.IWindowComponent.GetTitle(OpenTK.Platform.WindowHandle) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.GetTitle(OpenTK.Core.Platform.WindowHandle) + - uid: OpenTK.Platform.IWindowComponent.GetTitle(OpenTK.Platform.WindowHandle) name: GetTitle - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetTitle_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetTitle_OpenTK_Platform_WindowHandle_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.GetTitle(OpenTK.Core.Platform.WindowHandle) + - uid: OpenTK.Platform.IWindowComponent.GetTitle(OpenTK.Platform.WindowHandle) name: GetTitle - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetTitle_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetTitle_OpenTK_Platform_WindowHandle_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ) - uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetTitle* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetTitle - href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_SetTitle_OpenTK_Core_Platform_WindowHandle_System_String_ + href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_SetTitle_OpenTK_Platform_WindowHandle_System_String_ name: SetTitle nameWithType: MacOSWindowComponent.SetTitle fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetTitle -- uid: OpenTK.Core.Platform.IWindowComponent.SetTitle(OpenTK.Core.Platform.WindowHandle,System.String) - commentId: M:OpenTK.Core.Platform.IWindowComponent.SetTitle(OpenTK.Core.Platform.WindowHandle,System.String) - parent: OpenTK.Core.Platform.IWindowComponent +- uid: OpenTK.Platform.IWindowComponent.SetTitle(OpenTK.Platform.WindowHandle,System.String) + commentId: M:OpenTK.Platform.IWindowComponent.SetTitle(OpenTK.Platform.WindowHandle,System.String) + parent: OpenTK.Platform.IWindowComponent isExternal: true - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetTitle_OpenTK_Core_Platform_WindowHandle_System_String_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetTitle_OpenTK_Platform_WindowHandle_System_String_ name: SetTitle(WindowHandle, string) nameWithType: IWindowComponent.SetTitle(WindowHandle, string) - fullName: OpenTK.Core.Platform.IWindowComponent.SetTitle(OpenTK.Core.Platform.WindowHandle, string) + fullName: OpenTK.Platform.IWindowComponent.SetTitle(OpenTK.Platform.WindowHandle, string) nameWithType.vb: IWindowComponent.SetTitle(WindowHandle, String) - fullName.vb: OpenTK.Core.Platform.IWindowComponent.SetTitle(OpenTK.Core.Platform.WindowHandle, String) + fullName.vb: OpenTK.Platform.IWindowComponent.SetTitle(OpenTK.Platform.WindowHandle, String) name.vb: SetTitle(WindowHandle, String) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.SetTitle(OpenTK.Core.Platform.WindowHandle,System.String) + - uid: OpenTK.Platform.IWindowComponent.SetTitle(OpenTK.Platform.WindowHandle,System.String) name: SetTitle - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetTitle_OpenTK_Core_Platform_WindowHandle_System_String_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetTitle_OpenTK_Platform_WindowHandle_System_String_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - uid: System.String @@ -3522,13 +3424,13 @@ references: href: https://learn.microsoft.com/dotnet/api/system.string - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.SetTitle(OpenTK.Core.Platform.WindowHandle,System.String) + - uid: OpenTK.Platform.IWindowComponent.SetTitle(OpenTK.Platform.WindowHandle,System.String) name: SetTitle - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetTitle_OpenTK_Core_Platform_WindowHandle_System_String_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetTitle_OpenTK_Platform_WindowHandle_System_String_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - uid: System.String @@ -3536,122 +3438,87 @@ references: isExternal: true href: https://learn.microsoft.com/dotnet/api/system.string - name: ) -- uid: OpenTK.Core.Platform.PalNotImplementedException - commentId: T:OpenTK.Core.Platform.PalNotImplementedException - href: OpenTK.Core.Platform.PalNotImplementedException.html +- uid: OpenTK.Platform.PalNotImplementedException + commentId: T:OpenTK.Platform.PalNotImplementedException + href: OpenTK.Platform.PalNotImplementedException.html name: PalNotImplementedException nameWithType: PalNotImplementedException - fullName: OpenTK.Core.Platform.PalNotImplementedException + fullName: OpenTK.Platform.PalNotImplementedException - uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetIcon* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetIcon - href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_GetIcon_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_GetIcon_OpenTK_Platform_WindowHandle_ name: GetIcon nameWithType: MacOSWindowComponent.GetIcon fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetIcon -- uid: OpenTK.Core.Platform.IWindowComponent.GetIcon(OpenTK.Core.Platform.WindowHandle) - commentId: M:OpenTK.Core.Platform.IWindowComponent.GetIcon(OpenTK.Core.Platform.WindowHandle) - parent: OpenTK.Core.Platform.IWindowComponent - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetIcon_OpenTK_Core_Platform_WindowHandle_ +- uid: OpenTK.Platform.IWindowComponent.GetIcon(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.GetIcon(OpenTK.Platform.WindowHandle) + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetIcon_OpenTK_Platform_WindowHandle_ name: GetIcon(WindowHandle) nameWithType: IWindowComponent.GetIcon(WindowHandle) - fullName: OpenTK.Core.Platform.IWindowComponent.GetIcon(OpenTK.Core.Platform.WindowHandle) + fullName: OpenTK.Platform.IWindowComponent.GetIcon(OpenTK.Platform.WindowHandle) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.GetIcon(OpenTK.Core.Platform.WindowHandle) + - uid: OpenTK.Platform.IWindowComponent.GetIcon(OpenTK.Platform.WindowHandle) name: GetIcon - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetIcon_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetIcon_OpenTK_Platform_WindowHandle_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.GetIcon(OpenTK.Core.Platform.WindowHandle) + - uid: OpenTK.Platform.IWindowComponent.GetIcon(OpenTK.Platform.WindowHandle) name: GetIcon - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetIcon_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetIcon_OpenTK_Platform_WindowHandle_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ) -- uid: OpenTK.Core.Platform.IconHandle - commentId: T:OpenTK.Core.Platform.IconHandle - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.IconHandle.html +- uid: OpenTK.Platform.IconHandle + commentId: T:OpenTK.Platform.IconHandle + parent: OpenTK.Platform + href: OpenTK.Platform.IconHandle.html name: IconHandle nameWithType: IconHandle - fullName: OpenTK.Core.Platform.IconHandle + fullName: OpenTK.Platform.IconHandle - uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetIcon* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetIcon - href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_SetIcon_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_IconHandle_ + href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_SetIcon_OpenTK_Platform_WindowHandle_OpenTK_Platform_IconHandle_ name: SetIcon nameWithType: MacOSWindowComponent.SetIcon fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetIcon -- uid: OpenTK.Core.Platform.IWindowComponent.SetIcon(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.IconHandle) - commentId: M:OpenTK.Core.Platform.IWindowComponent.SetIcon(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.IconHandle) - parent: OpenTK.Core.Platform.IWindowComponent - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetIcon_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_IconHandle_ - name: SetIcon(WindowHandle, IconHandle) - nameWithType: IWindowComponent.SetIcon(WindowHandle, IconHandle) - fullName: OpenTK.Core.Platform.IWindowComponent.SetIcon(OpenTK.Core.Platform.WindowHandle, OpenTK.Core.Platform.IconHandle) - spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.SetIcon(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.IconHandle) - name: SetIcon - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetIcon_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_IconHandle_ - - name: ( - - uid: OpenTK.Core.Platform.WindowHandle - name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html - - name: ',' - - name: " " - - uid: OpenTK.Core.Platform.IconHandle - name: IconHandle - href: OpenTK.Core.Platform.IconHandle.html - - name: ) - spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.SetIcon(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.IconHandle) - name: SetIcon - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetIcon_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_IconHandle_ - - name: ( - - uid: OpenTK.Core.Platform.WindowHandle - name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html - - name: ',' - - name: " " - - uid: OpenTK.Core.Platform.IconHandle - name: IconHandle - href: OpenTK.Core.Platform.IconHandle.html - - name: ) - uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetDockIcon* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetDockIcon - href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_SetDockIcon_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_IconHandle_ + href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_SetDockIcon_OpenTK_Platform_WindowHandle_OpenTK_Platform_IconHandle_ name: SetDockIcon nameWithType: MacOSWindowComponent.SetDockIcon fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetDockIcon - uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetPosition* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetPosition - href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_GetPosition_OpenTK_Core_Platform_WindowHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_GetPosition_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ name: GetPosition nameWithType: MacOSWindowComponent.GetPosition fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetPosition -- uid: OpenTK.Core.Platform.IWindowComponent.GetPosition(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) - commentId: M:OpenTK.Core.Platform.IWindowComponent.GetPosition(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) - parent: OpenTK.Core.Platform.IWindowComponent +- uid: OpenTK.Platform.IWindowComponent.GetPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + commentId: M:OpenTK.Platform.IWindowComponent.GetPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + parent: OpenTK.Platform.IWindowComponent isExternal: true - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetPosition_OpenTK_Core_Platform_WindowHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetPosition_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ name: GetPosition(WindowHandle, out int, out int) nameWithType: IWindowComponent.GetPosition(WindowHandle, out int, out int) - fullName: OpenTK.Core.Platform.IWindowComponent.GetPosition(OpenTK.Core.Platform.WindowHandle, out int, out int) + fullName: OpenTK.Platform.IWindowComponent.GetPosition(OpenTK.Platform.WindowHandle, out int, out int) nameWithType.vb: IWindowComponent.GetPosition(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Core.Platform.IWindowComponent.GetPosition(OpenTK.Core.Platform.WindowHandle, Integer, Integer) + fullName.vb: OpenTK.Platform.IWindowComponent.GetPosition(OpenTK.Platform.WindowHandle, Integer, Integer) name.vb: GetPosition(WindowHandle, Integer, Integer) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.GetPosition(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) + - uid: OpenTK.Platform.IWindowComponent.GetPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) name: GetPosition - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetPosition_OpenTK_Core_Platform_WindowHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetPosition_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - name: out @@ -3670,13 +3537,13 @@ references: href: https://learn.microsoft.com/dotnet/api/system.int32 - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.GetPosition(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) + - uid: OpenTK.Platform.IWindowComponent.GetPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) name: GetPosition - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetPosition_OpenTK_Core_Platform_WindowHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetPosition_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - uid: System.Int32 @@ -3703,29 +3570,29 @@ references: name.vb: Integer - uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetPosition* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetPosition - href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_SetPosition_OpenTK_Core_Platform_WindowHandle_System_Int32_System_Int32_ + href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_SetPosition_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_ name: SetPosition nameWithType: MacOSWindowComponent.SetPosition fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetPosition -- uid: OpenTK.Core.Platform.IWindowComponent.SetPosition(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) - commentId: M:OpenTK.Core.Platform.IWindowComponent.SetPosition(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) - parent: OpenTK.Core.Platform.IWindowComponent +- uid: OpenTK.Platform.IWindowComponent.SetPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) + commentId: M:OpenTK.Platform.IWindowComponent.SetPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) + parent: OpenTK.Platform.IWindowComponent isExternal: true - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetPosition_OpenTK_Core_Platform_WindowHandle_System_Int32_System_Int32_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetPosition_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_ name: SetPosition(WindowHandle, int, int) nameWithType: IWindowComponent.SetPosition(WindowHandle, int, int) - fullName: OpenTK.Core.Platform.IWindowComponent.SetPosition(OpenTK.Core.Platform.WindowHandle, int, int) + fullName: OpenTK.Platform.IWindowComponent.SetPosition(OpenTK.Platform.WindowHandle, int, int) nameWithType.vb: IWindowComponent.SetPosition(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Core.Platform.IWindowComponent.SetPosition(OpenTK.Core.Platform.WindowHandle, Integer, Integer) + fullName.vb: OpenTK.Platform.IWindowComponent.SetPosition(OpenTK.Platform.WindowHandle, Integer, Integer) name.vb: SetPosition(WindowHandle, Integer, Integer) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.SetPosition(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) + - uid: OpenTK.Platform.IWindowComponent.SetPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) name: SetPosition - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetPosition_OpenTK_Core_Platform_WindowHandle_System_Int32_System_Int32_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetPosition_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - uid: System.Int32 @@ -3740,13 +3607,13 @@ references: href: https://learn.microsoft.com/dotnet/api/system.int32 - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.SetPosition(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) + - uid: OpenTK.Platform.IWindowComponent.SetPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) name: SetPosition - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetPosition_OpenTK_Core_Platform_WindowHandle_System_Int32_System_Int32_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetPosition_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - uid: System.Int32 @@ -3762,29 +3629,29 @@ references: - name: ) - uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetSize* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetSize - href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_GetSize_OpenTK_Core_Platform_WindowHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_GetSize_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ name: GetSize nameWithType: MacOSWindowComponent.GetSize fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetSize -- uid: OpenTK.Core.Platform.IWindowComponent.GetSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) - commentId: M:OpenTK.Core.Platform.IWindowComponent.GetSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) - parent: OpenTK.Core.Platform.IWindowComponent +- uid: OpenTK.Platform.IWindowComponent.GetSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + commentId: M:OpenTK.Platform.IWindowComponent.GetSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + parent: OpenTK.Platform.IWindowComponent isExternal: true - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetSize_OpenTK_Core_Platform_WindowHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetSize_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ name: GetSize(WindowHandle, out int, out int) nameWithType: IWindowComponent.GetSize(WindowHandle, out int, out int) - fullName: OpenTK.Core.Platform.IWindowComponent.GetSize(OpenTK.Core.Platform.WindowHandle, out int, out int) + fullName: OpenTK.Platform.IWindowComponent.GetSize(OpenTK.Platform.WindowHandle, out int, out int) nameWithType.vb: IWindowComponent.GetSize(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Core.Platform.IWindowComponent.GetSize(OpenTK.Core.Platform.WindowHandle, Integer, Integer) + fullName.vb: OpenTK.Platform.IWindowComponent.GetSize(OpenTK.Platform.WindowHandle, Integer, Integer) name.vb: GetSize(WindowHandle, Integer, Integer) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.GetSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) + - uid: OpenTK.Platform.IWindowComponent.GetSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) name: GetSize - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetSize_OpenTK_Core_Platform_WindowHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetSize_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - name: out @@ -3803,13 +3670,13 @@ references: href: https://learn.microsoft.com/dotnet/api/system.int32 - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.GetSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) + - uid: OpenTK.Platform.IWindowComponent.GetSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) name: GetSize - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetSize_OpenTK_Core_Platform_WindowHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetSize_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - uid: System.Int32 @@ -3825,29 +3692,29 @@ references: - name: ) - uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetSize* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetSize - href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_SetSize_OpenTK_Core_Platform_WindowHandle_System_Int32_System_Int32_ + href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_SetSize_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_ name: SetSize nameWithType: MacOSWindowComponent.SetSize fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetSize -- uid: OpenTK.Core.Platform.IWindowComponent.SetSize(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) - commentId: M:OpenTK.Core.Platform.IWindowComponent.SetSize(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) - parent: OpenTK.Core.Platform.IWindowComponent +- uid: OpenTK.Platform.IWindowComponent.SetSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) + commentId: M:OpenTK.Platform.IWindowComponent.SetSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) + parent: OpenTK.Platform.IWindowComponent isExternal: true - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetSize_OpenTK_Core_Platform_WindowHandle_System_Int32_System_Int32_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetSize_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_ name: SetSize(WindowHandle, int, int) nameWithType: IWindowComponent.SetSize(WindowHandle, int, int) - fullName: OpenTK.Core.Platform.IWindowComponent.SetSize(OpenTK.Core.Platform.WindowHandle, int, int) + fullName: OpenTK.Platform.IWindowComponent.SetSize(OpenTK.Platform.WindowHandle, int, int) nameWithType.vb: IWindowComponent.SetSize(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Core.Platform.IWindowComponent.SetSize(OpenTK.Core.Platform.WindowHandle, Integer, Integer) + fullName.vb: OpenTK.Platform.IWindowComponent.SetSize(OpenTK.Platform.WindowHandle, Integer, Integer) name.vb: SetSize(WindowHandle, Integer, Integer) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.SetSize(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) + - uid: OpenTK.Platform.IWindowComponent.SetSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) name: SetSize - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetSize_OpenTK_Core_Platform_WindowHandle_System_Int32_System_Int32_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetSize_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - uid: System.Int32 @@ -3862,13 +3729,13 @@ references: href: https://learn.microsoft.com/dotnet/api/system.int32 - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.SetSize(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) + - uid: OpenTK.Platform.IWindowComponent.SetSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) name: SetSize - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetSize_OpenTK_Core_Platform_WindowHandle_System_Int32_System_Int32_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetSize_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - uid: System.Int32 @@ -3884,29 +3751,29 @@ references: - name: ) - uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetBounds* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetBounds - href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_GetBounds_OpenTK_Core_Platform_WindowHandle_System_Int32__System_Int32__System_Int32__System_Int32__ + href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_GetBounds_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__System_Int32__System_Int32__ name: GetBounds nameWithType: MacOSWindowComponent.GetBounds fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetBounds -- uid: OpenTK.Core.Platform.IWindowComponent.GetBounds(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) - commentId: M:OpenTK.Core.Platform.IWindowComponent.GetBounds(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) - parent: OpenTK.Core.Platform.IWindowComponent +- uid: OpenTK.Platform.IWindowComponent.GetBounds(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) + commentId: M:OpenTK.Platform.IWindowComponent.GetBounds(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) + parent: OpenTK.Platform.IWindowComponent isExternal: true - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetBounds_OpenTK_Core_Platform_WindowHandle_System_Int32__System_Int32__System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetBounds_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__System_Int32__System_Int32__ name: GetBounds(WindowHandle, out int, out int, out int, out int) nameWithType: IWindowComponent.GetBounds(WindowHandle, out int, out int, out int, out int) - fullName: OpenTK.Core.Platform.IWindowComponent.GetBounds(OpenTK.Core.Platform.WindowHandle, out int, out int, out int, out int) + fullName: OpenTK.Platform.IWindowComponent.GetBounds(OpenTK.Platform.WindowHandle, out int, out int, out int, out int) nameWithType.vb: IWindowComponent.GetBounds(WindowHandle, Integer, Integer, Integer, Integer) - fullName.vb: OpenTK.Core.Platform.IWindowComponent.GetBounds(OpenTK.Core.Platform.WindowHandle, Integer, Integer, Integer, Integer) + fullName.vb: OpenTK.Platform.IWindowComponent.GetBounds(OpenTK.Platform.WindowHandle, Integer, Integer, Integer, Integer) name.vb: GetBounds(WindowHandle, Integer, Integer, Integer, Integer) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.GetBounds(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) + - uid: OpenTK.Platform.IWindowComponent.GetBounds(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) name: GetBounds - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetBounds_OpenTK_Core_Platform_WindowHandle_System_Int32__System_Int32__System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetBounds_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__System_Int32__System_Int32__ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - name: out @@ -3941,13 +3808,13 @@ references: href: https://learn.microsoft.com/dotnet/api/system.int32 - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.GetBounds(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) + - uid: OpenTK.Platform.IWindowComponent.GetBounds(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) name: GetBounds - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetBounds_OpenTK_Core_Platform_WindowHandle_System_Int32__System_Int32__System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetBounds_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__System_Int32__System_Int32__ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - uid: System.Int32 @@ -3975,29 +3842,29 @@ references: - name: ) - uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetBounds* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetBounds - href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_SetBounds_OpenTK_Core_Platform_WindowHandle_System_Int32_System_Int32_System_Int32_System_Int32_ + href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_SetBounds_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_System_Int32_System_Int32_ name: SetBounds nameWithType: MacOSWindowComponent.SetBounds fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetBounds -- uid: OpenTK.Core.Platform.IWindowComponent.SetBounds(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) - commentId: M:OpenTK.Core.Platform.IWindowComponent.SetBounds(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) - parent: OpenTK.Core.Platform.IWindowComponent +- uid: OpenTK.Platform.IWindowComponent.SetBounds(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) + commentId: M:OpenTK.Platform.IWindowComponent.SetBounds(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) + parent: OpenTK.Platform.IWindowComponent isExternal: true - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetBounds_OpenTK_Core_Platform_WindowHandle_System_Int32_System_Int32_System_Int32_System_Int32_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetBounds_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_System_Int32_System_Int32_ name: SetBounds(WindowHandle, int, int, int, int) nameWithType: IWindowComponent.SetBounds(WindowHandle, int, int, int, int) - fullName: OpenTK.Core.Platform.IWindowComponent.SetBounds(OpenTK.Core.Platform.WindowHandle, int, int, int, int) + fullName: OpenTK.Platform.IWindowComponent.SetBounds(OpenTK.Platform.WindowHandle, int, int, int, int) nameWithType.vb: IWindowComponent.SetBounds(WindowHandle, Integer, Integer, Integer, Integer) - fullName.vb: OpenTK.Core.Platform.IWindowComponent.SetBounds(OpenTK.Core.Platform.WindowHandle, Integer, Integer, Integer, Integer) + fullName.vb: OpenTK.Platform.IWindowComponent.SetBounds(OpenTK.Platform.WindowHandle, Integer, Integer, Integer, Integer) name.vb: SetBounds(WindowHandle, Integer, Integer, Integer, Integer) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.SetBounds(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) + - uid: OpenTK.Platform.IWindowComponent.SetBounds(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) name: SetBounds - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetBounds_OpenTK_Core_Platform_WindowHandle_System_Int32_System_Int32_System_Int32_System_Int32_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetBounds_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_System_Int32_System_Int32_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - uid: System.Int32 @@ -4024,13 +3891,13 @@ references: href: https://learn.microsoft.com/dotnet/api/system.int32 - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.SetBounds(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) + - uid: OpenTK.Platform.IWindowComponent.SetBounds(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) name: SetBounds - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetBounds_OpenTK_Core_Platform_WindowHandle_System_Int32_System_Int32_System_Int32_System_Int32_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetBounds_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_System_Int32_System_Int32_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - uid: System.Int32 @@ -4058,29 +3925,29 @@ references: - name: ) - uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetClientPosition* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetClientPosition - href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_GetClientPosition_OpenTK_Core_Platform_WindowHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_GetClientPosition_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ name: GetClientPosition nameWithType: MacOSWindowComponent.GetClientPosition fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetClientPosition -- uid: OpenTK.Core.Platform.IWindowComponent.GetClientPosition(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) - commentId: M:OpenTK.Core.Platform.IWindowComponent.GetClientPosition(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) - parent: OpenTK.Core.Platform.IWindowComponent +- uid: OpenTK.Platform.IWindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + commentId: M:OpenTK.Platform.IWindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + parent: OpenTK.Platform.IWindowComponent isExternal: true - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetClientPosition_OpenTK_Core_Platform_WindowHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetClientPosition_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ name: GetClientPosition(WindowHandle, out int, out int) nameWithType: IWindowComponent.GetClientPosition(WindowHandle, out int, out int) - fullName: OpenTK.Core.Platform.IWindowComponent.GetClientPosition(OpenTK.Core.Platform.WindowHandle, out int, out int) + fullName: OpenTK.Platform.IWindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle, out int, out int) nameWithType.vb: IWindowComponent.GetClientPosition(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Core.Platform.IWindowComponent.GetClientPosition(OpenTK.Core.Platform.WindowHandle, Integer, Integer) + fullName.vb: OpenTK.Platform.IWindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle, Integer, Integer) name.vb: GetClientPosition(WindowHandle, Integer, Integer) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.GetClientPosition(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) + - uid: OpenTK.Platform.IWindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) name: GetClientPosition - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetClientPosition_OpenTK_Core_Platform_WindowHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetClientPosition_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - name: out @@ -4099,13 +3966,13 @@ references: href: https://learn.microsoft.com/dotnet/api/system.int32 - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.GetClientPosition(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) + - uid: OpenTK.Platform.IWindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) name: GetClientPosition - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetClientPosition_OpenTK_Core_Platform_WindowHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetClientPosition_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - uid: System.Int32 @@ -4121,29 +3988,29 @@ references: - name: ) - uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetClientPosition* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetClientPosition - href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_SetClientPosition_OpenTK_Core_Platform_WindowHandle_System_Int32_System_Int32_ + href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_SetClientPosition_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_ name: SetClientPosition nameWithType: MacOSWindowComponent.SetClientPosition fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetClientPosition -- uid: OpenTK.Core.Platform.IWindowComponent.SetClientPosition(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) - commentId: M:OpenTK.Core.Platform.IWindowComponent.SetClientPosition(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) - parent: OpenTK.Core.Platform.IWindowComponent +- uid: OpenTK.Platform.IWindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) + commentId: M:OpenTK.Platform.IWindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) + parent: OpenTK.Platform.IWindowComponent isExternal: true - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetClientPosition_OpenTK_Core_Platform_WindowHandle_System_Int32_System_Int32_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetClientPosition_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_ name: SetClientPosition(WindowHandle, int, int) nameWithType: IWindowComponent.SetClientPosition(WindowHandle, int, int) - fullName: OpenTK.Core.Platform.IWindowComponent.SetClientPosition(OpenTK.Core.Platform.WindowHandle, int, int) + fullName: OpenTK.Platform.IWindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle, int, int) nameWithType.vb: IWindowComponent.SetClientPosition(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Core.Platform.IWindowComponent.SetClientPosition(OpenTK.Core.Platform.WindowHandle, Integer, Integer) + fullName.vb: OpenTK.Platform.IWindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle, Integer, Integer) name.vb: SetClientPosition(WindowHandle, Integer, Integer) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.SetClientPosition(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) + - uid: OpenTK.Platform.IWindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) name: SetClientPosition - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetClientPosition_OpenTK_Core_Platform_WindowHandle_System_Int32_System_Int32_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetClientPosition_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - uid: System.Int32 @@ -4158,13 +4025,13 @@ references: href: https://learn.microsoft.com/dotnet/api/system.int32 - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.SetClientPosition(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) + - uid: OpenTK.Platform.IWindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) name: SetClientPosition - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetClientPosition_OpenTK_Core_Platform_WindowHandle_System_Int32_System_Int32_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetClientPosition_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - uid: System.Int32 @@ -4180,29 +4047,29 @@ references: - name: ) - uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetClientSize* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetClientSize - href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_GetClientSize_OpenTK_Core_Platform_WindowHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_GetClientSize_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ name: GetClientSize nameWithType: MacOSWindowComponent.GetClientSize fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetClientSize -- uid: OpenTK.Core.Platform.IWindowComponent.GetClientSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) - commentId: M:OpenTK.Core.Platform.IWindowComponent.GetClientSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) - parent: OpenTK.Core.Platform.IWindowComponent +- uid: OpenTK.Platform.IWindowComponent.GetClientSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + commentId: M:OpenTK.Platform.IWindowComponent.GetClientSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + parent: OpenTK.Platform.IWindowComponent isExternal: true - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetClientSize_OpenTK_Core_Platform_WindowHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetClientSize_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ name: GetClientSize(WindowHandle, out int, out int) nameWithType: IWindowComponent.GetClientSize(WindowHandle, out int, out int) - fullName: OpenTK.Core.Platform.IWindowComponent.GetClientSize(OpenTK.Core.Platform.WindowHandle, out int, out int) + fullName: OpenTK.Platform.IWindowComponent.GetClientSize(OpenTK.Platform.WindowHandle, out int, out int) nameWithType.vb: IWindowComponent.GetClientSize(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Core.Platform.IWindowComponent.GetClientSize(OpenTK.Core.Platform.WindowHandle, Integer, Integer) + fullName.vb: OpenTK.Platform.IWindowComponent.GetClientSize(OpenTK.Platform.WindowHandle, Integer, Integer) name.vb: GetClientSize(WindowHandle, Integer, Integer) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.GetClientSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) + - uid: OpenTK.Platform.IWindowComponent.GetClientSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) name: GetClientSize - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetClientSize_OpenTK_Core_Platform_WindowHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetClientSize_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - name: out @@ -4221,13 +4088,13 @@ references: href: https://learn.microsoft.com/dotnet/api/system.int32 - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.GetClientSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) + - uid: OpenTK.Platform.IWindowComponent.GetClientSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) name: GetClientSize - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetClientSize_OpenTK_Core_Platform_WindowHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetClientSize_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - uid: System.Int32 @@ -4243,29 +4110,29 @@ references: - name: ) - uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetClientSize* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetClientSize - href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_SetClientSize_OpenTK_Core_Platform_WindowHandle_System_Int32_System_Int32_ + href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_SetClientSize_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_ name: SetClientSize nameWithType: MacOSWindowComponent.SetClientSize fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetClientSize -- uid: OpenTK.Core.Platform.IWindowComponent.SetClientSize(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) - commentId: M:OpenTK.Core.Platform.IWindowComponent.SetClientSize(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) - parent: OpenTK.Core.Platform.IWindowComponent +- uid: OpenTK.Platform.IWindowComponent.SetClientSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) + commentId: M:OpenTK.Platform.IWindowComponent.SetClientSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) + parent: OpenTK.Platform.IWindowComponent isExternal: true - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetClientSize_OpenTK_Core_Platform_WindowHandle_System_Int32_System_Int32_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetClientSize_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_ name: SetClientSize(WindowHandle, int, int) nameWithType: IWindowComponent.SetClientSize(WindowHandle, int, int) - fullName: OpenTK.Core.Platform.IWindowComponent.SetClientSize(OpenTK.Core.Platform.WindowHandle, int, int) + fullName: OpenTK.Platform.IWindowComponent.SetClientSize(OpenTK.Platform.WindowHandle, int, int) nameWithType.vb: IWindowComponent.SetClientSize(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Core.Platform.IWindowComponent.SetClientSize(OpenTK.Core.Platform.WindowHandle, Integer, Integer) + fullName.vb: OpenTK.Platform.IWindowComponent.SetClientSize(OpenTK.Platform.WindowHandle, Integer, Integer) name.vb: SetClientSize(WindowHandle, Integer, Integer) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.SetClientSize(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) + - uid: OpenTK.Platform.IWindowComponent.SetClientSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) name: SetClientSize - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetClientSize_OpenTK_Core_Platform_WindowHandle_System_Int32_System_Int32_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetClientSize_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - uid: System.Int32 @@ -4280,13 +4147,13 @@ references: href: https://learn.microsoft.com/dotnet/api/system.int32 - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.SetClientSize(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32) + - uid: OpenTK.Platform.IWindowComponent.SetClientSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) name: SetClientSize - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetClientSize_OpenTK_Core_Platform_WindowHandle_System_Int32_System_Int32_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetClientSize_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - uid: System.Int32 @@ -4302,29 +4169,29 @@ references: - name: ) - uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetClientBounds* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetClientBounds - href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_GetClientBounds_OpenTK_Core_Platform_WindowHandle_System_Int32__System_Int32__System_Int32__System_Int32__ + href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_GetClientBounds_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__System_Int32__System_Int32__ name: GetClientBounds nameWithType: MacOSWindowComponent.GetClientBounds fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetClientBounds -- uid: OpenTK.Core.Platform.IWindowComponent.GetClientBounds(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) - commentId: M:OpenTK.Core.Platform.IWindowComponent.GetClientBounds(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) - parent: OpenTK.Core.Platform.IWindowComponent +- uid: OpenTK.Platform.IWindowComponent.GetClientBounds(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) + commentId: M:OpenTK.Platform.IWindowComponent.GetClientBounds(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) + parent: OpenTK.Platform.IWindowComponent isExternal: true - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetClientBounds_OpenTK_Core_Platform_WindowHandle_System_Int32__System_Int32__System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetClientBounds_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__System_Int32__System_Int32__ name: GetClientBounds(WindowHandle, out int, out int, out int, out int) nameWithType: IWindowComponent.GetClientBounds(WindowHandle, out int, out int, out int, out int) - fullName: OpenTK.Core.Platform.IWindowComponent.GetClientBounds(OpenTK.Core.Platform.WindowHandle, out int, out int, out int, out int) + fullName: OpenTK.Platform.IWindowComponent.GetClientBounds(OpenTK.Platform.WindowHandle, out int, out int, out int, out int) nameWithType.vb: IWindowComponent.GetClientBounds(WindowHandle, Integer, Integer, Integer, Integer) - fullName.vb: OpenTK.Core.Platform.IWindowComponent.GetClientBounds(OpenTK.Core.Platform.WindowHandle, Integer, Integer, Integer, Integer) + fullName.vb: OpenTK.Platform.IWindowComponent.GetClientBounds(OpenTK.Platform.WindowHandle, Integer, Integer, Integer, Integer) name.vb: GetClientBounds(WindowHandle, Integer, Integer, Integer, Integer) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.GetClientBounds(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) + - uid: OpenTK.Platform.IWindowComponent.GetClientBounds(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) name: GetClientBounds - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetClientBounds_OpenTK_Core_Platform_WindowHandle_System_Int32__System_Int32__System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetClientBounds_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__System_Int32__System_Int32__ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - name: out @@ -4359,13 +4226,13 @@ references: href: https://learn.microsoft.com/dotnet/api/system.int32 - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.GetClientBounds(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) + - uid: OpenTK.Platform.IWindowComponent.GetClientBounds(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) name: GetClientBounds - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetClientBounds_OpenTK_Core_Platform_WindowHandle_System_Int32__System_Int32__System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetClientBounds_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__System_Int32__System_Int32__ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - uid: System.Int32 @@ -4393,29 +4260,29 @@ references: - name: ) - uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetClientBounds* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetClientBounds - href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_SetClientBounds_OpenTK_Core_Platform_WindowHandle_System_Int32_System_Int32_System_Int32_System_Int32_ + href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_SetClientBounds_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_System_Int32_System_Int32_ name: SetClientBounds nameWithType: MacOSWindowComponent.SetClientBounds fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetClientBounds -- uid: OpenTK.Core.Platform.IWindowComponent.SetClientBounds(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) - commentId: M:OpenTK.Core.Platform.IWindowComponent.SetClientBounds(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) - parent: OpenTK.Core.Platform.IWindowComponent +- uid: OpenTK.Platform.IWindowComponent.SetClientBounds(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) + commentId: M:OpenTK.Platform.IWindowComponent.SetClientBounds(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) + parent: OpenTK.Platform.IWindowComponent isExternal: true - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetClientBounds_OpenTK_Core_Platform_WindowHandle_System_Int32_System_Int32_System_Int32_System_Int32_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetClientBounds_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_System_Int32_System_Int32_ name: SetClientBounds(WindowHandle, int, int, int, int) nameWithType: IWindowComponent.SetClientBounds(WindowHandle, int, int, int, int) - fullName: OpenTK.Core.Platform.IWindowComponent.SetClientBounds(OpenTK.Core.Platform.WindowHandle, int, int, int, int) + fullName: OpenTK.Platform.IWindowComponent.SetClientBounds(OpenTK.Platform.WindowHandle, int, int, int, int) nameWithType.vb: IWindowComponent.SetClientBounds(WindowHandle, Integer, Integer, Integer, Integer) - fullName.vb: OpenTK.Core.Platform.IWindowComponent.SetClientBounds(OpenTK.Core.Platform.WindowHandle, Integer, Integer, Integer, Integer) + fullName.vb: OpenTK.Platform.IWindowComponent.SetClientBounds(OpenTK.Platform.WindowHandle, Integer, Integer, Integer, Integer) name.vb: SetClientBounds(WindowHandle, Integer, Integer, Integer, Integer) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.SetClientBounds(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) + - uid: OpenTK.Platform.IWindowComponent.SetClientBounds(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) name: SetClientBounds - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetClientBounds_OpenTK_Core_Platform_WindowHandle_System_Int32_System_Int32_System_Int32_System_Int32_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetClientBounds_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_System_Int32_System_Int32_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - uid: System.Int32 @@ -4442,13 +4309,13 @@ references: href: https://learn.microsoft.com/dotnet/api/system.int32 - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.SetClientBounds(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) + - uid: OpenTK.Platform.IWindowComponent.SetClientBounds(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) name: SetClientBounds - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetClientBounds_OpenTK_Core_Platform_WindowHandle_System_Int32_System_Int32_System_Int32_System_Int32_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetClientBounds_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_System_Int32_System_Int32_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - uid: System.Int32 @@ -4476,29 +4343,29 @@ references: - name: ) - uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetFramebufferSize* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetFramebufferSize - href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_GetFramebufferSize_OpenTK_Core_Platform_WindowHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_GetFramebufferSize_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ name: GetFramebufferSize nameWithType: MacOSWindowComponent.GetFramebufferSize fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetFramebufferSize -- uid: OpenTK.Core.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) - commentId: M:OpenTK.Core.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) - parent: OpenTK.Core.Platform.IWindowComponent +- uid: OpenTK.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + commentId: M:OpenTK.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + parent: OpenTK.Platform.IWindowComponent isExternal: true - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetFramebufferSize_OpenTK_Core_Platform_WindowHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetFramebufferSize_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ name: GetFramebufferSize(WindowHandle, out int, out int) nameWithType: IWindowComponent.GetFramebufferSize(WindowHandle, out int, out int) - fullName: OpenTK.Core.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Core.Platform.WindowHandle, out int, out int) + fullName: OpenTK.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle, out int, out int) nameWithType.vb: IWindowComponent.GetFramebufferSize(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Core.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Core.Platform.WindowHandle, Integer, Integer) + fullName.vb: OpenTK.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle, Integer, Integer) name.vb: GetFramebufferSize(WindowHandle, Integer, Integer) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) + - uid: OpenTK.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) name: GetFramebufferSize - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetFramebufferSize_OpenTK_Core_Platform_WindowHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetFramebufferSize_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - name: out @@ -4517,13 +4384,13 @@ references: href: https://learn.microsoft.com/dotnet/api/system.int32 - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Core.Platform.WindowHandle,System.Int32@,System.Int32@) + - uid: OpenTK.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) name: GetFramebufferSize - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetFramebufferSize_OpenTK_Core_Platform_WindowHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetFramebufferSize_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - uid: System.Int32 @@ -4539,29 +4406,29 @@ references: - name: ) - uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetMaxClientSize* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetMaxClientSize - href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_GetMaxClientSize_OpenTK_Core_Platform_WindowHandle_System_Nullable_System_Int32___System_Nullable_System_Int32___ + href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_GetMaxClientSize_OpenTK_Platform_WindowHandle_System_Nullable_System_Int32___System_Nullable_System_Int32___ name: GetMaxClientSize nameWithType: MacOSWindowComponent.GetMaxClientSize fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetMaxClientSize -- uid: OpenTK.Core.Platform.IWindowComponent.GetMaxClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) - commentId: M:OpenTK.Core.Platform.IWindowComponent.GetMaxClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) - parent: OpenTK.Core.Platform.IWindowComponent +- uid: OpenTK.Platform.IWindowComponent.GetMaxClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) + commentId: M:OpenTK.Platform.IWindowComponent.GetMaxClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) + parent: OpenTK.Platform.IWindowComponent isExternal: true - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetMaxClientSize_OpenTK_Core_Platform_WindowHandle_System_Nullable_System_Int32___System_Nullable_System_Int32___ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetMaxClientSize_OpenTK_Platform_WindowHandle_System_Nullable_System_Int32___System_Nullable_System_Int32___ name: GetMaxClientSize(WindowHandle, out int?, out int?) nameWithType: IWindowComponent.GetMaxClientSize(WindowHandle, out int?, out int?) - fullName: OpenTK.Core.Platform.IWindowComponent.GetMaxClientSize(OpenTK.Core.Platform.WindowHandle, out int?, out int?) + fullName: OpenTK.Platform.IWindowComponent.GetMaxClientSize(OpenTK.Platform.WindowHandle, out int?, out int?) nameWithType.vb: IWindowComponent.GetMaxClientSize(WindowHandle, Integer?, Integer?) - fullName.vb: OpenTK.Core.Platform.IWindowComponent.GetMaxClientSize(OpenTK.Core.Platform.WindowHandle, Integer?, Integer?) + fullName.vb: OpenTK.Platform.IWindowComponent.GetMaxClientSize(OpenTK.Platform.WindowHandle, Integer?, Integer?) name.vb: GetMaxClientSize(WindowHandle, Integer?, Integer?) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.GetMaxClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) + - uid: OpenTK.Platform.IWindowComponent.GetMaxClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) name: GetMaxClientSize - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetMaxClientSize_OpenTK_Core_Platform_WindowHandle_System_Nullable_System_Int32___System_Nullable_System_Int32___ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetMaxClientSize_OpenTK_Platform_WindowHandle_System_Nullable_System_Int32___System_Nullable_System_Int32___ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - name: out @@ -4582,13 +4449,13 @@ references: - name: '?' - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.GetMaxClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) + - uid: OpenTK.Platform.IWindowComponent.GetMaxClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) name: GetMaxClientSize - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetMaxClientSize_OpenTK_Core_Platform_WindowHandle_System_Nullable_System_Int32___System_Nullable_System_Int32___ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetMaxClientSize_OpenTK_Platform_WindowHandle_System_Nullable_System_Int32___System_Nullable_System_Int32___ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - uid: System.Int32 @@ -4657,29 +4524,29 @@ references: - name: ) - uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetMaxClientSize* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetMaxClientSize - href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_SetMaxClientSize_OpenTK_Core_Platform_WindowHandle_System_Nullable_System_Int32__System_Nullable_System_Int32__ + href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_SetMaxClientSize_OpenTK_Platform_WindowHandle_System_Nullable_System_Int32__System_Nullable_System_Int32__ name: SetMaxClientSize nameWithType: MacOSWindowComponent.SetMaxClientSize fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetMaxClientSize -- uid: OpenTK.Core.Platform.IWindowComponent.SetMaxClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) - commentId: M:OpenTK.Core.Platform.IWindowComponent.SetMaxClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) - parent: OpenTK.Core.Platform.IWindowComponent +- uid: OpenTK.Platform.IWindowComponent.SetMaxClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) + commentId: M:OpenTK.Platform.IWindowComponent.SetMaxClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) + parent: OpenTK.Platform.IWindowComponent isExternal: true - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetMaxClientSize_OpenTK_Core_Platform_WindowHandle_System_Nullable_System_Int32__System_Nullable_System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetMaxClientSize_OpenTK_Platform_WindowHandle_System_Nullable_System_Int32__System_Nullable_System_Int32__ name: SetMaxClientSize(WindowHandle, int?, int?) nameWithType: IWindowComponent.SetMaxClientSize(WindowHandle, int?, int?) - fullName: OpenTK.Core.Platform.IWindowComponent.SetMaxClientSize(OpenTK.Core.Platform.WindowHandle, int?, int?) + fullName: OpenTK.Platform.IWindowComponent.SetMaxClientSize(OpenTK.Platform.WindowHandle, int?, int?) nameWithType.vb: IWindowComponent.SetMaxClientSize(WindowHandle, Integer?, Integer?) - fullName.vb: OpenTK.Core.Platform.IWindowComponent.SetMaxClientSize(OpenTK.Core.Platform.WindowHandle, Integer?, Integer?) + fullName.vb: OpenTK.Platform.IWindowComponent.SetMaxClientSize(OpenTK.Platform.WindowHandle, Integer?, Integer?) name.vb: SetMaxClientSize(WindowHandle, Integer?, Integer?) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.SetMaxClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) + - uid: OpenTK.Platform.IWindowComponent.SetMaxClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) name: SetMaxClientSize - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetMaxClientSize_OpenTK_Core_Platform_WindowHandle_System_Nullable_System_Int32__System_Nullable_System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetMaxClientSize_OpenTK_Platform_WindowHandle_System_Nullable_System_Int32__System_Nullable_System_Int32__ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - uid: System.Int32 @@ -4696,13 +4563,13 @@ references: - name: '?' - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.SetMaxClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) + - uid: OpenTK.Platform.IWindowComponent.SetMaxClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) name: SetMaxClientSize - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetMaxClientSize_OpenTK_Core_Platform_WindowHandle_System_Nullable_System_Int32__System_Nullable_System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetMaxClientSize_OpenTK_Platform_WindowHandle_System_Nullable_System_Int32__System_Nullable_System_Int32__ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - uid: System.Int32 @@ -4720,29 +4587,29 @@ references: - name: ) - uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetMinClientSize* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetMinClientSize - href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_GetMinClientSize_OpenTK_Core_Platform_WindowHandle_System_Nullable_System_Int32___System_Nullable_System_Int32___ + href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_GetMinClientSize_OpenTK_Platform_WindowHandle_System_Nullable_System_Int32___System_Nullable_System_Int32___ name: GetMinClientSize nameWithType: MacOSWindowComponent.GetMinClientSize fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetMinClientSize -- uid: OpenTK.Core.Platform.IWindowComponent.GetMinClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) - commentId: M:OpenTK.Core.Platform.IWindowComponent.GetMinClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) - parent: OpenTK.Core.Platform.IWindowComponent +- uid: OpenTK.Platform.IWindowComponent.GetMinClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) + commentId: M:OpenTK.Platform.IWindowComponent.GetMinClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) + parent: OpenTK.Platform.IWindowComponent isExternal: true - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetMinClientSize_OpenTK_Core_Platform_WindowHandle_System_Nullable_System_Int32___System_Nullable_System_Int32___ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetMinClientSize_OpenTK_Platform_WindowHandle_System_Nullable_System_Int32___System_Nullable_System_Int32___ name: GetMinClientSize(WindowHandle, out int?, out int?) nameWithType: IWindowComponent.GetMinClientSize(WindowHandle, out int?, out int?) - fullName: OpenTK.Core.Platform.IWindowComponent.GetMinClientSize(OpenTK.Core.Platform.WindowHandle, out int?, out int?) + fullName: OpenTK.Platform.IWindowComponent.GetMinClientSize(OpenTK.Platform.WindowHandle, out int?, out int?) nameWithType.vb: IWindowComponent.GetMinClientSize(WindowHandle, Integer?, Integer?) - fullName.vb: OpenTK.Core.Platform.IWindowComponent.GetMinClientSize(OpenTK.Core.Platform.WindowHandle, Integer?, Integer?) + fullName.vb: OpenTK.Platform.IWindowComponent.GetMinClientSize(OpenTK.Platform.WindowHandle, Integer?, Integer?) name.vb: GetMinClientSize(WindowHandle, Integer?, Integer?) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.GetMinClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) + - uid: OpenTK.Platform.IWindowComponent.GetMinClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) name: GetMinClientSize - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetMinClientSize_OpenTK_Core_Platform_WindowHandle_System_Nullable_System_Int32___System_Nullable_System_Int32___ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetMinClientSize_OpenTK_Platform_WindowHandle_System_Nullable_System_Int32___System_Nullable_System_Int32___ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - name: out @@ -4763,13 +4630,13 @@ references: - name: '?' - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.GetMinClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) + - uid: OpenTK.Platform.IWindowComponent.GetMinClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) name: GetMinClientSize - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetMinClientSize_OpenTK_Core_Platform_WindowHandle_System_Nullable_System_Int32___System_Nullable_System_Int32___ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetMinClientSize_OpenTK_Platform_WindowHandle_System_Nullable_System_Int32___System_Nullable_System_Int32___ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - uid: System.Int32 @@ -4787,29 +4654,29 @@ references: - name: ) - uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetMinClientSize* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetMinClientSize - href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_SetMinClientSize_OpenTK_Core_Platform_WindowHandle_System_Nullable_System_Int32__System_Nullable_System_Int32__ + href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_SetMinClientSize_OpenTK_Platform_WindowHandle_System_Nullable_System_Int32__System_Nullable_System_Int32__ name: SetMinClientSize nameWithType: MacOSWindowComponent.SetMinClientSize fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetMinClientSize -- uid: OpenTK.Core.Platform.IWindowComponent.SetMinClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) - commentId: M:OpenTK.Core.Platform.IWindowComponent.SetMinClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) - parent: OpenTK.Core.Platform.IWindowComponent +- uid: OpenTK.Platform.IWindowComponent.SetMinClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) + commentId: M:OpenTK.Platform.IWindowComponent.SetMinClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) + parent: OpenTK.Platform.IWindowComponent isExternal: true - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetMinClientSize_OpenTK_Core_Platform_WindowHandle_System_Nullable_System_Int32__System_Nullable_System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetMinClientSize_OpenTK_Platform_WindowHandle_System_Nullable_System_Int32__System_Nullable_System_Int32__ name: SetMinClientSize(WindowHandle, int?, int?) nameWithType: IWindowComponent.SetMinClientSize(WindowHandle, int?, int?) - fullName: OpenTK.Core.Platform.IWindowComponent.SetMinClientSize(OpenTK.Core.Platform.WindowHandle, int?, int?) + fullName: OpenTK.Platform.IWindowComponent.SetMinClientSize(OpenTK.Platform.WindowHandle, int?, int?) nameWithType.vb: IWindowComponent.SetMinClientSize(WindowHandle, Integer?, Integer?) - fullName.vb: OpenTK.Core.Platform.IWindowComponent.SetMinClientSize(OpenTK.Core.Platform.WindowHandle, Integer?, Integer?) + fullName.vb: OpenTK.Platform.IWindowComponent.SetMinClientSize(OpenTK.Platform.WindowHandle, Integer?, Integer?) name.vb: SetMinClientSize(WindowHandle, Integer?, Integer?) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.SetMinClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) + - uid: OpenTK.Platform.IWindowComponent.SetMinClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) name: SetMinClientSize - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetMinClientSize_OpenTK_Core_Platform_WindowHandle_System_Nullable_System_Int32__System_Nullable_System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetMinClientSize_OpenTK_Platform_WindowHandle_System_Nullable_System_Int32__System_Nullable_System_Int32__ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - uid: System.Int32 @@ -4826,13 +4693,13 @@ references: - name: '?' - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.SetMinClientSize(OpenTK.Core.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) + - uid: OpenTK.Platform.IWindowComponent.SetMinClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) name: SetMinClientSize - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetMinClientSize_OpenTK_Core_Platform_WindowHandle_System_Nullable_System_Int32__System_Nullable_System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetMinClientSize_OpenTK_Platform_WindowHandle_System_Nullable_System_Int32__System_Nullable_System_Int32__ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - uid: System.Int32 @@ -4850,171 +4717,146 @@ references: - name: ) - uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetDisplay* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetDisplay - href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_GetDisplay_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_GetDisplay_OpenTK_Platform_WindowHandle_ name: GetDisplay nameWithType: MacOSWindowComponent.GetDisplay fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetDisplay -- uid: OpenTK.Core.Platform.IWindowComponent.GetDisplay(OpenTK.Core.Platform.WindowHandle) - commentId: M:OpenTK.Core.Platform.IWindowComponent.GetDisplay(OpenTK.Core.Platform.WindowHandle) - parent: OpenTK.Core.Platform.IWindowComponent - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetDisplay_OpenTK_Core_Platform_WindowHandle_ - name: GetDisplay(WindowHandle) - nameWithType: IWindowComponent.GetDisplay(WindowHandle) - fullName: OpenTK.Core.Platform.IWindowComponent.GetDisplay(OpenTK.Core.Platform.WindowHandle) - spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.GetDisplay(OpenTK.Core.Platform.WindowHandle) - name: GetDisplay - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetDisplay_OpenTK_Core_Platform_WindowHandle_ - - name: ( - - uid: OpenTK.Core.Platform.WindowHandle - name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html - - name: ) - spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.GetDisplay(OpenTK.Core.Platform.WindowHandle) - name: GetDisplay - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetDisplay_OpenTK_Core_Platform_WindowHandle_ - - name: ( - - uid: OpenTK.Core.Platform.WindowHandle - name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html - - name: ) -- uid: OpenTK.Core.Platform.DisplayHandle - commentId: T:OpenTK.Core.Platform.DisplayHandle - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.DisplayHandle.html +- uid: OpenTK.Platform.DisplayHandle + commentId: T:OpenTK.Platform.DisplayHandle + parent: OpenTK.Platform + href: OpenTK.Platform.DisplayHandle.html name: DisplayHandle nameWithType: DisplayHandle - fullName: OpenTK.Core.Platform.DisplayHandle + fullName: OpenTK.Platform.DisplayHandle - uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetMode* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetMode - href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_GetMode_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_GetMode_OpenTK_Platform_WindowHandle_ name: GetMode nameWithType: MacOSWindowComponent.GetMode fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetMode -- uid: OpenTK.Core.Platform.IWindowComponent.GetMode(OpenTK.Core.Platform.WindowHandle) - commentId: M:OpenTK.Core.Platform.IWindowComponent.GetMode(OpenTK.Core.Platform.WindowHandle) - parent: OpenTK.Core.Platform.IWindowComponent - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetMode_OpenTK_Core_Platform_WindowHandle_ +- uid: OpenTK.Platform.IWindowComponent.GetMode(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.GetMode(OpenTK.Platform.WindowHandle) + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetMode_OpenTK_Platform_WindowHandle_ name: GetMode(WindowHandle) nameWithType: IWindowComponent.GetMode(WindowHandle) - fullName: OpenTK.Core.Platform.IWindowComponent.GetMode(OpenTK.Core.Platform.WindowHandle) + fullName: OpenTK.Platform.IWindowComponent.GetMode(OpenTK.Platform.WindowHandle) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.GetMode(OpenTK.Core.Platform.WindowHandle) + - uid: OpenTK.Platform.IWindowComponent.GetMode(OpenTK.Platform.WindowHandle) name: GetMode - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetMode_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetMode_OpenTK_Platform_WindowHandle_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.GetMode(OpenTK.Core.Platform.WindowHandle) + - uid: OpenTK.Platform.IWindowComponent.GetMode(OpenTK.Platform.WindowHandle) name: GetMode - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetMode_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetMode_OpenTK_Platform_WindowHandle_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ) -- uid: OpenTK.Core.Platform.WindowMode - commentId: T:OpenTK.Core.Platform.WindowMode - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.WindowMode.html +- uid: OpenTK.Platform.WindowMode + commentId: T:OpenTK.Platform.WindowMode + parent: OpenTK.Platform + href: OpenTK.Platform.WindowMode.html name: WindowMode nameWithType: WindowMode - fullName: OpenTK.Core.Platform.WindowMode -- uid: OpenTK.Core.Platform.WindowMode.WindowedFullscreen - commentId: F:OpenTK.Core.Platform.WindowMode.WindowedFullscreen - href: OpenTK.Core.Platform.WindowMode.html#OpenTK_Core_Platform_WindowMode_WindowedFullscreen + fullName: OpenTK.Platform.WindowMode +- uid: OpenTK.Platform.WindowMode.WindowedFullscreen + commentId: F:OpenTK.Platform.WindowMode.WindowedFullscreen + href: OpenTK.Platform.WindowMode.html#OpenTK_Platform_WindowMode_WindowedFullscreen name: WindowedFullscreen nameWithType: WindowMode.WindowedFullscreen - fullName: OpenTK.Core.Platform.WindowMode.WindowedFullscreen -- uid: OpenTK.Core.Platform.WindowMode.ExclusiveFullscreen - commentId: F:OpenTK.Core.Platform.WindowMode.ExclusiveFullscreen - href: OpenTK.Core.Platform.WindowMode.html#OpenTK_Core_Platform_WindowMode_ExclusiveFullscreen + fullName: OpenTK.Platform.WindowMode.WindowedFullscreen +- uid: OpenTK.Platform.WindowMode.ExclusiveFullscreen + commentId: F:OpenTK.Platform.WindowMode.ExclusiveFullscreen + href: OpenTK.Platform.WindowMode.html#OpenTK_Platform_WindowMode_ExclusiveFullscreen name: ExclusiveFullscreen nameWithType: WindowMode.ExclusiveFullscreen - fullName: OpenTK.Core.Platform.WindowMode.ExclusiveFullscreen -- uid: OpenTK.Core.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle) - commentId: M:OpenTK.Core.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle) - parent: OpenTK.Core.Platform.IWindowComponent - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetFullscreenDisplay_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_DisplayHandle_ + fullName: OpenTK.Platform.WindowMode.ExclusiveFullscreen +- uid: OpenTK.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle) + commentId: M:OpenTK.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle) + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetFullscreenDisplay_OpenTK_Platform_WindowHandle_OpenTK_Platform_DisplayHandle_ name: SetFullscreenDisplay(WindowHandle, DisplayHandle) nameWithType: IWindowComponent.SetFullscreenDisplay(WindowHandle, DisplayHandle) - fullName: OpenTK.Core.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle, OpenTK.Core.Platform.DisplayHandle) + fullName: OpenTK.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle, OpenTK.Platform.DisplayHandle) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle) + - uid: OpenTK.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle) name: SetFullscreenDisplay - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetFullscreenDisplay_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_DisplayHandle_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetFullscreenDisplay_OpenTK_Platform_WindowHandle_OpenTK_Platform_DisplayHandle_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - - uid: OpenTK.Core.Platform.DisplayHandle + - uid: OpenTK.Platform.DisplayHandle name: DisplayHandle - href: OpenTK.Core.Platform.DisplayHandle.html + href: OpenTK.Platform.DisplayHandle.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle) + - uid: OpenTK.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle) name: SetFullscreenDisplay - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetFullscreenDisplay_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_DisplayHandle_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetFullscreenDisplay_OpenTK_Platform_WindowHandle_OpenTK_Platform_DisplayHandle_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - - uid: OpenTK.Core.Platform.DisplayHandle + - uid: OpenTK.Platform.DisplayHandle name: DisplayHandle - href: OpenTK.Core.Platform.DisplayHandle.html + href: OpenTK.Platform.DisplayHandle.html - name: ) -- uid: OpenTK.Core.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle,OpenTK.Core.Platform.VideoMode) - commentId: M:OpenTK.Core.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle,OpenTK.Core.Platform.VideoMode) - parent: OpenTK.Core.Platform.IWindowComponent - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetFullscreenDisplay_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_DisplayHandle_OpenTK_Core_Platform_VideoMode_ +- uid: OpenTK.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle,OpenTK.Platform.VideoMode) + commentId: M:OpenTK.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle,OpenTK.Platform.VideoMode) + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetFullscreenDisplay_OpenTK_Platform_WindowHandle_OpenTK_Platform_DisplayHandle_OpenTK_Platform_VideoMode_ name: SetFullscreenDisplay(WindowHandle, DisplayHandle, VideoMode) nameWithType: IWindowComponent.SetFullscreenDisplay(WindowHandle, DisplayHandle, VideoMode) - fullName: OpenTK.Core.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle, OpenTK.Core.Platform.DisplayHandle, OpenTK.Core.Platform.VideoMode) + fullName: OpenTK.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle, OpenTK.Platform.DisplayHandle, OpenTK.Platform.VideoMode) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle,OpenTK.Core.Platform.VideoMode) + - uid: OpenTK.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle,OpenTK.Platform.VideoMode) name: SetFullscreenDisplay - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetFullscreenDisplay_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_DisplayHandle_OpenTK_Core_Platform_VideoMode_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetFullscreenDisplay_OpenTK_Platform_WindowHandle_OpenTK_Platform_DisplayHandle_OpenTK_Platform_VideoMode_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - - uid: OpenTK.Core.Platform.DisplayHandle + - uid: OpenTK.Platform.DisplayHandle name: DisplayHandle - href: OpenTK.Core.Platform.DisplayHandle.html + href: OpenTK.Platform.DisplayHandle.html - name: ',' - name: " " - - uid: OpenTK.Core.Platform.VideoMode + - uid: OpenTK.Platform.VideoMode name: VideoMode - href: OpenTK.Core.Platform.VideoMode.html + href: OpenTK.Platform.VideoMode.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle,OpenTK.Core.Platform.VideoMode) + - uid: OpenTK.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle,OpenTK.Platform.VideoMode) name: SetFullscreenDisplay - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetFullscreenDisplay_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_DisplayHandle_OpenTK_Core_Platform_VideoMode_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetFullscreenDisplay_OpenTK_Platform_WindowHandle_OpenTK_Platform_DisplayHandle_OpenTK_Platform_VideoMode_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - - uid: OpenTK.Core.Platform.DisplayHandle + - uid: OpenTK.Platform.DisplayHandle name: DisplayHandle - href: OpenTK.Core.Platform.DisplayHandle.html + href: OpenTK.Platform.DisplayHandle.html - name: ',' - name: " " - - uid: OpenTK.Core.Platform.VideoMode + - uid: OpenTK.Platform.VideoMode name: VideoMode - href: OpenTK.Core.Platform.VideoMode.html + href: OpenTK.Platform.VideoMode.html - name: ) - uid: System.ArgumentOutOfRangeException commentId: T:System.ArgumentOutOfRangeException @@ -5025,246 +4867,246 @@ references: fullName: System.ArgumentOutOfRangeException - uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetMode* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetMode - href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_SetMode_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_WindowMode_ + href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_SetMode_OpenTK_Platform_WindowHandle_OpenTK_Platform_WindowMode_ name: SetMode nameWithType: MacOSWindowComponent.SetMode fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetMode -- uid: OpenTK.Core.Platform.IWindowComponent.SetMode(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.WindowMode) - commentId: M:OpenTK.Core.Platform.IWindowComponent.SetMode(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.WindowMode) - parent: OpenTK.Core.Platform.IWindowComponent - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetMode_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_WindowMode_ +- uid: OpenTK.Platform.IWindowComponent.SetMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowMode) + commentId: M:OpenTK.Platform.IWindowComponent.SetMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowMode) + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetMode_OpenTK_Platform_WindowHandle_OpenTK_Platform_WindowMode_ name: SetMode(WindowHandle, WindowMode) nameWithType: IWindowComponent.SetMode(WindowHandle, WindowMode) - fullName: OpenTK.Core.Platform.IWindowComponent.SetMode(OpenTK.Core.Platform.WindowHandle, OpenTK.Core.Platform.WindowMode) + fullName: OpenTK.Platform.IWindowComponent.SetMode(OpenTK.Platform.WindowHandle, OpenTK.Platform.WindowMode) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.SetMode(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.WindowMode) + - uid: OpenTK.Platform.IWindowComponent.SetMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowMode) name: SetMode - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetMode_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_WindowMode_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetMode_OpenTK_Platform_WindowHandle_OpenTK_Platform_WindowMode_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - - uid: OpenTK.Core.Platform.WindowMode + - uid: OpenTK.Platform.WindowMode name: WindowMode - href: OpenTK.Core.Platform.WindowMode.html + href: OpenTK.Platform.WindowMode.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.SetMode(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.WindowMode) + - uid: OpenTK.Platform.IWindowComponent.SetMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowMode) name: SetMode - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetMode_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_WindowMode_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetMode_OpenTK_Platform_WindowHandle_OpenTK_Platform_WindowMode_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - - uid: OpenTK.Core.Platform.WindowMode + - uid: OpenTK.Platform.WindowMode name: WindowMode - href: OpenTK.Core.Platform.WindowMode.html + href: OpenTK.Platform.WindowMode.html - name: ) - uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetFullscreenDisplayNoSpace* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetFullscreenDisplayNoSpace - href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_SetFullscreenDisplayNoSpace_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_DisplayHandle_ + href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_SetFullscreenDisplayNoSpace_OpenTK_Platform_WindowHandle_OpenTK_Platform_DisplayHandle_ name: SetFullscreenDisplayNoSpace nameWithType: MacOSWindowComponent.SetFullscreenDisplayNoSpace fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetFullscreenDisplayNoSpace - uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetFullscreenDisplay* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetFullscreenDisplay - href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_SetFullscreenDisplay_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_DisplayHandle_ + href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_SetFullscreenDisplay_OpenTK_Platform_WindowHandle_OpenTK_Platform_DisplayHandle_ name: SetFullscreenDisplay nameWithType: MacOSWindowComponent.SetFullscreenDisplay fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetFullscreenDisplay -- uid: OpenTK.Core.Platform.IDisplayComponent.GetSupportedVideoModes(OpenTK.Core.Platform.DisplayHandle) - commentId: M:OpenTK.Core.Platform.IDisplayComponent.GetSupportedVideoModes(OpenTK.Core.Platform.DisplayHandle) - parent: OpenTK.Core.Platform.IDisplayComponent - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_GetSupportedVideoModes_OpenTK_Core_Platform_DisplayHandle_ +- uid: OpenTK.Platform.IDisplayComponent.GetSupportedVideoModes(OpenTK.Platform.DisplayHandle) + commentId: M:OpenTK.Platform.IDisplayComponent.GetSupportedVideoModes(OpenTK.Platform.DisplayHandle) + parent: OpenTK.Platform.IDisplayComponent + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_GetSupportedVideoModes_OpenTK_Platform_DisplayHandle_ name: GetSupportedVideoModes(DisplayHandle) nameWithType: IDisplayComponent.GetSupportedVideoModes(DisplayHandle) - fullName: OpenTK.Core.Platform.IDisplayComponent.GetSupportedVideoModes(OpenTK.Core.Platform.DisplayHandle) + fullName: OpenTK.Platform.IDisplayComponent.GetSupportedVideoModes(OpenTK.Platform.DisplayHandle) spec.csharp: - - uid: OpenTK.Core.Platform.IDisplayComponent.GetSupportedVideoModes(OpenTK.Core.Platform.DisplayHandle) + - uid: OpenTK.Platform.IDisplayComponent.GetSupportedVideoModes(OpenTK.Platform.DisplayHandle) name: GetSupportedVideoModes - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_GetSupportedVideoModes_OpenTK_Core_Platform_DisplayHandle_ + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_GetSupportedVideoModes_OpenTK_Platform_DisplayHandle_ - name: ( - - uid: OpenTK.Core.Platform.DisplayHandle + - uid: OpenTK.Platform.DisplayHandle name: DisplayHandle - href: OpenTK.Core.Platform.DisplayHandle.html + href: OpenTK.Platform.DisplayHandle.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IDisplayComponent.GetSupportedVideoModes(OpenTK.Core.Platform.DisplayHandle) + - uid: OpenTK.Platform.IDisplayComponent.GetSupportedVideoModes(OpenTK.Platform.DisplayHandle) name: GetSupportedVideoModes - href: OpenTK.Core.Platform.IDisplayComponent.html#OpenTK_Core_Platform_IDisplayComponent_GetSupportedVideoModes_OpenTK_Core_Platform_DisplayHandle_ + href: OpenTK.Platform.IDisplayComponent.html#OpenTK_Platform_IDisplayComponent_GetSupportedVideoModes_OpenTK_Platform_DisplayHandle_ - name: ( - - uid: OpenTK.Core.Platform.DisplayHandle + - uid: OpenTK.Platform.DisplayHandle name: DisplayHandle - href: OpenTK.Core.Platform.DisplayHandle.html + href: OpenTK.Platform.DisplayHandle.html - name: ) -- uid: OpenTK.Core.Platform.VideoMode - commentId: T:OpenTK.Core.Platform.VideoMode - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.VideoMode.html +- uid: OpenTK.Platform.VideoMode + commentId: T:OpenTK.Platform.VideoMode + parent: OpenTK.Platform + href: OpenTK.Platform.VideoMode.html name: VideoMode nameWithType: VideoMode - fullName: OpenTK.Core.Platform.VideoMode -- uid: OpenTK.Core.Platform.IDisplayComponent - commentId: T:OpenTK.Core.Platform.IDisplayComponent - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.IDisplayComponent.html + fullName: OpenTK.Platform.VideoMode +- uid: OpenTK.Platform.IDisplayComponent + commentId: T:OpenTK.Platform.IDisplayComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IDisplayComponent.html name: IDisplayComponent nameWithType: IDisplayComponent - fullName: OpenTK.Core.Platform.IDisplayComponent + fullName: OpenTK.Platform.IDisplayComponent - uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetFullscreenDisplay* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetFullscreenDisplay - href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_GetFullscreenDisplay_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_DisplayHandle__ + href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_GetFullscreenDisplay_OpenTK_Platform_WindowHandle_OpenTK_Platform_DisplayHandle__ name: GetFullscreenDisplay nameWithType: MacOSWindowComponent.GetFullscreenDisplay fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetFullscreenDisplay -- uid: OpenTK.Core.Platform.IWindowComponent.GetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle@) - commentId: M:OpenTK.Core.Platform.IWindowComponent.GetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle@) - parent: OpenTK.Core.Platform.IWindowComponent - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetFullscreenDisplay_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_DisplayHandle__ +- uid: OpenTK.Platform.IWindowComponent.GetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle@) + commentId: M:OpenTK.Platform.IWindowComponent.GetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle@) + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetFullscreenDisplay_OpenTK_Platform_WindowHandle_OpenTK_Platform_DisplayHandle__ name: GetFullscreenDisplay(WindowHandle, out DisplayHandle) nameWithType: IWindowComponent.GetFullscreenDisplay(WindowHandle, out DisplayHandle) - fullName: OpenTK.Core.Platform.IWindowComponent.GetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle, out OpenTK.Core.Platform.DisplayHandle) + fullName: OpenTK.Platform.IWindowComponent.GetFullscreenDisplay(OpenTK.Platform.WindowHandle, out OpenTK.Platform.DisplayHandle) nameWithType.vb: IWindowComponent.GetFullscreenDisplay(WindowHandle, DisplayHandle) - fullName.vb: OpenTK.Core.Platform.IWindowComponent.GetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle, OpenTK.Core.Platform.DisplayHandle) + fullName.vb: OpenTK.Platform.IWindowComponent.GetFullscreenDisplay(OpenTK.Platform.WindowHandle, OpenTK.Platform.DisplayHandle) name.vb: GetFullscreenDisplay(WindowHandle, DisplayHandle) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.GetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle@) + - uid: OpenTK.Platform.IWindowComponent.GetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle@) name: GetFullscreenDisplay - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetFullscreenDisplay_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_DisplayHandle__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetFullscreenDisplay_OpenTK_Platform_WindowHandle_OpenTK_Platform_DisplayHandle__ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - name: out - name: " " - - uid: OpenTK.Core.Platform.DisplayHandle + - uid: OpenTK.Platform.DisplayHandle name: DisplayHandle - href: OpenTK.Core.Platform.DisplayHandle.html + href: OpenTK.Platform.DisplayHandle.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.GetFullscreenDisplay(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.DisplayHandle@) + - uid: OpenTK.Platform.IWindowComponent.GetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle@) name: GetFullscreenDisplay - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetFullscreenDisplay_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_DisplayHandle__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetFullscreenDisplay_OpenTK_Platform_WindowHandle_OpenTK_Platform_DisplayHandle__ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - - uid: OpenTK.Core.Platform.DisplayHandle + - uid: OpenTK.Platform.DisplayHandle name: DisplayHandle - href: OpenTK.Core.Platform.DisplayHandle.html + href: OpenTK.Platform.DisplayHandle.html - name: ) - uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetBorderStyle* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetBorderStyle - href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_GetBorderStyle_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_GetBorderStyle_OpenTK_Platform_WindowHandle_ name: GetBorderStyle nameWithType: MacOSWindowComponent.GetBorderStyle fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetBorderStyle -- uid: OpenTK.Core.Platform.IWindowComponent.GetBorderStyle(OpenTK.Core.Platform.WindowHandle) - commentId: M:OpenTK.Core.Platform.IWindowComponent.GetBorderStyle(OpenTK.Core.Platform.WindowHandle) - parent: OpenTK.Core.Platform.IWindowComponent - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetBorderStyle_OpenTK_Core_Platform_WindowHandle_ +- uid: OpenTK.Platform.IWindowComponent.GetBorderStyle(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.GetBorderStyle(OpenTK.Platform.WindowHandle) + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetBorderStyle_OpenTK_Platform_WindowHandle_ name: GetBorderStyle(WindowHandle) nameWithType: IWindowComponent.GetBorderStyle(WindowHandle) - fullName: OpenTK.Core.Platform.IWindowComponent.GetBorderStyle(OpenTK.Core.Platform.WindowHandle) + fullName: OpenTK.Platform.IWindowComponent.GetBorderStyle(OpenTK.Platform.WindowHandle) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.GetBorderStyle(OpenTK.Core.Platform.WindowHandle) + - uid: OpenTK.Platform.IWindowComponent.GetBorderStyle(OpenTK.Platform.WindowHandle) name: GetBorderStyle - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetBorderStyle_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetBorderStyle_OpenTK_Platform_WindowHandle_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.GetBorderStyle(OpenTK.Core.Platform.WindowHandle) + - uid: OpenTK.Platform.IWindowComponent.GetBorderStyle(OpenTK.Platform.WindowHandle) name: GetBorderStyle - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetBorderStyle_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetBorderStyle_OpenTK_Platform_WindowHandle_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ) -- uid: OpenTK.Core.Platform.WindowBorderStyle - commentId: T:OpenTK.Core.Platform.WindowBorderStyle - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.WindowBorderStyle.html +- uid: OpenTK.Platform.WindowBorderStyle + commentId: T:OpenTK.Platform.WindowBorderStyle + parent: OpenTK.Platform + href: OpenTK.Platform.WindowBorderStyle.html name: WindowBorderStyle nameWithType: WindowBorderStyle - fullName: OpenTK.Core.Platform.WindowBorderStyle + fullName: OpenTK.Platform.WindowBorderStyle - uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetBorderStyle* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetBorderStyle - href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_SetBorderStyle_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_WindowBorderStyle_ + href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_SetBorderStyle_OpenTK_Platform_WindowHandle_OpenTK_Platform_WindowBorderStyle_ name: SetBorderStyle nameWithType: MacOSWindowComponent.SetBorderStyle fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetBorderStyle -- uid: OpenTK.Core.Platform.IWindowComponent.SetBorderStyle(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.WindowBorderStyle) - commentId: M:OpenTK.Core.Platform.IWindowComponent.SetBorderStyle(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.WindowBorderStyle) - parent: OpenTK.Core.Platform.IWindowComponent - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetBorderStyle_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_WindowBorderStyle_ +- uid: OpenTK.Platform.IWindowComponent.SetBorderStyle(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowBorderStyle) + commentId: M:OpenTK.Platform.IWindowComponent.SetBorderStyle(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowBorderStyle) + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetBorderStyle_OpenTK_Platform_WindowHandle_OpenTK_Platform_WindowBorderStyle_ name: SetBorderStyle(WindowHandle, WindowBorderStyle) nameWithType: IWindowComponent.SetBorderStyle(WindowHandle, WindowBorderStyle) - fullName: OpenTK.Core.Platform.IWindowComponent.SetBorderStyle(OpenTK.Core.Platform.WindowHandle, OpenTK.Core.Platform.WindowBorderStyle) + fullName: OpenTK.Platform.IWindowComponent.SetBorderStyle(OpenTK.Platform.WindowHandle, OpenTK.Platform.WindowBorderStyle) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.SetBorderStyle(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.WindowBorderStyle) + - uid: OpenTK.Platform.IWindowComponent.SetBorderStyle(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowBorderStyle) name: SetBorderStyle - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetBorderStyle_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_WindowBorderStyle_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetBorderStyle_OpenTK_Platform_WindowHandle_OpenTK_Platform_WindowBorderStyle_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - - uid: OpenTK.Core.Platform.WindowBorderStyle + - uid: OpenTK.Platform.WindowBorderStyle name: WindowBorderStyle - href: OpenTK.Core.Platform.WindowBorderStyle.html + href: OpenTK.Platform.WindowBorderStyle.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.SetBorderStyle(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.WindowBorderStyle) + - uid: OpenTK.Platform.IWindowComponent.SetBorderStyle(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowBorderStyle) name: SetBorderStyle - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetBorderStyle_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_WindowBorderStyle_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetBorderStyle_OpenTK_Platform_WindowHandle_OpenTK_Platform_WindowBorderStyle_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - - uid: OpenTK.Core.Platform.WindowBorderStyle + - uid: OpenTK.Platform.WindowBorderStyle name: WindowBorderStyle - href: OpenTK.Core.Platform.WindowBorderStyle.html + href: OpenTK.Platform.WindowBorderStyle.html - name: ) - uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetAlwaysOnTop* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetAlwaysOnTop - href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_SetAlwaysOnTop_OpenTK_Core_Platform_WindowHandle_System_Boolean_ + href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_SetAlwaysOnTop_OpenTK_Platform_WindowHandle_System_Boolean_ name: SetAlwaysOnTop nameWithType: MacOSWindowComponent.SetAlwaysOnTop fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetAlwaysOnTop -- uid: OpenTK.Core.Platform.IWindowComponent.SetAlwaysOnTop(OpenTK.Core.Platform.WindowHandle,System.Boolean) - commentId: M:OpenTK.Core.Platform.IWindowComponent.SetAlwaysOnTop(OpenTK.Core.Platform.WindowHandle,System.Boolean) - parent: OpenTK.Core.Platform.IWindowComponent +- uid: OpenTK.Platform.IWindowComponent.SetAlwaysOnTop(OpenTK.Platform.WindowHandle,System.Boolean) + commentId: M:OpenTK.Platform.IWindowComponent.SetAlwaysOnTop(OpenTK.Platform.WindowHandle,System.Boolean) + parent: OpenTK.Platform.IWindowComponent isExternal: true - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetAlwaysOnTop_OpenTK_Core_Platform_WindowHandle_System_Boolean_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetAlwaysOnTop_OpenTK_Platform_WindowHandle_System_Boolean_ name: SetAlwaysOnTop(WindowHandle, bool) nameWithType: IWindowComponent.SetAlwaysOnTop(WindowHandle, bool) - fullName: OpenTK.Core.Platform.IWindowComponent.SetAlwaysOnTop(OpenTK.Core.Platform.WindowHandle, bool) + fullName: OpenTK.Platform.IWindowComponent.SetAlwaysOnTop(OpenTK.Platform.WindowHandle, bool) nameWithType.vb: IWindowComponent.SetAlwaysOnTop(WindowHandle, Boolean) - fullName.vb: OpenTK.Core.Platform.IWindowComponent.SetAlwaysOnTop(OpenTK.Core.Platform.WindowHandle, Boolean) + fullName.vb: OpenTK.Platform.IWindowComponent.SetAlwaysOnTop(OpenTK.Platform.WindowHandle, Boolean) name.vb: SetAlwaysOnTop(WindowHandle, Boolean) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.SetAlwaysOnTop(OpenTK.Core.Platform.WindowHandle,System.Boolean) + - uid: OpenTK.Platform.IWindowComponent.SetAlwaysOnTop(OpenTK.Platform.WindowHandle,System.Boolean) name: SetAlwaysOnTop - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetAlwaysOnTop_OpenTK_Core_Platform_WindowHandle_System_Boolean_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetAlwaysOnTop_OpenTK_Platform_WindowHandle_System_Boolean_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - uid: System.Boolean @@ -5273,13 +5115,13 @@ references: href: https://learn.microsoft.com/dotnet/api/system.boolean - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.SetAlwaysOnTop(OpenTK.Core.Platform.WindowHandle,System.Boolean) + - uid: OpenTK.Platform.IWindowComponent.SetAlwaysOnTop(OpenTK.Platform.WindowHandle,System.Boolean) name: SetAlwaysOnTop - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetAlwaysOnTop_OpenTK_Core_Platform_WindowHandle_System_Boolean_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetAlwaysOnTop_OpenTK_Platform_WindowHandle_System_Boolean_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - uid: System.Boolean @@ -5289,328 +5131,258 @@ references: - name: ) - uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.IsAlwaysOnTop* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSWindowComponent.IsAlwaysOnTop - href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_IsAlwaysOnTop_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_IsAlwaysOnTop_OpenTK_Platform_WindowHandle_ name: IsAlwaysOnTop nameWithType: MacOSWindowComponent.IsAlwaysOnTop fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.IsAlwaysOnTop -- uid: OpenTK.Core.Platform.IWindowComponent.IsAlwaysOnTop(OpenTK.Core.Platform.WindowHandle) - commentId: M:OpenTK.Core.Platform.IWindowComponent.IsAlwaysOnTop(OpenTK.Core.Platform.WindowHandle) - parent: OpenTK.Core.Platform.IWindowComponent - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_IsAlwaysOnTop_OpenTK_Core_Platform_WindowHandle_ +- uid: OpenTK.Platform.IWindowComponent.IsAlwaysOnTop(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.IsAlwaysOnTop(OpenTK.Platform.WindowHandle) + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_IsAlwaysOnTop_OpenTK_Platform_WindowHandle_ name: IsAlwaysOnTop(WindowHandle) nameWithType: IWindowComponent.IsAlwaysOnTop(WindowHandle) - fullName: OpenTK.Core.Platform.IWindowComponent.IsAlwaysOnTop(OpenTK.Core.Platform.WindowHandle) + fullName: OpenTK.Platform.IWindowComponent.IsAlwaysOnTop(OpenTK.Platform.WindowHandle) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.IsAlwaysOnTop(OpenTK.Core.Platform.WindowHandle) + - uid: OpenTK.Platform.IWindowComponent.IsAlwaysOnTop(OpenTK.Platform.WindowHandle) name: IsAlwaysOnTop - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_IsAlwaysOnTop_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_IsAlwaysOnTop_OpenTK_Platform_WindowHandle_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.IsAlwaysOnTop(OpenTK.Core.Platform.WindowHandle) + - uid: OpenTK.Platform.IWindowComponent.IsAlwaysOnTop(OpenTK.Platform.WindowHandle) name: IsAlwaysOnTop - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_IsAlwaysOnTop_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_IsAlwaysOnTop_OpenTK_Platform_WindowHandle_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ) - uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetHitTestCallback* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetHitTestCallback - href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_SetHitTestCallback_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_HitTest_ + href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_SetHitTestCallback_OpenTK_Platform_WindowHandle_OpenTK_Platform_HitTest_ name: SetHitTestCallback nameWithType: MacOSWindowComponent.SetHitTestCallback fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetHitTestCallback -- uid: OpenTK.Core.Platform.IWindowComponent.SetHitTestCallback(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.HitTest) - commentId: M:OpenTK.Core.Platform.IWindowComponent.SetHitTestCallback(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.HitTest) - parent: OpenTK.Core.Platform.IWindowComponent - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetHitTestCallback_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_HitTest_ +- uid: OpenTK.Platform.IWindowComponent.SetHitTestCallback(OpenTK.Platform.WindowHandle,OpenTK.Platform.HitTest) + commentId: M:OpenTK.Platform.IWindowComponent.SetHitTestCallback(OpenTK.Platform.WindowHandle,OpenTK.Platform.HitTest) + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetHitTestCallback_OpenTK_Platform_WindowHandle_OpenTK_Platform_HitTest_ name: SetHitTestCallback(WindowHandle, HitTest) nameWithType: IWindowComponent.SetHitTestCallback(WindowHandle, HitTest) - fullName: OpenTK.Core.Platform.IWindowComponent.SetHitTestCallback(OpenTK.Core.Platform.WindowHandle, OpenTK.Core.Platform.HitTest) + fullName: OpenTK.Platform.IWindowComponent.SetHitTestCallback(OpenTK.Platform.WindowHandle, OpenTK.Platform.HitTest) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.SetHitTestCallback(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.HitTest) + - uid: OpenTK.Platform.IWindowComponent.SetHitTestCallback(OpenTK.Platform.WindowHandle,OpenTK.Platform.HitTest) name: SetHitTestCallback - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetHitTestCallback_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_HitTest_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetHitTestCallback_OpenTK_Platform_WindowHandle_OpenTK_Platform_HitTest_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - - uid: OpenTK.Core.Platform.HitTest + - uid: OpenTK.Platform.HitTest name: HitTest - href: OpenTK.Core.Platform.HitTest.html + href: OpenTK.Platform.HitTest.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.SetHitTestCallback(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.HitTest) + - uid: OpenTK.Platform.IWindowComponent.SetHitTestCallback(OpenTK.Platform.WindowHandle,OpenTK.Platform.HitTest) name: SetHitTestCallback - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetHitTestCallback_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_HitTest_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetHitTestCallback_OpenTK_Platform_WindowHandle_OpenTK_Platform_HitTest_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - - uid: OpenTK.Core.Platform.HitTest + - uid: OpenTK.Platform.HitTest name: HitTest - href: OpenTK.Core.Platform.HitTest.html + href: OpenTK.Platform.HitTest.html - name: ) -- uid: OpenTK.Core.Platform.HitTest - commentId: T:OpenTK.Core.Platform.HitTest - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.HitTest.html +- uid: OpenTK.Platform.HitTest + commentId: T:OpenTK.Platform.HitTest + parent: OpenTK.Platform + href: OpenTK.Platform.HitTest.html name: HitTest nameWithType: HitTest - fullName: OpenTK.Core.Platform.HitTest + fullName: OpenTK.Platform.HitTest - uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetCursor* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetCursor - href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_SetCursor_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_CursorHandle_ + href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_SetCursor_OpenTK_Platform_WindowHandle_OpenTK_Platform_CursorHandle_ name: SetCursor nameWithType: MacOSWindowComponent.SetCursor fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetCursor -- uid: OpenTK.Core.Platform.IWindowComponent.SetCursor(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.CursorHandle) - commentId: M:OpenTK.Core.Platform.IWindowComponent.SetCursor(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.CursorHandle) - parent: OpenTK.Core.Platform.IWindowComponent - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetCursor_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_CursorHandle_ - name: SetCursor(WindowHandle, CursorHandle) - nameWithType: IWindowComponent.SetCursor(WindowHandle, CursorHandle) - fullName: OpenTK.Core.Platform.IWindowComponent.SetCursor(OpenTK.Core.Platform.WindowHandle, OpenTK.Core.Platform.CursorHandle) - spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.SetCursor(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.CursorHandle) - name: SetCursor - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetCursor_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_CursorHandle_ - - name: ( - - uid: OpenTK.Core.Platform.WindowHandle - name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html - - name: ',' - - name: " " - - uid: OpenTK.Core.Platform.CursorHandle - name: CursorHandle - href: OpenTK.Core.Platform.CursorHandle.html - - name: ) - spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.SetCursor(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.CursorHandle) - name: SetCursor - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetCursor_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_CursorHandle_ - - name: ( - - uid: OpenTK.Core.Platform.WindowHandle - name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html - - name: ',' - - name: " " - - uid: OpenTK.Core.Platform.CursorHandle - name: CursorHandle - href: OpenTK.Core.Platform.CursorHandle.html - - name: ) -- uid: OpenTK.Core.Platform.CursorHandle - commentId: T:OpenTK.Core.Platform.CursorHandle - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.CursorHandle.html +- uid: OpenTK.Platform.CursorHandle + commentId: T:OpenTK.Platform.CursorHandle + parent: OpenTK.Platform + href: OpenTK.Platform.CursorHandle.html name: CursorHandle nameWithType: CursorHandle - fullName: OpenTK.Core.Platform.CursorHandle -- uid: OpenTK.Core.Platform.IWindowComponent.SetCursorCaptureMode(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.CursorCaptureMode) - commentId: M:OpenTK.Core.Platform.IWindowComponent.SetCursorCaptureMode(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.CursorCaptureMode) - parent: OpenTK.Core.Platform.IWindowComponent - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetCursorCaptureMode_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_CursorCaptureMode_ - name: SetCursorCaptureMode(WindowHandle, CursorCaptureMode) - nameWithType: IWindowComponent.SetCursorCaptureMode(WindowHandle, CursorCaptureMode) - fullName: OpenTK.Core.Platform.IWindowComponent.SetCursorCaptureMode(OpenTK.Core.Platform.WindowHandle, OpenTK.Core.Platform.CursorCaptureMode) - spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.SetCursorCaptureMode(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.CursorCaptureMode) - name: SetCursorCaptureMode - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetCursorCaptureMode_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_CursorCaptureMode_ - - name: ( - - uid: OpenTK.Core.Platform.WindowHandle - name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html - - name: ',' - - name: " " - - uid: OpenTK.Core.Platform.CursorCaptureMode - name: CursorCaptureMode - href: OpenTK.Core.Platform.CursorCaptureMode.html - - name: ) - spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.SetCursorCaptureMode(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.CursorCaptureMode) - name: SetCursorCaptureMode - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_SetCursorCaptureMode_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_CursorCaptureMode_ - - name: ( - - uid: OpenTK.Core.Platform.WindowHandle - name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html - - name: ',' - - name: " " - - uid: OpenTK.Core.Platform.CursorCaptureMode - name: CursorCaptureMode - href: OpenTK.Core.Platform.CursorCaptureMode.html - - name: ) + fullName: OpenTK.Platform.CursorHandle - uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetCursorCaptureMode* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetCursorCaptureMode - href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_GetCursorCaptureMode_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_GetCursorCaptureMode_OpenTK_Platform_WindowHandle_ name: GetCursorCaptureMode nameWithType: MacOSWindowComponent.GetCursorCaptureMode fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetCursorCaptureMode -- uid: OpenTK.Core.Platform.IWindowComponent.GetCursorCaptureMode(OpenTK.Core.Platform.WindowHandle) - commentId: M:OpenTK.Core.Platform.IWindowComponent.GetCursorCaptureMode(OpenTK.Core.Platform.WindowHandle) - parent: OpenTK.Core.Platform.IWindowComponent - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetCursorCaptureMode_OpenTK_Core_Platform_WindowHandle_ +- uid: OpenTK.Platform.IWindowComponent.GetCursorCaptureMode(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.GetCursorCaptureMode(OpenTK.Platform.WindowHandle) + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetCursorCaptureMode_OpenTK_Platform_WindowHandle_ name: GetCursorCaptureMode(WindowHandle) nameWithType: IWindowComponent.GetCursorCaptureMode(WindowHandle) - fullName: OpenTK.Core.Platform.IWindowComponent.GetCursorCaptureMode(OpenTK.Core.Platform.WindowHandle) + fullName: OpenTK.Platform.IWindowComponent.GetCursorCaptureMode(OpenTK.Platform.WindowHandle) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.GetCursorCaptureMode(OpenTK.Core.Platform.WindowHandle) + - uid: OpenTK.Platform.IWindowComponent.GetCursorCaptureMode(OpenTK.Platform.WindowHandle) name: GetCursorCaptureMode - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetCursorCaptureMode_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetCursorCaptureMode_OpenTK_Platform_WindowHandle_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.GetCursorCaptureMode(OpenTK.Core.Platform.WindowHandle) + - uid: OpenTK.Platform.IWindowComponent.GetCursorCaptureMode(OpenTK.Platform.WindowHandle) name: GetCursorCaptureMode - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetCursorCaptureMode_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetCursorCaptureMode_OpenTK_Platform_WindowHandle_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ) -- uid: OpenTK.Core.Platform.CursorCaptureMode - commentId: T:OpenTK.Core.Platform.CursorCaptureMode - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.CursorCaptureMode.html +- uid: OpenTK.Platform.CursorCaptureMode + commentId: T:OpenTK.Platform.CursorCaptureMode + parent: OpenTK.Platform + href: OpenTK.Platform.CursorCaptureMode.html name: CursorCaptureMode nameWithType: CursorCaptureMode - fullName: OpenTK.Core.Platform.CursorCaptureMode + fullName: OpenTK.Platform.CursorCaptureMode - uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetCursorCaptureMode* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetCursorCaptureMode - href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_SetCursorCaptureMode_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_CursorCaptureMode_ + href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_SetCursorCaptureMode_OpenTK_Platform_WindowHandle_OpenTK_Platform_CursorCaptureMode_ name: SetCursorCaptureMode nameWithType: MacOSWindowComponent.SetCursorCaptureMode fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetCursorCaptureMode - uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.IsFocused* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSWindowComponent.IsFocused - href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_IsFocused_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_IsFocused_OpenTK_Platform_WindowHandle_ name: IsFocused nameWithType: MacOSWindowComponent.IsFocused fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.IsFocused -- uid: OpenTK.Core.Platform.IWindowComponent.IsFocused(OpenTK.Core.Platform.WindowHandle) - commentId: M:OpenTK.Core.Platform.IWindowComponent.IsFocused(OpenTK.Core.Platform.WindowHandle) - parent: OpenTK.Core.Platform.IWindowComponent - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_IsFocused_OpenTK_Core_Platform_WindowHandle_ +- uid: OpenTK.Platform.IWindowComponent.IsFocused(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.IsFocused(OpenTK.Platform.WindowHandle) + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_IsFocused_OpenTK_Platform_WindowHandle_ name: IsFocused(WindowHandle) nameWithType: IWindowComponent.IsFocused(WindowHandle) - fullName: OpenTK.Core.Platform.IWindowComponent.IsFocused(OpenTK.Core.Platform.WindowHandle) + fullName: OpenTK.Platform.IWindowComponent.IsFocused(OpenTK.Platform.WindowHandle) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.IsFocused(OpenTK.Core.Platform.WindowHandle) + - uid: OpenTK.Platform.IWindowComponent.IsFocused(OpenTK.Platform.WindowHandle) name: IsFocused - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_IsFocused_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_IsFocused_OpenTK_Platform_WindowHandle_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.IsFocused(OpenTK.Core.Platform.WindowHandle) + - uid: OpenTK.Platform.IWindowComponent.IsFocused(OpenTK.Platform.WindowHandle) name: IsFocused - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_IsFocused_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_IsFocused_OpenTK_Platform_WindowHandle_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ) - uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.FocusWindow* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSWindowComponent.FocusWindow - href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_FocusWindow_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_FocusWindow_OpenTK_Platform_WindowHandle_ name: FocusWindow nameWithType: MacOSWindowComponent.FocusWindow fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.FocusWindow -- uid: OpenTK.Core.Platform.IWindowComponent.FocusWindow(OpenTK.Core.Platform.WindowHandle) - commentId: M:OpenTK.Core.Platform.IWindowComponent.FocusWindow(OpenTK.Core.Platform.WindowHandle) - parent: OpenTK.Core.Platform.IWindowComponent - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_FocusWindow_OpenTK_Core_Platform_WindowHandle_ +- uid: OpenTK.Platform.IWindowComponent.FocusWindow(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.FocusWindow(OpenTK.Platform.WindowHandle) + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_FocusWindow_OpenTK_Platform_WindowHandle_ name: FocusWindow(WindowHandle) nameWithType: IWindowComponent.FocusWindow(WindowHandle) - fullName: OpenTK.Core.Platform.IWindowComponent.FocusWindow(OpenTK.Core.Platform.WindowHandle) + fullName: OpenTK.Platform.IWindowComponent.FocusWindow(OpenTK.Platform.WindowHandle) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.FocusWindow(OpenTK.Core.Platform.WindowHandle) + - uid: OpenTK.Platform.IWindowComponent.FocusWindow(OpenTK.Platform.WindowHandle) name: FocusWindow - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_FocusWindow_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_FocusWindow_OpenTK_Platform_WindowHandle_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.FocusWindow(OpenTK.Core.Platform.WindowHandle) + - uid: OpenTK.Platform.IWindowComponent.FocusWindow(OpenTK.Platform.WindowHandle) name: FocusWindow - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_FocusWindow_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_FocusWindow_OpenTK_Platform_WindowHandle_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ) - uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.RequestAttention* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSWindowComponent.RequestAttention - href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_RequestAttention_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_RequestAttention_OpenTK_Platform_WindowHandle_ name: RequestAttention nameWithType: MacOSWindowComponent.RequestAttention fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.RequestAttention -- uid: OpenTK.Core.Platform.IWindowComponent.RequestAttention(OpenTK.Core.Platform.WindowHandle) - commentId: M:OpenTK.Core.Platform.IWindowComponent.RequestAttention(OpenTK.Core.Platform.WindowHandle) - parent: OpenTK.Core.Platform.IWindowComponent - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_RequestAttention_OpenTK_Core_Platform_WindowHandle_ +- uid: OpenTK.Platform.IWindowComponent.RequestAttention(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.RequestAttention(OpenTK.Platform.WindowHandle) + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_RequestAttention_OpenTK_Platform_WindowHandle_ name: RequestAttention(WindowHandle) nameWithType: IWindowComponent.RequestAttention(WindowHandle) - fullName: OpenTK.Core.Platform.IWindowComponent.RequestAttention(OpenTK.Core.Platform.WindowHandle) + fullName: OpenTK.Platform.IWindowComponent.RequestAttention(OpenTK.Platform.WindowHandle) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.RequestAttention(OpenTK.Core.Platform.WindowHandle) + - uid: OpenTK.Platform.IWindowComponent.RequestAttention(OpenTK.Platform.WindowHandle) name: RequestAttention - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_RequestAttention_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_RequestAttention_OpenTK_Platform_WindowHandle_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.RequestAttention(OpenTK.Core.Platform.WindowHandle) + - uid: OpenTK.Platform.IWindowComponent.RequestAttention(OpenTK.Platform.WindowHandle) name: RequestAttention - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_RequestAttention_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_RequestAttention_OpenTK_Platform_WindowHandle_ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ) - uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.ScreenToClient* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSWindowComponent.ScreenToClient - href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_ScreenToClient_OpenTK_Core_Platform_WindowHandle_System_Int32_System_Int32_System_Int32__System_Int32__ + href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_ScreenToClient_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_System_Int32__System_Int32__ name: ScreenToClient nameWithType: MacOSWindowComponent.ScreenToClient fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.ScreenToClient -- uid: OpenTK.Core.Platform.IWindowComponent.ScreenToClient(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) - commentId: M:OpenTK.Core.Platform.IWindowComponent.ScreenToClient(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) - parent: OpenTK.Core.Platform.IWindowComponent +- uid: OpenTK.Platform.IWindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) + commentId: M:OpenTK.Platform.IWindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) + parent: OpenTK.Platform.IWindowComponent isExternal: true - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_ScreenToClient_OpenTK_Core_Platform_WindowHandle_System_Int32_System_Int32_System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_ScreenToClient_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_System_Int32__System_Int32__ name: ScreenToClient(WindowHandle, int, int, out int, out int) nameWithType: IWindowComponent.ScreenToClient(WindowHandle, int, int, out int, out int) - fullName: OpenTK.Core.Platform.IWindowComponent.ScreenToClient(OpenTK.Core.Platform.WindowHandle, int, int, out int, out int) + fullName: OpenTK.Platform.IWindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle, int, int, out int, out int) nameWithType.vb: IWindowComponent.ScreenToClient(WindowHandle, Integer, Integer, Integer, Integer) - fullName.vb: OpenTK.Core.Platform.IWindowComponent.ScreenToClient(OpenTK.Core.Platform.WindowHandle, Integer, Integer, Integer, Integer) + fullName.vb: OpenTK.Platform.IWindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle, Integer, Integer, Integer, Integer) name.vb: ScreenToClient(WindowHandle, Integer, Integer, Integer, Integer) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.ScreenToClient(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) + - uid: OpenTK.Platform.IWindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) name: ScreenToClient - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_ScreenToClient_OpenTK_Core_Platform_WindowHandle_System_Int32_System_Int32_System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_ScreenToClient_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_System_Int32__System_Int32__ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - uid: System.Int32 @@ -5641,13 +5413,13 @@ references: href: https://learn.microsoft.com/dotnet/api/system.int32 - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.ScreenToClient(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) + - uid: OpenTK.Platform.IWindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) name: ScreenToClient - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_ScreenToClient_OpenTK_Core_Platform_WindowHandle_System_Int32_System_Int32_System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_ScreenToClient_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_System_Int32__System_Int32__ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - uid: System.Int32 @@ -5675,29 +5447,29 @@ references: - name: ) - uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.ClientToScreen* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSWindowComponent.ClientToScreen - href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_ClientToScreen_OpenTK_Core_Platform_WindowHandle_System_Int32_System_Int32_System_Int32__System_Int32__ + href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_ClientToScreen_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_System_Int32__System_Int32__ name: ClientToScreen nameWithType: MacOSWindowComponent.ClientToScreen fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.ClientToScreen -- uid: OpenTK.Core.Platform.IWindowComponent.ClientToScreen(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) - commentId: M:OpenTK.Core.Platform.IWindowComponent.ClientToScreen(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) - parent: OpenTK.Core.Platform.IWindowComponent +- uid: OpenTK.Platform.IWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) + commentId: M:OpenTK.Platform.IWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) + parent: OpenTK.Platform.IWindowComponent isExternal: true - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_ClientToScreen_OpenTK_Core_Platform_WindowHandle_System_Int32_System_Int32_System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_ClientToScreen_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_System_Int32__System_Int32__ name: ClientToScreen(WindowHandle, int, int, out int, out int) nameWithType: IWindowComponent.ClientToScreen(WindowHandle, int, int, out int, out int) - fullName: OpenTK.Core.Platform.IWindowComponent.ClientToScreen(OpenTK.Core.Platform.WindowHandle, int, int, out int, out int) + fullName: OpenTK.Platform.IWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle, int, int, out int, out int) nameWithType.vb: IWindowComponent.ClientToScreen(WindowHandle, Integer, Integer, Integer, Integer) - fullName.vb: OpenTK.Core.Platform.IWindowComponent.ClientToScreen(OpenTK.Core.Platform.WindowHandle, Integer, Integer, Integer, Integer) + fullName.vb: OpenTK.Platform.IWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle, Integer, Integer, Integer, Integer) name.vb: ClientToScreen(WindowHandle, Integer, Integer, Integer, Integer) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.ClientToScreen(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) + - uid: OpenTK.Platform.IWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) name: ClientToScreen - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_ClientToScreen_OpenTK_Core_Platform_WindowHandle_System_Int32_System_Int32_System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_ClientToScreen_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_System_Int32__System_Int32__ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - uid: System.Int32 @@ -5728,13 +5500,13 @@ references: href: https://learn.microsoft.com/dotnet/api/system.int32 - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.ClientToScreen(OpenTK.Core.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) + - uid: OpenTK.Platform.IWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) name: ClientToScreen - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_ClientToScreen_OpenTK_Core_Platform_WindowHandle_System_Int32_System_Int32_System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_ClientToScreen_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_System_Int32__System_Int32__ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - uid: System.Int32 @@ -5760,37 +5532,37 @@ references: isExternal: true href: https://learn.microsoft.com/dotnet/api/system.int32 - name: ) -- uid: OpenTK.Core.Platform.WindowScaleChangeEventArgs - commentId: T:OpenTK.Core.Platform.WindowScaleChangeEventArgs - href: OpenTK.Core.Platform.WindowScaleChangeEventArgs.html +- uid: OpenTK.Platform.WindowScaleChangeEventArgs + commentId: T:OpenTK.Platform.WindowScaleChangeEventArgs + href: OpenTK.Platform.WindowScaleChangeEventArgs.html name: WindowScaleChangeEventArgs nameWithType: WindowScaleChangeEventArgs - fullName: OpenTK.Core.Platform.WindowScaleChangeEventArgs + fullName: OpenTK.Platform.WindowScaleChangeEventArgs - uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetScaleFactor* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetScaleFactor - href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_GetScaleFactor_OpenTK_Core_Platform_WindowHandle_System_Single__System_Single__ + href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_GetScaleFactor_OpenTK_Platform_WindowHandle_System_Single__System_Single__ name: GetScaleFactor nameWithType: MacOSWindowComponent.GetScaleFactor fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetScaleFactor -- uid: OpenTK.Core.Platform.IWindowComponent.GetScaleFactor(OpenTK.Core.Platform.WindowHandle,System.Single@,System.Single@) - commentId: M:OpenTK.Core.Platform.IWindowComponent.GetScaleFactor(OpenTK.Core.Platform.WindowHandle,System.Single@,System.Single@) - parent: OpenTK.Core.Platform.IWindowComponent +- uid: OpenTK.Platform.IWindowComponent.GetScaleFactor(OpenTK.Platform.WindowHandle,System.Single@,System.Single@) + commentId: M:OpenTK.Platform.IWindowComponent.GetScaleFactor(OpenTK.Platform.WindowHandle,System.Single@,System.Single@) + parent: OpenTK.Platform.IWindowComponent isExternal: true - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetScaleFactor_OpenTK_Core_Platform_WindowHandle_System_Single__System_Single__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetScaleFactor_OpenTK_Platform_WindowHandle_System_Single__System_Single__ name: GetScaleFactor(WindowHandle, out float, out float) nameWithType: IWindowComponent.GetScaleFactor(WindowHandle, out float, out float) - fullName: OpenTK.Core.Platform.IWindowComponent.GetScaleFactor(OpenTK.Core.Platform.WindowHandle, out float, out float) + fullName: OpenTK.Platform.IWindowComponent.GetScaleFactor(OpenTK.Platform.WindowHandle, out float, out float) nameWithType.vb: IWindowComponent.GetScaleFactor(WindowHandle, Single, Single) - fullName.vb: OpenTK.Core.Platform.IWindowComponent.GetScaleFactor(OpenTK.Core.Platform.WindowHandle, Single, Single) + fullName.vb: OpenTK.Platform.IWindowComponent.GetScaleFactor(OpenTK.Platform.WindowHandle, Single, Single) name.vb: GetScaleFactor(WindowHandle, Single, Single) spec.csharp: - - uid: OpenTK.Core.Platform.IWindowComponent.GetScaleFactor(OpenTK.Core.Platform.WindowHandle,System.Single@,System.Single@) + - uid: OpenTK.Platform.IWindowComponent.GetScaleFactor(OpenTK.Platform.WindowHandle,System.Single@,System.Single@) name: GetScaleFactor - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetScaleFactor_OpenTK_Core_Platform_WindowHandle_System_Single__System_Single__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetScaleFactor_OpenTK_Platform_WindowHandle_System_Single__System_Single__ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - name: out @@ -5809,13 +5581,13 @@ references: href: https://learn.microsoft.com/dotnet/api/system.single - name: ) spec.vb: - - uid: OpenTK.Core.Platform.IWindowComponent.GetScaleFactor(OpenTK.Core.Platform.WindowHandle,System.Single@,System.Single@) + - uid: OpenTK.Platform.IWindowComponent.GetScaleFactor(OpenTK.Platform.WindowHandle,System.Single@,System.Single@) name: GetScaleFactor - href: OpenTK.Core.Platform.IWindowComponent.html#OpenTK_Core_Platform_IWindowComponent_GetScaleFactor_OpenTK_Core_Platform_WindowHandle_System_Single__System_Single__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetScaleFactor_OpenTK_Platform_WindowHandle_System_Single__System_Single__ - name: ( - - uid: OpenTK.Core.Platform.WindowHandle + - uid: OpenTK.Platform.WindowHandle name: WindowHandle - href: OpenTK.Core.Platform.WindowHandle.html + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - uid: System.Single @@ -5842,7 +5614,7 @@ references: name.vb: Single - uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetNSWindow* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetNSWindow - href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_GetNSWindow_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_GetNSWindow_OpenTK_Platform_WindowHandle_ name: GetNSWindow nameWithType: MacOSWindowComponent.GetNSWindow fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetNSWindow @@ -5859,7 +5631,7 @@ references: name.vb: IntPtr - uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetNSView* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetNSView - href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_GetNSView_OpenTK_Core_Platform_WindowHandle_ + href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_GetNSView_OpenTK_Platform_WindowHandle_ name: GetNSView nameWithType: MacOSWindowComponent.GetNSView fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetNSView diff --git a/api/OpenTK.Platform.Native.macOS.yml b/api/OpenTK.Platform.Native.macOS.yml index 4f2026d2..91f35648 100644 --- a/api/OpenTK.Platform.Native.macOS.yml +++ b/api/OpenTK.Platform.Native.macOS.yml @@ -23,7 +23,7 @@ items: fullName: OpenTK.Platform.Native.macOS type: Namespace assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform references: - uid: OpenTK.Platform.Native.macOS.MacOSClipboardComponent commentId: T:OpenTK.Platform.Native.macOS.MacOSClipboardComponent diff --git a/api/OpenTK.Platform.Native.yml b/api/OpenTK.Platform.Native.yml index f27fd864..ac5ed0c5 100644 --- a/api/OpenTK.Platform.Native.yml +++ b/api/OpenTK.Platform.Native.yml @@ -6,7 +6,6 @@ items: children: - OpenTK.Platform.Native.Backend - OpenTK.Platform.Native.PlatformComponents - - OpenTK.Platform.Native.Toolkit langs: - csharp - vb @@ -15,7 +14,7 @@ items: fullName: OpenTK.Platform.Native type: Namespace assemblies: - - OpenTK.Platform.Native + - OpenTK.Platform references: - uid: OpenTK.Platform.Native.Backend commentId: T:OpenTK.Platform.Native.Backend @@ -30,12 +29,6 @@ references: name: PlatformComponents nameWithType: PlatformComponents fullName: OpenTK.Platform.Native.PlatformComponents -- uid: OpenTK.Platform.Native.Toolkit - commentId: T:OpenTK.Platform.Native.Toolkit - href: OpenTK.Platform.Native.Toolkit.html - name: Toolkit - nameWithType: Toolkit - fullName: OpenTK.Platform.Native.Toolkit - uid: OpenTK.Platform.Native commentId: N:OpenTK.Platform.Native href: OpenTK.html diff --git a/api/OpenTK.Platform.OpenDialogOptions.yml b/api/OpenTK.Platform.OpenDialogOptions.yml new file mode 100644 index 00000000..3bcc07a4 --- /dev/null +++ b/api/OpenTK.Platform.OpenDialogOptions.yml @@ -0,0 +1,133 @@ +### YamlMime:ManagedReference +items: +- uid: OpenTK.Platform.OpenDialogOptions + commentId: T:OpenTK.Platform.OpenDialogOptions + id: OpenDialogOptions + parent: OpenTK.Platform + children: + - OpenTK.Platform.OpenDialogOptions.AllowMultiSelect + - OpenTK.Platform.OpenDialogOptions.SelectDirectory + langs: + - csharp + - vb + name: OpenDialogOptions + nameWithType: OpenDialogOptions + fullName: OpenTK.Platform.OpenDialogOptions + type: Enum + source: + id: OpenDialogOptions + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\OpenDialogOptions.cs + startLine: 11 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Options for open dialogs. + example: [] + syntax: + content: >- + [Flags] + + public enum OpenDialogOptions + content.vb: >- + + + Public Enum OpenDialogOptions + attributes: + - type: System.FlagsAttribute + ctor: System.FlagsAttribute.#ctor + arguments: [] +- uid: OpenTK.Platform.OpenDialogOptions.AllowMultiSelect + commentId: F:OpenTK.Platform.OpenDialogOptions.AllowMultiSelect + id: AllowMultiSelect + parent: OpenTK.Platform.OpenDialogOptions + langs: + - csharp + - vb + name: AllowMultiSelect + nameWithType: OpenDialogOptions.AllowMultiSelect + fullName: OpenTK.Platform.OpenDialogOptions.AllowMultiSelect + type: Field + source: + id: AllowMultiSelect + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\OpenDialogOptions.cs + startLine: 17 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Allows multiple items to be selected. + example: [] + syntax: + content: AllowMultiSelect = 1 + return: + type: OpenTK.Platform.OpenDialogOptions +- uid: OpenTK.Platform.OpenDialogOptions.SelectDirectory + commentId: F:OpenTK.Platform.OpenDialogOptions.SelectDirectory + id: SelectDirectory + parent: OpenTK.Platform.OpenDialogOptions + langs: + - csharp + - vb + name: SelectDirectory + nameWithType: OpenDialogOptions.SelectDirectory + fullName: OpenTK.Platform.OpenDialogOptions.SelectDirectory + type: Field + source: + id: SelectDirectory + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\OpenDialogOptions.cs + startLine: 24 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Select directories instead of files. Should only be specified if is true. + example: [] + syntax: + content: SelectDirectory = 2 + return: + type: OpenTK.Platform.OpenDialogOptions + seealso: + - linkId: OpenTK.Platform.IDialogComponent.CanTargetFolders + commentId: P:OpenTK.Platform.IDialogComponent.CanTargetFolders +references: +- uid: OpenTK.Platform + commentId: N:OpenTK.Platform + href: OpenTK.html + name: OpenTK.Platform + nameWithType: OpenTK.Platform + fullName: OpenTK.Platform + spec.csharp: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Platform + name: Platform + href: OpenTK.Platform.html + spec.vb: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Platform + name: Platform + href: OpenTK.Platform.html +- uid: OpenTK.Platform.OpenDialogOptions + commentId: T:OpenTK.Platform.OpenDialogOptions + parent: OpenTK.Platform + href: OpenTK.Platform.OpenDialogOptions.html + name: OpenDialogOptions + nameWithType: OpenDialogOptions + fullName: OpenTK.Platform.OpenDialogOptions +- uid: OpenTK.Platform.IDialogComponent.CanTargetFolders + commentId: P:OpenTK.Platform.IDialogComponent.CanTargetFolders + parent: OpenTK.Platform.IDialogComponent + href: OpenTK.Platform.IDialogComponent.html#OpenTK_Platform_IDialogComponent_CanTargetFolders + name: CanTargetFolders + nameWithType: IDialogComponent.CanTargetFolders + fullName: OpenTK.Platform.IDialogComponent.CanTargetFolders +- uid: OpenTK.Platform.IDialogComponent + commentId: T:OpenTK.Platform.IDialogComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IDialogComponent.html + name: IDialogComponent + nameWithType: IDialogComponent + fullName: OpenTK.Platform.IDialogComponent diff --git a/api/OpenTK.Core.Platform.OpenGLContextHandle.yml b/api/OpenTK.Platform.OpenGLContextHandle.yml similarity index 77% rename from api/OpenTK.Core.Platform.OpenGLContextHandle.yml rename to api/OpenTK.Platform.OpenGLContextHandle.yml index 793eacb7..6ce196f8 100644 --- a/api/OpenTK.Core.Platform.OpenGLContextHandle.yml +++ b/api/OpenTK.Platform.OpenGLContextHandle.yml @@ -1,28 +1,24 @@ ### YamlMime:ManagedReference items: -- uid: OpenTK.Core.Platform.OpenGLContextHandle - commentId: T:OpenTK.Core.Platform.OpenGLContextHandle +- uid: OpenTK.Platform.OpenGLContextHandle + commentId: T:OpenTK.Platform.OpenGLContextHandle id: OpenGLContextHandle - parent: OpenTK.Core.Platform + parent: OpenTK.Platform children: [] langs: - csharp - vb name: OpenGLContextHandle nameWithType: OpenGLContextHandle - fullName: OpenTK.Core.Platform.OpenGLContextHandle + fullName: OpenTK.Platform.OpenGLContextHandle type: Class source: - remote: - path: src/OpenTK.Core/Platform/Handles/OpenGLContextHandle.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: OpenGLContextHandle - path: opentk/src/OpenTK.Core/Platform/Handles/OpenGLContextHandle.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Handles\OpenGLContextHandle.cs startLine: 5 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform + - OpenTK.Platform + namespace: OpenTK.Platform summary: Handle to an OpenGL context. example: [] syntax: @@ -30,10 +26,10 @@ items: content.vb: Public MustInherit Class OpenGLContextHandle Inherits PalHandle inheritance: - System.Object - - OpenTK.Core.Platform.PalHandle + - OpenTK.Platform.PalHandle inheritedMembers: - - OpenTK.Core.Platform.PalHandle.UserData - - OpenTK.Core.Platform.PalHandle.As``1(OpenTK.Core.Platform.IPalComponent) + - OpenTK.Platform.PalHandle.UserData + - OpenTK.Platform.PalHandle.As``1(OpenTK.Platform.IPalComponent) - System.Object.Equals(System.Object) - System.Object.Equals(System.Object,System.Object) - System.Object.GetHashCode @@ -42,36 +38,28 @@ items: - System.Object.ReferenceEquals(System.Object,System.Object) - System.Object.ToString references: -- uid: OpenTK.Core.Platform - commentId: N:OpenTK.Core.Platform +- uid: OpenTK.Platform + commentId: N:OpenTK.Platform href: OpenTK.html - name: OpenTK.Core.Platform - nameWithType: OpenTK.Core.Platform - fullName: OpenTK.Core.Platform + name: OpenTK.Platform + nameWithType: OpenTK.Platform + fullName: OpenTK.Platform spec.csharp: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html spec.vb: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html - uid: System.Object commentId: T:System.Object parent: System @@ -83,55 +71,55 @@ references: nameWithType.vb: Object fullName.vb: Object name.vb: Object -- uid: OpenTK.Core.Platform.PalHandle - commentId: T:OpenTK.Core.Platform.PalHandle - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.PalHandle.html +- uid: OpenTK.Platform.PalHandle + commentId: T:OpenTK.Platform.PalHandle + parent: OpenTK.Platform + href: OpenTK.Platform.PalHandle.html name: PalHandle nameWithType: PalHandle - fullName: OpenTK.Core.Platform.PalHandle -- uid: OpenTK.Core.Platform.PalHandle.UserData - commentId: P:OpenTK.Core.Platform.PalHandle.UserData - parent: OpenTK.Core.Platform.PalHandle - href: OpenTK.Core.Platform.PalHandle.html#OpenTK_Core_Platform_PalHandle_UserData + fullName: OpenTK.Platform.PalHandle +- uid: OpenTK.Platform.PalHandle.UserData + commentId: P:OpenTK.Platform.PalHandle.UserData + parent: OpenTK.Platform.PalHandle + href: OpenTK.Platform.PalHandle.html#OpenTK_Platform_PalHandle_UserData name: UserData nameWithType: PalHandle.UserData - fullName: OpenTK.Core.Platform.PalHandle.UserData -- uid: OpenTK.Core.Platform.PalHandle.As``1(OpenTK.Core.Platform.IPalComponent) - commentId: M:OpenTK.Core.Platform.PalHandle.As``1(OpenTK.Core.Platform.IPalComponent) - parent: OpenTK.Core.Platform.PalHandle - href: OpenTK.Core.Platform.PalHandle.html#OpenTK_Core_Platform_PalHandle_As__1_OpenTK_Core_Platform_IPalComponent_ + fullName: OpenTK.Platform.PalHandle.UserData +- uid: OpenTK.Platform.PalHandle.As``1(OpenTK.Platform.IPalComponent) + commentId: M:OpenTK.Platform.PalHandle.As``1(OpenTK.Platform.IPalComponent) + parent: OpenTK.Platform.PalHandle + href: OpenTK.Platform.PalHandle.html#OpenTK_Platform_PalHandle_As__1_OpenTK_Platform_IPalComponent_ name: As(IPalComponent) nameWithType: PalHandle.As(IPalComponent) - fullName: OpenTK.Core.Platform.PalHandle.As(OpenTK.Core.Platform.IPalComponent) + fullName: OpenTK.Platform.PalHandle.As(OpenTK.Platform.IPalComponent) nameWithType.vb: PalHandle.As(Of T)(IPalComponent) - fullName.vb: OpenTK.Core.Platform.PalHandle.As(Of T)(OpenTK.Core.Platform.IPalComponent) + fullName.vb: OpenTK.Platform.PalHandle.As(Of T)(OpenTK.Platform.IPalComponent) name.vb: As(Of T)(IPalComponent) spec.csharp: - - uid: OpenTK.Core.Platform.PalHandle.As``1(OpenTK.Core.Platform.IPalComponent) + - uid: OpenTK.Platform.PalHandle.As``1(OpenTK.Platform.IPalComponent) name: As - href: OpenTK.Core.Platform.PalHandle.html#OpenTK_Core_Platform_PalHandle_As__1_OpenTK_Core_Platform_IPalComponent_ + href: OpenTK.Platform.PalHandle.html#OpenTK_Platform_PalHandle_As__1_OpenTK_Platform_IPalComponent_ - name: < - name: T - name: '>' - name: ( - - uid: OpenTK.Core.Platform.IPalComponent + - uid: OpenTK.Platform.IPalComponent name: IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html + href: OpenTK.Platform.IPalComponent.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.PalHandle.As``1(OpenTK.Core.Platform.IPalComponent) + - uid: OpenTK.Platform.PalHandle.As``1(OpenTK.Platform.IPalComponent) name: As - href: OpenTK.Core.Platform.PalHandle.html#OpenTK_Core_Platform_PalHandle_As__1_OpenTK_Core_Platform_IPalComponent_ + href: OpenTK.Platform.PalHandle.html#OpenTK_Platform_PalHandle_As__1_OpenTK_Platform_IPalComponent_ - name: ( - name: Of - name: " " - name: T - name: ) - name: ( - - uid: OpenTK.Core.Platform.IPalComponent + - uid: OpenTK.Platform.IPalComponent name: IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html + href: OpenTK.Platform.IPalComponent.html - name: ) - uid: System.Object.Equals(System.Object) commentId: M:System.Object.Equals(System.Object) diff --git a/api/OpenTK.Platform.OpenGLGraphicsApiHints.yml b/api/OpenTK.Platform.OpenGLGraphicsApiHints.yml new file mode 100644 index 00000000..f61b8274 --- /dev/null +++ b/api/OpenTK.Platform.OpenGLGraphicsApiHints.yml @@ -0,0 +1,1459 @@ +### YamlMime:ManagedReference +items: +- uid: OpenTK.Platform.OpenGLGraphicsApiHints + commentId: T:OpenTK.Platform.OpenGLGraphicsApiHints + id: OpenGLGraphicsApiHints + parent: OpenTK.Platform + children: + - OpenTK.Platform.OpenGLGraphicsApiHints.#ctor + - OpenTK.Platform.OpenGLGraphicsApiHints.AlphaColorBits + - OpenTK.Platform.OpenGLGraphicsApiHints.Api + - OpenTK.Platform.OpenGLGraphicsApiHints.BlueColorBits + - OpenTK.Platform.OpenGLGraphicsApiHints.Copy + - OpenTK.Platform.OpenGLGraphicsApiHints.DebugFlag + - OpenTK.Platform.OpenGLGraphicsApiHints.DepthBits + - OpenTK.Platform.OpenGLGraphicsApiHints.DoubleBuffer + - OpenTK.Platform.OpenGLGraphicsApiHints.ForwardCompatibleFlag + - OpenTK.Platform.OpenGLGraphicsApiHints.GreenColorBits + - OpenTK.Platform.OpenGLGraphicsApiHints.Multisamples + - OpenTK.Platform.OpenGLGraphicsApiHints.NoErrorFlag + - OpenTK.Platform.OpenGLGraphicsApiHints.PixelFormat + - OpenTK.Platform.OpenGLGraphicsApiHints.Profile + - OpenTK.Platform.OpenGLGraphicsApiHints.RedColorBits + - OpenTK.Platform.OpenGLGraphicsApiHints.ReleaseBehaviour + - OpenTK.Platform.OpenGLGraphicsApiHints.ResetIsolationFlag + - OpenTK.Platform.OpenGLGraphicsApiHints.ResetNotificationStrategy + - OpenTK.Platform.OpenGLGraphicsApiHints.RobustnessFlag + - OpenTK.Platform.OpenGLGraphicsApiHints.Selector + - OpenTK.Platform.OpenGLGraphicsApiHints.SharedContext + - OpenTK.Platform.OpenGLGraphicsApiHints.StencilBits + - OpenTK.Platform.OpenGLGraphicsApiHints.SwapMethod + - OpenTK.Platform.OpenGLGraphicsApiHints.UseFlushControl + - OpenTK.Platform.OpenGLGraphicsApiHints.UseSelectorOnMacOS + - OpenTK.Platform.OpenGLGraphicsApiHints.Version + - OpenTK.Platform.OpenGLGraphicsApiHints.sRGBFramebuffer + langs: + - csharp + - vb + name: OpenGLGraphicsApiHints + nameWithType: OpenGLGraphicsApiHints + fullName: OpenTK.Platform.OpenGLGraphicsApiHints + type: Class + source: + id: OpenGLGraphicsApiHints + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\OpenGLGraphicsApiHints.cs + startLine: 9 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Graphics API hints for OpenGL family of APIs. + example: [] + syntax: + content: 'public class OpenGLGraphicsApiHints : GraphicsApiHints' + content.vb: Public Class OpenGLGraphicsApiHints Inherits GraphicsApiHints + inheritance: + - System.Object + - OpenTK.Platform.GraphicsApiHints + inheritedMembers: + - System.Object.Equals(System.Object) + - System.Object.Equals(System.Object,System.Object) + - System.Object.GetHashCode + - System.Object.GetType + - System.Object.MemberwiseClone + - System.Object.ReferenceEquals(System.Object,System.Object) + - System.Object.ToString +- uid: OpenTK.Platform.OpenGLGraphicsApiHints.Api + commentId: P:OpenTK.Platform.OpenGLGraphicsApiHints.Api + id: Api + parent: OpenTK.Platform.OpenGLGraphicsApiHints + langs: + - csharp + - vb + name: Api + nameWithType: OpenGLGraphicsApiHints.Api + fullName: OpenTK.Platform.OpenGLGraphicsApiHints.Api + type: Property + source: + id: Api + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\OpenGLGraphicsApiHints.cs + startLine: 12 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Which graphics API the hints are for. + example: [] + syntax: + content: public override GraphicsApi Api { get; } + parameters: [] + return: + type: OpenTK.Platform.GraphicsApi + content.vb: Public Overrides ReadOnly Property Api As GraphicsApi + overridden: OpenTK.Platform.GraphicsApiHints.Api + overload: OpenTK.Platform.OpenGLGraphicsApiHints.Api* +- uid: OpenTK.Platform.OpenGLGraphicsApiHints.Version + commentId: P:OpenTK.Platform.OpenGLGraphicsApiHints.Version + id: Version + parent: OpenTK.Platform.OpenGLGraphicsApiHints + langs: + - csharp + - vb + name: Version + nameWithType: OpenGLGraphicsApiHints.Version + fullName: OpenTK.Platform.OpenGLGraphicsApiHints.Version + type: Property + source: + id: Version + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\OpenGLGraphicsApiHints.cs + startLine: 17 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: OpenGL version to create. + example: [] + syntax: + content: public Version Version { get; set; } + parameters: [] + return: + type: System.Version + content.vb: Public Property Version As Version + overload: OpenTK.Platform.OpenGLGraphicsApiHints.Version* +- uid: OpenTK.Platform.OpenGLGraphicsApiHints.RedColorBits + commentId: P:OpenTK.Platform.OpenGLGraphicsApiHints.RedColorBits + id: RedColorBits + parent: OpenTK.Platform.OpenGLGraphicsApiHints + langs: + - csharp + - vb + name: RedColorBits + nameWithType: OpenGLGraphicsApiHints.RedColorBits + fullName: OpenTK.Platform.OpenGLGraphicsApiHints.RedColorBits + type: Property + source: + id: RedColorBits + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\OpenGLGraphicsApiHints.cs + startLine: 27 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Number of bits for red color channel. + example: [] + syntax: + content: public int RedColorBits { get; set; } + parameters: [] + return: + type: System.Int32 + content.vb: Public Property RedColorBits As Integer + overload: OpenTK.Platform.OpenGLGraphicsApiHints.RedColorBits* +- uid: OpenTK.Platform.OpenGLGraphicsApiHints.GreenColorBits + commentId: P:OpenTK.Platform.OpenGLGraphicsApiHints.GreenColorBits + id: GreenColorBits + parent: OpenTK.Platform.OpenGLGraphicsApiHints + langs: + - csharp + - vb + name: GreenColorBits + nameWithType: OpenGLGraphicsApiHints.GreenColorBits + fullName: OpenTK.Platform.OpenGLGraphicsApiHints.GreenColorBits + type: Property + source: + id: GreenColorBits + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\OpenGLGraphicsApiHints.cs + startLine: 32 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Number of bits for green color channel. + example: [] + syntax: + content: public int GreenColorBits { get; set; } + parameters: [] + return: + type: System.Int32 + content.vb: Public Property GreenColorBits As Integer + overload: OpenTK.Platform.OpenGLGraphicsApiHints.GreenColorBits* +- uid: OpenTK.Platform.OpenGLGraphicsApiHints.BlueColorBits + commentId: P:OpenTK.Platform.OpenGLGraphicsApiHints.BlueColorBits + id: BlueColorBits + parent: OpenTK.Platform.OpenGLGraphicsApiHints + langs: + - csharp + - vb + name: BlueColorBits + nameWithType: OpenGLGraphicsApiHints.BlueColorBits + fullName: OpenTK.Platform.OpenGLGraphicsApiHints.BlueColorBits + type: Property + source: + id: BlueColorBits + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\OpenGLGraphicsApiHints.cs + startLine: 37 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Number of bits for blue color channel. + example: [] + syntax: + content: public int BlueColorBits { get; set; } + parameters: [] + return: + type: System.Int32 + content.vb: Public Property BlueColorBits As Integer + overload: OpenTK.Platform.OpenGLGraphicsApiHints.BlueColorBits* +- uid: OpenTK.Platform.OpenGLGraphicsApiHints.AlphaColorBits + commentId: P:OpenTK.Platform.OpenGLGraphicsApiHints.AlphaColorBits + id: AlphaColorBits + parent: OpenTK.Platform.OpenGLGraphicsApiHints + langs: + - csharp + - vb + name: AlphaColorBits + nameWithType: OpenGLGraphicsApiHints.AlphaColorBits + fullName: OpenTK.Platform.OpenGLGraphicsApiHints.AlphaColorBits + type: Property + source: + id: AlphaColorBits + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\OpenGLGraphicsApiHints.cs + startLine: 42 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Number of bits for alpha color channel. + example: [] + syntax: + content: public int AlphaColorBits { get; set; } + parameters: [] + return: + type: System.Int32 + content.vb: Public Property AlphaColorBits As Integer + overload: OpenTK.Platform.OpenGLGraphicsApiHints.AlphaColorBits* +- uid: OpenTK.Platform.OpenGLGraphicsApiHints.StencilBits + commentId: P:OpenTK.Platform.OpenGLGraphicsApiHints.StencilBits + id: StencilBits + parent: OpenTK.Platform.OpenGLGraphicsApiHints + langs: + - csharp + - vb + name: StencilBits + nameWithType: OpenGLGraphicsApiHints.StencilBits + fullName: OpenTK.Platform.OpenGLGraphicsApiHints.StencilBits + type: Property + source: + id: StencilBits + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\OpenGLGraphicsApiHints.cs + startLine: 47 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Number of bits for stencil buffer. + example: [] + syntax: + content: public ContextStencilBits StencilBits { get; set; } + parameters: [] + return: + type: OpenTK.Platform.ContextStencilBits + content.vb: Public Property StencilBits As ContextStencilBits + overload: OpenTK.Platform.OpenGLGraphicsApiHints.StencilBits* +- uid: OpenTK.Platform.OpenGLGraphicsApiHints.DepthBits + commentId: P:OpenTK.Platform.OpenGLGraphicsApiHints.DepthBits + id: DepthBits + parent: OpenTK.Platform.OpenGLGraphicsApiHints + langs: + - csharp + - vb + name: DepthBits + nameWithType: OpenGLGraphicsApiHints.DepthBits + fullName: OpenTK.Platform.OpenGLGraphicsApiHints.DepthBits + type: Property + source: + id: DepthBits + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\OpenGLGraphicsApiHints.cs + startLine: 52 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Number of bits for depth buffer. + example: [] + syntax: + content: public ContextDepthBits DepthBits { get; set; } + parameters: [] + return: + type: OpenTK.Platform.ContextDepthBits + content.vb: Public Property DepthBits As ContextDepthBits + overload: OpenTK.Platform.OpenGLGraphicsApiHints.DepthBits* +- uid: OpenTK.Platform.OpenGLGraphicsApiHints.Multisamples + commentId: P:OpenTK.Platform.OpenGLGraphicsApiHints.Multisamples + id: Multisamples + parent: OpenTK.Platform.OpenGLGraphicsApiHints + langs: + - csharp + - vb + name: Multisamples + nameWithType: OpenGLGraphicsApiHints.Multisamples + fullName: OpenTK.Platform.OpenGLGraphicsApiHints.Multisamples + type: Property + source: + id: Multisamples + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\OpenGLGraphicsApiHints.cs + startLine: 57 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Number of MSAA samples. + example: [] + syntax: + content: public int Multisamples { get; set; } + parameters: [] + return: + type: System.Int32 + content.vb: Public Property Multisamples As Integer + overload: OpenTK.Platform.OpenGLGraphicsApiHints.Multisamples* +- uid: OpenTK.Platform.OpenGLGraphicsApiHints.DoubleBuffer + commentId: P:OpenTK.Platform.OpenGLGraphicsApiHints.DoubleBuffer + id: DoubleBuffer + parent: OpenTK.Platform.OpenGLGraphicsApiHints + langs: + - csharp + - vb + name: DoubleBuffer + nameWithType: OpenGLGraphicsApiHints.DoubleBuffer + fullName: OpenTK.Platform.OpenGLGraphicsApiHints.DoubleBuffer + type: Property + source: + id: DoubleBuffer + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\OpenGLGraphicsApiHints.cs + startLine: 62 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Enable double buffering. + example: [] + syntax: + content: public bool DoubleBuffer { get; set; } + parameters: [] + return: + type: System.Boolean + content.vb: Public Property DoubleBuffer As Boolean + overload: OpenTK.Platform.OpenGLGraphicsApiHints.DoubleBuffer* +- uid: OpenTK.Platform.OpenGLGraphicsApiHints.sRGBFramebuffer + commentId: P:OpenTK.Platform.OpenGLGraphicsApiHints.sRGBFramebuffer + id: sRGBFramebuffer + parent: OpenTK.Platform.OpenGLGraphicsApiHints + langs: + - csharp + - vb + name: sRGBFramebuffer + nameWithType: OpenGLGraphicsApiHints.sRGBFramebuffer + fullName: OpenTK.Platform.OpenGLGraphicsApiHints.sRGBFramebuffer + type: Property + source: + id: sRGBFramebuffer + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\OpenGLGraphicsApiHints.cs + startLine: 67 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Makes the backbuffer support sRGB. + example: [] + syntax: + content: public bool sRGBFramebuffer { get; set; } + parameters: [] + return: + type: System.Boolean + content.vb: Public Property sRGBFramebuffer As Boolean + overload: OpenTK.Platform.OpenGLGraphicsApiHints.sRGBFramebuffer* +- uid: OpenTK.Platform.OpenGLGraphicsApiHints.PixelFormat + commentId: P:OpenTK.Platform.OpenGLGraphicsApiHints.PixelFormat + id: PixelFormat + parent: OpenTK.Platform.OpenGLGraphicsApiHints + langs: + - csharp + - vb + name: PixelFormat + nameWithType: OpenGLGraphicsApiHints.PixelFormat + fullName: OpenTK.Platform.OpenGLGraphicsApiHints.PixelFormat + type: Property + source: + id: PixelFormat + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\OpenGLGraphicsApiHints.cs + startLine: 76 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: >- + The pixel format of the context. + + This differentiates between "normal" fixed point LDR formats + + and floating point HDR formats. + + Use or for HDR support. + + Is by default. + example: [] + syntax: + content: public ContextPixelFormat PixelFormat { get; set; } + parameters: [] + return: + type: OpenTK.Platform.ContextPixelFormat + content.vb: Public Property PixelFormat As ContextPixelFormat + overload: OpenTK.Platform.OpenGLGraphicsApiHints.PixelFormat* +- uid: OpenTK.Platform.OpenGLGraphicsApiHints.SwapMethod + commentId: P:OpenTK.Platform.OpenGLGraphicsApiHints.SwapMethod + id: SwapMethod + parent: OpenTK.Platform.OpenGLGraphicsApiHints + langs: + - csharp + - vb + name: SwapMethod + nameWithType: OpenGLGraphicsApiHints.SwapMethod + fullName: OpenTK.Platform.OpenGLGraphicsApiHints.SwapMethod + type: Property + source: + id: SwapMethod + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\OpenGLGraphicsApiHints.cs + startLine: 82 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: >- + The swap method to use for the context. + + Is by default. + example: [] + syntax: + content: public ContextSwapMethod SwapMethod { get; set; } + parameters: [] + return: + type: OpenTK.Platform.ContextSwapMethod + content.vb: Public Property SwapMethod As ContextSwapMethod + overload: OpenTK.Platform.OpenGLGraphicsApiHints.SwapMethod* +- uid: OpenTK.Platform.OpenGLGraphicsApiHints.Profile + commentId: P:OpenTK.Platform.OpenGLGraphicsApiHints.Profile + id: Profile + parent: OpenTK.Platform.OpenGLGraphicsApiHints + langs: + - csharp + - vb + name: Profile + nameWithType: OpenGLGraphicsApiHints.Profile + fullName: OpenTK.Platform.OpenGLGraphicsApiHints.Profile + type: Property + source: + id: Profile + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\OpenGLGraphicsApiHints.cs + startLine: 87 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: The OpenGL profile to request. + example: [] + syntax: + content: public OpenGLProfile Profile { get; set; } + parameters: [] + return: + type: OpenTK.Platform.OpenGLProfile + content.vb: Public Property Profile As OpenGLProfile + overload: OpenTK.Platform.OpenGLGraphicsApiHints.Profile* +- uid: OpenTK.Platform.OpenGLGraphicsApiHints.ForwardCompatibleFlag + commentId: P:OpenTK.Platform.OpenGLGraphicsApiHints.ForwardCompatibleFlag + id: ForwardCompatibleFlag + parent: OpenTK.Platform.OpenGLGraphicsApiHints + langs: + - csharp + - vb + name: ForwardCompatibleFlag + nameWithType: OpenGLGraphicsApiHints.ForwardCompatibleFlag + fullName: OpenTK.Platform.OpenGLGraphicsApiHints.ForwardCompatibleFlag + type: Property + source: + id: ForwardCompatibleFlag + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\OpenGLGraphicsApiHints.cs + startLine: 92 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: If the forward compatible flag should be set or not. + example: [] + syntax: + content: public bool ForwardCompatibleFlag { get; set; } + parameters: [] + return: + type: System.Boolean + content.vb: Public Property ForwardCompatibleFlag As Boolean + overload: OpenTK.Platform.OpenGLGraphicsApiHints.ForwardCompatibleFlag* +- uid: OpenTK.Platform.OpenGLGraphicsApiHints.DebugFlag + commentId: P:OpenTK.Platform.OpenGLGraphicsApiHints.DebugFlag + id: DebugFlag + parent: OpenTK.Platform.OpenGLGraphicsApiHints + langs: + - csharp + - vb + name: DebugFlag + nameWithType: OpenGLGraphicsApiHints.DebugFlag + fullName: OpenTK.Platform.OpenGLGraphicsApiHints.DebugFlag + type: Property + source: + id: DebugFlag + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\OpenGLGraphicsApiHints.cs + startLine: 97 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: If the debug flag should be set or not. + example: [] + syntax: + content: public bool DebugFlag { get; set; } + parameters: [] + return: + type: System.Boolean + content.vb: Public Property DebugFlag As Boolean + overload: OpenTK.Platform.OpenGLGraphicsApiHints.DebugFlag* +- uid: OpenTK.Platform.OpenGLGraphicsApiHints.RobustnessFlag + commentId: P:OpenTK.Platform.OpenGLGraphicsApiHints.RobustnessFlag + id: RobustnessFlag + parent: OpenTK.Platform.OpenGLGraphicsApiHints + langs: + - csharp + - vb + name: RobustnessFlag + nameWithType: OpenGLGraphicsApiHints.RobustnessFlag + fullName: OpenTK.Platform.OpenGLGraphicsApiHints.RobustnessFlag + type: Property + source: + id: RobustnessFlag + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\OpenGLGraphicsApiHints.cs + startLine: 102 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: If the robustness flag should be set or not. + example: [] + syntax: + content: public bool RobustnessFlag { get; set; } + parameters: [] + return: + type: System.Boolean + content.vb: Public Property RobustnessFlag As Boolean + overload: OpenTK.Platform.OpenGLGraphicsApiHints.RobustnessFlag* +- uid: OpenTK.Platform.OpenGLGraphicsApiHints.ResetNotificationStrategy + commentId: P:OpenTK.Platform.OpenGLGraphicsApiHints.ResetNotificationStrategy + id: ResetNotificationStrategy + parent: OpenTK.Platform.OpenGLGraphicsApiHints + langs: + - csharp + - vb + name: ResetNotificationStrategy + nameWithType: OpenGLGraphicsApiHints.ResetNotificationStrategy + fullName: OpenTK.Platform.OpenGLGraphicsApiHints.ResetNotificationStrategy + type: Property + source: + id: ResetNotificationStrategy + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\OpenGLGraphicsApiHints.cs + startLine: 109 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: >- + The reset notification strategy to use if is set to true. + + See GL_ARB_robustness for details. + + Default value is . + example: [] + syntax: + content: public ContextResetNotificationStrategy ResetNotificationStrategy { get; set; } + parameters: [] + return: + type: OpenTK.Platform.ContextResetNotificationStrategy + content.vb: Public Property ResetNotificationStrategy As ContextResetNotificationStrategy + overload: OpenTK.Platform.OpenGLGraphicsApiHints.ResetNotificationStrategy* +- uid: OpenTK.Platform.OpenGLGraphicsApiHints.ResetIsolationFlag + commentId: P:OpenTK.Platform.OpenGLGraphicsApiHints.ResetIsolationFlag + id: ResetIsolationFlag + parent: OpenTK.Platform.OpenGLGraphicsApiHints + langs: + - csharp + - vb + name: ResetIsolationFlag + nameWithType: OpenGLGraphicsApiHints.ResetIsolationFlag + fullName: OpenTK.Platform.OpenGLGraphicsApiHints.ResetIsolationFlag + type: Property + source: + id: ResetIsolationFlag + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\OpenGLGraphicsApiHints.cs + startLine: 115 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: >- + See GL_ARB_robustness_isolation. + + needs to be . + example: [] + syntax: + content: public bool ResetIsolationFlag { get; set; } + parameters: [] + return: + type: System.Boolean + content.vb: Public Property ResetIsolationFlag As Boolean + overload: OpenTK.Platform.OpenGLGraphicsApiHints.ResetIsolationFlag* +- uid: OpenTK.Platform.OpenGLGraphicsApiHints.NoErrorFlag + commentId: P:OpenTK.Platform.OpenGLGraphicsApiHints.NoErrorFlag + id: NoErrorFlag + parent: OpenTK.Platform.OpenGLGraphicsApiHints + langs: + - csharp + - vb + name: NoErrorFlag + nameWithType: OpenGLGraphicsApiHints.NoErrorFlag + fullName: OpenTK.Platform.OpenGLGraphicsApiHints.NoErrorFlag + type: Property + source: + id: NoErrorFlag + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\OpenGLGraphicsApiHints.cs + startLine: 122 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: >- + If the "no error" flag should be set or not. + + See KHR_no_error. + + Cannot be enabled while or is set. + example: [] + syntax: + content: public bool NoErrorFlag { get; set; } + parameters: [] + return: + type: System.Boolean + content.vb: Public Property NoErrorFlag As Boolean + overload: OpenTK.Platform.OpenGLGraphicsApiHints.NoErrorFlag* +- uid: OpenTK.Platform.OpenGLGraphicsApiHints.UseFlushControl + commentId: P:OpenTK.Platform.OpenGLGraphicsApiHints.UseFlushControl + id: UseFlushControl + parent: OpenTK.Platform.OpenGLGraphicsApiHints + langs: + - csharp + - vb + name: UseFlushControl + nameWithType: OpenGLGraphicsApiHints.UseFlushControl + fullName: OpenTK.Platform.OpenGLGraphicsApiHints.UseFlushControl + type: Property + source: + id: UseFlushControl + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\OpenGLGraphicsApiHints.cs + startLine: 128 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: >- + Whether to use KHR_context_flush_control (if available) or not. + + See for flush control options. + example: [] + syntax: + content: public bool UseFlushControl { get; set; } + parameters: [] + return: + type: System.Boolean + content.vb: Public Property UseFlushControl As Boolean + overload: OpenTK.Platform.OpenGLGraphicsApiHints.UseFlushControl* +- uid: OpenTK.Platform.OpenGLGraphicsApiHints.ReleaseBehaviour + commentId: P:OpenTK.Platform.OpenGLGraphicsApiHints.ReleaseBehaviour + id: ReleaseBehaviour + parent: OpenTK.Platform.OpenGLGraphicsApiHints + langs: + - csharp + - vb + name: ReleaseBehaviour + nameWithType: OpenGLGraphicsApiHints.ReleaseBehaviour + fullName: OpenTK.Platform.OpenGLGraphicsApiHints.ReleaseBehaviour + type: Property + source: + id: ReleaseBehaviour + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\OpenGLGraphicsApiHints.cs + startLine: 134 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: >- + If is true then this controls the context release behaviour when the context is changed. + + Is by default. + example: [] + syntax: + content: public ContextReleaseBehaviour ReleaseBehaviour { get; set; } + parameters: [] + return: + type: OpenTK.Platform.ContextReleaseBehaviour + content.vb: Public Property ReleaseBehaviour As ContextReleaseBehaviour + overload: OpenTK.Platform.OpenGLGraphicsApiHints.ReleaseBehaviour* +- uid: OpenTK.Platform.OpenGLGraphicsApiHints.SharedContext + commentId: P:OpenTK.Platform.OpenGLGraphicsApiHints.SharedContext + id: SharedContext + parent: OpenTK.Platform.OpenGLGraphicsApiHints + langs: + - csharp + - vb + name: SharedContext + nameWithType: OpenGLGraphicsApiHints.SharedContext + fullName: OpenTK.Platform.OpenGLGraphicsApiHints.SharedContext + type: Property + source: + id: SharedContext + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\OpenGLGraphicsApiHints.cs + startLine: 139 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: A context to enable context sharing with. + example: [] + syntax: + content: public OpenGLContextHandle? SharedContext { get; set; } + parameters: [] + return: + type: OpenTK.Platform.OpenGLContextHandle + content.vb: Public Property SharedContext As OpenGLContextHandle + overload: OpenTK.Platform.OpenGLGraphicsApiHints.SharedContext* +- uid: OpenTK.Platform.OpenGLGraphicsApiHints.Selector + commentId: P:OpenTK.Platform.OpenGLGraphicsApiHints.Selector + id: Selector + parent: OpenTK.Platform.OpenGLGraphicsApiHints + langs: + - csharp + - vb + name: Selector + nameWithType: OpenGLGraphicsApiHints.Selector + fullName: OpenTK.Platform.OpenGLGraphicsApiHints.Selector + type: Property + source: + id: Selector + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\OpenGLGraphicsApiHints.cs + startLine: 144 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: A callback that can be used to select appropriate backbuffer values. + example: [] + syntax: + content: public ContextValueSelector Selector { get; set; } + parameters: [] + return: + type: OpenTK.Platform.ContextValueSelector + content.vb: Public Property Selector As ContextValueSelector + overload: OpenTK.Platform.OpenGLGraphicsApiHints.Selector* +- uid: OpenTK.Platform.OpenGLGraphicsApiHints.UseSelectorOnMacOS + commentId: P:OpenTK.Platform.OpenGLGraphicsApiHints.UseSelectorOnMacOS + id: UseSelectorOnMacOS + parent: OpenTK.Platform.OpenGLGraphicsApiHints + langs: + - csharp + - vb + name: UseSelectorOnMacOS + nameWithType: OpenGLGraphicsApiHints.UseSelectorOnMacOS + fullName: OpenTK.Platform.OpenGLGraphicsApiHints.UseSelectorOnMacOS + type: Property + source: + id: UseSelectorOnMacOS + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\OpenGLGraphicsApiHints.cs + startLine: 150 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: >- + Enumerating on macOS is slow, so by default is not used on macOS. + + When this property is false the default platform selection of context values are used, which tries to find a closest match. + example: [] + syntax: + content: public bool UseSelectorOnMacOS { get; set; } + parameters: [] + return: + type: System.Boolean + content.vb: Public Property UseSelectorOnMacOS As Boolean + overload: OpenTK.Platform.OpenGLGraphicsApiHints.UseSelectorOnMacOS* +- uid: OpenTK.Platform.OpenGLGraphicsApiHints.#ctor + commentId: M:OpenTK.Platform.OpenGLGraphicsApiHints.#ctor + id: '#ctor' + parent: OpenTK.Platform.OpenGLGraphicsApiHints + langs: + - csharp + - vb + name: OpenGLGraphicsApiHints() + nameWithType: OpenGLGraphicsApiHints.OpenGLGraphicsApiHints() + fullName: OpenTK.Platform.OpenGLGraphicsApiHints.OpenGLGraphicsApiHints() + type: Constructor + source: + id: .ctor + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\OpenGLGraphicsApiHints.cs + startLine: 155 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Initializes a new instance of the class. + example: [] + syntax: + content: public OpenGLGraphicsApiHints() + content.vb: Public Sub New() + overload: OpenTK.Platform.OpenGLGraphicsApiHints.#ctor* + nameWithType.vb: OpenGLGraphicsApiHints.New() + fullName.vb: OpenTK.Platform.OpenGLGraphicsApiHints.New() + name.vb: New() +- uid: OpenTK.Platform.OpenGLGraphicsApiHints.Copy + commentId: M:OpenTK.Platform.OpenGLGraphicsApiHints.Copy + id: Copy + parent: OpenTK.Platform.OpenGLGraphicsApiHints + langs: + - csharp + - vb + name: Copy() + nameWithType: OpenGLGraphicsApiHints.Copy() + fullName: OpenTK.Platform.OpenGLGraphicsApiHints.Copy() + type: Method + source: + id: Copy + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\OpenGLGraphicsApiHints.cs + startLine: 163 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Make a memberwise copy of these settings. + example: [] + syntax: + content: public OpenGLGraphicsApiHints Copy() + return: + type: OpenTK.Platform.OpenGLGraphicsApiHints + description: The copied settings. + content.vb: Public Function Copy() As OpenGLGraphicsApiHints + overload: OpenTK.Platform.OpenGLGraphicsApiHints.Copy* +references: +- uid: OpenTK.Platform + commentId: N:OpenTK.Platform + href: OpenTK.html + name: OpenTK.Platform + nameWithType: OpenTK.Platform + fullName: OpenTK.Platform + spec.csharp: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Platform + name: Platform + href: OpenTK.Platform.html + spec.vb: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Platform + name: Platform + href: OpenTK.Platform.html +- uid: System.Object + commentId: T:System.Object + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + name: object + nameWithType: object + fullName: object + nameWithType.vb: Object + fullName.vb: Object + name.vb: Object +- uid: OpenTK.Platform.GraphicsApiHints + commentId: T:OpenTK.Platform.GraphicsApiHints + parent: OpenTK.Platform + href: OpenTK.Platform.GraphicsApiHints.html + name: GraphicsApiHints + nameWithType: GraphicsApiHints + fullName: OpenTK.Platform.GraphicsApiHints +- uid: System.Object.Equals(System.Object) + commentId: M:System.Object.Equals(System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + name: Equals(object) + nameWithType: object.Equals(object) + fullName: object.Equals(object) + nameWithType.vb: Object.Equals(Object) + fullName.vb: Object.Equals(Object) + name.vb: Equals(Object) + spec.csharp: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.Equals(System.Object,System.Object) + commentId: M:System.Object.Equals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + name: Equals(object, object) + nameWithType: object.Equals(object, object) + fullName: object.Equals(object, object) + nameWithType.vb: Object.Equals(Object, Object) + fullName.vb: Object.Equals(Object, Object) + name.vb: Equals(Object, Object) + spec.csharp: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.GetHashCode + commentId: M:System.Object.GetHashCode + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + name: GetHashCode() + nameWithType: object.GetHashCode() + fullName: object.GetHashCode() + nameWithType.vb: Object.GetHashCode() + fullName.vb: Object.GetHashCode() + spec.csharp: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) +- uid: System.Object.GetType + commentId: M:System.Object.GetType + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + name: GetType() + nameWithType: object.GetType() + fullName: object.GetType() + nameWithType.vb: Object.GetType() + fullName.vb: Object.GetType() + spec.csharp: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) +- uid: System.Object.MemberwiseClone + commentId: M:System.Object.MemberwiseClone + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + name: MemberwiseClone() + nameWithType: object.MemberwiseClone() + fullName: object.MemberwiseClone() + nameWithType.vb: Object.MemberwiseClone() + fullName.vb: Object.MemberwiseClone() + spec.csharp: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) + spec.vb: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) +- uid: System.Object.ReferenceEquals(System.Object,System.Object) + commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + name: ReferenceEquals(object, object) + nameWithType: object.ReferenceEquals(object, object) + fullName: object.ReferenceEquals(object, object) + nameWithType.vb: Object.ReferenceEquals(Object, Object) + fullName.vb: Object.ReferenceEquals(Object, Object) + name.vb: ReferenceEquals(Object, Object) + spec.csharp: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.ToString + commentId: M:System.Object.ToString + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + name: ToString() + nameWithType: object.ToString() + fullName: object.ToString() + nameWithType.vb: Object.ToString() + fullName.vb: Object.ToString() + spec.csharp: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) + spec.vb: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) +- uid: System + commentId: N:System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System + nameWithType: System + fullName: System +- uid: OpenTK.Platform.GraphicsApiHints.Api + commentId: P:OpenTK.Platform.GraphicsApiHints.Api + parent: OpenTK.Platform.GraphicsApiHints + href: OpenTK.Platform.GraphicsApiHints.html#OpenTK_Platform_GraphicsApiHints_Api + name: Api + nameWithType: GraphicsApiHints.Api + fullName: OpenTK.Platform.GraphicsApiHints.Api +- uid: OpenTK.Platform.OpenGLGraphicsApiHints.Api* + commentId: Overload:OpenTK.Platform.OpenGLGraphicsApiHints.Api + href: OpenTK.Platform.OpenGLGraphicsApiHints.html#OpenTK_Platform_OpenGLGraphicsApiHints_Api + name: Api + nameWithType: OpenGLGraphicsApiHints.Api + fullName: OpenTK.Platform.OpenGLGraphicsApiHints.Api +- uid: OpenTK.Platform.GraphicsApi + commentId: T:OpenTK.Platform.GraphicsApi + parent: OpenTK.Platform + href: OpenTK.Platform.GraphicsApi.html + name: GraphicsApi + nameWithType: GraphicsApi + fullName: OpenTK.Platform.GraphicsApi +- uid: OpenTK.Platform.OpenGLGraphicsApiHints.Version* + commentId: Overload:OpenTK.Platform.OpenGLGraphicsApiHints.Version + href: OpenTK.Platform.OpenGLGraphicsApiHints.html#OpenTK_Platform_OpenGLGraphicsApiHints_Version + name: Version + nameWithType: OpenGLGraphicsApiHints.Version + fullName: OpenTK.Platform.OpenGLGraphicsApiHints.Version +- uid: System.Version + commentId: T:System.Version + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.version + name: Version + nameWithType: Version + fullName: System.Version +- uid: OpenTK.Platform.OpenGLGraphicsApiHints.RedColorBits* + commentId: Overload:OpenTK.Platform.OpenGLGraphicsApiHints.RedColorBits + href: OpenTK.Platform.OpenGLGraphicsApiHints.html#OpenTK_Platform_OpenGLGraphicsApiHints_RedColorBits + name: RedColorBits + nameWithType: OpenGLGraphicsApiHints.RedColorBits + fullName: OpenTK.Platform.OpenGLGraphicsApiHints.RedColorBits +- uid: System.Int32 + commentId: T:System.Int32 + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + name: int + nameWithType: int + fullName: int + nameWithType.vb: Integer + fullName.vb: Integer + name.vb: Integer +- uid: OpenTK.Platform.OpenGLGraphicsApiHints.GreenColorBits* + commentId: Overload:OpenTK.Platform.OpenGLGraphicsApiHints.GreenColorBits + href: OpenTK.Platform.OpenGLGraphicsApiHints.html#OpenTK_Platform_OpenGLGraphicsApiHints_GreenColorBits + name: GreenColorBits + nameWithType: OpenGLGraphicsApiHints.GreenColorBits + fullName: OpenTK.Platform.OpenGLGraphicsApiHints.GreenColorBits +- uid: OpenTK.Platform.OpenGLGraphicsApiHints.BlueColorBits* + commentId: Overload:OpenTK.Platform.OpenGLGraphicsApiHints.BlueColorBits + href: OpenTK.Platform.OpenGLGraphicsApiHints.html#OpenTK_Platform_OpenGLGraphicsApiHints_BlueColorBits + name: BlueColorBits + nameWithType: OpenGLGraphicsApiHints.BlueColorBits + fullName: OpenTK.Platform.OpenGLGraphicsApiHints.BlueColorBits +- uid: OpenTK.Platform.OpenGLGraphicsApiHints.AlphaColorBits* + commentId: Overload:OpenTK.Platform.OpenGLGraphicsApiHints.AlphaColorBits + href: OpenTK.Platform.OpenGLGraphicsApiHints.html#OpenTK_Platform_OpenGLGraphicsApiHints_AlphaColorBits + name: AlphaColorBits + nameWithType: OpenGLGraphicsApiHints.AlphaColorBits + fullName: OpenTK.Platform.OpenGLGraphicsApiHints.AlphaColorBits +- uid: OpenTK.Platform.OpenGLGraphicsApiHints.StencilBits* + commentId: Overload:OpenTK.Platform.OpenGLGraphicsApiHints.StencilBits + href: OpenTK.Platform.OpenGLGraphicsApiHints.html#OpenTK_Platform_OpenGLGraphicsApiHints_StencilBits + name: StencilBits + nameWithType: OpenGLGraphicsApiHints.StencilBits + fullName: OpenTK.Platform.OpenGLGraphicsApiHints.StencilBits +- uid: OpenTK.Platform.ContextStencilBits + commentId: T:OpenTK.Platform.ContextStencilBits + parent: OpenTK.Platform + href: OpenTK.Platform.ContextStencilBits.html + name: ContextStencilBits + nameWithType: ContextStencilBits + fullName: OpenTK.Platform.ContextStencilBits +- uid: OpenTK.Platform.OpenGLGraphicsApiHints.DepthBits* + commentId: Overload:OpenTK.Platform.OpenGLGraphicsApiHints.DepthBits + href: OpenTK.Platform.OpenGLGraphicsApiHints.html#OpenTK_Platform_OpenGLGraphicsApiHints_DepthBits + name: DepthBits + nameWithType: OpenGLGraphicsApiHints.DepthBits + fullName: OpenTK.Platform.OpenGLGraphicsApiHints.DepthBits +- uid: OpenTK.Platform.ContextDepthBits + commentId: T:OpenTK.Platform.ContextDepthBits + parent: OpenTK.Platform + href: OpenTK.Platform.ContextDepthBits.html + name: ContextDepthBits + nameWithType: ContextDepthBits + fullName: OpenTK.Platform.ContextDepthBits +- uid: OpenTK.Platform.OpenGLGraphicsApiHints.Multisamples* + commentId: Overload:OpenTK.Platform.OpenGLGraphicsApiHints.Multisamples + href: OpenTK.Platform.OpenGLGraphicsApiHints.html#OpenTK_Platform_OpenGLGraphicsApiHints_Multisamples + name: Multisamples + nameWithType: OpenGLGraphicsApiHints.Multisamples + fullName: OpenTK.Platform.OpenGLGraphicsApiHints.Multisamples +- uid: OpenTK.Platform.OpenGLGraphicsApiHints.DoubleBuffer* + commentId: Overload:OpenTK.Platform.OpenGLGraphicsApiHints.DoubleBuffer + href: OpenTK.Platform.OpenGLGraphicsApiHints.html#OpenTK_Platform_OpenGLGraphicsApiHints_DoubleBuffer + name: DoubleBuffer + nameWithType: OpenGLGraphicsApiHints.DoubleBuffer + fullName: OpenTK.Platform.OpenGLGraphicsApiHints.DoubleBuffer +- uid: System.Boolean + commentId: T:System.Boolean + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + name: bool + nameWithType: bool + fullName: bool + nameWithType.vb: Boolean + fullName.vb: Boolean + name.vb: Boolean +- uid: OpenTK.Platform.OpenGLGraphicsApiHints.sRGBFramebuffer* + commentId: Overload:OpenTK.Platform.OpenGLGraphicsApiHints.sRGBFramebuffer + href: OpenTK.Platform.OpenGLGraphicsApiHints.html#OpenTK_Platform_OpenGLGraphicsApiHints_sRGBFramebuffer + name: sRGBFramebuffer + nameWithType: OpenGLGraphicsApiHints.sRGBFramebuffer + fullName: OpenTK.Platform.OpenGLGraphicsApiHints.sRGBFramebuffer +- uid: OpenTK.Platform.ContextPixelFormat.RGBAFloat + commentId: F:OpenTK.Platform.ContextPixelFormat.RGBAFloat + href: OpenTK.Platform.ContextPixelFormat.html#OpenTK_Platform_ContextPixelFormat_RGBAFloat + name: RGBAFloat + nameWithType: ContextPixelFormat.RGBAFloat + fullName: OpenTK.Platform.ContextPixelFormat.RGBAFloat +- uid: OpenTK.Platform.ContextPixelFormat.RGBAPackedFloat + commentId: F:OpenTK.Platform.ContextPixelFormat.RGBAPackedFloat + href: OpenTK.Platform.ContextPixelFormat.html#OpenTK_Platform_ContextPixelFormat_RGBAPackedFloat + name: RGBAPackedFloat + nameWithType: ContextPixelFormat.RGBAPackedFloat + fullName: OpenTK.Platform.ContextPixelFormat.RGBAPackedFloat +- uid: OpenTK.Platform.ContextPixelFormat.RGBA + commentId: F:OpenTK.Platform.ContextPixelFormat.RGBA + href: OpenTK.Platform.ContextPixelFormat.html#OpenTK_Platform_ContextPixelFormat_RGBA + name: RGBA + nameWithType: ContextPixelFormat.RGBA + fullName: OpenTK.Platform.ContextPixelFormat.RGBA +- uid: OpenTK.Platform.OpenGLGraphicsApiHints.PixelFormat* + commentId: Overload:OpenTK.Platform.OpenGLGraphicsApiHints.PixelFormat + href: OpenTK.Platform.OpenGLGraphicsApiHints.html#OpenTK_Platform_OpenGLGraphicsApiHints_PixelFormat + name: PixelFormat + nameWithType: OpenGLGraphicsApiHints.PixelFormat + fullName: OpenTK.Platform.OpenGLGraphicsApiHints.PixelFormat +- uid: OpenTK.Platform.ContextPixelFormat + commentId: T:OpenTK.Platform.ContextPixelFormat + parent: OpenTK.Platform + href: OpenTK.Platform.ContextPixelFormat.html + name: ContextPixelFormat + nameWithType: ContextPixelFormat + fullName: OpenTK.Platform.ContextPixelFormat +- uid: OpenTK.Platform.ContextSwapMethod.Undefined + commentId: F:OpenTK.Platform.ContextSwapMethod.Undefined + href: OpenTK.Platform.ContextSwapMethod.html#OpenTK_Platform_ContextSwapMethod_Undefined + name: Undefined + nameWithType: ContextSwapMethod.Undefined + fullName: OpenTK.Platform.ContextSwapMethod.Undefined +- uid: OpenTK.Platform.OpenGLGraphicsApiHints.SwapMethod* + commentId: Overload:OpenTK.Platform.OpenGLGraphicsApiHints.SwapMethod + href: OpenTK.Platform.OpenGLGraphicsApiHints.html#OpenTK_Platform_OpenGLGraphicsApiHints_SwapMethod + name: SwapMethod + nameWithType: OpenGLGraphicsApiHints.SwapMethod + fullName: OpenTK.Platform.OpenGLGraphicsApiHints.SwapMethod +- uid: OpenTK.Platform.ContextSwapMethod + commentId: T:OpenTK.Platform.ContextSwapMethod + parent: OpenTK.Platform + href: OpenTK.Platform.ContextSwapMethod.html + name: ContextSwapMethod + nameWithType: ContextSwapMethod + fullName: OpenTK.Platform.ContextSwapMethod +- uid: OpenTK.Platform.OpenGLGraphicsApiHints.Profile* + commentId: Overload:OpenTK.Platform.OpenGLGraphicsApiHints.Profile + href: OpenTK.Platform.OpenGLGraphicsApiHints.html#OpenTK_Platform_OpenGLGraphicsApiHints_Profile + name: Profile + nameWithType: OpenGLGraphicsApiHints.Profile + fullName: OpenTK.Platform.OpenGLGraphicsApiHints.Profile +- uid: OpenTK.Platform.OpenGLProfile + commentId: T:OpenTK.Platform.OpenGLProfile + parent: OpenTK.Platform + href: OpenTK.Platform.OpenGLProfile.html + name: OpenGLProfile + nameWithType: OpenGLProfile + fullName: OpenTK.Platform.OpenGLProfile +- uid: OpenTK.Platform.OpenGLGraphicsApiHints.ForwardCompatibleFlag* + commentId: Overload:OpenTK.Platform.OpenGLGraphicsApiHints.ForwardCompatibleFlag + href: OpenTK.Platform.OpenGLGraphicsApiHints.html#OpenTK_Platform_OpenGLGraphicsApiHints_ForwardCompatibleFlag + name: ForwardCompatibleFlag + nameWithType: OpenGLGraphicsApiHints.ForwardCompatibleFlag + fullName: OpenTK.Platform.OpenGLGraphicsApiHints.ForwardCompatibleFlag +- uid: OpenTK.Platform.OpenGLGraphicsApiHints.DebugFlag* + commentId: Overload:OpenTK.Platform.OpenGLGraphicsApiHints.DebugFlag + href: OpenTK.Platform.OpenGLGraphicsApiHints.html#OpenTK_Platform_OpenGLGraphicsApiHints_DebugFlag + name: DebugFlag + nameWithType: OpenGLGraphicsApiHints.DebugFlag + fullName: OpenTK.Platform.OpenGLGraphicsApiHints.DebugFlag +- uid: OpenTK.Platform.OpenGLGraphicsApiHints.RobustnessFlag* + commentId: Overload:OpenTK.Platform.OpenGLGraphicsApiHints.RobustnessFlag + href: OpenTK.Platform.OpenGLGraphicsApiHints.html#OpenTK_Platform_OpenGLGraphicsApiHints_RobustnessFlag + name: RobustnessFlag + nameWithType: OpenGLGraphicsApiHints.RobustnessFlag + fullName: OpenTK.Platform.OpenGLGraphicsApiHints.RobustnessFlag +- uid: OpenTK.Platform.OpenGLGraphicsApiHints.RobustnessFlag + commentId: P:OpenTK.Platform.OpenGLGraphicsApiHints.RobustnessFlag + href: OpenTK.Platform.OpenGLGraphicsApiHints.html#OpenTK_Platform_OpenGLGraphicsApiHints_RobustnessFlag + name: RobustnessFlag + nameWithType: OpenGLGraphicsApiHints.RobustnessFlag + fullName: OpenTK.Platform.OpenGLGraphicsApiHints.RobustnessFlag +- uid: OpenTK.Platform.ContextResetNotificationStrategy.NoResetNotification + commentId: F:OpenTK.Platform.ContextResetNotificationStrategy.NoResetNotification + href: OpenTK.Platform.ContextResetNotificationStrategy.html#OpenTK_Platform_ContextResetNotificationStrategy_NoResetNotification + name: NoResetNotification + nameWithType: ContextResetNotificationStrategy.NoResetNotification + fullName: OpenTK.Platform.ContextResetNotificationStrategy.NoResetNotification +- uid: OpenTK.Platform.OpenGLGraphicsApiHints.ResetNotificationStrategy* + commentId: Overload:OpenTK.Platform.OpenGLGraphicsApiHints.ResetNotificationStrategy + href: OpenTK.Platform.OpenGLGraphicsApiHints.html#OpenTK_Platform_OpenGLGraphicsApiHints_ResetNotificationStrategy + name: ResetNotificationStrategy + nameWithType: OpenGLGraphicsApiHints.ResetNotificationStrategy + fullName: OpenTK.Platform.OpenGLGraphicsApiHints.ResetNotificationStrategy +- uid: OpenTK.Platform.ContextResetNotificationStrategy + commentId: T:OpenTK.Platform.ContextResetNotificationStrategy + parent: OpenTK.Platform + href: OpenTK.Platform.ContextResetNotificationStrategy.html + name: ContextResetNotificationStrategy + nameWithType: ContextResetNotificationStrategy + fullName: OpenTK.Platform.ContextResetNotificationStrategy +- uid: OpenTK.Platform.OpenGLGraphicsApiHints.ResetNotificationStrategy + commentId: P:OpenTK.Platform.OpenGLGraphicsApiHints.ResetNotificationStrategy + href: OpenTK.Platform.OpenGLGraphicsApiHints.html#OpenTK_Platform_OpenGLGraphicsApiHints_ResetNotificationStrategy + name: ResetNotificationStrategy + nameWithType: OpenGLGraphicsApiHints.ResetNotificationStrategy + fullName: OpenTK.Platform.OpenGLGraphicsApiHints.ResetNotificationStrategy +- uid: OpenTK.Platform.ContextResetNotificationStrategy.LoseContextOnReset + commentId: F:OpenTK.Platform.ContextResetNotificationStrategy.LoseContextOnReset + href: OpenTK.Platform.ContextResetNotificationStrategy.html#OpenTK_Platform_ContextResetNotificationStrategy_LoseContextOnReset + name: LoseContextOnReset + nameWithType: ContextResetNotificationStrategy.LoseContextOnReset + fullName: OpenTK.Platform.ContextResetNotificationStrategy.LoseContextOnReset +- uid: OpenTK.Platform.OpenGLGraphicsApiHints.ResetIsolationFlag* + commentId: Overload:OpenTK.Platform.OpenGLGraphicsApiHints.ResetIsolationFlag + href: OpenTK.Platform.OpenGLGraphicsApiHints.html#OpenTK_Platform_OpenGLGraphicsApiHints_ResetIsolationFlag + name: ResetIsolationFlag + nameWithType: OpenGLGraphicsApiHints.ResetIsolationFlag + fullName: OpenTK.Platform.OpenGLGraphicsApiHints.ResetIsolationFlag +- uid: OpenTK.Platform.OpenGLGraphicsApiHints.DebugFlag + commentId: P:OpenTK.Platform.OpenGLGraphicsApiHints.DebugFlag + href: OpenTK.Platform.OpenGLGraphicsApiHints.html#OpenTK_Platform_OpenGLGraphicsApiHints_DebugFlag + name: DebugFlag + nameWithType: OpenGLGraphicsApiHints.DebugFlag + fullName: OpenTK.Platform.OpenGLGraphicsApiHints.DebugFlag +- uid: OpenTK.Platform.OpenGLGraphicsApiHints.NoErrorFlag* + commentId: Overload:OpenTK.Platform.OpenGLGraphicsApiHints.NoErrorFlag + href: OpenTK.Platform.OpenGLGraphicsApiHints.html#OpenTK_Platform_OpenGLGraphicsApiHints_NoErrorFlag + name: NoErrorFlag + nameWithType: OpenGLGraphicsApiHints.NoErrorFlag + fullName: OpenTK.Platform.OpenGLGraphicsApiHints.NoErrorFlag +- uid: OpenTK.Platform.OpenGLGraphicsApiHints.ReleaseBehaviour + commentId: P:OpenTK.Platform.OpenGLGraphicsApiHints.ReleaseBehaviour + href: OpenTK.Platform.OpenGLGraphicsApiHints.html#OpenTK_Platform_OpenGLGraphicsApiHints_ReleaseBehaviour + name: ReleaseBehaviour + nameWithType: OpenGLGraphicsApiHints.ReleaseBehaviour + fullName: OpenTK.Platform.OpenGLGraphicsApiHints.ReleaseBehaviour +- uid: OpenTK.Platform.OpenGLGraphicsApiHints.UseFlushControl* + commentId: Overload:OpenTK.Platform.OpenGLGraphicsApiHints.UseFlushControl + href: OpenTK.Platform.OpenGLGraphicsApiHints.html#OpenTK_Platform_OpenGLGraphicsApiHints_UseFlushControl + name: UseFlushControl + nameWithType: OpenGLGraphicsApiHints.UseFlushControl + fullName: OpenTK.Platform.OpenGLGraphicsApiHints.UseFlushControl +- uid: OpenTK.Platform.OpenGLGraphicsApiHints.UseFlushControl + commentId: P:OpenTK.Platform.OpenGLGraphicsApiHints.UseFlushControl + href: OpenTK.Platform.OpenGLGraphicsApiHints.html#OpenTK_Platform_OpenGLGraphicsApiHints_UseFlushControl + name: UseFlushControl + nameWithType: OpenGLGraphicsApiHints.UseFlushControl + fullName: OpenTK.Platform.OpenGLGraphicsApiHints.UseFlushControl +- uid: OpenTK.Platform.ContextReleaseBehaviour.Flush + commentId: F:OpenTK.Platform.ContextReleaseBehaviour.Flush + href: OpenTK.Platform.ContextReleaseBehaviour.html#OpenTK_Platform_ContextReleaseBehaviour_Flush + name: Flush + nameWithType: ContextReleaseBehaviour.Flush + fullName: OpenTK.Platform.ContextReleaseBehaviour.Flush +- uid: OpenTK.Platform.OpenGLGraphicsApiHints.ReleaseBehaviour* + commentId: Overload:OpenTK.Platform.OpenGLGraphicsApiHints.ReleaseBehaviour + href: OpenTK.Platform.OpenGLGraphicsApiHints.html#OpenTK_Platform_OpenGLGraphicsApiHints_ReleaseBehaviour + name: ReleaseBehaviour + nameWithType: OpenGLGraphicsApiHints.ReleaseBehaviour + fullName: OpenTK.Platform.OpenGLGraphicsApiHints.ReleaseBehaviour +- uid: OpenTK.Platform.ContextReleaseBehaviour + commentId: T:OpenTK.Platform.ContextReleaseBehaviour + parent: OpenTK.Platform + href: OpenTK.Platform.ContextReleaseBehaviour.html + name: ContextReleaseBehaviour + nameWithType: ContextReleaseBehaviour + fullName: OpenTK.Platform.ContextReleaseBehaviour +- uid: OpenTK.Platform.OpenGLGraphicsApiHints.SharedContext* + commentId: Overload:OpenTK.Platform.OpenGLGraphicsApiHints.SharedContext + href: OpenTK.Platform.OpenGLGraphicsApiHints.html#OpenTK_Platform_OpenGLGraphicsApiHints_SharedContext + name: SharedContext + nameWithType: OpenGLGraphicsApiHints.SharedContext + fullName: OpenTK.Platform.OpenGLGraphicsApiHints.SharedContext +- uid: OpenTK.Platform.OpenGLContextHandle + commentId: T:OpenTK.Platform.OpenGLContextHandle + parent: OpenTK.Platform + href: OpenTK.Platform.OpenGLContextHandle.html + name: OpenGLContextHandle + nameWithType: OpenGLContextHandle + fullName: OpenTK.Platform.OpenGLContextHandle +- uid: OpenTK.Platform.OpenGLGraphicsApiHints.Selector* + commentId: Overload:OpenTK.Platform.OpenGLGraphicsApiHints.Selector + href: OpenTK.Platform.OpenGLGraphicsApiHints.html#OpenTK_Platform_OpenGLGraphicsApiHints_Selector + name: Selector + nameWithType: OpenGLGraphicsApiHints.Selector + fullName: OpenTK.Platform.OpenGLGraphicsApiHints.Selector +- uid: OpenTK.Platform.ContextValueSelector + commentId: T:OpenTK.Platform.ContextValueSelector + parent: OpenTK.Platform + href: OpenTK.Platform.ContextValueSelector.html + name: ContextValueSelector + nameWithType: ContextValueSelector + fullName: OpenTK.Platform.ContextValueSelector +- uid: OpenTK.Platform.ContextValues + commentId: T:OpenTK.Platform.ContextValues + parent: OpenTK.Platform + href: OpenTK.Platform.ContextValues.html + name: ContextValues + nameWithType: ContextValues + fullName: OpenTK.Platform.ContextValues +- uid: OpenTK.Platform.OpenGLGraphicsApiHints.Selector + commentId: P:OpenTK.Platform.OpenGLGraphicsApiHints.Selector + href: OpenTK.Platform.OpenGLGraphicsApiHints.html#OpenTK_Platform_OpenGLGraphicsApiHints_Selector + name: Selector + nameWithType: OpenGLGraphicsApiHints.Selector + fullName: OpenTK.Platform.OpenGLGraphicsApiHints.Selector +- uid: OpenTK.Platform.OpenGLGraphicsApiHints.UseSelectorOnMacOS* + commentId: Overload:OpenTK.Platform.OpenGLGraphicsApiHints.UseSelectorOnMacOS + href: OpenTK.Platform.OpenGLGraphicsApiHints.html#OpenTK_Platform_OpenGLGraphicsApiHints_UseSelectorOnMacOS + name: UseSelectorOnMacOS + nameWithType: OpenGLGraphicsApiHints.UseSelectorOnMacOS + fullName: OpenTK.Platform.OpenGLGraphicsApiHints.UseSelectorOnMacOS +- uid: OpenTK.Platform.OpenGLGraphicsApiHints + commentId: T:OpenTK.Platform.OpenGLGraphicsApiHints + parent: OpenTK.Platform + href: OpenTK.Platform.OpenGLGraphicsApiHints.html + name: OpenGLGraphicsApiHints + nameWithType: OpenGLGraphicsApiHints + fullName: OpenTK.Platform.OpenGLGraphicsApiHints +- uid: OpenTK.Platform.OpenGLGraphicsApiHints.#ctor* + commentId: Overload:OpenTK.Platform.OpenGLGraphicsApiHints.#ctor + href: OpenTK.Platform.OpenGLGraphicsApiHints.html#OpenTK_Platform_OpenGLGraphicsApiHints__ctor + name: OpenGLGraphicsApiHints + nameWithType: OpenGLGraphicsApiHints.OpenGLGraphicsApiHints + fullName: OpenTK.Platform.OpenGLGraphicsApiHints.OpenGLGraphicsApiHints + nameWithType.vb: OpenGLGraphicsApiHints.New + fullName.vb: OpenTK.Platform.OpenGLGraphicsApiHints.New + name.vb: New +- uid: OpenTK.Platform.OpenGLGraphicsApiHints.Copy* + commentId: Overload:OpenTK.Platform.OpenGLGraphicsApiHints.Copy + href: OpenTK.Platform.OpenGLGraphicsApiHints.html#OpenTK_Platform_OpenGLGraphicsApiHints_Copy + name: Copy + nameWithType: OpenGLGraphicsApiHints.Copy + fullName: OpenTK.Platform.OpenGLGraphicsApiHints.Copy diff --git a/api/OpenTK.Platform.OpenGLProfile.yml b/api/OpenTK.Platform.OpenGLProfile.yml new file mode 100644 index 00000000..859fb601 --- /dev/null +++ b/api/OpenTK.Platform.OpenGLProfile.yml @@ -0,0 +1,131 @@ +### YamlMime:ManagedReference +items: +- uid: OpenTK.Platform.OpenGLProfile + commentId: T:OpenTK.Platform.OpenGLProfile + id: OpenGLProfile + parent: OpenTK.Platform + children: + - OpenTK.Platform.OpenGLProfile.Compatibility + - OpenTK.Platform.OpenGLProfile.Core + - OpenTK.Platform.OpenGLProfile.None + langs: + - csharp + - vb + name: OpenGLProfile + nameWithType: OpenGLProfile + fullName: OpenTK.Platform.OpenGLProfile + type: Enum + source: + id: OpenGLProfile + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\OpenGLProfile.cs + startLine: 5 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: OpenGL Profile. + example: [] + syntax: + content: public enum OpenGLProfile + content.vb: Public Enum OpenGLProfile +- uid: OpenTK.Platform.OpenGLProfile.None + commentId: F:OpenTK.Platform.OpenGLProfile.None + id: None + parent: OpenTK.Platform.OpenGLProfile + langs: + - csharp + - vb + name: None + nameWithType: OpenGLProfile.None + fullName: OpenTK.Platform.OpenGLProfile.None + type: Field + source: + id: None + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\OpenGLProfile.cs + startLine: 10 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: No OpenGL profile. + example: [] + syntax: + content: None = 0 + return: + type: OpenTK.Platform.OpenGLProfile +- uid: OpenTK.Platform.OpenGLProfile.Core + commentId: F:OpenTK.Platform.OpenGLProfile.Core + id: Core + parent: OpenTK.Platform.OpenGLProfile + langs: + - csharp + - vb + name: Core + nameWithType: OpenGLProfile.Core + fullName: OpenTK.Platform.OpenGLProfile.Core + type: Field + source: + id: Core + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\OpenGLProfile.cs + startLine: 15 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: OpenGL Core profile. + example: [] + syntax: + content: Core = 1 + return: + type: OpenTK.Platform.OpenGLProfile +- uid: OpenTK.Platform.OpenGLProfile.Compatibility + commentId: F:OpenTK.Platform.OpenGLProfile.Compatibility + id: Compatibility + parent: OpenTK.Platform.OpenGLProfile + langs: + - csharp + - vb + name: Compatibility + nameWithType: OpenGLProfile.Compatibility + fullName: OpenTK.Platform.OpenGLProfile.Compatibility + type: Field + source: + id: Compatibility + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\OpenGLProfile.cs + startLine: 20 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: OpenGL Compatibility profile. + example: [] + syntax: + content: Compatibility = 2 + return: + type: OpenTK.Platform.OpenGLProfile +references: +- uid: OpenTK.Platform + commentId: N:OpenTK.Platform + href: OpenTK.html + name: OpenTK.Platform + nameWithType: OpenTK.Platform + fullName: OpenTK.Platform + spec.csharp: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Platform + name: Platform + href: OpenTK.Platform.html + spec.vb: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Platform + name: Platform + href: OpenTK.Platform.html +- uid: OpenTK.Platform.OpenGLProfile + commentId: T:OpenTK.Platform.OpenGLProfile + parent: OpenTK.Platform + href: OpenTK.Platform.OpenGLProfile.html + name: OpenGLProfile + nameWithType: OpenGLProfile + fullName: OpenTK.Platform.OpenGLProfile diff --git a/api/OpenTK.Core.Platform.Pal2BindingsContext.yml b/api/OpenTK.Platform.Pal2BindingsContext.yml similarity index 68% rename from api/OpenTK.Core.Platform.Pal2BindingsContext.yml rename to api/OpenTK.Platform.Pal2BindingsContext.yml index 3415072b..991c0458 100644 --- a/api/OpenTK.Core.Platform.Pal2BindingsContext.yml +++ b/api/OpenTK.Platform.Pal2BindingsContext.yml @@ -1,32 +1,28 @@ ### YamlMime:ManagedReference items: -- uid: OpenTK.Core.Platform.Pal2BindingsContext - commentId: T:OpenTK.Core.Platform.Pal2BindingsContext +- uid: OpenTK.Platform.Pal2BindingsContext + commentId: T:OpenTK.Platform.Pal2BindingsContext id: Pal2BindingsContext - parent: OpenTK.Core.Platform + parent: OpenTK.Platform children: - - OpenTK.Core.Platform.Pal2BindingsContext.#ctor(OpenTK.Core.Platform.IOpenGLComponent,OpenTK.Core.Platform.OpenGLContextHandle) - - OpenTK.Core.Platform.Pal2BindingsContext.ContextHandle - - OpenTK.Core.Platform.Pal2BindingsContext.GetProcAddress(System.String) - - OpenTK.Core.Platform.Pal2BindingsContext.OpenGLComp + - OpenTK.Platform.Pal2BindingsContext.#ctor(OpenTK.Platform.IOpenGLComponent,OpenTK.Platform.OpenGLContextHandle) + - OpenTK.Platform.Pal2BindingsContext.ContextHandle + - OpenTK.Platform.Pal2BindingsContext.GetProcAddress(System.String) + - OpenTK.Platform.Pal2BindingsContext.OpenGLComp langs: - csharp - vb name: Pal2BindingsContext nameWithType: Pal2BindingsContext - fullName: OpenTK.Core.Platform.Pal2BindingsContext + fullName: OpenTK.Platform.Pal2BindingsContext type: Class source: - remote: - path: src/OpenTK.Core/Platform/Pal2BindingsContext.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Pal2BindingsContext - path: opentk/src/OpenTK.Core/Platform/Pal2BindingsContext.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Pal2BindingsContext.cs startLine: 7 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform + - OpenTK.Platform + namespace: OpenTK.Platform summary: An to use with PAL2. example: [] syntax: @@ -44,128 +40,112 @@ items: - System.Object.MemberwiseClone - System.Object.ReferenceEquals(System.Object,System.Object) - System.Object.ToString -- uid: OpenTK.Core.Platform.Pal2BindingsContext.OpenGLComp - commentId: P:OpenTK.Core.Platform.Pal2BindingsContext.OpenGLComp +- uid: OpenTK.Platform.Pal2BindingsContext.OpenGLComp + commentId: P:OpenTK.Platform.Pal2BindingsContext.OpenGLComp id: OpenGLComp - parent: OpenTK.Core.Platform.Pal2BindingsContext + parent: OpenTK.Platform.Pal2BindingsContext langs: - csharp - vb name: OpenGLComp nameWithType: Pal2BindingsContext.OpenGLComp - fullName: OpenTK.Core.Platform.Pal2BindingsContext.OpenGLComp + fullName: OpenTK.Platform.Pal2BindingsContext.OpenGLComp type: Property source: - remote: - path: src/OpenTK.Core/Platform/Pal2BindingsContext.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: OpenGLComp - path: opentk/src/OpenTK.Core/Platform/Pal2BindingsContext.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Pal2BindingsContext.cs startLine: 12 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: The component. + - OpenTK.Platform + namespace: OpenTK.Platform + summary: The component. example: [] syntax: content: public IOpenGLComponent OpenGLComp { get; } parameters: [] return: - type: OpenTK.Core.Platform.IOpenGLComponent + type: OpenTK.Platform.IOpenGLComponent content.vb: Public Property OpenGLComp As IOpenGLComponent - overload: OpenTK.Core.Platform.Pal2BindingsContext.OpenGLComp* -- uid: OpenTK.Core.Platform.Pal2BindingsContext.ContextHandle - commentId: P:OpenTK.Core.Platform.Pal2BindingsContext.ContextHandle + overload: OpenTK.Platform.Pal2BindingsContext.OpenGLComp* +- uid: OpenTK.Platform.Pal2BindingsContext.ContextHandle + commentId: P:OpenTK.Platform.Pal2BindingsContext.ContextHandle id: ContextHandle - parent: OpenTK.Core.Platform.Pal2BindingsContext + parent: OpenTK.Platform.Pal2BindingsContext langs: - csharp - vb name: ContextHandle nameWithType: Pal2BindingsContext.ContextHandle - fullName: OpenTK.Core.Platform.Pal2BindingsContext.ContextHandle + fullName: OpenTK.Platform.Pal2BindingsContext.ContextHandle type: Property source: - remote: - path: src/OpenTK.Core/Platform/Pal2BindingsContext.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ContextHandle - path: opentk/src/OpenTK.Core/Platform/Pal2BindingsContext.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Pal2BindingsContext.cs startLine: 17 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform + - OpenTK.Platform + namespace: OpenTK.Platform summary: A handle to the context to use to load OpenGL functions. example: [] syntax: content: public OpenGLContextHandle ContextHandle { get; } parameters: [] return: - type: OpenTK.Core.Platform.OpenGLContextHandle + type: OpenTK.Platform.OpenGLContextHandle content.vb: Public Property ContextHandle As OpenGLContextHandle - overload: OpenTK.Core.Platform.Pal2BindingsContext.ContextHandle* -- uid: OpenTK.Core.Platform.Pal2BindingsContext.#ctor(OpenTK.Core.Platform.IOpenGLComponent,OpenTK.Core.Platform.OpenGLContextHandle) - commentId: M:OpenTK.Core.Platform.Pal2BindingsContext.#ctor(OpenTK.Core.Platform.IOpenGLComponent,OpenTK.Core.Platform.OpenGLContextHandle) - id: '#ctor(OpenTK.Core.Platform.IOpenGLComponent,OpenTK.Core.Platform.OpenGLContextHandle)' - parent: OpenTK.Core.Platform.Pal2BindingsContext + overload: OpenTK.Platform.Pal2BindingsContext.ContextHandle* +- uid: OpenTK.Platform.Pal2BindingsContext.#ctor(OpenTK.Platform.IOpenGLComponent,OpenTK.Platform.OpenGLContextHandle) + commentId: M:OpenTK.Platform.Pal2BindingsContext.#ctor(OpenTK.Platform.IOpenGLComponent,OpenTK.Platform.OpenGLContextHandle) + id: '#ctor(OpenTK.Platform.IOpenGLComponent,OpenTK.Platform.OpenGLContextHandle)' + parent: OpenTK.Platform.Pal2BindingsContext langs: - csharp - vb name: Pal2BindingsContext(IOpenGLComponent, OpenGLContextHandle) nameWithType: Pal2BindingsContext.Pal2BindingsContext(IOpenGLComponent, OpenGLContextHandle) - fullName: OpenTK.Core.Platform.Pal2BindingsContext.Pal2BindingsContext(OpenTK.Core.Platform.IOpenGLComponent, OpenTK.Core.Platform.OpenGLContextHandle) + fullName: OpenTK.Platform.Pal2BindingsContext.Pal2BindingsContext(OpenTK.Platform.IOpenGLComponent, OpenTK.Platform.OpenGLContextHandle) type: Constructor source: - remote: - path: src/OpenTK.Core/Platform/Pal2BindingsContext.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Core/Platform/Pal2BindingsContext.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Pal2BindingsContext.cs startLine: 24 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Initializes a new instance of the class given an OpenGL conponent and a context handle. + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Initializes a new instance of the class given an OpenGL conponent and a context handle. example: [] syntax: content: public Pal2BindingsContext(IOpenGLComponent openGLComp, OpenGLContextHandle contextHandle) parameters: - id: openGLComp - type: OpenTK.Core.Platform.IOpenGLComponent + type: OpenTK.Platform.IOpenGLComponent description: The OpenGL component. - id: contextHandle - type: OpenTK.Core.Platform.OpenGLContextHandle + type: OpenTK.Platform.OpenGLContextHandle description: The OpenGL context handle. content.vb: Public Sub New(openGLComp As IOpenGLComponent, contextHandle As OpenGLContextHandle) - overload: OpenTK.Core.Platform.Pal2BindingsContext.#ctor* + overload: OpenTK.Platform.Pal2BindingsContext.#ctor* nameWithType.vb: Pal2BindingsContext.New(IOpenGLComponent, OpenGLContextHandle) - fullName.vb: OpenTK.Core.Platform.Pal2BindingsContext.New(OpenTK.Core.Platform.IOpenGLComponent, OpenTK.Core.Platform.OpenGLContextHandle) + fullName.vb: OpenTK.Platform.Pal2BindingsContext.New(OpenTK.Platform.IOpenGLComponent, OpenTK.Platform.OpenGLContextHandle) name.vb: New(IOpenGLComponent, OpenGLContextHandle) -- uid: OpenTK.Core.Platform.Pal2BindingsContext.GetProcAddress(System.String) - commentId: M:OpenTK.Core.Platform.Pal2BindingsContext.GetProcAddress(System.String) +- uid: OpenTK.Platform.Pal2BindingsContext.GetProcAddress(System.String) + commentId: M:OpenTK.Platform.Pal2BindingsContext.GetProcAddress(System.String) id: GetProcAddress(System.String) - parent: OpenTK.Core.Platform.Pal2BindingsContext + parent: OpenTK.Platform.Pal2BindingsContext langs: - csharp - vb name: GetProcAddress(string) nameWithType: Pal2BindingsContext.GetProcAddress(string) - fullName: OpenTK.Core.Platform.Pal2BindingsContext.GetProcAddress(string) + fullName: OpenTK.Platform.Pal2BindingsContext.GetProcAddress(string) type: Method source: - remote: - path: src/OpenTK.Core/Platform/Pal2BindingsContext.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetProcAddress - path: opentk/src/OpenTK.Core/Platform/Pal2BindingsContext.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Pal2BindingsContext.cs startLine: 31 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform + - OpenTK.Platform + namespace: OpenTK.Platform summary: Retrieves an unmanaged function pointer to the specified function on the specified bindings context. remarks: >- Note: some drivers are known to return non-zero values for unsupported functions. @@ -187,11 +167,11 @@ items: if the function is not supported by the drivers. content.vb: Public Function GetProcAddress(procName As String) As IntPtr - overload: OpenTK.Core.Platform.Pal2BindingsContext.GetProcAddress* + overload: OpenTK.Platform.Pal2BindingsContext.GetProcAddress* implements: - OpenTK.IBindingsContext.GetProcAddress(System.String) nameWithType.vb: Pal2BindingsContext.GetProcAddress(String) - fullName.vb: OpenTK.Core.Platform.Pal2BindingsContext.GetProcAddress(String) + fullName.vb: OpenTK.Platform.Pal2BindingsContext.GetProcAddress(String) name.vb: GetProcAddress(String) references: - uid: OpenTK.IBindingsContext @@ -201,36 +181,28 @@ references: name: IBindingsContext nameWithType: IBindingsContext fullName: OpenTK.IBindingsContext -- uid: OpenTK.Core.Platform - commentId: N:OpenTK.Core.Platform +- uid: OpenTK.Platform + commentId: N:OpenTK.Platform href: OpenTK.html - name: OpenTK.Core.Platform - nameWithType: OpenTK.Core.Platform - fullName: OpenTK.Core.Platform + name: OpenTK.Platform + nameWithType: OpenTK.Platform + fullName: OpenTK.Platform spec.csharp: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html spec.vb: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html - uid: System.Object commentId: T:System.Object parent: System @@ -474,46 +446,46 @@ references: name: System nameWithType: System fullName: System -- uid: OpenTK.Core.Platform.IOpenGLComponent - commentId: T:OpenTK.Core.Platform.IOpenGLComponent - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.IOpenGLComponent.html +- uid: OpenTK.Platform.IOpenGLComponent + commentId: T:OpenTK.Platform.IOpenGLComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IOpenGLComponent.html name: IOpenGLComponent nameWithType: IOpenGLComponent - fullName: OpenTK.Core.Platform.IOpenGLComponent -- uid: OpenTK.Core.Platform.Pal2BindingsContext.OpenGLComp* - commentId: Overload:OpenTK.Core.Platform.Pal2BindingsContext.OpenGLComp - href: OpenTK.Core.Platform.Pal2BindingsContext.html#OpenTK_Core_Platform_Pal2BindingsContext_OpenGLComp + fullName: OpenTK.Platform.IOpenGLComponent +- uid: OpenTK.Platform.Pal2BindingsContext.OpenGLComp* + commentId: Overload:OpenTK.Platform.Pal2BindingsContext.OpenGLComp + href: OpenTK.Platform.Pal2BindingsContext.html#OpenTK_Platform_Pal2BindingsContext_OpenGLComp name: OpenGLComp nameWithType: Pal2BindingsContext.OpenGLComp - fullName: OpenTK.Core.Platform.Pal2BindingsContext.OpenGLComp -- uid: OpenTK.Core.Platform.Pal2BindingsContext.ContextHandle* - commentId: Overload:OpenTK.Core.Platform.Pal2BindingsContext.ContextHandle - href: OpenTK.Core.Platform.Pal2BindingsContext.html#OpenTK_Core_Platform_Pal2BindingsContext_ContextHandle + fullName: OpenTK.Platform.Pal2BindingsContext.OpenGLComp +- uid: OpenTK.Platform.Pal2BindingsContext.ContextHandle* + commentId: Overload:OpenTK.Platform.Pal2BindingsContext.ContextHandle + href: OpenTK.Platform.Pal2BindingsContext.html#OpenTK_Platform_Pal2BindingsContext_ContextHandle name: ContextHandle nameWithType: Pal2BindingsContext.ContextHandle - fullName: OpenTK.Core.Platform.Pal2BindingsContext.ContextHandle -- uid: OpenTK.Core.Platform.OpenGLContextHandle - commentId: T:OpenTK.Core.Platform.OpenGLContextHandle - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.OpenGLContextHandle.html + fullName: OpenTK.Platform.Pal2BindingsContext.ContextHandle +- uid: OpenTK.Platform.OpenGLContextHandle + commentId: T:OpenTK.Platform.OpenGLContextHandle + parent: OpenTK.Platform + href: OpenTK.Platform.OpenGLContextHandle.html name: OpenGLContextHandle nameWithType: OpenGLContextHandle - fullName: OpenTK.Core.Platform.OpenGLContextHandle -- uid: OpenTK.Core.Platform.Pal2BindingsContext - commentId: T:OpenTK.Core.Platform.Pal2BindingsContext - href: OpenTK.Core.Platform.Pal2BindingsContext.html + fullName: OpenTK.Platform.OpenGLContextHandle +- uid: OpenTK.Platform.Pal2BindingsContext + commentId: T:OpenTK.Platform.Pal2BindingsContext + href: OpenTK.Platform.Pal2BindingsContext.html name: Pal2BindingsContext nameWithType: Pal2BindingsContext - fullName: OpenTK.Core.Platform.Pal2BindingsContext -- uid: OpenTK.Core.Platform.Pal2BindingsContext.#ctor* - commentId: Overload:OpenTK.Core.Platform.Pal2BindingsContext.#ctor - href: OpenTK.Core.Platform.Pal2BindingsContext.html#OpenTK_Core_Platform_Pal2BindingsContext__ctor_OpenTK_Core_Platform_IOpenGLComponent_OpenTK_Core_Platform_OpenGLContextHandle_ + fullName: OpenTK.Platform.Pal2BindingsContext +- uid: OpenTK.Platform.Pal2BindingsContext.#ctor* + commentId: Overload:OpenTK.Platform.Pal2BindingsContext.#ctor + href: OpenTK.Platform.Pal2BindingsContext.html#OpenTK_Platform_Pal2BindingsContext__ctor_OpenTK_Platform_IOpenGLComponent_OpenTK_Platform_OpenGLContextHandle_ name: Pal2BindingsContext nameWithType: Pal2BindingsContext.Pal2BindingsContext - fullName: OpenTK.Core.Platform.Pal2BindingsContext.Pal2BindingsContext + fullName: OpenTK.Platform.Pal2BindingsContext.Pal2BindingsContext nameWithType.vb: Pal2BindingsContext.New - fullName.vb: OpenTK.Core.Platform.Pal2BindingsContext.New + fullName.vb: OpenTK.Platform.Pal2BindingsContext.New name.vb: New - uid: System.IntPtr commentId: T:System.IntPtr @@ -526,12 +498,12 @@ references: nameWithType.vb: IntPtr fullName.vb: System.IntPtr name.vb: IntPtr -- uid: OpenTK.Core.Platform.Pal2BindingsContext.GetProcAddress* - commentId: Overload:OpenTK.Core.Platform.Pal2BindingsContext.GetProcAddress - href: OpenTK.Core.Platform.Pal2BindingsContext.html#OpenTK_Core_Platform_Pal2BindingsContext_GetProcAddress_System_String_ +- uid: OpenTK.Platform.Pal2BindingsContext.GetProcAddress* + commentId: Overload:OpenTK.Platform.Pal2BindingsContext.GetProcAddress + href: OpenTK.Platform.Pal2BindingsContext.html#OpenTK_Platform_Pal2BindingsContext_GetProcAddress_System_String_ name: GetProcAddress nameWithType: Pal2BindingsContext.GetProcAddress - fullName: OpenTK.Core.Platform.Pal2BindingsContext.GetProcAddress + fullName: OpenTK.Platform.Pal2BindingsContext.GetProcAddress - uid: OpenTK.IBindingsContext.GetProcAddress(System.String) commentId: M:OpenTK.IBindingsContext.GetProcAddress(System.String) parent: OpenTK.IBindingsContext diff --git a/api/OpenTK.Platform.PalComponents.yml b/api/OpenTK.Platform.PalComponents.yml new file mode 100644 index 00000000..7356e369 --- /dev/null +++ b/api/OpenTK.Platform.PalComponents.yml @@ -0,0 +1,416 @@ +### YamlMime:ManagedReference +items: +- uid: OpenTK.Platform.PalComponents + commentId: T:OpenTK.Platform.PalComponents + id: PalComponents + parent: OpenTK.Platform + children: + - OpenTK.Platform.PalComponents.Clipboard + - OpenTK.Platform.PalComponents.ControllerInput + - OpenTK.Platform.PalComponents.Dialog + - OpenTK.Platform.PalComponents.Display + - OpenTK.Platform.PalComponents.Joystick + - OpenTK.Platform.PalComponents.KeyboardInput + - OpenTK.Platform.PalComponents.MiceInput + - OpenTK.Platform.PalComponents.MouseCursor + - OpenTK.Platform.PalComponents.OpenGL + - OpenTK.Platform.PalComponents.Shell + - OpenTK.Platform.PalComponents.Surface + - OpenTK.Platform.PalComponents.Vulkan + - OpenTK.Platform.PalComponents.Window + - OpenTK.Platform.PalComponents.WindowIcon + langs: + - csharp + - vb + name: PalComponents + nameWithType: PalComponents + fullName: OpenTK.Platform.PalComponents + type: Enum + source: + id: PalComponents + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\PalComponents.cs + startLine: 32 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Enumeration for all available platform abstraction layer components. + example: [] + syntax: + content: >- + [Flags] + + public enum PalComponents + content.vb: >- + + + Public Enum PalComponents + attributes: + - type: System.FlagsAttribute + ctor: System.FlagsAttribute.#ctor + arguments: [] +- uid: OpenTK.Platform.PalComponents.OpenGL + commentId: F:OpenTK.Platform.PalComponents.OpenGL + id: OpenGL + parent: OpenTK.Platform.PalComponents + langs: + - csharp + - vb + name: OpenGL + nameWithType: PalComponents.OpenGL + fullName: OpenTK.Platform.PalComponents.OpenGL + type: Field + source: + id: OpenGL + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\PalComponents.cs + startLine: 38 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Abstraction layer provides the OpenGL component. + example: [] + syntax: + content: OpenGL = 1 + return: + type: OpenTK.Platform.PalComponents +- uid: OpenTK.Platform.PalComponents.Vulkan + commentId: F:OpenTK.Platform.PalComponents.Vulkan + id: Vulkan + parent: OpenTK.Platform.PalComponents + langs: + - csharp + - vb + name: Vulkan + nameWithType: PalComponents.Vulkan + fullName: OpenTK.Platform.PalComponents.Vulkan + type: Field + source: + id: Vulkan + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\PalComponents.cs + startLine: 43 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Abstraction layer provides the Vulkan component. + example: [] + syntax: + content: Vulkan = 2 + return: + type: OpenTK.Platform.PalComponents +- uid: OpenTK.Platform.PalComponents.WindowIcon + commentId: F:OpenTK.Platform.PalComponents.WindowIcon + id: WindowIcon + parent: OpenTK.Platform.PalComponents + langs: + - csharp + - vb + name: WindowIcon + nameWithType: PalComponents.WindowIcon + fullName: OpenTK.Platform.PalComponents.WindowIcon + type: Field + source: + id: WindowIcon + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\PalComponents.cs + startLine: 48 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Abstraction layer provides the window icon component. + example: [] + syntax: + content: WindowIcon = 4 + return: + type: OpenTK.Platform.PalComponents +- uid: OpenTK.Platform.PalComponents.MouseCursor + commentId: F:OpenTK.Platform.PalComponents.MouseCursor + id: MouseCursor + parent: OpenTK.Platform.PalComponents + langs: + - csharp + - vb + name: MouseCursor + nameWithType: PalComponents.MouseCursor + fullName: OpenTK.Platform.PalComponents.MouseCursor + type: Field + source: + id: MouseCursor + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\PalComponents.cs + startLine: 53 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Abstraction layer provides the cursor component. + example: [] + syntax: + content: MouseCursor = 8 + return: + type: OpenTK.Platform.PalComponents +- uid: OpenTK.Platform.PalComponents.Window + commentId: F:OpenTK.Platform.PalComponents.Window + id: Window + parent: OpenTK.Platform.PalComponents + langs: + - csharp + - vb + name: Window + nameWithType: PalComponents.Window + fullName: OpenTK.Platform.PalComponents.Window + type: Field + source: + id: Window + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\PalComponents.cs + startLine: 58 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Abstraction layer provides the window component. + example: [] + syntax: + content: Window = 16 + return: + type: OpenTK.Platform.PalComponents +- uid: OpenTK.Platform.PalComponents.Surface + commentId: F:OpenTK.Platform.PalComponents.Surface + id: Surface + parent: OpenTK.Platform.PalComponents + langs: + - csharp + - vb + name: Surface + nameWithType: PalComponents.Surface + fullName: OpenTK.Platform.PalComponents.Surface + type: Field + source: + id: Surface + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\PalComponents.cs + startLine: 63 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Abstraction layer provides the surface component. + example: [] + syntax: + content: Surface = 32 + return: + type: OpenTK.Platform.PalComponents +- uid: OpenTK.Platform.PalComponents.Display + commentId: F:OpenTK.Platform.PalComponents.Display + id: Display + parent: OpenTK.Platform.PalComponents + langs: + - csharp + - vb + name: Display + nameWithType: PalComponents.Display + fullName: OpenTK.Platform.PalComponents.Display + type: Field + source: + id: Display + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\PalComponents.cs + startLine: 68 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Abstraction layer provides the display component. + example: [] + syntax: + content: Display = 64 + return: + type: OpenTK.Platform.PalComponents +- uid: OpenTK.Platform.PalComponents.MiceInput + commentId: F:OpenTK.Platform.PalComponents.MiceInput + id: MiceInput + parent: OpenTK.Platform.PalComponents + langs: + - csharp + - vb + name: MiceInput + nameWithType: PalComponents.MiceInput + fullName: OpenTK.Platform.PalComponents.MiceInput + type: Field + source: + id: MiceInput + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\PalComponents.cs + startLine: 73 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Abstraction layer provides the mouse input component. + example: [] + syntax: + content: MiceInput = 128 + return: + type: OpenTK.Platform.PalComponents +- uid: OpenTK.Platform.PalComponents.KeyboardInput + commentId: F:OpenTK.Platform.PalComponents.KeyboardInput + id: KeyboardInput + parent: OpenTK.Platform.PalComponents + langs: + - csharp + - vb + name: KeyboardInput + nameWithType: PalComponents.KeyboardInput + fullName: OpenTK.Platform.PalComponents.KeyboardInput + type: Field + source: + id: KeyboardInput + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\PalComponents.cs + startLine: 78 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Abstraction layer provides the keyboard input component. + example: [] + syntax: + content: KeyboardInput = 256 + return: + type: OpenTK.Platform.PalComponents +- uid: OpenTK.Platform.PalComponents.ControllerInput + commentId: F:OpenTK.Platform.PalComponents.ControllerInput + id: ControllerInput + parent: OpenTK.Platform.PalComponents + langs: + - csharp + - vb + name: ControllerInput + nameWithType: PalComponents.ControllerInput + fullName: OpenTK.Platform.PalComponents.ControllerInput + type: Field + source: + id: ControllerInput + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\PalComponents.cs + startLine: 83 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Abstraction layer provides the controller input component. + example: [] + syntax: + content: ControllerInput = 512 + return: + type: OpenTK.Platform.PalComponents +- uid: OpenTK.Platform.PalComponents.Clipboard + commentId: F:OpenTK.Platform.PalComponents.Clipboard + id: Clipboard + parent: OpenTK.Platform.PalComponents + langs: + - csharp + - vb + name: Clipboard + nameWithType: PalComponents.Clipboard + fullName: OpenTK.Platform.PalComponents.Clipboard + type: Field + source: + id: Clipboard + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\PalComponents.cs + startLine: 88 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Abstraction layer provides the clipboard component. + example: [] + syntax: + content: Clipboard = 1024 + return: + type: OpenTK.Platform.PalComponents +- uid: OpenTK.Platform.PalComponents.Shell + commentId: F:OpenTK.Platform.PalComponents.Shell + id: Shell + parent: OpenTK.Platform.PalComponents + langs: + - csharp + - vb + name: Shell + nameWithType: PalComponents.Shell + fullName: OpenTK.Platform.PalComponents.Shell + type: Field + source: + id: Shell + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\PalComponents.cs + startLine: 93 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Abstraction layer provides the shell component. + example: [] + syntax: + content: Shell = 2048 + return: + type: OpenTK.Platform.PalComponents +- uid: OpenTK.Platform.PalComponents.Joystick + commentId: F:OpenTK.Platform.PalComponents.Joystick + id: Joystick + parent: OpenTK.Platform.PalComponents + langs: + - csharp + - vb + name: Joystick + nameWithType: PalComponents.Joystick + fullName: OpenTK.Platform.PalComponents.Joystick + type: Field + source: + id: Joystick + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\PalComponents.cs + startLine: 98 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Abstraction layer provides the joystick component. + example: [] + syntax: + content: Joystick = 4096 + return: + type: OpenTK.Platform.PalComponents +- uid: OpenTK.Platform.PalComponents.Dialog + commentId: F:OpenTK.Platform.PalComponents.Dialog + id: Dialog + parent: OpenTK.Platform.PalComponents + langs: + - csharp + - vb + name: Dialog + nameWithType: PalComponents.Dialog + fullName: OpenTK.Platform.PalComponents.Dialog + type: Field + source: + id: Dialog + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\PalComponents.cs + startLine: 103 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Abstraction layer provides the dialog component. + example: [] + syntax: + content: Dialog = 8192 + return: + type: OpenTK.Platform.PalComponents +references: +- uid: OpenTK.Platform + commentId: N:OpenTK.Platform + href: OpenTK.html + name: OpenTK.Platform + nameWithType: OpenTK.Platform + fullName: OpenTK.Platform + spec.csharp: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Platform + name: Platform + href: OpenTK.Platform.html + spec.vb: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Platform + name: Platform + href: OpenTK.Platform.html +- uid: OpenTK.Platform.PalComponents + commentId: T:OpenTK.Platform.PalComponents + parent: OpenTK.Platform + href: OpenTK.Platform.PalComponents.html + name: PalComponents + nameWithType: PalComponents + fullName: OpenTK.Platform.PalComponents diff --git a/api/OpenTK.Core.Platform.PalException.yml b/api/OpenTK.Platform.PalException.yml similarity index 68% rename from api/OpenTK.Core.Platform.PalException.yml rename to api/OpenTK.Platform.PalException.yml index 83a72ad2..ccaea7e7 100644 --- a/api/OpenTK.Core.Platform.PalException.yml +++ b/api/OpenTK.Platform.PalException.yml @@ -1,32 +1,28 @@ ### YamlMime:ManagedReference items: -- uid: OpenTK.Core.Platform.PalException - commentId: T:OpenTK.Core.Platform.PalException +- uid: OpenTK.Platform.PalException + commentId: T:OpenTK.Platform.PalException id: PalException - parent: OpenTK.Core.Platform + parent: OpenTK.Platform children: - - OpenTK.Core.Platform.PalException.#ctor(OpenTK.Core.Platform.IPalComponent) - - OpenTK.Core.Platform.PalException.#ctor(OpenTK.Core.Platform.IPalComponent,System.String) - - OpenTK.Core.Platform.PalException.#ctor(OpenTK.Core.Platform.IPalComponent,System.String,System.Exception) - - OpenTK.Core.Platform.PalException.Component + - OpenTK.Platform.PalException.#ctor(OpenTK.Platform.IPalComponent) + - OpenTK.Platform.PalException.#ctor(OpenTK.Platform.IPalComponent,System.String) + - OpenTK.Platform.PalException.#ctor(OpenTK.Platform.IPalComponent,System.String,System.Exception) + - OpenTK.Platform.PalException.Component langs: - csharp - vb name: PalException nameWithType: PalException - fullName: OpenTK.Core.Platform.PalException + fullName: OpenTK.Platform.PalException type: Class source: - remote: - path: src/OpenTK.Core/Platform/PalException.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: PalException - path: opentk/src/OpenTK.Core/Platform/PalException.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\PalException.cs startLine: 7 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform + - OpenTK.Platform + namespace: OpenTK.Platform summary: Exception type for platform abstraction layer drivers. example: [] syntax: @@ -42,12 +38,11 @@ items: - System.Object - System.Exception derivedClasses: - - OpenTK.Core.Platform.PalNotImplementedException + - OpenTK.Platform.PalNotImplementedException implements: - System.Runtime.Serialization.ISerializable inheritedMembers: - System.Exception.GetBaseException - - System.Exception.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) - System.Exception.GetType - System.Exception.ToString - System.Exception.Data @@ -68,139 +63,123 @@ items: - type: System.SerializableAttribute ctor: System.SerializableAttribute.#ctor arguments: [] -- uid: OpenTK.Core.Platform.PalException.Component - commentId: P:OpenTK.Core.Platform.PalException.Component +- uid: OpenTK.Platform.PalException.Component + commentId: P:OpenTK.Platform.PalException.Component id: Component - parent: OpenTK.Core.Platform.PalException + parent: OpenTK.Platform.PalException langs: - csharp - vb name: Component nameWithType: PalException.Component - fullName: OpenTK.Core.Platform.PalException.Component + fullName: OpenTK.Platform.PalException.Component type: Property source: - remote: - path: src/OpenTK.Core/Platform/PalException.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Component - path: opentk/src/OpenTK.Core/Platform/PalException.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\PalException.cs startLine: 13 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform + - OpenTK.Platform + namespace: OpenTK.Platform summary: The component which throws the exception. example: [] syntax: content: public IPalComponent Component { get; } parameters: [] return: - type: OpenTK.Core.Platform.IPalComponent + type: OpenTK.Platform.IPalComponent content.vb: Public ReadOnly Property Component As IPalComponent - overload: OpenTK.Core.Platform.PalException.Component* -- uid: OpenTK.Core.Platform.PalException.#ctor(OpenTK.Core.Platform.IPalComponent) - commentId: M:OpenTK.Core.Platform.PalException.#ctor(OpenTK.Core.Platform.IPalComponent) - id: '#ctor(OpenTK.Core.Platform.IPalComponent)' - parent: OpenTK.Core.Platform.PalException + overload: OpenTK.Platform.PalException.Component* +- uid: OpenTK.Platform.PalException.#ctor(OpenTK.Platform.IPalComponent) + commentId: M:OpenTK.Platform.PalException.#ctor(OpenTK.Platform.IPalComponent) + id: '#ctor(OpenTK.Platform.IPalComponent)' + parent: OpenTK.Platform.PalException langs: - csharp - vb name: PalException(IPalComponent) nameWithType: PalException.PalException(IPalComponent) - fullName: OpenTK.Core.Platform.PalException.PalException(OpenTK.Core.Platform.IPalComponent) + fullName: OpenTK.Platform.PalException.PalException(OpenTK.Platform.IPalComponent) type: Constructor source: - remote: - path: src/OpenTK.Core/Platform/PalException.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Core/Platform/PalException.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\PalException.cs startLine: 19 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Initializes a new instance of the class. + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Initializes a new instance of the class. example: [] syntax: content: public PalException(IPalComponent component) parameters: - id: component - type: OpenTK.Core.Platform.IPalComponent + type: OpenTK.Platform.IPalComponent description: The component which throws the exception. content.vb: Public Sub New(component As IPalComponent) - overload: OpenTK.Core.Platform.PalException.#ctor* + overload: OpenTK.Platform.PalException.#ctor* nameWithType.vb: PalException.New(IPalComponent) - fullName.vb: OpenTK.Core.Platform.PalException.New(OpenTK.Core.Platform.IPalComponent) + fullName.vb: OpenTK.Platform.PalException.New(OpenTK.Platform.IPalComponent) name.vb: New(IPalComponent) -- uid: OpenTK.Core.Platform.PalException.#ctor(OpenTK.Core.Platform.IPalComponent,System.String) - commentId: M:OpenTK.Core.Platform.PalException.#ctor(OpenTK.Core.Platform.IPalComponent,System.String) - id: '#ctor(OpenTK.Core.Platform.IPalComponent,System.String)' - parent: OpenTK.Core.Platform.PalException +- uid: OpenTK.Platform.PalException.#ctor(OpenTK.Platform.IPalComponent,System.String) + commentId: M:OpenTK.Platform.PalException.#ctor(OpenTK.Platform.IPalComponent,System.String) + id: '#ctor(OpenTK.Platform.IPalComponent,System.String)' + parent: OpenTK.Platform.PalException langs: - csharp - vb name: PalException(IPalComponent, string) nameWithType: PalException.PalException(IPalComponent, string) - fullName: OpenTK.Core.Platform.PalException.PalException(OpenTK.Core.Platform.IPalComponent, string) + fullName: OpenTK.Platform.PalException.PalException(OpenTK.Platform.IPalComponent, string) type: Constructor source: - remote: - path: src/OpenTK.Core/Platform/PalException.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Core/Platform/PalException.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\PalException.cs startLine: 30 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Initializes a new instance of the class. + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Initializes a new instance of the class. example: [] syntax: content: public PalException(IPalComponent component, string message) parameters: - id: component - type: OpenTK.Core.Platform.IPalComponent + type: OpenTK.Platform.IPalComponent description: The component which throws the exception. - id: message type: System.String description: The message for the exception. content.vb: Public Sub New(component As IPalComponent, message As String) - overload: OpenTK.Core.Platform.PalException.#ctor* + overload: OpenTK.Platform.PalException.#ctor* nameWithType.vb: PalException.New(IPalComponent, String) - fullName.vb: OpenTK.Core.Platform.PalException.New(OpenTK.Core.Platform.IPalComponent, String) + fullName.vb: OpenTK.Platform.PalException.New(OpenTK.Platform.IPalComponent, String) name.vb: New(IPalComponent, String) -- uid: OpenTK.Core.Platform.PalException.#ctor(OpenTK.Core.Platform.IPalComponent,System.String,System.Exception) - commentId: M:OpenTK.Core.Platform.PalException.#ctor(OpenTK.Core.Platform.IPalComponent,System.String,System.Exception) - id: '#ctor(OpenTK.Core.Platform.IPalComponent,System.String,System.Exception)' - parent: OpenTK.Core.Platform.PalException +- uid: OpenTK.Platform.PalException.#ctor(OpenTK.Platform.IPalComponent,System.String,System.Exception) + commentId: M:OpenTK.Platform.PalException.#ctor(OpenTK.Platform.IPalComponent,System.String,System.Exception) + id: '#ctor(OpenTK.Platform.IPalComponent,System.String,System.Exception)' + parent: OpenTK.Platform.PalException langs: - csharp - vb name: PalException(IPalComponent, string, Exception) nameWithType: PalException.PalException(IPalComponent, string, Exception) - fullName: OpenTK.Core.Platform.PalException.PalException(OpenTK.Core.Platform.IPalComponent, string, System.Exception) + fullName: OpenTK.Platform.PalException.PalException(OpenTK.Platform.IPalComponent, string, System.Exception) type: Constructor source: - remote: - path: src/OpenTK.Core/Platform/PalException.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Core/Platform/PalException.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\PalException.cs startLine: 42 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Initializes a new instance of the class. + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Initializes a new instance of the class. example: [] syntax: content: public PalException(IPalComponent component, string message, Exception innerException) parameters: - id: component - type: OpenTK.Core.Platform.IPalComponent + type: OpenTK.Platform.IPalComponent description: The component which throws the exception. - id: message type: System.String @@ -209,41 +188,33 @@ items: type: System.Exception description: The exception which caused this exception. content.vb: Public Sub New(component As IPalComponent, message As String, innerException As Exception) - overload: OpenTK.Core.Platform.PalException.#ctor* + overload: OpenTK.Platform.PalException.#ctor* nameWithType.vb: PalException.New(IPalComponent, String, Exception) - fullName.vb: OpenTK.Core.Platform.PalException.New(OpenTK.Core.Platform.IPalComponent, String, System.Exception) + fullName.vb: OpenTK.Platform.PalException.New(OpenTK.Platform.IPalComponent, String, System.Exception) name.vb: New(IPalComponent, String, Exception) references: -- uid: OpenTK.Core.Platform - commentId: N:OpenTK.Core.Platform +- uid: OpenTK.Platform + commentId: N:OpenTK.Platform href: OpenTK.html - name: OpenTK.Core.Platform - nameWithType: OpenTK.Core.Platform - fullName: OpenTK.Core.Platform + name: OpenTK.Platform + nameWithType: OpenTK.Platform + fullName: OpenTK.Platform spec.csharp: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html spec.vb: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html - uid: System.Object commentId: T:System.Object parent: System @@ -293,48 +264,6 @@ references: href: https://learn.microsoft.com/dotnet/api/system.exception.getbaseexception - name: ( - name: ) -- uid: System.Exception.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) - commentId: M:System.Exception.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) - parent: System.Exception - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.exception.getobjectdata - name: GetObjectData(SerializationInfo, StreamingContext) - nameWithType: Exception.GetObjectData(SerializationInfo, StreamingContext) - fullName: System.Exception.GetObjectData(System.Runtime.Serialization.SerializationInfo, System.Runtime.Serialization.StreamingContext) - spec.csharp: - - uid: System.Exception.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) - name: GetObjectData - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.exception.getobjectdata - - name: ( - - uid: System.Runtime.Serialization.SerializationInfo - name: SerializationInfo - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.runtime.serialization.serializationinfo - - name: ',' - - name: " " - - uid: System.Runtime.Serialization.StreamingContext - name: StreamingContext - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.runtime.serialization.streamingcontext - - name: ) - spec.vb: - - uid: System.Exception.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) - name: GetObjectData - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.exception.getobjectdata - - name: ( - - uid: System.Runtime.Serialization.SerializationInfo - name: SerializationInfo - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.runtime.serialization.serializationinfo - - name: ',' - - name: " " - - uid: System.Runtime.Serialization.StreamingContext - name: StreamingContext - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.runtime.serialization.streamingcontext - - name: ) - uid: System.Exception.GetType commentId: M:System.Exception.GetType parent: System.Exception @@ -666,34 +595,34 @@ references: name: Serialization isExternal: true href: https://learn.microsoft.com/dotnet/api/system.runtime.serialization -- uid: OpenTK.Core.Platform.PalException.Component* - commentId: Overload:OpenTK.Core.Platform.PalException.Component - href: OpenTK.Core.Platform.PalException.html#OpenTK_Core_Platform_PalException_Component +- uid: OpenTK.Platform.PalException.Component* + commentId: Overload:OpenTK.Platform.PalException.Component + href: OpenTK.Platform.PalException.html#OpenTK_Platform_PalException_Component name: Component nameWithType: PalException.Component - fullName: OpenTK.Core.Platform.PalException.Component -- uid: OpenTK.Core.Platform.IPalComponent - commentId: T:OpenTK.Core.Platform.IPalComponent - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.IPalComponent.html + fullName: OpenTK.Platform.PalException.Component +- uid: OpenTK.Platform.IPalComponent + commentId: T:OpenTK.Platform.IPalComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IPalComponent.html name: IPalComponent nameWithType: IPalComponent - fullName: OpenTK.Core.Platform.IPalComponent -- uid: OpenTK.Core.Platform.PalException - commentId: T:OpenTK.Core.Platform.PalException - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.PalException.html + fullName: OpenTK.Platform.IPalComponent +- uid: OpenTK.Platform.PalException + commentId: T:OpenTK.Platform.PalException + parent: OpenTK.Platform + href: OpenTK.Platform.PalException.html name: PalException nameWithType: PalException - fullName: OpenTK.Core.Platform.PalException -- uid: OpenTK.Core.Platform.PalException.#ctor* - commentId: Overload:OpenTK.Core.Platform.PalException.#ctor - href: OpenTK.Core.Platform.PalException.html#OpenTK_Core_Platform_PalException__ctor_OpenTK_Core_Platform_IPalComponent_ + fullName: OpenTK.Platform.PalException +- uid: OpenTK.Platform.PalException.#ctor* + commentId: Overload:OpenTK.Platform.PalException.#ctor + href: OpenTK.Platform.PalException.html#OpenTK_Platform_PalException__ctor_OpenTK_Platform_IPalComponent_ name: PalException nameWithType: PalException.PalException - fullName: OpenTK.Core.Platform.PalException.PalException + fullName: OpenTK.Platform.PalException.PalException nameWithType.vb: PalException.New - fullName.vb: OpenTK.Core.Platform.PalException.New + fullName.vb: OpenTK.Platform.PalException.New name.vb: New - uid: System.String commentId: T:System.String diff --git a/api/OpenTK.Core.Platform.PalHandle.yml b/api/OpenTK.Platform.PalHandle.yml similarity index 72% rename from api/OpenTK.Core.Platform.PalHandle.yml rename to api/OpenTK.Platform.PalHandle.yml index 5fbec108..0db65908 100644 --- a/api/OpenTK.Core.Platform.PalHandle.yml +++ b/api/OpenTK.Platform.PalHandle.yml @@ -1,30 +1,26 @@ ### YamlMime:ManagedReference items: -- uid: OpenTK.Core.Platform.PalHandle - commentId: T:OpenTK.Core.Platform.PalHandle +- uid: OpenTK.Platform.PalHandle + commentId: T:OpenTK.Platform.PalHandle id: PalHandle - parent: OpenTK.Core.Platform + parent: OpenTK.Platform children: - - OpenTK.Core.Platform.PalHandle.As``1(OpenTK.Core.Platform.IPalComponent) - - OpenTK.Core.Platform.PalHandle.UserData + - OpenTK.Platform.PalHandle.As``1(OpenTK.Platform.IPalComponent) + - OpenTK.Platform.PalHandle.UserData langs: - csharp - vb name: PalHandle nameWithType: PalHandle - fullName: OpenTK.Core.Platform.PalHandle + fullName: OpenTK.Platform.PalHandle type: Class source: - remote: - path: src/OpenTK.Core/Platform/Handles/PalHandle.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: PalHandle - path: opentk/src/OpenTK.Core/Platform/Handles/PalHandle.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Handles\PalHandle.cs startLine: 7 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform + - OpenTK.Platform + namespace: OpenTK.Platform summary: Base class for all PAL handle objects. example: [] syntax: @@ -33,14 +29,14 @@ items: inheritance: - System.Object derivedClasses: - - OpenTK.Core.Platform.CursorHandle - - OpenTK.Core.Platform.DisplayHandle - - OpenTK.Core.Platform.IconHandle - - OpenTK.Core.Platform.JoystickHandle - - OpenTK.Core.Platform.MouseHandle - - OpenTK.Core.Platform.OpenGLContextHandle - - OpenTK.Core.Platform.SurfaceHandle - - OpenTK.Core.Platform.WindowHandle + - OpenTK.Platform.CursorHandle + - OpenTK.Platform.DisplayHandle + - OpenTK.Platform.IconHandle + - OpenTK.Platform.JoystickHandle + - OpenTK.Platform.MouseHandle + - OpenTK.Platform.OpenGLContextHandle + - OpenTK.Platform.SurfaceHandle + - OpenTK.Platform.WindowHandle inheritedMembers: - System.Object.Equals(System.Object) - System.Object.Equals(System.Object,System.Object) @@ -49,28 +45,24 @@ items: - System.Object.MemberwiseClone - System.Object.ReferenceEquals(System.Object,System.Object) - System.Object.ToString -- uid: OpenTK.Core.Platform.PalHandle.UserData - commentId: P:OpenTK.Core.Platform.PalHandle.UserData +- uid: OpenTK.Platform.PalHandle.UserData + commentId: P:OpenTK.Platform.PalHandle.UserData id: UserData - parent: OpenTK.Core.Platform.PalHandle + parent: OpenTK.Platform.PalHandle langs: - csharp - vb name: UserData nameWithType: PalHandle.UserData - fullName: OpenTK.Core.Platform.PalHandle.UserData + fullName: OpenTK.Platform.PalHandle.UserData type: Property source: - remote: - path: src/OpenTK.Core/Platform/Handles/PalHandle.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: UserData - path: opentk/src/OpenTK.Core/Platform/Handles/PalHandle.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Handles\PalHandle.cs startLine: 12 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform + - OpenTK.Platform + namespace: OpenTK.Platform summary: General purpose object for your use. example: [] syntax: @@ -79,29 +71,25 @@ items: return: type: System.Object content.vb: Public Property UserData As Object - overload: OpenTK.Core.Platform.PalHandle.UserData* -- uid: OpenTK.Core.Platform.PalHandle.As``1(OpenTK.Core.Platform.IPalComponent) - commentId: M:OpenTK.Core.Platform.PalHandle.As``1(OpenTK.Core.Platform.IPalComponent) - id: As``1(OpenTK.Core.Platform.IPalComponent) - parent: OpenTK.Core.Platform.PalHandle + overload: OpenTK.Platform.PalHandle.UserData* +- uid: OpenTK.Platform.PalHandle.As``1(OpenTK.Platform.IPalComponent) + commentId: M:OpenTK.Platform.PalHandle.As``1(OpenTK.Platform.IPalComponent) + id: As``1(OpenTK.Platform.IPalComponent) + parent: OpenTK.Platform.PalHandle langs: - csharp - vb name: As(IPalComponent) nameWithType: PalHandle.As(IPalComponent) - fullName: OpenTK.Core.Platform.PalHandle.As(OpenTK.Core.Platform.IPalComponent) + fullName: OpenTK.Platform.PalHandle.As(OpenTK.Platform.IPalComponent) type: Method source: - remote: - path: src/OpenTK.Core/Platform/Handles/PalHandle.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: As - path: opentk/src/OpenTK.Core/Platform/Handles/PalHandle.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Handles\PalHandle.cs startLine: 23 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform + - OpenTK.Platform + namespace: OpenTK.Platform summary: >- Tries to convert this PalHandle into a platform specific handle, @@ -111,7 +99,7 @@ items: content: 'public T As(IPalComponent component) where T : PalHandle' parameters: - id: component - type: OpenTK.Core.Platform.IPalComponent + type: OpenTK.Platform.IPalComponent description: The IPalComponent making this conversion. typeParameters: - id: T @@ -120,45 +108,37 @@ items: type: '{T}' description: The platform specific handle. content.vb: Public Function [As](Of T As PalHandle)(component As IPalComponent) As T - overload: OpenTK.Core.Platform.PalHandle.As* + overload: OpenTK.Platform.PalHandle.As* exceptions: - - type: OpenTK.Core.Platform.HandleMismatchException`1 - commentId: T:OpenTK.Core.Platform.HandleMismatchException`1 + - type: OpenTK.Platform.HandleMismatchException`1 + commentId: T:OpenTK.Platform.HandleMismatchException`1 description: If the handle wasn't of the platform specific handle type. nameWithType.vb: PalHandle.As(Of T)(IPalComponent) - fullName.vb: OpenTK.Core.Platform.PalHandle.As(Of T)(OpenTK.Core.Platform.IPalComponent) + fullName.vb: OpenTK.Platform.PalHandle.As(Of T)(OpenTK.Platform.IPalComponent) name.vb: As(Of T)(IPalComponent) references: -- uid: OpenTK.Core.Platform - commentId: N:OpenTK.Core.Platform +- uid: OpenTK.Platform + commentId: N:OpenTK.Platform href: OpenTK.html - name: OpenTK.Core.Platform - nameWithType: OpenTK.Core.Platform - fullName: OpenTK.Core.Platform + name: OpenTK.Platform + nameWithType: OpenTK.Platform + fullName: OpenTK.Platform spec.csharp: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html spec.vb: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html - uid: System.Object commentId: T:System.Object parent: System @@ -396,50 +376,50 @@ references: name: System nameWithType: System fullName: System -- uid: OpenTK.Core.Platform.PalHandle.UserData* - commentId: Overload:OpenTK.Core.Platform.PalHandle.UserData - href: OpenTK.Core.Platform.PalHandle.html#OpenTK_Core_Platform_PalHandle_UserData +- uid: OpenTK.Platform.PalHandle.UserData* + commentId: Overload:OpenTK.Platform.PalHandle.UserData + href: OpenTK.Platform.PalHandle.html#OpenTK_Platform_PalHandle_UserData name: UserData nameWithType: PalHandle.UserData - fullName: OpenTK.Core.Platform.PalHandle.UserData -- uid: OpenTK.Core.Platform.HandleMismatchException`1 - commentId: T:OpenTK.Core.Platform.HandleMismatchException`1 - href: OpenTK.Core.Platform.HandleMismatchException-1.html + fullName: OpenTK.Platform.PalHandle.UserData +- uid: OpenTK.Platform.HandleMismatchException`1 + commentId: T:OpenTK.Platform.HandleMismatchException`1 + href: OpenTK.Platform.HandleMismatchException-1.html name: HandleMismatchException nameWithType: HandleMismatchException - fullName: OpenTK.Core.Platform.HandleMismatchException + fullName: OpenTK.Platform.HandleMismatchException nameWithType.vb: HandleMismatchException(Of T) - fullName.vb: OpenTK.Core.Platform.HandleMismatchException(Of T) + fullName.vb: OpenTK.Platform.HandleMismatchException(Of T) name.vb: HandleMismatchException(Of T) spec.csharp: - - uid: OpenTK.Core.Platform.HandleMismatchException`1 + - uid: OpenTK.Platform.HandleMismatchException`1 name: HandleMismatchException - href: OpenTK.Core.Platform.HandleMismatchException-1.html + href: OpenTK.Platform.HandleMismatchException-1.html - name: < - name: T - name: '>' spec.vb: - - uid: OpenTK.Core.Platform.HandleMismatchException`1 + - uid: OpenTK.Platform.HandleMismatchException`1 name: HandleMismatchException - href: OpenTK.Core.Platform.HandleMismatchException-1.html + href: OpenTK.Platform.HandleMismatchException-1.html - name: ( - name: Of - name: " " - name: T - name: ) -- uid: OpenTK.Core.Platform.PalHandle.As* - commentId: Overload:OpenTK.Core.Platform.PalHandle.As - href: OpenTK.Core.Platform.PalHandle.html#OpenTK_Core_Platform_PalHandle_As__1_OpenTK_Core_Platform_IPalComponent_ +- uid: OpenTK.Platform.PalHandle.As* + commentId: Overload:OpenTK.Platform.PalHandle.As + href: OpenTK.Platform.PalHandle.html#OpenTK_Platform_PalHandle_As__1_OpenTK_Platform_IPalComponent_ name: As nameWithType: PalHandle.As - fullName: OpenTK.Core.Platform.PalHandle.As -- uid: OpenTK.Core.Platform.IPalComponent - commentId: T:OpenTK.Core.Platform.IPalComponent - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.IPalComponent.html + fullName: OpenTK.Platform.PalHandle.As +- uid: OpenTK.Platform.IPalComponent + commentId: T:OpenTK.Platform.IPalComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IPalComponent.html name: IPalComponent nameWithType: IPalComponent - fullName: OpenTK.Core.Platform.IPalComponent + fullName: OpenTK.Platform.IPalComponent - uid: '{T}' commentId: '!:T' definition: T diff --git a/api/OpenTK.Core.Platform.PalNotImplementedException.yml b/api/OpenTK.Platform.PalNotImplementedException.yml similarity index 70% rename from api/OpenTK.Core.Platform.PalNotImplementedException.yml rename to api/OpenTK.Platform.PalNotImplementedException.yml index 3879c260..523f1d55 100644 --- a/api/OpenTK.Core.Platform.PalNotImplementedException.yml +++ b/api/OpenTK.Platform.PalNotImplementedException.yml @@ -1,30 +1,26 @@ ### YamlMime:ManagedReference items: -- uid: OpenTK.Core.Platform.PalNotImplementedException - commentId: T:OpenTK.Core.Platform.PalNotImplementedException +- uid: OpenTK.Platform.PalNotImplementedException + commentId: T:OpenTK.Platform.PalNotImplementedException id: PalNotImplementedException - parent: OpenTK.Core.Platform + parent: OpenTK.Platform children: - - OpenTK.Core.Platform.PalNotImplementedException.#ctor(OpenTK.Core.Platform.IPalComponent) - - OpenTK.Core.Platform.PalNotImplementedException.#ctor(OpenTK.Core.Platform.IPalComponent,System.String) + - OpenTK.Platform.PalNotImplementedException.#ctor(OpenTK.Platform.IPalComponent) + - OpenTK.Platform.PalNotImplementedException.#ctor(OpenTK.Platform.IPalComponent,System.String) langs: - csharp - vb name: PalNotImplementedException nameWithType: PalNotImplementedException - fullName: OpenTK.Core.Platform.PalNotImplementedException + fullName: OpenTK.Platform.PalNotImplementedException type: Class source: - remote: - path: src/OpenTK.Core/Platform/PalNotImplementedException.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: PalNotImplementedException - path: opentk/src/OpenTK.Core/Platform/PalNotImplementedException.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\PalNotImplementedException.cs startLine: 12 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform + - OpenTK.Platform + namespace: OpenTK.Platform summary: >- Exception type when an optional feature is invoked in an abstraction @@ -42,13 +38,12 @@ items: inheritance: - System.Object - System.Exception - - OpenTK.Core.Platform.PalException + - OpenTK.Platform.PalException implements: - System.Runtime.Serialization.ISerializable inheritedMembers: - - OpenTK.Core.Platform.PalException.Component + - OpenTK.Platform.PalException.Component - System.Exception.GetBaseException - - System.Exception.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) - System.Exception.GetType - System.Exception.ToString - System.Exception.Data @@ -69,110 +64,94 @@ items: - type: System.SerializableAttribute ctor: System.SerializableAttribute.#ctor arguments: [] -- uid: OpenTK.Core.Platform.PalNotImplementedException.#ctor(OpenTK.Core.Platform.IPalComponent) - commentId: M:OpenTK.Core.Platform.PalNotImplementedException.#ctor(OpenTK.Core.Platform.IPalComponent) - id: '#ctor(OpenTK.Core.Platform.IPalComponent)' - parent: OpenTK.Core.Platform.PalNotImplementedException +- uid: OpenTK.Platform.PalNotImplementedException.#ctor(OpenTK.Platform.IPalComponent) + commentId: M:OpenTK.Platform.PalNotImplementedException.#ctor(OpenTK.Platform.IPalComponent) + id: '#ctor(OpenTK.Platform.IPalComponent)' + parent: OpenTK.Platform.PalNotImplementedException langs: - csharp - vb name: PalNotImplementedException(IPalComponent) nameWithType: PalNotImplementedException.PalNotImplementedException(IPalComponent) - fullName: OpenTK.Core.Platform.PalNotImplementedException.PalNotImplementedException(OpenTK.Core.Platform.IPalComponent) + fullName: OpenTK.Platform.PalNotImplementedException.PalNotImplementedException(OpenTK.Platform.IPalComponent) type: Constructor source: - remote: - path: src/OpenTK.Core/Platform/PalNotImplementedException.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Core/Platform/PalNotImplementedException.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\PalNotImplementedException.cs startLine: 19 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Initializes a new instance of the class. + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Initializes a new instance of the class. example: [] syntax: content: public PalNotImplementedException(IPalComponent component) parameters: - id: component - type: OpenTK.Core.Platform.IPalComponent + type: OpenTK.Platform.IPalComponent description: The component which throws the exception. content.vb: Public Sub New(component As IPalComponent) - overload: OpenTK.Core.Platform.PalNotImplementedException.#ctor* + overload: OpenTK.Platform.PalNotImplementedException.#ctor* nameWithType.vb: PalNotImplementedException.New(IPalComponent) - fullName.vb: OpenTK.Core.Platform.PalNotImplementedException.New(OpenTK.Core.Platform.IPalComponent) + fullName.vb: OpenTK.Platform.PalNotImplementedException.New(OpenTK.Platform.IPalComponent) name.vb: New(IPalComponent) -- uid: OpenTK.Core.Platform.PalNotImplementedException.#ctor(OpenTK.Core.Platform.IPalComponent,System.String) - commentId: M:OpenTK.Core.Platform.PalNotImplementedException.#ctor(OpenTK.Core.Platform.IPalComponent,System.String) - id: '#ctor(OpenTK.Core.Platform.IPalComponent,System.String)' - parent: OpenTK.Core.Platform.PalNotImplementedException +- uid: OpenTK.Platform.PalNotImplementedException.#ctor(OpenTK.Platform.IPalComponent,System.String) + commentId: M:OpenTK.Platform.PalNotImplementedException.#ctor(OpenTK.Platform.IPalComponent,System.String) + id: '#ctor(OpenTK.Platform.IPalComponent,System.String)' + parent: OpenTK.Platform.PalNotImplementedException langs: - csharp - vb name: PalNotImplementedException(IPalComponent, string) nameWithType: PalNotImplementedException.PalNotImplementedException(IPalComponent, string) - fullName: OpenTK.Core.Platform.PalNotImplementedException.PalNotImplementedException(OpenTK.Core.Platform.IPalComponent, string) + fullName: OpenTK.Platform.PalNotImplementedException.PalNotImplementedException(OpenTK.Platform.IPalComponent, string) type: Constructor source: - remote: - path: src/OpenTK.Core/Platform/PalNotImplementedException.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Core/Platform/PalNotImplementedException.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\PalNotImplementedException.cs startLine: 29 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Initializes a new instance of the class. + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Initializes a new instance of the class. example: [] syntax: content: public PalNotImplementedException(IPalComponent component, string name) parameters: - id: component - type: OpenTK.Core.Platform.IPalComponent + type: OpenTK.Platform.IPalComponent description: The component which throws the exception. - id: name type: System.String description: Name of the feature the driver doesn't implement. content.vb: Public Sub New(component As IPalComponent, name As String) - overload: OpenTK.Core.Platform.PalNotImplementedException.#ctor* + overload: OpenTK.Platform.PalNotImplementedException.#ctor* nameWithType.vb: PalNotImplementedException.New(IPalComponent, String) - fullName.vb: OpenTK.Core.Platform.PalNotImplementedException.New(OpenTK.Core.Platform.IPalComponent, String) + fullName.vb: OpenTK.Platform.PalNotImplementedException.New(OpenTK.Platform.IPalComponent, String) name.vb: New(IPalComponent, String) references: -- uid: OpenTK.Core.Platform - commentId: N:OpenTK.Core.Platform +- uid: OpenTK.Platform + commentId: N:OpenTK.Platform href: OpenTK.html - name: OpenTK.Core.Platform - nameWithType: OpenTK.Core.Platform - fullName: OpenTK.Core.Platform + name: OpenTK.Platform + nameWithType: OpenTK.Platform + fullName: OpenTK.Platform spec.csharp: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html spec.vb: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html - uid: System.Object commentId: T:System.Object parent: System @@ -192,13 +171,13 @@ references: name: Exception nameWithType: Exception fullName: System.Exception -- uid: OpenTK.Core.Platform.PalException - commentId: T:OpenTK.Core.Platform.PalException - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.PalException.html +- uid: OpenTK.Platform.PalException + commentId: T:OpenTK.Platform.PalException + parent: OpenTK.Platform + href: OpenTK.Platform.PalException.html name: PalException nameWithType: PalException - fullName: OpenTK.Core.Platform.PalException + fullName: OpenTK.Platform.PalException - uid: System.Runtime.Serialization.ISerializable commentId: T:System.Runtime.Serialization.ISerializable parent: System.Runtime.Serialization @@ -207,13 +186,13 @@ references: name: ISerializable nameWithType: ISerializable fullName: System.Runtime.Serialization.ISerializable -- uid: OpenTK.Core.Platform.PalException.Component - commentId: P:OpenTK.Core.Platform.PalException.Component - parent: OpenTK.Core.Platform.PalException - href: OpenTK.Core.Platform.PalException.html#OpenTK_Core_Platform_PalException_Component +- uid: OpenTK.Platform.PalException.Component + commentId: P:OpenTK.Platform.PalException.Component + parent: OpenTK.Platform.PalException + href: OpenTK.Platform.PalException.html#OpenTK_Platform_PalException_Component name: Component nameWithType: PalException.Component - fullName: OpenTK.Core.Platform.PalException.Component + fullName: OpenTK.Platform.PalException.Component - uid: System.Exception.GetBaseException commentId: M:System.Exception.GetBaseException parent: System.Exception @@ -236,48 +215,6 @@ references: href: https://learn.microsoft.com/dotnet/api/system.exception.getbaseexception - name: ( - name: ) -- uid: System.Exception.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) - commentId: M:System.Exception.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) - parent: System.Exception - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.exception.getobjectdata - name: GetObjectData(SerializationInfo, StreamingContext) - nameWithType: Exception.GetObjectData(SerializationInfo, StreamingContext) - fullName: System.Exception.GetObjectData(System.Runtime.Serialization.SerializationInfo, System.Runtime.Serialization.StreamingContext) - spec.csharp: - - uid: System.Exception.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) - name: GetObjectData - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.exception.getobjectdata - - name: ( - - uid: System.Runtime.Serialization.SerializationInfo - name: SerializationInfo - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.runtime.serialization.serializationinfo - - name: ',' - - name: " " - - uid: System.Runtime.Serialization.StreamingContext - name: StreamingContext - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.runtime.serialization.streamingcontext - - name: ) - spec.vb: - - uid: System.Exception.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) - name: GetObjectData - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.exception.getobjectdata - - name: ( - - uid: System.Runtime.Serialization.SerializationInfo - name: SerializationInfo - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.runtime.serialization.serializationinfo - - name: ',' - - name: " " - - uid: System.Runtime.Serialization.StreamingContext - name: StreamingContext - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.runtime.serialization.streamingcontext - - name: ) - uid: System.Exception.GetType commentId: M:System.Exception.GetType parent: System.Exception @@ -609,28 +546,28 @@ references: name: Serialization isExternal: true href: https://learn.microsoft.com/dotnet/api/system.runtime.serialization -- uid: OpenTK.Core.Platform.PalNotImplementedException - commentId: T:OpenTK.Core.Platform.PalNotImplementedException - href: OpenTK.Core.Platform.PalNotImplementedException.html +- uid: OpenTK.Platform.PalNotImplementedException + commentId: T:OpenTK.Platform.PalNotImplementedException + href: OpenTK.Platform.PalNotImplementedException.html name: PalNotImplementedException nameWithType: PalNotImplementedException - fullName: OpenTK.Core.Platform.PalNotImplementedException -- uid: OpenTK.Core.Platform.PalNotImplementedException.#ctor* - commentId: Overload:OpenTK.Core.Platform.PalNotImplementedException.#ctor - href: OpenTK.Core.Platform.PalNotImplementedException.html#OpenTK_Core_Platform_PalNotImplementedException__ctor_OpenTK_Core_Platform_IPalComponent_ + fullName: OpenTK.Platform.PalNotImplementedException +- uid: OpenTK.Platform.PalNotImplementedException.#ctor* + commentId: Overload:OpenTK.Platform.PalNotImplementedException.#ctor + href: OpenTK.Platform.PalNotImplementedException.html#OpenTK_Platform_PalNotImplementedException__ctor_OpenTK_Platform_IPalComponent_ name: PalNotImplementedException nameWithType: PalNotImplementedException.PalNotImplementedException - fullName: OpenTK.Core.Platform.PalNotImplementedException.PalNotImplementedException + fullName: OpenTK.Platform.PalNotImplementedException.PalNotImplementedException nameWithType.vb: PalNotImplementedException.New - fullName.vb: OpenTK.Core.Platform.PalNotImplementedException.New + fullName.vb: OpenTK.Platform.PalNotImplementedException.New name.vb: New -- uid: OpenTK.Core.Platform.IPalComponent - commentId: T:OpenTK.Core.Platform.IPalComponent - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.IPalComponent.html +- uid: OpenTK.Platform.IPalComponent + commentId: T:OpenTK.Platform.IPalComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IPalComponent.html name: IPalComponent nameWithType: IPalComponent - fullName: OpenTK.Core.Platform.IPalComponent + fullName: OpenTK.Platform.IPalComponent - uid: System.String commentId: T:System.String parent: System diff --git a/api/OpenTK.Core.Platform.PlatformEventHandler.yml b/api/OpenTK.Platform.PlatformEventHandler.yml similarity index 52% rename from api/OpenTK.Core.Platform.PlatformEventHandler.yml rename to api/OpenTK.Platform.PlatformEventHandler.yml index 0f0c7f65..2f93c2d2 100644 --- a/api/OpenTK.Core.Platform.PlatformEventHandler.yml +++ b/api/OpenTK.Platform.PlatformEventHandler.yml @@ -1,88 +1,76 @@ ### YamlMime:ManagedReference items: -- uid: OpenTK.Core.Platform.PlatformEventHandler - commentId: T:OpenTK.Core.Platform.PlatformEventHandler +- uid: OpenTK.Platform.PlatformEventHandler + commentId: T:OpenTK.Platform.PlatformEventHandler id: PlatformEventHandler - parent: OpenTK.Core.Platform + parent: OpenTK.Platform children: [] langs: - csharp - vb name: PlatformEventHandler nameWithType: PlatformEventHandler - fullName: OpenTK.Core.Platform.PlatformEventHandler + fullName: OpenTK.Platform.PlatformEventHandler type: Delegate source: - remote: - path: src/OpenTK.Core/Platform/EventQueue.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: PlatformEventHandler - path: opentk/src/OpenTK.Core/Platform/EventQueue.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\EventQueue.cs startLine: 14 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform + - OpenTK.Platform + namespace: OpenTK.Platform summary: An event handler delegate for platform events. example: [] syntax: content: public delegate void PlatformEventHandler(PalHandle? handle, PlatformEventType type, EventArgs args) parameters: - id: handle - type: OpenTK.Core.Platform.PalHandle + type: OpenTK.Platform.PalHandle description: Handle creating the event, if available. - id: type - type: OpenTK.Core.Platform.PlatformEventType + type: OpenTK.Platform.PlatformEventType description: Event type. - id: args type: System.EventArgs description: Information associated with the event, if any. content.vb: Public Delegate Sub PlatformEventHandler(handle As PalHandle, type As PlatformEventType, args As EventArgs) references: -- uid: OpenTK.Core.Platform - commentId: N:OpenTK.Core.Platform +- uid: OpenTK.Platform + commentId: N:OpenTK.Platform href: OpenTK.html - name: OpenTK.Core.Platform - nameWithType: OpenTK.Core.Platform - fullName: OpenTK.Core.Platform + name: OpenTK.Platform + nameWithType: OpenTK.Platform + fullName: OpenTK.Platform spec.csharp: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html spec.vb: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html -- uid: OpenTK.Core.Platform.PalHandle - commentId: T:OpenTK.Core.Platform.PalHandle - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.PalHandle.html + href: OpenTK.Platform.html +- uid: OpenTK.Platform.PalHandle + commentId: T:OpenTK.Platform.PalHandle + parent: OpenTK.Platform + href: OpenTK.Platform.PalHandle.html name: PalHandle nameWithType: PalHandle - fullName: OpenTK.Core.Platform.PalHandle -- uid: OpenTK.Core.Platform.PlatformEventType - commentId: T:OpenTK.Core.Platform.PlatformEventType - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.PlatformEventType.html + fullName: OpenTK.Platform.PalHandle +- uid: OpenTK.Platform.PlatformEventType + commentId: T:OpenTK.Platform.PlatformEventType + parent: OpenTK.Platform + href: OpenTK.Platform.PlatformEventType.html name: PlatformEventType nameWithType: PlatformEventType - fullName: OpenTK.Core.Platform.PlatformEventType + fullName: OpenTK.Platform.PlatformEventType - uid: System.EventArgs commentId: T:System.EventArgs parent: System diff --git a/api/OpenTK.Platform.PlatformEventType.yml b/api/OpenTK.Platform.PlatformEventType.yml new file mode 100644 index 00000000..a0dcdbea --- /dev/null +++ b/api/OpenTK.Platform.PlatformEventType.yml @@ -0,0 +1,620 @@ +### YamlMime:ManagedReference +items: +- uid: OpenTK.Platform.PlatformEventType + commentId: T:OpenTK.Platform.PlatformEventType + id: PlatformEventType + parent: OpenTK.Platform + children: + - OpenTK.Platform.PlatformEventType.ClipboardUpdate + - OpenTK.Platform.PlatformEventType.Close + - OpenTK.Platform.PlatformEventType.DisplayConnectionChanged + - OpenTK.Platform.PlatformEventType.FileDrop + - OpenTK.Platform.PlatformEventType.Focus + - OpenTK.Platform.PlatformEventType.InputLanguageChanged + - OpenTK.Platform.PlatformEventType.KeyDown + - OpenTK.Platform.PlatformEventType.KeyUp + - OpenTK.Platform.PlatformEventType.MouseDown + - OpenTK.Platform.PlatformEventType.MouseEnter + - OpenTK.Platform.PlatformEventType.MouseMove + - OpenTK.Platform.PlatformEventType.MouseUp + - OpenTK.Platform.PlatformEventType.NoOperation + - OpenTK.Platform.PlatformEventType.PowerStateChange + - OpenTK.Platform.PlatformEventType.RawMouseMove + - OpenTK.Platform.PlatformEventType.Scroll + - OpenTK.Platform.PlatformEventType.TextEditing + - OpenTK.Platform.PlatformEventType.TextInput + - OpenTK.Platform.PlatformEventType.ThemeChange + - OpenTK.Platform.PlatformEventType.WindowFramebufferResize + - OpenTK.Platform.PlatformEventType.WindowModeChange + - OpenTK.Platform.PlatformEventType.WindowMove + - OpenTK.Platform.PlatformEventType.WindowResize + - OpenTK.Platform.PlatformEventType.WindowScaleChange + langs: + - csharp + - vb + name: PlatformEventType + nameWithType: PlatformEventType + fullName: OpenTK.Platform.PlatformEventType + type: Enum + source: + id: PlatformEventType + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\PlatformEventType.cs + startLine: 5 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Enumeration of all OpenTK window events. + example: [] + syntax: + content: public enum PlatformEventType + content.vb: Public Enum PlatformEventType +- uid: OpenTK.Platform.PlatformEventType.NoOperation + commentId: F:OpenTK.Platform.PlatformEventType.NoOperation + id: NoOperation + parent: OpenTK.Platform.PlatformEventType + langs: + - csharp + - vb + name: NoOperation + nameWithType: PlatformEventType.NoOperation + fullName: OpenTK.Platform.PlatformEventType.NoOperation + type: Field + source: + id: NoOperation + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\PlatformEventType.cs + startLine: 12 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: A no operation event, for testing purposes. + example: [] + syntax: + content: NoOperation = 0 + return: + type: OpenTK.Platform.PlatformEventType +- uid: OpenTK.Platform.PlatformEventType.Close + commentId: F:OpenTK.Platform.PlatformEventType.Close + id: Close + parent: OpenTK.Platform.PlatformEventType + langs: + - csharp + - vb + name: Close + nameWithType: PlatformEventType.Close + fullName: OpenTK.Platform.PlatformEventType.Close + type: Field + source: + id: Close + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\PlatformEventType.cs + startLine: 14 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: Close = 1 + return: + type: OpenTK.Platform.PlatformEventType +- uid: OpenTK.Platform.PlatformEventType.Focus + commentId: F:OpenTK.Platform.PlatformEventType.Focus + id: Focus + parent: OpenTK.Platform.PlatformEventType + langs: + - csharp + - vb + name: Focus + nameWithType: PlatformEventType.Focus + fullName: OpenTK.Platform.PlatformEventType.Focus + type: Field + source: + id: Focus + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\PlatformEventType.cs + startLine: 16 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: Focus = 2 + return: + type: OpenTK.Platform.PlatformEventType +- uid: OpenTK.Platform.PlatformEventType.WindowMove + commentId: F:OpenTK.Platform.PlatformEventType.WindowMove + id: WindowMove + parent: OpenTK.Platform.PlatformEventType + langs: + - csharp + - vb + name: WindowMove + nameWithType: PlatformEventType.WindowMove + fullName: OpenTK.Platform.PlatformEventType.WindowMove + type: Field + source: + id: WindowMove + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\PlatformEventType.cs + startLine: 17 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: WindowMove = 3 + return: + type: OpenTK.Platform.PlatformEventType +- uid: OpenTK.Platform.PlatformEventType.WindowResize + commentId: F:OpenTK.Platform.PlatformEventType.WindowResize + id: WindowResize + parent: OpenTK.Platform.PlatformEventType + langs: + - csharp + - vb + name: WindowResize + nameWithType: PlatformEventType.WindowResize + fullName: OpenTK.Platform.PlatformEventType.WindowResize + type: Field + source: + id: WindowResize + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\PlatformEventType.cs + startLine: 18 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: WindowResize = 4 + return: + type: OpenTK.Platform.PlatformEventType +- uid: OpenTK.Platform.PlatformEventType.WindowFramebufferResize + commentId: F:OpenTK.Platform.PlatformEventType.WindowFramebufferResize + id: WindowFramebufferResize + parent: OpenTK.Platform.PlatformEventType + langs: + - csharp + - vb + name: WindowFramebufferResize + nameWithType: PlatformEventType.WindowFramebufferResize + fullName: OpenTK.Platform.PlatformEventType.WindowFramebufferResize + type: Field + source: + id: WindowFramebufferResize + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\PlatformEventType.cs + startLine: 19 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: WindowFramebufferResize = 5 + return: + type: OpenTK.Platform.PlatformEventType +- uid: OpenTK.Platform.PlatformEventType.WindowModeChange + commentId: F:OpenTK.Platform.PlatformEventType.WindowModeChange + id: WindowModeChange + parent: OpenTK.Platform.PlatformEventType + langs: + - csharp + - vb + name: WindowModeChange + nameWithType: PlatformEventType.WindowModeChange + fullName: OpenTK.Platform.PlatformEventType.WindowModeChange + type: Field + source: + id: WindowModeChange + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\PlatformEventType.cs + startLine: 21 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: WindowModeChange = 6 + return: + type: OpenTK.Platform.PlatformEventType +- uid: OpenTK.Platform.PlatformEventType.WindowScaleChange + commentId: F:OpenTK.Platform.PlatformEventType.WindowScaleChange + id: WindowScaleChange + parent: OpenTK.Platform.PlatformEventType + langs: + - csharp + - vb + name: WindowScaleChange + nameWithType: PlatformEventType.WindowScaleChange + fullName: OpenTK.Platform.PlatformEventType.WindowScaleChange + type: Field + source: + id: WindowScaleChange + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\PlatformEventType.cs + startLine: 23 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: WindowScaleChange = 7 + return: + type: OpenTK.Platform.PlatformEventType +- uid: OpenTK.Platform.PlatformEventType.MouseEnter + commentId: F:OpenTK.Platform.PlatformEventType.MouseEnter + id: MouseEnter + parent: OpenTK.Platform.PlatformEventType + langs: + - csharp + - vb + name: MouseEnter + nameWithType: PlatformEventType.MouseEnter + fullName: OpenTK.Platform.PlatformEventType.MouseEnter + type: Field + source: + id: MouseEnter + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\PlatformEventType.cs + startLine: 25 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: MouseEnter = 8 + return: + type: OpenTK.Platform.PlatformEventType +- uid: OpenTK.Platform.PlatformEventType.MouseMove + commentId: F:OpenTK.Platform.PlatformEventType.MouseMove + id: MouseMove + parent: OpenTK.Platform.PlatformEventType + langs: + - csharp + - vb + name: MouseMove + nameWithType: PlatformEventType.MouseMove + fullName: OpenTK.Platform.PlatformEventType.MouseMove + type: Field + source: + id: MouseMove + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\PlatformEventType.cs + startLine: 30 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Signifies the event is of type . + example: [] + syntax: + content: MouseMove = 9 + return: + type: OpenTK.Platform.PlatformEventType +- uid: OpenTK.Platform.PlatformEventType.RawMouseMove + commentId: F:OpenTK.Platform.PlatformEventType.RawMouseMove + id: RawMouseMove + parent: OpenTK.Platform.PlatformEventType + langs: + - csharp + - vb + name: RawMouseMove + nameWithType: PlatformEventType.RawMouseMove + fullName: OpenTK.Platform.PlatformEventType.RawMouseMove + type: Field + source: + id: RawMouseMove + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\PlatformEventType.cs + startLine: 32 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: RawMouseMove = 10 + return: + type: OpenTK.Platform.PlatformEventType +- uid: OpenTK.Platform.PlatformEventType.MouseDown + commentId: F:OpenTK.Platform.PlatformEventType.MouseDown + id: MouseDown + parent: OpenTK.Platform.PlatformEventType + langs: + - csharp + - vb + name: MouseDown + nameWithType: PlatformEventType.MouseDown + fullName: OpenTK.Platform.PlatformEventType.MouseDown + type: Field + source: + id: MouseDown + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\PlatformEventType.cs + startLine: 35 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: MouseDown = 11 + return: + type: OpenTK.Platform.PlatformEventType +- uid: OpenTK.Platform.PlatformEventType.MouseUp + commentId: F:OpenTK.Platform.PlatformEventType.MouseUp + id: MouseUp + parent: OpenTK.Platform.PlatformEventType + langs: + - csharp + - vb + name: MouseUp + nameWithType: PlatformEventType.MouseUp + fullName: OpenTK.Platform.PlatformEventType.MouseUp + type: Field + source: + id: MouseUp + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\PlatformEventType.cs + startLine: 36 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: MouseUp = 12 + return: + type: OpenTK.Platform.PlatformEventType +- uid: OpenTK.Platform.PlatformEventType.Scroll + commentId: F:OpenTK.Platform.PlatformEventType.Scroll + id: Scroll + parent: OpenTK.Platform.PlatformEventType + langs: + - csharp + - vb + name: Scroll + nameWithType: PlatformEventType.Scroll + fullName: OpenTK.Platform.PlatformEventType.Scroll + type: Field + source: + id: Scroll + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\PlatformEventType.cs + startLine: 38 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: Scroll = 13 + return: + type: OpenTK.Platform.PlatformEventType +- uid: OpenTK.Platform.PlatformEventType.KeyDown + commentId: F:OpenTK.Platform.PlatformEventType.KeyDown + id: KeyDown + parent: OpenTK.Platform.PlatformEventType + langs: + - csharp + - vb + name: KeyDown + nameWithType: PlatformEventType.KeyDown + fullName: OpenTK.Platform.PlatformEventType.KeyDown + type: Field + source: + id: KeyDown + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\PlatformEventType.cs + startLine: 41 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: KeyDown = 14 + return: + type: OpenTK.Platform.PlatformEventType +- uid: OpenTK.Platform.PlatformEventType.KeyUp + commentId: F:OpenTK.Platform.PlatformEventType.KeyUp + id: KeyUp + parent: OpenTK.Platform.PlatformEventType + langs: + - csharp + - vb + name: KeyUp + nameWithType: PlatformEventType.KeyUp + fullName: OpenTK.Platform.PlatformEventType.KeyUp + type: Field + source: + id: KeyUp + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\PlatformEventType.cs + startLine: 42 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: KeyUp = 15 + return: + type: OpenTK.Platform.PlatformEventType +- uid: OpenTK.Platform.PlatformEventType.TextInput + commentId: F:OpenTK.Platform.PlatformEventType.TextInput + id: TextInput + parent: OpenTK.Platform.PlatformEventType + langs: + - csharp + - vb + name: TextInput + nameWithType: PlatformEventType.TextInput + fullName: OpenTK.Platform.PlatformEventType.TextInput + type: Field + source: + id: TextInput + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\PlatformEventType.cs + startLine: 44 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: TextInput = 16 + return: + type: OpenTK.Platform.PlatformEventType +- uid: OpenTK.Platform.PlatformEventType.TextEditing + commentId: F:OpenTK.Platform.PlatformEventType.TextEditing + id: TextEditing + parent: OpenTK.Platform.PlatformEventType + langs: + - csharp + - vb + name: TextEditing + nameWithType: PlatformEventType.TextEditing + fullName: OpenTK.Platform.PlatformEventType.TextEditing + type: Field + source: + id: TextEditing + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\PlatformEventType.cs + startLine: 45 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: TextEditing = 17 + return: + type: OpenTK.Platform.PlatformEventType +- uid: OpenTK.Platform.PlatformEventType.InputLanguageChanged + commentId: F:OpenTK.Platform.PlatformEventType.InputLanguageChanged + id: InputLanguageChanged + parent: OpenTK.Platform.PlatformEventType + langs: + - csharp + - vb + name: InputLanguageChanged + nameWithType: PlatformEventType.InputLanguageChanged + fullName: OpenTK.Platform.PlatformEventType.InputLanguageChanged + type: Field + source: + id: InputLanguageChanged + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\PlatformEventType.cs + startLine: 47 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: InputLanguageChanged = 18 + return: + type: OpenTK.Platform.PlatformEventType +- uid: OpenTK.Platform.PlatformEventType.FileDrop + commentId: F:OpenTK.Platform.PlatformEventType.FileDrop + id: FileDrop + parent: OpenTK.Platform.PlatformEventType + langs: + - csharp + - vb + name: FileDrop + nameWithType: PlatformEventType.FileDrop + fullName: OpenTK.Platform.PlatformEventType.FileDrop + type: Field + source: + id: FileDrop + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\PlatformEventType.cs + startLine: 49 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: FileDrop = 19 + return: + type: OpenTK.Platform.PlatformEventType +- uid: OpenTK.Platform.PlatformEventType.ClipboardUpdate + commentId: F:OpenTK.Platform.PlatformEventType.ClipboardUpdate + id: ClipboardUpdate + parent: OpenTK.Platform.PlatformEventType + langs: + - csharp + - vb + name: ClipboardUpdate + nameWithType: PlatformEventType.ClipboardUpdate + fullName: OpenTK.Platform.PlatformEventType.ClipboardUpdate + type: Field + source: + id: ClipboardUpdate + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\PlatformEventType.cs + startLine: 54 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Is raised when the contents of the clipboard is changed. + example: [] + syntax: + content: ClipboardUpdate = 20 + return: + type: OpenTK.Platform.PlatformEventType +- uid: OpenTK.Platform.PlatformEventType.ThemeChange + commentId: F:OpenTK.Platform.PlatformEventType.ThemeChange + id: ThemeChange + parent: OpenTK.Platform.PlatformEventType + langs: + - csharp + - vb + name: ThemeChange + nameWithType: PlatformEventType.ThemeChange + fullName: OpenTK.Platform.PlatformEventType.ThemeChange + type: Field + source: + id: ThemeChange + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\PlatformEventType.cs + startLine: 56 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: ThemeChange = 21 + return: + type: OpenTK.Platform.PlatformEventType +- uid: OpenTK.Platform.PlatformEventType.DisplayConnectionChanged + commentId: F:OpenTK.Platform.PlatformEventType.DisplayConnectionChanged + id: DisplayConnectionChanged + parent: OpenTK.Platform.PlatformEventType + langs: + - csharp + - vb + name: DisplayConnectionChanged + nameWithType: PlatformEventType.DisplayConnectionChanged + fullName: OpenTK.Platform.PlatformEventType.DisplayConnectionChanged + type: Field + source: + id: DisplayConnectionChanged + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\PlatformEventType.cs + startLine: 58 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: DisplayConnectionChanged = 22 + return: + type: OpenTK.Platform.PlatformEventType +- uid: OpenTK.Platform.PlatformEventType.PowerStateChange + commentId: F:OpenTK.Platform.PlatformEventType.PowerStateChange + id: PowerStateChange + parent: OpenTK.Platform.PlatformEventType + langs: + - csharp + - vb + name: PowerStateChange + nameWithType: PlatformEventType.PowerStateChange + fullName: OpenTK.Platform.PlatformEventType.PowerStateChange + type: Field + source: + id: PowerStateChange + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\PlatformEventType.cs + startLine: 60 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: PowerStateChange = 23 + return: + type: OpenTK.Platform.PlatformEventType +references: +- uid: OpenTK.Platform + commentId: N:OpenTK.Platform + href: OpenTK.html + name: OpenTK.Platform + nameWithType: OpenTK.Platform + fullName: OpenTK.Platform + spec.csharp: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Platform + name: Platform + href: OpenTK.Platform.html + spec.vb: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Platform + name: Platform + href: OpenTK.Platform.html +- uid: OpenTK.Platform.PlatformEventType + commentId: T:OpenTK.Platform.PlatformEventType + parent: OpenTK.Platform + href: OpenTK.Platform.PlatformEventType.html + name: PlatformEventType + nameWithType: PlatformEventType + fullName: OpenTK.Platform.PlatformEventType +- uid: OpenTK.Platform.MouseMoveEventArgs + commentId: T:OpenTK.Platform.MouseMoveEventArgs + href: OpenTK.Platform.MouseMoveEventArgs.html + name: MouseMoveEventArgs + nameWithType: MouseMoveEventArgs + fullName: OpenTK.Platform.MouseMoveEventArgs diff --git a/api/OpenTK.Core.Platform.PlatformException.yml b/api/OpenTK.Platform.PlatformException.yml similarity index 75% rename from api/OpenTK.Core.Platform.PlatformException.yml rename to api/OpenTK.Platform.PlatformException.yml index cb75b96b..b373660f 100644 --- a/api/OpenTK.Core.Platform.PlatformException.yml +++ b/api/OpenTK.Platform.PlatformException.yml @@ -1,30 +1,26 @@ ### YamlMime:ManagedReference items: -- uid: OpenTK.Core.Platform.PlatformException - commentId: T:OpenTK.Core.Platform.PlatformException +- uid: OpenTK.Platform.PlatformException + commentId: T:OpenTK.Platform.PlatformException id: PlatformException - parent: OpenTK.Core.Platform + parent: OpenTK.Platform children: - - OpenTK.Core.Platform.PlatformException.#ctor - - OpenTK.Core.Platform.PlatformException.#ctor(System.String) + - OpenTK.Platform.PlatformException.#ctor + - OpenTK.Platform.PlatformException.#ctor(System.String) langs: - csharp - vb name: PlatformException nameWithType: PlatformException - fullName: OpenTK.Core.Platform.PlatformException + fullName: OpenTK.Platform.PlatformException type: Class source: - remote: - path: src/OpenTK.Core/Platform/PlatformException.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: PlatformException - path: opentk/src/OpenTK.Core/Platform/PlatformException.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\PlatformException.cs startLine: 7 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform + - OpenTK.Platform + namespace: OpenTK.Platform summary: Defines a platform-specific exception. example: [] syntax: @@ -37,7 +33,6 @@ items: - System.Runtime.Serialization.ISerializable inheritedMembers: - System.Exception.GetBaseException - - System.Exception.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) - System.Exception.GetType - System.Exception.ToString - System.Exception.Data @@ -54,60 +49,52 @@ items: - System.Object.GetHashCode - System.Object.MemberwiseClone - System.Object.ReferenceEquals(System.Object,System.Object) -- uid: OpenTK.Core.Platform.PlatformException.#ctor - commentId: M:OpenTK.Core.Platform.PlatformException.#ctor +- uid: OpenTK.Platform.PlatformException.#ctor + commentId: M:OpenTK.Platform.PlatformException.#ctor id: '#ctor' - parent: OpenTK.Core.Platform.PlatformException + parent: OpenTK.Platform.PlatformException langs: - csharp - vb name: PlatformException() nameWithType: PlatformException.PlatformException() - fullName: OpenTK.Core.Platform.PlatformException.PlatformException() + fullName: OpenTK.Platform.PlatformException.PlatformException() type: Constructor source: - remote: - path: src/OpenTK.Core/Platform/PlatformException.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Core/Platform/PlatformException.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\PlatformException.cs startLine: 12 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Initializes a new instance of the class. + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Initializes a new instance of the class. example: [] syntax: content: public PlatformException() content.vb: Public Sub New() - overload: OpenTK.Core.Platform.PlatformException.#ctor* + overload: OpenTK.Platform.PlatformException.#ctor* nameWithType.vb: PlatformException.New() - fullName.vb: OpenTK.Core.Platform.PlatformException.New() + fullName.vb: OpenTK.Platform.PlatformException.New() name.vb: New() -- uid: OpenTK.Core.Platform.PlatformException.#ctor(System.String) - commentId: M:OpenTK.Core.Platform.PlatformException.#ctor(System.String) +- uid: OpenTK.Platform.PlatformException.#ctor(System.String) + commentId: M:OpenTK.Platform.PlatformException.#ctor(System.String) id: '#ctor(System.String)' - parent: OpenTK.Core.Platform.PlatformException + parent: OpenTK.Platform.PlatformException langs: - csharp - vb name: PlatformException(string) nameWithType: PlatformException.PlatformException(string) - fullName: OpenTK.Core.Platform.PlatformException.PlatformException(string) + fullName: OpenTK.Platform.PlatformException.PlatformException(string) type: Constructor source: - remote: - path: src/OpenTK.Core/Platform/PlatformException.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Core/Platform/PlatformException.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\PlatformException.cs startLine: 20 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Initializes a new instance of the class. + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Initializes a new instance of the class. example: [] syntax: content: public PlatformException(string message) @@ -116,41 +103,33 @@ items: type: System.String description: A message explaining the cause for this exception. content.vb: Public Sub New(message As String) - overload: OpenTK.Core.Platform.PlatformException.#ctor* + overload: OpenTK.Platform.PlatformException.#ctor* nameWithType.vb: PlatformException.New(String) - fullName.vb: OpenTK.Core.Platform.PlatformException.New(String) + fullName.vb: OpenTK.Platform.PlatformException.New(String) name.vb: New(String) references: -- uid: OpenTK.Core.Platform - commentId: N:OpenTK.Core.Platform +- uid: OpenTK.Platform + commentId: N:OpenTK.Platform href: OpenTK.html - name: OpenTK.Core.Platform - nameWithType: OpenTK.Core.Platform - fullName: OpenTK.Core.Platform + name: OpenTK.Platform + nameWithType: OpenTK.Platform + fullName: OpenTK.Platform spec.csharp: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html spec.vb: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html - uid: System.Object commentId: T:System.Object parent: System @@ -200,48 +179,6 @@ references: href: https://learn.microsoft.com/dotnet/api/system.exception.getbaseexception - name: ( - name: ) -- uid: System.Exception.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) - commentId: M:System.Exception.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) - parent: System.Exception - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.exception.getobjectdata - name: GetObjectData(SerializationInfo, StreamingContext) - nameWithType: Exception.GetObjectData(SerializationInfo, StreamingContext) - fullName: System.Exception.GetObjectData(System.Runtime.Serialization.SerializationInfo, System.Runtime.Serialization.StreamingContext) - spec.csharp: - - uid: System.Exception.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) - name: GetObjectData - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.exception.getobjectdata - - name: ( - - uid: System.Runtime.Serialization.SerializationInfo - name: SerializationInfo - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.runtime.serialization.serializationinfo - - name: ',' - - name: " " - - uid: System.Runtime.Serialization.StreamingContext - name: StreamingContext - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.runtime.serialization.streamingcontext - - name: ) - spec.vb: - - uid: System.Exception.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) - name: GetObjectData - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.exception.getobjectdata - - name: ( - - uid: System.Runtime.Serialization.SerializationInfo - name: SerializationInfo - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.runtime.serialization.serializationinfo - - name: ',' - - name: " " - - uid: System.Runtime.Serialization.StreamingContext - name: StreamingContext - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.runtime.serialization.streamingcontext - - name: ) - uid: System.Exception.GetType commentId: M:System.Exception.GetType parent: System.Exception @@ -573,20 +510,20 @@ references: name: Serialization isExternal: true href: https://learn.microsoft.com/dotnet/api/system.runtime.serialization -- uid: OpenTK.Core.Platform.PlatformException - commentId: T:OpenTK.Core.Platform.PlatformException - href: OpenTK.Core.Platform.PlatformException.html +- uid: OpenTK.Platform.PlatformException + commentId: T:OpenTK.Platform.PlatformException + href: OpenTK.Platform.PlatformException.html name: PlatformException nameWithType: PlatformException - fullName: OpenTK.Core.Platform.PlatformException -- uid: OpenTK.Core.Platform.PlatformException.#ctor* - commentId: Overload:OpenTK.Core.Platform.PlatformException.#ctor - href: OpenTK.Core.Platform.PlatformException.html#OpenTK_Core_Platform_PlatformException__ctor + fullName: OpenTK.Platform.PlatformException +- uid: OpenTK.Platform.PlatformException.#ctor* + commentId: Overload:OpenTK.Platform.PlatformException.#ctor + href: OpenTK.Platform.PlatformException.html#OpenTK_Platform_PlatformException__ctor name: PlatformException nameWithType: PlatformException.PlatformException - fullName: OpenTK.Core.Platform.PlatformException.PlatformException + fullName: OpenTK.Platform.PlatformException.PlatformException nameWithType.vb: PlatformException.New - fullName.vb: OpenTK.Core.Platform.PlatformException.New + fullName.vb: OpenTK.Platform.PlatformException.New name.vb: New - uid: System.String commentId: T:System.String diff --git a/api/OpenTK.Core.Platform.PowerStateChangeEventArgs.yml b/api/OpenTK.Platform.PowerStateChangeEventArgs.yml similarity index 75% rename from api/OpenTK.Core.Platform.PowerStateChangeEventArgs.yml rename to api/OpenTK.Platform.PowerStateChangeEventArgs.yml index 164c2ea4..9d71d8a5 100644 --- a/api/OpenTK.Core.Platform.PowerStateChangeEventArgs.yml +++ b/api/OpenTK.Platform.PowerStateChangeEventArgs.yml @@ -1,30 +1,26 @@ ### YamlMime:ManagedReference items: -- uid: OpenTK.Core.Platform.PowerStateChangeEventArgs - commentId: T:OpenTK.Core.Platform.PowerStateChangeEventArgs +- uid: OpenTK.Platform.PowerStateChangeEventArgs + commentId: T:OpenTK.Platform.PowerStateChangeEventArgs id: PowerStateChangeEventArgs - parent: OpenTK.Core.Platform + parent: OpenTK.Platform children: - - OpenTK.Core.Platform.PowerStateChangeEventArgs.#ctor(System.Boolean) - - OpenTK.Core.Platform.PowerStateChangeEventArgs.GoingToSleep + - OpenTK.Platform.PowerStateChangeEventArgs.#ctor(System.Boolean) + - OpenTK.Platform.PowerStateChangeEventArgs.GoingToSleep langs: - csharp - vb name: PowerStateChangeEventArgs nameWithType: PowerStateChangeEventArgs - fullName: OpenTK.Core.Platform.PowerStateChangeEventArgs + fullName: OpenTK.Platform.PowerStateChangeEventArgs type: Class source: - remote: - path: src/OpenTK.Core/Platform/WindowEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: PowerStateChangeEventArgs - path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs - startLine: 633 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\WindowEventArgs.cs + startLine: 657 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform + - OpenTK.Platform + namespace: OpenTK.Platform summary: This event is triggered when the power state of the system changes. example: [] syntax: @@ -42,28 +38,24 @@ items: - System.Object.MemberwiseClone - System.Object.ReferenceEquals(System.Object,System.Object) - System.Object.ToString -- uid: OpenTK.Core.Platform.PowerStateChangeEventArgs.GoingToSleep - commentId: P:OpenTK.Core.Platform.PowerStateChangeEventArgs.GoingToSleep +- uid: OpenTK.Platform.PowerStateChangeEventArgs.GoingToSleep + commentId: P:OpenTK.Platform.PowerStateChangeEventArgs.GoingToSleep id: GoingToSleep - parent: OpenTK.Core.Platform.PowerStateChangeEventArgs + parent: OpenTK.Platform.PowerStateChangeEventArgs langs: - csharp - vb name: GoingToSleep nameWithType: PowerStateChangeEventArgs.GoingToSleep - fullName: OpenTK.Core.Platform.PowerStateChangeEventArgs.GoingToSleep + fullName: OpenTK.Platform.PowerStateChangeEventArgs.GoingToSleep type: Property source: - remote: - path: src/OpenTK.Core/Platform/WindowEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GoingToSleep - path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs - startLine: 638 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\WindowEventArgs.cs + startLine: 662 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform + - OpenTK.Platform + namespace: OpenTK.Platform summary: If the computer is entering sleep or if it's being woken from sleep. example: [] syntax: @@ -72,30 +64,26 @@ items: return: type: System.Boolean content.vb: Public Property GoingToSleep As Boolean - overload: OpenTK.Core.Platform.PowerStateChangeEventArgs.GoingToSleep* -- uid: OpenTK.Core.Platform.PowerStateChangeEventArgs.#ctor(System.Boolean) - commentId: M:OpenTK.Core.Platform.PowerStateChangeEventArgs.#ctor(System.Boolean) + overload: OpenTK.Platform.PowerStateChangeEventArgs.GoingToSleep* +- uid: OpenTK.Platform.PowerStateChangeEventArgs.#ctor(System.Boolean) + commentId: M:OpenTK.Platform.PowerStateChangeEventArgs.#ctor(System.Boolean) id: '#ctor(System.Boolean)' - parent: OpenTK.Core.Platform.PowerStateChangeEventArgs + parent: OpenTK.Platform.PowerStateChangeEventArgs langs: - csharp - vb name: PowerStateChangeEventArgs(bool) nameWithType: PowerStateChangeEventArgs.PowerStateChangeEventArgs(bool) - fullName: OpenTK.Core.Platform.PowerStateChangeEventArgs.PowerStateChangeEventArgs(bool) + fullName: OpenTK.Platform.PowerStateChangeEventArgs.PowerStateChangeEventArgs(bool) type: Constructor source: - remote: - path: src/OpenTK.Core/Platform/WindowEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs - startLine: 644 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\WindowEventArgs.cs + startLine: 668 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Initializes a new instance of the class. + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Initializes a new instance of the class. example: [] syntax: content: public PowerStateChangeEventArgs(bool goingToSleep) @@ -104,41 +92,33 @@ items: type: System.Boolean description: If we are going to sleep. content.vb: Public Sub New(goingToSleep As Boolean) - overload: OpenTK.Core.Platform.PowerStateChangeEventArgs.#ctor* + overload: OpenTK.Platform.PowerStateChangeEventArgs.#ctor* nameWithType.vb: PowerStateChangeEventArgs.New(Boolean) - fullName.vb: OpenTK.Core.Platform.PowerStateChangeEventArgs.New(Boolean) + fullName.vb: OpenTK.Platform.PowerStateChangeEventArgs.New(Boolean) name.vb: New(Boolean) references: -- uid: OpenTK.Core.Platform - commentId: N:OpenTK.Core.Platform +- uid: OpenTK.Platform + commentId: N:OpenTK.Platform href: OpenTK.html - name: OpenTK.Core.Platform - nameWithType: OpenTK.Core.Platform - fullName: OpenTK.Core.Platform + name: OpenTK.Platform + nameWithType: OpenTK.Platform + fullName: OpenTK.Platform spec.csharp: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html spec.vb: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html - uid: System.Object commentId: T:System.Object parent: System @@ -392,12 +372,12 @@ references: name: System nameWithType: System fullName: System -- uid: OpenTK.Core.Platform.PowerStateChangeEventArgs.GoingToSleep* - commentId: Overload:OpenTK.Core.Platform.PowerStateChangeEventArgs.GoingToSleep - href: OpenTK.Core.Platform.PowerStateChangeEventArgs.html#OpenTK_Core_Platform_PowerStateChangeEventArgs_GoingToSleep +- uid: OpenTK.Platform.PowerStateChangeEventArgs.GoingToSleep* + commentId: Overload:OpenTK.Platform.PowerStateChangeEventArgs.GoingToSleep + href: OpenTK.Platform.PowerStateChangeEventArgs.html#OpenTK_Platform_PowerStateChangeEventArgs_GoingToSleep name: GoingToSleep nameWithType: PowerStateChangeEventArgs.GoingToSleep - fullName: OpenTK.Core.Platform.PowerStateChangeEventArgs.GoingToSleep + fullName: OpenTK.Platform.PowerStateChangeEventArgs.GoingToSleep - uid: System.Boolean commentId: T:System.Boolean parent: System @@ -409,18 +389,18 @@ references: nameWithType.vb: Boolean fullName.vb: Boolean name.vb: Boolean -- uid: OpenTK.Core.Platform.PowerStateChangeEventArgs - commentId: T:OpenTK.Core.Platform.PowerStateChangeEventArgs - href: OpenTK.Core.Platform.PowerStateChangeEventArgs.html +- uid: OpenTK.Platform.PowerStateChangeEventArgs + commentId: T:OpenTK.Platform.PowerStateChangeEventArgs + href: OpenTK.Platform.PowerStateChangeEventArgs.html name: PowerStateChangeEventArgs nameWithType: PowerStateChangeEventArgs - fullName: OpenTK.Core.Platform.PowerStateChangeEventArgs -- uid: OpenTK.Core.Platform.PowerStateChangeEventArgs.#ctor* - commentId: Overload:OpenTK.Core.Platform.PowerStateChangeEventArgs.#ctor - href: OpenTK.Core.Platform.PowerStateChangeEventArgs.html#OpenTK_Core_Platform_PowerStateChangeEventArgs__ctor_System_Boolean_ + fullName: OpenTK.Platform.PowerStateChangeEventArgs +- uid: OpenTK.Platform.PowerStateChangeEventArgs.#ctor* + commentId: Overload:OpenTK.Platform.PowerStateChangeEventArgs.#ctor + href: OpenTK.Platform.PowerStateChangeEventArgs.html#OpenTK_Platform_PowerStateChangeEventArgs__ctor_System_Boolean_ name: PowerStateChangeEventArgs nameWithType: PowerStateChangeEventArgs.PowerStateChangeEventArgs - fullName: OpenTK.Core.Platform.PowerStateChangeEventArgs.PowerStateChangeEventArgs + fullName: OpenTK.Platform.PowerStateChangeEventArgs.PowerStateChangeEventArgs nameWithType.vb: PowerStateChangeEventArgs.New - fullName.vb: OpenTK.Core.Platform.PowerStateChangeEventArgs.New + fullName.vb: OpenTK.Platform.PowerStateChangeEventArgs.New name.vb: New diff --git a/api/OpenTK.Platform.RawMouseMoveEventArgs.yml b/api/OpenTK.Platform.RawMouseMoveEventArgs.yml new file mode 100644 index 00000000..cdd6c824 --- /dev/null +++ b/api/OpenTK.Platform.RawMouseMoveEventArgs.yml @@ -0,0 +1,457 @@ +### YamlMime:ManagedReference +items: +- uid: OpenTK.Platform.RawMouseMoveEventArgs + commentId: T:OpenTK.Platform.RawMouseMoveEventArgs + id: RawMouseMoveEventArgs + parent: OpenTK.Platform + children: + - OpenTK.Platform.RawMouseMoveEventArgs.#ctor(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2) + - OpenTK.Platform.RawMouseMoveEventArgs.Delta + langs: + - csharp + - vb + name: RawMouseMoveEventArgs + nameWithType: RawMouseMoveEventArgs + fullName: OpenTK.Platform.RawMouseMoveEventArgs + type: Class + source: + id: RawMouseMoveEventArgs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\WindowEventArgs.cs + startLine: 431 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: This event is triggered when the mouse moves and raw mouse motion is enabled. + example: [] + syntax: + content: 'public class RawMouseMoveEventArgs : WindowEventArgs' + content.vb: Public Class RawMouseMoveEventArgs Inherits WindowEventArgs + inheritance: + - System.Object + - System.EventArgs + - OpenTK.Platform.WindowEventArgs + inheritedMembers: + - OpenTK.Platform.WindowEventArgs.Window + - System.EventArgs.Empty + - System.Object.Equals(System.Object) + - System.Object.Equals(System.Object,System.Object) + - System.Object.GetHashCode + - System.Object.GetType + - System.Object.MemberwiseClone + - System.Object.ReferenceEquals(System.Object,System.Object) + - System.Object.ToString +- uid: OpenTK.Platform.RawMouseMoveEventArgs.Delta + commentId: P:OpenTK.Platform.RawMouseMoveEventArgs.Delta + id: Delta + parent: OpenTK.Platform.RawMouseMoveEventArgs + langs: + - csharp + - vb + name: Delta + nameWithType: RawMouseMoveEventArgs.Delta + fullName: OpenTK.Platform.RawMouseMoveEventArgs.Delta + type: Property + source: + id: Delta + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\WindowEventArgs.cs + startLine: 439 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: >- + The unscaled movement value of the mouse. + + Positive X and Y deltas indicate a right and down movement, while + + negative X and Y deltas indicate a left and up movement. + + The absolute values of this property will be different between different hardware. + example: [] + syntax: + content: public Vector2 Delta { get; } + parameters: [] + return: + type: OpenTK.Mathematics.Vector2 + content.vb: Public Property Delta As Vector2 + overload: OpenTK.Platform.RawMouseMoveEventArgs.Delta* +- uid: OpenTK.Platform.RawMouseMoveEventArgs.#ctor(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2) + commentId: M:OpenTK.Platform.RawMouseMoveEventArgs.#ctor(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2) + id: '#ctor(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2)' + parent: OpenTK.Platform.RawMouseMoveEventArgs + langs: + - csharp + - vb + name: RawMouseMoveEventArgs(WindowHandle, Vector2) + nameWithType: RawMouseMoveEventArgs.RawMouseMoveEventArgs(WindowHandle, Vector2) + fullName: OpenTK.Platform.RawMouseMoveEventArgs.RawMouseMoveEventArgs(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2) + type: Constructor + source: + id: .ctor + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\WindowEventArgs.cs + startLine: 446 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Initializes a new instance of the class. + example: [] + syntax: + content: public RawMouseMoveEventArgs(WindowHandle window, Vector2 delta) + parameters: + - id: window + type: OpenTK.Platform.WindowHandle + description: The window in which the mouse moved. + - id: delta + type: OpenTK.Mathematics.Vector2 + description: The raw mouse delta. + content.vb: Public Sub New(window As WindowHandle, delta As Vector2) + overload: OpenTK.Platform.RawMouseMoveEventArgs.#ctor* + nameWithType.vb: RawMouseMoveEventArgs.New(WindowHandle, Vector2) + fullName.vb: OpenTK.Platform.RawMouseMoveEventArgs.New(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2) + name.vb: New(WindowHandle, Vector2) +references: +- uid: OpenTK.Platform + commentId: N:OpenTK.Platform + href: OpenTK.html + name: OpenTK.Platform + nameWithType: OpenTK.Platform + fullName: OpenTK.Platform + spec.csharp: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Platform + name: Platform + href: OpenTK.Platform.html + spec.vb: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Platform + name: Platform + href: OpenTK.Platform.html +- uid: System.Object + commentId: T:System.Object + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + name: object + nameWithType: object + fullName: object + nameWithType.vb: Object + fullName.vb: Object + name.vb: Object +- uid: System.EventArgs + commentId: T:System.EventArgs + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.eventargs + name: EventArgs + nameWithType: EventArgs + fullName: System.EventArgs +- uid: OpenTK.Platform.WindowEventArgs + commentId: T:OpenTK.Platform.WindowEventArgs + parent: OpenTK.Platform + href: OpenTK.Platform.WindowEventArgs.html + name: WindowEventArgs + nameWithType: WindowEventArgs + fullName: OpenTK.Platform.WindowEventArgs +- uid: OpenTK.Platform.WindowEventArgs.Window + commentId: P:OpenTK.Platform.WindowEventArgs.Window + parent: OpenTK.Platform.WindowEventArgs + href: OpenTK.Platform.WindowEventArgs.html#OpenTK_Platform_WindowEventArgs_Window + name: Window + nameWithType: WindowEventArgs.Window + fullName: OpenTK.Platform.WindowEventArgs.Window +- uid: System.EventArgs.Empty + commentId: F:System.EventArgs.Empty + parent: System.EventArgs + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.eventargs.empty + name: Empty + nameWithType: EventArgs.Empty + fullName: System.EventArgs.Empty +- uid: System.Object.Equals(System.Object) + commentId: M:System.Object.Equals(System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + name: Equals(object) + nameWithType: object.Equals(object) + fullName: object.Equals(object) + nameWithType.vb: Object.Equals(Object) + fullName.vb: Object.Equals(Object) + name.vb: Equals(Object) + spec.csharp: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.Equals(System.Object,System.Object) + commentId: M:System.Object.Equals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + name: Equals(object, object) + nameWithType: object.Equals(object, object) + fullName: object.Equals(object, object) + nameWithType.vb: Object.Equals(Object, Object) + fullName.vb: Object.Equals(Object, Object) + name.vb: Equals(Object, Object) + spec.csharp: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.GetHashCode + commentId: M:System.Object.GetHashCode + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + name: GetHashCode() + nameWithType: object.GetHashCode() + fullName: object.GetHashCode() + nameWithType.vb: Object.GetHashCode() + fullName.vb: Object.GetHashCode() + spec.csharp: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) +- uid: System.Object.GetType + commentId: M:System.Object.GetType + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + name: GetType() + nameWithType: object.GetType() + fullName: object.GetType() + nameWithType.vb: Object.GetType() + fullName.vb: Object.GetType() + spec.csharp: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) +- uid: System.Object.MemberwiseClone + commentId: M:System.Object.MemberwiseClone + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + name: MemberwiseClone() + nameWithType: object.MemberwiseClone() + fullName: object.MemberwiseClone() + nameWithType.vb: Object.MemberwiseClone() + fullName.vb: Object.MemberwiseClone() + spec.csharp: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) + spec.vb: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) +- uid: System.Object.ReferenceEquals(System.Object,System.Object) + commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + name: ReferenceEquals(object, object) + nameWithType: object.ReferenceEquals(object, object) + fullName: object.ReferenceEquals(object, object) + nameWithType.vb: Object.ReferenceEquals(Object, Object) + fullName.vb: Object.ReferenceEquals(Object, Object) + name.vb: ReferenceEquals(Object, Object) + spec.csharp: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.ToString + commentId: M:System.Object.ToString + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + name: ToString() + nameWithType: object.ToString() + fullName: object.ToString() + nameWithType.vb: Object.ToString() + fullName.vb: Object.ToString() + spec.csharp: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) + spec.vb: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) +- uid: System + commentId: N:System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System + nameWithType: System + fullName: System +- uid: OpenTK.Platform.RawMouseMoveEventArgs.Delta* + commentId: Overload:OpenTK.Platform.RawMouseMoveEventArgs.Delta + href: OpenTK.Platform.RawMouseMoveEventArgs.html#OpenTK_Platform_RawMouseMoveEventArgs_Delta + name: Delta + nameWithType: RawMouseMoveEventArgs.Delta + fullName: OpenTK.Platform.RawMouseMoveEventArgs.Delta +- uid: OpenTK.Mathematics.Vector2 + commentId: T:OpenTK.Mathematics.Vector2 + parent: OpenTK.Mathematics + href: OpenTK.Mathematics.Vector2.html + name: Vector2 + nameWithType: Vector2 + fullName: OpenTK.Mathematics.Vector2 +- uid: OpenTK.Mathematics + commentId: N:OpenTK.Mathematics + href: OpenTK.html + name: OpenTK.Mathematics + nameWithType: OpenTK.Mathematics + fullName: OpenTK.Mathematics + spec.csharp: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Mathematics + name: Mathematics + href: OpenTK.Mathematics.html + spec.vb: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Mathematics + name: Mathematics + href: OpenTK.Mathematics.html +- uid: OpenTK.Platform.RawMouseMoveEventArgs + commentId: T:OpenTK.Platform.RawMouseMoveEventArgs + href: OpenTK.Platform.RawMouseMoveEventArgs.html + name: RawMouseMoveEventArgs + nameWithType: RawMouseMoveEventArgs + fullName: OpenTK.Platform.RawMouseMoveEventArgs +- uid: OpenTK.Platform.RawMouseMoveEventArgs.#ctor* + commentId: Overload:OpenTK.Platform.RawMouseMoveEventArgs.#ctor + href: OpenTK.Platform.RawMouseMoveEventArgs.html#OpenTK_Platform_RawMouseMoveEventArgs__ctor_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2_ + name: RawMouseMoveEventArgs + nameWithType: RawMouseMoveEventArgs.RawMouseMoveEventArgs + fullName: OpenTK.Platform.RawMouseMoveEventArgs.RawMouseMoveEventArgs + nameWithType.vb: RawMouseMoveEventArgs.New + fullName.vb: OpenTK.Platform.RawMouseMoveEventArgs.New + name.vb: New +- uid: OpenTK.Platform.WindowHandle + commentId: T:OpenTK.Platform.WindowHandle + parent: OpenTK.Platform + href: OpenTK.Platform.WindowHandle.html + name: WindowHandle + nameWithType: WindowHandle + fullName: OpenTK.Platform.WindowHandle diff --git a/api/OpenTK.Platform.SaveDialogOptions.yml b/api/OpenTK.Platform.SaveDialogOptions.yml new file mode 100644 index 00000000..848b7348 --- /dev/null +++ b/api/OpenTK.Platform.SaveDialogOptions.yml @@ -0,0 +1,59 @@ +### YamlMime:ManagedReference +items: +- uid: OpenTK.Platform.SaveDialogOptions + commentId: T:OpenTK.Platform.SaveDialogOptions + id: SaveDialogOptions + parent: OpenTK.Platform + children: [] + langs: + - csharp + - vb + name: SaveDialogOptions + nameWithType: SaveDialogOptions + fullName: OpenTK.Platform.SaveDialogOptions + type: Enum + source: + id: SaveDialogOptions + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\SaveDialogOptions.cs + startLine: 11 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Options for save dialogs. + example: [] + syntax: + content: >- + [Flags] + + public enum SaveDialogOptions + content.vb: >- + + + Public Enum SaveDialogOptions + attributes: + - type: System.FlagsAttribute + ctor: System.FlagsAttribute.#ctor + arguments: [] +references: +- uid: OpenTK.Platform + commentId: N:OpenTK.Platform + href: OpenTK.html + name: OpenTK.Platform + nameWithType: OpenTK.Platform + fullName: OpenTK.Platform + spec.csharp: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Platform + name: Platform + href: OpenTK.Platform.html + spec.vb: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Platform + name: Platform + href: OpenTK.Platform.html diff --git a/api/OpenTK.Platform.Scancode.yml b/api/OpenTK.Platform.Scancode.yml new file mode 100644 index 00000000..5f0da151 --- /dev/null +++ b/api/OpenTK.Platform.Scancode.yml @@ -0,0 +1,3303 @@ +### YamlMime:ManagedReference +items: +- uid: OpenTK.Platform.Scancode + commentId: T:OpenTK.Platform.Scancode + id: Scancode + parent: OpenTK.Platform + children: + - OpenTK.Platform.Scancode.A + - OpenTK.Platform.Scancode.Application + - OpenTK.Platform.Scancode.B + - OpenTK.Platform.Scancode.Backspace + - OpenTK.Platform.Scancode.C + - OpenTK.Platform.Scancode.CapsLock + - OpenTK.Platform.Scancode.Comma + - OpenTK.Platform.Scancode.D + - OpenTK.Platform.Scancode.D0 + - OpenTK.Platform.Scancode.D1 + - OpenTK.Platform.Scancode.D2 + - OpenTK.Platform.Scancode.D3 + - OpenTK.Platform.Scancode.D4 + - OpenTK.Platform.Scancode.D5 + - OpenTK.Platform.Scancode.D6 + - OpenTK.Platform.Scancode.D7 + - OpenTK.Platform.Scancode.D8 + - OpenTK.Platform.Scancode.D9 + - OpenTK.Platform.Scancode.Dash + - OpenTK.Platform.Scancode.Delete + - OpenTK.Platform.Scancode.DownArrow + - OpenTK.Platform.Scancode.E + - OpenTK.Platform.Scancode.End + - OpenTK.Platform.Scancode.Equals + - OpenTK.Platform.Scancode.Escape + - OpenTK.Platform.Scancode.F + - OpenTK.Platform.Scancode.F1 + - OpenTK.Platform.Scancode.F10 + - OpenTK.Platform.Scancode.F11 + - OpenTK.Platform.Scancode.F12 + - OpenTK.Platform.Scancode.F13 + - OpenTK.Platform.Scancode.F14 + - OpenTK.Platform.Scancode.F15 + - OpenTK.Platform.Scancode.F16 + - OpenTK.Platform.Scancode.F17 + - OpenTK.Platform.Scancode.F18 + - OpenTK.Platform.Scancode.F19 + - OpenTK.Platform.Scancode.F2 + - OpenTK.Platform.Scancode.F20 + - OpenTK.Platform.Scancode.F21 + - OpenTK.Platform.Scancode.F22 + - OpenTK.Platform.Scancode.F23 + - OpenTK.Platform.Scancode.F24 + - OpenTK.Platform.Scancode.F3 + - OpenTK.Platform.Scancode.F4 + - OpenTK.Platform.Scancode.F5 + - OpenTK.Platform.Scancode.F6 + - OpenTK.Platform.Scancode.F7 + - OpenTK.Platform.Scancode.F8 + - OpenTK.Platform.Scancode.F9 + - OpenTK.Platform.Scancode.G + - OpenTK.Platform.Scancode.GraveAccent + - OpenTK.Platform.Scancode.H + - OpenTK.Platform.Scancode.Home + - OpenTK.Platform.Scancode.I + - OpenTK.Platform.Scancode.Insert + - OpenTK.Platform.Scancode.International1 + - OpenTK.Platform.Scancode.International2 + - OpenTK.Platform.Scancode.International3 + - OpenTK.Platform.Scancode.International4 + - OpenTK.Platform.Scancode.International5 + - OpenTK.Platform.Scancode.International6 + - OpenTK.Platform.Scancode.J + - OpenTK.Platform.Scancode.K + - OpenTK.Platform.Scancode.Keypad0 + - OpenTK.Platform.Scancode.Keypad1 + - OpenTK.Platform.Scancode.Keypad2 + - OpenTK.Platform.Scancode.Keypad3 + - OpenTK.Platform.Scancode.Keypad4 + - OpenTK.Platform.Scancode.Keypad5 + - OpenTK.Platform.Scancode.Keypad6 + - OpenTK.Platform.Scancode.Keypad7 + - OpenTK.Platform.Scancode.Keypad8 + - OpenTK.Platform.Scancode.Keypad9 + - OpenTK.Platform.Scancode.KeypadComma + - OpenTK.Platform.Scancode.KeypadDash + - OpenTK.Platform.Scancode.KeypadEnter + - OpenTK.Platform.Scancode.KeypadEquals + - OpenTK.Platform.Scancode.KeypadForwardSlash + - OpenTK.Platform.Scancode.KeypadPeriod + - OpenTK.Platform.Scancode.KeypadPlus + - OpenTK.Platform.Scancode.KeypadStar + - OpenTK.Platform.Scancode.L + - OpenTK.Platform.Scancode.LANG1 + - OpenTK.Platform.Scancode.LANG2 + - OpenTK.Platform.Scancode.LANG3 + - OpenTK.Platform.Scancode.LANG4 + - OpenTK.Platform.Scancode.LANG5 + - OpenTK.Platform.Scancode.LeftAlt + - OpenTK.Platform.Scancode.LeftApostrophe + - OpenTK.Platform.Scancode.LeftArrow + - OpenTK.Platform.Scancode.LeftBrace + - OpenTK.Platform.Scancode.LeftControl + - OpenTK.Platform.Scancode.LeftGUI + - OpenTK.Platform.Scancode.LeftShift + - OpenTK.Platform.Scancode.M + - OpenTK.Platform.Scancode.Mute + - OpenTK.Platform.Scancode.N + - OpenTK.Platform.Scancode.NonUSSlashBar + - OpenTK.Platform.Scancode.NumLock + - OpenTK.Platform.Scancode.O + - OpenTK.Platform.Scancode.P + - OpenTK.Platform.Scancode.PageDown + - OpenTK.Platform.Scancode.PageUp + - OpenTK.Platform.Scancode.Pause + - OpenTK.Platform.Scancode.Period + - OpenTK.Platform.Scancode.Pipe + - OpenTK.Platform.Scancode.PlayPause + - OpenTK.Platform.Scancode.PrintScreen + - OpenTK.Platform.Scancode.Q + - OpenTK.Platform.Scancode.QuestionMark + - OpenTK.Platform.Scancode.R + - OpenTK.Platform.Scancode.Return + - OpenTK.Platform.Scancode.RightAlt + - OpenTK.Platform.Scancode.RightArrow + - OpenTK.Platform.Scancode.RightBrace + - OpenTK.Platform.Scancode.RightControl + - OpenTK.Platform.Scancode.RightGUI + - OpenTK.Platform.Scancode.RightShift + - OpenTK.Platform.Scancode.S + - OpenTK.Platform.Scancode.ScanNextTrack + - OpenTK.Platform.Scancode.ScanPreviousTrack + - OpenTK.Platform.Scancode.ScrollLock + - OpenTK.Platform.Scancode.SemiColon + - OpenTK.Platform.Scancode.Spacebar + - OpenTK.Platform.Scancode.Stop + - OpenTK.Platform.Scancode.SystemPowerDown + - OpenTK.Platform.Scancode.SystemSleep + - OpenTK.Platform.Scancode.SystemWakeUp + - OpenTK.Platform.Scancode.T + - OpenTK.Platform.Scancode.Tab + - OpenTK.Platform.Scancode.U + - OpenTK.Platform.Scancode.Unknown + - OpenTK.Platform.Scancode.UpArrow + - OpenTK.Platform.Scancode.V + - OpenTK.Platform.Scancode.VolumeDecrement + - OpenTK.Platform.Scancode.VolumeIncrement + - OpenTK.Platform.Scancode.W + - OpenTK.Platform.Scancode.X + - OpenTK.Platform.Scancode.Y + - OpenTK.Platform.Scancode.Z + langs: + - csharp + - vb + name: Scancode + nameWithType: Scancode + fullName: OpenTK.Platform.Scancode + type: Enum + source: + id: Scancode + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Scancode.cs + startLine: 8 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: public enum Scancode + content.vb: Public Enum Scancode +- uid: OpenTK.Platform.Scancode.Unknown + commentId: F:OpenTK.Platform.Scancode.Unknown + id: Unknown + parent: OpenTK.Platform.Scancode + langs: + - csharp + - vb + name: Unknown + nameWithType: Scancode.Unknown + fullName: OpenTK.Platform.Scancode.Unknown + type: Field + source: + id: Unknown + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Scancode.cs + startLine: 14 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: Unknown = 0 + return: + type: OpenTK.Platform.Scancode +- uid: OpenTK.Platform.Scancode.A + commentId: F:OpenTK.Platform.Scancode.A + id: A + parent: OpenTK.Platform.Scancode + langs: + - csharp + - vb + name: A + nameWithType: Scancode.A + fullName: OpenTK.Platform.Scancode.A + type: Field + source: + id: A + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Scancode.cs + startLine: 16 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: A = 1 + return: + type: OpenTK.Platform.Scancode +- uid: OpenTK.Platform.Scancode.B + commentId: F:OpenTK.Platform.Scancode.B + id: B + parent: OpenTK.Platform.Scancode + langs: + - csharp + - vb + name: B + nameWithType: Scancode.B + fullName: OpenTK.Platform.Scancode.B + type: Field + source: + id: B + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Scancode.cs + startLine: 16 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: B = 2 + return: + type: OpenTK.Platform.Scancode +- uid: OpenTK.Platform.Scancode.C + commentId: F:OpenTK.Platform.Scancode.C + id: C + parent: OpenTK.Platform.Scancode + langs: + - csharp + - vb + name: C + nameWithType: Scancode.C + fullName: OpenTK.Platform.Scancode.C + type: Field + source: + id: C + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Scancode.cs + startLine: 16 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: C = 3 + return: + type: OpenTK.Platform.Scancode +- uid: OpenTK.Platform.Scancode.D + commentId: F:OpenTK.Platform.Scancode.D + id: D + parent: OpenTK.Platform.Scancode + langs: + - csharp + - vb + name: D + nameWithType: Scancode.D + fullName: OpenTK.Platform.Scancode.D + type: Field + source: + id: D + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Scancode.cs + startLine: 16 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: D = 4 + return: + type: OpenTK.Platform.Scancode +- uid: OpenTK.Platform.Scancode.E + commentId: F:OpenTK.Platform.Scancode.E + id: E + parent: OpenTK.Platform.Scancode + langs: + - csharp + - vb + name: E + nameWithType: Scancode.E + fullName: OpenTK.Platform.Scancode.E + type: Field + source: + id: E + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Scancode.cs + startLine: 16 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: E = 5 + return: + type: OpenTK.Platform.Scancode +- uid: OpenTK.Platform.Scancode.F + commentId: F:OpenTK.Platform.Scancode.F + id: F + parent: OpenTK.Platform.Scancode + langs: + - csharp + - vb + name: F + nameWithType: Scancode.F + fullName: OpenTK.Platform.Scancode.F + type: Field + source: + id: F + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Scancode.cs + startLine: 16 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: F = 6 + return: + type: OpenTK.Platform.Scancode +- uid: OpenTK.Platform.Scancode.G + commentId: F:OpenTK.Platform.Scancode.G + id: G + parent: OpenTK.Platform.Scancode + langs: + - csharp + - vb + name: G + nameWithType: Scancode.G + fullName: OpenTK.Platform.Scancode.G + type: Field + source: + id: G + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Scancode.cs + startLine: 16 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: G = 7 + return: + type: OpenTK.Platform.Scancode +- uid: OpenTK.Platform.Scancode.H + commentId: F:OpenTK.Platform.Scancode.H + id: H + parent: OpenTK.Platform.Scancode + langs: + - csharp + - vb + name: H + nameWithType: Scancode.H + fullName: OpenTK.Platform.Scancode.H + type: Field + source: + id: H + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Scancode.cs + startLine: 16 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: H = 8 + return: + type: OpenTK.Platform.Scancode +- uid: OpenTK.Platform.Scancode.I + commentId: F:OpenTK.Platform.Scancode.I + id: I + parent: OpenTK.Platform.Scancode + langs: + - csharp + - vb + name: I + nameWithType: Scancode.I + fullName: OpenTK.Platform.Scancode.I + type: Field + source: + id: I + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Scancode.cs + startLine: 16 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: I = 9 + return: + type: OpenTK.Platform.Scancode +- uid: OpenTK.Platform.Scancode.J + commentId: F:OpenTK.Platform.Scancode.J + id: J + parent: OpenTK.Platform.Scancode + langs: + - csharp + - vb + name: J + nameWithType: Scancode.J + fullName: OpenTK.Platform.Scancode.J + type: Field + source: + id: J + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Scancode.cs + startLine: 16 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: J = 10 + return: + type: OpenTK.Platform.Scancode +- uid: OpenTK.Platform.Scancode.K + commentId: F:OpenTK.Platform.Scancode.K + id: K + parent: OpenTK.Platform.Scancode + langs: + - csharp + - vb + name: K + nameWithType: Scancode.K + fullName: OpenTK.Platform.Scancode.K + type: Field + source: + id: K + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Scancode.cs + startLine: 16 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: K = 11 + return: + type: OpenTK.Platform.Scancode +- uid: OpenTK.Platform.Scancode.L + commentId: F:OpenTK.Platform.Scancode.L + id: L + parent: OpenTK.Platform.Scancode + langs: + - csharp + - vb + name: L + nameWithType: Scancode.L + fullName: OpenTK.Platform.Scancode.L + type: Field + source: + id: L + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Scancode.cs + startLine: 16 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: L = 12 + return: + type: OpenTK.Platform.Scancode +- uid: OpenTK.Platform.Scancode.M + commentId: F:OpenTK.Platform.Scancode.M + id: M + parent: OpenTK.Platform.Scancode + langs: + - csharp + - vb + name: M + nameWithType: Scancode.M + fullName: OpenTK.Platform.Scancode.M + type: Field + source: + id: M + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Scancode.cs + startLine: 16 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: M = 13 + return: + type: OpenTK.Platform.Scancode +- uid: OpenTK.Platform.Scancode.N + commentId: F:OpenTK.Platform.Scancode.N + id: N + parent: OpenTK.Platform.Scancode + langs: + - csharp + - vb + name: N + nameWithType: Scancode.N + fullName: OpenTK.Platform.Scancode.N + type: Field + source: + id: N + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Scancode.cs + startLine: 16 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: N = 14 + return: + type: OpenTK.Platform.Scancode +- uid: OpenTK.Platform.Scancode.O + commentId: F:OpenTK.Platform.Scancode.O + id: O + parent: OpenTK.Platform.Scancode + langs: + - csharp + - vb + name: O + nameWithType: Scancode.O + fullName: OpenTK.Platform.Scancode.O + type: Field + source: + id: O + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Scancode.cs + startLine: 16 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: O = 15 + return: + type: OpenTK.Platform.Scancode +- uid: OpenTK.Platform.Scancode.P + commentId: F:OpenTK.Platform.Scancode.P + id: P + parent: OpenTK.Platform.Scancode + langs: + - csharp + - vb + name: P + nameWithType: Scancode.P + fullName: OpenTK.Platform.Scancode.P + type: Field + source: + id: P + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Scancode.cs + startLine: 16 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: P = 16 + return: + type: OpenTK.Platform.Scancode +- uid: OpenTK.Platform.Scancode.Q + commentId: F:OpenTK.Platform.Scancode.Q + id: Q + parent: OpenTK.Platform.Scancode + langs: + - csharp + - vb + name: Q + nameWithType: Scancode.Q + fullName: OpenTK.Platform.Scancode.Q + type: Field + source: + id: Q + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Scancode.cs + startLine: 16 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: Q = 17 + return: + type: OpenTK.Platform.Scancode +- uid: OpenTK.Platform.Scancode.R + commentId: F:OpenTK.Platform.Scancode.R + id: R + parent: OpenTK.Platform.Scancode + langs: + - csharp + - vb + name: R + nameWithType: Scancode.R + fullName: OpenTK.Platform.Scancode.R + type: Field + source: + id: R + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Scancode.cs + startLine: 16 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: R = 18 + return: + type: OpenTK.Platform.Scancode +- uid: OpenTK.Platform.Scancode.S + commentId: F:OpenTK.Platform.Scancode.S + id: S + parent: OpenTK.Platform.Scancode + langs: + - csharp + - vb + name: S + nameWithType: Scancode.S + fullName: OpenTK.Platform.Scancode.S + type: Field + source: + id: S + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Scancode.cs + startLine: 16 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: S = 19 + return: + type: OpenTK.Platform.Scancode +- uid: OpenTK.Platform.Scancode.T + commentId: F:OpenTK.Platform.Scancode.T + id: T + parent: OpenTK.Platform.Scancode + langs: + - csharp + - vb + name: T + nameWithType: Scancode.T + fullName: OpenTK.Platform.Scancode.T + type: Field + source: + id: T + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Scancode.cs + startLine: 16 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: T = 20 + return: + type: OpenTK.Platform.Scancode +- uid: OpenTK.Platform.Scancode.U + commentId: F:OpenTK.Platform.Scancode.U + id: U + parent: OpenTK.Platform.Scancode + langs: + - csharp + - vb + name: U + nameWithType: Scancode.U + fullName: OpenTK.Platform.Scancode.U + type: Field + source: + id: U + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Scancode.cs + startLine: 16 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: U = 21 + return: + type: OpenTK.Platform.Scancode +- uid: OpenTK.Platform.Scancode.V + commentId: F:OpenTK.Platform.Scancode.V + id: V + parent: OpenTK.Platform.Scancode + langs: + - csharp + - vb + name: V + nameWithType: Scancode.V + fullName: OpenTK.Platform.Scancode.V + type: Field + source: + id: V + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Scancode.cs + startLine: 16 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: V = 22 + return: + type: OpenTK.Platform.Scancode +- uid: OpenTK.Platform.Scancode.W + commentId: F:OpenTK.Platform.Scancode.W + id: W + parent: OpenTK.Platform.Scancode + langs: + - csharp + - vb + name: W + nameWithType: Scancode.W + fullName: OpenTK.Platform.Scancode.W + type: Field + source: + id: W + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Scancode.cs + startLine: 16 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: W = 23 + return: + type: OpenTK.Platform.Scancode +- uid: OpenTK.Platform.Scancode.X + commentId: F:OpenTK.Platform.Scancode.X + id: X + parent: OpenTK.Platform.Scancode + langs: + - csharp + - vb + name: X + nameWithType: Scancode.X + fullName: OpenTK.Platform.Scancode.X + type: Field + source: + id: X + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Scancode.cs + startLine: 16 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: X = 24 + return: + type: OpenTK.Platform.Scancode +- uid: OpenTK.Platform.Scancode.Y + commentId: F:OpenTK.Platform.Scancode.Y + id: Y + parent: OpenTK.Platform.Scancode + langs: + - csharp + - vb + name: Y + nameWithType: Scancode.Y + fullName: OpenTK.Platform.Scancode.Y + type: Field + source: + id: Y + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Scancode.cs + startLine: 16 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: Y = 25 + return: + type: OpenTK.Platform.Scancode +- uid: OpenTK.Platform.Scancode.Z + commentId: F:OpenTK.Platform.Scancode.Z + id: Z + parent: OpenTK.Platform.Scancode + langs: + - csharp + - vb + name: Z + nameWithType: Scancode.Z + fullName: OpenTK.Platform.Scancode.Z + type: Field + source: + id: Z + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Scancode.cs + startLine: 16 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: Z = 26 + return: + type: OpenTK.Platform.Scancode +- uid: OpenTK.Platform.Scancode.D1 + commentId: F:OpenTK.Platform.Scancode.D1 + id: D1 + parent: OpenTK.Platform.Scancode + langs: + - csharp + - vb + name: D1 + nameWithType: Scancode.D1 + fullName: OpenTK.Platform.Scancode.D1 + type: Field + source: + id: D1 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Scancode.cs + startLine: 18 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: D1 = 27 + return: + type: OpenTK.Platform.Scancode +- uid: OpenTK.Platform.Scancode.D2 + commentId: F:OpenTK.Platform.Scancode.D2 + id: D2 + parent: OpenTK.Platform.Scancode + langs: + - csharp + - vb + name: D2 + nameWithType: Scancode.D2 + fullName: OpenTK.Platform.Scancode.D2 + type: Field + source: + id: D2 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Scancode.cs + startLine: 18 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: D2 = 28 + return: + type: OpenTK.Platform.Scancode +- uid: OpenTK.Platform.Scancode.D3 + commentId: F:OpenTK.Platform.Scancode.D3 + id: D3 + parent: OpenTK.Platform.Scancode + langs: + - csharp + - vb + name: D3 + nameWithType: Scancode.D3 + fullName: OpenTK.Platform.Scancode.D3 + type: Field + source: + id: D3 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Scancode.cs + startLine: 18 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: D3 = 29 + return: + type: OpenTK.Platform.Scancode +- uid: OpenTK.Platform.Scancode.D4 + commentId: F:OpenTK.Platform.Scancode.D4 + id: D4 + parent: OpenTK.Platform.Scancode + langs: + - csharp + - vb + name: D4 + nameWithType: Scancode.D4 + fullName: OpenTK.Platform.Scancode.D4 + type: Field + source: + id: D4 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Scancode.cs + startLine: 18 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: D4 = 30 + return: + type: OpenTK.Platform.Scancode +- uid: OpenTK.Platform.Scancode.D5 + commentId: F:OpenTK.Platform.Scancode.D5 + id: D5 + parent: OpenTK.Platform.Scancode + langs: + - csharp + - vb + name: D5 + nameWithType: Scancode.D5 + fullName: OpenTK.Platform.Scancode.D5 + type: Field + source: + id: D5 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Scancode.cs + startLine: 18 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: D5 = 31 + return: + type: OpenTK.Platform.Scancode +- uid: OpenTK.Platform.Scancode.D6 + commentId: F:OpenTK.Platform.Scancode.D6 + id: D6 + parent: OpenTK.Platform.Scancode + langs: + - csharp + - vb + name: D6 + nameWithType: Scancode.D6 + fullName: OpenTK.Platform.Scancode.D6 + type: Field + source: + id: D6 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Scancode.cs + startLine: 18 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: D6 = 32 + return: + type: OpenTK.Platform.Scancode +- uid: OpenTK.Platform.Scancode.D7 + commentId: F:OpenTK.Platform.Scancode.D7 + id: D7 + parent: OpenTK.Platform.Scancode + langs: + - csharp + - vb + name: D7 + nameWithType: Scancode.D7 + fullName: OpenTK.Platform.Scancode.D7 + type: Field + source: + id: D7 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Scancode.cs + startLine: 18 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: D7 = 33 + return: + type: OpenTK.Platform.Scancode +- uid: OpenTK.Platform.Scancode.D8 + commentId: F:OpenTK.Platform.Scancode.D8 + id: D8 + parent: OpenTK.Platform.Scancode + langs: + - csharp + - vb + name: D8 + nameWithType: Scancode.D8 + fullName: OpenTK.Platform.Scancode.D8 + type: Field + source: + id: D8 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Scancode.cs + startLine: 18 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: D8 = 34 + return: + type: OpenTK.Platform.Scancode +- uid: OpenTK.Platform.Scancode.D9 + commentId: F:OpenTK.Platform.Scancode.D9 + id: D9 + parent: OpenTK.Platform.Scancode + langs: + - csharp + - vb + name: D9 + nameWithType: Scancode.D9 + fullName: OpenTK.Platform.Scancode.D9 + type: Field + source: + id: D9 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Scancode.cs + startLine: 18 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: D9 = 35 + return: + type: OpenTK.Platform.Scancode +- uid: OpenTK.Platform.Scancode.D0 + commentId: F:OpenTK.Platform.Scancode.D0 + id: D0 + parent: OpenTK.Platform.Scancode + langs: + - csharp + - vb + name: D0 + nameWithType: Scancode.D0 + fullName: OpenTK.Platform.Scancode.D0 + type: Field + source: + id: D0 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Scancode.cs + startLine: 18 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: D0 = 36 + return: + type: OpenTK.Platform.Scancode +- uid: OpenTK.Platform.Scancode.Return + commentId: F:OpenTK.Platform.Scancode.Return + id: Return + parent: OpenTK.Platform.Scancode + langs: + - csharp + - vb + name: Return + nameWithType: Scancode.Return + fullName: OpenTK.Platform.Scancode.Return + type: Field + source: + id: Return + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Scancode.cs + startLine: 20 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: Return = 37 + return: + type: OpenTK.Platform.Scancode +- uid: OpenTK.Platform.Scancode.Escape + commentId: F:OpenTK.Platform.Scancode.Escape + id: Escape + parent: OpenTK.Platform.Scancode + langs: + - csharp + - vb + name: Escape + nameWithType: Scancode.Escape + fullName: OpenTK.Platform.Scancode.Escape + type: Field + source: + id: Escape + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Scancode.cs + startLine: 21 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: Escape = 38 + return: + type: OpenTK.Platform.Scancode +- uid: OpenTK.Platform.Scancode.Backspace + commentId: F:OpenTK.Platform.Scancode.Backspace + id: Backspace + parent: OpenTK.Platform.Scancode + langs: + - csharp + - vb + name: Backspace + nameWithType: Scancode.Backspace + fullName: OpenTK.Platform.Scancode.Backspace + type: Field + source: + id: Backspace + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Scancode.cs + startLine: 24 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Delete. + example: [] + syntax: + content: Backspace = 39 + return: + type: OpenTK.Platform.Scancode +- uid: OpenTK.Platform.Scancode.Tab + commentId: F:OpenTK.Platform.Scancode.Tab + id: Tab + parent: OpenTK.Platform.Scancode + langs: + - csharp + - vb + name: Tab + nameWithType: Scancode.Tab + fullName: OpenTK.Platform.Scancode.Tab + type: Field + source: + id: Tab + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Scancode.cs + startLine: 25 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: Tab = 40 + return: + type: OpenTK.Platform.Scancode +- uid: OpenTK.Platform.Scancode.Spacebar + commentId: F:OpenTK.Platform.Scancode.Spacebar + id: Spacebar + parent: OpenTK.Platform.Scancode + langs: + - csharp + - vb + name: Spacebar + nameWithType: Scancode.Spacebar + fullName: OpenTK.Platform.Scancode.Spacebar + type: Field + source: + id: Spacebar + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Scancode.cs + startLine: 26 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: Spacebar = 41 + return: + type: OpenTK.Platform.Scancode +- uid: OpenTK.Platform.Scancode.Dash + commentId: F:OpenTK.Platform.Scancode.Dash + id: Dash + parent: OpenTK.Platform.Scancode + langs: + - csharp + - vb + name: Dash + nameWithType: Scancode.Dash + fullName: OpenTK.Platform.Scancode.Dash + type: Field + source: + id: Dash + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Scancode.cs + startLine: 29 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Dash and Underscore. + example: [] + syntax: + content: Dash = 42 + return: + type: OpenTK.Platform.Scancode +- uid: OpenTK.Platform.Scancode.Equals + commentId: F:OpenTK.Platform.Scancode.Equals + id: Equals + parent: OpenTK.Platform.Scancode + langs: + - csharp + - vb + name: Equals + nameWithType: Scancode.Equals + fullName: OpenTK.Platform.Scancode.Equals + type: Field + source: + id: Equals + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Scancode.cs + startLine: 30 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: Equals = 43 + return: + type: OpenTK.Platform.Scancode +- uid: OpenTK.Platform.Scancode.LeftBrace + commentId: F:OpenTK.Platform.Scancode.LeftBrace + id: LeftBrace + parent: OpenTK.Platform.Scancode + langs: + - csharp + - vb + name: LeftBrace + nameWithType: Scancode.LeftBrace + fullName: OpenTK.Platform.Scancode.LeftBrace + type: Field + source: + id: LeftBrace + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Scancode.cs + startLine: 31 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: LeftBrace = 44 + return: + type: OpenTK.Platform.Scancode +- uid: OpenTK.Platform.Scancode.RightBrace + commentId: F:OpenTK.Platform.Scancode.RightBrace + id: RightBrace + parent: OpenTK.Platform.Scancode + langs: + - csharp + - vb + name: RightBrace + nameWithType: Scancode.RightBrace + fullName: OpenTK.Platform.Scancode.RightBrace + type: Field + source: + id: RightBrace + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Scancode.cs + startLine: 32 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: RightBrace = 45 + return: + type: OpenTK.Platform.Scancode +- uid: OpenTK.Platform.Scancode.Pipe + commentId: F:OpenTK.Platform.Scancode.Pipe + id: Pipe + parent: OpenTK.Platform.Scancode + langs: + - csharp + - vb + name: Pipe + nameWithType: Scancode.Pipe + fullName: OpenTK.Platform.Scancode.Pipe + type: Field + source: + id: Pipe + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Scancode.cs + startLine: 35 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Pipe and Slash, NonUS. + example: [] + syntax: + content: Pipe = 46 + return: + type: OpenTK.Platform.Scancode +- uid: OpenTK.Platform.Scancode.SemiColon + commentId: F:OpenTK.Platform.Scancode.SemiColon + id: SemiColon + parent: OpenTK.Platform.Scancode + langs: + - csharp + - vb + name: SemiColon + nameWithType: Scancode.SemiColon + fullName: OpenTK.Platform.Scancode.SemiColon + type: Field + source: + id: SemiColon + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Scancode.cs + startLine: 36 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: SemiColon = 47 + return: + type: OpenTK.Platform.Scancode +- uid: OpenTK.Platform.Scancode.LeftApostrophe + commentId: F:OpenTK.Platform.Scancode.LeftApostrophe + id: LeftApostrophe + parent: OpenTK.Platform.Scancode + langs: + - csharp + - vb + name: LeftApostrophe + nameWithType: Scancode.LeftApostrophe + fullName: OpenTK.Platform.Scancode.LeftApostrophe + type: Field + source: + id: LeftApostrophe + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Scancode.cs + startLine: 38 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: LeftApostrophe = 48 + return: + type: OpenTK.Platform.Scancode +- uid: OpenTK.Platform.Scancode.GraveAccent + commentId: F:OpenTK.Platform.Scancode.GraveAccent + id: GraveAccent + parent: OpenTK.Platform.Scancode + langs: + - csharp + - vb + name: GraveAccent + nameWithType: Scancode.GraveAccent + fullName: OpenTK.Platform.Scancode.GraveAccent + type: Field + source: + id: GraveAccent + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Scancode.cs + startLine: 39 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: GraveAccent = 49 + return: + type: OpenTK.Platform.Scancode +- uid: OpenTK.Platform.Scancode.Comma + commentId: F:OpenTK.Platform.Scancode.Comma + id: Comma + parent: OpenTK.Platform.Scancode + langs: + - csharp + - vb + name: Comma + nameWithType: Scancode.Comma + fullName: OpenTK.Platform.Scancode.Comma + type: Field + source: + id: Comma + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Scancode.cs + startLine: 40 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: Comma = 50 + return: + type: OpenTK.Platform.Scancode +- uid: OpenTK.Platform.Scancode.Period + commentId: F:OpenTK.Platform.Scancode.Period + id: Period + parent: OpenTK.Platform.Scancode + langs: + - csharp + - vb + name: Period + nameWithType: Scancode.Period + fullName: OpenTK.Platform.Scancode.Period + type: Field + source: + id: Period + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Scancode.cs + startLine: 41 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: Period = 51 + return: + type: OpenTK.Platform.Scancode +- uid: OpenTK.Platform.Scancode.QuestionMark + commentId: F:OpenTK.Platform.Scancode.QuestionMark + id: QuestionMark + parent: OpenTK.Platform.Scancode + langs: + - csharp + - vb + name: QuestionMark + nameWithType: Scancode.QuestionMark + fullName: OpenTK.Platform.Scancode.QuestionMark + type: Field + source: + id: QuestionMark + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Scancode.cs + startLine: 43 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: QuestionMark = 52 + return: + type: OpenTK.Platform.Scancode +- uid: OpenTK.Platform.Scancode.CapsLock + commentId: F:OpenTK.Platform.Scancode.CapsLock + id: CapsLock + parent: OpenTK.Platform.Scancode + langs: + - csharp + - vb + name: CapsLock + nameWithType: Scancode.CapsLock + fullName: OpenTK.Platform.Scancode.CapsLock + type: Field + source: + id: CapsLock + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Scancode.cs + startLine: 44 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: CapsLock = 53 + return: + type: OpenTK.Platform.Scancode +- uid: OpenTK.Platform.Scancode.F1 + commentId: F:OpenTK.Platform.Scancode.F1 + id: F1 + parent: OpenTK.Platform.Scancode + langs: + - csharp + - vb + name: F1 + nameWithType: Scancode.F1 + fullName: OpenTK.Platform.Scancode.F1 + type: Field + source: + id: F1 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Scancode.cs + startLine: 45 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: F1 = 54 + return: + type: OpenTK.Platform.Scancode +- uid: OpenTK.Platform.Scancode.F2 + commentId: F:OpenTK.Platform.Scancode.F2 + id: F2 + parent: OpenTK.Platform.Scancode + langs: + - csharp + - vb + name: F2 + nameWithType: Scancode.F2 + fullName: OpenTK.Platform.Scancode.F2 + type: Field + source: + id: F2 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Scancode.cs + startLine: 45 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: F2 = 55 + return: + type: OpenTK.Platform.Scancode +- uid: OpenTK.Platform.Scancode.F3 + commentId: F:OpenTK.Platform.Scancode.F3 + id: F3 + parent: OpenTK.Platform.Scancode + langs: + - csharp + - vb + name: F3 + nameWithType: Scancode.F3 + fullName: OpenTK.Platform.Scancode.F3 + type: Field + source: + id: F3 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Scancode.cs + startLine: 45 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: F3 = 56 + return: + type: OpenTK.Platform.Scancode +- uid: OpenTK.Platform.Scancode.F4 + commentId: F:OpenTK.Platform.Scancode.F4 + id: F4 + parent: OpenTK.Platform.Scancode + langs: + - csharp + - vb + name: F4 + nameWithType: Scancode.F4 + fullName: OpenTK.Platform.Scancode.F4 + type: Field + source: + id: F4 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Scancode.cs + startLine: 45 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: F4 = 57 + return: + type: OpenTK.Platform.Scancode +- uid: OpenTK.Platform.Scancode.F5 + commentId: F:OpenTK.Platform.Scancode.F5 + id: F5 + parent: OpenTK.Platform.Scancode + langs: + - csharp + - vb + name: F5 + nameWithType: Scancode.F5 + fullName: OpenTK.Platform.Scancode.F5 + type: Field + source: + id: F5 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Scancode.cs + startLine: 45 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: F5 = 58 + return: + type: OpenTK.Platform.Scancode +- uid: OpenTK.Platform.Scancode.F6 + commentId: F:OpenTK.Platform.Scancode.F6 + id: F6 + parent: OpenTK.Platform.Scancode + langs: + - csharp + - vb + name: F6 + nameWithType: Scancode.F6 + fullName: OpenTK.Platform.Scancode.F6 + type: Field + source: + id: F6 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Scancode.cs + startLine: 45 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: F6 = 59 + return: + type: OpenTK.Platform.Scancode +- uid: OpenTK.Platform.Scancode.F7 + commentId: F:OpenTK.Platform.Scancode.F7 + id: F7 + parent: OpenTK.Platform.Scancode + langs: + - csharp + - vb + name: F7 + nameWithType: Scancode.F7 + fullName: OpenTK.Platform.Scancode.F7 + type: Field + source: + id: F7 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Scancode.cs + startLine: 45 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: F7 = 60 + return: + type: OpenTK.Platform.Scancode +- uid: OpenTK.Platform.Scancode.F8 + commentId: F:OpenTK.Platform.Scancode.F8 + id: F8 + parent: OpenTK.Platform.Scancode + langs: + - csharp + - vb + name: F8 + nameWithType: Scancode.F8 + fullName: OpenTK.Platform.Scancode.F8 + type: Field + source: + id: F8 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Scancode.cs + startLine: 45 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: F8 = 61 + return: + type: OpenTK.Platform.Scancode +- uid: OpenTK.Platform.Scancode.F9 + commentId: F:OpenTK.Platform.Scancode.F9 + id: F9 + parent: OpenTK.Platform.Scancode + langs: + - csharp + - vb + name: F9 + nameWithType: Scancode.F9 + fullName: OpenTK.Platform.Scancode.F9 + type: Field + source: + id: F9 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Scancode.cs + startLine: 45 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: F9 = 62 + return: + type: OpenTK.Platform.Scancode +- uid: OpenTK.Platform.Scancode.F10 + commentId: F:OpenTK.Platform.Scancode.F10 + id: F10 + parent: OpenTK.Platform.Scancode + langs: + - csharp + - vb + name: F10 + nameWithType: Scancode.F10 + fullName: OpenTK.Platform.Scancode.F10 + type: Field + source: + id: F10 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Scancode.cs + startLine: 45 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: F10 = 63 + return: + type: OpenTK.Platform.Scancode +- uid: OpenTK.Platform.Scancode.F11 + commentId: F:OpenTK.Platform.Scancode.F11 + id: F11 + parent: OpenTK.Platform.Scancode + langs: + - csharp + - vb + name: F11 + nameWithType: Scancode.F11 + fullName: OpenTK.Platform.Scancode.F11 + type: Field + source: + id: F11 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Scancode.cs + startLine: 45 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: F11 = 64 + return: + type: OpenTK.Platform.Scancode +- uid: OpenTK.Platform.Scancode.F12 + commentId: F:OpenTK.Platform.Scancode.F12 + id: F12 + parent: OpenTK.Platform.Scancode + langs: + - csharp + - vb + name: F12 + nameWithType: Scancode.F12 + fullName: OpenTK.Platform.Scancode.F12 + type: Field + source: + id: F12 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Scancode.cs + startLine: 45 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: F12 = 65 + return: + type: OpenTK.Platform.Scancode +- uid: OpenTK.Platform.Scancode.F13 + commentId: F:OpenTK.Platform.Scancode.F13 + id: F13 + parent: OpenTK.Platform.Scancode + langs: + - csharp + - vb + name: F13 + nameWithType: Scancode.F13 + fullName: OpenTK.Platform.Scancode.F13 + type: Field + source: + id: F13 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Scancode.cs + startLine: 46 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: F13 = 66 + return: + type: OpenTK.Platform.Scancode +- uid: OpenTK.Platform.Scancode.F14 + commentId: F:OpenTK.Platform.Scancode.F14 + id: F14 + parent: OpenTK.Platform.Scancode + langs: + - csharp + - vb + name: F14 + nameWithType: Scancode.F14 + fullName: OpenTK.Platform.Scancode.F14 + type: Field + source: + id: F14 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Scancode.cs + startLine: 46 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: F14 = 67 + return: + type: OpenTK.Platform.Scancode +- uid: OpenTK.Platform.Scancode.F15 + commentId: F:OpenTK.Platform.Scancode.F15 + id: F15 + parent: OpenTK.Platform.Scancode + langs: + - csharp + - vb + name: F15 + nameWithType: Scancode.F15 + fullName: OpenTK.Platform.Scancode.F15 + type: Field + source: + id: F15 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Scancode.cs + startLine: 46 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: F15 = 68 + return: + type: OpenTK.Platform.Scancode +- uid: OpenTK.Platform.Scancode.F16 + commentId: F:OpenTK.Platform.Scancode.F16 + id: F16 + parent: OpenTK.Platform.Scancode + langs: + - csharp + - vb + name: F16 + nameWithType: Scancode.F16 + fullName: OpenTK.Platform.Scancode.F16 + type: Field + source: + id: F16 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Scancode.cs + startLine: 46 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: F16 = 69 + return: + type: OpenTK.Platform.Scancode +- uid: OpenTK.Platform.Scancode.F17 + commentId: F:OpenTK.Platform.Scancode.F17 + id: F17 + parent: OpenTK.Platform.Scancode + langs: + - csharp + - vb + name: F17 + nameWithType: Scancode.F17 + fullName: OpenTK.Platform.Scancode.F17 + type: Field + source: + id: F17 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Scancode.cs + startLine: 46 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: F17 = 70 + return: + type: OpenTK.Platform.Scancode +- uid: OpenTK.Platform.Scancode.F18 + commentId: F:OpenTK.Platform.Scancode.F18 + id: F18 + parent: OpenTK.Platform.Scancode + langs: + - csharp + - vb + name: F18 + nameWithType: Scancode.F18 + fullName: OpenTK.Platform.Scancode.F18 + type: Field + source: + id: F18 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Scancode.cs + startLine: 46 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: F18 = 71 + return: + type: OpenTK.Platform.Scancode +- uid: OpenTK.Platform.Scancode.F19 + commentId: F:OpenTK.Platform.Scancode.F19 + id: F19 + parent: OpenTK.Platform.Scancode + langs: + - csharp + - vb + name: F19 + nameWithType: Scancode.F19 + fullName: OpenTK.Platform.Scancode.F19 + type: Field + source: + id: F19 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Scancode.cs + startLine: 46 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: F19 = 72 + return: + type: OpenTK.Platform.Scancode +- uid: OpenTK.Platform.Scancode.F20 + commentId: F:OpenTK.Platform.Scancode.F20 + id: F20 + parent: OpenTK.Platform.Scancode + langs: + - csharp + - vb + name: F20 + nameWithType: Scancode.F20 + fullName: OpenTK.Platform.Scancode.F20 + type: Field + source: + id: F20 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Scancode.cs + startLine: 46 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: F20 = 73 + return: + type: OpenTK.Platform.Scancode +- uid: OpenTK.Platform.Scancode.F21 + commentId: F:OpenTK.Platform.Scancode.F21 + id: F21 + parent: OpenTK.Platform.Scancode + langs: + - csharp + - vb + name: F21 + nameWithType: Scancode.F21 + fullName: OpenTK.Platform.Scancode.F21 + type: Field + source: + id: F21 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Scancode.cs + startLine: 46 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: F21 = 74 + return: + type: OpenTK.Platform.Scancode +- uid: OpenTK.Platform.Scancode.F22 + commentId: F:OpenTK.Platform.Scancode.F22 + id: F22 + parent: OpenTK.Platform.Scancode + langs: + - csharp + - vb + name: F22 + nameWithType: Scancode.F22 + fullName: OpenTK.Platform.Scancode.F22 + type: Field + source: + id: F22 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Scancode.cs + startLine: 46 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: F22 = 75 + return: + type: OpenTK.Platform.Scancode +- uid: OpenTK.Platform.Scancode.F23 + commentId: F:OpenTK.Platform.Scancode.F23 + id: F23 + parent: OpenTK.Platform.Scancode + langs: + - csharp + - vb + name: F23 + nameWithType: Scancode.F23 + fullName: OpenTK.Platform.Scancode.F23 + type: Field + source: + id: F23 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Scancode.cs + startLine: 46 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: F23 = 76 + return: + type: OpenTK.Platform.Scancode +- uid: OpenTK.Platform.Scancode.F24 + commentId: F:OpenTK.Platform.Scancode.F24 + id: F24 + parent: OpenTK.Platform.Scancode + langs: + - csharp + - vb + name: F24 + nameWithType: Scancode.F24 + fullName: OpenTK.Platform.Scancode.F24 + type: Field + source: + id: F24 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Scancode.cs + startLine: 46 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: F24 = 77 + return: + type: OpenTK.Platform.Scancode +- uid: OpenTK.Platform.Scancode.PrintScreen + commentId: F:OpenTK.Platform.Scancode.PrintScreen + id: PrintScreen + parent: OpenTK.Platform.Scancode + langs: + - csharp + - vb + name: PrintScreen + nameWithType: Scancode.PrintScreen + fullName: OpenTK.Platform.Scancode.PrintScreen + type: Field + source: + id: PrintScreen + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Scancode.cs + startLine: 49 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: PrintScreen = 78 + return: + type: OpenTK.Platform.Scancode +- uid: OpenTK.Platform.Scancode.ScrollLock + commentId: F:OpenTK.Platform.Scancode.ScrollLock + id: ScrollLock + parent: OpenTK.Platform.Scancode + langs: + - csharp + - vb + name: ScrollLock + nameWithType: Scancode.ScrollLock + fullName: OpenTK.Platform.Scancode.ScrollLock + type: Field + source: + id: ScrollLock + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Scancode.cs + startLine: 50 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: ScrollLock = 79 + return: + type: OpenTK.Platform.Scancode +- uid: OpenTK.Platform.Scancode.Pause + commentId: F:OpenTK.Platform.Scancode.Pause + id: Pause + parent: OpenTK.Platform.Scancode + langs: + - csharp + - vb + name: Pause + nameWithType: Scancode.Pause + fullName: OpenTK.Platform.Scancode.Pause + type: Field + source: + id: Pause + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Scancode.cs + startLine: 51 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: Pause = 80 + return: + type: OpenTK.Platform.Scancode +- uid: OpenTK.Platform.Scancode.Insert + commentId: F:OpenTK.Platform.Scancode.Insert + id: Insert + parent: OpenTK.Platform.Scancode + langs: + - csharp + - vb + name: Insert + nameWithType: Scancode.Insert + fullName: OpenTK.Platform.Scancode.Insert + type: Field + source: + id: Insert + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Scancode.cs + startLine: 52 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: Insert = 81 + return: + type: OpenTK.Platform.Scancode +- uid: OpenTK.Platform.Scancode.Home + commentId: F:OpenTK.Platform.Scancode.Home + id: Home + parent: OpenTK.Platform.Scancode + langs: + - csharp + - vb + name: Home + nameWithType: Scancode.Home + fullName: OpenTK.Platform.Scancode.Home + type: Field + source: + id: Home + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Scancode.cs + startLine: 53 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: Home = 82 + return: + type: OpenTK.Platform.Scancode +- uid: OpenTK.Platform.Scancode.PageUp + commentId: F:OpenTK.Platform.Scancode.PageUp + id: PageUp + parent: OpenTK.Platform.Scancode + langs: + - csharp + - vb + name: PageUp + nameWithType: Scancode.PageUp + fullName: OpenTK.Platform.Scancode.PageUp + type: Field + source: + id: PageUp + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Scancode.cs + startLine: 54 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: PageUp = 83 + return: + type: OpenTK.Platform.Scancode +- uid: OpenTK.Platform.Scancode.Delete + commentId: F:OpenTK.Platform.Scancode.Delete + id: Delete + parent: OpenTK.Platform.Scancode + langs: + - csharp + - vb + name: Delete + nameWithType: Scancode.Delete + fullName: OpenTK.Platform.Scancode.Delete + type: Field + source: + id: Delete + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Scancode.cs + startLine: 55 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: Delete = 84 + return: + type: OpenTK.Platform.Scancode +- uid: OpenTK.Platform.Scancode.End + commentId: F:OpenTK.Platform.Scancode.End + id: End + parent: OpenTK.Platform.Scancode + langs: + - csharp + - vb + name: End + nameWithType: Scancode.End + fullName: OpenTK.Platform.Scancode.End + type: Field + source: + id: End + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Scancode.cs + startLine: 56 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: End = 85 + return: + type: OpenTK.Platform.Scancode +- uid: OpenTK.Platform.Scancode.PageDown + commentId: F:OpenTK.Platform.Scancode.PageDown + id: PageDown + parent: OpenTK.Platform.Scancode + langs: + - csharp + - vb + name: PageDown + nameWithType: Scancode.PageDown + fullName: OpenTK.Platform.Scancode.PageDown + type: Field + source: + id: PageDown + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Scancode.cs + startLine: 57 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: PageDown = 86 + return: + type: OpenTK.Platform.Scancode +- uid: OpenTK.Platform.Scancode.RightArrow + commentId: F:OpenTK.Platform.Scancode.RightArrow + id: RightArrow + parent: OpenTK.Platform.Scancode + langs: + - csharp + - vb + name: RightArrow + nameWithType: Scancode.RightArrow + fullName: OpenTK.Platform.Scancode.RightArrow + type: Field + source: + id: RightArrow + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Scancode.cs + startLine: 58 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: RightArrow = 87 + return: + type: OpenTK.Platform.Scancode +- uid: OpenTK.Platform.Scancode.LeftArrow + commentId: F:OpenTK.Platform.Scancode.LeftArrow + id: LeftArrow + parent: OpenTK.Platform.Scancode + langs: + - csharp + - vb + name: LeftArrow + nameWithType: Scancode.LeftArrow + fullName: OpenTK.Platform.Scancode.LeftArrow + type: Field + source: + id: LeftArrow + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Scancode.cs + startLine: 59 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: LeftArrow = 88 + return: + type: OpenTK.Platform.Scancode +- uid: OpenTK.Platform.Scancode.DownArrow + commentId: F:OpenTK.Platform.Scancode.DownArrow + id: DownArrow + parent: OpenTK.Platform.Scancode + langs: + - csharp + - vb + name: DownArrow + nameWithType: Scancode.DownArrow + fullName: OpenTK.Platform.Scancode.DownArrow + type: Field + source: + id: DownArrow + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Scancode.cs + startLine: 60 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: DownArrow = 89 + return: + type: OpenTK.Platform.Scancode +- uid: OpenTK.Platform.Scancode.UpArrow + commentId: F:OpenTK.Platform.Scancode.UpArrow + id: UpArrow + parent: OpenTK.Platform.Scancode + langs: + - csharp + - vb + name: UpArrow + nameWithType: Scancode.UpArrow + fullName: OpenTK.Platform.Scancode.UpArrow + type: Field + source: + id: UpArrow + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Scancode.cs + startLine: 61 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: UpArrow = 90 + return: + type: OpenTK.Platform.Scancode +- uid: OpenTK.Platform.Scancode.NumLock + commentId: F:OpenTK.Platform.Scancode.NumLock + id: NumLock + parent: OpenTK.Platform.Scancode + langs: + - csharp + - vb + name: NumLock + nameWithType: Scancode.NumLock + fullName: OpenTK.Platform.Scancode.NumLock + type: Field + source: + id: NumLock + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Scancode.cs + startLine: 62 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: NumLock = 91 + return: + type: OpenTK.Platform.Scancode +- uid: OpenTK.Platform.Scancode.KeypadEnter + commentId: F:OpenTK.Platform.Scancode.KeypadEnter + id: KeypadEnter + parent: OpenTK.Platform.Scancode + langs: + - csharp + - vb + name: KeypadEnter + nameWithType: Scancode.KeypadEnter + fullName: OpenTK.Platform.Scancode.KeypadEnter + type: Field + source: + id: KeypadEnter + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Scancode.cs + startLine: 63 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: KeypadEnter = 92 + return: + type: OpenTK.Platform.Scancode +- uid: OpenTK.Platform.Scancode.Keypad1 + commentId: F:OpenTK.Platform.Scancode.Keypad1 + id: Keypad1 + parent: OpenTK.Platform.Scancode + langs: + - csharp + - vb + name: Keypad1 + nameWithType: Scancode.Keypad1 + fullName: OpenTK.Platform.Scancode.Keypad1 + type: Field + source: + id: Keypad1 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Scancode.cs + startLine: 64 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: Keypad1 = 93 + return: + type: OpenTK.Platform.Scancode +- uid: OpenTK.Platform.Scancode.Keypad2 + commentId: F:OpenTK.Platform.Scancode.Keypad2 + id: Keypad2 + parent: OpenTK.Platform.Scancode + langs: + - csharp + - vb + name: Keypad2 + nameWithType: Scancode.Keypad2 + fullName: OpenTK.Platform.Scancode.Keypad2 + type: Field + source: + id: Keypad2 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Scancode.cs + startLine: 64 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: Keypad2 = 94 + return: + type: OpenTK.Platform.Scancode +- uid: OpenTK.Platform.Scancode.Keypad3 + commentId: F:OpenTK.Platform.Scancode.Keypad3 + id: Keypad3 + parent: OpenTK.Platform.Scancode + langs: + - csharp + - vb + name: Keypad3 + nameWithType: Scancode.Keypad3 + fullName: OpenTK.Platform.Scancode.Keypad3 + type: Field + source: + id: Keypad3 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Scancode.cs + startLine: 64 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: Keypad3 = 95 + return: + type: OpenTK.Platform.Scancode +- uid: OpenTK.Platform.Scancode.Keypad4 + commentId: F:OpenTK.Platform.Scancode.Keypad4 + id: Keypad4 + parent: OpenTK.Platform.Scancode + langs: + - csharp + - vb + name: Keypad4 + nameWithType: Scancode.Keypad4 + fullName: OpenTK.Platform.Scancode.Keypad4 + type: Field + source: + id: Keypad4 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Scancode.cs + startLine: 64 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: Keypad4 = 96 + return: + type: OpenTK.Platform.Scancode +- uid: OpenTK.Platform.Scancode.Keypad5 + commentId: F:OpenTK.Platform.Scancode.Keypad5 + id: Keypad5 + parent: OpenTK.Platform.Scancode + langs: + - csharp + - vb + name: Keypad5 + nameWithType: Scancode.Keypad5 + fullName: OpenTK.Platform.Scancode.Keypad5 + type: Field + source: + id: Keypad5 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Scancode.cs + startLine: 64 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: Keypad5 = 97 + return: + type: OpenTK.Platform.Scancode +- uid: OpenTK.Platform.Scancode.Keypad6 + commentId: F:OpenTK.Platform.Scancode.Keypad6 + id: Keypad6 + parent: OpenTK.Platform.Scancode + langs: + - csharp + - vb + name: Keypad6 + nameWithType: Scancode.Keypad6 + fullName: OpenTK.Platform.Scancode.Keypad6 + type: Field + source: + id: Keypad6 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Scancode.cs + startLine: 64 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: Keypad6 = 98 + return: + type: OpenTK.Platform.Scancode +- uid: OpenTK.Platform.Scancode.Keypad7 + commentId: F:OpenTK.Platform.Scancode.Keypad7 + id: Keypad7 + parent: OpenTK.Platform.Scancode + langs: + - csharp + - vb + name: Keypad7 + nameWithType: Scancode.Keypad7 + fullName: OpenTK.Platform.Scancode.Keypad7 + type: Field + source: + id: Keypad7 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Scancode.cs + startLine: 64 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: Keypad7 = 99 + return: + type: OpenTK.Platform.Scancode +- uid: OpenTK.Platform.Scancode.Keypad8 + commentId: F:OpenTK.Platform.Scancode.Keypad8 + id: Keypad8 + parent: OpenTK.Platform.Scancode + langs: + - csharp + - vb + name: Keypad8 + nameWithType: Scancode.Keypad8 + fullName: OpenTK.Platform.Scancode.Keypad8 + type: Field + source: + id: Keypad8 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Scancode.cs + startLine: 64 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: Keypad8 = 100 + return: + type: OpenTK.Platform.Scancode +- uid: OpenTK.Platform.Scancode.Keypad9 + commentId: F:OpenTK.Platform.Scancode.Keypad9 + id: Keypad9 + parent: OpenTK.Platform.Scancode + langs: + - csharp + - vb + name: Keypad9 + nameWithType: Scancode.Keypad9 + fullName: OpenTK.Platform.Scancode.Keypad9 + type: Field + source: + id: Keypad9 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Scancode.cs + startLine: 64 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: Keypad9 = 101 + return: + type: OpenTK.Platform.Scancode +- uid: OpenTK.Platform.Scancode.Keypad0 + commentId: F:OpenTK.Platform.Scancode.Keypad0 + id: Keypad0 + parent: OpenTK.Platform.Scancode + langs: + - csharp + - vb + name: Keypad0 + nameWithType: Scancode.Keypad0 + fullName: OpenTK.Platform.Scancode.Keypad0 + type: Field + source: + id: Keypad0 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Scancode.cs + startLine: 64 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: Keypad0 = 102 + return: + type: OpenTK.Platform.Scancode +- uid: OpenTK.Platform.Scancode.KeypadForwardSlash + commentId: F:OpenTK.Platform.Scancode.KeypadForwardSlash + id: KeypadForwardSlash + parent: OpenTK.Platform.Scancode + langs: + - csharp + - vb + name: KeypadForwardSlash + nameWithType: Scancode.KeypadForwardSlash + fullName: OpenTK.Platform.Scancode.KeypadForwardSlash + type: Field + source: + id: KeypadForwardSlash + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Scancode.cs + startLine: 66 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: KeypadForwardSlash = 103 + return: + type: OpenTK.Platform.Scancode +- uid: OpenTK.Platform.Scancode.KeypadPeriod + commentId: F:OpenTK.Platform.Scancode.KeypadPeriod + id: KeypadPeriod + parent: OpenTK.Platform.Scancode + langs: + - csharp + - vb + name: KeypadPeriod + nameWithType: Scancode.KeypadPeriod + fullName: OpenTK.Platform.Scancode.KeypadPeriod + type: Field + source: + id: KeypadPeriod + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Scancode.cs + startLine: 68 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: KeypadPeriod = 104 + return: + type: OpenTK.Platform.Scancode +- uid: OpenTK.Platform.Scancode.KeypadStar + commentId: F:OpenTK.Platform.Scancode.KeypadStar + id: KeypadStar + parent: OpenTK.Platform.Scancode + langs: + - csharp + - vb + name: KeypadStar + nameWithType: Scancode.KeypadStar + fullName: OpenTK.Platform.Scancode.KeypadStar + type: Field + source: + id: KeypadStar + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Scancode.cs + startLine: 70 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: KeypadStar = 105 + return: + type: OpenTK.Platform.Scancode +- uid: OpenTK.Platform.Scancode.KeypadDash + commentId: F:OpenTK.Platform.Scancode.KeypadDash + id: KeypadDash + parent: OpenTK.Platform.Scancode + langs: + - csharp + - vb + name: KeypadDash + nameWithType: Scancode.KeypadDash + fullName: OpenTK.Platform.Scancode.KeypadDash + type: Field + source: + id: KeypadDash + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Scancode.cs + startLine: 71 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: KeypadDash = 106 + return: + type: OpenTK.Platform.Scancode +- uid: OpenTK.Platform.Scancode.KeypadPlus + commentId: F:OpenTK.Platform.Scancode.KeypadPlus + id: KeypadPlus + parent: OpenTK.Platform.Scancode + langs: + - csharp + - vb + name: KeypadPlus + nameWithType: Scancode.KeypadPlus + fullName: OpenTK.Platform.Scancode.KeypadPlus + type: Field + source: + id: KeypadPlus + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Scancode.cs + startLine: 72 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: KeypadPlus = 107 + return: + type: OpenTK.Platform.Scancode +- uid: OpenTK.Platform.Scancode.KeypadEquals + commentId: F:OpenTK.Platform.Scancode.KeypadEquals + id: KeypadEquals + parent: OpenTK.Platform.Scancode + langs: + - csharp + - vb + name: KeypadEquals + nameWithType: Scancode.KeypadEquals + fullName: OpenTK.Platform.Scancode.KeypadEquals + type: Field + source: + id: KeypadEquals + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Scancode.cs + startLine: 73 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: KeypadEquals = 108 + return: + type: OpenTK.Platform.Scancode +- uid: OpenTK.Platform.Scancode.KeypadComma + commentId: F:OpenTK.Platform.Scancode.KeypadComma + id: KeypadComma + parent: OpenTK.Platform.Scancode + langs: + - csharp + - vb + name: KeypadComma + nameWithType: Scancode.KeypadComma + fullName: OpenTK.Platform.Scancode.KeypadComma + type: Field + source: + id: KeypadComma + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Scancode.cs + startLine: 74 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: KeypadComma = 109 + return: + type: OpenTK.Platform.Scancode +- uid: OpenTK.Platform.Scancode.NonUSSlashBar + commentId: F:OpenTK.Platform.Scancode.NonUSSlashBar + id: NonUSSlashBar + parent: OpenTK.Platform.Scancode + langs: + - csharp + - vb + name: NonUSSlashBar + nameWithType: Scancode.NonUSSlashBar + fullName: OpenTK.Platform.Scancode.NonUSSlashBar + type: Field + source: + id: NonUSSlashBar + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Scancode.cs + startLine: 76 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: NonUSSlashBar = 110 + return: + type: OpenTK.Platform.Scancode +- uid: OpenTK.Platform.Scancode.Application + commentId: F:OpenTK.Platform.Scancode.Application + id: Application + parent: OpenTK.Platform.Scancode + langs: + - csharp + - vb + name: Application + nameWithType: Scancode.Application + fullName: OpenTK.Platform.Scancode.Application + type: Field + source: + id: Application + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Scancode.cs + startLine: 77 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: Application = 111 + return: + type: OpenTK.Platform.Scancode +- uid: OpenTK.Platform.Scancode.International1 + commentId: F:OpenTK.Platform.Scancode.International1 + id: International1 + parent: OpenTK.Platform.Scancode + langs: + - csharp + - vb + name: International1 + nameWithType: Scancode.International1 + fullName: OpenTK.Platform.Scancode.International1 + type: Field + source: + id: International1 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Scancode.cs + startLine: 79 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: International1 = 112 + return: + type: OpenTK.Platform.Scancode +- uid: OpenTK.Platform.Scancode.International2 + commentId: F:OpenTK.Platform.Scancode.International2 + id: International2 + parent: OpenTK.Platform.Scancode + langs: + - csharp + - vb + name: International2 + nameWithType: Scancode.International2 + fullName: OpenTK.Platform.Scancode.International2 + type: Field + source: + id: International2 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Scancode.cs + startLine: 80 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: International2 = 113 + return: + type: OpenTK.Platform.Scancode +- uid: OpenTK.Platform.Scancode.International3 + commentId: F:OpenTK.Platform.Scancode.International3 + id: International3 + parent: OpenTK.Platform.Scancode + langs: + - csharp + - vb + name: International3 + nameWithType: Scancode.International3 + fullName: OpenTK.Platform.Scancode.International3 + type: Field + source: + id: International3 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Scancode.cs + startLine: 81 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: International3 = 114 + return: + type: OpenTK.Platform.Scancode +- uid: OpenTK.Platform.Scancode.International4 + commentId: F:OpenTK.Platform.Scancode.International4 + id: International4 + parent: OpenTK.Platform.Scancode + langs: + - csharp + - vb + name: International4 + nameWithType: Scancode.International4 + fullName: OpenTK.Platform.Scancode.International4 + type: Field + source: + id: International4 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Scancode.cs + startLine: 82 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: International4 = 115 + return: + type: OpenTK.Platform.Scancode +- uid: OpenTK.Platform.Scancode.International5 + commentId: F:OpenTK.Platform.Scancode.International5 + id: International5 + parent: OpenTK.Platform.Scancode + langs: + - csharp + - vb + name: International5 + nameWithType: Scancode.International5 + fullName: OpenTK.Platform.Scancode.International5 + type: Field + source: + id: International5 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Scancode.cs + startLine: 83 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: International5 = 116 + return: + type: OpenTK.Platform.Scancode +- uid: OpenTK.Platform.Scancode.International6 + commentId: F:OpenTK.Platform.Scancode.International6 + id: International6 + parent: OpenTK.Platform.Scancode + langs: + - csharp + - vb + name: International6 + nameWithType: Scancode.International6 + fullName: OpenTK.Platform.Scancode.International6 + type: Field + source: + id: International6 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Scancode.cs + startLine: 84 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: International6 = 117 + return: + type: OpenTK.Platform.Scancode +- uid: OpenTK.Platform.Scancode.LANG1 + commentId: F:OpenTK.Platform.Scancode.LANG1 + id: LANG1 + parent: OpenTK.Platform.Scancode + langs: + - csharp + - vb + name: LANG1 + nameWithType: Scancode.LANG1 + fullName: OpenTK.Platform.Scancode.LANG1 + type: Field + source: + id: LANG1 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Scancode.cs + startLine: 87 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: LANG1 = 118 + return: + type: OpenTK.Platform.Scancode +- uid: OpenTK.Platform.Scancode.LANG2 + commentId: F:OpenTK.Platform.Scancode.LANG2 + id: LANG2 + parent: OpenTK.Platform.Scancode + langs: + - csharp + - vb + name: LANG2 + nameWithType: Scancode.LANG2 + fullName: OpenTK.Platform.Scancode.LANG2 + type: Field + source: + id: LANG2 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Scancode.cs + startLine: 88 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: LANG2 = 119 + return: + type: OpenTK.Platform.Scancode +- uid: OpenTK.Platform.Scancode.LANG3 + commentId: F:OpenTK.Platform.Scancode.LANG3 + id: LANG3 + parent: OpenTK.Platform.Scancode + langs: + - csharp + - vb + name: LANG3 + nameWithType: Scancode.LANG3 + fullName: OpenTK.Platform.Scancode.LANG3 + type: Field + source: + id: LANG3 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Scancode.cs + startLine: 89 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: LANG3 = 120 + return: + type: OpenTK.Platform.Scancode +- uid: OpenTK.Platform.Scancode.LANG4 + commentId: F:OpenTK.Platform.Scancode.LANG4 + id: LANG4 + parent: OpenTK.Platform.Scancode + langs: + - csharp + - vb + name: LANG4 + nameWithType: Scancode.LANG4 + fullName: OpenTK.Platform.Scancode.LANG4 + type: Field + source: + id: LANG4 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Scancode.cs + startLine: 90 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: LANG4 = 121 + return: + type: OpenTK.Platform.Scancode +- uid: OpenTK.Platform.Scancode.LANG5 + commentId: F:OpenTK.Platform.Scancode.LANG5 + id: LANG5 + parent: OpenTK.Platform.Scancode + langs: + - csharp + - vb + name: LANG5 + nameWithType: Scancode.LANG5 + fullName: OpenTK.Platform.Scancode.LANG5 + type: Field + source: + id: LANG5 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Scancode.cs + startLine: 91 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: LANG5 = 122 + return: + type: OpenTK.Platform.Scancode +- uid: OpenTK.Platform.Scancode.LeftControl + commentId: F:OpenTK.Platform.Scancode.LeftControl + id: LeftControl + parent: OpenTK.Platform.Scancode + langs: + - csharp + - vb + name: LeftControl + nameWithType: Scancode.LeftControl + fullName: OpenTK.Platform.Scancode.LeftControl + type: Field + source: + id: LeftControl + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Scancode.cs + startLine: 94 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: LeftControl = 123 + return: + type: OpenTK.Platform.Scancode +- uid: OpenTK.Platform.Scancode.LeftShift + commentId: F:OpenTK.Platform.Scancode.LeftShift + id: LeftShift + parent: OpenTK.Platform.Scancode + langs: + - csharp + - vb + name: LeftShift + nameWithType: Scancode.LeftShift + fullName: OpenTK.Platform.Scancode.LeftShift + type: Field + source: + id: LeftShift + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Scancode.cs + startLine: 95 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: LeftShift = 124 + return: + type: OpenTK.Platform.Scancode +- uid: OpenTK.Platform.Scancode.LeftAlt + commentId: F:OpenTK.Platform.Scancode.LeftAlt + id: LeftAlt + parent: OpenTK.Platform.Scancode + langs: + - csharp + - vb + name: LeftAlt + nameWithType: Scancode.LeftAlt + fullName: OpenTK.Platform.Scancode.LeftAlt + type: Field + source: + id: LeftAlt + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Scancode.cs + startLine: 97 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: LeftAlt = 125 + return: + type: OpenTK.Platform.Scancode +- uid: OpenTK.Platform.Scancode.LeftGUI + commentId: F:OpenTK.Platform.Scancode.LeftGUI + id: LeftGUI + parent: OpenTK.Platform.Scancode + langs: + - csharp + - vb + name: LeftGUI + nameWithType: Scancode.LeftGUI + fullName: OpenTK.Platform.Scancode.LeftGUI + type: Field + source: + id: LeftGUI + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Scancode.cs + startLine: 98 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: LeftGUI = 126 + return: + type: OpenTK.Platform.Scancode +- uid: OpenTK.Platform.Scancode.RightControl + commentId: F:OpenTK.Platform.Scancode.RightControl + id: RightControl + parent: OpenTK.Platform.Scancode + langs: + - csharp + - vb + name: RightControl + nameWithType: Scancode.RightControl + fullName: OpenTK.Platform.Scancode.RightControl + type: Field + source: + id: RightControl + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Scancode.cs + startLine: 100 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: RightControl = 127 + return: + type: OpenTK.Platform.Scancode +- uid: OpenTK.Platform.Scancode.RightShift + commentId: F:OpenTK.Platform.Scancode.RightShift + id: RightShift + parent: OpenTK.Platform.Scancode + langs: + - csharp + - vb + name: RightShift + nameWithType: Scancode.RightShift + fullName: OpenTK.Platform.Scancode.RightShift + type: Field + source: + id: RightShift + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Scancode.cs + startLine: 101 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: RightShift = 128 + return: + type: OpenTK.Platform.Scancode +- uid: OpenTK.Platform.Scancode.RightAlt + commentId: F:OpenTK.Platform.Scancode.RightAlt + id: RightAlt + parent: OpenTK.Platform.Scancode + langs: + - csharp + - vb + name: RightAlt + nameWithType: Scancode.RightAlt + fullName: OpenTK.Platform.Scancode.RightAlt + type: Field + source: + id: RightAlt + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Scancode.cs + startLine: 103 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: RightAlt = 129 + return: + type: OpenTK.Platform.Scancode +- uid: OpenTK.Platform.Scancode.RightGUI + commentId: F:OpenTK.Platform.Scancode.RightGUI + id: RightGUI + parent: OpenTK.Platform.Scancode + langs: + - csharp + - vb + name: RightGUI + nameWithType: Scancode.RightGUI + fullName: OpenTK.Platform.Scancode.RightGUI + type: Field + source: + id: RightGUI + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Scancode.cs + startLine: 104 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: RightGUI = 130 + return: + type: OpenTK.Platform.Scancode +- uid: OpenTK.Platform.Scancode.SystemPowerDown + commentId: F:OpenTK.Platform.Scancode.SystemPowerDown + id: SystemPowerDown + parent: OpenTK.Platform.Scancode + langs: + - csharp + - vb + name: SystemPowerDown + nameWithType: Scancode.SystemPowerDown + fullName: OpenTK.Platform.Scancode.SystemPowerDown + type: Field + source: + id: SystemPowerDown + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Scancode.cs + startLine: 106 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: SystemPowerDown = 131 + return: + type: OpenTK.Platform.Scancode +- uid: OpenTK.Platform.Scancode.SystemSleep + commentId: F:OpenTK.Platform.Scancode.SystemSleep + id: SystemSleep + parent: OpenTK.Platform.Scancode + langs: + - csharp + - vb + name: SystemSleep + nameWithType: Scancode.SystemSleep + fullName: OpenTK.Platform.Scancode.SystemSleep + type: Field + source: + id: SystemSleep + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Scancode.cs + startLine: 107 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: SystemSleep = 132 + return: + type: OpenTK.Platform.Scancode +- uid: OpenTK.Platform.Scancode.SystemWakeUp + commentId: F:OpenTK.Platform.Scancode.SystemWakeUp + id: SystemWakeUp + parent: OpenTK.Platform.Scancode + langs: + - csharp + - vb + name: SystemWakeUp + nameWithType: Scancode.SystemWakeUp + fullName: OpenTK.Platform.Scancode.SystemWakeUp + type: Field + source: + id: SystemWakeUp + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Scancode.cs + startLine: 108 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: SystemWakeUp = 133 + return: + type: OpenTK.Platform.Scancode +- uid: OpenTK.Platform.Scancode.ScanNextTrack + commentId: F:OpenTK.Platform.Scancode.ScanNextTrack + id: ScanNextTrack + parent: OpenTK.Platform.Scancode + langs: + - csharp + - vb + name: ScanNextTrack + nameWithType: Scancode.ScanNextTrack + fullName: OpenTK.Platform.Scancode.ScanNextTrack + type: Field + source: + id: ScanNextTrack + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Scancode.cs + startLine: 110 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: ScanNextTrack = 134 + return: + type: OpenTK.Platform.Scancode +- uid: OpenTK.Platform.Scancode.ScanPreviousTrack + commentId: F:OpenTK.Platform.Scancode.ScanPreviousTrack + id: ScanPreviousTrack + parent: OpenTK.Platform.Scancode + langs: + - csharp + - vb + name: ScanPreviousTrack + nameWithType: Scancode.ScanPreviousTrack + fullName: OpenTK.Platform.Scancode.ScanPreviousTrack + type: Field + source: + id: ScanPreviousTrack + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Scancode.cs + startLine: 110 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: ScanPreviousTrack = 135 + return: + type: OpenTK.Platform.Scancode +- uid: OpenTK.Platform.Scancode.Stop + commentId: F:OpenTK.Platform.Scancode.Stop + id: Stop + parent: OpenTK.Platform.Scancode + langs: + - csharp + - vb + name: Stop + nameWithType: Scancode.Stop + fullName: OpenTK.Platform.Scancode.Stop + type: Field + source: + id: Stop + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Scancode.cs + startLine: 111 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: Stop = 136 + return: + type: OpenTK.Platform.Scancode +- uid: OpenTK.Platform.Scancode.PlayPause + commentId: F:OpenTK.Platform.Scancode.PlayPause + id: PlayPause + parent: OpenTK.Platform.Scancode + langs: + - csharp + - vb + name: PlayPause + nameWithType: Scancode.PlayPause + fullName: OpenTK.Platform.Scancode.PlayPause + type: Field + source: + id: PlayPause + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Scancode.cs + startLine: 111 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: PlayPause = 137 + return: + type: OpenTK.Platform.Scancode +- uid: OpenTK.Platform.Scancode.Mute + commentId: F:OpenTK.Platform.Scancode.Mute + id: Mute + parent: OpenTK.Platform.Scancode + langs: + - csharp + - vb + name: Mute + nameWithType: Scancode.Mute + fullName: OpenTK.Platform.Scancode.Mute + type: Field + source: + id: Mute + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Scancode.cs + startLine: 111 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: Mute = 138 + return: + type: OpenTK.Platform.Scancode +- uid: OpenTK.Platform.Scancode.VolumeIncrement + commentId: F:OpenTK.Platform.Scancode.VolumeIncrement + id: VolumeIncrement + parent: OpenTK.Platform.Scancode + langs: + - csharp + - vb + name: VolumeIncrement + nameWithType: Scancode.VolumeIncrement + fullName: OpenTK.Platform.Scancode.VolumeIncrement + type: Field + source: + id: VolumeIncrement + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Scancode.cs + startLine: 112 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: VolumeIncrement = 139 + return: + type: OpenTK.Platform.Scancode +- uid: OpenTK.Platform.Scancode.VolumeDecrement + commentId: F:OpenTK.Platform.Scancode.VolumeDecrement + id: VolumeDecrement + parent: OpenTK.Platform.Scancode + langs: + - csharp + - vb + name: VolumeDecrement + nameWithType: Scancode.VolumeDecrement + fullName: OpenTK.Platform.Scancode.VolumeDecrement + type: Field + source: + id: VolumeDecrement + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\Scancode.cs + startLine: 112 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: VolumeDecrement = 140 + return: + type: OpenTK.Platform.Scancode +references: +- uid: OpenTK.Platform + commentId: N:OpenTK.Platform + href: OpenTK.html + name: OpenTK.Platform + nameWithType: OpenTK.Platform + fullName: OpenTK.Platform + spec.csharp: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Platform + name: Platform + href: OpenTK.Platform.html + spec.vb: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Platform + name: Platform + href: OpenTK.Platform.html +- uid: OpenTK.Platform.Scancode + commentId: T:OpenTK.Platform.Scancode + parent: OpenTK.Platform + href: OpenTK.Platform.Scancode.html + name: Scancode + nameWithType: Scancode + fullName: OpenTK.Platform.Scancode diff --git a/api/OpenTK.Core.Platform.ScrollEventArgs.yml b/api/OpenTK.Platform.ScrollEventArgs.yml similarity index 69% rename from api/OpenTK.Core.Platform.ScrollEventArgs.yml rename to api/OpenTK.Platform.ScrollEventArgs.yml index 3f68e423..178e1cc2 100644 --- a/api/OpenTK.Core.Platform.ScrollEventArgs.yml +++ b/api/OpenTK.Platform.ScrollEventArgs.yml @@ -1,31 +1,27 @@ ### YamlMime:ManagedReference items: -- uid: OpenTK.Core.Platform.ScrollEventArgs - commentId: T:OpenTK.Core.Platform.ScrollEventArgs +- uid: OpenTK.Platform.ScrollEventArgs + commentId: T:OpenTK.Platform.ScrollEventArgs id: ScrollEventArgs - parent: OpenTK.Core.Platform + parent: OpenTK.Platform children: - - OpenTK.Core.Platform.ScrollEventArgs.#ctor(OpenTK.Core.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2) - - OpenTK.Core.Platform.ScrollEventArgs.Delta - - OpenTK.Core.Platform.ScrollEventArgs.Distance + - OpenTK.Platform.ScrollEventArgs.#ctor(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2) + - OpenTK.Platform.ScrollEventArgs.Delta + - OpenTK.Platform.ScrollEventArgs.Distance langs: - csharp - vb name: ScrollEventArgs nameWithType: ScrollEventArgs - fullName: OpenTK.Core.Platform.ScrollEventArgs + fullName: OpenTK.Platform.ScrollEventArgs type: Class source: - remote: - path: src/OpenTK.Core/Platform/WindowEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ScrollEventArgs - path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs - startLine: 490 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\WindowEventArgs.cs + startLine: 514 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform + - OpenTK.Platform + namespace: OpenTK.Platform summary: This event is triggered when the scrollwheel on a mouse is used. example: [] syntax: @@ -34,9 +30,9 @@ items: inheritance: - System.Object - System.EventArgs - - OpenTK.Core.Platform.WindowEventArgs + - OpenTK.Platform.WindowEventArgs inheritedMembers: - - OpenTK.Core.Platform.WindowEventArgs.Window + - OpenTK.Platform.WindowEventArgs.Window - System.EventArgs.Empty - System.Object.Equals(System.Object) - System.Object.Equals(System.Object,System.Object) @@ -45,28 +41,24 @@ items: - System.Object.MemberwiseClone - System.Object.ReferenceEquals(System.Object,System.Object) - System.Object.ToString -- uid: OpenTK.Core.Platform.ScrollEventArgs.Delta - commentId: P:OpenTK.Core.Platform.ScrollEventArgs.Delta +- uid: OpenTK.Platform.ScrollEventArgs.Delta + commentId: P:OpenTK.Platform.ScrollEventArgs.Delta id: Delta - parent: OpenTK.Core.Platform.ScrollEventArgs + parent: OpenTK.Platform.ScrollEventArgs langs: - csharp - vb name: Delta nameWithType: ScrollEventArgs.Delta - fullName: OpenTK.Core.Platform.ScrollEventArgs.Delta + fullName: OpenTK.Platform.ScrollEventArgs.Delta type: Property source: - remote: - path: src/OpenTK.Core/Platform/WindowEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Delta - path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs - startLine: 495 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\WindowEventArgs.cs + startLine: 519 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform + - OpenTK.Platform + namespace: OpenTK.Platform summary: How much the mouse wheel has moved. example: [] syntax: @@ -75,29 +67,25 @@ items: return: type: OpenTK.Mathematics.Vector2 content.vb: Public Property Delta As Vector2 - overload: OpenTK.Core.Platform.ScrollEventArgs.Delta* -- uid: OpenTK.Core.Platform.ScrollEventArgs.Distance - commentId: P:OpenTK.Core.Platform.ScrollEventArgs.Distance + overload: OpenTK.Platform.ScrollEventArgs.Delta* +- uid: OpenTK.Platform.ScrollEventArgs.Distance + commentId: P:OpenTK.Platform.ScrollEventArgs.Distance id: Distance - parent: OpenTK.Core.Platform.ScrollEventArgs + parent: OpenTK.Platform.ScrollEventArgs langs: - csharp - vb name: Distance nameWithType: ScrollEventArgs.Distance - fullName: OpenTK.Core.Platform.ScrollEventArgs.Distance + fullName: OpenTK.Platform.ScrollEventArgs.Distance type: Property source: - remote: - path: src/OpenTK.Core/Platform/WindowEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Distance - path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs - startLine: 503 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\WindowEventArgs.cs + startLine: 527 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform + - OpenTK.Platform + namespace: OpenTK.Platform summary: >- The distance to move screen content. @@ -111,36 +99,32 @@ items: return: type: OpenTK.Mathematics.Vector2 content.vb: Public Property Distance As Vector2 - overload: OpenTK.Core.Platform.ScrollEventArgs.Distance* -- uid: OpenTK.Core.Platform.ScrollEventArgs.#ctor(OpenTK.Core.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2) - commentId: M:OpenTK.Core.Platform.ScrollEventArgs.#ctor(OpenTK.Core.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2) - id: '#ctor(OpenTK.Core.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2)' - parent: OpenTK.Core.Platform.ScrollEventArgs + overload: OpenTK.Platform.ScrollEventArgs.Distance* +- uid: OpenTK.Platform.ScrollEventArgs.#ctor(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2) + commentId: M:OpenTK.Platform.ScrollEventArgs.#ctor(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2) + id: '#ctor(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2)' + parent: OpenTK.Platform.ScrollEventArgs langs: - csharp - vb name: ScrollEventArgs(WindowHandle, Vector2, Vector2) nameWithType: ScrollEventArgs.ScrollEventArgs(WindowHandle, Vector2, Vector2) - fullName: OpenTK.Core.Platform.ScrollEventArgs.ScrollEventArgs(OpenTK.Core.Platform.WindowHandle, OpenTK.Mathematics.Vector2, OpenTK.Mathematics.Vector2) + fullName: OpenTK.Platform.ScrollEventArgs.ScrollEventArgs(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2, OpenTK.Mathematics.Vector2) type: Constructor source: - remote: - path: src/OpenTK.Core/Platform/WindowEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs - startLine: 511 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\WindowEventArgs.cs + startLine: 535 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Initializes a new instance of the class. + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Initializes a new instance of the class. example: [] syntax: content: public ScrollEventArgs(WindowHandle window, Vector2 delta, Vector2 distance) parameters: - id: window - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: The window that received the scrolling. - id: delta type: OpenTK.Mathematics.Vector2 @@ -149,41 +133,33 @@ items: type: OpenTK.Mathematics.Vector2 description: The distance that was scrolled (affected by user scroll speed settings). content.vb: Public Sub New(window As WindowHandle, delta As Vector2, distance As Vector2) - overload: OpenTK.Core.Platform.ScrollEventArgs.#ctor* + overload: OpenTK.Platform.ScrollEventArgs.#ctor* nameWithType.vb: ScrollEventArgs.New(WindowHandle, Vector2, Vector2) - fullName.vb: OpenTK.Core.Platform.ScrollEventArgs.New(OpenTK.Core.Platform.WindowHandle, OpenTK.Mathematics.Vector2, OpenTK.Mathematics.Vector2) + fullName.vb: OpenTK.Platform.ScrollEventArgs.New(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2, OpenTK.Mathematics.Vector2) name.vb: New(WindowHandle, Vector2, Vector2) references: -- uid: OpenTK.Core.Platform - commentId: N:OpenTK.Core.Platform +- uid: OpenTK.Platform + commentId: N:OpenTK.Platform href: OpenTK.html - name: OpenTK.Core.Platform - nameWithType: OpenTK.Core.Platform - fullName: OpenTK.Core.Platform + name: OpenTK.Platform + nameWithType: OpenTK.Platform + fullName: OpenTK.Platform spec.csharp: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html spec.vb: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html - uid: System.Object commentId: T:System.Object parent: System @@ -203,20 +179,20 @@ references: name: EventArgs nameWithType: EventArgs fullName: System.EventArgs -- uid: OpenTK.Core.Platform.WindowEventArgs - commentId: T:OpenTK.Core.Platform.WindowEventArgs - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.WindowEventArgs.html +- uid: OpenTK.Platform.WindowEventArgs + commentId: T:OpenTK.Platform.WindowEventArgs + parent: OpenTK.Platform + href: OpenTK.Platform.WindowEventArgs.html name: WindowEventArgs nameWithType: WindowEventArgs - fullName: OpenTK.Core.Platform.WindowEventArgs -- uid: OpenTK.Core.Platform.WindowEventArgs.Window - commentId: P:OpenTK.Core.Platform.WindowEventArgs.Window - parent: OpenTK.Core.Platform.WindowEventArgs - href: OpenTK.Core.Platform.WindowEventArgs.html#OpenTK_Core_Platform_WindowEventArgs_Window + fullName: OpenTK.Platform.WindowEventArgs +- uid: OpenTK.Platform.WindowEventArgs.Window + commentId: P:OpenTK.Platform.WindowEventArgs.Window + parent: OpenTK.Platform.WindowEventArgs + href: OpenTK.Platform.WindowEventArgs.html#OpenTK_Platform_WindowEventArgs_Window name: Window nameWithType: WindowEventArgs.Window - fullName: OpenTK.Core.Platform.WindowEventArgs.Window + fullName: OpenTK.Platform.WindowEventArgs.Window - uid: System.EventArgs.Empty commentId: F:System.EventArgs.Empty parent: System.EventArgs @@ -451,12 +427,12 @@ references: name: System nameWithType: System fullName: System -- uid: OpenTK.Core.Platform.ScrollEventArgs.Delta* - commentId: Overload:OpenTK.Core.Platform.ScrollEventArgs.Delta - href: OpenTK.Core.Platform.ScrollEventArgs.html#OpenTK_Core_Platform_ScrollEventArgs_Delta +- uid: OpenTK.Platform.ScrollEventArgs.Delta* + commentId: Overload:OpenTK.Platform.ScrollEventArgs.Delta + href: OpenTK.Platform.ScrollEventArgs.html#OpenTK_Platform_ScrollEventArgs_Delta name: Delta nameWithType: ScrollEventArgs.Delta - fullName: OpenTK.Core.Platform.ScrollEventArgs.Delta + fullName: OpenTK.Platform.ScrollEventArgs.Delta - uid: OpenTK.Mathematics.Vector2 commentId: T:OpenTK.Mathematics.Vector2 parent: OpenTK.Mathematics @@ -486,31 +462,31 @@ references: - uid: OpenTK.Mathematics name: Mathematics href: OpenTK.Mathematics.html -- uid: OpenTK.Core.Platform.ScrollEventArgs.Distance* - commentId: Overload:OpenTK.Core.Platform.ScrollEventArgs.Distance - href: OpenTK.Core.Platform.ScrollEventArgs.html#OpenTK_Core_Platform_ScrollEventArgs_Distance +- uid: OpenTK.Platform.ScrollEventArgs.Distance* + commentId: Overload:OpenTK.Platform.ScrollEventArgs.Distance + href: OpenTK.Platform.ScrollEventArgs.html#OpenTK_Platform_ScrollEventArgs_Distance name: Distance nameWithType: ScrollEventArgs.Distance - fullName: OpenTK.Core.Platform.ScrollEventArgs.Distance -- uid: OpenTK.Core.Platform.ScrollEventArgs - commentId: T:OpenTK.Core.Platform.ScrollEventArgs - href: OpenTK.Core.Platform.ScrollEventArgs.html + fullName: OpenTK.Platform.ScrollEventArgs.Distance +- uid: OpenTK.Platform.ScrollEventArgs + commentId: T:OpenTK.Platform.ScrollEventArgs + href: OpenTK.Platform.ScrollEventArgs.html name: ScrollEventArgs nameWithType: ScrollEventArgs - fullName: OpenTK.Core.Platform.ScrollEventArgs -- uid: OpenTK.Core.Platform.ScrollEventArgs.#ctor* - commentId: Overload:OpenTK.Core.Platform.ScrollEventArgs.#ctor - href: OpenTK.Core.Platform.ScrollEventArgs.html#OpenTK_Core_Platform_ScrollEventArgs__ctor_OpenTK_Core_Platform_WindowHandle_OpenTK_Mathematics_Vector2_OpenTK_Mathematics_Vector2_ + fullName: OpenTK.Platform.ScrollEventArgs +- uid: OpenTK.Platform.ScrollEventArgs.#ctor* + commentId: Overload:OpenTK.Platform.ScrollEventArgs.#ctor + href: OpenTK.Platform.ScrollEventArgs.html#OpenTK_Platform_ScrollEventArgs__ctor_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2_OpenTK_Mathematics_Vector2_ name: ScrollEventArgs nameWithType: ScrollEventArgs.ScrollEventArgs - fullName: OpenTK.Core.Platform.ScrollEventArgs.ScrollEventArgs + fullName: OpenTK.Platform.ScrollEventArgs.ScrollEventArgs nameWithType.vb: ScrollEventArgs.New - fullName.vb: OpenTK.Core.Platform.ScrollEventArgs.New + fullName.vb: OpenTK.Platform.ScrollEventArgs.New name.vb: New -- uid: OpenTK.Core.Platform.WindowHandle - commentId: T:OpenTK.Core.Platform.WindowHandle - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.WindowHandle.html +- uid: OpenTK.Platform.WindowHandle + commentId: T:OpenTK.Platform.WindowHandle + parent: OpenTK.Platform + href: OpenTK.Platform.WindowHandle.html name: WindowHandle nameWithType: WindowHandle - fullName: OpenTK.Core.Platform.WindowHandle + fullName: OpenTK.Platform.WindowHandle diff --git a/api/OpenTK.Core.Platform.SurfaceHandle.yml b/api/OpenTK.Platform.SurfaceHandle.yml similarity index 77% rename from api/OpenTK.Core.Platform.SurfaceHandle.yml rename to api/OpenTK.Platform.SurfaceHandle.yml index 19d43437..218bf092 100644 --- a/api/OpenTK.Core.Platform.SurfaceHandle.yml +++ b/api/OpenTK.Platform.SurfaceHandle.yml @@ -1,28 +1,24 @@ ### YamlMime:ManagedReference items: -- uid: OpenTK.Core.Platform.SurfaceHandle - commentId: T:OpenTK.Core.Platform.SurfaceHandle +- uid: OpenTK.Platform.SurfaceHandle + commentId: T:OpenTK.Platform.SurfaceHandle id: SurfaceHandle - parent: OpenTK.Core.Platform + parent: OpenTK.Platform children: [] langs: - csharp - vb name: SurfaceHandle nameWithType: SurfaceHandle - fullName: OpenTK.Core.Platform.SurfaceHandle + fullName: OpenTK.Platform.SurfaceHandle type: Class source: - remote: - path: src/OpenTK.Core/Platform/Handles/SurfaceHandle.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SurfaceHandle - path: opentk/src/OpenTK.Core/Platform/Handles/SurfaceHandle.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Handles\SurfaceHandle.cs startLine: 5 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform + - OpenTK.Platform + namespace: OpenTK.Platform summary: Handle to a rendering surface. example: [] syntax: @@ -30,10 +26,10 @@ items: content.vb: Public MustInherit Class SurfaceHandle Inherits PalHandle inheritance: - System.Object - - OpenTK.Core.Platform.PalHandle + - OpenTK.Platform.PalHandle inheritedMembers: - - OpenTK.Core.Platform.PalHandle.UserData - - OpenTK.Core.Platform.PalHandle.As``1(OpenTK.Core.Platform.IPalComponent) + - OpenTK.Platform.PalHandle.UserData + - OpenTK.Platform.PalHandle.As``1(OpenTK.Platform.IPalComponent) - System.Object.Equals(System.Object) - System.Object.Equals(System.Object,System.Object) - System.Object.GetHashCode @@ -42,36 +38,28 @@ items: - System.Object.ReferenceEquals(System.Object,System.Object) - System.Object.ToString references: -- uid: OpenTK.Core.Platform - commentId: N:OpenTK.Core.Platform +- uid: OpenTK.Platform + commentId: N:OpenTK.Platform href: OpenTK.html - name: OpenTK.Core.Platform - nameWithType: OpenTK.Core.Platform - fullName: OpenTK.Core.Platform + name: OpenTK.Platform + nameWithType: OpenTK.Platform + fullName: OpenTK.Platform spec.csharp: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html spec.vb: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html - uid: System.Object commentId: T:System.Object parent: System @@ -83,55 +71,55 @@ references: nameWithType.vb: Object fullName.vb: Object name.vb: Object -- uid: OpenTK.Core.Platform.PalHandle - commentId: T:OpenTK.Core.Platform.PalHandle - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.PalHandle.html +- uid: OpenTK.Platform.PalHandle + commentId: T:OpenTK.Platform.PalHandle + parent: OpenTK.Platform + href: OpenTK.Platform.PalHandle.html name: PalHandle nameWithType: PalHandle - fullName: OpenTK.Core.Platform.PalHandle -- uid: OpenTK.Core.Platform.PalHandle.UserData - commentId: P:OpenTK.Core.Platform.PalHandle.UserData - parent: OpenTK.Core.Platform.PalHandle - href: OpenTK.Core.Platform.PalHandle.html#OpenTK_Core_Platform_PalHandle_UserData + fullName: OpenTK.Platform.PalHandle +- uid: OpenTK.Platform.PalHandle.UserData + commentId: P:OpenTK.Platform.PalHandle.UserData + parent: OpenTK.Platform.PalHandle + href: OpenTK.Platform.PalHandle.html#OpenTK_Platform_PalHandle_UserData name: UserData nameWithType: PalHandle.UserData - fullName: OpenTK.Core.Platform.PalHandle.UserData -- uid: OpenTK.Core.Platform.PalHandle.As``1(OpenTK.Core.Platform.IPalComponent) - commentId: M:OpenTK.Core.Platform.PalHandle.As``1(OpenTK.Core.Platform.IPalComponent) - parent: OpenTK.Core.Platform.PalHandle - href: OpenTK.Core.Platform.PalHandle.html#OpenTK_Core_Platform_PalHandle_As__1_OpenTK_Core_Platform_IPalComponent_ + fullName: OpenTK.Platform.PalHandle.UserData +- uid: OpenTK.Platform.PalHandle.As``1(OpenTK.Platform.IPalComponent) + commentId: M:OpenTK.Platform.PalHandle.As``1(OpenTK.Platform.IPalComponent) + parent: OpenTK.Platform.PalHandle + href: OpenTK.Platform.PalHandle.html#OpenTK_Platform_PalHandle_As__1_OpenTK_Platform_IPalComponent_ name: As(IPalComponent) nameWithType: PalHandle.As(IPalComponent) - fullName: OpenTK.Core.Platform.PalHandle.As(OpenTK.Core.Platform.IPalComponent) + fullName: OpenTK.Platform.PalHandle.As(OpenTK.Platform.IPalComponent) nameWithType.vb: PalHandle.As(Of T)(IPalComponent) - fullName.vb: OpenTK.Core.Platform.PalHandle.As(Of T)(OpenTK.Core.Platform.IPalComponent) + fullName.vb: OpenTK.Platform.PalHandle.As(Of T)(OpenTK.Platform.IPalComponent) name.vb: As(Of T)(IPalComponent) spec.csharp: - - uid: OpenTK.Core.Platform.PalHandle.As``1(OpenTK.Core.Platform.IPalComponent) + - uid: OpenTK.Platform.PalHandle.As``1(OpenTK.Platform.IPalComponent) name: As - href: OpenTK.Core.Platform.PalHandle.html#OpenTK_Core_Platform_PalHandle_As__1_OpenTK_Core_Platform_IPalComponent_ + href: OpenTK.Platform.PalHandle.html#OpenTK_Platform_PalHandle_As__1_OpenTK_Platform_IPalComponent_ - name: < - name: T - name: '>' - name: ( - - uid: OpenTK.Core.Platform.IPalComponent + - uid: OpenTK.Platform.IPalComponent name: IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html + href: OpenTK.Platform.IPalComponent.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.PalHandle.As``1(OpenTK.Core.Platform.IPalComponent) + - uid: OpenTK.Platform.PalHandle.As``1(OpenTK.Platform.IPalComponent) name: As - href: OpenTK.Core.Platform.PalHandle.html#OpenTK_Core_Platform_PalHandle_As__1_OpenTK_Core_Platform_IPalComponent_ + href: OpenTK.Platform.PalHandle.html#OpenTK_Platform_PalHandle_As__1_OpenTK_Platform_IPalComponent_ - name: ( - name: Of - name: " " - name: T - name: ) - name: ( - - uid: OpenTK.Core.Platform.IPalComponent + - uid: OpenTK.Platform.IPalComponent name: IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html + href: OpenTK.Platform.IPalComponent.html - name: ) - uid: System.Object.Equals(System.Object) commentId: M:System.Object.Equals(System.Object) diff --git a/api/OpenTK.Platform.SurfaceType.yml b/api/OpenTK.Platform.SurfaceType.yml new file mode 100644 index 00000000..02e37801 --- /dev/null +++ b/api/OpenTK.Platform.SurfaceType.yml @@ -0,0 +1,106 @@ +### YamlMime:ManagedReference +items: +- uid: OpenTK.Platform.SurfaceType + commentId: T:OpenTK.Platform.SurfaceType + id: SurfaceType + parent: OpenTK.Platform + children: + - OpenTK.Platform.SurfaceType.Control + - OpenTK.Platform.SurfaceType.Display + langs: + - csharp + - vb + name: SurfaceType + nameWithType: SurfaceType + fullName: OpenTK.Platform.SurfaceType + type: Enum + source: + id: SurfaceType + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\SurfaceType.cs + startLine: 5 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Enumeration of surface types. + example: [] + syntax: + content: public enum SurfaceType + content.vb: Public Enum SurfaceType +- uid: OpenTK.Platform.SurfaceType.Display + commentId: F:OpenTK.Platform.SurfaceType.Display + id: Display + parent: OpenTK.Platform.SurfaceType + langs: + - csharp + - vb + name: Display + nameWithType: SurfaceType.Display + fullName: OpenTK.Platform.SurfaceType.Display + type: Field + source: + id: Display + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\SurfaceType.cs + startLine: 10 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: A type of surface which spans an entire display. + example: [] + syntax: + content: Display = 0 + return: + type: OpenTK.Platform.SurfaceType +- uid: OpenTK.Platform.SurfaceType.Control + commentId: F:OpenTK.Platform.SurfaceType.Control + id: Control + parent: OpenTK.Platform.SurfaceType + langs: + - csharp + - vb + name: Control + nameWithType: SurfaceType.Control + fullName: OpenTK.Platform.SurfaceType.Control + type: Field + source: + id: Control + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\SurfaceType.cs + startLine: 15 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: A type of surface which is embedded in a container. + example: [] + syntax: + content: Control = 1 + return: + type: OpenTK.Platform.SurfaceType +references: +- uid: OpenTK.Platform + commentId: N:OpenTK.Platform + href: OpenTK.html + name: OpenTK.Platform + nameWithType: OpenTK.Platform + fullName: OpenTK.Platform + spec.csharp: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Platform + name: Platform + href: OpenTK.Platform.html + spec.vb: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Platform + name: Platform + href: OpenTK.Platform.html +- uid: OpenTK.Platform.SurfaceType + commentId: T:OpenTK.Platform.SurfaceType + parent: OpenTK.Platform + href: OpenTK.Platform.SurfaceType.html + name: SurfaceType + nameWithType: SurfaceType + fullName: OpenTK.Platform.SurfaceType diff --git a/api/OpenTK.Platform.SystemCursorType.yml b/api/OpenTK.Platform.SystemCursorType.yml new file mode 100644 index 00000000..04455750 --- /dev/null +++ b/api/OpenTK.Platform.SystemCursorType.yml @@ -0,0 +1,670 @@ +### YamlMime:ManagedReference +items: +- uid: OpenTK.Platform.SystemCursorType + commentId: T:OpenTK.Platform.SystemCursorType + id: SystemCursorType + parent: OpenTK.Platform + children: + - OpenTK.Platform.SystemCursorType.ArrowE + - OpenTK.Platform.SystemCursorType.ArrowEW + - OpenTK.Platform.SystemCursorType.ArrowFourway + - OpenTK.Platform.SystemCursorType.ArrowN + - OpenTK.Platform.SystemCursorType.ArrowNE + - OpenTK.Platform.SystemCursorType.ArrowNESW + - OpenTK.Platform.SystemCursorType.ArrowNS + - OpenTK.Platform.SystemCursorType.ArrowNW + - OpenTK.Platform.SystemCursorType.ArrowNWSE + - OpenTK.Platform.SystemCursorType.ArrowS + - OpenTK.Platform.SystemCursorType.ArrowSE + - OpenTK.Platform.SystemCursorType.ArrowSW + - OpenTK.Platform.SystemCursorType.ArrowUp + - OpenTK.Platform.SystemCursorType.ArrowW + - OpenTK.Platform.SystemCursorType.Cross + - OpenTK.Platform.SystemCursorType.Default + - OpenTK.Platform.SystemCursorType.Forbidden + - OpenTK.Platform.SystemCursorType.Hand + - OpenTK.Platform.SystemCursorType.Help + - OpenTK.Platform.SystemCursorType.Loading + - OpenTK.Platform.SystemCursorType.TextBeam + - OpenTK.Platform.SystemCursorType.Wait + langs: + - csharp + - vb + name: SystemCursorType + nameWithType: SystemCursorType + fullName: OpenTK.Platform.SystemCursorType + type: Enum + source: + id: SystemCursorType + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\SystemCursorType.cs + startLine: 7 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Represents system mouse cursor icons. + example: [] + syntax: + content: public enum SystemCursorType + content.vb: Public Enum SystemCursorType +- uid: OpenTK.Platform.SystemCursorType.Default + commentId: F:OpenTK.Platform.SystemCursorType.Default + id: Default + parent: OpenTK.Platform.SystemCursorType + langs: + - csharp + - vb + name: Default + nameWithType: SystemCursorType.Default + fullName: OpenTK.Platform.SystemCursorType.Default + type: Field + source: + id: Default + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\SystemCursorType.cs + startLine: 12 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Default mouse cursor. + example: [] + syntax: + content: Default = 1 + return: + type: OpenTK.Platform.SystemCursorType +- uid: OpenTK.Platform.SystemCursorType.Loading + commentId: F:OpenTK.Platform.SystemCursorType.Loading + id: Loading + parent: OpenTK.Platform.SystemCursorType + langs: + - csharp + - vb + name: Loading + nameWithType: SystemCursorType.Loading + fullName: OpenTK.Platform.SystemCursorType.Loading + type: Field + source: + id: Loading + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\SystemCursorType.cs + startLine: 17 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: A mouse cursor to tell the user something is loading (like an arrow with an hour glass.) + example: [] + syntax: + content: Loading = 2 + return: + type: OpenTK.Platform.SystemCursorType +- uid: OpenTK.Platform.SystemCursorType.Wait + commentId: F:OpenTK.Platform.SystemCursorType.Wait + id: Wait + parent: OpenTK.Platform.SystemCursorType + langs: + - csharp + - vb + name: Wait + nameWithType: SystemCursorType.Wait + fullName: OpenTK.Platform.SystemCursorType.Wait + type: Field + source: + id: Wait + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\SystemCursorType.cs + startLine: 22 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: A mouse cursor to tell the user to wait. (like an hour glass). + example: [] + syntax: + content: Wait = 3 + return: + type: OpenTK.Platform.SystemCursorType +- uid: OpenTK.Platform.SystemCursorType.Cross + commentId: F:OpenTK.Platform.SystemCursorType.Cross + id: Cross + parent: OpenTK.Platform.SystemCursorType + langs: + - csharp + - vb + name: Cross + nameWithType: SystemCursorType.Cross + fullName: OpenTK.Platform.SystemCursorType.Cross + type: Field + source: + id: Cross + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\SystemCursorType.cs + startLine: 27 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: A cursor with a cross. + example: [] + syntax: + content: Cross = 4 + return: + type: OpenTK.Platform.SystemCursorType +- uid: OpenTK.Platform.SystemCursorType.Hand + commentId: F:OpenTK.Platform.SystemCursorType.Hand + id: Hand + parent: OpenTK.Platform.SystemCursorType + langs: + - csharp + - vb + name: Hand + nameWithType: SystemCursorType.Hand + fullName: OpenTK.Platform.SystemCursorType.Hand + type: Field + source: + id: Hand + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\SystemCursorType.cs + startLine: 32 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: A cursor with a hand. + example: [] + syntax: + content: Hand = 5 + return: + type: OpenTK.Platform.SystemCursorType +- uid: OpenTK.Platform.SystemCursorType.Help + commentId: F:OpenTK.Platform.SystemCursorType.Help + id: Help + parent: OpenTK.Platform.SystemCursorType + langs: + - csharp + - vb + name: Help + nameWithType: SystemCursorType.Help + fullName: OpenTK.Platform.SystemCursorType.Help + type: Field + source: + id: Help + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\SystemCursorType.cs + startLine: 37 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: A cursor with a quetion mark. + example: [] + syntax: + content: Help = 6 + return: + type: OpenTK.Platform.SystemCursorType +- uid: OpenTK.Platform.SystemCursorType.TextBeam + commentId: F:OpenTK.Platform.SystemCursorType.TextBeam + id: TextBeam + parent: OpenTK.Platform.SystemCursorType + langs: + - csharp + - vb + name: TextBeam + nameWithType: SystemCursorType.TextBeam + fullName: OpenTK.Platform.SystemCursorType.TextBeam + type: Field + source: + id: TextBeam + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\SystemCursorType.cs + startLine: 42 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: A cursor which is displayed when text is selectable. + example: [] + syntax: + content: TextBeam = 7 + return: + type: OpenTK.Platform.SystemCursorType +- uid: OpenTK.Platform.SystemCursorType.Forbidden + commentId: F:OpenTK.Platform.SystemCursorType.Forbidden + id: Forbidden + parent: OpenTK.Platform.SystemCursorType + langs: + - csharp + - vb + name: Forbidden + nameWithType: SystemCursorType.Forbidden + fullName: OpenTK.Platform.SystemCursorType.Forbidden + type: Field + source: + id: Forbidden + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\SystemCursorType.cs + startLine: 47 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: A cursor which tells the user they can't do something (like a crossed out red circle.) + example: [] + syntax: + content: Forbidden = 8 + return: + type: OpenTK.Platform.SystemCursorType +- uid: OpenTK.Platform.SystemCursorType.ArrowFourway + commentId: F:OpenTK.Platform.SystemCursorType.ArrowFourway + id: ArrowFourway + parent: OpenTK.Platform.SystemCursorType + langs: + - csharp + - vb + name: ArrowFourway + nameWithType: SystemCursorType.ArrowFourway + fullName: OpenTK.Platform.SystemCursorType.ArrowFourway + type: Field + source: + id: ArrowFourway + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\SystemCursorType.cs + startLine: 52 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: A cursor with arrows pointing in all four direction. + example: [] + syntax: + content: ArrowFourway = 9 + return: + type: OpenTK.Platform.SystemCursorType +- uid: OpenTK.Platform.SystemCursorType.ArrowNS + commentId: F:OpenTK.Platform.SystemCursorType.ArrowNS + id: ArrowNS + parent: OpenTK.Platform.SystemCursorType + langs: + - csharp + - vb + name: ArrowNS + nameWithType: SystemCursorType.ArrowNS + fullName: OpenTK.Platform.SystemCursorType.ArrowNS + type: Field + source: + id: ArrowNS + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\SystemCursorType.cs + startLine: 57 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: A resize cursor with arrows pointing north and south. + example: [] + syntax: + content: ArrowNS = 10 + return: + type: OpenTK.Platform.SystemCursorType +- uid: OpenTK.Platform.SystemCursorType.ArrowEW + commentId: F:OpenTK.Platform.SystemCursorType.ArrowEW + id: ArrowEW + parent: OpenTK.Platform.SystemCursorType + langs: + - csharp + - vb + name: ArrowEW + nameWithType: SystemCursorType.ArrowEW + fullName: OpenTK.Platform.SystemCursorType.ArrowEW + type: Field + source: + id: ArrowEW + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\SystemCursorType.cs + startLine: 62 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: A resize cursor with arrows pointing east and west. + example: [] + syntax: + content: ArrowEW = 11 + return: + type: OpenTK.Platform.SystemCursorType +- uid: OpenTK.Platform.SystemCursorType.ArrowNESW + commentId: F:OpenTK.Platform.SystemCursorType.ArrowNESW + id: ArrowNESW + parent: OpenTK.Platform.SystemCursorType + langs: + - csharp + - vb + name: ArrowNESW + nameWithType: SystemCursorType.ArrowNESW + fullName: OpenTK.Platform.SystemCursorType.ArrowNESW + type: Field + source: + id: ArrowNESW + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\SystemCursorType.cs + startLine: 67 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: A resize cursor with arrows pointing northeast and southwest. + example: [] + syntax: + content: ArrowNESW = 12 + return: + type: OpenTK.Platform.SystemCursorType +- uid: OpenTK.Platform.SystemCursorType.ArrowNWSE + commentId: F:OpenTK.Platform.SystemCursorType.ArrowNWSE + id: ArrowNWSE + parent: OpenTK.Platform.SystemCursorType + langs: + - csharp + - vb + name: ArrowNWSE + nameWithType: SystemCursorType.ArrowNWSE + fullName: OpenTK.Platform.SystemCursorType.ArrowNWSE + type: Field + source: + id: ArrowNWSE + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\SystemCursorType.cs + startLine: 72 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: A resize cursor with arrows pointing northwest and southeast. + example: [] + syntax: + content: ArrowNWSE = 13 + return: + type: OpenTK.Platform.SystemCursorType +- uid: OpenTK.Platform.SystemCursorType.ArrowUp + commentId: F:OpenTK.Platform.SystemCursorType.ArrowUp + id: ArrowUp + parent: OpenTK.Platform.SystemCursorType + langs: + - csharp + - vb + name: ArrowUp + nameWithType: SystemCursorType.ArrowUp + fullName: OpenTK.Platform.SystemCursorType.ArrowUp + type: Field + source: + id: ArrowUp + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\SystemCursorType.cs + startLine: 77 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: A cursor pointing up. + example: [] + syntax: + content: ArrowUp = 14 + return: + type: OpenTK.Platform.SystemCursorType +- uid: OpenTK.Platform.SystemCursorType.ArrowN + commentId: F:OpenTK.Platform.SystemCursorType.ArrowN + id: ArrowN + parent: OpenTK.Platform.SystemCursorType + langs: + - csharp + - vb + name: ArrowN + nameWithType: SystemCursorType.ArrowN + fullName: OpenTK.Platform.SystemCursorType.ArrowN + type: Field + source: + id: ArrowN + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\SystemCursorType.cs + startLine: 84 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: >- + A resize cursor pointing north.
+ + On windows this is the same as .
+ + On macos and X11 this will be an arrow pointing north. + example: [] + syntax: + content: ArrowN = 15 + return: + type: OpenTK.Platform.SystemCursorType +- uid: OpenTK.Platform.SystemCursorType.ArrowE + commentId: F:OpenTK.Platform.SystemCursorType.ArrowE + id: ArrowE + parent: OpenTK.Platform.SystemCursorType + langs: + - csharp + - vb + name: ArrowE + nameWithType: SystemCursorType.ArrowE + fullName: OpenTK.Platform.SystemCursorType.ArrowE + type: Field + source: + id: ArrowE + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\SystemCursorType.cs + startLine: 91 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: >- + A resize cursor pointing east.
+ + On windows this is the same as .
+ + On macos and X11 this will be an arrow pointing east. + example: [] + syntax: + content: ArrowE = 16 + return: + type: OpenTK.Platform.SystemCursorType +- uid: OpenTK.Platform.SystemCursorType.ArrowS + commentId: F:OpenTK.Platform.SystemCursorType.ArrowS + id: ArrowS + parent: OpenTK.Platform.SystemCursorType + langs: + - csharp + - vb + name: ArrowS + nameWithType: SystemCursorType.ArrowS + fullName: OpenTK.Platform.SystemCursorType.ArrowS + type: Field + source: + id: ArrowS + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\SystemCursorType.cs + startLine: 98 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: >- + A resize cursor pointing south.
+ + On windows this is the same as .
+ + On macos and X11 this will be an arrow pointing south. + example: [] + syntax: + content: ArrowS = 17 + return: + type: OpenTK.Platform.SystemCursorType +- uid: OpenTK.Platform.SystemCursorType.ArrowW + commentId: F:OpenTK.Platform.SystemCursorType.ArrowW + id: ArrowW + parent: OpenTK.Platform.SystemCursorType + langs: + - csharp + - vb + name: ArrowW + nameWithType: SystemCursorType.ArrowW + fullName: OpenTK.Platform.SystemCursorType.ArrowW + type: Field + source: + id: ArrowW + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\SystemCursorType.cs + startLine: 105 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: >- + A resize cursor pointing west.
+ + On windows this is the same as .
+ + On macos and X11 this will be an arrow pointing west. + example: [] + syntax: + content: ArrowW = 18 + return: + type: OpenTK.Platform.SystemCursorType +- uid: OpenTK.Platform.SystemCursorType.ArrowNE + commentId: F:OpenTK.Platform.SystemCursorType.ArrowNE + id: ArrowNE + parent: OpenTK.Platform.SystemCursorType + langs: + - csharp + - vb + name: ArrowNE + nameWithType: SystemCursorType.ArrowNE + fullName: OpenTK.Platform.SystemCursorType.ArrowNE + type: Field + source: + id: ArrowNE + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\SystemCursorType.cs + startLine: 112 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: >- + A resize cursor pointing northeast.
+ + On windows this is the same as .
+ + On macos and X11 this will be an arrow pointing northeast. + example: [] + syntax: + content: ArrowNE = 19 + return: + type: OpenTK.Platform.SystemCursorType +- uid: OpenTK.Platform.SystemCursorType.ArrowSE + commentId: F:OpenTK.Platform.SystemCursorType.ArrowSE + id: ArrowSE + parent: OpenTK.Platform.SystemCursorType + langs: + - csharp + - vb + name: ArrowSE + nameWithType: SystemCursorType.ArrowSE + fullName: OpenTK.Platform.SystemCursorType.ArrowSE + type: Field + source: + id: ArrowSE + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\SystemCursorType.cs + startLine: 119 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: >- + A resize cursor pointing southeast.
+ + On windows this is the same as .
+ + On macos and X11 this will be an arrow pointing southeast. + example: [] + syntax: + content: ArrowSE = 20 + return: + type: OpenTK.Platform.SystemCursorType +- uid: OpenTK.Platform.SystemCursorType.ArrowSW + commentId: F:OpenTK.Platform.SystemCursorType.ArrowSW + id: ArrowSW + parent: OpenTK.Platform.SystemCursorType + langs: + - csharp + - vb + name: ArrowSW + nameWithType: SystemCursorType.ArrowSW + fullName: OpenTK.Platform.SystemCursorType.ArrowSW + type: Field + source: + id: ArrowSW + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\SystemCursorType.cs + startLine: 126 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: >- + A resize cursor pointing southwest.
+ + On windows this is the same as .
+ + On macos and X11 this will be an arrow pointing southwest. + example: [] + syntax: + content: ArrowSW = 21 + return: + type: OpenTK.Platform.SystemCursorType +- uid: OpenTK.Platform.SystemCursorType.ArrowNW + commentId: F:OpenTK.Platform.SystemCursorType.ArrowNW + id: ArrowNW + parent: OpenTK.Platform.SystemCursorType + langs: + - csharp + - vb + name: ArrowNW + nameWithType: SystemCursorType.ArrowNW + fullName: OpenTK.Platform.SystemCursorType.ArrowNW + type: Field + source: + id: ArrowNW + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\SystemCursorType.cs + startLine: 133 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: >- + A resize cursor pointing northwest.
+ + On windows this is the same as .
+ + On macos and X11 this will be an arrow pointing northwest. + example: [] + syntax: + content: ArrowNW = 22 + return: + type: OpenTK.Platform.SystemCursorType +references: +- uid: OpenTK.Platform + commentId: N:OpenTK.Platform + href: OpenTK.html + name: OpenTK.Platform + nameWithType: OpenTK.Platform + fullName: OpenTK.Platform + spec.csharp: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Platform + name: Platform + href: OpenTK.Platform.html + spec.vb: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Platform + name: Platform + href: OpenTK.Platform.html +- uid: OpenTK.Platform.SystemCursorType + commentId: T:OpenTK.Platform.SystemCursorType + parent: OpenTK.Platform + href: OpenTK.Platform.SystemCursorType.html + name: SystemCursorType + nameWithType: SystemCursorType + fullName: OpenTK.Platform.SystemCursorType +- uid: OpenTK.Platform.SystemCursorType.ArrowNS + commentId: F:OpenTK.Platform.SystemCursorType.ArrowNS + href: OpenTK.Platform.SystemCursorType.html#OpenTK_Platform_SystemCursorType_ArrowNS + name: ArrowNS + nameWithType: SystemCursorType.ArrowNS + fullName: OpenTK.Platform.SystemCursorType.ArrowNS +- uid: OpenTK.Platform.SystemCursorType.ArrowEW + commentId: F:OpenTK.Platform.SystemCursorType.ArrowEW + href: OpenTK.Platform.SystemCursorType.html#OpenTK_Platform_SystemCursorType_ArrowEW + name: ArrowEW + nameWithType: SystemCursorType.ArrowEW + fullName: OpenTK.Platform.SystemCursorType.ArrowEW +- uid: OpenTK.Platform.SystemCursorType.ArrowNESW + commentId: F:OpenTK.Platform.SystemCursorType.ArrowNESW + href: OpenTK.Platform.SystemCursorType.html#OpenTK_Platform_SystemCursorType_ArrowNESW + name: ArrowNESW + nameWithType: SystemCursorType.ArrowNESW + fullName: OpenTK.Platform.SystemCursorType.ArrowNESW +- uid: OpenTK.Platform.SystemCursorType.ArrowNWSE + commentId: F:OpenTK.Platform.SystemCursorType.ArrowNWSE + href: OpenTK.Platform.SystemCursorType.html#OpenTK_Platform_SystemCursorType_ArrowNWSE + name: ArrowNWSE + nameWithType: SystemCursorType.ArrowNWSE + fullName: OpenTK.Platform.SystemCursorType.ArrowNWSE diff --git a/api/OpenTK.Platform.SystemIconType.yml b/api/OpenTK.Platform.SystemIconType.yml new file mode 100644 index 00000000..759b8853 --- /dev/null +++ b/api/OpenTK.Platform.SystemIconType.yml @@ -0,0 +1,231 @@ +### YamlMime:ManagedReference +items: +- uid: OpenTK.Platform.SystemIconType + commentId: T:OpenTK.Platform.SystemIconType + id: SystemIconType + parent: OpenTK.Platform + children: + - OpenTK.Platform.SystemIconType.Default + - OpenTK.Platform.SystemIconType.Error + - OpenTK.Platform.SystemIconType.Information + - OpenTK.Platform.SystemIconType.OperatingSystem + - OpenTK.Platform.SystemIconType.Question + - OpenTK.Platform.SystemIconType.Shield + - OpenTK.Platform.SystemIconType.Warning + langs: + - csharp + - vb + name: SystemIconType + nameWithType: SystemIconType + fullName: OpenTK.Platform.SystemIconType + type: Enum + source: + id: SystemIconType + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\SystemIconType.cs + startLine: 19 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Enumeration of system icons based on the Win32 base icon set. + example: [] + syntax: + content: public enum SystemIconType + content.vb: Public Enum SystemIconType +- uid: OpenTK.Platform.SystemIconType.Default + commentId: F:OpenTK.Platform.SystemIconType.Default + id: Default + parent: OpenTK.Platform.SystemIconType + langs: + - csharp + - vb + name: Default + nameWithType: SystemIconType.Default + fullName: OpenTK.Platform.SystemIconType.Default + type: Field + source: + id: Default + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\SystemIconType.cs + startLine: 24 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Default icon for applications. + example: [] + syntax: + content: Default = 1 + return: + type: OpenTK.Platform.SystemIconType +- uid: OpenTK.Platform.SystemIconType.Error + commentId: F:OpenTK.Platform.SystemIconType.Error + id: Error + parent: OpenTK.Platform.SystemIconType + langs: + - csharp + - vb + name: Error + nameWithType: SystemIconType.Error + fullName: OpenTK.Platform.SystemIconType.Error + type: Field + source: + id: Error + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\SystemIconType.cs + startLine: 29 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Error icon. + example: [] + syntax: + content: Error = 2 + return: + type: OpenTK.Platform.SystemIconType +- uid: OpenTK.Platform.SystemIconType.Information + commentId: F:OpenTK.Platform.SystemIconType.Information + id: Information + parent: OpenTK.Platform.SystemIconType + langs: + - csharp + - vb + name: Information + nameWithType: SystemIconType.Information + fullName: OpenTK.Platform.SystemIconType.Information + type: Field + source: + id: Information + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\SystemIconType.cs + startLine: 34 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: An icon with an encircled letter I. + example: [] + syntax: + content: Information = 3 + return: + type: OpenTK.Platform.SystemIconType +- uid: OpenTK.Platform.SystemIconType.Question + commentId: F:OpenTK.Platform.SystemIconType.Question + id: Question + parent: OpenTK.Platform.SystemIconType + langs: + - csharp + - vb + name: Question + nameWithType: SystemIconType.Question + fullName: OpenTK.Platform.SystemIconType.Question + type: Field + source: + id: Question + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\SystemIconType.cs + startLine: 39 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: An icon with a question mark. + example: [] + syntax: + content: Question = 4 + return: + type: OpenTK.Platform.SystemIconType +- uid: OpenTK.Platform.SystemIconType.Shield + commentId: F:OpenTK.Platform.SystemIconType.Shield + id: Shield + parent: OpenTK.Platform.SystemIconType + langs: + - csharp + - vb + name: Shield + nameWithType: SystemIconType.Shield + fullName: OpenTK.Platform.SystemIconType.Shield + type: Field + source: + id: Shield + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\SystemIconType.cs + startLine: 44 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: An icon related to security and super user priveleges. + example: [] + syntax: + content: Shield = 5 + return: + type: OpenTK.Platform.SystemIconType +- uid: OpenTK.Platform.SystemIconType.Warning + commentId: F:OpenTK.Platform.SystemIconType.Warning + id: Warning + parent: OpenTK.Platform.SystemIconType + langs: + - csharp + - vb + name: Warning + nameWithType: SystemIconType.Warning + fullName: OpenTK.Platform.SystemIconType.Warning + type: Field + source: + id: Warning + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\SystemIconType.cs + startLine: 49 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: An icon which represents a warning. + example: [] + syntax: + content: Warning = 6 + return: + type: OpenTK.Platform.SystemIconType +- uid: OpenTK.Platform.SystemIconType.OperatingSystem + commentId: F:OpenTK.Platform.SystemIconType.OperatingSystem + id: OperatingSystem + parent: OpenTK.Platform.SystemIconType + langs: + - csharp + - vb + name: OperatingSystem + nameWithType: SystemIconType.OperatingSystem + fullName: OpenTK.Platform.SystemIconType.OperatingSystem + type: Field + source: + id: OperatingSystem + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\SystemIconType.cs + startLine: 55 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: An icon displaying the operating system logo. + example: [] + syntax: + content: OperatingSystem = 7 + return: + type: OpenTK.Platform.SystemIconType +references: +- uid: OpenTK.Platform + commentId: N:OpenTK.Platform + href: OpenTK.html + name: OpenTK.Platform + nameWithType: OpenTK.Platform + fullName: OpenTK.Platform + spec.csharp: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Platform + name: Platform + href: OpenTK.Platform.html + spec.vb: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Platform + name: Platform + href: OpenTK.Platform.html +- uid: OpenTK.Platform.SystemIconType + commentId: T:OpenTK.Platform.SystemIconType + parent: OpenTK.Platform + href: OpenTK.Platform.SystemIconType.html + name: SystemIconType + nameWithType: SystemIconType + fullName: OpenTK.Platform.SystemIconType diff --git a/api/OpenTK.Core.Platform.SystemMemoryInfo.yml b/api/OpenTK.Platform.SystemMemoryInfo.yml similarity index 80% rename from api/OpenTK.Core.Platform.SystemMemoryInfo.yml rename to api/OpenTK.Platform.SystemMemoryInfo.yml index 6ced8b59..dce17b09 100644 --- a/api/OpenTK.Core.Platform.SystemMemoryInfo.yml +++ b/api/OpenTK.Platform.SystemMemoryInfo.yml @@ -1,30 +1,26 @@ ### YamlMime:ManagedReference items: -- uid: OpenTK.Core.Platform.SystemMemoryInfo - commentId: T:OpenTK.Core.Platform.SystemMemoryInfo +- uid: OpenTK.Platform.SystemMemoryInfo + commentId: T:OpenTK.Platform.SystemMemoryInfo id: SystemMemoryInfo - parent: OpenTK.Core.Platform + parent: OpenTK.Platform children: - - OpenTK.Core.Platform.SystemMemoryInfo.AvailablePhysicalMemory - - OpenTK.Core.Platform.SystemMemoryInfo.TotalPhysicalMemory + - OpenTK.Platform.SystemMemoryInfo.AvailablePhysicalMemory + - OpenTK.Platform.SystemMemoryInfo.TotalPhysicalMemory langs: - csharp - vb name: SystemMemoryInfo nameWithType: SystemMemoryInfo - fullName: OpenTK.Core.Platform.SystemMemoryInfo + fullName: OpenTK.Platform.SystemMemoryInfo type: Struct source: - remote: - path: src/OpenTK.Core/Platform/SystemMemoryInfo.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SystemMemoryInfo - path: opentk/src/OpenTK.Core/Platform/SystemMemoryInfo.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\SystemMemoryInfo.cs startLine: 11 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform + - OpenTK.Platform + namespace: OpenTK.Platform summary: Contains information about the current state of physical memory. example: [] syntax: @@ -37,58 +33,53 @@ items: - System.Object.Equals(System.Object,System.Object) - System.Object.GetType - System.Object.ReferenceEquals(System.Object,System.Object) -- uid: OpenTK.Core.Platform.SystemMemoryInfo.TotalPhysicalMemory - commentId: F:OpenTK.Core.Platform.SystemMemoryInfo.TotalPhysicalMemory +- uid: OpenTK.Platform.SystemMemoryInfo.TotalPhysicalMemory + commentId: F:OpenTK.Platform.SystemMemoryInfo.TotalPhysicalMemory id: TotalPhysicalMemory - parent: OpenTK.Core.Platform.SystemMemoryInfo + parent: OpenTK.Platform.SystemMemoryInfo langs: - csharp - vb name: TotalPhysicalMemory nameWithType: SystemMemoryInfo.TotalPhysicalMemory - fullName: OpenTK.Core.Platform.SystemMemoryInfo.TotalPhysicalMemory + fullName: OpenTK.Platform.SystemMemoryInfo.TotalPhysicalMemory type: Field source: - remote: - path: src/OpenTK.Core/Platform/SystemMemoryInfo.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TotalPhysicalMemory - path: opentk/src/OpenTK.Core/Platform/SystemMemoryInfo.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\SystemMemoryInfo.cs startLine: 16 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: The amount of physical memory in bytes. + - OpenTK.Platform + namespace: OpenTK.Platform + summary: The amount of physical memory (RAM) in bytes. example: [] syntax: content: public long TotalPhysicalMemory return: type: System.Int64 content.vb: Public TotalPhysicalMemory As Long -- uid: OpenTK.Core.Platform.SystemMemoryInfo.AvailablePhysicalMemory - commentId: F:OpenTK.Core.Platform.SystemMemoryInfo.AvailablePhysicalMemory +- uid: OpenTK.Platform.SystemMemoryInfo.AvailablePhysicalMemory + commentId: F:OpenTK.Platform.SystemMemoryInfo.AvailablePhysicalMemory id: AvailablePhysicalMemory - parent: OpenTK.Core.Platform.SystemMemoryInfo + parent: OpenTK.Platform.SystemMemoryInfo langs: - csharp - vb name: AvailablePhysicalMemory nameWithType: SystemMemoryInfo.AvailablePhysicalMemory - fullName: OpenTK.Core.Platform.SystemMemoryInfo.AvailablePhysicalMemory + fullName: OpenTK.Platform.SystemMemoryInfo.AvailablePhysicalMemory type: Field source: - remote: - path: src/OpenTK.Core/Platform/SystemMemoryInfo.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: AvailablePhysicalMemory - path: opentk/src/OpenTK.Core/Platform/SystemMemoryInfo.cs - startLine: 21 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\SystemMemoryInfo.cs + startLine: 22 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: The amount of available physical memory in bytes. + - OpenTK.Platform + namespace: OpenTK.Platform + summary: >- + The amount of available physical memory (RAM) in bytes. + + This is a rough estimate of available physical memory . example: [] syntax: content: public long AvailablePhysicalMemory @@ -96,36 +87,28 @@ items: type: System.Int64 content.vb: Public AvailablePhysicalMemory As Long references: -- uid: OpenTK.Core.Platform - commentId: N:OpenTK.Core.Platform +- uid: OpenTK.Platform + commentId: N:OpenTK.Platform href: OpenTK.html - name: OpenTK.Core.Platform - nameWithType: OpenTK.Core.Platform - fullName: OpenTK.Core.Platform + name: OpenTK.Platform + nameWithType: OpenTK.Platform + fullName: OpenTK.Platform spec.csharp: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html spec.vb: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html - uid: System.ValueType.Equals(System.Object) commentId: M:System.ValueType.Equals(System.Object) parent: System.ValueType diff --git a/api/OpenTK.Core.Platform.TextEditingEventArgs.yml b/api/OpenTK.Platform.TextEditingEventArgs.yml similarity index 66% rename from api/OpenTK.Core.Platform.TextEditingEventArgs.yml rename to api/OpenTK.Platform.TextEditingEventArgs.yml index aaecce72..bfaa16e0 100644 --- a/api/OpenTK.Core.Platform.TextEditingEventArgs.yml +++ b/api/OpenTK.Platform.TextEditingEventArgs.yml @@ -1,32 +1,28 @@ ### YamlMime:ManagedReference items: -- uid: OpenTK.Core.Platform.TextEditingEventArgs - commentId: T:OpenTK.Core.Platform.TextEditingEventArgs +- uid: OpenTK.Platform.TextEditingEventArgs + commentId: T:OpenTK.Platform.TextEditingEventArgs id: TextEditingEventArgs - parent: OpenTK.Core.Platform + parent: OpenTK.Platform children: - - OpenTK.Core.Platform.TextEditingEventArgs.#ctor(OpenTK.Core.Platform.WindowHandle,System.String,System.Int32,System.Int32) - - OpenTK.Core.Platform.TextEditingEventArgs.Candidate - - OpenTK.Core.Platform.TextEditingEventArgs.Cursor - - OpenTK.Core.Platform.TextEditingEventArgs.Length + - OpenTK.Platform.TextEditingEventArgs.#ctor(OpenTK.Platform.WindowHandle,System.String,System.Int32,System.Int32) + - OpenTK.Platform.TextEditingEventArgs.Candidate + - OpenTK.Platform.TextEditingEventArgs.Cursor + - OpenTK.Platform.TextEditingEventArgs.Length langs: - csharp - vb name: TextEditingEventArgs nameWithType: TextEditingEventArgs - fullName: OpenTK.Core.Platform.TextEditingEventArgs + fullName: OpenTK.Platform.TextEditingEventArgs type: Class source: - remote: - path: src/OpenTK.Core/Platform/WindowEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TextEditingEventArgs - path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\WindowEventArgs.cs startLine: 297 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform + - OpenTK.Platform + namespace: OpenTK.Platform summary: This event is triggered when the user is composing text using something like IME (e.g. Chinese, Japanese, or Korean). example: [] syntax: @@ -35,9 +31,9 @@ items: inheritance: - System.Object - System.EventArgs - - OpenTK.Core.Platform.WindowEventArgs + - OpenTK.Platform.WindowEventArgs inheritedMembers: - - OpenTK.Core.Platform.WindowEventArgs.Window + - OpenTK.Platform.WindowEventArgs.Window - System.EventArgs.Empty - System.Object.Equals(System.Object) - System.Object.Equals(System.Object,System.Object) @@ -46,28 +42,24 @@ items: - System.Object.MemberwiseClone - System.Object.ReferenceEquals(System.Object,System.Object) - System.Object.ToString -- uid: OpenTK.Core.Platform.TextEditingEventArgs.Candidate - commentId: P:OpenTK.Core.Platform.TextEditingEventArgs.Candidate +- uid: OpenTK.Platform.TextEditingEventArgs.Candidate + commentId: P:OpenTK.Platform.TextEditingEventArgs.Candidate id: Candidate - parent: OpenTK.Core.Platform.TextEditingEventArgs + parent: OpenTK.Platform.TextEditingEventArgs langs: - csharp - vb name: Candidate nameWithType: TextEditingEventArgs.Candidate - fullName: OpenTK.Core.Platform.TextEditingEventArgs.Candidate + fullName: OpenTK.Platform.TextEditingEventArgs.Candidate type: Property source: - remote: - path: src/OpenTK.Core/Platform/WindowEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Candidate - path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\WindowEventArgs.cs startLine: 302 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform + - OpenTK.Platform + namespace: OpenTK.Platform summary: The candidate string. example: [] syntax: @@ -76,29 +68,25 @@ items: return: type: System.String content.vb: Public Property Candidate As String - overload: OpenTK.Core.Platform.TextEditingEventArgs.Candidate* -- uid: OpenTK.Core.Platform.TextEditingEventArgs.Cursor - commentId: P:OpenTK.Core.Platform.TextEditingEventArgs.Cursor + overload: OpenTK.Platform.TextEditingEventArgs.Candidate* +- uid: OpenTK.Platform.TextEditingEventArgs.Cursor + commentId: P:OpenTK.Platform.TextEditingEventArgs.Cursor id: Cursor - parent: OpenTK.Core.Platform.TextEditingEventArgs + parent: OpenTK.Platform.TextEditingEventArgs langs: - csharp - vb name: Cursor nameWithType: TextEditingEventArgs.Cursor - fullName: OpenTK.Core.Platform.TextEditingEventArgs.Cursor + fullName: OpenTK.Platform.TextEditingEventArgs.Cursor type: Property source: - remote: - path: src/OpenTK.Core/Platform/WindowEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Cursor - path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\WindowEventArgs.cs startLine: 307 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform + - OpenTK.Platform + namespace: OpenTK.Platform summary: The caret position within the candidate string. example: [] syntax: @@ -107,29 +95,25 @@ items: return: type: System.Int32 content.vb: Public Property Cursor As Integer - overload: OpenTK.Core.Platform.TextEditingEventArgs.Cursor* -- uid: OpenTK.Core.Platform.TextEditingEventArgs.Length - commentId: P:OpenTK.Core.Platform.TextEditingEventArgs.Length + overload: OpenTK.Platform.TextEditingEventArgs.Cursor* +- uid: OpenTK.Platform.TextEditingEventArgs.Length + commentId: P:OpenTK.Platform.TextEditingEventArgs.Length id: Length - parent: OpenTK.Core.Platform.TextEditingEventArgs + parent: OpenTK.Platform.TextEditingEventArgs langs: - csharp - vb name: Length nameWithType: TextEditingEventArgs.Length - fullName: OpenTK.Core.Platform.TextEditingEventArgs.Length + fullName: OpenTK.Platform.TextEditingEventArgs.Length type: Property source: - remote: - path: src/OpenTK.Core/Platform/WindowEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Length - path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\WindowEventArgs.cs startLine: 312 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform + - OpenTK.Platform + namespace: OpenTK.Platform summary: The length of the text being edited. example: [] syntax: @@ -138,36 +122,32 @@ items: return: type: System.Int32 content.vb: Public Property Length As Integer - overload: OpenTK.Core.Platform.TextEditingEventArgs.Length* -- uid: OpenTK.Core.Platform.TextEditingEventArgs.#ctor(OpenTK.Core.Platform.WindowHandle,System.String,System.Int32,System.Int32) - commentId: M:OpenTK.Core.Platform.TextEditingEventArgs.#ctor(OpenTK.Core.Platform.WindowHandle,System.String,System.Int32,System.Int32) - id: '#ctor(OpenTK.Core.Platform.WindowHandle,System.String,System.Int32,System.Int32)' - parent: OpenTK.Core.Platform.TextEditingEventArgs + overload: OpenTK.Platform.TextEditingEventArgs.Length* +- uid: OpenTK.Platform.TextEditingEventArgs.#ctor(OpenTK.Platform.WindowHandle,System.String,System.Int32,System.Int32) + commentId: M:OpenTK.Platform.TextEditingEventArgs.#ctor(OpenTK.Platform.WindowHandle,System.String,System.Int32,System.Int32) + id: '#ctor(OpenTK.Platform.WindowHandle,System.String,System.Int32,System.Int32)' + parent: OpenTK.Platform.TextEditingEventArgs langs: - csharp - vb name: TextEditingEventArgs(WindowHandle, string, int, int) nameWithType: TextEditingEventArgs.TextEditingEventArgs(WindowHandle, string, int, int) - fullName: OpenTK.Core.Platform.TextEditingEventArgs.TextEditingEventArgs(OpenTK.Core.Platform.WindowHandle, string, int, int) + fullName: OpenTK.Platform.TextEditingEventArgs.TextEditingEventArgs(OpenTK.Platform.WindowHandle, string, int, int) type: Constructor source: - remote: - path: src/OpenTK.Core/Platform/WindowEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\WindowEventArgs.cs startLine: 321 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Initializes a new instance of the class. + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Initializes a new instance of the class. example: [] syntax: content: public TextEditingEventArgs(WindowHandle window, string candidate, int cursor, int length) parameters: - id: window - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: The window in which the text is being edited. - id: candidate type: System.String @@ -179,41 +159,33 @@ items: type: System.Int32 description: The length of the text being edited. content.vb: Public Sub New(window As WindowHandle, candidate As String, cursor As Integer, length As Integer) - overload: OpenTK.Core.Platform.TextEditingEventArgs.#ctor* + overload: OpenTK.Platform.TextEditingEventArgs.#ctor* nameWithType.vb: TextEditingEventArgs.New(WindowHandle, String, Integer, Integer) - fullName.vb: OpenTK.Core.Platform.TextEditingEventArgs.New(OpenTK.Core.Platform.WindowHandle, String, Integer, Integer) + fullName.vb: OpenTK.Platform.TextEditingEventArgs.New(OpenTK.Platform.WindowHandle, String, Integer, Integer) name.vb: New(WindowHandle, String, Integer, Integer) references: -- uid: OpenTK.Core.Platform - commentId: N:OpenTK.Core.Platform +- uid: OpenTK.Platform + commentId: N:OpenTK.Platform href: OpenTK.html - name: OpenTK.Core.Platform - nameWithType: OpenTK.Core.Platform - fullName: OpenTK.Core.Platform + name: OpenTK.Platform + nameWithType: OpenTK.Platform + fullName: OpenTK.Platform spec.csharp: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html spec.vb: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html - uid: System.Object commentId: T:System.Object parent: System @@ -233,20 +205,20 @@ references: name: EventArgs nameWithType: EventArgs fullName: System.EventArgs -- uid: OpenTK.Core.Platform.WindowEventArgs - commentId: T:OpenTK.Core.Platform.WindowEventArgs - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.WindowEventArgs.html +- uid: OpenTK.Platform.WindowEventArgs + commentId: T:OpenTK.Platform.WindowEventArgs + parent: OpenTK.Platform + href: OpenTK.Platform.WindowEventArgs.html name: WindowEventArgs nameWithType: WindowEventArgs - fullName: OpenTK.Core.Platform.WindowEventArgs -- uid: OpenTK.Core.Platform.WindowEventArgs.Window - commentId: P:OpenTK.Core.Platform.WindowEventArgs.Window - parent: OpenTK.Core.Platform.WindowEventArgs - href: OpenTK.Core.Platform.WindowEventArgs.html#OpenTK_Core_Platform_WindowEventArgs_Window + fullName: OpenTK.Platform.WindowEventArgs +- uid: OpenTK.Platform.WindowEventArgs.Window + commentId: P:OpenTK.Platform.WindowEventArgs.Window + parent: OpenTK.Platform.WindowEventArgs + href: OpenTK.Platform.WindowEventArgs.html#OpenTK_Platform_WindowEventArgs_Window name: Window nameWithType: WindowEventArgs.Window - fullName: OpenTK.Core.Platform.WindowEventArgs.Window + fullName: OpenTK.Platform.WindowEventArgs.Window - uid: System.EventArgs.Empty commentId: F:System.EventArgs.Empty parent: System.EventArgs @@ -481,12 +453,12 @@ references: name: System nameWithType: System fullName: System -- uid: OpenTK.Core.Platform.TextEditingEventArgs.Candidate* - commentId: Overload:OpenTK.Core.Platform.TextEditingEventArgs.Candidate - href: OpenTK.Core.Platform.TextEditingEventArgs.html#OpenTK_Core_Platform_TextEditingEventArgs_Candidate +- uid: OpenTK.Platform.TextEditingEventArgs.Candidate* + commentId: Overload:OpenTK.Platform.TextEditingEventArgs.Candidate + href: OpenTK.Platform.TextEditingEventArgs.html#OpenTK_Platform_TextEditingEventArgs_Candidate name: Candidate nameWithType: TextEditingEventArgs.Candidate - fullName: OpenTK.Core.Platform.TextEditingEventArgs.Candidate + fullName: OpenTK.Platform.TextEditingEventArgs.Candidate - uid: System.String commentId: T:System.String parent: System @@ -498,12 +470,12 @@ references: nameWithType.vb: String fullName.vb: String name.vb: String -- uid: OpenTK.Core.Platform.TextEditingEventArgs.Cursor* - commentId: Overload:OpenTK.Core.Platform.TextEditingEventArgs.Cursor - href: OpenTK.Core.Platform.TextEditingEventArgs.html#OpenTK_Core_Platform_TextEditingEventArgs_Cursor +- uid: OpenTK.Platform.TextEditingEventArgs.Cursor* + commentId: Overload:OpenTK.Platform.TextEditingEventArgs.Cursor + href: OpenTK.Platform.TextEditingEventArgs.html#OpenTK_Platform_TextEditingEventArgs_Cursor name: Cursor nameWithType: TextEditingEventArgs.Cursor - fullName: OpenTK.Core.Platform.TextEditingEventArgs.Cursor + fullName: OpenTK.Platform.TextEditingEventArgs.Cursor - uid: System.Int32 commentId: T:System.Int32 parent: System @@ -515,31 +487,31 @@ references: nameWithType.vb: Integer fullName.vb: Integer name.vb: Integer -- uid: OpenTK.Core.Platform.TextEditingEventArgs.Length* - commentId: Overload:OpenTK.Core.Platform.TextEditingEventArgs.Length - href: OpenTK.Core.Platform.TextEditingEventArgs.html#OpenTK_Core_Platform_TextEditingEventArgs_Length +- uid: OpenTK.Platform.TextEditingEventArgs.Length* + commentId: Overload:OpenTK.Platform.TextEditingEventArgs.Length + href: OpenTK.Platform.TextEditingEventArgs.html#OpenTK_Platform_TextEditingEventArgs_Length name: Length nameWithType: TextEditingEventArgs.Length - fullName: OpenTK.Core.Platform.TextEditingEventArgs.Length -- uid: OpenTK.Core.Platform.TextEditingEventArgs - commentId: T:OpenTK.Core.Platform.TextEditingEventArgs - href: OpenTK.Core.Platform.TextEditingEventArgs.html + fullName: OpenTK.Platform.TextEditingEventArgs.Length +- uid: OpenTK.Platform.TextEditingEventArgs + commentId: T:OpenTK.Platform.TextEditingEventArgs + href: OpenTK.Platform.TextEditingEventArgs.html name: TextEditingEventArgs nameWithType: TextEditingEventArgs - fullName: OpenTK.Core.Platform.TextEditingEventArgs -- uid: OpenTK.Core.Platform.TextEditingEventArgs.#ctor* - commentId: Overload:OpenTK.Core.Platform.TextEditingEventArgs.#ctor - href: OpenTK.Core.Platform.TextEditingEventArgs.html#OpenTK_Core_Platform_TextEditingEventArgs__ctor_OpenTK_Core_Platform_WindowHandle_System_String_System_Int32_System_Int32_ + fullName: OpenTK.Platform.TextEditingEventArgs +- uid: OpenTK.Platform.TextEditingEventArgs.#ctor* + commentId: Overload:OpenTK.Platform.TextEditingEventArgs.#ctor + href: OpenTK.Platform.TextEditingEventArgs.html#OpenTK_Platform_TextEditingEventArgs__ctor_OpenTK_Platform_WindowHandle_System_String_System_Int32_System_Int32_ name: TextEditingEventArgs nameWithType: TextEditingEventArgs.TextEditingEventArgs - fullName: OpenTK.Core.Platform.TextEditingEventArgs.TextEditingEventArgs + fullName: OpenTK.Platform.TextEditingEventArgs.TextEditingEventArgs nameWithType.vb: TextEditingEventArgs.New - fullName.vb: OpenTK.Core.Platform.TextEditingEventArgs.New + fullName.vb: OpenTK.Platform.TextEditingEventArgs.New name.vb: New -- uid: OpenTK.Core.Platform.WindowHandle - commentId: T:OpenTK.Core.Platform.WindowHandle - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.WindowHandle.html +- uid: OpenTK.Platform.WindowHandle + commentId: T:OpenTK.Platform.WindowHandle + parent: OpenTK.Platform + href: OpenTK.Platform.WindowHandle.html name: WindowHandle nameWithType: WindowHandle - fullName: OpenTK.Core.Platform.WindowHandle + fullName: OpenTK.Platform.WindowHandle diff --git a/api/OpenTK.Core.Platform.TextInputEventArgs.yml b/api/OpenTK.Platform.TextInputEventArgs.yml similarity index 70% rename from api/OpenTK.Core.Platform.TextInputEventArgs.yml rename to api/OpenTK.Platform.TextInputEventArgs.yml index bb0fdca3..d22696f7 100644 --- a/api/OpenTK.Core.Platform.TextInputEventArgs.yml +++ b/api/OpenTK.Platform.TextInputEventArgs.yml @@ -1,44 +1,40 @@ ### YamlMime:ManagedReference items: -- uid: OpenTK.Core.Platform.TextInputEventArgs - commentId: T:OpenTK.Core.Platform.TextInputEventArgs +- uid: OpenTK.Platform.TextInputEventArgs + commentId: T:OpenTK.Platform.TextInputEventArgs id: TextInputEventArgs - parent: OpenTK.Core.Platform + parent: OpenTK.Platform children: - - OpenTK.Core.Platform.TextInputEventArgs.#ctor(OpenTK.Core.Platform.WindowHandle,System.String) - - OpenTK.Core.Platform.TextInputEventArgs.Text + - OpenTK.Platform.TextInputEventArgs.#ctor(OpenTK.Platform.WindowHandle,System.String) + - OpenTK.Platform.TextInputEventArgs.Text langs: - csharp - vb name: TextInputEventArgs nameWithType: TextInputEventArgs - fullName: OpenTK.Core.Platform.TextInputEventArgs + fullName: OpenTK.Platform.TextInputEventArgs type: Class source: - remote: - path: src/OpenTK.Core/Platform/WindowEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TextInputEventArgs - path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\WindowEventArgs.cs startLine: 276 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform + - OpenTK.Platform + namespace: OpenTK.Platform summary: This event is triggered when the user has typed text. example: [] syntax: content: 'public class TextInputEventArgs : WindowEventArgs' content.vb: Public Class TextInputEventArgs Inherits WindowEventArgs seealso: - - linkId: OpenTK.Core.Platform.TextEditingEventArgs - commentId: T:OpenTK.Core.Platform.TextEditingEventArgs + - linkId: OpenTK.Platform.TextEditingEventArgs + commentId: T:OpenTK.Platform.TextEditingEventArgs inheritance: - System.Object - System.EventArgs - - OpenTK.Core.Platform.WindowEventArgs + - OpenTK.Platform.WindowEventArgs inheritedMembers: - - OpenTK.Core.Platform.WindowEventArgs.Window + - OpenTK.Platform.WindowEventArgs.Window - System.EventArgs.Empty - System.Object.Equals(System.Object) - System.Object.Equals(System.Object,System.Object) @@ -47,28 +43,24 @@ items: - System.Object.MemberwiseClone - System.Object.ReferenceEquals(System.Object,System.Object) - System.Object.ToString -- uid: OpenTK.Core.Platform.TextInputEventArgs.Text - commentId: P:OpenTK.Core.Platform.TextInputEventArgs.Text +- uid: OpenTK.Platform.TextInputEventArgs.Text + commentId: P:OpenTK.Platform.TextInputEventArgs.Text id: Text - parent: OpenTK.Core.Platform.TextInputEventArgs + parent: OpenTK.Platform.TextInputEventArgs langs: - csharp - vb name: Text nameWithType: TextInputEventArgs.Text - fullName: OpenTK.Core.Platform.TextInputEventArgs.Text + fullName: OpenTK.Platform.TextInputEventArgs.Text type: Property source: - remote: - path: src/OpenTK.Core/Platform/WindowEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Text - path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\WindowEventArgs.cs startLine: 281 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform + - OpenTK.Platform + namespace: OpenTK.Platform summary: The text the user entered. example: [] syntax: @@ -77,82 +69,70 @@ items: return: type: System.String content.vb: Public Property Text As String - overload: OpenTK.Core.Platform.TextInputEventArgs.Text* -- uid: OpenTK.Core.Platform.TextInputEventArgs.#ctor(OpenTK.Core.Platform.WindowHandle,System.String) - commentId: M:OpenTK.Core.Platform.TextInputEventArgs.#ctor(OpenTK.Core.Platform.WindowHandle,System.String) - id: '#ctor(OpenTK.Core.Platform.WindowHandle,System.String)' - parent: OpenTK.Core.Platform.TextInputEventArgs + overload: OpenTK.Platform.TextInputEventArgs.Text* +- uid: OpenTK.Platform.TextInputEventArgs.#ctor(OpenTK.Platform.WindowHandle,System.String) + commentId: M:OpenTK.Platform.TextInputEventArgs.#ctor(OpenTK.Platform.WindowHandle,System.String) + id: '#ctor(OpenTK.Platform.WindowHandle,System.String)' + parent: OpenTK.Platform.TextInputEventArgs langs: - csharp - vb name: TextInputEventArgs(WindowHandle, string) nameWithType: TextInputEventArgs.TextInputEventArgs(WindowHandle, string) - fullName: OpenTK.Core.Platform.TextInputEventArgs.TextInputEventArgs(OpenTK.Core.Platform.WindowHandle, string) + fullName: OpenTK.Platform.TextInputEventArgs.TextInputEventArgs(OpenTK.Platform.WindowHandle, string) type: Constructor source: - remote: - path: src/OpenTK.Core/Platform/WindowEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\WindowEventArgs.cs startLine: 288 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Initializes a new instance of the class. + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Initializes a new instance of the class. example: [] syntax: content: public TextInputEventArgs(WindowHandle window, string text) parameters: - id: window - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: The window which received this text input. - id: text type: System.String description: The typed text. content.vb: Public Sub New(window As WindowHandle, text As String) - overload: OpenTK.Core.Platform.TextInputEventArgs.#ctor* + overload: OpenTK.Platform.TextInputEventArgs.#ctor* nameWithType.vb: TextInputEventArgs.New(WindowHandle, String) - fullName.vb: OpenTK.Core.Platform.TextInputEventArgs.New(OpenTK.Core.Platform.WindowHandle, String) + fullName.vb: OpenTK.Platform.TextInputEventArgs.New(OpenTK.Platform.WindowHandle, String) name.vb: New(WindowHandle, String) references: -- uid: OpenTK.Core.Platform.TextEditingEventArgs - commentId: T:OpenTK.Core.Platform.TextEditingEventArgs - href: OpenTK.Core.Platform.TextEditingEventArgs.html +- uid: OpenTK.Platform.TextEditingEventArgs + commentId: T:OpenTK.Platform.TextEditingEventArgs + href: OpenTK.Platform.TextEditingEventArgs.html name: TextEditingEventArgs nameWithType: TextEditingEventArgs - fullName: OpenTK.Core.Platform.TextEditingEventArgs -- uid: OpenTK.Core.Platform - commentId: N:OpenTK.Core.Platform + fullName: OpenTK.Platform.TextEditingEventArgs +- uid: OpenTK.Platform + commentId: N:OpenTK.Platform href: OpenTK.html - name: OpenTK.Core.Platform - nameWithType: OpenTK.Core.Platform - fullName: OpenTK.Core.Platform + name: OpenTK.Platform + nameWithType: OpenTK.Platform + fullName: OpenTK.Platform spec.csharp: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html spec.vb: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html - uid: System.Object commentId: T:System.Object parent: System @@ -172,20 +152,20 @@ references: name: EventArgs nameWithType: EventArgs fullName: System.EventArgs -- uid: OpenTK.Core.Platform.WindowEventArgs - commentId: T:OpenTK.Core.Platform.WindowEventArgs - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.WindowEventArgs.html +- uid: OpenTK.Platform.WindowEventArgs + commentId: T:OpenTK.Platform.WindowEventArgs + parent: OpenTK.Platform + href: OpenTK.Platform.WindowEventArgs.html name: WindowEventArgs nameWithType: WindowEventArgs - fullName: OpenTK.Core.Platform.WindowEventArgs -- uid: OpenTK.Core.Platform.WindowEventArgs.Window - commentId: P:OpenTK.Core.Platform.WindowEventArgs.Window - parent: OpenTK.Core.Platform.WindowEventArgs - href: OpenTK.Core.Platform.WindowEventArgs.html#OpenTK_Core_Platform_WindowEventArgs_Window + fullName: OpenTK.Platform.WindowEventArgs +- uid: OpenTK.Platform.WindowEventArgs.Window + commentId: P:OpenTK.Platform.WindowEventArgs.Window + parent: OpenTK.Platform.WindowEventArgs + href: OpenTK.Platform.WindowEventArgs.html#OpenTK_Platform_WindowEventArgs_Window name: Window nameWithType: WindowEventArgs.Window - fullName: OpenTK.Core.Platform.WindowEventArgs.Window + fullName: OpenTK.Platform.WindowEventArgs.Window - uid: System.EventArgs.Empty commentId: F:System.EventArgs.Empty parent: System.EventArgs @@ -420,12 +400,12 @@ references: name: System nameWithType: System fullName: System -- uid: OpenTK.Core.Platform.TextInputEventArgs.Text* - commentId: Overload:OpenTK.Core.Platform.TextInputEventArgs.Text - href: OpenTK.Core.Platform.TextInputEventArgs.html#OpenTK_Core_Platform_TextInputEventArgs_Text +- uid: OpenTK.Platform.TextInputEventArgs.Text* + commentId: Overload:OpenTK.Platform.TextInputEventArgs.Text + href: OpenTK.Platform.TextInputEventArgs.html#OpenTK_Platform_TextInputEventArgs_Text name: Text nameWithType: TextInputEventArgs.Text - fullName: OpenTK.Core.Platform.TextInputEventArgs.Text + fullName: OpenTK.Platform.TextInputEventArgs.Text - uid: System.String commentId: T:System.String parent: System @@ -437,25 +417,25 @@ references: nameWithType.vb: String fullName.vb: String name.vb: String -- uid: OpenTK.Core.Platform.TextInputEventArgs - commentId: T:OpenTK.Core.Platform.TextInputEventArgs - href: OpenTK.Core.Platform.TextInputEventArgs.html +- uid: OpenTK.Platform.TextInputEventArgs + commentId: T:OpenTK.Platform.TextInputEventArgs + href: OpenTK.Platform.TextInputEventArgs.html name: TextInputEventArgs nameWithType: TextInputEventArgs - fullName: OpenTK.Core.Platform.TextInputEventArgs -- uid: OpenTK.Core.Platform.TextInputEventArgs.#ctor* - commentId: Overload:OpenTK.Core.Platform.TextInputEventArgs.#ctor - href: OpenTK.Core.Platform.TextInputEventArgs.html#OpenTK_Core_Platform_TextInputEventArgs__ctor_OpenTK_Core_Platform_WindowHandle_System_String_ + fullName: OpenTK.Platform.TextInputEventArgs +- uid: OpenTK.Platform.TextInputEventArgs.#ctor* + commentId: Overload:OpenTK.Platform.TextInputEventArgs.#ctor + href: OpenTK.Platform.TextInputEventArgs.html#OpenTK_Platform_TextInputEventArgs__ctor_OpenTK_Platform_WindowHandle_System_String_ name: TextInputEventArgs nameWithType: TextInputEventArgs.TextInputEventArgs - fullName: OpenTK.Core.Platform.TextInputEventArgs.TextInputEventArgs + fullName: OpenTK.Platform.TextInputEventArgs.TextInputEventArgs nameWithType.vb: TextInputEventArgs.New - fullName.vb: OpenTK.Core.Platform.TextInputEventArgs.New + fullName.vb: OpenTK.Platform.TextInputEventArgs.New name.vb: New -- uid: OpenTK.Core.Platform.WindowHandle - commentId: T:OpenTK.Core.Platform.WindowHandle - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.WindowHandle.html +- uid: OpenTK.Platform.WindowHandle + commentId: T:OpenTK.Platform.WindowHandle + parent: OpenTK.Platform + href: OpenTK.Platform.WindowHandle.html name: WindowHandle nameWithType: WindowHandle - fullName: OpenTK.Core.Platform.WindowHandle + fullName: OpenTK.Platform.WindowHandle diff --git a/api/OpenTK.Core.Platform.ThemeChangeEventArgs.yml b/api/OpenTK.Platform.ThemeChangeEventArgs.yml similarity index 72% rename from api/OpenTK.Core.Platform.ThemeChangeEventArgs.yml rename to api/OpenTK.Platform.ThemeChangeEventArgs.yml index 2468ab3f..6d6d9494 100644 --- a/api/OpenTK.Core.Platform.ThemeChangeEventArgs.yml +++ b/api/OpenTK.Platform.ThemeChangeEventArgs.yml @@ -1,30 +1,26 @@ ### YamlMime:ManagedReference items: -- uid: OpenTK.Core.Platform.ThemeChangeEventArgs - commentId: T:OpenTK.Core.Platform.ThemeChangeEventArgs +- uid: OpenTK.Platform.ThemeChangeEventArgs + commentId: T:OpenTK.Platform.ThemeChangeEventArgs id: ThemeChangeEventArgs - parent: OpenTK.Core.Platform + parent: OpenTK.Platform children: - - OpenTK.Core.Platform.ThemeChangeEventArgs.#ctor(OpenTK.Core.Platform.ThemeInfo) - - OpenTK.Core.Platform.ThemeChangeEventArgs.NewTheme + - OpenTK.Platform.ThemeChangeEventArgs.#ctor(OpenTK.Platform.ThemeInfo) + - OpenTK.Platform.ThemeChangeEventArgs.NewTheme langs: - csharp - vb name: ThemeChangeEventArgs nameWithType: ThemeChangeEventArgs - fullName: OpenTK.Core.Platform.ThemeChangeEventArgs + fullName: OpenTK.Platform.ThemeChangeEventArgs type: Class source: - remote: - path: src/OpenTK.Core/Platform/WindowEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ThemeChangeEventArgs - path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs - startLine: 585 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\WindowEventArgs.cs + startLine: 609 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform + - OpenTK.Platform + namespace: OpenTK.Platform summary: This event is triggered when a user changes the preferred theme. example: [] syntax: @@ -42,103 +38,87 @@ items: - System.Object.MemberwiseClone - System.Object.ReferenceEquals(System.Object,System.Object) - System.Object.ToString -- uid: OpenTK.Core.Platform.ThemeChangeEventArgs.NewTheme - commentId: P:OpenTK.Core.Platform.ThemeChangeEventArgs.NewTheme +- uid: OpenTK.Platform.ThemeChangeEventArgs.NewTheme + commentId: P:OpenTK.Platform.ThemeChangeEventArgs.NewTheme id: NewTheme - parent: OpenTK.Core.Platform.ThemeChangeEventArgs + parent: OpenTK.Platform.ThemeChangeEventArgs langs: - csharp - vb name: NewTheme nameWithType: ThemeChangeEventArgs.NewTheme - fullName: OpenTK.Core.Platform.ThemeChangeEventArgs.NewTheme + fullName: OpenTK.Platform.ThemeChangeEventArgs.NewTheme type: Property source: - remote: - path: src/OpenTK.Core/Platform/WindowEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: NewTheme - path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs - startLine: 590 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\WindowEventArgs.cs + startLine: 614 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: A struct representing the new preferred theme. + - OpenTK.Platform + namespace: OpenTK.Platform + summary: A struct representing the new preferred theme. example: [] syntax: content: public ThemeInfo NewTheme { get; } parameters: [] return: - type: OpenTK.Core.Platform.ThemeInfo + type: OpenTK.Platform.ThemeInfo content.vb: Public Property NewTheme As ThemeInfo - overload: OpenTK.Core.Platform.ThemeChangeEventArgs.NewTheme* -- uid: OpenTK.Core.Platform.ThemeChangeEventArgs.#ctor(OpenTK.Core.Platform.ThemeInfo) - commentId: M:OpenTK.Core.Platform.ThemeChangeEventArgs.#ctor(OpenTK.Core.Platform.ThemeInfo) - id: '#ctor(OpenTK.Core.Platform.ThemeInfo)' - parent: OpenTK.Core.Platform.ThemeChangeEventArgs + overload: OpenTK.Platform.ThemeChangeEventArgs.NewTheme* +- uid: OpenTK.Platform.ThemeChangeEventArgs.#ctor(OpenTK.Platform.ThemeInfo) + commentId: M:OpenTK.Platform.ThemeChangeEventArgs.#ctor(OpenTK.Platform.ThemeInfo) + id: '#ctor(OpenTK.Platform.ThemeInfo)' + parent: OpenTK.Platform.ThemeChangeEventArgs langs: - csharp - vb name: ThemeChangeEventArgs(ThemeInfo) nameWithType: ThemeChangeEventArgs.ThemeChangeEventArgs(ThemeInfo) - fullName: OpenTK.Core.Platform.ThemeChangeEventArgs.ThemeChangeEventArgs(OpenTK.Core.Platform.ThemeInfo) + fullName: OpenTK.Platform.ThemeChangeEventArgs.ThemeChangeEventArgs(OpenTK.Platform.ThemeInfo) type: Constructor source: - remote: - path: src/OpenTK.Core/Platform/WindowEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs - startLine: 596 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\WindowEventArgs.cs + startLine: 620 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Initializes a new instance of the class. + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Initializes a new instance of the class. example: [] syntax: content: public ThemeChangeEventArgs(ThemeInfo newTheme) parameters: - id: newTheme - type: OpenTK.Core.Platform.ThemeInfo - description: The new . + type: OpenTK.Platform.ThemeInfo + description: The new . content.vb: Public Sub New(newTheme As ThemeInfo) - overload: OpenTK.Core.Platform.ThemeChangeEventArgs.#ctor* + overload: OpenTK.Platform.ThemeChangeEventArgs.#ctor* nameWithType.vb: ThemeChangeEventArgs.New(ThemeInfo) - fullName.vb: OpenTK.Core.Platform.ThemeChangeEventArgs.New(OpenTK.Core.Platform.ThemeInfo) + fullName.vb: OpenTK.Platform.ThemeChangeEventArgs.New(OpenTK.Platform.ThemeInfo) name.vb: New(ThemeInfo) references: -- uid: OpenTK.Core.Platform - commentId: N:OpenTK.Core.Platform +- uid: OpenTK.Platform + commentId: N:OpenTK.Platform href: OpenTK.html - name: OpenTK.Core.Platform - nameWithType: OpenTK.Core.Platform - fullName: OpenTK.Core.Platform + name: OpenTK.Platform + nameWithType: OpenTK.Platform + fullName: OpenTK.Platform spec.csharp: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html spec.vb: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html - uid: System.Object commentId: T:System.Object parent: System @@ -392,31 +372,31 @@ references: name: System nameWithType: System fullName: System -- uid: OpenTK.Core.Platform.ThemeInfo - commentId: T:OpenTK.Core.Platform.ThemeInfo - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.ThemeInfo.html +- uid: OpenTK.Platform.ThemeInfo + commentId: T:OpenTK.Platform.ThemeInfo + parent: OpenTK.Platform + href: OpenTK.Platform.ThemeInfo.html name: ThemeInfo nameWithType: ThemeInfo - fullName: OpenTK.Core.Platform.ThemeInfo -- uid: OpenTK.Core.Platform.ThemeChangeEventArgs.NewTheme* - commentId: Overload:OpenTK.Core.Platform.ThemeChangeEventArgs.NewTheme - href: OpenTK.Core.Platform.ThemeChangeEventArgs.html#OpenTK_Core_Platform_ThemeChangeEventArgs_NewTheme + fullName: OpenTK.Platform.ThemeInfo +- uid: OpenTK.Platform.ThemeChangeEventArgs.NewTheme* + commentId: Overload:OpenTK.Platform.ThemeChangeEventArgs.NewTheme + href: OpenTK.Platform.ThemeChangeEventArgs.html#OpenTK_Platform_ThemeChangeEventArgs_NewTheme name: NewTheme nameWithType: ThemeChangeEventArgs.NewTheme - fullName: OpenTK.Core.Platform.ThemeChangeEventArgs.NewTheme -- uid: OpenTK.Core.Platform.ThemeChangeEventArgs - commentId: T:OpenTK.Core.Platform.ThemeChangeEventArgs - href: OpenTK.Core.Platform.ThemeChangeEventArgs.html + fullName: OpenTK.Platform.ThemeChangeEventArgs.NewTheme +- uid: OpenTK.Platform.ThemeChangeEventArgs + commentId: T:OpenTK.Platform.ThemeChangeEventArgs + href: OpenTK.Platform.ThemeChangeEventArgs.html name: ThemeChangeEventArgs nameWithType: ThemeChangeEventArgs - fullName: OpenTK.Core.Platform.ThemeChangeEventArgs -- uid: OpenTK.Core.Platform.ThemeChangeEventArgs.#ctor* - commentId: Overload:OpenTK.Core.Platform.ThemeChangeEventArgs.#ctor - href: OpenTK.Core.Platform.ThemeChangeEventArgs.html#OpenTK_Core_Platform_ThemeChangeEventArgs__ctor_OpenTK_Core_Platform_ThemeInfo_ + fullName: OpenTK.Platform.ThemeChangeEventArgs +- uid: OpenTK.Platform.ThemeChangeEventArgs.#ctor* + commentId: Overload:OpenTK.Platform.ThemeChangeEventArgs.#ctor + href: OpenTK.Platform.ThemeChangeEventArgs.html#OpenTK_Platform_ThemeChangeEventArgs__ctor_OpenTK_Platform_ThemeInfo_ name: ThemeChangeEventArgs nameWithType: ThemeChangeEventArgs.ThemeChangeEventArgs - fullName: OpenTK.Core.Platform.ThemeChangeEventArgs.ThemeChangeEventArgs + fullName: OpenTK.Platform.ThemeChangeEventArgs.ThemeChangeEventArgs nameWithType.vb: ThemeChangeEventArgs.New - fullName.vb: OpenTK.Core.Platform.ThemeChangeEventArgs.New + fullName.vb: OpenTK.Platform.ThemeChangeEventArgs.New name.vb: New diff --git a/api/OpenTK.Core.Platform.ThemeInfo.yml b/api/OpenTK.Platform.ThemeInfo.yml similarity index 59% rename from api/OpenTK.Core.Platform.ThemeInfo.yml rename to api/OpenTK.Platform.ThemeInfo.yml index 9d5e9eea..d9fdf538 100644 --- a/api/OpenTK.Core.Platform.ThemeInfo.yml +++ b/api/OpenTK.Platform.ThemeInfo.yml @@ -1,98 +1,86 @@ ### YamlMime:ManagedReference items: -- uid: OpenTK.Core.Platform.ThemeInfo - commentId: T:OpenTK.Core.Platform.ThemeInfo +- uid: OpenTK.Platform.ThemeInfo + commentId: T:OpenTK.Platform.ThemeInfo id: ThemeInfo - parent: OpenTK.Core.Platform + parent: OpenTK.Platform children: - - OpenTK.Core.Platform.ThemeInfo.Equals(OpenTK.Core.Platform.ThemeInfo) - - OpenTK.Core.Platform.ThemeInfo.Equals(System.Object) - - OpenTK.Core.Platform.ThemeInfo.GetHashCode - - OpenTK.Core.Platform.ThemeInfo.HighContrast - - OpenTK.Core.Platform.ThemeInfo.Theme - - OpenTK.Core.Platform.ThemeInfo.ToString - - OpenTK.Core.Platform.ThemeInfo.op_Equality(OpenTK.Core.Platform.ThemeInfo,OpenTK.Core.Platform.ThemeInfo) - - OpenTK.Core.Platform.ThemeInfo.op_Inequality(OpenTK.Core.Platform.ThemeInfo,OpenTK.Core.Platform.ThemeInfo) + - OpenTK.Platform.ThemeInfo.Equals(OpenTK.Platform.ThemeInfo) + - OpenTK.Platform.ThemeInfo.Equals(System.Object) + - OpenTK.Platform.ThemeInfo.GetHashCode + - OpenTK.Platform.ThemeInfo.HighContrast + - OpenTK.Platform.ThemeInfo.Theme + - OpenTK.Platform.ThemeInfo.ToString + - OpenTK.Platform.ThemeInfo.op_Equality(OpenTK.Platform.ThemeInfo,OpenTK.Platform.ThemeInfo) + - OpenTK.Platform.ThemeInfo.op_Inequality(OpenTK.Platform.ThemeInfo,OpenTK.Platform.ThemeInfo) langs: - csharp - vb name: ThemeInfo nameWithType: ThemeInfo - fullName: OpenTK.Core.Platform.ThemeInfo + fullName: OpenTK.Platform.ThemeInfo type: Struct source: - remote: - path: src/OpenTK.Core/Platform/Enums/ThemeInfo.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ThemeInfo - path: opentk/src/OpenTK.Core/Platform/Enums/ThemeInfo.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\ThemeInfo.cs startLine: 32 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform + - OpenTK.Platform + namespace: OpenTK.Platform summary: Represents theme info. example: [] syntax: content: 'public struct ThemeInfo : IEquatable' content.vb: Public Structure ThemeInfo Implements IEquatable(Of ThemeInfo) implements: - - System.IEquatable{OpenTK.Core.Platform.ThemeInfo} + - System.IEquatable{OpenTK.Platform.ThemeInfo} inheritedMembers: - System.Object.Equals(System.Object,System.Object) - System.Object.GetType - System.Object.ReferenceEquals(System.Object,System.Object) -- uid: OpenTK.Core.Platform.ThemeInfo.Theme - commentId: F:OpenTK.Core.Platform.ThemeInfo.Theme +- uid: OpenTK.Platform.ThemeInfo.Theme + commentId: F:OpenTK.Platform.ThemeInfo.Theme id: Theme - parent: OpenTK.Core.Platform.ThemeInfo + parent: OpenTK.Platform.ThemeInfo langs: - csharp - vb name: Theme nameWithType: ThemeInfo.Theme - fullName: OpenTK.Core.Platform.ThemeInfo.Theme + fullName: OpenTK.Platform.ThemeInfo.Theme type: Field source: - remote: - path: src/OpenTK.Core/Platform/Enums/ThemeInfo.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Theme - path: opentk/src/OpenTK.Core/Platform/Enums/ThemeInfo.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\ThemeInfo.cs startLine: 37 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform + - OpenTK.Platform + namespace: OpenTK.Platform summary: The current preferred theme. example: [] syntax: content: public AppTheme Theme return: - type: OpenTK.Core.Platform.AppTheme + type: OpenTK.Platform.AppTheme content.vb: Public Theme As AppTheme -- uid: OpenTK.Core.Platform.ThemeInfo.HighContrast - commentId: F:OpenTK.Core.Platform.ThemeInfo.HighContrast +- uid: OpenTK.Platform.ThemeInfo.HighContrast + commentId: F:OpenTK.Platform.ThemeInfo.HighContrast id: HighContrast - parent: OpenTK.Core.Platform.ThemeInfo + parent: OpenTK.Platform.ThemeInfo langs: - csharp - vb name: HighContrast nameWithType: ThemeInfo.HighContrast - fullName: OpenTK.Core.Platform.ThemeInfo.HighContrast + fullName: OpenTK.Platform.ThemeInfo.HighContrast type: Field source: - remote: - path: src/OpenTK.Core/Platform/Enums/ThemeInfo.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: HighContrast - path: opentk/src/OpenTK.Core/Platform/Enums/ThemeInfo.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\ThemeInfo.cs startLine: 42 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform + - OpenTK.Platform + namespace: OpenTK.Platform summary: If a high contrast theme is preferred. example: [] syntax: @@ -100,32 +88,28 @@ items: return: type: System.Boolean content.vb: Public HighContrast As Boolean -- uid: OpenTK.Core.Platform.ThemeInfo.Equals(System.Object) - commentId: M:OpenTK.Core.Platform.ThemeInfo.Equals(System.Object) +- uid: OpenTK.Platform.ThemeInfo.Equals(System.Object) + commentId: M:OpenTK.Platform.ThemeInfo.Equals(System.Object) id: Equals(System.Object) - parent: OpenTK.Core.Platform.ThemeInfo + parent: OpenTK.Platform.ThemeInfo langs: - csharp - vb - name: Equals(object) - nameWithType: ThemeInfo.Equals(object) - fullName: OpenTK.Core.Platform.ThemeInfo.Equals(object) + name: Equals(object?) + nameWithType: ThemeInfo.Equals(object?) + fullName: OpenTK.Platform.ThemeInfo.Equals(object?) type: Method source: - remote: - path: src/OpenTK.Core/Platform/Enums/ThemeInfo.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Equals - path: opentk/src/OpenTK.Core/Platform/Enums/ThemeInfo.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\ThemeInfo.cs startLine: 45 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform + - OpenTK.Platform + namespace: OpenTK.Platform summary: Indicates whether this instance and a specified object are equal. example: [] syntax: - content: public override bool Equals(object obj) + content: public override bool Equals(object? obj) parameters: - id: obj type: System.Object @@ -135,69 +119,61 @@ items: description: true if obj and this instance are the same type and represent the same value; otherwise, false. content.vb: Public Overrides Function Equals(obj As Object) As Boolean overridden: System.ValueType.Equals(System.Object) - overload: OpenTK.Core.Platform.ThemeInfo.Equals* + overload: OpenTK.Platform.ThemeInfo.Equals* nameWithType.vb: ThemeInfo.Equals(Object) - fullName.vb: OpenTK.Core.Platform.ThemeInfo.Equals(Object) + fullName.vb: OpenTK.Platform.ThemeInfo.Equals(Object) name.vb: Equals(Object) -- uid: OpenTK.Core.Platform.ThemeInfo.Equals(OpenTK.Core.Platform.ThemeInfo) - commentId: M:OpenTK.Core.Platform.ThemeInfo.Equals(OpenTK.Core.Platform.ThemeInfo) - id: Equals(OpenTK.Core.Platform.ThemeInfo) - parent: OpenTK.Core.Platform.ThemeInfo +- uid: OpenTK.Platform.ThemeInfo.Equals(OpenTK.Platform.ThemeInfo) + commentId: M:OpenTK.Platform.ThemeInfo.Equals(OpenTK.Platform.ThemeInfo) + id: Equals(OpenTK.Platform.ThemeInfo) + parent: OpenTK.Platform.ThemeInfo langs: - csharp - vb name: Equals(ThemeInfo) nameWithType: ThemeInfo.Equals(ThemeInfo) - fullName: OpenTK.Core.Platform.ThemeInfo.Equals(OpenTK.Core.Platform.ThemeInfo) + fullName: OpenTK.Platform.ThemeInfo.Equals(OpenTK.Platform.ThemeInfo) type: Method source: - remote: - path: src/OpenTK.Core/Platform/Enums/ThemeInfo.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Equals - path: opentk/src/OpenTK.Core/Platform/Enums/ThemeInfo.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\ThemeInfo.cs startLine: 51 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform + - OpenTK.Platform + namespace: OpenTK.Platform summary: Indicates whether the current object is equal to another object of the same type. example: [] syntax: content: public bool Equals(ThemeInfo other) parameters: - id: other - type: OpenTK.Core.Platform.ThemeInfo + type: OpenTK.Platform.ThemeInfo description: An object to compare with this object. return: type: System.Boolean description: true if the current object is equal to the other parameter; otherwise, false. content.vb: Public Function Equals(other As ThemeInfo) As Boolean - overload: OpenTK.Core.Platform.ThemeInfo.Equals* + overload: OpenTK.Platform.ThemeInfo.Equals* implements: - - System.IEquatable{OpenTK.Core.Platform.ThemeInfo}.Equals(OpenTK.Core.Platform.ThemeInfo) -- uid: OpenTK.Core.Platform.ThemeInfo.GetHashCode - commentId: M:OpenTK.Core.Platform.ThemeInfo.GetHashCode + - System.IEquatable{OpenTK.Platform.ThemeInfo}.Equals(OpenTK.Platform.ThemeInfo) +- uid: OpenTK.Platform.ThemeInfo.GetHashCode + commentId: M:OpenTK.Platform.ThemeInfo.GetHashCode id: GetHashCode - parent: OpenTK.Core.Platform.ThemeInfo + parent: OpenTK.Platform.ThemeInfo langs: - csharp - vb name: GetHashCode() nameWithType: ThemeInfo.GetHashCode() - fullName: OpenTK.Core.Platform.ThemeInfo.GetHashCode() + fullName: OpenTK.Platform.ThemeInfo.GetHashCode() type: Method source: - remote: - path: src/OpenTK.Core/Platform/Enums/ThemeInfo.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetHashCode - path: opentk/src/OpenTK.Core/Platform/Enums/ThemeInfo.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\ThemeInfo.cs startLine: 58 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform + - OpenTK.Platform + namespace: OpenTK.Platform summary: Returns the hash code for this instance. example: [] syntax: @@ -207,29 +183,25 @@ items: description: A 32-bit signed integer that is the hash code for this instance. content.vb: Public Overrides Function GetHashCode() As Integer overridden: System.ValueType.GetHashCode - overload: OpenTK.Core.Platform.ThemeInfo.GetHashCode* -- uid: OpenTK.Core.Platform.ThemeInfo.ToString - commentId: M:OpenTK.Core.Platform.ThemeInfo.ToString + overload: OpenTK.Platform.ThemeInfo.GetHashCode* +- uid: OpenTK.Platform.ThemeInfo.ToString + commentId: M:OpenTK.Platform.ThemeInfo.ToString id: ToString - parent: OpenTK.Core.Platform.ThemeInfo + parent: OpenTK.Platform.ThemeInfo langs: - csharp - vb name: ToString() nameWithType: ThemeInfo.ToString() - fullName: OpenTK.Core.Platform.ThemeInfo.ToString() + fullName: OpenTK.Platform.ThemeInfo.ToString() type: Method source: - remote: - path: src/OpenTK.Core/Platform/Enums/ThemeInfo.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Core/Platform/Enums/ThemeInfo.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\ThemeInfo.cs startLine: 64 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform + - OpenTK.Platform + namespace: OpenTK.Platform summary: Returns the fully qualified type name of this instance. example: [] syntax: @@ -239,130 +211,114 @@ items: description: The fully qualified type name. content.vb: Public Overrides Function ToString() As String overridden: System.ValueType.ToString - overload: OpenTK.Core.Platform.ThemeInfo.ToString* -- uid: OpenTK.Core.Platform.ThemeInfo.op_Equality(OpenTK.Core.Platform.ThemeInfo,OpenTK.Core.Platform.ThemeInfo) - commentId: M:OpenTK.Core.Platform.ThemeInfo.op_Equality(OpenTK.Core.Platform.ThemeInfo,OpenTK.Core.Platform.ThemeInfo) - id: op_Equality(OpenTK.Core.Platform.ThemeInfo,OpenTK.Core.Platform.ThemeInfo) - parent: OpenTK.Core.Platform.ThemeInfo + overload: OpenTK.Platform.ThemeInfo.ToString* +- uid: OpenTK.Platform.ThemeInfo.op_Equality(OpenTK.Platform.ThemeInfo,OpenTK.Platform.ThemeInfo) + commentId: M:OpenTK.Platform.ThemeInfo.op_Equality(OpenTK.Platform.ThemeInfo,OpenTK.Platform.ThemeInfo) + id: op_Equality(OpenTK.Platform.ThemeInfo,OpenTK.Platform.ThemeInfo) + parent: OpenTK.Platform.ThemeInfo langs: - csharp - vb name: operator ==(ThemeInfo, ThemeInfo) nameWithType: ThemeInfo.operator ==(ThemeInfo, ThemeInfo) - fullName: OpenTK.Core.Platform.ThemeInfo.operator ==(OpenTK.Core.Platform.ThemeInfo, OpenTK.Core.Platform.ThemeInfo) + fullName: OpenTK.Platform.ThemeInfo.operator ==(OpenTK.Platform.ThemeInfo, OpenTK.Platform.ThemeInfo) type: Operator source: - remote: - path: src/OpenTK.Core/Platform/Enums/ThemeInfo.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Equality - path: opentk/src/OpenTK.Core/Platform/Enums/ThemeInfo.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\ThemeInfo.cs startLine: 75 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Checks if two structs are equal. + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Checks if two structs are equal. example: [] syntax: content: public static bool operator ==(ThemeInfo left, ThemeInfo right) parameters: - id: left - type: OpenTK.Core.Platform.ThemeInfo - description: The first struct. + type: OpenTK.Platform.ThemeInfo + description: The first struct. - id: right - type: OpenTK.Core.Platform.ThemeInfo - description: The second struct. + type: OpenTK.Platform.ThemeInfo + description: The second struct. return: type: System.Boolean - description: If the two structs where equal. + description: If the two structs where equal. content.vb: Public Shared Operator =(left As ThemeInfo, right As ThemeInfo) As Boolean - overload: OpenTK.Core.Platform.ThemeInfo.op_Equality* + overload: OpenTK.Platform.ThemeInfo.op_Equality* nameWithType.vb: ThemeInfo.=(ThemeInfo, ThemeInfo) - fullName.vb: OpenTK.Core.Platform.ThemeInfo.=(OpenTK.Core.Platform.ThemeInfo, OpenTK.Core.Platform.ThemeInfo) + fullName.vb: OpenTK.Platform.ThemeInfo.=(OpenTK.Platform.ThemeInfo, OpenTK.Platform.ThemeInfo) name.vb: =(ThemeInfo, ThemeInfo) -- uid: OpenTK.Core.Platform.ThemeInfo.op_Inequality(OpenTK.Core.Platform.ThemeInfo,OpenTK.Core.Platform.ThemeInfo) - commentId: M:OpenTK.Core.Platform.ThemeInfo.op_Inequality(OpenTK.Core.Platform.ThemeInfo,OpenTK.Core.Platform.ThemeInfo) - id: op_Inequality(OpenTK.Core.Platform.ThemeInfo,OpenTK.Core.Platform.ThemeInfo) - parent: OpenTK.Core.Platform.ThemeInfo +- uid: OpenTK.Platform.ThemeInfo.op_Inequality(OpenTK.Platform.ThemeInfo,OpenTK.Platform.ThemeInfo) + commentId: M:OpenTK.Platform.ThemeInfo.op_Inequality(OpenTK.Platform.ThemeInfo,OpenTK.Platform.ThemeInfo) + id: op_Inequality(OpenTK.Platform.ThemeInfo,OpenTK.Platform.ThemeInfo) + parent: OpenTK.Platform.ThemeInfo langs: - csharp - vb name: operator !=(ThemeInfo, ThemeInfo) nameWithType: ThemeInfo.operator !=(ThemeInfo, ThemeInfo) - fullName: OpenTK.Core.Platform.ThemeInfo.operator !=(OpenTK.Core.Platform.ThemeInfo, OpenTK.Core.Platform.ThemeInfo) + fullName: OpenTK.Platform.ThemeInfo.operator !=(OpenTK.Platform.ThemeInfo, OpenTK.Platform.ThemeInfo) type: Operator source: - remote: - path: src/OpenTK.Core/Platform/Enums/ThemeInfo.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: op_Inequality - path: opentk/src/OpenTK.Core/Platform/Enums/ThemeInfo.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\ThemeInfo.cs startLine: 86 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Checks if two structs are not equal. + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Checks if two structs are not equal. example: [] syntax: content: public static bool operator !=(ThemeInfo left, ThemeInfo right) parameters: - id: left - type: OpenTK.Core.Platform.ThemeInfo - description: The first struct. + type: OpenTK.Platform.ThemeInfo + description: The first struct. - id: right - type: OpenTK.Core.Platform.ThemeInfo - description: The second struct. + type: OpenTK.Platform.ThemeInfo + description: The second struct. return: type: System.Boolean - description: If the two structs where not equal. + description: If the two structs where not equal. content.vb: Public Shared Operator <>(left As ThemeInfo, right As ThemeInfo) As Boolean - overload: OpenTK.Core.Platform.ThemeInfo.op_Inequality* + overload: OpenTK.Platform.ThemeInfo.op_Inequality* nameWithType.vb: ThemeInfo.<>(ThemeInfo, ThemeInfo) - fullName.vb: OpenTK.Core.Platform.ThemeInfo.<>(OpenTK.Core.Platform.ThemeInfo, OpenTK.Core.Platform.ThemeInfo) + fullName.vb: OpenTK.Platform.ThemeInfo.<>(OpenTK.Platform.ThemeInfo, OpenTK.Platform.ThemeInfo) name.vb: <>(ThemeInfo, ThemeInfo) references: -- uid: OpenTK.Core.Platform - commentId: N:OpenTK.Core.Platform +- uid: OpenTK.Platform + commentId: N:OpenTK.Platform href: OpenTK.html - name: OpenTK.Core.Platform - nameWithType: OpenTK.Core.Platform - fullName: OpenTK.Core.Platform + name: OpenTK.Platform + nameWithType: OpenTK.Platform + fullName: OpenTK.Platform spec.csharp: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html spec.vb: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html -- uid: System.IEquatable{OpenTK.Core.Platform.ThemeInfo} - commentId: T:System.IEquatable{OpenTK.Core.Platform.ThemeInfo} + href: OpenTK.Platform.html +- uid: System.IEquatable{OpenTK.Platform.ThemeInfo} + commentId: T:System.IEquatable{OpenTK.Platform.ThemeInfo} parent: System definition: System.IEquatable`1 href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 name: IEquatable nameWithType: IEquatable - fullName: System.IEquatable + fullName: System.IEquatable nameWithType.vb: IEquatable(Of ThemeInfo) - fullName.vb: System.IEquatable(Of OpenTK.Core.Platform.ThemeInfo) + fullName.vb: System.IEquatable(Of OpenTK.Platform.ThemeInfo) name.vb: IEquatable(Of ThemeInfo) spec.csharp: - uid: System.IEquatable`1 @@ -370,9 +326,9 @@ references: isExternal: true href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: < - - uid: OpenTK.Core.Platform.ThemeInfo + - uid: OpenTK.Platform.ThemeInfo name: ThemeInfo - href: OpenTK.Core.Platform.ThemeInfo.html + href: OpenTK.Platform.ThemeInfo.html - name: '>' spec.vb: - uid: System.IEquatable`1 @@ -382,9 +338,9 @@ references: - name: ( - name: Of - name: " " - - uid: OpenTK.Core.Platform.ThemeInfo + - uid: OpenTK.Platform.ThemeInfo name: ThemeInfo - href: OpenTK.Core.Platform.ThemeInfo.html + href: OpenTK.Platform.ThemeInfo.html - name: ) - uid: System.Object.Equals(System.Object,System.Object) commentId: M:System.Object.Equals(System.Object,System.Object) @@ -546,13 +502,13 @@ references: nameWithType.vb: Object fullName.vb: Object name.vb: Object -- uid: OpenTK.Core.Platform.AppTheme - commentId: T:OpenTK.Core.Platform.AppTheme - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.AppTheme.html +- uid: OpenTK.Platform.AppTheme + commentId: T:OpenTK.Platform.AppTheme + parent: OpenTK.Platform + href: OpenTK.Platform.AppTheme.html name: AppTheme nameWithType: AppTheme - fullName: OpenTK.Core.Platform.AppTheme + fullName: OpenTK.Platform.AppTheme - uid: System.Boolean commentId: T:System.Boolean parent: System @@ -597,12 +553,12 @@ references: isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ) -- uid: OpenTK.Core.Platform.ThemeInfo.Equals* - commentId: Overload:OpenTK.Core.Platform.ThemeInfo.Equals - href: OpenTK.Core.Platform.ThemeInfo.html#OpenTK_Core_Platform_ThemeInfo_Equals_System_Object_ +- uid: OpenTK.Platform.ThemeInfo.Equals* + commentId: Overload:OpenTK.Platform.ThemeInfo.Equals + href: OpenTK.Platform.ThemeInfo.html#OpenTK_Platform_ThemeInfo_Equals_System_Object_ name: Equals nameWithType: ThemeInfo.Equals - fullName: OpenTK.Core.Platform.ThemeInfo.Equals + fullName: OpenTK.Platform.ThemeInfo.Equals - uid: System.ValueType commentId: T:System.ValueType parent: System @@ -611,43 +567,43 @@ references: name: ValueType nameWithType: ValueType fullName: System.ValueType -- uid: System.IEquatable{OpenTK.Core.Platform.ThemeInfo}.Equals(OpenTK.Core.Platform.ThemeInfo) - commentId: M:System.IEquatable{OpenTK.Core.Platform.ThemeInfo}.Equals(OpenTK.Core.Platform.ThemeInfo) - parent: System.IEquatable{OpenTK.Core.Platform.ThemeInfo} +- uid: System.IEquatable{OpenTK.Platform.ThemeInfo}.Equals(OpenTK.Platform.ThemeInfo) + commentId: M:System.IEquatable{OpenTK.Platform.ThemeInfo}.Equals(OpenTK.Platform.ThemeInfo) + parent: System.IEquatable{OpenTK.Platform.ThemeInfo} definition: System.IEquatable`1.Equals(`0) href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals name: Equals(ThemeInfo) nameWithType: IEquatable.Equals(ThemeInfo) - fullName: System.IEquatable.Equals(OpenTK.Core.Platform.ThemeInfo) + fullName: System.IEquatable.Equals(OpenTK.Platform.ThemeInfo) nameWithType.vb: IEquatable(Of ThemeInfo).Equals(ThemeInfo) - fullName.vb: System.IEquatable(Of OpenTK.Core.Platform.ThemeInfo).Equals(OpenTK.Core.Platform.ThemeInfo) + fullName.vb: System.IEquatable(Of OpenTK.Platform.ThemeInfo).Equals(OpenTK.Platform.ThemeInfo) spec.csharp: - - uid: System.IEquatable{OpenTK.Core.Platform.ThemeInfo}.Equals(OpenTK.Core.Platform.ThemeInfo) + - uid: System.IEquatable{OpenTK.Platform.ThemeInfo}.Equals(OpenTK.Platform.ThemeInfo) name: Equals isExternal: true href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals - name: ( - - uid: OpenTK.Core.Platform.ThemeInfo + - uid: OpenTK.Platform.ThemeInfo name: ThemeInfo - href: OpenTK.Core.Platform.ThemeInfo.html + href: OpenTK.Platform.ThemeInfo.html - name: ) spec.vb: - - uid: System.IEquatable{OpenTK.Core.Platform.ThemeInfo}.Equals(OpenTK.Core.Platform.ThemeInfo) + - uid: System.IEquatable{OpenTK.Platform.ThemeInfo}.Equals(OpenTK.Platform.ThemeInfo) name: Equals isExternal: true href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals - name: ( - - uid: OpenTK.Core.Platform.ThemeInfo + - uid: OpenTK.Platform.ThemeInfo name: ThemeInfo - href: OpenTK.Core.Platform.ThemeInfo.html + href: OpenTK.Platform.ThemeInfo.html - name: ) -- uid: OpenTK.Core.Platform.ThemeInfo - commentId: T:OpenTK.Core.Platform.ThemeInfo - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.ThemeInfo.html +- uid: OpenTK.Platform.ThemeInfo + commentId: T:OpenTK.Platform.ThemeInfo + parent: OpenTK.Platform + href: OpenTK.Platform.ThemeInfo.html name: ThemeInfo nameWithType: ThemeInfo - fullName: OpenTK.Core.Platform.ThemeInfo + fullName: OpenTK.Platform.ThemeInfo - uid: System.IEquatable`1.Equals(`0) commentId: M:System.IEquatable`1.Equals(`0) isExternal: true @@ -695,12 +651,12 @@ references: href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - name: ( - name: ) -- uid: OpenTK.Core.Platform.ThemeInfo.GetHashCode* - commentId: Overload:OpenTK.Core.Platform.ThemeInfo.GetHashCode - href: OpenTK.Core.Platform.ThemeInfo.html#OpenTK_Core_Platform_ThemeInfo_GetHashCode +- uid: OpenTK.Platform.ThemeInfo.GetHashCode* + commentId: Overload:OpenTK.Platform.ThemeInfo.GetHashCode + href: OpenTK.Platform.ThemeInfo.html#OpenTK_Platform_ThemeInfo_GetHashCode name: GetHashCode nameWithType: ThemeInfo.GetHashCode - fullName: OpenTK.Core.Platform.ThemeInfo.GetHashCode + fullName: OpenTK.Platform.ThemeInfo.GetHashCode - uid: System.Int32 commentId: T:System.Int32 parent: System @@ -734,12 +690,12 @@ references: href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - name: ( - name: ) -- uid: OpenTK.Core.Platform.ThemeInfo.ToString* - commentId: Overload:OpenTK.Core.Platform.ThemeInfo.ToString - href: OpenTK.Core.Platform.ThemeInfo.html#OpenTK_Core_Platform_ThemeInfo_ToString +- uid: OpenTK.Platform.ThemeInfo.ToString* + commentId: Overload:OpenTK.Platform.ThemeInfo.ToString + href: OpenTK.Platform.ThemeInfo.html#OpenTK_Platform_ThemeInfo_ToString name: ToString nameWithType: ThemeInfo.ToString - fullName: OpenTK.Core.Platform.ThemeInfo.ToString + fullName: OpenTK.Platform.ThemeInfo.ToString - uid: System.String commentId: T:System.String parent: System @@ -751,33 +707,33 @@ references: nameWithType.vb: String fullName.vb: String name.vb: String -- uid: OpenTK.Core.Platform.ThemeInfo.op_Equality* - commentId: Overload:OpenTK.Core.Platform.ThemeInfo.op_Equality - href: OpenTK.Core.Platform.ThemeInfo.html#OpenTK_Core_Platform_ThemeInfo_op_Equality_OpenTK_Core_Platform_ThemeInfo_OpenTK_Core_Platform_ThemeInfo_ +- uid: OpenTK.Platform.ThemeInfo.op_Equality* + commentId: Overload:OpenTK.Platform.ThemeInfo.op_Equality + href: OpenTK.Platform.ThemeInfo.html#OpenTK_Platform_ThemeInfo_op_Equality_OpenTK_Platform_ThemeInfo_OpenTK_Platform_ThemeInfo_ name: operator == nameWithType: ThemeInfo.operator == - fullName: OpenTK.Core.Platform.ThemeInfo.operator == + fullName: OpenTK.Platform.ThemeInfo.operator == nameWithType.vb: ThemeInfo.= - fullName.vb: OpenTK.Core.Platform.ThemeInfo.= + fullName.vb: OpenTK.Platform.ThemeInfo.= name.vb: = spec.csharp: - name: operator - name: " " - - uid: OpenTK.Core.Platform.ThemeInfo.op_Equality* + - uid: OpenTK.Platform.ThemeInfo.op_Equality* name: == - href: OpenTK.Core.Platform.ThemeInfo.html#OpenTK_Core_Platform_ThemeInfo_op_Equality_OpenTK_Core_Platform_ThemeInfo_OpenTK_Core_Platform_ThemeInfo_ -- uid: OpenTK.Core.Platform.ThemeInfo.op_Inequality* - commentId: Overload:OpenTK.Core.Platform.ThemeInfo.op_Inequality - href: OpenTK.Core.Platform.ThemeInfo.html#OpenTK_Core_Platform_ThemeInfo_op_Inequality_OpenTK_Core_Platform_ThemeInfo_OpenTK_Core_Platform_ThemeInfo_ + href: OpenTK.Platform.ThemeInfo.html#OpenTK_Platform_ThemeInfo_op_Equality_OpenTK_Platform_ThemeInfo_OpenTK_Platform_ThemeInfo_ +- uid: OpenTK.Platform.ThemeInfo.op_Inequality* + commentId: Overload:OpenTK.Platform.ThemeInfo.op_Inequality + href: OpenTK.Platform.ThemeInfo.html#OpenTK_Platform_ThemeInfo_op_Inequality_OpenTK_Platform_ThemeInfo_OpenTK_Platform_ThemeInfo_ name: operator != nameWithType: ThemeInfo.operator != - fullName: OpenTK.Core.Platform.ThemeInfo.operator != + fullName: OpenTK.Platform.ThemeInfo.operator != nameWithType.vb: ThemeInfo.<> - fullName.vb: OpenTK.Core.Platform.ThemeInfo.<> + fullName.vb: OpenTK.Platform.ThemeInfo.<> name.vb: <> spec.csharp: - name: operator - name: " " - - uid: OpenTK.Core.Platform.ThemeInfo.op_Inequality* + - uid: OpenTK.Platform.ThemeInfo.op_Inequality* name: '!=' - href: OpenTK.Core.Platform.ThemeInfo.html#OpenTK_Core_Platform_ThemeInfo_op_Inequality_OpenTK_Core_Platform_ThemeInfo_OpenTK_Core_Platform_ThemeInfo_ + href: OpenTK.Platform.ThemeInfo.html#OpenTK_Platform_ThemeInfo_op_Inequality_OpenTK_Platform_ThemeInfo_OpenTK_Platform_ThemeInfo_ diff --git a/api/OpenTK.Platform.Toolkit.yml b/api/OpenTK.Platform.Toolkit.yml new file mode 100644 index 00000000..d0da783c --- /dev/null +++ b/api/OpenTK.Platform.Toolkit.yml @@ -0,0 +1,891 @@ +### YamlMime:ManagedReference +items: +- uid: OpenTK.Platform.Toolkit + commentId: T:OpenTK.Platform.Toolkit + id: Toolkit + parent: OpenTK.Platform + children: + - OpenTK.Platform.Toolkit.Clipboard + - OpenTK.Platform.Toolkit.Cursor + - OpenTK.Platform.Toolkit.Dialog + - OpenTK.Platform.Toolkit.Display + - OpenTK.Platform.Toolkit.Icon + - OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + - OpenTK.Platform.Toolkit.Joystick + - OpenTK.Platform.Toolkit.Keyboard + - OpenTK.Platform.Toolkit.Mouse + - OpenTK.Platform.Toolkit.OpenGL + - OpenTK.Platform.Toolkit.Shell + - OpenTK.Platform.Toolkit.Surface + - OpenTK.Platform.Toolkit.Vulkan + - OpenTK.Platform.Toolkit.Window + langs: + - csharp + - vb + name: Toolkit + nameWithType: Toolkit + fullName: OpenTK.Platform.Toolkit + type: Class + source: + id: Toolkit + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Toolkit.cs + startLine: 17 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: >- + Provides static access to all OpenTK platform abstraction interfaces. + + This is the main way to access the OpenTK PAL2 api. + example: [] + syntax: + content: public static class Toolkit + content.vb: Public Module Toolkit + inheritance: + - System.Object + inheritedMembers: + - System.Object.Equals(System.Object) + - System.Object.Equals(System.Object,System.Object) + - System.Object.GetHashCode + - System.Object.GetType + - System.Object.MemberwiseClone + - System.Object.ReferenceEquals(System.Object,System.Object) + - System.Object.ToString +- uid: OpenTK.Platform.Toolkit.Window + commentId: P:OpenTK.Platform.Toolkit.Window + id: Window + parent: OpenTK.Platform.Toolkit + langs: + - csharp + - vb + name: Window + nameWithType: Toolkit.Window + fullName: OpenTK.Platform.Toolkit.Window + type: Property + source: + id: Window + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Toolkit.cs + startLine: 38 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Interface for creating, interacting with, and deleting windows. + example: [] + syntax: + content: public static IWindowComponent Window { get; } + parameters: [] + return: + type: OpenTK.Platform.IWindowComponent + content.vb: Public Shared ReadOnly Property Window As IWindowComponent + overload: OpenTK.Platform.Toolkit.Window* +- uid: OpenTK.Platform.Toolkit.Surface + commentId: P:OpenTK.Platform.Toolkit.Surface + id: Surface + parent: OpenTK.Platform.Toolkit + langs: + - csharp + - vb + name: Surface + nameWithType: Toolkit.Surface + fullName: OpenTK.Platform.Toolkit.Surface + type: Property + source: + id: Surface + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Toolkit.cs + startLine: 44 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Interface for creating, interacting with, and deleting surfaces. + example: [] + syntax: + content: public static ISurfaceComponent Surface { get; } + parameters: [] + return: + type: OpenTK.Platform.ISurfaceComponent + content.vb: Public Shared ReadOnly Property Surface As ISurfaceComponent + overload: OpenTK.Platform.Toolkit.Surface* +- uid: OpenTK.Platform.Toolkit.OpenGL + commentId: P:OpenTK.Platform.Toolkit.OpenGL + id: OpenGL + parent: OpenTK.Platform.Toolkit + langs: + - csharp + - vb + name: OpenGL + nameWithType: Toolkit.OpenGL + fullName: OpenTK.Platform.Toolkit.OpenGL + type: Property + source: + id: OpenGL + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Toolkit.cs + startLine: 50 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Interface for creating, interacting with, and deleting OpenGL contexts. + example: [] + syntax: + content: public static IOpenGLComponent OpenGL { get; } + parameters: [] + return: + type: OpenTK.Platform.IOpenGLComponent + content.vb: Public Shared ReadOnly Property OpenGL As IOpenGLComponent + overload: OpenTK.Platform.Toolkit.OpenGL* +- uid: OpenTK.Platform.Toolkit.Display + commentId: P:OpenTK.Platform.Toolkit.Display + id: Display + parent: OpenTK.Platform.Toolkit + langs: + - csharp + - vb + name: Display + nameWithType: Toolkit.Display + fullName: OpenTK.Platform.Toolkit.Display + type: Property + source: + id: Display + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Toolkit.cs + startLine: 56 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Interface for querying information about displays attached to the system. + example: [] + syntax: + content: public static IDisplayComponent Display { get; } + parameters: [] + return: + type: OpenTK.Platform.IDisplayComponent + content.vb: Public Shared ReadOnly Property Display As IDisplayComponent + overload: OpenTK.Platform.Toolkit.Display* +- uid: OpenTK.Platform.Toolkit.Shell + commentId: P:OpenTK.Platform.Toolkit.Shell + id: Shell + parent: OpenTK.Platform.Toolkit + langs: + - csharp + - vb + name: Shell + nameWithType: Toolkit.Shell + fullName: OpenTK.Platform.Toolkit.Shell + type: Property + source: + id: Shell + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Toolkit.cs + startLine: 62 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Interface for shell functions such as battery information, preferred theme, etc. + example: [] + syntax: + content: public static IShellComponent Shell { get; } + parameters: [] + return: + type: OpenTK.Platform.IShellComponent + content.vb: Public Shared ReadOnly Property Shell As IShellComponent + overload: OpenTK.Platform.Toolkit.Shell* +- uid: OpenTK.Platform.Toolkit.Mouse + commentId: P:OpenTK.Platform.Toolkit.Mouse + id: Mouse + parent: OpenTK.Platform.Toolkit + langs: + - csharp + - vb + name: Mouse + nameWithType: Toolkit.Mouse + fullName: OpenTK.Platform.Toolkit.Mouse + type: Property + source: + id: Mouse + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Toolkit.cs + startLine: 68 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Interface for getting and setting the mouse position, and getting mouse button information. + example: [] + syntax: + content: public static IMouseComponent Mouse { get; } + parameters: [] + return: + type: OpenTK.Platform.IMouseComponent + content.vb: Public Shared ReadOnly Property Mouse As IMouseComponent + overload: OpenTK.Platform.Toolkit.Mouse* +- uid: OpenTK.Platform.Toolkit.Keyboard + commentId: P:OpenTK.Platform.Toolkit.Keyboard + id: Keyboard + parent: OpenTK.Platform.Toolkit + langs: + - csharp + - vb + name: Keyboard + nameWithType: Toolkit.Keyboard + fullName: OpenTK.Platform.Toolkit.Keyboard + type: Property + source: + id: Keyboard + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Toolkit.cs + startLine: 74 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Interface for dealing with keyboard layouts, conversions between and , and IME. + example: [] + syntax: + content: public static IKeyboardComponent Keyboard { get; } + parameters: [] + return: + type: OpenTK.Platform.IKeyboardComponent + content.vb: Public Shared ReadOnly Property Keyboard As IKeyboardComponent + overload: OpenTK.Platform.Toolkit.Keyboard* +- uid: OpenTK.Platform.Toolkit.Cursor + commentId: P:OpenTK.Platform.Toolkit.Cursor + id: Cursor + parent: OpenTK.Platform.Toolkit + langs: + - csharp + - vb + name: Cursor + nameWithType: Toolkit.Cursor + fullName: OpenTK.Platform.Toolkit.Cursor + type: Property + source: + id: Cursor + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Toolkit.cs + startLine: 80 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Interface for creating, interacting with, and deleting mouse cursor images. + example: [] + syntax: + content: public static ICursorComponent Cursor { get; } + parameters: [] + return: + type: OpenTK.Platform.ICursorComponent + content.vb: Public Shared ReadOnly Property Cursor As ICursorComponent + overload: OpenTK.Platform.Toolkit.Cursor* +- uid: OpenTK.Platform.Toolkit.Icon + commentId: P:OpenTK.Platform.Toolkit.Icon + id: Icon + parent: OpenTK.Platform.Toolkit + langs: + - csharp + - vb + name: Icon + nameWithType: Toolkit.Icon + fullName: OpenTK.Platform.Toolkit.Icon + type: Property + source: + id: Icon + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Toolkit.cs + startLine: 86 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Interface for creating, interacting with, and deleting window icon images. + example: [] + syntax: + content: public static IIconComponent Icon { get; } + parameters: [] + return: + type: OpenTK.Platform.IIconComponent + content.vb: Public Shared ReadOnly Property Icon As IIconComponent + overload: OpenTK.Platform.Toolkit.Icon* +- uid: OpenTK.Platform.Toolkit.Clipboard + commentId: P:OpenTK.Platform.Toolkit.Clipboard + id: Clipboard + parent: OpenTK.Platform.Toolkit + langs: + - csharp + - vb + name: Clipboard + nameWithType: Toolkit.Clipboard + fullName: OpenTK.Platform.Toolkit.Clipboard + type: Property + source: + id: Clipboard + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Toolkit.cs + startLine: 92 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Interface for getting and setting clipboard data. + example: [] + syntax: + content: public static IClipboardComponent Clipboard { get; } + parameters: [] + return: + type: OpenTK.Platform.IClipboardComponent + content.vb: Public Shared ReadOnly Property Clipboard As IClipboardComponent + overload: OpenTK.Platform.Toolkit.Clipboard* +- uid: OpenTK.Platform.Toolkit.Joystick + commentId: P:OpenTK.Platform.Toolkit.Joystick + id: Joystick + parent: OpenTK.Platform.Toolkit + langs: + - csharp + - vb + name: Joystick + nameWithType: Toolkit.Joystick + fullName: OpenTK.Platform.Toolkit.Joystick + type: Property + source: + id: Joystick + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Toolkit.cs + startLine: 98 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Interface for getting joystick input. + example: [] + syntax: + content: public static IJoystickComponent Joystick { get; } + parameters: [] + return: + type: OpenTK.Platform.IJoystickComponent + content.vb: Public Shared ReadOnly Property Joystick As IJoystickComponent + overload: OpenTK.Platform.Toolkit.Joystick* +- uid: OpenTK.Platform.Toolkit.Dialog + commentId: P:OpenTK.Platform.Toolkit.Dialog + id: Dialog + parent: OpenTK.Platform.Toolkit + langs: + - csharp + - vb + name: Dialog + nameWithType: Toolkit.Dialog + fullName: OpenTK.Platform.Toolkit.Dialog + type: Property + source: + id: Dialog + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Toolkit.cs + startLine: 104 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Interface for opening system dialogs such as file open dialogs. + example: [] + syntax: + content: public static IDialogComponent Dialog { get; } + parameters: [] + return: + type: OpenTK.Platform.IDialogComponent + content.vb: Public Shared ReadOnly Property Dialog As IDialogComponent + overload: OpenTK.Platform.Toolkit.Dialog* +- uid: OpenTK.Platform.Toolkit.Vulkan + commentId: P:OpenTK.Platform.Toolkit.Vulkan + id: Vulkan + parent: OpenTK.Platform.Toolkit + langs: + - csharp + - vb + name: Vulkan + nameWithType: Toolkit.Vulkan + fullName: OpenTK.Platform.Toolkit.Vulkan + type: Property + source: + id: Vulkan + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Toolkit.cs + startLine: 110 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Interface for opening system dialogs such as file open dialogs. + example: [] + syntax: + content: public static IVulkanComponent Vulkan { get; } + parameters: [] + return: + type: OpenTK.Platform.IVulkanComponent + content.vb: Public Shared ReadOnly Property Vulkan As IVulkanComponent + overload: OpenTK.Platform.Toolkit.Vulkan* +- uid: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + id: Init(OpenTK.Platform.ToolkitOptions) + parent: OpenTK.Platform.Toolkit + langs: + - csharp + - vb + name: Init(ToolkitOptions) + nameWithType: Toolkit.Init(ToolkitOptions) + fullName: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + type: Method + source: + id: Init + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Toolkit.cs + startLine: 118 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: >- + Initialize OpenTK with the given settings. + + This function must be called before trying to use the OpenTK API. + example: [] + syntax: + content: public static void Init(ToolkitOptions options) + parameters: + - id: options + type: OpenTK.Platform.ToolkitOptions + description: The options to initialize with. + content.vb: Public Shared Sub Init(options As ToolkitOptions) + overload: OpenTK.Platform.Toolkit.Init* +references: +- uid: OpenTK.Platform + commentId: N:OpenTK.Platform + href: OpenTK.html + name: OpenTK.Platform + nameWithType: OpenTK.Platform + fullName: OpenTK.Platform + spec.csharp: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Platform + name: Platform + href: OpenTK.Platform.html + spec.vb: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Platform + name: Platform + href: OpenTK.Platform.html +- uid: System.Object + commentId: T:System.Object + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + name: object + nameWithType: object + fullName: object + nameWithType.vb: Object + fullName.vb: Object + name.vb: Object +- uid: System.Object.Equals(System.Object) + commentId: M:System.Object.Equals(System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + name: Equals(object) + nameWithType: object.Equals(object) + fullName: object.Equals(object) + nameWithType.vb: Object.Equals(Object) + fullName.vb: Object.Equals(Object) + name.vb: Equals(Object) + spec.csharp: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.Equals(System.Object,System.Object) + commentId: M:System.Object.Equals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + name: Equals(object, object) + nameWithType: object.Equals(object, object) + fullName: object.Equals(object, object) + nameWithType.vb: Object.Equals(Object, Object) + fullName.vb: Object.Equals(Object, Object) + name.vb: Equals(Object, Object) + spec.csharp: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.GetHashCode + commentId: M:System.Object.GetHashCode + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + name: GetHashCode() + nameWithType: object.GetHashCode() + fullName: object.GetHashCode() + nameWithType.vb: Object.GetHashCode() + fullName.vb: Object.GetHashCode() + spec.csharp: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) +- uid: System.Object.GetType + commentId: M:System.Object.GetType + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + name: GetType() + nameWithType: object.GetType() + fullName: object.GetType() + nameWithType.vb: Object.GetType() + fullName.vb: Object.GetType() + spec.csharp: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) +- uid: System.Object.MemberwiseClone + commentId: M:System.Object.MemberwiseClone + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + name: MemberwiseClone() + nameWithType: object.MemberwiseClone() + fullName: object.MemberwiseClone() + nameWithType.vb: Object.MemberwiseClone() + fullName.vb: Object.MemberwiseClone() + spec.csharp: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) + spec.vb: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) +- uid: System.Object.ReferenceEquals(System.Object,System.Object) + commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + name: ReferenceEquals(object, object) + nameWithType: object.ReferenceEquals(object, object) + fullName: object.ReferenceEquals(object, object) + nameWithType.vb: Object.ReferenceEquals(Object, Object) + fullName.vb: Object.ReferenceEquals(Object, Object) + name.vb: ReferenceEquals(Object, Object) + spec.csharp: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.ToString + commentId: M:System.Object.ToString + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + name: ToString() + nameWithType: object.ToString() + fullName: object.ToString() + nameWithType.vb: Object.ToString() + fullName.vb: Object.ToString() + spec.csharp: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) + spec.vb: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) +- uid: System + commentId: N:System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System + nameWithType: System + fullName: System +- uid: OpenTK.Platform.Toolkit.Window* + commentId: Overload:OpenTK.Platform.Toolkit.Window + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Window + name: Window + nameWithType: Toolkit.Window + fullName: OpenTK.Platform.Toolkit.Window +- uid: OpenTK.Platform.IWindowComponent + commentId: T:OpenTK.Platform.IWindowComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IWindowComponent.html + name: IWindowComponent + nameWithType: IWindowComponent + fullName: OpenTK.Platform.IWindowComponent +- uid: OpenTK.Platform.Toolkit.Surface* + commentId: Overload:OpenTK.Platform.Toolkit.Surface + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Surface + name: Surface + nameWithType: Toolkit.Surface + fullName: OpenTK.Platform.Toolkit.Surface +- uid: OpenTK.Platform.ISurfaceComponent + commentId: T:OpenTK.Platform.ISurfaceComponent + parent: OpenTK.Platform + href: OpenTK.Platform.ISurfaceComponent.html + name: ISurfaceComponent + nameWithType: ISurfaceComponent + fullName: OpenTK.Platform.ISurfaceComponent +- uid: OpenTK.Platform.Toolkit.OpenGL* + commentId: Overload:OpenTK.Platform.Toolkit.OpenGL + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_OpenGL + name: OpenGL + nameWithType: Toolkit.OpenGL + fullName: OpenTK.Platform.Toolkit.OpenGL +- uid: OpenTK.Platform.IOpenGLComponent + commentId: T:OpenTK.Platform.IOpenGLComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IOpenGLComponent.html + name: IOpenGLComponent + nameWithType: IOpenGLComponent + fullName: OpenTK.Platform.IOpenGLComponent +- uid: OpenTK.Platform.Toolkit.Display* + commentId: Overload:OpenTK.Platform.Toolkit.Display + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Display + name: Display + nameWithType: Toolkit.Display + fullName: OpenTK.Platform.Toolkit.Display +- uid: OpenTK.Platform.IDisplayComponent + commentId: T:OpenTK.Platform.IDisplayComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IDisplayComponent.html + name: IDisplayComponent + nameWithType: IDisplayComponent + fullName: OpenTK.Platform.IDisplayComponent +- uid: OpenTK.Platform.Toolkit.Shell* + commentId: Overload:OpenTK.Platform.Toolkit.Shell + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Shell + name: Shell + nameWithType: Toolkit.Shell + fullName: OpenTK.Platform.Toolkit.Shell +- uid: OpenTK.Platform.IShellComponent + commentId: T:OpenTK.Platform.IShellComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IShellComponent.html + name: IShellComponent + nameWithType: IShellComponent + fullName: OpenTK.Platform.IShellComponent +- uid: OpenTK.Platform.Toolkit.Mouse* + commentId: Overload:OpenTK.Platform.Toolkit.Mouse + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Mouse + name: Mouse + nameWithType: Toolkit.Mouse + fullName: OpenTK.Platform.Toolkit.Mouse +- uid: OpenTK.Platform.IMouseComponent + commentId: T:OpenTK.Platform.IMouseComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IMouseComponent.html + name: IMouseComponent + nameWithType: IMouseComponent + fullName: OpenTK.Platform.IMouseComponent +- uid: OpenTK.Platform.Key + commentId: T:OpenTK.Platform.Key + parent: OpenTK.Platform + href: OpenTK.Platform.Key.html + name: Key + nameWithType: Key + fullName: OpenTK.Platform.Key +- uid: OpenTK.Platform.Scancode + commentId: T:OpenTK.Platform.Scancode + parent: OpenTK.Platform + href: OpenTK.Platform.Scancode.html + name: Scancode + nameWithType: Scancode + fullName: OpenTK.Platform.Scancode +- uid: OpenTK.Platform.Toolkit.Keyboard* + commentId: Overload:OpenTK.Platform.Toolkit.Keyboard + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Keyboard + name: Keyboard + nameWithType: Toolkit.Keyboard + fullName: OpenTK.Platform.Toolkit.Keyboard +- uid: OpenTK.Platform.IKeyboardComponent + commentId: T:OpenTK.Platform.IKeyboardComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IKeyboardComponent.html + name: IKeyboardComponent + nameWithType: IKeyboardComponent + fullName: OpenTK.Platform.IKeyboardComponent +- uid: OpenTK.Platform.Toolkit.Cursor* + commentId: Overload:OpenTK.Platform.Toolkit.Cursor + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Cursor + name: Cursor + nameWithType: Toolkit.Cursor + fullName: OpenTK.Platform.Toolkit.Cursor +- uid: OpenTK.Platform.ICursorComponent + commentId: T:OpenTK.Platform.ICursorComponent + parent: OpenTK.Platform + href: OpenTK.Platform.ICursorComponent.html + name: ICursorComponent + nameWithType: ICursorComponent + fullName: OpenTK.Platform.ICursorComponent +- uid: OpenTK.Platform.Toolkit.Icon* + commentId: Overload:OpenTK.Platform.Toolkit.Icon + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Icon + name: Icon + nameWithType: Toolkit.Icon + fullName: OpenTK.Platform.Toolkit.Icon +- uid: OpenTK.Platform.IIconComponent + commentId: T:OpenTK.Platform.IIconComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IIconComponent.html + name: IIconComponent + nameWithType: IIconComponent + fullName: OpenTK.Platform.IIconComponent +- uid: OpenTK.Platform.Toolkit.Clipboard* + commentId: Overload:OpenTK.Platform.Toolkit.Clipboard + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Clipboard + name: Clipboard + nameWithType: Toolkit.Clipboard + fullName: OpenTK.Platform.Toolkit.Clipboard +- uid: OpenTK.Platform.IClipboardComponent + commentId: T:OpenTK.Platform.IClipboardComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IClipboardComponent.html + name: IClipboardComponent + nameWithType: IClipboardComponent + fullName: OpenTK.Platform.IClipboardComponent +- uid: OpenTK.Platform.Toolkit.Joystick* + commentId: Overload:OpenTK.Platform.Toolkit.Joystick + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Joystick + name: Joystick + nameWithType: Toolkit.Joystick + fullName: OpenTK.Platform.Toolkit.Joystick +- uid: OpenTK.Platform.IJoystickComponent + commentId: T:OpenTK.Platform.IJoystickComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IJoystickComponent.html + name: IJoystickComponent + nameWithType: IJoystickComponent + fullName: OpenTK.Platform.IJoystickComponent +- uid: OpenTK.Platform.Toolkit.Dialog* + commentId: Overload:OpenTK.Platform.Toolkit.Dialog + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Dialog + name: Dialog + nameWithType: Toolkit.Dialog + fullName: OpenTK.Platform.Toolkit.Dialog +- uid: OpenTK.Platform.IDialogComponent + commentId: T:OpenTK.Platform.IDialogComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IDialogComponent.html + name: IDialogComponent + nameWithType: IDialogComponent + fullName: OpenTK.Platform.IDialogComponent +- uid: OpenTK.Platform.Toolkit.Vulkan* + commentId: Overload:OpenTK.Platform.Toolkit.Vulkan + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Vulkan + name: Vulkan + nameWithType: Toolkit.Vulkan + fullName: OpenTK.Platform.Toolkit.Vulkan +- uid: OpenTK.Platform.IVulkanComponent + commentId: T:OpenTK.Platform.IVulkanComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IVulkanComponent.html + name: IVulkanComponent + nameWithType: IVulkanComponent + fullName: OpenTK.Platform.IVulkanComponent +- uid: OpenTK.Platform.Toolkit.Init* + commentId: Overload:OpenTK.Platform.Toolkit.Init + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Init_OpenTK_Platform_ToolkitOptions_ + name: Init + nameWithType: Toolkit.Init + fullName: OpenTK.Platform.Toolkit.Init +- uid: OpenTK.Platform.ToolkitOptions + commentId: T:OpenTK.Platform.ToolkitOptions + parent: OpenTK.Platform + href: OpenTK.Platform.ToolkitOptions.html + name: ToolkitOptions + nameWithType: ToolkitOptions + fullName: OpenTK.Platform.ToolkitOptions diff --git a/api/OpenTK.Graphics.Glx.Screen.yml b/api/OpenTK.Platform.ToolkitOptions.MacOSOptions.yml similarity index 65% rename from api/OpenTK.Graphics.Glx.Screen.yml rename to api/OpenTK.Platform.ToolkitOptions.MacOSOptions.yml index f734e999..9deb135d 100644 --- a/api/OpenTK.Graphics.Glx.Screen.yml +++ b/api/OpenTK.Platform.ToolkitOptions.MacOSOptions.yml @@ -1,87 +1,88 @@ ### YamlMime:ManagedReference items: -- uid: OpenTK.Graphics.Glx.Screen - commentId: T:OpenTK.Graphics.Glx.Screen - id: Screen - parent: OpenTK.Graphics.Glx +- uid: OpenTK.Platform.ToolkitOptions.MacOSOptions + commentId: T:OpenTK.Platform.ToolkitOptions.MacOSOptions + id: ToolkitOptions.MacOSOptions + parent: OpenTK.Platform children: [] langs: - csharp - vb - name: Screen - nameWithType: Screen - fullName: OpenTK.Graphics.Glx.Screen - type: Struct + name: ToolkitOptions.MacOSOptions + nameWithType: ToolkitOptions.MacOSOptions + fullName: OpenTK.Platform.ToolkitOptions.MacOSOptions + type: Class source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Screen - path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 58 + id: MacOSOptions + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\ToolkitOptions.cs + startLine: 70 assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: Opaque struct for X11 screen. + - OpenTK.Platform + namespace: OpenTK.Platform + summary: macOS backend specific options. example: [] syntax: - content: public struct Screen - content.vb: Public Structure Screen + content: public sealed class ToolkitOptions.MacOSOptions + content.vb: Public NotInheritable Class ToolkitOptions.MacOSOptions + inheritance: + - System.Object inheritedMembers: - - System.ValueType.Equals(System.Object) - - System.ValueType.GetHashCode - - System.ValueType.ToString + - System.Object.Equals(System.Object) - System.Object.Equals(System.Object,System.Object) + - System.Object.GetHashCode - System.Object.GetType - System.Object.ReferenceEquals(System.Object,System.Object) + - System.Object.ToString references: -- uid: OpenTK.Graphics.Glx - commentId: N:OpenTK.Graphics.Glx +- uid: OpenTK.Platform + commentId: N:OpenTK.Platform href: OpenTK.html - name: OpenTK.Graphics.Glx - nameWithType: OpenTK.Graphics.Glx - fullName: OpenTK.Graphics.Glx + name: OpenTK.Platform + nameWithType: OpenTK.Platform + fullName: OpenTK.Platform spec.csharp: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Glx - name: Glx - href: OpenTK.Graphics.Glx.html + - uid: OpenTK.Platform + name: Platform + href: OpenTK.Platform.html spec.vb: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Glx - name: Glx - href: OpenTK.Graphics.Glx.html -- uid: System.ValueType.Equals(System.Object) - commentId: M:System.ValueType.Equals(System.Object) - parent: System.ValueType + - uid: OpenTK.Platform + name: Platform + href: OpenTK.Platform.html +- uid: System.Object + commentId: T:System.Object + parent: System isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals + href: https://learn.microsoft.com/dotnet/api/system.object + name: object + nameWithType: object + fullName: object + nameWithType.vb: Object + fullName.vb: Object + name.vb: Object +- uid: System.Object.Equals(System.Object) + commentId: M:System.Object.Equals(System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) name: Equals(object) - nameWithType: ValueType.Equals(object) - fullName: System.ValueType.Equals(object) - nameWithType.vb: ValueType.Equals(Object) - fullName.vb: System.ValueType.Equals(Object) + nameWithType: object.Equals(object) + fullName: object.Equals(object) + nameWithType.vb: Object.Equals(Object) + fullName.vb: Object.Equals(Object) name.vb: Equals(Object) spec.csharp: - - uid: System.ValueType.Equals(System.Object) + - uid: System.Object.Equals(System.Object) name: Equals isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - name: ( - uid: System.Object name: object @@ -89,60 +90,16 @@ references: href: https://learn.microsoft.com/dotnet/api/system.object - name: ) spec.vb: - - uid: System.ValueType.Equals(System.Object) + - uid: System.Object.Equals(System.Object) name: Equals isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - name: ( - uid: System.Object name: Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ) -- uid: System.ValueType.GetHashCode - commentId: M:System.ValueType.GetHashCode - parent: System.ValueType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - name: GetHashCode() - nameWithType: ValueType.GetHashCode() - fullName: System.ValueType.GetHashCode() - spec.csharp: - - uid: System.ValueType.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - - name: ( - - name: ) - spec.vb: - - uid: System.ValueType.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - - name: ( - - name: ) -- uid: System.ValueType.ToString - commentId: M:System.ValueType.ToString - parent: System.ValueType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - name: ToString() - nameWithType: ValueType.ToString() - fullName: System.ValueType.ToString() - spec.csharp: - - uid: System.ValueType.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - - name: ( - - name: ) - spec.vb: - - uid: System.ValueType.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - - name: ( - - name: ) - uid: System.Object.Equals(System.Object,System.Object) commentId: M:System.Object.Equals(System.Object,System.Object) parent: System.Object @@ -188,6 +145,30 @@ references: isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ) +- uid: System.Object.GetHashCode + commentId: M:System.Object.GetHashCode + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + name: GetHashCode() + nameWithType: object.GetHashCode() + fullName: object.GetHashCode() + nameWithType.vb: Object.GetHashCode() + fullName.vb: Object.GetHashCode() + spec.csharp: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) - uid: System.Object.GetType commentId: M:System.Object.GetType parent: System.Object @@ -257,25 +238,30 @@ references: isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ) -- uid: System.ValueType - commentId: T:System.ValueType - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype - name: ValueType - nameWithType: ValueType - fullName: System.ValueType -- uid: System.Object - commentId: T:System.Object - parent: System +- uid: System.Object.ToString + commentId: M:System.Object.ToString + parent: System.Object isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + name: ToString() + nameWithType: object.ToString() + fullName: object.ToString() + nameWithType.vb: Object.ToString() + fullName.vb: Object.ToString() + spec.csharp: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) + spec.vb: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) - uid: System commentId: N:System isExternal: true diff --git a/api/OpenTK.Platform.ToolkitOptions.WindowsOptions.yml b/api/OpenTK.Platform.ToolkitOptions.WindowsOptions.yml new file mode 100644 index 00000000..71de58db --- /dev/null +++ b/api/OpenTK.Platform.ToolkitOptions.WindowsOptions.yml @@ -0,0 +1,439 @@ +### YamlMime:ManagedReference +items: +- uid: OpenTK.Platform.ToolkitOptions.WindowsOptions + commentId: T:OpenTK.Platform.ToolkitOptions.WindowsOptions + id: ToolkitOptions.WindowsOptions + parent: OpenTK.Platform + children: + - OpenTK.Platform.ToolkitOptions.WindowsOptions.EnableVisualStyles + - OpenTK.Platform.ToolkitOptions.WindowsOptions.IsDPIAware + langs: + - csharp + - vb + name: ToolkitOptions.WindowsOptions + nameWithType: ToolkitOptions.WindowsOptions + fullName: OpenTK.Platform.ToolkitOptions.WindowsOptions + type: Class + source: + id: WindowsOptions + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\ToolkitOptions.cs + startLine: 43 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Windows backend specific options. + example: [] + syntax: + content: public sealed class ToolkitOptions.WindowsOptions + content.vb: Public NotInheritable Class ToolkitOptions.WindowsOptions + inheritance: + - System.Object + inheritedMembers: + - System.Object.Equals(System.Object) + - System.Object.Equals(System.Object,System.Object) + - System.Object.GetHashCode + - System.Object.GetType + - System.Object.ReferenceEquals(System.Object,System.Object) + - System.Object.ToString +- uid: OpenTK.Platform.ToolkitOptions.WindowsOptions.EnableVisualStyles + commentId: P:OpenTK.Platform.ToolkitOptions.WindowsOptions.EnableVisualStyles + id: EnableVisualStyles + parent: OpenTK.Platform.ToolkitOptions.WindowsOptions + langs: + - csharp + - vb + name: EnableVisualStyles + nameWithType: ToolkitOptions.WindowsOptions.EnableVisualStyles + fullName: OpenTK.Platform.ToolkitOptions.WindowsOptions.EnableVisualStyles + type: Property + source: + id: EnableVisualStyles + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\ToolkitOptions.cs + startLine: 52 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: >- + If visual styles should be enabled or not. + + OpenTK requires visual styles to be enabled for to work on windows. + + Visual styles can either be enabled by OpenTK by leaving this propery as true alternatively + + it can be enabled using a manifest that declares a depedency on Microsoft.Windows.Common-Controls (6.0.0.0). + + This property is set to true by default, but can be disabled through this option. + example: [] + syntax: + content: public bool EnableVisualStyles { get; set; } + parameters: [] + return: + type: System.Boolean + content.vb: Public Property EnableVisualStyles As Boolean + overload: OpenTK.Platform.ToolkitOptions.WindowsOptions.EnableVisualStyles* +- uid: OpenTK.Platform.ToolkitOptions.WindowsOptions.IsDPIAware + commentId: P:OpenTK.Platform.ToolkitOptions.WindowsOptions.IsDPIAware + id: IsDPIAware + parent: OpenTK.Platform.ToolkitOptions.WindowsOptions + langs: + - csharp + - vb + name: IsDPIAware + nameWithType: ToolkitOptions.WindowsOptions.IsDPIAware + fullName: OpenTK.Platform.ToolkitOptions.WindowsOptions.IsDPIAware + type: Property + source: + id: IsDPIAware + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\ToolkitOptions.cs + startLine: 57 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Whether OpenTK should mark the process as "DPI aware". + example: [] + syntax: + content: public bool IsDPIAware { get; set; } + parameters: [] + return: + type: System.Boolean + content.vb: Public Property IsDPIAware As Boolean + overload: OpenTK.Platform.ToolkitOptions.WindowsOptions.IsDPIAware* +references: +- uid: OpenTK.Platform + commentId: N:OpenTK.Platform + href: OpenTK.html + name: OpenTK.Platform + nameWithType: OpenTK.Platform + fullName: OpenTK.Platform + spec.csharp: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Platform + name: Platform + href: OpenTK.Platform.html + spec.vb: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Platform + name: Platform + href: OpenTK.Platform.html +- uid: System.Object + commentId: T:System.Object + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + name: object + nameWithType: object + fullName: object + nameWithType.vb: Object + fullName.vb: Object + name.vb: Object +- uid: System.Object.Equals(System.Object) + commentId: M:System.Object.Equals(System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + name: Equals(object) + nameWithType: object.Equals(object) + fullName: object.Equals(object) + nameWithType.vb: Object.Equals(Object) + fullName.vb: Object.Equals(Object) + name.vb: Equals(Object) + spec.csharp: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.Equals(System.Object,System.Object) + commentId: M:System.Object.Equals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + name: Equals(object, object) + nameWithType: object.Equals(object, object) + fullName: object.Equals(object, object) + nameWithType.vb: Object.Equals(Object, Object) + fullName.vb: Object.Equals(Object, Object) + name.vb: Equals(Object, Object) + spec.csharp: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.GetHashCode + commentId: M:System.Object.GetHashCode + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + name: GetHashCode() + nameWithType: object.GetHashCode() + fullName: object.GetHashCode() + nameWithType.vb: Object.GetHashCode() + fullName.vb: Object.GetHashCode() + spec.csharp: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) +- uid: System.Object.GetType + commentId: M:System.Object.GetType + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + name: GetType() + nameWithType: object.GetType() + fullName: object.GetType() + nameWithType.vb: Object.GetType() + fullName.vb: Object.GetType() + spec.csharp: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) +- uid: System.Object.ReferenceEquals(System.Object,System.Object) + commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + name: ReferenceEquals(object, object) + nameWithType: object.ReferenceEquals(object, object) + fullName: object.ReferenceEquals(object, object) + nameWithType.vb: Object.ReferenceEquals(Object, Object) + fullName.vb: Object.ReferenceEquals(Object, Object) + name.vb: ReferenceEquals(Object, Object) + spec.csharp: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.ToString + commentId: M:System.Object.ToString + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + name: ToString() + nameWithType: object.ToString() + fullName: object.ToString() + nameWithType.vb: Object.ToString() + fullName.vb: Object.ToString() + spec.csharp: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) + spec.vb: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) +- uid: System + commentId: N:System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System + nameWithType: System + fullName: System +- uid: OpenTK.Platform.IDialogComponent.ShowMessageBox(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.MessageBoxType,OpenTK.Platform.IconHandle) + commentId: M:OpenTK.Platform.IDialogComponent.ShowMessageBox(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.MessageBoxType,OpenTK.Platform.IconHandle) + parent: OpenTK.Platform.IDialogComponent + isExternal: true + href: OpenTK.Platform.IDialogComponent.html#OpenTK_Platform_IDialogComponent_ShowMessageBox_OpenTK_Platform_WindowHandle_System_String_System_String_OpenTK_Platform_MessageBoxType_OpenTK_Platform_IconHandle_ + name: ShowMessageBox(WindowHandle, string, string, MessageBoxType, IconHandle) + nameWithType: IDialogComponent.ShowMessageBox(WindowHandle, string, string, MessageBoxType, IconHandle) + fullName: OpenTK.Platform.IDialogComponent.ShowMessageBox(OpenTK.Platform.WindowHandle, string, string, OpenTK.Platform.MessageBoxType, OpenTK.Platform.IconHandle) + nameWithType.vb: IDialogComponent.ShowMessageBox(WindowHandle, String, String, MessageBoxType, IconHandle) + fullName.vb: OpenTK.Platform.IDialogComponent.ShowMessageBox(OpenTK.Platform.WindowHandle, String, String, OpenTK.Platform.MessageBoxType, OpenTK.Platform.IconHandle) + name.vb: ShowMessageBox(WindowHandle, String, String, MessageBoxType, IconHandle) + spec.csharp: + - uid: OpenTK.Platform.IDialogComponent.ShowMessageBox(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.MessageBoxType,OpenTK.Platform.IconHandle) + name: ShowMessageBox + href: OpenTK.Platform.IDialogComponent.html#OpenTK_Platform_IDialogComponent_ShowMessageBox_OpenTK_Platform_WindowHandle_System_String_System_String_OpenTK_Platform_MessageBoxType_OpenTK_Platform_IconHandle_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: System.String + name: string + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ',' + - name: " " + - uid: System.String + name: string + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ',' + - name: " " + - uid: OpenTK.Platform.MessageBoxType + name: MessageBoxType + href: OpenTK.Platform.MessageBoxType.html + - name: ',' + - name: " " + - uid: OpenTK.Platform.IconHandle + name: IconHandle + href: OpenTK.Platform.IconHandle.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IDialogComponent.ShowMessageBox(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.MessageBoxType,OpenTK.Platform.IconHandle) + name: ShowMessageBox + href: OpenTK.Platform.IDialogComponent.html#OpenTK_Platform_IDialogComponent_ShowMessageBox_OpenTK_Platform_WindowHandle_System_String_System_String_OpenTK_Platform_MessageBoxType_OpenTK_Platform_IconHandle_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: System.String + name: String + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ',' + - name: " " + - uid: System.String + name: String + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ',' + - name: " " + - uid: OpenTK.Platform.MessageBoxType + name: MessageBoxType + href: OpenTK.Platform.MessageBoxType.html + - name: ',' + - name: " " + - uid: OpenTK.Platform.IconHandle + name: IconHandle + href: OpenTK.Platform.IconHandle.html + - name: ) +- uid: OpenTK.Platform.ToolkitOptions.WindowsOptions.EnableVisualStyles* + commentId: Overload:OpenTK.Platform.ToolkitOptions.WindowsOptions.EnableVisualStyles + href: OpenTK.Platform.ToolkitOptions.WindowsOptions.html#OpenTK_Platform_ToolkitOptions_WindowsOptions_EnableVisualStyles + name: EnableVisualStyles + nameWithType: ToolkitOptions.WindowsOptions.EnableVisualStyles + fullName: OpenTK.Platform.ToolkitOptions.WindowsOptions.EnableVisualStyles +- uid: System.Boolean + commentId: T:System.Boolean + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + name: bool + nameWithType: bool + fullName: bool + nameWithType.vb: Boolean + fullName.vb: Boolean + name.vb: Boolean +- uid: OpenTK.Platform.IDialogComponent + commentId: T:OpenTK.Platform.IDialogComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IDialogComponent.html + name: IDialogComponent + nameWithType: IDialogComponent + fullName: OpenTK.Platform.IDialogComponent +- uid: OpenTK.Platform.ToolkitOptions.WindowsOptions.IsDPIAware* + commentId: Overload:OpenTK.Platform.ToolkitOptions.WindowsOptions.IsDPIAware + href: OpenTK.Platform.ToolkitOptions.WindowsOptions.html#OpenTK_Platform_ToolkitOptions_WindowsOptions_IsDPIAware + name: IsDPIAware + nameWithType: ToolkitOptions.WindowsOptions.IsDPIAware + fullName: OpenTK.Platform.ToolkitOptions.WindowsOptions.IsDPIAware diff --git a/api/OpenTK.Graphics.Glx.Display.yml b/api/OpenTK.Platform.ToolkitOptions.X11Options.yml similarity index 65% rename from api/OpenTK.Graphics.Glx.Display.yml rename to api/OpenTK.Platform.ToolkitOptions.X11Options.yml index 41017e8e..a031177b 100644 --- a/api/OpenTK.Graphics.Glx.Display.yml +++ b/api/OpenTK.Platform.ToolkitOptions.X11Options.yml @@ -1,87 +1,88 @@ ### YamlMime:ManagedReference items: -- uid: OpenTK.Graphics.Glx.Display - commentId: T:OpenTK.Graphics.Glx.Display - id: Display - parent: OpenTK.Graphics.Glx +- uid: OpenTK.Platform.ToolkitOptions.X11Options + commentId: T:OpenTK.Platform.ToolkitOptions.X11Options + id: ToolkitOptions.X11Options + parent: OpenTK.Platform children: [] langs: - csharp - vb - name: Display - nameWithType: Display - fullName: OpenTK.Graphics.Glx.Display - type: Struct + name: ToolkitOptions.X11Options + nameWithType: ToolkitOptions.X11Options + fullName: OpenTK.Platform.ToolkitOptions.X11Options + type: Class source: - remote: - path: src/OpenTK.Graphics/Types.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Display - path: opentk/src/OpenTK.Graphics/Types.cs - startLine: 49 + id: X11Options + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\ToolkitOptions.cs + startLine: 63 assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: Opaque struct for X11 display. + - OpenTK.Platform + namespace: OpenTK.Platform + summary: X11 backend specific options. example: [] syntax: - content: public struct Display - content.vb: Public Structure Display + content: public sealed class ToolkitOptions.X11Options + content.vb: Public NotInheritable Class ToolkitOptions.X11Options + inheritance: + - System.Object inheritedMembers: - - System.ValueType.Equals(System.Object) - - System.ValueType.GetHashCode - - System.ValueType.ToString + - System.Object.Equals(System.Object) - System.Object.Equals(System.Object,System.Object) + - System.Object.GetHashCode - System.Object.GetType - System.Object.ReferenceEquals(System.Object,System.Object) + - System.Object.ToString references: -- uid: OpenTK.Graphics.Glx - commentId: N:OpenTK.Graphics.Glx +- uid: OpenTK.Platform + commentId: N:OpenTK.Platform href: OpenTK.html - name: OpenTK.Graphics.Glx - nameWithType: OpenTK.Graphics.Glx - fullName: OpenTK.Graphics.Glx + name: OpenTK.Platform + nameWithType: OpenTK.Platform + fullName: OpenTK.Platform spec.csharp: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Glx - name: Glx - href: OpenTK.Graphics.Glx.html + - uid: OpenTK.Platform + name: Platform + href: OpenTK.Platform.html spec.vb: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Glx - name: Glx - href: OpenTK.Graphics.Glx.html -- uid: System.ValueType.Equals(System.Object) - commentId: M:System.ValueType.Equals(System.Object) - parent: System.ValueType + - uid: OpenTK.Platform + name: Platform + href: OpenTK.Platform.html +- uid: System.Object + commentId: T:System.Object + parent: System isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals + href: https://learn.microsoft.com/dotnet/api/system.object + name: object + nameWithType: object + fullName: object + nameWithType.vb: Object + fullName.vb: Object + name.vb: Object +- uid: System.Object.Equals(System.Object) + commentId: M:System.Object.Equals(System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) name: Equals(object) - nameWithType: ValueType.Equals(object) - fullName: System.ValueType.Equals(object) - nameWithType.vb: ValueType.Equals(Object) - fullName.vb: System.ValueType.Equals(Object) + nameWithType: object.Equals(object) + fullName: object.Equals(object) + nameWithType.vb: Object.Equals(Object) + fullName.vb: Object.Equals(Object) name.vb: Equals(Object) spec.csharp: - - uid: System.ValueType.Equals(System.Object) + - uid: System.Object.Equals(System.Object) name: Equals isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - name: ( - uid: System.Object name: object @@ -89,60 +90,16 @@ references: href: https://learn.microsoft.com/dotnet/api/system.object - name: ) spec.vb: - - uid: System.ValueType.Equals(System.Object) + - uid: System.Object.Equals(System.Object) name: Equals isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - name: ( - uid: System.Object name: Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ) -- uid: System.ValueType.GetHashCode - commentId: M:System.ValueType.GetHashCode - parent: System.ValueType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - name: GetHashCode() - nameWithType: ValueType.GetHashCode() - fullName: System.ValueType.GetHashCode() - spec.csharp: - - uid: System.ValueType.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - - name: ( - - name: ) - spec.vb: - - uid: System.ValueType.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - - name: ( - - name: ) -- uid: System.ValueType.ToString - commentId: M:System.ValueType.ToString - parent: System.ValueType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - name: ToString() - nameWithType: ValueType.ToString() - fullName: System.ValueType.ToString() - spec.csharp: - - uid: System.ValueType.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - - name: ( - - name: ) - spec.vb: - - uid: System.ValueType.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - - name: ( - - name: ) - uid: System.Object.Equals(System.Object,System.Object) commentId: M:System.Object.Equals(System.Object,System.Object) parent: System.Object @@ -188,6 +145,30 @@ references: isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ) +- uid: System.Object.GetHashCode + commentId: M:System.Object.GetHashCode + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + name: GetHashCode() + nameWithType: object.GetHashCode() + fullName: object.GetHashCode() + nameWithType.vb: Object.GetHashCode() + fullName.vb: Object.GetHashCode() + spec.csharp: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) - uid: System.Object.GetType commentId: M:System.Object.GetType parent: System.Object @@ -257,25 +238,30 @@ references: isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ) -- uid: System.ValueType - commentId: T:System.ValueType - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype - name: ValueType - nameWithType: ValueType - fullName: System.ValueType -- uid: System.Object - commentId: T:System.Object - parent: System +- uid: System.Object.ToString + commentId: M:System.Object.ToString + parent: System.Object isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + name: ToString() + nameWithType: object.ToString() + fullName: object.ToString() + nameWithType.vb: Object.ToString() + fullName.vb: Object.ToString() + spec.csharp: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) + spec.vb: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) - uid: System commentId: N:System isExternal: true diff --git a/api/OpenTK.Core.Platform.ToolkitOptions.yml b/api/OpenTK.Platform.ToolkitOptions.yml similarity index 55% rename from api/OpenTK.Core.Platform.ToolkitOptions.yml rename to api/OpenTK.Platform.ToolkitOptions.yml index eca936f6..c695e330 100644 --- a/api/OpenTK.Core.Platform.ToolkitOptions.yml +++ b/api/OpenTK.Platform.ToolkitOptions.yml @@ -1,30 +1,29 @@ ### YamlMime:ManagedReference items: -- uid: OpenTK.Core.Platform.ToolkitOptions - commentId: T:OpenTK.Core.Platform.ToolkitOptions +- uid: OpenTK.Platform.ToolkitOptions + commentId: T:OpenTK.Platform.ToolkitOptions id: ToolkitOptions - parent: OpenTK.Core.Platform + parent: OpenTK.Platform children: - - OpenTK.Core.Platform.ToolkitOptions.ApplicationName - - OpenTK.Core.Platform.ToolkitOptions.Logger + - OpenTK.Platform.ToolkitOptions.ApplicationName + - OpenTK.Platform.ToolkitOptions.Logger + - OpenTK.Platform.ToolkitOptions.MacOS + - OpenTK.Platform.ToolkitOptions.Windows + - OpenTK.Platform.ToolkitOptions.X11 langs: - csharp - vb name: ToolkitOptions nameWithType: ToolkitOptions - fullName: OpenTK.Core.Platform.ToolkitOptions + fullName: OpenTK.Platform.ToolkitOptions type: Class source: - remote: - path: src/OpenTK.Core/Platform/ToolkitOptions.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToolkitOptions - path: opentk/src/OpenTK.Core/Platform/ToolkitOptions.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\ToolkitOptions.cs startLine: 9 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform + - OpenTK.Platform + namespace: OpenTK.Platform summary: Options used to initialize OpenTK with. example: [] syntax: @@ -39,28 +38,24 @@ items: - System.Object.GetType - System.Object.ReferenceEquals(System.Object,System.Object) - System.Object.ToString -- uid: OpenTK.Core.Platform.ToolkitOptions.ApplicationName - commentId: P:OpenTK.Core.Platform.ToolkitOptions.ApplicationName +- uid: OpenTK.Platform.ToolkitOptions.ApplicationName + commentId: P:OpenTK.Platform.ToolkitOptions.ApplicationName id: ApplicationName - parent: OpenTK.Core.Platform.ToolkitOptions + parent: OpenTK.Platform.ToolkitOptions langs: - csharp - vb name: ApplicationName nameWithType: ToolkitOptions.ApplicationName - fullName: OpenTK.Core.Platform.ToolkitOptions.ApplicationName + fullName: OpenTK.Platform.ToolkitOptions.ApplicationName type: Property source: - remote: - path: src/OpenTK.Core/Platform/ToolkitOptions.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ApplicationName - path: opentk/src/OpenTK.Core/Platform/ToolkitOptions.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\ToolkitOptions.cs startLine: 14 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform + - OpenTK.Platform + namespace: OpenTK.Platform summary: The application name. example: [] syntax: @@ -69,29 +64,25 @@ items: return: type: System.String content.vb: Public Property ApplicationName As String - overload: OpenTK.Core.Platform.ToolkitOptions.ApplicationName* -- uid: OpenTK.Core.Platform.ToolkitOptions.Logger - commentId: P:OpenTK.Core.Platform.ToolkitOptions.Logger + overload: OpenTK.Platform.ToolkitOptions.ApplicationName* +- uid: OpenTK.Platform.ToolkitOptions.Logger + commentId: P:OpenTK.Platform.ToolkitOptions.Logger id: Logger - parent: OpenTK.Core.Platform.ToolkitOptions + parent: OpenTK.Platform.ToolkitOptions langs: - csharp - vb name: Logger nameWithType: ToolkitOptions.Logger - fullName: OpenTK.Core.Platform.ToolkitOptions.Logger + fullName: OpenTK.Platform.ToolkitOptions.Logger type: Property source: - remote: - path: src/OpenTK.Core/Platform/ToolkitOptions.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Logger - path: opentk/src/OpenTK.Core/Platform/ToolkitOptions.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\ToolkitOptions.cs startLine: 21 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform + - OpenTK.Platform + namespace: OpenTK.Platform summary: >- The logger to send logging to. @@ -105,38 +96,111 @@ items: return: type: OpenTK.Core.Utility.ILogger content.vb: Public Property Logger As ILogger - overload: OpenTK.Core.Platform.ToolkitOptions.Logger* + overload: OpenTK.Platform.ToolkitOptions.Logger* +- uid: OpenTK.Platform.ToolkitOptions.Windows + commentId: P:OpenTK.Platform.ToolkitOptions.Windows + id: Windows + parent: OpenTK.Platform.ToolkitOptions + langs: + - csharp + - vb + name: Windows + nameWithType: ToolkitOptions.Windows + fullName: OpenTK.Platform.ToolkitOptions.Windows + type: Property + source: + id: Windows + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\ToolkitOptions.cs + startLine: 28 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Windows backend specific options. + example: [] + syntax: + content: public ToolkitOptions.WindowsOptions Windows { get; set; } + parameters: [] + return: + type: OpenTK.Platform.ToolkitOptions.WindowsOptions + content.vb: Public Property Windows As ToolkitOptions.WindowsOptions + overload: OpenTK.Platform.ToolkitOptions.Windows* +- uid: OpenTK.Platform.ToolkitOptions.X11 + commentId: P:OpenTK.Platform.ToolkitOptions.X11 + id: X11 + parent: OpenTK.Platform.ToolkitOptions + langs: + - csharp + - vb + name: X11 + nameWithType: ToolkitOptions.X11 + fullName: OpenTK.Platform.ToolkitOptions.X11 + type: Property + source: + id: X11 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\ToolkitOptions.cs + startLine: 33 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: X11 backend specific options. + example: [] + syntax: + content: public ToolkitOptions.X11Options X11 { get; set; } + parameters: [] + return: + type: OpenTK.Platform.ToolkitOptions.X11Options + content.vb: Public Property X11 As ToolkitOptions.X11Options + overload: OpenTK.Platform.ToolkitOptions.X11* +- uid: OpenTK.Platform.ToolkitOptions.MacOS + commentId: P:OpenTK.Platform.ToolkitOptions.MacOS + id: MacOS + parent: OpenTK.Platform.ToolkitOptions + langs: + - csharp + - vb + name: MacOS + nameWithType: ToolkitOptions.MacOS + fullName: OpenTK.Platform.ToolkitOptions.MacOS + type: Property + source: + id: MacOS + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\ToolkitOptions.cs + startLine: 38 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: macOS backend specific options. + example: [] + syntax: + content: public ToolkitOptions.MacOSOptions MacOS { get; set; } + parameters: [] + return: + type: OpenTK.Platform.ToolkitOptions.MacOSOptions + content.vb: Public Property MacOS As ToolkitOptions.MacOSOptions + overload: OpenTK.Platform.ToolkitOptions.MacOS* references: -- uid: OpenTK.Core.Platform - commentId: N:OpenTK.Core.Platform +- uid: OpenTK.Platform + commentId: N:OpenTK.Platform href: OpenTK.html - name: OpenTK.Core.Platform - nameWithType: OpenTK.Core.Platform - fullName: OpenTK.Core.Platform + name: OpenTK.Platform + nameWithType: OpenTK.Platform + fullName: OpenTK.Platform spec.csharp: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html spec.vb: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html - uid: System.Object commentId: T:System.Object parent: System @@ -350,12 +414,12 @@ references: name: System nameWithType: System fullName: System -- uid: OpenTK.Core.Platform.ToolkitOptions.ApplicationName* - commentId: Overload:OpenTK.Core.Platform.ToolkitOptions.ApplicationName - href: OpenTK.Core.Platform.ToolkitOptions.html#OpenTK_Core_Platform_ToolkitOptions_ApplicationName +- uid: OpenTK.Platform.ToolkitOptions.ApplicationName* + commentId: Overload:OpenTK.Platform.ToolkitOptions.ApplicationName + href: OpenTK.Platform.ToolkitOptions.html#OpenTK_Platform_ToolkitOptions_ApplicationName name: ApplicationName nameWithType: ToolkitOptions.ApplicationName - fullName: OpenTK.Core.Platform.ToolkitOptions.ApplicationName + fullName: OpenTK.Platform.ToolkitOptions.ApplicationName - uid: System.String commentId: T:System.String parent: System @@ -367,12 +431,12 @@ references: nameWithType.vb: String fullName.vb: String name.vb: String -- uid: OpenTK.Core.Platform.ToolkitOptions.Logger* - commentId: Overload:OpenTK.Core.Platform.ToolkitOptions.Logger - href: OpenTK.Core.Platform.ToolkitOptions.html#OpenTK_Core_Platform_ToolkitOptions_Logger +- uid: OpenTK.Platform.ToolkitOptions.Logger* + commentId: Overload:OpenTK.Platform.ToolkitOptions.Logger + href: OpenTK.Platform.ToolkitOptions.html#OpenTK_Platform_ToolkitOptions_Logger name: Logger nameWithType: ToolkitOptions.Logger - fullName: OpenTK.Core.Platform.ToolkitOptions.Logger + fullName: OpenTK.Platform.ToolkitOptions.Logger - uid: OpenTK.Core.Utility.ILogger commentId: T:OpenTK.Core.Utility.ILogger parent: OpenTK.Core.Utility @@ -410,3 +474,90 @@ references: - uid: OpenTK.Core.Utility name: Utility href: OpenTK.Core.Utility.html +- uid: OpenTK.Platform.ToolkitOptions.Windows* + commentId: Overload:OpenTK.Platform.ToolkitOptions.Windows + href: OpenTK.Platform.ToolkitOptions.html#OpenTK_Platform_ToolkitOptions_Windows + name: Windows + nameWithType: ToolkitOptions.Windows + fullName: OpenTK.Platform.ToolkitOptions.Windows +- uid: OpenTK.Platform.ToolkitOptions.WindowsOptions + commentId: T:OpenTK.Platform.ToolkitOptions.WindowsOptions + parent: OpenTK.Platform + href: OpenTK.Platform.ToolkitOptions.html + name: ToolkitOptions.WindowsOptions + nameWithType: ToolkitOptions.WindowsOptions + fullName: OpenTK.Platform.ToolkitOptions.WindowsOptions + spec.csharp: + - uid: OpenTK.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Platform.ToolkitOptions.html + - name: . + - uid: OpenTK.Platform.ToolkitOptions.WindowsOptions + name: WindowsOptions + href: OpenTK.Platform.ToolkitOptions.WindowsOptions.html + spec.vb: + - uid: OpenTK.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Platform.ToolkitOptions.html + - name: . + - uid: OpenTK.Platform.ToolkitOptions.WindowsOptions + name: WindowsOptions + href: OpenTK.Platform.ToolkitOptions.WindowsOptions.html +- uid: OpenTK.Platform.ToolkitOptions.X11* + commentId: Overload:OpenTK.Platform.ToolkitOptions.X11 + href: OpenTK.Platform.ToolkitOptions.html#OpenTK_Platform_ToolkitOptions_X11 + name: X11 + nameWithType: ToolkitOptions.X11 + fullName: OpenTK.Platform.ToolkitOptions.X11 +- uid: OpenTK.Platform.ToolkitOptions.X11Options + commentId: T:OpenTK.Platform.ToolkitOptions.X11Options + parent: OpenTK.Platform + href: OpenTK.Platform.ToolkitOptions.html + name: ToolkitOptions.X11Options + nameWithType: ToolkitOptions.X11Options + fullName: OpenTK.Platform.ToolkitOptions.X11Options + spec.csharp: + - uid: OpenTK.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Platform.ToolkitOptions.html + - name: . + - uid: OpenTK.Platform.ToolkitOptions.X11Options + name: X11Options + href: OpenTK.Platform.ToolkitOptions.X11Options.html + spec.vb: + - uid: OpenTK.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Platform.ToolkitOptions.html + - name: . + - uid: OpenTK.Platform.ToolkitOptions.X11Options + name: X11Options + href: OpenTK.Platform.ToolkitOptions.X11Options.html +- uid: OpenTK.Platform.ToolkitOptions.MacOS* + commentId: Overload:OpenTK.Platform.ToolkitOptions.MacOS + href: OpenTK.Platform.ToolkitOptions.html#OpenTK_Platform_ToolkitOptions_MacOS + name: MacOS + nameWithType: ToolkitOptions.MacOS + fullName: OpenTK.Platform.ToolkitOptions.MacOS +- uid: OpenTK.Platform.ToolkitOptions.MacOSOptions + commentId: T:OpenTK.Platform.ToolkitOptions.MacOSOptions + parent: OpenTK.Platform + href: OpenTK.Platform.ToolkitOptions.html + name: ToolkitOptions.MacOSOptions + nameWithType: ToolkitOptions.MacOSOptions + fullName: OpenTK.Platform.ToolkitOptions.MacOSOptions + spec.csharp: + - uid: OpenTK.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Platform.ToolkitOptions.html + - name: . + - uid: OpenTK.Platform.ToolkitOptions.MacOSOptions + name: MacOSOptions + href: OpenTK.Platform.ToolkitOptions.MacOSOptions.html + spec.vb: + - uid: OpenTK.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Platform.ToolkitOptions.html + - name: . + - uid: OpenTK.Platform.ToolkitOptions.MacOSOptions + name: MacOSOptions + href: OpenTK.Platform.ToolkitOptions.MacOSOptions.html diff --git a/api/OpenTK.Core.Platform.VideoMode.yml b/api/OpenTK.Platform.VideoMode.yml similarity index 70% rename from api/OpenTK.Core.Platform.VideoMode.yml rename to api/OpenTK.Platform.VideoMode.yml index de707f1a..c9c6eb5f 100644 --- a/api/OpenTK.Core.Platform.VideoMode.yml +++ b/api/OpenTK.Platform.VideoMode.yml @@ -1,34 +1,30 @@ ### YamlMime:ManagedReference items: -- uid: OpenTK.Core.Platform.VideoMode - commentId: T:OpenTK.Core.Platform.VideoMode +- uid: OpenTK.Platform.VideoMode + commentId: T:OpenTK.Platform.VideoMode id: VideoMode - parent: OpenTK.Core.Platform + parent: OpenTK.Platform children: - - OpenTK.Core.Platform.VideoMode.#ctor(System.Int32,System.Int32,System.Single,System.Int32) - - OpenTK.Core.Platform.VideoMode.BitsPerPixel - - OpenTK.Core.Platform.VideoMode.Height - - OpenTK.Core.Platform.VideoMode.RefreshRate - - OpenTK.Core.Platform.VideoMode.ToString - - OpenTK.Core.Platform.VideoMode.Width + - OpenTK.Platform.VideoMode.#ctor(System.Int32,System.Int32,System.Single,System.Int32) + - OpenTK.Platform.VideoMode.BitsPerPixel + - OpenTK.Platform.VideoMode.Height + - OpenTK.Platform.VideoMode.RefreshRate + - OpenTK.Platform.VideoMode.ToString + - OpenTK.Platform.VideoMode.Width langs: - csharp - vb name: VideoMode nameWithType: VideoMode - fullName: OpenTK.Core.Platform.VideoMode + fullName: OpenTK.Platform.VideoMode type: Struct source: - remote: - path: src/OpenTK.Core/Platform/VideoMode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: VideoMode - path: opentk/src/OpenTK.Core/Platform/VideoMode.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\VideoMode.cs startLine: 7 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform + - OpenTK.Platform + namespace: OpenTK.Platform summary: This structure represents a display video mode. example: [] syntax: @@ -40,28 +36,24 @@ items: - System.Object.Equals(System.Object,System.Object) - System.Object.GetType - System.Object.ReferenceEquals(System.Object,System.Object) -- uid: OpenTK.Core.Platform.VideoMode.Width - commentId: F:OpenTK.Core.Platform.VideoMode.Width +- uid: OpenTK.Platform.VideoMode.Width + commentId: F:OpenTK.Platform.VideoMode.Width id: Width - parent: OpenTK.Core.Platform.VideoMode + parent: OpenTK.Platform.VideoMode langs: - csharp - vb name: Width nameWithType: VideoMode.Width - fullName: OpenTK.Core.Platform.VideoMode.Width + fullName: OpenTK.Platform.VideoMode.Width type: Field source: - remote: - path: src/OpenTK.Core/Platform/VideoMode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Width - path: opentk/src/OpenTK.Core/Platform/VideoMode.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\VideoMode.cs startLine: 12 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform + - OpenTK.Platform + namespace: OpenTK.Platform summary: Width in pixels of the video mode. example: [] syntax: @@ -69,28 +61,24 @@ items: return: type: System.Int32 content.vb: Public Width As Integer -- uid: OpenTK.Core.Platform.VideoMode.Height - commentId: F:OpenTK.Core.Platform.VideoMode.Height +- uid: OpenTK.Platform.VideoMode.Height + commentId: F:OpenTK.Platform.VideoMode.Height id: Height - parent: OpenTK.Core.Platform.VideoMode + parent: OpenTK.Platform.VideoMode langs: - csharp - vb name: Height nameWithType: VideoMode.Height - fullName: OpenTK.Core.Platform.VideoMode.Height + fullName: OpenTK.Platform.VideoMode.Height type: Field source: - remote: - path: src/OpenTK.Core/Platform/VideoMode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Height - path: opentk/src/OpenTK.Core/Platform/VideoMode.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\VideoMode.cs startLine: 17 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform + - OpenTK.Platform + namespace: OpenTK.Platform summary: Height in pixels of the video mode. example: [] syntax: @@ -98,28 +86,24 @@ items: return: type: System.Int32 content.vb: Public Height As Integer -- uid: OpenTK.Core.Platform.VideoMode.RefreshRate - commentId: F:OpenTK.Core.Platform.VideoMode.RefreshRate +- uid: OpenTK.Platform.VideoMode.RefreshRate + commentId: F:OpenTK.Platform.VideoMode.RefreshRate id: RefreshRate - parent: OpenTK.Core.Platform.VideoMode + parent: OpenTK.Platform.VideoMode langs: - csharp - vb name: RefreshRate nameWithType: VideoMode.RefreshRate - fullName: OpenTK.Core.Platform.VideoMode.RefreshRate + fullName: OpenTK.Platform.VideoMode.RefreshRate type: Field source: - remote: - path: src/OpenTK.Core/Platform/VideoMode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: RefreshRate - path: opentk/src/OpenTK.Core/Platform/VideoMode.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\VideoMode.cs startLine: 22 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform + - OpenTK.Platform + namespace: OpenTK.Platform summary: Refresh rate in Hz of the video mode. example: [] syntax: @@ -127,28 +111,24 @@ items: return: type: System.Single content.vb: Public RefreshRate As Single -- uid: OpenTK.Core.Platform.VideoMode.BitsPerPixel - commentId: F:OpenTK.Core.Platform.VideoMode.BitsPerPixel +- uid: OpenTK.Platform.VideoMode.BitsPerPixel + commentId: F:OpenTK.Platform.VideoMode.BitsPerPixel id: BitsPerPixel - parent: OpenTK.Core.Platform.VideoMode + parent: OpenTK.Platform.VideoMode langs: - csharp - vb name: BitsPerPixel nameWithType: VideoMode.BitsPerPixel - fullName: OpenTK.Core.Platform.VideoMode.BitsPerPixel + fullName: OpenTK.Platform.VideoMode.BitsPerPixel type: Field source: - remote: - path: src/OpenTK.Core/Platform/VideoMode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: BitsPerPixel - path: opentk/src/OpenTK.Core/Platform/VideoMode.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\VideoMode.cs startLine: 33 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform + - OpenTK.Platform + namespace: OpenTK.Platform summary: Number of bits used to represent each color in the video mode. example: [] syntax: @@ -156,29 +136,25 @@ items: return: type: System.Int32 content.vb: Public BitsPerPixel As Integer -- uid: OpenTK.Core.Platform.VideoMode.#ctor(System.Int32,System.Int32,System.Single,System.Int32) - commentId: M:OpenTK.Core.Platform.VideoMode.#ctor(System.Int32,System.Int32,System.Single,System.Int32) +- uid: OpenTK.Platform.VideoMode.#ctor(System.Int32,System.Int32,System.Single,System.Int32) + commentId: M:OpenTK.Platform.VideoMode.#ctor(System.Int32,System.Int32,System.Single,System.Int32) id: '#ctor(System.Int32,System.Int32,System.Single,System.Int32)' - parent: OpenTK.Core.Platform.VideoMode + parent: OpenTK.Platform.VideoMode langs: - csharp - vb name: VideoMode(int, int, float, int) nameWithType: VideoMode.VideoMode(int, int, float, int) - fullName: OpenTK.Core.Platform.VideoMode.VideoMode(int, int, float, int) + fullName: OpenTK.Platform.VideoMode.VideoMode(int, int, float, int) type: Constructor source: - remote: - path: src/OpenTK.Core/Platform/VideoMode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Core/Platform/VideoMode.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\VideoMode.cs startLine: 42 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Initializes a new instance of the struct. + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Initializes a new instance of the struct. example: [] syntax: content: public VideoMode(int width, int height, float refreshRate, int bitsPerPixel) @@ -196,32 +172,28 @@ items: type: System.Int32 description: The color depth of the video mode. content.vb: Public Sub New(width As Integer, height As Integer, refreshRate As Single, bitsPerPixel As Integer) - overload: OpenTK.Core.Platform.VideoMode.#ctor* + overload: OpenTK.Platform.VideoMode.#ctor* nameWithType.vb: VideoMode.New(Integer, Integer, Single, Integer) - fullName.vb: OpenTK.Core.Platform.VideoMode.New(Integer, Integer, Single, Integer) + fullName.vb: OpenTK.Platform.VideoMode.New(Integer, Integer, Single, Integer) name.vb: New(Integer, Integer, Single, Integer) -- uid: OpenTK.Core.Platform.VideoMode.ToString - commentId: M:OpenTK.Core.Platform.VideoMode.ToString +- uid: OpenTK.Platform.VideoMode.ToString + commentId: M:OpenTK.Platform.VideoMode.ToString id: ToString - parent: OpenTK.Core.Platform.VideoMode + parent: OpenTK.Platform.VideoMode langs: - csharp - vb name: ToString() nameWithType: VideoMode.ToString() - fullName: OpenTK.Core.Platform.VideoMode.ToString() + fullName: OpenTK.Platform.VideoMode.ToString() type: Method source: - remote: - path: src/OpenTK.Core/Platform/VideoMode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Core/Platform/VideoMode.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\VideoMode.cs startLine: 54 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform + - OpenTK.Platform + namespace: OpenTK.Platform summary: Returns the video mode as a string with the format "{Width}x{Height}@{RefreshRate} ({RedBits}:{GreenBits}:{BlueBits})". example: [] syntax: @@ -231,38 +203,30 @@ items: description: The string representation of the video mode. content.vb: Public Overrides Function ToString() As String overridden: System.ValueType.ToString - overload: OpenTK.Core.Platform.VideoMode.ToString* + overload: OpenTK.Platform.VideoMode.ToString* references: -- uid: OpenTK.Core.Platform - commentId: N:OpenTK.Core.Platform +- uid: OpenTK.Platform + commentId: N:OpenTK.Platform href: OpenTK.html - name: OpenTK.Core.Platform - nameWithType: OpenTK.Core.Platform - fullName: OpenTK.Core.Platform + name: OpenTK.Platform + nameWithType: OpenTK.Platform + fullName: OpenTK.Platform spec.csharp: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html spec.vb: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html - uid: System.ValueType.Equals(System.Object) commentId: M:System.ValueType.Equals(System.Object) parent: System.ValueType @@ -480,21 +444,21 @@ references: nameWithType.vb: Single fullName.vb: Single name.vb: Single -- uid: OpenTK.Core.Platform.VideoMode - commentId: T:OpenTK.Core.Platform.VideoMode - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.VideoMode.html +- uid: OpenTK.Platform.VideoMode + commentId: T:OpenTK.Platform.VideoMode + parent: OpenTK.Platform + href: OpenTK.Platform.VideoMode.html name: VideoMode nameWithType: VideoMode - fullName: OpenTK.Core.Platform.VideoMode -- uid: OpenTK.Core.Platform.VideoMode.#ctor* - commentId: Overload:OpenTK.Core.Platform.VideoMode.#ctor - href: OpenTK.Core.Platform.VideoMode.html#OpenTK_Core_Platform_VideoMode__ctor_System_Int32_System_Int32_System_Single_System_Int32_ + fullName: OpenTK.Platform.VideoMode +- uid: OpenTK.Platform.VideoMode.#ctor* + commentId: Overload:OpenTK.Platform.VideoMode.#ctor + href: OpenTK.Platform.VideoMode.html#OpenTK_Platform_VideoMode__ctor_System_Int32_System_Int32_System_Single_System_Int32_ name: VideoMode nameWithType: VideoMode.VideoMode - fullName: OpenTK.Core.Platform.VideoMode.VideoMode + fullName: OpenTK.Platform.VideoMode.VideoMode nameWithType.vb: VideoMode.New - fullName.vb: OpenTK.Core.Platform.VideoMode.New + fullName.vb: OpenTK.Platform.VideoMode.New name.vb: New - uid: System.ValueType.ToString commentId: M:System.ValueType.ToString @@ -518,12 +482,12 @@ references: href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - name: ( - name: ) -- uid: OpenTK.Core.Platform.VideoMode.ToString* - commentId: Overload:OpenTK.Core.Platform.VideoMode.ToString - href: OpenTK.Core.Platform.VideoMode.html#OpenTK_Core_Platform_VideoMode_ToString +- uid: OpenTK.Platform.VideoMode.ToString* + commentId: Overload:OpenTK.Platform.VideoMode.ToString + href: OpenTK.Platform.VideoMode.html#OpenTK_Platform_VideoMode_ToString name: ToString nameWithType: VideoMode.ToString - fullName: OpenTK.Core.Platform.VideoMode.ToString + fullName: OpenTK.Platform.VideoMode.ToString - uid: System.String commentId: T:System.String parent: System diff --git a/api/OpenTK.Platform.WindowBorderStyle.yml b/api/OpenTK.Platform.WindowBorderStyle.yml new file mode 100644 index 00000000..aa72d1a3 --- /dev/null +++ b/api/OpenTK.Platform.WindowBorderStyle.yml @@ -0,0 +1,159 @@ +### YamlMime:ManagedReference +items: +- uid: OpenTK.Platform.WindowBorderStyle + commentId: T:OpenTK.Platform.WindowBorderStyle + id: WindowBorderStyle + parent: OpenTK.Platform + children: + - OpenTK.Platform.WindowBorderStyle.Borderless + - OpenTK.Platform.WindowBorderStyle.FixedBorder + - OpenTK.Platform.WindowBorderStyle.ResizableBorder + - OpenTK.Platform.WindowBorderStyle.ToolBox + langs: + - csharp + - vb + name: WindowBorderStyle + nameWithType: WindowBorderStyle + fullName: OpenTK.Platform.WindowBorderStyle + type: Enum + source: + id: WindowBorderStyle + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\WindowBorderStyle.cs + startLine: 7 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: The window border style. + example: [] + syntax: + content: public enum WindowBorderStyle + content.vb: Public Enum WindowBorderStyle +- uid: OpenTK.Platform.WindowBorderStyle.Borderless + commentId: F:OpenTK.Platform.WindowBorderStyle.Borderless + id: Borderless + parent: OpenTK.Platform.WindowBorderStyle + langs: + - csharp + - vb + name: Borderless + nameWithType: WindowBorderStyle.Borderless + fullName: OpenTK.Platform.WindowBorderStyle.Borderless + type: Field + source: + id: Borderless + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\WindowBorderStyle.cs + startLine: 12 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Borderless window. + example: [] + syntax: + content: Borderless = 0 + return: + type: OpenTK.Platform.WindowBorderStyle +- uid: OpenTK.Platform.WindowBorderStyle.FixedBorder + commentId: F:OpenTK.Platform.WindowBorderStyle.FixedBorder + id: FixedBorder + parent: OpenTK.Platform.WindowBorderStyle + langs: + - csharp + - vb + name: FixedBorder + nameWithType: WindowBorderStyle.FixedBorder + fullName: OpenTK.Platform.WindowBorderStyle.FixedBorder + type: Field + source: + id: FixedBorder + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\WindowBorderStyle.cs + startLine: 17 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Non-resizeable window border. + example: [] + syntax: + content: FixedBorder = 1 + return: + type: OpenTK.Platform.WindowBorderStyle +- uid: OpenTK.Platform.WindowBorderStyle.ResizableBorder + commentId: F:OpenTK.Platform.WindowBorderStyle.ResizableBorder + id: ResizableBorder + parent: OpenTK.Platform.WindowBorderStyle + langs: + - csharp + - vb + name: ResizableBorder + nameWithType: WindowBorderStyle.ResizableBorder + fullName: OpenTK.Platform.WindowBorderStyle.ResizableBorder + type: Field + source: + id: ResizableBorder + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\WindowBorderStyle.cs + startLine: 22 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Resizeable window border. + example: [] + syntax: + content: ResizableBorder = 2 + return: + type: OpenTK.Platform.WindowBorderStyle +- uid: OpenTK.Platform.WindowBorderStyle.ToolBox + commentId: F:OpenTK.Platform.WindowBorderStyle.ToolBox + id: ToolBox + parent: OpenTK.Platform.WindowBorderStyle + langs: + - csharp + - vb + name: ToolBox + nameWithType: WindowBorderStyle.ToolBox + fullName: OpenTK.Platform.WindowBorderStyle.ToolBox + type: Field + source: + id: ToolBox + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\WindowBorderStyle.cs + startLine: 28 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: >- + A tool window. + + A tool window is a window does not appear in the taskbar and does not appear in the window swticher (ALT+TAB). + example: [] + syntax: + content: ToolBox = 3 + return: + type: OpenTK.Platform.WindowBorderStyle +references: +- uid: OpenTK.Platform + commentId: N:OpenTK.Platform + href: OpenTK.html + name: OpenTK.Platform + nameWithType: OpenTK.Platform + fullName: OpenTK.Platform + spec.csharp: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Platform + name: Platform + href: OpenTK.Platform.html + spec.vb: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Platform + name: Platform + href: OpenTK.Platform.html +- uid: OpenTK.Platform.WindowBorderStyle + commentId: T:OpenTK.Platform.WindowBorderStyle + parent: OpenTK.Platform + href: OpenTK.Platform.WindowBorderStyle.html + name: WindowBorderStyle + nameWithType: WindowBorderStyle + fullName: OpenTK.Platform.WindowBorderStyle diff --git a/api/OpenTK.Core.Platform.WindowEventArgs.yml b/api/OpenTK.Platform.WindowEventArgs.yml similarity index 70% rename from api/OpenTK.Core.Platform.WindowEventArgs.yml rename to api/OpenTK.Platform.WindowEventArgs.yml index 53cb0267..128f459d 100644 --- a/api/OpenTK.Core.Platform.WindowEventArgs.yml +++ b/api/OpenTK.Platform.WindowEventArgs.yml @@ -1,30 +1,26 @@ ### YamlMime:ManagedReference items: -- uid: OpenTK.Core.Platform.WindowEventArgs - commentId: T:OpenTK.Core.Platform.WindowEventArgs +- uid: OpenTK.Platform.WindowEventArgs + commentId: T:OpenTK.Platform.WindowEventArgs id: WindowEventArgs - parent: OpenTK.Core.Platform + parent: OpenTK.Platform children: - - OpenTK.Core.Platform.WindowEventArgs.#ctor(OpenTK.Core.Platform.WindowHandle) - - OpenTK.Core.Platform.WindowEventArgs.Window + - OpenTK.Platform.WindowEventArgs.#ctor(OpenTK.Platform.WindowHandle) + - OpenTK.Platform.WindowEventArgs.Window langs: - csharp - vb name: WindowEventArgs nameWithType: WindowEventArgs - fullName: OpenTK.Core.Platform.WindowEventArgs + fullName: OpenTK.Platform.WindowEventArgs type: Class source: - remote: - path: src/OpenTK.Core/Platform/WindowEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: WindowEventArgs - path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\WindowEventArgs.cs startLine: 11 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform + - OpenTK.Platform + namespace: OpenTK.Platform summary: Base class for OpenTK window event arguments. example: [] syntax: @@ -34,23 +30,24 @@ items: - System.Object - System.EventArgs derivedClasses: - - OpenTK.Core.Platform.CloseEventArgs - - OpenTK.Core.Platform.FileDropEventArgs - - OpenTK.Core.Platform.FocusEventArgs - - OpenTK.Core.Platform.KeyDownEventArgs - - OpenTK.Core.Platform.KeyUpEventArgs - - OpenTK.Core.Platform.MouseButtonDownEventArgs - - OpenTK.Core.Platform.MouseButtonUpEventArgs - - OpenTK.Core.Platform.MouseEnterEventArgs - - OpenTK.Core.Platform.MouseMoveEventArgs - - OpenTK.Core.Platform.ScrollEventArgs - - OpenTK.Core.Platform.TextEditingEventArgs - - OpenTK.Core.Platform.TextInputEventArgs - - OpenTK.Core.Platform.WindowFramebufferResizeEventArgs - - OpenTK.Core.Platform.WindowModeChangeEventArgs - - OpenTK.Core.Platform.WindowMoveEventArgs - - OpenTK.Core.Platform.WindowResizeEventArgs - - OpenTK.Core.Platform.WindowScaleChangeEventArgs + - OpenTK.Platform.CloseEventArgs + - OpenTK.Platform.FileDropEventArgs + - OpenTK.Platform.FocusEventArgs + - OpenTK.Platform.KeyDownEventArgs + - OpenTK.Platform.KeyUpEventArgs + - OpenTK.Platform.MouseButtonDownEventArgs + - OpenTK.Platform.MouseButtonUpEventArgs + - OpenTK.Platform.MouseEnterEventArgs + - OpenTK.Platform.MouseMoveEventArgs + - OpenTK.Platform.RawMouseMoveEventArgs + - OpenTK.Platform.ScrollEventArgs + - OpenTK.Platform.TextEditingEventArgs + - OpenTK.Platform.TextInputEventArgs + - OpenTK.Platform.WindowFramebufferResizeEventArgs + - OpenTK.Platform.WindowModeChangeEventArgs + - OpenTK.Platform.WindowMoveEventArgs + - OpenTK.Platform.WindowResizeEventArgs + - OpenTK.Platform.WindowScaleChangeEventArgs inheritedMembers: - System.EventArgs.Empty - System.Object.Equals(System.Object) @@ -60,103 +57,87 @@ items: - System.Object.MemberwiseClone - System.Object.ReferenceEquals(System.Object,System.Object) - System.Object.ToString -- uid: OpenTK.Core.Platform.WindowEventArgs.Window - commentId: P:OpenTK.Core.Platform.WindowEventArgs.Window +- uid: OpenTK.Platform.WindowEventArgs.Window + commentId: P:OpenTK.Platform.WindowEventArgs.Window id: Window - parent: OpenTK.Core.Platform.WindowEventArgs + parent: OpenTK.Platform.WindowEventArgs langs: - csharp - vb name: Window nameWithType: WindowEventArgs.Window - fullName: OpenTK.Core.Platform.WindowEventArgs.Window + fullName: OpenTK.Platform.WindowEventArgs.Window type: Property source: - remote: - path: src/OpenTK.Core/Platform/WindowEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Window - path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\WindowEventArgs.cs startLine: 16 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform + - OpenTK.Platform + namespace: OpenTK.Platform summary: Handle to the window that this event relates to. example: [] syntax: content: public WindowHandle Window { get; } parameters: [] return: - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle content.vb: Public Property Window As WindowHandle - overload: OpenTK.Core.Platform.WindowEventArgs.Window* -- uid: OpenTK.Core.Platform.WindowEventArgs.#ctor(OpenTK.Core.Platform.WindowHandle) - commentId: M:OpenTK.Core.Platform.WindowEventArgs.#ctor(OpenTK.Core.Platform.WindowHandle) - id: '#ctor(OpenTK.Core.Platform.WindowHandle)' - parent: OpenTK.Core.Platform.WindowEventArgs + overload: OpenTK.Platform.WindowEventArgs.Window* +- uid: OpenTK.Platform.WindowEventArgs.#ctor(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.WindowEventArgs.#ctor(OpenTK.Platform.WindowHandle) + id: '#ctor(OpenTK.Platform.WindowHandle)' + parent: OpenTK.Platform.WindowEventArgs langs: - csharp - vb name: WindowEventArgs(WindowHandle) nameWithType: WindowEventArgs.WindowEventArgs(WindowHandle) - fullName: OpenTK.Core.Platform.WindowEventArgs.WindowEventArgs(OpenTK.Core.Platform.WindowHandle) + fullName: OpenTK.Platform.WindowEventArgs.WindowEventArgs(OpenTK.Platform.WindowHandle) type: Constructor source: - remote: - path: src/OpenTK.Core/Platform/WindowEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\WindowEventArgs.cs startLine: 22 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Initializes a new instance of the class. + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Initializes a new instance of the class. example: [] syntax: content: public WindowEventArgs(WindowHandle window) parameters: - id: window - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: The window that this event relates to. content.vb: Public Sub New(window As WindowHandle) - overload: OpenTK.Core.Platform.WindowEventArgs.#ctor* + overload: OpenTK.Platform.WindowEventArgs.#ctor* nameWithType.vb: WindowEventArgs.New(WindowHandle) - fullName.vb: OpenTK.Core.Platform.WindowEventArgs.New(OpenTK.Core.Platform.WindowHandle) + fullName.vb: OpenTK.Platform.WindowEventArgs.New(OpenTK.Platform.WindowHandle) name.vb: New(WindowHandle) references: -- uid: OpenTK.Core.Platform - commentId: N:OpenTK.Core.Platform +- uid: OpenTK.Platform + commentId: N:OpenTK.Platform href: OpenTK.html - name: OpenTK.Core.Platform - nameWithType: OpenTK.Core.Platform - fullName: OpenTK.Core.Platform + name: OpenTK.Platform + nameWithType: OpenTK.Platform + fullName: OpenTK.Platform spec.csharp: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html spec.vb: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html - uid: System.Object commentId: T:System.Object parent: System @@ -410,32 +391,32 @@ references: name: System nameWithType: System fullName: System -- uid: OpenTK.Core.Platform.WindowEventArgs.Window* - commentId: Overload:OpenTK.Core.Platform.WindowEventArgs.Window - href: OpenTK.Core.Platform.WindowEventArgs.html#OpenTK_Core_Platform_WindowEventArgs_Window +- uid: OpenTK.Platform.WindowEventArgs.Window* + commentId: Overload:OpenTK.Platform.WindowEventArgs.Window + href: OpenTK.Platform.WindowEventArgs.html#OpenTK_Platform_WindowEventArgs_Window name: Window nameWithType: WindowEventArgs.Window - fullName: OpenTK.Core.Platform.WindowEventArgs.Window -- uid: OpenTK.Core.Platform.WindowHandle - commentId: T:OpenTK.Core.Platform.WindowHandle - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.WindowHandle.html + fullName: OpenTK.Platform.WindowEventArgs.Window +- uid: OpenTK.Platform.WindowHandle + commentId: T:OpenTK.Platform.WindowHandle + parent: OpenTK.Platform + href: OpenTK.Platform.WindowHandle.html name: WindowHandle nameWithType: WindowHandle - fullName: OpenTK.Core.Platform.WindowHandle -- uid: OpenTK.Core.Platform.WindowEventArgs - commentId: T:OpenTK.Core.Platform.WindowEventArgs - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.WindowEventArgs.html + fullName: OpenTK.Platform.WindowHandle +- uid: OpenTK.Platform.WindowEventArgs + commentId: T:OpenTK.Platform.WindowEventArgs + parent: OpenTK.Platform + href: OpenTK.Platform.WindowEventArgs.html name: WindowEventArgs nameWithType: WindowEventArgs - fullName: OpenTK.Core.Platform.WindowEventArgs -- uid: OpenTK.Core.Platform.WindowEventArgs.#ctor* - commentId: Overload:OpenTK.Core.Platform.WindowEventArgs.#ctor - href: OpenTK.Core.Platform.WindowEventArgs.html#OpenTK_Core_Platform_WindowEventArgs__ctor_OpenTK_Core_Platform_WindowHandle_ + fullName: OpenTK.Platform.WindowEventArgs +- uid: OpenTK.Platform.WindowEventArgs.#ctor* + commentId: Overload:OpenTK.Platform.WindowEventArgs.#ctor + href: OpenTK.Platform.WindowEventArgs.html#OpenTK_Platform_WindowEventArgs__ctor_OpenTK_Platform_WindowHandle_ name: WindowEventArgs nameWithType: WindowEventArgs.WindowEventArgs - fullName: OpenTK.Core.Platform.WindowEventArgs.WindowEventArgs + fullName: OpenTK.Platform.WindowEventArgs.WindowEventArgs nameWithType.vb: WindowEventArgs.New - fullName.vb: OpenTK.Core.Platform.WindowEventArgs.New + fullName.vb: OpenTK.Platform.WindowEventArgs.New name.vb: New diff --git a/api/OpenTK.Platform.WindowEventHandler.yml b/api/OpenTK.Platform.WindowEventHandler.yml new file mode 100644 index 00000000..642705b6 --- /dev/null +++ b/api/OpenTK.Platform.WindowEventHandler.yml @@ -0,0 +1,100 @@ +### YamlMime:ManagedReference +items: +- uid: OpenTK.Platform.WindowEventHandler + commentId: T:OpenTK.Platform.WindowEventHandler + id: WindowEventHandler + parent: OpenTK.Platform + children: [] + langs: + - csharp + - vb + name: WindowEventHandler + nameWithType: WindowEventHandler + fullName: OpenTK.Platform.WindowEventHandler + type: Delegate + source: + id: WindowEventHandler + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\WindowEventHandler.cs + startLine: 28 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Event handler delegate for processing window events. + example: + - >- +
void MyWindowEventHandler(WindowHandle handle, WindowEventType type, WindowEventArgs args)
+
+    {
+        switch(type)
+        {
+            case WindowEventType.Move:
+                // Implementation of which is left as an exercise to the reader:
+                MyMoveEventHandler(handle, (WindowMoveEventArgs)args);
+                break;
+            default:
+                OpenTK.Platform.Window.DefaultEventHandler(handle, type, args);
+                break;
+        }
+    }
+
+
+    // Usage:
+
+    OpenTK.Platform.Window.ProcessEvents(handle, MyWindowEventHandler);
+ syntax: + content: public delegate void WindowEventHandler(WindowHandle handle, PlatformEventType type, WindowEventArgs args) + parameters: + - id: handle + type: OpenTK.Platform.WindowHandle + description: The window handle receiving the event. + - id: type + type: OpenTK.Platform.PlatformEventType + description: The type of the event. + - id: args + type: OpenTK.Platform.WindowEventArgs + description: Arguments associated with the event. + content.vb: Public Delegate Sub WindowEventHandler(handle As WindowHandle, type As PlatformEventType, args As WindowEventArgs) +references: +- uid: OpenTK.Platform + commentId: N:OpenTK.Platform + href: OpenTK.html + name: OpenTK.Platform + nameWithType: OpenTK.Platform + fullName: OpenTK.Platform + spec.csharp: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Platform + name: Platform + href: OpenTK.Platform.html + spec.vb: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Platform + name: Platform + href: OpenTK.Platform.html +- uid: OpenTK.Platform.WindowHandle + commentId: T:OpenTK.Platform.WindowHandle + parent: OpenTK.Platform + href: OpenTK.Platform.WindowHandle.html + name: WindowHandle + nameWithType: WindowHandle + fullName: OpenTK.Platform.WindowHandle +- uid: OpenTK.Platform.PlatformEventType + commentId: T:OpenTK.Platform.PlatformEventType + parent: OpenTK.Platform + href: OpenTK.Platform.PlatformEventType.html + name: PlatformEventType + nameWithType: PlatformEventType + fullName: OpenTK.Platform.PlatformEventType +- uid: OpenTK.Platform.WindowEventArgs + commentId: T:OpenTK.Platform.WindowEventArgs + parent: OpenTK.Platform + href: OpenTK.Platform.WindowEventArgs.html + name: WindowEventArgs + nameWithType: WindowEventArgs + fullName: OpenTK.Platform.WindowEventArgs diff --git a/api/OpenTK.Core.Platform.WindowFramebufferResizeEventArgs.yml b/api/OpenTK.Platform.WindowFramebufferResizeEventArgs.yml similarity index 71% rename from api/OpenTK.Core.Platform.WindowFramebufferResizeEventArgs.yml rename to api/OpenTK.Platform.WindowFramebufferResizeEventArgs.yml index 3c92fac3..b15ef497 100644 --- a/api/OpenTK.Core.Platform.WindowFramebufferResizeEventArgs.yml +++ b/api/OpenTK.Platform.WindowFramebufferResizeEventArgs.yml @@ -1,30 +1,26 @@ ### YamlMime:ManagedReference items: -- uid: OpenTK.Core.Platform.WindowFramebufferResizeEventArgs - commentId: T:OpenTK.Core.Platform.WindowFramebufferResizeEventArgs +- uid: OpenTK.Platform.WindowFramebufferResizeEventArgs + commentId: T:OpenTK.Platform.WindowFramebufferResizeEventArgs id: WindowFramebufferResizeEventArgs - parent: OpenTK.Core.Platform + parent: OpenTK.Platform children: - - OpenTK.Core.Platform.WindowFramebufferResizeEventArgs.#ctor(OpenTK.Core.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) - - OpenTK.Core.Platform.WindowFramebufferResizeEventArgs.NewFramebufferSize + - OpenTK.Platform.WindowFramebufferResizeEventArgs.#ctor(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) + - OpenTK.Platform.WindowFramebufferResizeEventArgs.NewFramebufferSize langs: - csharp - vb name: WindowFramebufferResizeEventArgs nameWithType: WindowFramebufferResizeEventArgs - fullName: OpenTK.Core.Platform.WindowFramebufferResizeEventArgs + fullName: OpenTK.Platform.WindowFramebufferResizeEventArgs type: Class source: - remote: - path: src/OpenTK.Core/Platform/WindowEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: WindowFramebufferResizeEventArgs - path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\WindowEventArgs.cs startLine: 116 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform + - OpenTK.Platform + namespace: OpenTK.Platform summary: >- This event is triggered when a window has its framebuffer change size. @@ -36,9 +32,9 @@ items: inheritance: - System.Object - System.EventArgs - - OpenTK.Core.Platform.WindowEventArgs + - OpenTK.Platform.WindowEventArgs inheritedMembers: - - OpenTK.Core.Platform.WindowEventArgs.Window + - OpenTK.Platform.WindowEventArgs.Window - System.EventArgs.Empty - System.Object.Equals(System.Object) - System.Object.Equals(System.Object,System.Object) @@ -47,28 +43,24 @@ items: - System.Object.MemberwiseClone - System.Object.ReferenceEquals(System.Object,System.Object) - System.Object.ToString -- uid: OpenTK.Core.Platform.WindowFramebufferResizeEventArgs.NewFramebufferSize - commentId: P:OpenTK.Core.Platform.WindowFramebufferResizeEventArgs.NewFramebufferSize +- uid: OpenTK.Platform.WindowFramebufferResizeEventArgs.NewFramebufferSize + commentId: P:OpenTK.Platform.WindowFramebufferResizeEventArgs.NewFramebufferSize id: NewFramebufferSize - parent: OpenTK.Core.Platform.WindowFramebufferResizeEventArgs + parent: OpenTK.Platform.WindowFramebufferResizeEventArgs langs: - csharp - vb name: NewFramebufferSize nameWithType: WindowFramebufferResizeEventArgs.NewFramebufferSize - fullName: OpenTK.Core.Platform.WindowFramebufferResizeEventArgs.NewFramebufferSize + fullName: OpenTK.Platform.WindowFramebufferResizeEventArgs.NewFramebufferSize type: Property source: - remote: - path: src/OpenTK.Core/Platform/WindowEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: NewFramebufferSize - path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\WindowEventArgs.cs startLine: 121 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform + - OpenTK.Platform + namespace: OpenTK.Platform summary: The new framebuffer size of the window. example: [] syntax: @@ -77,76 +69,64 @@ items: return: type: OpenTK.Mathematics.Vector2i content.vb: Public Property NewFramebufferSize As Vector2i - overload: OpenTK.Core.Platform.WindowFramebufferResizeEventArgs.NewFramebufferSize* -- uid: OpenTK.Core.Platform.WindowFramebufferResizeEventArgs.#ctor(OpenTK.Core.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) - commentId: M:OpenTK.Core.Platform.WindowFramebufferResizeEventArgs.#ctor(OpenTK.Core.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) - id: '#ctor(OpenTK.Core.Platform.WindowHandle,OpenTK.Mathematics.Vector2i)' - parent: OpenTK.Core.Platform.WindowFramebufferResizeEventArgs + overload: OpenTK.Platform.WindowFramebufferResizeEventArgs.NewFramebufferSize* +- uid: OpenTK.Platform.WindowFramebufferResizeEventArgs.#ctor(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) + commentId: M:OpenTK.Platform.WindowFramebufferResizeEventArgs.#ctor(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) + id: '#ctor(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i)' + parent: OpenTK.Platform.WindowFramebufferResizeEventArgs langs: - csharp - vb name: WindowFramebufferResizeEventArgs(WindowHandle, Vector2i) nameWithType: WindowFramebufferResizeEventArgs.WindowFramebufferResizeEventArgs(WindowHandle, Vector2i) - fullName: OpenTK.Core.Platform.WindowFramebufferResizeEventArgs.WindowFramebufferResizeEventArgs(OpenTK.Core.Platform.WindowHandle, OpenTK.Mathematics.Vector2i) + fullName: OpenTK.Platform.WindowFramebufferResizeEventArgs.WindowFramebufferResizeEventArgs(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2i) type: Constructor source: - remote: - path: src/OpenTK.Core/Platform/WindowEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\WindowEventArgs.cs startLine: 128 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Initializes a new instance of the class. + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Initializes a new instance of the class. example: [] syntax: content: public WindowFramebufferResizeEventArgs(WindowHandle window, Vector2i newFramebufferSize) parameters: - id: window - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: The window whoes framebuffer changed size. - id: newFramebufferSize type: OpenTK.Mathematics.Vector2i description: The new framebuffer size. content.vb: Public Sub New(window As WindowHandle, newFramebufferSize As Vector2i) - overload: OpenTK.Core.Platform.WindowFramebufferResizeEventArgs.#ctor* + overload: OpenTK.Platform.WindowFramebufferResizeEventArgs.#ctor* nameWithType.vb: WindowFramebufferResizeEventArgs.New(WindowHandle, Vector2i) - fullName.vb: OpenTK.Core.Platform.WindowFramebufferResizeEventArgs.New(OpenTK.Core.Platform.WindowHandle, OpenTK.Mathematics.Vector2i) + fullName.vb: OpenTK.Platform.WindowFramebufferResizeEventArgs.New(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2i) name.vb: New(WindowHandle, Vector2i) references: -- uid: OpenTK.Core.Platform - commentId: N:OpenTK.Core.Platform +- uid: OpenTK.Platform + commentId: N:OpenTK.Platform href: OpenTK.html - name: OpenTK.Core.Platform - nameWithType: OpenTK.Core.Platform - fullName: OpenTK.Core.Platform + name: OpenTK.Platform + nameWithType: OpenTK.Platform + fullName: OpenTK.Platform spec.csharp: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html spec.vb: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html - uid: System.Object commentId: T:System.Object parent: System @@ -166,20 +146,20 @@ references: name: EventArgs nameWithType: EventArgs fullName: System.EventArgs -- uid: OpenTK.Core.Platform.WindowEventArgs - commentId: T:OpenTK.Core.Platform.WindowEventArgs - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.WindowEventArgs.html +- uid: OpenTK.Platform.WindowEventArgs + commentId: T:OpenTK.Platform.WindowEventArgs + parent: OpenTK.Platform + href: OpenTK.Platform.WindowEventArgs.html name: WindowEventArgs nameWithType: WindowEventArgs - fullName: OpenTK.Core.Platform.WindowEventArgs -- uid: OpenTK.Core.Platform.WindowEventArgs.Window - commentId: P:OpenTK.Core.Platform.WindowEventArgs.Window - parent: OpenTK.Core.Platform.WindowEventArgs - href: OpenTK.Core.Platform.WindowEventArgs.html#OpenTK_Core_Platform_WindowEventArgs_Window + fullName: OpenTK.Platform.WindowEventArgs +- uid: OpenTK.Platform.WindowEventArgs.Window + commentId: P:OpenTK.Platform.WindowEventArgs.Window + parent: OpenTK.Platform.WindowEventArgs + href: OpenTK.Platform.WindowEventArgs.html#OpenTK_Platform_WindowEventArgs_Window name: Window nameWithType: WindowEventArgs.Window - fullName: OpenTK.Core.Platform.WindowEventArgs.Window + fullName: OpenTK.Platform.WindowEventArgs.Window - uid: System.EventArgs.Empty commentId: F:System.EventArgs.Empty parent: System.EventArgs @@ -414,12 +394,12 @@ references: name: System nameWithType: System fullName: System -- uid: OpenTK.Core.Platform.WindowFramebufferResizeEventArgs.NewFramebufferSize* - commentId: Overload:OpenTK.Core.Platform.WindowFramebufferResizeEventArgs.NewFramebufferSize - href: OpenTK.Core.Platform.WindowFramebufferResizeEventArgs.html#OpenTK_Core_Platform_WindowFramebufferResizeEventArgs_NewFramebufferSize +- uid: OpenTK.Platform.WindowFramebufferResizeEventArgs.NewFramebufferSize* + commentId: Overload:OpenTK.Platform.WindowFramebufferResizeEventArgs.NewFramebufferSize + href: OpenTK.Platform.WindowFramebufferResizeEventArgs.html#OpenTK_Platform_WindowFramebufferResizeEventArgs_NewFramebufferSize name: NewFramebufferSize nameWithType: WindowFramebufferResizeEventArgs.NewFramebufferSize - fullName: OpenTK.Core.Platform.WindowFramebufferResizeEventArgs.NewFramebufferSize + fullName: OpenTK.Platform.WindowFramebufferResizeEventArgs.NewFramebufferSize - uid: OpenTK.Mathematics.Vector2i commentId: T:OpenTK.Mathematics.Vector2i parent: OpenTK.Mathematics @@ -449,25 +429,25 @@ references: - uid: OpenTK.Mathematics name: Mathematics href: OpenTK.Mathematics.html -- uid: OpenTK.Core.Platform.WindowFramebufferResizeEventArgs - commentId: T:OpenTK.Core.Platform.WindowFramebufferResizeEventArgs - href: OpenTK.Core.Platform.WindowFramebufferResizeEventArgs.html +- uid: OpenTK.Platform.WindowFramebufferResizeEventArgs + commentId: T:OpenTK.Platform.WindowFramebufferResizeEventArgs + href: OpenTK.Platform.WindowFramebufferResizeEventArgs.html name: WindowFramebufferResizeEventArgs nameWithType: WindowFramebufferResizeEventArgs - fullName: OpenTK.Core.Platform.WindowFramebufferResizeEventArgs -- uid: OpenTK.Core.Platform.WindowFramebufferResizeEventArgs.#ctor* - commentId: Overload:OpenTK.Core.Platform.WindowFramebufferResizeEventArgs.#ctor - href: OpenTK.Core.Platform.WindowFramebufferResizeEventArgs.html#OpenTK_Core_Platform_WindowFramebufferResizeEventArgs__ctor_OpenTK_Core_Platform_WindowHandle_OpenTK_Mathematics_Vector2i_ + fullName: OpenTK.Platform.WindowFramebufferResizeEventArgs +- uid: OpenTK.Platform.WindowFramebufferResizeEventArgs.#ctor* + commentId: Overload:OpenTK.Platform.WindowFramebufferResizeEventArgs.#ctor + href: OpenTK.Platform.WindowFramebufferResizeEventArgs.html#OpenTK_Platform_WindowFramebufferResizeEventArgs__ctor_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2i_ name: WindowFramebufferResizeEventArgs nameWithType: WindowFramebufferResizeEventArgs.WindowFramebufferResizeEventArgs - fullName: OpenTK.Core.Platform.WindowFramebufferResizeEventArgs.WindowFramebufferResizeEventArgs + fullName: OpenTK.Platform.WindowFramebufferResizeEventArgs.WindowFramebufferResizeEventArgs nameWithType.vb: WindowFramebufferResizeEventArgs.New - fullName.vb: OpenTK.Core.Platform.WindowFramebufferResizeEventArgs.New + fullName.vb: OpenTK.Platform.WindowFramebufferResizeEventArgs.New name.vb: New -- uid: OpenTK.Core.Platform.WindowHandle - commentId: T:OpenTK.Core.Platform.WindowHandle - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.WindowHandle.html +- uid: OpenTK.Platform.WindowHandle + commentId: T:OpenTK.Platform.WindowHandle + parent: OpenTK.Platform + href: OpenTK.Platform.WindowHandle.html name: WindowHandle nameWithType: WindowHandle - fullName: OpenTK.Core.Platform.WindowHandle + fullName: OpenTK.Platform.WindowHandle diff --git a/api/OpenTK.Core.Platform.WindowHandle.yml b/api/OpenTK.Platform.WindowHandle.yml similarity index 64% rename from api/OpenTK.Core.Platform.WindowHandle.yml rename to api/OpenTK.Platform.WindowHandle.yml index ad0f5236..a5490767 100644 --- a/api/OpenTK.Core.Platform.WindowHandle.yml +++ b/api/OpenTK.Platform.WindowHandle.yml @@ -1,30 +1,26 @@ ### YamlMime:ManagedReference items: -- uid: OpenTK.Core.Platform.WindowHandle - commentId: T:OpenTK.Core.Platform.WindowHandle +- uid: OpenTK.Platform.WindowHandle + commentId: T:OpenTK.Platform.WindowHandle id: WindowHandle - parent: OpenTK.Core.Platform + parent: OpenTK.Platform children: - - OpenTK.Core.Platform.WindowHandle.#ctor(OpenTK.Core.Platform.GraphicsApiHints) - - OpenTK.Core.Platform.WindowHandle.GraphicsApiHints + - OpenTK.Platform.WindowHandle.#ctor(OpenTK.Platform.GraphicsApiHints) + - OpenTK.Platform.WindowHandle.GraphicsApiHints langs: - csharp - vb name: WindowHandle nameWithType: WindowHandle - fullName: OpenTK.Core.Platform.WindowHandle + fullName: OpenTK.Platform.WindowHandle type: Class source: - remote: - path: src/OpenTK.Core/Platform/Handles/WindowHandle.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: WindowHandle - path: opentk/src/OpenTK.Core/Platform/Handles/WindowHandle.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Handles\WindowHandle.cs startLine: 7 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform + - OpenTK.Platform + namespace: OpenTK.Platform summary: Handle to a window object. example: [] syntax: @@ -32,10 +28,10 @@ items: content.vb: Public MustInherit Class WindowHandle Inherits PalHandle inheritance: - System.Object - - OpenTK.Core.Platform.PalHandle + - OpenTK.Platform.PalHandle inheritedMembers: - - OpenTK.Core.Platform.PalHandle.UserData - - OpenTK.Core.Platform.PalHandle.As``1(OpenTK.Core.Platform.IPalComponent) + - OpenTK.Platform.PalHandle.UserData + - OpenTK.Platform.PalHandle.As``1(OpenTK.Platform.IPalComponent) - System.Object.Equals(System.Object) - System.Object.Equals(System.Object,System.Object) - System.Object.GetHashCode @@ -43,103 +39,87 @@ items: - System.Object.MemberwiseClone - System.Object.ReferenceEquals(System.Object,System.Object) - System.Object.ToString -- uid: OpenTK.Core.Platform.WindowHandle.GraphicsApiHints - commentId: P:OpenTK.Core.Platform.WindowHandle.GraphicsApiHints +- uid: OpenTK.Platform.WindowHandle.GraphicsApiHints + commentId: P:OpenTK.Platform.WindowHandle.GraphicsApiHints id: GraphicsApiHints - parent: OpenTK.Core.Platform.WindowHandle + parent: OpenTK.Platform.WindowHandle langs: - csharp - vb name: GraphicsApiHints nameWithType: WindowHandle.GraphicsApiHints - fullName: OpenTK.Core.Platform.WindowHandle.GraphicsApiHints + fullName: OpenTK.Platform.WindowHandle.GraphicsApiHints type: Property source: - remote: - path: src/OpenTK.Core/Platform/Handles/WindowHandle.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GraphicsApiHints - path: opentk/src/OpenTK.Core/Platform/Handles/WindowHandle.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Handles\WindowHandle.cs startLine: 12 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: The that where used to create the window. + - OpenTK.Platform + namespace: OpenTK.Platform + summary: The that where used to create the window. example: [] syntax: content: public GraphicsApiHints GraphicsApiHints { get; protected set; } parameters: [] return: - type: OpenTK.Core.Platform.GraphicsApiHints + type: OpenTK.Platform.GraphicsApiHints content.vb: Public Property GraphicsApiHints As GraphicsApiHints - overload: OpenTK.Core.Platform.WindowHandle.GraphicsApiHints* -- uid: OpenTK.Core.Platform.WindowHandle.#ctor(OpenTK.Core.Platform.GraphicsApiHints) - commentId: M:OpenTK.Core.Platform.WindowHandle.#ctor(OpenTK.Core.Platform.GraphicsApiHints) - id: '#ctor(OpenTK.Core.Platform.GraphicsApiHints)' - parent: OpenTK.Core.Platform.WindowHandle + overload: OpenTK.Platform.WindowHandle.GraphicsApiHints* +- uid: OpenTK.Platform.WindowHandle.#ctor(OpenTK.Platform.GraphicsApiHints) + commentId: M:OpenTK.Platform.WindowHandle.#ctor(OpenTK.Platform.GraphicsApiHints) + id: '#ctor(OpenTK.Platform.GraphicsApiHints)' + parent: OpenTK.Platform.WindowHandle langs: - csharp - vb name: WindowHandle(GraphicsApiHints) nameWithType: WindowHandle.WindowHandle(GraphicsApiHints) - fullName: OpenTK.Core.Platform.WindowHandle.WindowHandle(OpenTK.Core.Platform.GraphicsApiHints) + fullName: OpenTK.Platform.WindowHandle.WindowHandle(OpenTK.Platform.GraphicsApiHints) type: Constructor source: - remote: - path: src/OpenTK.Core/Platform/Handles/WindowHandle.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Core/Platform/Handles/WindowHandle.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Handles\WindowHandle.cs startLine: 18 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Initializes a new instance of the class. + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Initializes a new instance of the class. example: [] syntax: content: public WindowHandle(GraphicsApiHints graphicsApiHints) parameters: - id: graphicsApiHints - type: OpenTK.Core.Platform.GraphicsApiHints - description: The that where used to create the window. + type: OpenTK.Platform.GraphicsApiHints + description: The that where used to create the window. content.vb: Public Sub New(graphicsApiHints As GraphicsApiHints) - overload: OpenTK.Core.Platform.WindowHandle.#ctor* + overload: OpenTK.Platform.WindowHandle.#ctor* nameWithType.vb: WindowHandle.New(GraphicsApiHints) - fullName.vb: OpenTK.Core.Platform.WindowHandle.New(OpenTK.Core.Platform.GraphicsApiHints) + fullName.vb: OpenTK.Platform.WindowHandle.New(OpenTK.Platform.GraphicsApiHints) name.vb: New(GraphicsApiHints) references: -- uid: OpenTK.Core.Platform - commentId: N:OpenTK.Core.Platform +- uid: OpenTK.Platform + commentId: N:OpenTK.Platform href: OpenTK.html - name: OpenTK.Core.Platform - nameWithType: OpenTK.Core.Platform - fullName: OpenTK.Core.Platform + name: OpenTK.Platform + nameWithType: OpenTK.Platform + fullName: OpenTK.Platform spec.csharp: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html spec.vb: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html - uid: System.Object commentId: T:System.Object parent: System @@ -151,55 +131,55 @@ references: nameWithType.vb: Object fullName.vb: Object name.vb: Object -- uid: OpenTK.Core.Platform.PalHandle - commentId: T:OpenTK.Core.Platform.PalHandle - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.PalHandle.html +- uid: OpenTK.Platform.PalHandle + commentId: T:OpenTK.Platform.PalHandle + parent: OpenTK.Platform + href: OpenTK.Platform.PalHandle.html name: PalHandle nameWithType: PalHandle - fullName: OpenTK.Core.Platform.PalHandle -- uid: OpenTK.Core.Platform.PalHandle.UserData - commentId: P:OpenTK.Core.Platform.PalHandle.UserData - parent: OpenTK.Core.Platform.PalHandle - href: OpenTK.Core.Platform.PalHandle.html#OpenTK_Core_Platform_PalHandle_UserData + fullName: OpenTK.Platform.PalHandle +- uid: OpenTK.Platform.PalHandle.UserData + commentId: P:OpenTK.Platform.PalHandle.UserData + parent: OpenTK.Platform.PalHandle + href: OpenTK.Platform.PalHandle.html#OpenTK_Platform_PalHandle_UserData name: UserData nameWithType: PalHandle.UserData - fullName: OpenTK.Core.Platform.PalHandle.UserData -- uid: OpenTK.Core.Platform.PalHandle.As``1(OpenTK.Core.Platform.IPalComponent) - commentId: M:OpenTK.Core.Platform.PalHandle.As``1(OpenTK.Core.Platform.IPalComponent) - parent: OpenTK.Core.Platform.PalHandle - href: OpenTK.Core.Platform.PalHandle.html#OpenTK_Core_Platform_PalHandle_As__1_OpenTK_Core_Platform_IPalComponent_ + fullName: OpenTK.Platform.PalHandle.UserData +- uid: OpenTK.Platform.PalHandle.As``1(OpenTK.Platform.IPalComponent) + commentId: M:OpenTK.Platform.PalHandle.As``1(OpenTK.Platform.IPalComponent) + parent: OpenTK.Platform.PalHandle + href: OpenTK.Platform.PalHandle.html#OpenTK_Platform_PalHandle_As__1_OpenTK_Platform_IPalComponent_ name: As(IPalComponent) nameWithType: PalHandle.As(IPalComponent) - fullName: OpenTK.Core.Platform.PalHandle.As(OpenTK.Core.Platform.IPalComponent) + fullName: OpenTK.Platform.PalHandle.As(OpenTK.Platform.IPalComponent) nameWithType.vb: PalHandle.As(Of T)(IPalComponent) - fullName.vb: OpenTK.Core.Platform.PalHandle.As(Of T)(OpenTK.Core.Platform.IPalComponent) + fullName.vb: OpenTK.Platform.PalHandle.As(Of T)(OpenTK.Platform.IPalComponent) name.vb: As(Of T)(IPalComponent) spec.csharp: - - uid: OpenTK.Core.Platform.PalHandle.As``1(OpenTK.Core.Platform.IPalComponent) + - uid: OpenTK.Platform.PalHandle.As``1(OpenTK.Platform.IPalComponent) name: As - href: OpenTK.Core.Platform.PalHandle.html#OpenTK_Core_Platform_PalHandle_As__1_OpenTK_Core_Platform_IPalComponent_ + href: OpenTK.Platform.PalHandle.html#OpenTK_Platform_PalHandle_As__1_OpenTK_Platform_IPalComponent_ - name: < - name: T - name: '>' - name: ( - - uid: OpenTK.Core.Platform.IPalComponent + - uid: OpenTK.Platform.IPalComponent name: IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html + href: OpenTK.Platform.IPalComponent.html - name: ) spec.vb: - - uid: OpenTK.Core.Platform.PalHandle.As``1(OpenTK.Core.Platform.IPalComponent) + - uid: OpenTK.Platform.PalHandle.As``1(OpenTK.Platform.IPalComponent) name: As - href: OpenTK.Core.Platform.PalHandle.html#OpenTK_Core_Platform_PalHandle_As__1_OpenTK_Core_Platform_IPalComponent_ + href: OpenTK.Platform.PalHandle.html#OpenTK_Platform_PalHandle_As__1_OpenTK_Platform_IPalComponent_ - name: ( - name: Of - name: " " - name: T - name: ) - name: ( - - uid: OpenTK.Core.Platform.IPalComponent + - uid: OpenTK.Platform.IPalComponent name: IPalComponent - href: OpenTK.Core.Platform.IPalComponent.html + href: OpenTK.Platform.IPalComponent.html - name: ) - uid: System.Object.Equals(System.Object) commentId: M:System.Object.Equals(System.Object) @@ -427,32 +407,32 @@ references: name: System nameWithType: System fullName: System -- uid: OpenTK.Core.Platform.GraphicsApiHints - commentId: T:OpenTK.Core.Platform.GraphicsApiHints - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.GraphicsApiHints.html +- uid: OpenTK.Platform.GraphicsApiHints + commentId: T:OpenTK.Platform.GraphicsApiHints + parent: OpenTK.Platform + href: OpenTK.Platform.GraphicsApiHints.html name: GraphicsApiHints nameWithType: GraphicsApiHints - fullName: OpenTK.Core.Platform.GraphicsApiHints -- uid: OpenTK.Core.Platform.WindowHandle.GraphicsApiHints* - commentId: Overload:OpenTK.Core.Platform.WindowHandle.GraphicsApiHints - href: OpenTK.Core.Platform.WindowHandle.html#OpenTK_Core_Platform_WindowHandle_GraphicsApiHints + fullName: OpenTK.Platform.GraphicsApiHints +- uid: OpenTK.Platform.WindowHandle.GraphicsApiHints* + commentId: Overload:OpenTK.Platform.WindowHandle.GraphicsApiHints + href: OpenTK.Platform.WindowHandle.html#OpenTK_Platform_WindowHandle_GraphicsApiHints name: GraphicsApiHints nameWithType: WindowHandle.GraphicsApiHints - fullName: OpenTK.Core.Platform.WindowHandle.GraphicsApiHints -- uid: OpenTK.Core.Platform.WindowHandle - commentId: T:OpenTK.Core.Platform.WindowHandle - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.WindowHandle.html + fullName: OpenTK.Platform.WindowHandle.GraphicsApiHints +- uid: OpenTK.Platform.WindowHandle + commentId: T:OpenTK.Platform.WindowHandle + parent: OpenTK.Platform + href: OpenTK.Platform.WindowHandle.html name: WindowHandle nameWithType: WindowHandle - fullName: OpenTK.Core.Platform.WindowHandle -- uid: OpenTK.Core.Platform.WindowHandle.#ctor* - commentId: Overload:OpenTK.Core.Platform.WindowHandle.#ctor - href: OpenTK.Core.Platform.WindowHandle.html#OpenTK_Core_Platform_WindowHandle__ctor_OpenTK_Core_Platform_GraphicsApiHints_ + fullName: OpenTK.Platform.WindowHandle +- uid: OpenTK.Platform.WindowHandle.#ctor* + commentId: Overload:OpenTK.Platform.WindowHandle.#ctor + href: OpenTK.Platform.WindowHandle.html#OpenTK_Platform_WindowHandle__ctor_OpenTK_Platform_GraphicsApiHints_ name: WindowHandle nameWithType: WindowHandle.WindowHandle - fullName: OpenTK.Core.Platform.WindowHandle.WindowHandle + fullName: OpenTK.Platform.WindowHandle.WindowHandle nameWithType.vb: WindowHandle.New - fullName.vb: OpenTK.Core.Platform.WindowHandle.New + fullName.vb: OpenTK.Platform.WindowHandle.New name.vb: New diff --git a/api/OpenTK.Platform.WindowMode.yml b/api/OpenTK.Platform.WindowMode.yml new file mode 100644 index 00000000..65b03319 --- /dev/null +++ b/api/OpenTK.Platform.WindowMode.yml @@ -0,0 +1,206 @@ +### YamlMime:ManagedReference +items: +- uid: OpenTK.Platform.WindowMode + commentId: T:OpenTK.Platform.WindowMode + id: WindowMode + parent: OpenTK.Platform + children: + - OpenTK.Platform.WindowMode.ExclusiveFullscreen + - OpenTK.Platform.WindowMode.Hidden + - OpenTK.Platform.WindowMode.Maximized + - OpenTK.Platform.WindowMode.Minimized + - OpenTK.Platform.WindowMode.Normal + - OpenTK.Platform.WindowMode.WindowedFullscreen + langs: + - csharp + - vb + name: WindowMode + nameWithType: WindowMode + fullName: OpenTK.Platform.WindowMode + type: Enum + source: + id: WindowMode + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\WindowMode.cs + startLine: 5 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: An enumeration of OpenTK window modes. + example: [] + syntax: + content: public enum WindowMode + content.vb: Public Enum WindowMode +- uid: OpenTK.Platform.WindowMode.Hidden + commentId: F:OpenTK.Platform.WindowMode.Hidden + id: Hidden + parent: OpenTK.Platform.WindowMode + langs: + - csharp + - vb + name: Hidden + nameWithType: WindowMode.Hidden + fullName: OpenTK.Platform.WindowMode.Hidden + type: Field + source: + id: Hidden + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\WindowMode.cs + startLine: 10 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Hidden mode hides the window completely from sight. + example: [] + syntax: + content: Hidden = 0 + return: + type: OpenTK.Platform.WindowMode +- uid: OpenTK.Platform.WindowMode.Minimized + commentId: F:OpenTK.Platform.WindowMode.Minimized + id: Minimized + parent: OpenTK.Platform.WindowMode + langs: + - csharp + - vb + name: Minimized + nameWithType: WindowMode.Minimized + fullName: OpenTK.Platform.WindowMode.Minimized + type: Field + source: + id: Minimized + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\WindowMode.cs + startLine: 15 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: The window is displayed on the task bar but its contents are hidden. + example: [] + syntax: + content: Minimized = 1 + return: + type: OpenTK.Platform.WindowMode +- uid: OpenTK.Platform.WindowMode.Normal + commentId: F:OpenTK.Platform.WindowMode.Normal + id: Normal + parent: OpenTK.Platform.WindowMode + langs: + - csharp + - vb + name: Normal + nameWithType: WindowMode.Normal + fullName: OpenTK.Platform.WindowMode.Normal + type: Field + source: + id: Normal + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\WindowMode.cs + startLine: 20 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: The window is visible. + example: [] + syntax: + content: Normal = 2 + return: + type: OpenTK.Platform.WindowMode +- uid: OpenTK.Platform.WindowMode.Maximized + commentId: F:OpenTK.Platform.WindowMode.Maximized + id: Maximized + parent: OpenTK.Platform.WindowMode + langs: + - csharp + - vb + name: Maximized + nameWithType: WindowMode.Maximized + fullName: OpenTK.Platform.WindowMode.Maximized + type: Field + source: + id: Maximized + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\WindowMode.cs + startLine: 25 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: The window covers the entire desktop area, except system trays. + example: [] + syntax: + content: Maximized = 3 + return: + type: OpenTK.Platform.WindowMode +- uid: OpenTK.Platform.WindowMode.WindowedFullscreen + commentId: F:OpenTK.Platform.WindowMode.WindowedFullscreen + id: WindowedFullscreen + parent: OpenTK.Platform.WindowMode + langs: + - csharp + - vb + name: WindowedFullscreen + nameWithType: WindowMode.WindowedFullscreen + fullName: OpenTK.Platform.WindowMode.WindowedFullscreen + type: Field + source: + id: WindowedFullscreen + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\WindowMode.cs + startLine: 30 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Window covers the entire screen, as a window. + example: [] + syntax: + content: WindowedFullscreen = 4 + return: + type: OpenTK.Platform.WindowMode +- uid: OpenTK.Platform.WindowMode.ExclusiveFullscreen + commentId: F:OpenTK.Platform.WindowMode.ExclusiveFullscreen + id: ExclusiveFullscreen + parent: OpenTK.Platform.WindowMode + langs: + - csharp + - vb + name: ExclusiveFullscreen + nameWithType: WindowMode.ExclusiveFullscreen + fullName: OpenTK.Platform.WindowMode.ExclusiveFullscreen + type: Field + source: + id: ExclusiveFullscreen + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\WindowMode.cs + startLine: 35 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: The window takes exclusive ownership of the display. + example: [] + syntax: + content: ExclusiveFullscreen = 5 + return: + type: OpenTK.Platform.WindowMode +references: +- uid: OpenTK.Platform + commentId: N:OpenTK.Platform + href: OpenTK.html + name: OpenTK.Platform + nameWithType: OpenTK.Platform + fullName: OpenTK.Platform + spec.csharp: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Platform + name: Platform + href: OpenTK.Platform.html + spec.vb: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Platform + name: Platform + href: OpenTK.Platform.html +- uid: OpenTK.Platform.WindowMode + commentId: T:OpenTK.Platform.WindowMode + parent: OpenTK.Platform + href: OpenTK.Platform.WindowMode.html + name: WindowMode + nameWithType: WindowMode + fullName: OpenTK.Platform.WindowMode diff --git a/api/OpenTK.Core.Platform.WindowModeChangeEventArgs.yml b/api/OpenTK.Platform.WindowModeChangeEventArgs.yml similarity index 68% rename from api/OpenTK.Core.Platform.WindowModeChangeEventArgs.yml rename to api/OpenTK.Platform.WindowModeChangeEventArgs.yml index 1e2837ff..37b8aa81 100644 --- a/api/OpenTK.Core.Platform.WindowModeChangeEventArgs.yml +++ b/api/OpenTK.Platform.WindowModeChangeEventArgs.yml @@ -1,30 +1,26 @@ ### YamlMime:ManagedReference items: -- uid: OpenTK.Core.Platform.WindowModeChangeEventArgs - commentId: T:OpenTK.Core.Platform.WindowModeChangeEventArgs +- uid: OpenTK.Platform.WindowModeChangeEventArgs + commentId: T:OpenTK.Platform.WindowModeChangeEventArgs id: WindowModeChangeEventArgs - parent: OpenTK.Core.Platform + parent: OpenTK.Platform children: - - OpenTK.Core.Platform.WindowModeChangeEventArgs.#ctor(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.WindowMode) - - OpenTK.Core.Platform.WindowModeChangeEventArgs.NewMode + - OpenTK.Platform.WindowModeChangeEventArgs.#ctor(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowMode) + - OpenTK.Platform.WindowModeChangeEventArgs.NewMode langs: - csharp - vb name: WindowModeChangeEventArgs nameWithType: WindowModeChangeEventArgs - fullName: OpenTK.Core.Platform.WindowModeChangeEventArgs + fullName: OpenTK.Platform.WindowModeChangeEventArgs type: Class source: - remote: - path: src/OpenTK.Core/Platform/WindowEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: WindowModeChangeEventArgs - path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\WindowEventArgs.cs startLine: 137 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform + - OpenTK.Platform + namespace: OpenTK.Platform summary: This event is triggered when the window mode of a window changes. example: [] syntax: @@ -33,9 +29,9 @@ items: inheritance: - System.Object - System.EventArgs - - OpenTK.Core.Platform.WindowEventArgs + - OpenTK.Platform.WindowEventArgs inheritedMembers: - - OpenTK.Core.Platform.WindowEventArgs.Window + - OpenTK.Platform.WindowEventArgs.Window - System.EventArgs.Empty - System.Object.Equals(System.Object) - System.Object.Equals(System.Object,System.Object) @@ -44,106 +40,90 @@ items: - System.Object.MemberwiseClone - System.Object.ReferenceEquals(System.Object,System.Object) - System.Object.ToString -- uid: OpenTK.Core.Platform.WindowModeChangeEventArgs.NewMode - commentId: P:OpenTK.Core.Platform.WindowModeChangeEventArgs.NewMode +- uid: OpenTK.Platform.WindowModeChangeEventArgs.NewMode + commentId: P:OpenTK.Platform.WindowModeChangeEventArgs.NewMode id: NewMode - parent: OpenTK.Core.Platform.WindowModeChangeEventArgs + parent: OpenTK.Platform.WindowModeChangeEventArgs langs: - csharp - vb name: NewMode nameWithType: WindowModeChangeEventArgs.NewMode - fullName: OpenTK.Core.Platform.WindowModeChangeEventArgs.NewMode + fullName: OpenTK.Platform.WindowModeChangeEventArgs.NewMode type: Property source: - remote: - path: src/OpenTK.Core/Platform/WindowEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: NewMode - path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\WindowEventArgs.cs startLine: 142 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform + - OpenTK.Platform + namespace: OpenTK.Platform summary: The new window mode of the window. example: [] syntax: content: public WindowMode NewMode { get; } parameters: [] return: - type: OpenTK.Core.Platform.WindowMode + type: OpenTK.Platform.WindowMode content.vb: Public Property NewMode As WindowMode - overload: OpenTK.Core.Platform.WindowModeChangeEventArgs.NewMode* -- uid: OpenTK.Core.Platform.WindowModeChangeEventArgs.#ctor(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.WindowMode) - commentId: M:OpenTK.Core.Platform.WindowModeChangeEventArgs.#ctor(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.WindowMode) - id: '#ctor(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.WindowMode)' - parent: OpenTK.Core.Platform.WindowModeChangeEventArgs + overload: OpenTK.Platform.WindowModeChangeEventArgs.NewMode* +- uid: OpenTK.Platform.WindowModeChangeEventArgs.#ctor(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowMode) + commentId: M:OpenTK.Platform.WindowModeChangeEventArgs.#ctor(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowMode) + id: '#ctor(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowMode)' + parent: OpenTK.Platform.WindowModeChangeEventArgs langs: - csharp - vb name: WindowModeChangeEventArgs(WindowHandle, WindowMode) nameWithType: WindowModeChangeEventArgs.WindowModeChangeEventArgs(WindowHandle, WindowMode) - fullName: OpenTK.Core.Platform.WindowModeChangeEventArgs.WindowModeChangeEventArgs(OpenTK.Core.Platform.WindowHandle, OpenTK.Core.Platform.WindowMode) + fullName: OpenTK.Platform.WindowModeChangeEventArgs.WindowModeChangeEventArgs(OpenTK.Platform.WindowHandle, OpenTK.Platform.WindowMode) type: Constructor source: - remote: - path: src/OpenTK.Core/Platform/WindowEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\WindowEventArgs.cs startLine: 149 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Initializes a new instance of the class. + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Initializes a new instance of the class. example: [] syntax: content: public WindowModeChangeEventArgs(WindowHandle window, WindowMode newMode) parameters: - id: window - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: The window that changed mode. - id: newMode - type: OpenTK.Core.Platform.WindowMode + type: OpenTK.Platform.WindowMode description: The windows new mode. content.vb: Public Sub New(window As WindowHandle, newMode As WindowMode) - overload: OpenTK.Core.Platform.WindowModeChangeEventArgs.#ctor* + overload: OpenTK.Platform.WindowModeChangeEventArgs.#ctor* nameWithType.vb: WindowModeChangeEventArgs.New(WindowHandle, WindowMode) - fullName.vb: OpenTK.Core.Platform.WindowModeChangeEventArgs.New(OpenTK.Core.Platform.WindowHandle, OpenTK.Core.Platform.WindowMode) + fullName.vb: OpenTK.Platform.WindowModeChangeEventArgs.New(OpenTK.Platform.WindowHandle, OpenTK.Platform.WindowMode) name.vb: New(WindowHandle, WindowMode) references: -- uid: OpenTK.Core.Platform - commentId: N:OpenTK.Core.Platform +- uid: OpenTK.Platform + commentId: N:OpenTK.Platform href: OpenTK.html - name: OpenTK.Core.Platform - nameWithType: OpenTK.Core.Platform - fullName: OpenTK.Core.Platform + name: OpenTK.Platform + nameWithType: OpenTK.Platform + fullName: OpenTK.Platform spec.csharp: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html spec.vb: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html - uid: System.Object commentId: T:System.Object parent: System @@ -163,20 +143,20 @@ references: name: EventArgs nameWithType: EventArgs fullName: System.EventArgs -- uid: OpenTK.Core.Platform.WindowEventArgs - commentId: T:OpenTK.Core.Platform.WindowEventArgs - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.WindowEventArgs.html +- uid: OpenTK.Platform.WindowEventArgs + commentId: T:OpenTK.Platform.WindowEventArgs + parent: OpenTK.Platform + href: OpenTK.Platform.WindowEventArgs.html name: WindowEventArgs nameWithType: WindowEventArgs - fullName: OpenTK.Core.Platform.WindowEventArgs -- uid: OpenTK.Core.Platform.WindowEventArgs.Window - commentId: P:OpenTK.Core.Platform.WindowEventArgs.Window - parent: OpenTK.Core.Platform.WindowEventArgs - href: OpenTK.Core.Platform.WindowEventArgs.html#OpenTK_Core_Platform_WindowEventArgs_Window + fullName: OpenTK.Platform.WindowEventArgs +- uid: OpenTK.Platform.WindowEventArgs.Window + commentId: P:OpenTK.Platform.WindowEventArgs.Window + parent: OpenTK.Platform.WindowEventArgs + href: OpenTK.Platform.WindowEventArgs.html#OpenTK_Platform_WindowEventArgs_Window name: Window nameWithType: WindowEventArgs.Window - fullName: OpenTK.Core.Platform.WindowEventArgs.Window + fullName: OpenTK.Platform.WindowEventArgs.Window - uid: System.EventArgs.Empty commentId: F:System.EventArgs.Empty parent: System.EventArgs @@ -411,38 +391,38 @@ references: name: System nameWithType: System fullName: System -- uid: OpenTK.Core.Platform.WindowModeChangeEventArgs.NewMode* - commentId: Overload:OpenTK.Core.Platform.WindowModeChangeEventArgs.NewMode - href: OpenTK.Core.Platform.WindowModeChangeEventArgs.html#OpenTK_Core_Platform_WindowModeChangeEventArgs_NewMode +- uid: OpenTK.Platform.WindowModeChangeEventArgs.NewMode* + commentId: Overload:OpenTK.Platform.WindowModeChangeEventArgs.NewMode + href: OpenTK.Platform.WindowModeChangeEventArgs.html#OpenTK_Platform_WindowModeChangeEventArgs_NewMode name: NewMode nameWithType: WindowModeChangeEventArgs.NewMode - fullName: OpenTK.Core.Platform.WindowModeChangeEventArgs.NewMode -- uid: OpenTK.Core.Platform.WindowMode - commentId: T:OpenTK.Core.Platform.WindowMode - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.WindowMode.html + fullName: OpenTK.Platform.WindowModeChangeEventArgs.NewMode +- uid: OpenTK.Platform.WindowMode + commentId: T:OpenTK.Platform.WindowMode + parent: OpenTK.Platform + href: OpenTK.Platform.WindowMode.html name: WindowMode nameWithType: WindowMode - fullName: OpenTK.Core.Platform.WindowMode -- uid: OpenTK.Core.Platform.WindowModeChangeEventArgs - commentId: T:OpenTK.Core.Platform.WindowModeChangeEventArgs - href: OpenTK.Core.Platform.WindowModeChangeEventArgs.html + fullName: OpenTK.Platform.WindowMode +- uid: OpenTK.Platform.WindowModeChangeEventArgs + commentId: T:OpenTK.Platform.WindowModeChangeEventArgs + href: OpenTK.Platform.WindowModeChangeEventArgs.html name: WindowModeChangeEventArgs nameWithType: WindowModeChangeEventArgs - fullName: OpenTK.Core.Platform.WindowModeChangeEventArgs -- uid: OpenTK.Core.Platform.WindowModeChangeEventArgs.#ctor* - commentId: Overload:OpenTK.Core.Platform.WindowModeChangeEventArgs.#ctor - href: OpenTK.Core.Platform.WindowModeChangeEventArgs.html#OpenTK_Core_Platform_WindowModeChangeEventArgs__ctor_OpenTK_Core_Platform_WindowHandle_OpenTK_Core_Platform_WindowMode_ + fullName: OpenTK.Platform.WindowModeChangeEventArgs +- uid: OpenTK.Platform.WindowModeChangeEventArgs.#ctor* + commentId: Overload:OpenTK.Platform.WindowModeChangeEventArgs.#ctor + href: OpenTK.Platform.WindowModeChangeEventArgs.html#OpenTK_Platform_WindowModeChangeEventArgs__ctor_OpenTK_Platform_WindowHandle_OpenTK_Platform_WindowMode_ name: WindowModeChangeEventArgs nameWithType: WindowModeChangeEventArgs.WindowModeChangeEventArgs - fullName: OpenTK.Core.Platform.WindowModeChangeEventArgs.WindowModeChangeEventArgs + fullName: OpenTK.Platform.WindowModeChangeEventArgs.WindowModeChangeEventArgs nameWithType.vb: WindowModeChangeEventArgs.New - fullName.vb: OpenTK.Core.Platform.WindowModeChangeEventArgs.New + fullName.vb: OpenTK.Platform.WindowModeChangeEventArgs.New name.vb: New -- uid: OpenTK.Core.Platform.WindowHandle - commentId: T:OpenTK.Core.Platform.WindowHandle - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.WindowHandle.html +- uid: OpenTK.Platform.WindowHandle + commentId: T:OpenTK.Platform.WindowHandle + parent: OpenTK.Platform + href: OpenTK.Platform.WindowHandle.html name: WindowHandle nameWithType: WindowHandle - fullName: OpenTK.Core.Platform.WindowHandle + fullName: OpenTK.Platform.WindowHandle diff --git a/api/OpenTK.Core.Platform.WindowMoveEventArgs.yml b/api/OpenTK.Platform.WindowMoveEventArgs.yml similarity index 68% rename from api/OpenTK.Core.Platform.WindowMoveEventArgs.yml rename to api/OpenTK.Platform.WindowMoveEventArgs.yml index e219d3f3..d8c192ec 100644 --- a/api/OpenTK.Core.Platform.WindowMoveEventArgs.yml +++ b/api/OpenTK.Platform.WindowMoveEventArgs.yml @@ -1,31 +1,27 @@ ### YamlMime:ManagedReference items: -- uid: OpenTK.Core.Platform.WindowMoveEventArgs - commentId: T:OpenTK.Core.Platform.WindowMoveEventArgs +- uid: OpenTK.Platform.WindowMoveEventArgs + commentId: T:OpenTK.Platform.WindowMoveEventArgs id: WindowMoveEventArgs - parent: OpenTK.Core.Platform + parent: OpenTK.Platform children: - - OpenTK.Core.Platform.WindowMoveEventArgs.#ctor(OpenTK.Core.Platform.WindowHandle,OpenTK.Mathematics.Vector2i,OpenTK.Mathematics.Vector2i) - - OpenTK.Core.Platform.WindowMoveEventArgs.ClientAreaPosition - - OpenTK.Core.Platform.WindowMoveEventArgs.WindowPosition + - OpenTK.Platform.WindowMoveEventArgs.#ctor(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i,OpenTK.Mathematics.Vector2i) + - OpenTK.Platform.WindowMoveEventArgs.ClientAreaPosition + - OpenTK.Platform.WindowMoveEventArgs.WindowPosition langs: - csharp - vb name: WindowMoveEventArgs nameWithType: WindowMoveEventArgs - fullName: OpenTK.Core.Platform.WindowMoveEventArgs + fullName: OpenTK.Platform.WindowMoveEventArgs type: Class source: - remote: - path: src/OpenTK.Core/Platform/WindowEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: WindowMoveEventArgs - path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\WindowEventArgs.cs startLine: 58 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform + - OpenTK.Platform + namespace: OpenTK.Platform summary: This event is triggered when a window has its position changed on screen. example: [] syntax: @@ -34,9 +30,9 @@ items: inheritance: - System.Object - System.EventArgs - - OpenTK.Core.Platform.WindowEventArgs + - OpenTK.Platform.WindowEventArgs inheritedMembers: - - OpenTK.Core.Platform.WindowEventArgs.Window + - OpenTK.Platform.WindowEventArgs.Window - System.EventArgs.Empty - System.Object.Equals(System.Object) - System.Object.Equals(System.Object,System.Object) @@ -45,28 +41,24 @@ items: - System.Object.MemberwiseClone - System.Object.ReferenceEquals(System.Object,System.Object) - System.Object.ToString -- uid: OpenTK.Core.Platform.WindowMoveEventArgs.WindowPosition - commentId: P:OpenTK.Core.Platform.WindowMoveEventArgs.WindowPosition +- uid: OpenTK.Platform.WindowMoveEventArgs.WindowPosition + commentId: P:OpenTK.Platform.WindowMoveEventArgs.WindowPosition id: WindowPosition - parent: OpenTK.Core.Platform.WindowMoveEventArgs + parent: OpenTK.Platform.WindowMoveEventArgs langs: - csharp - vb name: WindowPosition nameWithType: WindowMoveEventArgs.WindowPosition - fullName: OpenTK.Core.Platform.WindowMoveEventArgs.WindowPosition + fullName: OpenTK.Platform.WindowMoveEventArgs.WindowPosition type: Property source: - remote: - path: src/OpenTK.Core/Platform/WindowEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: WindowPosition - path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\WindowEventArgs.cs startLine: 63 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform + - OpenTK.Platform + namespace: OpenTK.Platform summary: The new window position in screen coordinates. example: [] syntax: @@ -75,29 +67,25 @@ items: return: type: OpenTK.Mathematics.Vector2i content.vb: Public Property WindowPosition As Vector2i - overload: OpenTK.Core.Platform.WindowMoveEventArgs.WindowPosition* -- uid: OpenTK.Core.Platform.WindowMoveEventArgs.ClientAreaPosition - commentId: P:OpenTK.Core.Platform.WindowMoveEventArgs.ClientAreaPosition + overload: OpenTK.Platform.WindowMoveEventArgs.WindowPosition* +- uid: OpenTK.Platform.WindowMoveEventArgs.ClientAreaPosition + commentId: P:OpenTK.Platform.WindowMoveEventArgs.ClientAreaPosition id: ClientAreaPosition - parent: OpenTK.Core.Platform.WindowMoveEventArgs + parent: OpenTK.Platform.WindowMoveEventArgs langs: - csharp - vb name: ClientAreaPosition nameWithType: WindowMoveEventArgs.ClientAreaPosition - fullName: OpenTK.Core.Platform.WindowMoveEventArgs.ClientAreaPosition + fullName: OpenTK.Platform.WindowMoveEventArgs.ClientAreaPosition type: Property source: - remote: - path: src/OpenTK.Core/Platform/WindowEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ClientAreaPosition - path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\WindowEventArgs.cs startLine: 68 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform + - OpenTK.Platform + namespace: OpenTK.Platform summary: The new client area position in screen coordinates. example: [] syntax: @@ -106,36 +94,32 @@ items: return: type: OpenTK.Mathematics.Vector2i content.vb: Public Property ClientAreaPosition As Vector2i - overload: OpenTK.Core.Platform.WindowMoveEventArgs.ClientAreaPosition* -- uid: OpenTK.Core.Platform.WindowMoveEventArgs.#ctor(OpenTK.Core.Platform.WindowHandle,OpenTK.Mathematics.Vector2i,OpenTK.Mathematics.Vector2i) - commentId: M:OpenTK.Core.Platform.WindowMoveEventArgs.#ctor(OpenTK.Core.Platform.WindowHandle,OpenTK.Mathematics.Vector2i,OpenTK.Mathematics.Vector2i) - id: '#ctor(OpenTK.Core.Platform.WindowHandle,OpenTK.Mathematics.Vector2i,OpenTK.Mathematics.Vector2i)' - parent: OpenTK.Core.Platform.WindowMoveEventArgs + overload: OpenTK.Platform.WindowMoveEventArgs.ClientAreaPosition* +- uid: OpenTK.Platform.WindowMoveEventArgs.#ctor(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i,OpenTK.Mathematics.Vector2i) + commentId: M:OpenTK.Platform.WindowMoveEventArgs.#ctor(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i,OpenTK.Mathematics.Vector2i) + id: '#ctor(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i,OpenTK.Mathematics.Vector2i)' + parent: OpenTK.Platform.WindowMoveEventArgs langs: - csharp - vb name: WindowMoveEventArgs(WindowHandle, Vector2i, Vector2i) nameWithType: WindowMoveEventArgs.WindowMoveEventArgs(WindowHandle, Vector2i, Vector2i) - fullName: OpenTK.Core.Platform.WindowMoveEventArgs.WindowMoveEventArgs(OpenTK.Core.Platform.WindowHandle, OpenTK.Mathematics.Vector2i, OpenTK.Mathematics.Vector2i) + fullName: OpenTK.Platform.WindowMoveEventArgs.WindowMoveEventArgs(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2i, OpenTK.Mathematics.Vector2i) type: Constructor source: - remote: - path: src/OpenTK.Core/Platform/WindowEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\WindowEventArgs.cs startLine: 76 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Initializes a new instance of the class. + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Initializes a new instance of the class. example: [] syntax: content: public WindowMoveEventArgs(WindowHandle window, Vector2i windowPosition, Vector2i clientAreaPosition) parameters: - id: window - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: The window that moved. - id: windowPosition type: OpenTK.Mathematics.Vector2i @@ -144,41 +128,33 @@ items: type: OpenTK.Mathematics.Vector2i description: The new window client area position. content.vb: Public Sub New(window As WindowHandle, windowPosition As Vector2i, clientAreaPosition As Vector2i) - overload: OpenTK.Core.Platform.WindowMoveEventArgs.#ctor* + overload: OpenTK.Platform.WindowMoveEventArgs.#ctor* nameWithType.vb: WindowMoveEventArgs.New(WindowHandle, Vector2i, Vector2i) - fullName.vb: OpenTK.Core.Platform.WindowMoveEventArgs.New(OpenTK.Core.Platform.WindowHandle, OpenTK.Mathematics.Vector2i, OpenTK.Mathematics.Vector2i) + fullName.vb: OpenTK.Platform.WindowMoveEventArgs.New(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2i, OpenTK.Mathematics.Vector2i) name.vb: New(WindowHandle, Vector2i, Vector2i) references: -- uid: OpenTK.Core.Platform - commentId: N:OpenTK.Core.Platform +- uid: OpenTK.Platform + commentId: N:OpenTK.Platform href: OpenTK.html - name: OpenTK.Core.Platform - nameWithType: OpenTK.Core.Platform - fullName: OpenTK.Core.Platform + name: OpenTK.Platform + nameWithType: OpenTK.Platform + fullName: OpenTK.Platform spec.csharp: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html spec.vb: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html - uid: System.Object commentId: T:System.Object parent: System @@ -198,20 +174,20 @@ references: name: EventArgs nameWithType: EventArgs fullName: System.EventArgs -- uid: OpenTK.Core.Platform.WindowEventArgs - commentId: T:OpenTK.Core.Platform.WindowEventArgs - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.WindowEventArgs.html +- uid: OpenTK.Platform.WindowEventArgs + commentId: T:OpenTK.Platform.WindowEventArgs + parent: OpenTK.Platform + href: OpenTK.Platform.WindowEventArgs.html name: WindowEventArgs nameWithType: WindowEventArgs - fullName: OpenTK.Core.Platform.WindowEventArgs -- uid: OpenTK.Core.Platform.WindowEventArgs.Window - commentId: P:OpenTK.Core.Platform.WindowEventArgs.Window - parent: OpenTK.Core.Platform.WindowEventArgs - href: OpenTK.Core.Platform.WindowEventArgs.html#OpenTK_Core_Platform_WindowEventArgs_Window + fullName: OpenTK.Platform.WindowEventArgs +- uid: OpenTK.Platform.WindowEventArgs.Window + commentId: P:OpenTK.Platform.WindowEventArgs.Window + parent: OpenTK.Platform.WindowEventArgs + href: OpenTK.Platform.WindowEventArgs.html#OpenTK_Platform_WindowEventArgs_Window name: Window nameWithType: WindowEventArgs.Window - fullName: OpenTK.Core.Platform.WindowEventArgs.Window + fullName: OpenTK.Platform.WindowEventArgs.Window - uid: System.EventArgs.Empty commentId: F:System.EventArgs.Empty parent: System.EventArgs @@ -446,12 +422,12 @@ references: name: System nameWithType: System fullName: System -- uid: OpenTK.Core.Platform.WindowMoveEventArgs.WindowPosition* - commentId: Overload:OpenTK.Core.Platform.WindowMoveEventArgs.WindowPosition - href: OpenTK.Core.Platform.WindowMoveEventArgs.html#OpenTK_Core_Platform_WindowMoveEventArgs_WindowPosition +- uid: OpenTK.Platform.WindowMoveEventArgs.WindowPosition* + commentId: Overload:OpenTK.Platform.WindowMoveEventArgs.WindowPosition + href: OpenTK.Platform.WindowMoveEventArgs.html#OpenTK_Platform_WindowMoveEventArgs_WindowPosition name: WindowPosition nameWithType: WindowMoveEventArgs.WindowPosition - fullName: OpenTK.Core.Platform.WindowMoveEventArgs.WindowPosition + fullName: OpenTK.Platform.WindowMoveEventArgs.WindowPosition - uid: OpenTK.Mathematics.Vector2i commentId: T:OpenTK.Mathematics.Vector2i parent: OpenTK.Mathematics @@ -481,31 +457,31 @@ references: - uid: OpenTK.Mathematics name: Mathematics href: OpenTK.Mathematics.html -- uid: OpenTK.Core.Platform.WindowMoveEventArgs.ClientAreaPosition* - commentId: Overload:OpenTK.Core.Platform.WindowMoveEventArgs.ClientAreaPosition - href: OpenTK.Core.Platform.WindowMoveEventArgs.html#OpenTK_Core_Platform_WindowMoveEventArgs_ClientAreaPosition +- uid: OpenTK.Platform.WindowMoveEventArgs.ClientAreaPosition* + commentId: Overload:OpenTK.Platform.WindowMoveEventArgs.ClientAreaPosition + href: OpenTK.Platform.WindowMoveEventArgs.html#OpenTK_Platform_WindowMoveEventArgs_ClientAreaPosition name: ClientAreaPosition nameWithType: WindowMoveEventArgs.ClientAreaPosition - fullName: OpenTK.Core.Platform.WindowMoveEventArgs.ClientAreaPosition -- uid: OpenTK.Core.Platform.WindowMoveEventArgs - commentId: T:OpenTK.Core.Platform.WindowMoveEventArgs - href: OpenTK.Core.Platform.WindowMoveEventArgs.html + fullName: OpenTK.Platform.WindowMoveEventArgs.ClientAreaPosition +- uid: OpenTK.Platform.WindowMoveEventArgs + commentId: T:OpenTK.Platform.WindowMoveEventArgs + href: OpenTK.Platform.WindowMoveEventArgs.html name: WindowMoveEventArgs nameWithType: WindowMoveEventArgs - fullName: OpenTK.Core.Platform.WindowMoveEventArgs -- uid: OpenTK.Core.Platform.WindowMoveEventArgs.#ctor* - commentId: Overload:OpenTK.Core.Platform.WindowMoveEventArgs.#ctor - href: OpenTK.Core.Platform.WindowMoveEventArgs.html#OpenTK_Core_Platform_WindowMoveEventArgs__ctor_OpenTK_Core_Platform_WindowHandle_OpenTK_Mathematics_Vector2i_OpenTK_Mathematics_Vector2i_ + fullName: OpenTK.Platform.WindowMoveEventArgs +- uid: OpenTK.Platform.WindowMoveEventArgs.#ctor* + commentId: Overload:OpenTK.Platform.WindowMoveEventArgs.#ctor + href: OpenTK.Platform.WindowMoveEventArgs.html#OpenTK_Platform_WindowMoveEventArgs__ctor_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2i_OpenTK_Mathematics_Vector2i_ name: WindowMoveEventArgs nameWithType: WindowMoveEventArgs.WindowMoveEventArgs - fullName: OpenTK.Core.Platform.WindowMoveEventArgs.WindowMoveEventArgs + fullName: OpenTK.Platform.WindowMoveEventArgs.WindowMoveEventArgs nameWithType.vb: WindowMoveEventArgs.New - fullName.vb: OpenTK.Core.Platform.WindowMoveEventArgs.New + fullName.vb: OpenTK.Platform.WindowMoveEventArgs.New name.vb: New -- uid: OpenTK.Core.Platform.WindowHandle - commentId: T:OpenTK.Core.Platform.WindowHandle - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.WindowHandle.html +- uid: OpenTK.Platform.WindowHandle + commentId: T:OpenTK.Platform.WindowHandle + parent: OpenTK.Platform + href: OpenTK.Platform.WindowHandle.html name: WindowHandle nameWithType: WindowHandle - fullName: OpenTK.Core.Platform.WindowHandle + fullName: OpenTK.Platform.WindowHandle diff --git a/api/OpenTK.Core.Platform.WindowResizeEventArgs.yml b/api/OpenTK.Platform.WindowResizeEventArgs.yml similarity index 68% rename from api/OpenTK.Core.Platform.WindowResizeEventArgs.yml rename to api/OpenTK.Platform.WindowResizeEventArgs.yml index 5ec35ba7..7570b8c8 100644 --- a/api/OpenTK.Core.Platform.WindowResizeEventArgs.yml +++ b/api/OpenTK.Platform.WindowResizeEventArgs.yml @@ -1,31 +1,27 @@ ### YamlMime:ManagedReference items: -- uid: OpenTK.Core.Platform.WindowResizeEventArgs - commentId: T:OpenTK.Core.Platform.WindowResizeEventArgs +- uid: OpenTK.Platform.WindowResizeEventArgs + commentId: T:OpenTK.Platform.WindowResizeEventArgs id: WindowResizeEventArgs - parent: OpenTK.Core.Platform + parent: OpenTK.Platform children: - - OpenTK.Core.Platform.WindowResizeEventArgs.#ctor(OpenTK.Core.Platform.WindowHandle,OpenTK.Mathematics.Vector2i,OpenTK.Mathematics.Vector2i) - - OpenTK.Core.Platform.WindowResizeEventArgs.NewClientSize - - OpenTK.Core.Platform.WindowResizeEventArgs.NewSize + - OpenTK.Platform.WindowResizeEventArgs.#ctor(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i,OpenTK.Mathematics.Vector2i) + - OpenTK.Platform.WindowResizeEventArgs.NewClientSize + - OpenTK.Platform.WindowResizeEventArgs.NewSize langs: - csharp - vb name: WindowResizeEventArgs nameWithType: WindowResizeEventArgs - fullName: OpenTK.Core.Platform.WindowResizeEventArgs + fullName: OpenTK.Platform.WindowResizeEventArgs type: Class source: - remote: - path: src/OpenTK.Core/Platform/WindowEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: WindowResizeEventArgs - path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\WindowEventArgs.cs startLine: 86 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform + - OpenTK.Platform + namespace: OpenTK.Platform summary: This event is triggered when a window has its size changed on screen. example: [] syntax: @@ -34,9 +30,9 @@ items: inheritance: - System.Object - System.EventArgs - - OpenTK.Core.Platform.WindowEventArgs + - OpenTK.Platform.WindowEventArgs inheritedMembers: - - OpenTK.Core.Platform.WindowEventArgs.Window + - OpenTK.Platform.WindowEventArgs.Window - System.EventArgs.Empty - System.Object.Equals(System.Object) - System.Object.Equals(System.Object,System.Object) @@ -45,28 +41,24 @@ items: - System.Object.MemberwiseClone - System.Object.ReferenceEquals(System.Object,System.Object) - System.Object.ToString -- uid: OpenTK.Core.Platform.WindowResizeEventArgs.NewSize - commentId: P:OpenTK.Core.Platform.WindowResizeEventArgs.NewSize +- uid: OpenTK.Platform.WindowResizeEventArgs.NewSize + commentId: P:OpenTK.Platform.WindowResizeEventArgs.NewSize id: NewSize - parent: OpenTK.Core.Platform.WindowResizeEventArgs + parent: OpenTK.Platform.WindowResizeEventArgs langs: - csharp - vb name: NewSize nameWithType: WindowResizeEventArgs.NewSize - fullName: OpenTK.Core.Platform.WindowResizeEventArgs.NewSize + fullName: OpenTK.Platform.WindowResizeEventArgs.NewSize type: Property source: - remote: - path: src/OpenTK.Core/Platform/WindowEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: NewSize - path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\WindowEventArgs.cs startLine: 91 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform + - OpenTK.Platform + namespace: OpenTK.Platform summary: The new size of the window. example: [] syntax: @@ -75,29 +67,25 @@ items: return: type: OpenTK.Mathematics.Vector2i content.vb: Public Property NewSize As Vector2i - overload: OpenTK.Core.Platform.WindowResizeEventArgs.NewSize* -- uid: OpenTK.Core.Platform.WindowResizeEventArgs.NewClientSize - commentId: P:OpenTK.Core.Platform.WindowResizeEventArgs.NewClientSize + overload: OpenTK.Platform.WindowResizeEventArgs.NewSize* +- uid: OpenTK.Platform.WindowResizeEventArgs.NewClientSize + commentId: P:OpenTK.Platform.WindowResizeEventArgs.NewClientSize id: NewClientSize - parent: OpenTK.Core.Platform.WindowResizeEventArgs + parent: OpenTK.Platform.WindowResizeEventArgs langs: - csharp - vb name: NewClientSize nameWithType: WindowResizeEventArgs.NewClientSize - fullName: OpenTK.Core.Platform.WindowResizeEventArgs.NewClientSize + fullName: OpenTK.Platform.WindowResizeEventArgs.NewClientSize type: Property source: - remote: - path: src/OpenTK.Core/Platform/WindowEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: NewClientSize - path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\WindowEventArgs.cs startLine: 96 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform + - OpenTK.Platform + namespace: OpenTK.Platform summary: The new client size of the window. example: [] syntax: @@ -106,36 +94,32 @@ items: return: type: OpenTK.Mathematics.Vector2i content.vb: Public Property NewClientSize As Vector2i - overload: OpenTK.Core.Platform.WindowResizeEventArgs.NewClientSize* -- uid: OpenTK.Core.Platform.WindowResizeEventArgs.#ctor(OpenTK.Core.Platform.WindowHandle,OpenTK.Mathematics.Vector2i,OpenTK.Mathematics.Vector2i) - commentId: M:OpenTK.Core.Platform.WindowResizeEventArgs.#ctor(OpenTK.Core.Platform.WindowHandle,OpenTK.Mathematics.Vector2i,OpenTK.Mathematics.Vector2i) - id: '#ctor(OpenTK.Core.Platform.WindowHandle,OpenTK.Mathematics.Vector2i,OpenTK.Mathematics.Vector2i)' - parent: OpenTK.Core.Platform.WindowResizeEventArgs + overload: OpenTK.Platform.WindowResizeEventArgs.NewClientSize* +- uid: OpenTK.Platform.WindowResizeEventArgs.#ctor(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i,OpenTK.Mathematics.Vector2i) + commentId: M:OpenTK.Platform.WindowResizeEventArgs.#ctor(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i,OpenTK.Mathematics.Vector2i) + id: '#ctor(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i,OpenTK.Mathematics.Vector2i)' + parent: OpenTK.Platform.WindowResizeEventArgs langs: - csharp - vb name: WindowResizeEventArgs(WindowHandle, Vector2i, Vector2i) nameWithType: WindowResizeEventArgs.WindowResizeEventArgs(WindowHandle, Vector2i, Vector2i) - fullName: OpenTK.Core.Platform.WindowResizeEventArgs.WindowResizeEventArgs(OpenTK.Core.Platform.WindowHandle, OpenTK.Mathematics.Vector2i, OpenTK.Mathematics.Vector2i) + fullName: OpenTK.Platform.WindowResizeEventArgs.WindowResizeEventArgs(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2i, OpenTK.Mathematics.Vector2i) type: Constructor source: - remote: - path: src/OpenTK.Core/Platform/WindowEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\WindowEventArgs.cs startLine: 105 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Initializes a new instance of the class. + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Initializes a new instance of the class. example: [] syntax: content: public WindowResizeEventArgs(WindowHandle window, Vector2i newSize, Vector2i newClientSize) parameters: - id: window - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: The window that got resized. - id: newSize type: OpenTK.Mathematics.Vector2i @@ -144,41 +128,33 @@ items: type: OpenTK.Mathematics.Vector2i description: The new client size of the window. content.vb: Public Sub New(window As WindowHandle, newSize As Vector2i, newClientSize As Vector2i) - overload: OpenTK.Core.Platform.WindowResizeEventArgs.#ctor* + overload: OpenTK.Platform.WindowResizeEventArgs.#ctor* nameWithType.vb: WindowResizeEventArgs.New(WindowHandle, Vector2i, Vector2i) - fullName.vb: OpenTK.Core.Platform.WindowResizeEventArgs.New(OpenTK.Core.Platform.WindowHandle, OpenTK.Mathematics.Vector2i, OpenTK.Mathematics.Vector2i) + fullName.vb: OpenTK.Platform.WindowResizeEventArgs.New(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2i, OpenTK.Mathematics.Vector2i) name.vb: New(WindowHandle, Vector2i, Vector2i) references: -- uid: OpenTK.Core.Platform - commentId: N:OpenTK.Core.Platform +- uid: OpenTK.Platform + commentId: N:OpenTK.Platform href: OpenTK.html - name: OpenTK.Core.Platform - nameWithType: OpenTK.Core.Platform - fullName: OpenTK.Core.Platform + name: OpenTK.Platform + nameWithType: OpenTK.Platform + fullName: OpenTK.Platform spec.csharp: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html spec.vb: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html - uid: System.Object commentId: T:System.Object parent: System @@ -198,20 +174,20 @@ references: name: EventArgs nameWithType: EventArgs fullName: System.EventArgs -- uid: OpenTK.Core.Platform.WindowEventArgs - commentId: T:OpenTK.Core.Platform.WindowEventArgs - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.WindowEventArgs.html +- uid: OpenTK.Platform.WindowEventArgs + commentId: T:OpenTK.Platform.WindowEventArgs + parent: OpenTK.Platform + href: OpenTK.Platform.WindowEventArgs.html name: WindowEventArgs nameWithType: WindowEventArgs - fullName: OpenTK.Core.Platform.WindowEventArgs -- uid: OpenTK.Core.Platform.WindowEventArgs.Window - commentId: P:OpenTK.Core.Platform.WindowEventArgs.Window - parent: OpenTK.Core.Platform.WindowEventArgs - href: OpenTK.Core.Platform.WindowEventArgs.html#OpenTK_Core_Platform_WindowEventArgs_Window + fullName: OpenTK.Platform.WindowEventArgs +- uid: OpenTK.Platform.WindowEventArgs.Window + commentId: P:OpenTK.Platform.WindowEventArgs.Window + parent: OpenTK.Platform.WindowEventArgs + href: OpenTK.Platform.WindowEventArgs.html#OpenTK_Platform_WindowEventArgs_Window name: Window nameWithType: WindowEventArgs.Window - fullName: OpenTK.Core.Platform.WindowEventArgs.Window + fullName: OpenTK.Platform.WindowEventArgs.Window - uid: System.EventArgs.Empty commentId: F:System.EventArgs.Empty parent: System.EventArgs @@ -446,12 +422,12 @@ references: name: System nameWithType: System fullName: System -- uid: OpenTK.Core.Platform.WindowResizeEventArgs.NewSize* - commentId: Overload:OpenTK.Core.Platform.WindowResizeEventArgs.NewSize - href: OpenTK.Core.Platform.WindowResizeEventArgs.html#OpenTK_Core_Platform_WindowResizeEventArgs_NewSize +- uid: OpenTK.Platform.WindowResizeEventArgs.NewSize* + commentId: Overload:OpenTK.Platform.WindowResizeEventArgs.NewSize + href: OpenTK.Platform.WindowResizeEventArgs.html#OpenTK_Platform_WindowResizeEventArgs_NewSize name: NewSize nameWithType: WindowResizeEventArgs.NewSize - fullName: OpenTK.Core.Platform.WindowResizeEventArgs.NewSize + fullName: OpenTK.Platform.WindowResizeEventArgs.NewSize - uid: OpenTK.Mathematics.Vector2i commentId: T:OpenTK.Mathematics.Vector2i parent: OpenTK.Mathematics @@ -481,31 +457,31 @@ references: - uid: OpenTK.Mathematics name: Mathematics href: OpenTK.Mathematics.html -- uid: OpenTK.Core.Platform.WindowResizeEventArgs.NewClientSize* - commentId: Overload:OpenTK.Core.Platform.WindowResizeEventArgs.NewClientSize - href: OpenTK.Core.Platform.WindowResizeEventArgs.html#OpenTK_Core_Platform_WindowResizeEventArgs_NewClientSize +- uid: OpenTK.Platform.WindowResizeEventArgs.NewClientSize* + commentId: Overload:OpenTK.Platform.WindowResizeEventArgs.NewClientSize + href: OpenTK.Platform.WindowResizeEventArgs.html#OpenTK_Platform_WindowResizeEventArgs_NewClientSize name: NewClientSize nameWithType: WindowResizeEventArgs.NewClientSize - fullName: OpenTK.Core.Platform.WindowResizeEventArgs.NewClientSize -- uid: OpenTK.Core.Platform.WindowResizeEventArgs - commentId: T:OpenTK.Core.Platform.WindowResizeEventArgs - href: OpenTK.Core.Platform.WindowResizeEventArgs.html + fullName: OpenTK.Platform.WindowResizeEventArgs.NewClientSize +- uid: OpenTK.Platform.WindowResizeEventArgs + commentId: T:OpenTK.Platform.WindowResizeEventArgs + href: OpenTK.Platform.WindowResizeEventArgs.html name: WindowResizeEventArgs nameWithType: WindowResizeEventArgs - fullName: OpenTK.Core.Platform.WindowResizeEventArgs -- uid: OpenTK.Core.Platform.WindowResizeEventArgs.#ctor* - commentId: Overload:OpenTK.Core.Platform.WindowResizeEventArgs.#ctor - href: OpenTK.Core.Platform.WindowResizeEventArgs.html#OpenTK_Core_Platform_WindowResizeEventArgs__ctor_OpenTK_Core_Platform_WindowHandle_OpenTK_Mathematics_Vector2i_OpenTK_Mathematics_Vector2i_ + fullName: OpenTK.Platform.WindowResizeEventArgs +- uid: OpenTK.Platform.WindowResizeEventArgs.#ctor* + commentId: Overload:OpenTK.Platform.WindowResizeEventArgs.#ctor + href: OpenTK.Platform.WindowResizeEventArgs.html#OpenTK_Platform_WindowResizeEventArgs__ctor_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2i_OpenTK_Mathematics_Vector2i_ name: WindowResizeEventArgs nameWithType: WindowResizeEventArgs.WindowResizeEventArgs - fullName: OpenTK.Core.Platform.WindowResizeEventArgs.WindowResizeEventArgs + fullName: OpenTK.Platform.WindowResizeEventArgs.WindowResizeEventArgs nameWithType.vb: WindowResizeEventArgs.New - fullName.vb: OpenTK.Core.Platform.WindowResizeEventArgs.New + fullName.vb: OpenTK.Platform.WindowResizeEventArgs.New name.vb: New -- uid: OpenTK.Core.Platform.WindowHandle - commentId: T:OpenTK.Core.Platform.WindowHandle - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.WindowHandle.html +- uid: OpenTK.Platform.WindowHandle + commentId: T:OpenTK.Platform.WindowHandle + parent: OpenTK.Platform + href: OpenTK.Platform.WindowHandle.html name: WindowHandle nameWithType: WindowHandle - fullName: OpenTK.Core.Platform.WindowHandle + fullName: OpenTK.Platform.WindowHandle diff --git a/api/OpenTK.Core.Platform.WindowScaleChangeEventArgs.yml b/api/OpenTK.Platform.WindowScaleChangeEventArgs.yml similarity index 68% rename from api/OpenTK.Core.Platform.WindowScaleChangeEventArgs.yml rename to api/OpenTK.Platform.WindowScaleChangeEventArgs.yml index fc5755cc..8b748ba7 100644 --- a/api/OpenTK.Core.Platform.WindowScaleChangeEventArgs.yml +++ b/api/OpenTK.Platform.WindowScaleChangeEventArgs.yml @@ -1,31 +1,27 @@ ### YamlMime:ManagedReference items: -- uid: OpenTK.Core.Platform.WindowScaleChangeEventArgs - commentId: T:OpenTK.Core.Platform.WindowScaleChangeEventArgs +- uid: OpenTK.Platform.WindowScaleChangeEventArgs + commentId: T:OpenTK.Platform.WindowScaleChangeEventArgs id: WindowScaleChangeEventArgs - parent: OpenTK.Core.Platform + parent: OpenTK.Platform children: - - OpenTK.Core.Platform.WindowScaleChangeEventArgs.#ctor(OpenTK.Core.Platform.WindowHandle,System.Single,System.Single) - - OpenTK.Core.Platform.WindowScaleChangeEventArgs.ScaleX - - OpenTK.Core.Platform.WindowScaleChangeEventArgs.ScaleY + - OpenTK.Platform.WindowScaleChangeEventArgs.#ctor(OpenTK.Platform.WindowHandle,System.Single,System.Single) + - OpenTK.Platform.WindowScaleChangeEventArgs.ScaleX + - OpenTK.Platform.WindowScaleChangeEventArgs.ScaleY langs: - csharp - vb name: WindowScaleChangeEventArgs nameWithType: WindowScaleChangeEventArgs - fullName: OpenTK.Core.Platform.WindowScaleChangeEventArgs + fullName: OpenTK.Platform.WindowScaleChangeEventArgs type: Class source: - remote: - path: src/OpenTK.Core/Platform/WindowEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: WindowScaleChangeEventArgs - path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\WindowEventArgs.cs startLine: 160 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform + - OpenTK.Platform + namespace: OpenTK.Platform summary: >- This event is triggered when the DPI of a window changes. @@ -39,9 +35,9 @@ items: inheritance: - System.Object - System.EventArgs - - OpenTK.Core.Platform.WindowEventArgs + - OpenTK.Platform.WindowEventArgs inheritedMembers: - - OpenTK.Core.Platform.WindowEventArgs.Window + - OpenTK.Platform.WindowEventArgs.Window - System.EventArgs.Empty - System.Object.Equals(System.Object) - System.Object.Equals(System.Object,System.Object) @@ -50,28 +46,24 @@ items: - System.Object.MemberwiseClone - System.Object.ReferenceEquals(System.Object,System.Object) - System.Object.ToString -- uid: OpenTK.Core.Platform.WindowScaleChangeEventArgs.ScaleX - commentId: P:OpenTK.Core.Platform.WindowScaleChangeEventArgs.ScaleX +- uid: OpenTK.Platform.WindowScaleChangeEventArgs.ScaleX + commentId: P:OpenTK.Platform.WindowScaleChangeEventArgs.ScaleX id: ScaleX - parent: OpenTK.Core.Platform.WindowScaleChangeEventArgs + parent: OpenTK.Platform.WindowScaleChangeEventArgs langs: - csharp - vb name: ScaleX nameWithType: WindowScaleChangeEventArgs.ScaleX - fullName: OpenTK.Core.Platform.WindowScaleChangeEventArgs.ScaleX + fullName: OpenTK.Platform.WindowScaleChangeEventArgs.ScaleX type: Property source: - remote: - path: src/OpenTK.Core/Platform/WindowEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ScaleX - path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\WindowEventArgs.cs startLine: 165 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform + - OpenTK.Platform + namespace: OpenTK.Platform summary: The new scale value in the x-axis. example: [] syntax: @@ -80,29 +72,25 @@ items: return: type: System.Single content.vb: Public Property ScaleX As Single - overload: OpenTK.Core.Platform.WindowScaleChangeEventArgs.ScaleX* -- uid: OpenTK.Core.Platform.WindowScaleChangeEventArgs.ScaleY - commentId: P:OpenTK.Core.Platform.WindowScaleChangeEventArgs.ScaleY + overload: OpenTK.Platform.WindowScaleChangeEventArgs.ScaleX* +- uid: OpenTK.Platform.WindowScaleChangeEventArgs.ScaleY + commentId: P:OpenTK.Platform.WindowScaleChangeEventArgs.ScaleY id: ScaleY - parent: OpenTK.Core.Platform.WindowScaleChangeEventArgs + parent: OpenTK.Platform.WindowScaleChangeEventArgs langs: - csharp - vb name: ScaleY nameWithType: WindowScaleChangeEventArgs.ScaleY - fullName: OpenTK.Core.Platform.WindowScaleChangeEventArgs.ScaleY + fullName: OpenTK.Platform.WindowScaleChangeEventArgs.ScaleY type: Property source: - remote: - path: src/OpenTK.Core/Platform/WindowEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ScaleY - path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\WindowEventArgs.cs startLine: 170 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform + - OpenTK.Platform + namespace: OpenTK.Platform summary: The new scale value in the y-axis. example: [] syntax: @@ -111,36 +99,32 @@ items: return: type: System.Single content.vb: Public Property ScaleY As Single - overload: OpenTK.Core.Platform.WindowScaleChangeEventArgs.ScaleY* -- uid: OpenTK.Core.Platform.WindowScaleChangeEventArgs.#ctor(OpenTK.Core.Platform.WindowHandle,System.Single,System.Single) - commentId: M:OpenTK.Core.Platform.WindowScaleChangeEventArgs.#ctor(OpenTK.Core.Platform.WindowHandle,System.Single,System.Single) - id: '#ctor(OpenTK.Core.Platform.WindowHandle,System.Single,System.Single)' - parent: OpenTK.Core.Platform.WindowScaleChangeEventArgs + overload: OpenTK.Platform.WindowScaleChangeEventArgs.ScaleY* +- uid: OpenTK.Platform.WindowScaleChangeEventArgs.#ctor(OpenTK.Platform.WindowHandle,System.Single,System.Single) + commentId: M:OpenTK.Platform.WindowScaleChangeEventArgs.#ctor(OpenTK.Platform.WindowHandle,System.Single,System.Single) + id: '#ctor(OpenTK.Platform.WindowHandle,System.Single,System.Single)' + parent: OpenTK.Platform.WindowScaleChangeEventArgs langs: - csharp - vb name: WindowScaleChangeEventArgs(WindowHandle, float, float) nameWithType: WindowScaleChangeEventArgs.WindowScaleChangeEventArgs(WindowHandle, float, float) - fullName: OpenTK.Core.Platform.WindowScaleChangeEventArgs.WindowScaleChangeEventArgs(OpenTK.Core.Platform.WindowHandle, float, float) + fullName: OpenTK.Platform.WindowScaleChangeEventArgs.WindowScaleChangeEventArgs(OpenTK.Platform.WindowHandle, float, float) type: Constructor source: - remote: - path: src/OpenTK.Core/Platform/WindowEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Core/Platform/WindowEventArgs.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\WindowEventArgs.cs startLine: 178 assemblies: - - OpenTK.Core - namespace: OpenTK.Core.Platform - summary: Initializes a new instance of the class. + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Initializes a new instance of the class. example: [] syntax: content: public WindowScaleChangeEventArgs(WindowHandle window, float scaleX, float scaleY) parameters: - id: window - type: OpenTK.Core.Platform.WindowHandle + type: OpenTK.Platform.WindowHandle description: The window whose dpi has changed. - id: scaleX type: System.Single @@ -149,41 +133,33 @@ items: type: System.Single description: The new y axis scale factor. content.vb: Public Sub New(window As WindowHandle, scaleX As Single, scaleY As Single) - overload: OpenTK.Core.Platform.WindowScaleChangeEventArgs.#ctor* + overload: OpenTK.Platform.WindowScaleChangeEventArgs.#ctor* nameWithType.vb: WindowScaleChangeEventArgs.New(WindowHandle, Single, Single) - fullName.vb: OpenTK.Core.Platform.WindowScaleChangeEventArgs.New(OpenTK.Core.Platform.WindowHandle, Single, Single) + fullName.vb: OpenTK.Platform.WindowScaleChangeEventArgs.New(OpenTK.Platform.WindowHandle, Single, Single) name.vb: New(WindowHandle, Single, Single) references: -- uid: OpenTK.Core.Platform - commentId: N:OpenTK.Core.Platform +- uid: OpenTK.Platform + commentId: N:OpenTK.Platform href: OpenTK.html - name: OpenTK.Core.Platform - nameWithType: OpenTK.Core.Platform - fullName: OpenTK.Core.Platform + name: OpenTK.Platform + nameWithType: OpenTK.Platform + fullName: OpenTK.Platform spec.csharp: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html spec.vb: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Platform + - uid: OpenTK.Platform name: Platform - href: OpenTK.Core.Platform.html + href: OpenTK.Platform.html - uid: System.Object commentId: T:System.Object parent: System @@ -203,20 +179,20 @@ references: name: EventArgs nameWithType: EventArgs fullName: System.EventArgs -- uid: OpenTK.Core.Platform.WindowEventArgs - commentId: T:OpenTK.Core.Platform.WindowEventArgs - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.WindowEventArgs.html +- uid: OpenTK.Platform.WindowEventArgs + commentId: T:OpenTK.Platform.WindowEventArgs + parent: OpenTK.Platform + href: OpenTK.Platform.WindowEventArgs.html name: WindowEventArgs nameWithType: WindowEventArgs - fullName: OpenTK.Core.Platform.WindowEventArgs -- uid: OpenTK.Core.Platform.WindowEventArgs.Window - commentId: P:OpenTK.Core.Platform.WindowEventArgs.Window - parent: OpenTK.Core.Platform.WindowEventArgs - href: OpenTK.Core.Platform.WindowEventArgs.html#OpenTK_Core_Platform_WindowEventArgs_Window + fullName: OpenTK.Platform.WindowEventArgs +- uid: OpenTK.Platform.WindowEventArgs.Window + commentId: P:OpenTK.Platform.WindowEventArgs.Window + parent: OpenTK.Platform.WindowEventArgs + href: OpenTK.Platform.WindowEventArgs.html#OpenTK_Platform_WindowEventArgs_Window name: Window nameWithType: WindowEventArgs.Window - fullName: OpenTK.Core.Platform.WindowEventArgs.Window + fullName: OpenTK.Platform.WindowEventArgs.Window - uid: System.EventArgs.Empty commentId: F:System.EventArgs.Empty parent: System.EventArgs @@ -451,12 +427,12 @@ references: name: System nameWithType: System fullName: System -- uid: OpenTK.Core.Platform.WindowScaleChangeEventArgs.ScaleX* - commentId: Overload:OpenTK.Core.Platform.WindowScaleChangeEventArgs.ScaleX - href: OpenTK.Core.Platform.WindowScaleChangeEventArgs.html#OpenTK_Core_Platform_WindowScaleChangeEventArgs_ScaleX +- uid: OpenTK.Platform.WindowScaleChangeEventArgs.ScaleX* + commentId: Overload:OpenTK.Platform.WindowScaleChangeEventArgs.ScaleX + href: OpenTK.Platform.WindowScaleChangeEventArgs.html#OpenTK_Platform_WindowScaleChangeEventArgs_ScaleX name: ScaleX nameWithType: WindowScaleChangeEventArgs.ScaleX - fullName: OpenTK.Core.Platform.WindowScaleChangeEventArgs.ScaleX + fullName: OpenTK.Platform.WindowScaleChangeEventArgs.ScaleX - uid: System.Single commentId: T:System.Single parent: System @@ -468,31 +444,31 @@ references: nameWithType.vb: Single fullName.vb: Single name.vb: Single -- uid: OpenTK.Core.Platform.WindowScaleChangeEventArgs.ScaleY* - commentId: Overload:OpenTK.Core.Platform.WindowScaleChangeEventArgs.ScaleY - href: OpenTK.Core.Platform.WindowScaleChangeEventArgs.html#OpenTK_Core_Platform_WindowScaleChangeEventArgs_ScaleY +- uid: OpenTK.Platform.WindowScaleChangeEventArgs.ScaleY* + commentId: Overload:OpenTK.Platform.WindowScaleChangeEventArgs.ScaleY + href: OpenTK.Platform.WindowScaleChangeEventArgs.html#OpenTK_Platform_WindowScaleChangeEventArgs_ScaleY name: ScaleY nameWithType: WindowScaleChangeEventArgs.ScaleY - fullName: OpenTK.Core.Platform.WindowScaleChangeEventArgs.ScaleY -- uid: OpenTK.Core.Platform.WindowScaleChangeEventArgs - commentId: T:OpenTK.Core.Platform.WindowScaleChangeEventArgs - href: OpenTK.Core.Platform.WindowScaleChangeEventArgs.html + fullName: OpenTK.Platform.WindowScaleChangeEventArgs.ScaleY +- uid: OpenTK.Platform.WindowScaleChangeEventArgs + commentId: T:OpenTK.Platform.WindowScaleChangeEventArgs + href: OpenTK.Platform.WindowScaleChangeEventArgs.html name: WindowScaleChangeEventArgs nameWithType: WindowScaleChangeEventArgs - fullName: OpenTK.Core.Platform.WindowScaleChangeEventArgs -- uid: OpenTK.Core.Platform.WindowScaleChangeEventArgs.#ctor* - commentId: Overload:OpenTK.Core.Platform.WindowScaleChangeEventArgs.#ctor - href: OpenTK.Core.Platform.WindowScaleChangeEventArgs.html#OpenTK_Core_Platform_WindowScaleChangeEventArgs__ctor_OpenTK_Core_Platform_WindowHandle_System_Single_System_Single_ + fullName: OpenTK.Platform.WindowScaleChangeEventArgs +- uid: OpenTK.Platform.WindowScaleChangeEventArgs.#ctor* + commentId: Overload:OpenTK.Platform.WindowScaleChangeEventArgs.#ctor + href: OpenTK.Platform.WindowScaleChangeEventArgs.html#OpenTK_Platform_WindowScaleChangeEventArgs__ctor_OpenTK_Platform_WindowHandle_System_Single_System_Single_ name: WindowScaleChangeEventArgs nameWithType: WindowScaleChangeEventArgs.WindowScaleChangeEventArgs - fullName: OpenTK.Core.Platform.WindowScaleChangeEventArgs.WindowScaleChangeEventArgs + fullName: OpenTK.Platform.WindowScaleChangeEventArgs.WindowScaleChangeEventArgs nameWithType.vb: WindowScaleChangeEventArgs.New - fullName.vb: OpenTK.Core.Platform.WindowScaleChangeEventArgs.New + fullName.vb: OpenTK.Platform.WindowScaleChangeEventArgs.New name.vb: New -- uid: OpenTK.Core.Platform.WindowHandle - commentId: T:OpenTK.Core.Platform.WindowHandle - parent: OpenTK.Core.Platform - href: OpenTK.Core.Platform.WindowHandle.html +- uid: OpenTK.Platform.WindowHandle + commentId: T:OpenTK.Platform.WindowHandle + parent: OpenTK.Platform + href: OpenTK.Platform.WindowHandle.html name: WindowHandle nameWithType: WindowHandle - fullName: OpenTK.Core.Platform.WindowHandle + fullName: OpenTK.Platform.WindowHandle diff --git a/api/OpenTK.Platform.yml b/api/OpenTK.Platform.yml new file mode 100644 index 00000000..081f419f --- /dev/null +++ b/api/OpenTK.Platform.yml @@ -0,0 +1,904 @@ +### YamlMime:ManagedReference +items: +- uid: OpenTK.Platform + commentId: N:OpenTK.Platform + id: OpenTK.Platform + children: + - OpenTK.Platform.AppTheme + - OpenTK.Platform.AudioData + - OpenTK.Platform.BatteryInfo + - OpenTK.Platform.BatteryStatus + - OpenTK.Platform.Bitmap + - OpenTK.Platform.ClipboardFormat + - OpenTK.Platform.ClipboardUpdateEventArgs + - OpenTK.Platform.CloseEventArgs + - OpenTK.Platform.ContextDepthBits + - OpenTK.Platform.ContextPixelFormat + - OpenTK.Platform.ContextReleaseBehaviour + - OpenTK.Platform.ContextResetNotificationStrategy + - OpenTK.Platform.ContextStencilBits + - OpenTK.Platform.ContextSwapMethod + - OpenTK.Platform.ContextValueSelector + - OpenTK.Platform.ContextValues + - OpenTK.Platform.CursorCaptureMode + - OpenTK.Platform.CursorHandle + - OpenTK.Platform.DialogFileFilter + - OpenTK.Platform.DisplayConnectionChangedEventArgs + - OpenTK.Platform.DisplayHandle + - OpenTK.Platform.DisplayResolution + - OpenTK.Platform.EventQueue + - OpenTK.Platform.FileDropEventArgs + - OpenTK.Platform.FocusEventArgs + - OpenTK.Platform.GamepadBatteryInfo + - OpenTK.Platform.GamepadBatteryType + - OpenTK.Platform.GraphicsApi + - OpenTK.Platform.GraphicsApiHints + - OpenTK.Platform.HitTest + - OpenTK.Platform.HitType + - OpenTK.Platform.IClipboardComponent + - OpenTK.Platform.ICursorComponent + - OpenTK.Platform.IDialogComponent + - OpenTK.Platform.IDisplayComponent + - OpenTK.Platform.IIconComponent + - OpenTK.Platform.IJoystickComponent + - OpenTK.Platform.IKeyboardComponent + - OpenTK.Platform.IMouseComponent + - OpenTK.Platform.IOpenGLComponent + - OpenTK.Platform.IPalComponent + - OpenTK.Platform.IShellComponent + - OpenTK.Platform.ISurfaceComponent + - OpenTK.Platform.IVulkanComponent + - OpenTK.Platform.IWindowComponent + - OpenTK.Platform.IconHandle + - OpenTK.Platform.InputLanguageChangedEventArgs + - OpenTK.Platform.JoystickAxis + - OpenTK.Platform.JoystickButton + - OpenTK.Platform.JoystickHandle + - OpenTK.Platform.Key + - OpenTK.Platform.KeyDownEventArgs + - OpenTK.Platform.KeyModifier + - OpenTK.Platform.KeyUpEventArgs + - OpenTK.Platform.MessageBoxButton + - OpenTK.Platform.MessageBoxType + - OpenTK.Platform.MouseButton + - OpenTK.Platform.MouseButtonDownEventArgs + - OpenTK.Platform.MouseButtonFlags + - OpenTK.Platform.MouseButtonUpEventArgs + - OpenTK.Platform.MouseEnterEventArgs + - OpenTK.Platform.MouseHandle + - OpenTK.Platform.MouseMoveEventArgs + - OpenTK.Platform.MouseState + - OpenTK.Platform.OpenDialogOptions + - OpenTK.Platform.OpenGLContextHandle + - OpenTK.Platform.OpenGLGraphicsApiHints + - OpenTK.Platform.OpenGLProfile + - OpenTK.Platform.Pal2BindingsContext + - OpenTK.Platform.PalComponents + - OpenTK.Platform.PalException + - OpenTK.Platform.PalHandle + - OpenTK.Platform.PalNotImplementedException + - OpenTK.Platform.PlatformEventHandler + - OpenTK.Platform.PlatformEventType + - OpenTK.Platform.PlatformException + - OpenTK.Platform.PowerStateChangeEventArgs + - OpenTK.Platform.RawMouseMoveEventArgs + - OpenTK.Platform.SaveDialogOptions + - OpenTK.Platform.Scancode + - OpenTK.Platform.ScrollEventArgs + - OpenTK.Platform.SurfaceHandle + - OpenTK.Platform.SurfaceType + - OpenTK.Platform.SystemCursorType + - OpenTK.Platform.SystemIconType + - OpenTK.Platform.SystemMemoryInfo + - OpenTK.Platform.TextEditingEventArgs + - OpenTK.Platform.TextInputEventArgs + - OpenTK.Platform.ThemeChangeEventArgs + - OpenTK.Platform.ThemeInfo + - OpenTK.Platform.Toolkit + - OpenTK.Platform.ToolkitOptions + - OpenTK.Platform.ToolkitOptions.MacOSOptions + - OpenTK.Platform.ToolkitOptions.WindowsOptions + - OpenTK.Platform.ToolkitOptions.X11Options + - OpenTK.Platform.VideoMode + - OpenTK.Platform.WindowBorderStyle + - OpenTK.Platform.WindowEventArgs + - OpenTK.Platform.WindowEventHandler + - OpenTK.Platform.WindowFramebufferResizeEventArgs + - OpenTK.Platform.WindowHandle + - OpenTK.Platform.WindowMode + - OpenTK.Platform.WindowModeChangeEventArgs + - OpenTK.Platform.WindowMoveEventArgs + - OpenTK.Platform.WindowResizeEventArgs + - OpenTK.Platform.WindowScaleChangeEventArgs + langs: + - csharp + - vb + name: OpenTK.Platform + nameWithType: OpenTK.Platform + fullName: OpenTK.Platform + type: Namespace + assemblies: + - OpenTK.Platform +references: +- uid: OpenTK.Platform.AudioData + commentId: T:OpenTK.Platform.AudioData + parent: OpenTK.Platform + href: OpenTK.Platform.AudioData.html + name: AudioData + nameWithType: AudioData + fullName: OpenTK.Platform.AudioData +- uid: OpenTK.Platform.BatteryInfo + commentId: T:OpenTK.Platform.BatteryInfo + parent: OpenTK.Platform + href: OpenTK.Platform.BatteryInfo.html + name: BatteryInfo + nameWithType: BatteryInfo + fullName: OpenTK.Platform.BatteryInfo +- uid: OpenTK.Platform.Bitmap + commentId: T:OpenTK.Platform.Bitmap + parent: OpenTK.Platform + href: OpenTK.Platform.Bitmap.html + name: Bitmap + nameWithType: Bitmap + fullName: OpenTK.Platform.Bitmap +- uid: OpenTK.Platform.ContextValueSelector + commentId: T:OpenTK.Platform.ContextValueSelector + parent: OpenTK.Platform + href: OpenTK.Platform.ContextValueSelector.html + name: ContextValueSelector + nameWithType: ContextValueSelector + fullName: OpenTK.Platform.ContextValueSelector +- uid: OpenTK.Platform.ContextValues + commentId: T:OpenTK.Platform.ContextValues + parent: OpenTK.Platform + href: OpenTK.Platform.ContextValues.html + name: ContextValues + nameWithType: ContextValues + fullName: OpenTK.Platform.ContextValues +- uid: OpenTK.Platform.ContextPixelFormat + commentId: T:OpenTK.Platform.ContextPixelFormat + parent: OpenTK.Platform + href: OpenTK.Platform.ContextPixelFormat.html + name: ContextPixelFormat + nameWithType: ContextPixelFormat + fullName: OpenTK.Platform.ContextPixelFormat +- uid: OpenTK.Platform.ContextSwapMethod + commentId: T:OpenTK.Platform.ContextSwapMethod + parent: OpenTK.Platform + href: OpenTK.Platform.ContextSwapMethod.html + name: ContextSwapMethod + nameWithType: ContextSwapMethod + fullName: OpenTK.Platform.ContextSwapMethod +- uid: OpenTK.Platform.ContextDepthBits + commentId: T:OpenTK.Platform.ContextDepthBits + parent: OpenTK.Platform + href: OpenTK.Platform.ContextDepthBits.html + name: ContextDepthBits + nameWithType: ContextDepthBits + fullName: OpenTK.Platform.ContextDepthBits +- uid: OpenTK.Platform.ContextStencilBits + commentId: T:OpenTK.Platform.ContextStencilBits + parent: OpenTK.Platform + href: OpenTK.Platform.ContextStencilBits.html + name: ContextStencilBits + nameWithType: ContextStencilBits + fullName: OpenTK.Platform.ContextStencilBits +- uid: OpenTK.Platform.ContextResetNotificationStrategy + commentId: T:OpenTK.Platform.ContextResetNotificationStrategy + parent: OpenTK.Platform + href: OpenTK.Platform.ContextResetNotificationStrategy.html + name: ContextResetNotificationStrategy + nameWithType: ContextResetNotificationStrategy + fullName: OpenTK.Platform.ContextResetNotificationStrategy +- uid: OpenTK.Platform.ContextReleaseBehaviour + commentId: T:OpenTK.Platform.ContextReleaseBehaviour + parent: OpenTK.Platform + href: OpenTK.Platform.ContextReleaseBehaviour.html + name: ContextReleaseBehaviour + nameWithType: ContextReleaseBehaviour + fullName: OpenTK.Platform.ContextReleaseBehaviour +- uid: OpenTK.Platform.DialogFileFilter + commentId: T:OpenTK.Platform.DialogFileFilter + parent: OpenTK.Platform + href: OpenTK.Platform.DialogFileFilter.html + name: DialogFileFilter + nameWithType: DialogFileFilter + fullName: OpenTK.Platform.DialogFileFilter +- uid: OpenTK.Platform.DisplayResolution + commentId: T:OpenTK.Platform.DisplayResolution + href: OpenTK.Platform.DisplayResolution.html + name: DisplayResolution + nameWithType: DisplayResolution + fullName: OpenTK.Platform.DisplayResolution +- uid: OpenTK.Platform.BatteryStatus + commentId: T:OpenTK.Platform.BatteryStatus + parent: OpenTK.Platform + href: OpenTK.Platform.BatteryStatus.html + name: BatteryStatus + nameWithType: BatteryStatus + fullName: OpenTK.Platform.BatteryStatus +- uid: OpenTK.Platform.CursorCaptureMode + commentId: T:OpenTK.Platform.CursorCaptureMode + parent: OpenTK.Platform + href: OpenTK.Platform.CursorCaptureMode.html + name: CursorCaptureMode + nameWithType: CursorCaptureMode + fullName: OpenTK.Platform.CursorCaptureMode +- uid: OpenTK.Platform.ClipboardFormat + commentId: T:OpenTK.Platform.ClipboardFormat + parent: OpenTK.Platform + href: OpenTK.Platform.ClipboardFormat.html + name: ClipboardFormat + nameWithType: ClipboardFormat + fullName: OpenTK.Platform.ClipboardFormat +- uid: OpenTK.Platform.GraphicsApi + commentId: T:OpenTK.Platform.GraphicsApi + parent: OpenTK.Platform + href: OpenTK.Platform.GraphicsApi.html + name: GraphicsApi + nameWithType: GraphicsApi + fullName: OpenTK.Platform.GraphicsApi +- uid: OpenTK.Platform.HitType + commentId: T:OpenTK.Platform.HitType + parent: OpenTK.Platform + href: OpenTK.Platform.HitType.html + name: HitType + nameWithType: HitType + fullName: OpenTK.Platform.HitType +- uid: OpenTK.Platform.JoystickAxis + commentId: T:OpenTK.Platform.JoystickAxis + parent: OpenTK.Platform + href: OpenTK.Platform.JoystickAxis.html + name: JoystickAxis + nameWithType: JoystickAxis + fullName: OpenTK.Platform.JoystickAxis +- uid: OpenTK.Platform.JoystickButton + commentId: T:OpenTK.Platform.JoystickButton + parent: OpenTK.Platform + href: OpenTK.Platform.JoystickButton.html + name: JoystickButton + nameWithType: JoystickButton + fullName: OpenTK.Platform.JoystickButton +- uid: OpenTK.Platform.Key + commentId: T:OpenTK.Platform.Key + parent: OpenTK.Platform + href: OpenTK.Platform.Key.html + name: Key + nameWithType: Key + fullName: OpenTK.Platform.Key +- uid: OpenTK.Platform.KeyModifier + commentId: T:OpenTK.Platform.KeyModifier + parent: OpenTK.Platform + href: OpenTK.Platform.KeyModifier.html + name: KeyModifier + nameWithType: KeyModifier + fullName: OpenTK.Platform.KeyModifier +- uid: OpenTK.Platform.MessageBoxButton + commentId: T:OpenTK.Platform.MessageBoxButton + parent: OpenTK.Platform + href: OpenTK.Platform.MessageBoxButton.html + name: MessageBoxButton + nameWithType: MessageBoxButton + fullName: OpenTK.Platform.MessageBoxButton +- uid: OpenTK.Platform.MessageBoxType + commentId: T:OpenTK.Platform.MessageBoxType + parent: OpenTK.Platform + href: OpenTK.Platform.MessageBoxType.html + name: MessageBoxType + nameWithType: MessageBoxType + fullName: OpenTK.Platform.MessageBoxType +- uid: OpenTK.Platform.MouseButton + commentId: T:OpenTK.Platform.MouseButton + parent: OpenTK.Platform + href: OpenTK.Platform.MouseButton.html + name: MouseButton + nameWithType: MouseButton + fullName: OpenTK.Platform.MouseButton +- uid: OpenTK.Platform.MouseButtonFlags + commentId: T:OpenTK.Platform.MouseButtonFlags + parent: OpenTK.Platform + href: OpenTK.Platform.MouseButtonFlags.html + name: MouseButtonFlags + nameWithType: MouseButtonFlags + fullName: OpenTK.Platform.MouseButtonFlags +- uid: OpenTK.Platform.OpenDialogOptions + commentId: T:OpenTK.Platform.OpenDialogOptions + parent: OpenTK.Platform + href: OpenTK.Platform.OpenDialogOptions.html + name: OpenDialogOptions + nameWithType: OpenDialogOptions + fullName: OpenTK.Platform.OpenDialogOptions +- uid: OpenTK.Platform.OpenGLProfile + commentId: T:OpenTK.Platform.OpenGLProfile + parent: OpenTK.Platform + href: OpenTK.Platform.OpenGLProfile.html + name: OpenGLProfile + nameWithType: OpenGLProfile + fullName: OpenTK.Platform.OpenGLProfile +- uid: OpenTK.Platform.PalComponents + commentId: T:OpenTK.Platform.PalComponents + parent: OpenTK.Platform + href: OpenTK.Platform.PalComponents.html + name: PalComponents + nameWithType: PalComponents + fullName: OpenTK.Platform.PalComponents +- uid: OpenTK.Platform.PlatformEventType + commentId: T:OpenTK.Platform.PlatformEventType + parent: OpenTK.Platform + href: OpenTK.Platform.PlatformEventType.html + name: PlatformEventType + nameWithType: PlatformEventType + fullName: OpenTK.Platform.PlatformEventType +- uid: OpenTK.Platform.SaveDialogOptions + commentId: T:OpenTK.Platform.SaveDialogOptions + parent: OpenTK.Platform + href: OpenTK.Platform.SaveDialogOptions.html + name: SaveDialogOptions + nameWithType: SaveDialogOptions + fullName: OpenTK.Platform.SaveDialogOptions +- uid: OpenTK.Platform.Scancode + commentId: T:OpenTK.Platform.Scancode + parent: OpenTK.Platform + href: OpenTK.Platform.Scancode.html + name: Scancode + nameWithType: Scancode + fullName: OpenTK.Platform.Scancode +- uid: OpenTK.Platform.SurfaceType + commentId: T:OpenTK.Platform.SurfaceType + parent: OpenTK.Platform + href: OpenTK.Platform.SurfaceType.html + name: SurfaceType + nameWithType: SurfaceType + fullName: OpenTK.Platform.SurfaceType +- uid: OpenTK.Platform.SystemCursorType + commentId: T:OpenTK.Platform.SystemCursorType + parent: OpenTK.Platform + href: OpenTK.Platform.SystemCursorType.html + name: SystemCursorType + nameWithType: SystemCursorType + fullName: OpenTK.Platform.SystemCursorType +- uid: OpenTK.Platform.SystemIconType + commentId: T:OpenTK.Platform.SystemIconType + parent: OpenTK.Platform + href: OpenTK.Platform.SystemIconType.html + name: SystemIconType + nameWithType: SystemIconType + fullName: OpenTK.Platform.SystemIconType +- uid: OpenTK.Platform.AppTheme + commentId: T:OpenTK.Platform.AppTheme + parent: OpenTK.Platform + href: OpenTK.Platform.AppTheme.html + name: AppTheme + nameWithType: AppTheme + fullName: OpenTK.Platform.AppTheme +- uid: OpenTK.Platform.ThemeInfo + commentId: T:OpenTK.Platform.ThemeInfo + parent: OpenTK.Platform + href: OpenTK.Platform.ThemeInfo.html + name: ThemeInfo + nameWithType: ThemeInfo + fullName: OpenTK.Platform.ThemeInfo +- uid: OpenTK.Platform.WindowBorderStyle + commentId: T:OpenTK.Platform.WindowBorderStyle + parent: OpenTK.Platform + href: OpenTK.Platform.WindowBorderStyle.html + name: WindowBorderStyle + nameWithType: WindowBorderStyle + fullName: OpenTK.Platform.WindowBorderStyle +- uid: OpenTK.Platform.WindowMode + commentId: T:OpenTK.Platform.WindowMode + parent: OpenTK.Platform + href: OpenTK.Platform.WindowMode.html + name: WindowMode + nameWithType: WindowMode + fullName: OpenTK.Platform.WindowMode +- uid: OpenTK.Platform.PlatformEventHandler + commentId: T:OpenTK.Platform.PlatformEventHandler + parent: OpenTK.Platform + href: OpenTK.Platform.PlatformEventHandler.html + name: PlatformEventHandler + nameWithType: PlatformEventHandler + fullName: OpenTK.Platform.PlatformEventHandler +- uid: OpenTK.Platform.EventQueue + commentId: T:OpenTK.Platform.EventQueue + parent: OpenTK.Platform + href: OpenTK.Platform.EventQueue.html + name: EventQueue + nameWithType: EventQueue + fullName: OpenTK.Platform.EventQueue +- uid: OpenTK.Platform.GamepadBatteryType + commentId: T:OpenTK.Platform.GamepadBatteryType + parent: OpenTK.Platform + href: OpenTK.Platform.GamepadBatteryType.html + name: GamepadBatteryType + nameWithType: GamepadBatteryType + fullName: OpenTK.Platform.GamepadBatteryType +- uid: OpenTK.Platform.GamepadBatteryInfo + commentId: T:OpenTK.Platform.GamepadBatteryInfo + parent: OpenTK.Platform + href: OpenTK.Platform.GamepadBatteryInfo.html + name: GamepadBatteryInfo + nameWithType: GamepadBatteryInfo + fullName: OpenTK.Platform.GamepadBatteryInfo +- uid: OpenTK.Platform.GraphicsApiHints + commentId: T:OpenTK.Platform.GraphicsApiHints + parent: OpenTK.Platform + href: OpenTK.Platform.GraphicsApiHints.html + name: GraphicsApiHints + nameWithType: GraphicsApiHints + fullName: OpenTK.Platform.GraphicsApiHints +- uid: OpenTK.Platform.CursorHandle + commentId: T:OpenTK.Platform.CursorHandle + parent: OpenTK.Platform + href: OpenTK.Platform.CursorHandle.html + name: CursorHandle + nameWithType: CursorHandle + fullName: OpenTK.Platform.CursorHandle +- uid: OpenTK.Platform.DisplayHandle + commentId: T:OpenTK.Platform.DisplayHandle + parent: OpenTK.Platform + href: OpenTK.Platform.DisplayHandle.html + name: DisplayHandle + nameWithType: DisplayHandle + fullName: OpenTK.Platform.DisplayHandle +- uid: OpenTK.Platform.IconHandle + commentId: T:OpenTK.Platform.IconHandle + parent: OpenTK.Platform + href: OpenTK.Platform.IconHandle.html + name: IconHandle + nameWithType: IconHandle + fullName: OpenTK.Platform.IconHandle +- uid: OpenTK.Platform.JoystickHandle + commentId: T:OpenTK.Platform.JoystickHandle + parent: OpenTK.Platform + href: OpenTK.Platform.JoystickHandle.html + name: JoystickHandle + nameWithType: JoystickHandle + fullName: OpenTK.Platform.JoystickHandle +- uid: OpenTK.Platform.MouseHandle + commentId: T:OpenTK.Platform.MouseHandle + href: OpenTK.Platform.MouseHandle.html + name: MouseHandle + nameWithType: MouseHandle + fullName: OpenTK.Platform.MouseHandle +- uid: OpenTK.Platform.OpenGLContextHandle + commentId: T:OpenTK.Platform.OpenGLContextHandle + parent: OpenTK.Platform + href: OpenTK.Platform.OpenGLContextHandle.html + name: OpenGLContextHandle + nameWithType: OpenGLContextHandle + fullName: OpenTK.Platform.OpenGLContextHandle +- uid: OpenTK.Platform.PalHandle + commentId: T:OpenTK.Platform.PalHandle + parent: OpenTK.Platform + href: OpenTK.Platform.PalHandle.html + name: PalHandle + nameWithType: PalHandle + fullName: OpenTK.Platform.PalHandle +- uid: OpenTK.Platform.SurfaceHandle + commentId: T:OpenTK.Platform.SurfaceHandle + parent: OpenTK.Platform + href: OpenTK.Platform.SurfaceHandle.html + name: SurfaceHandle + nameWithType: SurfaceHandle + fullName: OpenTK.Platform.SurfaceHandle +- uid: OpenTK.Platform.WindowHandle + commentId: T:OpenTK.Platform.WindowHandle + parent: OpenTK.Platform + href: OpenTK.Platform.WindowHandle.html + name: WindowHandle + nameWithType: WindowHandle + fullName: OpenTK.Platform.WindowHandle +- uid: OpenTK.Platform.IClipboardComponent + commentId: T:OpenTK.Platform.IClipboardComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IClipboardComponent.html + name: IClipboardComponent + nameWithType: IClipboardComponent + fullName: OpenTK.Platform.IClipboardComponent +- uid: OpenTK.Platform.ICursorComponent + commentId: T:OpenTK.Platform.ICursorComponent + parent: OpenTK.Platform + href: OpenTK.Platform.ICursorComponent.html + name: ICursorComponent + nameWithType: ICursorComponent + fullName: OpenTK.Platform.ICursorComponent +- uid: OpenTK.Platform.IDialogComponent + commentId: T:OpenTK.Platform.IDialogComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IDialogComponent.html + name: IDialogComponent + nameWithType: IDialogComponent + fullName: OpenTK.Platform.IDialogComponent +- uid: OpenTK.Platform.IDisplayComponent + commentId: T:OpenTK.Platform.IDisplayComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IDisplayComponent.html + name: IDisplayComponent + nameWithType: IDisplayComponent + fullName: OpenTK.Platform.IDisplayComponent +- uid: OpenTK.Platform.IIconComponent + commentId: T:OpenTK.Platform.IIconComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IIconComponent.html + name: IIconComponent + nameWithType: IIconComponent + fullName: OpenTK.Platform.IIconComponent +- uid: OpenTK.Platform.IJoystickComponent + commentId: T:OpenTK.Platform.IJoystickComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IJoystickComponent.html + name: IJoystickComponent + nameWithType: IJoystickComponent + fullName: OpenTK.Platform.IJoystickComponent +- uid: OpenTK.Platform.IKeyboardComponent + commentId: T:OpenTK.Platform.IKeyboardComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IKeyboardComponent.html + name: IKeyboardComponent + nameWithType: IKeyboardComponent + fullName: OpenTK.Platform.IKeyboardComponent +- uid: OpenTK.Platform.MouseState + commentId: T:OpenTK.Platform.MouseState + parent: OpenTK.Platform + href: OpenTK.Platform.MouseState.html + name: MouseState + nameWithType: MouseState + fullName: OpenTK.Platform.MouseState +- uid: OpenTK.Platform.IMouseComponent + commentId: T:OpenTK.Platform.IMouseComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IMouseComponent.html + name: IMouseComponent + nameWithType: IMouseComponent + fullName: OpenTK.Platform.IMouseComponent +- uid: OpenTK.Platform.IOpenGLComponent + commentId: T:OpenTK.Platform.IOpenGLComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IOpenGLComponent.html + name: IOpenGLComponent + nameWithType: IOpenGLComponent + fullName: OpenTK.Platform.IOpenGLComponent +- uid: OpenTK.Platform.IPalComponent + commentId: T:OpenTK.Platform.IPalComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IPalComponent.html + name: IPalComponent + nameWithType: IPalComponent + fullName: OpenTK.Platform.IPalComponent +- uid: OpenTK.Platform.IShellComponent + commentId: T:OpenTK.Platform.IShellComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IShellComponent.html + name: IShellComponent + nameWithType: IShellComponent + fullName: OpenTK.Platform.IShellComponent +- uid: OpenTK.Platform.ISurfaceComponent + commentId: T:OpenTK.Platform.ISurfaceComponent + parent: OpenTK.Platform + href: OpenTK.Platform.ISurfaceComponent.html + name: ISurfaceComponent + nameWithType: ISurfaceComponent + fullName: OpenTK.Platform.ISurfaceComponent +- uid: OpenTK.Platform.IVulkanComponent + commentId: T:OpenTK.Platform.IVulkanComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IVulkanComponent.html + name: IVulkanComponent + nameWithType: IVulkanComponent + fullName: OpenTK.Platform.IVulkanComponent +- uid: OpenTK.Platform.HitTest + commentId: T:OpenTK.Platform.HitTest + parent: OpenTK.Platform + href: OpenTK.Platform.HitTest.html + name: HitTest + nameWithType: HitTest + fullName: OpenTK.Platform.HitTest +- uid: OpenTK.Platform.IWindowComponent + commentId: T:OpenTK.Platform.IWindowComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IWindowComponent.html + name: IWindowComponent + nameWithType: IWindowComponent + fullName: OpenTK.Platform.IWindowComponent +- uid: OpenTK.Platform.OpenGLGraphicsApiHints + commentId: T:OpenTK.Platform.OpenGLGraphicsApiHints + parent: OpenTK.Platform + href: OpenTK.Platform.OpenGLGraphicsApiHints.html + name: OpenGLGraphicsApiHints + nameWithType: OpenGLGraphicsApiHints + fullName: OpenTK.Platform.OpenGLGraphicsApiHints +- uid: OpenTK.Platform.Pal2BindingsContext + commentId: T:OpenTK.Platform.Pal2BindingsContext + href: OpenTK.Platform.Pal2BindingsContext.html + name: Pal2BindingsContext + nameWithType: Pal2BindingsContext + fullName: OpenTK.Platform.Pal2BindingsContext +- uid: OpenTK.Platform.PalException + commentId: T:OpenTK.Platform.PalException + parent: OpenTK.Platform + href: OpenTK.Platform.PalException.html + name: PalException + nameWithType: PalException + fullName: OpenTK.Platform.PalException +- uid: OpenTK.Platform.PalNotImplementedException + commentId: T:OpenTK.Platform.PalNotImplementedException + href: OpenTK.Platform.PalNotImplementedException.html + name: PalNotImplementedException + nameWithType: PalNotImplementedException + fullName: OpenTK.Platform.PalNotImplementedException +- uid: OpenTK.Platform.PlatformException + commentId: T:OpenTK.Platform.PlatformException + href: OpenTK.Platform.PlatformException.html + name: PlatformException + nameWithType: PlatformException + fullName: OpenTK.Platform.PlatformException +- uid: OpenTK.Platform.SystemMemoryInfo + commentId: T:OpenTK.Platform.SystemMemoryInfo + parent: OpenTK.Platform + href: OpenTK.Platform.SystemMemoryInfo.html + name: SystemMemoryInfo + nameWithType: SystemMemoryInfo + fullName: OpenTK.Platform.SystemMemoryInfo +- uid: OpenTK.Platform.Toolkit + commentId: T:OpenTK.Platform.Toolkit + href: OpenTK.Platform.Toolkit.html + name: Toolkit + nameWithType: Toolkit + fullName: OpenTK.Platform.Toolkit +- uid: OpenTK.Platform.ToolkitOptions + commentId: T:OpenTK.Platform.ToolkitOptions + parent: OpenTK.Platform + href: OpenTK.Platform.ToolkitOptions.html + name: ToolkitOptions + nameWithType: ToolkitOptions + fullName: OpenTK.Platform.ToolkitOptions +- uid: OpenTK.Platform.ToolkitOptions.WindowsOptions + commentId: T:OpenTK.Platform.ToolkitOptions.WindowsOptions + parent: OpenTK.Platform + href: OpenTK.Platform.ToolkitOptions.html + name: ToolkitOptions.WindowsOptions + nameWithType: ToolkitOptions.WindowsOptions + fullName: OpenTK.Platform.ToolkitOptions.WindowsOptions + spec.csharp: + - uid: OpenTK.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Platform.ToolkitOptions.html + - name: . + - uid: OpenTK.Platform.ToolkitOptions.WindowsOptions + name: WindowsOptions + href: OpenTK.Platform.ToolkitOptions.WindowsOptions.html + spec.vb: + - uid: OpenTK.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Platform.ToolkitOptions.html + - name: . + - uid: OpenTK.Platform.ToolkitOptions.WindowsOptions + name: WindowsOptions + href: OpenTK.Platform.ToolkitOptions.WindowsOptions.html +- uid: OpenTK.Platform.ToolkitOptions.X11Options + commentId: T:OpenTK.Platform.ToolkitOptions.X11Options + parent: OpenTK.Platform + href: OpenTK.Platform.ToolkitOptions.html + name: ToolkitOptions.X11Options + nameWithType: ToolkitOptions.X11Options + fullName: OpenTK.Platform.ToolkitOptions.X11Options + spec.csharp: + - uid: OpenTK.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Platform.ToolkitOptions.html + - name: . + - uid: OpenTK.Platform.ToolkitOptions.X11Options + name: X11Options + href: OpenTK.Platform.ToolkitOptions.X11Options.html + spec.vb: + - uid: OpenTK.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Platform.ToolkitOptions.html + - name: . + - uid: OpenTK.Platform.ToolkitOptions.X11Options + name: X11Options + href: OpenTK.Platform.ToolkitOptions.X11Options.html +- uid: OpenTK.Platform.ToolkitOptions.MacOSOptions + commentId: T:OpenTK.Platform.ToolkitOptions.MacOSOptions + parent: OpenTK.Platform + href: OpenTK.Platform.ToolkitOptions.html + name: ToolkitOptions.MacOSOptions + nameWithType: ToolkitOptions.MacOSOptions + fullName: OpenTK.Platform.ToolkitOptions.MacOSOptions + spec.csharp: + - uid: OpenTK.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Platform.ToolkitOptions.html + - name: . + - uid: OpenTK.Platform.ToolkitOptions.MacOSOptions + name: MacOSOptions + href: OpenTK.Platform.ToolkitOptions.MacOSOptions.html + spec.vb: + - uid: OpenTK.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Platform.ToolkitOptions.html + - name: . + - uid: OpenTK.Platform.ToolkitOptions.MacOSOptions + name: MacOSOptions + href: OpenTK.Platform.ToolkitOptions.MacOSOptions.html +- uid: OpenTK.Platform.VideoMode + commentId: T:OpenTK.Platform.VideoMode + parent: OpenTK.Platform + href: OpenTK.Platform.VideoMode.html + name: VideoMode + nameWithType: VideoMode + fullName: OpenTK.Platform.VideoMode +- uid: OpenTK.Platform.WindowEventArgs + commentId: T:OpenTK.Platform.WindowEventArgs + parent: OpenTK.Platform + href: OpenTK.Platform.WindowEventArgs.html + name: WindowEventArgs + nameWithType: WindowEventArgs + fullName: OpenTK.Platform.WindowEventArgs +- uid: OpenTK.Platform.FocusEventArgs + commentId: T:OpenTK.Platform.FocusEventArgs + href: OpenTK.Platform.FocusEventArgs.html + name: FocusEventArgs + nameWithType: FocusEventArgs + fullName: OpenTK.Platform.FocusEventArgs +- uid: OpenTK.Platform.WindowMoveEventArgs + commentId: T:OpenTK.Platform.WindowMoveEventArgs + href: OpenTK.Platform.WindowMoveEventArgs.html + name: WindowMoveEventArgs + nameWithType: WindowMoveEventArgs + fullName: OpenTK.Platform.WindowMoveEventArgs +- uid: OpenTK.Platform.WindowResizeEventArgs + commentId: T:OpenTK.Platform.WindowResizeEventArgs + href: OpenTK.Platform.WindowResizeEventArgs.html + name: WindowResizeEventArgs + nameWithType: WindowResizeEventArgs + fullName: OpenTK.Platform.WindowResizeEventArgs +- uid: OpenTK.Platform.WindowFramebufferResizeEventArgs + commentId: T:OpenTK.Platform.WindowFramebufferResizeEventArgs + href: OpenTK.Platform.WindowFramebufferResizeEventArgs.html + name: WindowFramebufferResizeEventArgs + nameWithType: WindowFramebufferResizeEventArgs + fullName: OpenTK.Platform.WindowFramebufferResizeEventArgs +- uid: OpenTK.Platform.WindowModeChangeEventArgs + commentId: T:OpenTK.Platform.WindowModeChangeEventArgs + href: OpenTK.Platform.WindowModeChangeEventArgs.html + name: WindowModeChangeEventArgs + nameWithType: WindowModeChangeEventArgs + fullName: OpenTK.Platform.WindowModeChangeEventArgs +- uid: OpenTK.Platform.WindowScaleChangeEventArgs + commentId: T:OpenTK.Platform.WindowScaleChangeEventArgs + href: OpenTK.Platform.WindowScaleChangeEventArgs.html + name: WindowScaleChangeEventArgs + nameWithType: WindowScaleChangeEventArgs + fullName: OpenTK.Platform.WindowScaleChangeEventArgs +- uid: OpenTK.Platform.KeyDownEventArgs + commentId: T:OpenTK.Platform.KeyDownEventArgs + href: OpenTK.Platform.KeyDownEventArgs.html + name: KeyDownEventArgs + nameWithType: KeyDownEventArgs + fullName: OpenTK.Platform.KeyDownEventArgs +- uid: OpenTK.Platform.KeyUpEventArgs + commentId: T:OpenTK.Platform.KeyUpEventArgs + href: OpenTK.Platform.KeyUpEventArgs.html + name: KeyUpEventArgs + nameWithType: KeyUpEventArgs + fullName: OpenTK.Platform.KeyUpEventArgs +- uid: OpenTK.Platform.TextInputEventArgs + commentId: T:OpenTK.Platform.TextInputEventArgs + href: OpenTK.Platform.TextInputEventArgs.html + name: TextInputEventArgs + nameWithType: TextInputEventArgs + fullName: OpenTK.Platform.TextInputEventArgs +- uid: OpenTK.Platform.TextEditingEventArgs + commentId: T:OpenTK.Platform.TextEditingEventArgs + href: OpenTK.Platform.TextEditingEventArgs.html + name: TextEditingEventArgs + nameWithType: TextEditingEventArgs + fullName: OpenTK.Platform.TextEditingEventArgs +- uid: OpenTK.Platform.InputLanguageChangedEventArgs + commentId: T:OpenTK.Platform.InputLanguageChangedEventArgs + href: OpenTK.Platform.InputLanguageChangedEventArgs.html + name: InputLanguageChangedEventArgs + nameWithType: InputLanguageChangedEventArgs + fullName: OpenTK.Platform.InputLanguageChangedEventArgs +- uid: OpenTK.Platform.MouseEnterEventArgs + commentId: T:OpenTK.Platform.MouseEnterEventArgs + href: OpenTK.Platform.MouseEnterEventArgs.html + name: MouseEnterEventArgs + nameWithType: MouseEnterEventArgs + fullName: OpenTK.Platform.MouseEnterEventArgs +- uid: OpenTK.Platform.MouseMoveEventArgs + commentId: T:OpenTK.Platform.MouseMoveEventArgs + href: OpenTK.Platform.MouseMoveEventArgs.html + name: MouseMoveEventArgs + nameWithType: MouseMoveEventArgs + fullName: OpenTK.Platform.MouseMoveEventArgs +- uid: OpenTK.Platform.RawMouseMoveEventArgs + commentId: T:OpenTK.Platform.RawMouseMoveEventArgs + href: OpenTK.Platform.RawMouseMoveEventArgs.html + name: RawMouseMoveEventArgs + nameWithType: RawMouseMoveEventArgs + fullName: OpenTK.Platform.RawMouseMoveEventArgs +- uid: OpenTK.Platform.MouseButtonDownEventArgs + commentId: T:OpenTK.Platform.MouseButtonDownEventArgs + href: OpenTK.Platform.MouseButtonDownEventArgs.html + name: MouseButtonDownEventArgs + nameWithType: MouseButtonDownEventArgs + fullName: OpenTK.Platform.MouseButtonDownEventArgs +- uid: OpenTK.Platform.MouseButtonUpEventArgs + commentId: T:OpenTK.Platform.MouseButtonUpEventArgs + href: OpenTK.Platform.MouseButtonUpEventArgs.html + name: MouseButtonUpEventArgs + nameWithType: MouseButtonUpEventArgs + fullName: OpenTK.Platform.MouseButtonUpEventArgs +- uid: OpenTK.Platform.ScrollEventArgs + commentId: T:OpenTK.Platform.ScrollEventArgs + href: OpenTK.Platform.ScrollEventArgs.html + name: ScrollEventArgs + nameWithType: ScrollEventArgs + fullName: OpenTK.Platform.ScrollEventArgs +- uid: OpenTK.Platform.CloseEventArgs + commentId: T:OpenTK.Platform.CloseEventArgs + href: OpenTK.Platform.CloseEventArgs.html + name: CloseEventArgs + nameWithType: CloseEventArgs + fullName: OpenTK.Platform.CloseEventArgs +- uid: OpenTK.Platform.FileDropEventArgs + commentId: T:OpenTK.Platform.FileDropEventArgs + href: OpenTK.Platform.FileDropEventArgs.html + name: FileDropEventArgs + nameWithType: FileDropEventArgs + fullName: OpenTK.Platform.FileDropEventArgs +- uid: OpenTK.Platform.ClipboardUpdateEventArgs + commentId: T:OpenTK.Platform.ClipboardUpdateEventArgs + href: OpenTK.Platform.ClipboardUpdateEventArgs.html + name: ClipboardUpdateEventArgs + nameWithType: ClipboardUpdateEventArgs + fullName: OpenTK.Platform.ClipboardUpdateEventArgs +- uid: OpenTK.Platform.ThemeChangeEventArgs + commentId: T:OpenTK.Platform.ThemeChangeEventArgs + href: OpenTK.Platform.ThemeChangeEventArgs.html + name: ThemeChangeEventArgs + nameWithType: ThemeChangeEventArgs + fullName: OpenTK.Platform.ThemeChangeEventArgs +- uid: OpenTK.Platform.DisplayConnectionChangedEventArgs + commentId: T:OpenTK.Platform.DisplayConnectionChangedEventArgs + href: OpenTK.Platform.DisplayConnectionChangedEventArgs.html + name: DisplayConnectionChangedEventArgs + nameWithType: DisplayConnectionChangedEventArgs + fullName: OpenTK.Platform.DisplayConnectionChangedEventArgs +- uid: OpenTK.Platform.PowerStateChangeEventArgs + commentId: T:OpenTK.Platform.PowerStateChangeEventArgs + href: OpenTK.Platform.PowerStateChangeEventArgs.html + name: PowerStateChangeEventArgs + nameWithType: PowerStateChangeEventArgs + fullName: OpenTK.Platform.PowerStateChangeEventArgs +- uid: OpenTK.Platform.WindowEventHandler + commentId: T:OpenTK.Platform.WindowEventHandler + href: OpenTK.Platform.WindowEventHandler.html + name: WindowEventHandler + nameWithType: WindowEventHandler + fullName: OpenTK.Platform.WindowEventHandler +- uid: OpenTK.Platform + commentId: N:OpenTK.Platform + href: OpenTK.html + name: OpenTK.Platform + nameWithType: OpenTK.Platform + fullName: OpenTK.Platform + spec.csharp: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Platform + name: Platform + href: OpenTK.Platform.html + spec.vb: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Platform + name: Platform + href: OpenTK.Platform.html diff --git a/api/OpenTK.Windowing.Common.ContextAPI.yml b/api/OpenTK.Windowing.Common.ContextAPI.yml index ecf84450..6a46d5d3 100644 --- a/api/OpenTK.Windowing.Common.ContextAPI.yml +++ b/api/OpenTK.Windowing.Common.ContextAPI.yml @@ -16,12 +16,8 @@ items: fullName: OpenTK.Windowing.Common.ContextAPI type: Enum source: - remote: - path: src/OpenTK.Windowing.Common/Enums/ContextAPI.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ContextAPI - path: opentk/src/OpenTK.Windowing.Common/Enums/ContextAPI.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Common\Enums\ContextAPI.cs startLine: 14 assemblies: - OpenTK.Windowing.Common @@ -43,12 +39,8 @@ items: fullName: OpenTK.Windowing.Common.ContextAPI.NoAPI type: Field source: - remote: - path: src/OpenTK.Windowing.Common/Enums/ContextAPI.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: NoAPI - path: opentk/src/OpenTK.Windowing.Common/Enums/ContextAPI.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Common\Enums\ContextAPI.cs startLine: 24 assemblies: - OpenTK.Windowing.Common @@ -77,12 +69,8 @@ items: fullName: OpenTK.Windowing.Common.ContextAPI.OpenGLES type: Field source: - remote: - path: src/OpenTK.Windowing.Common/Enums/ContextAPI.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: OpenGLES - path: opentk/src/OpenTK.Windowing.Common/Enums/ContextAPI.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Common\Enums\ContextAPI.cs startLine: 29 assemblies: - OpenTK.Windowing.Common @@ -105,12 +93,8 @@ items: fullName: OpenTK.Windowing.Common.ContextAPI.OpenGL type: Field source: - remote: - path: src/OpenTK.Windowing.Common/Enums/ContextAPI.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: OpenGL - path: opentk/src/OpenTK.Windowing.Common/Enums/ContextAPI.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Common\Enums\ContextAPI.cs startLine: 34 assemblies: - OpenTK.Windowing.Common diff --git a/api/OpenTK.Windowing.Common.ContextFlags.yml b/api/OpenTK.Windowing.Common.ContextFlags.yml index 740514fd..27e01b33 100644 --- a/api/OpenTK.Windowing.Common.ContextFlags.yml +++ b/api/OpenTK.Windowing.Common.ContextFlags.yml @@ -17,12 +17,8 @@ items: fullName: OpenTK.Windowing.Common.ContextFlags type: Enum source: - remote: - path: src/OpenTK.Windowing.Common/Enums/ContextFlags.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ContextFlags - path: opentk/src/OpenTK.Windowing.Common/Enums/ContextFlags.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Common\Enums\ContextFlags.cs startLine: 16 assemblies: - OpenTK.Windowing.Common @@ -54,12 +50,8 @@ items: fullName: OpenTK.Windowing.Common.ContextFlags.Default type: Field source: - remote: - path: src/OpenTK.Windowing.Common/Enums/ContextFlags.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Default - path: opentk/src/OpenTK.Windowing.Common/Enums/ContextFlags.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Common\Enums\ContextFlags.cs startLine: 22 assemblies: - OpenTK.Windowing.Common @@ -82,12 +74,8 @@ items: fullName: OpenTK.Windowing.Common.ContextFlags.Debug type: Field source: - remote: - path: src/OpenTK.Windowing.Common/Enums/ContextFlags.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Debug - path: opentk/src/OpenTK.Windowing.Common/Enums/ContextFlags.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Common\Enums\ContextFlags.cs startLine: 28 assemblies: - OpenTK.Windowing.Common @@ -113,12 +101,8 @@ items: fullName: OpenTK.Windowing.Common.ContextFlags.ForwardCompatible type: Field source: - remote: - path: src/OpenTK.Windowing.Common/Enums/ContextFlags.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ForwardCompatible - path: opentk/src/OpenTK.Windowing.Common/Enums/ContextFlags.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Common\Enums\ContextFlags.cs startLine: 35 assemblies: - OpenTK.Windowing.Common @@ -145,12 +129,8 @@ items: fullName: OpenTK.Windowing.Common.ContextFlags.Offscreen type: Field source: - remote: - path: src/OpenTK.Windowing.Common/Enums/ContextFlags.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Offscreen - path: opentk/src/OpenTK.Windowing.Common/Enums/ContextFlags.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Common\Enums\ContextFlags.cs startLine: 40 assemblies: - OpenTK.Windowing.Common diff --git a/api/OpenTK.Windowing.Common.ContextProfile.yml b/api/OpenTK.Windowing.Common.ContextProfile.yml index 436b488a..f8e654ac 100644 --- a/api/OpenTK.Windowing.Common.ContextProfile.yml +++ b/api/OpenTK.Windowing.Common.ContextProfile.yml @@ -16,12 +16,8 @@ items: fullName: OpenTK.Windowing.Common.ContextProfile type: Enum source: - remote: - path: src/OpenTK.Windowing.Common/Enums/ContextProfile.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ContextProfile - path: opentk/src/OpenTK.Windowing.Common/Enums/ContextProfile.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Common\Enums\ContextProfile.cs startLine: 15 assemblies: - OpenTK.Windowing.Common @@ -46,12 +42,8 @@ items: fullName: OpenTK.Windowing.Common.ContextProfile.Any type: Field source: - remote: - path: src/OpenTK.Windowing.Common/Enums/ContextProfile.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Any - path: opentk/src/OpenTK.Windowing.Common/Enums/ContextProfile.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Common\Enums\ContextProfile.cs startLine: 20 assemblies: - OpenTK.Windowing.Common @@ -74,12 +66,8 @@ items: fullName: OpenTK.Windowing.Common.ContextProfile.Compatability type: Field source: - remote: - path: src/OpenTK.Windowing.Common/Enums/ContextProfile.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Compatability - path: opentk/src/OpenTK.Windowing.Common/Enums/ContextProfile.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Common\Enums\ContextProfile.cs startLine: 25 assemblies: - OpenTK.Windowing.Common @@ -102,12 +90,8 @@ items: fullName: OpenTK.Windowing.Common.ContextProfile.Core type: Field source: - remote: - path: src/OpenTK.Windowing.Common/Enums/ContextProfile.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Core - path: opentk/src/OpenTK.Windowing.Common/Enums/ContextProfile.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Common\Enums\ContextProfile.cs startLine: 30 assemblies: - OpenTK.Windowing.Common diff --git a/api/OpenTK.Windowing.Common.CursorState.yml b/api/OpenTK.Windowing.Common.CursorState.yml index c367a976..787b9efe 100644 --- a/api/OpenTK.Windowing.Common.CursorState.yml +++ b/api/OpenTK.Windowing.Common.CursorState.yml @@ -16,12 +16,8 @@ items: fullName: OpenTK.Windowing.Common.CursorState type: Enum source: - remote: - path: src/OpenTK.Windowing.Common/Enums/CursorState.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CursorState - path: opentk/src/OpenTK.Windowing.Common/Enums/CursorState.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Common\Enums\CursorState.cs startLine: 9 assemblies: - OpenTK.Windowing.Common @@ -43,12 +39,8 @@ items: fullName: OpenTK.Windowing.Common.CursorState.Normal type: Field source: - remote: - path: src/OpenTK.Windowing.Common/Enums/CursorState.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Normal - path: opentk/src/OpenTK.Windowing.Common/Enums/CursorState.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Common\Enums\CursorState.cs startLine: 14 assemblies: - OpenTK.Windowing.Common @@ -71,12 +63,8 @@ items: fullName: OpenTK.Windowing.Common.CursorState.Hidden type: Field source: - remote: - path: src/OpenTK.Windowing.Common/Enums/CursorState.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Hidden - path: opentk/src/OpenTK.Windowing.Common/Enums/CursorState.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Common\Enums\CursorState.cs startLine: 19 assemblies: - OpenTK.Windowing.Common @@ -99,12 +87,8 @@ items: fullName: OpenTK.Windowing.Common.CursorState.Grabbed type: Field source: - remote: - path: src/OpenTK.Windowing.Common/Enums/CursorState.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Grabbed - path: opentk/src/OpenTK.Windowing.Common/Enums/CursorState.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Common\Enums\CursorState.cs startLine: 24 assemblies: - OpenTK.Windowing.Common diff --git a/api/OpenTK.Windowing.Common.FileDropEventArgs.yml b/api/OpenTK.Windowing.Common.FileDropEventArgs.yml index 95154583..021aa3da 100644 --- a/api/OpenTK.Windowing.Common.FileDropEventArgs.yml +++ b/api/OpenTK.Windowing.Common.FileDropEventArgs.yml @@ -15,12 +15,8 @@ items: fullName: OpenTK.Windowing.Common.FileDropEventArgs type: Struct source: - remote: - path: src/OpenTK.Windowing.Common/Events/FileDropEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: FileDropEventArgs - path: opentk/src/OpenTK.Windowing.Common/Events/FileDropEventArgs.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Common\Events\FileDropEventArgs.cs startLine: 16 assemblies: - OpenTK.Windowing.Common @@ -49,12 +45,8 @@ items: fullName: OpenTK.Windowing.Common.FileDropEventArgs.FileDropEventArgs(string[]) type: Constructor source: - remote: - path: src/OpenTK.Windowing.Common/Events/FileDropEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Windowing.Common/Events/FileDropEventArgs.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Common\Events\FileDropEventArgs.cs startLine: 24 assemblies: - OpenTK.Windowing.Common @@ -84,12 +76,8 @@ items: fullName: OpenTK.Windowing.Common.FileDropEventArgs.FileNames type: Property source: - remote: - path: src/OpenTK.Windowing.Common/Events/FileDropEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: FileNames - path: opentk/src/OpenTK.Windowing.Common/Events/FileDropEventArgs.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Common\Events\FileDropEventArgs.cs startLine: 33 assemblies: - OpenTK.Windowing.Common diff --git a/api/OpenTK.Windowing.Common.FocusedChangedEventArgs.yml b/api/OpenTK.Windowing.Common.FocusedChangedEventArgs.yml index de42a53d..a165a29d 100644 --- a/api/OpenTK.Windowing.Common.FocusedChangedEventArgs.yml +++ b/api/OpenTK.Windowing.Common.FocusedChangedEventArgs.yml @@ -15,12 +15,8 @@ items: fullName: OpenTK.Windowing.Common.FocusedChangedEventArgs type: Struct source: - remote: - path: src/OpenTK.Windowing.Common/Events/FocusedChangedEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: FocusedChangedEventArgs - path: opentk/src/OpenTK.Windowing.Common/Events/FocusedChangedEventArgs.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Common\Events\FocusedChangedEventArgs.cs startLine: 16 assemblies: - OpenTK.Windowing.Common @@ -49,12 +45,8 @@ items: fullName: OpenTK.Windowing.Common.FocusedChangedEventArgs.FocusedChangedEventArgs(bool) type: Constructor source: - remote: - path: src/OpenTK.Windowing.Common/Events/FocusedChangedEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Windowing.Common/Events/FocusedChangedEventArgs.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Common\Events\FocusedChangedEventArgs.cs startLine: 22 assemblies: - OpenTK.Windowing.Common @@ -84,12 +76,8 @@ items: fullName: OpenTK.Windowing.Common.FocusedChangedEventArgs.IsFocused type: Property source: - remote: - path: src/OpenTK.Windowing.Common/Events/FocusedChangedEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: IsFocused - path: opentk/src/OpenTK.Windowing.Common/Events/FocusedChangedEventArgs.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Common\Events\FocusedChangedEventArgs.cs startLine: 30 assemblies: - OpenTK.Windowing.Common diff --git a/api/OpenTK.Windowing.Common.FrameEventArgs.yml b/api/OpenTK.Windowing.Common.FrameEventArgs.yml index 43d3bf66..706e44aa 100644 --- a/api/OpenTK.Windowing.Common.FrameEventArgs.yml +++ b/api/OpenTK.Windowing.Common.FrameEventArgs.yml @@ -15,12 +15,8 @@ items: fullName: OpenTK.Windowing.Common.FrameEventArgs type: Struct source: - remote: - path: src/OpenTK.Windowing.Common/Events/FrameEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: FrameEventArgs - path: opentk/src/OpenTK.Windowing.Common/Events/FrameEventArgs.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Common\Events\FrameEventArgs.cs startLine: 14 assemblies: - OpenTK.Windowing.Common @@ -49,12 +45,8 @@ items: fullName: OpenTK.Windowing.Common.FrameEventArgs.FrameEventArgs(double) type: Constructor source: - remote: - path: src/OpenTK.Windowing.Common/Events/FrameEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Windowing.Common/Events/FrameEventArgs.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Common\Events\FrameEventArgs.cs startLine: 20 assemblies: - OpenTK.Windowing.Common @@ -84,12 +76,8 @@ items: fullName: OpenTK.Windowing.Common.FrameEventArgs.Time type: Property source: - remote: - path: src/OpenTK.Windowing.Common/Events/FrameEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Time - path: opentk/src/OpenTK.Windowing.Common/Events/FrameEventArgs.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Common\Events\FrameEventArgs.cs startLine: 28 assemblies: - OpenTK.Windowing.Common diff --git a/api/OpenTK.Windowing.Common.FramebufferResizeEventArgs.yml b/api/OpenTK.Windowing.Common.FramebufferResizeEventArgs.yml index 06af7a1a..fbc3341a 100644 --- a/api/OpenTK.Windowing.Common.FramebufferResizeEventArgs.yml +++ b/api/OpenTK.Windowing.Common.FramebufferResizeEventArgs.yml @@ -18,12 +18,8 @@ items: fullName: OpenTK.Windowing.Common.FramebufferResizeEventArgs type: Struct source: - remote: - path: src/OpenTK.Windowing.Common/Events/FramebufferResizeEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: FramebufferResizeEventArgs - path: opentk/src/OpenTK.Windowing.Common/Events/FramebufferResizeEventArgs.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Common\Events\FramebufferResizeEventArgs.cs startLine: 15 assemblies: - OpenTK.Windowing.Common @@ -52,12 +48,8 @@ items: fullName: OpenTK.Windowing.Common.FramebufferResizeEventArgs.Size type: Property source: - remote: - path: src/OpenTK.Windowing.Common/Events/FramebufferResizeEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Size - path: opentk/src/OpenTK.Windowing.Common/Events/FramebufferResizeEventArgs.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Common\Events\FramebufferResizeEventArgs.cs startLine: 20 assemblies: - OpenTK.Windowing.Common @@ -83,12 +75,8 @@ items: fullName: OpenTK.Windowing.Common.FramebufferResizeEventArgs.Width type: Property source: - remote: - path: src/OpenTK.Windowing.Common/Events/FramebufferResizeEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Width - path: opentk/src/OpenTK.Windowing.Common/Events/FramebufferResizeEventArgs.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Common\Events\FramebufferResizeEventArgs.cs startLine: 25 assemblies: - OpenTK.Windowing.Common @@ -114,12 +102,8 @@ items: fullName: OpenTK.Windowing.Common.FramebufferResizeEventArgs.Height type: Property source: - remote: - path: src/OpenTK.Windowing.Common/Events/FramebufferResizeEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Height - path: opentk/src/OpenTK.Windowing.Common/Events/FramebufferResizeEventArgs.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Common\Events\FramebufferResizeEventArgs.cs startLine: 30 assemblies: - OpenTK.Windowing.Common @@ -145,12 +129,8 @@ items: fullName: OpenTK.Windowing.Common.FramebufferResizeEventArgs.FramebufferResizeEventArgs(OpenTK.Mathematics.Vector2i) type: Constructor source: - remote: - path: src/OpenTK.Windowing.Common/Events/FramebufferResizeEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Windowing.Common/Events/FramebufferResizeEventArgs.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Common\Events\FramebufferResizeEventArgs.cs startLine: 36 assemblies: - OpenTK.Windowing.Common @@ -180,12 +160,8 @@ items: fullName: OpenTK.Windowing.Common.FramebufferResizeEventArgs.FramebufferResizeEventArgs(int, int) type: Constructor source: - remote: - path: src/OpenTK.Windowing.Common/Events/FramebufferResizeEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Windowing.Common/Events/FramebufferResizeEventArgs.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Common\Events\FramebufferResizeEventArgs.cs startLine: 46 assemblies: - OpenTK.Windowing.Common diff --git a/api/OpenTK.Windowing.Common.IGraphicsContext.yml b/api/OpenTK.Windowing.Common.IGraphicsContext.yml index 52fb530e..9dbbc997 100644 --- a/api/OpenTK.Windowing.Common.IGraphicsContext.yml +++ b/api/OpenTK.Windowing.Common.IGraphicsContext.yml @@ -18,12 +18,8 @@ items: fullName: OpenTK.Windowing.Common.IGraphicsContext type: Interface source: - remote: - path: src/OpenTK.Windowing.Common/Interfaces/IGraphicsContext.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: IGraphicsContext - path: opentk/src/OpenTK.Windowing.Common/Interfaces/IGraphicsContext.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Common\Interfaces\IGraphicsContext.cs startLine: 7 assemblies: - OpenTK.Windowing.Common @@ -45,12 +41,8 @@ items: fullName: OpenTK.Windowing.Common.IGraphicsContext.IsCurrent type: Property source: - remote: - path: src/OpenTK.Windowing.Common/Interfaces/IGraphicsContext.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: IsCurrent - path: opentk/src/OpenTK.Windowing.Common/Interfaces/IGraphicsContext.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Common\Interfaces\IGraphicsContext.cs startLine: 12 assemblies: - OpenTK.Windowing.Common @@ -76,12 +68,8 @@ items: fullName: OpenTK.Windowing.Common.IGraphicsContext.SwapInterval type: Property source: - remote: - path: src/OpenTK.Windowing.Common/Interfaces/IGraphicsContext.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SwapInterval - path: opentk/src/OpenTK.Windowing.Common/Interfaces/IGraphicsContext.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Common\Interfaces\IGraphicsContext.cs startLine: 20 assemblies: - OpenTK.Windowing.Common @@ -108,12 +96,8 @@ items: fullName: OpenTK.Windowing.Common.IGraphicsContext.SwapBuffers() type: Method source: - remote: - path: src/OpenTK.Windowing.Common/Interfaces/IGraphicsContext.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SwapBuffers - path: opentk/src/OpenTK.Windowing.Common/Interfaces/IGraphicsContext.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Common\Interfaces\IGraphicsContext.cs startLine: 25 assemblies: - OpenTK.Windowing.Common @@ -136,12 +120,8 @@ items: fullName: OpenTK.Windowing.Common.IGraphicsContext.MakeCurrent() type: Method source: - remote: - path: src/OpenTK.Windowing.Common/Interfaces/IGraphicsContext.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MakeCurrent - path: opentk/src/OpenTK.Windowing.Common/Interfaces/IGraphicsContext.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Common\Interfaces\IGraphicsContext.cs startLine: 30 assemblies: - OpenTK.Windowing.Common @@ -164,12 +144,8 @@ items: fullName: OpenTK.Windowing.Common.IGraphicsContext.MakeNoneCurrent() type: Method source: - remote: - path: src/OpenTK.Windowing.Common/Interfaces/IGraphicsContext.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MakeNoneCurrent - path: opentk/src/OpenTK.Windowing.Common/Interfaces/IGraphicsContext.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Common\Interfaces\IGraphicsContext.cs startLine: 35 assemblies: - OpenTK.Windowing.Common diff --git a/api/OpenTK.Windowing.Common.Input.Hat.yml b/api/OpenTK.Windowing.Common.Input.Hat.yml index 0ac124a8..83d2532a 100644 --- a/api/OpenTK.Windowing.Common.Input.Hat.yml +++ b/api/OpenTK.Windowing.Common.Input.Hat.yml @@ -22,12 +22,8 @@ items: fullName: OpenTK.Windowing.Common.Input.Hat type: Enum source: - remote: - path: src/OpenTK.Windowing.Common/Input/Enums/Hat.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Hat - path: opentk/src/OpenTK.Windowing.Common/Input/Enums/Hat.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Common\Input\Enums\Hat.cs startLine: 14 assemblies: - OpenTK.Windowing.Common @@ -49,12 +45,8 @@ items: fullName: OpenTK.Windowing.Common.Input.Hat.Centered type: Field source: - remote: - path: src/OpenTK.Windowing.Common/Input/Enums/Hat.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Centered - path: opentk/src/OpenTK.Windowing.Common/Input/Enums/Hat.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Common\Input\Enums\Hat.cs startLine: 19 assemblies: - OpenTK.Windowing.Common @@ -77,12 +69,8 @@ items: fullName: OpenTK.Windowing.Common.Input.Hat.Up type: Field source: - remote: - path: src/OpenTK.Windowing.Common/Input/Enums/Hat.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Up - path: opentk/src/OpenTK.Windowing.Common/Input/Enums/Hat.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Common\Input\Enums\Hat.cs startLine: 24 assemblies: - OpenTK.Windowing.Common @@ -105,12 +93,8 @@ items: fullName: OpenTK.Windowing.Common.Input.Hat.Right type: Field source: - remote: - path: src/OpenTK.Windowing.Common/Input/Enums/Hat.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Right - path: opentk/src/OpenTK.Windowing.Common/Input/Enums/Hat.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Common\Input\Enums\Hat.cs startLine: 29 assemblies: - OpenTK.Windowing.Common @@ -133,12 +117,8 @@ items: fullName: OpenTK.Windowing.Common.Input.Hat.Down type: Field source: - remote: - path: src/OpenTK.Windowing.Common/Input/Enums/Hat.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Down - path: opentk/src/OpenTK.Windowing.Common/Input/Enums/Hat.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Common\Input\Enums\Hat.cs startLine: 34 assemblies: - OpenTK.Windowing.Common @@ -161,12 +141,8 @@ items: fullName: OpenTK.Windowing.Common.Input.Hat.Left type: Field source: - remote: - path: src/OpenTK.Windowing.Common/Input/Enums/Hat.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Left - path: opentk/src/OpenTK.Windowing.Common/Input/Enums/Hat.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Common\Input\Enums\Hat.cs startLine: 39 assemblies: - OpenTK.Windowing.Common @@ -189,12 +165,8 @@ items: fullName: OpenTK.Windowing.Common.Input.Hat.RightUp type: Field source: - remote: - path: src/OpenTK.Windowing.Common/Input/Enums/Hat.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: RightUp - path: opentk/src/OpenTK.Windowing.Common/Input/Enums/Hat.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Common\Input\Enums\Hat.cs startLine: 44 assemblies: - OpenTK.Windowing.Common @@ -217,12 +189,8 @@ items: fullName: OpenTK.Windowing.Common.Input.Hat.RightDown type: Field source: - remote: - path: src/OpenTK.Windowing.Common/Input/Enums/Hat.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: RightDown - path: opentk/src/OpenTK.Windowing.Common/Input/Enums/Hat.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Common\Input\Enums\Hat.cs startLine: 49 assemblies: - OpenTK.Windowing.Common @@ -245,12 +213,8 @@ items: fullName: OpenTK.Windowing.Common.Input.Hat.LeftUp type: Field source: - remote: - path: src/OpenTK.Windowing.Common/Input/Enums/Hat.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: LeftUp - path: opentk/src/OpenTK.Windowing.Common/Input/Enums/Hat.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Common\Input\Enums\Hat.cs startLine: 54 assemblies: - OpenTK.Windowing.Common @@ -273,12 +237,8 @@ items: fullName: OpenTK.Windowing.Common.Input.Hat.LeftDown type: Field source: - remote: - path: src/OpenTK.Windowing.Common/Input/Enums/Hat.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: LeftDown - path: opentk/src/OpenTK.Windowing.Common/Input/Enums/Hat.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Common\Input\Enums\Hat.cs startLine: 59 assemblies: - OpenTK.Windowing.Common diff --git a/api/OpenTK.Windowing.Common.Input.Image.yml b/api/OpenTK.Windowing.Common.Input.Image.yml index 9593a635..ed66f9d2 100644 --- a/api/OpenTK.Windowing.Common.Input.Image.yml +++ b/api/OpenTK.Windowing.Common.Input.Image.yml @@ -18,12 +18,8 @@ items: fullName: OpenTK.Windowing.Common.Input.Image type: Class source: - remote: - path: src/OpenTK.Windowing.Common/Input/Image.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Image - path: opentk/src/OpenTK.Windowing.Common/Input/Image.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Common\Input\Image.cs startLine: 17 assemblies: - OpenTK.Windowing.Common @@ -60,12 +56,8 @@ items: fullName: OpenTK.Windowing.Common.Input.Image.Image(int, int, byte[]) type: Constructor source: - remote: - path: src/OpenTK.Windowing.Common/Input/Image.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Windowing.Common/Input/Image.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Common\Input\Image.cs startLine: 25 assemblies: - OpenTK.Windowing.Common @@ -101,12 +93,8 @@ items: fullName: OpenTK.Windowing.Common.Input.Image.Image() type: Constructor source: - remote: - path: src/OpenTK.Windowing.Common/Input/Image.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Windowing.Common/Input/Image.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Common\Input\Image.cs startLine: 45 assemblies: - OpenTK.Windowing.Common @@ -132,12 +120,8 @@ items: fullName: OpenTK.Windowing.Common.Input.Image.Width type: Property source: - remote: - path: src/OpenTK.Windowing.Common/Input/Image.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Width - path: opentk/src/OpenTK.Windowing.Common/Input/Image.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Common\Input\Image.cs startLine: 52 assemblies: - OpenTK.Windowing.Common @@ -163,12 +147,8 @@ items: fullName: OpenTK.Windowing.Common.Input.Image.Height type: Property source: - remote: - path: src/OpenTK.Windowing.Common/Input/Image.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Height - path: opentk/src/OpenTK.Windowing.Common/Input/Image.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Common\Input\Image.cs startLine: 57 assemblies: - OpenTK.Windowing.Common @@ -194,12 +174,8 @@ items: fullName: OpenTK.Windowing.Common.Input.Image.Data type: Property source: - remote: - path: src/OpenTK.Windowing.Common/Input/Image.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Data - path: opentk/src/OpenTK.Windowing.Common/Input/Image.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Common\Input\Image.cs startLine: 62 assemblies: - OpenTK.Windowing.Common diff --git a/api/OpenTK.Windowing.Common.Input.MouseCursor.StandardShape.yml b/api/OpenTK.Windowing.Common.Input.MouseCursor.StandardShape.yml index f422e4f0..2788304b 100644 --- a/api/OpenTK.Windowing.Common.Input.MouseCursor.StandardShape.yml +++ b/api/OpenTK.Windowing.Common.Input.MouseCursor.StandardShape.yml @@ -11,6 +11,13 @@ items: - OpenTK.Windowing.Common.Input.MouseCursor.StandardShape.HResize - OpenTK.Windowing.Common.Input.MouseCursor.StandardShape.Hand - OpenTK.Windowing.Common.Input.MouseCursor.StandardShape.IBeam + - OpenTK.Windowing.Common.Input.MouseCursor.StandardShape.NotAllowed + - OpenTK.Windowing.Common.Input.MouseCursor.StandardShape.PointingHand + - OpenTK.Windowing.Common.Input.MouseCursor.StandardShape.ResizeAll + - OpenTK.Windowing.Common.Input.MouseCursor.StandardShape.ResizeEW + - OpenTK.Windowing.Common.Input.MouseCursor.StandardShape.ResizeNESW + - OpenTK.Windowing.Common.Input.MouseCursor.StandardShape.ResizeNS + - OpenTK.Windowing.Common.Input.MouseCursor.StandardShape.ResizeNWSE - OpenTK.Windowing.Common.Input.MouseCursor.StandardShape.VResize langs: - csharp @@ -20,13 +27,9 @@ items: fullName: OpenTK.Windowing.Common.Input.MouseCursor.StandardShape type: Enum source: - remote: - path: src/OpenTK.Windowing.Common/Input/MouseCursor.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: StandardShape - path: opentk/src/OpenTK.Windowing.Common/Input/MouseCursor.cs - startLine: 109 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Common\Input\MouseCursor.cs + startLine: 147 assemblies: - OpenTK.Windowing.Common namespace: OpenTK.Windowing.Common.Input @@ -47,13 +50,9 @@ items: fullName: OpenTK.Windowing.Common.Input.MouseCursor.StandardShape.CustomShape type: Field source: - remote: - path: src/OpenTK.Windowing.Common/Input/MouseCursor.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CustomShape - path: opentk/src/OpenTK.Windowing.Common/Input/MouseCursor.cs - startLine: 114 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Common\Input\MouseCursor.cs + startLine: 152 assemblies: - OpenTK.Windowing.Common namespace: OpenTK.Windowing.Common.Input @@ -75,13 +74,9 @@ items: fullName: OpenTK.Windowing.Common.Input.MouseCursor.StandardShape.Arrow type: Field source: - remote: - path: src/OpenTK.Windowing.Common/Input/MouseCursor.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Arrow - path: opentk/src/OpenTK.Windowing.Common/Input/MouseCursor.cs - startLine: 119 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Common\Input\MouseCursor.cs + startLine: 157 assemblies: - OpenTK.Windowing.Common namespace: OpenTK.Windowing.Common.Input @@ -103,13 +98,9 @@ items: fullName: OpenTK.Windowing.Common.Input.MouseCursor.StandardShape.IBeam type: Field source: - remote: - path: src/OpenTK.Windowing.Common/Input/MouseCursor.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: IBeam - path: opentk/src/OpenTK.Windowing.Common/Input/MouseCursor.cs - startLine: 124 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Common\Input\MouseCursor.cs + startLine: 162 assemblies: - OpenTK.Windowing.Common namespace: OpenTK.Windowing.Common.Input @@ -131,13 +122,9 @@ items: fullName: OpenTK.Windowing.Common.Input.MouseCursor.StandardShape.Crosshair type: Field source: - remote: - path: src/OpenTK.Windowing.Common/Input/MouseCursor.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Crosshair - path: opentk/src/OpenTK.Windowing.Common/Input/MouseCursor.cs - startLine: 129 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Common\Input\MouseCursor.cs + startLine: 167 assemblies: - OpenTK.Windowing.Common namespace: OpenTK.Windowing.Common.Input @@ -147,6 +134,174 @@ items: content: Crosshair = 3 return: type: OpenTK.Windowing.Common.Input.MouseCursor.StandardShape +- uid: OpenTK.Windowing.Common.Input.MouseCursor.StandardShape.PointingHand + commentId: F:OpenTK.Windowing.Common.Input.MouseCursor.StandardShape.PointingHand + id: PointingHand + parent: OpenTK.Windowing.Common.Input.MouseCursor.StandardShape + langs: + - csharp + - vb + name: PointingHand + nameWithType: MouseCursor.StandardShape.PointingHand + fullName: OpenTK.Windowing.Common.Input.MouseCursor.StandardShape.PointingHand + type: Field + source: + id: PointingHand + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Common\Input\MouseCursor.cs + startLine: 172 + assemblies: + - OpenTK.Windowing.Common + namespace: OpenTK.Windowing.Common.Input + summary: A pointing hand cursor. + example: [] + syntax: + content: PointingHand = 4 + return: + type: OpenTK.Windowing.Common.Input.MouseCursor.StandardShape +- uid: OpenTK.Windowing.Common.Input.MouseCursor.StandardShape.ResizeEW + commentId: F:OpenTK.Windowing.Common.Input.MouseCursor.StandardShape.ResizeEW + id: ResizeEW + parent: OpenTK.Windowing.Common.Input.MouseCursor.StandardShape + langs: + - csharp + - vb + name: ResizeEW + nameWithType: MouseCursor.StandardShape.ResizeEW + fullName: OpenTK.Windowing.Common.Input.MouseCursor.StandardShape.ResizeEW + type: Field + source: + id: ResizeEW + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Common\Input\MouseCursor.cs + startLine: 177 + assemblies: + - OpenTK.Windowing.Common + namespace: OpenTK.Windowing.Common.Input + summary: A horizontal resize cursor. + example: [] + syntax: + content: ResizeEW = 5 + return: + type: OpenTK.Windowing.Common.Input.MouseCursor.StandardShape +- uid: OpenTK.Windowing.Common.Input.MouseCursor.StandardShape.ResizeNS + commentId: F:OpenTK.Windowing.Common.Input.MouseCursor.StandardShape.ResizeNS + id: ResizeNS + parent: OpenTK.Windowing.Common.Input.MouseCursor.StandardShape + langs: + - csharp + - vb + name: ResizeNS + nameWithType: MouseCursor.StandardShape.ResizeNS + fullName: OpenTK.Windowing.Common.Input.MouseCursor.StandardShape.ResizeNS + type: Field + source: + id: ResizeNS + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Common\Input\MouseCursor.cs + startLine: 182 + assemblies: + - OpenTK.Windowing.Common + namespace: OpenTK.Windowing.Common.Input + summary: A vertical resize cursor. + example: [] + syntax: + content: ResizeNS = 6 + return: + type: OpenTK.Windowing.Common.Input.MouseCursor.StandardShape +- uid: OpenTK.Windowing.Common.Input.MouseCursor.StandardShape.ResizeNWSE + commentId: F:OpenTK.Windowing.Common.Input.MouseCursor.StandardShape.ResizeNWSE + id: ResizeNWSE + parent: OpenTK.Windowing.Common.Input.MouseCursor.StandardShape + langs: + - csharp + - vb + name: ResizeNWSE + nameWithType: MouseCursor.StandardShape.ResizeNWSE + fullName: OpenTK.Windowing.Common.Input.MouseCursor.StandardShape.ResizeNWSE + type: Field + source: + id: ResizeNWSE + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Common\Input\MouseCursor.cs + startLine: 187 + assemblies: + - OpenTK.Windowing.Common + namespace: OpenTK.Windowing.Common.Input + summary: A diagonal northwest southeast resize cursor. + example: [] + syntax: + content: ResizeNWSE = 7 + return: + type: OpenTK.Windowing.Common.Input.MouseCursor.StandardShape +- uid: OpenTK.Windowing.Common.Input.MouseCursor.StandardShape.ResizeNESW + commentId: F:OpenTK.Windowing.Common.Input.MouseCursor.StandardShape.ResizeNESW + id: ResizeNESW + parent: OpenTK.Windowing.Common.Input.MouseCursor.StandardShape + langs: + - csharp + - vb + name: ResizeNESW + nameWithType: MouseCursor.StandardShape.ResizeNESW + fullName: OpenTK.Windowing.Common.Input.MouseCursor.StandardShape.ResizeNESW + type: Field + source: + id: ResizeNESW + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Common\Input\MouseCursor.cs + startLine: 192 + assemblies: + - OpenTK.Windowing.Common + namespace: OpenTK.Windowing.Common.Input + summary: A diagonal northeast southwest resize cursor. + example: [] + syntax: + content: ResizeNESW = 8 + return: + type: OpenTK.Windowing.Common.Input.MouseCursor.StandardShape +- uid: OpenTK.Windowing.Common.Input.MouseCursor.StandardShape.ResizeAll + commentId: F:OpenTK.Windowing.Common.Input.MouseCursor.StandardShape.ResizeAll + id: ResizeAll + parent: OpenTK.Windowing.Common.Input.MouseCursor.StandardShape + langs: + - csharp + - vb + name: ResizeAll + nameWithType: MouseCursor.StandardShape.ResizeAll + fullName: OpenTK.Windowing.Common.Input.MouseCursor.StandardShape.ResizeAll + type: Field + source: + id: ResizeAll + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Common\Input\MouseCursor.cs + startLine: 197 + assemblies: + - OpenTK.Windowing.Common + namespace: OpenTK.Windowing.Common.Input + summary: An omni-directional resize cursor. + example: [] + syntax: + content: ResizeAll = 9 + return: + type: OpenTK.Windowing.Common.Input.MouseCursor.StandardShape +- uid: OpenTK.Windowing.Common.Input.MouseCursor.StandardShape.NotAllowed + commentId: F:OpenTK.Windowing.Common.Input.MouseCursor.StandardShape.NotAllowed + id: NotAllowed + parent: OpenTK.Windowing.Common.Input.MouseCursor.StandardShape + langs: + - csharp + - vb + name: NotAllowed + nameWithType: MouseCursor.StandardShape.NotAllowed + fullName: OpenTK.Windowing.Common.Input.MouseCursor.StandardShape.NotAllowed + type: Field + source: + id: NotAllowed + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Common\Input\MouseCursor.cs + startLine: 202 + assemblies: + - OpenTK.Windowing.Common + namespace: OpenTK.Windowing.Common.Input + summary: An operation-not-allowed cursor. + example: [] + syntax: + content: NotAllowed = 10 + return: + type: OpenTK.Windowing.Common.Input.MouseCursor.StandardShape - uid: OpenTK.Windowing.Common.Input.MouseCursor.StandardShape.Hand commentId: F:OpenTK.Windowing.Common.Input.MouseCursor.StandardShape.Hand id: Hand @@ -159,22 +314,31 @@ items: fullName: OpenTK.Windowing.Common.Input.MouseCursor.StandardShape.Hand type: Field source: - remote: - path: src/OpenTK.Windowing.Common/Input/MouseCursor.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Hand - path: opentk/src/OpenTK.Windowing.Common/Input/MouseCursor.cs - startLine: 134 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Common\Input\MouseCursor.cs + startLine: 207 assemblies: - OpenTK.Windowing.Common namespace: OpenTK.Windowing.Common.Input summary: A hand cursor. example: [] syntax: - content: Hand = 4 + content: >- + [Obsolete("Use PointingHand instead.")] + + Hand = 4 return: type: OpenTK.Windowing.Common.Input.MouseCursor.StandardShape + content.vb: >- + + + Hand = 4 + attributes: + - type: System.ObsoleteAttribute + ctor: System.ObsoleteAttribute.#ctor(System.String) + arguments: + - type: System.String + value: Use PointingHand instead. - uid: OpenTK.Windowing.Common.Input.MouseCursor.StandardShape.HResize commentId: F:OpenTK.Windowing.Common.Input.MouseCursor.StandardShape.HResize id: HResize @@ -187,22 +351,31 @@ items: fullName: OpenTK.Windowing.Common.Input.MouseCursor.StandardShape.HResize type: Field source: - remote: - path: src/OpenTK.Windowing.Common/Input/MouseCursor.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: HResize - path: opentk/src/OpenTK.Windowing.Common/Input/MouseCursor.cs - startLine: 139 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Common\Input\MouseCursor.cs + startLine: 213 assemblies: - OpenTK.Windowing.Common namespace: OpenTK.Windowing.Common.Input summary: A horizontal resize cursor. example: [] syntax: - content: HResize = 5 + content: >- + [Obsolete("Use ResizeEW instead.")] + + HResize = 5 return: type: OpenTK.Windowing.Common.Input.MouseCursor.StandardShape + content.vb: >- + + + HResize = 5 + attributes: + - type: System.ObsoleteAttribute + ctor: System.ObsoleteAttribute.#ctor(System.String) + arguments: + - type: System.String + value: Use ResizeEW instead. - uid: OpenTK.Windowing.Common.Input.MouseCursor.StandardShape.VResize commentId: F:OpenTK.Windowing.Common.Input.MouseCursor.StandardShape.VResize id: VResize @@ -215,22 +388,31 @@ items: fullName: OpenTK.Windowing.Common.Input.MouseCursor.StandardShape.VResize type: Field source: - remote: - path: src/OpenTK.Windowing.Common/Input/MouseCursor.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: VResize - path: opentk/src/OpenTK.Windowing.Common/Input/MouseCursor.cs - startLine: 144 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Common\Input\MouseCursor.cs + startLine: 219 assemblies: - OpenTK.Windowing.Common namespace: OpenTK.Windowing.Common.Input summary: A vertical resize cursor. example: [] syntax: - content: VResize = 6 + content: >- + [Obsolete("Use ResizeNS instead.")] + + VResize = 6 return: type: OpenTK.Windowing.Common.Input.MouseCursor.StandardShape + content.vb: >- + + + VResize = 6 + attributes: + - type: System.ObsoleteAttribute + ctor: System.ObsoleteAttribute.#ctor(System.String) + arguments: + - type: System.String + value: Use ResizeNS instead. references: - uid: OpenTK.Windowing.Common.Input commentId: N:OpenTK.Windowing.Common.Input diff --git a/api/OpenTK.Windowing.Common.Input.MouseCursor.yml b/api/OpenTK.Windowing.Common.Input.MouseCursor.yml index 9817de55..23a72b74 100644 --- a/api/OpenTK.Windowing.Common.Input.MouseCursor.yml +++ b/api/OpenTK.Windowing.Common.Input.MouseCursor.yml @@ -12,6 +12,13 @@ items: - OpenTK.Windowing.Common.Input.MouseCursor.HResize - OpenTK.Windowing.Common.Input.MouseCursor.Hand - OpenTK.Windowing.Common.Input.MouseCursor.IBeam + - OpenTK.Windowing.Common.Input.MouseCursor.NotAllowed + - OpenTK.Windowing.Common.Input.MouseCursor.PointingHand + - OpenTK.Windowing.Common.Input.MouseCursor.ResizeAll + - OpenTK.Windowing.Common.Input.MouseCursor.ResizeEW + - OpenTK.Windowing.Common.Input.MouseCursor.ResizeNESW + - OpenTK.Windowing.Common.Input.MouseCursor.ResizeNS + - OpenTK.Windowing.Common.Input.MouseCursor.ResizeNWSE - OpenTK.Windowing.Common.Input.MouseCursor.Shape - OpenTK.Windowing.Common.Input.MouseCursor.VResize - OpenTK.Windowing.Common.Input.MouseCursor.X @@ -24,12 +31,8 @@ items: fullName: OpenTK.Windowing.Common.Input.MouseCursor type: Class source: - remote: - path: src/OpenTK.Windowing.Common/Input/MouseCursor.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MouseCursor - path: opentk/src/OpenTK.Windowing.Common/Input/MouseCursor.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Common\Input\MouseCursor.cs startLine: 16 assemblies: - OpenTK.Windowing.Common @@ -64,12 +67,8 @@ items: fullName: OpenTK.Windowing.Common.Input.MouseCursor.Default type: Property source: - remote: - path: src/OpenTK.Windowing.Common/Input/MouseCursor.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Default - path: opentk/src/OpenTK.Windowing.Common/Input/MouseCursor.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Common\Input\MouseCursor.cs startLine: 21 assemblies: - OpenTK.Windowing.Common @@ -95,12 +94,8 @@ items: fullName: OpenTK.Windowing.Common.Input.MouseCursor.IBeam type: Property source: - remote: - path: src/OpenTK.Windowing.Common/Input/MouseCursor.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: IBeam - path: opentk/src/OpenTK.Windowing.Common/Input/MouseCursor.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Common\Input\MouseCursor.cs startLine: 26 assemblies: - OpenTK.Windowing.Common @@ -126,12 +121,8 @@ items: fullName: OpenTK.Windowing.Common.Input.MouseCursor.Crosshair type: Property source: - remote: - path: src/OpenTK.Windowing.Common/Input/MouseCursor.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Crosshair - path: opentk/src/OpenTK.Windowing.Common/Input/MouseCursor.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Common\Input\MouseCursor.cs startLine: 31 assemblies: - OpenTK.Windowing.Common @@ -145,6 +136,195 @@ items: type: OpenTK.Windowing.Common.Input.MouseCursor content.vb: Public Shared ReadOnly Property Crosshair As MouseCursor overload: OpenTK.Windowing.Common.Input.MouseCursor.Crosshair* +- uid: OpenTK.Windowing.Common.Input.MouseCursor.PointingHand + commentId: P:OpenTK.Windowing.Common.Input.MouseCursor.PointingHand + id: PointingHand + parent: OpenTK.Windowing.Common.Input.MouseCursor + langs: + - csharp + - vb + name: PointingHand + nameWithType: MouseCursor.PointingHand + fullName: OpenTK.Windowing.Common.Input.MouseCursor.PointingHand + type: Property + source: + id: PointingHand + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Common\Input\MouseCursor.cs + startLine: 36 + assemblies: + - OpenTK.Windowing.Common + namespace: OpenTK.Windowing.Common.Input + summary: Gets the default pointing hand cursor for this platform. + example: [] + syntax: + content: public static MouseCursor PointingHand { get; } + parameters: [] + return: + type: OpenTK.Windowing.Common.Input.MouseCursor + content.vb: Public Shared ReadOnly Property PointingHand As MouseCursor + overload: OpenTK.Windowing.Common.Input.MouseCursor.PointingHand* +- uid: OpenTK.Windowing.Common.Input.MouseCursor.ResizeEW + commentId: P:OpenTK.Windowing.Common.Input.MouseCursor.ResizeEW + id: ResizeEW + parent: OpenTK.Windowing.Common.Input.MouseCursor + langs: + - csharp + - vb + name: ResizeEW + nameWithType: MouseCursor.ResizeEW + fullName: OpenTK.Windowing.Common.Input.MouseCursor.ResizeEW + type: Property + source: + id: ResizeEW + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Common\Input\MouseCursor.cs + startLine: 41 + assemblies: + - OpenTK.Windowing.Common + namespace: OpenTK.Windowing.Common.Input + summary: Gets the default pointing hand cursor for this platform. + example: [] + syntax: + content: public static MouseCursor ResizeEW { get; } + parameters: [] + return: + type: OpenTK.Windowing.Common.Input.MouseCursor + content.vb: Public Shared ReadOnly Property ResizeEW As MouseCursor + overload: OpenTK.Windowing.Common.Input.MouseCursor.ResizeEW* +- uid: OpenTK.Windowing.Common.Input.MouseCursor.ResizeNS + commentId: P:OpenTK.Windowing.Common.Input.MouseCursor.ResizeNS + id: ResizeNS + parent: OpenTK.Windowing.Common.Input.MouseCursor + langs: + - csharp + - vb + name: ResizeNS + nameWithType: MouseCursor.ResizeNS + fullName: OpenTK.Windowing.Common.Input.MouseCursor.ResizeNS + type: Property + source: + id: ResizeNS + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Common\Input\MouseCursor.cs + startLine: 46 + assemblies: + - OpenTK.Windowing.Common + namespace: OpenTK.Windowing.Common.Input + summary: Gets the default pointing hand cursor for this platform. + example: [] + syntax: + content: public static MouseCursor ResizeNS { get; } + parameters: [] + return: + type: OpenTK.Windowing.Common.Input.MouseCursor + content.vb: Public Shared ReadOnly Property ResizeNS As MouseCursor + overload: OpenTK.Windowing.Common.Input.MouseCursor.ResizeNS* +- uid: OpenTK.Windowing.Common.Input.MouseCursor.ResizeNWSE + commentId: P:OpenTK.Windowing.Common.Input.MouseCursor.ResizeNWSE + id: ResizeNWSE + parent: OpenTK.Windowing.Common.Input.MouseCursor + langs: + - csharp + - vb + name: ResizeNWSE + nameWithType: MouseCursor.ResizeNWSE + fullName: OpenTK.Windowing.Common.Input.MouseCursor.ResizeNWSE + type: Property + source: + id: ResizeNWSE + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Common\Input\MouseCursor.cs + startLine: 51 + assemblies: + - OpenTK.Windowing.Common + namespace: OpenTK.Windowing.Common.Input + summary: Gets the default northwest southeast diagonal resize cursor for this platform. + example: [] + syntax: + content: public static MouseCursor ResizeNWSE { get; } + parameters: [] + return: + type: OpenTK.Windowing.Common.Input.MouseCursor + content.vb: Public Shared ReadOnly Property ResizeNWSE As MouseCursor + overload: OpenTK.Windowing.Common.Input.MouseCursor.ResizeNWSE* +- uid: OpenTK.Windowing.Common.Input.MouseCursor.ResizeNESW + commentId: P:OpenTK.Windowing.Common.Input.MouseCursor.ResizeNESW + id: ResizeNESW + parent: OpenTK.Windowing.Common.Input.MouseCursor + langs: + - csharp + - vb + name: ResizeNESW + nameWithType: MouseCursor.ResizeNESW + fullName: OpenTK.Windowing.Common.Input.MouseCursor.ResizeNESW + type: Property + source: + id: ResizeNESW + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Common\Input\MouseCursor.cs + startLine: 56 + assemblies: + - OpenTK.Windowing.Common + namespace: OpenTK.Windowing.Common.Input + summary: Gets the default notheast southwest diagonal resize cursor for this platform. + example: [] + syntax: + content: public static MouseCursor ResizeNESW { get; } + parameters: [] + return: + type: OpenTK.Windowing.Common.Input.MouseCursor + content.vb: Public Shared ReadOnly Property ResizeNESW As MouseCursor + overload: OpenTK.Windowing.Common.Input.MouseCursor.ResizeNESW* +- uid: OpenTK.Windowing.Common.Input.MouseCursor.ResizeAll + commentId: P:OpenTK.Windowing.Common.Input.MouseCursor.ResizeAll + id: ResizeAll + parent: OpenTK.Windowing.Common.Input.MouseCursor + langs: + - csharp + - vb + name: ResizeAll + nameWithType: MouseCursor.ResizeAll + fullName: OpenTK.Windowing.Common.Input.MouseCursor.ResizeAll + type: Property + source: + id: ResizeAll + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Common\Input\MouseCursor.cs + startLine: 61 + assemblies: + - OpenTK.Windowing.Common + namespace: OpenTK.Windowing.Common.Input + summary: Gets the default omni-directional diagonal resize cursor for this platform. + example: [] + syntax: + content: public static MouseCursor ResizeAll { get; } + parameters: [] + return: + type: OpenTK.Windowing.Common.Input.MouseCursor + content.vb: Public Shared ReadOnly Property ResizeAll As MouseCursor + overload: OpenTK.Windowing.Common.Input.MouseCursor.ResizeAll* +- uid: OpenTK.Windowing.Common.Input.MouseCursor.NotAllowed + commentId: P:OpenTK.Windowing.Common.Input.MouseCursor.NotAllowed + id: NotAllowed + parent: OpenTK.Windowing.Common.Input.MouseCursor + langs: + - csharp + - vb + name: NotAllowed + nameWithType: MouseCursor.NotAllowed + fullName: OpenTK.Windowing.Common.Input.MouseCursor.NotAllowed + type: Property + source: + id: NotAllowed + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Common\Input\MouseCursor.cs + startLine: 66 + assemblies: + - OpenTK.Windowing.Common + namespace: OpenTK.Windowing.Common.Input + summary: Gets the default operation-not-allowed cursor for this platform. + example: [] + syntax: + content: public static MouseCursor NotAllowed { get; } + parameters: [] + return: + type: OpenTK.Windowing.Common.Input.MouseCursor + content.vb: Public Shared ReadOnly Property NotAllowed As MouseCursor + overload: OpenTK.Windowing.Common.Input.MouseCursor.NotAllowed* - uid: OpenTK.Windowing.Common.Input.MouseCursor.Hand commentId: P:OpenTK.Windowing.Common.Input.MouseCursor.Hand id: Hand @@ -157,25 +337,33 @@ items: fullName: OpenTK.Windowing.Common.Input.MouseCursor.Hand type: Property source: - remote: - path: src/OpenTK.Windowing.Common/Input/MouseCursor.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Hand - path: opentk/src/OpenTK.Windowing.Common/Input/MouseCursor.cs - startLine: 36 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Common\Input\MouseCursor.cs + startLine: 71 assemblies: - OpenTK.Windowing.Common namespace: OpenTK.Windowing.Common.Input summary: Gets the default hand cursor for this platform. example: [] syntax: - content: public static MouseCursor Hand { get; } + content: >- + [Obsolete("Use PointingHand instead.")] + + public static MouseCursor Hand { get; } parameters: [] return: type: OpenTK.Windowing.Common.Input.MouseCursor - content.vb: Public Shared ReadOnly Property Hand As MouseCursor + content.vb: >- + + + Public Shared ReadOnly Property Hand As MouseCursor overload: OpenTK.Windowing.Common.Input.MouseCursor.Hand* + attributes: + - type: System.ObsoleteAttribute + ctor: System.ObsoleteAttribute.#ctor(System.String) + arguments: + - type: System.String + value: Use PointingHand instead. - uid: OpenTK.Windowing.Common.Input.MouseCursor.VResize commentId: P:OpenTK.Windowing.Common.Input.MouseCursor.VResize id: VResize @@ -188,25 +376,33 @@ items: fullName: OpenTK.Windowing.Common.Input.MouseCursor.VResize type: Property source: - remote: - path: src/OpenTK.Windowing.Common/Input/MouseCursor.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: VResize - path: opentk/src/OpenTK.Windowing.Common/Input/MouseCursor.cs - startLine: 41 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Common\Input\MouseCursor.cs + startLine: 77 assemblies: - OpenTK.Windowing.Common namespace: OpenTK.Windowing.Common.Input summary: Gets the default vertical resize cursor for this platform. example: [] syntax: - content: public static MouseCursor VResize { get; } + content: >- + [Obsolete("Use PointingHand instead.")] + + public static MouseCursor VResize { get; } parameters: [] return: type: OpenTK.Windowing.Common.Input.MouseCursor - content.vb: Public Shared ReadOnly Property VResize As MouseCursor + content.vb: >- + + + Public Shared ReadOnly Property VResize As MouseCursor overload: OpenTK.Windowing.Common.Input.MouseCursor.VResize* + attributes: + - type: System.ObsoleteAttribute + ctor: System.ObsoleteAttribute.#ctor(System.String) + arguments: + - type: System.String + value: Use PointingHand instead. - uid: OpenTK.Windowing.Common.Input.MouseCursor.HResize commentId: P:OpenTK.Windowing.Common.Input.MouseCursor.HResize id: HResize @@ -219,25 +415,33 @@ items: fullName: OpenTK.Windowing.Common.Input.MouseCursor.HResize type: Property source: - remote: - path: src/OpenTK.Windowing.Common/Input/MouseCursor.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: HResize - path: opentk/src/OpenTK.Windowing.Common/Input/MouseCursor.cs - startLine: 46 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Common\Input\MouseCursor.cs + startLine: 83 assemblies: - OpenTK.Windowing.Common namespace: OpenTK.Windowing.Common.Input summary: Gets the default horizontal cursor for this platform. example: [] syntax: - content: public static MouseCursor HResize { get; } + content: >- + [Obsolete("Use PointingHand instead.")] + + public static MouseCursor HResize { get; } parameters: [] return: type: OpenTK.Windowing.Common.Input.MouseCursor - content.vb: Public Shared ReadOnly Property HResize As MouseCursor + content.vb: >- + + + Public Shared ReadOnly Property HResize As MouseCursor overload: OpenTK.Windowing.Common.Input.MouseCursor.HResize* + attributes: + - type: System.ObsoleteAttribute + ctor: System.ObsoleteAttribute.#ctor(System.String) + arguments: + - type: System.String + value: Use PointingHand instead. - uid: OpenTK.Windowing.Common.Input.MouseCursor.Empty commentId: P:OpenTK.Windowing.Common.Input.MouseCursor.Empty id: Empty @@ -250,13 +454,9 @@ items: fullName: OpenTK.Windowing.Common.Input.MouseCursor.Empty type: Property source: - remote: - path: src/OpenTK.Windowing.Common/Input/MouseCursor.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Empty - path: opentk/src/OpenTK.Windowing.Common/Input/MouseCursor.cs - startLine: 51 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Common\Input\MouseCursor.cs + startLine: 89 assemblies: - OpenTK.Windowing.Common namespace: OpenTK.Windowing.Common.Input @@ -281,13 +481,9 @@ items: fullName: OpenTK.Windowing.Common.Input.MouseCursor.MouseCursor(int, int, int, int, byte[]) type: Constructor source: - remote: - path: src/OpenTK.Windowing.Common/Input/MouseCursor.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Windowing.Common/Input/MouseCursor.cs - startLine: 79 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Common\Input\MouseCursor.cs + startLine: 117 assemblies: - OpenTK.Windowing.Common namespace: OpenTK.Windowing.Common.Input @@ -346,13 +542,9 @@ items: fullName: OpenTK.Windowing.Common.Input.MouseCursor.Shape type: Property source: - remote: - path: src/OpenTK.Windowing.Common/Input/MouseCursor.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Shape - path: opentk/src/OpenTK.Windowing.Common/Input/MouseCursor.cs - startLine: 94 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Common\Input\MouseCursor.cs + startLine: 132 assemblies: - OpenTK.Windowing.Common namespace: OpenTK.Windowing.Common.Input @@ -377,13 +569,9 @@ items: fullName: OpenTK.Windowing.Common.Input.MouseCursor.X type: Property source: - remote: - path: src/OpenTK.Windowing.Common/Input/MouseCursor.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: X - path: opentk/src/OpenTK.Windowing.Common/Input/MouseCursor.cs - startLine: 99 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Common\Input\MouseCursor.cs + startLine: 137 assemblies: - OpenTK.Windowing.Common namespace: OpenTK.Windowing.Common.Input @@ -408,13 +596,9 @@ items: fullName: OpenTK.Windowing.Common.Input.MouseCursor.Y type: Property source: - remote: - path: src/OpenTK.Windowing.Common/Input/MouseCursor.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Y - path: opentk/src/OpenTK.Windowing.Common/Input/MouseCursor.cs - startLine: 104 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Common\Input\MouseCursor.cs + startLine: 142 assemblies: - OpenTK.Windowing.Common namespace: OpenTK.Windowing.Common.Input @@ -732,6 +916,48 @@ references: name: Crosshair nameWithType: MouseCursor.Crosshair fullName: OpenTK.Windowing.Common.Input.MouseCursor.Crosshair +- uid: OpenTK.Windowing.Common.Input.MouseCursor.PointingHand* + commentId: Overload:OpenTK.Windowing.Common.Input.MouseCursor.PointingHand + href: OpenTK.Windowing.Common.Input.MouseCursor.html#OpenTK_Windowing_Common_Input_MouseCursor_PointingHand + name: PointingHand + nameWithType: MouseCursor.PointingHand + fullName: OpenTK.Windowing.Common.Input.MouseCursor.PointingHand +- uid: OpenTK.Windowing.Common.Input.MouseCursor.ResizeEW* + commentId: Overload:OpenTK.Windowing.Common.Input.MouseCursor.ResizeEW + href: OpenTK.Windowing.Common.Input.MouseCursor.html#OpenTK_Windowing_Common_Input_MouseCursor_ResizeEW + name: ResizeEW + nameWithType: MouseCursor.ResizeEW + fullName: OpenTK.Windowing.Common.Input.MouseCursor.ResizeEW +- uid: OpenTK.Windowing.Common.Input.MouseCursor.ResizeNS* + commentId: Overload:OpenTK.Windowing.Common.Input.MouseCursor.ResizeNS + href: OpenTK.Windowing.Common.Input.MouseCursor.html#OpenTK_Windowing_Common_Input_MouseCursor_ResizeNS + name: ResizeNS + nameWithType: MouseCursor.ResizeNS + fullName: OpenTK.Windowing.Common.Input.MouseCursor.ResizeNS +- uid: OpenTK.Windowing.Common.Input.MouseCursor.ResizeNWSE* + commentId: Overload:OpenTK.Windowing.Common.Input.MouseCursor.ResizeNWSE + href: OpenTK.Windowing.Common.Input.MouseCursor.html#OpenTK_Windowing_Common_Input_MouseCursor_ResizeNWSE + name: ResizeNWSE + nameWithType: MouseCursor.ResizeNWSE + fullName: OpenTK.Windowing.Common.Input.MouseCursor.ResizeNWSE +- uid: OpenTK.Windowing.Common.Input.MouseCursor.ResizeNESW* + commentId: Overload:OpenTK.Windowing.Common.Input.MouseCursor.ResizeNESW + href: OpenTK.Windowing.Common.Input.MouseCursor.html#OpenTK_Windowing_Common_Input_MouseCursor_ResizeNESW + name: ResizeNESW + nameWithType: MouseCursor.ResizeNESW + fullName: OpenTK.Windowing.Common.Input.MouseCursor.ResizeNESW +- uid: OpenTK.Windowing.Common.Input.MouseCursor.ResizeAll* + commentId: Overload:OpenTK.Windowing.Common.Input.MouseCursor.ResizeAll + href: OpenTK.Windowing.Common.Input.MouseCursor.html#OpenTK_Windowing_Common_Input_MouseCursor_ResizeAll + name: ResizeAll + nameWithType: MouseCursor.ResizeAll + fullName: OpenTK.Windowing.Common.Input.MouseCursor.ResizeAll +- uid: OpenTK.Windowing.Common.Input.MouseCursor.NotAllowed* + commentId: Overload:OpenTK.Windowing.Common.Input.MouseCursor.NotAllowed + href: OpenTK.Windowing.Common.Input.MouseCursor.html#OpenTK_Windowing_Common_Input_MouseCursor_NotAllowed + name: NotAllowed + nameWithType: MouseCursor.NotAllowed + fullName: OpenTK.Windowing.Common.Input.MouseCursor.NotAllowed - uid: OpenTK.Windowing.Common.Input.MouseCursor.Hand* commentId: Overload:OpenTK.Windowing.Common.Input.MouseCursor.Hand href: OpenTK.Windowing.Common.Input.MouseCursor.html#OpenTK_Windowing_Common_Input_MouseCursor_Hand diff --git a/api/OpenTK.Windowing.Common.Input.WindowIcon.yml b/api/OpenTK.Windowing.Common.Input.WindowIcon.yml index e16c4be1..26488a89 100644 --- a/api/OpenTK.Windowing.Common.Input.WindowIcon.yml +++ b/api/OpenTK.Windowing.Common.Input.WindowIcon.yml @@ -15,12 +15,8 @@ items: fullName: OpenTK.Windowing.Common.Input.WindowIcon type: Class source: - remote: - path: src/OpenTK.Windowing.Common/Input/WindowIcon.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: WindowIcon - path: opentk/src/OpenTK.Windowing.Common/Input/WindowIcon.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Common\Input\WindowIcon.cs startLine: 14 assemblies: - OpenTK.Windowing.Common @@ -52,12 +48,8 @@ items: fullName: OpenTK.Windowing.Common.Input.WindowIcon.WindowIcon(params OpenTK.Windowing.Common.Input.Image[]) type: Constructor source: - remote: - path: src/OpenTK.Windowing.Common/Input/WindowIcon.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Windowing.Common/Input/WindowIcon.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Common\Input\WindowIcon.cs startLine: 20 assemblies: - OpenTK.Windowing.Common @@ -87,12 +79,8 @@ items: fullName: OpenTK.Windowing.Common.Input.WindowIcon.Images type: Property source: - remote: - path: src/OpenTK.Windowing.Common/Input/WindowIcon.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Images - path: opentk/src/OpenTK.Windowing.Common/Input/WindowIcon.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Common\Input\WindowIcon.cs startLine: 28 assemblies: - OpenTK.Windowing.Common diff --git a/api/OpenTK.Windowing.Common.JoystickEventArgs.yml b/api/OpenTK.Windowing.Common.JoystickEventArgs.yml index 701ab554..087d0727 100644 --- a/api/OpenTK.Windowing.Common.JoystickEventArgs.yml +++ b/api/OpenTK.Windowing.Common.JoystickEventArgs.yml @@ -16,12 +16,8 @@ items: fullName: OpenTK.Windowing.Common.JoystickEventArgs type: Struct source: - remote: - path: src/OpenTK.Windowing.Common/Events/JoystickEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: JoystickEventArgs - path: opentk/src/OpenTK.Windowing.Common/Events/JoystickEventArgs.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Common\Events\JoystickEventArgs.cs startLine: 17 assemblies: - OpenTK.Windowing.Common @@ -50,12 +46,8 @@ items: fullName: OpenTK.Windowing.Common.JoystickEventArgs.JoystickEventArgs(int, bool) type: Constructor source: - remote: - path: src/OpenTK.Windowing.Common/Events/JoystickEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Windowing.Common/Events/JoystickEventArgs.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Common\Events\JoystickEventArgs.cs startLine: 26 assemblies: - OpenTK.Windowing.Common @@ -88,12 +80,8 @@ items: fullName: OpenTK.Windowing.Common.JoystickEventArgs.JoystickId type: Property source: - remote: - path: src/OpenTK.Windowing.Common/Events/JoystickEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: JoystickId - path: opentk/src/OpenTK.Windowing.Common/Events/JoystickEventArgs.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Common\Events\JoystickEventArgs.cs startLine: 35 assemblies: - OpenTK.Windowing.Common @@ -119,12 +107,8 @@ items: fullName: OpenTK.Windowing.Common.JoystickEventArgs.IsConnected type: Property source: - remote: - path: src/OpenTK.Windowing.Common/Events/JoystickEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: IsConnected - path: opentk/src/OpenTK.Windowing.Common/Events/JoystickEventArgs.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Common\Events\JoystickEventArgs.cs startLine: 40 assemblies: - OpenTK.Windowing.Common diff --git a/api/OpenTK.Windowing.Common.KeyboardKeyEventArgs.yml b/api/OpenTK.Windowing.Common.KeyboardKeyEventArgs.yml index e35ca266..525cc5c0 100644 --- a/api/OpenTK.Windowing.Common.KeyboardKeyEventArgs.yml +++ b/api/OpenTK.Windowing.Common.KeyboardKeyEventArgs.yml @@ -22,17 +22,13 @@ items: fullName: OpenTK.Windowing.Common.KeyboardKeyEventArgs type: Struct source: - remote: - path: src/OpenTK.Windowing.Desktop/Events/KeyboardKeyEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: KeyboardKeyEventArgs - path: opentk/src/OpenTK.Windowing.Desktop/Events/KeyboardKeyEventArgs.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\Events\KeyboardKeyEventArgs.cs startLine: 17 assemblies: - OpenTK.Windowing.Desktop namespace: OpenTK.Windowing.Common - summary: Defines the event data for INativeWindow.KeyDown and INativeWindow.KeyUp events. + summary: Defines the event data for NativeWindow.KeyDown and NativeWindow.KeyUp events. example: [] syntax: content: public readonly struct KeyboardKeyEventArgs @@ -56,12 +52,8 @@ items: fullName: OpenTK.Windowing.Common.KeyboardKeyEventArgs.KeyboardKeyEventArgs(OpenTK.Windowing.GraphicsLibraryFramework.Keys, int, OpenTK.Windowing.GraphicsLibraryFramework.KeyModifiers, bool) type: Constructor source: - remote: - path: src/OpenTK.Windowing.Desktop/Events/KeyboardKeyEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Windowing.Desktop/Events/KeyboardKeyEventArgs.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\Events\KeyboardKeyEventArgs.cs startLine: 26 assemblies: - OpenTK.Windowing.Desktop @@ -100,12 +92,8 @@ items: fullName: OpenTK.Windowing.Common.KeyboardKeyEventArgs.Key type: Property source: - remote: - path: src/OpenTK.Windowing.Desktop/Events/KeyboardKeyEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Key - path: opentk/src/OpenTK.Windowing.Desktop/Events/KeyboardKeyEventArgs.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\Events\KeyboardKeyEventArgs.cs startLine: 37 assemblies: - OpenTK.Windowing.Desktop @@ -131,12 +119,8 @@ items: fullName: OpenTK.Windowing.Common.KeyboardKeyEventArgs.ScanCode type: Property source: - remote: - path: src/OpenTK.Windowing.Desktop/Events/KeyboardKeyEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ScanCode - path: opentk/src/OpenTK.Windowing.Desktop/Events/KeyboardKeyEventArgs.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\Events\KeyboardKeyEventArgs.cs startLine: 42 assemblies: - OpenTK.Windowing.Desktop @@ -162,12 +146,8 @@ items: fullName: OpenTK.Windowing.Common.KeyboardKeyEventArgs.Modifiers type: Property source: - remote: - path: src/OpenTK.Windowing.Desktop/Events/KeyboardKeyEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Modifiers - path: opentk/src/OpenTK.Windowing.Desktop/Events/KeyboardKeyEventArgs.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\Events\KeyboardKeyEventArgs.cs startLine: 47 assemblies: - OpenTK.Windowing.Desktop @@ -193,12 +173,8 @@ items: fullName: OpenTK.Windowing.Common.KeyboardKeyEventArgs.IsRepeat type: Property source: - remote: - path: src/OpenTK.Windowing.Desktop/Events/KeyboardKeyEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: IsRepeat - path: opentk/src/OpenTK.Windowing.Desktop/Events/KeyboardKeyEventArgs.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\Events\KeyboardKeyEventArgs.cs startLine: 58 assemblies: - OpenTK.Windowing.Desktop @@ -233,12 +209,8 @@ items: fullName: OpenTK.Windowing.Common.KeyboardKeyEventArgs.Alt type: Property source: - remote: - path: src/OpenTK.Windowing.Desktop/Events/KeyboardKeyEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Alt - path: opentk/src/OpenTK.Windowing.Desktop/Events/KeyboardKeyEventArgs.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\Events\KeyboardKeyEventArgs.cs startLine: 64 assemblies: - OpenTK.Windowing.Desktop @@ -265,12 +237,8 @@ items: fullName: OpenTK.Windowing.Common.KeyboardKeyEventArgs.Control type: Property source: - remote: - path: src/OpenTK.Windowing.Desktop/Events/KeyboardKeyEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Control - path: opentk/src/OpenTK.Windowing.Desktop/Events/KeyboardKeyEventArgs.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\Events\KeyboardKeyEventArgs.cs startLine: 70 assemblies: - OpenTK.Windowing.Desktop @@ -297,12 +265,8 @@ items: fullName: OpenTK.Windowing.Common.KeyboardKeyEventArgs.Shift type: Property source: - remote: - path: src/OpenTK.Windowing.Desktop/Events/KeyboardKeyEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Shift - path: opentk/src/OpenTK.Windowing.Desktop/Events/KeyboardKeyEventArgs.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\Events\KeyboardKeyEventArgs.cs startLine: 76 assemblies: - OpenTK.Windowing.Desktop @@ -329,12 +293,8 @@ items: fullName: OpenTK.Windowing.Common.KeyboardKeyEventArgs.Command type: Property source: - remote: - path: src/OpenTK.Windowing.Desktop/Events/KeyboardKeyEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Command - path: opentk/src/OpenTK.Windowing.Desktop/Events/KeyboardKeyEventArgs.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\Events\KeyboardKeyEventArgs.cs startLine: 82 assemblies: - OpenTK.Windowing.Desktop diff --git a/api/OpenTK.Windowing.Common.MaximizedEventArgs.yml b/api/OpenTK.Windowing.Common.MaximizedEventArgs.yml index de1cef07..8a93beef 100644 --- a/api/OpenTK.Windowing.Common.MaximizedEventArgs.yml +++ b/api/OpenTK.Windowing.Common.MaximizedEventArgs.yml @@ -15,12 +15,8 @@ items: fullName: OpenTK.Windowing.Common.MaximizedEventArgs type: Struct source: - remote: - path: src/OpenTK.Windowing.Common/Events/MaximizedEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MaximizedEventArgs - path: opentk/src/OpenTK.Windowing.Common/Events/MaximizedEventArgs.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Common\Events\MaximizedEventArgs.cs startLine: 14 assemblies: - OpenTK.Windowing.Common @@ -49,12 +45,8 @@ items: fullName: OpenTK.Windowing.Common.MaximizedEventArgs.MaximizedEventArgs(bool) type: Constructor source: - remote: - path: src/OpenTK.Windowing.Common/Events/MaximizedEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Windowing.Common/Events/MaximizedEventArgs.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Common\Events\MaximizedEventArgs.cs startLine: 22 assemblies: - OpenTK.Windowing.Common @@ -84,12 +76,8 @@ items: fullName: OpenTK.Windowing.Common.MaximizedEventArgs.IsMaximized type: Property source: - remote: - path: src/OpenTK.Windowing.Common/Events/MaximizedEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: IsMaximized - path: opentk/src/OpenTK.Windowing.Common/Events/MaximizedEventArgs.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Common\Events\MaximizedEventArgs.cs startLine: 30 assemblies: - OpenTK.Windowing.Common diff --git a/api/OpenTK.Windowing.Common.MinimizedEventArgs.yml b/api/OpenTK.Windowing.Common.MinimizedEventArgs.yml index 5e2e5afd..efaac9d2 100644 --- a/api/OpenTK.Windowing.Common.MinimizedEventArgs.yml +++ b/api/OpenTK.Windowing.Common.MinimizedEventArgs.yml @@ -15,12 +15,8 @@ items: fullName: OpenTK.Windowing.Common.MinimizedEventArgs type: Struct source: - remote: - path: src/OpenTK.Windowing.Common/Events/MinimizedEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MinimizedEventArgs - path: opentk/src/OpenTK.Windowing.Common/Events/MinimizedEventArgs.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Common\Events\MinimizedEventArgs.cs startLine: 14 assemblies: - OpenTK.Windowing.Common @@ -49,12 +45,8 @@ items: fullName: OpenTK.Windowing.Common.MinimizedEventArgs.MinimizedEventArgs(bool) type: Constructor source: - remote: - path: src/OpenTK.Windowing.Common/Events/MinimizedEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Windowing.Common/Events/MinimizedEventArgs.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Common\Events\MinimizedEventArgs.cs startLine: 22 assemblies: - OpenTK.Windowing.Common @@ -84,12 +76,8 @@ items: fullName: OpenTK.Windowing.Common.MinimizedEventArgs.IsMinimized type: Property source: - remote: - path: src/OpenTK.Windowing.Common/Events/MinimizedEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: IsMinimized - path: opentk/src/OpenTK.Windowing.Common/Events/MinimizedEventArgs.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Common\Events\MinimizedEventArgs.cs startLine: 30 assemblies: - OpenTK.Windowing.Common diff --git a/api/OpenTK.Windowing.Common.MonitorEventArgs.yml b/api/OpenTK.Windowing.Common.MonitorEventArgs.yml index d9352d24..cf1a0f68 100644 --- a/api/OpenTK.Windowing.Common.MonitorEventArgs.yml +++ b/api/OpenTK.Windowing.Common.MonitorEventArgs.yml @@ -16,12 +16,8 @@ items: fullName: OpenTK.Windowing.Common.MonitorEventArgs type: Struct source: - remote: - path: src/OpenTK.Windowing.Common/Events/MonitorEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MonitorEventArgs - path: opentk/src/OpenTK.Windowing.Common/Events/MonitorEventArgs.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Common\Events\MonitorEventArgs.cs startLine: 14 assemblies: - OpenTK.Windowing.Common @@ -50,12 +46,8 @@ items: fullName: OpenTK.Windowing.Common.MonitorEventArgs.MonitorEventArgs(OpenTK.Windowing.Common.MonitorHandle, bool) type: Constructor source: - remote: - path: src/OpenTK.Windowing.Common/Events/MonitorEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Windowing.Common/Events/MonitorEventArgs.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Common\Events\MonitorEventArgs.cs startLine: 21 assemblies: - OpenTK.Windowing.Common @@ -88,12 +80,8 @@ items: fullName: OpenTK.Windowing.Common.MonitorEventArgs.Monitor type: Property source: - remote: - path: src/OpenTK.Windowing.Common/Events/MonitorEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Monitor - path: opentk/src/OpenTK.Windowing.Common/Events/MonitorEventArgs.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Common\Events\MonitorEventArgs.cs startLine: 30 assemblies: - OpenTK.Windowing.Common @@ -119,12 +107,8 @@ items: fullName: OpenTK.Windowing.Common.MonitorEventArgs.IsConnected type: Property source: - remote: - path: src/OpenTK.Windowing.Common/Events/MonitorEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: IsConnected - path: opentk/src/OpenTK.Windowing.Common/Events/MonitorEventArgs.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Common\Events\MonitorEventArgs.cs startLine: 35 assemblies: - OpenTK.Windowing.Common diff --git a/api/OpenTK.Windowing.Common.MonitorHandle.yml b/api/OpenTK.Windowing.Common.MonitorHandle.yml index c67d3fc1..9c89bdd4 100644 --- a/api/OpenTK.Windowing.Common.MonitorHandle.yml +++ b/api/OpenTK.Windowing.Common.MonitorHandle.yml @@ -16,12 +16,8 @@ items: fullName: OpenTK.Windowing.Common.MonitorHandle type: Struct source: - remote: - path: src/OpenTK.Windowing.Common/MonitorHandle.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MonitorHandle - path: opentk/src/OpenTK.Windowing.Common/MonitorHandle.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Common\MonitorHandle.cs startLine: 16 assemblies: - OpenTK.Windowing.Common @@ -50,12 +46,8 @@ items: fullName: OpenTK.Windowing.Common.MonitorHandle.Pointer type: Property source: - remote: - path: src/OpenTK.Windowing.Common/MonitorHandle.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Pointer - path: opentk/src/OpenTK.Windowing.Common/MonitorHandle.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Common\MonitorHandle.cs startLine: 21 assemblies: - OpenTK.Windowing.Common @@ -81,12 +73,8 @@ items: fullName: OpenTK.Windowing.Common.MonitorHandle.MonitorHandle(nint) type: Constructor source: - remote: - path: src/OpenTK.Windowing.Common/MonitorHandle.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Windowing.Common/MonitorHandle.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Common\MonitorHandle.cs startLine: 27 assemblies: - OpenTK.Windowing.Common @@ -116,12 +104,8 @@ items: fullName: OpenTK.Windowing.Common.MonitorHandle.ToUnsafePtr() type: Method source: - remote: - path: src/OpenTK.Windowing.Common/MonitorHandle.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToUnsafePtr - path: opentk/src/OpenTK.Windowing.Common/MonitorHandle.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Common\MonitorHandle.cs startLine: 37 assemblies: - OpenTK.Windowing.Common diff --git a/api/OpenTK.Windowing.Common.MouseButtonEventArgs.yml b/api/OpenTK.Windowing.Common.MouseButtonEventArgs.yml index 32027cd8..6376a8d1 100644 --- a/api/OpenTK.Windowing.Common.MouseButtonEventArgs.yml +++ b/api/OpenTK.Windowing.Common.MouseButtonEventArgs.yml @@ -18,20 +18,16 @@ items: fullName: OpenTK.Windowing.Common.MouseButtonEventArgs type: Struct source: - remote: - path: src/OpenTK.Windowing.Desktop/Events/MouseButtonEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MouseButtonEventArgs - path: opentk/src/OpenTK.Windowing.Desktop/Events/MouseButtonEventArgs.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\Events\MouseButtonEventArgs.cs startLine: 17 assemblies: - OpenTK.Windowing.Desktop namespace: OpenTK.Windowing.Common summary: >- - Defines the event data for INativeWindow.MouseDown + Defines the event data for NativeWindow.MouseDown - and INativeWindow.MouseUp events. + and NativeWindow.MouseUp events. example: [] syntax: content: public readonly struct MouseButtonEventArgs @@ -55,12 +51,8 @@ items: fullName: OpenTK.Windowing.Common.MouseButtonEventArgs.MouseButtonEventArgs(OpenTK.Windowing.GraphicsLibraryFramework.MouseButton, OpenTK.Windowing.GraphicsLibraryFramework.InputAction, OpenTK.Windowing.GraphicsLibraryFramework.KeyModifiers) type: Constructor source: - remote: - path: src/OpenTK.Windowing.Desktop/Events/MouseButtonEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Windowing.Desktop/Events/MouseButtonEventArgs.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\Events\MouseButtonEventArgs.cs startLine: 25 assemblies: - OpenTK.Windowing.Desktop @@ -96,12 +88,8 @@ items: fullName: OpenTK.Windowing.Common.MouseButtonEventArgs.Button type: Property source: - remote: - path: src/OpenTK.Windowing.Desktop/Events/MouseButtonEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Button - path: opentk/src/OpenTK.Windowing.Desktop/Events/MouseButtonEventArgs.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\Events\MouseButtonEventArgs.cs startLine: 35 assemblies: - OpenTK.Windowing.Desktop @@ -127,12 +115,8 @@ items: fullName: OpenTK.Windowing.Common.MouseButtonEventArgs.Action type: Property source: - remote: - path: src/OpenTK.Windowing.Desktop/Events/MouseButtonEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Action - path: opentk/src/OpenTK.Windowing.Desktop/Events/MouseButtonEventArgs.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\Events\MouseButtonEventArgs.cs startLine: 40 assemblies: - OpenTK.Windowing.Desktop @@ -158,12 +142,8 @@ items: fullName: OpenTK.Windowing.Common.MouseButtonEventArgs.Modifiers type: Property source: - remote: - path: src/OpenTK.Windowing.Desktop/Events/MouseButtonEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Modifiers - path: opentk/src/OpenTK.Windowing.Desktop/Events/MouseButtonEventArgs.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\Events\MouseButtonEventArgs.cs startLine: 45 assemblies: - OpenTK.Windowing.Desktop @@ -189,12 +169,8 @@ items: fullName: OpenTK.Windowing.Common.MouseButtonEventArgs.IsPressed type: Property source: - remote: - path: src/OpenTK.Windowing.Desktop/Events/MouseButtonEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: IsPressed - path: opentk/src/OpenTK.Windowing.Desktop/Events/MouseButtonEventArgs.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\Events\MouseButtonEventArgs.cs startLine: 50 assemblies: - OpenTK.Windowing.Desktop diff --git a/api/OpenTK.Windowing.Common.MouseMoveEventArgs.yml b/api/OpenTK.Windowing.Common.MouseMoveEventArgs.yml index 09c602fd..7855d92b 100644 --- a/api/OpenTK.Windowing.Common.MouseMoveEventArgs.yml +++ b/api/OpenTK.Windowing.Common.MouseMoveEventArgs.yml @@ -21,12 +21,8 @@ items: fullName: OpenTK.Windowing.Common.MouseMoveEventArgs type: Struct source: - remote: - path: src/OpenTK.Windowing.Common/Events/MouseMoveEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MouseMoveEventArgs - path: opentk/src/OpenTK.Windowing.Common/Events/MouseMoveEventArgs.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Common\Events\MouseMoveEventArgs.cs startLine: 16 assemblies: - OpenTK.Windowing.Common @@ -55,12 +51,8 @@ items: fullName: OpenTK.Windowing.Common.MouseMoveEventArgs.MouseMoveEventArgs(OpenTK.Mathematics.Vector2, OpenTK.Mathematics.Vector2) type: Constructor source: - remote: - path: src/OpenTK.Windowing.Common/Events/MouseMoveEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Windowing.Common/Events/MouseMoveEventArgs.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Common\Events\MouseMoveEventArgs.cs startLine: 23 assemblies: - OpenTK.Windowing.Common @@ -93,12 +85,8 @@ items: fullName: OpenTK.Windowing.Common.MouseMoveEventArgs.MouseMoveEventArgs(float, float, float, float) type: Constructor source: - remote: - path: src/OpenTK.Windowing.Common/Events/MouseMoveEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Windowing.Common/Events/MouseMoveEventArgs.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Common\Events\MouseMoveEventArgs.cs startLine: 36 assemblies: - OpenTK.Windowing.Common @@ -137,12 +125,8 @@ items: fullName: OpenTK.Windowing.Common.MouseMoveEventArgs.X type: Property source: - remote: - path: src/OpenTK.Windowing.Common/Events/MouseMoveEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: X - path: opentk/src/OpenTK.Windowing.Common/Events/MouseMoveEventArgs.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Common\Events\MouseMoveEventArgs.cs startLine: 45 assemblies: - OpenTK.Windowing.Common @@ -171,12 +155,8 @@ items: fullName: OpenTK.Windowing.Common.MouseMoveEventArgs.Y type: Property source: - remote: - path: src/OpenTK.Windowing.Common/Events/MouseMoveEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Y - path: opentk/src/OpenTK.Windowing.Common/Events/MouseMoveEventArgs.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Common\Events\MouseMoveEventArgs.cs startLine: 51 assemblies: - OpenTK.Windowing.Common @@ -205,12 +185,8 @@ items: fullName: OpenTK.Windowing.Common.MouseMoveEventArgs.Position type: Property source: - remote: - path: src/OpenTK.Windowing.Common/Events/MouseMoveEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Position - path: opentk/src/OpenTK.Windowing.Common/Events/MouseMoveEventArgs.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Common\Events\MouseMoveEventArgs.cs startLine: 57 assemblies: - OpenTK.Windowing.Common @@ -239,12 +215,8 @@ items: fullName: OpenTK.Windowing.Common.MouseMoveEventArgs.DeltaX type: Property source: - remote: - path: src/OpenTK.Windowing.Common/Events/MouseMoveEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DeltaX - path: opentk/src/OpenTK.Windowing.Common/Events/MouseMoveEventArgs.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Common\Events\MouseMoveEventArgs.cs startLine: 62 assemblies: - OpenTK.Windowing.Common @@ -270,12 +242,8 @@ items: fullName: OpenTK.Windowing.Common.MouseMoveEventArgs.DeltaY type: Property source: - remote: - path: src/OpenTK.Windowing.Common/Events/MouseMoveEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DeltaY - path: opentk/src/OpenTK.Windowing.Common/Events/MouseMoveEventArgs.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Common\Events\MouseMoveEventArgs.cs startLine: 67 assemblies: - OpenTK.Windowing.Common @@ -301,12 +269,8 @@ items: fullName: OpenTK.Windowing.Common.MouseMoveEventArgs.Delta type: Property source: - remote: - path: src/OpenTK.Windowing.Common/Events/MouseMoveEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Delta - path: opentk/src/OpenTK.Windowing.Common/Events/MouseMoveEventArgs.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Common\Events\MouseMoveEventArgs.cs startLine: 72 assemblies: - OpenTK.Windowing.Common diff --git a/api/OpenTK.Windowing.Common.MouseWheelEventArgs.yml b/api/OpenTK.Windowing.Common.MouseWheelEventArgs.yml index e3d87998..3c164d3c 100644 --- a/api/OpenTK.Windowing.Common.MouseWheelEventArgs.yml +++ b/api/OpenTK.Windowing.Common.MouseWheelEventArgs.yml @@ -18,12 +18,8 @@ items: fullName: OpenTK.Windowing.Common.MouseWheelEventArgs type: Struct source: - remote: - path: src/OpenTK.Windowing.Common/Events/MouseWheelEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MouseWheelEventArgs - path: opentk/src/OpenTK.Windowing.Common/Events/MouseWheelEventArgs.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Common\Events\MouseWheelEventArgs.cs startLine: 16 assemblies: - OpenTK.Windowing.Common @@ -52,12 +48,8 @@ items: fullName: OpenTK.Windowing.Common.MouseWheelEventArgs.MouseWheelEventArgs(OpenTK.Mathematics.Vector2) type: Constructor source: - remote: - path: src/OpenTK.Windowing.Common/Events/MouseWheelEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Windowing.Common/Events/MouseWheelEventArgs.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Common\Events\MouseWheelEventArgs.cs startLine: 22 assemblies: - OpenTK.Windowing.Common @@ -87,12 +79,8 @@ items: fullName: OpenTK.Windowing.Common.MouseWheelEventArgs.MouseWheelEventArgs(float, float) type: Constructor source: - remote: - path: src/OpenTK.Windowing.Common/Events/MouseWheelEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Windowing.Common/Events/MouseWheelEventArgs.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Common\Events\MouseWheelEventArgs.cs startLine: 32 assemblies: - OpenTK.Windowing.Common @@ -125,12 +113,8 @@ items: fullName: OpenTK.Windowing.Common.MouseWheelEventArgs.Offset type: Property source: - remote: - path: src/OpenTK.Windowing.Common/Events/MouseWheelEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Offset - path: opentk/src/OpenTK.Windowing.Common/Events/MouseWheelEventArgs.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Common\Events\MouseWheelEventArgs.cs startLine: 40 assemblies: - OpenTK.Windowing.Common @@ -156,12 +140,8 @@ items: fullName: OpenTK.Windowing.Common.MouseWheelEventArgs.OffsetX type: Property source: - remote: - path: src/OpenTK.Windowing.Common/Events/MouseWheelEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: OffsetX - path: opentk/src/OpenTK.Windowing.Common/Events/MouseWheelEventArgs.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Common\Events\MouseWheelEventArgs.cs startLine: 45 assemblies: - OpenTK.Windowing.Common @@ -187,12 +167,8 @@ items: fullName: OpenTK.Windowing.Common.MouseWheelEventArgs.OffsetY type: Property source: - remote: - path: src/OpenTK.Windowing.Common/Events/MouseWheelEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: OffsetY - path: opentk/src/OpenTK.Windowing.Common/Events/MouseWheelEventArgs.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Common\Events\MouseWheelEventArgs.cs startLine: 50 assemblies: - OpenTK.Windowing.Common diff --git a/api/OpenTK.Windowing.Common.ResizeEventArgs.yml b/api/OpenTK.Windowing.Common.ResizeEventArgs.yml index 33b41f5c..e9b75e68 100644 --- a/api/OpenTK.Windowing.Common.ResizeEventArgs.yml +++ b/api/OpenTK.Windowing.Common.ResizeEventArgs.yml @@ -18,12 +18,8 @@ items: fullName: OpenTK.Windowing.Common.ResizeEventArgs type: Struct source: - remote: - path: src/OpenTK.Windowing.Common/Events/ResizeEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ResizeEventArgs - path: opentk/src/OpenTK.Windowing.Common/Events/ResizeEventArgs.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Common\Events\ResizeEventArgs.cs startLine: 16 assemblies: - OpenTK.Windowing.Common @@ -52,12 +48,8 @@ items: fullName: OpenTK.Windowing.Common.ResizeEventArgs.ResizeEventArgs(OpenTK.Mathematics.Vector2i) type: Constructor source: - remote: - path: src/OpenTK.Windowing.Common/Events/ResizeEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Windowing.Common/Events/ResizeEventArgs.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Common\Events\ResizeEventArgs.cs startLine: 22 assemblies: - OpenTK.Windowing.Common @@ -87,12 +79,8 @@ items: fullName: OpenTK.Windowing.Common.ResizeEventArgs.ResizeEventArgs(int, int) type: Constructor source: - remote: - path: src/OpenTK.Windowing.Common/Events/ResizeEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Windowing.Common/Events/ResizeEventArgs.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Common\Events\ResizeEventArgs.cs startLine: 32 assemblies: - OpenTK.Windowing.Common @@ -125,12 +113,8 @@ items: fullName: OpenTK.Windowing.Common.ResizeEventArgs.Size type: Property source: - remote: - path: src/OpenTK.Windowing.Common/Events/ResizeEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Size - path: opentk/src/OpenTK.Windowing.Common/Events/ResizeEventArgs.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Common\Events\ResizeEventArgs.cs startLine: 40 assemblies: - OpenTK.Windowing.Common @@ -156,12 +140,8 @@ items: fullName: OpenTK.Windowing.Common.ResizeEventArgs.Width type: Property source: - remote: - path: src/OpenTK.Windowing.Common/Events/ResizeEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Width - path: opentk/src/OpenTK.Windowing.Common/Events/ResizeEventArgs.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Common\Events\ResizeEventArgs.cs startLine: 45 assemblies: - OpenTK.Windowing.Common @@ -187,12 +167,8 @@ items: fullName: OpenTK.Windowing.Common.ResizeEventArgs.Height type: Property source: - remote: - path: src/OpenTK.Windowing.Common/Events/ResizeEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Height - path: opentk/src/OpenTK.Windowing.Common/Events/ResizeEventArgs.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Common\Events\ResizeEventArgs.cs startLine: 50 assemblies: - OpenTK.Windowing.Common diff --git a/api/OpenTK.Windowing.Common.TextInputEventArgs.yml b/api/OpenTK.Windowing.Common.TextInputEventArgs.yml index 44ba0eb3..2c8cbadc 100644 --- a/api/OpenTK.Windowing.Common.TextInputEventArgs.yml +++ b/api/OpenTK.Windowing.Common.TextInputEventArgs.yml @@ -16,12 +16,8 @@ items: fullName: OpenTK.Windowing.Common.TextInputEventArgs type: Struct source: - remote: - path: src/OpenTK.Windowing.Common/Events/TextInputEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TextInputEventArgs - path: opentk/src/OpenTK.Windowing.Common/Events/TextInputEventArgs.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Common\Events\TextInputEventArgs.cs startLine: 14 assemblies: - OpenTK.Windowing.Common @@ -50,12 +46,8 @@ items: fullName: OpenTK.Windowing.Common.TextInputEventArgs.TextInputEventArgs(int) type: Constructor source: - remote: - path: src/OpenTK.Windowing.Common/Events/TextInputEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Windowing.Common/Events/TextInputEventArgs.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Common\Events\TextInputEventArgs.cs startLine: 20 assemblies: - OpenTK.Windowing.Common @@ -85,12 +77,8 @@ items: fullName: OpenTK.Windowing.Common.TextInputEventArgs.Unicode type: Property source: - remote: - path: src/OpenTK.Windowing.Common/Events/TextInputEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Unicode - path: opentk/src/OpenTK.Windowing.Common/Events/TextInputEventArgs.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Common\Events\TextInputEventArgs.cs startLine: 28 assemblies: - OpenTK.Windowing.Common @@ -116,12 +104,8 @@ items: fullName: OpenTK.Windowing.Common.TextInputEventArgs.AsString type: Property source: - remote: - path: src/OpenTK.Windowing.Common/Events/TextInputEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: AsString - path: opentk/src/OpenTK.Windowing.Common/Events/TextInputEventArgs.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Common\Events\TextInputEventArgs.cs startLine: 33 assemblies: - OpenTK.Windowing.Common diff --git a/api/OpenTK.Windowing.Common.VSyncMode.yml b/api/OpenTK.Windowing.Common.VSyncMode.yml index 99cba0a2..75b08795 100644 --- a/api/OpenTK.Windowing.Common.VSyncMode.yml +++ b/api/OpenTK.Windowing.Common.VSyncMode.yml @@ -16,12 +16,8 @@ items: fullName: OpenTK.Windowing.Common.VSyncMode type: Enum source: - remote: - path: src/OpenTK.Windowing.Common/VSyncMode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: VSyncMode - path: opentk/src/OpenTK.Windowing.Common/VSyncMode.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Common\VSyncMode.cs startLine: 16 assemblies: - OpenTK.Windowing.Common @@ -43,12 +39,8 @@ items: fullName: OpenTK.Windowing.Common.VSyncMode.Off type: Field source: - remote: - path: src/OpenTK.Windowing.Common/VSyncMode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Off - path: opentk/src/OpenTK.Windowing.Common/VSyncMode.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Common\VSyncMode.cs startLine: 21 assemblies: - OpenTK.Windowing.Common @@ -71,12 +63,8 @@ items: fullName: OpenTK.Windowing.Common.VSyncMode.On type: Field source: - remote: - path: src/OpenTK.Windowing.Common/VSyncMode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: On - path: opentk/src/OpenTK.Windowing.Common/VSyncMode.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Common\VSyncMode.cs startLine: 26 assemblies: - OpenTK.Windowing.Common @@ -99,12 +87,8 @@ items: fullName: OpenTK.Windowing.Common.VSyncMode.Adaptive type: Field source: - remote: - path: src/OpenTK.Windowing.Common/VSyncMode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Adaptive - path: opentk/src/OpenTK.Windowing.Common/VSyncMode.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Common\VSyncMode.cs startLine: 36 assemblies: - OpenTK.Windowing.Common diff --git a/api/OpenTK.Windowing.Common.WindowBorder.yml b/api/OpenTK.Windowing.Common.WindowBorder.yml index d341f722..9ac74a9e 100644 --- a/api/OpenTK.Windowing.Common.WindowBorder.yml +++ b/api/OpenTK.Windowing.Common.WindowBorder.yml @@ -16,12 +16,8 @@ items: fullName: OpenTK.Windowing.Common.WindowBorder type: Enum source: - remote: - path: src/OpenTK.Windowing.Common/WindowBorder.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: WindowBorder - path: opentk/src/OpenTK.Windowing.Common/WindowBorder.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Common\WindowBorder.cs startLine: 14 assemblies: - OpenTK.Windowing.Common @@ -43,12 +39,8 @@ items: fullName: OpenTK.Windowing.Common.WindowBorder.Resizable type: Field source: - remote: - path: src/OpenTK.Windowing.Common/WindowBorder.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Resizable - path: opentk/src/OpenTK.Windowing.Common/WindowBorder.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Common\WindowBorder.cs startLine: 19 assemblies: - OpenTK.Windowing.Common @@ -71,12 +63,8 @@ items: fullName: OpenTK.Windowing.Common.WindowBorder.Fixed type: Field source: - remote: - path: src/OpenTK.Windowing.Common/WindowBorder.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Fixed - path: opentk/src/OpenTK.Windowing.Common/WindowBorder.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Common\WindowBorder.cs startLine: 24 assemblies: - OpenTK.Windowing.Common @@ -99,12 +87,8 @@ items: fullName: OpenTK.Windowing.Common.WindowBorder.Hidden type: Field source: - remote: - path: src/OpenTK.Windowing.Common/WindowBorder.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Hidden - path: opentk/src/OpenTK.Windowing.Common/WindowBorder.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Common\WindowBorder.cs startLine: 29 assemblies: - OpenTK.Windowing.Common diff --git a/api/OpenTK.Windowing.Common.WindowPositionEventArgs.yml b/api/OpenTK.Windowing.Common.WindowPositionEventArgs.yml index a1ab7005..5d7d578c 100644 --- a/api/OpenTK.Windowing.Common.WindowPositionEventArgs.yml +++ b/api/OpenTK.Windowing.Common.WindowPositionEventArgs.yml @@ -18,12 +18,8 @@ items: fullName: OpenTK.Windowing.Common.WindowPositionEventArgs type: Struct source: - remote: - path: src/OpenTK.Windowing.Common/Events/WindowPositionEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: WindowPositionEventArgs - path: opentk/src/OpenTK.Windowing.Common/Events/WindowPositionEventArgs.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Common\Events\WindowPositionEventArgs.cs startLine: 17 assemblies: - OpenTK.Windowing.Common @@ -52,12 +48,8 @@ items: fullName: OpenTK.Windowing.Common.WindowPositionEventArgs.WindowPositionEventArgs(OpenTK.Mathematics.Vector2i) type: Constructor source: - remote: - path: src/OpenTK.Windowing.Common/Events/WindowPositionEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Windowing.Common/Events/WindowPositionEventArgs.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Common\Events\WindowPositionEventArgs.cs startLine: 23 assemblies: - OpenTK.Windowing.Common @@ -87,12 +79,8 @@ items: fullName: OpenTK.Windowing.Common.WindowPositionEventArgs.WindowPositionEventArgs(int, int) type: Constructor source: - remote: - path: src/OpenTK.Windowing.Common/Events/WindowPositionEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Windowing.Common/Events/WindowPositionEventArgs.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Common\Events\WindowPositionEventArgs.cs startLine: 33 assemblies: - OpenTK.Windowing.Common @@ -125,12 +113,8 @@ items: fullName: OpenTK.Windowing.Common.WindowPositionEventArgs.Position type: Property source: - remote: - path: src/OpenTK.Windowing.Common/Events/WindowPositionEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Position - path: opentk/src/OpenTK.Windowing.Common/Events/WindowPositionEventArgs.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Common\Events\WindowPositionEventArgs.cs startLine: 41 assemblies: - OpenTK.Windowing.Common @@ -156,12 +140,8 @@ items: fullName: OpenTK.Windowing.Common.WindowPositionEventArgs.X type: Property source: - remote: - path: src/OpenTK.Windowing.Common/Events/WindowPositionEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: X - path: opentk/src/OpenTK.Windowing.Common/Events/WindowPositionEventArgs.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Common\Events\WindowPositionEventArgs.cs startLine: 46 assemblies: - OpenTK.Windowing.Common @@ -187,12 +167,8 @@ items: fullName: OpenTK.Windowing.Common.WindowPositionEventArgs.Y type: Property source: - remote: - path: src/OpenTK.Windowing.Common/Events/WindowPositionEventArgs.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Y - path: opentk/src/OpenTK.Windowing.Common/Events/WindowPositionEventArgs.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Common\Events\WindowPositionEventArgs.cs startLine: 51 assemblies: - OpenTK.Windowing.Common diff --git a/api/OpenTK.Windowing.Common.WindowState.yml b/api/OpenTK.Windowing.Common.WindowState.yml index 30a68834..012565c0 100644 --- a/api/OpenTK.Windowing.Common.WindowState.yml +++ b/api/OpenTK.Windowing.Common.WindowState.yml @@ -17,12 +17,8 @@ items: fullName: OpenTK.Windowing.Common.WindowState type: Enum source: - remote: - path: src/OpenTK.Windowing.Common/WindowState.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: WindowState - path: opentk/src/OpenTK.Windowing.Common/WindowState.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Common\WindowState.cs startLine: 14 assemblies: - OpenTK.Windowing.Common @@ -44,12 +40,8 @@ items: fullName: OpenTK.Windowing.Common.WindowState.Normal type: Field source: - remote: - path: src/OpenTK.Windowing.Common/WindowState.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Normal - path: opentk/src/OpenTK.Windowing.Common/WindowState.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Common\WindowState.cs startLine: 19 assemblies: - OpenTK.Windowing.Common @@ -72,12 +64,8 @@ items: fullName: OpenTK.Windowing.Common.WindowState.Minimized type: Field source: - remote: - path: src/OpenTK.Windowing.Common/WindowState.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Minimized - path: opentk/src/OpenTK.Windowing.Common/WindowState.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Common\WindowState.cs startLine: 24 assemblies: - OpenTK.Windowing.Common @@ -100,12 +88,8 @@ items: fullName: OpenTK.Windowing.Common.WindowState.Maximized type: Field source: - remote: - path: src/OpenTK.Windowing.Common/WindowState.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Maximized - path: opentk/src/OpenTK.Windowing.Common/WindowState.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Common\WindowState.cs startLine: 29 assemblies: - OpenTK.Windowing.Common @@ -128,12 +112,8 @@ items: fullName: OpenTK.Windowing.Common.WindowState.Fullscreen type: Field source: - remote: - path: src/OpenTK.Windowing.Common/WindowState.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Fullscreen - path: opentk/src/OpenTK.Windowing.Common/WindowState.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Common\WindowState.cs startLine: 34 assemblies: - OpenTK.Windowing.Common diff --git a/api/OpenTK.Windowing.Desktop.GLFWGraphicsContext.yml b/api/OpenTK.Windowing.Desktop.GLFWGraphicsContext.yml index 6d5b0281..1c2df300 100644 --- a/api/OpenTK.Windowing.Desktop.GLFWGraphicsContext.yml +++ b/api/OpenTK.Windowing.Desktop.GLFWGraphicsContext.yml @@ -20,12 +20,8 @@ items: fullName: OpenTK.Windowing.Desktop.GLFWGraphicsContext type: Class source: - remote: - path: src/OpenTK.Windowing.Desktop/GLFWGraphicsContext.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GLFWGraphicsContext - path: opentk/src/OpenTK.Windowing.Desktop/GLFWGraphicsContext.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\GLFWGraphicsContext.cs startLine: 9 assemblies: - OpenTK.Windowing.Desktop @@ -60,12 +56,8 @@ items: fullName: OpenTK.Windowing.Desktop.GLFWGraphicsContext.WindowPtr type: Property source: - remote: - path: src/OpenTK.Windowing.Desktop/GLFWGraphicsContext.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: WindowPtr - path: opentk/src/OpenTK.Windowing.Desktop/GLFWGraphicsContext.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\GLFWGraphicsContext.cs startLine: 14 assemblies: - OpenTK.Windowing.Desktop @@ -93,12 +85,8 @@ items: fullName: OpenTK.Windowing.Desktop.GLFWGraphicsContext.GLFWGraphicsContext(OpenTK.Windowing.GraphicsLibraryFramework.Window*) type: Constructor source: - remote: - path: src/OpenTK.Windowing.Desktop/GLFWGraphicsContext.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Windowing.Desktop/GLFWGraphicsContext.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\GLFWGraphicsContext.cs startLine: 20 assemblies: - OpenTK.Windowing.Desktop @@ -128,12 +116,8 @@ items: fullName: OpenTK.Windowing.Desktop.GLFWGraphicsContext.IsCurrent type: Property source: - remote: - path: src/OpenTK.Windowing.Desktop/GLFWGraphicsContext.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: IsCurrent - path: opentk/src/OpenTK.Windowing.Desktop/GLFWGraphicsContext.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\GLFWGraphicsContext.cs startLine: 26 assemblies: - OpenTK.Windowing.Desktop @@ -161,12 +145,8 @@ items: fullName: OpenTK.Windowing.Desktop.GLFWGraphicsContext.SwapInterval type: Property source: - remote: - path: src/OpenTK.Windowing.Desktop/GLFWGraphicsContext.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SwapInterval - path: opentk/src/OpenTK.Windowing.Desktop/GLFWGraphicsContext.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\GLFWGraphicsContext.cs startLine: 31 assemblies: - OpenTK.Windowing.Desktop @@ -195,12 +175,8 @@ items: fullName: OpenTK.Windowing.Desktop.GLFWGraphicsContext.SwapBuffers() type: Method source: - remote: - path: src/OpenTK.Windowing.Desktop/GLFWGraphicsContext.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SwapBuffers - path: opentk/src/OpenTK.Windowing.Desktop/GLFWGraphicsContext.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\GLFWGraphicsContext.cs startLine: 42 assemblies: - OpenTK.Windowing.Desktop @@ -225,12 +201,8 @@ items: fullName: OpenTK.Windowing.Desktop.GLFWGraphicsContext.MakeCurrent() type: Method source: - remote: - path: src/OpenTK.Windowing.Desktop/GLFWGraphicsContext.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MakeCurrent - path: opentk/src/OpenTK.Windowing.Desktop/GLFWGraphicsContext.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\GLFWGraphicsContext.cs startLine: 48 assemblies: - OpenTK.Windowing.Desktop @@ -255,12 +227,8 @@ items: fullName: OpenTK.Windowing.Desktop.GLFWGraphicsContext.MakeNoneCurrent() type: Method source: - remote: - path: src/OpenTK.Windowing.Desktop/GLFWGraphicsContext.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MakeNoneCurrent - path: opentk/src/OpenTK.Windowing.Desktop/GLFWGraphicsContext.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\GLFWGraphicsContext.cs startLine: 54 assemblies: - OpenTK.Windowing.Desktop diff --git a/api/OpenTK.Windowing.Desktop.GLFWProvider.yml b/api/OpenTK.Windowing.Desktop.GLFWProvider.yml index 6ba8e75a..5d083547 100644 --- a/api/OpenTK.Windowing.Desktop.GLFWProvider.yml +++ b/api/OpenTK.Windowing.Desktop.GLFWProvider.yml @@ -7,6 +7,7 @@ items: children: - OpenTK.Windowing.Desktop.GLFWProvider.CheckForMainThread - OpenTK.Windowing.Desktop.GLFWProvider.EnsureInitialized + - OpenTK.Windowing.Desktop.GLFWProvider.HonorOpenTK4UseWayland - OpenTK.Windowing.Desktop.GLFWProvider.IsOnMainThread - OpenTK.Windowing.Desktop.GLFWProvider.SetErrorCallback(OpenTK.Windowing.GraphicsLibraryFramework.GLFWCallbacks.ErrorCallback) langs: @@ -17,13 +18,9 @@ items: fullName: OpenTK.Windowing.Desktop.GLFWProvider type: Class source: - remote: - path: src/OpenTK.Windowing.Desktop/GLFWProvider.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GLFWProvider - path: opentk/src/OpenTK.Windowing.Desktop/GLFWProvider.cs - startLine: 20 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\GLFWProvider.cs + startLine: 23 assemblies: - OpenTK.Windowing.Desktop namespace: OpenTK.Windowing.Desktop @@ -54,13 +51,9 @@ items: fullName: OpenTK.Windowing.Desktop.GLFWProvider.SetErrorCallback(OpenTK.Windowing.GraphicsLibraryFramework.GLFWCallbacks.ErrorCallback) type: Method source: - remote: - path: src/OpenTK.Windowing.Desktop/GLFWProvider.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetErrorCallback - path: opentk/src/OpenTK.Windowing.Desktop/GLFWProvider.cs - startLine: 35 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\GLFWProvider.cs + startLine: 38 assemblies: - OpenTK.Windowing.Desktop namespace: OpenTK.Windowing.Desktop @@ -86,13 +79,9 @@ items: fullName: OpenTK.Windowing.Desktop.GLFWProvider.IsOnMainThread type: Property source: - remote: - path: src/OpenTK.Windowing.Desktop/GLFWProvider.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: IsOnMainThread - path: opentk/src/OpenTK.Windowing.Desktop/GLFWProvider.cs - startLine: 51 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\GLFWProvider.cs + startLine: 54 assemblies: - OpenTK.Windowing.Desktop namespace: OpenTK.Windowing.Desktop @@ -120,13 +109,9 @@ items: fullName: OpenTK.Windowing.Desktop.GLFWProvider.CheckForMainThread type: Property source: - remote: - path: src/OpenTK.Windowing.Desktop/GLFWProvider.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CheckForMainThread - path: opentk/src/OpenTK.Windowing.Desktop/GLFWProvider.cs - startLine: 56 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\GLFWProvider.cs + startLine: 59 assemblies: - OpenTK.Windowing.Desktop namespace: OpenTK.Windowing.Desktop @@ -139,6 +124,40 @@ items: type: System.Boolean content.vb: Public Shared Property CheckForMainThread As Boolean overload: OpenTK.Windowing.Desktop.GLFWProvider.CheckForMainThread* +- uid: OpenTK.Windowing.Desktop.GLFWProvider.HonorOpenTK4UseWayland + commentId: P:OpenTK.Windowing.Desktop.GLFWProvider.HonorOpenTK4UseWayland + id: HonorOpenTK4UseWayland + parent: OpenTK.Windowing.Desktop.GLFWProvider + langs: + - csharp + - vb + name: HonorOpenTK4UseWayland + nameWithType: GLFWProvider.HonorOpenTK4UseWayland + fullName: OpenTK.Windowing.Desktop.GLFWProvider.HonorOpenTK4UseWayland + type: Property + source: + id: HonorOpenTK4UseWayland + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\GLFWProvider.cs + startLine: 67 + assemblies: + - OpenTK.Windowing.Desktop + namespace: OpenTK.Windowing.Desktop + summary: >- + Whether or not to honor the OPENTK_4_USE_WAYLAND environment variable. + + In OpenTK 4.8 OPENTK_4_USE_WAYLAND=1 was used to opt into using wayland when wayland is available. + + In OpenTK 4.9 OPENTK_4_USE_WAYLAND=0 is used to opt-out of using wayland when wayland is available. + + Setting OPENTK_4_USE_WAYLAND=1 will not have any effect and will use GLFWs default platform resolution. + example: [] + syntax: + content: public static bool HonorOpenTK4UseWayland { get; set; } + parameters: [] + return: + type: System.Boolean + content.vb: Public Shared Property HonorOpenTK4UseWayland As Boolean + overload: OpenTK.Windowing.Desktop.GLFWProvider.HonorOpenTK4UseWayland* - uid: OpenTK.Windowing.Desktop.GLFWProvider.EnsureInitialized commentId: M:OpenTK.Windowing.Desktop.GLFWProvider.EnsureInitialized id: EnsureInitialized @@ -151,13 +170,9 @@ items: fullName: OpenTK.Windowing.Desktop.GLFWProvider.EnsureInitialized() type: Method source: - remote: - path: src/OpenTK.Windowing.Desktop/GLFWProvider.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: EnsureInitialized - path: opentk/src/OpenTK.Windowing.Desktop/GLFWProvider.cs - startLine: 64 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\GLFWProvider.cs + startLine: 75 assemblies: - OpenTK.Windowing.Desktop namespace: OpenTK.Windowing.Desktop @@ -534,6 +549,12 @@ references: name: CheckForMainThread nameWithType: GLFWProvider.CheckForMainThread fullName: OpenTK.Windowing.Desktop.GLFWProvider.CheckForMainThread +- uid: OpenTK.Windowing.Desktop.GLFWProvider.HonorOpenTK4UseWayland* + commentId: Overload:OpenTK.Windowing.Desktop.GLFWProvider.HonorOpenTK4UseWayland + href: OpenTK.Windowing.Desktop.GLFWProvider.html#OpenTK_Windowing_Desktop_GLFWProvider_HonorOpenTK4UseWayland + name: HonorOpenTK4UseWayland + nameWithType: GLFWProvider.HonorOpenTK4UseWayland + fullName: OpenTK.Windowing.Desktop.GLFWProvider.HonorOpenTK4UseWayland - uid: OpenTK.Windowing.GraphicsLibraryFramework.GLFWException commentId: T:OpenTK.Windowing.GraphicsLibraryFramework.GLFWException href: OpenTK.Windowing.GraphicsLibraryFramework.GLFWException.html diff --git a/api/OpenTK.Windowing.Desktop.GameWindow.yml b/api/OpenTK.Windowing.Desktop.GameWindow.yml index c3ddd8b9..31554c49 100644 --- a/api/OpenTK.Windowing.Desktop.GameWindow.yml +++ b/api/OpenTK.Windowing.Desktop.GameWindow.yml @@ -37,12 +37,8 @@ items: fullName: OpenTK.Windowing.Desktop.GameWindow type: Class source: - remote: - path: src/OpenTK.Windowing.Desktop/GameWindow.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GameWindow - path: opentk/src/OpenTK.Windowing.Desktop/GameWindow.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\GameWindow.cs startLine: 48 assemblies: - OpenTK.Windowing.Desktop @@ -179,12 +175,8 @@ items: fullName: OpenTK.Windowing.Desktop.GameWindow.Load type: Event source: - remote: - path: src/OpenTK.Windowing.Desktop/GameWindow.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Load - path: opentk/src/OpenTK.Windowing.Desktop/GameWindow.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\GameWindow.cs startLine: 53 assemblies: - OpenTK.Windowing.Desktop @@ -208,12 +200,8 @@ items: fullName: OpenTK.Windowing.Desktop.GameWindow.Unload type: Event source: - remote: - path: src/OpenTK.Windowing.Desktop/GameWindow.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Unload - path: opentk/src/OpenTK.Windowing.Desktop/GameWindow.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\GameWindow.cs startLine: 58 assemblies: - OpenTK.Windowing.Desktop @@ -237,12 +225,8 @@ items: fullName: OpenTK.Windowing.Desktop.GameWindow.UpdateFrame type: Event source: - remote: - path: src/OpenTK.Windowing.Desktop/GameWindow.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: UpdateFrame - path: opentk/src/OpenTK.Windowing.Desktop/GameWindow.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\GameWindow.cs startLine: 63 assemblies: - OpenTK.Windowing.Desktop @@ -266,12 +250,8 @@ items: fullName: OpenTK.Windowing.Desktop.GameWindow.RenderThreadStarted type: Event source: - remote: - path: src/OpenTK.Windowing.Desktop/GameWindow.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: RenderThreadStarted - path: opentk/src/OpenTK.Windowing.Desktop/GameWindow.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\GameWindow.cs startLine: 72 assemblies: - OpenTK.Windowing.Desktop @@ -314,12 +294,8 @@ items: fullName: OpenTK.Windowing.Desktop.GameWindow.RenderFrame type: Event source: - remote: - path: src/OpenTK.Windowing.Desktop/GameWindow.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: RenderFrame - path: opentk/src/OpenTK.Windowing.Desktop/GameWindow.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\GameWindow.cs startLine: 77 assemblies: - OpenTK.Windowing.Desktop @@ -343,12 +319,8 @@ items: fullName: OpenTK.Windowing.Desktop.GameWindow.IsRunningSlowly type: Property source: - remote: - path: src/OpenTK.Windowing.Desktop/GameWindow.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: IsRunningSlowly - path: opentk/src/OpenTK.Windowing.Desktop/GameWindow.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\GameWindow.cs startLine: 91 assemblies: - OpenTK.Windowing.Desktop @@ -379,12 +351,8 @@ items: fullName: OpenTK.Windowing.Desktop.GameWindow.IsMultiThreaded type: Property source: - remote: - path: src/OpenTK.Windowing.Desktop/GameWindow.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: IsMultiThreaded - path: opentk/src/OpenTK.Windowing.Desktop/GameWindow.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\GameWindow.cs startLine: 104 assemblies: - OpenTK.Windowing.Desktop @@ -392,9 +360,9 @@ items: summary: Gets a value indicating whether or not the GameWindow should use a separate thread for rendering. remarks: >-

- If this is true, render frames will be processed in a separate thread. - Do not enable this unless your code is thread safe. -

+ If this is true, render frames will be processed in a separate thread. + Do not enable this unless your code is thread safe. +

example: [] syntax: content: >- @@ -429,18 +397,21 @@ items: fullName: OpenTK.Windowing.Desktop.GameWindow.RenderFrequency type: Property source: - remote: - path: src/OpenTK.Windowing.Desktop/GameWindow.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: RenderFrequency - path: opentk/src/OpenTK.Windowing.Desktop/GameWindow.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\GameWindow.cs startLine: 117 assemblies: - OpenTK.Windowing.Desktop namespace: OpenTK.Windowing.Desktop summary: Gets or sets a double representing the render frequency, in hertz. - remarks: "

\r\nA value of 0.0 indicates that RenderFrame events are generated at the maximum possible frequency (i.e. only\r\nlimited by the hardware's capabilities).\r\n

\r\n

Values lower than 1.0Hz are clamped to 0.0. Values higher than 500.0Hz are clamped to 500.0Hz.

" + remarks: >- +

+ + A value of 0.0 indicates that RenderFrame events are generated at the maximum possible frequency (i.e. only + + limited by the hardware's capabilities). +

+

Values lower than 1.0Hz are clamped to 0.0. Values higher than 500.0Hz are clamped to 500.0Hz.

example: [] syntax: content: >- @@ -475,12 +446,8 @@ items: fullName: OpenTK.Windowing.Desktop.GameWindow.RenderTime type: Property source: - remote: - path: src/OpenTK.Windowing.Desktop/GameWindow.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: RenderTime - path: opentk/src/OpenTK.Windowing.Desktop/GameWindow.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\GameWindow.cs startLine: 127 assemblies: - OpenTK.Windowing.Desktop @@ -520,12 +487,8 @@ items: fullName: OpenTK.Windowing.Desktop.GameWindow.UpdateTime type: Property source: - remote: - path: src/OpenTK.Windowing.Desktop/GameWindow.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: UpdateTime - path: opentk/src/OpenTK.Windowing.Desktop/GameWindow.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\GameWindow.cs startLine: 133 assemblies: - OpenTK.Windowing.Desktop @@ -551,18 +514,21 @@ items: fullName: OpenTK.Windowing.Desktop.GameWindow.UpdateFrequency type: Property source: - remote: - path: src/OpenTK.Windowing.Desktop/GameWindow.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: UpdateFrequency - path: opentk/src/OpenTK.Windowing.Desktop/GameWindow.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\GameWindow.cs startLine: 145 assemblies: - OpenTK.Windowing.Desktop namespace: OpenTK.Windowing.Desktop summary: Gets or sets a double representing the update frequency, in hertz. - remarks: "

\r\nA value of 0.0 indicates that UpdateFrame events are generated at the maximum possible frequency (i.e. only\r\nlimited by the hardware's capabilities).\r\n

\r\n

Values lower than 1.0Hz are clamped to 0.0. Values higher than 500.0Hz are clamped to 500.0Hz.

" + remarks: >- +

+ + A value of 0.0 indicates that UpdateFrame events are generated at the maximum possible frequency (i.e. only + + limited by the hardware's capabilities). +

+

Values lower than 1.0Hz are clamped to 0.0. Values higher than 500.0Hz are clamped to 500.0Hz.

example: [] syntax: content: public double UpdateFrequency { get; set; } @@ -583,12 +549,8 @@ items: fullName: OpenTK.Windowing.Desktop.GameWindow.ExpectedSchedulerPeriod type: Property source: - remote: - path: src/OpenTK.Windowing.Desktop/GameWindow.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ExpectedSchedulerPeriod - path: opentk/src/OpenTK.Windowing.Desktop/GameWindow.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\GameWindow.cs startLine: 178 assemblies: - OpenTK.Windowing.Desktop @@ -631,12 +593,8 @@ items: fullName: OpenTK.Windowing.Desktop.GameWindow.GameWindow(OpenTK.Windowing.Desktop.GameWindowSettings, OpenTK.Windowing.Desktop.NativeWindowSettings) type: Constructor source: - remote: - path: src/OpenTK.Windowing.Desktop/GameWindow.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Windowing.Desktop/GameWindow.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\GameWindow.cs startLine: 194 assemblies: - OpenTK.Windowing.Desktop @@ -675,12 +633,8 @@ items: fullName: OpenTK.Windowing.Desktop.GameWindow.Run() type: Method source: - remote: - path: src/OpenTK.Windowing.Desktop/GameWindow.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Run - path: opentk/src/OpenTK.Windowing.Desktop/GameWindow.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\GameWindow.cs startLine: 231 assemblies: - OpenTK.Windowing.Desktop @@ -715,12 +669,8 @@ items: fullName: OpenTK.Windowing.Desktop.GameWindow.SwapBuffers() type: Method source: - remote: - path: src/OpenTK.Windowing.Desktop/GameWindow.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SwapBuffers - path: opentk/src/OpenTK.Windowing.Desktop/GameWindow.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\GameWindow.cs startLine: 354 assemblies: - OpenTK.Windowing.Desktop @@ -743,12 +693,8 @@ items: fullName: OpenTK.Windowing.Desktop.GameWindow.Close() type: Method source: - remote: - path: src/OpenTK.Windowing.Desktop/GameWindow.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Close - path: opentk/src/OpenTK.Windowing.Desktop/GameWindow.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\GameWindow.cs startLine: 365 assemblies: - OpenTK.Windowing.Desktop @@ -772,16 +718,14 @@ items: fullName: OpenTK.Windowing.Desktop.GameWindow.OnRenderThreadStarted() type: Method source: - remote: - path: src/OpenTK.Windowing.Desktop/GameWindow.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: OnRenderThreadStarted - path: opentk/src/OpenTK.Windowing.Desktop/GameWindow.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\GameWindow.cs startLine: 373 assemblies: - OpenTK.Windowing.Desktop namespace: OpenTK.Windowing.Desktop + summary: Run when the update thread is started. This will never run if you set to false. + example: [] syntax: content: >- [Obsolete("There is no longer a separate render thread.")] @@ -810,12 +754,8 @@ items: fullName: OpenTK.Windowing.Desktop.GameWindow.OnLoad() type: Method source: - remote: - path: src/OpenTK.Windowing.Desktop/GameWindow.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: OnLoad - path: opentk/src/OpenTK.Windowing.Desktop/GameWindow.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\GameWindow.cs startLine: 382 assemblies: - OpenTK.Windowing.Desktop @@ -838,12 +778,8 @@ items: fullName: OpenTK.Windowing.Desktop.GameWindow.OnUnload() type: Method source: - remote: - path: src/OpenTK.Windowing.Desktop/GameWindow.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: OnUnload - path: opentk/src/OpenTK.Windowing.Desktop/GameWindow.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\GameWindow.cs startLine: 390 assemblies: - OpenTK.Windowing.Desktop @@ -866,12 +802,8 @@ items: fullName: OpenTK.Windowing.Desktop.GameWindow.OnUpdateFrame(OpenTK.Windowing.Common.FrameEventArgs) type: Method source: - remote: - path: src/OpenTK.Windowing.Desktop/GameWindow.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: OnUpdateFrame - path: opentk/src/OpenTK.Windowing.Desktop/GameWindow.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\GameWindow.cs startLine: 399 assemblies: - OpenTK.Windowing.Desktop @@ -898,12 +830,8 @@ items: fullName: OpenTK.Windowing.Desktop.GameWindow.OnRenderFrame(OpenTK.Windowing.Common.FrameEventArgs) type: Method source: - remote: - path: src/OpenTK.Windowing.Desktop/GameWindow.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: OnRenderFrame - path: opentk/src/OpenTK.Windowing.Desktop/GameWindow.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\GameWindow.cs startLine: 408 assemblies: - OpenTK.Windowing.Desktop @@ -930,12 +858,8 @@ items: fullName: OpenTK.Windowing.Desktop.GameWindow.TimeSinceLastUpdate() type: Method source: - remote: - path: src/OpenTK.Windowing.Desktop/GameWindow.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TimeSinceLastUpdate - path: opentk/src/OpenTK.Windowing.Desktop/GameWindow.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\GameWindow.cs startLine: 421 assemblies: - OpenTK.Windowing.Desktop @@ -965,12 +889,8 @@ items: fullName: OpenTK.Windowing.Desktop.GameWindow.ResetTimeSinceLastUpdate() type: Method source: - remote: - path: src/OpenTK.Windowing.Desktop/GameWindow.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ResetTimeSinceLastUpdate - path: opentk/src/OpenTK.Windowing.Desktop/GameWindow.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\GameWindow.cs startLine: 430 assemblies: - OpenTK.Windowing.Desktop @@ -996,12 +916,8 @@ items: fullName: OpenTK.Windowing.Desktop.GameWindow.Dispose() type: Method source: - remote: - path: src/OpenTK.Windowing.Desktop/GameWindow.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Dispose - path: opentk/src/OpenTK.Windowing.Desktop/GameWindow.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\GameWindow.cs startLine: 450 assemblies: - OpenTK.Windowing.Desktop @@ -3025,6 +2941,12 @@ references: name: Close nameWithType: GameWindow.Close fullName: OpenTK.Windowing.Desktop.GameWindow.Close +- uid: OpenTK.Windowing.Desktop.GameWindow.IsMultiThreaded + commentId: P:OpenTK.Windowing.Desktop.GameWindow.IsMultiThreaded + href: OpenTK.Windowing.Desktop.GameWindow.html#OpenTK_Windowing_Desktop_GameWindow_IsMultiThreaded + name: IsMultiThreaded + nameWithType: GameWindow.IsMultiThreaded + fullName: OpenTK.Windowing.Desktop.GameWindow.IsMultiThreaded - uid: OpenTK.Windowing.Desktop.GameWindow.OnRenderThreadStarted* commentId: Overload:OpenTK.Windowing.Desktop.GameWindow.OnRenderThreadStarted href: OpenTK.Windowing.Desktop.GameWindow.html#OpenTK_Windowing_Desktop_GameWindow_OnRenderThreadStarted diff --git a/api/OpenTK.Windowing.Desktop.GameWindowSettings.yml b/api/OpenTK.Windowing.Desktop.GameWindowSettings.yml index b5847377..ac8bb13b 100644 --- a/api/OpenTK.Windowing.Desktop.GameWindowSettings.yml +++ b/api/OpenTK.Windowing.Desktop.GameWindowSettings.yml @@ -18,12 +18,8 @@ items: fullName: OpenTK.Windowing.Desktop.GameWindowSettings type: Class source: - remote: - path: src/OpenTK.Windowing.Desktop/GameWindowSettings.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GameWindowSettings - path: opentk/src/OpenTK.Windowing.Desktop/GameWindowSettings.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\GameWindowSettings.cs startLine: 17 assemblies: - OpenTK.Windowing.Desktop @@ -55,12 +51,8 @@ items: fullName: OpenTK.Windowing.Desktop.GameWindowSettings.Default type: Field source: - remote: - path: src/OpenTK.Windowing.Desktop/GameWindowSettings.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Default - path: opentk/src/OpenTK.Windowing.Desktop/GameWindowSettings.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\GameWindowSettings.cs startLine: 22 assemblies: - OpenTK.Windowing.Desktop @@ -84,12 +76,8 @@ items: fullName: OpenTK.Windowing.Desktop.GameWindowSettings.IsMultiThreaded type: Property source: - remote: - path: src/OpenTK.Windowing.Desktop/GameWindowSettings.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: IsMultiThreaded - path: opentk/src/OpenTK.Windowing.Desktop/GameWindowSettings.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\GameWindowSettings.cs startLine: 27 assemblies: - OpenTK.Windowing.Desktop @@ -129,18 +117,21 @@ items: fullName: OpenTK.Windowing.Desktop.GameWindowSettings.RenderFrequency type: Property source: - remote: - path: src/OpenTK.Windowing.Desktop/GameWindowSettings.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: RenderFrequency - path: opentk/src/OpenTK.Windowing.Desktop/GameWindowSettings.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\GameWindowSettings.cs startLine: 40 assemblies: - OpenTK.Windowing.Desktop namespace: OpenTK.Windowing.Desktop summary: Gets or sets a double representing the render frequency, in hertz. - remarks: "

\r\nA value of 0.0 indicates that RenderFrame events are generated at the maximum possible frequency (i.e. only\r\nlimited by the hardware's capabilities).\r\n

\r\n

Values lower than 1.0Hz are clamped to 0.0. Values higher than 500.0Hz are clamped to 200.0Hz.

" + remarks: >- +

+ + A value of 0.0 indicates that RenderFrame events are generated at the maximum possible frequency (i.e. only + + limited by the hardware's capabilities). +

+

Values lower than 1.0Hz are clamped to 0.0. Values higher than 500.0Hz are clamped to 200.0Hz.

example: [] syntax: content: >- @@ -175,18 +166,21 @@ items: fullName: OpenTK.Windowing.Desktop.GameWindowSettings.UpdateFrequency type: Property source: - remote: - path: src/OpenTK.Windowing.Desktop/GameWindowSettings.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: UpdateFrequency - path: opentk/src/OpenTK.Windowing.Desktop/GameWindowSettings.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\GameWindowSettings.cs startLine: 53 assemblies: - OpenTK.Windowing.Desktop namespace: OpenTK.Windowing.Desktop summary: Gets or sets a double representing the update frequency, in hertz. - remarks: "

\r\nA value of 0.0 indicates that UpdateFrame events are generated at the maximum possible frequency (i.e. only\r\nlimited by the hardware's capabilities).\r\n

\r\n

Values lower than 1.0Hz are clamped to 0.0. Values higher than 500.0Hz are clamped to 500.0Hz.

" + remarks: >- +

+ + A value of 0.0 indicates that UpdateFrame events are generated at the maximum possible frequency (i.e. only + + limited by the hardware's capabilities). +

+

Values lower than 1.0Hz are clamped to 0.0. Values higher than 500.0Hz are clamped to 500.0Hz.

example: [] syntax: content: public double UpdateFrequency { get; set; } @@ -207,12 +201,8 @@ items: fullName: OpenTK.Windowing.Desktop.GameWindowSettings.Win32SuspendTimerOnDrag type: Property source: - remote: - path: src/OpenTK.Windowing.Desktop/GameWindowSettings.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Win32SuspendTimerOnDrag - path: opentk/src/OpenTK.Windowing.Desktop/GameWindowSettings.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\GameWindowSettings.cs startLine: 59 assemblies: - OpenTK.Windowing.Desktop diff --git a/api/OpenTK.Windowing.Desktop.IGLFWGraphicsContext.yml b/api/OpenTK.Windowing.Desktop.IGLFWGraphicsContext.yml index 95ea140e..384a2273 100644 --- a/api/OpenTK.Windowing.Desktop.IGLFWGraphicsContext.yml +++ b/api/OpenTK.Windowing.Desktop.IGLFWGraphicsContext.yml @@ -14,12 +14,8 @@ items: fullName: OpenTK.Windowing.Desktop.IGLFWGraphicsContext type: Interface source: - remote: - path: src/OpenTK.Windowing.Desktop/IGLFWGraphicsContext.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: IGLFWGraphicsContext - path: opentk/src/OpenTK.Windowing.Desktop/IGLFWGraphicsContext.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\IGLFWGraphicsContext.cs startLine: 11 assemblies: - OpenTK.Windowing.Desktop @@ -47,12 +43,8 @@ items: fullName: OpenTK.Windowing.Desktop.IGLFWGraphicsContext.WindowPtr type: Property source: - remote: - path: src/OpenTK.Windowing.Desktop/IGLFWGraphicsContext.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: WindowPtr - path: opentk/src/OpenTK.Windowing.Desktop/IGLFWGraphicsContext.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\IGLFWGraphicsContext.cs startLine: 16 assemblies: - OpenTK.Windowing.Desktop diff --git a/api/OpenTK.Windowing.Desktop.MonitorInfo.yml b/api/OpenTK.Windowing.Desktop.MonitorInfo.yml index 9e95490d..2f8f6c8b 100644 --- a/api/OpenTK.Windowing.Desktop.MonitorInfo.yml +++ b/api/OpenTK.Windowing.Desktop.MonitorInfo.yml @@ -29,12 +29,8 @@ items: fullName: OpenTK.Windowing.Desktop.MonitorInfo type: Class source: - remote: - path: src/OpenTK.Windowing.Desktop/MonitorInfo.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MonitorInfo - path: opentk/src/OpenTK.Windowing.Desktop/MonitorInfo.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\MonitorInfo.cs startLine: 19 assemblies: - OpenTK.Windowing.Desktop @@ -66,12 +62,8 @@ items: fullName: OpenTK.Windowing.Desktop.MonitorInfo.Handle type: Property source: - remote: - path: src/OpenTK.Windowing.Desktop/MonitorInfo.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Handle - path: opentk/src/OpenTK.Windowing.Desktop/MonitorInfo.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\MonitorInfo.cs startLine: 31 assemblies: - OpenTK.Windowing.Desktop @@ -97,12 +89,8 @@ items: fullName: OpenTK.Windowing.Desktop.MonitorInfo.Name type: Property source: - remote: - path: src/OpenTK.Windowing.Desktop/MonitorInfo.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Name - path: opentk/src/OpenTK.Windowing.Desktop/MonitorInfo.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\MonitorInfo.cs startLine: 36 assemblies: - OpenTK.Windowing.Desktop @@ -128,12 +116,8 @@ items: fullName: OpenTK.Windowing.Desktop.MonitorInfo.ClientArea type: Property source: - remote: - path: src/OpenTK.Windowing.Desktop/MonitorInfo.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ClientArea - path: opentk/src/OpenTK.Windowing.Desktop/MonitorInfo.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\MonitorInfo.cs startLine: 41 assemblies: - OpenTK.Windowing.Desktop @@ -159,12 +143,8 @@ items: fullName: OpenTK.Windowing.Desktop.MonitorInfo.WorkArea type: Property source: - remote: - path: src/OpenTK.Windowing.Desktop/MonitorInfo.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: WorkArea - path: opentk/src/OpenTK.Windowing.Desktop/MonitorInfo.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\MonitorInfo.cs startLine: 48 assemblies: - OpenTK.Windowing.Desktop @@ -195,12 +175,8 @@ items: fullName: OpenTK.Windowing.Desktop.MonitorInfo.HorizontalResolution type: Property source: - remote: - path: src/OpenTK.Windowing.Desktop/MonitorInfo.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: HorizontalResolution - path: opentk/src/OpenTK.Windowing.Desktop/MonitorInfo.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\MonitorInfo.cs startLine: 53 assemblies: - OpenTK.Windowing.Desktop @@ -226,12 +202,8 @@ items: fullName: OpenTK.Windowing.Desktop.MonitorInfo.VerticalResolution type: Property source: - remote: - path: src/OpenTK.Windowing.Desktop/MonitorInfo.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: VerticalResolution - path: opentk/src/OpenTK.Windowing.Desktop/MonitorInfo.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\MonitorInfo.cs startLine: 58 assemblies: - OpenTK.Windowing.Desktop @@ -257,12 +229,8 @@ items: fullName: OpenTK.Windowing.Desktop.MonitorInfo.HorizontalScale type: Property source: - remote: - path: src/OpenTK.Windowing.Desktop/MonitorInfo.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: HorizontalScale - path: opentk/src/OpenTK.Windowing.Desktop/MonitorInfo.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\MonitorInfo.cs startLine: 63 assemblies: - OpenTK.Windowing.Desktop @@ -288,12 +256,8 @@ items: fullName: OpenTK.Windowing.Desktop.MonitorInfo.VerticalScale type: Property source: - remote: - path: src/OpenTK.Windowing.Desktop/MonitorInfo.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: VerticalScale - path: opentk/src/OpenTK.Windowing.Desktop/MonitorInfo.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\MonitorInfo.cs startLine: 68 assemblies: - OpenTK.Windowing.Desktop @@ -319,12 +283,8 @@ items: fullName: OpenTK.Windowing.Desktop.MonitorInfo.HorizontalDpi type: Property source: - remote: - path: src/OpenTK.Windowing.Desktop/MonitorInfo.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: HorizontalDpi - path: opentk/src/OpenTK.Windowing.Desktop/MonitorInfo.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\MonitorInfo.cs startLine: 73 assemblies: - OpenTK.Windowing.Desktop @@ -350,12 +310,8 @@ items: fullName: OpenTK.Windowing.Desktop.MonitorInfo.VerticalDpi type: Property source: - remote: - path: src/OpenTK.Windowing.Desktop/MonitorInfo.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: VerticalDpi - path: opentk/src/OpenTK.Windowing.Desktop/MonitorInfo.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\MonitorInfo.cs startLine: 78 assemblies: - OpenTK.Windowing.Desktop @@ -381,12 +337,8 @@ items: fullName: OpenTK.Windowing.Desktop.MonitorInfo.PhysicalWidth type: Property source: - remote: - path: src/OpenTK.Windowing.Desktop/MonitorInfo.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: PhysicalWidth - path: opentk/src/OpenTK.Windowing.Desktop/MonitorInfo.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\MonitorInfo.cs startLine: 83 assemblies: - OpenTK.Windowing.Desktop @@ -412,12 +364,8 @@ items: fullName: OpenTK.Windowing.Desktop.MonitorInfo.PhysicalHeight type: Property source: - remote: - path: src/OpenTK.Windowing.Desktop/MonitorInfo.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: PhysicalHeight - path: opentk/src/OpenTK.Windowing.Desktop/MonitorInfo.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\MonitorInfo.cs startLine: 88 assemblies: - OpenTK.Windowing.Desktop @@ -443,12 +391,8 @@ items: fullName: OpenTK.Windowing.Desktop.MonitorInfo.HorizontalRawDpi type: Property source: - remote: - path: src/OpenTK.Windowing.Desktop/MonitorInfo.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: HorizontalRawDpi - path: opentk/src/OpenTK.Windowing.Desktop/MonitorInfo.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\MonitorInfo.cs startLine: 96 assemblies: - OpenTK.Windowing.Desktop @@ -475,12 +419,8 @@ items: fullName: OpenTK.Windowing.Desktop.MonitorInfo.VerticalRawDpi type: Property source: - remote: - path: src/OpenTK.Windowing.Desktop/MonitorInfo.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: VerticalRawDpi - path: opentk/src/OpenTK.Windowing.Desktop/MonitorInfo.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\MonitorInfo.cs startLine: 104 assemblies: - OpenTK.Windowing.Desktop @@ -507,12 +447,8 @@ items: fullName: OpenTK.Windowing.Desktop.MonitorInfo.SupportedVideoModes type: Property source: - remote: - path: src/OpenTK.Windowing.Desktop/MonitorInfo.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SupportedVideoModes - path: opentk/src/OpenTK.Windowing.Desktop/MonitorInfo.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\MonitorInfo.cs startLine: 111 assemblies: - OpenTK.Windowing.Desktop @@ -538,12 +474,8 @@ items: fullName: OpenTK.Windowing.Desktop.MonitorInfo.CurrentVideoMode type: Property source: - remote: - path: src/OpenTK.Windowing.Desktop/MonitorInfo.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CurrentVideoMode - path: opentk/src/OpenTK.Windowing.Desktop/MonitorInfo.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\MonitorInfo.cs startLine: 119 assemblies: - OpenTK.Windowing.Desktop diff --git a/api/OpenTK.Windowing.Desktop.Monitors.yml b/api/OpenTK.Windowing.Desktop.Monitors.yml index 2884cb64..dec14060 100644 --- a/api/OpenTK.Windowing.Desktop.Monitors.yml +++ b/api/OpenTK.Windowing.Desktop.Monitors.yml @@ -24,12 +24,8 @@ items: fullName: OpenTK.Windowing.Desktop.Monitors type: Class source: - remote: - path: src/OpenTK.Windowing.Desktop/Monitors.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Monitors - path: opentk/src/OpenTK.Windowing.Desktop/Monitors.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\Monitors.cs startLine: 22 assemblies: - OpenTK.Windowing.Desktop @@ -61,12 +57,8 @@ items: fullName: OpenTK.Windowing.Desktop.Monitors.OnMonitorConnected type: Event source: - remote: - path: src/OpenTK.Windowing.Desktop/Monitors.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: OnMonitorConnected - path: opentk/src/OpenTK.Windowing.Desktop/Monitors.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\Monitors.cs startLine: 37 assemblies: - OpenTK.Windowing.Desktop @@ -90,12 +82,8 @@ items: fullName: OpenTK.Windowing.Desktop.Monitors.Count type: Property source: - remote: - path: src/OpenTK.Windowing.Desktop/Monitors.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Count - path: opentk/src/OpenTK.Windowing.Desktop/Monitors.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\Monitors.cs startLine: 42 assemblies: - OpenTK.Windowing.Desktop @@ -135,12 +123,8 @@ items: fullName: OpenTK.Windowing.Desktop.Monitors.GetPlatformDefaultDpi() type: Method source: - remote: - path: src/OpenTK.Windowing.Desktop/Monitors.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetPlatformDefaultDpi - path: opentk/src/OpenTK.Windowing.Desktop/Monitors.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\Monitors.cs startLine: 53 assemblies: - OpenTK.Windowing.Desktop @@ -170,12 +154,8 @@ items: fullName: OpenTK.Windowing.Desktop.Monitors.GetPrimaryMonitor() type: Method source: - remote: - path: src/OpenTK.Windowing.Desktop/Monitors.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetPrimaryMonitor - path: opentk/src/OpenTK.Windowing.Desktop/Monitors.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\Monitors.cs startLine: 75 assemblies: - OpenTK.Windowing.Desktop @@ -201,12 +181,8 @@ items: fullName: OpenTK.Windowing.Desktop.Monitors.GetMonitors() type: Method source: - remote: - path: src/OpenTK.Windowing.Desktop/Monitors.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetMonitors - path: opentk/src/OpenTK.Windowing.Desktop/Monitors.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\Monitors.cs startLine: 85 assemblies: - OpenTK.Windowing.Desktop @@ -232,12 +208,8 @@ items: fullName: OpenTK.Windowing.Desktop.Monitors.GetMonitorFromWindow(OpenTK.Windowing.GraphicsLibraryFramework.Window*) type: Method source: - remote: - path: src/OpenTK.Windowing.Desktop/Monitors.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetMonitorFromWindow - path: opentk/src/OpenTK.Windowing.Desktop/Monitors.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\Monitors.cs startLine: 108 assemblies: - OpenTK.Windowing.Desktop @@ -271,12 +243,8 @@ items: fullName: OpenTK.Windowing.Desktop.Monitors.GetMonitorFromWindow(OpenTK.Windowing.Desktop.NativeWindow) type: Method source: - remote: - path: src/OpenTK.Windowing.Desktop/Monitors.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetMonitorFromWindow - path: opentk/src/OpenTK.Windowing.Desktop/Monitors.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\Monitors.cs startLine: 165 assemblies: - OpenTK.Windowing.Desktop @@ -310,12 +278,8 @@ items: fullName: OpenTK.Windowing.Desktop.Monitors.TryGetMonitorInfo(int, out OpenTK.Windowing.Desktop.MonitorInfo) type: Method source: - remote: - path: src/OpenTK.Windowing.Desktop/Monitors.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TryGetMonitorInfo - path: opentk/src/OpenTK.Windowing.Desktop/Monitors.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\Monitors.cs startLine: 178 assemblies: - OpenTK.Windowing.Desktop @@ -365,12 +329,8 @@ items: fullName: OpenTK.Windowing.Desktop.Monitors.TryGetMonitorInfo(OpenTK.Windowing.Common.MonitorHandle, out OpenTK.Windowing.Desktop.MonitorInfo) type: Method source: - remote: - path: src/OpenTK.Windowing.Desktop/Monitors.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TryGetMonitorInfo - path: opentk/src/OpenTK.Windowing.Desktop/Monitors.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\Monitors.cs startLine: 187 assemblies: - OpenTK.Windowing.Desktop @@ -420,12 +380,8 @@ items: fullName: OpenTK.Windowing.Desktop.Monitors.CheckCache() type: Method source: - remote: - path: src/OpenTK.Windowing.Desktop/Monitors.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CheckCache - path: opentk/src/OpenTK.Windowing.Desktop/Monitors.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\Monitors.cs startLine: 194 assemblies: - OpenTK.Windowing.Desktop @@ -465,12 +421,8 @@ items: fullName: OpenTK.Windowing.Desktop.Monitors.BuildMonitorCache() type: Method source: - remote: - path: src/OpenTK.Windowing.Desktop/Monitors.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: BuildMonitorCache - path: opentk/src/OpenTK.Windowing.Desktop/Monitors.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\Monitors.cs startLine: 200 assemblies: - OpenTK.Windowing.Desktop diff --git a/api/OpenTK.Windowing.Desktop.NativeWindow.yml b/api/OpenTK.Windowing.Desktop.NativeWindow.yml index 2e1de3dd..385e71d7 100644 --- a/api/OpenTK.Windowing.Desktop.NativeWindow.yml +++ b/api/OpenTK.Windowing.Desktop.NativeWindow.yml @@ -115,12 +115,8 @@ items: fullName: OpenTK.Windowing.Desktop.NativeWindow type: Class source: - remote: - path: src/OpenTK.Windowing.Desktop/NativeWindow.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: NativeWindow - path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\NativeWindow.cs startLine: 23 assemblies: - OpenTK.Windowing.Desktop @@ -156,12 +152,8 @@ items: fullName: OpenTK.Windowing.Desktop.NativeWindow.WindowPtr type: Property source: - remote: - path: src/OpenTK.Windowing.Desktop/NativeWindow.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: WindowPtr - path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\NativeWindow.cs startLine: 28 assemblies: - OpenTK.Windowing.Desktop @@ -187,12 +179,8 @@ items: fullName: OpenTK.Windowing.Desktop.NativeWindow.KeyboardState type: Property source: - remote: - path: src/OpenTK.Windowing.Desktop/NativeWindow.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: KeyboardState - path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\NativeWindow.cs startLine: 52 assemblies: - OpenTK.Windowing.Desktop @@ -218,12 +206,8 @@ items: fullName: OpenTK.Windowing.Desktop.NativeWindow.JoystickStates type: Property source: - remote: - path: src/OpenTK.Windowing.Desktop/NativeWindow.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: JoystickStates - path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\NativeWindow.cs startLine: 59 assemblies: - OpenTK.Windowing.Desktop @@ -249,12 +233,8 @@ items: fullName: OpenTK.Windowing.Desktop.NativeWindow.MousePosition type: Property source: - remote: - path: src/OpenTK.Windowing.Desktop/NativeWindow.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MousePosition - path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\NativeWindow.cs startLine: 69 assemblies: - OpenTK.Windowing.Desktop @@ -285,12 +265,8 @@ items: fullName: OpenTK.Windowing.Desktop.NativeWindow.MouseState type: Property source: - remote: - path: src/OpenTK.Windowing.Desktop/NativeWindow.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MouseState - path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\NativeWindow.cs startLine: 85 assemblies: - OpenTK.Windowing.Desktop @@ -316,12 +292,8 @@ items: fullName: OpenTK.Windowing.Desktop.NativeWindow.IsAnyKeyDown type: Property source: - remote: - path: src/OpenTK.Windowing.Desktop/NativeWindow.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: IsAnyKeyDown - path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\NativeWindow.cs startLine: 91 assemblies: - OpenTK.Windowing.Desktop @@ -348,12 +320,8 @@ items: fullName: OpenTK.Windowing.Desktop.NativeWindow.IsAnyMouseButtonDown type: Property source: - remote: - path: src/OpenTK.Windowing.Desktop/NativeWindow.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: IsAnyMouseButtonDown - path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\NativeWindow.cs startLine: 97 assemblies: - OpenTK.Windowing.Desktop @@ -380,12 +348,8 @@ items: fullName: OpenTK.Windowing.Desktop.NativeWindow.VSync type: Property source: - remote: - path: src/OpenTK.Windowing.Desktop/NativeWindow.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: VSync - path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\NativeWindow.cs startLine: 107 assemblies: - OpenTK.Windowing.Desktop @@ -412,12 +376,8 @@ items: fullName: OpenTK.Windowing.Desktop.NativeWindow.AutoIconify type: Property source: - remote: - path: src/OpenTK.Windowing.Desktop/NativeWindow.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: AutoIconify - path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\NativeWindow.cs startLine: 147 assemblies: - OpenTK.Windowing.Desktop @@ -446,12 +406,8 @@ items: fullName: OpenTK.Windowing.Desktop.NativeWindow.Icon type: Property source: - remote: - path: src/OpenTK.Windowing.Desktop/NativeWindow.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Icon - path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\NativeWindow.cs startLine: 171 assemblies: - OpenTK.Windowing.Desktop @@ -483,12 +439,8 @@ items: fullName: OpenTK.Windowing.Desktop.NativeWindow.IsEventDriven type: Property source: - remote: - path: src/OpenTK.Windowing.Desktop/NativeWindow.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: IsEventDriven - path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\NativeWindow.cs startLine: 209 assemblies: - OpenTK.Windowing.Desktop @@ -519,12 +471,8 @@ items: fullName: OpenTK.Windowing.Desktop.NativeWindow.ClipboardString type: Property source: - remote: - path: src/OpenTK.Windowing.Desktop/NativeWindow.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ClipboardString - path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\NativeWindow.cs startLine: 214 assemblies: - OpenTK.Windowing.Desktop @@ -550,12 +498,8 @@ items: fullName: OpenTK.Windowing.Desktop.NativeWindow.Title type: Property source: - remote: - path: src/OpenTK.Windowing.Desktop/NativeWindow.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Title - path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\NativeWindow.cs startLine: 238 assemblies: - OpenTK.Windowing.Desktop @@ -581,12 +525,8 @@ items: fullName: OpenTK.Windowing.Desktop.NativeWindow.API type: Property source: - remote: - path: src/OpenTK.Windowing.Desktop/NativeWindow.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: API - path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\NativeWindow.cs startLine: 255 assemblies: - OpenTK.Windowing.Desktop @@ -612,12 +552,8 @@ items: fullName: OpenTK.Windowing.Desktop.NativeWindow.Profile type: Property source: - remote: - path: src/OpenTK.Windowing.Desktop/NativeWindow.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Profile - path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\NativeWindow.cs startLine: 260 assemblies: - OpenTK.Windowing.Desktop @@ -643,12 +579,8 @@ items: fullName: OpenTK.Windowing.Desktop.NativeWindow.Flags type: Property source: - remote: - path: src/OpenTK.Windowing.Desktop/NativeWindow.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Flags - path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\NativeWindow.cs startLine: 265 assemblies: - OpenTK.Windowing.Desktop @@ -674,12 +606,8 @@ items: fullName: OpenTK.Windowing.Desktop.NativeWindow.APIVersion type: Property source: - remote: - path: src/OpenTK.Windowing.Desktop/NativeWindow.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: APIVersion - path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\NativeWindow.cs startLine: 270 assemblies: - OpenTK.Windowing.Desktop @@ -705,12 +633,8 @@ items: fullName: OpenTK.Windowing.Desktop.NativeWindow.Context type: Property source: - remote: - path: src/OpenTK.Windowing.Desktop/NativeWindow.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Context - path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\NativeWindow.cs startLine: 275 assemblies: - OpenTK.Windowing.Desktop @@ -736,12 +660,8 @@ items: fullName: OpenTK.Windowing.Desktop.NativeWindow.CurrentMonitor type: Property source: - remote: - path: src/OpenTK.Windowing.Desktop/NativeWindow.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CurrentMonitor - path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\NativeWindow.cs startLine: 282 assemblies: - OpenTK.Windowing.Desktop @@ -767,12 +687,8 @@ items: fullName: OpenTK.Windowing.Desktop.NativeWindow.IsFocused type: Property source: - remote: - path: src/OpenTK.Windowing.Desktop/NativeWindow.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: IsFocused - path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\NativeWindow.cs startLine: 311 assemblies: - OpenTK.Windowing.Desktop @@ -798,12 +714,8 @@ items: fullName: OpenTK.Windowing.Desktop.NativeWindow.Focus() type: Method source: - remote: - path: src/OpenTK.Windowing.Desktop/NativeWindow.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Focus - path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\NativeWindow.cs startLine: 319 assemblies: - OpenTK.Windowing.Desktop @@ -826,12 +738,8 @@ items: fullName: OpenTK.Windowing.Desktop.NativeWindow.IsVisible type: Property source: - remote: - path: src/OpenTK.Windowing.Desktop/NativeWindow.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: IsVisible - path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\NativeWindow.cs startLine: 329 assemblies: - OpenTK.Windowing.Desktop @@ -857,12 +765,8 @@ items: fullName: OpenTK.Windowing.Desktop.NativeWindow.Exists type: Property source: - remote: - path: src/OpenTK.Windowing.Desktop/NativeWindow.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Exists - path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\NativeWindow.cs startLine: 353 assemblies: - OpenTK.Windowing.Desktop @@ -888,12 +792,8 @@ items: fullName: OpenTK.Windowing.Desktop.NativeWindow.IsExiting type: Property source: - remote: - path: src/OpenTK.Windowing.Desktop/NativeWindow.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: IsExiting - path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\NativeWindow.cs startLine: 359 assemblies: - OpenTK.Windowing.Desktop @@ -922,12 +822,8 @@ items: fullName: OpenTK.Windowing.Desktop.NativeWindow.WindowState type: Property source: - remote: - path: src/OpenTK.Windowing.Desktop/NativeWindow.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: WindowState - path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\NativeWindow.cs startLine: 366 assemblies: - OpenTK.Windowing.Desktop @@ -953,12 +849,8 @@ items: fullName: OpenTK.Windowing.Desktop.NativeWindow.WindowBorder type: Property source: - remote: - path: src/OpenTK.Windowing.Desktop/NativeWindow.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: WindowBorder - path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\NativeWindow.cs startLine: 414 assemblies: - OpenTK.Windowing.Desktop @@ -984,12 +876,8 @@ items: fullName: OpenTK.Windowing.Desktop.NativeWindow.Bounds type: Property source: - remote: - path: src/OpenTK.Windowing.Desktop/NativeWindow.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Bounds - path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\NativeWindow.cs startLine: 453 assemblies: - OpenTK.Windowing.Desktop @@ -1020,12 +908,8 @@ items: fullName: OpenTK.Windowing.Desktop.NativeWindow.Location type: Property source: - remote: - path: src/OpenTK.Windowing.Desktop/NativeWindow.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Location - path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\NativeWindow.cs startLine: 471 assemblies: - OpenTK.Windowing.Desktop @@ -1054,12 +938,8 @@ items: fullName: OpenTK.Windowing.Desktop.NativeWindow.ClientLocation type: Property source: - remote: - path: src/OpenTK.Windowing.Desktop/NativeWindow.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ClientLocation - path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\NativeWindow.cs startLine: 492 assemblies: - OpenTK.Windowing.Desktop @@ -1088,12 +968,8 @@ items: fullName: OpenTK.Windowing.Desktop.NativeWindow.Size type: Property source: - remote: - path: src/OpenTK.Windowing.Desktop/NativeWindow.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Size - path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\NativeWindow.cs startLine: 512 assemblies: - OpenTK.Windowing.Desktop @@ -1119,12 +995,8 @@ items: fullName: OpenTK.Windowing.Desktop.NativeWindow.ClientSize type: Property source: - remote: - path: src/OpenTK.Windowing.Desktop/NativeWindow.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ClientSize - path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\NativeWindow.cs startLine: 537 assemblies: - OpenTK.Windowing.Desktop @@ -1150,12 +1022,8 @@ items: fullName: OpenTK.Windowing.Desktop.NativeWindow.FramebufferSize type: Property source: - remote: - path: src/OpenTK.Windowing.Desktop/NativeWindow.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: FramebufferSize - path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\NativeWindow.cs startLine: 554 assemblies: - OpenTK.Windowing.Desktop @@ -1181,12 +1049,8 @@ items: fullName: OpenTK.Windowing.Desktop.NativeWindow.MinimumSize type: Property source: - remote: - path: src/OpenTK.Windowing.Desktop/NativeWindow.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MinimumSize - path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\NativeWindow.cs startLine: 570 assemblies: - OpenTK.Windowing.Desktop @@ -1216,12 +1080,8 @@ items: fullName: OpenTK.Windowing.Desktop.NativeWindow.MaximumSize type: Property source: - remote: - path: src/OpenTK.Windowing.Desktop/NativeWindow.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MaximumSize - path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\NativeWindow.cs startLine: 587 assemblies: - OpenTK.Windowing.Desktop @@ -1251,12 +1111,8 @@ items: fullName: OpenTK.Windowing.Desktop.NativeWindow.AspectRatio type: Property source: - remote: - path: src/OpenTK.Windowing.Desktop/NativeWindow.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: AspectRatio - path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\NativeWindow.cs startLine: 606 assemblies: - OpenTK.Windowing.Desktop @@ -1286,12 +1142,8 @@ items: fullName: OpenTK.Windowing.Desktop.NativeWindow.ClientRectangle type: Property source: - remote: - path: src/OpenTK.Windowing.Desktop/NativeWindow.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ClientRectangle - path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\NativeWindow.cs startLine: 621 assemblies: - OpenTK.Windowing.Desktop @@ -1322,12 +1174,8 @@ items: fullName: OpenTK.Windowing.Desktop.NativeWindow.IsFullscreen type: Property source: - remote: - path: src/OpenTK.Windowing.Desktop/NativeWindow.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: IsFullscreen - path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\NativeWindow.cs startLine: 635 assemblies: - OpenTK.Windowing.Desktop @@ -1356,12 +1204,8 @@ items: fullName: OpenTK.Windowing.Desktop.NativeWindow.Cursor type: Property source: - remote: - path: src/OpenTK.Windowing.Desktop/NativeWindow.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Cursor - path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\NativeWindow.cs startLine: 641 assemblies: - OpenTK.Windowing.Desktop @@ -1388,12 +1232,8 @@ items: fullName: OpenTK.Windowing.Desktop.NativeWindow.CursorState type: Property source: - remote: - path: src/OpenTK.Windowing.Desktop/NativeWindow.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CursorState - path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\NativeWindow.cs startLine: 690 assemblies: - OpenTK.Windowing.Desktop @@ -1419,12 +1259,8 @@ items: fullName: OpenTK.Windowing.Desktop.NativeWindow.RawMouseInput type: Property source: - remote: - path: src/OpenTK.Windowing.Desktop/NativeWindow.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: RawMouseInput - path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\NativeWindow.cs startLine: 735 assemblies: - OpenTK.Windowing.Desktop @@ -1455,12 +1291,8 @@ items: fullName: OpenTK.Windowing.Desktop.NativeWindow.SupportsRawMouseInput type: Property source: - remote: - path: src/OpenTK.Windowing.Desktop/NativeWindow.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SupportsRawMouseInput - path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\NativeWindow.cs startLine: 754 assemblies: - OpenTK.Windowing.Desktop @@ -1486,12 +1318,8 @@ items: fullName: OpenTK.Windowing.Desktop.NativeWindow.HasTransparentFramebuffer type: Property source: - remote: - path: src/OpenTK.Windowing.Desktop/NativeWindow.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: HasTransparentFramebuffer - path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\NativeWindow.cs startLine: 760 assemblies: - OpenTK.Windowing.Desktop @@ -1520,12 +1348,8 @@ items: fullName: OpenTK.Windowing.Desktop.NativeWindow.NativeWindow(OpenTK.Windowing.Desktop.NativeWindowSettings) type: Constructor source: - remote: - path: src/OpenTK.Windowing.Desktop/NativeWindow.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\NativeWindow.cs startLine: 766 assemblies: - OpenTK.Windowing.Desktop @@ -1555,12 +1379,8 @@ items: fullName: OpenTK.Windowing.Desktop.NativeWindow.Close() type: Method source: - remote: - path: src/OpenTK.Windowing.Desktop/NativeWindow.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Close - path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\NativeWindow.cs startLine: 1397 assemblies: - OpenTK.Windowing.Desktop @@ -1583,12 +1403,8 @@ items: fullName: OpenTK.Windowing.Desktop.NativeWindow.MakeCurrent() type: Method source: - remote: - path: src/OpenTK.Windowing.Desktop/NativeWindow.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MakeCurrent - path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\NativeWindow.cs startLine: 1411 assemblies: - OpenTK.Windowing.Desktop @@ -1611,12 +1427,8 @@ items: fullName: OpenTK.Windowing.Desktop.NativeWindow.ProcessEvents(double) type: Method source: - remote: - path: src/OpenTK.Windowing.Desktop/NativeWindow.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ProcessEvents - path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\NativeWindow.cs startLine: 1426 assemblies: - OpenTK.Windowing.Desktop @@ -1649,12 +1461,8 @@ items: fullName: OpenTK.Windowing.Desktop.NativeWindow.ProcessWindowEvents(bool) type: Method source: - remote: - path: src/OpenTK.Windowing.Desktop/NativeWindow.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ProcessWindowEvents - path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\NativeWindow.cs startLine: 1443 assemblies: - OpenTK.Windowing.Desktop @@ -1685,12 +1493,8 @@ items: fullName: OpenTK.Windowing.Desktop.NativeWindow.NewInputFrame() type: Method source: - remote: - path: src/OpenTK.Windowing.Desktop/NativeWindow.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: NewInputFrame - path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\NativeWindow.cs startLine: 1493 assemblies: - OpenTK.Windowing.Desktop @@ -1698,7 +1502,7 @@ items: summary: >- Updates the input state in preparation for a call to or . - Do not call this function if you are calling ProcessEvents() or if you are running the window using . + Do not call this function if you are calling or if you are running the window using . example: [] syntax: content: public void NewInputFrame() @@ -1716,12 +1520,8 @@ items: fullName: OpenTK.Windowing.Desktop.NativeWindow.PointToClient(OpenTK.Mathematics.Vector2i) type: Method source: - remote: - path: src/OpenTK.Windowing.Desktop/NativeWindow.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: PointToClient - path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\NativeWindow.cs startLine: 1513 assemblies: - OpenTK.Windowing.Desktop @@ -1751,12 +1551,8 @@ items: fullName: OpenTK.Windowing.Desktop.NativeWindow.PointToScreen(OpenTK.Mathematics.Vector2i) type: Method source: - remote: - path: src/OpenTK.Windowing.Desktop/NativeWindow.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: PointToScreen - path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\NativeWindow.cs startLine: 1527 assemblies: - OpenTK.Windowing.Desktop @@ -1786,12 +1582,8 @@ items: fullName: OpenTK.Windowing.Desktop.NativeWindow.Move type: Event source: - remote: - path: src/OpenTK.Windowing.Desktop/NativeWindow.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Move - path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\NativeWindow.cs startLine: 1535 assemblies: - OpenTK.Windowing.Desktop @@ -1815,12 +1607,8 @@ items: fullName: OpenTK.Windowing.Desktop.NativeWindow.Resize type: Event source: - remote: - path: src/OpenTK.Windowing.Desktop/NativeWindow.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Resize - path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\NativeWindow.cs startLine: 1540 assemblies: - OpenTK.Windowing.Desktop @@ -1844,12 +1632,8 @@ items: fullName: OpenTK.Windowing.Desktop.NativeWindow.FramebufferResize type: Event source: - remote: - path: src/OpenTK.Windowing.Desktop/NativeWindow.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: FramebufferResize - path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\NativeWindow.cs startLine: 1545 assemblies: - OpenTK.Windowing.Desktop @@ -1873,12 +1657,8 @@ items: fullName: OpenTK.Windowing.Desktop.NativeWindow.Refresh type: Event source: - remote: - path: src/OpenTK.Windowing.Desktop/NativeWindow.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Refresh - path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\NativeWindow.cs startLine: 1550 assemblies: - OpenTK.Windowing.Desktop @@ -1902,12 +1682,8 @@ items: fullName: OpenTK.Windowing.Desktop.NativeWindow.Closing type: Event source: - remote: - path: src/OpenTK.Windowing.Desktop/NativeWindow.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Closing - path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\NativeWindow.cs startLine: 1555 assemblies: - OpenTK.Windowing.Desktop @@ -1931,12 +1707,8 @@ items: fullName: OpenTK.Windowing.Desktop.NativeWindow.Minimized type: Event source: - remote: - path: src/OpenTK.Windowing.Desktop/NativeWindow.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Minimized - path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\NativeWindow.cs startLine: 1560 assemblies: - OpenTK.Windowing.Desktop @@ -1960,12 +1732,8 @@ items: fullName: OpenTK.Windowing.Desktop.NativeWindow.Maximized type: Event source: - remote: - path: src/OpenTK.Windowing.Desktop/NativeWindow.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Maximized - path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\NativeWindow.cs startLine: 1565 assemblies: - OpenTK.Windowing.Desktop @@ -1989,12 +1757,8 @@ items: fullName: OpenTK.Windowing.Desktop.NativeWindow.JoystickConnected type: Event source: - remote: - path: src/OpenTK.Windowing.Desktop/NativeWindow.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: JoystickConnected - path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\NativeWindow.cs startLine: 1570 assemblies: - OpenTK.Windowing.Desktop @@ -2018,12 +1782,8 @@ items: fullName: OpenTK.Windowing.Desktop.NativeWindow.FocusedChanged type: Event source: - remote: - path: src/OpenTK.Windowing.Desktop/NativeWindow.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: FocusedChanged - path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\NativeWindow.cs startLine: 1575 assemblies: - OpenTK.Windowing.Desktop @@ -2047,12 +1807,8 @@ items: fullName: OpenTK.Windowing.Desktop.NativeWindow.KeyDown type: Event source: - remote: - path: src/OpenTK.Windowing.Desktop/NativeWindow.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: KeyDown - path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\NativeWindow.cs startLine: 1580 assemblies: - OpenTK.Windowing.Desktop @@ -2076,12 +1832,8 @@ items: fullName: OpenTK.Windowing.Desktop.NativeWindow.TextInput type: Event source: - remote: - path: src/OpenTK.Windowing.Desktop/NativeWindow.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TextInput - path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\NativeWindow.cs startLine: 1585 assemblies: - OpenTK.Windowing.Desktop @@ -2105,12 +1857,8 @@ items: fullName: OpenTK.Windowing.Desktop.NativeWindow.KeyUp type: Event source: - remote: - path: src/OpenTK.Windowing.Desktop/NativeWindow.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: KeyUp - path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\NativeWindow.cs startLine: 1590 assemblies: - OpenTK.Windowing.Desktop @@ -2134,12 +1882,8 @@ items: fullName: OpenTK.Windowing.Desktop.NativeWindow.MouseLeave type: Event source: - remote: - path: src/OpenTK.Windowing.Desktop/NativeWindow.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MouseLeave - path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\NativeWindow.cs startLine: 1596 assemblies: - OpenTK.Windowing.Desktop @@ -2163,12 +1907,8 @@ items: fullName: OpenTK.Windowing.Desktop.NativeWindow.MouseEnter type: Event source: - remote: - path: src/OpenTK.Windowing.Desktop/NativeWindow.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MouseEnter - path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\NativeWindow.cs startLine: 1602 assemblies: - OpenTK.Windowing.Desktop @@ -2192,12 +1932,8 @@ items: fullName: OpenTK.Windowing.Desktop.NativeWindow.MouseDown type: Event source: - remote: - path: src/OpenTK.Windowing.Desktop/NativeWindow.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MouseDown - path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\NativeWindow.cs startLine: 1607 assemblies: - OpenTK.Windowing.Desktop @@ -2221,12 +1957,8 @@ items: fullName: OpenTK.Windowing.Desktop.NativeWindow.MouseUp type: Event source: - remote: - path: src/OpenTK.Windowing.Desktop/NativeWindow.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MouseUp - path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\NativeWindow.cs startLine: 1612 assemblies: - OpenTK.Windowing.Desktop @@ -2250,12 +1982,8 @@ items: fullName: OpenTK.Windowing.Desktop.NativeWindow.MouseMove type: Event source: - remote: - path: src/OpenTK.Windowing.Desktop/NativeWindow.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MouseMove - path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\NativeWindow.cs startLine: 1617 assemblies: - OpenTK.Windowing.Desktop @@ -2279,12 +2007,8 @@ items: fullName: OpenTK.Windowing.Desktop.NativeWindow.MouseWheel type: Event source: - remote: - path: src/OpenTK.Windowing.Desktop/NativeWindow.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MouseWheel - path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\NativeWindow.cs startLine: 1622 assemblies: - OpenTK.Windowing.Desktop @@ -2308,12 +2032,8 @@ items: fullName: OpenTK.Windowing.Desktop.NativeWindow.FileDrop type: Event source: - remote: - path: src/OpenTK.Windowing.Desktop/NativeWindow.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: FileDrop - path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\NativeWindow.cs startLine: 1627 assemblies: - OpenTK.Windowing.Desktop @@ -2337,12 +2057,8 @@ items: fullName: OpenTK.Windowing.Desktop.NativeWindow.IsKeyDown(OpenTK.Windowing.GraphicsLibraryFramework.Keys) type: Method source: - remote: - path: src/OpenTK.Windowing.Desktop/NativeWindow.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: IsKeyDown - path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\NativeWindow.cs startLine: 1634 assemblies: - OpenTK.Windowing.Desktop @@ -2372,18 +2088,14 @@ items: fullName: OpenTK.Windowing.Desktop.NativeWindow.IsKeyPressed(OpenTK.Windowing.GraphicsLibraryFramework.Keys) type: Method source: - remote: - path: src/OpenTK.Windowing.Desktop/NativeWindow.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: IsKeyPressed - path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\NativeWindow.cs startLine: 1647 assemblies: - OpenTK.Windowing.Desktop namespace: OpenTK.Windowing.Desktop summary: Gets whether the specified key is pressed in the current frame but released in the previous frame. - remarks: "\"Frame\" refers to invocations of NativeWindow.ProcessEvents() here." + remarks: "\"Frame\" refers to invocations of here." example: [] syntax: content: public bool IsKeyPressed(Keys key) @@ -2408,18 +2120,14 @@ items: fullName: OpenTK.Windowing.Desktop.NativeWindow.IsKeyReleased(OpenTK.Windowing.GraphicsLibraryFramework.Keys) type: Method source: - remote: - path: src/OpenTK.Windowing.Desktop/NativeWindow.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: IsKeyReleased - path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\NativeWindow.cs startLine: 1660 assemblies: - OpenTK.Windowing.Desktop namespace: OpenTK.Windowing.Desktop summary: Gets whether the specified key is released in the current frame but pressed in the previous frame. - remarks: "\"Frame\" refers to invocations of NativeWindow.ProcessEvents() here." + remarks: "\"Frame\" refers to invocations of here." example: [] syntax: content: public bool IsKeyReleased(Keys key) @@ -2444,12 +2152,8 @@ items: fullName: OpenTK.Windowing.Desktop.NativeWindow.IsMouseButtonDown(OpenTK.Windowing.GraphicsLibraryFramework.MouseButton) type: Method source: - remote: - path: src/OpenTK.Windowing.Desktop/NativeWindow.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: IsMouseButtonDown - path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\NativeWindow.cs startLine: 1670 assemblies: - OpenTK.Windowing.Desktop @@ -2479,18 +2183,14 @@ items: fullName: OpenTK.Windowing.Desktop.NativeWindow.IsMouseButtonPressed(OpenTK.Windowing.GraphicsLibraryFramework.MouseButton) type: Method source: - remote: - path: src/OpenTK.Windowing.Desktop/NativeWindow.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: IsMouseButtonPressed - path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\NativeWindow.cs startLine: 1683 assemblies: - OpenTK.Windowing.Desktop namespace: OpenTK.Windowing.Desktop summary: Gets whether the specified mouse button is pressed in the current frame but released in the previous frame. - remarks: "\"Frame\" refers to invocations of NativeWindow.ProcessEvents() here." + remarks: "\"Frame\" refers to invocations of here." example: [] syntax: content: public bool IsMouseButtonPressed(MouseButton button) @@ -2515,18 +2215,14 @@ items: fullName: OpenTK.Windowing.Desktop.NativeWindow.IsMouseButtonReleased(OpenTK.Windowing.GraphicsLibraryFramework.MouseButton) type: Method source: - remote: - path: src/OpenTK.Windowing.Desktop/NativeWindow.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: IsMouseButtonReleased - path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\NativeWindow.cs startLine: 1696 assemblies: - OpenTK.Windowing.Desktop namespace: OpenTK.Windowing.Desktop summary: Gets whether the specified mouse button is released in the current frame but pressed in the previous frame. - remarks: "\"Frame\" refers to invocations of NativeWindow.ProcessEvents() here." + remarks: "\"Frame\" refers to invocations of here." example: [] syntax: content: public bool IsMouseButtonReleased(MouseButton button) @@ -2551,12 +2247,8 @@ items: fullName: OpenTK.Windowing.Desktop.NativeWindow.TryGetCurrentMonitorScale(out float, out float) type: Method source: - remote: - path: src/OpenTK.Windowing.Desktop/NativeWindow.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TryGetCurrentMonitorScale - path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\NativeWindow.cs startLine: 1707 assemblies: - OpenTK.Windowing.Desktop @@ -2592,12 +2284,8 @@ items: fullName: OpenTK.Windowing.Desktop.NativeWindow.TryGetCurrentMonitorDpi(out float, out float) type: Method source: - remote: - path: src/OpenTK.Windowing.Desktop/NativeWindow.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TryGetCurrentMonitorDpi - path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\NativeWindow.cs startLine: 1726 assemblies: - OpenTK.Windowing.Desktop @@ -2639,12 +2327,8 @@ items: fullName: OpenTK.Windowing.Desktop.NativeWindow.TryGetCurrentMonitorDpiRaw(out float, out float) type: Method source: - remote: - path: src/OpenTK.Windowing.Desktop/NativeWindow.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TryGetCurrentMonitorDpiRaw - path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\NativeWindow.cs startLine: 1745 assemblies: - OpenTK.Windowing.Desktop @@ -2686,12 +2370,8 @@ items: fullName: OpenTK.Windowing.Desktop.NativeWindow.OnMove(OpenTK.Windowing.Common.WindowPositionEventArgs) type: Method source: - remote: - path: src/OpenTK.Windowing.Desktop/NativeWindow.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: OnMove - path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\NativeWindow.cs startLine: 1757 assemblies: - OpenTK.Windowing.Desktop @@ -2718,12 +2398,8 @@ items: fullName: OpenTK.Windowing.Desktop.NativeWindow.OnResize(OpenTK.Windowing.Common.ResizeEventArgs) type: Method source: - remote: - path: src/OpenTK.Windowing.Desktop/NativeWindow.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: OnResize - path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\NativeWindow.cs startLine: 1766 assemblies: - OpenTK.Windowing.Desktop @@ -2750,12 +2426,8 @@ items: fullName: OpenTK.Windowing.Desktop.NativeWindow.OnFramebufferResize(OpenTK.Windowing.Common.FramebufferResizeEventArgs) type: Method source: - remote: - path: src/OpenTK.Windowing.Desktop/NativeWindow.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: OnFramebufferResize - path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\NativeWindow.cs startLine: 1775 assemblies: - OpenTK.Windowing.Desktop @@ -2782,12 +2454,8 @@ items: fullName: OpenTK.Windowing.Desktop.NativeWindow.OnRefresh() type: Method source: - remote: - path: src/OpenTK.Windowing.Desktop/NativeWindow.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: OnRefresh - path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\NativeWindow.cs startLine: 1783 assemblies: - OpenTK.Windowing.Desktop @@ -2810,12 +2478,8 @@ items: fullName: OpenTK.Windowing.Desktop.NativeWindow.OnClosing(System.ComponentModel.CancelEventArgs) type: Method source: - remote: - path: src/OpenTK.Windowing.Desktop/NativeWindow.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: OnClosing - path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\NativeWindow.cs startLine: 1792 assemblies: - OpenTK.Windowing.Desktop @@ -2842,12 +2506,8 @@ items: fullName: OpenTK.Windowing.Desktop.NativeWindow.OnJoystickConnected(OpenTK.Windowing.Common.JoystickEventArgs) type: Method source: - remote: - path: src/OpenTK.Windowing.Desktop/NativeWindow.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: OnJoystickConnected - path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\NativeWindow.cs startLine: 1801 assemblies: - OpenTK.Windowing.Desktop @@ -2874,12 +2534,8 @@ items: fullName: OpenTK.Windowing.Desktop.NativeWindow.OnFocusedChanged(OpenTK.Windowing.Common.FocusedChangedEventArgs) type: Method source: - remote: - path: src/OpenTK.Windowing.Desktop/NativeWindow.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: OnFocusedChanged - path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\NativeWindow.cs startLine: 1810 assemblies: - OpenTK.Windowing.Desktop @@ -2906,12 +2562,8 @@ items: fullName: OpenTK.Windowing.Desktop.NativeWindow.OnKeyDown(OpenTK.Windowing.Common.KeyboardKeyEventArgs) type: Method source: - remote: - path: src/OpenTK.Windowing.Desktop/NativeWindow.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: OnKeyDown - path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\NativeWindow.cs startLine: 1821 assemblies: - OpenTK.Windowing.Desktop @@ -2938,12 +2590,8 @@ items: fullName: OpenTK.Windowing.Desktop.NativeWindow.OnTextInput(OpenTK.Windowing.Common.TextInputEventArgs) type: Method source: - remote: - path: src/OpenTK.Windowing.Desktop/NativeWindow.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: OnTextInput - path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\NativeWindow.cs startLine: 1830 assemblies: - OpenTK.Windowing.Desktop @@ -2970,12 +2618,8 @@ items: fullName: OpenTK.Windowing.Desktop.NativeWindow.OnKeyUp(OpenTK.Windowing.Common.KeyboardKeyEventArgs) type: Method source: - remote: - path: src/OpenTK.Windowing.Desktop/NativeWindow.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: OnKeyUp - path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\NativeWindow.cs startLine: 1839 assemblies: - OpenTK.Windowing.Desktop @@ -3002,12 +2646,8 @@ items: fullName: OpenTK.Windowing.Desktop.NativeWindow.OnMouseLeave() type: Method source: - remote: - path: src/OpenTK.Windowing.Desktop/NativeWindow.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: OnMouseLeave - path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\NativeWindow.cs startLine: 1847 assemblies: - OpenTK.Windowing.Desktop @@ -3030,12 +2670,8 @@ items: fullName: OpenTK.Windowing.Desktop.NativeWindow.OnMouseEnter() type: Method source: - remote: - path: src/OpenTK.Windowing.Desktop/NativeWindow.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: OnMouseEnter - path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\NativeWindow.cs startLine: 1855 assemblies: - OpenTK.Windowing.Desktop @@ -3058,12 +2694,8 @@ items: fullName: OpenTK.Windowing.Desktop.NativeWindow.OnMouseDown(OpenTK.Windowing.Common.MouseButtonEventArgs) type: Method source: - remote: - path: src/OpenTK.Windowing.Desktop/NativeWindow.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: OnMouseDown - path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\NativeWindow.cs startLine: 1864 assemblies: - OpenTK.Windowing.Desktop @@ -3090,12 +2722,8 @@ items: fullName: OpenTK.Windowing.Desktop.NativeWindow.OnMouseUp(OpenTK.Windowing.Common.MouseButtonEventArgs) type: Method source: - remote: - path: src/OpenTK.Windowing.Desktop/NativeWindow.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: OnMouseUp - path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\NativeWindow.cs startLine: 1873 assemblies: - OpenTK.Windowing.Desktop @@ -3122,12 +2750,8 @@ items: fullName: OpenTK.Windowing.Desktop.NativeWindow.OnMouseMove(OpenTK.Windowing.Common.MouseMoveEventArgs) type: Method source: - remote: - path: src/OpenTK.Windowing.Desktop/NativeWindow.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: OnMouseMove - path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\NativeWindow.cs startLine: 1882 assemblies: - OpenTK.Windowing.Desktop @@ -3154,12 +2778,8 @@ items: fullName: OpenTK.Windowing.Desktop.NativeWindow.OnMouseWheel(OpenTK.Windowing.Common.MouseWheelEventArgs) type: Method source: - remote: - path: src/OpenTK.Windowing.Desktop/NativeWindow.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: OnMouseWheel - path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\NativeWindow.cs startLine: 1891 assemblies: - OpenTK.Windowing.Desktop @@ -3186,12 +2806,8 @@ items: fullName: OpenTK.Windowing.Desktop.NativeWindow.OnMinimized(OpenTK.Windowing.Common.MinimizedEventArgs) type: Method source: - remote: - path: src/OpenTK.Windowing.Desktop/NativeWindow.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: OnMinimized - path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\NativeWindow.cs startLine: 1901 assemblies: - OpenTK.Windowing.Desktop @@ -3221,12 +2837,8 @@ items: fullName: OpenTK.Windowing.Desktop.NativeWindow.OnMaximized(OpenTK.Windowing.Common.MaximizedEventArgs) type: Method source: - remote: - path: src/OpenTK.Windowing.Desktop/NativeWindow.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: OnMaximized - path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\NativeWindow.cs startLine: 1913 assemblies: - OpenTK.Windowing.Desktop @@ -3256,12 +2868,8 @@ items: fullName: OpenTK.Windowing.Desktop.NativeWindow.OnFileDrop(OpenTK.Windowing.Common.FileDropEventArgs) type: Method source: - remote: - path: src/OpenTK.Windowing.Desktop/NativeWindow.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: OnFileDrop - path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\NativeWindow.cs startLine: 1924 assemblies: - OpenTK.Windowing.Desktop @@ -3288,12 +2896,8 @@ items: fullName: OpenTK.Windowing.Desktop.NativeWindow.Dispose(bool) type: Method source: - remote: - path: src/OpenTK.Windowing.Desktop/NativeWindow.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Dispose - path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\NativeWindow.cs startLine: 1932 assemblies: - OpenTK.Windowing.Desktop @@ -3322,12 +2926,8 @@ items: fullName: OpenTK.Windowing.Desktop.NativeWindow.~NativeWindow() type: Method source: - remote: - path: src/OpenTK.Windowing.Desktop/NativeWindow.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Finalize - path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\NativeWindow.cs startLine: 1960 assemblies: - OpenTK.Windowing.Desktop @@ -3353,12 +2953,8 @@ items: fullName: OpenTK.Windowing.Desktop.NativeWindow.Dispose() type: Method source: - remote: - path: src/OpenTK.Windowing.Desktop/NativeWindow.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Dispose - path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\NativeWindow.cs startLine: 1966 assemblies: - OpenTK.Windowing.Desktop @@ -3383,13 +2979,9 @@ items: fullName: OpenTK.Windowing.Desktop.NativeWindow.CenterWindow() type: Method source: - remote: - path: src/OpenTK.Windowing.Desktop/NativeWindow.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CenterWindow - path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs - startLine: 1996 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\NativeWindow.cs + startLine: 2007 assemblies: - OpenTK.Windowing.Desktop namespace: OpenTK.Windowing.Desktop @@ -3411,13 +3003,9 @@ items: fullName: OpenTK.Windowing.Desktop.NativeWindow.CenterWindow(OpenTK.Mathematics.Vector2i) type: Method source: - remote: - path: src/OpenTK.Windowing.Desktop/NativeWindow.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CenterWindow - path: opentk/src/OpenTK.Windowing.Desktop/NativeWindow.cs - startLine: 2002 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\NativeWindow.cs + startLine: 2013 assemblies: - OpenTK.Windowing.Desktop namespace: OpenTK.Windowing.Desktop @@ -4593,6 +4181,37 @@ references: name: ProcessWindowEvents nameWithType: NativeWindow.ProcessWindowEvents fullName: OpenTK.Windowing.Desktop.NativeWindow.ProcessWindowEvents +- uid: OpenTK.Windowing.Desktop.NativeWindow.ProcessEvents(System.Double) + commentId: M:OpenTK.Windowing.Desktop.NativeWindow.ProcessEvents(System.Double) + parent: OpenTK.Windowing.Desktop.NativeWindow + isExternal: true + href: OpenTK.Windowing.Desktop.NativeWindow.html#OpenTK_Windowing_Desktop_NativeWindow_ProcessEvents_System_Double_ + name: ProcessEvents(double) + nameWithType: NativeWindow.ProcessEvents(double) + fullName: OpenTK.Windowing.Desktop.NativeWindow.ProcessEvents(double) + nameWithType.vb: NativeWindow.ProcessEvents(Double) + fullName.vb: OpenTK.Windowing.Desktop.NativeWindow.ProcessEvents(Double) + name.vb: ProcessEvents(Double) + spec.csharp: + - uid: OpenTK.Windowing.Desktop.NativeWindow.ProcessEvents(System.Double) + name: ProcessEvents + href: OpenTK.Windowing.Desktop.NativeWindow.html#OpenTK_Windowing_Desktop_NativeWindow_ProcessEvents_System_Double_ + - name: ( + - uid: System.Double + name: double + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.double + - name: ) + spec.vb: + - uid: OpenTK.Windowing.Desktop.NativeWindow.ProcessEvents(System.Double) + name: ProcessEvents + href: OpenTK.Windowing.Desktop.NativeWindow.html#OpenTK_Windowing_Desktop_NativeWindow_ProcessEvents_System_Double_ + - name: ( + - uid: System.Double + name: Double + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.double + - name: ) - uid: OpenTK.Windowing.Desktop.GameWindow.Run commentId: M:OpenTK.Windowing.Desktop.GameWindow.Run href: OpenTK.Windowing.Desktop.GameWindow.html#OpenTK_Windowing_Desktop_GameWindow_Run diff --git a/api/OpenTK.Windowing.Desktop.NativeWindowSettings.yml b/api/OpenTK.Windowing.Desktop.NativeWindowSettings.yml index f326b8a7..7036a4b9 100644 --- a/api/OpenTK.Windowing.Desktop.NativeWindowSettings.yml +++ b/api/OpenTK.Windowing.Desktop.NativeWindowSettings.yml @@ -49,12 +49,8 @@ items: fullName: OpenTK.Windowing.Desktop.NativeWindowSettings type: Class source: - remote: - path: src/OpenTK.Windowing.Desktop/NativeWindowSettings.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: NativeWindowSettings - path: opentk/src/OpenTK.Windowing.Desktop/NativeWindowSettings.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\NativeWindowSettings.cs startLine: 20 assemblies: - OpenTK.Windowing.Desktop @@ -86,12 +82,8 @@ items: fullName: OpenTK.Windowing.Desktop.NativeWindowSettings.Default type: Field source: - remote: - path: src/OpenTK.Windowing.Desktop/NativeWindowSettings.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Default - path: opentk/src/OpenTK.Windowing.Desktop/NativeWindowSettings.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\NativeWindowSettings.cs startLine: 25 assemblies: - OpenTK.Windowing.Desktop @@ -115,12 +107,8 @@ items: fullName: OpenTK.Windowing.Desktop.NativeWindowSettings.NativeWindowSettings() type: Constructor source: - remote: - path: src/OpenTK.Windowing.Desktop/NativeWindowSettings.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Windowing.Desktop/NativeWindowSettings.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\NativeWindowSettings.cs startLine: 30 assemblies: - OpenTK.Windowing.Desktop @@ -146,12 +134,8 @@ items: fullName: OpenTK.Windowing.Desktop.NativeWindowSettings.SharedContext type: Property source: - remote: - path: src/OpenTK.Windowing.Desktop/NativeWindowSettings.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SharedContext - path: opentk/src/OpenTK.Windowing.Desktop/NativeWindowSettings.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\NativeWindowSettings.cs startLine: 42 assemblies: - OpenTK.Windowing.Desktop @@ -177,12 +161,8 @@ items: fullName: OpenTK.Windowing.Desktop.NativeWindowSettings.Icon type: Property source: - remote: - path: src/OpenTK.Windowing.Desktop/NativeWindowSettings.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Icon - path: opentk/src/OpenTK.Windowing.Desktop/NativeWindowSettings.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\NativeWindowSettings.cs startLine: 52 assemblies: - OpenTK.Windowing.Desktop @@ -214,12 +194,8 @@ items: fullName: OpenTK.Windowing.Desktop.NativeWindowSettings.IsEventDriven type: Property source: - remote: - path: src/OpenTK.Windowing.Desktop/NativeWindowSettings.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: IsEventDriven - path: opentk/src/OpenTK.Windowing.Desktop/NativeWindowSettings.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\NativeWindowSettings.cs startLine: 59 assemblies: - OpenTK.Windowing.Desktop @@ -250,12 +226,8 @@ items: fullName: OpenTK.Windowing.Desktop.NativeWindowSettings.API type: Property source: - remote: - path: src/OpenTK.Windowing.Desktop/NativeWindowSettings.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: API - path: opentk/src/OpenTK.Windowing.Desktop/NativeWindowSettings.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\NativeWindowSettings.cs startLine: 70 assemblies: - OpenTK.Windowing.Desktop @@ -289,12 +261,8 @@ items: fullName: OpenTK.Windowing.Desktop.NativeWindowSettings.Profile type: Property source: - remote: - path: src/OpenTK.Windowing.Desktop/NativeWindowSettings.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Profile - path: opentk/src/OpenTK.Windowing.Desktop/NativeWindowSettings.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\NativeWindowSettings.cs startLine: 80 assemblies: - OpenTK.Windowing.Desktop @@ -326,12 +294,8 @@ items: fullName: OpenTK.Windowing.Desktop.NativeWindowSettings.Flags type: Property source: - remote: - path: src/OpenTK.Windowing.Desktop/NativeWindowSettings.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Flags - path: opentk/src/OpenTK.Windowing.Desktop/NativeWindowSettings.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\NativeWindowSettings.cs startLine: 86 assemblies: - OpenTK.Windowing.Desktop @@ -360,12 +324,8 @@ items: fullName: OpenTK.Windowing.Desktop.NativeWindowSettings.AutoLoadBindings type: Property source: - remote: - path: src/OpenTK.Windowing.Desktop/NativeWindowSettings.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: AutoLoadBindings - path: opentk/src/OpenTK.Windowing.Desktop/NativeWindowSettings.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\NativeWindowSettings.cs startLine: 92 assemblies: - OpenTK.Windowing.Desktop @@ -394,12 +354,8 @@ items: fullName: OpenTK.Windowing.Desktop.NativeWindowSettings.APIVersion type: Property source: - remote: - path: src/OpenTK.Windowing.Desktop/NativeWindowSettings.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: APIVersion - path: opentk/src/OpenTK.Windowing.Desktop/NativeWindowSettings.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\NativeWindowSettings.cs startLine: 115 assemblies: - OpenTK.Windowing.Desktop @@ -457,12 +413,8 @@ items: fullName: OpenTK.Windowing.Desktop.NativeWindowSettings.CurrentMonitor type: Property source: - remote: - path: src/OpenTK.Windowing.Desktop/NativeWindowSettings.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CurrentMonitor - path: opentk/src/OpenTK.Windowing.Desktop/NativeWindowSettings.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\NativeWindowSettings.cs startLine: 120 assemblies: - OpenTK.Windowing.Desktop @@ -488,12 +440,8 @@ items: fullName: OpenTK.Windowing.Desktop.NativeWindowSettings.Title type: Property source: - remote: - path: src/OpenTK.Windowing.Desktop/NativeWindowSettings.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Title - path: opentk/src/OpenTK.Windowing.Desktop/NativeWindowSettings.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\NativeWindowSettings.cs startLine: 125 assemblies: - OpenTK.Windowing.Desktop @@ -519,12 +467,8 @@ items: fullName: OpenTK.Windowing.Desktop.NativeWindowSettings.StartFocused type: Property source: - remote: - path: src/OpenTK.Windowing.Desktop/NativeWindowSettings.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: StartFocused - path: opentk/src/OpenTK.Windowing.Desktop/NativeWindowSettings.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\NativeWindowSettings.cs startLine: 130 assemblies: - OpenTK.Windowing.Desktop @@ -550,12 +494,8 @@ items: fullName: OpenTK.Windowing.Desktop.NativeWindowSettings.StartVisible type: Property source: - remote: - path: src/OpenTK.Windowing.Desktop/NativeWindowSettings.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: StartVisible - path: opentk/src/OpenTK.Windowing.Desktop/NativeWindowSettings.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\NativeWindowSettings.cs startLine: 135 assemblies: - OpenTK.Windowing.Desktop @@ -581,12 +521,8 @@ items: fullName: OpenTK.Windowing.Desktop.NativeWindowSettings.WindowState type: Property source: - remote: - path: src/OpenTK.Windowing.Desktop/NativeWindowSettings.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: WindowState - path: opentk/src/OpenTK.Windowing.Desktop/NativeWindowSettings.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\NativeWindowSettings.cs startLine: 141 assemblies: - OpenTK.Windowing.Desktop @@ -615,12 +551,8 @@ items: fullName: OpenTK.Windowing.Desktop.NativeWindowSettings.WindowBorder type: Property source: - remote: - path: src/OpenTK.Windowing.Desktop/NativeWindowSettings.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: WindowBorder - path: opentk/src/OpenTK.Windowing.Desktop/NativeWindowSettings.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\NativeWindowSettings.cs startLine: 146 assemblies: - OpenTK.Windowing.Desktop @@ -646,12 +578,8 @@ items: fullName: OpenTK.Windowing.Desktop.NativeWindowSettings.Location type: Property source: - remote: - path: src/OpenTK.Windowing.Desktop/NativeWindowSettings.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Location - path: opentk/src/OpenTK.Windowing.Desktop/NativeWindowSettings.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\NativeWindowSettings.cs startLine: 154 assemblies: - OpenTK.Windowing.Desktop @@ -678,12 +606,8 @@ items: fullName: OpenTK.Windowing.Desktop.NativeWindowSettings.ClientSize type: Property source: - remote: - path: src/OpenTK.Windowing.Desktop/NativeWindowSettings.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ClientSize - path: opentk/src/OpenTK.Windowing.Desktop/NativeWindowSettings.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\NativeWindowSettings.cs startLine: 159 assemblies: - OpenTK.Windowing.Desktop @@ -709,12 +633,8 @@ items: fullName: OpenTK.Windowing.Desktop.NativeWindowSettings.MinimumClientSize type: Property source: - remote: - path: src/OpenTK.Windowing.Desktop/NativeWindowSettings.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MinimumClientSize - path: opentk/src/OpenTK.Windowing.Desktop/NativeWindowSettings.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\NativeWindowSettings.cs startLine: 168 assemblies: - OpenTK.Windowing.Desktop @@ -744,12 +664,8 @@ items: fullName: OpenTK.Windowing.Desktop.NativeWindowSettings.MaximumClientSize type: Property source: - remote: - path: src/OpenTK.Windowing.Desktop/NativeWindowSettings.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MaximumClientSize - path: opentk/src/OpenTK.Windowing.Desktop/NativeWindowSettings.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\NativeWindowSettings.cs startLine: 177 assemblies: - OpenTK.Windowing.Desktop @@ -779,12 +695,8 @@ items: fullName: OpenTK.Windowing.Desktop.NativeWindowSettings.Size type: Property source: - remote: - path: src/OpenTK.Windowing.Desktop/NativeWindowSettings.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Size - path: opentk/src/OpenTK.Windowing.Desktop/NativeWindowSettings.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\NativeWindowSettings.cs startLine: 182 assemblies: - OpenTK.Windowing.Desktop @@ -822,12 +734,8 @@ items: fullName: OpenTK.Windowing.Desktop.NativeWindowSettings.MinimumSize type: Property source: - remote: - path: src/OpenTK.Windowing.Desktop/NativeWindowSettings.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MinimumSize - path: opentk/src/OpenTK.Windowing.Desktop/NativeWindowSettings.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\NativeWindowSettings.cs startLine: 196 assemblies: - OpenTK.Windowing.Desktop @@ -869,12 +777,8 @@ items: fullName: OpenTK.Windowing.Desktop.NativeWindowSettings.MaximumSize type: Property source: - remote: - path: src/OpenTK.Windowing.Desktop/NativeWindowSettings.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MaximumSize - path: opentk/src/OpenTK.Windowing.Desktop/NativeWindowSettings.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\NativeWindowSettings.cs startLine: 210 assemblies: - OpenTK.Windowing.Desktop @@ -916,12 +820,8 @@ items: fullName: OpenTK.Windowing.Desktop.NativeWindowSettings.AspectRatio type: Property source: - remote: - path: src/OpenTK.Windowing.Desktop/NativeWindowSettings.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: AspectRatio - path: opentk/src/OpenTK.Windowing.Desktop/NativeWindowSettings.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\NativeWindowSettings.cs startLine: 224 assemblies: - OpenTK.Windowing.Desktop @@ -951,12 +851,8 @@ items: fullName: OpenTK.Windowing.Desktop.NativeWindowSettings.IsFullscreen type: Property source: - remote: - path: src/OpenTK.Windowing.Desktop/NativeWindowSettings.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: IsFullscreen - path: opentk/src/OpenTK.Windowing.Desktop/NativeWindowSettings.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\NativeWindowSettings.cs startLine: 229 assemblies: - OpenTK.Windowing.Desktop @@ -996,12 +892,8 @@ items: fullName: OpenTK.Windowing.Desktop.NativeWindowSettings.NumberOfSamples type: Property source: - remote: - path: src/OpenTK.Windowing.Desktop/NativeWindowSettings.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: NumberOfSamples - path: opentk/src/OpenTK.Windowing.Desktop/NativeWindowSettings.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\NativeWindowSettings.cs startLine: 239 assemblies: - OpenTK.Windowing.Desktop @@ -1031,12 +923,8 @@ items: fullName: OpenTK.Windowing.Desktop.NativeWindowSettings.StencilBits type: Property source: - remote: - path: src/OpenTK.Windowing.Desktop/NativeWindowSettings.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: StencilBits - path: opentk/src/OpenTK.Windowing.Desktop/NativeWindowSettings.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\NativeWindowSettings.cs startLine: 247 assemblies: - OpenTK.Windowing.Desktop @@ -1063,12 +951,8 @@ items: fullName: OpenTK.Windowing.Desktop.NativeWindowSettings.DepthBits type: Property source: - remote: - path: src/OpenTK.Windowing.Desktop/NativeWindowSettings.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DepthBits - path: opentk/src/OpenTK.Windowing.Desktop/NativeWindowSettings.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\NativeWindowSettings.cs startLine: 255 assemblies: - OpenTK.Windowing.Desktop @@ -1095,12 +979,8 @@ items: fullName: OpenTK.Windowing.Desktop.NativeWindowSettings.RedBits type: Property source: - remote: - path: src/OpenTK.Windowing.Desktop/NativeWindowSettings.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: RedBits - path: opentk/src/OpenTK.Windowing.Desktop/NativeWindowSettings.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\NativeWindowSettings.cs startLine: 263 assemblies: - OpenTK.Windowing.Desktop @@ -1127,12 +1007,8 @@ items: fullName: OpenTK.Windowing.Desktop.NativeWindowSettings.GreenBits type: Property source: - remote: - path: src/OpenTK.Windowing.Desktop/NativeWindowSettings.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GreenBits - path: opentk/src/OpenTK.Windowing.Desktop/NativeWindowSettings.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\NativeWindowSettings.cs startLine: 271 assemblies: - OpenTK.Windowing.Desktop @@ -1159,12 +1035,8 @@ items: fullName: OpenTK.Windowing.Desktop.NativeWindowSettings.BlueBits type: Property source: - remote: - path: src/OpenTK.Windowing.Desktop/NativeWindowSettings.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: BlueBits - path: opentk/src/OpenTK.Windowing.Desktop/NativeWindowSettings.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\NativeWindowSettings.cs startLine: 279 assemblies: - OpenTK.Windowing.Desktop @@ -1191,12 +1063,8 @@ items: fullName: OpenTK.Windowing.Desktop.NativeWindowSettings.AlphaBits type: Property source: - remote: - path: src/OpenTK.Windowing.Desktop/NativeWindowSettings.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: AlphaBits - path: opentk/src/OpenTK.Windowing.Desktop/NativeWindowSettings.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\NativeWindowSettings.cs startLine: 287 assemblies: - OpenTK.Windowing.Desktop @@ -1223,12 +1091,8 @@ items: fullName: OpenTK.Windowing.Desktop.NativeWindowSettings.SrgbCapable type: Property source: - remote: - path: src/OpenTK.Windowing.Desktop/NativeWindowSettings.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SrgbCapable - path: opentk/src/OpenTK.Windowing.Desktop/NativeWindowSettings.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\NativeWindowSettings.cs startLine: 292 assemblies: - OpenTK.Windowing.Desktop @@ -1254,12 +1118,8 @@ items: fullName: OpenTK.Windowing.Desktop.NativeWindowSettings.TransparentFramebuffer type: Property source: - remote: - path: src/OpenTK.Windowing.Desktop/NativeWindowSettings.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TransparentFramebuffer - path: opentk/src/OpenTK.Windowing.Desktop/NativeWindowSettings.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\NativeWindowSettings.cs startLine: 298 assemblies: - OpenTK.Windowing.Desktop @@ -1288,12 +1148,8 @@ items: fullName: OpenTK.Windowing.Desktop.NativeWindowSettings.Vsync type: Property source: - remote: - path: src/OpenTK.Windowing.Desktop/NativeWindowSettings.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Vsync - path: opentk/src/OpenTK.Windowing.Desktop/NativeWindowSettings.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\NativeWindowSettings.cs startLine: 306 assemblies: - OpenTK.Windowing.Desktop @@ -1326,12 +1182,8 @@ items: fullName: OpenTK.Windowing.Desktop.NativeWindowSettings.AutoIconify type: Property source: - remote: - path: src/OpenTK.Windowing.Desktop/NativeWindowSettings.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: AutoIconify - path: opentk/src/OpenTK.Windowing.Desktop/NativeWindowSettings.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.Desktop\NativeWindowSettings.cs startLine: 312 assemblies: - OpenTK.Windowing.Desktop diff --git a/api/OpenTK.Windowing.GraphicsLibraryFramework.ANGLEPlatformType.yml b/api/OpenTK.Windowing.GraphicsLibraryFramework.ANGLEPlatformType.yml new file mode 100644 index 00000000..86843b24 --- /dev/null +++ b/api/OpenTK.Windowing.GraphicsLibraryFramework.ANGLEPlatformType.yml @@ -0,0 +1,223 @@ +### YamlMime:ManagedReference +items: +- uid: OpenTK.Windowing.GraphicsLibraryFramework.ANGLEPlatformType + commentId: T:OpenTK.Windowing.GraphicsLibraryFramework.ANGLEPlatformType + id: ANGLEPlatformType + parent: OpenTK.Windowing.GraphicsLibraryFramework + children: + - OpenTK.Windowing.GraphicsLibraryFramework.ANGLEPlatformType.D3D11 + - OpenTK.Windowing.GraphicsLibraryFramework.ANGLEPlatformType.D3D9 + - OpenTK.Windowing.GraphicsLibraryFramework.ANGLEPlatformType.Metal + - OpenTK.Windowing.GraphicsLibraryFramework.ANGLEPlatformType.None + - OpenTK.Windowing.GraphicsLibraryFramework.ANGLEPlatformType.OpenGL + - OpenTK.Windowing.GraphicsLibraryFramework.ANGLEPlatformType.OpenGLES + - OpenTK.Windowing.GraphicsLibraryFramework.ANGLEPlatformType.Vulkan + langs: + - csharp + - vb + name: ANGLEPlatformType + nameWithType: ANGLEPlatformType + fullName: OpenTK.Windowing.GraphicsLibraryFramework.ANGLEPlatformType + type: Enum + source: + id: ANGLEPlatformType + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\ANGLEPlatformType.cs + startLine: 6 + assemblies: + - OpenTK.Windowing.GraphicsLibraryFramework + namespace: OpenTK.Windowing.GraphicsLibraryFramework + syntax: + content: public enum ANGLEPlatformType + content.vb: Public Enum ANGLEPlatformType +- uid: OpenTK.Windowing.GraphicsLibraryFramework.ANGLEPlatformType.None + commentId: F:OpenTK.Windowing.GraphicsLibraryFramework.ANGLEPlatformType.None + id: None + parent: OpenTK.Windowing.GraphicsLibraryFramework.ANGLEPlatformType + langs: + - csharp + - vb + name: None + nameWithType: ANGLEPlatformType.None + fullName: OpenTK.Windowing.GraphicsLibraryFramework.ANGLEPlatformType.None + type: Field + source: + id: None + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\ANGLEPlatformType.cs + startLine: 8 + assemblies: + - OpenTK.Windowing.GraphicsLibraryFramework + namespace: OpenTK.Windowing.GraphicsLibraryFramework + syntax: + content: None = 225281 + return: + type: OpenTK.Windowing.GraphicsLibraryFramework.ANGLEPlatformType +- uid: OpenTK.Windowing.GraphicsLibraryFramework.ANGLEPlatformType.OpenGL + commentId: F:OpenTK.Windowing.GraphicsLibraryFramework.ANGLEPlatformType.OpenGL + id: OpenGL + parent: OpenTK.Windowing.GraphicsLibraryFramework.ANGLEPlatformType + langs: + - csharp + - vb + name: OpenGL + nameWithType: ANGLEPlatformType.OpenGL + fullName: OpenTK.Windowing.GraphicsLibraryFramework.ANGLEPlatformType.OpenGL + type: Field + source: + id: OpenGL + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\ANGLEPlatformType.cs + startLine: 9 + assemblies: + - OpenTK.Windowing.GraphicsLibraryFramework + namespace: OpenTK.Windowing.GraphicsLibraryFramework + syntax: + content: OpenGL = 225282 + return: + type: OpenTK.Windowing.GraphicsLibraryFramework.ANGLEPlatformType +- uid: OpenTK.Windowing.GraphicsLibraryFramework.ANGLEPlatformType.OpenGLES + commentId: F:OpenTK.Windowing.GraphicsLibraryFramework.ANGLEPlatformType.OpenGLES + id: OpenGLES + parent: OpenTK.Windowing.GraphicsLibraryFramework.ANGLEPlatformType + langs: + - csharp + - vb + name: OpenGLES + nameWithType: ANGLEPlatformType.OpenGLES + fullName: OpenTK.Windowing.GraphicsLibraryFramework.ANGLEPlatformType.OpenGLES + type: Field + source: + id: OpenGLES + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\ANGLEPlatformType.cs + startLine: 10 + assemblies: + - OpenTK.Windowing.GraphicsLibraryFramework + namespace: OpenTK.Windowing.GraphicsLibraryFramework + syntax: + content: OpenGLES = 225283 + return: + type: OpenTK.Windowing.GraphicsLibraryFramework.ANGLEPlatformType +- uid: OpenTK.Windowing.GraphicsLibraryFramework.ANGLEPlatformType.D3D9 + commentId: F:OpenTK.Windowing.GraphicsLibraryFramework.ANGLEPlatformType.D3D9 + id: D3D9 + parent: OpenTK.Windowing.GraphicsLibraryFramework.ANGLEPlatformType + langs: + - csharp + - vb + name: D3D9 + nameWithType: ANGLEPlatformType.D3D9 + fullName: OpenTK.Windowing.GraphicsLibraryFramework.ANGLEPlatformType.D3D9 + type: Field + source: + id: D3D9 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\ANGLEPlatformType.cs + startLine: 11 + assemblies: + - OpenTK.Windowing.GraphicsLibraryFramework + namespace: OpenTK.Windowing.GraphicsLibraryFramework + syntax: + content: D3D9 = 225284 + return: + type: OpenTK.Windowing.GraphicsLibraryFramework.ANGLEPlatformType +- uid: OpenTK.Windowing.GraphicsLibraryFramework.ANGLEPlatformType.D3D11 + commentId: F:OpenTK.Windowing.GraphicsLibraryFramework.ANGLEPlatformType.D3D11 + id: D3D11 + parent: OpenTK.Windowing.GraphicsLibraryFramework.ANGLEPlatformType + langs: + - csharp + - vb + name: D3D11 + nameWithType: ANGLEPlatformType.D3D11 + fullName: OpenTK.Windowing.GraphicsLibraryFramework.ANGLEPlatformType.D3D11 + type: Field + source: + id: D3D11 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\ANGLEPlatformType.cs + startLine: 12 + assemblies: + - OpenTK.Windowing.GraphicsLibraryFramework + namespace: OpenTK.Windowing.GraphicsLibraryFramework + syntax: + content: D3D11 = 225285 + return: + type: OpenTK.Windowing.GraphicsLibraryFramework.ANGLEPlatformType +- uid: OpenTK.Windowing.GraphicsLibraryFramework.ANGLEPlatformType.Vulkan + commentId: F:OpenTK.Windowing.GraphicsLibraryFramework.ANGLEPlatformType.Vulkan + id: Vulkan + parent: OpenTK.Windowing.GraphicsLibraryFramework.ANGLEPlatformType + langs: + - csharp + - vb + name: Vulkan + nameWithType: ANGLEPlatformType.Vulkan + fullName: OpenTK.Windowing.GraphicsLibraryFramework.ANGLEPlatformType.Vulkan + type: Field + source: + id: Vulkan + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\ANGLEPlatformType.cs + startLine: 13 + assemblies: + - OpenTK.Windowing.GraphicsLibraryFramework + namespace: OpenTK.Windowing.GraphicsLibraryFramework + syntax: + content: Vulkan = 225287 + return: + type: OpenTK.Windowing.GraphicsLibraryFramework.ANGLEPlatformType +- uid: OpenTK.Windowing.GraphicsLibraryFramework.ANGLEPlatformType.Metal + commentId: F:OpenTK.Windowing.GraphicsLibraryFramework.ANGLEPlatformType.Metal + id: Metal + parent: OpenTK.Windowing.GraphicsLibraryFramework.ANGLEPlatformType + langs: + - csharp + - vb + name: Metal + nameWithType: ANGLEPlatformType.Metal + fullName: OpenTK.Windowing.GraphicsLibraryFramework.ANGLEPlatformType.Metal + type: Field + source: + id: Metal + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\ANGLEPlatformType.cs + startLine: 14 + assemblies: + - OpenTK.Windowing.GraphicsLibraryFramework + namespace: OpenTK.Windowing.GraphicsLibraryFramework + syntax: + content: Metal = 225288 + return: + type: OpenTK.Windowing.GraphicsLibraryFramework.ANGLEPlatformType +references: +- uid: OpenTK.Windowing.GraphicsLibraryFramework + commentId: N:OpenTK.Windowing.GraphicsLibraryFramework + href: OpenTK.html + name: OpenTK.Windowing.GraphicsLibraryFramework + nameWithType: OpenTK.Windowing.GraphicsLibraryFramework + fullName: OpenTK.Windowing.GraphicsLibraryFramework + spec.csharp: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Windowing + name: Windowing + href: OpenTK.Windowing.html + - name: . + - uid: OpenTK.Windowing.GraphicsLibraryFramework + name: GraphicsLibraryFramework + href: OpenTK.Windowing.GraphicsLibraryFramework.html + spec.vb: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Windowing + name: Windowing + href: OpenTK.Windowing.html + - name: . + - uid: OpenTK.Windowing.GraphicsLibraryFramework + name: GraphicsLibraryFramework + href: OpenTK.Windowing.GraphicsLibraryFramework.html +- uid: OpenTK.Windowing.GraphicsLibraryFramework.ANGLEPlatformType + commentId: T:OpenTK.Windowing.GraphicsLibraryFramework.ANGLEPlatformType + parent: OpenTK.Windowing.GraphicsLibraryFramework + href: OpenTK.Windowing.GraphicsLibraryFramework.ANGLEPlatformType.html + name: ANGLEPlatformType + nameWithType: ANGLEPlatformType + fullName: OpenTK.Windowing.GraphicsLibraryFramework.ANGLEPlatformType diff --git a/api/OpenTK.Windowing.GraphicsLibraryFramework.ClientApi.yml b/api/OpenTK.Windowing.GraphicsLibraryFramework.ClientApi.yml index e315359f..34209063 100644 --- a/api/OpenTK.Windowing.GraphicsLibraryFramework.ClientApi.yml +++ b/api/OpenTK.Windowing.GraphicsLibraryFramework.ClientApi.yml @@ -16,12 +16,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.ClientApi type: Enum source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/ClientApi.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ClientApi - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/ClientApi.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\ClientApi.cs startLine: 15 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -46,12 +42,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.ClientApi.NoApi type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/ClientApi.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: NoApi - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/ClientApi.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\ClientApi.cs startLine: 20 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -74,12 +66,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.ClientApi.OpenGlApi type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/ClientApi.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: OpenGlApi - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/ClientApi.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\ClientApi.cs startLine: 25 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -102,12 +90,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.ClientApi.OpenGlEsApi type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/ClientApi.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: OpenGlEsApi - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/ClientApi.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\ClientApi.cs startLine: 30 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework diff --git a/api/OpenTK.Windowing.GraphicsLibraryFramework.ConnectedState.yml b/api/OpenTK.Windowing.GraphicsLibraryFramework.ConnectedState.yml index efc68658..06f7b6d5 100644 --- a/api/OpenTK.Windowing.GraphicsLibraryFramework.ConnectedState.yml +++ b/api/OpenTK.Windowing.GraphicsLibraryFramework.ConnectedState.yml @@ -15,12 +15,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.ConnectedState type: Enum source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/ConnectedState.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ConnectedState - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/ConnectedState.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\ConnectedState.cs startLine: 14 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -42,12 +38,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.ConnectedState.Connected type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/ConnectedState.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Connected - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/ConnectedState.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\ConnectedState.cs startLine: 19 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -70,12 +62,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.ConnectedState.Disconnected type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/ConnectedState.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Disconnected - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/ConnectedState.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\ConnectedState.cs startLine: 24 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework diff --git a/api/OpenTK.Windowing.GraphicsLibraryFramework.ContextApi.yml b/api/OpenTK.Windowing.GraphicsLibraryFramework.ContextApi.yml index 5f1af0d9..4a4bbc89 100644 --- a/api/OpenTK.Windowing.GraphicsLibraryFramework.ContextApi.yml +++ b/api/OpenTK.Windowing.GraphicsLibraryFramework.ContextApi.yml @@ -15,12 +15,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.ContextApi type: Enum source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/ContextApi.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ContextApi - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/ContextApi.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\ContextApi.cs startLine: 14 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -42,12 +38,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.ContextApi.NativeContextApi type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/ContextApi.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: NativeContextApi - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/ContextApi.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\ContextApi.cs startLine: 19 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -70,12 +62,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.ContextApi.EglContextApi type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/ContextApi.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: EglContextApi - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/ContextApi.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\ContextApi.cs startLine: 24 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework diff --git a/api/OpenTK.Windowing.GraphicsLibraryFramework.Cursor.yml b/api/OpenTK.Windowing.GraphicsLibraryFramework.Cursor.yml index a2e3396d..349e4374 100644 --- a/api/OpenTK.Windowing.GraphicsLibraryFramework.Cursor.yml +++ b/api/OpenTK.Windowing.GraphicsLibraryFramework.Cursor.yml @@ -13,12 +13,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.Cursor type: Struct source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Cursor.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Cursor - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Cursor.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Cursor.cs startLine: 14 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework diff --git a/api/OpenTK.Windowing.GraphicsLibraryFramework.CursorModeValue.yml b/api/OpenTK.Windowing.GraphicsLibraryFramework.CursorModeValue.yml index bbe1e54f..c4caa752 100644 --- a/api/OpenTK.Windowing.GraphicsLibraryFramework.CursorModeValue.yml +++ b/api/OpenTK.Windowing.GraphicsLibraryFramework.CursorModeValue.yml @@ -5,6 +5,7 @@ items: id: CursorModeValue parent: OpenTK.Windowing.GraphicsLibraryFramework children: + - OpenTK.Windowing.GraphicsLibraryFramework.CursorModeValue.CursorCaptured - OpenTK.Windowing.GraphicsLibraryFramework.CursorModeValue.CursorDisabled - OpenTK.Windowing.GraphicsLibraryFramework.CursorModeValue.CursorHidden - OpenTK.Windowing.GraphicsLibraryFramework.CursorModeValue.CursorNormal @@ -16,12 +17,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.CursorModeValue type: Enum source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/CursorModeValue.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CursorModeValue - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/CursorModeValue.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\CursorModeValue.cs startLine: 15 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -46,12 +43,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.CursorModeValue.CursorNormal type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/CursorModeValue.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CursorNormal - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/CursorModeValue.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\CursorModeValue.cs startLine: 21 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -77,12 +70,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.CursorModeValue.CursorHidden type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/CursorModeValue.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CursorHidden - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/CursorModeValue.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\CursorModeValue.cs startLine: 26 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -105,12 +94,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.CursorModeValue.CursorDisabled type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/CursorModeValue.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CursorDisabled - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/CursorModeValue.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\CursorModeValue.cs startLine: 34 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -128,6 +113,30 @@ items: content: CursorDisabled = 212995 return: type: OpenTK.Windowing.GraphicsLibraryFramework.CursorModeValue +- uid: OpenTK.Windowing.GraphicsLibraryFramework.CursorModeValue.CursorCaptured + commentId: F:OpenTK.Windowing.GraphicsLibraryFramework.CursorModeValue.CursorCaptured + id: CursorCaptured + parent: OpenTK.Windowing.GraphicsLibraryFramework.CursorModeValue + langs: + - csharp + - vb + name: CursorCaptured + nameWithType: CursorModeValue.CursorCaptured + fullName: OpenTK.Windowing.GraphicsLibraryFramework.CursorModeValue.CursorCaptured + type: Field + source: + id: CursorCaptured + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\CursorModeValue.cs + startLine: 39 + assemblies: + - OpenTK.Windowing.GraphicsLibraryFramework + namespace: OpenTK.Windowing.GraphicsLibraryFramework + summary: Makes the cursor visible and confines it to the content area of the window. + example: [] + syntax: + content: CursorCaptured = 212995 + return: + type: OpenTK.Windowing.GraphicsLibraryFramework.CursorModeValue references: - uid: OpenTK.Windowing.GraphicsLibraryFramework commentId: N:OpenTK.Windowing.GraphicsLibraryFramework diff --git a/api/OpenTK.Windowing.GraphicsLibraryFramework.CursorShape.yml b/api/OpenTK.Windowing.GraphicsLibraryFramework.CursorShape.yml index 25f32331..de1123d3 100644 --- a/api/OpenTK.Windowing.GraphicsLibraryFramework.CursorShape.yml +++ b/api/OpenTK.Windowing.GraphicsLibraryFramework.CursorShape.yml @@ -10,6 +10,13 @@ items: - OpenTK.Windowing.GraphicsLibraryFramework.CursorShape.HResize - OpenTK.Windowing.GraphicsLibraryFramework.CursorShape.Hand - OpenTK.Windowing.GraphicsLibraryFramework.CursorShape.IBeam + - OpenTK.Windowing.GraphicsLibraryFramework.CursorShape.NotAllowed + - OpenTK.Windowing.GraphicsLibraryFramework.CursorShape.PointingHand + - OpenTK.Windowing.GraphicsLibraryFramework.CursorShape.ResizeAll + - OpenTK.Windowing.GraphicsLibraryFramework.CursorShape.ResizeEW + - OpenTK.Windowing.GraphicsLibraryFramework.CursorShape.ResizeNESW + - OpenTK.Windowing.GraphicsLibraryFramework.CursorShape.ResizeNS + - OpenTK.Windowing.GraphicsLibraryFramework.CursorShape.ResizeNWSE - OpenTK.Windowing.GraphicsLibraryFramework.CursorShape.VResize langs: - csharp @@ -19,13 +26,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.CursorShape type: Enum source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/CursorShape.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CursorShape - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/CursorShape.cs - startLine: 14 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\CursorShape.cs + startLine: 16 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -46,13 +49,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.CursorShape.Arrow type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/CursorShape.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Arrow - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/CursorShape.cs - startLine: 19 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\CursorShape.cs + startLine: 21 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -74,13 +73,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.CursorShape.IBeam type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/CursorShape.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: IBeam - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/CursorShape.cs - startLine: 24 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\CursorShape.cs + startLine: 26 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -102,13 +97,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.CursorShape.Crosshair type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/CursorShape.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Crosshair - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/CursorShape.cs - startLine: 29 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\CursorShape.cs + startLine: 31 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -118,32 +109,241 @@ items: content: Crosshair = 221187 return: type: OpenTK.Windowing.GraphicsLibraryFramework.CursorShape -- uid: OpenTK.Windowing.GraphicsLibraryFramework.CursorShape.Hand - commentId: F:OpenTK.Windowing.GraphicsLibraryFramework.CursorShape.Hand - id: Hand +- uid: OpenTK.Windowing.GraphicsLibraryFramework.CursorShape.PointingHand + commentId: F:OpenTK.Windowing.GraphicsLibraryFramework.CursorShape.PointingHand + id: PointingHand parent: OpenTK.Windowing.GraphicsLibraryFramework.CursorShape langs: - csharp - vb - name: Hand - nameWithType: CursorShape.Hand - fullName: OpenTK.Windowing.GraphicsLibraryFramework.CursorShape.Hand + name: PointingHand + nameWithType: CursorShape.PointingHand + fullName: OpenTK.Windowing.GraphicsLibraryFramework.CursorShape.PointingHand type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/CursorShape.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: Hand - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/CursorShape.cs - startLine: 34 + id: PointingHand + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\CursorShape.cs + startLine: 36 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework - summary: The hand shape. Used when mousing over something that can be dragged around. + summary: The pointing hand shape. Used when mousing over something that can be dragged around. example: [] syntax: - content: Hand = 221188 + content: PointingHand = 221188 + return: + type: OpenTK.Windowing.GraphicsLibraryFramework.CursorShape +- uid: OpenTK.Windowing.GraphicsLibraryFramework.CursorShape.ResizeEW + commentId: F:OpenTK.Windowing.GraphicsLibraryFramework.CursorShape.ResizeEW + id: ResizeEW + parent: OpenTK.Windowing.GraphicsLibraryFramework.CursorShape + langs: + - csharp + - vb + name: ResizeEW + nameWithType: CursorShape.ResizeEW + fullName: OpenTK.Windowing.GraphicsLibraryFramework.CursorShape.ResizeEW + type: Field + source: + id: ResizeEW + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\CursorShape.cs + startLine: 41 + assemblies: + - OpenTK.Windowing.GraphicsLibraryFramework + namespace: OpenTK.Windowing.GraphicsLibraryFramework + summary: The horizontal resize/move arrow shape. This is usually a horizontal double-headed arrow. + example: [] + syntax: + content: ResizeEW = 221189 + return: + type: OpenTK.Windowing.GraphicsLibraryFramework.CursorShape +- uid: OpenTK.Windowing.GraphicsLibraryFramework.CursorShape.ResizeNS + commentId: F:OpenTK.Windowing.GraphicsLibraryFramework.CursorShape.ResizeNS + id: ResizeNS + parent: OpenTK.Windowing.GraphicsLibraryFramework.CursorShape + langs: + - csharp + - vb + name: ResizeNS + nameWithType: CursorShape.ResizeNS + fullName: OpenTK.Windowing.GraphicsLibraryFramework.CursorShape.ResizeNS + type: Field + source: + id: ResizeNS + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\CursorShape.cs + startLine: 46 + assemblies: + - OpenTK.Windowing.GraphicsLibraryFramework + namespace: OpenTK.Windowing.GraphicsLibraryFramework + summary: The vertical resize/move shape. This is usually a vertical double-headed arrow. + example: [] + syntax: + content: ResizeNS = 221190 + return: + type: OpenTK.Windowing.GraphicsLibraryFramework.CursorShape +- uid: OpenTK.Windowing.GraphicsLibraryFramework.CursorShape.ResizeNWSE + commentId: F:OpenTK.Windowing.GraphicsLibraryFramework.CursorShape.ResizeNWSE + id: ResizeNWSE + parent: OpenTK.Windowing.GraphicsLibraryFramework.CursorShape + langs: + - csharp + - vb + name: ResizeNWSE + nameWithType: CursorShape.ResizeNWSE + fullName: OpenTK.Windowing.GraphicsLibraryFramework.CursorShape.ResizeNWSE + type: Field + source: + id: ResizeNWSE + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\CursorShape.cs + startLine: 65 + assemblies: + - OpenTK.Windowing.GraphicsLibraryFramework + namespace: OpenTK.Windowing.GraphicsLibraryFramework + summary: >- + The top-left to bottom-right diagonal resize/move shape. This is usually + + a diagonal double-headed arrow. + + +

+ + macOS: This shape is provided by a private system API and may fail + + with in the future. + +

+ + Wayland: This shape is provided by a newer standard not supported by + + all cursor themes. + +

+ + X11: This shape is provided by a newer standard not supported by all + + cursor themes. + +

+ example: [] + syntax: + content: ResizeNWSE = 221191 + return: + type: OpenTK.Windowing.GraphicsLibraryFramework.CursorShape +- uid: OpenTK.Windowing.GraphicsLibraryFramework.CursorShape.ResizeNESW + commentId: F:OpenTK.Windowing.GraphicsLibraryFramework.CursorShape.ResizeNESW + id: ResizeNESW + parent: OpenTK.Windowing.GraphicsLibraryFramework.CursorShape + langs: + - csharp + - vb + name: ResizeNESW + nameWithType: CursorShape.ResizeNESW + fullName: OpenTK.Windowing.GraphicsLibraryFramework.CursorShape.ResizeNESW + type: Field + source: + id: ResizeNESW + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\CursorShape.cs + startLine: 84 + assemblies: + - OpenTK.Windowing.GraphicsLibraryFramework + namespace: OpenTK.Windowing.GraphicsLibraryFramework + summary: >- + The top-right to bottom-left diagonal resize/move shape. This is usually + + a diagonal double-headed arrow. + + +

+ + macOS: This shape is provided by a private system API and may fail + + with in the future. + +

+ + Wayland: This shape is provided by a newer standard not supported by + + all cursor themes. + +

+ + X11: This shape is provided by a newer standard not supported by all + + cursor themes. + +

+ example: [] + syntax: + content: ResizeNESW = 221192 + return: + type: OpenTK.Windowing.GraphicsLibraryFramework.CursorShape +- uid: OpenTK.Windowing.GraphicsLibraryFramework.CursorShape.ResizeAll + commentId: F:OpenTK.Windowing.GraphicsLibraryFramework.CursorShape.ResizeAll + id: ResizeAll + parent: OpenTK.Windowing.GraphicsLibraryFramework.CursorShape + langs: + - csharp + - vb + name: ResizeAll + nameWithType: CursorShape.ResizeAll + fullName: OpenTK.Windowing.GraphicsLibraryFramework.CursorShape.ResizeAll + type: Field + source: + id: ResizeAll + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\CursorShape.cs + startLine: 90 + assemblies: + - OpenTK.Windowing.GraphicsLibraryFramework + namespace: OpenTK.Windowing.GraphicsLibraryFramework + summary: >- + The omni-directional resize cursor/move shape. This is usually either + + a combined horizontal and vertical double-headed arrow or a grabbing hand. + example: [] + syntax: + content: ResizeAll = 221193 + return: + type: OpenTK.Windowing.GraphicsLibraryFramework.CursorShape +- uid: OpenTK.Windowing.GraphicsLibraryFramework.CursorShape.NotAllowed + commentId: F:OpenTK.Windowing.GraphicsLibraryFramework.CursorShape.NotAllowed + id: NotAllowed + parent: OpenTK.Windowing.GraphicsLibraryFramework.CursorShape + langs: + - csharp + - vb + name: NotAllowed + nameWithType: CursorShape.NotAllowed + fullName: OpenTK.Windowing.GraphicsLibraryFramework.CursorShape.NotAllowed + type: Field + source: + id: NotAllowed + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\CursorShape.cs + startLine: 105 + assemblies: + - OpenTK.Windowing.GraphicsLibraryFramework + namespace: OpenTK.Windowing.GraphicsLibraryFramework + summary: >- + The operation-not-allowed shape. This is usually a circle with a diagonal + + line through it. + + +

+ + Wayland: This shape is provided by a newer standard not supported by + + all cursor themes. + +

+ + X11: This shape is provided by a newer standard not supported by all + + cursor themes. + +

+ example: [] + syntax: + content: NotAllowed = 221194 return: type: OpenTK.Windowing.GraphicsLibraryFramework.CursorShape - uid: OpenTK.Windowing.GraphicsLibraryFramework.CursorShape.HResize @@ -158,22 +358,34 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.CursorShape.HResize type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/CursorShape.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: HResize - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/CursorShape.cs - startLine: 39 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\CursorShape.cs + startLine: 111 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework - summary: The horizontal resize shape. Used when mousing over something that can be horizontally resized. + summary: >- + The horizontal resize shape. Used when mousing over something that can be horizontally resized. + + This is an alias for compatibility with earlier versions. example: [] syntax: - content: HResize = 221189 + content: >- + [Obsolete("Use ResizeEW instead.")] + + HResize = 221189 return: type: OpenTK.Windowing.GraphicsLibraryFramework.CursorShape + content.vb: >- + + + HResize = 221189 + attributes: + - type: System.ObsoleteAttribute + ctor: System.ObsoleteAttribute.#ctor(System.String) + arguments: + - type: System.String + value: Use ResizeEW instead. - uid: OpenTK.Windowing.GraphicsLibraryFramework.CursorShape.VResize commentId: F:OpenTK.Windowing.GraphicsLibraryFramework.CursorShape.VResize id: VResize @@ -186,22 +398,71 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.CursorShape.VResize type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/CursorShape.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: VResize - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/CursorShape.cs - startLine: 44 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\CursorShape.cs + startLine: 118 + assemblies: + - OpenTK.Windowing.GraphicsLibraryFramework + namespace: OpenTK.Windowing.GraphicsLibraryFramework + summary: >- + The vertical resize shape. Used when mousing over something that can be vertically resized. + + This is an alias for compatibility with earlier versions. + example: [] + syntax: + content: >- + [Obsolete("Use ResizeNS instead.")] + + VResize = 221190 + return: + type: OpenTK.Windowing.GraphicsLibraryFramework.CursorShape + content.vb: >- + + + VResize = 221190 + attributes: + - type: System.ObsoleteAttribute + ctor: System.ObsoleteAttribute.#ctor(System.String) + arguments: + - type: System.String + value: Use ResizeNS instead. +- uid: OpenTK.Windowing.GraphicsLibraryFramework.CursorShape.Hand + commentId: F:OpenTK.Windowing.GraphicsLibraryFramework.CursorShape.Hand + id: Hand + parent: OpenTK.Windowing.GraphicsLibraryFramework.CursorShape + langs: + - csharp + - vb + name: Hand + nameWithType: CursorShape.Hand + fullName: OpenTK.Windowing.GraphicsLibraryFramework.CursorShape.Hand + type: Field + source: + id: Hand + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\CursorShape.cs + startLine: 124 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework - summary: The vertical resize shape. Used when mousing over something that can be vertically resized. + summary: This is an alias for compatibility with earlier versions. example: [] syntax: - content: VResize = 221190 + content: >- + [Obsolete("Use PointingHand instead.")] + + Hand = 221188 return: type: OpenTK.Windowing.GraphicsLibraryFramework.CursorShape + content.vb: >- + + + Hand = 221188 + attributes: + - type: System.ObsoleteAttribute + ctor: System.ObsoleteAttribute.#ctor(System.String) + arguments: + - type: System.String + value: Use PointingHand instead. references: - uid: OpenTK.Windowing.GraphicsLibraryFramework commentId: N:OpenTK.Windowing.GraphicsLibraryFramework @@ -240,3 +501,9 @@ references: name: CursorShape nameWithType: CursorShape fullName: OpenTK.Windowing.GraphicsLibraryFramework.CursorShape +- uid: OpenTK.Windowing.GraphicsLibraryFramework.ErrorCode.CursorUnavailable + commentId: F:OpenTK.Windowing.GraphicsLibraryFramework.ErrorCode.CursorUnavailable + href: OpenTK.Windowing.GraphicsLibraryFramework.ErrorCode.html#OpenTK_Windowing_GraphicsLibraryFramework_ErrorCode_CursorUnavailable + name: CursorUnavailable + nameWithType: ErrorCode.CursorUnavailable + fullName: OpenTK.Windowing.GraphicsLibraryFramework.ErrorCode.CursorUnavailable diff --git a/api/OpenTK.Windowing.GraphicsLibraryFramework.CursorStateAttribute.yml b/api/OpenTK.Windowing.GraphicsLibraryFramework.CursorStateAttribute.yml index acdb559a..9cee36ef 100644 --- a/api/OpenTK.Windowing.GraphicsLibraryFramework.CursorStateAttribute.yml +++ b/api/OpenTK.Windowing.GraphicsLibraryFramework.CursorStateAttribute.yml @@ -14,12 +14,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.CursorStateAttribute type: Enum source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/CursorStateAttribute.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CursorStateAttribute - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/CursorStateAttribute.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\CursorStateAttribute.cs startLine: 16 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -46,12 +42,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.CursorStateAttribute.Cursor type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/CursorStateAttribute.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Cursor - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/CursorStateAttribute.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\CursorStateAttribute.cs startLine: 21 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework diff --git a/api/OpenTK.Windowing.GraphicsLibraryFramework.ErrorCode.yml b/api/OpenTK.Windowing.GraphicsLibraryFramework.ErrorCode.yml index 836ef406..ed989a65 100644 --- a/api/OpenTK.Windowing.GraphicsLibraryFramework.ErrorCode.yml +++ b/api/OpenTK.Windowing.GraphicsLibraryFramework.ErrorCode.yml @@ -6,6 +6,9 @@ items: parent: OpenTK.Windowing.GraphicsLibraryFramework children: - OpenTK.Windowing.GraphicsLibraryFramework.ErrorCode.ApiUnavailable + - OpenTK.Windowing.GraphicsLibraryFramework.ErrorCode.CursorUnavailable + - OpenTK.Windowing.GraphicsLibraryFramework.ErrorCode.FeatureUnavailable + - OpenTK.Windowing.GraphicsLibraryFramework.ErrorCode.FeatureUnimplemented - OpenTK.Windowing.GraphicsLibraryFramework.ErrorCode.FormatUnavailable - OpenTK.Windowing.GraphicsLibraryFramework.ErrorCode.InvalidEnum - OpenTK.Windowing.GraphicsLibraryFramework.ErrorCode.InvalidValue @@ -15,6 +18,7 @@ items: - OpenTK.Windowing.GraphicsLibraryFramework.ErrorCode.NotInitialized - OpenTK.Windowing.GraphicsLibraryFramework.ErrorCode.OutOfMemory - OpenTK.Windowing.GraphicsLibraryFramework.ErrorCode.PlatformError + - OpenTK.Windowing.GraphicsLibraryFramework.ErrorCode.PlatformUnavailable - OpenTK.Windowing.GraphicsLibraryFramework.ErrorCode.VersionUnavailable langs: - csharp @@ -24,12 +28,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.ErrorCode type: Enum source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/ErrorCode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ErrorCode - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/ErrorCode.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\ErrorCode.cs startLine: 14 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -51,12 +51,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.ErrorCode.NoError type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/ErrorCode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: NoError - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/ErrorCode.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\ErrorCode.cs startLine: 19 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -79,12 +75,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.ErrorCode.NotInitialized type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/ErrorCode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: NotInitialized - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/ErrorCode.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\ErrorCode.cs startLine: 24 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -107,12 +99,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.ErrorCode.NoContext type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/ErrorCode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: NoContext - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/ErrorCode.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\ErrorCode.cs startLine: 29 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -135,12 +123,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.ErrorCode.InvalidEnum type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/ErrorCode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: InvalidEnum - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/ErrorCode.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\ErrorCode.cs startLine: 39 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -169,12 +153,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.ErrorCode.InvalidValue type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/ErrorCode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: InvalidValue - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/ErrorCode.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\ErrorCode.cs startLine: 52 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -209,12 +189,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.ErrorCode.OutOfMemory type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/ErrorCode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: OutOfMemory - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/ErrorCode.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\ErrorCode.cs startLine: 62 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -243,12 +219,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.ErrorCode.ApiUnavailable type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/ErrorCode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ApiUnavailable - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/ErrorCode.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\ErrorCode.cs startLine: 67 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -271,12 +243,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.ErrorCode.VersionUnavailable type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/ErrorCode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: VersionUnavailable - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/ErrorCode.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\ErrorCode.cs startLine: 72 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -299,12 +267,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.ErrorCode.PlatformError type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/ErrorCode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: PlatformError - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/ErrorCode.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\ErrorCode.cs startLine: 82 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -333,12 +297,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.ErrorCode.FormatUnavailable type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/ErrorCode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: FormatUnavailable - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/ErrorCode.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\ErrorCode.cs startLine: 95 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -373,12 +333,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.ErrorCode.NoWindowContext type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/ErrorCode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: NoWindowContext - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/ErrorCode.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\ErrorCode.cs startLine: 100 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -389,6 +345,182 @@ items: content: NoWindowContext = 65546 return: type: OpenTK.Windowing.GraphicsLibraryFramework.ErrorCode +- uid: OpenTK.Windowing.GraphicsLibraryFramework.ErrorCode.CursorUnavailable + commentId: F:OpenTK.Windowing.GraphicsLibraryFramework.ErrorCode.CursorUnavailable + id: CursorUnavailable + parent: OpenTK.Windowing.GraphicsLibraryFramework.ErrorCode + langs: + - csharp + - vb + name: CursorUnavailable + nameWithType: ErrorCode.CursorUnavailable + fullName: OpenTK.Windowing.GraphicsLibraryFramework.ErrorCode.CursorUnavailable + type: Field + source: + id: CursorUnavailable + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\ErrorCode.cs + startLine: 110 + assemblies: + - OpenTK.Windowing.GraphicsLibraryFramework + namespace: OpenTK.Windowing.GraphicsLibraryFramework + summary: >- + The specified standard cursor shape is not available, either because the + + current platform cursor theme does not provide it or because it is not + + available on the platform. + + + Platform or system settings limitation. + + Pick another or create a custom cursor. + example: [] + syntax: + content: CursorUnavailable = 65547 + return: + type: OpenTK.Windowing.GraphicsLibraryFramework.ErrorCode +- uid: OpenTK.Windowing.GraphicsLibraryFramework.ErrorCode.FeatureUnavailable + commentId: F:OpenTK.Windowing.GraphicsLibraryFramework.ErrorCode.FeatureUnavailable + id: FeatureUnavailable + parent: OpenTK.Windowing.GraphicsLibraryFramework.ErrorCode + langs: + - csharp + - vb + name: FeatureUnavailable + nameWithType: ErrorCode.FeatureUnavailable + fullName: OpenTK.Windowing.GraphicsLibraryFramework.ErrorCode.FeatureUnavailable + type: Field + source: + id: FeatureUnavailable + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\ErrorCode.cs + startLine: 125 + assemblies: + - OpenTK.Windowing.GraphicsLibraryFramework + namespace: OpenTK.Windowing.GraphicsLibraryFramework + summary: >- + The requested feature is not provided by the platform, so GLFW is unable to + + implement it. The documentation for each function notes if it could emit + + this error. + + + Platform or platform version limitation. The error can be ignored + + unless the feature is critical to the application. + + +

+ + A function call that emits this error has no effect other than the error and + + updating any existing out parameters. + +

+ example: [] + syntax: + content: FeatureUnavailable = 65548 + return: + type: OpenTK.Windowing.GraphicsLibraryFramework.ErrorCode +- uid: OpenTK.Windowing.GraphicsLibraryFramework.ErrorCode.FeatureUnimplemented + commentId: F:OpenTK.Windowing.GraphicsLibraryFramework.ErrorCode.FeatureUnimplemented + id: FeatureUnimplemented + parent: OpenTK.Windowing.GraphicsLibraryFramework.ErrorCode + langs: + - csharp + - vb + name: FeatureUnimplemented + nameWithType: ErrorCode.FeatureUnimplemented + fullName: OpenTK.Windowing.GraphicsLibraryFramework.ErrorCode.FeatureUnimplemented + type: Field + source: + id: FeatureUnimplemented + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\ErrorCode.cs + startLine: 139 + assemblies: + - OpenTK.Windowing.GraphicsLibraryFramework + namespace: OpenTK.Windowing.GraphicsLibraryFramework + summary: >- + The requested feature has not yet been implemented in GLFW for this platform. + + + An incomplete implementation of GLFW for this platform, hopefully + + fixed in a future release. The error can be ignored unless the feature is + + critical to the application. + + +

+ + A function call that emits this error has no effect other than the error and + + updating any existing out parameters. + +

+ example: [] + syntax: + content: FeatureUnimplemented = 65549 + return: + type: OpenTK.Windowing.GraphicsLibraryFramework.ErrorCode +- uid: OpenTK.Windowing.GraphicsLibraryFramework.ErrorCode.PlatformUnavailable + commentId: F:OpenTK.Windowing.GraphicsLibraryFramework.ErrorCode.PlatformUnavailable + id: PlatformUnavailable + parent: OpenTK.Windowing.GraphicsLibraryFramework.ErrorCode + langs: + - csharp + - vb + name: PlatformUnavailable + nameWithType: ErrorCode.PlatformUnavailable + fullName: OpenTK.Windowing.GraphicsLibraryFramework.ErrorCode.PlatformUnavailable + type: Field + source: + id: PlatformUnavailable + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\ErrorCode.cs + startLine: 162 + assemblies: + - OpenTK.Windowing.GraphicsLibraryFramework + namespace: OpenTK.Windowing.GraphicsLibraryFramework + summary: >- + If emitted during initialization, no matching platform was found. If the + + init hint was set to , + + GLFW could not detect any of the platforms supported by this library binary, + + except for the Null platform. + + If the init hint was set to a specific platform, it is either not supported by this library + + binary or GLFW was not able to detect it. + + + If emitted by a native access function, GLFW was initialized for a different platform + + than the function is for. + + + Failure to detect any platform usually only happens on non-macOS Unix + + systems, either when no window system is running or the program was run from + + a terminal that does not have the necessary environment variables. Fall back to + + a different platform if possible or notify the user that no usable platform was + + detected. + + + Failure to detect a specific platform may have the same cause as above or be because + + support for that platform was not compiled in. Call to + + check whether a specific platform is supported by a library binary. + example: [] + syntax: + content: PlatformUnavailable = 65550 + return: + type: OpenTK.Windowing.GraphicsLibraryFramework.ErrorCode references: - uid: OpenTK.Windowing.GraphicsLibraryFramework commentId: N:OpenTK.Windowing.GraphicsLibraryFramework @@ -445,3 +577,46 @@ references: href: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.html#OpenTK_Windowing_GraphicsLibraryFramework_GLFW_Init - name: ( - name: ) +- uid: OpenTK.Windowing.GraphicsLibraryFramework.CursorShape + commentId: T:OpenTK.Windowing.GraphicsLibraryFramework.CursorShape + parent: OpenTK.Windowing.GraphicsLibraryFramework + href: OpenTK.Windowing.GraphicsLibraryFramework.CursorShape.html + name: CursorShape + nameWithType: CursorShape + fullName: OpenTK.Windowing.GraphicsLibraryFramework.CursorShape +- uid: OpenTK.Windowing.GraphicsLibraryFramework.InitHintPlatform.Platform + commentId: F:OpenTK.Windowing.GraphicsLibraryFramework.InitHintPlatform.Platform + href: OpenTK.Windowing.GraphicsLibraryFramework.InitHintPlatform.html#OpenTK_Windowing_GraphicsLibraryFramework_InitHintPlatform_Platform + name: Platform + nameWithType: InitHintPlatform.Platform + fullName: OpenTK.Windowing.GraphicsLibraryFramework.InitHintPlatform.Platform +- uid: OpenTK.Windowing.GraphicsLibraryFramework.Platform.Any + commentId: F:OpenTK.Windowing.GraphicsLibraryFramework.Platform.Any + href: OpenTK.Windowing.GraphicsLibraryFramework.Platform.html#OpenTK_Windowing_GraphicsLibraryFramework_Platform_Any + name: Any + nameWithType: Platform.Any + fullName: OpenTK.Windowing.GraphicsLibraryFramework.Platform.Any +- uid: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.PlatformSupported(OpenTK.Windowing.GraphicsLibraryFramework.Platform) + commentId: M:OpenTK.Windowing.GraphicsLibraryFramework.GLFW.PlatformSupported(OpenTK.Windowing.GraphicsLibraryFramework.Platform) + href: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.html#OpenTK_Windowing_GraphicsLibraryFramework_GLFW_PlatformSupported_OpenTK_Windowing_GraphicsLibraryFramework_Platform_ + name: PlatformSupported(Platform) + nameWithType: GLFW.PlatformSupported(Platform) + fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.PlatformSupported(OpenTK.Windowing.GraphicsLibraryFramework.Platform) + spec.csharp: + - uid: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.PlatformSupported(OpenTK.Windowing.GraphicsLibraryFramework.Platform) + name: PlatformSupported + href: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.html#OpenTK_Windowing_GraphicsLibraryFramework_GLFW_PlatformSupported_OpenTK_Windowing_GraphicsLibraryFramework_Platform_ + - name: ( + - uid: OpenTK.Windowing.GraphicsLibraryFramework.Platform + name: Platform + href: OpenTK.Windowing.GraphicsLibraryFramework.Platform.html + - name: ) + spec.vb: + - uid: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.PlatformSupported(OpenTK.Windowing.GraphicsLibraryFramework.Platform) + name: PlatformSupported + href: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.html#OpenTK_Windowing_GraphicsLibraryFramework_GLFW_PlatformSupported_OpenTK_Windowing_GraphicsLibraryFramework_Platform_ + - name: ( + - uid: OpenTK.Windowing.GraphicsLibraryFramework.Platform + name: Platform + href: OpenTK.Windowing.GraphicsLibraryFramework.Platform.html + - name: ) diff --git a/api/OpenTK.Windowing.GraphicsLibraryFramework.GLFW.yml b/api/OpenTK.Windowing.GraphicsLibraryFramework.GLFW.yml index a7e2d29a..a5c4da3e 100644 --- a/api/OpenTK.Windowing.GraphicsLibraryFramework.GLFW.yml +++ b/api/OpenTK.Windowing.GraphicsLibraryFramework.GLFW.yml @@ -5,6 +5,7 @@ items: id: GLFW parent: OpenTK.Windowing.GraphicsLibraryFramework children: + - OpenTK.Windowing.GraphicsLibraryFramework.GLFW.AnyPosition - OpenTK.Windowing.GraphicsLibraryFramework.GLFW.CreateCursor(OpenTK.Windowing.GraphicsLibraryFramework.Image@,System.Int32,System.Int32) - OpenTK.Windowing.GraphicsLibraryFramework.GLFW.CreateCursorRaw(OpenTK.Windowing.GraphicsLibraryFramework.Image*,System.Int32,System.Int32) - OpenTK.Windowing.GraphicsLibraryFramework.GLFW.CreateStandardCursor(OpenTK.Windowing.GraphicsLibraryFramework.CursorShape) @@ -21,6 +22,7 @@ items: - OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetClipboardString(OpenTK.Windowing.GraphicsLibraryFramework.Window*) - OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetClipboardStringRaw(OpenTK.Windowing.GraphicsLibraryFramework.Window*) - OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetCocoaMonitor(OpenTK.Windowing.GraphicsLibraryFramework.Monitor*) + - OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetCocoaView(OpenTK.Windowing.GraphicsLibraryFramework.Window*) - OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetCocoaWindow(OpenTK.Windowing.GraphicsLibraryFramework.Window*) - OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetCurrentContext - OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetCursorPos(OpenTK.Windowing.GraphicsLibraryFramework.Window*,System.Double@,System.Double@) @@ -82,6 +84,7 @@ items: - OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetOSMesaContext(OpenTK.Windowing.GraphicsLibraryFramework.Window*) - OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetOSMesaDepthBuffer(OpenTK.Windowing.GraphicsLibraryFramework.Window*,System.Int32@,System.Int32@,System.Int32@,System.IntPtr@) - OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetPhysicalDevicePresentationSupport(OpenTK.Windowing.GraphicsLibraryFramework.VkHandle,OpenTK.Windowing.GraphicsLibraryFramework.VkHandle,System.Int32) + - OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetPlatform - OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetPrimaryMonitor - OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetProcAddress(System.String) - OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetProcAddressRaw(System.Byte*) @@ -120,6 +123,8 @@ items: - OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetWindowPosRaw(OpenTK.Windowing.GraphicsLibraryFramework.Window*,System.Int32*,System.Int32*) - OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetWindowSize(OpenTK.Windowing.GraphicsLibraryFramework.Window*,System.Int32@,System.Int32@) - OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetWindowSizeRaw(OpenTK.Windowing.GraphicsLibraryFramework.Window*,System.Int32*,System.Int32*) + - OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetWindowTitle(OpenTK.Windowing.GraphicsLibraryFramework.Window*) + - OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetWindowTitleRaw(OpenTK.Windowing.GraphicsLibraryFramework.Window*) - OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetWindowUserPointer(OpenTK.Windowing.GraphicsLibraryFramework.Window*) - OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetX11Adapter(OpenTK.Windowing.GraphicsLibraryFramework.Monitor*) - OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetX11Display @@ -129,12 +134,17 @@ items: - OpenTK.Windowing.GraphicsLibraryFramework.GLFW.HideWindow(OpenTK.Windowing.GraphicsLibraryFramework.Window*) - OpenTK.Windowing.GraphicsLibraryFramework.GLFW.IconifyWindow(OpenTK.Windowing.GraphicsLibraryFramework.Window*) - OpenTK.Windowing.GraphicsLibraryFramework.GLFW.Init + - OpenTK.Windowing.GraphicsLibraryFramework.GLFW.InitAllocator(OpenTK.Windowing.GraphicsLibraryFramework.GLFWallocator@) + - OpenTK.Windowing.GraphicsLibraryFramework.GLFW.InitHint(OpenTK.Windowing.GraphicsLibraryFramework.InitHintANGLEPlatformType,OpenTK.Windowing.GraphicsLibraryFramework.ANGLEPlatformType) - OpenTK.Windowing.GraphicsLibraryFramework.GLFW.InitHint(OpenTK.Windowing.GraphicsLibraryFramework.InitHintBool,System.Boolean) - OpenTK.Windowing.GraphicsLibraryFramework.GLFW.InitHint(OpenTK.Windowing.GraphicsLibraryFramework.InitHintInt,System.Int32) + - OpenTK.Windowing.GraphicsLibraryFramework.GLFW.InitHint(OpenTK.Windowing.GraphicsLibraryFramework.InitHintPlatform,OpenTK.Windowing.GraphicsLibraryFramework.Platform) + - OpenTK.Windowing.GraphicsLibraryFramework.GLFW.InitVulkanLoader(System.IntPtr) - OpenTK.Windowing.GraphicsLibraryFramework.GLFW.JoystickIsGamepad(System.Int32) - OpenTK.Windowing.GraphicsLibraryFramework.GLFW.JoystickPresent(System.Int32) - OpenTK.Windowing.GraphicsLibraryFramework.GLFW.MakeContextCurrent(OpenTK.Windowing.GraphicsLibraryFramework.Window*) - OpenTK.Windowing.GraphicsLibraryFramework.GLFW.MaximizeWindow(OpenTK.Windowing.GraphicsLibraryFramework.Window*) + - OpenTK.Windowing.GraphicsLibraryFramework.GLFW.PlatformSupported(OpenTK.Windowing.GraphicsLibraryFramework.Platform) - OpenTK.Windowing.GraphicsLibraryFramework.GLFW.PollEvents - OpenTK.Windowing.GraphicsLibraryFramework.GLFW.PostEmptyEvent - OpenTK.Windowing.GraphicsLibraryFramework.GLFW.RawMouseMotionSupported @@ -214,13 +224,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW type: Class source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GLFW - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 19 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 20 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -254,13 +260,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.DontCare type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DontCare - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 27 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 28 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -271,6 +273,29 @@ items: return: type: System.Int32 content.vb: Public Const DontCare As Integer = -1 +- uid: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.AnyPosition + commentId: F:OpenTK.Windowing.GraphicsLibraryFramework.GLFW.AnyPosition + id: AnyPosition + parent: OpenTK.Windowing.GraphicsLibraryFramework.GLFW + langs: + - csharp + - vb + name: AnyPosition + nameWithType: GLFW.AnyPosition + fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.AnyPosition + type: Field + source: + id: AnyPosition + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 30 + assemblies: + - OpenTK.Windowing.GraphicsLibraryFramework + namespace: OpenTK.Windowing.GraphicsLibraryFramework + syntax: + content: public const int AnyPosition = -2147483648 + return: + type: System.Int32 + content.vb: Public Const AnyPosition As Integer = -2147483648 - uid: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.Init commentId: M:OpenTK.Windowing.GraphicsLibraryFramework.GLFW.Init id: Init @@ -283,13 +308,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.Init() type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Init - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 59 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 62 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -363,13 +384,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.Terminate() type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Terminate - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 92 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 95 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -444,13 +461,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.InitHint(OpenTK.Windowing.GraphicsLibraryFramework.InitHintBool, bool) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: InitHint - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 123 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 126 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -527,13 +540,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.InitHint(OpenTK.Windowing.GraphicsLibraryFramework.InitHintInt, int) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: InitHint - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 155 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 158 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -592,12 +601,260 @@ items: description: The to set. - id: value type: System.Int32 - description: The new value of the . + description: The new value of the . content.vb: Public Shared Sub InitHint(hintInt As InitHintInt, value As Integer) overload: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.InitHint* nameWithType.vb: GLFW.InitHint(InitHintInt, Integer) fullName.vb: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.InitHint(OpenTK.Windowing.GraphicsLibraryFramework.InitHintInt, Integer) name.vb: InitHint(InitHintInt, Integer) +- uid: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.InitHint(OpenTK.Windowing.GraphicsLibraryFramework.InitHintPlatform,OpenTK.Windowing.GraphicsLibraryFramework.Platform) + commentId: M:OpenTK.Windowing.GraphicsLibraryFramework.GLFW.InitHint(OpenTK.Windowing.GraphicsLibraryFramework.InitHintPlatform,OpenTK.Windowing.GraphicsLibraryFramework.Platform) + id: InitHint(OpenTK.Windowing.GraphicsLibraryFramework.InitHintPlatform,OpenTK.Windowing.GraphicsLibraryFramework.Platform) + parent: OpenTK.Windowing.GraphicsLibraryFramework.GLFW + langs: + - csharp + - vb + name: InitHint(InitHintPlatform, Platform) + nameWithType: GLFW.InitHint(InitHintPlatform, Platform) + fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.InitHint(OpenTK.Windowing.GraphicsLibraryFramework.InitHintPlatform, OpenTK.Windowing.GraphicsLibraryFramework.Platform) + type: Method + source: + id: InitHint + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 189 + assemblies: + - OpenTK.Windowing.GraphicsLibraryFramework + namespace: OpenTK.Windowing.GraphicsLibraryFramework + summary: >- +

+ + This function sets hints for the next initialization of GLFW. + +

+ +

+ + The values you set hints to are never reset by GLFW, but they only take effect during initialization. + +

+ +

+ + Once GLFW has been initialized, + + any values you set will be ignored until the library is terminated and initialized again. + +

+ +

Some hints are platform specific. + + These may be set on any platform but they will only affect their specific platform. + + Other platforms will ignore them. Setting these hints requires no platform specific headers or functions. + +

+ remarks: >- +

+ + This function may be called before . + +

+ +

+ + This function must only be called from the main thread. + +

+ +

+ + Possible errors include and . + +

+ example: [] + syntax: + content: public static void InitHint(InitHintPlatform hintInt, Platform value) + parameters: + - id: hintInt + type: OpenTK.Windowing.GraphicsLibraryFramework.InitHintPlatform + description: The to set. + - id: value + type: OpenTK.Windowing.GraphicsLibraryFramework.Platform + description: The new value of the . + content.vb: Public Shared Sub InitHint(hintInt As InitHintPlatform, value As Platform) + overload: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.InitHint* +- uid: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.InitHint(OpenTK.Windowing.GraphicsLibraryFramework.InitHintANGLEPlatformType,OpenTK.Windowing.GraphicsLibraryFramework.ANGLEPlatformType) + commentId: M:OpenTK.Windowing.GraphicsLibraryFramework.GLFW.InitHint(OpenTK.Windowing.GraphicsLibraryFramework.InitHintANGLEPlatformType,OpenTK.Windowing.GraphicsLibraryFramework.ANGLEPlatformType) + id: InitHint(OpenTK.Windowing.GraphicsLibraryFramework.InitHintANGLEPlatformType,OpenTK.Windowing.GraphicsLibraryFramework.ANGLEPlatformType) + parent: OpenTK.Windowing.GraphicsLibraryFramework.GLFW + langs: + - csharp + - vb + name: InitHint(InitHintANGLEPlatformType, ANGLEPlatformType) + nameWithType: GLFW.InitHint(InitHintANGLEPlatformType, ANGLEPlatformType) + fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.InitHint(OpenTK.Windowing.GraphicsLibraryFramework.InitHintANGLEPlatformType, OpenTK.Windowing.GraphicsLibraryFramework.ANGLEPlatformType) + type: Method + source: + id: InitHint + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 220 + assemblies: + - OpenTK.Windowing.GraphicsLibraryFramework + namespace: OpenTK.Windowing.GraphicsLibraryFramework + summary: >- +

+ + This function sets hints for the next initialization of GLFW. + +

+ +

+ + The values you set hints to are never reset by GLFW, but they only take effect during initialization. + +

+ +

+ + Once GLFW has been initialized, + + any values you set will be ignored until the library is terminated and initialized again. + +

+ +

Some hints are platform specific. + + These may be set on any platform but they will only affect their specific platform. + + Other platforms will ignore them. Setting these hints requires no platform specific headers or functions. + +

+ remarks: >- +

+ + This function may be called before . + +

+ +

+ + This function must only be called from the main thread. + +

+ +

+ + Possible errors include and . + +

+ example: [] + syntax: + content: public static void InitHint(InitHintANGLEPlatformType hintInt, ANGLEPlatformType value) + parameters: + - id: hintInt + type: OpenTK.Windowing.GraphicsLibraryFramework.InitHintANGLEPlatformType + description: The to set. + - id: value + type: OpenTK.Windowing.GraphicsLibraryFramework.ANGLEPlatformType + description: The new value of the . + content.vb: Public Shared Sub InitHint(hintInt As InitHintANGLEPlatformType, value As ANGLEPlatformType) + overload: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.InitHint* +- uid: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.InitAllocator(OpenTK.Windowing.GraphicsLibraryFramework.GLFWallocator@) + commentId: M:OpenTK.Windowing.GraphicsLibraryFramework.GLFW.InitAllocator(OpenTK.Windowing.GraphicsLibraryFramework.GLFWallocator@) + id: InitAllocator(OpenTK.Windowing.GraphicsLibraryFramework.GLFWallocator@) + parent: OpenTK.Windowing.GraphicsLibraryFramework.GLFW + langs: + - csharp + - vb + name: InitAllocator(ref GLFWallocator) + nameWithType: GLFW.InitAllocator(ref GLFWallocator) + fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.InitAllocator(ref OpenTK.Windowing.GraphicsLibraryFramework.GLFWallocator) + type: Method + source: + id: InitAllocator + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 232 + assemblies: + - OpenTK.Windowing.GraphicsLibraryFramework + namespace: OpenTK.Windowing.GraphicsLibraryFramework + summary: >- + To use the default allocator, call this function with a NULL argument. + + + If you specify an allocator struct, every member must be a valid function pointer. + + If any member is NULL, this function will emit GLFW_INVALID_VALUE and the init allocator will be unchanged. + + + The functions in the allocator must fulfill a number of requirements. + + See the documentation for , and for details. + example: [] + syntax: + content: public static void InitAllocator(ref GLFWallocator allocator) + parameters: + - id: allocator + type: OpenTK.Windowing.GraphicsLibraryFramework.GLFWallocator + description: The allocator to use at the next initialization, or to use the default one. + content.vb: Public Shared Sub InitAllocator(allocator As GLFWallocator) + overload: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.InitAllocator* + nameWithType.vb: GLFW.InitAllocator(GLFWallocator) + fullName.vb: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.InitAllocator(OpenTK.Windowing.GraphicsLibraryFramework.GLFWallocator) + name.vb: InitAllocator(GLFWallocator) +- uid: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.InitVulkanLoader(System.IntPtr) + commentId: M:OpenTK.Windowing.GraphicsLibraryFramework.GLFW.InitVulkanLoader(System.IntPtr) + id: InitVulkanLoader(System.IntPtr) + parent: OpenTK.Windowing.GraphicsLibraryFramework.GLFW + langs: + - csharp + - vb + name: InitVulkanLoader(nint) + nameWithType: GLFW.InitVulkanLoader(nint) + fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.InitVulkanLoader(nint) + type: Method + source: + id: InitVulkanLoader + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 251 + assemblies: + - OpenTK.Windowing.GraphicsLibraryFramework + namespace: OpenTK.Windowing.GraphicsLibraryFramework + summary: >- + This function sets the vkGetInstanceProcAddr function that GLFW will use for all Vulkan related entry point queries. + + + This feature is mostly useful on macOS, + + if your copy of the Vulkan loader is in a location where GLFW cannot find it through dynamic loading, + + or if you are still using the static library version of the loader. + + + If set to NULL, GLFW will try to load the Vulkan loader dynamically by its standard name and get this function from there. + + This is the default behavior. + + + The standard name of the loader is vulkan-1.dll on Windows, libvulkan.so.1 on Linux and other Unix-like systems and libvulkan.1.dylib on macOS. + + If your code is also loading it via these names then you probably don't need to use this function. + + + The function address you set is never reset by GLFW, but it only takes effect during initialization. + + Once GLFW has been initialized, any updates will be ignored until the library is terminated and initialized again. + example: [] + syntax: + content: public static void InitVulkanLoader(nint loader) + parameters: + - id: loader + type: System.IntPtr + description: The address of the function to use, or NULL. + content.vb: Public Shared Sub InitVulkanLoader(loader As IntPtr) + overload: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.InitVulkanLoader* + nameWithType.vb: GLFW.InitVulkanLoader(IntPtr) + fullName.vb: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.InitVulkanLoader(System.IntPtr) + name.vb: InitVulkanLoader(IntPtr) - uid: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetVersion(System.Int32@,System.Int32@,System.Int32@) commentId: M:OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetVersion(System.Int32@,System.Int32@,System.Int32@) id: GetVersion(System.Int32@,System.Int32@,System.Int32@) @@ -610,13 +867,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetVersion(out int, out int, out int) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetVersion - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 178 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 274 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -678,13 +931,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetVersionString() type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetVersionString - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 211 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 307 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -747,13 +996,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetVersionStringRaw() type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetVersionStringRaw - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 240 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 336 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -816,13 +1061,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetError(out string) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetError - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 270 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 366 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -892,13 +1133,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetErrorRaw(out byte*) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetErrorRaw - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 303 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 399 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -956,6 +1193,70 @@ items: nameWithType.vb: GLFW.GetErrorRaw(Byte*) fullName.vb: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetErrorRaw(Byte*) name.vb: GetErrorRaw(Byte*) +- uid: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetPlatform + commentId: M:OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetPlatform + id: GetPlatform + parent: OpenTK.Windowing.GraphicsLibraryFramework.GLFW + langs: + - csharp + - vb + name: GetPlatform() + nameWithType: GLFW.GetPlatform() + fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetPlatform() + type: Method + source: + id: GetPlatform + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 412 + assemblies: + - OpenTK.Windowing.GraphicsLibraryFramework + namespace: OpenTK.Windowing.GraphicsLibraryFramework + summary: >- + This function returns the platform that was selected during initialization. + + The returned value will be one of , , , or . + example: [] + syntax: + content: public static Platform GetPlatform() + return: + type: OpenTK.Windowing.GraphicsLibraryFramework.Platform + description: The currently selected platform, or zero if an error occurred. + content.vb: Public Shared Function GetPlatform() As Platform + overload: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetPlatform* +- uid: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.PlatformSupported(OpenTK.Windowing.GraphicsLibraryFramework.Platform) + commentId: M:OpenTK.Windowing.GraphicsLibraryFramework.GLFW.PlatformSupported(OpenTK.Windowing.GraphicsLibraryFramework.Platform) + id: PlatformSupported(OpenTK.Windowing.GraphicsLibraryFramework.Platform) + parent: OpenTK.Windowing.GraphicsLibraryFramework.GLFW + langs: + - csharp + - vb + name: PlatformSupported(Platform) + nameWithType: GLFW.PlatformSupported(Platform) + fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.PlatformSupported(OpenTK.Windowing.GraphicsLibraryFramework.Platform) + type: Method + source: + id: PlatformSupported + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 420 + assemblies: + - OpenTK.Windowing.GraphicsLibraryFramework + namespace: OpenTK.Windowing.GraphicsLibraryFramework + summary: >- + This function returns whether the library was compiled with support for the specified platform. + + The platform must be one of , , , or . + example: [] + syntax: + content: public static bool PlatformSupported(Platform platform) + parameters: + - id: platform + type: OpenTK.Windowing.GraphicsLibraryFramework.Platform + description: The platform to query. + return: + type: System.Boolean + description: true if the platform is supported, or false otherwise. + content.vb: Public Shared Function PlatformSupported(platform As Platform) As Boolean + overload: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.PlatformSupported* - uid: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetMonitorsRaw(System.Int32@) commentId: M:OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetMonitorsRaw(System.Int32@) id: GetMonitorsRaw(System.Int32@) @@ -968,13 +1269,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetMonitorsRaw(out int) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetMonitorsRaw - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 339 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 450 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -1042,13 +1339,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetMonitorsRaw(int*) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetMonitorsRaw - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 375 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 486 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -1116,13 +1409,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetMonitors() type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetMonitors - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 405 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 516 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -1183,13 +1472,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetMonitorPos(OpenTK.Windowing.GraphicsLibraryFramework.Monitor*, out int, out int) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetMonitorPos - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 440 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 551 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -1241,13 +1526,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetMonitorPos(OpenTK.Windowing.GraphicsLibraryFramework.Monitor*, int*, int*) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetMonitorPos - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 466 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 577 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -1299,13 +1580,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetMonitorWorkarea(OpenTK.Windowing.GraphicsLibraryFramework.Monitor*, out int, out int, out int, out int) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetMonitorWorkarea - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 497 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 608 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -1379,13 +1656,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetMonitorWorkarea(OpenTK.Windowing.GraphicsLibraryFramework.Monitor*, int*, int*, int*, int*) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetMonitorWorkarea - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 535 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 646 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -1459,13 +1732,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetMonitorPhysicalSize(OpenTK.Windowing.GraphicsLibraryFramework.Monitor*, out int, out int) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetMonitorPhysicalSize - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 573 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 684 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -1541,45 +1810,27 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetMonitorContentScale(OpenTK.Windowing.GraphicsLibraryFramework.Monitor*, out float, out float) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetMonitorContentScale - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 603 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 714 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework summary: >-

- - This function retrieves the content scale for the specified monitor. - -

- + This function retrieves the content scale for the specified monitor. +

- - The content scale is the ratio between the current DPI and the platform's default DPI. - -

- + The content scale is the ratio between the current DPI and the platform's default DPI. +

- - If you scale all pixel dimensions by this scale then your content should appear at an appropriate size. - - This is especially important for text and any UI elements. - -

- - + If you scale all pixel dimensions by this scale then your content should appear at an appropriate size. + This is especially important for text and any UI elements. +

- - The content scale may depend on both the monitor resolution and pixel density and on user settings. - - It may be very different from the raw DPI calculated from the physical size and current resolution. - -

+ The content scale may depend on both the monitor resolution and pixel density and on user settings. + It may be very different from the raw DPI calculated from the physical size and current resolution. +

example: [] syntax: content: public static void GetMonitorContentScale(Monitor* monitor, out float xScale, out float yScale) @@ -1610,45 +1861,27 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetMonitorContentScaleRaw(OpenTK.Windowing.GraphicsLibraryFramework.Monitor*, float*, float*) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetMonitorContentScaleRaw - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 633 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 744 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework summary: >-

- - This function retrieves the content scale for the specified monitor. - -

- + This function retrieves the content scale for the specified monitor. +

- - The content scale is the ratio between the current DPI and the platform's default DPI. - -

- + The content scale is the ratio between the current DPI and the platform's default DPI. +

- - If you scale all pixel dimensions by this scale then your content should appear at an appropriate size. - - This is especially important for text and any UI elements. - -

- - + If you scale all pixel dimensions by this scale then your content should appear at an appropriate size. + This is especially important for text and any UI elements. +

- - The content scale may depend on both the monitor resolution and pixel density and on user settings. - - It may be very different from the raw DPI calculated from the physical size and current resolution. - -

+ The content scale may depend on both the monitor resolution and pixel density and on user settings. + It may be very different from the raw DPI calculated from the physical size and current resolution. +

example: [] syntax: content: public static void GetMonitorContentScaleRaw(Monitor* monitor, float* xScale, float* yScale) @@ -1679,13 +1912,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetMonitorName(OpenTK.Windowing.GraphicsLibraryFramework.Monitor*) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetMonitorName - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 659 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 770 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -1743,13 +1972,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetMonitorNameRaw(OpenTK.Windowing.GraphicsLibraryFramework.Monitor*) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetMonitorNameRaw - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 685 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 796 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -1807,13 +2032,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.SetMonitorUserPointer(OpenTK.Windowing.GraphicsLibraryFramework.Monitor*, void*) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetMonitorUserPointer - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 710 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 821 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -1872,13 +2093,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetMonitorUserPointer(OpenTK.Windowing.GraphicsLibraryFramework.Monitor*) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetMonitorUserPointer - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 734 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 845 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -1932,13 +2149,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetVideoModesRaw(OpenTK.Windowing.GraphicsLibraryFramework.Monitor*, out int) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetVideoModesRaw - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 766 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 877 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -2010,13 +2223,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetVideoModesRaw(OpenTK.Windowing.GraphicsLibraryFramework.Monitor*, int*) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetVideoModesRaw - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 801 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 912 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -2088,13 +2297,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetVideoModes(OpenTK.Windowing.GraphicsLibraryFramework.Monitor*) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetVideoModes - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 829 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 940 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -2157,13 +2362,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.SetGamma(OpenTK.Windowing.GraphicsLibraryFramework.Monitor*, float) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetGamma - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 863 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 974 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -2214,13 +2415,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetGammaRamp(OpenTK.Windowing.GraphicsLibraryFramework.Monitor*) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetGammaRamp - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 888 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 999 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -2276,13 +2473,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.SetGammaRamp(OpenTK.Windowing.GraphicsLibraryFramework.Monitor*, OpenTK.Windowing.GraphicsLibraryFramework.GammaRamp*) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetGammaRamp - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 921 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 1032 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -2354,13 +2547,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.DefaultWindowHints() type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DefaultWindowHints - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 936 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 1047 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -2393,13 +2582,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.WindowHint(OpenTK.Windowing.GraphicsLibraryFramework.WindowHintString, string) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: WindowHint - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 971 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 1082 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -2442,7 +2627,7 @@ items: remarks: >-

- Possible errors include . + Possible errors include .

@@ -2484,13 +2669,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.WindowHintRaw(OpenTK.Windowing.GraphicsLibraryFramework.WindowHintString, byte*) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: WindowHintRaw - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 1018 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 1129 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -2533,7 +2714,7 @@ items: remarks: >-

- Possible errors include . + Possible errors include .

@@ -2575,13 +2756,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.SetWindowSizeLimits(OpenTK.Windowing.GraphicsLibraryFramework.Window*, int, int, int, int) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetWindowSizeLimits - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 1065 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 1176 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -2671,13 +2848,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.SetWindowAspectRatio(OpenTK.Windowing.GraphicsLibraryFramework.Window*, int, int) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetWindowAspectRatio - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 1110 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 1221 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -2767,60 +2940,35 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetWindowFrameSize(OpenTK.Windowing.GraphicsLibraryFramework.Window*, out int, out int, out int, out int) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetWindowFrameSize - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 1155 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 1266 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework summary: >-

- - This function retrieves the size, in screen coordinates, of each edge of the frame of the specified window. - -

- + This function retrieves the size, in screen coordinates, of each edge of the frame of the specified window. +

- - This size includes the title bar, if the window has one. - - The size of the frame may vary depending on the window-related hints used to create it. - -

- - + This size includes the title bar, if the window has one. + The size of the frame may vary depending on the window-related hints used to create it. +

- - Because this function retrieves the size of each window frame edge - - and not the offset along a particular coordinate axis, the retrieved values will always be zero or positive. - -

- - + Because this function retrieves the size of each window frame edge + and not the offset along a particular coordinate axis, the retrieved values will always be zero or positive. +

- - Any or all of the size arguments may be out _. - - If an error occurs, all non-out _ size arguments will be set to zero. - -

+ Any or all of the size arguments may be out _. + If an error occurs, all non-out _ size arguments will be set to zero. +

remarks: >-

- - This function must only be called from the main thread. - -

- + This function must only be called from the main thread. +

- - Possible errors include and . - -

+ Possible errors include and . +

example: [] syntax: content: public static void GetWindowFrameSize(Window* window, out int left, out int top, out int right, out int bottom) @@ -2857,57 +3005,34 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetWindowContentScale(OpenTK.Windowing.GraphicsLibraryFramework.Window*, out float, out float) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetWindowContentScale - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 1198 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 1309 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework summary: >-

- - This function retrieves the content scale for the specified window. - -

- + This function retrieves the content scale for the specified window. +

- - The content scale is the ratio between the current DPI and the platform's default DPI. - - This is especially important for text and any UI elements. - - If the pixel dimensions of your UI scaled by this look appropriate on your machine then it should - - appear at a reasonable size on other machines regardless of their DPI and scaling settings. - - This relies on the system DPI and scaling settings being somewhat correct. - -

- - + The content scale is the ratio between the current DPI and the platform's default DPI. + This is especially important for text and any UI elements. + If the pixel dimensions of your UI scaled by this look appropriate on your machine then it should + appear at a reasonable size on other machines regardless of their DPI and scaling settings. + This relies on the system DPI and scaling settings being somewhat correct. +

- - On systems where each monitors can have its own content scale, - - the window content scale will depend on which monitor the system considers the window to be on. - -

+ On systems where each monitors can have its own content scale, + the window content scale will depend on which monitor the system considers the window to be on. +

remarks: >-

- - This function must only be called from the main thread. - -

- + This function must only be called from the main thread. +

- - Possible errors include and . - -

+ Possible errors include and . +

example: [] syntax: content: public static void GetWindowContentScale(Window* window, out float xScale, out float yScale) @@ -2938,13 +3063,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetWindowOpacity(OpenTK.Windowing.GraphicsLibraryFramework.Window*) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetWindowOpacity - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 1235 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 1346 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -3013,13 +3134,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.SetWindowOpacity(OpenTK.Windowing.GraphicsLibraryFramework.Window*, float) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetWindowOpacity - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 1264 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 1375 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -3093,13 +3210,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.RequestWindowAttention(OpenTK.Windowing.GraphicsLibraryFramework.Window*) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: RequestWindowAttention - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 1291 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 1402 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -3158,13 +3271,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.SetWindowAttrib(OpenTK.Windowing.GraphicsLibraryFramework.Window*, OpenTK.Windowing.GraphicsLibraryFramework.WindowAttribute, bool) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetWindowAttrib - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 1326 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 1437 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -3250,13 +3359,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.RawMouseMotionSupported() type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: RawMouseMotionSupported - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 1356 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 1467 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -3316,13 +3421,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetKeyName(OpenTK.Windowing.GraphicsLibraryFramework.Keys, int) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetKeyName - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 1427 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 1538 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -3371,7 +3472,6 @@ items: The printable keys are: -

@@ -3433,13 +3533,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetKeyNameRaw(OpenTK.Windowing.GraphicsLibraryFramework.Keys, int) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetKeyNameRaw - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 1498 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 1609 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -3488,7 +3584,6 @@ items: The printable keys are: -

@@ -3550,13 +3645,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetKeyScancode(OpenTK.Windowing.GraphicsLibraryFramework.Keys) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetKeyScancode - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 1521 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 1632 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -3608,13 +3699,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetKey(OpenTK.Windowing.GraphicsLibraryFramework.Window*, OpenTK.Windowing.GraphicsLibraryFramework.Keys) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetKey - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 1562 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 1673 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -3699,13 +3786,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetMouseButton(OpenTK.Windowing.GraphicsLibraryFramework.Window*, OpenTK.Windowing.GraphicsLibraryFramework.MouseButton) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetMouseButton - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 1589 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 1700 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -3766,13 +3849,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetCursorPos(OpenTK.Windowing.GraphicsLibraryFramework.Window*, out double, out double) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetCursorPos - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 1627 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 1738 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -3850,13 +3929,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetCursorPosRaw(OpenTK.Windowing.GraphicsLibraryFramework.Window*, double*, double*) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetCursorPosRaw - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 1668 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 1779 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -3934,13 +4009,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.SetCursorPos(OpenTK.Windowing.GraphicsLibraryFramework.Window*, double, double) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetCursorPos - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 1708 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 1819 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -4028,13 +4099,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.CreateCursor(in OpenTK.Windowing.GraphicsLibraryFramework.Image, int, int) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateCursor - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 1746 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 1857 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -4121,13 +4188,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.CreateCursorRaw(OpenTK.Windowing.GraphicsLibraryFramework.Image*, int, int) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateCursorRaw - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 1787 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 1898 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -4214,13 +4277,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.CreateStandardCursor(OpenTK.Windowing.GraphicsLibraryFramework.CursorShape) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateStandardCursor - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 1807 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 1918 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -4266,13 +4325,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.DestroyCursor(OpenTK.Windowing.GraphicsLibraryFramework.Cursor*) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DestroyCursor - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 1834 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 1945 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -4331,13 +4386,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.SetCursor(OpenTK.Windowing.GraphicsLibraryFramework.Window*, OpenTK.Windowing.GraphicsLibraryFramework.Cursor*) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetCursor - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 1859 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 1970 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -4399,13 +4450,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.JoystickPresent(int) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: JoystickPresent - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 1883 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 1994 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -4462,13 +4509,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetJoystickAxes(int) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetJoystickAxes - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 1916 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 2027 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -4539,13 +4582,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetJoystickAxesRaw(int, out int) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetJoystickAxesRaw - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 1961 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 2072 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -4622,13 +4661,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetJoystickAxesRaw(int, int*) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetJoystickAxesRaw - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 2001 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 2112 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -4705,13 +4740,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetJoystickButtons(int) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetJoystickButtons - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 2044 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 2155 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -4802,13 +4833,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetJoystickButtonsRaw(int, out int) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetJoystickButtonsRaw - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 2099 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 2210 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -4905,13 +4932,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetJoystickButtonsRaw(int, int*) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetJoystickButtonsRaw - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 2149 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 2260 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -5008,13 +5031,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetJoystickHats(int) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetJoystickHats - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 2191 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 2302 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -5037,9 +5056,7 @@ items: { // State of hat 2 could be right-up, right or right-down - } - -

+ }

@@ -5097,13 +5114,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetJoystickHatsRaw(int, out int) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetJoystickHatsRaw - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 2245 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 2356 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -5126,9 +5139,7 @@ items: { // State of hat 2 could be right-up, right or right-down - } - -

+ }

@@ -5192,13 +5203,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetJoystickHatsRaw(int, int*) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetJoystickHatsRaw - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 2294 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 2405 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -5221,9 +5228,7 @@ items: { // State of hat 2 could be right-up, right or right-down - } - -

+ }

@@ -5287,13 +5292,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetJoystickName(int) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetJoystickName - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 2324 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 2435 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -5358,13 +5359,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetJoystickNameRaw(int) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetJoystickNameRaw - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 2354 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 2465 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -5429,13 +5426,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetJoystickGUID(int) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetJoystickGUID - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 2397 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 2508 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -5526,13 +5519,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetJoystickGUIDRaw(int) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetJoystickGUIDRaw - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 2440 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 2551 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -5623,13 +5612,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.SetJoystickUserPointer(int, void*) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetJoystickUserPointer - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 2465 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 2576 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -5688,13 +5673,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetJoystickUserPointer(int) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetJoystickUserPointer - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 2489 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 2600 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -5751,49 +5732,30 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.JoystickIsGamepad(int) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: JoystickIsGamepad - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 2520 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 2631 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework summary: >-

- - This function returns whether the specified joystick is both present and has a gamepad mapping. - -

- + This function returns whether the specified joystick is both present and has a gamepad mapping. +

- - If the specified joystick is present but does not have a gamepad mapping - - this function will return false but will not generate an error. - -

+ If the specified joystick is present but does not have a gamepad mapping + this function will return false but will not generate an error. +

remarks: >-

- - Call to check if a joystick is present regardless of whether it has a mapping. - -

- + Call to check if a joystick is present regardless of whether it has a mapping. +

- - This function must only be called from the main thread. - -

- - + This function must only be called from the main thread. +

- - Possible errors include and . - -

+ Possible errors include and . +

example: [] syntax: content: public static bool JoystickIsGamepad(int jid) @@ -5824,13 +5786,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.UpdateGamepadMappings(string) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: UpdateGamepadMappings - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 2555 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 2666 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -5909,13 +5867,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.UpdateGamepadMappingsRaw(byte*) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: UpdateGamepadMappingsRaw - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 2598 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 2709 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -5994,13 +5948,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetGamepadName(int) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetGamepadName - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 2631 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 2742 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -6072,13 +6022,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetGamepadNameRaw(int) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetGamepadNameRaw - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 2664 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 2775 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -6150,13 +6096,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetGamepadState(int, out OpenTK.Windowing.GraphicsLibraryFramework.GamepadState) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetGamepadState - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 2700 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 2811 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -6235,13 +6177,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetGamepadStateRaw(int, OpenTK.Windowing.GraphicsLibraryFramework.GamepadState*) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetGamepadStateRaw - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 2739 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 2850 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -6320,59 +6258,35 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetTime() type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetTime - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 2771 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 2882 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework summary: >-

- - This function returns the value of the GLFW timer. - -

- + This function returns the value of the GLFW timer. +

- - Unless the timer has been set using , - - the timer measures time elapsed since GLFW was initialized. - -

- + Unless the timer has been set using , + the timer measures time elapsed since GLFW was initialized. +

- - The resolution of the timer is system dependent, but is usually on the order of a few micro- or nanoseconds. - - It uses the highest-resolution monotonic time source on each supported platform. - -

+ The resolution of the timer is system dependent, but is usually on the order of a few micro- or nanoseconds. + It uses the highest-resolution monotonic time source on each supported platform. +

remarks: >-

- - This function may be called from any thread. - -

- + This function may be called from any thread. +

- - Reading and writing of the internal timer offset is not atomic, - - so it needs to be externally synchronized with calls to . - -

- - + Reading and writing of the internal timer offset is not atomic, + so it needs to be externally synchronized with calls to . +

- - Possible errors include . - -

+ Possible errors include . +

example: [] syntax: content: public static double GetTime() @@ -6393,13 +6307,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.SetTime(double) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetTime - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 2795 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 2906 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -6461,13 +6371,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetTimerValue() type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetTimerValue - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 2812 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 2923 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -6511,13 +6417,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetTimerFrequency() type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetTimerFrequency - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 2828 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 2939 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -6559,13 +6461,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetCurrentContext() type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetCurrentContext - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 2844 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 2955 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -6607,13 +6505,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.SwapBuffers(OpenTK.Windowing.GraphicsLibraryFramework.Window*) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SwapBuffers - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 2872 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 2983 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -6680,13 +6574,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.ExtensionSupported(string) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ExtensionSupported - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 2900 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 3011 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -6757,13 +6647,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetProcAddress(string) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetProcAddress - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 2939 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 3050 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -6833,13 +6719,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetProcAddressRaw(byte*) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetProcAddressRaw - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 2969 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 3080 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -6909,13 +6791,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.ExtensionSupportedRaw(byte*) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ExtensionSupportedRaw - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 3000 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 3111 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -6986,13 +6864,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.CreateWindow(int, int, string, OpenTK.Windowing.GraphicsLibraryFramework.Monitor*, OpenTK.Windowing.GraphicsLibraryFramework.Window*) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateWindow - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 3122 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 3233 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -7226,13 +7100,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.CreateWindowRaw(int, int, byte*, OpenTK.Windowing.GraphicsLibraryFramework.Monitor*, OpenTK.Windowing.GraphicsLibraryFramework.Window*) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateWindowRaw - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 3256 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 3367 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -7466,13 +7336,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.DestroyWindow(OpenTK.Windowing.GraphicsLibraryFramework.Window*) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DestroyWindow - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 3291 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 3402 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -7538,13 +7404,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.FocusWindow(OpenTK.Windowing.GraphicsLibraryFramework.Window*) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: FocusWindow - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 3317 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 3428 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -7607,13 +7469,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetClipboardString(OpenTK.Windowing.GraphicsLibraryFramework.Window*) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetClipboardString - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 3343 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 3454 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -7674,13 +7532,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetClipboardStringRaw(OpenTK.Windowing.GraphicsLibraryFramework.Window*) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetClipboardStringRaw - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 3372 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 3483 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -7741,13 +7595,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetFramebufferSize(OpenTK.Windowing.GraphicsLibraryFramework.Window*, out int, out int) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetFramebufferSize - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 3398 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 3509 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -7809,13 +7659,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetFramebufferSizeRaw(OpenTK.Windowing.GraphicsLibraryFramework.Window*, int*, int*) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetFramebufferSizeRaw - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 3427 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 3538 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -7877,13 +7723,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetInputMode(OpenTK.Windowing.GraphicsLibraryFramework.Window*, OpenTK.Windowing.GraphicsLibraryFramework.StickyAttributes) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetInputMode - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 3452 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 3563 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -7937,13 +7779,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetInputMode(OpenTK.Windowing.GraphicsLibraryFramework.Window*, OpenTK.Windowing.GraphicsLibraryFramework.CursorStateAttribute) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetInputMode - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 3477 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 3588 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -7997,13 +7835,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetInputMode(OpenTK.Windowing.GraphicsLibraryFramework.Window*, OpenTK.Windowing.GraphicsLibraryFramework.LockKeyModAttribute) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetInputMode - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 3502 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 3613 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -8057,13 +7891,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetInputMode(OpenTK.Windowing.GraphicsLibraryFramework.Window*, OpenTK.Windowing.GraphicsLibraryFramework.RawMouseMotionAttribute) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetInputMode - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 3527 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 3638 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -8117,13 +7947,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetPrimaryMonitor() type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetPrimaryMonitor - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 3552 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 3663 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -8177,13 +8003,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetVideoMode(OpenTK.Windowing.GraphicsLibraryFramework.Monitor*) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetVideoMode - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 3579 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 3690 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -8250,13 +8072,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetWindowAttrib(OpenTK.Windowing.GraphicsLibraryFramework.Window*, OpenTK.Windowing.GraphicsLibraryFramework.WindowAttributeGetBool) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetWindowAttrib - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 3604 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 3715 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -8319,34 +8137,44 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetWindowAttrib(OpenTK.Windowing.GraphicsLibraryFramework.Window*, OpenTK.Windowing.GraphicsLibraryFramework.WindowAttributeGetInt) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetWindowAttrib - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 3610 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 3721 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework summary: >-

- This function returns the value of an attribute of the specified window or its OpenGL or OpenGL ES context. -

+ + This function returns the value of an attribute of the specified window or its OpenGL or OpenGL ES context. + +

remarks: >-

- Framebuffer-related hints are not window attributes. See - - Framebuffer related attributes - - for more information. -

+ + Framebuffer-related hints are not window attributes. See + + + + Framebuffer related attributes + + + + for more information. + +

+

- This function must only be called from the main thread. -

+ + This function must only be called from the main thread. + +

+

- Possible errors include , and . -

+ + Possible errors include , and . + +

example: [] syntax: content: public static int GetWindowAttrib(Window* window, WindowAttributeGetInt attribute) @@ -8374,34 +8202,44 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetWindowAttrib(OpenTK.Windowing.GraphicsLibraryFramework.Window*, OpenTK.Windowing.GraphicsLibraryFramework.WindowAttributeGetClientApi) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetWindowAttrib - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 3616 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 3727 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework summary: >-

- This function returns the value of an attribute of the specified window or its OpenGL or OpenGL ES context. -

+ + This function returns the value of an attribute of the specified window or its OpenGL or OpenGL ES context. + +

remarks: >-

- Framebuffer-related hints are not window attributes. See - - Framebuffer related attributes - - for more information. -

+ + Framebuffer-related hints are not window attributes. See + + + + Framebuffer related attributes + + + + for more information. + +

+

- This function must only be called from the main thread. -

+ + This function must only be called from the main thread. + +

+

- Possible errors include , and . -

+ + Possible errors include , and . + +

example: [] syntax: content: public static ClientApi GetWindowAttrib(Window* window, WindowAttributeGetClientApi attribute) @@ -8429,34 +8267,44 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetWindowAttrib(OpenTK.Windowing.GraphicsLibraryFramework.Window*, OpenTK.Windowing.GraphicsLibraryFramework.WindowAttributeGetContextApi) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetWindowAttrib - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 3622 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 3733 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework summary: >-

- This function returns the value of an attribute of the specified window or its OpenGL or OpenGL ES context. -

+ + This function returns the value of an attribute of the specified window or its OpenGL or OpenGL ES context. + +

remarks: >-

- Framebuffer-related hints are not window attributes. See - - Framebuffer related attributes - - for more information. -

+ + Framebuffer-related hints are not window attributes. See + + + + Framebuffer related attributes + + + + for more information. + +

+

- This function must only be called from the main thread. -

+ + This function must only be called from the main thread. + +

+

- Possible errors include , and . -

+ + Possible errors include , and . + +

example: [] syntax: content: public static ContextApi GetWindowAttrib(Window* window, WindowAttributeGetContextApi attribute) @@ -8484,34 +8332,44 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetWindowAttrib(OpenTK.Windowing.GraphicsLibraryFramework.Window*, OpenTK.Windowing.GraphicsLibraryFramework.WindowAttributeGetOpenGlProfile) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetWindowAttrib - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 3628 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 3739 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework summary: >-

- This function returns the value of an attribute of the specified window or its OpenGL or OpenGL ES context. -

+ + This function returns the value of an attribute of the specified window or its OpenGL or OpenGL ES context. + +

remarks: >-

- Framebuffer-related hints are not window attributes. See - - Framebuffer related attributes - - for more information. -

+ + Framebuffer-related hints are not window attributes. See + + + + Framebuffer related attributes + + + + for more information. + +

+

- This function must only be called from the main thread. -

+ + This function must only be called from the main thread. + +

+

- Possible errors include , and . -

+ + Possible errors include , and . + +

example: [] syntax: content: public static OpenGlProfile GetWindowAttrib(Window* window, WindowAttributeGetOpenGlProfile attribute) @@ -8539,34 +8397,44 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetWindowAttrib(OpenTK.Windowing.GraphicsLibraryFramework.Window*, OpenTK.Windowing.GraphicsLibraryFramework.WindowAttributeGetReleaseBehavior) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetWindowAttrib - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 3634 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 3745 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework summary: >-

- This function returns the value of an attribute of the specified window or its OpenGL or OpenGL ES context. -

+ + This function returns the value of an attribute of the specified window or its OpenGL or OpenGL ES context. + +

remarks: >-

- Framebuffer-related hints are not window attributes. See - - Framebuffer related attributes - - for more information. -

+ + Framebuffer-related hints are not window attributes. See + + + + Framebuffer related attributes + + + + for more information. + +

+

- This function must only be called from the main thread. -

+ + This function must only be called from the main thread. + +

+

- Possible errors include , and . -

+ + Possible errors include , and . + +

example: [] syntax: content: public static ReleaseBehavior GetWindowAttrib(Window* window, WindowAttributeGetReleaseBehavior attribute) @@ -8594,34 +8462,44 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetWindowAttrib(OpenTK.Windowing.GraphicsLibraryFramework.Window*, OpenTK.Windowing.GraphicsLibraryFramework.WindowAttributeGetRobustness) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetWindowAttrib - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 3640 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 3751 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework summary: >-

- This function returns the value of an attribute of the specified window or its OpenGL or OpenGL ES context. -

+ + This function returns the value of an attribute of the specified window or its OpenGL or OpenGL ES context. + +

remarks: >-

- Framebuffer-related hints are not window attributes. See - - Framebuffer related attributes - - for more information. -

+ + Framebuffer-related hints are not window attributes. See + + + + Framebuffer related attributes + + + + for more information. + +

+

- This function must only be called from the main thread. -

+ + This function must only be called from the main thread. + +

+

- Possible errors include , and . -

+ + Possible errors include , and . + +

example: [] syntax: content: public static Robustness GetWindowAttrib(Window* window, WindowAttributeGetRobustness attribute) @@ -8649,13 +8527,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.SetWindowUserPointer(OpenTK.Windowing.GraphicsLibraryFramework.Window*, void*) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetWindowUserPointer - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 3664 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 3775 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -8712,13 +8586,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetWindowUserPointer(OpenTK.Windowing.GraphicsLibraryFramework.Window*) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetWindowUserPointer - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 3687 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 3798 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -8770,13 +8640,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetWindowSize(OpenTK.Windowing.GraphicsLibraryFramework.Window*, out int, out int) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetWindowSize - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 3714 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 3825 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -8841,13 +8707,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetWindowSizeRaw(OpenTK.Windowing.GraphicsLibraryFramework.Window*, int*, int*) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetWindowSizeRaw - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 3744 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 3855 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -8912,13 +8774,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetWindowPos(OpenTK.Windowing.GraphicsLibraryFramework.Window*, out int, out int) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetWindowPos - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 3771 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 3882 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -8983,13 +8841,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetWindowPosRaw(OpenTK.Windowing.GraphicsLibraryFramework.Window*, int*, int*) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetWindowPosRaw - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 3801 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 3912 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -9054,13 +8908,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetWindowMonitor(OpenTK.Windowing.GraphicsLibraryFramework.Window*) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetWindowMonitor - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 3822 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 3933 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -9109,13 +8959,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.HideWindow(OpenTK.Windowing.GraphicsLibraryFramework.Window*) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: HideWindow - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 3839 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 3950 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -9160,13 +9006,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.IconifyWindow(OpenTK.Windowing.GraphicsLibraryFramework.Window*) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: IconifyWindow - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 3860 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 3971 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -9219,13 +9061,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.MakeContextCurrent(OpenTK.Windowing.GraphicsLibraryFramework.Window*) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MakeContextCurrent - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 3895 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 4006 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -9303,13 +9141,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.MaximizeWindow(OpenTK.Windowing.GraphicsLibraryFramework.Window*) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MaximizeWindow - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 3915 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 4026 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -9360,13 +9194,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.SetWindowMaximizeCallback(OpenTK.Windowing.GraphicsLibraryFramework.Window*, OpenTK.Windowing.GraphicsLibraryFramework.GLFWCallbacks.WindowMaximizeCallback) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetWindowMaximizeCallback - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 3937 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 4048 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -9420,13 +9250,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.SetFramebufferSizeCallback(OpenTK.Windowing.GraphicsLibraryFramework.Window*, OpenTK.Windowing.GraphicsLibraryFramework.GLFWCallbacks.FramebufferSizeCallback) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetFramebufferSizeCallback - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 3964 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 4075 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -9480,13 +9306,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.SetWindowContentScaleCallback(OpenTK.Windowing.GraphicsLibraryFramework.Window*, OpenTK.Windowing.GraphicsLibraryFramework.GLFWCallbacks.WindowContentScaleCallback) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetWindowContentScaleCallback - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 3991 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 4102 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -9540,13 +9362,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.PollEvents() type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: PollEvents - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 4029 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 4140 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -9621,13 +9439,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.PostEmptyEvent() type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: PostEmptyEvent - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 4049 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 4160 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -9676,13 +9490,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.RestoreWindow(OpenTK.Windowing.GraphicsLibraryFramework.Window*) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: RestoreWindow - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 4069 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 4180 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -9733,13 +9543,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.SetCharCallback(OpenTK.Windowing.GraphicsLibraryFramework.Window*, OpenTK.Windowing.GraphicsLibraryFramework.GLFWCallbacks.CharCallback) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetCharCallback - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 4105 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 4216 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -9820,13 +9626,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.SetCharModsCallback(OpenTK.Windowing.GraphicsLibraryFramework.Window*, OpenTK.Windowing.GraphicsLibraryFramework.GLFWCallbacks.CharModsCallback) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetCharModsCallback - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 4142 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 4253 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -9903,13 +9705,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.SetClipboardString(OpenTK.Windowing.GraphicsLibraryFramework.Window*, string) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetClipboardString - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 4168 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 4279 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -9967,13 +9765,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.SetClipboardStringRaw(OpenTK.Windowing.GraphicsLibraryFramework.Window*, byte*) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetClipboardStringRaw - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 4201 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 4312 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -10031,13 +9825,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.SetCursorEnterCallback(OpenTK.Windowing.GraphicsLibraryFramework.Window*, OpenTK.Windowing.GraphicsLibraryFramework.GLFWCallbacks.CursorEnterCallback) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetCursorEnterCallback - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 4225 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 4336 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -10088,13 +9878,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.SetCursorPosCallback(OpenTK.Windowing.GraphicsLibraryFramework.Window*, OpenTK.Windowing.GraphicsLibraryFramework.GLFWCallbacks.CursorPosCallback) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetCursorPosCallback - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 4255 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 4366 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -10153,13 +9939,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.SetDropCallback(OpenTK.Windowing.GraphicsLibraryFramework.Window*, OpenTK.Windowing.GraphicsLibraryFramework.GLFWCallbacks.DropCallback) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetDropCallback - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 4286 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 4397 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -10220,13 +10002,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.SetErrorCallback(OpenTK.Windowing.GraphicsLibraryFramework.GLFWCallbacks.ErrorCallback) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetErrorCallback - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 4321 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 4432 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -10298,13 +10076,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.SetInputMode(OpenTK.Windowing.GraphicsLibraryFramework.Window*, OpenTK.Windowing.GraphicsLibraryFramework.CursorStateAttribute, OpenTK.Windowing.GraphicsLibraryFramework.CursorModeValue) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetInputMode - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 4351 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 4462 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -10367,13 +10141,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.SetInputMode(OpenTK.Windowing.GraphicsLibraryFramework.Window*, OpenTK.Windowing.GraphicsLibraryFramework.StickyAttributes, bool) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetInputMode - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 4392 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 4503 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -10461,13 +10231,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.SetInputMode(OpenTK.Windowing.GraphicsLibraryFramework.Window*, OpenTK.Windowing.GraphicsLibraryFramework.LockKeyModAttribute, bool) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetInputMode - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 4422 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 4533 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -10533,13 +10299,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.SetInputMode(OpenTK.Windowing.GraphicsLibraryFramework.Window*, OpenTK.Windowing.GraphicsLibraryFramework.RawMouseMotionAttribute, bool) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetInputMode - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 4450 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 4561 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -10601,13 +10363,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.SetJoystickCallback(OpenTK.Windowing.GraphicsLibraryFramework.GLFWCallbacks.JoystickCallback) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetJoystickCallback - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 4473 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 4584 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -10655,13 +10413,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.SetKeyCallback(OpenTK.Windowing.GraphicsLibraryFramework.Window*, OpenTK.Windowing.GraphicsLibraryFramework.GLFWCallbacks.KeyCallback) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetKeyCallback - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 4516 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 4627 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -10750,13 +10504,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.SetScrollCallback(OpenTK.Windowing.GraphicsLibraryFramework.Window*, OpenTK.Windowing.GraphicsLibraryFramework.GLFWCallbacks.ScrollCallback) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetScrollCallback - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 4545 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 4656 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -10813,13 +10563,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.SetMonitorCallback(OpenTK.Windowing.GraphicsLibraryFramework.GLFWCallbacks.MonitorCallback) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetMonitorCallback - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 4570 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 4681 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -10867,13 +10613,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.SetMouseButtonCallback(OpenTK.Windowing.GraphicsLibraryFramework.Window*, OpenTK.Windowing.GraphicsLibraryFramework.GLFWCallbacks.MouseButtonCallback) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetMouseButtonCallback - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 4601 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 4712 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -10938,13 +10680,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.SetWindowCloseCallback(OpenTK.Windowing.GraphicsLibraryFramework.Window*, OpenTK.Windowing.GraphicsLibraryFramework.GLFWCallbacks.WindowCloseCallback) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetWindowCloseCallback - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 4638 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 4749 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -11017,13 +10755,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.SetWindowFocusCallback(OpenTK.Windowing.GraphicsLibraryFramework.Window*, OpenTK.Windowing.GraphicsLibraryFramework.GLFWCallbacks.WindowFocusCallback) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetWindowFocusCallback - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 4669 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 4780 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -11084,13 +10818,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.SetWindowIcon(OpenTK.Windowing.GraphicsLibraryFramework.Window*, System.ReadOnlySpan) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetWindowIcon - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 4706 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 4817 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -11169,13 +10899,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.SetWindowIconRaw(OpenTK.Windowing.GraphicsLibraryFramework.Window*, int, OpenTK.Windowing.GraphicsLibraryFramework.Image*) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetWindowIconRaw - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 4745 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 4856 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -11257,13 +10983,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.SetWindowIconifyCallback(OpenTK.Windowing.GraphicsLibraryFramework.Window*, OpenTK.Windowing.GraphicsLibraryFramework.GLFWCallbacks.WindowIconifyCallback) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetWindowIconifyCallback - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 4769 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 4880 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -11314,13 +11036,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.SetWindowMonitor(OpenTK.Windowing.GraphicsLibraryFramework.Window*, OpenTK.Windowing.GraphicsLibraryFramework.Monitor*, int, int, int, int, int) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetWindowMonitor - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 4819 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 4930 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -11431,13 +11149,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.SetWindowPos(OpenTK.Windowing.GraphicsLibraryFramework.Window*, int, int) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetWindowPos - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 4860 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 4971 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -11516,13 +11230,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.SetWindowPosCallback(OpenTK.Windowing.GraphicsLibraryFramework.Window*, OpenTK.Windowing.GraphicsLibraryFramework.GLFWCallbacks.WindowPosCallback) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetWindowPosCallback - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 4886 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 4997 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -11577,13 +11287,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.SetWindowRefreshCallback(OpenTK.Windowing.GraphicsLibraryFramework.Window*, OpenTK.Windowing.GraphicsLibraryFramework.GLFWCallbacks.WindowRefreshCallback) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetWindowRefreshCallback - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 4921 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 5032 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -11652,13 +11358,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.SetWindowSize(OpenTK.Windowing.GraphicsLibraryFramework.Window*, int, int) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetWindowSize - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 4961 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 5072 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -11745,13 +11447,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.SetWindowSizeCallback(OpenTK.Windowing.GraphicsLibraryFramework.Window*, OpenTK.Windowing.GraphicsLibraryFramework.GLFWCallbacks.WindowSizeCallback) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetWindowSizeCallback - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 4987 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 5098 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -11806,13 +11504,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.SetWindowShouldClose(OpenTK.Windowing.GraphicsLibraryFramework.Window*, bool) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetWindowShouldClose - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 5012 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 5123 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -11855,6 +11549,116 @@ items: nameWithType.vb: GLFW.SetWindowShouldClose(Window*, Boolean) fullName.vb: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.SetWindowShouldClose(OpenTK.Windowing.GraphicsLibraryFramework.Window*, Boolean) name.vb: SetWindowShouldClose(Window*, Boolean) +- uid: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetWindowTitleRaw(OpenTK.Windowing.GraphicsLibraryFramework.Window*) + commentId: M:OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetWindowTitleRaw(OpenTK.Windowing.GraphicsLibraryFramework.Window*) + id: GetWindowTitleRaw(OpenTK.Windowing.GraphicsLibraryFramework.Window*) + parent: OpenTK.Windowing.GraphicsLibraryFramework.GLFW + langs: + - csharp + - vb + name: GetWindowTitleRaw(Window*) + nameWithType: GLFW.GetWindowTitleRaw(Window*) + fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetWindowTitleRaw(OpenTK.Windowing.GraphicsLibraryFramework.Window*) + type: Method + source: + id: GetWindowTitleRaw + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 5149 + assemblies: + - OpenTK.Windowing.GraphicsLibraryFramework + namespace: OpenTK.Windowing.GraphicsLibraryFramework + summary: >- + This function returns the window title, encoded as UTF-8, of the specified + + window. This is the title set previously by + + or . + + + The returned title is currently a copy of the title last set by + + or . + + It does not include any additional text which may be appended by the platform or another program. + + + The returned string is allocated and freed by GLFW. + + You should not free it yourself. + + It is valid until the next call to + + or , or until the library is terminated. + + + This function must only be called from the main thread. + + + Added in version 3.4. + example: [] + syntax: + content: public static byte* GetWindowTitleRaw(Window* window) + parameters: + - id: window + type: OpenTK.Windowing.GraphicsLibraryFramework.Window* + description: The window to query. + return: + type: System.Byte* + description: The UTF-8 encoded window title, or `NULL` if an error occurred. + content.vb: Public Shared Function GetWindowTitleRaw(window As Window*) As Byte* + overload: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetWindowTitleRaw* + seealso: + - linkId: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.SetWindowTitleRaw(OpenTK.Windowing.GraphicsLibraryFramework.Window*,System.Byte*) + commentId: M:OpenTK.Windowing.GraphicsLibraryFramework.GLFW.SetWindowTitleRaw(OpenTK.Windowing.GraphicsLibraryFramework.Window*,System.Byte*) +- uid: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetWindowTitle(OpenTK.Windowing.GraphicsLibraryFramework.Window*) + commentId: M:OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetWindowTitle(OpenTK.Windowing.GraphicsLibraryFramework.Window*) + id: GetWindowTitle(OpenTK.Windowing.GraphicsLibraryFramework.Window*) + parent: OpenTK.Windowing.GraphicsLibraryFramework.GLFW + langs: + - csharp + - vb + name: GetWindowTitle(Window*) + nameWithType: GLFW.GetWindowTitle(Window*) + fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetWindowTitle(OpenTK.Windowing.GraphicsLibraryFramework.Window*) + type: Method + source: + id: GetWindowTitle + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 5166 + assemblies: + - OpenTK.Windowing.GraphicsLibraryFramework + namespace: OpenTK.Windowing.GraphicsLibraryFramework + summary: >- + This function returns the window title, of the specified + + window. This is the title set previously by + + or . + + + The returned title is currently a copy of the title last set by + + or . + + It does not include any additional text which may be appended by the platform or another program. + + + This function must only be called from the main thread. + + + Added in version 3.4. + example: [] + syntax: + content: public static string GetWindowTitle(Window* window) + parameters: + - id: window + type: OpenTK.Windowing.GraphicsLibraryFramework.Window* + description: The window to query. + return: + type: System.String + description: The window title, or `NULL` if an error occurred. + content.vb: Public Shared Function GetWindowTitle(window As Window*) As String + overload: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetWindowTitle* - uid: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.SetWindowTitle(OpenTK.Windowing.GraphicsLibraryFramework.Window*,System.String) commentId: M:OpenTK.Windowing.GraphicsLibraryFramework.GLFW.SetWindowTitle(OpenTK.Windowing.GraphicsLibraryFramework.Window*,System.String) id: SetWindowTitle(OpenTK.Windowing.GraphicsLibraryFramework.Window*,System.String) @@ -11867,13 +11671,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.SetWindowTitle(OpenTK.Windowing.GraphicsLibraryFramework.Window*, string) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetWindowTitle - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 5035 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 5191 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -11928,13 +11728,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.SetWindowTitleRaw(OpenTK.Windowing.GraphicsLibraryFramework.Window*, byte*) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetWindowTitleRaw - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 5067 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 5223 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -11989,13 +11785,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.ShowWindow(OpenTK.Windowing.GraphicsLibraryFramework.Window*) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ShowWindow - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 5090 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 5246 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -12047,13 +11839,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.SwapInterval(int) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SwapInterval - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 5132 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 5288 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -12106,122 +11894,87 @@ items: Some GPU drivers do not honor the requested swap interval, - either because of a user setting that overrides the application's request or due to bugs in the driver. - -

- -

- - This function may be called from any thread. - -

- -

- - Possible errors include , and . - -

- example: [] - syntax: - content: public static void SwapInterval(int interval) - parameters: - - id: interval - type: System.Int32 - description: The minimum number of screen updates to wait for until the buffers are swapped by . - content.vb: Public Shared Sub SwapInterval(interval As Integer) - overload: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.SwapInterval* - seealso: - - linkId: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.SwapBuffers(OpenTK.Windowing.GraphicsLibraryFramework.Window*) - commentId: M:OpenTK.Windowing.GraphicsLibraryFramework.GLFW.SwapBuffers(OpenTK.Windowing.GraphicsLibraryFramework.Window*) - nameWithType.vb: GLFW.SwapInterval(Integer) - fullName.vb: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.SwapInterval(Integer) - name.vb: SwapInterval(Integer) -- uid: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.WaitEvents - commentId: M:OpenTK.Windowing.GraphicsLibraryFramework.GLFW.WaitEvents - id: WaitEvents - parent: OpenTK.Windowing.GraphicsLibraryFramework.GLFW - langs: - - csharp - - vb - name: WaitEvents() - nameWithType: GLFW.WaitEvents() - fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.WaitEvents() - type: Method - source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git - id: WaitEvents - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 5177 - assemblies: - - OpenTK.Windowing.GraphicsLibraryFramework - namespace: OpenTK.Windowing.GraphicsLibraryFramework - summary: >- -

- - This function puts the calling thread to sleep until at least one event is available in the event queue. - -

- -

- - Once one or more events are available, it behaves exactly like , - - i.e. the events in the queue are processed and the function then returns immediately. - -

- -

- - Processing events will cause the window and input callbacks associated with those events to be called. - -

- -

- - Since not all events are associated with callbacks, - - this function may return without a callback having been called even if you are monitoring all callbacks. - -

- -

- - On some platforms, a window move, resize or menu operation will cause event processing to block. - - This is due to how event processing is designed on those platforms. - - You can use the window refresh callback () - - to redraw the contents of your window when necessary during such operations. - -

- -

- - On some platforms, - - certain callbacks may be called outside of a call to one of the event processing functions. + either because of a user setting that overrides the application's request or due to bugs in the driver.

- If no windows exist, this function returns immediately. - - For synchronization of threads in applications that do not create windows, - - use your threading library of choice. + This function may be called from any thread.

- Event processing is not required for joystick input to work. + Possible errors include , and .

+ example: [] + syntax: + content: public static void SwapInterval(int interval) + parameters: + - id: interval + type: System.Int32 + description: The minimum number of screen updates to wait for until the buffers are swapped by . + content.vb: Public Shared Sub SwapInterval(interval As Integer) + overload: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.SwapInterval* + seealso: + - linkId: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.SwapBuffers(OpenTK.Windowing.GraphicsLibraryFramework.Window*) + commentId: M:OpenTK.Windowing.GraphicsLibraryFramework.GLFW.SwapBuffers(OpenTK.Windowing.GraphicsLibraryFramework.Window*) + nameWithType.vb: GLFW.SwapInterval(Integer) + fullName.vb: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.SwapInterval(Integer) + name.vb: SwapInterval(Integer) +- uid: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.WaitEvents + commentId: M:OpenTK.Windowing.GraphicsLibraryFramework.GLFW.WaitEvents + id: WaitEvents + parent: OpenTK.Windowing.GraphicsLibraryFramework.GLFW + langs: + - csharp + - vb + name: WaitEvents() + nameWithType: GLFW.WaitEvents() + fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.WaitEvents() + type: Method + source: + id: WaitEvents + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 5333 + assemblies: + - OpenTK.Windowing.GraphicsLibraryFramework + namespace: OpenTK.Windowing.GraphicsLibraryFramework + summary: >- +

+ This function puts the calling thread to sleep until at least one event is available in the event queue. +

+

+ Once one or more events are available, it behaves exactly like , + i.e. the events in the queue are processed and the function then returns immediately. +

+

+ Processing events will cause the window and input callbacks associated with those events to be called. +

+

+ Since not all events are associated with callbacks, + this function may return without a callback having been called even if you are monitoring all callbacks. +

+

+ On some platforms, a window move, resize or menu operation will cause event processing to block. + This is due to how event processing is designed on those platforms. + You can use the window refresh callback () + to redraw the contents of your window when necessary during such operations. +

+

+ On some platforms, + certain callbacks may be called outside of a call to one of the event processing functions. +

+

+ If no windows exist, this function returns immediately. + For synchronization of threads in applications that do not create windows, + use your threading library of choice. +

+

+ Event processing is not required for joystick input to work. +

remarks: >- This function must only be called from the main thread. @@ -12252,13 +12005,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.WaitEventsTimeout(double) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: WaitEventsTimeout - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 5232 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 5388 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -12383,13 +12132,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.WindowHint(OpenTK.Windowing.GraphicsLibraryFramework.WindowHintInt, int) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: WindowHint - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 5258 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 5414 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -12457,13 +12202,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.WindowHint(OpenTK.Windowing.GraphicsLibraryFramework.WindowHintBool, bool) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: WindowHint - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 5284 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 5440 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -12531,13 +12272,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.WindowHint(OpenTK.Windowing.GraphicsLibraryFramework.WindowHintClientApi, OpenTK.Windowing.GraphicsLibraryFramework.ClientApi) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: WindowHint - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 5313 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 5469 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -12602,13 +12339,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.WindowHint(OpenTK.Windowing.GraphicsLibraryFramework.WindowHintReleaseBehavior, OpenTK.Windowing.GraphicsLibraryFramework.ReleaseBehavior) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: WindowHint - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 5339 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 5495 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -12673,13 +12406,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.WindowHint(OpenTK.Windowing.GraphicsLibraryFramework.WindowHintContextApi, OpenTK.Windowing.GraphicsLibraryFramework.ContextApi) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: WindowHint - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 5368 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 5524 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -12744,13 +12473,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.WindowHint(OpenTK.Windowing.GraphicsLibraryFramework.WindowHintRobustness, OpenTK.Windowing.GraphicsLibraryFramework.Robustness) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: WindowHint - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 5397 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 5553 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -12815,13 +12540,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.WindowHint(OpenTK.Windowing.GraphicsLibraryFramework.WindowHintOpenGlProfile, OpenTK.Windowing.GraphicsLibraryFramework.OpenGlProfile) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: WindowHint - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 5426 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 5582 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -12886,13 +12607,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.WindowShouldClose(OpenTK.Windowing.GraphicsLibraryFramework.Window*) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: WindowShouldClose - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 5446 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 5602 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -12938,13 +12655,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.VulkanSupported() type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: VulkanSupported - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 5473 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 5629 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -13003,13 +12716,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetRequiredInstanceExtensionsRaw(out uint) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetRequiredInstanceExtensionsRaw - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 5520 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 5676 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -13110,13 +12819,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetRequiredInstanceExtensionsRaw(uint*) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetRequiredInstanceExtensionsRaw - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 5573 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 5729 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -13217,13 +12922,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetRequiredInstanceExtensions() type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetRequiredInstanceExtensions - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 5619 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 5775 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -13314,13 +13015,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetInstanceProcAddress(OpenTK.Windowing.GraphicsLibraryFramework.VkHandle, string) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetInstanceProcAddress - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 5670 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 5826 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -13336,8 +13033,15 @@ items:

-
  • vkEnumerateInstanceExtensionPropertiesvkEnumerateInstanceLayerPropertiesvkCreateInstancevkGetInstanceProcAddr
+
  • + vkEnumerateInstanceExtensionProperties + + vkEnumerateInstanceLayerProperties + + vkCreateInstance + vkGetInstanceProcAddr +

If Vulkan is not available on the machine, this function returns null and generates @@ -13397,13 +13101,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetInstanceProcAddressRaw(OpenTK.Windowing.GraphicsLibraryFramework.VkHandle, byte*) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetInstanceProcAddressRaw - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 5722 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 5878 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -13419,8 +13119,15 @@ items:

-
  • vkEnumerateInstanceExtensionPropertiesvkEnumerateInstanceLayerPropertiesvkCreateInstancevkGetInstanceProcAddr
+
  • + vkEnumerateInstanceExtensionProperties + vkEnumerateInstanceLayerProperties + + vkCreateInstance + + vkGetInstanceProcAddr +

If Vulkan is not available on the machine, this function returns null and generates @@ -13480,13 +13187,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetPhysicalDevicePresentationSupport(OpenTK.Windowing.GraphicsLibraryFramework.VkHandle, OpenTK.Windowing.GraphicsLibraryFramework.VkHandle, int) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetPhysicalDevicePresentationSupport - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 5758 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 5914 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -13568,13 +13271,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.CreateWindowSurface(OpenTK.Windowing.GraphicsLibraryFramework.VkHandle, OpenTK.Windowing.GraphicsLibraryFramework.Window*, void*, out OpenTK.Windowing.GraphicsLibraryFramework.VkHandle) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CreateWindowSurface - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 5824 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 5980 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -13710,13 +13409,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetWin32Adapter(OpenTK.Windowing.GraphicsLibraryFramework.Monitor*) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetWin32Adapter - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 5841 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 5997 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -13745,13 +13440,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetWin32Monitor(OpenTK.Windowing.GraphicsLibraryFramework.Monitor*) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetWin32Monitor - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 5853 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 6009 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -13780,13 +13471,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetWin32Window(OpenTK.Windowing.GraphicsLibraryFramework.Window*) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetWin32Window - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 5865 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 6021 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -13815,13 +13502,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetWGLContext(OpenTK.Windowing.GraphicsLibraryFramework.Window*) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetWGLContext - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 5872 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 6028 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -13850,13 +13533,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetCocoaMonitor(OpenTK.Windowing.GraphicsLibraryFramework.Monitor*) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetCocoaMonitor - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 5879 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 6035 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -13885,13 +13564,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetCocoaWindow(OpenTK.Windowing.GraphicsLibraryFramework.Window*) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetCocoaWindow - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 5886 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 6042 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -13908,6 +13583,37 @@ items: description: The NSWindow of the specified window, or nil if an error occurred. content.vb: Public Shared Function GetCocoaWindow(window As Window*) As IntPtr overload: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetCocoaWindow* +- uid: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetCocoaView(OpenTK.Windowing.GraphicsLibraryFramework.Window*) + commentId: M:OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetCocoaView(OpenTK.Windowing.GraphicsLibraryFramework.Window*) + id: GetCocoaView(OpenTK.Windowing.GraphicsLibraryFramework.Window*) + parent: OpenTK.Windowing.GraphicsLibraryFramework.GLFW + langs: + - csharp + - vb + name: GetCocoaView(Window*) + nameWithType: GLFW.GetCocoaView(Window*) + fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetCocoaView(OpenTK.Windowing.GraphicsLibraryFramework.Window*) + type: Method + source: + id: GetCocoaView + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 6049 + assemblies: + - OpenTK.Windowing.GraphicsLibraryFramework + namespace: OpenTK.Windowing.GraphicsLibraryFramework + summary: Returns the NSView of the specified window. + example: [] + syntax: + content: public static nint GetCocoaView(Window* window) + parameters: + - id: window + type: OpenTK.Windowing.GraphicsLibraryFramework.Window* + description: The window to query. + return: + type: System.IntPtr + description: The NSView of the specified window, or nil if an error occurred. + content.vb: Public Shared Function GetCocoaView(window As Window*) As IntPtr + overload: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetCocoaView* - uid: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetNSGLContext(OpenTK.Windowing.GraphicsLibraryFramework.Window*) commentId: M:OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetNSGLContext(OpenTK.Windowing.GraphicsLibraryFramework.Window*) id: GetNSGLContext(OpenTK.Windowing.GraphicsLibraryFramework.Window*) @@ -13920,13 +13626,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetNSGLContext(OpenTK.Windowing.GraphicsLibraryFramework.Window*) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetNSGLContext - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 5893 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 6056 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -13955,13 +13657,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetX11Display() type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetX11Display - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 5899 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 6062 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -13986,13 +13684,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetX11Adapter(OpenTK.Windowing.GraphicsLibraryFramework.Monitor*) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetX11Adapter - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 5906 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 6069 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -14021,13 +13715,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetX11Monitor(OpenTK.Windowing.GraphicsLibraryFramework.Monitor*) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetX11Monitor - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 5913 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 6076 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -14056,13 +13746,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetX11Window(OpenTK.Windowing.GraphicsLibraryFramework.Window*) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetX11Window - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 5920 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 6083 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -14091,13 +13777,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.SetX11SelectionString(string) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SetX11SelectionString - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 5926 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 6089 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -14126,13 +13808,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetX11SelectionString() type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetX11SelectionString - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 5937 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 6100 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -14157,13 +13835,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetGLXContext(OpenTK.Windowing.GraphicsLibraryFramework.Window*) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetGLXContext - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 5948 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 6111 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -14192,13 +13866,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetGLXWindow(OpenTK.Windowing.GraphicsLibraryFramework.Window*) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetGLXWindow - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 5955 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 6118 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -14227,13 +13897,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetWaylandDisplay() type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetWaylandDisplay - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 5961 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 6124 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -14258,13 +13924,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetWaylandMonitor(OpenTK.Windowing.GraphicsLibraryFramework.Monitor*) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetWaylandMonitor - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 5968 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 6131 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -14293,13 +13955,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetWaylandWindow(OpenTK.Windowing.GraphicsLibraryFramework.Window*) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetWaylandWindow - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 5975 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 6138 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -14328,13 +13986,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetEGLDisplay() type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetEGLDisplay - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 5981 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 6144 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -14359,13 +14013,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetEGLContext(OpenTK.Windowing.GraphicsLibraryFramework.Window*) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetEGLContext - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 5988 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 6151 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -14394,13 +14044,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetEGLSurface(OpenTK.Windowing.GraphicsLibraryFramework.Window*) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetEGLSurface - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 5995 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 6158 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -14429,13 +14075,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetOSMesaColorBuffer(OpenTK.Windowing.GraphicsLibraryFramework.Window*, out int, out int, out int, out nint) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetOSMesaColorBuffer - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 6006 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 6169 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -14479,13 +14121,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetOSMesaDepthBuffer(OpenTK.Windowing.GraphicsLibraryFramework.Window*, out int, out int, out int, out nint) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetOSMesaDepthBuffer - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 6026 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 6189 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -14529,13 +14167,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetOSMesaContext(OpenTK.Windowing.GraphicsLibraryFramework.Window*) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetOSMesaContext - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFW.cs - startLine: 6042 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFW.cs + startLine: 6205 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -14928,6 +14562,117 @@ references: name: InitHintInt nameWithType: InitHintInt fullName: OpenTK.Windowing.GraphicsLibraryFramework.InitHintInt +- uid: OpenTK.Windowing.GraphicsLibraryFramework.InitHintPlatform + commentId: T:OpenTK.Windowing.GraphicsLibraryFramework.InitHintPlatform + parent: OpenTK.Windowing.GraphicsLibraryFramework + href: OpenTK.Windowing.GraphicsLibraryFramework.InitHintPlatform.html + name: InitHintPlatform + nameWithType: InitHintPlatform + fullName: OpenTK.Windowing.GraphicsLibraryFramework.InitHintPlatform +- uid: OpenTK.Windowing.GraphicsLibraryFramework.Platform + commentId: T:OpenTK.Windowing.GraphicsLibraryFramework.Platform + parent: OpenTK.Windowing.GraphicsLibraryFramework + href: OpenTK.Windowing.GraphicsLibraryFramework.Platform.html + name: Platform + nameWithType: Platform + fullName: OpenTK.Windowing.GraphicsLibraryFramework.Platform +- uid: OpenTK.Windowing.GraphicsLibraryFramework.InitHintANGLEPlatformType + commentId: T:OpenTK.Windowing.GraphicsLibraryFramework.InitHintANGLEPlatformType + parent: OpenTK.Windowing.GraphicsLibraryFramework + href: OpenTK.Windowing.GraphicsLibraryFramework.InitHintANGLEPlatformType.html + name: InitHintANGLEPlatformType + nameWithType: InitHintANGLEPlatformType + fullName: OpenTK.Windowing.GraphicsLibraryFramework.InitHintANGLEPlatformType +- uid: OpenTK.Windowing.GraphicsLibraryFramework.ANGLEPlatformType + commentId: T:OpenTK.Windowing.GraphicsLibraryFramework.ANGLEPlatformType + parent: OpenTK.Windowing.GraphicsLibraryFramework + href: OpenTK.Windowing.GraphicsLibraryFramework.ANGLEPlatformType.html + name: ANGLEPlatformType + nameWithType: ANGLEPlatformType + fullName: OpenTK.Windowing.GraphicsLibraryFramework.ANGLEPlatformType +- uid: OpenTK.Windowing.GraphicsLibraryFramework.GLFWallocatefun + commentId: T:OpenTK.Windowing.GraphicsLibraryFramework.GLFWallocatefun + parent: OpenTK.Windowing.GraphicsLibraryFramework + href: OpenTK.Windowing.GraphicsLibraryFramework.GLFWallocatefun.html + name: GLFWallocatefun + nameWithType: GLFWallocatefun + fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFWallocatefun +- uid: OpenTK.Windowing.GraphicsLibraryFramework.GLFWreallocatefun + commentId: T:OpenTK.Windowing.GraphicsLibraryFramework.GLFWreallocatefun + parent: OpenTK.Windowing.GraphicsLibraryFramework + href: OpenTK.Windowing.GraphicsLibraryFramework.GLFWreallocatefun.html + name: GLFWreallocatefun + nameWithType: GLFWreallocatefun + fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFWreallocatefun +- uid: OpenTK.Windowing.GraphicsLibraryFramework.GLFWdeallocatefun + commentId: T:OpenTK.Windowing.GraphicsLibraryFramework.GLFWdeallocatefun + parent: OpenTK.Windowing.GraphicsLibraryFramework + href: OpenTK.Windowing.GraphicsLibraryFramework.GLFWdeallocatefun.html + name: GLFWdeallocatefun + nameWithType: GLFWdeallocatefun + fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFWdeallocatefun +- uid: System.Runtime.CompilerServices.Unsafe.NullRef``1 + commentId: M:System.Runtime.CompilerServices.Unsafe.NullRef``1 + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.runtime.compilerservices.unsafe.nullref + name: NullRef() + nameWithType: Unsafe.NullRef() + fullName: System.Runtime.CompilerServices.Unsafe.NullRef() + nameWithType.vb: Unsafe.NullRef(Of T)() + fullName.vb: System.Runtime.CompilerServices.Unsafe.NullRef(Of T)() + name.vb: NullRef(Of T)() + spec.csharp: + - uid: System.Runtime.CompilerServices.Unsafe.NullRef``1 + name: NullRef + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.runtime.compilerservices.unsafe.nullref + - name: < + - name: T + - name: '>' + - name: ( + - name: ) + spec.vb: + - uid: System.Runtime.CompilerServices.Unsafe.NullRef``1 + name: NullRef + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.runtime.compilerservices.unsafe.nullref + - name: ( + - name: Of + - name: " " + - name: T + - name: ) + - name: ( + - name: ) +- uid: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.InitAllocator* + commentId: Overload:OpenTK.Windowing.GraphicsLibraryFramework.GLFW.InitAllocator + href: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.html#OpenTK_Windowing_GraphicsLibraryFramework_GLFW_InitAllocator_OpenTK_Windowing_GraphicsLibraryFramework_GLFWallocator__ + name: InitAllocator + nameWithType: GLFW.InitAllocator + fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.InitAllocator +- uid: OpenTK.Windowing.GraphicsLibraryFramework.GLFWallocator + commentId: T:OpenTK.Windowing.GraphicsLibraryFramework.GLFWallocator + parent: OpenTK.Windowing.GraphicsLibraryFramework + href: OpenTK.Windowing.GraphicsLibraryFramework.GLFWallocator.html + name: GLFWallocator + nameWithType: GLFWallocator + fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFWallocator +- uid: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.InitVulkanLoader* + commentId: Overload:OpenTK.Windowing.GraphicsLibraryFramework.GLFW.InitVulkanLoader + href: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.html#OpenTK_Windowing_GraphicsLibraryFramework_GLFW_InitVulkanLoader_System_IntPtr_ + name: InitVulkanLoader + nameWithType: GLFW.InitVulkanLoader + fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.InitVulkanLoader +- uid: System.IntPtr + commentId: T:System.IntPtr + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.intptr + name: nint + nameWithType: nint + fullName: nint + nameWithType.vb: IntPtr + fullName.vb: System.IntPtr + name.vb: IntPtr - uid: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetVersion* commentId: Overload:OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetVersion href: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.html#OpenTK_Windowing_GraphicsLibraryFramework_GLFW_GetVersion_System_Int32__System_Int32__System_Int32__ @@ -15087,6 +14832,48 @@ references: name: GetErrorRaw nameWithType: GLFW.GetErrorRaw fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetErrorRaw +- uid: OpenTK.Windowing.GraphicsLibraryFramework.Platform.Win32 + commentId: F:OpenTK.Windowing.GraphicsLibraryFramework.Platform.Win32 + href: OpenTK.Windowing.GraphicsLibraryFramework.Platform.html#OpenTK_Windowing_GraphicsLibraryFramework_Platform_Win32 + name: Win32 + nameWithType: Platform.Win32 + fullName: OpenTK.Windowing.GraphicsLibraryFramework.Platform.Win32 +- uid: OpenTK.Windowing.GraphicsLibraryFramework.Platform.Cocoa + commentId: F:OpenTK.Windowing.GraphicsLibraryFramework.Platform.Cocoa + href: OpenTK.Windowing.GraphicsLibraryFramework.Platform.html#OpenTK_Windowing_GraphicsLibraryFramework_Platform_Cocoa + name: Cocoa + nameWithType: Platform.Cocoa + fullName: OpenTK.Windowing.GraphicsLibraryFramework.Platform.Cocoa +- uid: OpenTK.Windowing.GraphicsLibraryFramework.Platform.Wayland + commentId: F:OpenTK.Windowing.GraphicsLibraryFramework.Platform.Wayland + href: OpenTK.Windowing.GraphicsLibraryFramework.Platform.html#OpenTK_Windowing_GraphicsLibraryFramework_Platform_Wayland + name: Wayland + nameWithType: Platform.Wayland + fullName: OpenTK.Windowing.GraphicsLibraryFramework.Platform.Wayland +- uid: OpenTK.Windowing.GraphicsLibraryFramework.Platform.X11 + commentId: F:OpenTK.Windowing.GraphicsLibraryFramework.Platform.X11 + href: OpenTK.Windowing.GraphicsLibraryFramework.Platform.html#OpenTK_Windowing_GraphicsLibraryFramework_Platform_X11 + name: X11 + nameWithType: Platform.X11 + fullName: OpenTK.Windowing.GraphicsLibraryFramework.Platform.X11 +- uid: OpenTK.Windowing.GraphicsLibraryFramework.Platform.Null + commentId: F:OpenTK.Windowing.GraphicsLibraryFramework.Platform.Null + href: OpenTK.Windowing.GraphicsLibraryFramework.Platform.html#OpenTK_Windowing_GraphicsLibraryFramework_Platform_Null + name: "Null" + nameWithType: Platform.Null + fullName: OpenTK.Windowing.GraphicsLibraryFramework.Platform.Null +- uid: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetPlatform* + commentId: Overload:OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetPlatform + href: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.html#OpenTK_Windowing_GraphicsLibraryFramework_GLFW_GetPlatform + name: GetPlatform + nameWithType: GLFW.GetPlatform + fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetPlatform +- uid: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.PlatformSupported* + commentId: Overload:OpenTK.Windowing.GraphicsLibraryFramework.GLFW.PlatformSupported + href: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.html#OpenTK_Windowing_GraphicsLibraryFramework_GLFW_PlatformSupported_OpenTK_Windowing_GraphicsLibraryFramework_Platform_ + name: PlatformSupported + nameWithType: GLFW.PlatformSupported + fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.PlatformSupported - uid: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetPrimaryMonitor commentId: M:OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetPrimaryMonitor href: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.html#OpenTK_Windowing_GraphicsLibraryFramework_GLFW_GetPrimaryMonitor @@ -16861,17 +16648,6 @@ references: name: GetProcAddress nameWithType: GLFW.GetProcAddress fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetProcAddress -- uid: System.IntPtr - commentId: T:System.IntPtr - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: nint - nameWithType: nint - fullName: nint - nameWithType.vb: IntPtr - fullName.vb: System.IntPtr - name.vb: IntPtr - uid: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetProcAddressRaw* commentId: Overload:OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetProcAddressRaw href: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.html#OpenTK_Windowing_GraphicsLibraryFramework_GLFW_GetProcAddressRaw_System_Byte__ @@ -19150,6 +18926,190 @@ references: name: SetWindowShouldClose nameWithType: GLFW.SetWindowShouldClose fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.SetWindowShouldClose +- uid: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.SetWindowTitleRaw(OpenTK.Windowing.GraphicsLibraryFramework.Window*,System.Byte*) + commentId: M:OpenTK.Windowing.GraphicsLibraryFramework.GLFW.SetWindowTitleRaw(OpenTK.Windowing.GraphicsLibraryFramework.Window*,System.Byte*) + isExternal: true + href: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.html#OpenTK_Windowing_GraphicsLibraryFramework_GLFW_SetWindowTitleRaw_OpenTK_Windowing_GraphicsLibraryFramework_Window__System_Byte__ + name: SetWindowTitleRaw(Window*, byte*) + nameWithType: GLFW.SetWindowTitleRaw(Window*, byte*) + fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.SetWindowTitleRaw(OpenTK.Windowing.GraphicsLibraryFramework.Window*, byte*) + nameWithType.vb: GLFW.SetWindowTitleRaw(Window*, Byte*) + fullName.vb: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.SetWindowTitleRaw(OpenTK.Windowing.GraphicsLibraryFramework.Window*, Byte*) + name.vb: SetWindowTitleRaw(Window*, Byte*) + spec.csharp: + - uid: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.SetWindowTitleRaw(OpenTK.Windowing.GraphicsLibraryFramework.Window*,System.Byte*) + name: SetWindowTitleRaw + href: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.html#OpenTK_Windowing_GraphicsLibraryFramework_GLFW_SetWindowTitleRaw_OpenTK_Windowing_GraphicsLibraryFramework_Window__System_Byte__ + - name: ( + - uid: OpenTK.Windowing.GraphicsLibraryFramework.Window + name: Window + href: OpenTK.Windowing.GraphicsLibraryFramework.Window.html + - name: '*' + - name: ',' + - name: " " + - uid: System.Byte + name: byte + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.byte + - name: '*' + - name: ) + spec.vb: + - uid: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.SetWindowTitleRaw(OpenTK.Windowing.GraphicsLibraryFramework.Window*,System.Byte*) + name: SetWindowTitleRaw + href: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.html#OpenTK_Windowing_GraphicsLibraryFramework_GLFW_SetWindowTitleRaw_OpenTK_Windowing_GraphicsLibraryFramework_Window__System_Byte__ + - name: ( + - uid: OpenTK.Windowing.GraphicsLibraryFramework.Window + name: Window + href: OpenTK.Windowing.GraphicsLibraryFramework.Window.html + - name: '*' + - name: ',' + - name: " " + - uid: System.Byte + name: Byte + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.byte + - name: '*' + - name: ) +- uid: OpenTK.Windowing.GraphicsLibraryFramework.GLFWNative.glfwCreateWindow(System.Int32,System.Int32,System.Byte*,OpenTK.Windowing.GraphicsLibraryFramework.Monitor*,OpenTK.Windowing.GraphicsLibraryFramework.Window*) + commentId: M:OpenTK.Windowing.GraphicsLibraryFramework.GLFWNative.glfwCreateWindow(System.Int32,System.Int32,System.Byte*,OpenTK.Windowing.GraphicsLibraryFramework.Monitor*,OpenTK.Windowing.GraphicsLibraryFramework.Window*) + isExternal: true + href: OpenTK.Windowing.GraphicsLibraryFramework.GLFWNative.html#OpenTK_Windowing_GraphicsLibraryFramework_GLFWNative_glfwCreateWindow_System_Int32_System_Int32_System_Byte__OpenTK_Windowing_GraphicsLibraryFramework_Monitor__OpenTK_Windowing_GraphicsLibraryFramework_Window__ + name: glfwCreateWindow(int, int, byte*, Monitor*, Window*) + nameWithType: GLFWNative.glfwCreateWindow(int, int, byte*, Monitor*, Window*) + fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFWNative.glfwCreateWindow(int, int, byte*, OpenTK.Windowing.GraphicsLibraryFramework.Monitor*, OpenTK.Windowing.GraphicsLibraryFramework.Window*) + nameWithType.vb: GLFWNative.glfwCreateWindow(Integer, Integer, Byte*, Monitor*, Window*) + fullName.vb: OpenTK.Windowing.GraphicsLibraryFramework.GLFWNative.glfwCreateWindow(Integer, Integer, Byte*, OpenTK.Windowing.GraphicsLibraryFramework.Monitor*, OpenTK.Windowing.GraphicsLibraryFramework.Window*) + name.vb: glfwCreateWindow(Integer, Integer, Byte*, Monitor*, Window*) + spec.csharp: + - uid: OpenTK.Windowing.GraphicsLibraryFramework.GLFWNative.glfwCreateWindow(System.Int32,System.Int32,System.Byte*,OpenTK.Windowing.GraphicsLibraryFramework.Monitor*,OpenTK.Windowing.GraphicsLibraryFramework.Window*) + name: glfwCreateWindow + isExternal: true + href: OpenTK.Windowing.GraphicsLibraryFramework.GLFWNative.html#OpenTK_Windowing_GraphicsLibraryFramework_GLFWNative_glfwCreateWindow_System_Int32_System_Int32_System_Byte__OpenTK_Windowing_GraphicsLibraryFramework_Monitor__OpenTK_Windowing_GraphicsLibraryFramework_Window__ + - name: ( + - uid: System.Int32 + name: int + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ',' + - name: " " + - uid: System.Int32 + name: int + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ',' + - name: " " + - uid: System.Byte + name: byte + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.byte + - name: '*' + - name: ',' + - name: " " + - uid: OpenTK.Windowing.GraphicsLibraryFramework.Monitor + name: Monitor + href: OpenTK.Windowing.GraphicsLibraryFramework.Monitor.html + - name: '*' + - name: ',' + - name: " " + - uid: OpenTK.Windowing.GraphicsLibraryFramework.Window + name: Window + href: OpenTK.Windowing.GraphicsLibraryFramework.Window.html + - name: '*' + - name: ) + spec.vb: + - uid: OpenTK.Windowing.GraphicsLibraryFramework.GLFWNative.glfwCreateWindow(System.Int32,System.Int32,System.Byte*,OpenTK.Windowing.GraphicsLibraryFramework.Monitor*,OpenTK.Windowing.GraphicsLibraryFramework.Window*) + name: glfwCreateWindow + isExternal: true + href: OpenTK.Windowing.GraphicsLibraryFramework.GLFWNative.html#OpenTK_Windowing_GraphicsLibraryFramework_GLFWNative_glfwCreateWindow_System_Int32_System_Int32_System_Byte__OpenTK_Windowing_GraphicsLibraryFramework_Monitor__OpenTK_Windowing_GraphicsLibraryFramework_Window__ + - name: ( + - uid: System.Int32 + name: Integer + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ',' + - name: " " + - uid: System.Int32 + name: Integer + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ',' + - name: " " + - uid: System.Byte + name: Byte + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.byte + - name: '*' + - name: ',' + - name: " " + - uid: OpenTK.Windowing.GraphicsLibraryFramework.Monitor + name: Monitor + href: OpenTK.Windowing.GraphicsLibraryFramework.Monitor.html + - name: '*' + - name: ',' + - name: " " + - uid: OpenTK.Windowing.GraphicsLibraryFramework.Window + name: Window + href: OpenTK.Windowing.GraphicsLibraryFramework.Window.html + - name: '*' + - name: ) +- uid: OpenTK.Windowing.GraphicsLibraryFramework.GLFWNative.glfwSetWindowTitle(OpenTK.Windowing.GraphicsLibraryFramework.Window*,System.Byte*) + commentId: M:OpenTK.Windowing.GraphicsLibraryFramework.GLFWNative.glfwSetWindowTitle(OpenTK.Windowing.GraphicsLibraryFramework.Window*,System.Byte*) + isExternal: true + href: OpenTK.Windowing.GraphicsLibraryFramework.GLFWNative.html#OpenTK_Windowing_GraphicsLibraryFramework_GLFWNative_glfwSetWindowTitle_OpenTK_Windowing_GraphicsLibraryFramework_Window__System_Byte__ + name: glfwSetWindowTitle(Window*, byte*) + nameWithType: GLFWNative.glfwSetWindowTitle(Window*, byte*) + fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFWNative.glfwSetWindowTitle(OpenTK.Windowing.GraphicsLibraryFramework.Window*, byte*) + nameWithType.vb: GLFWNative.glfwSetWindowTitle(Window*, Byte*) + fullName.vb: OpenTK.Windowing.GraphicsLibraryFramework.GLFWNative.glfwSetWindowTitle(OpenTK.Windowing.GraphicsLibraryFramework.Window*, Byte*) + name.vb: glfwSetWindowTitle(Window*, Byte*) + spec.csharp: + - uid: OpenTK.Windowing.GraphicsLibraryFramework.GLFWNative.glfwSetWindowTitle(OpenTK.Windowing.GraphicsLibraryFramework.Window*,System.Byte*) + name: glfwSetWindowTitle + isExternal: true + href: OpenTK.Windowing.GraphicsLibraryFramework.GLFWNative.html#OpenTK_Windowing_GraphicsLibraryFramework_GLFWNative_glfwSetWindowTitle_OpenTK_Windowing_GraphicsLibraryFramework_Window__System_Byte__ + - name: ( + - uid: OpenTK.Windowing.GraphicsLibraryFramework.Window + name: Window + href: OpenTK.Windowing.GraphicsLibraryFramework.Window.html + - name: '*' + - name: ',' + - name: " " + - uid: System.Byte + name: byte + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.byte + - name: '*' + - name: ) + spec.vb: + - uid: OpenTK.Windowing.GraphicsLibraryFramework.GLFWNative.glfwSetWindowTitle(OpenTK.Windowing.GraphicsLibraryFramework.Window*,System.Byte*) + name: glfwSetWindowTitle + isExternal: true + href: OpenTK.Windowing.GraphicsLibraryFramework.GLFWNative.html#OpenTK_Windowing_GraphicsLibraryFramework_GLFWNative_glfwSetWindowTitle_OpenTK_Windowing_GraphicsLibraryFramework_Window__System_Byte__ + - name: ( + - uid: OpenTK.Windowing.GraphicsLibraryFramework.Window + name: Window + href: OpenTK.Windowing.GraphicsLibraryFramework.Window.html + - name: '*' + - name: ',' + - name: " " + - uid: System.Byte + name: Byte + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.byte + - name: '*' + - name: ) +- uid: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetWindowTitleRaw* + commentId: Overload:OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetWindowTitleRaw + href: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.html#OpenTK_Windowing_GraphicsLibraryFramework_GLFW_GetWindowTitleRaw_OpenTK_Windowing_GraphicsLibraryFramework_Window__ + name: GetWindowTitleRaw + nameWithType: GLFW.GetWindowTitleRaw + fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetWindowTitleRaw +- uid: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetWindowTitle* + commentId: Overload:OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetWindowTitle + href: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.html#OpenTK_Windowing_GraphicsLibraryFramework_GLFW_GetWindowTitle_OpenTK_Windowing_GraphicsLibraryFramework_Window__ + name: GetWindowTitle + nameWithType: GLFW.GetWindowTitle + fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetWindowTitle - uid: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.SetWindowTitle* commentId: Overload:OpenTK.Windowing.GraphicsLibraryFramework.GLFW.SetWindowTitle href: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.html#OpenTK_Windowing_GraphicsLibraryFramework_GLFW_SetWindowTitle_OpenTK_Windowing_GraphicsLibraryFramework_Window__System_String_ @@ -19876,6 +19836,12 @@ references: name: GetCocoaWindow nameWithType: GLFW.GetCocoaWindow fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetCocoaWindow +- uid: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetCocoaView* + commentId: Overload:OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetCocoaView + href: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.html#OpenTK_Windowing_GraphicsLibraryFramework_GLFW_GetCocoaView_OpenTK_Windowing_GraphicsLibraryFramework_Window__ + name: GetCocoaView + nameWithType: GLFW.GetCocoaView + fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetCocoaView - uid: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetNSGLContext* commentId: Overload:OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetNSGLContext href: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.html#OpenTK_Windowing_GraphicsLibraryFramework_GLFW_GetNSGLContext_OpenTK_Windowing_GraphicsLibraryFramework_Window__ diff --git a/api/OpenTK.Windowing.GraphicsLibraryFramework.GLFWBindingsContext.yml b/api/OpenTK.Windowing.GraphicsLibraryFramework.GLFWBindingsContext.yml index b5a5ded1..755bafc9 100644 --- a/api/OpenTK.Windowing.GraphicsLibraryFramework.GLFWBindingsContext.yml +++ b/api/OpenTK.Windowing.GraphicsLibraryFramework.GLFWBindingsContext.yml @@ -14,12 +14,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFWBindingsContext type: Class source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFWBindingsContext.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GLFWBindingsContext - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFWBindingsContext.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFWBindingsContext.cs startLine: 7 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -53,12 +49,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFWBindingsContext.GetProcAddress(string) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFWBindingsContext.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetProcAddress - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFWBindingsContext.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFWBindingsContext.cs startLine: 22 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework diff --git a/api/OpenTK.Windowing.GraphicsLibraryFramework.GLFWCallbacks.CharCallback.yml b/api/OpenTK.Windowing.GraphicsLibraryFramework.GLFWCallbacks.CharCallback.yml index e5b1ec2e..3da904fa 100644 --- a/api/OpenTK.Windowing.GraphicsLibraryFramework.GLFWCallbacks.CharCallback.yml +++ b/api/OpenTK.Windowing.GraphicsLibraryFramework.GLFWCallbacks.CharCallback.yml @@ -13,12 +13,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFWCallbacks.CharCallback type: Delegate source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFWCallbacks.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CharCallback - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFWCallbacks.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFWCallbacks.cs startLine: 25 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework diff --git a/api/OpenTK.Windowing.GraphicsLibraryFramework.GLFWCallbacks.CharModsCallback.yml b/api/OpenTK.Windowing.GraphicsLibraryFramework.GLFWCallbacks.CharModsCallback.yml index 747453d3..90957c6d 100644 --- a/api/OpenTK.Windowing.GraphicsLibraryFramework.GLFWCallbacks.CharModsCallback.yml +++ b/api/OpenTK.Windowing.GraphicsLibraryFramework.GLFWCallbacks.CharModsCallback.yml @@ -13,12 +13,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFWCallbacks.CharModsCallback type: Delegate source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFWCallbacks.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CharModsCallback - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFWCallbacks.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFWCallbacks.cs startLine: 36 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework diff --git a/api/OpenTK.Windowing.GraphicsLibraryFramework.GLFWCallbacks.CursorEnterCallback.yml b/api/OpenTK.Windowing.GraphicsLibraryFramework.GLFWCallbacks.CursorEnterCallback.yml index 10e87aa4..db944b90 100644 --- a/api/OpenTK.Windowing.GraphicsLibraryFramework.GLFWCallbacks.CursorEnterCallback.yml +++ b/api/OpenTK.Windowing.GraphicsLibraryFramework.GLFWCallbacks.CursorEnterCallback.yml @@ -13,12 +13,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFWCallbacks.CursorEnterCallback type: Delegate source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFWCallbacks.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CursorEnterCallback - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFWCallbacks.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFWCallbacks.cs startLine: 45 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework diff --git a/api/OpenTK.Windowing.GraphicsLibraryFramework.GLFWCallbacks.CursorPosCallback.yml b/api/OpenTK.Windowing.GraphicsLibraryFramework.GLFWCallbacks.CursorPosCallback.yml index 055da2c9..aaccd37d 100644 --- a/api/OpenTK.Windowing.GraphicsLibraryFramework.GLFWCallbacks.CursorPosCallback.yml +++ b/api/OpenTK.Windowing.GraphicsLibraryFramework.GLFWCallbacks.CursorPosCallback.yml @@ -13,12 +13,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFWCallbacks.CursorPosCallback type: Delegate source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFWCallbacks.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CursorPosCallback - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFWCallbacks.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFWCallbacks.cs startLine: 55 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework diff --git a/api/OpenTK.Windowing.GraphicsLibraryFramework.GLFWCallbacks.DropCallback.yml b/api/OpenTK.Windowing.GraphicsLibraryFramework.GLFWCallbacks.DropCallback.yml index 6e64f928..db8fba52 100644 --- a/api/OpenTK.Windowing.GraphicsLibraryFramework.GLFWCallbacks.DropCallback.yml +++ b/api/OpenTK.Windowing.GraphicsLibraryFramework.GLFWCallbacks.DropCallback.yml @@ -13,12 +13,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFWCallbacks.DropCallback type: Delegate source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFWCallbacks.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DropCallback - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFWCallbacks.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFWCallbacks.cs startLine: 65 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework diff --git a/api/OpenTK.Windowing.GraphicsLibraryFramework.GLFWCallbacks.ErrorCallback.yml b/api/OpenTK.Windowing.GraphicsLibraryFramework.GLFWCallbacks.ErrorCallback.yml index 45a0855e..81a894b5 100644 --- a/api/OpenTK.Windowing.GraphicsLibraryFramework.GLFWCallbacks.ErrorCallback.yml +++ b/api/OpenTK.Windowing.GraphicsLibraryFramework.GLFWCallbacks.ErrorCallback.yml @@ -13,12 +13,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFWCallbacks.ErrorCallback type: Delegate source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFWCallbacks.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ErrorCallback - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFWCallbacks.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFWCallbacks.cs startLine: 207 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework diff --git a/api/OpenTK.Windowing.GraphicsLibraryFramework.GLFWCallbacks.FramebufferSizeCallback.yml b/api/OpenTK.Windowing.GraphicsLibraryFramework.GLFWCallbacks.FramebufferSizeCallback.yml index 9fcdcf91..d04f2f2e 100644 --- a/api/OpenTK.Windowing.GraphicsLibraryFramework.GLFWCallbacks.FramebufferSizeCallback.yml +++ b/api/OpenTK.Windowing.GraphicsLibraryFramework.GLFWCallbacks.FramebufferSizeCallback.yml @@ -13,12 +13,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFWCallbacks.FramebufferSizeCallback type: Delegate source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFWCallbacks.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: FramebufferSizeCallback - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFWCallbacks.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFWCallbacks.cs startLine: 165 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework diff --git a/api/OpenTK.Windowing.GraphicsLibraryFramework.GLFWCallbacks.JoystickCallback.yml b/api/OpenTK.Windowing.GraphicsLibraryFramework.GLFWCallbacks.JoystickCallback.yml index cb6e5bef..9c3a8b36 100644 --- a/api/OpenTK.Windowing.GraphicsLibraryFramework.GLFWCallbacks.JoystickCallback.yml +++ b/api/OpenTK.Windowing.GraphicsLibraryFramework.GLFWCallbacks.JoystickCallback.yml @@ -13,12 +13,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFWCallbacks.JoystickCallback type: Delegate source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFWCallbacks.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: JoystickCallback - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFWCallbacks.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFWCallbacks.cs startLine: 76 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework diff --git a/api/OpenTK.Windowing.GraphicsLibraryFramework.GLFWCallbacks.KeyCallback.yml b/api/OpenTK.Windowing.GraphicsLibraryFramework.GLFWCallbacks.KeyCallback.yml index 8c4b3f71..7f30b1f0 100644 --- a/api/OpenTK.Windowing.GraphicsLibraryFramework.GLFWCallbacks.KeyCallback.yml +++ b/api/OpenTK.Windowing.GraphicsLibraryFramework.GLFWCallbacks.KeyCallback.yml @@ -13,12 +13,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFWCallbacks.KeyCallback type: Delegate source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFWCallbacks.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: KeyCallback - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFWCallbacks.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFWCallbacks.cs startLine: 88 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework diff --git a/api/OpenTK.Windowing.GraphicsLibraryFramework.GLFWCallbacks.MonitorCallback.yml b/api/OpenTK.Windowing.GraphicsLibraryFramework.GLFWCallbacks.MonitorCallback.yml index a9f7f2b4..90aca164 100644 --- a/api/OpenTK.Windowing.GraphicsLibraryFramework.GLFWCallbacks.MonitorCallback.yml +++ b/api/OpenTK.Windowing.GraphicsLibraryFramework.GLFWCallbacks.MonitorCallback.yml @@ -13,12 +13,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFWCallbacks.MonitorCallback type: Delegate source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFWCallbacks.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MonitorCallback - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFWCallbacks.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFWCallbacks.cs startLine: 120 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework diff --git a/api/OpenTK.Windowing.GraphicsLibraryFramework.GLFWCallbacks.MouseButtonCallback.yml b/api/OpenTK.Windowing.GraphicsLibraryFramework.GLFWCallbacks.MouseButtonCallback.yml index 1f5f74c0..6b55cbdc 100644 --- a/api/OpenTK.Windowing.GraphicsLibraryFramework.GLFWCallbacks.MouseButtonCallback.yml +++ b/api/OpenTK.Windowing.GraphicsLibraryFramework.GLFWCallbacks.MouseButtonCallback.yml @@ -13,12 +13,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFWCallbacks.MouseButtonCallback type: Delegate source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFWCallbacks.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MouseButtonCallback - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFWCallbacks.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFWCallbacks.cs startLine: 99 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework diff --git a/api/OpenTK.Windowing.GraphicsLibraryFramework.GLFWCallbacks.ScrollCallback.yml b/api/OpenTK.Windowing.GraphicsLibraryFramework.GLFWCallbacks.ScrollCallback.yml index bf7e62e4..b2134a83 100644 --- a/api/OpenTK.Windowing.GraphicsLibraryFramework.GLFWCallbacks.ScrollCallback.yml +++ b/api/OpenTK.Windowing.GraphicsLibraryFramework.GLFWCallbacks.ScrollCallback.yml @@ -13,12 +13,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFWCallbacks.ScrollCallback type: Delegate source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFWCallbacks.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ScrollCallback - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFWCallbacks.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFWCallbacks.cs startLine: 109 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework diff --git a/api/OpenTK.Windowing.GraphicsLibraryFramework.GLFWCallbacks.WindowCloseCallback.yml b/api/OpenTK.Windowing.GraphicsLibraryFramework.GLFWCallbacks.WindowCloseCallback.yml index b9e58288..82cf7bbb 100644 --- a/api/OpenTK.Windowing.GraphicsLibraryFramework.GLFWCallbacks.WindowCloseCallback.yml +++ b/api/OpenTK.Windowing.GraphicsLibraryFramework.GLFWCallbacks.WindowCloseCallback.yml @@ -13,12 +13,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFWCallbacks.WindowCloseCallback type: Delegate source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFWCallbacks.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: WindowCloseCallback - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFWCallbacks.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFWCallbacks.cs startLine: 128 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework diff --git a/api/OpenTK.Windowing.GraphicsLibraryFramework.GLFWCallbacks.WindowContentScaleCallback.yml b/api/OpenTK.Windowing.GraphicsLibraryFramework.GLFWCallbacks.WindowContentScaleCallback.yml index 5f81b40e..1fce100d 100644 --- a/api/OpenTK.Windowing.GraphicsLibraryFramework.GLFWCallbacks.WindowContentScaleCallback.yml +++ b/api/OpenTK.Windowing.GraphicsLibraryFramework.GLFWCallbacks.WindowContentScaleCallback.yml @@ -13,12 +13,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFWCallbacks.WindowContentScaleCallback type: Delegate source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFWCallbacks.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: WindowContentScaleCallback - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFWCallbacks.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFWCallbacks.cs startLine: 175 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework diff --git a/api/OpenTK.Windowing.GraphicsLibraryFramework.GLFWCallbacks.WindowFocusCallback.yml b/api/OpenTK.Windowing.GraphicsLibraryFramework.GLFWCallbacks.WindowFocusCallback.yml index 727a1f98..17096a35 100644 --- a/api/OpenTK.Windowing.GraphicsLibraryFramework.GLFWCallbacks.WindowFocusCallback.yml +++ b/api/OpenTK.Windowing.GraphicsLibraryFramework.GLFWCallbacks.WindowFocusCallback.yml @@ -13,12 +13,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFWCallbacks.WindowFocusCallback type: Delegate source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFWCallbacks.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: WindowFocusCallback - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFWCallbacks.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFWCallbacks.cs startLine: 137 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework diff --git a/api/OpenTK.Windowing.GraphicsLibraryFramework.GLFWCallbacks.WindowIconifyCallback.yml b/api/OpenTK.Windowing.GraphicsLibraryFramework.GLFWCallbacks.WindowIconifyCallback.yml index abf6a02e..36cfc308 100644 --- a/api/OpenTK.Windowing.GraphicsLibraryFramework.GLFWCallbacks.WindowIconifyCallback.yml +++ b/api/OpenTK.Windowing.GraphicsLibraryFramework.GLFWCallbacks.WindowIconifyCallback.yml @@ -13,12 +13,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFWCallbacks.WindowIconifyCallback type: Delegate source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFWCallbacks.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: WindowIconifyCallback - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFWCallbacks.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFWCallbacks.cs startLine: 146 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework diff --git a/api/OpenTK.Windowing.GraphicsLibraryFramework.GLFWCallbacks.WindowMaximizeCallback.yml b/api/OpenTK.Windowing.GraphicsLibraryFramework.GLFWCallbacks.WindowMaximizeCallback.yml index e16c2e55..d8d7996f 100644 --- a/api/OpenTK.Windowing.GraphicsLibraryFramework.GLFWCallbacks.WindowMaximizeCallback.yml +++ b/api/OpenTK.Windowing.GraphicsLibraryFramework.GLFWCallbacks.WindowMaximizeCallback.yml @@ -13,12 +13,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFWCallbacks.WindowMaximizeCallback type: Delegate source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFWCallbacks.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: WindowMaximizeCallback - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFWCallbacks.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFWCallbacks.cs startLine: 155 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework diff --git a/api/OpenTK.Windowing.GraphicsLibraryFramework.GLFWCallbacks.WindowPosCallback.yml b/api/OpenTK.Windowing.GraphicsLibraryFramework.GLFWCallbacks.WindowPosCallback.yml index 8ed296b7..2924805b 100644 --- a/api/OpenTK.Windowing.GraphicsLibraryFramework.GLFWCallbacks.WindowPosCallback.yml +++ b/api/OpenTK.Windowing.GraphicsLibraryFramework.GLFWCallbacks.WindowPosCallback.yml @@ -13,12 +13,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFWCallbacks.WindowPosCallback type: Delegate source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFWCallbacks.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: WindowPosCallback - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFWCallbacks.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFWCallbacks.cs startLine: 189 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework diff --git a/api/OpenTK.Windowing.GraphicsLibraryFramework.GLFWCallbacks.WindowRefreshCallback.yml b/api/OpenTK.Windowing.GraphicsLibraryFramework.GLFWCallbacks.WindowRefreshCallback.yml index 836ad36c..fad29eec 100644 --- a/api/OpenTK.Windowing.GraphicsLibraryFramework.GLFWCallbacks.WindowRefreshCallback.yml +++ b/api/OpenTK.Windowing.GraphicsLibraryFramework.GLFWCallbacks.WindowRefreshCallback.yml @@ -13,12 +13,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFWCallbacks.WindowRefreshCallback type: Delegate source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFWCallbacks.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: WindowRefreshCallback - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFWCallbacks.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFWCallbacks.cs startLine: 214 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework diff --git a/api/OpenTK.Windowing.GraphicsLibraryFramework.GLFWCallbacks.WindowSizeCallback.yml b/api/OpenTK.Windowing.GraphicsLibraryFramework.GLFWCallbacks.WindowSizeCallback.yml index 334f0521..fcc978b6 100644 --- a/api/OpenTK.Windowing.GraphicsLibraryFramework.GLFWCallbacks.WindowSizeCallback.yml +++ b/api/OpenTK.Windowing.GraphicsLibraryFramework.GLFWCallbacks.WindowSizeCallback.yml @@ -13,12 +13,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFWCallbacks.WindowSizeCallback type: Delegate source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFWCallbacks.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: WindowSizeCallback - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFWCallbacks.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFWCallbacks.cs startLine: 199 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework diff --git a/api/OpenTK.Windowing.GraphicsLibraryFramework.GLFWCallbacks.yml b/api/OpenTK.Windowing.GraphicsLibraryFramework.GLFWCallbacks.yml index 1c39d581..7f0161d4 100644 --- a/api/OpenTK.Windowing.GraphicsLibraryFramework.GLFWCallbacks.yml +++ b/api/OpenTK.Windowing.GraphicsLibraryFramework.GLFWCallbacks.yml @@ -13,12 +13,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFWCallbacks type: Class source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFWCallbacks.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GLFWCallbacks - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFWCallbacks.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFWCallbacks.cs startLine: 17 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework diff --git a/api/OpenTK.Windowing.GraphicsLibraryFramework.GLFWException.yml b/api/OpenTK.Windowing.GraphicsLibraryFramework.GLFWException.yml index efbee417..3524b824 100644 --- a/api/OpenTK.Windowing.GraphicsLibraryFramework.GLFWException.yml +++ b/api/OpenTK.Windowing.GraphicsLibraryFramework.GLFWException.yml @@ -19,12 +19,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFWException type: Class source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFWException.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GLFWException - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFWException.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFWException.cs startLine: 17 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -47,7 +43,6 @@ items: - System.Runtime.Serialization.ISerializable inheritedMembers: - System.Exception.GetBaseException - - System.Exception.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) - System.Exception.GetType - System.Exception.ToString - System.Exception.Data @@ -80,12 +75,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFWException.ErrorCode type: Property source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFWException.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ErrorCode - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFWException.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFWException.cs startLine: 23 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -111,12 +102,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFWException.GLFWException() type: Constructor source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFWException.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFWException.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFWException.cs startLine: 28 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -142,12 +129,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFWException.GLFWException(string) type: Constructor source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFWException.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFWException.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFWException.cs startLine: 36 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -177,12 +160,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFWException.GLFWException(string, OpenTK.Windowing.GraphicsLibraryFramework.ErrorCode) type: Constructor source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFWException.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFWException.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFWException.cs startLine: 47 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -218,12 +197,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFWException.GLFWException(string, System.Exception) type: Constructor source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFWException.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFWException.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFWException.cs startLine: 59 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -259,12 +234,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFWException.GLFWException(System.Runtime.Serialization.SerializationInfo, System.Runtime.Serialization.StreamingContext) type: Constructor source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GLFWException.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GLFWException.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFWException.cs startLine: 72 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -368,48 +339,6 @@ references: href: https://learn.microsoft.com/dotnet/api/system.exception.getbaseexception - name: ( - name: ) -- uid: System.Exception.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) - commentId: M:System.Exception.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) - parent: System.Exception - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.exception.getobjectdata - name: GetObjectData(SerializationInfo, StreamingContext) - nameWithType: Exception.GetObjectData(SerializationInfo, StreamingContext) - fullName: System.Exception.GetObjectData(System.Runtime.Serialization.SerializationInfo, System.Runtime.Serialization.StreamingContext) - spec.csharp: - - uid: System.Exception.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) - name: GetObjectData - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.exception.getobjectdata - - name: ( - - uid: System.Runtime.Serialization.SerializationInfo - name: SerializationInfo - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.runtime.serialization.serializationinfo - - name: ',' - - name: " " - - uid: System.Runtime.Serialization.StreamingContext - name: StreamingContext - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.runtime.serialization.streamingcontext - - name: ) - spec.vb: - - uid: System.Exception.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) - name: GetObjectData - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.exception.getobjectdata - - name: ( - - uid: System.Runtime.Serialization.SerializationInfo - name: SerializationInfo - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.runtime.serialization.serializationinfo - - name: ',' - - name: " " - - uid: System.Runtime.Serialization.StreamingContext - name: StreamingContext - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.runtime.serialization.streamingcontext - - name: ) - uid: System.Exception.GetType commentId: M:System.Exception.GetType parent: System.Exception diff --git a/api/OpenTK.Windowing.GraphicsLibraryFramework.GLFWallocatefun.yml b/api/OpenTK.Windowing.GraphicsLibraryFramework.GLFWallocatefun.yml new file mode 100644 index 00000000..aa50b3e2 --- /dev/null +++ b/api/OpenTK.Windowing.GraphicsLibraryFramework.GLFWallocatefun.yml @@ -0,0 +1,170 @@ +### YamlMime:ManagedReference +items: +- uid: OpenTK.Windowing.GraphicsLibraryFramework.GLFWallocatefun + commentId: T:OpenTK.Windowing.GraphicsLibraryFramework.GLFWallocatefun + id: GLFWallocatefun + parent: OpenTK.Windowing.GraphicsLibraryFramework + children: [] + langs: + - csharp + - vb + name: GLFWallocatefun + nameWithType: GLFWallocatefun + fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFWallocatefun + type: Delegate + source: + id: GLFWallocatefun + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFWCallbacks.cs + startLine: 262 + assemblies: + - OpenTK.Windowing.GraphicsLibraryFramework + namespace: OpenTK.Windowing.GraphicsLibraryFramework + summary: >- + The function pointer type for memory allocation callbacks. + + + This is the function pointer type for memory allocation callbacks. A memory + + allocation callback function has the following signature: + +

void* function_name(size_t size, void* user)
+ + + This function must return either a memory block at least `size` bytes long, + + or `NULL` if allocation failed.Note that not all parts of GLFW handle allocation + + failures gracefully yet. + + + This function must support being called during @ref glfwInit but before the library is + + flagged as initialized, as well as during @ref glfwTerminate after the library is no + + longer flagged as initialized. + + + Any memory allocated via this function will be deallocated via the same allocator + + during library termination or earlier. + + + Any memory allocated via this function must be suitably aligned for any object type. + + If you are using C99 or earlier, this alignment is platform-dependent but will be the + + same as what `malloc` provides.If you are using C11 or later, this is the value of + + `alignof(max_align_t)`. + + + The size will always be greater than zero. Allocations of size zero are filtered out + + before reaching the custom allocator. + + + If this function returns `NULL`, GLFW will emit . + + + This function must not call any GLFW function. + + + Added in version 3.4. + remarks: >- + The returned memory block must be valid at least until it is deallocated. + + + This function should not call any GLFW function. + + + This function must support being called from any thread that calls GLFW functions. + example: [] + syntax: + content: public delegate void* GLFWallocatefun(nuint size, void* user) + parameters: + - id: size + type: System.UIntPtr + description: The minimum size, in bytes, of the memory block. + - id: user + type: System.Void* + description: The user-defined pointer from the allocator. + return: + type: System.Void* + description: The address of the newly allocated memory block, or `NULL` if an error occurred. + content.vb: Public Delegate Function GLFWallocatefun(size As UIntPtr, user As Void*) As Void* +references: +- uid: OpenTK.Windowing.GraphicsLibraryFramework.ErrorCode.OutOfMemory + commentId: F:OpenTK.Windowing.GraphicsLibraryFramework.ErrorCode.OutOfMemory + href: OpenTK.Windowing.GraphicsLibraryFramework.ErrorCode.html#OpenTK_Windowing_GraphicsLibraryFramework_ErrorCode_OutOfMemory + name: OutOfMemory + nameWithType: ErrorCode.OutOfMemory + fullName: OpenTK.Windowing.GraphicsLibraryFramework.ErrorCode.OutOfMemory +- uid: OpenTK.Windowing.GraphicsLibraryFramework + commentId: N:OpenTK.Windowing.GraphicsLibraryFramework + href: OpenTK.html + name: OpenTK.Windowing.GraphicsLibraryFramework + nameWithType: OpenTK.Windowing.GraphicsLibraryFramework + fullName: OpenTK.Windowing.GraphicsLibraryFramework + spec.csharp: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Windowing + name: Windowing + href: OpenTK.Windowing.html + - name: . + - uid: OpenTK.Windowing.GraphicsLibraryFramework + name: GraphicsLibraryFramework + href: OpenTK.Windowing.GraphicsLibraryFramework.html + spec.vb: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Windowing + name: Windowing + href: OpenTK.Windowing.html + - name: . + - uid: OpenTK.Windowing.GraphicsLibraryFramework + name: GraphicsLibraryFramework + href: OpenTK.Windowing.GraphicsLibraryFramework.html +- uid: System.UIntPtr + commentId: T:System.UIntPtr + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.uintptr + name: nuint + nameWithType: nuint + fullName: nuint + nameWithType.vb: UIntPtr + fullName.vb: System.UIntPtr + name.vb: UIntPtr +- uid: System.Void* + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.void + name: void* + nameWithType: void* + fullName: void* + nameWithType.vb: Void* + fullName.vb: Void* + name.vb: Void* + spec.csharp: + - uid: System.Void + name: void + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.void + - name: '*' + spec.vb: + - uid: System.Void + name: Void + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.void + - name: '*' +- uid: System + commentId: N:System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System + nameWithType: System + fullName: System diff --git a/api/OpenTK.Windowing.GraphicsLibraryFramework.GLFWallocator.yml b/api/OpenTK.Windowing.GraphicsLibraryFramework.GLFWallocator.yml new file mode 100644 index 00000000..66279b15 --- /dev/null +++ b/api/OpenTK.Windowing.GraphicsLibraryFramework.GLFWallocator.yml @@ -0,0 +1,425 @@ +### YamlMime:ManagedReference +items: +- uid: OpenTK.Windowing.GraphicsLibraryFramework.GLFWallocator + commentId: T:OpenTK.Windowing.GraphicsLibraryFramework.GLFWallocator + id: GLFWallocator + parent: OpenTK.Windowing.GraphicsLibraryFramework + children: + - OpenTK.Windowing.GraphicsLibraryFramework.GLFWallocator.Allocate + - OpenTK.Windowing.GraphicsLibraryFramework.GLFWallocator.Deallocate + - OpenTK.Windowing.GraphicsLibraryFramework.GLFWallocator.Reallocate + - OpenTK.Windowing.GraphicsLibraryFramework.GLFWallocator.User + langs: + - csharp + - vb + name: GLFWallocator + nameWithType: GLFWallocator + fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFWallocator + type: Struct + source: + id: GLFWallocator + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFWCallbacks.cs + startLine: 348 + assemblies: + - OpenTK.Windowing.GraphicsLibraryFramework + namespace: OpenTK.Windowing.GraphicsLibraryFramework + syntax: + content: public struct GLFWallocator + content.vb: Public Structure GLFWallocator + inheritedMembers: + - System.ValueType.Equals(System.Object) + - System.ValueType.GetHashCode + - System.ValueType.ToString + - System.Object.Equals(System.Object,System.Object) + - System.Object.GetType + - System.Object.ReferenceEquals(System.Object,System.Object) +- uid: OpenTK.Windowing.GraphicsLibraryFramework.GLFWallocator.Allocate + commentId: F:OpenTK.Windowing.GraphicsLibraryFramework.GLFWallocator.Allocate + id: Allocate + parent: OpenTK.Windowing.GraphicsLibraryFramework.GLFWallocator + langs: + - csharp + - vb + name: Allocate + nameWithType: GLFWallocator.Allocate + fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFWallocator.Allocate + type: Field + source: + id: Allocate + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFWCallbacks.cs + startLine: 353 + assemblies: + - OpenTK.Windowing.GraphicsLibraryFramework + namespace: OpenTK.Windowing.GraphicsLibraryFramework + summary: The memory allocation function. See for details about allocation function. + example: [] + syntax: + content: public GLFWallocatefun Allocate + return: + type: OpenTK.Windowing.GraphicsLibraryFramework.GLFWallocatefun + content.vb: Public Allocate As GLFWallocatefun +- uid: OpenTK.Windowing.GraphicsLibraryFramework.GLFWallocator.Reallocate + commentId: F:OpenTK.Windowing.GraphicsLibraryFramework.GLFWallocator.Reallocate + id: Reallocate + parent: OpenTK.Windowing.GraphicsLibraryFramework.GLFWallocator + langs: + - csharp + - vb + name: Reallocate + nameWithType: GLFWallocator.Reallocate + fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFWallocator.Reallocate + type: Field + source: + id: Reallocate + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFWCallbacks.cs + startLine: 358 + assemblies: + - OpenTK.Windowing.GraphicsLibraryFramework + namespace: OpenTK.Windowing.GraphicsLibraryFramework + summary: The memory reallocation function. See for details about reallocation function. + example: [] + syntax: + content: public GLFWreallocatefun Reallocate + return: + type: OpenTK.Windowing.GraphicsLibraryFramework.GLFWreallocatefun + content.vb: Public Reallocate As GLFWreallocatefun +- uid: OpenTK.Windowing.GraphicsLibraryFramework.GLFWallocator.Deallocate + commentId: F:OpenTK.Windowing.GraphicsLibraryFramework.GLFWallocator.Deallocate + id: Deallocate + parent: OpenTK.Windowing.GraphicsLibraryFramework.GLFWallocator + langs: + - csharp + - vb + name: Deallocate + nameWithType: GLFWallocator.Deallocate + fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFWallocator.Deallocate + type: Field + source: + id: Deallocate + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFWCallbacks.cs + startLine: 363 + assemblies: + - OpenTK.Windowing.GraphicsLibraryFramework + namespace: OpenTK.Windowing.GraphicsLibraryFramework + summary: The memory deallocation function. See for details about deallocation function. + example: [] + syntax: + content: public GLFWdeallocatefun Deallocate + return: + type: OpenTK.Windowing.GraphicsLibraryFramework.GLFWdeallocatefun + content.vb: Public Deallocate As GLFWdeallocatefun +- uid: OpenTK.Windowing.GraphicsLibraryFramework.GLFWallocator.User + commentId: F:OpenTK.Windowing.GraphicsLibraryFramework.GLFWallocator.User + id: User + parent: OpenTK.Windowing.GraphicsLibraryFramework.GLFWallocator + langs: + - csharp + - vb + name: User + nameWithType: GLFWallocator.User + fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFWallocator.User + type: Field + source: + id: User + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFWCallbacks.cs + startLine: 368 + assemblies: + - OpenTK.Windowing.GraphicsLibraryFramework + namespace: OpenTK.Windowing.GraphicsLibraryFramework + summary: The user pointer for this custom allocator. This value will be passed to the allocator functions. + example: [] + syntax: + content: public void* User + return: + type: System.Void* + content.vb: Public User As Void* +references: +- uid: OpenTK.Windowing.GraphicsLibraryFramework + commentId: N:OpenTK.Windowing.GraphicsLibraryFramework + href: OpenTK.html + name: OpenTK.Windowing.GraphicsLibraryFramework + nameWithType: OpenTK.Windowing.GraphicsLibraryFramework + fullName: OpenTK.Windowing.GraphicsLibraryFramework + spec.csharp: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Windowing + name: Windowing + href: OpenTK.Windowing.html + - name: . + - uid: OpenTK.Windowing.GraphicsLibraryFramework + name: GraphicsLibraryFramework + href: OpenTK.Windowing.GraphicsLibraryFramework.html + spec.vb: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Windowing + name: Windowing + href: OpenTK.Windowing.html + - name: . + - uid: OpenTK.Windowing.GraphicsLibraryFramework + name: GraphicsLibraryFramework + href: OpenTK.Windowing.GraphicsLibraryFramework.html +- uid: System.ValueType.Equals(System.Object) + commentId: M:System.ValueType.Equals(System.Object) + parent: System.ValueType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals + name: Equals(object) + nameWithType: ValueType.Equals(object) + fullName: System.ValueType.Equals(object) + nameWithType.vb: ValueType.Equals(Object) + fullName.vb: System.ValueType.Equals(Object) + name.vb: Equals(Object) + spec.csharp: + - uid: System.ValueType.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.ValueType.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.ValueType.GetHashCode + commentId: M:System.ValueType.GetHashCode + parent: System.ValueType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode + name: GetHashCode() + nameWithType: ValueType.GetHashCode() + fullName: System.ValueType.GetHashCode() + spec.csharp: + - uid: System.ValueType.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode + - name: ( + - name: ) + spec.vb: + - uid: System.ValueType.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode + - name: ( + - name: ) +- uid: System.ValueType.ToString + commentId: M:System.ValueType.ToString + parent: System.ValueType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring + name: ToString() + nameWithType: ValueType.ToString() + fullName: System.ValueType.ToString() + spec.csharp: + - uid: System.ValueType.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring + - name: ( + - name: ) + spec.vb: + - uid: System.ValueType.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring + - name: ( + - name: ) +- uid: System.Object.Equals(System.Object,System.Object) + commentId: M:System.Object.Equals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + name: Equals(object, object) + nameWithType: object.Equals(object, object) + fullName: object.Equals(object, object) + nameWithType.vb: Object.Equals(Object, Object) + fullName.vb: Object.Equals(Object, Object) + name.vb: Equals(Object, Object) + spec.csharp: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.GetType + commentId: M:System.Object.GetType + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + name: GetType() + nameWithType: object.GetType() + fullName: object.GetType() + nameWithType.vb: Object.GetType() + fullName.vb: Object.GetType() + spec.csharp: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) +- uid: System.Object.ReferenceEquals(System.Object,System.Object) + commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + name: ReferenceEquals(object, object) + nameWithType: object.ReferenceEquals(object, object) + fullName: object.ReferenceEquals(object, object) + nameWithType.vb: Object.ReferenceEquals(Object, Object) + fullName.vb: Object.ReferenceEquals(Object, Object) + name.vb: ReferenceEquals(Object, Object) + spec.csharp: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.ValueType + commentId: T:System.ValueType + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.valuetype + name: ValueType + nameWithType: ValueType + fullName: System.ValueType +- uid: System.Object + commentId: T:System.Object + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + name: object + nameWithType: object + fullName: object + nameWithType.vb: Object + fullName.vb: Object + name.vb: Object +- uid: System + commentId: N:System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System + nameWithType: System + fullName: System +- uid: OpenTK.Windowing.GraphicsLibraryFramework.GLFWallocatefun + commentId: T:OpenTK.Windowing.GraphicsLibraryFramework.GLFWallocatefun + parent: OpenTK.Windowing.GraphicsLibraryFramework + href: OpenTK.Windowing.GraphicsLibraryFramework.GLFWallocatefun.html + name: GLFWallocatefun + nameWithType: GLFWallocatefun + fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFWallocatefun +- uid: OpenTK.Windowing.GraphicsLibraryFramework.GLFWreallocatefun + commentId: T:OpenTK.Windowing.GraphicsLibraryFramework.GLFWreallocatefun + parent: OpenTK.Windowing.GraphicsLibraryFramework + href: OpenTK.Windowing.GraphicsLibraryFramework.GLFWreallocatefun.html + name: GLFWreallocatefun + nameWithType: GLFWreallocatefun + fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFWreallocatefun +- uid: OpenTK.Windowing.GraphicsLibraryFramework.GLFWdeallocatefun + commentId: T:OpenTK.Windowing.GraphicsLibraryFramework.GLFWdeallocatefun + parent: OpenTK.Windowing.GraphicsLibraryFramework + href: OpenTK.Windowing.GraphicsLibraryFramework.GLFWdeallocatefun.html + name: GLFWdeallocatefun + nameWithType: GLFWdeallocatefun + fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFWdeallocatefun +- uid: System.Void* + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.void + name: void* + nameWithType: void* + fullName: void* + nameWithType.vb: Void* + fullName.vb: Void* + name.vb: Void* + spec.csharp: + - uid: System.Void + name: void + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.void + - name: '*' + spec.vb: + - uid: System.Void + name: Void + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.void + - name: '*' diff --git a/api/OpenTK.Windowing.GraphicsLibraryFramework.GLFWdeallocatefun.yml b/api/OpenTK.Windowing.GraphicsLibraryFramework.GLFWdeallocatefun.yml new file mode 100644 index 00000000..1ccf28c5 --- /dev/null +++ b/api/OpenTK.Windowing.GraphicsLibraryFramework.GLFWdeallocatefun.yml @@ -0,0 +1,128 @@ +### YamlMime:ManagedReference +items: +- uid: OpenTK.Windowing.GraphicsLibraryFramework.GLFWdeallocatefun + commentId: T:OpenTK.Windowing.GraphicsLibraryFramework.GLFWdeallocatefun + id: GLFWdeallocatefun + parent: OpenTK.Windowing.GraphicsLibraryFramework + children: [] + langs: + - csharp + - vb + name: GLFWdeallocatefun + nameWithType: GLFWdeallocatefun + fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFWdeallocatefun + type: Delegate + source: + id: GLFWdeallocatefun + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFWCallbacks.cs + startLine: 345 + assemblies: + - OpenTK.Windowing.GraphicsLibraryFramework + namespace: OpenTK.Windowing.GraphicsLibraryFramework + summary: >- + The function pointer type for memory deallocation callbacks. + + + This is the function pointer type for memory deallocation callbacks. + + A memory deallocation callback function has the following signature: + + @code + + void function_name(void* block, void* user) + + @endcode + + + This function may deallocate the specified memory block.This memory block + + will have been allocated with the same allocator. + + + This function must support being called during @ref glfwInit but before the library is + + flagged as initialized, as well as during @ref glfwTerminate after the library is no + + longer flagged as initialized. + + + The block address will never be `NULL`. Deallocations of `NULL` are filtered out + + before reaching the custom allocator. + + + If this function returns `NULL`, GLFW will emit @ref GLFW_OUT_OF_MEMORY. + + + This function must not call any GLFW function. + remarks: >- + The specified memory block will not be accessed by GLFW after this function is called. + + + This function should not call any GLFW function. + + + This function must support being called from any thread that calls GLFW functions. + example: [] + syntax: + content: public delegate void GLFWdeallocatefun(void* block, void* user) + parameters: + - id: block + type: System.Void* + description: The address of the memory block to deallocate. + - id: user + type: System.Void* + description: The user-defined pointer from the allocator. + content.vb: Public Delegate Sub GLFWdeallocatefun(block As Void*, user As Void*) +references: +- uid: OpenTK.Windowing.GraphicsLibraryFramework + commentId: N:OpenTK.Windowing.GraphicsLibraryFramework + href: OpenTK.html + name: OpenTK.Windowing.GraphicsLibraryFramework + nameWithType: OpenTK.Windowing.GraphicsLibraryFramework + fullName: OpenTK.Windowing.GraphicsLibraryFramework + spec.csharp: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Windowing + name: Windowing + href: OpenTK.Windowing.html + - name: . + - uid: OpenTK.Windowing.GraphicsLibraryFramework + name: GraphicsLibraryFramework + href: OpenTK.Windowing.GraphicsLibraryFramework.html + spec.vb: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Windowing + name: Windowing + href: OpenTK.Windowing.html + - name: . + - uid: OpenTK.Windowing.GraphicsLibraryFramework + name: GraphicsLibraryFramework + href: OpenTK.Windowing.GraphicsLibraryFramework.html +- uid: System.Void* + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.void + name: void* + nameWithType: void* + fullName: void* + nameWithType.vb: Void* + fullName.vb: Void* + name.vb: Void* + spec.csharp: + - uid: System.Void + name: void + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.void + - name: '*' + spec.vb: + - uid: System.Void + name: Void + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.void + - name: '*' diff --git a/api/OpenTK.Windowing.GraphicsLibraryFramework.GLFWreallocatefun.yml b/api/OpenTK.Windowing.GraphicsLibraryFramework.GLFWreallocatefun.yml new file mode 100644 index 00000000..40d9e32c --- /dev/null +++ b/api/OpenTK.Windowing.GraphicsLibraryFramework.GLFWreallocatefun.yml @@ -0,0 +1,167 @@ +### YamlMime:ManagedReference +items: +- uid: OpenTK.Windowing.GraphicsLibraryFramework.GLFWreallocatefun + commentId: T:OpenTK.Windowing.GraphicsLibraryFramework.GLFWreallocatefun + id: GLFWreallocatefun + parent: OpenTK.Windowing.GraphicsLibraryFramework + children: [] + langs: + - csharp + - vb + name: GLFWreallocatefun + nameWithType: GLFWreallocatefun + fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFWreallocatefun + type: Delegate + source: + id: GLFWreallocatefun + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GLFWCallbacks.cs + startLine: 310 + assemblies: + - OpenTK.Windowing.GraphicsLibraryFramework + namespace: OpenTK.Windowing.GraphicsLibraryFramework + summary: >- + The function pointer type for memory reallocation callbacks. + + + This is the function pointer type for memory reallocation callbacks. + + A memory reallocation callback function has the following signature: + +
void* function_name(void* block, size_t size, void* user)
+ + + This function must return a memory block at least size bytes long, or + + null if allocation failed. Note that not all parts of GLFW handle allocation + + failures gracefully yet. + + + This function must support being called during glfwInit but before the library is + + flagged as initialized, as well as during glfwTerminate after the library is no + + longer flagged as initialized. + + + Any memory allocated via this function will be deallocated via the same allocator + + during library termination or earlier. + + + Any memory allocated via this function must be suitably aligned for any object type. + + If you are using C99 or earlier, this alignment is platform-dependent but will be the + + same as what realloc provides.If you are using C11 or later, this is the value of + + alignof(max_align_t). + + + The block address will never be null and the size will always be greater than zero. + + Reallocations of a block to size zero are converted into deallocations before reaching + + the custom allocator.Reallocations of null to a non-zero size are converted into + + regular allocations before reaching the custom allocator. + + + If this function returns null, GLFW will emit . + + + This function must not call any GLFW function. + remarks: " The returned memory block must be valid at least until it is deallocated.\r\n\r\nThis function should not call any GLFW function.\r\n\r\nThis function must support being called from any thread that calls GLFW functions." + example: [] + syntax: + content: public delegate void* GLFWreallocatefun(void* block, nuint size, void* user) + parameters: + - id: block + type: System.Void* + description: The address of the memory block to reallocate. + - id: size + type: System.UIntPtr + description: The new minimum size, in bytes, of the memory block. + - id: user + type: System.Void* + description: The user-defined pointer from the allocator. + return: + type: System.Void* + description: The address of the newly allocated or resized memory block, or null if an error occurred. + content.vb: Public Delegate Function GLFWreallocatefun(block As Void*, size As UIntPtr, user As Void*) As Void* +references: +- uid: OpenTK.Windowing.GraphicsLibraryFramework.ErrorCode.OutOfMemory + commentId: F:OpenTK.Windowing.GraphicsLibraryFramework.ErrorCode.OutOfMemory + href: OpenTK.Windowing.GraphicsLibraryFramework.ErrorCode.html#OpenTK_Windowing_GraphicsLibraryFramework_ErrorCode_OutOfMemory + name: OutOfMemory + nameWithType: ErrorCode.OutOfMemory + fullName: OpenTK.Windowing.GraphicsLibraryFramework.ErrorCode.OutOfMemory +- uid: OpenTK.Windowing.GraphicsLibraryFramework + commentId: N:OpenTK.Windowing.GraphicsLibraryFramework + href: OpenTK.html + name: OpenTK.Windowing.GraphicsLibraryFramework + nameWithType: OpenTK.Windowing.GraphicsLibraryFramework + fullName: OpenTK.Windowing.GraphicsLibraryFramework + spec.csharp: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Windowing + name: Windowing + href: OpenTK.Windowing.html + - name: . + - uid: OpenTK.Windowing.GraphicsLibraryFramework + name: GraphicsLibraryFramework + href: OpenTK.Windowing.GraphicsLibraryFramework.html + spec.vb: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Windowing + name: Windowing + href: OpenTK.Windowing.html + - name: . + - uid: OpenTK.Windowing.GraphicsLibraryFramework + name: GraphicsLibraryFramework + href: OpenTK.Windowing.GraphicsLibraryFramework.html +- uid: System.Void* + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.void + name: void* + nameWithType: void* + fullName: void* + nameWithType.vb: Void* + fullName.vb: Void* + name.vb: Void* + spec.csharp: + - uid: System.Void + name: void + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.void + - name: '*' + spec.vb: + - uid: System.Void + name: Void + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.void + - name: '*' +- uid: System.UIntPtr + commentId: T:System.UIntPtr + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.uintptr + name: nuint + nameWithType: nuint + fullName: nuint + nameWithType.vb: UIntPtr + fullName.vb: System.UIntPtr + name.vb: UIntPtr +- uid: System + commentId: N:System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System + nameWithType: System + fullName: System diff --git a/api/OpenTK.Windowing.GraphicsLibraryFramework.GamepadState.yml b/api/OpenTK.Windowing.GraphicsLibraryFramework.GamepadState.yml index 43fb6aac..2995e61c 100644 --- a/api/OpenTK.Windowing.GraphicsLibraryFramework.GamepadState.yml +++ b/api/OpenTK.Windowing.GraphicsLibraryFramework.GamepadState.yml @@ -15,12 +15,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GamepadState type: Struct source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Input/GamepadState.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GamepadState - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Input/GamepadState.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Input\GamepadState.cs startLine: 14 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -49,12 +45,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GamepadState.Buttons type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Input/GamepadState.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Buttons - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Input/GamepadState.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Input\GamepadState.cs startLine: 19 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -78,12 +70,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GamepadState.Axes type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Input/GamepadState.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Axes - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Input/GamepadState.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Input\GamepadState.cs startLine: 24 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework diff --git a/api/OpenTK.Windowing.GraphicsLibraryFramework.GammaRamp.yml b/api/OpenTK.Windowing.GraphicsLibraryFramework.GammaRamp.yml index 0cf2a1d6..eb79f047 100644 --- a/api/OpenTK.Windowing.GraphicsLibraryFramework.GammaRamp.yml +++ b/api/OpenTK.Windowing.GraphicsLibraryFramework.GammaRamp.yml @@ -17,12 +17,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GammaRamp type: Struct source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GammaRamp.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GammaRamp - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GammaRamp.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GammaRamp.cs startLine: 14 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -51,12 +47,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GammaRamp.Red type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GammaRamp.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Red - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GammaRamp.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GammaRamp.cs startLine: 19 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -80,12 +72,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GammaRamp.Green type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GammaRamp.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Green - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GammaRamp.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GammaRamp.cs startLine: 24 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -109,12 +97,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GammaRamp.Blue type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GammaRamp.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Blue - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GammaRamp.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GammaRamp.cs startLine: 29 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -138,12 +122,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.GammaRamp.Size type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/GammaRamp.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Size - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/GammaRamp.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\GammaRamp.cs startLine: 34 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework diff --git a/api/OpenTK.Windowing.GraphicsLibraryFramework.Image.yml b/api/OpenTK.Windowing.GraphicsLibraryFramework.Image.yml index aebc1568..c5a8a2c4 100644 --- a/api/OpenTK.Windowing.GraphicsLibraryFramework.Image.yml +++ b/api/OpenTK.Windowing.GraphicsLibraryFramework.Image.yml @@ -17,12 +17,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.Image type: Struct source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Image.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Image - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Image.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Image.cs startLine: 17 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -51,12 +47,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.Image.Image(int, int, byte*) type: Constructor source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Image.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Image.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Image.cs startLine: 26 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -92,12 +84,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.Image.Width type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Image.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Width - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Image.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Image.cs startLine: 36 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -121,12 +109,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.Image.Height type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Image.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Height - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Image.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Image.cs startLine: 41 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -150,12 +134,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.Image.Pixels type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Image.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Pixels - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Image.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Image.cs startLine: 46 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework diff --git a/api/OpenTK.Windowing.GraphicsLibraryFramework.InitHintANGLEPlatformType.yml b/api/OpenTK.Windowing.GraphicsLibraryFramework.InitHintANGLEPlatformType.yml new file mode 100644 index 00000000..28a13cb1 --- /dev/null +++ b/api/OpenTK.Windowing.GraphicsLibraryFramework.InitHintANGLEPlatformType.yml @@ -0,0 +1,139 @@ +### YamlMime:ManagedReference +items: +- uid: OpenTK.Windowing.GraphicsLibraryFramework.InitHintANGLEPlatformType + commentId: T:OpenTK.Windowing.GraphicsLibraryFramework.InitHintANGLEPlatformType + id: InitHintANGLEPlatformType + parent: OpenTK.Windowing.GraphicsLibraryFramework + children: + - OpenTK.Windowing.GraphicsLibraryFramework.InitHintANGLEPlatformType.ANGLEPlatformType + langs: + - csharp + - vb + name: InitHintANGLEPlatformType + nameWithType: InitHintANGLEPlatformType + fullName: OpenTK.Windowing.GraphicsLibraryFramework.InitHintANGLEPlatformType + type: Enum + source: + id: InitHintANGLEPlatformType + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\InitHintANGLEPlatformType.cs + startLine: 6 + assemblies: + - OpenTK.Windowing.GraphicsLibraryFramework + namespace: OpenTK.Windowing.GraphicsLibraryFramework + syntax: + content: public enum InitHintANGLEPlatformType + content.vb: Public Enum InitHintANGLEPlatformType +- uid: OpenTK.Windowing.GraphicsLibraryFramework.InitHintANGLEPlatformType.ANGLEPlatformType + commentId: F:OpenTK.Windowing.GraphicsLibraryFramework.InitHintANGLEPlatformType.ANGLEPlatformType + id: ANGLEPlatformType + parent: OpenTK.Windowing.GraphicsLibraryFramework.InitHintANGLEPlatformType + langs: + - csharp + - vb + name: ANGLEPlatformType + nameWithType: InitHintANGLEPlatformType.ANGLEPlatformType + fullName: OpenTK.Windowing.GraphicsLibraryFramework.InitHintANGLEPlatformType.ANGLEPlatformType + type: Field + source: + id: ANGLEPlatformType + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\InitHintANGLEPlatformType.cs + startLine: 16 + assemblies: + - OpenTK.Windowing.GraphicsLibraryFramework + namespace: OpenTK.Windowing.GraphicsLibraryFramework + summary: >- + Specifies the platform type (rendering backend) to request when using OpenGL ES and EGL via ANGLE. + + If the requested platform type is unavailable, ANGLE will use its default. + + Possible values are one of , , , , , and . + + + The ANGLE platform type is specified via the EGL_ANGLE_platform_angle extension. + + This extension is not used if this hint is GLFW_ANGLE_PLATFORM_TYPE_NONE, which is the default value. + example: [] + syntax: + content: ANGLEPlatformType = 327682 + return: + type: OpenTK.Windowing.GraphicsLibraryFramework.InitHintANGLEPlatformType +references: +- uid: OpenTK.Windowing.GraphicsLibraryFramework + commentId: N:OpenTK.Windowing.GraphicsLibraryFramework + href: OpenTK.html + name: OpenTK.Windowing.GraphicsLibraryFramework + nameWithType: OpenTK.Windowing.GraphicsLibraryFramework + fullName: OpenTK.Windowing.GraphicsLibraryFramework + spec.csharp: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Windowing + name: Windowing + href: OpenTK.Windowing.html + - name: . + - uid: OpenTK.Windowing.GraphicsLibraryFramework + name: GraphicsLibraryFramework + href: OpenTK.Windowing.GraphicsLibraryFramework.html + spec.vb: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Windowing + name: Windowing + href: OpenTK.Windowing.html + - name: . + - uid: OpenTK.Windowing.GraphicsLibraryFramework + name: GraphicsLibraryFramework + href: OpenTK.Windowing.GraphicsLibraryFramework.html +- uid: OpenTK.Windowing.GraphicsLibraryFramework.ANGLEPlatformType.None + commentId: F:OpenTK.Windowing.GraphicsLibraryFramework.ANGLEPlatformType.None + href: OpenTK.Windowing.GraphicsLibraryFramework.ANGLEPlatformType.html#OpenTK_Windowing_GraphicsLibraryFramework_ANGLEPlatformType_None + name: None + nameWithType: ANGLEPlatformType.None + fullName: OpenTK.Windowing.GraphicsLibraryFramework.ANGLEPlatformType.None +- uid: OpenTK.Windowing.GraphicsLibraryFramework.ANGLEPlatformType.OpenGL + commentId: F:OpenTK.Windowing.GraphicsLibraryFramework.ANGLEPlatformType.OpenGL + href: OpenTK.Windowing.GraphicsLibraryFramework.ANGLEPlatformType.html#OpenTK_Windowing_GraphicsLibraryFramework_ANGLEPlatformType_OpenGL + name: OpenGL + nameWithType: ANGLEPlatformType.OpenGL + fullName: OpenTK.Windowing.GraphicsLibraryFramework.ANGLEPlatformType.OpenGL +- uid: OpenTK.Windowing.GraphicsLibraryFramework.ANGLEPlatformType.OpenGLES + commentId: F:OpenTK.Windowing.GraphicsLibraryFramework.ANGLEPlatformType.OpenGLES + href: OpenTK.Windowing.GraphicsLibraryFramework.ANGLEPlatformType.html#OpenTK_Windowing_GraphicsLibraryFramework_ANGLEPlatformType_OpenGLES + name: OpenGLES + nameWithType: ANGLEPlatformType.OpenGLES + fullName: OpenTK.Windowing.GraphicsLibraryFramework.ANGLEPlatformType.OpenGLES +- uid: OpenTK.Windowing.GraphicsLibraryFramework.ANGLEPlatformType.D3D9 + commentId: F:OpenTK.Windowing.GraphicsLibraryFramework.ANGLEPlatformType.D3D9 + href: OpenTK.Windowing.GraphicsLibraryFramework.ANGLEPlatformType.html#OpenTK_Windowing_GraphicsLibraryFramework_ANGLEPlatformType_D3D9 + name: D3D9 + nameWithType: ANGLEPlatformType.D3D9 + fullName: OpenTK.Windowing.GraphicsLibraryFramework.ANGLEPlatformType.D3D9 +- uid: OpenTK.Windowing.GraphicsLibraryFramework.ANGLEPlatformType.D3D11 + commentId: F:OpenTK.Windowing.GraphicsLibraryFramework.ANGLEPlatformType.D3D11 + href: OpenTK.Windowing.GraphicsLibraryFramework.ANGLEPlatformType.html#OpenTK_Windowing_GraphicsLibraryFramework_ANGLEPlatformType_D3D11 + name: D3D11 + nameWithType: ANGLEPlatformType.D3D11 + fullName: OpenTK.Windowing.GraphicsLibraryFramework.ANGLEPlatformType.D3D11 +- uid: OpenTK.Windowing.GraphicsLibraryFramework.ANGLEPlatformType.Vulkan + commentId: F:OpenTK.Windowing.GraphicsLibraryFramework.ANGLEPlatformType.Vulkan + href: OpenTK.Windowing.GraphicsLibraryFramework.ANGLEPlatformType.html#OpenTK_Windowing_GraphicsLibraryFramework_ANGLEPlatformType_Vulkan + name: Vulkan + nameWithType: ANGLEPlatformType.Vulkan + fullName: OpenTK.Windowing.GraphicsLibraryFramework.ANGLEPlatformType.Vulkan +- uid: OpenTK.Windowing.GraphicsLibraryFramework.ANGLEPlatformType.Metal + commentId: F:OpenTK.Windowing.GraphicsLibraryFramework.ANGLEPlatformType.Metal + href: OpenTK.Windowing.GraphicsLibraryFramework.ANGLEPlatformType.html#OpenTK_Windowing_GraphicsLibraryFramework_ANGLEPlatformType_Metal + name: Metal + nameWithType: ANGLEPlatformType.Metal + fullName: OpenTK.Windowing.GraphicsLibraryFramework.ANGLEPlatformType.Metal +- uid: OpenTK.Windowing.GraphicsLibraryFramework.InitHintANGLEPlatformType + commentId: T:OpenTK.Windowing.GraphicsLibraryFramework.InitHintANGLEPlatformType + parent: OpenTK.Windowing.GraphicsLibraryFramework + href: OpenTK.Windowing.GraphicsLibraryFramework.InitHintANGLEPlatformType.html + name: InitHintANGLEPlatformType + nameWithType: InitHintANGLEPlatformType + fullName: OpenTK.Windowing.GraphicsLibraryFramework.InitHintANGLEPlatformType diff --git a/api/OpenTK.Windowing.GraphicsLibraryFramework.InitHintBool.yml b/api/OpenTK.Windowing.GraphicsLibraryFramework.InitHintBool.yml index f46b8273..596f0faa 100644 --- a/api/OpenTK.Windowing.GraphicsLibraryFramework.InitHintBool.yml +++ b/api/OpenTK.Windowing.GraphicsLibraryFramework.InitHintBool.yml @@ -8,6 +8,7 @@ items: - OpenTK.Windowing.GraphicsLibraryFramework.InitHintBool.CocoaChdirResources - OpenTK.Windowing.GraphicsLibraryFramework.InitHintBool.CocoaMenubar - OpenTK.Windowing.GraphicsLibraryFramework.InitHintBool.JoystickHatButtons + - OpenTK.Windowing.GraphicsLibraryFramework.InitHintBool.X11XcbVulkanSurface langs: - csharp - vb @@ -16,12 +17,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.InitHintBool type: Enum source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/InitHintBool.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: InitHintBool - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/InitHintBool.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\InitHintBool.cs startLine: 15 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -46,12 +43,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.InitHintBool.JoystickHatButtons type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/InitHintBool.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: JoystickHatButtons - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/InitHintBool.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\InitHintBool.cs startLine: 23 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -81,12 +74,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.InitHintBool.CocoaChdirResources type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/InitHintBool.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CocoaChdirResources - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/InitHintBool.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\InitHintBool.cs startLine: 33 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -115,12 +104,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.InitHintBool.CocoaMenubar type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/InitHintBool.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CocoaMenubar - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/InitHintBool.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\InitHintBool.cs startLine: 43 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -137,6 +122,37 @@ items: content: CocoaMenubar = 331778 return: type: OpenTK.Windowing.GraphicsLibraryFramework.InitHintBool +- uid: OpenTK.Windowing.GraphicsLibraryFramework.InitHintBool.X11XcbVulkanSurface + commentId: F:OpenTK.Windowing.GraphicsLibraryFramework.InitHintBool.X11XcbVulkanSurface + id: X11XcbVulkanSurface + parent: OpenTK.Windowing.GraphicsLibraryFramework.InitHintBool + langs: + - csharp + - vb + name: X11XcbVulkanSurface + nameWithType: InitHintBool.X11XcbVulkanSurface + fullName: OpenTK.Windowing.GraphicsLibraryFramework.InitHintBool.X11XcbVulkanSurface + type: Field + source: + id: X11XcbVulkanSurface + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\InitHintBool.cs + startLine: 51 + assemblies: + - OpenTK.Windowing.GraphicsLibraryFramework + namespace: OpenTK.Windowing.GraphicsLibraryFramework + summary: >- + Specifies whether to prefer the VK_KHR_xcb_surface extension for creating Vulkan surfaces, + + or whether to use the VK_KHR_xlib_surface extension. + + Possible values are GLFW_TRUE and GLFW_FALSE. + + This is ignored on other platforms. + example: [] + syntax: + content: X11XcbVulkanSurface = 335873 + return: + type: OpenTK.Windowing.GraphicsLibraryFramework.InitHintBool references: - uid: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.Init commentId: M:OpenTK.Windowing.GraphicsLibraryFramework.GLFW.Init diff --git a/api/OpenTK.Windowing.GraphicsLibraryFramework.InitHintInt.yml b/api/OpenTK.Windowing.GraphicsLibraryFramework.InitHintInt.yml index 6785a4bd..ce5ee32b 100644 --- a/api/OpenTK.Windowing.GraphicsLibraryFramework.InitHintInt.yml +++ b/api/OpenTK.Windowing.GraphicsLibraryFramework.InitHintInt.yml @@ -4,7 +4,8 @@ items: commentId: T:OpenTK.Windowing.GraphicsLibraryFramework.InitHintInt id: InitHintInt parent: OpenTK.Windowing.GraphicsLibraryFramework - children: [] + children: + - OpenTK.Windowing.GraphicsLibraryFramework.InitHintInt.WaylandLibDecor langs: - csharp - vb @@ -13,12 +14,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.InitHintInt type: Enum source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/InitHintInt.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: InitHintInt - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/InitHintInt.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\InitHintInt.cs startLine: 11 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -37,6 +34,33 @@ items: syntax: content: public enum InitHintInt content.vb: Public Enum InitHintInt +- uid: OpenTK.Windowing.GraphicsLibraryFramework.InitHintInt.WaylandLibDecor + commentId: F:OpenTK.Windowing.GraphicsLibraryFramework.InitHintInt.WaylandLibDecor + id: WaylandLibDecor + parent: OpenTK.Windowing.GraphicsLibraryFramework.InitHintInt + langs: + - csharp + - vb + name: WaylandLibDecor + nameWithType: InitHintInt.WaylandLibDecor + fullName: OpenTK.Windowing.GraphicsLibraryFramework.InitHintInt.WaylandLibDecor + type: Field + source: + id: WaylandLibDecor + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\InitHintInt.cs + startLine: 17 + assemblies: + - OpenTK.Windowing.GraphicsLibraryFramework + namespace: OpenTK.Windowing.GraphicsLibraryFramework + summary: >- + Specifies whether to use libdecor for window decorations where available. + + Possible values are and . This is ignored on other platforms. + example: [] + syntax: + content: WaylandLibDecor = 339969 + return: + type: OpenTK.Windowing.GraphicsLibraryFramework.InitHintInt references: - uid: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.Init commentId: M:OpenTK.Windowing.GraphicsLibraryFramework.GLFW.Init @@ -126,3 +150,22 @@ references: - uid: OpenTK.Windowing.GraphicsLibraryFramework name: GraphicsLibraryFramework href: OpenTK.Windowing.GraphicsLibraryFramework.html +- uid: OpenTK.Windowing.GraphicsLibraryFramework.WaylandLibDecor.PreferLibDecor + commentId: F:OpenTK.Windowing.GraphicsLibraryFramework.WaylandLibDecor.PreferLibDecor + href: OpenTK.Windowing.GraphicsLibraryFramework.WaylandLibDecor.html#OpenTK_Windowing_GraphicsLibraryFramework_WaylandLibDecor_PreferLibDecor + name: PreferLibDecor + nameWithType: WaylandLibDecor.PreferLibDecor + fullName: OpenTK.Windowing.GraphicsLibraryFramework.WaylandLibDecor.PreferLibDecor +- uid: OpenTK.Windowing.GraphicsLibraryFramework.WaylandLibDecor.DisableLibDecor + commentId: F:OpenTK.Windowing.GraphicsLibraryFramework.WaylandLibDecor.DisableLibDecor + href: OpenTK.Windowing.GraphicsLibraryFramework.WaylandLibDecor.html#OpenTK_Windowing_GraphicsLibraryFramework_WaylandLibDecor_DisableLibDecor + name: DisableLibDecor + nameWithType: WaylandLibDecor.DisableLibDecor + fullName: OpenTK.Windowing.GraphicsLibraryFramework.WaylandLibDecor.DisableLibDecor +- uid: OpenTK.Windowing.GraphicsLibraryFramework.InitHintInt + commentId: T:OpenTK.Windowing.GraphicsLibraryFramework.InitHintInt + parent: OpenTK.Windowing.GraphicsLibraryFramework + href: OpenTK.Windowing.GraphicsLibraryFramework.InitHintInt.html + name: InitHintInt + nameWithType: InitHintInt + fullName: OpenTK.Windowing.GraphicsLibraryFramework.InitHintInt diff --git a/api/OpenTK.Windowing.GraphicsLibraryFramework.InitHintPlatform.yml b/api/OpenTK.Windowing.GraphicsLibraryFramework.InitHintPlatform.yml new file mode 100644 index 00000000..9a78dfd6 --- /dev/null +++ b/api/OpenTK.Windowing.GraphicsLibraryFramework.InitHintPlatform.yml @@ -0,0 +1,128 @@ +### YamlMime:ManagedReference +items: +- uid: OpenTK.Windowing.GraphicsLibraryFramework.InitHintPlatform + commentId: T:OpenTK.Windowing.GraphicsLibraryFramework.InitHintPlatform + id: InitHintPlatform + parent: OpenTK.Windowing.GraphicsLibraryFramework + children: + - OpenTK.Windowing.GraphicsLibraryFramework.InitHintPlatform.Platform + langs: + - csharp + - vb + name: InitHintPlatform + nameWithType: InitHintPlatform + fullName: OpenTK.Windowing.GraphicsLibraryFramework.InitHintPlatform + type: Enum + source: + id: InitHintPlatform + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\InitHintPlatform.cs + startLine: 6 + assemblies: + - OpenTK.Windowing.GraphicsLibraryFramework + namespace: OpenTK.Windowing.GraphicsLibraryFramework + syntax: + content: public enum InitHintPlatform + content.vb: Public Enum InitHintPlatform +- uid: OpenTK.Windowing.GraphicsLibraryFramework.InitHintPlatform.Platform + commentId: F:OpenTK.Windowing.GraphicsLibraryFramework.InitHintPlatform.Platform + id: Platform + parent: OpenTK.Windowing.GraphicsLibraryFramework.InitHintPlatform + langs: + - csharp + - vb + name: Platform + nameWithType: InitHintPlatform.Platform + fullName: OpenTK.Windowing.GraphicsLibraryFramework.InitHintPlatform.Platform + type: Field + source: + id: Platform + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\InitHintPlatform.cs + startLine: 13 + assemblies: + - OpenTK.Windowing.GraphicsLibraryFramework + namespace: OpenTK.Windowing.GraphicsLibraryFramework + summary: >- + Use to specify the platform to use for windowing and input. + + Possible values are , , , , and . + + The default value is , which will choose any platform the library includes support for except for the Null backend. + example: [] + syntax: + content: Platform = 327683 + return: + type: OpenTK.Windowing.GraphicsLibraryFramework.InitHintPlatform +references: +- uid: OpenTK.Windowing.GraphicsLibraryFramework + commentId: N:OpenTK.Windowing.GraphicsLibraryFramework + href: OpenTK.html + name: OpenTK.Windowing.GraphicsLibraryFramework + nameWithType: OpenTK.Windowing.GraphicsLibraryFramework + fullName: OpenTK.Windowing.GraphicsLibraryFramework + spec.csharp: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Windowing + name: Windowing + href: OpenTK.Windowing.html + - name: . + - uid: OpenTK.Windowing.GraphicsLibraryFramework + name: GraphicsLibraryFramework + href: OpenTK.Windowing.GraphicsLibraryFramework.html + spec.vb: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Windowing + name: Windowing + href: OpenTK.Windowing.html + - name: . + - uid: OpenTK.Windowing.GraphicsLibraryFramework + name: GraphicsLibraryFramework + href: OpenTK.Windowing.GraphicsLibraryFramework.html +- uid: OpenTK.Windowing.GraphicsLibraryFramework.Platform.Any + commentId: F:OpenTK.Windowing.GraphicsLibraryFramework.Platform.Any + href: OpenTK.Windowing.GraphicsLibraryFramework.Platform.html#OpenTK_Windowing_GraphicsLibraryFramework_Platform_Any + name: Any + nameWithType: Platform.Any + fullName: OpenTK.Windowing.GraphicsLibraryFramework.Platform.Any +- uid: OpenTK.Windowing.GraphicsLibraryFramework.Platform.Win32 + commentId: F:OpenTK.Windowing.GraphicsLibraryFramework.Platform.Win32 + href: OpenTK.Windowing.GraphicsLibraryFramework.Platform.html#OpenTK_Windowing_GraphicsLibraryFramework_Platform_Win32 + name: Win32 + nameWithType: Platform.Win32 + fullName: OpenTK.Windowing.GraphicsLibraryFramework.Platform.Win32 +- uid: OpenTK.Windowing.GraphicsLibraryFramework.Platform.Cocoa + commentId: F:OpenTK.Windowing.GraphicsLibraryFramework.Platform.Cocoa + href: OpenTK.Windowing.GraphicsLibraryFramework.Platform.html#OpenTK_Windowing_GraphicsLibraryFramework_Platform_Cocoa + name: Cocoa + nameWithType: Platform.Cocoa + fullName: OpenTK.Windowing.GraphicsLibraryFramework.Platform.Cocoa +- uid: OpenTK.Windowing.GraphicsLibraryFramework.Platform.Wayland + commentId: F:OpenTK.Windowing.GraphicsLibraryFramework.Platform.Wayland + href: OpenTK.Windowing.GraphicsLibraryFramework.Platform.html#OpenTK_Windowing_GraphicsLibraryFramework_Platform_Wayland + name: Wayland + nameWithType: Platform.Wayland + fullName: OpenTK.Windowing.GraphicsLibraryFramework.Platform.Wayland +- uid: OpenTK.Windowing.GraphicsLibraryFramework.Platform.X11 + commentId: F:OpenTK.Windowing.GraphicsLibraryFramework.Platform.X11 + href: OpenTK.Windowing.GraphicsLibraryFramework.Platform.html#OpenTK_Windowing_GraphicsLibraryFramework_Platform_X11 + name: X11 + nameWithType: Platform.X11 + fullName: OpenTK.Windowing.GraphicsLibraryFramework.Platform.X11 +- uid: OpenTK.Windowing.GraphicsLibraryFramework.Platform.Null + commentId: F:OpenTK.Windowing.GraphicsLibraryFramework.Platform.Null + href: OpenTK.Windowing.GraphicsLibraryFramework.Platform.html#OpenTK_Windowing_GraphicsLibraryFramework_Platform_Null + name: "Null" + nameWithType: Platform.Null + fullName: OpenTK.Windowing.GraphicsLibraryFramework.Platform.Null +- uid: OpenTK.Windowing.GraphicsLibraryFramework.InitHintPlatform + commentId: T:OpenTK.Windowing.GraphicsLibraryFramework.InitHintPlatform + parent: OpenTK.Windowing.GraphicsLibraryFramework + href: OpenTK.Windowing.GraphicsLibraryFramework.InitHintPlatform.html + name: InitHintPlatform + nameWithType: InitHintPlatform + fullName: OpenTK.Windowing.GraphicsLibraryFramework.InitHintPlatform diff --git a/api/OpenTK.Windowing.GraphicsLibraryFramework.InputAction.yml b/api/OpenTK.Windowing.GraphicsLibraryFramework.InputAction.yml index eed7d97e..0d7f1f4d 100644 --- a/api/OpenTK.Windowing.GraphicsLibraryFramework.InputAction.yml +++ b/api/OpenTK.Windowing.GraphicsLibraryFramework.InputAction.yml @@ -16,12 +16,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.InputAction type: Enum source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/InputAction.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: InputAction - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/InputAction.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\InputAction.cs startLine: 15 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -46,12 +42,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.InputAction.Release type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/InputAction.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Release - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/InputAction.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\InputAction.cs startLine: 20 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -74,12 +66,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.InputAction.Press type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/InputAction.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Press - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/InputAction.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\InputAction.cs startLine: 25 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -102,12 +90,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.InputAction.Repeat type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/InputAction.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Repeat - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/InputAction.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\InputAction.cs startLine: 30 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework diff --git a/api/OpenTK.Windowing.GraphicsLibraryFramework.JoystickHats.yml b/api/OpenTK.Windowing.GraphicsLibraryFramework.JoystickHats.yml index 98323b46..503073a6 100644 --- a/api/OpenTK.Windowing.GraphicsLibraryFramework.JoystickHats.yml +++ b/api/OpenTK.Windowing.GraphicsLibraryFramework.JoystickHats.yml @@ -22,12 +22,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.JoystickHats type: Enum source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/JoystickHats.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: JoystickHats - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/JoystickHats.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\JoystickHats.cs startLine: 5 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -49,12 +45,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.JoystickHats.Centered type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/JoystickHats.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Centered - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/JoystickHats.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\JoystickHats.cs startLine: 10 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -77,12 +69,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.JoystickHats.Up type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/JoystickHats.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Up - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/JoystickHats.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\JoystickHats.cs startLine: 15 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -105,12 +93,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.JoystickHats.Right type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/JoystickHats.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Right - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/JoystickHats.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\JoystickHats.cs startLine: 20 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -133,12 +117,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.JoystickHats.Down type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/JoystickHats.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Down - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/JoystickHats.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\JoystickHats.cs startLine: 25 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -161,12 +141,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.JoystickHats.Left type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/JoystickHats.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Left - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/JoystickHats.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\JoystickHats.cs startLine: 30 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -189,12 +165,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.JoystickHats.RightUp type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/JoystickHats.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: RightUp - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/JoystickHats.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\JoystickHats.cs startLine: 35 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -217,12 +189,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.JoystickHats.RightDown type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/JoystickHats.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: RightDown - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/JoystickHats.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\JoystickHats.cs startLine: 40 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -245,12 +213,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.JoystickHats.LeftUp type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/JoystickHats.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: LeftUp - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/JoystickHats.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\JoystickHats.cs startLine: 45 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -273,12 +237,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.JoystickHats.LeftDown type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/JoystickHats.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: LeftDown - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/JoystickHats.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\JoystickHats.cs startLine: 50 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework diff --git a/api/OpenTK.Windowing.GraphicsLibraryFramework.JoystickInputAction.yml b/api/OpenTK.Windowing.GraphicsLibraryFramework.JoystickInputAction.yml index 1e57cb0d..61c92c6f 100644 --- a/api/OpenTK.Windowing.GraphicsLibraryFramework.JoystickInputAction.yml +++ b/api/OpenTK.Windowing.GraphicsLibraryFramework.JoystickInputAction.yml @@ -15,12 +15,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.JoystickInputAction type: Enum source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/JoystickInputAction.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: JoystickInputAction - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/JoystickInputAction.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\JoystickInputAction.cs startLine: 14 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -42,12 +38,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.JoystickInputAction.Release type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/JoystickInputAction.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Release - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/JoystickInputAction.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\JoystickInputAction.cs startLine: 19 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -70,12 +62,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.JoystickInputAction.Press type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/JoystickInputAction.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Press - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/JoystickInputAction.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\JoystickInputAction.cs startLine: 24 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework diff --git a/api/OpenTK.Windowing.GraphicsLibraryFramework.JoystickState.yml b/api/OpenTK.Windowing.GraphicsLibraryFramework.JoystickState.yml index 1de74705..87c982c0 100644 --- a/api/OpenTK.Windowing.GraphicsLibraryFramework.JoystickState.yml +++ b/api/OpenTK.Windowing.GraphicsLibraryFramework.JoystickState.yml @@ -28,12 +28,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.JoystickState type: Class source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Input/JoystickState.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: JoystickState - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Input/JoystickState.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Input\JoystickState.cs startLine: 25 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -64,12 +60,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.JoystickState.Id type: Property source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Input/JoystickState.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Id - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Input/JoystickState.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Input\JoystickState.cs startLine: 38 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -95,12 +87,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.JoystickState.Name type: Property source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Input/JoystickState.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Name - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Input/JoystickState.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Input\JoystickState.cs startLine: 43 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -126,12 +114,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.JoystickState.ButtonCount type: Property source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Input/JoystickState.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ButtonCount - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Input/JoystickState.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Input\JoystickState.cs startLine: 48 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -157,12 +141,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.JoystickState.AxisCount type: Property source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Input/JoystickState.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: AxisCount - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Input/JoystickState.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Input\JoystickState.cs startLine: 53 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -188,12 +168,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.JoystickState.HatCount type: Property source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Input/JoystickState.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: HatCount - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Input/JoystickState.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Input\JoystickState.cs startLine: 58 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -219,12 +195,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.JoystickState.GetHat(int) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Input/JoystickState.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetHat - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Input/JoystickState.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Input\JoystickState.cs startLine: 96 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -257,12 +229,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.JoystickState.GetHatPrevious(int) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Input/JoystickState.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetHatPrevious - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Input/JoystickState.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Input\JoystickState.cs startLine: 107 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -295,12 +263,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.JoystickState.IsButtonDown(int) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Input/JoystickState.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: IsButtonDown - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Input/JoystickState.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Input\JoystickState.cs startLine: 124 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -333,12 +297,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.JoystickState.WasButtonDown(int) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Input/JoystickState.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: WasButtonDown - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Input/JoystickState.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Input\JoystickState.cs startLine: 135 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -371,18 +331,14 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.JoystickState.IsButtonPressed(int) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Input/JoystickState.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: IsButtonPressed - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Input/JoystickState.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Input\JoystickState.cs startLine: 149 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework summary: Gets a describing whether the specified button is down in the current frame but was up in the previous frame. - remarks: "\"Frame\" refers to invocations of NativeWindow.ProcessEvents() here." + remarks: "\"Frame\" refers to invocations of NativeWindow.ProcessEvents(double) (NativeWindow.ProcessInputEvents() more precisely) here." example: [] syntax: content: public bool IsButtonPressed(int index) @@ -410,18 +366,14 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.JoystickState.IsButtonReleased(int) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Input/JoystickState.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: IsButtonReleased - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Input/JoystickState.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Input\JoystickState.cs startLine: 163 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework summary: Gets a describing whether the specified button is up in the current frame but was down in the previous frame. - remarks: "\"Frame\" refers to invocations of NativeWindow.ProcessEvents() here." + remarks: "\"Frame\" refers to invocations of NativeWindow.ProcessEvents(double) (NativeWindow.ProcessInputEvents() more precisely) here." example: [] syntax: content: public bool IsButtonReleased(int index) @@ -449,12 +401,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.JoystickState.GetAxis(int) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Input/JoystickState.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetAxis - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Input/JoystickState.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Input\JoystickState.cs startLine: 180 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -487,12 +435,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.JoystickState.GetAxisPrevious(int) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Input/JoystickState.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetAxisPrevious - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Input/JoystickState.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Input\JoystickState.cs startLine: 191 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -525,12 +469,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.JoystickState.ToString() type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Input/JoystickState.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Input/JoystickState.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Input\JoystickState.cs startLine: 208 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -557,12 +497,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.JoystickState.GetSnapshot() type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Input/JoystickState.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetSnapshot - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Input/JoystickState.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Input\JoystickState.cs startLine: 271 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework diff --git a/api/OpenTK.Windowing.GraphicsLibraryFramework.KeyModifiers.yml b/api/OpenTK.Windowing.GraphicsLibraryFramework.KeyModifiers.yml index b129ec08..ec04cc01 100644 --- a/api/OpenTK.Windowing.GraphicsLibraryFramework.KeyModifiers.yml +++ b/api/OpenTK.Windowing.GraphicsLibraryFramework.KeyModifiers.yml @@ -19,12 +19,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.KeyModifiers type: Enum source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/KeyModifiers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: KeyModifiers - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/KeyModifiers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\KeyModifiers.cs startLine: 16 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -56,12 +52,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.KeyModifiers.Shift type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/KeyModifiers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Shift - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/KeyModifiers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\KeyModifiers.cs startLine: 22 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -84,12 +76,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.KeyModifiers.Control type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/KeyModifiers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Control - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/KeyModifiers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\KeyModifiers.cs startLine: 27 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -112,12 +100,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.KeyModifiers.Alt type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/KeyModifiers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Alt - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/KeyModifiers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\KeyModifiers.cs startLine: 32 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -140,12 +124,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.KeyModifiers.Super type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/KeyModifiers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Super - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/KeyModifiers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\KeyModifiers.cs startLine: 37 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -168,12 +148,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.KeyModifiers.CapsLock type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/KeyModifiers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CapsLock - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/KeyModifiers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\KeyModifiers.cs startLine: 42 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -196,12 +172,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.KeyModifiers.NumLock type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/KeyModifiers.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: NumLock - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/KeyModifiers.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\KeyModifiers.cs startLine: 47 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework diff --git a/api/OpenTK.Windowing.GraphicsLibraryFramework.KeyboardState.yml b/api/OpenTK.Windowing.GraphicsLibraryFramework.KeyboardState.yml index a0518aac..0492223b 100644 --- a/api/OpenTK.Windowing.GraphicsLibraryFramework.KeyboardState.yml +++ b/api/OpenTK.Windowing.GraphicsLibraryFramework.KeyboardState.yml @@ -21,12 +21,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.KeyboardState type: Class source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Input/KeyboardState.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: KeyboardState - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Input/KeyboardState.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Input\KeyboardState.cs startLine: 22 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -57,12 +53,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.KeyboardState.this[OpenTK.Windowing.GraphicsLibraryFramework.Keys] type: Property source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Input/KeyboardState.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: this[] - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Input/KeyboardState.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Input\KeyboardState.cs startLine: 43 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -95,12 +87,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.KeyboardState.IsAnyKeyDown type: Property source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Input/KeyboardState.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: IsAnyKeyDown - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Input/KeyboardState.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Input\KeyboardState.cs startLine: 53 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -127,12 +115,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.KeyboardState.ToString() type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Input/KeyboardState.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Input/KeyboardState.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Input\KeyboardState.cs startLine: 80 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -159,12 +143,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.KeyboardState.IsKeyDown(OpenTK.Windowing.GraphicsLibraryFramework.Keys) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Input/KeyboardState.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: IsKeyDown - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Input/KeyboardState.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Input\KeyboardState.cs startLine: 111 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -194,12 +174,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.KeyboardState.WasKeyDown(OpenTK.Windowing.GraphicsLibraryFramework.Keys) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Input/KeyboardState.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: WasKeyDown - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Input/KeyboardState.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Input\KeyboardState.cs startLine: 121 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -229,18 +205,14 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.KeyboardState.IsKeyPressed(OpenTK.Windowing.GraphicsLibraryFramework.Keys) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Input/KeyboardState.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: IsKeyPressed - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Input/KeyboardState.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Input\KeyboardState.cs startLine: 134 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework summary: Gets whether the specified key is pressed in the current frame but released in the previous frame. - remarks: "\"Frame\" refers to invocations of NativeWindow.ProcessEvents() here." + remarks: "\"Frame\" refers to invocations of NativeWindow.ProcessEvents(double) (NativeWindow.ProcessInputEvents() more precisely) here." example: [] syntax: content: public bool IsKeyPressed(Keys key) @@ -265,18 +237,14 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.KeyboardState.IsKeyReleased(OpenTK.Windowing.GraphicsLibraryFramework.Keys) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Input/KeyboardState.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: IsKeyReleased - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Input/KeyboardState.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Input\KeyboardState.cs startLine: 147 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework summary: Gets whether the specified key is released in the current frame but pressed in the previous frame. - remarks: "\"Frame\" refers to invocations of NativeWindow.ProcessEvents() here." + remarks: "\"Frame\" refers to invocations of NativeWindow.ProcessEvents(double) (NativeWindow.ProcessInputEvents() more precisely) here." example: [] syntax: content: public bool IsKeyReleased(Keys key) @@ -301,12 +269,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.KeyboardState.GetSnapshot() type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Input/KeyboardState.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetSnapshot - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Input/KeyboardState.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Input\KeyboardState.cs startLine: 157 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework diff --git a/api/OpenTK.Windowing.GraphicsLibraryFramework.Keys.yml b/api/OpenTK.Windowing.GraphicsLibraryFramework.Keys.yml index 8779d22e..8e749111 100644 --- a/api/OpenTK.Windowing.GraphicsLibraryFramework.Keys.yml +++ b/api/OpenTK.Windowing.GraphicsLibraryFramework.Keys.yml @@ -133,12 +133,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.Keys type: Enum source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Keys - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\Keys.cs startLine: 14 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -160,12 +156,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.Keys.Unknown type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Unknown - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\Keys.cs startLine: 19 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -188,12 +180,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.Keys.Space type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Space - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\Keys.cs startLine: 24 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -216,12 +204,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.Keys.Apostrophe type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Apostrophe - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\Keys.cs startLine: 29 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -244,12 +228,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.Keys.Comma type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Comma - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\Keys.cs startLine: 34 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -272,12 +252,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.Keys.Minus type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Minus - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\Keys.cs startLine: 39 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -300,12 +276,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.Keys.Period type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Period - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\Keys.cs startLine: 44 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -328,12 +300,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.Keys.Slash type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Slash - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\Keys.cs startLine: 49 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -356,12 +324,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.Keys.D0 type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: D0 - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\Keys.cs startLine: 54 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -384,12 +348,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.Keys.D1 type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: D1 - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\Keys.cs startLine: 59 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -412,12 +372,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.Keys.D2 type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: D2 - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\Keys.cs startLine: 64 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -440,12 +396,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.Keys.D3 type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: D3 - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\Keys.cs startLine: 69 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -468,12 +420,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.Keys.D4 type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: D4 - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\Keys.cs startLine: 74 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -496,12 +444,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.Keys.D5 type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: D5 - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\Keys.cs startLine: 79 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -524,12 +468,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.Keys.D6 type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: D6 - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\Keys.cs startLine: 84 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -552,12 +492,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.Keys.D7 type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: D7 - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\Keys.cs startLine: 89 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -580,12 +516,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.Keys.D8 type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: D8 - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\Keys.cs startLine: 94 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -608,12 +540,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.Keys.D9 type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: D9 - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\Keys.cs startLine: 99 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -636,12 +564,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.Keys.Semicolon type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Semicolon - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\Keys.cs startLine: 104 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -664,12 +588,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.Keys.Equal type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Equal - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\Keys.cs startLine: 109 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -692,12 +612,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.Keys.A type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: A - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\Keys.cs startLine: 114 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -720,12 +636,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.Keys.B type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: B - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\Keys.cs startLine: 119 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -748,12 +660,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.Keys.C type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: C - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\Keys.cs startLine: 124 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -776,12 +684,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.Keys.D type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: D - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\Keys.cs startLine: 129 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -804,12 +708,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.Keys.E type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: E - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\Keys.cs startLine: 134 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -832,12 +732,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.Keys.F type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: F - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\Keys.cs startLine: 139 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -860,12 +756,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.Keys.G type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: G - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\Keys.cs startLine: 144 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -888,12 +780,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.Keys.H type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: H - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\Keys.cs startLine: 149 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -916,12 +804,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.Keys.I type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: I - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\Keys.cs startLine: 154 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -944,12 +828,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.Keys.J type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: J - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\Keys.cs startLine: 159 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -972,12 +852,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.Keys.K type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: K - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\Keys.cs startLine: 164 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -1000,12 +876,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.Keys.L type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: L - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\Keys.cs startLine: 169 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -1028,12 +900,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.Keys.M type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: M - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\Keys.cs startLine: 174 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -1056,12 +924,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.Keys.N type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: N - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\Keys.cs startLine: 179 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -1084,12 +948,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.Keys.O type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: O - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\Keys.cs startLine: 184 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -1112,12 +972,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.Keys.P type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: P - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\Keys.cs startLine: 189 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -1140,12 +996,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.Keys.Q type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Q - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\Keys.cs startLine: 194 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -1168,12 +1020,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.Keys.R type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: R - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\Keys.cs startLine: 199 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -1196,12 +1044,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.Keys.S type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: S - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\Keys.cs startLine: 204 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -1224,12 +1068,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.Keys.T type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: T - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\Keys.cs startLine: 209 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -1252,12 +1092,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.Keys.U type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: U - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\Keys.cs startLine: 214 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -1280,12 +1116,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.Keys.V type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: V - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\Keys.cs startLine: 219 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -1308,12 +1140,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.Keys.W type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: W - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\Keys.cs startLine: 224 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -1336,12 +1164,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.Keys.X type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: X - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\Keys.cs startLine: 229 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -1364,12 +1188,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.Keys.Y type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Y - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\Keys.cs startLine: 234 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -1392,12 +1212,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.Keys.Z type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Z - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\Keys.cs startLine: 239 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -1420,12 +1236,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.Keys.LeftBracket type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: LeftBracket - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\Keys.cs startLine: 244 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -1448,12 +1260,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.Keys.Backslash type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Backslash - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\Keys.cs startLine: 249 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -1476,12 +1284,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.Keys.RightBracket type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: RightBracket - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\Keys.cs startLine: 254 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -1504,12 +1308,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.Keys.GraveAccent type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GraveAccent - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\Keys.cs startLine: 259 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -1532,12 +1332,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.Keys.Escape type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Escape - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\Keys.cs startLine: 264 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -1560,12 +1356,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.Keys.Enter type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Enter - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\Keys.cs startLine: 269 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -1588,12 +1380,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.Keys.Tab type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Tab - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\Keys.cs startLine: 274 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -1616,12 +1404,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.Keys.Backspace type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Backspace - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\Keys.cs startLine: 279 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -1644,12 +1428,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.Keys.Insert type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Insert - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\Keys.cs startLine: 284 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -1672,12 +1452,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.Keys.Delete type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Delete - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\Keys.cs startLine: 289 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -1700,12 +1476,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.Keys.Right type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Right - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\Keys.cs startLine: 294 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -1728,12 +1500,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.Keys.Left type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Left - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\Keys.cs startLine: 299 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -1756,12 +1524,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.Keys.Down type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Down - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\Keys.cs startLine: 304 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -1784,12 +1548,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.Keys.Up type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Up - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\Keys.cs startLine: 309 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -1812,12 +1572,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.Keys.PageUp type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: PageUp - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\Keys.cs startLine: 314 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -1840,12 +1596,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.Keys.PageDown type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: PageDown - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\Keys.cs startLine: 319 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -1868,12 +1620,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.Keys.Home type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Home - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\Keys.cs startLine: 324 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -1896,12 +1644,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.Keys.End type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: End - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\Keys.cs startLine: 329 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -1924,12 +1668,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.Keys.CapsLock type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CapsLock - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\Keys.cs startLine: 334 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -1952,12 +1692,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.Keys.ScrollLock type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ScrollLock - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\Keys.cs startLine: 339 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -1980,12 +1716,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.Keys.NumLock type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: NumLock - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\Keys.cs startLine: 344 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -2008,12 +1740,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.Keys.PrintScreen type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: PrintScreen - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\Keys.cs startLine: 349 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -2036,12 +1764,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.Keys.Pause type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Pause - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\Keys.cs startLine: 354 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -2064,12 +1788,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.Keys.F1 type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: F1 - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\Keys.cs startLine: 359 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -2092,12 +1812,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.Keys.F2 type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: F2 - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\Keys.cs startLine: 364 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -2120,12 +1836,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.Keys.F3 type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: F3 - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\Keys.cs startLine: 369 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -2148,12 +1860,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.Keys.F4 type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: F4 - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\Keys.cs startLine: 374 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -2176,12 +1884,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.Keys.F5 type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: F5 - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\Keys.cs startLine: 379 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -2204,12 +1908,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.Keys.F6 type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: F6 - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\Keys.cs startLine: 384 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -2232,12 +1932,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.Keys.F7 type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: F7 - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\Keys.cs startLine: 389 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -2260,12 +1956,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.Keys.F8 type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: F8 - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\Keys.cs startLine: 394 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -2288,12 +1980,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.Keys.F9 type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: F9 - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\Keys.cs startLine: 399 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -2316,12 +2004,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.Keys.F10 type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: F10 - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\Keys.cs startLine: 404 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -2344,12 +2028,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.Keys.F11 type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: F11 - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\Keys.cs startLine: 409 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -2372,12 +2052,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.Keys.F12 type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: F12 - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\Keys.cs startLine: 414 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -2400,12 +2076,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.Keys.F13 type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: F13 - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\Keys.cs startLine: 419 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -2428,12 +2100,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.Keys.F14 type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: F14 - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\Keys.cs startLine: 424 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -2456,12 +2124,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.Keys.F15 type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: F15 - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\Keys.cs startLine: 429 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -2484,12 +2148,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.Keys.F16 type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: F16 - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\Keys.cs startLine: 434 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -2512,12 +2172,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.Keys.F17 type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: F17 - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\Keys.cs startLine: 439 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -2540,12 +2196,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.Keys.F18 type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: F18 - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\Keys.cs startLine: 444 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -2568,12 +2220,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.Keys.F19 type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: F19 - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\Keys.cs startLine: 449 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -2596,12 +2244,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.Keys.F20 type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: F20 - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\Keys.cs startLine: 454 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -2624,12 +2268,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.Keys.F21 type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: F21 - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\Keys.cs startLine: 459 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -2652,12 +2292,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.Keys.F22 type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: F22 - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\Keys.cs startLine: 464 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -2680,12 +2316,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.Keys.F23 type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: F23 - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\Keys.cs startLine: 469 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -2708,12 +2340,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.Keys.F24 type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: F24 - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\Keys.cs startLine: 474 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -2736,12 +2364,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.Keys.F25 type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: F25 - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\Keys.cs startLine: 479 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -2764,12 +2388,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.Keys.KeyPad0 type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: KeyPad0 - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\Keys.cs startLine: 484 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -2792,12 +2412,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.Keys.KeyPad1 type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: KeyPad1 - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\Keys.cs startLine: 489 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -2820,12 +2436,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.Keys.KeyPad2 type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: KeyPad2 - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\Keys.cs startLine: 494 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -2848,12 +2460,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.Keys.KeyPad3 type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: KeyPad3 - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\Keys.cs startLine: 499 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -2876,12 +2484,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.Keys.KeyPad4 type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: KeyPad4 - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\Keys.cs startLine: 504 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -2904,12 +2508,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.Keys.KeyPad5 type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: KeyPad5 - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\Keys.cs startLine: 509 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -2932,12 +2532,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.Keys.KeyPad6 type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: KeyPad6 - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\Keys.cs startLine: 514 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -2960,12 +2556,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.Keys.KeyPad7 type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: KeyPad7 - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\Keys.cs startLine: 519 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -2988,12 +2580,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.Keys.KeyPad8 type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: KeyPad8 - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\Keys.cs startLine: 524 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -3016,12 +2604,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.Keys.KeyPad9 type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: KeyPad9 - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\Keys.cs startLine: 529 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -3044,12 +2628,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.Keys.KeyPadDecimal type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: KeyPadDecimal - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\Keys.cs startLine: 534 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -3072,12 +2652,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.Keys.KeyPadDivide type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: KeyPadDivide - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\Keys.cs startLine: 539 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -3100,12 +2676,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.Keys.KeyPadMultiply type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: KeyPadMultiply - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\Keys.cs startLine: 544 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -3128,12 +2700,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.Keys.KeyPadSubtract type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: KeyPadSubtract - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\Keys.cs startLine: 549 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -3156,12 +2724,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.Keys.KeyPadAdd type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: KeyPadAdd - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\Keys.cs startLine: 554 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -3184,12 +2748,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.Keys.KeyPadEnter type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: KeyPadEnter - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\Keys.cs startLine: 559 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -3212,12 +2772,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.Keys.KeyPadEqual type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: KeyPadEqual - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\Keys.cs startLine: 564 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -3240,12 +2796,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.Keys.LeftShift type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: LeftShift - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\Keys.cs startLine: 569 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -3268,12 +2820,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.Keys.LeftControl type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: LeftControl - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\Keys.cs startLine: 574 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -3296,12 +2844,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.Keys.LeftAlt type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: LeftAlt - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\Keys.cs startLine: 579 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -3324,12 +2868,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.Keys.LeftSuper type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: LeftSuper - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\Keys.cs startLine: 584 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -3352,12 +2892,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.Keys.RightShift type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: RightShift - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\Keys.cs startLine: 589 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -3380,12 +2916,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.Keys.RightControl type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: RightControl - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\Keys.cs startLine: 594 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -3408,12 +2940,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.Keys.RightAlt type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: RightAlt - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\Keys.cs startLine: 599 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -3436,12 +2964,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.Keys.RightSuper type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: RightSuper - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\Keys.cs startLine: 604 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -3464,12 +2988,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.Keys.Menu type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Menu - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\Keys.cs startLine: 609 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -3492,12 +3012,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.Keys.LastKey type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: LastKey - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Keys.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\Keys.cs startLine: 614 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework diff --git a/api/OpenTK.Windowing.GraphicsLibraryFramework.LockKeyModAttribute.yml b/api/OpenTK.Windowing.GraphicsLibraryFramework.LockKeyModAttribute.yml index 4d758b27..9c6f05b4 100644 --- a/api/OpenTK.Windowing.GraphicsLibraryFramework.LockKeyModAttribute.yml +++ b/api/OpenTK.Windowing.GraphicsLibraryFramework.LockKeyModAttribute.yml @@ -14,12 +14,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.LockKeyModAttribute type: Enum source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/LockKeyAttribute.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: LockKeyModAttribute - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/LockKeyAttribute.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\LockKeyAttribute.cs startLine: 16 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -46,12 +42,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.LockKeyModAttribute.LockKeyMods type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/LockKeyAttribute.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: LockKeyMods - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/LockKeyAttribute.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\LockKeyAttribute.cs startLine: 21 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework diff --git a/api/OpenTK.Windowing.GraphicsLibraryFramework.Monitor.yml b/api/OpenTK.Windowing.GraphicsLibraryFramework.Monitor.yml index e0ecbc7d..cc595cde 100644 --- a/api/OpenTK.Windowing.GraphicsLibraryFramework.Monitor.yml +++ b/api/OpenTK.Windowing.GraphicsLibraryFramework.Monitor.yml @@ -13,12 +13,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.Monitor type: Struct source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Monitor.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Monitor - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Monitor.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Monitor.cs startLine: 14 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework diff --git a/api/OpenTK.Windowing.GraphicsLibraryFramework.MouseButton.yml b/api/OpenTK.Windowing.GraphicsLibraryFramework.MouseButton.yml index 8e9b1ef3..94c57bba 100644 --- a/api/OpenTK.Windowing.GraphicsLibraryFramework.MouseButton.yml +++ b/api/OpenTK.Windowing.GraphicsLibraryFramework.MouseButton.yml @@ -25,12 +25,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.MouseButton type: Enum source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/MouseButton.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MouseButton - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/MouseButton.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\MouseButton.cs startLine: 5 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -52,12 +48,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.MouseButton.Button1 type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/MouseButton.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Button1 - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/MouseButton.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\MouseButton.cs startLine: 10 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -80,12 +72,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.MouseButton.Button2 type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/MouseButton.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Button2 - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/MouseButton.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\MouseButton.cs startLine: 15 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -108,12 +96,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.MouseButton.Button3 type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/MouseButton.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Button3 - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/MouseButton.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\MouseButton.cs startLine: 20 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -136,12 +120,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.MouseButton.Button4 type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/MouseButton.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Button4 - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/MouseButton.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\MouseButton.cs startLine: 25 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -164,12 +144,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.MouseButton.Button5 type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/MouseButton.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Button5 - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/MouseButton.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\MouseButton.cs startLine: 30 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -192,12 +168,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.MouseButton.Button6 type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/MouseButton.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Button6 - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/MouseButton.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\MouseButton.cs startLine: 35 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -220,12 +192,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.MouseButton.Button7 type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/MouseButton.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Button7 - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/MouseButton.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\MouseButton.cs startLine: 40 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -248,12 +216,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.MouseButton.Button8 type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/MouseButton.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Button8 - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/MouseButton.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\MouseButton.cs startLine: 45 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -276,12 +240,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.MouseButton.Left type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/MouseButton.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Left - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/MouseButton.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\MouseButton.cs startLine: 50 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -304,12 +264,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.MouseButton.Right type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/MouseButton.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Right - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/MouseButton.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\MouseButton.cs startLine: 55 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -332,12 +288,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.MouseButton.Middle type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/MouseButton.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Middle - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/MouseButton.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\MouseButton.cs startLine: 60 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -360,12 +312,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.MouseButton.Last type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/MouseButton.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Last - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/MouseButton.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\MouseButton.cs startLine: 65 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework diff --git a/api/OpenTK.Windowing.GraphicsLibraryFramework.MouseState.yml b/api/OpenTK.Windowing.GraphicsLibraryFramework.MouseState.yml index c7455e35..826253d3 100644 --- a/api/OpenTK.Windowing.GraphicsLibraryFramework.MouseState.yml +++ b/api/OpenTK.Windowing.GraphicsLibraryFramework.MouseState.yml @@ -31,12 +31,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.MouseState type: Class source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Input/MouseState.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MouseState - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Input/MouseState.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Input\MouseState.cs startLine: 21 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -67,12 +63,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.MouseState.Position type: Property source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Input/MouseState.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Position - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Input/MouseState.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Input\MouseState.cs startLine: 52 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -101,12 +93,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.MouseState.PreviousPosition type: Property source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Input/MouseState.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: PreviousPosition - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Input/MouseState.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Input\MouseState.cs startLine: 58 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -135,12 +123,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.MouseState.Delta type: Property source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Input/MouseState.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Delta - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Input/MouseState.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Input\MouseState.cs startLine: 64 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -169,12 +153,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.MouseState.Scroll type: Property source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Input/MouseState.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Scroll - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Input/MouseState.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Input\MouseState.cs startLine: 69 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -200,12 +180,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.MouseState.PreviousScroll type: Property source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Input/MouseState.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: PreviousScroll - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Input/MouseState.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Input\MouseState.cs startLine: 74 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -231,12 +207,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.MouseState.ScrollDelta type: Property source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Input/MouseState.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ScrollDelta - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Input/MouseState.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Input\MouseState.cs startLine: 79 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -262,12 +234,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.MouseState.this[OpenTK.Windowing.GraphicsLibraryFramework.MouseButton] type: Property source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Input/MouseState.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: this[] - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Input/MouseState.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Input\MouseState.cs startLine: 87 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -302,12 +270,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.MouseState.X type: Property source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Input/MouseState.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: X - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Input/MouseState.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Input\MouseState.cs startLine: 96 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -333,12 +297,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.MouseState.Y type: Property source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Input/MouseState.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Y - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Input/MouseState.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Input\MouseState.cs startLine: 101 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -364,12 +324,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.MouseState.PreviousX type: Property source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Input/MouseState.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: PreviousX - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Input/MouseState.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Input\MouseState.cs startLine: 106 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -395,12 +351,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.MouseState.PreviousY type: Property source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Input/MouseState.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: PreviousY - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Input/MouseState.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Input\MouseState.cs startLine: 111 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -426,12 +378,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.MouseState.IsAnyButtonDown type: Property source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Input/MouseState.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: IsAnyButtonDown - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Input/MouseState.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Input\MouseState.cs startLine: 117 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -458,12 +406,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.MouseState.ToString() type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Input/MouseState.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ToString - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Input/MouseState.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Input\MouseState.cs startLine: 137 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -490,12 +434,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.MouseState.IsButtonDown(OpenTK.Windowing.GraphicsLibraryFramework.MouseButton) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Input/MouseState.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: IsButtonDown - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Input/MouseState.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Input\MouseState.cs startLine: 165 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -525,12 +465,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.MouseState.WasButtonDown(OpenTK.Windowing.GraphicsLibraryFramework.MouseButton) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Input/MouseState.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: WasButtonDown - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Input/MouseState.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Input\MouseState.cs startLine: 175 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -560,18 +496,14 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.MouseState.IsButtonPressed(OpenTK.Windowing.GraphicsLibraryFramework.MouseButton) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Input/MouseState.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: IsButtonPressed - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Input/MouseState.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Input\MouseState.cs startLine: 188 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework summary: Gets whether the specified mouse button is pressed in the current frame but released in the previous frame. - remarks: "\"Frame\" refers to invocations of NativeWindow.ProcessEvents() (NativeWindow.ProcessInputEvents() more precisely) here." + remarks: "\"Frame\" refers to invocations of NativeWindow.ProcessEvents(double) (NativeWindow.ProcessInputEvents() more precisely) here." example: [] syntax: content: public bool IsButtonPressed(MouseButton button) @@ -596,18 +528,14 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.MouseState.IsButtonReleased(OpenTK.Windowing.GraphicsLibraryFramework.MouseButton) type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Input/MouseState.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: IsButtonReleased - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Input/MouseState.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Input\MouseState.cs startLine: 201 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework summary: Gets whether the specified mouse button is released in the current frame but pressed in the previous frame. - remarks: "\"Frame\" refers to invocations of NativeWindow.ProcessEvents() (NativeWindow.ProcessInputEvents() more precisely) here." + remarks: "\"Frame\" refers to invocations of NativeWindow.ProcessEvents(double) (NativeWindow.ProcessInputEvents() more precisely) here." example: [] syntax: content: public bool IsButtonReleased(MouseButton button) @@ -632,12 +560,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.MouseState.GetSnapshot() type: Method source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Input/MouseState.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GetSnapshot - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Input/MouseState.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Input\MouseState.cs startLine: 211 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework diff --git a/api/OpenTK.Windowing.GraphicsLibraryFramework.OpenGlProfile.yml b/api/OpenTK.Windowing.GraphicsLibraryFramework.OpenGlProfile.yml index a81c94b8..82dcaa77 100644 --- a/api/OpenTK.Windowing.GraphicsLibraryFramework.OpenGlProfile.yml +++ b/api/OpenTK.Windowing.GraphicsLibraryFramework.OpenGlProfile.yml @@ -16,12 +16,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.OpenGlProfile type: Enum source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/OpenGlProfile.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: OpenGlProfile - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/OpenGlProfile.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\OpenGlProfile.cs startLine: 14 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -43,12 +39,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.OpenGlProfile.Any type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/OpenGlProfile.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Any - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/OpenGlProfile.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\OpenGlProfile.cs startLine: 19 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -71,12 +63,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.OpenGlProfile.Core type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/OpenGlProfile.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Core - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/OpenGlProfile.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\OpenGlProfile.cs startLine: 24 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -99,12 +87,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.OpenGlProfile.Compat type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/OpenGlProfile.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Compat - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/OpenGlProfile.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\OpenGlProfile.cs startLine: 29 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework diff --git a/api/OpenTK.Windowing.GraphicsLibraryFramework.Platform.yml b/api/OpenTK.Windowing.GraphicsLibraryFramework.Platform.yml new file mode 100644 index 00000000..d674bffd --- /dev/null +++ b/api/OpenTK.Windowing.GraphicsLibraryFramework.Platform.yml @@ -0,0 +1,200 @@ +### YamlMime:ManagedReference +items: +- uid: OpenTK.Windowing.GraphicsLibraryFramework.Platform + commentId: T:OpenTK.Windowing.GraphicsLibraryFramework.Platform + id: Platform + parent: OpenTK.Windowing.GraphicsLibraryFramework + children: + - OpenTK.Windowing.GraphicsLibraryFramework.Platform.Any + - OpenTK.Windowing.GraphicsLibraryFramework.Platform.Cocoa + - OpenTK.Windowing.GraphicsLibraryFramework.Platform.Null + - OpenTK.Windowing.GraphicsLibraryFramework.Platform.Wayland + - OpenTK.Windowing.GraphicsLibraryFramework.Platform.Win32 + - OpenTK.Windowing.GraphicsLibraryFramework.Platform.X11 + langs: + - csharp + - vb + name: Platform + nameWithType: Platform + fullName: OpenTK.Windowing.GraphicsLibraryFramework.Platform + type: Enum + source: + id: Platform + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\Platform.cs + startLine: 6 + assemblies: + - OpenTK.Windowing.GraphicsLibraryFramework + namespace: OpenTK.Windowing.GraphicsLibraryFramework + syntax: + content: public enum Platform + content.vb: Public Enum Platform +- uid: OpenTK.Windowing.GraphicsLibraryFramework.Platform.Any + commentId: F:OpenTK.Windowing.GraphicsLibraryFramework.Platform.Any + id: Any + parent: OpenTK.Windowing.GraphicsLibraryFramework.Platform + langs: + - csharp + - vb + name: Any + nameWithType: Platform.Any + fullName: OpenTK.Windowing.GraphicsLibraryFramework.Platform.Any + type: Field + source: + id: Any + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\Platform.cs + startLine: 8 + assemblies: + - OpenTK.Windowing.GraphicsLibraryFramework + namespace: OpenTK.Windowing.GraphicsLibraryFramework + syntax: + content: Any = 393216 + return: + type: OpenTK.Windowing.GraphicsLibraryFramework.Platform +- uid: OpenTK.Windowing.GraphicsLibraryFramework.Platform.Win32 + commentId: F:OpenTK.Windowing.GraphicsLibraryFramework.Platform.Win32 + id: Win32 + parent: OpenTK.Windowing.GraphicsLibraryFramework.Platform + langs: + - csharp + - vb + name: Win32 + nameWithType: Platform.Win32 + fullName: OpenTK.Windowing.GraphicsLibraryFramework.Platform.Win32 + type: Field + source: + id: Win32 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\Platform.cs + startLine: 9 + assemblies: + - OpenTK.Windowing.GraphicsLibraryFramework + namespace: OpenTK.Windowing.GraphicsLibraryFramework + syntax: + content: Win32 = 393217 + return: + type: OpenTK.Windowing.GraphicsLibraryFramework.Platform +- uid: OpenTK.Windowing.GraphicsLibraryFramework.Platform.Cocoa + commentId: F:OpenTK.Windowing.GraphicsLibraryFramework.Platform.Cocoa + id: Cocoa + parent: OpenTK.Windowing.GraphicsLibraryFramework.Platform + langs: + - csharp + - vb + name: Cocoa + nameWithType: Platform.Cocoa + fullName: OpenTK.Windowing.GraphicsLibraryFramework.Platform.Cocoa + type: Field + source: + id: Cocoa + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\Platform.cs + startLine: 10 + assemblies: + - OpenTK.Windowing.GraphicsLibraryFramework + namespace: OpenTK.Windowing.GraphicsLibraryFramework + syntax: + content: Cocoa = 393218 + return: + type: OpenTK.Windowing.GraphicsLibraryFramework.Platform +- uid: OpenTK.Windowing.GraphicsLibraryFramework.Platform.Wayland + commentId: F:OpenTK.Windowing.GraphicsLibraryFramework.Platform.Wayland + id: Wayland + parent: OpenTK.Windowing.GraphicsLibraryFramework.Platform + langs: + - csharp + - vb + name: Wayland + nameWithType: Platform.Wayland + fullName: OpenTK.Windowing.GraphicsLibraryFramework.Platform.Wayland + type: Field + source: + id: Wayland + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\Platform.cs + startLine: 11 + assemblies: + - OpenTK.Windowing.GraphicsLibraryFramework + namespace: OpenTK.Windowing.GraphicsLibraryFramework + syntax: + content: Wayland = 393219 + return: + type: OpenTK.Windowing.GraphicsLibraryFramework.Platform +- uid: OpenTK.Windowing.GraphicsLibraryFramework.Platform.X11 + commentId: F:OpenTK.Windowing.GraphicsLibraryFramework.Platform.X11 + id: X11 + parent: OpenTK.Windowing.GraphicsLibraryFramework.Platform + langs: + - csharp + - vb + name: X11 + nameWithType: Platform.X11 + fullName: OpenTK.Windowing.GraphicsLibraryFramework.Platform.X11 + type: Field + source: + id: X11 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\Platform.cs + startLine: 12 + assemblies: + - OpenTK.Windowing.GraphicsLibraryFramework + namespace: OpenTK.Windowing.GraphicsLibraryFramework + syntax: + content: X11 = 393220 + return: + type: OpenTK.Windowing.GraphicsLibraryFramework.Platform +- uid: OpenTK.Windowing.GraphicsLibraryFramework.Platform.Null + commentId: F:OpenTK.Windowing.GraphicsLibraryFramework.Platform.Null + id: "Null" + parent: OpenTK.Windowing.GraphicsLibraryFramework.Platform + langs: + - csharp + - vb + name: "Null" + nameWithType: Platform.Null + fullName: OpenTK.Windowing.GraphicsLibraryFramework.Platform.Null + type: Field + source: + id: "Null" + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\Platform.cs + startLine: 13 + assemblies: + - OpenTK.Windowing.GraphicsLibraryFramework + namespace: OpenTK.Windowing.GraphicsLibraryFramework + syntax: + content: Null = 393221 + return: + type: OpenTK.Windowing.GraphicsLibraryFramework.Platform +references: +- uid: OpenTK.Windowing.GraphicsLibraryFramework + commentId: N:OpenTK.Windowing.GraphicsLibraryFramework + href: OpenTK.html + name: OpenTK.Windowing.GraphicsLibraryFramework + nameWithType: OpenTK.Windowing.GraphicsLibraryFramework + fullName: OpenTK.Windowing.GraphicsLibraryFramework + spec.csharp: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Windowing + name: Windowing + href: OpenTK.Windowing.html + - name: . + - uid: OpenTK.Windowing.GraphicsLibraryFramework + name: GraphicsLibraryFramework + href: OpenTK.Windowing.GraphicsLibraryFramework.html + spec.vb: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Windowing + name: Windowing + href: OpenTK.Windowing.html + - name: . + - uid: OpenTK.Windowing.GraphicsLibraryFramework + name: GraphicsLibraryFramework + href: OpenTK.Windowing.GraphicsLibraryFramework.html +- uid: OpenTK.Windowing.GraphicsLibraryFramework.Platform + commentId: T:OpenTK.Windowing.GraphicsLibraryFramework.Platform + parent: OpenTK.Windowing.GraphicsLibraryFramework + href: OpenTK.Windowing.GraphicsLibraryFramework.Platform.html + name: Platform + nameWithType: Platform + fullName: OpenTK.Windowing.GraphicsLibraryFramework.Platform diff --git a/api/OpenTK.Windowing.GraphicsLibraryFramework.RawMouseMotionAttribute.yml b/api/OpenTK.Windowing.GraphicsLibraryFramework.RawMouseMotionAttribute.yml index 62a22bc8..5e1c8868 100644 --- a/api/OpenTK.Windowing.GraphicsLibraryFramework.RawMouseMotionAttribute.yml +++ b/api/OpenTK.Windowing.GraphicsLibraryFramework.RawMouseMotionAttribute.yml @@ -14,12 +14,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.RawMouseMotionAttribute type: Enum source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/RawMouseMotionAttribute.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: RawMouseMotionAttribute - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/RawMouseMotionAttribute.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\RawMouseMotionAttribute.cs startLine: 11 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -46,12 +42,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.RawMouseMotionAttribute.RawMouseMotion type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/RawMouseMotionAttribute.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: RawMouseMotion - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/RawMouseMotionAttribute.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\RawMouseMotionAttribute.cs startLine: 16 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework diff --git a/api/OpenTK.Windowing.GraphicsLibraryFramework.ReleaseBehavior.yml b/api/OpenTK.Windowing.GraphicsLibraryFramework.ReleaseBehavior.yml index 5e28c86f..114455f6 100644 --- a/api/OpenTK.Windowing.GraphicsLibraryFramework.ReleaseBehavior.yml +++ b/api/OpenTK.Windowing.GraphicsLibraryFramework.ReleaseBehavior.yml @@ -16,12 +16,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.ReleaseBehavior type: Enum source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/ReleaseBehavior.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ReleaseBehavior - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/ReleaseBehavior.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\ReleaseBehavior.cs startLine: 15 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -46,12 +42,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.ReleaseBehavior.Any type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/ReleaseBehavior.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Any - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/ReleaseBehavior.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\ReleaseBehavior.cs startLine: 20 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -74,12 +66,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.ReleaseBehavior.Flush type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/ReleaseBehavior.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Flush - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/ReleaseBehavior.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\ReleaseBehavior.cs startLine: 25 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -102,12 +90,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.ReleaseBehavior.None type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/ReleaseBehavior.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: None - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/ReleaseBehavior.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\ReleaseBehavior.cs startLine: 30 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework diff --git a/api/OpenTK.Windowing.GraphicsLibraryFramework.Robustness.yml b/api/OpenTK.Windowing.GraphicsLibraryFramework.Robustness.yml index e7ef7f27..581c86e6 100644 --- a/api/OpenTK.Windowing.GraphicsLibraryFramework.Robustness.yml +++ b/api/OpenTK.Windowing.GraphicsLibraryFramework.Robustness.yml @@ -16,12 +16,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.Robustness type: Enum source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Robustness.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Robustness - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Robustness.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\Robustness.cs startLine: 14 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -43,12 +39,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.Robustness.NoRobustness type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Robustness.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: NoRobustness - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Robustness.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\Robustness.cs startLine: 19 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -71,12 +63,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.Robustness.NoResetNotification type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Robustness.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: NoResetNotification - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Robustness.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\Robustness.cs startLine: 24 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -99,12 +87,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.Robustness.LoseContextOnReset type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Robustness.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: LoseContextOnReset - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/Robustness.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\Robustness.cs startLine: 29 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework diff --git a/api/OpenTK.Windowing.GraphicsLibraryFramework.StickyAttributes.yml b/api/OpenTK.Windowing.GraphicsLibraryFramework.StickyAttributes.yml index 2e419476..eae28716 100644 --- a/api/OpenTK.Windowing.GraphicsLibraryFramework.StickyAttributes.yml +++ b/api/OpenTK.Windowing.GraphicsLibraryFramework.StickyAttributes.yml @@ -15,12 +15,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.StickyAttributes type: Enum source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/StickyAttributes.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: StickyAttributes - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/StickyAttributes.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\StickyAttributes.cs startLine: 16 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -47,12 +43,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.StickyAttributes.StickyKeys type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/StickyAttributes.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: StickyKeys - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/StickyAttributes.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\StickyAttributes.cs startLine: 21 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -75,12 +67,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.StickyAttributes.StickyMouseButtons type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/StickyAttributes.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: StickyMouseButtons - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/StickyAttributes.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\StickyAttributes.cs startLine: 26 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework diff --git a/api/OpenTK.Windowing.GraphicsLibraryFramework.VideoMode.yml b/api/OpenTK.Windowing.GraphicsLibraryFramework.VideoMode.yml index 91a39fee..6b1ba251 100644 --- a/api/OpenTK.Windowing.GraphicsLibraryFramework.VideoMode.yml +++ b/api/OpenTK.Windowing.GraphicsLibraryFramework.VideoMode.yml @@ -19,12 +19,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.VideoMode type: Struct source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/VideoMode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: VideoMode - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/VideoMode.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\VideoMode.cs startLine: 16 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -53,12 +49,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.VideoMode.Width type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/VideoMode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Width - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/VideoMode.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\VideoMode.cs startLine: 22 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -82,12 +74,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.VideoMode.Height type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/VideoMode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Height - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/VideoMode.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\VideoMode.cs startLine: 27 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -111,12 +99,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.VideoMode.RedBits type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/VideoMode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: RedBits - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/VideoMode.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\VideoMode.cs startLine: 32 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -140,12 +124,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.VideoMode.GreenBits type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/VideoMode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GreenBits - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/VideoMode.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\VideoMode.cs startLine: 37 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -169,12 +149,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.VideoMode.BlueBits type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/VideoMode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: BlueBits - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/VideoMode.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\VideoMode.cs startLine: 42 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -198,12 +174,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.VideoMode.RefreshRate type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/VideoMode.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: RefreshRate - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/VideoMode.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\VideoMode.cs startLine: 47 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework diff --git a/api/OpenTK.Windowing.GraphicsLibraryFramework.VkHandle.yml b/api/OpenTK.Windowing.GraphicsLibraryFramework.VkHandle.yml index 2ae2d9dc..1a3685e6 100644 --- a/api/OpenTK.Windowing.GraphicsLibraryFramework.VkHandle.yml +++ b/api/OpenTK.Windowing.GraphicsLibraryFramework.VkHandle.yml @@ -5,7 +5,7 @@ items: id: VkHandle parent: OpenTK.Windowing.GraphicsLibraryFramework children: - - OpenTK.Windowing.GraphicsLibraryFramework.VkHandle.#ctor(System.IntPtr) + - OpenTK.Windowing.GraphicsLibraryFramework.VkHandle.#ctor(System.UInt64) - OpenTK.Windowing.GraphicsLibraryFramework.VkHandle.Handle langs: - csharp @@ -15,12 +15,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.VkHandle type: Struct source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/VkHandle.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: VkHandle - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/VkHandle.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\VkHandle.cs startLine: 8 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -49,12 +45,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.VkHandle.Handle type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/VkHandle.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Handle - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/VkHandle.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\VkHandle.cs startLine: 14 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -62,28 +54,24 @@ items: summary: The actual value of the Vulkan handle. example: [] syntax: - content: public nint Handle + content: public ulong Handle return: - type: System.IntPtr - content.vb: Public Handle As IntPtr -- uid: OpenTK.Windowing.GraphicsLibraryFramework.VkHandle.#ctor(System.IntPtr) - commentId: M:OpenTK.Windowing.GraphicsLibraryFramework.VkHandle.#ctor(System.IntPtr) - id: '#ctor(System.IntPtr)' + type: System.UInt64 + content.vb: Public Handle As ULong +- uid: OpenTK.Windowing.GraphicsLibraryFramework.VkHandle.#ctor(System.UInt64) + commentId: M:OpenTK.Windowing.GraphicsLibraryFramework.VkHandle.#ctor(System.UInt64) + id: '#ctor(System.UInt64)' parent: OpenTK.Windowing.GraphicsLibraryFramework.VkHandle langs: - csharp - vb - name: VkHandle(nint) - nameWithType: VkHandle.VkHandle(nint) - fullName: OpenTK.Windowing.GraphicsLibraryFramework.VkHandle.VkHandle(nint) + name: VkHandle(ulong) + nameWithType: VkHandle.VkHandle(ulong) + fullName: OpenTK.Windowing.GraphicsLibraryFramework.VkHandle.VkHandle(ulong) type: Constructor source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/VkHandle.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: .ctor - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/VkHandle.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\VkHandle.cs startLine: 23 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -91,19 +79,19 @@ items: summary: Initializes a new instance of the struct. example: [] syntax: - content: public VkHandle(nint handle) + content: public VkHandle(ulong handle) parameters: - id: handle - type: System.IntPtr + type: System.UInt64 description: >- The native Vulkan handle. This is NOT a pointer to a field containing the handle, this is the actual handle itself. - content.vb: Public Sub New(handle As IntPtr) + content.vb: Public Sub New(handle As ULong) overload: OpenTK.Windowing.GraphicsLibraryFramework.VkHandle.#ctor* - nameWithType.vb: VkHandle.New(IntPtr) - fullName.vb: OpenTK.Windowing.GraphicsLibraryFramework.VkHandle.New(System.IntPtr) - name.vb: New(IntPtr) + nameWithType.vb: VkHandle.New(ULong) + fullName.vb: OpenTK.Windowing.GraphicsLibraryFramework.VkHandle.New(ULong) + name.vb: New(ULong) references: - uid: OpenTK.Windowing.GraphicsLibraryFramework commentId: N:OpenTK.Windowing.GraphicsLibraryFramework @@ -352,17 +340,17 @@ references: name: System nameWithType: System fullName: System -- uid: System.IntPtr - commentId: T:System.IntPtr +- uid: System.UInt64 + commentId: T:System.UInt64 parent: System isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: nint - nameWithType: nint - fullName: nint - nameWithType.vb: IntPtr - fullName.vb: System.IntPtr - name.vb: IntPtr + href: https://learn.microsoft.com/dotnet/api/system.uint64 + name: ulong + nameWithType: ulong + fullName: ulong + nameWithType.vb: ULong + fullName.vb: ULong + name.vb: ULong - uid: OpenTK.Windowing.GraphicsLibraryFramework.VkHandle commentId: T:OpenTK.Windowing.GraphicsLibraryFramework.VkHandle parent: OpenTK.Windowing.GraphicsLibraryFramework @@ -372,7 +360,7 @@ references: fullName: OpenTK.Windowing.GraphicsLibraryFramework.VkHandle - uid: OpenTK.Windowing.GraphicsLibraryFramework.VkHandle.#ctor* commentId: Overload:OpenTK.Windowing.GraphicsLibraryFramework.VkHandle.#ctor - href: OpenTK.Windowing.GraphicsLibraryFramework.VkHandle.html#OpenTK_Windowing_GraphicsLibraryFramework_VkHandle__ctor_System_IntPtr_ + href: OpenTK.Windowing.GraphicsLibraryFramework.VkHandle.html#OpenTK_Windowing_GraphicsLibraryFramework_VkHandle__ctor_System_UInt64_ name: VkHandle nameWithType: VkHandle.VkHandle fullName: OpenTK.Windowing.GraphicsLibraryFramework.VkHandle.VkHandle diff --git a/api/OpenTK.Windowing.GraphicsLibraryFramework.WaylandLibDecor.yml b/api/OpenTK.Windowing.GraphicsLibraryFramework.WaylandLibDecor.yml new file mode 100644 index 00000000..64e9ebad --- /dev/null +++ b/api/OpenTK.Windowing.GraphicsLibraryFramework.WaylandLibDecor.yml @@ -0,0 +1,108 @@ +### YamlMime:ManagedReference +items: +- uid: OpenTK.Windowing.GraphicsLibraryFramework.WaylandLibDecor + commentId: T:OpenTK.Windowing.GraphicsLibraryFramework.WaylandLibDecor + id: WaylandLibDecor + parent: OpenTK.Windowing.GraphicsLibraryFramework + children: + - OpenTK.Windowing.GraphicsLibraryFramework.WaylandLibDecor.DisableLibDecor + - OpenTK.Windowing.GraphicsLibraryFramework.WaylandLibDecor.PreferLibDecor + langs: + - csharp + - vb + name: WaylandLibDecor + nameWithType: WaylandLibDecor + fullName: OpenTK.Windowing.GraphicsLibraryFramework.WaylandLibDecor + type: Enum + source: + id: WaylandLibDecor + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\WaylandLibDecor.cs + startLine: 6 + assemblies: + - OpenTK.Windowing.GraphicsLibraryFramework + namespace: OpenTK.Windowing.GraphicsLibraryFramework + syntax: + content: public enum WaylandLibDecor + content.vb: Public Enum WaylandLibDecor +- uid: OpenTK.Windowing.GraphicsLibraryFramework.WaylandLibDecor.PreferLibDecor + commentId: F:OpenTK.Windowing.GraphicsLibraryFramework.WaylandLibDecor.PreferLibDecor + id: PreferLibDecor + parent: OpenTK.Windowing.GraphicsLibraryFramework.WaylandLibDecor + langs: + - csharp + - vb + name: PreferLibDecor + nameWithType: WaylandLibDecor.PreferLibDecor + fullName: OpenTK.Windowing.GraphicsLibraryFramework.WaylandLibDecor.PreferLibDecor + type: Field + source: + id: PreferLibDecor + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\WaylandLibDecor.cs + startLine: 8 + assemblies: + - OpenTK.Windowing.GraphicsLibraryFramework + namespace: OpenTK.Windowing.GraphicsLibraryFramework + syntax: + content: PreferLibDecor = 229377 + return: + type: OpenTK.Windowing.GraphicsLibraryFramework.WaylandLibDecor +- uid: OpenTK.Windowing.GraphicsLibraryFramework.WaylandLibDecor.DisableLibDecor + commentId: F:OpenTK.Windowing.GraphicsLibraryFramework.WaylandLibDecor.DisableLibDecor + id: DisableLibDecor + parent: OpenTK.Windowing.GraphicsLibraryFramework.WaylandLibDecor + langs: + - csharp + - vb + name: DisableLibDecor + nameWithType: WaylandLibDecor.DisableLibDecor + fullName: OpenTK.Windowing.GraphicsLibraryFramework.WaylandLibDecor.DisableLibDecor + type: Field + source: + id: DisableLibDecor + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\WaylandLibDecor.cs + startLine: 9 + assemblies: + - OpenTK.Windowing.GraphicsLibraryFramework + namespace: OpenTK.Windowing.GraphicsLibraryFramework + syntax: + content: DisableLibDecor = 229378 + return: + type: OpenTK.Windowing.GraphicsLibraryFramework.WaylandLibDecor +references: +- uid: OpenTK.Windowing.GraphicsLibraryFramework + commentId: N:OpenTK.Windowing.GraphicsLibraryFramework + href: OpenTK.html + name: OpenTK.Windowing.GraphicsLibraryFramework + nameWithType: OpenTK.Windowing.GraphicsLibraryFramework + fullName: OpenTK.Windowing.GraphicsLibraryFramework + spec.csharp: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Windowing + name: Windowing + href: OpenTK.Windowing.html + - name: . + - uid: OpenTK.Windowing.GraphicsLibraryFramework + name: GraphicsLibraryFramework + href: OpenTK.Windowing.GraphicsLibraryFramework.html + spec.vb: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Windowing + name: Windowing + href: OpenTK.Windowing.html + - name: . + - uid: OpenTK.Windowing.GraphicsLibraryFramework + name: GraphicsLibraryFramework + href: OpenTK.Windowing.GraphicsLibraryFramework.html +- uid: OpenTK.Windowing.GraphicsLibraryFramework.WaylandLibDecor + commentId: T:OpenTK.Windowing.GraphicsLibraryFramework.WaylandLibDecor + parent: OpenTK.Windowing.GraphicsLibraryFramework + href: OpenTK.Windowing.GraphicsLibraryFramework.WaylandLibDecor.html + name: WaylandLibDecor + nameWithType: WaylandLibDecor + fullName: OpenTK.Windowing.GraphicsLibraryFramework.WaylandLibDecor diff --git a/api/OpenTK.Windowing.GraphicsLibraryFramework.Window.yml b/api/OpenTK.Windowing.GraphicsLibraryFramework.Window.yml index ddb84d28..9dfee733 100644 --- a/api/OpenTK.Windowing.GraphicsLibraryFramework.Window.yml +++ b/api/OpenTK.Windowing.GraphicsLibraryFramework.Window.yml @@ -13,12 +13,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.Window type: Struct source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Window.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Window - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Window.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Window.cs startLine: 14 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework diff --git a/api/OpenTK.Windowing.GraphicsLibraryFramework.WindowAttribute.yml b/api/OpenTK.Windowing.GraphicsLibraryFramework.WindowAttribute.yml index 8e414d16..448d6c51 100644 --- a/api/OpenTK.Windowing.GraphicsLibraryFramework.WindowAttribute.yml +++ b/api/OpenTK.Windowing.GraphicsLibraryFramework.WindowAttribute.yml @@ -9,6 +9,7 @@ items: - OpenTK.Windowing.GraphicsLibraryFramework.WindowAttribute.Decorated - OpenTK.Windowing.GraphicsLibraryFramework.WindowAttribute.Floating - OpenTK.Windowing.GraphicsLibraryFramework.WindowAttribute.FocusOnShow + - OpenTK.Windowing.GraphicsLibraryFramework.WindowAttribute.MousePassthrough - OpenTK.Windowing.GraphicsLibraryFramework.WindowAttribute.Resizable langs: - csharp @@ -18,12 +19,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.WindowAttribute type: Enum source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowAttribute.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: WindowAttribute - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowAttribute.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\WindowAttribute.cs startLine: 15 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -48,12 +45,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.WindowAttribute.Resizable type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowAttribute.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Resizable - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowAttribute.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\WindowAttribute.cs startLine: 21 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -79,12 +72,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.WindowAttribute.Decorated type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowAttribute.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Decorated - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowAttribute.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\WindowAttribute.cs startLine: 27 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -110,12 +99,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.WindowAttribute.AutoIconify type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowAttribute.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: AutoIconify - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowAttribute.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\WindowAttribute.cs startLine: 34 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -143,12 +128,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.WindowAttribute.Floating type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowAttribute.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Floating - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowAttribute.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\WindowAttribute.cs startLine: 40 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -174,12 +155,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.WindowAttribute.FocusOnShow type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowAttribute.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: FocusOnShow - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowAttribute.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\WindowAttribute.cs startLine: 46 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -193,6 +170,37 @@ items: content: FocusOnShow = 131084 return: type: OpenTK.Windowing.GraphicsLibraryFramework.WindowAttribute +- uid: OpenTK.Windowing.GraphicsLibraryFramework.WindowAttribute.MousePassthrough + commentId: F:OpenTK.Windowing.GraphicsLibraryFramework.WindowAttribute.MousePassthrough + id: MousePassthrough + parent: OpenTK.Windowing.GraphicsLibraryFramework.WindowAttribute + langs: + - csharp + - vb + name: MousePassthrough + nameWithType: WindowAttribute.MousePassthrough + fullName: OpenTK.Windowing.GraphicsLibraryFramework.WindowAttribute.MousePassthrough + type: Field + source: + id: MousePassthrough + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\WindowAttribute.cs + startLine: 54 + assemblies: + - OpenTK.Windowing.GraphicsLibraryFramework + namespace: OpenTK.Windowing.GraphicsLibraryFramework + summary: >- + Specifies whether the window is transparent to mouse input, letting any mouse events pass through to whatever window is behind it. + + This can be set before creation with the window hint or after with . + + This is only supported for undecorated windows. + + Decorated windows with this enabled will behave differently between platforms. + example: [] + syntax: + content: MousePassthrough = 131085 + return: + type: OpenTK.Windowing.GraphicsLibraryFramework.WindowAttribute references: - uid: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.SetWindowAttrib(OpenTK.Windowing.GraphicsLibraryFramework.Window*,OpenTK.Windowing.GraphicsLibraryFramework.WindowAttribute,System.Boolean) commentId: M:OpenTK.Windowing.GraphicsLibraryFramework.GLFW.SetWindowAttrib(OpenTK.Windowing.GraphicsLibraryFramework.Window*,OpenTK.Windowing.GraphicsLibraryFramework.WindowAttribute,System.Boolean) @@ -309,3 +317,9 @@ references: href: OpenTK.Windowing.GraphicsLibraryFramework.Window.html - name: '*' - name: ) +- uid: OpenTK.Windowing.GraphicsLibraryFramework.WindowHintBool.MousePassthrough + commentId: F:OpenTK.Windowing.GraphicsLibraryFramework.WindowHintBool.MousePassthrough + href: OpenTK.Windowing.GraphicsLibraryFramework.WindowHintBool.html#OpenTK_Windowing_GraphicsLibraryFramework_WindowHintBool_MousePassthrough + name: MousePassthrough + nameWithType: WindowHintBool.MousePassthrough + fullName: OpenTK.Windowing.GraphicsLibraryFramework.WindowHintBool.MousePassthrough diff --git a/api/OpenTK.Windowing.GraphicsLibraryFramework.WindowAttributeGetBool.yml b/api/OpenTK.Windowing.GraphicsLibraryFramework.WindowAttributeGetBool.yml index 6c82b5fa..13314031 100644 --- a/api/OpenTK.Windowing.GraphicsLibraryFramework.WindowAttributeGetBool.yml +++ b/api/OpenTK.Windowing.GraphicsLibraryFramework.WindowAttributeGetBool.yml @@ -8,6 +8,7 @@ items: - OpenTK.Windowing.GraphicsLibraryFramework.WindowAttributeGetBool.AutoIconify - OpenTK.Windowing.GraphicsLibraryFramework.WindowAttributeGetBool.ContextNoError - OpenTK.Windowing.GraphicsLibraryFramework.WindowAttributeGetBool.Decorated + - OpenTK.Windowing.GraphicsLibraryFramework.WindowAttributeGetBool.DoubleBuffer - OpenTK.Windowing.GraphicsLibraryFramework.WindowAttributeGetBool.Floating - OpenTK.Windowing.GraphicsLibraryFramework.WindowAttributeGetBool.FocusOnShow - OpenTK.Windowing.GraphicsLibraryFramework.WindowAttributeGetBool.Focused @@ -28,12 +29,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.WindowAttributeGetBool type: Enum source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowAttributeGetBool.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: WindowAttributeGetBool - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowAttributeGetBool.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\WindowAttributeGetBool.cs startLine: 15 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -58,12 +55,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.WindowAttributeGetBool.Focused type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowAttributeGetBool.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Focused - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowAttributeGetBool.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\WindowAttributeGetBool.cs startLine: 21 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -89,12 +82,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.WindowAttributeGetBool.Iconified type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowAttributeGetBool.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Iconified - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowAttributeGetBool.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\WindowAttributeGetBool.cs startLine: 27 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -120,12 +109,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.WindowAttributeGetBool.Resizable type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowAttributeGetBool.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Resizable - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowAttributeGetBool.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\WindowAttributeGetBool.cs startLine: 33 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -151,12 +136,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.WindowAttributeGetBool.Visible type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowAttributeGetBool.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Visible - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowAttributeGetBool.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\WindowAttributeGetBool.cs startLine: 40 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -184,12 +165,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.WindowAttributeGetBool.Decorated type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowAttributeGetBool.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Decorated - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowAttributeGetBool.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\WindowAttributeGetBool.cs startLine: 46 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -215,12 +192,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.WindowAttributeGetBool.AutoIconify type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowAttributeGetBool.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: AutoIconify - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowAttributeGetBool.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\WindowAttributeGetBool.cs startLine: 53 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -248,12 +221,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.WindowAttributeGetBool.Floating type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowAttributeGetBool.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Floating - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowAttributeGetBool.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\WindowAttributeGetBool.cs startLine: 59 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -279,12 +248,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.WindowAttributeGetBool.Maximized type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowAttributeGetBool.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Maximized - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowAttributeGetBool.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\WindowAttributeGetBool.cs startLine: 65 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -310,12 +275,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.WindowAttributeGetBool.ContextNoError type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowAttributeGetBool.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ContextNoError - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowAttributeGetBool.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\WindowAttributeGetBool.cs startLine: 71 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -341,12 +302,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.WindowAttributeGetBool.MousePassthrough type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowAttributeGetBool.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MousePassthrough - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowAttributeGetBool.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\WindowAttributeGetBool.cs startLine: 82 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -378,12 +335,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.WindowAttributeGetBool.TransparentFramebuffer type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowAttributeGetBool.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TransparentFramebuffer - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowAttributeGetBool.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\WindowAttributeGetBool.cs startLine: 90 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -413,12 +366,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.WindowAttributeGetBool.Hovered type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowAttributeGetBool.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Hovered - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowAttributeGetBool.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\WindowAttributeGetBool.cs startLine: 98 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -448,12 +397,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.WindowAttributeGetBool.FocusOnShow type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowAttributeGetBool.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: FocusOnShow - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowAttributeGetBool.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\WindowAttributeGetBool.cs startLine: 104 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -479,12 +424,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.WindowAttributeGetBool.OpenGLForwardCompat type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowAttributeGetBool.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: OpenGLForwardCompat - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowAttributeGetBool.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\WindowAttributeGetBool.cs startLine: 110 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -510,12 +451,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.WindowAttributeGetBool.OpenGLDebugContext type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowAttributeGetBool.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: OpenGLDebugContext - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowAttributeGetBool.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\WindowAttributeGetBool.cs startLine: 116 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -529,6 +466,30 @@ items: content: OpenGLDebugContext = 139271 return: type: OpenTK.Windowing.GraphicsLibraryFramework.WindowAttributeGetBool +- uid: OpenTK.Windowing.GraphicsLibraryFramework.WindowAttributeGetBool.DoubleBuffer + commentId: F:OpenTK.Windowing.GraphicsLibraryFramework.WindowAttributeGetBool.DoubleBuffer + id: DoubleBuffer + parent: OpenTK.Windowing.GraphicsLibraryFramework.WindowAttributeGetBool + langs: + - csharp + - vb + name: DoubleBuffer + nameWithType: WindowAttributeGetBool.DoubleBuffer + fullName: OpenTK.Windowing.GraphicsLibraryFramework.WindowAttributeGetBool.DoubleBuffer + type: Field + source: + id: DoubleBuffer + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\WindowAttributeGetBool.cs + startLine: 121 + assemblies: + - OpenTK.Windowing.GraphicsLibraryFramework + namespace: OpenTK.Windowing.GraphicsLibraryFramework + summary: Specifies whether the window is double buffered or not. + example: [] + syntax: + content: DoubleBuffer = 135184 + return: + type: OpenTK.Windowing.GraphicsLibraryFramework.WindowAttributeGetBool references: - uid: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetWindowAttrib(OpenTK.Windowing.GraphicsLibraryFramework.Window*,OpenTK.Windowing.GraphicsLibraryFramework.WindowAttributeGetBool) commentId: M:OpenTK.Windowing.GraphicsLibraryFramework.GLFW.GetWindowAttrib(OpenTK.Windowing.GraphicsLibraryFramework.Window*,OpenTK.Windowing.GraphicsLibraryFramework.WindowAttributeGetBool) diff --git a/api/OpenTK.Windowing.GraphicsLibraryFramework.WindowAttributeGetClientApi.yml b/api/OpenTK.Windowing.GraphicsLibraryFramework.WindowAttributeGetClientApi.yml index 676fdeb0..d79eadb4 100644 --- a/api/OpenTK.Windowing.GraphicsLibraryFramework.WindowAttributeGetClientApi.yml +++ b/api/OpenTK.Windowing.GraphicsLibraryFramework.WindowAttributeGetClientApi.yml @@ -14,12 +14,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.WindowAttributeGetClientApi type: Enum source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowAttributeGetClientApi.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: WindowAttributeGetClientApi - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowAttributeGetClientApi.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\WindowAttributeGetClientApi.cs startLine: 15 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -44,12 +40,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.WindowAttributeGetClientApi.ClientApi type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowAttributeGetClientApi.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ClientApi - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowAttributeGetClientApi.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\WindowAttributeGetClientApi.cs startLine: 23 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework diff --git a/api/OpenTK.Windowing.GraphicsLibraryFramework.WindowAttributeGetContextApi.yml b/api/OpenTK.Windowing.GraphicsLibraryFramework.WindowAttributeGetContextApi.yml index 2e2585a3..4ed92974 100644 --- a/api/OpenTK.Windowing.GraphicsLibraryFramework.WindowAttributeGetContextApi.yml +++ b/api/OpenTK.Windowing.GraphicsLibraryFramework.WindowAttributeGetContextApi.yml @@ -14,12 +14,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.WindowAttributeGetContextApi type: Enum source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowAttributeGetContextApi.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: WindowAttributeGetContextApi - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowAttributeGetContextApi.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\WindowAttributeGetContextApi.cs startLine: 15 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -44,12 +40,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.WindowAttributeGetContextApi.ContextCreationApi type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowAttributeGetContextApi.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ContextCreationApi - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowAttributeGetContextApi.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\WindowAttributeGetContextApi.cs startLine: 21 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework diff --git a/api/OpenTK.Windowing.GraphicsLibraryFramework.WindowAttributeGetInt.yml b/api/OpenTK.Windowing.GraphicsLibraryFramework.WindowAttributeGetInt.yml index caca2b89..0b93a784 100644 --- a/api/OpenTK.Windowing.GraphicsLibraryFramework.WindowAttributeGetInt.yml +++ b/api/OpenTK.Windowing.GraphicsLibraryFramework.WindowAttributeGetInt.yml @@ -16,12 +16,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.WindowAttributeGetInt type: Enum source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowAttributeGetInt.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: WindowAttributeGetInt - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowAttributeGetInt.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\WindowAttributeGetInt.cs startLine: 15 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -46,12 +42,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.WindowAttributeGetInt.ContextVersionMajor type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowAttributeGetInt.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ContextVersionMajor - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowAttributeGetInt.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\WindowAttributeGetInt.cs startLine: 20 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -74,12 +66,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.WindowAttributeGetInt.ContextVersionMinor type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowAttributeGetInt.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ContextVersionMinor - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowAttributeGetInt.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\WindowAttributeGetInt.cs startLine: 25 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -102,12 +90,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.WindowAttributeGetInt.ContextVersionRevision type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowAttributeGetInt.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ContextVersionRevision - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowAttributeGetInt.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\WindowAttributeGetInt.cs startLine: 30 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework diff --git a/api/OpenTK.Windowing.GraphicsLibraryFramework.WindowAttributeGetOpenGlProfile.yml b/api/OpenTK.Windowing.GraphicsLibraryFramework.WindowAttributeGetOpenGlProfile.yml index 0b95eccf..f6fbae47 100644 --- a/api/OpenTK.Windowing.GraphicsLibraryFramework.WindowAttributeGetOpenGlProfile.yml +++ b/api/OpenTK.Windowing.GraphicsLibraryFramework.WindowAttributeGetOpenGlProfile.yml @@ -14,12 +14,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.WindowAttributeGetOpenGlProfile type: Enum source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowAttributeGetOpenGlProfile.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: WindowAttributeGetOpenGlProfile - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowAttributeGetOpenGlProfile.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\WindowAttributeGetOpenGlProfile.cs startLine: 15 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -44,12 +40,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.WindowAttributeGetOpenGlProfile.OpenGlProfile type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowAttributeGetOpenGlProfile.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: OpenGlProfile - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowAttributeGetOpenGlProfile.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\WindowAttributeGetOpenGlProfile.cs startLine: 26 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework diff --git a/api/OpenTK.Windowing.GraphicsLibraryFramework.WindowAttributeGetReleaseBehavior.yml b/api/OpenTK.Windowing.GraphicsLibraryFramework.WindowAttributeGetReleaseBehavior.yml index 498444cd..cb780e0b 100644 --- a/api/OpenTK.Windowing.GraphicsLibraryFramework.WindowAttributeGetReleaseBehavior.yml +++ b/api/OpenTK.Windowing.GraphicsLibraryFramework.WindowAttributeGetReleaseBehavior.yml @@ -14,12 +14,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.WindowAttributeGetReleaseBehavior type: Enum source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowAttributeGetReleaseBehavior.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: WindowAttributeGetReleaseBehavior - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowAttributeGetReleaseBehavior.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\WindowAttributeGetReleaseBehavior.cs startLine: 15 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -44,12 +40,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.WindowAttributeGetReleaseBehavior.ContextReleaseBehavior type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowAttributeGetReleaseBehavior.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ContextReleaseBehavior - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowAttributeGetReleaseBehavior.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\WindowAttributeGetReleaseBehavior.cs startLine: 27 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework diff --git a/api/OpenTK.Windowing.GraphicsLibraryFramework.WindowAttributeGetRobustness.yml b/api/OpenTK.Windowing.GraphicsLibraryFramework.WindowAttributeGetRobustness.yml index caf0858a..93ff2d52 100644 --- a/api/OpenTK.Windowing.GraphicsLibraryFramework.WindowAttributeGetRobustness.yml +++ b/api/OpenTK.Windowing.GraphicsLibraryFramework.WindowAttributeGetRobustness.yml @@ -14,12 +14,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.WindowAttributeGetRobustness type: Enum source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowAttributeGetRobustness.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: WindowAttributeGetRobustness - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowAttributeGetRobustness.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\WindowAttributeGetRobustness.cs startLine: 15 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -44,12 +40,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.WindowAttributeGetRobustness.ContextRobustness type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowAttributeGetRobustness.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ContextRobustness - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowAttributeGetRobustness.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\WindowAttributeGetRobustness.cs startLine: 22 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework diff --git a/api/OpenTK.Windowing.GraphicsLibraryFramework.WindowHintBool.yml b/api/OpenTK.Windowing.GraphicsLibraryFramework.WindowHintBool.yml index 14757ff0..64793a21 100644 --- a/api/OpenTK.Windowing.GraphicsLibraryFramework.WindowHintBool.yml +++ b/api/OpenTK.Windowing.GraphicsLibraryFramework.WindowHintBool.yml @@ -7,6 +7,8 @@ items: children: - OpenTK.Windowing.GraphicsLibraryFramework.WindowHintBool.AutoIconify - OpenTK.Windowing.GraphicsLibraryFramework.WindowHintBool.CenterCursor + - OpenTK.Windowing.GraphicsLibraryFramework.WindowHintBool.CocoaGraphicsSwitching + - OpenTK.Windowing.GraphicsLibraryFramework.WindowHintBool.CocoaRetinaFramebuffer - OpenTK.Windowing.GraphicsLibraryFramework.WindowHintBool.ContextNoError - OpenTK.Windowing.GraphicsLibraryFramework.WindowHintBool.Decorated - OpenTK.Windowing.GraphicsLibraryFramework.WindowHintBool.DoubleBuffer @@ -20,10 +22,14 @@ items: - OpenTK.Windowing.GraphicsLibraryFramework.WindowHintBool.OpenGLDebugContext - OpenTK.Windowing.GraphicsLibraryFramework.WindowHintBool.OpenGLForwardCompat - OpenTK.Windowing.GraphicsLibraryFramework.WindowHintBool.Resizable + - OpenTK.Windowing.GraphicsLibraryFramework.WindowHintBool.ScaleFramebuffer + - OpenTK.Windowing.GraphicsLibraryFramework.WindowHintBool.ScaleToMonitor - OpenTK.Windowing.GraphicsLibraryFramework.WindowHintBool.SrgbCapable - OpenTK.Windowing.GraphicsLibraryFramework.WindowHintBool.Stereo - OpenTK.Windowing.GraphicsLibraryFramework.WindowHintBool.TransparentFramebuffer - OpenTK.Windowing.GraphicsLibraryFramework.WindowHintBool.Visible + - OpenTK.Windowing.GraphicsLibraryFramework.WindowHintBool.Win32KeyboardMenu + - OpenTK.Windowing.GraphicsLibraryFramework.WindowHintBool.Win32ShowDefault langs: - csharp - vb @@ -32,13 +38,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.WindowHintBool type: Enum source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowHintBool.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: WindowHintBool - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowHintBool.cs - startLine: 15 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\WindowHintBool.cs + startLine: 17 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -62,13 +64,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.WindowHintBool.Focused type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowHintBool.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Focused - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowHintBool.cs - startLine: 21 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\WindowHintBool.cs + startLine: 23 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -93,13 +91,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.WindowHintBool.Iconified type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowHintBool.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Iconified - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowHintBool.cs - startLine: 27 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\WindowHintBool.cs + startLine: 29 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -124,13 +118,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.WindowHintBool.Resizable type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowHintBool.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Resizable - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowHintBool.cs - startLine: 33 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\WindowHintBool.cs + startLine: 35 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -155,13 +145,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.WindowHintBool.Visible type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowHintBool.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Visible - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowHintBool.cs - startLine: 40 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\WindowHintBool.cs + startLine: 42 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -188,13 +174,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.WindowHintBool.Decorated type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowHintBool.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Decorated - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowHintBool.cs - startLine: 46 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\WindowHintBool.cs + startLine: 48 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -219,13 +201,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.WindowHintBool.AutoIconify type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowHintBool.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: AutoIconify - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowHintBool.cs - startLine: 53 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\WindowHintBool.cs + startLine: 55 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -252,13 +230,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.WindowHintBool.Floating type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowHintBool.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Floating - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowHintBool.cs - startLine: 59 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\WindowHintBool.cs + startLine: 61 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -283,13 +257,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.WindowHintBool.Maximized type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowHintBool.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Maximized - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowHintBool.cs - startLine: 65 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\WindowHintBool.cs + startLine: 67 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -314,13 +284,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.WindowHintBool.CenterCursor type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowHintBool.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CenterCursor - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowHintBool.cs - startLine: 71 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\WindowHintBool.cs + startLine: 73 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -345,13 +311,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.WindowHintBool.TransparentFramebuffer type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowHintBool.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: TransparentFramebuffer - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowHintBool.cs - startLine: 79 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\WindowHintBool.cs + startLine: 81 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -380,13 +342,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.WindowHintBool.Hovered type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowHintBool.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Hovered - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowHintBool.cs - startLine: 87 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\WindowHintBool.cs + startLine: 89 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -415,13 +373,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.WindowHintBool.FocusOnShow type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowHintBool.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: FocusOnShow - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowHintBool.cs - startLine: 93 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\WindowHintBool.cs + startLine: 95 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -446,13 +400,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.WindowHintBool.MousePassthrough type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowHintBool.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: MousePassthrough - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowHintBool.cs - startLine: 104 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\WindowHintBool.cs + startLine: 106 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -483,13 +433,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.WindowHintBool.OpenGLForwardCompat type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowHintBool.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: OpenGLForwardCompat - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowHintBool.cs - startLine: 110 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\WindowHintBool.cs + startLine: 112 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -514,13 +460,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.WindowHintBool.OpenGLDebugContext type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowHintBool.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: OpenGLDebugContext - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowHintBool.cs - startLine: 116 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\WindowHintBool.cs + startLine: 118 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -545,13 +487,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.WindowHintBool.ContextNoError type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowHintBool.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ContextNoError - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowHintBool.cs - startLine: 122 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\WindowHintBool.cs + startLine: 124 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -564,6 +502,224 @@ items: content: ContextNoError = 139274 return: type: OpenTK.Windowing.GraphicsLibraryFramework.WindowHintBool +- uid: OpenTK.Windowing.GraphicsLibraryFramework.WindowHintBool.ScaleToMonitor + commentId: F:OpenTK.Windowing.GraphicsLibraryFramework.WindowHintBool.ScaleToMonitor + id: ScaleToMonitor + parent: OpenTK.Windowing.GraphicsLibraryFramework.WindowHintBool + langs: + - csharp + - vb + name: ScaleToMonitor + nameWithType: WindowHintBool.ScaleToMonitor + fullName: OpenTK.Windowing.GraphicsLibraryFramework.WindowHintBool.ScaleToMonitor + type: Field + source: + id: ScaleToMonitor + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\WindowHintBool.cs + startLine: 134 + assemblies: + - OpenTK.Windowing.GraphicsLibraryFramework + namespace: OpenTK.Windowing.GraphicsLibraryFramework + summary: >- + Specifies whether the window content area should be resized based on content scale changes. + + This can be because of a global user settings change or because the window was moved to a monitor with different scale settings. + + + This hint only has an effect on platforms where screen coordinates and pixels always map 1:1, + + such as Windows and X11. + + On platforms like macOS the resolution of the framebuffer can change independently of the window size. + example: [] + syntax: + content: ScaleToMonitor = 139276 + return: + type: OpenTK.Windowing.GraphicsLibraryFramework.WindowHintBool +- uid: OpenTK.Windowing.GraphicsLibraryFramework.WindowHintBool.ScaleFramebuffer + commentId: F:OpenTK.Windowing.GraphicsLibraryFramework.WindowHintBool.ScaleFramebuffer + id: ScaleFramebuffer + parent: OpenTK.Windowing.GraphicsLibraryFramework.WindowHintBool + langs: + - csharp + - vb + name: ScaleFramebuffer + nameWithType: WindowHintBool.ScaleFramebuffer + fullName: OpenTK.Windowing.GraphicsLibraryFramework.WindowHintBool.ScaleFramebuffer + type: Field + source: + id: ScaleFramebuffer + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\WindowHintBool.cs + startLine: 148 + assemblies: + - OpenTK.Windowing.GraphicsLibraryFramework + namespace: OpenTK.Windowing.GraphicsLibraryFramework + summary: >- + Specifies whether the framebuffer should be resized based on content scale changes. + + This can be because of a global user settings change or because the window was moved to a monitor with different scale settings. + + + This hint only has an effect on platforms where screen coordinates can be scaled relative to pixel coordinates, + + such as macOS and Wayland. + + On platforms like Windows and X11 the framebuffer and window content area sizes always map 1:1. + + + This is the new name, introduced in GLFW 3.4. + + The older name is also available for compatibility. + + Both names modify the same hint value. + example: [] + syntax: + content: ScaleFramebuffer = 139277 + return: + type: OpenTK.Windowing.GraphicsLibraryFramework.WindowHintBool +- uid: OpenTK.Windowing.GraphicsLibraryFramework.WindowHintBool.CocoaRetinaFramebuffer + commentId: F:OpenTK.Windowing.GraphicsLibraryFramework.WindowHintBool.CocoaRetinaFramebuffer + id: CocoaRetinaFramebuffer + parent: OpenTK.Windowing.GraphicsLibraryFramework.WindowHintBool + langs: + - csharp + - vb + name: CocoaRetinaFramebuffer + nameWithType: WindowHintBool.CocoaRetinaFramebuffer + fullName: OpenTK.Windowing.GraphicsLibraryFramework.WindowHintBool.CocoaRetinaFramebuffer + type: Field + source: + id: CocoaRetinaFramebuffer + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\WindowHintBool.cs + startLine: 155 + assemblies: + - OpenTK.Windowing.GraphicsLibraryFramework + namespace: OpenTK.Windowing.GraphicsLibraryFramework + summary: >- + Specifies whether to use full resolution framebuffers on Retina displays. + + Possible values are GLFW_TRUE and GLFW_FALSE. + + This is ignored on other platforms. + example: [] + syntax: + content: >- + [Obsolete("Use ScaleFramebuffer instead.")] + + CocoaRetinaFramebuffer = 143361 + return: + type: OpenTK.Windowing.GraphicsLibraryFramework.WindowHintBool + content.vb: >- + + + CocoaRetinaFramebuffer = 143361 + attributes: + - type: System.ObsoleteAttribute + ctor: System.ObsoleteAttribute.#ctor(System.String) + arguments: + - type: System.String + value: Use ScaleFramebuffer instead. +- uid: OpenTK.Windowing.GraphicsLibraryFramework.WindowHintBool.CocoaGraphicsSwitching + commentId: F:OpenTK.Windowing.GraphicsLibraryFramework.WindowHintBool.CocoaGraphicsSwitching + id: CocoaGraphicsSwitching + parent: OpenTK.Windowing.GraphicsLibraryFramework.WindowHintBool + langs: + - csharp + - vb + name: CocoaGraphicsSwitching + nameWithType: WindowHintBool.CocoaGraphicsSwitching + fullName: OpenTK.Windowing.GraphicsLibraryFramework.WindowHintBool.CocoaGraphicsSwitching + type: Field + source: + id: CocoaGraphicsSwitching + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\WindowHintBool.cs + startLine: 169 + assemblies: + - OpenTK.Windowing.GraphicsLibraryFramework + namespace: OpenTK.Windowing.GraphicsLibraryFramework + summary: >- + Specifies whether to in Automatic Graphics Switching, i.e. + + to allow the system to choose the integrated GPU for the OpenGL context and move it between + + GPUs if necessary or whether to force it to always run on the discrete GPU. + + This only affects systems with both integrated and discrete GPUs. + + Possible values are GLFW_TRUE and GLFW_FALSE. This is ignored on other platforms. + + + Simpler programs and tools may want to enable this to save power, while games and other applications performing advanced rendering will want to leave it disabled. + + + A bundled application that wishes to participate in Automatic Graphics Switching should also declare this in its Info.plist by setting the NSSupportsAutomaticGraphicsSwitching key to true. + example: [] + syntax: + content: CocoaGraphicsSwitching = 143363 + return: + type: OpenTK.Windowing.GraphicsLibraryFramework.WindowHintBool +- uid: OpenTK.Windowing.GraphicsLibraryFramework.WindowHintBool.Win32KeyboardMenu + commentId: F:OpenTK.Windowing.GraphicsLibraryFramework.WindowHintBool.Win32KeyboardMenu + id: Win32KeyboardMenu + parent: OpenTK.Windowing.GraphicsLibraryFramework.WindowHintBool + langs: + - csharp + - vb + name: Win32KeyboardMenu + nameWithType: WindowHintBool.Win32KeyboardMenu + fullName: OpenTK.Windowing.GraphicsLibraryFramework.WindowHintBool.Win32KeyboardMenu + type: Field + source: + id: Win32KeyboardMenu + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\WindowHintBool.cs + startLine: 175 + assemblies: + - OpenTK.Windowing.GraphicsLibraryFramework + namespace: OpenTK.Windowing.GraphicsLibraryFramework + summary: >- + Specifies whether to allow access to the window menu via the Alt+Space and Alt-and-then-Space keyboard shortcuts. + + This is ignored on other platforms. + example: [] + syntax: + content: Win32KeyboardMenu = 151553 + return: + type: OpenTK.Windowing.GraphicsLibraryFramework.WindowHintBool +- uid: OpenTK.Windowing.GraphicsLibraryFramework.WindowHintBool.Win32ShowDefault + commentId: F:OpenTK.Windowing.GraphicsLibraryFramework.WindowHintBool.Win32ShowDefault + id: Win32ShowDefault + parent: OpenTK.Windowing.GraphicsLibraryFramework.WindowHintBool + langs: + - csharp + - vb + name: Win32ShowDefault + nameWithType: WindowHintBool.Win32ShowDefault + fullName: OpenTK.Windowing.GraphicsLibraryFramework.WindowHintBool.Win32ShowDefault + type: Field + source: + id: Win32ShowDefault + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\WindowHintBool.cs + startLine: 185 + assemblies: + - OpenTK.Windowing.GraphicsLibraryFramework + namespace: OpenTK.Windowing.GraphicsLibraryFramework + summary: >- + Specifies whether to show the window the way specified in the program's STARTUPINFO when it is shown for the first time. + + This is the same information as the Run option in the shortcut properties window. + + If this information was not specified when the program was started, + + GLFW behaves as if this hint was set to GLFW_FALSE. + + Possible values are GLFW_TRUE and GLFW_FALSE. + + This is ignored on other platforms. + example: [] + syntax: + content: Win32ShowDefault = 151554 + return: + type: OpenTK.Windowing.GraphicsLibraryFramework.WindowHintBool - uid: OpenTK.Windowing.GraphicsLibraryFramework.WindowHintBool.Stereo commentId: F:OpenTK.Windowing.GraphicsLibraryFramework.WindowHintBool.Stereo id: Stereo @@ -576,13 +732,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.WindowHintBool.Stereo type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowHintBool.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Stereo - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowHintBool.cs - startLine: 127 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\WindowHintBool.cs + startLine: 190 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -604,13 +756,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.WindowHintBool.DoubleBuffer type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowHintBool.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DoubleBuffer - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowHintBool.cs - startLine: 133 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\WindowHintBool.cs + startLine: 196 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -635,13 +783,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.WindowHintBool.SrgbCapable type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowHintBool.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: SrgbCapable - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowHintBool.cs - startLine: 141 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\WindowHintBool.cs + startLine: 204 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -840,3 +984,9 @@ references: href: OpenTK.Windowing.GraphicsLibraryFramework.Window.html - name: '*' - name: ) +- uid: OpenTK.Windowing.GraphicsLibraryFramework.WindowHintBool.CocoaRetinaFramebuffer + commentId: F:OpenTK.Windowing.GraphicsLibraryFramework.WindowHintBool.CocoaRetinaFramebuffer + href: OpenTK.Windowing.GraphicsLibraryFramework.WindowHintBool.html#OpenTK_Windowing_GraphicsLibraryFramework_WindowHintBool_CocoaRetinaFramebuffer + name: CocoaRetinaFramebuffer + nameWithType: WindowHintBool.CocoaRetinaFramebuffer + fullName: OpenTK.Windowing.GraphicsLibraryFramework.WindowHintBool.CocoaRetinaFramebuffer diff --git a/api/OpenTK.Windowing.GraphicsLibraryFramework.WindowHintClientApi.yml b/api/OpenTK.Windowing.GraphicsLibraryFramework.WindowHintClientApi.yml index 34c460cb..7f318723 100644 --- a/api/OpenTK.Windowing.GraphicsLibraryFramework.WindowHintClientApi.yml +++ b/api/OpenTK.Windowing.GraphicsLibraryFramework.WindowHintClientApi.yml @@ -14,12 +14,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.WindowHintClientApi type: Enum source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowHintClientApi.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: WindowHintClientApi - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowHintClientApi.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\WindowHintClientApi.cs startLine: 15 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -44,12 +40,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.WindowHintClientApi.ClientApi type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowHintClientApi.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ClientApi - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowHintClientApi.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\WindowHintClientApi.cs startLine: 23 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework diff --git a/api/OpenTK.Windowing.GraphicsLibraryFramework.WindowHintContextApi.yml b/api/OpenTK.Windowing.GraphicsLibraryFramework.WindowHintContextApi.yml index be72d47c..7d8c2c24 100644 --- a/api/OpenTK.Windowing.GraphicsLibraryFramework.WindowHintContextApi.yml +++ b/api/OpenTK.Windowing.GraphicsLibraryFramework.WindowHintContextApi.yml @@ -14,12 +14,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.WindowHintContextApi type: Enum source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowHintContextApi.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: WindowHintContextApi - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowHintContextApi.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\WindowHintContextApi.cs startLine: 15 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -44,12 +40,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.WindowHintContextApi.ContextCreationApi type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowHintContextApi.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ContextCreationApi - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowHintContextApi.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\WindowHintContextApi.cs startLine: 21 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework diff --git a/api/OpenTK.Windowing.GraphicsLibraryFramework.WindowHintInt.yml b/api/OpenTK.Windowing.GraphicsLibraryFramework.WindowHintInt.yml index 199820fb..4657097d 100644 --- a/api/OpenTK.Windowing.GraphicsLibraryFramework.WindowHintInt.yml +++ b/api/OpenTK.Windowing.GraphicsLibraryFramework.WindowHintInt.yml @@ -17,6 +17,8 @@ items: - OpenTK.Windowing.GraphicsLibraryFramework.WindowHintInt.ContextVersionMinor - OpenTK.Windowing.GraphicsLibraryFramework.WindowHintInt.DepthBits - OpenTK.Windowing.GraphicsLibraryFramework.WindowHintInt.GreenBits + - OpenTK.Windowing.GraphicsLibraryFramework.WindowHintInt.PositionX + - OpenTK.Windowing.GraphicsLibraryFramework.WindowHintInt.PositionY - OpenTK.Windowing.GraphicsLibraryFramework.WindowHintInt.RedBits - OpenTK.Windowing.GraphicsLibraryFramework.WindowHintInt.RefreshRate - OpenTK.Windowing.GraphicsLibraryFramework.WindowHintInt.Samples @@ -29,12 +31,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.WindowHintInt type: Enum source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowHintInt.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: WindowHintInt - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowHintInt.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\WindowHintInt.cs startLine: 15 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -47,6 +45,68 @@ items: seealso: - linkId: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.WindowHint(OpenTK.Windowing.GraphicsLibraryFramework.WindowHintInt,System.Int32) commentId: M:OpenTK.Windowing.GraphicsLibraryFramework.GLFW.WindowHint(OpenTK.Windowing.GraphicsLibraryFramework.WindowHintInt,System.Int32) +- uid: OpenTK.Windowing.GraphicsLibraryFramework.WindowHintInt.PositionX + commentId: F:OpenTK.Windowing.GraphicsLibraryFramework.WindowHintInt.PositionX + id: PositionX + parent: OpenTK.Windowing.GraphicsLibraryFramework.WindowHintInt + langs: + - csharp + - vb + name: PositionX + nameWithType: WindowHintInt.PositionX + fullName: OpenTK.Windowing.GraphicsLibraryFramework.WindowHintInt.PositionX + type: Field + source: + id: PositionX + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\WindowHintInt.cs + startLine: 23 + assemblies: + - OpenTK.Windowing.GraphicsLibraryFramework + namespace: OpenTK.Windowing.GraphicsLibraryFramework + summary: >- + Specifies the desired initial x position of the window. + + The window manager may modify or ignore these coordinates. + + If either or both of these hints are set to then the window manager will position the window where it thinks the user will prefer it. + + Possible values are any valid screen coordinates and . + example: [] + syntax: + content: PositionX = 131086 + return: + type: OpenTK.Windowing.GraphicsLibraryFramework.WindowHintInt +- uid: OpenTK.Windowing.GraphicsLibraryFramework.WindowHintInt.PositionY + commentId: F:OpenTK.Windowing.GraphicsLibraryFramework.WindowHintInt.PositionY + id: PositionY + parent: OpenTK.Windowing.GraphicsLibraryFramework.WindowHintInt + langs: + - csharp + - vb + name: PositionY + nameWithType: WindowHintInt.PositionY + fullName: OpenTK.Windowing.GraphicsLibraryFramework.WindowHintInt.PositionY + type: Field + source: + id: PositionY + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\WindowHintInt.cs + startLine: 31 + assemblies: + - OpenTK.Windowing.GraphicsLibraryFramework + namespace: OpenTK.Windowing.GraphicsLibraryFramework + summary: >- + Specifies the desired initial y position of the window. + + The window manager may modify or ignore these coordinates. + + If either or both of these hints are set to then the window manager will position the window where it thinks the user will prefer it. + + Possible values are any valid screen coordinates and . + example: [] + syntax: + content: PositionY = 131087 + return: + type: OpenTK.Windowing.GraphicsLibraryFramework.WindowHintInt - uid: OpenTK.Windowing.GraphicsLibraryFramework.WindowHintInt.ContextVersionMajor commentId: F:OpenTK.Windowing.GraphicsLibraryFramework.WindowHintInt.ContextVersionMajor id: ContextVersionMajor @@ -59,13 +119,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.WindowHintInt.ContextVersionMajor type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowHintInt.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ContextVersionMajor - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowHintInt.cs - startLine: 20 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\WindowHintInt.cs + startLine: 36 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -87,13 +143,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.WindowHintInt.ContextVersionMinor type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowHintInt.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ContextVersionMinor - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowHintInt.cs - startLine: 25 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\WindowHintInt.cs + startLine: 41 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -115,13 +167,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.WindowHintInt.ContextRevision type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowHintInt.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ContextRevision - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowHintInt.cs - startLine: 30 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\WindowHintInt.cs + startLine: 46 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -143,13 +191,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.WindowHintInt.RedBits type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowHintInt.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: RedBits - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowHintInt.cs - startLine: 36 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\WindowHintInt.cs + startLine: 52 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -174,13 +218,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.WindowHintInt.GreenBits type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowHintInt.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: GreenBits - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowHintInt.cs - startLine: 42 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\WindowHintInt.cs + startLine: 58 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -205,13 +245,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.WindowHintInt.BlueBits type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowHintInt.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: BlueBits - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowHintInt.cs - startLine: 48 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\WindowHintInt.cs + startLine: 64 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -236,13 +272,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.WindowHintInt.AlphaBits type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowHintInt.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: AlphaBits - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowHintInt.cs - startLine: 54 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\WindowHintInt.cs + startLine: 70 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -267,13 +299,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.WindowHintInt.DepthBits type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowHintInt.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: DepthBits - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowHintInt.cs - startLine: 60 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\WindowHintInt.cs + startLine: 76 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -298,13 +326,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.WindowHintInt.StencilBits type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowHintInt.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: StencilBits - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowHintInt.cs - startLine: 66 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\WindowHintInt.cs + startLine: 82 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -329,13 +353,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.WindowHintInt.AccumRedBits type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowHintInt.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: AccumRedBits - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowHintInt.cs - startLine: 73 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\WindowHintInt.cs + startLine: 89 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -361,13 +381,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.WindowHintInt.AccumGreenBits type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowHintInt.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: AccumGreenBits - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowHintInt.cs - startLine: 80 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\WindowHintInt.cs + startLine: 96 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -393,13 +409,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.WindowHintInt.AccumBlueBits type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowHintInt.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: AccumBlueBits - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowHintInt.cs - startLine: 87 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\WindowHintInt.cs + startLine: 103 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -425,13 +437,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.WindowHintInt.AccumAlphaBits type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowHintInt.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: AccumAlphaBits - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowHintInt.cs - startLine: 94 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\WindowHintInt.cs + startLine: 110 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -457,13 +465,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.WindowHintInt.AuxBuffers type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowHintInt.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: AuxBuffers - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowHintInt.cs - startLine: 101 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\WindowHintInt.cs + startLine: 117 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -489,13 +493,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.WindowHintInt.Samples type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowHintInt.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: Samples - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowHintInt.cs - startLine: 107 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\WindowHintInt.cs + startLine: 123 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -520,13 +520,9 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.WindowHintInt.RefreshRate type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowHintInt.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: RefreshRate - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowHintInt.cs - startLine: 114 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\WindowHintInt.cs + startLine: 130 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework namespace: OpenTK.Windowing.GraphicsLibraryFramework @@ -612,6 +608,12 @@ references: - uid: OpenTK.Windowing.GraphicsLibraryFramework name: GraphicsLibraryFramework href: OpenTK.Windowing.GraphicsLibraryFramework.html +- uid: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.AnyPosition + commentId: F:OpenTK.Windowing.GraphicsLibraryFramework.GLFW.AnyPosition + href: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.html#OpenTK_Windowing_GraphicsLibraryFramework_GLFW_AnyPosition + name: AnyPosition + nameWithType: GLFW.AnyPosition + fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFW.AnyPosition - uid: OpenTK.Windowing.GraphicsLibraryFramework.WindowHintInt commentId: T:OpenTK.Windowing.GraphicsLibraryFramework.WindowHintInt parent: OpenTK.Windowing.GraphicsLibraryFramework diff --git a/api/OpenTK.Windowing.GraphicsLibraryFramework.WindowHintOpenGlProfile.yml b/api/OpenTK.Windowing.GraphicsLibraryFramework.WindowHintOpenGlProfile.yml index a3870ca0..7190c907 100644 --- a/api/OpenTK.Windowing.GraphicsLibraryFramework.WindowHintOpenGlProfile.yml +++ b/api/OpenTK.Windowing.GraphicsLibraryFramework.WindowHintOpenGlProfile.yml @@ -14,12 +14,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.WindowHintOpenGlProfile type: Enum source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowHintOpenGlProfile.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: WindowHintOpenGlProfile - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowHintOpenGlProfile.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\WindowHintOpenGlProfile.cs startLine: 15 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -44,12 +40,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.WindowHintOpenGlProfile.OpenGlProfile type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowHintOpenGlProfile.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: OpenGlProfile - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowHintOpenGlProfile.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\WindowHintOpenGlProfile.cs startLine: 26 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework diff --git a/api/OpenTK.Windowing.GraphicsLibraryFramework.WindowHintReleaseBehavior.yml b/api/OpenTK.Windowing.GraphicsLibraryFramework.WindowHintReleaseBehavior.yml index 96b81fad..edfb499a 100644 --- a/api/OpenTK.Windowing.GraphicsLibraryFramework.WindowHintReleaseBehavior.yml +++ b/api/OpenTK.Windowing.GraphicsLibraryFramework.WindowHintReleaseBehavior.yml @@ -14,12 +14,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.WindowHintReleaseBehavior type: Enum source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowHintReleaseBehavior.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: WindowHintReleaseBehavior - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowHintReleaseBehavior.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\WindowHintReleaseBehavior.cs startLine: 15 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -44,12 +40,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.WindowHintReleaseBehavior.ContextReleaseBehavior type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowHintReleaseBehavior.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ContextReleaseBehavior - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowHintReleaseBehavior.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\WindowHintReleaseBehavior.cs startLine: 27 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework diff --git a/api/OpenTK.Windowing.GraphicsLibraryFramework.WindowHintRobustness.yml b/api/OpenTK.Windowing.GraphicsLibraryFramework.WindowHintRobustness.yml index 2ee5aeb3..7e41534f 100644 --- a/api/OpenTK.Windowing.GraphicsLibraryFramework.WindowHintRobustness.yml +++ b/api/OpenTK.Windowing.GraphicsLibraryFramework.WindowHintRobustness.yml @@ -14,12 +14,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.WindowHintRobustness type: Enum source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowHintRobustness.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: WindowHintRobustness - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowHintRobustness.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\WindowHintRobustness.cs startLine: 15 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -44,12 +40,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.WindowHintRobustness.ContextRobustness type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowHintRobustness.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: ContextRobustness - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowHintRobustness.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\WindowHintRobustness.cs startLine: 22 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework diff --git a/api/OpenTK.Windowing.GraphicsLibraryFramework.WindowHintString.yml b/api/OpenTK.Windowing.GraphicsLibraryFramework.WindowHintString.yml index 4d8e090b..a1bdc328 100644 --- a/api/OpenTK.Windowing.GraphicsLibraryFramework.WindowHintString.yml +++ b/api/OpenTK.Windowing.GraphicsLibraryFramework.WindowHintString.yml @@ -6,6 +6,7 @@ items: parent: OpenTK.Windowing.GraphicsLibraryFramework children: - OpenTK.Windowing.GraphicsLibraryFramework.WindowHintString.CocoaFrameName + - OpenTK.Windowing.GraphicsLibraryFramework.WindowHintString.WaylandAppID - OpenTK.Windowing.GraphicsLibraryFramework.WindowHintString.X11ClassName - OpenTK.Windowing.GraphicsLibraryFramework.WindowHintString.X11InstanceName langs: @@ -16,12 +17,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.WindowHintString type: Enum source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowHintString.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: WindowHintString - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowHintString.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\WindowHintString.cs startLine: 5 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -43,12 +40,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.WindowHintString.CocoaFrameName type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowHintString.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: CocoaFrameName - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowHintString.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\WindowHintString.cs startLine: 10 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -71,12 +64,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.WindowHintString.X11ClassName type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowHintString.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: X11ClassName - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowHintString.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\WindowHintString.cs startLine: 15 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -99,12 +88,8 @@ items: fullName: OpenTK.Windowing.GraphicsLibraryFramework.WindowHintString.X11InstanceName type: Field source: - remote: - path: src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowHintString.cs - branch: pal2-work - repo: https://github.com/opentk/opentk.git id: X11InstanceName - path: opentk/src/OpenTK.Windowing.GraphicsLibraryFramework/Enums/WindowHintString.cs + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\WindowHintString.cs startLine: 20 assemblies: - OpenTK.Windowing.GraphicsLibraryFramework @@ -115,6 +100,30 @@ items: content: X11InstanceName = 147458 return: type: OpenTK.Windowing.GraphicsLibraryFramework.WindowHintString +- uid: OpenTK.Windowing.GraphicsLibraryFramework.WindowHintString.WaylandAppID + commentId: F:OpenTK.Windowing.GraphicsLibraryFramework.WindowHintString.WaylandAppID + id: WaylandAppID + parent: OpenTK.Windowing.GraphicsLibraryFramework.WindowHintString + langs: + - csharp + - vb + name: WaylandAppID + nameWithType: WindowHintString.WaylandAppID + fullName: OpenTK.Windowing.GraphicsLibraryFramework.WindowHintString.WaylandAppID + type: Field + source: + id: WaylandAppID + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Windowing.GraphicsLibraryFramework\Enums\WindowHintString.cs + startLine: 25 + assemblies: + - OpenTK.Windowing.GraphicsLibraryFramework + namespace: OpenTK.Windowing.GraphicsLibraryFramework + summary: Specifies the Wayland app_id for a window, used by window managers to identify types of windows. + example: [] + syntax: + content: WaylandAppID = 155649 + return: + type: OpenTK.Windowing.GraphicsLibraryFramework.WindowHintString references: - uid: OpenTK.Windowing.GraphicsLibraryFramework commentId: N:OpenTK.Windowing.GraphicsLibraryFramework diff --git a/api/OpenTK.Windowing.GraphicsLibraryFramework.yml b/api/OpenTK.Windowing.GraphicsLibraryFramework.yml index ed5e0a2b..6eff71a0 100644 --- a/api/OpenTK.Windowing.GraphicsLibraryFramework.yml +++ b/api/OpenTK.Windowing.GraphicsLibraryFramework.yml @@ -4,6 +4,7 @@ items: commentId: N:OpenTK.Windowing.GraphicsLibraryFramework id: OpenTK.Windowing.GraphicsLibraryFramework children: + - OpenTK.Windowing.GraphicsLibraryFramework.ANGLEPlatformType - OpenTK.Windowing.GraphicsLibraryFramework.ClientApi - OpenTK.Windowing.GraphicsLibraryFramework.ConnectedState - OpenTK.Windowing.GraphicsLibraryFramework.ContextApi @@ -36,11 +37,17 @@ items: - OpenTK.Windowing.GraphicsLibraryFramework.GLFWCallbacks.WindowRefreshCallback - OpenTK.Windowing.GraphicsLibraryFramework.GLFWCallbacks.WindowSizeCallback - OpenTK.Windowing.GraphicsLibraryFramework.GLFWException + - OpenTK.Windowing.GraphicsLibraryFramework.GLFWallocatefun + - OpenTK.Windowing.GraphicsLibraryFramework.GLFWallocator + - OpenTK.Windowing.GraphicsLibraryFramework.GLFWdeallocatefun + - OpenTK.Windowing.GraphicsLibraryFramework.GLFWreallocatefun - OpenTK.Windowing.GraphicsLibraryFramework.GamepadState - OpenTK.Windowing.GraphicsLibraryFramework.GammaRamp - OpenTK.Windowing.GraphicsLibraryFramework.Image + - OpenTK.Windowing.GraphicsLibraryFramework.InitHintANGLEPlatformType - OpenTK.Windowing.GraphicsLibraryFramework.InitHintBool - OpenTK.Windowing.GraphicsLibraryFramework.InitHintInt + - OpenTK.Windowing.GraphicsLibraryFramework.InitHintPlatform - OpenTK.Windowing.GraphicsLibraryFramework.InputAction - OpenTK.Windowing.GraphicsLibraryFramework.JoystickHats - OpenTK.Windowing.GraphicsLibraryFramework.JoystickInputAction @@ -53,12 +60,14 @@ items: - OpenTK.Windowing.GraphicsLibraryFramework.MouseButton - OpenTK.Windowing.GraphicsLibraryFramework.MouseState - OpenTK.Windowing.GraphicsLibraryFramework.OpenGlProfile + - OpenTK.Windowing.GraphicsLibraryFramework.Platform - OpenTK.Windowing.GraphicsLibraryFramework.RawMouseMotionAttribute - OpenTK.Windowing.GraphicsLibraryFramework.ReleaseBehavior - OpenTK.Windowing.GraphicsLibraryFramework.Robustness - OpenTK.Windowing.GraphicsLibraryFramework.StickyAttributes - OpenTK.Windowing.GraphicsLibraryFramework.VideoMode - OpenTK.Windowing.GraphicsLibraryFramework.VkHandle + - OpenTK.Windowing.GraphicsLibraryFramework.WaylandLibDecor - OpenTK.Windowing.GraphicsLibraryFramework.Window - OpenTK.Windowing.GraphicsLibraryFramework.WindowAttribute - OpenTK.Windowing.GraphicsLibraryFramework.WindowAttributeGetBool @@ -92,6 +101,13 @@ references: name: Cursor nameWithType: Cursor fullName: OpenTK.Windowing.GraphicsLibraryFramework.Cursor +- uid: OpenTK.Windowing.GraphicsLibraryFramework.ANGLEPlatformType + commentId: T:OpenTK.Windowing.GraphicsLibraryFramework.ANGLEPlatformType + parent: OpenTK.Windowing.GraphicsLibraryFramework + href: OpenTK.Windowing.GraphicsLibraryFramework.ANGLEPlatformType.html + name: ANGLEPlatformType + nameWithType: ANGLEPlatformType + fullName: OpenTK.Windowing.GraphicsLibraryFramework.ANGLEPlatformType - uid: OpenTK.Windowing.GraphicsLibraryFramework.ClientApi commentId: T:OpenTK.Windowing.GraphicsLibraryFramework.ClientApi parent: OpenTK.Windowing.GraphicsLibraryFramework @@ -141,6 +157,13 @@ references: name: ErrorCode nameWithType: ErrorCode fullName: OpenTK.Windowing.GraphicsLibraryFramework.ErrorCode +- uid: OpenTK.Windowing.GraphicsLibraryFramework.InitHintANGLEPlatformType + commentId: T:OpenTK.Windowing.GraphicsLibraryFramework.InitHintANGLEPlatformType + parent: OpenTK.Windowing.GraphicsLibraryFramework + href: OpenTK.Windowing.GraphicsLibraryFramework.InitHintANGLEPlatformType.html + name: InitHintANGLEPlatformType + nameWithType: InitHintANGLEPlatformType + fullName: OpenTK.Windowing.GraphicsLibraryFramework.InitHintANGLEPlatformType - uid: OpenTK.Windowing.GraphicsLibraryFramework.InitHintBool commentId: T:OpenTK.Windowing.GraphicsLibraryFramework.InitHintBool parent: OpenTK.Windowing.GraphicsLibraryFramework @@ -155,6 +178,13 @@ references: name: InitHintInt nameWithType: InitHintInt fullName: OpenTK.Windowing.GraphicsLibraryFramework.InitHintInt +- uid: OpenTK.Windowing.GraphicsLibraryFramework.InitHintPlatform + commentId: T:OpenTK.Windowing.GraphicsLibraryFramework.InitHintPlatform + parent: OpenTK.Windowing.GraphicsLibraryFramework + href: OpenTK.Windowing.GraphicsLibraryFramework.InitHintPlatform.html + name: InitHintPlatform + nameWithType: InitHintPlatform + fullName: OpenTK.Windowing.GraphicsLibraryFramework.InitHintPlatform - uid: OpenTK.Windowing.GraphicsLibraryFramework.InputAction commentId: T:OpenTK.Windowing.GraphicsLibraryFramework.InputAction parent: OpenTK.Windowing.GraphicsLibraryFramework @@ -211,6 +241,13 @@ references: name: OpenGlProfile nameWithType: OpenGlProfile fullName: OpenTK.Windowing.GraphicsLibraryFramework.OpenGlProfile +- uid: OpenTK.Windowing.GraphicsLibraryFramework.Platform + commentId: T:OpenTK.Windowing.GraphicsLibraryFramework.Platform + parent: OpenTK.Windowing.GraphicsLibraryFramework + href: OpenTK.Windowing.GraphicsLibraryFramework.Platform.html + name: Platform + nameWithType: Platform + fullName: OpenTK.Windowing.GraphicsLibraryFramework.Platform - uid: OpenTK.Windowing.GraphicsLibraryFramework.RawMouseMotionAttribute commentId: T:OpenTK.Windowing.GraphicsLibraryFramework.RawMouseMotionAttribute parent: OpenTK.Windowing.GraphicsLibraryFramework @@ -239,6 +276,13 @@ references: name: StickyAttributes nameWithType: StickyAttributes fullName: OpenTK.Windowing.GraphicsLibraryFramework.StickyAttributes +- uid: OpenTK.Windowing.GraphicsLibraryFramework.WaylandLibDecor + commentId: T:OpenTK.Windowing.GraphicsLibraryFramework.WaylandLibDecor + parent: OpenTK.Windowing.GraphicsLibraryFramework + href: OpenTK.Windowing.GraphicsLibraryFramework.WaylandLibDecor.html + name: WaylandLibDecor + nameWithType: WaylandLibDecor + fullName: OpenTK.Windowing.GraphicsLibraryFramework.WaylandLibDecor - uid: OpenTK.Windowing.GraphicsLibraryFramework.WindowAttribute commentId: T:OpenTK.Windowing.GraphicsLibraryFramework.WindowAttribute parent: OpenTK.Windowing.GraphicsLibraryFramework @@ -835,6 +879,34 @@ references: - uid: OpenTK.Windowing.GraphicsLibraryFramework.GLFWCallbacks.WindowRefreshCallback name: WindowRefreshCallback href: OpenTK.Windowing.GraphicsLibraryFramework.GLFWCallbacks.WindowRefreshCallback.html +- uid: OpenTK.Windowing.GraphicsLibraryFramework.GLFWallocatefun + commentId: T:OpenTK.Windowing.GraphicsLibraryFramework.GLFWallocatefun + parent: OpenTK.Windowing.GraphicsLibraryFramework + href: OpenTK.Windowing.GraphicsLibraryFramework.GLFWallocatefun.html + name: GLFWallocatefun + nameWithType: GLFWallocatefun + fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFWallocatefun +- uid: OpenTK.Windowing.GraphicsLibraryFramework.GLFWreallocatefun + commentId: T:OpenTK.Windowing.GraphicsLibraryFramework.GLFWreallocatefun + parent: OpenTK.Windowing.GraphicsLibraryFramework + href: OpenTK.Windowing.GraphicsLibraryFramework.GLFWreallocatefun.html + name: GLFWreallocatefun + nameWithType: GLFWreallocatefun + fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFWreallocatefun +- uid: OpenTK.Windowing.GraphicsLibraryFramework.GLFWdeallocatefun + commentId: T:OpenTK.Windowing.GraphicsLibraryFramework.GLFWdeallocatefun + parent: OpenTK.Windowing.GraphicsLibraryFramework + href: OpenTK.Windowing.GraphicsLibraryFramework.GLFWdeallocatefun.html + name: GLFWdeallocatefun + nameWithType: GLFWdeallocatefun + fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFWdeallocatefun +- uid: OpenTK.Windowing.GraphicsLibraryFramework.GLFWallocator + commentId: T:OpenTK.Windowing.GraphicsLibraryFramework.GLFWallocator + parent: OpenTK.Windowing.GraphicsLibraryFramework + href: OpenTK.Windowing.GraphicsLibraryFramework.GLFWallocator.html + name: GLFWallocator + nameWithType: GLFWallocator + fullName: OpenTK.Windowing.GraphicsLibraryFramework.GLFWallocator - uid: OpenTK.Windowing.GraphicsLibraryFramework.GLFWException commentId: T:OpenTK.Windowing.GraphicsLibraryFramework.GLFWException href: OpenTK.Windowing.GraphicsLibraryFramework.GLFWException.html diff --git a/api/toc.yml b/api/toc.yml index 111e934a..86ffff9b 100644 --- a/api/toc.yml +++ b/api/toc.yml @@ -289,205 +289,6 @@ items: name: MarshalTk - uid: OpenTK.Core.Native.SlotAttribute name: SlotAttribute -- uid: OpenTK.Core.Platform - name: OpenTK.Core.Platform - items: - - uid: OpenTK.Core.Platform.AppTheme - name: AppTheme - - uid: OpenTK.Core.Platform.AudioData - name: AudioData - - uid: OpenTK.Core.Platform.BatteryInfo - name: BatteryInfo - - uid: OpenTK.Core.Platform.BatteryStatus - name: BatteryStatus - - uid: OpenTK.Core.Platform.Bitmap - name: Bitmap - - uid: OpenTK.Core.Platform.ClipboardFormat - name: ClipboardFormat - - uid: OpenTK.Core.Platform.ClipboardUpdateEventArgs - name: ClipboardUpdateEventArgs - - uid: OpenTK.Core.Platform.CloseEventArgs - name: CloseEventArgs - - uid: OpenTK.Core.Platform.ContextDepthBits - name: ContextDepthBits - - uid: OpenTK.Core.Platform.ContextPixelFormat - name: ContextPixelFormat - - uid: OpenTK.Core.Platform.ContextReleaseBehaviour - name: ContextReleaseBehaviour - - uid: OpenTK.Core.Platform.ContextResetNotificationStrategy - name: ContextResetNotificationStrategy - - uid: OpenTK.Core.Platform.ContextStencilBits - name: ContextStencilBits - - uid: OpenTK.Core.Platform.ContextSwapMethod - name: ContextSwapMethod - - uid: OpenTK.Core.Platform.ContextValueSelector - name: ContextValueSelector - - uid: OpenTK.Core.Platform.ContextValues - name: ContextValues - - uid: OpenTK.Core.Platform.CursorCaptureMode - name: CursorCaptureMode - - uid: OpenTK.Core.Platform.CursorHandle - name: CursorHandle - - uid: OpenTK.Core.Platform.DialogFileFilter - name: DialogFileFilter - - uid: OpenTK.Core.Platform.DisplayConnectionChangedEventArgs - name: DisplayConnectionChangedEventArgs - - uid: OpenTK.Core.Platform.DisplayHandle - name: DisplayHandle - - uid: OpenTK.Core.Platform.DisplayResolution - name: DisplayResolution - - uid: OpenTK.Core.Platform.EventQueue - name: EventQueue - - uid: OpenTK.Core.Platform.FileDropEventArgs - name: FileDropEventArgs - - uid: OpenTK.Core.Platform.FocusEventArgs - name: FocusEventArgs - - uid: OpenTK.Core.Platform.GamepadBatteryInfo - name: GamepadBatteryInfo - - uid: OpenTK.Core.Platform.GamepadBatteryType - name: GamepadBatteryType - - uid: OpenTK.Core.Platform.GraphicsApi - name: GraphicsApi - - uid: OpenTK.Core.Platform.GraphicsApiHints - name: GraphicsApiHints - - uid: OpenTK.Core.Platform.HitTest - name: HitTest - - uid: OpenTK.Core.Platform.HitType - name: HitType - - uid: OpenTK.Core.Platform.IClipboardComponent - name: IClipboardComponent - - uid: OpenTK.Core.Platform.ICursorComponent - name: ICursorComponent - - uid: OpenTK.Core.Platform.IDialogComponent - name: IDialogComponent - - uid: OpenTK.Core.Platform.IDisplayComponent - name: IDisplayComponent - - uid: OpenTK.Core.Platform.IIconComponent - name: IIconComponent - - uid: OpenTK.Core.Platform.IJoystickComponent - name: IJoystickComponent - - uid: OpenTK.Core.Platform.IKeyboardComponent - name: IKeyboardComponent - - uid: OpenTK.Core.Platform.IMouseComponent - name: IMouseComponent - - uid: OpenTK.Core.Platform.IOpenGLComponent - name: IOpenGLComponent - - uid: OpenTK.Core.Platform.IPalComponent - name: IPalComponent - - uid: OpenTK.Core.Platform.IShellComponent - name: IShellComponent - - uid: OpenTK.Core.Platform.ISurfaceComponent - name: ISurfaceComponent - - uid: OpenTK.Core.Platform.IWindowComponent - name: IWindowComponent - - uid: OpenTK.Core.Platform.IconHandle - name: IconHandle - - uid: OpenTK.Core.Platform.InputLanguageChangedEventArgs - name: InputLanguageChangedEventArgs - - uid: OpenTK.Core.Platform.JoystickAxis - name: JoystickAxis - - uid: OpenTK.Core.Platform.JoystickButton - name: JoystickButton - - uid: OpenTK.Core.Platform.JoystickHandle - name: JoystickHandle - - uid: OpenTK.Core.Platform.Key - name: Key - - uid: OpenTK.Core.Platform.KeyDownEventArgs - name: KeyDownEventArgs - - uid: OpenTK.Core.Platform.KeyModifier - name: KeyModifier - - uid: OpenTK.Core.Platform.KeyUpEventArgs - name: KeyUpEventArgs - - uid: OpenTK.Core.Platform.MouseButton - name: MouseButton - - uid: OpenTK.Core.Platform.MouseButtonDownEventArgs - name: MouseButtonDownEventArgs - - uid: OpenTK.Core.Platform.MouseButtonFlags - name: MouseButtonFlags - - uid: OpenTK.Core.Platform.MouseButtonUpEventArgs - name: MouseButtonUpEventArgs - - uid: OpenTK.Core.Platform.MouseEnterEventArgs - name: MouseEnterEventArgs - - uid: OpenTK.Core.Platform.MouseHandle - name: MouseHandle - - uid: OpenTK.Core.Platform.MouseMoveEventArgs - name: MouseMoveEventArgs - - uid: OpenTK.Core.Platform.MouseState - name: MouseState - - uid: OpenTK.Core.Platform.OpenDialogOptions - name: OpenDialogOptions - - uid: OpenTK.Core.Platform.OpenGLContextHandle - name: OpenGLContextHandle - - uid: OpenTK.Core.Platform.OpenGLGraphicsApiHints - name: OpenGLGraphicsApiHints - - uid: OpenTK.Core.Platform.OpenGLProfile - name: OpenGLProfile - - uid: OpenTK.Core.Platform.Pal2BindingsContext - name: Pal2BindingsContext - - uid: OpenTK.Core.Platform.PalComponents - name: PalComponents - - uid: OpenTK.Core.Platform.PalException - name: PalException - - uid: OpenTK.Core.Platform.PalHandle - name: PalHandle - - uid: OpenTK.Core.Platform.PalNotImplementedException - name: PalNotImplementedException - - uid: OpenTK.Core.Platform.PlatformEventHandler - name: PlatformEventHandler - - uid: OpenTK.Core.Platform.PlatformEventType - name: PlatformEventType - - uid: OpenTK.Core.Platform.PlatformException - name: PlatformException - - uid: OpenTK.Core.Platform.PowerStateChangeEventArgs - name: PowerStateChangeEventArgs - - uid: OpenTK.Core.Platform.SaveDialogOptions - name: SaveDialogOptions - - uid: OpenTK.Core.Platform.Scancode - name: Scancode - - uid: OpenTK.Core.Platform.ScrollEventArgs - name: ScrollEventArgs - - uid: OpenTK.Core.Platform.SurfaceHandle - name: SurfaceHandle - - uid: OpenTK.Core.Platform.SurfaceType - name: SurfaceType - - uid: OpenTK.Core.Platform.SystemCursorType - name: SystemCursorType - - uid: OpenTK.Core.Platform.SystemIconType - name: SystemIconType - - uid: OpenTK.Core.Platform.SystemMemoryInfo - name: SystemMemoryInfo - - uid: OpenTK.Core.Platform.TextEditingEventArgs - name: TextEditingEventArgs - - uid: OpenTK.Core.Platform.TextInputEventArgs - name: TextInputEventArgs - - uid: OpenTK.Core.Platform.ThemeChangeEventArgs - name: ThemeChangeEventArgs - - uid: OpenTK.Core.Platform.ThemeInfo - name: ThemeInfo - - uid: OpenTK.Core.Platform.ToolkitOptions - name: ToolkitOptions - - uid: OpenTK.Core.Platform.VideoMode - name: VideoMode - - uid: OpenTK.Core.Platform.WindowBorderStyle - name: WindowBorderStyle - - uid: OpenTK.Core.Platform.WindowEventArgs - name: WindowEventArgs - - uid: OpenTK.Core.Platform.WindowEventHandler - name: WindowEventHandler - - uid: OpenTK.Core.Platform.WindowFramebufferResizeEventArgs - name: WindowFramebufferResizeEventArgs - - uid: OpenTK.Core.Platform.WindowHandle - name: WindowHandle - - uid: OpenTK.Core.Platform.WindowMode - name: WindowMode - - uid: OpenTK.Core.Platform.WindowModeChangeEventArgs - name: WindowModeChangeEventArgs - - uid: OpenTK.Core.Platform.WindowMoveEventArgs - name: WindowMoveEventArgs - - uid: OpenTK.Core.Platform.WindowResizeEventArgs - name: WindowResizeEventArgs - - uid: OpenTK.Core.Platform.WindowScaleChangeEventArgs - name: WindowScaleChangeEventArgs - uid: OpenTK.Core.Utility name: OpenTK.Core.Utility items: @@ -544,6 +345,8 @@ items: name: TextureHandle - uid: OpenTK.Graphics.TransformFeedbackHandle name: TransformFeedbackHandle + - uid: OpenTK.Graphics.VKLoader + name: VKLoader - uid: OpenTK.Graphics.VertexArrayHandle name: VertexArrayHandle - uid: OpenTK.Graphics.WGLLoader @@ -649,12 +452,20 @@ items: name: All - uid: OpenTK.Graphics.Wgl.ColorBuffer name: ColorBuffer + - uid: OpenTK.Graphics.Wgl.ColorBufferMask + name: ColorBufferMask - uid: OpenTK.Graphics.Wgl.ColorRef name: ColorRef - uid: OpenTK.Graphics.Wgl.ContextAttribs name: ContextAttribs - uid: OpenTK.Graphics.Wgl.ContextAttribute name: ContextAttribute + - uid: OpenTK.Graphics.Wgl.ContextFlagsMask + name: ContextFlagsMask + - uid: OpenTK.Graphics.Wgl.ContextProfileMask + name: ContextProfileMask + - uid: OpenTK.Graphics.Wgl.DXInteropMaskNV + name: DXInteropMaskNV - uid: OpenTK.Graphics.Wgl.DigitalVideoAttribute name: DigitalVideoAttribute - uid: OpenTK.Graphics.Wgl.FontFormat @@ -663,8 +474,12 @@ items: name: GPUPropertyAMD - uid: OpenTK.Graphics.Wgl.GammaTableAttribute name: GammaTableAttribute + - uid: OpenTK.Graphics.Wgl.ImageBufferMaskI3D + name: ImageBufferMaskI3D - uid: OpenTK.Graphics.Wgl.LayerPlaneDescriptor name: LayerPlaneDescriptor + - uid: OpenTK.Graphics.Wgl.LayerPlaneMask + name: LayerPlaneMask - uid: OpenTK.Graphics.Wgl.ObjectTypeDX name: ObjectTypeDX - uid: OpenTK.Graphics.Wgl.PBufferAttribute @@ -693,18 +508,6 @@ items: name: VideoOutputBuffer - uid: OpenTK.Graphics.Wgl.VideoOutputBufferType name: VideoOutputBufferType - - uid: OpenTK.Graphics.Wgl.WGLColorBufferMask - name: WGLColorBufferMask - - uid: OpenTK.Graphics.Wgl.WGLContextFlagsMask - name: WGLContextFlagsMask - - uid: OpenTK.Graphics.Wgl.WGLContextProfileMask - name: WGLContextProfileMask - - uid: OpenTK.Graphics.Wgl.WGLDXInteropMaskNV - name: WGLDXInteropMaskNV - - uid: OpenTK.Graphics.Wgl.WGLImageBufferMaskI3D - name: WGLImageBufferMaskI3D - - uid: OpenTK.Graphics.Wgl.WGLLayerPlaneMask - name: WGLLayerPlaneMask - uid: OpenTK.Graphics.Wgl.Wgl name: Wgl - uid: OpenTK.Graphics.Wgl.Wgl.AMD @@ -851,6 +654,221 @@ items: name: Vector4h - uid: OpenTK.Mathematics.Vector4i name: Vector4i +- uid: OpenTK.Platform + name: OpenTK.Platform + items: + - uid: OpenTK.Platform.AppTheme + name: AppTheme + - uid: OpenTK.Platform.AudioData + name: AudioData + - uid: OpenTK.Platform.BatteryInfo + name: BatteryInfo + - uid: OpenTK.Platform.BatteryStatus + name: BatteryStatus + - uid: OpenTK.Platform.Bitmap + name: Bitmap + - uid: OpenTK.Platform.ClipboardFormat + name: ClipboardFormat + - uid: OpenTK.Platform.ClipboardUpdateEventArgs + name: ClipboardUpdateEventArgs + - uid: OpenTK.Platform.CloseEventArgs + name: CloseEventArgs + - uid: OpenTK.Platform.ContextDepthBits + name: ContextDepthBits + - uid: OpenTK.Platform.ContextPixelFormat + name: ContextPixelFormat + - uid: OpenTK.Platform.ContextReleaseBehaviour + name: ContextReleaseBehaviour + - uid: OpenTK.Platform.ContextResetNotificationStrategy + name: ContextResetNotificationStrategy + - uid: OpenTK.Platform.ContextStencilBits + name: ContextStencilBits + - uid: OpenTK.Platform.ContextSwapMethod + name: ContextSwapMethod + - uid: OpenTK.Platform.ContextValueSelector + name: ContextValueSelector + - uid: OpenTK.Platform.ContextValues + name: ContextValues + - uid: OpenTK.Platform.CursorCaptureMode + name: CursorCaptureMode + - uid: OpenTK.Platform.CursorHandle + name: CursorHandle + - uid: OpenTK.Platform.DialogFileFilter + name: DialogFileFilter + - uid: OpenTK.Platform.DisplayConnectionChangedEventArgs + name: DisplayConnectionChangedEventArgs + - uid: OpenTK.Platform.DisplayHandle + name: DisplayHandle + - uid: OpenTK.Platform.DisplayResolution + name: DisplayResolution + - uid: OpenTK.Platform.EventQueue + name: EventQueue + - uid: OpenTK.Platform.FileDropEventArgs + name: FileDropEventArgs + - uid: OpenTK.Platform.FocusEventArgs + name: FocusEventArgs + - uid: OpenTK.Platform.GamepadBatteryInfo + name: GamepadBatteryInfo + - uid: OpenTK.Platform.GamepadBatteryType + name: GamepadBatteryType + - uid: OpenTK.Platform.GraphicsApi + name: GraphicsApi + - uid: OpenTK.Platform.GraphicsApiHints + name: GraphicsApiHints + - uid: OpenTK.Platform.HitTest + name: HitTest + - uid: OpenTK.Platform.HitType + name: HitType + - uid: OpenTK.Platform.IClipboardComponent + name: IClipboardComponent + - uid: OpenTK.Platform.ICursorComponent + name: ICursorComponent + - uid: OpenTK.Platform.IDialogComponent + name: IDialogComponent + - uid: OpenTK.Platform.IDisplayComponent + name: IDisplayComponent + - uid: OpenTK.Platform.IIconComponent + name: IIconComponent + - uid: OpenTK.Platform.IJoystickComponent + name: IJoystickComponent + - uid: OpenTK.Platform.IKeyboardComponent + name: IKeyboardComponent + - uid: OpenTK.Platform.IMouseComponent + name: IMouseComponent + - uid: OpenTK.Platform.IOpenGLComponent + name: IOpenGLComponent + - uid: OpenTK.Platform.IPalComponent + name: IPalComponent + - uid: OpenTK.Platform.IShellComponent + name: IShellComponent + - uid: OpenTK.Platform.ISurfaceComponent + name: ISurfaceComponent + - uid: OpenTK.Platform.IVulkanComponent + name: IVulkanComponent + - uid: OpenTK.Platform.IWindowComponent + name: IWindowComponent + - uid: OpenTK.Platform.IconHandle + name: IconHandle + - uid: OpenTK.Platform.InputLanguageChangedEventArgs + name: InputLanguageChangedEventArgs + - uid: OpenTK.Platform.JoystickAxis + name: JoystickAxis + - uid: OpenTK.Platform.JoystickButton + name: JoystickButton + - uid: OpenTK.Platform.JoystickHandle + name: JoystickHandle + - uid: OpenTK.Platform.Key + name: Key + - uid: OpenTK.Platform.KeyDownEventArgs + name: KeyDownEventArgs + - uid: OpenTK.Platform.KeyModifier + name: KeyModifier + - uid: OpenTK.Platform.KeyUpEventArgs + name: KeyUpEventArgs + - uid: OpenTK.Platform.MessageBoxButton + name: MessageBoxButton + - uid: OpenTK.Platform.MessageBoxType + name: MessageBoxType + - uid: OpenTK.Platform.MouseButton + name: MouseButton + - uid: OpenTK.Platform.MouseButtonDownEventArgs + name: MouseButtonDownEventArgs + - uid: OpenTK.Platform.MouseButtonFlags + name: MouseButtonFlags + - uid: OpenTK.Platform.MouseButtonUpEventArgs + name: MouseButtonUpEventArgs + - uid: OpenTK.Platform.MouseEnterEventArgs + name: MouseEnterEventArgs + - uid: OpenTK.Platform.MouseHandle + name: MouseHandle + - uid: OpenTK.Platform.MouseMoveEventArgs + name: MouseMoveEventArgs + - uid: OpenTK.Platform.MouseState + name: MouseState + - uid: OpenTK.Platform.OpenDialogOptions + name: OpenDialogOptions + - uid: OpenTK.Platform.OpenGLContextHandle + name: OpenGLContextHandle + - uid: OpenTK.Platform.OpenGLGraphicsApiHints + name: OpenGLGraphicsApiHints + - uid: OpenTK.Platform.OpenGLProfile + name: OpenGLProfile + - uid: OpenTK.Platform.Pal2BindingsContext + name: Pal2BindingsContext + - uid: OpenTK.Platform.PalComponents + name: PalComponents + - uid: OpenTK.Platform.PalException + name: PalException + - uid: OpenTK.Platform.PalHandle + name: PalHandle + - uid: OpenTK.Platform.PalNotImplementedException + name: PalNotImplementedException + - uid: OpenTK.Platform.PlatformEventHandler + name: PlatformEventHandler + - uid: OpenTK.Platform.PlatformEventType + name: PlatformEventType + - uid: OpenTK.Platform.PlatformException + name: PlatformException + - uid: OpenTK.Platform.PowerStateChangeEventArgs + name: PowerStateChangeEventArgs + - uid: OpenTK.Platform.RawMouseMoveEventArgs + name: RawMouseMoveEventArgs + - uid: OpenTK.Platform.SaveDialogOptions + name: SaveDialogOptions + - uid: OpenTK.Platform.Scancode + name: Scancode + - uid: OpenTK.Platform.ScrollEventArgs + name: ScrollEventArgs + - uid: OpenTK.Platform.SurfaceHandle + name: SurfaceHandle + - uid: OpenTK.Platform.SurfaceType + name: SurfaceType + - uid: OpenTK.Platform.SystemCursorType + name: SystemCursorType + - uid: OpenTK.Platform.SystemIconType + name: SystemIconType + - uid: OpenTK.Platform.SystemMemoryInfo + name: SystemMemoryInfo + - uid: OpenTK.Platform.TextEditingEventArgs + name: TextEditingEventArgs + - uid: OpenTK.Platform.TextInputEventArgs + name: TextInputEventArgs + - uid: OpenTK.Platform.ThemeChangeEventArgs + name: ThemeChangeEventArgs + - uid: OpenTK.Platform.ThemeInfo + name: ThemeInfo + - uid: OpenTK.Platform.Toolkit + name: Toolkit + - uid: OpenTK.Platform.ToolkitOptions + name: ToolkitOptions + - uid: OpenTK.Platform.ToolkitOptions.MacOSOptions + name: ToolkitOptions.MacOSOptions + - uid: OpenTK.Platform.ToolkitOptions.WindowsOptions + name: ToolkitOptions.WindowsOptions + - uid: OpenTK.Platform.ToolkitOptions.X11Options + name: ToolkitOptions.X11Options + - uid: OpenTK.Platform.VideoMode + name: VideoMode + - uid: OpenTK.Platform.WindowBorderStyle + name: WindowBorderStyle + - uid: OpenTK.Platform.WindowEventArgs + name: WindowEventArgs + - uid: OpenTK.Platform.WindowEventHandler + name: WindowEventHandler + - uid: OpenTK.Platform.WindowFramebufferResizeEventArgs + name: WindowFramebufferResizeEventArgs + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + - uid: OpenTK.Platform.WindowMode + name: WindowMode + - uid: OpenTK.Platform.WindowModeChangeEventArgs + name: WindowModeChangeEventArgs + - uid: OpenTK.Platform.WindowMoveEventArgs + name: WindowMoveEventArgs + - uid: OpenTK.Platform.WindowResizeEventArgs + name: WindowResizeEventArgs + - uid: OpenTK.Platform.WindowScaleChangeEventArgs + name: WindowScaleChangeEventArgs - uid: OpenTK.Platform.Native name: OpenTK.Platform.Native items: @@ -858,8 +876,6 @@ items: name: Backend - uid: OpenTK.Platform.Native.PlatformComponents name: PlatformComponents - - uid: OpenTK.Platform.Native.Toolkit - name: Toolkit - uid: OpenTK.Platform.Native.ANGLE name: OpenTK.Platform.Native.ANGLE items: @@ -922,6 +938,8 @@ items: name: X11ClipboardComponent - uid: OpenTK.Platform.Native.X11.X11CursorComponent name: X11CursorComponent + - uid: OpenTK.Platform.Native.X11.X11DialogComponent + name: X11DialogComponent - uid: OpenTK.Platform.Native.X11.X11DisplayComponent name: X11DisplayComponent - uid: OpenTK.Platform.Native.X11.X11IconComponent @@ -1051,6 +1069,8 @@ items: - uid: OpenTK.Windowing.GraphicsLibraryFramework name: OpenTK.Windowing.GraphicsLibraryFramework items: + - uid: OpenTK.Windowing.GraphicsLibraryFramework.ANGLEPlatformType + name: ANGLEPlatformType - uid: OpenTK.Windowing.GraphicsLibraryFramework.ClientApi name: ClientApi - uid: OpenTK.Windowing.GraphicsLibraryFramework.ConnectedState @@ -1115,16 +1135,28 @@ items: name: GLFWCallbacks.WindowSizeCallback - uid: OpenTK.Windowing.GraphicsLibraryFramework.GLFWException name: GLFWException + - uid: OpenTK.Windowing.GraphicsLibraryFramework.GLFWallocatefun + name: GLFWallocatefun + - uid: OpenTK.Windowing.GraphicsLibraryFramework.GLFWallocator + name: GLFWallocator + - uid: OpenTK.Windowing.GraphicsLibraryFramework.GLFWdeallocatefun + name: GLFWdeallocatefun + - uid: OpenTK.Windowing.GraphicsLibraryFramework.GLFWreallocatefun + name: GLFWreallocatefun - uid: OpenTK.Windowing.GraphicsLibraryFramework.GamepadState name: GamepadState - uid: OpenTK.Windowing.GraphicsLibraryFramework.GammaRamp name: GammaRamp - uid: OpenTK.Windowing.GraphicsLibraryFramework.Image name: Image + - uid: OpenTK.Windowing.GraphicsLibraryFramework.InitHintANGLEPlatformType + name: InitHintANGLEPlatformType - uid: OpenTK.Windowing.GraphicsLibraryFramework.InitHintBool name: InitHintBool - uid: OpenTK.Windowing.GraphicsLibraryFramework.InitHintInt name: InitHintInt + - uid: OpenTK.Windowing.GraphicsLibraryFramework.InitHintPlatform + name: InitHintPlatform - uid: OpenTK.Windowing.GraphicsLibraryFramework.InputAction name: InputAction - uid: OpenTK.Windowing.GraphicsLibraryFramework.JoystickHats @@ -1149,6 +1181,8 @@ items: name: MouseState - uid: OpenTK.Windowing.GraphicsLibraryFramework.OpenGlProfile name: OpenGlProfile + - uid: OpenTK.Windowing.GraphicsLibraryFramework.Platform + name: Platform - uid: OpenTK.Windowing.GraphicsLibraryFramework.RawMouseMotionAttribute name: RawMouseMotionAttribute - uid: OpenTK.Windowing.GraphicsLibraryFramework.ReleaseBehavior @@ -1161,6 +1195,8 @@ items: name: VideoMode - uid: OpenTK.Windowing.GraphicsLibraryFramework.VkHandle name: VkHandle + - uid: OpenTK.Windowing.GraphicsLibraryFramework.WaylandLibDecor + name: WaylandLibDecor - uid: OpenTK.Windowing.GraphicsLibraryFramework.Window name: Window - uid: OpenTK.Windowing.GraphicsLibraryFramework.WindowAttribute diff --git a/opentk b/opentk index c5c333f0..ad975255 160000 --- a/opentk +++ b/opentk @@ -1 +1 @@ -Subproject commit c5c333f0b7d0cb844f3393778f4a0be72c03da8f +Subproject commit ad975255d926bf5344bd0453276d83efd0bb01c5 From 2dcf18dfaf67c7d4f6a152de2261d1b850333e4b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julius=20H=C3=A4ger?= Date: Fri, 9 Aug 2024 15:58:48 +0200 Subject: [PATCH 33/38] Updated pal2 tutorial. --- .config/dotnet-tools.json | 2 +- learn/pal2/Components.md | 28 ++--- learn/pal2/Event-Handling.md | 48 +++++---- learn/pal2/Introduction.md | 132 ++++++++++++----------- learn/pal2/Platform-Specific-Settings.md | 74 ++++++------- 5 files changed, 147 insertions(+), 137 deletions(-) diff --git a/.config/dotnet-tools.json b/.config/dotnet-tools.json index 08cb655d..ef30df8c 100644 --- a/.config/dotnet-tools.json +++ b/.config/dotnet-tools.json @@ -3,7 +3,7 @@ "isRoot": true, "tools": { "docfx": { - "version": "2.71.0", + "version": "2.77.0", "commands": [ "docfx" ] diff --git a/learn/pal2/Components.md b/learn/pal2/Components.md index 33ebf91d..ca9aebad 100644 --- a/learn/pal2/Components.md +++ b/learn/pal2/Components.md @@ -2,19 +2,21 @@ PAL2 is build on top of a set of components that are responsible for their own part of the platform API. The idea is to allow partial implementations of platforms to easily be created and allow support for new platforms to be added in steps. It also groups related APIs into a specific namespace. -There are currently 10 components in PAL2. +There are currently 12 components in PAL2. -|Component|Description| -|---------|-----------| -|[`IWindowComponent`](xref:OpenTK.Core.Platform.IWindowComponent)|This component is responsible for creating, destroying and managing windows. It is also responsible for processing events.| -|[`IOpenGLComponent`](xref:OpenTK.Core.Platform.IOpenGLComponent)|This components is responsible for creating and managing OpenGL contexts. `SwapBuffers()` lives here.| -|[`IDisplayComponent`](xref:OpenTK.Core.Platform.IDisplayComponent)|This component contains functions for retrieving information about displays (aka, monitors or screens) connected to the system. Allows for enumeration of video modes etc. | -|[`ICursorComponent`](xref:OpenTK.Core.Platform.ICursorComponent)|This component is responsible for loading and managing cursor images that can be set as the mouse cursor.| -|[`IIconComponent`](xref:OpenTK.Core.Platform.IIconComponent)|This component is responsible for loading and managing icon images that can be used as window icons.| -|[`IMouseComponent`](xref:OpenTK.Core.Platform.IMouseComponent)|This component allows for getting and setting of the mouse cursor position.| -|[`IKeyboardComponent`](xref:OpenTK.Core.Platform.IKeyboardComponent)|This component is responsible for translating platform dependent keycodes and scancodes to a cross platform representation. This component also exposes information about keyboard layout and has functions for IME input.| -|[`IJoystickComponent`](xref:OpenTK.Core.Platform.IJoystickComponent)|This component is responsible for exposing joystick input and interfacing with joystick controllers.| -|[`IClipboardComponent`](xref:OpenTK.Core.Platform.IClipboardComponent)|This component is used to read and write to the clipboard.| -|[`IShellComponent`](xref:OpenTK.Core.Platform.IShellComponent)|This component exposes functions for interacting with the system more generally. Things like battery status and user prefered theme is exposed here.| +|Toolkit|Component|Description| +|-------|---------|-----------| +|`Toolkit.Window`|[`IWindowComponent`](xref:OpenTK.Platform.IWindowComponent)|This component is responsible for creating, destroying and managing windows. It is also responsible for processing events.| +|`Toolkit.OpenGL`|[`IOpenGLComponent`](xref:OpenTK.Platform.IOpenGLComponent)|This components is responsible for creating and managing OpenGL contexts. `SwapBuffers()` lives here.| +|`Toolkit.Vulkan`|[`IVulkanComponent`](xref:OpenTK.Platform.IVulkanComponent)|This components contains convenience functions for creating a vulkan surface from a window.| +|`Toolkit.Display`|[`IDisplayComponent`](xref:OpenTK.Platform.IDisplayComponent)|This component contains functions for retrieving information about displays (aka, monitors or screens) connected to the system. Allows for enumeration of video modes etc. | +|`Toolkit.Cursor`|[`ICursorComponent`](xref:OpenTK.Platform.ICursorComponent)|This component is responsible for loading and managing cursor images that can be set as the mouse cursor.| +|`Toolkit.Icon`|[`IIconComponent`](xref:OpenTK.Platform.IIconComponent)|This component is responsible for loading and managing icon images that can be used as window icons.| +|`Toolkit.Mouse`|[`IMouseComponent`](xref:OpenTK.Platform.IMouseComponent)|This component allows for getting and setting of the mouse cursor position.| +|`Toolkit.Keyboard`|[`IKeyboardComponent`](xref:OpenTK.Platform.IKeyboardComponent)|This component is responsible for translating platform dependent keycodes and scancodes to a cross platform representation. This component also exposes information about keyboard layout and has functions for IME input.| +|`Toolkit.Joystick`|[`IJoystickComponent`](xref:OpenTK.Platform.IJoystickComponent)|This component is responsible for exposing joystick input and interfacing with joystick controllers.| +|`Toolkit.Clipboard`|[`IClipboardComponent`](xref:OpenTK.Platform.IClipboardComponent)|This component is used to read and write to the clipboard.| +|`Toolkit.Shell`|[`IShellComponent`](xref:OpenTK.Platform.IShellComponent)|This component exposes functions for interacting with the system more generally. Things like battery status and user prefered theme is exposed here.| +|`Toolkit.Dialog`|[`IDialogComponent`](xref:OpenTK.Platform.IDialogComponent)|This component has functions for creating modal message boxes and open/save file dialogs.| Some platform implementation of these interfaces contains platform specific functions that can be called. A complete description of these function can be found in [Platform Spcific Settings](Platform-Specific-Settings.md). diff --git a/learn/pal2/Event-Handling.md b/learn/pal2/Event-Handling.md index 522786c7..725db56e 100644 --- a/learn/pal2/Event-Handling.md +++ b/learn/pal2/Event-Handling.md @@ -25,34 +25,36 @@ void EventRaised(PalHandle? handle, PlatformEventType type, EventArgs args) if (args is CloseEventArgs close) { // Destroy the window that the user wanted to close. - windowComp.Destroy(closeArgs.Window); + Toolkit.Window.Destroy(closeArgs.Window); } } ``` # Window Events -Here follows a list of events that extend [WindowEventArgs](xref:OpenTK.Core.Platform.WindowEventArgs) and what they mean. +Here follows a list of events that extend [WindowEventArgs](xref:OpenTK.Platform.WindowEventArgs) and what they mean. |Event Enum|EventArgs type|Description| |---------|--------------|-----------| -|[`Close`](xref:OpenTK.Core.Platform.PlatformEventType.Close)|[`CloseEventArgs`](xref:OpenTK.Core.Platform.CloseEventArgs)|This event is triggered when the user presses the exit button of the window. `CloseEventArgs.Window` contains the handle to the window the user wanted to close.| -|[`Focus`](xref:OpenTK.Core.Platform.PlatformEventType.Focus)|[`FocusEventArgs`](xref:OpenTK.Core.Platform.FocusEventArgs)|This event is triggered when a window gains or loses input focus. `FocusEventArgs.GotFocus` tells if the window got or lost focus.| -|[`WindowMove`](xref:OpenTK.Core.Platform.PlatformEventType.WindowMove)|[`WindowMoveEventArgs`](xref:OpenTK.Core.Platform.WindowMoveEventArgs)|This event is triggered when a window has its position changed on screen.| -|[`WindowResize`](xref:OpenTK.Core.Platform.PlatformEventType.WindowResize)|[`WindowResizeEventArgs`](xref:OpenTK.Core.Platform.WindowResizeEventArgs)|This event is triggered when a window has its size changed on screen.| -|[`WindowModeChange`](xref:OpenTK.Core.Platform.PlatformEventType.WindowModeChange)|[`WindowModeChangeEventArgs`](xref:OpenTK.Core.Platform.WindowModeChangeEventArgs)|This event is triggered when the window mode of a window changes.| -|[`WindowDpiChange`](xref:OpenTK.Core.Platform.PlatformEventType.WindowDpiChange)|[`WindowDpiChangeEventArgs`](xref:OpenTK.Core.Platform.WindowDpiChangeEventArgs)|This event is triggered when the dpi the window should display at has changed. Typically because the user has moved the window to another monitor with different scaling settings, or because the user changed system dpi settings.| -|[`MouseEnter`](xref:OpenTK.Core.Platform.PlatformEventType.MouseEnter)|[`MouseEnterEventArgs`](xref:OpenTK.Core.Platform.MouseEnterEventArgs)|This event is triggered when the mouse cursor enters or exits a window.| -|[`MouseMove`](xref:OpenTK.Core.Platform.PlatformEventType.MouseMove)|[`MouseMoveEventArgs`](xref:OpenTK.Core.Platform.MouseMoveEventArgs)|This event is triggered when the mouse moves.| -|[`MouseDown`](xref:OpenTK.Core.Platform.PlatformEventType.MouseDown)|[`MouseButtonDownEventArgs`](xref:OpenTK.Core.Platform.MouseButtonDownEventArgs)|This event is triggered when a mouse button is pressed.| -|[`MouseUp`](xref:OpenTK.Core.Platform.PlatformEventType.MouseUp)|[`MouseButtonDownEventArgs`](xref:OpenTK.Core.Platform.MouseButtonDownEventArgs)|This event is triggered when a mouse button is pressed.| -|[`Scroll`](xref:OpenTK.Core.Platform.PlatformEventType.Scroll)|[`ScrollEventArgs`](xref:OpenTK.Core.Platform.ScrollEventArgs)|This event is triggered when the scrollwheel on a mouse is used.| -|[`KeyDown`](xref:OpenTK.Core.Platform.PlatformEventType.KeyDown)|[`KeyDownEventArgs`](xref:OpenTK.Core.Platform.KeyDownEventArgs)|This event is triggered when a keyboard key is pressed.

Do not use this event to handle typing, use the [TextInput event](#textinput) instead.| -|[`KeyUp`](xref:OpenTK.Core.Platform.PlatformEventType.KeyUp)|[`KeyUpEventArgs`](xref:OpenTK.Core.Platform.KeyUpEventArgs)|This event is triggered when a keyboard key is released.

Do not use this event to handle typing, use the [TextInput event](#textinput) instead.| -|[`TextInput`](xref:OpenTK.Core.Platform.PlatformEventType.TextInput)|[`TextInputEventArgs`](xref:OpenTK.Core.Platform.TextInputEventArgs)|This event is triggered when the user has typed text.| -|[`TextEditing`](xref:OpenTK.Core.Platform.PlatformEventType.TextEditing)|[`TextEditingEventArgs`](xref:OpenTK.Core.Platform.TextEditingEventArgs)|This event is triggered when the user is composing text using something like IME (e.g. Chinese, Japanese, or Korean).| -|[`FileDrop`](xref:OpenTK.Core.Platform.PlatformEventType.FileDrop)|[`FileDropEventArgs`](xref:OpenTK.Core.Platform.FileDropEventArgs)|This event is triggered when a user drags files into a window.| -|[`InputLanguageChanged`](xref:OpenTK.Core.Platform.PlatformEventType.InputLanguageChanged)|[`InputLanguageChangedEventArgs`](xref:OpenTK.Core.Platform.InputLanguageChangedEventArgs)|This event is triggered when the input language for the window has changed.| +|[`Close`](xref:OpenTK.Platform.PlatformEventType.Close)|[`CloseEventArgs`](xref:OpenTK.Platform.CloseEventArgs)|This event is triggered when the user presses the exit button of the window. `CloseEventArgs.Window` contains the handle to the window the user wanted to close.| +|[`Focus`](xref:OpenTK.Platform.PlatformEventType.Focus)|[`FocusEventArgs`](xref:OpenTK.Platform.FocusEventArgs)|This event is triggered when a window gains or loses input focus. `FocusEventArgs.GotFocus` tells if the window got or lost focus.| +|[`WindowMove`](xref:OpenTK.Platform.PlatformEventType.WindowMove)|[`WindowMoveEventArgs`](xref:OpenTK.Platform.WindowMoveEventArgs)|This event is triggered when a window has its position changed on screen.| +|[`WindowResize`](xref:OpenTK.Platform.PlatformEventType.WindowResize)|[`WindowResizeEventArgs`](xref:OpenTK.Platform.WindowResizeEventArgs)|This event is triggered when a window has its size changed on screen.| +|[`WindowFramebufferResize`](xref:OpenTK.Platform.PlatformEventType.WindowFramebufferResize)|[`WindowFramebufferResizeEventArgs`](xref:OpenTK.Platform.WindowFramebufferResizeEventArgs)|This event is triggered when a window has its size changed on screen.| +|[`WindowModeChange`](xref:OpenTK.Platform.PlatformEventType.WindowModeChange)|[`WindowModeChangeEventArgs`](xref:OpenTK.Platform.WindowModeChangeEventArgs)|This event is triggered when the window mode of a window changes.| +|[`WindowScaleChange`](xref:OpenTK.Platform.PlatformEventType.WindowScaleChange)|[`WindowScaleChangeEventArgs`](xref:OpenTK.Platform.WindowScaleChangeEventArgs)|This event is triggered when the scale the window should display at has changed. Typically because the user has moved the window to another monitor with different scaling settings, or because the user changed system dpi settings.| +|[`MouseEnter`](xref:OpenTK.Platform.PlatformEventType.MouseEnter)|[`MouseEnterEventArgs`](xref:OpenTK.Platform.MouseEnterEventArgs)|This event is triggered when the mouse cursor enters or exits a window.| +|[`MouseMove`](xref:OpenTK.Platform.PlatformEventType.MouseMove)|[`MouseMoveEventArgs`](xref:OpenTK.Platform.MouseMoveEventArgs)|This event is triggered when the mouse moves.| +|[`RawMouseMove`](xref:OpenTK.Platform.PlatformEventType.RawMouseMove)|[`RawMouseMoveEventArgs`](xref:OpenTK.Platform.RawMouseMoveEventArgs)|The event is triggered when the mouse moves and raw mouse input is enabled.| +|[`MouseDown`](xref:OpenTK.Platform.PlatformEventType.MouseDown)|[`MouseButtonDownEventArgs`](xref:OpenTK.Platform.MouseButtonDownEventArgs)|This event is triggered when a mouse button is pressed.| +|[`MouseUp`](xref:OpenTK.Platform.PlatformEventType.MouseUp)|[`MouseButtonDownEventArgs`](xref:OpenTK.Platform.MouseButtonDownEventArgs)|This event is triggered when a mouse button is pressed.| +|[`Scroll`](xref:OpenTK.Platform.PlatformEventType.Scroll)|[`ScrollEventArgs`](xref:OpenTK.Platform.ScrollEventArgs)|This event is triggered when the scrollwheel on a mouse is used.| +|[`KeyDown`](xref:OpenTK.Platform.PlatformEventType.KeyDown)|[`KeyDownEventArgs`](xref:OpenTK.Platform.KeyDownEventArgs)|This event is triggered when a keyboard key is pressed.

Do not use this event to handle typing, use the [TextInput event](#textinput) instead.| +|[`KeyUp`](xref:OpenTK.Platform.PlatformEventType.KeyUp)|[`KeyUpEventArgs`](xref:OpenTK.Platform.KeyUpEventArgs)|This event is triggered when a keyboard key is released.

Do not use this event to handle typing, use the [TextInput event](#textinput) instead.| +|[`TextInput`](xref:OpenTK.Platform.PlatformEventType.TextInput)|[`TextInputEventArgs`](xref:OpenTK.Platform.TextInputEventArgs)|This event is triggered when the user has typed text.| +|[`TextEditing`](xref:OpenTK.Platform.PlatformEventType.TextEditing)|[`TextEditingEventArgs`](xref:OpenTK.Platform.TextEditingEventArgs)|This event is triggered when the user is composing text using something like IME (e.g. Chinese, Japanese, or Korean).| +|[`FileDrop`](xref:OpenTK.Platform.PlatformEventType.FileDrop)|[`FileDropEventArgs`](xref:OpenTK.Platform.FileDropEventArgs)|This event is triggered when a user drags files into a window.| +|[`InputLanguageChanged`](xref:OpenTK.Platform.PlatformEventType.InputLanguageChanged)|[`InputLanguageChangedEventArgs`](xref:OpenTK.Platform.InputLanguageChangedEventArgs)|This event is triggered when the input language for the window has changed.| # Non-window events @@ -60,7 +62,7 @@ Here follows a list of non-window related events. |Event Enum|EventArgs type|Description| |----------|--------------|-----------| -|[`ThemeChange`](xref:OpenTK.Core.Platform.PlatformEventType.ThemeChange)|[`ThemeChangeEventArgs`](xref:OpenTK.Core.Platform.ThemeChangeEventArgs)|This event is triggered when a user changes the preferred theme.| -|[`DisplayConnectionChanged`](xref:OpenTK.Core.Platform.PlatformEventType.DisplayConnectionChanged)|[`DisplayConnectionChangedEventArgs`](xref:OpenTK.Core.Platform.DisplayConnectionChangedEventArgs)|This event is triggered when a display is connected or disconnected from the system.| -|[`PowerStateChange`](xref:OpenTK.Core.Platform.PlatformEventType.PowerStateChange)|[`PowerStateChangeEventArgs`](xref:OpenTK.Core.Platform.PowerStateChangeEventArgs)|This event is triggered when the power state of the system changes. For example if the user put the system to sleep.| -|[`ClipboardUpdate`](xref:OpenTK.Core.Platform.PlatformEventType.ClipboardUpdate)|[`ClipboardUpdateEventArgs`](xref:OpenTK.Core.Platform.ClipboardUpdateEventArgs)|This event is triggered when the contents of the clipboard has changed.| +|[`ThemeChange`](xref:OpenTK.Platform.PlatformEventType.ThemeChange)|[`ThemeChangeEventArgs`](xref:OpenTK.Platform.ThemeChangeEventArgs)|This event is triggered when a user changes the preferred theme.| +|[`DisplayConnectionChanged`](xref:OpenTK.Platform.PlatformEventType.DisplayConnectionChanged)|[`DisplayConnectionChangedEventArgs`](xref:OpenTK.Platform.DisplayConnectionChangedEventArgs)|This event is triggered when a display is connected or disconnected from the system.| +|[`PowerStateChange`](xref:OpenTK.Platform.PlatformEventType.PowerStateChange)|[`PowerStateChangeEventArgs`](xref:OpenTK.Platform.PowerStateChangeEventArgs)|This event is triggered when the power state of the system changes. For example if the user put the system to sleep.| +|[`ClipboardUpdate`](xref:OpenTK.Platform.PlatformEventType.ClipboardUpdate)|[`ClipboardUpdateEventArgs`](xref:OpenTK.Platform.ClipboardUpdateEventArgs)|This event is triggered when the contents of the clipboard has changed.| diff --git a/learn/pal2/Introduction.md b/learn/pal2/Introduction.md index b3737266..87659ea1 100644 --- a/learn/pal2/Introduction.md +++ b/learn/pal2/Introduction.md @@ -1,53 +1,50 @@ # Platform Abstraction Layer 2 > [!IMPORTANT] -> PAL2 is under early development and many things might change in the future. +> PAL2 is under development and many things might change in the future. Feedback is wanted! > [!IMPORTANT] -> Currently PAL2 is basically feature complete on Windows, and many parts work on x11 and macos. There is an SDL backend that works on both Windows and linux, and should in theory work on macos but the SDL binaries nuget package doesn't have macos binaries yet. +> Currently PAL2 is basically feature complete on Windows, and most parts work on x11 and macos. There is an slightly outdated SDL backend that works on both Windows and linux, and should in theory work on macos but the SDL binaries nuget package doesn't have macos binaries yet. ## Setup PAL2 exposes platform APIs through a number of interfaces used to abstract away the underlying operating system. -The first of these interfaces we are going to see is `IWindowComponent` and `IOpenGLComponent` which allows the user to -create and interact with windows as well as initialize an OpenGL context and draw graphics to the window. +Most of PAL2 is exposed through the `Toolkit` class. `Toolkit` contains a number of static properties that are the main interface for PAL2. `ToolkitOptions` contains a few configuration items should be set before calling `Toolkit.Init`. -The following code initializes these interfaces with a platform dependent implementation (or throws `NotSupportedException` for not yet supported OSes). ```cs -using OpenTK.Platform.Native; +using OpenTK.Platform; -IWindowComponent windowComp = new PlatformComponents.CreateWindowComponent(); -IOpenGLComponent openglComp = new PlatformComponents.CreateOpenGLComponent(); +ToolkitOptions options = new ToolkitOptions(); -windowComp.Initialize(PalComponents.Window); -openglComp.Initialize(PalComponents.OpenGL); +// ApplicationName is the name of the application +// this is used on some platforms to show the application name. +options.ApplicationName = "OpenTK tutorial"; + +Toolkit.Init(options); ``` ## Logging -All components in PAL2 have the ability to output diagnostic messages through an `ILogger` interface exposed as a `Logger` property of the component. This can be useful to find errors in the code and provide debug data that can be used to fix bugs in OpenTK. +PAL2 has the ability to output diagnostic messages through an `ILogger` interface exposed as a `Logger` property of `ToolkitOptions`. This can be useful to find errors in the code and provide debug data that can be used to fix bugs in OpenTK. OpenTK provides an implementation of this interface called `ConsoleLogger` that writes out all debug messages to the console. - -We set the logger before we initialize the components so that we can get diagnostic messages during initialization too. - ```cs -IWindowComponent windowComp = new PlatformComponents.CreateWindowComponent(); -IOpenGLComponent openglComp = new PlatformComponents.CreateOpenGLComponent(); +ToolkitOptions options = new ToolkitOptions(); -ConsoleLogger logger = new ConsoleLogger(); -windowComp.Logger = logger; -openglComp.Logger = logger; +// ApplicationName is the name of the application +// this is used on some platforms to show the application name. +options.ApplicationName = "OpenTK tutorial"; +// Set the logger to use +options.Logger = new ConsoleLogger(); -windowComp.Initialize(PalComponents.Window); -openglComp.Initialize(PalComponents.OpenGL); +Toolkit.Init(options); ``` ## Creating a window -To create an OpenGL window using PAL2 all you need to do is the following: +To create an OpenGL window using PAL2 we want to use the `Toolkit.Window` property to access the window functions in PAL2. `Toolkit.Window` contains a function called `Toolkit.Window.Create` which we will use to create a window, and `Toolkit.OpenGL.CreateFromWindow` can be used to create an OpenGL context from the created window. ```cs OpenGLGraphicsApiHints contextSettings = new OpenGLGraphicsApiHints() @@ -60,32 +57,38 @@ OpenGLGraphicsApiHints contextSettings = new OpenGLGraphicsApiHints() StencilBits = ContextStencilBits.Stencil8, }; -WindowHandle window = windowComp.Create(contextSettings); +WindowHandle window = Toolkit.Window.Create(contextSettings); -OpenGLContextHandle glContext = openglComp.CreateFromWindow(window); +OpenGLContextHandle glContext = Toolkit.OpenGL.CreateFromWindow(window); ``` -This returns a handle to the window and the opengl context which is the main method to interact with the window. +This returns a handle to the window and the opengl context which is used to refer to the window and opengl context in pal2 functions. When a window handle is created it is not visible by default, so we need to show the window. We also need to set the size we want the window to be shown with. This can be done by setting the window size and mode like so: ```cs +// Set the title of the window +Toolkit.Window.SetTitle(window, "OpenTK window"); // Set the size of the window -windowComp.SetSize(window, 800, 600); +Toolkit.Window.SetSize(window, 800, 600); // Bring the window out of the default Hidden window mode -windowComp.SetMode(window, WindowMode.Normal); +Toolkit.Window.SetMode(window, WindowMode.Normal); ``` -Before we can do any calls to OpenGL we need to do two things. 1. We need to set our created context as the "current" context and 2. Load all of the functions that OpenGL is going to use. +Before we can do any calls to OpenGL we need to do two things. + +1. We need to set our created context as the "current" context and +2. Load all of the functions that OpenGL is going to use. + This can quite easily be done like follows: ```cs // The the current opengl context and load the bindings. -openglComp.SetCurrentContext(glContext); -GLLoader.LoadBindings(openglComp.GetBindingsContext(glContext)); +Toolkit.OpenGL.SetCurrentContext(glContext); +GLLoader.LoadBindings(Toolkit.OpenGL.GetBindingsContext(glContext)); ``` -[`IOpenGLComponent.SetCurrentContext`](xref:OpenTK.Core.Platform.IOpenGLComponent.SetCurrentContext(OpenTK.Core.Platform.OpenGLContextHandle)) sets the given OpenGL context as the "current" context. +[`Toolkit.OpenGL.SetCurrentContext`](xref:OpenTK.Platform.IOpenGLComponent.SetCurrentContext(OpenTK.Platform.OpenGLContextHandle)) sets the given OpenGL context as the "current" context. And [`GLLoader.LoadBindings`](xref:OpenTK.Graphics.GLLoader.LoadBindings(OpenTK.IBindingsContext)) loads all OpenGL functions. @@ -98,9 +101,9 @@ while (true) { // This will process events for all windows and // post those events to the event queue. - windowComp.ProcessEvents(); + Toolkit.Window.ProcessEvents(false); // Check if the window was destroyed after processing events. - if (windowComp.IsWindowDestroyed(window)) + if (Toolkit.Window.IsWindowDestroyed(window)) { break; } @@ -115,12 +118,12 @@ To render something to the window we can do the following: GL.ClearColor(new Color4(64 / 255f, 0, 127 / 255f, 255)); GL.Clear(ClearBufferMask.ColorBufferBit | ClearBufferMask.DepthBufferBit | ClearBufferMask.StencilBufferBit); -openglComp.SwapBuffers(glContext); +Tooklit.OpenGL.SwapBuffers(glContext); ``` The code shown so far will create a window and then process events while rendering to the window, but running the code there is one crucial flaw to the program. Closing the window doesn't work. -This is becase closing the window is an event that needs to be responeded to and as we are not handling any events, no action is taken when the user wants to quit the application. So lets fix that! +This is becase closing the window is an event that needs to be responeded to, and as we are not handling any events no action is taken when the user wants to quit the application. So lets fix that! First step of handling events is to register a callback to the `EventQueue.EventRaised` event. Do this before creating the window like follows: @@ -140,8 +143,8 @@ void EventRaised(PalHandle? handle, PlatformEventType type, EventArgs args) > [!WARNING] > The arguments of the event callback are likely to change. -This callback gets a few arguments, the two we are interested in right now are `type` and `args`. -`type` tells us the type of the argument we received and `args` contains data specific to the type of event. +This callback gets a few arguments, the one we are interested in right now is `args`. +`args` contains data specific to the type of event and we can pattern match on a specific args type to respond to a specific event. To handle the quit message we will do the following: @@ -151,45 +154,40 @@ void EventRaised(PalHandle? handle, PlatformEventType type, EventArgs args) if (args is CloseEventArgs closeArgs) { // Destroy the window that the user wanted to close. - windowComp.Destroy(closeArgs.Window); + Toolkit.Window.Destroy(closeArgs.Window); } } ``` We use pattern matching `is` on `args` to check if it is of type `CloseEventArgs`. `CloseEventArgs` contains a `window` property which tells us which window the user wanted to close. -So to close the window we call `IWindowComponent.Destroy(WindowHandle)` to destroy the window. +So to close the window we call `Toolkit.Window.Destroy(WindowHandle)` to destroy the window. This way of handling events generalizes to other event types. First check for the type of event, then cast the `EventArgs` to the type specific for this type of event which gives appropriate information for handling the event. The final code we end up with could look like the following: ```cs -using OpenTK.Core.Platform; +using OpenTK.Platform; using OpenTK.Graphics; using OpenTK.Graphics.OpenGL; using OpenTK.Mathematics; -using OpenTK.Platform.Native; +using OpenTK.Core.Utility; +using System; namespace Pal2Sample; class Sample { - static IWindowComponent windowComp = new PlatformComponents.CreateWindowComponent(); - static IOpenGLComponent openglComp = new PlatformComponents.CreateOpenGLComponent(); - - static WindowHandle Window; - static OpenGLContextHandle GLContext; - public static void Main(string[] args) { - ConsoleLogger logger = new ConsoleLogger(); - windowComp.Logger = logger; - openglComp.Logger = logger; + EventQueue.EventRaised += EventRaised; - windowComp.Initialize(PalComponents.Window); - openglComp.Initialize(PalComponents.OpenGL); + ToolkitOptions options = new ToolkitOptions(); - EventQueue.EventRaised += EventRaised; + options.ApplicationName = "OpenTK tutorial"; + options.Logger = new ConsoleLogger(); + + Toolkit.Init(options); OpenGLGraphicsApiHints contextSettings = new OpenGLGraphicsApiHints() { @@ -201,28 +199,33 @@ class Sample StencilBits = ContextStencilBits.Stencil8, }; - Window = windowComp.Create(contextSettings); + WindowHandle window = Toolkit.Window.Create(contextSettings); - GLContext = openglComp.CreateFromWindow(Window); + OpenGLContextHandle glContext = Toolkit.OpenGL.CreateFromWindow(window); // Show window - windowComp.SetSize(Window, 800, 600); - windowComp.SetMode(Window, WindowMode.Normal); + Toolkit.Window.SetTitle(window, "OpenTK window"); + Toolkit.Window.SetSize(window, 800, 600); + Toolkit.Window.SetMode(window, WindowMode.Normal); // The the current opengl context and load the bindings. - openglComp.SetCurrentContext(GLContext); - GLLoader.LoadBindings(openglComp.GetBindingsContext(GLContext)); + Toolkit.OpenGL.SetCurrentContext(glContext); + GLLoader.LoadBindings(Toolkit.OpenGL.GetBindingsContext(glContext)); - while (windowComp.IsWindowDestroyed(Window) == false) + while (true) { // This will process events for all windows and - // post those events to the event queue. - windowComp.ProcessEvents(); + // post those events to the event queue. + Toolkit.Window.ProcessEvents(false); + if (Toolkit.Window.IsWindowDestroyed(window)) + { + break; + } GL.ClearColor(new Color4(64 / 255f, 0, 127 / 255f, 255)); GL.Clear(ClearBufferMask.ColorBufferBit | ClearBufferMask.DepthBufferBit | ClearBufferMask.StencilBufferBit); - openglComp.SwapBuffers(GLContext); + Toolkit.OpenGL.SwapBuffers(glContext); } } @@ -231,10 +234,11 @@ class Sample if (args is CloseEventArgs closeArgs) { // Destroy the window that the user wanted to close. - windowComp.Destroy(closeArgs.Window); + Toolkit.Window.Destroy(closeArgs.Window); } } } + ``` ## What's next? diff --git a/learn/pal2/Platform-Specific-Settings.md b/learn/pal2/Platform-Specific-Settings.md index d4d71851..f1fd69a8 100644 --- a/learn/pal2/Platform-Specific-Settings.md +++ b/learn/pal2/Platform-Specific-Settings.md @@ -2,16 +2,13 @@ PAL 2 consists of a number of components that allows the user to create windows and interact with the user system. These interfaces are designed to work cross-platform. But sometimes there are functions and settings that are so platform specific that these is no good cross-platform API for them. -Platform specific component APIs can be accessed by casting the component interface to it's concrete platform type. For example, `IClipboardComponent` has windows specific settings related to cloud clipboard syncing and history, which can be accessed like follows: +Platform specific component APIs can be accessed by casting the component interface to it's concrete platform type. For example, `Toolkit.Clipboard` has windows specific settings related to cloud clipboard syncing and history, which can be accessed like follows: ```cs -IClipboardComponent clipboardComp = ...; - // By using 'as' and ?. we can run this code on all platforms // but the effects will only take effect on windows. -(clipboardComp as Native.Windows.WindowComponent)?.CanUploadToCloudClipboard = false; -(clipboardComp as Native.Windows.WindowComponent)?.CanIncludeInClipboardHistory = true; - +(Toolkit.Clipboard as Native.Windows.WindowComponent)?.CanUploadToCloudClipboard = false; +(Toolkit.Clipboard as Native.Windows.WindowComponent)?.CanIncludeInClipboardHistory = true; ``` # Windows @@ -20,32 +17,34 @@ The following is a list of windows specific settings and functions. |Function|Description| |--------|-----------| |`WindowComponent`| | -|[`WindowComponent.GetHWND`](xref:OpenTK.Platform.Native.Windows.WindowComponent.GetHWND(OpenTK.Core.Platform.WindowHandle))|Gets the native Win32 `HWND` handle for the window.| +|[`WindowComponent.GetHWND`](xref:OpenTK.Platform.Native.Windows.WindowComponent.GetHWND(OpenTK.Platform.WindowHandle))|Gets the native Win32 `HWND` handle for the window.| |`OpenGLComponent`| | -|[`OpenGLComponent.GetHGLRC`](xref:OpenTK.Platform.Native.Windows.OpenGLComponent.GetHGLRC(OpenTK.Core.Platform.OpenGLContextHandle))|Gets the native Win32 `HGLRC` handle for the OpenGL context.| +|[`OpenGLComponent.UseDwmFlushIfApplicable`](xref:OpenTK.Platform.Native.Windows.OpenGLComponent.UseDwmFlushIfApplicable(OpenTK.Platform.OpenGLContextHandle,System.Boolean))|Sets if `SwapBuffers` should call `DwmFlush()` to sync if DWM compositing is enabled.| +|[`OpenGLComponent.GetHGLRC`](xref:OpenTK.Platform.Native.Windows.OpenGLComponent.GetHGLRC(OpenTK.Platform.OpenGLContextHandle))|Gets the native Win32 `HGLRC` handle for the OpenGL context.| |`DisplayComponent`| | -|[`DisplayComponent.GetAdapter`](xref:OpenTK.Platform.Native.Windows.DisplayComponent.GetAdapter(OpenTK.Core.Platform.DisplayHandle))|Gets the native Win32 adapter name (e.g. `\\.\DISPLAY1`) for the display handle.| -|[`DisplayComponent.GetMonitor`](xref:OpenTK.Platform.Native.Windows.DisplayComponent.GetMonitor(OpenTK.Core.Platform.DisplayHandle))|Gets the native Win32 monitor name (e.g. `\\.\DISPLAY1\Monitor0`) for the display handle.| +|[`DisplayComponent.GetAdapter`](xref:OpenTK.Platform.Native.Windows.DisplayComponent.GetAdapter(OpenTK.Platform.DisplayHandle))|Gets the native Win32 adapter name (e.g. `\\.\DISPLAY1`) for the display handle.| +|[`DisplayComponent.GetMonitor`](xref:OpenTK.Platform.Native.Windows.DisplayComponent.GetMonitor(OpenTK.Platform.DisplayHandle))|Gets the native Win32 monitor name (e.g. `\\.\DISPLAY1\Monitor0`) for the display handle.| |`ShellComponent`| | -|[`ShellComponent.SetImmersiveDarkMode`](xref:OpenTK.Platform.Native.Windows.ShellComponent.SetImmersiveDarkMode(OpenTK.Core.Platform.WindowHandle,System.Boolean))|Sets the `DWMWA_USE_IMMERSIVE_DARK_MODE` flag on the window causing the titlebar be rendered in dark mode colors. This is only officially supported from Window 11 Build 220000, but can sometimes work on Windows 10.| -|[`ShellComponent.SetCaptionTextColor`](xref:OpenTK.Platform.Native.Windows.ShellComponent.SetCaptionTextColor(OpenTK.Core.Platform.WindowHandle,OpenTK.Mathematics.Color3{OpenTK.Mathematics.Rgb}))|Used to set the text color in the windows titlebar. This is only officially supported from Window 11 Build 220000, but can sometimes work on Windows 10.| -|[`ShellComponent.SetCaptionColor`](xref:OpenTK.Platform.Native.Windows.ShellComponent.SetCaptionColor(OpenTK.Core.Platform.WindowHandle,OpenTK.Mathematics.Color3{OpenTK.Mathematics.Rgb}))|Used to set the color of the window titlebar. This is only officially supported from Window 11 Build 220000, but can sometimes work on Windows 10.| +|[`ShellComponent.SetImmersiveDarkMode`](xref:OpenTK.Platform.Native.Windows.ShellComponent.SetImmersiveDarkMode(OpenTK.Platform.WindowHandle,System.Boolean))|Sets the `DWMWA_USE_IMMERSIVE_DARK_MODE` flag on the window causing the titlebar be rendered in dark mode colors. This is only officially supported from Window 11 Build 220000, but can sometimes work on Windows 10.| +|[`ShellComponent.SetCaptionTextColor`](xref:OpenTK.Platform.Native.Windows.ShellComponent.SetCaptionTextColor(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Color3{OpenTK.Mathematics.Rgb}))|Used to set the text color in the windows titlebar. This is only officially supported from Window 11 Build 220000, but can sometimes work on Windows 10.| +|[`ShellComponent.SetCaptionColor`](xref:OpenTK.Platform.Native.Windows.ShellComponent.SetCaptionColor(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Color3{OpenTK.Mathematics.Rgb}))|Used to set the color of the window titlebar. This is only officially supported from Window 11 Build 220000, but can sometimes work on Windows 10.| +|[`ShellComponent.SetWindowCornerPreference`](xref:OpenTK.Platform.Native.Windows.ShellComponent.SetWindowCornerPreference(OpenTK.Platform.WindowHandle,OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce))|Used to set the rounded corner preference on Windows 11.| |`IconComponent`| | |[`IconComponent.CreateFromIcoFile`](xref:OpenTK.Platform.Native.Windows.IconComponent.CreateFromIcoFile(System.String))|Used to create an `IconHandle` from a `.ico` file. An icon created using this function will be able to dynamically pick resolution if the file contains multiple resolutions.| |[`IconComponent.CreateFromIcoResource(byte[])`](xref:OpenTK.Platform.Native.Windows.IconComponent.CreateFromIcoResource(System.Byte[]))|Used to create an `IconHandle` from a `.ico` file embedded as a `.resx` resource. An Icon created using this function will **not** be able to dynamically pick resolution.| |[`IconComponent.CreateFromIcoResource(String)`](xref:OpenTK.Platform.Native.Windows.IconComponent.CreateFromIcoResource(System.String))|Used to create an `IconHandle` from a win32 embedded resource created using an `.rc` file and ``.| -|[`IconComponent.GetBitmapData`](xref:OpenTK.Platform.Native.Windows.IconComponent.GetBitmapData(OpenTK.Core.Platform.IconHandle,System.Span{System.Byte}))|Allows for extracting icon data. Works with system icons.| -|[`IconComponent.GetBitmapByteSize`](xref:OpenTK.Platform.Native.Windows.IconComponent.GetBitmapByteSize(OpenTK.Core.Platform.IconHandle))|Returns the size in bytes of the bitmap data. For use with [`IconComponent.GetBitmapData`](xref:OpenTK.Platform.Native.Windows.IconComponent.GetBitmapData(OpenTK.Core.Platform.IconHandle,System.Span{System.Byte})).| +|[`IconComponent.GetBitmapData`](xref:OpenTK.Platform.Native.Windows.IconComponent.GetBitmapData(OpenTK.Platform.IconHandle,System.Span{System.Byte}))|Allows for extracting icon data. Works with system icons.| +|[`IconComponent.GetBitmapByteSize`](xref:OpenTK.Platform.Native.Windows.IconComponent.GetBitmapByteSize(OpenTK.Platform.IconHandle))|Returns the size in bytes of the bitmap data. For use with [`IconComponent.GetBitmapData`](xref:OpenTK.Platform.Native.Windows.IconComponent.GetBitmapData(OpenTK.Platform.IconHandle,System.Span{System.Byte})).| |`CursorComponent`| | |[`CursorComponent.CreateFromCurFile`](xref:OpenTK.Platform.Native.Windows.CursorComponent.CreateFromCurFile(System.String))|Used to create a `CursorHandle` from a `.cur` file.| |[`CursorComponent.CreateFromCurResorce(byte[])`](xref:OpenTK.Platform.Native.Windows.CursorComponent.CreateFromCurResorce(System.Byte[]))|Used to create a `CursorHandle` from a `.cur` file embedded in a `.resx` file. Does not support `.ani` files.| |[`CursorComponent.CreateFromCurResorce(String)`](xref:OpenTK.Platform.Native.Windows.CursorComponent.CreateFromCurResorce(System.String))|Used to create a `CursorHandle` from a `.cur` file embedded in a `.rc` file and using ``.| -|[`CursorComponent.GetImage`](xref:OpenTK.Platform.Native.Windows.CursorComponent.GetImage(OpenTK.Core.Platform.CursorHandle,System.Span{System.Byte}))|Allows for extracting cursor data. Works with system cursors.| +|[`CursorComponent.GetImage`](xref:OpenTK.Platform.Native.Windows.CursorComponent.GetImage(OpenTK.Platform.CursorHandle,System.Span{System.Byte}))|Allows for extracting cursor data. Works with system cursors.| |`ClipboardComponent`| | |[`ClipboardComponent.CanIncludeInClipboardHistory`](xref:OpenTK.Platform.Native.Windows.ClipboardComponent.CanIncludeInClipboardHistory)|Toggles whether clipboard data set using [`SetClipboardText`](xref:OpenTK.Platform.Native.Windows.ClipboardComponent.SetClipboardText(System.String)) is allowed to be stored in the clipboard history.| |[`ClipboardComponent.CanUploadToCloudClipboard`](xref:OpenTK.Platform.Native.Windows.ClipboardComponent.CanUploadToCloudClipboard)|Toggles whether clipboard data set using [`SetClipboardText`](xref:OpenTK.Platform.Native.Windows.ClipboardComponent.SetClipboardText(System.String)) can be by synced between the users devices.| -|[`ClipboardComponent.SetClipboardAudio`](xref:OpenTK.Platform.Native.Windows.ClipboardComponent.SetClipboardAudio(OpenTK.Core.Platform.AudioData))|Allows uploading audio data to the clipboard. Audio clipboard support is generally poorly supported by audio applications.| -|[`ClipboardComponent.SetClipboardBitmap`](xref:OpenTK.Platform.Native.Windows.ClipboardComponent.SetClipboardBitmap(OpenTK.Core.Platform.Bitmap))|Allows uploading image data to the clipboard.| +|[`ClipboardComponent.SetClipboardAudio`](xref:OpenTK.Platform.Native.Windows.ClipboardComponent.SetClipboardAudio(OpenTK.Platform.AudioData))|Allows uploading audio data to the clipboard. Audio clipboard support is generally poorly supported by audio applications.| +|[`ClipboardComponent.SetClipboardBitmap`](xref:OpenTK.Platform.Native.Windows.ClipboardComponent.SetClipboardBitmap(OpenTK.Platform.Bitmap))|Allows uploading image data to the clipboard.| # Linux X11 The following is a list of linux x11 specific settings and functions. @@ -53,16 +52,18 @@ The following is a list of linux x11 specific settings and functions. |Function|Description| |--------|-----------| |`WindowComponent`| | -|[`X11WindowComponent.DemandAttention`](xref:OpenTK.Platform.Native.X11.X11WindowComponent.DemandAttention(OpenTK.Core.Platform.WindowHandle))|Shows a popup to the user that the window is ready.| +|[`X11WindowComponent.GetIconifiedTitle`](xref:OpenTK.Platform.Native.X11.X11WindowComponent.GetIconifiedTitle(OpenTK.Platform.WindowHandle))|Gets the iconified window title.| +|[`X11WindowComponent.SetIconifiedTitle`](xref:OpenTK.Platform.Native.X11.X11WindowComponent.SetIconifiedTitle(OpenTK.Platform.WindowHandle,System.String))|Sets the iconified window title.| +|[`X11WindowComponent.DemandAttention`](xref:OpenTK.Platform.Native.X11.X11WindowComponent.DemandAttention(OpenTK.Platform.WindowHandle))|Shows a popup to the user that the window is ready.| |[`X11WindowComponent.GetX11Display`](xref:OpenTK.Platform.Native.X11.X11WindowComponent.GetX11Display)|Gets the X11 `Display` used by OpenTK.| -|[`X11WindowComponent.GetX11Window`](xref:OpenTK.Platform.Native.X11.X11WindowComponent.GetX11Window(OpenTK.Core.Platform.WindowHandle))|Gets the X11 `Window` for this window handle.| +|[`X11WindowComponent.GetX11Window`](xref:OpenTK.Platform.Native.X11.X11WindowComponent.GetX11Window(OpenTK.Platform.WindowHandle))|Gets the X11 `Window` for this window handle.| |`X11OpenGLComponent`|| |[`X11OpenGLComponent.EXT_swap_control_GetMaxSwapInterval`](xref:OpenTK.Platform.Native.X11.X11OpenGLComponent.EXT_swap_control_GetMaxSwapInterval)|Queries `EXT_swap_control` for the maximum supported swap interval.| -|[`X11OpenGLComponent.GetGLXContext`](xref:OpenTK.Platform.Native.X11.X11OpenGLComponent.GetGLXContext(OpenTK.Core.Platform.OpenGLContextHandle))|Get the GLX `GLXContext` for the OpenGL context.| -|[`X11OpenGLComponent.GetGLXWindow`](xref:OpenTK.Platform.Native.X11.X11OpenGLComponent.GetGLXWindow(OpenTK.Core.Platform.OpenGLContextHandle))|Get the GLX `GLXWindow` for the OpenGL context.| +|[`X11OpenGLComponent.GetGLXContext`](xref:OpenTK.Platform.Native.X11.X11OpenGLComponent.GetGLXContext(OpenTK.Platform.OpenGLContextHandle))|Get the GLX `GLXContext` for the OpenGL context.| +|[`X11OpenGLComponent.GetGLXWindow`](xref:OpenTK.Platform.Native.X11.X11OpenGLComponent.GetGLXWindow(OpenTK.Platform.OpenGLContextHandle))|Get the GLX `GLXWindow` for the OpenGL context.| |`X11DisplayComponent`|| -|[`X11DisplayComponent.GetRRCrtc`](xref:OpenTK.Platform.Native.X11.X11DisplayComponent.GetRRCrtc(OpenTK.Core.Platform.DisplayHandle))|Get the X11 RandR `RRCrtc` for the display handle.| -|[`X11DisplayComponent.GetRROutput`](xref:OpenTK.Platform.Native.X11.X11DisplayComponent.GetRROutput(OpenTK.Core.Platform.DisplayHandle))|Get the X11 RandR `RROutput` for the display handle.| +|[`X11DisplayComponent.GetRRCrtc`](xref:OpenTK.Platform.Native.X11.X11DisplayComponent.GetRRCrtc(OpenTK.Platform.DisplayHandle))|Get the X11 RandR `RRCrtc` for the display handle.| +|[`X11DisplayComponent.GetRROutput`](xref:OpenTK.Platform.Native.X11.X11DisplayComponent.GetRROutput(OpenTK.Platform.DisplayHandle))|Get the X11 RandR `RROutput` for the display handle.| |`X11IconComponent`|| |[`X11IconComponent.Create(int, int, IconImage[])`](xref:OpenTK.Platform.Native.X11.X11IconComponent.Create(System.Int32,System.Int32,OpenTK.Platform.Native.X11.X11IconComponent.IconImage[]))|Used to create multi-resolution icons.| @@ -72,22 +73,23 @@ The following is a list of macOS specific settings and functions. |Function|Description| |--------|-----------| |`MacOSWindowComponent`| | -|[`MacOSWindowComponent.SetDockIcon`](xref:OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetDockIcon(OpenTK.Core.Platform.WindowHandle,OpenTK.Core.Platform.IconHandle))|Sets the dock icon of the application| -|[`MacOSWindowComponent.GetNSWindow`](xref:OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetNSWindow(OpenTK.Core.Platform.WindowHandle))|Gets the `NSWindow` of the window handle. This is an instance of the `NSOpenTKWindow` subclass of `NSWindow`.| -|[`MacOSWindowComponent.GetNSView`](xref:OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetNSView(OpenTK.Core.Platform.WindowHandle))|Gets the `NSView` of the window handle. This is an instance of the `NSOpenTKView` subclass of `NSView`.| +|[`MacOSWindowComponent.SetDockIcon`](xref:OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetDockIcon(OpenTK.Platform.WindowHandle,OpenTK.Platform.IconHandle))|Sets the dock icon of the application| +|[`MacOSWindowComponent.SetFullscreenDisplayNoSpace`](xref:OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetFullscreenDisplayNoSpace(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle))|Make the window fullscreen without creating a new space for the window.| +|[`MacOSWindowComponent.GetNSWindow`](xref:OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetNSWindow(OpenTK.Platform.WindowHandle))|Gets the `NSWindow` of the window handle. This is an instance of the `NSOpenTKWindow` subclass of `NSWindow`.| +|[`MacOSWindowComponent.GetNSView`](xref:OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetNSView(OpenTK.Platform.WindowHandle))|Gets the `NSView` of the window handle. This is an instance of the `NSOpenTKView` subclass of `NSView`.| |`MacOSOpenGLComponent`| | -|[`MacOSOpenGLComponent.GetNSOpenGLContext`](xref:OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.GetNSOpenGLContext(OpenTK.Core.Platform.OpenGLContextHandle))|Gets the `NSOpenGLContext` of the OpenGL context handle.| +|[`MacOSOpenGLComponent.GetNSOpenGLContext`](xref:OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.GetNSOpenGLContext(OpenTK.Platform.OpenGLContextHandle))|Gets the `NSOpenGLContext` of the OpenGL context handle.| |`MacOSIconComponent`|| |[`MacOSIconComponent.CreateSFSymbol`](xref:OpenTK.Platform.Native.macOS.MacOSIconComponent.CreateSFSymbol(System.String,System.String))|Creates a IconHandle from a SF symbol name.| |`MacOSDisplayComponent`|| -|[`MacOSDisplayComponent.GetSafeArea`](xref:OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetSafeArea(OpenTK.Core.Platform.DisplayHandle,OpenTK.Mathematics.Box2i@))|Gets the area of the screen that is not covered by things like camera housings.| -|[`MacOSDisplayComponent.GetSafeLeftAuxArea`](xref:OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetSafeLeftAuxArea(OpenTK.Core.Platform.DisplayHandle,OpenTK.Mathematics.Box2i@))|Gets the visible area of the screen to the left of the camera housing or an empty area if there is no camera housing.| -|[`MacOSDisplayComponent.GetSafeRightAuxArea`](xref:OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetSafeRightAuxArea(OpenTK.Core.Platform.DisplayHandle,OpenTK.Mathematics.Box2i@))|Gets the visible area of the screen to the right of the camera housing or an empty area of there is no camera housing.| -|[`MacOSDisplayComponent.GetDirectDisplayID`](xref:OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetDirectDisplayID(OpenTK.Core.Platform.DisplayHandle))|Gets the `CGDirectDisplayID` for the display handle.| +|[`MacOSDisplayComponent.GetSafeArea`](xref:OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetSafeArea(OpenTK.Platform.DisplayHandle,OpenTK.Mathematics.Box2i@))|Gets the area of the screen that is not covered by things like camera housings.| +|[`MacOSDisplayComponent.GetSafeLeftAuxArea`](xref:OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetSafeLeftAuxArea(OpenTK.Platform.DisplayHandle,OpenTK.Mathematics.Box2i@))|Gets the visible area of the screen to the left of the camera housing or an empty area if there is no camera housing.| +|[`MacOSDisplayComponent.GetSafeRightAuxArea`](xref:OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetSafeRightAuxArea(OpenTK.Platform.DisplayHandle,OpenTK.Mathematics.Box2i@))|Gets the visible area of the screen to the right of the camera housing or an empty area of there is no camera housing.| +|[`MacOSDisplayComponent.GetDirectDisplayID`](xref:OpenTK.Platform.Native.macOS.MacOSDisplayComponent.GetDirectDisplayID(OpenTK.Platform.DisplayHandle))|Gets the `CGDirectDisplayID` for the display handle.| |`MacOSCursorComponent`|| |[`MacOSCursorComponent.Create(Frame[] frames, float delay)`](xref:OpenTK.Platform.Native.macOS.MacOSCursorComponent.Create(OpenTK.Platform.Native.macOS.MacOSCursorComponent.Frame[],System.Single))|Used to create an animated cursor.| -|[`MacOSCursorComponent.IsAnimatedCursor`](xref:OpenTK.Platform.Native.macOS.MacOSCursorComponent.IsAnimatedCursor(OpenTK.Core.Platform.CursorHandle))|Used to check if a given cursor is animated.| -|[`MacOSCursorComponent.UpdateAnimation`](xref:OpenTK.Platform.Native.macOS.MacOSCursorComponent.UpdateAnimation(OpenTK.Core.Platform.CursorHandle,System.Double))|Used to update the animation of a given cursor.| +|[`MacOSCursorComponent.IsAnimatedCursor`](xref:OpenTK.Platform.Native.macOS.MacOSCursorComponent.IsAnimatedCursor(OpenTK.Platform.CursorHandle))|Used to check if a given cursor is animated.| +|[`MacOSCursorComponent.UpdateAnimation`](xref:OpenTK.Platform.Native.macOS.MacOSCursorComponent.UpdateAnimation(OpenTK.Platform.CursorHandle,System.Double))|Used to update the animation of a given cursor.| # ANGLE @@ -97,5 +99,5 @@ When using ANGLE to create OpenGL contexts `ANGLEOpenGLComponent` exposes a few |--------|-----------| |`ANGLEOpenGLComponent`| | |[`ANGLEOpenGLComponent.GetEglDisplay`](xref:OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.GetEglDisplay)|Gets the `EGLDisplay` used by OpenTK.| -|[`ANGLEOpenGLComponent.GetEglContext`](xref:OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.GetEglContext(OpenTK.Core.Platform.OpenGLContextHandle))|Gets the `EGLContext` for the OpenGL context.| -|[`ANGLEOpenGLComponent.GetEglSurface`](xref:OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.GetEglSurface(OpenTK.Core.Platform.OpenGLContextHandle))|Gets the `EGLSurface` for the OpenGL context.| +|[`ANGLEOpenGLComponent.GetEglContext`](xref:OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.GetEglContext(OpenTK.Platform.OpenGLContextHandle))|Gets the `EGLContext` for the OpenGL context.| +|[`ANGLEOpenGLComponent.GetEglSurface`](xref:OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.GetEglSurface(OpenTK.Platform.OpenGLContextHandle))|Gets the `EGLSurface` for the OpenGL context.| From c4d973e2d863f43d5ead87fc9c6bda69d5f99304 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julius=20H=C3=A4ger?= Date: Sun, 11 Aug 2024 16:11:45 +0200 Subject: [PATCH 34/38] Fix typo --- learn/pal2/Introduction.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/learn/pal2/Introduction.md b/learn/pal2/Introduction.md index 87659ea1..83dae860 100644 --- a/learn/pal2/Introduction.md +++ b/learn/pal2/Introduction.md @@ -118,7 +118,7 @@ To render something to the window we can do the following: GL.ClearColor(new Color4(64 / 255f, 0, 127 / 255f, 255)); GL.Clear(ClearBufferMask.ColorBufferBit | ClearBufferMask.DepthBufferBit | ClearBufferMask.StencilBufferBit); -Tooklit.OpenGL.SwapBuffers(glContext); +Toolkit.OpenGL.SwapBuffers(glContext); ``` The code shown so far will create a window and then process events while rendering to the window, but running the code there is one crucial flaw to the program. Closing the window doesn't work. From c5626aa0766c61ef1e1b4666ef337ddfee5ef073 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julius=20H=C3=A4ger?= Date: Wed, 28 Aug 2024 00:22:10 +0200 Subject: [PATCH 35/38] Added application icon guide to pal2 tutorial. --- learn/pal2/Application-Icon.md | 115 +++++++++++++++++++++++++++++++++ learn/toc.yml | 3 + 2 files changed, 118 insertions(+) create mode 100644 learn/pal2/Application-Icon.md diff --git a/learn/pal2/Application-Icon.md b/learn/pal2/Application-Icon.md new file mode 100644 index 00000000..184a19fd --- /dev/null +++ b/learn/pal2/Application-Icon.md @@ -0,0 +1,115 @@ +# Setting up your PAL2 application with an application icon + +Every operating system has a different way of handling application icons. This document will guide you through the different icon options available in PAL2 and how to set them up to work. + +The simplest way to set your application icon is through [`Toolkit.Window.SetIcon`](xref:OpenTK.Platform.IWindowComponent.SetIcon(OpenTK.Platform.WindowHandle,OpenTK.Platform.IconHandle)) which will set the window icon at runtime. But this might be undesirable the desktop icon that the operating system will use to represent your application will still be unset. This is where the operating system specific setup comes into play. + +Here are the guides for the different operating systems. +- [Windows](#windows) +- [macOS](#macOS) +- [Linux](#linux) + +## Windows + +> [!NOTE] +> TODO: Add note about multi-resolution icons and accessing embedded resources through the PAL2 interface. + +### The simple way +On windows your `.exe` contains a number of embedded resources. These resources contain a bunch of info related to your application. One of these pieces of information is the icon the `.exe` should use. The easiest way to set this up is by adding the following line to your `.csproj` file: +```xml + + path/to/icon.ico + +``` + +This will automatically add this `.ico` file into the manifest of your built `.exe` and so the application will have the correct appearence in explorer and on the desktop. + +### The more involved way + +Setting the icon like we did the simple way works fine for application icons, but if you want to have more control over your icon or potentially add native `.cur` cursors to your project you might want to consider using a win32 resource file (`.res`). +This requires a little setup when building C# projects, this is because you need to compile your binary `.res` file from a `.rc` file using `rc.exe` (located in your windows SDK, e.g. `C:\Program Files (x86)\Windows Kits\10\bin\10.0.22000.0\x64\rc.exe`). More info on resource files can be found here: https://learn.microsoft.com/en-us/windows/win32/menurc/about-resource-files + +But a basic `app.rc` file might look like this: +```rc +app_ico ICON "path/to/app.ico" +``` +`app_ico` is a name you can later use to load this icon, but by placing it as the first icon in the `.rc` file it will also become the application icon. + +Then to compile this file you would run `rc.exe app.rc` which will produce a `app.res` file that we will now include include in our `.csproj` like this: + +```xml + + path/to/app.res + +``` + +This will allow you to add additional entries in your `.rc` resource file like cursors, manifests, or whatever else you might want. To read more about windows publishing, please read this article: [TODO: Windows publishing]() + +## macOS + +> [!NOTE] +> TODO: Mention `MacOSIconComponent.CreateSFSymbol`? + +On macOS an application is a special folder that contains a bunch of different files and folders. One of these files is called `info.plist` and contains a bunch of information about your application, including the icon to use. + +A simple `info.plist` could look like this: +```plist + + + + + CFBundleIdentifier + my.app.Application + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + My app name + CFBundleIconFile + icon.png + CFBundlePackageType + APPL + + +``` + +You can read more about `info.plist` and other keys and features related to it here: https://developer.apple.com/documentation/bundleresources/information_property_list/managing_your_app_s_information_property_list?language=objc + +`info.plist` keys of interest might be `CFBundleDisplayName` in combination with a `InfoPlist.strings` file for application name localization, or `CFBundleDevelopmentRegion` to set the default language for the application. + +To include this in your project we can do the following in the `.csproj`: +```xml + + + + + PreserveNewest + + + +``` + +To read more about packaging on macOS, read this article: [TODO: macOS publishing](). + +## Linux + +> [!NOTE] +> TODO: Mention the PAL2 api for setting multi-resolution icons programatically. The `.desktop` method is still preferred. + +On KDE and GNOME `.desktop` files are used to specify application metadata similar to `info.plist`. The specification for how these `.desktop` files can be found here: https://specifications.freedesktop.org/desktop-entry-spec/latest/ + +Here is a basic `my.application.desktop` (TODO: Make a note about this matching some OpenTK specified d-bus name... something something): +``` +[Desktop Entry] +Version=1.0 +Type=Application +Name=My Application +Exec=/usr/bin/myapplication +Path=/usr/bin/ +Icon=/usr/share/icons/Humanity/apps/32/icon.svg +Terminal=false +Categories=Game; +``` + +Additional entires might be interesting such as `PrefersNonDefaultGPU` as a hint to default to a more powerful GPU (if the desktop environment honors this hint). + +This file should then at install time be placed into `/usr/share/applications/my.application.desktop`. To read more about publishing for linux, please read this article: [TODO: linux publishing]() \ No newline at end of file diff --git a/learn/toc.yml b/learn/toc.yml index ce020ba9..a2a4e4e9 100644 --- a/learn/toc.yml +++ b/learn/toc.yml @@ -54,5 +54,8 @@ href: pal2/Components.md - name: Platform specific settings href: pal2/Platform-Specific-Settings.md + # Maybe make a publishing subcategory? + - name: Application Icon + href: pal2/Application-Icon.md - name: ANGLE href: pal2/ANGLE.md From 8e0325e6059cf0f25949de49f24c572be09d235c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julius=20H=C3=A4ger?= Date: Thu, 29 Aug 2024 14:56:10 +0200 Subject: [PATCH 36/38] Added pal2 Vulkan guide. Fixed wrong bookmark in pal2 Application Icon guide. --- learn/pal2/Application-Icon.md | 2 +- learn/pal2/Vulkan.md | 45 ++++++++++++++++++++++++++++++++++ learn/toc.yml | 2 ++ 3 files changed, 48 insertions(+), 1 deletion(-) create mode 100644 learn/pal2/Vulkan.md diff --git a/learn/pal2/Application-Icon.md b/learn/pal2/Application-Icon.md index 184a19fd..47705d24 100644 --- a/learn/pal2/Application-Icon.md +++ b/learn/pal2/Application-Icon.md @@ -6,7 +6,7 @@ The simplest way to set your application icon is through [`Toolkit.Window.SetIco Here are the guides for the different operating systems. - [Windows](#windows) -- [macOS](#macOS) +- [macOS](#macos) - [Linux](#linux) ## Windows diff --git a/learn/pal2/Vulkan.md b/learn/pal2/Vulkan.md new file mode 100644 index 00000000..c8380b8e --- /dev/null +++ b/learn/pal2/Vulkan.md @@ -0,0 +1,45 @@ +# Getting started with the OpenTK PAL2 Vulkan component + +OpenTK 5 brings Vulkan bindings to OpenTK. Unlike OpenGL Vulkan contains extensions for platform creation and display, so with the basic native access that both GLFW and PAL2 offer it's possible to create your own Vulkan instance and device just with the OpenTK Vulkan bindings. + +However this requires code for each operating system which is not very beginner friendly or in the spirit of OpenTK as a cross-platform API. So like APIs like GLFW and SDL, OpenTKs PAL2 contains a Vulkan component that makes creating cross-platform device instances easier. + +## The [`VKLoader`](xref:OpenTK.Graphics.VKLoader) class + +The first piece of the puzzle is the [`VKLoader`](xref:OpenTK.Graphics.VKLoader) class that contains the logic for loading Vulkan function entry-points. +All of the `VK.*` functions use this loader to on-demand load Vulkan functions as they are called. +For this to work [`VKLoader`](xref:OpenTK.Graphics.VKLoader) must first dynamically load the Vulkan library of the current platform by calling [`VKLoader.Init()`](xref:OpenTK.Graphics.VKLoader.Init). +Below is a list of the default names OpenTK will look for: + +|Platform|Vulkan dynamic library| +|--------|----------------------| +|Windows |`vulkan-1.dll` | +|Linux |`libvulkan.so.1` | +|FreeBSD |`libvulkan.so.1` | +|macOS |`libvulkan.1.dylib` | + +After the Vulkan loader has been found [`VKLoader`](xref:OpenTK.Graphics.VKLoader) will load the `vkGetInstanceProcAddr` entry-point which is the future base for all function loading in Vulkan. This type of loading will work fine for functions that are "global commands": + +|Global commands| +|----| +|[`vkEnumerateInstanceVersion`](https://registry.khronos.org/vulkan/specs/1.3-extensions/man/html/vkEnumerateInstanceVersion.html)| +|[`vkEnumerateInstanceExtensionProperties`](https://registry.khronos.org/vulkan/specs/1.3-extensions/man/html/vkEnumerateInstanceExtensionProperties.html)| +|[`vkEnumerateInstanceLayerProperties`](https://registry.khronos.org/vulkan/specs/1.3-extensions/man/html/vkEnumerateInstanceLayerProperties.html)| +|[`vkCreateInstance`](https://registry.khronos.org/vulkan/specs/1.3-extensions/man/html/vkCreateInstance.html)| + +To load further entry-points a Vulkan instance needs to be created and provided to [`VKLoader`](xref:OpenTK.Graphics.VKLoader) through [`VKLoader.SetInstance(VkInstance)`](xref:OpenTK.Graphics.VKLoader.SetInstance(OpenTK.Graphics.Vulkan.VkInstance)). This will enable loading of further function entry-points of the Vulkan API. + +> [!IMPORTANT] +> Currently OpenTKs Vulkan bindings do not have built-in support for loading through `vkGetDeviceProcAddr` or having multiple sets of entry-points for different devices. For now `vkGetInstanceProcAddr` is the only option. Enabling `vkGetDeviceProcAddr` loading is planned functionality. + +## Using the PAL2 Vulkan component + +The PAL2 Vulkan component is accesible through [`Toolkit.Vulkan`](xref:OpenTK.Platform.Toolkit.Vulkan) and contains convenience features for easily creating cross-platform Vulkan instances and devices. + +|Function|Description| +|--------|-----------| +|[`Toolkit.Vulkan.GetRequiredInstanceExtensions()`](xref:OpenTK.Platform.IVulkanComponent.GetRequiredInstanceExtensions)|This function returns a list of required Vulkan instance extensions required to be able to create a window surface on the current platform.| +|[`Toolkit.Vulkan.GetPhysicalDevicePresentationSupport(...)`](xref:OpenTK.Platform.IVulkanComponent.GetPhysicalDevicePresentationSupport(OpenTK.Graphics.Vulkan.VkInstance,OpenTK.Graphics.Vulkan.VkPhysicalDevice,System.UInt32))|Queries if the specified device queue supports presentation. Only queues which support presentation can be passed to [`vkQueuePresentKHR`](https://registry.khronos.org/vulkan/specs/1.3-extensions/man/html/vkQueuePresentKHR.html) and therefore only these queues can be displayed to the user.| +|[`Toolkit.Vulkan.CreateWindowSurface(...)`](xref:OpenTK.Platform.IVulkanComponent.CreateWindowSurface(OpenTK.Graphics.Vulkan.VkInstance,OpenTK.Platform.WindowHandle,OpenTK.Graphics.Vulkan.VkAllocationCallbacks*,OpenTK.Graphics.Vulkan.VkSurfaceKHR@))|This is used to create a `VkSurfaceKHR` from a `WindowHandle` on the current platform. This function calls the instance extensions enabled by `GetRequiredInstanceExtensions()` to create the surface.| + +With these functions in-hand, following any Vulkan tutorial (written for c/c++) using OpenTK should be pretty easy to adapt to be able to use these functions. For a complete working example, please see the [VulkanTestProject](https://github.com/opentk/opentk/blob/opentk5.0/tests/VulkanTestProject/Program.cs) in the OpenTK repo. \ No newline at end of file diff --git a/learn/toc.yml b/learn/toc.yml index a2a4e4e9..6d2ac692 100644 --- a/learn/toc.yml +++ b/learn/toc.yml @@ -54,6 +54,8 @@ href: pal2/Components.md - name: Platform specific settings href: pal2/Platform-Specific-Settings.md + - name: Vulkan + href: pal2/Vulkan.md # Maybe make a publishing subcategory? - name: Application Icon href: pal2/Application-Icon.md From 828124d1235075109f29e048545c05b00de65df1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julius=20H=C3=A4ger?= Date: Mon, 11 Nov 2024 21:00:57 +0100 Subject: [PATCH 37/38] Updated to OpenTK 5.0-pre.13 --- api/.manifest | 2514 +----- api/OpenTK.Core.Native.MarshalTk.yml | 130 +- api/OpenTK.Graphics.BufferHandle.yml | 22 +- api/OpenTK.Graphics.CLContext.yml | 20 +- api/OpenTK.Graphics.CLEvent.yml | 20 +- api/OpenTK.Graphics.DisplayListHandle.yml | 22 +- ...TK.Graphics.EGLLoader.BindingsContext.yml} | 187 +- ...rRef.yml => OpenTK.Graphics.EGLLoader.yml} | 308 +- api/OpenTK.Graphics.Egl.Egl.yml | 5211 ------------ api/OpenTK.Graphics.Egl.EglException.yml | 533 -- api/OpenTK.Graphics.Egl.ErrorCode.yml | 407 - api/OpenTK.Graphics.Egl.RenderApi.yml | 131 - api/OpenTK.Graphics.Egl.RenderableFlags.yml | 187 - api/OpenTK.Graphics.Egl.SurfaceType.yml | 223 - api/OpenTK.Graphics.Egl.yml | 92 - api/OpenTK.Graphics.FramebufferHandle.yml | 22 +- api/OpenTK.Graphics.GLHandleARB.yml | 24 +- api/OpenTK.Graphics.GLSync.yml | 20 +- ...nTK.Graphics.GLXLoader.BindingsContext.yml | 4 +- api/OpenTK.Graphics.GLXLoader.yml | 2 +- api/OpenTK.Graphics.Glx.All.yml | 6801 --------------- api/OpenTK.Graphics.Glx.Colormap.yml | 440 - api/OpenTK.Graphics.Glx.DisplayPtr.yml | 440 - api/OpenTK.Graphics.Glx.Font.yml | 440 - api/OpenTK.Graphics.Glx.GLXAttribute.yml | 821 -- api/OpenTK.Graphics.Glx.GLXContext.yml | 435 - api/OpenTK.Graphics.Glx.GLXContextID.yml | 440 - api/OpenTK.Graphics.Glx.GLXDrawable.yml | 440 - api/OpenTK.Graphics.Glx.GLXFBConfig.yml | 435 - api/OpenTK.Graphics.Glx.GLXFBConfigID.yml | 440 - api/OpenTK.Graphics.Glx.GLXFBConfigIDSGIX.yml | 440 - api/OpenTK.Graphics.Glx.GLXFBConfigSGIX.yml | 435 - ...TK.Graphics.Glx.GLXHyperpipeConfigSGIX.yml | 418 - api/OpenTK.Graphics.Glx.GLXPbuffer.yml | 440 - api/OpenTK.Graphics.Glx.GLXPbufferSGIX.yml | 440 - api/OpenTK.Graphics.Glx.GLXPixmap.yml | 440 - ...K.Graphics.Glx.GLXVideoCaptureDeviceNV.yml | 440 - api/OpenTK.Graphics.Glx.GLXVideoDeviceNV.yml | 440 - ...OpenTK.Graphics.Glx.GLXVideoSourceSGIX.yml | 440 - api/OpenTK.Graphics.Glx.GLXWindow.yml | 440 - api/OpenTK.Graphics.Glx.Glx.AMD.yml | 1503 ---- api/OpenTK.Graphics.Glx.Glx.ARB.yml | 903 -- api/OpenTK.Graphics.Glx.Glx.EXT.yml | 1124 --- api/OpenTK.Graphics.Glx.Glx.MESA.yml | 1635 ---- api/OpenTK.Graphics.Glx.Glx.NV.yml | 3294 -------- api/OpenTK.Graphics.Glx.Glx.OML.yml | 1373 ---- api/OpenTK.Graphics.Glx.Glx.SGI.yml | 990 --- api/OpenTK.Graphics.Glx.Glx.SGIX.yml | 4291 ---------- api/OpenTK.Graphics.Glx.Glx.SUN.yml | 629 -- api/OpenTK.Graphics.Glx.Glx.yml | 4544 ---------- api/OpenTK.Graphics.Glx.GlxPointers.yml | 7314 ----------------- api/OpenTK.Graphics.Glx.Pixmap.yml | 440 - api/OpenTK.Graphics.Glx.ScreenPtr.yml | 440 - api/OpenTK.Graphics.Glx.Window.yml | 440 - api/OpenTK.Graphics.Glx.XVisualInfoPtr.yml | 440 - api/OpenTK.Graphics.Glx.yml | 466 -- api/OpenTK.Graphics.PerfQueryHandle.yml | 22 +- api/OpenTK.Graphics.ProgramHandle.yml | 22 +- api/OpenTK.Graphics.ProgramPipelineHandle.yml | 22 +- api/OpenTK.Graphics.QueryHandle.yml | 22 +- api/OpenTK.Graphics.RenderbufferHandle.yml | 22 +- api/OpenTK.Graphics.SamplerHandle.yml | 22 +- api/OpenTK.Graphics.ShaderHandle.yml | 22 +- api/OpenTK.Graphics.SpecialNumbers.yml | 28 +- api/OpenTK.Graphics.TextureHandle.yml | 22 +- ...penTK.Graphics.TransformFeedbackHandle.yml | 22 +- api/OpenTK.Graphics.VKLoader.yml | 6 +- api/OpenTK.Graphics.VertexArrayHandle.yml | 22 +- ...nTK.Graphics.WGLLoader.BindingsContext.yml | 2 +- api/OpenTK.Graphics.Wgl.AccelerationType.yml | 200 - api/OpenTK.Graphics.Wgl.All.yml | 7054 ---------------- api/OpenTK.Graphics.Wgl.ColorBuffer.yml | 466 -- api/OpenTK.Graphics.Wgl.ColorBufferMask.yml | 218 - api/OpenTK.Graphics.Wgl.ContextAttribs.yml | 233 - api/OpenTK.Graphics.Wgl.ContextAttribute.yml | 152 - api/OpenTK.Graphics.Wgl.ContextFlagsMask.yml | 164 - ...OpenTK.Graphics.Wgl.ContextProfileMask.yml | 164 - api/OpenTK.Graphics.Wgl.DXInteropMaskNV.yml | 259 - ...nTK.Graphics.Wgl.DigitalVideoAttribute.yml | 264 - api/OpenTK.Graphics.Wgl.FontFormat.yml | 446 - api/OpenTK.Graphics.Wgl.GPUPropertyAMD.yml | 347 - ...penTK.Graphics.Wgl.GammaTableAttribute.yml | 218 - ...OpenTK.Graphics.Wgl.ImageBufferMaskI3D.yml | 172 - ...enTK.Graphics.Wgl.LayerPlaneDescriptor.yml | 895 -- api/OpenTK.Graphics.Wgl.LayerPlaneMask.yml | 903 -- api/OpenTK.Graphics.Wgl.ObjectTypeDX.yml | 278 - api/OpenTK.Graphics.Wgl.PBufferAttribute.yml | 402 - ...OpenTK.Graphics.Wgl.PBufferCubeMapFace.yml | 200 - ...enTK.Graphics.Wgl.PBufferTextureFormat.yml | 131 - ...enTK.Graphics.Wgl.PBufferTextureTarget.yml | 154 - ...enTK.Graphics.Wgl.PixelFormatAttribute.yml | 2253 ----- ...nTK.Graphics.Wgl.PixelFormatDescriptor.yml | 936 --- api/OpenTK.Graphics.Wgl.PixelType.yml | 154 - ...OpenTK.Graphics.Wgl.StereoEmitterState.yml | 196 - api/OpenTK.Graphics.Wgl.SwapMethod.yml | 200 - ...aphics.Wgl.VideoCaptureDeviceAttribute.yml | 153 - api/OpenTK.Graphics.Wgl.VideoOutputBuffer.yml | 271 - ...nTK.Graphics.Wgl.VideoOutputBufferType.yml | 245 - api/OpenTK.Graphics.Wgl.Wgl.AMD.yml | 1630 ---- api/OpenTK.Graphics.Wgl.Wgl.ARB.yml | 2933 ------- api/OpenTK.Graphics.Wgl.Wgl.EXT.yml | 2530 ------ api/OpenTK.Graphics.Wgl.Wgl.I3D.yml | 3643 -------- api/OpenTK.Graphics.Wgl.Wgl.NV.yml | 5043 ------------ api/OpenTK.Graphics.Wgl.Wgl.OML.yml | 887 -- api/OpenTK.Graphics.Wgl.Wgl.yml | 2996 ------- api/OpenTK.Graphics.Wgl.WglPointers.yml | 7033 ---------------- api/OpenTK.Graphics.Wgl._GPU_DEVICE.yml | 438 - api/OpenTK.Graphics.Wgl.yml | 477 -- api/OpenTK.Graphics.yml | 30 + api/OpenTK.Platform.AppTheme.yml | 47 +- api/OpenTK.Platform.Bitmap.yml | 8 +- api/OpenTK.Platform.ClipboardFormat.yml | 189 +- ...enTK.Platform.ClipboardUpdateEventArgs.yml | 6 +- api/OpenTK.Platform.CloseEventArgs.yml | 4 +- api/OpenTK.Platform.ContextDepthBits.yml | 10 +- api/OpenTK.Platform.ContextPixelFormat.yml | 8 +- ...penTK.Platform.ContextReleaseBehaviour.yml | 6 +- ...tform.ContextResetNotificationStrategy.yml | 6 +- api/OpenTK.Platform.ContextStencilBits.yml | 8 +- api/OpenTK.Platform.ContextSwapMethod.yml | 8 +- api/OpenTK.Platform.ContextValues.yml | 255 +- api/OpenTK.Platform.DialogFileFilter.yml | 210 +- ...form.DisplayConnectionChangedEventArgs.yml | 8 +- api/OpenTK.Platform.FileDropEventArgs.yml | 8 +- api/OpenTK.Platform.GraphicsApiHints.yml | 1 + api/OpenTK.Platform.HitTest.yml | 47 +- api/OpenTK.Platform.IClipboardComponent.yml | 327 +- api/OpenTK.Platform.ICursorComponent.yml | 412 +- api/OpenTK.Platform.IDialogComponent.yml | 98 +- api/OpenTK.Platform.IDisplayComponent.yml | 59 +- api/OpenTK.Platform.IIconComponent.yml | 170 +- api/OpenTK.Platform.IJoystickComponent.yml | 55 +- api/OpenTK.Platform.IKeyboardComponent.yml | 178 +- api/OpenTK.Platform.IMouseComponent.yml | 560 +- api/OpenTK.Platform.IOpenGLComponent.yml | 241 +- api/OpenTK.Platform.IPalComponent.yml | 122 +- api/OpenTK.Platform.IShellComponent.yml | 210 +- api/OpenTK.Platform.ISurfaceComponent.yml | 45 +- api/OpenTK.Platform.IVulkanComponent.yml | 92 +- api/OpenTK.Platform.IWindowComponent.yml | 2014 +++-- ...Platform.InputLanguageChangedEventArgs.yml | 12 +- api/OpenTK.Platform.KeyDownEventArgs.yml | 12 +- api/OpenTK.Platform.KeyUpEventArgs.yml | 10 +- ...enTK.Platform.MouseButtonDownEventArgs.yml | 8 +- ...OpenTK.Platform.MouseButtonUpEventArgs.yml | 8 +- api/OpenTK.Platform.MouseEnterEventArgs.yml | 6 +- api/OpenTK.Platform.MouseMoveEventArgs.yml | 177 +- api/OpenTK.Platform.MouseState.yml | 127 +- ...form.Native.ANGLE.ANGLEOpenGLComponent.yml | 442 +- ...tform.Native.SDL.SDLClipboardComponent.yml | 444 +- ...Platform.Native.SDL.SDLCursorComponent.yml | 325 +- ...latform.Native.SDL.SDLDisplayComponent.yml | 173 +- ...K.Platform.Native.SDL.SDLIconComponent.yml | 217 +- ...atform.Native.SDL.SDLJoystickComponent.yml | 167 +- ...atform.Native.SDL.SDLKeyboardComponent.yml | 251 +- ....Platform.Native.SDL.SDLMouseComponent.yml | 706 +- ...Platform.Native.SDL.SDLOpenGLComponent.yml | 357 +- ....Platform.Native.SDL.SDLShellComponent.yml | 303 +- ...Platform.Native.SDL.SDLWindowComponent.yml | 2579 +++--- ...form.Native.Windows.ClipboardComponent.yml | 567 +- ...latform.Native.Windows.CursorComponent.yml | 340 +- ...latform.Native.Windows.DialogComponent.yml | 216 +- ...atform.Native.Windows.DisplayComponent.yml | 177 +- ....Platform.Native.Windows.IconComponent.yml | 223 +- ...tform.Native.Windows.JoystickComponent.yml | 169 +- ...tform.Native.Windows.KeyboardComponent.yml | 251 +- ...Platform.Native.Windows.MouseComponent.yml | 711 +- ...latform.Native.Windows.OpenGLComponent.yml | 371 +- ...ndows.ShellComponent.CornerPreference.yml} | 106 +- ...Platform.Native.Windows.ShellComponent.yml | 357 +- ...latform.Native.Windows.WindowComponent.yml | 2597 +++--- api/OpenTK.Platform.Native.Windows.yml | 24 +- ... => OpenTK.Platform.Native.X11.LibXcb.yml} | 331 +- ...ve.X11.X11ClipboardComponent.IPngCodec.yml | 550 ++ ...tform.Native.X11.X11ClipboardComponent.yml | 501 +- ...Platform.Native.X11.X11CursorComponent.yml | 325 +- ...Platform.Native.X11.X11DialogComponent.yml | 216 +- ...latform.Native.X11.X11DisplayComponent.yml | 173 +- ...K.Platform.Native.X11.X11IconComponent.yml | 215 +- ...atform.Native.X11.X11KeyboardComponent.yml | 251 +- ....Platform.Native.X11.X11MouseComponent.yml | 701 +- ...Platform.Native.X11.X11OpenGLComponent.yml | 903 +- ....Platform.Native.X11.X11ShellComponent.yml | 313 +- ...Platform.Native.X11.X11VulkanComponent.yml | 1168 +++ ...Platform.Native.X11.X11WindowComponent.yml | 2629 +++--- api/OpenTK.Platform.Native.X11.yml | 76 + ...m.Native.macOS.MacOSClipboardComponent.yml | 429 +- ...ative.macOS.MacOSCursorComponent.Frame.yml | 38 +- ...form.Native.macOS.MacOSCursorComponent.yml | 331 +- ...form.Native.macOS.MacOSDialogComponent.yml | 412 +- ...orm.Native.macOS.MacOSDisplayComponent.yml | 179 +- ...atform.Native.macOS.MacOSIconComponent.yml | 215 +- ...rm.Native.macOS.MacOSKeyboardComponent.yml | 251 +- ...tform.Native.macOS.MacOSMouseComponent.yml | 697 +- ...form.Native.macOS.MacOSOpenGLComponent.yml | 367 +- ...tform.Native.macOS.MacOSShellComponent.yml | 288 +- ...form.Native.macOS.MacOSVulkanComponent.yml | 1173 +++ ...form.Native.macOS.MacOSWindowComponent.yml | 2617 +++--- api/OpenTK.Platform.Native.macOS.yml | 7 + api/OpenTK.Platform.OpenDialogOptions.yml | 108 +- ...OpenTK.Platform.OpenGLGraphicsApiHints.yml | 212 +- ...nTK.Platform.PowerStateChangeEventArgs.yml | 6 +- api/OpenTK.Platform.SaveDialogOptions.yml | 97 +- api/OpenTK.Platform.ScrollEventArgs.yml | 8 +- api/OpenTK.Platform.TextEditingEventArgs.yml | 10 +- api/OpenTK.Platform.TextInputEventArgs.yml | 6 +- api/OpenTK.Platform.ThemeChangeEventArgs.yml | 51 +- api/OpenTK.Platform.ThemeInfo.yml | 50 +- api/OpenTK.Platform.Toolkit.yml | 96 +- ...K.Platform.ToolkitOptions.MacOSOptions.yml | 80 +- ...Platform.ToolkitOptions.WindowsOptions.yml | 6 +- ...nTK.Platform.ToolkitOptions.X11Options.yml | 2 +- api/OpenTK.Platform.ToolkitOptions.yml | 38 +- ...penTK.Platform.VulkanGraphicsApiHints.yml} | 389 +- ...OpenTK.Platform.WindowTransparencyMode.yml | 201 + api/OpenTK.Platform.yml | 15 + api/toc.yml | 195 +- filterConfig.yml | 6 + opentk | 2 +- 219 files changed, 26138 insertions(+), 109675 deletions(-) rename api/{OpenTK.Graphics.Wgl.Wgl._3DL.yml => OpenTK.Graphics.EGLLoader.BindingsContext.yml} (60%) rename api/{OpenTK.Graphics.Wgl.ColorRef.yml => OpenTK.Graphics.EGLLoader.yml} (55%) delete mode 100644 api/OpenTK.Graphics.Egl.Egl.yml delete mode 100644 api/OpenTK.Graphics.Egl.EglException.yml delete mode 100644 api/OpenTK.Graphics.Egl.ErrorCode.yml delete mode 100644 api/OpenTK.Graphics.Egl.RenderApi.yml delete mode 100644 api/OpenTK.Graphics.Egl.RenderableFlags.yml delete mode 100644 api/OpenTK.Graphics.Egl.SurfaceType.yml delete mode 100644 api/OpenTK.Graphics.Egl.yml delete mode 100644 api/OpenTK.Graphics.Glx.All.yml delete mode 100644 api/OpenTK.Graphics.Glx.Colormap.yml delete mode 100644 api/OpenTK.Graphics.Glx.DisplayPtr.yml delete mode 100644 api/OpenTK.Graphics.Glx.Font.yml delete mode 100644 api/OpenTK.Graphics.Glx.GLXAttribute.yml delete mode 100644 api/OpenTK.Graphics.Glx.GLXContext.yml delete mode 100644 api/OpenTK.Graphics.Glx.GLXContextID.yml delete mode 100644 api/OpenTK.Graphics.Glx.GLXDrawable.yml delete mode 100644 api/OpenTK.Graphics.Glx.GLXFBConfig.yml delete mode 100644 api/OpenTK.Graphics.Glx.GLXFBConfigID.yml delete mode 100644 api/OpenTK.Graphics.Glx.GLXFBConfigIDSGIX.yml delete mode 100644 api/OpenTK.Graphics.Glx.GLXFBConfigSGIX.yml delete mode 100644 api/OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX.yml delete mode 100644 api/OpenTK.Graphics.Glx.GLXPbuffer.yml delete mode 100644 api/OpenTK.Graphics.Glx.GLXPbufferSGIX.yml delete mode 100644 api/OpenTK.Graphics.Glx.GLXPixmap.yml delete mode 100644 api/OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV.yml delete mode 100644 api/OpenTK.Graphics.Glx.GLXVideoDeviceNV.yml delete mode 100644 api/OpenTK.Graphics.Glx.GLXVideoSourceSGIX.yml delete mode 100644 api/OpenTK.Graphics.Glx.GLXWindow.yml delete mode 100644 api/OpenTK.Graphics.Glx.Glx.AMD.yml delete mode 100644 api/OpenTK.Graphics.Glx.Glx.ARB.yml delete mode 100644 api/OpenTK.Graphics.Glx.Glx.EXT.yml delete mode 100644 api/OpenTK.Graphics.Glx.Glx.MESA.yml delete mode 100644 api/OpenTK.Graphics.Glx.Glx.NV.yml delete mode 100644 api/OpenTK.Graphics.Glx.Glx.OML.yml delete mode 100644 api/OpenTK.Graphics.Glx.Glx.SGI.yml delete mode 100644 api/OpenTK.Graphics.Glx.Glx.SGIX.yml delete mode 100644 api/OpenTK.Graphics.Glx.Glx.SUN.yml delete mode 100644 api/OpenTK.Graphics.Glx.Glx.yml delete mode 100644 api/OpenTK.Graphics.Glx.GlxPointers.yml delete mode 100644 api/OpenTK.Graphics.Glx.Pixmap.yml delete mode 100644 api/OpenTK.Graphics.Glx.ScreenPtr.yml delete mode 100644 api/OpenTK.Graphics.Glx.Window.yml delete mode 100644 api/OpenTK.Graphics.Glx.XVisualInfoPtr.yml delete mode 100644 api/OpenTK.Graphics.Glx.yml delete mode 100644 api/OpenTK.Graphics.Wgl.AccelerationType.yml delete mode 100644 api/OpenTK.Graphics.Wgl.All.yml delete mode 100644 api/OpenTK.Graphics.Wgl.ColorBuffer.yml delete mode 100644 api/OpenTK.Graphics.Wgl.ColorBufferMask.yml delete mode 100644 api/OpenTK.Graphics.Wgl.ContextAttribs.yml delete mode 100644 api/OpenTK.Graphics.Wgl.ContextAttribute.yml delete mode 100644 api/OpenTK.Graphics.Wgl.ContextFlagsMask.yml delete mode 100644 api/OpenTK.Graphics.Wgl.ContextProfileMask.yml delete mode 100644 api/OpenTK.Graphics.Wgl.DXInteropMaskNV.yml delete mode 100644 api/OpenTK.Graphics.Wgl.DigitalVideoAttribute.yml delete mode 100644 api/OpenTK.Graphics.Wgl.FontFormat.yml delete mode 100644 api/OpenTK.Graphics.Wgl.GPUPropertyAMD.yml delete mode 100644 api/OpenTK.Graphics.Wgl.GammaTableAttribute.yml delete mode 100644 api/OpenTK.Graphics.Wgl.ImageBufferMaskI3D.yml delete mode 100644 api/OpenTK.Graphics.Wgl.LayerPlaneDescriptor.yml delete mode 100644 api/OpenTK.Graphics.Wgl.LayerPlaneMask.yml delete mode 100644 api/OpenTK.Graphics.Wgl.ObjectTypeDX.yml delete mode 100644 api/OpenTK.Graphics.Wgl.PBufferAttribute.yml delete mode 100644 api/OpenTK.Graphics.Wgl.PBufferCubeMapFace.yml delete mode 100644 api/OpenTK.Graphics.Wgl.PBufferTextureFormat.yml delete mode 100644 api/OpenTK.Graphics.Wgl.PBufferTextureTarget.yml delete mode 100644 api/OpenTK.Graphics.Wgl.PixelFormatAttribute.yml delete mode 100644 api/OpenTK.Graphics.Wgl.PixelFormatDescriptor.yml delete mode 100644 api/OpenTK.Graphics.Wgl.PixelType.yml delete mode 100644 api/OpenTK.Graphics.Wgl.StereoEmitterState.yml delete mode 100644 api/OpenTK.Graphics.Wgl.SwapMethod.yml delete mode 100644 api/OpenTK.Graphics.Wgl.VideoCaptureDeviceAttribute.yml delete mode 100644 api/OpenTK.Graphics.Wgl.VideoOutputBuffer.yml delete mode 100644 api/OpenTK.Graphics.Wgl.VideoOutputBufferType.yml delete mode 100644 api/OpenTK.Graphics.Wgl.Wgl.AMD.yml delete mode 100644 api/OpenTK.Graphics.Wgl.Wgl.ARB.yml delete mode 100644 api/OpenTK.Graphics.Wgl.Wgl.EXT.yml delete mode 100644 api/OpenTK.Graphics.Wgl.Wgl.I3D.yml delete mode 100644 api/OpenTK.Graphics.Wgl.Wgl.NV.yml delete mode 100644 api/OpenTK.Graphics.Wgl.Wgl.OML.yml delete mode 100644 api/OpenTK.Graphics.Wgl.Wgl.yml delete mode 100644 api/OpenTK.Graphics.Wgl.WglPointers.yml delete mode 100644 api/OpenTK.Graphics.Wgl._GPU_DEVICE.yml delete mode 100644 api/OpenTK.Graphics.Wgl.yml rename api/{OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce.yml => OpenTK.Platform.Native.Windows.ShellComponent.CornerPreference.yml} (78%) rename api/{OpenTK.Graphics.Glx.GLXHyperpipeNetworkSGIX.yml => OpenTK.Platform.Native.X11.LibXcb.yml} (52%) create mode 100644 api/OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec.yml create mode 100644 api/OpenTK.Platform.Native.X11.X11VulkanComponent.yml create mode 100644 api/OpenTK.Platform.Native.macOS.MacOSVulkanComponent.yml rename api/{OpenTK.Graphics.Wgl.Rect.yml => OpenTK.Platform.VulkanGraphicsApiHints.yml} (51%) create mode 100644 api/OpenTK.Platform.WindowTransparencyMode.yml diff --git a/api/.manifest b/api/.manifest index 73e01d0e..ff7e42e0 100644 --- a/api/.manifest +++ b/api/.manifest @@ -1694,7 +1694,7 @@ "OpenTK.Core.Native.MarshalTk.FreeStringPtr(System.IntPtr)": "OpenTK.Core.Native.MarshalTk.yml", "OpenTK.Core.Native.MarshalTk.MarshalAnsiStringArrayPtrToStringArray(System.Byte**,System.UInt32)": "OpenTK.Core.Native.MarshalTk.yml", "OpenTK.Core.Native.MarshalTk.MarshalPtrToString(System.IntPtr)": "OpenTK.Core.Native.MarshalTk.yml", - "OpenTK.Core.Native.MarshalTk.MarshalStringArrayToAnsiStringArrayPtr(System.Span{System.String},System.UInt32@)": "OpenTK.Core.Native.MarshalTk.yml", + "OpenTK.Core.Native.MarshalTk.MarshalStringArrayToAnsiStringArrayPtr(System.ReadOnlySpan{System.String},System.UInt32@)": "OpenTK.Core.Native.MarshalTk.yml", "OpenTK.Core.Native.MarshalTk.MarshalStringArrayToPtr(System.String[])": "OpenTK.Core.Native.MarshalTk.yml", "OpenTK.Core.Native.MarshalTk.MarshalStringToPtr(System.String)": "OpenTK.Core.Native.MarshalTk.yml", "OpenTK.Core.Native.SlotAttribute": "OpenTK.Core.Native.SlotAttribute.yml", @@ -1768,225 +1768,9 @@ "OpenTK.Graphics.DisplayListHandle.op_Explicit(OpenTK.Graphics.DisplayListHandle)~System.Int32": "OpenTK.Graphics.DisplayListHandle.yml", "OpenTK.Graphics.DisplayListHandle.op_Explicit(System.Int32)~OpenTK.Graphics.DisplayListHandle": "OpenTK.Graphics.DisplayListHandle.yml", "OpenTK.Graphics.DisplayListHandle.op_Inequality(OpenTK.Graphics.DisplayListHandle,OpenTK.Graphics.DisplayListHandle)": "OpenTK.Graphics.DisplayListHandle.yml", - "OpenTK.Graphics.Egl": "OpenTK.Graphics.Egl.yml", - "OpenTK.Graphics.Egl.Egl": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.ALPHA_FORMAT": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.ALPHA_FORMAT_NONPRE": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.ALPHA_FORMAT_PRE": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.ALPHA_MASK_SIZE": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.ALPHA_SIZE": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.BACK_BUFFER": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.BIND_TO_TEXTURE_RGB": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.BIND_TO_TEXTURE_RGBA": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.BLUE_SIZE": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.BUFFER_DESTROYED": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.BUFFER_PRESERVED": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.BUFFER_SIZE": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.BindAPI(OpenTK.Graphics.Egl.RenderApi)": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.BindTexImage(System.IntPtr,System.IntPtr,System.Int32)": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.CLIENT_APIS": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.COLORSPACE": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.COLORSPACE_LINEAR": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.COLORSPACE_sRGB": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.COLOR_BUFFER_TYPE": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.CONFIG_CAVEAT": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.CONFIG_ID": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.CONFORMANT": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.CONTEXT_CLIENT_TYPE": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.CONTEXT_CLIENT_VERSION": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.CONTEXT_LOST": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.CONTEXT_MAJOR_VERSION": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.CONTEXT_MINOR_VERSION": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.CONTEXT_OPENGL_DEBUG": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.CORE_NATIVE_ENGINE": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.ChooseConfig(System.IntPtr,System.Int32[],System.IntPtr[],System.Int32,System.Int32@)": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.CopyBuffers(System.IntPtr,System.IntPtr,System.IntPtr)": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.CreateContext(System.IntPtr,System.IntPtr,System.IntPtr,System.Int32[])": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.CreatePbufferFromClientBuffer(System.IntPtr,System.Int32,System.IntPtr,System.IntPtr,System.Int32[])": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.CreatePbufferSurface(System.IntPtr,System.IntPtr,System.Int32[])": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.CreatePixmapSurface(System.IntPtr,System.IntPtr,System.IntPtr,System.Int32[])": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.CreatePlatformPixmapSurfaceEXT(System.IntPtr,System.IntPtr,System.IntPtr,System.Int32[])": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.CreatePlatformWindowSurfaceEXT(System.IntPtr,System.IntPtr,System.IntPtr,System.Int32[])": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.CreateWindowSurface(System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr)": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.D3D11_DEVICE_ANGLE": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.D3D11_ELSE_D3D9_DISPLAY_ANGLE": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.D3D11_ONLY_DISPLAY_ANGLE": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.D3D9_DEVICE_ANGLE": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.D3D_TEXTURE_2D_SHARE_HANDLE_ANGLE": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.DEFAULT_DISPLAY": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.DEPTH_SIZE": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.DISPLAY_SCALING": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.DONT_CARE": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.DRAW": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.DestroyContext(System.IntPtr,System.IntPtr)": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.DestroySurface(System.IntPtr,System.IntPtr)": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.EGL_D3D_TEXTURE_2D_SHARE_HANDLE_ANGLE": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.EXTENSIONS": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.FALSE": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.FIXED_SIZE_ANGLE": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.GREEN_SIZE": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.GetConfigAttrib(System.IntPtr,System.IntPtr,System.Int32,System.Int32@)": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.GetConfigs(System.IntPtr,System.IntPtr[],System.Int32,System.Int32@)": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.GetCurrentContext": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.GetCurrentDisplay": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.GetCurrentSurface(System.Int32)": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.GetDisplay(System.IntPtr)": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.GetError": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.GetPlatformDisplay(System.Int32,System.IntPtr,System.Int32[])": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.GetPlatformDisplayEXT(System.Int32,System.IntPtr,System.Int32[])": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.GetProcAddress(System.IntPtr)": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.GetProcAddress(System.String)": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.HEIGHT": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.HORIZONTAL_RESOLUTION": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.Initialize(System.IntPtr,System.Int32@,System.Int32@)": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.IsSupported": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.LARGEST_PBUFFER": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.LEVEL": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.LUMINANCE_BUFFER": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.LUMINANCE_SIZE": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.MATCH_NATIVE_PIXMAP": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.MAX_PBUFFER_HEIGHT": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.MAX_PBUFFER_PIXELS": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.MAX_PBUFFER_WIDTH": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.MAX_SWAP_INTERVAL": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.MIN_SWAP_INTERVAL": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.MIPMAP_LEVEL": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.MIPMAP_TEXTURE": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.MULTISAMPLE_RESOLVE": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.MULTISAMPLE_RESOLVE_BOX": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.MULTISAMPLE_RESOLVE_BOX_BIT": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.MULTISAMPLE_RESOLVE_DEFAULT": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.MakeCurrent(System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr)": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.NATIVE_RENDERABLE": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.NATIVE_VISUAL_ID": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.NATIVE_VISUAL_TYPE": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.NONE": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.NON_CONFORMANT_CONFIG": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.NO_CONTEXT": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.NO_SURFACE": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.NO_TEXTURE": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.OPENGL_API": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.OPENGL_BIT": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.OPENGL_ES2_BIT": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.OPENGL_ES3_BIT": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.OPENGL_ES_API": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.OPENGL_ES_BIT": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.OPENVG_API": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.OPENVG_BIT": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.OPENVG_IMAGE": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.PBUFFER_BIT": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.PIXEL_ASPECT_RATIO": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.PIXMAP_BIT": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.PLATFORM_ANGLE_ANGLE": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.PLATFORM_ANGLE_DEVICE_TYPE_ANGLE": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.PLATFORM_ANGLE_DEVICE_TYPE_HARDWARE_ANGLE": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.PLATFORM_ANGLE_DEVICE_TYPE_REFERENCE_ANGLE": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.PLATFORM_ANGLE_DEVICE_TYPE_WARP_ANGLE": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.PLATFORM_ANGLE_ENABLE_AUTOMATIC_TRIM_ANGLE": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.PLATFORM_ANGLE_MAX_VERSION_MAJOR_ANGLE": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.PLATFORM_ANGLE_MAX_VERSION_MINOR_ANGLE": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.PLATFORM_ANGLE_TYPE_ANGLE": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.PLATFORM_ANGLE_TYPE_D3D11_ANGLE": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.PLATFORM_ANGLE_TYPE_D3D9_ANGLE": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.PLATFORM_ANGLE_TYPE_DEFAULT_ANGLE": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.PLATFORM_ANGLE_TYPE_OPENGLES_ANGLE": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.PLATFORM_ANGLE_TYPE_OPENGL_ANGLE": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.PRESERVED_RESOURCES": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.QueryAPI": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.QueryContext(System.IntPtr,System.IntPtr,System.Int32,System.Int32@)": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.QueryString(System.IntPtr,System.Int32)": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.QuerySurface(System.IntPtr,System.IntPtr,System.Int32,System.Int32@)": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.QuerySurfacePointerANGLE(System.IntPtr,System.IntPtr,System.Int32,System.IntPtr@)": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.READ": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.RED_SIZE": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.RENDERABLE_TYPE": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.RENDER_BUFFER": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.RGB_BUFFER": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.ReleaseTexImage(System.IntPtr,System.IntPtr,System.Int32)": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.ReleaseThread": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.SAMPLES": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.SAMPLE_BUFFERS": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.SINGLE_BUFFER": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.SLOW_CONFIG": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.SOFTWARE_DISPLAY_ANGLE": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.STENCIL_SIZE": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.SURFACE_TYPE": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.SWAP_BEHAVIOR": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.SWAP_BEHAVIOR_PRESERVED_BIT": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.SurfaceAttrib(System.IntPtr,System.IntPtr,System.Int32,System.Int32)": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.SwapBuffers(System.IntPtr,System.IntPtr)": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.SwapInterval(System.IntPtr,System.Int32)": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.TEXTURE_2D": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.TEXTURE_FORMAT": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.TEXTURE_RGB": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.TEXTURE_RGBA": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.TEXTURE_TARGET": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.TRANSPARENT_BLUE_VALUE": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.TRANSPARENT_GREEN_VALUE": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.TRANSPARENT_RED_VALUE": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.TRANSPARENT_RGB": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.TRANSPARENT_TYPE": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.TRUE": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.Terminate(System.IntPtr)": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.UNKNOWN": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.VENDOR": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.VERSION": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.VERSION_1_0": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.VERSION_1_1": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.VERSION_1_2": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.VERSION_1_3": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.VERSION_1_4": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.VERTICAL_RESOLUTION": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.VG_ALPHA_FORMAT": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.VG_ALPHA_FORMAT_NONPRE": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.VG_ALPHA_FORMAT_PRE": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.VG_ALPHA_FORMAT_PRE_BIT": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.VG_COLORSPACE": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.VG_COLORSPACE_LINEAR": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.VG_COLORSPACE_LINEAR_BIT": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.VG_COLORSPACE_sRGB": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.WIDTH": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.WINDOW_BIT": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.WaitClient": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.WaitGL": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.Egl.WaitNative(System.Int32)": "OpenTK.Graphics.Egl.Egl.yml", - "OpenTK.Graphics.Egl.EglException": "OpenTK.Graphics.Egl.EglException.yml", - "OpenTK.Graphics.Egl.EglException.#ctor": "OpenTK.Graphics.Egl.EglException.yml", - "OpenTK.Graphics.Egl.EglException.#ctor(System.String)": "OpenTK.Graphics.Egl.EglException.yml", - "OpenTK.Graphics.Egl.ErrorCode": "OpenTK.Graphics.Egl.ErrorCode.yml", - "OpenTK.Graphics.Egl.ErrorCode.BAD_ACCESS": "OpenTK.Graphics.Egl.ErrorCode.yml", - "OpenTK.Graphics.Egl.ErrorCode.BAD_ALLOC": "OpenTK.Graphics.Egl.ErrorCode.yml", - "OpenTK.Graphics.Egl.ErrorCode.BAD_ATTRIBUTE": "OpenTK.Graphics.Egl.ErrorCode.yml", - "OpenTK.Graphics.Egl.ErrorCode.BAD_CONFIG": "OpenTK.Graphics.Egl.ErrorCode.yml", - "OpenTK.Graphics.Egl.ErrorCode.BAD_CONTEXT": "OpenTK.Graphics.Egl.ErrorCode.yml", - "OpenTK.Graphics.Egl.ErrorCode.BAD_CURRENT_SURFACE": "OpenTK.Graphics.Egl.ErrorCode.yml", - "OpenTK.Graphics.Egl.ErrorCode.BAD_DISPLAY": "OpenTK.Graphics.Egl.ErrorCode.yml", - "OpenTK.Graphics.Egl.ErrorCode.BAD_MATCH": "OpenTK.Graphics.Egl.ErrorCode.yml", - "OpenTK.Graphics.Egl.ErrorCode.BAD_NATIVE_PIXMAP": "OpenTK.Graphics.Egl.ErrorCode.yml", - "OpenTK.Graphics.Egl.ErrorCode.BAD_NATIVE_WINDOW": "OpenTK.Graphics.Egl.ErrorCode.yml", - "OpenTK.Graphics.Egl.ErrorCode.BAD_PARAMETER": "OpenTK.Graphics.Egl.ErrorCode.yml", - "OpenTK.Graphics.Egl.ErrorCode.BAD_SURFACE": "OpenTK.Graphics.Egl.ErrorCode.yml", - "OpenTK.Graphics.Egl.ErrorCode.CONTEXT_LOST": "OpenTK.Graphics.Egl.ErrorCode.yml", - "OpenTK.Graphics.Egl.ErrorCode.NOT_INITIALIZED": "OpenTK.Graphics.Egl.ErrorCode.yml", - "OpenTK.Graphics.Egl.ErrorCode.SUCCESS": "OpenTK.Graphics.Egl.ErrorCode.yml", - "OpenTK.Graphics.Egl.RenderApi": "OpenTK.Graphics.Egl.RenderApi.yml", - "OpenTK.Graphics.Egl.RenderApi.ES": "OpenTK.Graphics.Egl.RenderApi.yml", - "OpenTK.Graphics.Egl.RenderApi.GL": "OpenTK.Graphics.Egl.RenderApi.yml", - "OpenTK.Graphics.Egl.RenderApi.VG": "OpenTK.Graphics.Egl.RenderApi.yml", - "OpenTK.Graphics.Egl.RenderableFlags": "OpenTK.Graphics.Egl.RenderableFlags.yml", - "OpenTK.Graphics.Egl.RenderableFlags.ES": "OpenTK.Graphics.Egl.RenderableFlags.yml", - "OpenTK.Graphics.Egl.RenderableFlags.ES2": "OpenTK.Graphics.Egl.RenderableFlags.yml", - "OpenTK.Graphics.Egl.RenderableFlags.ES3": "OpenTK.Graphics.Egl.RenderableFlags.yml", - "OpenTK.Graphics.Egl.RenderableFlags.GL": "OpenTK.Graphics.Egl.RenderableFlags.yml", - "OpenTK.Graphics.Egl.RenderableFlags.VG": "OpenTK.Graphics.Egl.RenderableFlags.yml", - "OpenTK.Graphics.Egl.SurfaceType": "OpenTK.Graphics.Egl.SurfaceType.yml", - "OpenTK.Graphics.Egl.SurfaceType.MULTISAMPLE_RESOLVE_BOX_BIT": "OpenTK.Graphics.Egl.SurfaceType.yml", - "OpenTK.Graphics.Egl.SurfaceType.PBUFFER_BIT": "OpenTK.Graphics.Egl.SurfaceType.yml", - "OpenTK.Graphics.Egl.SurfaceType.PIXMAP_BIT": "OpenTK.Graphics.Egl.SurfaceType.yml", - "OpenTK.Graphics.Egl.SurfaceType.SWAP_BEHAVIOR_PRESERVED_BIT": "OpenTK.Graphics.Egl.SurfaceType.yml", - "OpenTK.Graphics.Egl.SurfaceType.VG_ALPHA_FORMAT_PRE_BIT": "OpenTK.Graphics.Egl.SurfaceType.yml", - "OpenTK.Graphics.Egl.SurfaceType.VG_COLORSPACE_LINEAR_BIT": "OpenTK.Graphics.Egl.SurfaceType.yml", - "OpenTK.Graphics.Egl.SurfaceType.WINDOW_BIT": "OpenTK.Graphics.Egl.SurfaceType.yml", + "OpenTK.Graphics.EGLLoader": "OpenTK.Graphics.EGLLoader.yml", + "OpenTK.Graphics.EGLLoader.BindingsContext": "OpenTK.Graphics.EGLLoader.BindingsContext.yml", + "OpenTK.Graphics.EGLLoader.BindingsContext.GetProcAddress(System.String)": "OpenTK.Graphics.EGLLoader.BindingsContext.yml", "OpenTK.Graphics.FramebufferHandle": "OpenTK.Graphics.FramebufferHandle.yml", "OpenTK.Graphics.FramebufferHandle.#ctor(System.Int32)": "OpenTK.Graphics.FramebufferHandle.yml", "OpenTK.Graphics.FramebufferHandle.Equals(OpenTK.Graphics.FramebufferHandle)": "OpenTK.Graphics.FramebufferHandle.yml", @@ -2025,896 +1809,6 @@ "OpenTK.Graphics.GLXLoader": "OpenTK.Graphics.GLXLoader.yml", "OpenTK.Graphics.GLXLoader.BindingsContext": "OpenTK.Graphics.GLXLoader.BindingsContext.yml", "OpenTK.Graphics.GLXLoader.BindingsContext.GetProcAddress(System.String)": "OpenTK.Graphics.GLXLoader.BindingsContext.yml", - "OpenTK.Graphics.Glx": "OpenTK.Graphics.Glx.yml", - "OpenTK.Graphics.Glx.All": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.AccumAlphaSize": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.AccumBlueSize": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.AccumBufferBit": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.AccumBufferBitSgix": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.AccumGreenSize": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.AccumRedSize": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.AlphaSize": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.Aux0Ext": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.Aux1Ext": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.Aux2Ext": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.Aux3Ext": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.Aux4Ext": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.Aux5Ext": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.Aux6Ext": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.Aux7Ext": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.Aux8Ext": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.Aux9Ext": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.AuxBuffers": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.AuxBuffersBit": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.AuxBuffersBitSgix": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.BackBufferAgeExt": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.BackExt": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.BackLeftBufferBit": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.BackLeftBufferBitSgix": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.BackLeftExt": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.BackRightBufferBit": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.BackRightBufferBitSgix": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.BackRightExt": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.BadAttribute": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.BadContext": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.BadEnum": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.BadHyperpipeConfigSgix": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.BadHyperpipeSgix": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.BadScreen": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.BadValue": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.BadVisual": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.BindToMipmapTextureExt": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.BindToTextureRgbExt": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.BindToTextureRgbaExt": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.BindToTextureTargetsExt": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.BlendedRgbaSgis": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.BlueSize": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.BufferClobberMaskSgix": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.BufferSize": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.BufferSwapCompleteIntelMask": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.Bufferswapcomplete": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.ColorIndexBit": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.ColorIndexBitSgix": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.ColorIndexType": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.ColorIndexTypeSgix": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.ColorSamplesNv": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.ConfigCaveat": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.ContextAllowBufferByteOrderMismatchArb": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.ContextCompatibilityProfileBitArb": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.ContextCoreProfileBitArb": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.ContextDebugBitArb": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.ContextEs2ProfileBitExt": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.ContextEsProfileBitExt": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.ContextFlagsArb": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.ContextForwardCompatibleBitArb": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.ContextMajorVersionArb": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.ContextMinorVersionArb": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.ContextMultigpuAttribAfrNv": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.ContextMultigpuAttribMultiDisplayMulticastNv": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.ContextMultigpuAttribMulticastNv": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.ContextMultigpuAttribNv": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.ContextMultigpuAttribSingleNv": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.ContextOpenglNoErrorArb": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.ContextPriorityHighExt": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.ContextPriorityLevelExt": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.ContextPriorityLowExt": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.ContextPriorityMediumExt": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.ContextProfileMaskArb": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.ContextReleaseBehaviorArb": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.ContextReleaseBehaviorFlushArb": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.ContextReleaseBehaviorNoneArb": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.ContextResetIsolationBitArb": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.ContextResetNotificationStrategyArb": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.ContextRobustAccessBitArb": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.CopyCompleteIntel": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.CoverageSamplesNv": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.Damaged": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.DamagedSgix": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.DepthBufferBit": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.DepthBufferBitSgix": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.DepthSize": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.DeviceIdNv": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.DigitalMediaPbufferSgix": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.DirectColor": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.DirectColorExt": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.DontCare": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.Doublebuffer": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.DrawableType": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.DrawableTypeSgix": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.EventMask": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.EventMaskSgix": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.ExchangeCompleteIntel": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.Extensions": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.FbconfigId": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.FbconfigIdSgix": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.FlipCompleteIntel": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.FloatComponentsNv": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.FramebufferSrgbCapableArb": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.FramebufferSrgbCapableExt": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.FrontExt": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.FrontLeftBufferBit": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.FrontLeftBufferBitSgix": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.FrontLeftExt": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.FrontRightBufferBit": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.FrontRightBufferBitSgix": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.FrontRightExt": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.GenerateResetOnVideoMemoryPurgeNv": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.GpuClockAmd": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.GpuFastestTargetGpusAmd": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.GpuNumPipesAmd": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.GpuNumRbAmd": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.GpuNumSimdAmd": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.GpuNumSpiAmd": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.GpuOpenglVersionStringAmd": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.GpuRamAmd": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.GpuRendererStringAmd": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.GpuVendorAmd": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.GrayScale": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.GrayScaleExt": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.GreenSize": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.Height": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.HeightSgix": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.HyperpipeDisplayPipeSgix": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.HyperpipeIdSgix": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.HyperpipePipeNameLengthSgix": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.HyperpipePixelAverageSgix": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.HyperpipeRenderPipeSgix": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.HyperpipeStereoSgix": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.LargestPbuffer": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.LargestPbufferSgix": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.LateSwapsTearExt": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.Level": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.LoseContextOnResetArb": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.MaxPbufferHeight": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.MaxPbufferHeightSgix": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.MaxPbufferPixels": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.MaxPbufferPixelsSgix": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.MaxPbufferWidth": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.MaxPbufferWidthSgix": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.MaxSwapIntervalExt": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.MipmapTextureExt": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.MultisampleSubRectHeightSgis": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.MultisampleSubRectWidthSgis": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.NoExtension": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.NoResetNotificationArb": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.NonConformantConfig": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.NonConformantVisualExt": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.None": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.NoneExt": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.NumVideoCaptureSlotsNv": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.NumVideoSlotsNv": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.NumberEvents": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.OptimalPbufferHeightSgix": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.OptimalPbufferWidthSgix": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.Pbuffer": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.PbufferBit": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.PbufferBitSgix": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.PbufferClobberMask": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.PbufferHeight": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.PbufferSgix": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.PbufferWidth": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.Pbufferclobber": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.PipeRectLimitsSgix": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.PipeRectSgix": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.PixmapBit": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.PixmapBitSgix": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.PreservedContents": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.PreservedContentsSgix": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.PseudoColor": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.PseudoColorExt": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.RedSize": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.RenderType": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.RenderTypeSgix": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.RendererAcceleratedMesa": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.RendererDeviceIdMesa": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.RendererOpenglCompatibilityProfileVersionMesa": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.RendererOpenglCoreProfileVersionMesa": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.RendererOpenglEs2ProfileVersionMesa": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.RendererOpenglEsProfileVersionMesa": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.RendererPreferredProfileMesa": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.RendererUnifiedMemoryArchitectureMesa": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.RendererVendorIdMesa": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.RendererVersionMesa": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.RendererVideoMemoryMesa": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.Rgba": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.RgbaBit": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.RgbaBitSgix": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.RgbaFloatBitArb": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.RgbaFloatTypeArb": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.RgbaType": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.RgbaTypeSgix": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.RgbaUnsignedFloatBitExt": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.RgbaUnsignedFloatTypeExt": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.SampleBuffers": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.SampleBuffers3dfx": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.SampleBuffersArb": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.SampleBuffersBitSgix": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.SampleBuffersSgis": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.Samples": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.Samples3dfx": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.SamplesArb": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.SamplesSgis": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.Saved": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.SavedSgix": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.Screen": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.ScreenExt": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.ShareContextExt": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.SlowConfig": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.SlowVisualExt": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.StaticColor": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.StaticColorExt": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.StaticGray": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.StaticGrayExt": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.StencilBufferBit": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.StencilBufferBitSgix": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.StencilSize": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.Stereo": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.StereoNotifyExt": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.StereoNotifyMaskExt": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.StereoTreeExt": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.SwapCopyOml": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.SwapExchangeOml": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.SwapIntervalExt": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.SwapMethodOml": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.SwapUndefinedOml": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.SyncFrameSgix": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.SyncSwapSgix": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.Texture1dBitExt": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.Texture1dExt": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.Texture2dBitExt": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.Texture2dExt": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.TextureFormatExt": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.TextureFormatNoneExt": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.TextureFormatRgbExt": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.TextureFormatRgbaExt": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.TextureRectangleBitExt": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.TextureRectangleExt": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.TextureTargetExt": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.TransparentAlphaValue": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.TransparentAlphaValueExt": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.TransparentBlueValue": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.TransparentBlueValueExt": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.TransparentGreenValue": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.TransparentGreenValueExt": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.TransparentIndex": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.TransparentIndexExt": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.TransparentIndexValue": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.TransparentIndexValueExt": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.TransparentRedValue": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.TransparentRedValueExt": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.TransparentRgb": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.TransparentRgbExt": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.TransparentType": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.TransparentTypeExt": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.TrueColor": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.TrueColorExt": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.UniqueIdNv": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.UseGl": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.Vendor": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.VendorNamesExt": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.Version": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.VideoOutAlphaNv": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.VideoOutColorAndAlphaNv": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.VideoOutColorAndDepthNv": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.VideoOutColorNv": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.VideoOutDepthNv": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.VideoOutField1Nv": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.VideoOutField2Nv": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.VideoOutFrameNv": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.VideoOutStackedFields12Nv": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.VideoOutStackedFields21Nv": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.VisualCaveatExt": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.VisualId": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.VisualIdExt": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.VisualSelectGroupSgix": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.Width": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.WidthSgix": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.Window": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.WindowBit": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.WindowBitSgix": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.WindowSgix": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.XRenderable": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.XRenderableSgix": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.XVisualType": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.XVisualTypeExt": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All.YInvertedExt": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All._3dfxFullscreenModeMesa": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.All._3dfxWindowModeMesa": "OpenTK.Graphics.Glx.All.yml", - "OpenTK.Graphics.Glx.Colormap": "OpenTK.Graphics.Glx.Colormap.yml", - "OpenTK.Graphics.Glx.Colormap.#ctor(System.UIntPtr)": "OpenTK.Graphics.Glx.Colormap.yml", - "OpenTK.Graphics.Glx.Colormap.XID": "OpenTK.Graphics.Glx.Colormap.yml", - "OpenTK.Graphics.Glx.Colormap.op_Explicit(OpenTK.Graphics.Glx.Colormap)~System.UIntPtr": "OpenTK.Graphics.Glx.Colormap.yml", - "OpenTK.Graphics.Glx.Colormap.op_Explicit(System.UIntPtr)~OpenTK.Graphics.Glx.Colormap": "OpenTK.Graphics.Glx.Colormap.yml", - "OpenTK.Graphics.Glx.DisplayPtr": "OpenTK.Graphics.Glx.DisplayPtr.yml", - "OpenTK.Graphics.Glx.DisplayPtr.#ctor(System.IntPtr)": "OpenTK.Graphics.Glx.DisplayPtr.yml", - "OpenTK.Graphics.Glx.DisplayPtr.Value": "OpenTK.Graphics.Glx.DisplayPtr.yml", - "OpenTK.Graphics.Glx.DisplayPtr.op_Explicit(OpenTK.Graphics.Glx.DisplayPtr)~System.IntPtr": "OpenTK.Graphics.Glx.DisplayPtr.yml", - "OpenTK.Graphics.Glx.DisplayPtr.op_Explicit(System.IntPtr)~OpenTK.Graphics.Glx.DisplayPtr": "OpenTK.Graphics.Glx.DisplayPtr.yml", - "OpenTK.Graphics.Glx.Font": "OpenTK.Graphics.Glx.Font.yml", - "OpenTK.Graphics.Glx.Font.#ctor(System.UIntPtr)": "OpenTK.Graphics.Glx.Font.yml", - "OpenTK.Graphics.Glx.Font.XID": "OpenTK.Graphics.Glx.Font.yml", - "OpenTK.Graphics.Glx.Font.op_Explicit(OpenTK.Graphics.Glx.Font)~System.UIntPtr": "OpenTK.Graphics.Glx.Font.yml", - "OpenTK.Graphics.Glx.Font.op_Explicit(System.UIntPtr)~OpenTK.Graphics.Glx.Font": "OpenTK.Graphics.Glx.Font.yml", - "OpenTK.Graphics.Glx.GLXAttribute": "OpenTK.Graphics.Glx.GLXAttribute.yml", - "OpenTK.Graphics.Glx.GLXAttribute.AccumAlphaSize": "OpenTK.Graphics.Glx.GLXAttribute.yml", - "OpenTK.Graphics.Glx.GLXAttribute.AccumBlueSize": "OpenTK.Graphics.Glx.GLXAttribute.yml", - "OpenTK.Graphics.Glx.GLXAttribute.AccumGreenSize": "OpenTK.Graphics.Glx.GLXAttribute.yml", - "OpenTK.Graphics.Glx.GLXAttribute.AccumRedSize": "OpenTK.Graphics.Glx.GLXAttribute.yml", - "OpenTK.Graphics.Glx.GLXAttribute.AlphaSize": "OpenTK.Graphics.Glx.GLXAttribute.yml", - "OpenTK.Graphics.Glx.GLXAttribute.AuxBuffers": "OpenTK.Graphics.Glx.GLXAttribute.yml", - "OpenTK.Graphics.Glx.GLXAttribute.BlueSize": "OpenTK.Graphics.Glx.GLXAttribute.yml", - "OpenTK.Graphics.Glx.GLXAttribute.BufferSize": "OpenTK.Graphics.Glx.GLXAttribute.yml", - "OpenTK.Graphics.Glx.GLXAttribute.ConfigCaveat": "OpenTK.Graphics.Glx.GLXAttribute.yml", - "OpenTK.Graphics.Glx.GLXAttribute.DepthSize": "OpenTK.Graphics.Glx.GLXAttribute.yml", - "OpenTK.Graphics.Glx.GLXAttribute.Doublebuffer": "OpenTK.Graphics.Glx.GLXAttribute.yml", - "OpenTK.Graphics.Glx.GLXAttribute.GreenSize": "OpenTK.Graphics.Glx.GLXAttribute.yml", - "OpenTK.Graphics.Glx.GLXAttribute.Level": "OpenTK.Graphics.Glx.GLXAttribute.yml", - "OpenTK.Graphics.Glx.GLXAttribute.RedSize": "OpenTK.Graphics.Glx.GLXAttribute.yml", - "OpenTK.Graphics.Glx.GLXAttribute.Rgba": "OpenTK.Graphics.Glx.GLXAttribute.yml", - "OpenTK.Graphics.Glx.GLXAttribute.StencilSize": "OpenTK.Graphics.Glx.GLXAttribute.yml", - "OpenTK.Graphics.Glx.GLXAttribute.Stereo": "OpenTK.Graphics.Glx.GLXAttribute.yml", - "OpenTK.Graphics.Glx.GLXAttribute.TransparentAlphaValue": "OpenTK.Graphics.Glx.GLXAttribute.yml", - "OpenTK.Graphics.Glx.GLXAttribute.TransparentAlphaValueExt": "OpenTK.Graphics.Glx.GLXAttribute.yml", - "OpenTK.Graphics.Glx.GLXAttribute.TransparentBlueValue": "OpenTK.Graphics.Glx.GLXAttribute.yml", - "OpenTK.Graphics.Glx.GLXAttribute.TransparentBlueValueExt": "OpenTK.Graphics.Glx.GLXAttribute.yml", - "OpenTK.Graphics.Glx.GLXAttribute.TransparentGreenValue": "OpenTK.Graphics.Glx.GLXAttribute.yml", - "OpenTK.Graphics.Glx.GLXAttribute.TransparentGreenValueExt": "OpenTK.Graphics.Glx.GLXAttribute.yml", - "OpenTK.Graphics.Glx.GLXAttribute.TransparentIndexValue": "OpenTK.Graphics.Glx.GLXAttribute.yml", - "OpenTK.Graphics.Glx.GLXAttribute.TransparentIndexValueExt": "OpenTK.Graphics.Glx.GLXAttribute.yml", - "OpenTK.Graphics.Glx.GLXAttribute.TransparentRedValue": "OpenTK.Graphics.Glx.GLXAttribute.yml", - "OpenTK.Graphics.Glx.GLXAttribute.TransparentRedValueExt": "OpenTK.Graphics.Glx.GLXAttribute.yml", - "OpenTK.Graphics.Glx.GLXAttribute.TransparentType": "OpenTK.Graphics.Glx.GLXAttribute.yml", - "OpenTK.Graphics.Glx.GLXAttribute.TransparentTypeExt": "OpenTK.Graphics.Glx.GLXAttribute.yml", - "OpenTK.Graphics.Glx.GLXAttribute.UseGl": "OpenTK.Graphics.Glx.GLXAttribute.yml", - "OpenTK.Graphics.Glx.GLXAttribute.VisualCaveatExt": "OpenTK.Graphics.Glx.GLXAttribute.yml", - "OpenTK.Graphics.Glx.GLXAttribute.XVisualType": "OpenTK.Graphics.Glx.GLXAttribute.yml", - "OpenTK.Graphics.Glx.GLXAttribute.XVisualTypeExt": "OpenTK.Graphics.Glx.GLXAttribute.yml", - "OpenTK.Graphics.Glx.GLXContext": "OpenTK.Graphics.Glx.GLXContext.yml", - "OpenTK.Graphics.Glx.GLXContext.#ctor(System.IntPtr)": "OpenTK.Graphics.Glx.GLXContext.yml", - "OpenTK.Graphics.Glx.GLXContext.Value": "OpenTK.Graphics.Glx.GLXContext.yml", - "OpenTK.Graphics.Glx.GLXContext.op_Explicit(OpenTK.Graphics.Glx.GLXContext)~System.IntPtr": "OpenTK.Graphics.Glx.GLXContext.yml", - "OpenTK.Graphics.Glx.GLXContext.op_Explicit(System.IntPtr)~OpenTK.Graphics.Glx.GLXContext": "OpenTK.Graphics.Glx.GLXContext.yml", - "OpenTK.Graphics.Glx.GLXContextID": "OpenTK.Graphics.Glx.GLXContextID.yml", - "OpenTK.Graphics.Glx.GLXContextID.#ctor(System.UIntPtr)": "OpenTK.Graphics.Glx.GLXContextID.yml", - "OpenTK.Graphics.Glx.GLXContextID.XID": "OpenTK.Graphics.Glx.GLXContextID.yml", - "OpenTK.Graphics.Glx.GLXContextID.op_Explicit(OpenTK.Graphics.Glx.GLXContextID)~System.UIntPtr": "OpenTK.Graphics.Glx.GLXContextID.yml", - "OpenTK.Graphics.Glx.GLXContextID.op_Explicit(System.UIntPtr)~OpenTK.Graphics.Glx.GLXContextID": "OpenTK.Graphics.Glx.GLXContextID.yml", - "OpenTK.Graphics.Glx.GLXDrawable": "OpenTK.Graphics.Glx.GLXDrawable.yml", - "OpenTK.Graphics.Glx.GLXDrawable.#ctor(System.UIntPtr)": "OpenTK.Graphics.Glx.GLXDrawable.yml", - "OpenTK.Graphics.Glx.GLXDrawable.XID": "OpenTK.Graphics.Glx.GLXDrawable.yml", - "OpenTK.Graphics.Glx.GLXDrawable.op_Explicit(OpenTK.Graphics.Glx.GLXDrawable)~System.UIntPtr": "OpenTK.Graphics.Glx.GLXDrawable.yml", - "OpenTK.Graphics.Glx.GLXDrawable.op_Explicit(System.UIntPtr)~OpenTK.Graphics.Glx.GLXDrawable": "OpenTK.Graphics.Glx.GLXDrawable.yml", - "OpenTK.Graphics.Glx.GLXFBConfig": "OpenTK.Graphics.Glx.GLXFBConfig.yml", - "OpenTK.Graphics.Glx.GLXFBConfig.#ctor(System.IntPtr)": "OpenTK.Graphics.Glx.GLXFBConfig.yml", - "OpenTK.Graphics.Glx.GLXFBConfig.Value": "OpenTK.Graphics.Glx.GLXFBConfig.yml", - "OpenTK.Graphics.Glx.GLXFBConfig.op_Explicit(OpenTK.Graphics.Glx.GLXFBConfig)~System.IntPtr": "OpenTK.Graphics.Glx.GLXFBConfig.yml", - "OpenTK.Graphics.Glx.GLXFBConfig.op_Explicit(System.IntPtr)~OpenTK.Graphics.Glx.GLXFBConfig": "OpenTK.Graphics.Glx.GLXFBConfig.yml", - "OpenTK.Graphics.Glx.GLXFBConfigID": "OpenTK.Graphics.Glx.GLXFBConfigID.yml", - "OpenTK.Graphics.Glx.GLXFBConfigID.#ctor(System.UIntPtr)": "OpenTK.Graphics.Glx.GLXFBConfigID.yml", - "OpenTK.Graphics.Glx.GLXFBConfigID.XID": "OpenTK.Graphics.Glx.GLXFBConfigID.yml", - "OpenTK.Graphics.Glx.GLXFBConfigID.op_Explicit(OpenTK.Graphics.Glx.GLXFBConfigID)~System.UIntPtr": "OpenTK.Graphics.Glx.GLXFBConfigID.yml", - "OpenTK.Graphics.Glx.GLXFBConfigID.op_Explicit(System.UIntPtr)~OpenTK.Graphics.Glx.GLXFBConfigID": "OpenTK.Graphics.Glx.GLXFBConfigID.yml", - "OpenTK.Graphics.Glx.GLXFBConfigIDSGIX": "OpenTK.Graphics.Glx.GLXFBConfigIDSGIX.yml", - "OpenTK.Graphics.Glx.GLXFBConfigIDSGIX.#ctor(System.UIntPtr)": "OpenTK.Graphics.Glx.GLXFBConfigIDSGIX.yml", - "OpenTK.Graphics.Glx.GLXFBConfigIDSGIX.XID": "OpenTK.Graphics.Glx.GLXFBConfigIDSGIX.yml", - "OpenTK.Graphics.Glx.GLXFBConfigIDSGIX.op_Explicit(OpenTK.Graphics.Glx.GLXFBConfigIDSGIX)~System.UIntPtr": "OpenTK.Graphics.Glx.GLXFBConfigIDSGIX.yml", - "OpenTK.Graphics.Glx.GLXFBConfigIDSGIX.op_Explicit(System.UIntPtr)~OpenTK.Graphics.Glx.GLXFBConfigIDSGIX": "OpenTK.Graphics.Glx.GLXFBConfigIDSGIX.yml", - "OpenTK.Graphics.Glx.GLXFBConfigSGIX": "OpenTK.Graphics.Glx.GLXFBConfigSGIX.yml", - "OpenTK.Graphics.Glx.GLXFBConfigSGIX.#ctor(System.IntPtr)": "OpenTK.Graphics.Glx.GLXFBConfigSGIX.yml", - "OpenTK.Graphics.Glx.GLXFBConfigSGIX.Value": "OpenTK.Graphics.Glx.GLXFBConfigSGIX.yml", - "OpenTK.Graphics.Glx.GLXFBConfigSGIX.op_Explicit(OpenTK.Graphics.Glx.GLXFBConfigSGIX)~System.IntPtr": "OpenTK.Graphics.Glx.GLXFBConfigSGIX.yml", - "OpenTK.Graphics.Glx.GLXFBConfigSGIX.op_Explicit(System.IntPtr)~OpenTK.Graphics.Glx.GLXFBConfigSGIX": "OpenTK.Graphics.Glx.GLXFBConfigSGIX.yml", - "OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX": "OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX.yml", - "OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX.Channel": "OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX.yml", - "OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX.ParticipationType": "OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX.yml", - "OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX.PipeName": "OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX.yml", - "OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX.TimeSlice": "OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX.yml", - "OpenTK.Graphics.Glx.GLXHyperpipeNetworkSGIX": "OpenTK.Graphics.Glx.GLXHyperpipeNetworkSGIX.yml", - "OpenTK.Graphics.Glx.GLXHyperpipeNetworkSGIX.NetworkId": "OpenTK.Graphics.Glx.GLXHyperpipeNetworkSGIX.yml", - "OpenTK.Graphics.Glx.GLXHyperpipeNetworkSGIX.PipeName": "OpenTK.Graphics.Glx.GLXHyperpipeNetworkSGIX.yml", - "OpenTK.Graphics.Glx.GLXPbuffer": "OpenTK.Graphics.Glx.GLXPbuffer.yml", - "OpenTK.Graphics.Glx.GLXPbuffer.#ctor(System.UIntPtr)": "OpenTK.Graphics.Glx.GLXPbuffer.yml", - "OpenTK.Graphics.Glx.GLXPbuffer.XID": "OpenTK.Graphics.Glx.GLXPbuffer.yml", - "OpenTK.Graphics.Glx.GLXPbuffer.op_Explicit(OpenTK.Graphics.Glx.GLXPbuffer)~System.UIntPtr": "OpenTK.Graphics.Glx.GLXPbuffer.yml", - "OpenTK.Graphics.Glx.GLXPbuffer.op_Explicit(System.UIntPtr)~OpenTK.Graphics.Glx.GLXPbuffer": "OpenTK.Graphics.Glx.GLXPbuffer.yml", - "OpenTK.Graphics.Glx.GLXPbufferSGIX": "OpenTK.Graphics.Glx.GLXPbufferSGIX.yml", - "OpenTK.Graphics.Glx.GLXPbufferSGIX.#ctor(System.UIntPtr)": "OpenTK.Graphics.Glx.GLXPbufferSGIX.yml", - "OpenTK.Graphics.Glx.GLXPbufferSGIX.XID": "OpenTK.Graphics.Glx.GLXPbufferSGIX.yml", - "OpenTK.Graphics.Glx.GLXPbufferSGIX.op_Explicit(OpenTK.Graphics.Glx.GLXPbufferSGIX)~System.UIntPtr": "OpenTK.Graphics.Glx.GLXPbufferSGIX.yml", - "OpenTK.Graphics.Glx.GLXPbufferSGIX.op_Explicit(System.UIntPtr)~OpenTK.Graphics.Glx.GLXPbufferSGIX": "OpenTK.Graphics.Glx.GLXPbufferSGIX.yml", - "OpenTK.Graphics.Glx.GLXPixmap": "OpenTK.Graphics.Glx.GLXPixmap.yml", - "OpenTK.Graphics.Glx.GLXPixmap.#ctor(System.UIntPtr)": "OpenTK.Graphics.Glx.GLXPixmap.yml", - "OpenTK.Graphics.Glx.GLXPixmap.XID": "OpenTK.Graphics.Glx.GLXPixmap.yml", - "OpenTK.Graphics.Glx.GLXPixmap.op_Explicit(OpenTK.Graphics.Glx.GLXPixmap)~System.UIntPtr": "OpenTK.Graphics.Glx.GLXPixmap.yml", - "OpenTK.Graphics.Glx.GLXPixmap.op_Explicit(System.UIntPtr)~OpenTK.Graphics.Glx.GLXPixmap": "OpenTK.Graphics.Glx.GLXPixmap.yml", - "OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV": "OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV.yml", - "OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV.#ctor(System.UIntPtr)": "OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV.yml", - "OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV.XID": "OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV.yml", - "OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV.op_Explicit(OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV)~System.UIntPtr": "OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV.yml", - "OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV.op_Explicit(System.UIntPtr)~OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV": "OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV.yml", - "OpenTK.Graphics.Glx.GLXVideoDeviceNV": "OpenTK.Graphics.Glx.GLXVideoDeviceNV.yml", - "OpenTK.Graphics.Glx.GLXVideoDeviceNV.#ctor(System.UInt32)": "OpenTK.Graphics.Glx.GLXVideoDeviceNV.yml", - "OpenTK.Graphics.Glx.GLXVideoDeviceNV.VideoDevice": "OpenTK.Graphics.Glx.GLXVideoDeviceNV.yml", - "OpenTK.Graphics.Glx.GLXVideoDeviceNV.op_Explicit(OpenTK.Graphics.Glx.GLXVideoDeviceNV)~System.UInt32": "OpenTK.Graphics.Glx.GLXVideoDeviceNV.yml", - "OpenTK.Graphics.Glx.GLXVideoDeviceNV.op_Explicit(System.UInt32)~OpenTK.Graphics.Glx.GLXVideoDeviceNV": "OpenTK.Graphics.Glx.GLXVideoDeviceNV.yml", - "OpenTK.Graphics.Glx.GLXVideoSourceSGIX": "OpenTK.Graphics.Glx.GLXVideoSourceSGIX.yml", - "OpenTK.Graphics.Glx.GLXVideoSourceSGIX.#ctor(System.UIntPtr)": "OpenTK.Graphics.Glx.GLXVideoSourceSGIX.yml", - "OpenTK.Graphics.Glx.GLXVideoSourceSGIX.XID": "OpenTK.Graphics.Glx.GLXVideoSourceSGIX.yml", - "OpenTK.Graphics.Glx.GLXVideoSourceSGIX.op_Explicit(OpenTK.Graphics.Glx.GLXVideoSourceSGIX)~System.UIntPtr": "OpenTK.Graphics.Glx.GLXVideoSourceSGIX.yml", - "OpenTK.Graphics.Glx.GLXVideoSourceSGIX.op_Explicit(System.UIntPtr)~OpenTK.Graphics.Glx.GLXVideoSourceSGIX": "OpenTK.Graphics.Glx.GLXVideoSourceSGIX.yml", - "OpenTK.Graphics.Glx.GLXWindow": "OpenTK.Graphics.Glx.GLXWindow.yml", - "OpenTK.Graphics.Glx.GLXWindow.#ctor(System.UIntPtr)": "OpenTK.Graphics.Glx.GLXWindow.yml", - "OpenTK.Graphics.Glx.GLXWindow.XID": "OpenTK.Graphics.Glx.GLXWindow.yml", - "OpenTK.Graphics.Glx.GLXWindow.op_Explicit(OpenTK.Graphics.Glx.GLXWindow)~System.UIntPtr": "OpenTK.Graphics.Glx.GLXWindow.yml", - "OpenTK.Graphics.Glx.GLXWindow.op_Explicit(System.UIntPtr)~OpenTK.Graphics.Glx.GLXWindow": "OpenTK.Graphics.Glx.GLXWindow.yml", - "OpenTK.Graphics.Glx.Glx": "OpenTK.Graphics.Glx.Glx.yml", - "OpenTK.Graphics.Glx.Glx.AMD": "OpenTK.Graphics.Glx.Glx.AMD.yml", - "OpenTK.Graphics.Glx.Glx.AMD.BlitContextFramebufferAMD(OpenTK.Graphics.Glx.GLXContext,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.UInt32,OpenTK.Graphics.Glx.All)": "OpenTK.Graphics.Glx.Glx.AMD.yml", - "OpenTK.Graphics.Glx.Glx.AMD.CreateAssociatedContextAMD(System.UInt32,OpenTK.Graphics.Glx.GLXContext)": "OpenTK.Graphics.Glx.Glx.AMD.yml", - "OpenTK.Graphics.Glx.Glx.AMD.CreateAssociatedContextAttribsAMD(System.UInt32,OpenTK.Graphics.Glx.GLXContext,System.Int32*)": "OpenTK.Graphics.Glx.Glx.AMD.yml", - "OpenTK.Graphics.Glx.Glx.AMD.CreateAssociatedContextAttribsAMD(System.UInt32,OpenTK.Graphics.Glx.GLXContext,System.Int32@)": "OpenTK.Graphics.Glx.Glx.AMD.yml", - "OpenTK.Graphics.Glx.Glx.AMD.CreateAssociatedContextAttribsAMD(System.UInt32,OpenTK.Graphics.Glx.GLXContext,System.Int32[])": "OpenTK.Graphics.Glx.Glx.AMD.yml", - "OpenTK.Graphics.Glx.Glx.AMD.CreateAssociatedContextAttribsAMD(System.UInt32,OpenTK.Graphics.Glx.GLXContext,System.ReadOnlySpan{System.Int32})": "OpenTK.Graphics.Glx.Glx.AMD.yml", - "OpenTK.Graphics.Glx.Glx.AMD.DeleteAssociatedContextAMD(OpenTK.Graphics.Glx.GLXContext)": "OpenTK.Graphics.Glx.Glx.AMD.yml", - "OpenTK.Graphics.Glx.Glx.AMD.GetContextGPUIDAMD(OpenTK.Graphics.Glx.GLXContext)": "OpenTK.Graphics.Glx.Glx.AMD.yml", - "OpenTK.Graphics.Glx.Glx.AMD.GetCurrentAssociatedContextAMD": "OpenTK.Graphics.Glx.Glx.AMD.yml", - "OpenTK.Graphics.Glx.Glx.AMD.GetGPUIDsAMD(System.UInt32,System.Span{System.UInt32})": "OpenTK.Graphics.Glx.Glx.AMD.yml", - "OpenTK.Graphics.Glx.Glx.AMD.GetGPUIDsAMD(System.UInt32,System.UInt32*)": "OpenTK.Graphics.Glx.Glx.AMD.yml", - "OpenTK.Graphics.Glx.Glx.AMD.GetGPUIDsAMD(System.UInt32,System.UInt32@)": "OpenTK.Graphics.Glx.Glx.AMD.yml", - "OpenTK.Graphics.Glx.Glx.AMD.GetGPUIDsAMD(System.UInt32,System.UInt32[])": "OpenTK.Graphics.Glx.Glx.AMD.yml", - "OpenTK.Graphics.Glx.Glx.AMD.GetGPUInfoAMD(System.UInt32,System.Int32,OpenTK.Graphics.Glx.All,System.UInt32,System.IntPtr)": "OpenTK.Graphics.Glx.Glx.AMD.yml", - "OpenTK.Graphics.Glx.Glx.AMD.GetGPUInfoAMD(System.UInt32,System.Int32,OpenTK.Graphics.Glx.All,System.UInt32,System.Void*)": "OpenTK.Graphics.Glx.Glx.AMD.yml", - "OpenTK.Graphics.Glx.Glx.AMD.GetGPUInfoAMD``1(System.UInt32,System.Int32,OpenTK.Graphics.Glx.All,System.UInt32,System.Span{``0})": "OpenTK.Graphics.Glx.Glx.AMD.yml", - "OpenTK.Graphics.Glx.Glx.AMD.GetGPUInfoAMD``1(System.UInt32,System.Int32,OpenTK.Graphics.Glx.All,System.UInt32,``0@)": "OpenTK.Graphics.Glx.Glx.AMD.yml", - "OpenTK.Graphics.Glx.Glx.AMD.GetGPUInfoAMD``1(System.UInt32,System.Int32,OpenTK.Graphics.Glx.All,System.UInt32,``0[])": "OpenTK.Graphics.Glx.Glx.AMD.yml", - "OpenTK.Graphics.Glx.Glx.AMD.MakeAssociatedContextCurrentAMD(OpenTK.Graphics.Glx.GLXContext)": "OpenTK.Graphics.Glx.Glx.AMD.yml", - "OpenTK.Graphics.Glx.Glx.ARB": "OpenTK.Graphics.Glx.Glx.ARB.yml", - "OpenTK.Graphics.Glx.Glx.ARB.CreateContextAttribsARB(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.GLXContext,System.Boolean,System.Int32*)": "OpenTK.Graphics.Glx.Glx.ARB.yml", - "OpenTK.Graphics.Glx.Glx.ARB.CreateContextAttribsARB(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.GLXContext,System.Boolean,System.Int32@)": "OpenTK.Graphics.Glx.Glx.ARB.yml", - "OpenTK.Graphics.Glx.Glx.ARB.CreateContextAttribsARB(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.GLXContext,System.Boolean,System.Int32[])": "OpenTK.Graphics.Glx.Glx.ARB.yml", - "OpenTK.Graphics.Glx.Glx.ARB.CreateContextAttribsARB(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.GLXContext,System.Boolean,System.ReadOnlySpan{System.Int32})": "OpenTK.Graphics.Glx.Glx.ARB.yml", - "OpenTK.Graphics.Glx.Glx.ARB.GetProcAddressARB(System.Byte*)": "OpenTK.Graphics.Glx.Glx.ARB.yml", - "OpenTK.Graphics.Glx.Glx.ARB.GetProcAddressARB(System.Byte@)": "OpenTK.Graphics.Glx.Glx.ARB.yml", - "OpenTK.Graphics.Glx.Glx.ARB.GetProcAddressARB(System.Byte[])": "OpenTK.Graphics.Glx.Glx.ARB.yml", - "OpenTK.Graphics.Glx.Glx.ARB.GetProcAddressARB(System.ReadOnlySpan{System.Byte})": "OpenTK.Graphics.Glx.Glx.ARB.yml", - "OpenTK.Graphics.Glx.Glx.ChooseFBConfig(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32*,System.Int32*)": "OpenTK.Graphics.Glx.Glx.yml", - "OpenTK.Graphics.Glx.Glx.ChooseFBConfig(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32@,System.Int32@)": "OpenTK.Graphics.Glx.Glx.yml", - "OpenTK.Graphics.Glx.Glx.ChooseFBConfig(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32[],System.Int32[])": "OpenTK.Graphics.Glx.Glx.yml", - "OpenTK.Graphics.Glx.Glx.ChooseFBConfig(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.ReadOnlySpan{System.Int32},System.Span{System.Int32})": "OpenTK.Graphics.Glx.Glx.yml", - "OpenTK.Graphics.Glx.Glx.ChooseVisual(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32*)": "OpenTK.Graphics.Glx.Glx.yml", - "OpenTK.Graphics.Glx.Glx.ChooseVisual(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32@)": "OpenTK.Graphics.Glx.Glx.yml", - "OpenTK.Graphics.Glx.Glx.ChooseVisual(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32[])": "OpenTK.Graphics.Glx.Glx.yml", - "OpenTK.Graphics.Glx.Glx.ChooseVisual(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Span{System.Int32})": "OpenTK.Graphics.Glx.Glx.yml", - "OpenTK.Graphics.Glx.Glx.CopyContext(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext,OpenTK.Graphics.Glx.GLXContext,System.UInt64)": "OpenTK.Graphics.Glx.Glx.yml", - "OpenTK.Graphics.Glx.Glx.CreateContext(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.XVisualInfoPtr,OpenTK.Graphics.Glx.GLXContext,System.Boolean)": "OpenTK.Graphics.Glx.Glx.yml", - "OpenTK.Graphics.Glx.Glx.CreateGLXPixmap(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.XVisualInfoPtr,OpenTK.Graphics.Glx.Pixmap)": "OpenTK.Graphics.Glx.Glx.yml", - "OpenTK.Graphics.Glx.Glx.CreateNewContext(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,System.Int32,OpenTK.Graphics.Glx.GLXContext,System.Boolean)": "OpenTK.Graphics.Glx.Glx.yml", - "OpenTK.Graphics.Glx.Glx.CreatePbuffer(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,System.Int32*)": "OpenTK.Graphics.Glx.Glx.yml", - "OpenTK.Graphics.Glx.Glx.CreatePbuffer(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,System.Int32@)": "OpenTK.Graphics.Glx.Glx.yml", - "OpenTK.Graphics.Glx.Glx.CreatePbuffer(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,System.Int32[])": "OpenTK.Graphics.Glx.Glx.yml", - "OpenTK.Graphics.Glx.Glx.CreatePbuffer(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,System.ReadOnlySpan{System.Int32})": "OpenTK.Graphics.Glx.Glx.yml", - "OpenTK.Graphics.Glx.Glx.CreatePixmap(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.Pixmap,System.Int32*)": "OpenTK.Graphics.Glx.Glx.yml", - "OpenTK.Graphics.Glx.Glx.CreatePixmap(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.Pixmap,System.Int32@)": "OpenTK.Graphics.Glx.Glx.yml", - "OpenTK.Graphics.Glx.Glx.CreatePixmap(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.Pixmap,System.Int32[])": "OpenTK.Graphics.Glx.Glx.yml", - "OpenTK.Graphics.Glx.Glx.CreatePixmap(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.Pixmap,System.ReadOnlySpan{System.Int32})": "OpenTK.Graphics.Glx.Glx.yml", - "OpenTK.Graphics.Glx.Glx.CreateWindow(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.Window,System.Int32*)": "OpenTK.Graphics.Glx.Glx.yml", - "OpenTK.Graphics.Glx.Glx.CreateWindow(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.Window,System.Int32@)": "OpenTK.Graphics.Glx.Glx.yml", - "OpenTK.Graphics.Glx.Glx.CreateWindow(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.Window,System.Int32[])": "OpenTK.Graphics.Glx.Glx.yml", - "OpenTK.Graphics.Glx.Glx.CreateWindow(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.Window,System.ReadOnlySpan{System.Int32})": "OpenTK.Graphics.Glx.Glx.yml", - "OpenTK.Graphics.Glx.Glx.DestroyContext(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext)": "OpenTK.Graphics.Glx.Glx.yml", - "OpenTK.Graphics.Glx.Glx.DestroyGLXPixmap(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXPixmap)": "OpenTK.Graphics.Glx.Glx.yml", - "OpenTK.Graphics.Glx.Glx.DestroyPbuffer(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXPbuffer)": "OpenTK.Graphics.Glx.Glx.yml", - "OpenTK.Graphics.Glx.Glx.DestroyPixmap(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXPixmap)": "OpenTK.Graphics.Glx.Glx.yml", - "OpenTK.Graphics.Glx.Glx.DestroyWindow(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXWindow)": "OpenTK.Graphics.Glx.Glx.yml", - "OpenTK.Graphics.Glx.Glx.EXT": "OpenTK.Graphics.Glx.Glx.EXT.yml", - "OpenTK.Graphics.Glx.Glx.EXT.BindTexImageEXT(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32,System.Int32*)": "OpenTK.Graphics.Glx.Glx.EXT.yml", - "OpenTK.Graphics.Glx.Glx.EXT.BindTexImageEXT(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32,System.Int32@)": "OpenTK.Graphics.Glx.Glx.EXT.yml", - "OpenTK.Graphics.Glx.Glx.EXT.BindTexImageEXT(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32,System.Int32[])": "OpenTK.Graphics.Glx.Glx.EXT.yml", - "OpenTK.Graphics.Glx.Glx.EXT.BindTexImageEXT(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32,System.ReadOnlySpan{System.Int32})": "OpenTK.Graphics.Glx.Glx.EXT.yml", - "OpenTK.Graphics.Glx.Glx.EXT.FreeContextEXT(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext)": "OpenTK.Graphics.Glx.Glx.EXT.yml", - "OpenTK.Graphics.Glx.Glx.EXT.GetContextIDEXT(OpenTK.Graphics.Glx.GLXContext)": "OpenTK.Graphics.Glx.Glx.EXT.yml", - "OpenTK.Graphics.Glx.Glx.EXT.GetCurrentDisplayEXT": "OpenTK.Graphics.Glx.Glx.EXT.yml", - "OpenTK.Graphics.Glx.Glx.EXT.ImportContextEXT(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContextID)": "OpenTK.Graphics.Glx.Glx.EXT.yml", - "OpenTK.Graphics.Glx.Glx.EXT.QueryContextInfoEXT(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext,System.Int32,System.Int32*)": "OpenTK.Graphics.Glx.Glx.EXT.yml", - "OpenTK.Graphics.Glx.Glx.EXT.QueryContextInfoEXT(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext,System.Int32,System.Int32@)": "OpenTK.Graphics.Glx.Glx.EXT.yml", - "OpenTK.Graphics.Glx.Glx.EXT.QueryContextInfoEXT(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext,System.Int32,System.Int32[])": "OpenTK.Graphics.Glx.Glx.EXT.yml", - "OpenTK.Graphics.Glx.Glx.EXT.QueryContextInfoEXT(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext,System.Int32,System.Span{System.Int32})": "OpenTK.Graphics.Glx.Glx.EXT.yml", - "OpenTK.Graphics.Glx.Glx.EXT.ReleaseTexImageEXT(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32)": "OpenTK.Graphics.Glx.Glx.EXT.yml", - "OpenTK.Graphics.Glx.Glx.EXT.SwapIntervalEXT(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32)": "OpenTK.Graphics.Glx.Glx.EXT.yml", - "OpenTK.Graphics.Glx.Glx.GetClientString(OpenTK.Graphics.Glx.DisplayPtr,System.Int32)": "OpenTK.Graphics.Glx.Glx.yml", - "OpenTK.Graphics.Glx.Glx.GetClientString_(OpenTK.Graphics.Glx.DisplayPtr,System.Int32)": "OpenTK.Graphics.Glx.Glx.yml", - "OpenTK.Graphics.Glx.Glx.GetConfig(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.XVisualInfoPtr,System.Int32,System.Int32*)": "OpenTK.Graphics.Glx.Glx.yml", - "OpenTK.Graphics.Glx.Glx.GetConfig(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.XVisualInfoPtr,System.Int32,System.Int32@)": "OpenTK.Graphics.Glx.Glx.yml", - "OpenTK.Graphics.Glx.Glx.GetConfig(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.XVisualInfoPtr,System.Int32,System.Int32[])": "OpenTK.Graphics.Glx.Glx.yml", - "OpenTK.Graphics.Glx.Glx.GetConfig(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.XVisualInfoPtr,System.Int32,System.Span{System.Int32})": "OpenTK.Graphics.Glx.Glx.yml", - "OpenTK.Graphics.Glx.Glx.GetCurrentContext": "OpenTK.Graphics.Glx.Glx.yml", - "OpenTK.Graphics.Glx.Glx.GetCurrentDisplay": "OpenTK.Graphics.Glx.Glx.yml", - "OpenTK.Graphics.Glx.Glx.GetCurrentDrawable": "OpenTK.Graphics.Glx.Glx.yml", - "OpenTK.Graphics.Glx.Glx.GetCurrentReadDrawable": "OpenTK.Graphics.Glx.Glx.yml", - "OpenTK.Graphics.Glx.Glx.GetFBConfig(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32@)": "OpenTK.Graphics.Glx.Glx.yml", - "OpenTK.Graphics.Glx.Glx.GetFBConfig(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32[])": "OpenTK.Graphics.Glx.Glx.yml", - "OpenTK.Graphics.Glx.Glx.GetFBConfig(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Span{System.Int32})": "OpenTK.Graphics.Glx.Glx.yml", - "OpenTK.Graphics.Glx.Glx.GetFBConfigAttrib(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,System.Int32,System.Int32*)": "OpenTK.Graphics.Glx.Glx.yml", - "OpenTK.Graphics.Glx.Glx.GetFBConfigAttrib(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,System.Int32,System.Int32@)": "OpenTK.Graphics.Glx.Glx.yml", - "OpenTK.Graphics.Glx.Glx.GetFBConfigAttrib(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,System.Int32,System.Int32[])": "OpenTK.Graphics.Glx.Glx.yml", - "OpenTK.Graphics.Glx.Glx.GetFBConfigAttrib(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,System.Int32,System.Span{System.Int32})": "OpenTK.Graphics.Glx.Glx.yml", - "OpenTK.Graphics.Glx.Glx.GetFBConfigs(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32*)": "OpenTK.Graphics.Glx.Glx.yml", - "OpenTK.Graphics.Glx.Glx.GetProcAddress(System.Byte*)": "OpenTK.Graphics.Glx.Glx.yml", - "OpenTK.Graphics.Glx.Glx.GetProcAddress(System.Byte@)": "OpenTK.Graphics.Glx.Glx.yml", - "OpenTK.Graphics.Glx.Glx.GetProcAddress(System.Byte[])": "OpenTK.Graphics.Glx.Glx.yml", - "OpenTK.Graphics.Glx.Glx.GetProcAddress(System.ReadOnlySpan{System.Byte})": "OpenTK.Graphics.Glx.Glx.yml", - "OpenTK.Graphics.Glx.Glx.GetSelectedEvent(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Span{System.UInt64})": "OpenTK.Graphics.Glx.Glx.yml", - "OpenTK.Graphics.Glx.Glx.GetSelectedEvent(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.UInt64*)": "OpenTK.Graphics.Glx.Glx.yml", - "OpenTK.Graphics.Glx.Glx.GetSelectedEvent(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.UInt64@)": "OpenTK.Graphics.Glx.Glx.yml", - "OpenTK.Graphics.Glx.Glx.GetSelectedEvent(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.UInt64[])": "OpenTK.Graphics.Glx.Glx.yml", - "OpenTK.Graphics.Glx.Glx.GetVisualFromFBConfig(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig)": "OpenTK.Graphics.Glx.Glx.yml", - "OpenTK.Graphics.Glx.Glx.IsDirect(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext)": "OpenTK.Graphics.Glx.Glx.yml", - "OpenTK.Graphics.Glx.Glx.MESA": "OpenTK.Graphics.Glx.Glx.MESA.yml", - "OpenTK.Graphics.Glx.Glx.MESA.CopySubBufferMESA(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32,System.Int32,System.Int32,System.Int32)": "OpenTK.Graphics.Glx.Glx.MESA.yml", - "OpenTK.Graphics.Glx.Glx.MESA.CreateGLXPixmapMESA(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.XVisualInfoPtr,OpenTK.Graphics.Glx.Pixmap,OpenTK.Graphics.Glx.Colormap)": "OpenTK.Graphics.Glx.Glx.MESA.yml", - "OpenTK.Graphics.Glx.Glx.MESA.GetAGPOffsetMESA(System.IntPtr)": "OpenTK.Graphics.Glx.Glx.MESA.yml", - "OpenTK.Graphics.Glx.Glx.MESA.GetAGPOffsetMESA(System.Void*)": "OpenTK.Graphics.Glx.Glx.MESA.yml", - "OpenTK.Graphics.Glx.Glx.MESA.GetAGPOffsetMESA``1(System.ReadOnlySpan{``0})": "OpenTK.Graphics.Glx.Glx.MESA.yml", - "OpenTK.Graphics.Glx.Glx.MESA.GetAGPOffsetMESA``1(``0@)": "OpenTK.Graphics.Glx.Glx.MESA.yml", - "OpenTK.Graphics.Glx.Glx.MESA.GetAGPOffsetMESA``1(``0[])": "OpenTK.Graphics.Glx.Glx.MESA.yml", - "OpenTK.Graphics.Glx.Glx.MESA.GetSwapIntervalMESA": "OpenTK.Graphics.Glx.Glx.MESA.yml", - "OpenTK.Graphics.Glx.Glx.MESA.QueryCurrentRendererIntegerMESA(System.Int32,System.Span{System.UInt32})": "OpenTK.Graphics.Glx.Glx.MESA.yml", - "OpenTK.Graphics.Glx.Glx.MESA.QueryCurrentRendererIntegerMESA(System.Int32,System.UInt32*)": "OpenTK.Graphics.Glx.Glx.MESA.yml", - "OpenTK.Graphics.Glx.Glx.MESA.QueryCurrentRendererIntegerMESA(System.Int32,System.UInt32@)": "OpenTK.Graphics.Glx.Glx.MESA.yml", - "OpenTK.Graphics.Glx.Glx.MESA.QueryCurrentRendererIntegerMESA(System.Int32,System.UInt32[])": "OpenTK.Graphics.Glx.Glx.MESA.yml", - "OpenTK.Graphics.Glx.Glx.MESA.QueryCurrentRendererStringMESA(System.Int32)": "OpenTK.Graphics.Glx.Glx.MESA.yml", - "OpenTK.Graphics.Glx.Glx.MESA.QueryCurrentRendererStringMESA_(System.Int32)": "OpenTK.Graphics.Glx.Glx.MESA.yml", - "OpenTK.Graphics.Glx.Glx.MESA.QueryRendererIntegerMESA(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.Span{System.UInt32})": "OpenTK.Graphics.Glx.Glx.MESA.yml", - "OpenTK.Graphics.Glx.Glx.MESA.QueryRendererIntegerMESA(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.UInt32*)": "OpenTK.Graphics.Glx.Glx.MESA.yml", - "OpenTK.Graphics.Glx.Glx.MESA.QueryRendererIntegerMESA(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.UInt32@)": "OpenTK.Graphics.Glx.Glx.MESA.yml", - "OpenTK.Graphics.Glx.Glx.MESA.QueryRendererIntegerMESA(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.UInt32[])": "OpenTK.Graphics.Glx.Glx.MESA.yml", - "OpenTK.Graphics.Glx.Glx.MESA.QueryRendererStringMESA(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32)": "OpenTK.Graphics.Glx.Glx.MESA.yml", - "OpenTK.Graphics.Glx.Glx.MESA.QueryRendererStringMESA_(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32)": "OpenTK.Graphics.Glx.Glx.MESA.yml", - "OpenTK.Graphics.Glx.Glx.MESA.ReleaseBuffersMESA(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable)": "OpenTK.Graphics.Glx.Glx.MESA.yml", - "OpenTK.Graphics.Glx.Glx.MESA.Set3DfxModeMESA(System.Int32)": "OpenTK.Graphics.Glx.Glx.MESA.yml", - "OpenTK.Graphics.Glx.Glx.MESA.SwapIntervalMESA(System.UInt32)": "OpenTK.Graphics.Glx.Glx.MESA.yml", - "OpenTK.Graphics.Glx.Glx.MakeContextCurrent(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,OpenTK.Graphics.Glx.GLXDrawable,OpenTK.Graphics.Glx.GLXContext)": "OpenTK.Graphics.Glx.Glx.yml", - "OpenTK.Graphics.Glx.Glx.MakeCurrent(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,OpenTK.Graphics.Glx.GLXContext)": "OpenTK.Graphics.Glx.Glx.yml", - "OpenTK.Graphics.Glx.Glx.NV": "OpenTK.Graphics.Glx.Glx.NV.yml", - "OpenTK.Graphics.Glx.Glx.NV.BindSwapBarrierNV(OpenTK.Graphics.Glx.DisplayPtr,System.UInt32,System.UInt32)": "OpenTK.Graphics.Glx.Glx.NV.yml", - "OpenTK.Graphics.Glx.Glx.NV.BindVideoCaptureDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,System.UInt32,OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV)": "OpenTK.Graphics.Glx.Glx.NV.yml", - "OpenTK.Graphics.Glx.Glx.NV.BindVideoDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,System.UInt32,System.UInt32,System.Int32*)": "OpenTK.Graphics.Glx.Glx.NV.yml", - "OpenTK.Graphics.Glx.Glx.NV.BindVideoDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,System.UInt32,System.UInt32,System.Int32@)": "OpenTK.Graphics.Glx.Glx.NV.yml", - "OpenTK.Graphics.Glx.Glx.NV.BindVideoDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,System.UInt32,System.UInt32,System.Int32[])": "OpenTK.Graphics.Glx.Glx.NV.yml", - "OpenTK.Graphics.Glx.Glx.NV.BindVideoDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,System.UInt32,System.UInt32,System.ReadOnlySpan{System.Int32})": "OpenTK.Graphics.Glx.Glx.NV.yml", - "OpenTK.Graphics.Glx.Glx.NV.BindVideoImageNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXVideoDeviceNV,OpenTK.Graphics.Glx.GLXPbuffer,System.Int32)": "OpenTK.Graphics.Glx.Glx.NV.yml", - "OpenTK.Graphics.Glx.Glx.NV.CopyBufferSubDataNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext,OpenTK.Graphics.Glx.GLXContext,OpenTK.Graphics.Glx.All,OpenTK.Graphics.Glx.All,System.IntPtr,System.IntPtr,System.IntPtr)": "OpenTK.Graphics.Glx.Glx.NV.yml", - "OpenTK.Graphics.Glx.Glx.NV.CopyImageSubDataNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext,System.UInt32,OpenTK.Graphics.Glx.All,System.Int32,System.Int32,System.Int32,System.Int32,OpenTK.Graphics.Glx.GLXContext,System.UInt32,OpenTK.Graphics.Glx.All,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)": "OpenTK.Graphics.Glx.Glx.NV.yml", - "OpenTK.Graphics.Glx.Glx.NV.DelayBeforeSwapNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Single)": "OpenTK.Graphics.Glx.Glx.NV.yml", - "OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoCaptureDevicesNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32*)": "OpenTK.Graphics.Glx.Glx.NV.yml", - "OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoCaptureDevicesNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32@)": "OpenTK.Graphics.Glx.Glx.NV.yml", - "OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoCaptureDevicesNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32[])": "OpenTK.Graphics.Glx.Glx.NV.yml", - "OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoCaptureDevicesNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Span{System.Int32})": "OpenTK.Graphics.Glx.Glx.NV.yml", - "OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoDevicesNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32*)": "OpenTK.Graphics.Glx.Glx.NV.yml", - "OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoDevicesNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32@)": "OpenTK.Graphics.Glx.Glx.NV.yml", - "OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoDevicesNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32[])": "OpenTK.Graphics.Glx.Glx.NV.yml", - "OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoDevicesNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Span{System.Int32})": "OpenTK.Graphics.Glx.Glx.NV.yml", - "OpenTK.Graphics.Glx.Glx.NV.GetVideoDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,OpenTK.Graphics.Glx.GLXVideoDeviceNV*)": "OpenTK.Graphics.Glx.Glx.NV.yml", - "OpenTK.Graphics.Glx.Glx.NV.GetVideoDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,OpenTK.Graphics.Glx.GLXVideoDeviceNV@)": "OpenTK.Graphics.Glx.Glx.NV.yml", - "OpenTK.Graphics.Glx.Glx.NV.GetVideoDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,OpenTK.Graphics.Glx.GLXVideoDeviceNV[])": "OpenTK.Graphics.Glx.Glx.NV.yml", - "OpenTK.Graphics.Glx.Glx.NV.GetVideoDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Span{OpenTK.Graphics.Glx.GLXVideoDeviceNV})": "OpenTK.Graphics.Glx.Glx.NV.yml", - "OpenTK.Graphics.Glx.Glx.NV.GetVideoInfoNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,OpenTK.Graphics.Glx.GLXVideoDeviceNV,System.Span{System.UInt64},System.Span{System.UInt64})": "OpenTK.Graphics.Glx.Glx.NV.yml", - "OpenTK.Graphics.Glx.Glx.NV.GetVideoInfoNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,OpenTK.Graphics.Glx.GLXVideoDeviceNV,System.UInt64*,System.UInt64*)": "OpenTK.Graphics.Glx.Glx.NV.yml", - "OpenTK.Graphics.Glx.Glx.NV.GetVideoInfoNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,OpenTK.Graphics.Glx.GLXVideoDeviceNV,System.UInt64@,System.UInt64@)": "OpenTK.Graphics.Glx.Glx.NV.yml", - "OpenTK.Graphics.Glx.Glx.NV.GetVideoInfoNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,OpenTK.Graphics.Glx.GLXVideoDeviceNV,System.UInt64[],System.UInt64[])": "OpenTK.Graphics.Glx.Glx.NV.yml", - "OpenTK.Graphics.Glx.Glx.NV.JoinSwapGroupNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.UInt32)": "OpenTK.Graphics.Glx.Glx.NV.yml", - "OpenTK.Graphics.Glx.Glx.NV.LockVideoCaptureDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV)": "OpenTK.Graphics.Glx.Glx.NV.yml", - "OpenTK.Graphics.Glx.Glx.NV.NamedCopyBufferSubDataNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext,OpenTK.Graphics.Glx.GLXContext,System.UInt32,System.UInt32,System.IntPtr,System.IntPtr,System.IntPtr)": "OpenTK.Graphics.Glx.Glx.NV.yml", - "OpenTK.Graphics.Glx.Glx.NV.QueryFrameCountNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Span{System.UInt32})": "OpenTK.Graphics.Glx.Glx.NV.yml", - "OpenTK.Graphics.Glx.Glx.NV.QueryFrameCountNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.UInt32*)": "OpenTK.Graphics.Glx.Glx.NV.yml", - "OpenTK.Graphics.Glx.Glx.NV.QueryFrameCountNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.UInt32@)": "OpenTK.Graphics.Glx.Glx.NV.yml", - "OpenTK.Graphics.Glx.Glx.NV.QueryFrameCountNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.UInt32[])": "OpenTK.Graphics.Glx.Glx.NV.yml", - "OpenTK.Graphics.Glx.Glx.NV.QueryMaxSwapGroupsNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Span{System.UInt32},System.Span{System.UInt32})": "OpenTK.Graphics.Glx.Glx.NV.yml", - "OpenTK.Graphics.Glx.Glx.NV.QueryMaxSwapGroupsNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.UInt32*,System.UInt32*)": "OpenTK.Graphics.Glx.Glx.NV.yml", - "OpenTK.Graphics.Glx.Glx.NV.QueryMaxSwapGroupsNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.UInt32@,System.UInt32@)": "OpenTK.Graphics.Glx.Glx.NV.yml", - "OpenTK.Graphics.Glx.Glx.NV.QueryMaxSwapGroupsNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.UInt32[],System.UInt32[])": "OpenTK.Graphics.Glx.Glx.NV.yml", - "OpenTK.Graphics.Glx.Glx.NV.QuerySwapGroupNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Span{System.UInt32},System.Span{System.UInt32})": "OpenTK.Graphics.Glx.Glx.NV.yml", - "OpenTK.Graphics.Glx.Glx.NV.QuerySwapGroupNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.UInt32*,System.UInt32*)": "OpenTK.Graphics.Glx.Glx.NV.yml", - "OpenTK.Graphics.Glx.Glx.NV.QuerySwapGroupNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.UInt32@,System.UInt32@)": "OpenTK.Graphics.Glx.Glx.NV.yml", - "OpenTK.Graphics.Glx.Glx.NV.QuerySwapGroupNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.UInt32[],System.UInt32[])": "OpenTK.Graphics.Glx.Glx.NV.yml", - "OpenTK.Graphics.Glx.Glx.NV.QueryVideoCaptureDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV,System.Int32,System.Int32*)": "OpenTK.Graphics.Glx.Glx.NV.yml", - "OpenTK.Graphics.Glx.Glx.NV.QueryVideoCaptureDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV,System.Int32,System.Int32@)": "OpenTK.Graphics.Glx.Glx.NV.yml", - "OpenTK.Graphics.Glx.Glx.NV.QueryVideoCaptureDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV,System.Int32,System.Int32[])": "OpenTK.Graphics.Glx.Glx.NV.yml", - "OpenTK.Graphics.Glx.Glx.NV.QueryVideoCaptureDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV,System.Int32,System.Span{System.Int32})": "OpenTK.Graphics.Glx.Glx.NV.yml", - "OpenTK.Graphics.Glx.Glx.NV.ReleaseVideoCaptureDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV)": "OpenTK.Graphics.Glx.Glx.NV.yml", - "OpenTK.Graphics.Glx.Glx.NV.ReleaseVideoDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,OpenTK.Graphics.Glx.GLXVideoDeviceNV)": "OpenTK.Graphics.Glx.Glx.NV.yml", - "OpenTK.Graphics.Glx.Glx.NV.ReleaseVideoImageNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXPbuffer)": "OpenTK.Graphics.Glx.Glx.NV.yml", - "OpenTK.Graphics.Glx.Glx.NV.ResetFrameCountNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32)": "OpenTK.Graphics.Glx.Glx.NV.yml", - "OpenTK.Graphics.Glx.Glx.NV.SendPbufferToVideoNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXPbuffer,System.Int32,System.Span{System.UInt64},System.Boolean)": "OpenTK.Graphics.Glx.Glx.NV.yml", - "OpenTK.Graphics.Glx.Glx.NV.SendPbufferToVideoNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXPbuffer,System.Int32,System.UInt64*,System.Boolean)": "OpenTK.Graphics.Glx.Glx.NV.yml", - "OpenTK.Graphics.Glx.Glx.NV.SendPbufferToVideoNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXPbuffer,System.Int32,System.UInt64@,System.Boolean)": "OpenTK.Graphics.Glx.Glx.NV.yml", - "OpenTK.Graphics.Glx.Glx.NV.SendPbufferToVideoNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXPbuffer,System.Int32,System.UInt64[],System.Boolean)": "OpenTK.Graphics.Glx.Glx.NV.yml", - "OpenTK.Graphics.Glx.Glx.OML": "OpenTK.Graphics.Glx.Glx.OML.yml", - "OpenTK.Graphics.Glx.Glx.OML.GetMscRateOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32*,System.Int32*)": "OpenTK.Graphics.Glx.Glx.OML.yml", - "OpenTK.Graphics.Glx.Glx.OML.GetMscRateOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32@,System.Int32@)": "OpenTK.Graphics.Glx.Glx.OML.yml", - "OpenTK.Graphics.Glx.Glx.OML.GetMscRateOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32[],System.Int32[])": "OpenTK.Graphics.Glx.Glx.OML.yml", - "OpenTK.Graphics.Glx.Glx.OML.GetMscRateOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Span{System.Int32},System.Span{System.Int32})": "OpenTK.Graphics.Glx.Glx.OML.yml", - "OpenTK.Graphics.Glx.Glx.OML.GetSyncValuesOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int64*,System.Int64*,System.Int64*)": "OpenTK.Graphics.Glx.Glx.OML.yml", - "OpenTK.Graphics.Glx.Glx.OML.GetSyncValuesOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int64@,System.Int64@,System.Int64@)": "OpenTK.Graphics.Glx.Glx.OML.yml", - "OpenTK.Graphics.Glx.Glx.OML.GetSyncValuesOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int64[],System.Int64[],System.Int64[])": "OpenTK.Graphics.Glx.Glx.OML.yml", - "OpenTK.Graphics.Glx.Glx.OML.GetSyncValuesOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Span{System.Int64},System.Span{System.Int64},System.Span{System.Int64})": "OpenTK.Graphics.Glx.Glx.OML.yml", - "OpenTK.Graphics.Glx.Glx.OML.SwapBuffersMscOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int64,System.Int64,System.Int64)": "OpenTK.Graphics.Glx.Glx.OML.yml", - "OpenTK.Graphics.Glx.Glx.OML.WaitForMscOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int64,System.Int64,System.Int64,System.Int64*,System.Int64*,System.Int64*)": "OpenTK.Graphics.Glx.Glx.OML.yml", - "OpenTK.Graphics.Glx.Glx.OML.WaitForMscOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int64,System.Int64,System.Int64,System.Int64@,System.Int64@,System.Int64@)": "OpenTK.Graphics.Glx.Glx.OML.yml", - "OpenTK.Graphics.Glx.Glx.OML.WaitForMscOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int64,System.Int64,System.Int64,System.Int64[],System.Int64[],System.Int64[])": "OpenTK.Graphics.Glx.Glx.OML.yml", - "OpenTK.Graphics.Glx.Glx.OML.WaitForMscOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int64,System.Int64,System.Int64,System.Span{System.Int64},System.Span{System.Int64},System.Span{System.Int64})": "OpenTK.Graphics.Glx.Glx.OML.yml", - "OpenTK.Graphics.Glx.Glx.OML.WaitForSbcOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int64,System.Int64*,System.Int64*,System.Int64*)": "OpenTK.Graphics.Glx.Glx.OML.yml", - "OpenTK.Graphics.Glx.Glx.OML.WaitForSbcOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int64,System.Int64@,System.Int64@,System.Int64@)": "OpenTK.Graphics.Glx.Glx.OML.yml", - "OpenTK.Graphics.Glx.Glx.OML.WaitForSbcOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int64,System.Int64[],System.Int64[],System.Int64[])": "OpenTK.Graphics.Glx.Glx.OML.yml", - "OpenTK.Graphics.Glx.Glx.OML.WaitForSbcOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int64,System.Span{System.Int64},System.Span{System.Int64},System.Span{System.Int64})": "OpenTK.Graphics.Glx.Glx.OML.yml", - "OpenTK.Graphics.Glx.Glx.QueryContext(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext,System.Int32,System.Int32*)": "OpenTK.Graphics.Glx.Glx.yml", - "OpenTK.Graphics.Glx.Glx.QueryContext(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext,System.Int32,System.Int32@)": "OpenTK.Graphics.Glx.Glx.yml", - "OpenTK.Graphics.Glx.Glx.QueryContext(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext,System.Int32,System.Int32[])": "OpenTK.Graphics.Glx.Glx.yml", - "OpenTK.Graphics.Glx.Glx.QueryContext(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext,System.Int32,System.Span{System.Int32})": "OpenTK.Graphics.Glx.Glx.yml", - "OpenTK.Graphics.Glx.Glx.QueryDrawable(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32,System.Span{System.UInt32})": "OpenTK.Graphics.Glx.Glx.yml", - "OpenTK.Graphics.Glx.Glx.QueryDrawable(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32,System.UInt32*)": "OpenTK.Graphics.Glx.Glx.yml", - "OpenTK.Graphics.Glx.Glx.QueryDrawable(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32,System.UInt32@)": "OpenTK.Graphics.Glx.Glx.yml", - "OpenTK.Graphics.Glx.Glx.QueryDrawable(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32,System.UInt32[])": "OpenTK.Graphics.Glx.Glx.yml", - "OpenTK.Graphics.Glx.Glx.QueryExtension(OpenTK.Graphics.Glx.DisplayPtr,System.Int32*,System.Int32*)": "OpenTK.Graphics.Glx.Glx.yml", - "OpenTK.Graphics.Glx.Glx.QueryExtension(OpenTK.Graphics.Glx.DisplayPtr,System.Int32@,System.Int32@)": "OpenTK.Graphics.Glx.Glx.yml", - "OpenTK.Graphics.Glx.Glx.QueryExtension(OpenTK.Graphics.Glx.DisplayPtr,System.Int32[],System.Int32[])": "OpenTK.Graphics.Glx.Glx.yml", - "OpenTK.Graphics.Glx.Glx.QueryExtension(OpenTK.Graphics.Glx.DisplayPtr,System.Span{System.Int32},System.Span{System.Int32})": "OpenTK.Graphics.Glx.Glx.yml", - "OpenTK.Graphics.Glx.Glx.QueryExtensionsString(OpenTK.Graphics.Glx.DisplayPtr,System.Int32)": "OpenTK.Graphics.Glx.Glx.yml", - "OpenTK.Graphics.Glx.Glx.QueryExtensionsString_(OpenTK.Graphics.Glx.DisplayPtr,System.Int32)": "OpenTK.Graphics.Glx.Glx.yml", - "OpenTK.Graphics.Glx.Glx.QueryServerString(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32)": "OpenTK.Graphics.Glx.Glx.yml", - "OpenTK.Graphics.Glx.Glx.QueryServerString_(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32)": "OpenTK.Graphics.Glx.Glx.yml", - "OpenTK.Graphics.Glx.Glx.QueryVersion(OpenTK.Graphics.Glx.DisplayPtr,System.Int32*,System.Int32*)": "OpenTK.Graphics.Glx.Glx.yml", - "OpenTK.Graphics.Glx.Glx.QueryVersion(OpenTK.Graphics.Glx.DisplayPtr,System.Int32@,System.Int32@)": "OpenTK.Graphics.Glx.Glx.yml", - "OpenTK.Graphics.Glx.Glx.QueryVersion(OpenTK.Graphics.Glx.DisplayPtr,System.Int32[],System.Int32[])": "OpenTK.Graphics.Glx.Glx.yml", - "OpenTK.Graphics.Glx.Glx.QueryVersion(OpenTK.Graphics.Glx.DisplayPtr,System.Span{System.Int32},System.Span{System.Int32})": "OpenTK.Graphics.Glx.Glx.yml", - "OpenTK.Graphics.Glx.Glx.SGI": "OpenTK.Graphics.Glx.Glx.SGI.yml", - "OpenTK.Graphics.Glx.Glx.SGI.CushionSGI(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.Window,System.Single)": "OpenTK.Graphics.Glx.Glx.SGI.yml", - "OpenTK.Graphics.Glx.Glx.SGI.GetCurrentReadDrawableSGI": "OpenTK.Graphics.Glx.Glx.SGI.yml", - "OpenTK.Graphics.Glx.Glx.SGI.GetVideoSyncSGI(System.Span{System.UInt32})": "OpenTK.Graphics.Glx.Glx.SGI.yml", - "OpenTK.Graphics.Glx.Glx.SGI.GetVideoSyncSGI(System.UInt32*)": "OpenTK.Graphics.Glx.Glx.SGI.yml", - "OpenTK.Graphics.Glx.Glx.SGI.GetVideoSyncSGI(System.UInt32@)": "OpenTK.Graphics.Glx.Glx.SGI.yml", - "OpenTK.Graphics.Glx.Glx.SGI.GetVideoSyncSGI(System.UInt32[])": "OpenTK.Graphics.Glx.Glx.SGI.yml", - "OpenTK.Graphics.Glx.Glx.SGI.MakeCurrentReadSGI(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,OpenTK.Graphics.Glx.GLXDrawable,OpenTK.Graphics.Glx.GLXContext)": "OpenTK.Graphics.Glx.Glx.SGI.yml", - "OpenTK.Graphics.Glx.Glx.SGI.SwapIntervalSGI(System.Int32)": "OpenTK.Graphics.Glx.Glx.SGI.yml", - "OpenTK.Graphics.Glx.Glx.SGI.WaitVideoSyncSGI(System.Int32,System.Int32,System.Span{System.UInt32})": "OpenTK.Graphics.Glx.Glx.SGI.yml", - "OpenTK.Graphics.Glx.Glx.SGI.WaitVideoSyncSGI(System.Int32,System.Int32,System.UInt32*)": "OpenTK.Graphics.Glx.Glx.SGI.yml", - "OpenTK.Graphics.Glx.Glx.SGI.WaitVideoSyncSGI(System.Int32,System.Int32,System.UInt32@)": "OpenTK.Graphics.Glx.Glx.SGI.yml", - "OpenTK.Graphics.Glx.Glx.SGI.WaitVideoSyncSGI(System.Int32,System.Int32,System.UInt32[])": "OpenTK.Graphics.Glx.Glx.SGI.yml", - "OpenTK.Graphics.Glx.Glx.SGIX": "OpenTK.Graphics.Glx.Glx.SGIX.yml", - "OpenTK.Graphics.Glx.Glx.SGIX.BindChannelToWindowSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,OpenTK.Graphics.Glx.Window)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", - "OpenTK.Graphics.Glx.Glx.SGIX.BindHyperpipeSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", - "OpenTK.Graphics.Glx.Glx.SGIX.BindSwapBarrierSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", - "OpenTK.Graphics.Glx.Glx.SGIX.ChannelRectSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", - "OpenTK.Graphics.Glx.Glx.SGIX.ChannelRectSyncSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,OpenTK.Graphics.Glx.All)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", - "OpenTK.Graphics.Glx.Glx.SGIX.ChooseFBConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32*,System.Int32*)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", - "OpenTK.Graphics.Glx.Glx.SGIX.ChooseFBConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32@,System.Int32@)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", - "OpenTK.Graphics.Glx.Glx.SGIX.ChooseFBConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32[],System.Int32[])": "OpenTK.Graphics.Glx.Glx.SGIX.yml", - "OpenTK.Graphics.Glx.Glx.SGIX.ChooseFBConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Span{System.Int32},System.Span{System.Int32})": "OpenTK.Graphics.Glx.Glx.SGIX.yml", - "OpenTK.Graphics.Glx.Glx.SGIX.CreateContextWithConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfigSGIX,System.Int32,OpenTK.Graphics.Glx.GLXContext,System.Boolean)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", - "OpenTK.Graphics.Glx.Glx.SGIX.CreateGLXPbufferSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfigSGIX,System.UInt32,System.UInt32,System.Int32*)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", - "OpenTK.Graphics.Glx.Glx.SGIX.CreateGLXPbufferSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfigSGIX,System.UInt32,System.UInt32,System.Int32@)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", - "OpenTK.Graphics.Glx.Glx.SGIX.CreateGLXPbufferSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfigSGIX,System.UInt32,System.UInt32,System.Int32[])": "OpenTK.Graphics.Glx.Glx.SGIX.yml", - "OpenTK.Graphics.Glx.Glx.SGIX.CreateGLXPbufferSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfigSGIX,System.UInt32,System.UInt32,System.Span{System.Int32})": "OpenTK.Graphics.Glx.Glx.SGIX.yml", - "OpenTK.Graphics.Glx.Glx.SGIX.CreateGLXPixmapWithConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfigSGIX,OpenTK.Graphics.Glx.Pixmap)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", - "OpenTK.Graphics.Glx.Glx.SGIX.DestroyGLXPbufferSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXPbufferSGIX)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", - "OpenTK.Graphics.Glx.Glx.SGIX.DestroyHyperpipeConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", - "OpenTK.Graphics.Glx.Glx.SGIX.GetFBConfigAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfigSGIX,System.Int32,System.Int32*)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", - "OpenTK.Graphics.Glx.Glx.SGIX.GetFBConfigAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfigSGIX,System.Int32,System.Int32@)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", - "OpenTK.Graphics.Glx.Glx.SGIX.GetFBConfigAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfigSGIX,System.Int32,System.Int32[])": "OpenTK.Graphics.Glx.Glx.SGIX.yml", - "OpenTK.Graphics.Glx.Glx.SGIX.GetFBConfigAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfigSGIX,System.Int32,System.Span{System.Int32})": "OpenTK.Graphics.Glx.Glx.SGIX.yml", - "OpenTK.Graphics.Glx.Glx.SGIX.GetFBConfigFromVisualSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.XVisualInfoPtr)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", - "OpenTK.Graphics.Glx.Glx.SGIX.GetSelectedEventSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Span{System.UInt64})": "OpenTK.Graphics.Glx.Glx.SGIX.yml", - "OpenTK.Graphics.Glx.Glx.SGIX.GetSelectedEventSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.UInt64*)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", - "OpenTK.Graphics.Glx.Glx.SGIX.GetSelectedEventSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.UInt64@)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", - "OpenTK.Graphics.Glx.Glx.SGIX.GetSelectedEventSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.UInt64[])": "OpenTK.Graphics.Glx.Glx.SGIX.yml", - "OpenTK.Graphics.Glx.Glx.SGIX.GetVisualFromFBConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfigSGIX)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", - "OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.IntPtr)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", - "OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.Void*)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", - "OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeAttribSGIX``1(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.Span{``0})": "OpenTK.Graphics.Glx.Glx.SGIX.yml", - "OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeAttribSGIX``1(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,``0@)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", - "OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeAttribSGIX``1(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,``0[])": "OpenTK.Graphics.Glx.Glx.SGIX.yml", - "OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX*,System.Int32*)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", - "OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX@,System.Int32@)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", - "OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX[],System.Int32[])": "OpenTK.Graphics.Glx.Glx.SGIX.yml", - "OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Span{OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX},System.Span{System.Int32})": "OpenTK.Graphics.Glx.Glx.SGIX.yml", - "OpenTK.Graphics.Glx.Glx.SGIX.JoinSwapGroupSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,OpenTK.Graphics.Glx.GLXDrawable)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", - "OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelDeltasSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32*,System.Int32*,System.Int32*,System.Int32*)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", - "OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelDeltasSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32@,System.Int32@,System.Int32@,System.Int32@)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", - "OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelDeltasSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32[],System.Int32[],System.Int32[],System.Int32[])": "OpenTK.Graphics.Glx.Glx.SGIX.yml", - "OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelDeltasSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Span{System.Int32},System.Span{System.Int32},System.Span{System.Int32},System.Span{System.Int32})": "OpenTK.Graphics.Glx.Glx.SGIX.yml", - "OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelRectSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32*,System.Int32*,System.Int32*,System.Int32*)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", - "OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelRectSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32@,System.Int32@,System.Int32@,System.Int32@)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", - "OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelRectSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32[],System.Int32[],System.Int32[],System.Int32[])": "OpenTK.Graphics.Glx.Glx.SGIX.yml", - "OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelRectSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Span{System.Int32},System.Span{System.Int32},System.Span{System.Int32},System.Span{System.Int32})": "OpenTK.Graphics.Glx.Glx.SGIX.yml", - "OpenTK.Graphics.Glx.Glx.SGIX.QueryGLXPbufferSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXPbufferSGIX,System.Int32,System.Span{System.UInt32})": "OpenTK.Graphics.Glx.Glx.SGIX.yml", - "OpenTK.Graphics.Glx.Glx.SGIX.QueryGLXPbufferSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXPbufferSGIX,System.Int32,System.UInt32*)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", - "OpenTK.Graphics.Glx.Glx.SGIX.QueryGLXPbufferSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXPbufferSGIX,System.Int32,System.UInt32@)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", - "OpenTK.Graphics.Glx.Glx.SGIX.QueryGLXPbufferSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXPbufferSGIX,System.Int32,System.UInt32[])": "OpenTK.Graphics.Glx.Glx.SGIX.yml", - "OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.IntPtr)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", - "OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.Void*)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", - "OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeAttribSGIX``1(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.Span{``0})": "OpenTK.Graphics.Glx.Glx.SGIX.yml", - "OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeAttribSGIX``1(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,``0@)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", - "OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeAttribSGIX``1(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,``0[])": "OpenTK.Graphics.Glx.Glx.SGIX.yml", - "OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeBestAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.IntPtr,System.IntPtr)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", - "OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeBestAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.Void*,System.Void*)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", - "OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeBestAttribSGIX``2(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.Span{``0},System.Span{``1})": "OpenTK.Graphics.Glx.Glx.SGIX.yml", - "OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeBestAttribSGIX``2(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,``0@,``1@)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", - "OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeBestAttribSGIX``2(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,``0[],``1[])": "OpenTK.Graphics.Glx.Glx.SGIX.yml", - "OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32*)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", - "OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32@)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", - "OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32[])": "OpenTK.Graphics.Glx.Glx.SGIX.yml", - "OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Span{System.Int32})": "OpenTK.Graphics.Glx.Glx.SGIX.yml", - "OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeNetworkSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32*)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", - "OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeNetworkSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32@)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", - "OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeNetworkSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32[])": "OpenTK.Graphics.Glx.Glx.SGIX.yml", - "OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeNetworkSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Span{System.Int32})": "OpenTK.Graphics.Glx.Glx.SGIX.yml", - "OpenTK.Graphics.Glx.Glx.SGIX.QueryMaxSwapBarriersSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32*)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", - "OpenTK.Graphics.Glx.Glx.SGIX.QueryMaxSwapBarriersSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32@)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", - "OpenTK.Graphics.Glx.Glx.SGIX.QueryMaxSwapBarriersSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32[])": "OpenTK.Graphics.Glx.Glx.SGIX.yml", - "OpenTK.Graphics.Glx.Glx.SGIX.QueryMaxSwapBarriersSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Span{System.Int32})": "OpenTK.Graphics.Glx.Glx.SGIX.yml", - "OpenTK.Graphics.Glx.Glx.SGIX.SelectEventSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.UInt64)": "OpenTK.Graphics.Glx.Glx.SGIX.yml", - "OpenTK.Graphics.Glx.Glx.SUN": "OpenTK.Graphics.Glx.Glx.SUN.yml", - "OpenTK.Graphics.Glx.Glx.SUN.GetTransparentIndexSUN(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.Window,OpenTK.Graphics.Glx.Window,System.Span{System.UInt64})": "OpenTK.Graphics.Glx.Glx.SUN.yml", - "OpenTK.Graphics.Glx.Glx.SUN.GetTransparentIndexSUN(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.Window,OpenTK.Graphics.Glx.Window,System.UInt64*)": "OpenTK.Graphics.Glx.Glx.SUN.yml", - "OpenTK.Graphics.Glx.Glx.SUN.GetTransparentIndexSUN(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.Window,OpenTK.Graphics.Glx.Window,System.UInt64@)": "OpenTK.Graphics.Glx.Glx.SUN.yml", - "OpenTK.Graphics.Glx.Glx.SUN.GetTransparentIndexSUN(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.Window,OpenTK.Graphics.Glx.Window,System.UInt64[])": "OpenTK.Graphics.Glx.Glx.SUN.yml", - "OpenTK.Graphics.Glx.Glx.SelectEvent(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.UInt64)": "OpenTK.Graphics.Glx.Glx.yml", - "OpenTK.Graphics.Glx.Glx.SwapBuffers(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable)": "OpenTK.Graphics.Glx.Glx.yml", - "OpenTK.Graphics.Glx.Glx.UseXFont(OpenTK.Graphics.Glx.Font,System.Int32,System.Int32,System.Int32)": "OpenTK.Graphics.Glx.Glx.yml", - "OpenTK.Graphics.Glx.Glx.WaitGL": "OpenTK.Graphics.Glx.Glx.yml", - "OpenTK.Graphics.Glx.Glx.WaitX": "OpenTK.Graphics.Glx.Glx.yml", - "OpenTK.Graphics.Glx.GlxPointers": "OpenTK.Graphics.Glx.GlxPointers.yml", - "OpenTK.Graphics.Glx.GlxPointers._glXBindChannelToWindowSGIX_fnptr": "OpenTK.Graphics.Glx.GlxPointers.yml", - "OpenTK.Graphics.Glx.GlxPointers._glXBindHyperpipeSGIX_fnptr": "OpenTK.Graphics.Glx.GlxPointers.yml", - "OpenTK.Graphics.Glx.GlxPointers._glXBindSwapBarrierNV_fnptr": "OpenTK.Graphics.Glx.GlxPointers.yml", - "OpenTK.Graphics.Glx.GlxPointers._glXBindSwapBarrierSGIX_fnptr": "OpenTK.Graphics.Glx.GlxPointers.yml", - "OpenTK.Graphics.Glx.GlxPointers._glXBindTexImageEXT_fnptr": "OpenTK.Graphics.Glx.GlxPointers.yml", - "OpenTK.Graphics.Glx.GlxPointers._glXBindVideoCaptureDeviceNV_fnptr": "OpenTK.Graphics.Glx.GlxPointers.yml", - "OpenTK.Graphics.Glx.GlxPointers._glXBindVideoDeviceNV_fnptr": "OpenTK.Graphics.Glx.GlxPointers.yml", - "OpenTK.Graphics.Glx.GlxPointers._glXBindVideoImageNV_fnptr": "OpenTK.Graphics.Glx.GlxPointers.yml", - "OpenTK.Graphics.Glx.GlxPointers._glXBlitContextFramebufferAMD_fnptr": "OpenTK.Graphics.Glx.GlxPointers.yml", - "OpenTK.Graphics.Glx.GlxPointers._glXChannelRectSGIX_fnptr": "OpenTK.Graphics.Glx.GlxPointers.yml", - "OpenTK.Graphics.Glx.GlxPointers._glXChannelRectSyncSGIX_fnptr": "OpenTK.Graphics.Glx.GlxPointers.yml", - "OpenTK.Graphics.Glx.GlxPointers._glXChooseFBConfigSGIX_fnptr": "OpenTK.Graphics.Glx.GlxPointers.yml", - "OpenTK.Graphics.Glx.GlxPointers._glXChooseFBConfig_fnptr": "OpenTK.Graphics.Glx.GlxPointers.yml", - "OpenTK.Graphics.Glx.GlxPointers._glXChooseVisual_fnptr": "OpenTK.Graphics.Glx.GlxPointers.yml", - "OpenTK.Graphics.Glx.GlxPointers._glXCopyBufferSubDataNV_fnptr": "OpenTK.Graphics.Glx.GlxPointers.yml", - "OpenTK.Graphics.Glx.GlxPointers._glXCopyContext_fnptr": "OpenTK.Graphics.Glx.GlxPointers.yml", - "OpenTK.Graphics.Glx.GlxPointers._glXCopyImageSubDataNV_fnptr": "OpenTK.Graphics.Glx.GlxPointers.yml", - "OpenTK.Graphics.Glx.GlxPointers._glXCopySubBufferMESA_fnptr": "OpenTK.Graphics.Glx.GlxPointers.yml", - "OpenTK.Graphics.Glx.GlxPointers._glXCreateAssociatedContextAMD_fnptr": "OpenTK.Graphics.Glx.GlxPointers.yml", - "OpenTK.Graphics.Glx.GlxPointers._glXCreateAssociatedContextAttribsAMD_fnptr": "OpenTK.Graphics.Glx.GlxPointers.yml", - "OpenTK.Graphics.Glx.GlxPointers._glXCreateContextAttribsARB_fnptr": "OpenTK.Graphics.Glx.GlxPointers.yml", - "OpenTK.Graphics.Glx.GlxPointers._glXCreateContextWithConfigSGIX_fnptr": "OpenTK.Graphics.Glx.GlxPointers.yml", - "OpenTK.Graphics.Glx.GlxPointers._glXCreateContext_fnptr": "OpenTK.Graphics.Glx.GlxPointers.yml", - "OpenTK.Graphics.Glx.GlxPointers._glXCreateGLXPbufferSGIX_fnptr": "OpenTK.Graphics.Glx.GlxPointers.yml", - "OpenTK.Graphics.Glx.GlxPointers._glXCreateGLXPixmapMESA_fnptr": "OpenTK.Graphics.Glx.GlxPointers.yml", - "OpenTK.Graphics.Glx.GlxPointers._glXCreateGLXPixmapWithConfigSGIX_fnptr": "OpenTK.Graphics.Glx.GlxPointers.yml", - "OpenTK.Graphics.Glx.GlxPointers._glXCreateGLXPixmap_fnptr": "OpenTK.Graphics.Glx.GlxPointers.yml", - "OpenTK.Graphics.Glx.GlxPointers._glXCreateNewContext_fnptr": "OpenTK.Graphics.Glx.GlxPointers.yml", - "OpenTK.Graphics.Glx.GlxPointers._glXCreatePbuffer_fnptr": "OpenTK.Graphics.Glx.GlxPointers.yml", - "OpenTK.Graphics.Glx.GlxPointers._glXCreatePixmap_fnptr": "OpenTK.Graphics.Glx.GlxPointers.yml", - "OpenTK.Graphics.Glx.GlxPointers._glXCreateWindow_fnptr": "OpenTK.Graphics.Glx.GlxPointers.yml", - "OpenTK.Graphics.Glx.GlxPointers._glXCushionSGI_fnptr": "OpenTK.Graphics.Glx.GlxPointers.yml", - "OpenTK.Graphics.Glx.GlxPointers._glXDelayBeforeSwapNV_fnptr": "OpenTK.Graphics.Glx.GlxPointers.yml", - "OpenTK.Graphics.Glx.GlxPointers._glXDeleteAssociatedContextAMD_fnptr": "OpenTK.Graphics.Glx.GlxPointers.yml", - "OpenTK.Graphics.Glx.GlxPointers._glXDestroyContext_fnptr": "OpenTK.Graphics.Glx.GlxPointers.yml", - "OpenTK.Graphics.Glx.GlxPointers._glXDestroyGLXPbufferSGIX_fnptr": "OpenTK.Graphics.Glx.GlxPointers.yml", - "OpenTK.Graphics.Glx.GlxPointers._glXDestroyGLXPixmap_fnptr": "OpenTK.Graphics.Glx.GlxPointers.yml", - "OpenTK.Graphics.Glx.GlxPointers._glXDestroyHyperpipeConfigSGIX_fnptr": "OpenTK.Graphics.Glx.GlxPointers.yml", - "OpenTK.Graphics.Glx.GlxPointers._glXDestroyPbuffer_fnptr": "OpenTK.Graphics.Glx.GlxPointers.yml", - "OpenTK.Graphics.Glx.GlxPointers._glXDestroyPixmap_fnptr": "OpenTK.Graphics.Glx.GlxPointers.yml", - "OpenTK.Graphics.Glx.GlxPointers._glXDestroyWindow_fnptr": "OpenTK.Graphics.Glx.GlxPointers.yml", - "OpenTK.Graphics.Glx.GlxPointers._glXEnumerateVideoCaptureDevicesNV_fnptr": "OpenTK.Graphics.Glx.GlxPointers.yml", - "OpenTK.Graphics.Glx.GlxPointers._glXEnumerateVideoDevicesNV_fnptr": "OpenTK.Graphics.Glx.GlxPointers.yml", - "OpenTK.Graphics.Glx.GlxPointers._glXFreeContextEXT_fnptr": "OpenTK.Graphics.Glx.GlxPointers.yml", - "OpenTK.Graphics.Glx.GlxPointers._glXGetAGPOffsetMESA_fnptr": "OpenTK.Graphics.Glx.GlxPointers.yml", - "OpenTK.Graphics.Glx.GlxPointers._glXGetClientString_fnptr": "OpenTK.Graphics.Glx.GlxPointers.yml", - "OpenTK.Graphics.Glx.GlxPointers._glXGetConfig_fnptr": "OpenTK.Graphics.Glx.GlxPointers.yml", - "OpenTK.Graphics.Glx.GlxPointers._glXGetContextGPUIDAMD_fnptr": "OpenTK.Graphics.Glx.GlxPointers.yml", - "OpenTK.Graphics.Glx.GlxPointers._glXGetContextIDEXT_fnptr": "OpenTK.Graphics.Glx.GlxPointers.yml", - "OpenTK.Graphics.Glx.GlxPointers._glXGetCurrentAssociatedContextAMD_fnptr": "OpenTK.Graphics.Glx.GlxPointers.yml", - "OpenTK.Graphics.Glx.GlxPointers._glXGetCurrentContext_fnptr": "OpenTK.Graphics.Glx.GlxPointers.yml", - "OpenTK.Graphics.Glx.GlxPointers._glXGetCurrentDisplayEXT_fnptr": "OpenTK.Graphics.Glx.GlxPointers.yml", - "OpenTK.Graphics.Glx.GlxPointers._glXGetCurrentDisplay_fnptr": "OpenTK.Graphics.Glx.GlxPointers.yml", - "OpenTK.Graphics.Glx.GlxPointers._glXGetCurrentDrawable_fnptr": "OpenTK.Graphics.Glx.GlxPointers.yml", - "OpenTK.Graphics.Glx.GlxPointers._glXGetCurrentReadDrawableSGI_fnptr": "OpenTK.Graphics.Glx.GlxPointers.yml", - "OpenTK.Graphics.Glx.GlxPointers._glXGetCurrentReadDrawable_fnptr": "OpenTK.Graphics.Glx.GlxPointers.yml", - "OpenTK.Graphics.Glx.GlxPointers._glXGetFBConfigAttribSGIX_fnptr": "OpenTK.Graphics.Glx.GlxPointers.yml", - "OpenTK.Graphics.Glx.GlxPointers._glXGetFBConfigAttrib_fnptr": "OpenTK.Graphics.Glx.GlxPointers.yml", - "OpenTK.Graphics.Glx.GlxPointers._glXGetFBConfigFromVisualSGIX_fnptr": "OpenTK.Graphics.Glx.GlxPointers.yml", - "OpenTK.Graphics.Glx.GlxPointers._glXGetFBConfigs_fnptr": "OpenTK.Graphics.Glx.GlxPointers.yml", - "OpenTK.Graphics.Glx.GlxPointers._glXGetGPUIDsAMD_fnptr": "OpenTK.Graphics.Glx.GlxPointers.yml", - "OpenTK.Graphics.Glx.GlxPointers._glXGetGPUInfoAMD_fnptr": "OpenTK.Graphics.Glx.GlxPointers.yml", - "OpenTK.Graphics.Glx.GlxPointers._glXGetMscRateOML_fnptr": "OpenTK.Graphics.Glx.GlxPointers.yml", - "OpenTK.Graphics.Glx.GlxPointers._glXGetProcAddressARB_fnptr": "OpenTK.Graphics.Glx.GlxPointers.yml", - "OpenTK.Graphics.Glx.GlxPointers._glXGetProcAddress_fnptr": "OpenTK.Graphics.Glx.GlxPointers.yml", - "OpenTK.Graphics.Glx.GlxPointers._glXGetSelectedEventSGIX_fnptr": "OpenTK.Graphics.Glx.GlxPointers.yml", - "OpenTK.Graphics.Glx.GlxPointers._glXGetSelectedEvent_fnptr": "OpenTK.Graphics.Glx.GlxPointers.yml", - "OpenTK.Graphics.Glx.GlxPointers._glXGetSwapIntervalMESA_fnptr": "OpenTK.Graphics.Glx.GlxPointers.yml", - "OpenTK.Graphics.Glx.GlxPointers._glXGetSyncValuesOML_fnptr": "OpenTK.Graphics.Glx.GlxPointers.yml", - "OpenTK.Graphics.Glx.GlxPointers._glXGetTransparentIndexSUN_fnptr": "OpenTK.Graphics.Glx.GlxPointers.yml", - "OpenTK.Graphics.Glx.GlxPointers._glXGetVideoDeviceNV_fnptr": "OpenTK.Graphics.Glx.GlxPointers.yml", - "OpenTK.Graphics.Glx.GlxPointers._glXGetVideoInfoNV_fnptr": "OpenTK.Graphics.Glx.GlxPointers.yml", - "OpenTK.Graphics.Glx.GlxPointers._glXGetVideoSyncSGI_fnptr": "OpenTK.Graphics.Glx.GlxPointers.yml", - "OpenTK.Graphics.Glx.GlxPointers._glXGetVisualFromFBConfigSGIX_fnptr": "OpenTK.Graphics.Glx.GlxPointers.yml", - "OpenTK.Graphics.Glx.GlxPointers._glXGetVisualFromFBConfig_fnptr": "OpenTK.Graphics.Glx.GlxPointers.yml", - "OpenTK.Graphics.Glx.GlxPointers._glXHyperpipeAttribSGIX_fnptr": "OpenTK.Graphics.Glx.GlxPointers.yml", - "OpenTK.Graphics.Glx.GlxPointers._glXHyperpipeConfigSGIX_fnptr": "OpenTK.Graphics.Glx.GlxPointers.yml", - "OpenTK.Graphics.Glx.GlxPointers._glXImportContextEXT_fnptr": "OpenTK.Graphics.Glx.GlxPointers.yml", - "OpenTK.Graphics.Glx.GlxPointers._glXIsDirect_fnptr": "OpenTK.Graphics.Glx.GlxPointers.yml", - "OpenTK.Graphics.Glx.GlxPointers._glXJoinSwapGroupNV_fnptr": "OpenTK.Graphics.Glx.GlxPointers.yml", - "OpenTK.Graphics.Glx.GlxPointers._glXJoinSwapGroupSGIX_fnptr": "OpenTK.Graphics.Glx.GlxPointers.yml", - "OpenTK.Graphics.Glx.GlxPointers._glXLockVideoCaptureDeviceNV_fnptr": "OpenTK.Graphics.Glx.GlxPointers.yml", - "OpenTK.Graphics.Glx.GlxPointers._glXMakeAssociatedContextCurrentAMD_fnptr": "OpenTK.Graphics.Glx.GlxPointers.yml", - "OpenTK.Graphics.Glx.GlxPointers._glXMakeContextCurrent_fnptr": "OpenTK.Graphics.Glx.GlxPointers.yml", - "OpenTK.Graphics.Glx.GlxPointers._glXMakeCurrentReadSGI_fnptr": "OpenTK.Graphics.Glx.GlxPointers.yml", - "OpenTK.Graphics.Glx.GlxPointers._glXMakeCurrent_fnptr": "OpenTK.Graphics.Glx.GlxPointers.yml", - "OpenTK.Graphics.Glx.GlxPointers._glXNamedCopyBufferSubDataNV_fnptr": "OpenTK.Graphics.Glx.GlxPointers.yml", - "OpenTK.Graphics.Glx.GlxPointers._glXQueryChannelDeltasSGIX_fnptr": "OpenTK.Graphics.Glx.GlxPointers.yml", - "OpenTK.Graphics.Glx.GlxPointers._glXQueryChannelRectSGIX_fnptr": "OpenTK.Graphics.Glx.GlxPointers.yml", - "OpenTK.Graphics.Glx.GlxPointers._glXQueryContextInfoEXT_fnptr": "OpenTK.Graphics.Glx.GlxPointers.yml", - "OpenTK.Graphics.Glx.GlxPointers._glXQueryContext_fnptr": "OpenTK.Graphics.Glx.GlxPointers.yml", - "OpenTK.Graphics.Glx.GlxPointers._glXQueryCurrentRendererIntegerMESA_fnptr": "OpenTK.Graphics.Glx.GlxPointers.yml", - "OpenTK.Graphics.Glx.GlxPointers._glXQueryCurrentRendererStringMESA_fnptr": "OpenTK.Graphics.Glx.GlxPointers.yml", - "OpenTK.Graphics.Glx.GlxPointers._glXQueryDrawable_fnptr": "OpenTK.Graphics.Glx.GlxPointers.yml", - "OpenTK.Graphics.Glx.GlxPointers._glXQueryExtension_fnptr": "OpenTK.Graphics.Glx.GlxPointers.yml", - "OpenTK.Graphics.Glx.GlxPointers._glXQueryExtensionsString_fnptr": "OpenTK.Graphics.Glx.GlxPointers.yml", - "OpenTK.Graphics.Glx.GlxPointers._glXQueryFrameCountNV_fnptr": "OpenTK.Graphics.Glx.GlxPointers.yml", - "OpenTK.Graphics.Glx.GlxPointers._glXQueryGLXPbufferSGIX_fnptr": "OpenTK.Graphics.Glx.GlxPointers.yml", - "OpenTK.Graphics.Glx.GlxPointers._glXQueryHyperpipeAttribSGIX_fnptr": "OpenTK.Graphics.Glx.GlxPointers.yml", - "OpenTK.Graphics.Glx.GlxPointers._glXQueryHyperpipeBestAttribSGIX_fnptr": "OpenTK.Graphics.Glx.GlxPointers.yml", - "OpenTK.Graphics.Glx.GlxPointers._glXQueryHyperpipeConfigSGIX_fnptr": "OpenTK.Graphics.Glx.GlxPointers.yml", - "OpenTK.Graphics.Glx.GlxPointers._glXQueryHyperpipeNetworkSGIX_fnptr": "OpenTK.Graphics.Glx.GlxPointers.yml", - "OpenTK.Graphics.Glx.GlxPointers._glXQueryMaxSwapBarriersSGIX_fnptr": "OpenTK.Graphics.Glx.GlxPointers.yml", - "OpenTK.Graphics.Glx.GlxPointers._glXQueryMaxSwapGroupsNV_fnptr": "OpenTK.Graphics.Glx.GlxPointers.yml", - "OpenTK.Graphics.Glx.GlxPointers._glXQueryRendererIntegerMESA_fnptr": "OpenTK.Graphics.Glx.GlxPointers.yml", - "OpenTK.Graphics.Glx.GlxPointers._glXQueryRendererStringMESA_fnptr": "OpenTK.Graphics.Glx.GlxPointers.yml", - "OpenTK.Graphics.Glx.GlxPointers._glXQueryServerString_fnptr": "OpenTK.Graphics.Glx.GlxPointers.yml", - "OpenTK.Graphics.Glx.GlxPointers._glXQuerySwapGroupNV_fnptr": "OpenTK.Graphics.Glx.GlxPointers.yml", - "OpenTK.Graphics.Glx.GlxPointers._glXQueryVersion_fnptr": "OpenTK.Graphics.Glx.GlxPointers.yml", - "OpenTK.Graphics.Glx.GlxPointers._glXQueryVideoCaptureDeviceNV_fnptr": "OpenTK.Graphics.Glx.GlxPointers.yml", - "OpenTK.Graphics.Glx.GlxPointers._glXReleaseBuffersMESA_fnptr": "OpenTK.Graphics.Glx.GlxPointers.yml", - "OpenTK.Graphics.Glx.GlxPointers._glXReleaseTexImageEXT_fnptr": "OpenTK.Graphics.Glx.GlxPointers.yml", - "OpenTK.Graphics.Glx.GlxPointers._glXReleaseVideoCaptureDeviceNV_fnptr": "OpenTK.Graphics.Glx.GlxPointers.yml", - "OpenTK.Graphics.Glx.GlxPointers._glXReleaseVideoDeviceNV_fnptr": "OpenTK.Graphics.Glx.GlxPointers.yml", - "OpenTK.Graphics.Glx.GlxPointers._glXReleaseVideoImageNV_fnptr": "OpenTK.Graphics.Glx.GlxPointers.yml", - "OpenTK.Graphics.Glx.GlxPointers._glXResetFrameCountNV_fnptr": "OpenTK.Graphics.Glx.GlxPointers.yml", - "OpenTK.Graphics.Glx.GlxPointers._glXSelectEventSGIX_fnptr": "OpenTK.Graphics.Glx.GlxPointers.yml", - "OpenTK.Graphics.Glx.GlxPointers._glXSelectEvent_fnptr": "OpenTK.Graphics.Glx.GlxPointers.yml", - "OpenTK.Graphics.Glx.GlxPointers._glXSendPbufferToVideoNV_fnptr": "OpenTK.Graphics.Glx.GlxPointers.yml", - "OpenTK.Graphics.Glx.GlxPointers._glXSet3DfxModeMESA_fnptr": "OpenTK.Graphics.Glx.GlxPointers.yml", - "OpenTK.Graphics.Glx.GlxPointers._glXSwapBuffersMscOML_fnptr": "OpenTK.Graphics.Glx.GlxPointers.yml", - "OpenTK.Graphics.Glx.GlxPointers._glXSwapBuffers_fnptr": "OpenTK.Graphics.Glx.GlxPointers.yml", - "OpenTK.Graphics.Glx.GlxPointers._glXSwapIntervalEXT_fnptr": "OpenTK.Graphics.Glx.GlxPointers.yml", - "OpenTK.Graphics.Glx.GlxPointers._glXSwapIntervalMESA_fnptr": "OpenTK.Graphics.Glx.GlxPointers.yml", - "OpenTK.Graphics.Glx.GlxPointers._glXSwapIntervalSGI_fnptr": "OpenTK.Graphics.Glx.GlxPointers.yml", - "OpenTK.Graphics.Glx.GlxPointers._glXUseXFont_fnptr": "OpenTK.Graphics.Glx.GlxPointers.yml", - "OpenTK.Graphics.Glx.GlxPointers._glXWaitForMscOML_fnptr": "OpenTK.Graphics.Glx.GlxPointers.yml", - "OpenTK.Graphics.Glx.GlxPointers._glXWaitForSbcOML_fnptr": "OpenTK.Graphics.Glx.GlxPointers.yml", - "OpenTK.Graphics.Glx.GlxPointers._glXWaitGL_fnptr": "OpenTK.Graphics.Glx.GlxPointers.yml", - "OpenTK.Graphics.Glx.GlxPointers._glXWaitVideoSyncSGI_fnptr": "OpenTK.Graphics.Glx.GlxPointers.yml", - "OpenTK.Graphics.Glx.GlxPointers._glXWaitX_fnptr": "OpenTK.Graphics.Glx.GlxPointers.yml", - "OpenTK.Graphics.Glx.Pixmap": "OpenTK.Graphics.Glx.Pixmap.yml", - "OpenTK.Graphics.Glx.Pixmap.#ctor(System.UIntPtr)": "OpenTK.Graphics.Glx.Pixmap.yml", - "OpenTK.Graphics.Glx.Pixmap.XID": "OpenTK.Graphics.Glx.Pixmap.yml", - "OpenTK.Graphics.Glx.Pixmap.op_Explicit(OpenTK.Graphics.Glx.Pixmap)~System.UIntPtr": "OpenTK.Graphics.Glx.Pixmap.yml", - "OpenTK.Graphics.Glx.Pixmap.op_Explicit(System.UIntPtr)~OpenTK.Graphics.Glx.Pixmap": "OpenTK.Graphics.Glx.Pixmap.yml", - "OpenTK.Graphics.Glx.ScreenPtr": "OpenTK.Graphics.Glx.ScreenPtr.yml", - "OpenTK.Graphics.Glx.ScreenPtr.#ctor(System.IntPtr)": "OpenTK.Graphics.Glx.ScreenPtr.yml", - "OpenTK.Graphics.Glx.ScreenPtr.Value": "OpenTK.Graphics.Glx.ScreenPtr.yml", - "OpenTK.Graphics.Glx.ScreenPtr.op_Explicit(OpenTK.Graphics.Glx.ScreenPtr)~System.IntPtr": "OpenTK.Graphics.Glx.ScreenPtr.yml", - "OpenTK.Graphics.Glx.ScreenPtr.op_Explicit(System.IntPtr)~OpenTK.Graphics.Glx.ScreenPtr": "OpenTK.Graphics.Glx.ScreenPtr.yml", - "OpenTK.Graphics.Glx.Window": "OpenTK.Graphics.Glx.Window.yml", - "OpenTK.Graphics.Glx.Window.#ctor(System.UIntPtr)": "OpenTK.Graphics.Glx.Window.yml", - "OpenTK.Graphics.Glx.Window.XID": "OpenTK.Graphics.Glx.Window.yml", - "OpenTK.Graphics.Glx.Window.op_Explicit(OpenTK.Graphics.Glx.Window)~System.UIntPtr": "OpenTK.Graphics.Glx.Window.yml", - "OpenTK.Graphics.Glx.Window.op_Explicit(System.UIntPtr)~OpenTK.Graphics.Glx.Window": "OpenTK.Graphics.Glx.Window.yml", - "OpenTK.Graphics.Glx.XVisualInfoPtr": "OpenTK.Graphics.Glx.XVisualInfoPtr.yml", - "OpenTK.Graphics.Glx.XVisualInfoPtr.#ctor(System.IntPtr)": "OpenTK.Graphics.Glx.XVisualInfoPtr.yml", - "OpenTK.Graphics.Glx.XVisualInfoPtr.Value": "OpenTK.Graphics.Glx.XVisualInfoPtr.yml", - "OpenTK.Graphics.Glx.XVisualInfoPtr.op_Explicit(OpenTK.Graphics.Glx.XVisualInfoPtr)~System.IntPtr": "OpenTK.Graphics.Glx.XVisualInfoPtr.yml", - "OpenTK.Graphics.Glx.XVisualInfoPtr.op_Explicit(System.IntPtr)~OpenTK.Graphics.Glx.XVisualInfoPtr": "OpenTK.Graphics.Glx.XVisualInfoPtr.yml", "OpenTK.Graphics.PerfQueryHandle": "OpenTK.Graphics.PerfQueryHandle.yml", "OpenTK.Graphics.PerfQueryHandle.#ctor(System.Int32)": "OpenTK.Graphics.PerfQueryHandle.yml", "OpenTK.Graphics.PerfQueryHandle.Equals(OpenTK.Graphics.PerfQueryHandle)": "OpenTK.Graphics.PerfQueryHandle.yml", @@ -3049,1116 +1943,6 @@ "OpenTK.Graphics.WGLLoader": "OpenTK.Graphics.WGLLoader.yml", "OpenTK.Graphics.WGLLoader.BindingsContext": "OpenTK.Graphics.WGLLoader.BindingsContext.yml", "OpenTK.Graphics.WGLLoader.BindingsContext.GetProcAddress(System.String)": "OpenTK.Graphics.WGLLoader.BindingsContext.yml", - "OpenTK.Graphics.Wgl": "OpenTK.Graphics.Wgl.yml", - "OpenTK.Graphics.Wgl.AccelerationType": "OpenTK.Graphics.Wgl.AccelerationType.yml", - "OpenTK.Graphics.Wgl.AccelerationType.FullAccelerationArb": "OpenTK.Graphics.Wgl.AccelerationType.yml", - "OpenTK.Graphics.Wgl.AccelerationType.FullAccelerationExt": "OpenTK.Graphics.Wgl.AccelerationType.yml", - "OpenTK.Graphics.Wgl.AccelerationType.GenericAccelerationArb": "OpenTK.Graphics.Wgl.AccelerationType.yml", - "OpenTK.Graphics.Wgl.AccelerationType.GenericAccelerationExt": "OpenTK.Graphics.Wgl.AccelerationType.yml", - "OpenTK.Graphics.Wgl.AccelerationType.NoAccelerationArb": "OpenTK.Graphics.Wgl.AccelerationType.yml", - "OpenTK.Graphics.Wgl.AccelerationType.NoAccelerationExt": "OpenTK.Graphics.Wgl.AccelerationType.yml", - "OpenTK.Graphics.Wgl.All": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.AccelerationArb": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.AccelerationExt": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.AccessReadOnlyNv": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.AccessReadWriteNv": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.AccessWriteDiscardNv": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.AccumAlphaBitsArb": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.AccumAlphaBitsExt": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.AccumBitsArb": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.AccumBitsExt": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.AccumBlueBitsArb": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.AccumBlueBitsExt": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.AccumGreenBitsArb": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.AccumGreenBitsExt": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.AccumRedBitsArb": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.AccumRedBitsExt": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.AlphaBitsArb": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.AlphaBitsExt": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.AlphaShiftArb": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.AlphaShiftExt": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.Aux0Arb": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.Aux1Arb": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.Aux2Arb": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.Aux3Arb": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.Aux4Arb": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.Aux5Arb": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.Aux6Arb": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.Aux7Arb": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.Aux8Arb": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.Aux9Arb": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.AuxBuffersArb": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.AuxBuffersExt": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.BackColorBufferBitArb": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.BackLeftArb": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.BackRightArb": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.BindToTextureDepthNv": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.BindToTextureRectangleDepthNv": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.BindToTextureRectangleFloatRNv": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.BindToTextureRectangleFloatRgNv": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.BindToTextureRectangleFloatRgbNv": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.BindToTextureRectangleFloatRgbaNv": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.BindToTextureRectangleRgbNv": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.BindToTextureRectangleRgbaNv": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.BindToTextureRgbArb": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.BindToTextureRgbaArb": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.BindToVideoRgbAndDepthNv": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.BindToVideoRgbNv": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.BindToVideoRgbaNv": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.BlueBitsArb": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.BlueBitsExt": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.BlueShiftArb": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.BlueShiftExt": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.ColorBitsArb": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.ColorBitsExt": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.ColorSamplesNv": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.ColorspaceExt": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.ColorspaceLinearExt": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.ColorspaceSrgbExt": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.ContextCompatibilityProfileBitArb": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.ContextCoreProfileBitArb": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.ContextDebugBitArb": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.ContextEs2ProfileBitExt": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.ContextEsProfileBitExt": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.ContextFlagsArb": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.ContextForwardCompatibleBitArb": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.ContextLayerPlaneArb": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.ContextMajorVersionArb": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.ContextMinorVersionArb": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.ContextMultigpuAttribAfrNv": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.ContextMultigpuAttribMultiDisplayMulticastNv": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.ContextMultigpuAttribMulticastNv": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.ContextMultigpuAttribNv": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.ContextMultigpuAttribSingleNv": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.ContextOpenglNoErrorArb": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.ContextProfileMaskArb": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.ContextReleaseBehaviorArb": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.ContextReleaseBehaviorFlushArb": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.ContextReleaseBehaviorNoneArb": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.ContextResetIsolationBitArb": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.ContextResetNotificationStrategyArb": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.ContextRobustAccessBitArb": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.CoverageSamplesNv": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.CubeMapFaceArb": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.DepthBitsArb": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.DepthBitsExt": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.DepthBufferBitArb": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.DepthComponentNv": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.DepthFloatExt": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.DepthTextureFormatNv": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.DigitalVideoCursorAlphaFramebufferI3d": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.DigitalVideoCursorAlphaValueI3d": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.DigitalVideoCursorIncludedI3d": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.DigitalVideoGammaCorrectedI3d": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.DoubleBufferArb": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.DoubleBufferExt": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.DrawToBitmapArb": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.DrawToBitmapExt": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.DrawToPbufferArb": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.DrawToPbufferExt": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.DrawToWindowArb": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.DrawToWindowExt": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.ErrorIncompatibleAffinityMasksNv": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.ErrorIncompatibleDeviceContextsArb": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.ErrorInvalidPixelTypeArb": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.ErrorInvalidPixelTypeExt": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.ErrorInvalidProfileArb": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.ErrorInvalidVersionArb": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.ErrorMissingAffinityMaskNv": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.FloatComponentsNv": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.FontLines": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.FontPolygons": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.FramebufferSrgbCapableArb": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.FramebufferSrgbCapableExt": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.FrontColorBufferBitArb": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.FrontLeftArb": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.FrontRightArb": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.FullAccelerationArb": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.FullAccelerationExt": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.GammaExcludeDesktopI3d": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.GammaTableSizeI3d": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.GenericAccelerationArb": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.GenericAccelerationExt": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.GenlockSourceDigitalFieldI3d": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.GenlockSourceDigitalSyncI3d": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.GenlockSourceEdgeBothI3d": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.GenlockSourceEdgeFallingI3d": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.GenlockSourceEdgeRisingI3d": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.GenlockSourceExternalFieldI3d": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.GenlockSourceExternalSyncI3d": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.GenlockSourceExternalTtlI3d": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.GenlockSourceMultiviewI3d": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.GpuClockAmd": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.GpuFastestTargetGpusAmd": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.GpuNumPipesAmd": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.GpuNumRbAmd": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.GpuNumSimdAmd": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.GpuNumSpiAmd": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.GpuOpenglVersionStringAmd": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.GpuRamAmd": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.GpuRendererStringAmd": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.GpuVendorAmd": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.GreenBitsArb": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.GreenBitsExt": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.GreenShiftArb": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.GreenShiftExt": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.ImageBufferLockI3d": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.ImageBufferMinAccessI3d": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.LoseContextOnResetArb": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.MaxPbufferHeightArb": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.MaxPbufferHeightExt": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.MaxPbufferPixelsArb": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.MaxPbufferPixelsExt": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.MaxPbufferWidthArb": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.MaxPbufferWidthExt": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.MipmapLevelArb": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.MipmapTextureArb": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.NeedPaletteArb": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.NeedPaletteExt": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.NeedSystemPaletteArb": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.NeedSystemPaletteExt": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.NoAccelerationArb": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.NoAccelerationExt": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.NoResetNotificationArb": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.NoTextureArb": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.None": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.NumVideoCaptureSlotsNv": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.NumVideoSlotsNv": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.NumberOverlaysArb": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.NumberOverlaysExt": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.NumberPixelFormatsArb": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.NumberPixelFormatsExt": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.NumberUnderlaysArb": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.NumberUnderlaysExt": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.OptimalPbufferHeightExt": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.OptimalPbufferWidthExt": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.PbufferHeightArb": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.PbufferHeightExt": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.PbufferLargestArb": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.PbufferLargestExt": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.PbufferLostArb": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.PbufferWidthArb": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.PbufferWidthExt": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.PixelTypeArb": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.PixelTypeExt": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.RedBitsArb": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.RedBitsExt": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.RedShiftArb": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.RedShiftExt": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.Renderbuffer": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.SampleBuffers3dfx": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.SampleBuffersArb": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.SampleBuffersExt": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.Samples3dfx": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.SamplesArb": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.SamplesExt": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.ShareAccumArb": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.ShareAccumExt": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.ShareDepthArb": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.ShareDepthExt": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.ShareStencilArb": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.ShareStencilExt": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.StencilBitsArb": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.StencilBitsExt": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.StencilBufferBitArb": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.StereoArb": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.StereoEmitterDisable3dl": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.StereoEmitterEnable3dl": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.StereoExt": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.StereoPolarityInvert3dl": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.StereoPolarityNormal3dl": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.SupportGdiArb": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.SupportGdiExt": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.SupportOpenglArb": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.SupportOpenglExt": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.SwapCopyArb": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.SwapCopyExt": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.SwapExchangeArb": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.SwapExchangeExt": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.SwapLayerBuffersArb": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.SwapLayerBuffersExt": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.SwapMainPlane": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.SwapMethodArb": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.SwapMethodExt": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.SwapOverlay1": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.SwapOverlay10": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.SwapOverlay11": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.SwapOverlay12": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.SwapOverlay13": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.SwapOverlay14": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.SwapOverlay15": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.SwapOverlay2": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.SwapOverlay3": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.SwapOverlay4": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.SwapOverlay5": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.SwapOverlay6": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.SwapOverlay7": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.SwapOverlay8": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.SwapOverlay9": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.SwapUndefinedArb": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.SwapUndefinedExt": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.SwapUnderlay1": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.SwapUnderlay10": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.SwapUnderlay11": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.SwapUnderlay12": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.SwapUnderlay13": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.SwapUnderlay14": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.SwapUnderlay15": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.SwapUnderlay2": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.SwapUnderlay3": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.SwapUnderlay4": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.SwapUnderlay5": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.SwapUnderlay6": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.SwapUnderlay7": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.SwapUnderlay8": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.SwapUnderlay9": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.Texture1dArb": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.Texture2d": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.Texture2dArb": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.Texture3d": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.TextureCubeMap": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.TextureCubeMapArb": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.TextureCubeMapNegativeXArb": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.TextureCubeMapNegativeYArb": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.TextureCubeMapNegativeZArb": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.TextureCubeMapPositiveXArb": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.TextureCubeMapPositiveYArb": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.TextureCubeMapPositiveZArb": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.TextureDepthComponentNv": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.TextureFloatRNv": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.TextureFloatRgNv": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.TextureFloatRgbNv": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.TextureFloatRgbaNv": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.TextureFormatArb": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.TextureRectangle": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.TextureRectangleAti": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.TextureRectangleNv": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.TextureRgbArb": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.TextureRgbaArb": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.TextureTargetArb": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.TransparentAlphaValueArb": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.TransparentArb": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.TransparentBlueValueArb": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.TransparentExt": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.TransparentGreenValueArb": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.TransparentIndexValueArb": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.TransparentRedValueArb": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.TransparentValueExt": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.TypeColorindexArb": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.TypeColorindexExt": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.TypeRgbaArb": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.TypeRgbaExt": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.TypeRgbaFloatArb": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.TypeRgbaFloatAti": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.TypeRgbaUnsignedFloatExt": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.UniqueIdNv": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.VideoOutAlphaNv": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.VideoOutColorAndAlphaNv": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.VideoOutColorAndDepthNv": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.VideoOutColorNv": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.VideoOutDepthNv": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.VideoOutField1": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.VideoOutField2": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.VideoOutFrame": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.VideoOutStackedFields12": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.All.VideoOutStackedFields21": "OpenTK.Graphics.Wgl.All.yml", - "OpenTK.Graphics.Wgl.ColorBuffer": "OpenTK.Graphics.Wgl.ColorBuffer.yml", - "OpenTK.Graphics.Wgl.ColorBuffer.Aux0Arb": "OpenTK.Graphics.Wgl.ColorBuffer.yml", - "OpenTK.Graphics.Wgl.ColorBuffer.Aux1Arb": "OpenTK.Graphics.Wgl.ColorBuffer.yml", - "OpenTK.Graphics.Wgl.ColorBuffer.Aux2Arb": "OpenTK.Graphics.Wgl.ColorBuffer.yml", - "OpenTK.Graphics.Wgl.ColorBuffer.Aux3Arb": "OpenTK.Graphics.Wgl.ColorBuffer.yml", - "OpenTK.Graphics.Wgl.ColorBuffer.Aux4Arb": "OpenTK.Graphics.Wgl.ColorBuffer.yml", - "OpenTK.Graphics.Wgl.ColorBuffer.Aux5Arb": "OpenTK.Graphics.Wgl.ColorBuffer.yml", - "OpenTK.Graphics.Wgl.ColorBuffer.Aux6Arb": "OpenTK.Graphics.Wgl.ColorBuffer.yml", - "OpenTK.Graphics.Wgl.ColorBuffer.Aux7Arb": "OpenTK.Graphics.Wgl.ColorBuffer.yml", - "OpenTK.Graphics.Wgl.ColorBuffer.Aux8Arb": "OpenTK.Graphics.Wgl.ColorBuffer.yml", - "OpenTK.Graphics.Wgl.ColorBuffer.Aux9Arb": "OpenTK.Graphics.Wgl.ColorBuffer.yml", - "OpenTK.Graphics.Wgl.ColorBuffer.BackLeftArb": "OpenTK.Graphics.Wgl.ColorBuffer.yml", - "OpenTK.Graphics.Wgl.ColorBuffer.BackRightArb": "OpenTK.Graphics.Wgl.ColorBuffer.yml", - "OpenTK.Graphics.Wgl.ColorBuffer.FrontLeftArb": "OpenTK.Graphics.Wgl.ColorBuffer.yml", - "OpenTK.Graphics.Wgl.ColorBuffer.FrontRightArb": "OpenTK.Graphics.Wgl.ColorBuffer.yml", - "OpenTK.Graphics.Wgl.ColorBufferMask": "OpenTK.Graphics.Wgl.ColorBufferMask.yml", - "OpenTK.Graphics.Wgl.ColorBufferMask.BackColorBufferBitArb": "OpenTK.Graphics.Wgl.ColorBufferMask.yml", - "OpenTK.Graphics.Wgl.ColorBufferMask.DepthBufferBitArb": "OpenTK.Graphics.Wgl.ColorBufferMask.yml", - "OpenTK.Graphics.Wgl.ColorBufferMask.FrontColorBufferBitArb": "OpenTK.Graphics.Wgl.ColorBufferMask.yml", - "OpenTK.Graphics.Wgl.ColorBufferMask.StencilBufferBitArb": "OpenTK.Graphics.Wgl.ColorBufferMask.yml", - "OpenTK.Graphics.Wgl.ColorRef": "OpenTK.Graphics.Wgl.ColorRef.yml", - "OpenTK.Graphics.Wgl.ColorRef.Blue": "OpenTK.Graphics.Wgl.ColorRef.yml", - "OpenTK.Graphics.Wgl.ColorRef.Green": "OpenTK.Graphics.Wgl.ColorRef.yml", - "OpenTK.Graphics.Wgl.ColorRef.Red": "OpenTK.Graphics.Wgl.ColorRef.yml", - "OpenTK.Graphics.Wgl.ContextAttribs": "OpenTK.Graphics.Wgl.ContextAttribs.yml", - "OpenTK.Graphics.Wgl.ContextAttribs.ContextFlagsArb": "OpenTK.Graphics.Wgl.ContextAttribs.yml", - "OpenTK.Graphics.Wgl.ContextAttribs.ContextLayerPlaneArb": "OpenTK.Graphics.Wgl.ContextAttribs.yml", - "OpenTK.Graphics.Wgl.ContextAttribs.ContextMajorVersionArb": "OpenTK.Graphics.Wgl.ContextAttribs.yml", - "OpenTK.Graphics.Wgl.ContextAttribs.ContextMinorVersionArb": "OpenTK.Graphics.Wgl.ContextAttribs.yml", - "OpenTK.Graphics.Wgl.ContextAttribs.ContextProfileMaskArb": "OpenTK.Graphics.Wgl.ContextAttribs.yml", - "OpenTK.Graphics.Wgl.ContextAttribute": "OpenTK.Graphics.Wgl.ContextAttribute.yml", - "OpenTK.Graphics.Wgl.ContextAttribute.NumVideoCaptureSlotsNv": "OpenTK.Graphics.Wgl.ContextAttribute.yml", - "OpenTK.Graphics.Wgl.ContextAttribute.NumVideoSlotsNv": "OpenTK.Graphics.Wgl.ContextAttribute.yml", - "OpenTK.Graphics.Wgl.ContextFlagsMask": "OpenTK.Graphics.Wgl.ContextFlagsMask.yml", - "OpenTK.Graphics.Wgl.ContextFlagsMask.ContextDebugBitArb": "OpenTK.Graphics.Wgl.ContextFlagsMask.yml", - "OpenTK.Graphics.Wgl.ContextFlagsMask.ContextForwardCompatibleBitArb": "OpenTK.Graphics.Wgl.ContextFlagsMask.yml", - "OpenTK.Graphics.Wgl.ContextFlagsMask.ContextResetIsolationBitArb": "OpenTK.Graphics.Wgl.ContextFlagsMask.yml", - "OpenTK.Graphics.Wgl.ContextFlagsMask.ContextRobustAccessBitArb": "OpenTK.Graphics.Wgl.ContextFlagsMask.yml", - "OpenTK.Graphics.Wgl.ContextProfileMask": "OpenTK.Graphics.Wgl.ContextProfileMask.yml", - "OpenTK.Graphics.Wgl.ContextProfileMask.ContextCompatibilityProfileBitArb": "OpenTK.Graphics.Wgl.ContextProfileMask.yml", - "OpenTK.Graphics.Wgl.ContextProfileMask.ContextCoreProfileBitArb": "OpenTK.Graphics.Wgl.ContextProfileMask.yml", - "OpenTK.Graphics.Wgl.ContextProfileMask.ContextEs2ProfileBitExt": "OpenTK.Graphics.Wgl.ContextProfileMask.yml", - "OpenTK.Graphics.Wgl.ContextProfileMask.ContextEsProfileBitExt": "OpenTK.Graphics.Wgl.ContextProfileMask.yml", - "OpenTK.Graphics.Wgl.DXInteropMaskNV": "OpenTK.Graphics.Wgl.DXInteropMaskNV.yml", - "OpenTK.Graphics.Wgl.DXInteropMaskNV.AccessReadOnlyNv": "OpenTK.Graphics.Wgl.DXInteropMaskNV.yml", - "OpenTK.Graphics.Wgl.DXInteropMaskNV.AccessReadWriteNv": "OpenTK.Graphics.Wgl.DXInteropMaskNV.yml", - "OpenTK.Graphics.Wgl.DXInteropMaskNV.AccessWriteDiscardNv": "OpenTK.Graphics.Wgl.DXInteropMaskNV.yml", - "OpenTK.Graphics.Wgl.DigitalVideoAttribute": "OpenTK.Graphics.Wgl.DigitalVideoAttribute.yml", - "OpenTK.Graphics.Wgl.DigitalVideoAttribute.DigitalVideoCursorAlphaFramebufferI3d": "OpenTK.Graphics.Wgl.DigitalVideoAttribute.yml", - "OpenTK.Graphics.Wgl.DigitalVideoAttribute.DigitalVideoCursorAlphaValueI3d": "OpenTK.Graphics.Wgl.DigitalVideoAttribute.yml", - "OpenTK.Graphics.Wgl.DigitalVideoAttribute.DigitalVideoCursorIncludedI3d": "OpenTK.Graphics.Wgl.DigitalVideoAttribute.yml", - "OpenTK.Graphics.Wgl.DigitalVideoAttribute.DigitalVideoGammaCorrectedI3d": "OpenTK.Graphics.Wgl.DigitalVideoAttribute.yml", - "OpenTK.Graphics.Wgl.FontFormat": "OpenTK.Graphics.Wgl.FontFormat.yml", - "OpenTK.Graphics.Wgl.FontFormat.FontLines": "OpenTK.Graphics.Wgl.FontFormat.yml", - "OpenTK.Graphics.Wgl.FontFormat.FontPolygons": "OpenTK.Graphics.Wgl.FontFormat.yml", - "OpenTK.Graphics.Wgl.GPUPropertyAMD": "OpenTK.Graphics.Wgl.GPUPropertyAMD.yml", - "OpenTK.Graphics.Wgl.GPUPropertyAMD.GpuClockAmd": "OpenTK.Graphics.Wgl.GPUPropertyAMD.yml", - "OpenTK.Graphics.Wgl.GPUPropertyAMD.GpuNumPipesAmd": "OpenTK.Graphics.Wgl.GPUPropertyAMD.yml", - "OpenTK.Graphics.Wgl.GPUPropertyAMD.GpuNumRbAmd": "OpenTK.Graphics.Wgl.GPUPropertyAMD.yml", - "OpenTK.Graphics.Wgl.GPUPropertyAMD.GpuNumSimdAmd": "OpenTK.Graphics.Wgl.GPUPropertyAMD.yml", - "OpenTK.Graphics.Wgl.GPUPropertyAMD.GpuNumSpiAmd": "OpenTK.Graphics.Wgl.GPUPropertyAMD.yml", - "OpenTK.Graphics.Wgl.GPUPropertyAMD.GpuOpenglVersionStringAmd": "OpenTK.Graphics.Wgl.GPUPropertyAMD.yml", - "OpenTK.Graphics.Wgl.GPUPropertyAMD.GpuRamAmd": "OpenTK.Graphics.Wgl.GPUPropertyAMD.yml", - "OpenTK.Graphics.Wgl.GPUPropertyAMD.GpuRendererStringAmd": "OpenTK.Graphics.Wgl.GPUPropertyAMD.yml", - "OpenTK.Graphics.Wgl.GPUPropertyAMD.GpuVendorAmd": "OpenTK.Graphics.Wgl.GPUPropertyAMD.yml", - "OpenTK.Graphics.Wgl.GammaTableAttribute": "OpenTK.Graphics.Wgl.GammaTableAttribute.yml", - "OpenTK.Graphics.Wgl.GammaTableAttribute.GammaExcludeDesktopI3d": "OpenTK.Graphics.Wgl.GammaTableAttribute.yml", - "OpenTK.Graphics.Wgl.GammaTableAttribute.GammaTableSizeI3d": "OpenTK.Graphics.Wgl.GammaTableAttribute.yml", - "OpenTK.Graphics.Wgl.ImageBufferMaskI3D": "OpenTK.Graphics.Wgl.ImageBufferMaskI3D.yml", - "OpenTK.Graphics.Wgl.ImageBufferMaskI3D.ImageBufferLockI3d": "OpenTK.Graphics.Wgl.ImageBufferMaskI3D.yml", - "OpenTK.Graphics.Wgl.ImageBufferMaskI3D.ImageBufferMinAccessI3d": "OpenTK.Graphics.Wgl.ImageBufferMaskI3D.yml", - "OpenTK.Graphics.Wgl.LayerPlaneDescriptor": "OpenTK.Graphics.Wgl.LayerPlaneDescriptor.yml", - "OpenTK.Graphics.Wgl.LayerPlaneDescriptor.bReserved": "OpenTK.Graphics.Wgl.LayerPlaneDescriptor.yml", - "OpenTK.Graphics.Wgl.LayerPlaneDescriptor.cAccumAlphaBits": "OpenTK.Graphics.Wgl.LayerPlaneDescriptor.yml", - "OpenTK.Graphics.Wgl.LayerPlaneDescriptor.cAccumBits": "OpenTK.Graphics.Wgl.LayerPlaneDescriptor.yml", - "OpenTK.Graphics.Wgl.LayerPlaneDescriptor.cAccumBlueBits": "OpenTK.Graphics.Wgl.LayerPlaneDescriptor.yml", - "OpenTK.Graphics.Wgl.LayerPlaneDescriptor.cAccumGreenBits": "OpenTK.Graphics.Wgl.LayerPlaneDescriptor.yml", - "OpenTK.Graphics.Wgl.LayerPlaneDescriptor.cAccumRedBits": "OpenTK.Graphics.Wgl.LayerPlaneDescriptor.yml", - "OpenTK.Graphics.Wgl.LayerPlaneDescriptor.cAlphaBits": "OpenTK.Graphics.Wgl.LayerPlaneDescriptor.yml", - "OpenTK.Graphics.Wgl.LayerPlaneDescriptor.cAlphaShift": "OpenTK.Graphics.Wgl.LayerPlaneDescriptor.yml", - "OpenTK.Graphics.Wgl.LayerPlaneDescriptor.cAuxBuffers": "OpenTK.Graphics.Wgl.LayerPlaneDescriptor.yml", - "OpenTK.Graphics.Wgl.LayerPlaneDescriptor.cBlueBits": "OpenTK.Graphics.Wgl.LayerPlaneDescriptor.yml", - "OpenTK.Graphics.Wgl.LayerPlaneDescriptor.cBlueShift": "OpenTK.Graphics.Wgl.LayerPlaneDescriptor.yml", - "OpenTK.Graphics.Wgl.LayerPlaneDescriptor.cColorBits": "OpenTK.Graphics.Wgl.LayerPlaneDescriptor.yml", - "OpenTK.Graphics.Wgl.LayerPlaneDescriptor.cDepthBits": "OpenTK.Graphics.Wgl.LayerPlaneDescriptor.yml", - "OpenTK.Graphics.Wgl.LayerPlaneDescriptor.cGreenBits": "OpenTK.Graphics.Wgl.LayerPlaneDescriptor.yml", - "OpenTK.Graphics.Wgl.LayerPlaneDescriptor.cGreenShift": "OpenTK.Graphics.Wgl.LayerPlaneDescriptor.yml", - "OpenTK.Graphics.Wgl.LayerPlaneDescriptor.cRedBits": "OpenTK.Graphics.Wgl.LayerPlaneDescriptor.yml", - "OpenTK.Graphics.Wgl.LayerPlaneDescriptor.cRedShift": "OpenTK.Graphics.Wgl.LayerPlaneDescriptor.yml", - "OpenTK.Graphics.Wgl.LayerPlaneDescriptor.cStencilBits": "OpenTK.Graphics.Wgl.LayerPlaneDescriptor.yml", - "OpenTK.Graphics.Wgl.LayerPlaneDescriptor.crTransparent": "OpenTK.Graphics.Wgl.LayerPlaneDescriptor.yml", - "OpenTK.Graphics.Wgl.LayerPlaneDescriptor.dwFlags": "OpenTK.Graphics.Wgl.LayerPlaneDescriptor.yml", - "OpenTK.Graphics.Wgl.LayerPlaneDescriptor.iLayerPlane": "OpenTK.Graphics.Wgl.LayerPlaneDescriptor.yml", - "OpenTK.Graphics.Wgl.LayerPlaneDescriptor.iPixelType": "OpenTK.Graphics.Wgl.LayerPlaneDescriptor.yml", - "OpenTK.Graphics.Wgl.LayerPlaneDescriptor.nSize": "OpenTK.Graphics.Wgl.LayerPlaneDescriptor.yml", - "OpenTK.Graphics.Wgl.LayerPlaneDescriptor.nVersion": "OpenTK.Graphics.Wgl.LayerPlaneDescriptor.yml", - "OpenTK.Graphics.Wgl.LayerPlaneMask": "OpenTK.Graphics.Wgl.LayerPlaneMask.yml", - "OpenTK.Graphics.Wgl.LayerPlaneMask.SwapMainPlane": "OpenTK.Graphics.Wgl.LayerPlaneMask.yml", - "OpenTK.Graphics.Wgl.LayerPlaneMask.SwapOverlay1": "OpenTK.Graphics.Wgl.LayerPlaneMask.yml", - "OpenTK.Graphics.Wgl.LayerPlaneMask.SwapOverlay10": "OpenTK.Graphics.Wgl.LayerPlaneMask.yml", - "OpenTK.Graphics.Wgl.LayerPlaneMask.SwapOverlay11": "OpenTK.Graphics.Wgl.LayerPlaneMask.yml", - "OpenTK.Graphics.Wgl.LayerPlaneMask.SwapOverlay12": "OpenTK.Graphics.Wgl.LayerPlaneMask.yml", - "OpenTK.Graphics.Wgl.LayerPlaneMask.SwapOverlay13": "OpenTK.Graphics.Wgl.LayerPlaneMask.yml", - "OpenTK.Graphics.Wgl.LayerPlaneMask.SwapOverlay14": "OpenTK.Graphics.Wgl.LayerPlaneMask.yml", - "OpenTK.Graphics.Wgl.LayerPlaneMask.SwapOverlay15": "OpenTK.Graphics.Wgl.LayerPlaneMask.yml", - "OpenTK.Graphics.Wgl.LayerPlaneMask.SwapOverlay2": "OpenTK.Graphics.Wgl.LayerPlaneMask.yml", - "OpenTK.Graphics.Wgl.LayerPlaneMask.SwapOverlay3": "OpenTK.Graphics.Wgl.LayerPlaneMask.yml", - "OpenTK.Graphics.Wgl.LayerPlaneMask.SwapOverlay4": "OpenTK.Graphics.Wgl.LayerPlaneMask.yml", - "OpenTK.Graphics.Wgl.LayerPlaneMask.SwapOverlay5": "OpenTK.Graphics.Wgl.LayerPlaneMask.yml", - "OpenTK.Graphics.Wgl.LayerPlaneMask.SwapOverlay6": "OpenTK.Graphics.Wgl.LayerPlaneMask.yml", - "OpenTK.Graphics.Wgl.LayerPlaneMask.SwapOverlay7": "OpenTK.Graphics.Wgl.LayerPlaneMask.yml", - "OpenTK.Graphics.Wgl.LayerPlaneMask.SwapOverlay8": "OpenTK.Graphics.Wgl.LayerPlaneMask.yml", - "OpenTK.Graphics.Wgl.LayerPlaneMask.SwapOverlay9": "OpenTK.Graphics.Wgl.LayerPlaneMask.yml", - "OpenTK.Graphics.Wgl.LayerPlaneMask.SwapUnderlay1": "OpenTK.Graphics.Wgl.LayerPlaneMask.yml", - "OpenTK.Graphics.Wgl.LayerPlaneMask.SwapUnderlay10": "OpenTK.Graphics.Wgl.LayerPlaneMask.yml", - "OpenTK.Graphics.Wgl.LayerPlaneMask.SwapUnderlay11": "OpenTK.Graphics.Wgl.LayerPlaneMask.yml", - "OpenTK.Graphics.Wgl.LayerPlaneMask.SwapUnderlay12": "OpenTK.Graphics.Wgl.LayerPlaneMask.yml", - "OpenTK.Graphics.Wgl.LayerPlaneMask.SwapUnderlay13": "OpenTK.Graphics.Wgl.LayerPlaneMask.yml", - "OpenTK.Graphics.Wgl.LayerPlaneMask.SwapUnderlay14": "OpenTK.Graphics.Wgl.LayerPlaneMask.yml", - "OpenTK.Graphics.Wgl.LayerPlaneMask.SwapUnderlay15": "OpenTK.Graphics.Wgl.LayerPlaneMask.yml", - "OpenTK.Graphics.Wgl.LayerPlaneMask.SwapUnderlay2": "OpenTK.Graphics.Wgl.LayerPlaneMask.yml", - "OpenTK.Graphics.Wgl.LayerPlaneMask.SwapUnderlay3": "OpenTK.Graphics.Wgl.LayerPlaneMask.yml", - "OpenTK.Graphics.Wgl.LayerPlaneMask.SwapUnderlay4": "OpenTK.Graphics.Wgl.LayerPlaneMask.yml", - "OpenTK.Graphics.Wgl.LayerPlaneMask.SwapUnderlay5": "OpenTK.Graphics.Wgl.LayerPlaneMask.yml", - "OpenTK.Graphics.Wgl.LayerPlaneMask.SwapUnderlay6": "OpenTK.Graphics.Wgl.LayerPlaneMask.yml", - "OpenTK.Graphics.Wgl.LayerPlaneMask.SwapUnderlay7": "OpenTK.Graphics.Wgl.LayerPlaneMask.yml", - "OpenTK.Graphics.Wgl.LayerPlaneMask.SwapUnderlay8": "OpenTK.Graphics.Wgl.LayerPlaneMask.yml", - "OpenTK.Graphics.Wgl.LayerPlaneMask.SwapUnderlay9": "OpenTK.Graphics.Wgl.LayerPlaneMask.yml", - "OpenTK.Graphics.Wgl.ObjectTypeDX": "OpenTK.Graphics.Wgl.ObjectTypeDX.yml", - "OpenTK.Graphics.Wgl.ObjectTypeDX.None": "OpenTK.Graphics.Wgl.ObjectTypeDX.yml", - "OpenTK.Graphics.Wgl.ObjectTypeDX.Renderbuffer": "OpenTK.Graphics.Wgl.ObjectTypeDX.yml", - "OpenTK.Graphics.Wgl.ObjectTypeDX.Texture2d": "OpenTK.Graphics.Wgl.ObjectTypeDX.yml", - "OpenTK.Graphics.Wgl.ObjectTypeDX.Texture3d": "OpenTK.Graphics.Wgl.ObjectTypeDX.yml", - "OpenTK.Graphics.Wgl.ObjectTypeDX.TextureCubeMap": "OpenTK.Graphics.Wgl.ObjectTypeDX.yml", - "OpenTK.Graphics.Wgl.ObjectTypeDX.TextureRectangle": "OpenTK.Graphics.Wgl.ObjectTypeDX.yml", - "OpenTK.Graphics.Wgl.PBufferAttribute": "OpenTK.Graphics.Wgl.PBufferAttribute.yml", - "OpenTK.Graphics.Wgl.PBufferAttribute.CubeMapFaceArb": "OpenTK.Graphics.Wgl.PBufferAttribute.yml", - "OpenTK.Graphics.Wgl.PBufferAttribute.MipmapLevelArb": "OpenTK.Graphics.Wgl.PBufferAttribute.yml", - "OpenTK.Graphics.Wgl.PBufferAttribute.MipmapTextureArb": "OpenTK.Graphics.Wgl.PBufferAttribute.yml", - "OpenTK.Graphics.Wgl.PBufferAttribute.PbufferHeightArb": "OpenTK.Graphics.Wgl.PBufferAttribute.yml", - "OpenTK.Graphics.Wgl.PBufferAttribute.PbufferHeightExt": "OpenTK.Graphics.Wgl.PBufferAttribute.yml", - "OpenTK.Graphics.Wgl.PBufferAttribute.PbufferLostArb": "OpenTK.Graphics.Wgl.PBufferAttribute.yml", - "OpenTK.Graphics.Wgl.PBufferAttribute.PbufferWidthArb": "OpenTK.Graphics.Wgl.PBufferAttribute.yml", - "OpenTK.Graphics.Wgl.PBufferAttribute.PbufferWidthExt": "OpenTK.Graphics.Wgl.PBufferAttribute.yml", - "OpenTK.Graphics.Wgl.PBufferAttribute.TextureFormatArb": "OpenTK.Graphics.Wgl.PBufferAttribute.yml", - "OpenTK.Graphics.Wgl.PBufferAttribute.TextureTargetArb": "OpenTK.Graphics.Wgl.PBufferAttribute.yml", - "OpenTK.Graphics.Wgl.PBufferCubeMapFace": "OpenTK.Graphics.Wgl.PBufferCubeMapFace.yml", - "OpenTK.Graphics.Wgl.PBufferCubeMapFace.TextureCubeMapNegativeXArb": "OpenTK.Graphics.Wgl.PBufferCubeMapFace.yml", - "OpenTK.Graphics.Wgl.PBufferCubeMapFace.TextureCubeMapNegativeYArb": "OpenTK.Graphics.Wgl.PBufferCubeMapFace.yml", - "OpenTK.Graphics.Wgl.PBufferCubeMapFace.TextureCubeMapNegativeZArb": "OpenTK.Graphics.Wgl.PBufferCubeMapFace.yml", - "OpenTK.Graphics.Wgl.PBufferCubeMapFace.TextureCubeMapPositiveXArb": "OpenTK.Graphics.Wgl.PBufferCubeMapFace.yml", - "OpenTK.Graphics.Wgl.PBufferCubeMapFace.TextureCubeMapPositiveYArb": "OpenTK.Graphics.Wgl.PBufferCubeMapFace.yml", - "OpenTK.Graphics.Wgl.PBufferCubeMapFace.TextureCubeMapPositiveZArb": "OpenTK.Graphics.Wgl.PBufferCubeMapFace.yml", - "OpenTK.Graphics.Wgl.PBufferTextureFormat": "OpenTK.Graphics.Wgl.PBufferTextureFormat.yml", - "OpenTK.Graphics.Wgl.PBufferTextureFormat.NoTextureArb": "OpenTK.Graphics.Wgl.PBufferTextureFormat.yml", - "OpenTK.Graphics.Wgl.PBufferTextureFormat.TextureRgbArb": "OpenTK.Graphics.Wgl.PBufferTextureFormat.yml", - "OpenTK.Graphics.Wgl.PBufferTextureFormat.TextureRgbaArb": "OpenTK.Graphics.Wgl.PBufferTextureFormat.yml", - "OpenTK.Graphics.Wgl.PBufferTextureTarget": "OpenTK.Graphics.Wgl.PBufferTextureTarget.yml", - "OpenTK.Graphics.Wgl.PBufferTextureTarget.NoTextureArb": "OpenTK.Graphics.Wgl.PBufferTextureTarget.yml", - "OpenTK.Graphics.Wgl.PBufferTextureTarget.Texture1dArb": "OpenTK.Graphics.Wgl.PBufferTextureTarget.yml", - "OpenTK.Graphics.Wgl.PBufferTextureTarget.Texture2dArb": "OpenTK.Graphics.Wgl.PBufferTextureTarget.yml", - "OpenTK.Graphics.Wgl.PBufferTextureTarget.TextureCubeMapArb": "OpenTK.Graphics.Wgl.PBufferTextureTarget.yml", - "OpenTK.Graphics.Wgl.PixelFormatAttribute": "OpenTK.Graphics.Wgl.PixelFormatAttribute.yml", - "OpenTK.Graphics.Wgl.PixelFormatAttribute.AccelerationArb": "OpenTK.Graphics.Wgl.PixelFormatAttribute.yml", - "OpenTK.Graphics.Wgl.PixelFormatAttribute.AccelerationExt": "OpenTK.Graphics.Wgl.PixelFormatAttribute.yml", - "OpenTK.Graphics.Wgl.PixelFormatAttribute.AccumAlphaBitsArb": "OpenTK.Graphics.Wgl.PixelFormatAttribute.yml", - "OpenTK.Graphics.Wgl.PixelFormatAttribute.AccumAlphaBitsExt": "OpenTK.Graphics.Wgl.PixelFormatAttribute.yml", - "OpenTK.Graphics.Wgl.PixelFormatAttribute.AccumBitsArb": "OpenTK.Graphics.Wgl.PixelFormatAttribute.yml", - "OpenTK.Graphics.Wgl.PixelFormatAttribute.AccumBitsExt": "OpenTK.Graphics.Wgl.PixelFormatAttribute.yml", - "OpenTK.Graphics.Wgl.PixelFormatAttribute.AccumBlueBitsArb": "OpenTK.Graphics.Wgl.PixelFormatAttribute.yml", - "OpenTK.Graphics.Wgl.PixelFormatAttribute.AccumBlueBitsExt": "OpenTK.Graphics.Wgl.PixelFormatAttribute.yml", - "OpenTK.Graphics.Wgl.PixelFormatAttribute.AccumGreenBitsArb": "OpenTK.Graphics.Wgl.PixelFormatAttribute.yml", - "OpenTK.Graphics.Wgl.PixelFormatAttribute.AccumGreenBitsExt": "OpenTK.Graphics.Wgl.PixelFormatAttribute.yml", - "OpenTK.Graphics.Wgl.PixelFormatAttribute.AccumRedBitsArb": "OpenTK.Graphics.Wgl.PixelFormatAttribute.yml", - "OpenTK.Graphics.Wgl.PixelFormatAttribute.AccumRedBitsExt": "OpenTK.Graphics.Wgl.PixelFormatAttribute.yml", - "OpenTK.Graphics.Wgl.PixelFormatAttribute.AlphaBitsArb": "OpenTK.Graphics.Wgl.PixelFormatAttribute.yml", - "OpenTK.Graphics.Wgl.PixelFormatAttribute.AlphaBitsExt": "OpenTK.Graphics.Wgl.PixelFormatAttribute.yml", - "OpenTK.Graphics.Wgl.PixelFormatAttribute.AlphaShiftArb": "OpenTK.Graphics.Wgl.PixelFormatAttribute.yml", - "OpenTK.Graphics.Wgl.PixelFormatAttribute.AlphaShiftExt": "OpenTK.Graphics.Wgl.PixelFormatAttribute.yml", - "OpenTK.Graphics.Wgl.PixelFormatAttribute.AuxBuffersArb": "OpenTK.Graphics.Wgl.PixelFormatAttribute.yml", - "OpenTK.Graphics.Wgl.PixelFormatAttribute.AuxBuffersExt": "OpenTK.Graphics.Wgl.PixelFormatAttribute.yml", - "OpenTK.Graphics.Wgl.PixelFormatAttribute.BlueBitsArb": "OpenTK.Graphics.Wgl.PixelFormatAttribute.yml", - "OpenTK.Graphics.Wgl.PixelFormatAttribute.BlueBitsExt": "OpenTK.Graphics.Wgl.PixelFormatAttribute.yml", - "OpenTK.Graphics.Wgl.PixelFormatAttribute.BlueShiftArb": "OpenTK.Graphics.Wgl.PixelFormatAttribute.yml", - "OpenTK.Graphics.Wgl.PixelFormatAttribute.BlueShiftExt": "OpenTK.Graphics.Wgl.PixelFormatAttribute.yml", - "OpenTK.Graphics.Wgl.PixelFormatAttribute.ColorBitsArb": "OpenTK.Graphics.Wgl.PixelFormatAttribute.yml", - "OpenTK.Graphics.Wgl.PixelFormatAttribute.ColorBitsExt": "OpenTK.Graphics.Wgl.PixelFormatAttribute.yml", - "OpenTK.Graphics.Wgl.PixelFormatAttribute.DepthBitsArb": "OpenTK.Graphics.Wgl.PixelFormatAttribute.yml", - "OpenTK.Graphics.Wgl.PixelFormatAttribute.DepthBitsExt": "OpenTK.Graphics.Wgl.PixelFormatAttribute.yml", - "OpenTK.Graphics.Wgl.PixelFormatAttribute.DoubleBufferArb": "OpenTK.Graphics.Wgl.PixelFormatAttribute.yml", - "OpenTK.Graphics.Wgl.PixelFormatAttribute.DoubleBufferExt": "OpenTK.Graphics.Wgl.PixelFormatAttribute.yml", - "OpenTK.Graphics.Wgl.PixelFormatAttribute.DrawToBitmapArb": "OpenTK.Graphics.Wgl.PixelFormatAttribute.yml", - "OpenTK.Graphics.Wgl.PixelFormatAttribute.DrawToBitmapExt": "OpenTK.Graphics.Wgl.PixelFormatAttribute.yml", - "OpenTK.Graphics.Wgl.PixelFormatAttribute.DrawToPbufferArb": "OpenTK.Graphics.Wgl.PixelFormatAttribute.yml", - "OpenTK.Graphics.Wgl.PixelFormatAttribute.DrawToPbufferExt": "OpenTK.Graphics.Wgl.PixelFormatAttribute.yml", - "OpenTK.Graphics.Wgl.PixelFormatAttribute.DrawToWindowArb": "OpenTK.Graphics.Wgl.PixelFormatAttribute.yml", - "OpenTK.Graphics.Wgl.PixelFormatAttribute.DrawToWindowExt": "OpenTK.Graphics.Wgl.PixelFormatAttribute.yml", - "OpenTK.Graphics.Wgl.PixelFormatAttribute.FramebufferSrgbCapableArb": "OpenTK.Graphics.Wgl.PixelFormatAttribute.yml", - "OpenTK.Graphics.Wgl.PixelFormatAttribute.FramebufferSrgbCapableExt": "OpenTK.Graphics.Wgl.PixelFormatAttribute.yml", - "OpenTK.Graphics.Wgl.PixelFormatAttribute.GreenBitsArb": "OpenTK.Graphics.Wgl.PixelFormatAttribute.yml", - "OpenTK.Graphics.Wgl.PixelFormatAttribute.GreenBitsExt": "OpenTK.Graphics.Wgl.PixelFormatAttribute.yml", - "OpenTK.Graphics.Wgl.PixelFormatAttribute.GreenShiftArb": "OpenTK.Graphics.Wgl.PixelFormatAttribute.yml", - "OpenTK.Graphics.Wgl.PixelFormatAttribute.GreenShiftExt": "OpenTK.Graphics.Wgl.PixelFormatAttribute.yml", - "OpenTK.Graphics.Wgl.PixelFormatAttribute.NeedPaletteArb": "OpenTK.Graphics.Wgl.PixelFormatAttribute.yml", - "OpenTK.Graphics.Wgl.PixelFormatAttribute.NeedPaletteExt": "OpenTK.Graphics.Wgl.PixelFormatAttribute.yml", - "OpenTK.Graphics.Wgl.PixelFormatAttribute.NeedSystemPaletteArb": "OpenTK.Graphics.Wgl.PixelFormatAttribute.yml", - "OpenTK.Graphics.Wgl.PixelFormatAttribute.NeedSystemPaletteExt": "OpenTK.Graphics.Wgl.PixelFormatAttribute.yml", - "OpenTK.Graphics.Wgl.PixelFormatAttribute.NumberOverlaysArb": "OpenTK.Graphics.Wgl.PixelFormatAttribute.yml", - "OpenTK.Graphics.Wgl.PixelFormatAttribute.NumberOverlaysExt": "OpenTK.Graphics.Wgl.PixelFormatAttribute.yml", - "OpenTK.Graphics.Wgl.PixelFormatAttribute.NumberPixelFormatsArb": "OpenTK.Graphics.Wgl.PixelFormatAttribute.yml", - "OpenTK.Graphics.Wgl.PixelFormatAttribute.NumberPixelFormatsExt": "OpenTK.Graphics.Wgl.PixelFormatAttribute.yml", - "OpenTK.Graphics.Wgl.PixelFormatAttribute.NumberUnderlaysArb": "OpenTK.Graphics.Wgl.PixelFormatAttribute.yml", - "OpenTK.Graphics.Wgl.PixelFormatAttribute.NumberUnderlaysExt": "OpenTK.Graphics.Wgl.PixelFormatAttribute.yml", - "OpenTK.Graphics.Wgl.PixelFormatAttribute.PixelTypeArb": "OpenTK.Graphics.Wgl.PixelFormatAttribute.yml", - "OpenTK.Graphics.Wgl.PixelFormatAttribute.PixelTypeExt": "OpenTK.Graphics.Wgl.PixelFormatAttribute.yml", - "OpenTK.Graphics.Wgl.PixelFormatAttribute.RedBitsArb": "OpenTK.Graphics.Wgl.PixelFormatAttribute.yml", - "OpenTK.Graphics.Wgl.PixelFormatAttribute.RedBitsExt": "OpenTK.Graphics.Wgl.PixelFormatAttribute.yml", - "OpenTK.Graphics.Wgl.PixelFormatAttribute.RedShiftArb": "OpenTK.Graphics.Wgl.PixelFormatAttribute.yml", - "OpenTK.Graphics.Wgl.PixelFormatAttribute.RedShiftExt": "OpenTK.Graphics.Wgl.PixelFormatAttribute.yml", - "OpenTK.Graphics.Wgl.PixelFormatAttribute.SamplesArb": "OpenTK.Graphics.Wgl.PixelFormatAttribute.yml", - "OpenTK.Graphics.Wgl.PixelFormatAttribute.SamplesExt": "OpenTK.Graphics.Wgl.PixelFormatAttribute.yml", - "OpenTK.Graphics.Wgl.PixelFormatAttribute.ShareAccumArb": "OpenTK.Graphics.Wgl.PixelFormatAttribute.yml", - "OpenTK.Graphics.Wgl.PixelFormatAttribute.ShareAccumExt": "OpenTK.Graphics.Wgl.PixelFormatAttribute.yml", - "OpenTK.Graphics.Wgl.PixelFormatAttribute.ShareDepthArb": "OpenTK.Graphics.Wgl.PixelFormatAttribute.yml", - "OpenTK.Graphics.Wgl.PixelFormatAttribute.ShareDepthExt": "OpenTK.Graphics.Wgl.PixelFormatAttribute.yml", - "OpenTK.Graphics.Wgl.PixelFormatAttribute.ShareStencilArb": "OpenTK.Graphics.Wgl.PixelFormatAttribute.yml", - "OpenTK.Graphics.Wgl.PixelFormatAttribute.ShareStencilExt": "OpenTK.Graphics.Wgl.PixelFormatAttribute.yml", - "OpenTK.Graphics.Wgl.PixelFormatAttribute.StencilBitsArb": "OpenTK.Graphics.Wgl.PixelFormatAttribute.yml", - "OpenTK.Graphics.Wgl.PixelFormatAttribute.StencilBitsExt": "OpenTK.Graphics.Wgl.PixelFormatAttribute.yml", - "OpenTK.Graphics.Wgl.PixelFormatAttribute.StereoArb": "OpenTK.Graphics.Wgl.PixelFormatAttribute.yml", - "OpenTK.Graphics.Wgl.PixelFormatAttribute.StereoExt": "OpenTK.Graphics.Wgl.PixelFormatAttribute.yml", - "OpenTK.Graphics.Wgl.PixelFormatAttribute.SupportGdiArb": "OpenTK.Graphics.Wgl.PixelFormatAttribute.yml", - "OpenTK.Graphics.Wgl.PixelFormatAttribute.SupportGdiExt": "OpenTK.Graphics.Wgl.PixelFormatAttribute.yml", - "OpenTK.Graphics.Wgl.PixelFormatAttribute.SupportOpenglArb": "OpenTK.Graphics.Wgl.PixelFormatAttribute.yml", - "OpenTK.Graphics.Wgl.PixelFormatAttribute.SupportOpenglExt": "OpenTK.Graphics.Wgl.PixelFormatAttribute.yml", - "OpenTK.Graphics.Wgl.PixelFormatAttribute.SwapLayerBuffersArb": "OpenTK.Graphics.Wgl.PixelFormatAttribute.yml", - "OpenTK.Graphics.Wgl.PixelFormatAttribute.SwapLayerBuffersExt": "OpenTK.Graphics.Wgl.PixelFormatAttribute.yml", - "OpenTK.Graphics.Wgl.PixelFormatAttribute.SwapMethodArb": "OpenTK.Graphics.Wgl.PixelFormatAttribute.yml", - "OpenTK.Graphics.Wgl.PixelFormatAttribute.SwapMethodExt": "OpenTK.Graphics.Wgl.PixelFormatAttribute.yml", - "OpenTK.Graphics.Wgl.PixelFormatAttribute.TransparentAlphaValueArb": "OpenTK.Graphics.Wgl.PixelFormatAttribute.yml", - "OpenTK.Graphics.Wgl.PixelFormatAttribute.TransparentArb": "OpenTK.Graphics.Wgl.PixelFormatAttribute.yml", - "OpenTK.Graphics.Wgl.PixelFormatAttribute.TransparentBlueValueArb": "OpenTK.Graphics.Wgl.PixelFormatAttribute.yml", - "OpenTK.Graphics.Wgl.PixelFormatAttribute.TransparentExt": "OpenTK.Graphics.Wgl.PixelFormatAttribute.yml", - "OpenTK.Graphics.Wgl.PixelFormatAttribute.TransparentGreenValueArb": "OpenTK.Graphics.Wgl.PixelFormatAttribute.yml", - "OpenTK.Graphics.Wgl.PixelFormatAttribute.TransparentIndexValueArb": "OpenTK.Graphics.Wgl.PixelFormatAttribute.yml", - "OpenTK.Graphics.Wgl.PixelFormatAttribute.TransparentRedValueArb": "OpenTK.Graphics.Wgl.PixelFormatAttribute.yml", - "OpenTK.Graphics.Wgl.PixelFormatDescriptor": "OpenTK.Graphics.Wgl.PixelFormatDescriptor.yml", - "OpenTK.Graphics.Wgl.PixelFormatDescriptor.bReserved": "OpenTK.Graphics.Wgl.PixelFormatDescriptor.yml", - "OpenTK.Graphics.Wgl.PixelFormatDescriptor.cAccumAlphaBits": "OpenTK.Graphics.Wgl.PixelFormatDescriptor.yml", - "OpenTK.Graphics.Wgl.PixelFormatDescriptor.cAccumBits": "OpenTK.Graphics.Wgl.PixelFormatDescriptor.yml", - "OpenTK.Graphics.Wgl.PixelFormatDescriptor.cAccumBlueBits": "OpenTK.Graphics.Wgl.PixelFormatDescriptor.yml", - "OpenTK.Graphics.Wgl.PixelFormatDescriptor.cAccumGreenBits": "OpenTK.Graphics.Wgl.PixelFormatDescriptor.yml", - "OpenTK.Graphics.Wgl.PixelFormatDescriptor.cAccumRedBits": "OpenTK.Graphics.Wgl.PixelFormatDescriptor.yml", - "OpenTK.Graphics.Wgl.PixelFormatDescriptor.cAlphaBits": "OpenTK.Graphics.Wgl.PixelFormatDescriptor.yml", - "OpenTK.Graphics.Wgl.PixelFormatDescriptor.cAlphaShift": "OpenTK.Graphics.Wgl.PixelFormatDescriptor.yml", - "OpenTK.Graphics.Wgl.PixelFormatDescriptor.cAuxBuffers": "OpenTK.Graphics.Wgl.PixelFormatDescriptor.yml", - "OpenTK.Graphics.Wgl.PixelFormatDescriptor.cBlueBits": "OpenTK.Graphics.Wgl.PixelFormatDescriptor.yml", - "OpenTK.Graphics.Wgl.PixelFormatDescriptor.cBlueShift": "OpenTK.Graphics.Wgl.PixelFormatDescriptor.yml", - "OpenTK.Graphics.Wgl.PixelFormatDescriptor.cColorBits": "OpenTK.Graphics.Wgl.PixelFormatDescriptor.yml", - "OpenTK.Graphics.Wgl.PixelFormatDescriptor.cDepthBits": "OpenTK.Graphics.Wgl.PixelFormatDescriptor.yml", - "OpenTK.Graphics.Wgl.PixelFormatDescriptor.cGreenBits": "OpenTK.Graphics.Wgl.PixelFormatDescriptor.yml", - "OpenTK.Graphics.Wgl.PixelFormatDescriptor.cGreenShift": "OpenTK.Graphics.Wgl.PixelFormatDescriptor.yml", - "OpenTK.Graphics.Wgl.PixelFormatDescriptor.cRedBits": "OpenTK.Graphics.Wgl.PixelFormatDescriptor.yml", - "OpenTK.Graphics.Wgl.PixelFormatDescriptor.cRedShift": "OpenTK.Graphics.Wgl.PixelFormatDescriptor.yml", - "OpenTK.Graphics.Wgl.PixelFormatDescriptor.cStencilBits": "OpenTK.Graphics.Wgl.PixelFormatDescriptor.yml", - "OpenTK.Graphics.Wgl.PixelFormatDescriptor.dwDamageMask": "OpenTK.Graphics.Wgl.PixelFormatDescriptor.yml", - "OpenTK.Graphics.Wgl.PixelFormatDescriptor.dwFlags": "OpenTK.Graphics.Wgl.PixelFormatDescriptor.yml", - "OpenTK.Graphics.Wgl.PixelFormatDescriptor.dwLayerMask": "OpenTK.Graphics.Wgl.PixelFormatDescriptor.yml", - "OpenTK.Graphics.Wgl.PixelFormatDescriptor.dwVisibleMask": "OpenTK.Graphics.Wgl.PixelFormatDescriptor.yml", - "OpenTK.Graphics.Wgl.PixelFormatDescriptor.iLayerType": "OpenTK.Graphics.Wgl.PixelFormatDescriptor.yml", - "OpenTK.Graphics.Wgl.PixelFormatDescriptor.iPixelType": "OpenTK.Graphics.Wgl.PixelFormatDescriptor.yml", - "OpenTK.Graphics.Wgl.PixelFormatDescriptor.nSize": "OpenTK.Graphics.Wgl.PixelFormatDescriptor.yml", - "OpenTK.Graphics.Wgl.PixelFormatDescriptor.nVersion": "OpenTK.Graphics.Wgl.PixelFormatDescriptor.yml", - "OpenTK.Graphics.Wgl.PixelType": "OpenTK.Graphics.Wgl.PixelType.yml", - "OpenTK.Graphics.Wgl.PixelType.TypeColorindexArb": "OpenTK.Graphics.Wgl.PixelType.yml", - "OpenTK.Graphics.Wgl.PixelType.TypeColorindexExt": "OpenTK.Graphics.Wgl.PixelType.yml", - "OpenTK.Graphics.Wgl.PixelType.TypeRgbaArb": "OpenTK.Graphics.Wgl.PixelType.yml", - "OpenTK.Graphics.Wgl.PixelType.TypeRgbaExt": "OpenTK.Graphics.Wgl.PixelType.yml", - "OpenTK.Graphics.Wgl.Rect": "OpenTK.Graphics.Wgl.Rect.yml", - "OpenTK.Graphics.Wgl.Rect.Bottom": "OpenTK.Graphics.Wgl.Rect.yml", - "OpenTK.Graphics.Wgl.Rect.Left": "OpenTK.Graphics.Wgl.Rect.yml", - "OpenTK.Graphics.Wgl.Rect.Right": "OpenTK.Graphics.Wgl.Rect.yml", - "OpenTK.Graphics.Wgl.Rect.Top": "OpenTK.Graphics.Wgl.Rect.yml", - "OpenTK.Graphics.Wgl.StereoEmitterState": "OpenTK.Graphics.Wgl.StereoEmitterState.yml", - "OpenTK.Graphics.Wgl.StereoEmitterState.StereoEmitterDisable3dl": "OpenTK.Graphics.Wgl.StereoEmitterState.yml", - "OpenTK.Graphics.Wgl.StereoEmitterState.StereoEmitterEnable3dl": "OpenTK.Graphics.Wgl.StereoEmitterState.yml", - "OpenTK.Graphics.Wgl.StereoEmitterState.StereoPolarityInvert3dl": "OpenTK.Graphics.Wgl.StereoEmitterState.yml", - "OpenTK.Graphics.Wgl.StereoEmitterState.StereoPolarityNormal3dl": "OpenTK.Graphics.Wgl.StereoEmitterState.yml", - "OpenTK.Graphics.Wgl.SwapMethod": "OpenTK.Graphics.Wgl.SwapMethod.yml", - "OpenTK.Graphics.Wgl.SwapMethod.SwapCopyArb": "OpenTK.Graphics.Wgl.SwapMethod.yml", - "OpenTK.Graphics.Wgl.SwapMethod.SwapCopyExt": "OpenTK.Graphics.Wgl.SwapMethod.yml", - "OpenTK.Graphics.Wgl.SwapMethod.SwapExchangeArb": "OpenTK.Graphics.Wgl.SwapMethod.yml", - "OpenTK.Graphics.Wgl.SwapMethod.SwapExchangeExt": "OpenTK.Graphics.Wgl.SwapMethod.yml", - "OpenTK.Graphics.Wgl.SwapMethod.SwapUndefinedArb": "OpenTK.Graphics.Wgl.SwapMethod.yml", - "OpenTK.Graphics.Wgl.SwapMethod.SwapUndefinedExt": "OpenTK.Graphics.Wgl.SwapMethod.yml", - "OpenTK.Graphics.Wgl.VideoCaptureDeviceAttribute": "OpenTK.Graphics.Wgl.VideoCaptureDeviceAttribute.yml", - "OpenTK.Graphics.Wgl.VideoCaptureDeviceAttribute.UniqueIdNv": "OpenTK.Graphics.Wgl.VideoCaptureDeviceAttribute.yml", - "OpenTK.Graphics.Wgl.VideoOutputBuffer": "OpenTK.Graphics.Wgl.VideoOutputBuffer.yml", - "OpenTK.Graphics.Wgl.VideoOutputBuffer.VideoOutAlphaNv": "OpenTK.Graphics.Wgl.VideoOutputBuffer.yml", - "OpenTK.Graphics.Wgl.VideoOutputBuffer.VideoOutColorAndAlphaNv": "OpenTK.Graphics.Wgl.VideoOutputBuffer.yml", - "OpenTK.Graphics.Wgl.VideoOutputBuffer.VideoOutColorAndDepthNv": "OpenTK.Graphics.Wgl.VideoOutputBuffer.yml", - "OpenTK.Graphics.Wgl.VideoOutputBuffer.VideoOutColorNv": "OpenTK.Graphics.Wgl.VideoOutputBuffer.yml", - "OpenTK.Graphics.Wgl.VideoOutputBuffer.VideoOutDepthNv": "OpenTK.Graphics.Wgl.VideoOutputBuffer.yml", - "OpenTK.Graphics.Wgl.VideoOutputBufferType": "OpenTK.Graphics.Wgl.VideoOutputBufferType.yml", - "OpenTK.Graphics.Wgl.VideoOutputBufferType.VideoOutField1": "OpenTK.Graphics.Wgl.VideoOutputBufferType.yml", - "OpenTK.Graphics.Wgl.VideoOutputBufferType.VideoOutField2": "OpenTK.Graphics.Wgl.VideoOutputBufferType.yml", - "OpenTK.Graphics.Wgl.VideoOutputBufferType.VideoOutFrame": "OpenTK.Graphics.Wgl.VideoOutputBufferType.yml", - "OpenTK.Graphics.Wgl.VideoOutputBufferType.VideoOutStackedFields12": "OpenTK.Graphics.Wgl.VideoOutputBufferType.yml", - "OpenTK.Graphics.Wgl.VideoOutputBufferType.VideoOutStackedFields21": "OpenTK.Graphics.Wgl.VideoOutputBufferType.yml", - "OpenTK.Graphics.Wgl.Wgl": "OpenTK.Graphics.Wgl.Wgl.yml", - "OpenTK.Graphics.Wgl.Wgl.AMD": "OpenTK.Graphics.Wgl.Wgl.AMD.yml", - "OpenTK.Graphics.Wgl.Wgl.AMD.BlitContextFramebufferAMD(System.IntPtr,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,OpenTK.Graphics.OpenGL.ClearBufferMask,OpenTK.Graphics.Wgl.All)": "OpenTK.Graphics.Wgl.Wgl.AMD.yml", - "OpenTK.Graphics.Wgl.Wgl.AMD.CreateAssociatedContextAMD(System.UInt32)": "OpenTK.Graphics.Wgl.Wgl.AMD.yml", - "OpenTK.Graphics.Wgl.Wgl.AMD.CreateAssociatedContextAttribsAMD(System.UInt32,System.IntPtr,System.Int32*)": "OpenTK.Graphics.Wgl.Wgl.AMD.yml", - "OpenTK.Graphics.Wgl.Wgl.AMD.CreateAssociatedContextAttribsAMD(System.UInt32,System.IntPtr,System.Int32@)": "OpenTK.Graphics.Wgl.Wgl.AMD.yml", - "OpenTK.Graphics.Wgl.Wgl.AMD.CreateAssociatedContextAttribsAMD(System.UInt32,System.IntPtr,System.Int32[])": "OpenTK.Graphics.Wgl.Wgl.AMD.yml", - "OpenTK.Graphics.Wgl.Wgl.AMD.CreateAssociatedContextAttribsAMD(System.UInt32,System.IntPtr,System.ReadOnlySpan{System.Int32})": "OpenTK.Graphics.Wgl.Wgl.AMD.yml", - "OpenTK.Graphics.Wgl.Wgl.AMD.DeleteAssociatedContextAMD(System.IntPtr)": "OpenTK.Graphics.Wgl.Wgl.AMD.yml", - "OpenTK.Graphics.Wgl.Wgl.AMD.DeleteAssociatedContextAMD_(System.IntPtr)": "OpenTK.Graphics.Wgl.Wgl.AMD.yml", - "OpenTK.Graphics.Wgl.Wgl.AMD.GetContextGPUIDAMD(System.IntPtr)": "OpenTK.Graphics.Wgl.Wgl.AMD.yml", - "OpenTK.Graphics.Wgl.Wgl.AMD.GetCurrentAssociatedContextAMD": "OpenTK.Graphics.Wgl.Wgl.AMD.yml", - "OpenTK.Graphics.Wgl.Wgl.AMD.GetGPUIDsAMD(System.UInt32,System.Span{System.UInt32})": "OpenTK.Graphics.Wgl.Wgl.AMD.yml", - "OpenTK.Graphics.Wgl.Wgl.AMD.GetGPUIDsAMD(System.UInt32,System.UInt32*)": "OpenTK.Graphics.Wgl.Wgl.AMD.yml", - "OpenTK.Graphics.Wgl.Wgl.AMD.GetGPUIDsAMD(System.UInt32,System.UInt32@)": "OpenTK.Graphics.Wgl.Wgl.AMD.yml", - "OpenTK.Graphics.Wgl.Wgl.AMD.GetGPUIDsAMD(System.UInt32,System.UInt32[])": "OpenTK.Graphics.Wgl.Wgl.AMD.yml", - "OpenTK.Graphics.Wgl.Wgl.AMD.GetGPUInfoAMD(System.UInt32,OpenTK.Graphics.Wgl.GPUPropertyAMD,OpenTK.Graphics.OpenGL.ScalarType,System.UInt32,System.IntPtr)": "OpenTK.Graphics.Wgl.Wgl.AMD.yml", - "OpenTK.Graphics.Wgl.Wgl.AMD.GetGPUInfoAMD(System.UInt32,OpenTK.Graphics.Wgl.GPUPropertyAMD,OpenTK.Graphics.OpenGL.ScalarType,System.UInt32,System.Void*)": "OpenTK.Graphics.Wgl.Wgl.AMD.yml", - "OpenTK.Graphics.Wgl.Wgl.AMD.GetGPUInfoAMD``1(System.UInt32,OpenTK.Graphics.Wgl.GPUPropertyAMD,OpenTK.Graphics.OpenGL.ScalarType,System.UInt32,System.Span{``0})": "OpenTK.Graphics.Wgl.Wgl.AMD.yml", - "OpenTK.Graphics.Wgl.Wgl.AMD.GetGPUInfoAMD``1(System.UInt32,OpenTK.Graphics.Wgl.GPUPropertyAMD,OpenTK.Graphics.OpenGL.ScalarType,System.UInt32,``0@)": "OpenTK.Graphics.Wgl.Wgl.AMD.yml", - "OpenTK.Graphics.Wgl.Wgl.AMD.GetGPUInfoAMD``1(System.UInt32,OpenTK.Graphics.Wgl.GPUPropertyAMD,OpenTK.Graphics.OpenGL.ScalarType,System.UInt32,``0[])": "OpenTK.Graphics.Wgl.Wgl.AMD.yml", - "OpenTK.Graphics.Wgl.Wgl.AMD.MakeAssociatedContextCurrentAMD(System.IntPtr)": "OpenTK.Graphics.Wgl.Wgl.AMD.yml", - "OpenTK.Graphics.Wgl.Wgl.AMD.MakeAssociatedContextCurrentAMD_(System.IntPtr)": "OpenTK.Graphics.Wgl.Wgl.AMD.yml", - "OpenTK.Graphics.Wgl.Wgl.ARB": "OpenTK.Graphics.Wgl.Wgl.ARB.yml", - "OpenTK.Graphics.Wgl.Wgl.ARB.BindTexImageARB(System.IntPtr,OpenTK.Graphics.Wgl.ColorBuffer)": "OpenTK.Graphics.Wgl.Wgl.ARB.yml", - "OpenTK.Graphics.Wgl.Wgl.ARB.BindTexImageARB_(System.IntPtr,OpenTK.Graphics.Wgl.ColorBuffer)": "OpenTK.Graphics.Wgl.Wgl.ARB.yml", - "OpenTK.Graphics.Wgl.Wgl.ARB.ChoosePixelFormatARB(System.IntPtr,OpenTK.Graphics.Wgl.PixelFormatAttribute*,System.Single*,System.UInt32,System.Int32*,System.UInt32*)": "OpenTK.Graphics.Wgl.Wgl.ARB.yml", - "OpenTK.Graphics.Wgl.Wgl.ARB.ChoosePixelFormatARB(System.IntPtr,OpenTK.Graphics.Wgl.PixelFormatAttribute@,System.Single@,System.UInt32,System.Int32@,System.UInt32@)": "OpenTK.Graphics.Wgl.Wgl.ARB.yml", - "OpenTK.Graphics.Wgl.Wgl.ARB.ChoosePixelFormatARB(System.IntPtr,OpenTK.Graphics.Wgl.PixelFormatAttribute[],System.Single[],System.UInt32,System.Int32[],System.UInt32@)": "OpenTK.Graphics.Wgl.Wgl.ARB.yml", - "OpenTK.Graphics.Wgl.Wgl.ARB.ChoosePixelFormatARB(System.IntPtr,System.ReadOnlySpan{OpenTK.Graphics.Wgl.PixelFormatAttribute},System.ReadOnlySpan{System.Single},System.UInt32,System.Span{System.Int32},System.UInt32@)": "OpenTK.Graphics.Wgl.Wgl.ARB.yml", - "OpenTK.Graphics.Wgl.Wgl.ARB.CreateBufferRegionARB(System.IntPtr,System.Int32,OpenTK.Graphics.Wgl.ColorBufferMask)": "OpenTK.Graphics.Wgl.Wgl.ARB.yml", - "OpenTK.Graphics.Wgl.Wgl.ARB.CreateContextAttribsARB(System.IntPtr,System.IntPtr,OpenTK.Graphics.Wgl.ContextAttribs*)": "OpenTK.Graphics.Wgl.Wgl.ARB.yml", - "OpenTK.Graphics.Wgl.Wgl.ARB.CreateContextAttribsARB(System.IntPtr,System.IntPtr,OpenTK.Graphics.Wgl.ContextAttribs@)": "OpenTK.Graphics.Wgl.Wgl.ARB.yml", - "OpenTK.Graphics.Wgl.Wgl.ARB.CreateContextAttribsARB(System.IntPtr,System.IntPtr,OpenTK.Graphics.Wgl.ContextAttribs[])": "OpenTK.Graphics.Wgl.Wgl.ARB.yml", - "OpenTK.Graphics.Wgl.Wgl.ARB.CreateContextAttribsARB(System.IntPtr,System.IntPtr,System.ReadOnlySpan{OpenTK.Graphics.Wgl.ContextAttribs})": "OpenTK.Graphics.Wgl.Wgl.ARB.yml", - "OpenTK.Graphics.Wgl.Wgl.ARB.CreatePbufferARB(System.IntPtr,System.Int32,System.Int32,System.Int32,System.Int32*)": "OpenTK.Graphics.Wgl.Wgl.ARB.yml", - "OpenTK.Graphics.Wgl.Wgl.ARB.CreatePbufferARB(System.IntPtr,System.Int32,System.Int32,System.Int32,System.Int32@)": "OpenTK.Graphics.Wgl.Wgl.ARB.yml", - "OpenTK.Graphics.Wgl.Wgl.ARB.CreatePbufferARB(System.IntPtr,System.Int32,System.Int32,System.Int32,System.Int32[])": "OpenTK.Graphics.Wgl.Wgl.ARB.yml", - "OpenTK.Graphics.Wgl.Wgl.ARB.CreatePbufferARB(System.IntPtr,System.Int32,System.Int32,System.Int32,System.ReadOnlySpan{System.Int32})": "OpenTK.Graphics.Wgl.Wgl.ARB.yml", - "OpenTK.Graphics.Wgl.Wgl.ARB.DeleteBufferRegionARB(System.IntPtr)": "OpenTK.Graphics.Wgl.Wgl.ARB.yml", - "OpenTK.Graphics.Wgl.Wgl.ARB.DestroyPbufferARB(System.IntPtr)": "OpenTK.Graphics.Wgl.Wgl.ARB.yml", - "OpenTK.Graphics.Wgl.Wgl.ARB.DestroyPbufferARB_(System.IntPtr)": "OpenTK.Graphics.Wgl.Wgl.ARB.yml", - "OpenTK.Graphics.Wgl.Wgl.ARB.GetCurrentReadDCARB": "OpenTK.Graphics.Wgl.Wgl.ARB.yml", - "OpenTK.Graphics.Wgl.Wgl.ARB.GetExtensionsStringARB(System.IntPtr)": "OpenTK.Graphics.Wgl.Wgl.ARB.yml", - "OpenTK.Graphics.Wgl.Wgl.ARB.GetExtensionsStringARB_(System.IntPtr)": "OpenTK.Graphics.Wgl.Wgl.ARB.yml", - "OpenTK.Graphics.Wgl.Wgl.ARB.GetPbufferDCARB(System.IntPtr)": "OpenTK.Graphics.Wgl.Wgl.ARB.yml", - "OpenTK.Graphics.Wgl.Wgl.ARB.GetPixelFormatAttribfvARB(System.IntPtr,System.Int32,System.Int32,System.UInt32,OpenTK.Graphics.Wgl.PixelFormatAttribute*,System.Single*)": "OpenTK.Graphics.Wgl.Wgl.ARB.yml", - "OpenTK.Graphics.Wgl.Wgl.ARB.GetPixelFormatAttribfvARB(System.IntPtr,System.Int32,System.Int32,System.UInt32,OpenTK.Graphics.Wgl.PixelFormatAttribute@,System.Single@)": "OpenTK.Graphics.Wgl.Wgl.ARB.yml", - "OpenTK.Graphics.Wgl.Wgl.ARB.GetPixelFormatAttribfvARB(System.IntPtr,System.Int32,System.Int32,System.UInt32,OpenTK.Graphics.Wgl.PixelFormatAttribute[],System.Single[])": "OpenTK.Graphics.Wgl.Wgl.ARB.yml", - "OpenTK.Graphics.Wgl.Wgl.ARB.GetPixelFormatAttribfvARB(System.IntPtr,System.Int32,System.Int32,System.UInt32,System.ReadOnlySpan{OpenTK.Graphics.Wgl.PixelFormatAttribute},System.Span{System.Single})": "OpenTK.Graphics.Wgl.Wgl.ARB.yml", - "OpenTK.Graphics.Wgl.Wgl.ARB.GetPixelFormatAttribivARB(System.IntPtr,System.Int32,System.Int32,System.UInt32,OpenTK.Graphics.Wgl.PixelFormatAttribute*,System.Int32*)": "OpenTK.Graphics.Wgl.Wgl.ARB.yml", - "OpenTK.Graphics.Wgl.Wgl.ARB.GetPixelFormatAttribivARB(System.IntPtr,System.Int32,System.Int32,System.UInt32,OpenTK.Graphics.Wgl.PixelFormatAttribute@,System.Int32@)": "OpenTK.Graphics.Wgl.Wgl.ARB.yml", - "OpenTK.Graphics.Wgl.Wgl.ARB.GetPixelFormatAttribivARB(System.IntPtr,System.Int32,System.Int32,System.UInt32,OpenTK.Graphics.Wgl.PixelFormatAttribute[],System.Int32[])": "OpenTK.Graphics.Wgl.Wgl.ARB.yml", - "OpenTK.Graphics.Wgl.Wgl.ARB.GetPixelFormatAttribivARB(System.IntPtr,System.Int32,System.Int32,System.UInt32,System.ReadOnlySpan{OpenTK.Graphics.Wgl.PixelFormatAttribute},System.Span{System.Int32})": "OpenTK.Graphics.Wgl.Wgl.ARB.yml", - "OpenTK.Graphics.Wgl.Wgl.ARB.MakeContextCurrentARB(System.IntPtr,System.IntPtr,System.IntPtr)": "OpenTK.Graphics.Wgl.Wgl.ARB.yml", - "OpenTK.Graphics.Wgl.Wgl.ARB.MakeContextCurrentARB_(System.IntPtr,System.IntPtr,System.IntPtr)": "OpenTK.Graphics.Wgl.Wgl.ARB.yml", - "OpenTK.Graphics.Wgl.Wgl.ARB.QueryPbufferARB(System.IntPtr,OpenTK.Graphics.Wgl.PBufferAttribute,System.Int32*)": "OpenTK.Graphics.Wgl.Wgl.ARB.yml", - "OpenTK.Graphics.Wgl.Wgl.ARB.QueryPbufferARB(System.IntPtr,OpenTK.Graphics.Wgl.PBufferAttribute,System.Int32@)": "OpenTK.Graphics.Wgl.Wgl.ARB.yml", - "OpenTK.Graphics.Wgl.Wgl.ARB.ReleasePbufferDCARB(System.IntPtr,System.IntPtr)": "OpenTK.Graphics.Wgl.Wgl.ARB.yml", - "OpenTK.Graphics.Wgl.Wgl.ARB.ReleaseTexImageARB(System.IntPtr,OpenTK.Graphics.Wgl.ColorBuffer)": "OpenTK.Graphics.Wgl.Wgl.ARB.yml", - "OpenTK.Graphics.Wgl.Wgl.ARB.ReleaseTexImageARB_(System.IntPtr,OpenTK.Graphics.Wgl.ColorBuffer)": "OpenTK.Graphics.Wgl.Wgl.ARB.yml", - "OpenTK.Graphics.Wgl.Wgl.ARB.RestoreBufferRegionARB(System.IntPtr,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)": "OpenTK.Graphics.Wgl.Wgl.ARB.yml", - "OpenTK.Graphics.Wgl.Wgl.ARB.RestoreBufferRegionARB_(System.IntPtr,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)": "OpenTK.Graphics.Wgl.Wgl.ARB.yml", - "OpenTK.Graphics.Wgl.Wgl.ARB.SaveBufferRegionARB(System.IntPtr,System.Int32,System.Int32,System.Int32,System.Int32)": "OpenTK.Graphics.Wgl.Wgl.ARB.yml", - "OpenTK.Graphics.Wgl.Wgl.ARB.SaveBufferRegionARB_(System.IntPtr,System.Int32,System.Int32,System.Int32,System.Int32)": "OpenTK.Graphics.Wgl.Wgl.ARB.yml", - "OpenTK.Graphics.Wgl.Wgl.ARB.SetPbufferAttribARB(System.IntPtr,System.Int32*)": "OpenTK.Graphics.Wgl.Wgl.ARB.yml", - "OpenTK.Graphics.Wgl.Wgl.ARB.SetPbufferAttribARB(System.IntPtr,System.Int32@)": "OpenTK.Graphics.Wgl.Wgl.ARB.yml", - "OpenTK.Graphics.Wgl.Wgl.ARB.SetPbufferAttribARB(System.IntPtr,System.Int32[])": "OpenTK.Graphics.Wgl.Wgl.ARB.yml", - "OpenTK.Graphics.Wgl.Wgl.ARB.SetPbufferAttribARB(System.IntPtr,System.ReadOnlySpan{System.Int32})": "OpenTK.Graphics.Wgl.Wgl.ARB.yml", - "OpenTK.Graphics.Wgl.Wgl.ChoosePixelFormat(System.IntPtr,OpenTK.Graphics.Wgl.PixelFormatDescriptor*)": "OpenTK.Graphics.Wgl.Wgl.yml", - "OpenTK.Graphics.Wgl.Wgl.ChoosePixelFormat(System.IntPtr,OpenTK.Graphics.Wgl.PixelFormatDescriptor@)": "OpenTK.Graphics.Wgl.Wgl.yml", - "OpenTK.Graphics.Wgl.Wgl.CopyContext(System.IntPtr,System.IntPtr,OpenTK.Graphics.OpenGL.AttribMask)": "OpenTK.Graphics.Wgl.Wgl.yml", - "OpenTK.Graphics.Wgl.Wgl.CopyContext_(System.IntPtr,System.IntPtr,OpenTK.Graphics.OpenGL.AttribMask)": "OpenTK.Graphics.Wgl.Wgl.yml", - "OpenTK.Graphics.Wgl.Wgl.CreateContext(System.IntPtr)": "OpenTK.Graphics.Wgl.Wgl.yml", - "OpenTK.Graphics.Wgl.Wgl.CreateLayerContext(System.IntPtr,System.Int32)": "OpenTK.Graphics.Wgl.Wgl.yml", - "OpenTK.Graphics.Wgl.Wgl.DeleteContext(System.IntPtr)": "OpenTK.Graphics.Wgl.Wgl.yml", - "OpenTK.Graphics.Wgl.Wgl.DeleteContext_(System.IntPtr)": "OpenTK.Graphics.Wgl.Wgl.yml", - "OpenTK.Graphics.Wgl.Wgl.DescribeLayerPlane(System.IntPtr,System.Int32,System.Int32,System.UInt32,OpenTK.Graphics.Wgl.LayerPlaneDescriptor*)": "OpenTK.Graphics.Wgl.Wgl.yml", - "OpenTK.Graphics.Wgl.Wgl.DescribeLayerPlane(System.IntPtr,System.Int32,System.Int32,System.UInt32,OpenTK.Graphics.Wgl.LayerPlaneDescriptor@)": "OpenTK.Graphics.Wgl.Wgl.yml", - "OpenTK.Graphics.Wgl.Wgl.DescribePixelFormat(System.IntPtr,System.Int32,System.UInt32,OpenTK.Graphics.Wgl.PixelFormatDescriptor*)": "OpenTK.Graphics.Wgl.Wgl.yml", - "OpenTK.Graphics.Wgl.Wgl.DescribePixelFormat(System.IntPtr,System.Int32,System.UInt32,OpenTK.Graphics.Wgl.PixelFormatDescriptor@)": "OpenTK.Graphics.Wgl.Wgl.yml", - "OpenTK.Graphics.Wgl.Wgl.EXT": "OpenTK.Graphics.Wgl.Wgl.EXT.yml", - "OpenTK.Graphics.Wgl.Wgl.EXT.BindDisplayColorTableEXT(System.UInt16)": "OpenTK.Graphics.Wgl.Wgl.EXT.yml", - "OpenTK.Graphics.Wgl.Wgl.EXT.ChoosePixelFormatEXT(System.IntPtr,System.Int32*,System.Single*,System.UInt32,System.Int32*,System.UInt32*)": "OpenTK.Graphics.Wgl.Wgl.EXT.yml", - "OpenTK.Graphics.Wgl.Wgl.EXT.ChoosePixelFormatEXT(System.IntPtr,System.Int32@,System.Single@,System.UInt32,System.Int32@,System.UInt32@)": "OpenTK.Graphics.Wgl.Wgl.EXT.yml", - "OpenTK.Graphics.Wgl.Wgl.EXT.ChoosePixelFormatEXT(System.IntPtr,System.Int32[],System.Single[],System.UInt32,System.Int32[],System.UInt32@)": "OpenTK.Graphics.Wgl.Wgl.EXT.yml", - "OpenTK.Graphics.Wgl.Wgl.EXT.ChoosePixelFormatEXT(System.IntPtr,System.ReadOnlySpan{System.Int32},System.ReadOnlySpan{System.Single},System.UInt32,System.Span{System.Int32},System.UInt32@)": "OpenTK.Graphics.Wgl.Wgl.EXT.yml", - "OpenTK.Graphics.Wgl.Wgl.EXT.CreateDisplayColorTableEXT(System.UInt16)": "OpenTK.Graphics.Wgl.Wgl.EXT.yml", - "OpenTK.Graphics.Wgl.Wgl.EXT.CreatePbufferEXT(System.IntPtr,System.Int32,System.Int32,System.Int32,System.Int32*)": "OpenTK.Graphics.Wgl.Wgl.EXT.yml", - "OpenTK.Graphics.Wgl.Wgl.EXT.CreatePbufferEXT(System.IntPtr,System.Int32,System.Int32,System.Int32,System.Int32@)": "OpenTK.Graphics.Wgl.Wgl.EXT.yml", - "OpenTK.Graphics.Wgl.Wgl.EXT.CreatePbufferEXT(System.IntPtr,System.Int32,System.Int32,System.Int32,System.Int32[])": "OpenTK.Graphics.Wgl.Wgl.EXT.yml", - "OpenTK.Graphics.Wgl.Wgl.EXT.CreatePbufferEXT(System.IntPtr,System.Int32,System.Int32,System.Int32,System.ReadOnlySpan{System.Int32})": "OpenTK.Graphics.Wgl.Wgl.EXT.yml", - "OpenTK.Graphics.Wgl.Wgl.EXT.DestroyDisplayColorTableEXT(System.UInt16)": "OpenTK.Graphics.Wgl.Wgl.EXT.yml", - "OpenTK.Graphics.Wgl.Wgl.EXT.DestroyPbufferEXT(System.IntPtr)": "OpenTK.Graphics.Wgl.Wgl.EXT.yml", - "OpenTK.Graphics.Wgl.Wgl.EXT.DestroyPbufferEXT_(System.IntPtr)": "OpenTK.Graphics.Wgl.Wgl.EXT.yml", - "OpenTK.Graphics.Wgl.Wgl.EXT.GetCurrentReadDCEXT": "OpenTK.Graphics.Wgl.Wgl.EXT.yml", - "OpenTK.Graphics.Wgl.Wgl.EXT.GetExtensionsStringEXT": "OpenTK.Graphics.Wgl.Wgl.EXT.yml", - "OpenTK.Graphics.Wgl.Wgl.EXT.GetExtensionsStringEXT_": "OpenTK.Graphics.Wgl.Wgl.EXT.yml", - "OpenTK.Graphics.Wgl.Wgl.EXT.GetPbufferDCEXT(System.IntPtr)": "OpenTK.Graphics.Wgl.Wgl.EXT.yml", - "OpenTK.Graphics.Wgl.Wgl.EXT.GetPixelFormatAttribfvEXT(System.IntPtr,System.Int32,System.Int32,System.UInt32,OpenTK.Graphics.Wgl.PixelFormatAttribute*,System.Single*)": "OpenTK.Graphics.Wgl.Wgl.EXT.yml", - "OpenTK.Graphics.Wgl.Wgl.EXT.GetPixelFormatAttribfvEXT(System.IntPtr,System.Int32,System.Int32,System.UInt32,OpenTK.Graphics.Wgl.PixelFormatAttribute@,System.Single@)": "OpenTK.Graphics.Wgl.Wgl.EXT.yml", - "OpenTK.Graphics.Wgl.Wgl.EXT.GetPixelFormatAttribfvEXT(System.IntPtr,System.Int32,System.Int32,System.UInt32,OpenTK.Graphics.Wgl.PixelFormatAttribute[],System.Single[])": "OpenTK.Graphics.Wgl.Wgl.EXT.yml", - "OpenTK.Graphics.Wgl.Wgl.EXT.GetPixelFormatAttribfvEXT(System.IntPtr,System.Int32,System.Int32,System.UInt32,System.Span{OpenTK.Graphics.Wgl.PixelFormatAttribute},System.Span{System.Single})": "OpenTK.Graphics.Wgl.Wgl.EXT.yml", - "OpenTK.Graphics.Wgl.Wgl.EXT.GetPixelFormatAttribivEXT(System.IntPtr,System.Int32,System.Int32,System.UInt32,OpenTK.Graphics.Wgl.PixelFormatAttribute*,System.Int32*)": "OpenTK.Graphics.Wgl.Wgl.EXT.yml", - "OpenTK.Graphics.Wgl.Wgl.EXT.GetPixelFormatAttribivEXT(System.IntPtr,System.Int32,System.Int32,System.UInt32,OpenTK.Graphics.Wgl.PixelFormatAttribute@,System.Int32@)": "OpenTK.Graphics.Wgl.Wgl.EXT.yml", - "OpenTK.Graphics.Wgl.Wgl.EXT.GetPixelFormatAttribivEXT(System.IntPtr,System.Int32,System.Int32,System.UInt32,OpenTK.Graphics.Wgl.PixelFormatAttribute[],System.Int32[])": "OpenTK.Graphics.Wgl.Wgl.EXT.yml", - "OpenTK.Graphics.Wgl.Wgl.EXT.GetPixelFormatAttribivEXT(System.IntPtr,System.Int32,System.Int32,System.UInt32,System.Span{OpenTK.Graphics.Wgl.PixelFormatAttribute},System.Span{System.Int32})": "OpenTK.Graphics.Wgl.Wgl.EXT.yml", - "OpenTK.Graphics.Wgl.Wgl.EXT.GetSwapIntervalEXT": "OpenTK.Graphics.Wgl.Wgl.EXT.yml", - "OpenTK.Graphics.Wgl.Wgl.EXT.LoadDisplayColorTableEXT(System.ReadOnlySpan{System.UInt16},System.UInt32)": "OpenTK.Graphics.Wgl.Wgl.EXT.yml", - "OpenTK.Graphics.Wgl.Wgl.EXT.LoadDisplayColorTableEXT(System.UInt16*,System.UInt32)": "OpenTK.Graphics.Wgl.Wgl.EXT.yml", - "OpenTK.Graphics.Wgl.Wgl.EXT.LoadDisplayColorTableEXT(System.UInt16@,System.UInt32)": "OpenTK.Graphics.Wgl.Wgl.EXT.yml", - "OpenTK.Graphics.Wgl.Wgl.EXT.LoadDisplayColorTableEXT(System.UInt16[],System.UInt32)": "OpenTK.Graphics.Wgl.Wgl.EXT.yml", - "OpenTK.Graphics.Wgl.Wgl.EXT.MakeContextCurrentEXT(System.IntPtr,System.IntPtr,System.IntPtr)": "OpenTK.Graphics.Wgl.Wgl.EXT.yml", - "OpenTK.Graphics.Wgl.Wgl.EXT.MakeContextCurrentEXT_(System.IntPtr,System.IntPtr,System.IntPtr)": "OpenTK.Graphics.Wgl.Wgl.EXT.yml", - "OpenTK.Graphics.Wgl.Wgl.EXT.QueryPbufferEXT(System.IntPtr,OpenTK.Graphics.Wgl.PBufferAttribute,System.Int32*)": "OpenTK.Graphics.Wgl.Wgl.EXT.yml", - "OpenTK.Graphics.Wgl.Wgl.EXT.QueryPbufferEXT(System.IntPtr,OpenTK.Graphics.Wgl.PBufferAttribute,System.Int32@)": "OpenTK.Graphics.Wgl.Wgl.EXT.yml", - "OpenTK.Graphics.Wgl.Wgl.EXT.ReleasePbufferDCEXT(System.IntPtr,System.IntPtr)": "OpenTK.Graphics.Wgl.Wgl.EXT.yml", - "OpenTK.Graphics.Wgl.Wgl.EXT.SwapIntervalEXT(System.Int32)": "OpenTK.Graphics.Wgl.Wgl.EXT.yml", - "OpenTK.Graphics.Wgl.Wgl.EXT.SwapIntervalEXT_(System.Int32)": "OpenTK.Graphics.Wgl.Wgl.EXT.yml", - "OpenTK.Graphics.Wgl.Wgl.GetCurrentContext": "OpenTK.Graphics.Wgl.Wgl.yml", - "OpenTK.Graphics.Wgl.Wgl.GetCurrentDC": "OpenTK.Graphics.Wgl.Wgl.yml", - "OpenTK.Graphics.Wgl.Wgl.GetEnhMetaFilePixelFormat(System.IntPtr,System.UInt32,OpenTK.Graphics.Wgl.PixelFormatDescriptor*)": "OpenTK.Graphics.Wgl.Wgl.yml", - "OpenTK.Graphics.Wgl.Wgl.GetEnhMetaFilePixelFormat(System.IntPtr,System.UInt32,OpenTK.Graphics.Wgl.PixelFormatDescriptor@)": "OpenTK.Graphics.Wgl.Wgl.yml", - "OpenTK.Graphics.Wgl.Wgl.GetLayerPaletteEntries(System.IntPtr,System.Int32,System.Int32,System.Int32,OpenTK.Graphics.Wgl.ColorRef*)": "OpenTK.Graphics.Wgl.Wgl.yml", - "OpenTK.Graphics.Wgl.Wgl.GetLayerPaletteEntries(System.IntPtr,System.Int32,System.Int32,System.Int32,OpenTK.Graphics.Wgl.ColorRef@)": "OpenTK.Graphics.Wgl.Wgl.yml", - "OpenTK.Graphics.Wgl.Wgl.GetLayerPaletteEntries(System.IntPtr,System.Int32,System.Int32,System.Int32,OpenTK.Graphics.Wgl.ColorRef[])": "OpenTK.Graphics.Wgl.Wgl.yml", - "OpenTK.Graphics.Wgl.Wgl.GetLayerPaletteEntries(System.IntPtr,System.Int32,System.Int32,System.Int32,System.Span{OpenTK.Graphics.Wgl.ColorRef})": "OpenTK.Graphics.Wgl.Wgl.yml", - "OpenTK.Graphics.Wgl.Wgl.GetPixelFormat(System.IntPtr)": "OpenTK.Graphics.Wgl.Wgl.yml", - "OpenTK.Graphics.Wgl.Wgl.GetProcAddress(System.Byte*)": "OpenTK.Graphics.Wgl.Wgl.yml", - "OpenTK.Graphics.Wgl.Wgl.GetProcAddress(System.String)": "OpenTK.Graphics.Wgl.Wgl.yml", - "OpenTK.Graphics.Wgl.Wgl.I3D": "OpenTK.Graphics.Wgl.Wgl.I3D.yml", - "OpenTK.Graphics.Wgl.Wgl.I3D.AssociateImageBufferEventsI3D(System.IntPtr,System.IntPtr*,System.IntPtr*,System.UInt32*,System.UInt32)": "OpenTK.Graphics.Wgl.Wgl.I3D.yml", - "OpenTK.Graphics.Wgl.Wgl.I3D.AssociateImageBufferEventsI3D(System.IntPtr,System.IntPtr@,System.IntPtr@,System.UInt32@,System.UInt32)": "OpenTK.Graphics.Wgl.Wgl.I3D.yml", - "OpenTK.Graphics.Wgl.Wgl.I3D.AssociateImageBufferEventsI3D(System.IntPtr,System.IntPtr[],System.IntPtr[],System.UInt32[],System.UInt32)": "OpenTK.Graphics.Wgl.Wgl.I3D.yml", - "OpenTK.Graphics.Wgl.Wgl.I3D.AssociateImageBufferEventsI3D(System.IntPtr,System.ReadOnlySpan{System.IntPtr},System.ReadOnlySpan{System.IntPtr},System.ReadOnlySpan{System.UInt32},System.UInt32)": "OpenTK.Graphics.Wgl.Wgl.I3D.yml", - "OpenTK.Graphics.Wgl.Wgl.I3D.BeginFrameTrackingI3D": "OpenTK.Graphics.Wgl.Wgl.I3D.yml", - "OpenTK.Graphics.Wgl.Wgl.I3D.BeginFrameTrackingI3D_": "OpenTK.Graphics.Wgl.Wgl.I3D.yml", - "OpenTK.Graphics.Wgl.Wgl.I3D.CreateImageBufferI3D(System.IntPtr,System.UInt32,OpenTK.Graphics.Wgl.ImageBufferMaskI3D)": "OpenTK.Graphics.Wgl.Wgl.I3D.yml", - "OpenTK.Graphics.Wgl.Wgl.I3D.DestroyImageBufferI3D(System.IntPtr,System.IntPtr)": "OpenTK.Graphics.Wgl.Wgl.I3D.yml", - "OpenTK.Graphics.Wgl.Wgl.I3D.DestroyImageBufferI3D_(System.IntPtr,System.IntPtr)": "OpenTK.Graphics.Wgl.Wgl.I3D.yml", - "OpenTK.Graphics.Wgl.Wgl.I3D.DisableFrameLockI3D": "OpenTK.Graphics.Wgl.Wgl.I3D.yml", - "OpenTK.Graphics.Wgl.Wgl.I3D.DisableFrameLockI3D_": "OpenTK.Graphics.Wgl.Wgl.I3D.yml", - "OpenTK.Graphics.Wgl.Wgl.I3D.DisableGenlockI3D(System.IntPtr)": "OpenTK.Graphics.Wgl.Wgl.I3D.yml", - "OpenTK.Graphics.Wgl.Wgl.I3D.DisableGenlockI3D_(System.IntPtr)": "OpenTK.Graphics.Wgl.Wgl.I3D.yml", - "OpenTK.Graphics.Wgl.Wgl.I3D.EnableFrameLockI3D": "OpenTK.Graphics.Wgl.Wgl.I3D.yml", - "OpenTK.Graphics.Wgl.Wgl.I3D.EnableFrameLockI3D_": "OpenTK.Graphics.Wgl.Wgl.I3D.yml", - "OpenTK.Graphics.Wgl.Wgl.I3D.EnableGenlockI3D(System.IntPtr)": "OpenTK.Graphics.Wgl.Wgl.I3D.yml", - "OpenTK.Graphics.Wgl.Wgl.I3D.EnableGenlockI3D_(System.IntPtr)": "OpenTK.Graphics.Wgl.Wgl.I3D.yml", - "OpenTK.Graphics.Wgl.Wgl.I3D.EndFrameTrackingI3D": "OpenTK.Graphics.Wgl.Wgl.I3D.yml", - "OpenTK.Graphics.Wgl.Wgl.I3D.EndFrameTrackingI3D_": "OpenTK.Graphics.Wgl.Wgl.I3D.yml", - "OpenTK.Graphics.Wgl.Wgl.I3D.GenlockSampleRateI3D(System.IntPtr,System.UInt32)": "OpenTK.Graphics.Wgl.Wgl.I3D.yml", - "OpenTK.Graphics.Wgl.Wgl.I3D.GenlockSampleRateI3D_(System.IntPtr,System.UInt32)": "OpenTK.Graphics.Wgl.Wgl.I3D.yml", - "OpenTK.Graphics.Wgl.Wgl.I3D.GenlockSourceDelayI3D(System.IntPtr,System.UInt32)": "OpenTK.Graphics.Wgl.Wgl.I3D.yml", - "OpenTK.Graphics.Wgl.Wgl.I3D.GenlockSourceDelayI3D_(System.IntPtr,System.UInt32)": "OpenTK.Graphics.Wgl.Wgl.I3D.yml", - "OpenTK.Graphics.Wgl.Wgl.I3D.GenlockSourceEdgeI3D(System.IntPtr,System.UInt32)": "OpenTK.Graphics.Wgl.Wgl.I3D.yml", - "OpenTK.Graphics.Wgl.Wgl.I3D.GenlockSourceEdgeI3D_(System.IntPtr,System.UInt32)": "OpenTK.Graphics.Wgl.Wgl.I3D.yml", - "OpenTK.Graphics.Wgl.Wgl.I3D.GenlockSourceI3D(System.IntPtr,System.UInt32)": "OpenTK.Graphics.Wgl.Wgl.I3D.yml", - "OpenTK.Graphics.Wgl.Wgl.I3D.GenlockSourceI3D_(System.IntPtr,System.UInt32)": "OpenTK.Graphics.Wgl.Wgl.I3D.yml", - "OpenTK.Graphics.Wgl.Wgl.I3D.GetDigitalVideoParametersI3D(System.IntPtr,OpenTK.Graphics.Wgl.DigitalVideoAttribute,System.Int32*)": "OpenTK.Graphics.Wgl.Wgl.I3D.yml", - "OpenTK.Graphics.Wgl.Wgl.I3D.GetDigitalVideoParametersI3D(System.IntPtr,OpenTK.Graphics.Wgl.DigitalVideoAttribute,System.Int32@)": "OpenTK.Graphics.Wgl.Wgl.I3D.yml", - "OpenTK.Graphics.Wgl.Wgl.I3D.GetFrameUsageI3D(System.Single*)": "OpenTK.Graphics.Wgl.Wgl.I3D.yml", - "OpenTK.Graphics.Wgl.Wgl.I3D.GetFrameUsageI3D(System.Single@)": "OpenTK.Graphics.Wgl.Wgl.I3D.yml", - "OpenTK.Graphics.Wgl.Wgl.I3D.GetGammaTableI3D(System.IntPtr,System.Int32,System.Span{System.UInt16},System.Span{System.UInt16},System.Span{System.UInt16})": "OpenTK.Graphics.Wgl.Wgl.I3D.yml", - "OpenTK.Graphics.Wgl.Wgl.I3D.GetGammaTableI3D(System.IntPtr,System.Int32,System.UInt16*,System.UInt16*,System.UInt16*)": "OpenTK.Graphics.Wgl.Wgl.I3D.yml", - "OpenTK.Graphics.Wgl.Wgl.I3D.GetGammaTableI3D(System.IntPtr,System.Int32,System.UInt16@,System.UInt16@,System.UInt16@)": "OpenTK.Graphics.Wgl.Wgl.I3D.yml", - "OpenTK.Graphics.Wgl.Wgl.I3D.GetGammaTableI3D(System.IntPtr,System.Int32,System.UInt16[],System.UInt16[],System.UInt16[])": "OpenTK.Graphics.Wgl.Wgl.I3D.yml", - "OpenTK.Graphics.Wgl.Wgl.I3D.GetGammaTableParametersI3D(System.IntPtr,OpenTK.Graphics.Wgl.GammaTableAttribute,System.Int32*)": "OpenTK.Graphics.Wgl.Wgl.I3D.yml", - "OpenTK.Graphics.Wgl.Wgl.I3D.GetGammaTableParametersI3D(System.IntPtr,OpenTK.Graphics.Wgl.GammaTableAttribute,System.Int32@)": "OpenTK.Graphics.Wgl.Wgl.I3D.yml", - "OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSampleRateI3D(System.IntPtr,System.UInt32*)": "OpenTK.Graphics.Wgl.Wgl.I3D.yml", - "OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSampleRateI3D(System.IntPtr,System.UInt32@)": "OpenTK.Graphics.Wgl.Wgl.I3D.yml", - "OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSourceDelayI3D(System.IntPtr,System.UInt32*)": "OpenTK.Graphics.Wgl.Wgl.I3D.yml", - "OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSourceDelayI3D(System.IntPtr,System.UInt32@)": "OpenTK.Graphics.Wgl.Wgl.I3D.yml", - "OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSourceEdgeI3D(System.IntPtr,System.UInt32*)": "OpenTK.Graphics.Wgl.Wgl.I3D.yml", - "OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSourceEdgeI3D(System.IntPtr,System.UInt32@)": "OpenTK.Graphics.Wgl.Wgl.I3D.yml", - "OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSourceI3D(System.IntPtr,System.UInt32*)": "OpenTK.Graphics.Wgl.Wgl.I3D.yml", - "OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSourceI3D(System.IntPtr,System.UInt32@)": "OpenTK.Graphics.Wgl.Wgl.I3D.yml", - "OpenTK.Graphics.Wgl.Wgl.I3D.IsEnabledFrameLockI3D(System.Int32*)": "OpenTK.Graphics.Wgl.Wgl.I3D.yml", - "OpenTK.Graphics.Wgl.Wgl.I3D.IsEnabledFrameLockI3D(System.Int32@)": "OpenTK.Graphics.Wgl.Wgl.I3D.yml", - "OpenTK.Graphics.Wgl.Wgl.I3D.IsEnabledGenlockI3D(System.IntPtr,System.Int32*)": "OpenTK.Graphics.Wgl.Wgl.I3D.yml", - "OpenTK.Graphics.Wgl.Wgl.I3D.IsEnabledGenlockI3D(System.IntPtr,System.Int32@)": "OpenTK.Graphics.Wgl.Wgl.I3D.yml", - "OpenTK.Graphics.Wgl.Wgl.I3D.QueryFrameLockMasterI3D(System.Int32*)": "OpenTK.Graphics.Wgl.Wgl.I3D.yml", - "OpenTK.Graphics.Wgl.Wgl.I3D.QueryFrameLockMasterI3D(System.Int32@)": "OpenTK.Graphics.Wgl.Wgl.I3D.yml", - "OpenTK.Graphics.Wgl.Wgl.I3D.QueryFrameTrackingI3D(System.UInt32*,System.UInt32*,System.Single*)": "OpenTK.Graphics.Wgl.Wgl.I3D.yml", - "OpenTK.Graphics.Wgl.Wgl.I3D.QueryFrameTrackingI3D(System.UInt32@,System.UInt32@,System.Single@)": "OpenTK.Graphics.Wgl.Wgl.I3D.yml", - "OpenTK.Graphics.Wgl.Wgl.I3D.QueryGenlockMaxSourceDelayI3D(System.IntPtr,System.UInt32*,System.UInt32*)": "OpenTK.Graphics.Wgl.Wgl.I3D.yml", - "OpenTK.Graphics.Wgl.Wgl.I3D.QueryGenlockMaxSourceDelayI3D(System.IntPtr,System.UInt32@,System.UInt32@)": "OpenTK.Graphics.Wgl.Wgl.I3D.yml", - "OpenTK.Graphics.Wgl.Wgl.I3D.ReleaseImageBufferEventsI3D(System.IntPtr,System.IntPtr*,System.UInt32)": "OpenTK.Graphics.Wgl.Wgl.I3D.yml", - "OpenTK.Graphics.Wgl.Wgl.I3D.ReleaseImageBufferEventsI3D(System.IntPtr,System.IntPtr@,System.UInt32)": "OpenTK.Graphics.Wgl.Wgl.I3D.yml", - "OpenTK.Graphics.Wgl.Wgl.I3D.ReleaseImageBufferEventsI3D(System.IntPtr,System.IntPtr[],System.UInt32)": "OpenTK.Graphics.Wgl.Wgl.I3D.yml", - "OpenTK.Graphics.Wgl.Wgl.I3D.ReleaseImageBufferEventsI3D(System.IntPtr,System.ReadOnlySpan{System.IntPtr},System.UInt32)": "OpenTK.Graphics.Wgl.Wgl.I3D.yml", - "OpenTK.Graphics.Wgl.Wgl.I3D.SetDigitalVideoParametersI3D(System.IntPtr,OpenTK.Graphics.Wgl.DigitalVideoAttribute,System.Int32*)": "OpenTK.Graphics.Wgl.Wgl.I3D.yml", - "OpenTK.Graphics.Wgl.Wgl.I3D.SetDigitalVideoParametersI3D(System.IntPtr,OpenTK.Graphics.Wgl.DigitalVideoAttribute,System.Int32@)": "OpenTK.Graphics.Wgl.Wgl.I3D.yml", - "OpenTK.Graphics.Wgl.Wgl.I3D.SetGammaTableI3D(System.IntPtr,System.Int32,System.ReadOnlySpan{System.UInt16},System.ReadOnlySpan{System.UInt16},System.ReadOnlySpan{System.UInt16})": "OpenTK.Graphics.Wgl.Wgl.I3D.yml", - "OpenTK.Graphics.Wgl.Wgl.I3D.SetGammaTableI3D(System.IntPtr,System.Int32,System.UInt16*,System.UInt16*,System.UInt16*)": "OpenTK.Graphics.Wgl.Wgl.I3D.yml", - "OpenTK.Graphics.Wgl.Wgl.I3D.SetGammaTableI3D(System.IntPtr,System.Int32,System.UInt16@,System.UInt16@,System.UInt16@)": "OpenTK.Graphics.Wgl.Wgl.I3D.yml", - "OpenTK.Graphics.Wgl.Wgl.I3D.SetGammaTableI3D(System.IntPtr,System.Int32,System.UInt16[],System.UInt16[],System.UInt16[])": "OpenTK.Graphics.Wgl.Wgl.I3D.yml", - "OpenTK.Graphics.Wgl.Wgl.I3D.SetGammaTableParametersI3D(System.IntPtr,OpenTK.Graphics.Wgl.GammaTableAttribute,System.Int32*)": "OpenTK.Graphics.Wgl.Wgl.I3D.yml", - "OpenTK.Graphics.Wgl.Wgl.I3D.SetGammaTableParametersI3D(System.IntPtr,OpenTK.Graphics.Wgl.GammaTableAttribute,System.Int32@)": "OpenTK.Graphics.Wgl.Wgl.I3D.yml", - "OpenTK.Graphics.Wgl.Wgl.MakeCurrent(System.IntPtr,System.IntPtr)": "OpenTK.Graphics.Wgl.Wgl.yml", - "OpenTK.Graphics.Wgl.Wgl.MakeCurrent_(System.IntPtr,System.IntPtr)": "OpenTK.Graphics.Wgl.Wgl.yml", - "OpenTK.Graphics.Wgl.Wgl.NV": "OpenTK.Graphics.Wgl.Wgl.NV.yml", - "OpenTK.Graphics.Wgl.Wgl.NV.AllocateMemoryNV(System.Int32,System.Single,System.Single,System.Single)": "OpenTK.Graphics.Wgl.Wgl.NV.yml", - "OpenTK.Graphics.Wgl.Wgl.NV.BindSwapBarrierNV(System.UInt32,System.UInt32)": "OpenTK.Graphics.Wgl.Wgl.NV.yml", - "OpenTK.Graphics.Wgl.Wgl.NV.BindSwapBarrierNV_(System.UInt32,System.UInt32)": "OpenTK.Graphics.Wgl.Wgl.NV.yml", - "OpenTK.Graphics.Wgl.Wgl.NV.BindVideoCaptureDeviceNV(System.UInt32,System.IntPtr)": "OpenTK.Graphics.Wgl.Wgl.NV.yml", - "OpenTK.Graphics.Wgl.Wgl.NV.BindVideoCaptureDeviceNV_(System.UInt32,System.IntPtr)": "OpenTK.Graphics.Wgl.Wgl.NV.yml", - "OpenTK.Graphics.Wgl.Wgl.NV.BindVideoDeviceNV(System.IntPtr,System.UInt32,System.IntPtr,System.Int32*)": "OpenTK.Graphics.Wgl.Wgl.NV.yml", - "OpenTK.Graphics.Wgl.Wgl.NV.BindVideoDeviceNV(System.IntPtr,System.UInt32,System.IntPtr,System.Int32@)": "OpenTK.Graphics.Wgl.Wgl.NV.yml", - "OpenTK.Graphics.Wgl.Wgl.NV.BindVideoDeviceNV(System.IntPtr,System.UInt32,System.IntPtr,System.Int32[])": "OpenTK.Graphics.Wgl.Wgl.NV.yml", - "OpenTK.Graphics.Wgl.Wgl.NV.BindVideoDeviceNV(System.IntPtr,System.UInt32,System.IntPtr,System.ReadOnlySpan{System.Int32})": "OpenTK.Graphics.Wgl.Wgl.NV.yml", - "OpenTK.Graphics.Wgl.Wgl.NV.BindVideoImageNV(System.IntPtr,System.IntPtr,OpenTK.Graphics.Wgl.VideoOutputBuffer)": "OpenTK.Graphics.Wgl.Wgl.NV.yml", - "OpenTK.Graphics.Wgl.Wgl.NV.BindVideoImageNV_(System.IntPtr,System.IntPtr,OpenTK.Graphics.Wgl.VideoOutputBuffer)": "OpenTK.Graphics.Wgl.Wgl.NV.yml", - "OpenTK.Graphics.Wgl.Wgl.NV.CopyImageSubDataNV(System.IntPtr,System.UInt32,OpenTK.Graphics.OpenGL.TextureTarget,System.Int32,System.Int32,System.Int32,System.Int32,System.IntPtr,System.UInt32,OpenTK.Graphics.OpenGL.TextureTarget,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)": "OpenTK.Graphics.Wgl.Wgl.NV.yml", - "OpenTK.Graphics.Wgl.Wgl.NV.CopyImageSubDataNV_(System.IntPtr,System.UInt32,OpenTK.Graphics.OpenGL.TextureTarget,System.Int32,System.Int32,System.Int32,System.Int32,System.IntPtr,System.UInt32,OpenTK.Graphics.OpenGL.TextureTarget,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)": "OpenTK.Graphics.Wgl.Wgl.NV.yml", - "OpenTK.Graphics.Wgl.Wgl.NV.CreateAffinityDCNV(System.IntPtr*)": "OpenTK.Graphics.Wgl.Wgl.NV.yml", - "OpenTK.Graphics.Wgl.Wgl.NV.CreateAffinityDCNV(System.IntPtr@)": "OpenTK.Graphics.Wgl.Wgl.NV.yml", - "OpenTK.Graphics.Wgl.Wgl.NV.CreateAffinityDCNV(System.IntPtr[])": "OpenTK.Graphics.Wgl.Wgl.NV.yml", - "OpenTK.Graphics.Wgl.Wgl.NV.CreateAffinityDCNV(System.ReadOnlySpan{System.IntPtr})": "OpenTK.Graphics.Wgl.Wgl.NV.yml", - "OpenTK.Graphics.Wgl.Wgl.NV.DXCloseDeviceNV(System.IntPtr)": "OpenTK.Graphics.Wgl.Wgl.NV.yml", - "OpenTK.Graphics.Wgl.Wgl.NV.DXCloseDeviceNV_(System.IntPtr)": "OpenTK.Graphics.Wgl.Wgl.NV.yml", - "OpenTK.Graphics.Wgl.Wgl.NV.DXLockObjectsNV(System.IntPtr,System.Int32,System.IntPtr*)": "OpenTK.Graphics.Wgl.Wgl.NV.yml", - "OpenTK.Graphics.Wgl.Wgl.NV.DXLockObjectsNV(System.IntPtr,System.Int32,System.IntPtr@)": "OpenTK.Graphics.Wgl.Wgl.NV.yml", - "OpenTK.Graphics.Wgl.Wgl.NV.DXLockObjectsNV(System.IntPtr,System.Int32,System.IntPtr[])": "OpenTK.Graphics.Wgl.Wgl.NV.yml", - "OpenTK.Graphics.Wgl.Wgl.NV.DXLockObjectsNV(System.IntPtr,System.Int32,System.Span{System.IntPtr})": "OpenTK.Graphics.Wgl.Wgl.NV.yml", - "OpenTK.Graphics.Wgl.Wgl.NV.DXObjectAccessNV(System.IntPtr,OpenTK.Graphics.Wgl.DXInteropMaskNV)": "OpenTK.Graphics.Wgl.Wgl.NV.yml", - "OpenTK.Graphics.Wgl.Wgl.NV.DXObjectAccessNV_(System.IntPtr,OpenTK.Graphics.Wgl.DXInteropMaskNV)": "OpenTK.Graphics.Wgl.Wgl.NV.yml", - "OpenTK.Graphics.Wgl.Wgl.NV.DXOpenDeviceNV(System.IntPtr)": "OpenTK.Graphics.Wgl.Wgl.NV.yml", - "OpenTK.Graphics.Wgl.Wgl.NV.DXOpenDeviceNV(System.Void*)": "OpenTK.Graphics.Wgl.Wgl.NV.yml", - "OpenTK.Graphics.Wgl.Wgl.NV.DXOpenDeviceNV``1(``0@)": "OpenTK.Graphics.Wgl.Wgl.NV.yml", - "OpenTK.Graphics.Wgl.Wgl.NV.DXRegisterObjectNV(System.IntPtr,System.IntPtr,System.UInt32,OpenTK.Graphics.Wgl.ObjectTypeDX,OpenTK.Graphics.Wgl.DXInteropMaskNV)": "OpenTK.Graphics.Wgl.Wgl.NV.yml", - "OpenTK.Graphics.Wgl.Wgl.NV.DXRegisterObjectNV(System.IntPtr,System.Void*,System.UInt32,OpenTK.Graphics.Wgl.ObjectTypeDX,OpenTK.Graphics.Wgl.DXInteropMaskNV)": "OpenTK.Graphics.Wgl.Wgl.NV.yml", - "OpenTK.Graphics.Wgl.Wgl.NV.DXRegisterObjectNV``1(System.IntPtr,``0@,System.UInt32,OpenTK.Graphics.Wgl.ObjectTypeDX,OpenTK.Graphics.Wgl.DXInteropMaskNV)": "OpenTK.Graphics.Wgl.Wgl.NV.yml", - "OpenTK.Graphics.Wgl.Wgl.NV.DXSetResourceShareHandleNV(System.IntPtr,System.IntPtr)": "OpenTK.Graphics.Wgl.Wgl.NV.yml", - "OpenTK.Graphics.Wgl.Wgl.NV.DXSetResourceShareHandleNV(System.Void*,System.IntPtr)": "OpenTK.Graphics.Wgl.Wgl.NV.yml", - "OpenTK.Graphics.Wgl.Wgl.NV.DXSetResourceShareHandleNV``1(``0@,System.IntPtr)": "OpenTK.Graphics.Wgl.Wgl.NV.yml", - "OpenTK.Graphics.Wgl.Wgl.NV.DXUnlockObjectsNV(System.IntPtr,System.Int32,System.IntPtr*)": "OpenTK.Graphics.Wgl.Wgl.NV.yml", - "OpenTK.Graphics.Wgl.Wgl.NV.DXUnlockObjectsNV(System.IntPtr,System.Int32,System.IntPtr@)": "OpenTK.Graphics.Wgl.Wgl.NV.yml", - "OpenTK.Graphics.Wgl.Wgl.NV.DXUnlockObjectsNV(System.IntPtr,System.Int32,System.IntPtr[])": "OpenTK.Graphics.Wgl.Wgl.NV.yml", - "OpenTK.Graphics.Wgl.Wgl.NV.DXUnlockObjectsNV(System.IntPtr,System.Int32,System.Span{System.IntPtr})": "OpenTK.Graphics.Wgl.Wgl.NV.yml", - "OpenTK.Graphics.Wgl.Wgl.NV.DXUnregisterObjectNV(System.IntPtr,System.IntPtr)": "OpenTK.Graphics.Wgl.Wgl.NV.yml", - "OpenTK.Graphics.Wgl.Wgl.NV.DXUnregisterObjectNV_(System.IntPtr,System.IntPtr)": "OpenTK.Graphics.Wgl.Wgl.NV.yml", - "OpenTK.Graphics.Wgl.Wgl.NV.DelayBeforeSwapNV(System.IntPtr,System.Single)": "OpenTK.Graphics.Wgl.Wgl.NV.yml", - "OpenTK.Graphics.Wgl.Wgl.NV.DelayBeforeSwapNV_(System.IntPtr,System.Single)": "OpenTK.Graphics.Wgl.Wgl.NV.yml", - "OpenTK.Graphics.Wgl.Wgl.NV.DeleteDCNV(System.IntPtr)": "OpenTK.Graphics.Wgl.Wgl.NV.yml", - "OpenTK.Graphics.Wgl.Wgl.NV.DeleteDCNV_(System.IntPtr)": "OpenTK.Graphics.Wgl.Wgl.NV.yml", - "OpenTK.Graphics.Wgl.Wgl.NV.EnumGpuDevicesNV(System.IntPtr,System.UInt32,OpenTK.Graphics.Wgl._GPU_DEVICE*)": "OpenTK.Graphics.Wgl.Wgl.NV.yml", - "OpenTK.Graphics.Wgl.Wgl.NV.EnumGpuDevicesNV(System.IntPtr,System.UInt32,OpenTK.Graphics.Wgl._GPU_DEVICE@)": "OpenTK.Graphics.Wgl.Wgl.NV.yml", - "OpenTK.Graphics.Wgl.Wgl.NV.EnumGpuDevicesNV(System.IntPtr,System.UInt32,OpenTK.Graphics.Wgl._GPU_DEVICE[])": "OpenTK.Graphics.Wgl.Wgl.NV.yml", - "OpenTK.Graphics.Wgl.Wgl.NV.EnumGpuDevicesNV(System.IntPtr,System.UInt32,System.Span{OpenTK.Graphics.Wgl._GPU_DEVICE})": "OpenTK.Graphics.Wgl.Wgl.NV.yml", - "OpenTK.Graphics.Wgl.Wgl.NV.EnumGpusFromAffinityDCNV(System.IntPtr,System.UInt32,System.IntPtr*)": "OpenTK.Graphics.Wgl.Wgl.NV.yml", - "OpenTK.Graphics.Wgl.Wgl.NV.EnumGpusFromAffinityDCNV(System.IntPtr,System.UInt32,System.IntPtr@)": "OpenTK.Graphics.Wgl.Wgl.NV.yml", - "OpenTK.Graphics.Wgl.Wgl.NV.EnumGpusNV(System.UInt32,System.IntPtr*)": "OpenTK.Graphics.Wgl.Wgl.NV.yml", - "OpenTK.Graphics.Wgl.Wgl.NV.EnumGpusNV(System.UInt32,System.IntPtr@)": "OpenTK.Graphics.Wgl.Wgl.NV.yml", - "OpenTK.Graphics.Wgl.Wgl.NV.EnumerateVideoCaptureDevicesNV(System.IntPtr,System.IntPtr*)": "OpenTK.Graphics.Wgl.Wgl.NV.yml", - "OpenTK.Graphics.Wgl.Wgl.NV.EnumerateVideoCaptureDevicesNV(System.IntPtr,System.IntPtr@)": "OpenTK.Graphics.Wgl.Wgl.NV.yml", - "OpenTK.Graphics.Wgl.Wgl.NV.EnumerateVideoCaptureDevicesNV(System.IntPtr,System.IntPtr[])": "OpenTK.Graphics.Wgl.Wgl.NV.yml", - "OpenTK.Graphics.Wgl.Wgl.NV.EnumerateVideoCaptureDevicesNV(System.IntPtr,System.Span{System.IntPtr})": "OpenTK.Graphics.Wgl.Wgl.NV.yml", - "OpenTK.Graphics.Wgl.Wgl.NV.EnumerateVideoDevicesNV(System.IntPtr,System.IntPtr*)": "OpenTK.Graphics.Wgl.Wgl.NV.yml", - "OpenTK.Graphics.Wgl.Wgl.NV.EnumerateVideoDevicesNV(System.IntPtr,System.IntPtr@)": "OpenTK.Graphics.Wgl.Wgl.NV.yml", - "OpenTK.Graphics.Wgl.Wgl.NV.EnumerateVideoDevicesNV(System.IntPtr,System.IntPtr[])": "OpenTK.Graphics.Wgl.Wgl.NV.yml", - "OpenTK.Graphics.Wgl.Wgl.NV.EnumerateVideoDevicesNV(System.IntPtr,System.Span{System.IntPtr})": "OpenTK.Graphics.Wgl.Wgl.NV.yml", - "OpenTK.Graphics.Wgl.Wgl.NV.FreeMemoryNV(System.IntPtr)": "OpenTK.Graphics.Wgl.Wgl.NV.yml", - "OpenTK.Graphics.Wgl.Wgl.NV.FreeMemoryNV(System.Void*)": "OpenTK.Graphics.Wgl.Wgl.NV.yml", - "OpenTK.Graphics.Wgl.Wgl.NV.FreeMemoryNV``1(System.Span{``0})": "OpenTK.Graphics.Wgl.Wgl.NV.yml", - "OpenTK.Graphics.Wgl.Wgl.NV.FreeMemoryNV``1(``0@)": "OpenTK.Graphics.Wgl.Wgl.NV.yml", - "OpenTK.Graphics.Wgl.Wgl.NV.FreeMemoryNV``1(``0[])": "OpenTK.Graphics.Wgl.Wgl.NV.yml", - "OpenTK.Graphics.Wgl.Wgl.NV.GetVideoDeviceNV(System.IntPtr,System.Int32,System.IntPtr*)": "OpenTK.Graphics.Wgl.Wgl.NV.yml", - "OpenTK.Graphics.Wgl.Wgl.NV.GetVideoDeviceNV(System.IntPtr,System.Int32,System.IntPtr@)": "OpenTK.Graphics.Wgl.Wgl.NV.yml", - "OpenTK.Graphics.Wgl.Wgl.NV.GetVideoDeviceNV(System.IntPtr,System.Int32,System.IntPtr[])": "OpenTK.Graphics.Wgl.Wgl.NV.yml", - "OpenTK.Graphics.Wgl.Wgl.NV.GetVideoDeviceNV(System.IntPtr,System.Int32,System.Span{System.IntPtr})": "OpenTK.Graphics.Wgl.Wgl.NV.yml", - "OpenTK.Graphics.Wgl.Wgl.NV.GetVideoInfoNV(System.IntPtr,System.UInt64*,System.UInt64*)": "OpenTK.Graphics.Wgl.Wgl.NV.yml", - "OpenTK.Graphics.Wgl.Wgl.NV.GetVideoInfoNV(System.IntPtr,System.UInt64@,System.UInt64@)": "OpenTK.Graphics.Wgl.Wgl.NV.yml", - "OpenTK.Graphics.Wgl.Wgl.NV.JoinSwapGroupNV(System.IntPtr,System.UInt32)": "OpenTK.Graphics.Wgl.Wgl.NV.yml", - "OpenTK.Graphics.Wgl.Wgl.NV.JoinSwapGroupNV_(System.IntPtr,System.UInt32)": "OpenTK.Graphics.Wgl.Wgl.NV.yml", - "OpenTK.Graphics.Wgl.Wgl.NV.LockVideoCaptureDeviceNV(System.IntPtr,System.IntPtr)": "OpenTK.Graphics.Wgl.Wgl.NV.yml", - "OpenTK.Graphics.Wgl.Wgl.NV.LockVideoCaptureDeviceNV_(System.IntPtr,System.IntPtr)": "OpenTK.Graphics.Wgl.Wgl.NV.yml", - "OpenTK.Graphics.Wgl.Wgl.NV.QueryCurrentContextNV(OpenTK.Graphics.Wgl.ContextAttribute,System.Int32*)": "OpenTK.Graphics.Wgl.Wgl.NV.yml", - "OpenTK.Graphics.Wgl.Wgl.NV.QueryCurrentContextNV(OpenTK.Graphics.Wgl.ContextAttribute,System.Int32@)": "OpenTK.Graphics.Wgl.Wgl.NV.yml", - "OpenTK.Graphics.Wgl.Wgl.NV.QueryFrameCountNV(System.IntPtr,System.UInt32*)": "OpenTK.Graphics.Wgl.Wgl.NV.yml", - "OpenTK.Graphics.Wgl.Wgl.NV.QueryFrameCountNV(System.IntPtr,System.UInt32@)": "OpenTK.Graphics.Wgl.Wgl.NV.yml", - "OpenTK.Graphics.Wgl.Wgl.NV.QueryMaxSwapGroupsNV(System.IntPtr,System.UInt32*,System.UInt32*)": "OpenTK.Graphics.Wgl.Wgl.NV.yml", - "OpenTK.Graphics.Wgl.Wgl.NV.QueryMaxSwapGroupsNV(System.IntPtr,System.UInt32@,System.UInt32@)": "OpenTK.Graphics.Wgl.Wgl.NV.yml", - "OpenTK.Graphics.Wgl.Wgl.NV.QuerySwapGroupNV(System.IntPtr,System.UInt32*,System.UInt32*)": "OpenTK.Graphics.Wgl.Wgl.NV.yml", - "OpenTK.Graphics.Wgl.Wgl.NV.QuerySwapGroupNV(System.IntPtr,System.UInt32@,System.UInt32@)": "OpenTK.Graphics.Wgl.Wgl.NV.yml", - "OpenTK.Graphics.Wgl.Wgl.NV.QueryVideoCaptureDeviceNV(System.IntPtr,System.IntPtr,OpenTK.Graphics.Wgl.VideoCaptureDeviceAttribute,System.Int32*)": "OpenTK.Graphics.Wgl.Wgl.NV.yml", - "OpenTK.Graphics.Wgl.Wgl.NV.QueryVideoCaptureDeviceNV(System.IntPtr,System.IntPtr,OpenTK.Graphics.Wgl.VideoCaptureDeviceAttribute,System.Int32@)": "OpenTK.Graphics.Wgl.Wgl.NV.yml", - "OpenTK.Graphics.Wgl.Wgl.NV.ReleaseVideoCaptureDeviceNV(System.IntPtr,System.IntPtr)": "OpenTK.Graphics.Wgl.Wgl.NV.yml", - "OpenTK.Graphics.Wgl.Wgl.NV.ReleaseVideoCaptureDeviceNV_(System.IntPtr,System.IntPtr)": "OpenTK.Graphics.Wgl.Wgl.NV.yml", - "OpenTK.Graphics.Wgl.Wgl.NV.ReleaseVideoDeviceNV(System.IntPtr)": "OpenTK.Graphics.Wgl.Wgl.NV.yml", - "OpenTK.Graphics.Wgl.Wgl.NV.ReleaseVideoDeviceNV_(System.IntPtr)": "OpenTK.Graphics.Wgl.Wgl.NV.yml", - "OpenTK.Graphics.Wgl.Wgl.NV.ReleaseVideoImageNV(System.IntPtr,OpenTK.Graphics.Wgl.VideoOutputBuffer)": "OpenTK.Graphics.Wgl.Wgl.NV.yml", - "OpenTK.Graphics.Wgl.Wgl.NV.ReleaseVideoImageNV_(System.IntPtr,OpenTK.Graphics.Wgl.VideoOutputBuffer)": "OpenTK.Graphics.Wgl.Wgl.NV.yml", - "OpenTK.Graphics.Wgl.Wgl.NV.ResetFrameCountNV(System.IntPtr)": "OpenTK.Graphics.Wgl.Wgl.NV.yml", - "OpenTK.Graphics.Wgl.Wgl.NV.ResetFrameCountNV_(System.IntPtr)": "OpenTK.Graphics.Wgl.Wgl.NV.yml", - "OpenTK.Graphics.Wgl.Wgl.NV.SendPbufferToVideoNV(System.IntPtr,OpenTK.Graphics.Wgl.VideoOutputBufferType,System.UInt64*,System.Int32)": "OpenTK.Graphics.Wgl.Wgl.NV.yml", - "OpenTK.Graphics.Wgl.Wgl.NV.SendPbufferToVideoNV(System.IntPtr,OpenTK.Graphics.Wgl.VideoOutputBufferType,System.UInt64@,System.Int32)": "OpenTK.Graphics.Wgl.Wgl.NV.yml", - "OpenTK.Graphics.Wgl.Wgl.OML": "OpenTK.Graphics.Wgl.Wgl.OML.yml", - "OpenTK.Graphics.Wgl.Wgl.OML.GetMscRateOML(System.IntPtr,System.Int32*,System.Int32*)": "OpenTK.Graphics.Wgl.Wgl.OML.yml", - "OpenTK.Graphics.Wgl.Wgl.OML.GetMscRateOML(System.IntPtr,System.Int32@,System.Int32@)": "OpenTK.Graphics.Wgl.Wgl.OML.yml", - "OpenTK.Graphics.Wgl.Wgl.OML.GetSyncValuesOML(System.IntPtr,System.Int64*,System.Int64*,System.Int64*)": "OpenTK.Graphics.Wgl.Wgl.OML.yml", - "OpenTK.Graphics.Wgl.Wgl.OML.GetSyncValuesOML(System.IntPtr,System.Int64@,System.Int64@,System.Int64@)": "OpenTK.Graphics.Wgl.Wgl.OML.yml", - "OpenTK.Graphics.Wgl.Wgl.OML.SwapBuffersMscOML(System.IntPtr,System.Int64,System.Int64,System.Int64)": "OpenTK.Graphics.Wgl.Wgl.OML.yml", - "OpenTK.Graphics.Wgl.Wgl.OML.SwapLayerBuffersMscOML(System.IntPtr,OpenTK.Graphics.Wgl.LayerPlaneMask,System.Int64,System.Int64,System.Int64)": "OpenTK.Graphics.Wgl.Wgl.OML.yml", - "OpenTK.Graphics.Wgl.Wgl.OML.WaitForMscOML(System.IntPtr,System.Int64,System.Int64,System.Int64,System.Int64*,System.Int64*,System.Int64*)": "OpenTK.Graphics.Wgl.Wgl.OML.yml", - "OpenTK.Graphics.Wgl.Wgl.OML.WaitForMscOML(System.IntPtr,System.Int64,System.Int64,System.Int64,System.Int64@,System.Int64@,System.Int64@)": "OpenTK.Graphics.Wgl.Wgl.OML.yml", - "OpenTK.Graphics.Wgl.Wgl.OML.WaitForSbcOML(System.IntPtr,System.Int64,System.Int64*,System.Int64*,System.Int64*)": "OpenTK.Graphics.Wgl.Wgl.OML.yml", - "OpenTK.Graphics.Wgl.Wgl.OML.WaitForSbcOML(System.IntPtr,System.Int64,System.Int64@,System.Int64@,System.Int64@)": "OpenTK.Graphics.Wgl.Wgl.OML.yml", - "OpenTK.Graphics.Wgl.Wgl.RealizeLayerPalette(System.IntPtr,System.Int32,System.Int32)": "OpenTK.Graphics.Wgl.Wgl.yml", - "OpenTK.Graphics.Wgl.Wgl.RealizeLayerPalette_(System.IntPtr,System.Int32,System.Int32)": "OpenTK.Graphics.Wgl.Wgl.yml", - "OpenTK.Graphics.Wgl.Wgl.SetLayerPaletteEntries(System.IntPtr,System.Int32,System.Int32,System.Int32,OpenTK.Graphics.Wgl.ColorRef*)": "OpenTK.Graphics.Wgl.Wgl.yml", - "OpenTK.Graphics.Wgl.Wgl.SetLayerPaletteEntries(System.IntPtr,System.Int32,System.Int32,System.Int32,OpenTK.Graphics.Wgl.ColorRef@)": "OpenTK.Graphics.Wgl.Wgl.yml", - "OpenTK.Graphics.Wgl.Wgl.SetLayerPaletteEntries(System.IntPtr,System.Int32,System.Int32,System.Int32,OpenTK.Graphics.Wgl.ColorRef[])": "OpenTK.Graphics.Wgl.Wgl.yml", - "OpenTK.Graphics.Wgl.Wgl.SetLayerPaletteEntries(System.IntPtr,System.Int32,System.Int32,System.Int32,System.ReadOnlySpan{OpenTK.Graphics.Wgl.ColorRef})": "OpenTK.Graphics.Wgl.Wgl.yml", - "OpenTK.Graphics.Wgl.Wgl.SetPixelFormat(System.IntPtr,System.Int32,OpenTK.Graphics.Wgl.PixelFormatDescriptor*)": "OpenTK.Graphics.Wgl.Wgl.yml", - "OpenTK.Graphics.Wgl.Wgl.SetPixelFormat(System.IntPtr,System.Int32,OpenTK.Graphics.Wgl.PixelFormatDescriptor@)": "OpenTK.Graphics.Wgl.Wgl.yml", - "OpenTK.Graphics.Wgl.Wgl.ShareLists(System.IntPtr,System.IntPtr)": "OpenTK.Graphics.Wgl.Wgl.yml", - "OpenTK.Graphics.Wgl.Wgl.ShareLists_(System.IntPtr,System.IntPtr)": "OpenTK.Graphics.Wgl.Wgl.yml", - "OpenTK.Graphics.Wgl.Wgl.SwapBuffers(System.IntPtr)": "OpenTK.Graphics.Wgl.Wgl.yml", - "OpenTK.Graphics.Wgl.Wgl.SwapBuffers_(System.IntPtr)": "OpenTK.Graphics.Wgl.Wgl.yml", - "OpenTK.Graphics.Wgl.Wgl.SwapLayerBuffers(System.IntPtr,OpenTK.Graphics.Wgl.LayerPlaneMask)": "OpenTK.Graphics.Wgl.Wgl.yml", - "OpenTK.Graphics.Wgl.Wgl.SwapLayerBuffers_(System.IntPtr,OpenTK.Graphics.Wgl.LayerPlaneMask)": "OpenTK.Graphics.Wgl.Wgl.yml", - "OpenTK.Graphics.Wgl.Wgl.UseFontBitmaps(System.IntPtr,System.UInt32,System.UInt32,System.UInt32)": "OpenTK.Graphics.Wgl.Wgl.yml", - "OpenTK.Graphics.Wgl.Wgl.UseFontBitmapsA(System.IntPtr,System.UInt32,System.UInt32,System.UInt32)": "OpenTK.Graphics.Wgl.Wgl.yml", - "OpenTK.Graphics.Wgl.Wgl.UseFontBitmapsA_(System.IntPtr,System.UInt32,System.UInt32,System.UInt32)": "OpenTK.Graphics.Wgl.Wgl.yml", - "OpenTK.Graphics.Wgl.Wgl.UseFontBitmapsW(System.IntPtr,System.UInt32,System.UInt32,System.UInt32)": "OpenTK.Graphics.Wgl.Wgl.yml", - "OpenTK.Graphics.Wgl.Wgl.UseFontBitmapsW_(System.IntPtr,System.UInt32,System.UInt32,System.UInt32)": "OpenTK.Graphics.Wgl.Wgl.yml", - "OpenTK.Graphics.Wgl.Wgl.UseFontBitmaps_(System.IntPtr,System.UInt32,System.UInt32,System.UInt32)": "OpenTK.Graphics.Wgl.Wgl.yml", - "OpenTK.Graphics.Wgl.Wgl.UseFontOutlines(System.IntPtr,System.UInt32,System.UInt32,System.UInt32,System.Single,System.Single,OpenTK.Graphics.Wgl.FontFormat,System.IntPtr)": "OpenTK.Graphics.Wgl.Wgl.yml", - "OpenTK.Graphics.Wgl.Wgl.UseFontOutlinesA(System.IntPtr,System.UInt32,System.UInt32,System.UInt32,System.Single,System.Single,OpenTK.Graphics.Wgl.FontFormat,System.IntPtr)": "OpenTK.Graphics.Wgl.Wgl.yml", - "OpenTK.Graphics.Wgl.Wgl.UseFontOutlinesA_(System.IntPtr,System.UInt32,System.UInt32,System.UInt32,System.Single,System.Single,OpenTK.Graphics.Wgl.FontFormat,System.IntPtr)": "OpenTK.Graphics.Wgl.Wgl.yml", - "OpenTK.Graphics.Wgl.Wgl.UseFontOutlinesW(System.IntPtr,System.UInt32,System.UInt32,System.UInt32,System.Single,System.Single,OpenTK.Graphics.Wgl.FontFormat,System.IntPtr)": "OpenTK.Graphics.Wgl.Wgl.yml", - "OpenTK.Graphics.Wgl.Wgl.UseFontOutlinesW_(System.IntPtr,System.UInt32,System.UInt32,System.UInt32,System.Single,System.Single,OpenTK.Graphics.Wgl.FontFormat,System.IntPtr)": "OpenTK.Graphics.Wgl.Wgl.yml", - "OpenTK.Graphics.Wgl.Wgl.UseFontOutlines_(System.IntPtr,System.UInt32,System.UInt32,System.UInt32,System.Single,System.Single,OpenTK.Graphics.Wgl.FontFormat,System.IntPtr)": "OpenTK.Graphics.Wgl.Wgl.yml", - "OpenTK.Graphics.Wgl.Wgl._3DL": "OpenTK.Graphics.Wgl.Wgl._3DL.yml", - "OpenTK.Graphics.Wgl.Wgl._3DL.SetStereoEmitterState3DL(System.IntPtr,OpenTK.Graphics.Wgl.StereoEmitterState)": "OpenTK.Graphics.Wgl.Wgl._3DL.yml", - "OpenTK.Graphics.Wgl.Wgl._3DL.SetStereoEmitterState3DL_(System.IntPtr,OpenTK.Graphics.Wgl.StereoEmitterState)": "OpenTK.Graphics.Wgl.Wgl._3DL.yml", - "OpenTK.Graphics.Wgl.WglPointers": "OpenTK.Graphics.Wgl.WglPointers.yml", - "OpenTK.Graphics.Wgl.WglPointers._ChoosePixelFormat_fnptr": "OpenTK.Graphics.Wgl.WglPointers.yml", - "OpenTK.Graphics.Wgl.WglPointers._DescribePixelFormat_fnptr": "OpenTK.Graphics.Wgl.WglPointers.yml", - "OpenTK.Graphics.Wgl.WglPointers._GetEnhMetaFilePixelFormat_fnptr": "OpenTK.Graphics.Wgl.WglPointers.yml", - "OpenTK.Graphics.Wgl.WglPointers._GetPixelFormat_fnptr": "OpenTK.Graphics.Wgl.WglPointers.yml", - "OpenTK.Graphics.Wgl.WglPointers._SetPixelFormat_fnptr": "OpenTK.Graphics.Wgl.WglPointers.yml", - "OpenTK.Graphics.Wgl.WglPointers._SwapBuffers_fnptr": "OpenTK.Graphics.Wgl.WglPointers.yml", - "OpenTK.Graphics.Wgl.WglPointers._wglAllocateMemoryNV_fnptr": "OpenTK.Graphics.Wgl.WglPointers.yml", - "OpenTK.Graphics.Wgl.WglPointers._wglAssociateImageBufferEventsI3D_fnptr": "OpenTK.Graphics.Wgl.WglPointers.yml", - "OpenTK.Graphics.Wgl.WglPointers._wglBeginFrameTrackingI3D_fnptr": "OpenTK.Graphics.Wgl.WglPointers.yml", - "OpenTK.Graphics.Wgl.WglPointers._wglBindDisplayColorTableEXT_fnptr": "OpenTK.Graphics.Wgl.WglPointers.yml", - "OpenTK.Graphics.Wgl.WglPointers._wglBindSwapBarrierNV_fnptr": "OpenTK.Graphics.Wgl.WglPointers.yml", - "OpenTK.Graphics.Wgl.WglPointers._wglBindTexImageARB_fnptr": "OpenTK.Graphics.Wgl.WglPointers.yml", - "OpenTK.Graphics.Wgl.WglPointers._wglBindVideoCaptureDeviceNV_fnptr": "OpenTK.Graphics.Wgl.WglPointers.yml", - "OpenTK.Graphics.Wgl.WglPointers._wglBindVideoDeviceNV_fnptr": "OpenTK.Graphics.Wgl.WglPointers.yml", - "OpenTK.Graphics.Wgl.WglPointers._wglBindVideoImageNV_fnptr": "OpenTK.Graphics.Wgl.WglPointers.yml", - "OpenTK.Graphics.Wgl.WglPointers._wglBlitContextFramebufferAMD_fnptr": "OpenTK.Graphics.Wgl.WglPointers.yml", - "OpenTK.Graphics.Wgl.WglPointers._wglChoosePixelFormatARB_fnptr": "OpenTK.Graphics.Wgl.WglPointers.yml", - "OpenTK.Graphics.Wgl.WglPointers._wglChoosePixelFormatEXT_fnptr": "OpenTK.Graphics.Wgl.WglPointers.yml", - "OpenTK.Graphics.Wgl.WglPointers._wglCopyContext_fnptr": "OpenTK.Graphics.Wgl.WglPointers.yml", - "OpenTK.Graphics.Wgl.WglPointers._wglCopyImageSubDataNV_fnptr": "OpenTK.Graphics.Wgl.WglPointers.yml", - "OpenTK.Graphics.Wgl.WglPointers._wglCreateAffinityDCNV_fnptr": "OpenTK.Graphics.Wgl.WglPointers.yml", - "OpenTK.Graphics.Wgl.WglPointers._wglCreateAssociatedContextAMD_fnptr": "OpenTK.Graphics.Wgl.WglPointers.yml", - "OpenTK.Graphics.Wgl.WglPointers._wglCreateAssociatedContextAttribsAMD_fnptr": "OpenTK.Graphics.Wgl.WglPointers.yml", - "OpenTK.Graphics.Wgl.WglPointers._wglCreateBufferRegionARB_fnptr": "OpenTK.Graphics.Wgl.WglPointers.yml", - "OpenTK.Graphics.Wgl.WglPointers._wglCreateContextAttribsARB_fnptr": "OpenTK.Graphics.Wgl.WglPointers.yml", - "OpenTK.Graphics.Wgl.WglPointers._wglCreateContext_fnptr": "OpenTK.Graphics.Wgl.WglPointers.yml", - "OpenTK.Graphics.Wgl.WglPointers._wglCreateDisplayColorTableEXT_fnptr": "OpenTK.Graphics.Wgl.WglPointers.yml", - "OpenTK.Graphics.Wgl.WglPointers._wglCreateImageBufferI3D_fnptr": "OpenTK.Graphics.Wgl.WglPointers.yml", - "OpenTK.Graphics.Wgl.WglPointers._wglCreateLayerContext_fnptr": "OpenTK.Graphics.Wgl.WglPointers.yml", - "OpenTK.Graphics.Wgl.WglPointers._wglCreatePbufferARB_fnptr": "OpenTK.Graphics.Wgl.WglPointers.yml", - "OpenTK.Graphics.Wgl.WglPointers._wglCreatePbufferEXT_fnptr": "OpenTK.Graphics.Wgl.WglPointers.yml", - "OpenTK.Graphics.Wgl.WglPointers._wglDXCloseDeviceNV_fnptr": "OpenTK.Graphics.Wgl.WglPointers.yml", - "OpenTK.Graphics.Wgl.WglPointers._wglDXLockObjectsNV_fnptr": "OpenTK.Graphics.Wgl.WglPointers.yml", - "OpenTK.Graphics.Wgl.WglPointers._wglDXObjectAccessNV_fnptr": "OpenTK.Graphics.Wgl.WglPointers.yml", - "OpenTK.Graphics.Wgl.WglPointers._wglDXOpenDeviceNV_fnptr": "OpenTK.Graphics.Wgl.WglPointers.yml", - "OpenTK.Graphics.Wgl.WglPointers._wglDXRegisterObjectNV_fnptr": "OpenTK.Graphics.Wgl.WglPointers.yml", - "OpenTK.Graphics.Wgl.WglPointers._wglDXSetResourceShareHandleNV_fnptr": "OpenTK.Graphics.Wgl.WglPointers.yml", - "OpenTK.Graphics.Wgl.WglPointers._wglDXUnlockObjectsNV_fnptr": "OpenTK.Graphics.Wgl.WglPointers.yml", - "OpenTK.Graphics.Wgl.WglPointers._wglDXUnregisterObjectNV_fnptr": "OpenTK.Graphics.Wgl.WglPointers.yml", - "OpenTK.Graphics.Wgl.WglPointers._wglDelayBeforeSwapNV_fnptr": "OpenTK.Graphics.Wgl.WglPointers.yml", - "OpenTK.Graphics.Wgl.WglPointers._wglDeleteAssociatedContextAMD_fnptr": "OpenTK.Graphics.Wgl.WglPointers.yml", - "OpenTK.Graphics.Wgl.WglPointers._wglDeleteBufferRegionARB_fnptr": "OpenTK.Graphics.Wgl.WglPointers.yml", - "OpenTK.Graphics.Wgl.WglPointers._wglDeleteContext_fnptr": "OpenTK.Graphics.Wgl.WglPointers.yml", - "OpenTK.Graphics.Wgl.WglPointers._wglDeleteDCNV_fnptr": "OpenTK.Graphics.Wgl.WglPointers.yml", - "OpenTK.Graphics.Wgl.WglPointers._wglDescribeLayerPlane_fnptr": "OpenTK.Graphics.Wgl.WglPointers.yml", - "OpenTK.Graphics.Wgl.WglPointers._wglDestroyDisplayColorTableEXT_fnptr": "OpenTK.Graphics.Wgl.WglPointers.yml", - "OpenTK.Graphics.Wgl.WglPointers._wglDestroyImageBufferI3D_fnptr": "OpenTK.Graphics.Wgl.WglPointers.yml", - "OpenTK.Graphics.Wgl.WglPointers._wglDestroyPbufferARB_fnptr": "OpenTK.Graphics.Wgl.WglPointers.yml", - "OpenTK.Graphics.Wgl.WglPointers._wglDestroyPbufferEXT_fnptr": "OpenTK.Graphics.Wgl.WglPointers.yml", - "OpenTK.Graphics.Wgl.WglPointers._wglDisableFrameLockI3D_fnptr": "OpenTK.Graphics.Wgl.WglPointers.yml", - "OpenTK.Graphics.Wgl.WglPointers._wglDisableGenlockI3D_fnptr": "OpenTK.Graphics.Wgl.WglPointers.yml", - "OpenTK.Graphics.Wgl.WglPointers._wglEnableFrameLockI3D_fnptr": "OpenTK.Graphics.Wgl.WglPointers.yml", - "OpenTK.Graphics.Wgl.WglPointers._wglEnableGenlockI3D_fnptr": "OpenTK.Graphics.Wgl.WglPointers.yml", - "OpenTK.Graphics.Wgl.WglPointers._wglEndFrameTrackingI3D_fnptr": "OpenTK.Graphics.Wgl.WglPointers.yml", - "OpenTK.Graphics.Wgl.WglPointers._wglEnumGpuDevicesNV_fnptr": "OpenTK.Graphics.Wgl.WglPointers.yml", - "OpenTK.Graphics.Wgl.WglPointers._wglEnumGpusFromAffinityDCNV_fnptr": "OpenTK.Graphics.Wgl.WglPointers.yml", - "OpenTK.Graphics.Wgl.WglPointers._wglEnumGpusNV_fnptr": "OpenTK.Graphics.Wgl.WglPointers.yml", - "OpenTK.Graphics.Wgl.WglPointers._wglEnumerateVideoCaptureDevicesNV_fnptr": "OpenTK.Graphics.Wgl.WglPointers.yml", - "OpenTK.Graphics.Wgl.WglPointers._wglEnumerateVideoDevicesNV_fnptr": "OpenTK.Graphics.Wgl.WglPointers.yml", - "OpenTK.Graphics.Wgl.WglPointers._wglFreeMemoryNV_fnptr": "OpenTK.Graphics.Wgl.WglPointers.yml", - "OpenTK.Graphics.Wgl.WglPointers._wglGenlockSampleRateI3D_fnptr": "OpenTK.Graphics.Wgl.WglPointers.yml", - "OpenTK.Graphics.Wgl.WglPointers._wglGenlockSourceDelayI3D_fnptr": "OpenTK.Graphics.Wgl.WglPointers.yml", - "OpenTK.Graphics.Wgl.WglPointers._wglGenlockSourceEdgeI3D_fnptr": "OpenTK.Graphics.Wgl.WglPointers.yml", - "OpenTK.Graphics.Wgl.WglPointers._wglGenlockSourceI3D_fnptr": "OpenTK.Graphics.Wgl.WglPointers.yml", - "OpenTK.Graphics.Wgl.WglPointers._wglGetContextGPUIDAMD_fnptr": "OpenTK.Graphics.Wgl.WglPointers.yml", - "OpenTK.Graphics.Wgl.WglPointers._wglGetCurrentAssociatedContextAMD_fnptr": "OpenTK.Graphics.Wgl.WglPointers.yml", - "OpenTK.Graphics.Wgl.WglPointers._wglGetCurrentContext_fnptr": "OpenTK.Graphics.Wgl.WglPointers.yml", - "OpenTK.Graphics.Wgl.WglPointers._wglGetCurrentDC_fnptr": "OpenTK.Graphics.Wgl.WglPointers.yml", - "OpenTK.Graphics.Wgl.WglPointers._wglGetCurrentReadDCARB_fnptr": "OpenTK.Graphics.Wgl.WglPointers.yml", - "OpenTK.Graphics.Wgl.WglPointers._wglGetCurrentReadDCEXT_fnptr": "OpenTK.Graphics.Wgl.WglPointers.yml", - "OpenTK.Graphics.Wgl.WglPointers._wglGetDigitalVideoParametersI3D_fnptr": "OpenTK.Graphics.Wgl.WglPointers.yml", - "OpenTK.Graphics.Wgl.WglPointers._wglGetExtensionsStringARB_fnptr": "OpenTK.Graphics.Wgl.WglPointers.yml", - "OpenTK.Graphics.Wgl.WglPointers._wglGetExtensionsStringEXT_fnptr": "OpenTK.Graphics.Wgl.WglPointers.yml", - "OpenTK.Graphics.Wgl.WglPointers._wglGetFrameUsageI3D_fnptr": "OpenTK.Graphics.Wgl.WglPointers.yml", - "OpenTK.Graphics.Wgl.WglPointers._wglGetGPUIDsAMD_fnptr": "OpenTK.Graphics.Wgl.WglPointers.yml", - "OpenTK.Graphics.Wgl.WglPointers._wglGetGPUInfoAMD_fnptr": "OpenTK.Graphics.Wgl.WglPointers.yml", - "OpenTK.Graphics.Wgl.WglPointers._wglGetGammaTableI3D_fnptr": "OpenTK.Graphics.Wgl.WglPointers.yml", - "OpenTK.Graphics.Wgl.WglPointers._wglGetGammaTableParametersI3D_fnptr": "OpenTK.Graphics.Wgl.WglPointers.yml", - "OpenTK.Graphics.Wgl.WglPointers._wglGetGenlockSampleRateI3D_fnptr": "OpenTK.Graphics.Wgl.WglPointers.yml", - "OpenTK.Graphics.Wgl.WglPointers._wglGetGenlockSourceDelayI3D_fnptr": "OpenTK.Graphics.Wgl.WglPointers.yml", - "OpenTK.Graphics.Wgl.WglPointers._wglGetGenlockSourceEdgeI3D_fnptr": "OpenTK.Graphics.Wgl.WglPointers.yml", - "OpenTK.Graphics.Wgl.WglPointers._wglGetGenlockSourceI3D_fnptr": "OpenTK.Graphics.Wgl.WglPointers.yml", - "OpenTK.Graphics.Wgl.WglPointers._wglGetLayerPaletteEntries_fnptr": "OpenTK.Graphics.Wgl.WglPointers.yml", - "OpenTK.Graphics.Wgl.WglPointers._wglGetMscRateOML_fnptr": "OpenTK.Graphics.Wgl.WglPointers.yml", - "OpenTK.Graphics.Wgl.WglPointers._wglGetPbufferDCARB_fnptr": "OpenTK.Graphics.Wgl.WglPointers.yml", - "OpenTK.Graphics.Wgl.WglPointers._wglGetPbufferDCEXT_fnptr": "OpenTK.Graphics.Wgl.WglPointers.yml", - "OpenTK.Graphics.Wgl.WglPointers._wglGetPixelFormatAttribfvARB_fnptr": "OpenTK.Graphics.Wgl.WglPointers.yml", - "OpenTK.Graphics.Wgl.WglPointers._wglGetPixelFormatAttribfvEXT_fnptr": "OpenTK.Graphics.Wgl.WglPointers.yml", - "OpenTK.Graphics.Wgl.WglPointers._wglGetPixelFormatAttribivARB_fnptr": "OpenTK.Graphics.Wgl.WglPointers.yml", - "OpenTK.Graphics.Wgl.WglPointers._wglGetPixelFormatAttribivEXT_fnptr": "OpenTK.Graphics.Wgl.WglPointers.yml", - "OpenTK.Graphics.Wgl.WglPointers._wglGetProcAddress_fnptr": "OpenTK.Graphics.Wgl.WglPointers.yml", - "OpenTK.Graphics.Wgl.WglPointers._wglGetSwapIntervalEXT_fnptr": "OpenTK.Graphics.Wgl.WglPointers.yml", - "OpenTK.Graphics.Wgl.WglPointers._wglGetSyncValuesOML_fnptr": "OpenTK.Graphics.Wgl.WglPointers.yml", - "OpenTK.Graphics.Wgl.WglPointers._wglGetVideoDeviceNV_fnptr": "OpenTK.Graphics.Wgl.WglPointers.yml", - "OpenTK.Graphics.Wgl.WglPointers._wglGetVideoInfoNV_fnptr": "OpenTK.Graphics.Wgl.WglPointers.yml", - "OpenTK.Graphics.Wgl.WglPointers._wglIsEnabledFrameLockI3D_fnptr": "OpenTK.Graphics.Wgl.WglPointers.yml", - "OpenTK.Graphics.Wgl.WglPointers._wglIsEnabledGenlockI3D_fnptr": "OpenTK.Graphics.Wgl.WglPointers.yml", - "OpenTK.Graphics.Wgl.WglPointers._wglJoinSwapGroupNV_fnptr": "OpenTK.Graphics.Wgl.WglPointers.yml", - "OpenTK.Graphics.Wgl.WglPointers._wglLoadDisplayColorTableEXT_fnptr": "OpenTK.Graphics.Wgl.WglPointers.yml", - "OpenTK.Graphics.Wgl.WglPointers._wglLockVideoCaptureDeviceNV_fnptr": "OpenTK.Graphics.Wgl.WglPointers.yml", - "OpenTK.Graphics.Wgl.WglPointers._wglMakeAssociatedContextCurrentAMD_fnptr": "OpenTK.Graphics.Wgl.WglPointers.yml", - "OpenTK.Graphics.Wgl.WglPointers._wglMakeContextCurrentARB_fnptr": "OpenTK.Graphics.Wgl.WglPointers.yml", - "OpenTK.Graphics.Wgl.WglPointers._wglMakeContextCurrentEXT_fnptr": "OpenTK.Graphics.Wgl.WglPointers.yml", - "OpenTK.Graphics.Wgl.WglPointers._wglMakeCurrent_fnptr": "OpenTK.Graphics.Wgl.WglPointers.yml", - "OpenTK.Graphics.Wgl.WglPointers._wglQueryCurrentContextNV_fnptr": "OpenTK.Graphics.Wgl.WglPointers.yml", - "OpenTK.Graphics.Wgl.WglPointers._wglQueryFrameCountNV_fnptr": "OpenTK.Graphics.Wgl.WglPointers.yml", - "OpenTK.Graphics.Wgl.WglPointers._wglQueryFrameLockMasterI3D_fnptr": "OpenTK.Graphics.Wgl.WglPointers.yml", - "OpenTK.Graphics.Wgl.WglPointers._wglQueryFrameTrackingI3D_fnptr": "OpenTK.Graphics.Wgl.WglPointers.yml", - "OpenTK.Graphics.Wgl.WglPointers._wglQueryGenlockMaxSourceDelayI3D_fnptr": "OpenTK.Graphics.Wgl.WglPointers.yml", - "OpenTK.Graphics.Wgl.WglPointers._wglQueryMaxSwapGroupsNV_fnptr": "OpenTK.Graphics.Wgl.WglPointers.yml", - "OpenTK.Graphics.Wgl.WglPointers._wglQueryPbufferARB_fnptr": "OpenTK.Graphics.Wgl.WglPointers.yml", - "OpenTK.Graphics.Wgl.WglPointers._wglQueryPbufferEXT_fnptr": "OpenTK.Graphics.Wgl.WglPointers.yml", - "OpenTK.Graphics.Wgl.WglPointers._wglQuerySwapGroupNV_fnptr": "OpenTK.Graphics.Wgl.WglPointers.yml", - "OpenTK.Graphics.Wgl.WglPointers._wglQueryVideoCaptureDeviceNV_fnptr": "OpenTK.Graphics.Wgl.WglPointers.yml", - "OpenTK.Graphics.Wgl.WglPointers._wglRealizeLayerPalette_fnptr": "OpenTK.Graphics.Wgl.WglPointers.yml", - "OpenTK.Graphics.Wgl.WglPointers._wglReleaseImageBufferEventsI3D_fnptr": "OpenTK.Graphics.Wgl.WglPointers.yml", - "OpenTK.Graphics.Wgl.WglPointers._wglReleasePbufferDCARB_fnptr": "OpenTK.Graphics.Wgl.WglPointers.yml", - "OpenTK.Graphics.Wgl.WglPointers._wglReleasePbufferDCEXT_fnptr": "OpenTK.Graphics.Wgl.WglPointers.yml", - "OpenTK.Graphics.Wgl.WglPointers._wglReleaseTexImageARB_fnptr": "OpenTK.Graphics.Wgl.WglPointers.yml", - "OpenTK.Graphics.Wgl.WglPointers._wglReleaseVideoCaptureDeviceNV_fnptr": "OpenTK.Graphics.Wgl.WglPointers.yml", - "OpenTK.Graphics.Wgl.WglPointers._wglReleaseVideoDeviceNV_fnptr": "OpenTK.Graphics.Wgl.WglPointers.yml", - "OpenTK.Graphics.Wgl.WglPointers._wglReleaseVideoImageNV_fnptr": "OpenTK.Graphics.Wgl.WglPointers.yml", - "OpenTK.Graphics.Wgl.WglPointers._wglResetFrameCountNV_fnptr": "OpenTK.Graphics.Wgl.WglPointers.yml", - "OpenTK.Graphics.Wgl.WglPointers._wglRestoreBufferRegionARB_fnptr": "OpenTK.Graphics.Wgl.WglPointers.yml", - "OpenTK.Graphics.Wgl.WglPointers._wglSaveBufferRegionARB_fnptr": "OpenTK.Graphics.Wgl.WglPointers.yml", - "OpenTK.Graphics.Wgl.WglPointers._wglSendPbufferToVideoNV_fnptr": "OpenTK.Graphics.Wgl.WglPointers.yml", - "OpenTK.Graphics.Wgl.WglPointers._wglSetDigitalVideoParametersI3D_fnptr": "OpenTK.Graphics.Wgl.WglPointers.yml", - "OpenTK.Graphics.Wgl.WglPointers._wglSetGammaTableI3D_fnptr": "OpenTK.Graphics.Wgl.WglPointers.yml", - "OpenTK.Graphics.Wgl.WglPointers._wglSetGammaTableParametersI3D_fnptr": "OpenTK.Graphics.Wgl.WglPointers.yml", - "OpenTK.Graphics.Wgl.WglPointers._wglSetLayerPaletteEntries_fnptr": "OpenTK.Graphics.Wgl.WglPointers.yml", - "OpenTK.Graphics.Wgl.WglPointers._wglSetPbufferAttribARB_fnptr": "OpenTK.Graphics.Wgl.WglPointers.yml", - "OpenTK.Graphics.Wgl.WglPointers._wglSetStereoEmitterState3DL_fnptr": "OpenTK.Graphics.Wgl.WglPointers.yml", - "OpenTK.Graphics.Wgl.WglPointers._wglShareLists_fnptr": "OpenTK.Graphics.Wgl.WglPointers.yml", - "OpenTK.Graphics.Wgl.WglPointers._wglSwapBuffersMscOML_fnptr": "OpenTK.Graphics.Wgl.WglPointers.yml", - "OpenTK.Graphics.Wgl.WglPointers._wglSwapIntervalEXT_fnptr": "OpenTK.Graphics.Wgl.WglPointers.yml", - "OpenTK.Graphics.Wgl.WglPointers._wglSwapLayerBuffersMscOML_fnptr": "OpenTK.Graphics.Wgl.WglPointers.yml", - "OpenTK.Graphics.Wgl.WglPointers._wglSwapLayerBuffers_fnptr": "OpenTK.Graphics.Wgl.WglPointers.yml", - "OpenTK.Graphics.Wgl.WglPointers._wglUseFontBitmapsA_fnptr": "OpenTK.Graphics.Wgl.WglPointers.yml", - "OpenTK.Graphics.Wgl.WglPointers._wglUseFontBitmapsW_fnptr": "OpenTK.Graphics.Wgl.WglPointers.yml", - "OpenTK.Graphics.Wgl.WglPointers._wglUseFontBitmaps_fnptr": "OpenTK.Graphics.Wgl.WglPointers.yml", - "OpenTK.Graphics.Wgl.WglPointers._wglUseFontOutlinesA_fnptr": "OpenTK.Graphics.Wgl.WglPointers.yml", - "OpenTK.Graphics.Wgl.WglPointers._wglUseFontOutlinesW_fnptr": "OpenTK.Graphics.Wgl.WglPointers.yml", - "OpenTK.Graphics.Wgl.WglPointers._wglUseFontOutlines_fnptr": "OpenTK.Graphics.Wgl.WglPointers.yml", - "OpenTK.Graphics.Wgl.WglPointers._wglWaitForMscOML_fnptr": "OpenTK.Graphics.Wgl.WglPointers.yml", - "OpenTK.Graphics.Wgl.WglPointers._wglWaitForSbcOML_fnptr": "OpenTK.Graphics.Wgl.WglPointers.yml", - "OpenTK.Graphics.Wgl._GPU_DEVICE": "OpenTK.Graphics.Wgl._GPU_DEVICE.yml", - "OpenTK.Graphics.Wgl._GPU_DEVICE.DeviceName": "OpenTK.Graphics.Wgl._GPU_DEVICE.yml", - "OpenTK.Graphics.Wgl._GPU_DEVICE.DeviceString": "OpenTK.Graphics.Wgl._GPU_DEVICE.yml", - "OpenTK.Graphics.Wgl._GPU_DEVICE.Flags": "OpenTK.Graphics.Wgl._GPU_DEVICE.yml", - "OpenTK.Graphics.Wgl._GPU_DEVICE.cb": "OpenTK.Graphics.Wgl._GPU_DEVICE.yml", - "OpenTK.Graphics.Wgl._GPU_DEVICE.rcVirtualScreen": "OpenTK.Graphics.Wgl._GPU_DEVICE.yml", "OpenTK.IBindingsContext": "OpenTK.IBindingsContext.yml", "OpenTK.IBindingsContext.GetProcAddress(System.String)": "OpenTK.IBindingsContext.yml", "OpenTK.Input.Hid": "OpenTK.Input.Hid.yml", @@ -7797,6 +5581,7 @@ "OpenTK.Platform.ContextValues.HasEqualColorBits(OpenTK.Platform.ContextValues,OpenTK.Platform.ContextValues)": "OpenTK.Platform.ContextValues.yml", "OpenTK.Platform.ContextValues.HasEqualDepthBits(OpenTK.Platform.ContextValues,OpenTK.Platform.ContextValues)": "OpenTK.Platform.ContextValues.yml", "OpenTK.Platform.ContextValues.HasEqualDoubleBuffer(OpenTK.Platform.ContextValues,OpenTK.Platform.ContextValues)": "OpenTK.Platform.ContextValues.yml", + "OpenTK.Platform.ContextValues.HasEqualFramebufferTransparencySupport(OpenTK.Platform.ContextValues,OpenTK.Platform.ContextValues)": "OpenTK.Platform.ContextValues.yml", "OpenTK.Platform.ContextValues.HasEqualMSAA(OpenTK.Platform.ContextValues,OpenTK.Platform.ContextValues)": "OpenTK.Platform.ContextValues.yml", "OpenTK.Platform.ContextValues.HasEqualPixelFormat(OpenTK.Platform.ContextValues,OpenTK.Platform.ContextValues)": "OpenTK.Platform.ContextValues.yml", "OpenTK.Platform.ContextValues.HasEqualSRGB(OpenTK.Platform.ContextValues,OpenTK.Platform.ContextValues)": "OpenTK.Platform.ContextValues.yml", @@ -7815,6 +5600,7 @@ "OpenTK.Platform.ContextValues.SRGBFramebuffer": "OpenTK.Platform.ContextValues.yml", "OpenTK.Platform.ContextValues.Samples": "OpenTK.Platform.ContextValues.yml", "OpenTK.Platform.ContextValues.StencilBits": "OpenTK.Platform.ContextValues.yml", + "OpenTK.Platform.ContextValues.SupportsFramebufferTransparency": "OpenTK.Platform.ContextValues.yml", "OpenTK.Platform.ContextValues.SwapMethod": "OpenTK.Platform.ContextValues.yml", "OpenTK.Platform.ContextValues.ToString": "OpenTK.Platform.ContextValues.yml", "OpenTK.Platform.ContextValues.op_Equality(OpenTK.Platform.ContextValues,OpenTK.Platform.ContextValues)": "OpenTK.Platform.ContextValues.yml", @@ -7896,6 +5682,7 @@ "OpenTK.Platform.IClipboardComponent.GetClipboardFiles": "OpenTK.Platform.IClipboardComponent.yml", "OpenTK.Platform.IClipboardComponent.GetClipboardFormat": "OpenTK.Platform.IClipboardComponent.yml", "OpenTK.Platform.IClipboardComponent.GetClipboardText": "OpenTK.Platform.IClipboardComponent.yml", + "OpenTK.Platform.IClipboardComponent.SetClipboardBitmap(OpenTK.Platform.Bitmap)": "OpenTK.Platform.IClipboardComponent.yml", "OpenTK.Platform.IClipboardComponent.SetClipboardText(System.String)": "OpenTK.Platform.IClipboardComponent.yml", "OpenTK.Platform.IClipboardComponent.SupportedFormats": "OpenTK.Platform.IClipboardComponent.yml", "OpenTK.Platform.ICursorComponent": "OpenTK.Platform.ICursorComponent.yml", @@ -7962,10 +5749,12 @@ "OpenTK.Platform.IMouseComponent": "OpenTK.Platform.IMouseComponent.yml", "OpenTK.Platform.IMouseComponent.CanSetMousePosition": "OpenTK.Platform.IMouseComponent.yml", "OpenTK.Platform.IMouseComponent.EnableRawMouseMotion(OpenTK.Platform.WindowHandle,System.Boolean)": "OpenTK.Platform.IMouseComponent.yml", - "OpenTK.Platform.IMouseComponent.GetMouseState(OpenTK.Platform.MouseState@)": "OpenTK.Platform.IMouseComponent.yml", - "OpenTK.Platform.IMouseComponent.GetPosition(System.Int32@,System.Int32@)": "OpenTK.Platform.IMouseComponent.yml", + "OpenTK.Platform.IMouseComponent.GetGlobalMouseState(OpenTK.Platform.MouseState@)": "OpenTK.Platform.IMouseComponent.yml", + "OpenTK.Platform.IMouseComponent.GetGlobalPosition(OpenTK.Mathematics.Vector2@)": "OpenTK.Platform.IMouseComponent.yml", + "OpenTK.Platform.IMouseComponent.GetMouseState(OpenTK.Platform.WindowHandle,OpenTK.Platform.MouseState@)": "OpenTK.Platform.IMouseComponent.yml", + "OpenTK.Platform.IMouseComponent.GetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2@)": "OpenTK.Platform.IMouseComponent.yml", "OpenTK.Platform.IMouseComponent.IsRawMouseMotionEnabled(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.IMouseComponent.yml", - "OpenTK.Platform.IMouseComponent.SetPosition(System.Int32,System.Int32)": "OpenTK.Platform.IMouseComponent.yml", + "OpenTK.Platform.IMouseComponent.SetGlobalPosition(OpenTK.Mathematics.Vector2)": "OpenTK.Platform.IMouseComponent.yml", "OpenTK.Platform.IMouseComponent.SupportsRawMouseMotion": "OpenTK.Platform.IMouseComponent.yml", "OpenTK.Platform.IOpenGLComponent": "OpenTK.Platform.IOpenGLComponent.yml", "OpenTK.Platform.IOpenGLComponent.CanCreateFromSurface": "OpenTK.Platform.IOpenGLComponent.yml", @@ -7987,11 +5776,13 @@ "OpenTK.Platform.IPalComponent.Logger": "OpenTK.Platform.IPalComponent.yml", "OpenTK.Platform.IPalComponent.Name": "OpenTK.Platform.IPalComponent.yml", "OpenTK.Platform.IPalComponent.Provides": "OpenTK.Platform.IPalComponent.yml", + "OpenTK.Platform.IPalComponent.Uninitialize": "OpenTK.Platform.IPalComponent.yml", "OpenTK.Platform.IShellComponent": "OpenTK.Platform.IShellComponent.yml", - "OpenTK.Platform.IShellComponent.AllowScreenSaver(System.Boolean)": "OpenTK.Platform.IShellComponent.yml", + "OpenTK.Platform.IShellComponent.AllowScreenSaver(System.Boolean,System.String)": "OpenTK.Platform.IShellComponent.yml", "OpenTK.Platform.IShellComponent.GetBatteryInfo(OpenTK.Platform.BatteryInfo@)": "OpenTK.Platform.IShellComponent.yml", "OpenTK.Platform.IShellComponent.GetPreferredTheme": "OpenTK.Platform.IShellComponent.yml", "OpenTK.Platform.IShellComponent.GetSystemMemoryInformation": "OpenTK.Platform.IShellComponent.yml", + "OpenTK.Platform.IShellComponent.IsScreenSaverAllowed": "OpenTK.Platform.IShellComponent.yml", "OpenTK.Platform.ISurfaceComponent": "OpenTK.Platform.ISurfaceComponent.yml", "OpenTK.Platform.ISurfaceComponent.Create": "OpenTK.Platform.ISurfaceComponent.yml", "OpenTK.Platform.ISurfaceComponent.Destroy(OpenTK.Platform.SurfaceHandle)": "OpenTK.Platform.ISurfaceComponent.yml", @@ -8008,39 +5799,42 @@ "OpenTK.Platform.IWindowComponent.CanGetDisplay": "OpenTK.Platform.IWindowComponent.yml", "OpenTK.Platform.IWindowComponent.CanSetCursor": "OpenTK.Platform.IWindowComponent.yml", "OpenTK.Platform.IWindowComponent.CanSetIcon": "OpenTK.Platform.IWindowComponent.yml", - "OpenTK.Platform.IWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@)": "OpenTK.Platform.IWindowComponent.yml", + "OpenTK.Platform.IWindowComponent.ClientToFramebuffer(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@)": "OpenTK.Platform.IWindowComponent.yml", + "OpenTK.Platform.IWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@)": "OpenTK.Platform.IWindowComponent.yml", "OpenTK.Platform.IWindowComponent.Create(OpenTK.Platform.GraphicsApiHints)": "OpenTK.Platform.IWindowComponent.yml", "OpenTK.Platform.IWindowComponent.Destroy(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.IWindowComponent.yml", "OpenTK.Platform.IWindowComponent.FocusWindow(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.IWindowComponent.yml", + "OpenTK.Platform.IWindowComponent.FramebufferToClient(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@)": "OpenTK.Platform.IWindowComponent.yml", "OpenTK.Platform.IWindowComponent.GetBorderStyle(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.IWindowComponent.yml", "OpenTK.Platform.IWindowComponent.GetBounds(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@)": "OpenTK.Platform.IWindowComponent.yml", "OpenTK.Platform.IWindowComponent.GetClientBounds(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@)": "OpenTK.Platform.IWindowComponent.yml", - "OpenTK.Platform.IWindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@)": "OpenTK.Platform.IWindowComponent.yml", - "OpenTK.Platform.IWindowComponent.GetClientSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@)": "OpenTK.Platform.IWindowComponent.yml", + "OpenTK.Platform.IWindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@)": "OpenTK.Platform.IWindowComponent.yml", + "OpenTK.Platform.IWindowComponent.GetClientSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@)": "OpenTK.Platform.IWindowComponent.yml", "OpenTK.Platform.IWindowComponent.GetCursorCaptureMode(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.IWindowComponent.yml", "OpenTK.Platform.IWindowComponent.GetDisplay(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.IWindowComponent.yml", - "OpenTK.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@)": "OpenTK.Platform.IWindowComponent.yml", + "OpenTK.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@)": "OpenTK.Platform.IWindowComponent.yml", "OpenTK.Platform.IWindowComponent.GetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle@)": "OpenTK.Platform.IWindowComponent.yml", "OpenTK.Platform.IWindowComponent.GetIcon(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.IWindowComponent.yml", "OpenTK.Platform.IWindowComponent.GetMaxClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@)": "OpenTK.Platform.IWindowComponent.yml", "OpenTK.Platform.IWindowComponent.GetMinClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@)": "OpenTK.Platform.IWindowComponent.yml", "OpenTK.Platform.IWindowComponent.GetMode(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.IWindowComponent.yml", - "OpenTK.Platform.IWindowComponent.GetPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@)": "OpenTK.Platform.IWindowComponent.yml", + "OpenTK.Platform.IWindowComponent.GetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@)": "OpenTK.Platform.IWindowComponent.yml", "OpenTK.Platform.IWindowComponent.GetScaleFactor(OpenTK.Platform.WindowHandle,System.Single@,System.Single@)": "OpenTK.Platform.IWindowComponent.yml", - "OpenTK.Platform.IWindowComponent.GetSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@)": "OpenTK.Platform.IWindowComponent.yml", + "OpenTK.Platform.IWindowComponent.GetSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@)": "OpenTK.Platform.IWindowComponent.yml", "OpenTK.Platform.IWindowComponent.GetTitle(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.IWindowComponent.yml", + "OpenTK.Platform.IWindowComponent.GetTransparencyMode(OpenTK.Platform.WindowHandle,System.Single@)": "OpenTK.Platform.IWindowComponent.yml", "OpenTK.Platform.IWindowComponent.IsAlwaysOnTop(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.IWindowComponent.yml", "OpenTK.Platform.IWindowComponent.IsFocused(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.IWindowComponent.yml", "OpenTK.Platform.IWindowComponent.IsWindowDestroyed(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.IWindowComponent.yml", "OpenTK.Platform.IWindowComponent.ProcessEvents(System.Boolean)": "OpenTK.Platform.IWindowComponent.yml", "OpenTK.Platform.IWindowComponent.RequestAttention(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.IWindowComponent.yml", - "OpenTK.Platform.IWindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@)": "OpenTK.Platform.IWindowComponent.yml", + "OpenTK.Platform.IWindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@)": "OpenTK.Platform.IWindowComponent.yml", "OpenTK.Platform.IWindowComponent.SetAlwaysOnTop(OpenTK.Platform.WindowHandle,System.Boolean)": "OpenTK.Platform.IWindowComponent.yml", "OpenTK.Platform.IWindowComponent.SetBorderStyle(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowBorderStyle)": "OpenTK.Platform.IWindowComponent.yml", "OpenTK.Platform.IWindowComponent.SetBounds(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32)": "OpenTK.Platform.IWindowComponent.yml", "OpenTK.Platform.IWindowComponent.SetClientBounds(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32)": "OpenTK.Platform.IWindowComponent.yml", - "OpenTK.Platform.IWindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32)": "OpenTK.Platform.IWindowComponent.yml", - "OpenTK.Platform.IWindowComponent.SetClientSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32)": "OpenTK.Platform.IWindowComponent.yml", + "OpenTK.Platform.IWindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i)": "OpenTK.Platform.IWindowComponent.yml", + "OpenTK.Platform.IWindowComponent.SetClientSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i)": "OpenTK.Platform.IWindowComponent.yml", "OpenTK.Platform.IWindowComponent.SetCursor(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorHandle)": "OpenTK.Platform.IWindowComponent.yml", "OpenTK.Platform.IWindowComponent.SetCursorCaptureMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorCaptureMode)": "OpenTK.Platform.IWindowComponent.yml", "OpenTK.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle)": "OpenTK.Platform.IWindowComponent.yml", @@ -8050,12 +5844,14 @@ "OpenTK.Platform.IWindowComponent.SetMaxClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32})": "OpenTK.Platform.IWindowComponent.yml", "OpenTK.Platform.IWindowComponent.SetMinClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32})": "OpenTK.Platform.IWindowComponent.yml", "OpenTK.Platform.IWindowComponent.SetMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowMode)": "OpenTK.Platform.IWindowComponent.yml", - "OpenTK.Platform.IWindowComponent.SetPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32)": "OpenTK.Platform.IWindowComponent.yml", - "OpenTK.Platform.IWindowComponent.SetSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32)": "OpenTK.Platform.IWindowComponent.yml", + "OpenTK.Platform.IWindowComponent.SetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i)": "OpenTK.Platform.IWindowComponent.yml", + "OpenTK.Platform.IWindowComponent.SetSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i)": "OpenTK.Platform.IWindowComponent.yml", "OpenTK.Platform.IWindowComponent.SetTitle(OpenTK.Platform.WindowHandle,System.String)": "OpenTK.Platform.IWindowComponent.yml", + "OpenTK.Platform.IWindowComponent.SetTransparencyMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowTransparencyMode,System.Single)": "OpenTK.Platform.IWindowComponent.yml", "OpenTK.Platform.IWindowComponent.SupportedEvents": "OpenTK.Platform.IWindowComponent.yml", "OpenTK.Platform.IWindowComponent.SupportedModes": "OpenTK.Platform.IWindowComponent.yml", "OpenTK.Platform.IWindowComponent.SupportedStyles": "OpenTK.Platform.IWindowComponent.yml", + "OpenTK.Platform.IWindowComponent.SupportsFramebufferTransparency(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.IWindowComponent.yml", "OpenTK.Platform.IconHandle": "OpenTK.Platform.IconHandle.yml", "OpenTK.Platform.InputLanguageChangedEventArgs": "OpenTK.Platform.InputLanguageChangedEventArgs.yml", "OpenTK.Platform.InputLanguageChangedEventArgs.#ctor(System.String,System.String,System.String,System.String)": "OpenTK.Platform.InputLanguageChangedEventArgs.yml", @@ -8290,7 +6086,7 @@ "OpenTK.Platform.MouseHandle": "OpenTK.Platform.MouseHandle.yml", "OpenTK.Platform.MouseMoveEventArgs": "OpenTK.Platform.MouseMoveEventArgs.yml", "OpenTK.Platform.MouseMoveEventArgs.#ctor(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2)": "OpenTK.Platform.MouseMoveEventArgs.yml", - "OpenTK.Platform.MouseMoveEventArgs.Position": "OpenTK.Platform.MouseMoveEventArgs.yml", + "OpenTK.Platform.MouseMoveEventArgs.ClientPosition": "OpenTK.Platform.MouseMoveEventArgs.yml", "OpenTK.Platform.MouseState": "OpenTK.Platform.MouseState.yml", "OpenTK.Platform.MouseState.Position": "OpenTK.Platform.MouseState.yml", "OpenTK.Platform.MouseState.PressedButtons": "OpenTK.Platform.MouseState.yml", @@ -8319,6 +6115,7 @@ "OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.SetCurrentContext(OpenTK.Platform.OpenGLContextHandle)": "OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.yml", "OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.SetSwapInterval(System.Int32)": "OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.yml", "OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.SwapBuffers(OpenTK.Platform.OpenGLContextHandle)": "OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.yml", + "OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.Uninitialize": "OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.yml", "OpenTK.Platform.Native.Backend": "OpenTK.Platform.Native.Backend.yml", "OpenTK.Platform.Native.Backend.None": "OpenTK.Platform.Native.Backend.yml", "OpenTK.Platform.Native.Backend.SDL": "OpenTK.Platform.Native.Backend.yml", @@ -8353,8 +6150,10 @@ "OpenTK.Platform.Native.SDL.SDLClipboardComponent.Logger": "OpenTK.Platform.Native.SDL.SDLClipboardComponent.yml", "OpenTK.Platform.Native.SDL.SDLClipboardComponent.Name": "OpenTK.Platform.Native.SDL.SDLClipboardComponent.yml", "OpenTK.Platform.Native.SDL.SDLClipboardComponent.Provides": "OpenTK.Platform.Native.SDL.SDLClipboardComponent.yml", + "OpenTK.Platform.Native.SDL.SDLClipboardComponent.SetClipboardBitmap(OpenTK.Platform.Bitmap)": "OpenTK.Platform.Native.SDL.SDLClipboardComponent.yml", "OpenTK.Platform.Native.SDL.SDLClipboardComponent.SetClipboardText(System.String)": "OpenTK.Platform.Native.SDL.SDLClipboardComponent.yml", "OpenTK.Platform.Native.SDL.SDLClipboardComponent.SupportedFormats": "OpenTK.Platform.Native.SDL.SDLClipboardComponent.yml", + "OpenTK.Platform.Native.SDL.SDLClipboardComponent.Uninitialize": "OpenTK.Platform.Native.SDL.SDLClipboardComponent.yml", "OpenTK.Platform.Native.SDL.SDLCursorComponent": "OpenTK.Platform.Native.SDL.SDLCursorComponent.yml", "OpenTK.Platform.Native.SDL.SDLCursorComponent.CanInspectSystemCursors": "OpenTK.Platform.Native.SDL.SDLCursorComponent.yml", "OpenTK.Platform.Native.SDL.SDLCursorComponent.CanLoadSystemCursors": "OpenTK.Platform.Native.SDL.SDLCursorComponent.yml", @@ -8369,6 +6168,7 @@ "OpenTK.Platform.Native.SDL.SDLCursorComponent.Logger": "OpenTK.Platform.Native.SDL.SDLCursorComponent.yml", "OpenTK.Platform.Native.SDL.SDLCursorComponent.Name": "OpenTK.Platform.Native.SDL.SDLCursorComponent.yml", "OpenTK.Platform.Native.SDL.SDLCursorComponent.Provides": "OpenTK.Platform.Native.SDL.SDLCursorComponent.yml", + "OpenTK.Platform.Native.SDL.SDLCursorComponent.Uninitialize": "OpenTK.Platform.Native.SDL.SDLCursorComponent.yml", "OpenTK.Platform.Native.SDL.SDLDisplayComponent": "OpenTK.Platform.Native.SDL.SDLDisplayComponent.yml", "OpenTK.Platform.Native.SDL.SDLDisplayComponent.CanGetVirtualPosition": "OpenTK.Platform.Native.SDL.SDLDisplayComponent.yml", "OpenTK.Platform.Native.SDL.SDLDisplayComponent.CanSetVideoMode": "OpenTK.Platform.Native.SDL.SDLDisplayComponent.yml", @@ -8389,6 +6189,7 @@ "OpenTK.Platform.Native.SDL.SDLDisplayComponent.Open(System.Int32)": "OpenTK.Platform.Native.SDL.SDLDisplayComponent.yml", "OpenTK.Platform.Native.SDL.SDLDisplayComponent.OpenPrimary": "OpenTK.Platform.Native.SDL.SDLDisplayComponent.yml", "OpenTK.Platform.Native.SDL.SDLDisplayComponent.Provides": "OpenTK.Platform.Native.SDL.SDLDisplayComponent.yml", + "OpenTK.Platform.Native.SDL.SDLDisplayComponent.Uninitialize": "OpenTK.Platform.Native.SDL.SDLDisplayComponent.yml", "OpenTK.Platform.Native.SDL.SDLIconComponent": "OpenTK.Platform.Native.SDL.SDLIconComponent.yml", "OpenTK.Platform.Native.SDL.SDLIconComponent.CanLoadSystemIcons": "OpenTK.Platform.Native.SDL.SDLIconComponent.yml", "OpenTK.Platform.Native.SDL.SDLIconComponent.Create(OpenTK.Platform.SystemIconType)": "OpenTK.Platform.Native.SDL.SDLIconComponent.yml", @@ -8401,6 +6202,7 @@ "OpenTK.Platform.Native.SDL.SDLIconComponent.Logger": "OpenTK.Platform.Native.SDL.SDLIconComponent.yml", "OpenTK.Platform.Native.SDL.SDLIconComponent.Name": "OpenTK.Platform.Native.SDL.SDLIconComponent.yml", "OpenTK.Platform.Native.SDL.SDLIconComponent.Provides": "OpenTK.Platform.Native.SDL.SDLIconComponent.yml", + "OpenTK.Platform.Native.SDL.SDLIconComponent.Uninitialize": "OpenTK.Platform.Native.SDL.SDLIconComponent.yml", "OpenTK.Platform.Native.SDL.SDLJoystickComponent": "OpenTK.Platform.Native.SDL.SDLJoystickComponent.yml", "OpenTK.Platform.Native.SDL.SDLJoystickComponent.Close(OpenTK.Platform.JoystickHandle)": "OpenTK.Platform.Native.SDL.SDLJoystickComponent.yml", "OpenTK.Platform.Native.SDL.SDLJoystickComponent.GetAxis(OpenTK.Platform.JoystickHandle,OpenTK.Platform.JoystickAxis)": "OpenTK.Platform.Native.SDL.SDLJoystickComponent.yml", @@ -8418,6 +6220,7 @@ "OpenTK.Platform.Native.SDL.SDLJoystickComponent.SetVibration(OpenTK.Platform.JoystickHandle,System.Single,System.Single)": "OpenTK.Platform.Native.SDL.SDLJoystickComponent.yml", "OpenTK.Platform.Native.SDL.SDLJoystickComponent.TriggerThreshold": "OpenTK.Platform.Native.SDL.SDLJoystickComponent.yml", "OpenTK.Platform.Native.SDL.SDLJoystickComponent.TryGetBatteryInfo(OpenTK.Platform.JoystickHandle,OpenTK.Platform.GamepadBatteryInfo@)": "OpenTK.Platform.Native.SDL.SDLJoystickComponent.yml", + "OpenTK.Platform.Native.SDL.SDLJoystickComponent.Uninitialize": "OpenTK.Platform.Native.SDL.SDLJoystickComponent.yml", "OpenTK.Platform.Native.SDL.SDLKeyboardComponent": "OpenTK.Platform.Native.SDL.SDLKeyboardComponent.yml", "OpenTK.Platform.Native.SDL.SDLKeyboardComponent.BeginIme(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.Native.SDL.SDLKeyboardComponent.yml", "OpenTK.Platform.Native.SDL.SDLKeyboardComponent.EndIme(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.Native.SDL.SDLKeyboardComponent.yml", @@ -8434,19 +6237,23 @@ "OpenTK.Platform.Native.SDL.SDLKeyboardComponent.SetImeRectangle(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32)": "OpenTK.Platform.Native.SDL.SDLKeyboardComponent.yml", "OpenTK.Platform.Native.SDL.SDLKeyboardComponent.SupportsIme": "OpenTK.Platform.Native.SDL.SDLKeyboardComponent.yml", "OpenTK.Platform.Native.SDL.SDLKeyboardComponent.SupportsLayouts": "OpenTK.Platform.Native.SDL.SDLKeyboardComponent.yml", + "OpenTK.Platform.Native.SDL.SDLKeyboardComponent.Uninitialize": "OpenTK.Platform.Native.SDL.SDLKeyboardComponent.yml", "OpenTK.Platform.Native.SDL.SDLMouseComponent": "OpenTK.Platform.Native.SDL.SDLMouseComponent.yml", "OpenTK.Platform.Native.SDL.SDLMouseComponent.CanSetMousePosition": "OpenTK.Platform.Native.SDL.SDLMouseComponent.yml", "OpenTK.Platform.Native.SDL.SDLMouseComponent.EnableRawMouseMotion(OpenTK.Platform.WindowHandle,System.Boolean)": "OpenTK.Platform.Native.SDL.SDLMouseComponent.yml", - "OpenTK.Platform.Native.SDL.SDLMouseComponent.GetMouseState(OpenTK.Platform.MouseState@)": "OpenTK.Platform.Native.SDL.SDLMouseComponent.yml", - "OpenTK.Platform.Native.SDL.SDLMouseComponent.GetPosition(System.Int32@,System.Int32@)": "OpenTK.Platform.Native.SDL.SDLMouseComponent.yml", + "OpenTK.Platform.Native.SDL.SDLMouseComponent.GetGlobalMouseState(OpenTK.Platform.MouseState@)": "OpenTK.Platform.Native.SDL.SDLMouseComponent.yml", + "OpenTK.Platform.Native.SDL.SDLMouseComponent.GetGlobalPosition(OpenTK.Mathematics.Vector2@)": "OpenTK.Platform.Native.SDL.SDLMouseComponent.yml", + "OpenTK.Platform.Native.SDL.SDLMouseComponent.GetMouseState(OpenTK.Platform.WindowHandle,OpenTK.Platform.MouseState@)": "OpenTK.Platform.Native.SDL.SDLMouseComponent.yml", + "OpenTK.Platform.Native.SDL.SDLMouseComponent.GetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2@)": "OpenTK.Platform.Native.SDL.SDLMouseComponent.yml", "OpenTK.Platform.Native.SDL.SDLMouseComponent.Initialize(OpenTK.Platform.ToolkitOptions)": "OpenTK.Platform.Native.SDL.SDLMouseComponent.yml", "OpenTK.Platform.Native.SDL.SDLMouseComponent.IsRawMouseMotionEnabled(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.Native.SDL.SDLMouseComponent.yml", "OpenTK.Platform.Native.SDL.SDLMouseComponent.Logger": "OpenTK.Platform.Native.SDL.SDLMouseComponent.yml", "OpenTK.Platform.Native.SDL.SDLMouseComponent.Name": "OpenTK.Platform.Native.SDL.SDLMouseComponent.yml", "OpenTK.Platform.Native.SDL.SDLMouseComponent.Provides": "OpenTK.Platform.Native.SDL.SDLMouseComponent.yml", - "OpenTK.Platform.Native.SDL.SDLMouseComponent.SetPosition(System.Int32,System.Int32)": "OpenTK.Platform.Native.SDL.SDLMouseComponent.yml", + "OpenTK.Platform.Native.SDL.SDLMouseComponent.SetGlobalPosition(OpenTK.Mathematics.Vector2)": "OpenTK.Platform.Native.SDL.SDLMouseComponent.yml", "OpenTK.Platform.Native.SDL.SDLMouseComponent.SetPositionInWindow(OpenTK.Platform.WindowHandle,System.Int32,System.Int32)": "OpenTK.Platform.Native.SDL.SDLMouseComponent.yml", "OpenTK.Platform.Native.SDL.SDLMouseComponent.SupportsRawMouseMotion": "OpenTK.Platform.Native.SDL.SDLMouseComponent.yml", + "OpenTK.Platform.Native.SDL.SDLMouseComponent.Uninitialize": "OpenTK.Platform.Native.SDL.SDLMouseComponent.yml", "OpenTK.Platform.Native.SDL.SDLOpenGLComponent": "OpenTK.Platform.Native.SDL.SDLOpenGLComponent.yml", "OpenTK.Platform.Native.SDL.SDLOpenGLComponent.CanCreateFromSurface": "OpenTK.Platform.Native.SDL.SDLOpenGLComponent.yml", "OpenTK.Platform.Native.SDL.SDLOpenGLComponent.CanCreateFromWindow": "OpenTK.Platform.Native.SDL.SDLOpenGLComponent.yml", @@ -8466,41 +6273,47 @@ "OpenTK.Platform.Native.SDL.SDLOpenGLComponent.SetCurrentContext(OpenTK.Platform.OpenGLContextHandle)": "OpenTK.Platform.Native.SDL.SDLOpenGLComponent.yml", "OpenTK.Platform.Native.SDL.SDLOpenGLComponent.SetSwapInterval(System.Int32)": "OpenTK.Platform.Native.SDL.SDLOpenGLComponent.yml", "OpenTK.Platform.Native.SDL.SDLOpenGLComponent.SwapBuffers(OpenTK.Platform.OpenGLContextHandle)": "OpenTK.Platform.Native.SDL.SDLOpenGLComponent.yml", + "OpenTK.Platform.Native.SDL.SDLOpenGLComponent.Uninitialize": "OpenTK.Platform.Native.SDL.SDLOpenGLComponent.yml", "OpenTK.Platform.Native.SDL.SDLShellComponent": "OpenTK.Platform.Native.SDL.SDLShellComponent.yml", - "OpenTK.Platform.Native.SDL.SDLShellComponent.AllowScreenSaver(System.Boolean)": "OpenTK.Platform.Native.SDL.SDLShellComponent.yml", + "OpenTK.Platform.Native.SDL.SDLShellComponent.AllowScreenSaver(System.Boolean,System.String)": "OpenTK.Platform.Native.SDL.SDLShellComponent.yml", "OpenTK.Platform.Native.SDL.SDLShellComponent.GetBatteryInfo(OpenTK.Platform.BatteryInfo@)": "OpenTK.Platform.Native.SDL.SDLShellComponent.yml", "OpenTK.Platform.Native.SDL.SDLShellComponent.GetPreferredTheme": "OpenTK.Platform.Native.SDL.SDLShellComponent.yml", "OpenTK.Platform.Native.SDL.SDLShellComponent.GetSystemMemoryInformation": "OpenTK.Platform.Native.SDL.SDLShellComponent.yml", "OpenTK.Platform.Native.SDL.SDLShellComponent.Initialize(OpenTK.Platform.ToolkitOptions)": "OpenTK.Platform.Native.SDL.SDLShellComponent.yml", + "OpenTK.Platform.Native.SDL.SDLShellComponent.IsScreenSaverAllowed": "OpenTK.Platform.Native.SDL.SDLShellComponent.yml", "OpenTK.Platform.Native.SDL.SDLShellComponent.Logger": "OpenTK.Platform.Native.SDL.SDLShellComponent.yml", "OpenTK.Platform.Native.SDL.SDLShellComponent.Name": "OpenTK.Platform.Native.SDL.SDLShellComponent.yml", "OpenTK.Platform.Native.SDL.SDLShellComponent.Provides": "OpenTK.Platform.Native.SDL.SDLShellComponent.yml", + "OpenTK.Platform.Native.SDL.SDLShellComponent.Uninitialize": "OpenTK.Platform.Native.SDL.SDLShellComponent.yml", "OpenTK.Platform.Native.SDL.SDLWindowComponent": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", "OpenTK.Platform.Native.SDL.SDLWindowComponent.CanCaptureCursor": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", "OpenTK.Platform.Native.SDL.SDLWindowComponent.CanGetDisplay": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", "OpenTK.Platform.Native.SDL.SDLWindowComponent.CanSetCursor": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", "OpenTK.Platform.Native.SDL.SDLWindowComponent.CanSetIcon": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", - "OpenTK.Platform.Native.SDL.SDLWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", + "OpenTK.Platform.Native.SDL.SDLWindowComponent.ClientToFramebuffer(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", + "OpenTK.Platform.Native.SDL.SDLWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", "OpenTK.Platform.Native.SDL.SDLWindowComponent.Create(OpenTK.Platform.GraphicsApiHints)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", "OpenTK.Platform.Native.SDL.SDLWindowComponent.Destroy(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", "OpenTK.Platform.Native.SDL.SDLWindowComponent.FocusWindow(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", + "OpenTK.Platform.Native.SDL.SDLWindowComponent.FramebufferToClient(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", "OpenTK.Platform.Native.SDL.SDLWindowComponent.GetBorderStyle(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", "OpenTK.Platform.Native.SDL.SDLWindowComponent.GetBounds(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", "OpenTK.Platform.Native.SDL.SDLWindowComponent.GetClientBounds(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", - "OpenTK.Platform.Native.SDL.SDLWindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", - "OpenTK.Platform.Native.SDL.SDLWindowComponent.GetClientSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", + "OpenTK.Platform.Native.SDL.SDLWindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", + "OpenTK.Platform.Native.SDL.SDLWindowComponent.GetClientSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", "OpenTK.Platform.Native.SDL.SDLWindowComponent.GetCursorCaptureMode(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", "OpenTK.Platform.Native.SDL.SDLWindowComponent.GetDisplay(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", - "OpenTK.Platform.Native.SDL.SDLWindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", + "OpenTK.Platform.Native.SDL.SDLWindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", "OpenTK.Platform.Native.SDL.SDLWindowComponent.GetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle@)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", "OpenTK.Platform.Native.SDL.SDLWindowComponent.GetIcon(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", "OpenTK.Platform.Native.SDL.SDLWindowComponent.GetMaxClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", "OpenTK.Platform.Native.SDL.SDLWindowComponent.GetMinClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", "OpenTK.Platform.Native.SDL.SDLWindowComponent.GetMode(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", - "OpenTK.Platform.Native.SDL.SDLWindowComponent.GetPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", + "OpenTK.Platform.Native.SDL.SDLWindowComponent.GetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", "OpenTK.Platform.Native.SDL.SDLWindowComponent.GetScaleFactor(OpenTK.Platform.WindowHandle,System.Single@,System.Single@)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", - "OpenTK.Platform.Native.SDL.SDLWindowComponent.GetSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", + "OpenTK.Platform.Native.SDL.SDLWindowComponent.GetSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", "OpenTK.Platform.Native.SDL.SDLWindowComponent.GetTitle(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", + "OpenTK.Platform.Native.SDL.SDLWindowComponent.GetTransparencyMode(OpenTK.Platform.WindowHandle,System.Single@)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", "OpenTK.Platform.Native.SDL.SDLWindowComponent.Initialize(OpenTK.Platform.ToolkitOptions)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", "OpenTK.Platform.Native.SDL.SDLWindowComponent.IsAlwaysOnTop(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", "OpenTK.Platform.Native.SDL.SDLWindowComponent.IsFocused(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", @@ -8510,13 +6323,13 @@ "OpenTK.Platform.Native.SDL.SDLWindowComponent.ProcessEvents(System.Boolean)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", "OpenTK.Platform.Native.SDL.SDLWindowComponent.Provides": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", "OpenTK.Platform.Native.SDL.SDLWindowComponent.RequestAttention(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", - "OpenTK.Platform.Native.SDL.SDLWindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", + "OpenTK.Platform.Native.SDL.SDLWindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", "OpenTK.Platform.Native.SDL.SDLWindowComponent.SetAlwaysOnTop(OpenTK.Platform.WindowHandle,System.Boolean)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", "OpenTK.Platform.Native.SDL.SDLWindowComponent.SetBorderStyle(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowBorderStyle)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", "OpenTK.Platform.Native.SDL.SDLWindowComponent.SetBounds(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", "OpenTK.Platform.Native.SDL.SDLWindowComponent.SetClientBounds(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", - "OpenTK.Platform.Native.SDL.SDLWindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", - "OpenTK.Platform.Native.SDL.SDLWindowComponent.SetClientSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", + "OpenTK.Platform.Native.SDL.SDLWindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", + "OpenTK.Platform.Native.SDL.SDLWindowComponent.SetClientSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", "OpenTK.Platform.Native.SDL.SDLWindowComponent.SetCursor(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorHandle)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", "OpenTK.Platform.Native.SDL.SDLWindowComponent.SetCursorCaptureMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorCaptureMode)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", "OpenTK.Platform.Native.SDL.SDLWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", @@ -8526,12 +6339,15 @@ "OpenTK.Platform.Native.SDL.SDLWindowComponent.SetMaxClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32})": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", "OpenTK.Platform.Native.SDL.SDLWindowComponent.SetMinClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32})": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", "OpenTK.Platform.Native.SDL.SDLWindowComponent.SetMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowMode)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", - "OpenTK.Platform.Native.SDL.SDLWindowComponent.SetPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", - "OpenTK.Platform.Native.SDL.SDLWindowComponent.SetSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", + "OpenTK.Platform.Native.SDL.SDLWindowComponent.SetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", + "OpenTK.Platform.Native.SDL.SDLWindowComponent.SetSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", "OpenTK.Platform.Native.SDL.SDLWindowComponent.SetTitle(OpenTK.Platform.WindowHandle,System.String)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", + "OpenTK.Platform.Native.SDL.SDLWindowComponent.SetTransparencyMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowTransparencyMode,System.Single)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", "OpenTK.Platform.Native.SDL.SDLWindowComponent.SupportedEvents": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", "OpenTK.Platform.Native.SDL.SDLWindowComponent.SupportedModes": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", "OpenTK.Platform.Native.SDL.SDLWindowComponent.SupportedStyles": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", + "OpenTK.Platform.Native.SDL.SDLWindowComponent.SupportsFramebufferTransparency(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", + "OpenTK.Platform.Native.SDL.SDLWindowComponent.Uninitialize": "OpenTK.Platform.Native.SDL.SDLWindowComponent.yml", "OpenTK.Platform.Native.Windows": "OpenTK.Platform.Native.Windows.yml", "OpenTK.Platform.Native.Windows.ClipboardComponent": "OpenTK.Platform.Native.Windows.ClipboardComponent.yml", "OpenTK.Platform.Native.Windows.ClipboardComponent.CanIncludeInClipboardHistory": "OpenTK.Platform.Native.Windows.ClipboardComponent.yml", @@ -8549,6 +6365,7 @@ "OpenTK.Platform.Native.Windows.ClipboardComponent.SetClipboardBitmap(OpenTK.Platform.Bitmap)": "OpenTK.Platform.Native.Windows.ClipboardComponent.yml", "OpenTK.Platform.Native.Windows.ClipboardComponent.SetClipboardText(System.String)": "OpenTK.Platform.Native.Windows.ClipboardComponent.yml", "OpenTK.Platform.Native.Windows.ClipboardComponent.SupportedFormats": "OpenTK.Platform.Native.Windows.ClipboardComponent.yml", + "OpenTK.Platform.Native.Windows.ClipboardComponent.Uninitialize": "OpenTK.Platform.Native.Windows.ClipboardComponent.yml", "OpenTK.Platform.Native.Windows.CursorComponent": "OpenTK.Platform.Native.Windows.CursorComponent.yml", "OpenTK.Platform.Native.Windows.CursorComponent.CanInspectSystemCursors": "OpenTK.Platform.Native.Windows.CursorComponent.yml", "OpenTK.Platform.Native.Windows.CursorComponent.CanLoadSystemCursors": "OpenTK.Platform.Native.Windows.CursorComponent.yml", @@ -8567,6 +6384,7 @@ "OpenTK.Platform.Native.Windows.CursorComponent.Logger": "OpenTK.Platform.Native.Windows.CursorComponent.yml", "OpenTK.Platform.Native.Windows.CursorComponent.Name": "OpenTK.Platform.Native.Windows.CursorComponent.yml", "OpenTK.Platform.Native.Windows.CursorComponent.Provides": "OpenTK.Platform.Native.Windows.CursorComponent.yml", + "OpenTK.Platform.Native.Windows.CursorComponent.Uninitialize": "OpenTK.Platform.Native.Windows.CursorComponent.yml", "OpenTK.Platform.Native.Windows.DialogComponent": "OpenTK.Platform.Native.Windows.DialogComponent.yml", "OpenTK.Platform.Native.Windows.DialogComponent.CanTargetFolders": "OpenTK.Platform.Native.Windows.DialogComponent.yml", "OpenTK.Platform.Native.Windows.DialogComponent.Initialize(OpenTK.Platform.ToolkitOptions)": "OpenTK.Platform.Native.Windows.DialogComponent.yml", @@ -8576,6 +6394,7 @@ "OpenTK.Platform.Native.Windows.DialogComponent.ShowMessageBox(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.MessageBoxType,OpenTK.Platform.IconHandle)": "OpenTK.Platform.Native.Windows.DialogComponent.yml", "OpenTK.Platform.Native.Windows.DialogComponent.ShowOpenDialog(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.DialogFileFilter[],OpenTK.Platform.OpenDialogOptions)": "OpenTK.Platform.Native.Windows.DialogComponent.yml", "OpenTK.Platform.Native.Windows.DialogComponent.ShowSaveDialog(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.DialogFileFilter[],OpenTK.Platform.SaveDialogOptions)": "OpenTK.Platform.Native.Windows.DialogComponent.yml", + "OpenTK.Platform.Native.Windows.DialogComponent.Uninitialize": "OpenTK.Platform.Native.Windows.DialogComponent.yml", "OpenTK.Platform.Native.Windows.DisplayComponent": "OpenTK.Platform.Native.Windows.DisplayComponent.yml", "OpenTK.Platform.Native.Windows.DisplayComponent.CanGetVirtualPosition": "OpenTK.Platform.Native.Windows.DisplayComponent.yml", "OpenTK.Platform.Native.Windows.DisplayComponent.Close(OpenTK.Platform.DisplayHandle)": "OpenTK.Platform.Native.Windows.DisplayComponent.yml", @@ -8597,6 +6416,7 @@ "OpenTK.Platform.Native.Windows.DisplayComponent.Open(System.Int32)": "OpenTK.Platform.Native.Windows.DisplayComponent.yml", "OpenTK.Platform.Native.Windows.DisplayComponent.OpenPrimary": "OpenTK.Platform.Native.Windows.DisplayComponent.yml", "OpenTK.Platform.Native.Windows.DisplayComponent.Provides": "OpenTK.Platform.Native.Windows.DisplayComponent.yml", + "OpenTK.Platform.Native.Windows.DisplayComponent.Uninitialize": "OpenTK.Platform.Native.Windows.DisplayComponent.yml", "OpenTK.Platform.Native.Windows.IconComponent": "OpenTK.Platform.Native.Windows.IconComponent.yml", "OpenTK.Platform.Native.Windows.IconComponent.CanLoadSystemIcons": "OpenTK.Platform.Native.Windows.IconComponent.yml", "OpenTK.Platform.Native.Windows.IconComponent.Create(OpenTK.Platform.SystemIconType)": "OpenTK.Platform.Native.Windows.IconComponent.yml", @@ -8612,6 +6432,7 @@ "OpenTK.Platform.Native.Windows.IconComponent.Logger": "OpenTK.Platform.Native.Windows.IconComponent.yml", "OpenTK.Platform.Native.Windows.IconComponent.Name": "OpenTK.Platform.Native.Windows.IconComponent.yml", "OpenTK.Platform.Native.Windows.IconComponent.Provides": "OpenTK.Platform.Native.Windows.IconComponent.yml", + "OpenTK.Platform.Native.Windows.IconComponent.Uninitialize": "OpenTK.Platform.Native.Windows.IconComponent.yml", "OpenTK.Platform.Native.Windows.JoystickComponent": "OpenTK.Platform.Native.Windows.JoystickComponent.yml", "OpenTK.Platform.Native.Windows.JoystickComponent.Close(OpenTK.Platform.JoystickHandle)": "OpenTK.Platform.Native.Windows.JoystickComponent.yml", "OpenTK.Platform.Native.Windows.JoystickComponent.GetAxis(OpenTK.Platform.JoystickHandle,OpenTK.Platform.JoystickAxis)": "OpenTK.Platform.Native.Windows.JoystickComponent.yml", @@ -8633,6 +6454,7 @@ "OpenTK.Platform.Native.Windows.JoystickComponent.SupportsVibration(OpenTK.Platform.JoystickHandle)": "OpenTK.Platform.Native.Windows.JoystickComponent.yml", "OpenTK.Platform.Native.Windows.JoystickComponent.TriggerThreshold": "OpenTK.Platform.Native.Windows.JoystickComponent.yml", "OpenTK.Platform.Native.Windows.JoystickComponent.TryGetBatteryInfo(OpenTK.Platform.JoystickHandle,OpenTK.Platform.GamepadBatteryInfo@)": "OpenTK.Platform.Native.Windows.JoystickComponent.yml", + "OpenTK.Platform.Native.Windows.JoystickComponent.Uninitialize": "OpenTK.Platform.Native.Windows.JoystickComponent.yml", "OpenTK.Platform.Native.Windows.KeyboardComponent": "OpenTK.Platform.Native.Windows.KeyboardComponent.yml", "OpenTK.Platform.Native.Windows.KeyboardComponent.BeginIme(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.Native.Windows.KeyboardComponent.yml", "OpenTK.Platform.Native.Windows.KeyboardComponent.EndIme(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.Native.Windows.KeyboardComponent.yml", @@ -8649,18 +6471,22 @@ "OpenTK.Platform.Native.Windows.KeyboardComponent.SetImeRectangle(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32)": "OpenTK.Platform.Native.Windows.KeyboardComponent.yml", "OpenTK.Platform.Native.Windows.KeyboardComponent.SupportsIme": "OpenTK.Platform.Native.Windows.KeyboardComponent.yml", "OpenTK.Platform.Native.Windows.KeyboardComponent.SupportsLayouts": "OpenTK.Platform.Native.Windows.KeyboardComponent.yml", + "OpenTK.Platform.Native.Windows.KeyboardComponent.Uninitialize": "OpenTK.Platform.Native.Windows.KeyboardComponent.yml", "OpenTK.Platform.Native.Windows.MouseComponent": "OpenTK.Platform.Native.Windows.MouseComponent.yml", "OpenTK.Platform.Native.Windows.MouseComponent.CanSetMousePosition": "OpenTK.Platform.Native.Windows.MouseComponent.yml", "OpenTK.Platform.Native.Windows.MouseComponent.EnableRawMouseMotion(OpenTK.Platform.WindowHandle,System.Boolean)": "OpenTK.Platform.Native.Windows.MouseComponent.yml", - "OpenTK.Platform.Native.Windows.MouseComponent.GetMouseState(OpenTK.Platform.MouseState@)": "OpenTK.Platform.Native.Windows.MouseComponent.yml", - "OpenTK.Platform.Native.Windows.MouseComponent.GetPosition(System.Int32@,System.Int32@)": "OpenTK.Platform.Native.Windows.MouseComponent.yml", + "OpenTK.Platform.Native.Windows.MouseComponent.GetGlobalMouseState(OpenTK.Platform.MouseState@)": "OpenTK.Platform.Native.Windows.MouseComponent.yml", + "OpenTK.Platform.Native.Windows.MouseComponent.GetGlobalPosition(OpenTK.Mathematics.Vector2@)": "OpenTK.Platform.Native.Windows.MouseComponent.yml", + "OpenTK.Platform.Native.Windows.MouseComponent.GetMouseState(OpenTK.Platform.WindowHandle,OpenTK.Platform.MouseState@)": "OpenTK.Platform.Native.Windows.MouseComponent.yml", + "OpenTK.Platform.Native.Windows.MouseComponent.GetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2@)": "OpenTK.Platform.Native.Windows.MouseComponent.yml", "OpenTK.Platform.Native.Windows.MouseComponent.Initialize(OpenTK.Platform.ToolkitOptions)": "OpenTK.Platform.Native.Windows.MouseComponent.yml", "OpenTK.Platform.Native.Windows.MouseComponent.IsRawMouseMotionEnabled(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.Native.Windows.MouseComponent.yml", "OpenTK.Platform.Native.Windows.MouseComponent.Logger": "OpenTK.Platform.Native.Windows.MouseComponent.yml", "OpenTK.Platform.Native.Windows.MouseComponent.Name": "OpenTK.Platform.Native.Windows.MouseComponent.yml", "OpenTK.Platform.Native.Windows.MouseComponent.Provides": "OpenTK.Platform.Native.Windows.MouseComponent.yml", - "OpenTK.Platform.Native.Windows.MouseComponent.SetPosition(System.Int32,System.Int32)": "OpenTK.Platform.Native.Windows.MouseComponent.yml", + "OpenTK.Platform.Native.Windows.MouseComponent.SetGlobalPosition(OpenTK.Mathematics.Vector2)": "OpenTK.Platform.Native.Windows.MouseComponent.yml", "OpenTK.Platform.Native.Windows.MouseComponent.SupportsRawMouseMotion": "OpenTK.Platform.Native.Windows.MouseComponent.yml", + "OpenTK.Platform.Native.Windows.MouseComponent.Uninitialize": "OpenTK.Platform.Native.Windows.MouseComponent.yml", "OpenTK.Platform.Native.Windows.OpenGLComponent": "OpenTK.Platform.Native.Windows.OpenGLComponent.yml", "OpenTK.Platform.Native.Windows.OpenGLComponent.CanCreateFromSurface": "OpenTK.Platform.Native.Windows.OpenGLComponent.yml", "OpenTK.Platform.Native.Windows.OpenGLComponent.CanCreateFromWindow": "OpenTK.Platform.Native.Windows.OpenGLComponent.yml", @@ -8681,53 +6507,59 @@ "OpenTK.Platform.Native.Windows.OpenGLComponent.SetCurrentContext(OpenTK.Platform.OpenGLContextHandle)": "OpenTK.Platform.Native.Windows.OpenGLComponent.yml", "OpenTK.Platform.Native.Windows.OpenGLComponent.SetSwapInterval(System.Int32)": "OpenTK.Platform.Native.Windows.OpenGLComponent.yml", "OpenTK.Platform.Native.Windows.OpenGLComponent.SwapBuffers(OpenTK.Platform.OpenGLContextHandle)": "OpenTK.Platform.Native.Windows.OpenGLComponent.yml", + "OpenTK.Platform.Native.Windows.OpenGLComponent.Uninitialize": "OpenTK.Platform.Native.Windows.OpenGLComponent.yml", "OpenTK.Platform.Native.Windows.OpenGLComponent.UseDwmFlushIfApplicable(OpenTK.Platform.OpenGLContextHandle,System.Boolean)": "OpenTK.Platform.Native.Windows.OpenGLComponent.yml", "OpenTK.Platform.Native.Windows.ShellComponent": "OpenTK.Platform.Native.Windows.ShellComponent.yml", - "OpenTK.Platform.Native.Windows.ShellComponent.AllowScreenSaver(System.Boolean)": "OpenTK.Platform.Native.Windows.ShellComponent.yml", - "OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce": "OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce.yml", - "OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce.Default": "OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce.yml", - "OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce.DoNotRound": "OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce.yml", - "OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce.Round": "OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce.yml", - "OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce.RoundSmall": "OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce.yml", + "OpenTK.Platform.Native.Windows.ShellComponent.AllowScreenSaver(System.Boolean,System.String)": "OpenTK.Platform.Native.Windows.ShellComponent.yml", + "OpenTK.Platform.Native.Windows.ShellComponent.CornerPreference": "OpenTK.Platform.Native.Windows.ShellComponent.CornerPreference.yml", + "OpenTK.Platform.Native.Windows.ShellComponent.CornerPreference.Default": "OpenTK.Platform.Native.Windows.ShellComponent.CornerPreference.yml", + "OpenTK.Platform.Native.Windows.ShellComponent.CornerPreference.DoNotRound": "OpenTK.Platform.Native.Windows.ShellComponent.CornerPreference.yml", + "OpenTK.Platform.Native.Windows.ShellComponent.CornerPreference.Round": "OpenTK.Platform.Native.Windows.ShellComponent.CornerPreference.yml", + "OpenTK.Platform.Native.Windows.ShellComponent.CornerPreference.RoundSmall": "OpenTK.Platform.Native.Windows.ShellComponent.CornerPreference.yml", "OpenTK.Platform.Native.Windows.ShellComponent.GetBatteryInfo(OpenTK.Platform.BatteryInfo@)": "OpenTK.Platform.Native.Windows.ShellComponent.yml", "OpenTK.Platform.Native.Windows.ShellComponent.GetPreferredTheme": "OpenTK.Platform.Native.Windows.ShellComponent.yml", "OpenTK.Platform.Native.Windows.ShellComponent.GetSystemMemoryInformation": "OpenTK.Platform.Native.Windows.ShellComponent.yml", "OpenTK.Platform.Native.Windows.ShellComponent.Initialize(OpenTK.Platform.ToolkitOptions)": "OpenTK.Platform.Native.Windows.ShellComponent.yml", + "OpenTK.Platform.Native.Windows.ShellComponent.IsScreenSaverAllowed": "OpenTK.Platform.Native.Windows.ShellComponent.yml", "OpenTK.Platform.Native.Windows.ShellComponent.Logger": "OpenTK.Platform.Native.Windows.ShellComponent.yml", "OpenTK.Platform.Native.Windows.ShellComponent.Name": "OpenTK.Platform.Native.Windows.ShellComponent.yml", "OpenTK.Platform.Native.Windows.ShellComponent.Provides": "OpenTK.Platform.Native.Windows.ShellComponent.yml", "OpenTK.Platform.Native.Windows.ShellComponent.SetCaptionColor(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Color3{OpenTK.Mathematics.Rgb})": "OpenTK.Platform.Native.Windows.ShellComponent.yml", "OpenTK.Platform.Native.Windows.ShellComponent.SetCaptionTextColor(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Color3{OpenTK.Mathematics.Rgb})": "OpenTK.Platform.Native.Windows.ShellComponent.yml", "OpenTK.Platform.Native.Windows.ShellComponent.SetImmersiveDarkMode(OpenTK.Platform.WindowHandle,System.Boolean)": "OpenTK.Platform.Native.Windows.ShellComponent.yml", - "OpenTK.Platform.Native.Windows.ShellComponent.SetWindowCornerPreference(OpenTK.Platform.WindowHandle,OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce)": "OpenTK.Platform.Native.Windows.ShellComponent.yml", + "OpenTK.Platform.Native.Windows.ShellComponent.SetWindowCornerPreference(OpenTK.Platform.WindowHandle,OpenTK.Platform.Native.Windows.ShellComponent.CornerPreference)": "OpenTK.Platform.Native.Windows.ShellComponent.yml", + "OpenTK.Platform.Native.Windows.ShellComponent.Uninitialize": "OpenTK.Platform.Native.Windows.ShellComponent.yml", "OpenTK.Platform.Native.Windows.WindowComponent": "OpenTK.Platform.Native.Windows.WindowComponent.yml", "OpenTK.Platform.Native.Windows.WindowComponent.CLASS_NAME": "OpenTK.Platform.Native.Windows.WindowComponent.yml", "OpenTK.Platform.Native.Windows.WindowComponent.CanCaptureCursor": "OpenTK.Platform.Native.Windows.WindowComponent.yml", "OpenTK.Platform.Native.Windows.WindowComponent.CanGetDisplay": "OpenTK.Platform.Native.Windows.WindowComponent.yml", "OpenTK.Platform.Native.Windows.WindowComponent.CanSetCursor": "OpenTK.Platform.Native.Windows.WindowComponent.yml", "OpenTK.Platform.Native.Windows.WindowComponent.CanSetIcon": "OpenTK.Platform.Native.Windows.WindowComponent.yml", - "OpenTK.Platform.Native.Windows.WindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", + "OpenTK.Platform.Native.Windows.WindowComponent.ClientToFramebuffer(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", + "OpenTK.Platform.Native.Windows.WindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", "OpenTK.Platform.Native.Windows.WindowComponent.Create(OpenTK.Platform.GraphicsApiHints)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", "OpenTK.Platform.Native.Windows.WindowComponent.Destroy(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", "OpenTK.Platform.Native.Windows.WindowComponent.FocusWindow(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", + "OpenTK.Platform.Native.Windows.WindowComponent.FramebufferToClient(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", "OpenTK.Platform.Native.Windows.WindowComponent.GetBorderStyle(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", "OpenTK.Platform.Native.Windows.WindowComponent.GetBounds(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", "OpenTK.Platform.Native.Windows.WindowComponent.GetClientBounds(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", - "OpenTK.Platform.Native.Windows.WindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", - "OpenTK.Platform.Native.Windows.WindowComponent.GetClientSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", + "OpenTK.Platform.Native.Windows.WindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", + "OpenTK.Platform.Native.Windows.WindowComponent.GetClientSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", "OpenTK.Platform.Native.Windows.WindowComponent.GetCursorCaptureMode(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", "OpenTK.Platform.Native.Windows.WindowComponent.GetDisplay(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", - "OpenTK.Platform.Native.Windows.WindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", + "OpenTK.Platform.Native.Windows.WindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", "OpenTK.Platform.Native.Windows.WindowComponent.GetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle@)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", "OpenTK.Platform.Native.Windows.WindowComponent.GetHWND(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", "OpenTK.Platform.Native.Windows.WindowComponent.GetIcon(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", "OpenTK.Platform.Native.Windows.WindowComponent.GetMaxClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", "OpenTK.Platform.Native.Windows.WindowComponent.GetMinClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", "OpenTK.Platform.Native.Windows.WindowComponent.GetMode(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", - "OpenTK.Platform.Native.Windows.WindowComponent.GetPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", + "OpenTK.Platform.Native.Windows.WindowComponent.GetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", "OpenTK.Platform.Native.Windows.WindowComponent.GetScaleFactor(OpenTK.Platform.WindowHandle,System.Single@,System.Single@)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", - "OpenTK.Platform.Native.Windows.WindowComponent.GetSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", + "OpenTK.Platform.Native.Windows.WindowComponent.GetSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", "OpenTK.Platform.Native.Windows.WindowComponent.GetTitle(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", + "OpenTK.Platform.Native.Windows.WindowComponent.GetTransparencyMode(OpenTK.Platform.WindowHandle,System.Single@)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", "OpenTK.Platform.Native.Windows.WindowComponent.HInstance": "OpenTK.Platform.Native.Windows.WindowComponent.yml", "OpenTK.Platform.Native.Windows.WindowComponent.HelperHWnd": "OpenTK.Platform.Native.Windows.WindowComponent.yml", "OpenTK.Platform.Native.Windows.WindowComponent.Initialize(OpenTK.Platform.ToolkitOptions)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", @@ -8739,13 +6571,13 @@ "OpenTK.Platform.Native.Windows.WindowComponent.ProcessEvents(System.Boolean)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", "OpenTK.Platform.Native.Windows.WindowComponent.Provides": "OpenTK.Platform.Native.Windows.WindowComponent.yml", "OpenTK.Platform.Native.Windows.WindowComponent.RequestAttention(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", - "OpenTK.Platform.Native.Windows.WindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", + "OpenTK.Platform.Native.Windows.WindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", "OpenTK.Platform.Native.Windows.WindowComponent.SetAlwaysOnTop(OpenTK.Platform.WindowHandle,System.Boolean)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", "OpenTK.Platform.Native.Windows.WindowComponent.SetBorderStyle(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowBorderStyle)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", "OpenTK.Platform.Native.Windows.WindowComponent.SetBounds(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", "OpenTK.Platform.Native.Windows.WindowComponent.SetClientBounds(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", - "OpenTK.Platform.Native.Windows.WindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", - "OpenTK.Platform.Native.Windows.WindowComponent.SetClientSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", + "OpenTK.Platform.Native.Windows.WindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", + "OpenTK.Platform.Native.Windows.WindowComponent.SetClientSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", "OpenTK.Platform.Native.Windows.WindowComponent.SetCursor(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorHandle)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", "OpenTK.Platform.Native.Windows.WindowComponent.SetCursorCaptureMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorCaptureMode)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", "OpenTK.Platform.Native.Windows.WindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", @@ -8755,25 +6587,37 @@ "OpenTK.Platform.Native.Windows.WindowComponent.SetMaxClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32})": "OpenTK.Platform.Native.Windows.WindowComponent.yml", "OpenTK.Platform.Native.Windows.WindowComponent.SetMinClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32})": "OpenTK.Platform.Native.Windows.WindowComponent.yml", "OpenTK.Platform.Native.Windows.WindowComponent.SetMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowMode)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", - "OpenTK.Platform.Native.Windows.WindowComponent.SetPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", - "OpenTK.Platform.Native.Windows.WindowComponent.SetSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", + "OpenTK.Platform.Native.Windows.WindowComponent.SetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", + "OpenTK.Platform.Native.Windows.WindowComponent.SetSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", "OpenTK.Platform.Native.Windows.WindowComponent.SetTitle(OpenTK.Platform.WindowHandle,System.String)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", + "OpenTK.Platform.Native.Windows.WindowComponent.SetTransparencyMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowTransparencyMode,System.Single)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", "OpenTK.Platform.Native.Windows.WindowComponent.SupportedEvents": "OpenTK.Platform.Native.Windows.WindowComponent.yml", "OpenTK.Platform.Native.Windows.WindowComponent.SupportedModes": "OpenTK.Platform.Native.Windows.WindowComponent.yml", "OpenTK.Platform.Native.Windows.WindowComponent.SupportedStyles": "OpenTK.Platform.Native.Windows.WindowComponent.yml", + "OpenTK.Platform.Native.Windows.WindowComponent.SupportsFramebufferTransparency(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.Native.Windows.WindowComponent.yml", + "OpenTK.Platform.Native.Windows.WindowComponent.Uninitialize": "OpenTK.Platform.Native.Windows.WindowComponent.yml", "OpenTK.Platform.Native.X11": "OpenTK.Platform.Native.X11.yml", + "OpenTK.Platform.Native.X11.LibXcb": "OpenTK.Platform.Native.X11.LibXcb.yml", "OpenTK.Platform.Native.X11.X11ClipboardComponent": "OpenTK.Platform.Native.X11.X11ClipboardComponent.yml", "OpenTK.Platform.Native.X11.X11ClipboardComponent.GetClipboardAudio": "OpenTK.Platform.Native.X11.X11ClipboardComponent.yml", "OpenTK.Platform.Native.X11.X11ClipboardComponent.GetClipboardBitmap": "OpenTK.Platform.Native.X11.X11ClipboardComponent.yml", "OpenTK.Platform.Native.X11.X11ClipboardComponent.GetClipboardFiles": "OpenTK.Platform.Native.X11.X11ClipboardComponent.yml", "OpenTK.Platform.Native.X11.X11ClipboardComponent.GetClipboardFormat": "OpenTK.Platform.Native.X11.X11ClipboardComponent.yml", "OpenTK.Platform.Native.X11.X11ClipboardComponent.GetClipboardText": "OpenTK.Platform.Native.X11.X11ClipboardComponent.yml", + "OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec": "OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec.yml", + "OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec.CanDecodePng": "OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec.yml", + "OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec.CanEncodePng": "OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec.yml", + "OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec.DecodePng(System.Span{System.Byte},OpenTK.Core.Utility.ILogger)": "OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec.yml", + "OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec.EncodePng(OpenTK.Platform.Bitmap,OpenTK.Core.Utility.ILogger)": "OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec.yml", "OpenTK.Platform.Native.X11.X11ClipboardComponent.Initialize(OpenTK.Platform.ToolkitOptions)": "OpenTK.Platform.Native.X11.X11ClipboardComponent.yml", "OpenTK.Platform.Native.X11.X11ClipboardComponent.Logger": "OpenTK.Platform.Native.X11.X11ClipboardComponent.yml", "OpenTK.Platform.Native.X11.X11ClipboardComponent.Name": "OpenTK.Platform.Native.X11.X11ClipboardComponent.yml", "OpenTK.Platform.Native.X11.X11ClipboardComponent.Provides": "OpenTK.Platform.Native.X11.X11ClipboardComponent.yml", + "OpenTK.Platform.Native.X11.X11ClipboardComponent.SetClipboardBitmap(OpenTK.Platform.Bitmap)": "OpenTK.Platform.Native.X11.X11ClipboardComponent.yml", "OpenTK.Platform.Native.X11.X11ClipboardComponent.SetClipboardText(System.String)": "OpenTK.Platform.Native.X11.X11ClipboardComponent.yml", + "OpenTK.Platform.Native.X11.X11ClipboardComponent.SetPngCodec(OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec)": "OpenTK.Platform.Native.X11.X11ClipboardComponent.yml", "OpenTK.Platform.Native.X11.X11ClipboardComponent.SupportedFormats": "OpenTK.Platform.Native.X11.X11ClipboardComponent.yml", + "OpenTK.Platform.Native.X11.X11ClipboardComponent.Uninitialize": "OpenTK.Platform.Native.X11.X11ClipboardComponent.yml", "OpenTK.Platform.Native.X11.X11CursorComponent": "OpenTK.Platform.Native.X11.X11CursorComponent.yml", "OpenTK.Platform.Native.X11.X11CursorComponent.CanInspectSystemCursors": "OpenTK.Platform.Native.X11.X11CursorComponent.yml", "OpenTK.Platform.Native.X11.X11CursorComponent.CanLoadSystemCursors": "OpenTK.Platform.Native.X11.X11CursorComponent.yml", @@ -8788,6 +6632,7 @@ "OpenTK.Platform.Native.X11.X11CursorComponent.Logger": "OpenTK.Platform.Native.X11.X11CursorComponent.yml", "OpenTK.Platform.Native.X11.X11CursorComponent.Name": "OpenTK.Platform.Native.X11.X11CursorComponent.yml", "OpenTK.Platform.Native.X11.X11CursorComponent.Provides": "OpenTK.Platform.Native.X11.X11CursorComponent.yml", + "OpenTK.Platform.Native.X11.X11CursorComponent.Uninitialize": "OpenTK.Platform.Native.X11.X11CursorComponent.yml", "OpenTK.Platform.Native.X11.X11DialogComponent": "OpenTK.Platform.Native.X11.X11DialogComponent.yml", "OpenTK.Platform.Native.X11.X11DialogComponent.CanTargetFolders": "OpenTK.Platform.Native.X11.X11DialogComponent.yml", "OpenTK.Platform.Native.X11.X11DialogComponent.Initialize(OpenTK.Platform.ToolkitOptions)": "OpenTK.Platform.Native.X11.X11DialogComponent.yml", @@ -8797,6 +6642,7 @@ "OpenTK.Platform.Native.X11.X11DialogComponent.ShowMessageBox(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.MessageBoxType,OpenTK.Platform.IconHandle)": "OpenTK.Platform.Native.X11.X11DialogComponent.yml", "OpenTK.Platform.Native.X11.X11DialogComponent.ShowOpenDialog(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.DialogFileFilter[],OpenTK.Platform.OpenDialogOptions)": "OpenTK.Platform.Native.X11.X11DialogComponent.yml", "OpenTK.Platform.Native.X11.X11DialogComponent.ShowSaveDialog(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.DialogFileFilter[],OpenTK.Platform.SaveDialogOptions)": "OpenTK.Platform.Native.X11.X11DialogComponent.yml", + "OpenTK.Platform.Native.X11.X11DialogComponent.Uninitialize": "OpenTK.Platform.Native.X11.X11DialogComponent.yml", "OpenTK.Platform.Native.X11.X11DisplayComponent": "OpenTK.Platform.Native.X11.X11DisplayComponent.yml", "OpenTK.Platform.Native.X11.X11DisplayComponent.CanGetVirtualPosition": "OpenTK.Platform.Native.X11.X11DisplayComponent.yml", "OpenTK.Platform.Native.X11.X11DisplayComponent.Close(OpenTK.Platform.DisplayHandle)": "OpenTK.Platform.Native.X11.X11DisplayComponent.yml", @@ -8818,6 +6664,7 @@ "OpenTK.Platform.Native.X11.X11DisplayComponent.Open(System.Int32)": "OpenTK.Platform.Native.X11.X11DisplayComponent.yml", "OpenTK.Platform.Native.X11.X11DisplayComponent.OpenPrimary": "OpenTK.Platform.Native.X11.X11DisplayComponent.yml", "OpenTK.Platform.Native.X11.X11DisplayComponent.Provides": "OpenTK.Platform.Native.X11.X11DisplayComponent.yml", + "OpenTK.Platform.Native.X11.X11DisplayComponent.Uninitialize": "OpenTK.Platform.Native.X11.X11DisplayComponent.yml", "OpenTK.Platform.Native.X11.X11IconComponent": "OpenTK.Platform.Native.X11.X11IconComponent.yml", "OpenTK.Platform.Native.X11.X11IconComponent.CanLoadSystemIcons": "OpenTK.Platform.Native.X11.X11IconComponent.yml", "OpenTK.Platform.Native.X11.X11IconComponent.Create(OpenTK.Platform.SystemIconType)": "OpenTK.Platform.Native.X11.X11IconComponent.yml", @@ -8834,6 +6681,7 @@ "OpenTK.Platform.Native.X11.X11IconComponent.Logger": "OpenTK.Platform.Native.X11.X11IconComponent.yml", "OpenTK.Platform.Native.X11.X11IconComponent.Name": "OpenTK.Platform.Native.X11.X11IconComponent.yml", "OpenTK.Platform.Native.X11.X11IconComponent.Provides": "OpenTK.Platform.Native.X11.X11IconComponent.yml", + "OpenTK.Platform.Native.X11.X11IconComponent.Uninitialize": "OpenTK.Platform.Native.X11.X11IconComponent.yml", "OpenTK.Platform.Native.X11.X11KeyboardComponent": "OpenTK.Platform.Native.X11.X11KeyboardComponent.yml", "OpenTK.Platform.Native.X11.X11KeyboardComponent.BeginIme(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.Native.X11.X11KeyboardComponent.yml", "OpenTK.Platform.Native.X11.X11KeyboardComponent.EndIme(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.Native.X11.X11KeyboardComponent.yml", @@ -8850,18 +6698,22 @@ "OpenTK.Platform.Native.X11.X11KeyboardComponent.SetImeRectangle(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32)": "OpenTK.Platform.Native.X11.X11KeyboardComponent.yml", "OpenTK.Platform.Native.X11.X11KeyboardComponent.SupportsIme": "OpenTK.Platform.Native.X11.X11KeyboardComponent.yml", "OpenTK.Platform.Native.X11.X11KeyboardComponent.SupportsLayouts": "OpenTK.Platform.Native.X11.X11KeyboardComponent.yml", + "OpenTK.Platform.Native.X11.X11KeyboardComponent.Uninitialize": "OpenTK.Platform.Native.X11.X11KeyboardComponent.yml", "OpenTK.Platform.Native.X11.X11MouseComponent": "OpenTK.Platform.Native.X11.X11MouseComponent.yml", "OpenTK.Platform.Native.X11.X11MouseComponent.CanSetMousePosition": "OpenTK.Platform.Native.X11.X11MouseComponent.yml", "OpenTK.Platform.Native.X11.X11MouseComponent.EnableRawMouseMotion(OpenTK.Platform.WindowHandle,System.Boolean)": "OpenTK.Platform.Native.X11.X11MouseComponent.yml", - "OpenTK.Platform.Native.X11.X11MouseComponent.GetMouseState(OpenTK.Platform.MouseState@)": "OpenTK.Platform.Native.X11.X11MouseComponent.yml", - "OpenTK.Platform.Native.X11.X11MouseComponent.GetPosition(System.Int32@,System.Int32@)": "OpenTK.Platform.Native.X11.X11MouseComponent.yml", + "OpenTK.Platform.Native.X11.X11MouseComponent.GetGlobalMouseState(OpenTK.Platform.MouseState@)": "OpenTK.Platform.Native.X11.X11MouseComponent.yml", + "OpenTK.Platform.Native.X11.X11MouseComponent.GetGlobalPosition(OpenTK.Mathematics.Vector2@)": "OpenTK.Platform.Native.X11.X11MouseComponent.yml", + "OpenTK.Platform.Native.X11.X11MouseComponent.GetMouseState(OpenTK.Platform.WindowHandle,OpenTK.Platform.MouseState@)": "OpenTK.Platform.Native.X11.X11MouseComponent.yml", + "OpenTK.Platform.Native.X11.X11MouseComponent.GetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2@)": "OpenTK.Platform.Native.X11.X11MouseComponent.yml", "OpenTK.Platform.Native.X11.X11MouseComponent.Initialize(OpenTK.Platform.ToolkitOptions)": "OpenTK.Platform.Native.X11.X11MouseComponent.yml", "OpenTK.Platform.Native.X11.X11MouseComponent.IsRawMouseMotionEnabled(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.Native.X11.X11MouseComponent.yml", "OpenTK.Platform.Native.X11.X11MouseComponent.Logger": "OpenTK.Platform.Native.X11.X11MouseComponent.yml", "OpenTK.Platform.Native.X11.X11MouseComponent.Name": "OpenTK.Platform.Native.X11.X11MouseComponent.yml", "OpenTK.Platform.Native.X11.X11MouseComponent.Provides": "OpenTK.Platform.Native.X11.X11MouseComponent.yml", - "OpenTK.Platform.Native.X11.X11MouseComponent.SetPosition(System.Int32,System.Int32)": "OpenTK.Platform.Native.X11.X11MouseComponent.yml", + "OpenTK.Platform.Native.X11.X11MouseComponent.SetGlobalPosition(OpenTK.Mathematics.Vector2)": "OpenTK.Platform.Native.X11.X11MouseComponent.yml", "OpenTK.Platform.Native.X11.X11MouseComponent.SupportsRawMouseMotion": "OpenTK.Platform.Native.X11.X11MouseComponent.yml", + "OpenTK.Platform.Native.X11.X11MouseComponent.Uninitialize": "OpenTK.Platform.Native.X11.X11MouseComponent.yml", "OpenTK.Platform.Native.X11.X11OpenGLComponent": "OpenTK.Platform.Native.X11.X11OpenGLComponent.yml", "OpenTK.Platform.Native.X11.X11OpenGLComponent.CanCreateFromSurface": "OpenTK.Platform.Native.X11.X11OpenGLComponent.yml", "OpenTK.Platform.Native.X11.X11OpenGLComponent.CanCreateFromWindow": "OpenTK.Platform.Native.X11.X11OpenGLComponent.yml", @@ -8892,44 +6744,59 @@ "OpenTK.Platform.Native.X11.X11OpenGLComponent.SetCurrentContext(OpenTK.Platform.OpenGLContextHandle)": "OpenTK.Platform.Native.X11.X11OpenGLComponent.yml", "OpenTK.Platform.Native.X11.X11OpenGLComponent.SetSwapInterval(System.Int32)": "OpenTK.Platform.Native.X11.X11OpenGLComponent.yml", "OpenTK.Platform.Native.X11.X11OpenGLComponent.SwapBuffers(OpenTK.Platform.OpenGLContextHandle)": "OpenTK.Platform.Native.X11.X11OpenGLComponent.yml", + "OpenTK.Platform.Native.X11.X11OpenGLComponent.Uninitialize": "OpenTK.Platform.Native.X11.X11OpenGLComponent.yml", "OpenTK.Platform.Native.X11.X11ShellComponent": "OpenTK.Platform.Native.X11.X11ShellComponent.yml", - "OpenTK.Platform.Native.X11.X11ShellComponent.AllowScreenSaver(System.Boolean)": "OpenTK.Platform.Native.X11.X11ShellComponent.yml", + "OpenTK.Platform.Native.X11.X11ShellComponent.AllowScreenSaver(System.Boolean,System.String)": "OpenTK.Platform.Native.X11.X11ShellComponent.yml", "OpenTK.Platform.Native.X11.X11ShellComponent.GetBatteryInfo(OpenTK.Platform.BatteryInfo@)": "OpenTK.Platform.Native.X11.X11ShellComponent.yml", "OpenTK.Platform.Native.X11.X11ShellComponent.GetPreferredTheme": "OpenTK.Platform.Native.X11.X11ShellComponent.yml", "OpenTK.Platform.Native.X11.X11ShellComponent.GetSystemMemoryInformation": "OpenTK.Platform.Native.X11.X11ShellComponent.yml", "OpenTK.Platform.Native.X11.X11ShellComponent.Initialize(OpenTK.Platform.ToolkitOptions)": "OpenTK.Platform.Native.X11.X11ShellComponent.yml", + "OpenTK.Platform.Native.X11.X11ShellComponent.IsScreenSaverAllowed": "OpenTK.Platform.Native.X11.X11ShellComponent.yml", "OpenTK.Platform.Native.X11.X11ShellComponent.Logger": "OpenTK.Platform.Native.X11.X11ShellComponent.yml", "OpenTK.Platform.Native.X11.X11ShellComponent.Name": "OpenTK.Platform.Native.X11.X11ShellComponent.yml", "OpenTK.Platform.Native.X11.X11ShellComponent.Provides": "OpenTK.Platform.Native.X11.X11ShellComponent.yml", + "OpenTK.Platform.Native.X11.X11ShellComponent.Uninitialize": "OpenTK.Platform.Native.X11.X11ShellComponent.yml", + "OpenTK.Platform.Native.X11.X11VulkanComponent": "OpenTK.Platform.Native.X11.X11VulkanComponent.yml", + "OpenTK.Platform.Native.X11.X11VulkanComponent.CreateWindowSurface(OpenTK.Graphics.Vulkan.VkInstance,OpenTK.Platform.WindowHandle,OpenTK.Graphics.Vulkan.VkAllocationCallbacks*,OpenTK.Graphics.Vulkan.VkSurfaceKHR@)": "OpenTK.Platform.Native.X11.X11VulkanComponent.yml", + "OpenTK.Platform.Native.X11.X11VulkanComponent.GetPhysicalDevicePresentationSupport(OpenTK.Graphics.Vulkan.VkInstance,OpenTK.Graphics.Vulkan.VkPhysicalDevice,System.UInt32)": "OpenTK.Platform.Native.X11.X11VulkanComponent.yml", + "OpenTK.Platform.Native.X11.X11VulkanComponent.GetRequiredInstanceExtensions": "OpenTK.Platform.Native.X11.X11VulkanComponent.yml", + "OpenTK.Platform.Native.X11.X11VulkanComponent.Initialize(OpenTK.Platform.ToolkitOptions)": "OpenTK.Platform.Native.X11.X11VulkanComponent.yml", + "OpenTK.Platform.Native.X11.X11VulkanComponent.Logger": "OpenTK.Platform.Native.X11.X11VulkanComponent.yml", + "OpenTK.Platform.Native.X11.X11VulkanComponent.Name": "OpenTK.Platform.Native.X11.X11VulkanComponent.yml", + "OpenTK.Platform.Native.X11.X11VulkanComponent.Provides": "OpenTK.Platform.Native.X11.X11VulkanComponent.yml", + "OpenTK.Platform.Native.X11.X11VulkanComponent.Uninitialize": "OpenTK.Platform.Native.X11.X11VulkanComponent.yml", "OpenTK.Platform.Native.X11.X11WindowComponent": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", "OpenTK.Platform.Native.X11.X11WindowComponent.CanCaptureCursor": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", "OpenTK.Platform.Native.X11.X11WindowComponent.CanGetDisplay": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", "OpenTK.Platform.Native.X11.X11WindowComponent.CanSetCursor": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", "OpenTK.Platform.Native.X11.X11WindowComponent.CanSetIcon": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", - "OpenTK.Platform.Native.X11.X11WindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", + "OpenTK.Platform.Native.X11.X11WindowComponent.ClientToFramebuffer(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", + "OpenTK.Platform.Native.X11.X11WindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", "OpenTK.Platform.Native.X11.X11WindowComponent.Create(OpenTK.Platform.GraphicsApiHints)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", "OpenTK.Platform.Native.X11.X11WindowComponent.DemandAttention(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", "OpenTK.Platform.Native.X11.X11WindowComponent.Destroy(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", "OpenTK.Platform.Native.X11.X11WindowComponent.FocusWindow(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", + "OpenTK.Platform.Native.X11.X11WindowComponent.FramebufferToClient(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", "OpenTK.Platform.Native.X11.X11WindowComponent.FreedesktopWindowManagerName": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", "OpenTK.Platform.Native.X11.X11WindowComponent.GetBorderStyle(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", "OpenTK.Platform.Native.X11.X11WindowComponent.GetBounds(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", "OpenTK.Platform.Native.X11.X11WindowComponent.GetClientBounds(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", - "OpenTK.Platform.Native.X11.X11WindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", - "OpenTK.Platform.Native.X11.X11WindowComponent.GetClientSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", + "OpenTK.Platform.Native.X11.X11WindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", + "OpenTK.Platform.Native.X11.X11WindowComponent.GetClientSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", "OpenTK.Platform.Native.X11.X11WindowComponent.GetCursorCaptureMode(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", "OpenTK.Platform.Native.X11.X11WindowComponent.GetDisplay(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", - "OpenTK.Platform.Native.X11.X11WindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", + "OpenTK.Platform.Native.X11.X11WindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", "OpenTK.Platform.Native.X11.X11WindowComponent.GetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle@)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", "OpenTK.Platform.Native.X11.X11WindowComponent.GetIcon(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", "OpenTK.Platform.Native.X11.X11WindowComponent.GetIconifiedTitle(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", "OpenTK.Platform.Native.X11.X11WindowComponent.GetMaxClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", "OpenTK.Platform.Native.X11.X11WindowComponent.GetMinClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", "OpenTK.Platform.Native.X11.X11WindowComponent.GetMode(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", - "OpenTK.Platform.Native.X11.X11WindowComponent.GetPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", + "OpenTK.Platform.Native.X11.X11WindowComponent.GetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", "OpenTK.Platform.Native.X11.X11WindowComponent.GetScaleFactor(OpenTK.Platform.WindowHandle,System.Single@,System.Single@)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", - "OpenTK.Platform.Native.X11.X11WindowComponent.GetSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", + "OpenTK.Platform.Native.X11.X11WindowComponent.GetSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", "OpenTK.Platform.Native.X11.X11WindowComponent.GetTitle(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", + "OpenTK.Platform.Native.X11.X11WindowComponent.GetTransparencyMode(OpenTK.Platform.WindowHandle,System.Single@)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", "OpenTK.Platform.Native.X11.X11WindowComponent.GetX11Display": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", "OpenTK.Platform.Native.X11.X11WindowComponent.GetX11Window(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", "OpenTK.Platform.Native.X11.X11WindowComponent.Initialize(OpenTK.Platform.ToolkitOptions)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", @@ -8942,13 +6809,13 @@ "OpenTK.Platform.Native.X11.X11WindowComponent.ProcessEvents(System.Boolean)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", "OpenTK.Platform.Native.X11.X11WindowComponent.Provides": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", "OpenTK.Platform.Native.X11.X11WindowComponent.RequestAttention(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", - "OpenTK.Platform.Native.X11.X11WindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", + "OpenTK.Platform.Native.X11.X11WindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", "OpenTK.Platform.Native.X11.X11WindowComponent.SetAlwaysOnTop(OpenTK.Platform.WindowHandle,System.Boolean)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", "OpenTK.Platform.Native.X11.X11WindowComponent.SetBorderStyle(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowBorderStyle)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", "OpenTK.Platform.Native.X11.X11WindowComponent.SetBounds(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", "OpenTK.Platform.Native.X11.X11WindowComponent.SetClientBounds(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", - "OpenTK.Platform.Native.X11.X11WindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", - "OpenTK.Platform.Native.X11.X11WindowComponent.SetClientSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", + "OpenTK.Platform.Native.X11.X11WindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", + "OpenTK.Platform.Native.X11.X11WindowComponent.SetClientSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", "OpenTK.Platform.Native.X11.X11WindowComponent.SetCursor(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorHandle)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", "OpenTK.Platform.Native.X11.X11WindowComponent.SetCursorCaptureMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorCaptureMode)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", "OpenTK.Platform.Native.X11.X11WindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", @@ -8959,12 +6826,15 @@ "OpenTK.Platform.Native.X11.X11WindowComponent.SetMaxClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32})": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", "OpenTK.Platform.Native.X11.X11WindowComponent.SetMinClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32})": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", "OpenTK.Platform.Native.X11.X11WindowComponent.SetMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowMode)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", - "OpenTK.Platform.Native.X11.X11WindowComponent.SetPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", - "OpenTK.Platform.Native.X11.X11WindowComponent.SetSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", + "OpenTK.Platform.Native.X11.X11WindowComponent.SetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", + "OpenTK.Platform.Native.X11.X11WindowComponent.SetSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", "OpenTK.Platform.Native.X11.X11WindowComponent.SetTitle(OpenTK.Platform.WindowHandle,System.String)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", + "OpenTK.Platform.Native.X11.X11WindowComponent.SetTransparencyMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowTransparencyMode,System.Single)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", "OpenTK.Platform.Native.X11.X11WindowComponent.SupportedEvents": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", "OpenTK.Platform.Native.X11.X11WindowComponent.SupportedModes": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", "OpenTK.Platform.Native.X11.X11WindowComponent.SupportedStyles": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", + "OpenTK.Platform.Native.X11.X11WindowComponent.SupportsFramebufferTransparency(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", + "OpenTK.Platform.Native.X11.X11WindowComponent.Uninitialize": "OpenTK.Platform.Native.X11.X11WindowComponent.yml", "OpenTK.Platform.Native.macOS": "OpenTK.Platform.Native.macOS.yml", "OpenTK.Platform.Native.macOS.MacOSClipboardComponent": "OpenTK.Platform.Native.macOS.MacOSClipboardComponent.yml", "OpenTK.Platform.Native.macOS.MacOSClipboardComponent.CheckClipboardUpdate": "OpenTK.Platform.Native.macOS.MacOSClipboardComponent.yml", @@ -8980,6 +6850,7 @@ "OpenTK.Platform.Native.macOS.MacOSClipboardComponent.SetClipboardBitmap(OpenTK.Platform.Bitmap)": "OpenTK.Platform.Native.macOS.MacOSClipboardComponent.yml", "OpenTK.Platform.Native.macOS.MacOSClipboardComponent.SetClipboardText(System.String)": "OpenTK.Platform.Native.macOS.MacOSClipboardComponent.yml", "OpenTK.Platform.Native.macOS.MacOSClipboardComponent.SupportedFormats": "OpenTK.Platform.Native.macOS.MacOSClipboardComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSClipboardComponent.Uninitialize": "OpenTK.Platform.Native.macOS.MacOSClipboardComponent.yml", "OpenTK.Platform.Native.macOS.MacOSCursorComponent": "OpenTK.Platform.Native.macOS.MacOSCursorComponent.yml", "OpenTK.Platform.Native.macOS.MacOSCursorComponent.CanInspectSystemCursors": "OpenTK.Platform.Native.macOS.MacOSCursorComponent.yml", "OpenTK.Platform.Native.macOS.MacOSCursorComponent.CanLoadSystemCursors": "OpenTK.Platform.Native.macOS.MacOSCursorComponent.yml", @@ -9005,6 +6876,7 @@ "OpenTK.Platform.Native.macOS.MacOSCursorComponent.Logger": "OpenTK.Platform.Native.macOS.MacOSCursorComponent.yml", "OpenTK.Platform.Native.macOS.MacOSCursorComponent.Name": "OpenTK.Platform.Native.macOS.MacOSCursorComponent.yml", "OpenTK.Platform.Native.macOS.MacOSCursorComponent.Provides": "OpenTK.Platform.Native.macOS.MacOSCursorComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSCursorComponent.Uninitialize": "OpenTK.Platform.Native.macOS.MacOSCursorComponent.yml", "OpenTK.Platform.Native.macOS.MacOSCursorComponent.UpdateAnimation(OpenTK.Platform.CursorHandle,System.Double)": "OpenTK.Platform.Native.macOS.MacOSCursorComponent.yml", "OpenTK.Platform.Native.macOS.MacOSDialogComponent": "OpenTK.Platform.Native.macOS.MacOSDialogComponent.yml", "OpenTK.Platform.Native.macOS.MacOSDialogComponent.CanTargetFolders": "OpenTK.Platform.Native.macOS.MacOSDialogComponent.yml", @@ -9013,8 +6885,12 @@ "OpenTK.Platform.Native.macOS.MacOSDialogComponent.Name": "OpenTK.Platform.Native.macOS.MacOSDialogComponent.yml", "OpenTK.Platform.Native.macOS.MacOSDialogComponent.Provides": "OpenTK.Platform.Native.macOS.MacOSDialogComponent.yml", "OpenTK.Platform.Native.macOS.MacOSDialogComponent.ShowMessageBox(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.MessageBoxType,OpenTK.Platform.IconHandle)": "OpenTK.Platform.Native.macOS.MacOSDialogComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSDialogComponent.ShowMessageBoxNoWindow(System.String,System.String,OpenTK.Platform.MessageBoxType,OpenTK.Platform.IconHandle)": "OpenTK.Platform.Native.macOS.MacOSDialogComponent.yml", "OpenTK.Platform.Native.macOS.MacOSDialogComponent.ShowOpenDialog(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.DialogFileFilter[],OpenTK.Platform.OpenDialogOptions)": "OpenTK.Platform.Native.macOS.MacOSDialogComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSDialogComponent.ShowOpenDialogNoWindow(System.String,System.String,OpenTK.Platform.DialogFileFilter[],OpenTK.Platform.OpenDialogOptions)": "OpenTK.Platform.Native.macOS.MacOSDialogComponent.yml", "OpenTK.Platform.Native.macOS.MacOSDialogComponent.ShowSaveDialog(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.DialogFileFilter[],OpenTK.Platform.SaveDialogOptions)": "OpenTK.Platform.Native.macOS.MacOSDialogComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSDialogComponent.ShowSaveDialogNoWindow(System.String,System.String,OpenTK.Platform.DialogFileFilter[],OpenTK.Platform.SaveDialogOptions)": "OpenTK.Platform.Native.macOS.MacOSDialogComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSDialogComponent.Uninitialize": "OpenTK.Platform.Native.macOS.MacOSDialogComponent.yml", "OpenTK.Platform.Native.macOS.MacOSDisplayComponent": "OpenTK.Platform.Native.macOS.MacOSDisplayComponent.yml", "OpenTK.Platform.Native.macOS.MacOSDisplayComponent.CanGetVirtualPosition": "OpenTK.Platform.Native.macOS.MacOSDisplayComponent.yml", "OpenTK.Platform.Native.macOS.MacOSDisplayComponent.Close(OpenTK.Platform.DisplayHandle)": "OpenTK.Platform.Native.macOS.MacOSDisplayComponent.yml", @@ -9038,6 +6914,7 @@ "OpenTK.Platform.Native.macOS.MacOSDisplayComponent.Open(System.Int32)": "OpenTK.Platform.Native.macOS.MacOSDisplayComponent.yml", "OpenTK.Platform.Native.macOS.MacOSDisplayComponent.OpenPrimary": "OpenTK.Platform.Native.macOS.MacOSDisplayComponent.yml", "OpenTK.Platform.Native.macOS.MacOSDisplayComponent.Provides": "OpenTK.Platform.Native.macOS.MacOSDisplayComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSDisplayComponent.Uninitialize": "OpenTK.Platform.Native.macOS.MacOSDisplayComponent.yml", "OpenTK.Platform.Native.macOS.MacOSIconComponent": "OpenTK.Platform.Native.macOS.MacOSIconComponent.yml", "OpenTK.Platform.Native.macOS.MacOSIconComponent.CanLoadSystemIcons": "OpenTK.Platform.Native.macOS.MacOSIconComponent.yml", "OpenTK.Platform.Native.macOS.MacOSIconComponent.Create(OpenTK.Platform.SystemIconType)": "OpenTK.Platform.Native.macOS.MacOSIconComponent.yml", @@ -9049,6 +6926,7 @@ "OpenTK.Platform.Native.macOS.MacOSIconComponent.Logger": "OpenTK.Platform.Native.macOS.MacOSIconComponent.yml", "OpenTK.Platform.Native.macOS.MacOSIconComponent.Name": "OpenTK.Platform.Native.macOS.MacOSIconComponent.yml", "OpenTK.Platform.Native.macOS.MacOSIconComponent.Provides": "OpenTK.Platform.Native.macOS.MacOSIconComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSIconComponent.Uninitialize": "OpenTK.Platform.Native.macOS.MacOSIconComponent.yml", "OpenTK.Platform.Native.macOS.MacOSKeyboardComponent": "OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.yml", "OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.BeginIme(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.yml", "OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.EndIme(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.yml", @@ -9065,18 +6943,22 @@ "OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.SetImeRectangle(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32)": "OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.yml", "OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.SupportsIme": "OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.yml", "OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.SupportsLayouts": "OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.Uninitialize": "OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.yml", "OpenTK.Platform.Native.macOS.MacOSMouseComponent": "OpenTK.Platform.Native.macOS.MacOSMouseComponent.yml", "OpenTK.Platform.Native.macOS.MacOSMouseComponent.CanSetMousePosition": "OpenTK.Platform.Native.macOS.MacOSMouseComponent.yml", "OpenTK.Platform.Native.macOS.MacOSMouseComponent.EnableRawMouseMotion(OpenTK.Platform.WindowHandle,System.Boolean)": "OpenTK.Platform.Native.macOS.MacOSMouseComponent.yml", - "OpenTK.Platform.Native.macOS.MacOSMouseComponent.GetMouseState(OpenTK.Platform.MouseState@)": "OpenTK.Platform.Native.macOS.MacOSMouseComponent.yml", - "OpenTK.Platform.Native.macOS.MacOSMouseComponent.GetPosition(System.Int32@,System.Int32@)": "OpenTK.Platform.Native.macOS.MacOSMouseComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSMouseComponent.GetGlobalMouseState(OpenTK.Platform.MouseState@)": "OpenTK.Platform.Native.macOS.MacOSMouseComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSMouseComponent.GetGlobalPosition(OpenTK.Mathematics.Vector2@)": "OpenTK.Platform.Native.macOS.MacOSMouseComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSMouseComponent.GetMouseState(OpenTK.Platform.WindowHandle,OpenTK.Platform.MouseState@)": "OpenTK.Platform.Native.macOS.MacOSMouseComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSMouseComponent.GetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2@)": "OpenTK.Platform.Native.macOS.MacOSMouseComponent.yml", "OpenTK.Platform.Native.macOS.MacOSMouseComponent.Initialize(OpenTK.Platform.ToolkitOptions)": "OpenTK.Platform.Native.macOS.MacOSMouseComponent.yml", "OpenTK.Platform.Native.macOS.MacOSMouseComponent.IsRawMouseMotionEnabled(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.Native.macOS.MacOSMouseComponent.yml", "OpenTK.Platform.Native.macOS.MacOSMouseComponent.Logger": "OpenTK.Platform.Native.macOS.MacOSMouseComponent.yml", "OpenTK.Platform.Native.macOS.MacOSMouseComponent.Name": "OpenTK.Platform.Native.macOS.MacOSMouseComponent.yml", "OpenTK.Platform.Native.macOS.MacOSMouseComponent.Provides": "OpenTK.Platform.Native.macOS.MacOSMouseComponent.yml", - "OpenTK.Platform.Native.macOS.MacOSMouseComponent.SetPosition(System.Int32,System.Int32)": "OpenTK.Platform.Native.macOS.MacOSMouseComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSMouseComponent.SetGlobalPosition(OpenTK.Mathematics.Vector2)": "OpenTK.Platform.Native.macOS.MacOSMouseComponent.yml", "OpenTK.Platform.Native.macOS.MacOSMouseComponent.SupportsRawMouseMotion": "OpenTK.Platform.Native.macOS.MacOSMouseComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSMouseComponent.Uninitialize": "OpenTK.Platform.Native.macOS.MacOSMouseComponent.yml", "OpenTK.Platform.Native.macOS.MacOSOpenGLComponent": "OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.yml", "OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.CanCreateFromSurface": "OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.yml", "OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.CanCreateFromWindow": "OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.yml", @@ -9097,32 +6979,47 @@ "OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.SetCurrentContext(OpenTK.Platform.OpenGLContextHandle)": "OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.yml", "OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.SetSwapInterval(System.Int32)": "OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.yml", "OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.SwapBuffers(OpenTK.Platform.OpenGLContextHandle)": "OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.Uninitialize": "OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.yml", "OpenTK.Platform.Native.macOS.MacOSShellComponent": "OpenTK.Platform.Native.macOS.MacOSShellComponent.yml", - "OpenTK.Platform.Native.macOS.MacOSShellComponent.AllowScreenSaver(System.Boolean)": "OpenTK.Platform.Native.macOS.MacOSShellComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSShellComponent.AllowScreenSaver(System.Boolean,System.String)": "OpenTK.Platform.Native.macOS.MacOSShellComponent.yml", "OpenTK.Platform.Native.macOS.MacOSShellComponent.GetBatteryInfo(OpenTK.Platform.BatteryInfo@)": "OpenTK.Platform.Native.macOS.MacOSShellComponent.yml", "OpenTK.Platform.Native.macOS.MacOSShellComponent.GetPreferredTheme": "OpenTK.Platform.Native.macOS.MacOSShellComponent.yml", "OpenTK.Platform.Native.macOS.MacOSShellComponent.GetSystemMemoryInformation": "OpenTK.Platform.Native.macOS.MacOSShellComponent.yml", "OpenTK.Platform.Native.macOS.MacOSShellComponent.Initialize(OpenTK.Platform.ToolkitOptions)": "OpenTK.Platform.Native.macOS.MacOSShellComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSShellComponent.IsScreenSaverAllowed": "OpenTK.Platform.Native.macOS.MacOSShellComponent.yml", "OpenTK.Platform.Native.macOS.MacOSShellComponent.Logger": "OpenTK.Platform.Native.macOS.MacOSShellComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSShellComponent.NSLog(System.String)": "OpenTK.Platform.Native.macOS.MacOSShellComponent.yml", "OpenTK.Platform.Native.macOS.MacOSShellComponent.Name": "OpenTK.Platform.Native.macOS.MacOSShellComponent.yml", "OpenTK.Platform.Native.macOS.MacOSShellComponent.Provides": "OpenTK.Platform.Native.macOS.MacOSShellComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSShellComponent.Uninitialize": "OpenTK.Platform.Native.macOS.MacOSShellComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSVulkanComponent": "OpenTK.Platform.Native.macOS.MacOSVulkanComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSVulkanComponent.CreateWindowSurface(OpenTK.Graphics.Vulkan.VkInstance,OpenTK.Platform.WindowHandle,OpenTK.Graphics.Vulkan.VkAllocationCallbacks*,OpenTK.Graphics.Vulkan.VkSurfaceKHR@)": "OpenTK.Platform.Native.macOS.MacOSVulkanComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSVulkanComponent.GetPhysicalDevicePresentationSupport(OpenTK.Graphics.Vulkan.VkInstance,OpenTK.Graphics.Vulkan.VkPhysicalDevice,System.UInt32)": "OpenTK.Platform.Native.macOS.MacOSVulkanComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSVulkanComponent.GetRequiredInstanceExtensions": "OpenTK.Platform.Native.macOS.MacOSVulkanComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSVulkanComponent.Initialize(OpenTK.Platform.ToolkitOptions)": "OpenTK.Platform.Native.macOS.MacOSVulkanComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSVulkanComponent.Logger": "OpenTK.Platform.Native.macOS.MacOSVulkanComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSVulkanComponent.Name": "OpenTK.Platform.Native.macOS.MacOSVulkanComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSVulkanComponent.Provides": "OpenTK.Platform.Native.macOS.MacOSVulkanComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSVulkanComponent.Uninitialize": "OpenTK.Platform.Native.macOS.MacOSVulkanComponent.yml", "OpenTK.Platform.Native.macOS.MacOSWindowComponent": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", "OpenTK.Platform.Native.macOS.MacOSWindowComponent.CanCaptureCursor": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", "OpenTK.Platform.Native.macOS.MacOSWindowComponent.CanGetDisplay": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", "OpenTK.Platform.Native.macOS.MacOSWindowComponent.CanSetCursor": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", "OpenTK.Platform.Native.macOS.MacOSWindowComponent.CanSetIcon": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", - "OpenTK.Platform.Native.macOS.MacOSWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSWindowComponent.ClientToFramebuffer(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", "OpenTK.Platform.Native.macOS.MacOSWindowComponent.Create(OpenTK.Platform.GraphicsApiHints)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", "OpenTK.Platform.Native.macOS.MacOSWindowComponent.Destroy(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", "OpenTK.Platform.Native.macOS.MacOSWindowComponent.FocusWindow(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSWindowComponent.FramebufferToClient(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", "OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetBorderStyle(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", "OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetBounds(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", "OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetClientBounds(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", - "OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", - "OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetClientSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetClientSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", "OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetCursorCaptureMode(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", "OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetDisplay(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", - "OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", "OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle@)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", "OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetIcon(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", "OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetMaxClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", @@ -9130,10 +7027,11 @@ "OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetMode(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", "OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetNSView(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", "OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetNSWindow(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", - "OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", "OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetScaleFactor(OpenTK.Platform.WindowHandle,System.Single@,System.Single@)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", - "OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", "OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetTitle(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetTransparencyMode(OpenTK.Platform.WindowHandle,System.Single@)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", "OpenTK.Platform.Native.macOS.MacOSWindowComponent.Initialize(OpenTK.Platform.ToolkitOptions)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", "OpenTK.Platform.Native.macOS.MacOSWindowComponent.IsAlwaysOnTop(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", "OpenTK.Platform.Native.macOS.MacOSWindowComponent.IsFocused(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", @@ -9143,13 +7041,13 @@ "OpenTK.Platform.Native.macOS.MacOSWindowComponent.ProcessEvents(System.Boolean)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", "OpenTK.Platform.Native.macOS.MacOSWindowComponent.Provides": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", "OpenTK.Platform.Native.macOS.MacOSWindowComponent.RequestAttention(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", - "OpenTK.Platform.Native.macOS.MacOSWindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSWindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", "OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetAlwaysOnTop(OpenTK.Platform.WindowHandle,System.Boolean)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", "OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetBorderStyle(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowBorderStyle)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", "OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetBounds(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", "OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetClientBounds(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", - "OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", - "OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetClientSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetClientSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", "OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetCursor(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorHandle)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", "OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetCursorCaptureMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorCaptureMode)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", "OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetDockIcon(OpenTK.Platform.WindowHandle,OpenTK.Platform.IconHandle)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", @@ -9161,12 +7059,15 @@ "OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetMaxClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32})": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", "OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetMinClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32})": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", "OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowMode)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", - "OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", - "OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", "OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetTitle(OpenTK.Platform.WindowHandle,System.String)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetTransparencyMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowTransparencyMode,System.Single)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", "OpenTK.Platform.Native.macOS.MacOSWindowComponent.SupportedEvents": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", "OpenTK.Platform.Native.macOS.MacOSWindowComponent.SupportedModes": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", "OpenTK.Platform.Native.macOS.MacOSWindowComponent.SupportedStyles": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSWindowComponent.SupportsFramebufferTransparency(OpenTK.Platform.WindowHandle)": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", + "OpenTK.Platform.Native.macOS.MacOSWindowComponent.Uninitialize": "OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml", "OpenTK.Platform.OpenDialogOptions": "OpenTK.Platform.OpenDialogOptions.yml", "OpenTK.Platform.OpenDialogOptions.AllowMultiSelect": "OpenTK.Platform.OpenDialogOptions.yml", "OpenTK.Platform.OpenDialogOptions.SelectDirectory": "OpenTK.Platform.OpenDialogOptions.yml", @@ -9194,6 +7095,7 @@ "OpenTK.Platform.OpenGLGraphicsApiHints.Selector": "OpenTK.Platform.OpenGLGraphicsApiHints.yml", "OpenTK.Platform.OpenGLGraphicsApiHints.SharedContext": "OpenTK.Platform.OpenGLGraphicsApiHints.yml", "OpenTK.Platform.OpenGLGraphicsApiHints.StencilBits": "OpenTK.Platform.OpenGLGraphicsApiHints.yml", + "OpenTK.Platform.OpenGLGraphicsApiHints.SupportTransparentFramebufferX11": "OpenTK.Platform.OpenGLGraphicsApiHints.yml", "OpenTK.Platform.OpenGLGraphicsApiHints.SwapMethod": "OpenTK.Platform.OpenGLGraphicsApiHints.yml", "OpenTK.Platform.OpenGLGraphicsApiHints.UseFlushControl": "OpenTK.Platform.OpenGLGraphicsApiHints.yml", "OpenTK.Platform.OpenGLGraphicsApiHints.UseSelectorOnMacOS": "OpenTK.Platform.OpenGLGraphicsApiHints.yml", @@ -9487,6 +7389,7 @@ "OpenTK.Platform.Toolkit.OpenGL": "OpenTK.Platform.Toolkit.yml", "OpenTK.Platform.Toolkit.Shell": "OpenTK.Platform.Toolkit.yml", "OpenTK.Platform.Toolkit.Surface": "OpenTK.Platform.Toolkit.yml", + "OpenTK.Platform.Toolkit.Uninit": "OpenTK.Platform.Toolkit.yml", "OpenTK.Platform.Toolkit.Vulkan": "OpenTK.Platform.Toolkit.yml", "OpenTK.Platform.Toolkit.Window": "OpenTK.Platform.Toolkit.yml", "OpenTK.Platform.ToolkitOptions": "OpenTK.Platform.ToolkitOptions.yml", @@ -9494,6 +7397,7 @@ "OpenTK.Platform.ToolkitOptions.Logger": "OpenTK.Platform.ToolkitOptions.yml", "OpenTK.Platform.ToolkitOptions.MacOS": "OpenTK.Platform.ToolkitOptions.yml", "OpenTK.Platform.ToolkitOptions.MacOSOptions": "OpenTK.Platform.ToolkitOptions.MacOSOptions.yml", + "OpenTK.Platform.ToolkitOptions.MacOSOptions.ActiveAppOnStart": "OpenTK.Platform.ToolkitOptions.MacOSOptions.yml", "OpenTK.Platform.ToolkitOptions.Windows": "OpenTK.Platform.ToolkitOptions.yml", "OpenTK.Platform.ToolkitOptions.WindowsOptions": "OpenTK.Platform.ToolkitOptions.WindowsOptions.yml", "OpenTK.Platform.ToolkitOptions.WindowsOptions.EnableVisualStyles": "OpenTK.Platform.ToolkitOptions.WindowsOptions.yml", @@ -9507,6 +7411,8 @@ "OpenTK.Platform.VideoMode.RefreshRate": "OpenTK.Platform.VideoMode.yml", "OpenTK.Platform.VideoMode.ToString": "OpenTK.Platform.VideoMode.yml", "OpenTK.Platform.VideoMode.Width": "OpenTK.Platform.VideoMode.yml", + "OpenTK.Platform.VulkanGraphicsApiHints": "OpenTK.Platform.VulkanGraphicsApiHints.yml", + "OpenTK.Platform.VulkanGraphicsApiHints.Api": "OpenTK.Platform.VulkanGraphicsApiHints.yml", "OpenTK.Platform.WindowBorderStyle": "OpenTK.Platform.WindowBorderStyle.yml", "OpenTK.Platform.WindowBorderStyle.Borderless": "OpenTK.Platform.WindowBorderStyle.yml", "OpenTK.Platform.WindowBorderStyle.FixedBorder": "OpenTK.Platform.WindowBorderStyle.yml", @@ -9544,6 +7450,10 @@ "OpenTK.Platform.WindowScaleChangeEventArgs.#ctor(OpenTK.Platform.WindowHandle,System.Single,System.Single)": "OpenTK.Platform.WindowScaleChangeEventArgs.yml", "OpenTK.Platform.WindowScaleChangeEventArgs.ScaleX": "OpenTK.Platform.WindowScaleChangeEventArgs.yml", "OpenTK.Platform.WindowScaleChangeEventArgs.ScaleY": "OpenTK.Platform.WindowScaleChangeEventArgs.yml", + "OpenTK.Platform.WindowTransparencyMode": "OpenTK.Platform.WindowTransparencyMode.yml", + "OpenTK.Platform.WindowTransparencyMode.Opaque": "OpenTK.Platform.WindowTransparencyMode.yml", + "OpenTK.Platform.WindowTransparencyMode.TransparentFramebuffer": "OpenTK.Platform.WindowTransparencyMode.yml", + "OpenTK.Platform.WindowTransparencyMode.TransparentWindow": "OpenTK.Platform.WindowTransparencyMode.yml", "OpenTK.Windowing.Common": "OpenTK.Windowing.Common.yml", "OpenTK.Windowing.Common.ContextAPI": "OpenTK.Windowing.Common.ContextAPI.yml", "OpenTK.Windowing.Common.ContextAPI.NoAPI": "OpenTK.Windowing.Common.ContextAPI.yml", diff --git a/api/OpenTK.Core.Native.MarshalTk.yml b/api/OpenTK.Core.Native.MarshalTk.yml index b15a61ee..e7bde894 100644 --- a/api/OpenTK.Core.Native.MarshalTk.yml +++ b/api/OpenTK.Core.Native.MarshalTk.yml @@ -10,7 +10,7 @@ items: - OpenTK.Core.Native.MarshalTk.FreeStringPtr(System.IntPtr) - OpenTK.Core.Native.MarshalTk.MarshalAnsiStringArrayPtrToStringArray(System.Byte**,System.UInt32) - OpenTK.Core.Native.MarshalTk.MarshalPtrToString(System.IntPtr) - - OpenTK.Core.Native.MarshalTk.MarshalStringArrayToAnsiStringArrayPtr(System.Span{System.String},System.UInt32@) + - OpenTK.Core.Native.MarshalTk.MarshalStringArrayToAnsiStringArrayPtr(System.ReadOnlySpan{System.String},System.UInt32@) - OpenTK.Core.Native.MarshalTk.MarshalStringArrayToPtr(System.String[]) - OpenTK.Core.Native.MarshalTk.MarshalStringToPtr(System.String) langs: @@ -260,16 +260,16 @@ items: nameWithType.vb: MarshalTk.MarshalAnsiStringArrayPtrToStringArray(Byte**, UInteger) fullName.vb: OpenTK.Core.Native.MarshalTk.MarshalAnsiStringArrayPtrToStringArray(Byte**, UInteger) name.vb: MarshalAnsiStringArrayPtrToStringArray(Byte**, UInteger) -- uid: OpenTK.Core.Native.MarshalTk.MarshalStringArrayToAnsiStringArrayPtr(System.Span{System.String},System.UInt32@) - commentId: M:OpenTK.Core.Native.MarshalTk.MarshalStringArrayToAnsiStringArrayPtr(System.Span{System.String},System.UInt32@) - id: MarshalStringArrayToAnsiStringArrayPtr(System.Span{System.String},System.UInt32@) +- uid: OpenTK.Core.Native.MarshalTk.MarshalStringArrayToAnsiStringArrayPtr(System.ReadOnlySpan{System.String},System.UInt32@) + commentId: M:OpenTK.Core.Native.MarshalTk.MarshalStringArrayToAnsiStringArrayPtr(System.ReadOnlySpan{System.String},System.UInt32@) + id: MarshalStringArrayToAnsiStringArrayPtr(System.ReadOnlySpan{System.String},System.UInt32@) parent: OpenTK.Core.Native.MarshalTk langs: - csharp - vb - name: MarshalStringArrayToAnsiStringArrayPtr(Span, out uint) - nameWithType: MarshalTk.MarshalStringArrayToAnsiStringArrayPtr(Span, out uint) - fullName: OpenTK.Core.Native.MarshalTk.MarshalStringArrayToAnsiStringArrayPtr(System.Span, out uint) + name: MarshalStringArrayToAnsiStringArrayPtr(ReadOnlySpan, out uint) + nameWithType: MarshalTk.MarshalStringArrayToAnsiStringArrayPtr(ReadOnlySpan, out uint) + fullName: OpenTK.Core.Native.MarshalTk.MarshalStringArrayToAnsiStringArrayPtr(System.ReadOnlySpan, out uint) type: Method source: id: MarshalStringArrayToAnsiStringArrayPtr @@ -284,10 +284,10 @@ items: Use to free the array. example: [] syntax: - content: public static byte** MarshalStringArrayToAnsiStringArrayPtr(Span stringArray, out uint count) + content: public static byte** MarshalStringArrayToAnsiStringArrayPtr(ReadOnlySpan stringArray, out uint count) parameters: - id: stringArray - type: System.Span{System.String} + type: System.ReadOnlySpan{System.String} description: The span of strings to marshal. - id: count type: System.UInt32 @@ -295,11 +295,11 @@ items: return: type: System.Byte** description: The unmanaged ansi string array. - content.vb: Public Shared Function MarshalStringArrayToAnsiStringArrayPtr(stringArray As Span(Of String), count As UInteger) As Byte** + content.vb: Public Shared Function MarshalStringArrayToAnsiStringArrayPtr(stringArray As ReadOnlySpan(Of String), count As UInteger) As Byte** overload: OpenTK.Core.Native.MarshalTk.MarshalStringArrayToAnsiStringArrayPtr* - nameWithType.vb: MarshalTk.MarshalStringArrayToAnsiStringArrayPtr(Span(Of String), UInteger) - fullName.vb: OpenTK.Core.Native.MarshalTk.MarshalStringArrayToAnsiStringArrayPtr(System.Span(Of String), UInteger) - name.vb: MarshalStringArrayToAnsiStringArrayPtr(Span(Of String), UInteger) + nameWithType.vb: MarshalTk.MarshalStringArrayToAnsiStringArrayPtr(ReadOnlySpan(Of String), UInteger) + fullName.vb: OpenTK.Core.Native.MarshalTk.MarshalStringArrayToAnsiStringArrayPtr(System.ReadOnlySpan(Of String), UInteger) + name.vb: MarshalStringArrayToAnsiStringArrayPtr(ReadOnlySpan(Of String), UInteger) - uid: OpenTK.Core.Native.MarshalTk.FreeAnsiStringArrayPtr(System.Byte**,System.UInt32) commentId: M:OpenTK.Core.Native.MarshalTk.FreeAnsiStringArrayPtr(System.Byte**,System.UInt32) id: FreeAnsiStringArrayPtr(System.Byte**,System.UInt32) @@ -318,7 +318,7 @@ items: assemblies: - OpenTK.Core namespace: OpenTK.Core.Native - summary: Frees unmanaged ansi string arrays allocated by . + summary: Frees unmanaged ansi string arrays allocated by . example: [] syntax: content: public static void FreeAnsiStringArrayPtr(byte** strArrayPtr, uint count) @@ -782,26 +782,26 @@ references: - name: ) - uid: OpenTK.Core.Native.MarshalTk.MarshalStringArrayToAnsiStringArrayPtr* commentId: Overload:OpenTK.Core.Native.MarshalTk.MarshalStringArrayToAnsiStringArrayPtr - href: OpenTK.Core.Native.MarshalTk.html#OpenTK_Core_Native_MarshalTk_MarshalStringArrayToAnsiStringArrayPtr_System_Span_System_String__System_UInt32__ + href: OpenTK.Core.Native.MarshalTk.html#OpenTK_Core_Native_MarshalTk_MarshalStringArrayToAnsiStringArrayPtr_System_ReadOnlySpan_System_String__System_UInt32__ name: MarshalStringArrayToAnsiStringArrayPtr nameWithType: MarshalTk.MarshalStringArrayToAnsiStringArrayPtr fullName: OpenTK.Core.Native.MarshalTk.MarshalStringArrayToAnsiStringArrayPtr -- uid: System.Span{System.String} - commentId: T:System.Span{System.String} +- uid: System.ReadOnlySpan{System.String} + commentId: T:System.ReadOnlySpan{System.String} parent: System - definition: System.Span`1 - href: https://learn.microsoft.com/dotnet/api/system.span-1 - name: Span - nameWithType: Span - fullName: System.Span - nameWithType.vb: Span(Of String) - fullName.vb: System.Span(Of String) - name.vb: Span(Of String) + definition: System.ReadOnlySpan`1 + href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 + name: ReadOnlySpan + nameWithType: ReadOnlySpan + fullName: System.ReadOnlySpan + nameWithType.vb: ReadOnlySpan(Of String) + fullName.vb: System.ReadOnlySpan(Of String) + name.vb: ReadOnlySpan(Of String) spec.csharp: - - uid: System.Span`1 - name: Span + - uid: System.ReadOnlySpan`1 + name: ReadOnlySpan isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.span-1 + href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - name: < - uid: System.String name: string @@ -809,10 +809,10 @@ references: href: https://learn.microsoft.com/dotnet/api/system.string - name: '>' spec.vb: - - uid: System.Span`1 - name: Span + - uid: System.ReadOnlySpan`1 + name: ReadOnlySpan isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.span-1 + href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - name: ( - name: Of - name: " " @@ -821,53 +821,53 @@ references: isExternal: true href: https://learn.microsoft.com/dotnet/api/system.string - name: ) -- uid: System.Span`1 - commentId: T:System.Span`1 +- uid: System.ReadOnlySpan`1 + commentId: T:System.ReadOnlySpan`1 isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.span-1 - name: Span - nameWithType: Span - fullName: System.Span - nameWithType.vb: Span(Of T) - fullName.vb: System.Span(Of T) - name.vb: Span(Of T) + href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 + name: ReadOnlySpan + nameWithType: ReadOnlySpan + fullName: System.ReadOnlySpan + nameWithType.vb: ReadOnlySpan(Of T) + fullName.vb: System.ReadOnlySpan(Of T) + name.vb: ReadOnlySpan(Of T) spec.csharp: - - uid: System.Span`1 - name: Span + - uid: System.ReadOnlySpan`1 + name: ReadOnlySpan isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.span-1 + href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - name: < - name: T - name: '>' spec.vb: - - uid: System.Span`1 - name: Span + - uid: System.ReadOnlySpan`1 + name: ReadOnlySpan isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.span-1 + href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - name: ( - name: Of - name: " " - name: T - name: ) -- uid: OpenTK.Core.Native.MarshalTk.MarshalStringArrayToAnsiStringArrayPtr(System.Span{System.String},System.UInt32@) - commentId: M:OpenTK.Core.Native.MarshalTk.MarshalStringArrayToAnsiStringArrayPtr(System.Span{System.String},System.UInt32@) +- uid: OpenTK.Core.Native.MarshalTk.MarshalStringArrayToAnsiStringArrayPtr(System.ReadOnlySpan{System.String},System.UInt32@) + commentId: M:OpenTK.Core.Native.MarshalTk.MarshalStringArrayToAnsiStringArrayPtr(System.ReadOnlySpan{System.String},System.UInt32@) isExternal: true - href: OpenTK.Core.Native.MarshalTk.html#OpenTK_Core_Native_MarshalTk_MarshalStringArrayToAnsiStringArrayPtr_System_Span_System_String__System_UInt32__ - name: MarshalStringArrayToAnsiStringArrayPtr(Span, out uint) - nameWithType: MarshalTk.MarshalStringArrayToAnsiStringArrayPtr(Span, out uint) - fullName: OpenTK.Core.Native.MarshalTk.MarshalStringArrayToAnsiStringArrayPtr(System.Span, out uint) - nameWithType.vb: MarshalTk.MarshalStringArrayToAnsiStringArrayPtr(Span(Of String), UInteger) - fullName.vb: OpenTK.Core.Native.MarshalTk.MarshalStringArrayToAnsiStringArrayPtr(System.Span(Of String), UInteger) - name.vb: MarshalStringArrayToAnsiStringArrayPtr(Span(Of String), UInteger) + href: OpenTK.Core.Native.MarshalTk.html#OpenTK_Core_Native_MarshalTk_MarshalStringArrayToAnsiStringArrayPtr_System_ReadOnlySpan_System_String__System_UInt32__ + name: MarshalStringArrayToAnsiStringArrayPtr(ReadOnlySpan, out uint) + nameWithType: MarshalTk.MarshalStringArrayToAnsiStringArrayPtr(ReadOnlySpan, out uint) + fullName: OpenTK.Core.Native.MarshalTk.MarshalStringArrayToAnsiStringArrayPtr(System.ReadOnlySpan, out uint) + nameWithType.vb: MarshalTk.MarshalStringArrayToAnsiStringArrayPtr(ReadOnlySpan(Of String), UInteger) + fullName.vb: OpenTK.Core.Native.MarshalTk.MarshalStringArrayToAnsiStringArrayPtr(System.ReadOnlySpan(Of String), UInteger) + name.vb: MarshalStringArrayToAnsiStringArrayPtr(ReadOnlySpan(Of String), UInteger) spec.csharp: - - uid: OpenTK.Core.Native.MarshalTk.MarshalStringArrayToAnsiStringArrayPtr(System.Span{System.String},System.UInt32@) + - uid: OpenTK.Core.Native.MarshalTk.MarshalStringArrayToAnsiStringArrayPtr(System.ReadOnlySpan{System.String},System.UInt32@) name: MarshalStringArrayToAnsiStringArrayPtr - href: OpenTK.Core.Native.MarshalTk.html#OpenTK_Core_Native_MarshalTk_MarshalStringArrayToAnsiStringArrayPtr_System_Span_System_String__System_UInt32__ + href: OpenTK.Core.Native.MarshalTk.html#OpenTK_Core_Native_MarshalTk_MarshalStringArrayToAnsiStringArrayPtr_System_ReadOnlySpan_System_String__System_UInt32__ - name: ( - - uid: System.Span`1 - name: Span + - uid: System.ReadOnlySpan`1 + name: ReadOnlySpan isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.span-1 + href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - name: < - uid: System.String name: string @@ -884,14 +884,14 @@ references: href: https://learn.microsoft.com/dotnet/api/system.uint32 - name: ) spec.vb: - - uid: OpenTK.Core.Native.MarshalTk.MarshalStringArrayToAnsiStringArrayPtr(System.Span{System.String},System.UInt32@) + - uid: OpenTK.Core.Native.MarshalTk.MarshalStringArrayToAnsiStringArrayPtr(System.ReadOnlySpan{System.String},System.UInt32@) name: MarshalStringArrayToAnsiStringArrayPtr - href: OpenTK.Core.Native.MarshalTk.html#OpenTK_Core_Native_MarshalTk_MarshalStringArrayToAnsiStringArrayPtr_System_Span_System_String__System_UInt32__ + href: OpenTK.Core.Native.MarshalTk.html#OpenTK_Core_Native_MarshalTk_MarshalStringArrayToAnsiStringArrayPtr_System_ReadOnlySpan_System_String__System_UInt32__ - name: ( - - uid: System.Span`1 - name: Span + - uid: System.ReadOnlySpan`1 + name: ReadOnlySpan isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.span-1 + href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - name: ( - name: Of - name: " " diff --git a/api/OpenTK.Graphics.BufferHandle.yml b/api/OpenTK.Graphics.BufferHandle.yml index 62d79667..24d6b8f8 100644 --- a/api/OpenTK.Graphics.BufferHandle.yml +++ b/api/OpenTK.Graphics.BufferHandle.yml @@ -25,7 +25,7 @@ items: source: id: BufferHandle path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 923 + startLine: 1217 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -53,7 +53,7 @@ items: source: id: Zero path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 925 + startLine: 1219 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -76,7 +76,7 @@ items: source: id: Handle path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 927 + startLine: 1221 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -99,7 +99,7 @@ items: source: id: .ctor path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 929 + startLine: 1223 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -127,7 +127,7 @@ items: source: id: Equals path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 934 + startLine: 1228 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -162,7 +162,7 @@ items: source: id: Equals path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 939 + startLine: 1233 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -195,7 +195,7 @@ items: source: id: GetHashCode path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 944 + startLine: 1238 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -223,7 +223,7 @@ items: source: id: op_Equality path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 949 + startLine: 1243 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -255,7 +255,7 @@ items: source: id: op_Inequality path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 954 + startLine: 1248 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -287,7 +287,7 @@ items: source: id: op_Explicit path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 959 + startLine: 1253 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -317,7 +317,7 @@ items: source: id: op_Explicit path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 960 + startLine: 1254 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics diff --git a/api/OpenTK.Graphics.CLContext.yml b/api/OpenTK.Graphics.CLContext.yml index 26360b68..7aa05b0d 100644 --- a/api/OpenTK.Graphics.CLContext.yml +++ b/api/OpenTK.Graphics.CLContext.yml @@ -24,7 +24,7 @@ items: source: id: CLContext path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 640 + startLine: 934 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -52,7 +52,7 @@ items: source: id: Value path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 642 + startLine: 936 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -75,7 +75,7 @@ items: source: id: .ctor path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 644 + startLine: 938 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -103,7 +103,7 @@ items: source: id: Equals path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 649 + startLine: 943 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -138,7 +138,7 @@ items: source: id: Equals path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 654 + startLine: 948 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -171,7 +171,7 @@ items: source: id: GetHashCode path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 659 + startLine: 953 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -199,7 +199,7 @@ items: source: id: op_Equality path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 664 + startLine: 958 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -231,7 +231,7 @@ items: source: id: op_Inequality path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 669 + startLine: 963 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -263,7 +263,7 @@ items: source: id: op_Explicit path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 674 + startLine: 968 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -293,7 +293,7 @@ items: source: id: op_Explicit path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 675 + startLine: 969 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics diff --git a/api/OpenTK.Graphics.CLEvent.yml b/api/OpenTK.Graphics.CLEvent.yml index 05a556cd..42461696 100644 --- a/api/OpenTK.Graphics.CLEvent.yml +++ b/api/OpenTK.Graphics.CLEvent.yml @@ -24,7 +24,7 @@ items: source: id: CLEvent path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 678 + startLine: 972 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -52,7 +52,7 @@ items: source: id: Value path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 680 + startLine: 974 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -75,7 +75,7 @@ items: source: id: .ctor path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 682 + startLine: 976 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -103,7 +103,7 @@ items: source: id: Equals path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 687 + startLine: 981 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -138,7 +138,7 @@ items: source: id: Equals path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 692 + startLine: 986 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -171,7 +171,7 @@ items: source: id: GetHashCode path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 697 + startLine: 991 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -199,7 +199,7 @@ items: source: id: op_Equality path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 702 + startLine: 996 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -231,7 +231,7 @@ items: source: id: op_Inequality path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 707 + startLine: 1001 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -263,7 +263,7 @@ items: source: id: op_Explicit path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 712 + startLine: 1006 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -293,7 +293,7 @@ items: source: id: op_Explicit path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 713 + startLine: 1007 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics diff --git a/api/OpenTK.Graphics.DisplayListHandle.yml b/api/OpenTK.Graphics.DisplayListHandle.yml index 8a3a861b..38d662ef 100644 --- a/api/OpenTK.Graphics.DisplayListHandle.yml +++ b/api/OpenTK.Graphics.DisplayListHandle.yml @@ -25,7 +25,7 @@ items: source: id: DisplayListHandle path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 1243 + startLine: 1537 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -53,7 +53,7 @@ items: source: id: Zero path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 1245 + startLine: 1539 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -76,7 +76,7 @@ items: source: id: Handle path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 1247 + startLine: 1541 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -99,7 +99,7 @@ items: source: id: .ctor path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 1249 + startLine: 1543 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -127,7 +127,7 @@ items: source: id: Equals path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 1254 + startLine: 1548 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -162,7 +162,7 @@ items: source: id: Equals path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 1259 + startLine: 1553 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -195,7 +195,7 @@ items: source: id: GetHashCode path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 1264 + startLine: 1558 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -223,7 +223,7 @@ items: source: id: op_Equality path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 1269 + startLine: 1563 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -255,7 +255,7 @@ items: source: id: op_Inequality path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 1274 + startLine: 1568 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -287,7 +287,7 @@ items: source: id: op_Explicit path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 1279 + startLine: 1573 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -317,7 +317,7 @@ items: source: id: op_Explicit path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 1280 + startLine: 1574 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics diff --git a/api/OpenTK.Graphics.Wgl.Wgl._3DL.yml b/api/OpenTK.Graphics.EGLLoader.BindingsContext.yml similarity index 60% rename from api/OpenTK.Graphics.Wgl.Wgl._3DL.yml rename to api/OpenTK.Graphics.EGLLoader.BindingsContext.yml index d77fbfc5..79b9d771 100644 --- a/api/OpenTK.Graphics.Wgl.Wgl._3DL.yml +++ b/api/OpenTK.Graphics.EGLLoader.BindingsContext.yml @@ -1,31 +1,28 @@ ### YamlMime:ManagedReference items: -- uid: OpenTK.Graphics.Wgl.Wgl._3DL - commentId: T:OpenTK.Graphics.Wgl.Wgl._3DL - id: Wgl._3DL - parent: OpenTK.Graphics.Wgl +- uid: OpenTK.Graphics.EGLLoader.BindingsContext + commentId: T:OpenTK.Graphics.EGLLoader.BindingsContext + id: EGLLoader.BindingsContext + parent: OpenTK.Graphics children: - - OpenTK.Graphics.Wgl.Wgl._3DL.SetStereoEmitterState3DL(System.IntPtr,OpenTK.Graphics.Wgl.StereoEmitterState) - - OpenTK.Graphics.Wgl.Wgl._3DL.SetStereoEmitterState3DL_(System.IntPtr,OpenTK.Graphics.Wgl.StereoEmitterState) + - OpenTK.Graphics.EGLLoader.BindingsContext.GetProcAddress(System.String) langs: - csharp - vb - name: Wgl._3DL - nameWithType: Wgl._3DL - fullName: OpenTK.Graphics.Wgl.Wgl._3DL + name: EGLLoader.BindingsContext + nameWithType: EGLLoader.BindingsContext + fullName: OpenTK.Graphics.EGLLoader.BindingsContext type: Class source: - id: _3DL - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 253 + id: BindingsContext + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\EGLLoader.cs + startLine: 14 assemblies: - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: _3DL extensions. - example: [] + namespace: OpenTK.Graphics syntax: - content: public static class Wgl._3DL - content.vb: Public Module Wgl._3DL + content: public static class EGLLoader.BindingsContext + content.vb: Public Module EGLLoader.BindingsContext inheritance: - System.Object inheritedMembers: @@ -36,85 +33,43 @@ items: - System.Object.MemberwiseClone - System.Object.ReferenceEquals(System.Object,System.Object) - System.Object.ToString -- uid: OpenTK.Graphics.Wgl.Wgl._3DL.SetStereoEmitterState3DL_(System.IntPtr,OpenTK.Graphics.Wgl.StereoEmitterState) - commentId: M:OpenTK.Graphics.Wgl.Wgl._3DL.SetStereoEmitterState3DL_(System.IntPtr,OpenTK.Graphics.Wgl.StereoEmitterState) - id: SetStereoEmitterState3DL_(System.IntPtr,OpenTK.Graphics.Wgl.StereoEmitterState) - parent: OpenTK.Graphics.Wgl.Wgl._3DL +- uid: OpenTK.Graphics.EGLLoader.BindingsContext.GetProcAddress(System.String) + commentId: M:OpenTK.Graphics.EGLLoader.BindingsContext.GetProcAddress(System.String) + id: GetProcAddress(System.String) + parent: OpenTK.Graphics.EGLLoader.BindingsContext langs: - csharp - vb - name: SetStereoEmitterState3DL_(nint, StereoEmitterState) - nameWithType: Wgl._3DL.SetStereoEmitterState3DL_(nint, StereoEmitterState) - fullName: OpenTK.Graphics.Wgl.Wgl._3DL.SetStereoEmitterState3DL_(nint, OpenTK.Graphics.Wgl.StereoEmitterState) + name: GetProcAddress(string) + nameWithType: EGLLoader.BindingsContext.GetProcAddress(string) + fullName: OpenTK.Graphics.EGLLoader.BindingsContext.GetProcAddress(string) type: Method source: - id: SetStereoEmitterState3DL_ - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs - startLine: 93 + id: GetProcAddress + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\EGLLoader.cs + startLine: 16 assemblies: - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_3DL_stereo_control] - - [entry point: wglSetStereoEmitterState3DL] - -
- example: [] + namespace: OpenTK.Graphics syntax: - content: public static int SetStereoEmitterState3DL_(nint hDC, StereoEmitterState uState) + content: public static nint GetProcAddress(string procName) parameters: - - id: hDC - type: System.IntPtr - - id: uState - type: OpenTK.Graphics.Wgl.StereoEmitterState + - id: procName + type: System.String return: - type: System.Int32 - content.vb: Public Shared Function SetStereoEmitterState3DL_(hDC As IntPtr, uState As StereoEmitterState) As Integer - overload: OpenTK.Graphics.Wgl.Wgl._3DL.SetStereoEmitterState3DL_* - nameWithType.vb: Wgl._3DL.SetStereoEmitterState3DL_(IntPtr, StereoEmitterState) - fullName.vb: OpenTK.Graphics.Wgl.Wgl._3DL.SetStereoEmitterState3DL_(System.IntPtr, OpenTK.Graphics.Wgl.StereoEmitterState) - name.vb: SetStereoEmitterState3DL_(IntPtr, StereoEmitterState) -- uid: OpenTK.Graphics.Wgl.Wgl._3DL.SetStereoEmitterState3DL(System.IntPtr,OpenTK.Graphics.Wgl.StereoEmitterState) - commentId: M:OpenTK.Graphics.Wgl.Wgl._3DL.SetStereoEmitterState3DL(System.IntPtr,OpenTK.Graphics.Wgl.StereoEmitterState) - id: SetStereoEmitterState3DL(System.IntPtr,OpenTK.Graphics.Wgl.StereoEmitterState) - parent: OpenTK.Graphics.Wgl.Wgl._3DL - langs: - - csharp - - vb - name: SetStereoEmitterState3DL(nint, StereoEmitterState) - nameWithType: Wgl._3DL.SetStereoEmitterState3DL(nint, StereoEmitterState) - fullName: OpenTK.Graphics.Wgl.Wgl._3DL.SetStereoEmitterState3DL(nint, OpenTK.Graphics.Wgl.StereoEmitterState) - type: Method - source: - id: SetStereoEmitterState3DL - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 256 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - example: [] - syntax: - content: public static bool SetStereoEmitterState3DL(nint hDC, StereoEmitterState uState) - parameters: - - id: hDC type: System.IntPtr - - id: uState - type: OpenTK.Graphics.Wgl.StereoEmitterState - return: - type: System.Boolean - content.vb: Public Shared Function SetStereoEmitterState3DL(hDC As IntPtr, uState As StereoEmitterState) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl._3DL.SetStereoEmitterState3DL* - nameWithType.vb: Wgl._3DL.SetStereoEmitterState3DL(IntPtr, StereoEmitterState) - fullName.vb: OpenTK.Graphics.Wgl.Wgl._3DL.SetStereoEmitterState3DL(System.IntPtr, OpenTK.Graphics.Wgl.StereoEmitterState) - name.vb: SetStereoEmitterState3DL(IntPtr, StereoEmitterState) + content.vb: Public Shared Function GetProcAddress(procName As String) As IntPtr + overload: OpenTK.Graphics.EGLLoader.BindingsContext.GetProcAddress* + nameWithType.vb: EGLLoader.BindingsContext.GetProcAddress(String) + fullName.vb: OpenTK.Graphics.EGLLoader.BindingsContext.GetProcAddress(String) + name.vb: GetProcAddress(String) references: -- uid: OpenTK.Graphics.Wgl - commentId: N:OpenTK.Graphics.Wgl +- uid: OpenTK.Graphics + commentId: N:OpenTK.Graphics href: OpenTK.html - name: OpenTK.Graphics.Wgl - nameWithType: OpenTK.Graphics.Wgl - fullName: OpenTK.Graphics.Wgl + name: OpenTK.Graphics + nameWithType: OpenTK.Graphics + fullName: OpenTK.Graphics spec.csharp: - uid: OpenTK name: OpenTK @@ -123,10 +78,6 @@ references: - uid: OpenTK.Graphics name: Graphics href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Wgl - name: Wgl - href: OpenTK.Graphics.Wgl.html spec.vb: - uid: OpenTK name: OpenTK @@ -135,10 +86,6 @@ references: - uid: OpenTK.Graphics name: Graphics href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Wgl - name: Wgl - href: OpenTK.Graphics.Wgl.html - uid: System.Object commentId: T:System.Object parent: System @@ -376,12 +323,23 @@ references: name: System nameWithType: System fullName: System -- uid: OpenTK.Graphics.Wgl.Wgl._3DL.SetStereoEmitterState3DL_* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl._3DL.SetStereoEmitterState3DL_ - href: OpenTK.Graphics.Wgl.Wgl._3DL.html#OpenTK_Graphics_Wgl_Wgl__3DL_SetStereoEmitterState3DL__System_IntPtr_OpenTK_Graphics_Wgl_StereoEmitterState_ - name: SetStereoEmitterState3DL_ - nameWithType: Wgl._3DL.SetStereoEmitterState3DL_ - fullName: OpenTK.Graphics.Wgl.Wgl._3DL.SetStereoEmitterState3DL_ +- uid: OpenTK.Graphics.EGLLoader.BindingsContext.GetProcAddress* + commentId: Overload:OpenTK.Graphics.EGLLoader.BindingsContext.GetProcAddress + href: OpenTK.Graphics.EGLLoader.BindingsContext.html#OpenTK_Graphics_EGLLoader_BindingsContext_GetProcAddress_System_String_ + name: GetProcAddress + nameWithType: EGLLoader.BindingsContext.GetProcAddress + fullName: OpenTK.Graphics.EGLLoader.BindingsContext.GetProcAddress +- uid: System.String + commentId: T:System.String + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + name: string + nameWithType: string + fullName: string + nameWithType.vb: String + fullName.vb: String + name.vb: String - uid: System.IntPtr commentId: T:System.IntPtr parent: System @@ -393,38 +351,3 @@ references: nameWithType.vb: IntPtr fullName.vb: System.IntPtr name.vb: IntPtr -- uid: OpenTK.Graphics.Wgl.StereoEmitterState - commentId: T:OpenTK.Graphics.Wgl.StereoEmitterState - parent: OpenTK.Graphics.Wgl - href: OpenTK.Graphics.Wgl.StereoEmitterState.html - name: StereoEmitterState - nameWithType: StereoEmitterState - fullName: OpenTK.Graphics.Wgl.StereoEmitterState -- uid: System.Int32 - commentId: T:System.Int32 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - name: int - nameWithType: int - fullName: int - nameWithType.vb: Integer - fullName.vb: Integer - name.vb: Integer -- uid: OpenTK.Graphics.Wgl.Wgl._3DL.SetStereoEmitterState3DL* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl._3DL.SetStereoEmitterState3DL - href: OpenTK.Graphics.Wgl.Wgl._3DL.html#OpenTK_Graphics_Wgl_Wgl__3DL_SetStereoEmitterState3DL_System_IntPtr_OpenTK_Graphics_Wgl_StereoEmitterState_ - name: SetStereoEmitterState3DL - nameWithType: Wgl._3DL.SetStereoEmitterState3DL - fullName: OpenTK.Graphics.Wgl.Wgl._3DL.SetStereoEmitterState3DL -- uid: System.Boolean - commentId: T:System.Boolean - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - name: bool - nameWithType: bool - fullName: bool - nameWithType.vb: Boolean - fullName.vb: Boolean - name.vb: Boolean diff --git a/api/OpenTK.Graphics.Wgl.ColorRef.yml b/api/OpenTK.Graphics.EGLLoader.yml similarity index 55% rename from api/OpenTK.Graphics.Wgl.ColorRef.yml rename to api/OpenTK.Graphics.EGLLoader.yml index 61ef4c20..295819b5 100644 --- a/api/OpenTK.Graphics.Wgl.ColorRef.yml +++ b/api/OpenTK.Graphics.EGLLoader.yml @@ -1,113 +1,44 @@ ### YamlMime:ManagedReference items: -- uid: OpenTK.Graphics.Wgl.ColorRef - commentId: T:OpenTK.Graphics.Wgl.ColorRef - id: ColorRef - parent: OpenTK.Graphics.Wgl - children: - - OpenTK.Graphics.Wgl.ColorRef.Blue - - OpenTK.Graphics.Wgl.ColorRef.Green - - OpenTK.Graphics.Wgl.ColorRef.Red +- uid: OpenTK.Graphics.EGLLoader + commentId: T:OpenTK.Graphics.EGLLoader + id: EGLLoader + parent: OpenTK.Graphics + children: [] langs: - csharp - vb - name: ColorRef - nameWithType: ColorRef - fullName: OpenTK.Graphics.Wgl.ColorRef - type: Struct + name: EGLLoader + nameWithType: EGLLoader + fullName: OpenTK.Graphics.EGLLoader + type: Class source: - id: ColorRef - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 535 + id: EGLLoader + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\EGLLoader.cs + startLine: 12 assemblies: - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl + namespace: OpenTK.Graphics syntax: - content: public struct ColorRef - content.vb: Public Structure ColorRef + content: public static class EGLLoader + content.vb: Public Module EGLLoader + inheritance: + - System.Object inheritedMembers: - - System.ValueType.Equals(System.Object) - - System.ValueType.GetHashCode - - System.ValueType.ToString + - System.Object.Equals(System.Object) - System.Object.Equals(System.Object,System.Object) + - System.Object.GetHashCode - System.Object.GetType + - System.Object.MemberwiseClone - System.Object.ReferenceEquals(System.Object,System.Object) -- uid: OpenTK.Graphics.Wgl.ColorRef.Red - commentId: F:OpenTK.Graphics.Wgl.ColorRef.Red - id: Red - parent: OpenTK.Graphics.Wgl.ColorRef - langs: - - csharp - - vb - name: Red - nameWithType: ColorRef.Red - fullName: OpenTK.Graphics.Wgl.ColorRef.Red - type: Field - source: - id: Red - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 539 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: public byte Red - return: - type: System.Byte - content.vb: Public Red As Byte -- uid: OpenTK.Graphics.Wgl.ColorRef.Green - commentId: F:OpenTK.Graphics.Wgl.ColorRef.Green - id: Green - parent: OpenTK.Graphics.Wgl.ColorRef - langs: - - csharp - - vb - name: Green - nameWithType: ColorRef.Green - fullName: OpenTK.Graphics.Wgl.ColorRef.Green - type: Field - source: - id: Green - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 541 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: public byte Green - return: - type: System.Byte - content.vb: Public Green As Byte -- uid: OpenTK.Graphics.Wgl.ColorRef.Blue - commentId: F:OpenTK.Graphics.Wgl.ColorRef.Blue - id: Blue - parent: OpenTK.Graphics.Wgl.ColorRef - langs: - - csharp - - vb - name: Blue - nameWithType: ColorRef.Blue - fullName: OpenTK.Graphics.Wgl.ColorRef.Blue - type: Field - source: - id: Blue - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 543 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: public byte Blue - return: - type: System.Byte - content.vb: Public Blue As Byte + - System.Object.ToString references: -- uid: OpenTK.Graphics.Wgl - commentId: N:OpenTK.Graphics.Wgl +- uid: OpenTK.Graphics + commentId: N:OpenTK.Graphics href: OpenTK.html - name: OpenTK.Graphics.Wgl - nameWithType: OpenTK.Graphics.Wgl - fullName: OpenTK.Graphics.Wgl + name: OpenTK.Graphics + nameWithType: OpenTK.Graphics + fullName: OpenTK.Graphics spec.csharp: - uid: OpenTK name: OpenTK @@ -116,10 +47,6 @@ references: - uid: OpenTK.Graphics name: Graphics href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Wgl - name: Wgl - href: OpenTK.Graphics.Wgl.html spec.vb: - uid: OpenTK name: OpenTK @@ -128,26 +55,33 @@ references: - uid: OpenTK.Graphics name: Graphics href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Wgl - name: Wgl - href: OpenTK.Graphics.Wgl.html -- uid: System.ValueType.Equals(System.Object) - commentId: M:System.ValueType.Equals(System.Object) - parent: System.ValueType +- uid: System.Object + commentId: T:System.Object + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + name: object + nameWithType: object + fullName: object + nameWithType.vb: Object + fullName.vb: Object + name.vb: Object +- uid: System.Object.Equals(System.Object) + commentId: M:System.Object.Equals(System.Object) + parent: System.Object isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) name: Equals(object) - nameWithType: ValueType.Equals(object) - fullName: System.ValueType.Equals(object) - nameWithType.vb: ValueType.Equals(Object) - fullName.vb: System.ValueType.Equals(Object) + nameWithType: object.Equals(object) + fullName: object.Equals(object) + nameWithType.vb: Object.Equals(Object) + fullName.vb: Object.Equals(Object) name.vb: Equals(Object) spec.csharp: - - uid: System.ValueType.Equals(System.Object) + - uid: System.Object.Equals(System.Object) name: Equals isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - name: ( - uid: System.Object name: object @@ -155,60 +89,16 @@ references: href: https://learn.microsoft.com/dotnet/api/system.object - name: ) spec.vb: - - uid: System.ValueType.Equals(System.Object) + - uid: System.Object.Equals(System.Object) name: Equals isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - name: ( - uid: System.Object name: Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ) -- uid: System.ValueType.GetHashCode - commentId: M:System.ValueType.GetHashCode - parent: System.ValueType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - name: GetHashCode() - nameWithType: ValueType.GetHashCode() - fullName: System.ValueType.GetHashCode() - spec.csharp: - - uid: System.ValueType.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - - name: ( - - name: ) - spec.vb: - - uid: System.ValueType.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - - name: ( - - name: ) -- uid: System.ValueType.ToString - commentId: M:System.ValueType.ToString - parent: System.ValueType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - name: ToString() - nameWithType: ValueType.ToString() - fullName: System.ValueType.ToString() - spec.csharp: - - uid: System.ValueType.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - - name: ( - - name: ) - spec.vb: - - uid: System.ValueType.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - - name: ( - - name: ) - uid: System.Object.Equals(System.Object,System.Object) commentId: M:System.Object.Equals(System.Object,System.Object) parent: System.Object @@ -254,6 +144,30 @@ references: isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ) +- uid: System.Object.GetHashCode + commentId: M:System.Object.GetHashCode + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + name: GetHashCode() + nameWithType: object.GetHashCode() + fullName: object.GetHashCode() + nameWithType.vb: Object.GetHashCode() + fullName.vb: Object.GetHashCode() + spec.csharp: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) - uid: System.Object.GetType commentId: M:System.Object.GetType parent: System.Object @@ -278,6 +192,30 @@ references: href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: ( - name: ) +- uid: System.Object.MemberwiseClone + commentId: M:System.Object.MemberwiseClone + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + name: MemberwiseClone() + nameWithType: object.MemberwiseClone() + fullName: object.MemberwiseClone() + nameWithType.vb: Object.MemberwiseClone() + fullName.vb: Object.MemberwiseClone() + spec.csharp: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) + spec.vb: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) - uid: System.Object.ReferenceEquals(System.Object,System.Object) commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) parent: System.Object @@ -323,25 +261,30 @@ references: isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ) -- uid: System.ValueType - commentId: T:System.ValueType - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype - name: ValueType - nameWithType: ValueType - fullName: System.ValueType -- uid: System.Object - commentId: T:System.Object - parent: System +- uid: System.Object.ToString + commentId: M:System.Object.ToString + parent: System.Object isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + name: ToString() + nameWithType: object.ToString() + fullName: object.ToString() + nameWithType.vb: Object.ToString() + fullName.vb: Object.ToString() + spec.csharp: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) + spec.vb: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) - uid: System commentId: N:System isExternal: true @@ -349,14 +292,3 @@ references: name: System nameWithType: System fullName: System -- uid: System.Byte - commentId: T:System.Byte - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.byte - name: byte - nameWithType: byte - fullName: byte - nameWithType.vb: Byte - fullName.vb: Byte - name.vb: Byte diff --git a/api/OpenTK.Graphics.Egl.Egl.yml b/api/OpenTK.Graphics.Egl.Egl.yml deleted file mode 100644 index fe1d48b7..00000000 --- a/api/OpenTK.Graphics.Egl.Egl.yml +++ /dev/null @@ -1,5211 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: OpenTK.Graphics.Egl.Egl - commentId: T:OpenTK.Graphics.Egl.Egl - id: Egl - parent: OpenTK.Graphics.Egl - children: - - OpenTK.Graphics.Egl.Egl.ALPHA_FORMAT - - OpenTK.Graphics.Egl.Egl.ALPHA_FORMAT_NONPRE - - OpenTK.Graphics.Egl.Egl.ALPHA_FORMAT_PRE - - OpenTK.Graphics.Egl.Egl.ALPHA_MASK_SIZE - - OpenTK.Graphics.Egl.Egl.ALPHA_SIZE - - OpenTK.Graphics.Egl.Egl.BACK_BUFFER - - OpenTK.Graphics.Egl.Egl.BIND_TO_TEXTURE_RGB - - OpenTK.Graphics.Egl.Egl.BIND_TO_TEXTURE_RGBA - - OpenTK.Graphics.Egl.Egl.BLUE_SIZE - - OpenTK.Graphics.Egl.Egl.BUFFER_DESTROYED - - OpenTK.Graphics.Egl.Egl.BUFFER_PRESERVED - - OpenTK.Graphics.Egl.Egl.BUFFER_SIZE - - OpenTK.Graphics.Egl.Egl.BindAPI(OpenTK.Graphics.Egl.RenderApi) - - OpenTK.Graphics.Egl.Egl.BindTexImage(System.IntPtr,System.IntPtr,System.Int32) - - OpenTK.Graphics.Egl.Egl.CLIENT_APIS - - OpenTK.Graphics.Egl.Egl.COLORSPACE - - OpenTK.Graphics.Egl.Egl.COLORSPACE_LINEAR - - OpenTK.Graphics.Egl.Egl.COLORSPACE_sRGB - - OpenTK.Graphics.Egl.Egl.COLOR_BUFFER_TYPE - - OpenTK.Graphics.Egl.Egl.CONFIG_CAVEAT - - OpenTK.Graphics.Egl.Egl.CONFIG_ID - - OpenTK.Graphics.Egl.Egl.CONFORMANT - - OpenTK.Graphics.Egl.Egl.CONTEXT_CLIENT_TYPE - - OpenTK.Graphics.Egl.Egl.CONTEXT_CLIENT_VERSION - - OpenTK.Graphics.Egl.Egl.CONTEXT_LOST - - OpenTK.Graphics.Egl.Egl.CONTEXT_MAJOR_VERSION - - OpenTK.Graphics.Egl.Egl.CONTEXT_MINOR_VERSION - - OpenTK.Graphics.Egl.Egl.CONTEXT_OPENGL_DEBUG - - OpenTK.Graphics.Egl.Egl.CORE_NATIVE_ENGINE - - OpenTK.Graphics.Egl.Egl.ChooseConfig(System.IntPtr,System.Int32[],System.IntPtr[],System.Int32,System.Int32@) - - OpenTK.Graphics.Egl.Egl.CopyBuffers(System.IntPtr,System.IntPtr,System.IntPtr) - - OpenTK.Graphics.Egl.Egl.CreateContext(System.IntPtr,System.IntPtr,System.IntPtr,System.Int32[]) - - OpenTK.Graphics.Egl.Egl.CreatePbufferFromClientBuffer(System.IntPtr,System.Int32,System.IntPtr,System.IntPtr,System.Int32[]) - - OpenTK.Graphics.Egl.Egl.CreatePbufferSurface(System.IntPtr,System.IntPtr,System.Int32[]) - - OpenTK.Graphics.Egl.Egl.CreatePixmapSurface(System.IntPtr,System.IntPtr,System.IntPtr,System.Int32[]) - - OpenTK.Graphics.Egl.Egl.CreatePlatformPixmapSurfaceEXT(System.IntPtr,System.IntPtr,System.IntPtr,System.Int32[]) - - OpenTK.Graphics.Egl.Egl.CreatePlatformWindowSurfaceEXT(System.IntPtr,System.IntPtr,System.IntPtr,System.Int32[]) - - OpenTK.Graphics.Egl.Egl.CreateWindowSurface(System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr) - - OpenTK.Graphics.Egl.Egl.D3D11_DEVICE_ANGLE - - OpenTK.Graphics.Egl.Egl.D3D11_ELSE_D3D9_DISPLAY_ANGLE - - OpenTK.Graphics.Egl.Egl.D3D11_ONLY_DISPLAY_ANGLE - - OpenTK.Graphics.Egl.Egl.D3D9_DEVICE_ANGLE - - OpenTK.Graphics.Egl.Egl.D3D_TEXTURE_2D_SHARE_HANDLE_ANGLE - - OpenTK.Graphics.Egl.Egl.DEFAULT_DISPLAY - - OpenTK.Graphics.Egl.Egl.DEPTH_SIZE - - OpenTK.Graphics.Egl.Egl.DISPLAY_SCALING - - OpenTK.Graphics.Egl.Egl.DONT_CARE - - OpenTK.Graphics.Egl.Egl.DRAW - - OpenTK.Graphics.Egl.Egl.DestroyContext(System.IntPtr,System.IntPtr) - - OpenTK.Graphics.Egl.Egl.DestroySurface(System.IntPtr,System.IntPtr) - - OpenTK.Graphics.Egl.Egl.EGL_D3D_TEXTURE_2D_SHARE_HANDLE_ANGLE - - OpenTK.Graphics.Egl.Egl.EXTENSIONS - - OpenTK.Graphics.Egl.Egl.FALSE - - OpenTK.Graphics.Egl.Egl.FIXED_SIZE_ANGLE - - OpenTK.Graphics.Egl.Egl.GREEN_SIZE - - OpenTK.Graphics.Egl.Egl.GetConfigAttrib(System.IntPtr,System.IntPtr,System.Int32,System.Int32@) - - OpenTK.Graphics.Egl.Egl.GetConfigs(System.IntPtr,System.IntPtr[],System.Int32,System.Int32@) - - OpenTK.Graphics.Egl.Egl.GetCurrentContext - - OpenTK.Graphics.Egl.Egl.GetCurrentDisplay - - OpenTK.Graphics.Egl.Egl.GetCurrentSurface(System.Int32) - - OpenTK.Graphics.Egl.Egl.GetDisplay(System.IntPtr) - - OpenTK.Graphics.Egl.Egl.GetError - - OpenTK.Graphics.Egl.Egl.GetPlatformDisplay(System.Int32,System.IntPtr,System.Int32[]) - - OpenTK.Graphics.Egl.Egl.GetPlatformDisplayEXT(System.Int32,System.IntPtr,System.Int32[]) - - OpenTK.Graphics.Egl.Egl.GetProcAddress(System.IntPtr) - - OpenTK.Graphics.Egl.Egl.GetProcAddress(System.String) - - OpenTK.Graphics.Egl.Egl.HEIGHT - - OpenTK.Graphics.Egl.Egl.HORIZONTAL_RESOLUTION - - OpenTK.Graphics.Egl.Egl.Initialize(System.IntPtr,System.Int32@,System.Int32@) - - OpenTK.Graphics.Egl.Egl.IsSupported - - OpenTK.Graphics.Egl.Egl.LARGEST_PBUFFER - - OpenTK.Graphics.Egl.Egl.LEVEL - - OpenTK.Graphics.Egl.Egl.LUMINANCE_BUFFER - - OpenTK.Graphics.Egl.Egl.LUMINANCE_SIZE - - OpenTK.Graphics.Egl.Egl.MATCH_NATIVE_PIXMAP - - OpenTK.Graphics.Egl.Egl.MAX_PBUFFER_HEIGHT - - OpenTK.Graphics.Egl.Egl.MAX_PBUFFER_PIXELS - - OpenTK.Graphics.Egl.Egl.MAX_PBUFFER_WIDTH - - OpenTK.Graphics.Egl.Egl.MAX_SWAP_INTERVAL - - OpenTK.Graphics.Egl.Egl.MIN_SWAP_INTERVAL - - OpenTK.Graphics.Egl.Egl.MIPMAP_LEVEL - - OpenTK.Graphics.Egl.Egl.MIPMAP_TEXTURE - - OpenTK.Graphics.Egl.Egl.MULTISAMPLE_RESOLVE - - OpenTK.Graphics.Egl.Egl.MULTISAMPLE_RESOLVE_BOX - - OpenTK.Graphics.Egl.Egl.MULTISAMPLE_RESOLVE_BOX_BIT - - OpenTK.Graphics.Egl.Egl.MULTISAMPLE_RESOLVE_DEFAULT - - OpenTK.Graphics.Egl.Egl.MakeCurrent(System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr) - - OpenTK.Graphics.Egl.Egl.NATIVE_RENDERABLE - - OpenTK.Graphics.Egl.Egl.NATIVE_VISUAL_ID - - OpenTK.Graphics.Egl.Egl.NATIVE_VISUAL_TYPE - - OpenTK.Graphics.Egl.Egl.NONE - - OpenTK.Graphics.Egl.Egl.NON_CONFORMANT_CONFIG - - OpenTK.Graphics.Egl.Egl.NO_CONTEXT - - OpenTK.Graphics.Egl.Egl.NO_SURFACE - - OpenTK.Graphics.Egl.Egl.NO_TEXTURE - - OpenTK.Graphics.Egl.Egl.OPENGL_API - - OpenTK.Graphics.Egl.Egl.OPENGL_BIT - - OpenTK.Graphics.Egl.Egl.OPENGL_ES2_BIT - - OpenTK.Graphics.Egl.Egl.OPENGL_ES3_BIT - - OpenTK.Graphics.Egl.Egl.OPENGL_ES_API - - OpenTK.Graphics.Egl.Egl.OPENGL_ES_BIT - - OpenTK.Graphics.Egl.Egl.OPENVG_API - - OpenTK.Graphics.Egl.Egl.OPENVG_BIT - - OpenTK.Graphics.Egl.Egl.OPENVG_IMAGE - - OpenTK.Graphics.Egl.Egl.PBUFFER_BIT - - OpenTK.Graphics.Egl.Egl.PIXEL_ASPECT_RATIO - - OpenTK.Graphics.Egl.Egl.PIXMAP_BIT - - OpenTK.Graphics.Egl.Egl.PLATFORM_ANGLE_ANGLE - - OpenTK.Graphics.Egl.Egl.PLATFORM_ANGLE_DEVICE_TYPE_ANGLE - - OpenTK.Graphics.Egl.Egl.PLATFORM_ANGLE_DEVICE_TYPE_HARDWARE_ANGLE - - OpenTK.Graphics.Egl.Egl.PLATFORM_ANGLE_DEVICE_TYPE_REFERENCE_ANGLE - - OpenTK.Graphics.Egl.Egl.PLATFORM_ANGLE_DEVICE_TYPE_WARP_ANGLE - - OpenTK.Graphics.Egl.Egl.PLATFORM_ANGLE_ENABLE_AUTOMATIC_TRIM_ANGLE - - OpenTK.Graphics.Egl.Egl.PLATFORM_ANGLE_MAX_VERSION_MAJOR_ANGLE - - OpenTK.Graphics.Egl.Egl.PLATFORM_ANGLE_MAX_VERSION_MINOR_ANGLE - - OpenTK.Graphics.Egl.Egl.PLATFORM_ANGLE_TYPE_ANGLE - - OpenTK.Graphics.Egl.Egl.PLATFORM_ANGLE_TYPE_D3D11_ANGLE - - OpenTK.Graphics.Egl.Egl.PLATFORM_ANGLE_TYPE_D3D9_ANGLE - - OpenTK.Graphics.Egl.Egl.PLATFORM_ANGLE_TYPE_DEFAULT_ANGLE - - OpenTK.Graphics.Egl.Egl.PLATFORM_ANGLE_TYPE_OPENGLES_ANGLE - - OpenTK.Graphics.Egl.Egl.PLATFORM_ANGLE_TYPE_OPENGL_ANGLE - - OpenTK.Graphics.Egl.Egl.PRESERVED_RESOURCES - - OpenTK.Graphics.Egl.Egl.QueryAPI - - OpenTK.Graphics.Egl.Egl.QueryContext(System.IntPtr,System.IntPtr,System.Int32,System.Int32@) - - OpenTK.Graphics.Egl.Egl.QueryString(System.IntPtr,System.Int32) - - OpenTK.Graphics.Egl.Egl.QuerySurface(System.IntPtr,System.IntPtr,System.Int32,System.Int32@) - - OpenTK.Graphics.Egl.Egl.QuerySurfacePointerANGLE(System.IntPtr,System.IntPtr,System.Int32,System.IntPtr@) - - OpenTK.Graphics.Egl.Egl.READ - - OpenTK.Graphics.Egl.Egl.RED_SIZE - - OpenTK.Graphics.Egl.Egl.RENDERABLE_TYPE - - OpenTK.Graphics.Egl.Egl.RENDER_BUFFER - - OpenTK.Graphics.Egl.Egl.RGB_BUFFER - - OpenTK.Graphics.Egl.Egl.ReleaseTexImage(System.IntPtr,System.IntPtr,System.Int32) - - OpenTK.Graphics.Egl.Egl.ReleaseThread - - OpenTK.Graphics.Egl.Egl.SAMPLES - - OpenTK.Graphics.Egl.Egl.SAMPLE_BUFFERS - - OpenTK.Graphics.Egl.Egl.SINGLE_BUFFER - - OpenTK.Graphics.Egl.Egl.SLOW_CONFIG - - OpenTK.Graphics.Egl.Egl.SOFTWARE_DISPLAY_ANGLE - - OpenTK.Graphics.Egl.Egl.STENCIL_SIZE - - OpenTK.Graphics.Egl.Egl.SURFACE_TYPE - - OpenTK.Graphics.Egl.Egl.SWAP_BEHAVIOR - - OpenTK.Graphics.Egl.Egl.SWAP_BEHAVIOR_PRESERVED_BIT - - OpenTK.Graphics.Egl.Egl.SurfaceAttrib(System.IntPtr,System.IntPtr,System.Int32,System.Int32) - - OpenTK.Graphics.Egl.Egl.SwapBuffers(System.IntPtr,System.IntPtr) - - OpenTK.Graphics.Egl.Egl.SwapInterval(System.IntPtr,System.Int32) - - OpenTK.Graphics.Egl.Egl.TEXTURE_2D - - OpenTK.Graphics.Egl.Egl.TEXTURE_FORMAT - - OpenTK.Graphics.Egl.Egl.TEXTURE_RGB - - OpenTK.Graphics.Egl.Egl.TEXTURE_RGBA - - OpenTK.Graphics.Egl.Egl.TEXTURE_TARGET - - OpenTK.Graphics.Egl.Egl.TRANSPARENT_BLUE_VALUE - - OpenTK.Graphics.Egl.Egl.TRANSPARENT_GREEN_VALUE - - OpenTK.Graphics.Egl.Egl.TRANSPARENT_RED_VALUE - - OpenTK.Graphics.Egl.Egl.TRANSPARENT_RGB - - OpenTK.Graphics.Egl.Egl.TRANSPARENT_TYPE - - OpenTK.Graphics.Egl.Egl.TRUE - - OpenTK.Graphics.Egl.Egl.Terminate(System.IntPtr) - - OpenTK.Graphics.Egl.Egl.UNKNOWN - - OpenTK.Graphics.Egl.Egl.VENDOR - - OpenTK.Graphics.Egl.Egl.VERSION - - OpenTK.Graphics.Egl.Egl.VERSION_1_0 - - OpenTK.Graphics.Egl.Egl.VERSION_1_1 - - OpenTK.Graphics.Egl.Egl.VERSION_1_2 - - OpenTK.Graphics.Egl.Egl.VERSION_1_3 - - OpenTK.Graphics.Egl.Egl.VERSION_1_4 - - OpenTK.Graphics.Egl.Egl.VERTICAL_RESOLUTION - - OpenTK.Graphics.Egl.Egl.VG_ALPHA_FORMAT - - OpenTK.Graphics.Egl.Egl.VG_ALPHA_FORMAT_NONPRE - - OpenTK.Graphics.Egl.Egl.VG_ALPHA_FORMAT_PRE - - OpenTK.Graphics.Egl.Egl.VG_ALPHA_FORMAT_PRE_BIT - - OpenTK.Graphics.Egl.Egl.VG_COLORSPACE - - OpenTK.Graphics.Egl.Egl.VG_COLORSPACE_LINEAR - - OpenTK.Graphics.Egl.Egl.VG_COLORSPACE_LINEAR_BIT - - OpenTK.Graphics.Egl.Egl.VG_COLORSPACE_sRGB - - OpenTK.Graphics.Egl.Egl.WIDTH - - OpenTK.Graphics.Egl.Egl.WINDOW_BIT - - OpenTK.Graphics.Egl.Egl.WaitClient - - OpenTK.Graphics.Egl.Egl.WaitGL - - OpenTK.Graphics.Egl.Egl.WaitNative(System.Int32) - langs: - - csharp - - vb - name: Egl - nameWithType: Egl - fullName: OpenTK.Graphics.Egl.Egl - type: Class - source: - id: Egl - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 100 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public static class Egl - content.vb: Public Module Egl - inheritance: - - System.Object - inheritedMembers: - - System.Object.Equals(System.Object) - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetHashCode - - System.Object.GetType - - System.Object.MemberwiseClone - - System.Object.ReferenceEquals(System.Object,System.Object) - - System.Object.ToString -- uid: OpenTK.Graphics.Egl.Egl.DEFAULT_DISPLAY - commentId: F:OpenTK.Graphics.Egl.Egl.DEFAULT_DISPLAY - id: DEFAULT_DISPLAY - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: DEFAULT_DISPLAY - nameWithType: Egl.DEFAULT_DISPLAY - fullName: OpenTK.Graphics.Egl.Egl.DEFAULT_DISPLAY - type: Field - source: - id: DEFAULT_DISPLAY - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 103 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public const nint DEFAULT_DISPLAY = 0 - return: - type: System.IntPtr - content.vb: Public Const DEFAULT_DISPLAY As IntPtr = 0 -- uid: OpenTK.Graphics.Egl.Egl.NO_SURFACE - commentId: F:OpenTK.Graphics.Egl.Egl.NO_SURFACE - id: NO_SURFACE - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: NO_SURFACE - nameWithType: Egl.NO_SURFACE - fullName: OpenTK.Graphics.Egl.Egl.NO_SURFACE - type: Field - source: - id: NO_SURFACE - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 105 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public const nint NO_SURFACE = 0 - return: - type: System.IntPtr - content.vb: Public Const NO_SURFACE As IntPtr = 0 -- uid: OpenTK.Graphics.Egl.Egl.NO_CONTEXT - commentId: F:OpenTK.Graphics.Egl.Egl.NO_CONTEXT - id: NO_CONTEXT - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: NO_CONTEXT - nameWithType: Egl.NO_CONTEXT - fullName: OpenTK.Graphics.Egl.Egl.NO_CONTEXT - type: Field - source: - id: NO_CONTEXT - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 106 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public const nint NO_CONTEXT = 0 - return: - type: System.IntPtr - content.vb: Public Const NO_CONTEXT As IntPtr = 0 -- uid: OpenTK.Graphics.Egl.Egl.CONTEXT_MAJOR_VERSION - commentId: F:OpenTK.Graphics.Egl.Egl.CONTEXT_MAJOR_VERSION - id: CONTEXT_MAJOR_VERSION - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: CONTEXT_MAJOR_VERSION - nameWithType: Egl.CONTEXT_MAJOR_VERSION - fullName: OpenTK.Graphics.Egl.Egl.CONTEXT_MAJOR_VERSION - type: Field - source: - id: CONTEXT_MAJOR_VERSION - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 108 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public const int CONTEXT_MAJOR_VERSION = 12440 - return: - type: System.Int32 - content.vb: Public Const CONTEXT_MAJOR_VERSION As Integer = 12440 -- uid: OpenTK.Graphics.Egl.Egl.CONTEXT_MINOR_VERSION - commentId: F:OpenTK.Graphics.Egl.Egl.CONTEXT_MINOR_VERSION - id: CONTEXT_MINOR_VERSION - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: CONTEXT_MINOR_VERSION - nameWithType: Egl.CONTEXT_MINOR_VERSION - fullName: OpenTK.Graphics.Egl.Egl.CONTEXT_MINOR_VERSION - type: Field - source: - id: CONTEXT_MINOR_VERSION - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 109 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public const int CONTEXT_MINOR_VERSION = 12539 - return: - type: System.Int32 - content.vb: Public Const CONTEXT_MINOR_VERSION As Integer = 12539 -- uid: OpenTK.Graphics.Egl.Egl.CONTEXT_OPENGL_DEBUG - commentId: F:OpenTK.Graphics.Egl.Egl.CONTEXT_OPENGL_DEBUG - id: CONTEXT_OPENGL_DEBUG - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: CONTEXT_OPENGL_DEBUG - nameWithType: Egl.CONTEXT_OPENGL_DEBUG - fullName: OpenTK.Graphics.Egl.Egl.CONTEXT_OPENGL_DEBUG - type: Field - source: - id: CONTEXT_OPENGL_DEBUG - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 111 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public const int CONTEXT_OPENGL_DEBUG = 12720 - return: - type: System.Int32 - content.vb: Public Const CONTEXT_OPENGL_DEBUG As Integer = 12720 -- uid: OpenTK.Graphics.Egl.Egl.VERSION_1_0 - commentId: F:OpenTK.Graphics.Egl.Egl.VERSION_1_0 - id: VERSION_1_0 - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: VERSION_1_0 - nameWithType: Egl.VERSION_1_0 - fullName: OpenTK.Graphics.Egl.Egl.VERSION_1_0 - type: Field - source: - id: VERSION_1_0 - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 113 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public const int VERSION_1_0 = 1 - return: - type: System.Int32 - content.vb: Public Const VERSION_1_0 As Integer = 1 -- uid: OpenTK.Graphics.Egl.Egl.VERSION_1_1 - commentId: F:OpenTK.Graphics.Egl.Egl.VERSION_1_1 - id: VERSION_1_1 - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: VERSION_1_1 - nameWithType: Egl.VERSION_1_1 - fullName: OpenTK.Graphics.Egl.Egl.VERSION_1_1 - type: Field - source: - id: VERSION_1_1 - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 114 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public const int VERSION_1_1 = 1 - return: - type: System.Int32 - content.vb: Public Const VERSION_1_1 As Integer = 1 -- uid: OpenTK.Graphics.Egl.Egl.VERSION_1_2 - commentId: F:OpenTK.Graphics.Egl.Egl.VERSION_1_2 - id: VERSION_1_2 - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: VERSION_1_2 - nameWithType: Egl.VERSION_1_2 - fullName: OpenTK.Graphics.Egl.Egl.VERSION_1_2 - type: Field - source: - id: VERSION_1_2 - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 115 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public const int VERSION_1_2 = 1 - return: - type: System.Int32 - content.vb: Public Const VERSION_1_2 As Integer = 1 -- uid: OpenTK.Graphics.Egl.Egl.VERSION_1_3 - commentId: F:OpenTK.Graphics.Egl.Egl.VERSION_1_3 - id: VERSION_1_3 - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: VERSION_1_3 - nameWithType: Egl.VERSION_1_3 - fullName: OpenTK.Graphics.Egl.Egl.VERSION_1_3 - type: Field - source: - id: VERSION_1_3 - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 116 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public const int VERSION_1_3 = 1 - return: - type: System.Int32 - content.vb: Public Const VERSION_1_3 As Integer = 1 -- uid: OpenTK.Graphics.Egl.Egl.VERSION_1_4 - commentId: F:OpenTK.Graphics.Egl.Egl.VERSION_1_4 - id: VERSION_1_4 - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: VERSION_1_4 - nameWithType: Egl.VERSION_1_4 - fullName: OpenTK.Graphics.Egl.Egl.VERSION_1_4 - type: Field - source: - id: VERSION_1_4 - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 117 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public const int VERSION_1_4 = 1 - return: - type: System.Int32 - content.vb: Public Const VERSION_1_4 As Integer = 1 -- uid: OpenTK.Graphics.Egl.Egl.FALSE - commentId: F:OpenTK.Graphics.Egl.Egl.FALSE - id: "FALSE" - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: "FALSE" - nameWithType: Egl.FALSE - fullName: OpenTK.Graphics.Egl.Egl.FALSE - type: Field - source: - id: "FALSE" - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 118 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public const int FALSE = 0 - return: - type: System.Int32 - content.vb: Public Const FALSE As Integer = 0 -- uid: OpenTK.Graphics.Egl.Egl.TRUE - commentId: F:OpenTK.Graphics.Egl.Egl.TRUE - id: "TRUE" - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: "TRUE" - nameWithType: Egl.TRUE - fullName: OpenTK.Graphics.Egl.Egl.TRUE - type: Field - source: - id: "TRUE" - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 119 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public const int TRUE = 1 - return: - type: System.Int32 - content.vb: Public Const TRUE As Integer = 1 -- uid: OpenTK.Graphics.Egl.Egl.DONT_CARE - commentId: F:OpenTK.Graphics.Egl.Egl.DONT_CARE - id: DONT_CARE - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: DONT_CARE - nameWithType: Egl.DONT_CARE - fullName: OpenTK.Graphics.Egl.Egl.DONT_CARE - type: Field - source: - id: DONT_CARE - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 120 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public const int DONT_CARE = -1 - return: - type: System.Int32 - content.vb: Public Const DONT_CARE As Integer = -1 -- uid: OpenTK.Graphics.Egl.Egl.CONTEXT_LOST - commentId: F:OpenTK.Graphics.Egl.Egl.CONTEXT_LOST - id: CONTEXT_LOST - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: CONTEXT_LOST - nameWithType: Egl.CONTEXT_LOST - fullName: OpenTK.Graphics.Egl.Egl.CONTEXT_LOST - type: Field - source: - id: CONTEXT_LOST - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 121 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public const int CONTEXT_LOST = 12302 - return: - type: System.Int32 - content.vb: Public Const CONTEXT_LOST As Integer = 12302 -- uid: OpenTK.Graphics.Egl.Egl.BUFFER_SIZE - commentId: F:OpenTK.Graphics.Egl.Egl.BUFFER_SIZE - id: BUFFER_SIZE - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: BUFFER_SIZE - nameWithType: Egl.BUFFER_SIZE - fullName: OpenTK.Graphics.Egl.Egl.BUFFER_SIZE - type: Field - source: - id: BUFFER_SIZE - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 122 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public const int BUFFER_SIZE = 12320 - return: - type: System.Int32 - content.vb: Public Const BUFFER_SIZE As Integer = 12320 -- uid: OpenTK.Graphics.Egl.Egl.ALPHA_SIZE - commentId: F:OpenTK.Graphics.Egl.Egl.ALPHA_SIZE - id: ALPHA_SIZE - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: ALPHA_SIZE - nameWithType: Egl.ALPHA_SIZE - fullName: OpenTK.Graphics.Egl.Egl.ALPHA_SIZE - type: Field - source: - id: ALPHA_SIZE - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 123 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public const int ALPHA_SIZE = 12321 - return: - type: System.Int32 - content.vb: Public Const ALPHA_SIZE As Integer = 12321 -- uid: OpenTK.Graphics.Egl.Egl.BLUE_SIZE - commentId: F:OpenTK.Graphics.Egl.Egl.BLUE_SIZE - id: BLUE_SIZE - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: BLUE_SIZE - nameWithType: Egl.BLUE_SIZE - fullName: OpenTK.Graphics.Egl.Egl.BLUE_SIZE - type: Field - source: - id: BLUE_SIZE - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 124 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public const int BLUE_SIZE = 12322 - return: - type: System.Int32 - content.vb: Public Const BLUE_SIZE As Integer = 12322 -- uid: OpenTK.Graphics.Egl.Egl.GREEN_SIZE - commentId: F:OpenTK.Graphics.Egl.Egl.GREEN_SIZE - id: GREEN_SIZE - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: GREEN_SIZE - nameWithType: Egl.GREEN_SIZE - fullName: OpenTK.Graphics.Egl.Egl.GREEN_SIZE - type: Field - source: - id: GREEN_SIZE - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 125 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public const int GREEN_SIZE = 12323 - return: - type: System.Int32 - content.vb: Public Const GREEN_SIZE As Integer = 12323 -- uid: OpenTK.Graphics.Egl.Egl.RED_SIZE - commentId: F:OpenTK.Graphics.Egl.Egl.RED_SIZE - id: RED_SIZE - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: RED_SIZE - nameWithType: Egl.RED_SIZE - fullName: OpenTK.Graphics.Egl.Egl.RED_SIZE - type: Field - source: - id: RED_SIZE - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 126 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public const int RED_SIZE = 12324 - return: - type: System.Int32 - content.vb: Public Const RED_SIZE As Integer = 12324 -- uid: OpenTK.Graphics.Egl.Egl.DEPTH_SIZE - commentId: F:OpenTK.Graphics.Egl.Egl.DEPTH_SIZE - id: DEPTH_SIZE - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: DEPTH_SIZE - nameWithType: Egl.DEPTH_SIZE - fullName: OpenTK.Graphics.Egl.Egl.DEPTH_SIZE - type: Field - source: - id: DEPTH_SIZE - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 127 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public const int DEPTH_SIZE = 12325 - return: - type: System.Int32 - content.vb: Public Const DEPTH_SIZE As Integer = 12325 -- uid: OpenTK.Graphics.Egl.Egl.STENCIL_SIZE - commentId: F:OpenTK.Graphics.Egl.Egl.STENCIL_SIZE - id: STENCIL_SIZE - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: STENCIL_SIZE - nameWithType: Egl.STENCIL_SIZE - fullName: OpenTK.Graphics.Egl.Egl.STENCIL_SIZE - type: Field - source: - id: STENCIL_SIZE - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 128 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public const int STENCIL_SIZE = 12326 - return: - type: System.Int32 - content.vb: Public Const STENCIL_SIZE As Integer = 12326 -- uid: OpenTK.Graphics.Egl.Egl.CONFIG_CAVEAT - commentId: F:OpenTK.Graphics.Egl.Egl.CONFIG_CAVEAT - id: CONFIG_CAVEAT - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: CONFIG_CAVEAT - nameWithType: Egl.CONFIG_CAVEAT - fullName: OpenTK.Graphics.Egl.Egl.CONFIG_CAVEAT - type: Field - source: - id: CONFIG_CAVEAT - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 129 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public const int CONFIG_CAVEAT = 12327 - return: - type: System.Int32 - content.vb: Public Const CONFIG_CAVEAT As Integer = 12327 -- uid: OpenTK.Graphics.Egl.Egl.CONFIG_ID - commentId: F:OpenTK.Graphics.Egl.Egl.CONFIG_ID - id: CONFIG_ID - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: CONFIG_ID - nameWithType: Egl.CONFIG_ID - fullName: OpenTK.Graphics.Egl.Egl.CONFIG_ID - type: Field - source: - id: CONFIG_ID - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 130 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public const int CONFIG_ID = 12328 - return: - type: System.Int32 - content.vb: Public Const CONFIG_ID As Integer = 12328 -- uid: OpenTK.Graphics.Egl.Egl.LEVEL - commentId: F:OpenTK.Graphics.Egl.Egl.LEVEL - id: LEVEL - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: LEVEL - nameWithType: Egl.LEVEL - fullName: OpenTK.Graphics.Egl.Egl.LEVEL - type: Field - source: - id: LEVEL - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 131 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public const int LEVEL = 12329 - return: - type: System.Int32 - content.vb: Public Const LEVEL As Integer = 12329 -- uid: OpenTK.Graphics.Egl.Egl.MAX_PBUFFER_HEIGHT - commentId: F:OpenTK.Graphics.Egl.Egl.MAX_PBUFFER_HEIGHT - id: MAX_PBUFFER_HEIGHT - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: MAX_PBUFFER_HEIGHT - nameWithType: Egl.MAX_PBUFFER_HEIGHT - fullName: OpenTK.Graphics.Egl.Egl.MAX_PBUFFER_HEIGHT - type: Field - source: - id: MAX_PBUFFER_HEIGHT - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 132 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public const int MAX_PBUFFER_HEIGHT = 12330 - return: - type: System.Int32 - content.vb: Public Const MAX_PBUFFER_HEIGHT As Integer = 12330 -- uid: OpenTK.Graphics.Egl.Egl.MAX_PBUFFER_PIXELS - commentId: F:OpenTK.Graphics.Egl.Egl.MAX_PBUFFER_PIXELS - id: MAX_PBUFFER_PIXELS - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: MAX_PBUFFER_PIXELS - nameWithType: Egl.MAX_PBUFFER_PIXELS - fullName: OpenTK.Graphics.Egl.Egl.MAX_PBUFFER_PIXELS - type: Field - source: - id: MAX_PBUFFER_PIXELS - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 133 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public const int MAX_PBUFFER_PIXELS = 12331 - return: - type: System.Int32 - content.vb: Public Const MAX_PBUFFER_PIXELS As Integer = 12331 -- uid: OpenTK.Graphics.Egl.Egl.MAX_PBUFFER_WIDTH - commentId: F:OpenTK.Graphics.Egl.Egl.MAX_PBUFFER_WIDTH - id: MAX_PBUFFER_WIDTH - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: MAX_PBUFFER_WIDTH - nameWithType: Egl.MAX_PBUFFER_WIDTH - fullName: OpenTK.Graphics.Egl.Egl.MAX_PBUFFER_WIDTH - type: Field - source: - id: MAX_PBUFFER_WIDTH - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 134 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public const int MAX_PBUFFER_WIDTH = 12332 - return: - type: System.Int32 - content.vb: Public Const MAX_PBUFFER_WIDTH As Integer = 12332 -- uid: OpenTK.Graphics.Egl.Egl.NATIVE_RENDERABLE - commentId: F:OpenTK.Graphics.Egl.Egl.NATIVE_RENDERABLE - id: NATIVE_RENDERABLE - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: NATIVE_RENDERABLE - nameWithType: Egl.NATIVE_RENDERABLE - fullName: OpenTK.Graphics.Egl.Egl.NATIVE_RENDERABLE - type: Field - source: - id: NATIVE_RENDERABLE - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 135 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public const int NATIVE_RENDERABLE = 12333 - return: - type: System.Int32 - content.vb: Public Const NATIVE_RENDERABLE As Integer = 12333 -- uid: OpenTK.Graphics.Egl.Egl.NATIVE_VISUAL_ID - commentId: F:OpenTK.Graphics.Egl.Egl.NATIVE_VISUAL_ID - id: NATIVE_VISUAL_ID - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: NATIVE_VISUAL_ID - nameWithType: Egl.NATIVE_VISUAL_ID - fullName: OpenTK.Graphics.Egl.Egl.NATIVE_VISUAL_ID - type: Field - source: - id: NATIVE_VISUAL_ID - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 136 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public const int NATIVE_VISUAL_ID = 12334 - return: - type: System.Int32 - content.vb: Public Const NATIVE_VISUAL_ID As Integer = 12334 -- uid: OpenTK.Graphics.Egl.Egl.NATIVE_VISUAL_TYPE - commentId: F:OpenTK.Graphics.Egl.Egl.NATIVE_VISUAL_TYPE - id: NATIVE_VISUAL_TYPE - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: NATIVE_VISUAL_TYPE - nameWithType: Egl.NATIVE_VISUAL_TYPE - fullName: OpenTK.Graphics.Egl.Egl.NATIVE_VISUAL_TYPE - type: Field - source: - id: NATIVE_VISUAL_TYPE - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 137 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public const int NATIVE_VISUAL_TYPE = 12335 - return: - type: System.Int32 - content.vb: Public Const NATIVE_VISUAL_TYPE As Integer = 12335 -- uid: OpenTK.Graphics.Egl.Egl.PRESERVED_RESOURCES - commentId: F:OpenTK.Graphics.Egl.Egl.PRESERVED_RESOURCES - id: PRESERVED_RESOURCES - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: PRESERVED_RESOURCES - nameWithType: Egl.PRESERVED_RESOURCES - fullName: OpenTK.Graphics.Egl.Egl.PRESERVED_RESOURCES - type: Field - source: - id: PRESERVED_RESOURCES - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 138 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public const int PRESERVED_RESOURCES = 12336 - return: - type: System.Int32 - content.vb: Public Const PRESERVED_RESOURCES As Integer = 12336 -- uid: OpenTK.Graphics.Egl.Egl.SAMPLES - commentId: F:OpenTK.Graphics.Egl.Egl.SAMPLES - id: SAMPLES - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: SAMPLES - nameWithType: Egl.SAMPLES - fullName: OpenTK.Graphics.Egl.Egl.SAMPLES - type: Field - source: - id: SAMPLES - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 139 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public const int SAMPLES = 12337 - return: - type: System.Int32 - content.vb: Public Const SAMPLES As Integer = 12337 -- uid: OpenTK.Graphics.Egl.Egl.SAMPLE_BUFFERS - commentId: F:OpenTK.Graphics.Egl.Egl.SAMPLE_BUFFERS - id: SAMPLE_BUFFERS - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: SAMPLE_BUFFERS - nameWithType: Egl.SAMPLE_BUFFERS - fullName: OpenTK.Graphics.Egl.Egl.SAMPLE_BUFFERS - type: Field - source: - id: SAMPLE_BUFFERS - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 140 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public const int SAMPLE_BUFFERS = 12338 - return: - type: System.Int32 - content.vb: Public Const SAMPLE_BUFFERS As Integer = 12338 -- uid: OpenTK.Graphics.Egl.Egl.SURFACE_TYPE - commentId: F:OpenTK.Graphics.Egl.Egl.SURFACE_TYPE - id: SURFACE_TYPE - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: SURFACE_TYPE - nameWithType: Egl.SURFACE_TYPE - fullName: OpenTK.Graphics.Egl.Egl.SURFACE_TYPE - type: Field - source: - id: SURFACE_TYPE - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 141 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public const int SURFACE_TYPE = 12339 - return: - type: System.Int32 - content.vb: Public Const SURFACE_TYPE As Integer = 12339 -- uid: OpenTK.Graphics.Egl.Egl.TRANSPARENT_TYPE - commentId: F:OpenTK.Graphics.Egl.Egl.TRANSPARENT_TYPE - id: TRANSPARENT_TYPE - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: TRANSPARENT_TYPE - nameWithType: Egl.TRANSPARENT_TYPE - fullName: OpenTK.Graphics.Egl.Egl.TRANSPARENT_TYPE - type: Field - source: - id: TRANSPARENT_TYPE - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 142 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public const int TRANSPARENT_TYPE = 12340 - return: - type: System.Int32 - content.vb: Public Const TRANSPARENT_TYPE As Integer = 12340 -- uid: OpenTK.Graphics.Egl.Egl.TRANSPARENT_BLUE_VALUE - commentId: F:OpenTK.Graphics.Egl.Egl.TRANSPARENT_BLUE_VALUE - id: TRANSPARENT_BLUE_VALUE - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: TRANSPARENT_BLUE_VALUE - nameWithType: Egl.TRANSPARENT_BLUE_VALUE - fullName: OpenTK.Graphics.Egl.Egl.TRANSPARENT_BLUE_VALUE - type: Field - source: - id: TRANSPARENT_BLUE_VALUE - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 143 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public const int TRANSPARENT_BLUE_VALUE = 12341 - return: - type: System.Int32 - content.vb: Public Const TRANSPARENT_BLUE_VALUE As Integer = 12341 -- uid: OpenTK.Graphics.Egl.Egl.TRANSPARENT_GREEN_VALUE - commentId: F:OpenTK.Graphics.Egl.Egl.TRANSPARENT_GREEN_VALUE - id: TRANSPARENT_GREEN_VALUE - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: TRANSPARENT_GREEN_VALUE - nameWithType: Egl.TRANSPARENT_GREEN_VALUE - fullName: OpenTK.Graphics.Egl.Egl.TRANSPARENT_GREEN_VALUE - type: Field - source: - id: TRANSPARENT_GREEN_VALUE - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 144 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public const int TRANSPARENT_GREEN_VALUE = 12342 - return: - type: System.Int32 - content.vb: Public Const TRANSPARENT_GREEN_VALUE As Integer = 12342 -- uid: OpenTK.Graphics.Egl.Egl.TRANSPARENT_RED_VALUE - commentId: F:OpenTK.Graphics.Egl.Egl.TRANSPARENT_RED_VALUE - id: TRANSPARENT_RED_VALUE - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: TRANSPARENT_RED_VALUE - nameWithType: Egl.TRANSPARENT_RED_VALUE - fullName: OpenTK.Graphics.Egl.Egl.TRANSPARENT_RED_VALUE - type: Field - source: - id: TRANSPARENT_RED_VALUE - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 145 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public const int TRANSPARENT_RED_VALUE = 12343 - return: - type: System.Int32 - content.vb: Public Const TRANSPARENT_RED_VALUE As Integer = 12343 -- uid: OpenTK.Graphics.Egl.Egl.NONE - commentId: F:OpenTK.Graphics.Egl.Egl.NONE - id: NONE - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: NONE - nameWithType: Egl.NONE - fullName: OpenTK.Graphics.Egl.Egl.NONE - type: Field - source: - id: NONE - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 146 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public const int NONE = 12344 - return: - type: System.Int32 - content.vb: Public Const NONE As Integer = 12344 -- uid: OpenTK.Graphics.Egl.Egl.BIND_TO_TEXTURE_RGB - commentId: F:OpenTK.Graphics.Egl.Egl.BIND_TO_TEXTURE_RGB - id: BIND_TO_TEXTURE_RGB - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: BIND_TO_TEXTURE_RGB - nameWithType: Egl.BIND_TO_TEXTURE_RGB - fullName: OpenTK.Graphics.Egl.Egl.BIND_TO_TEXTURE_RGB - type: Field - source: - id: BIND_TO_TEXTURE_RGB - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 147 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public const int BIND_TO_TEXTURE_RGB = 12345 - return: - type: System.Int32 - content.vb: Public Const BIND_TO_TEXTURE_RGB As Integer = 12345 -- uid: OpenTK.Graphics.Egl.Egl.BIND_TO_TEXTURE_RGBA - commentId: F:OpenTK.Graphics.Egl.Egl.BIND_TO_TEXTURE_RGBA - id: BIND_TO_TEXTURE_RGBA - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: BIND_TO_TEXTURE_RGBA - nameWithType: Egl.BIND_TO_TEXTURE_RGBA - fullName: OpenTK.Graphics.Egl.Egl.BIND_TO_TEXTURE_RGBA - type: Field - source: - id: BIND_TO_TEXTURE_RGBA - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 148 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public const int BIND_TO_TEXTURE_RGBA = 12346 - return: - type: System.Int32 - content.vb: Public Const BIND_TO_TEXTURE_RGBA As Integer = 12346 -- uid: OpenTK.Graphics.Egl.Egl.MIN_SWAP_INTERVAL - commentId: F:OpenTK.Graphics.Egl.Egl.MIN_SWAP_INTERVAL - id: MIN_SWAP_INTERVAL - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: MIN_SWAP_INTERVAL - nameWithType: Egl.MIN_SWAP_INTERVAL - fullName: OpenTK.Graphics.Egl.Egl.MIN_SWAP_INTERVAL - type: Field - source: - id: MIN_SWAP_INTERVAL - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 149 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public const int MIN_SWAP_INTERVAL = 12347 - return: - type: System.Int32 - content.vb: Public Const MIN_SWAP_INTERVAL As Integer = 12347 -- uid: OpenTK.Graphics.Egl.Egl.MAX_SWAP_INTERVAL - commentId: F:OpenTK.Graphics.Egl.Egl.MAX_SWAP_INTERVAL - id: MAX_SWAP_INTERVAL - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: MAX_SWAP_INTERVAL - nameWithType: Egl.MAX_SWAP_INTERVAL - fullName: OpenTK.Graphics.Egl.Egl.MAX_SWAP_INTERVAL - type: Field - source: - id: MAX_SWAP_INTERVAL - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 150 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public const int MAX_SWAP_INTERVAL = 12348 - return: - type: System.Int32 - content.vb: Public Const MAX_SWAP_INTERVAL As Integer = 12348 -- uid: OpenTK.Graphics.Egl.Egl.LUMINANCE_SIZE - commentId: F:OpenTK.Graphics.Egl.Egl.LUMINANCE_SIZE - id: LUMINANCE_SIZE - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: LUMINANCE_SIZE - nameWithType: Egl.LUMINANCE_SIZE - fullName: OpenTK.Graphics.Egl.Egl.LUMINANCE_SIZE - type: Field - source: - id: LUMINANCE_SIZE - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 151 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public const int LUMINANCE_SIZE = 12349 - return: - type: System.Int32 - content.vb: Public Const LUMINANCE_SIZE As Integer = 12349 -- uid: OpenTK.Graphics.Egl.Egl.ALPHA_MASK_SIZE - commentId: F:OpenTK.Graphics.Egl.Egl.ALPHA_MASK_SIZE - id: ALPHA_MASK_SIZE - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: ALPHA_MASK_SIZE - nameWithType: Egl.ALPHA_MASK_SIZE - fullName: OpenTK.Graphics.Egl.Egl.ALPHA_MASK_SIZE - type: Field - source: - id: ALPHA_MASK_SIZE - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 152 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public const int ALPHA_MASK_SIZE = 12350 - return: - type: System.Int32 - content.vb: Public Const ALPHA_MASK_SIZE As Integer = 12350 -- uid: OpenTK.Graphics.Egl.Egl.COLOR_BUFFER_TYPE - commentId: F:OpenTK.Graphics.Egl.Egl.COLOR_BUFFER_TYPE - id: COLOR_BUFFER_TYPE - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: COLOR_BUFFER_TYPE - nameWithType: Egl.COLOR_BUFFER_TYPE - fullName: OpenTK.Graphics.Egl.Egl.COLOR_BUFFER_TYPE - type: Field - source: - id: COLOR_BUFFER_TYPE - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 153 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public const int COLOR_BUFFER_TYPE = 12351 - return: - type: System.Int32 - content.vb: Public Const COLOR_BUFFER_TYPE As Integer = 12351 -- uid: OpenTK.Graphics.Egl.Egl.RENDERABLE_TYPE - commentId: F:OpenTK.Graphics.Egl.Egl.RENDERABLE_TYPE - id: RENDERABLE_TYPE - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: RENDERABLE_TYPE - nameWithType: Egl.RENDERABLE_TYPE - fullName: OpenTK.Graphics.Egl.Egl.RENDERABLE_TYPE - type: Field - source: - id: RENDERABLE_TYPE - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 154 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public const int RENDERABLE_TYPE = 12352 - return: - type: System.Int32 - content.vb: Public Const RENDERABLE_TYPE As Integer = 12352 -- uid: OpenTK.Graphics.Egl.Egl.MATCH_NATIVE_PIXMAP - commentId: F:OpenTK.Graphics.Egl.Egl.MATCH_NATIVE_PIXMAP - id: MATCH_NATIVE_PIXMAP - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: MATCH_NATIVE_PIXMAP - nameWithType: Egl.MATCH_NATIVE_PIXMAP - fullName: OpenTK.Graphics.Egl.Egl.MATCH_NATIVE_PIXMAP - type: Field - source: - id: MATCH_NATIVE_PIXMAP - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 155 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public const int MATCH_NATIVE_PIXMAP = 12353 - return: - type: System.Int32 - content.vb: Public Const MATCH_NATIVE_PIXMAP As Integer = 12353 -- uid: OpenTK.Graphics.Egl.Egl.CONFORMANT - commentId: F:OpenTK.Graphics.Egl.Egl.CONFORMANT - id: CONFORMANT - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: CONFORMANT - nameWithType: Egl.CONFORMANT - fullName: OpenTK.Graphics.Egl.Egl.CONFORMANT - type: Field - source: - id: CONFORMANT - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 156 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public const int CONFORMANT = 12354 - return: - type: System.Int32 - content.vb: Public Const CONFORMANT As Integer = 12354 -- uid: OpenTK.Graphics.Egl.Egl.SLOW_CONFIG - commentId: F:OpenTK.Graphics.Egl.Egl.SLOW_CONFIG - id: SLOW_CONFIG - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: SLOW_CONFIG - nameWithType: Egl.SLOW_CONFIG - fullName: OpenTK.Graphics.Egl.Egl.SLOW_CONFIG - type: Field - source: - id: SLOW_CONFIG - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 157 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public const int SLOW_CONFIG = 12368 - return: - type: System.Int32 - content.vb: Public Const SLOW_CONFIG As Integer = 12368 -- uid: OpenTK.Graphics.Egl.Egl.NON_CONFORMANT_CONFIG - commentId: F:OpenTK.Graphics.Egl.Egl.NON_CONFORMANT_CONFIG - id: NON_CONFORMANT_CONFIG - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: NON_CONFORMANT_CONFIG - nameWithType: Egl.NON_CONFORMANT_CONFIG - fullName: OpenTK.Graphics.Egl.Egl.NON_CONFORMANT_CONFIG - type: Field - source: - id: NON_CONFORMANT_CONFIG - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 158 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public const int NON_CONFORMANT_CONFIG = 12369 - return: - type: System.Int32 - content.vb: Public Const NON_CONFORMANT_CONFIG As Integer = 12369 -- uid: OpenTK.Graphics.Egl.Egl.TRANSPARENT_RGB - commentId: F:OpenTK.Graphics.Egl.Egl.TRANSPARENT_RGB - id: TRANSPARENT_RGB - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: TRANSPARENT_RGB - nameWithType: Egl.TRANSPARENT_RGB - fullName: OpenTK.Graphics.Egl.Egl.TRANSPARENT_RGB - type: Field - source: - id: TRANSPARENT_RGB - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 159 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public const int TRANSPARENT_RGB = 12370 - return: - type: System.Int32 - content.vb: Public Const TRANSPARENT_RGB As Integer = 12370 -- uid: OpenTK.Graphics.Egl.Egl.RGB_BUFFER - commentId: F:OpenTK.Graphics.Egl.Egl.RGB_BUFFER - id: RGB_BUFFER - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: RGB_BUFFER - nameWithType: Egl.RGB_BUFFER - fullName: OpenTK.Graphics.Egl.Egl.RGB_BUFFER - type: Field - source: - id: RGB_BUFFER - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 160 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public const int RGB_BUFFER = 12430 - return: - type: System.Int32 - content.vb: Public Const RGB_BUFFER As Integer = 12430 -- uid: OpenTK.Graphics.Egl.Egl.LUMINANCE_BUFFER - commentId: F:OpenTK.Graphics.Egl.Egl.LUMINANCE_BUFFER - id: LUMINANCE_BUFFER - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: LUMINANCE_BUFFER - nameWithType: Egl.LUMINANCE_BUFFER - fullName: OpenTK.Graphics.Egl.Egl.LUMINANCE_BUFFER - type: Field - source: - id: LUMINANCE_BUFFER - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 161 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public const int LUMINANCE_BUFFER = 12431 - return: - type: System.Int32 - content.vb: Public Const LUMINANCE_BUFFER As Integer = 12431 -- uid: OpenTK.Graphics.Egl.Egl.NO_TEXTURE - commentId: F:OpenTK.Graphics.Egl.Egl.NO_TEXTURE - id: NO_TEXTURE - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: NO_TEXTURE - nameWithType: Egl.NO_TEXTURE - fullName: OpenTK.Graphics.Egl.Egl.NO_TEXTURE - type: Field - source: - id: NO_TEXTURE - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 162 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public const int NO_TEXTURE = 12380 - return: - type: System.Int32 - content.vb: Public Const NO_TEXTURE As Integer = 12380 -- uid: OpenTK.Graphics.Egl.Egl.TEXTURE_RGB - commentId: F:OpenTK.Graphics.Egl.Egl.TEXTURE_RGB - id: TEXTURE_RGB - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: TEXTURE_RGB - nameWithType: Egl.TEXTURE_RGB - fullName: OpenTK.Graphics.Egl.Egl.TEXTURE_RGB - type: Field - source: - id: TEXTURE_RGB - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 163 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public const int TEXTURE_RGB = 12381 - return: - type: System.Int32 - content.vb: Public Const TEXTURE_RGB As Integer = 12381 -- uid: OpenTK.Graphics.Egl.Egl.TEXTURE_RGBA - commentId: F:OpenTK.Graphics.Egl.Egl.TEXTURE_RGBA - id: TEXTURE_RGBA - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: TEXTURE_RGBA - nameWithType: Egl.TEXTURE_RGBA - fullName: OpenTK.Graphics.Egl.Egl.TEXTURE_RGBA - type: Field - source: - id: TEXTURE_RGBA - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 164 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public const int TEXTURE_RGBA = 12382 - return: - type: System.Int32 - content.vb: Public Const TEXTURE_RGBA As Integer = 12382 -- uid: OpenTK.Graphics.Egl.Egl.TEXTURE_2D - commentId: F:OpenTK.Graphics.Egl.Egl.TEXTURE_2D - id: TEXTURE_2D - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: TEXTURE_2D - nameWithType: Egl.TEXTURE_2D - fullName: OpenTK.Graphics.Egl.Egl.TEXTURE_2D - type: Field - source: - id: TEXTURE_2D - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 165 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public const int TEXTURE_2D = 12383 - return: - type: System.Int32 - content.vb: Public Const TEXTURE_2D As Integer = 12383 -- uid: OpenTK.Graphics.Egl.Egl.PBUFFER_BIT - commentId: F:OpenTK.Graphics.Egl.Egl.PBUFFER_BIT - id: PBUFFER_BIT - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: PBUFFER_BIT - nameWithType: Egl.PBUFFER_BIT - fullName: OpenTK.Graphics.Egl.Egl.PBUFFER_BIT - type: Field - source: - id: PBUFFER_BIT - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 166 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public const int PBUFFER_BIT = 1 - return: - type: System.Int32 - content.vb: Public Const PBUFFER_BIT As Integer = 1 -- uid: OpenTK.Graphics.Egl.Egl.PIXMAP_BIT - commentId: F:OpenTK.Graphics.Egl.Egl.PIXMAP_BIT - id: PIXMAP_BIT - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: PIXMAP_BIT - nameWithType: Egl.PIXMAP_BIT - fullName: OpenTK.Graphics.Egl.Egl.PIXMAP_BIT - type: Field - source: - id: PIXMAP_BIT - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 167 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public const int PIXMAP_BIT = 2 - return: - type: System.Int32 - content.vb: Public Const PIXMAP_BIT As Integer = 2 -- uid: OpenTK.Graphics.Egl.Egl.WINDOW_BIT - commentId: F:OpenTK.Graphics.Egl.Egl.WINDOW_BIT - id: WINDOW_BIT - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: WINDOW_BIT - nameWithType: Egl.WINDOW_BIT - fullName: OpenTK.Graphics.Egl.Egl.WINDOW_BIT - type: Field - source: - id: WINDOW_BIT - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 168 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public const int WINDOW_BIT = 4 - return: - type: System.Int32 - content.vb: Public Const WINDOW_BIT As Integer = 4 -- uid: OpenTK.Graphics.Egl.Egl.VG_COLORSPACE_LINEAR_BIT - commentId: F:OpenTK.Graphics.Egl.Egl.VG_COLORSPACE_LINEAR_BIT - id: VG_COLORSPACE_LINEAR_BIT - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: VG_COLORSPACE_LINEAR_BIT - nameWithType: Egl.VG_COLORSPACE_LINEAR_BIT - fullName: OpenTK.Graphics.Egl.Egl.VG_COLORSPACE_LINEAR_BIT - type: Field - source: - id: VG_COLORSPACE_LINEAR_BIT - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 169 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public const int VG_COLORSPACE_LINEAR_BIT = 32 - return: - type: System.Int32 - content.vb: Public Const VG_COLORSPACE_LINEAR_BIT As Integer = 32 -- uid: OpenTK.Graphics.Egl.Egl.VG_ALPHA_FORMAT_PRE_BIT - commentId: F:OpenTK.Graphics.Egl.Egl.VG_ALPHA_FORMAT_PRE_BIT - id: VG_ALPHA_FORMAT_PRE_BIT - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: VG_ALPHA_FORMAT_PRE_BIT - nameWithType: Egl.VG_ALPHA_FORMAT_PRE_BIT - fullName: OpenTK.Graphics.Egl.Egl.VG_ALPHA_FORMAT_PRE_BIT - type: Field - source: - id: VG_ALPHA_FORMAT_PRE_BIT - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 170 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public const int VG_ALPHA_FORMAT_PRE_BIT = 64 - return: - type: System.Int32 - content.vb: Public Const VG_ALPHA_FORMAT_PRE_BIT As Integer = 64 -- uid: OpenTK.Graphics.Egl.Egl.MULTISAMPLE_RESOLVE_BOX_BIT - commentId: F:OpenTK.Graphics.Egl.Egl.MULTISAMPLE_RESOLVE_BOX_BIT - id: MULTISAMPLE_RESOLVE_BOX_BIT - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: MULTISAMPLE_RESOLVE_BOX_BIT - nameWithType: Egl.MULTISAMPLE_RESOLVE_BOX_BIT - fullName: OpenTK.Graphics.Egl.Egl.MULTISAMPLE_RESOLVE_BOX_BIT - type: Field - source: - id: MULTISAMPLE_RESOLVE_BOX_BIT - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 171 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public const int MULTISAMPLE_RESOLVE_BOX_BIT = 512 - return: - type: System.Int32 - content.vb: Public Const MULTISAMPLE_RESOLVE_BOX_BIT As Integer = 512 -- uid: OpenTK.Graphics.Egl.Egl.SWAP_BEHAVIOR_PRESERVED_BIT - commentId: F:OpenTK.Graphics.Egl.Egl.SWAP_BEHAVIOR_PRESERVED_BIT - id: SWAP_BEHAVIOR_PRESERVED_BIT - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: SWAP_BEHAVIOR_PRESERVED_BIT - nameWithType: Egl.SWAP_BEHAVIOR_PRESERVED_BIT - fullName: OpenTK.Graphics.Egl.Egl.SWAP_BEHAVIOR_PRESERVED_BIT - type: Field - source: - id: SWAP_BEHAVIOR_PRESERVED_BIT - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 172 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public const int SWAP_BEHAVIOR_PRESERVED_BIT = 1024 - return: - type: System.Int32 - content.vb: Public Const SWAP_BEHAVIOR_PRESERVED_BIT As Integer = 1024 -- uid: OpenTK.Graphics.Egl.Egl.OPENGL_ES_BIT - commentId: F:OpenTK.Graphics.Egl.Egl.OPENGL_ES_BIT - id: OPENGL_ES_BIT - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: OPENGL_ES_BIT - nameWithType: Egl.OPENGL_ES_BIT - fullName: OpenTK.Graphics.Egl.Egl.OPENGL_ES_BIT - type: Field - source: - id: OPENGL_ES_BIT - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 173 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public const int OPENGL_ES_BIT = 1 - return: - type: System.Int32 - content.vb: Public Const OPENGL_ES_BIT As Integer = 1 -- uid: OpenTK.Graphics.Egl.Egl.OPENVG_BIT - commentId: F:OpenTK.Graphics.Egl.Egl.OPENVG_BIT - id: OPENVG_BIT - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: OPENVG_BIT - nameWithType: Egl.OPENVG_BIT - fullName: OpenTK.Graphics.Egl.Egl.OPENVG_BIT - type: Field - source: - id: OPENVG_BIT - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 174 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public const int OPENVG_BIT = 2 - return: - type: System.Int32 - content.vb: Public Const OPENVG_BIT As Integer = 2 -- uid: OpenTK.Graphics.Egl.Egl.OPENGL_ES2_BIT - commentId: F:OpenTK.Graphics.Egl.Egl.OPENGL_ES2_BIT - id: OPENGL_ES2_BIT - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: OPENGL_ES2_BIT - nameWithType: Egl.OPENGL_ES2_BIT - fullName: OpenTK.Graphics.Egl.Egl.OPENGL_ES2_BIT - type: Field - source: - id: OPENGL_ES2_BIT - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 175 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public const int OPENGL_ES2_BIT = 4 - return: - type: System.Int32 - content.vb: Public Const OPENGL_ES2_BIT As Integer = 4 -- uid: OpenTK.Graphics.Egl.Egl.OPENGL_BIT - commentId: F:OpenTK.Graphics.Egl.Egl.OPENGL_BIT - id: OPENGL_BIT - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: OPENGL_BIT - nameWithType: Egl.OPENGL_BIT - fullName: OpenTK.Graphics.Egl.Egl.OPENGL_BIT - type: Field - source: - id: OPENGL_BIT - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 176 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public const int OPENGL_BIT = 8 - return: - type: System.Int32 - content.vb: Public Const OPENGL_BIT As Integer = 8 -- uid: OpenTK.Graphics.Egl.Egl.OPENGL_ES3_BIT - commentId: F:OpenTK.Graphics.Egl.Egl.OPENGL_ES3_BIT - id: OPENGL_ES3_BIT - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: OPENGL_ES3_BIT - nameWithType: Egl.OPENGL_ES3_BIT - fullName: OpenTK.Graphics.Egl.Egl.OPENGL_ES3_BIT - type: Field - source: - id: OPENGL_ES3_BIT - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 177 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public const int OPENGL_ES3_BIT = 64 - return: - type: System.Int32 - content.vb: Public Const OPENGL_ES3_BIT As Integer = 64 -- uid: OpenTK.Graphics.Egl.Egl.VENDOR - commentId: F:OpenTK.Graphics.Egl.Egl.VENDOR - id: VENDOR - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: VENDOR - nameWithType: Egl.VENDOR - fullName: OpenTK.Graphics.Egl.Egl.VENDOR - type: Field - source: - id: VENDOR - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 178 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public const int VENDOR = 12371 - return: - type: System.Int32 - content.vb: Public Const VENDOR As Integer = 12371 -- uid: OpenTK.Graphics.Egl.Egl.VERSION - commentId: F:OpenTK.Graphics.Egl.Egl.VERSION - id: VERSION - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: VERSION - nameWithType: Egl.VERSION - fullName: OpenTK.Graphics.Egl.Egl.VERSION - type: Field - source: - id: VERSION - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 179 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public const int VERSION = 12372 - return: - type: System.Int32 - content.vb: Public Const VERSION As Integer = 12372 -- uid: OpenTK.Graphics.Egl.Egl.EXTENSIONS - commentId: F:OpenTK.Graphics.Egl.Egl.EXTENSIONS - id: EXTENSIONS - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: EXTENSIONS - nameWithType: Egl.EXTENSIONS - fullName: OpenTK.Graphics.Egl.Egl.EXTENSIONS - type: Field - source: - id: EXTENSIONS - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 180 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public const int EXTENSIONS = 12373 - return: - type: System.Int32 - content.vb: Public Const EXTENSIONS As Integer = 12373 -- uid: OpenTK.Graphics.Egl.Egl.CLIENT_APIS - commentId: F:OpenTK.Graphics.Egl.Egl.CLIENT_APIS - id: CLIENT_APIS - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: CLIENT_APIS - nameWithType: Egl.CLIENT_APIS - fullName: OpenTK.Graphics.Egl.Egl.CLIENT_APIS - type: Field - source: - id: CLIENT_APIS - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 181 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public const int CLIENT_APIS = 12429 - return: - type: System.Int32 - content.vb: Public Const CLIENT_APIS As Integer = 12429 -- uid: OpenTK.Graphics.Egl.Egl.HEIGHT - commentId: F:OpenTK.Graphics.Egl.Egl.HEIGHT - id: HEIGHT - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: HEIGHT - nameWithType: Egl.HEIGHT - fullName: OpenTK.Graphics.Egl.Egl.HEIGHT - type: Field - source: - id: HEIGHT - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 182 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public const int HEIGHT = 12374 - return: - type: System.Int32 - content.vb: Public Const HEIGHT As Integer = 12374 -- uid: OpenTK.Graphics.Egl.Egl.WIDTH - commentId: F:OpenTK.Graphics.Egl.Egl.WIDTH - id: WIDTH - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: WIDTH - nameWithType: Egl.WIDTH - fullName: OpenTK.Graphics.Egl.Egl.WIDTH - type: Field - source: - id: WIDTH - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 183 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public const int WIDTH = 12375 - return: - type: System.Int32 - content.vb: Public Const WIDTH As Integer = 12375 -- uid: OpenTK.Graphics.Egl.Egl.LARGEST_PBUFFER - commentId: F:OpenTK.Graphics.Egl.Egl.LARGEST_PBUFFER - id: LARGEST_PBUFFER - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: LARGEST_PBUFFER - nameWithType: Egl.LARGEST_PBUFFER - fullName: OpenTK.Graphics.Egl.Egl.LARGEST_PBUFFER - type: Field - source: - id: LARGEST_PBUFFER - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 184 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public const int LARGEST_PBUFFER = 12376 - return: - type: System.Int32 - content.vb: Public Const LARGEST_PBUFFER As Integer = 12376 -- uid: OpenTK.Graphics.Egl.Egl.TEXTURE_FORMAT - commentId: F:OpenTK.Graphics.Egl.Egl.TEXTURE_FORMAT - id: TEXTURE_FORMAT - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: TEXTURE_FORMAT - nameWithType: Egl.TEXTURE_FORMAT - fullName: OpenTK.Graphics.Egl.Egl.TEXTURE_FORMAT - type: Field - source: - id: TEXTURE_FORMAT - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 185 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public const int TEXTURE_FORMAT = 12416 - return: - type: System.Int32 - content.vb: Public Const TEXTURE_FORMAT As Integer = 12416 -- uid: OpenTK.Graphics.Egl.Egl.TEXTURE_TARGET - commentId: F:OpenTK.Graphics.Egl.Egl.TEXTURE_TARGET - id: TEXTURE_TARGET - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: TEXTURE_TARGET - nameWithType: Egl.TEXTURE_TARGET - fullName: OpenTK.Graphics.Egl.Egl.TEXTURE_TARGET - type: Field - source: - id: TEXTURE_TARGET - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 186 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public const int TEXTURE_TARGET = 12417 - return: - type: System.Int32 - content.vb: Public Const TEXTURE_TARGET As Integer = 12417 -- uid: OpenTK.Graphics.Egl.Egl.MIPMAP_TEXTURE - commentId: F:OpenTK.Graphics.Egl.Egl.MIPMAP_TEXTURE - id: MIPMAP_TEXTURE - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: MIPMAP_TEXTURE - nameWithType: Egl.MIPMAP_TEXTURE - fullName: OpenTK.Graphics.Egl.Egl.MIPMAP_TEXTURE - type: Field - source: - id: MIPMAP_TEXTURE - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 187 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public const int MIPMAP_TEXTURE = 12418 - return: - type: System.Int32 - content.vb: Public Const MIPMAP_TEXTURE As Integer = 12418 -- uid: OpenTK.Graphics.Egl.Egl.MIPMAP_LEVEL - commentId: F:OpenTK.Graphics.Egl.Egl.MIPMAP_LEVEL - id: MIPMAP_LEVEL - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: MIPMAP_LEVEL - nameWithType: Egl.MIPMAP_LEVEL - fullName: OpenTK.Graphics.Egl.Egl.MIPMAP_LEVEL - type: Field - source: - id: MIPMAP_LEVEL - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 188 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public const int MIPMAP_LEVEL = 12419 - return: - type: System.Int32 - content.vb: Public Const MIPMAP_LEVEL As Integer = 12419 -- uid: OpenTK.Graphics.Egl.Egl.RENDER_BUFFER - commentId: F:OpenTK.Graphics.Egl.Egl.RENDER_BUFFER - id: RENDER_BUFFER - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: RENDER_BUFFER - nameWithType: Egl.RENDER_BUFFER - fullName: OpenTK.Graphics.Egl.Egl.RENDER_BUFFER - type: Field - source: - id: RENDER_BUFFER - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 189 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public const int RENDER_BUFFER = 12422 - return: - type: System.Int32 - content.vb: Public Const RENDER_BUFFER As Integer = 12422 -- uid: OpenTK.Graphics.Egl.Egl.VG_COLORSPACE - commentId: F:OpenTK.Graphics.Egl.Egl.VG_COLORSPACE - id: VG_COLORSPACE - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: VG_COLORSPACE - nameWithType: Egl.VG_COLORSPACE - fullName: OpenTK.Graphics.Egl.Egl.VG_COLORSPACE - type: Field - source: - id: VG_COLORSPACE - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 190 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public const int VG_COLORSPACE = 12423 - return: - type: System.Int32 - content.vb: Public Const VG_COLORSPACE As Integer = 12423 -- uid: OpenTK.Graphics.Egl.Egl.VG_ALPHA_FORMAT - commentId: F:OpenTK.Graphics.Egl.Egl.VG_ALPHA_FORMAT - id: VG_ALPHA_FORMAT - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: VG_ALPHA_FORMAT - nameWithType: Egl.VG_ALPHA_FORMAT - fullName: OpenTK.Graphics.Egl.Egl.VG_ALPHA_FORMAT - type: Field - source: - id: VG_ALPHA_FORMAT - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 191 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public const int VG_ALPHA_FORMAT = 12424 - return: - type: System.Int32 - content.vb: Public Const VG_ALPHA_FORMAT As Integer = 12424 -- uid: OpenTK.Graphics.Egl.Egl.HORIZONTAL_RESOLUTION - commentId: F:OpenTK.Graphics.Egl.Egl.HORIZONTAL_RESOLUTION - id: HORIZONTAL_RESOLUTION - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: HORIZONTAL_RESOLUTION - nameWithType: Egl.HORIZONTAL_RESOLUTION - fullName: OpenTK.Graphics.Egl.Egl.HORIZONTAL_RESOLUTION - type: Field - source: - id: HORIZONTAL_RESOLUTION - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 192 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public const int HORIZONTAL_RESOLUTION = 12432 - return: - type: System.Int32 - content.vb: Public Const HORIZONTAL_RESOLUTION As Integer = 12432 -- uid: OpenTK.Graphics.Egl.Egl.VERTICAL_RESOLUTION - commentId: F:OpenTK.Graphics.Egl.Egl.VERTICAL_RESOLUTION - id: VERTICAL_RESOLUTION - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: VERTICAL_RESOLUTION - nameWithType: Egl.VERTICAL_RESOLUTION - fullName: OpenTK.Graphics.Egl.Egl.VERTICAL_RESOLUTION - type: Field - source: - id: VERTICAL_RESOLUTION - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 193 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public const int VERTICAL_RESOLUTION = 12433 - return: - type: System.Int32 - content.vb: Public Const VERTICAL_RESOLUTION As Integer = 12433 -- uid: OpenTK.Graphics.Egl.Egl.PIXEL_ASPECT_RATIO - commentId: F:OpenTK.Graphics.Egl.Egl.PIXEL_ASPECT_RATIO - id: PIXEL_ASPECT_RATIO - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: PIXEL_ASPECT_RATIO - nameWithType: Egl.PIXEL_ASPECT_RATIO - fullName: OpenTK.Graphics.Egl.Egl.PIXEL_ASPECT_RATIO - type: Field - source: - id: PIXEL_ASPECT_RATIO - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 194 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public const int PIXEL_ASPECT_RATIO = 12434 - return: - type: System.Int32 - content.vb: Public Const PIXEL_ASPECT_RATIO As Integer = 12434 -- uid: OpenTK.Graphics.Egl.Egl.SWAP_BEHAVIOR - commentId: F:OpenTK.Graphics.Egl.Egl.SWAP_BEHAVIOR - id: SWAP_BEHAVIOR - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: SWAP_BEHAVIOR - nameWithType: Egl.SWAP_BEHAVIOR - fullName: OpenTK.Graphics.Egl.Egl.SWAP_BEHAVIOR - type: Field - source: - id: SWAP_BEHAVIOR - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 195 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public const int SWAP_BEHAVIOR = 12435 - return: - type: System.Int32 - content.vb: Public Const SWAP_BEHAVIOR As Integer = 12435 -- uid: OpenTK.Graphics.Egl.Egl.MULTISAMPLE_RESOLVE - commentId: F:OpenTK.Graphics.Egl.Egl.MULTISAMPLE_RESOLVE - id: MULTISAMPLE_RESOLVE - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: MULTISAMPLE_RESOLVE - nameWithType: Egl.MULTISAMPLE_RESOLVE - fullName: OpenTK.Graphics.Egl.Egl.MULTISAMPLE_RESOLVE - type: Field - source: - id: MULTISAMPLE_RESOLVE - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 196 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public const int MULTISAMPLE_RESOLVE = 12441 - return: - type: System.Int32 - content.vb: Public Const MULTISAMPLE_RESOLVE As Integer = 12441 -- uid: OpenTK.Graphics.Egl.Egl.BACK_BUFFER - commentId: F:OpenTK.Graphics.Egl.Egl.BACK_BUFFER - id: BACK_BUFFER - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: BACK_BUFFER - nameWithType: Egl.BACK_BUFFER - fullName: OpenTK.Graphics.Egl.Egl.BACK_BUFFER - type: Field - source: - id: BACK_BUFFER - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 197 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public const int BACK_BUFFER = 12420 - return: - type: System.Int32 - content.vb: Public Const BACK_BUFFER As Integer = 12420 -- uid: OpenTK.Graphics.Egl.Egl.SINGLE_BUFFER - commentId: F:OpenTK.Graphics.Egl.Egl.SINGLE_BUFFER - id: SINGLE_BUFFER - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: SINGLE_BUFFER - nameWithType: Egl.SINGLE_BUFFER - fullName: OpenTK.Graphics.Egl.Egl.SINGLE_BUFFER - type: Field - source: - id: SINGLE_BUFFER - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 198 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public const int SINGLE_BUFFER = 12421 - return: - type: System.Int32 - content.vb: Public Const SINGLE_BUFFER As Integer = 12421 -- uid: OpenTK.Graphics.Egl.Egl.VG_COLORSPACE_sRGB - commentId: F:OpenTK.Graphics.Egl.Egl.VG_COLORSPACE_sRGB - id: VG_COLORSPACE_sRGB - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: VG_COLORSPACE_sRGB - nameWithType: Egl.VG_COLORSPACE_sRGB - fullName: OpenTK.Graphics.Egl.Egl.VG_COLORSPACE_sRGB - type: Field - source: - id: VG_COLORSPACE_sRGB - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 199 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public const int VG_COLORSPACE_sRGB = 12425 - return: - type: System.Int32 - content.vb: Public Const VG_COLORSPACE_sRGB As Integer = 12425 -- uid: OpenTK.Graphics.Egl.Egl.VG_COLORSPACE_LINEAR - commentId: F:OpenTK.Graphics.Egl.Egl.VG_COLORSPACE_LINEAR - id: VG_COLORSPACE_LINEAR - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: VG_COLORSPACE_LINEAR - nameWithType: Egl.VG_COLORSPACE_LINEAR - fullName: OpenTK.Graphics.Egl.Egl.VG_COLORSPACE_LINEAR - type: Field - source: - id: VG_COLORSPACE_LINEAR - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 200 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public const int VG_COLORSPACE_LINEAR = 12426 - return: - type: System.Int32 - content.vb: Public Const VG_COLORSPACE_LINEAR As Integer = 12426 -- uid: OpenTK.Graphics.Egl.Egl.VG_ALPHA_FORMAT_NONPRE - commentId: F:OpenTK.Graphics.Egl.Egl.VG_ALPHA_FORMAT_NONPRE - id: VG_ALPHA_FORMAT_NONPRE - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: VG_ALPHA_FORMAT_NONPRE - nameWithType: Egl.VG_ALPHA_FORMAT_NONPRE - fullName: OpenTK.Graphics.Egl.Egl.VG_ALPHA_FORMAT_NONPRE - type: Field - source: - id: VG_ALPHA_FORMAT_NONPRE - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 201 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public const int VG_ALPHA_FORMAT_NONPRE = 12427 - return: - type: System.Int32 - content.vb: Public Const VG_ALPHA_FORMAT_NONPRE As Integer = 12427 -- uid: OpenTK.Graphics.Egl.Egl.VG_ALPHA_FORMAT_PRE - commentId: F:OpenTK.Graphics.Egl.Egl.VG_ALPHA_FORMAT_PRE - id: VG_ALPHA_FORMAT_PRE - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: VG_ALPHA_FORMAT_PRE - nameWithType: Egl.VG_ALPHA_FORMAT_PRE - fullName: OpenTK.Graphics.Egl.Egl.VG_ALPHA_FORMAT_PRE - type: Field - source: - id: VG_ALPHA_FORMAT_PRE - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 202 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public const int VG_ALPHA_FORMAT_PRE = 12428 - return: - type: System.Int32 - content.vb: Public Const VG_ALPHA_FORMAT_PRE As Integer = 12428 -- uid: OpenTK.Graphics.Egl.Egl.DISPLAY_SCALING - commentId: F:OpenTK.Graphics.Egl.Egl.DISPLAY_SCALING - id: DISPLAY_SCALING - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: DISPLAY_SCALING - nameWithType: Egl.DISPLAY_SCALING - fullName: OpenTK.Graphics.Egl.Egl.DISPLAY_SCALING - type: Field - source: - id: DISPLAY_SCALING - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 203 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public const int DISPLAY_SCALING = 10000 - return: - type: System.Int32 - content.vb: Public Const DISPLAY_SCALING As Integer = 10000 -- uid: OpenTK.Graphics.Egl.Egl.UNKNOWN - commentId: F:OpenTK.Graphics.Egl.Egl.UNKNOWN - id: UNKNOWN - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: UNKNOWN - nameWithType: Egl.UNKNOWN - fullName: OpenTK.Graphics.Egl.Egl.UNKNOWN - type: Field - source: - id: UNKNOWN - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 204 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public const int UNKNOWN = -1 - return: - type: System.Int32 - content.vb: Public Const UNKNOWN As Integer = -1 -- uid: OpenTK.Graphics.Egl.Egl.BUFFER_PRESERVED - commentId: F:OpenTK.Graphics.Egl.Egl.BUFFER_PRESERVED - id: BUFFER_PRESERVED - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: BUFFER_PRESERVED - nameWithType: Egl.BUFFER_PRESERVED - fullName: OpenTK.Graphics.Egl.Egl.BUFFER_PRESERVED - type: Field - source: - id: BUFFER_PRESERVED - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 205 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public const int BUFFER_PRESERVED = 12436 - return: - type: System.Int32 - content.vb: Public Const BUFFER_PRESERVED As Integer = 12436 -- uid: OpenTK.Graphics.Egl.Egl.BUFFER_DESTROYED - commentId: F:OpenTK.Graphics.Egl.Egl.BUFFER_DESTROYED - id: BUFFER_DESTROYED - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: BUFFER_DESTROYED - nameWithType: Egl.BUFFER_DESTROYED - fullName: OpenTK.Graphics.Egl.Egl.BUFFER_DESTROYED - type: Field - source: - id: BUFFER_DESTROYED - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 206 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public const int BUFFER_DESTROYED = 12437 - return: - type: System.Int32 - content.vb: Public Const BUFFER_DESTROYED As Integer = 12437 -- uid: OpenTK.Graphics.Egl.Egl.OPENVG_IMAGE - commentId: F:OpenTK.Graphics.Egl.Egl.OPENVG_IMAGE - id: OPENVG_IMAGE - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: OPENVG_IMAGE - nameWithType: Egl.OPENVG_IMAGE - fullName: OpenTK.Graphics.Egl.Egl.OPENVG_IMAGE - type: Field - source: - id: OPENVG_IMAGE - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 207 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public const int OPENVG_IMAGE = 12438 - return: - type: System.Int32 - content.vb: Public Const OPENVG_IMAGE As Integer = 12438 -- uid: OpenTK.Graphics.Egl.Egl.CONTEXT_CLIENT_TYPE - commentId: F:OpenTK.Graphics.Egl.Egl.CONTEXT_CLIENT_TYPE - id: CONTEXT_CLIENT_TYPE - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: CONTEXT_CLIENT_TYPE - nameWithType: Egl.CONTEXT_CLIENT_TYPE - fullName: OpenTK.Graphics.Egl.Egl.CONTEXT_CLIENT_TYPE - type: Field - source: - id: CONTEXT_CLIENT_TYPE - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 208 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public const int CONTEXT_CLIENT_TYPE = 12439 - return: - type: System.Int32 - content.vb: Public Const CONTEXT_CLIENT_TYPE As Integer = 12439 -- uid: OpenTK.Graphics.Egl.Egl.CONTEXT_CLIENT_VERSION - commentId: F:OpenTK.Graphics.Egl.Egl.CONTEXT_CLIENT_VERSION - id: CONTEXT_CLIENT_VERSION - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: CONTEXT_CLIENT_VERSION - nameWithType: Egl.CONTEXT_CLIENT_VERSION - fullName: OpenTK.Graphics.Egl.Egl.CONTEXT_CLIENT_VERSION - type: Field - source: - id: CONTEXT_CLIENT_VERSION - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 209 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public const int CONTEXT_CLIENT_VERSION = 12440 - return: - type: System.Int32 - content.vb: Public Const CONTEXT_CLIENT_VERSION As Integer = 12440 -- uid: OpenTK.Graphics.Egl.Egl.MULTISAMPLE_RESOLVE_DEFAULT - commentId: F:OpenTK.Graphics.Egl.Egl.MULTISAMPLE_RESOLVE_DEFAULT - id: MULTISAMPLE_RESOLVE_DEFAULT - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: MULTISAMPLE_RESOLVE_DEFAULT - nameWithType: Egl.MULTISAMPLE_RESOLVE_DEFAULT - fullName: OpenTK.Graphics.Egl.Egl.MULTISAMPLE_RESOLVE_DEFAULT - type: Field - source: - id: MULTISAMPLE_RESOLVE_DEFAULT - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 210 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public const int MULTISAMPLE_RESOLVE_DEFAULT = 12442 - return: - type: System.Int32 - content.vb: Public Const MULTISAMPLE_RESOLVE_DEFAULT As Integer = 12442 -- uid: OpenTK.Graphics.Egl.Egl.MULTISAMPLE_RESOLVE_BOX - commentId: F:OpenTK.Graphics.Egl.Egl.MULTISAMPLE_RESOLVE_BOX - id: MULTISAMPLE_RESOLVE_BOX - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: MULTISAMPLE_RESOLVE_BOX - nameWithType: Egl.MULTISAMPLE_RESOLVE_BOX - fullName: OpenTK.Graphics.Egl.Egl.MULTISAMPLE_RESOLVE_BOX - type: Field - source: - id: MULTISAMPLE_RESOLVE_BOX - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 211 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public const int MULTISAMPLE_RESOLVE_BOX = 12443 - return: - type: System.Int32 - content.vb: Public Const MULTISAMPLE_RESOLVE_BOX As Integer = 12443 -- uid: OpenTK.Graphics.Egl.Egl.OPENGL_ES_API - commentId: F:OpenTK.Graphics.Egl.Egl.OPENGL_ES_API - id: OPENGL_ES_API - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: OPENGL_ES_API - nameWithType: Egl.OPENGL_ES_API - fullName: OpenTK.Graphics.Egl.Egl.OPENGL_ES_API - type: Field - source: - id: OPENGL_ES_API - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 212 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public const int OPENGL_ES_API = 12448 - return: - type: System.Int32 - content.vb: Public Const OPENGL_ES_API As Integer = 12448 -- uid: OpenTK.Graphics.Egl.Egl.OPENVG_API - commentId: F:OpenTK.Graphics.Egl.Egl.OPENVG_API - id: OPENVG_API - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: OPENVG_API - nameWithType: Egl.OPENVG_API - fullName: OpenTK.Graphics.Egl.Egl.OPENVG_API - type: Field - source: - id: OPENVG_API - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 213 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public const int OPENVG_API = 12449 - return: - type: System.Int32 - content.vb: Public Const OPENVG_API As Integer = 12449 -- uid: OpenTK.Graphics.Egl.Egl.OPENGL_API - commentId: F:OpenTK.Graphics.Egl.Egl.OPENGL_API - id: OPENGL_API - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: OPENGL_API - nameWithType: Egl.OPENGL_API - fullName: OpenTK.Graphics.Egl.Egl.OPENGL_API - type: Field - source: - id: OPENGL_API - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 214 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public const int OPENGL_API = 12450 - return: - type: System.Int32 - content.vb: Public Const OPENGL_API As Integer = 12450 -- uid: OpenTK.Graphics.Egl.Egl.DRAW - commentId: F:OpenTK.Graphics.Egl.Egl.DRAW - id: DRAW - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: DRAW - nameWithType: Egl.DRAW - fullName: OpenTK.Graphics.Egl.Egl.DRAW - type: Field - source: - id: DRAW - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 215 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public const int DRAW = 12377 - return: - type: System.Int32 - content.vb: Public Const DRAW As Integer = 12377 -- uid: OpenTK.Graphics.Egl.Egl.READ - commentId: F:OpenTK.Graphics.Egl.Egl.READ - id: READ - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: READ - nameWithType: Egl.READ - fullName: OpenTK.Graphics.Egl.Egl.READ - type: Field - source: - id: READ - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 216 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public const int READ = 12378 - return: - type: System.Int32 - content.vb: Public Const READ As Integer = 12378 -- uid: OpenTK.Graphics.Egl.Egl.CORE_NATIVE_ENGINE - commentId: F:OpenTK.Graphics.Egl.Egl.CORE_NATIVE_ENGINE - id: CORE_NATIVE_ENGINE - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: CORE_NATIVE_ENGINE - nameWithType: Egl.CORE_NATIVE_ENGINE - fullName: OpenTK.Graphics.Egl.Egl.CORE_NATIVE_ENGINE - type: Field - source: - id: CORE_NATIVE_ENGINE - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 217 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public const int CORE_NATIVE_ENGINE = 12379 - return: - type: System.Int32 - content.vb: Public Const CORE_NATIVE_ENGINE As Integer = 12379 -- uid: OpenTK.Graphics.Egl.Egl.COLORSPACE - commentId: F:OpenTK.Graphics.Egl.Egl.COLORSPACE - id: COLORSPACE - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: COLORSPACE - nameWithType: Egl.COLORSPACE - fullName: OpenTK.Graphics.Egl.Egl.COLORSPACE - type: Field - source: - id: COLORSPACE - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 218 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public const int COLORSPACE = 12423 - return: - type: System.Int32 - content.vb: Public Const COLORSPACE As Integer = 12423 -- uid: OpenTK.Graphics.Egl.Egl.ALPHA_FORMAT - commentId: F:OpenTK.Graphics.Egl.Egl.ALPHA_FORMAT - id: ALPHA_FORMAT - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: ALPHA_FORMAT - nameWithType: Egl.ALPHA_FORMAT - fullName: OpenTK.Graphics.Egl.Egl.ALPHA_FORMAT - type: Field - source: - id: ALPHA_FORMAT - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 219 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public const int ALPHA_FORMAT = 12424 - return: - type: System.Int32 - content.vb: Public Const ALPHA_FORMAT As Integer = 12424 -- uid: OpenTK.Graphics.Egl.Egl.COLORSPACE_sRGB - commentId: F:OpenTK.Graphics.Egl.Egl.COLORSPACE_sRGB - id: COLORSPACE_sRGB - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: COLORSPACE_sRGB - nameWithType: Egl.COLORSPACE_sRGB - fullName: OpenTK.Graphics.Egl.Egl.COLORSPACE_sRGB - type: Field - source: - id: COLORSPACE_sRGB - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 220 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public const int COLORSPACE_sRGB = 12425 - return: - type: System.Int32 - content.vb: Public Const COLORSPACE_sRGB As Integer = 12425 -- uid: OpenTK.Graphics.Egl.Egl.COLORSPACE_LINEAR - commentId: F:OpenTK.Graphics.Egl.Egl.COLORSPACE_LINEAR - id: COLORSPACE_LINEAR - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: COLORSPACE_LINEAR - nameWithType: Egl.COLORSPACE_LINEAR - fullName: OpenTK.Graphics.Egl.Egl.COLORSPACE_LINEAR - type: Field - source: - id: COLORSPACE_LINEAR - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 221 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public const int COLORSPACE_LINEAR = 12426 - return: - type: System.Int32 - content.vb: Public Const COLORSPACE_LINEAR As Integer = 12426 -- uid: OpenTK.Graphics.Egl.Egl.ALPHA_FORMAT_NONPRE - commentId: F:OpenTK.Graphics.Egl.Egl.ALPHA_FORMAT_NONPRE - id: ALPHA_FORMAT_NONPRE - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: ALPHA_FORMAT_NONPRE - nameWithType: Egl.ALPHA_FORMAT_NONPRE - fullName: OpenTK.Graphics.Egl.Egl.ALPHA_FORMAT_NONPRE - type: Field - source: - id: ALPHA_FORMAT_NONPRE - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 222 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public const int ALPHA_FORMAT_NONPRE = 12427 - return: - type: System.Int32 - content.vb: Public Const ALPHA_FORMAT_NONPRE As Integer = 12427 -- uid: OpenTK.Graphics.Egl.Egl.ALPHA_FORMAT_PRE - commentId: F:OpenTK.Graphics.Egl.Egl.ALPHA_FORMAT_PRE - id: ALPHA_FORMAT_PRE - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: ALPHA_FORMAT_PRE - nameWithType: Egl.ALPHA_FORMAT_PRE - fullName: OpenTK.Graphics.Egl.Egl.ALPHA_FORMAT_PRE - type: Field - source: - id: ALPHA_FORMAT_PRE - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 223 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public const int ALPHA_FORMAT_PRE = 12428 - return: - type: System.Int32 - content.vb: Public Const ALPHA_FORMAT_PRE As Integer = 12428 -- uid: OpenTK.Graphics.Egl.Egl.D3D_TEXTURE_2D_SHARE_HANDLE_ANGLE - commentId: F:OpenTK.Graphics.Egl.Egl.D3D_TEXTURE_2D_SHARE_HANDLE_ANGLE - id: D3D_TEXTURE_2D_SHARE_HANDLE_ANGLE - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: D3D_TEXTURE_2D_SHARE_HANDLE_ANGLE - nameWithType: Egl.D3D_TEXTURE_2D_SHARE_HANDLE_ANGLE - fullName: OpenTK.Graphics.Egl.Egl.D3D_TEXTURE_2D_SHARE_HANDLE_ANGLE - type: Field - source: - id: D3D_TEXTURE_2D_SHARE_HANDLE_ANGLE - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 226 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public const int D3D_TEXTURE_2D_SHARE_HANDLE_ANGLE = 12800 - return: - type: System.Int32 - content.vb: Public Const D3D_TEXTURE_2D_SHARE_HANDLE_ANGLE As Integer = 12800 -- uid: OpenTK.Graphics.Egl.Egl.FIXED_SIZE_ANGLE - commentId: F:OpenTK.Graphics.Egl.Egl.FIXED_SIZE_ANGLE - id: FIXED_SIZE_ANGLE - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: FIXED_SIZE_ANGLE - nameWithType: Egl.FIXED_SIZE_ANGLE - fullName: OpenTK.Graphics.Egl.Egl.FIXED_SIZE_ANGLE - type: Field - source: - id: FIXED_SIZE_ANGLE - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 228 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public const int FIXED_SIZE_ANGLE = 12801 - return: - type: System.Int32 - content.vb: Public Const FIXED_SIZE_ANGLE As Integer = 12801 -- uid: OpenTK.Graphics.Egl.Egl.QuerySurfacePointerANGLE(System.IntPtr,System.IntPtr,System.Int32,System.IntPtr@) - commentId: M:OpenTK.Graphics.Egl.Egl.QuerySurfacePointerANGLE(System.IntPtr,System.IntPtr,System.Int32,System.IntPtr@) - id: QuerySurfacePointerANGLE(System.IntPtr,System.IntPtr,System.Int32,System.IntPtr@) - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: QuerySurfacePointerANGLE(nint, nint, int, out nint) - nameWithType: Egl.QuerySurfacePointerANGLE(nint, nint, int, out nint) - fullName: OpenTK.Graphics.Egl.Egl.QuerySurfacePointerANGLE(nint, nint, int, out nint) - type: Method - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public static extern bool QuerySurfacePointerANGLE(nint display, nint surface, int attribute, out nint value) - parameters: - - id: display - type: System.IntPtr - - id: surface - type: System.IntPtr - - id: attribute - type: System.Int32 - - id: value - type: System.IntPtr - return: - type: System.Boolean - content.vb: Public Shared Function QuerySurfacePointerANGLE(display As IntPtr, surface As IntPtr, attribute As Integer, value As IntPtr) As Boolean - overload: OpenTK.Graphics.Egl.Egl.QuerySurfacePointerANGLE* - nameWithType.vb: Egl.QuerySurfacePointerANGLE(IntPtr, IntPtr, Integer, IntPtr) - fullName.vb: OpenTK.Graphics.Egl.Egl.QuerySurfacePointerANGLE(System.IntPtr, System.IntPtr, Integer, System.IntPtr) - name.vb: QuerySurfacePointerANGLE(IntPtr, IntPtr, Integer, IntPtr) -- uid: OpenTK.Graphics.Egl.Egl.GetPlatformDisplay(System.Int32,System.IntPtr,System.Int32[]) - commentId: M:OpenTK.Graphics.Egl.Egl.GetPlatformDisplay(System.Int32,System.IntPtr,System.Int32[]) - id: GetPlatformDisplay(System.Int32,System.IntPtr,System.Int32[]) - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: GetPlatformDisplay(int, nint, int[]) - nameWithType: Egl.GetPlatformDisplay(int, nint, int[]) - fullName: OpenTK.Graphics.Egl.Egl.GetPlatformDisplay(int, nint, int[]) - type: Method - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public static extern nint GetPlatformDisplay(int platform, nint displayId, int[] attribList) - parameters: - - id: platform - type: System.Int32 - - id: displayId - type: System.IntPtr - - id: attribList - type: System.Int32[] - return: - type: System.IntPtr - content.vb: Public Shared Function GetPlatformDisplay(platform As Integer, displayId As IntPtr, attribList As Integer()) As IntPtr - overload: OpenTK.Graphics.Egl.Egl.GetPlatformDisplay* - nameWithType.vb: Egl.GetPlatformDisplay(Integer, IntPtr, Integer()) - fullName.vb: OpenTK.Graphics.Egl.Egl.GetPlatformDisplay(Integer, System.IntPtr, Integer()) - name.vb: GetPlatformDisplay(Integer, IntPtr, Integer()) -- uid: OpenTK.Graphics.Egl.Egl.SOFTWARE_DISPLAY_ANGLE - commentId: F:OpenTK.Graphics.Egl.Egl.SOFTWARE_DISPLAY_ANGLE - id: SOFTWARE_DISPLAY_ANGLE - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: SOFTWARE_DISPLAY_ANGLE - nameWithType: Egl.SOFTWARE_DISPLAY_ANGLE - fullName: OpenTK.Graphics.Egl.Egl.SOFTWARE_DISPLAY_ANGLE - type: Field - source: - id: SOFTWARE_DISPLAY_ANGLE - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 237 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public static readonly nint SOFTWARE_DISPLAY_ANGLE - return: - type: System.IntPtr - content.vb: Public Shared ReadOnly SOFTWARE_DISPLAY_ANGLE As IntPtr -- uid: OpenTK.Graphics.Egl.Egl.D3D11_ELSE_D3D9_DISPLAY_ANGLE - commentId: F:OpenTK.Graphics.Egl.Egl.D3D11_ELSE_D3D9_DISPLAY_ANGLE - id: D3D11_ELSE_D3D9_DISPLAY_ANGLE - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: D3D11_ELSE_D3D9_DISPLAY_ANGLE - nameWithType: Egl.D3D11_ELSE_D3D9_DISPLAY_ANGLE - fullName: OpenTK.Graphics.Egl.Egl.D3D11_ELSE_D3D9_DISPLAY_ANGLE - type: Field - source: - id: D3D11_ELSE_D3D9_DISPLAY_ANGLE - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 239 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public static readonly nint D3D11_ELSE_D3D9_DISPLAY_ANGLE - return: - type: System.IntPtr - content.vb: Public Shared ReadOnly D3D11_ELSE_D3D9_DISPLAY_ANGLE As IntPtr -- uid: OpenTK.Graphics.Egl.Egl.D3D11_ONLY_DISPLAY_ANGLE - commentId: F:OpenTK.Graphics.Egl.Egl.D3D11_ONLY_DISPLAY_ANGLE - id: D3D11_ONLY_DISPLAY_ANGLE - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: D3D11_ONLY_DISPLAY_ANGLE - nameWithType: Egl.D3D11_ONLY_DISPLAY_ANGLE - fullName: OpenTK.Graphics.Egl.Egl.D3D11_ONLY_DISPLAY_ANGLE - type: Field - source: - id: D3D11_ONLY_DISPLAY_ANGLE - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 240 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public static readonly nint D3D11_ONLY_DISPLAY_ANGLE - return: - type: System.IntPtr - content.vb: Public Shared ReadOnly D3D11_ONLY_DISPLAY_ANGLE As IntPtr -- uid: OpenTK.Graphics.Egl.Egl.D3D9_DEVICE_ANGLE - commentId: F:OpenTK.Graphics.Egl.Egl.D3D9_DEVICE_ANGLE - id: D3D9_DEVICE_ANGLE - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: D3D9_DEVICE_ANGLE - nameWithType: Egl.D3D9_DEVICE_ANGLE - fullName: OpenTK.Graphics.Egl.Egl.D3D9_DEVICE_ANGLE - type: Field - source: - id: D3D9_DEVICE_ANGLE - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 242 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public const int D3D9_DEVICE_ANGLE = 13216 - return: - type: System.Int32 - content.vb: Public Const D3D9_DEVICE_ANGLE As Integer = 13216 -- uid: OpenTK.Graphics.Egl.Egl.D3D11_DEVICE_ANGLE - commentId: F:OpenTK.Graphics.Egl.Egl.D3D11_DEVICE_ANGLE - id: D3D11_DEVICE_ANGLE - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: D3D11_DEVICE_ANGLE - nameWithType: Egl.D3D11_DEVICE_ANGLE - fullName: OpenTK.Graphics.Egl.Egl.D3D11_DEVICE_ANGLE - type: Field - source: - id: D3D11_DEVICE_ANGLE - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 243 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public const int D3D11_DEVICE_ANGLE = 13217 - return: - type: System.Int32 - content.vb: Public Const D3D11_DEVICE_ANGLE As Integer = 13217 -- uid: OpenTK.Graphics.Egl.Egl.PLATFORM_ANGLE_ANGLE - commentId: F:OpenTK.Graphics.Egl.Egl.PLATFORM_ANGLE_ANGLE - id: PLATFORM_ANGLE_ANGLE - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: PLATFORM_ANGLE_ANGLE - nameWithType: Egl.PLATFORM_ANGLE_ANGLE - fullName: OpenTK.Graphics.Egl.Egl.PLATFORM_ANGLE_ANGLE - type: Field - source: - id: PLATFORM_ANGLE_ANGLE - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 245 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public const int PLATFORM_ANGLE_ANGLE = 12802 - return: - type: System.Int32 - content.vb: Public Const PLATFORM_ANGLE_ANGLE As Integer = 12802 -- uid: OpenTK.Graphics.Egl.Egl.PLATFORM_ANGLE_TYPE_ANGLE - commentId: F:OpenTK.Graphics.Egl.Egl.PLATFORM_ANGLE_TYPE_ANGLE - id: PLATFORM_ANGLE_TYPE_ANGLE - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: PLATFORM_ANGLE_TYPE_ANGLE - nameWithType: Egl.PLATFORM_ANGLE_TYPE_ANGLE - fullName: OpenTK.Graphics.Egl.Egl.PLATFORM_ANGLE_TYPE_ANGLE - type: Field - source: - id: PLATFORM_ANGLE_TYPE_ANGLE - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 246 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public const int PLATFORM_ANGLE_TYPE_ANGLE = 12803 - return: - type: System.Int32 - content.vb: Public Const PLATFORM_ANGLE_TYPE_ANGLE As Integer = 12803 -- uid: OpenTK.Graphics.Egl.Egl.PLATFORM_ANGLE_MAX_VERSION_MAJOR_ANGLE - commentId: F:OpenTK.Graphics.Egl.Egl.PLATFORM_ANGLE_MAX_VERSION_MAJOR_ANGLE - id: PLATFORM_ANGLE_MAX_VERSION_MAJOR_ANGLE - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: PLATFORM_ANGLE_MAX_VERSION_MAJOR_ANGLE - nameWithType: Egl.PLATFORM_ANGLE_MAX_VERSION_MAJOR_ANGLE - fullName: OpenTK.Graphics.Egl.Egl.PLATFORM_ANGLE_MAX_VERSION_MAJOR_ANGLE - type: Field - source: - id: PLATFORM_ANGLE_MAX_VERSION_MAJOR_ANGLE - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 247 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public const int PLATFORM_ANGLE_MAX_VERSION_MAJOR_ANGLE = 12804 - return: - type: System.Int32 - content.vb: Public Const PLATFORM_ANGLE_MAX_VERSION_MAJOR_ANGLE As Integer = 12804 -- uid: OpenTK.Graphics.Egl.Egl.PLATFORM_ANGLE_MAX_VERSION_MINOR_ANGLE - commentId: F:OpenTK.Graphics.Egl.Egl.PLATFORM_ANGLE_MAX_VERSION_MINOR_ANGLE - id: PLATFORM_ANGLE_MAX_VERSION_MINOR_ANGLE - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: PLATFORM_ANGLE_MAX_VERSION_MINOR_ANGLE - nameWithType: Egl.PLATFORM_ANGLE_MAX_VERSION_MINOR_ANGLE - fullName: OpenTK.Graphics.Egl.Egl.PLATFORM_ANGLE_MAX_VERSION_MINOR_ANGLE - type: Field - source: - id: PLATFORM_ANGLE_MAX_VERSION_MINOR_ANGLE - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 248 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public const int PLATFORM_ANGLE_MAX_VERSION_MINOR_ANGLE = 12805 - return: - type: System.Int32 - content.vb: Public Const PLATFORM_ANGLE_MAX_VERSION_MINOR_ANGLE As Integer = 12805 -- uid: OpenTK.Graphics.Egl.Egl.PLATFORM_ANGLE_TYPE_DEFAULT_ANGLE - commentId: F:OpenTK.Graphics.Egl.Egl.PLATFORM_ANGLE_TYPE_DEFAULT_ANGLE - id: PLATFORM_ANGLE_TYPE_DEFAULT_ANGLE - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: PLATFORM_ANGLE_TYPE_DEFAULT_ANGLE - nameWithType: Egl.PLATFORM_ANGLE_TYPE_DEFAULT_ANGLE - fullName: OpenTK.Graphics.Egl.Egl.PLATFORM_ANGLE_TYPE_DEFAULT_ANGLE - type: Field - source: - id: PLATFORM_ANGLE_TYPE_DEFAULT_ANGLE - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 249 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public const int PLATFORM_ANGLE_TYPE_DEFAULT_ANGLE = 12806 - return: - type: System.Int32 - content.vb: Public Const PLATFORM_ANGLE_TYPE_DEFAULT_ANGLE As Integer = 12806 -- uid: OpenTK.Graphics.Egl.Egl.PLATFORM_ANGLE_TYPE_D3D9_ANGLE - commentId: F:OpenTK.Graphics.Egl.Egl.PLATFORM_ANGLE_TYPE_D3D9_ANGLE - id: PLATFORM_ANGLE_TYPE_D3D9_ANGLE - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: PLATFORM_ANGLE_TYPE_D3D9_ANGLE - nameWithType: Egl.PLATFORM_ANGLE_TYPE_D3D9_ANGLE - fullName: OpenTK.Graphics.Egl.Egl.PLATFORM_ANGLE_TYPE_D3D9_ANGLE - type: Field - source: - id: PLATFORM_ANGLE_TYPE_D3D9_ANGLE - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 251 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public const int PLATFORM_ANGLE_TYPE_D3D9_ANGLE = 12807 - return: - type: System.Int32 - content.vb: Public Const PLATFORM_ANGLE_TYPE_D3D9_ANGLE As Integer = 12807 -- uid: OpenTK.Graphics.Egl.Egl.PLATFORM_ANGLE_TYPE_D3D11_ANGLE - commentId: F:OpenTK.Graphics.Egl.Egl.PLATFORM_ANGLE_TYPE_D3D11_ANGLE - id: PLATFORM_ANGLE_TYPE_D3D11_ANGLE - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: PLATFORM_ANGLE_TYPE_D3D11_ANGLE - nameWithType: Egl.PLATFORM_ANGLE_TYPE_D3D11_ANGLE - fullName: OpenTK.Graphics.Egl.Egl.PLATFORM_ANGLE_TYPE_D3D11_ANGLE - type: Field - source: - id: PLATFORM_ANGLE_TYPE_D3D11_ANGLE - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 252 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public const int PLATFORM_ANGLE_TYPE_D3D11_ANGLE = 12808 - return: - type: System.Int32 - content.vb: Public Const PLATFORM_ANGLE_TYPE_D3D11_ANGLE As Integer = 12808 -- uid: OpenTK.Graphics.Egl.Egl.PLATFORM_ANGLE_DEVICE_TYPE_ANGLE - commentId: F:OpenTK.Graphics.Egl.Egl.PLATFORM_ANGLE_DEVICE_TYPE_ANGLE - id: PLATFORM_ANGLE_DEVICE_TYPE_ANGLE - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: PLATFORM_ANGLE_DEVICE_TYPE_ANGLE - nameWithType: Egl.PLATFORM_ANGLE_DEVICE_TYPE_ANGLE - fullName: OpenTK.Graphics.Egl.Egl.PLATFORM_ANGLE_DEVICE_TYPE_ANGLE - type: Field - source: - id: PLATFORM_ANGLE_DEVICE_TYPE_ANGLE - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 253 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public const int PLATFORM_ANGLE_DEVICE_TYPE_ANGLE = 12809 - return: - type: System.Int32 - content.vb: Public Const PLATFORM_ANGLE_DEVICE_TYPE_ANGLE As Integer = 12809 -- uid: OpenTK.Graphics.Egl.Egl.PLATFORM_ANGLE_DEVICE_TYPE_HARDWARE_ANGLE - commentId: F:OpenTK.Graphics.Egl.Egl.PLATFORM_ANGLE_DEVICE_TYPE_HARDWARE_ANGLE - id: PLATFORM_ANGLE_DEVICE_TYPE_HARDWARE_ANGLE - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: PLATFORM_ANGLE_DEVICE_TYPE_HARDWARE_ANGLE - nameWithType: Egl.PLATFORM_ANGLE_DEVICE_TYPE_HARDWARE_ANGLE - fullName: OpenTK.Graphics.Egl.Egl.PLATFORM_ANGLE_DEVICE_TYPE_HARDWARE_ANGLE - type: Field - source: - id: PLATFORM_ANGLE_DEVICE_TYPE_HARDWARE_ANGLE - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 254 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public const int PLATFORM_ANGLE_DEVICE_TYPE_HARDWARE_ANGLE = 12810 - return: - type: System.Int32 - content.vb: Public Const PLATFORM_ANGLE_DEVICE_TYPE_HARDWARE_ANGLE As Integer = 12810 -- uid: OpenTK.Graphics.Egl.Egl.PLATFORM_ANGLE_DEVICE_TYPE_WARP_ANGLE - commentId: F:OpenTK.Graphics.Egl.Egl.PLATFORM_ANGLE_DEVICE_TYPE_WARP_ANGLE - id: PLATFORM_ANGLE_DEVICE_TYPE_WARP_ANGLE - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: PLATFORM_ANGLE_DEVICE_TYPE_WARP_ANGLE - nameWithType: Egl.PLATFORM_ANGLE_DEVICE_TYPE_WARP_ANGLE - fullName: OpenTK.Graphics.Egl.Egl.PLATFORM_ANGLE_DEVICE_TYPE_WARP_ANGLE - type: Field - source: - id: PLATFORM_ANGLE_DEVICE_TYPE_WARP_ANGLE - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 255 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public const int PLATFORM_ANGLE_DEVICE_TYPE_WARP_ANGLE = 12811 - return: - type: System.Int32 - content.vb: Public Const PLATFORM_ANGLE_DEVICE_TYPE_WARP_ANGLE As Integer = 12811 -- uid: OpenTK.Graphics.Egl.Egl.PLATFORM_ANGLE_DEVICE_TYPE_REFERENCE_ANGLE - commentId: F:OpenTK.Graphics.Egl.Egl.PLATFORM_ANGLE_DEVICE_TYPE_REFERENCE_ANGLE - id: PLATFORM_ANGLE_DEVICE_TYPE_REFERENCE_ANGLE - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: PLATFORM_ANGLE_DEVICE_TYPE_REFERENCE_ANGLE - nameWithType: Egl.PLATFORM_ANGLE_DEVICE_TYPE_REFERENCE_ANGLE - fullName: OpenTK.Graphics.Egl.Egl.PLATFORM_ANGLE_DEVICE_TYPE_REFERENCE_ANGLE - type: Field - source: - id: PLATFORM_ANGLE_DEVICE_TYPE_REFERENCE_ANGLE - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 256 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public const int PLATFORM_ANGLE_DEVICE_TYPE_REFERENCE_ANGLE = 12812 - return: - type: System.Int32 - content.vb: Public Const PLATFORM_ANGLE_DEVICE_TYPE_REFERENCE_ANGLE As Integer = 12812 -- uid: OpenTK.Graphics.Egl.Egl.PLATFORM_ANGLE_ENABLE_AUTOMATIC_TRIM_ANGLE - commentId: F:OpenTK.Graphics.Egl.Egl.PLATFORM_ANGLE_ENABLE_AUTOMATIC_TRIM_ANGLE - id: PLATFORM_ANGLE_ENABLE_AUTOMATIC_TRIM_ANGLE - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: PLATFORM_ANGLE_ENABLE_AUTOMATIC_TRIM_ANGLE - nameWithType: Egl.PLATFORM_ANGLE_ENABLE_AUTOMATIC_TRIM_ANGLE - fullName: OpenTK.Graphics.Egl.Egl.PLATFORM_ANGLE_ENABLE_AUTOMATIC_TRIM_ANGLE - type: Field - source: - id: PLATFORM_ANGLE_ENABLE_AUTOMATIC_TRIM_ANGLE - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 257 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public const int PLATFORM_ANGLE_ENABLE_AUTOMATIC_TRIM_ANGLE = 12815 - return: - type: System.Int32 - content.vb: Public Const PLATFORM_ANGLE_ENABLE_AUTOMATIC_TRIM_ANGLE As Integer = 12815 -- uid: OpenTK.Graphics.Egl.Egl.PLATFORM_ANGLE_TYPE_OPENGL_ANGLE - commentId: F:OpenTK.Graphics.Egl.Egl.PLATFORM_ANGLE_TYPE_OPENGL_ANGLE - id: PLATFORM_ANGLE_TYPE_OPENGL_ANGLE - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: PLATFORM_ANGLE_TYPE_OPENGL_ANGLE - nameWithType: Egl.PLATFORM_ANGLE_TYPE_OPENGL_ANGLE - fullName: OpenTK.Graphics.Egl.Egl.PLATFORM_ANGLE_TYPE_OPENGL_ANGLE - type: Field - source: - id: PLATFORM_ANGLE_TYPE_OPENGL_ANGLE - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 259 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public const int PLATFORM_ANGLE_TYPE_OPENGL_ANGLE = 12813 - return: - type: System.Int32 - content.vb: Public Const PLATFORM_ANGLE_TYPE_OPENGL_ANGLE As Integer = 12813 -- uid: OpenTK.Graphics.Egl.Egl.PLATFORM_ANGLE_TYPE_OPENGLES_ANGLE - commentId: F:OpenTK.Graphics.Egl.Egl.PLATFORM_ANGLE_TYPE_OPENGLES_ANGLE - id: PLATFORM_ANGLE_TYPE_OPENGLES_ANGLE - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: PLATFORM_ANGLE_TYPE_OPENGLES_ANGLE - nameWithType: Egl.PLATFORM_ANGLE_TYPE_OPENGLES_ANGLE - fullName: OpenTK.Graphics.Egl.Egl.PLATFORM_ANGLE_TYPE_OPENGLES_ANGLE - type: Field - source: - id: PLATFORM_ANGLE_TYPE_OPENGLES_ANGLE - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 260 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public const int PLATFORM_ANGLE_TYPE_OPENGLES_ANGLE = 12814 - return: - type: System.Int32 - content.vb: Public Const PLATFORM_ANGLE_TYPE_OPENGLES_ANGLE As Integer = 12814 -- uid: OpenTK.Graphics.Egl.Egl.EGL_D3D_TEXTURE_2D_SHARE_HANDLE_ANGLE - commentId: F:OpenTK.Graphics.Egl.Egl.EGL_D3D_TEXTURE_2D_SHARE_HANDLE_ANGLE - id: EGL_D3D_TEXTURE_2D_SHARE_HANDLE_ANGLE - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: EGL_D3D_TEXTURE_2D_SHARE_HANDLE_ANGLE - nameWithType: Egl.EGL_D3D_TEXTURE_2D_SHARE_HANDLE_ANGLE - fullName: OpenTK.Graphics.Egl.Egl.EGL_D3D_TEXTURE_2D_SHARE_HANDLE_ANGLE - type: Field - source: - id: EGL_D3D_TEXTURE_2D_SHARE_HANDLE_ANGLE - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 262 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public const int EGL_D3D_TEXTURE_2D_SHARE_HANDLE_ANGLE = 12800 - return: - type: System.Int32 - content.vb: Public Const EGL_D3D_TEXTURE_2D_SHARE_HANDLE_ANGLE As Integer = 12800 -- uid: OpenTK.Graphics.Egl.Egl.GetError - commentId: M:OpenTK.Graphics.Egl.Egl.GetError - id: GetError - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: GetError() - nameWithType: Egl.GetError() - fullName: OpenTK.Graphics.Egl.Egl.GetError() - type: Method - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public static extern ErrorCode GetError() - return: - type: OpenTK.Graphics.Egl.ErrorCode - content.vb: Public Shared Function GetError() As ErrorCode - overload: OpenTK.Graphics.Egl.Egl.GetError* -- uid: OpenTK.Graphics.Egl.Egl.GetDisplay(System.IntPtr) - commentId: M:OpenTK.Graphics.Egl.Egl.GetDisplay(System.IntPtr) - id: GetDisplay(System.IntPtr) - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: GetDisplay(nint) - nameWithType: Egl.GetDisplay(nint) - fullName: OpenTK.Graphics.Egl.Egl.GetDisplay(nint) - type: Method - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public static extern nint GetDisplay(nint display_id) - parameters: - - id: display_id - type: System.IntPtr - return: - type: System.IntPtr - content.vb: Public Shared Function GetDisplay(display_id As IntPtr) As IntPtr - overload: OpenTK.Graphics.Egl.Egl.GetDisplay* - nameWithType.vb: Egl.GetDisplay(IntPtr) - fullName.vb: OpenTK.Graphics.Egl.Egl.GetDisplay(System.IntPtr) - name.vb: GetDisplay(IntPtr) -- uid: OpenTK.Graphics.Egl.Egl.Initialize(System.IntPtr,System.Int32@,System.Int32@) - commentId: M:OpenTK.Graphics.Egl.Egl.Initialize(System.IntPtr,System.Int32@,System.Int32@) - id: Initialize(System.IntPtr,System.Int32@,System.Int32@) - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: Initialize(nint, out int, out int) - nameWithType: Egl.Initialize(nint, out int, out int) - fullName: OpenTK.Graphics.Egl.Egl.Initialize(nint, out int, out int) - type: Method - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public static extern bool Initialize(nint dpy, out int major, out int minor) - parameters: - - id: dpy - type: System.IntPtr - - id: major - type: System.Int32 - - id: minor - type: System.Int32 - return: - type: System.Boolean - content.vb: Public Shared Function Initialize(dpy As IntPtr, major As Integer, minor As Integer) As Boolean - overload: OpenTK.Graphics.Egl.Egl.Initialize* - nameWithType.vb: Egl.Initialize(IntPtr, Integer, Integer) - fullName.vb: OpenTK.Graphics.Egl.Egl.Initialize(System.IntPtr, Integer, Integer) - name.vb: Initialize(IntPtr, Integer, Integer) -- uid: OpenTK.Graphics.Egl.Egl.Terminate(System.IntPtr) - commentId: M:OpenTK.Graphics.Egl.Egl.Terminate(System.IntPtr) - id: Terminate(System.IntPtr) - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: Terminate(nint) - nameWithType: Egl.Terminate(nint) - fullName: OpenTK.Graphics.Egl.Egl.Terminate(nint) - type: Method - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public static extern bool Terminate(nint dpy) - parameters: - - id: dpy - type: System.IntPtr - return: - type: System.Boolean - content.vb: Public Shared Function Terminate(dpy As IntPtr) As Boolean - overload: OpenTK.Graphics.Egl.Egl.Terminate* - nameWithType.vb: Egl.Terminate(IntPtr) - fullName.vb: OpenTK.Graphics.Egl.Egl.Terminate(System.IntPtr) - name.vb: Terminate(IntPtr) -- uid: OpenTK.Graphics.Egl.Egl.QueryString(System.IntPtr,System.Int32) - commentId: M:OpenTK.Graphics.Egl.Egl.QueryString(System.IntPtr,System.Int32) - id: QueryString(System.IntPtr,System.Int32) - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: QueryString(nint, int) - nameWithType: Egl.QueryString(nint, int) - fullName: OpenTK.Graphics.Egl.Egl.QueryString(nint, int) - type: Method - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public static extern nint QueryString(nint dpy, int name) - parameters: - - id: dpy - type: System.IntPtr - - id: name - type: System.Int32 - return: - type: System.IntPtr - content.vb: Public Shared Function QueryString(dpy As IntPtr, name As Integer) As IntPtr - overload: OpenTK.Graphics.Egl.Egl.QueryString* - nameWithType.vb: Egl.QueryString(IntPtr, Integer) - fullName.vb: OpenTK.Graphics.Egl.Egl.QueryString(System.IntPtr, Integer) - name.vb: QueryString(IntPtr, Integer) -- uid: OpenTK.Graphics.Egl.Egl.GetConfigs(System.IntPtr,System.IntPtr[],System.Int32,System.Int32@) - commentId: M:OpenTK.Graphics.Egl.Egl.GetConfigs(System.IntPtr,System.IntPtr[],System.Int32,System.Int32@) - id: GetConfigs(System.IntPtr,System.IntPtr[],System.Int32,System.Int32@) - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: GetConfigs(nint, nint[]?, int, out int) - nameWithType: Egl.GetConfigs(nint, nint[]?, int, out int) - fullName: OpenTK.Graphics.Egl.Egl.GetConfigs(nint, nint[]?, int, out int) - type: Method - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public static extern bool GetConfigs(nint dpy, nint[]? configs, int config_size, out int num_config) - parameters: - - id: dpy - type: System.IntPtr - - id: configs - type: System.IntPtr[] - - id: config_size - type: System.Int32 - - id: num_config - type: System.Int32 - return: - type: System.Boolean - content.vb: Public Shared Function GetConfigs(dpy As IntPtr, configs As IntPtr(), config_size As Integer, num_config As Integer) As Boolean - overload: OpenTK.Graphics.Egl.Egl.GetConfigs* - nameWithType.vb: Egl.GetConfigs(IntPtr, IntPtr(), Integer, Integer) - fullName.vb: OpenTK.Graphics.Egl.Egl.GetConfigs(System.IntPtr, System.IntPtr(), Integer, Integer) - name.vb: GetConfigs(IntPtr, IntPtr(), Integer, Integer) -- uid: OpenTK.Graphics.Egl.Egl.ChooseConfig(System.IntPtr,System.Int32[],System.IntPtr[],System.Int32,System.Int32@) - commentId: M:OpenTK.Graphics.Egl.Egl.ChooseConfig(System.IntPtr,System.Int32[],System.IntPtr[],System.Int32,System.Int32@) - id: ChooseConfig(System.IntPtr,System.Int32[],System.IntPtr[],System.Int32,System.Int32@) - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: ChooseConfig(nint, int[], nint[], int, out int) - nameWithType: Egl.ChooseConfig(nint, int[], nint[], int, out int) - fullName: OpenTK.Graphics.Egl.Egl.ChooseConfig(nint, int[], nint[], int, out int) - type: Method - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public static extern bool ChooseConfig(nint dpy, int[] attrib_list, nint[] configs, int config_size, out int num_config) - parameters: - - id: dpy - type: System.IntPtr - - id: attrib_list - type: System.Int32[] - - id: configs - type: System.IntPtr[] - - id: config_size - type: System.Int32 - - id: num_config - type: System.Int32 - return: - type: System.Boolean - content.vb: Public Shared Function ChooseConfig(dpy As IntPtr, attrib_list As Integer(), configs As IntPtr(), config_size As Integer, num_config As Integer) As Boolean - overload: OpenTK.Graphics.Egl.Egl.ChooseConfig* - nameWithType.vb: Egl.ChooseConfig(IntPtr, Integer(), IntPtr(), Integer, Integer) - fullName.vb: OpenTK.Graphics.Egl.Egl.ChooseConfig(System.IntPtr, Integer(), System.IntPtr(), Integer, Integer) - name.vb: ChooseConfig(IntPtr, Integer(), IntPtr(), Integer, Integer) -- uid: OpenTK.Graphics.Egl.Egl.GetConfigAttrib(System.IntPtr,System.IntPtr,System.Int32,System.Int32@) - commentId: M:OpenTK.Graphics.Egl.Egl.GetConfigAttrib(System.IntPtr,System.IntPtr,System.Int32,System.Int32@) - id: GetConfigAttrib(System.IntPtr,System.IntPtr,System.Int32,System.Int32@) - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: GetConfigAttrib(nint, nint, int, out int) - nameWithType: Egl.GetConfigAttrib(nint, nint, int, out int) - fullName: OpenTK.Graphics.Egl.Egl.GetConfigAttrib(nint, nint, int, out int) - type: Method - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public static extern bool GetConfigAttrib(nint dpy, nint config, int attribute, out int value) - parameters: - - id: dpy - type: System.IntPtr - - id: config - type: System.IntPtr - - id: attribute - type: System.Int32 - - id: value - type: System.Int32 - return: - type: System.Boolean - content.vb: Public Shared Function GetConfigAttrib(dpy As IntPtr, config As IntPtr, attribute As Integer, value As Integer) As Boolean - overload: OpenTK.Graphics.Egl.Egl.GetConfigAttrib* - nameWithType.vb: Egl.GetConfigAttrib(IntPtr, IntPtr, Integer, Integer) - fullName.vb: OpenTK.Graphics.Egl.Egl.GetConfigAttrib(System.IntPtr, System.IntPtr, Integer, Integer) - name.vb: GetConfigAttrib(IntPtr, IntPtr, Integer, Integer) -- uid: OpenTK.Graphics.Egl.Egl.CreateWindowSurface(System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr) - commentId: M:OpenTK.Graphics.Egl.Egl.CreateWindowSurface(System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr) - id: CreateWindowSurface(System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr) - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: CreateWindowSurface(nint, nint, nint, nint) - nameWithType: Egl.CreateWindowSurface(nint, nint, nint, nint) - fullName: OpenTK.Graphics.Egl.Egl.CreateWindowSurface(nint, nint, nint, nint) - type: Method - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public static extern nint CreateWindowSurface(nint dpy, nint config, nint win, nint attrib_list) - parameters: - - id: dpy - type: System.IntPtr - - id: config - type: System.IntPtr - - id: win - type: System.IntPtr - - id: attrib_list - type: System.IntPtr - return: - type: System.IntPtr - content.vb: Public Shared Function CreateWindowSurface(dpy As IntPtr, config As IntPtr, win As IntPtr, attrib_list As IntPtr) As IntPtr - overload: OpenTK.Graphics.Egl.Egl.CreateWindowSurface* - nameWithType.vb: Egl.CreateWindowSurface(IntPtr, IntPtr, IntPtr, IntPtr) - fullName.vb: OpenTK.Graphics.Egl.Egl.CreateWindowSurface(System.IntPtr, System.IntPtr, System.IntPtr, System.IntPtr) - name.vb: CreateWindowSurface(IntPtr, IntPtr, IntPtr, IntPtr) -- uid: OpenTK.Graphics.Egl.Egl.CreatePbufferSurface(System.IntPtr,System.IntPtr,System.Int32[]) - commentId: M:OpenTK.Graphics.Egl.Egl.CreatePbufferSurface(System.IntPtr,System.IntPtr,System.Int32[]) - id: CreatePbufferSurface(System.IntPtr,System.IntPtr,System.Int32[]) - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: CreatePbufferSurface(nint, nint, int[]) - nameWithType: Egl.CreatePbufferSurface(nint, nint, int[]) - fullName: OpenTK.Graphics.Egl.Egl.CreatePbufferSurface(nint, nint, int[]) - type: Method - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public static extern nint CreatePbufferSurface(nint dpy, nint config, int[] attrib_list) - parameters: - - id: dpy - type: System.IntPtr - - id: config - type: System.IntPtr - - id: attrib_list - type: System.Int32[] - return: - type: System.IntPtr - content.vb: Public Shared Function CreatePbufferSurface(dpy As IntPtr, config As IntPtr, attrib_list As Integer()) As IntPtr - overload: OpenTK.Graphics.Egl.Egl.CreatePbufferSurface* - nameWithType.vb: Egl.CreatePbufferSurface(IntPtr, IntPtr, Integer()) - fullName.vb: OpenTK.Graphics.Egl.Egl.CreatePbufferSurface(System.IntPtr, System.IntPtr, Integer()) - name.vb: CreatePbufferSurface(IntPtr, IntPtr, Integer()) -- uid: OpenTK.Graphics.Egl.Egl.CreatePixmapSurface(System.IntPtr,System.IntPtr,System.IntPtr,System.Int32[]) - commentId: M:OpenTK.Graphics.Egl.Egl.CreatePixmapSurface(System.IntPtr,System.IntPtr,System.IntPtr,System.Int32[]) - id: CreatePixmapSurface(System.IntPtr,System.IntPtr,System.IntPtr,System.Int32[]) - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: CreatePixmapSurface(nint, nint, nint, int[]) - nameWithType: Egl.CreatePixmapSurface(nint, nint, nint, int[]) - fullName: OpenTK.Graphics.Egl.Egl.CreatePixmapSurface(nint, nint, nint, int[]) - type: Method - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public static extern nint CreatePixmapSurface(nint dpy, nint config, nint pixmap, int[] attrib_list) - parameters: - - id: dpy - type: System.IntPtr - - id: config - type: System.IntPtr - - id: pixmap - type: System.IntPtr - - id: attrib_list - type: System.Int32[] - return: - type: System.IntPtr - content.vb: Public Shared Function CreatePixmapSurface(dpy As IntPtr, config As IntPtr, pixmap As IntPtr, attrib_list As Integer()) As IntPtr - overload: OpenTK.Graphics.Egl.Egl.CreatePixmapSurface* - nameWithType.vb: Egl.CreatePixmapSurface(IntPtr, IntPtr, IntPtr, Integer()) - fullName.vb: OpenTK.Graphics.Egl.Egl.CreatePixmapSurface(System.IntPtr, System.IntPtr, System.IntPtr, Integer()) - name.vb: CreatePixmapSurface(IntPtr, IntPtr, IntPtr, Integer()) -- uid: OpenTK.Graphics.Egl.Egl.DestroySurface(System.IntPtr,System.IntPtr) - commentId: M:OpenTK.Graphics.Egl.Egl.DestroySurface(System.IntPtr,System.IntPtr) - id: DestroySurface(System.IntPtr,System.IntPtr) - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: DestroySurface(nint, nint) - nameWithType: Egl.DestroySurface(nint, nint) - fullName: OpenTK.Graphics.Egl.Egl.DestroySurface(nint, nint) - type: Method - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public static extern bool DestroySurface(nint dpy, nint surface) - parameters: - - id: dpy - type: System.IntPtr - - id: surface - type: System.IntPtr - return: - type: System.Boolean - content.vb: Public Shared Function DestroySurface(dpy As IntPtr, surface As IntPtr) As Boolean - overload: OpenTK.Graphics.Egl.Egl.DestroySurface* - nameWithType.vb: Egl.DestroySurface(IntPtr, IntPtr) - fullName.vb: OpenTK.Graphics.Egl.Egl.DestroySurface(System.IntPtr, System.IntPtr) - name.vb: DestroySurface(IntPtr, IntPtr) -- uid: OpenTK.Graphics.Egl.Egl.QuerySurface(System.IntPtr,System.IntPtr,System.Int32,System.Int32@) - commentId: M:OpenTK.Graphics.Egl.Egl.QuerySurface(System.IntPtr,System.IntPtr,System.Int32,System.Int32@) - id: QuerySurface(System.IntPtr,System.IntPtr,System.Int32,System.Int32@) - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: QuerySurface(nint, nint, int, out int) - nameWithType: Egl.QuerySurface(nint, nint, int, out int) - fullName: OpenTK.Graphics.Egl.Egl.QuerySurface(nint, nint, int, out int) - type: Method - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public static extern bool QuerySurface(nint dpy, nint surface, int attribute, out int value) - parameters: - - id: dpy - type: System.IntPtr - - id: surface - type: System.IntPtr - - id: attribute - type: System.Int32 - - id: value - type: System.Int32 - return: - type: System.Boolean - content.vb: Public Shared Function QuerySurface(dpy As IntPtr, surface As IntPtr, attribute As Integer, value As Integer) As Boolean - overload: OpenTK.Graphics.Egl.Egl.QuerySurface* - nameWithType.vb: Egl.QuerySurface(IntPtr, IntPtr, Integer, Integer) - fullName.vb: OpenTK.Graphics.Egl.Egl.QuerySurface(System.IntPtr, System.IntPtr, Integer, Integer) - name.vb: QuerySurface(IntPtr, IntPtr, Integer, Integer) -- uid: OpenTK.Graphics.Egl.Egl.BindAPI(OpenTK.Graphics.Egl.RenderApi) - commentId: M:OpenTK.Graphics.Egl.Egl.BindAPI(OpenTK.Graphics.Egl.RenderApi) - id: BindAPI(OpenTK.Graphics.Egl.RenderApi) - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: BindAPI(RenderApi) - nameWithType: Egl.BindAPI(RenderApi) - fullName: OpenTK.Graphics.Egl.Egl.BindAPI(OpenTK.Graphics.Egl.RenderApi) - type: Method - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public static extern bool BindAPI(RenderApi api) - parameters: - - id: api - type: OpenTK.Graphics.Egl.RenderApi - return: - type: System.Boolean - content.vb: Public Shared Function BindAPI(api As RenderApi) As Boolean - overload: OpenTK.Graphics.Egl.Egl.BindAPI* -- uid: OpenTK.Graphics.Egl.Egl.QueryAPI - commentId: M:OpenTK.Graphics.Egl.Egl.QueryAPI - id: QueryAPI - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: QueryAPI() - nameWithType: Egl.QueryAPI() - fullName: OpenTK.Graphics.Egl.Egl.QueryAPI() - type: Method - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public static extern int QueryAPI() - return: - type: System.Int32 - content.vb: Public Shared Function QueryAPI() As Integer - overload: OpenTK.Graphics.Egl.Egl.QueryAPI* -- uid: OpenTK.Graphics.Egl.Egl.WaitClient - commentId: M:OpenTK.Graphics.Egl.Egl.WaitClient - id: WaitClient - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: WaitClient() - nameWithType: Egl.WaitClient() - fullName: OpenTK.Graphics.Egl.Egl.WaitClient() - type: Method - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public static extern bool WaitClient() - return: - type: System.Boolean - content.vb: Public Shared Function WaitClient() As Boolean - overload: OpenTK.Graphics.Egl.Egl.WaitClient* -- uid: OpenTK.Graphics.Egl.Egl.ReleaseThread - commentId: M:OpenTK.Graphics.Egl.Egl.ReleaseThread - id: ReleaseThread - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: ReleaseThread() - nameWithType: Egl.ReleaseThread() - fullName: OpenTK.Graphics.Egl.Egl.ReleaseThread() - type: Method - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public static extern bool ReleaseThread() - return: - type: System.Boolean - content.vb: Public Shared Function ReleaseThread() As Boolean - overload: OpenTK.Graphics.Egl.Egl.ReleaseThread* -- uid: OpenTK.Graphics.Egl.Egl.CreatePbufferFromClientBuffer(System.IntPtr,System.Int32,System.IntPtr,System.IntPtr,System.Int32[]) - commentId: M:OpenTK.Graphics.Egl.Egl.CreatePbufferFromClientBuffer(System.IntPtr,System.Int32,System.IntPtr,System.IntPtr,System.Int32[]) - id: CreatePbufferFromClientBuffer(System.IntPtr,System.Int32,System.IntPtr,System.IntPtr,System.Int32[]) - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: CreatePbufferFromClientBuffer(nint, int, nint, nint, int[]) - nameWithType: Egl.CreatePbufferFromClientBuffer(nint, int, nint, nint, int[]) - fullName: OpenTK.Graphics.Egl.Egl.CreatePbufferFromClientBuffer(nint, int, nint, nint, int[]) - type: Method - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public static extern nint CreatePbufferFromClientBuffer(nint dpy, int buftype, nint buffer, nint config, int[] attrib_list) - parameters: - - id: dpy - type: System.IntPtr - - id: buftype - type: System.Int32 - - id: buffer - type: System.IntPtr - - id: config - type: System.IntPtr - - id: attrib_list - type: System.Int32[] - return: - type: System.IntPtr - content.vb: Public Shared Function CreatePbufferFromClientBuffer(dpy As IntPtr, buftype As Integer, buffer As IntPtr, config As IntPtr, attrib_list As Integer()) As IntPtr - overload: OpenTK.Graphics.Egl.Egl.CreatePbufferFromClientBuffer* - nameWithType.vb: Egl.CreatePbufferFromClientBuffer(IntPtr, Integer, IntPtr, IntPtr, Integer()) - fullName.vb: OpenTK.Graphics.Egl.Egl.CreatePbufferFromClientBuffer(System.IntPtr, Integer, System.IntPtr, System.IntPtr, Integer()) - name.vb: CreatePbufferFromClientBuffer(IntPtr, Integer, IntPtr, IntPtr, Integer()) -- uid: OpenTK.Graphics.Egl.Egl.SurfaceAttrib(System.IntPtr,System.IntPtr,System.Int32,System.Int32) - commentId: M:OpenTK.Graphics.Egl.Egl.SurfaceAttrib(System.IntPtr,System.IntPtr,System.Int32,System.Int32) - id: SurfaceAttrib(System.IntPtr,System.IntPtr,System.Int32,System.Int32) - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: SurfaceAttrib(nint, nint, int, int) - nameWithType: Egl.SurfaceAttrib(nint, nint, int, int) - fullName: OpenTK.Graphics.Egl.Egl.SurfaceAttrib(nint, nint, int, int) - type: Method - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public static extern bool SurfaceAttrib(nint dpy, nint surface, int attribute, int value) - parameters: - - id: dpy - type: System.IntPtr - - id: surface - type: System.IntPtr - - id: attribute - type: System.Int32 - - id: value - type: System.Int32 - return: - type: System.Boolean - content.vb: Public Shared Function SurfaceAttrib(dpy As IntPtr, surface As IntPtr, attribute As Integer, value As Integer) As Boolean - overload: OpenTK.Graphics.Egl.Egl.SurfaceAttrib* - nameWithType.vb: Egl.SurfaceAttrib(IntPtr, IntPtr, Integer, Integer) - fullName.vb: OpenTK.Graphics.Egl.Egl.SurfaceAttrib(System.IntPtr, System.IntPtr, Integer, Integer) - name.vb: SurfaceAttrib(IntPtr, IntPtr, Integer, Integer) -- uid: OpenTK.Graphics.Egl.Egl.BindTexImage(System.IntPtr,System.IntPtr,System.Int32) - commentId: M:OpenTK.Graphics.Egl.Egl.BindTexImage(System.IntPtr,System.IntPtr,System.Int32) - id: BindTexImage(System.IntPtr,System.IntPtr,System.Int32) - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: BindTexImage(nint, nint, int) - nameWithType: Egl.BindTexImage(nint, nint, int) - fullName: OpenTK.Graphics.Egl.Egl.BindTexImage(nint, nint, int) - type: Method - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public static extern bool BindTexImage(nint dpy, nint surface, int buffer) - parameters: - - id: dpy - type: System.IntPtr - - id: surface - type: System.IntPtr - - id: buffer - type: System.Int32 - return: - type: System.Boolean - content.vb: Public Shared Function BindTexImage(dpy As IntPtr, surface As IntPtr, buffer As Integer) As Boolean - overload: OpenTK.Graphics.Egl.Egl.BindTexImage* - nameWithType.vb: Egl.BindTexImage(IntPtr, IntPtr, Integer) - fullName.vb: OpenTK.Graphics.Egl.Egl.BindTexImage(System.IntPtr, System.IntPtr, Integer) - name.vb: BindTexImage(IntPtr, IntPtr, Integer) -- uid: OpenTK.Graphics.Egl.Egl.ReleaseTexImage(System.IntPtr,System.IntPtr,System.Int32) - commentId: M:OpenTK.Graphics.Egl.Egl.ReleaseTexImage(System.IntPtr,System.IntPtr,System.Int32) - id: ReleaseTexImage(System.IntPtr,System.IntPtr,System.Int32) - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: ReleaseTexImage(nint, nint, int) - nameWithType: Egl.ReleaseTexImage(nint, nint, int) - fullName: OpenTK.Graphics.Egl.Egl.ReleaseTexImage(nint, nint, int) - type: Method - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public static extern bool ReleaseTexImage(nint dpy, nint surface, int buffer) - parameters: - - id: dpy - type: System.IntPtr - - id: surface - type: System.IntPtr - - id: buffer - type: System.Int32 - return: - type: System.Boolean - content.vb: Public Shared Function ReleaseTexImage(dpy As IntPtr, surface As IntPtr, buffer As Integer) As Boolean - overload: OpenTK.Graphics.Egl.Egl.ReleaseTexImage* - nameWithType.vb: Egl.ReleaseTexImage(IntPtr, IntPtr, Integer) - fullName.vb: OpenTK.Graphics.Egl.Egl.ReleaseTexImage(System.IntPtr, System.IntPtr, Integer) - name.vb: ReleaseTexImage(IntPtr, IntPtr, Integer) -- uid: OpenTK.Graphics.Egl.Egl.SwapInterval(System.IntPtr,System.Int32) - commentId: M:OpenTK.Graphics.Egl.Egl.SwapInterval(System.IntPtr,System.Int32) - id: SwapInterval(System.IntPtr,System.Int32) - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: SwapInterval(nint, int) - nameWithType: Egl.SwapInterval(nint, int) - fullName: OpenTK.Graphics.Egl.Egl.SwapInterval(nint, int) - type: Method - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public static extern bool SwapInterval(nint dpy, int interval) - parameters: - - id: dpy - type: System.IntPtr - - id: interval - type: System.Int32 - return: - type: System.Boolean - content.vb: Public Shared Function SwapInterval(dpy As IntPtr, interval As Integer) As Boolean - overload: OpenTK.Graphics.Egl.Egl.SwapInterval* - nameWithType.vb: Egl.SwapInterval(IntPtr, Integer) - fullName.vb: OpenTK.Graphics.Egl.Egl.SwapInterval(System.IntPtr, Integer) - name.vb: SwapInterval(IntPtr, Integer) -- uid: OpenTK.Graphics.Egl.Egl.CreateContext(System.IntPtr,System.IntPtr,System.IntPtr,System.Int32[]) - commentId: M:OpenTK.Graphics.Egl.Egl.CreateContext(System.IntPtr,System.IntPtr,System.IntPtr,System.Int32[]) - id: CreateContext(System.IntPtr,System.IntPtr,System.IntPtr,System.Int32[]) - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: CreateContext(nint, nint, nint, int[]?) - nameWithType: Egl.CreateContext(nint, nint, nint, int[]?) - fullName: OpenTK.Graphics.Egl.Egl.CreateContext(nint, nint, nint, int[]?) - type: Method - source: - id: CreateContext - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 347 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public static nint CreateContext(nint dpy, nint config, nint share_context, int[]? attrib_list) - parameters: - - id: dpy - type: System.IntPtr - - id: config - type: System.IntPtr - - id: share_context - type: System.IntPtr - - id: attrib_list - type: System.Int32[] - return: - type: System.IntPtr - content.vb: Public Shared Function CreateContext(dpy As IntPtr, config As IntPtr, share_context As IntPtr, attrib_list As Integer()) As IntPtr - overload: OpenTK.Graphics.Egl.Egl.CreateContext* - nameWithType.vb: Egl.CreateContext(IntPtr, IntPtr, IntPtr, Integer()) - fullName.vb: OpenTK.Graphics.Egl.Egl.CreateContext(System.IntPtr, System.IntPtr, System.IntPtr, Integer()) - name.vb: CreateContext(IntPtr, IntPtr, IntPtr, Integer()) -- uid: OpenTK.Graphics.Egl.Egl.DestroyContext(System.IntPtr,System.IntPtr) - commentId: M:OpenTK.Graphics.Egl.Egl.DestroyContext(System.IntPtr,System.IntPtr) - id: DestroyContext(System.IntPtr,System.IntPtr) - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: DestroyContext(nint, nint) - nameWithType: Egl.DestroyContext(nint, nint) - fullName: OpenTK.Graphics.Egl.Egl.DestroyContext(nint, nint) - type: Method - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public static extern bool DestroyContext(nint dpy, nint ctx) - parameters: - - id: dpy - type: System.IntPtr - - id: ctx - type: System.IntPtr - return: - type: System.Boolean - content.vb: Public Shared Function DestroyContext(dpy As IntPtr, ctx As IntPtr) As Boolean - overload: OpenTK.Graphics.Egl.Egl.DestroyContext* - nameWithType.vb: Egl.DestroyContext(IntPtr, IntPtr) - fullName.vb: OpenTK.Graphics.Egl.Egl.DestroyContext(System.IntPtr, System.IntPtr) - name.vb: DestroyContext(IntPtr, IntPtr) -- uid: OpenTK.Graphics.Egl.Egl.MakeCurrent(System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr) - commentId: M:OpenTK.Graphics.Egl.Egl.MakeCurrent(System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr) - id: MakeCurrent(System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr) - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: MakeCurrent(nint, nint, nint, nint) - nameWithType: Egl.MakeCurrent(nint, nint, nint, nint) - fullName: OpenTK.Graphics.Egl.Egl.MakeCurrent(nint, nint, nint, nint) - type: Method - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public static extern bool MakeCurrent(nint dpy, nint draw, nint read, nint ctx) - parameters: - - id: dpy - type: System.IntPtr - - id: draw - type: System.IntPtr - - id: read - type: System.IntPtr - - id: ctx - type: System.IntPtr - return: - type: System.Boolean - content.vb: Public Shared Function MakeCurrent(dpy As IntPtr, draw As IntPtr, read As IntPtr, ctx As IntPtr) As Boolean - overload: OpenTK.Graphics.Egl.Egl.MakeCurrent* - nameWithType.vb: Egl.MakeCurrent(IntPtr, IntPtr, IntPtr, IntPtr) - fullName.vb: OpenTK.Graphics.Egl.Egl.MakeCurrent(System.IntPtr, System.IntPtr, System.IntPtr, System.IntPtr) - name.vb: MakeCurrent(IntPtr, IntPtr, IntPtr, IntPtr) -- uid: OpenTK.Graphics.Egl.Egl.GetCurrentContext - commentId: M:OpenTK.Graphics.Egl.Egl.GetCurrentContext - id: GetCurrentContext - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: GetCurrentContext() - nameWithType: Egl.GetCurrentContext() - fullName: OpenTK.Graphics.Egl.Egl.GetCurrentContext() - type: Method - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public static extern nint GetCurrentContext() - return: - type: System.IntPtr - content.vb: Public Shared Function GetCurrentContext() As IntPtr - overload: OpenTK.Graphics.Egl.Egl.GetCurrentContext* -- uid: OpenTK.Graphics.Egl.Egl.GetCurrentSurface(System.Int32) - commentId: M:OpenTK.Graphics.Egl.Egl.GetCurrentSurface(System.Int32) - id: GetCurrentSurface(System.Int32) - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: GetCurrentSurface(int) - nameWithType: Egl.GetCurrentSurface(int) - fullName: OpenTK.Graphics.Egl.Egl.GetCurrentSurface(int) - type: Method - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public static extern nint GetCurrentSurface(int readdraw) - parameters: - - id: readdraw - type: System.Int32 - return: - type: System.IntPtr - content.vb: Public Shared Function GetCurrentSurface(readdraw As Integer) As IntPtr - overload: OpenTK.Graphics.Egl.Egl.GetCurrentSurface* - nameWithType.vb: Egl.GetCurrentSurface(Integer) - fullName.vb: OpenTK.Graphics.Egl.Egl.GetCurrentSurface(Integer) - name.vb: GetCurrentSurface(Integer) -- uid: OpenTK.Graphics.Egl.Egl.GetCurrentDisplay - commentId: M:OpenTK.Graphics.Egl.Egl.GetCurrentDisplay - id: GetCurrentDisplay - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: GetCurrentDisplay() - nameWithType: Egl.GetCurrentDisplay() - fullName: OpenTK.Graphics.Egl.Egl.GetCurrentDisplay() - type: Method - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public static extern nint GetCurrentDisplay() - return: - type: System.IntPtr - content.vb: Public Shared Function GetCurrentDisplay() As IntPtr - overload: OpenTK.Graphics.Egl.Egl.GetCurrentDisplay* -- uid: OpenTK.Graphics.Egl.Egl.QueryContext(System.IntPtr,System.IntPtr,System.Int32,System.Int32@) - commentId: M:OpenTK.Graphics.Egl.Egl.QueryContext(System.IntPtr,System.IntPtr,System.Int32,System.Int32@) - id: QueryContext(System.IntPtr,System.IntPtr,System.Int32,System.Int32@) - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: QueryContext(nint, nint, int, out int) - nameWithType: Egl.QueryContext(nint, nint, int, out int) - fullName: OpenTK.Graphics.Egl.Egl.QueryContext(nint, nint, int, out int) - type: Method - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public static extern bool QueryContext(nint dpy, nint ctx, int attribute, out int value) - parameters: - - id: dpy - type: System.IntPtr - - id: ctx - type: System.IntPtr - - id: attribute - type: System.Int32 - - id: value - type: System.Int32 - return: - type: System.Boolean - content.vb: Public Shared Function QueryContext(dpy As IntPtr, ctx As IntPtr, attribute As Integer, value As Integer) As Boolean - overload: OpenTK.Graphics.Egl.Egl.QueryContext* - nameWithType.vb: Egl.QueryContext(IntPtr, IntPtr, Integer, Integer) - fullName.vb: OpenTK.Graphics.Egl.Egl.QueryContext(System.IntPtr, System.IntPtr, Integer, Integer) - name.vb: QueryContext(IntPtr, IntPtr, Integer, Integer) -- uid: OpenTK.Graphics.Egl.Egl.WaitGL - commentId: M:OpenTK.Graphics.Egl.Egl.WaitGL - id: WaitGL - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: WaitGL() - nameWithType: Egl.WaitGL() - fullName: OpenTK.Graphics.Egl.Egl.WaitGL() - type: Method - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public static extern bool WaitGL() - return: - type: System.Boolean - content.vb: Public Shared Function WaitGL() As Boolean - overload: OpenTK.Graphics.Egl.Egl.WaitGL* -- uid: OpenTK.Graphics.Egl.Egl.WaitNative(System.Int32) - commentId: M:OpenTK.Graphics.Egl.Egl.WaitNative(System.Int32) - id: WaitNative(System.Int32) - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: WaitNative(int) - nameWithType: Egl.WaitNative(int) - fullName: OpenTK.Graphics.Egl.Egl.WaitNative(int) - type: Method - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public static extern bool WaitNative(int engine) - parameters: - - id: engine - type: System.Int32 - return: - type: System.Boolean - content.vb: Public Shared Function WaitNative(engine As Integer) As Boolean - overload: OpenTK.Graphics.Egl.Egl.WaitNative* - nameWithType.vb: Egl.WaitNative(Integer) - fullName.vb: OpenTK.Graphics.Egl.Egl.WaitNative(Integer) - name.vb: WaitNative(Integer) -- uid: OpenTK.Graphics.Egl.Egl.SwapBuffers(System.IntPtr,System.IntPtr) - commentId: M:OpenTK.Graphics.Egl.Egl.SwapBuffers(System.IntPtr,System.IntPtr) - id: SwapBuffers(System.IntPtr,System.IntPtr) - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: SwapBuffers(nint, nint) - nameWithType: Egl.SwapBuffers(nint, nint) - fullName: OpenTK.Graphics.Egl.Egl.SwapBuffers(nint, nint) - type: Method - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public static extern bool SwapBuffers(nint dpy, nint surface) - parameters: - - id: dpy - type: System.IntPtr - - id: surface - type: System.IntPtr - return: - type: System.Boolean - content.vb: Public Shared Function SwapBuffers(dpy As IntPtr, surface As IntPtr) As Boolean - overload: OpenTK.Graphics.Egl.Egl.SwapBuffers* - nameWithType.vb: Egl.SwapBuffers(IntPtr, IntPtr) - fullName.vb: OpenTK.Graphics.Egl.Egl.SwapBuffers(System.IntPtr, System.IntPtr) - name.vb: SwapBuffers(IntPtr, IntPtr) -- uid: OpenTK.Graphics.Egl.Egl.CopyBuffers(System.IntPtr,System.IntPtr,System.IntPtr) - commentId: M:OpenTK.Graphics.Egl.Egl.CopyBuffers(System.IntPtr,System.IntPtr,System.IntPtr) - id: CopyBuffers(System.IntPtr,System.IntPtr,System.IntPtr) - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: CopyBuffers(nint, nint, nint) - nameWithType: Egl.CopyBuffers(nint, nint, nint) - fullName: OpenTK.Graphics.Egl.Egl.CopyBuffers(nint, nint, nint) - type: Method - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public static extern bool CopyBuffers(nint dpy, nint surface, nint target) - parameters: - - id: dpy - type: System.IntPtr - - id: surface - type: System.IntPtr - - id: target - type: System.IntPtr - return: - type: System.Boolean - content.vb: Public Shared Function CopyBuffers(dpy As IntPtr, surface As IntPtr, target As IntPtr) As Boolean - overload: OpenTK.Graphics.Egl.Egl.CopyBuffers* - nameWithType.vb: Egl.CopyBuffers(IntPtr, IntPtr, IntPtr) - fullName.vb: OpenTK.Graphics.Egl.Egl.CopyBuffers(System.IntPtr, System.IntPtr, System.IntPtr) - name.vb: CopyBuffers(IntPtr, IntPtr, IntPtr) -- uid: OpenTK.Graphics.Egl.Egl.GetProcAddress(System.String) - commentId: M:OpenTK.Graphics.Egl.Egl.GetProcAddress(System.String) - id: GetProcAddress(System.String) - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: GetProcAddress(string) - nameWithType: Egl.GetProcAddress(string) - fullName: OpenTK.Graphics.Egl.Egl.GetProcAddress(string) - type: Method - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public static extern nint GetProcAddress(string funcname) - parameters: - - id: funcname - type: System.String - return: - type: System.IntPtr - content.vb: Public Shared Function GetProcAddress(funcname As String) As IntPtr - overload: OpenTK.Graphics.Egl.Egl.GetProcAddress* - nameWithType.vb: Egl.GetProcAddress(String) - fullName.vb: OpenTK.Graphics.Egl.Egl.GetProcAddress(String) - name.vb: GetProcAddress(String) -- uid: OpenTK.Graphics.Egl.Egl.GetProcAddress(System.IntPtr) - commentId: M:OpenTK.Graphics.Egl.Egl.GetProcAddress(System.IntPtr) - id: GetProcAddress(System.IntPtr) - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: GetProcAddress(nint) - nameWithType: Egl.GetProcAddress(nint) - fullName: OpenTK.Graphics.Egl.Egl.GetProcAddress(nint) - type: Method - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public static extern nint GetProcAddress(nint funcname) - parameters: - - id: funcname - type: System.IntPtr - return: - type: System.IntPtr - content.vb: Public Shared Function GetProcAddress(funcname As IntPtr) As IntPtr - overload: OpenTK.Graphics.Egl.Egl.GetProcAddress* - nameWithType.vb: Egl.GetProcAddress(IntPtr) - fullName.vb: OpenTK.Graphics.Egl.Egl.GetProcAddress(System.IntPtr) - name.vb: GetProcAddress(IntPtr) -- uid: OpenTK.Graphics.Egl.Egl.GetPlatformDisplayEXT(System.Int32,System.IntPtr,System.Int32[]) - commentId: M:OpenTK.Graphics.Egl.Egl.GetPlatformDisplayEXT(System.Int32,System.IntPtr,System.Int32[]) - id: GetPlatformDisplayEXT(System.Int32,System.IntPtr,System.Int32[]) - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: GetPlatformDisplayEXT(int, nint, int[]?) - nameWithType: Egl.GetPlatformDisplayEXT(int, nint, int[]?) - fullName: OpenTK.Graphics.Egl.Egl.GetPlatformDisplayEXT(int, nint, int[]?) - type: Method - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public static extern nint GetPlatformDisplayEXT(int platform, nint native_display, int[]? attrib_list) - parameters: - - id: platform - type: System.Int32 - - id: native_display - type: System.IntPtr - - id: attrib_list - type: System.Int32[] - return: - type: System.IntPtr - content.vb: Public Shared Function GetPlatformDisplayEXT(platform As Integer, native_display As IntPtr, attrib_list As Integer()) As IntPtr - overload: OpenTK.Graphics.Egl.Egl.GetPlatformDisplayEXT* - nameWithType.vb: Egl.GetPlatformDisplayEXT(Integer, IntPtr, Integer()) - fullName.vb: OpenTK.Graphics.Egl.Egl.GetPlatformDisplayEXT(Integer, System.IntPtr, Integer()) - name.vb: GetPlatformDisplayEXT(Integer, IntPtr, Integer()) -- uid: OpenTK.Graphics.Egl.Egl.CreatePlatformWindowSurfaceEXT(System.IntPtr,System.IntPtr,System.IntPtr,System.Int32[]) - commentId: M:OpenTK.Graphics.Egl.Egl.CreatePlatformWindowSurfaceEXT(System.IntPtr,System.IntPtr,System.IntPtr,System.Int32[]) - id: CreatePlatformWindowSurfaceEXT(System.IntPtr,System.IntPtr,System.IntPtr,System.Int32[]) - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: CreatePlatformWindowSurfaceEXT(nint, nint, nint, int[]?) - nameWithType: Egl.CreatePlatformWindowSurfaceEXT(nint, nint, nint, int[]?) - fullName: OpenTK.Graphics.Egl.Egl.CreatePlatformWindowSurfaceEXT(nint, nint, nint, int[]?) - type: Method - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public static extern nint CreatePlatformWindowSurfaceEXT(nint dpy, nint config, nint native_window, int[]? attrib_list) - parameters: - - id: dpy - type: System.IntPtr - - id: config - type: System.IntPtr - - id: native_window - type: System.IntPtr - - id: attrib_list - type: System.Int32[] - return: - type: System.IntPtr - content.vb: Public Shared Function CreatePlatformWindowSurfaceEXT(dpy As IntPtr, config As IntPtr, native_window As IntPtr, attrib_list As Integer()) As IntPtr - overload: OpenTK.Graphics.Egl.Egl.CreatePlatformWindowSurfaceEXT* - nameWithType.vb: Egl.CreatePlatformWindowSurfaceEXT(IntPtr, IntPtr, IntPtr, Integer()) - fullName.vb: OpenTK.Graphics.Egl.Egl.CreatePlatformWindowSurfaceEXT(System.IntPtr, System.IntPtr, System.IntPtr, Integer()) - name.vb: CreatePlatformWindowSurfaceEXT(IntPtr, IntPtr, IntPtr, Integer()) -- uid: OpenTK.Graphics.Egl.Egl.CreatePlatformPixmapSurfaceEXT(System.IntPtr,System.IntPtr,System.IntPtr,System.Int32[]) - commentId: M:OpenTK.Graphics.Egl.Egl.CreatePlatformPixmapSurfaceEXT(System.IntPtr,System.IntPtr,System.IntPtr,System.Int32[]) - id: CreatePlatformPixmapSurfaceEXT(System.IntPtr,System.IntPtr,System.IntPtr,System.Int32[]) - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: CreatePlatformPixmapSurfaceEXT(nint, nint, nint, int[]) - nameWithType: Egl.CreatePlatformPixmapSurfaceEXT(nint, nint, nint, int[]) - fullName: OpenTK.Graphics.Egl.Egl.CreatePlatformPixmapSurfaceEXT(nint, nint, nint, int[]) - type: Method - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public static extern nint CreatePlatformPixmapSurfaceEXT(nint dpy, nint config, nint native_pixmap, int[] attrib_list) - parameters: - - id: dpy - type: System.IntPtr - - id: config - type: System.IntPtr - - id: native_pixmap - type: System.IntPtr - - id: attrib_list - type: System.Int32[] - return: - type: System.IntPtr - content.vb: Public Shared Function CreatePlatformPixmapSurfaceEXT(dpy As IntPtr, config As IntPtr, native_pixmap As IntPtr, attrib_list As Integer()) As IntPtr - overload: OpenTK.Graphics.Egl.Egl.CreatePlatformPixmapSurfaceEXT* - nameWithType.vb: Egl.CreatePlatformPixmapSurfaceEXT(IntPtr, IntPtr, IntPtr, Integer()) - fullName.vb: OpenTK.Graphics.Egl.Egl.CreatePlatformPixmapSurfaceEXT(System.IntPtr, System.IntPtr, System.IntPtr, Integer()) - name.vb: CreatePlatformPixmapSurfaceEXT(IntPtr, IntPtr, IntPtr, Integer()) -- uid: OpenTK.Graphics.Egl.Egl.IsSupported - commentId: P:OpenTK.Graphics.Egl.Egl.IsSupported - id: IsSupported - parent: OpenTK.Graphics.Egl.Egl - langs: - - csharp - - vb - name: IsSupported - nameWithType: Egl.IsSupported - fullName: OpenTK.Graphics.Egl.Egl.IsSupported - type: Property - source: - id: IsSupported - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 411 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public static bool IsSupported { get; } - parameters: [] - return: - type: System.Boolean - content.vb: Public Shared ReadOnly Property IsSupported As Boolean - overload: OpenTK.Graphics.Egl.Egl.IsSupported* -references: -- uid: OpenTK.Graphics.Egl - commentId: N:OpenTK.Graphics.Egl - href: OpenTK.html - name: OpenTK.Graphics.Egl - nameWithType: OpenTK.Graphics.Egl - fullName: OpenTK.Graphics.Egl - spec.csharp: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Egl - name: Egl - href: OpenTK.Graphics.Egl.html - spec.vb: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Egl - name: Egl - href: OpenTK.Graphics.Egl.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: System.Object.Equals(System.Object) - commentId: M:System.Object.Equals(System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - name: Equals(object) - nameWithType: object.Equals(object) - fullName: object.Equals(object) - nameWithType.vb: Object.Equals(Object) - fullName.vb: Object.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetHashCode - commentId: M:System.Object.GetHashCode - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - name: GetHashCode() - nameWithType: object.GetHashCode() - fullName: object.GetHashCode() - nameWithType.vb: Object.GetHashCode() - fullName.vb: Object.GetHashCode() - spec.csharp: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.MemberwiseClone - commentId: M:System.Object.MemberwiseClone - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - name: MemberwiseClone() - nameWithType: object.MemberwiseClone() - fullName: object.MemberwiseClone() - nameWithType.vb: Object.MemberwiseClone() - fullName.vb: Object.MemberwiseClone() - spec.csharp: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) - spec.vb: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.ToString - commentId: M:System.Object.ToString - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - name: ToString() - nameWithType: object.ToString() - fullName: object.ToString() - nameWithType.vb: Object.ToString() - fullName.vb: Object.ToString() - spec.csharp: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) - spec.vb: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: System.IntPtr - commentId: T:System.IntPtr - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: nint - nameWithType: nint - fullName: nint - nameWithType.vb: IntPtr - fullName.vb: System.IntPtr - name.vb: IntPtr -- uid: System.Int32 - commentId: T:System.Int32 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - name: int - nameWithType: int - fullName: int - nameWithType.vb: Integer - fullName.vb: Integer - name.vb: Integer -- uid: OpenTK.Graphics.Egl.Egl.QuerySurfacePointerANGLE* - commentId: Overload:OpenTK.Graphics.Egl.Egl.QuerySurfacePointerANGLE - isExternal: true - href: OpenTK.Graphics.Egl.Egl.html#OpenTK_Graphics_Egl_Egl_QuerySurfacePointerANGLE_System_IntPtr_System_IntPtr_System_Int32_System_IntPtr__ - name: QuerySurfacePointerANGLE - nameWithType: Egl.QuerySurfacePointerANGLE - fullName: OpenTK.Graphics.Egl.Egl.QuerySurfacePointerANGLE -- uid: System.Boolean - commentId: T:System.Boolean - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - name: bool - nameWithType: bool - fullName: bool - nameWithType.vb: Boolean - fullName.vb: Boolean - name.vb: Boolean -- uid: OpenTK.Graphics.Egl.Egl.GetPlatformDisplay* - commentId: Overload:OpenTK.Graphics.Egl.Egl.GetPlatformDisplay - isExternal: true - href: OpenTK.Graphics.Egl.Egl.html#OpenTK_Graphics_Egl_Egl_GetPlatformDisplay_System_Int32_System_IntPtr_System_Int32___ - name: GetPlatformDisplay - nameWithType: Egl.GetPlatformDisplay - fullName: OpenTK.Graphics.Egl.Egl.GetPlatformDisplay -- uid: System.Int32[] - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - name: int[] - nameWithType: int[] - fullName: int[] - nameWithType.vb: Integer() - fullName.vb: Integer() - name.vb: Integer() - spec.csharp: - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '[' - - name: ']' - spec.vb: - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ( - - name: ) -- uid: OpenTK.Graphics.Egl.Egl.GetError* - commentId: Overload:OpenTK.Graphics.Egl.Egl.GetError - isExternal: true - href: OpenTK.Graphics.Egl.Egl.html#OpenTK_Graphics_Egl_Egl_GetError - name: GetError - nameWithType: Egl.GetError - fullName: OpenTK.Graphics.Egl.Egl.GetError -- uid: OpenTK.Graphics.Egl.ErrorCode - commentId: T:OpenTK.Graphics.Egl.ErrorCode - parent: OpenTK.Graphics.Egl - href: OpenTK.Graphics.Egl.ErrorCode.html - name: ErrorCode - nameWithType: ErrorCode - fullName: OpenTK.Graphics.Egl.ErrorCode -- uid: OpenTK.Graphics.Egl.Egl.GetDisplay* - commentId: Overload:OpenTK.Graphics.Egl.Egl.GetDisplay - isExternal: true - href: OpenTK.Graphics.Egl.Egl.html#OpenTK_Graphics_Egl_Egl_GetDisplay_System_IntPtr_ - name: GetDisplay - nameWithType: Egl.GetDisplay - fullName: OpenTK.Graphics.Egl.Egl.GetDisplay -- uid: OpenTK.Graphics.Egl.Egl.Initialize* - commentId: Overload:OpenTK.Graphics.Egl.Egl.Initialize - isExternal: true - href: OpenTK.Graphics.Egl.Egl.html#OpenTK_Graphics_Egl_Egl_Initialize_System_IntPtr_System_Int32__System_Int32__ - name: Initialize - nameWithType: Egl.Initialize - fullName: OpenTK.Graphics.Egl.Egl.Initialize -- uid: OpenTK.Graphics.Egl.Egl.Terminate* - commentId: Overload:OpenTK.Graphics.Egl.Egl.Terminate - isExternal: true - href: OpenTK.Graphics.Egl.Egl.html#OpenTK_Graphics_Egl_Egl_Terminate_System_IntPtr_ - name: Terminate - nameWithType: Egl.Terminate - fullName: OpenTK.Graphics.Egl.Egl.Terminate -- uid: OpenTK.Graphics.Egl.Egl.QueryString* - commentId: Overload:OpenTK.Graphics.Egl.Egl.QueryString - isExternal: true - href: OpenTK.Graphics.Egl.Egl.html#OpenTK_Graphics_Egl_Egl_QueryString_System_IntPtr_System_Int32_ - name: QueryString - nameWithType: Egl.QueryString - fullName: OpenTK.Graphics.Egl.Egl.QueryString -- uid: OpenTK.Graphics.Egl.Egl.GetConfigs* - commentId: Overload:OpenTK.Graphics.Egl.Egl.GetConfigs - isExternal: true - href: OpenTK.Graphics.Egl.Egl.html#OpenTK_Graphics_Egl_Egl_GetConfigs_System_IntPtr_System_IntPtr___System_Int32_System_Int32__ - name: GetConfigs - nameWithType: Egl.GetConfigs - fullName: OpenTK.Graphics.Egl.Egl.GetConfigs -- uid: System.IntPtr[] - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: nint[] - nameWithType: nint[] - fullName: nint[] - nameWithType.vb: IntPtr() - fullName.vb: System.IntPtr() - name.vb: IntPtr() - spec.csharp: - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: '[' - - name: ']' - spec.vb: - - uid: System.IntPtr - name: IntPtr - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ( - - name: ) -- uid: OpenTK.Graphics.Egl.Egl.ChooseConfig* - commentId: Overload:OpenTK.Graphics.Egl.Egl.ChooseConfig - isExternal: true - href: OpenTK.Graphics.Egl.Egl.html#OpenTK_Graphics_Egl_Egl_ChooseConfig_System_IntPtr_System_Int32___System_IntPtr___System_Int32_System_Int32__ - name: ChooseConfig - nameWithType: Egl.ChooseConfig - fullName: OpenTK.Graphics.Egl.Egl.ChooseConfig -- uid: OpenTK.Graphics.Egl.Egl.GetConfigAttrib* - commentId: Overload:OpenTK.Graphics.Egl.Egl.GetConfigAttrib - isExternal: true - href: OpenTK.Graphics.Egl.Egl.html#OpenTK_Graphics_Egl_Egl_GetConfigAttrib_System_IntPtr_System_IntPtr_System_Int32_System_Int32__ - name: GetConfigAttrib - nameWithType: Egl.GetConfigAttrib - fullName: OpenTK.Graphics.Egl.Egl.GetConfigAttrib -- uid: OpenTK.Graphics.Egl.Egl.CreateWindowSurface* - commentId: Overload:OpenTK.Graphics.Egl.Egl.CreateWindowSurface - isExternal: true - href: OpenTK.Graphics.Egl.Egl.html#OpenTK_Graphics_Egl_Egl_CreateWindowSurface_System_IntPtr_System_IntPtr_System_IntPtr_System_IntPtr_ - name: CreateWindowSurface - nameWithType: Egl.CreateWindowSurface - fullName: OpenTK.Graphics.Egl.Egl.CreateWindowSurface -- uid: OpenTK.Graphics.Egl.Egl.CreatePbufferSurface* - commentId: Overload:OpenTK.Graphics.Egl.Egl.CreatePbufferSurface - isExternal: true - href: OpenTK.Graphics.Egl.Egl.html#OpenTK_Graphics_Egl_Egl_CreatePbufferSurface_System_IntPtr_System_IntPtr_System_Int32___ - name: CreatePbufferSurface - nameWithType: Egl.CreatePbufferSurface - fullName: OpenTK.Graphics.Egl.Egl.CreatePbufferSurface -- uid: OpenTK.Graphics.Egl.Egl.CreatePixmapSurface* - commentId: Overload:OpenTK.Graphics.Egl.Egl.CreatePixmapSurface - isExternal: true - href: OpenTK.Graphics.Egl.Egl.html#OpenTK_Graphics_Egl_Egl_CreatePixmapSurface_System_IntPtr_System_IntPtr_System_IntPtr_System_Int32___ - name: CreatePixmapSurface - nameWithType: Egl.CreatePixmapSurface - fullName: OpenTK.Graphics.Egl.Egl.CreatePixmapSurface -- uid: OpenTK.Graphics.Egl.Egl.DestroySurface* - commentId: Overload:OpenTK.Graphics.Egl.Egl.DestroySurface - isExternal: true - href: OpenTK.Graphics.Egl.Egl.html#OpenTK_Graphics_Egl_Egl_DestroySurface_System_IntPtr_System_IntPtr_ - name: DestroySurface - nameWithType: Egl.DestroySurface - fullName: OpenTK.Graphics.Egl.Egl.DestroySurface -- uid: OpenTK.Graphics.Egl.Egl.QuerySurface* - commentId: Overload:OpenTK.Graphics.Egl.Egl.QuerySurface - isExternal: true - href: OpenTK.Graphics.Egl.Egl.html#OpenTK_Graphics_Egl_Egl_QuerySurface_System_IntPtr_System_IntPtr_System_Int32_System_Int32__ - name: QuerySurface - nameWithType: Egl.QuerySurface - fullName: OpenTK.Graphics.Egl.Egl.QuerySurface -- uid: OpenTK.Graphics.Egl.Egl.BindAPI* - commentId: Overload:OpenTK.Graphics.Egl.Egl.BindAPI - isExternal: true - href: OpenTK.Graphics.Egl.Egl.html#OpenTK_Graphics_Egl_Egl_BindAPI_OpenTK_Graphics_Egl_RenderApi_ - name: BindAPI - nameWithType: Egl.BindAPI - fullName: OpenTK.Graphics.Egl.Egl.BindAPI -- uid: OpenTK.Graphics.Egl.RenderApi - commentId: T:OpenTK.Graphics.Egl.RenderApi - parent: OpenTK.Graphics.Egl - href: OpenTK.Graphics.Egl.RenderApi.html - name: RenderApi - nameWithType: RenderApi - fullName: OpenTK.Graphics.Egl.RenderApi -- uid: OpenTK.Graphics.Egl.Egl.QueryAPI* - commentId: Overload:OpenTK.Graphics.Egl.Egl.QueryAPI - isExternal: true - href: OpenTK.Graphics.Egl.Egl.html#OpenTK_Graphics_Egl_Egl_QueryAPI - name: QueryAPI - nameWithType: Egl.QueryAPI - fullName: OpenTK.Graphics.Egl.Egl.QueryAPI -- uid: OpenTK.Graphics.Egl.Egl.WaitClient* - commentId: Overload:OpenTK.Graphics.Egl.Egl.WaitClient - isExternal: true - href: OpenTK.Graphics.Egl.Egl.html#OpenTK_Graphics_Egl_Egl_WaitClient - name: WaitClient - nameWithType: Egl.WaitClient - fullName: OpenTK.Graphics.Egl.Egl.WaitClient -- uid: OpenTK.Graphics.Egl.Egl.ReleaseThread* - commentId: Overload:OpenTK.Graphics.Egl.Egl.ReleaseThread - isExternal: true - href: OpenTK.Graphics.Egl.Egl.html#OpenTK_Graphics_Egl_Egl_ReleaseThread - name: ReleaseThread - nameWithType: Egl.ReleaseThread - fullName: OpenTK.Graphics.Egl.Egl.ReleaseThread -- uid: OpenTK.Graphics.Egl.Egl.CreatePbufferFromClientBuffer* - commentId: Overload:OpenTK.Graphics.Egl.Egl.CreatePbufferFromClientBuffer - isExternal: true - href: OpenTK.Graphics.Egl.Egl.html#OpenTK_Graphics_Egl_Egl_CreatePbufferFromClientBuffer_System_IntPtr_System_Int32_System_IntPtr_System_IntPtr_System_Int32___ - name: CreatePbufferFromClientBuffer - nameWithType: Egl.CreatePbufferFromClientBuffer - fullName: OpenTK.Graphics.Egl.Egl.CreatePbufferFromClientBuffer -- uid: OpenTK.Graphics.Egl.Egl.SurfaceAttrib* - commentId: Overload:OpenTK.Graphics.Egl.Egl.SurfaceAttrib - isExternal: true - href: OpenTK.Graphics.Egl.Egl.html#OpenTK_Graphics_Egl_Egl_SurfaceAttrib_System_IntPtr_System_IntPtr_System_Int32_System_Int32_ - name: SurfaceAttrib - nameWithType: Egl.SurfaceAttrib - fullName: OpenTK.Graphics.Egl.Egl.SurfaceAttrib -- uid: OpenTK.Graphics.Egl.Egl.BindTexImage* - commentId: Overload:OpenTK.Graphics.Egl.Egl.BindTexImage - isExternal: true - href: OpenTK.Graphics.Egl.Egl.html#OpenTK_Graphics_Egl_Egl_BindTexImage_System_IntPtr_System_IntPtr_System_Int32_ - name: BindTexImage - nameWithType: Egl.BindTexImage - fullName: OpenTK.Graphics.Egl.Egl.BindTexImage -- uid: OpenTK.Graphics.Egl.Egl.ReleaseTexImage* - commentId: Overload:OpenTK.Graphics.Egl.Egl.ReleaseTexImage - isExternal: true - href: OpenTK.Graphics.Egl.Egl.html#OpenTK_Graphics_Egl_Egl_ReleaseTexImage_System_IntPtr_System_IntPtr_System_Int32_ - name: ReleaseTexImage - nameWithType: Egl.ReleaseTexImage - fullName: OpenTK.Graphics.Egl.Egl.ReleaseTexImage -- uid: OpenTK.Graphics.Egl.Egl.SwapInterval* - commentId: Overload:OpenTK.Graphics.Egl.Egl.SwapInterval - isExternal: true - href: OpenTK.Graphics.Egl.Egl.html#OpenTK_Graphics_Egl_Egl_SwapInterval_System_IntPtr_System_Int32_ - name: SwapInterval - nameWithType: Egl.SwapInterval - fullName: OpenTK.Graphics.Egl.Egl.SwapInterval -- uid: OpenTK.Graphics.Egl.Egl.CreateContext* - commentId: Overload:OpenTK.Graphics.Egl.Egl.CreateContext - href: OpenTK.Graphics.Egl.Egl.html#OpenTK_Graphics_Egl_Egl_CreateContext_System_IntPtr_System_IntPtr_System_IntPtr_System_Int32___ - name: CreateContext - nameWithType: Egl.CreateContext - fullName: OpenTK.Graphics.Egl.Egl.CreateContext -- uid: OpenTK.Graphics.Egl.Egl.DestroyContext* - commentId: Overload:OpenTK.Graphics.Egl.Egl.DestroyContext - isExternal: true - href: OpenTK.Graphics.Egl.Egl.html#OpenTK_Graphics_Egl_Egl_DestroyContext_System_IntPtr_System_IntPtr_ - name: DestroyContext - nameWithType: Egl.DestroyContext - fullName: OpenTK.Graphics.Egl.Egl.DestroyContext -- uid: OpenTK.Graphics.Egl.Egl.MakeCurrent* - commentId: Overload:OpenTK.Graphics.Egl.Egl.MakeCurrent - isExternal: true - href: OpenTK.Graphics.Egl.Egl.html#OpenTK_Graphics_Egl_Egl_MakeCurrent_System_IntPtr_System_IntPtr_System_IntPtr_System_IntPtr_ - name: MakeCurrent - nameWithType: Egl.MakeCurrent - fullName: OpenTK.Graphics.Egl.Egl.MakeCurrent -- uid: OpenTK.Graphics.Egl.Egl.GetCurrentContext* - commentId: Overload:OpenTK.Graphics.Egl.Egl.GetCurrentContext - isExternal: true - href: OpenTK.Graphics.Egl.Egl.html#OpenTK_Graphics_Egl_Egl_GetCurrentContext - name: GetCurrentContext - nameWithType: Egl.GetCurrentContext - fullName: OpenTK.Graphics.Egl.Egl.GetCurrentContext -- uid: OpenTK.Graphics.Egl.Egl.GetCurrentSurface* - commentId: Overload:OpenTK.Graphics.Egl.Egl.GetCurrentSurface - isExternal: true - href: OpenTK.Graphics.Egl.Egl.html#OpenTK_Graphics_Egl_Egl_GetCurrentSurface_System_Int32_ - name: GetCurrentSurface - nameWithType: Egl.GetCurrentSurface - fullName: OpenTK.Graphics.Egl.Egl.GetCurrentSurface -- uid: OpenTK.Graphics.Egl.Egl.GetCurrentDisplay* - commentId: Overload:OpenTK.Graphics.Egl.Egl.GetCurrentDisplay - isExternal: true - href: OpenTK.Graphics.Egl.Egl.html#OpenTK_Graphics_Egl_Egl_GetCurrentDisplay - name: GetCurrentDisplay - nameWithType: Egl.GetCurrentDisplay - fullName: OpenTK.Graphics.Egl.Egl.GetCurrentDisplay -- uid: OpenTK.Graphics.Egl.Egl.QueryContext* - commentId: Overload:OpenTK.Graphics.Egl.Egl.QueryContext - isExternal: true - href: OpenTK.Graphics.Egl.Egl.html#OpenTK_Graphics_Egl_Egl_QueryContext_System_IntPtr_System_IntPtr_System_Int32_System_Int32__ - name: QueryContext - nameWithType: Egl.QueryContext - fullName: OpenTK.Graphics.Egl.Egl.QueryContext -- uid: OpenTK.Graphics.Egl.Egl.WaitGL* - commentId: Overload:OpenTK.Graphics.Egl.Egl.WaitGL - isExternal: true - href: OpenTK.Graphics.Egl.Egl.html#OpenTK_Graphics_Egl_Egl_WaitGL - name: WaitGL - nameWithType: Egl.WaitGL - fullName: OpenTK.Graphics.Egl.Egl.WaitGL -- uid: OpenTK.Graphics.Egl.Egl.WaitNative* - commentId: Overload:OpenTK.Graphics.Egl.Egl.WaitNative - isExternal: true - href: OpenTK.Graphics.Egl.Egl.html#OpenTK_Graphics_Egl_Egl_WaitNative_System_Int32_ - name: WaitNative - nameWithType: Egl.WaitNative - fullName: OpenTK.Graphics.Egl.Egl.WaitNative -- uid: OpenTK.Graphics.Egl.Egl.SwapBuffers* - commentId: Overload:OpenTK.Graphics.Egl.Egl.SwapBuffers - isExternal: true - href: OpenTK.Graphics.Egl.Egl.html#OpenTK_Graphics_Egl_Egl_SwapBuffers_System_IntPtr_System_IntPtr_ - name: SwapBuffers - nameWithType: Egl.SwapBuffers - fullName: OpenTK.Graphics.Egl.Egl.SwapBuffers -- uid: OpenTK.Graphics.Egl.Egl.CopyBuffers* - commentId: Overload:OpenTK.Graphics.Egl.Egl.CopyBuffers - isExternal: true - href: OpenTK.Graphics.Egl.Egl.html#OpenTK_Graphics_Egl_Egl_CopyBuffers_System_IntPtr_System_IntPtr_System_IntPtr_ - name: CopyBuffers - nameWithType: Egl.CopyBuffers - fullName: OpenTK.Graphics.Egl.Egl.CopyBuffers -- uid: OpenTK.Graphics.Egl.Egl.GetProcAddress* - commentId: Overload:OpenTK.Graphics.Egl.Egl.GetProcAddress - isExternal: true - href: OpenTK.Graphics.Egl.Egl.html#OpenTK_Graphics_Egl_Egl_GetProcAddress_System_String_ - name: GetProcAddress - nameWithType: Egl.GetProcAddress - fullName: OpenTK.Graphics.Egl.Egl.GetProcAddress -- uid: System.String - commentId: T:System.String - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - name: string - nameWithType: string - fullName: string - nameWithType.vb: String - fullName.vb: String - name.vb: String -- uid: OpenTK.Graphics.Egl.Egl.GetPlatformDisplayEXT* - commentId: Overload:OpenTK.Graphics.Egl.Egl.GetPlatformDisplayEXT - isExternal: true - href: OpenTK.Graphics.Egl.Egl.html#OpenTK_Graphics_Egl_Egl_GetPlatformDisplayEXT_System_Int32_System_IntPtr_System_Int32___ - name: GetPlatformDisplayEXT - nameWithType: Egl.GetPlatformDisplayEXT - fullName: OpenTK.Graphics.Egl.Egl.GetPlatformDisplayEXT -- uid: OpenTK.Graphics.Egl.Egl.CreatePlatformWindowSurfaceEXT* - commentId: Overload:OpenTK.Graphics.Egl.Egl.CreatePlatformWindowSurfaceEXT - isExternal: true - href: OpenTK.Graphics.Egl.Egl.html#OpenTK_Graphics_Egl_Egl_CreatePlatformWindowSurfaceEXT_System_IntPtr_System_IntPtr_System_IntPtr_System_Int32___ - name: CreatePlatformWindowSurfaceEXT - nameWithType: Egl.CreatePlatformWindowSurfaceEXT - fullName: OpenTK.Graphics.Egl.Egl.CreatePlatformWindowSurfaceEXT -- uid: OpenTK.Graphics.Egl.Egl.CreatePlatformPixmapSurfaceEXT* - commentId: Overload:OpenTK.Graphics.Egl.Egl.CreatePlatformPixmapSurfaceEXT - isExternal: true - href: OpenTK.Graphics.Egl.Egl.html#OpenTK_Graphics_Egl_Egl_CreatePlatformPixmapSurfaceEXT_System_IntPtr_System_IntPtr_System_IntPtr_System_Int32___ - name: CreatePlatformPixmapSurfaceEXT - nameWithType: Egl.CreatePlatformPixmapSurfaceEXT - fullName: OpenTK.Graphics.Egl.Egl.CreatePlatformPixmapSurfaceEXT -- uid: OpenTK.Graphics.Egl.Egl.IsSupported* - commentId: Overload:OpenTK.Graphics.Egl.Egl.IsSupported - href: OpenTK.Graphics.Egl.Egl.html#OpenTK_Graphics_Egl_Egl_IsSupported - name: IsSupported - nameWithType: Egl.IsSupported - fullName: OpenTK.Graphics.Egl.Egl.IsSupported diff --git a/api/OpenTK.Graphics.Egl.EglException.yml b/api/OpenTK.Graphics.Egl.EglException.yml deleted file mode 100644 index 16309fb6..00000000 --- a/api/OpenTK.Graphics.Egl.EglException.yml +++ /dev/null @@ -1,533 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: OpenTK.Graphics.Egl.EglException - commentId: T:OpenTK.Graphics.Egl.EglException - id: EglException - parent: OpenTK.Graphics.Egl - children: - - OpenTK.Graphics.Egl.EglException.#ctor - - OpenTK.Graphics.Egl.EglException.#ctor(System.String) - langs: - - csharp - - vb - name: EglException - nameWithType: EglException - fullName: OpenTK.Graphics.Egl.EglException - type: Class - source: - id: EglException - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 91 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: 'public class EglException : Exception, ISerializable' - content.vb: Public Class EglException Inherits Exception Implements ISerializable - inheritance: - - System.Object - - System.Exception - implements: - - System.Runtime.Serialization.ISerializable - inheritedMembers: - - System.Exception.GetBaseException - - System.Exception.GetType - - System.Exception.ToString - - System.Exception.Data - - System.Exception.HelpLink - - System.Exception.HResult - - System.Exception.InnerException - - System.Exception.Message - - System.Exception.Source - - System.Exception.StackTrace - - System.Exception.TargetSite - - System.Exception.SerializeObjectState - - System.Object.Equals(System.Object) - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetHashCode - - System.Object.MemberwiseClone - - System.Object.ReferenceEquals(System.Object,System.Object) -- uid: OpenTK.Graphics.Egl.EglException.#ctor - commentId: M:OpenTK.Graphics.Egl.EglException.#ctor - id: '#ctor' - parent: OpenTK.Graphics.Egl.EglException - langs: - - csharp - - vb - name: EglException() - nameWithType: EglException.EglException() - fullName: OpenTK.Graphics.Egl.EglException.EglException() - type: Constructor - source: - id: .ctor - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 93 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public EglException() - content.vb: Public Sub New() - overload: OpenTK.Graphics.Egl.EglException.#ctor* - nameWithType.vb: EglException.New() - fullName.vb: OpenTK.Graphics.Egl.EglException.New() - name.vb: New() -- uid: OpenTK.Graphics.Egl.EglException.#ctor(System.String) - commentId: M:OpenTK.Graphics.Egl.EglException.#ctor(System.String) - id: '#ctor(System.String)' - parent: OpenTK.Graphics.Egl.EglException - langs: - - csharp - - vb - name: EglException(string) - nameWithType: EglException.EglException(string) - fullName: OpenTK.Graphics.Egl.EglException.EglException(string) - type: Constructor - source: - id: .ctor - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 96 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public EglException(string message) - parameters: - - id: message - type: System.String - content.vb: Public Sub New(message As String) - overload: OpenTK.Graphics.Egl.EglException.#ctor* - nameWithType.vb: EglException.New(String) - fullName.vb: OpenTK.Graphics.Egl.EglException.New(String) - name.vb: New(String) -references: -- uid: OpenTK.Graphics.Egl - commentId: N:OpenTK.Graphics.Egl - href: OpenTK.html - name: OpenTK.Graphics.Egl - nameWithType: OpenTK.Graphics.Egl - fullName: OpenTK.Graphics.Egl - spec.csharp: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Egl - name: Egl - href: OpenTK.Graphics.Egl.html - spec.vb: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Egl - name: Egl - href: OpenTK.Graphics.Egl.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: System.Exception - commentId: T:System.Exception - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.exception - name: Exception - nameWithType: Exception - fullName: System.Exception -- uid: System.Runtime.Serialization.ISerializable - commentId: T:System.Runtime.Serialization.ISerializable - parent: System.Runtime.Serialization - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.runtime.serialization.iserializable - name: ISerializable - nameWithType: ISerializable - fullName: System.Runtime.Serialization.ISerializable -- uid: System.Exception.GetBaseException - commentId: M:System.Exception.GetBaseException - parent: System.Exception - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.exception.getbaseexception - name: GetBaseException() - nameWithType: Exception.GetBaseException() - fullName: System.Exception.GetBaseException() - spec.csharp: - - uid: System.Exception.GetBaseException - name: GetBaseException - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.exception.getbaseexception - - name: ( - - name: ) - spec.vb: - - uid: System.Exception.GetBaseException - name: GetBaseException - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.exception.getbaseexception - - name: ( - - name: ) -- uid: System.Exception.GetType - commentId: M:System.Exception.GetType - parent: System.Exception - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.exception.gettype - name: GetType() - nameWithType: Exception.GetType() - fullName: System.Exception.GetType() - spec.csharp: - - uid: System.Exception.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.exception.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Exception.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.exception.gettype - - name: ( - - name: ) -- uid: System.Exception.ToString - commentId: M:System.Exception.ToString - parent: System.Exception - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.exception.tostring - name: ToString() - nameWithType: Exception.ToString() - fullName: System.Exception.ToString() - spec.csharp: - - uid: System.Exception.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.exception.tostring - - name: ( - - name: ) - spec.vb: - - uid: System.Exception.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.exception.tostring - - name: ( - - name: ) -- uid: System.Exception.Data - commentId: P:System.Exception.Data - parent: System.Exception - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.exception.data - name: Data - nameWithType: Exception.Data - fullName: System.Exception.Data -- uid: System.Exception.HelpLink - commentId: P:System.Exception.HelpLink - parent: System.Exception - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.exception.helplink - name: HelpLink - nameWithType: Exception.HelpLink - fullName: System.Exception.HelpLink -- uid: System.Exception.HResult - commentId: P:System.Exception.HResult - parent: System.Exception - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.exception.hresult - name: HResult - nameWithType: Exception.HResult - fullName: System.Exception.HResult -- uid: System.Exception.InnerException - commentId: P:System.Exception.InnerException - parent: System.Exception - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.exception.innerexception - name: InnerException - nameWithType: Exception.InnerException - fullName: System.Exception.InnerException -- uid: System.Exception.Message - commentId: P:System.Exception.Message - parent: System.Exception - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.exception.message - name: Message - nameWithType: Exception.Message - fullName: System.Exception.Message -- uid: System.Exception.Source - commentId: P:System.Exception.Source - parent: System.Exception - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.exception.source - name: Source - nameWithType: Exception.Source - fullName: System.Exception.Source -- uid: System.Exception.StackTrace - commentId: P:System.Exception.StackTrace - parent: System.Exception - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.exception.stacktrace - name: StackTrace - nameWithType: Exception.StackTrace - fullName: System.Exception.StackTrace -- uid: System.Exception.TargetSite - commentId: P:System.Exception.TargetSite - parent: System.Exception - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.exception.targetsite - name: TargetSite - nameWithType: Exception.TargetSite - fullName: System.Exception.TargetSite -- uid: System.Exception.SerializeObjectState - commentId: E:System.Exception.SerializeObjectState - parent: System.Exception - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.exception.serializeobjectstate - name: SerializeObjectState - nameWithType: Exception.SerializeObjectState - fullName: System.Exception.SerializeObjectState -- uid: System.Object.Equals(System.Object) - commentId: M:System.Object.Equals(System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - name: Equals(object) - nameWithType: object.Equals(object) - fullName: object.Equals(object) - nameWithType.vb: Object.Equals(Object) - fullName.vb: Object.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetHashCode - commentId: M:System.Object.GetHashCode - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - name: GetHashCode() - nameWithType: object.GetHashCode() - fullName: object.GetHashCode() - nameWithType.vb: Object.GetHashCode() - fullName.vb: Object.GetHashCode() - spec.csharp: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) -- uid: System.Object.MemberwiseClone - commentId: M:System.Object.MemberwiseClone - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - name: MemberwiseClone() - nameWithType: object.MemberwiseClone() - fullName: object.MemberwiseClone() - nameWithType.vb: Object.MemberwiseClone() - fullName.vb: Object.MemberwiseClone() - spec.csharp: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) - spec.vb: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: System.Runtime.Serialization - commentId: N:System.Runtime.Serialization - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System.Runtime.Serialization - nameWithType: System.Runtime.Serialization - fullName: System.Runtime.Serialization - spec.csharp: - - uid: System - name: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - - name: . - - uid: System.Runtime - name: Runtime - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.runtime - - name: . - - uid: System.Runtime.Serialization - name: Serialization - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.runtime.serialization - spec.vb: - - uid: System - name: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - - name: . - - uid: System.Runtime - name: Runtime - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.runtime - - name: . - - uid: System.Runtime.Serialization - name: Serialization - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.runtime.serialization -- uid: OpenTK.Graphics.Egl.EglException.#ctor* - commentId: Overload:OpenTK.Graphics.Egl.EglException.#ctor - href: OpenTK.Graphics.Egl.EglException.html#OpenTK_Graphics_Egl_EglException__ctor - name: EglException - nameWithType: EglException.EglException - fullName: OpenTK.Graphics.Egl.EglException.EglException - nameWithType.vb: EglException.New - fullName.vb: OpenTK.Graphics.Egl.EglException.New - name.vb: New -- uid: System.String - commentId: T:System.String - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - name: string - nameWithType: string - fullName: string - nameWithType.vb: String - fullName.vb: String - name.vb: String diff --git a/api/OpenTK.Graphics.Egl.ErrorCode.yml b/api/OpenTK.Graphics.Egl.ErrorCode.yml deleted file mode 100644 index 21a638d0..00000000 --- a/api/OpenTK.Graphics.Egl.ErrorCode.yml +++ /dev/null @@ -1,407 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: OpenTK.Graphics.Egl.ErrorCode - commentId: T:OpenTK.Graphics.Egl.ErrorCode - id: ErrorCode - parent: OpenTK.Graphics.Egl - children: - - OpenTK.Graphics.Egl.ErrorCode.BAD_ACCESS - - OpenTK.Graphics.Egl.ErrorCode.BAD_ALLOC - - OpenTK.Graphics.Egl.ErrorCode.BAD_ATTRIBUTE - - OpenTK.Graphics.Egl.ErrorCode.BAD_CONFIG - - OpenTK.Graphics.Egl.ErrorCode.BAD_CONTEXT - - OpenTK.Graphics.Egl.ErrorCode.BAD_CURRENT_SURFACE - - OpenTK.Graphics.Egl.ErrorCode.BAD_DISPLAY - - OpenTK.Graphics.Egl.ErrorCode.BAD_MATCH - - OpenTK.Graphics.Egl.ErrorCode.BAD_NATIVE_PIXMAP - - OpenTK.Graphics.Egl.ErrorCode.BAD_NATIVE_WINDOW - - OpenTK.Graphics.Egl.ErrorCode.BAD_PARAMETER - - OpenTK.Graphics.Egl.ErrorCode.BAD_SURFACE - - OpenTK.Graphics.Egl.ErrorCode.CONTEXT_LOST - - OpenTK.Graphics.Egl.ErrorCode.NOT_INITIALIZED - - OpenTK.Graphics.Egl.ErrorCode.SUCCESS - langs: - - csharp - - vb - name: ErrorCode - nameWithType: ErrorCode - fullName: OpenTK.Graphics.Egl.ErrorCode - type: Enum - source: - id: ErrorCode - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 61 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public enum ErrorCode - content.vb: Public Enum ErrorCode -- uid: OpenTK.Graphics.Egl.ErrorCode.SUCCESS - commentId: F:OpenTK.Graphics.Egl.ErrorCode.SUCCESS - id: SUCCESS - parent: OpenTK.Graphics.Egl.ErrorCode - langs: - - csharp - - vb - name: SUCCESS - nameWithType: ErrorCode.SUCCESS - fullName: OpenTK.Graphics.Egl.ErrorCode.SUCCESS - type: Field - source: - id: SUCCESS - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 63 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: SUCCESS = 12288 - return: - type: OpenTK.Graphics.Egl.ErrorCode -- uid: OpenTK.Graphics.Egl.ErrorCode.NOT_INITIALIZED - commentId: F:OpenTK.Graphics.Egl.ErrorCode.NOT_INITIALIZED - id: NOT_INITIALIZED - parent: OpenTK.Graphics.Egl.ErrorCode - langs: - - csharp - - vb - name: NOT_INITIALIZED - nameWithType: ErrorCode.NOT_INITIALIZED - fullName: OpenTK.Graphics.Egl.ErrorCode.NOT_INITIALIZED - type: Field - source: - id: NOT_INITIALIZED - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 64 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: NOT_INITIALIZED = 12289 - return: - type: OpenTK.Graphics.Egl.ErrorCode -- uid: OpenTK.Graphics.Egl.ErrorCode.BAD_ACCESS - commentId: F:OpenTK.Graphics.Egl.ErrorCode.BAD_ACCESS - id: BAD_ACCESS - parent: OpenTK.Graphics.Egl.ErrorCode - langs: - - csharp - - vb - name: BAD_ACCESS - nameWithType: ErrorCode.BAD_ACCESS - fullName: OpenTK.Graphics.Egl.ErrorCode.BAD_ACCESS - type: Field - source: - id: BAD_ACCESS - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 65 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: BAD_ACCESS = 12290 - return: - type: OpenTK.Graphics.Egl.ErrorCode -- uid: OpenTK.Graphics.Egl.ErrorCode.BAD_ALLOC - commentId: F:OpenTK.Graphics.Egl.ErrorCode.BAD_ALLOC - id: BAD_ALLOC - parent: OpenTK.Graphics.Egl.ErrorCode - langs: - - csharp - - vb - name: BAD_ALLOC - nameWithType: ErrorCode.BAD_ALLOC - fullName: OpenTK.Graphics.Egl.ErrorCode.BAD_ALLOC - type: Field - source: - id: BAD_ALLOC - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 66 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: BAD_ALLOC = 12291 - return: - type: OpenTK.Graphics.Egl.ErrorCode -- uid: OpenTK.Graphics.Egl.ErrorCode.BAD_ATTRIBUTE - commentId: F:OpenTK.Graphics.Egl.ErrorCode.BAD_ATTRIBUTE - id: BAD_ATTRIBUTE - parent: OpenTK.Graphics.Egl.ErrorCode - langs: - - csharp - - vb - name: BAD_ATTRIBUTE - nameWithType: ErrorCode.BAD_ATTRIBUTE - fullName: OpenTK.Graphics.Egl.ErrorCode.BAD_ATTRIBUTE - type: Field - source: - id: BAD_ATTRIBUTE - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 67 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: BAD_ATTRIBUTE = 12292 - return: - type: OpenTK.Graphics.Egl.ErrorCode -- uid: OpenTK.Graphics.Egl.ErrorCode.BAD_CONFIG - commentId: F:OpenTK.Graphics.Egl.ErrorCode.BAD_CONFIG - id: BAD_CONFIG - parent: OpenTK.Graphics.Egl.ErrorCode - langs: - - csharp - - vb - name: BAD_CONFIG - nameWithType: ErrorCode.BAD_CONFIG - fullName: OpenTK.Graphics.Egl.ErrorCode.BAD_CONFIG - type: Field - source: - id: BAD_CONFIG - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 68 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: BAD_CONFIG = 12293 - return: - type: OpenTK.Graphics.Egl.ErrorCode -- uid: OpenTK.Graphics.Egl.ErrorCode.BAD_CONTEXT - commentId: F:OpenTK.Graphics.Egl.ErrorCode.BAD_CONTEXT - id: BAD_CONTEXT - parent: OpenTK.Graphics.Egl.ErrorCode - langs: - - csharp - - vb - name: BAD_CONTEXT - nameWithType: ErrorCode.BAD_CONTEXT - fullName: OpenTK.Graphics.Egl.ErrorCode.BAD_CONTEXT - type: Field - source: - id: BAD_CONTEXT - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 69 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: BAD_CONTEXT = 12294 - return: - type: OpenTK.Graphics.Egl.ErrorCode -- uid: OpenTK.Graphics.Egl.ErrorCode.BAD_CURRENT_SURFACE - commentId: F:OpenTK.Graphics.Egl.ErrorCode.BAD_CURRENT_SURFACE - id: BAD_CURRENT_SURFACE - parent: OpenTK.Graphics.Egl.ErrorCode - langs: - - csharp - - vb - name: BAD_CURRENT_SURFACE - nameWithType: ErrorCode.BAD_CURRENT_SURFACE - fullName: OpenTK.Graphics.Egl.ErrorCode.BAD_CURRENT_SURFACE - type: Field - source: - id: BAD_CURRENT_SURFACE - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 70 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: BAD_CURRENT_SURFACE = 12295 - return: - type: OpenTK.Graphics.Egl.ErrorCode -- uid: OpenTK.Graphics.Egl.ErrorCode.BAD_DISPLAY - commentId: F:OpenTK.Graphics.Egl.ErrorCode.BAD_DISPLAY - id: BAD_DISPLAY - parent: OpenTK.Graphics.Egl.ErrorCode - langs: - - csharp - - vb - name: BAD_DISPLAY - nameWithType: ErrorCode.BAD_DISPLAY - fullName: OpenTK.Graphics.Egl.ErrorCode.BAD_DISPLAY - type: Field - source: - id: BAD_DISPLAY - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 71 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: BAD_DISPLAY = 12296 - return: - type: OpenTK.Graphics.Egl.ErrorCode -- uid: OpenTK.Graphics.Egl.ErrorCode.BAD_MATCH - commentId: F:OpenTK.Graphics.Egl.ErrorCode.BAD_MATCH - id: BAD_MATCH - parent: OpenTK.Graphics.Egl.ErrorCode - langs: - - csharp - - vb - name: BAD_MATCH - nameWithType: ErrorCode.BAD_MATCH - fullName: OpenTK.Graphics.Egl.ErrorCode.BAD_MATCH - type: Field - source: - id: BAD_MATCH - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 72 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: BAD_MATCH = 12297 - return: - type: OpenTK.Graphics.Egl.ErrorCode -- uid: OpenTK.Graphics.Egl.ErrorCode.BAD_NATIVE_PIXMAP - commentId: F:OpenTK.Graphics.Egl.ErrorCode.BAD_NATIVE_PIXMAP - id: BAD_NATIVE_PIXMAP - parent: OpenTK.Graphics.Egl.ErrorCode - langs: - - csharp - - vb - name: BAD_NATIVE_PIXMAP - nameWithType: ErrorCode.BAD_NATIVE_PIXMAP - fullName: OpenTK.Graphics.Egl.ErrorCode.BAD_NATIVE_PIXMAP - type: Field - source: - id: BAD_NATIVE_PIXMAP - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 73 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: BAD_NATIVE_PIXMAP = 12298 - return: - type: OpenTK.Graphics.Egl.ErrorCode -- uid: OpenTK.Graphics.Egl.ErrorCode.BAD_NATIVE_WINDOW - commentId: F:OpenTK.Graphics.Egl.ErrorCode.BAD_NATIVE_WINDOW - id: BAD_NATIVE_WINDOW - parent: OpenTK.Graphics.Egl.ErrorCode - langs: - - csharp - - vb - name: BAD_NATIVE_WINDOW - nameWithType: ErrorCode.BAD_NATIVE_WINDOW - fullName: OpenTK.Graphics.Egl.ErrorCode.BAD_NATIVE_WINDOW - type: Field - source: - id: BAD_NATIVE_WINDOW - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 74 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: BAD_NATIVE_WINDOW = 12299 - return: - type: OpenTK.Graphics.Egl.ErrorCode -- uid: OpenTK.Graphics.Egl.ErrorCode.BAD_PARAMETER - commentId: F:OpenTK.Graphics.Egl.ErrorCode.BAD_PARAMETER - id: BAD_PARAMETER - parent: OpenTK.Graphics.Egl.ErrorCode - langs: - - csharp - - vb - name: BAD_PARAMETER - nameWithType: ErrorCode.BAD_PARAMETER - fullName: OpenTK.Graphics.Egl.ErrorCode.BAD_PARAMETER - type: Field - source: - id: BAD_PARAMETER - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 75 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: BAD_PARAMETER = 12300 - return: - type: OpenTK.Graphics.Egl.ErrorCode -- uid: OpenTK.Graphics.Egl.ErrorCode.BAD_SURFACE - commentId: F:OpenTK.Graphics.Egl.ErrorCode.BAD_SURFACE - id: BAD_SURFACE - parent: OpenTK.Graphics.Egl.ErrorCode - langs: - - csharp - - vb - name: BAD_SURFACE - nameWithType: ErrorCode.BAD_SURFACE - fullName: OpenTK.Graphics.Egl.ErrorCode.BAD_SURFACE - type: Field - source: - id: BAD_SURFACE - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 76 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: BAD_SURFACE = 12301 - return: - type: OpenTK.Graphics.Egl.ErrorCode -- uid: OpenTK.Graphics.Egl.ErrorCode.CONTEXT_LOST - commentId: F:OpenTK.Graphics.Egl.ErrorCode.CONTEXT_LOST - id: CONTEXT_LOST - parent: OpenTK.Graphics.Egl.ErrorCode - langs: - - csharp - - vb - name: CONTEXT_LOST - nameWithType: ErrorCode.CONTEXT_LOST - fullName: OpenTK.Graphics.Egl.ErrorCode.CONTEXT_LOST - type: Field - source: - id: CONTEXT_LOST - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 77 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: CONTEXT_LOST = 12302 - return: - type: OpenTK.Graphics.Egl.ErrorCode -references: -- uid: OpenTK.Graphics.Egl - commentId: N:OpenTK.Graphics.Egl - href: OpenTK.html - name: OpenTK.Graphics.Egl - nameWithType: OpenTK.Graphics.Egl - fullName: OpenTK.Graphics.Egl - spec.csharp: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Egl - name: Egl - href: OpenTK.Graphics.Egl.html - spec.vb: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Egl - name: Egl - href: OpenTK.Graphics.Egl.html -- uid: OpenTK.Graphics.Egl.ErrorCode - commentId: T:OpenTK.Graphics.Egl.ErrorCode - parent: OpenTK.Graphics.Egl - href: OpenTK.Graphics.Egl.ErrorCode.html - name: ErrorCode - nameWithType: ErrorCode - fullName: OpenTK.Graphics.Egl.ErrorCode diff --git a/api/OpenTK.Graphics.Egl.RenderApi.yml b/api/OpenTK.Graphics.Egl.RenderApi.yml deleted file mode 100644 index e885deb6..00000000 --- a/api/OpenTK.Graphics.Egl.RenderApi.yml +++ /dev/null @@ -1,131 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: OpenTK.Graphics.Egl.RenderApi - commentId: T:OpenTK.Graphics.Egl.RenderApi - id: RenderApi - parent: OpenTK.Graphics.Egl - children: - - OpenTK.Graphics.Egl.RenderApi.ES - - OpenTK.Graphics.Egl.RenderApi.GL - - OpenTK.Graphics.Egl.RenderApi.VG - langs: - - csharp - - vb - name: RenderApi - nameWithType: RenderApi - fullName: OpenTK.Graphics.Egl.RenderApi - type: Enum - source: - id: RenderApi - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 44 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public enum RenderApi - content.vb: Public Enum RenderApi -- uid: OpenTK.Graphics.Egl.RenderApi.ES - commentId: F:OpenTK.Graphics.Egl.RenderApi.ES - id: ES - parent: OpenTK.Graphics.Egl.RenderApi - langs: - - csharp - - vb - name: ES - nameWithType: RenderApi.ES - fullName: OpenTK.Graphics.Egl.RenderApi.ES - type: Field - source: - id: ES - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 46 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: ES = 12448 - return: - type: OpenTK.Graphics.Egl.RenderApi -- uid: OpenTK.Graphics.Egl.RenderApi.GL - commentId: F:OpenTK.Graphics.Egl.RenderApi.GL - id: GL - parent: OpenTK.Graphics.Egl.RenderApi - langs: - - csharp - - vb - name: GL - nameWithType: RenderApi.GL - fullName: OpenTK.Graphics.Egl.RenderApi.GL - type: Field - source: - id: GL - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 47 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: GL = 12450 - return: - type: OpenTK.Graphics.Egl.RenderApi -- uid: OpenTK.Graphics.Egl.RenderApi.VG - commentId: F:OpenTK.Graphics.Egl.RenderApi.VG - id: VG - parent: OpenTK.Graphics.Egl.RenderApi - langs: - - csharp - - vb - name: VG - nameWithType: RenderApi.VG - fullName: OpenTK.Graphics.Egl.RenderApi.VG - type: Field - source: - id: VG - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 48 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: VG = 12449 - return: - type: OpenTK.Graphics.Egl.RenderApi -references: -- uid: OpenTK.Graphics.Egl - commentId: N:OpenTK.Graphics.Egl - href: OpenTK.html - name: OpenTK.Graphics.Egl - nameWithType: OpenTK.Graphics.Egl - fullName: OpenTK.Graphics.Egl - spec.csharp: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Egl - name: Egl - href: OpenTK.Graphics.Egl.html - spec.vb: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Egl - name: Egl - href: OpenTK.Graphics.Egl.html -- uid: OpenTK.Graphics.Egl.RenderApi - commentId: T:OpenTK.Graphics.Egl.RenderApi - parent: OpenTK.Graphics.Egl - href: OpenTK.Graphics.Egl.RenderApi.html - name: RenderApi - nameWithType: RenderApi - fullName: OpenTK.Graphics.Egl.RenderApi diff --git a/api/OpenTK.Graphics.Egl.RenderableFlags.yml b/api/OpenTK.Graphics.Egl.RenderableFlags.yml deleted file mode 100644 index 65b1d2b8..00000000 --- a/api/OpenTK.Graphics.Egl.RenderableFlags.yml +++ /dev/null @@ -1,187 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: OpenTK.Graphics.Egl.RenderableFlags - commentId: T:OpenTK.Graphics.Egl.RenderableFlags - id: RenderableFlags - parent: OpenTK.Graphics.Egl - children: - - OpenTK.Graphics.Egl.RenderableFlags.ES - - OpenTK.Graphics.Egl.RenderableFlags.ES2 - - OpenTK.Graphics.Egl.RenderableFlags.ES3 - - OpenTK.Graphics.Egl.RenderableFlags.GL - - OpenTK.Graphics.Egl.RenderableFlags.VG - langs: - - csharp - - vb - name: RenderableFlags - nameWithType: RenderableFlags - fullName: OpenTK.Graphics.Egl.RenderableFlags - type: Enum - source: - id: RenderableFlags - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 51 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: >- - [Flags] - - public enum RenderableFlags - content.vb: >- - - - Public Enum RenderableFlags - attributes: - - type: System.FlagsAttribute - ctor: System.FlagsAttribute.#ctor - arguments: [] -- uid: OpenTK.Graphics.Egl.RenderableFlags.ES - commentId: F:OpenTK.Graphics.Egl.RenderableFlags.ES - id: ES - parent: OpenTK.Graphics.Egl.RenderableFlags - langs: - - csharp - - vb - name: ES - nameWithType: RenderableFlags.ES - fullName: OpenTK.Graphics.Egl.RenderableFlags.ES - type: Field - source: - id: ES - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 54 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: ES = 1 - return: - type: OpenTK.Graphics.Egl.RenderableFlags -- uid: OpenTK.Graphics.Egl.RenderableFlags.ES2 - commentId: F:OpenTK.Graphics.Egl.RenderableFlags.ES2 - id: ES2 - parent: OpenTK.Graphics.Egl.RenderableFlags - langs: - - csharp - - vb - name: ES2 - nameWithType: RenderableFlags.ES2 - fullName: OpenTK.Graphics.Egl.RenderableFlags.ES2 - type: Field - source: - id: ES2 - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 55 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: ES2 = 4 - return: - type: OpenTK.Graphics.Egl.RenderableFlags -- uid: OpenTK.Graphics.Egl.RenderableFlags.ES3 - commentId: F:OpenTK.Graphics.Egl.RenderableFlags.ES3 - id: ES3 - parent: OpenTK.Graphics.Egl.RenderableFlags - langs: - - csharp - - vb - name: ES3 - nameWithType: RenderableFlags.ES3 - fullName: OpenTK.Graphics.Egl.RenderableFlags.ES3 - type: Field - source: - id: ES3 - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 56 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: ES3 = 64 - return: - type: OpenTK.Graphics.Egl.RenderableFlags -- uid: OpenTK.Graphics.Egl.RenderableFlags.GL - commentId: F:OpenTK.Graphics.Egl.RenderableFlags.GL - id: GL - parent: OpenTK.Graphics.Egl.RenderableFlags - langs: - - csharp - - vb - name: GL - nameWithType: RenderableFlags.GL - fullName: OpenTK.Graphics.Egl.RenderableFlags.GL - type: Field - source: - id: GL - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 57 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: GL = 8 - return: - type: OpenTK.Graphics.Egl.RenderableFlags -- uid: OpenTK.Graphics.Egl.RenderableFlags.VG - commentId: F:OpenTK.Graphics.Egl.RenderableFlags.VG - id: VG - parent: OpenTK.Graphics.Egl.RenderableFlags - langs: - - csharp - - vb - name: VG - nameWithType: RenderableFlags.VG - fullName: OpenTK.Graphics.Egl.RenderableFlags.VG - type: Field - source: - id: VG - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 58 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: VG = 2 - return: - type: OpenTK.Graphics.Egl.RenderableFlags -references: -- uid: OpenTK.Graphics.Egl - commentId: N:OpenTK.Graphics.Egl - href: OpenTK.html - name: OpenTK.Graphics.Egl - nameWithType: OpenTK.Graphics.Egl - fullName: OpenTK.Graphics.Egl - spec.csharp: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Egl - name: Egl - href: OpenTK.Graphics.Egl.html - spec.vb: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Egl - name: Egl - href: OpenTK.Graphics.Egl.html -- uid: OpenTK.Graphics.Egl.RenderableFlags - commentId: T:OpenTK.Graphics.Egl.RenderableFlags - parent: OpenTK.Graphics.Egl - href: OpenTK.Graphics.Egl.RenderableFlags.html - name: RenderableFlags - nameWithType: RenderableFlags - fullName: OpenTK.Graphics.Egl.RenderableFlags diff --git a/api/OpenTK.Graphics.Egl.SurfaceType.yml b/api/OpenTK.Graphics.Egl.SurfaceType.yml deleted file mode 100644 index 01f8d4c1..00000000 --- a/api/OpenTK.Graphics.Egl.SurfaceType.yml +++ /dev/null @@ -1,223 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: OpenTK.Graphics.Egl.SurfaceType - commentId: T:OpenTK.Graphics.Egl.SurfaceType - id: SurfaceType - parent: OpenTK.Graphics.Egl - children: - - OpenTK.Graphics.Egl.SurfaceType.MULTISAMPLE_RESOLVE_BOX_BIT - - OpenTK.Graphics.Egl.SurfaceType.PBUFFER_BIT - - OpenTK.Graphics.Egl.SurfaceType.PIXMAP_BIT - - OpenTK.Graphics.Egl.SurfaceType.SWAP_BEHAVIOR_PRESERVED_BIT - - OpenTK.Graphics.Egl.SurfaceType.VG_ALPHA_FORMAT_PRE_BIT - - OpenTK.Graphics.Egl.SurfaceType.VG_COLORSPACE_LINEAR_BIT - - OpenTK.Graphics.Egl.SurfaceType.WINDOW_BIT - langs: - - csharp - - vb - name: SurfaceType - nameWithType: SurfaceType - fullName: OpenTK.Graphics.Egl.SurfaceType - type: Enum - source: - id: SurfaceType - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 80 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: public enum SurfaceType - content.vb: Public Enum SurfaceType -- uid: OpenTK.Graphics.Egl.SurfaceType.PBUFFER_BIT - commentId: F:OpenTK.Graphics.Egl.SurfaceType.PBUFFER_BIT - id: PBUFFER_BIT - parent: OpenTK.Graphics.Egl.SurfaceType - langs: - - csharp - - vb - name: PBUFFER_BIT - nameWithType: SurfaceType.PBUFFER_BIT - fullName: OpenTK.Graphics.Egl.SurfaceType.PBUFFER_BIT - type: Field - source: - id: PBUFFER_BIT - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 82 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: PBUFFER_BIT = 1 - return: - type: OpenTK.Graphics.Egl.SurfaceType -- uid: OpenTK.Graphics.Egl.SurfaceType.PIXMAP_BIT - commentId: F:OpenTK.Graphics.Egl.SurfaceType.PIXMAP_BIT - id: PIXMAP_BIT - parent: OpenTK.Graphics.Egl.SurfaceType - langs: - - csharp - - vb - name: PIXMAP_BIT - nameWithType: SurfaceType.PIXMAP_BIT - fullName: OpenTK.Graphics.Egl.SurfaceType.PIXMAP_BIT - type: Field - source: - id: PIXMAP_BIT - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 83 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: PIXMAP_BIT = 2 - return: - type: OpenTK.Graphics.Egl.SurfaceType -- uid: OpenTK.Graphics.Egl.SurfaceType.WINDOW_BIT - commentId: F:OpenTK.Graphics.Egl.SurfaceType.WINDOW_BIT - id: WINDOW_BIT - parent: OpenTK.Graphics.Egl.SurfaceType - langs: - - csharp - - vb - name: WINDOW_BIT - nameWithType: SurfaceType.WINDOW_BIT - fullName: OpenTK.Graphics.Egl.SurfaceType.WINDOW_BIT - type: Field - source: - id: WINDOW_BIT - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 84 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: WINDOW_BIT = 4 - return: - type: OpenTK.Graphics.Egl.SurfaceType -- uid: OpenTK.Graphics.Egl.SurfaceType.VG_COLORSPACE_LINEAR_BIT - commentId: F:OpenTK.Graphics.Egl.SurfaceType.VG_COLORSPACE_LINEAR_BIT - id: VG_COLORSPACE_LINEAR_BIT - parent: OpenTK.Graphics.Egl.SurfaceType - langs: - - csharp - - vb - name: VG_COLORSPACE_LINEAR_BIT - nameWithType: SurfaceType.VG_COLORSPACE_LINEAR_BIT - fullName: OpenTK.Graphics.Egl.SurfaceType.VG_COLORSPACE_LINEAR_BIT - type: Field - source: - id: VG_COLORSPACE_LINEAR_BIT - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 85 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: VG_COLORSPACE_LINEAR_BIT = 32 - return: - type: OpenTK.Graphics.Egl.SurfaceType -- uid: OpenTK.Graphics.Egl.SurfaceType.VG_ALPHA_FORMAT_PRE_BIT - commentId: F:OpenTK.Graphics.Egl.SurfaceType.VG_ALPHA_FORMAT_PRE_BIT - id: VG_ALPHA_FORMAT_PRE_BIT - parent: OpenTK.Graphics.Egl.SurfaceType - langs: - - csharp - - vb - name: VG_ALPHA_FORMAT_PRE_BIT - nameWithType: SurfaceType.VG_ALPHA_FORMAT_PRE_BIT - fullName: OpenTK.Graphics.Egl.SurfaceType.VG_ALPHA_FORMAT_PRE_BIT - type: Field - source: - id: VG_ALPHA_FORMAT_PRE_BIT - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 86 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: VG_ALPHA_FORMAT_PRE_BIT = 64 - return: - type: OpenTK.Graphics.Egl.SurfaceType -- uid: OpenTK.Graphics.Egl.SurfaceType.MULTISAMPLE_RESOLVE_BOX_BIT - commentId: F:OpenTK.Graphics.Egl.SurfaceType.MULTISAMPLE_RESOLVE_BOX_BIT - id: MULTISAMPLE_RESOLVE_BOX_BIT - parent: OpenTK.Graphics.Egl.SurfaceType - langs: - - csharp - - vb - name: MULTISAMPLE_RESOLVE_BOX_BIT - nameWithType: SurfaceType.MULTISAMPLE_RESOLVE_BOX_BIT - fullName: OpenTK.Graphics.Egl.SurfaceType.MULTISAMPLE_RESOLVE_BOX_BIT - type: Field - source: - id: MULTISAMPLE_RESOLVE_BOX_BIT - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 87 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: MULTISAMPLE_RESOLVE_BOX_BIT = 512 - return: - type: OpenTK.Graphics.Egl.SurfaceType -- uid: OpenTK.Graphics.Egl.SurfaceType.SWAP_BEHAVIOR_PRESERVED_BIT - commentId: F:OpenTK.Graphics.Egl.SurfaceType.SWAP_BEHAVIOR_PRESERVED_BIT - id: SWAP_BEHAVIOR_PRESERVED_BIT - parent: OpenTK.Graphics.Egl.SurfaceType - langs: - - csharp - - vb - name: SWAP_BEHAVIOR_PRESERVED_BIT - nameWithType: SurfaceType.SWAP_BEHAVIOR_PRESERVED_BIT - fullName: OpenTK.Graphics.Egl.SurfaceType.SWAP_BEHAVIOR_PRESERVED_BIT - type: Field - source: - id: SWAP_BEHAVIOR_PRESERVED_BIT - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Egl\Egl.cs - startLine: 88 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Egl - syntax: - content: SWAP_BEHAVIOR_PRESERVED_BIT = 1024 - return: - type: OpenTK.Graphics.Egl.SurfaceType -references: -- uid: OpenTK.Graphics.Egl - commentId: N:OpenTK.Graphics.Egl - href: OpenTK.html - name: OpenTK.Graphics.Egl - nameWithType: OpenTK.Graphics.Egl - fullName: OpenTK.Graphics.Egl - spec.csharp: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Egl - name: Egl - href: OpenTK.Graphics.Egl.html - spec.vb: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Egl - name: Egl - href: OpenTK.Graphics.Egl.html -- uid: OpenTK.Graphics.Egl.SurfaceType - commentId: T:OpenTK.Graphics.Egl.SurfaceType - parent: OpenTK.Graphics.Egl - href: OpenTK.Graphics.Egl.SurfaceType.html - name: SurfaceType - nameWithType: SurfaceType - fullName: OpenTK.Graphics.Egl.SurfaceType diff --git a/api/OpenTK.Graphics.Egl.yml b/api/OpenTK.Graphics.Egl.yml deleted file mode 100644 index 864895d5..00000000 --- a/api/OpenTK.Graphics.Egl.yml +++ /dev/null @@ -1,92 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: OpenTK.Graphics.Egl - commentId: N:OpenTK.Graphics.Egl - id: OpenTK.Graphics.Egl - children: - - OpenTK.Graphics.Egl.Egl - - OpenTK.Graphics.Egl.EglException - - OpenTK.Graphics.Egl.ErrorCode - - OpenTK.Graphics.Egl.RenderApi - - OpenTK.Graphics.Egl.RenderableFlags - - OpenTK.Graphics.Egl.SurfaceType - langs: - - csharp - - vb - name: OpenTK.Graphics.Egl - nameWithType: OpenTK.Graphics.Egl - fullName: OpenTK.Graphics.Egl - type: Namespace - assemblies: - - OpenTK.Graphics -references: -- uid: OpenTK.Graphics.Egl.RenderApi - commentId: T:OpenTK.Graphics.Egl.RenderApi - parent: OpenTK.Graphics.Egl - href: OpenTK.Graphics.Egl.RenderApi.html - name: RenderApi - nameWithType: RenderApi - fullName: OpenTK.Graphics.Egl.RenderApi -- uid: OpenTK.Graphics.Egl.RenderableFlags - commentId: T:OpenTK.Graphics.Egl.RenderableFlags - parent: OpenTK.Graphics.Egl - href: OpenTK.Graphics.Egl.RenderableFlags.html - name: RenderableFlags - nameWithType: RenderableFlags - fullName: OpenTK.Graphics.Egl.RenderableFlags -- uid: OpenTK.Graphics.Egl.ErrorCode - commentId: T:OpenTK.Graphics.Egl.ErrorCode - parent: OpenTK.Graphics.Egl - href: OpenTK.Graphics.Egl.ErrorCode.html - name: ErrorCode - nameWithType: ErrorCode - fullName: OpenTK.Graphics.Egl.ErrorCode -- uid: OpenTK.Graphics.Egl.SurfaceType - commentId: T:OpenTK.Graphics.Egl.SurfaceType - parent: OpenTK.Graphics.Egl - href: OpenTK.Graphics.Egl.SurfaceType.html - name: SurfaceType - nameWithType: SurfaceType - fullName: OpenTK.Graphics.Egl.SurfaceType -- uid: OpenTK.Graphics.Egl.EglException - commentId: T:OpenTK.Graphics.Egl.EglException - href: OpenTK.Graphics.Egl.EglException.html - name: EglException - nameWithType: EglException - fullName: OpenTK.Graphics.Egl.EglException -- uid: OpenTK.Graphics.Egl.Egl - commentId: T:OpenTK.Graphics.Egl.Egl - href: OpenTK.Graphics.Egl.Egl.html - name: Egl - nameWithType: Egl - fullName: OpenTK.Graphics.Egl.Egl -- uid: OpenTK.Graphics.Egl - commentId: N:OpenTK.Graphics.Egl - href: OpenTK.html - name: OpenTK.Graphics.Egl - nameWithType: OpenTK.Graphics.Egl - fullName: OpenTK.Graphics.Egl - spec.csharp: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Egl - name: Egl - href: OpenTK.Graphics.Egl.html - spec.vb: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Egl - name: Egl - href: OpenTK.Graphics.Egl.html diff --git a/api/OpenTK.Graphics.FramebufferHandle.yml b/api/OpenTK.Graphics.FramebufferHandle.yml index e27af4bc..230dcc91 100644 --- a/api/OpenTK.Graphics.FramebufferHandle.yml +++ b/api/OpenTK.Graphics.FramebufferHandle.yml @@ -25,7 +25,7 @@ items: source: id: FramebufferHandle path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 1043 + startLine: 1337 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -53,7 +53,7 @@ items: source: id: Zero path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 1045 + startLine: 1339 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -76,7 +76,7 @@ items: source: id: Handle path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 1047 + startLine: 1341 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -99,7 +99,7 @@ items: source: id: .ctor path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 1049 + startLine: 1343 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -127,7 +127,7 @@ items: source: id: Equals path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 1054 + startLine: 1348 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -162,7 +162,7 @@ items: source: id: Equals path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 1059 + startLine: 1353 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -195,7 +195,7 @@ items: source: id: GetHashCode path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 1064 + startLine: 1358 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -223,7 +223,7 @@ items: source: id: op_Equality path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 1069 + startLine: 1363 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -255,7 +255,7 @@ items: source: id: op_Inequality path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 1074 + startLine: 1368 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -287,7 +287,7 @@ items: source: id: op_Explicit path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 1079 + startLine: 1373 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -317,7 +317,7 @@ items: source: id: op_Explicit path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 1080 + startLine: 1374 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics diff --git a/api/OpenTK.Graphics.GLHandleARB.yml b/api/OpenTK.Graphics.GLHandleARB.yml index 731bbbb2..633729c9 100644 --- a/api/OpenTK.Graphics.GLHandleARB.yml +++ b/api/OpenTK.Graphics.GLHandleARB.yml @@ -26,7 +26,7 @@ items: source: id: GLHandleARB path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 754 + startLine: 1048 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -54,7 +54,7 @@ items: source: id: .ctor path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 760 + startLine: 1054 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -82,7 +82,7 @@ items: source: id: .ctor path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 766 + startLine: 1060 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -110,7 +110,7 @@ items: source: id: Equals path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 772 + startLine: 1066 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -145,7 +145,7 @@ items: source: id: Equals path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 777 + startLine: 1071 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -178,7 +178,7 @@ items: source: id: GetHashCode path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 782 + startLine: 1076 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -206,7 +206,7 @@ items: source: id: op_Equality path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 787 + startLine: 1081 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -238,7 +238,7 @@ items: source: id: op_Inequality path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 792 + startLine: 1086 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -270,7 +270,7 @@ items: source: id: op_Explicit path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 797 + startLine: 1091 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -300,7 +300,7 @@ items: source: id: op_Explicit path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 798 + startLine: 1092 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -330,7 +330,7 @@ items: source: id: op_Explicit path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 799 + startLine: 1093 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -360,7 +360,7 @@ items: source: id: op_Explicit path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 800 + startLine: 1094 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics diff --git a/api/OpenTK.Graphics.GLSync.yml b/api/OpenTK.Graphics.GLSync.yml index a0c4932c..46f4e11c 100644 --- a/api/OpenTK.Graphics.GLSync.yml +++ b/api/OpenTK.Graphics.GLSync.yml @@ -24,7 +24,7 @@ items: source: id: GLSync path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 716 + startLine: 1010 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -52,7 +52,7 @@ items: source: id: Value path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 718 + startLine: 1012 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -75,7 +75,7 @@ items: source: id: .ctor path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 720 + startLine: 1014 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -103,7 +103,7 @@ items: source: id: Equals path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 725 + startLine: 1019 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -138,7 +138,7 @@ items: source: id: Equals path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 730 + startLine: 1024 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -171,7 +171,7 @@ items: source: id: GetHashCode path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 735 + startLine: 1029 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -199,7 +199,7 @@ items: source: id: op_Equality path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 740 + startLine: 1034 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -231,7 +231,7 @@ items: source: id: op_Inequality path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 745 + startLine: 1039 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -263,7 +263,7 @@ items: source: id: op_Explicit path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 750 + startLine: 1044 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -293,7 +293,7 @@ items: source: id: op_Explicit path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 751 + startLine: 1045 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics diff --git a/api/OpenTK.Graphics.GLXLoader.BindingsContext.yml b/api/OpenTK.Graphics.GLXLoader.BindingsContext.yml index 4a1dccb1..656d682e 100644 --- a/api/OpenTK.Graphics.GLXLoader.BindingsContext.yml +++ b/api/OpenTK.Graphics.GLXLoader.BindingsContext.yml @@ -16,7 +16,7 @@ items: source: id: BindingsContext path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLXLoader.cs - startLine: 13 + startLine: 12 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -47,7 +47,7 @@ items: source: id: GetProcAddress path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLXLoader.cs - startLine: 15 + startLine: 14 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics diff --git a/api/OpenTK.Graphics.GLXLoader.yml b/api/OpenTK.Graphics.GLXLoader.yml index c58073c7..10f6c0a9 100644 --- a/api/OpenTK.Graphics.GLXLoader.yml +++ b/api/OpenTK.Graphics.GLXLoader.yml @@ -15,7 +15,7 @@ items: source: id: GLXLoader path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLXLoader.cs - startLine: 11 + startLine: 10 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics diff --git a/api/OpenTK.Graphics.Glx.All.yml b/api/OpenTK.Graphics.Glx.All.yml deleted file mode 100644 index bf267aae..00000000 --- a/api/OpenTK.Graphics.Glx.All.yml +++ /dev/null @@ -1,6801 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: OpenTK.Graphics.Glx.All - commentId: T:OpenTK.Graphics.Glx.All - id: All - parent: OpenTK.Graphics.Glx - children: - - OpenTK.Graphics.Glx.All.AccumAlphaSize - - OpenTK.Graphics.Glx.All.AccumBlueSize - - OpenTK.Graphics.Glx.All.AccumBufferBit - - OpenTK.Graphics.Glx.All.AccumBufferBitSgix - - OpenTK.Graphics.Glx.All.AccumGreenSize - - OpenTK.Graphics.Glx.All.AccumRedSize - - OpenTK.Graphics.Glx.All.AlphaSize - - OpenTK.Graphics.Glx.All.Aux0Ext - - OpenTK.Graphics.Glx.All.Aux1Ext - - OpenTK.Graphics.Glx.All.Aux2Ext - - OpenTK.Graphics.Glx.All.Aux3Ext - - OpenTK.Graphics.Glx.All.Aux4Ext - - OpenTK.Graphics.Glx.All.Aux5Ext - - OpenTK.Graphics.Glx.All.Aux6Ext - - OpenTK.Graphics.Glx.All.Aux7Ext - - OpenTK.Graphics.Glx.All.Aux8Ext - - OpenTK.Graphics.Glx.All.Aux9Ext - - OpenTK.Graphics.Glx.All.AuxBuffers - - OpenTK.Graphics.Glx.All.AuxBuffersBit - - OpenTK.Graphics.Glx.All.AuxBuffersBitSgix - - OpenTK.Graphics.Glx.All.BackBufferAgeExt - - OpenTK.Graphics.Glx.All.BackExt - - OpenTK.Graphics.Glx.All.BackLeftBufferBit - - OpenTK.Graphics.Glx.All.BackLeftBufferBitSgix - - OpenTK.Graphics.Glx.All.BackLeftExt - - OpenTK.Graphics.Glx.All.BackRightBufferBit - - OpenTK.Graphics.Glx.All.BackRightBufferBitSgix - - OpenTK.Graphics.Glx.All.BackRightExt - - OpenTK.Graphics.Glx.All.BadAttribute - - OpenTK.Graphics.Glx.All.BadContext - - OpenTK.Graphics.Glx.All.BadEnum - - OpenTK.Graphics.Glx.All.BadHyperpipeConfigSgix - - OpenTK.Graphics.Glx.All.BadHyperpipeSgix - - OpenTK.Graphics.Glx.All.BadScreen - - OpenTK.Graphics.Glx.All.BadValue - - OpenTK.Graphics.Glx.All.BadVisual - - OpenTK.Graphics.Glx.All.BindToMipmapTextureExt - - OpenTK.Graphics.Glx.All.BindToTextureRgbExt - - OpenTK.Graphics.Glx.All.BindToTextureRgbaExt - - OpenTK.Graphics.Glx.All.BindToTextureTargetsExt - - OpenTK.Graphics.Glx.All.BlendedRgbaSgis - - OpenTK.Graphics.Glx.All.BlueSize - - OpenTK.Graphics.Glx.All.BufferClobberMaskSgix - - OpenTK.Graphics.Glx.All.BufferSize - - OpenTK.Graphics.Glx.All.BufferSwapCompleteIntelMask - - OpenTK.Graphics.Glx.All.Bufferswapcomplete - - OpenTK.Graphics.Glx.All.ColorIndexBit - - OpenTK.Graphics.Glx.All.ColorIndexBitSgix - - OpenTK.Graphics.Glx.All.ColorIndexType - - OpenTK.Graphics.Glx.All.ColorIndexTypeSgix - - OpenTK.Graphics.Glx.All.ColorSamplesNv - - OpenTK.Graphics.Glx.All.ConfigCaveat - - OpenTK.Graphics.Glx.All.ContextAllowBufferByteOrderMismatchArb - - OpenTK.Graphics.Glx.All.ContextCompatibilityProfileBitArb - - OpenTK.Graphics.Glx.All.ContextCoreProfileBitArb - - OpenTK.Graphics.Glx.All.ContextDebugBitArb - - OpenTK.Graphics.Glx.All.ContextEs2ProfileBitExt - - OpenTK.Graphics.Glx.All.ContextEsProfileBitExt - - OpenTK.Graphics.Glx.All.ContextFlagsArb - - OpenTK.Graphics.Glx.All.ContextForwardCompatibleBitArb - - OpenTK.Graphics.Glx.All.ContextMajorVersionArb - - OpenTK.Graphics.Glx.All.ContextMinorVersionArb - - OpenTK.Graphics.Glx.All.ContextMultigpuAttribAfrNv - - OpenTK.Graphics.Glx.All.ContextMultigpuAttribMultiDisplayMulticastNv - - OpenTK.Graphics.Glx.All.ContextMultigpuAttribMulticastNv - - OpenTK.Graphics.Glx.All.ContextMultigpuAttribNv - - OpenTK.Graphics.Glx.All.ContextMultigpuAttribSingleNv - - OpenTK.Graphics.Glx.All.ContextOpenglNoErrorArb - - OpenTK.Graphics.Glx.All.ContextPriorityHighExt - - OpenTK.Graphics.Glx.All.ContextPriorityLevelExt - - OpenTK.Graphics.Glx.All.ContextPriorityLowExt - - OpenTK.Graphics.Glx.All.ContextPriorityMediumExt - - OpenTK.Graphics.Glx.All.ContextProfileMaskArb - - OpenTK.Graphics.Glx.All.ContextReleaseBehaviorArb - - OpenTK.Graphics.Glx.All.ContextReleaseBehaviorFlushArb - - OpenTK.Graphics.Glx.All.ContextReleaseBehaviorNoneArb - - OpenTK.Graphics.Glx.All.ContextResetIsolationBitArb - - OpenTK.Graphics.Glx.All.ContextResetNotificationStrategyArb - - OpenTK.Graphics.Glx.All.ContextRobustAccessBitArb - - OpenTK.Graphics.Glx.All.CopyCompleteIntel - - OpenTK.Graphics.Glx.All.CoverageSamplesNv - - OpenTK.Graphics.Glx.All.Damaged - - OpenTK.Graphics.Glx.All.DamagedSgix - - OpenTK.Graphics.Glx.All.DepthBufferBit - - OpenTK.Graphics.Glx.All.DepthBufferBitSgix - - OpenTK.Graphics.Glx.All.DepthSize - - OpenTK.Graphics.Glx.All.DeviceIdNv - - OpenTK.Graphics.Glx.All.DigitalMediaPbufferSgix - - OpenTK.Graphics.Glx.All.DirectColor - - OpenTK.Graphics.Glx.All.DirectColorExt - - OpenTK.Graphics.Glx.All.DontCare - - OpenTK.Graphics.Glx.All.Doublebuffer - - OpenTK.Graphics.Glx.All.DrawableType - - OpenTK.Graphics.Glx.All.DrawableTypeSgix - - OpenTK.Graphics.Glx.All.EventMask - - OpenTK.Graphics.Glx.All.EventMaskSgix - - OpenTK.Graphics.Glx.All.ExchangeCompleteIntel - - OpenTK.Graphics.Glx.All.Extensions - - OpenTK.Graphics.Glx.All.FbconfigId - - OpenTK.Graphics.Glx.All.FbconfigIdSgix - - OpenTK.Graphics.Glx.All.FlipCompleteIntel - - OpenTK.Graphics.Glx.All.FloatComponentsNv - - OpenTK.Graphics.Glx.All.FramebufferSrgbCapableArb - - OpenTK.Graphics.Glx.All.FramebufferSrgbCapableExt - - OpenTK.Graphics.Glx.All.FrontExt - - OpenTK.Graphics.Glx.All.FrontLeftBufferBit - - OpenTK.Graphics.Glx.All.FrontLeftBufferBitSgix - - OpenTK.Graphics.Glx.All.FrontLeftExt - - OpenTK.Graphics.Glx.All.FrontRightBufferBit - - OpenTK.Graphics.Glx.All.FrontRightBufferBitSgix - - OpenTK.Graphics.Glx.All.FrontRightExt - - OpenTK.Graphics.Glx.All.GenerateResetOnVideoMemoryPurgeNv - - OpenTK.Graphics.Glx.All.GpuClockAmd - - OpenTK.Graphics.Glx.All.GpuFastestTargetGpusAmd - - OpenTK.Graphics.Glx.All.GpuNumPipesAmd - - OpenTK.Graphics.Glx.All.GpuNumRbAmd - - OpenTK.Graphics.Glx.All.GpuNumSimdAmd - - OpenTK.Graphics.Glx.All.GpuNumSpiAmd - - OpenTK.Graphics.Glx.All.GpuOpenglVersionStringAmd - - OpenTK.Graphics.Glx.All.GpuRamAmd - - OpenTK.Graphics.Glx.All.GpuRendererStringAmd - - OpenTK.Graphics.Glx.All.GpuVendorAmd - - OpenTK.Graphics.Glx.All.GrayScale - - OpenTK.Graphics.Glx.All.GrayScaleExt - - OpenTK.Graphics.Glx.All.GreenSize - - OpenTK.Graphics.Glx.All.Height - - OpenTK.Graphics.Glx.All.HeightSgix - - OpenTK.Graphics.Glx.All.HyperpipeDisplayPipeSgix - - OpenTK.Graphics.Glx.All.HyperpipeIdSgix - - OpenTK.Graphics.Glx.All.HyperpipePipeNameLengthSgix - - OpenTK.Graphics.Glx.All.HyperpipePixelAverageSgix - - OpenTK.Graphics.Glx.All.HyperpipeRenderPipeSgix - - OpenTK.Graphics.Glx.All.HyperpipeStereoSgix - - OpenTK.Graphics.Glx.All.LargestPbuffer - - OpenTK.Graphics.Glx.All.LargestPbufferSgix - - OpenTK.Graphics.Glx.All.LateSwapsTearExt - - OpenTK.Graphics.Glx.All.Level - - OpenTK.Graphics.Glx.All.LoseContextOnResetArb - - OpenTK.Graphics.Glx.All.MaxPbufferHeight - - OpenTK.Graphics.Glx.All.MaxPbufferHeightSgix - - OpenTK.Graphics.Glx.All.MaxPbufferPixels - - OpenTK.Graphics.Glx.All.MaxPbufferPixelsSgix - - OpenTK.Graphics.Glx.All.MaxPbufferWidth - - OpenTK.Graphics.Glx.All.MaxPbufferWidthSgix - - OpenTK.Graphics.Glx.All.MaxSwapIntervalExt - - OpenTK.Graphics.Glx.All.MipmapTextureExt - - OpenTK.Graphics.Glx.All.MultisampleSubRectHeightSgis - - OpenTK.Graphics.Glx.All.MultisampleSubRectWidthSgis - - OpenTK.Graphics.Glx.All.NoExtension - - OpenTK.Graphics.Glx.All.NoResetNotificationArb - - OpenTK.Graphics.Glx.All.NonConformantConfig - - OpenTK.Graphics.Glx.All.NonConformantVisualExt - - OpenTK.Graphics.Glx.All.None - - OpenTK.Graphics.Glx.All.NoneExt - - OpenTK.Graphics.Glx.All.NumVideoCaptureSlotsNv - - OpenTK.Graphics.Glx.All.NumVideoSlotsNv - - OpenTK.Graphics.Glx.All.NumberEvents - - OpenTK.Graphics.Glx.All.OptimalPbufferHeightSgix - - OpenTK.Graphics.Glx.All.OptimalPbufferWidthSgix - - OpenTK.Graphics.Glx.All.Pbuffer - - OpenTK.Graphics.Glx.All.PbufferBit - - OpenTK.Graphics.Glx.All.PbufferBitSgix - - OpenTK.Graphics.Glx.All.PbufferClobberMask - - OpenTK.Graphics.Glx.All.PbufferHeight - - OpenTK.Graphics.Glx.All.PbufferSgix - - OpenTK.Graphics.Glx.All.PbufferWidth - - OpenTK.Graphics.Glx.All.Pbufferclobber - - OpenTK.Graphics.Glx.All.PipeRectLimitsSgix - - OpenTK.Graphics.Glx.All.PipeRectSgix - - OpenTK.Graphics.Glx.All.PixmapBit - - OpenTK.Graphics.Glx.All.PixmapBitSgix - - OpenTK.Graphics.Glx.All.PreservedContents - - OpenTK.Graphics.Glx.All.PreservedContentsSgix - - OpenTK.Graphics.Glx.All.PseudoColor - - OpenTK.Graphics.Glx.All.PseudoColorExt - - OpenTK.Graphics.Glx.All.RedSize - - OpenTK.Graphics.Glx.All.RenderType - - OpenTK.Graphics.Glx.All.RenderTypeSgix - - OpenTK.Graphics.Glx.All.RendererAcceleratedMesa - - OpenTK.Graphics.Glx.All.RendererDeviceIdMesa - - OpenTK.Graphics.Glx.All.RendererOpenglCompatibilityProfileVersionMesa - - OpenTK.Graphics.Glx.All.RendererOpenglCoreProfileVersionMesa - - OpenTK.Graphics.Glx.All.RendererOpenglEs2ProfileVersionMesa - - OpenTK.Graphics.Glx.All.RendererOpenglEsProfileVersionMesa - - OpenTK.Graphics.Glx.All.RendererPreferredProfileMesa - - OpenTK.Graphics.Glx.All.RendererUnifiedMemoryArchitectureMesa - - OpenTK.Graphics.Glx.All.RendererVendorIdMesa - - OpenTK.Graphics.Glx.All.RendererVersionMesa - - OpenTK.Graphics.Glx.All.RendererVideoMemoryMesa - - OpenTK.Graphics.Glx.All.Rgba - - OpenTK.Graphics.Glx.All.RgbaBit - - OpenTK.Graphics.Glx.All.RgbaBitSgix - - OpenTK.Graphics.Glx.All.RgbaFloatBitArb - - OpenTK.Graphics.Glx.All.RgbaFloatTypeArb - - OpenTK.Graphics.Glx.All.RgbaType - - OpenTK.Graphics.Glx.All.RgbaTypeSgix - - OpenTK.Graphics.Glx.All.RgbaUnsignedFloatBitExt - - OpenTK.Graphics.Glx.All.RgbaUnsignedFloatTypeExt - - OpenTK.Graphics.Glx.All.SampleBuffers - - OpenTK.Graphics.Glx.All.SampleBuffers3dfx - - OpenTK.Graphics.Glx.All.SampleBuffersArb - - OpenTK.Graphics.Glx.All.SampleBuffersBitSgix - - OpenTK.Graphics.Glx.All.SampleBuffersSgis - - OpenTK.Graphics.Glx.All.Samples - - OpenTK.Graphics.Glx.All.Samples3dfx - - OpenTK.Graphics.Glx.All.SamplesArb - - OpenTK.Graphics.Glx.All.SamplesSgis - - OpenTK.Graphics.Glx.All.Saved - - OpenTK.Graphics.Glx.All.SavedSgix - - OpenTK.Graphics.Glx.All.Screen - - OpenTK.Graphics.Glx.All.ScreenExt - - OpenTK.Graphics.Glx.All.ShareContextExt - - OpenTK.Graphics.Glx.All.SlowConfig - - OpenTK.Graphics.Glx.All.SlowVisualExt - - OpenTK.Graphics.Glx.All.StaticColor - - OpenTK.Graphics.Glx.All.StaticColorExt - - OpenTK.Graphics.Glx.All.StaticGray - - OpenTK.Graphics.Glx.All.StaticGrayExt - - OpenTK.Graphics.Glx.All.StencilBufferBit - - OpenTK.Graphics.Glx.All.StencilBufferBitSgix - - OpenTK.Graphics.Glx.All.StencilSize - - OpenTK.Graphics.Glx.All.Stereo - - OpenTK.Graphics.Glx.All.StereoNotifyExt - - OpenTK.Graphics.Glx.All.StereoNotifyMaskExt - - OpenTK.Graphics.Glx.All.StereoTreeExt - - OpenTK.Graphics.Glx.All.SwapCopyOml - - OpenTK.Graphics.Glx.All.SwapExchangeOml - - OpenTK.Graphics.Glx.All.SwapIntervalExt - - OpenTK.Graphics.Glx.All.SwapMethodOml - - OpenTK.Graphics.Glx.All.SwapUndefinedOml - - OpenTK.Graphics.Glx.All.SyncFrameSgix - - OpenTK.Graphics.Glx.All.SyncSwapSgix - - OpenTK.Graphics.Glx.All.Texture1dBitExt - - OpenTK.Graphics.Glx.All.Texture1dExt - - OpenTK.Graphics.Glx.All.Texture2dBitExt - - OpenTK.Graphics.Glx.All.Texture2dExt - - OpenTK.Graphics.Glx.All.TextureFormatExt - - OpenTK.Graphics.Glx.All.TextureFormatNoneExt - - OpenTK.Graphics.Glx.All.TextureFormatRgbExt - - OpenTK.Graphics.Glx.All.TextureFormatRgbaExt - - OpenTK.Graphics.Glx.All.TextureRectangleBitExt - - OpenTK.Graphics.Glx.All.TextureRectangleExt - - OpenTK.Graphics.Glx.All.TextureTargetExt - - OpenTK.Graphics.Glx.All.TransparentAlphaValue - - OpenTK.Graphics.Glx.All.TransparentAlphaValueExt - - OpenTK.Graphics.Glx.All.TransparentBlueValue - - OpenTK.Graphics.Glx.All.TransparentBlueValueExt - - OpenTK.Graphics.Glx.All.TransparentGreenValue - - OpenTK.Graphics.Glx.All.TransparentGreenValueExt - - OpenTK.Graphics.Glx.All.TransparentIndex - - OpenTK.Graphics.Glx.All.TransparentIndexExt - - OpenTK.Graphics.Glx.All.TransparentIndexValue - - OpenTK.Graphics.Glx.All.TransparentIndexValueExt - - OpenTK.Graphics.Glx.All.TransparentRedValue - - OpenTK.Graphics.Glx.All.TransparentRedValueExt - - OpenTK.Graphics.Glx.All.TransparentRgb - - OpenTK.Graphics.Glx.All.TransparentRgbExt - - OpenTK.Graphics.Glx.All.TransparentType - - OpenTK.Graphics.Glx.All.TransparentTypeExt - - OpenTK.Graphics.Glx.All.TrueColor - - OpenTK.Graphics.Glx.All.TrueColorExt - - OpenTK.Graphics.Glx.All.UniqueIdNv - - OpenTK.Graphics.Glx.All.UseGl - - OpenTK.Graphics.Glx.All.Vendor - - OpenTK.Graphics.Glx.All.VendorNamesExt - - OpenTK.Graphics.Glx.All.Version - - OpenTK.Graphics.Glx.All.VideoOutAlphaNv - - OpenTK.Graphics.Glx.All.VideoOutColorAndAlphaNv - - OpenTK.Graphics.Glx.All.VideoOutColorAndDepthNv - - OpenTK.Graphics.Glx.All.VideoOutColorNv - - OpenTK.Graphics.Glx.All.VideoOutDepthNv - - OpenTK.Graphics.Glx.All.VideoOutField1Nv - - OpenTK.Graphics.Glx.All.VideoOutField2Nv - - OpenTK.Graphics.Glx.All.VideoOutFrameNv - - OpenTK.Graphics.Glx.All.VideoOutStackedFields12Nv - - OpenTK.Graphics.Glx.All.VideoOutStackedFields21Nv - - OpenTK.Graphics.Glx.All.VisualCaveatExt - - OpenTK.Graphics.Glx.All.VisualId - - OpenTK.Graphics.Glx.All.VisualIdExt - - OpenTK.Graphics.Glx.All.VisualSelectGroupSgix - - OpenTK.Graphics.Glx.All.Width - - OpenTK.Graphics.Glx.All.WidthSgix - - OpenTK.Graphics.Glx.All.Window - - OpenTK.Graphics.Glx.All.WindowBit - - OpenTK.Graphics.Glx.All.WindowBitSgix - - OpenTK.Graphics.Glx.All.WindowSgix - - OpenTK.Graphics.Glx.All.XRenderable - - OpenTK.Graphics.Glx.All.XRenderableSgix - - OpenTK.Graphics.Glx.All.XVisualType - - OpenTK.Graphics.Glx.All.XVisualTypeExt - - OpenTK.Graphics.Glx.All.YInvertedExt - - OpenTK.Graphics.Glx.All._3dfxFullscreenModeMesa - - OpenTK.Graphics.Glx.All._3dfxWindowModeMesa - langs: - - csharp - - vb - name: All - nameWithType: All - fullName: OpenTK.Graphics.Glx.All - type: Enum - source: - id: All - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 8 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: 'public enum All : uint' - content.vb: Public Enum All As UInteger -- uid: OpenTK.Graphics.Glx.All.ContextReleaseBehaviorNoneArb - commentId: F:OpenTK.Graphics.Glx.All.ContextReleaseBehaviorNoneArb - id: ContextReleaseBehaviorNoneArb - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: ContextReleaseBehaviorNoneArb - nameWithType: All.ContextReleaseBehaviorNoneArb - fullName: OpenTK.Graphics.Glx.All.ContextReleaseBehaviorNoneArb - type: Field - source: - id: ContextReleaseBehaviorNoneArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 10 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: ContextReleaseBehaviorNoneArb = 0 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.Pbufferclobber - commentId: F:OpenTK.Graphics.Glx.All.Pbufferclobber - id: Pbufferclobber - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: Pbufferclobber - nameWithType: All.Pbufferclobber - fullName: OpenTK.Graphics.Glx.All.Pbufferclobber - type: Field - source: - id: Pbufferclobber - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 11 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: Pbufferclobber = 0 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.StereoNotifyExt - commentId: F:OpenTK.Graphics.Glx.All.StereoNotifyExt - id: StereoNotifyExt - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: StereoNotifyExt - nameWithType: All.StereoNotifyExt - fullName: OpenTK.Graphics.Glx.All.StereoNotifyExt - type: Field - source: - id: StereoNotifyExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 12 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: StereoNotifyExt = 0 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.SyncFrameSgix - commentId: F:OpenTK.Graphics.Glx.All.SyncFrameSgix - id: SyncFrameSgix - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: SyncFrameSgix - nameWithType: All.SyncFrameSgix - fullName: OpenTK.Graphics.Glx.All.SyncFrameSgix - type: Field - source: - id: SyncFrameSgix - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 13 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: SyncFrameSgix = 0 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All._3dfxWindowModeMesa - commentId: F:OpenTK.Graphics.Glx.All._3dfxWindowModeMesa - id: _3dfxWindowModeMesa - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: _3dfxWindowModeMesa - nameWithType: All._3dfxWindowModeMesa - fullName: OpenTK.Graphics.Glx.All._3dfxWindowModeMesa - type: Field - source: - id: _3dfxWindowModeMesa - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 14 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: _3dfxWindowModeMesa = 1 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.BadScreen - commentId: F:OpenTK.Graphics.Glx.All.BadScreen - id: BadScreen - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: BadScreen - nameWithType: All.BadScreen - fullName: OpenTK.Graphics.Glx.All.BadScreen - type: Field - source: - id: BadScreen - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 15 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: BadScreen = 1 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.Bufferswapcomplete - commentId: F:OpenTK.Graphics.Glx.All.Bufferswapcomplete - id: Bufferswapcomplete - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: Bufferswapcomplete - nameWithType: All.Bufferswapcomplete - fullName: OpenTK.Graphics.Glx.All.Bufferswapcomplete - type: Field - source: - id: Bufferswapcomplete - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 16 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: Bufferswapcomplete = 1 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.ContextCoreProfileBitArb - commentId: F:OpenTK.Graphics.Glx.All.ContextCoreProfileBitArb - id: ContextCoreProfileBitArb - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: ContextCoreProfileBitArb - nameWithType: All.ContextCoreProfileBitArb - fullName: OpenTK.Graphics.Glx.All.ContextCoreProfileBitArb - type: Field - source: - id: ContextCoreProfileBitArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 17 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: ContextCoreProfileBitArb = 1 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.ContextDebugBitArb - commentId: F:OpenTK.Graphics.Glx.All.ContextDebugBitArb - id: ContextDebugBitArb - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: ContextDebugBitArb - nameWithType: All.ContextDebugBitArb - fullName: OpenTK.Graphics.Glx.All.ContextDebugBitArb - type: Field - source: - id: ContextDebugBitArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 18 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: ContextDebugBitArb = 1 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.FrontLeftBufferBit - commentId: F:OpenTK.Graphics.Glx.All.FrontLeftBufferBit - id: FrontLeftBufferBit - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: FrontLeftBufferBit - nameWithType: All.FrontLeftBufferBit - fullName: OpenTK.Graphics.Glx.All.FrontLeftBufferBit - type: Field - source: - id: FrontLeftBufferBit - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 19 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: FrontLeftBufferBit = 1 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.FrontLeftBufferBitSgix - commentId: F:OpenTK.Graphics.Glx.All.FrontLeftBufferBitSgix - id: FrontLeftBufferBitSgix - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: FrontLeftBufferBitSgix - nameWithType: All.FrontLeftBufferBitSgix - fullName: OpenTK.Graphics.Glx.All.FrontLeftBufferBitSgix - type: Field - source: - id: FrontLeftBufferBitSgix - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 20 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: FrontLeftBufferBitSgix = 1 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.HyperpipeDisplayPipeSgix - commentId: F:OpenTK.Graphics.Glx.All.HyperpipeDisplayPipeSgix - id: HyperpipeDisplayPipeSgix - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: HyperpipeDisplayPipeSgix - nameWithType: All.HyperpipeDisplayPipeSgix - fullName: OpenTK.Graphics.Glx.All.HyperpipeDisplayPipeSgix - type: Field - source: - id: HyperpipeDisplayPipeSgix - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 21 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: HyperpipeDisplayPipeSgix = 1 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.PipeRectSgix - commentId: F:OpenTK.Graphics.Glx.All.PipeRectSgix - id: PipeRectSgix - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: PipeRectSgix - nameWithType: All.PipeRectSgix - fullName: OpenTK.Graphics.Glx.All.PipeRectSgix - type: Field - source: - id: PipeRectSgix - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 22 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: PipeRectSgix = 1 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.RgbaBit - commentId: F:OpenTK.Graphics.Glx.All.RgbaBit - id: RgbaBit - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: RgbaBit - nameWithType: All.RgbaBit - fullName: OpenTK.Graphics.Glx.All.RgbaBit - type: Field - source: - id: RgbaBit - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 23 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: RgbaBit = 1 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.RgbaBitSgix - commentId: F:OpenTK.Graphics.Glx.All.RgbaBitSgix - id: RgbaBitSgix - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: RgbaBitSgix - nameWithType: All.RgbaBitSgix - fullName: OpenTK.Graphics.Glx.All.RgbaBitSgix - type: Field - source: - id: RgbaBitSgix - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 24 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: RgbaBitSgix = 1 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.StereoNotifyMaskExt - commentId: F:OpenTK.Graphics.Glx.All.StereoNotifyMaskExt - id: StereoNotifyMaskExt - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: StereoNotifyMaskExt - nameWithType: All.StereoNotifyMaskExt - fullName: OpenTK.Graphics.Glx.All.StereoNotifyMaskExt - type: Field - source: - id: StereoNotifyMaskExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 25 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: StereoNotifyMaskExt = 1 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.SyncSwapSgix - commentId: F:OpenTK.Graphics.Glx.All.SyncSwapSgix - id: SyncSwapSgix - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: SyncSwapSgix - nameWithType: All.SyncSwapSgix - fullName: OpenTK.Graphics.Glx.All.SyncSwapSgix - type: Field - source: - id: SyncSwapSgix - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 26 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: SyncSwapSgix = 1 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.Texture1dBitExt - commentId: F:OpenTK.Graphics.Glx.All.Texture1dBitExt - id: Texture1dBitExt - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: Texture1dBitExt - nameWithType: All.Texture1dBitExt - fullName: OpenTK.Graphics.Glx.All.Texture1dBitExt - type: Field - source: - id: Texture1dBitExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 27 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: Texture1dBitExt = 1 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.UseGl - commentId: F:OpenTK.Graphics.Glx.All.UseGl - id: UseGl - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: UseGl - nameWithType: All.UseGl - fullName: OpenTK.Graphics.Glx.All.UseGl - type: Field - source: - id: UseGl - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 28 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: UseGl = 1 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.Vendor - commentId: F:OpenTK.Graphics.Glx.All.Vendor - id: Vendor - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: Vendor - nameWithType: All.Vendor - fullName: OpenTK.Graphics.Glx.All.Vendor - type: Field - source: - id: Vendor - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 29 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: Vendor = 1 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.WindowBit - commentId: F:OpenTK.Graphics.Glx.All.WindowBit - id: WindowBit - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: WindowBit - nameWithType: All.WindowBit - fullName: OpenTK.Graphics.Glx.All.WindowBit - type: Field - source: - id: WindowBit - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 30 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: WindowBit = 1 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.WindowBitSgix - commentId: F:OpenTK.Graphics.Glx.All.WindowBitSgix - id: WindowBitSgix - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: WindowBitSgix - nameWithType: All.WindowBitSgix - fullName: OpenTK.Graphics.Glx.All.WindowBitSgix - type: Field - source: - id: WindowBitSgix - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 31 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: WindowBitSgix = 1 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All._3dfxFullscreenModeMesa - commentId: F:OpenTK.Graphics.Glx.All._3dfxFullscreenModeMesa - id: _3dfxFullscreenModeMesa - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: _3dfxFullscreenModeMesa - nameWithType: All._3dfxFullscreenModeMesa - fullName: OpenTK.Graphics.Glx.All._3dfxFullscreenModeMesa - type: Field - source: - id: _3dfxFullscreenModeMesa - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 32 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: _3dfxFullscreenModeMesa = 2 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.BadAttribute - commentId: F:OpenTK.Graphics.Glx.All.BadAttribute - id: BadAttribute - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: BadAttribute - nameWithType: All.BadAttribute - fullName: OpenTK.Graphics.Glx.All.BadAttribute - type: Field - source: - id: BadAttribute - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 33 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: BadAttribute = 2 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.BufferSize - commentId: F:OpenTK.Graphics.Glx.All.BufferSize - id: BufferSize - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: BufferSize - nameWithType: All.BufferSize - fullName: OpenTK.Graphics.Glx.All.BufferSize - type: Field - source: - id: BufferSize - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 34 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: BufferSize = 2 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.ColorIndexBit - commentId: F:OpenTK.Graphics.Glx.All.ColorIndexBit - id: ColorIndexBit - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: ColorIndexBit - nameWithType: All.ColorIndexBit - fullName: OpenTK.Graphics.Glx.All.ColorIndexBit - type: Field - source: - id: ColorIndexBit - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 35 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: ColorIndexBit = 2 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.ColorIndexBitSgix - commentId: F:OpenTK.Graphics.Glx.All.ColorIndexBitSgix - id: ColorIndexBitSgix - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: ColorIndexBitSgix - nameWithType: All.ColorIndexBitSgix - fullName: OpenTK.Graphics.Glx.All.ColorIndexBitSgix - type: Field - source: - id: ColorIndexBitSgix - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 36 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: ColorIndexBitSgix = 2 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.ContextCompatibilityProfileBitArb - commentId: F:OpenTK.Graphics.Glx.All.ContextCompatibilityProfileBitArb - id: ContextCompatibilityProfileBitArb - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: ContextCompatibilityProfileBitArb - nameWithType: All.ContextCompatibilityProfileBitArb - fullName: OpenTK.Graphics.Glx.All.ContextCompatibilityProfileBitArb - type: Field - source: - id: ContextCompatibilityProfileBitArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 37 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: ContextCompatibilityProfileBitArb = 2 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.ContextForwardCompatibleBitArb - commentId: F:OpenTK.Graphics.Glx.All.ContextForwardCompatibleBitArb - id: ContextForwardCompatibleBitArb - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: ContextForwardCompatibleBitArb - nameWithType: All.ContextForwardCompatibleBitArb - fullName: OpenTK.Graphics.Glx.All.ContextForwardCompatibleBitArb - type: Field - source: - id: ContextForwardCompatibleBitArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 38 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: ContextForwardCompatibleBitArb = 2 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.FrontRightBufferBit - commentId: F:OpenTK.Graphics.Glx.All.FrontRightBufferBit - id: FrontRightBufferBit - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: FrontRightBufferBit - nameWithType: All.FrontRightBufferBit - fullName: OpenTK.Graphics.Glx.All.FrontRightBufferBit - type: Field - source: - id: FrontRightBufferBit - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 39 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: FrontRightBufferBit = 2 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.FrontRightBufferBitSgix - commentId: F:OpenTK.Graphics.Glx.All.FrontRightBufferBitSgix - id: FrontRightBufferBitSgix - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: FrontRightBufferBitSgix - nameWithType: All.FrontRightBufferBitSgix - fullName: OpenTK.Graphics.Glx.All.FrontRightBufferBitSgix - type: Field - source: - id: FrontRightBufferBitSgix - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 40 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: FrontRightBufferBitSgix = 2 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.HyperpipeRenderPipeSgix - commentId: F:OpenTK.Graphics.Glx.All.HyperpipeRenderPipeSgix - id: HyperpipeRenderPipeSgix - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: HyperpipeRenderPipeSgix - nameWithType: All.HyperpipeRenderPipeSgix - fullName: OpenTK.Graphics.Glx.All.HyperpipeRenderPipeSgix - type: Field - source: - id: HyperpipeRenderPipeSgix - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 41 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: HyperpipeRenderPipeSgix = 2 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.PipeRectLimitsSgix - commentId: F:OpenTK.Graphics.Glx.All.PipeRectLimitsSgix - id: PipeRectLimitsSgix - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: PipeRectLimitsSgix - nameWithType: All.PipeRectLimitsSgix - fullName: OpenTK.Graphics.Glx.All.PipeRectLimitsSgix - type: Field - source: - id: PipeRectLimitsSgix - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 42 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: PipeRectLimitsSgix = 2 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.PixmapBit - commentId: F:OpenTK.Graphics.Glx.All.PixmapBit - id: PixmapBit - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: PixmapBit - nameWithType: All.PixmapBit - fullName: OpenTK.Graphics.Glx.All.PixmapBit - type: Field - source: - id: PixmapBit - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 43 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: PixmapBit = 2 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.PixmapBitSgix - commentId: F:OpenTK.Graphics.Glx.All.PixmapBitSgix - id: PixmapBitSgix - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: PixmapBitSgix - nameWithType: All.PixmapBitSgix - fullName: OpenTK.Graphics.Glx.All.PixmapBitSgix - type: Field - source: - id: PixmapBitSgix - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 44 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: PixmapBitSgix = 2 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.Texture2dBitExt - commentId: F:OpenTK.Graphics.Glx.All.Texture2dBitExt - id: Texture2dBitExt - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: Texture2dBitExt - nameWithType: All.Texture2dBitExt - fullName: OpenTK.Graphics.Glx.All.Texture2dBitExt - type: Field - source: - id: Texture2dBitExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 45 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: Texture2dBitExt = 2 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.Version - commentId: F:OpenTK.Graphics.Glx.All.Version - id: Version - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: Version - nameWithType: All.Version - fullName: OpenTK.Graphics.Glx.All.Version - type: Field - source: - id: Version - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 46 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: Version = 2 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.Extensions - commentId: F:OpenTK.Graphics.Glx.All.Extensions - id: Extensions - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: Extensions - nameWithType: All.Extensions - fullName: OpenTK.Graphics.Glx.All.Extensions - type: Field - source: - id: Extensions - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 47 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: Extensions = 3 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.HyperpipeStereoSgix - commentId: F:OpenTK.Graphics.Glx.All.HyperpipeStereoSgix - id: HyperpipeStereoSgix - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: HyperpipeStereoSgix - nameWithType: All.HyperpipeStereoSgix - fullName: OpenTK.Graphics.Glx.All.HyperpipeStereoSgix - type: Field - source: - id: HyperpipeStereoSgix - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 48 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: HyperpipeStereoSgix = 3 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.Level - commentId: F:OpenTK.Graphics.Glx.All.Level - id: Level - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: Level - nameWithType: All.Level - fullName: OpenTK.Graphics.Glx.All.Level - type: Field - source: - id: Level - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 49 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: Level = 3 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.NoExtension - commentId: F:OpenTK.Graphics.Glx.All.NoExtension - id: NoExtension - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: NoExtension - nameWithType: All.NoExtension - fullName: OpenTK.Graphics.Glx.All.NoExtension - type: Field - source: - id: NoExtension - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 50 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: NoExtension = 3 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.BackLeftBufferBit - commentId: F:OpenTK.Graphics.Glx.All.BackLeftBufferBit - id: BackLeftBufferBit - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: BackLeftBufferBit - nameWithType: All.BackLeftBufferBit - fullName: OpenTK.Graphics.Glx.All.BackLeftBufferBit - type: Field - source: - id: BackLeftBufferBit - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 51 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: BackLeftBufferBit = 4 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.BackLeftBufferBitSgix - commentId: F:OpenTK.Graphics.Glx.All.BackLeftBufferBitSgix - id: BackLeftBufferBitSgix - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: BackLeftBufferBitSgix - nameWithType: All.BackLeftBufferBitSgix - fullName: OpenTK.Graphics.Glx.All.BackLeftBufferBitSgix - type: Field - source: - id: BackLeftBufferBitSgix - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 52 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: BackLeftBufferBitSgix = 4 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.BadVisual - commentId: F:OpenTK.Graphics.Glx.All.BadVisual - id: BadVisual - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: BadVisual - nameWithType: All.BadVisual - fullName: OpenTK.Graphics.Glx.All.BadVisual - type: Field - source: - id: BadVisual - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 53 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: BadVisual = 4 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.ContextEs2ProfileBitExt - commentId: F:OpenTK.Graphics.Glx.All.ContextEs2ProfileBitExt - id: ContextEs2ProfileBitExt - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: ContextEs2ProfileBitExt - nameWithType: All.ContextEs2ProfileBitExt - fullName: OpenTK.Graphics.Glx.All.ContextEs2ProfileBitExt - type: Field - source: - id: ContextEs2ProfileBitExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 54 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: ContextEs2ProfileBitExt = 4 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.ContextEsProfileBitExt - commentId: F:OpenTK.Graphics.Glx.All.ContextEsProfileBitExt - id: ContextEsProfileBitExt - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: ContextEsProfileBitExt - nameWithType: All.ContextEsProfileBitExt - fullName: OpenTK.Graphics.Glx.All.ContextEsProfileBitExt - type: Field - source: - id: ContextEsProfileBitExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 55 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: ContextEsProfileBitExt = 4 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.ContextRobustAccessBitArb - commentId: F:OpenTK.Graphics.Glx.All.ContextRobustAccessBitArb - id: ContextRobustAccessBitArb - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: ContextRobustAccessBitArb - nameWithType: All.ContextRobustAccessBitArb - fullName: OpenTK.Graphics.Glx.All.ContextRobustAccessBitArb - type: Field - source: - id: ContextRobustAccessBitArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 56 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: ContextRobustAccessBitArb = 4 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.HyperpipePixelAverageSgix - commentId: F:OpenTK.Graphics.Glx.All.HyperpipePixelAverageSgix - id: HyperpipePixelAverageSgix - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: HyperpipePixelAverageSgix - nameWithType: All.HyperpipePixelAverageSgix - fullName: OpenTK.Graphics.Glx.All.HyperpipePixelAverageSgix - type: Field - source: - id: HyperpipePixelAverageSgix - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 57 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: HyperpipePixelAverageSgix = 4 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.PbufferBit - commentId: F:OpenTK.Graphics.Glx.All.PbufferBit - id: PbufferBit - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: PbufferBit - nameWithType: All.PbufferBit - fullName: OpenTK.Graphics.Glx.All.PbufferBit - type: Field - source: - id: PbufferBit - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 58 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: PbufferBit = 4 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.PbufferBitSgix - commentId: F:OpenTK.Graphics.Glx.All.PbufferBitSgix - id: PbufferBitSgix - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: PbufferBitSgix - nameWithType: All.PbufferBitSgix - fullName: OpenTK.Graphics.Glx.All.PbufferBitSgix - type: Field - source: - id: PbufferBitSgix - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 59 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: PbufferBitSgix = 4 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.Rgba - commentId: F:OpenTK.Graphics.Glx.All.Rgba - id: Rgba - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: Rgba - nameWithType: All.Rgba - fullName: OpenTK.Graphics.Glx.All.Rgba - type: Field - source: - id: Rgba - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 60 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: Rgba = 4 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.RgbaFloatBitArb - commentId: F:OpenTK.Graphics.Glx.All.RgbaFloatBitArb - id: RgbaFloatBitArb - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: RgbaFloatBitArb - nameWithType: All.RgbaFloatBitArb - fullName: OpenTK.Graphics.Glx.All.RgbaFloatBitArb - type: Field - source: - id: RgbaFloatBitArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 61 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: RgbaFloatBitArb = 4 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.TextureRectangleBitExt - commentId: F:OpenTK.Graphics.Glx.All.TextureRectangleBitExt - id: TextureRectangleBitExt - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: TextureRectangleBitExt - nameWithType: All.TextureRectangleBitExt - fullName: OpenTK.Graphics.Glx.All.TextureRectangleBitExt - type: Field - source: - id: TextureRectangleBitExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 62 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: TextureRectangleBitExt = 4 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.BadContext - commentId: F:OpenTK.Graphics.Glx.All.BadContext - id: BadContext - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: BadContext - nameWithType: All.BadContext - fullName: OpenTK.Graphics.Glx.All.BadContext - type: Field - source: - id: BadContext - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 63 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: BadContext = 5 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.Doublebuffer - commentId: F:OpenTK.Graphics.Glx.All.Doublebuffer - id: Doublebuffer - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: Doublebuffer - nameWithType: All.Doublebuffer - fullName: OpenTK.Graphics.Glx.All.Doublebuffer - type: Field - source: - id: Doublebuffer - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 64 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: Doublebuffer = 5 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.BadValue - commentId: F:OpenTK.Graphics.Glx.All.BadValue - id: BadValue - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: BadValue - nameWithType: All.BadValue - fullName: OpenTK.Graphics.Glx.All.BadValue - type: Field - source: - id: BadValue - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 65 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: BadValue = 6 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.Stereo - commentId: F:OpenTK.Graphics.Glx.All.Stereo - id: Stereo - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: Stereo - nameWithType: All.Stereo - fullName: OpenTK.Graphics.Glx.All.Stereo - type: Field - source: - id: Stereo - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 66 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: Stereo = 6 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.AuxBuffers - commentId: F:OpenTK.Graphics.Glx.All.AuxBuffers - id: AuxBuffers - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: AuxBuffers - nameWithType: All.AuxBuffers - fullName: OpenTK.Graphics.Glx.All.AuxBuffers - type: Field - source: - id: AuxBuffers - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 67 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: AuxBuffers = 7 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.BadEnum - commentId: F:OpenTK.Graphics.Glx.All.BadEnum - id: BadEnum - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: BadEnum - nameWithType: All.BadEnum - fullName: OpenTK.Graphics.Glx.All.BadEnum - type: Field - source: - id: BadEnum - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 68 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: BadEnum = 7 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.BackRightBufferBit - commentId: F:OpenTK.Graphics.Glx.All.BackRightBufferBit - id: BackRightBufferBit - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: BackRightBufferBit - nameWithType: All.BackRightBufferBit - fullName: OpenTK.Graphics.Glx.All.BackRightBufferBit - type: Field - source: - id: BackRightBufferBit - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 69 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: BackRightBufferBit = 8 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.BackRightBufferBitSgix - commentId: F:OpenTK.Graphics.Glx.All.BackRightBufferBitSgix - id: BackRightBufferBitSgix - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: BackRightBufferBitSgix - nameWithType: All.BackRightBufferBitSgix - fullName: OpenTK.Graphics.Glx.All.BackRightBufferBitSgix - type: Field - source: - id: BackRightBufferBitSgix - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 70 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: BackRightBufferBitSgix = 8 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.ContextResetIsolationBitArb - commentId: F:OpenTK.Graphics.Glx.All.ContextResetIsolationBitArb - id: ContextResetIsolationBitArb - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: ContextResetIsolationBitArb - nameWithType: All.ContextResetIsolationBitArb - fullName: OpenTK.Graphics.Glx.All.ContextResetIsolationBitArb - type: Field - source: - id: ContextResetIsolationBitArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 71 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: ContextResetIsolationBitArb = 8 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.RedSize - commentId: F:OpenTK.Graphics.Glx.All.RedSize - id: RedSize - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: RedSize - nameWithType: All.RedSize - fullName: OpenTK.Graphics.Glx.All.RedSize - type: Field - source: - id: RedSize - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 72 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: RedSize = 8 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.RgbaUnsignedFloatBitExt - commentId: F:OpenTK.Graphics.Glx.All.RgbaUnsignedFloatBitExt - id: RgbaUnsignedFloatBitExt - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: RgbaUnsignedFloatBitExt - nameWithType: All.RgbaUnsignedFloatBitExt - fullName: OpenTK.Graphics.Glx.All.RgbaUnsignedFloatBitExt - type: Field - source: - id: RgbaUnsignedFloatBitExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 73 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: RgbaUnsignedFloatBitExt = 8 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.GreenSize - commentId: F:OpenTK.Graphics.Glx.All.GreenSize - id: GreenSize - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: GreenSize - nameWithType: All.GreenSize - fullName: OpenTK.Graphics.Glx.All.GreenSize - type: Field - source: - id: GreenSize - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 74 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: GreenSize = 9 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.BlueSize - commentId: F:OpenTK.Graphics.Glx.All.BlueSize - id: BlueSize - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: BlueSize - nameWithType: All.BlueSize - fullName: OpenTK.Graphics.Glx.All.BlueSize - type: Field - source: - id: BlueSize - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 75 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: BlueSize = 10 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.AlphaSize - commentId: F:OpenTK.Graphics.Glx.All.AlphaSize - id: AlphaSize - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: AlphaSize - nameWithType: All.AlphaSize - fullName: OpenTK.Graphics.Glx.All.AlphaSize - type: Field - source: - id: AlphaSize - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 76 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: AlphaSize = 11 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.DepthSize - commentId: F:OpenTK.Graphics.Glx.All.DepthSize - id: DepthSize - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: DepthSize - nameWithType: All.DepthSize - fullName: OpenTK.Graphics.Glx.All.DepthSize - type: Field - source: - id: DepthSize - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 77 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: DepthSize = 12 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.StencilSize - commentId: F:OpenTK.Graphics.Glx.All.StencilSize - id: StencilSize - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: StencilSize - nameWithType: All.StencilSize - fullName: OpenTK.Graphics.Glx.All.StencilSize - type: Field - source: - id: StencilSize - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 78 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: StencilSize = 13 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.AccumRedSize - commentId: F:OpenTK.Graphics.Glx.All.AccumRedSize - id: AccumRedSize - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: AccumRedSize - nameWithType: All.AccumRedSize - fullName: OpenTK.Graphics.Glx.All.AccumRedSize - type: Field - source: - id: AccumRedSize - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 79 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: AccumRedSize = 14 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.AccumGreenSize - commentId: F:OpenTK.Graphics.Glx.All.AccumGreenSize - id: AccumGreenSize - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: AccumGreenSize - nameWithType: All.AccumGreenSize - fullName: OpenTK.Graphics.Glx.All.AccumGreenSize - type: Field - source: - id: AccumGreenSize - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 80 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: AccumGreenSize = 15 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.AccumBlueSize - commentId: F:OpenTK.Graphics.Glx.All.AccumBlueSize - id: AccumBlueSize - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: AccumBlueSize - nameWithType: All.AccumBlueSize - fullName: OpenTK.Graphics.Glx.All.AccumBlueSize - type: Field - source: - id: AccumBlueSize - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 81 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: AccumBlueSize = 16 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.AuxBuffersBit - commentId: F:OpenTK.Graphics.Glx.All.AuxBuffersBit - id: AuxBuffersBit - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: AuxBuffersBit - nameWithType: All.AuxBuffersBit - fullName: OpenTK.Graphics.Glx.All.AuxBuffersBit - type: Field - source: - id: AuxBuffersBit - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 82 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: AuxBuffersBit = 16 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.AuxBuffersBitSgix - commentId: F:OpenTK.Graphics.Glx.All.AuxBuffersBitSgix - id: AuxBuffersBitSgix - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: AuxBuffersBitSgix - nameWithType: All.AuxBuffersBitSgix - fullName: OpenTK.Graphics.Glx.All.AuxBuffersBitSgix - type: Field - source: - id: AuxBuffersBitSgix - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 83 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: AuxBuffersBitSgix = 16 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.AccumAlphaSize - commentId: F:OpenTK.Graphics.Glx.All.AccumAlphaSize - id: AccumAlphaSize - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: AccumAlphaSize - nameWithType: All.AccumAlphaSize - fullName: OpenTK.Graphics.Glx.All.AccumAlphaSize - type: Field - source: - id: AccumAlphaSize - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 84 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: AccumAlphaSize = 17 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.NumberEvents - commentId: F:OpenTK.Graphics.Glx.All.NumberEvents - id: NumberEvents - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: NumberEvents - nameWithType: All.NumberEvents - fullName: OpenTK.Graphics.Glx.All.NumberEvents - type: Field - source: - id: NumberEvents - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 85 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: NumberEvents = 17 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.ConfigCaveat - commentId: F:OpenTK.Graphics.Glx.All.ConfigCaveat - id: ConfigCaveat - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: ConfigCaveat - nameWithType: All.ConfigCaveat - fullName: OpenTK.Graphics.Glx.All.ConfigCaveat - type: Field - source: - id: ConfigCaveat - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 86 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: ConfigCaveat = 32 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.DepthBufferBit - commentId: F:OpenTK.Graphics.Glx.All.DepthBufferBit - id: DepthBufferBit - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: DepthBufferBit - nameWithType: All.DepthBufferBit - fullName: OpenTK.Graphics.Glx.All.DepthBufferBit - type: Field - source: - id: DepthBufferBit - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 87 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: DepthBufferBit = 32 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.DepthBufferBitSgix - commentId: F:OpenTK.Graphics.Glx.All.DepthBufferBitSgix - id: DepthBufferBitSgix - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: DepthBufferBitSgix - nameWithType: All.DepthBufferBitSgix - fullName: OpenTK.Graphics.Glx.All.DepthBufferBitSgix - type: Field - source: - id: DepthBufferBitSgix - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 88 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: DepthBufferBitSgix = 32 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.VisualCaveatExt - commentId: F:OpenTK.Graphics.Glx.All.VisualCaveatExt - id: VisualCaveatExt - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: VisualCaveatExt - nameWithType: All.VisualCaveatExt - fullName: OpenTK.Graphics.Glx.All.VisualCaveatExt - type: Field - source: - id: VisualCaveatExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 89 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: VisualCaveatExt = 32 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.XVisualType - commentId: F:OpenTK.Graphics.Glx.All.XVisualType - id: XVisualType - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: XVisualType - nameWithType: All.XVisualType - fullName: OpenTK.Graphics.Glx.All.XVisualType - type: Field - source: - id: XVisualType - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 90 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: XVisualType = 34 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.XVisualTypeExt - commentId: F:OpenTK.Graphics.Glx.All.XVisualTypeExt - id: XVisualTypeExt - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: XVisualTypeExt - nameWithType: All.XVisualTypeExt - fullName: OpenTK.Graphics.Glx.All.XVisualTypeExt - type: Field - source: - id: XVisualTypeExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 91 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: XVisualTypeExt = 34 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.TransparentType - commentId: F:OpenTK.Graphics.Glx.All.TransparentType - id: TransparentType - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: TransparentType - nameWithType: All.TransparentType - fullName: OpenTK.Graphics.Glx.All.TransparentType - type: Field - source: - id: TransparentType - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 92 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: TransparentType = 35 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.TransparentTypeExt - commentId: F:OpenTK.Graphics.Glx.All.TransparentTypeExt - id: TransparentTypeExt - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: TransparentTypeExt - nameWithType: All.TransparentTypeExt - fullName: OpenTK.Graphics.Glx.All.TransparentTypeExt - type: Field - source: - id: TransparentTypeExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 93 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: TransparentTypeExt = 35 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.TransparentIndexValue - commentId: F:OpenTK.Graphics.Glx.All.TransparentIndexValue - id: TransparentIndexValue - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: TransparentIndexValue - nameWithType: All.TransparentIndexValue - fullName: OpenTK.Graphics.Glx.All.TransparentIndexValue - type: Field - source: - id: TransparentIndexValue - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 94 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: TransparentIndexValue = 36 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.TransparentIndexValueExt - commentId: F:OpenTK.Graphics.Glx.All.TransparentIndexValueExt - id: TransparentIndexValueExt - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: TransparentIndexValueExt - nameWithType: All.TransparentIndexValueExt - fullName: OpenTK.Graphics.Glx.All.TransparentIndexValueExt - type: Field - source: - id: TransparentIndexValueExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 95 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: TransparentIndexValueExt = 36 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.TransparentRedValue - commentId: F:OpenTK.Graphics.Glx.All.TransparentRedValue - id: TransparentRedValue - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: TransparentRedValue - nameWithType: All.TransparentRedValue - fullName: OpenTK.Graphics.Glx.All.TransparentRedValue - type: Field - source: - id: TransparentRedValue - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 96 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: TransparentRedValue = 37 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.TransparentRedValueExt - commentId: F:OpenTK.Graphics.Glx.All.TransparentRedValueExt - id: TransparentRedValueExt - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: TransparentRedValueExt - nameWithType: All.TransparentRedValueExt - fullName: OpenTK.Graphics.Glx.All.TransparentRedValueExt - type: Field - source: - id: TransparentRedValueExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 97 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: TransparentRedValueExt = 37 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.TransparentGreenValue - commentId: F:OpenTK.Graphics.Glx.All.TransparentGreenValue - id: TransparentGreenValue - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: TransparentGreenValue - nameWithType: All.TransparentGreenValue - fullName: OpenTK.Graphics.Glx.All.TransparentGreenValue - type: Field - source: - id: TransparentGreenValue - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 98 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: TransparentGreenValue = 38 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.TransparentGreenValueExt - commentId: F:OpenTK.Graphics.Glx.All.TransparentGreenValueExt - id: TransparentGreenValueExt - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: TransparentGreenValueExt - nameWithType: All.TransparentGreenValueExt - fullName: OpenTK.Graphics.Glx.All.TransparentGreenValueExt - type: Field - source: - id: TransparentGreenValueExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 99 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: TransparentGreenValueExt = 38 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.TransparentBlueValue - commentId: F:OpenTK.Graphics.Glx.All.TransparentBlueValue - id: TransparentBlueValue - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: TransparentBlueValue - nameWithType: All.TransparentBlueValue - fullName: OpenTK.Graphics.Glx.All.TransparentBlueValue - type: Field - source: - id: TransparentBlueValue - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 100 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: TransparentBlueValue = 39 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.TransparentBlueValueExt - commentId: F:OpenTK.Graphics.Glx.All.TransparentBlueValueExt - id: TransparentBlueValueExt - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: TransparentBlueValueExt - nameWithType: All.TransparentBlueValueExt - fullName: OpenTK.Graphics.Glx.All.TransparentBlueValueExt - type: Field - source: - id: TransparentBlueValueExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 101 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: TransparentBlueValueExt = 39 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.TransparentAlphaValue - commentId: F:OpenTK.Graphics.Glx.All.TransparentAlphaValue - id: TransparentAlphaValue - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: TransparentAlphaValue - nameWithType: All.TransparentAlphaValue - fullName: OpenTK.Graphics.Glx.All.TransparentAlphaValue - type: Field - source: - id: TransparentAlphaValue - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 102 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: TransparentAlphaValue = 40 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.TransparentAlphaValueExt - commentId: F:OpenTK.Graphics.Glx.All.TransparentAlphaValueExt - id: TransparentAlphaValueExt - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: TransparentAlphaValueExt - nameWithType: All.TransparentAlphaValueExt - fullName: OpenTK.Graphics.Glx.All.TransparentAlphaValueExt - type: Field - source: - id: TransparentAlphaValueExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 103 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: TransparentAlphaValueExt = 40 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.StencilBufferBit - commentId: F:OpenTK.Graphics.Glx.All.StencilBufferBit - id: StencilBufferBit - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: StencilBufferBit - nameWithType: All.StencilBufferBit - fullName: OpenTK.Graphics.Glx.All.StencilBufferBit - type: Field - source: - id: StencilBufferBit - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 104 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: StencilBufferBit = 64 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.StencilBufferBitSgix - commentId: F:OpenTK.Graphics.Glx.All.StencilBufferBitSgix - id: StencilBufferBitSgix - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: StencilBufferBitSgix - nameWithType: All.StencilBufferBitSgix - fullName: OpenTK.Graphics.Glx.All.StencilBufferBitSgix - type: Field - source: - id: StencilBufferBitSgix - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 105 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: StencilBufferBitSgix = 64 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.HyperpipePipeNameLengthSgix - commentId: F:OpenTK.Graphics.Glx.All.HyperpipePipeNameLengthSgix - id: HyperpipePipeNameLengthSgix - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: HyperpipePipeNameLengthSgix - nameWithType: All.HyperpipePipeNameLengthSgix - fullName: OpenTK.Graphics.Glx.All.HyperpipePipeNameLengthSgix - type: Field - source: - id: HyperpipePipeNameLengthSgix - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 106 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: HyperpipePipeNameLengthSgix = 80 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.BadHyperpipeConfigSgix - commentId: F:OpenTK.Graphics.Glx.All.BadHyperpipeConfigSgix - id: BadHyperpipeConfigSgix - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: BadHyperpipeConfigSgix - nameWithType: All.BadHyperpipeConfigSgix - fullName: OpenTK.Graphics.Glx.All.BadHyperpipeConfigSgix - type: Field - source: - id: BadHyperpipeConfigSgix - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 107 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: BadHyperpipeConfigSgix = 91 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.BadHyperpipeSgix - commentId: F:OpenTK.Graphics.Glx.All.BadHyperpipeSgix - id: BadHyperpipeSgix - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: BadHyperpipeSgix - nameWithType: All.BadHyperpipeSgix - fullName: OpenTK.Graphics.Glx.All.BadHyperpipeSgix - type: Field - source: - id: BadHyperpipeSgix - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 108 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: BadHyperpipeSgix = 92 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.AccumBufferBit - commentId: F:OpenTK.Graphics.Glx.All.AccumBufferBit - id: AccumBufferBit - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: AccumBufferBit - nameWithType: All.AccumBufferBit - fullName: OpenTK.Graphics.Glx.All.AccumBufferBit - type: Field - source: - id: AccumBufferBit - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 109 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: AccumBufferBit = 128 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.AccumBufferBitSgix - commentId: F:OpenTK.Graphics.Glx.All.AccumBufferBitSgix - id: AccumBufferBitSgix - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: AccumBufferBitSgix - nameWithType: All.AccumBufferBitSgix - fullName: OpenTK.Graphics.Glx.All.AccumBufferBitSgix - type: Field - source: - id: AccumBufferBitSgix - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 110 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: AccumBufferBitSgix = 128 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.SampleBuffersBitSgix - commentId: F:OpenTK.Graphics.Glx.All.SampleBuffersBitSgix - id: SampleBuffersBitSgix - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: SampleBuffersBitSgix - nameWithType: All.SampleBuffersBitSgix - fullName: OpenTK.Graphics.Glx.All.SampleBuffersBitSgix - type: Field - source: - id: SampleBuffersBitSgix - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 111 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: SampleBuffersBitSgix = 256 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.GpuVendorAmd - commentId: F:OpenTK.Graphics.Glx.All.GpuVendorAmd - id: GpuVendorAmd - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: GpuVendorAmd - nameWithType: All.GpuVendorAmd - fullName: OpenTK.Graphics.Glx.All.GpuVendorAmd - type: Field - source: - id: GpuVendorAmd - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 112 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: GpuVendorAmd = 7936 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.GpuRendererStringAmd - commentId: F:OpenTK.Graphics.Glx.All.GpuRendererStringAmd - id: GpuRendererStringAmd - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: GpuRendererStringAmd - nameWithType: All.GpuRendererStringAmd - fullName: OpenTK.Graphics.Glx.All.GpuRendererStringAmd - type: Field - source: - id: GpuRendererStringAmd - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 113 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: GpuRendererStringAmd = 7937 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.GpuOpenglVersionStringAmd - commentId: F:OpenTK.Graphics.Glx.All.GpuOpenglVersionStringAmd - id: GpuOpenglVersionStringAmd - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: GpuOpenglVersionStringAmd - nameWithType: All.GpuOpenglVersionStringAmd - fullName: OpenTK.Graphics.Glx.All.GpuOpenglVersionStringAmd - type: Field - source: - id: GpuOpenglVersionStringAmd - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 114 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: GpuOpenglVersionStringAmd = 7938 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.ContextMajorVersionArb - commentId: F:OpenTK.Graphics.Glx.All.ContextMajorVersionArb - id: ContextMajorVersionArb - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: ContextMajorVersionArb - nameWithType: All.ContextMajorVersionArb - fullName: OpenTK.Graphics.Glx.All.ContextMajorVersionArb - type: Field - source: - id: ContextMajorVersionArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 115 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: ContextMajorVersionArb = 8337 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.ContextMinorVersionArb - commentId: F:OpenTK.Graphics.Glx.All.ContextMinorVersionArb - id: ContextMinorVersionArb - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: ContextMinorVersionArb - nameWithType: All.ContextMinorVersionArb - fullName: OpenTK.Graphics.Glx.All.ContextMinorVersionArb - type: Field - source: - id: ContextMinorVersionArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 116 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: ContextMinorVersionArb = 8338 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.ContextFlagsArb - commentId: F:OpenTK.Graphics.Glx.All.ContextFlagsArb - id: ContextFlagsArb - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: ContextFlagsArb - nameWithType: All.ContextFlagsArb - fullName: OpenTK.Graphics.Glx.All.ContextFlagsArb - type: Field - source: - id: ContextFlagsArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 117 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: ContextFlagsArb = 8340 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.ContextAllowBufferByteOrderMismatchArb - commentId: F:OpenTK.Graphics.Glx.All.ContextAllowBufferByteOrderMismatchArb - id: ContextAllowBufferByteOrderMismatchArb - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: ContextAllowBufferByteOrderMismatchArb - nameWithType: All.ContextAllowBufferByteOrderMismatchArb - fullName: OpenTK.Graphics.Glx.All.ContextAllowBufferByteOrderMismatchArb - type: Field - source: - id: ContextAllowBufferByteOrderMismatchArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 118 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: ContextAllowBufferByteOrderMismatchArb = 8341 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.ContextReleaseBehaviorArb - commentId: F:OpenTK.Graphics.Glx.All.ContextReleaseBehaviorArb - id: ContextReleaseBehaviorArb - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: ContextReleaseBehaviorArb - nameWithType: All.ContextReleaseBehaviorArb - fullName: OpenTK.Graphics.Glx.All.ContextReleaseBehaviorArb - type: Field - source: - id: ContextReleaseBehaviorArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 119 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: ContextReleaseBehaviorArb = 8343 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.ContextReleaseBehaviorFlushArb - commentId: F:OpenTK.Graphics.Glx.All.ContextReleaseBehaviorFlushArb - id: ContextReleaseBehaviorFlushArb - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: ContextReleaseBehaviorFlushArb - nameWithType: All.ContextReleaseBehaviorFlushArb - fullName: OpenTK.Graphics.Glx.All.ContextReleaseBehaviorFlushArb - type: Field - source: - id: ContextReleaseBehaviorFlushArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 120 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: ContextReleaseBehaviorFlushArb = 8344 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.ContextMultigpuAttribNv - commentId: F:OpenTK.Graphics.Glx.All.ContextMultigpuAttribNv - id: ContextMultigpuAttribNv - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: ContextMultigpuAttribNv - nameWithType: All.ContextMultigpuAttribNv - fullName: OpenTK.Graphics.Glx.All.ContextMultigpuAttribNv - type: Field - source: - id: ContextMultigpuAttribNv - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 121 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: ContextMultigpuAttribNv = 8362 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.ContextMultigpuAttribSingleNv - commentId: F:OpenTK.Graphics.Glx.All.ContextMultigpuAttribSingleNv - id: ContextMultigpuAttribSingleNv - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: ContextMultigpuAttribSingleNv - nameWithType: All.ContextMultigpuAttribSingleNv - fullName: OpenTK.Graphics.Glx.All.ContextMultigpuAttribSingleNv - type: Field - source: - id: ContextMultigpuAttribSingleNv - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 122 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: ContextMultigpuAttribSingleNv = 8363 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.ContextMultigpuAttribAfrNv - commentId: F:OpenTK.Graphics.Glx.All.ContextMultigpuAttribAfrNv - id: ContextMultigpuAttribAfrNv - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: ContextMultigpuAttribAfrNv - nameWithType: All.ContextMultigpuAttribAfrNv - fullName: OpenTK.Graphics.Glx.All.ContextMultigpuAttribAfrNv - type: Field - source: - id: ContextMultigpuAttribAfrNv - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 123 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: ContextMultigpuAttribAfrNv = 8364 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.ContextMultigpuAttribMulticastNv - commentId: F:OpenTK.Graphics.Glx.All.ContextMultigpuAttribMulticastNv - id: ContextMultigpuAttribMulticastNv - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: ContextMultigpuAttribMulticastNv - nameWithType: All.ContextMultigpuAttribMulticastNv - fullName: OpenTK.Graphics.Glx.All.ContextMultigpuAttribMulticastNv - type: Field - source: - id: ContextMultigpuAttribMulticastNv - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 124 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: ContextMultigpuAttribMulticastNv = 8365 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.ContextMultigpuAttribMultiDisplayMulticastNv - commentId: F:OpenTK.Graphics.Glx.All.ContextMultigpuAttribMultiDisplayMulticastNv - id: ContextMultigpuAttribMultiDisplayMulticastNv - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: ContextMultigpuAttribMultiDisplayMulticastNv - nameWithType: All.ContextMultigpuAttribMultiDisplayMulticastNv - fullName: OpenTK.Graphics.Glx.All.ContextMultigpuAttribMultiDisplayMulticastNv - type: Field - source: - id: ContextMultigpuAttribMultiDisplayMulticastNv - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 125 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: ContextMultigpuAttribMultiDisplayMulticastNv = 8366 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.FloatComponentsNv - commentId: F:OpenTK.Graphics.Glx.All.FloatComponentsNv - id: FloatComponentsNv - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: FloatComponentsNv - nameWithType: All.FloatComponentsNv - fullName: OpenTK.Graphics.Glx.All.FloatComponentsNv - type: Field - source: - id: FloatComponentsNv - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 126 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: FloatComponentsNv = 8368 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.RgbaUnsignedFloatTypeExt - commentId: F:OpenTK.Graphics.Glx.All.RgbaUnsignedFloatTypeExt - id: RgbaUnsignedFloatTypeExt - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: RgbaUnsignedFloatTypeExt - nameWithType: All.RgbaUnsignedFloatTypeExt - fullName: OpenTK.Graphics.Glx.All.RgbaUnsignedFloatTypeExt - type: Field - source: - id: RgbaUnsignedFloatTypeExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 127 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: RgbaUnsignedFloatTypeExt = 8369 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.FramebufferSrgbCapableArb - commentId: F:OpenTK.Graphics.Glx.All.FramebufferSrgbCapableArb - id: FramebufferSrgbCapableArb - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: FramebufferSrgbCapableArb - nameWithType: All.FramebufferSrgbCapableArb - fullName: OpenTK.Graphics.Glx.All.FramebufferSrgbCapableArb - type: Field - source: - id: FramebufferSrgbCapableArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 128 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: FramebufferSrgbCapableArb = 8370 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.FramebufferSrgbCapableExt - commentId: F:OpenTK.Graphics.Glx.All.FramebufferSrgbCapableExt - id: FramebufferSrgbCapableExt - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: FramebufferSrgbCapableExt - nameWithType: All.FramebufferSrgbCapableExt - fullName: OpenTK.Graphics.Glx.All.FramebufferSrgbCapableExt - type: Field - source: - id: FramebufferSrgbCapableExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 129 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: FramebufferSrgbCapableExt = 8370 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.ColorSamplesNv - commentId: F:OpenTK.Graphics.Glx.All.ColorSamplesNv - id: ColorSamplesNv - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: ColorSamplesNv - nameWithType: All.ColorSamplesNv - fullName: OpenTK.Graphics.Glx.All.ColorSamplesNv - type: Field - source: - id: ColorSamplesNv - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 130 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: ColorSamplesNv = 8371 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.RgbaFloatTypeArb - commentId: F:OpenTK.Graphics.Glx.All.RgbaFloatTypeArb - id: RgbaFloatTypeArb - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: RgbaFloatTypeArb - nameWithType: All.RgbaFloatTypeArb - fullName: OpenTK.Graphics.Glx.All.RgbaFloatTypeArb - type: Field - source: - id: RgbaFloatTypeArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 131 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: RgbaFloatTypeArb = 8377 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.VideoOutColorNv - commentId: F:OpenTK.Graphics.Glx.All.VideoOutColorNv - id: VideoOutColorNv - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: VideoOutColorNv - nameWithType: All.VideoOutColorNv - fullName: OpenTK.Graphics.Glx.All.VideoOutColorNv - type: Field - source: - id: VideoOutColorNv - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 132 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: VideoOutColorNv = 8387 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.VideoOutAlphaNv - commentId: F:OpenTK.Graphics.Glx.All.VideoOutAlphaNv - id: VideoOutAlphaNv - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: VideoOutAlphaNv - nameWithType: All.VideoOutAlphaNv - fullName: OpenTK.Graphics.Glx.All.VideoOutAlphaNv - type: Field - source: - id: VideoOutAlphaNv - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 133 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: VideoOutAlphaNv = 8388 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.VideoOutDepthNv - commentId: F:OpenTK.Graphics.Glx.All.VideoOutDepthNv - id: VideoOutDepthNv - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: VideoOutDepthNv - nameWithType: All.VideoOutDepthNv - fullName: OpenTK.Graphics.Glx.All.VideoOutDepthNv - type: Field - source: - id: VideoOutDepthNv - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 134 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: VideoOutDepthNv = 8389 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.VideoOutColorAndAlphaNv - commentId: F:OpenTK.Graphics.Glx.All.VideoOutColorAndAlphaNv - id: VideoOutColorAndAlphaNv - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: VideoOutColorAndAlphaNv - nameWithType: All.VideoOutColorAndAlphaNv - fullName: OpenTK.Graphics.Glx.All.VideoOutColorAndAlphaNv - type: Field - source: - id: VideoOutColorAndAlphaNv - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 135 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: VideoOutColorAndAlphaNv = 8390 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.VideoOutColorAndDepthNv - commentId: F:OpenTK.Graphics.Glx.All.VideoOutColorAndDepthNv - id: VideoOutColorAndDepthNv - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: VideoOutColorAndDepthNv - nameWithType: All.VideoOutColorAndDepthNv - fullName: OpenTK.Graphics.Glx.All.VideoOutColorAndDepthNv - type: Field - source: - id: VideoOutColorAndDepthNv - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 136 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: VideoOutColorAndDepthNv = 8391 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.VideoOutFrameNv - commentId: F:OpenTK.Graphics.Glx.All.VideoOutFrameNv - id: VideoOutFrameNv - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: VideoOutFrameNv - nameWithType: All.VideoOutFrameNv - fullName: OpenTK.Graphics.Glx.All.VideoOutFrameNv - type: Field - source: - id: VideoOutFrameNv - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 137 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: VideoOutFrameNv = 8392 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.VideoOutField1Nv - commentId: F:OpenTK.Graphics.Glx.All.VideoOutField1Nv - id: VideoOutField1Nv - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: VideoOutField1Nv - nameWithType: All.VideoOutField1Nv - fullName: OpenTK.Graphics.Glx.All.VideoOutField1Nv - type: Field - source: - id: VideoOutField1Nv - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 138 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: VideoOutField1Nv = 8393 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.VideoOutField2Nv - commentId: F:OpenTK.Graphics.Glx.All.VideoOutField2Nv - id: VideoOutField2Nv - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: VideoOutField2Nv - nameWithType: All.VideoOutField2Nv - fullName: OpenTK.Graphics.Glx.All.VideoOutField2Nv - type: Field - source: - id: VideoOutField2Nv - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 139 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: VideoOutField2Nv = 8394 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.VideoOutStackedFields12Nv - commentId: F:OpenTK.Graphics.Glx.All.VideoOutStackedFields12Nv - id: VideoOutStackedFields12Nv - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: VideoOutStackedFields12Nv - nameWithType: All.VideoOutStackedFields12Nv - fullName: OpenTK.Graphics.Glx.All.VideoOutStackedFields12Nv - type: Field - source: - id: VideoOutStackedFields12Nv - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 140 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: VideoOutStackedFields12Nv = 8395 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.VideoOutStackedFields21Nv - commentId: F:OpenTK.Graphics.Glx.All.VideoOutStackedFields21Nv - id: VideoOutStackedFields21Nv - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: VideoOutStackedFields21Nv - nameWithType: All.VideoOutStackedFields21Nv - fullName: OpenTK.Graphics.Glx.All.VideoOutStackedFields21Nv - type: Field - source: - id: VideoOutStackedFields21Nv - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 141 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: VideoOutStackedFields21Nv = 8396 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.DeviceIdNv - commentId: F:OpenTK.Graphics.Glx.All.DeviceIdNv - id: DeviceIdNv - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: DeviceIdNv - nameWithType: All.DeviceIdNv - fullName: OpenTK.Graphics.Glx.All.DeviceIdNv - type: Field - source: - id: DeviceIdNv - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 142 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: DeviceIdNv = 8397 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.UniqueIdNv - commentId: F:OpenTK.Graphics.Glx.All.UniqueIdNv - id: UniqueIdNv - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: UniqueIdNv - nameWithType: All.UniqueIdNv - fullName: OpenTK.Graphics.Glx.All.UniqueIdNv - type: Field - source: - id: UniqueIdNv - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 143 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: UniqueIdNv = 8398 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.NumVideoCaptureSlotsNv - commentId: F:OpenTK.Graphics.Glx.All.NumVideoCaptureSlotsNv - id: NumVideoCaptureSlotsNv - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: NumVideoCaptureSlotsNv - nameWithType: All.NumVideoCaptureSlotsNv - fullName: OpenTK.Graphics.Glx.All.NumVideoCaptureSlotsNv - type: Field - source: - id: NumVideoCaptureSlotsNv - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 144 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: NumVideoCaptureSlotsNv = 8399 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.BindToTextureRgbExt - commentId: F:OpenTK.Graphics.Glx.All.BindToTextureRgbExt - id: BindToTextureRgbExt - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: BindToTextureRgbExt - nameWithType: All.BindToTextureRgbExt - fullName: OpenTK.Graphics.Glx.All.BindToTextureRgbExt - type: Field - source: - id: BindToTextureRgbExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 145 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: BindToTextureRgbExt = 8400 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.BindToTextureRgbaExt - commentId: F:OpenTK.Graphics.Glx.All.BindToTextureRgbaExt - id: BindToTextureRgbaExt - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: BindToTextureRgbaExt - nameWithType: All.BindToTextureRgbaExt - fullName: OpenTK.Graphics.Glx.All.BindToTextureRgbaExt - type: Field - source: - id: BindToTextureRgbaExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 146 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: BindToTextureRgbaExt = 8401 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.BindToMipmapTextureExt - commentId: F:OpenTK.Graphics.Glx.All.BindToMipmapTextureExt - id: BindToMipmapTextureExt - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: BindToMipmapTextureExt - nameWithType: All.BindToMipmapTextureExt - fullName: OpenTK.Graphics.Glx.All.BindToMipmapTextureExt - type: Field - source: - id: BindToMipmapTextureExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 147 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: BindToMipmapTextureExt = 8402 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.BindToTextureTargetsExt - commentId: F:OpenTK.Graphics.Glx.All.BindToTextureTargetsExt - id: BindToTextureTargetsExt - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: BindToTextureTargetsExt - nameWithType: All.BindToTextureTargetsExt - fullName: OpenTK.Graphics.Glx.All.BindToTextureTargetsExt - type: Field - source: - id: BindToTextureTargetsExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 148 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: BindToTextureTargetsExt = 8403 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.YInvertedExt - commentId: F:OpenTK.Graphics.Glx.All.YInvertedExt - id: YInvertedExt - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: YInvertedExt - nameWithType: All.YInvertedExt - fullName: OpenTK.Graphics.Glx.All.YInvertedExt - type: Field - source: - id: YInvertedExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 149 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: YInvertedExt = 8404 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.TextureFormatExt - commentId: F:OpenTK.Graphics.Glx.All.TextureFormatExt - id: TextureFormatExt - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: TextureFormatExt - nameWithType: All.TextureFormatExt - fullName: OpenTK.Graphics.Glx.All.TextureFormatExt - type: Field - source: - id: TextureFormatExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 150 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: TextureFormatExt = 8405 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.TextureTargetExt - commentId: F:OpenTK.Graphics.Glx.All.TextureTargetExt - id: TextureTargetExt - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: TextureTargetExt - nameWithType: All.TextureTargetExt - fullName: OpenTK.Graphics.Glx.All.TextureTargetExt - type: Field - source: - id: TextureTargetExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 151 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: TextureTargetExt = 8406 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.MipmapTextureExt - commentId: F:OpenTK.Graphics.Glx.All.MipmapTextureExt - id: MipmapTextureExt - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: MipmapTextureExt - nameWithType: All.MipmapTextureExt - fullName: OpenTK.Graphics.Glx.All.MipmapTextureExt - type: Field - source: - id: MipmapTextureExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 152 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: MipmapTextureExt = 8407 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.TextureFormatNoneExt - commentId: F:OpenTK.Graphics.Glx.All.TextureFormatNoneExt - id: TextureFormatNoneExt - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: TextureFormatNoneExt - nameWithType: All.TextureFormatNoneExt - fullName: OpenTK.Graphics.Glx.All.TextureFormatNoneExt - type: Field - source: - id: TextureFormatNoneExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 153 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: TextureFormatNoneExt = 8408 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.TextureFormatRgbExt - commentId: F:OpenTK.Graphics.Glx.All.TextureFormatRgbExt - id: TextureFormatRgbExt - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: TextureFormatRgbExt - nameWithType: All.TextureFormatRgbExt - fullName: OpenTK.Graphics.Glx.All.TextureFormatRgbExt - type: Field - source: - id: TextureFormatRgbExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 154 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: TextureFormatRgbExt = 8409 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.TextureFormatRgbaExt - commentId: F:OpenTK.Graphics.Glx.All.TextureFormatRgbaExt - id: TextureFormatRgbaExt - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: TextureFormatRgbaExt - nameWithType: All.TextureFormatRgbaExt - fullName: OpenTK.Graphics.Glx.All.TextureFormatRgbaExt - type: Field - source: - id: TextureFormatRgbaExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 155 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: TextureFormatRgbaExt = 8410 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.Texture1dExt - commentId: F:OpenTK.Graphics.Glx.All.Texture1dExt - id: Texture1dExt - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: Texture1dExt - nameWithType: All.Texture1dExt - fullName: OpenTK.Graphics.Glx.All.Texture1dExt - type: Field - source: - id: Texture1dExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 156 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: Texture1dExt = 8411 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.Texture2dExt - commentId: F:OpenTK.Graphics.Glx.All.Texture2dExt - id: Texture2dExt - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: Texture2dExt - nameWithType: All.Texture2dExt - fullName: OpenTK.Graphics.Glx.All.Texture2dExt - type: Field - source: - id: Texture2dExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 157 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: Texture2dExt = 8412 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.TextureRectangleExt - commentId: F:OpenTK.Graphics.Glx.All.TextureRectangleExt - id: TextureRectangleExt - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: TextureRectangleExt - nameWithType: All.TextureRectangleExt - fullName: OpenTK.Graphics.Glx.All.TextureRectangleExt - type: Field - source: - id: TextureRectangleExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 158 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: TextureRectangleExt = 8413 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.FrontExt - commentId: F:OpenTK.Graphics.Glx.All.FrontExt - id: FrontExt - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: FrontExt - nameWithType: All.FrontExt - fullName: OpenTK.Graphics.Glx.All.FrontExt - type: Field - source: - id: FrontExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 159 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: FrontExt = 8414 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.FrontLeftExt - commentId: F:OpenTK.Graphics.Glx.All.FrontLeftExt - id: FrontLeftExt - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: FrontLeftExt - nameWithType: All.FrontLeftExt - fullName: OpenTK.Graphics.Glx.All.FrontLeftExt - type: Field - source: - id: FrontLeftExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 160 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: FrontLeftExt = 8414 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.FrontRightExt - commentId: F:OpenTK.Graphics.Glx.All.FrontRightExt - id: FrontRightExt - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: FrontRightExt - nameWithType: All.FrontRightExt - fullName: OpenTK.Graphics.Glx.All.FrontRightExt - type: Field - source: - id: FrontRightExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 161 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: FrontRightExt = 8415 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.BackExt - commentId: F:OpenTK.Graphics.Glx.All.BackExt - id: BackExt - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: BackExt - nameWithType: All.BackExt - fullName: OpenTK.Graphics.Glx.All.BackExt - type: Field - source: - id: BackExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 162 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: BackExt = 8416 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.BackLeftExt - commentId: F:OpenTK.Graphics.Glx.All.BackLeftExt - id: BackLeftExt - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: BackLeftExt - nameWithType: All.BackLeftExt - fullName: OpenTK.Graphics.Glx.All.BackLeftExt - type: Field - source: - id: BackLeftExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 163 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: BackLeftExt = 8416 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.BackRightExt - commentId: F:OpenTK.Graphics.Glx.All.BackRightExt - id: BackRightExt - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: BackRightExt - nameWithType: All.BackRightExt - fullName: OpenTK.Graphics.Glx.All.BackRightExt - type: Field - source: - id: BackRightExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 164 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: BackRightExt = 8417 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.Aux0Ext - commentId: F:OpenTK.Graphics.Glx.All.Aux0Ext - id: Aux0Ext - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: Aux0Ext - nameWithType: All.Aux0Ext - fullName: OpenTK.Graphics.Glx.All.Aux0Ext - type: Field - source: - id: Aux0Ext - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 165 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: Aux0Ext = 8418 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.Aux1Ext - commentId: F:OpenTK.Graphics.Glx.All.Aux1Ext - id: Aux1Ext - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: Aux1Ext - nameWithType: All.Aux1Ext - fullName: OpenTK.Graphics.Glx.All.Aux1Ext - type: Field - source: - id: Aux1Ext - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 166 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: Aux1Ext = 8419 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.Aux2Ext - commentId: F:OpenTK.Graphics.Glx.All.Aux2Ext - id: Aux2Ext - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: Aux2Ext - nameWithType: All.Aux2Ext - fullName: OpenTK.Graphics.Glx.All.Aux2Ext - type: Field - source: - id: Aux2Ext - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 167 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: Aux2Ext = 8420 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.Aux3Ext - commentId: F:OpenTK.Graphics.Glx.All.Aux3Ext - id: Aux3Ext - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: Aux3Ext - nameWithType: All.Aux3Ext - fullName: OpenTK.Graphics.Glx.All.Aux3Ext - type: Field - source: - id: Aux3Ext - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 168 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: Aux3Ext = 8421 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.Aux4Ext - commentId: F:OpenTK.Graphics.Glx.All.Aux4Ext - id: Aux4Ext - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: Aux4Ext - nameWithType: All.Aux4Ext - fullName: OpenTK.Graphics.Glx.All.Aux4Ext - type: Field - source: - id: Aux4Ext - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 169 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: Aux4Ext = 8422 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.Aux5Ext - commentId: F:OpenTK.Graphics.Glx.All.Aux5Ext - id: Aux5Ext - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: Aux5Ext - nameWithType: All.Aux5Ext - fullName: OpenTK.Graphics.Glx.All.Aux5Ext - type: Field - source: - id: Aux5Ext - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 170 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: Aux5Ext = 8423 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.Aux6Ext - commentId: F:OpenTK.Graphics.Glx.All.Aux6Ext - id: Aux6Ext - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: Aux6Ext - nameWithType: All.Aux6Ext - fullName: OpenTK.Graphics.Glx.All.Aux6Ext - type: Field - source: - id: Aux6Ext - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 171 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: Aux6Ext = 8424 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.Aux7Ext - commentId: F:OpenTK.Graphics.Glx.All.Aux7Ext - id: Aux7Ext - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: Aux7Ext - nameWithType: All.Aux7Ext - fullName: OpenTK.Graphics.Glx.All.Aux7Ext - type: Field - source: - id: Aux7Ext - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 172 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: Aux7Ext = 8425 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.Aux8Ext - commentId: F:OpenTK.Graphics.Glx.All.Aux8Ext - id: Aux8Ext - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: Aux8Ext - nameWithType: All.Aux8Ext - fullName: OpenTK.Graphics.Glx.All.Aux8Ext - type: Field - source: - id: Aux8Ext - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 173 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: Aux8Ext = 8426 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.Aux9Ext - commentId: F:OpenTK.Graphics.Glx.All.Aux9Ext - id: Aux9Ext - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: Aux9Ext - nameWithType: All.Aux9Ext - fullName: OpenTK.Graphics.Glx.All.Aux9Ext - type: Field - source: - id: Aux9Ext - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 174 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: Aux9Ext = 8427 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.NumVideoSlotsNv - commentId: F:OpenTK.Graphics.Glx.All.NumVideoSlotsNv - id: NumVideoSlotsNv - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: NumVideoSlotsNv - nameWithType: All.NumVideoSlotsNv - fullName: OpenTK.Graphics.Glx.All.NumVideoSlotsNv - type: Field - source: - id: NumVideoSlotsNv - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 175 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: NumVideoSlotsNv = 8432 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.SwapIntervalExt - commentId: F:OpenTK.Graphics.Glx.All.SwapIntervalExt - id: SwapIntervalExt - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: SwapIntervalExt - nameWithType: All.SwapIntervalExt - fullName: OpenTK.Graphics.Glx.All.SwapIntervalExt - type: Field - source: - id: SwapIntervalExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 176 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: SwapIntervalExt = 8433 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.MaxSwapIntervalExt - commentId: F:OpenTK.Graphics.Glx.All.MaxSwapIntervalExt - id: MaxSwapIntervalExt - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: MaxSwapIntervalExt - nameWithType: All.MaxSwapIntervalExt - fullName: OpenTK.Graphics.Glx.All.MaxSwapIntervalExt - type: Field - source: - id: MaxSwapIntervalExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 177 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: MaxSwapIntervalExt = 8434 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.LateSwapsTearExt - commentId: F:OpenTK.Graphics.Glx.All.LateSwapsTearExt - id: LateSwapsTearExt - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: LateSwapsTearExt - nameWithType: All.LateSwapsTearExt - fullName: OpenTK.Graphics.Glx.All.LateSwapsTearExt - type: Field - source: - id: LateSwapsTearExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 178 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: LateSwapsTearExt = 8435 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.BackBufferAgeExt - commentId: F:OpenTK.Graphics.Glx.All.BackBufferAgeExt - id: BackBufferAgeExt - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: BackBufferAgeExt - nameWithType: All.BackBufferAgeExt - fullName: OpenTK.Graphics.Glx.All.BackBufferAgeExt - type: Field - source: - id: BackBufferAgeExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 179 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: BackBufferAgeExt = 8436 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.StereoTreeExt - commentId: F:OpenTK.Graphics.Glx.All.StereoTreeExt - id: StereoTreeExt - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: StereoTreeExt - nameWithType: All.StereoTreeExt - fullName: OpenTK.Graphics.Glx.All.StereoTreeExt - type: Field - source: - id: StereoTreeExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 180 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: StereoTreeExt = 8437 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.VendorNamesExt - commentId: F:OpenTK.Graphics.Glx.All.VendorNamesExt - id: VendorNamesExt - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: VendorNamesExt - nameWithType: All.VendorNamesExt - fullName: OpenTK.Graphics.Glx.All.VendorNamesExt - type: Field - source: - id: VendorNamesExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 181 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: VendorNamesExt = 8438 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.GenerateResetOnVideoMemoryPurgeNv - commentId: F:OpenTK.Graphics.Glx.All.GenerateResetOnVideoMemoryPurgeNv - id: GenerateResetOnVideoMemoryPurgeNv - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: GenerateResetOnVideoMemoryPurgeNv - nameWithType: All.GenerateResetOnVideoMemoryPurgeNv - fullName: OpenTK.Graphics.Glx.All.GenerateResetOnVideoMemoryPurgeNv - type: Field - source: - id: GenerateResetOnVideoMemoryPurgeNv - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 182 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: GenerateResetOnVideoMemoryPurgeNv = 8439 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.GpuFastestTargetGpusAmd - commentId: F:OpenTK.Graphics.Glx.All.GpuFastestTargetGpusAmd - id: GpuFastestTargetGpusAmd - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: GpuFastestTargetGpusAmd - nameWithType: All.GpuFastestTargetGpusAmd - fullName: OpenTK.Graphics.Glx.All.GpuFastestTargetGpusAmd - type: Field - source: - id: GpuFastestTargetGpusAmd - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 183 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: GpuFastestTargetGpusAmd = 8610 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.GpuRamAmd - commentId: F:OpenTK.Graphics.Glx.All.GpuRamAmd - id: GpuRamAmd - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: GpuRamAmd - nameWithType: All.GpuRamAmd - fullName: OpenTK.Graphics.Glx.All.GpuRamAmd - type: Field - source: - id: GpuRamAmd - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 184 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: GpuRamAmd = 8611 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.GpuClockAmd - commentId: F:OpenTK.Graphics.Glx.All.GpuClockAmd - id: GpuClockAmd - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: GpuClockAmd - nameWithType: All.GpuClockAmd - fullName: OpenTK.Graphics.Glx.All.GpuClockAmd - type: Field - source: - id: GpuClockAmd - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 185 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: GpuClockAmd = 8612 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.GpuNumPipesAmd - commentId: F:OpenTK.Graphics.Glx.All.GpuNumPipesAmd - id: GpuNumPipesAmd - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: GpuNumPipesAmd - nameWithType: All.GpuNumPipesAmd - fullName: OpenTK.Graphics.Glx.All.GpuNumPipesAmd - type: Field - source: - id: GpuNumPipesAmd - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 186 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: GpuNumPipesAmd = 8613 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.GpuNumSimdAmd - commentId: F:OpenTK.Graphics.Glx.All.GpuNumSimdAmd - id: GpuNumSimdAmd - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: GpuNumSimdAmd - nameWithType: All.GpuNumSimdAmd - fullName: OpenTK.Graphics.Glx.All.GpuNumSimdAmd - type: Field - source: - id: GpuNumSimdAmd - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 187 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: GpuNumSimdAmd = 8614 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.GpuNumRbAmd - commentId: F:OpenTK.Graphics.Glx.All.GpuNumRbAmd - id: GpuNumRbAmd - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: GpuNumRbAmd - nameWithType: All.GpuNumRbAmd - fullName: OpenTK.Graphics.Glx.All.GpuNumRbAmd - type: Field - source: - id: GpuNumRbAmd - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 188 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: GpuNumRbAmd = 8615 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.GpuNumSpiAmd - commentId: F:OpenTK.Graphics.Glx.All.GpuNumSpiAmd - id: GpuNumSpiAmd - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: GpuNumSpiAmd - nameWithType: All.GpuNumSpiAmd - fullName: OpenTK.Graphics.Glx.All.GpuNumSpiAmd - type: Field - source: - id: GpuNumSpiAmd - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 189 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: GpuNumSpiAmd = 8616 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.ContextPriorityLevelExt - commentId: F:OpenTK.Graphics.Glx.All.ContextPriorityLevelExt - id: ContextPriorityLevelExt - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: ContextPriorityLevelExt - nameWithType: All.ContextPriorityLevelExt - fullName: OpenTK.Graphics.Glx.All.ContextPriorityLevelExt - type: Field - source: - id: ContextPriorityLevelExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 190 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: ContextPriorityLevelExt = 12544 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.ContextPriorityHighExt - commentId: F:OpenTK.Graphics.Glx.All.ContextPriorityHighExt - id: ContextPriorityHighExt - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: ContextPriorityHighExt - nameWithType: All.ContextPriorityHighExt - fullName: OpenTK.Graphics.Glx.All.ContextPriorityHighExt - type: Field - source: - id: ContextPriorityHighExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 191 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: ContextPriorityHighExt = 12545 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.ContextPriorityMediumExt - commentId: F:OpenTK.Graphics.Glx.All.ContextPriorityMediumExt - id: ContextPriorityMediumExt - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: ContextPriorityMediumExt - nameWithType: All.ContextPriorityMediumExt - fullName: OpenTK.Graphics.Glx.All.ContextPriorityMediumExt - type: Field - source: - id: ContextPriorityMediumExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 192 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: ContextPriorityMediumExt = 12546 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.ContextPriorityLowExt - commentId: F:OpenTK.Graphics.Glx.All.ContextPriorityLowExt - id: ContextPriorityLowExt - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: ContextPriorityLowExt - nameWithType: All.ContextPriorityLowExt - fullName: OpenTK.Graphics.Glx.All.ContextPriorityLowExt - type: Field - source: - id: ContextPriorityLowExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 193 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: ContextPriorityLowExt = 12547 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.ContextOpenglNoErrorArb - commentId: F:OpenTK.Graphics.Glx.All.ContextOpenglNoErrorArb - id: ContextOpenglNoErrorArb - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: ContextOpenglNoErrorArb - nameWithType: All.ContextOpenglNoErrorArb - fullName: OpenTK.Graphics.Glx.All.ContextOpenglNoErrorArb - type: Field - source: - id: ContextOpenglNoErrorArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 194 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: ContextOpenglNoErrorArb = 12723 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.None - commentId: F:OpenTK.Graphics.Glx.All.None - id: None - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: None - nameWithType: All.None - fullName: OpenTK.Graphics.Glx.All.None - type: Field - source: - id: None - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 195 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: None = 32768 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.NoneExt - commentId: F:OpenTK.Graphics.Glx.All.NoneExt - id: NoneExt - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: NoneExt - nameWithType: All.NoneExt - fullName: OpenTK.Graphics.Glx.All.NoneExt - type: Field - source: - id: NoneExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 196 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: NoneExt = 32768 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.SlowConfig - commentId: F:OpenTK.Graphics.Glx.All.SlowConfig - id: SlowConfig - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: SlowConfig - nameWithType: All.SlowConfig - fullName: OpenTK.Graphics.Glx.All.SlowConfig - type: Field - source: - id: SlowConfig - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 197 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: SlowConfig = 32769 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.SlowVisualExt - commentId: F:OpenTK.Graphics.Glx.All.SlowVisualExt - id: SlowVisualExt - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: SlowVisualExt - nameWithType: All.SlowVisualExt - fullName: OpenTK.Graphics.Glx.All.SlowVisualExt - type: Field - source: - id: SlowVisualExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 198 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: SlowVisualExt = 32769 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.TrueColor - commentId: F:OpenTK.Graphics.Glx.All.TrueColor - id: TrueColor - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: TrueColor - nameWithType: All.TrueColor - fullName: OpenTK.Graphics.Glx.All.TrueColor - type: Field - source: - id: TrueColor - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 199 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: TrueColor = 32770 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.TrueColorExt - commentId: F:OpenTK.Graphics.Glx.All.TrueColorExt - id: TrueColorExt - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: TrueColorExt - nameWithType: All.TrueColorExt - fullName: OpenTK.Graphics.Glx.All.TrueColorExt - type: Field - source: - id: TrueColorExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 200 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: TrueColorExt = 32770 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.DirectColor - commentId: F:OpenTK.Graphics.Glx.All.DirectColor - id: DirectColor - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: DirectColor - nameWithType: All.DirectColor - fullName: OpenTK.Graphics.Glx.All.DirectColor - type: Field - source: - id: DirectColor - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 201 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: DirectColor = 32771 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.DirectColorExt - commentId: F:OpenTK.Graphics.Glx.All.DirectColorExt - id: DirectColorExt - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: DirectColorExt - nameWithType: All.DirectColorExt - fullName: OpenTK.Graphics.Glx.All.DirectColorExt - type: Field - source: - id: DirectColorExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 202 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: DirectColorExt = 32771 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.PseudoColor - commentId: F:OpenTK.Graphics.Glx.All.PseudoColor - id: PseudoColor - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: PseudoColor - nameWithType: All.PseudoColor - fullName: OpenTK.Graphics.Glx.All.PseudoColor - type: Field - source: - id: PseudoColor - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 203 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: PseudoColor = 32772 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.PseudoColorExt - commentId: F:OpenTK.Graphics.Glx.All.PseudoColorExt - id: PseudoColorExt - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: PseudoColorExt - nameWithType: All.PseudoColorExt - fullName: OpenTK.Graphics.Glx.All.PseudoColorExt - type: Field - source: - id: PseudoColorExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 204 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: PseudoColorExt = 32772 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.StaticColor - commentId: F:OpenTK.Graphics.Glx.All.StaticColor - id: StaticColor - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: StaticColor - nameWithType: All.StaticColor - fullName: OpenTK.Graphics.Glx.All.StaticColor - type: Field - source: - id: StaticColor - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 205 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: StaticColor = 32773 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.StaticColorExt - commentId: F:OpenTK.Graphics.Glx.All.StaticColorExt - id: StaticColorExt - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: StaticColorExt - nameWithType: All.StaticColorExt - fullName: OpenTK.Graphics.Glx.All.StaticColorExt - type: Field - source: - id: StaticColorExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 206 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: StaticColorExt = 32773 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.GrayScale - commentId: F:OpenTK.Graphics.Glx.All.GrayScale - id: GrayScale - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: GrayScale - nameWithType: All.GrayScale - fullName: OpenTK.Graphics.Glx.All.GrayScale - type: Field - source: - id: GrayScale - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 207 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: GrayScale = 32774 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.GrayScaleExt - commentId: F:OpenTK.Graphics.Glx.All.GrayScaleExt - id: GrayScaleExt - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: GrayScaleExt - nameWithType: All.GrayScaleExt - fullName: OpenTK.Graphics.Glx.All.GrayScaleExt - type: Field - source: - id: GrayScaleExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 208 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: GrayScaleExt = 32774 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.StaticGray - commentId: F:OpenTK.Graphics.Glx.All.StaticGray - id: StaticGray - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: StaticGray - nameWithType: All.StaticGray - fullName: OpenTK.Graphics.Glx.All.StaticGray - type: Field - source: - id: StaticGray - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 209 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: StaticGray = 32775 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.StaticGrayExt - commentId: F:OpenTK.Graphics.Glx.All.StaticGrayExt - id: StaticGrayExt - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: StaticGrayExt - nameWithType: All.StaticGrayExt - fullName: OpenTK.Graphics.Glx.All.StaticGrayExt - type: Field - source: - id: StaticGrayExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 210 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: StaticGrayExt = 32775 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.TransparentRgb - commentId: F:OpenTK.Graphics.Glx.All.TransparentRgb - id: TransparentRgb - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: TransparentRgb - nameWithType: All.TransparentRgb - fullName: OpenTK.Graphics.Glx.All.TransparentRgb - type: Field - source: - id: TransparentRgb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 211 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: TransparentRgb = 32776 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.TransparentRgbExt - commentId: F:OpenTK.Graphics.Glx.All.TransparentRgbExt - id: TransparentRgbExt - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: TransparentRgbExt - nameWithType: All.TransparentRgbExt - fullName: OpenTK.Graphics.Glx.All.TransparentRgbExt - type: Field - source: - id: TransparentRgbExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 212 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: TransparentRgbExt = 32776 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.TransparentIndex - commentId: F:OpenTK.Graphics.Glx.All.TransparentIndex - id: TransparentIndex - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: TransparentIndex - nameWithType: All.TransparentIndex - fullName: OpenTK.Graphics.Glx.All.TransparentIndex - type: Field - source: - id: TransparentIndex - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 213 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: TransparentIndex = 32777 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.TransparentIndexExt - commentId: F:OpenTK.Graphics.Glx.All.TransparentIndexExt - id: TransparentIndexExt - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: TransparentIndexExt - nameWithType: All.TransparentIndexExt - fullName: OpenTK.Graphics.Glx.All.TransparentIndexExt - type: Field - source: - id: TransparentIndexExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 214 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: TransparentIndexExt = 32777 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.ShareContextExt - commentId: F:OpenTK.Graphics.Glx.All.ShareContextExt - id: ShareContextExt - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: ShareContextExt - nameWithType: All.ShareContextExt - fullName: OpenTK.Graphics.Glx.All.ShareContextExt - type: Field - source: - id: ShareContextExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 215 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: ShareContextExt = 32778 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.VisualId - commentId: F:OpenTK.Graphics.Glx.All.VisualId - id: VisualId - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: VisualId - nameWithType: All.VisualId - fullName: OpenTK.Graphics.Glx.All.VisualId - type: Field - source: - id: VisualId - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 216 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: VisualId = 32779 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.VisualIdExt - commentId: F:OpenTK.Graphics.Glx.All.VisualIdExt - id: VisualIdExt - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: VisualIdExt - nameWithType: All.VisualIdExt - fullName: OpenTK.Graphics.Glx.All.VisualIdExt - type: Field - source: - id: VisualIdExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 217 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: VisualIdExt = 32779 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.Screen - commentId: F:OpenTK.Graphics.Glx.All.Screen - id: Screen - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: Screen - nameWithType: All.Screen - fullName: OpenTK.Graphics.Glx.All.Screen - type: Field - source: - id: Screen - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 218 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: Screen = 32780 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.ScreenExt - commentId: F:OpenTK.Graphics.Glx.All.ScreenExt - id: ScreenExt - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: ScreenExt - nameWithType: All.ScreenExt - fullName: OpenTK.Graphics.Glx.All.ScreenExt - type: Field - source: - id: ScreenExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 219 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: ScreenExt = 32780 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.NonConformantConfig - commentId: F:OpenTK.Graphics.Glx.All.NonConformantConfig - id: NonConformantConfig - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: NonConformantConfig - nameWithType: All.NonConformantConfig - fullName: OpenTK.Graphics.Glx.All.NonConformantConfig - type: Field - source: - id: NonConformantConfig - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 220 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: NonConformantConfig = 32781 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.NonConformantVisualExt - commentId: F:OpenTK.Graphics.Glx.All.NonConformantVisualExt - id: NonConformantVisualExt - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: NonConformantVisualExt - nameWithType: All.NonConformantVisualExt - fullName: OpenTK.Graphics.Glx.All.NonConformantVisualExt - type: Field - source: - id: NonConformantVisualExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 221 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: NonConformantVisualExt = 32781 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.DrawableType - commentId: F:OpenTK.Graphics.Glx.All.DrawableType - id: DrawableType - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: DrawableType - nameWithType: All.DrawableType - fullName: OpenTK.Graphics.Glx.All.DrawableType - type: Field - source: - id: DrawableType - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 222 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: DrawableType = 32784 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.DrawableTypeSgix - commentId: F:OpenTK.Graphics.Glx.All.DrawableTypeSgix - id: DrawableTypeSgix - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: DrawableTypeSgix - nameWithType: All.DrawableTypeSgix - fullName: OpenTK.Graphics.Glx.All.DrawableTypeSgix - type: Field - source: - id: DrawableTypeSgix - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 223 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: DrawableTypeSgix = 32784 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.RenderType - commentId: F:OpenTK.Graphics.Glx.All.RenderType - id: RenderType - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: RenderType - nameWithType: All.RenderType - fullName: OpenTK.Graphics.Glx.All.RenderType - type: Field - source: - id: RenderType - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 224 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: RenderType = 32785 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.RenderTypeSgix - commentId: F:OpenTK.Graphics.Glx.All.RenderTypeSgix - id: RenderTypeSgix - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: RenderTypeSgix - nameWithType: All.RenderTypeSgix - fullName: OpenTK.Graphics.Glx.All.RenderTypeSgix - type: Field - source: - id: RenderTypeSgix - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 225 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: RenderTypeSgix = 32785 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.XRenderable - commentId: F:OpenTK.Graphics.Glx.All.XRenderable - id: XRenderable - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: XRenderable - nameWithType: All.XRenderable - fullName: OpenTK.Graphics.Glx.All.XRenderable - type: Field - source: - id: XRenderable - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 226 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: XRenderable = 32786 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.XRenderableSgix - commentId: F:OpenTK.Graphics.Glx.All.XRenderableSgix - id: XRenderableSgix - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: XRenderableSgix - nameWithType: All.XRenderableSgix - fullName: OpenTK.Graphics.Glx.All.XRenderableSgix - type: Field - source: - id: XRenderableSgix - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 227 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: XRenderableSgix = 32786 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.FbconfigId - commentId: F:OpenTK.Graphics.Glx.All.FbconfigId - id: FbconfigId - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: FbconfigId - nameWithType: All.FbconfigId - fullName: OpenTK.Graphics.Glx.All.FbconfigId - type: Field - source: - id: FbconfigId - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 228 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: FbconfigId = 32787 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.FbconfigIdSgix - commentId: F:OpenTK.Graphics.Glx.All.FbconfigIdSgix - id: FbconfigIdSgix - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: FbconfigIdSgix - nameWithType: All.FbconfigIdSgix - fullName: OpenTK.Graphics.Glx.All.FbconfigIdSgix - type: Field - source: - id: FbconfigIdSgix - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 229 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: FbconfigIdSgix = 32787 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.RgbaType - commentId: F:OpenTK.Graphics.Glx.All.RgbaType - id: RgbaType - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: RgbaType - nameWithType: All.RgbaType - fullName: OpenTK.Graphics.Glx.All.RgbaType - type: Field - source: - id: RgbaType - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 230 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: RgbaType = 32788 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.RgbaTypeSgix - commentId: F:OpenTK.Graphics.Glx.All.RgbaTypeSgix - id: RgbaTypeSgix - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: RgbaTypeSgix - nameWithType: All.RgbaTypeSgix - fullName: OpenTK.Graphics.Glx.All.RgbaTypeSgix - type: Field - source: - id: RgbaTypeSgix - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 231 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: RgbaTypeSgix = 32788 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.ColorIndexType - commentId: F:OpenTK.Graphics.Glx.All.ColorIndexType - id: ColorIndexType - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: ColorIndexType - nameWithType: All.ColorIndexType - fullName: OpenTK.Graphics.Glx.All.ColorIndexType - type: Field - source: - id: ColorIndexType - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 232 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: ColorIndexType = 32789 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.ColorIndexTypeSgix - commentId: F:OpenTK.Graphics.Glx.All.ColorIndexTypeSgix - id: ColorIndexTypeSgix - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: ColorIndexTypeSgix - nameWithType: All.ColorIndexTypeSgix - fullName: OpenTK.Graphics.Glx.All.ColorIndexTypeSgix - type: Field - source: - id: ColorIndexTypeSgix - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 233 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: ColorIndexTypeSgix = 32789 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.MaxPbufferWidth - commentId: F:OpenTK.Graphics.Glx.All.MaxPbufferWidth - id: MaxPbufferWidth - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: MaxPbufferWidth - nameWithType: All.MaxPbufferWidth - fullName: OpenTK.Graphics.Glx.All.MaxPbufferWidth - type: Field - source: - id: MaxPbufferWidth - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 234 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: MaxPbufferWidth = 32790 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.MaxPbufferWidthSgix - commentId: F:OpenTK.Graphics.Glx.All.MaxPbufferWidthSgix - id: MaxPbufferWidthSgix - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: MaxPbufferWidthSgix - nameWithType: All.MaxPbufferWidthSgix - fullName: OpenTK.Graphics.Glx.All.MaxPbufferWidthSgix - type: Field - source: - id: MaxPbufferWidthSgix - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 235 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: MaxPbufferWidthSgix = 32790 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.MaxPbufferHeight - commentId: F:OpenTK.Graphics.Glx.All.MaxPbufferHeight - id: MaxPbufferHeight - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: MaxPbufferHeight - nameWithType: All.MaxPbufferHeight - fullName: OpenTK.Graphics.Glx.All.MaxPbufferHeight - type: Field - source: - id: MaxPbufferHeight - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 236 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: MaxPbufferHeight = 32791 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.MaxPbufferHeightSgix - commentId: F:OpenTK.Graphics.Glx.All.MaxPbufferHeightSgix - id: MaxPbufferHeightSgix - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: MaxPbufferHeightSgix - nameWithType: All.MaxPbufferHeightSgix - fullName: OpenTK.Graphics.Glx.All.MaxPbufferHeightSgix - type: Field - source: - id: MaxPbufferHeightSgix - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 237 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: MaxPbufferHeightSgix = 32791 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.MaxPbufferPixels - commentId: F:OpenTK.Graphics.Glx.All.MaxPbufferPixels - id: MaxPbufferPixels - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: MaxPbufferPixels - nameWithType: All.MaxPbufferPixels - fullName: OpenTK.Graphics.Glx.All.MaxPbufferPixels - type: Field - source: - id: MaxPbufferPixels - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 238 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: MaxPbufferPixels = 32792 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.MaxPbufferPixelsSgix - commentId: F:OpenTK.Graphics.Glx.All.MaxPbufferPixelsSgix - id: MaxPbufferPixelsSgix - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: MaxPbufferPixelsSgix - nameWithType: All.MaxPbufferPixelsSgix - fullName: OpenTK.Graphics.Glx.All.MaxPbufferPixelsSgix - type: Field - source: - id: MaxPbufferPixelsSgix - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 239 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: MaxPbufferPixelsSgix = 32792 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.OptimalPbufferWidthSgix - commentId: F:OpenTK.Graphics.Glx.All.OptimalPbufferWidthSgix - id: OptimalPbufferWidthSgix - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: OptimalPbufferWidthSgix - nameWithType: All.OptimalPbufferWidthSgix - fullName: OpenTK.Graphics.Glx.All.OptimalPbufferWidthSgix - type: Field - source: - id: OptimalPbufferWidthSgix - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 240 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: OptimalPbufferWidthSgix = 32793 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.OptimalPbufferHeightSgix - commentId: F:OpenTK.Graphics.Glx.All.OptimalPbufferHeightSgix - id: OptimalPbufferHeightSgix - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: OptimalPbufferHeightSgix - nameWithType: All.OptimalPbufferHeightSgix - fullName: OpenTK.Graphics.Glx.All.OptimalPbufferHeightSgix - type: Field - source: - id: OptimalPbufferHeightSgix - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 241 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: OptimalPbufferHeightSgix = 32794 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.PreservedContents - commentId: F:OpenTK.Graphics.Glx.All.PreservedContents - id: PreservedContents - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: PreservedContents - nameWithType: All.PreservedContents - fullName: OpenTK.Graphics.Glx.All.PreservedContents - type: Field - source: - id: PreservedContents - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 242 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: PreservedContents = 32795 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.PreservedContentsSgix - commentId: F:OpenTK.Graphics.Glx.All.PreservedContentsSgix - id: PreservedContentsSgix - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: PreservedContentsSgix - nameWithType: All.PreservedContentsSgix - fullName: OpenTK.Graphics.Glx.All.PreservedContentsSgix - type: Field - source: - id: PreservedContentsSgix - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 243 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: PreservedContentsSgix = 32795 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.LargestPbuffer - commentId: F:OpenTK.Graphics.Glx.All.LargestPbuffer - id: LargestPbuffer - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: LargestPbuffer - nameWithType: All.LargestPbuffer - fullName: OpenTK.Graphics.Glx.All.LargestPbuffer - type: Field - source: - id: LargestPbuffer - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 244 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: LargestPbuffer = 32796 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.LargestPbufferSgix - commentId: F:OpenTK.Graphics.Glx.All.LargestPbufferSgix - id: LargestPbufferSgix - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: LargestPbufferSgix - nameWithType: All.LargestPbufferSgix - fullName: OpenTK.Graphics.Glx.All.LargestPbufferSgix - type: Field - source: - id: LargestPbufferSgix - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 245 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: LargestPbufferSgix = 32796 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.Width - commentId: F:OpenTK.Graphics.Glx.All.Width - id: Width - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: Width - nameWithType: All.Width - fullName: OpenTK.Graphics.Glx.All.Width - type: Field - source: - id: Width - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 246 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: Width = 32797 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.WidthSgix - commentId: F:OpenTK.Graphics.Glx.All.WidthSgix - id: WidthSgix - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: WidthSgix - nameWithType: All.WidthSgix - fullName: OpenTK.Graphics.Glx.All.WidthSgix - type: Field - source: - id: WidthSgix - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 247 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: WidthSgix = 32797 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.Height - commentId: F:OpenTK.Graphics.Glx.All.Height - id: Height - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: Height - nameWithType: All.Height - fullName: OpenTK.Graphics.Glx.All.Height - type: Field - source: - id: Height - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 248 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: Height = 32798 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.HeightSgix - commentId: F:OpenTK.Graphics.Glx.All.HeightSgix - id: HeightSgix - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: HeightSgix - nameWithType: All.HeightSgix - fullName: OpenTK.Graphics.Glx.All.HeightSgix - type: Field - source: - id: HeightSgix - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 249 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: HeightSgix = 32798 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.EventMask - commentId: F:OpenTK.Graphics.Glx.All.EventMask - id: EventMask - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: EventMask - nameWithType: All.EventMask - fullName: OpenTK.Graphics.Glx.All.EventMask - type: Field - source: - id: EventMask - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 250 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: EventMask = 32799 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.EventMaskSgix - commentId: F:OpenTK.Graphics.Glx.All.EventMaskSgix - id: EventMaskSgix - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: EventMaskSgix - nameWithType: All.EventMaskSgix - fullName: OpenTK.Graphics.Glx.All.EventMaskSgix - type: Field - source: - id: EventMaskSgix - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 251 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: EventMaskSgix = 32799 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.Damaged - commentId: F:OpenTK.Graphics.Glx.All.Damaged - id: Damaged - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: Damaged - nameWithType: All.Damaged - fullName: OpenTK.Graphics.Glx.All.Damaged - type: Field - source: - id: Damaged - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 252 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: Damaged = 32800 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.DamagedSgix - commentId: F:OpenTK.Graphics.Glx.All.DamagedSgix - id: DamagedSgix - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: DamagedSgix - nameWithType: All.DamagedSgix - fullName: OpenTK.Graphics.Glx.All.DamagedSgix - type: Field - source: - id: DamagedSgix - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 253 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: DamagedSgix = 32800 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.Saved - commentId: F:OpenTK.Graphics.Glx.All.Saved - id: Saved - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: Saved - nameWithType: All.Saved - fullName: OpenTK.Graphics.Glx.All.Saved - type: Field - source: - id: Saved - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 254 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: Saved = 32801 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.SavedSgix - commentId: F:OpenTK.Graphics.Glx.All.SavedSgix - id: SavedSgix - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: SavedSgix - nameWithType: All.SavedSgix - fullName: OpenTK.Graphics.Glx.All.SavedSgix - type: Field - source: - id: SavedSgix - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 255 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: SavedSgix = 32801 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.Window - commentId: F:OpenTK.Graphics.Glx.All.Window - id: Window - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: Window - nameWithType: All.Window - fullName: OpenTK.Graphics.Glx.All.Window - type: Field - source: - id: Window - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 256 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: Window = 32802 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.WindowSgix - commentId: F:OpenTK.Graphics.Glx.All.WindowSgix - id: WindowSgix - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: WindowSgix - nameWithType: All.WindowSgix - fullName: OpenTK.Graphics.Glx.All.WindowSgix - type: Field - source: - id: WindowSgix - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 257 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: WindowSgix = 32802 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.Pbuffer - commentId: F:OpenTK.Graphics.Glx.All.Pbuffer - id: Pbuffer - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: Pbuffer - nameWithType: All.Pbuffer - fullName: OpenTK.Graphics.Glx.All.Pbuffer - type: Field - source: - id: Pbuffer - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 258 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: Pbuffer = 32803 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.PbufferSgix - commentId: F:OpenTK.Graphics.Glx.All.PbufferSgix - id: PbufferSgix - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: PbufferSgix - nameWithType: All.PbufferSgix - fullName: OpenTK.Graphics.Glx.All.PbufferSgix - type: Field - source: - id: PbufferSgix - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 259 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: PbufferSgix = 32803 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.DigitalMediaPbufferSgix - commentId: F:OpenTK.Graphics.Glx.All.DigitalMediaPbufferSgix - id: DigitalMediaPbufferSgix - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: DigitalMediaPbufferSgix - nameWithType: All.DigitalMediaPbufferSgix - fullName: OpenTK.Graphics.Glx.All.DigitalMediaPbufferSgix - type: Field - source: - id: DigitalMediaPbufferSgix - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 260 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: DigitalMediaPbufferSgix = 32804 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.BlendedRgbaSgis - commentId: F:OpenTK.Graphics.Glx.All.BlendedRgbaSgis - id: BlendedRgbaSgis - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: BlendedRgbaSgis - nameWithType: All.BlendedRgbaSgis - fullName: OpenTK.Graphics.Glx.All.BlendedRgbaSgis - type: Field - source: - id: BlendedRgbaSgis - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 261 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: BlendedRgbaSgis = 32805 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.MultisampleSubRectWidthSgis - commentId: F:OpenTK.Graphics.Glx.All.MultisampleSubRectWidthSgis - id: MultisampleSubRectWidthSgis - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: MultisampleSubRectWidthSgis - nameWithType: All.MultisampleSubRectWidthSgis - fullName: OpenTK.Graphics.Glx.All.MultisampleSubRectWidthSgis - type: Field - source: - id: MultisampleSubRectWidthSgis - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 262 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: MultisampleSubRectWidthSgis = 32806 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.MultisampleSubRectHeightSgis - commentId: F:OpenTK.Graphics.Glx.All.MultisampleSubRectHeightSgis - id: MultisampleSubRectHeightSgis - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: MultisampleSubRectHeightSgis - nameWithType: All.MultisampleSubRectHeightSgis - fullName: OpenTK.Graphics.Glx.All.MultisampleSubRectHeightSgis - type: Field - source: - id: MultisampleSubRectHeightSgis - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 263 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: MultisampleSubRectHeightSgis = 32807 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.VisualSelectGroupSgix - commentId: F:OpenTK.Graphics.Glx.All.VisualSelectGroupSgix - id: VisualSelectGroupSgix - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: VisualSelectGroupSgix - nameWithType: All.VisualSelectGroupSgix - fullName: OpenTK.Graphics.Glx.All.VisualSelectGroupSgix - type: Field - source: - id: VisualSelectGroupSgix - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 264 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: VisualSelectGroupSgix = 32808 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.HyperpipeIdSgix - commentId: F:OpenTK.Graphics.Glx.All.HyperpipeIdSgix - id: HyperpipeIdSgix - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: HyperpipeIdSgix - nameWithType: All.HyperpipeIdSgix - fullName: OpenTK.Graphics.Glx.All.HyperpipeIdSgix - type: Field - source: - id: HyperpipeIdSgix - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 265 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: HyperpipeIdSgix = 32816 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.PbufferHeight - commentId: F:OpenTK.Graphics.Glx.All.PbufferHeight - id: PbufferHeight - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: PbufferHeight - nameWithType: All.PbufferHeight - fullName: OpenTK.Graphics.Glx.All.PbufferHeight - type: Field - source: - id: PbufferHeight - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 266 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: PbufferHeight = 32832 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.PbufferWidth - commentId: F:OpenTK.Graphics.Glx.All.PbufferWidth - id: PbufferWidth - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: PbufferWidth - nameWithType: All.PbufferWidth - fullName: OpenTK.Graphics.Glx.All.PbufferWidth - type: Field - source: - id: PbufferWidth - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 267 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: PbufferWidth = 32833 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.SampleBuffers3dfx - commentId: F:OpenTK.Graphics.Glx.All.SampleBuffers3dfx - id: SampleBuffers3dfx - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: SampleBuffers3dfx - nameWithType: All.SampleBuffers3dfx - fullName: OpenTK.Graphics.Glx.All.SampleBuffers3dfx - type: Field - source: - id: SampleBuffers3dfx - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 268 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: SampleBuffers3dfx = 32848 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.Samples3dfx - commentId: F:OpenTK.Graphics.Glx.All.Samples3dfx - id: Samples3dfx - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: Samples3dfx - nameWithType: All.Samples3dfx - fullName: OpenTK.Graphics.Glx.All.Samples3dfx - type: Field - source: - id: Samples3dfx - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 269 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: Samples3dfx = 32849 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.SwapMethodOml - commentId: F:OpenTK.Graphics.Glx.All.SwapMethodOml - id: SwapMethodOml - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: SwapMethodOml - nameWithType: All.SwapMethodOml - fullName: OpenTK.Graphics.Glx.All.SwapMethodOml - type: Field - source: - id: SwapMethodOml - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 270 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: SwapMethodOml = 32864 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.SwapExchangeOml - commentId: F:OpenTK.Graphics.Glx.All.SwapExchangeOml - id: SwapExchangeOml - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: SwapExchangeOml - nameWithType: All.SwapExchangeOml - fullName: OpenTK.Graphics.Glx.All.SwapExchangeOml - type: Field - source: - id: SwapExchangeOml - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 271 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: SwapExchangeOml = 32865 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.SwapCopyOml - commentId: F:OpenTK.Graphics.Glx.All.SwapCopyOml - id: SwapCopyOml - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: SwapCopyOml - nameWithType: All.SwapCopyOml - fullName: OpenTK.Graphics.Glx.All.SwapCopyOml - type: Field - source: - id: SwapCopyOml - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 272 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: SwapCopyOml = 32866 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.SwapUndefinedOml - commentId: F:OpenTK.Graphics.Glx.All.SwapUndefinedOml - id: SwapUndefinedOml - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: SwapUndefinedOml - nameWithType: All.SwapUndefinedOml - fullName: OpenTK.Graphics.Glx.All.SwapUndefinedOml - type: Field - source: - id: SwapUndefinedOml - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 273 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: SwapUndefinedOml = 32867 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.ExchangeCompleteIntel - commentId: F:OpenTK.Graphics.Glx.All.ExchangeCompleteIntel - id: ExchangeCompleteIntel - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: ExchangeCompleteIntel - nameWithType: All.ExchangeCompleteIntel - fullName: OpenTK.Graphics.Glx.All.ExchangeCompleteIntel - type: Field - source: - id: ExchangeCompleteIntel - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 274 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: ExchangeCompleteIntel = 33152 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.CopyCompleteIntel - commentId: F:OpenTK.Graphics.Glx.All.CopyCompleteIntel - id: CopyCompleteIntel - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: CopyCompleteIntel - nameWithType: All.CopyCompleteIntel - fullName: OpenTK.Graphics.Glx.All.CopyCompleteIntel - type: Field - source: - id: CopyCompleteIntel - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 275 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: CopyCompleteIntel = 33153 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.FlipCompleteIntel - commentId: F:OpenTK.Graphics.Glx.All.FlipCompleteIntel - id: FlipCompleteIntel - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: FlipCompleteIntel - nameWithType: All.FlipCompleteIntel - fullName: OpenTK.Graphics.Glx.All.FlipCompleteIntel - type: Field - source: - id: FlipCompleteIntel - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 276 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: FlipCompleteIntel = 33154 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.RendererVendorIdMesa - commentId: F:OpenTK.Graphics.Glx.All.RendererVendorIdMesa - id: RendererVendorIdMesa - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: RendererVendorIdMesa - nameWithType: All.RendererVendorIdMesa - fullName: OpenTK.Graphics.Glx.All.RendererVendorIdMesa - type: Field - source: - id: RendererVendorIdMesa - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 277 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: RendererVendorIdMesa = 33155 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.RendererDeviceIdMesa - commentId: F:OpenTK.Graphics.Glx.All.RendererDeviceIdMesa - id: RendererDeviceIdMesa - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: RendererDeviceIdMesa - nameWithType: All.RendererDeviceIdMesa - fullName: OpenTK.Graphics.Glx.All.RendererDeviceIdMesa - type: Field - source: - id: RendererDeviceIdMesa - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 278 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: RendererDeviceIdMesa = 33156 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.RendererVersionMesa - commentId: F:OpenTK.Graphics.Glx.All.RendererVersionMesa - id: RendererVersionMesa - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: RendererVersionMesa - nameWithType: All.RendererVersionMesa - fullName: OpenTK.Graphics.Glx.All.RendererVersionMesa - type: Field - source: - id: RendererVersionMesa - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 279 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: RendererVersionMesa = 33157 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.RendererAcceleratedMesa - commentId: F:OpenTK.Graphics.Glx.All.RendererAcceleratedMesa - id: RendererAcceleratedMesa - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: RendererAcceleratedMesa - nameWithType: All.RendererAcceleratedMesa - fullName: OpenTK.Graphics.Glx.All.RendererAcceleratedMesa - type: Field - source: - id: RendererAcceleratedMesa - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 280 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: RendererAcceleratedMesa = 33158 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.RendererVideoMemoryMesa - commentId: F:OpenTK.Graphics.Glx.All.RendererVideoMemoryMesa - id: RendererVideoMemoryMesa - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: RendererVideoMemoryMesa - nameWithType: All.RendererVideoMemoryMesa - fullName: OpenTK.Graphics.Glx.All.RendererVideoMemoryMesa - type: Field - source: - id: RendererVideoMemoryMesa - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 281 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: RendererVideoMemoryMesa = 33159 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.RendererUnifiedMemoryArchitectureMesa - commentId: F:OpenTK.Graphics.Glx.All.RendererUnifiedMemoryArchitectureMesa - id: RendererUnifiedMemoryArchitectureMesa - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: RendererUnifiedMemoryArchitectureMesa - nameWithType: All.RendererUnifiedMemoryArchitectureMesa - fullName: OpenTK.Graphics.Glx.All.RendererUnifiedMemoryArchitectureMesa - type: Field - source: - id: RendererUnifiedMemoryArchitectureMesa - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 282 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: RendererUnifiedMemoryArchitectureMesa = 33160 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.RendererPreferredProfileMesa - commentId: F:OpenTK.Graphics.Glx.All.RendererPreferredProfileMesa - id: RendererPreferredProfileMesa - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: RendererPreferredProfileMesa - nameWithType: All.RendererPreferredProfileMesa - fullName: OpenTK.Graphics.Glx.All.RendererPreferredProfileMesa - type: Field - source: - id: RendererPreferredProfileMesa - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 283 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: RendererPreferredProfileMesa = 33161 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.RendererOpenglCoreProfileVersionMesa - commentId: F:OpenTK.Graphics.Glx.All.RendererOpenglCoreProfileVersionMesa - id: RendererOpenglCoreProfileVersionMesa - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: RendererOpenglCoreProfileVersionMesa - nameWithType: All.RendererOpenglCoreProfileVersionMesa - fullName: OpenTK.Graphics.Glx.All.RendererOpenglCoreProfileVersionMesa - type: Field - source: - id: RendererOpenglCoreProfileVersionMesa - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 284 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: RendererOpenglCoreProfileVersionMesa = 33162 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.RendererOpenglCompatibilityProfileVersionMesa - commentId: F:OpenTK.Graphics.Glx.All.RendererOpenglCompatibilityProfileVersionMesa - id: RendererOpenglCompatibilityProfileVersionMesa - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: RendererOpenglCompatibilityProfileVersionMesa - nameWithType: All.RendererOpenglCompatibilityProfileVersionMesa - fullName: OpenTK.Graphics.Glx.All.RendererOpenglCompatibilityProfileVersionMesa - type: Field - source: - id: RendererOpenglCompatibilityProfileVersionMesa - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 285 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: RendererOpenglCompatibilityProfileVersionMesa = 33163 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.RendererOpenglEsProfileVersionMesa - commentId: F:OpenTK.Graphics.Glx.All.RendererOpenglEsProfileVersionMesa - id: RendererOpenglEsProfileVersionMesa - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: RendererOpenglEsProfileVersionMesa - nameWithType: All.RendererOpenglEsProfileVersionMesa - fullName: OpenTK.Graphics.Glx.All.RendererOpenglEsProfileVersionMesa - type: Field - source: - id: RendererOpenglEsProfileVersionMesa - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 286 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: RendererOpenglEsProfileVersionMesa = 33164 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.RendererOpenglEs2ProfileVersionMesa - commentId: F:OpenTK.Graphics.Glx.All.RendererOpenglEs2ProfileVersionMesa - id: RendererOpenglEs2ProfileVersionMesa - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: RendererOpenglEs2ProfileVersionMesa - nameWithType: All.RendererOpenglEs2ProfileVersionMesa - fullName: OpenTK.Graphics.Glx.All.RendererOpenglEs2ProfileVersionMesa - type: Field - source: - id: RendererOpenglEs2ProfileVersionMesa - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 287 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: RendererOpenglEs2ProfileVersionMesa = 33165 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.LoseContextOnResetArb - commentId: F:OpenTK.Graphics.Glx.All.LoseContextOnResetArb - id: LoseContextOnResetArb - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: LoseContextOnResetArb - nameWithType: All.LoseContextOnResetArb - fullName: OpenTK.Graphics.Glx.All.LoseContextOnResetArb - type: Field - source: - id: LoseContextOnResetArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 288 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: LoseContextOnResetArb = 33362 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.ContextResetNotificationStrategyArb - commentId: F:OpenTK.Graphics.Glx.All.ContextResetNotificationStrategyArb - id: ContextResetNotificationStrategyArb - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: ContextResetNotificationStrategyArb - nameWithType: All.ContextResetNotificationStrategyArb - fullName: OpenTK.Graphics.Glx.All.ContextResetNotificationStrategyArb - type: Field - source: - id: ContextResetNotificationStrategyArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 289 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: ContextResetNotificationStrategyArb = 33366 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.NoResetNotificationArb - commentId: F:OpenTK.Graphics.Glx.All.NoResetNotificationArb - id: NoResetNotificationArb - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: NoResetNotificationArb - nameWithType: All.NoResetNotificationArb - fullName: OpenTK.Graphics.Glx.All.NoResetNotificationArb - type: Field - source: - id: NoResetNotificationArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 290 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: NoResetNotificationArb = 33377 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.ContextProfileMaskArb - commentId: F:OpenTK.Graphics.Glx.All.ContextProfileMaskArb - id: ContextProfileMaskArb - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: ContextProfileMaskArb - nameWithType: All.ContextProfileMaskArb - fullName: OpenTK.Graphics.Glx.All.ContextProfileMaskArb - type: Field - source: - id: ContextProfileMaskArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 291 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: ContextProfileMaskArb = 37158 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.SampleBuffers - commentId: F:OpenTK.Graphics.Glx.All.SampleBuffers - id: SampleBuffers - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: SampleBuffers - nameWithType: All.SampleBuffers - fullName: OpenTK.Graphics.Glx.All.SampleBuffers - type: Field - source: - id: SampleBuffers - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 292 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: SampleBuffers = 100000 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.SampleBuffersArb - commentId: F:OpenTK.Graphics.Glx.All.SampleBuffersArb - id: SampleBuffersArb - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: SampleBuffersArb - nameWithType: All.SampleBuffersArb - fullName: OpenTK.Graphics.Glx.All.SampleBuffersArb - type: Field - source: - id: SampleBuffersArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 293 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: SampleBuffersArb = 100000 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.SampleBuffersSgis - commentId: F:OpenTK.Graphics.Glx.All.SampleBuffersSgis - id: SampleBuffersSgis - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: SampleBuffersSgis - nameWithType: All.SampleBuffersSgis - fullName: OpenTK.Graphics.Glx.All.SampleBuffersSgis - type: Field - source: - id: SampleBuffersSgis - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 294 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: SampleBuffersSgis = 100000 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.CoverageSamplesNv - commentId: F:OpenTK.Graphics.Glx.All.CoverageSamplesNv - id: CoverageSamplesNv - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: CoverageSamplesNv - nameWithType: All.CoverageSamplesNv - fullName: OpenTK.Graphics.Glx.All.CoverageSamplesNv - type: Field - source: - id: CoverageSamplesNv - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 295 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: CoverageSamplesNv = 100001 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.Samples - commentId: F:OpenTK.Graphics.Glx.All.Samples - id: Samples - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: Samples - nameWithType: All.Samples - fullName: OpenTK.Graphics.Glx.All.Samples - type: Field - source: - id: Samples - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 296 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: Samples = 100001 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.SamplesArb - commentId: F:OpenTK.Graphics.Glx.All.SamplesArb - id: SamplesArb - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: SamplesArb - nameWithType: All.SamplesArb - fullName: OpenTK.Graphics.Glx.All.SamplesArb - type: Field - source: - id: SamplesArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 297 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: SamplesArb = 100001 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.SamplesSgis - commentId: F:OpenTK.Graphics.Glx.All.SamplesSgis - id: SamplesSgis - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: SamplesSgis - nameWithType: All.SamplesSgis - fullName: OpenTK.Graphics.Glx.All.SamplesSgis - type: Field - source: - id: SamplesSgis - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 298 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: SamplesSgis = 100001 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.BufferSwapCompleteIntelMask - commentId: F:OpenTK.Graphics.Glx.All.BufferSwapCompleteIntelMask - id: BufferSwapCompleteIntelMask - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: BufferSwapCompleteIntelMask - nameWithType: All.BufferSwapCompleteIntelMask - fullName: OpenTK.Graphics.Glx.All.BufferSwapCompleteIntelMask - type: Field - source: - id: BufferSwapCompleteIntelMask - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 299 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: BufferSwapCompleteIntelMask = 67108864 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.BufferClobberMaskSgix - commentId: F:OpenTK.Graphics.Glx.All.BufferClobberMaskSgix - id: BufferClobberMaskSgix - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: BufferClobberMaskSgix - nameWithType: All.BufferClobberMaskSgix - fullName: OpenTK.Graphics.Glx.All.BufferClobberMaskSgix - type: Field - source: - id: BufferClobberMaskSgix - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 300 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: BufferClobberMaskSgix = 134217728 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.PbufferClobberMask - commentId: F:OpenTK.Graphics.Glx.All.PbufferClobberMask - id: PbufferClobberMask - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: PbufferClobberMask - nameWithType: All.PbufferClobberMask - fullName: OpenTK.Graphics.Glx.All.PbufferClobberMask - type: Field - source: - id: PbufferClobberMask - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 301 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: PbufferClobberMask = 134217728 - return: - type: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.All.DontCare - commentId: F:OpenTK.Graphics.Glx.All.DontCare - id: DontCare - parent: OpenTK.Graphics.Glx.All - langs: - - csharp - - vb - name: DontCare - nameWithType: All.DontCare - fullName: OpenTK.Graphics.Glx.All.DontCare - type: Field - source: - id: DontCare - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 302 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: DontCare = 4294967295 - return: - type: OpenTK.Graphics.Glx.All -references: -- uid: OpenTK.Graphics.Glx - commentId: N:OpenTK.Graphics.Glx - href: OpenTK.html - name: OpenTK.Graphics.Glx - nameWithType: OpenTK.Graphics.Glx - fullName: OpenTK.Graphics.Glx - spec.csharp: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Glx - name: Glx - href: OpenTK.Graphics.Glx.html - spec.vb: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Glx - name: Glx - href: OpenTK.Graphics.Glx.html -- uid: OpenTK.Graphics.Glx.All - commentId: T:OpenTK.Graphics.Glx.All - parent: OpenTK.Graphics.Glx - href: OpenTK.Graphics.Glx.All.html - name: All - nameWithType: All - fullName: OpenTK.Graphics.Glx.All diff --git a/api/OpenTK.Graphics.Glx.Colormap.yml b/api/OpenTK.Graphics.Glx.Colormap.yml deleted file mode 100644 index 46dfa340..00000000 --- a/api/OpenTK.Graphics.Glx.Colormap.yml +++ /dev/null @@ -1,440 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: OpenTK.Graphics.Glx.Colormap - commentId: T:OpenTK.Graphics.Glx.Colormap - id: Colormap - parent: OpenTK.Graphics.Glx - children: - - OpenTK.Graphics.Glx.Colormap.#ctor(System.UIntPtr) - - OpenTK.Graphics.Glx.Colormap.XID - - OpenTK.Graphics.Glx.Colormap.op_Explicit(OpenTK.Graphics.Glx.Colormap)~System.UIntPtr - - OpenTK.Graphics.Glx.Colormap.op_Explicit(System.UIntPtr)~OpenTK.Graphics.Glx.Colormap - langs: - - csharp - - vb - name: Colormap - nameWithType: Colormap - fullName: OpenTK.Graphics.Glx.Colormap - type: Struct - source: - id: Colormap - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 164 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: An X11 Colormap handle. - example: [] - syntax: - content: public struct Colormap - content.vb: Public Structure Colormap - inheritedMembers: - - System.ValueType.Equals(System.Object) - - System.ValueType.GetHashCode - - System.ValueType.ToString - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.ReferenceEquals(System.Object,System.Object) -- uid: OpenTK.Graphics.Glx.Colormap.XID - commentId: F:OpenTK.Graphics.Glx.Colormap.XID - id: XID - parent: OpenTK.Graphics.Glx.Colormap - langs: - - csharp - - vb - name: XID - nameWithType: Colormap.XID - fullName: OpenTK.Graphics.Glx.Colormap.XID - type: Field - source: - id: XID - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 169 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: The underlying XID. - example: [] - syntax: - content: public nuint XID - return: - type: System.UIntPtr - content.vb: Public XID As UIntPtr -- uid: OpenTK.Graphics.Glx.Colormap.#ctor(System.UIntPtr) - commentId: M:OpenTK.Graphics.Glx.Colormap.#ctor(System.UIntPtr) - id: '#ctor(System.UIntPtr)' - parent: OpenTK.Graphics.Glx.Colormap - langs: - - csharp - - vb - name: Colormap(nuint) - nameWithType: Colormap.Colormap(nuint) - fullName: OpenTK.Graphics.Glx.Colormap.Colormap(nuint) - type: Constructor - source: - id: .ctor - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 175 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: Constructs a new Colormap wrapper struct from an XID. - example: [] - syntax: - content: public Colormap(nuint xid) - parameters: - - id: xid - type: System.UIntPtr - description: The XID of the Colormap. - content.vb: Public Sub New(xid As UIntPtr) - overload: OpenTK.Graphics.Glx.Colormap.#ctor* - nameWithType.vb: Colormap.New(UIntPtr) - fullName.vb: OpenTK.Graphics.Glx.Colormap.New(System.UIntPtr) - name.vb: New(UIntPtr) -- uid: OpenTK.Graphics.Glx.Colormap.op_Explicit(OpenTK.Graphics.Glx.Colormap)~System.UIntPtr - commentId: M:OpenTK.Graphics.Glx.Colormap.op_Explicit(OpenTK.Graphics.Glx.Colormap)~System.UIntPtr - id: op_Explicit(OpenTK.Graphics.Glx.Colormap)~System.UIntPtr - parent: OpenTK.Graphics.Glx.Colormap - langs: - - csharp - - vb - name: explicit operator nuint(Colormap) - nameWithType: Colormap.explicit operator nuint(Colormap) - fullName: OpenTK.Graphics.Glx.Colormap.explicit operator nuint(OpenTK.Graphics.Glx.Colormap) - type: Operator - source: - id: op_Explicit - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 180 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: public static explicit operator nuint(Colormap handle) - parameters: - - id: handle - type: OpenTK.Graphics.Glx.Colormap - return: - type: System.UIntPtr - content.vb: Public Shared Narrowing Operator CType(handle As Colormap) As UIntPtr - overload: OpenTK.Graphics.Glx.Colormap.op_Explicit* - nameWithType.vb: Colormap.CType(Colormap) - fullName.vb: OpenTK.Graphics.Glx.Colormap.CType(OpenTK.Graphics.Glx.Colormap) - name.vb: CType(Colormap) -- uid: OpenTK.Graphics.Glx.Colormap.op_Explicit(System.UIntPtr)~OpenTK.Graphics.Glx.Colormap - commentId: M:OpenTK.Graphics.Glx.Colormap.op_Explicit(System.UIntPtr)~OpenTK.Graphics.Glx.Colormap - id: op_Explicit(System.UIntPtr)~OpenTK.Graphics.Glx.Colormap - parent: OpenTK.Graphics.Glx.Colormap - langs: - - csharp - - vb - name: explicit operator Colormap(nuint) - nameWithType: Colormap.explicit operator Colormap(nuint) - fullName: OpenTK.Graphics.Glx.Colormap.explicit operator OpenTK.Graphics.Glx.Colormap(nuint) - type: Operator - source: - id: op_Explicit - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 181 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: public static explicit operator Colormap(nuint xid) - parameters: - - id: xid - type: System.UIntPtr - return: - type: OpenTK.Graphics.Glx.Colormap - content.vb: Public Shared Narrowing Operator CType(xid As UIntPtr) As Colormap - overload: OpenTK.Graphics.Glx.Colormap.op_Explicit* - nameWithType.vb: Colormap.CType(UIntPtr) - fullName.vb: OpenTK.Graphics.Glx.Colormap.CType(System.UIntPtr) - name.vb: CType(UIntPtr) -references: -- uid: OpenTK.Graphics.Glx - commentId: N:OpenTK.Graphics.Glx - href: OpenTK.html - name: OpenTK.Graphics.Glx - nameWithType: OpenTK.Graphics.Glx - fullName: OpenTK.Graphics.Glx - spec.csharp: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Glx - name: Glx - href: OpenTK.Graphics.Glx.html - spec.vb: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Glx - name: Glx - href: OpenTK.Graphics.Glx.html -- uid: System.ValueType.Equals(System.Object) - commentId: M:System.ValueType.Equals(System.Object) - parent: System.ValueType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals - name: Equals(object) - nameWithType: ValueType.Equals(object) - fullName: System.ValueType.Equals(object) - nameWithType.vb: ValueType.Equals(Object) - fullName.vb: System.ValueType.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: System.ValueType.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.ValueType.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.ValueType.GetHashCode - commentId: M:System.ValueType.GetHashCode - parent: System.ValueType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - name: GetHashCode() - nameWithType: ValueType.GetHashCode() - fullName: System.ValueType.GetHashCode() - spec.csharp: - - uid: System.ValueType.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - - name: ( - - name: ) - spec.vb: - - uid: System.ValueType.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - - name: ( - - name: ) -- uid: System.ValueType.ToString - commentId: M:System.ValueType.ToString - parent: System.ValueType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - name: ToString() - nameWithType: ValueType.ToString() - fullName: System.ValueType.ToString() - spec.csharp: - - uid: System.ValueType.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - - name: ( - - name: ) - spec.vb: - - uid: System.ValueType.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - - name: ( - - name: ) -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.ValueType - commentId: T:System.ValueType - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype - name: ValueType - nameWithType: ValueType - fullName: System.ValueType -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: System.UIntPtr - commentId: T:System.UIntPtr - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uintptr - name: nuint - nameWithType: nuint - fullName: nuint - nameWithType.vb: UIntPtr - fullName.vb: System.UIntPtr - name.vb: UIntPtr -- uid: OpenTK.Graphics.Glx.Colormap.#ctor* - commentId: Overload:OpenTK.Graphics.Glx.Colormap.#ctor - href: OpenTK.Graphics.Glx.Colormap.html#OpenTK_Graphics_Glx_Colormap__ctor_System_UIntPtr_ - name: Colormap - nameWithType: Colormap.Colormap - fullName: OpenTK.Graphics.Glx.Colormap.Colormap - nameWithType.vb: Colormap.New - fullName.vb: OpenTK.Graphics.Glx.Colormap.New - name.vb: New -- uid: OpenTK.Graphics.Glx.Colormap.op_Explicit* - commentId: Overload:OpenTK.Graphics.Glx.Colormap.op_Explicit - name: explicit operator - nameWithType: Colormap.explicit operator - fullName: OpenTK.Graphics.Glx.Colormap.explicit operator - nameWithType.vb: Colormap.CType - fullName.vb: OpenTK.Graphics.Glx.Colormap.CType - name.vb: CType - spec.csharp: - - name: explicit - - name: " " - - name: operator -- uid: OpenTK.Graphics.Glx.Colormap - commentId: T:OpenTK.Graphics.Glx.Colormap - parent: OpenTK.Graphics.Glx - href: OpenTK.Graphics.Glx.Colormap.html - name: Colormap - nameWithType: Colormap - fullName: OpenTK.Graphics.Glx.Colormap diff --git a/api/OpenTK.Graphics.Glx.DisplayPtr.yml b/api/OpenTK.Graphics.Glx.DisplayPtr.yml deleted file mode 100644 index ce20b45a..00000000 --- a/api/OpenTK.Graphics.Glx.DisplayPtr.yml +++ /dev/null @@ -1,440 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: OpenTK.Graphics.Glx.DisplayPtr - commentId: T:OpenTK.Graphics.Glx.DisplayPtr - id: DisplayPtr - parent: OpenTK.Graphics.Glx - children: - - OpenTK.Graphics.Glx.DisplayPtr.#ctor(System.IntPtr) - - OpenTK.Graphics.Glx.DisplayPtr.Value - - OpenTK.Graphics.Glx.DisplayPtr.op_Explicit(OpenTK.Graphics.Glx.DisplayPtr)~System.IntPtr - - OpenTK.Graphics.Glx.DisplayPtr.op_Explicit(System.IntPtr)~OpenTK.Graphics.Glx.DisplayPtr - langs: - - csharp - - vb - name: DisplayPtr - nameWithType: DisplayPtr - fullName: OpenTK.Graphics.Glx.DisplayPtr - type: Struct - source: - id: DisplayPtr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 49 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: Opaque struct pointer for X11 Display*. - example: [] - syntax: - content: public struct DisplayPtr - content.vb: Public Structure DisplayPtr - inheritedMembers: - - System.ValueType.Equals(System.Object) - - System.ValueType.GetHashCode - - System.ValueType.ToString - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.ReferenceEquals(System.Object,System.Object) -- uid: OpenTK.Graphics.Glx.DisplayPtr.Value - commentId: F:OpenTK.Graphics.Glx.DisplayPtr.Value - id: Value - parent: OpenTK.Graphics.Glx.DisplayPtr - langs: - - csharp - - vb - name: Value - nameWithType: DisplayPtr.Value - fullName: OpenTK.Graphics.Glx.DisplayPtr.Value - type: Field - source: - id: Value - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 54 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: The underlying pointer value. - example: [] - syntax: - content: public nint Value - return: - type: System.IntPtr - content.vb: Public Value As IntPtr -- uid: OpenTK.Graphics.Glx.DisplayPtr.#ctor(System.IntPtr) - commentId: M:OpenTK.Graphics.Glx.DisplayPtr.#ctor(System.IntPtr) - id: '#ctor(System.IntPtr)' - parent: OpenTK.Graphics.Glx.DisplayPtr - langs: - - csharp - - vb - name: DisplayPtr(nint) - nameWithType: DisplayPtr.DisplayPtr(nint) - fullName: OpenTK.Graphics.Glx.DisplayPtr.DisplayPtr(nint) - type: Constructor - source: - id: .ctor - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 60 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: Constructs a new Display* wrapper struct from a Display pointer. - example: [] - syntax: - content: public DisplayPtr(nint value) - parameters: - - id: value - type: System.IntPtr - description: The display pointer. - content.vb: Public Sub New(value As IntPtr) - overload: OpenTK.Graphics.Glx.DisplayPtr.#ctor* - nameWithType.vb: DisplayPtr.New(IntPtr) - fullName.vb: OpenTK.Graphics.Glx.DisplayPtr.New(System.IntPtr) - name.vb: New(IntPtr) -- uid: OpenTK.Graphics.Glx.DisplayPtr.op_Explicit(OpenTK.Graphics.Glx.DisplayPtr)~System.IntPtr - commentId: M:OpenTK.Graphics.Glx.DisplayPtr.op_Explicit(OpenTK.Graphics.Glx.DisplayPtr)~System.IntPtr - id: op_Explicit(OpenTK.Graphics.Glx.DisplayPtr)~System.IntPtr - parent: OpenTK.Graphics.Glx.DisplayPtr - langs: - - csharp - - vb - name: explicit operator nint(DisplayPtr) - nameWithType: DisplayPtr.explicit operator nint(DisplayPtr) - fullName: OpenTK.Graphics.Glx.DisplayPtr.explicit operator nint(OpenTK.Graphics.Glx.DisplayPtr) - type: Operator - source: - id: op_Explicit - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 65 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: public static explicit operator nint(DisplayPtr handle) - parameters: - - id: handle - type: OpenTK.Graphics.Glx.DisplayPtr - return: - type: System.IntPtr - content.vb: Public Shared Narrowing Operator CType(handle As DisplayPtr) As IntPtr - overload: OpenTK.Graphics.Glx.DisplayPtr.op_Explicit* - nameWithType.vb: DisplayPtr.CType(DisplayPtr) - fullName.vb: OpenTK.Graphics.Glx.DisplayPtr.CType(OpenTK.Graphics.Glx.DisplayPtr) - name.vb: CType(DisplayPtr) -- uid: OpenTK.Graphics.Glx.DisplayPtr.op_Explicit(System.IntPtr)~OpenTK.Graphics.Glx.DisplayPtr - commentId: M:OpenTK.Graphics.Glx.DisplayPtr.op_Explicit(System.IntPtr)~OpenTK.Graphics.Glx.DisplayPtr - id: op_Explicit(System.IntPtr)~OpenTK.Graphics.Glx.DisplayPtr - parent: OpenTK.Graphics.Glx.DisplayPtr - langs: - - csharp - - vb - name: explicit operator DisplayPtr(nint) - nameWithType: DisplayPtr.explicit operator DisplayPtr(nint) - fullName: OpenTK.Graphics.Glx.DisplayPtr.explicit operator OpenTK.Graphics.Glx.DisplayPtr(nint) - type: Operator - source: - id: op_Explicit - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 66 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: public static explicit operator DisplayPtr(nint ptr) - parameters: - - id: ptr - type: System.IntPtr - return: - type: OpenTK.Graphics.Glx.DisplayPtr - content.vb: Public Shared Narrowing Operator CType(ptr As IntPtr) As DisplayPtr - overload: OpenTK.Graphics.Glx.DisplayPtr.op_Explicit* - nameWithType.vb: DisplayPtr.CType(IntPtr) - fullName.vb: OpenTK.Graphics.Glx.DisplayPtr.CType(System.IntPtr) - name.vb: CType(IntPtr) -references: -- uid: OpenTK.Graphics.Glx - commentId: N:OpenTK.Graphics.Glx - href: OpenTK.html - name: OpenTK.Graphics.Glx - nameWithType: OpenTK.Graphics.Glx - fullName: OpenTK.Graphics.Glx - spec.csharp: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Glx - name: Glx - href: OpenTK.Graphics.Glx.html - spec.vb: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Glx - name: Glx - href: OpenTK.Graphics.Glx.html -- uid: System.ValueType.Equals(System.Object) - commentId: M:System.ValueType.Equals(System.Object) - parent: System.ValueType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals - name: Equals(object) - nameWithType: ValueType.Equals(object) - fullName: System.ValueType.Equals(object) - nameWithType.vb: ValueType.Equals(Object) - fullName.vb: System.ValueType.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: System.ValueType.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.ValueType.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.ValueType.GetHashCode - commentId: M:System.ValueType.GetHashCode - parent: System.ValueType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - name: GetHashCode() - nameWithType: ValueType.GetHashCode() - fullName: System.ValueType.GetHashCode() - spec.csharp: - - uid: System.ValueType.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - - name: ( - - name: ) - spec.vb: - - uid: System.ValueType.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - - name: ( - - name: ) -- uid: System.ValueType.ToString - commentId: M:System.ValueType.ToString - parent: System.ValueType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - name: ToString() - nameWithType: ValueType.ToString() - fullName: System.ValueType.ToString() - spec.csharp: - - uid: System.ValueType.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - - name: ( - - name: ) - spec.vb: - - uid: System.ValueType.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - - name: ( - - name: ) -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.ValueType - commentId: T:System.ValueType - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype - name: ValueType - nameWithType: ValueType - fullName: System.ValueType -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: System.IntPtr - commentId: T:System.IntPtr - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: nint - nameWithType: nint - fullName: nint - nameWithType.vb: IntPtr - fullName.vb: System.IntPtr - name.vb: IntPtr -- uid: OpenTK.Graphics.Glx.DisplayPtr.#ctor* - commentId: Overload:OpenTK.Graphics.Glx.DisplayPtr.#ctor - href: OpenTK.Graphics.Glx.DisplayPtr.html#OpenTK_Graphics_Glx_DisplayPtr__ctor_System_IntPtr_ - name: DisplayPtr - nameWithType: DisplayPtr.DisplayPtr - fullName: OpenTK.Graphics.Glx.DisplayPtr.DisplayPtr - nameWithType.vb: DisplayPtr.New - fullName.vb: OpenTK.Graphics.Glx.DisplayPtr.New - name.vb: New -- uid: OpenTK.Graphics.Glx.DisplayPtr.op_Explicit* - commentId: Overload:OpenTK.Graphics.Glx.DisplayPtr.op_Explicit - name: explicit operator - nameWithType: DisplayPtr.explicit operator - fullName: OpenTK.Graphics.Glx.DisplayPtr.explicit operator - nameWithType.vb: DisplayPtr.CType - fullName.vb: OpenTK.Graphics.Glx.DisplayPtr.CType - name.vb: CType - spec.csharp: - - name: explicit - - name: " " - - name: operator -- uid: OpenTK.Graphics.Glx.DisplayPtr - commentId: T:OpenTK.Graphics.Glx.DisplayPtr - parent: OpenTK.Graphics.Glx - href: OpenTK.Graphics.Glx.DisplayPtr.html - name: DisplayPtr - nameWithType: DisplayPtr - fullName: OpenTK.Graphics.Glx.DisplayPtr diff --git a/api/OpenTK.Graphics.Glx.Font.yml b/api/OpenTK.Graphics.Glx.Font.yml deleted file mode 100644 index 76ac8289..00000000 --- a/api/OpenTK.Graphics.Glx.Font.yml +++ /dev/null @@ -1,440 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: OpenTK.Graphics.Glx.Font - commentId: T:OpenTK.Graphics.Glx.Font - id: Font - parent: OpenTK.Graphics.Glx - children: - - OpenTK.Graphics.Glx.Font.#ctor(System.UIntPtr) - - OpenTK.Graphics.Glx.Font.XID - - OpenTK.Graphics.Glx.Font.op_Explicit(OpenTK.Graphics.Glx.Font)~System.UIntPtr - - OpenTK.Graphics.Glx.Font.op_Explicit(System.UIntPtr)~OpenTK.Graphics.Glx.Font - langs: - - csharp - - vb - name: Font - nameWithType: Font - fullName: OpenTK.Graphics.Glx.Font - type: Struct - source: - id: Font - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 118 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: An X11 font handle. - example: [] - syntax: - content: public struct Font - content.vb: Public Structure Font - inheritedMembers: - - System.ValueType.Equals(System.Object) - - System.ValueType.GetHashCode - - System.ValueType.ToString - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.ReferenceEquals(System.Object,System.Object) -- uid: OpenTK.Graphics.Glx.Font.XID - commentId: F:OpenTK.Graphics.Glx.Font.XID - id: XID - parent: OpenTK.Graphics.Glx.Font - langs: - - csharp - - vb - name: XID - nameWithType: Font.XID - fullName: OpenTK.Graphics.Glx.Font.XID - type: Field - source: - id: XID - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 123 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: The underlying XID. - example: [] - syntax: - content: public nuint XID - return: - type: System.UIntPtr - content.vb: Public XID As UIntPtr -- uid: OpenTK.Graphics.Glx.Font.#ctor(System.UIntPtr) - commentId: M:OpenTK.Graphics.Glx.Font.#ctor(System.UIntPtr) - id: '#ctor(System.UIntPtr)' - parent: OpenTK.Graphics.Glx.Font - langs: - - csharp - - vb - name: Font(nuint) - nameWithType: Font.Font(nuint) - fullName: OpenTK.Graphics.Glx.Font.Font(nuint) - type: Constructor - source: - id: .ctor - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 129 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: Constructs a new Font wrapper struct from an XID. - example: [] - syntax: - content: public Font(nuint xid) - parameters: - - id: xid - type: System.UIntPtr - description: The XID of the window. - content.vb: Public Sub New(xid As UIntPtr) - overload: OpenTK.Graphics.Glx.Font.#ctor* - nameWithType.vb: Font.New(UIntPtr) - fullName.vb: OpenTK.Graphics.Glx.Font.New(System.UIntPtr) - name.vb: New(UIntPtr) -- uid: OpenTK.Graphics.Glx.Font.op_Explicit(OpenTK.Graphics.Glx.Font)~System.UIntPtr - commentId: M:OpenTK.Graphics.Glx.Font.op_Explicit(OpenTK.Graphics.Glx.Font)~System.UIntPtr - id: op_Explicit(OpenTK.Graphics.Glx.Font)~System.UIntPtr - parent: OpenTK.Graphics.Glx.Font - langs: - - csharp - - vb - name: explicit operator nuint(Font) - nameWithType: Font.explicit operator nuint(Font) - fullName: OpenTK.Graphics.Glx.Font.explicit operator nuint(OpenTK.Graphics.Glx.Font) - type: Operator - source: - id: op_Explicit - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 134 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: public static explicit operator nuint(Font handle) - parameters: - - id: handle - type: OpenTK.Graphics.Glx.Font - return: - type: System.UIntPtr - content.vb: Public Shared Narrowing Operator CType(handle As Font) As UIntPtr - overload: OpenTK.Graphics.Glx.Font.op_Explicit* - nameWithType.vb: Font.CType(Font) - fullName.vb: OpenTK.Graphics.Glx.Font.CType(OpenTK.Graphics.Glx.Font) - name.vb: CType(Font) -- uid: OpenTK.Graphics.Glx.Font.op_Explicit(System.UIntPtr)~OpenTK.Graphics.Glx.Font - commentId: M:OpenTK.Graphics.Glx.Font.op_Explicit(System.UIntPtr)~OpenTK.Graphics.Glx.Font - id: op_Explicit(System.UIntPtr)~OpenTK.Graphics.Glx.Font - parent: OpenTK.Graphics.Glx.Font - langs: - - csharp - - vb - name: explicit operator Font(nuint) - nameWithType: Font.explicit operator Font(nuint) - fullName: OpenTK.Graphics.Glx.Font.explicit operator OpenTK.Graphics.Glx.Font(nuint) - type: Operator - source: - id: op_Explicit - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 135 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: public static explicit operator Font(nuint xid) - parameters: - - id: xid - type: System.UIntPtr - return: - type: OpenTK.Graphics.Glx.Font - content.vb: Public Shared Narrowing Operator CType(xid As UIntPtr) As Font - overload: OpenTK.Graphics.Glx.Font.op_Explicit* - nameWithType.vb: Font.CType(UIntPtr) - fullName.vb: OpenTK.Graphics.Glx.Font.CType(System.UIntPtr) - name.vb: CType(UIntPtr) -references: -- uid: OpenTK.Graphics.Glx - commentId: N:OpenTK.Graphics.Glx - href: OpenTK.html - name: OpenTK.Graphics.Glx - nameWithType: OpenTK.Graphics.Glx - fullName: OpenTK.Graphics.Glx - spec.csharp: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Glx - name: Glx - href: OpenTK.Graphics.Glx.html - spec.vb: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Glx - name: Glx - href: OpenTK.Graphics.Glx.html -- uid: System.ValueType.Equals(System.Object) - commentId: M:System.ValueType.Equals(System.Object) - parent: System.ValueType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals - name: Equals(object) - nameWithType: ValueType.Equals(object) - fullName: System.ValueType.Equals(object) - nameWithType.vb: ValueType.Equals(Object) - fullName.vb: System.ValueType.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: System.ValueType.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.ValueType.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.ValueType.GetHashCode - commentId: M:System.ValueType.GetHashCode - parent: System.ValueType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - name: GetHashCode() - nameWithType: ValueType.GetHashCode() - fullName: System.ValueType.GetHashCode() - spec.csharp: - - uid: System.ValueType.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - - name: ( - - name: ) - spec.vb: - - uid: System.ValueType.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - - name: ( - - name: ) -- uid: System.ValueType.ToString - commentId: M:System.ValueType.ToString - parent: System.ValueType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - name: ToString() - nameWithType: ValueType.ToString() - fullName: System.ValueType.ToString() - spec.csharp: - - uid: System.ValueType.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - - name: ( - - name: ) - spec.vb: - - uid: System.ValueType.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - - name: ( - - name: ) -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.ValueType - commentId: T:System.ValueType - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype - name: ValueType - nameWithType: ValueType - fullName: System.ValueType -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: System.UIntPtr - commentId: T:System.UIntPtr - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uintptr - name: nuint - nameWithType: nuint - fullName: nuint - nameWithType.vb: UIntPtr - fullName.vb: System.UIntPtr - name.vb: UIntPtr -- uid: OpenTK.Graphics.Glx.Font.#ctor* - commentId: Overload:OpenTK.Graphics.Glx.Font.#ctor - href: OpenTK.Graphics.Glx.Font.html#OpenTK_Graphics_Glx_Font__ctor_System_UIntPtr_ - name: Font - nameWithType: Font.Font - fullName: OpenTK.Graphics.Glx.Font.Font - nameWithType.vb: Font.New - fullName.vb: OpenTK.Graphics.Glx.Font.New - name.vb: New -- uid: OpenTK.Graphics.Glx.Font.op_Explicit* - commentId: Overload:OpenTK.Graphics.Glx.Font.op_Explicit - name: explicit operator - nameWithType: Font.explicit operator - fullName: OpenTK.Graphics.Glx.Font.explicit operator - nameWithType.vb: Font.CType - fullName.vb: OpenTK.Graphics.Glx.Font.CType - name.vb: CType - spec.csharp: - - name: explicit - - name: " " - - name: operator -- uid: OpenTK.Graphics.Glx.Font - commentId: T:OpenTK.Graphics.Glx.Font - parent: OpenTK.Graphics.Glx - href: OpenTK.Graphics.Glx.Font.html - name: Font - nameWithType: Font - fullName: OpenTK.Graphics.Glx.Font diff --git a/api/OpenTK.Graphics.Glx.GLXAttribute.yml b/api/OpenTK.Graphics.Glx.GLXAttribute.yml deleted file mode 100644 index 294ca6f1..00000000 --- a/api/OpenTK.Graphics.Glx.GLXAttribute.yml +++ /dev/null @@ -1,821 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: OpenTK.Graphics.Glx.GLXAttribute - commentId: T:OpenTK.Graphics.Glx.GLXAttribute - id: GLXAttribute - parent: OpenTK.Graphics.Glx - children: - - OpenTK.Graphics.Glx.GLXAttribute.AccumAlphaSize - - OpenTK.Graphics.Glx.GLXAttribute.AccumBlueSize - - OpenTK.Graphics.Glx.GLXAttribute.AccumGreenSize - - OpenTK.Graphics.Glx.GLXAttribute.AccumRedSize - - OpenTK.Graphics.Glx.GLXAttribute.AlphaSize - - OpenTK.Graphics.Glx.GLXAttribute.AuxBuffers - - OpenTK.Graphics.Glx.GLXAttribute.BlueSize - - OpenTK.Graphics.Glx.GLXAttribute.BufferSize - - OpenTK.Graphics.Glx.GLXAttribute.ConfigCaveat - - OpenTK.Graphics.Glx.GLXAttribute.DepthSize - - OpenTK.Graphics.Glx.GLXAttribute.Doublebuffer - - OpenTK.Graphics.Glx.GLXAttribute.GreenSize - - OpenTK.Graphics.Glx.GLXAttribute.Level - - OpenTK.Graphics.Glx.GLXAttribute.RedSize - - OpenTK.Graphics.Glx.GLXAttribute.Rgba - - OpenTK.Graphics.Glx.GLXAttribute.StencilSize - - OpenTK.Graphics.Glx.GLXAttribute.Stereo - - OpenTK.Graphics.Glx.GLXAttribute.TransparentAlphaValue - - OpenTK.Graphics.Glx.GLXAttribute.TransparentAlphaValueExt - - OpenTK.Graphics.Glx.GLXAttribute.TransparentBlueValue - - OpenTK.Graphics.Glx.GLXAttribute.TransparentBlueValueExt - - OpenTK.Graphics.Glx.GLXAttribute.TransparentGreenValue - - OpenTK.Graphics.Glx.GLXAttribute.TransparentGreenValueExt - - OpenTK.Graphics.Glx.GLXAttribute.TransparentIndexValue - - OpenTK.Graphics.Glx.GLXAttribute.TransparentIndexValueExt - - OpenTK.Graphics.Glx.GLXAttribute.TransparentRedValue - - OpenTK.Graphics.Glx.GLXAttribute.TransparentRedValueExt - - OpenTK.Graphics.Glx.GLXAttribute.TransparentType - - OpenTK.Graphics.Glx.GLXAttribute.TransparentTypeExt - - OpenTK.Graphics.Glx.GLXAttribute.UseGl - - OpenTK.Graphics.Glx.GLXAttribute.VisualCaveatExt - - OpenTK.Graphics.Glx.GLXAttribute.XVisualType - - OpenTK.Graphics.Glx.GLXAttribute.XVisualTypeExt - langs: - - csharp - - vb - name: GLXAttribute - nameWithType: GLXAttribute - fullName: OpenTK.Graphics.Glx.GLXAttribute - type: Enum - source: - id: GLXAttribute - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 304 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: 'public enum GLXAttribute : uint' - content.vb: Public Enum GLXAttribute As UInteger -- uid: OpenTK.Graphics.Glx.GLXAttribute.UseGl - commentId: F:OpenTK.Graphics.Glx.GLXAttribute.UseGl - id: UseGl - parent: OpenTK.Graphics.Glx.GLXAttribute - langs: - - csharp - - vb - name: UseGl - nameWithType: GLXAttribute.UseGl - fullName: OpenTK.Graphics.Glx.GLXAttribute.UseGl - type: Field - source: - id: UseGl - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 306 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: UseGl = 1 - return: - type: OpenTK.Graphics.Glx.GLXAttribute -- uid: OpenTK.Graphics.Glx.GLXAttribute.BufferSize - commentId: F:OpenTK.Graphics.Glx.GLXAttribute.BufferSize - id: BufferSize - parent: OpenTK.Graphics.Glx.GLXAttribute - langs: - - csharp - - vb - name: BufferSize - nameWithType: GLXAttribute.BufferSize - fullName: OpenTK.Graphics.Glx.GLXAttribute.BufferSize - type: Field - source: - id: BufferSize - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 307 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: BufferSize = 2 - return: - type: OpenTK.Graphics.Glx.GLXAttribute -- uid: OpenTK.Graphics.Glx.GLXAttribute.Level - commentId: F:OpenTK.Graphics.Glx.GLXAttribute.Level - id: Level - parent: OpenTK.Graphics.Glx.GLXAttribute - langs: - - csharp - - vb - name: Level - nameWithType: GLXAttribute.Level - fullName: OpenTK.Graphics.Glx.GLXAttribute.Level - type: Field - source: - id: Level - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 308 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: Level = 3 - return: - type: OpenTK.Graphics.Glx.GLXAttribute -- uid: OpenTK.Graphics.Glx.GLXAttribute.Rgba - commentId: F:OpenTK.Graphics.Glx.GLXAttribute.Rgba - id: Rgba - parent: OpenTK.Graphics.Glx.GLXAttribute - langs: - - csharp - - vb - name: Rgba - nameWithType: GLXAttribute.Rgba - fullName: OpenTK.Graphics.Glx.GLXAttribute.Rgba - type: Field - source: - id: Rgba - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 309 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: Rgba = 4 - return: - type: OpenTK.Graphics.Glx.GLXAttribute -- uid: OpenTK.Graphics.Glx.GLXAttribute.Doublebuffer - commentId: F:OpenTK.Graphics.Glx.GLXAttribute.Doublebuffer - id: Doublebuffer - parent: OpenTK.Graphics.Glx.GLXAttribute - langs: - - csharp - - vb - name: Doublebuffer - nameWithType: GLXAttribute.Doublebuffer - fullName: OpenTK.Graphics.Glx.GLXAttribute.Doublebuffer - type: Field - source: - id: Doublebuffer - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 310 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: Doublebuffer = 5 - return: - type: OpenTK.Graphics.Glx.GLXAttribute -- uid: OpenTK.Graphics.Glx.GLXAttribute.Stereo - commentId: F:OpenTK.Graphics.Glx.GLXAttribute.Stereo - id: Stereo - parent: OpenTK.Graphics.Glx.GLXAttribute - langs: - - csharp - - vb - name: Stereo - nameWithType: GLXAttribute.Stereo - fullName: OpenTK.Graphics.Glx.GLXAttribute.Stereo - type: Field - source: - id: Stereo - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 311 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: Stereo = 6 - return: - type: OpenTK.Graphics.Glx.GLXAttribute -- uid: OpenTK.Graphics.Glx.GLXAttribute.AuxBuffers - commentId: F:OpenTK.Graphics.Glx.GLXAttribute.AuxBuffers - id: AuxBuffers - parent: OpenTK.Graphics.Glx.GLXAttribute - langs: - - csharp - - vb - name: AuxBuffers - nameWithType: GLXAttribute.AuxBuffers - fullName: OpenTK.Graphics.Glx.GLXAttribute.AuxBuffers - type: Field - source: - id: AuxBuffers - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 312 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: AuxBuffers = 7 - return: - type: OpenTK.Graphics.Glx.GLXAttribute -- uid: OpenTK.Graphics.Glx.GLXAttribute.RedSize - commentId: F:OpenTK.Graphics.Glx.GLXAttribute.RedSize - id: RedSize - parent: OpenTK.Graphics.Glx.GLXAttribute - langs: - - csharp - - vb - name: RedSize - nameWithType: GLXAttribute.RedSize - fullName: OpenTK.Graphics.Glx.GLXAttribute.RedSize - type: Field - source: - id: RedSize - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 313 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: RedSize = 8 - return: - type: OpenTK.Graphics.Glx.GLXAttribute -- uid: OpenTK.Graphics.Glx.GLXAttribute.GreenSize - commentId: F:OpenTK.Graphics.Glx.GLXAttribute.GreenSize - id: GreenSize - parent: OpenTK.Graphics.Glx.GLXAttribute - langs: - - csharp - - vb - name: GreenSize - nameWithType: GLXAttribute.GreenSize - fullName: OpenTK.Graphics.Glx.GLXAttribute.GreenSize - type: Field - source: - id: GreenSize - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 314 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: GreenSize = 9 - return: - type: OpenTK.Graphics.Glx.GLXAttribute -- uid: OpenTK.Graphics.Glx.GLXAttribute.BlueSize - commentId: F:OpenTK.Graphics.Glx.GLXAttribute.BlueSize - id: BlueSize - parent: OpenTK.Graphics.Glx.GLXAttribute - langs: - - csharp - - vb - name: BlueSize - nameWithType: GLXAttribute.BlueSize - fullName: OpenTK.Graphics.Glx.GLXAttribute.BlueSize - type: Field - source: - id: BlueSize - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 315 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: BlueSize = 10 - return: - type: OpenTK.Graphics.Glx.GLXAttribute -- uid: OpenTK.Graphics.Glx.GLXAttribute.AlphaSize - commentId: F:OpenTK.Graphics.Glx.GLXAttribute.AlphaSize - id: AlphaSize - parent: OpenTK.Graphics.Glx.GLXAttribute - langs: - - csharp - - vb - name: AlphaSize - nameWithType: GLXAttribute.AlphaSize - fullName: OpenTK.Graphics.Glx.GLXAttribute.AlphaSize - type: Field - source: - id: AlphaSize - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 316 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: AlphaSize = 11 - return: - type: OpenTK.Graphics.Glx.GLXAttribute -- uid: OpenTK.Graphics.Glx.GLXAttribute.DepthSize - commentId: F:OpenTK.Graphics.Glx.GLXAttribute.DepthSize - id: DepthSize - parent: OpenTK.Graphics.Glx.GLXAttribute - langs: - - csharp - - vb - name: DepthSize - nameWithType: GLXAttribute.DepthSize - fullName: OpenTK.Graphics.Glx.GLXAttribute.DepthSize - type: Field - source: - id: DepthSize - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 317 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: DepthSize = 12 - return: - type: OpenTK.Graphics.Glx.GLXAttribute -- uid: OpenTK.Graphics.Glx.GLXAttribute.StencilSize - commentId: F:OpenTK.Graphics.Glx.GLXAttribute.StencilSize - id: StencilSize - parent: OpenTK.Graphics.Glx.GLXAttribute - langs: - - csharp - - vb - name: StencilSize - nameWithType: GLXAttribute.StencilSize - fullName: OpenTK.Graphics.Glx.GLXAttribute.StencilSize - type: Field - source: - id: StencilSize - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 318 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: StencilSize = 13 - return: - type: OpenTK.Graphics.Glx.GLXAttribute -- uid: OpenTK.Graphics.Glx.GLXAttribute.AccumRedSize - commentId: F:OpenTK.Graphics.Glx.GLXAttribute.AccumRedSize - id: AccumRedSize - parent: OpenTK.Graphics.Glx.GLXAttribute - langs: - - csharp - - vb - name: AccumRedSize - nameWithType: GLXAttribute.AccumRedSize - fullName: OpenTK.Graphics.Glx.GLXAttribute.AccumRedSize - type: Field - source: - id: AccumRedSize - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 319 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: AccumRedSize = 14 - return: - type: OpenTK.Graphics.Glx.GLXAttribute -- uid: OpenTK.Graphics.Glx.GLXAttribute.AccumGreenSize - commentId: F:OpenTK.Graphics.Glx.GLXAttribute.AccumGreenSize - id: AccumGreenSize - parent: OpenTK.Graphics.Glx.GLXAttribute - langs: - - csharp - - vb - name: AccumGreenSize - nameWithType: GLXAttribute.AccumGreenSize - fullName: OpenTK.Graphics.Glx.GLXAttribute.AccumGreenSize - type: Field - source: - id: AccumGreenSize - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 320 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: AccumGreenSize = 15 - return: - type: OpenTK.Graphics.Glx.GLXAttribute -- uid: OpenTK.Graphics.Glx.GLXAttribute.AccumBlueSize - commentId: F:OpenTK.Graphics.Glx.GLXAttribute.AccumBlueSize - id: AccumBlueSize - parent: OpenTK.Graphics.Glx.GLXAttribute - langs: - - csharp - - vb - name: AccumBlueSize - nameWithType: GLXAttribute.AccumBlueSize - fullName: OpenTK.Graphics.Glx.GLXAttribute.AccumBlueSize - type: Field - source: - id: AccumBlueSize - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 321 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: AccumBlueSize = 16 - return: - type: OpenTK.Graphics.Glx.GLXAttribute -- uid: OpenTK.Graphics.Glx.GLXAttribute.AccumAlphaSize - commentId: F:OpenTK.Graphics.Glx.GLXAttribute.AccumAlphaSize - id: AccumAlphaSize - parent: OpenTK.Graphics.Glx.GLXAttribute - langs: - - csharp - - vb - name: AccumAlphaSize - nameWithType: GLXAttribute.AccumAlphaSize - fullName: OpenTK.Graphics.Glx.GLXAttribute.AccumAlphaSize - type: Field - source: - id: AccumAlphaSize - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 322 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: AccumAlphaSize = 17 - return: - type: OpenTK.Graphics.Glx.GLXAttribute -- uid: OpenTK.Graphics.Glx.GLXAttribute.ConfigCaveat - commentId: F:OpenTK.Graphics.Glx.GLXAttribute.ConfigCaveat - id: ConfigCaveat - parent: OpenTK.Graphics.Glx.GLXAttribute - langs: - - csharp - - vb - name: ConfigCaveat - nameWithType: GLXAttribute.ConfigCaveat - fullName: OpenTK.Graphics.Glx.GLXAttribute.ConfigCaveat - type: Field - source: - id: ConfigCaveat - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 323 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: ConfigCaveat = 32 - return: - type: OpenTK.Graphics.Glx.GLXAttribute -- uid: OpenTK.Graphics.Glx.GLXAttribute.VisualCaveatExt - commentId: F:OpenTK.Graphics.Glx.GLXAttribute.VisualCaveatExt - id: VisualCaveatExt - parent: OpenTK.Graphics.Glx.GLXAttribute - langs: - - csharp - - vb - name: VisualCaveatExt - nameWithType: GLXAttribute.VisualCaveatExt - fullName: OpenTK.Graphics.Glx.GLXAttribute.VisualCaveatExt - type: Field - source: - id: VisualCaveatExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 324 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: VisualCaveatExt = 32 - return: - type: OpenTK.Graphics.Glx.GLXAttribute -- uid: OpenTK.Graphics.Glx.GLXAttribute.XVisualType - commentId: F:OpenTK.Graphics.Glx.GLXAttribute.XVisualType - id: XVisualType - parent: OpenTK.Graphics.Glx.GLXAttribute - langs: - - csharp - - vb - name: XVisualType - nameWithType: GLXAttribute.XVisualType - fullName: OpenTK.Graphics.Glx.GLXAttribute.XVisualType - type: Field - source: - id: XVisualType - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 325 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: XVisualType = 34 - return: - type: OpenTK.Graphics.Glx.GLXAttribute -- uid: OpenTK.Graphics.Glx.GLXAttribute.XVisualTypeExt - commentId: F:OpenTK.Graphics.Glx.GLXAttribute.XVisualTypeExt - id: XVisualTypeExt - parent: OpenTK.Graphics.Glx.GLXAttribute - langs: - - csharp - - vb - name: XVisualTypeExt - nameWithType: GLXAttribute.XVisualTypeExt - fullName: OpenTK.Graphics.Glx.GLXAttribute.XVisualTypeExt - type: Field - source: - id: XVisualTypeExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 326 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: XVisualTypeExt = 34 - return: - type: OpenTK.Graphics.Glx.GLXAttribute -- uid: OpenTK.Graphics.Glx.GLXAttribute.TransparentType - commentId: F:OpenTK.Graphics.Glx.GLXAttribute.TransparentType - id: TransparentType - parent: OpenTK.Graphics.Glx.GLXAttribute - langs: - - csharp - - vb - name: TransparentType - nameWithType: GLXAttribute.TransparentType - fullName: OpenTK.Graphics.Glx.GLXAttribute.TransparentType - type: Field - source: - id: TransparentType - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 327 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: TransparentType = 35 - return: - type: OpenTK.Graphics.Glx.GLXAttribute -- uid: OpenTK.Graphics.Glx.GLXAttribute.TransparentTypeExt - commentId: F:OpenTK.Graphics.Glx.GLXAttribute.TransparentTypeExt - id: TransparentTypeExt - parent: OpenTK.Graphics.Glx.GLXAttribute - langs: - - csharp - - vb - name: TransparentTypeExt - nameWithType: GLXAttribute.TransparentTypeExt - fullName: OpenTK.Graphics.Glx.GLXAttribute.TransparentTypeExt - type: Field - source: - id: TransparentTypeExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 328 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: TransparentTypeExt = 35 - return: - type: OpenTK.Graphics.Glx.GLXAttribute -- uid: OpenTK.Graphics.Glx.GLXAttribute.TransparentIndexValue - commentId: F:OpenTK.Graphics.Glx.GLXAttribute.TransparentIndexValue - id: TransparentIndexValue - parent: OpenTK.Graphics.Glx.GLXAttribute - langs: - - csharp - - vb - name: TransparentIndexValue - nameWithType: GLXAttribute.TransparentIndexValue - fullName: OpenTK.Graphics.Glx.GLXAttribute.TransparentIndexValue - type: Field - source: - id: TransparentIndexValue - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 329 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: TransparentIndexValue = 36 - return: - type: OpenTK.Graphics.Glx.GLXAttribute -- uid: OpenTK.Graphics.Glx.GLXAttribute.TransparentIndexValueExt - commentId: F:OpenTK.Graphics.Glx.GLXAttribute.TransparentIndexValueExt - id: TransparentIndexValueExt - parent: OpenTK.Graphics.Glx.GLXAttribute - langs: - - csharp - - vb - name: TransparentIndexValueExt - nameWithType: GLXAttribute.TransparentIndexValueExt - fullName: OpenTK.Graphics.Glx.GLXAttribute.TransparentIndexValueExt - type: Field - source: - id: TransparentIndexValueExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 330 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: TransparentIndexValueExt = 36 - return: - type: OpenTK.Graphics.Glx.GLXAttribute -- uid: OpenTK.Graphics.Glx.GLXAttribute.TransparentRedValue - commentId: F:OpenTK.Graphics.Glx.GLXAttribute.TransparentRedValue - id: TransparentRedValue - parent: OpenTK.Graphics.Glx.GLXAttribute - langs: - - csharp - - vb - name: TransparentRedValue - nameWithType: GLXAttribute.TransparentRedValue - fullName: OpenTK.Graphics.Glx.GLXAttribute.TransparentRedValue - type: Field - source: - id: TransparentRedValue - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 331 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: TransparentRedValue = 37 - return: - type: OpenTK.Graphics.Glx.GLXAttribute -- uid: OpenTK.Graphics.Glx.GLXAttribute.TransparentRedValueExt - commentId: F:OpenTK.Graphics.Glx.GLXAttribute.TransparentRedValueExt - id: TransparentRedValueExt - parent: OpenTK.Graphics.Glx.GLXAttribute - langs: - - csharp - - vb - name: TransparentRedValueExt - nameWithType: GLXAttribute.TransparentRedValueExt - fullName: OpenTK.Graphics.Glx.GLXAttribute.TransparentRedValueExt - type: Field - source: - id: TransparentRedValueExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 332 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: TransparentRedValueExt = 37 - return: - type: OpenTK.Graphics.Glx.GLXAttribute -- uid: OpenTK.Graphics.Glx.GLXAttribute.TransparentGreenValue - commentId: F:OpenTK.Graphics.Glx.GLXAttribute.TransparentGreenValue - id: TransparentGreenValue - parent: OpenTK.Graphics.Glx.GLXAttribute - langs: - - csharp - - vb - name: TransparentGreenValue - nameWithType: GLXAttribute.TransparentGreenValue - fullName: OpenTK.Graphics.Glx.GLXAttribute.TransparentGreenValue - type: Field - source: - id: TransparentGreenValue - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 333 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: TransparentGreenValue = 38 - return: - type: OpenTK.Graphics.Glx.GLXAttribute -- uid: OpenTK.Graphics.Glx.GLXAttribute.TransparentGreenValueExt - commentId: F:OpenTK.Graphics.Glx.GLXAttribute.TransparentGreenValueExt - id: TransparentGreenValueExt - parent: OpenTK.Graphics.Glx.GLXAttribute - langs: - - csharp - - vb - name: TransparentGreenValueExt - nameWithType: GLXAttribute.TransparentGreenValueExt - fullName: OpenTK.Graphics.Glx.GLXAttribute.TransparentGreenValueExt - type: Field - source: - id: TransparentGreenValueExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 334 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: TransparentGreenValueExt = 38 - return: - type: OpenTK.Graphics.Glx.GLXAttribute -- uid: OpenTK.Graphics.Glx.GLXAttribute.TransparentBlueValue - commentId: F:OpenTK.Graphics.Glx.GLXAttribute.TransparentBlueValue - id: TransparentBlueValue - parent: OpenTK.Graphics.Glx.GLXAttribute - langs: - - csharp - - vb - name: TransparentBlueValue - nameWithType: GLXAttribute.TransparentBlueValue - fullName: OpenTK.Graphics.Glx.GLXAttribute.TransparentBlueValue - type: Field - source: - id: TransparentBlueValue - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 335 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: TransparentBlueValue = 39 - return: - type: OpenTK.Graphics.Glx.GLXAttribute -- uid: OpenTK.Graphics.Glx.GLXAttribute.TransparentBlueValueExt - commentId: F:OpenTK.Graphics.Glx.GLXAttribute.TransparentBlueValueExt - id: TransparentBlueValueExt - parent: OpenTK.Graphics.Glx.GLXAttribute - langs: - - csharp - - vb - name: TransparentBlueValueExt - nameWithType: GLXAttribute.TransparentBlueValueExt - fullName: OpenTK.Graphics.Glx.GLXAttribute.TransparentBlueValueExt - type: Field - source: - id: TransparentBlueValueExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 336 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: TransparentBlueValueExt = 39 - return: - type: OpenTK.Graphics.Glx.GLXAttribute -- uid: OpenTK.Graphics.Glx.GLXAttribute.TransparentAlphaValue - commentId: F:OpenTK.Graphics.Glx.GLXAttribute.TransparentAlphaValue - id: TransparentAlphaValue - parent: OpenTK.Graphics.Glx.GLXAttribute - langs: - - csharp - - vb - name: TransparentAlphaValue - nameWithType: GLXAttribute.TransparentAlphaValue - fullName: OpenTK.Graphics.Glx.GLXAttribute.TransparentAlphaValue - type: Field - source: - id: TransparentAlphaValue - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 337 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: TransparentAlphaValue = 40 - return: - type: OpenTK.Graphics.Glx.GLXAttribute -- uid: OpenTK.Graphics.Glx.GLXAttribute.TransparentAlphaValueExt - commentId: F:OpenTK.Graphics.Glx.GLXAttribute.TransparentAlphaValueExt - id: TransparentAlphaValueExt - parent: OpenTK.Graphics.Glx.GLXAttribute - langs: - - csharp - - vb - name: TransparentAlphaValueExt - nameWithType: GLXAttribute.TransparentAlphaValueExt - fullName: OpenTK.Graphics.Glx.GLXAttribute.TransparentAlphaValueExt - type: Field - source: - id: TransparentAlphaValueExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\Enums.cs - startLine: 338 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: TransparentAlphaValueExt = 40 - return: - type: OpenTK.Graphics.Glx.GLXAttribute -references: -- uid: OpenTK.Graphics.Glx - commentId: N:OpenTK.Graphics.Glx - href: OpenTK.html - name: OpenTK.Graphics.Glx - nameWithType: OpenTK.Graphics.Glx - fullName: OpenTK.Graphics.Glx - spec.csharp: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Glx - name: Glx - href: OpenTK.Graphics.Glx.html - spec.vb: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Glx - name: Glx - href: OpenTK.Graphics.Glx.html -- uid: OpenTK.Graphics.Glx.GLXAttribute - commentId: T:OpenTK.Graphics.Glx.GLXAttribute - parent: OpenTK.Graphics.Glx - href: OpenTK.Graphics.Glx.GLXAttribute.html - name: GLXAttribute - nameWithType: GLXAttribute - fullName: OpenTK.Graphics.Glx.GLXAttribute diff --git a/api/OpenTK.Graphics.Glx.GLXContext.yml b/api/OpenTK.Graphics.Glx.GLXContext.yml deleted file mode 100644 index 3c3bdc4f..00000000 --- a/api/OpenTK.Graphics.Glx.GLXContext.yml +++ /dev/null @@ -1,435 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: OpenTK.Graphics.Glx.GLXContext - commentId: T:OpenTK.Graphics.Glx.GLXContext - id: GLXContext - parent: OpenTK.Graphics.Glx - children: - - OpenTK.Graphics.Glx.GLXContext.#ctor(System.IntPtr) - - OpenTK.Graphics.Glx.GLXContext.Value - - OpenTK.Graphics.Glx.GLXContext.op_Explicit(OpenTK.Graphics.Glx.GLXContext)~System.IntPtr - - OpenTK.Graphics.Glx.GLXContext.op_Explicit(System.IntPtr)~OpenTK.Graphics.Glx.GLXContext - langs: - - csharp - - vb - name: GLXContext - nameWithType: GLXContext - fullName: OpenTK.Graphics.Glx.GLXContext - type: Struct - source: - id: GLXContext - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 272 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: A struct wrapper for GLXContext. - example: [] - syntax: - content: public struct GLXContext - content.vb: Public Structure GLXContext - inheritedMembers: - - System.ValueType.Equals(System.Object) - - System.ValueType.GetHashCode - - System.ValueType.ToString - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.ReferenceEquals(System.Object,System.Object) -- uid: OpenTK.Graphics.Glx.GLXContext.Value - commentId: F:OpenTK.Graphics.Glx.GLXContext.Value - id: Value - parent: OpenTK.Graphics.Glx.GLXContext - langs: - - csharp - - vb - name: Value - nameWithType: GLXContext.Value - fullName: OpenTK.Graphics.Glx.GLXContext.Value - type: Field - source: - id: Value - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 274 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: public nint Value - return: - type: System.IntPtr - content.vb: Public Value As IntPtr -- uid: OpenTK.Graphics.Glx.GLXContext.#ctor(System.IntPtr) - commentId: M:OpenTK.Graphics.Glx.GLXContext.#ctor(System.IntPtr) - id: '#ctor(System.IntPtr)' - parent: OpenTK.Graphics.Glx.GLXContext - langs: - - csharp - - vb - name: GLXContext(nint) - nameWithType: GLXContext.GLXContext(nint) - fullName: OpenTK.Graphics.Glx.GLXContext.GLXContext(nint) - type: Constructor - source: - id: .ctor - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 276 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: public GLXContext(nint value) - parameters: - - id: value - type: System.IntPtr - content.vb: Public Sub New(value As IntPtr) - overload: OpenTK.Graphics.Glx.GLXContext.#ctor* - nameWithType.vb: GLXContext.New(IntPtr) - fullName.vb: OpenTK.Graphics.Glx.GLXContext.New(System.IntPtr) - name.vb: New(IntPtr) -- uid: OpenTK.Graphics.Glx.GLXContext.op_Explicit(System.IntPtr)~OpenTK.Graphics.Glx.GLXContext - commentId: M:OpenTK.Graphics.Glx.GLXContext.op_Explicit(System.IntPtr)~OpenTK.Graphics.Glx.GLXContext - id: op_Explicit(System.IntPtr)~OpenTK.Graphics.Glx.GLXContext - parent: OpenTK.Graphics.Glx.GLXContext - langs: - - csharp - - vb - name: explicit operator GLXContext(nint) - nameWithType: GLXContext.explicit operator GLXContext(nint) - fullName: OpenTK.Graphics.Glx.GLXContext.explicit operator OpenTK.Graphics.Glx.GLXContext(nint) - type: Operator - source: - id: op_Explicit - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 281 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: public static explicit operator GLXContext(nint val) - parameters: - - id: val - type: System.IntPtr - return: - type: OpenTK.Graphics.Glx.GLXContext - content.vb: Public Shared Narrowing Operator CType(val As IntPtr) As GLXContext - overload: OpenTK.Graphics.Glx.GLXContext.op_Explicit* - nameWithType.vb: GLXContext.CType(IntPtr) - fullName.vb: OpenTK.Graphics.Glx.GLXContext.CType(System.IntPtr) - name.vb: CType(IntPtr) -- uid: OpenTK.Graphics.Glx.GLXContext.op_Explicit(OpenTK.Graphics.Glx.GLXContext)~System.IntPtr - commentId: M:OpenTK.Graphics.Glx.GLXContext.op_Explicit(OpenTK.Graphics.Glx.GLXContext)~System.IntPtr - id: op_Explicit(OpenTK.Graphics.Glx.GLXContext)~System.IntPtr - parent: OpenTK.Graphics.Glx.GLXContext - langs: - - csharp - - vb - name: explicit operator nint(GLXContext) - nameWithType: GLXContext.explicit operator nint(GLXContext) - fullName: OpenTK.Graphics.Glx.GLXContext.explicit operator nint(OpenTK.Graphics.Glx.GLXContext) - type: Operator - source: - id: op_Explicit - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 282 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: public static explicit operator nint(GLXContext val) - parameters: - - id: val - type: OpenTK.Graphics.Glx.GLXContext - return: - type: System.IntPtr - content.vb: Public Shared Narrowing Operator CType(val As GLXContext) As IntPtr - overload: OpenTK.Graphics.Glx.GLXContext.op_Explicit* - nameWithType.vb: GLXContext.CType(GLXContext) - fullName.vb: OpenTK.Graphics.Glx.GLXContext.CType(OpenTK.Graphics.Glx.GLXContext) - name.vb: CType(GLXContext) -references: -- uid: OpenTK.Graphics.Glx - commentId: N:OpenTK.Graphics.Glx - href: OpenTK.html - name: OpenTK.Graphics.Glx - nameWithType: OpenTK.Graphics.Glx - fullName: OpenTK.Graphics.Glx - spec.csharp: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Glx - name: Glx - href: OpenTK.Graphics.Glx.html - spec.vb: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Glx - name: Glx - href: OpenTK.Graphics.Glx.html -- uid: System.ValueType.Equals(System.Object) - commentId: M:System.ValueType.Equals(System.Object) - parent: System.ValueType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals - name: Equals(object) - nameWithType: ValueType.Equals(object) - fullName: System.ValueType.Equals(object) - nameWithType.vb: ValueType.Equals(Object) - fullName.vb: System.ValueType.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: System.ValueType.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.ValueType.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.ValueType.GetHashCode - commentId: M:System.ValueType.GetHashCode - parent: System.ValueType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - name: GetHashCode() - nameWithType: ValueType.GetHashCode() - fullName: System.ValueType.GetHashCode() - spec.csharp: - - uid: System.ValueType.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - - name: ( - - name: ) - spec.vb: - - uid: System.ValueType.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - - name: ( - - name: ) -- uid: System.ValueType.ToString - commentId: M:System.ValueType.ToString - parent: System.ValueType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - name: ToString() - nameWithType: ValueType.ToString() - fullName: System.ValueType.ToString() - spec.csharp: - - uid: System.ValueType.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - - name: ( - - name: ) - spec.vb: - - uid: System.ValueType.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - - name: ( - - name: ) -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.ValueType - commentId: T:System.ValueType - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype - name: ValueType - nameWithType: ValueType - fullName: System.ValueType -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: System.IntPtr - commentId: T:System.IntPtr - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: nint - nameWithType: nint - fullName: nint - nameWithType.vb: IntPtr - fullName.vb: System.IntPtr - name.vb: IntPtr -- uid: OpenTK.Graphics.Glx.GLXContext.#ctor* - commentId: Overload:OpenTK.Graphics.Glx.GLXContext.#ctor - href: OpenTK.Graphics.Glx.GLXContext.html#OpenTK_Graphics_Glx_GLXContext__ctor_System_IntPtr_ - name: GLXContext - nameWithType: GLXContext.GLXContext - fullName: OpenTK.Graphics.Glx.GLXContext.GLXContext - nameWithType.vb: GLXContext.New - fullName.vb: OpenTK.Graphics.Glx.GLXContext.New - name.vb: New -- uid: OpenTK.Graphics.Glx.GLXContext.op_Explicit* - commentId: Overload:OpenTK.Graphics.Glx.GLXContext.op_Explicit - name: explicit operator - nameWithType: GLXContext.explicit operator - fullName: OpenTK.Graphics.Glx.GLXContext.explicit operator - nameWithType.vb: GLXContext.CType - fullName.vb: OpenTK.Graphics.Glx.GLXContext.CType - name.vb: CType - spec.csharp: - - name: explicit - - name: " " - - name: operator -- uid: OpenTK.Graphics.Glx.GLXContext - commentId: T:OpenTK.Graphics.Glx.GLXContext - parent: OpenTK.Graphics.Glx - href: OpenTK.Graphics.Glx.GLXContext.html - name: GLXContext - nameWithType: GLXContext - fullName: OpenTK.Graphics.Glx.GLXContext diff --git a/api/OpenTK.Graphics.Glx.GLXContextID.yml b/api/OpenTK.Graphics.Glx.GLXContextID.yml deleted file mode 100644 index e3975390..00000000 --- a/api/OpenTK.Graphics.Glx.GLXContextID.yml +++ /dev/null @@ -1,440 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: OpenTK.Graphics.Glx.GLXContextID - commentId: T:OpenTK.Graphics.Glx.GLXContextID - id: GLXContextID - parent: OpenTK.Graphics.Glx - children: - - OpenTK.Graphics.Glx.GLXContextID.#ctor(System.UIntPtr) - - OpenTK.Graphics.Glx.GLXContextID.XID - - OpenTK.Graphics.Glx.GLXContextID.op_Explicit(OpenTK.Graphics.Glx.GLXContextID)~System.UIntPtr - - OpenTK.Graphics.Glx.GLXContextID.op_Explicit(System.UIntPtr)~OpenTK.Graphics.Glx.GLXContextID - langs: - - csharp - - vb - name: GLXContextID - nameWithType: GLXContextID - fullName: OpenTK.Graphics.Glx.GLXContextID - type: Struct - source: - id: GLXContextID - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 249 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: An GLX GLXContextID handle. - example: [] - syntax: - content: public struct GLXContextID - content.vb: Public Structure GLXContextID - inheritedMembers: - - System.ValueType.Equals(System.Object) - - System.ValueType.GetHashCode - - System.ValueType.ToString - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.ReferenceEquals(System.Object,System.Object) -- uid: OpenTK.Graphics.Glx.GLXContextID.XID - commentId: F:OpenTK.Graphics.Glx.GLXContextID.XID - id: XID - parent: OpenTK.Graphics.Glx.GLXContextID - langs: - - csharp - - vb - name: XID - nameWithType: GLXContextID.XID - fullName: OpenTK.Graphics.Glx.GLXContextID.XID - type: Field - source: - id: XID - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 254 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: The underlying XID. - example: [] - syntax: - content: public nuint XID - return: - type: System.UIntPtr - content.vb: Public XID As UIntPtr -- uid: OpenTK.Graphics.Glx.GLXContextID.#ctor(System.UIntPtr) - commentId: M:OpenTK.Graphics.Glx.GLXContextID.#ctor(System.UIntPtr) - id: '#ctor(System.UIntPtr)' - parent: OpenTK.Graphics.Glx.GLXContextID - langs: - - csharp - - vb - name: GLXContextID(nuint) - nameWithType: GLXContextID.GLXContextID(nuint) - fullName: OpenTK.Graphics.Glx.GLXContextID.GLXContextID(nuint) - type: Constructor - source: - id: .ctor - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 260 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: Constructs a new GLXContextID wrapper struct from an XID. - example: [] - syntax: - content: public GLXContextID(nuint xid) - parameters: - - id: xid - type: System.UIntPtr - description: The XID of the GLXContextID. - content.vb: Public Sub New(xid As UIntPtr) - overload: OpenTK.Graphics.Glx.GLXContextID.#ctor* - nameWithType.vb: GLXContextID.New(UIntPtr) - fullName.vb: OpenTK.Graphics.Glx.GLXContextID.New(System.UIntPtr) - name.vb: New(UIntPtr) -- uid: OpenTK.Graphics.Glx.GLXContextID.op_Explicit(OpenTK.Graphics.Glx.GLXContextID)~System.UIntPtr - commentId: M:OpenTK.Graphics.Glx.GLXContextID.op_Explicit(OpenTK.Graphics.Glx.GLXContextID)~System.UIntPtr - id: op_Explicit(OpenTK.Graphics.Glx.GLXContextID)~System.UIntPtr - parent: OpenTK.Graphics.Glx.GLXContextID - langs: - - csharp - - vb - name: explicit operator nuint(GLXContextID) - nameWithType: GLXContextID.explicit operator nuint(GLXContextID) - fullName: OpenTK.Graphics.Glx.GLXContextID.explicit operator nuint(OpenTK.Graphics.Glx.GLXContextID) - type: Operator - source: - id: op_Explicit - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 265 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: public static explicit operator nuint(GLXContextID handle) - parameters: - - id: handle - type: OpenTK.Graphics.Glx.GLXContextID - return: - type: System.UIntPtr - content.vb: Public Shared Narrowing Operator CType(handle As GLXContextID) As UIntPtr - overload: OpenTK.Graphics.Glx.GLXContextID.op_Explicit* - nameWithType.vb: GLXContextID.CType(GLXContextID) - fullName.vb: OpenTK.Graphics.Glx.GLXContextID.CType(OpenTK.Graphics.Glx.GLXContextID) - name.vb: CType(GLXContextID) -- uid: OpenTK.Graphics.Glx.GLXContextID.op_Explicit(System.UIntPtr)~OpenTK.Graphics.Glx.GLXContextID - commentId: M:OpenTK.Graphics.Glx.GLXContextID.op_Explicit(System.UIntPtr)~OpenTK.Graphics.Glx.GLXContextID - id: op_Explicit(System.UIntPtr)~OpenTK.Graphics.Glx.GLXContextID - parent: OpenTK.Graphics.Glx.GLXContextID - langs: - - csharp - - vb - name: explicit operator GLXContextID(nuint) - nameWithType: GLXContextID.explicit operator GLXContextID(nuint) - fullName: OpenTK.Graphics.Glx.GLXContextID.explicit operator OpenTK.Graphics.Glx.GLXContextID(nuint) - type: Operator - source: - id: op_Explicit - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 266 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: public static explicit operator GLXContextID(nuint xid) - parameters: - - id: xid - type: System.UIntPtr - return: - type: OpenTK.Graphics.Glx.GLXContextID - content.vb: Public Shared Narrowing Operator CType(xid As UIntPtr) As GLXContextID - overload: OpenTK.Graphics.Glx.GLXContextID.op_Explicit* - nameWithType.vb: GLXContextID.CType(UIntPtr) - fullName.vb: OpenTK.Graphics.Glx.GLXContextID.CType(System.UIntPtr) - name.vb: CType(UIntPtr) -references: -- uid: OpenTK.Graphics.Glx - commentId: N:OpenTK.Graphics.Glx - href: OpenTK.html - name: OpenTK.Graphics.Glx - nameWithType: OpenTK.Graphics.Glx - fullName: OpenTK.Graphics.Glx - spec.csharp: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Glx - name: Glx - href: OpenTK.Graphics.Glx.html - spec.vb: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Glx - name: Glx - href: OpenTK.Graphics.Glx.html -- uid: System.ValueType.Equals(System.Object) - commentId: M:System.ValueType.Equals(System.Object) - parent: System.ValueType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals - name: Equals(object) - nameWithType: ValueType.Equals(object) - fullName: System.ValueType.Equals(object) - nameWithType.vb: ValueType.Equals(Object) - fullName.vb: System.ValueType.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: System.ValueType.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.ValueType.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.ValueType.GetHashCode - commentId: M:System.ValueType.GetHashCode - parent: System.ValueType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - name: GetHashCode() - nameWithType: ValueType.GetHashCode() - fullName: System.ValueType.GetHashCode() - spec.csharp: - - uid: System.ValueType.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - - name: ( - - name: ) - spec.vb: - - uid: System.ValueType.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - - name: ( - - name: ) -- uid: System.ValueType.ToString - commentId: M:System.ValueType.ToString - parent: System.ValueType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - name: ToString() - nameWithType: ValueType.ToString() - fullName: System.ValueType.ToString() - spec.csharp: - - uid: System.ValueType.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - - name: ( - - name: ) - spec.vb: - - uid: System.ValueType.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - - name: ( - - name: ) -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.ValueType - commentId: T:System.ValueType - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype - name: ValueType - nameWithType: ValueType - fullName: System.ValueType -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: System.UIntPtr - commentId: T:System.UIntPtr - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uintptr - name: nuint - nameWithType: nuint - fullName: nuint - nameWithType.vb: UIntPtr - fullName.vb: System.UIntPtr - name.vb: UIntPtr -- uid: OpenTK.Graphics.Glx.GLXContextID.#ctor* - commentId: Overload:OpenTK.Graphics.Glx.GLXContextID.#ctor - href: OpenTK.Graphics.Glx.GLXContextID.html#OpenTK_Graphics_Glx_GLXContextID__ctor_System_UIntPtr_ - name: GLXContextID - nameWithType: GLXContextID.GLXContextID - fullName: OpenTK.Graphics.Glx.GLXContextID.GLXContextID - nameWithType.vb: GLXContextID.New - fullName.vb: OpenTK.Graphics.Glx.GLXContextID.New - name.vb: New -- uid: OpenTK.Graphics.Glx.GLXContextID.op_Explicit* - commentId: Overload:OpenTK.Graphics.Glx.GLXContextID.op_Explicit - name: explicit operator - nameWithType: GLXContextID.explicit operator - fullName: OpenTK.Graphics.Glx.GLXContextID.explicit operator - nameWithType.vb: GLXContextID.CType - fullName.vb: OpenTK.Graphics.Glx.GLXContextID.CType - name.vb: CType - spec.csharp: - - name: explicit - - name: " " - - name: operator -- uid: OpenTK.Graphics.Glx.GLXContextID - commentId: T:OpenTK.Graphics.Glx.GLXContextID - parent: OpenTK.Graphics.Glx - href: OpenTK.Graphics.Glx.GLXContextID.html - name: GLXContextID - nameWithType: GLXContextID - fullName: OpenTK.Graphics.Glx.GLXContextID diff --git a/api/OpenTK.Graphics.Glx.GLXDrawable.yml b/api/OpenTK.Graphics.Glx.GLXDrawable.yml deleted file mode 100644 index 191a87b5..00000000 --- a/api/OpenTK.Graphics.Glx.GLXDrawable.yml +++ /dev/null @@ -1,440 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: OpenTK.Graphics.Glx.GLXDrawable - commentId: T:OpenTK.Graphics.Glx.GLXDrawable - id: GLXDrawable - parent: OpenTK.Graphics.Glx - children: - - OpenTK.Graphics.Glx.GLXDrawable.#ctor(System.UIntPtr) - - OpenTK.Graphics.Glx.GLXDrawable.XID - - OpenTK.Graphics.Glx.GLXDrawable.op_Explicit(OpenTK.Graphics.Glx.GLXDrawable)~System.UIntPtr - - OpenTK.Graphics.Glx.GLXDrawable.op_Explicit(System.UIntPtr)~OpenTK.Graphics.Glx.GLXDrawable - langs: - - csharp - - vb - name: GLXDrawable - nameWithType: GLXDrawable - fullName: OpenTK.Graphics.Glx.GLXDrawable - type: Struct - source: - id: GLXDrawable - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 311 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: A GLX GLXDrawable handle. - example: [] - syntax: - content: public struct GLXDrawable - content.vb: Public Structure GLXDrawable - inheritedMembers: - - System.ValueType.Equals(System.Object) - - System.ValueType.GetHashCode - - System.ValueType.ToString - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.ReferenceEquals(System.Object,System.Object) -- uid: OpenTK.Graphics.Glx.GLXDrawable.XID - commentId: F:OpenTK.Graphics.Glx.GLXDrawable.XID - id: XID - parent: OpenTK.Graphics.Glx.GLXDrawable - langs: - - csharp - - vb - name: XID - nameWithType: GLXDrawable.XID - fullName: OpenTK.Graphics.Glx.GLXDrawable.XID - type: Field - source: - id: XID - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 316 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: The underlying XID. - example: [] - syntax: - content: public nuint XID - return: - type: System.UIntPtr - content.vb: Public XID As UIntPtr -- uid: OpenTK.Graphics.Glx.GLXDrawable.#ctor(System.UIntPtr) - commentId: M:OpenTK.Graphics.Glx.GLXDrawable.#ctor(System.UIntPtr) - id: '#ctor(System.UIntPtr)' - parent: OpenTK.Graphics.Glx.GLXDrawable - langs: - - csharp - - vb - name: GLXDrawable(nuint) - nameWithType: GLXDrawable.GLXDrawable(nuint) - fullName: OpenTK.Graphics.Glx.GLXDrawable.GLXDrawable(nuint) - type: Constructor - source: - id: .ctor - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 322 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: Constructs a new GLXDrawable wrapper struct from an XID. - example: [] - syntax: - content: public GLXDrawable(nuint xid) - parameters: - - id: xid - type: System.UIntPtr - description: The XID of the GLXDrawable. - content.vb: Public Sub New(xid As UIntPtr) - overload: OpenTK.Graphics.Glx.GLXDrawable.#ctor* - nameWithType.vb: GLXDrawable.New(UIntPtr) - fullName.vb: OpenTK.Graphics.Glx.GLXDrawable.New(System.UIntPtr) - name.vb: New(UIntPtr) -- uid: OpenTK.Graphics.Glx.GLXDrawable.op_Explicit(OpenTK.Graphics.Glx.GLXDrawable)~System.UIntPtr - commentId: M:OpenTK.Graphics.Glx.GLXDrawable.op_Explicit(OpenTK.Graphics.Glx.GLXDrawable)~System.UIntPtr - id: op_Explicit(OpenTK.Graphics.Glx.GLXDrawable)~System.UIntPtr - parent: OpenTK.Graphics.Glx.GLXDrawable - langs: - - csharp - - vb - name: explicit operator nuint(GLXDrawable) - nameWithType: GLXDrawable.explicit operator nuint(GLXDrawable) - fullName: OpenTK.Graphics.Glx.GLXDrawable.explicit operator nuint(OpenTK.Graphics.Glx.GLXDrawable) - type: Operator - source: - id: op_Explicit - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 327 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: public static explicit operator nuint(GLXDrawable handle) - parameters: - - id: handle - type: OpenTK.Graphics.Glx.GLXDrawable - return: - type: System.UIntPtr - content.vb: Public Shared Narrowing Operator CType(handle As GLXDrawable) As UIntPtr - overload: OpenTK.Graphics.Glx.GLXDrawable.op_Explicit* - nameWithType.vb: GLXDrawable.CType(GLXDrawable) - fullName.vb: OpenTK.Graphics.Glx.GLXDrawable.CType(OpenTK.Graphics.Glx.GLXDrawable) - name.vb: CType(GLXDrawable) -- uid: OpenTK.Graphics.Glx.GLXDrawable.op_Explicit(System.UIntPtr)~OpenTK.Graphics.Glx.GLXDrawable - commentId: M:OpenTK.Graphics.Glx.GLXDrawable.op_Explicit(System.UIntPtr)~OpenTK.Graphics.Glx.GLXDrawable - id: op_Explicit(System.UIntPtr)~OpenTK.Graphics.Glx.GLXDrawable - parent: OpenTK.Graphics.Glx.GLXDrawable - langs: - - csharp - - vb - name: explicit operator GLXDrawable(nuint) - nameWithType: GLXDrawable.explicit operator GLXDrawable(nuint) - fullName: OpenTK.Graphics.Glx.GLXDrawable.explicit operator OpenTK.Graphics.Glx.GLXDrawable(nuint) - type: Operator - source: - id: op_Explicit - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 328 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: public static explicit operator GLXDrawable(nuint xid) - parameters: - - id: xid - type: System.UIntPtr - return: - type: OpenTK.Graphics.Glx.GLXDrawable - content.vb: Public Shared Narrowing Operator CType(xid As UIntPtr) As GLXDrawable - overload: OpenTK.Graphics.Glx.GLXDrawable.op_Explicit* - nameWithType.vb: GLXDrawable.CType(UIntPtr) - fullName.vb: OpenTK.Graphics.Glx.GLXDrawable.CType(System.UIntPtr) - name.vb: CType(UIntPtr) -references: -- uid: OpenTK.Graphics.Glx - commentId: N:OpenTK.Graphics.Glx - href: OpenTK.html - name: OpenTK.Graphics.Glx - nameWithType: OpenTK.Graphics.Glx - fullName: OpenTK.Graphics.Glx - spec.csharp: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Glx - name: Glx - href: OpenTK.Graphics.Glx.html - spec.vb: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Glx - name: Glx - href: OpenTK.Graphics.Glx.html -- uid: System.ValueType.Equals(System.Object) - commentId: M:System.ValueType.Equals(System.Object) - parent: System.ValueType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals - name: Equals(object) - nameWithType: ValueType.Equals(object) - fullName: System.ValueType.Equals(object) - nameWithType.vb: ValueType.Equals(Object) - fullName.vb: System.ValueType.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: System.ValueType.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.ValueType.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.ValueType.GetHashCode - commentId: M:System.ValueType.GetHashCode - parent: System.ValueType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - name: GetHashCode() - nameWithType: ValueType.GetHashCode() - fullName: System.ValueType.GetHashCode() - spec.csharp: - - uid: System.ValueType.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - - name: ( - - name: ) - spec.vb: - - uid: System.ValueType.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - - name: ( - - name: ) -- uid: System.ValueType.ToString - commentId: M:System.ValueType.ToString - parent: System.ValueType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - name: ToString() - nameWithType: ValueType.ToString() - fullName: System.ValueType.ToString() - spec.csharp: - - uid: System.ValueType.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - - name: ( - - name: ) - spec.vb: - - uid: System.ValueType.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - - name: ( - - name: ) -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.ValueType - commentId: T:System.ValueType - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype - name: ValueType - nameWithType: ValueType - fullName: System.ValueType -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: System.UIntPtr - commentId: T:System.UIntPtr - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uintptr - name: nuint - nameWithType: nuint - fullName: nuint - nameWithType.vb: UIntPtr - fullName.vb: System.UIntPtr - name.vb: UIntPtr -- uid: OpenTK.Graphics.Glx.GLXDrawable.#ctor* - commentId: Overload:OpenTK.Graphics.Glx.GLXDrawable.#ctor - href: OpenTK.Graphics.Glx.GLXDrawable.html#OpenTK_Graphics_Glx_GLXDrawable__ctor_System_UIntPtr_ - name: GLXDrawable - nameWithType: GLXDrawable.GLXDrawable - fullName: OpenTK.Graphics.Glx.GLXDrawable.GLXDrawable - nameWithType.vb: GLXDrawable.New - fullName.vb: OpenTK.Graphics.Glx.GLXDrawable.New - name.vb: New -- uid: OpenTK.Graphics.Glx.GLXDrawable.op_Explicit* - commentId: Overload:OpenTK.Graphics.Glx.GLXDrawable.op_Explicit - name: explicit operator - nameWithType: GLXDrawable.explicit operator - fullName: OpenTK.Graphics.Glx.GLXDrawable.explicit operator - nameWithType.vb: GLXDrawable.CType - fullName.vb: OpenTK.Graphics.Glx.GLXDrawable.CType - name.vb: CType - spec.csharp: - - name: explicit - - name: " " - - name: operator -- uid: OpenTK.Graphics.Glx.GLXDrawable - commentId: T:OpenTK.Graphics.Glx.GLXDrawable - parent: OpenTK.Graphics.Glx - href: OpenTK.Graphics.Glx.GLXDrawable.html - name: GLXDrawable - nameWithType: GLXDrawable - fullName: OpenTK.Graphics.Glx.GLXDrawable diff --git a/api/OpenTK.Graphics.Glx.GLXFBConfig.yml b/api/OpenTK.Graphics.Glx.GLXFBConfig.yml deleted file mode 100644 index 3888aee5..00000000 --- a/api/OpenTK.Graphics.Glx.GLXFBConfig.yml +++ /dev/null @@ -1,435 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: OpenTK.Graphics.Glx.GLXFBConfig - commentId: T:OpenTK.Graphics.Glx.GLXFBConfig - id: GLXFBConfig - parent: OpenTK.Graphics.Glx - children: - - OpenTK.Graphics.Glx.GLXFBConfig.#ctor(System.IntPtr) - - OpenTK.Graphics.Glx.GLXFBConfig.Value - - OpenTK.Graphics.Glx.GLXFBConfig.op_Explicit(OpenTK.Graphics.Glx.GLXFBConfig)~System.IntPtr - - OpenTK.Graphics.Glx.GLXFBConfig.op_Explicit(System.IntPtr)~OpenTK.Graphics.Glx.GLXFBConfig - langs: - - csharp - - vb - name: GLXFBConfig - nameWithType: GLXFBConfig - fullName: OpenTK.Graphics.Glx.GLXFBConfig - type: Struct - source: - id: GLXFBConfig - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 233 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: A struct wrapper for GLXFBConfig. - example: [] - syntax: - content: public struct GLXFBConfig - content.vb: Public Structure GLXFBConfig - inheritedMembers: - - System.ValueType.Equals(System.Object) - - System.ValueType.GetHashCode - - System.ValueType.ToString - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.ReferenceEquals(System.Object,System.Object) -- uid: OpenTK.Graphics.Glx.GLXFBConfig.Value - commentId: F:OpenTK.Graphics.Glx.GLXFBConfig.Value - id: Value - parent: OpenTK.Graphics.Glx.GLXFBConfig - langs: - - csharp - - vb - name: Value - nameWithType: GLXFBConfig.Value - fullName: OpenTK.Graphics.Glx.GLXFBConfig.Value - type: Field - source: - id: Value - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 235 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: public nint Value - return: - type: System.IntPtr - content.vb: Public Value As IntPtr -- uid: OpenTK.Graphics.Glx.GLXFBConfig.#ctor(System.IntPtr) - commentId: M:OpenTK.Graphics.Glx.GLXFBConfig.#ctor(System.IntPtr) - id: '#ctor(System.IntPtr)' - parent: OpenTK.Graphics.Glx.GLXFBConfig - langs: - - csharp - - vb - name: GLXFBConfig(nint) - nameWithType: GLXFBConfig.GLXFBConfig(nint) - fullName: OpenTK.Graphics.Glx.GLXFBConfig.GLXFBConfig(nint) - type: Constructor - source: - id: .ctor - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 237 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: public GLXFBConfig(nint value) - parameters: - - id: value - type: System.IntPtr - content.vb: Public Sub New(value As IntPtr) - overload: OpenTK.Graphics.Glx.GLXFBConfig.#ctor* - nameWithType.vb: GLXFBConfig.New(IntPtr) - fullName.vb: OpenTK.Graphics.Glx.GLXFBConfig.New(System.IntPtr) - name.vb: New(IntPtr) -- uid: OpenTK.Graphics.Glx.GLXFBConfig.op_Explicit(System.IntPtr)~OpenTK.Graphics.Glx.GLXFBConfig - commentId: M:OpenTK.Graphics.Glx.GLXFBConfig.op_Explicit(System.IntPtr)~OpenTK.Graphics.Glx.GLXFBConfig - id: op_Explicit(System.IntPtr)~OpenTK.Graphics.Glx.GLXFBConfig - parent: OpenTK.Graphics.Glx.GLXFBConfig - langs: - - csharp - - vb - name: explicit operator GLXFBConfig(nint) - nameWithType: GLXFBConfig.explicit operator GLXFBConfig(nint) - fullName: OpenTK.Graphics.Glx.GLXFBConfig.explicit operator OpenTK.Graphics.Glx.GLXFBConfig(nint) - type: Operator - source: - id: op_Explicit - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 242 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: public static explicit operator GLXFBConfig(nint val) - parameters: - - id: val - type: System.IntPtr - return: - type: OpenTK.Graphics.Glx.GLXFBConfig - content.vb: Public Shared Narrowing Operator CType(val As IntPtr) As GLXFBConfig - overload: OpenTK.Graphics.Glx.GLXFBConfig.op_Explicit* - nameWithType.vb: GLXFBConfig.CType(IntPtr) - fullName.vb: OpenTK.Graphics.Glx.GLXFBConfig.CType(System.IntPtr) - name.vb: CType(IntPtr) -- uid: OpenTK.Graphics.Glx.GLXFBConfig.op_Explicit(OpenTK.Graphics.Glx.GLXFBConfig)~System.IntPtr - commentId: M:OpenTK.Graphics.Glx.GLXFBConfig.op_Explicit(OpenTK.Graphics.Glx.GLXFBConfig)~System.IntPtr - id: op_Explicit(OpenTK.Graphics.Glx.GLXFBConfig)~System.IntPtr - parent: OpenTK.Graphics.Glx.GLXFBConfig - langs: - - csharp - - vb - name: explicit operator nint(GLXFBConfig) - nameWithType: GLXFBConfig.explicit operator nint(GLXFBConfig) - fullName: OpenTK.Graphics.Glx.GLXFBConfig.explicit operator nint(OpenTK.Graphics.Glx.GLXFBConfig) - type: Operator - source: - id: op_Explicit - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 243 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: public static explicit operator nint(GLXFBConfig val) - parameters: - - id: val - type: OpenTK.Graphics.Glx.GLXFBConfig - return: - type: System.IntPtr - content.vb: Public Shared Narrowing Operator CType(val As GLXFBConfig) As IntPtr - overload: OpenTK.Graphics.Glx.GLXFBConfig.op_Explicit* - nameWithType.vb: GLXFBConfig.CType(GLXFBConfig) - fullName.vb: OpenTK.Graphics.Glx.GLXFBConfig.CType(OpenTK.Graphics.Glx.GLXFBConfig) - name.vb: CType(GLXFBConfig) -references: -- uid: OpenTK.Graphics.Glx - commentId: N:OpenTK.Graphics.Glx - href: OpenTK.html - name: OpenTK.Graphics.Glx - nameWithType: OpenTK.Graphics.Glx - fullName: OpenTK.Graphics.Glx - spec.csharp: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Glx - name: Glx - href: OpenTK.Graphics.Glx.html - spec.vb: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Glx - name: Glx - href: OpenTK.Graphics.Glx.html -- uid: System.ValueType.Equals(System.Object) - commentId: M:System.ValueType.Equals(System.Object) - parent: System.ValueType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals - name: Equals(object) - nameWithType: ValueType.Equals(object) - fullName: System.ValueType.Equals(object) - nameWithType.vb: ValueType.Equals(Object) - fullName.vb: System.ValueType.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: System.ValueType.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.ValueType.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.ValueType.GetHashCode - commentId: M:System.ValueType.GetHashCode - parent: System.ValueType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - name: GetHashCode() - nameWithType: ValueType.GetHashCode() - fullName: System.ValueType.GetHashCode() - spec.csharp: - - uid: System.ValueType.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - - name: ( - - name: ) - spec.vb: - - uid: System.ValueType.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - - name: ( - - name: ) -- uid: System.ValueType.ToString - commentId: M:System.ValueType.ToString - parent: System.ValueType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - name: ToString() - nameWithType: ValueType.ToString() - fullName: System.ValueType.ToString() - spec.csharp: - - uid: System.ValueType.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - - name: ( - - name: ) - spec.vb: - - uid: System.ValueType.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - - name: ( - - name: ) -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.ValueType - commentId: T:System.ValueType - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype - name: ValueType - nameWithType: ValueType - fullName: System.ValueType -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: System.IntPtr - commentId: T:System.IntPtr - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: nint - nameWithType: nint - fullName: nint - nameWithType.vb: IntPtr - fullName.vb: System.IntPtr - name.vb: IntPtr -- uid: OpenTK.Graphics.Glx.GLXFBConfig.#ctor* - commentId: Overload:OpenTK.Graphics.Glx.GLXFBConfig.#ctor - href: OpenTK.Graphics.Glx.GLXFBConfig.html#OpenTK_Graphics_Glx_GLXFBConfig__ctor_System_IntPtr_ - name: GLXFBConfig - nameWithType: GLXFBConfig.GLXFBConfig - fullName: OpenTK.Graphics.Glx.GLXFBConfig.GLXFBConfig - nameWithType.vb: GLXFBConfig.New - fullName.vb: OpenTK.Graphics.Glx.GLXFBConfig.New - name.vb: New -- uid: OpenTK.Graphics.Glx.GLXFBConfig.op_Explicit* - commentId: Overload:OpenTK.Graphics.Glx.GLXFBConfig.op_Explicit - name: explicit operator - nameWithType: GLXFBConfig.explicit operator - fullName: OpenTK.Graphics.Glx.GLXFBConfig.explicit operator - nameWithType.vb: GLXFBConfig.CType - fullName.vb: OpenTK.Graphics.Glx.GLXFBConfig.CType - name.vb: CType - spec.csharp: - - name: explicit - - name: " " - - name: operator -- uid: OpenTK.Graphics.Glx.GLXFBConfig - commentId: T:OpenTK.Graphics.Glx.GLXFBConfig - parent: OpenTK.Graphics.Glx - href: OpenTK.Graphics.Glx.GLXFBConfig.html - name: GLXFBConfig - nameWithType: GLXFBConfig - fullName: OpenTK.Graphics.Glx.GLXFBConfig diff --git a/api/OpenTK.Graphics.Glx.GLXFBConfigID.yml b/api/OpenTK.Graphics.Glx.GLXFBConfigID.yml deleted file mode 100644 index 9d2d21c5..00000000 --- a/api/OpenTK.Graphics.Glx.GLXFBConfigID.yml +++ /dev/null @@ -1,440 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: OpenTK.Graphics.Glx.GLXFBConfigID - commentId: T:OpenTK.Graphics.Glx.GLXFBConfigID - id: GLXFBConfigID - parent: OpenTK.Graphics.Glx - children: - - OpenTK.Graphics.Glx.GLXFBConfigID.#ctor(System.UIntPtr) - - OpenTK.Graphics.Glx.GLXFBConfigID.XID - - OpenTK.Graphics.Glx.GLXFBConfigID.op_Explicit(OpenTK.Graphics.Glx.GLXFBConfigID)~System.UIntPtr - - OpenTK.Graphics.Glx.GLXFBConfigID.op_Explicit(System.UIntPtr)~OpenTK.Graphics.Glx.GLXFBConfigID - langs: - - csharp - - vb - name: GLXFBConfigID - nameWithType: GLXFBConfigID - fullName: OpenTK.Graphics.Glx.GLXFBConfigID - type: Struct - source: - id: GLXFBConfigID - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 210 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: A GLX GLXFBConfigID handle. - example: [] - syntax: - content: public struct GLXFBConfigID - content.vb: Public Structure GLXFBConfigID - inheritedMembers: - - System.ValueType.Equals(System.Object) - - System.ValueType.GetHashCode - - System.ValueType.ToString - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.ReferenceEquals(System.Object,System.Object) -- uid: OpenTK.Graphics.Glx.GLXFBConfigID.XID - commentId: F:OpenTK.Graphics.Glx.GLXFBConfigID.XID - id: XID - parent: OpenTK.Graphics.Glx.GLXFBConfigID - langs: - - csharp - - vb - name: XID - nameWithType: GLXFBConfigID.XID - fullName: OpenTK.Graphics.Glx.GLXFBConfigID.XID - type: Field - source: - id: XID - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 215 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: The underlying XID. - example: [] - syntax: - content: public nuint XID - return: - type: System.UIntPtr - content.vb: Public XID As UIntPtr -- uid: OpenTK.Graphics.Glx.GLXFBConfigID.#ctor(System.UIntPtr) - commentId: M:OpenTK.Graphics.Glx.GLXFBConfigID.#ctor(System.UIntPtr) - id: '#ctor(System.UIntPtr)' - parent: OpenTK.Graphics.Glx.GLXFBConfigID - langs: - - csharp - - vb - name: GLXFBConfigID(nuint) - nameWithType: GLXFBConfigID.GLXFBConfigID(nuint) - fullName: OpenTK.Graphics.Glx.GLXFBConfigID.GLXFBConfigID(nuint) - type: Constructor - source: - id: .ctor - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 221 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: Constructs a new GLXFBConfigID wrapper struct from an XID. - example: [] - syntax: - content: public GLXFBConfigID(nuint xid) - parameters: - - id: xid - type: System.UIntPtr - description: The XID of the GLXFBConfigID. - content.vb: Public Sub New(xid As UIntPtr) - overload: OpenTK.Graphics.Glx.GLXFBConfigID.#ctor* - nameWithType.vb: GLXFBConfigID.New(UIntPtr) - fullName.vb: OpenTK.Graphics.Glx.GLXFBConfigID.New(System.UIntPtr) - name.vb: New(UIntPtr) -- uid: OpenTK.Graphics.Glx.GLXFBConfigID.op_Explicit(OpenTK.Graphics.Glx.GLXFBConfigID)~System.UIntPtr - commentId: M:OpenTK.Graphics.Glx.GLXFBConfigID.op_Explicit(OpenTK.Graphics.Glx.GLXFBConfigID)~System.UIntPtr - id: op_Explicit(OpenTK.Graphics.Glx.GLXFBConfigID)~System.UIntPtr - parent: OpenTK.Graphics.Glx.GLXFBConfigID - langs: - - csharp - - vb - name: explicit operator nuint(GLXFBConfigID) - nameWithType: GLXFBConfigID.explicit operator nuint(GLXFBConfigID) - fullName: OpenTK.Graphics.Glx.GLXFBConfigID.explicit operator nuint(OpenTK.Graphics.Glx.GLXFBConfigID) - type: Operator - source: - id: op_Explicit - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 226 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: public static explicit operator nuint(GLXFBConfigID handle) - parameters: - - id: handle - type: OpenTK.Graphics.Glx.GLXFBConfigID - return: - type: System.UIntPtr - content.vb: Public Shared Narrowing Operator CType(handle As GLXFBConfigID) As UIntPtr - overload: OpenTK.Graphics.Glx.GLXFBConfigID.op_Explicit* - nameWithType.vb: GLXFBConfigID.CType(GLXFBConfigID) - fullName.vb: OpenTK.Graphics.Glx.GLXFBConfigID.CType(OpenTK.Graphics.Glx.GLXFBConfigID) - name.vb: CType(GLXFBConfigID) -- uid: OpenTK.Graphics.Glx.GLXFBConfigID.op_Explicit(System.UIntPtr)~OpenTK.Graphics.Glx.GLXFBConfigID - commentId: M:OpenTK.Graphics.Glx.GLXFBConfigID.op_Explicit(System.UIntPtr)~OpenTK.Graphics.Glx.GLXFBConfigID - id: op_Explicit(System.UIntPtr)~OpenTK.Graphics.Glx.GLXFBConfigID - parent: OpenTK.Graphics.Glx.GLXFBConfigID - langs: - - csharp - - vb - name: explicit operator GLXFBConfigID(nuint) - nameWithType: GLXFBConfigID.explicit operator GLXFBConfigID(nuint) - fullName: OpenTK.Graphics.Glx.GLXFBConfigID.explicit operator OpenTK.Graphics.Glx.GLXFBConfigID(nuint) - type: Operator - source: - id: op_Explicit - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 227 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: public static explicit operator GLXFBConfigID(nuint xid) - parameters: - - id: xid - type: System.UIntPtr - return: - type: OpenTK.Graphics.Glx.GLXFBConfigID - content.vb: Public Shared Narrowing Operator CType(xid As UIntPtr) As GLXFBConfigID - overload: OpenTK.Graphics.Glx.GLXFBConfigID.op_Explicit* - nameWithType.vb: GLXFBConfigID.CType(UIntPtr) - fullName.vb: OpenTK.Graphics.Glx.GLXFBConfigID.CType(System.UIntPtr) - name.vb: CType(UIntPtr) -references: -- uid: OpenTK.Graphics.Glx - commentId: N:OpenTK.Graphics.Glx - href: OpenTK.html - name: OpenTK.Graphics.Glx - nameWithType: OpenTK.Graphics.Glx - fullName: OpenTK.Graphics.Glx - spec.csharp: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Glx - name: Glx - href: OpenTK.Graphics.Glx.html - spec.vb: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Glx - name: Glx - href: OpenTK.Graphics.Glx.html -- uid: System.ValueType.Equals(System.Object) - commentId: M:System.ValueType.Equals(System.Object) - parent: System.ValueType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals - name: Equals(object) - nameWithType: ValueType.Equals(object) - fullName: System.ValueType.Equals(object) - nameWithType.vb: ValueType.Equals(Object) - fullName.vb: System.ValueType.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: System.ValueType.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.ValueType.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.ValueType.GetHashCode - commentId: M:System.ValueType.GetHashCode - parent: System.ValueType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - name: GetHashCode() - nameWithType: ValueType.GetHashCode() - fullName: System.ValueType.GetHashCode() - spec.csharp: - - uid: System.ValueType.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - - name: ( - - name: ) - spec.vb: - - uid: System.ValueType.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - - name: ( - - name: ) -- uid: System.ValueType.ToString - commentId: M:System.ValueType.ToString - parent: System.ValueType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - name: ToString() - nameWithType: ValueType.ToString() - fullName: System.ValueType.ToString() - spec.csharp: - - uid: System.ValueType.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - - name: ( - - name: ) - spec.vb: - - uid: System.ValueType.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - - name: ( - - name: ) -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.ValueType - commentId: T:System.ValueType - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype - name: ValueType - nameWithType: ValueType - fullName: System.ValueType -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: System.UIntPtr - commentId: T:System.UIntPtr - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uintptr - name: nuint - nameWithType: nuint - fullName: nuint - nameWithType.vb: UIntPtr - fullName.vb: System.UIntPtr - name.vb: UIntPtr -- uid: OpenTK.Graphics.Glx.GLXFBConfigID.#ctor* - commentId: Overload:OpenTK.Graphics.Glx.GLXFBConfigID.#ctor - href: OpenTK.Graphics.Glx.GLXFBConfigID.html#OpenTK_Graphics_Glx_GLXFBConfigID__ctor_System_UIntPtr_ - name: GLXFBConfigID - nameWithType: GLXFBConfigID.GLXFBConfigID - fullName: OpenTK.Graphics.Glx.GLXFBConfigID.GLXFBConfigID - nameWithType.vb: GLXFBConfigID.New - fullName.vb: OpenTK.Graphics.Glx.GLXFBConfigID.New - name.vb: New -- uid: OpenTK.Graphics.Glx.GLXFBConfigID.op_Explicit* - commentId: Overload:OpenTK.Graphics.Glx.GLXFBConfigID.op_Explicit - name: explicit operator - nameWithType: GLXFBConfigID.explicit operator - fullName: OpenTK.Graphics.Glx.GLXFBConfigID.explicit operator - nameWithType.vb: GLXFBConfigID.CType - fullName.vb: OpenTK.Graphics.Glx.GLXFBConfigID.CType - name.vb: CType - spec.csharp: - - name: explicit - - name: " " - - name: operator -- uid: OpenTK.Graphics.Glx.GLXFBConfigID - commentId: T:OpenTK.Graphics.Glx.GLXFBConfigID - parent: OpenTK.Graphics.Glx - href: OpenTK.Graphics.Glx.GLXFBConfigID.html - name: GLXFBConfigID - nameWithType: GLXFBConfigID - fullName: OpenTK.Graphics.Glx.GLXFBConfigID diff --git a/api/OpenTK.Graphics.Glx.GLXFBConfigIDSGIX.yml b/api/OpenTK.Graphics.Glx.GLXFBConfigIDSGIX.yml deleted file mode 100644 index 0c88d8f4..00000000 --- a/api/OpenTK.Graphics.Glx.GLXFBConfigIDSGIX.yml +++ /dev/null @@ -1,440 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: OpenTK.Graphics.Glx.GLXFBConfigIDSGIX - commentId: T:OpenTK.Graphics.Glx.GLXFBConfigIDSGIX - id: GLXFBConfigIDSGIX - parent: OpenTK.Graphics.Glx - children: - - OpenTK.Graphics.Glx.GLXFBConfigIDSGIX.#ctor(System.UIntPtr) - - OpenTK.Graphics.Glx.GLXFBConfigIDSGIX.XID - - OpenTK.Graphics.Glx.GLXFBConfigIDSGIX.op_Explicit(OpenTK.Graphics.Glx.GLXFBConfigIDSGIX)~System.UIntPtr - - OpenTK.Graphics.Glx.GLXFBConfigIDSGIX.op_Explicit(System.UIntPtr)~OpenTK.Graphics.Glx.GLXFBConfigIDSGIX - langs: - - csharp - - vb - name: GLXFBConfigIDSGIX - nameWithType: GLXFBConfigIDSGIX - fullName: OpenTK.Graphics.Glx.GLXFBConfigIDSGIX - type: Struct - source: - id: GLXFBConfigIDSGIX - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 426 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: A GLX GLXFBConfigIDSGIX handle. - example: [] - syntax: - content: public struct GLXFBConfigIDSGIX - content.vb: Public Structure GLXFBConfigIDSGIX - inheritedMembers: - - System.ValueType.Equals(System.Object) - - System.ValueType.GetHashCode - - System.ValueType.ToString - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.ReferenceEquals(System.Object,System.Object) -- uid: OpenTK.Graphics.Glx.GLXFBConfigIDSGIX.XID - commentId: F:OpenTK.Graphics.Glx.GLXFBConfigIDSGIX.XID - id: XID - parent: OpenTK.Graphics.Glx.GLXFBConfigIDSGIX - langs: - - csharp - - vb - name: XID - nameWithType: GLXFBConfigIDSGIX.XID - fullName: OpenTK.Graphics.Glx.GLXFBConfigIDSGIX.XID - type: Field - source: - id: XID - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 431 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: The underlying XID. - example: [] - syntax: - content: public nuint XID - return: - type: System.UIntPtr - content.vb: Public XID As UIntPtr -- uid: OpenTK.Graphics.Glx.GLXFBConfigIDSGIX.#ctor(System.UIntPtr) - commentId: M:OpenTK.Graphics.Glx.GLXFBConfigIDSGIX.#ctor(System.UIntPtr) - id: '#ctor(System.UIntPtr)' - parent: OpenTK.Graphics.Glx.GLXFBConfigIDSGIX - langs: - - csharp - - vb - name: GLXFBConfigIDSGIX(nuint) - nameWithType: GLXFBConfigIDSGIX.GLXFBConfigIDSGIX(nuint) - fullName: OpenTK.Graphics.Glx.GLXFBConfigIDSGIX.GLXFBConfigIDSGIX(nuint) - type: Constructor - source: - id: .ctor - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 437 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: Constructs a new GLXFBConfigIDSGIX wrapper struct from an XID. - example: [] - syntax: - content: public GLXFBConfigIDSGIX(nuint xid) - parameters: - - id: xid - type: System.UIntPtr - description: The XID of the GLXFBConfigIDSGIX. - content.vb: Public Sub New(xid As UIntPtr) - overload: OpenTK.Graphics.Glx.GLXFBConfigIDSGIX.#ctor* - nameWithType.vb: GLXFBConfigIDSGIX.New(UIntPtr) - fullName.vb: OpenTK.Graphics.Glx.GLXFBConfigIDSGIX.New(System.UIntPtr) - name.vb: New(UIntPtr) -- uid: OpenTK.Graphics.Glx.GLXFBConfigIDSGIX.op_Explicit(OpenTK.Graphics.Glx.GLXFBConfigIDSGIX)~System.UIntPtr - commentId: M:OpenTK.Graphics.Glx.GLXFBConfigIDSGIX.op_Explicit(OpenTK.Graphics.Glx.GLXFBConfigIDSGIX)~System.UIntPtr - id: op_Explicit(OpenTK.Graphics.Glx.GLXFBConfigIDSGIX)~System.UIntPtr - parent: OpenTK.Graphics.Glx.GLXFBConfigIDSGIX - langs: - - csharp - - vb - name: explicit operator nuint(GLXFBConfigIDSGIX) - nameWithType: GLXFBConfigIDSGIX.explicit operator nuint(GLXFBConfigIDSGIX) - fullName: OpenTK.Graphics.Glx.GLXFBConfigIDSGIX.explicit operator nuint(OpenTK.Graphics.Glx.GLXFBConfigIDSGIX) - type: Operator - source: - id: op_Explicit - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 442 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: public static explicit operator nuint(GLXFBConfigIDSGIX handle) - parameters: - - id: handle - type: OpenTK.Graphics.Glx.GLXFBConfigIDSGIX - return: - type: System.UIntPtr - content.vb: Public Shared Narrowing Operator CType(handle As GLXFBConfigIDSGIX) As UIntPtr - overload: OpenTK.Graphics.Glx.GLXFBConfigIDSGIX.op_Explicit* - nameWithType.vb: GLXFBConfigIDSGIX.CType(GLXFBConfigIDSGIX) - fullName.vb: OpenTK.Graphics.Glx.GLXFBConfigIDSGIX.CType(OpenTK.Graphics.Glx.GLXFBConfigIDSGIX) - name.vb: CType(GLXFBConfigIDSGIX) -- uid: OpenTK.Graphics.Glx.GLXFBConfigIDSGIX.op_Explicit(System.UIntPtr)~OpenTK.Graphics.Glx.GLXFBConfigIDSGIX - commentId: M:OpenTK.Graphics.Glx.GLXFBConfigIDSGIX.op_Explicit(System.UIntPtr)~OpenTK.Graphics.Glx.GLXFBConfigIDSGIX - id: op_Explicit(System.UIntPtr)~OpenTK.Graphics.Glx.GLXFBConfigIDSGIX - parent: OpenTK.Graphics.Glx.GLXFBConfigIDSGIX - langs: - - csharp - - vb - name: explicit operator GLXFBConfigIDSGIX(nuint) - nameWithType: GLXFBConfigIDSGIX.explicit operator GLXFBConfigIDSGIX(nuint) - fullName: OpenTK.Graphics.Glx.GLXFBConfigIDSGIX.explicit operator OpenTK.Graphics.Glx.GLXFBConfigIDSGIX(nuint) - type: Operator - source: - id: op_Explicit - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 443 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: public static explicit operator GLXFBConfigIDSGIX(nuint xid) - parameters: - - id: xid - type: System.UIntPtr - return: - type: OpenTK.Graphics.Glx.GLXFBConfigIDSGIX - content.vb: Public Shared Narrowing Operator CType(xid As UIntPtr) As GLXFBConfigIDSGIX - overload: OpenTK.Graphics.Glx.GLXFBConfigIDSGIX.op_Explicit* - nameWithType.vb: GLXFBConfigIDSGIX.CType(UIntPtr) - fullName.vb: OpenTK.Graphics.Glx.GLXFBConfigIDSGIX.CType(System.UIntPtr) - name.vb: CType(UIntPtr) -references: -- uid: OpenTK.Graphics.Glx - commentId: N:OpenTK.Graphics.Glx - href: OpenTK.html - name: OpenTK.Graphics.Glx - nameWithType: OpenTK.Graphics.Glx - fullName: OpenTK.Graphics.Glx - spec.csharp: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Glx - name: Glx - href: OpenTK.Graphics.Glx.html - spec.vb: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Glx - name: Glx - href: OpenTK.Graphics.Glx.html -- uid: System.ValueType.Equals(System.Object) - commentId: M:System.ValueType.Equals(System.Object) - parent: System.ValueType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals - name: Equals(object) - nameWithType: ValueType.Equals(object) - fullName: System.ValueType.Equals(object) - nameWithType.vb: ValueType.Equals(Object) - fullName.vb: System.ValueType.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: System.ValueType.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.ValueType.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.ValueType.GetHashCode - commentId: M:System.ValueType.GetHashCode - parent: System.ValueType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - name: GetHashCode() - nameWithType: ValueType.GetHashCode() - fullName: System.ValueType.GetHashCode() - spec.csharp: - - uid: System.ValueType.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - - name: ( - - name: ) - spec.vb: - - uid: System.ValueType.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - - name: ( - - name: ) -- uid: System.ValueType.ToString - commentId: M:System.ValueType.ToString - parent: System.ValueType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - name: ToString() - nameWithType: ValueType.ToString() - fullName: System.ValueType.ToString() - spec.csharp: - - uid: System.ValueType.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - - name: ( - - name: ) - spec.vb: - - uid: System.ValueType.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - - name: ( - - name: ) -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.ValueType - commentId: T:System.ValueType - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype - name: ValueType - nameWithType: ValueType - fullName: System.ValueType -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: System.UIntPtr - commentId: T:System.UIntPtr - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uintptr - name: nuint - nameWithType: nuint - fullName: nuint - nameWithType.vb: UIntPtr - fullName.vb: System.UIntPtr - name.vb: UIntPtr -- uid: OpenTK.Graphics.Glx.GLXFBConfigIDSGIX.#ctor* - commentId: Overload:OpenTK.Graphics.Glx.GLXFBConfigIDSGIX.#ctor - href: OpenTK.Graphics.Glx.GLXFBConfigIDSGIX.html#OpenTK_Graphics_Glx_GLXFBConfigIDSGIX__ctor_System_UIntPtr_ - name: GLXFBConfigIDSGIX - nameWithType: GLXFBConfigIDSGIX.GLXFBConfigIDSGIX - fullName: OpenTK.Graphics.Glx.GLXFBConfigIDSGIX.GLXFBConfigIDSGIX - nameWithType.vb: GLXFBConfigIDSGIX.New - fullName.vb: OpenTK.Graphics.Glx.GLXFBConfigIDSGIX.New - name.vb: New -- uid: OpenTK.Graphics.Glx.GLXFBConfigIDSGIX.op_Explicit* - commentId: Overload:OpenTK.Graphics.Glx.GLXFBConfigIDSGIX.op_Explicit - name: explicit operator - nameWithType: GLXFBConfigIDSGIX.explicit operator - fullName: OpenTK.Graphics.Glx.GLXFBConfigIDSGIX.explicit operator - nameWithType.vb: GLXFBConfigIDSGIX.CType - fullName.vb: OpenTK.Graphics.Glx.GLXFBConfigIDSGIX.CType - name.vb: CType - spec.csharp: - - name: explicit - - name: " " - - name: operator -- uid: OpenTK.Graphics.Glx.GLXFBConfigIDSGIX - commentId: T:OpenTK.Graphics.Glx.GLXFBConfigIDSGIX - parent: OpenTK.Graphics.Glx - href: OpenTK.Graphics.Glx.GLXFBConfigIDSGIX.html - name: GLXFBConfigIDSGIX - nameWithType: GLXFBConfigIDSGIX - fullName: OpenTK.Graphics.Glx.GLXFBConfigIDSGIX diff --git a/api/OpenTK.Graphics.Glx.GLXFBConfigSGIX.yml b/api/OpenTK.Graphics.Glx.GLXFBConfigSGIX.yml deleted file mode 100644 index dd2450f1..00000000 --- a/api/OpenTK.Graphics.Glx.GLXFBConfigSGIX.yml +++ /dev/null @@ -1,435 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: OpenTK.Graphics.Glx.GLXFBConfigSGIX - commentId: T:OpenTK.Graphics.Glx.GLXFBConfigSGIX - id: GLXFBConfigSGIX - parent: OpenTK.Graphics.Glx - children: - - OpenTK.Graphics.Glx.GLXFBConfigSGIX.#ctor(System.IntPtr) - - OpenTK.Graphics.Glx.GLXFBConfigSGIX.Value - - OpenTK.Graphics.Glx.GLXFBConfigSGIX.op_Explicit(OpenTK.Graphics.Glx.GLXFBConfigSGIX)~System.IntPtr - - OpenTK.Graphics.Glx.GLXFBConfigSGIX.op_Explicit(System.IntPtr)~OpenTK.Graphics.Glx.GLXFBConfigSGIX - langs: - - csharp - - vb - name: GLXFBConfigSGIX - nameWithType: GLXFBConfigSGIX - fullName: OpenTK.Graphics.Glx.GLXFBConfigSGIX - type: Struct - source: - id: GLXFBConfigSGIX - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 449 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: An struct wrapper for GLXFBConfigSGIX. - example: [] - syntax: - content: public struct GLXFBConfigSGIX - content.vb: Public Structure GLXFBConfigSGIX - inheritedMembers: - - System.ValueType.Equals(System.Object) - - System.ValueType.GetHashCode - - System.ValueType.ToString - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.ReferenceEquals(System.Object,System.Object) -- uid: OpenTK.Graphics.Glx.GLXFBConfigSGIX.Value - commentId: F:OpenTK.Graphics.Glx.GLXFBConfigSGIX.Value - id: Value - parent: OpenTK.Graphics.Glx.GLXFBConfigSGIX - langs: - - csharp - - vb - name: Value - nameWithType: GLXFBConfigSGIX.Value - fullName: OpenTK.Graphics.Glx.GLXFBConfigSGIX.Value - type: Field - source: - id: Value - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 451 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: public nint Value - return: - type: System.IntPtr - content.vb: Public Value As IntPtr -- uid: OpenTK.Graphics.Glx.GLXFBConfigSGIX.#ctor(System.IntPtr) - commentId: M:OpenTK.Graphics.Glx.GLXFBConfigSGIX.#ctor(System.IntPtr) - id: '#ctor(System.IntPtr)' - parent: OpenTK.Graphics.Glx.GLXFBConfigSGIX - langs: - - csharp - - vb - name: GLXFBConfigSGIX(nint) - nameWithType: GLXFBConfigSGIX.GLXFBConfigSGIX(nint) - fullName: OpenTK.Graphics.Glx.GLXFBConfigSGIX.GLXFBConfigSGIX(nint) - type: Constructor - source: - id: .ctor - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 453 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: public GLXFBConfigSGIX(nint value) - parameters: - - id: value - type: System.IntPtr - content.vb: Public Sub New(value As IntPtr) - overload: OpenTK.Graphics.Glx.GLXFBConfigSGIX.#ctor* - nameWithType.vb: GLXFBConfigSGIX.New(IntPtr) - fullName.vb: OpenTK.Graphics.Glx.GLXFBConfigSGIX.New(System.IntPtr) - name.vb: New(IntPtr) -- uid: OpenTK.Graphics.Glx.GLXFBConfigSGIX.op_Explicit(System.IntPtr)~OpenTK.Graphics.Glx.GLXFBConfigSGIX - commentId: M:OpenTK.Graphics.Glx.GLXFBConfigSGIX.op_Explicit(System.IntPtr)~OpenTK.Graphics.Glx.GLXFBConfigSGIX - id: op_Explicit(System.IntPtr)~OpenTK.Graphics.Glx.GLXFBConfigSGIX - parent: OpenTK.Graphics.Glx.GLXFBConfigSGIX - langs: - - csharp - - vb - name: explicit operator GLXFBConfigSGIX(nint) - nameWithType: GLXFBConfigSGIX.explicit operator GLXFBConfigSGIX(nint) - fullName: OpenTK.Graphics.Glx.GLXFBConfigSGIX.explicit operator OpenTK.Graphics.Glx.GLXFBConfigSGIX(nint) - type: Operator - source: - id: op_Explicit - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 458 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: public static explicit operator GLXFBConfigSGIX(nint val) - parameters: - - id: val - type: System.IntPtr - return: - type: OpenTK.Graphics.Glx.GLXFBConfigSGIX - content.vb: Public Shared Narrowing Operator CType(val As IntPtr) As GLXFBConfigSGIX - overload: OpenTK.Graphics.Glx.GLXFBConfigSGIX.op_Explicit* - nameWithType.vb: GLXFBConfigSGIX.CType(IntPtr) - fullName.vb: OpenTK.Graphics.Glx.GLXFBConfigSGIX.CType(System.IntPtr) - name.vb: CType(IntPtr) -- uid: OpenTK.Graphics.Glx.GLXFBConfigSGIX.op_Explicit(OpenTK.Graphics.Glx.GLXFBConfigSGIX)~System.IntPtr - commentId: M:OpenTK.Graphics.Glx.GLXFBConfigSGIX.op_Explicit(OpenTK.Graphics.Glx.GLXFBConfigSGIX)~System.IntPtr - id: op_Explicit(OpenTK.Graphics.Glx.GLXFBConfigSGIX)~System.IntPtr - parent: OpenTK.Graphics.Glx.GLXFBConfigSGIX - langs: - - csharp - - vb - name: explicit operator nint(GLXFBConfigSGIX) - nameWithType: GLXFBConfigSGIX.explicit operator nint(GLXFBConfigSGIX) - fullName: OpenTK.Graphics.Glx.GLXFBConfigSGIX.explicit operator nint(OpenTK.Graphics.Glx.GLXFBConfigSGIX) - type: Operator - source: - id: op_Explicit - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 459 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: public static explicit operator nint(GLXFBConfigSGIX val) - parameters: - - id: val - type: OpenTK.Graphics.Glx.GLXFBConfigSGIX - return: - type: System.IntPtr - content.vb: Public Shared Narrowing Operator CType(val As GLXFBConfigSGIX) As IntPtr - overload: OpenTK.Graphics.Glx.GLXFBConfigSGIX.op_Explicit* - nameWithType.vb: GLXFBConfigSGIX.CType(GLXFBConfigSGIX) - fullName.vb: OpenTK.Graphics.Glx.GLXFBConfigSGIX.CType(OpenTK.Graphics.Glx.GLXFBConfigSGIX) - name.vb: CType(GLXFBConfigSGIX) -references: -- uid: OpenTK.Graphics.Glx - commentId: N:OpenTK.Graphics.Glx - href: OpenTK.html - name: OpenTK.Graphics.Glx - nameWithType: OpenTK.Graphics.Glx - fullName: OpenTK.Graphics.Glx - spec.csharp: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Glx - name: Glx - href: OpenTK.Graphics.Glx.html - spec.vb: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Glx - name: Glx - href: OpenTK.Graphics.Glx.html -- uid: System.ValueType.Equals(System.Object) - commentId: M:System.ValueType.Equals(System.Object) - parent: System.ValueType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals - name: Equals(object) - nameWithType: ValueType.Equals(object) - fullName: System.ValueType.Equals(object) - nameWithType.vb: ValueType.Equals(Object) - fullName.vb: System.ValueType.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: System.ValueType.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.ValueType.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.ValueType.GetHashCode - commentId: M:System.ValueType.GetHashCode - parent: System.ValueType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - name: GetHashCode() - nameWithType: ValueType.GetHashCode() - fullName: System.ValueType.GetHashCode() - spec.csharp: - - uid: System.ValueType.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - - name: ( - - name: ) - spec.vb: - - uid: System.ValueType.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - - name: ( - - name: ) -- uid: System.ValueType.ToString - commentId: M:System.ValueType.ToString - parent: System.ValueType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - name: ToString() - nameWithType: ValueType.ToString() - fullName: System.ValueType.ToString() - spec.csharp: - - uid: System.ValueType.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - - name: ( - - name: ) - spec.vb: - - uid: System.ValueType.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - - name: ( - - name: ) -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.ValueType - commentId: T:System.ValueType - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype - name: ValueType - nameWithType: ValueType - fullName: System.ValueType -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: System.IntPtr - commentId: T:System.IntPtr - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: nint - nameWithType: nint - fullName: nint - nameWithType.vb: IntPtr - fullName.vb: System.IntPtr - name.vb: IntPtr -- uid: OpenTK.Graphics.Glx.GLXFBConfigSGIX.#ctor* - commentId: Overload:OpenTK.Graphics.Glx.GLXFBConfigSGIX.#ctor - href: OpenTK.Graphics.Glx.GLXFBConfigSGIX.html#OpenTK_Graphics_Glx_GLXFBConfigSGIX__ctor_System_IntPtr_ - name: GLXFBConfigSGIX - nameWithType: GLXFBConfigSGIX.GLXFBConfigSGIX - fullName: OpenTK.Graphics.Glx.GLXFBConfigSGIX.GLXFBConfigSGIX - nameWithType.vb: GLXFBConfigSGIX.New - fullName.vb: OpenTK.Graphics.Glx.GLXFBConfigSGIX.New - name.vb: New -- uid: OpenTK.Graphics.Glx.GLXFBConfigSGIX.op_Explicit* - commentId: Overload:OpenTK.Graphics.Glx.GLXFBConfigSGIX.op_Explicit - name: explicit operator - nameWithType: GLXFBConfigSGIX.explicit operator - fullName: OpenTK.Graphics.Glx.GLXFBConfigSGIX.explicit operator - nameWithType.vb: GLXFBConfigSGIX.CType - fullName.vb: OpenTK.Graphics.Glx.GLXFBConfigSGIX.CType - name.vb: CType - spec.csharp: - - name: explicit - - name: " " - - name: operator -- uid: OpenTK.Graphics.Glx.GLXFBConfigSGIX - commentId: T:OpenTK.Graphics.Glx.GLXFBConfigSGIX - parent: OpenTK.Graphics.Glx - href: OpenTK.Graphics.Glx.GLXFBConfigSGIX.html - name: GLXFBConfigSGIX - nameWithType: GLXFBConfigSGIX - fullName: OpenTK.Graphics.Glx.GLXFBConfigSGIX diff --git a/api/OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX.yml b/api/OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX.yml deleted file mode 100644 index cce5d5fb..00000000 --- a/api/OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX.yml +++ /dev/null @@ -1,418 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX - commentId: T:OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX - id: GLXHyperpipeConfigSGIX - parent: OpenTK.Graphics.Glx - children: - - OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX.Channel - - OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX.ParticipationType - - OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX.PipeName - - OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX.TimeSlice - langs: - - csharp - - vb - name: GLXHyperpipeConfigSGIX - nameWithType: GLXHyperpipeConfigSGIX - fullName: OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX - type: Struct - source: - id: GLXHyperpipeConfigSGIX - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 509 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: public struct GLXHyperpipeConfigSGIX - content.vb: Public Structure GLXHyperpipeConfigSGIX - inheritedMembers: - - System.ValueType.Equals(System.Object) - - System.ValueType.GetHashCode - - System.ValueType.ToString - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.ReferenceEquals(System.Object,System.Object) -- uid: OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX.PipeName - commentId: F:OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX.PipeName - id: PipeName - parent: OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX - langs: - - csharp - - vb - name: PipeName - nameWithType: GLXHyperpipeConfigSGIX.PipeName - fullName: OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX.PipeName - type: Field - source: - id: PipeName - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 511 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: public byte* PipeName - return: - type: System.Byte* - content.vb: Public PipeName As Byte* -- uid: OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX.Channel - commentId: F:OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX.Channel - id: Channel - parent: OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX - langs: - - csharp - - vb - name: Channel - nameWithType: GLXHyperpipeConfigSGIX.Channel - fullName: OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX.Channel - type: Field - source: - id: Channel - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 512 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: public int Channel - return: - type: System.Int32 - content.vb: Public Channel As Integer -- uid: OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX.ParticipationType - commentId: F:OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX.ParticipationType - id: ParticipationType - parent: OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX - langs: - - csharp - - vb - name: ParticipationType - nameWithType: GLXHyperpipeConfigSGIX.ParticipationType - fullName: OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX.ParticipationType - type: Field - source: - id: ParticipationType - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 513 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: public uint ParticipationType - return: - type: System.UInt32 - content.vb: Public ParticipationType As UInteger -- uid: OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX.TimeSlice - commentId: F:OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX.TimeSlice - id: TimeSlice - parent: OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX - langs: - - csharp - - vb - name: TimeSlice - nameWithType: GLXHyperpipeConfigSGIX.TimeSlice - fullName: OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX.TimeSlice - type: Field - source: - id: TimeSlice - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 514 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: public int TimeSlice - return: - type: System.Int32 - content.vb: Public TimeSlice As Integer -references: -- uid: OpenTK.Graphics.Glx - commentId: N:OpenTK.Graphics.Glx - href: OpenTK.html - name: OpenTK.Graphics.Glx - nameWithType: OpenTK.Graphics.Glx - fullName: OpenTK.Graphics.Glx - spec.csharp: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Glx - name: Glx - href: OpenTK.Graphics.Glx.html - spec.vb: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Glx - name: Glx - href: OpenTK.Graphics.Glx.html -- uid: System.ValueType.Equals(System.Object) - commentId: M:System.ValueType.Equals(System.Object) - parent: System.ValueType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals - name: Equals(object) - nameWithType: ValueType.Equals(object) - fullName: System.ValueType.Equals(object) - nameWithType.vb: ValueType.Equals(Object) - fullName.vb: System.ValueType.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: System.ValueType.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.ValueType.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.ValueType.GetHashCode - commentId: M:System.ValueType.GetHashCode - parent: System.ValueType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - name: GetHashCode() - nameWithType: ValueType.GetHashCode() - fullName: System.ValueType.GetHashCode() - spec.csharp: - - uid: System.ValueType.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - - name: ( - - name: ) - spec.vb: - - uid: System.ValueType.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - - name: ( - - name: ) -- uid: System.ValueType.ToString - commentId: M:System.ValueType.ToString - parent: System.ValueType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - name: ToString() - nameWithType: ValueType.ToString() - fullName: System.ValueType.ToString() - spec.csharp: - - uid: System.ValueType.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - - name: ( - - name: ) - spec.vb: - - uid: System.ValueType.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - - name: ( - - name: ) -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.ValueType - commentId: T:System.ValueType - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype - name: ValueType - nameWithType: ValueType - fullName: System.ValueType -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: System.Byte* - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.byte - name: byte* - nameWithType: byte* - fullName: byte* - nameWithType.vb: Byte* - fullName.vb: Byte* - name.vb: Byte* - spec.csharp: - - uid: System.Byte - name: byte - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.byte - - name: '*' - spec.vb: - - uid: System.Byte - name: Byte - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.byte - - name: '*' -- uid: System.Int32 - commentId: T:System.Int32 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - name: int - nameWithType: int - fullName: int - nameWithType.vb: Integer - fullName.vb: Integer - name.vb: Integer -- uid: System.UInt32 - commentId: T:System.UInt32 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - name: uint - nameWithType: uint - fullName: uint - nameWithType.vb: UInteger - fullName.vb: UInteger - name.vb: UInteger diff --git a/api/OpenTK.Graphics.Glx.GLXPbuffer.yml b/api/OpenTK.Graphics.Glx.GLXPbuffer.yml deleted file mode 100644 index 01e9c755..00000000 --- a/api/OpenTK.Graphics.Glx.GLXPbuffer.yml +++ /dev/null @@ -1,440 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: OpenTK.Graphics.Glx.GLXPbuffer - commentId: T:OpenTK.Graphics.Glx.GLXPbuffer - id: GLXPbuffer - parent: OpenTK.Graphics.Glx - children: - - OpenTK.Graphics.Glx.GLXPbuffer.#ctor(System.UIntPtr) - - OpenTK.Graphics.Glx.GLXPbuffer.XID - - OpenTK.Graphics.Glx.GLXPbuffer.op_Explicit(OpenTK.Graphics.Glx.GLXPbuffer)~System.UIntPtr - - OpenTK.Graphics.Glx.GLXPbuffer.op_Explicit(System.UIntPtr)~OpenTK.Graphics.Glx.GLXPbuffer - langs: - - csharp - - vb - name: GLXPbuffer - nameWithType: GLXPbuffer - fullName: OpenTK.Graphics.Glx.GLXPbuffer - type: Struct - source: - id: GLXPbuffer - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 357 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: A GLX GLXPbuffer handle. - example: [] - syntax: - content: public struct GLXPbuffer - content.vb: Public Structure GLXPbuffer - inheritedMembers: - - System.ValueType.Equals(System.Object) - - System.ValueType.GetHashCode - - System.ValueType.ToString - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.ReferenceEquals(System.Object,System.Object) -- uid: OpenTK.Graphics.Glx.GLXPbuffer.XID - commentId: F:OpenTK.Graphics.Glx.GLXPbuffer.XID - id: XID - parent: OpenTK.Graphics.Glx.GLXPbuffer - langs: - - csharp - - vb - name: XID - nameWithType: GLXPbuffer.XID - fullName: OpenTK.Graphics.Glx.GLXPbuffer.XID - type: Field - source: - id: XID - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 362 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: The underlying XID. - example: [] - syntax: - content: public nuint XID - return: - type: System.UIntPtr - content.vb: Public XID As UIntPtr -- uid: OpenTK.Graphics.Glx.GLXPbuffer.#ctor(System.UIntPtr) - commentId: M:OpenTK.Graphics.Glx.GLXPbuffer.#ctor(System.UIntPtr) - id: '#ctor(System.UIntPtr)' - parent: OpenTK.Graphics.Glx.GLXPbuffer - langs: - - csharp - - vb - name: GLXPbuffer(nuint) - nameWithType: GLXPbuffer.GLXPbuffer(nuint) - fullName: OpenTK.Graphics.Glx.GLXPbuffer.GLXPbuffer(nuint) - type: Constructor - source: - id: .ctor - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 368 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: Constructs a new GLXPbuffer wrapper struct from an XID. - example: [] - syntax: - content: public GLXPbuffer(nuint xid) - parameters: - - id: xid - type: System.UIntPtr - description: The XID of the GLXPbuffer. - content.vb: Public Sub New(xid As UIntPtr) - overload: OpenTK.Graphics.Glx.GLXPbuffer.#ctor* - nameWithType.vb: GLXPbuffer.New(UIntPtr) - fullName.vb: OpenTK.Graphics.Glx.GLXPbuffer.New(System.UIntPtr) - name.vb: New(UIntPtr) -- uid: OpenTK.Graphics.Glx.GLXPbuffer.op_Explicit(OpenTK.Graphics.Glx.GLXPbuffer)~System.UIntPtr - commentId: M:OpenTK.Graphics.Glx.GLXPbuffer.op_Explicit(OpenTK.Graphics.Glx.GLXPbuffer)~System.UIntPtr - id: op_Explicit(OpenTK.Graphics.Glx.GLXPbuffer)~System.UIntPtr - parent: OpenTK.Graphics.Glx.GLXPbuffer - langs: - - csharp - - vb - name: explicit operator nuint(GLXPbuffer) - nameWithType: GLXPbuffer.explicit operator nuint(GLXPbuffer) - fullName: OpenTK.Graphics.Glx.GLXPbuffer.explicit operator nuint(OpenTK.Graphics.Glx.GLXPbuffer) - type: Operator - source: - id: op_Explicit - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 373 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: public static explicit operator nuint(GLXPbuffer handle) - parameters: - - id: handle - type: OpenTK.Graphics.Glx.GLXPbuffer - return: - type: System.UIntPtr - content.vb: Public Shared Narrowing Operator CType(handle As GLXPbuffer) As UIntPtr - overload: OpenTK.Graphics.Glx.GLXPbuffer.op_Explicit* - nameWithType.vb: GLXPbuffer.CType(GLXPbuffer) - fullName.vb: OpenTK.Graphics.Glx.GLXPbuffer.CType(OpenTK.Graphics.Glx.GLXPbuffer) - name.vb: CType(GLXPbuffer) -- uid: OpenTK.Graphics.Glx.GLXPbuffer.op_Explicit(System.UIntPtr)~OpenTK.Graphics.Glx.GLXPbuffer - commentId: M:OpenTK.Graphics.Glx.GLXPbuffer.op_Explicit(System.UIntPtr)~OpenTK.Graphics.Glx.GLXPbuffer - id: op_Explicit(System.UIntPtr)~OpenTK.Graphics.Glx.GLXPbuffer - parent: OpenTK.Graphics.Glx.GLXPbuffer - langs: - - csharp - - vb - name: explicit operator GLXPbuffer(nuint) - nameWithType: GLXPbuffer.explicit operator GLXPbuffer(nuint) - fullName: OpenTK.Graphics.Glx.GLXPbuffer.explicit operator OpenTK.Graphics.Glx.GLXPbuffer(nuint) - type: Operator - source: - id: op_Explicit - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 374 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: public static explicit operator GLXPbuffer(nuint xid) - parameters: - - id: xid - type: System.UIntPtr - return: - type: OpenTK.Graphics.Glx.GLXPbuffer - content.vb: Public Shared Narrowing Operator CType(xid As UIntPtr) As GLXPbuffer - overload: OpenTK.Graphics.Glx.GLXPbuffer.op_Explicit* - nameWithType.vb: GLXPbuffer.CType(UIntPtr) - fullName.vb: OpenTK.Graphics.Glx.GLXPbuffer.CType(System.UIntPtr) - name.vb: CType(UIntPtr) -references: -- uid: OpenTK.Graphics.Glx - commentId: N:OpenTK.Graphics.Glx - href: OpenTK.html - name: OpenTK.Graphics.Glx - nameWithType: OpenTK.Graphics.Glx - fullName: OpenTK.Graphics.Glx - spec.csharp: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Glx - name: Glx - href: OpenTK.Graphics.Glx.html - spec.vb: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Glx - name: Glx - href: OpenTK.Graphics.Glx.html -- uid: System.ValueType.Equals(System.Object) - commentId: M:System.ValueType.Equals(System.Object) - parent: System.ValueType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals - name: Equals(object) - nameWithType: ValueType.Equals(object) - fullName: System.ValueType.Equals(object) - nameWithType.vb: ValueType.Equals(Object) - fullName.vb: System.ValueType.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: System.ValueType.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.ValueType.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.ValueType.GetHashCode - commentId: M:System.ValueType.GetHashCode - parent: System.ValueType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - name: GetHashCode() - nameWithType: ValueType.GetHashCode() - fullName: System.ValueType.GetHashCode() - spec.csharp: - - uid: System.ValueType.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - - name: ( - - name: ) - spec.vb: - - uid: System.ValueType.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - - name: ( - - name: ) -- uid: System.ValueType.ToString - commentId: M:System.ValueType.ToString - parent: System.ValueType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - name: ToString() - nameWithType: ValueType.ToString() - fullName: System.ValueType.ToString() - spec.csharp: - - uid: System.ValueType.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - - name: ( - - name: ) - spec.vb: - - uid: System.ValueType.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - - name: ( - - name: ) -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.ValueType - commentId: T:System.ValueType - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype - name: ValueType - nameWithType: ValueType - fullName: System.ValueType -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: System.UIntPtr - commentId: T:System.UIntPtr - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uintptr - name: nuint - nameWithType: nuint - fullName: nuint - nameWithType.vb: UIntPtr - fullName.vb: System.UIntPtr - name.vb: UIntPtr -- uid: OpenTK.Graphics.Glx.GLXPbuffer.#ctor* - commentId: Overload:OpenTK.Graphics.Glx.GLXPbuffer.#ctor - href: OpenTK.Graphics.Glx.GLXPbuffer.html#OpenTK_Graphics_Glx_GLXPbuffer__ctor_System_UIntPtr_ - name: GLXPbuffer - nameWithType: GLXPbuffer.GLXPbuffer - fullName: OpenTK.Graphics.Glx.GLXPbuffer.GLXPbuffer - nameWithType.vb: GLXPbuffer.New - fullName.vb: OpenTK.Graphics.Glx.GLXPbuffer.New - name.vb: New -- uid: OpenTK.Graphics.Glx.GLXPbuffer.op_Explicit* - commentId: Overload:OpenTK.Graphics.Glx.GLXPbuffer.op_Explicit - name: explicit operator - nameWithType: GLXPbuffer.explicit operator - fullName: OpenTK.Graphics.Glx.GLXPbuffer.explicit operator - nameWithType.vb: GLXPbuffer.CType - fullName.vb: OpenTK.Graphics.Glx.GLXPbuffer.CType - name.vb: CType - spec.csharp: - - name: explicit - - name: " " - - name: operator -- uid: OpenTK.Graphics.Glx.GLXPbuffer - commentId: T:OpenTK.Graphics.Glx.GLXPbuffer - parent: OpenTK.Graphics.Glx - href: OpenTK.Graphics.Glx.GLXPbuffer.html - name: GLXPbuffer - nameWithType: GLXPbuffer - fullName: OpenTK.Graphics.Glx.GLXPbuffer diff --git a/api/OpenTK.Graphics.Glx.GLXPbufferSGIX.yml b/api/OpenTK.Graphics.Glx.GLXPbufferSGIX.yml deleted file mode 100644 index 713363df..00000000 --- a/api/OpenTK.Graphics.Glx.GLXPbufferSGIX.yml +++ /dev/null @@ -1,440 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: OpenTK.Graphics.Glx.GLXPbufferSGIX - commentId: T:OpenTK.Graphics.Glx.GLXPbufferSGIX - id: GLXPbufferSGIX - parent: OpenTK.Graphics.Glx - children: - - OpenTK.Graphics.Glx.GLXPbufferSGIX.#ctor(System.UIntPtr) - - OpenTK.Graphics.Glx.GLXPbufferSGIX.XID - - OpenTK.Graphics.Glx.GLXPbufferSGIX.op_Explicit(OpenTK.Graphics.Glx.GLXPbufferSGIX)~System.UIntPtr - - OpenTK.Graphics.Glx.GLXPbufferSGIX.op_Explicit(System.UIntPtr)~OpenTK.Graphics.Glx.GLXPbufferSGIX - langs: - - csharp - - vb - name: GLXPbufferSGIX - nameWithType: GLXPbufferSGIX - fullName: OpenTK.Graphics.Glx.GLXPbufferSGIX - type: Struct - source: - id: GLXPbufferSGIX - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 465 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: A GLX GLXPbufferSGIX handle. - example: [] - syntax: - content: public struct GLXPbufferSGIX - content.vb: Public Structure GLXPbufferSGIX - inheritedMembers: - - System.ValueType.Equals(System.Object) - - System.ValueType.GetHashCode - - System.ValueType.ToString - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.ReferenceEquals(System.Object,System.Object) -- uid: OpenTK.Graphics.Glx.GLXPbufferSGIX.XID - commentId: F:OpenTK.Graphics.Glx.GLXPbufferSGIX.XID - id: XID - parent: OpenTK.Graphics.Glx.GLXPbufferSGIX - langs: - - csharp - - vb - name: XID - nameWithType: GLXPbufferSGIX.XID - fullName: OpenTK.Graphics.Glx.GLXPbufferSGIX.XID - type: Field - source: - id: XID - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 470 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: The underlying XID. - example: [] - syntax: - content: public nuint XID - return: - type: System.UIntPtr - content.vb: Public XID As UIntPtr -- uid: OpenTK.Graphics.Glx.GLXPbufferSGIX.#ctor(System.UIntPtr) - commentId: M:OpenTK.Graphics.Glx.GLXPbufferSGIX.#ctor(System.UIntPtr) - id: '#ctor(System.UIntPtr)' - parent: OpenTK.Graphics.Glx.GLXPbufferSGIX - langs: - - csharp - - vb - name: GLXPbufferSGIX(nuint) - nameWithType: GLXPbufferSGIX.GLXPbufferSGIX(nuint) - fullName: OpenTK.Graphics.Glx.GLXPbufferSGIX.GLXPbufferSGIX(nuint) - type: Constructor - source: - id: .ctor - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 476 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: Constructs a new GLXPbufferSGIX wrapper struct from an XID. - example: [] - syntax: - content: public GLXPbufferSGIX(nuint xid) - parameters: - - id: xid - type: System.UIntPtr - description: The XID of the GLXPbufferSGIX. - content.vb: Public Sub New(xid As UIntPtr) - overload: OpenTK.Graphics.Glx.GLXPbufferSGIX.#ctor* - nameWithType.vb: GLXPbufferSGIX.New(UIntPtr) - fullName.vb: OpenTK.Graphics.Glx.GLXPbufferSGIX.New(System.UIntPtr) - name.vb: New(UIntPtr) -- uid: OpenTK.Graphics.Glx.GLXPbufferSGIX.op_Explicit(OpenTK.Graphics.Glx.GLXPbufferSGIX)~System.UIntPtr - commentId: M:OpenTK.Graphics.Glx.GLXPbufferSGIX.op_Explicit(OpenTK.Graphics.Glx.GLXPbufferSGIX)~System.UIntPtr - id: op_Explicit(OpenTK.Graphics.Glx.GLXPbufferSGIX)~System.UIntPtr - parent: OpenTK.Graphics.Glx.GLXPbufferSGIX - langs: - - csharp - - vb - name: explicit operator nuint(GLXPbufferSGIX) - nameWithType: GLXPbufferSGIX.explicit operator nuint(GLXPbufferSGIX) - fullName: OpenTK.Graphics.Glx.GLXPbufferSGIX.explicit operator nuint(OpenTK.Graphics.Glx.GLXPbufferSGIX) - type: Operator - source: - id: op_Explicit - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 481 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: public static explicit operator nuint(GLXPbufferSGIX handle) - parameters: - - id: handle - type: OpenTK.Graphics.Glx.GLXPbufferSGIX - return: - type: System.UIntPtr - content.vb: Public Shared Narrowing Operator CType(handle As GLXPbufferSGIX) As UIntPtr - overload: OpenTK.Graphics.Glx.GLXPbufferSGIX.op_Explicit* - nameWithType.vb: GLXPbufferSGIX.CType(GLXPbufferSGIX) - fullName.vb: OpenTK.Graphics.Glx.GLXPbufferSGIX.CType(OpenTK.Graphics.Glx.GLXPbufferSGIX) - name.vb: CType(GLXPbufferSGIX) -- uid: OpenTK.Graphics.Glx.GLXPbufferSGIX.op_Explicit(System.UIntPtr)~OpenTK.Graphics.Glx.GLXPbufferSGIX - commentId: M:OpenTK.Graphics.Glx.GLXPbufferSGIX.op_Explicit(System.UIntPtr)~OpenTK.Graphics.Glx.GLXPbufferSGIX - id: op_Explicit(System.UIntPtr)~OpenTK.Graphics.Glx.GLXPbufferSGIX - parent: OpenTK.Graphics.Glx.GLXPbufferSGIX - langs: - - csharp - - vb - name: explicit operator GLXPbufferSGIX(nuint) - nameWithType: GLXPbufferSGIX.explicit operator GLXPbufferSGIX(nuint) - fullName: OpenTK.Graphics.Glx.GLXPbufferSGIX.explicit operator OpenTK.Graphics.Glx.GLXPbufferSGIX(nuint) - type: Operator - source: - id: op_Explicit - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 482 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: public static explicit operator GLXPbufferSGIX(nuint xid) - parameters: - - id: xid - type: System.UIntPtr - return: - type: OpenTK.Graphics.Glx.GLXPbufferSGIX - content.vb: Public Shared Narrowing Operator CType(xid As UIntPtr) As GLXPbufferSGIX - overload: OpenTK.Graphics.Glx.GLXPbufferSGIX.op_Explicit* - nameWithType.vb: GLXPbufferSGIX.CType(UIntPtr) - fullName.vb: OpenTK.Graphics.Glx.GLXPbufferSGIX.CType(System.UIntPtr) - name.vb: CType(UIntPtr) -references: -- uid: OpenTK.Graphics.Glx - commentId: N:OpenTK.Graphics.Glx - href: OpenTK.html - name: OpenTK.Graphics.Glx - nameWithType: OpenTK.Graphics.Glx - fullName: OpenTK.Graphics.Glx - spec.csharp: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Glx - name: Glx - href: OpenTK.Graphics.Glx.html - spec.vb: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Glx - name: Glx - href: OpenTK.Graphics.Glx.html -- uid: System.ValueType.Equals(System.Object) - commentId: M:System.ValueType.Equals(System.Object) - parent: System.ValueType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals - name: Equals(object) - nameWithType: ValueType.Equals(object) - fullName: System.ValueType.Equals(object) - nameWithType.vb: ValueType.Equals(Object) - fullName.vb: System.ValueType.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: System.ValueType.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.ValueType.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.ValueType.GetHashCode - commentId: M:System.ValueType.GetHashCode - parent: System.ValueType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - name: GetHashCode() - nameWithType: ValueType.GetHashCode() - fullName: System.ValueType.GetHashCode() - spec.csharp: - - uid: System.ValueType.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - - name: ( - - name: ) - spec.vb: - - uid: System.ValueType.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - - name: ( - - name: ) -- uid: System.ValueType.ToString - commentId: M:System.ValueType.ToString - parent: System.ValueType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - name: ToString() - nameWithType: ValueType.ToString() - fullName: System.ValueType.ToString() - spec.csharp: - - uid: System.ValueType.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - - name: ( - - name: ) - spec.vb: - - uid: System.ValueType.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - - name: ( - - name: ) -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.ValueType - commentId: T:System.ValueType - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype - name: ValueType - nameWithType: ValueType - fullName: System.ValueType -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: System.UIntPtr - commentId: T:System.UIntPtr - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uintptr - name: nuint - nameWithType: nuint - fullName: nuint - nameWithType.vb: UIntPtr - fullName.vb: System.UIntPtr - name.vb: UIntPtr -- uid: OpenTK.Graphics.Glx.GLXPbufferSGIX.#ctor* - commentId: Overload:OpenTK.Graphics.Glx.GLXPbufferSGIX.#ctor - href: OpenTK.Graphics.Glx.GLXPbufferSGIX.html#OpenTK_Graphics_Glx_GLXPbufferSGIX__ctor_System_UIntPtr_ - name: GLXPbufferSGIX - nameWithType: GLXPbufferSGIX.GLXPbufferSGIX - fullName: OpenTK.Graphics.Glx.GLXPbufferSGIX.GLXPbufferSGIX - nameWithType.vb: GLXPbufferSGIX.New - fullName.vb: OpenTK.Graphics.Glx.GLXPbufferSGIX.New - name.vb: New -- uid: OpenTK.Graphics.Glx.GLXPbufferSGIX.op_Explicit* - commentId: Overload:OpenTK.Graphics.Glx.GLXPbufferSGIX.op_Explicit - name: explicit operator - nameWithType: GLXPbufferSGIX.explicit operator - fullName: OpenTK.Graphics.Glx.GLXPbufferSGIX.explicit operator - nameWithType.vb: GLXPbufferSGIX.CType - fullName.vb: OpenTK.Graphics.Glx.GLXPbufferSGIX.CType - name.vb: CType - spec.csharp: - - name: explicit - - name: " " - - name: operator -- uid: OpenTK.Graphics.Glx.GLXPbufferSGIX - commentId: T:OpenTK.Graphics.Glx.GLXPbufferSGIX - parent: OpenTK.Graphics.Glx - href: OpenTK.Graphics.Glx.GLXPbufferSGIX.html - name: GLXPbufferSGIX - nameWithType: GLXPbufferSGIX - fullName: OpenTK.Graphics.Glx.GLXPbufferSGIX diff --git a/api/OpenTK.Graphics.Glx.GLXPixmap.yml b/api/OpenTK.Graphics.Glx.GLXPixmap.yml deleted file mode 100644 index 3ba98844..00000000 --- a/api/OpenTK.Graphics.Glx.GLXPixmap.yml +++ /dev/null @@ -1,440 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: OpenTK.Graphics.Glx.GLXPixmap - commentId: T:OpenTK.Graphics.Glx.GLXPixmap - id: GLXPixmap - parent: OpenTK.Graphics.Glx - children: - - OpenTK.Graphics.Glx.GLXPixmap.#ctor(System.UIntPtr) - - OpenTK.Graphics.Glx.GLXPixmap.XID - - OpenTK.Graphics.Glx.GLXPixmap.op_Explicit(OpenTK.Graphics.Glx.GLXPixmap)~System.UIntPtr - - OpenTK.Graphics.Glx.GLXPixmap.op_Explicit(System.UIntPtr)~OpenTK.Graphics.Glx.GLXPixmap - langs: - - csharp - - vb - name: GLXPixmap - nameWithType: GLXPixmap - fullName: OpenTK.Graphics.Glx.GLXPixmap - type: Struct - source: - id: GLXPixmap - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 288 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: A GLX GLXPixmap handle. - example: [] - syntax: - content: public struct GLXPixmap - content.vb: Public Structure GLXPixmap - inheritedMembers: - - System.ValueType.Equals(System.Object) - - System.ValueType.GetHashCode - - System.ValueType.ToString - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.ReferenceEquals(System.Object,System.Object) -- uid: OpenTK.Graphics.Glx.GLXPixmap.XID - commentId: F:OpenTK.Graphics.Glx.GLXPixmap.XID - id: XID - parent: OpenTK.Graphics.Glx.GLXPixmap - langs: - - csharp - - vb - name: XID - nameWithType: GLXPixmap.XID - fullName: OpenTK.Graphics.Glx.GLXPixmap.XID - type: Field - source: - id: XID - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 293 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: The underlying XID. - example: [] - syntax: - content: public nuint XID - return: - type: System.UIntPtr - content.vb: Public XID As UIntPtr -- uid: OpenTK.Graphics.Glx.GLXPixmap.#ctor(System.UIntPtr) - commentId: M:OpenTK.Graphics.Glx.GLXPixmap.#ctor(System.UIntPtr) - id: '#ctor(System.UIntPtr)' - parent: OpenTK.Graphics.Glx.GLXPixmap - langs: - - csharp - - vb - name: GLXPixmap(nuint) - nameWithType: GLXPixmap.GLXPixmap(nuint) - fullName: OpenTK.Graphics.Glx.GLXPixmap.GLXPixmap(nuint) - type: Constructor - source: - id: .ctor - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 299 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: Constructs a new GLXPixmap wrapper struct from an XID. - example: [] - syntax: - content: public GLXPixmap(nuint xid) - parameters: - - id: xid - type: System.UIntPtr - description: The XID of the GLXPixmap. - content.vb: Public Sub New(xid As UIntPtr) - overload: OpenTK.Graphics.Glx.GLXPixmap.#ctor* - nameWithType.vb: GLXPixmap.New(UIntPtr) - fullName.vb: OpenTK.Graphics.Glx.GLXPixmap.New(System.UIntPtr) - name.vb: New(UIntPtr) -- uid: OpenTK.Graphics.Glx.GLXPixmap.op_Explicit(OpenTK.Graphics.Glx.GLXPixmap)~System.UIntPtr - commentId: M:OpenTK.Graphics.Glx.GLXPixmap.op_Explicit(OpenTK.Graphics.Glx.GLXPixmap)~System.UIntPtr - id: op_Explicit(OpenTK.Graphics.Glx.GLXPixmap)~System.UIntPtr - parent: OpenTK.Graphics.Glx.GLXPixmap - langs: - - csharp - - vb - name: explicit operator nuint(GLXPixmap) - nameWithType: GLXPixmap.explicit operator nuint(GLXPixmap) - fullName: OpenTK.Graphics.Glx.GLXPixmap.explicit operator nuint(OpenTK.Graphics.Glx.GLXPixmap) - type: Operator - source: - id: op_Explicit - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 304 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: public static explicit operator nuint(GLXPixmap handle) - parameters: - - id: handle - type: OpenTK.Graphics.Glx.GLXPixmap - return: - type: System.UIntPtr - content.vb: Public Shared Narrowing Operator CType(handle As GLXPixmap) As UIntPtr - overload: OpenTK.Graphics.Glx.GLXPixmap.op_Explicit* - nameWithType.vb: GLXPixmap.CType(GLXPixmap) - fullName.vb: OpenTK.Graphics.Glx.GLXPixmap.CType(OpenTK.Graphics.Glx.GLXPixmap) - name.vb: CType(GLXPixmap) -- uid: OpenTK.Graphics.Glx.GLXPixmap.op_Explicit(System.UIntPtr)~OpenTK.Graphics.Glx.GLXPixmap - commentId: M:OpenTK.Graphics.Glx.GLXPixmap.op_Explicit(System.UIntPtr)~OpenTK.Graphics.Glx.GLXPixmap - id: op_Explicit(System.UIntPtr)~OpenTK.Graphics.Glx.GLXPixmap - parent: OpenTK.Graphics.Glx.GLXPixmap - langs: - - csharp - - vb - name: explicit operator GLXPixmap(nuint) - nameWithType: GLXPixmap.explicit operator GLXPixmap(nuint) - fullName: OpenTK.Graphics.Glx.GLXPixmap.explicit operator OpenTK.Graphics.Glx.GLXPixmap(nuint) - type: Operator - source: - id: op_Explicit - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 305 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: public static explicit operator GLXPixmap(nuint xid) - parameters: - - id: xid - type: System.UIntPtr - return: - type: OpenTK.Graphics.Glx.GLXPixmap - content.vb: Public Shared Narrowing Operator CType(xid As UIntPtr) As GLXPixmap - overload: OpenTK.Graphics.Glx.GLXPixmap.op_Explicit* - nameWithType.vb: GLXPixmap.CType(UIntPtr) - fullName.vb: OpenTK.Graphics.Glx.GLXPixmap.CType(System.UIntPtr) - name.vb: CType(UIntPtr) -references: -- uid: OpenTK.Graphics.Glx - commentId: N:OpenTK.Graphics.Glx - href: OpenTK.html - name: OpenTK.Graphics.Glx - nameWithType: OpenTK.Graphics.Glx - fullName: OpenTK.Graphics.Glx - spec.csharp: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Glx - name: Glx - href: OpenTK.Graphics.Glx.html - spec.vb: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Glx - name: Glx - href: OpenTK.Graphics.Glx.html -- uid: System.ValueType.Equals(System.Object) - commentId: M:System.ValueType.Equals(System.Object) - parent: System.ValueType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals - name: Equals(object) - nameWithType: ValueType.Equals(object) - fullName: System.ValueType.Equals(object) - nameWithType.vb: ValueType.Equals(Object) - fullName.vb: System.ValueType.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: System.ValueType.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.ValueType.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.ValueType.GetHashCode - commentId: M:System.ValueType.GetHashCode - parent: System.ValueType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - name: GetHashCode() - nameWithType: ValueType.GetHashCode() - fullName: System.ValueType.GetHashCode() - spec.csharp: - - uid: System.ValueType.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - - name: ( - - name: ) - spec.vb: - - uid: System.ValueType.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - - name: ( - - name: ) -- uid: System.ValueType.ToString - commentId: M:System.ValueType.ToString - parent: System.ValueType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - name: ToString() - nameWithType: ValueType.ToString() - fullName: System.ValueType.ToString() - spec.csharp: - - uid: System.ValueType.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - - name: ( - - name: ) - spec.vb: - - uid: System.ValueType.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - - name: ( - - name: ) -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.ValueType - commentId: T:System.ValueType - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype - name: ValueType - nameWithType: ValueType - fullName: System.ValueType -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: System.UIntPtr - commentId: T:System.UIntPtr - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uintptr - name: nuint - nameWithType: nuint - fullName: nuint - nameWithType.vb: UIntPtr - fullName.vb: System.UIntPtr - name.vb: UIntPtr -- uid: OpenTK.Graphics.Glx.GLXPixmap.#ctor* - commentId: Overload:OpenTK.Graphics.Glx.GLXPixmap.#ctor - href: OpenTK.Graphics.Glx.GLXPixmap.html#OpenTK_Graphics_Glx_GLXPixmap__ctor_System_UIntPtr_ - name: GLXPixmap - nameWithType: GLXPixmap.GLXPixmap - fullName: OpenTK.Graphics.Glx.GLXPixmap.GLXPixmap - nameWithType.vb: GLXPixmap.New - fullName.vb: OpenTK.Graphics.Glx.GLXPixmap.New - name.vb: New -- uid: OpenTK.Graphics.Glx.GLXPixmap.op_Explicit* - commentId: Overload:OpenTK.Graphics.Glx.GLXPixmap.op_Explicit - name: explicit operator - nameWithType: GLXPixmap.explicit operator - fullName: OpenTK.Graphics.Glx.GLXPixmap.explicit operator - nameWithType.vb: GLXPixmap.CType - fullName.vb: OpenTK.Graphics.Glx.GLXPixmap.CType - name.vb: CType - spec.csharp: - - name: explicit - - name: " " - - name: operator -- uid: OpenTK.Graphics.Glx.GLXPixmap - commentId: T:OpenTK.Graphics.Glx.GLXPixmap - parent: OpenTK.Graphics.Glx - href: OpenTK.Graphics.Glx.GLXPixmap.html - name: GLXPixmap - nameWithType: GLXPixmap - fullName: OpenTK.Graphics.Glx.GLXPixmap diff --git a/api/OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV.yml b/api/OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV.yml deleted file mode 100644 index b69550c6..00000000 --- a/api/OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV.yml +++ /dev/null @@ -1,440 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV - commentId: T:OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV - id: GLXVideoCaptureDeviceNV - parent: OpenTK.Graphics.Glx - children: - - OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV.#ctor(System.UIntPtr) - - OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV.XID - - OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV.op_Explicit(OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV)~System.UIntPtr - - OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV.op_Explicit(System.UIntPtr)~OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV - langs: - - csharp - - vb - name: GLXVideoCaptureDeviceNV - nameWithType: GLXVideoCaptureDeviceNV - fullName: OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV - type: Struct - source: - id: GLXVideoCaptureDeviceNV - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 380 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: A GLX GLXVideoCaptureDeviceNV handle. - example: [] - syntax: - content: public struct GLXVideoCaptureDeviceNV - content.vb: Public Structure GLXVideoCaptureDeviceNV - inheritedMembers: - - System.ValueType.Equals(System.Object) - - System.ValueType.GetHashCode - - System.ValueType.ToString - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.ReferenceEquals(System.Object,System.Object) -- uid: OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV.XID - commentId: F:OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV.XID - id: XID - parent: OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV - langs: - - csharp - - vb - name: XID - nameWithType: GLXVideoCaptureDeviceNV.XID - fullName: OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV.XID - type: Field - source: - id: XID - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 385 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: The underlying XID. - example: [] - syntax: - content: public nuint XID - return: - type: System.UIntPtr - content.vb: Public XID As UIntPtr -- uid: OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV.#ctor(System.UIntPtr) - commentId: M:OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV.#ctor(System.UIntPtr) - id: '#ctor(System.UIntPtr)' - parent: OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV - langs: - - csharp - - vb - name: GLXVideoCaptureDeviceNV(nuint) - nameWithType: GLXVideoCaptureDeviceNV.GLXVideoCaptureDeviceNV(nuint) - fullName: OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV.GLXVideoCaptureDeviceNV(nuint) - type: Constructor - source: - id: .ctor - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 391 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: Constructs a new GLXVideoCaptureDeviceNV wrapper struct from an XID. - example: [] - syntax: - content: public GLXVideoCaptureDeviceNV(nuint xid) - parameters: - - id: xid - type: System.UIntPtr - description: The XID of the GLXVideoCaptureDeviceNV. - content.vb: Public Sub New(xid As UIntPtr) - overload: OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV.#ctor* - nameWithType.vb: GLXVideoCaptureDeviceNV.New(UIntPtr) - fullName.vb: OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV.New(System.UIntPtr) - name.vb: New(UIntPtr) -- uid: OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV.op_Explicit(OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV)~System.UIntPtr - commentId: M:OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV.op_Explicit(OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV)~System.UIntPtr - id: op_Explicit(OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV)~System.UIntPtr - parent: OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV - langs: - - csharp - - vb - name: explicit operator nuint(GLXVideoCaptureDeviceNV) - nameWithType: GLXVideoCaptureDeviceNV.explicit operator nuint(GLXVideoCaptureDeviceNV) - fullName: OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV.explicit operator nuint(OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV) - type: Operator - source: - id: op_Explicit - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 396 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: public static explicit operator nuint(GLXVideoCaptureDeviceNV handle) - parameters: - - id: handle - type: OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV - return: - type: System.UIntPtr - content.vb: Public Shared Narrowing Operator CType(handle As GLXVideoCaptureDeviceNV) As UIntPtr - overload: OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV.op_Explicit* - nameWithType.vb: GLXVideoCaptureDeviceNV.CType(GLXVideoCaptureDeviceNV) - fullName.vb: OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV.CType(OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV) - name.vb: CType(GLXVideoCaptureDeviceNV) -- uid: OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV.op_Explicit(System.UIntPtr)~OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV - commentId: M:OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV.op_Explicit(System.UIntPtr)~OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV - id: op_Explicit(System.UIntPtr)~OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV - parent: OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV - langs: - - csharp - - vb - name: explicit operator GLXVideoCaptureDeviceNV(nuint) - nameWithType: GLXVideoCaptureDeviceNV.explicit operator GLXVideoCaptureDeviceNV(nuint) - fullName: OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV.explicit operator OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV(nuint) - type: Operator - source: - id: op_Explicit - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 397 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: public static explicit operator GLXVideoCaptureDeviceNV(nuint xid) - parameters: - - id: xid - type: System.UIntPtr - return: - type: OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV - content.vb: Public Shared Narrowing Operator CType(xid As UIntPtr) As GLXVideoCaptureDeviceNV - overload: OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV.op_Explicit* - nameWithType.vb: GLXVideoCaptureDeviceNV.CType(UIntPtr) - fullName.vb: OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV.CType(System.UIntPtr) - name.vb: CType(UIntPtr) -references: -- uid: OpenTK.Graphics.Glx - commentId: N:OpenTK.Graphics.Glx - href: OpenTK.html - name: OpenTK.Graphics.Glx - nameWithType: OpenTK.Graphics.Glx - fullName: OpenTK.Graphics.Glx - spec.csharp: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Glx - name: Glx - href: OpenTK.Graphics.Glx.html - spec.vb: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Glx - name: Glx - href: OpenTK.Graphics.Glx.html -- uid: System.ValueType.Equals(System.Object) - commentId: M:System.ValueType.Equals(System.Object) - parent: System.ValueType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals - name: Equals(object) - nameWithType: ValueType.Equals(object) - fullName: System.ValueType.Equals(object) - nameWithType.vb: ValueType.Equals(Object) - fullName.vb: System.ValueType.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: System.ValueType.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.ValueType.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.ValueType.GetHashCode - commentId: M:System.ValueType.GetHashCode - parent: System.ValueType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - name: GetHashCode() - nameWithType: ValueType.GetHashCode() - fullName: System.ValueType.GetHashCode() - spec.csharp: - - uid: System.ValueType.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - - name: ( - - name: ) - spec.vb: - - uid: System.ValueType.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - - name: ( - - name: ) -- uid: System.ValueType.ToString - commentId: M:System.ValueType.ToString - parent: System.ValueType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - name: ToString() - nameWithType: ValueType.ToString() - fullName: System.ValueType.ToString() - spec.csharp: - - uid: System.ValueType.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - - name: ( - - name: ) - spec.vb: - - uid: System.ValueType.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - - name: ( - - name: ) -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.ValueType - commentId: T:System.ValueType - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype - name: ValueType - nameWithType: ValueType - fullName: System.ValueType -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: System.UIntPtr - commentId: T:System.UIntPtr - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uintptr - name: nuint - nameWithType: nuint - fullName: nuint - nameWithType.vb: UIntPtr - fullName.vb: System.UIntPtr - name.vb: UIntPtr -- uid: OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV.#ctor* - commentId: Overload:OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV.#ctor - href: OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV.html#OpenTK_Graphics_Glx_GLXVideoCaptureDeviceNV__ctor_System_UIntPtr_ - name: GLXVideoCaptureDeviceNV - nameWithType: GLXVideoCaptureDeviceNV.GLXVideoCaptureDeviceNV - fullName: OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV.GLXVideoCaptureDeviceNV - nameWithType.vb: GLXVideoCaptureDeviceNV.New - fullName.vb: OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV.New - name.vb: New -- uid: OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV.op_Explicit* - commentId: Overload:OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV.op_Explicit - name: explicit operator - nameWithType: GLXVideoCaptureDeviceNV.explicit operator - fullName: OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV.explicit operator - nameWithType.vb: GLXVideoCaptureDeviceNV.CType - fullName.vb: OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV.CType - name.vb: CType - spec.csharp: - - name: explicit - - name: " " - - name: operator -- uid: OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV - commentId: T:OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV - parent: OpenTK.Graphics.Glx - href: OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV.html - name: GLXVideoCaptureDeviceNV - nameWithType: GLXVideoCaptureDeviceNV - fullName: OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV diff --git a/api/OpenTK.Graphics.Glx.GLXVideoDeviceNV.yml b/api/OpenTK.Graphics.Glx.GLXVideoDeviceNV.yml deleted file mode 100644 index ab65dc9e..00000000 --- a/api/OpenTK.Graphics.Glx.GLXVideoDeviceNV.yml +++ /dev/null @@ -1,440 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: OpenTK.Graphics.Glx.GLXVideoDeviceNV - commentId: T:OpenTK.Graphics.Glx.GLXVideoDeviceNV - id: GLXVideoDeviceNV - parent: OpenTK.Graphics.Glx - children: - - OpenTK.Graphics.Glx.GLXVideoDeviceNV.#ctor(System.UInt32) - - OpenTK.Graphics.Glx.GLXVideoDeviceNV.VideoDevice - - OpenTK.Graphics.Glx.GLXVideoDeviceNV.op_Explicit(OpenTK.Graphics.Glx.GLXVideoDeviceNV)~System.UInt32 - - OpenTK.Graphics.Glx.GLXVideoDeviceNV.op_Explicit(System.UInt32)~OpenTK.Graphics.Glx.GLXVideoDeviceNV - langs: - - csharp - - vb - name: GLXVideoDeviceNV - nameWithType: GLXVideoDeviceNV - fullName: OpenTK.Graphics.Glx.GLXVideoDeviceNV - type: Struct - source: - id: GLXVideoDeviceNV - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 488 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: A GLXVideoDeviceNV handle. - example: [] - syntax: - content: public struct GLXVideoDeviceNV - content.vb: Public Structure GLXVideoDeviceNV - inheritedMembers: - - System.ValueType.Equals(System.Object) - - System.ValueType.GetHashCode - - System.ValueType.ToString - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.ReferenceEquals(System.Object,System.Object) -- uid: OpenTK.Graphics.Glx.GLXVideoDeviceNV.VideoDevice - commentId: F:OpenTK.Graphics.Glx.GLXVideoDeviceNV.VideoDevice - id: VideoDevice - parent: OpenTK.Graphics.Glx.GLXVideoDeviceNV - langs: - - csharp - - vb - name: VideoDevice - nameWithType: GLXVideoDeviceNV.VideoDevice - fullName: OpenTK.Graphics.Glx.GLXVideoDeviceNV.VideoDevice - type: Field - source: - id: VideoDevice - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 493 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: The underlying uint value. - example: [] - syntax: - content: public uint VideoDevice - return: - type: System.UInt32 - content.vb: Public VideoDevice As UInteger -- uid: OpenTK.Graphics.Glx.GLXVideoDeviceNV.#ctor(System.UInt32) - commentId: M:OpenTK.Graphics.Glx.GLXVideoDeviceNV.#ctor(System.UInt32) - id: '#ctor(System.UInt32)' - parent: OpenTK.Graphics.Glx.GLXVideoDeviceNV - langs: - - csharp - - vb - name: GLXVideoDeviceNV(uint) - nameWithType: GLXVideoDeviceNV.GLXVideoDeviceNV(uint) - fullName: OpenTK.Graphics.Glx.GLXVideoDeviceNV.GLXVideoDeviceNV(uint) - type: Constructor - source: - id: .ctor - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 499 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: Constructs a new GLXVideoDeviceNV wrapper struct from a uint. - example: [] - syntax: - content: public GLXVideoDeviceNV(uint videoDevice) - parameters: - - id: videoDevice - type: System.UInt32 - description: A uint representing a video device. - content.vb: Public Sub New(videoDevice As UInteger) - overload: OpenTK.Graphics.Glx.GLXVideoDeviceNV.#ctor* - nameWithType.vb: GLXVideoDeviceNV.New(UInteger) - fullName.vb: OpenTK.Graphics.Glx.GLXVideoDeviceNV.New(UInteger) - name.vb: New(UInteger) -- uid: OpenTK.Graphics.Glx.GLXVideoDeviceNV.op_Explicit(OpenTK.Graphics.Glx.GLXVideoDeviceNV)~System.UInt32 - commentId: M:OpenTK.Graphics.Glx.GLXVideoDeviceNV.op_Explicit(OpenTK.Graphics.Glx.GLXVideoDeviceNV)~System.UInt32 - id: op_Explicit(OpenTK.Graphics.Glx.GLXVideoDeviceNV)~System.UInt32 - parent: OpenTK.Graphics.Glx.GLXVideoDeviceNV - langs: - - csharp - - vb - name: explicit operator uint(GLXVideoDeviceNV) - nameWithType: GLXVideoDeviceNV.explicit operator uint(GLXVideoDeviceNV) - fullName: OpenTK.Graphics.Glx.GLXVideoDeviceNV.explicit operator uint(OpenTK.Graphics.Glx.GLXVideoDeviceNV) - type: Operator - source: - id: op_Explicit - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 504 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: public static explicit operator uint(GLXVideoDeviceNV handle) - parameters: - - id: handle - type: OpenTK.Graphics.Glx.GLXVideoDeviceNV - return: - type: System.UInt32 - content.vb: Public Shared Narrowing Operator CType(handle As GLXVideoDeviceNV) As UInteger - overload: OpenTK.Graphics.Glx.GLXVideoDeviceNV.op_Explicit* - nameWithType.vb: GLXVideoDeviceNV.CType(GLXVideoDeviceNV) - fullName.vb: OpenTK.Graphics.Glx.GLXVideoDeviceNV.CType(OpenTK.Graphics.Glx.GLXVideoDeviceNV) - name.vb: CType(GLXVideoDeviceNV) -- uid: OpenTK.Graphics.Glx.GLXVideoDeviceNV.op_Explicit(System.UInt32)~OpenTK.Graphics.Glx.GLXVideoDeviceNV - commentId: M:OpenTK.Graphics.Glx.GLXVideoDeviceNV.op_Explicit(System.UInt32)~OpenTK.Graphics.Glx.GLXVideoDeviceNV - id: op_Explicit(System.UInt32)~OpenTK.Graphics.Glx.GLXVideoDeviceNV - parent: OpenTK.Graphics.Glx.GLXVideoDeviceNV - langs: - - csharp - - vb - name: explicit operator GLXVideoDeviceNV(uint) - nameWithType: GLXVideoDeviceNV.explicit operator GLXVideoDeviceNV(uint) - fullName: OpenTK.Graphics.Glx.GLXVideoDeviceNV.explicit operator OpenTK.Graphics.Glx.GLXVideoDeviceNV(uint) - type: Operator - source: - id: op_Explicit - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 505 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: public static explicit operator GLXVideoDeviceNV(uint videoDevice) - parameters: - - id: videoDevice - type: System.UInt32 - return: - type: OpenTK.Graphics.Glx.GLXVideoDeviceNV - content.vb: Public Shared Narrowing Operator CType(videoDevice As UInteger) As GLXVideoDeviceNV - overload: OpenTK.Graphics.Glx.GLXVideoDeviceNV.op_Explicit* - nameWithType.vb: GLXVideoDeviceNV.CType(UInteger) - fullName.vb: OpenTK.Graphics.Glx.GLXVideoDeviceNV.CType(UInteger) - name.vb: CType(UInteger) -references: -- uid: OpenTK.Graphics.Glx - commentId: N:OpenTK.Graphics.Glx - href: OpenTK.html - name: OpenTK.Graphics.Glx - nameWithType: OpenTK.Graphics.Glx - fullName: OpenTK.Graphics.Glx - spec.csharp: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Glx - name: Glx - href: OpenTK.Graphics.Glx.html - spec.vb: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Glx - name: Glx - href: OpenTK.Graphics.Glx.html -- uid: System.ValueType.Equals(System.Object) - commentId: M:System.ValueType.Equals(System.Object) - parent: System.ValueType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals - name: Equals(object) - nameWithType: ValueType.Equals(object) - fullName: System.ValueType.Equals(object) - nameWithType.vb: ValueType.Equals(Object) - fullName.vb: System.ValueType.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: System.ValueType.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.ValueType.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.ValueType.GetHashCode - commentId: M:System.ValueType.GetHashCode - parent: System.ValueType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - name: GetHashCode() - nameWithType: ValueType.GetHashCode() - fullName: System.ValueType.GetHashCode() - spec.csharp: - - uid: System.ValueType.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - - name: ( - - name: ) - spec.vb: - - uid: System.ValueType.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - - name: ( - - name: ) -- uid: System.ValueType.ToString - commentId: M:System.ValueType.ToString - parent: System.ValueType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - name: ToString() - nameWithType: ValueType.ToString() - fullName: System.ValueType.ToString() - spec.csharp: - - uid: System.ValueType.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - - name: ( - - name: ) - spec.vb: - - uid: System.ValueType.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - - name: ( - - name: ) -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.ValueType - commentId: T:System.ValueType - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype - name: ValueType - nameWithType: ValueType - fullName: System.ValueType -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: System.UInt32 - commentId: T:System.UInt32 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - name: uint - nameWithType: uint - fullName: uint - nameWithType.vb: UInteger - fullName.vb: UInteger - name.vb: UInteger -- uid: OpenTK.Graphics.Glx.GLXVideoDeviceNV.#ctor* - commentId: Overload:OpenTK.Graphics.Glx.GLXVideoDeviceNV.#ctor - href: OpenTK.Graphics.Glx.GLXVideoDeviceNV.html#OpenTK_Graphics_Glx_GLXVideoDeviceNV__ctor_System_UInt32_ - name: GLXVideoDeviceNV - nameWithType: GLXVideoDeviceNV.GLXVideoDeviceNV - fullName: OpenTK.Graphics.Glx.GLXVideoDeviceNV.GLXVideoDeviceNV - nameWithType.vb: GLXVideoDeviceNV.New - fullName.vb: OpenTK.Graphics.Glx.GLXVideoDeviceNV.New - name.vb: New -- uid: OpenTK.Graphics.Glx.GLXVideoDeviceNV.op_Explicit* - commentId: Overload:OpenTK.Graphics.Glx.GLXVideoDeviceNV.op_Explicit - name: explicit operator - nameWithType: GLXVideoDeviceNV.explicit operator - fullName: OpenTK.Graphics.Glx.GLXVideoDeviceNV.explicit operator - nameWithType.vb: GLXVideoDeviceNV.CType - fullName.vb: OpenTK.Graphics.Glx.GLXVideoDeviceNV.CType - name.vb: CType - spec.csharp: - - name: explicit - - name: " " - - name: operator -- uid: OpenTK.Graphics.Glx.GLXVideoDeviceNV - commentId: T:OpenTK.Graphics.Glx.GLXVideoDeviceNV - parent: OpenTK.Graphics.Glx - href: OpenTK.Graphics.Glx.GLXVideoDeviceNV.html - name: GLXVideoDeviceNV - nameWithType: GLXVideoDeviceNV - fullName: OpenTK.Graphics.Glx.GLXVideoDeviceNV diff --git a/api/OpenTK.Graphics.Glx.GLXVideoSourceSGIX.yml b/api/OpenTK.Graphics.Glx.GLXVideoSourceSGIX.yml deleted file mode 100644 index 3e2dac13..00000000 --- a/api/OpenTK.Graphics.Glx.GLXVideoSourceSGIX.yml +++ /dev/null @@ -1,440 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: OpenTK.Graphics.Glx.GLXVideoSourceSGIX - commentId: T:OpenTK.Graphics.Glx.GLXVideoSourceSGIX - id: GLXVideoSourceSGIX - parent: OpenTK.Graphics.Glx - children: - - OpenTK.Graphics.Glx.GLXVideoSourceSGIX.#ctor(System.UIntPtr) - - OpenTK.Graphics.Glx.GLXVideoSourceSGIX.XID - - OpenTK.Graphics.Glx.GLXVideoSourceSGIX.op_Explicit(OpenTK.Graphics.Glx.GLXVideoSourceSGIX)~System.UIntPtr - - OpenTK.Graphics.Glx.GLXVideoSourceSGIX.op_Explicit(System.UIntPtr)~OpenTK.Graphics.Glx.GLXVideoSourceSGIX - langs: - - csharp - - vb - name: GLXVideoSourceSGIX - nameWithType: GLXVideoSourceSGIX - fullName: OpenTK.Graphics.Glx.GLXVideoSourceSGIX - type: Struct - source: - id: GLXVideoSourceSGIX - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 403 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: A GLX GLXVideoSourceSGIX handle. - example: [] - syntax: - content: public struct GLXVideoSourceSGIX - content.vb: Public Structure GLXVideoSourceSGIX - inheritedMembers: - - System.ValueType.Equals(System.Object) - - System.ValueType.GetHashCode - - System.ValueType.ToString - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.ReferenceEquals(System.Object,System.Object) -- uid: OpenTK.Graphics.Glx.GLXVideoSourceSGIX.XID - commentId: F:OpenTK.Graphics.Glx.GLXVideoSourceSGIX.XID - id: XID - parent: OpenTK.Graphics.Glx.GLXVideoSourceSGIX - langs: - - csharp - - vb - name: XID - nameWithType: GLXVideoSourceSGIX.XID - fullName: OpenTK.Graphics.Glx.GLXVideoSourceSGIX.XID - type: Field - source: - id: XID - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 408 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: The underlying XID. - example: [] - syntax: - content: public nuint XID - return: - type: System.UIntPtr - content.vb: Public XID As UIntPtr -- uid: OpenTK.Graphics.Glx.GLXVideoSourceSGIX.#ctor(System.UIntPtr) - commentId: M:OpenTK.Graphics.Glx.GLXVideoSourceSGIX.#ctor(System.UIntPtr) - id: '#ctor(System.UIntPtr)' - parent: OpenTK.Graphics.Glx.GLXVideoSourceSGIX - langs: - - csharp - - vb - name: GLXVideoSourceSGIX(nuint) - nameWithType: GLXVideoSourceSGIX.GLXVideoSourceSGIX(nuint) - fullName: OpenTK.Graphics.Glx.GLXVideoSourceSGIX.GLXVideoSourceSGIX(nuint) - type: Constructor - source: - id: .ctor - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 414 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: Constructs a new GLXVideoSourceSGIX wrapper struct from an XID. - example: [] - syntax: - content: public GLXVideoSourceSGIX(nuint xid) - parameters: - - id: xid - type: System.UIntPtr - description: The XID of the GLXVideoSourceSGIX. - content.vb: Public Sub New(xid As UIntPtr) - overload: OpenTK.Graphics.Glx.GLXVideoSourceSGIX.#ctor* - nameWithType.vb: GLXVideoSourceSGIX.New(UIntPtr) - fullName.vb: OpenTK.Graphics.Glx.GLXVideoSourceSGIX.New(System.UIntPtr) - name.vb: New(UIntPtr) -- uid: OpenTK.Graphics.Glx.GLXVideoSourceSGIX.op_Explicit(OpenTK.Graphics.Glx.GLXVideoSourceSGIX)~System.UIntPtr - commentId: M:OpenTK.Graphics.Glx.GLXVideoSourceSGIX.op_Explicit(OpenTK.Graphics.Glx.GLXVideoSourceSGIX)~System.UIntPtr - id: op_Explicit(OpenTK.Graphics.Glx.GLXVideoSourceSGIX)~System.UIntPtr - parent: OpenTK.Graphics.Glx.GLXVideoSourceSGIX - langs: - - csharp - - vb - name: explicit operator nuint(GLXVideoSourceSGIX) - nameWithType: GLXVideoSourceSGIX.explicit operator nuint(GLXVideoSourceSGIX) - fullName: OpenTK.Graphics.Glx.GLXVideoSourceSGIX.explicit operator nuint(OpenTK.Graphics.Glx.GLXVideoSourceSGIX) - type: Operator - source: - id: op_Explicit - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 419 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: public static explicit operator nuint(GLXVideoSourceSGIX handle) - parameters: - - id: handle - type: OpenTK.Graphics.Glx.GLXVideoSourceSGIX - return: - type: System.UIntPtr - content.vb: Public Shared Narrowing Operator CType(handle As GLXVideoSourceSGIX) As UIntPtr - overload: OpenTK.Graphics.Glx.GLXVideoSourceSGIX.op_Explicit* - nameWithType.vb: GLXVideoSourceSGIX.CType(GLXVideoSourceSGIX) - fullName.vb: OpenTK.Graphics.Glx.GLXVideoSourceSGIX.CType(OpenTK.Graphics.Glx.GLXVideoSourceSGIX) - name.vb: CType(GLXVideoSourceSGIX) -- uid: OpenTK.Graphics.Glx.GLXVideoSourceSGIX.op_Explicit(System.UIntPtr)~OpenTK.Graphics.Glx.GLXVideoSourceSGIX - commentId: M:OpenTK.Graphics.Glx.GLXVideoSourceSGIX.op_Explicit(System.UIntPtr)~OpenTK.Graphics.Glx.GLXVideoSourceSGIX - id: op_Explicit(System.UIntPtr)~OpenTK.Graphics.Glx.GLXVideoSourceSGIX - parent: OpenTK.Graphics.Glx.GLXVideoSourceSGIX - langs: - - csharp - - vb - name: explicit operator GLXVideoSourceSGIX(nuint) - nameWithType: GLXVideoSourceSGIX.explicit operator GLXVideoSourceSGIX(nuint) - fullName: OpenTK.Graphics.Glx.GLXVideoSourceSGIX.explicit operator OpenTK.Graphics.Glx.GLXVideoSourceSGIX(nuint) - type: Operator - source: - id: op_Explicit - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 420 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: public static explicit operator GLXVideoSourceSGIX(nuint xid) - parameters: - - id: xid - type: System.UIntPtr - return: - type: OpenTK.Graphics.Glx.GLXVideoSourceSGIX - content.vb: Public Shared Narrowing Operator CType(xid As UIntPtr) As GLXVideoSourceSGIX - overload: OpenTK.Graphics.Glx.GLXVideoSourceSGIX.op_Explicit* - nameWithType.vb: GLXVideoSourceSGIX.CType(UIntPtr) - fullName.vb: OpenTK.Graphics.Glx.GLXVideoSourceSGIX.CType(System.UIntPtr) - name.vb: CType(UIntPtr) -references: -- uid: OpenTK.Graphics.Glx - commentId: N:OpenTK.Graphics.Glx - href: OpenTK.html - name: OpenTK.Graphics.Glx - nameWithType: OpenTK.Graphics.Glx - fullName: OpenTK.Graphics.Glx - spec.csharp: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Glx - name: Glx - href: OpenTK.Graphics.Glx.html - spec.vb: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Glx - name: Glx - href: OpenTK.Graphics.Glx.html -- uid: System.ValueType.Equals(System.Object) - commentId: M:System.ValueType.Equals(System.Object) - parent: System.ValueType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals - name: Equals(object) - nameWithType: ValueType.Equals(object) - fullName: System.ValueType.Equals(object) - nameWithType.vb: ValueType.Equals(Object) - fullName.vb: System.ValueType.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: System.ValueType.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.ValueType.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.ValueType.GetHashCode - commentId: M:System.ValueType.GetHashCode - parent: System.ValueType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - name: GetHashCode() - nameWithType: ValueType.GetHashCode() - fullName: System.ValueType.GetHashCode() - spec.csharp: - - uid: System.ValueType.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - - name: ( - - name: ) - spec.vb: - - uid: System.ValueType.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - - name: ( - - name: ) -- uid: System.ValueType.ToString - commentId: M:System.ValueType.ToString - parent: System.ValueType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - name: ToString() - nameWithType: ValueType.ToString() - fullName: System.ValueType.ToString() - spec.csharp: - - uid: System.ValueType.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - - name: ( - - name: ) - spec.vb: - - uid: System.ValueType.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - - name: ( - - name: ) -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.ValueType - commentId: T:System.ValueType - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype - name: ValueType - nameWithType: ValueType - fullName: System.ValueType -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: System.UIntPtr - commentId: T:System.UIntPtr - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uintptr - name: nuint - nameWithType: nuint - fullName: nuint - nameWithType.vb: UIntPtr - fullName.vb: System.UIntPtr - name.vb: UIntPtr -- uid: OpenTK.Graphics.Glx.GLXVideoSourceSGIX.#ctor* - commentId: Overload:OpenTK.Graphics.Glx.GLXVideoSourceSGIX.#ctor - href: OpenTK.Graphics.Glx.GLXVideoSourceSGIX.html#OpenTK_Graphics_Glx_GLXVideoSourceSGIX__ctor_System_UIntPtr_ - name: GLXVideoSourceSGIX - nameWithType: GLXVideoSourceSGIX.GLXVideoSourceSGIX - fullName: OpenTK.Graphics.Glx.GLXVideoSourceSGIX.GLXVideoSourceSGIX - nameWithType.vb: GLXVideoSourceSGIX.New - fullName.vb: OpenTK.Graphics.Glx.GLXVideoSourceSGIX.New - name.vb: New -- uid: OpenTK.Graphics.Glx.GLXVideoSourceSGIX.op_Explicit* - commentId: Overload:OpenTK.Graphics.Glx.GLXVideoSourceSGIX.op_Explicit - name: explicit operator - nameWithType: GLXVideoSourceSGIX.explicit operator - fullName: OpenTK.Graphics.Glx.GLXVideoSourceSGIX.explicit operator - nameWithType.vb: GLXVideoSourceSGIX.CType - fullName.vb: OpenTK.Graphics.Glx.GLXVideoSourceSGIX.CType - name.vb: CType - spec.csharp: - - name: explicit - - name: " " - - name: operator -- uid: OpenTK.Graphics.Glx.GLXVideoSourceSGIX - commentId: T:OpenTK.Graphics.Glx.GLXVideoSourceSGIX - parent: OpenTK.Graphics.Glx - href: OpenTK.Graphics.Glx.GLXVideoSourceSGIX.html - name: GLXVideoSourceSGIX - nameWithType: GLXVideoSourceSGIX - fullName: OpenTK.Graphics.Glx.GLXVideoSourceSGIX diff --git a/api/OpenTK.Graphics.Glx.GLXWindow.yml b/api/OpenTK.Graphics.Glx.GLXWindow.yml deleted file mode 100644 index 5895f346..00000000 --- a/api/OpenTK.Graphics.Glx.GLXWindow.yml +++ /dev/null @@ -1,440 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: OpenTK.Graphics.Glx.GLXWindow - commentId: T:OpenTK.Graphics.Glx.GLXWindow - id: GLXWindow - parent: OpenTK.Graphics.Glx - children: - - OpenTK.Graphics.Glx.GLXWindow.#ctor(System.UIntPtr) - - OpenTK.Graphics.Glx.GLXWindow.XID - - OpenTK.Graphics.Glx.GLXWindow.op_Explicit(OpenTK.Graphics.Glx.GLXWindow)~System.UIntPtr - - OpenTK.Graphics.Glx.GLXWindow.op_Explicit(System.UIntPtr)~OpenTK.Graphics.Glx.GLXWindow - langs: - - csharp - - vb - name: GLXWindow - nameWithType: GLXWindow - fullName: OpenTK.Graphics.Glx.GLXWindow - type: Struct - source: - id: GLXWindow - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 334 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: A GLX GLXWindow handle. - example: [] - syntax: - content: public struct GLXWindow - content.vb: Public Structure GLXWindow - inheritedMembers: - - System.ValueType.Equals(System.Object) - - System.ValueType.GetHashCode - - System.ValueType.ToString - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.ReferenceEquals(System.Object,System.Object) -- uid: OpenTK.Graphics.Glx.GLXWindow.XID - commentId: F:OpenTK.Graphics.Glx.GLXWindow.XID - id: XID - parent: OpenTK.Graphics.Glx.GLXWindow - langs: - - csharp - - vb - name: XID - nameWithType: GLXWindow.XID - fullName: OpenTK.Graphics.Glx.GLXWindow.XID - type: Field - source: - id: XID - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 339 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: The underlying XID. - example: [] - syntax: - content: public nuint XID - return: - type: System.UIntPtr - content.vb: Public XID As UIntPtr -- uid: OpenTK.Graphics.Glx.GLXWindow.#ctor(System.UIntPtr) - commentId: M:OpenTK.Graphics.Glx.GLXWindow.#ctor(System.UIntPtr) - id: '#ctor(System.UIntPtr)' - parent: OpenTK.Graphics.Glx.GLXWindow - langs: - - csharp - - vb - name: GLXWindow(nuint) - nameWithType: GLXWindow.GLXWindow(nuint) - fullName: OpenTK.Graphics.Glx.GLXWindow.GLXWindow(nuint) - type: Constructor - source: - id: .ctor - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 345 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: Constructs a new GLXWindow wrapper struct from an XID. - example: [] - syntax: - content: public GLXWindow(nuint xid) - parameters: - - id: xid - type: System.UIntPtr - description: The XID of the GLXWindow. - content.vb: Public Sub New(xid As UIntPtr) - overload: OpenTK.Graphics.Glx.GLXWindow.#ctor* - nameWithType.vb: GLXWindow.New(UIntPtr) - fullName.vb: OpenTK.Graphics.Glx.GLXWindow.New(System.UIntPtr) - name.vb: New(UIntPtr) -- uid: OpenTK.Graphics.Glx.GLXWindow.op_Explicit(OpenTK.Graphics.Glx.GLXWindow)~System.UIntPtr - commentId: M:OpenTK.Graphics.Glx.GLXWindow.op_Explicit(OpenTK.Graphics.Glx.GLXWindow)~System.UIntPtr - id: op_Explicit(OpenTK.Graphics.Glx.GLXWindow)~System.UIntPtr - parent: OpenTK.Graphics.Glx.GLXWindow - langs: - - csharp - - vb - name: explicit operator nuint(GLXWindow) - nameWithType: GLXWindow.explicit operator nuint(GLXWindow) - fullName: OpenTK.Graphics.Glx.GLXWindow.explicit operator nuint(OpenTK.Graphics.Glx.GLXWindow) - type: Operator - source: - id: op_Explicit - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 350 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: public static explicit operator nuint(GLXWindow handle) - parameters: - - id: handle - type: OpenTK.Graphics.Glx.GLXWindow - return: - type: System.UIntPtr - content.vb: Public Shared Narrowing Operator CType(handle As GLXWindow) As UIntPtr - overload: OpenTK.Graphics.Glx.GLXWindow.op_Explicit* - nameWithType.vb: GLXWindow.CType(GLXWindow) - fullName.vb: OpenTK.Graphics.Glx.GLXWindow.CType(OpenTK.Graphics.Glx.GLXWindow) - name.vb: CType(GLXWindow) -- uid: OpenTK.Graphics.Glx.GLXWindow.op_Explicit(System.UIntPtr)~OpenTK.Graphics.Glx.GLXWindow - commentId: M:OpenTK.Graphics.Glx.GLXWindow.op_Explicit(System.UIntPtr)~OpenTK.Graphics.Glx.GLXWindow - id: op_Explicit(System.UIntPtr)~OpenTK.Graphics.Glx.GLXWindow - parent: OpenTK.Graphics.Glx.GLXWindow - langs: - - csharp - - vb - name: explicit operator GLXWindow(nuint) - nameWithType: GLXWindow.explicit operator GLXWindow(nuint) - fullName: OpenTK.Graphics.Glx.GLXWindow.explicit operator OpenTK.Graphics.Glx.GLXWindow(nuint) - type: Operator - source: - id: op_Explicit - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 351 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: public static explicit operator GLXWindow(nuint xid) - parameters: - - id: xid - type: System.UIntPtr - return: - type: OpenTK.Graphics.Glx.GLXWindow - content.vb: Public Shared Narrowing Operator CType(xid As UIntPtr) As GLXWindow - overload: OpenTK.Graphics.Glx.GLXWindow.op_Explicit* - nameWithType.vb: GLXWindow.CType(UIntPtr) - fullName.vb: OpenTK.Graphics.Glx.GLXWindow.CType(System.UIntPtr) - name.vb: CType(UIntPtr) -references: -- uid: OpenTK.Graphics.Glx - commentId: N:OpenTK.Graphics.Glx - href: OpenTK.html - name: OpenTK.Graphics.Glx - nameWithType: OpenTK.Graphics.Glx - fullName: OpenTK.Graphics.Glx - spec.csharp: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Glx - name: Glx - href: OpenTK.Graphics.Glx.html - spec.vb: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Glx - name: Glx - href: OpenTK.Graphics.Glx.html -- uid: System.ValueType.Equals(System.Object) - commentId: M:System.ValueType.Equals(System.Object) - parent: System.ValueType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals - name: Equals(object) - nameWithType: ValueType.Equals(object) - fullName: System.ValueType.Equals(object) - nameWithType.vb: ValueType.Equals(Object) - fullName.vb: System.ValueType.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: System.ValueType.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.ValueType.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.ValueType.GetHashCode - commentId: M:System.ValueType.GetHashCode - parent: System.ValueType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - name: GetHashCode() - nameWithType: ValueType.GetHashCode() - fullName: System.ValueType.GetHashCode() - spec.csharp: - - uid: System.ValueType.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - - name: ( - - name: ) - spec.vb: - - uid: System.ValueType.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - - name: ( - - name: ) -- uid: System.ValueType.ToString - commentId: M:System.ValueType.ToString - parent: System.ValueType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - name: ToString() - nameWithType: ValueType.ToString() - fullName: System.ValueType.ToString() - spec.csharp: - - uid: System.ValueType.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - - name: ( - - name: ) - spec.vb: - - uid: System.ValueType.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - - name: ( - - name: ) -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.ValueType - commentId: T:System.ValueType - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype - name: ValueType - nameWithType: ValueType - fullName: System.ValueType -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: System.UIntPtr - commentId: T:System.UIntPtr - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uintptr - name: nuint - nameWithType: nuint - fullName: nuint - nameWithType.vb: UIntPtr - fullName.vb: System.UIntPtr - name.vb: UIntPtr -- uid: OpenTK.Graphics.Glx.GLXWindow.#ctor* - commentId: Overload:OpenTK.Graphics.Glx.GLXWindow.#ctor - href: OpenTK.Graphics.Glx.GLXWindow.html#OpenTK_Graphics_Glx_GLXWindow__ctor_System_UIntPtr_ - name: GLXWindow - nameWithType: GLXWindow.GLXWindow - fullName: OpenTK.Graphics.Glx.GLXWindow.GLXWindow - nameWithType.vb: GLXWindow.New - fullName.vb: OpenTK.Graphics.Glx.GLXWindow.New - name.vb: New -- uid: OpenTK.Graphics.Glx.GLXWindow.op_Explicit* - commentId: Overload:OpenTK.Graphics.Glx.GLXWindow.op_Explicit - name: explicit operator - nameWithType: GLXWindow.explicit operator - fullName: OpenTK.Graphics.Glx.GLXWindow.explicit operator - nameWithType.vb: GLXWindow.CType - fullName.vb: OpenTK.Graphics.Glx.GLXWindow.CType - name.vb: CType - spec.csharp: - - name: explicit - - name: " " - - name: operator -- uid: OpenTK.Graphics.Glx.GLXWindow - commentId: T:OpenTK.Graphics.Glx.GLXWindow - parent: OpenTK.Graphics.Glx - href: OpenTK.Graphics.Glx.GLXWindow.html - name: GLXWindow - nameWithType: GLXWindow - fullName: OpenTK.Graphics.Glx.GLXWindow diff --git a/api/OpenTK.Graphics.Glx.Glx.AMD.yml b/api/OpenTK.Graphics.Glx.Glx.AMD.yml deleted file mode 100644 index 61f3f1cb..00000000 --- a/api/OpenTK.Graphics.Glx.Glx.AMD.yml +++ /dev/null @@ -1,1503 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: OpenTK.Graphics.Glx.Glx.AMD - commentId: T:OpenTK.Graphics.Glx.Glx.AMD - id: Glx.AMD - parent: OpenTK.Graphics.Glx - children: - - OpenTK.Graphics.Glx.Glx.AMD.BlitContextFramebufferAMD(OpenTK.Graphics.Glx.GLXContext,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.UInt32,OpenTK.Graphics.Glx.All) - - OpenTK.Graphics.Glx.Glx.AMD.CreateAssociatedContextAMD(System.UInt32,OpenTK.Graphics.Glx.GLXContext) - - OpenTK.Graphics.Glx.Glx.AMD.CreateAssociatedContextAttribsAMD(System.UInt32,OpenTK.Graphics.Glx.GLXContext,System.Int32*) - - OpenTK.Graphics.Glx.Glx.AMD.CreateAssociatedContextAttribsAMD(System.UInt32,OpenTK.Graphics.Glx.GLXContext,System.Int32@) - - OpenTK.Graphics.Glx.Glx.AMD.CreateAssociatedContextAttribsAMD(System.UInt32,OpenTK.Graphics.Glx.GLXContext,System.Int32[]) - - OpenTK.Graphics.Glx.Glx.AMD.CreateAssociatedContextAttribsAMD(System.UInt32,OpenTK.Graphics.Glx.GLXContext,System.ReadOnlySpan{System.Int32}) - - OpenTK.Graphics.Glx.Glx.AMD.DeleteAssociatedContextAMD(OpenTK.Graphics.Glx.GLXContext) - - OpenTK.Graphics.Glx.Glx.AMD.GetContextGPUIDAMD(OpenTK.Graphics.Glx.GLXContext) - - OpenTK.Graphics.Glx.Glx.AMD.GetCurrentAssociatedContextAMD - - OpenTK.Graphics.Glx.Glx.AMD.GetGPUIDsAMD(System.UInt32,System.Span{System.UInt32}) - - OpenTK.Graphics.Glx.Glx.AMD.GetGPUIDsAMD(System.UInt32,System.UInt32*) - - OpenTK.Graphics.Glx.Glx.AMD.GetGPUIDsAMD(System.UInt32,System.UInt32@) - - OpenTK.Graphics.Glx.Glx.AMD.GetGPUIDsAMD(System.UInt32,System.UInt32[]) - - OpenTK.Graphics.Glx.Glx.AMD.GetGPUInfoAMD(System.UInt32,System.Int32,OpenTK.Graphics.Glx.All,System.UInt32,System.IntPtr) - - OpenTK.Graphics.Glx.Glx.AMD.GetGPUInfoAMD(System.UInt32,System.Int32,OpenTK.Graphics.Glx.All,System.UInt32,System.Void*) - - OpenTK.Graphics.Glx.Glx.AMD.GetGPUInfoAMD``1(System.UInt32,System.Int32,OpenTK.Graphics.Glx.All,System.UInt32,System.Span{``0}) - - OpenTK.Graphics.Glx.Glx.AMD.GetGPUInfoAMD``1(System.UInt32,System.Int32,OpenTK.Graphics.Glx.All,System.UInt32,``0@) - - OpenTK.Graphics.Glx.Glx.AMD.GetGPUInfoAMD``1(System.UInt32,System.Int32,OpenTK.Graphics.Glx.All,System.UInt32,``0[]) - - OpenTK.Graphics.Glx.Glx.AMD.MakeAssociatedContextCurrentAMD(OpenTK.Graphics.Glx.GLXContext) - langs: - - csharp - - vb - name: Glx.AMD - nameWithType: Glx.AMD - fullName: OpenTK.Graphics.Glx.Glx.AMD - type: Class - source: - id: AMD - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 469 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: AMD extensions. - example: [] - syntax: - content: public static class Glx.AMD - content.vb: Public Module Glx.AMD - inheritance: - - System.Object - inheritedMembers: - - System.Object.Equals(System.Object) - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetHashCode - - System.Object.GetType - - System.Object.MemberwiseClone - - System.Object.ReferenceEquals(System.Object,System.Object) - - System.Object.ToString -- uid: OpenTK.Graphics.Glx.Glx.AMD.BlitContextFramebufferAMD(OpenTK.Graphics.Glx.GLXContext,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.UInt32,OpenTK.Graphics.Glx.All) - commentId: M:OpenTK.Graphics.Glx.Glx.AMD.BlitContextFramebufferAMD(OpenTK.Graphics.Glx.GLXContext,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.UInt32,OpenTK.Graphics.Glx.All) - id: BlitContextFramebufferAMD(OpenTK.Graphics.Glx.GLXContext,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.UInt32,OpenTK.Graphics.Glx.All) - parent: OpenTK.Graphics.Glx.Glx.AMD - langs: - - csharp - - vb - name: BlitContextFramebufferAMD(GLXContext, int, int, int, int, int, int, int, int, uint, All) - nameWithType: Glx.AMD.BlitContextFramebufferAMD(GLXContext, int, int, int, int, int, int, int, int, uint, All) - fullName: OpenTK.Graphics.Glx.Glx.AMD.BlitContextFramebufferAMD(OpenTK.Graphics.Glx.GLXContext, int, int, int, int, int, int, int, int, uint, OpenTK.Graphics.Glx.All) - type: Method - source: - id: BlitContextFramebufferAMD - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs - startLine: 132 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_AMD_gpu_association] - - [entry point: glXBlitContextFramebufferAMD] - -
- example: [] - syntax: - content: public static void BlitContextFramebufferAMD(GLXContext dstCtx, int srcX0, int srcY0, int srcX1, int srcY1, int dstX0, int dstY0, int dstX1, int dstY1, uint mask, All filter) - parameters: - - id: dstCtx - type: OpenTK.Graphics.Glx.GLXContext - - id: srcX0 - type: System.Int32 - - id: srcY0 - type: System.Int32 - - id: srcX1 - type: System.Int32 - - id: srcY1 - type: System.Int32 - - id: dstX0 - type: System.Int32 - - id: dstY0 - type: System.Int32 - - id: dstX1 - type: System.Int32 - - id: dstY1 - type: System.Int32 - - id: mask - type: System.UInt32 - - id: filter - type: OpenTK.Graphics.Glx.All - content.vb: Public Shared Sub BlitContextFramebufferAMD(dstCtx As GLXContext, srcX0 As Integer, srcY0 As Integer, srcX1 As Integer, srcY1 As Integer, dstX0 As Integer, dstY0 As Integer, dstX1 As Integer, dstY1 As Integer, mask As UInteger, filter As All) - overload: OpenTK.Graphics.Glx.Glx.AMD.BlitContextFramebufferAMD* - nameWithType.vb: Glx.AMD.BlitContextFramebufferAMD(GLXContext, Integer, Integer, Integer, Integer, Integer, Integer, Integer, Integer, UInteger, All) - fullName.vb: OpenTK.Graphics.Glx.Glx.AMD.BlitContextFramebufferAMD(OpenTK.Graphics.Glx.GLXContext, Integer, Integer, Integer, Integer, Integer, Integer, Integer, Integer, UInteger, OpenTK.Graphics.Glx.All) - name.vb: BlitContextFramebufferAMD(GLXContext, Integer, Integer, Integer, Integer, Integer, Integer, Integer, Integer, UInteger, All) -- uid: OpenTK.Graphics.Glx.Glx.AMD.CreateAssociatedContextAMD(System.UInt32,OpenTK.Graphics.Glx.GLXContext) - commentId: M:OpenTK.Graphics.Glx.Glx.AMD.CreateAssociatedContextAMD(System.UInt32,OpenTK.Graphics.Glx.GLXContext) - id: CreateAssociatedContextAMD(System.UInt32,OpenTK.Graphics.Glx.GLXContext) - parent: OpenTK.Graphics.Glx.Glx.AMD - langs: - - csharp - - vb - name: CreateAssociatedContextAMD(uint, GLXContext) - nameWithType: Glx.AMD.CreateAssociatedContextAMD(uint, GLXContext) - fullName: OpenTK.Graphics.Glx.Glx.AMD.CreateAssociatedContextAMD(uint, OpenTK.Graphics.Glx.GLXContext) - type: Method - source: - id: CreateAssociatedContextAMD - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs - startLine: 135 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_AMD_gpu_association] - - [entry point: glXCreateAssociatedContextAMD] - -
- example: [] - syntax: - content: public static GLXContext CreateAssociatedContextAMD(uint id, GLXContext share_list) - parameters: - - id: id - type: System.UInt32 - - id: share_list - type: OpenTK.Graphics.Glx.GLXContext - return: - type: OpenTK.Graphics.Glx.GLXContext - content.vb: Public Shared Function CreateAssociatedContextAMD(id As UInteger, share_list As GLXContext) As GLXContext - overload: OpenTK.Graphics.Glx.Glx.AMD.CreateAssociatedContextAMD* - nameWithType.vb: Glx.AMD.CreateAssociatedContextAMD(UInteger, GLXContext) - fullName.vb: OpenTK.Graphics.Glx.Glx.AMD.CreateAssociatedContextAMD(UInteger, OpenTK.Graphics.Glx.GLXContext) - name.vb: CreateAssociatedContextAMD(UInteger, GLXContext) -- uid: OpenTK.Graphics.Glx.Glx.AMD.CreateAssociatedContextAttribsAMD(System.UInt32,OpenTK.Graphics.Glx.GLXContext,System.Int32*) - commentId: M:OpenTK.Graphics.Glx.Glx.AMD.CreateAssociatedContextAttribsAMD(System.UInt32,OpenTK.Graphics.Glx.GLXContext,System.Int32*) - id: CreateAssociatedContextAttribsAMD(System.UInt32,OpenTK.Graphics.Glx.GLXContext,System.Int32*) - parent: OpenTK.Graphics.Glx.Glx.AMD - langs: - - csharp - - vb - name: CreateAssociatedContextAttribsAMD(uint, GLXContext, int*) - nameWithType: Glx.AMD.CreateAssociatedContextAttribsAMD(uint, GLXContext, int*) - fullName: OpenTK.Graphics.Glx.Glx.AMD.CreateAssociatedContextAttribsAMD(uint, OpenTK.Graphics.Glx.GLXContext, int*) - type: Method - source: - id: CreateAssociatedContextAttribsAMD - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs - startLine: 138 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_AMD_gpu_association] - - [entry point: glXCreateAssociatedContextAttribsAMD] - -
- example: [] - syntax: - content: public static GLXContext CreateAssociatedContextAttribsAMD(uint id, GLXContext share_context, int* attribList) - parameters: - - id: id - type: System.UInt32 - - id: share_context - type: OpenTK.Graphics.Glx.GLXContext - - id: attribList - type: System.Int32* - return: - type: OpenTK.Graphics.Glx.GLXContext - content.vb: Public Shared Function CreateAssociatedContextAttribsAMD(id As UInteger, share_context As GLXContext, attribList As Integer*) As GLXContext - overload: OpenTK.Graphics.Glx.Glx.AMD.CreateAssociatedContextAttribsAMD* - nameWithType.vb: Glx.AMD.CreateAssociatedContextAttribsAMD(UInteger, GLXContext, Integer*) - fullName.vb: OpenTK.Graphics.Glx.Glx.AMD.CreateAssociatedContextAttribsAMD(UInteger, OpenTK.Graphics.Glx.GLXContext, Integer*) - name.vb: CreateAssociatedContextAttribsAMD(UInteger, GLXContext, Integer*) -- uid: OpenTK.Graphics.Glx.Glx.AMD.DeleteAssociatedContextAMD(OpenTK.Graphics.Glx.GLXContext) - commentId: M:OpenTK.Graphics.Glx.Glx.AMD.DeleteAssociatedContextAMD(OpenTK.Graphics.Glx.GLXContext) - id: DeleteAssociatedContextAMD(OpenTK.Graphics.Glx.GLXContext) - parent: OpenTK.Graphics.Glx.Glx.AMD - langs: - - csharp - - vb - name: DeleteAssociatedContextAMD(GLXContext) - nameWithType: Glx.AMD.DeleteAssociatedContextAMD(GLXContext) - fullName: OpenTK.Graphics.Glx.Glx.AMD.DeleteAssociatedContextAMD(OpenTK.Graphics.Glx.GLXContext) - type: Method - source: - id: DeleteAssociatedContextAMD - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs - startLine: 141 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_AMD_gpu_association] - - [entry point: glXDeleteAssociatedContextAMD] - -
- example: [] - syntax: - content: public static bool DeleteAssociatedContextAMD(GLXContext ctx) - parameters: - - id: ctx - type: OpenTK.Graphics.Glx.GLXContext - return: - type: System.Boolean - content.vb: Public Shared Function DeleteAssociatedContextAMD(ctx As GLXContext) As Boolean - overload: OpenTK.Graphics.Glx.Glx.AMD.DeleteAssociatedContextAMD* -- uid: OpenTK.Graphics.Glx.Glx.AMD.GetContextGPUIDAMD(OpenTK.Graphics.Glx.GLXContext) - commentId: M:OpenTK.Graphics.Glx.Glx.AMD.GetContextGPUIDAMD(OpenTK.Graphics.Glx.GLXContext) - id: GetContextGPUIDAMD(OpenTK.Graphics.Glx.GLXContext) - parent: OpenTK.Graphics.Glx.Glx.AMD - langs: - - csharp - - vb - name: GetContextGPUIDAMD(GLXContext) - nameWithType: Glx.AMD.GetContextGPUIDAMD(GLXContext) - fullName: OpenTK.Graphics.Glx.Glx.AMD.GetContextGPUIDAMD(OpenTK.Graphics.Glx.GLXContext) - type: Method - source: - id: GetContextGPUIDAMD - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs - startLine: 144 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_AMD_gpu_association] - - [entry point: glXGetContextGPUIDAMD] - -
- example: [] - syntax: - content: public static uint GetContextGPUIDAMD(GLXContext ctx) - parameters: - - id: ctx - type: OpenTK.Graphics.Glx.GLXContext - return: - type: System.UInt32 - content.vb: Public Shared Function GetContextGPUIDAMD(ctx As GLXContext) As UInteger - overload: OpenTK.Graphics.Glx.Glx.AMD.GetContextGPUIDAMD* -- uid: OpenTK.Graphics.Glx.Glx.AMD.GetCurrentAssociatedContextAMD - commentId: M:OpenTK.Graphics.Glx.Glx.AMD.GetCurrentAssociatedContextAMD - id: GetCurrentAssociatedContextAMD - parent: OpenTK.Graphics.Glx.Glx.AMD - langs: - - csharp - - vb - name: GetCurrentAssociatedContextAMD() - nameWithType: Glx.AMD.GetCurrentAssociatedContextAMD() - fullName: OpenTK.Graphics.Glx.Glx.AMD.GetCurrentAssociatedContextAMD() - type: Method - source: - id: GetCurrentAssociatedContextAMD - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs - startLine: 147 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_AMD_gpu_association] - - [entry point: glXGetCurrentAssociatedContextAMD] - -
- example: [] - syntax: - content: public static GLXContext GetCurrentAssociatedContextAMD() - return: - type: OpenTK.Graphics.Glx.GLXContext - content.vb: Public Shared Function GetCurrentAssociatedContextAMD() As GLXContext - overload: OpenTK.Graphics.Glx.Glx.AMD.GetCurrentAssociatedContextAMD* -- uid: OpenTK.Graphics.Glx.Glx.AMD.GetGPUIDsAMD(System.UInt32,System.UInt32*) - commentId: M:OpenTK.Graphics.Glx.Glx.AMD.GetGPUIDsAMD(System.UInt32,System.UInt32*) - id: GetGPUIDsAMD(System.UInt32,System.UInt32*) - parent: OpenTK.Graphics.Glx.Glx.AMD - langs: - - csharp - - vb - name: GetGPUIDsAMD(uint, uint*) - nameWithType: Glx.AMD.GetGPUIDsAMD(uint, uint*) - fullName: OpenTK.Graphics.Glx.Glx.AMD.GetGPUIDsAMD(uint, uint*) - type: Method - source: - id: GetGPUIDsAMD - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs - startLine: 150 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_AMD_gpu_association] - - [entry point: glXGetGPUIDsAMD] - -
- example: [] - syntax: - content: public static uint GetGPUIDsAMD(uint maxCount, uint* ids) - parameters: - - id: maxCount - type: System.UInt32 - - id: ids - type: System.UInt32* - return: - type: System.UInt32 - content.vb: Public Shared Function GetGPUIDsAMD(maxCount As UInteger, ids As UInteger*) As UInteger - overload: OpenTK.Graphics.Glx.Glx.AMD.GetGPUIDsAMD* - nameWithType.vb: Glx.AMD.GetGPUIDsAMD(UInteger, UInteger*) - fullName.vb: OpenTK.Graphics.Glx.Glx.AMD.GetGPUIDsAMD(UInteger, UInteger*) - name.vb: GetGPUIDsAMD(UInteger, UInteger*) -- uid: OpenTK.Graphics.Glx.Glx.AMD.GetGPUInfoAMD(System.UInt32,System.Int32,OpenTK.Graphics.Glx.All,System.UInt32,System.Void*) - commentId: M:OpenTK.Graphics.Glx.Glx.AMD.GetGPUInfoAMD(System.UInt32,System.Int32,OpenTK.Graphics.Glx.All,System.UInt32,System.Void*) - id: GetGPUInfoAMD(System.UInt32,System.Int32,OpenTK.Graphics.Glx.All,System.UInt32,System.Void*) - parent: OpenTK.Graphics.Glx.Glx.AMD - langs: - - csharp - - vb - name: GetGPUInfoAMD(uint, int, All, uint, void*) - nameWithType: Glx.AMD.GetGPUInfoAMD(uint, int, All, uint, void*) - fullName: OpenTK.Graphics.Glx.Glx.AMD.GetGPUInfoAMD(uint, int, OpenTK.Graphics.Glx.All, uint, void*) - type: Method - source: - id: GetGPUInfoAMD - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs - startLine: 153 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_AMD_gpu_association] - - [entry point: glXGetGPUInfoAMD] - -
- example: [] - syntax: - content: public static int GetGPUInfoAMD(uint id, int property, All dataType, uint size, void* data) - parameters: - - id: id - type: System.UInt32 - - id: property - type: System.Int32 - - id: dataType - type: OpenTK.Graphics.Glx.All - - id: size - type: System.UInt32 - - id: data - type: System.Void* - return: - type: System.Int32 - content.vb: Public Shared Function GetGPUInfoAMD(id As UInteger, [property] As Integer, dataType As All, size As UInteger, data As Void*) As Integer - overload: OpenTK.Graphics.Glx.Glx.AMD.GetGPUInfoAMD* - nameWithType.vb: Glx.AMD.GetGPUInfoAMD(UInteger, Integer, All, UInteger, Void*) - fullName.vb: OpenTK.Graphics.Glx.Glx.AMD.GetGPUInfoAMD(UInteger, Integer, OpenTK.Graphics.Glx.All, UInteger, Void*) - name.vb: GetGPUInfoAMD(UInteger, Integer, All, UInteger, Void*) -- uid: OpenTK.Graphics.Glx.Glx.AMD.MakeAssociatedContextCurrentAMD(OpenTK.Graphics.Glx.GLXContext) - commentId: M:OpenTK.Graphics.Glx.Glx.AMD.MakeAssociatedContextCurrentAMD(OpenTK.Graphics.Glx.GLXContext) - id: MakeAssociatedContextCurrentAMD(OpenTK.Graphics.Glx.GLXContext) - parent: OpenTK.Graphics.Glx.Glx.AMD - langs: - - csharp - - vb - name: MakeAssociatedContextCurrentAMD(GLXContext) - nameWithType: Glx.AMD.MakeAssociatedContextCurrentAMD(GLXContext) - fullName: OpenTK.Graphics.Glx.Glx.AMD.MakeAssociatedContextCurrentAMD(OpenTK.Graphics.Glx.GLXContext) - type: Method - source: - id: MakeAssociatedContextCurrentAMD - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs - startLine: 156 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_AMD_gpu_association] - - [entry point: glXMakeAssociatedContextCurrentAMD] - -
- example: [] - syntax: - content: public static bool MakeAssociatedContextCurrentAMD(GLXContext ctx) - parameters: - - id: ctx - type: OpenTK.Graphics.Glx.GLXContext - return: - type: System.Boolean - content.vb: Public Shared Function MakeAssociatedContextCurrentAMD(ctx As GLXContext) As Boolean - overload: OpenTK.Graphics.Glx.Glx.AMD.MakeAssociatedContextCurrentAMD* -- uid: OpenTK.Graphics.Glx.Glx.AMD.CreateAssociatedContextAttribsAMD(System.UInt32,OpenTK.Graphics.Glx.GLXContext,System.ReadOnlySpan{System.Int32}) - commentId: M:OpenTK.Graphics.Glx.Glx.AMD.CreateAssociatedContextAttribsAMD(System.UInt32,OpenTK.Graphics.Glx.GLXContext,System.ReadOnlySpan{System.Int32}) - id: CreateAssociatedContextAttribsAMD(System.UInt32,OpenTK.Graphics.Glx.GLXContext,System.ReadOnlySpan{System.Int32}) - parent: OpenTK.Graphics.Glx.Glx.AMD - langs: - - csharp - - vb - name: CreateAssociatedContextAttribsAMD(uint, GLXContext, ReadOnlySpan) - nameWithType: Glx.AMD.CreateAssociatedContextAttribsAMD(uint, GLXContext, ReadOnlySpan) - fullName: OpenTK.Graphics.Glx.Glx.AMD.CreateAssociatedContextAttribsAMD(uint, OpenTK.Graphics.Glx.GLXContext, System.ReadOnlySpan) - type: Method - source: - id: CreateAssociatedContextAttribsAMD - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 472 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_AMD_gpu_association] - - [entry point: glXCreateAssociatedContextAttribsAMD] - -
- example: [] - syntax: - content: public static GLXContext CreateAssociatedContextAttribsAMD(uint id, GLXContext share_context, ReadOnlySpan attribList) - parameters: - - id: id - type: System.UInt32 - - id: share_context - type: OpenTK.Graphics.Glx.GLXContext - - id: attribList - type: System.ReadOnlySpan{System.Int32} - return: - type: OpenTK.Graphics.Glx.GLXContext - content.vb: Public Shared Function CreateAssociatedContextAttribsAMD(id As UInteger, share_context As GLXContext, attribList As ReadOnlySpan(Of Integer)) As GLXContext - overload: OpenTK.Graphics.Glx.Glx.AMD.CreateAssociatedContextAttribsAMD* - nameWithType.vb: Glx.AMD.CreateAssociatedContextAttribsAMD(UInteger, GLXContext, ReadOnlySpan(Of Integer)) - fullName.vb: OpenTK.Graphics.Glx.Glx.AMD.CreateAssociatedContextAttribsAMD(UInteger, OpenTK.Graphics.Glx.GLXContext, System.ReadOnlySpan(Of Integer)) - name.vb: CreateAssociatedContextAttribsAMD(UInteger, GLXContext, ReadOnlySpan(Of Integer)) -- uid: OpenTK.Graphics.Glx.Glx.AMD.CreateAssociatedContextAttribsAMD(System.UInt32,OpenTK.Graphics.Glx.GLXContext,System.Int32[]) - commentId: M:OpenTK.Graphics.Glx.Glx.AMD.CreateAssociatedContextAttribsAMD(System.UInt32,OpenTK.Graphics.Glx.GLXContext,System.Int32[]) - id: CreateAssociatedContextAttribsAMD(System.UInt32,OpenTK.Graphics.Glx.GLXContext,System.Int32[]) - parent: OpenTK.Graphics.Glx.Glx.AMD - langs: - - csharp - - vb - name: CreateAssociatedContextAttribsAMD(uint, GLXContext, int[]) - nameWithType: Glx.AMD.CreateAssociatedContextAttribsAMD(uint, GLXContext, int[]) - fullName: OpenTK.Graphics.Glx.Glx.AMD.CreateAssociatedContextAttribsAMD(uint, OpenTK.Graphics.Glx.GLXContext, int[]) - type: Method - source: - id: CreateAssociatedContextAttribsAMD - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 482 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_AMD_gpu_association] - - [entry point: glXCreateAssociatedContextAttribsAMD] - -
- example: [] - syntax: - content: public static GLXContext CreateAssociatedContextAttribsAMD(uint id, GLXContext share_context, int[] attribList) - parameters: - - id: id - type: System.UInt32 - - id: share_context - type: OpenTK.Graphics.Glx.GLXContext - - id: attribList - type: System.Int32[] - return: - type: OpenTK.Graphics.Glx.GLXContext - content.vb: Public Shared Function CreateAssociatedContextAttribsAMD(id As UInteger, share_context As GLXContext, attribList As Integer()) As GLXContext - overload: OpenTK.Graphics.Glx.Glx.AMD.CreateAssociatedContextAttribsAMD* - nameWithType.vb: Glx.AMD.CreateAssociatedContextAttribsAMD(UInteger, GLXContext, Integer()) - fullName.vb: OpenTK.Graphics.Glx.Glx.AMD.CreateAssociatedContextAttribsAMD(UInteger, OpenTK.Graphics.Glx.GLXContext, Integer()) - name.vb: CreateAssociatedContextAttribsAMD(UInteger, GLXContext, Integer()) -- uid: OpenTK.Graphics.Glx.Glx.AMD.CreateAssociatedContextAttribsAMD(System.UInt32,OpenTK.Graphics.Glx.GLXContext,System.Int32@) - commentId: M:OpenTK.Graphics.Glx.Glx.AMD.CreateAssociatedContextAttribsAMD(System.UInt32,OpenTK.Graphics.Glx.GLXContext,System.Int32@) - id: CreateAssociatedContextAttribsAMD(System.UInt32,OpenTK.Graphics.Glx.GLXContext,System.Int32@) - parent: OpenTK.Graphics.Glx.Glx.AMD - langs: - - csharp - - vb - name: CreateAssociatedContextAttribsAMD(uint, GLXContext, in int) - nameWithType: Glx.AMD.CreateAssociatedContextAttribsAMD(uint, GLXContext, in int) - fullName: OpenTK.Graphics.Glx.Glx.AMD.CreateAssociatedContextAttribsAMD(uint, OpenTK.Graphics.Glx.GLXContext, in int) - type: Method - source: - id: CreateAssociatedContextAttribsAMD - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 492 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_AMD_gpu_association] - - [entry point: glXCreateAssociatedContextAttribsAMD] - -
- example: [] - syntax: - content: public static GLXContext CreateAssociatedContextAttribsAMD(uint id, GLXContext share_context, in int attribList) - parameters: - - id: id - type: System.UInt32 - - id: share_context - type: OpenTK.Graphics.Glx.GLXContext - - id: attribList - type: System.Int32 - return: - type: OpenTK.Graphics.Glx.GLXContext - content.vb: Public Shared Function CreateAssociatedContextAttribsAMD(id As UInteger, share_context As GLXContext, attribList As Integer) As GLXContext - overload: OpenTK.Graphics.Glx.Glx.AMD.CreateAssociatedContextAttribsAMD* - nameWithType.vb: Glx.AMD.CreateAssociatedContextAttribsAMD(UInteger, GLXContext, Integer) - fullName.vb: OpenTK.Graphics.Glx.Glx.AMD.CreateAssociatedContextAttribsAMD(UInteger, OpenTK.Graphics.Glx.GLXContext, Integer) - name.vb: CreateAssociatedContextAttribsAMD(UInteger, GLXContext, Integer) -- uid: OpenTK.Graphics.Glx.Glx.AMD.GetGPUIDsAMD(System.UInt32,System.Span{System.UInt32}) - commentId: M:OpenTK.Graphics.Glx.Glx.AMD.GetGPUIDsAMD(System.UInt32,System.Span{System.UInt32}) - id: GetGPUIDsAMD(System.UInt32,System.Span{System.UInt32}) - parent: OpenTK.Graphics.Glx.Glx.AMD - langs: - - csharp - - vb - name: GetGPUIDsAMD(uint, Span) - nameWithType: Glx.AMD.GetGPUIDsAMD(uint, Span) - fullName: OpenTK.Graphics.Glx.Glx.AMD.GetGPUIDsAMD(uint, System.Span) - type: Method - source: - id: GetGPUIDsAMD - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 502 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_AMD_gpu_association] - - [entry point: glXGetGPUIDsAMD] - -
- example: [] - syntax: - content: public static uint GetGPUIDsAMD(uint maxCount, Span ids) - parameters: - - id: maxCount - type: System.UInt32 - - id: ids - type: System.Span{System.UInt32} - return: - type: System.UInt32 - content.vb: Public Shared Function GetGPUIDsAMD(maxCount As UInteger, ids As Span(Of UInteger)) As UInteger - overload: OpenTK.Graphics.Glx.Glx.AMD.GetGPUIDsAMD* - nameWithType.vb: Glx.AMD.GetGPUIDsAMD(UInteger, Span(Of UInteger)) - fullName.vb: OpenTK.Graphics.Glx.Glx.AMD.GetGPUIDsAMD(UInteger, System.Span(Of UInteger)) - name.vb: GetGPUIDsAMD(UInteger, Span(Of UInteger)) -- uid: OpenTK.Graphics.Glx.Glx.AMD.GetGPUIDsAMD(System.UInt32,System.UInt32[]) - commentId: M:OpenTK.Graphics.Glx.Glx.AMD.GetGPUIDsAMD(System.UInt32,System.UInt32[]) - id: GetGPUIDsAMD(System.UInt32,System.UInt32[]) - parent: OpenTK.Graphics.Glx.Glx.AMD - langs: - - csharp - - vb - name: GetGPUIDsAMD(uint, uint[]) - nameWithType: Glx.AMD.GetGPUIDsAMD(uint, uint[]) - fullName: OpenTK.Graphics.Glx.Glx.AMD.GetGPUIDsAMD(uint, uint[]) - type: Method - source: - id: GetGPUIDsAMD - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 512 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_AMD_gpu_association] - - [entry point: glXGetGPUIDsAMD] - -
- example: [] - syntax: - content: public static uint GetGPUIDsAMD(uint maxCount, uint[] ids) - parameters: - - id: maxCount - type: System.UInt32 - - id: ids - type: System.UInt32[] - return: - type: System.UInt32 - content.vb: Public Shared Function GetGPUIDsAMD(maxCount As UInteger, ids As UInteger()) As UInteger - overload: OpenTK.Graphics.Glx.Glx.AMD.GetGPUIDsAMD* - nameWithType.vb: Glx.AMD.GetGPUIDsAMD(UInteger, UInteger()) - fullName.vb: OpenTK.Graphics.Glx.Glx.AMD.GetGPUIDsAMD(UInteger, UInteger()) - name.vb: GetGPUIDsAMD(UInteger, UInteger()) -- uid: OpenTK.Graphics.Glx.Glx.AMD.GetGPUIDsAMD(System.UInt32,System.UInt32@) - commentId: M:OpenTK.Graphics.Glx.Glx.AMD.GetGPUIDsAMD(System.UInt32,System.UInt32@) - id: GetGPUIDsAMD(System.UInt32,System.UInt32@) - parent: OpenTK.Graphics.Glx.Glx.AMD - langs: - - csharp - - vb - name: GetGPUIDsAMD(uint, ref uint) - nameWithType: Glx.AMD.GetGPUIDsAMD(uint, ref uint) - fullName: OpenTK.Graphics.Glx.Glx.AMD.GetGPUIDsAMD(uint, ref uint) - type: Method - source: - id: GetGPUIDsAMD - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 522 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_AMD_gpu_association] - - [entry point: glXGetGPUIDsAMD] - -
- example: [] - syntax: - content: public static uint GetGPUIDsAMD(uint maxCount, ref uint ids) - parameters: - - id: maxCount - type: System.UInt32 - - id: ids - type: System.UInt32 - return: - type: System.UInt32 - content.vb: Public Shared Function GetGPUIDsAMD(maxCount As UInteger, ids As UInteger) As UInteger - overload: OpenTK.Graphics.Glx.Glx.AMD.GetGPUIDsAMD* - nameWithType.vb: Glx.AMD.GetGPUIDsAMD(UInteger, UInteger) - fullName.vb: OpenTK.Graphics.Glx.Glx.AMD.GetGPUIDsAMD(UInteger, UInteger) - name.vb: GetGPUIDsAMD(UInteger, UInteger) -- uid: OpenTK.Graphics.Glx.Glx.AMD.GetGPUInfoAMD(System.UInt32,System.Int32,OpenTK.Graphics.Glx.All,System.UInt32,System.IntPtr) - commentId: M:OpenTK.Graphics.Glx.Glx.AMD.GetGPUInfoAMD(System.UInt32,System.Int32,OpenTK.Graphics.Glx.All,System.UInt32,System.IntPtr) - id: GetGPUInfoAMD(System.UInt32,System.Int32,OpenTK.Graphics.Glx.All,System.UInt32,System.IntPtr) - parent: OpenTK.Graphics.Glx.Glx.AMD - langs: - - csharp - - vb - name: GetGPUInfoAMD(uint, int, All, uint, nint) - nameWithType: Glx.AMD.GetGPUInfoAMD(uint, int, All, uint, nint) - fullName: OpenTK.Graphics.Glx.Glx.AMD.GetGPUInfoAMD(uint, int, OpenTK.Graphics.Glx.All, uint, nint) - type: Method - source: - id: GetGPUInfoAMD - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 532 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_AMD_gpu_association] - - [entry point: glXGetGPUInfoAMD] - -
- example: [] - syntax: - content: public static int GetGPUInfoAMD(uint id, int property, All dataType, uint size, nint data) - parameters: - - id: id - type: System.UInt32 - - id: property - type: System.Int32 - - id: dataType - type: OpenTK.Graphics.Glx.All - - id: size - type: System.UInt32 - - id: data - type: System.IntPtr - return: - type: System.Int32 - content.vb: Public Shared Function GetGPUInfoAMD(id As UInteger, [property] As Integer, dataType As All, size As UInteger, data As IntPtr) As Integer - overload: OpenTK.Graphics.Glx.Glx.AMD.GetGPUInfoAMD* - nameWithType.vb: Glx.AMD.GetGPUInfoAMD(UInteger, Integer, All, UInteger, IntPtr) - fullName.vb: OpenTK.Graphics.Glx.Glx.AMD.GetGPUInfoAMD(UInteger, Integer, OpenTK.Graphics.Glx.All, UInteger, System.IntPtr) - name.vb: GetGPUInfoAMD(UInteger, Integer, All, UInteger, IntPtr) -- uid: OpenTK.Graphics.Glx.Glx.AMD.GetGPUInfoAMD``1(System.UInt32,System.Int32,OpenTK.Graphics.Glx.All,System.UInt32,System.Span{``0}) - commentId: M:OpenTK.Graphics.Glx.Glx.AMD.GetGPUInfoAMD``1(System.UInt32,System.Int32,OpenTK.Graphics.Glx.All,System.UInt32,System.Span{``0}) - id: GetGPUInfoAMD``1(System.UInt32,System.Int32,OpenTK.Graphics.Glx.All,System.UInt32,System.Span{``0}) - parent: OpenTK.Graphics.Glx.Glx.AMD - langs: - - csharp - - vb - name: GetGPUInfoAMD(uint, int, All, uint, Span) - nameWithType: Glx.AMD.GetGPUInfoAMD(uint, int, All, uint, Span) - fullName: OpenTK.Graphics.Glx.Glx.AMD.GetGPUInfoAMD(uint, int, OpenTK.Graphics.Glx.All, uint, System.Span) - type: Method - source: - id: GetGPUInfoAMD - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 540 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_AMD_gpu_association] - - [entry point: glXGetGPUInfoAMD] - -
- example: [] - syntax: - content: 'public static int GetGPUInfoAMD(uint id, int property, All dataType, uint size, Span data) where T1 : unmanaged' - parameters: - - id: id - type: System.UInt32 - - id: property - type: System.Int32 - - id: dataType - type: OpenTK.Graphics.Glx.All - - id: size - type: System.UInt32 - - id: data - type: System.Span{{T1}} - typeParameters: - - id: T1 - return: - type: System.Int32 - content.vb: Public Shared Function GetGPUInfoAMD(Of T1 As Structure)(id As UInteger, [property] As Integer, dataType As All, size As UInteger, data As Span(Of T1)) As Integer - overload: OpenTK.Graphics.Glx.Glx.AMD.GetGPUInfoAMD* - nameWithType.vb: Glx.AMD.GetGPUInfoAMD(Of T1)(UInteger, Integer, All, UInteger, Span(Of T1)) - fullName.vb: OpenTK.Graphics.Glx.Glx.AMD.GetGPUInfoAMD(Of T1)(UInteger, Integer, OpenTK.Graphics.Glx.All, UInteger, System.Span(Of T1)) - name.vb: GetGPUInfoAMD(Of T1)(UInteger, Integer, All, UInteger, Span(Of T1)) -- uid: OpenTK.Graphics.Glx.Glx.AMD.GetGPUInfoAMD``1(System.UInt32,System.Int32,OpenTK.Graphics.Glx.All,System.UInt32,``0[]) - commentId: M:OpenTK.Graphics.Glx.Glx.AMD.GetGPUInfoAMD``1(System.UInt32,System.Int32,OpenTK.Graphics.Glx.All,System.UInt32,``0[]) - id: GetGPUInfoAMD``1(System.UInt32,System.Int32,OpenTK.Graphics.Glx.All,System.UInt32,``0[]) - parent: OpenTK.Graphics.Glx.Glx.AMD - langs: - - csharp - - vb - name: GetGPUInfoAMD(uint, int, All, uint, T1[]) - nameWithType: Glx.AMD.GetGPUInfoAMD(uint, int, All, uint, T1[]) - fullName: OpenTK.Graphics.Glx.Glx.AMD.GetGPUInfoAMD(uint, int, OpenTK.Graphics.Glx.All, uint, T1[]) - type: Method - source: - id: GetGPUInfoAMD - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 551 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_AMD_gpu_association] - - [entry point: glXGetGPUInfoAMD] - -
- example: [] - syntax: - content: 'public static int GetGPUInfoAMD(uint id, int property, All dataType, uint size, T1[] data) where T1 : unmanaged' - parameters: - - id: id - type: System.UInt32 - - id: property - type: System.Int32 - - id: dataType - type: OpenTK.Graphics.Glx.All - - id: size - type: System.UInt32 - - id: data - type: '{T1}[]' - typeParameters: - - id: T1 - return: - type: System.Int32 - content.vb: Public Shared Function GetGPUInfoAMD(Of T1 As Structure)(id As UInteger, [property] As Integer, dataType As All, size As UInteger, data As T1()) As Integer - overload: OpenTK.Graphics.Glx.Glx.AMD.GetGPUInfoAMD* - nameWithType.vb: Glx.AMD.GetGPUInfoAMD(Of T1)(UInteger, Integer, All, UInteger, T1()) - fullName.vb: OpenTK.Graphics.Glx.Glx.AMD.GetGPUInfoAMD(Of T1)(UInteger, Integer, OpenTK.Graphics.Glx.All, UInteger, T1()) - name.vb: GetGPUInfoAMD(Of T1)(UInteger, Integer, All, UInteger, T1()) -- uid: OpenTK.Graphics.Glx.Glx.AMD.GetGPUInfoAMD``1(System.UInt32,System.Int32,OpenTK.Graphics.Glx.All,System.UInt32,``0@) - commentId: M:OpenTK.Graphics.Glx.Glx.AMD.GetGPUInfoAMD``1(System.UInt32,System.Int32,OpenTK.Graphics.Glx.All,System.UInt32,``0@) - id: GetGPUInfoAMD``1(System.UInt32,System.Int32,OpenTK.Graphics.Glx.All,System.UInt32,``0@) - parent: OpenTK.Graphics.Glx.Glx.AMD - langs: - - csharp - - vb - name: GetGPUInfoAMD(uint, int, All, uint, ref T1) - nameWithType: Glx.AMD.GetGPUInfoAMD(uint, int, All, uint, ref T1) - fullName: OpenTK.Graphics.Glx.Glx.AMD.GetGPUInfoAMD(uint, int, OpenTK.Graphics.Glx.All, uint, ref T1) - type: Method - source: - id: GetGPUInfoAMD - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 562 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_AMD_gpu_association] - - [entry point: glXGetGPUInfoAMD] - -
- example: [] - syntax: - content: 'public static int GetGPUInfoAMD(uint id, int property, All dataType, uint size, ref T1 data) where T1 : unmanaged' - parameters: - - id: id - type: System.UInt32 - - id: property - type: System.Int32 - - id: dataType - type: OpenTK.Graphics.Glx.All - - id: size - type: System.UInt32 - - id: data - type: '{T1}' - typeParameters: - - id: T1 - return: - type: System.Int32 - content.vb: Public Shared Function GetGPUInfoAMD(Of T1 As Structure)(id As UInteger, [property] As Integer, dataType As All, size As UInteger, data As T1) As Integer - overload: OpenTK.Graphics.Glx.Glx.AMD.GetGPUInfoAMD* - nameWithType.vb: Glx.AMD.GetGPUInfoAMD(Of T1)(UInteger, Integer, All, UInteger, T1) - fullName.vb: OpenTK.Graphics.Glx.Glx.AMD.GetGPUInfoAMD(Of T1)(UInteger, Integer, OpenTK.Graphics.Glx.All, UInteger, T1) - name.vb: GetGPUInfoAMD(Of T1)(UInteger, Integer, All, UInteger, T1) -references: -- uid: OpenTK.Graphics.Glx - commentId: N:OpenTK.Graphics.Glx - href: OpenTK.html - name: OpenTK.Graphics.Glx - nameWithType: OpenTK.Graphics.Glx - fullName: OpenTK.Graphics.Glx - spec.csharp: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Glx - name: Glx - href: OpenTK.Graphics.Glx.html - spec.vb: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Glx - name: Glx - href: OpenTK.Graphics.Glx.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: System.Object.Equals(System.Object) - commentId: M:System.Object.Equals(System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - name: Equals(object) - nameWithType: object.Equals(object) - fullName: object.Equals(object) - nameWithType.vb: Object.Equals(Object) - fullName.vb: Object.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetHashCode - commentId: M:System.Object.GetHashCode - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - name: GetHashCode() - nameWithType: object.GetHashCode() - fullName: object.GetHashCode() - nameWithType.vb: Object.GetHashCode() - fullName.vb: Object.GetHashCode() - spec.csharp: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.MemberwiseClone - commentId: M:System.Object.MemberwiseClone - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - name: MemberwiseClone() - nameWithType: object.MemberwiseClone() - fullName: object.MemberwiseClone() - nameWithType.vb: Object.MemberwiseClone() - fullName.vb: Object.MemberwiseClone() - spec.csharp: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) - spec.vb: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.ToString - commentId: M:System.Object.ToString - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - name: ToString() - nameWithType: object.ToString() - fullName: object.ToString() - nameWithType.vb: Object.ToString() - fullName.vb: Object.ToString() - spec.csharp: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) - spec.vb: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: OpenTK.Graphics.Glx.Glx.AMD.BlitContextFramebufferAMD* - commentId: Overload:OpenTK.Graphics.Glx.Glx.AMD.BlitContextFramebufferAMD - href: OpenTK.Graphics.Glx.Glx.AMD.html#OpenTK_Graphics_Glx_Glx_AMD_BlitContextFramebufferAMD_OpenTK_Graphics_Glx_GLXContext_System_Int32_System_Int32_System_Int32_System_Int32_System_Int32_System_Int32_System_Int32_System_Int32_System_UInt32_OpenTK_Graphics_Glx_All_ - name: BlitContextFramebufferAMD - nameWithType: Glx.AMD.BlitContextFramebufferAMD - fullName: OpenTK.Graphics.Glx.Glx.AMD.BlitContextFramebufferAMD -- uid: OpenTK.Graphics.Glx.GLXContext - commentId: T:OpenTK.Graphics.Glx.GLXContext - parent: OpenTK.Graphics.Glx - href: OpenTK.Graphics.Glx.GLXContext.html - name: GLXContext - nameWithType: GLXContext - fullName: OpenTK.Graphics.Glx.GLXContext -- uid: System.Int32 - commentId: T:System.Int32 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - name: int - nameWithType: int - fullName: int - nameWithType.vb: Integer - fullName.vb: Integer - name.vb: Integer -- uid: System.UInt32 - commentId: T:System.UInt32 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - name: uint - nameWithType: uint - fullName: uint - nameWithType.vb: UInteger - fullName.vb: UInteger - name.vb: UInteger -- uid: OpenTK.Graphics.Glx.All - commentId: T:OpenTK.Graphics.Glx.All - parent: OpenTK.Graphics.Glx - href: OpenTK.Graphics.Glx.All.html - name: All - nameWithType: All - fullName: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.Glx.AMD.CreateAssociatedContextAMD* - commentId: Overload:OpenTK.Graphics.Glx.Glx.AMD.CreateAssociatedContextAMD - href: OpenTK.Graphics.Glx.Glx.AMD.html#OpenTK_Graphics_Glx_Glx_AMD_CreateAssociatedContextAMD_System_UInt32_OpenTK_Graphics_Glx_GLXContext_ - name: CreateAssociatedContextAMD - nameWithType: Glx.AMD.CreateAssociatedContextAMD - fullName: OpenTK.Graphics.Glx.Glx.AMD.CreateAssociatedContextAMD -- uid: OpenTK.Graphics.Glx.Glx.AMD.CreateAssociatedContextAttribsAMD* - commentId: Overload:OpenTK.Graphics.Glx.Glx.AMD.CreateAssociatedContextAttribsAMD - href: OpenTK.Graphics.Glx.Glx.AMD.html#OpenTK_Graphics_Glx_Glx_AMD_CreateAssociatedContextAttribsAMD_System_UInt32_OpenTK_Graphics_Glx_GLXContext_System_Int32__ - name: CreateAssociatedContextAttribsAMD - nameWithType: Glx.AMD.CreateAssociatedContextAttribsAMD - fullName: OpenTK.Graphics.Glx.Glx.AMD.CreateAssociatedContextAttribsAMD -- uid: System.Int32* - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - name: int* - nameWithType: int* - fullName: int* - nameWithType.vb: Integer* - fullName.vb: Integer* - name.vb: Integer* - spec.csharp: - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '*' - spec.vb: - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '*' -- uid: OpenTK.Graphics.Glx.Glx.AMD.DeleteAssociatedContextAMD* - commentId: Overload:OpenTK.Graphics.Glx.Glx.AMD.DeleteAssociatedContextAMD - href: OpenTK.Graphics.Glx.Glx.AMD.html#OpenTK_Graphics_Glx_Glx_AMD_DeleteAssociatedContextAMD_OpenTK_Graphics_Glx_GLXContext_ - name: DeleteAssociatedContextAMD - nameWithType: Glx.AMD.DeleteAssociatedContextAMD - fullName: OpenTK.Graphics.Glx.Glx.AMD.DeleteAssociatedContextAMD -- uid: System.Boolean - commentId: T:System.Boolean - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - name: bool - nameWithType: bool - fullName: bool - nameWithType.vb: Boolean - fullName.vb: Boolean - name.vb: Boolean -- uid: OpenTK.Graphics.Glx.Glx.AMD.GetContextGPUIDAMD* - commentId: Overload:OpenTK.Graphics.Glx.Glx.AMD.GetContextGPUIDAMD - href: OpenTK.Graphics.Glx.Glx.AMD.html#OpenTK_Graphics_Glx_Glx_AMD_GetContextGPUIDAMD_OpenTK_Graphics_Glx_GLXContext_ - name: GetContextGPUIDAMD - nameWithType: Glx.AMD.GetContextGPUIDAMD - fullName: OpenTK.Graphics.Glx.Glx.AMD.GetContextGPUIDAMD -- uid: OpenTK.Graphics.Glx.Glx.AMD.GetCurrentAssociatedContextAMD* - commentId: Overload:OpenTK.Graphics.Glx.Glx.AMD.GetCurrentAssociatedContextAMD - href: OpenTK.Graphics.Glx.Glx.AMD.html#OpenTK_Graphics_Glx_Glx_AMD_GetCurrentAssociatedContextAMD - name: GetCurrentAssociatedContextAMD - nameWithType: Glx.AMD.GetCurrentAssociatedContextAMD - fullName: OpenTK.Graphics.Glx.Glx.AMD.GetCurrentAssociatedContextAMD -- uid: OpenTK.Graphics.Glx.Glx.AMD.GetGPUIDsAMD* - commentId: Overload:OpenTK.Graphics.Glx.Glx.AMD.GetGPUIDsAMD - href: OpenTK.Graphics.Glx.Glx.AMD.html#OpenTK_Graphics_Glx_Glx_AMD_GetGPUIDsAMD_System_UInt32_System_UInt32__ - name: GetGPUIDsAMD - nameWithType: Glx.AMD.GetGPUIDsAMD - fullName: OpenTK.Graphics.Glx.Glx.AMD.GetGPUIDsAMD -- uid: System.UInt32* - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - name: uint* - nameWithType: uint* - fullName: uint* - nameWithType.vb: UInteger* - fullName.vb: UInteger* - name.vb: UInteger* - spec.csharp: - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: '*' - spec.vb: - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: '*' -- uid: OpenTK.Graphics.Glx.Glx.AMD.GetGPUInfoAMD* - commentId: Overload:OpenTK.Graphics.Glx.Glx.AMD.GetGPUInfoAMD - href: OpenTK.Graphics.Glx.Glx.AMD.html#OpenTK_Graphics_Glx_Glx_AMD_GetGPUInfoAMD_System_UInt32_System_Int32_OpenTK_Graphics_Glx_All_System_UInt32_System_Void__ - name: GetGPUInfoAMD - nameWithType: Glx.AMD.GetGPUInfoAMD - fullName: OpenTK.Graphics.Glx.Glx.AMD.GetGPUInfoAMD -- uid: System.Void* - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.void - name: void* - nameWithType: void* - fullName: void* - nameWithType.vb: Void* - fullName.vb: Void* - name.vb: Void* - spec.csharp: - - uid: System.Void - name: void - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.void - - name: '*' - spec.vb: - - uid: System.Void - name: Void - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.void - - name: '*' -- uid: OpenTK.Graphics.Glx.Glx.AMD.MakeAssociatedContextCurrentAMD* - commentId: Overload:OpenTK.Graphics.Glx.Glx.AMD.MakeAssociatedContextCurrentAMD - href: OpenTK.Graphics.Glx.Glx.AMD.html#OpenTK_Graphics_Glx_Glx_AMD_MakeAssociatedContextCurrentAMD_OpenTK_Graphics_Glx_GLXContext_ - name: MakeAssociatedContextCurrentAMD - nameWithType: Glx.AMD.MakeAssociatedContextCurrentAMD - fullName: OpenTK.Graphics.Glx.Glx.AMD.MakeAssociatedContextCurrentAMD -- uid: System.ReadOnlySpan{System.Int32} - commentId: T:System.ReadOnlySpan{System.Int32} - parent: System - definition: System.ReadOnlySpan`1 - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - name: ReadOnlySpan - nameWithType: ReadOnlySpan - fullName: System.ReadOnlySpan - nameWithType.vb: ReadOnlySpan(Of Integer) - fullName.vb: System.ReadOnlySpan(Of Integer) - name.vb: ReadOnlySpan(Of Integer) - spec.csharp: - - uid: System.ReadOnlySpan`1 - name: ReadOnlySpan - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - - name: < - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '>' - spec.vb: - - uid: System.ReadOnlySpan`1 - name: ReadOnlySpan - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - - name: ( - - name: Of - - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) -- uid: System.ReadOnlySpan`1 - commentId: T:System.ReadOnlySpan`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - name: ReadOnlySpan - nameWithType: ReadOnlySpan - fullName: System.ReadOnlySpan - nameWithType.vb: ReadOnlySpan(Of T) - fullName.vb: System.ReadOnlySpan(Of T) - name.vb: ReadOnlySpan(Of T) - spec.csharp: - - uid: System.ReadOnlySpan`1 - name: ReadOnlySpan - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.ReadOnlySpan`1 - name: ReadOnlySpan - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: System.Int32[] - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - name: int[] - nameWithType: int[] - fullName: int[] - nameWithType.vb: Integer() - fullName.vb: Integer() - name.vb: Integer() - spec.csharp: - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '[' - - name: ']' - spec.vb: - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ( - - name: ) -- uid: System.Span{System.UInt32} - commentId: T:System.Span{System.UInt32} - parent: System - definition: System.Span`1 - href: https://learn.microsoft.com/dotnet/api/system.span-1 - name: Span - nameWithType: Span - fullName: System.Span - nameWithType.vb: Span(Of UInteger) - fullName.vb: System.Span(Of UInteger) - name.vb: Span(Of UInteger) - spec.csharp: - - uid: System.Span`1 - name: Span - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.span-1 - - name: < - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: '>' - spec.vb: - - uid: System.Span`1 - name: Span - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.span-1 - - name: ( - - name: Of - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: System.Span`1 - commentId: T:System.Span`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.span-1 - name: Span - nameWithType: Span - fullName: System.Span - nameWithType.vb: Span(Of T) - fullName.vb: System.Span(Of T) - name.vb: Span(Of T) - spec.csharp: - - uid: System.Span`1 - name: Span - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.span-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.Span`1 - name: Span - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.span-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: System.UInt32[] - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - name: uint[] - nameWithType: uint[] - fullName: uint[] - nameWithType.vb: UInteger() - fullName.vb: UInteger() - name.vb: UInteger() - spec.csharp: - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: '[' - - name: ']' - spec.vb: - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ( - - name: ) -- uid: System.IntPtr - commentId: T:System.IntPtr - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: nint - nameWithType: nint - fullName: nint - nameWithType.vb: IntPtr - fullName.vb: System.IntPtr - name.vb: IntPtr -- uid: System.Span{{T1}} - commentId: T:System.Span{``0} - parent: System - definition: System.Span`1 - href: https://learn.microsoft.com/dotnet/api/system.span-1 - name: Span - nameWithType: Span - fullName: System.Span - nameWithType.vb: Span(Of T1) - fullName.vb: System.Span(Of T1) - name.vb: Span(Of T1) - spec.csharp: - - uid: System.Span`1 - name: Span - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.span-1 - - name: < - - name: T1 - - name: '>' - spec.vb: - - uid: System.Span`1 - name: Span - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.span-1 - - name: ( - - name: Of - - name: " " - - name: T1 - - name: ) -- uid: '{T1}[]' - isExternal: true - name: T1[] - nameWithType: T1[] - fullName: T1[] - nameWithType.vb: T1() - fullName.vb: T1() - name.vb: T1() - spec.csharp: - - name: T1 - - name: '[' - - name: ']' - spec.vb: - - name: T1 - - name: ( - - name: ) -- uid: '{T1}' - commentId: '!:T1' - definition: T1 - name: T1 - nameWithType: T1 - fullName: T1 -- uid: T1 - name: T1 - nameWithType: T1 - fullName: T1 diff --git a/api/OpenTK.Graphics.Glx.Glx.ARB.yml b/api/OpenTK.Graphics.Glx.Glx.ARB.yml deleted file mode 100644 index 7e0c2cce..00000000 --- a/api/OpenTK.Graphics.Glx.Glx.ARB.yml +++ /dev/null @@ -1,903 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: OpenTK.Graphics.Glx.Glx.ARB - commentId: T:OpenTK.Graphics.Glx.Glx.ARB - id: Glx.ARB - parent: OpenTK.Graphics.Glx - children: - - OpenTK.Graphics.Glx.Glx.ARB.CreateContextAttribsARB(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.GLXContext,System.Boolean,System.Int32*) - - OpenTK.Graphics.Glx.Glx.ARB.CreateContextAttribsARB(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.GLXContext,System.Boolean,System.Int32@) - - OpenTK.Graphics.Glx.Glx.ARB.CreateContextAttribsARB(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.GLXContext,System.Boolean,System.Int32[]) - - OpenTK.Graphics.Glx.Glx.ARB.CreateContextAttribsARB(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.GLXContext,System.Boolean,System.ReadOnlySpan{System.Int32}) - - OpenTK.Graphics.Glx.Glx.ARB.GetProcAddressARB(System.Byte*) - - OpenTK.Graphics.Glx.Glx.ARB.GetProcAddressARB(System.Byte@) - - OpenTK.Graphics.Glx.Glx.ARB.GetProcAddressARB(System.Byte[]) - - OpenTK.Graphics.Glx.Glx.ARB.GetProcAddressARB(System.ReadOnlySpan{System.Byte}) - langs: - - csharp - - vb - name: Glx.ARB - nameWithType: Glx.ARB - fullName: OpenTK.Graphics.Glx.Glx.ARB - type: Class - source: - id: ARB - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 573 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: ARB extensions. - example: [] - syntax: - content: public static class Glx.ARB - content.vb: Public Module Glx.ARB - inheritance: - - System.Object - inheritedMembers: - - System.Object.Equals(System.Object) - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetHashCode - - System.Object.GetType - - System.Object.MemberwiseClone - - System.Object.ReferenceEquals(System.Object,System.Object) - - System.Object.ToString -- uid: OpenTK.Graphics.Glx.Glx.ARB.CreateContextAttribsARB(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.GLXContext,System.Boolean,System.Int32*) - commentId: M:OpenTK.Graphics.Glx.Glx.ARB.CreateContextAttribsARB(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.GLXContext,System.Boolean,System.Int32*) - id: CreateContextAttribsARB(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.GLXContext,System.Boolean,System.Int32*) - parent: OpenTK.Graphics.Glx.Glx.ARB - langs: - - csharp - - vb - name: CreateContextAttribsARB(DisplayPtr, GLXFBConfig, GLXContext, bool, int*) - nameWithType: Glx.ARB.CreateContextAttribsARB(DisplayPtr, GLXFBConfig, GLXContext, bool, int*) - fullName: OpenTK.Graphics.Glx.Glx.ARB.CreateContextAttribsARB(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfig, OpenTK.Graphics.Glx.GLXContext, bool, int*) - type: Method - source: - id: CreateContextAttribsARB - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs - startLine: 163 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_ARB_create_context] - - [entry point: glXCreateContextAttribsARB] - -
- example: [] - syntax: - content: public static GLXContext CreateContextAttribsARB(DisplayPtr dpy, GLXFBConfig config, GLXContext share_context, bool direct, int* attrib_list) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: config - type: OpenTK.Graphics.Glx.GLXFBConfig - - id: share_context - type: OpenTK.Graphics.Glx.GLXContext - - id: direct - type: System.Boolean - - id: attrib_list - type: System.Int32* - return: - type: OpenTK.Graphics.Glx.GLXContext - content.vb: Public Shared Function CreateContextAttribsARB(dpy As DisplayPtr, config As GLXFBConfig, share_context As GLXContext, direct As Boolean, attrib_list As Integer*) As GLXContext - overload: OpenTK.Graphics.Glx.Glx.ARB.CreateContextAttribsARB* - nameWithType.vb: Glx.ARB.CreateContextAttribsARB(DisplayPtr, GLXFBConfig, GLXContext, Boolean, Integer*) - fullName.vb: OpenTK.Graphics.Glx.Glx.ARB.CreateContextAttribsARB(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfig, OpenTK.Graphics.Glx.GLXContext, Boolean, Integer*) - name.vb: CreateContextAttribsARB(DisplayPtr, GLXFBConfig, GLXContext, Boolean, Integer*) -- uid: OpenTK.Graphics.Glx.Glx.ARB.GetProcAddressARB(System.Byte*) - commentId: M:OpenTK.Graphics.Glx.Glx.ARB.GetProcAddressARB(System.Byte*) - id: GetProcAddressARB(System.Byte*) - parent: OpenTK.Graphics.Glx.Glx.ARB - langs: - - csharp - - vb - name: GetProcAddressARB(byte*) - nameWithType: Glx.ARB.GetProcAddressARB(byte*) - fullName: OpenTK.Graphics.Glx.Glx.ARB.GetProcAddressARB(byte*) - type: Method - source: - id: GetProcAddressARB - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs - startLine: 166 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_ARB_get_proc_address] - - [entry point: glXGetProcAddressARB] - -
- example: [] - syntax: - content: public static nint GetProcAddressARB(byte* procName) - parameters: - - id: procName - type: System.Byte* - return: - type: System.IntPtr - content.vb: Public Shared Function GetProcAddressARB(procName As Byte*) As IntPtr - overload: OpenTK.Graphics.Glx.Glx.ARB.GetProcAddressARB* - nameWithType.vb: Glx.ARB.GetProcAddressARB(Byte*) - fullName.vb: OpenTK.Graphics.Glx.Glx.ARB.GetProcAddressARB(Byte*) - name.vb: GetProcAddressARB(Byte*) -- uid: OpenTK.Graphics.Glx.Glx.ARB.CreateContextAttribsARB(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.GLXContext,System.Boolean,System.ReadOnlySpan{System.Int32}) - commentId: M:OpenTK.Graphics.Glx.Glx.ARB.CreateContextAttribsARB(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.GLXContext,System.Boolean,System.ReadOnlySpan{System.Int32}) - id: CreateContextAttribsARB(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.GLXContext,System.Boolean,System.ReadOnlySpan{System.Int32}) - parent: OpenTK.Graphics.Glx.Glx.ARB - langs: - - csharp - - vb - name: CreateContextAttribsARB(DisplayPtr, GLXFBConfig, GLXContext, bool, ReadOnlySpan) - nameWithType: Glx.ARB.CreateContextAttribsARB(DisplayPtr, GLXFBConfig, GLXContext, bool, ReadOnlySpan) - fullName: OpenTK.Graphics.Glx.Glx.ARB.CreateContextAttribsARB(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfig, OpenTK.Graphics.Glx.GLXContext, bool, System.ReadOnlySpan) - type: Method - source: - id: CreateContextAttribsARB - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 576 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_ARB_create_context] - - [entry point: glXCreateContextAttribsARB] - -
- example: [] - syntax: - content: public static GLXContext CreateContextAttribsARB(DisplayPtr dpy, GLXFBConfig config, GLXContext share_context, bool direct, ReadOnlySpan attrib_list) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: config - type: OpenTK.Graphics.Glx.GLXFBConfig - - id: share_context - type: OpenTK.Graphics.Glx.GLXContext - - id: direct - type: System.Boolean - - id: attrib_list - type: System.ReadOnlySpan{System.Int32} - return: - type: OpenTK.Graphics.Glx.GLXContext - content.vb: Public Shared Function CreateContextAttribsARB(dpy As DisplayPtr, config As GLXFBConfig, share_context As GLXContext, direct As Boolean, attrib_list As ReadOnlySpan(Of Integer)) As GLXContext - overload: OpenTK.Graphics.Glx.Glx.ARB.CreateContextAttribsARB* - nameWithType.vb: Glx.ARB.CreateContextAttribsARB(DisplayPtr, GLXFBConfig, GLXContext, Boolean, ReadOnlySpan(Of Integer)) - fullName.vb: OpenTK.Graphics.Glx.Glx.ARB.CreateContextAttribsARB(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfig, OpenTK.Graphics.Glx.GLXContext, Boolean, System.ReadOnlySpan(Of Integer)) - name.vb: CreateContextAttribsARB(DisplayPtr, GLXFBConfig, GLXContext, Boolean, ReadOnlySpan(Of Integer)) -- uid: OpenTK.Graphics.Glx.Glx.ARB.CreateContextAttribsARB(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.GLXContext,System.Boolean,System.Int32[]) - commentId: M:OpenTK.Graphics.Glx.Glx.ARB.CreateContextAttribsARB(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.GLXContext,System.Boolean,System.Int32[]) - id: CreateContextAttribsARB(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.GLXContext,System.Boolean,System.Int32[]) - parent: OpenTK.Graphics.Glx.Glx.ARB - langs: - - csharp - - vb - name: CreateContextAttribsARB(DisplayPtr, GLXFBConfig, GLXContext, bool, int[]) - nameWithType: Glx.ARB.CreateContextAttribsARB(DisplayPtr, GLXFBConfig, GLXContext, bool, int[]) - fullName: OpenTK.Graphics.Glx.Glx.ARB.CreateContextAttribsARB(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfig, OpenTK.Graphics.Glx.GLXContext, bool, int[]) - type: Method - source: - id: CreateContextAttribsARB - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 586 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_ARB_create_context] - - [entry point: glXCreateContextAttribsARB] - -
- example: [] - syntax: - content: public static GLXContext CreateContextAttribsARB(DisplayPtr dpy, GLXFBConfig config, GLXContext share_context, bool direct, int[] attrib_list) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: config - type: OpenTK.Graphics.Glx.GLXFBConfig - - id: share_context - type: OpenTK.Graphics.Glx.GLXContext - - id: direct - type: System.Boolean - - id: attrib_list - type: System.Int32[] - return: - type: OpenTK.Graphics.Glx.GLXContext - content.vb: Public Shared Function CreateContextAttribsARB(dpy As DisplayPtr, config As GLXFBConfig, share_context As GLXContext, direct As Boolean, attrib_list As Integer()) As GLXContext - overload: OpenTK.Graphics.Glx.Glx.ARB.CreateContextAttribsARB* - nameWithType.vb: Glx.ARB.CreateContextAttribsARB(DisplayPtr, GLXFBConfig, GLXContext, Boolean, Integer()) - fullName.vb: OpenTK.Graphics.Glx.Glx.ARB.CreateContextAttribsARB(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfig, OpenTK.Graphics.Glx.GLXContext, Boolean, Integer()) - name.vb: CreateContextAttribsARB(DisplayPtr, GLXFBConfig, GLXContext, Boolean, Integer()) -- uid: OpenTK.Graphics.Glx.Glx.ARB.CreateContextAttribsARB(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.GLXContext,System.Boolean,System.Int32@) - commentId: M:OpenTK.Graphics.Glx.Glx.ARB.CreateContextAttribsARB(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.GLXContext,System.Boolean,System.Int32@) - id: CreateContextAttribsARB(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.GLXContext,System.Boolean,System.Int32@) - parent: OpenTK.Graphics.Glx.Glx.ARB - langs: - - csharp - - vb - name: CreateContextAttribsARB(DisplayPtr, GLXFBConfig, GLXContext, bool, in int) - nameWithType: Glx.ARB.CreateContextAttribsARB(DisplayPtr, GLXFBConfig, GLXContext, bool, in int) - fullName: OpenTK.Graphics.Glx.Glx.ARB.CreateContextAttribsARB(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfig, OpenTK.Graphics.Glx.GLXContext, bool, in int) - type: Method - source: - id: CreateContextAttribsARB - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 596 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_ARB_create_context] - - [entry point: glXCreateContextAttribsARB] - -
- example: [] - syntax: - content: public static GLXContext CreateContextAttribsARB(DisplayPtr dpy, GLXFBConfig config, GLXContext share_context, bool direct, in int attrib_list) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: config - type: OpenTK.Graphics.Glx.GLXFBConfig - - id: share_context - type: OpenTK.Graphics.Glx.GLXContext - - id: direct - type: System.Boolean - - id: attrib_list - type: System.Int32 - return: - type: OpenTK.Graphics.Glx.GLXContext - content.vb: Public Shared Function CreateContextAttribsARB(dpy As DisplayPtr, config As GLXFBConfig, share_context As GLXContext, direct As Boolean, attrib_list As Integer) As GLXContext - overload: OpenTK.Graphics.Glx.Glx.ARB.CreateContextAttribsARB* - nameWithType.vb: Glx.ARB.CreateContextAttribsARB(DisplayPtr, GLXFBConfig, GLXContext, Boolean, Integer) - fullName.vb: OpenTK.Graphics.Glx.Glx.ARB.CreateContextAttribsARB(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfig, OpenTK.Graphics.Glx.GLXContext, Boolean, Integer) - name.vb: CreateContextAttribsARB(DisplayPtr, GLXFBConfig, GLXContext, Boolean, Integer) -- uid: OpenTK.Graphics.Glx.Glx.ARB.GetProcAddressARB(System.ReadOnlySpan{System.Byte}) - commentId: M:OpenTK.Graphics.Glx.Glx.ARB.GetProcAddressARB(System.ReadOnlySpan{System.Byte}) - id: GetProcAddressARB(System.ReadOnlySpan{System.Byte}) - parent: OpenTK.Graphics.Glx.Glx.ARB - langs: - - csharp - - vb - name: GetProcAddressARB(ReadOnlySpan) - nameWithType: Glx.ARB.GetProcAddressARB(ReadOnlySpan) - fullName: OpenTK.Graphics.Glx.Glx.ARB.GetProcAddressARB(System.ReadOnlySpan) - type: Method - source: - id: GetProcAddressARB - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 606 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_ARB_get_proc_address] - - [entry point: glXGetProcAddressARB] - -
- example: [] - syntax: - content: public static nint GetProcAddressARB(ReadOnlySpan procName) - parameters: - - id: procName - type: System.ReadOnlySpan{System.Byte} - return: - type: System.IntPtr - content.vb: Public Shared Function GetProcAddressARB(procName As ReadOnlySpan(Of Byte)) As IntPtr - overload: OpenTK.Graphics.Glx.Glx.ARB.GetProcAddressARB* - nameWithType.vb: Glx.ARB.GetProcAddressARB(ReadOnlySpan(Of Byte)) - fullName.vb: OpenTK.Graphics.Glx.Glx.ARB.GetProcAddressARB(System.ReadOnlySpan(Of Byte)) - name.vb: GetProcAddressARB(ReadOnlySpan(Of Byte)) -- uid: OpenTK.Graphics.Glx.Glx.ARB.GetProcAddressARB(System.Byte[]) - commentId: M:OpenTK.Graphics.Glx.Glx.ARB.GetProcAddressARB(System.Byte[]) - id: GetProcAddressARB(System.Byte[]) - parent: OpenTK.Graphics.Glx.Glx.ARB - langs: - - csharp - - vb - name: GetProcAddressARB(byte[]) - nameWithType: Glx.ARB.GetProcAddressARB(byte[]) - fullName: OpenTK.Graphics.Glx.Glx.ARB.GetProcAddressARB(byte[]) - type: Method - source: - id: GetProcAddressARB - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 616 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_ARB_get_proc_address] - - [entry point: glXGetProcAddressARB] - -
- example: [] - syntax: - content: public static nint GetProcAddressARB(byte[] procName) - parameters: - - id: procName - type: System.Byte[] - return: - type: System.IntPtr - content.vb: Public Shared Function GetProcAddressARB(procName As Byte()) As IntPtr - overload: OpenTK.Graphics.Glx.Glx.ARB.GetProcAddressARB* - nameWithType.vb: Glx.ARB.GetProcAddressARB(Byte()) - fullName.vb: OpenTK.Graphics.Glx.Glx.ARB.GetProcAddressARB(Byte()) - name.vb: GetProcAddressARB(Byte()) -- uid: OpenTK.Graphics.Glx.Glx.ARB.GetProcAddressARB(System.Byte@) - commentId: M:OpenTK.Graphics.Glx.Glx.ARB.GetProcAddressARB(System.Byte@) - id: GetProcAddressARB(System.Byte@) - parent: OpenTK.Graphics.Glx.Glx.ARB - langs: - - csharp - - vb - name: GetProcAddressARB(in byte) - nameWithType: Glx.ARB.GetProcAddressARB(in byte) - fullName: OpenTK.Graphics.Glx.Glx.ARB.GetProcAddressARB(in byte) - type: Method - source: - id: GetProcAddressARB - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 626 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_ARB_get_proc_address] - - [entry point: glXGetProcAddressARB] - -
- example: [] - syntax: - content: public static nint GetProcAddressARB(in byte procName) - parameters: - - id: procName - type: System.Byte - return: - type: System.IntPtr - content.vb: Public Shared Function GetProcAddressARB(procName As Byte) As IntPtr - overload: OpenTK.Graphics.Glx.Glx.ARB.GetProcAddressARB* - nameWithType.vb: Glx.ARB.GetProcAddressARB(Byte) - fullName.vb: OpenTK.Graphics.Glx.Glx.ARB.GetProcAddressARB(Byte) - name.vb: GetProcAddressARB(Byte) -references: -- uid: OpenTK.Graphics.Glx - commentId: N:OpenTK.Graphics.Glx - href: OpenTK.html - name: OpenTK.Graphics.Glx - nameWithType: OpenTK.Graphics.Glx - fullName: OpenTK.Graphics.Glx - spec.csharp: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Glx - name: Glx - href: OpenTK.Graphics.Glx.html - spec.vb: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Glx - name: Glx - href: OpenTK.Graphics.Glx.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: System.Object.Equals(System.Object) - commentId: M:System.Object.Equals(System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - name: Equals(object) - nameWithType: object.Equals(object) - fullName: object.Equals(object) - nameWithType.vb: Object.Equals(Object) - fullName.vb: Object.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetHashCode - commentId: M:System.Object.GetHashCode - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - name: GetHashCode() - nameWithType: object.GetHashCode() - fullName: object.GetHashCode() - nameWithType.vb: Object.GetHashCode() - fullName.vb: Object.GetHashCode() - spec.csharp: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.MemberwiseClone - commentId: M:System.Object.MemberwiseClone - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - name: MemberwiseClone() - nameWithType: object.MemberwiseClone() - fullName: object.MemberwiseClone() - nameWithType.vb: Object.MemberwiseClone() - fullName.vb: Object.MemberwiseClone() - spec.csharp: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) - spec.vb: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.ToString - commentId: M:System.Object.ToString - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - name: ToString() - nameWithType: object.ToString() - fullName: object.ToString() - nameWithType.vb: Object.ToString() - fullName.vb: Object.ToString() - spec.csharp: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) - spec.vb: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: OpenTK.Graphics.Glx.Glx.ARB.CreateContextAttribsARB* - commentId: Overload:OpenTK.Graphics.Glx.Glx.ARB.CreateContextAttribsARB - href: OpenTK.Graphics.Glx.Glx.ARB.html#OpenTK_Graphics_Glx_Glx_ARB_CreateContextAttribsARB_OpenTK_Graphics_Glx_DisplayPtr_OpenTK_Graphics_Glx_GLXFBConfig_OpenTK_Graphics_Glx_GLXContext_System_Boolean_System_Int32__ - name: CreateContextAttribsARB - nameWithType: Glx.ARB.CreateContextAttribsARB - fullName: OpenTK.Graphics.Glx.Glx.ARB.CreateContextAttribsARB -- uid: OpenTK.Graphics.Glx.DisplayPtr - commentId: T:OpenTK.Graphics.Glx.DisplayPtr - parent: OpenTK.Graphics.Glx - href: OpenTK.Graphics.Glx.DisplayPtr.html - name: DisplayPtr - nameWithType: DisplayPtr - fullName: OpenTK.Graphics.Glx.DisplayPtr -- uid: OpenTK.Graphics.Glx.GLXFBConfig - commentId: T:OpenTK.Graphics.Glx.GLXFBConfig - parent: OpenTK.Graphics.Glx - href: OpenTK.Graphics.Glx.GLXFBConfig.html - name: GLXFBConfig - nameWithType: GLXFBConfig - fullName: OpenTK.Graphics.Glx.GLXFBConfig -- uid: OpenTK.Graphics.Glx.GLXContext - commentId: T:OpenTK.Graphics.Glx.GLXContext - parent: OpenTK.Graphics.Glx - href: OpenTK.Graphics.Glx.GLXContext.html - name: GLXContext - nameWithType: GLXContext - fullName: OpenTK.Graphics.Glx.GLXContext -- uid: System.Boolean - commentId: T:System.Boolean - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - name: bool - nameWithType: bool - fullName: bool - nameWithType.vb: Boolean - fullName.vb: Boolean - name.vb: Boolean -- uid: System.Int32* - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - name: int* - nameWithType: int* - fullName: int* - nameWithType.vb: Integer* - fullName.vb: Integer* - name.vb: Integer* - spec.csharp: - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '*' - spec.vb: - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '*' -- uid: OpenTK.Graphics.Glx.Glx.ARB.GetProcAddressARB* - commentId: Overload:OpenTK.Graphics.Glx.Glx.ARB.GetProcAddressARB - href: OpenTK.Graphics.Glx.Glx.ARB.html#OpenTK_Graphics_Glx_Glx_ARB_GetProcAddressARB_System_Byte__ - name: GetProcAddressARB - nameWithType: Glx.ARB.GetProcAddressARB - fullName: OpenTK.Graphics.Glx.Glx.ARB.GetProcAddressARB -- uid: System.Byte* - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.byte - name: byte* - nameWithType: byte* - fullName: byte* - nameWithType.vb: Byte* - fullName.vb: Byte* - name.vb: Byte* - spec.csharp: - - uid: System.Byte - name: byte - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.byte - - name: '*' - spec.vb: - - uid: System.Byte - name: Byte - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.byte - - name: '*' -- uid: System.IntPtr - commentId: T:System.IntPtr - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: nint - nameWithType: nint - fullName: nint - nameWithType.vb: IntPtr - fullName.vb: System.IntPtr - name.vb: IntPtr -- uid: System.ReadOnlySpan{System.Int32} - commentId: T:System.ReadOnlySpan{System.Int32} - parent: System - definition: System.ReadOnlySpan`1 - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - name: ReadOnlySpan - nameWithType: ReadOnlySpan - fullName: System.ReadOnlySpan - nameWithType.vb: ReadOnlySpan(Of Integer) - fullName.vb: System.ReadOnlySpan(Of Integer) - name.vb: ReadOnlySpan(Of Integer) - spec.csharp: - - uid: System.ReadOnlySpan`1 - name: ReadOnlySpan - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - - name: < - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '>' - spec.vb: - - uid: System.ReadOnlySpan`1 - name: ReadOnlySpan - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - - name: ( - - name: Of - - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) -- uid: System.ReadOnlySpan`1 - commentId: T:System.ReadOnlySpan`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - name: ReadOnlySpan - nameWithType: ReadOnlySpan - fullName: System.ReadOnlySpan - nameWithType.vb: ReadOnlySpan(Of T) - fullName.vb: System.ReadOnlySpan(Of T) - name.vb: ReadOnlySpan(Of T) - spec.csharp: - - uid: System.ReadOnlySpan`1 - name: ReadOnlySpan - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.ReadOnlySpan`1 - name: ReadOnlySpan - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: System.Int32[] - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - name: int[] - nameWithType: int[] - fullName: int[] - nameWithType.vb: Integer() - fullName.vb: Integer() - name.vb: Integer() - spec.csharp: - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '[' - - name: ']' - spec.vb: - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ( - - name: ) -- uid: System.Int32 - commentId: T:System.Int32 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - name: int - nameWithType: int - fullName: int - nameWithType.vb: Integer - fullName.vb: Integer - name.vb: Integer -- uid: System.ReadOnlySpan{System.Byte} - commentId: T:System.ReadOnlySpan{System.Byte} - parent: System - definition: System.ReadOnlySpan`1 - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - name: ReadOnlySpan - nameWithType: ReadOnlySpan - fullName: System.ReadOnlySpan - nameWithType.vb: ReadOnlySpan(Of Byte) - fullName.vb: System.ReadOnlySpan(Of Byte) - name.vb: ReadOnlySpan(Of Byte) - spec.csharp: - - uid: System.ReadOnlySpan`1 - name: ReadOnlySpan - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - - name: < - - uid: System.Byte - name: byte - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.byte - - name: '>' - spec.vb: - - uid: System.ReadOnlySpan`1 - name: ReadOnlySpan - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - - name: ( - - name: Of - - name: " " - - uid: System.Byte - name: Byte - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.byte - - name: ) -- uid: System.Byte[] - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.byte - name: byte[] - nameWithType: byte[] - fullName: byte[] - nameWithType.vb: Byte() - fullName.vb: Byte() - name.vb: Byte() - spec.csharp: - - uid: System.Byte - name: byte - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.byte - - name: '[' - - name: ']' - spec.vb: - - uid: System.Byte - name: Byte - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.byte - - name: ( - - name: ) -- uid: System.Byte - commentId: T:System.Byte - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.byte - name: byte - nameWithType: byte - fullName: byte - nameWithType.vb: Byte - fullName.vb: Byte - name.vb: Byte diff --git a/api/OpenTK.Graphics.Glx.Glx.EXT.yml b/api/OpenTK.Graphics.Glx.Glx.EXT.yml deleted file mode 100644 index 75429cb3..00000000 --- a/api/OpenTK.Graphics.Glx.Glx.EXT.yml +++ /dev/null @@ -1,1124 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: OpenTK.Graphics.Glx.Glx.EXT - commentId: T:OpenTK.Graphics.Glx.Glx.EXT - id: Glx.EXT - parent: OpenTK.Graphics.Glx - children: - - OpenTK.Graphics.Glx.Glx.EXT.BindTexImageEXT(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32,System.Int32*) - - OpenTK.Graphics.Glx.Glx.EXT.BindTexImageEXT(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32,System.Int32@) - - OpenTK.Graphics.Glx.Glx.EXT.BindTexImageEXT(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32,System.Int32[]) - - OpenTK.Graphics.Glx.Glx.EXT.BindTexImageEXT(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32,System.ReadOnlySpan{System.Int32}) - - OpenTK.Graphics.Glx.Glx.EXT.FreeContextEXT(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext) - - OpenTK.Graphics.Glx.Glx.EXT.GetContextIDEXT(OpenTK.Graphics.Glx.GLXContext) - - OpenTK.Graphics.Glx.Glx.EXT.GetCurrentDisplayEXT - - OpenTK.Graphics.Glx.Glx.EXT.ImportContextEXT(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContextID) - - OpenTK.Graphics.Glx.Glx.EXT.QueryContextInfoEXT(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext,System.Int32,System.Int32*) - - OpenTK.Graphics.Glx.Glx.EXT.QueryContextInfoEXT(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext,System.Int32,System.Int32@) - - OpenTK.Graphics.Glx.Glx.EXT.QueryContextInfoEXT(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext,System.Int32,System.Int32[]) - - OpenTK.Graphics.Glx.Glx.EXT.QueryContextInfoEXT(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext,System.Int32,System.Span{System.Int32}) - - OpenTK.Graphics.Glx.Glx.EXT.ReleaseTexImageEXT(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32) - - OpenTK.Graphics.Glx.Glx.EXT.SwapIntervalEXT(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32) - langs: - - csharp - - vb - name: Glx.EXT - nameWithType: Glx.EXT - fullName: OpenTK.Graphics.Glx.Glx.EXT - type: Class - source: - id: EXT - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 636 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: EXT extensions. - example: [] - syntax: - content: public static class Glx.EXT - content.vb: Public Module Glx.EXT - inheritance: - - System.Object - inheritedMembers: - - System.Object.Equals(System.Object) - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetHashCode - - System.Object.GetType - - System.Object.MemberwiseClone - - System.Object.ReferenceEquals(System.Object,System.Object) - - System.Object.ToString -- uid: OpenTK.Graphics.Glx.Glx.EXT.BindTexImageEXT(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32,System.Int32*) - commentId: M:OpenTK.Graphics.Glx.Glx.EXT.BindTexImageEXT(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32,System.Int32*) - id: BindTexImageEXT(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32,System.Int32*) - parent: OpenTK.Graphics.Glx.Glx.EXT - langs: - - csharp - - vb - name: BindTexImageEXT(DisplayPtr, GLXDrawable, int, int*) - nameWithType: Glx.EXT.BindTexImageEXT(DisplayPtr, GLXDrawable, int, int*) - fullName: OpenTK.Graphics.Glx.Glx.EXT.BindTexImageEXT(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, int, int*) - type: Method - source: - id: BindTexImageEXT - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs - startLine: 173 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_EXT_texture_from_pixmap] - - [entry point: glXBindTexImageEXT] - -
- example: [] - syntax: - content: public static void BindTexImageEXT(DisplayPtr dpy, GLXDrawable drawable, int buffer, int* attrib_list) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: drawable - type: OpenTK.Graphics.Glx.GLXDrawable - - id: buffer - type: System.Int32 - - id: attrib_list - type: System.Int32* - content.vb: Public Shared Sub BindTexImageEXT(dpy As DisplayPtr, drawable As GLXDrawable, buffer As Integer, attrib_list As Integer*) - overload: OpenTK.Graphics.Glx.Glx.EXT.BindTexImageEXT* - nameWithType.vb: Glx.EXT.BindTexImageEXT(DisplayPtr, GLXDrawable, Integer, Integer*) - fullName.vb: OpenTK.Graphics.Glx.Glx.EXT.BindTexImageEXT(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, Integer, Integer*) - name.vb: BindTexImageEXT(DisplayPtr, GLXDrawable, Integer, Integer*) -- uid: OpenTK.Graphics.Glx.Glx.EXT.FreeContextEXT(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext) - commentId: M:OpenTK.Graphics.Glx.Glx.EXT.FreeContextEXT(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext) - id: FreeContextEXT(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext) - parent: OpenTK.Graphics.Glx.Glx.EXT - langs: - - csharp - - vb - name: FreeContextEXT(DisplayPtr, GLXContext) - nameWithType: Glx.EXT.FreeContextEXT(DisplayPtr, GLXContext) - fullName: OpenTK.Graphics.Glx.Glx.EXT.FreeContextEXT(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXContext) - type: Method - source: - id: FreeContextEXT - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs - startLine: 176 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_EXT_import_context] - - [entry point: glXFreeContextEXT] - -
- example: [] - syntax: - content: public static void FreeContextEXT(DisplayPtr dpy, GLXContext context) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: context - type: OpenTK.Graphics.Glx.GLXContext - content.vb: Public Shared Sub FreeContextEXT(dpy As DisplayPtr, context As GLXContext) - overload: OpenTK.Graphics.Glx.Glx.EXT.FreeContextEXT* -- uid: OpenTK.Graphics.Glx.Glx.EXT.GetContextIDEXT(OpenTK.Graphics.Glx.GLXContext) - commentId: M:OpenTK.Graphics.Glx.Glx.EXT.GetContextIDEXT(OpenTK.Graphics.Glx.GLXContext) - id: GetContextIDEXT(OpenTK.Graphics.Glx.GLXContext) - parent: OpenTK.Graphics.Glx.Glx.EXT - langs: - - csharp - - vb - name: GetContextIDEXT(GLXContext) - nameWithType: Glx.EXT.GetContextIDEXT(GLXContext) - fullName: OpenTK.Graphics.Glx.Glx.EXT.GetContextIDEXT(OpenTK.Graphics.Glx.GLXContext) - type: Method - source: - id: GetContextIDEXT - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs - startLine: 179 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_EXT_import_context] - - [entry point: glXGetContextIDEXT] - -
- example: [] - syntax: - content: public static GLXContextID GetContextIDEXT(GLXContext context) - parameters: - - id: context - type: OpenTK.Graphics.Glx.GLXContext - return: - type: OpenTK.Graphics.Glx.GLXContextID - content.vb: Public Shared Function GetContextIDEXT(context As GLXContext) As GLXContextID - overload: OpenTK.Graphics.Glx.Glx.EXT.GetContextIDEXT* -- uid: OpenTK.Graphics.Glx.Glx.EXT.GetCurrentDisplayEXT - commentId: M:OpenTK.Graphics.Glx.Glx.EXT.GetCurrentDisplayEXT - id: GetCurrentDisplayEXT - parent: OpenTK.Graphics.Glx.Glx.EXT - langs: - - csharp - - vb - name: GetCurrentDisplayEXT() - nameWithType: Glx.EXT.GetCurrentDisplayEXT() - fullName: OpenTK.Graphics.Glx.Glx.EXT.GetCurrentDisplayEXT() - type: Method - source: - id: GetCurrentDisplayEXT - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs - startLine: 182 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_EXT_import_context] - - [entry point: glXGetCurrentDisplayEXT] - -
- example: [] - syntax: - content: public static DisplayPtr GetCurrentDisplayEXT() - return: - type: OpenTK.Graphics.Glx.DisplayPtr - content.vb: Public Shared Function GetCurrentDisplayEXT() As DisplayPtr - overload: OpenTK.Graphics.Glx.Glx.EXT.GetCurrentDisplayEXT* -- uid: OpenTK.Graphics.Glx.Glx.EXT.ImportContextEXT(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContextID) - commentId: M:OpenTK.Graphics.Glx.Glx.EXT.ImportContextEXT(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContextID) - id: ImportContextEXT(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContextID) - parent: OpenTK.Graphics.Glx.Glx.EXT - langs: - - csharp - - vb - name: ImportContextEXT(DisplayPtr, GLXContextID) - nameWithType: Glx.EXT.ImportContextEXT(DisplayPtr, GLXContextID) - fullName: OpenTK.Graphics.Glx.Glx.EXT.ImportContextEXT(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXContextID) - type: Method - source: - id: ImportContextEXT - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs - startLine: 185 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_EXT_import_context] - - [entry point: glXImportContextEXT] - -
- example: [] - syntax: - content: public static GLXContext ImportContextEXT(DisplayPtr dpy, GLXContextID contextID) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: contextID - type: OpenTK.Graphics.Glx.GLXContextID - return: - type: OpenTK.Graphics.Glx.GLXContext - content.vb: Public Shared Function ImportContextEXT(dpy As DisplayPtr, contextID As GLXContextID) As GLXContext - overload: OpenTK.Graphics.Glx.Glx.EXT.ImportContextEXT* -- uid: OpenTK.Graphics.Glx.Glx.EXT.QueryContextInfoEXT(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext,System.Int32,System.Int32*) - commentId: M:OpenTK.Graphics.Glx.Glx.EXT.QueryContextInfoEXT(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext,System.Int32,System.Int32*) - id: QueryContextInfoEXT(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext,System.Int32,System.Int32*) - parent: OpenTK.Graphics.Glx.Glx.EXT - langs: - - csharp - - vb - name: QueryContextInfoEXT(DisplayPtr, GLXContext, int, int*) - nameWithType: Glx.EXT.QueryContextInfoEXT(DisplayPtr, GLXContext, int, int*) - fullName: OpenTK.Graphics.Glx.Glx.EXT.QueryContextInfoEXT(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXContext, int, int*) - type: Method - source: - id: QueryContextInfoEXT - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs - startLine: 188 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_EXT_import_context] - - [entry point: glXQueryContextInfoEXT] - -
- example: [] - syntax: - content: public static int QueryContextInfoEXT(DisplayPtr dpy, GLXContext context, int attribute, int* value) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: context - type: OpenTK.Graphics.Glx.GLXContext - - id: attribute - type: System.Int32 - - id: value - type: System.Int32* - return: - type: System.Int32 - content.vb: Public Shared Function QueryContextInfoEXT(dpy As DisplayPtr, context As GLXContext, attribute As Integer, value As Integer*) As Integer - overload: OpenTK.Graphics.Glx.Glx.EXT.QueryContextInfoEXT* - nameWithType.vb: Glx.EXT.QueryContextInfoEXT(DisplayPtr, GLXContext, Integer, Integer*) - fullName.vb: OpenTK.Graphics.Glx.Glx.EXT.QueryContextInfoEXT(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXContext, Integer, Integer*) - name.vb: QueryContextInfoEXT(DisplayPtr, GLXContext, Integer, Integer*) -- uid: OpenTK.Graphics.Glx.Glx.EXT.ReleaseTexImageEXT(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32) - commentId: M:OpenTK.Graphics.Glx.Glx.EXT.ReleaseTexImageEXT(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32) - id: ReleaseTexImageEXT(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32) - parent: OpenTK.Graphics.Glx.Glx.EXT - langs: - - csharp - - vb - name: ReleaseTexImageEXT(DisplayPtr, GLXDrawable, int) - nameWithType: Glx.EXT.ReleaseTexImageEXT(DisplayPtr, GLXDrawable, int) - fullName: OpenTK.Graphics.Glx.Glx.EXT.ReleaseTexImageEXT(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, int) - type: Method - source: - id: ReleaseTexImageEXT - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs - startLine: 191 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_EXT_texture_from_pixmap] - - [entry point: glXReleaseTexImageEXT] - -
- example: [] - syntax: - content: public static void ReleaseTexImageEXT(DisplayPtr dpy, GLXDrawable drawable, int buffer) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: drawable - type: OpenTK.Graphics.Glx.GLXDrawable - - id: buffer - type: System.Int32 - content.vb: Public Shared Sub ReleaseTexImageEXT(dpy As DisplayPtr, drawable As GLXDrawable, buffer As Integer) - overload: OpenTK.Graphics.Glx.Glx.EXT.ReleaseTexImageEXT* - nameWithType.vb: Glx.EXT.ReleaseTexImageEXT(DisplayPtr, GLXDrawable, Integer) - fullName.vb: OpenTK.Graphics.Glx.Glx.EXT.ReleaseTexImageEXT(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, Integer) - name.vb: ReleaseTexImageEXT(DisplayPtr, GLXDrawable, Integer) -- uid: OpenTK.Graphics.Glx.Glx.EXT.SwapIntervalEXT(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32) - commentId: M:OpenTK.Graphics.Glx.Glx.EXT.SwapIntervalEXT(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32) - id: SwapIntervalEXT(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32) - parent: OpenTK.Graphics.Glx.Glx.EXT - langs: - - csharp - - vb - name: SwapIntervalEXT(DisplayPtr, GLXDrawable, int) - nameWithType: Glx.EXT.SwapIntervalEXT(DisplayPtr, GLXDrawable, int) - fullName: OpenTK.Graphics.Glx.Glx.EXT.SwapIntervalEXT(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, int) - type: Method - source: - id: SwapIntervalEXT - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs - startLine: 194 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_EXT_swap_control] - - [entry point: glXSwapIntervalEXT] - -
- example: [] - syntax: - content: public static void SwapIntervalEXT(DisplayPtr dpy, GLXDrawable drawable, int interval) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: drawable - type: OpenTK.Graphics.Glx.GLXDrawable - - id: interval - type: System.Int32 - content.vb: Public Shared Sub SwapIntervalEXT(dpy As DisplayPtr, drawable As GLXDrawable, interval As Integer) - overload: OpenTK.Graphics.Glx.Glx.EXT.SwapIntervalEXT* - nameWithType.vb: Glx.EXT.SwapIntervalEXT(DisplayPtr, GLXDrawable, Integer) - fullName.vb: OpenTK.Graphics.Glx.Glx.EXT.SwapIntervalEXT(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, Integer) - name.vb: SwapIntervalEXT(DisplayPtr, GLXDrawable, Integer) -- uid: OpenTK.Graphics.Glx.Glx.EXT.BindTexImageEXT(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32,System.ReadOnlySpan{System.Int32}) - commentId: M:OpenTK.Graphics.Glx.Glx.EXT.BindTexImageEXT(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32,System.ReadOnlySpan{System.Int32}) - id: BindTexImageEXT(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32,System.ReadOnlySpan{System.Int32}) - parent: OpenTK.Graphics.Glx.Glx.EXT - langs: - - csharp - - vb - name: BindTexImageEXT(DisplayPtr, GLXDrawable, int, ReadOnlySpan) - nameWithType: Glx.EXT.BindTexImageEXT(DisplayPtr, GLXDrawable, int, ReadOnlySpan) - fullName: OpenTK.Graphics.Glx.Glx.EXT.BindTexImageEXT(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, int, System.ReadOnlySpan) - type: Method - source: - id: BindTexImageEXT - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 639 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_EXT_texture_from_pixmap] - - [entry point: glXBindTexImageEXT] - -
- example: [] - syntax: - content: public static void BindTexImageEXT(DisplayPtr dpy, GLXDrawable drawable, int buffer, ReadOnlySpan attrib_list) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: drawable - type: OpenTK.Graphics.Glx.GLXDrawable - - id: buffer - type: System.Int32 - - id: attrib_list - type: System.ReadOnlySpan{System.Int32} - content.vb: Public Shared Sub BindTexImageEXT(dpy As DisplayPtr, drawable As GLXDrawable, buffer As Integer, attrib_list As ReadOnlySpan(Of Integer)) - overload: OpenTK.Graphics.Glx.Glx.EXT.BindTexImageEXT* - nameWithType.vb: Glx.EXT.BindTexImageEXT(DisplayPtr, GLXDrawable, Integer, ReadOnlySpan(Of Integer)) - fullName.vb: OpenTK.Graphics.Glx.Glx.EXT.BindTexImageEXT(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, Integer, System.ReadOnlySpan(Of Integer)) - name.vb: BindTexImageEXT(DisplayPtr, GLXDrawable, Integer, ReadOnlySpan(Of Integer)) -- uid: OpenTK.Graphics.Glx.Glx.EXT.BindTexImageEXT(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32,System.Int32[]) - commentId: M:OpenTK.Graphics.Glx.Glx.EXT.BindTexImageEXT(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32,System.Int32[]) - id: BindTexImageEXT(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32,System.Int32[]) - parent: OpenTK.Graphics.Glx.Glx.EXT - langs: - - csharp - - vb - name: BindTexImageEXT(DisplayPtr, GLXDrawable, int, int[]) - nameWithType: Glx.EXT.BindTexImageEXT(DisplayPtr, GLXDrawable, int, int[]) - fullName: OpenTK.Graphics.Glx.Glx.EXT.BindTexImageEXT(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, int, int[]) - type: Method - source: - id: BindTexImageEXT - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 647 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_EXT_texture_from_pixmap] - - [entry point: glXBindTexImageEXT] - -
- example: [] - syntax: - content: public static void BindTexImageEXT(DisplayPtr dpy, GLXDrawable drawable, int buffer, int[] attrib_list) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: drawable - type: OpenTK.Graphics.Glx.GLXDrawable - - id: buffer - type: System.Int32 - - id: attrib_list - type: System.Int32[] - content.vb: Public Shared Sub BindTexImageEXT(dpy As DisplayPtr, drawable As GLXDrawable, buffer As Integer, attrib_list As Integer()) - overload: OpenTK.Graphics.Glx.Glx.EXT.BindTexImageEXT* - nameWithType.vb: Glx.EXT.BindTexImageEXT(DisplayPtr, GLXDrawable, Integer, Integer()) - fullName.vb: OpenTK.Graphics.Glx.Glx.EXT.BindTexImageEXT(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, Integer, Integer()) - name.vb: BindTexImageEXT(DisplayPtr, GLXDrawable, Integer, Integer()) -- uid: OpenTK.Graphics.Glx.Glx.EXT.BindTexImageEXT(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32,System.Int32@) - commentId: M:OpenTK.Graphics.Glx.Glx.EXT.BindTexImageEXT(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32,System.Int32@) - id: BindTexImageEXT(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32,System.Int32@) - parent: OpenTK.Graphics.Glx.Glx.EXT - langs: - - csharp - - vb - name: BindTexImageEXT(DisplayPtr, GLXDrawable, int, in int) - nameWithType: Glx.EXT.BindTexImageEXT(DisplayPtr, GLXDrawable, int, in int) - fullName: OpenTK.Graphics.Glx.Glx.EXT.BindTexImageEXT(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, int, in int) - type: Method - source: - id: BindTexImageEXT - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 655 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_EXT_texture_from_pixmap] - - [entry point: glXBindTexImageEXT] - -
- example: [] - syntax: - content: public static void BindTexImageEXT(DisplayPtr dpy, GLXDrawable drawable, int buffer, in int attrib_list) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: drawable - type: OpenTK.Graphics.Glx.GLXDrawable - - id: buffer - type: System.Int32 - - id: attrib_list - type: System.Int32 - content.vb: Public Shared Sub BindTexImageEXT(dpy As DisplayPtr, drawable As GLXDrawable, buffer As Integer, attrib_list As Integer) - overload: OpenTK.Graphics.Glx.Glx.EXT.BindTexImageEXT* - nameWithType.vb: Glx.EXT.BindTexImageEXT(DisplayPtr, GLXDrawable, Integer, Integer) - fullName.vb: OpenTK.Graphics.Glx.Glx.EXT.BindTexImageEXT(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, Integer, Integer) - name.vb: BindTexImageEXT(DisplayPtr, GLXDrawable, Integer, Integer) -- uid: OpenTK.Graphics.Glx.Glx.EXT.QueryContextInfoEXT(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext,System.Int32,System.Span{System.Int32}) - commentId: M:OpenTK.Graphics.Glx.Glx.EXT.QueryContextInfoEXT(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext,System.Int32,System.Span{System.Int32}) - id: QueryContextInfoEXT(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext,System.Int32,System.Span{System.Int32}) - parent: OpenTK.Graphics.Glx.Glx.EXT - langs: - - csharp - - vb - name: QueryContextInfoEXT(DisplayPtr, GLXContext, int, Span) - nameWithType: Glx.EXT.QueryContextInfoEXT(DisplayPtr, GLXContext, int, Span) - fullName: OpenTK.Graphics.Glx.Glx.EXT.QueryContextInfoEXT(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXContext, int, System.Span) - type: Method - source: - id: QueryContextInfoEXT - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 663 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_EXT_import_context] - - [entry point: glXQueryContextInfoEXT] - -
- example: [] - syntax: - content: public static int QueryContextInfoEXT(DisplayPtr dpy, GLXContext context, int attribute, Span value) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: context - type: OpenTK.Graphics.Glx.GLXContext - - id: attribute - type: System.Int32 - - id: value - type: System.Span{System.Int32} - return: - type: System.Int32 - content.vb: Public Shared Function QueryContextInfoEXT(dpy As DisplayPtr, context As GLXContext, attribute As Integer, value As Span(Of Integer)) As Integer - overload: OpenTK.Graphics.Glx.Glx.EXT.QueryContextInfoEXT* - nameWithType.vb: Glx.EXT.QueryContextInfoEXT(DisplayPtr, GLXContext, Integer, Span(Of Integer)) - fullName.vb: OpenTK.Graphics.Glx.Glx.EXT.QueryContextInfoEXT(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXContext, Integer, System.Span(Of Integer)) - name.vb: QueryContextInfoEXT(DisplayPtr, GLXContext, Integer, Span(Of Integer)) -- uid: OpenTK.Graphics.Glx.Glx.EXT.QueryContextInfoEXT(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext,System.Int32,System.Int32[]) - commentId: M:OpenTK.Graphics.Glx.Glx.EXT.QueryContextInfoEXT(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext,System.Int32,System.Int32[]) - id: QueryContextInfoEXT(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext,System.Int32,System.Int32[]) - parent: OpenTK.Graphics.Glx.Glx.EXT - langs: - - csharp - - vb - name: QueryContextInfoEXT(DisplayPtr, GLXContext, int, int[]) - nameWithType: Glx.EXT.QueryContextInfoEXT(DisplayPtr, GLXContext, int, int[]) - fullName: OpenTK.Graphics.Glx.Glx.EXT.QueryContextInfoEXT(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXContext, int, int[]) - type: Method - source: - id: QueryContextInfoEXT - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 673 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_EXT_import_context] - - [entry point: glXQueryContextInfoEXT] - -
- example: [] - syntax: - content: public static int QueryContextInfoEXT(DisplayPtr dpy, GLXContext context, int attribute, int[] value) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: context - type: OpenTK.Graphics.Glx.GLXContext - - id: attribute - type: System.Int32 - - id: value - type: System.Int32[] - return: - type: System.Int32 - content.vb: Public Shared Function QueryContextInfoEXT(dpy As DisplayPtr, context As GLXContext, attribute As Integer, value As Integer()) As Integer - overload: OpenTK.Graphics.Glx.Glx.EXT.QueryContextInfoEXT* - nameWithType.vb: Glx.EXT.QueryContextInfoEXT(DisplayPtr, GLXContext, Integer, Integer()) - fullName.vb: OpenTK.Graphics.Glx.Glx.EXT.QueryContextInfoEXT(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXContext, Integer, Integer()) - name.vb: QueryContextInfoEXT(DisplayPtr, GLXContext, Integer, Integer()) -- uid: OpenTK.Graphics.Glx.Glx.EXT.QueryContextInfoEXT(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext,System.Int32,System.Int32@) - commentId: M:OpenTK.Graphics.Glx.Glx.EXT.QueryContextInfoEXT(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext,System.Int32,System.Int32@) - id: QueryContextInfoEXT(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext,System.Int32,System.Int32@) - parent: OpenTK.Graphics.Glx.Glx.EXT - langs: - - csharp - - vb - name: QueryContextInfoEXT(DisplayPtr, GLXContext, int, ref int) - nameWithType: Glx.EXT.QueryContextInfoEXT(DisplayPtr, GLXContext, int, ref int) - fullName: OpenTK.Graphics.Glx.Glx.EXT.QueryContextInfoEXT(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXContext, int, ref int) - type: Method - source: - id: QueryContextInfoEXT - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 683 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_EXT_import_context] - - [entry point: glXQueryContextInfoEXT] - -
- example: [] - syntax: - content: public static int QueryContextInfoEXT(DisplayPtr dpy, GLXContext context, int attribute, ref int value) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: context - type: OpenTK.Graphics.Glx.GLXContext - - id: attribute - type: System.Int32 - - id: value - type: System.Int32 - return: - type: System.Int32 - content.vb: Public Shared Function QueryContextInfoEXT(dpy As DisplayPtr, context As GLXContext, attribute As Integer, value As Integer) As Integer - overload: OpenTK.Graphics.Glx.Glx.EXT.QueryContextInfoEXT* - nameWithType.vb: Glx.EXT.QueryContextInfoEXT(DisplayPtr, GLXContext, Integer, Integer) - fullName.vb: OpenTK.Graphics.Glx.Glx.EXT.QueryContextInfoEXT(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXContext, Integer, Integer) - name.vb: QueryContextInfoEXT(DisplayPtr, GLXContext, Integer, Integer) -references: -- uid: OpenTK.Graphics.Glx - commentId: N:OpenTK.Graphics.Glx - href: OpenTK.html - name: OpenTK.Graphics.Glx - nameWithType: OpenTK.Graphics.Glx - fullName: OpenTK.Graphics.Glx - spec.csharp: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Glx - name: Glx - href: OpenTK.Graphics.Glx.html - spec.vb: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Glx - name: Glx - href: OpenTK.Graphics.Glx.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: System.Object.Equals(System.Object) - commentId: M:System.Object.Equals(System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - name: Equals(object) - nameWithType: object.Equals(object) - fullName: object.Equals(object) - nameWithType.vb: Object.Equals(Object) - fullName.vb: Object.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetHashCode - commentId: M:System.Object.GetHashCode - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - name: GetHashCode() - nameWithType: object.GetHashCode() - fullName: object.GetHashCode() - nameWithType.vb: Object.GetHashCode() - fullName.vb: Object.GetHashCode() - spec.csharp: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.MemberwiseClone - commentId: M:System.Object.MemberwiseClone - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - name: MemberwiseClone() - nameWithType: object.MemberwiseClone() - fullName: object.MemberwiseClone() - nameWithType.vb: Object.MemberwiseClone() - fullName.vb: Object.MemberwiseClone() - spec.csharp: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) - spec.vb: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.ToString - commentId: M:System.Object.ToString - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - name: ToString() - nameWithType: object.ToString() - fullName: object.ToString() - nameWithType.vb: Object.ToString() - fullName.vb: Object.ToString() - spec.csharp: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) - spec.vb: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: OpenTK.Graphics.Glx.Glx.EXT.BindTexImageEXT* - commentId: Overload:OpenTK.Graphics.Glx.Glx.EXT.BindTexImageEXT - href: OpenTK.Graphics.Glx.Glx.EXT.html#OpenTK_Graphics_Glx_Glx_EXT_BindTexImageEXT_OpenTK_Graphics_Glx_DisplayPtr_OpenTK_Graphics_Glx_GLXDrawable_System_Int32_System_Int32__ - name: BindTexImageEXT - nameWithType: Glx.EXT.BindTexImageEXT - fullName: OpenTK.Graphics.Glx.Glx.EXT.BindTexImageEXT -- uid: OpenTK.Graphics.Glx.DisplayPtr - commentId: T:OpenTK.Graphics.Glx.DisplayPtr - parent: OpenTK.Graphics.Glx - href: OpenTK.Graphics.Glx.DisplayPtr.html - name: DisplayPtr - nameWithType: DisplayPtr - fullName: OpenTK.Graphics.Glx.DisplayPtr -- uid: OpenTK.Graphics.Glx.GLXDrawable - commentId: T:OpenTK.Graphics.Glx.GLXDrawable - parent: OpenTK.Graphics.Glx - href: OpenTK.Graphics.Glx.GLXDrawable.html - name: GLXDrawable - nameWithType: GLXDrawable - fullName: OpenTK.Graphics.Glx.GLXDrawable -- uid: System.Int32 - commentId: T:System.Int32 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - name: int - nameWithType: int - fullName: int - nameWithType.vb: Integer - fullName.vb: Integer - name.vb: Integer -- uid: System.Int32* - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - name: int* - nameWithType: int* - fullName: int* - nameWithType.vb: Integer* - fullName.vb: Integer* - name.vb: Integer* - spec.csharp: - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '*' - spec.vb: - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '*' -- uid: OpenTK.Graphics.Glx.Glx.EXT.FreeContextEXT* - commentId: Overload:OpenTK.Graphics.Glx.Glx.EXT.FreeContextEXT - href: OpenTK.Graphics.Glx.Glx.EXT.html#OpenTK_Graphics_Glx_Glx_EXT_FreeContextEXT_OpenTK_Graphics_Glx_DisplayPtr_OpenTK_Graphics_Glx_GLXContext_ - name: FreeContextEXT - nameWithType: Glx.EXT.FreeContextEXT - fullName: OpenTK.Graphics.Glx.Glx.EXT.FreeContextEXT -- uid: OpenTK.Graphics.Glx.GLXContext - commentId: T:OpenTK.Graphics.Glx.GLXContext - parent: OpenTK.Graphics.Glx - href: OpenTK.Graphics.Glx.GLXContext.html - name: GLXContext - nameWithType: GLXContext - fullName: OpenTK.Graphics.Glx.GLXContext -- uid: OpenTK.Graphics.Glx.Glx.EXT.GetContextIDEXT* - commentId: Overload:OpenTK.Graphics.Glx.Glx.EXT.GetContextIDEXT - href: OpenTK.Graphics.Glx.Glx.EXT.html#OpenTK_Graphics_Glx_Glx_EXT_GetContextIDEXT_OpenTK_Graphics_Glx_GLXContext_ - name: GetContextIDEXT - nameWithType: Glx.EXT.GetContextIDEXT - fullName: OpenTK.Graphics.Glx.Glx.EXT.GetContextIDEXT -- uid: OpenTK.Graphics.Glx.GLXContextID - commentId: T:OpenTK.Graphics.Glx.GLXContextID - parent: OpenTK.Graphics.Glx - href: OpenTK.Graphics.Glx.GLXContextID.html - name: GLXContextID - nameWithType: GLXContextID - fullName: OpenTK.Graphics.Glx.GLXContextID -- uid: OpenTK.Graphics.Glx.Glx.EXT.GetCurrentDisplayEXT* - commentId: Overload:OpenTK.Graphics.Glx.Glx.EXT.GetCurrentDisplayEXT - href: OpenTK.Graphics.Glx.Glx.EXT.html#OpenTK_Graphics_Glx_Glx_EXT_GetCurrentDisplayEXT - name: GetCurrentDisplayEXT - nameWithType: Glx.EXT.GetCurrentDisplayEXT - fullName: OpenTK.Graphics.Glx.Glx.EXT.GetCurrentDisplayEXT -- uid: OpenTK.Graphics.Glx.Glx.EXT.ImportContextEXT* - commentId: Overload:OpenTK.Graphics.Glx.Glx.EXT.ImportContextEXT - href: OpenTK.Graphics.Glx.Glx.EXT.html#OpenTK_Graphics_Glx_Glx_EXT_ImportContextEXT_OpenTK_Graphics_Glx_DisplayPtr_OpenTK_Graphics_Glx_GLXContextID_ - name: ImportContextEXT - nameWithType: Glx.EXT.ImportContextEXT - fullName: OpenTK.Graphics.Glx.Glx.EXT.ImportContextEXT -- uid: OpenTK.Graphics.Glx.Glx.EXT.QueryContextInfoEXT* - commentId: Overload:OpenTK.Graphics.Glx.Glx.EXT.QueryContextInfoEXT - href: OpenTK.Graphics.Glx.Glx.EXT.html#OpenTK_Graphics_Glx_Glx_EXT_QueryContextInfoEXT_OpenTK_Graphics_Glx_DisplayPtr_OpenTK_Graphics_Glx_GLXContext_System_Int32_System_Int32__ - name: QueryContextInfoEXT - nameWithType: Glx.EXT.QueryContextInfoEXT - fullName: OpenTK.Graphics.Glx.Glx.EXT.QueryContextInfoEXT -- uid: OpenTK.Graphics.Glx.Glx.EXT.ReleaseTexImageEXT* - commentId: Overload:OpenTK.Graphics.Glx.Glx.EXT.ReleaseTexImageEXT - href: OpenTK.Graphics.Glx.Glx.EXT.html#OpenTK_Graphics_Glx_Glx_EXT_ReleaseTexImageEXT_OpenTK_Graphics_Glx_DisplayPtr_OpenTK_Graphics_Glx_GLXDrawable_System_Int32_ - name: ReleaseTexImageEXT - nameWithType: Glx.EXT.ReleaseTexImageEXT - fullName: OpenTK.Graphics.Glx.Glx.EXT.ReleaseTexImageEXT -- uid: OpenTK.Graphics.Glx.Glx.EXT.SwapIntervalEXT* - commentId: Overload:OpenTK.Graphics.Glx.Glx.EXT.SwapIntervalEXT - href: OpenTK.Graphics.Glx.Glx.EXT.html#OpenTK_Graphics_Glx_Glx_EXT_SwapIntervalEXT_OpenTK_Graphics_Glx_DisplayPtr_OpenTK_Graphics_Glx_GLXDrawable_System_Int32_ - name: SwapIntervalEXT - nameWithType: Glx.EXT.SwapIntervalEXT - fullName: OpenTK.Graphics.Glx.Glx.EXT.SwapIntervalEXT -- uid: System.ReadOnlySpan{System.Int32} - commentId: T:System.ReadOnlySpan{System.Int32} - parent: System - definition: System.ReadOnlySpan`1 - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - name: ReadOnlySpan - nameWithType: ReadOnlySpan - fullName: System.ReadOnlySpan - nameWithType.vb: ReadOnlySpan(Of Integer) - fullName.vb: System.ReadOnlySpan(Of Integer) - name.vb: ReadOnlySpan(Of Integer) - spec.csharp: - - uid: System.ReadOnlySpan`1 - name: ReadOnlySpan - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - - name: < - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '>' - spec.vb: - - uid: System.ReadOnlySpan`1 - name: ReadOnlySpan - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - - name: ( - - name: Of - - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) -- uid: System.ReadOnlySpan`1 - commentId: T:System.ReadOnlySpan`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - name: ReadOnlySpan - nameWithType: ReadOnlySpan - fullName: System.ReadOnlySpan - nameWithType.vb: ReadOnlySpan(Of T) - fullName.vb: System.ReadOnlySpan(Of T) - name.vb: ReadOnlySpan(Of T) - spec.csharp: - - uid: System.ReadOnlySpan`1 - name: ReadOnlySpan - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.ReadOnlySpan`1 - name: ReadOnlySpan - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: System.Int32[] - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - name: int[] - nameWithType: int[] - fullName: int[] - nameWithType.vb: Integer() - fullName.vb: Integer() - name.vb: Integer() - spec.csharp: - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '[' - - name: ']' - spec.vb: - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ( - - name: ) -- uid: System.Span{System.Int32} - commentId: T:System.Span{System.Int32} - parent: System - definition: System.Span`1 - href: https://learn.microsoft.com/dotnet/api/system.span-1 - name: Span - nameWithType: Span - fullName: System.Span - nameWithType.vb: Span(Of Integer) - fullName.vb: System.Span(Of Integer) - name.vb: Span(Of Integer) - spec.csharp: - - uid: System.Span`1 - name: Span - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.span-1 - - name: < - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '>' - spec.vb: - - uid: System.Span`1 - name: Span - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.span-1 - - name: ( - - name: Of - - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) -- uid: System.Span`1 - commentId: T:System.Span`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.span-1 - name: Span - nameWithType: Span - fullName: System.Span - nameWithType.vb: Span(Of T) - fullName.vb: System.Span(Of T) - name.vb: Span(Of T) - spec.csharp: - - uid: System.Span`1 - name: Span - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.span-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.Span`1 - name: Span - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.span-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) diff --git a/api/OpenTK.Graphics.Glx.Glx.MESA.yml b/api/OpenTK.Graphics.Glx.Glx.MESA.yml deleted file mode 100644 index 7b1680cc..00000000 --- a/api/OpenTK.Graphics.Glx.Glx.MESA.yml +++ /dev/null @@ -1,1635 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: OpenTK.Graphics.Glx.Glx.MESA - commentId: T:OpenTK.Graphics.Glx.Glx.MESA - id: Glx.MESA - parent: OpenTK.Graphics.Glx - children: - - OpenTK.Graphics.Glx.Glx.MESA.CopySubBufferMESA(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32,System.Int32,System.Int32,System.Int32) - - OpenTK.Graphics.Glx.Glx.MESA.CreateGLXPixmapMESA(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.XVisualInfoPtr,OpenTK.Graphics.Glx.Pixmap,OpenTK.Graphics.Glx.Colormap) - - OpenTK.Graphics.Glx.Glx.MESA.GetAGPOffsetMESA(System.IntPtr) - - OpenTK.Graphics.Glx.Glx.MESA.GetAGPOffsetMESA(System.Void*) - - OpenTK.Graphics.Glx.Glx.MESA.GetAGPOffsetMESA``1(System.ReadOnlySpan{``0}) - - OpenTK.Graphics.Glx.Glx.MESA.GetAGPOffsetMESA``1(``0@) - - OpenTK.Graphics.Glx.Glx.MESA.GetAGPOffsetMESA``1(``0[]) - - OpenTK.Graphics.Glx.Glx.MESA.GetSwapIntervalMESA - - OpenTK.Graphics.Glx.Glx.MESA.QueryCurrentRendererIntegerMESA(System.Int32,System.Span{System.UInt32}) - - OpenTK.Graphics.Glx.Glx.MESA.QueryCurrentRendererIntegerMESA(System.Int32,System.UInt32*) - - OpenTK.Graphics.Glx.Glx.MESA.QueryCurrentRendererIntegerMESA(System.Int32,System.UInt32@) - - OpenTK.Graphics.Glx.Glx.MESA.QueryCurrentRendererIntegerMESA(System.Int32,System.UInt32[]) - - OpenTK.Graphics.Glx.Glx.MESA.QueryCurrentRendererStringMESA(System.Int32) - - OpenTK.Graphics.Glx.Glx.MESA.QueryCurrentRendererStringMESA_(System.Int32) - - OpenTK.Graphics.Glx.Glx.MESA.QueryRendererIntegerMESA(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.Span{System.UInt32}) - - OpenTK.Graphics.Glx.Glx.MESA.QueryRendererIntegerMESA(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.UInt32*) - - OpenTK.Graphics.Glx.Glx.MESA.QueryRendererIntegerMESA(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.UInt32@) - - OpenTK.Graphics.Glx.Glx.MESA.QueryRendererIntegerMESA(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.UInt32[]) - - OpenTK.Graphics.Glx.Glx.MESA.QueryRendererStringMESA(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32) - - OpenTK.Graphics.Glx.Glx.MESA.QueryRendererStringMESA_(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32) - - OpenTK.Graphics.Glx.Glx.MESA.ReleaseBuffersMESA(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable) - - OpenTK.Graphics.Glx.Glx.MESA.Set3DfxModeMESA(System.Int32) - - OpenTK.Graphics.Glx.Glx.MESA.SwapIntervalMESA(System.UInt32) - langs: - - csharp - - vb - name: Glx.MESA - nameWithType: Glx.MESA - fullName: OpenTK.Graphics.Glx.Glx.MESA - type: Class - source: - id: MESA - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 693 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: MESA extensions. - example: [] - syntax: - content: public static class Glx.MESA - content.vb: Public Module Glx.MESA - inheritance: - - System.Object - inheritedMembers: - - System.Object.Equals(System.Object) - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetHashCode - - System.Object.GetType - - System.Object.MemberwiseClone - - System.Object.ReferenceEquals(System.Object,System.Object) - - System.Object.ToString -- uid: OpenTK.Graphics.Glx.Glx.MESA.CopySubBufferMESA(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32,System.Int32,System.Int32,System.Int32) - commentId: M:OpenTK.Graphics.Glx.Glx.MESA.CopySubBufferMESA(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32,System.Int32,System.Int32,System.Int32) - id: CopySubBufferMESA(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32,System.Int32,System.Int32,System.Int32) - parent: OpenTK.Graphics.Glx.Glx.MESA - langs: - - csharp - - vb - name: CopySubBufferMESA(DisplayPtr, GLXDrawable, int, int, int, int) - nameWithType: Glx.MESA.CopySubBufferMESA(DisplayPtr, GLXDrawable, int, int, int, int) - fullName: OpenTK.Graphics.Glx.Glx.MESA.CopySubBufferMESA(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, int, int, int, int) - type: Method - source: - id: CopySubBufferMESA - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs - startLine: 201 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_MESA_copy_sub_buffer] - - [entry point: glXCopySubBufferMESA] - -
- example: [] - syntax: - content: public static void CopySubBufferMESA(DisplayPtr dpy, GLXDrawable drawable, int x, int y, int width, int height) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: drawable - type: OpenTK.Graphics.Glx.GLXDrawable - - id: x - type: System.Int32 - - id: y - type: System.Int32 - - id: width - type: System.Int32 - - id: height - type: System.Int32 - content.vb: Public Shared Sub CopySubBufferMESA(dpy As DisplayPtr, drawable As GLXDrawable, x As Integer, y As Integer, width As Integer, height As Integer) - overload: OpenTK.Graphics.Glx.Glx.MESA.CopySubBufferMESA* - nameWithType.vb: Glx.MESA.CopySubBufferMESA(DisplayPtr, GLXDrawable, Integer, Integer, Integer, Integer) - fullName.vb: OpenTK.Graphics.Glx.Glx.MESA.CopySubBufferMESA(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, Integer, Integer, Integer, Integer) - name.vb: CopySubBufferMESA(DisplayPtr, GLXDrawable, Integer, Integer, Integer, Integer) -- uid: OpenTK.Graphics.Glx.Glx.MESA.CreateGLXPixmapMESA(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.XVisualInfoPtr,OpenTK.Graphics.Glx.Pixmap,OpenTK.Graphics.Glx.Colormap) - commentId: M:OpenTK.Graphics.Glx.Glx.MESA.CreateGLXPixmapMESA(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.XVisualInfoPtr,OpenTK.Graphics.Glx.Pixmap,OpenTK.Graphics.Glx.Colormap) - id: CreateGLXPixmapMESA(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.XVisualInfoPtr,OpenTK.Graphics.Glx.Pixmap,OpenTK.Graphics.Glx.Colormap) - parent: OpenTK.Graphics.Glx.Glx.MESA - langs: - - csharp - - vb - name: CreateGLXPixmapMESA(DisplayPtr, XVisualInfoPtr, Pixmap, Colormap) - nameWithType: Glx.MESA.CreateGLXPixmapMESA(DisplayPtr, XVisualInfoPtr, Pixmap, Colormap) - fullName: OpenTK.Graphics.Glx.Glx.MESA.CreateGLXPixmapMESA(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.XVisualInfoPtr, OpenTK.Graphics.Glx.Pixmap, OpenTK.Graphics.Glx.Colormap) - type: Method - source: - id: CreateGLXPixmapMESA - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs - startLine: 204 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_MESA_pixmap_colormap] - - [entry point: glXCreateGLXPixmapMESA] - -
- example: [] - syntax: - content: public static GLXPixmap CreateGLXPixmapMESA(DisplayPtr dpy, XVisualInfoPtr visual, Pixmap pixmap, Colormap cmap) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: visual - type: OpenTK.Graphics.Glx.XVisualInfoPtr - - id: pixmap - type: OpenTK.Graphics.Glx.Pixmap - - id: cmap - type: OpenTK.Graphics.Glx.Colormap - return: - type: OpenTK.Graphics.Glx.GLXPixmap - content.vb: Public Shared Function CreateGLXPixmapMESA(dpy As DisplayPtr, visual As XVisualInfoPtr, pixmap As Pixmap, cmap As Colormap) As GLXPixmap - overload: OpenTK.Graphics.Glx.Glx.MESA.CreateGLXPixmapMESA* -- uid: OpenTK.Graphics.Glx.Glx.MESA.GetAGPOffsetMESA(System.Void*) - commentId: M:OpenTK.Graphics.Glx.Glx.MESA.GetAGPOffsetMESA(System.Void*) - id: GetAGPOffsetMESA(System.Void*) - parent: OpenTK.Graphics.Glx.Glx.MESA - langs: - - csharp - - vb - name: GetAGPOffsetMESA(void*) - nameWithType: Glx.MESA.GetAGPOffsetMESA(void*) - fullName: OpenTK.Graphics.Glx.Glx.MESA.GetAGPOffsetMESA(void*) - type: Method - source: - id: GetAGPOffsetMESA - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs - startLine: 207 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_MESA_agp_offset] - - [entry point: glXGetAGPOffsetMESA] - -
- example: [] - syntax: - content: public static uint GetAGPOffsetMESA(void* pointer) - parameters: - - id: pointer - type: System.Void* - return: - type: System.UInt32 - content.vb: Public Shared Function GetAGPOffsetMESA(pointer As Void*) As UInteger - overload: OpenTK.Graphics.Glx.Glx.MESA.GetAGPOffsetMESA* - nameWithType.vb: Glx.MESA.GetAGPOffsetMESA(Void*) - fullName.vb: OpenTK.Graphics.Glx.Glx.MESA.GetAGPOffsetMESA(Void*) - name.vb: GetAGPOffsetMESA(Void*) -- uid: OpenTK.Graphics.Glx.Glx.MESA.GetSwapIntervalMESA - commentId: M:OpenTK.Graphics.Glx.Glx.MESA.GetSwapIntervalMESA - id: GetSwapIntervalMESA - parent: OpenTK.Graphics.Glx.Glx.MESA - langs: - - csharp - - vb - name: GetSwapIntervalMESA() - nameWithType: Glx.MESA.GetSwapIntervalMESA() - fullName: OpenTK.Graphics.Glx.Glx.MESA.GetSwapIntervalMESA() - type: Method - source: - id: GetSwapIntervalMESA - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs - startLine: 210 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_MESA_swap_control] - - [entry point: glXGetSwapIntervalMESA] - -
- example: [] - syntax: - content: public static int GetSwapIntervalMESA() - return: - type: System.Int32 - content.vb: Public Shared Function GetSwapIntervalMESA() As Integer - overload: OpenTK.Graphics.Glx.Glx.MESA.GetSwapIntervalMESA* -- uid: OpenTK.Graphics.Glx.Glx.MESA.QueryCurrentRendererIntegerMESA(System.Int32,System.UInt32*) - commentId: M:OpenTK.Graphics.Glx.Glx.MESA.QueryCurrentRendererIntegerMESA(System.Int32,System.UInt32*) - id: QueryCurrentRendererIntegerMESA(System.Int32,System.UInt32*) - parent: OpenTK.Graphics.Glx.Glx.MESA - langs: - - csharp - - vb - name: QueryCurrentRendererIntegerMESA(int, uint*) - nameWithType: Glx.MESA.QueryCurrentRendererIntegerMESA(int, uint*) - fullName: OpenTK.Graphics.Glx.Glx.MESA.QueryCurrentRendererIntegerMESA(int, uint*) - type: Method - source: - id: QueryCurrentRendererIntegerMESA - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs - startLine: 213 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_MESA_query_renderer] - - [entry point: glXQueryCurrentRendererIntegerMESA] - -
- example: [] - syntax: - content: public static bool QueryCurrentRendererIntegerMESA(int attribute, uint* value) - parameters: - - id: attribute - type: System.Int32 - - id: value - type: System.UInt32* - return: - type: System.Boolean - content.vb: Public Shared Function QueryCurrentRendererIntegerMESA(attribute As Integer, value As UInteger*) As Boolean - overload: OpenTK.Graphics.Glx.Glx.MESA.QueryCurrentRendererIntegerMESA* - nameWithType.vb: Glx.MESA.QueryCurrentRendererIntegerMESA(Integer, UInteger*) - fullName.vb: OpenTK.Graphics.Glx.Glx.MESA.QueryCurrentRendererIntegerMESA(Integer, UInteger*) - name.vb: QueryCurrentRendererIntegerMESA(Integer, UInteger*) -- uid: OpenTK.Graphics.Glx.Glx.MESA.QueryCurrentRendererStringMESA_(System.Int32) - commentId: M:OpenTK.Graphics.Glx.Glx.MESA.QueryCurrentRendererStringMESA_(System.Int32) - id: QueryCurrentRendererStringMESA_(System.Int32) - parent: OpenTK.Graphics.Glx.Glx.MESA - langs: - - csharp - - vb - name: QueryCurrentRendererStringMESA_(int) - nameWithType: Glx.MESA.QueryCurrentRendererStringMESA_(int) - fullName: OpenTK.Graphics.Glx.Glx.MESA.QueryCurrentRendererStringMESA_(int) - type: Method - source: - id: QueryCurrentRendererStringMESA_ - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs - startLine: 216 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_MESA_query_renderer] - - [entry point: glXQueryCurrentRendererStringMESA] - -
- example: [] - syntax: - content: public static byte* QueryCurrentRendererStringMESA_(int attribute) - parameters: - - id: attribute - type: System.Int32 - return: - type: System.Byte* - content.vb: Public Shared Function QueryCurrentRendererStringMESA_(attribute As Integer) As Byte* - overload: OpenTK.Graphics.Glx.Glx.MESA.QueryCurrentRendererStringMESA_* - nameWithType.vb: Glx.MESA.QueryCurrentRendererStringMESA_(Integer) - fullName.vb: OpenTK.Graphics.Glx.Glx.MESA.QueryCurrentRendererStringMESA_(Integer) - name.vb: QueryCurrentRendererStringMESA_(Integer) -- uid: OpenTK.Graphics.Glx.Glx.MESA.QueryRendererIntegerMESA(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.UInt32*) - commentId: M:OpenTK.Graphics.Glx.Glx.MESA.QueryRendererIntegerMESA(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.UInt32*) - id: QueryRendererIntegerMESA(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.UInt32*) - parent: OpenTK.Graphics.Glx.Glx.MESA - langs: - - csharp - - vb - name: QueryRendererIntegerMESA(DisplayPtr, int, int, int, uint*) - nameWithType: Glx.MESA.QueryRendererIntegerMESA(DisplayPtr, int, int, int, uint*) - fullName: OpenTK.Graphics.Glx.Glx.MESA.QueryRendererIntegerMESA(OpenTK.Graphics.Glx.DisplayPtr, int, int, int, uint*) - type: Method - source: - id: QueryRendererIntegerMESA - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs - startLine: 219 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_MESA_query_renderer] - - [entry point: glXQueryRendererIntegerMESA] - -
- example: [] - syntax: - content: public static bool QueryRendererIntegerMESA(DisplayPtr dpy, int screen, int renderer, int attribute, uint* value) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: screen - type: System.Int32 - - id: renderer - type: System.Int32 - - id: attribute - type: System.Int32 - - id: value - type: System.UInt32* - return: - type: System.Boolean - content.vb: Public Shared Function QueryRendererIntegerMESA(dpy As DisplayPtr, screen As Integer, renderer As Integer, attribute As Integer, value As UInteger*) As Boolean - overload: OpenTK.Graphics.Glx.Glx.MESA.QueryRendererIntegerMESA* - nameWithType.vb: Glx.MESA.QueryRendererIntegerMESA(DisplayPtr, Integer, Integer, Integer, UInteger*) - fullName.vb: OpenTK.Graphics.Glx.Glx.MESA.QueryRendererIntegerMESA(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer, Integer, UInteger*) - name.vb: QueryRendererIntegerMESA(DisplayPtr, Integer, Integer, Integer, UInteger*) -- uid: OpenTK.Graphics.Glx.Glx.MESA.QueryRendererStringMESA_(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32) - commentId: M:OpenTK.Graphics.Glx.Glx.MESA.QueryRendererStringMESA_(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32) - id: QueryRendererStringMESA_(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32) - parent: OpenTK.Graphics.Glx.Glx.MESA - langs: - - csharp - - vb - name: QueryRendererStringMESA_(DisplayPtr, int, int, int) - nameWithType: Glx.MESA.QueryRendererStringMESA_(DisplayPtr, int, int, int) - fullName: OpenTK.Graphics.Glx.Glx.MESA.QueryRendererStringMESA_(OpenTK.Graphics.Glx.DisplayPtr, int, int, int) - type: Method - source: - id: QueryRendererStringMESA_ - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs - startLine: 222 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_MESA_query_renderer] - - [entry point: glXQueryRendererStringMESA] - -
- example: [] - syntax: - content: public static byte* QueryRendererStringMESA_(DisplayPtr dpy, int screen, int renderer, int attribute) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: screen - type: System.Int32 - - id: renderer - type: System.Int32 - - id: attribute - type: System.Int32 - return: - type: System.Byte* - content.vb: Public Shared Function QueryRendererStringMESA_(dpy As DisplayPtr, screen As Integer, renderer As Integer, attribute As Integer) As Byte* - overload: OpenTK.Graphics.Glx.Glx.MESA.QueryRendererStringMESA_* - nameWithType.vb: Glx.MESA.QueryRendererStringMESA_(DisplayPtr, Integer, Integer, Integer) - fullName.vb: OpenTK.Graphics.Glx.Glx.MESA.QueryRendererStringMESA_(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer, Integer) - name.vb: QueryRendererStringMESA_(DisplayPtr, Integer, Integer, Integer) -- uid: OpenTK.Graphics.Glx.Glx.MESA.ReleaseBuffersMESA(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable) - commentId: M:OpenTK.Graphics.Glx.Glx.MESA.ReleaseBuffersMESA(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable) - id: ReleaseBuffersMESA(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable) - parent: OpenTK.Graphics.Glx.Glx.MESA - langs: - - csharp - - vb - name: ReleaseBuffersMESA(DisplayPtr, GLXDrawable) - nameWithType: Glx.MESA.ReleaseBuffersMESA(DisplayPtr, GLXDrawable) - fullName: OpenTK.Graphics.Glx.Glx.MESA.ReleaseBuffersMESA(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable) - type: Method - source: - id: ReleaseBuffersMESA - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs - startLine: 225 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_MESA_release_buffers] - - [entry point: glXReleaseBuffersMESA] - -
- example: [] - syntax: - content: public static bool ReleaseBuffersMESA(DisplayPtr dpy, GLXDrawable drawable) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: drawable - type: OpenTK.Graphics.Glx.GLXDrawable - return: - type: System.Boolean - content.vb: Public Shared Function ReleaseBuffersMESA(dpy As DisplayPtr, drawable As GLXDrawable) As Boolean - overload: OpenTK.Graphics.Glx.Glx.MESA.ReleaseBuffersMESA* -- uid: OpenTK.Graphics.Glx.Glx.MESA.Set3DfxModeMESA(System.Int32) - commentId: M:OpenTK.Graphics.Glx.Glx.MESA.Set3DfxModeMESA(System.Int32) - id: Set3DfxModeMESA(System.Int32) - parent: OpenTK.Graphics.Glx.Glx.MESA - langs: - - csharp - - vb - name: Set3DfxModeMESA(int) - nameWithType: Glx.MESA.Set3DfxModeMESA(int) - fullName: OpenTK.Graphics.Glx.Glx.MESA.Set3DfxModeMESA(int) - type: Method - source: - id: Set3DfxModeMESA - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs - startLine: 228 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_MESA_set_3dfx_mode] - - [entry point: glXSet3DfxModeMESA] - -
- example: [] - syntax: - content: public static bool Set3DfxModeMESA(int mode) - parameters: - - id: mode - type: System.Int32 - return: - type: System.Boolean - content.vb: Public Shared Function Set3DfxModeMESA(mode As Integer) As Boolean - overload: OpenTK.Graphics.Glx.Glx.MESA.Set3DfxModeMESA* - nameWithType.vb: Glx.MESA.Set3DfxModeMESA(Integer) - fullName.vb: OpenTK.Graphics.Glx.Glx.MESA.Set3DfxModeMESA(Integer) - name.vb: Set3DfxModeMESA(Integer) -- uid: OpenTK.Graphics.Glx.Glx.MESA.SwapIntervalMESA(System.UInt32) - commentId: M:OpenTK.Graphics.Glx.Glx.MESA.SwapIntervalMESA(System.UInt32) - id: SwapIntervalMESA(System.UInt32) - parent: OpenTK.Graphics.Glx.Glx.MESA - langs: - - csharp - - vb - name: SwapIntervalMESA(uint) - nameWithType: Glx.MESA.SwapIntervalMESA(uint) - fullName: OpenTK.Graphics.Glx.Glx.MESA.SwapIntervalMESA(uint) - type: Method - source: - id: SwapIntervalMESA - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs - startLine: 231 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_MESA_swap_control] - - [entry point: glXSwapIntervalMESA] - -
- example: [] - syntax: - content: public static int SwapIntervalMESA(uint interval) - parameters: - - id: interval - type: System.UInt32 - return: - type: System.Int32 - content.vb: Public Shared Function SwapIntervalMESA(interval As UInteger) As Integer - overload: OpenTK.Graphics.Glx.Glx.MESA.SwapIntervalMESA* - nameWithType.vb: Glx.MESA.SwapIntervalMESA(UInteger) - fullName.vb: OpenTK.Graphics.Glx.Glx.MESA.SwapIntervalMESA(UInteger) - name.vb: SwapIntervalMESA(UInteger) -- uid: OpenTK.Graphics.Glx.Glx.MESA.GetAGPOffsetMESA(System.IntPtr) - commentId: M:OpenTK.Graphics.Glx.Glx.MESA.GetAGPOffsetMESA(System.IntPtr) - id: GetAGPOffsetMESA(System.IntPtr) - parent: OpenTK.Graphics.Glx.Glx.MESA - langs: - - csharp - - vb - name: GetAGPOffsetMESA(nint) - nameWithType: Glx.MESA.GetAGPOffsetMESA(nint) - fullName: OpenTK.Graphics.Glx.Glx.MESA.GetAGPOffsetMESA(nint) - type: Method - source: - id: GetAGPOffsetMESA - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 696 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_MESA_agp_offset] - - [entry point: glXGetAGPOffsetMESA] - -
- example: [] - syntax: - content: public static uint GetAGPOffsetMESA(nint pointer) - parameters: - - id: pointer - type: System.IntPtr - return: - type: System.UInt32 - content.vb: Public Shared Function GetAGPOffsetMESA(pointer As IntPtr) As UInteger - overload: OpenTK.Graphics.Glx.Glx.MESA.GetAGPOffsetMESA* - nameWithType.vb: Glx.MESA.GetAGPOffsetMESA(IntPtr) - fullName.vb: OpenTK.Graphics.Glx.Glx.MESA.GetAGPOffsetMESA(System.IntPtr) - name.vb: GetAGPOffsetMESA(IntPtr) -- uid: OpenTK.Graphics.Glx.Glx.MESA.GetAGPOffsetMESA``1(System.ReadOnlySpan{``0}) - commentId: M:OpenTK.Graphics.Glx.Glx.MESA.GetAGPOffsetMESA``1(System.ReadOnlySpan{``0}) - id: GetAGPOffsetMESA``1(System.ReadOnlySpan{``0}) - parent: OpenTK.Graphics.Glx.Glx.MESA - langs: - - csharp - - vb - name: GetAGPOffsetMESA(ReadOnlySpan) - nameWithType: Glx.MESA.GetAGPOffsetMESA(ReadOnlySpan) - fullName: OpenTK.Graphics.Glx.Glx.MESA.GetAGPOffsetMESA(System.ReadOnlySpan) - type: Method - source: - id: GetAGPOffsetMESA - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 704 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_MESA_agp_offset] - - [entry point: glXGetAGPOffsetMESA] - -
- example: [] - syntax: - content: 'public static uint GetAGPOffsetMESA(ReadOnlySpan pointer) where T1 : unmanaged' - parameters: - - id: pointer - type: System.ReadOnlySpan{{T1}} - typeParameters: - - id: T1 - return: - type: System.UInt32 - content.vb: Public Shared Function GetAGPOffsetMESA(Of T1 As Structure)(pointer As ReadOnlySpan(Of T1)) As UInteger - overload: OpenTK.Graphics.Glx.Glx.MESA.GetAGPOffsetMESA* - nameWithType.vb: Glx.MESA.GetAGPOffsetMESA(Of T1)(ReadOnlySpan(Of T1)) - fullName.vb: OpenTK.Graphics.Glx.Glx.MESA.GetAGPOffsetMESA(Of T1)(System.ReadOnlySpan(Of T1)) - name.vb: GetAGPOffsetMESA(Of T1)(ReadOnlySpan(Of T1)) -- uid: OpenTK.Graphics.Glx.Glx.MESA.GetAGPOffsetMESA``1(``0[]) - commentId: M:OpenTK.Graphics.Glx.Glx.MESA.GetAGPOffsetMESA``1(``0[]) - id: GetAGPOffsetMESA``1(``0[]) - parent: OpenTK.Graphics.Glx.Glx.MESA - langs: - - csharp - - vb - name: GetAGPOffsetMESA(T1[]) - nameWithType: Glx.MESA.GetAGPOffsetMESA(T1[]) - fullName: OpenTK.Graphics.Glx.Glx.MESA.GetAGPOffsetMESA(T1[]) - type: Method - source: - id: GetAGPOffsetMESA - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 715 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_MESA_agp_offset] - - [entry point: glXGetAGPOffsetMESA] - -
- example: [] - syntax: - content: 'public static uint GetAGPOffsetMESA(T1[] pointer) where T1 : unmanaged' - parameters: - - id: pointer - type: '{T1}[]' - typeParameters: - - id: T1 - return: - type: System.UInt32 - content.vb: Public Shared Function GetAGPOffsetMESA(Of T1 As Structure)(pointer As T1()) As UInteger - overload: OpenTK.Graphics.Glx.Glx.MESA.GetAGPOffsetMESA* - nameWithType.vb: Glx.MESA.GetAGPOffsetMESA(Of T1)(T1()) - fullName.vb: OpenTK.Graphics.Glx.Glx.MESA.GetAGPOffsetMESA(Of T1)(T1()) - name.vb: GetAGPOffsetMESA(Of T1)(T1()) -- uid: OpenTK.Graphics.Glx.Glx.MESA.GetAGPOffsetMESA``1(``0@) - commentId: M:OpenTK.Graphics.Glx.Glx.MESA.GetAGPOffsetMESA``1(``0@) - id: GetAGPOffsetMESA``1(``0@) - parent: OpenTK.Graphics.Glx.Glx.MESA - langs: - - csharp - - vb - name: GetAGPOffsetMESA(in T1) - nameWithType: Glx.MESA.GetAGPOffsetMESA(in T1) - fullName: OpenTK.Graphics.Glx.Glx.MESA.GetAGPOffsetMESA(in T1) - type: Method - source: - id: GetAGPOffsetMESA - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 726 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_MESA_agp_offset] - - [entry point: glXGetAGPOffsetMESA] - -
- example: [] - syntax: - content: 'public static uint GetAGPOffsetMESA(in T1 pointer) where T1 : unmanaged' - parameters: - - id: pointer - type: '{T1}' - typeParameters: - - id: T1 - return: - type: System.UInt32 - content.vb: Public Shared Function GetAGPOffsetMESA(Of T1 As Structure)(pointer As T1) As UInteger - overload: OpenTK.Graphics.Glx.Glx.MESA.GetAGPOffsetMESA* - nameWithType.vb: Glx.MESA.GetAGPOffsetMESA(Of T1)(T1) - fullName.vb: OpenTK.Graphics.Glx.Glx.MESA.GetAGPOffsetMESA(Of T1)(T1) - name.vb: GetAGPOffsetMESA(Of T1)(T1) -- uid: OpenTK.Graphics.Glx.Glx.MESA.QueryCurrentRendererIntegerMESA(System.Int32,System.Span{System.UInt32}) - commentId: M:OpenTK.Graphics.Glx.Glx.MESA.QueryCurrentRendererIntegerMESA(System.Int32,System.Span{System.UInt32}) - id: QueryCurrentRendererIntegerMESA(System.Int32,System.Span{System.UInt32}) - parent: OpenTK.Graphics.Glx.Glx.MESA - langs: - - csharp - - vb - name: QueryCurrentRendererIntegerMESA(int, Span) - nameWithType: Glx.MESA.QueryCurrentRendererIntegerMESA(int, Span) - fullName: OpenTK.Graphics.Glx.Glx.MESA.QueryCurrentRendererIntegerMESA(int, System.Span) - type: Method - source: - id: QueryCurrentRendererIntegerMESA - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 737 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_MESA_query_renderer] - - [entry point: glXQueryCurrentRendererIntegerMESA] - -
- example: [] - syntax: - content: public static bool QueryCurrentRendererIntegerMESA(int attribute, Span value) - parameters: - - id: attribute - type: System.Int32 - - id: value - type: System.Span{System.UInt32} - return: - type: System.Boolean - content.vb: Public Shared Function QueryCurrentRendererIntegerMESA(attribute As Integer, value As Span(Of UInteger)) As Boolean - overload: OpenTK.Graphics.Glx.Glx.MESA.QueryCurrentRendererIntegerMESA* - nameWithType.vb: Glx.MESA.QueryCurrentRendererIntegerMESA(Integer, Span(Of UInteger)) - fullName.vb: OpenTK.Graphics.Glx.Glx.MESA.QueryCurrentRendererIntegerMESA(Integer, System.Span(Of UInteger)) - name.vb: QueryCurrentRendererIntegerMESA(Integer, Span(Of UInteger)) -- uid: OpenTK.Graphics.Glx.Glx.MESA.QueryCurrentRendererIntegerMESA(System.Int32,System.UInt32[]) - commentId: M:OpenTK.Graphics.Glx.Glx.MESA.QueryCurrentRendererIntegerMESA(System.Int32,System.UInt32[]) - id: QueryCurrentRendererIntegerMESA(System.Int32,System.UInt32[]) - parent: OpenTK.Graphics.Glx.Glx.MESA - langs: - - csharp - - vb - name: QueryCurrentRendererIntegerMESA(int, uint[]) - nameWithType: Glx.MESA.QueryCurrentRendererIntegerMESA(int, uint[]) - fullName: OpenTK.Graphics.Glx.Glx.MESA.QueryCurrentRendererIntegerMESA(int, uint[]) - type: Method - source: - id: QueryCurrentRendererIntegerMESA - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 747 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_MESA_query_renderer] - - [entry point: glXQueryCurrentRendererIntegerMESA] - -
- example: [] - syntax: - content: public static bool QueryCurrentRendererIntegerMESA(int attribute, uint[] value) - parameters: - - id: attribute - type: System.Int32 - - id: value - type: System.UInt32[] - return: - type: System.Boolean - content.vb: Public Shared Function QueryCurrentRendererIntegerMESA(attribute As Integer, value As UInteger()) As Boolean - overload: OpenTK.Graphics.Glx.Glx.MESA.QueryCurrentRendererIntegerMESA* - nameWithType.vb: Glx.MESA.QueryCurrentRendererIntegerMESA(Integer, UInteger()) - fullName.vb: OpenTK.Graphics.Glx.Glx.MESA.QueryCurrentRendererIntegerMESA(Integer, UInteger()) - name.vb: QueryCurrentRendererIntegerMESA(Integer, UInteger()) -- uid: OpenTK.Graphics.Glx.Glx.MESA.QueryCurrentRendererIntegerMESA(System.Int32,System.UInt32@) - commentId: M:OpenTK.Graphics.Glx.Glx.MESA.QueryCurrentRendererIntegerMESA(System.Int32,System.UInt32@) - id: QueryCurrentRendererIntegerMESA(System.Int32,System.UInt32@) - parent: OpenTK.Graphics.Glx.Glx.MESA - langs: - - csharp - - vb - name: QueryCurrentRendererIntegerMESA(int, ref uint) - nameWithType: Glx.MESA.QueryCurrentRendererIntegerMESA(int, ref uint) - fullName: OpenTK.Graphics.Glx.Glx.MESA.QueryCurrentRendererIntegerMESA(int, ref uint) - type: Method - source: - id: QueryCurrentRendererIntegerMESA - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 757 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_MESA_query_renderer] - - [entry point: glXQueryCurrentRendererIntegerMESA] - -
- example: [] - syntax: - content: public static bool QueryCurrentRendererIntegerMESA(int attribute, ref uint value) - parameters: - - id: attribute - type: System.Int32 - - id: value - type: System.UInt32 - return: - type: System.Boolean - content.vb: Public Shared Function QueryCurrentRendererIntegerMESA(attribute As Integer, value As UInteger) As Boolean - overload: OpenTK.Graphics.Glx.Glx.MESA.QueryCurrentRendererIntegerMESA* - nameWithType.vb: Glx.MESA.QueryCurrentRendererIntegerMESA(Integer, UInteger) - fullName.vb: OpenTK.Graphics.Glx.Glx.MESA.QueryCurrentRendererIntegerMESA(Integer, UInteger) - name.vb: QueryCurrentRendererIntegerMESA(Integer, UInteger) -- uid: OpenTK.Graphics.Glx.Glx.MESA.QueryCurrentRendererStringMESA(System.Int32) - commentId: M:OpenTK.Graphics.Glx.Glx.MESA.QueryCurrentRendererStringMESA(System.Int32) - id: QueryCurrentRendererStringMESA(System.Int32) - parent: OpenTK.Graphics.Glx.Glx.MESA - langs: - - csharp - - vb - name: QueryCurrentRendererStringMESA(int) - nameWithType: Glx.MESA.QueryCurrentRendererStringMESA(int) - fullName: OpenTK.Graphics.Glx.Glx.MESA.QueryCurrentRendererStringMESA(int) - type: Method - source: - id: QueryCurrentRendererStringMESA - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 767 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - example: [] - syntax: - content: public static string? QueryCurrentRendererStringMESA(int attribute) - parameters: - - id: attribute - type: System.Int32 - return: - type: System.String - content.vb: Public Shared Function QueryCurrentRendererStringMESA(attribute As Integer) As String - overload: OpenTK.Graphics.Glx.Glx.MESA.QueryCurrentRendererStringMESA* - nameWithType.vb: Glx.MESA.QueryCurrentRendererStringMESA(Integer) - fullName.vb: OpenTK.Graphics.Glx.Glx.MESA.QueryCurrentRendererStringMESA(Integer) - name.vb: QueryCurrentRendererStringMESA(Integer) -- uid: OpenTK.Graphics.Glx.Glx.MESA.QueryRendererIntegerMESA(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.Span{System.UInt32}) - commentId: M:OpenTK.Graphics.Glx.Glx.MESA.QueryRendererIntegerMESA(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.Span{System.UInt32}) - id: QueryRendererIntegerMESA(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.Span{System.UInt32}) - parent: OpenTK.Graphics.Glx.Glx.MESA - langs: - - csharp - - vb - name: QueryRendererIntegerMESA(DisplayPtr, int, int, int, Span) - nameWithType: Glx.MESA.QueryRendererIntegerMESA(DisplayPtr, int, int, int, Span) - fullName: OpenTK.Graphics.Glx.Glx.MESA.QueryRendererIntegerMESA(OpenTK.Graphics.Glx.DisplayPtr, int, int, int, System.Span) - type: Method - source: - id: QueryRendererIntegerMESA - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 776 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_MESA_query_renderer] - - [entry point: glXQueryRendererIntegerMESA] - -
- example: [] - syntax: - content: public static bool QueryRendererIntegerMESA(DisplayPtr dpy, int screen, int renderer, int attribute, Span value) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: screen - type: System.Int32 - - id: renderer - type: System.Int32 - - id: attribute - type: System.Int32 - - id: value - type: System.Span{System.UInt32} - return: - type: System.Boolean - content.vb: Public Shared Function QueryRendererIntegerMESA(dpy As DisplayPtr, screen As Integer, renderer As Integer, attribute As Integer, value As Span(Of UInteger)) As Boolean - overload: OpenTK.Graphics.Glx.Glx.MESA.QueryRendererIntegerMESA* - nameWithType.vb: Glx.MESA.QueryRendererIntegerMESA(DisplayPtr, Integer, Integer, Integer, Span(Of UInteger)) - fullName.vb: OpenTK.Graphics.Glx.Glx.MESA.QueryRendererIntegerMESA(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer, Integer, System.Span(Of UInteger)) - name.vb: QueryRendererIntegerMESA(DisplayPtr, Integer, Integer, Integer, Span(Of UInteger)) -- uid: OpenTK.Graphics.Glx.Glx.MESA.QueryRendererIntegerMESA(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.UInt32[]) - commentId: M:OpenTK.Graphics.Glx.Glx.MESA.QueryRendererIntegerMESA(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.UInt32[]) - id: QueryRendererIntegerMESA(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.UInt32[]) - parent: OpenTK.Graphics.Glx.Glx.MESA - langs: - - csharp - - vb - name: QueryRendererIntegerMESA(DisplayPtr, int, int, int, uint[]) - nameWithType: Glx.MESA.QueryRendererIntegerMESA(DisplayPtr, int, int, int, uint[]) - fullName: OpenTK.Graphics.Glx.Glx.MESA.QueryRendererIntegerMESA(OpenTK.Graphics.Glx.DisplayPtr, int, int, int, uint[]) - type: Method - source: - id: QueryRendererIntegerMESA - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 786 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_MESA_query_renderer] - - [entry point: glXQueryRendererIntegerMESA] - -
- example: [] - syntax: - content: public static bool QueryRendererIntegerMESA(DisplayPtr dpy, int screen, int renderer, int attribute, uint[] value) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: screen - type: System.Int32 - - id: renderer - type: System.Int32 - - id: attribute - type: System.Int32 - - id: value - type: System.UInt32[] - return: - type: System.Boolean - content.vb: Public Shared Function QueryRendererIntegerMESA(dpy As DisplayPtr, screen As Integer, renderer As Integer, attribute As Integer, value As UInteger()) As Boolean - overload: OpenTK.Graphics.Glx.Glx.MESA.QueryRendererIntegerMESA* - nameWithType.vb: Glx.MESA.QueryRendererIntegerMESA(DisplayPtr, Integer, Integer, Integer, UInteger()) - fullName.vb: OpenTK.Graphics.Glx.Glx.MESA.QueryRendererIntegerMESA(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer, Integer, UInteger()) - name.vb: QueryRendererIntegerMESA(DisplayPtr, Integer, Integer, Integer, UInteger()) -- uid: OpenTK.Graphics.Glx.Glx.MESA.QueryRendererIntegerMESA(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.UInt32@) - commentId: M:OpenTK.Graphics.Glx.Glx.MESA.QueryRendererIntegerMESA(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.UInt32@) - id: QueryRendererIntegerMESA(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.UInt32@) - parent: OpenTK.Graphics.Glx.Glx.MESA - langs: - - csharp - - vb - name: QueryRendererIntegerMESA(DisplayPtr, int, int, int, ref uint) - nameWithType: Glx.MESA.QueryRendererIntegerMESA(DisplayPtr, int, int, int, ref uint) - fullName: OpenTK.Graphics.Glx.Glx.MESA.QueryRendererIntegerMESA(OpenTK.Graphics.Glx.DisplayPtr, int, int, int, ref uint) - type: Method - source: - id: QueryRendererIntegerMESA - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 796 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_MESA_query_renderer] - - [entry point: glXQueryRendererIntegerMESA] - -
- example: [] - syntax: - content: public static bool QueryRendererIntegerMESA(DisplayPtr dpy, int screen, int renderer, int attribute, ref uint value) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: screen - type: System.Int32 - - id: renderer - type: System.Int32 - - id: attribute - type: System.Int32 - - id: value - type: System.UInt32 - return: - type: System.Boolean - content.vb: Public Shared Function QueryRendererIntegerMESA(dpy As DisplayPtr, screen As Integer, renderer As Integer, attribute As Integer, value As UInteger) As Boolean - overload: OpenTK.Graphics.Glx.Glx.MESA.QueryRendererIntegerMESA* - nameWithType.vb: Glx.MESA.QueryRendererIntegerMESA(DisplayPtr, Integer, Integer, Integer, UInteger) - fullName.vb: OpenTK.Graphics.Glx.Glx.MESA.QueryRendererIntegerMESA(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer, Integer, UInteger) - name.vb: QueryRendererIntegerMESA(DisplayPtr, Integer, Integer, Integer, UInteger) -- uid: OpenTK.Graphics.Glx.Glx.MESA.QueryRendererStringMESA(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32) - commentId: M:OpenTK.Graphics.Glx.Glx.MESA.QueryRendererStringMESA(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32) - id: QueryRendererStringMESA(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32) - parent: OpenTK.Graphics.Glx.Glx.MESA - langs: - - csharp - - vb - name: QueryRendererStringMESA(DisplayPtr, int, int, int) - nameWithType: Glx.MESA.QueryRendererStringMESA(DisplayPtr, int, int, int) - fullName: OpenTK.Graphics.Glx.Glx.MESA.QueryRendererStringMESA(OpenTK.Graphics.Glx.DisplayPtr, int, int, int) - type: Method - source: - id: QueryRendererStringMESA - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 806 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - example: [] - syntax: - content: public static string? QueryRendererStringMESA(DisplayPtr dpy, int screen, int renderer, int attribute) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: screen - type: System.Int32 - - id: renderer - type: System.Int32 - - id: attribute - type: System.Int32 - return: - type: System.String - content.vb: Public Shared Function QueryRendererStringMESA(dpy As DisplayPtr, screen As Integer, renderer As Integer, attribute As Integer) As String - overload: OpenTK.Graphics.Glx.Glx.MESA.QueryRendererStringMESA* - nameWithType.vb: Glx.MESA.QueryRendererStringMESA(DisplayPtr, Integer, Integer, Integer) - fullName.vb: OpenTK.Graphics.Glx.Glx.MESA.QueryRendererStringMESA(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer, Integer) - name.vb: QueryRendererStringMESA(DisplayPtr, Integer, Integer, Integer) -references: -- uid: OpenTK.Graphics.Glx - commentId: N:OpenTK.Graphics.Glx - href: OpenTK.html - name: OpenTK.Graphics.Glx - nameWithType: OpenTK.Graphics.Glx - fullName: OpenTK.Graphics.Glx - spec.csharp: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Glx - name: Glx - href: OpenTK.Graphics.Glx.html - spec.vb: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Glx - name: Glx - href: OpenTK.Graphics.Glx.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: System.Object.Equals(System.Object) - commentId: M:System.Object.Equals(System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - name: Equals(object) - nameWithType: object.Equals(object) - fullName: object.Equals(object) - nameWithType.vb: Object.Equals(Object) - fullName.vb: Object.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetHashCode - commentId: M:System.Object.GetHashCode - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - name: GetHashCode() - nameWithType: object.GetHashCode() - fullName: object.GetHashCode() - nameWithType.vb: Object.GetHashCode() - fullName.vb: Object.GetHashCode() - spec.csharp: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.MemberwiseClone - commentId: M:System.Object.MemberwiseClone - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - name: MemberwiseClone() - nameWithType: object.MemberwiseClone() - fullName: object.MemberwiseClone() - nameWithType.vb: Object.MemberwiseClone() - fullName.vb: Object.MemberwiseClone() - spec.csharp: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) - spec.vb: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.ToString - commentId: M:System.Object.ToString - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - name: ToString() - nameWithType: object.ToString() - fullName: object.ToString() - nameWithType.vb: Object.ToString() - fullName.vb: Object.ToString() - spec.csharp: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) - spec.vb: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: OpenTK.Graphics.Glx.Glx.MESA.CopySubBufferMESA* - commentId: Overload:OpenTK.Graphics.Glx.Glx.MESA.CopySubBufferMESA - href: OpenTK.Graphics.Glx.Glx.MESA.html#OpenTK_Graphics_Glx_Glx_MESA_CopySubBufferMESA_OpenTK_Graphics_Glx_DisplayPtr_OpenTK_Graphics_Glx_GLXDrawable_System_Int32_System_Int32_System_Int32_System_Int32_ - name: CopySubBufferMESA - nameWithType: Glx.MESA.CopySubBufferMESA - fullName: OpenTK.Graphics.Glx.Glx.MESA.CopySubBufferMESA -- uid: OpenTK.Graphics.Glx.DisplayPtr - commentId: T:OpenTK.Graphics.Glx.DisplayPtr - parent: OpenTK.Graphics.Glx - href: OpenTK.Graphics.Glx.DisplayPtr.html - name: DisplayPtr - nameWithType: DisplayPtr - fullName: OpenTK.Graphics.Glx.DisplayPtr -- uid: OpenTK.Graphics.Glx.GLXDrawable - commentId: T:OpenTK.Graphics.Glx.GLXDrawable - parent: OpenTK.Graphics.Glx - href: OpenTK.Graphics.Glx.GLXDrawable.html - name: GLXDrawable - nameWithType: GLXDrawable - fullName: OpenTK.Graphics.Glx.GLXDrawable -- uid: System.Int32 - commentId: T:System.Int32 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - name: int - nameWithType: int - fullName: int - nameWithType.vb: Integer - fullName.vb: Integer - name.vb: Integer -- uid: OpenTK.Graphics.Glx.Glx.MESA.CreateGLXPixmapMESA* - commentId: Overload:OpenTK.Graphics.Glx.Glx.MESA.CreateGLXPixmapMESA - href: OpenTK.Graphics.Glx.Glx.MESA.html#OpenTK_Graphics_Glx_Glx_MESA_CreateGLXPixmapMESA_OpenTK_Graphics_Glx_DisplayPtr_OpenTK_Graphics_Glx_XVisualInfoPtr_OpenTK_Graphics_Glx_Pixmap_OpenTK_Graphics_Glx_Colormap_ - name: CreateGLXPixmapMESA - nameWithType: Glx.MESA.CreateGLXPixmapMESA - fullName: OpenTK.Graphics.Glx.Glx.MESA.CreateGLXPixmapMESA -- uid: OpenTK.Graphics.Glx.XVisualInfoPtr - commentId: T:OpenTK.Graphics.Glx.XVisualInfoPtr - parent: OpenTK.Graphics.Glx - href: OpenTK.Graphics.Glx.XVisualInfoPtr.html - name: XVisualInfoPtr - nameWithType: XVisualInfoPtr - fullName: OpenTK.Graphics.Glx.XVisualInfoPtr -- uid: OpenTK.Graphics.Glx.Pixmap - commentId: T:OpenTK.Graphics.Glx.Pixmap - parent: OpenTK.Graphics.Glx - href: OpenTK.Graphics.Glx.Pixmap.html - name: Pixmap - nameWithType: Pixmap - fullName: OpenTK.Graphics.Glx.Pixmap -- uid: OpenTK.Graphics.Glx.Colormap - commentId: T:OpenTK.Graphics.Glx.Colormap - parent: OpenTK.Graphics.Glx - href: OpenTK.Graphics.Glx.Colormap.html - name: Colormap - nameWithType: Colormap - fullName: OpenTK.Graphics.Glx.Colormap -- uid: OpenTK.Graphics.Glx.GLXPixmap - commentId: T:OpenTK.Graphics.Glx.GLXPixmap - parent: OpenTK.Graphics.Glx - href: OpenTK.Graphics.Glx.GLXPixmap.html - name: GLXPixmap - nameWithType: GLXPixmap - fullName: OpenTK.Graphics.Glx.GLXPixmap -- uid: OpenTK.Graphics.Glx.Glx.MESA.GetAGPOffsetMESA* - commentId: Overload:OpenTK.Graphics.Glx.Glx.MESA.GetAGPOffsetMESA - href: OpenTK.Graphics.Glx.Glx.MESA.html#OpenTK_Graphics_Glx_Glx_MESA_GetAGPOffsetMESA_System_Void__ - name: GetAGPOffsetMESA - nameWithType: Glx.MESA.GetAGPOffsetMESA - fullName: OpenTK.Graphics.Glx.Glx.MESA.GetAGPOffsetMESA -- uid: System.Void* - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.void - name: void* - nameWithType: void* - fullName: void* - nameWithType.vb: Void* - fullName.vb: Void* - name.vb: Void* - spec.csharp: - - uid: System.Void - name: void - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.void - - name: '*' - spec.vb: - - uid: System.Void - name: Void - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.void - - name: '*' -- uid: System.UInt32 - commentId: T:System.UInt32 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - name: uint - nameWithType: uint - fullName: uint - nameWithType.vb: UInteger - fullName.vb: UInteger - name.vb: UInteger -- uid: OpenTK.Graphics.Glx.Glx.MESA.GetSwapIntervalMESA* - commentId: Overload:OpenTK.Graphics.Glx.Glx.MESA.GetSwapIntervalMESA - href: OpenTK.Graphics.Glx.Glx.MESA.html#OpenTK_Graphics_Glx_Glx_MESA_GetSwapIntervalMESA - name: GetSwapIntervalMESA - nameWithType: Glx.MESA.GetSwapIntervalMESA - fullName: OpenTK.Graphics.Glx.Glx.MESA.GetSwapIntervalMESA -- uid: OpenTK.Graphics.Glx.Glx.MESA.QueryCurrentRendererIntegerMESA* - commentId: Overload:OpenTK.Graphics.Glx.Glx.MESA.QueryCurrentRendererIntegerMESA - href: OpenTK.Graphics.Glx.Glx.MESA.html#OpenTK_Graphics_Glx_Glx_MESA_QueryCurrentRendererIntegerMESA_System_Int32_System_UInt32__ - name: QueryCurrentRendererIntegerMESA - nameWithType: Glx.MESA.QueryCurrentRendererIntegerMESA - fullName: OpenTK.Graphics.Glx.Glx.MESA.QueryCurrentRendererIntegerMESA -- uid: System.UInt32* - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - name: uint* - nameWithType: uint* - fullName: uint* - nameWithType.vb: UInteger* - fullName.vb: UInteger* - name.vb: UInteger* - spec.csharp: - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: '*' - spec.vb: - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: '*' -- uid: System.Boolean - commentId: T:System.Boolean - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - name: bool - nameWithType: bool - fullName: bool - nameWithType.vb: Boolean - fullName.vb: Boolean - name.vb: Boolean -- uid: OpenTK.Graphics.Glx.Glx.MESA.QueryCurrentRendererStringMESA_* - commentId: Overload:OpenTK.Graphics.Glx.Glx.MESA.QueryCurrentRendererStringMESA_ - href: OpenTK.Graphics.Glx.Glx.MESA.html#OpenTK_Graphics_Glx_Glx_MESA_QueryCurrentRendererStringMESA__System_Int32_ - name: QueryCurrentRendererStringMESA_ - nameWithType: Glx.MESA.QueryCurrentRendererStringMESA_ - fullName: OpenTK.Graphics.Glx.Glx.MESA.QueryCurrentRendererStringMESA_ -- uid: System.Byte* - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.byte - name: byte* - nameWithType: byte* - fullName: byte* - nameWithType.vb: Byte* - fullName.vb: Byte* - name.vb: Byte* - spec.csharp: - - uid: System.Byte - name: byte - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.byte - - name: '*' - spec.vb: - - uid: System.Byte - name: Byte - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.byte - - name: '*' -- uid: OpenTK.Graphics.Glx.Glx.MESA.QueryRendererIntegerMESA* - commentId: Overload:OpenTK.Graphics.Glx.Glx.MESA.QueryRendererIntegerMESA - href: OpenTK.Graphics.Glx.Glx.MESA.html#OpenTK_Graphics_Glx_Glx_MESA_QueryRendererIntegerMESA_OpenTK_Graphics_Glx_DisplayPtr_System_Int32_System_Int32_System_Int32_System_UInt32__ - name: QueryRendererIntegerMESA - nameWithType: Glx.MESA.QueryRendererIntegerMESA - fullName: OpenTK.Graphics.Glx.Glx.MESA.QueryRendererIntegerMESA -- uid: OpenTK.Graphics.Glx.Glx.MESA.QueryRendererStringMESA_* - commentId: Overload:OpenTK.Graphics.Glx.Glx.MESA.QueryRendererStringMESA_ - href: OpenTK.Graphics.Glx.Glx.MESA.html#OpenTK_Graphics_Glx_Glx_MESA_QueryRendererStringMESA__OpenTK_Graphics_Glx_DisplayPtr_System_Int32_System_Int32_System_Int32_ - name: QueryRendererStringMESA_ - nameWithType: Glx.MESA.QueryRendererStringMESA_ - fullName: OpenTK.Graphics.Glx.Glx.MESA.QueryRendererStringMESA_ -- uid: OpenTK.Graphics.Glx.Glx.MESA.ReleaseBuffersMESA* - commentId: Overload:OpenTK.Graphics.Glx.Glx.MESA.ReleaseBuffersMESA - href: OpenTK.Graphics.Glx.Glx.MESA.html#OpenTK_Graphics_Glx_Glx_MESA_ReleaseBuffersMESA_OpenTK_Graphics_Glx_DisplayPtr_OpenTK_Graphics_Glx_GLXDrawable_ - name: ReleaseBuffersMESA - nameWithType: Glx.MESA.ReleaseBuffersMESA - fullName: OpenTK.Graphics.Glx.Glx.MESA.ReleaseBuffersMESA -- uid: OpenTK.Graphics.Glx.Glx.MESA.Set3DfxModeMESA* - commentId: Overload:OpenTK.Graphics.Glx.Glx.MESA.Set3DfxModeMESA - href: OpenTK.Graphics.Glx.Glx.MESA.html#OpenTK_Graphics_Glx_Glx_MESA_Set3DfxModeMESA_System_Int32_ - name: Set3DfxModeMESA - nameWithType: Glx.MESA.Set3DfxModeMESA - fullName: OpenTK.Graphics.Glx.Glx.MESA.Set3DfxModeMESA -- uid: OpenTK.Graphics.Glx.Glx.MESA.SwapIntervalMESA* - commentId: Overload:OpenTK.Graphics.Glx.Glx.MESA.SwapIntervalMESA - href: OpenTK.Graphics.Glx.Glx.MESA.html#OpenTK_Graphics_Glx_Glx_MESA_SwapIntervalMESA_System_UInt32_ - name: SwapIntervalMESA - nameWithType: Glx.MESA.SwapIntervalMESA - fullName: OpenTK.Graphics.Glx.Glx.MESA.SwapIntervalMESA -- uid: System.IntPtr - commentId: T:System.IntPtr - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: nint - nameWithType: nint - fullName: nint - nameWithType.vb: IntPtr - fullName.vb: System.IntPtr - name.vb: IntPtr -- uid: System.ReadOnlySpan{{T1}} - commentId: T:System.ReadOnlySpan{``0} - parent: System - definition: System.ReadOnlySpan`1 - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - name: ReadOnlySpan - nameWithType: ReadOnlySpan - fullName: System.ReadOnlySpan - nameWithType.vb: ReadOnlySpan(Of T1) - fullName.vb: System.ReadOnlySpan(Of T1) - name.vb: ReadOnlySpan(Of T1) - spec.csharp: - - uid: System.ReadOnlySpan`1 - name: ReadOnlySpan - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - - name: < - - name: T1 - - name: '>' - spec.vb: - - uid: System.ReadOnlySpan`1 - name: ReadOnlySpan - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - - name: ( - - name: Of - - name: " " - - name: T1 - - name: ) -- uid: System.ReadOnlySpan`1 - commentId: T:System.ReadOnlySpan`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - name: ReadOnlySpan - nameWithType: ReadOnlySpan - fullName: System.ReadOnlySpan - nameWithType.vb: ReadOnlySpan(Of T) - fullName.vb: System.ReadOnlySpan(Of T) - name.vb: ReadOnlySpan(Of T) - spec.csharp: - - uid: System.ReadOnlySpan`1 - name: ReadOnlySpan - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.ReadOnlySpan`1 - name: ReadOnlySpan - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: '{T1}[]' - isExternal: true - name: T1[] - nameWithType: T1[] - fullName: T1[] - nameWithType.vb: T1() - fullName.vb: T1() - name.vb: T1() - spec.csharp: - - name: T1 - - name: '[' - - name: ']' - spec.vb: - - name: T1 - - name: ( - - name: ) -- uid: '{T1}' - commentId: '!:T1' - definition: T1 - name: T1 - nameWithType: T1 - fullName: T1 -- uid: T1 - name: T1 - nameWithType: T1 - fullName: T1 -- uid: System.Span{System.UInt32} - commentId: T:System.Span{System.UInt32} - parent: System - definition: System.Span`1 - href: https://learn.microsoft.com/dotnet/api/system.span-1 - name: Span - nameWithType: Span - fullName: System.Span - nameWithType.vb: Span(Of UInteger) - fullName.vb: System.Span(Of UInteger) - name.vb: Span(Of UInteger) - spec.csharp: - - uid: System.Span`1 - name: Span - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.span-1 - - name: < - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: '>' - spec.vb: - - uid: System.Span`1 - name: Span - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.span-1 - - name: ( - - name: Of - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: System.Span`1 - commentId: T:System.Span`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.span-1 - name: Span - nameWithType: Span - fullName: System.Span - nameWithType.vb: Span(Of T) - fullName.vb: System.Span(Of T) - name.vb: Span(Of T) - spec.csharp: - - uid: System.Span`1 - name: Span - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.span-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.Span`1 - name: Span - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.span-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: System.UInt32[] - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - name: uint[] - nameWithType: uint[] - fullName: uint[] - nameWithType.vb: UInteger() - fullName.vb: UInteger() - name.vb: UInteger() - spec.csharp: - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: '[' - - name: ']' - spec.vb: - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ( - - name: ) -- uid: OpenTK.Graphics.Glx.Glx.MESA.QueryCurrentRendererStringMESA* - commentId: Overload:OpenTK.Graphics.Glx.Glx.MESA.QueryCurrentRendererStringMESA - href: OpenTK.Graphics.Glx.Glx.MESA.html#OpenTK_Graphics_Glx_Glx_MESA_QueryCurrentRendererStringMESA_System_Int32_ - name: QueryCurrentRendererStringMESA - nameWithType: Glx.MESA.QueryCurrentRendererStringMESA - fullName: OpenTK.Graphics.Glx.Glx.MESA.QueryCurrentRendererStringMESA -- uid: System.String - commentId: T:System.String - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - name: string - nameWithType: string - fullName: string - nameWithType.vb: String - fullName.vb: String - name.vb: String -- uid: OpenTK.Graphics.Glx.Glx.MESA.QueryRendererStringMESA* - commentId: Overload:OpenTK.Graphics.Glx.Glx.MESA.QueryRendererStringMESA - href: OpenTK.Graphics.Glx.Glx.MESA.html#OpenTK_Graphics_Glx_Glx_MESA_QueryRendererStringMESA_OpenTK_Graphics_Glx_DisplayPtr_System_Int32_System_Int32_System_Int32_ - name: QueryRendererStringMESA - nameWithType: Glx.MESA.QueryRendererStringMESA - fullName: OpenTK.Graphics.Glx.Glx.MESA.QueryRendererStringMESA diff --git a/api/OpenTK.Graphics.Glx.Glx.NV.yml b/api/OpenTK.Graphics.Glx.Glx.NV.yml deleted file mode 100644 index 99bcab2a..00000000 --- a/api/OpenTK.Graphics.Glx.Glx.NV.yml +++ /dev/null @@ -1,3294 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: OpenTK.Graphics.Glx.Glx.NV - commentId: T:OpenTK.Graphics.Glx.Glx.NV - id: Glx.NV - parent: OpenTK.Graphics.Glx - children: - - OpenTK.Graphics.Glx.Glx.NV.BindSwapBarrierNV(OpenTK.Graphics.Glx.DisplayPtr,System.UInt32,System.UInt32) - - OpenTK.Graphics.Glx.Glx.NV.BindVideoCaptureDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,System.UInt32,OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV) - - OpenTK.Graphics.Glx.Glx.NV.BindVideoDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,System.UInt32,System.UInt32,System.Int32*) - - OpenTK.Graphics.Glx.Glx.NV.BindVideoDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,System.UInt32,System.UInt32,System.Int32@) - - OpenTK.Graphics.Glx.Glx.NV.BindVideoDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,System.UInt32,System.UInt32,System.Int32[]) - - OpenTK.Graphics.Glx.Glx.NV.BindVideoDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,System.UInt32,System.UInt32,System.ReadOnlySpan{System.Int32}) - - OpenTK.Graphics.Glx.Glx.NV.BindVideoImageNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXVideoDeviceNV,OpenTK.Graphics.Glx.GLXPbuffer,System.Int32) - - OpenTK.Graphics.Glx.Glx.NV.CopyBufferSubDataNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext,OpenTK.Graphics.Glx.GLXContext,OpenTK.Graphics.Glx.All,OpenTK.Graphics.Glx.All,System.IntPtr,System.IntPtr,System.IntPtr) - - OpenTK.Graphics.Glx.Glx.NV.CopyImageSubDataNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext,System.UInt32,OpenTK.Graphics.Glx.All,System.Int32,System.Int32,System.Int32,System.Int32,OpenTK.Graphics.Glx.GLXContext,System.UInt32,OpenTK.Graphics.Glx.All,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32) - - OpenTK.Graphics.Glx.Glx.NV.DelayBeforeSwapNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Single) - - OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoCaptureDevicesNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32*) - - OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoCaptureDevicesNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32@) - - OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoCaptureDevicesNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32[]) - - OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoCaptureDevicesNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Span{System.Int32}) - - OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoDevicesNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32*) - - OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoDevicesNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32@) - - OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoDevicesNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32[]) - - OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoDevicesNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Span{System.Int32}) - - OpenTK.Graphics.Glx.Glx.NV.GetVideoDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,OpenTK.Graphics.Glx.GLXVideoDeviceNV*) - - OpenTK.Graphics.Glx.Glx.NV.GetVideoDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,OpenTK.Graphics.Glx.GLXVideoDeviceNV@) - - OpenTK.Graphics.Glx.Glx.NV.GetVideoDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,OpenTK.Graphics.Glx.GLXVideoDeviceNV[]) - - OpenTK.Graphics.Glx.Glx.NV.GetVideoDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Span{OpenTK.Graphics.Glx.GLXVideoDeviceNV}) - - OpenTK.Graphics.Glx.Glx.NV.GetVideoInfoNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,OpenTK.Graphics.Glx.GLXVideoDeviceNV,System.Span{System.UInt64},System.Span{System.UInt64}) - - OpenTK.Graphics.Glx.Glx.NV.GetVideoInfoNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,OpenTK.Graphics.Glx.GLXVideoDeviceNV,System.UInt64*,System.UInt64*) - - OpenTK.Graphics.Glx.Glx.NV.GetVideoInfoNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,OpenTK.Graphics.Glx.GLXVideoDeviceNV,System.UInt64@,System.UInt64@) - - OpenTK.Graphics.Glx.Glx.NV.GetVideoInfoNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,OpenTK.Graphics.Glx.GLXVideoDeviceNV,System.UInt64[],System.UInt64[]) - - OpenTK.Graphics.Glx.Glx.NV.JoinSwapGroupNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.UInt32) - - OpenTK.Graphics.Glx.Glx.NV.LockVideoCaptureDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV) - - OpenTK.Graphics.Glx.Glx.NV.NamedCopyBufferSubDataNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext,OpenTK.Graphics.Glx.GLXContext,System.UInt32,System.UInt32,System.IntPtr,System.IntPtr,System.IntPtr) - - OpenTK.Graphics.Glx.Glx.NV.QueryFrameCountNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Span{System.UInt32}) - - OpenTK.Graphics.Glx.Glx.NV.QueryFrameCountNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.UInt32*) - - OpenTK.Graphics.Glx.Glx.NV.QueryFrameCountNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.UInt32@) - - OpenTK.Graphics.Glx.Glx.NV.QueryFrameCountNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.UInt32[]) - - OpenTK.Graphics.Glx.Glx.NV.QueryMaxSwapGroupsNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Span{System.UInt32},System.Span{System.UInt32}) - - OpenTK.Graphics.Glx.Glx.NV.QueryMaxSwapGroupsNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.UInt32*,System.UInt32*) - - OpenTK.Graphics.Glx.Glx.NV.QueryMaxSwapGroupsNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.UInt32@,System.UInt32@) - - OpenTK.Graphics.Glx.Glx.NV.QueryMaxSwapGroupsNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.UInt32[],System.UInt32[]) - - OpenTK.Graphics.Glx.Glx.NV.QuerySwapGroupNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Span{System.UInt32},System.Span{System.UInt32}) - - OpenTK.Graphics.Glx.Glx.NV.QuerySwapGroupNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.UInt32*,System.UInt32*) - - OpenTK.Graphics.Glx.Glx.NV.QuerySwapGroupNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.UInt32@,System.UInt32@) - - OpenTK.Graphics.Glx.Glx.NV.QuerySwapGroupNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.UInt32[],System.UInt32[]) - - OpenTK.Graphics.Glx.Glx.NV.QueryVideoCaptureDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV,System.Int32,System.Int32*) - - OpenTK.Graphics.Glx.Glx.NV.QueryVideoCaptureDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV,System.Int32,System.Int32@) - - OpenTK.Graphics.Glx.Glx.NV.QueryVideoCaptureDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV,System.Int32,System.Int32[]) - - OpenTK.Graphics.Glx.Glx.NV.QueryVideoCaptureDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV,System.Int32,System.Span{System.Int32}) - - OpenTK.Graphics.Glx.Glx.NV.ReleaseVideoCaptureDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV) - - OpenTK.Graphics.Glx.Glx.NV.ReleaseVideoDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,OpenTK.Graphics.Glx.GLXVideoDeviceNV) - - OpenTK.Graphics.Glx.Glx.NV.ReleaseVideoImageNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXPbuffer) - - OpenTK.Graphics.Glx.Glx.NV.ResetFrameCountNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32) - - OpenTK.Graphics.Glx.Glx.NV.SendPbufferToVideoNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXPbuffer,System.Int32,System.Span{System.UInt64},System.Boolean) - - OpenTK.Graphics.Glx.Glx.NV.SendPbufferToVideoNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXPbuffer,System.Int32,System.UInt64*,System.Boolean) - - OpenTK.Graphics.Glx.Glx.NV.SendPbufferToVideoNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXPbuffer,System.Int32,System.UInt64@,System.Boolean) - - OpenTK.Graphics.Glx.Glx.NV.SendPbufferToVideoNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXPbuffer,System.Int32,System.UInt64[],System.Boolean) - langs: - - csharp - - vb - name: Glx.NV - nameWithType: Glx.NV - fullName: OpenTK.Graphics.Glx.Glx.NV - type: Class - source: - id: NV - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 815 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: NV extensions. - example: [] - syntax: - content: public static class Glx.NV - content.vb: Public Module Glx.NV - inheritance: - - System.Object - inheritedMembers: - - System.Object.Equals(System.Object) - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetHashCode - - System.Object.GetType - - System.Object.MemberwiseClone - - System.Object.ReferenceEquals(System.Object,System.Object) - - System.Object.ToString -- uid: OpenTK.Graphics.Glx.Glx.NV.BindSwapBarrierNV(OpenTK.Graphics.Glx.DisplayPtr,System.UInt32,System.UInt32) - commentId: M:OpenTK.Graphics.Glx.Glx.NV.BindSwapBarrierNV(OpenTK.Graphics.Glx.DisplayPtr,System.UInt32,System.UInt32) - id: BindSwapBarrierNV(OpenTK.Graphics.Glx.DisplayPtr,System.UInt32,System.UInt32) - parent: OpenTK.Graphics.Glx.Glx.NV - langs: - - csharp - - vb - name: BindSwapBarrierNV(DisplayPtr, uint, uint) - nameWithType: Glx.NV.BindSwapBarrierNV(DisplayPtr, uint, uint) - fullName: OpenTK.Graphics.Glx.Glx.NV.BindSwapBarrierNV(OpenTK.Graphics.Glx.DisplayPtr, uint, uint) - type: Method - source: - id: BindSwapBarrierNV - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs - startLine: 238 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_NV_swap_group] - - [entry point: glXBindSwapBarrierNV] - -
- example: [] - syntax: - content: public static bool BindSwapBarrierNV(DisplayPtr dpy, uint group, uint barrier) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: group - type: System.UInt32 - - id: barrier - type: System.UInt32 - return: - type: System.Boolean - content.vb: Public Shared Function BindSwapBarrierNV(dpy As DisplayPtr, group As UInteger, barrier As UInteger) As Boolean - overload: OpenTK.Graphics.Glx.Glx.NV.BindSwapBarrierNV* - nameWithType.vb: Glx.NV.BindSwapBarrierNV(DisplayPtr, UInteger, UInteger) - fullName.vb: OpenTK.Graphics.Glx.Glx.NV.BindSwapBarrierNV(OpenTK.Graphics.Glx.DisplayPtr, UInteger, UInteger) - name.vb: BindSwapBarrierNV(DisplayPtr, UInteger, UInteger) -- uid: OpenTK.Graphics.Glx.Glx.NV.BindVideoCaptureDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,System.UInt32,OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV) - commentId: M:OpenTK.Graphics.Glx.Glx.NV.BindVideoCaptureDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,System.UInt32,OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV) - id: BindVideoCaptureDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,System.UInt32,OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV) - parent: OpenTK.Graphics.Glx.Glx.NV - langs: - - csharp - - vb - name: BindVideoCaptureDeviceNV(DisplayPtr, uint, GLXVideoCaptureDeviceNV) - nameWithType: Glx.NV.BindVideoCaptureDeviceNV(DisplayPtr, uint, GLXVideoCaptureDeviceNV) - fullName: OpenTK.Graphics.Glx.Glx.NV.BindVideoCaptureDeviceNV(OpenTK.Graphics.Glx.DisplayPtr, uint, OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV) - type: Method - source: - id: BindVideoCaptureDeviceNV - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs - startLine: 241 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_NV_video_capture] - - [entry point: glXBindVideoCaptureDeviceNV] - -
- example: [] - syntax: - content: public static int BindVideoCaptureDeviceNV(DisplayPtr dpy, uint video_capture_slot, GLXVideoCaptureDeviceNV device) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: video_capture_slot - type: System.UInt32 - - id: device - type: OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV - return: - type: System.Int32 - content.vb: Public Shared Function BindVideoCaptureDeviceNV(dpy As DisplayPtr, video_capture_slot As UInteger, device As GLXVideoCaptureDeviceNV) As Integer - overload: OpenTK.Graphics.Glx.Glx.NV.BindVideoCaptureDeviceNV* - nameWithType.vb: Glx.NV.BindVideoCaptureDeviceNV(DisplayPtr, UInteger, GLXVideoCaptureDeviceNV) - fullName.vb: OpenTK.Graphics.Glx.Glx.NV.BindVideoCaptureDeviceNV(OpenTK.Graphics.Glx.DisplayPtr, UInteger, OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV) - name.vb: BindVideoCaptureDeviceNV(DisplayPtr, UInteger, GLXVideoCaptureDeviceNV) -- uid: OpenTK.Graphics.Glx.Glx.NV.BindVideoDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,System.UInt32,System.UInt32,System.Int32*) - commentId: M:OpenTK.Graphics.Glx.Glx.NV.BindVideoDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,System.UInt32,System.UInt32,System.Int32*) - id: BindVideoDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,System.UInt32,System.UInt32,System.Int32*) - parent: OpenTK.Graphics.Glx.Glx.NV - langs: - - csharp - - vb - name: BindVideoDeviceNV(DisplayPtr, uint, uint, int*) - nameWithType: Glx.NV.BindVideoDeviceNV(DisplayPtr, uint, uint, int*) - fullName: OpenTK.Graphics.Glx.Glx.NV.BindVideoDeviceNV(OpenTK.Graphics.Glx.DisplayPtr, uint, uint, int*) - type: Method - source: - id: BindVideoDeviceNV - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs - startLine: 244 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_NV_present_video] - - [entry point: glXBindVideoDeviceNV] - -
- example: [] - syntax: - content: public static int BindVideoDeviceNV(DisplayPtr dpy, uint video_slot, uint video_device, int* attrib_list) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: video_slot - type: System.UInt32 - - id: video_device - type: System.UInt32 - - id: attrib_list - type: System.Int32* - return: - type: System.Int32 - content.vb: Public Shared Function BindVideoDeviceNV(dpy As DisplayPtr, video_slot As UInteger, video_device As UInteger, attrib_list As Integer*) As Integer - overload: OpenTK.Graphics.Glx.Glx.NV.BindVideoDeviceNV* - nameWithType.vb: Glx.NV.BindVideoDeviceNV(DisplayPtr, UInteger, UInteger, Integer*) - fullName.vb: OpenTK.Graphics.Glx.Glx.NV.BindVideoDeviceNV(OpenTK.Graphics.Glx.DisplayPtr, UInteger, UInteger, Integer*) - name.vb: BindVideoDeviceNV(DisplayPtr, UInteger, UInteger, Integer*) -- uid: OpenTK.Graphics.Glx.Glx.NV.BindVideoImageNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXVideoDeviceNV,OpenTK.Graphics.Glx.GLXPbuffer,System.Int32) - commentId: M:OpenTK.Graphics.Glx.Glx.NV.BindVideoImageNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXVideoDeviceNV,OpenTK.Graphics.Glx.GLXPbuffer,System.Int32) - id: BindVideoImageNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXVideoDeviceNV,OpenTK.Graphics.Glx.GLXPbuffer,System.Int32) - parent: OpenTK.Graphics.Glx.Glx.NV - langs: - - csharp - - vb - name: BindVideoImageNV(DisplayPtr, GLXVideoDeviceNV, GLXPbuffer, int) - nameWithType: Glx.NV.BindVideoImageNV(DisplayPtr, GLXVideoDeviceNV, GLXPbuffer, int) - fullName: OpenTK.Graphics.Glx.Glx.NV.BindVideoImageNV(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXVideoDeviceNV, OpenTK.Graphics.Glx.GLXPbuffer, int) - type: Method - source: - id: BindVideoImageNV - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs - startLine: 247 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_NV_video_out] - - [entry point: glXBindVideoImageNV] - -
- example: [] - syntax: - content: public static int BindVideoImageNV(DisplayPtr dpy, GLXVideoDeviceNV VideoDevice, GLXPbuffer pbuf, int iVideoBuffer) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: VideoDevice - type: OpenTK.Graphics.Glx.GLXVideoDeviceNV - - id: pbuf - type: OpenTK.Graphics.Glx.GLXPbuffer - - id: iVideoBuffer - type: System.Int32 - return: - type: System.Int32 - content.vb: Public Shared Function BindVideoImageNV(dpy As DisplayPtr, VideoDevice As GLXVideoDeviceNV, pbuf As GLXPbuffer, iVideoBuffer As Integer) As Integer - overload: OpenTK.Graphics.Glx.Glx.NV.BindVideoImageNV* - nameWithType.vb: Glx.NV.BindVideoImageNV(DisplayPtr, GLXVideoDeviceNV, GLXPbuffer, Integer) - fullName.vb: OpenTK.Graphics.Glx.Glx.NV.BindVideoImageNV(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXVideoDeviceNV, OpenTK.Graphics.Glx.GLXPbuffer, Integer) - name.vb: BindVideoImageNV(DisplayPtr, GLXVideoDeviceNV, GLXPbuffer, Integer) -- uid: OpenTK.Graphics.Glx.Glx.NV.CopyBufferSubDataNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext,OpenTK.Graphics.Glx.GLXContext,OpenTK.Graphics.Glx.All,OpenTK.Graphics.Glx.All,System.IntPtr,System.IntPtr,System.IntPtr) - commentId: M:OpenTK.Graphics.Glx.Glx.NV.CopyBufferSubDataNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext,OpenTK.Graphics.Glx.GLXContext,OpenTK.Graphics.Glx.All,OpenTK.Graphics.Glx.All,System.IntPtr,System.IntPtr,System.IntPtr) - id: CopyBufferSubDataNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext,OpenTK.Graphics.Glx.GLXContext,OpenTK.Graphics.Glx.All,OpenTK.Graphics.Glx.All,System.IntPtr,System.IntPtr,System.IntPtr) - parent: OpenTK.Graphics.Glx.Glx.NV - langs: - - csharp - - vb - name: CopyBufferSubDataNV(DisplayPtr, GLXContext, GLXContext, All, All, nint, nint, nint) - nameWithType: Glx.NV.CopyBufferSubDataNV(DisplayPtr, GLXContext, GLXContext, All, All, nint, nint, nint) - fullName: OpenTK.Graphics.Glx.Glx.NV.CopyBufferSubDataNV(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXContext, OpenTK.Graphics.Glx.GLXContext, OpenTK.Graphics.Glx.All, OpenTK.Graphics.Glx.All, nint, nint, nint) - type: Method - source: - id: CopyBufferSubDataNV - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs - startLine: 250 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_NV_copy_buffer] - - [entry point: glXCopyBufferSubDataNV] - -
- example: [] - syntax: - content: public static void CopyBufferSubDataNV(DisplayPtr dpy, GLXContext readCtx, GLXContext writeCtx, All readTarget, All writeTarget, nint readOffset, nint writeOffset, nint size) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: readCtx - type: OpenTK.Graphics.Glx.GLXContext - - id: writeCtx - type: OpenTK.Graphics.Glx.GLXContext - - id: readTarget - type: OpenTK.Graphics.Glx.All - - id: writeTarget - type: OpenTK.Graphics.Glx.All - - id: readOffset - type: System.IntPtr - - id: writeOffset - type: System.IntPtr - - id: size - type: System.IntPtr - content.vb: Public Shared Sub CopyBufferSubDataNV(dpy As DisplayPtr, readCtx As GLXContext, writeCtx As GLXContext, readTarget As All, writeTarget As All, readOffset As IntPtr, writeOffset As IntPtr, size As IntPtr) - overload: OpenTK.Graphics.Glx.Glx.NV.CopyBufferSubDataNV* - nameWithType.vb: Glx.NV.CopyBufferSubDataNV(DisplayPtr, GLXContext, GLXContext, All, All, IntPtr, IntPtr, IntPtr) - fullName.vb: OpenTK.Graphics.Glx.Glx.NV.CopyBufferSubDataNV(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXContext, OpenTK.Graphics.Glx.GLXContext, OpenTK.Graphics.Glx.All, OpenTK.Graphics.Glx.All, System.IntPtr, System.IntPtr, System.IntPtr) - name.vb: CopyBufferSubDataNV(DisplayPtr, GLXContext, GLXContext, All, All, IntPtr, IntPtr, IntPtr) -- uid: OpenTK.Graphics.Glx.Glx.NV.CopyImageSubDataNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext,System.UInt32,OpenTK.Graphics.Glx.All,System.Int32,System.Int32,System.Int32,System.Int32,OpenTK.Graphics.Glx.GLXContext,System.UInt32,OpenTK.Graphics.Glx.All,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32) - commentId: M:OpenTK.Graphics.Glx.Glx.NV.CopyImageSubDataNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext,System.UInt32,OpenTK.Graphics.Glx.All,System.Int32,System.Int32,System.Int32,System.Int32,OpenTK.Graphics.Glx.GLXContext,System.UInt32,OpenTK.Graphics.Glx.All,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32) - id: CopyImageSubDataNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext,System.UInt32,OpenTK.Graphics.Glx.All,System.Int32,System.Int32,System.Int32,System.Int32,OpenTK.Graphics.Glx.GLXContext,System.UInt32,OpenTK.Graphics.Glx.All,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32) - parent: OpenTK.Graphics.Glx.Glx.NV - langs: - - csharp - - vb - name: CopyImageSubDataNV(DisplayPtr, GLXContext, uint, All, int, int, int, int, GLXContext, uint, All, int, int, int, int, int, int, int) - nameWithType: Glx.NV.CopyImageSubDataNV(DisplayPtr, GLXContext, uint, All, int, int, int, int, GLXContext, uint, All, int, int, int, int, int, int, int) - fullName: OpenTK.Graphics.Glx.Glx.NV.CopyImageSubDataNV(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXContext, uint, OpenTK.Graphics.Glx.All, int, int, int, int, OpenTK.Graphics.Glx.GLXContext, uint, OpenTK.Graphics.Glx.All, int, int, int, int, int, int, int) - type: Method - source: - id: CopyImageSubDataNV - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs - startLine: 253 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_NV_copy_image] - - [entry point: glXCopyImageSubDataNV] - -
- example: [] - syntax: - content: public static void CopyImageSubDataNV(DisplayPtr dpy, GLXContext srcCtx, uint srcName, All srcTarget, int srcLevel, int srcX, int srcY, int srcZ, GLXContext dstCtx, uint dstName, All dstTarget, int dstLevel, int dstX, int dstY, int dstZ, int width, int height, int depth) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: srcCtx - type: OpenTK.Graphics.Glx.GLXContext - - id: srcName - type: System.UInt32 - - id: srcTarget - type: OpenTK.Graphics.Glx.All - - id: srcLevel - type: System.Int32 - - id: srcX - type: System.Int32 - - id: srcY - type: System.Int32 - - id: srcZ - type: System.Int32 - - id: dstCtx - type: OpenTK.Graphics.Glx.GLXContext - - id: dstName - type: System.UInt32 - - id: dstTarget - type: OpenTK.Graphics.Glx.All - - id: dstLevel - type: System.Int32 - - id: dstX - type: System.Int32 - - id: dstY - type: System.Int32 - - id: dstZ - type: System.Int32 - - id: width - type: System.Int32 - - id: height - type: System.Int32 - - id: depth - type: System.Int32 - content.vb: Public Shared Sub CopyImageSubDataNV(dpy As DisplayPtr, srcCtx As GLXContext, srcName As UInteger, srcTarget As All, srcLevel As Integer, srcX As Integer, srcY As Integer, srcZ As Integer, dstCtx As GLXContext, dstName As UInteger, dstTarget As All, dstLevel As Integer, dstX As Integer, dstY As Integer, dstZ As Integer, width As Integer, height As Integer, depth As Integer) - overload: OpenTK.Graphics.Glx.Glx.NV.CopyImageSubDataNV* - nameWithType.vb: Glx.NV.CopyImageSubDataNV(DisplayPtr, GLXContext, UInteger, All, Integer, Integer, Integer, Integer, GLXContext, UInteger, All, Integer, Integer, Integer, Integer, Integer, Integer, Integer) - fullName.vb: OpenTK.Graphics.Glx.Glx.NV.CopyImageSubDataNV(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXContext, UInteger, OpenTK.Graphics.Glx.All, Integer, Integer, Integer, Integer, OpenTK.Graphics.Glx.GLXContext, UInteger, OpenTK.Graphics.Glx.All, Integer, Integer, Integer, Integer, Integer, Integer, Integer) - name.vb: CopyImageSubDataNV(DisplayPtr, GLXContext, UInteger, All, Integer, Integer, Integer, Integer, GLXContext, UInteger, All, Integer, Integer, Integer, Integer, Integer, Integer, Integer) -- uid: OpenTK.Graphics.Glx.Glx.NV.DelayBeforeSwapNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Single) - commentId: M:OpenTK.Graphics.Glx.Glx.NV.DelayBeforeSwapNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Single) - id: DelayBeforeSwapNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Single) - parent: OpenTK.Graphics.Glx.Glx.NV - langs: - - csharp - - vb - name: DelayBeforeSwapNV(DisplayPtr, GLXDrawable, float) - nameWithType: Glx.NV.DelayBeforeSwapNV(DisplayPtr, GLXDrawable, float) - fullName: OpenTK.Graphics.Glx.Glx.NV.DelayBeforeSwapNV(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, float) - type: Method - source: - id: DelayBeforeSwapNV - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs - startLine: 256 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_NV_delay_before_swap] - - [entry point: glXDelayBeforeSwapNV] - -
- example: [] - syntax: - content: public static bool DelayBeforeSwapNV(DisplayPtr dpy, GLXDrawable drawable, float seconds) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: drawable - type: OpenTK.Graphics.Glx.GLXDrawable - - id: seconds - type: System.Single - return: - type: System.Boolean - content.vb: Public Shared Function DelayBeforeSwapNV(dpy As DisplayPtr, drawable As GLXDrawable, seconds As Single) As Boolean - overload: OpenTK.Graphics.Glx.Glx.NV.DelayBeforeSwapNV* - nameWithType.vb: Glx.NV.DelayBeforeSwapNV(DisplayPtr, GLXDrawable, Single) - fullName.vb: OpenTK.Graphics.Glx.Glx.NV.DelayBeforeSwapNV(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, Single) - name.vb: DelayBeforeSwapNV(DisplayPtr, GLXDrawable, Single) -- uid: OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoCaptureDevicesNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32*) - commentId: M:OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoCaptureDevicesNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32*) - id: EnumerateVideoCaptureDevicesNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32*) - parent: OpenTK.Graphics.Glx.Glx.NV - langs: - - csharp - - vb - name: EnumerateVideoCaptureDevicesNV(DisplayPtr, int, int*) - nameWithType: Glx.NV.EnumerateVideoCaptureDevicesNV(DisplayPtr, int, int*) - fullName: OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoCaptureDevicesNV(OpenTK.Graphics.Glx.DisplayPtr, int, int*) - type: Method - source: - id: EnumerateVideoCaptureDevicesNV - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs - startLine: 259 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_NV_video_capture] - - [entry point: glXEnumerateVideoCaptureDevicesNV] - -
- example: [] - syntax: - content: public static GLXVideoCaptureDeviceNV* EnumerateVideoCaptureDevicesNV(DisplayPtr dpy, int screen, int* nelements) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: screen - type: System.Int32 - - id: nelements - type: System.Int32* - return: - type: OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV* - content.vb: Public Shared Function EnumerateVideoCaptureDevicesNV(dpy As DisplayPtr, screen As Integer, nelements As Integer*) As GLXVideoCaptureDeviceNV* - overload: OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoCaptureDevicesNV* - nameWithType.vb: Glx.NV.EnumerateVideoCaptureDevicesNV(DisplayPtr, Integer, Integer*) - fullName.vb: OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoCaptureDevicesNV(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer*) - name.vb: EnumerateVideoCaptureDevicesNV(DisplayPtr, Integer, Integer*) -- uid: OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoDevicesNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32*) - commentId: M:OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoDevicesNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32*) - id: EnumerateVideoDevicesNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32*) - parent: OpenTK.Graphics.Glx.Glx.NV - langs: - - csharp - - vb - name: EnumerateVideoDevicesNV(DisplayPtr, int, int*) - nameWithType: Glx.NV.EnumerateVideoDevicesNV(DisplayPtr, int, int*) - fullName: OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoDevicesNV(OpenTK.Graphics.Glx.DisplayPtr, int, int*) - type: Method - source: - id: EnumerateVideoDevicesNV - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs - startLine: 262 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_NV_present_video] - - [entry point: glXEnumerateVideoDevicesNV] - -
- example: [] - syntax: - content: public static uint* EnumerateVideoDevicesNV(DisplayPtr dpy, int screen, int* nelements) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: screen - type: System.Int32 - - id: nelements - type: System.Int32* - return: - type: System.UInt32* - content.vb: Public Shared Function EnumerateVideoDevicesNV(dpy As DisplayPtr, screen As Integer, nelements As Integer*) As UInteger* - overload: OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoDevicesNV* - nameWithType.vb: Glx.NV.EnumerateVideoDevicesNV(DisplayPtr, Integer, Integer*) - fullName.vb: OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoDevicesNV(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer*) - name.vb: EnumerateVideoDevicesNV(DisplayPtr, Integer, Integer*) -- uid: OpenTK.Graphics.Glx.Glx.NV.GetVideoDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,OpenTK.Graphics.Glx.GLXVideoDeviceNV*) - commentId: M:OpenTK.Graphics.Glx.Glx.NV.GetVideoDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,OpenTK.Graphics.Glx.GLXVideoDeviceNV*) - id: GetVideoDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,OpenTK.Graphics.Glx.GLXVideoDeviceNV*) - parent: OpenTK.Graphics.Glx.Glx.NV - langs: - - csharp - - vb - name: GetVideoDeviceNV(DisplayPtr, int, int, GLXVideoDeviceNV*) - nameWithType: Glx.NV.GetVideoDeviceNV(DisplayPtr, int, int, GLXVideoDeviceNV*) - fullName: OpenTK.Graphics.Glx.Glx.NV.GetVideoDeviceNV(OpenTK.Graphics.Glx.DisplayPtr, int, int, OpenTK.Graphics.Glx.GLXVideoDeviceNV*) - type: Method - source: - id: GetVideoDeviceNV - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs - startLine: 265 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_NV_video_out] - - [entry point: glXGetVideoDeviceNV] - -
- example: [] - syntax: - content: public static int GetVideoDeviceNV(DisplayPtr dpy, int screen, int numVideoDevices, GLXVideoDeviceNV* pVideoDevice) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: screen - type: System.Int32 - - id: numVideoDevices - type: System.Int32 - - id: pVideoDevice - type: OpenTK.Graphics.Glx.GLXVideoDeviceNV* - return: - type: System.Int32 - content.vb: Public Shared Function GetVideoDeviceNV(dpy As DisplayPtr, screen As Integer, numVideoDevices As Integer, pVideoDevice As GLXVideoDeviceNV*) As Integer - overload: OpenTK.Graphics.Glx.Glx.NV.GetVideoDeviceNV* - nameWithType.vb: Glx.NV.GetVideoDeviceNV(DisplayPtr, Integer, Integer, GLXVideoDeviceNV*) - fullName.vb: OpenTK.Graphics.Glx.Glx.NV.GetVideoDeviceNV(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer, OpenTK.Graphics.Glx.GLXVideoDeviceNV*) - name.vb: GetVideoDeviceNV(DisplayPtr, Integer, Integer, GLXVideoDeviceNV*) -- uid: OpenTK.Graphics.Glx.Glx.NV.GetVideoInfoNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,OpenTK.Graphics.Glx.GLXVideoDeviceNV,System.UInt64*,System.UInt64*) - commentId: M:OpenTK.Graphics.Glx.Glx.NV.GetVideoInfoNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,OpenTK.Graphics.Glx.GLXVideoDeviceNV,System.UInt64*,System.UInt64*) - id: GetVideoInfoNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,OpenTK.Graphics.Glx.GLXVideoDeviceNV,System.UInt64*,System.UInt64*) - parent: OpenTK.Graphics.Glx.Glx.NV - langs: - - csharp - - vb - name: GetVideoInfoNV(DisplayPtr, int, GLXVideoDeviceNV, ulong*, ulong*) - nameWithType: Glx.NV.GetVideoInfoNV(DisplayPtr, int, GLXVideoDeviceNV, ulong*, ulong*) - fullName: OpenTK.Graphics.Glx.Glx.NV.GetVideoInfoNV(OpenTK.Graphics.Glx.DisplayPtr, int, OpenTK.Graphics.Glx.GLXVideoDeviceNV, ulong*, ulong*) - type: Method - source: - id: GetVideoInfoNV - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs - startLine: 268 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_NV_video_out] - - [entry point: glXGetVideoInfoNV] - -
- example: [] - syntax: - content: public static int GetVideoInfoNV(DisplayPtr dpy, int screen, GLXVideoDeviceNV VideoDevice, ulong* pulCounterOutputPbuffer, ulong* pulCounterOutputVideo) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: screen - type: System.Int32 - - id: VideoDevice - type: OpenTK.Graphics.Glx.GLXVideoDeviceNV - - id: pulCounterOutputPbuffer - type: System.UInt64* - - id: pulCounterOutputVideo - type: System.UInt64* - return: - type: System.Int32 - content.vb: Public Shared Function GetVideoInfoNV(dpy As DisplayPtr, screen As Integer, VideoDevice As GLXVideoDeviceNV, pulCounterOutputPbuffer As ULong*, pulCounterOutputVideo As ULong*) As Integer - overload: OpenTK.Graphics.Glx.Glx.NV.GetVideoInfoNV* - nameWithType.vb: Glx.NV.GetVideoInfoNV(DisplayPtr, Integer, GLXVideoDeviceNV, ULong*, ULong*) - fullName.vb: OpenTK.Graphics.Glx.Glx.NV.GetVideoInfoNV(OpenTK.Graphics.Glx.DisplayPtr, Integer, OpenTK.Graphics.Glx.GLXVideoDeviceNV, ULong*, ULong*) - name.vb: GetVideoInfoNV(DisplayPtr, Integer, GLXVideoDeviceNV, ULong*, ULong*) -- uid: OpenTK.Graphics.Glx.Glx.NV.JoinSwapGroupNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.UInt32) - commentId: M:OpenTK.Graphics.Glx.Glx.NV.JoinSwapGroupNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.UInt32) - id: JoinSwapGroupNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.UInt32) - parent: OpenTK.Graphics.Glx.Glx.NV - langs: - - csharp - - vb - name: JoinSwapGroupNV(DisplayPtr, GLXDrawable, uint) - nameWithType: Glx.NV.JoinSwapGroupNV(DisplayPtr, GLXDrawable, uint) - fullName: OpenTK.Graphics.Glx.Glx.NV.JoinSwapGroupNV(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, uint) - type: Method - source: - id: JoinSwapGroupNV - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs - startLine: 271 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_NV_swap_group] - - [entry point: glXJoinSwapGroupNV] - -
- example: [] - syntax: - content: public static bool JoinSwapGroupNV(DisplayPtr dpy, GLXDrawable drawable, uint group) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: drawable - type: OpenTK.Graphics.Glx.GLXDrawable - - id: group - type: System.UInt32 - return: - type: System.Boolean - content.vb: Public Shared Function JoinSwapGroupNV(dpy As DisplayPtr, drawable As GLXDrawable, group As UInteger) As Boolean - overload: OpenTK.Graphics.Glx.Glx.NV.JoinSwapGroupNV* - nameWithType.vb: Glx.NV.JoinSwapGroupNV(DisplayPtr, GLXDrawable, UInteger) - fullName.vb: OpenTK.Graphics.Glx.Glx.NV.JoinSwapGroupNV(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, UInteger) - name.vb: JoinSwapGroupNV(DisplayPtr, GLXDrawable, UInteger) -- uid: OpenTK.Graphics.Glx.Glx.NV.LockVideoCaptureDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV) - commentId: M:OpenTK.Graphics.Glx.Glx.NV.LockVideoCaptureDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV) - id: LockVideoCaptureDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV) - parent: OpenTK.Graphics.Glx.Glx.NV - langs: - - csharp - - vb - name: LockVideoCaptureDeviceNV(DisplayPtr, GLXVideoCaptureDeviceNV) - nameWithType: Glx.NV.LockVideoCaptureDeviceNV(DisplayPtr, GLXVideoCaptureDeviceNV) - fullName: OpenTK.Graphics.Glx.Glx.NV.LockVideoCaptureDeviceNV(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV) - type: Method - source: - id: LockVideoCaptureDeviceNV - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs - startLine: 274 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_NV_video_capture] - - [entry point: glXLockVideoCaptureDeviceNV] - -
- example: [] - syntax: - content: public static void LockVideoCaptureDeviceNV(DisplayPtr dpy, GLXVideoCaptureDeviceNV device) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: device - type: OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV - content.vb: Public Shared Sub LockVideoCaptureDeviceNV(dpy As DisplayPtr, device As GLXVideoCaptureDeviceNV) - overload: OpenTK.Graphics.Glx.Glx.NV.LockVideoCaptureDeviceNV* -- uid: OpenTK.Graphics.Glx.Glx.NV.NamedCopyBufferSubDataNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext,OpenTK.Graphics.Glx.GLXContext,System.UInt32,System.UInt32,System.IntPtr,System.IntPtr,System.IntPtr) - commentId: M:OpenTK.Graphics.Glx.Glx.NV.NamedCopyBufferSubDataNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext,OpenTK.Graphics.Glx.GLXContext,System.UInt32,System.UInt32,System.IntPtr,System.IntPtr,System.IntPtr) - id: NamedCopyBufferSubDataNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext,OpenTK.Graphics.Glx.GLXContext,System.UInt32,System.UInt32,System.IntPtr,System.IntPtr,System.IntPtr) - parent: OpenTK.Graphics.Glx.Glx.NV - langs: - - csharp - - vb - name: NamedCopyBufferSubDataNV(DisplayPtr, GLXContext, GLXContext, uint, uint, nint, nint, nint) - nameWithType: Glx.NV.NamedCopyBufferSubDataNV(DisplayPtr, GLXContext, GLXContext, uint, uint, nint, nint, nint) - fullName: OpenTK.Graphics.Glx.Glx.NV.NamedCopyBufferSubDataNV(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXContext, OpenTK.Graphics.Glx.GLXContext, uint, uint, nint, nint, nint) - type: Method - source: - id: NamedCopyBufferSubDataNV - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs - startLine: 277 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_NV_copy_buffer] - - [entry point: glXNamedCopyBufferSubDataNV] - -
- example: [] - syntax: - content: public static void NamedCopyBufferSubDataNV(DisplayPtr dpy, GLXContext readCtx, GLXContext writeCtx, uint readBuffer, uint writeBuffer, nint readOffset, nint writeOffset, nint size) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: readCtx - type: OpenTK.Graphics.Glx.GLXContext - - id: writeCtx - type: OpenTK.Graphics.Glx.GLXContext - - id: readBuffer - type: System.UInt32 - - id: writeBuffer - type: System.UInt32 - - id: readOffset - type: System.IntPtr - - id: writeOffset - type: System.IntPtr - - id: size - type: System.IntPtr - content.vb: Public Shared Sub NamedCopyBufferSubDataNV(dpy As DisplayPtr, readCtx As GLXContext, writeCtx As GLXContext, readBuffer As UInteger, writeBuffer As UInteger, readOffset As IntPtr, writeOffset As IntPtr, size As IntPtr) - overload: OpenTK.Graphics.Glx.Glx.NV.NamedCopyBufferSubDataNV* - nameWithType.vb: Glx.NV.NamedCopyBufferSubDataNV(DisplayPtr, GLXContext, GLXContext, UInteger, UInteger, IntPtr, IntPtr, IntPtr) - fullName.vb: OpenTK.Graphics.Glx.Glx.NV.NamedCopyBufferSubDataNV(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXContext, OpenTK.Graphics.Glx.GLXContext, UInteger, UInteger, System.IntPtr, System.IntPtr, System.IntPtr) - name.vb: NamedCopyBufferSubDataNV(DisplayPtr, GLXContext, GLXContext, UInteger, UInteger, IntPtr, IntPtr, IntPtr) -- uid: OpenTK.Graphics.Glx.Glx.NV.QueryFrameCountNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.UInt32*) - commentId: M:OpenTK.Graphics.Glx.Glx.NV.QueryFrameCountNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.UInt32*) - id: QueryFrameCountNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.UInt32*) - parent: OpenTK.Graphics.Glx.Glx.NV - langs: - - csharp - - vb - name: QueryFrameCountNV(DisplayPtr, int, uint*) - nameWithType: Glx.NV.QueryFrameCountNV(DisplayPtr, int, uint*) - fullName: OpenTK.Graphics.Glx.Glx.NV.QueryFrameCountNV(OpenTK.Graphics.Glx.DisplayPtr, int, uint*) - type: Method - source: - id: QueryFrameCountNV - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs - startLine: 280 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_NV_swap_group] - - [entry point: glXQueryFrameCountNV] - -
- example: [] - syntax: - content: public static bool QueryFrameCountNV(DisplayPtr dpy, int screen, uint* count) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: screen - type: System.Int32 - - id: count - type: System.UInt32* - return: - type: System.Boolean - content.vb: Public Shared Function QueryFrameCountNV(dpy As DisplayPtr, screen As Integer, count As UInteger*) As Boolean - overload: OpenTK.Graphics.Glx.Glx.NV.QueryFrameCountNV* - nameWithType.vb: Glx.NV.QueryFrameCountNV(DisplayPtr, Integer, UInteger*) - fullName.vb: OpenTK.Graphics.Glx.Glx.NV.QueryFrameCountNV(OpenTK.Graphics.Glx.DisplayPtr, Integer, UInteger*) - name.vb: QueryFrameCountNV(DisplayPtr, Integer, UInteger*) -- uid: OpenTK.Graphics.Glx.Glx.NV.QueryMaxSwapGroupsNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.UInt32*,System.UInt32*) - commentId: M:OpenTK.Graphics.Glx.Glx.NV.QueryMaxSwapGroupsNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.UInt32*,System.UInt32*) - id: QueryMaxSwapGroupsNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.UInt32*,System.UInt32*) - parent: OpenTK.Graphics.Glx.Glx.NV - langs: - - csharp - - vb - name: QueryMaxSwapGroupsNV(DisplayPtr, int, uint*, uint*) - nameWithType: Glx.NV.QueryMaxSwapGroupsNV(DisplayPtr, int, uint*, uint*) - fullName: OpenTK.Graphics.Glx.Glx.NV.QueryMaxSwapGroupsNV(OpenTK.Graphics.Glx.DisplayPtr, int, uint*, uint*) - type: Method - source: - id: QueryMaxSwapGroupsNV - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs - startLine: 283 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_NV_swap_group] - - [entry point: glXQueryMaxSwapGroupsNV] - -
- example: [] - syntax: - content: public static bool QueryMaxSwapGroupsNV(DisplayPtr dpy, int screen, uint* maxGroups, uint* maxBarriers) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: screen - type: System.Int32 - - id: maxGroups - type: System.UInt32* - - id: maxBarriers - type: System.UInt32* - return: - type: System.Boolean - content.vb: Public Shared Function QueryMaxSwapGroupsNV(dpy As DisplayPtr, screen As Integer, maxGroups As UInteger*, maxBarriers As UInteger*) As Boolean - overload: OpenTK.Graphics.Glx.Glx.NV.QueryMaxSwapGroupsNV* - nameWithType.vb: Glx.NV.QueryMaxSwapGroupsNV(DisplayPtr, Integer, UInteger*, UInteger*) - fullName.vb: OpenTK.Graphics.Glx.Glx.NV.QueryMaxSwapGroupsNV(OpenTK.Graphics.Glx.DisplayPtr, Integer, UInteger*, UInteger*) - name.vb: QueryMaxSwapGroupsNV(DisplayPtr, Integer, UInteger*, UInteger*) -- uid: OpenTK.Graphics.Glx.Glx.NV.QuerySwapGroupNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.UInt32*,System.UInt32*) - commentId: M:OpenTK.Graphics.Glx.Glx.NV.QuerySwapGroupNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.UInt32*,System.UInt32*) - id: QuerySwapGroupNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.UInt32*,System.UInt32*) - parent: OpenTK.Graphics.Glx.Glx.NV - langs: - - csharp - - vb - name: QuerySwapGroupNV(DisplayPtr, GLXDrawable, uint*, uint*) - nameWithType: Glx.NV.QuerySwapGroupNV(DisplayPtr, GLXDrawable, uint*, uint*) - fullName: OpenTK.Graphics.Glx.Glx.NV.QuerySwapGroupNV(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, uint*, uint*) - type: Method - source: - id: QuerySwapGroupNV - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs - startLine: 286 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_NV_swap_group] - - [entry point: glXQuerySwapGroupNV] - -
- example: [] - syntax: - content: public static bool QuerySwapGroupNV(DisplayPtr dpy, GLXDrawable drawable, uint* group, uint* barrier) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: drawable - type: OpenTK.Graphics.Glx.GLXDrawable - - id: group - type: System.UInt32* - - id: barrier - type: System.UInt32* - return: - type: System.Boolean - content.vb: Public Shared Function QuerySwapGroupNV(dpy As DisplayPtr, drawable As GLXDrawable, group As UInteger*, barrier As UInteger*) As Boolean - overload: OpenTK.Graphics.Glx.Glx.NV.QuerySwapGroupNV* - nameWithType.vb: Glx.NV.QuerySwapGroupNV(DisplayPtr, GLXDrawable, UInteger*, UInteger*) - fullName.vb: OpenTK.Graphics.Glx.Glx.NV.QuerySwapGroupNV(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, UInteger*, UInteger*) - name.vb: QuerySwapGroupNV(DisplayPtr, GLXDrawable, UInteger*, UInteger*) -- uid: OpenTK.Graphics.Glx.Glx.NV.QueryVideoCaptureDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV,System.Int32,System.Int32*) - commentId: M:OpenTK.Graphics.Glx.Glx.NV.QueryVideoCaptureDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV,System.Int32,System.Int32*) - id: QueryVideoCaptureDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV,System.Int32,System.Int32*) - parent: OpenTK.Graphics.Glx.Glx.NV - langs: - - csharp - - vb - name: QueryVideoCaptureDeviceNV(DisplayPtr, GLXVideoCaptureDeviceNV, int, int*) - nameWithType: Glx.NV.QueryVideoCaptureDeviceNV(DisplayPtr, GLXVideoCaptureDeviceNV, int, int*) - fullName: OpenTK.Graphics.Glx.Glx.NV.QueryVideoCaptureDeviceNV(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV, int, int*) - type: Method - source: - id: QueryVideoCaptureDeviceNV - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs - startLine: 289 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_NV_video_capture] - - [entry point: glXQueryVideoCaptureDeviceNV] - -
- example: [] - syntax: - content: public static int QueryVideoCaptureDeviceNV(DisplayPtr dpy, GLXVideoCaptureDeviceNV device, int attribute, int* value) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: device - type: OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV - - id: attribute - type: System.Int32 - - id: value - type: System.Int32* - return: - type: System.Int32 - content.vb: Public Shared Function QueryVideoCaptureDeviceNV(dpy As DisplayPtr, device As GLXVideoCaptureDeviceNV, attribute As Integer, value As Integer*) As Integer - overload: OpenTK.Graphics.Glx.Glx.NV.QueryVideoCaptureDeviceNV* - nameWithType.vb: Glx.NV.QueryVideoCaptureDeviceNV(DisplayPtr, GLXVideoCaptureDeviceNV, Integer, Integer*) - fullName.vb: OpenTK.Graphics.Glx.Glx.NV.QueryVideoCaptureDeviceNV(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV, Integer, Integer*) - name.vb: QueryVideoCaptureDeviceNV(DisplayPtr, GLXVideoCaptureDeviceNV, Integer, Integer*) -- uid: OpenTK.Graphics.Glx.Glx.NV.ReleaseVideoCaptureDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV) - commentId: M:OpenTK.Graphics.Glx.Glx.NV.ReleaseVideoCaptureDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV) - id: ReleaseVideoCaptureDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV) - parent: OpenTK.Graphics.Glx.Glx.NV - langs: - - csharp - - vb - name: ReleaseVideoCaptureDeviceNV(DisplayPtr, GLXVideoCaptureDeviceNV) - nameWithType: Glx.NV.ReleaseVideoCaptureDeviceNV(DisplayPtr, GLXVideoCaptureDeviceNV) - fullName: OpenTK.Graphics.Glx.Glx.NV.ReleaseVideoCaptureDeviceNV(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV) - type: Method - source: - id: ReleaseVideoCaptureDeviceNV - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs - startLine: 292 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_NV_video_capture] - - [entry point: glXReleaseVideoCaptureDeviceNV] - -
- example: [] - syntax: - content: public static void ReleaseVideoCaptureDeviceNV(DisplayPtr dpy, GLXVideoCaptureDeviceNV device) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: device - type: OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV - content.vb: Public Shared Sub ReleaseVideoCaptureDeviceNV(dpy As DisplayPtr, device As GLXVideoCaptureDeviceNV) - overload: OpenTK.Graphics.Glx.Glx.NV.ReleaseVideoCaptureDeviceNV* -- uid: OpenTK.Graphics.Glx.Glx.NV.ReleaseVideoDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,OpenTK.Graphics.Glx.GLXVideoDeviceNV) - commentId: M:OpenTK.Graphics.Glx.Glx.NV.ReleaseVideoDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,OpenTK.Graphics.Glx.GLXVideoDeviceNV) - id: ReleaseVideoDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,OpenTK.Graphics.Glx.GLXVideoDeviceNV) - parent: OpenTK.Graphics.Glx.Glx.NV - langs: - - csharp - - vb - name: ReleaseVideoDeviceNV(DisplayPtr, int, GLXVideoDeviceNV) - nameWithType: Glx.NV.ReleaseVideoDeviceNV(DisplayPtr, int, GLXVideoDeviceNV) - fullName: OpenTK.Graphics.Glx.Glx.NV.ReleaseVideoDeviceNV(OpenTK.Graphics.Glx.DisplayPtr, int, OpenTK.Graphics.Glx.GLXVideoDeviceNV) - type: Method - source: - id: ReleaseVideoDeviceNV - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs - startLine: 295 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_NV_video_out] - - [entry point: glXReleaseVideoDeviceNV] - -
- example: [] - syntax: - content: public static int ReleaseVideoDeviceNV(DisplayPtr dpy, int screen, GLXVideoDeviceNV VideoDevice) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: screen - type: System.Int32 - - id: VideoDevice - type: OpenTK.Graphics.Glx.GLXVideoDeviceNV - return: - type: System.Int32 - content.vb: Public Shared Function ReleaseVideoDeviceNV(dpy As DisplayPtr, screen As Integer, VideoDevice As GLXVideoDeviceNV) As Integer - overload: OpenTK.Graphics.Glx.Glx.NV.ReleaseVideoDeviceNV* - nameWithType.vb: Glx.NV.ReleaseVideoDeviceNV(DisplayPtr, Integer, GLXVideoDeviceNV) - fullName.vb: OpenTK.Graphics.Glx.Glx.NV.ReleaseVideoDeviceNV(OpenTK.Graphics.Glx.DisplayPtr, Integer, OpenTK.Graphics.Glx.GLXVideoDeviceNV) - name.vb: ReleaseVideoDeviceNV(DisplayPtr, Integer, GLXVideoDeviceNV) -- uid: OpenTK.Graphics.Glx.Glx.NV.ReleaseVideoImageNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXPbuffer) - commentId: M:OpenTK.Graphics.Glx.Glx.NV.ReleaseVideoImageNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXPbuffer) - id: ReleaseVideoImageNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXPbuffer) - parent: OpenTK.Graphics.Glx.Glx.NV - langs: - - csharp - - vb - name: ReleaseVideoImageNV(DisplayPtr, GLXPbuffer) - nameWithType: Glx.NV.ReleaseVideoImageNV(DisplayPtr, GLXPbuffer) - fullName: OpenTK.Graphics.Glx.Glx.NV.ReleaseVideoImageNV(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXPbuffer) - type: Method - source: - id: ReleaseVideoImageNV - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs - startLine: 298 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_NV_video_out] - - [entry point: glXReleaseVideoImageNV] - -
- example: [] - syntax: - content: public static int ReleaseVideoImageNV(DisplayPtr dpy, GLXPbuffer pbuf) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: pbuf - type: OpenTK.Graphics.Glx.GLXPbuffer - return: - type: System.Int32 - content.vb: Public Shared Function ReleaseVideoImageNV(dpy As DisplayPtr, pbuf As GLXPbuffer) As Integer - overload: OpenTK.Graphics.Glx.Glx.NV.ReleaseVideoImageNV* -- uid: OpenTK.Graphics.Glx.Glx.NV.ResetFrameCountNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32) - commentId: M:OpenTK.Graphics.Glx.Glx.NV.ResetFrameCountNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32) - id: ResetFrameCountNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32) - parent: OpenTK.Graphics.Glx.Glx.NV - langs: - - csharp - - vb - name: ResetFrameCountNV(DisplayPtr, int) - nameWithType: Glx.NV.ResetFrameCountNV(DisplayPtr, int) - fullName: OpenTK.Graphics.Glx.Glx.NV.ResetFrameCountNV(OpenTK.Graphics.Glx.DisplayPtr, int) - type: Method - source: - id: ResetFrameCountNV - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs - startLine: 301 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_NV_swap_group] - - [entry point: glXResetFrameCountNV] - -
- example: [] - syntax: - content: public static bool ResetFrameCountNV(DisplayPtr dpy, int screen) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: screen - type: System.Int32 - return: - type: System.Boolean - content.vb: Public Shared Function ResetFrameCountNV(dpy As DisplayPtr, screen As Integer) As Boolean - overload: OpenTK.Graphics.Glx.Glx.NV.ResetFrameCountNV* - nameWithType.vb: Glx.NV.ResetFrameCountNV(DisplayPtr, Integer) - fullName.vb: OpenTK.Graphics.Glx.Glx.NV.ResetFrameCountNV(OpenTK.Graphics.Glx.DisplayPtr, Integer) - name.vb: ResetFrameCountNV(DisplayPtr, Integer) -- uid: OpenTK.Graphics.Glx.Glx.NV.SendPbufferToVideoNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXPbuffer,System.Int32,System.UInt64*,System.Boolean) - commentId: M:OpenTK.Graphics.Glx.Glx.NV.SendPbufferToVideoNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXPbuffer,System.Int32,System.UInt64*,System.Boolean) - id: SendPbufferToVideoNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXPbuffer,System.Int32,System.UInt64*,System.Boolean) - parent: OpenTK.Graphics.Glx.Glx.NV - langs: - - csharp - - vb - name: SendPbufferToVideoNV(DisplayPtr, GLXPbuffer, int, ulong*, bool) - nameWithType: Glx.NV.SendPbufferToVideoNV(DisplayPtr, GLXPbuffer, int, ulong*, bool) - fullName: OpenTK.Graphics.Glx.Glx.NV.SendPbufferToVideoNV(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXPbuffer, int, ulong*, bool) - type: Method - source: - id: SendPbufferToVideoNV - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs - startLine: 304 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_NV_video_out] - - [entry point: glXSendPbufferToVideoNV] - -
- example: [] - syntax: - content: public static int SendPbufferToVideoNV(DisplayPtr dpy, GLXPbuffer pbuf, int iBufferType, ulong* pulCounterPbuffer, bool bBlock) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: pbuf - type: OpenTK.Graphics.Glx.GLXPbuffer - - id: iBufferType - type: System.Int32 - - id: pulCounterPbuffer - type: System.UInt64* - - id: bBlock - type: System.Boolean - return: - type: System.Int32 - content.vb: Public Shared Function SendPbufferToVideoNV(dpy As DisplayPtr, pbuf As GLXPbuffer, iBufferType As Integer, pulCounterPbuffer As ULong*, bBlock As Boolean) As Integer - overload: OpenTK.Graphics.Glx.Glx.NV.SendPbufferToVideoNV* - nameWithType.vb: Glx.NV.SendPbufferToVideoNV(DisplayPtr, GLXPbuffer, Integer, ULong*, Boolean) - fullName.vb: OpenTK.Graphics.Glx.Glx.NV.SendPbufferToVideoNV(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXPbuffer, Integer, ULong*, Boolean) - name.vb: SendPbufferToVideoNV(DisplayPtr, GLXPbuffer, Integer, ULong*, Boolean) -- uid: OpenTK.Graphics.Glx.Glx.NV.BindVideoDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,System.UInt32,System.UInt32,System.ReadOnlySpan{System.Int32}) - commentId: M:OpenTK.Graphics.Glx.Glx.NV.BindVideoDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,System.UInt32,System.UInt32,System.ReadOnlySpan{System.Int32}) - id: BindVideoDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,System.UInt32,System.UInt32,System.ReadOnlySpan{System.Int32}) - parent: OpenTK.Graphics.Glx.Glx.NV - langs: - - csharp - - vb - name: BindVideoDeviceNV(DisplayPtr, uint, uint, ReadOnlySpan) - nameWithType: Glx.NV.BindVideoDeviceNV(DisplayPtr, uint, uint, ReadOnlySpan) - fullName: OpenTK.Graphics.Glx.Glx.NV.BindVideoDeviceNV(OpenTK.Graphics.Glx.DisplayPtr, uint, uint, System.ReadOnlySpan) - type: Method - source: - id: BindVideoDeviceNV - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 818 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_NV_present_video] - - [entry point: glXBindVideoDeviceNV] - -
- example: [] - syntax: - content: public static int BindVideoDeviceNV(DisplayPtr dpy, uint video_slot, uint video_device, ReadOnlySpan attrib_list) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: video_slot - type: System.UInt32 - - id: video_device - type: System.UInt32 - - id: attrib_list - type: System.ReadOnlySpan{System.Int32} - return: - type: System.Int32 - content.vb: Public Shared Function BindVideoDeviceNV(dpy As DisplayPtr, video_slot As UInteger, video_device As UInteger, attrib_list As ReadOnlySpan(Of Integer)) As Integer - overload: OpenTK.Graphics.Glx.Glx.NV.BindVideoDeviceNV* - nameWithType.vb: Glx.NV.BindVideoDeviceNV(DisplayPtr, UInteger, UInteger, ReadOnlySpan(Of Integer)) - fullName.vb: OpenTK.Graphics.Glx.Glx.NV.BindVideoDeviceNV(OpenTK.Graphics.Glx.DisplayPtr, UInteger, UInteger, System.ReadOnlySpan(Of Integer)) - name.vb: BindVideoDeviceNV(DisplayPtr, UInteger, UInteger, ReadOnlySpan(Of Integer)) -- uid: OpenTK.Graphics.Glx.Glx.NV.BindVideoDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,System.UInt32,System.UInt32,System.Int32[]) - commentId: M:OpenTK.Graphics.Glx.Glx.NV.BindVideoDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,System.UInt32,System.UInt32,System.Int32[]) - id: BindVideoDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,System.UInt32,System.UInt32,System.Int32[]) - parent: OpenTK.Graphics.Glx.Glx.NV - langs: - - csharp - - vb - name: BindVideoDeviceNV(DisplayPtr, uint, uint, int[]) - nameWithType: Glx.NV.BindVideoDeviceNV(DisplayPtr, uint, uint, int[]) - fullName: OpenTK.Graphics.Glx.Glx.NV.BindVideoDeviceNV(OpenTK.Graphics.Glx.DisplayPtr, uint, uint, int[]) - type: Method - source: - id: BindVideoDeviceNV - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 828 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_NV_present_video] - - [entry point: glXBindVideoDeviceNV] - -
- example: [] - syntax: - content: public static int BindVideoDeviceNV(DisplayPtr dpy, uint video_slot, uint video_device, int[] attrib_list) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: video_slot - type: System.UInt32 - - id: video_device - type: System.UInt32 - - id: attrib_list - type: System.Int32[] - return: - type: System.Int32 - content.vb: Public Shared Function BindVideoDeviceNV(dpy As DisplayPtr, video_slot As UInteger, video_device As UInteger, attrib_list As Integer()) As Integer - overload: OpenTK.Graphics.Glx.Glx.NV.BindVideoDeviceNV* - nameWithType.vb: Glx.NV.BindVideoDeviceNV(DisplayPtr, UInteger, UInteger, Integer()) - fullName.vb: OpenTK.Graphics.Glx.Glx.NV.BindVideoDeviceNV(OpenTK.Graphics.Glx.DisplayPtr, UInteger, UInteger, Integer()) - name.vb: BindVideoDeviceNV(DisplayPtr, UInteger, UInteger, Integer()) -- uid: OpenTK.Graphics.Glx.Glx.NV.BindVideoDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,System.UInt32,System.UInt32,System.Int32@) - commentId: M:OpenTK.Graphics.Glx.Glx.NV.BindVideoDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,System.UInt32,System.UInt32,System.Int32@) - id: BindVideoDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,System.UInt32,System.UInt32,System.Int32@) - parent: OpenTK.Graphics.Glx.Glx.NV - langs: - - csharp - - vb - name: BindVideoDeviceNV(DisplayPtr, uint, uint, in int) - nameWithType: Glx.NV.BindVideoDeviceNV(DisplayPtr, uint, uint, in int) - fullName: OpenTK.Graphics.Glx.Glx.NV.BindVideoDeviceNV(OpenTK.Graphics.Glx.DisplayPtr, uint, uint, in int) - type: Method - source: - id: BindVideoDeviceNV - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 838 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_NV_present_video] - - [entry point: glXBindVideoDeviceNV] - -
- example: [] - syntax: - content: public static int BindVideoDeviceNV(DisplayPtr dpy, uint video_slot, uint video_device, in int attrib_list) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: video_slot - type: System.UInt32 - - id: video_device - type: System.UInt32 - - id: attrib_list - type: System.Int32 - return: - type: System.Int32 - content.vb: Public Shared Function BindVideoDeviceNV(dpy As DisplayPtr, video_slot As UInteger, video_device As UInteger, attrib_list As Integer) As Integer - overload: OpenTK.Graphics.Glx.Glx.NV.BindVideoDeviceNV* - nameWithType.vb: Glx.NV.BindVideoDeviceNV(DisplayPtr, UInteger, UInteger, Integer) - fullName.vb: OpenTK.Graphics.Glx.Glx.NV.BindVideoDeviceNV(OpenTK.Graphics.Glx.DisplayPtr, UInteger, UInteger, Integer) - name.vb: BindVideoDeviceNV(DisplayPtr, UInteger, UInteger, Integer) -- uid: OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoCaptureDevicesNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Span{System.Int32}) - commentId: M:OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoCaptureDevicesNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Span{System.Int32}) - id: EnumerateVideoCaptureDevicesNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Span{System.Int32}) - parent: OpenTK.Graphics.Glx.Glx.NV - langs: - - csharp - - vb - name: EnumerateVideoCaptureDevicesNV(DisplayPtr, int, Span) - nameWithType: Glx.NV.EnumerateVideoCaptureDevicesNV(DisplayPtr, int, Span) - fullName: OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoCaptureDevicesNV(OpenTK.Graphics.Glx.DisplayPtr, int, System.Span) - type: Method - source: - id: EnumerateVideoCaptureDevicesNV - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 848 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_NV_video_capture] - - [entry point: glXEnumerateVideoCaptureDevicesNV] - -
- example: [] - syntax: - content: public static GLXVideoCaptureDeviceNV* EnumerateVideoCaptureDevicesNV(DisplayPtr dpy, int screen, Span nelements) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: screen - type: System.Int32 - - id: nelements - type: System.Span{System.Int32} - return: - type: OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV* - content.vb: Public Shared Function EnumerateVideoCaptureDevicesNV(dpy As DisplayPtr, screen As Integer, nelements As Span(Of Integer)) As GLXVideoCaptureDeviceNV* - overload: OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoCaptureDevicesNV* - nameWithType.vb: Glx.NV.EnumerateVideoCaptureDevicesNV(DisplayPtr, Integer, Span(Of Integer)) - fullName.vb: OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoCaptureDevicesNV(OpenTK.Graphics.Glx.DisplayPtr, Integer, System.Span(Of Integer)) - name.vb: EnumerateVideoCaptureDevicesNV(DisplayPtr, Integer, Span(Of Integer)) -- uid: OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoCaptureDevicesNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32[]) - commentId: M:OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoCaptureDevicesNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32[]) - id: EnumerateVideoCaptureDevicesNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32[]) - parent: OpenTK.Graphics.Glx.Glx.NV - langs: - - csharp - - vb - name: EnumerateVideoCaptureDevicesNV(DisplayPtr, int, int[]) - nameWithType: Glx.NV.EnumerateVideoCaptureDevicesNV(DisplayPtr, int, int[]) - fullName: OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoCaptureDevicesNV(OpenTK.Graphics.Glx.DisplayPtr, int, int[]) - type: Method - source: - id: EnumerateVideoCaptureDevicesNV - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 858 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_NV_video_capture] - - [entry point: glXEnumerateVideoCaptureDevicesNV] - -
- example: [] - syntax: - content: public static GLXVideoCaptureDeviceNV* EnumerateVideoCaptureDevicesNV(DisplayPtr dpy, int screen, int[] nelements) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: screen - type: System.Int32 - - id: nelements - type: System.Int32[] - return: - type: OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV* - content.vb: Public Shared Function EnumerateVideoCaptureDevicesNV(dpy As DisplayPtr, screen As Integer, nelements As Integer()) As GLXVideoCaptureDeviceNV* - overload: OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoCaptureDevicesNV* - nameWithType.vb: Glx.NV.EnumerateVideoCaptureDevicesNV(DisplayPtr, Integer, Integer()) - fullName.vb: OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoCaptureDevicesNV(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer()) - name.vb: EnumerateVideoCaptureDevicesNV(DisplayPtr, Integer, Integer()) -- uid: OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoCaptureDevicesNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32@) - commentId: M:OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoCaptureDevicesNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32@) - id: EnumerateVideoCaptureDevicesNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32@) - parent: OpenTK.Graphics.Glx.Glx.NV - langs: - - csharp - - vb - name: EnumerateVideoCaptureDevicesNV(DisplayPtr, int, ref int) - nameWithType: Glx.NV.EnumerateVideoCaptureDevicesNV(DisplayPtr, int, ref int) - fullName: OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoCaptureDevicesNV(OpenTK.Graphics.Glx.DisplayPtr, int, ref int) - type: Method - source: - id: EnumerateVideoCaptureDevicesNV - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 868 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_NV_video_capture] - - [entry point: glXEnumerateVideoCaptureDevicesNV] - -
- example: [] - syntax: - content: public static GLXVideoCaptureDeviceNV* EnumerateVideoCaptureDevicesNV(DisplayPtr dpy, int screen, ref int nelements) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: screen - type: System.Int32 - - id: nelements - type: System.Int32 - return: - type: OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV* - content.vb: Public Shared Function EnumerateVideoCaptureDevicesNV(dpy As DisplayPtr, screen As Integer, nelements As Integer) As GLXVideoCaptureDeviceNV* - overload: OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoCaptureDevicesNV* - nameWithType.vb: Glx.NV.EnumerateVideoCaptureDevicesNV(DisplayPtr, Integer, Integer) - fullName.vb: OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoCaptureDevicesNV(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer) - name.vb: EnumerateVideoCaptureDevicesNV(DisplayPtr, Integer, Integer) -- uid: OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoDevicesNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Span{System.Int32}) - commentId: M:OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoDevicesNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Span{System.Int32}) - id: EnumerateVideoDevicesNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Span{System.Int32}) - parent: OpenTK.Graphics.Glx.Glx.NV - langs: - - csharp - - vb - name: EnumerateVideoDevicesNV(DisplayPtr, int, Span) - nameWithType: Glx.NV.EnumerateVideoDevicesNV(DisplayPtr, int, Span) - fullName: OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoDevicesNV(OpenTK.Graphics.Glx.DisplayPtr, int, System.Span) - type: Method - source: - id: EnumerateVideoDevicesNV - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 878 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_NV_present_video] - - [entry point: glXEnumerateVideoDevicesNV] - -
- example: [] - syntax: - content: public static uint* EnumerateVideoDevicesNV(DisplayPtr dpy, int screen, Span nelements) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: screen - type: System.Int32 - - id: nelements - type: System.Span{System.Int32} - return: - type: System.UInt32* - content.vb: Public Shared Function EnumerateVideoDevicesNV(dpy As DisplayPtr, screen As Integer, nelements As Span(Of Integer)) As UInteger* - overload: OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoDevicesNV* - nameWithType.vb: Glx.NV.EnumerateVideoDevicesNV(DisplayPtr, Integer, Span(Of Integer)) - fullName.vb: OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoDevicesNV(OpenTK.Graphics.Glx.DisplayPtr, Integer, System.Span(Of Integer)) - name.vb: EnumerateVideoDevicesNV(DisplayPtr, Integer, Span(Of Integer)) -- uid: OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoDevicesNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32[]) - commentId: M:OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoDevicesNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32[]) - id: EnumerateVideoDevicesNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32[]) - parent: OpenTK.Graphics.Glx.Glx.NV - langs: - - csharp - - vb - name: EnumerateVideoDevicesNV(DisplayPtr, int, int[]) - nameWithType: Glx.NV.EnumerateVideoDevicesNV(DisplayPtr, int, int[]) - fullName: OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoDevicesNV(OpenTK.Graphics.Glx.DisplayPtr, int, int[]) - type: Method - source: - id: EnumerateVideoDevicesNV - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 888 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_NV_present_video] - - [entry point: glXEnumerateVideoDevicesNV] - -
- example: [] - syntax: - content: public static uint* EnumerateVideoDevicesNV(DisplayPtr dpy, int screen, int[] nelements) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: screen - type: System.Int32 - - id: nelements - type: System.Int32[] - return: - type: System.UInt32* - content.vb: Public Shared Function EnumerateVideoDevicesNV(dpy As DisplayPtr, screen As Integer, nelements As Integer()) As UInteger* - overload: OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoDevicesNV* - nameWithType.vb: Glx.NV.EnumerateVideoDevicesNV(DisplayPtr, Integer, Integer()) - fullName.vb: OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoDevicesNV(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer()) - name.vb: EnumerateVideoDevicesNV(DisplayPtr, Integer, Integer()) -- uid: OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoDevicesNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32@) - commentId: M:OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoDevicesNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32@) - id: EnumerateVideoDevicesNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32@) - parent: OpenTK.Graphics.Glx.Glx.NV - langs: - - csharp - - vb - name: EnumerateVideoDevicesNV(DisplayPtr, int, ref int) - nameWithType: Glx.NV.EnumerateVideoDevicesNV(DisplayPtr, int, ref int) - fullName: OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoDevicesNV(OpenTK.Graphics.Glx.DisplayPtr, int, ref int) - type: Method - source: - id: EnumerateVideoDevicesNV - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 898 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_NV_present_video] - - [entry point: glXEnumerateVideoDevicesNV] - -
- example: [] - syntax: - content: public static uint* EnumerateVideoDevicesNV(DisplayPtr dpy, int screen, ref int nelements) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: screen - type: System.Int32 - - id: nelements - type: System.Int32 - return: - type: System.UInt32* - content.vb: Public Shared Function EnumerateVideoDevicesNV(dpy As DisplayPtr, screen As Integer, nelements As Integer) As UInteger* - overload: OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoDevicesNV* - nameWithType.vb: Glx.NV.EnumerateVideoDevicesNV(DisplayPtr, Integer, Integer) - fullName.vb: OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoDevicesNV(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer) - name.vb: EnumerateVideoDevicesNV(DisplayPtr, Integer, Integer) -- uid: OpenTK.Graphics.Glx.Glx.NV.GetVideoDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Span{OpenTK.Graphics.Glx.GLXVideoDeviceNV}) - commentId: M:OpenTK.Graphics.Glx.Glx.NV.GetVideoDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Span{OpenTK.Graphics.Glx.GLXVideoDeviceNV}) - id: GetVideoDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Span{OpenTK.Graphics.Glx.GLXVideoDeviceNV}) - parent: OpenTK.Graphics.Glx.Glx.NV - langs: - - csharp - - vb - name: GetVideoDeviceNV(DisplayPtr, int, int, Span) - nameWithType: Glx.NV.GetVideoDeviceNV(DisplayPtr, int, int, Span) - fullName: OpenTK.Graphics.Glx.Glx.NV.GetVideoDeviceNV(OpenTK.Graphics.Glx.DisplayPtr, int, int, System.Span) - type: Method - source: - id: GetVideoDeviceNV - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 908 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_NV_video_out] - - [entry point: glXGetVideoDeviceNV] - -
- example: [] - syntax: - content: public static int GetVideoDeviceNV(DisplayPtr dpy, int screen, int numVideoDevices, Span pVideoDevice) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: screen - type: System.Int32 - - id: numVideoDevices - type: System.Int32 - - id: pVideoDevice - type: System.Span{OpenTK.Graphics.Glx.GLXVideoDeviceNV} - return: - type: System.Int32 - content.vb: Public Shared Function GetVideoDeviceNV(dpy As DisplayPtr, screen As Integer, numVideoDevices As Integer, pVideoDevice As Span(Of GLXVideoDeviceNV)) As Integer - overload: OpenTK.Graphics.Glx.Glx.NV.GetVideoDeviceNV* - nameWithType.vb: Glx.NV.GetVideoDeviceNV(DisplayPtr, Integer, Integer, Span(Of GLXVideoDeviceNV)) - fullName.vb: OpenTK.Graphics.Glx.Glx.NV.GetVideoDeviceNV(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer, System.Span(Of OpenTK.Graphics.Glx.GLXVideoDeviceNV)) - name.vb: GetVideoDeviceNV(DisplayPtr, Integer, Integer, Span(Of GLXVideoDeviceNV)) -- uid: OpenTK.Graphics.Glx.Glx.NV.GetVideoDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,OpenTK.Graphics.Glx.GLXVideoDeviceNV[]) - commentId: M:OpenTK.Graphics.Glx.Glx.NV.GetVideoDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,OpenTK.Graphics.Glx.GLXVideoDeviceNV[]) - id: GetVideoDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,OpenTK.Graphics.Glx.GLXVideoDeviceNV[]) - parent: OpenTK.Graphics.Glx.Glx.NV - langs: - - csharp - - vb - name: GetVideoDeviceNV(DisplayPtr, int, int, GLXVideoDeviceNV[]) - nameWithType: Glx.NV.GetVideoDeviceNV(DisplayPtr, int, int, GLXVideoDeviceNV[]) - fullName: OpenTK.Graphics.Glx.Glx.NV.GetVideoDeviceNV(OpenTK.Graphics.Glx.DisplayPtr, int, int, OpenTK.Graphics.Glx.GLXVideoDeviceNV[]) - type: Method - source: - id: GetVideoDeviceNV - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 918 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_NV_video_out] - - [entry point: glXGetVideoDeviceNV] - -
- example: [] - syntax: - content: public static int GetVideoDeviceNV(DisplayPtr dpy, int screen, int numVideoDevices, GLXVideoDeviceNV[] pVideoDevice) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: screen - type: System.Int32 - - id: numVideoDevices - type: System.Int32 - - id: pVideoDevice - type: OpenTK.Graphics.Glx.GLXVideoDeviceNV[] - return: - type: System.Int32 - content.vb: Public Shared Function GetVideoDeviceNV(dpy As DisplayPtr, screen As Integer, numVideoDevices As Integer, pVideoDevice As GLXVideoDeviceNV()) As Integer - overload: OpenTK.Graphics.Glx.Glx.NV.GetVideoDeviceNV* - nameWithType.vb: Glx.NV.GetVideoDeviceNV(DisplayPtr, Integer, Integer, GLXVideoDeviceNV()) - fullName.vb: OpenTK.Graphics.Glx.Glx.NV.GetVideoDeviceNV(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer, OpenTK.Graphics.Glx.GLXVideoDeviceNV()) - name.vb: GetVideoDeviceNV(DisplayPtr, Integer, Integer, GLXVideoDeviceNV()) -- uid: OpenTK.Graphics.Glx.Glx.NV.GetVideoDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,OpenTK.Graphics.Glx.GLXVideoDeviceNV@) - commentId: M:OpenTK.Graphics.Glx.Glx.NV.GetVideoDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,OpenTK.Graphics.Glx.GLXVideoDeviceNV@) - id: GetVideoDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,OpenTK.Graphics.Glx.GLXVideoDeviceNV@) - parent: OpenTK.Graphics.Glx.Glx.NV - langs: - - csharp - - vb - name: GetVideoDeviceNV(DisplayPtr, int, int, ref GLXVideoDeviceNV) - nameWithType: Glx.NV.GetVideoDeviceNV(DisplayPtr, int, int, ref GLXVideoDeviceNV) - fullName: OpenTK.Graphics.Glx.Glx.NV.GetVideoDeviceNV(OpenTK.Graphics.Glx.DisplayPtr, int, int, ref OpenTK.Graphics.Glx.GLXVideoDeviceNV) - type: Method - source: - id: GetVideoDeviceNV - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 928 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_NV_video_out] - - [entry point: glXGetVideoDeviceNV] - -
- example: [] - syntax: - content: public static int GetVideoDeviceNV(DisplayPtr dpy, int screen, int numVideoDevices, ref GLXVideoDeviceNV pVideoDevice) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: screen - type: System.Int32 - - id: numVideoDevices - type: System.Int32 - - id: pVideoDevice - type: OpenTK.Graphics.Glx.GLXVideoDeviceNV - return: - type: System.Int32 - content.vb: Public Shared Function GetVideoDeviceNV(dpy As DisplayPtr, screen As Integer, numVideoDevices As Integer, pVideoDevice As GLXVideoDeviceNV) As Integer - overload: OpenTK.Graphics.Glx.Glx.NV.GetVideoDeviceNV* - nameWithType.vb: Glx.NV.GetVideoDeviceNV(DisplayPtr, Integer, Integer, GLXVideoDeviceNV) - fullName.vb: OpenTK.Graphics.Glx.Glx.NV.GetVideoDeviceNV(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer, OpenTK.Graphics.Glx.GLXVideoDeviceNV) - name.vb: GetVideoDeviceNV(DisplayPtr, Integer, Integer, GLXVideoDeviceNV) -- uid: OpenTK.Graphics.Glx.Glx.NV.GetVideoInfoNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,OpenTK.Graphics.Glx.GLXVideoDeviceNV,System.Span{System.UInt64},System.Span{System.UInt64}) - commentId: M:OpenTK.Graphics.Glx.Glx.NV.GetVideoInfoNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,OpenTK.Graphics.Glx.GLXVideoDeviceNV,System.Span{System.UInt64},System.Span{System.UInt64}) - id: GetVideoInfoNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,OpenTK.Graphics.Glx.GLXVideoDeviceNV,System.Span{System.UInt64},System.Span{System.UInt64}) - parent: OpenTK.Graphics.Glx.Glx.NV - langs: - - csharp - - vb - name: GetVideoInfoNV(DisplayPtr, int, GLXVideoDeviceNV, Span, Span) - nameWithType: Glx.NV.GetVideoInfoNV(DisplayPtr, int, GLXVideoDeviceNV, Span, Span) - fullName: OpenTK.Graphics.Glx.Glx.NV.GetVideoInfoNV(OpenTK.Graphics.Glx.DisplayPtr, int, OpenTK.Graphics.Glx.GLXVideoDeviceNV, System.Span, System.Span) - type: Method - source: - id: GetVideoInfoNV - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 938 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_NV_video_out] - - [entry point: glXGetVideoInfoNV] - -
- example: [] - syntax: - content: public static int GetVideoInfoNV(DisplayPtr dpy, int screen, GLXVideoDeviceNV VideoDevice, Span pulCounterOutputPbuffer, Span pulCounterOutputVideo) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: screen - type: System.Int32 - - id: VideoDevice - type: OpenTK.Graphics.Glx.GLXVideoDeviceNV - - id: pulCounterOutputPbuffer - type: System.Span{System.UInt64} - - id: pulCounterOutputVideo - type: System.Span{System.UInt64} - return: - type: System.Int32 - content.vb: Public Shared Function GetVideoInfoNV(dpy As DisplayPtr, screen As Integer, VideoDevice As GLXVideoDeviceNV, pulCounterOutputPbuffer As Span(Of ULong), pulCounterOutputVideo As Span(Of ULong)) As Integer - overload: OpenTK.Graphics.Glx.Glx.NV.GetVideoInfoNV* - nameWithType.vb: Glx.NV.GetVideoInfoNV(DisplayPtr, Integer, GLXVideoDeviceNV, Span(Of ULong), Span(Of ULong)) - fullName.vb: OpenTK.Graphics.Glx.Glx.NV.GetVideoInfoNV(OpenTK.Graphics.Glx.DisplayPtr, Integer, OpenTK.Graphics.Glx.GLXVideoDeviceNV, System.Span(Of ULong), System.Span(Of ULong)) - name.vb: GetVideoInfoNV(DisplayPtr, Integer, GLXVideoDeviceNV, Span(Of ULong), Span(Of ULong)) -- uid: OpenTK.Graphics.Glx.Glx.NV.GetVideoInfoNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,OpenTK.Graphics.Glx.GLXVideoDeviceNV,System.UInt64[],System.UInt64[]) - commentId: M:OpenTK.Graphics.Glx.Glx.NV.GetVideoInfoNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,OpenTK.Graphics.Glx.GLXVideoDeviceNV,System.UInt64[],System.UInt64[]) - id: GetVideoInfoNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,OpenTK.Graphics.Glx.GLXVideoDeviceNV,System.UInt64[],System.UInt64[]) - parent: OpenTK.Graphics.Glx.Glx.NV - langs: - - csharp - - vb - name: GetVideoInfoNV(DisplayPtr, int, GLXVideoDeviceNV, ulong[], ulong[]) - nameWithType: Glx.NV.GetVideoInfoNV(DisplayPtr, int, GLXVideoDeviceNV, ulong[], ulong[]) - fullName: OpenTK.Graphics.Glx.Glx.NV.GetVideoInfoNV(OpenTK.Graphics.Glx.DisplayPtr, int, OpenTK.Graphics.Glx.GLXVideoDeviceNV, ulong[], ulong[]) - type: Method - source: - id: GetVideoInfoNV - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 951 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_NV_video_out] - - [entry point: glXGetVideoInfoNV] - -
- example: [] - syntax: - content: public static int GetVideoInfoNV(DisplayPtr dpy, int screen, GLXVideoDeviceNV VideoDevice, ulong[] pulCounterOutputPbuffer, ulong[] pulCounterOutputVideo) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: screen - type: System.Int32 - - id: VideoDevice - type: OpenTK.Graphics.Glx.GLXVideoDeviceNV - - id: pulCounterOutputPbuffer - type: System.UInt64[] - - id: pulCounterOutputVideo - type: System.UInt64[] - return: - type: System.Int32 - content.vb: Public Shared Function GetVideoInfoNV(dpy As DisplayPtr, screen As Integer, VideoDevice As GLXVideoDeviceNV, pulCounterOutputPbuffer As ULong(), pulCounterOutputVideo As ULong()) As Integer - overload: OpenTK.Graphics.Glx.Glx.NV.GetVideoInfoNV* - nameWithType.vb: Glx.NV.GetVideoInfoNV(DisplayPtr, Integer, GLXVideoDeviceNV, ULong(), ULong()) - fullName.vb: OpenTK.Graphics.Glx.Glx.NV.GetVideoInfoNV(OpenTK.Graphics.Glx.DisplayPtr, Integer, OpenTK.Graphics.Glx.GLXVideoDeviceNV, ULong(), ULong()) - name.vb: GetVideoInfoNV(DisplayPtr, Integer, GLXVideoDeviceNV, ULong(), ULong()) -- uid: OpenTK.Graphics.Glx.Glx.NV.GetVideoInfoNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,OpenTK.Graphics.Glx.GLXVideoDeviceNV,System.UInt64@,System.UInt64@) - commentId: M:OpenTK.Graphics.Glx.Glx.NV.GetVideoInfoNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,OpenTK.Graphics.Glx.GLXVideoDeviceNV,System.UInt64@,System.UInt64@) - id: GetVideoInfoNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,OpenTK.Graphics.Glx.GLXVideoDeviceNV,System.UInt64@,System.UInt64@) - parent: OpenTK.Graphics.Glx.Glx.NV - langs: - - csharp - - vb - name: GetVideoInfoNV(DisplayPtr, int, GLXVideoDeviceNV, ref ulong, ref ulong) - nameWithType: Glx.NV.GetVideoInfoNV(DisplayPtr, int, GLXVideoDeviceNV, ref ulong, ref ulong) - fullName: OpenTK.Graphics.Glx.Glx.NV.GetVideoInfoNV(OpenTK.Graphics.Glx.DisplayPtr, int, OpenTK.Graphics.Glx.GLXVideoDeviceNV, ref ulong, ref ulong) - type: Method - source: - id: GetVideoInfoNV - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 964 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_NV_video_out] - - [entry point: glXGetVideoInfoNV] - -
- example: [] - syntax: - content: public static int GetVideoInfoNV(DisplayPtr dpy, int screen, GLXVideoDeviceNV VideoDevice, ref ulong pulCounterOutputPbuffer, ref ulong pulCounterOutputVideo) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: screen - type: System.Int32 - - id: VideoDevice - type: OpenTK.Graphics.Glx.GLXVideoDeviceNV - - id: pulCounterOutputPbuffer - type: System.UInt64 - - id: pulCounterOutputVideo - type: System.UInt64 - return: - type: System.Int32 - content.vb: Public Shared Function GetVideoInfoNV(dpy As DisplayPtr, screen As Integer, VideoDevice As GLXVideoDeviceNV, pulCounterOutputPbuffer As ULong, pulCounterOutputVideo As ULong) As Integer - overload: OpenTK.Graphics.Glx.Glx.NV.GetVideoInfoNV* - nameWithType.vb: Glx.NV.GetVideoInfoNV(DisplayPtr, Integer, GLXVideoDeviceNV, ULong, ULong) - fullName.vb: OpenTK.Graphics.Glx.Glx.NV.GetVideoInfoNV(OpenTK.Graphics.Glx.DisplayPtr, Integer, OpenTK.Graphics.Glx.GLXVideoDeviceNV, ULong, ULong) - name.vb: GetVideoInfoNV(DisplayPtr, Integer, GLXVideoDeviceNV, ULong, ULong) -- uid: OpenTK.Graphics.Glx.Glx.NV.QueryFrameCountNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Span{System.UInt32}) - commentId: M:OpenTK.Graphics.Glx.Glx.NV.QueryFrameCountNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Span{System.UInt32}) - id: QueryFrameCountNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Span{System.UInt32}) - parent: OpenTK.Graphics.Glx.Glx.NV - langs: - - csharp - - vb - name: QueryFrameCountNV(DisplayPtr, int, Span) - nameWithType: Glx.NV.QueryFrameCountNV(DisplayPtr, int, Span) - fullName: OpenTK.Graphics.Glx.Glx.NV.QueryFrameCountNV(OpenTK.Graphics.Glx.DisplayPtr, int, System.Span) - type: Method - source: - id: QueryFrameCountNV - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 975 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_NV_swap_group] - - [entry point: glXQueryFrameCountNV] - -
- example: [] - syntax: - content: public static bool QueryFrameCountNV(DisplayPtr dpy, int screen, Span count) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: screen - type: System.Int32 - - id: count - type: System.Span{System.UInt32} - return: - type: System.Boolean - content.vb: Public Shared Function QueryFrameCountNV(dpy As DisplayPtr, screen As Integer, count As Span(Of UInteger)) As Boolean - overload: OpenTK.Graphics.Glx.Glx.NV.QueryFrameCountNV* - nameWithType.vb: Glx.NV.QueryFrameCountNV(DisplayPtr, Integer, Span(Of UInteger)) - fullName.vb: OpenTK.Graphics.Glx.Glx.NV.QueryFrameCountNV(OpenTK.Graphics.Glx.DisplayPtr, Integer, System.Span(Of UInteger)) - name.vb: QueryFrameCountNV(DisplayPtr, Integer, Span(Of UInteger)) -- uid: OpenTK.Graphics.Glx.Glx.NV.QueryFrameCountNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.UInt32[]) - commentId: M:OpenTK.Graphics.Glx.Glx.NV.QueryFrameCountNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.UInt32[]) - id: QueryFrameCountNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.UInt32[]) - parent: OpenTK.Graphics.Glx.Glx.NV - langs: - - csharp - - vb - name: QueryFrameCountNV(DisplayPtr, int, uint[]) - nameWithType: Glx.NV.QueryFrameCountNV(DisplayPtr, int, uint[]) - fullName: OpenTK.Graphics.Glx.Glx.NV.QueryFrameCountNV(OpenTK.Graphics.Glx.DisplayPtr, int, uint[]) - type: Method - source: - id: QueryFrameCountNV - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 985 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_NV_swap_group] - - [entry point: glXQueryFrameCountNV] - -
- example: [] - syntax: - content: public static bool QueryFrameCountNV(DisplayPtr dpy, int screen, uint[] count) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: screen - type: System.Int32 - - id: count - type: System.UInt32[] - return: - type: System.Boolean - content.vb: Public Shared Function QueryFrameCountNV(dpy As DisplayPtr, screen As Integer, count As UInteger()) As Boolean - overload: OpenTK.Graphics.Glx.Glx.NV.QueryFrameCountNV* - nameWithType.vb: Glx.NV.QueryFrameCountNV(DisplayPtr, Integer, UInteger()) - fullName.vb: OpenTK.Graphics.Glx.Glx.NV.QueryFrameCountNV(OpenTK.Graphics.Glx.DisplayPtr, Integer, UInteger()) - name.vb: QueryFrameCountNV(DisplayPtr, Integer, UInteger()) -- uid: OpenTK.Graphics.Glx.Glx.NV.QueryFrameCountNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.UInt32@) - commentId: M:OpenTK.Graphics.Glx.Glx.NV.QueryFrameCountNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.UInt32@) - id: QueryFrameCountNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.UInt32@) - parent: OpenTK.Graphics.Glx.Glx.NV - langs: - - csharp - - vb - name: QueryFrameCountNV(DisplayPtr, int, ref uint) - nameWithType: Glx.NV.QueryFrameCountNV(DisplayPtr, int, ref uint) - fullName: OpenTK.Graphics.Glx.Glx.NV.QueryFrameCountNV(OpenTK.Graphics.Glx.DisplayPtr, int, ref uint) - type: Method - source: - id: QueryFrameCountNV - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 995 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_NV_swap_group] - - [entry point: glXQueryFrameCountNV] - -
- example: [] - syntax: - content: public static bool QueryFrameCountNV(DisplayPtr dpy, int screen, ref uint count) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: screen - type: System.Int32 - - id: count - type: System.UInt32 - return: - type: System.Boolean - content.vb: Public Shared Function QueryFrameCountNV(dpy As DisplayPtr, screen As Integer, count As UInteger) As Boolean - overload: OpenTK.Graphics.Glx.Glx.NV.QueryFrameCountNV* - nameWithType.vb: Glx.NV.QueryFrameCountNV(DisplayPtr, Integer, UInteger) - fullName.vb: OpenTK.Graphics.Glx.Glx.NV.QueryFrameCountNV(OpenTK.Graphics.Glx.DisplayPtr, Integer, UInteger) - name.vb: QueryFrameCountNV(DisplayPtr, Integer, UInteger) -- uid: OpenTK.Graphics.Glx.Glx.NV.QueryMaxSwapGroupsNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Span{System.UInt32},System.Span{System.UInt32}) - commentId: M:OpenTK.Graphics.Glx.Glx.NV.QueryMaxSwapGroupsNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Span{System.UInt32},System.Span{System.UInt32}) - id: QueryMaxSwapGroupsNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Span{System.UInt32},System.Span{System.UInt32}) - parent: OpenTK.Graphics.Glx.Glx.NV - langs: - - csharp - - vb - name: QueryMaxSwapGroupsNV(DisplayPtr, int, Span, Span) - nameWithType: Glx.NV.QueryMaxSwapGroupsNV(DisplayPtr, int, Span, Span) - fullName: OpenTK.Graphics.Glx.Glx.NV.QueryMaxSwapGroupsNV(OpenTK.Graphics.Glx.DisplayPtr, int, System.Span, System.Span) - type: Method - source: - id: QueryMaxSwapGroupsNV - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 1005 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_NV_swap_group] - - [entry point: glXQueryMaxSwapGroupsNV] - -
- example: [] - syntax: - content: public static bool QueryMaxSwapGroupsNV(DisplayPtr dpy, int screen, Span maxGroups, Span maxBarriers) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: screen - type: System.Int32 - - id: maxGroups - type: System.Span{System.UInt32} - - id: maxBarriers - type: System.Span{System.UInt32} - return: - type: System.Boolean - content.vb: Public Shared Function QueryMaxSwapGroupsNV(dpy As DisplayPtr, screen As Integer, maxGroups As Span(Of UInteger), maxBarriers As Span(Of UInteger)) As Boolean - overload: OpenTK.Graphics.Glx.Glx.NV.QueryMaxSwapGroupsNV* - nameWithType.vb: Glx.NV.QueryMaxSwapGroupsNV(DisplayPtr, Integer, Span(Of UInteger), Span(Of UInteger)) - fullName.vb: OpenTK.Graphics.Glx.Glx.NV.QueryMaxSwapGroupsNV(OpenTK.Graphics.Glx.DisplayPtr, Integer, System.Span(Of UInteger), System.Span(Of UInteger)) - name.vb: QueryMaxSwapGroupsNV(DisplayPtr, Integer, Span(Of UInteger), Span(Of UInteger)) -- uid: OpenTK.Graphics.Glx.Glx.NV.QueryMaxSwapGroupsNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.UInt32[],System.UInt32[]) - commentId: M:OpenTK.Graphics.Glx.Glx.NV.QueryMaxSwapGroupsNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.UInt32[],System.UInt32[]) - id: QueryMaxSwapGroupsNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.UInt32[],System.UInt32[]) - parent: OpenTK.Graphics.Glx.Glx.NV - langs: - - csharp - - vb - name: QueryMaxSwapGroupsNV(DisplayPtr, int, uint[], uint[]) - nameWithType: Glx.NV.QueryMaxSwapGroupsNV(DisplayPtr, int, uint[], uint[]) - fullName: OpenTK.Graphics.Glx.Glx.NV.QueryMaxSwapGroupsNV(OpenTK.Graphics.Glx.DisplayPtr, int, uint[], uint[]) - type: Method - source: - id: QueryMaxSwapGroupsNV - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 1018 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_NV_swap_group] - - [entry point: glXQueryMaxSwapGroupsNV] - -
- example: [] - syntax: - content: public static bool QueryMaxSwapGroupsNV(DisplayPtr dpy, int screen, uint[] maxGroups, uint[] maxBarriers) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: screen - type: System.Int32 - - id: maxGroups - type: System.UInt32[] - - id: maxBarriers - type: System.UInt32[] - return: - type: System.Boolean - content.vb: Public Shared Function QueryMaxSwapGroupsNV(dpy As DisplayPtr, screen As Integer, maxGroups As UInteger(), maxBarriers As UInteger()) As Boolean - overload: OpenTK.Graphics.Glx.Glx.NV.QueryMaxSwapGroupsNV* - nameWithType.vb: Glx.NV.QueryMaxSwapGroupsNV(DisplayPtr, Integer, UInteger(), UInteger()) - fullName.vb: OpenTK.Graphics.Glx.Glx.NV.QueryMaxSwapGroupsNV(OpenTK.Graphics.Glx.DisplayPtr, Integer, UInteger(), UInteger()) - name.vb: QueryMaxSwapGroupsNV(DisplayPtr, Integer, UInteger(), UInteger()) -- uid: OpenTK.Graphics.Glx.Glx.NV.QueryMaxSwapGroupsNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.UInt32@,System.UInt32@) - commentId: M:OpenTK.Graphics.Glx.Glx.NV.QueryMaxSwapGroupsNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.UInt32@,System.UInt32@) - id: QueryMaxSwapGroupsNV(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.UInt32@,System.UInt32@) - parent: OpenTK.Graphics.Glx.Glx.NV - langs: - - csharp - - vb - name: QueryMaxSwapGroupsNV(DisplayPtr, int, ref uint, ref uint) - nameWithType: Glx.NV.QueryMaxSwapGroupsNV(DisplayPtr, int, ref uint, ref uint) - fullName: OpenTK.Graphics.Glx.Glx.NV.QueryMaxSwapGroupsNV(OpenTK.Graphics.Glx.DisplayPtr, int, ref uint, ref uint) - type: Method - source: - id: QueryMaxSwapGroupsNV - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 1031 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_NV_swap_group] - - [entry point: glXQueryMaxSwapGroupsNV] - -
- example: [] - syntax: - content: public static bool QueryMaxSwapGroupsNV(DisplayPtr dpy, int screen, ref uint maxGroups, ref uint maxBarriers) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: screen - type: System.Int32 - - id: maxGroups - type: System.UInt32 - - id: maxBarriers - type: System.UInt32 - return: - type: System.Boolean - content.vb: Public Shared Function QueryMaxSwapGroupsNV(dpy As DisplayPtr, screen As Integer, maxGroups As UInteger, maxBarriers As UInteger) As Boolean - overload: OpenTK.Graphics.Glx.Glx.NV.QueryMaxSwapGroupsNV* - nameWithType.vb: Glx.NV.QueryMaxSwapGroupsNV(DisplayPtr, Integer, UInteger, UInteger) - fullName.vb: OpenTK.Graphics.Glx.Glx.NV.QueryMaxSwapGroupsNV(OpenTK.Graphics.Glx.DisplayPtr, Integer, UInteger, UInteger) - name.vb: QueryMaxSwapGroupsNV(DisplayPtr, Integer, UInteger, UInteger) -- uid: OpenTK.Graphics.Glx.Glx.NV.QuerySwapGroupNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Span{System.UInt32},System.Span{System.UInt32}) - commentId: M:OpenTK.Graphics.Glx.Glx.NV.QuerySwapGroupNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Span{System.UInt32},System.Span{System.UInt32}) - id: QuerySwapGroupNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Span{System.UInt32},System.Span{System.UInt32}) - parent: OpenTK.Graphics.Glx.Glx.NV - langs: - - csharp - - vb - name: QuerySwapGroupNV(DisplayPtr, GLXDrawable, Span, Span) - nameWithType: Glx.NV.QuerySwapGroupNV(DisplayPtr, GLXDrawable, Span, Span) - fullName: OpenTK.Graphics.Glx.Glx.NV.QuerySwapGroupNV(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, System.Span, System.Span) - type: Method - source: - id: QuerySwapGroupNV - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 1042 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_NV_swap_group] - - [entry point: glXQuerySwapGroupNV] - -
- example: [] - syntax: - content: public static bool QuerySwapGroupNV(DisplayPtr dpy, GLXDrawable drawable, Span group, Span barrier) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: drawable - type: OpenTK.Graphics.Glx.GLXDrawable - - id: group - type: System.Span{System.UInt32} - - id: barrier - type: System.Span{System.UInt32} - return: - type: System.Boolean - content.vb: Public Shared Function QuerySwapGroupNV(dpy As DisplayPtr, drawable As GLXDrawable, group As Span(Of UInteger), barrier As Span(Of UInteger)) As Boolean - overload: OpenTK.Graphics.Glx.Glx.NV.QuerySwapGroupNV* - nameWithType.vb: Glx.NV.QuerySwapGroupNV(DisplayPtr, GLXDrawable, Span(Of UInteger), Span(Of UInteger)) - fullName.vb: OpenTK.Graphics.Glx.Glx.NV.QuerySwapGroupNV(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, System.Span(Of UInteger), System.Span(Of UInteger)) - name.vb: QuerySwapGroupNV(DisplayPtr, GLXDrawable, Span(Of UInteger), Span(Of UInteger)) -- uid: OpenTK.Graphics.Glx.Glx.NV.QuerySwapGroupNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.UInt32[],System.UInt32[]) - commentId: M:OpenTK.Graphics.Glx.Glx.NV.QuerySwapGroupNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.UInt32[],System.UInt32[]) - id: QuerySwapGroupNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.UInt32[],System.UInt32[]) - parent: OpenTK.Graphics.Glx.Glx.NV - langs: - - csharp - - vb - name: QuerySwapGroupNV(DisplayPtr, GLXDrawable, uint[], uint[]) - nameWithType: Glx.NV.QuerySwapGroupNV(DisplayPtr, GLXDrawable, uint[], uint[]) - fullName: OpenTK.Graphics.Glx.Glx.NV.QuerySwapGroupNV(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, uint[], uint[]) - type: Method - source: - id: QuerySwapGroupNV - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 1055 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_NV_swap_group] - - [entry point: glXQuerySwapGroupNV] - -
- example: [] - syntax: - content: public static bool QuerySwapGroupNV(DisplayPtr dpy, GLXDrawable drawable, uint[] group, uint[] barrier) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: drawable - type: OpenTK.Graphics.Glx.GLXDrawable - - id: group - type: System.UInt32[] - - id: barrier - type: System.UInt32[] - return: - type: System.Boolean - content.vb: Public Shared Function QuerySwapGroupNV(dpy As DisplayPtr, drawable As GLXDrawable, group As UInteger(), barrier As UInteger()) As Boolean - overload: OpenTK.Graphics.Glx.Glx.NV.QuerySwapGroupNV* - nameWithType.vb: Glx.NV.QuerySwapGroupNV(DisplayPtr, GLXDrawable, UInteger(), UInteger()) - fullName.vb: OpenTK.Graphics.Glx.Glx.NV.QuerySwapGroupNV(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, UInteger(), UInteger()) - name.vb: QuerySwapGroupNV(DisplayPtr, GLXDrawable, UInteger(), UInteger()) -- uid: OpenTK.Graphics.Glx.Glx.NV.QuerySwapGroupNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.UInt32@,System.UInt32@) - commentId: M:OpenTK.Graphics.Glx.Glx.NV.QuerySwapGroupNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.UInt32@,System.UInt32@) - id: QuerySwapGroupNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.UInt32@,System.UInt32@) - parent: OpenTK.Graphics.Glx.Glx.NV - langs: - - csharp - - vb - name: QuerySwapGroupNV(DisplayPtr, GLXDrawable, ref uint, ref uint) - nameWithType: Glx.NV.QuerySwapGroupNV(DisplayPtr, GLXDrawable, ref uint, ref uint) - fullName: OpenTK.Graphics.Glx.Glx.NV.QuerySwapGroupNV(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, ref uint, ref uint) - type: Method - source: - id: QuerySwapGroupNV - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 1068 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_NV_swap_group] - - [entry point: glXQuerySwapGroupNV] - -
- example: [] - syntax: - content: public static bool QuerySwapGroupNV(DisplayPtr dpy, GLXDrawable drawable, ref uint group, ref uint barrier) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: drawable - type: OpenTK.Graphics.Glx.GLXDrawable - - id: group - type: System.UInt32 - - id: barrier - type: System.UInt32 - return: - type: System.Boolean - content.vb: Public Shared Function QuerySwapGroupNV(dpy As DisplayPtr, drawable As GLXDrawable, group As UInteger, barrier As UInteger) As Boolean - overload: OpenTK.Graphics.Glx.Glx.NV.QuerySwapGroupNV* - nameWithType.vb: Glx.NV.QuerySwapGroupNV(DisplayPtr, GLXDrawable, UInteger, UInteger) - fullName.vb: OpenTK.Graphics.Glx.Glx.NV.QuerySwapGroupNV(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, UInteger, UInteger) - name.vb: QuerySwapGroupNV(DisplayPtr, GLXDrawable, UInteger, UInteger) -- uid: OpenTK.Graphics.Glx.Glx.NV.QueryVideoCaptureDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV,System.Int32,System.Span{System.Int32}) - commentId: M:OpenTK.Graphics.Glx.Glx.NV.QueryVideoCaptureDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV,System.Int32,System.Span{System.Int32}) - id: QueryVideoCaptureDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV,System.Int32,System.Span{System.Int32}) - parent: OpenTK.Graphics.Glx.Glx.NV - langs: - - csharp - - vb - name: QueryVideoCaptureDeviceNV(DisplayPtr, GLXVideoCaptureDeviceNV, int, Span) - nameWithType: Glx.NV.QueryVideoCaptureDeviceNV(DisplayPtr, GLXVideoCaptureDeviceNV, int, Span) - fullName: OpenTK.Graphics.Glx.Glx.NV.QueryVideoCaptureDeviceNV(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV, int, System.Span) - type: Method - source: - id: QueryVideoCaptureDeviceNV - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 1079 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_NV_video_capture] - - [entry point: glXQueryVideoCaptureDeviceNV] - -
- example: [] - syntax: - content: public static int QueryVideoCaptureDeviceNV(DisplayPtr dpy, GLXVideoCaptureDeviceNV device, int attribute, Span value) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: device - type: OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV - - id: attribute - type: System.Int32 - - id: value - type: System.Span{System.Int32} - return: - type: System.Int32 - content.vb: Public Shared Function QueryVideoCaptureDeviceNV(dpy As DisplayPtr, device As GLXVideoCaptureDeviceNV, attribute As Integer, value As Span(Of Integer)) As Integer - overload: OpenTK.Graphics.Glx.Glx.NV.QueryVideoCaptureDeviceNV* - nameWithType.vb: Glx.NV.QueryVideoCaptureDeviceNV(DisplayPtr, GLXVideoCaptureDeviceNV, Integer, Span(Of Integer)) - fullName.vb: OpenTK.Graphics.Glx.Glx.NV.QueryVideoCaptureDeviceNV(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV, Integer, System.Span(Of Integer)) - name.vb: QueryVideoCaptureDeviceNV(DisplayPtr, GLXVideoCaptureDeviceNV, Integer, Span(Of Integer)) -- uid: OpenTK.Graphics.Glx.Glx.NV.QueryVideoCaptureDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV,System.Int32,System.Int32[]) - commentId: M:OpenTK.Graphics.Glx.Glx.NV.QueryVideoCaptureDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV,System.Int32,System.Int32[]) - id: QueryVideoCaptureDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV,System.Int32,System.Int32[]) - parent: OpenTK.Graphics.Glx.Glx.NV - langs: - - csharp - - vb - name: QueryVideoCaptureDeviceNV(DisplayPtr, GLXVideoCaptureDeviceNV, int, int[]) - nameWithType: Glx.NV.QueryVideoCaptureDeviceNV(DisplayPtr, GLXVideoCaptureDeviceNV, int, int[]) - fullName: OpenTK.Graphics.Glx.Glx.NV.QueryVideoCaptureDeviceNV(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV, int, int[]) - type: Method - source: - id: QueryVideoCaptureDeviceNV - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 1089 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_NV_video_capture] - - [entry point: glXQueryVideoCaptureDeviceNV] - -
- example: [] - syntax: - content: public static int QueryVideoCaptureDeviceNV(DisplayPtr dpy, GLXVideoCaptureDeviceNV device, int attribute, int[] value) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: device - type: OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV - - id: attribute - type: System.Int32 - - id: value - type: System.Int32[] - return: - type: System.Int32 - content.vb: Public Shared Function QueryVideoCaptureDeviceNV(dpy As DisplayPtr, device As GLXVideoCaptureDeviceNV, attribute As Integer, value As Integer()) As Integer - overload: OpenTK.Graphics.Glx.Glx.NV.QueryVideoCaptureDeviceNV* - nameWithType.vb: Glx.NV.QueryVideoCaptureDeviceNV(DisplayPtr, GLXVideoCaptureDeviceNV, Integer, Integer()) - fullName.vb: OpenTK.Graphics.Glx.Glx.NV.QueryVideoCaptureDeviceNV(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV, Integer, Integer()) - name.vb: QueryVideoCaptureDeviceNV(DisplayPtr, GLXVideoCaptureDeviceNV, Integer, Integer()) -- uid: OpenTK.Graphics.Glx.Glx.NV.QueryVideoCaptureDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV,System.Int32,System.Int32@) - commentId: M:OpenTK.Graphics.Glx.Glx.NV.QueryVideoCaptureDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV,System.Int32,System.Int32@) - id: QueryVideoCaptureDeviceNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV,System.Int32,System.Int32@) - parent: OpenTK.Graphics.Glx.Glx.NV - langs: - - csharp - - vb - name: QueryVideoCaptureDeviceNV(DisplayPtr, GLXVideoCaptureDeviceNV, int, ref int) - nameWithType: Glx.NV.QueryVideoCaptureDeviceNV(DisplayPtr, GLXVideoCaptureDeviceNV, int, ref int) - fullName: OpenTK.Graphics.Glx.Glx.NV.QueryVideoCaptureDeviceNV(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV, int, ref int) - type: Method - source: - id: QueryVideoCaptureDeviceNV - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 1099 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_NV_video_capture] - - [entry point: glXQueryVideoCaptureDeviceNV] - -
- example: [] - syntax: - content: public static int QueryVideoCaptureDeviceNV(DisplayPtr dpy, GLXVideoCaptureDeviceNV device, int attribute, ref int value) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: device - type: OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV - - id: attribute - type: System.Int32 - - id: value - type: System.Int32 - return: - type: System.Int32 - content.vb: Public Shared Function QueryVideoCaptureDeviceNV(dpy As DisplayPtr, device As GLXVideoCaptureDeviceNV, attribute As Integer, value As Integer) As Integer - overload: OpenTK.Graphics.Glx.Glx.NV.QueryVideoCaptureDeviceNV* - nameWithType.vb: Glx.NV.QueryVideoCaptureDeviceNV(DisplayPtr, GLXVideoCaptureDeviceNV, Integer, Integer) - fullName.vb: OpenTK.Graphics.Glx.Glx.NV.QueryVideoCaptureDeviceNV(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV, Integer, Integer) - name.vb: QueryVideoCaptureDeviceNV(DisplayPtr, GLXVideoCaptureDeviceNV, Integer, Integer) -- uid: OpenTK.Graphics.Glx.Glx.NV.SendPbufferToVideoNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXPbuffer,System.Int32,System.Span{System.UInt64},System.Boolean) - commentId: M:OpenTK.Graphics.Glx.Glx.NV.SendPbufferToVideoNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXPbuffer,System.Int32,System.Span{System.UInt64},System.Boolean) - id: SendPbufferToVideoNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXPbuffer,System.Int32,System.Span{System.UInt64},System.Boolean) - parent: OpenTK.Graphics.Glx.Glx.NV - langs: - - csharp - - vb - name: SendPbufferToVideoNV(DisplayPtr, GLXPbuffer, int, Span, bool) - nameWithType: Glx.NV.SendPbufferToVideoNV(DisplayPtr, GLXPbuffer, int, Span, bool) - fullName: OpenTK.Graphics.Glx.Glx.NV.SendPbufferToVideoNV(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXPbuffer, int, System.Span, bool) - type: Method - source: - id: SendPbufferToVideoNV - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 1109 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_NV_video_out] - - [entry point: glXSendPbufferToVideoNV] - -
- example: [] - syntax: - content: public static int SendPbufferToVideoNV(DisplayPtr dpy, GLXPbuffer pbuf, int iBufferType, Span pulCounterPbuffer, bool bBlock) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: pbuf - type: OpenTK.Graphics.Glx.GLXPbuffer - - id: iBufferType - type: System.Int32 - - id: pulCounterPbuffer - type: System.Span{System.UInt64} - - id: bBlock - type: System.Boolean - return: - type: System.Int32 - content.vb: Public Shared Function SendPbufferToVideoNV(dpy As DisplayPtr, pbuf As GLXPbuffer, iBufferType As Integer, pulCounterPbuffer As Span(Of ULong), bBlock As Boolean) As Integer - overload: OpenTK.Graphics.Glx.Glx.NV.SendPbufferToVideoNV* - nameWithType.vb: Glx.NV.SendPbufferToVideoNV(DisplayPtr, GLXPbuffer, Integer, Span(Of ULong), Boolean) - fullName.vb: OpenTK.Graphics.Glx.Glx.NV.SendPbufferToVideoNV(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXPbuffer, Integer, System.Span(Of ULong), Boolean) - name.vb: SendPbufferToVideoNV(DisplayPtr, GLXPbuffer, Integer, Span(Of ULong), Boolean) -- uid: OpenTK.Graphics.Glx.Glx.NV.SendPbufferToVideoNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXPbuffer,System.Int32,System.UInt64[],System.Boolean) - commentId: M:OpenTK.Graphics.Glx.Glx.NV.SendPbufferToVideoNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXPbuffer,System.Int32,System.UInt64[],System.Boolean) - id: SendPbufferToVideoNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXPbuffer,System.Int32,System.UInt64[],System.Boolean) - parent: OpenTK.Graphics.Glx.Glx.NV - langs: - - csharp - - vb - name: SendPbufferToVideoNV(DisplayPtr, GLXPbuffer, int, ulong[], bool) - nameWithType: Glx.NV.SendPbufferToVideoNV(DisplayPtr, GLXPbuffer, int, ulong[], bool) - fullName: OpenTK.Graphics.Glx.Glx.NV.SendPbufferToVideoNV(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXPbuffer, int, ulong[], bool) - type: Method - source: - id: SendPbufferToVideoNV - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 1119 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_NV_video_out] - - [entry point: glXSendPbufferToVideoNV] - -
- example: [] - syntax: - content: public static int SendPbufferToVideoNV(DisplayPtr dpy, GLXPbuffer pbuf, int iBufferType, ulong[] pulCounterPbuffer, bool bBlock) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: pbuf - type: OpenTK.Graphics.Glx.GLXPbuffer - - id: iBufferType - type: System.Int32 - - id: pulCounterPbuffer - type: System.UInt64[] - - id: bBlock - type: System.Boolean - return: - type: System.Int32 - content.vb: Public Shared Function SendPbufferToVideoNV(dpy As DisplayPtr, pbuf As GLXPbuffer, iBufferType As Integer, pulCounterPbuffer As ULong(), bBlock As Boolean) As Integer - overload: OpenTK.Graphics.Glx.Glx.NV.SendPbufferToVideoNV* - nameWithType.vb: Glx.NV.SendPbufferToVideoNV(DisplayPtr, GLXPbuffer, Integer, ULong(), Boolean) - fullName.vb: OpenTK.Graphics.Glx.Glx.NV.SendPbufferToVideoNV(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXPbuffer, Integer, ULong(), Boolean) - name.vb: SendPbufferToVideoNV(DisplayPtr, GLXPbuffer, Integer, ULong(), Boolean) -- uid: OpenTK.Graphics.Glx.Glx.NV.SendPbufferToVideoNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXPbuffer,System.Int32,System.UInt64@,System.Boolean) - commentId: M:OpenTK.Graphics.Glx.Glx.NV.SendPbufferToVideoNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXPbuffer,System.Int32,System.UInt64@,System.Boolean) - id: SendPbufferToVideoNV(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXPbuffer,System.Int32,System.UInt64@,System.Boolean) - parent: OpenTK.Graphics.Glx.Glx.NV - langs: - - csharp - - vb - name: SendPbufferToVideoNV(DisplayPtr, GLXPbuffer, int, ref ulong, bool) - nameWithType: Glx.NV.SendPbufferToVideoNV(DisplayPtr, GLXPbuffer, int, ref ulong, bool) - fullName: OpenTK.Graphics.Glx.Glx.NV.SendPbufferToVideoNV(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXPbuffer, int, ref ulong, bool) - type: Method - source: - id: SendPbufferToVideoNV - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 1129 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_NV_video_out] - - [entry point: glXSendPbufferToVideoNV] - -
- example: [] - syntax: - content: public static int SendPbufferToVideoNV(DisplayPtr dpy, GLXPbuffer pbuf, int iBufferType, ref ulong pulCounterPbuffer, bool bBlock) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: pbuf - type: OpenTK.Graphics.Glx.GLXPbuffer - - id: iBufferType - type: System.Int32 - - id: pulCounterPbuffer - type: System.UInt64 - - id: bBlock - type: System.Boolean - return: - type: System.Int32 - content.vb: Public Shared Function SendPbufferToVideoNV(dpy As DisplayPtr, pbuf As GLXPbuffer, iBufferType As Integer, pulCounterPbuffer As ULong, bBlock As Boolean) As Integer - overload: OpenTK.Graphics.Glx.Glx.NV.SendPbufferToVideoNV* - nameWithType.vb: Glx.NV.SendPbufferToVideoNV(DisplayPtr, GLXPbuffer, Integer, ULong, Boolean) - fullName.vb: OpenTK.Graphics.Glx.Glx.NV.SendPbufferToVideoNV(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXPbuffer, Integer, ULong, Boolean) - name.vb: SendPbufferToVideoNV(DisplayPtr, GLXPbuffer, Integer, ULong, Boolean) -references: -- uid: OpenTK.Graphics.Glx - commentId: N:OpenTK.Graphics.Glx - href: OpenTK.html - name: OpenTK.Graphics.Glx - nameWithType: OpenTK.Graphics.Glx - fullName: OpenTK.Graphics.Glx - spec.csharp: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Glx - name: Glx - href: OpenTK.Graphics.Glx.html - spec.vb: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Glx - name: Glx - href: OpenTK.Graphics.Glx.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: System.Object.Equals(System.Object) - commentId: M:System.Object.Equals(System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - name: Equals(object) - nameWithType: object.Equals(object) - fullName: object.Equals(object) - nameWithType.vb: Object.Equals(Object) - fullName.vb: Object.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetHashCode - commentId: M:System.Object.GetHashCode - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - name: GetHashCode() - nameWithType: object.GetHashCode() - fullName: object.GetHashCode() - nameWithType.vb: Object.GetHashCode() - fullName.vb: Object.GetHashCode() - spec.csharp: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.MemberwiseClone - commentId: M:System.Object.MemberwiseClone - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - name: MemberwiseClone() - nameWithType: object.MemberwiseClone() - fullName: object.MemberwiseClone() - nameWithType.vb: Object.MemberwiseClone() - fullName.vb: Object.MemberwiseClone() - spec.csharp: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) - spec.vb: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.ToString - commentId: M:System.Object.ToString - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - name: ToString() - nameWithType: object.ToString() - fullName: object.ToString() - nameWithType.vb: Object.ToString() - fullName.vb: Object.ToString() - spec.csharp: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) - spec.vb: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: OpenTK.Graphics.Glx.Glx.NV.BindSwapBarrierNV* - commentId: Overload:OpenTK.Graphics.Glx.Glx.NV.BindSwapBarrierNV - href: OpenTK.Graphics.Glx.Glx.NV.html#OpenTK_Graphics_Glx_Glx_NV_BindSwapBarrierNV_OpenTK_Graphics_Glx_DisplayPtr_System_UInt32_System_UInt32_ - name: BindSwapBarrierNV - nameWithType: Glx.NV.BindSwapBarrierNV - fullName: OpenTK.Graphics.Glx.Glx.NV.BindSwapBarrierNV -- uid: OpenTK.Graphics.Glx.DisplayPtr - commentId: T:OpenTK.Graphics.Glx.DisplayPtr - parent: OpenTK.Graphics.Glx - href: OpenTK.Graphics.Glx.DisplayPtr.html - name: DisplayPtr - nameWithType: DisplayPtr - fullName: OpenTK.Graphics.Glx.DisplayPtr -- uid: System.UInt32 - commentId: T:System.UInt32 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - name: uint - nameWithType: uint - fullName: uint - nameWithType.vb: UInteger - fullName.vb: UInteger - name.vb: UInteger -- uid: System.Boolean - commentId: T:System.Boolean - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - name: bool - nameWithType: bool - fullName: bool - nameWithType.vb: Boolean - fullName.vb: Boolean - name.vb: Boolean -- uid: OpenTK.Graphics.Glx.Glx.NV.BindVideoCaptureDeviceNV* - commentId: Overload:OpenTK.Graphics.Glx.Glx.NV.BindVideoCaptureDeviceNV - href: OpenTK.Graphics.Glx.Glx.NV.html#OpenTK_Graphics_Glx_Glx_NV_BindVideoCaptureDeviceNV_OpenTK_Graphics_Glx_DisplayPtr_System_UInt32_OpenTK_Graphics_Glx_GLXVideoCaptureDeviceNV_ - name: BindVideoCaptureDeviceNV - nameWithType: Glx.NV.BindVideoCaptureDeviceNV - fullName: OpenTK.Graphics.Glx.Glx.NV.BindVideoCaptureDeviceNV -- uid: OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV - commentId: T:OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV - parent: OpenTK.Graphics.Glx - href: OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV.html - name: GLXVideoCaptureDeviceNV - nameWithType: GLXVideoCaptureDeviceNV - fullName: OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV -- uid: System.Int32 - commentId: T:System.Int32 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - name: int - nameWithType: int - fullName: int - nameWithType.vb: Integer - fullName.vb: Integer - name.vb: Integer -- uid: OpenTK.Graphics.Glx.Glx.NV.BindVideoDeviceNV* - commentId: Overload:OpenTK.Graphics.Glx.Glx.NV.BindVideoDeviceNV - href: OpenTK.Graphics.Glx.Glx.NV.html#OpenTK_Graphics_Glx_Glx_NV_BindVideoDeviceNV_OpenTK_Graphics_Glx_DisplayPtr_System_UInt32_System_UInt32_System_Int32__ - name: BindVideoDeviceNV - nameWithType: Glx.NV.BindVideoDeviceNV - fullName: OpenTK.Graphics.Glx.Glx.NV.BindVideoDeviceNV -- uid: System.Int32* - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - name: int* - nameWithType: int* - fullName: int* - nameWithType.vb: Integer* - fullName.vb: Integer* - name.vb: Integer* - spec.csharp: - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '*' - spec.vb: - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '*' -- uid: OpenTK.Graphics.Glx.Glx.NV.BindVideoImageNV* - commentId: Overload:OpenTK.Graphics.Glx.Glx.NV.BindVideoImageNV - href: OpenTK.Graphics.Glx.Glx.NV.html#OpenTK_Graphics_Glx_Glx_NV_BindVideoImageNV_OpenTK_Graphics_Glx_DisplayPtr_OpenTK_Graphics_Glx_GLXVideoDeviceNV_OpenTK_Graphics_Glx_GLXPbuffer_System_Int32_ - name: BindVideoImageNV - nameWithType: Glx.NV.BindVideoImageNV - fullName: OpenTK.Graphics.Glx.Glx.NV.BindVideoImageNV -- uid: OpenTK.Graphics.Glx.GLXVideoDeviceNV - commentId: T:OpenTK.Graphics.Glx.GLXVideoDeviceNV - parent: OpenTK.Graphics.Glx - href: OpenTK.Graphics.Glx.GLXVideoDeviceNV.html - name: GLXVideoDeviceNV - nameWithType: GLXVideoDeviceNV - fullName: OpenTK.Graphics.Glx.GLXVideoDeviceNV -- uid: OpenTK.Graphics.Glx.GLXPbuffer - commentId: T:OpenTK.Graphics.Glx.GLXPbuffer - parent: OpenTK.Graphics.Glx - href: OpenTK.Graphics.Glx.GLXPbuffer.html - name: GLXPbuffer - nameWithType: GLXPbuffer - fullName: OpenTK.Graphics.Glx.GLXPbuffer -- uid: OpenTK.Graphics.Glx.Glx.NV.CopyBufferSubDataNV* - commentId: Overload:OpenTK.Graphics.Glx.Glx.NV.CopyBufferSubDataNV - href: OpenTK.Graphics.Glx.Glx.NV.html#OpenTK_Graphics_Glx_Glx_NV_CopyBufferSubDataNV_OpenTK_Graphics_Glx_DisplayPtr_OpenTK_Graphics_Glx_GLXContext_OpenTK_Graphics_Glx_GLXContext_OpenTK_Graphics_Glx_All_OpenTK_Graphics_Glx_All_System_IntPtr_System_IntPtr_System_IntPtr_ - name: CopyBufferSubDataNV - nameWithType: Glx.NV.CopyBufferSubDataNV - fullName: OpenTK.Graphics.Glx.Glx.NV.CopyBufferSubDataNV -- uid: OpenTK.Graphics.Glx.GLXContext - commentId: T:OpenTK.Graphics.Glx.GLXContext - parent: OpenTK.Graphics.Glx - href: OpenTK.Graphics.Glx.GLXContext.html - name: GLXContext - nameWithType: GLXContext - fullName: OpenTK.Graphics.Glx.GLXContext -- uid: OpenTK.Graphics.Glx.All - commentId: T:OpenTK.Graphics.Glx.All - parent: OpenTK.Graphics.Glx - href: OpenTK.Graphics.Glx.All.html - name: All - nameWithType: All - fullName: OpenTK.Graphics.Glx.All -- uid: System.IntPtr - commentId: T:System.IntPtr - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: nint - nameWithType: nint - fullName: nint - nameWithType.vb: IntPtr - fullName.vb: System.IntPtr - name.vb: IntPtr -- uid: OpenTK.Graphics.Glx.Glx.NV.CopyImageSubDataNV* - commentId: Overload:OpenTK.Graphics.Glx.Glx.NV.CopyImageSubDataNV - href: OpenTK.Graphics.Glx.Glx.NV.html#OpenTK_Graphics_Glx_Glx_NV_CopyImageSubDataNV_OpenTK_Graphics_Glx_DisplayPtr_OpenTK_Graphics_Glx_GLXContext_System_UInt32_OpenTK_Graphics_Glx_All_System_Int32_System_Int32_System_Int32_System_Int32_OpenTK_Graphics_Glx_GLXContext_System_UInt32_OpenTK_Graphics_Glx_All_System_Int32_System_Int32_System_Int32_System_Int32_System_Int32_System_Int32_System_Int32_ - name: CopyImageSubDataNV - nameWithType: Glx.NV.CopyImageSubDataNV - fullName: OpenTK.Graphics.Glx.Glx.NV.CopyImageSubDataNV -- uid: OpenTK.Graphics.Glx.Glx.NV.DelayBeforeSwapNV* - commentId: Overload:OpenTK.Graphics.Glx.Glx.NV.DelayBeforeSwapNV - href: OpenTK.Graphics.Glx.Glx.NV.html#OpenTK_Graphics_Glx_Glx_NV_DelayBeforeSwapNV_OpenTK_Graphics_Glx_DisplayPtr_OpenTK_Graphics_Glx_GLXDrawable_System_Single_ - name: DelayBeforeSwapNV - nameWithType: Glx.NV.DelayBeforeSwapNV - fullName: OpenTK.Graphics.Glx.Glx.NV.DelayBeforeSwapNV -- uid: OpenTK.Graphics.Glx.GLXDrawable - commentId: T:OpenTK.Graphics.Glx.GLXDrawable - parent: OpenTK.Graphics.Glx - href: OpenTK.Graphics.Glx.GLXDrawable.html - name: GLXDrawable - nameWithType: GLXDrawable - fullName: OpenTK.Graphics.Glx.GLXDrawable -- uid: System.Single - commentId: T:System.Single - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.single - name: float - nameWithType: float - fullName: float - nameWithType.vb: Single - fullName.vb: Single - name.vb: Single -- uid: OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoCaptureDevicesNV* - commentId: Overload:OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoCaptureDevicesNV - href: OpenTK.Graphics.Glx.Glx.NV.html#OpenTK_Graphics_Glx_Glx_NV_EnumerateVideoCaptureDevicesNV_OpenTK_Graphics_Glx_DisplayPtr_System_Int32_System_Int32__ - name: EnumerateVideoCaptureDevicesNV - nameWithType: Glx.NV.EnumerateVideoCaptureDevicesNV - fullName: OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoCaptureDevicesNV -- uid: OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV* - isExternal: true - href: OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV.html - name: GLXVideoCaptureDeviceNV* - nameWithType: GLXVideoCaptureDeviceNV* - fullName: OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV* - spec.csharp: - - uid: OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV - name: GLXVideoCaptureDeviceNV - href: OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV.html - - name: '*' - spec.vb: - - uid: OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV - name: GLXVideoCaptureDeviceNV - href: OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV.html - - name: '*' -- uid: OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoDevicesNV* - commentId: Overload:OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoDevicesNV - href: OpenTK.Graphics.Glx.Glx.NV.html#OpenTK_Graphics_Glx_Glx_NV_EnumerateVideoDevicesNV_OpenTK_Graphics_Glx_DisplayPtr_System_Int32_System_Int32__ - name: EnumerateVideoDevicesNV - nameWithType: Glx.NV.EnumerateVideoDevicesNV - fullName: OpenTK.Graphics.Glx.Glx.NV.EnumerateVideoDevicesNV -- uid: System.UInt32* - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - name: uint* - nameWithType: uint* - fullName: uint* - nameWithType.vb: UInteger* - fullName.vb: UInteger* - name.vb: UInteger* - spec.csharp: - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: '*' - spec.vb: - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: '*' -- uid: OpenTK.Graphics.Glx.Glx.NV.GetVideoDeviceNV* - commentId: Overload:OpenTK.Graphics.Glx.Glx.NV.GetVideoDeviceNV - href: OpenTK.Graphics.Glx.Glx.NV.html#OpenTK_Graphics_Glx_Glx_NV_GetVideoDeviceNV_OpenTK_Graphics_Glx_DisplayPtr_System_Int32_System_Int32_OpenTK_Graphics_Glx_GLXVideoDeviceNV__ - name: GetVideoDeviceNV - nameWithType: Glx.NV.GetVideoDeviceNV - fullName: OpenTK.Graphics.Glx.Glx.NV.GetVideoDeviceNV -- uid: OpenTK.Graphics.Glx.GLXVideoDeviceNV* - isExternal: true - href: OpenTK.Graphics.Glx.GLXVideoDeviceNV.html - name: GLXVideoDeviceNV* - nameWithType: GLXVideoDeviceNV* - fullName: OpenTK.Graphics.Glx.GLXVideoDeviceNV* - spec.csharp: - - uid: OpenTK.Graphics.Glx.GLXVideoDeviceNV - name: GLXVideoDeviceNV - href: OpenTK.Graphics.Glx.GLXVideoDeviceNV.html - - name: '*' - spec.vb: - - uid: OpenTK.Graphics.Glx.GLXVideoDeviceNV - name: GLXVideoDeviceNV - href: OpenTK.Graphics.Glx.GLXVideoDeviceNV.html - - name: '*' -- uid: OpenTK.Graphics.Glx.Glx.NV.GetVideoInfoNV* - commentId: Overload:OpenTK.Graphics.Glx.Glx.NV.GetVideoInfoNV - href: OpenTK.Graphics.Glx.Glx.NV.html#OpenTK_Graphics_Glx_Glx_NV_GetVideoInfoNV_OpenTK_Graphics_Glx_DisplayPtr_System_Int32_OpenTK_Graphics_Glx_GLXVideoDeviceNV_System_UInt64__System_UInt64__ - name: GetVideoInfoNV - nameWithType: Glx.NV.GetVideoInfoNV - fullName: OpenTK.Graphics.Glx.Glx.NV.GetVideoInfoNV -- uid: System.UInt64* - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint64 - name: ulong* - nameWithType: ulong* - fullName: ulong* - nameWithType.vb: ULong* - fullName.vb: ULong* - name.vb: ULong* - spec.csharp: - - uid: System.UInt64 - name: ulong - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint64 - - name: '*' - spec.vb: - - uid: System.UInt64 - name: ULong - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint64 - - name: '*' -- uid: OpenTK.Graphics.Glx.Glx.NV.JoinSwapGroupNV* - commentId: Overload:OpenTK.Graphics.Glx.Glx.NV.JoinSwapGroupNV - href: OpenTK.Graphics.Glx.Glx.NV.html#OpenTK_Graphics_Glx_Glx_NV_JoinSwapGroupNV_OpenTK_Graphics_Glx_DisplayPtr_OpenTK_Graphics_Glx_GLXDrawable_System_UInt32_ - name: JoinSwapGroupNV - nameWithType: Glx.NV.JoinSwapGroupNV - fullName: OpenTK.Graphics.Glx.Glx.NV.JoinSwapGroupNV -- uid: OpenTK.Graphics.Glx.Glx.NV.LockVideoCaptureDeviceNV* - commentId: Overload:OpenTK.Graphics.Glx.Glx.NV.LockVideoCaptureDeviceNV - href: OpenTK.Graphics.Glx.Glx.NV.html#OpenTK_Graphics_Glx_Glx_NV_LockVideoCaptureDeviceNV_OpenTK_Graphics_Glx_DisplayPtr_OpenTK_Graphics_Glx_GLXVideoCaptureDeviceNV_ - name: LockVideoCaptureDeviceNV - nameWithType: Glx.NV.LockVideoCaptureDeviceNV - fullName: OpenTK.Graphics.Glx.Glx.NV.LockVideoCaptureDeviceNV -- uid: OpenTK.Graphics.Glx.Glx.NV.NamedCopyBufferSubDataNV* - commentId: Overload:OpenTK.Graphics.Glx.Glx.NV.NamedCopyBufferSubDataNV - href: OpenTK.Graphics.Glx.Glx.NV.html#OpenTK_Graphics_Glx_Glx_NV_NamedCopyBufferSubDataNV_OpenTK_Graphics_Glx_DisplayPtr_OpenTK_Graphics_Glx_GLXContext_OpenTK_Graphics_Glx_GLXContext_System_UInt32_System_UInt32_System_IntPtr_System_IntPtr_System_IntPtr_ - name: NamedCopyBufferSubDataNV - nameWithType: Glx.NV.NamedCopyBufferSubDataNV - fullName: OpenTK.Graphics.Glx.Glx.NV.NamedCopyBufferSubDataNV -- uid: OpenTK.Graphics.Glx.Glx.NV.QueryFrameCountNV* - commentId: Overload:OpenTK.Graphics.Glx.Glx.NV.QueryFrameCountNV - href: OpenTK.Graphics.Glx.Glx.NV.html#OpenTK_Graphics_Glx_Glx_NV_QueryFrameCountNV_OpenTK_Graphics_Glx_DisplayPtr_System_Int32_System_UInt32__ - name: QueryFrameCountNV - nameWithType: Glx.NV.QueryFrameCountNV - fullName: OpenTK.Graphics.Glx.Glx.NV.QueryFrameCountNV -- uid: OpenTK.Graphics.Glx.Glx.NV.QueryMaxSwapGroupsNV* - commentId: Overload:OpenTK.Graphics.Glx.Glx.NV.QueryMaxSwapGroupsNV - href: OpenTK.Graphics.Glx.Glx.NV.html#OpenTK_Graphics_Glx_Glx_NV_QueryMaxSwapGroupsNV_OpenTK_Graphics_Glx_DisplayPtr_System_Int32_System_UInt32__System_UInt32__ - name: QueryMaxSwapGroupsNV - nameWithType: Glx.NV.QueryMaxSwapGroupsNV - fullName: OpenTK.Graphics.Glx.Glx.NV.QueryMaxSwapGroupsNV -- uid: OpenTK.Graphics.Glx.Glx.NV.QuerySwapGroupNV* - commentId: Overload:OpenTK.Graphics.Glx.Glx.NV.QuerySwapGroupNV - href: OpenTK.Graphics.Glx.Glx.NV.html#OpenTK_Graphics_Glx_Glx_NV_QuerySwapGroupNV_OpenTK_Graphics_Glx_DisplayPtr_OpenTK_Graphics_Glx_GLXDrawable_System_UInt32__System_UInt32__ - name: QuerySwapGroupNV - nameWithType: Glx.NV.QuerySwapGroupNV - fullName: OpenTK.Graphics.Glx.Glx.NV.QuerySwapGroupNV -- uid: OpenTK.Graphics.Glx.Glx.NV.QueryVideoCaptureDeviceNV* - commentId: Overload:OpenTK.Graphics.Glx.Glx.NV.QueryVideoCaptureDeviceNV - href: OpenTK.Graphics.Glx.Glx.NV.html#OpenTK_Graphics_Glx_Glx_NV_QueryVideoCaptureDeviceNV_OpenTK_Graphics_Glx_DisplayPtr_OpenTK_Graphics_Glx_GLXVideoCaptureDeviceNV_System_Int32_System_Int32__ - name: QueryVideoCaptureDeviceNV - nameWithType: Glx.NV.QueryVideoCaptureDeviceNV - fullName: OpenTK.Graphics.Glx.Glx.NV.QueryVideoCaptureDeviceNV -- uid: OpenTK.Graphics.Glx.Glx.NV.ReleaseVideoCaptureDeviceNV* - commentId: Overload:OpenTK.Graphics.Glx.Glx.NV.ReleaseVideoCaptureDeviceNV - href: OpenTK.Graphics.Glx.Glx.NV.html#OpenTK_Graphics_Glx_Glx_NV_ReleaseVideoCaptureDeviceNV_OpenTK_Graphics_Glx_DisplayPtr_OpenTK_Graphics_Glx_GLXVideoCaptureDeviceNV_ - name: ReleaseVideoCaptureDeviceNV - nameWithType: Glx.NV.ReleaseVideoCaptureDeviceNV - fullName: OpenTK.Graphics.Glx.Glx.NV.ReleaseVideoCaptureDeviceNV -- uid: OpenTK.Graphics.Glx.Glx.NV.ReleaseVideoDeviceNV* - commentId: Overload:OpenTK.Graphics.Glx.Glx.NV.ReleaseVideoDeviceNV - href: OpenTK.Graphics.Glx.Glx.NV.html#OpenTK_Graphics_Glx_Glx_NV_ReleaseVideoDeviceNV_OpenTK_Graphics_Glx_DisplayPtr_System_Int32_OpenTK_Graphics_Glx_GLXVideoDeviceNV_ - name: ReleaseVideoDeviceNV - nameWithType: Glx.NV.ReleaseVideoDeviceNV - fullName: OpenTK.Graphics.Glx.Glx.NV.ReleaseVideoDeviceNV -- uid: OpenTK.Graphics.Glx.Glx.NV.ReleaseVideoImageNV* - commentId: Overload:OpenTK.Graphics.Glx.Glx.NV.ReleaseVideoImageNV - href: OpenTK.Graphics.Glx.Glx.NV.html#OpenTK_Graphics_Glx_Glx_NV_ReleaseVideoImageNV_OpenTK_Graphics_Glx_DisplayPtr_OpenTK_Graphics_Glx_GLXPbuffer_ - name: ReleaseVideoImageNV - nameWithType: Glx.NV.ReleaseVideoImageNV - fullName: OpenTK.Graphics.Glx.Glx.NV.ReleaseVideoImageNV -- uid: OpenTK.Graphics.Glx.Glx.NV.ResetFrameCountNV* - commentId: Overload:OpenTK.Graphics.Glx.Glx.NV.ResetFrameCountNV - href: OpenTK.Graphics.Glx.Glx.NV.html#OpenTK_Graphics_Glx_Glx_NV_ResetFrameCountNV_OpenTK_Graphics_Glx_DisplayPtr_System_Int32_ - name: ResetFrameCountNV - nameWithType: Glx.NV.ResetFrameCountNV - fullName: OpenTK.Graphics.Glx.Glx.NV.ResetFrameCountNV -- uid: OpenTK.Graphics.Glx.Glx.NV.SendPbufferToVideoNV* - commentId: Overload:OpenTK.Graphics.Glx.Glx.NV.SendPbufferToVideoNV - href: OpenTK.Graphics.Glx.Glx.NV.html#OpenTK_Graphics_Glx_Glx_NV_SendPbufferToVideoNV_OpenTK_Graphics_Glx_DisplayPtr_OpenTK_Graphics_Glx_GLXPbuffer_System_Int32_System_UInt64__System_Boolean_ - name: SendPbufferToVideoNV - nameWithType: Glx.NV.SendPbufferToVideoNV - fullName: OpenTK.Graphics.Glx.Glx.NV.SendPbufferToVideoNV -- uid: System.ReadOnlySpan{System.Int32} - commentId: T:System.ReadOnlySpan{System.Int32} - parent: System - definition: System.ReadOnlySpan`1 - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - name: ReadOnlySpan - nameWithType: ReadOnlySpan - fullName: System.ReadOnlySpan - nameWithType.vb: ReadOnlySpan(Of Integer) - fullName.vb: System.ReadOnlySpan(Of Integer) - name.vb: ReadOnlySpan(Of Integer) - spec.csharp: - - uid: System.ReadOnlySpan`1 - name: ReadOnlySpan - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - - name: < - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '>' - spec.vb: - - uid: System.ReadOnlySpan`1 - name: ReadOnlySpan - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - - name: ( - - name: Of - - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) -- uid: System.ReadOnlySpan`1 - commentId: T:System.ReadOnlySpan`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - name: ReadOnlySpan - nameWithType: ReadOnlySpan - fullName: System.ReadOnlySpan - nameWithType.vb: ReadOnlySpan(Of T) - fullName.vb: System.ReadOnlySpan(Of T) - name.vb: ReadOnlySpan(Of T) - spec.csharp: - - uid: System.ReadOnlySpan`1 - name: ReadOnlySpan - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.ReadOnlySpan`1 - name: ReadOnlySpan - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: System.Int32[] - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - name: int[] - nameWithType: int[] - fullName: int[] - nameWithType.vb: Integer() - fullName.vb: Integer() - name.vb: Integer() - spec.csharp: - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '[' - - name: ']' - spec.vb: - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ( - - name: ) -- uid: System.Span{System.Int32} - commentId: T:System.Span{System.Int32} - parent: System - definition: System.Span`1 - href: https://learn.microsoft.com/dotnet/api/system.span-1 - name: Span - nameWithType: Span - fullName: System.Span - nameWithType.vb: Span(Of Integer) - fullName.vb: System.Span(Of Integer) - name.vb: Span(Of Integer) - spec.csharp: - - uid: System.Span`1 - name: Span - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.span-1 - - name: < - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '>' - spec.vb: - - uid: System.Span`1 - name: Span - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.span-1 - - name: ( - - name: Of - - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) -- uid: System.Span`1 - commentId: T:System.Span`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.span-1 - name: Span - nameWithType: Span - fullName: System.Span - nameWithType.vb: Span(Of T) - fullName.vb: System.Span(Of T) - name.vb: Span(Of T) - spec.csharp: - - uid: System.Span`1 - name: Span - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.span-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.Span`1 - name: Span - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.span-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: System.Span{OpenTK.Graphics.Glx.GLXVideoDeviceNV} - commentId: T:System.Span{OpenTK.Graphics.Glx.GLXVideoDeviceNV} - parent: System - definition: System.Span`1 - href: https://learn.microsoft.com/dotnet/api/system.span-1 - name: Span - nameWithType: Span - fullName: System.Span - nameWithType.vb: Span(Of GLXVideoDeviceNV) - fullName.vb: System.Span(Of OpenTK.Graphics.Glx.GLXVideoDeviceNV) - name.vb: Span(Of GLXVideoDeviceNV) - spec.csharp: - - uid: System.Span`1 - name: Span - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.span-1 - - name: < - - uid: OpenTK.Graphics.Glx.GLXVideoDeviceNV - name: GLXVideoDeviceNV - href: OpenTK.Graphics.Glx.GLXVideoDeviceNV.html - - name: '>' - spec.vb: - - uid: System.Span`1 - name: Span - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.span-1 - - name: ( - - name: Of - - name: " " - - uid: OpenTK.Graphics.Glx.GLXVideoDeviceNV - name: GLXVideoDeviceNV - href: OpenTK.Graphics.Glx.GLXVideoDeviceNV.html - - name: ) -- uid: OpenTK.Graphics.Glx.GLXVideoDeviceNV[] - isExternal: true - href: OpenTK.Graphics.Glx.GLXVideoDeviceNV.html - name: GLXVideoDeviceNV[] - nameWithType: GLXVideoDeviceNV[] - fullName: OpenTK.Graphics.Glx.GLXVideoDeviceNV[] - nameWithType.vb: GLXVideoDeviceNV() - fullName.vb: OpenTK.Graphics.Glx.GLXVideoDeviceNV() - name.vb: GLXVideoDeviceNV() - spec.csharp: - - uid: OpenTK.Graphics.Glx.GLXVideoDeviceNV - name: GLXVideoDeviceNV - href: OpenTK.Graphics.Glx.GLXVideoDeviceNV.html - - name: '[' - - name: ']' - spec.vb: - - uid: OpenTK.Graphics.Glx.GLXVideoDeviceNV - name: GLXVideoDeviceNV - href: OpenTK.Graphics.Glx.GLXVideoDeviceNV.html - - name: ( - - name: ) -- uid: System.Span{System.UInt64} - commentId: T:System.Span{System.UInt64} - parent: System - definition: System.Span`1 - href: https://learn.microsoft.com/dotnet/api/system.span-1 - name: Span - nameWithType: Span - fullName: System.Span - nameWithType.vb: Span(Of ULong) - fullName.vb: System.Span(Of ULong) - name.vb: Span(Of ULong) - spec.csharp: - - uid: System.Span`1 - name: Span - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.span-1 - - name: < - - uid: System.UInt64 - name: ulong - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint64 - - name: '>' - spec.vb: - - uid: System.Span`1 - name: Span - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.span-1 - - name: ( - - name: Of - - name: " " - - uid: System.UInt64 - name: ULong - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint64 - - name: ) -- uid: System.UInt64[] - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint64 - name: ulong[] - nameWithType: ulong[] - fullName: ulong[] - nameWithType.vb: ULong() - fullName.vb: ULong() - name.vb: ULong() - spec.csharp: - - uid: System.UInt64 - name: ulong - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint64 - - name: '[' - - name: ']' - spec.vb: - - uid: System.UInt64 - name: ULong - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint64 - - name: ( - - name: ) -- uid: System.UInt64 - commentId: T:System.UInt64 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint64 - name: ulong - nameWithType: ulong - fullName: ulong - nameWithType.vb: ULong - fullName.vb: ULong - name.vb: ULong -- uid: System.Span{System.UInt32} - commentId: T:System.Span{System.UInt32} - parent: System - definition: System.Span`1 - href: https://learn.microsoft.com/dotnet/api/system.span-1 - name: Span - nameWithType: Span - fullName: System.Span - nameWithType.vb: Span(Of UInteger) - fullName.vb: System.Span(Of UInteger) - name.vb: Span(Of UInteger) - spec.csharp: - - uid: System.Span`1 - name: Span - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.span-1 - - name: < - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: '>' - spec.vb: - - uid: System.Span`1 - name: Span - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.span-1 - - name: ( - - name: Of - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: System.UInt32[] - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - name: uint[] - nameWithType: uint[] - fullName: uint[] - nameWithType.vb: UInteger() - fullName.vb: UInteger() - name.vb: UInteger() - spec.csharp: - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: '[' - - name: ']' - spec.vb: - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ( - - name: ) diff --git a/api/OpenTK.Graphics.Glx.Glx.OML.yml b/api/OpenTK.Graphics.Glx.Glx.OML.yml deleted file mode 100644 index dfaf89be..00000000 --- a/api/OpenTK.Graphics.Glx.Glx.OML.yml +++ /dev/null @@ -1,1373 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: OpenTK.Graphics.Glx.Glx.OML - commentId: T:OpenTK.Graphics.Glx.Glx.OML - id: Glx.OML - parent: OpenTK.Graphics.Glx - children: - - OpenTK.Graphics.Glx.Glx.OML.GetMscRateOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32*,System.Int32*) - - OpenTK.Graphics.Glx.Glx.OML.GetMscRateOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32@,System.Int32@) - - OpenTK.Graphics.Glx.Glx.OML.GetMscRateOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32[],System.Int32[]) - - OpenTK.Graphics.Glx.Glx.OML.GetMscRateOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Span{System.Int32},System.Span{System.Int32}) - - OpenTK.Graphics.Glx.Glx.OML.GetSyncValuesOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int64*,System.Int64*,System.Int64*) - - OpenTK.Graphics.Glx.Glx.OML.GetSyncValuesOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int64@,System.Int64@,System.Int64@) - - OpenTK.Graphics.Glx.Glx.OML.GetSyncValuesOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int64[],System.Int64[],System.Int64[]) - - OpenTK.Graphics.Glx.Glx.OML.GetSyncValuesOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Span{System.Int64},System.Span{System.Int64},System.Span{System.Int64}) - - OpenTK.Graphics.Glx.Glx.OML.SwapBuffersMscOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int64,System.Int64,System.Int64) - - OpenTK.Graphics.Glx.Glx.OML.WaitForMscOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int64,System.Int64,System.Int64,System.Int64*,System.Int64*,System.Int64*) - - OpenTK.Graphics.Glx.Glx.OML.WaitForMscOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int64,System.Int64,System.Int64,System.Int64@,System.Int64@,System.Int64@) - - OpenTK.Graphics.Glx.Glx.OML.WaitForMscOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int64,System.Int64,System.Int64,System.Int64[],System.Int64[],System.Int64[]) - - OpenTK.Graphics.Glx.Glx.OML.WaitForMscOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int64,System.Int64,System.Int64,System.Span{System.Int64},System.Span{System.Int64},System.Span{System.Int64}) - - OpenTK.Graphics.Glx.Glx.OML.WaitForSbcOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int64,System.Int64*,System.Int64*,System.Int64*) - - OpenTK.Graphics.Glx.Glx.OML.WaitForSbcOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int64,System.Int64@,System.Int64@,System.Int64@) - - OpenTK.Graphics.Glx.Glx.OML.WaitForSbcOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int64,System.Int64[],System.Int64[],System.Int64[]) - - OpenTK.Graphics.Glx.Glx.OML.WaitForSbcOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int64,System.Span{System.Int64},System.Span{System.Int64},System.Span{System.Int64}) - langs: - - csharp - - vb - name: Glx.OML - nameWithType: Glx.OML - fullName: OpenTK.Graphics.Glx.Glx.OML - type: Class - source: - id: OML - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 1139 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: OML extensions. - example: [] - syntax: - content: public static class Glx.OML - content.vb: Public Module Glx.OML - inheritance: - - System.Object - inheritedMembers: - - System.Object.Equals(System.Object) - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetHashCode - - System.Object.GetType - - System.Object.MemberwiseClone - - System.Object.ReferenceEquals(System.Object,System.Object) - - System.Object.ToString -- uid: OpenTK.Graphics.Glx.Glx.OML.GetMscRateOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32*,System.Int32*) - commentId: M:OpenTK.Graphics.Glx.Glx.OML.GetMscRateOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32*,System.Int32*) - id: GetMscRateOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32*,System.Int32*) - parent: OpenTK.Graphics.Glx.Glx.OML - langs: - - csharp - - vb - name: GetMscRateOML(DisplayPtr, GLXDrawable, int*, int*) - nameWithType: Glx.OML.GetMscRateOML(DisplayPtr, GLXDrawable, int*, int*) - fullName: OpenTK.Graphics.Glx.Glx.OML.GetMscRateOML(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, int*, int*) - type: Method - source: - id: GetMscRateOML - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs - startLine: 311 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_OML_sync_control] - - [entry point: glXGetMscRateOML] - -
- example: [] - syntax: - content: public static bool GetMscRateOML(DisplayPtr dpy, GLXDrawable drawable, int* numerator, int* denominator) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: drawable - type: OpenTK.Graphics.Glx.GLXDrawable - - id: numerator - type: System.Int32* - - id: denominator - type: System.Int32* - return: - type: System.Boolean - content.vb: Public Shared Function GetMscRateOML(dpy As DisplayPtr, drawable As GLXDrawable, numerator As Integer*, denominator As Integer*) As Boolean - overload: OpenTK.Graphics.Glx.Glx.OML.GetMscRateOML* - nameWithType.vb: Glx.OML.GetMscRateOML(DisplayPtr, GLXDrawable, Integer*, Integer*) - fullName.vb: OpenTK.Graphics.Glx.Glx.OML.GetMscRateOML(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, Integer*, Integer*) - name.vb: GetMscRateOML(DisplayPtr, GLXDrawable, Integer*, Integer*) -- uid: OpenTK.Graphics.Glx.Glx.OML.GetSyncValuesOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int64*,System.Int64*,System.Int64*) - commentId: M:OpenTK.Graphics.Glx.Glx.OML.GetSyncValuesOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int64*,System.Int64*,System.Int64*) - id: GetSyncValuesOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int64*,System.Int64*,System.Int64*) - parent: OpenTK.Graphics.Glx.Glx.OML - langs: - - csharp - - vb - name: GetSyncValuesOML(DisplayPtr, GLXDrawable, long*, long*, long*) - nameWithType: Glx.OML.GetSyncValuesOML(DisplayPtr, GLXDrawable, long*, long*, long*) - fullName: OpenTK.Graphics.Glx.Glx.OML.GetSyncValuesOML(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, long*, long*, long*) - type: Method - source: - id: GetSyncValuesOML - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs - startLine: 314 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_OML_sync_control] - - [entry point: glXGetSyncValuesOML] - -
- example: [] - syntax: - content: public static bool GetSyncValuesOML(DisplayPtr dpy, GLXDrawable drawable, long* ust, long* msc, long* sbc) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: drawable - type: OpenTK.Graphics.Glx.GLXDrawable - - id: ust - type: System.Int64* - - id: msc - type: System.Int64* - - id: sbc - type: System.Int64* - return: - type: System.Boolean - content.vb: Public Shared Function GetSyncValuesOML(dpy As DisplayPtr, drawable As GLXDrawable, ust As Long*, msc As Long*, sbc As Long*) As Boolean - overload: OpenTK.Graphics.Glx.Glx.OML.GetSyncValuesOML* - nameWithType.vb: Glx.OML.GetSyncValuesOML(DisplayPtr, GLXDrawable, Long*, Long*, Long*) - fullName.vb: OpenTK.Graphics.Glx.Glx.OML.GetSyncValuesOML(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, Long*, Long*, Long*) - name.vb: GetSyncValuesOML(DisplayPtr, GLXDrawable, Long*, Long*, Long*) -- uid: OpenTK.Graphics.Glx.Glx.OML.SwapBuffersMscOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int64,System.Int64,System.Int64) - commentId: M:OpenTK.Graphics.Glx.Glx.OML.SwapBuffersMscOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int64,System.Int64,System.Int64) - id: SwapBuffersMscOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int64,System.Int64,System.Int64) - parent: OpenTK.Graphics.Glx.Glx.OML - langs: - - csharp - - vb - name: SwapBuffersMscOML(DisplayPtr, GLXDrawable, long, long, long) - nameWithType: Glx.OML.SwapBuffersMscOML(DisplayPtr, GLXDrawable, long, long, long) - fullName: OpenTK.Graphics.Glx.Glx.OML.SwapBuffersMscOML(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, long, long, long) - type: Method - source: - id: SwapBuffersMscOML - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs - startLine: 317 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_OML_sync_control] - - [entry point: glXSwapBuffersMscOML] - -
- example: [] - syntax: - content: public static long SwapBuffersMscOML(DisplayPtr dpy, GLXDrawable drawable, long target_msc, long divisor, long remainder) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: drawable - type: OpenTK.Graphics.Glx.GLXDrawable - - id: target_msc - type: System.Int64 - - id: divisor - type: System.Int64 - - id: remainder - type: System.Int64 - return: - type: System.Int64 - content.vb: Public Shared Function SwapBuffersMscOML(dpy As DisplayPtr, drawable As GLXDrawable, target_msc As Long, divisor As Long, remainder As Long) As Long - overload: OpenTK.Graphics.Glx.Glx.OML.SwapBuffersMscOML* - nameWithType.vb: Glx.OML.SwapBuffersMscOML(DisplayPtr, GLXDrawable, Long, Long, Long) - fullName.vb: OpenTK.Graphics.Glx.Glx.OML.SwapBuffersMscOML(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, Long, Long, Long) - name.vb: SwapBuffersMscOML(DisplayPtr, GLXDrawable, Long, Long, Long) -- uid: OpenTK.Graphics.Glx.Glx.OML.WaitForMscOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int64,System.Int64,System.Int64,System.Int64*,System.Int64*,System.Int64*) - commentId: M:OpenTK.Graphics.Glx.Glx.OML.WaitForMscOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int64,System.Int64,System.Int64,System.Int64*,System.Int64*,System.Int64*) - id: WaitForMscOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int64,System.Int64,System.Int64,System.Int64*,System.Int64*,System.Int64*) - parent: OpenTK.Graphics.Glx.Glx.OML - langs: - - csharp - - vb - name: WaitForMscOML(DisplayPtr, GLXDrawable, long, long, long, long*, long*, long*) - nameWithType: Glx.OML.WaitForMscOML(DisplayPtr, GLXDrawable, long, long, long, long*, long*, long*) - fullName: OpenTK.Graphics.Glx.Glx.OML.WaitForMscOML(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, long, long, long, long*, long*, long*) - type: Method - source: - id: WaitForMscOML - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs - startLine: 320 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_OML_sync_control] - - [entry point: glXWaitForMscOML] - -
- example: [] - syntax: - content: public static bool WaitForMscOML(DisplayPtr dpy, GLXDrawable drawable, long target_msc, long divisor, long remainder, long* ust, long* msc, long* sbc) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: drawable - type: OpenTK.Graphics.Glx.GLXDrawable - - id: target_msc - type: System.Int64 - - id: divisor - type: System.Int64 - - id: remainder - type: System.Int64 - - id: ust - type: System.Int64* - - id: msc - type: System.Int64* - - id: sbc - type: System.Int64* - return: - type: System.Boolean - content.vb: Public Shared Function WaitForMscOML(dpy As DisplayPtr, drawable As GLXDrawable, target_msc As Long, divisor As Long, remainder As Long, ust As Long*, msc As Long*, sbc As Long*) As Boolean - overload: OpenTK.Graphics.Glx.Glx.OML.WaitForMscOML* - nameWithType.vb: Glx.OML.WaitForMscOML(DisplayPtr, GLXDrawable, Long, Long, Long, Long*, Long*, Long*) - fullName.vb: OpenTK.Graphics.Glx.Glx.OML.WaitForMscOML(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, Long, Long, Long, Long*, Long*, Long*) - name.vb: WaitForMscOML(DisplayPtr, GLXDrawable, Long, Long, Long, Long*, Long*, Long*) -- uid: OpenTK.Graphics.Glx.Glx.OML.WaitForSbcOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int64,System.Int64*,System.Int64*,System.Int64*) - commentId: M:OpenTK.Graphics.Glx.Glx.OML.WaitForSbcOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int64,System.Int64*,System.Int64*,System.Int64*) - id: WaitForSbcOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int64,System.Int64*,System.Int64*,System.Int64*) - parent: OpenTK.Graphics.Glx.Glx.OML - langs: - - csharp - - vb - name: WaitForSbcOML(DisplayPtr, GLXDrawable, long, long*, long*, long*) - nameWithType: Glx.OML.WaitForSbcOML(DisplayPtr, GLXDrawable, long, long*, long*, long*) - fullName: OpenTK.Graphics.Glx.Glx.OML.WaitForSbcOML(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, long, long*, long*, long*) - type: Method - source: - id: WaitForSbcOML - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs - startLine: 323 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_OML_sync_control] - - [entry point: glXWaitForSbcOML] - -
- example: [] - syntax: - content: public static bool WaitForSbcOML(DisplayPtr dpy, GLXDrawable drawable, long target_sbc, long* ust, long* msc, long* sbc) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: drawable - type: OpenTK.Graphics.Glx.GLXDrawable - - id: target_sbc - type: System.Int64 - - id: ust - type: System.Int64* - - id: msc - type: System.Int64* - - id: sbc - type: System.Int64* - return: - type: System.Boolean - content.vb: Public Shared Function WaitForSbcOML(dpy As DisplayPtr, drawable As GLXDrawable, target_sbc As Long, ust As Long*, msc As Long*, sbc As Long*) As Boolean - overload: OpenTK.Graphics.Glx.Glx.OML.WaitForSbcOML* - nameWithType.vb: Glx.OML.WaitForSbcOML(DisplayPtr, GLXDrawable, Long, Long*, Long*, Long*) - fullName.vb: OpenTK.Graphics.Glx.Glx.OML.WaitForSbcOML(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, Long, Long*, Long*, Long*) - name.vb: WaitForSbcOML(DisplayPtr, GLXDrawable, Long, Long*, Long*, Long*) -- uid: OpenTK.Graphics.Glx.Glx.OML.GetMscRateOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Span{System.Int32},System.Span{System.Int32}) - commentId: M:OpenTK.Graphics.Glx.Glx.OML.GetMscRateOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Span{System.Int32},System.Span{System.Int32}) - id: GetMscRateOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Span{System.Int32},System.Span{System.Int32}) - parent: OpenTK.Graphics.Glx.Glx.OML - langs: - - csharp - - vb - name: GetMscRateOML(DisplayPtr, GLXDrawable, Span, Span) - nameWithType: Glx.OML.GetMscRateOML(DisplayPtr, GLXDrawable, Span, Span) - fullName: OpenTK.Graphics.Glx.Glx.OML.GetMscRateOML(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, System.Span, System.Span) - type: Method - source: - id: GetMscRateOML - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 1142 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_OML_sync_control] - - [entry point: glXGetMscRateOML] - -
- example: [] - syntax: - content: public static bool GetMscRateOML(DisplayPtr dpy, GLXDrawable drawable, Span numerator, Span denominator) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: drawable - type: OpenTK.Graphics.Glx.GLXDrawable - - id: numerator - type: System.Span{System.Int32} - - id: denominator - type: System.Span{System.Int32} - return: - type: System.Boolean - content.vb: Public Shared Function GetMscRateOML(dpy As DisplayPtr, drawable As GLXDrawable, numerator As Span(Of Integer), denominator As Span(Of Integer)) As Boolean - overload: OpenTK.Graphics.Glx.Glx.OML.GetMscRateOML* - nameWithType.vb: Glx.OML.GetMscRateOML(DisplayPtr, GLXDrawable, Span(Of Integer), Span(Of Integer)) - fullName.vb: OpenTK.Graphics.Glx.Glx.OML.GetMscRateOML(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, System.Span(Of Integer), System.Span(Of Integer)) - name.vb: GetMscRateOML(DisplayPtr, GLXDrawable, Span(Of Integer), Span(Of Integer)) -- uid: OpenTK.Graphics.Glx.Glx.OML.GetMscRateOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32[],System.Int32[]) - commentId: M:OpenTK.Graphics.Glx.Glx.OML.GetMscRateOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32[],System.Int32[]) - id: GetMscRateOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32[],System.Int32[]) - parent: OpenTK.Graphics.Glx.Glx.OML - langs: - - csharp - - vb - name: GetMscRateOML(DisplayPtr, GLXDrawable, int[], int[]) - nameWithType: Glx.OML.GetMscRateOML(DisplayPtr, GLXDrawable, int[], int[]) - fullName: OpenTK.Graphics.Glx.Glx.OML.GetMscRateOML(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, int[], int[]) - type: Method - source: - id: GetMscRateOML - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 1155 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_OML_sync_control] - - [entry point: glXGetMscRateOML] - -
- example: [] - syntax: - content: public static bool GetMscRateOML(DisplayPtr dpy, GLXDrawable drawable, int[] numerator, int[] denominator) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: drawable - type: OpenTK.Graphics.Glx.GLXDrawable - - id: numerator - type: System.Int32[] - - id: denominator - type: System.Int32[] - return: - type: System.Boolean - content.vb: Public Shared Function GetMscRateOML(dpy As DisplayPtr, drawable As GLXDrawable, numerator As Integer(), denominator As Integer()) As Boolean - overload: OpenTK.Graphics.Glx.Glx.OML.GetMscRateOML* - nameWithType.vb: Glx.OML.GetMscRateOML(DisplayPtr, GLXDrawable, Integer(), Integer()) - fullName.vb: OpenTK.Graphics.Glx.Glx.OML.GetMscRateOML(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, Integer(), Integer()) - name.vb: GetMscRateOML(DisplayPtr, GLXDrawable, Integer(), Integer()) -- uid: OpenTK.Graphics.Glx.Glx.OML.GetMscRateOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32@,System.Int32@) - commentId: M:OpenTK.Graphics.Glx.Glx.OML.GetMscRateOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32@,System.Int32@) - id: GetMscRateOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32@,System.Int32@) - parent: OpenTK.Graphics.Glx.Glx.OML - langs: - - csharp - - vb - name: GetMscRateOML(DisplayPtr, GLXDrawable, ref int, ref int) - nameWithType: Glx.OML.GetMscRateOML(DisplayPtr, GLXDrawable, ref int, ref int) - fullName: OpenTK.Graphics.Glx.Glx.OML.GetMscRateOML(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, ref int, ref int) - type: Method - source: - id: GetMscRateOML - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 1168 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_OML_sync_control] - - [entry point: glXGetMscRateOML] - -
- example: [] - syntax: - content: public static bool GetMscRateOML(DisplayPtr dpy, GLXDrawable drawable, ref int numerator, ref int denominator) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: drawable - type: OpenTK.Graphics.Glx.GLXDrawable - - id: numerator - type: System.Int32 - - id: denominator - type: System.Int32 - return: - type: System.Boolean - content.vb: Public Shared Function GetMscRateOML(dpy As DisplayPtr, drawable As GLXDrawable, numerator As Integer, denominator As Integer) As Boolean - overload: OpenTK.Graphics.Glx.Glx.OML.GetMscRateOML* - nameWithType.vb: Glx.OML.GetMscRateOML(DisplayPtr, GLXDrawable, Integer, Integer) - fullName.vb: OpenTK.Graphics.Glx.Glx.OML.GetMscRateOML(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, Integer, Integer) - name.vb: GetMscRateOML(DisplayPtr, GLXDrawable, Integer, Integer) -- uid: OpenTK.Graphics.Glx.Glx.OML.GetSyncValuesOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Span{System.Int64},System.Span{System.Int64},System.Span{System.Int64}) - commentId: M:OpenTK.Graphics.Glx.Glx.OML.GetSyncValuesOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Span{System.Int64},System.Span{System.Int64},System.Span{System.Int64}) - id: GetSyncValuesOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Span{System.Int64},System.Span{System.Int64},System.Span{System.Int64}) - parent: OpenTK.Graphics.Glx.Glx.OML - langs: - - csharp - - vb - name: GetSyncValuesOML(DisplayPtr, GLXDrawable, Span, Span, Span) - nameWithType: Glx.OML.GetSyncValuesOML(DisplayPtr, GLXDrawable, Span, Span, Span) - fullName: OpenTK.Graphics.Glx.Glx.OML.GetSyncValuesOML(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, System.Span, System.Span, System.Span) - type: Method - source: - id: GetSyncValuesOML - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 1179 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_OML_sync_control] - - [entry point: glXGetSyncValuesOML] - -
- example: [] - syntax: - content: public static bool GetSyncValuesOML(DisplayPtr dpy, GLXDrawable drawable, Span ust, Span msc, Span sbc) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: drawable - type: OpenTK.Graphics.Glx.GLXDrawable - - id: ust - type: System.Span{System.Int64} - - id: msc - type: System.Span{System.Int64} - - id: sbc - type: System.Span{System.Int64} - return: - type: System.Boolean - content.vb: Public Shared Function GetSyncValuesOML(dpy As DisplayPtr, drawable As GLXDrawable, ust As Span(Of Long), msc As Span(Of Long), sbc As Span(Of Long)) As Boolean - overload: OpenTK.Graphics.Glx.Glx.OML.GetSyncValuesOML* - nameWithType.vb: Glx.OML.GetSyncValuesOML(DisplayPtr, GLXDrawable, Span(Of Long), Span(Of Long), Span(Of Long)) - fullName.vb: OpenTK.Graphics.Glx.Glx.OML.GetSyncValuesOML(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, System.Span(Of Long), System.Span(Of Long), System.Span(Of Long)) - name.vb: GetSyncValuesOML(DisplayPtr, GLXDrawable, Span(Of Long), Span(Of Long), Span(Of Long)) -- uid: OpenTK.Graphics.Glx.Glx.OML.GetSyncValuesOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int64[],System.Int64[],System.Int64[]) - commentId: M:OpenTK.Graphics.Glx.Glx.OML.GetSyncValuesOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int64[],System.Int64[],System.Int64[]) - id: GetSyncValuesOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int64[],System.Int64[],System.Int64[]) - parent: OpenTK.Graphics.Glx.Glx.OML - langs: - - csharp - - vb - name: GetSyncValuesOML(DisplayPtr, GLXDrawable, long[], long[], long[]) - nameWithType: Glx.OML.GetSyncValuesOML(DisplayPtr, GLXDrawable, long[], long[], long[]) - fullName: OpenTK.Graphics.Glx.Glx.OML.GetSyncValuesOML(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, long[], long[], long[]) - type: Method - source: - id: GetSyncValuesOML - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 1195 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_OML_sync_control] - - [entry point: glXGetSyncValuesOML] - -
- example: [] - syntax: - content: public static bool GetSyncValuesOML(DisplayPtr dpy, GLXDrawable drawable, long[] ust, long[] msc, long[] sbc) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: drawable - type: OpenTK.Graphics.Glx.GLXDrawable - - id: ust - type: System.Int64[] - - id: msc - type: System.Int64[] - - id: sbc - type: System.Int64[] - return: - type: System.Boolean - content.vb: Public Shared Function GetSyncValuesOML(dpy As DisplayPtr, drawable As GLXDrawable, ust As Long(), msc As Long(), sbc As Long()) As Boolean - overload: OpenTK.Graphics.Glx.Glx.OML.GetSyncValuesOML* - nameWithType.vb: Glx.OML.GetSyncValuesOML(DisplayPtr, GLXDrawable, Long(), Long(), Long()) - fullName.vb: OpenTK.Graphics.Glx.Glx.OML.GetSyncValuesOML(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, Long(), Long(), Long()) - name.vb: GetSyncValuesOML(DisplayPtr, GLXDrawable, Long(), Long(), Long()) -- uid: OpenTK.Graphics.Glx.Glx.OML.GetSyncValuesOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int64@,System.Int64@,System.Int64@) - commentId: M:OpenTK.Graphics.Glx.Glx.OML.GetSyncValuesOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int64@,System.Int64@,System.Int64@) - id: GetSyncValuesOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int64@,System.Int64@,System.Int64@) - parent: OpenTK.Graphics.Glx.Glx.OML - langs: - - csharp - - vb - name: GetSyncValuesOML(DisplayPtr, GLXDrawable, ref long, ref long, ref long) - nameWithType: Glx.OML.GetSyncValuesOML(DisplayPtr, GLXDrawable, ref long, ref long, ref long) - fullName: OpenTK.Graphics.Glx.Glx.OML.GetSyncValuesOML(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, ref long, ref long, ref long) - type: Method - source: - id: GetSyncValuesOML - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 1211 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_OML_sync_control] - - [entry point: glXGetSyncValuesOML] - -
- example: [] - syntax: - content: public static bool GetSyncValuesOML(DisplayPtr dpy, GLXDrawable drawable, ref long ust, ref long msc, ref long sbc) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: drawable - type: OpenTK.Graphics.Glx.GLXDrawable - - id: ust - type: System.Int64 - - id: msc - type: System.Int64 - - id: sbc - type: System.Int64 - return: - type: System.Boolean - content.vb: Public Shared Function GetSyncValuesOML(dpy As DisplayPtr, drawable As GLXDrawable, ust As Long, msc As Long, sbc As Long) As Boolean - overload: OpenTK.Graphics.Glx.Glx.OML.GetSyncValuesOML* - nameWithType.vb: Glx.OML.GetSyncValuesOML(DisplayPtr, GLXDrawable, Long, Long, Long) - fullName.vb: OpenTK.Graphics.Glx.Glx.OML.GetSyncValuesOML(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, Long, Long, Long) - name.vb: GetSyncValuesOML(DisplayPtr, GLXDrawable, Long, Long, Long) -- uid: OpenTK.Graphics.Glx.Glx.OML.WaitForMscOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int64,System.Int64,System.Int64,System.Span{System.Int64},System.Span{System.Int64},System.Span{System.Int64}) - commentId: M:OpenTK.Graphics.Glx.Glx.OML.WaitForMscOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int64,System.Int64,System.Int64,System.Span{System.Int64},System.Span{System.Int64},System.Span{System.Int64}) - id: WaitForMscOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int64,System.Int64,System.Int64,System.Span{System.Int64},System.Span{System.Int64},System.Span{System.Int64}) - parent: OpenTK.Graphics.Glx.Glx.OML - langs: - - csharp - - vb - name: WaitForMscOML(DisplayPtr, GLXDrawable, long, long, long, Span, Span, Span) - nameWithType: Glx.OML.WaitForMscOML(DisplayPtr, GLXDrawable, long, long, long, Span, Span, Span) - fullName: OpenTK.Graphics.Glx.Glx.OML.WaitForMscOML(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, long, long, long, System.Span, System.Span, System.Span) - type: Method - source: - id: WaitForMscOML - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 1223 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_OML_sync_control] - - [entry point: glXWaitForMscOML] - -
- example: [] - syntax: - content: public static bool WaitForMscOML(DisplayPtr dpy, GLXDrawable drawable, long target_msc, long divisor, long remainder, Span ust, Span msc, Span sbc) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: drawable - type: OpenTK.Graphics.Glx.GLXDrawable - - id: target_msc - type: System.Int64 - - id: divisor - type: System.Int64 - - id: remainder - type: System.Int64 - - id: ust - type: System.Span{System.Int64} - - id: msc - type: System.Span{System.Int64} - - id: sbc - type: System.Span{System.Int64} - return: - type: System.Boolean - content.vb: Public Shared Function WaitForMscOML(dpy As DisplayPtr, drawable As GLXDrawable, target_msc As Long, divisor As Long, remainder As Long, ust As Span(Of Long), msc As Span(Of Long), sbc As Span(Of Long)) As Boolean - overload: OpenTK.Graphics.Glx.Glx.OML.WaitForMscOML* - nameWithType.vb: Glx.OML.WaitForMscOML(DisplayPtr, GLXDrawable, Long, Long, Long, Span(Of Long), Span(Of Long), Span(Of Long)) - fullName.vb: OpenTK.Graphics.Glx.Glx.OML.WaitForMscOML(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, Long, Long, Long, System.Span(Of Long), System.Span(Of Long), System.Span(Of Long)) - name.vb: WaitForMscOML(DisplayPtr, GLXDrawable, Long, Long, Long, Span(Of Long), Span(Of Long), Span(Of Long)) -- uid: OpenTK.Graphics.Glx.Glx.OML.WaitForMscOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int64,System.Int64,System.Int64,System.Int64[],System.Int64[],System.Int64[]) - commentId: M:OpenTK.Graphics.Glx.Glx.OML.WaitForMscOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int64,System.Int64,System.Int64,System.Int64[],System.Int64[],System.Int64[]) - id: WaitForMscOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int64,System.Int64,System.Int64,System.Int64[],System.Int64[],System.Int64[]) - parent: OpenTK.Graphics.Glx.Glx.OML - langs: - - csharp - - vb - name: WaitForMscOML(DisplayPtr, GLXDrawable, long, long, long, long[], long[], long[]) - nameWithType: Glx.OML.WaitForMscOML(DisplayPtr, GLXDrawable, long, long, long, long[], long[], long[]) - fullName: OpenTK.Graphics.Glx.Glx.OML.WaitForMscOML(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, long, long, long, long[], long[], long[]) - type: Method - source: - id: WaitForMscOML - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 1239 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_OML_sync_control] - - [entry point: glXWaitForMscOML] - -
- example: [] - syntax: - content: public static bool WaitForMscOML(DisplayPtr dpy, GLXDrawable drawable, long target_msc, long divisor, long remainder, long[] ust, long[] msc, long[] sbc) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: drawable - type: OpenTK.Graphics.Glx.GLXDrawable - - id: target_msc - type: System.Int64 - - id: divisor - type: System.Int64 - - id: remainder - type: System.Int64 - - id: ust - type: System.Int64[] - - id: msc - type: System.Int64[] - - id: sbc - type: System.Int64[] - return: - type: System.Boolean - content.vb: Public Shared Function WaitForMscOML(dpy As DisplayPtr, drawable As GLXDrawable, target_msc As Long, divisor As Long, remainder As Long, ust As Long(), msc As Long(), sbc As Long()) As Boolean - overload: OpenTK.Graphics.Glx.Glx.OML.WaitForMscOML* - nameWithType.vb: Glx.OML.WaitForMscOML(DisplayPtr, GLXDrawable, Long, Long, Long, Long(), Long(), Long()) - fullName.vb: OpenTK.Graphics.Glx.Glx.OML.WaitForMscOML(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, Long, Long, Long, Long(), Long(), Long()) - name.vb: WaitForMscOML(DisplayPtr, GLXDrawable, Long, Long, Long, Long(), Long(), Long()) -- uid: OpenTK.Graphics.Glx.Glx.OML.WaitForMscOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int64,System.Int64,System.Int64,System.Int64@,System.Int64@,System.Int64@) - commentId: M:OpenTK.Graphics.Glx.Glx.OML.WaitForMscOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int64,System.Int64,System.Int64,System.Int64@,System.Int64@,System.Int64@) - id: WaitForMscOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int64,System.Int64,System.Int64,System.Int64@,System.Int64@,System.Int64@) - parent: OpenTK.Graphics.Glx.Glx.OML - langs: - - csharp - - vb - name: WaitForMscOML(DisplayPtr, GLXDrawable, long, long, long, ref long, ref long, ref long) - nameWithType: Glx.OML.WaitForMscOML(DisplayPtr, GLXDrawable, long, long, long, ref long, ref long, ref long) - fullName: OpenTK.Graphics.Glx.Glx.OML.WaitForMscOML(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, long, long, long, ref long, ref long, ref long) - type: Method - source: - id: WaitForMscOML - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 1255 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_OML_sync_control] - - [entry point: glXWaitForMscOML] - -
- example: [] - syntax: - content: public static bool WaitForMscOML(DisplayPtr dpy, GLXDrawable drawable, long target_msc, long divisor, long remainder, ref long ust, ref long msc, ref long sbc) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: drawable - type: OpenTK.Graphics.Glx.GLXDrawable - - id: target_msc - type: System.Int64 - - id: divisor - type: System.Int64 - - id: remainder - type: System.Int64 - - id: ust - type: System.Int64 - - id: msc - type: System.Int64 - - id: sbc - type: System.Int64 - return: - type: System.Boolean - content.vb: Public Shared Function WaitForMscOML(dpy As DisplayPtr, drawable As GLXDrawable, target_msc As Long, divisor As Long, remainder As Long, ust As Long, msc As Long, sbc As Long) As Boolean - overload: OpenTK.Graphics.Glx.Glx.OML.WaitForMscOML* - nameWithType.vb: Glx.OML.WaitForMscOML(DisplayPtr, GLXDrawable, Long, Long, Long, Long, Long, Long) - fullName.vb: OpenTK.Graphics.Glx.Glx.OML.WaitForMscOML(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, Long, Long, Long, Long, Long, Long) - name.vb: WaitForMscOML(DisplayPtr, GLXDrawable, Long, Long, Long, Long, Long, Long) -- uid: OpenTK.Graphics.Glx.Glx.OML.WaitForSbcOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int64,System.Span{System.Int64},System.Span{System.Int64},System.Span{System.Int64}) - commentId: M:OpenTK.Graphics.Glx.Glx.OML.WaitForSbcOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int64,System.Span{System.Int64},System.Span{System.Int64},System.Span{System.Int64}) - id: WaitForSbcOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int64,System.Span{System.Int64},System.Span{System.Int64},System.Span{System.Int64}) - parent: OpenTK.Graphics.Glx.Glx.OML - langs: - - csharp - - vb - name: WaitForSbcOML(DisplayPtr, GLXDrawable, long, Span, Span, Span) - nameWithType: Glx.OML.WaitForSbcOML(DisplayPtr, GLXDrawable, long, Span, Span, Span) - fullName: OpenTK.Graphics.Glx.Glx.OML.WaitForSbcOML(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, long, System.Span, System.Span, System.Span) - type: Method - source: - id: WaitForSbcOML - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 1267 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_OML_sync_control] - - [entry point: glXWaitForSbcOML] - -
- example: [] - syntax: - content: public static bool WaitForSbcOML(DisplayPtr dpy, GLXDrawable drawable, long target_sbc, Span ust, Span msc, Span sbc) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: drawable - type: OpenTK.Graphics.Glx.GLXDrawable - - id: target_sbc - type: System.Int64 - - id: ust - type: System.Span{System.Int64} - - id: msc - type: System.Span{System.Int64} - - id: sbc - type: System.Span{System.Int64} - return: - type: System.Boolean - content.vb: Public Shared Function WaitForSbcOML(dpy As DisplayPtr, drawable As GLXDrawable, target_sbc As Long, ust As Span(Of Long), msc As Span(Of Long), sbc As Span(Of Long)) As Boolean - overload: OpenTK.Graphics.Glx.Glx.OML.WaitForSbcOML* - nameWithType.vb: Glx.OML.WaitForSbcOML(DisplayPtr, GLXDrawable, Long, Span(Of Long), Span(Of Long), Span(Of Long)) - fullName.vb: OpenTK.Graphics.Glx.Glx.OML.WaitForSbcOML(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, Long, System.Span(Of Long), System.Span(Of Long), System.Span(Of Long)) - name.vb: WaitForSbcOML(DisplayPtr, GLXDrawable, Long, Span(Of Long), Span(Of Long), Span(Of Long)) -- uid: OpenTK.Graphics.Glx.Glx.OML.WaitForSbcOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int64,System.Int64[],System.Int64[],System.Int64[]) - commentId: M:OpenTK.Graphics.Glx.Glx.OML.WaitForSbcOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int64,System.Int64[],System.Int64[],System.Int64[]) - id: WaitForSbcOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int64,System.Int64[],System.Int64[],System.Int64[]) - parent: OpenTK.Graphics.Glx.Glx.OML - langs: - - csharp - - vb - name: WaitForSbcOML(DisplayPtr, GLXDrawable, long, long[], long[], long[]) - nameWithType: Glx.OML.WaitForSbcOML(DisplayPtr, GLXDrawable, long, long[], long[], long[]) - fullName: OpenTK.Graphics.Glx.Glx.OML.WaitForSbcOML(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, long, long[], long[], long[]) - type: Method - source: - id: WaitForSbcOML - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 1283 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_OML_sync_control] - - [entry point: glXWaitForSbcOML] - -
- example: [] - syntax: - content: public static bool WaitForSbcOML(DisplayPtr dpy, GLXDrawable drawable, long target_sbc, long[] ust, long[] msc, long[] sbc) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: drawable - type: OpenTK.Graphics.Glx.GLXDrawable - - id: target_sbc - type: System.Int64 - - id: ust - type: System.Int64[] - - id: msc - type: System.Int64[] - - id: sbc - type: System.Int64[] - return: - type: System.Boolean - content.vb: Public Shared Function WaitForSbcOML(dpy As DisplayPtr, drawable As GLXDrawable, target_sbc As Long, ust As Long(), msc As Long(), sbc As Long()) As Boolean - overload: OpenTK.Graphics.Glx.Glx.OML.WaitForSbcOML* - nameWithType.vb: Glx.OML.WaitForSbcOML(DisplayPtr, GLXDrawable, Long, Long(), Long(), Long()) - fullName.vb: OpenTK.Graphics.Glx.Glx.OML.WaitForSbcOML(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, Long, Long(), Long(), Long()) - name.vb: WaitForSbcOML(DisplayPtr, GLXDrawable, Long, Long(), Long(), Long()) -- uid: OpenTK.Graphics.Glx.Glx.OML.WaitForSbcOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int64,System.Int64@,System.Int64@,System.Int64@) - commentId: M:OpenTK.Graphics.Glx.Glx.OML.WaitForSbcOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int64,System.Int64@,System.Int64@,System.Int64@) - id: WaitForSbcOML(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int64,System.Int64@,System.Int64@,System.Int64@) - parent: OpenTK.Graphics.Glx.Glx.OML - langs: - - csharp - - vb - name: WaitForSbcOML(DisplayPtr, GLXDrawable, long, ref long, ref long, ref long) - nameWithType: Glx.OML.WaitForSbcOML(DisplayPtr, GLXDrawable, long, ref long, ref long, ref long) - fullName: OpenTK.Graphics.Glx.Glx.OML.WaitForSbcOML(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, long, ref long, ref long, ref long) - type: Method - source: - id: WaitForSbcOML - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 1299 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_OML_sync_control] - - [entry point: glXWaitForSbcOML] - -
- example: [] - syntax: - content: public static bool WaitForSbcOML(DisplayPtr dpy, GLXDrawable drawable, long target_sbc, ref long ust, ref long msc, ref long sbc) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: drawable - type: OpenTK.Graphics.Glx.GLXDrawable - - id: target_sbc - type: System.Int64 - - id: ust - type: System.Int64 - - id: msc - type: System.Int64 - - id: sbc - type: System.Int64 - return: - type: System.Boolean - content.vb: Public Shared Function WaitForSbcOML(dpy As DisplayPtr, drawable As GLXDrawable, target_sbc As Long, ust As Long, msc As Long, sbc As Long) As Boolean - overload: OpenTK.Graphics.Glx.Glx.OML.WaitForSbcOML* - nameWithType.vb: Glx.OML.WaitForSbcOML(DisplayPtr, GLXDrawable, Long, Long, Long, Long) - fullName.vb: OpenTK.Graphics.Glx.Glx.OML.WaitForSbcOML(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, Long, Long, Long, Long) - name.vb: WaitForSbcOML(DisplayPtr, GLXDrawable, Long, Long, Long, Long) -references: -- uid: OpenTK.Graphics.Glx - commentId: N:OpenTK.Graphics.Glx - href: OpenTK.html - name: OpenTK.Graphics.Glx - nameWithType: OpenTK.Graphics.Glx - fullName: OpenTK.Graphics.Glx - spec.csharp: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Glx - name: Glx - href: OpenTK.Graphics.Glx.html - spec.vb: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Glx - name: Glx - href: OpenTK.Graphics.Glx.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: System.Object.Equals(System.Object) - commentId: M:System.Object.Equals(System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - name: Equals(object) - nameWithType: object.Equals(object) - fullName: object.Equals(object) - nameWithType.vb: Object.Equals(Object) - fullName.vb: Object.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetHashCode - commentId: M:System.Object.GetHashCode - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - name: GetHashCode() - nameWithType: object.GetHashCode() - fullName: object.GetHashCode() - nameWithType.vb: Object.GetHashCode() - fullName.vb: Object.GetHashCode() - spec.csharp: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.MemberwiseClone - commentId: M:System.Object.MemberwiseClone - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - name: MemberwiseClone() - nameWithType: object.MemberwiseClone() - fullName: object.MemberwiseClone() - nameWithType.vb: Object.MemberwiseClone() - fullName.vb: Object.MemberwiseClone() - spec.csharp: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) - spec.vb: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.ToString - commentId: M:System.Object.ToString - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - name: ToString() - nameWithType: object.ToString() - fullName: object.ToString() - nameWithType.vb: Object.ToString() - fullName.vb: Object.ToString() - spec.csharp: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) - spec.vb: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: OpenTK.Graphics.Glx.Glx.OML.GetMscRateOML* - commentId: Overload:OpenTK.Graphics.Glx.Glx.OML.GetMscRateOML - href: OpenTK.Graphics.Glx.Glx.OML.html#OpenTK_Graphics_Glx_Glx_OML_GetMscRateOML_OpenTK_Graphics_Glx_DisplayPtr_OpenTK_Graphics_Glx_GLXDrawable_System_Int32__System_Int32__ - name: GetMscRateOML - nameWithType: Glx.OML.GetMscRateOML - fullName: OpenTK.Graphics.Glx.Glx.OML.GetMscRateOML -- uid: OpenTK.Graphics.Glx.DisplayPtr - commentId: T:OpenTK.Graphics.Glx.DisplayPtr - parent: OpenTK.Graphics.Glx - href: OpenTK.Graphics.Glx.DisplayPtr.html - name: DisplayPtr - nameWithType: DisplayPtr - fullName: OpenTK.Graphics.Glx.DisplayPtr -- uid: OpenTK.Graphics.Glx.GLXDrawable - commentId: T:OpenTK.Graphics.Glx.GLXDrawable - parent: OpenTK.Graphics.Glx - href: OpenTK.Graphics.Glx.GLXDrawable.html - name: GLXDrawable - nameWithType: GLXDrawable - fullName: OpenTK.Graphics.Glx.GLXDrawable -- uid: System.Int32* - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - name: int* - nameWithType: int* - fullName: int* - nameWithType.vb: Integer* - fullName.vb: Integer* - name.vb: Integer* - spec.csharp: - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '*' - spec.vb: - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '*' -- uid: System.Boolean - commentId: T:System.Boolean - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - name: bool - nameWithType: bool - fullName: bool - nameWithType.vb: Boolean - fullName.vb: Boolean - name.vb: Boolean -- uid: OpenTK.Graphics.Glx.Glx.OML.GetSyncValuesOML* - commentId: Overload:OpenTK.Graphics.Glx.Glx.OML.GetSyncValuesOML - href: OpenTK.Graphics.Glx.Glx.OML.html#OpenTK_Graphics_Glx_Glx_OML_GetSyncValuesOML_OpenTK_Graphics_Glx_DisplayPtr_OpenTK_Graphics_Glx_GLXDrawable_System_Int64__System_Int64__System_Int64__ - name: GetSyncValuesOML - nameWithType: Glx.OML.GetSyncValuesOML - fullName: OpenTK.Graphics.Glx.Glx.OML.GetSyncValuesOML -- uid: System.Int64* - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int64 - name: long* - nameWithType: long* - fullName: long* - nameWithType.vb: Long* - fullName.vb: Long* - name.vb: Long* - spec.csharp: - - uid: System.Int64 - name: long - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int64 - - name: '*' - spec.vb: - - uid: System.Int64 - name: Long - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int64 - - name: '*' -- uid: OpenTK.Graphics.Glx.Glx.OML.SwapBuffersMscOML* - commentId: Overload:OpenTK.Graphics.Glx.Glx.OML.SwapBuffersMscOML - href: OpenTK.Graphics.Glx.Glx.OML.html#OpenTK_Graphics_Glx_Glx_OML_SwapBuffersMscOML_OpenTK_Graphics_Glx_DisplayPtr_OpenTK_Graphics_Glx_GLXDrawable_System_Int64_System_Int64_System_Int64_ - name: SwapBuffersMscOML - nameWithType: Glx.OML.SwapBuffersMscOML - fullName: OpenTK.Graphics.Glx.Glx.OML.SwapBuffersMscOML -- uid: System.Int64 - commentId: T:System.Int64 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int64 - name: long - nameWithType: long - fullName: long - nameWithType.vb: Long - fullName.vb: Long - name.vb: Long -- uid: OpenTK.Graphics.Glx.Glx.OML.WaitForMscOML* - commentId: Overload:OpenTK.Graphics.Glx.Glx.OML.WaitForMscOML - href: OpenTK.Graphics.Glx.Glx.OML.html#OpenTK_Graphics_Glx_Glx_OML_WaitForMscOML_OpenTK_Graphics_Glx_DisplayPtr_OpenTK_Graphics_Glx_GLXDrawable_System_Int64_System_Int64_System_Int64_System_Int64__System_Int64__System_Int64__ - name: WaitForMscOML - nameWithType: Glx.OML.WaitForMscOML - fullName: OpenTK.Graphics.Glx.Glx.OML.WaitForMscOML -- uid: OpenTK.Graphics.Glx.Glx.OML.WaitForSbcOML* - commentId: Overload:OpenTK.Graphics.Glx.Glx.OML.WaitForSbcOML - href: OpenTK.Graphics.Glx.Glx.OML.html#OpenTK_Graphics_Glx_Glx_OML_WaitForSbcOML_OpenTK_Graphics_Glx_DisplayPtr_OpenTK_Graphics_Glx_GLXDrawable_System_Int64_System_Int64__System_Int64__System_Int64__ - name: WaitForSbcOML - nameWithType: Glx.OML.WaitForSbcOML - fullName: OpenTK.Graphics.Glx.Glx.OML.WaitForSbcOML -- uid: System.Span{System.Int32} - commentId: T:System.Span{System.Int32} - parent: System - definition: System.Span`1 - href: https://learn.microsoft.com/dotnet/api/system.span-1 - name: Span - nameWithType: Span - fullName: System.Span - nameWithType.vb: Span(Of Integer) - fullName.vb: System.Span(Of Integer) - name.vb: Span(Of Integer) - spec.csharp: - - uid: System.Span`1 - name: Span - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.span-1 - - name: < - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '>' - spec.vb: - - uid: System.Span`1 - name: Span - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.span-1 - - name: ( - - name: Of - - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) -- uid: System.Span`1 - commentId: T:System.Span`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.span-1 - name: Span - nameWithType: Span - fullName: System.Span - nameWithType.vb: Span(Of T) - fullName.vb: System.Span(Of T) - name.vb: Span(Of T) - spec.csharp: - - uid: System.Span`1 - name: Span - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.span-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.Span`1 - name: Span - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.span-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: System.Int32[] - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - name: int[] - nameWithType: int[] - fullName: int[] - nameWithType.vb: Integer() - fullName.vb: Integer() - name.vb: Integer() - spec.csharp: - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '[' - - name: ']' - spec.vb: - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ( - - name: ) -- uid: System.Int32 - commentId: T:System.Int32 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - name: int - nameWithType: int - fullName: int - nameWithType.vb: Integer - fullName.vb: Integer - name.vb: Integer -- uid: System.Span{System.Int64} - commentId: T:System.Span{System.Int64} - parent: System - definition: System.Span`1 - href: https://learn.microsoft.com/dotnet/api/system.span-1 - name: Span - nameWithType: Span - fullName: System.Span - nameWithType.vb: Span(Of Long) - fullName.vb: System.Span(Of Long) - name.vb: Span(Of Long) - spec.csharp: - - uid: System.Span`1 - name: Span - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.span-1 - - name: < - - uid: System.Int64 - name: long - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int64 - - name: '>' - spec.vb: - - uid: System.Span`1 - name: Span - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.span-1 - - name: ( - - name: Of - - name: " " - - uid: System.Int64 - name: Long - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int64 - - name: ) -- uid: System.Int64[] - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int64 - name: long[] - nameWithType: long[] - fullName: long[] - nameWithType.vb: Long() - fullName.vb: Long() - name.vb: Long() - spec.csharp: - - uid: System.Int64 - name: long - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int64 - - name: '[' - - name: ']' - spec.vb: - - uid: System.Int64 - name: Long - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int64 - - name: ( - - name: ) diff --git a/api/OpenTK.Graphics.Glx.Glx.SGI.yml b/api/OpenTK.Graphics.Glx.Glx.SGI.yml deleted file mode 100644 index 01900a56..00000000 --- a/api/OpenTK.Graphics.Glx.Glx.SGI.yml +++ /dev/null @@ -1,990 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: OpenTK.Graphics.Glx.Glx.SGI - commentId: T:OpenTK.Graphics.Glx.Glx.SGI - id: Glx.SGI - parent: OpenTK.Graphics.Glx - children: - - OpenTK.Graphics.Glx.Glx.SGI.CushionSGI(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.Window,System.Single) - - OpenTK.Graphics.Glx.Glx.SGI.GetCurrentReadDrawableSGI - - OpenTK.Graphics.Glx.Glx.SGI.GetVideoSyncSGI(System.Span{System.UInt32}) - - OpenTK.Graphics.Glx.Glx.SGI.GetVideoSyncSGI(System.UInt32*) - - OpenTK.Graphics.Glx.Glx.SGI.GetVideoSyncSGI(System.UInt32@) - - OpenTK.Graphics.Glx.Glx.SGI.GetVideoSyncSGI(System.UInt32[]) - - OpenTK.Graphics.Glx.Glx.SGI.MakeCurrentReadSGI(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,OpenTK.Graphics.Glx.GLXDrawable,OpenTK.Graphics.Glx.GLXContext) - - OpenTK.Graphics.Glx.Glx.SGI.SwapIntervalSGI(System.Int32) - - OpenTK.Graphics.Glx.Glx.SGI.WaitVideoSyncSGI(System.Int32,System.Int32,System.Span{System.UInt32}) - - OpenTK.Graphics.Glx.Glx.SGI.WaitVideoSyncSGI(System.Int32,System.Int32,System.UInt32*) - - OpenTK.Graphics.Glx.Glx.SGI.WaitVideoSyncSGI(System.Int32,System.Int32,System.UInt32@) - - OpenTK.Graphics.Glx.Glx.SGI.WaitVideoSyncSGI(System.Int32,System.Int32,System.UInt32[]) - langs: - - csharp - - vb - name: Glx.SGI - nameWithType: Glx.SGI - fullName: OpenTK.Graphics.Glx.Glx.SGI - type: Class - source: - id: SGI - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 1311 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: SGI extensions. - example: [] - syntax: - content: public static class Glx.SGI - content.vb: Public Module Glx.SGI - inheritance: - - System.Object - inheritedMembers: - - System.Object.Equals(System.Object) - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetHashCode - - System.Object.GetType - - System.Object.MemberwiseClone - - System.Object.ReferenceEquals(System.Object,System.Object) - - System.Object.ToString -- uid: OpenTK.Graphics.Glx.Glx.SGI.CushionSGI(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.Window,System.Single) - commentId: M:OpenTK.Graphics.Glx.Glx.SGI.CushionSGI(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.Window,System.Single) - id: CushionSGI(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.Window,System.Single) - parent: OpenTK.Graphics.Glx.Glx.SGI - langs: - - csharp - - vb - name: CushionSGI(DisplayPtr, Window, float) - nameWithType: Glx.SGI.CushionSGI(DisplayPtr, Window, float) - fullName: OpenTK.Graphics.Glx.Glx.SGI.CushionSGI(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.Window, float) - type: Method - source: - id: CushionSGI - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs - startLine: 330 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_SGI_cushion] - - [entry point: glXCushionSGI] - -
- example: [] - syntax: - content: public static void CushionSGI(DisplayPtr dpy, Window window, float cushion) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: window - type: OpenTK.Graphics.Glx.Window - - id: cushion - type: System.Single - content.vb: Public Shared Sub CushionSGI(dpy As DisplayPtr, window As Window, cushion As Single) - overload: OpenTK.Graphics.Glx.Glx.SGI.CushionSGI* - nameWithType.vb: Glx.SGI.CushionSGI(DisplayPtr, Window, Single) - fullName.vb: OpenTK.Graphics.Glx.Glx.SGI.CushionSGI(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.Window, Single) - name.vb: CushionSGI(DisplayPtr, Window, Single) -- uid: OpenTK.Graphics.Glx.Glx.SGI.GetCurrentReadDrawableSGI - commentId: M:OpenTK.Graphics.Glx.Glx.SGI.GetCurrentReadDrawableSGI - id: GetCurrentReadDrawableSGI - parent: OpenTK.Graphics.Glx.Glx.SGI - langs: - - csharp - - vb - name: GetCurrentReadDrawableSGI() - nameWithType: Glx.SGI.GetCurrentReadDrawableSGI() - fullName: OpenTK.Graphics.Glx.Glx.SGI.GetCurrentReadDrawableSGI() - type: Method - source: - id: GetCurrentReadDrawableSGI - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs - startLine: 333 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_SGI_make_current_read] - - [entry point: glXGetCurrentReadDrawableSGI] - -
- example: [] - syntax: - content: public static GLXDrawable GetCurrentReadDrawableSGI() - return: - type: OpenTK.Graphics.Glx.GLXDrawable - content.vb: Public Shared Function GetCurrentReadDrawableSGI() As GLXDrawable - overload: OpenTK.Graphics.Glx.Glx.SGI.GetCurrentReadDrawableSGI* -- uid: OpenTK.Graphics.Glx.Glx.SGI.GetVideoSyncSGI(System.UInt32*) - commentId: M:OpenTK.Graphics.Glx.Glx.SGI.GetVideoSyncSGI(System.UInt32*) - id: GetVideoSyncSGI(System.UInt32*) - parent: OpenTK.Graphics.Glx.Glx.SGI - langs: - - csharp - - vb - name: GetVideoSyncSGI(uint*) - nameWithType: Glx.SGI.GetVideoSyncSGI(uint*) - fullName: OpenTK.Graphics.Glx.Glx.SGI.GetVideoSyncSGI(uint*) - type: Method - source: - id: GetVideoSyncSGI - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs - startLine: 336 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_SGI_video_sync] - - [entry point: glXGetVideoSyncSGI] - -
- example: [] - syntax: - content: public static int GetVideoSyncSGI(uint* count) - parameters: - - id: count - type: System.UInt32* - return: - type: System.Int32 - content.vb: Public Shared Function GetVideoSyncSGI(count As UInteger*) As Integer - overload: OpenTK.Graphics.Glx.Glx.SGI.GetVideoSyncSGI* - nameWithType.vb: Glx.SGI.GetVideoSyncSGI(UInteger*) - fullName.vb: OpenTK.Graphics.Glx.Glx.SGI.GetVideoSyncSGI(UInteger*) - name.vb: GetVideoSyncSGI(UInteger*) -- uid: OpenTK.Graphics.Glx.Glx.SGI.MakeCurrentReadSGI(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,OpenTK.Graphics.Glx.GLXDrawable,OpenTK.Graphics.Glx.GLXContext) - commentId: M:OpenTK.Graphics.Glx.Glx.SGI.MakeCurrentReadSGI(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,OpenTK.Graphics.Glx.GLXDrawable,OpenTK.Graphics.Glx.GLXContext) - id: MakeCurrentReadSGI(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,OpenTK.Graphics.Glx.GLXDrawable,OpenTK.Graphics.Glx.GLXContext) - parent: OpenTK.Graphics.Glx.Glx.SGI - langs: - - csharp - - vb - name: MakeCurrentReadSGI(DisplayPtr, GLXDrawable, GLXDrawable, GLXContext) - nameWithType: Glx.SGI.MakeCurrentReadSGI(DisplayPtr, GLXDrawable, GLXDrawable, GLXContext) - fullName: OpenTK.Graphics.Glx.Glx.SGI.MakeCurrentReadSGI(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, OpenTK.Graphics.Glx.GLXDrawable, OpenTK.Graphics.Glx.GLXContext) - type: Method - source: - id: MakeCurrentReadSGI - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs - startLine: 339 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_SGI_make_current_read] - - [entry point: glXMakeCurrentReadSGI] - -
- example: [] - syntax: - content: public static bool MakeCurrentReadSGI(DisplayPtr dpy, GLXDrawable draw, GLXDrawable read, GLXContext ctx) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: draw - type: OpenTK.Graphics.Glx.GLXDrawable - - id: read - type: OpenTK.Graphics.Glx.GLXDrawable - - id: ctx - type: OpenTK.Graphics.Glx.GLXContext - return: - type: System.Boolean - content.vb: Public Shared Function MakeCurrentReadSGI(dpy As DisplayPtr, draw As GLXDrawable, read As GLXDrawable, ctx As GLXContext) As Boolean - overload: OpenTK.Graphics.Glx.Glx.SGI.MakeCurrentReadSGI* -- uid: OpenTK.Graphics.Glx.Glx.SGI.SwapIntervalSGI(System.Int32) - commentId: M:OpenTK.Graphics.Glx.Glx.SGI.SwapIntervalSGI(System.Int32) - id: SwapIntervalSGI(System.Int32) - parent: OpenTK.Graphics.Glx.Glx.SGI - langs: - - csharp - - vb - name: SwapIntervalSGI(int) - nameWithType: Glx.SGI.SwapIntervalSGI(int) - fullName: OpenTK.Graphics.Glx.Glx.SGI.SwapIntervalSGI(int) - type: Method - source: - id: SwapIntervalSGI - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs - startLine: 342 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_SGI_swap_control] - - [entry point: glXSwapIntervalSGI] - -
- example: [] - syntax: - content: public static int SwapIntervalSGI(int interval) - parameters: - - id: interval - type: System.Int32 - return: - type: System.Int32 - content.vb: Public Shared Function SwapIntervalSGI(interval As Integer) As Integer - overload: OpenTK.Graphics.Glx.Glx.SGI.SwapIntervalSGI* - nameWithType.vb: Glx.SGI.SwapIntervalSGI(Integer) - fullName.vb: OpenTK.Graphics.Glx.Glx.SGI.SwapIntervalSGI(Integer) - name.vb: SwapIntervalSGI(Integer) -- uid: OpenTK.Graphics.Glx.Glx.SGI.WaitVideoSyncSGI(System.Int32,System.Int32,System.UInt32*) - commentId: M:OpenTK.Graphics.Glx.Glx.SGI.WaitVideoSyncSGI(System.Int32,System.Int32,System.UInt32*) - id: WaitVideoSyncSGI(System.Int32,System.Int32,System.UInt32*) - parent: OpenTK.Graphics.Glx.Glx.SGI - langs: - - csharp - - vb - name: WaitVideoSyncSGI(int, int, uint*) - nameWithType: Glx.SGI.WaitVideoSyncSGI(int, int, uint*) - fullName: OpenTK.Graphics.Glx.Glx.SGI.WaitVideoSyncSGI(int, int, uint*) - type: Method - source: - id: WaitVideoSyncSGI - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs - startLine: 345 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_SGI_video_sync] - - [entry point: glXWaitVideoSyncSGI] - -
- example: [] - syntax: - content: public static int WaitVideoSyncSGI(int divisor, int remainder, uint* count) - parameters: - - id: divisor - type: System.Int32 - - id: remainder - type: System.Int32 - - id: count - type: System.UInt32* - return: - type: System.Int32 - content.vb: Public Shared Function WaitVideoSyncSGI(divisor As Integer, remainder As Integer, count As UInteger*) As Integer - overload: OpenTK.Graphics.Glx.Glx.SGI.WaitVideoSyncSGI* - nameWithType.vb: Glx.SGI.WaitVideoSyncSGI(Integer, Integer, UInteger*) - fullName.vb: OpenTK.Graphics.Glx.Glx.SGI.WaitVideoSyncSGI(Integer, Integer, UInteger*) - name.vb: WaitVideoSyncSGI(Integer, Integer, UInteger*) -- uid: OpenTK.Graphics.Glx.Glx.SGI.GetVideoSyncSGI(System.Span{System.UInt32}) - commentId: M:OpenTK.Graphics.Glx.Glx.SGI.GetVideoSyncSGI(System.Span{System.UInt32}) - id: GetVideoSyncSGI(System.Span{System.UInt32}) - parent: OpenTK.Graphics.Glx.Glx.SGI - langs: - - csharp - - vb - name: GetVideoSyncSGI(Span) - nameWithType: Glx.SGI.GetVideoSyncSGI(Span) - fullName: OpenTK.Graphics.Glx.Glx.SGI.GetVideoSyncSGI(System.Span) - type: Method - source: - id: GetVideoSyncSGI - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 1314 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_SGI_video_sync] - - [entry point: glXGetVideoSyncSGI] - -
- example: [] - syntax: - content: public static int GetVideoSyncSGI(Span count) - parameters: - - id: count - type: System.Span{System.UInt32} - return: - type: System.Int32 - content.vb: Public Shared Function GetVideoSyncSGI(count As Span(Of UInteger)) As Integer - overload: OpenTK.Graphics.Glx.Glx.SGI.GetVideoSyncSGI* - nameWithType.vb: Glx.SGI.GetVideoSyncSGI(Span(Of UInteger)) - fullName.vb: OpenTK.Graphics.Glx.Glx.SGI.GetVideoSyncSGI(System.Span(Of UInteger)) - name.vb: GetVideoSyncSGI(Span(Of UInteger)) -- uid: OpenTK.Graphics.Glx.Glx.SGI.GetVideoSyncSGI(System.UInt32[]) - commentId: M:OpenTK.Graphics.Glx.Glx.SGI.GetVideoSyncSGI(System.UInt32[]) - id: GetVideoSyncSGI(System.UInt32[]) - parent: OpenTK.Graphics.Glx.Glx.SGI - langs: - - csharp - - vb - name: GetVideoSyncSGI(uint[]) - nameWithType: Glx.SGI.GetVideoSyncSGI(uint[]) - fullName: OpenTK.Graphics.Glx.Glx.SGI.GetVideoSyncSGI(uint[]) - type: Method - source: - id: GetVideoSyncSGI - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 1324 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_SGI_video_sync] - - [entry point: glXGetVideoSyncSGI] - -
- example: [] - syntax: - content: public static int GetVideoSyncSGI(uint[] count) - parameters: - - id: count - type: System.UInt32[] - return: - type: System.Int32 - content.vb: Public Shared Function GetVideoSyncSGI(count As UInteger()) As Integer - overload: OpenTK.Graphics.Glx.Glx.SGI.GetVideoSyncSGI* - nameWithType.vb: Glx.SGI.GetVideoSyncSGI(UInteger()) - fullName.vb: OpenTK.Graphics.Glx.Glx.SGI.GetVideoSyncSGI(UInteger()) - name.vb: GetVideoSyncSGI(UInteger()) -- uid: OpenTK.Graphics.Glx.Glx.SGI.GetVideoSyncSGI(System.UInt32@) - commentId: M:OpenTK.Graphics.Glx.Glx.SGI.GetVideoSyncSGI(System.UInt32@) - id: GetVideoSyncSGI(System.UInt32@) - parent: OpenTK.Graphics.Glx.Glx.SGI - langs: - - csharp - - vb - name: GetVideoSyncSGI(ref uint) - nameWithType: Glx.SGI.GetVideoSyncSGI(ref uint) - fullName: OpenTK.Graphics.Glx.Glx.SGI.GetVideoSyncSGI(ref uint) - type: Method - source: - id: GetVideoSyncSGI - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 1334 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_SGI_video_sync] - - [entry point: glXGetVideoSyncSGI] - -
- example: [] - syntax: - content: public static int GetVideoSyncSGI(ref uint count) - parameters: - - id: count - type: System.UInt32 - return: - type: System.Int32 - content.vb: Public Shared Function GetVideoSyncSGI(count As UInteger) As Integer - overload: OpenTK.Graphics.Glx.Glx.SGI.GetVideoSyncSGI* - nameWithType.vb: Glx.SGI.GetVideoSyncSGI(UInteger) - fullName.vb: OpenTK.Graphics.Glx.Glx.SGI.GetVideoSyncSGI(UInteger) - name.vb: GetVideoSyncSGI(UInteger) -- uid: OpenTK.Graphics.Glx.Glx.SGI.WaitVideoSyncSGI(System.Int32,System.Int32,System.Span{System.UInt32}) - commentId: M:OpenTK.Graphics.Glx.Glx.SGI.WaitVideoSyncSGI(System.Int32,System.Int32,System.Span{System.UInt32}) - id: WaitVideoSyncSGI(System.Int32,System.Int32,System.Span{System.UInt32}) - parent: OpenTK.Graphics.Glx.Glx.SGI - langs: - - csharp - - vb - name: WaitVideoSyncSGI(int, int, Span) - nameWithType: Glx.SGI.WaitVideoSyncSGI(int, int, Span) - fullName: OpenTK.Graphics.Glx.Glx.SGI.WaitVideoSyncSGI(int, int, System.Span) - type: Method - source: - id: WaitVideoSyncSGI - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 1344 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_SGI_video_sync] - - [entry point: glXWaitVideoSyncSGI] - -
- example: [] - syntax: - content: public static int WaitVideoSyncSGI(int divisor, int remainder, Span count) - parameters: - - id: divisor - type: System.Int32 - - id: remainder - type: System.Int32 - - id: count - type: System.Span{System.UInt32} - return: - type: System.Int32 - content.vb: Public Shared Function WaitVideoSyncSGI(divisor As Integer, remainder As Integer, count As Span(Of UInteger)) As Integer - overload: OpenTK.Graphics.Glx.Glx.SGI.WaitVideoSyncSGI* - nameWithType.vb: Glx.SGI.WaitVideoSyncSGI(Integer, Integer, Span(Of UInteger)) - fullName.vb: OpenTK.Graphics.Glx.Glx.SGI.WaitVideoSyncSGI(Integer, Integer, System.Span(Of UInteger)) - name.vb: WaitVideoSyncSGI(Integer, Integer, Span(Of UInteger)) -- uid: OpenTK.Graphics.Glx.Glx.SGI.WaitVideoSyncSGI(System.Int32,System.Int32,System.UInt32[]) - commentId: M:OpenTK.Graphics.Glx.Glx.SGI.WaitVideoSyncSGI(System.Int32,System.Int32,System.UInt32[]) - id: WaitVideoSyncSGI(System.Int32,System.Int32,System.UInt32[]) - parent: OpenTK.Graphics.Glx.Glx.SGI - langs: - - csharp - - vb - name: WaitVideoSyncSGI(int, int, uint[]) - nameWithType: Glx.SGI.WaitVideoSyncSGI(int, int, uint[]) - fullName: OpenTK.Graphics.Glx.Glx.SGI.WaitVideoSyncSGI(int, int, uint[]) - type: Method - source: - id: WaitVideoSyncSGI - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 1354 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_SGI_video_sync] - - [entry point: glXWaitVideoSyncSGI] - -
- example: [] - syntax: - content: public static int WaitVideoSyncSGI(int divisor, int remainder, uint[] count) - parameters: - - id: divisor - type: System.Int32 - - id: remainder - type: System.Int32 - - id: count - type: System.UInt32[] - return: - type: System.Int32 - content.vb: Public Shared Function WaitVideoSyncSGI(divisor As Integer, remainder As Integer, count As UInteger()) As Integer - overload: OpenTK.Graphics.Glx.Glx.SGI.WaitVideoSyncSGI* - nameWithType.vb: Glx.SGI.WaitVideoSyncSGI(Integer, Integer, UInteger()) - fullName.vb: OpenTK.Graphics.Glx.Glx.SGI.WaitVideoSyncSGI(Integer, Integer, UInteger()) - name.vb: WaitVideoSyncSGI(Integer, Integer, UInteger()) -- uid: OpenTK.Graphics.Glx.Glx.SGI.WaitVideoSyncSGI(System.Int32,System.Int32,System.UInt32@) - commentId: M:OpenTK.Graphics.Glx.Glx.SGI.WaitVideoSyncSGI(System.Int32,System.Int32,System.UInt32@) - id: WaitVideoSyncSGI(System.Int32,System.Int32,System.UInt32@) - parent: OpenTK.Graphics.Glx.Glx.SGI - langs: - - csharp - - vb - name: WaitVideoSyncSGI(int, int, ref uint) - nameWithType: Glx.SGI.WaitVideoSyncSGI(int, int, ref uint) - fullName: OpenTK.Graphics.Glx.Glx.SGI.WaitVideoSyncSGI(int, int, ref uint) - type: Method - source: - id: WaitVideoSyncSGI - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 1364 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_SGI_video_sync] - - [entry point: glXWaitVideoSyncSGI] - -
- example: [] - syntax: - content: public static int WaitVideoSyncSGI(int divisor, int remainder, ref uint count) - parameters: - - id: divisor - type: System.Int32 - - id: remainder - type: System.Int32 - - id: count - type: System.UInt32 - return: - type: System.Int32 - content.vb: Public Shared Function WaitVideoSyncSGI(divisor As Integer, remainder As Integer, count As UInteger) As Integer - overload: OpenTK.Graphics.Glx.Glx.SGI.WaitVideoSyncSGI* - nameWithType.vb: Glx.SGI.WaitVideoSyncSGI(Integer, Integer, UInteger) - fullName.vb: OpenTK.Graphics.Glx.Glx.SGI.WaitVideoSyncSGI(Integer, Integer, UInteger) - name.vb: WaitVideoSyncSGI(Integer, Integer, UInteger) -references: -- uid: OpenTK.Graphics.Glx - commentId: N:OpenTK.Graphics.Glx - href: OpenTK.html - name: OpenTK.Graphics.Glx - nameWithType: OpenTK.Graphics.Glx - fullName: OpenTK.Graphics.Glx - spec.csharp: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Glx - name: Glx - href: OpenTK.Graphics.Glx.html - spec.vb: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Glx - name: Glx - href: OpenTK.Graphics.Glx.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: System.Object.Equals(System.Object) - commentId: M:System.Object.Equals(System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - name: Equals(object) - nameWithType: object.Equals(object) - fullName: object.Equals(object) - nameWithType.vb: Object.Equals(Object) - fullName.vb: Object.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetHashCode - commentId: M:System.Object.GetHashCode - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - name: GetHashCode() - nameWithType: object.GetHashCode() - fullName: object.GetHashCode() - nameWithType.vb: Object.GetHashCode() - fullName.vb: Object.GetHashCode() - spec.csharp: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.MemberwiseClone - commentId: M:System.Object.MemberwiseClone - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - name: MemberwiseClone() - nameWithType: object.MemberwiseClone() - fullName: object.MemberwiseClone() - nameWithType.vb: Object.MemberwiseClone() - fullName.vb: Object.MemberwiseClone() - spec.csharp: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) - spec.vb: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.ToString - commentId: M:System.Object.ToString - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - name: ToString() - nameWithType: object.ToString() - fullName: object.ToString() - nameWithType.vb: Object.ToString() - fullName.vb: Object.ToString() - spec.csharp: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) - spec.vb: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: OpenTK.Graphics.Glx.Glx.SGI.CushionSGI* - commentId: Overload:OpenTK.Graphics.Glx.Glx.SGI.CushionSGI - href: OpenTK.Graphics.Glx.Glx.SGI.html#OpenTK_Graphics_Glx_Glx_SGI_CushionSGI_OpenTK_Graphics_Glx_DisplayPtr_OpenTK_Graphics_Glx_Window_System_Single_ - name: CushionSGI - nameWithType: Glx.SGI.CushionSGI - fullName: OpenTK.Graphics.Glx.Glx.SGI.CushionSGI -- uid: OpenTK.Graphics.Glx.DisplayPtr - commentId: T:OpenTK.Graphics.Glx.DisplayPtr - parent: OpenTK.Graphics.Glx - href: OpenTK.Graphics.Glx.DisplayPtr.html - name: DisplayPtr - nameWithType: DisplayPtr - fullName: OpenTK.Graphics.Glx.DisplayPtr -- uid: OpenTK.Graphics.Glx.Window - commentId: T:OpenTK.Graphics.Glx.Window - parent: OpenTK.Graphics.Glx - href: OpenTK.Graphics.Glx.Window.html - name: Window - nameWithType: Window - fullName: OpenTK.Graphics.Glx.Window -- uid: System.Single - commentId: T:System.Single - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.single - name: float - nameWithType: float - fullName: float - nameWithType.vb: Single - fullName.vb: Single - name.vb: Single -- uid: OpenTK.Graphics.Glx.Glx.SGI.GetCurrentReadDrawableSGI* - commentId: Overload:OpenTK.Graphics.Glx.Glx.SGI.GetCurrentReadDrawableSGI - href: OpenTK.Graphics.Glx.Glx.SGI.html#OpenTK_Graphics_Glx_Glx_SGI_GetCurrentReadDrawableSGI - name: GetCurrentReadDrawableSGI - nameWithType: Glx.SGI.GetCurrentReadDrawableSGI - fullName: OpenTK.Graphics.Glx.Glx.SGI.GetCurrentReadDrawableSGI -- uid: OpenTK.Graphics.Glx.GLXDrawable - commentId: T:OpenTK.Graphics.Glx.GLXDrawable - parent: OpenTK.Graphics.Glx - href: OpenTK.Graphics.Glx.GLXDrawable.html - name: GLXDrawable - nameWithType: GLXDrawable - fullName: OpenTK.Graphics.Glx.GLXDrawable -- uid: OpenTK.Graphics.Glx.Glx.SGI.GetVideoSyncSGI* - commentId: Overload:OpenTK.Graphics.Glx.Glx.SGI.GetVideoSyncSGI - href: OpenTK.Graphics.Glx.Glx.SGI.html#OpenTK_Graphics_Glx_Glx_SGI_GetVideoSyncSGI_System_UInt32__ - name: GetVideoSyncSGI - nameWithType: Glx.SGI.GetVideoSyncSGI - fullName: OpenTK.Graphics.Glx.Glx.SGI.GetVideoSyncSGI -- uid: System.UInt32* - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - name: uint* - nameWithType: uint* - fullName: uint* - nameWithType.vb: UInteger* - fullName.vb: UInteger* - name.vb: UInteger* - spec.csharp: - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: '*' - spec.vb: - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: '*' -- uid: System.Int32 - commentId: T:System.Int32 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - name: int - nameWithType: int - fullName: int - nameWithType.vb: Integer - fullName.vb: Integer - name.vb: Integer -- uid: OpenTK.Graphics.Glx.Glx.SGI.MakeCurrentReadSGI* - commentId: Overload:OpenTK.Graphics.Glx.Glx.SGI.MakeCurrentReadSGI - href: OpenTK.Graphics.Glx.Glx.SGI.html#OpenTK_Graphics_Glx_Glx_SGI_MakeCurrentReadSGI_OpenTK_Graphics_Glx_DisplayPtr_OpenTK_Graphics_Glx_GLXDrawable_OpenTK_Graphics_Glx_GLXDrawable_OpenTK_Graphics_Glx_GLXContext_ - name: MakeCurrentReadSGI - nameWithType: Glx.SGI.MakeCurrentReadSGI - fullName: OpenTK.Graphics.Glx.Glx.SGI.MakeCurrentReadSGI -- uid: OpenTK.Graphics.Glx.GLXContext - commentId: T:OpenTK.Graphics.Glx.GLXContext - parent: OpenTK.Graphics.Glx - href: OpenTK.Graphics.Glx.GLXContext.html - name: GLXContext - nameWithType: GLXContext - fullName: OpenTK.Graphics.Glx.GLXContext -- uid: System.Boolean - commentId: T:System.Boolean - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - name: bool - nameWithType: bool - fullName: bool - nameWithType.vb: Boolean - fullName.vb: Boolean - name.vb: Boolean -- uid: OpenTK.Graphics.Glx.Glx.SGI.SwapIntervalSGI* - commentId: Overload:OpenTK.Graphics.Glx.Glx.SGI.SwapIntervalSGI - href: OpenTK.Graphics.Glx.Glx.SGI.html#OpenTK_Graphics_Glx_Glx_SGI_SwapIntervalSGI_System_Int32_ - name: SwapIntervalSGI - nameWithType: Glx.SGI.SwapIntervalSGI - fullName: OpenTK.Graphics.Glx.Glx.SGI.SwapIntervalSGI -- uid: OpenTK.Graphics.Glx.Glx.SGI.WaitVideoSyncSGI* - commentId: Overload:OpenTK.Graphics.Glx.Glx.SGI.WaitVideoSyncSGI - href: OpenTK.Graphics.Glx.Glx.SGI.html#OpenTK_Graphics_Glx_Glx_SGI_WaitVideoSyncSGI_System_Int32_System_Int32_System_UInt32__ - name: WaitVideoSyncSGI - nameWithType: Glx.SGI.WaitVideoSyncSGI - fullName: OpenTK.Graphics.Glx.Glx.SGI.WaitVideoSyncSGI -- uid: System.Span{System.UInt32} - commentId: T:System.Span{System.UInt32} - parent: System - definition: System.Span`1 - href: https://learn.microsoft.com/dotnet/api/system.span-1 - name: Span - nameWithType: Span - fullName: System.Span - nameWithType.vb: Span(Of UInteger) - fullName.vb: System.Span(Of UInteger) - name.vb: Span(Of UInteger) - spec.csharp: - - uid: System.Span`1 - name: Span - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.span-1 - - name: < - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: '>' - spec.vb: - - uid: System.Span`1 - name: Span - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.span-1 - - name: ( - - name: Of - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: System.Span`1 - commentId: T:System.Span`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.span-1 - name: Span - nameWithType: Span - fullName: System.Span - nameWithType.vb: Span(Of T) - fullName.vb: System.Span(Of T) - name.vb: Span(Of T) - spec.csharp: - - uid: System.Span`1 - name: Span - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.span-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.Span`1 - name: Span - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.span-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: System.UInt32[] - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - name: uint[] - nameWithType: uint[] - fullName: uint[] - nameWithType.vb: UInteger() - fullName.vb: UInteger() - name.vb: UInteger() - spec.csharp: - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: '[' - - name: ']' - spec.vb: - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ( - - name: ) -- uid: System.UInt32 - commentId: T:System.UInt32 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - name: uint - nameWithType: uint - fullName: uint - nameWithType.vb: UInteger - fullName.vb: UInteger - name.vb: UInteger diff --git a/api/OpenTK.Graphics.Glx.Glx.SGIX.yml b/api/OpenTK.Graphics.Glx.Glx.SGIX.yml deleted file mode 100644 index c149699f..00000000 --- a/api/OpenTK.Graphics.Glx.Glx.SGIX.yml +++ /dev/null @@ -1,4291 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: OpenTK.Graphics.Glx.Glx.SGIX - commentId: T:OpenTK.Graphics.Glx.Glx.SGIX - id: Glx.SGIX - parent: OpenTK.Graphics.Glx - children: - - OpenTK.Graphics.Glx.Glx.SGIX.BindChannelToWindowSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,OpenTK.Graphics.Glx.Window) - - OpenTK.Graphics.Glx.Glx.SGIX.BindHyperpipeSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32) - - OpenTK.Graphics.Glx.Glx.SGIX.BindSwapBarrierSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32) - - OpenTK.Graphics.Glx.Glx.SGIX.ChannelRectSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32) - - OpenTK.Graphics.Glx.Glx.SGIX.ChannelRectSyncSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,OpenTK.Graphics.Glx.All) - - OpenTK.Graphics.Glx.Glx.SGIX.ChooseFBConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32*,System.Int32*) - - OpenTK.Graphics.Glx.Glx.SGIX.ChooseFBConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32@,System.Int32@) - - OpenTK.Graphics.Glx.Glx.SGIX.ChooseFBConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32[],System.Int32[]) - - OpenTK.Graphics.Glx.Glx.SGIX.ChooseFBConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Span{System.Int32},System.Span{System.Int32}) - - OpenTK.Graphics.Glx.Glx.SGIX.CreateContextWithConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfigSGIX,System.Int32,OpenTK.Graphics.Glx.GLXContext,System.Boolean) - - OpenTK.Graphics.Glx.Glx.SGIX.CreateGLXPbufferSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfigSGIX,System.UInt32,System.UInt32,System.Int32*) - - OpenTK.Graphics.Glx.Glx.SGIX.CreateGLXPbufferSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfigSGIX,System.UInt32,System.UInt32,System.Int32@) - - OpenTK.Graphics.Glx.Glx.SGIX.CreateGLXPbufferSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfigSGIX,System.UInt32,System.UInt32,System.Int32[]) - - OpenTK.Graphics.Glx.Glx.SGIX.CreateGLXPbufferSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfigSGIX,System.UInt32,System.UInt32,System.Span{System.Int32}) - - OpenTK.Graphics.Glx.Glx.SGIX.CreateGLXPixmapWithConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfigSGIX,OpenTK.Graphics.Glx.Pixmap) - - OpenTK.Graphics.Glx.Glx.SGIX.DestroyGLXPbufferSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXPbufferSGIX) - - OpenTK.Graphics.Glx.Glx.SGIX.DestroyHyperpipeConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32) - - OpenTK.Graphics.Glx.Glx.SGIX.GetFBConfigAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfigSGIX,System.Int32,System.Int32*) - - OpenTK.Graphics.Glx.Glx.SGIX.GetFBConfigAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfigSGIX,System.Int32,System.Int32@) - - OpenTK.Graphics.Glx.Glx.SGIX.GetFBConfigAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfigSGIX,System.Int32,System.Int32[]) - - OpenTK.Graphics.Glx.Glx.SGIX.GetFBConfigAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfigSGIX,System.Int32,System.Span{System.Int32}) - - OpenTK.Graphics.Glx.Glx.SGIX.GetFBConfigFromVisualSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.XVisualInfoPtr) - - OpenTK.Graphics.Glx.Glx.SGIX.GetSelectedEventSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Span{System.UInt64}) - - OpenTK.Graphics.Glx.Glx.SGIX.GetSelectedEventSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.UInt64*) - - OpenTK.Graphics.Glx.Glx.SGIX.GetSelectedEventSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.UInt64@) - - OpenTK.Graphics.Glx.Glx.SGIX.GetSelectedEventSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.UInt64[]) - - OpenTK.Graphics.Glx.Glx.SGIX.GetVisualFromFBConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfigSGIX) - - OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.IntPtr) - - OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.Void*) - - OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeAttribSGIX``1(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.Span{``0}) - - OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeAttribSGIX``1(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,``0@) - - OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeAttribSGIX``1(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,``0[]) - - OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX*,System.Int32*) - - OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX@,System.Int32@) - - OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX[],System.Int32[]) - - OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Span{OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX},System.Span{System.Int32}) - - OpenTK.Graphics.Glx.Glx.SGIX.JoinSwapGroupSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,OpenTK.Graphics.Glx.GLXDrawable) - - OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelDeltasSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32*,System.Int32*,System.Int32*,System.Int32*) - - OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelDeltasSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32@,System.Int32@,System.Int32@,System.Int32@) - - OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelDeltasSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32[],System.Int32[],System.Int32[],System.Int32[]) - - OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelDeltasSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Span{System.Int32},System.Span{System.Int32},System.Span{System.Int32},System.Span{System.Int32}) - - OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelRectSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32*,System.Int32*,System.Int32*,System.Int32*) - - OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelRectSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32@,System.Int32@,System.Int32@,System.Int32@) - - OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelRectSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32[],System.Int32[],System.Int32[],System.Int32[]) - - OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelRectSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Span{System.Int32},System.Span{System.Int32},System.Span{System.Int32},System.Span{System.Int32}) - - OpenTK.Graphics.Glx.Glx.SGIX.QueryGLXPbufferSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXPbufferSGIX,System.Int32,System.Span{System.UInt32}) - - OpenTK.Graphics.Glx.Glx.SGIX.QueryGLXPbufferSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXPbufferSGIX,System.Int32,System.UInt32*) - - OpenTK.Graphics.Glx.Glx.SGIX.QueryGLXPbufferSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXPbufferSGIX,System.Int32,System.UInt32@) - - OpenTK.Graphics.Glx.Glx.SGIX.QueryGLXPbufferSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXPbufferSGIX,System.Int32,System.UInt32[]) - - OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.IntPtr) - - OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.Void*) - - OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeAttribSGIX``1(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.Span{``0}) - - OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeAttribSGIX``1(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,``0@) - - OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeAttribSGIX``1(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,``0[]) - - OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeBestAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.IntPtr,System.IntPtr) - - OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeBestAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.Void*,System.Void*) - - OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeBestAttribSGIX``2(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.Span{``0},System.Span{``1}) - - OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeBestAttribSGIX``2(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,``0@,``1@) - - OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeBestAttribSGIX``2(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,``0[],``1[]) - - OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32*) - - OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32@) - - OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32[]) - - OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Span{System.Int32}) - - OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeNetworkSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32*) - - OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeNetworkSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32@) - - OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeNetworkSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32[]) - - OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeNetworkSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Span{System.Int32}) - - OpenTK.Graphics.Glx.Glx.SGIX.QueryMaxSwapBarriersSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32*) - - OpenTK.Graphics.Glx.Glx.SGIX.QueryMaxSwapBarriersSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32@) - - OpenTK.Graphics.Glx.Glx.SGIX.QueryMaxSwapBarriersSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32[]) - - OpenTK.Graphics.Glx.Glx.SGIX.QueryMaxSwapBarriersSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Span{System.Int32}) - - OpenTK.Graphics.Glx.Glx.SGIX.SelectEventSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.UInt64) - langs: - - csharp - - vb - name: Glx.SGIX - nameWithType: Glx.SGIX - fullName: OpenTK.Graphics.Glx.Glx.SGIX - type: Class - source: - id: SGIX - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 1374 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: SGIX extensions. - example: [] - syntax: - content: public static class Glx.SGIX - content.vb: Public Module Glx.SGIX - inheritance: - - System.Object - inheritedMembers: - - System.Object.Equals(System.Object) - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetHashCode - - System.Object.GetType - - System.Object.MemberwiseClone - - System.Object.ReferenceEquals(System.Object,System.Object) - - System.Object.ToString -- uid: OpenTK.Graphics.Glx.Glx.SGIX.BindChannelToWindowSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,OpenTK.Graphics.Glx.Window) - commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.BindChannelToWindowSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,OpenTK.Graphics.Glx.Window) - id: BindChannelToWindowSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,OpenTK.Graphics.Glx.Window) - parent: OpenTK.Graphics.Glx.Glx.SGIX - langs: - - csharp - - vb - name: BindChannelToWindowSGIX(DisplayPtr, int, int, Window) - nameWithType: Glx.SGIX.BindChannelToWindowSGIX(DisplayPtr, int, int, Window) - fullName: OpenTK.Graphics.Glx.Glx.SGIX.BindChannelToWindowSGIX(OpenTK.Graphics.Glx.DisplayPtr, int, int, OpenTK.Graphics.Glx.Window) - type: Method - source: - id: BindChannelToWindowSGIX - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs - startLine: 352 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_SGIX_video_resize] - - [entry point: glXBindChannelToWindowSGIX] - -
- example: [] - syntax: - content: public static int BindChannelToWindowSGIX(DisplayPtr display, int screen, int channel, Window window) - parameters: - - id: display - type: OpenTK.Graphics.Glx.DisplayPtr - - id: screen - type: System.Int32 - - id: channel - type: System.Int32 - - id: window - type: OpenTK.Graphics.Glx.Window - return: - type: System.Int32 - content.vb: Public Shared Function BindChannelToWindowSGIX(display As DisplayPtr, screen As Integer, channel As Integer, window As Window) As Integer - overload: OpenTK.Graphics.Glx.Glx.SGIX.BindChannelToWindowSGIX* - nameWithType.vb: Glx.SGIX.BindChannelToWindowSGIX(DisplayPtr, Integer, Integer, Window) - fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.BindChannelToWindowSGIX(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer, OpenTK.Graphics.Glx.Window) - name.vb: BindChannelToWindowSGIX(DisplayPtr, Integer, Integer, Window) -- uid: OpenTK.Graphics.Glx.Glx.SGIX.BindHyperpipeSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32) - commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.BindHyperpipeSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32) - id: BindHyperpipeSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32) - parent: OpenTK.Graphics.Glx.Glx.SGIX - langs: - - csharp - - vb - name: BindHyperpipeSGIX(DisplayPtr, int) - nameWithType: Glx.SGIX.BindHyperpipeSGIX(DisplayPtr, int) - fullName: OpenTK.Graphics.Glx.Glx.SGIX.BindHyperpipeSGIX(OpenTK.Graphics.Glx.DisplayPtr, int) - type: Method - source: - id: BindHyperpipeSGIX - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs - startLine: 355 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_SGIX_hyperpipe] - - [entry point: glXBindHyperpipeSGIX] - -
- example: [] - syntax: - content: public static int BindHyperpipeSGIX(DisplayPtr dpy, int hpId) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: hpId - type: System.Int32 - return: - type: System.Int32 - content.vb: Public Shared Function BindHyperpipeSGIX(dpy As DisplayPtr, hpId As Integer) As Integer - overload: OpenTK.Graphics.Glx.Glx.SGIX.BindHyperpipeSGIX* - nameWithType.vb: Glx.SGIX.BindHyperpipeSGIX(DisplayPtr, Integer) - fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.BindHyperpipeSGIX(OpenTK.Graphics.Glx.DisplayPtr, Integer) - name.vb: BindHyperpipeSGIX(DisplayPtr, Integer) -- uid: OpenTK.Graphics.Glx.Glx.SGIX.BindSwapBarrierSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32) - commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.BindSwapBarrierSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32) - id: BindSwapBarrierSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32) - parent: OpenTK.Graphics.Glx.Glx.SGIX - langs: - - csharp - - vb - name: BindSwapBarrierSGIX(DisplayPtr, GLXDrawable, int) - nameWithType: Glx.SGIX.BindSwapBarrierSGIX(DisplayPtr, GLXDrawable, int) - fullName: OpenTK.Graphics.Glx.Glx.SGIX.BindSwapBarrierSGIX(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, int) - type: Method - source: - id: BindSwapBarrierSGIX - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs - startLine: 358 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_SGIX_swap_barrier] - - [entry point: glXBindSwapBarrierSGIX] - -
- example: [] - syntax: - content: public static void BindSwapBarrierSGIX(DisplayPtr dpy, GLXDrawable drawable, int barrier) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: drawable - type: OpenTK.Graphics.Glx.GLXDrawable - - id: barrier - type: System.Int32 - content.vb: Public Shared Sub BindSwapBarrierSGIX(dpy As DisplayPtr, drawable As GLXDrawable, barrier As Integer) - overload: OpenTK.Graphics.Glx.Glx.SGIX.BindSwapBarrierSGIX* - nameWithType.vb: Glx.SGIX.BindSwapBarrierSGIX(DisplayPtr, GLXDrawable, Integer) - fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.BindSwapBarrierSGIX(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, Integer) - name.vb: BindSwapBarrierSGIX(DisplayPtr, GLXDrawable, Integer) -- uid: OpenTK.Graphics.Glx.Glx.SGIX.ChannelRectSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32) - commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.ChannelRectSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32) - id: ChannelRectSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32) - parent: OpenTK.Graphics.Glx.Glx.SGIX - langs: - - csharp - - vb - name: ChannelRectSGIX(DisplayPtr, int, int, int, int, int, int) - nameWithType: Glx.SGIX.ChannelRectSGIX(DisplayPtr, int, int, int, int, int, int) - fullName: OpenTK.Graphics.Glx.Glx.SGIX.ChannelRectSGIX(OpenTK.Graphics.Glx.DisplayPtr, int, int, int, int, int, int) - type: Method - source: - id: ChannelRectSGIX - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs - startLine: 361 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_SGIX_video_resize] - - [entry point: glXChannelRectSGIX] - -
- example: [] - syntax: - content: public static int ChannelRectSGIX(DisplayPtr display, int screen, int channel, int x, int y, int w, int h) - parameters: - - id: display - type: OpenTK.Graphics.Glx.DisplayPtr - - id: screen - type: System.Int32 - - id: channel - type: System.Int32 - - id: x - type: System.Int32 - - id: y - type: System.Int32 - - id: w - type: System.Int32 - - id: h - type: System.Int32 - return: - type: System.Int32 - content.vb: Public Shared Function ChannelRectSGIX(display As DisplayPtr, screen As Integer, channel As Integer, x As Integer, y As Integer, w As Integer, h As Integer) As Integer - overload: OpenTK.Graphics.Glx.Glx.SGIX.ChannelRectSGIX* - nameWithType.vb: Glx.SGIX.ChannelRectSGIX(DisplayPtr, Integer, Integer, Integer, Integer, Integer, Integer) - fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.ChannelRectSGIX(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer, Integer, Integer, Integer, Integer) - name.vb: ChannelRectSGIX(DisplayPtr, Integer, Integer, Integer, Integer, Integer, Integer) -- uid: OpenTK.Graphics.Glx.Glx.SGIX.ChannelRectSyncSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,OpenTK.Graphics.Glx.All) - commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.ChannelRectSyncSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,OpenTK.Graphics.Glx.All) - id: ChannelRectSyncSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,OpenTK.Graphics.Glx.All) - parent: OpenTK.Graphics.Glx.Glx.SGIX - langs: - - csharp - - vb - name: ChannelRectSyncSGIX(DisplayPtr, int, int, All) - nameWithType: Glx.SGIX.ChannelRectSyncSGIX(DisplayPtr, int, int, All) - fullName: OpenTK.Graphics.Glx.Glx.SGIX.ChannelRectSyncSGIX(OpenTK.Graphics.Glx.DisplayPtr, int, int, OpenTK.Graphics.Glx.All) - type: Method - source: - id: ChannelRectSyncSGIX - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs - startLine: 364 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_SGIX_video_resize] - - [entry point: glXChannelRectSyncSGIX] - -
- example: [] - syntax: - content: public static int ChannelRectSyncSGIX(DisplayPtr display, int screen, int channel, All synctype) - parameters: - - id: display - type: OpenTK.Graphics.Glx.DisplayPtr - - id: screen - type: System.Int32 - - id: channel - type: System.Int32 - - id: synctype - type: OpenTK.Graphics.Glx.All - return: - type: System.Int32 - content.vb: Public Shared Function ChannelRectSyncSGIX(display As DisplayPtr, screen As Integer, channel As Integer, synctype As All) As Integer - overload: OpenTK.Graphics.Glx.Glx.SGIX.ChannelRectSyncSGIX* - nameWithType.vb: Glx.SGIX.ChannelRectSyncSGIX(DisplayPtr, Integer, Integer, All) - fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.ChannelRectSyncSGIX(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer, OpenTK.Graphics.Glx.All) - name.vb: ChannelRectSyncSGIX(DisplayPtr, Integer, Integer, All) -- uid: OpenTK.Graphics.Glx.Glx.SGIX.ChooseFBConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32*,System.Int32*) - commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.ChooseFBConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32*,System.Int32*) - id: ChooseFBConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32*,System.Int32*) - parent: OpenTK.Graphics.Glx.Glx.SGIX - langs: - - csharp - - vb - name: ChooseFBConfigSGIX(DisplayPtr, int, int*, int*) - nameWithType: Glx.SGIX.ChooseFBConfigSGIX(DisplayPtr, int, int*, int*) - fullName: OpenTK.Graphics.Glx.Glx.SGIX.ChooseFBConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr, int, int*, int*) - type: Method - source: - id: ChooseFBConfigSGIX - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs - startLine: 367 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_SGIX_fbconfig] - - [entry point: glXChooseFBConfigSGIX] - -
- example: [] - syntax: - content: public static GLXFBConfigSGIX* ChooseFBConfigSGIX(DisplayPtr dpy, int screen, int* attrib_list, int* nelements) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: screen - type: System.Int32 - - id: attrib_list - type: System.Int32* - - id: nelements - type: System.Int32* - return: - type: OpenTK.Graphics.Glx.GLXFBConfigSGIX* - content.vb: Public Shared Function ChooseFBConfigSGIX(dpy As DisplayPtr, screen As Integer, attrib_list As Integer*, nelements As Integer*) As GLXFBConfigSGIX* - overload: OpenTK.Graphics.Glx.Glx.SGIX.ChooseFBConfigSGIX* - nameWithType.vb: Glx.SGIX.ChooseFBConfigSGIX(DisplayPtr, Integer, Integer*, Integer*) - fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.ChooseFBConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer*, Integer*) - name.vb: ChooseFBConfigSGIX(DisplayPtr, Integer, Integer*, Integer*) -- uid: OpenTK.Graphics.Glx.Glx.SGIX.CreateContextWithConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfigSGIX,System.Int32,OpenTK.Graphics.Glx.GLXContext,System.Boolean) - commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.CreateContextWithConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfigSGIX,System.Int32,OpenTK.Graphics.Glx.GLXContext,System.Boolean) - id: CreateContextWithConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfigSGIX,System.Int32,OpenTK.Graphics.Glx.GLXContext,System.Boolean) - parent: OpenTK.Graphics.Glx.Glx.SGIX - langs: - - csharp - - vb - name: CreateContextWithConfigSGIX(DisplayPtr, GLXFBConfigSGIX, int, GLXContext, bool) - nameWithType: Glx.SGIX.CreateContextWithConfigSGIX(DisplayPtr, GLXFBConfigSGIX, int, GLXContext, bool) - fullName: OpenTK.Graphics.Glx.Glx.SGIX.CreateContextWithConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfigSGIX, int, OpenTK.Graphics.Glx.GLXContext, bool) - type: Method - source: - id: CreateContextWithConfigSGIX - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs - startLine: 370 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_SGIX_fbconfig] - - [entry point: glXCreateContextWithConfigSGIX] - -
- example: [] - syntax: - content: public static GLXContext CreateContextWithConfigSGIX(DisplayPtr dpy, GLXFBConfigSGIX config, int render_type, GLXContext share_list, bool direct) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: config - type: OpenTK.Graphics.Glx.GLXFBConfigSGIX - - id: render_type - type: System.Int32 - - id: share_list - type: OpenTK.Graphics.Glx.GLXContext - - id: direct - type: System.Boolean - return: - type: OpenTK.Graphics.Glx.GLXContext - content.vb: Public Shared Function CreateContextWithConfigSGIX(dpy As DisplayPtr, config As GLXFBConfigSGIX, render_type As Integer, share_list As GLXContext, direct As Boolean) As GLXContext - overload: OpenTK.Graphics.Glx.Glx.SGIX.CreateContextWithConfigSGIX* - nameWithType.vb: Glx.SGIX.CreateContextWithConfigSGIX(DisplayPtr, GLXFBConfigSGIX, Integer, GLXContext, Boolean) - fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.CreateContextWithConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfigSGIX, Integer, OpenTK.Graphics.Glx.GLXContext, Boolean) - name.vb: CreateContextWithConfigSGIX(DisplayPtr, GLXFBConfigSGIX, Integer, GLXContext, Boolean) -- uid: OpenTK.Graphics.Glx.Glx.SGIX.CreateGLXPbufferSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfigSGIX,System.UInt32,System.UInt32,System.Int32*) - commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.CreateGLXPbufferSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfigSGIX,System.UInt32,System.UInt32,System.Int32*) - id: CreateGLXPbufferSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfigSGIX,System.UInt32,System.UInt32,System.Int32*) - parent: OpenTK.Graphics.Glx.Glx.SGIX - langs: - - csharp - - vb - name: CreateGLXPbufferSGIX(DisplayPtr, GLXFBConfigSGIX, uint, uint, int*) - nameWithType: Glx.SGIX.CreateGLXPbufferSGIX(DisplayPtr, GLXFBConfigSGIX, uint, uint, int*) - fullName: OpenTK.Graphics.Glx.Glx.SGIX.CreateGLXPbufferSGIX(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfigSGIX, uint, uint, int*) - type: Method - source: - id: CreateGLXPbufferSGIX - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs - startLine: 373 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_SGIX_pbuffer] - - [entry point: glXCreateGLXPbufferSGIX] - -
- example: [] - syntax: - content: public static GLXPbufferSGIX CreateGLXPbufferSGIX(DisplayPtr dpy, GLXFBConfigSGIX config, uint width, uint height, int* attrib_list) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: config - type: OpenTK.Graphics.Glx.GLXFBConfigSGIX - - id: width - type: System.UInt32 - - id: height - type: System.UInt32 - - id: attrib_list - type: System.Int32* - return: - type: OpenTK.Graphics.Glx.GLXPbufferSGIX - content.vb: Public Shared Function CreateGLXPbufferSGIX(dpy As DisplayPtr, config As GLXFBConfigSGIX, width As UInteger, height As UInteger, attrib_list As Integer*) As GLXPbufferSGIX - overload: OpenTK.Graphics.Glx.Glx.SGIX.CreateGLXPbufferSGIX* - nameWithType.vb: Glx.SGIX.CreateGLXPbufferSGIX(DisplayPtr, GLXFBConfigSGIX, UInteger, UInteger, Integer*) - fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.CreateGLXPbufferSGIX(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfigSGIX, UInteger, UInteger, Integer*) - name.vb: CreateGLXPbufferSGIX(DisplayPtr, GLXFBConfigSGIX, UInteger, UInteger, Integer*) -- uid: OpenTK.Graphics.Glx.Glx.SGIX.CreateGLXPixmapWithConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfigSGIX,OpenTK.Graphics.Glx.Pixmap) - commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.CreateGLXPixmapWithConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfigSGIX,OpenTK.Graphics.Glx.Pixmap) - id: CreateGLXPixmapWithConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfigSGIX,OpenTK.Graphics.Glx.Pixmap) - parent: OpenTK.Graphics.Glx.Glx.SGIX - langs: - - csharp - - vb - name: CreateGLXPixmapWithConfigSGIX(DisplayPtr, GLXFBConfigSGIX, Pixmap) - nameWithType: Glx.SGIX.CreateGLXPixmapWithConfigSGIX(DisplayPtr, GLXFBConfigSGIX, Pixmap) - fullName: OpenTK.Graphics.Glx.Glx.SGIX.CreateGLXPixmapWithConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfigSGIX, OpenTK.Graphics.Glx.Pixmap) - type: Method - source: - id: CreateGLXPixmapWithConfigSGIX - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs - startLine: 376 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_SGIX_fbconfig] - - [entry point: glXCreateGLXPixmapWithConfigSGIX] - -
- example: [] - syntax: - content: public static GLXPixmap CreateGLXPixmapWithConfigSGIX(DisplayPtr dpy, GLXFBConfigSGIX config, Pixmap pixmap) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: config - type: OpenTK.Graphics.Glx.GLXFBConfigSGIX - - id: pixmap - type: OpenTK.Graphics.Glx.Pixmap - return: - type: OpenTK.Graphics.Glx.GLXPixmap - content.vb: Public Shared Function CreateGLXPixmapWithConfigSGIX(dpy As DisplayPtr, config As GLXFBConfigSGIX, pixmap As Pixmap) As GLXPixmap - overload: OpenTK.Graphics.Glx.Glx.SGIX.CreateGLXPixmapWithConfigSGIX* -- uid: OpenTK.Graphics.Glx.Glx.SGIX.DestroyGLXPbufferSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXPbufferSGIX) - commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.DestroyGLXPbufferSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXPbufferSGIX) - id: DestroyGLXPbufferSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXPbufferSGIX) - parent: OpenTK.Graphics.Glx.Glx.SGIX - langs: - - csharp - - vb - name: DestroyGLXPbufferSGIX(DisplayPtr, GLXPbufferSGIX) - nameWithType: Glx.SGIX.DestroyGLXPbufferSGIX(DisplayPtr, GLXPbufferSGIX) - fullName: OpenTK.Graphics.Glx.Glx.SGIX.DestroyGLXPbufferSGIX(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXPbufferSGIX) - type: Method - source: - id: DestroyGLXPbufferSGIX - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs - startLine: 379 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_SGIX_pbuffer] - - [entry point: glXDestroyGLXPbufferSGIX] - -
- example: [] - syntax: - content: public static void DestroyGLXPbufferSGIX(DisplayPtr dpy, GLXPbufferSGIX pbuf) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: pbuf - type: OpenTK.Graphics.Glx.GLXPbufferSGIX - content.vb: Public Shared Sub DestroyGLXPbufferSGIX(dpy As DisplayPtr, pbuf As GLXPbufferSGIX) - overload: OpenTK.Graphics.Glx.Glx.SGIX.DestroyGLXPbufferSGIX* -- uid: OpenTK.Graphics.Glx.Glx.SGIX.DestroyHyperpipeConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32) - commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.DestroyHyperpipeConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32) - id: DestroyHyperpipeConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32) - parent: OpenTK.Graphics.Glx.Glx.SGIX - langs: - - csharp - - vb - name: DestroyHyperpipeConfigSGIX(DisplayPtr, int) - nameWithType: Glx.SGIX.DestroyHyperpipeConfigSGIX(DisplayPtr, int) - fullName: OpenTK.Graphics.Glx.Glx.SGIX.DestroyHyperpipeConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr, int) - type: Method - source: - id: DestroyHyperpipeConfigSGIX - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs - startLine: 382 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_SGIX_hyperpipe] - - [entry point: glXDestroyHyperpipeConfigSGIX] - -
- example: [] - syntax: - content: public static int DestroyHyperpipeConfigSGIX(DisplayPtr dpy, int hpId) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: hpId - type: System.Int32 - return: - type: System.Int32 - content.vb: Public Shared Function DestroyHyperpipeConfigSGIX(dpy As DisplayPtr, hpId As Integer) As Integer - overload: OpenTK.Graphics.Glx.Glx.SGIX.DestroyHyperpipeConfigSGIX* - nameWithType.vb: Glx.SGIX.DestroyHyperpipeConfigSGIX(DisplayPtr, Integer) - fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.DestroyHyperpipeConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr, Integer) - name.vb: DestroyHyperpipeConfigSGIX(DisplayPtr, Integer) -- uid: OpenTK.Graphics.Glx.Glx.SGIX.GetFBConfigAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfigSGIX,System.Int32,System.Int32*) - commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.GetFBConfigAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfigSGIX,System.Int32,System.Int32*) - id: GetFBConfigAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfigSGIX,System.Int32,System.Int32*) - parent: OpenTK.Graphics.Glx.Glx.SGIX - langs: - - csharp - - vb - name: GetFBConfigAttribSGIX(DisplayPtr, GLXFBConfigSGIX, int, int*) - nameWithType: Glx.SGIX.GetFBConfigAttribSGIX(DisplayPtr, GLXFBConfigSGIX, int, int*) - fullName: OpenTK.Graphics.Glx.Glx.SGIX.GetFBConfigAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfigSGIX, int, int*) - type: Method - source: - id: GetFBConfigAttribSGIX - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs - startLine: 385 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_SGIX_fbconfig] - - [entry point: glXGetFBConfigAttribSGIX] - -
- example: [] - syntax: - content: public static int GetFBConfigAttribSGIX(DisplayPtr dpy, GLXFBConfigSGIX config, int attribute, int* value) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: config - type: OpenTK.Graphics.Glx.GLXFBConfigSGIX - - id: attribute - type: System.Int32 - - id: value - type: System.Int32* - return: - type: System.Int32 - content.vb: Public Shared Function GetFBConfigAttribSGIX(dpy As DisplayPtr, config As GLXFBConfigSGIX, attribute As Integer, value As Integer*) As Integer - overload: OpenTK.Graphics.Glx.Glx.SGIX.GetFBConfigAttribSGIX* - nameWithType.vb: Glx.SGIX.GetFBConfigAttribSGIX(DisplayPtr, GLXFBConfigSGIX, Integer, Integer*) - fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.GetFBConfigAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfigSGIX, Integer, Integer*) - name.vb: GetFBConfigAttribSGIX(DisplayPtr, GLXFBConfigSGIX, Integer, Integer*) -- uid: OpenTK.Graphics.Glx.Glx.SGIX.GetFBConfigFromVisualSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.XVisualInfoPtr) - commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.GetFBConfigFromVisualSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.XVisualInfoPtr) - id: GetFBConfigFromVisualSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.XVisualInfoPtr) - parent: OpenTK.Graphics.Glx.Glx.SGIX - langs: - - csharp - - vb - name: GetFBConfigFromVisualSGIX(DisplayPtr, XVisualInfoPtr) - nameWithType: Glx.SGIX.GetFBConfigFromVisualSGIX(DisplayPtr, XVisualInfoPtr) - fullName: OpenTK.Graphics.Glx.Glx.SGIX.GetFBConfigFromVisualSGIX(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.XVisualInfoPtr) - type: Method - source: - id: GetFBConfigFromVisualSGIX - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs - startLine: 388 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_SGIX_fbconfig] - - [entry point: glXGetFBConfigFromVisualSGIX] - -
- example: [] - syntax: - content: public static GLXFBConfigSGIX GetFBConfigFromVisualSGIX(DisplayPtr dpy, XVisualInfoPtr vis) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: vis - type: OpenTK.Graphics.Glx.XVisualInfoPtr - return: - type: OpenTK.Graphics.Glx.GLXFBConfigSGIX - content.vb: Public Shared Function GetFBConfigFromVisualSGIX(dpy As DisplayPtr, vis As XVisualInfoPtr) As GLXFBConfigSGIX - overload: OpenTK.Graphics.Glx.Glx.SGIX.GetFBConfigFromVisualSGIX* -- uid: OpenTK.Graphics.Glx.Glx.SGIX.GetSelectedEventSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.UInt64*) - commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.GetSelectedEventSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.UInt64*) - id: GetSelectedEventSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.UInt64*) - parent: OpenTK.Graphics.Glx.Glx.SGIX - langs: - - csharp - - vb - name: GetSelectedEventSGIX(DisplayPtr, GLXDrawable, ulong*) - nameWithType: Glx.SGIX.GetSelectedEventSGIX(DisplayPtr, GLXDrawable, ulong*) - fullName: OpenTK.Graphics.Glx.Glx.SGIX.GetSelectedEventSGIX(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, ulong*) - type: Method - source: - id: GetSelectedEventSGIX - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs - startLine: 391 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_SGIX_pbuffer] - - [entry point: glXGetSelectedEventSGIX] - -
- example: [] - syntax: - content: public static void GetSelectedEventSGIX(DisplayPtr dpy, GLXDrawable drawable, ulong* mask) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: drawable - type: OpenTK.Graphics.Glx.GLXDrawable - - id: mask - type: System.UInt64* - content.vb: Public Shared Sub GetSelectedEventSGIX(dpy As DisplayPtr, drawable As GLXDrawable, mask As ULong*) - overload: OpenTK.Graphics.Glx.Glx.SGIX.GetSelectedEventSGIX* - nameWithType.vb: Glx.SGIX.GetSelectedEventSGIX(DisplayPtr, GLXDrawable, ULong*) - fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.GetSelectedEventSGIX(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, ULong*) - name.vb: GetSelectedEventSGIX(DisplayPtr, GLXDrawable, ULong*) -- uid: OpenTK.Graphics.Glx.Glx.SGIX.GetVisualFromFBConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfigSGIX) - commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.GetVisualFromFBConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfigSGIX) - id: GetVisualFromFBConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfigSGIX) - parent: OpenTK.Graphics.Glx.Glx.SGIX - langs: - - csharp - - vb - name: GetVisualFromFBConfigSGIX(DisplayPtr, GLXFBConfigSGIX) - nameWithType: Glx.SGIX.GetVisualFromFBConfigSGIX(DisplayPtr, GLXFBConfigSGIX) - fullName: OpenTK.Graphics.Glx.Glx.SGIX.GetVisualFromFBConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfigSGIX) - type: Method - source: - id: GetVisualFromFBConfigSGIX - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs - startLine: 394 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_SGIX_fbconfig] - - [entry point: glXGetVisualFromFBConfigSGIX] - -
- example: [] - syntax: - content: public static XVisualInfoPtr GetVisualFromFBConfigSGIX(DisplayPtr dpy, GLXFBConfigSGIX config) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: config - type: OpenTK.Graphics.Glx.GLXFBConfigSGIX - return: - type: OpenTK.Graphics.Glx.XVisualInfoPtr - content.vb: Public Shared Function GetVisualFromFBConfigSGIX(dpy As DisplayPtr, config As GLXFBConfigSGIX) As XVisualInfoPtr - overload: OpenTK.Graphics.Glx.Glx.SGIX.GetVisualFromFBConfigSGIX* -- uid: OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.Void*) - commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.Void*) - id: HyperpipeAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.Void*) - parent: OpenTK.Graphics.Glx.Glx.SGIX - langs: - - csharp - - vb - name: HyperpipeAttribSGIX(DisplayPtr, int, int, int, void*) - nameWithType: Glx.SGIX.HyperpipeAttribSGIX(DisplayPtr, int, int, int, void*) - fullName: OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr, int, int, int, void*) - type: Method - source: - id: HyperpipeAttribSGIX - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs - startLine: 397 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_SGIX_hyperpipe] - - [entry point: glXHyperpipeAttribSGIX] - -
- example: [] - syntax: - content: public static int HyperpipeAttribSGIX(DisplayPtr dpy, int timeSlice, int attrib, int size, void* attribList) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: timeSlice - type: System.Int32 - - id: attrib - type: System.Int32 - - id: size - type: System.Int32 - - id: attribList - type: System.Void* - return: - type: System.Int32 - content.vb: Public Shared Function HyperpipeAttribSGIX(dpy As DisplayPtr, timeSlice As Integer, attrib As Integer, size As Integer, attribList As Void*) As Integer - overload: OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeAttribSGIX* - nameWithType.vb: Glx.SGIX.HyperpipeAttribSGIX(DisplayPtr, Integer, Integer, Integer, Void*) - fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer, Integer, Void*) - name.vb: HyperpipeAttribSGIX(DisplayPtr, Integer, Integer, Integer, Void*) -- uid: OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX*,System.Int32*) - commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX*,System.Int32*) - id: HyperpipeConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX*,System.Int32*) - parent: OpenTK.Graphics.Glx.Glx.SGIX - langs: - - csharp - - vb - name: HyperpipeConfigSGIX(DisplayPtr, int, int, GLXHyperpipeConfigSGIX*, int*) - nameWithType: Glx.SGIX.HyperpipeConfigSGIX(DisplayPtr, int, int, GLXHyperpipeConfigSGIX*, int*) - fullName: OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr, int, int, OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX*, int*) - type: Method - source: - id: HyperpipeConfigSGIX - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs - startLine: 400 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_SGIX_hyperpipe] - - [entry point: glXHyperpipeConfigSGIX] - -
- example: [] - syntax: - content: public static int HyperpipeConfigSGIX(DisplayPtr dpy, int networkId, int npipes, GLXHyperpipeConfigSGIX* cfg, int* hpId) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: networkId - type: System.Int32 - - id: npipes - type: System.Int32 - - id: cfg - type: OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX* - - id: hpId - type: System.Int32* - return: - type: System.Int32 - content.vb: Public Shared Function HyperpipeConfigSGIX(dpy As DisplayPtr, networkId As Integer, npipes As Integer, cfg As GLXHyperpipeConfigSGIX*, hpId As Integer*) As Integer - overload: OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeConfigSGIX* - nameWithType.vb: Glx.SGIX.HyperpipeConfigSGIX(DisplayPtr, Integer, Integer, GLXHyperpipeConfigSGIX*, Integer*) - fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer, OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX*, Integer*) - name.vb: HyperpipeConfigSGIX(DisplayPtr, Integer, Integer, GLXHyperpipeConfigSGIX*, Integer*) -- uid: OpenTK.Graphics.Glx.Glx.SGIX.JoinSwapGroupSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,OpenTK.Graphics.Glx.GLXDrawable) - commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.JoinSwapGroupSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,OpenTK.Graphics.Glx.GLXDrawable) - id: JoinSwapGroupSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,OpenTK.Graphics.Glx.GLXDrawable) - parent: OpenTK.Graphics.Glx.Glx.SGIX - langs: - - csharp - - vb - name: JoinSwapGroupSGIX(DisplayPtr, GLXDrawable, GLXDrawable) - nameWithType: Glx.SGIX.JoinSwapGroupSGIX(DisplayPtr, GLXDrawable, GLXDrawable) - fullName: OpenTK.Graphics.Glx.Glx.SGIX.JoinSwapGroupSGIX(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, OpenTK.Graphics.Glx.GLXDrawable) - type: Method - source: - id: JoinSwapGroupSGIX - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs - startLine: 403 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_SGIX_swap_group] - - [entry point: glXJoinSwapGroupSGIX] - -
- example: [] - syntax: - content: public static void JoinSwapGroupSGIX(DisplayPtr dpy, GLXDrawable drawable, GLXDrawable member) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: drawable - type: OpenTK.Graphics.Glx.GLXDrawable - - id: member - type: OpenTK.Graphics.Glx.GLXDrawable - content.vb: Public Shared Sub JoinSwapGroupSGIX(dpy As DisplayPtr, drawable As GLXDrawable, member As GLXDrawable) - overload: OpenTK.Graphics.Glx.Glx.SGIX.JoinSwapGroupSGIX* -- uid: OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelDeltasSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32*,System.Int32*,System.Int32*,System.Int32*) - commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelDeltasSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32*,System.Int32*,System.Int32*,System.Int32*) - id: QueryChannelDeltasSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32*,System.Int32*,System.Int32*,System.Int32*) - parent: OpenTK.Graphics.Glx.Glx.SGIX - langs: - - csharp - - vb - name: QueryChannelDeltasSGIX(DisplayPtr, int, int, int*, int*, int*, int*) - nameWithType: Glx.SGIX.QueryChannelDeltasSGIX(DisplayPtr, int, int, int*, int*, int*, int*) - fullName: OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelDeltasSGIX(OpenTK.Graphics.Glx.DisplayPtr, int, int, int*, int*, int*, int*) - type: Method - source: - id: QueryChannelDeltasSGIX - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs - startLine: 406 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_SGIX_video_resize] - - [entry point: glXQueryChannelDeltasSGIX] - -
- example: [] - syntax: - content: public static int QueryChannelDeltasSGIX(DisplayPtr display, int screen, int channel, int* x, int* y, int* w, int* h) - parameters: - - id: display - type: OpenTK.Graphics.Glx.DisplayPtr - - id: screen - type: System.Int32 - - id: channel - type: System.Int32 - - id: x - type: System.Int32* - - id: y - type: System.Int32* - - id: w - type: System.Int32* - - id: h - type: System.Int32* - return: - type: System.Int32 - content.vb: Public Shared Function QueryChannelDeltasSGIX(display As DisplayPtr, screen As Integer, channel As Integer, x As Integer*, y As Integer*, w As Integer*, h As Integer*) As Integer - overload: OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelDeltasSGIX* - nameWithType.vb: Glx.SGIX.QueryChannelDeltasSGIX(DisplayPtr, Integer, Integer, Integer*, Integer*, Integer*, Integer*) - fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelDeltasSGIX(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer, Integer*, Integer*, Integer*, Integer*) - name.vb: QueryChannelDeltasSGIX(DisplayPtr, Integer, Integer, Integer*, Integer*, Integer*, Integer*) -- uid: OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelRectSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32*,System.Int32*,System.Int32*,System.Int32*) - commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelRectSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32*,System.Int32*,System.Int32*,System.Int32*) - id: QueryChannelRectSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32*,System.Int32*,System.Int32*,System.Int32*) - parent: OpenTK.Graphics.Glx.Glx.SGIX - langs: - - csharp - - vb - name: QueryChannelRectSGIX(DisplayPtr, int, int, int*, int*, int*, int*) - nameWithType: Glx.SGIX.QueryChannelRectSGIX(DisplayPtr, int, int, int*, int*, int*, int*) - fullName: OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelRectSGIX(OpenTK.Graphics.Glx.DisplayPtr, int, int, int*, int*, int*, int*) - type: Method - source: - id: QueryChannelRectSGIX - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs - startLine: 409 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_SGIX_video_resize] - - [entry point: glXQueryChannelRectSGIX] - -
- example: [] - syntax: - content: public static int QueryChannelRectSGIX(DisplayPtr display, int screen, int channel, int* dx, int* dy, int* dw, int* dh) - parameters: - - id: display - type: OpenTK.Graphics.Glx.DisplayPtr - - id: screen - type: System.Int32 - - id: channel - type: System.Int32 - - id: dx - type: System.Int32* - - id: dy - type: System.Int32* - - id: dw - type: System.Int32* - - id: dh - type: System.Int32* - return: - type: System.Int32 - content.vb: Public Shared Function QueryChannelRectSGIX(display As DisplayPtr, screen As Integer, channel As Integer, dx As Integer*, dy As Integer*, dw As Integer*, dh As Integer*) As Integer - overload: OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelRectSGIX* - nameWithType.vb: Glx.SGIX.QueryChannelRectSGIX(DisplayPtr, Integer, Integer, Integer*, Integer*, Integer*, Integer*) - fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelRectSGIX(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer, Integer*, Integer*, Integer*, Integer*) - name.vb: QueryChannelRectSGIX(DisplayPtr, Integer, Integer, Integer*, Integer*, Integer*, Integer*) -- uid: OpenTK.Graphics.Glx.Glx.SGIX.QueryGLXPbufferSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXPbufferSGIX,System.Int32,System.UInt32*) - commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.QueryGLXPbufferSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXPbufferSGIX,System.Int32,System.UInt32*) - id: QueryGLXPbufferSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXPbufferSGIX,System.Int32,System.UInt32*) - parent: OpenTK.Graphics.Glx.Glx.SGIX - langs: - - csharp - - vb - name: QueryGLXPbufferSGIX(DisplayPtr, GLXPbufferSGIX, int, uint*) - nameWithType: Glx.SGIX.QueryGLXPbufferSGIX(DisplayPtr, GLXPbufferSGIX, int, uint*) - fullName: OpenTK.Graphics.Glx.Glx.SGIX.QueryGLXPbufferSGIX(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXPbufferSGIX, int, uint*) - type: Method - source: - id: QueryGLXPbufferSGIX - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs - startLine: 412 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_SGIX_pbuffer] - - [entry point: glXQueryGLXPbufferSGIX] - -
- example: [] - syntax: - content: public static void QueryGLXPbufferSGIX(DisplayPtr dpy, GLXPbufferSGIX pbuf, int attribute, uint* value) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: pbuf - type: OpenTK.Graphics.Glx.GLXPbufferSGIX - - id: attribute - type: System.Int32 - - id: value - type: System.UInt32* - content.vb: Public Shared Sub QueryGLXPbufferSGIX(dpy As DisplayPtr, pbuf As GLXPbufferSGIX, attribute As Integer, value As UInteger*) - overload: OpenTK.Graphics.Glx.Glx.SGIX.QueryGLXPbufferSGIX* - nameWithType.vb: Glx.SGIX.QueryGLXPbufferSGIX(DisplayPtr, GLXPbufferSGIX, Integer, UInteger*) - fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.QueryGLXPbufferSGIX(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXPbufferSGIX, Integer, UInteger*) - name.vb: QueryGLXPbufferSGIX(DisplayPtr, GLXPbufferSGIX, Integer, UInteger*) -- uid: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.Void*) - commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.Void*) - id: QueryHyperpipeAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.Void*) - parent: OpenTK.Graphics.Glx.Glx.SGIX - langs: - - csharp - - vb - name: QueryHyperpipeAttribSGIX(DisplayPtr, int, int, int, void*) - nameWithType: Glx.SGIX.QueryHyperpipeAttribSGIX(DisplayPtr, int, int, int, void*) - fullName: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr, int, int, int, void*) - type: Method - source: - id: QueryHyperpipeAttribSGIX - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs - startLine: 415 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_SGIX_hyperpipe] - - [entry point: glXQueryHyperpipeAttribSGIX] - -
- example: [] - syntax: - content: public static int QueryHyperpipeAttribSGIX(DisplayPtr dpy, int timeSlice, int attrib, int size, void* returnAttribList) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: timeSlice - type: System.Int32 - - id: attrib - type: System.Int32 - - id: size - type: System.Int32 - - id: returnAttribList - type: System.Void* - return: - type: System.Int32 - content.vb: Public Shared Function QueryHyperpipeAttribSGIX(dpy As DisplayPtr, timeSlice As Integer, attrib As Integer, size As Integer, returnAttribList As Void*) As Integer - overload: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeAttribSGIX* - nameWithType.vb: Glx.SGIX.QueryHyperpipeAttribSGIX(DisplayPtr, Integer, Integer, Integer, Void*) - fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer, Integer, Void*) - name.vb: QueryHyperpipeAttribSGIX(DisplayPtr, Integer, Integer, Integer, Void*) -- uid: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeBestAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.Void*,System.Void*) - commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeBestAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.Void*,System.Void*) - id: QueryHyperpipeBestAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.Void*,System.Void*) - parent: OpenTK.Graphics.Glx.Glx.SGIX - langs: - - csharp - - vb - name: QueryHyperpipeBestAttribSGIX(DisplayPtr, int, int, int, void*, void*) - nameWithType: Glx.SGIX.QueryHyperpipeBestAttribSGIX(DisplayPtr, int, int, int, void*, void*) - fullName: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeBestAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr, int, int, int, void*, void*) - type: Method - source: - id: QueryHyperpipeBestAttribSGIX - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs - startLine: 418 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_SGIX_hyperpipe] - - [entry point: glXQueryHyperpipeBestAttribSGIX] - -
- example: [] - syntax: - content: public static int QueryHyperpipeBestAttribSGIX(DisplayPtr dpy, int timeSlice, int attrib, int size, void* attribList, void* returnAttribList) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: timeSlice - type: System.Int32 - - id: attrib - type: System.Int32 - - id: size - type: System.Int32 - - id: attribList - type: System.Void* - - id: returnAttribList - type: System.Void* - return: - type: System.Int32 - content.vb: Public Shared Function QueryHyperpipeBestAttribSGIX(dpy As DisplayPtr, timeSlice As Integer, attrib As Integer, size As Integer, attribList As Void*, returnAttribList As Void*) As Integer - overload: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeBestAttribSGIX* - nameWithType.vb: Glx.SGIX.QueryHyperpipeBestAttribSGIX(DisplayPtr, Integer, Integer, Integer, Void*, Void*) - fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeBestAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer, Integer, Void*, Void*) - name.vb: QueryHyperpipeBestAttribSGIX(DisplayPtr, Integer, Integer, Integer, Void*, Void*) -- uid: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32*) - commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32*) - id: QueryHyperpipeConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32*) - parent: OpenTK.Graphics.Glx.Glx.SGIX - langs: - - csharp - - vb - name: QueryHyperpipeConfigSGIX(DisplayPtr, int, int*) - nameWithType: Glx.SGIX.QueryHyperpipeConfigSGIX(DisplayPtr, int, int*) - fullName: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr, int, int*) - type: Method - source: - id: QueryHyperpipeConfigSGIX - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs - startLine: 421 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_SGIX_hyperpipe] - - [entry point: glXQueryHyperpipeConfigSGIX] - -
- example: [] - syntax: - content: public static GLXHyperpipeConfigSGIX* QueryHyperpipeConfigSGIX(DisplayPtr dpy, int hpId, int* npipes) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: hpId - type: System.Int32 - - id: npipes - type: System.Int32* - return: - type: OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX* - content.vb: Public Shared Function QueryHyperpipeConfigSGIX(dpy As DisplayPtr, hpId As Integer, npipes As Integer*) As GLXHyperpipeConfigSGIX* - overload: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeConfigSGIX* - nameWithType.vb: Glx.SGIX.QueryHyperpipeConfigSGIX(DisplayPtr, Integer, Integer*) - fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer*) - name.vb: QueryHyperpipeConfigSGIX(DisplayPtr, Integer, Integer*) -- uid: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeNetworkSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32*) - commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeNetworkSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32*) - id: QueryHyperpipeNetworkSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32*) - parent: OpenTK.Graphics.Glx.Glx.SGIX - langs: - - csharp - - vb - name: QueryHyperpipeNetworkSGIX(DisplayPtr, int*) - nameWithType: Glx.SGIX.QueryHyperpipeNetworkSGIX(DisplayPtr, int*) - fullName: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeNetworkSGIX(OpenTK.Graphics.Glx.DisplayPtr, int*) - type: Method - source: - id: QueryHyperpipeNetworkSGIX - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs - startLine: 424 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_SGIX_hyperpipe] - - [entry point: glXQueryHyperpipeNetworkSGIX] - -
- example: [] - syntax: - content: public static GLXHyperpipeNetworkSGIX* QueryHyperpipeNetworkSGIX(DisplayPtr dpy, int* npipes) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: npipes - type: System.Int32* - return: - type: OpenTK.Graphics.Glx.GLXHyperpipeNetworkSGIX* - content.vb: Public Shared Function QueryHyperpipeNetworkSGIX(dpy As DisplayPtr, npipes As Integer*) As GLXHyperpipeNetworkSGIX* - overload: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeNetworkSGIX* - nameWithType.vb: Glx.SGIX.QueryHyperpipeNetworkSGIX(DisplayPtr, Integer*) - fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeNetworkSGIX(OpenTK.Graphics.Glx.DisplayPtr, Integer*) - name.vb: QueryHyperpipeNetworkSGIX(DisplayPtr, Integer*) -- uid: OpenTK.Graphics.Glx.Glx.SGIX.QueryMaxSwapBarriersSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32*) - commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.QueryMaxSwapBarriersSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32*) - id: QueryMaxSwapBarriersSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32*) - parent: OpenTK.Graphics.Glx.Glx.SGIX - langs: - - csharp - - vb - name: QueryMaxSwapBarriersSGIX(DisplayPtr, int, int*) - nameWithType: Glx.SGIX.QueryMaxSwapBarriersSGIX(DisplayPtr, int, int*) - fullName: OpenTK.Graphics.Glx.Glx.SGIX.QueryMaxSwapBarriersSGIX(OpenTK.Graphics.Glx.DisplayPtr, int, int*) - type: Method - source: - id: QueryMaxSwapBarriersSGIX - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs - startLine: 427 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_SGIX_swap_barrier] - - [entry point: glXQueryMaxSwapBarriersSGIX] - -
- example: [] - syntax: - content: public static bool QueryMaxSwapBarriersSGIX(DisplayPtr dpy, int screen, int* max) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: screen - type: System.Int32 - - id: max - type: System.Int32* - return: - type: System.Boolean - content.vb: Public Shared Function QueryMaxSwapBarriersSGIX(dpy As DisplayPtr, screen As Integer, max As Integer*) As Boolean - overload: OpenTK.Graphics.Glx.Glx.SGIX.QueryMaxSwapBarriersSGIX* - nameWithType.vb: Glx.SGIX.QueryMaxSwapBarriersSGIX(DisplayPtr, Integer, Integer*) - fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.QueryMaxSwapBarriersSGIX(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer*) - name.vb: QueryMaxSwapBarriersSGIX(DisplayPtr, Integer, Integer*) -- uid: OpenTK.Graphics.Glx.Glx.SGIX.SelectEventSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.UInt64) - commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.SelectEventSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.UInt64) - id: SelectEventSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.UInt64) - parent: OpenTK.Graphics.Glx.Glx.SGIX - langs: - - csharp - - vb - name: SelectEventSGIX(DisplayPtr, GLXDrawable, ulong) - nameWithType: Glx.SGIX.SelectEventSGIX(DisplayPtr, GLXDrawable, ulong) - fullName: OpenTK.Graphics.Glx.Glx.SGIX.SelectEventSGIX(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, ulong) - type: Method - source: - id: SelectEventSGIX - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs - startLine: 430 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_SGIX_pbuffer] - - [entry point: glXSelectEventSGIX] - -
- example: [] - syntax: - content: public static void SelectEventSGIX(DisplayPtr dpy, GLXDrawable drawable, ulong mask) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: drawable - type: OpenTK.Graphics.Glx.GLXDrawable - - id: mask - type: System.UInt64 - content.vb: Public Shared Sub SelectEventSGIX(dpy As DisplayPtr, drawable As GLXDrawable, mask As ULong) - overload: OpenTK.Graphics.Glx.Glx.SGIX.SelectEventSGIX* - nameWithType.vb: Glx.SGIX.SelectEventSGIX(DisplayPtr, GLXDrawable, ULong) - fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.SelectEventSGIX(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, ULong) - name.vb: SelectEventSGIX(DisplayPtr, GLXDrawable, ULong) -- uid: OpenTK.Graphics.Glx.Glx.SGIX.ChooseFBConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Span{System.Int32},System.Span{System.Int32}) - commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.ChooseFBConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Span{System.Int32},System.Span{System.Int32}) - id: ChooseFBConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Span{System.Int32},System.Span{System.Int32}) - parent: OpenTK.Graphics.Glx.Glx.SGIX - langs: - - csharp - - vb - name: ChooseFBConfigSGIX(DisplayPtr, int, Span, Span) - nameWithType: Glx.SGIX.ChooseFBConfigSGIX(DisplayPtr, int, Span, Span) - fullName: OpenTK.Graphics.Glx.Glx.SGIX.ChooseFBConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr, int, System.Span, System.Span) - type: Method - source: - id: ChooseFBConfigSGIX - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 1377 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_SGIX_fbconfig] - - [entry point: glXChooseFBConfigSGIX] - -
- example: [] - syntax: - content: public static GLXFBConfigSGIX* ChooseFBConfigSGIX(DisplayPtr dpy, int screen, Span attrib_list, Span nelements) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: screen - type: System.Int32 - - id: attrib_list - type: System.Span{System.Int32} - - id: nelements - type: System.Span{System.Int32} - return: - type: OpenTK.Graphics.Glx.GLXFBConfigSGIX* - content.vb: Public Shared Function ChooseFBConfigSGIX(dpy As DisplayPtr, screen As Integer, attrib_list As Span(Of Integer), nelements As Span(Of Integer)) As GLXFBConfigSGIX* - overload: OpenTK.Graphics.Glx.Glx.SGIX.ChooseFBConfigSGIX* - nameWithType.vb: Glx.SGIX.ChooseFBConfigSGIX(DisplayPtr, Integer, Span(Of Integer), Span(Of Integer)) - fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.ChooseFBConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr, Integer, System.Span(Of Integer), System.Span(Of Integer)) - name.vb: ChooseFBConfigSGIX(DisplayPtr, Integer, Span(Of Integer), Span(Of Integer)) -- uid: OpenTK.Graphics.Glx.Glx.SGIX.ChooseFBConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32[],System.Int32[]) - commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.ChooseFBConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32[],System.Int32[]) - id: ChooseFBConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32[],System.Int32[]) - parent: OpenTK.Graphics.Glx.Glx.SGIX - langs: - - csharp - - vb - name: ChooseFBConfigSGIX(DisplayPtr, int, int[], int[]) - nameWithType: Glx.SGIX.ChooseFBConfigSGIX(DisplayPtr, int, int[], int[]) - fullName: OpenTK.Graphics.Glx.Glx.SGIX.ChooseFBConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr, int, int[], int[]) - type: Method - source: - id: ChooseFBConfigSGIX - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 1390 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_SGIX_fbconfig] - - [entry point: glXChooseFBConfigSGIX] - -
- example: [] - syntax: - content: public static GLXFBConfigSGIX* ChooseFBConfigSGIX(DisplayPtr dpy, int screen, int[] attrib_list, int[] nelements) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: screen - type: System.Int32 - - id: attrib_list - type: System.Int32[] - - id: nelements - type: System.Int32[] - return: - type: OpenTK.Graphics.Glx.GLXFBConfigSGIX* - content.vb: Public Shared Function ChooseFBConfigSGIX(dpy As DisplayPtr, screen As Integer, attrib_list As Integer(), nelements As Integer()) As GLXFBConfigSGIX* - overload: OpenTK.Graphics.Glx.Glx.SGIX.ChooseFBConfigSGIX* - nameWithType.vb: Glx.SGIX.ChooseFBConfigSGIX(DisplayPtr, Integer, Integer(), Integer()) - fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.ChooseFBConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer(), Integer()) - name.vb: ChooseFBConfigSGIX(DisplayPtr, Integer, Integer(), Integer()) -- uid: OpenTK.Graphics.Glx.Glx.SGIX.ChooseFBConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32@,System.Int32@) - commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.ChooseFBConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32@,System.Int32@) - id: ChooseFBConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32@,System.Int32@) - parent: OpenTK.Graphics.Glx.Glx.SGIX - langs: - - csharp - - vb - name: ChooseFBConfigSGIX(DisplayPtr, int, ref int, ref int) - nameWithType: Glx.SGIX.ChooseFBConfigSGIX(DisplayPtr, int, ref int, ref int) - fullName: OpenTK.Graphics.Glx.Glx.SGIX.ChooseFBConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr, int, ref int, ref int) - type: Method - source: - id: ChooseFBConfigSGIX - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 1403 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_SGIX_fbconfig] - - [entry point: glXChooseFBConfigSGIX] - -
- example: [] - syntax: - content: public static GLXFBConfigSGIX* ChooseFBConfigSGIX(DisplayPtr dpy, int screen, ref int attrib_list, ref int nelements) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: screen - type: System.Int32 - - id: attrib_list - type: System.Int32 - - id: nelements - type: System.Int32 - return: - type: OpenTK.Graphics.Glx.GLXFBConfigSGIX* - content.vb: Public Shared Function ChooseFBConfigSGIX(dpy As DisplayPtr, screen As Integer, attrib_list As Integer, nelements As Integer) As GLXFBConfigSGIX* - overload: OpenTK.Graphics.Glx.Glx.SGIX.ChooseFBConfigSGIX* - nameWithType.vb: Glx.SGIX.ChooseFBConfigSGIX(DisplayPtr, Integer, Integer, Integer) - fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.ChooseFBConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer, Integer) - name.vb: ChooseFBConfigSGIX(DisplayPtr, Integer, Integer, Integer) -- uid: OpenTK.Graphics.Glx.Glx.SGIX.CreateGLXPbufferSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfigSGIX,System.UInt32,System.UInt32,System.Span{System.Int32}) - commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.CreateGLXPbufferSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfigSGIX,System.UInt32,System.UInt32,System.Span{System.Int32}) - id: CreateGLXPbufferSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfigSGIX,System.UInt32,System.UInt32,System.Span{System.Int32}) - parent: OpenTK.Graphics.Glx.Glx.SGIX - langs: - - csharp - - vb - name: CreateGLXPbufferSGIX(DisplayPtr, GLXFBConfigSGIX, uint, uint, Span) - nameWithType: Glx.SGIX.CreateGLXPbufferSGIX(DisplayPtr, GLXFBConfigSGIX, uint, uint, Span) - fullName: OpenTK.Graphics.Glx.Glx.SGIX.CreateGLXPbufferSGIX(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfigSGIX, uint, uint, System.Span) - type: Method - source: - id: CreateGLXPbufferSGIX - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 1414 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_SGIX_pbuffer] - - [entry point: glXCreateGLXPbufferSGIX] - -
- example: [] - syntax: - content: public static GLXPbufferSGIX CreateGLXPbufferSGIX(DisplayPtr dpy, GLXFBConfigSGIX config, uint width, uint height, Span attrib_list) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: config - type: OpenTK.Graphics.Glx.GLXFBConfigSGIX - - id: width - type: System.UInt32 - - id: height - type: System.UInt32 - - id: attrib_list - type: System.Span{System.Int32} - return: - type: OpenTK.Graphics.Glx.GLXPbufferSGIX - content.vb: Public Shared Function CreateGLXPbufferSGIX(dpy As DisplayPtr, config As GLXFBConfigSGIX, width As UInteger, height As UInteger, attrib_list As Span(Of Integer)) As GLXPbufferSGIX - overload: OpenTK.Graphics.Glx.Glx.SGIX.CreateGLXPbufferSGIX* - nameWithType.vb: Glx.SGIX.CreateGLXPbufferSGIX(DisplayPtr, GLXFBConfigSGIX, UInteger, UInteger, Span(Of Integer)) - fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.CreateGLXPbufferSGIX(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfigSGIX, UInteger, UInteger, System.Span(Of Integer)) - name.vb: CreateGLXPbufferSGIX(DisplayPtr, GLXFBConfigSGIX, UInteger, UInteger, Span(Of Integer)) -- uid: OpenTK.Graphics.Glx.Glx.SGIX.CreateGLXPbufferSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfigSGIX,System.UInt32,System.UInt32,System.Int32[]) - commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.CreateGLXPbufferSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfigSGIX,System.UInt32,System.UInt32,System.Int32[]) - id: CreateGLXPbufferSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfigSGIX,System.UInt32,System.UInt32,System.Int32[]) - parent: OpenTK.Graphics.Glx.Glx.SGIX - langs: - - csharp - - vb - name: CreateGLXPbufferSGIX(DisplayPtr, GLXFBConfigSGIX, uint, uint, int[]) - nameWithType: Glx.SGIX.CreateGLXPbufferSGIX(DisplayPtr, GLXFBConfigSGIX, uint, uint, int[]) - fullName: OpenTK.Graphics.Glx.Glx.SGIX.CreateGLXPbufferSGIX(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfigSGIX, uint, uint, int[]) - type: Method - source: - id: CreateGLXPbufferSGIX - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 1424 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_SGIX_pbuffer] - - [entry point: glXCreateGLXPbufferSGIX] - -
- example: [] - syntax: - content: public static GLXPbufferSGIX CreateGLXPbufferSGIX(DisplayPtr dpy, GLXFBConfigSGIX config, uint width, uint height, int[] attrib_list) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: config - type: OpenTK.Graphics.Glx.GLXFBConfigSGIX - - id: width - type: System.UInt32 - - id: height - type: System.UInt32 - - id: attrib_list - type: System.Int32[] - return: - type: OpenTK.Graphics.Glx.GLXPbufferSGIX - content.vb: Public Shared Function CreateGLXPbufferSGIX(dpy As DisplayPtr, config As GLXFBConfigSGIX, width As UInteger, height As UInteger, attrib_list As Integer()) As GLXPbufferSGIX - overload: OpenTK.Graphics.Glx.Glx.SGIX.CreateGLXPbufferSGIX* - nameWithType.vb: Glx.SGIX.CreateGLXPbufferSGIX(DisplayPtr, GLXFBConfigSGIX, UInteger, UInteger, Integer()) - fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.CreateGLXPbufferSGIX(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfigSGIX, UInteger, UInteger, Integer()) - name.vb: CreateGLXPbufferSGIX(DisplayPtr, GLXFBConfigSGIX, UInteger, UInteger, Integer()) -- uid: OpenTK.Graphics.Glx.Glx.SGIX.CreateGLXPbufferSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfigSGIX,System.UInt32,System.UInt32,System.Int32@) - commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.CreateGLXPbufferSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfigSGIX,System.UInt32,System.UInt32,System.Int32@) - id: CreateGLXPbufferSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfigSGIX,System.UInt32,System.UInt32,System.Int32@) - parent: OpenTK.Graphics.Glx.Glx.SGIX - langs: - - csharp - - vb - name: CreateGLXPbufferSGIX(DisplayPtr, GLXFBConfigSGIX, uint, uint, ref int) - nameWithType: Glx.SGIX.CreateGLXPbufferSGIX(DisplayPtr, GLXFBConfigSGIX, uint, uint, ref int) - fullName: OpenTK.Graphics.Glx.Glx.SGIX.CreateGLXPbufferSGIX(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfigSGIX, uint, uint, ref int) - type: Method - source: - id: CreateGLXPbufferSGIX - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 1434 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_SGIX_pbuffer] - - [entry point: glXCreateGLXPbufferSGIX] - -
- example: [] - syntax: - content: public static GLXPbufferSGIX CreateGLXPbufferSGIX(DisplayPtr dpy, GLXFBConfigSGIX config, uint width, uint height, ref int attrib_list) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: config - type: OpenTK.Graphics.Glx.GLXFBConfigSGIX - - id: width - type: System.UInt32 - - id: height - type: System.UInt32 - - id: attrib_list - type: System.Int32 - return: - type: OpenTK.Graphics.Glx.GLXPbufferSGIX - content.vb: Public Shared Function CreateGLXPbufferSGIX(dpy As DisplayPtr, config As GLXFBConfigSGIX, width As UInteger, height As UInteger, attrib_list As Integer) As GLXPbufferSGIX - overload: OpenTK.Graphics.Glx.Glx.SGIX.CreateGLXPbufferSGIX* - nameWithType.vb: Glx.SGIX.CreateGLXPbufferSGIX(DisplayPtr, GLXFBConfigSGIX, UInteger, UInteger, Integer) - fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.CreateGLXPbufferSGIX(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfigSGIX, UInteger, UInteger, Integer) - name.vb: CreateGLXPbufferSGIX(DisplayPtr, GLXFBConfigSGIX, UInteger, UInteger, Integer) -- uid: OpenTK.Graphics.Glx.Glx.SGIX.GetFBConfigAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfigSGIX,System.Int32,System.Span{System.Int32}) - commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.GetFBConfigAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfigSGIX,System.Int32,System.Span{System.Int32}) - id: GetFBConfigAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfigSGIX,System.Int32,System.Span{System.Int32}) - parent: OpenTK.Graphics.Glx.Glx.SGIX - langs: - - csharp - - vb - name: GetFBConfigAttribSGIX(DisplayPtr, GLXFBConfigSGIX, int, Span) - nameWithType: Glx.SGIX.GetFBConfigAttribSGIX(DisplayPtr, GLXFBConfigSGIX, int, Span) - fullName: OpenTK.Graphics.Glx.Glx.SGIX.GetFBConfigAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfigSGIX, int, System.Span) - type: Method - source: - id: GetFBConfigAttribSGIX - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 1444 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_SGIX_fbconfig] - - [entry point: glXGetFBConfigAttribSGIX] - -
- example: [] - syntax: - content: public static int GetFBConfigAttribSGIX(DisplayPtr dpy, GLXFBConfigSGIX config, int attribute, Span value) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: config - type: OpenTK.Graphics.Glx.GLXFBConfigSGIX - - id: attribute - type: System.Int32 - - id: value - type: System.Span{System.Int32} - return: - type: System.Int32 - content.vb: Public Shared Function GetFBConfigAttribSGIX(dpy As DisplayPtr, config As GLXFBConfigSGIX, attribute As Integer, value As Span(Of Integer)) As Integer - overload: OpenTK.Graphics.Glx.Glx.SGIX.GetFBConfigAttribSGIX* - nameWithType.vb: Glx.SGIX.GetFBConfigAttribSGIX(DisplayPtr, GLXFBConfigSGIX, Integer, Span(Of Integer)) - fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.GetFBConfigAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfigSGIX, Integer, System.Span(Of Integer)) - name.vb: GetFBConfigAttribSGIX(DisplayPtr, GLXFBConfigSGIX, Integer, Span(Of Integer)) -- uid: OpenTK.Graphics.Glx.Glx.SGIX.GetFBConfigAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfigSGIX,System.Int32,System.Int32[]) - commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.GetFBConfigAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfigSGIX,System.Int32,System.Int32[]) - id: GetFBConfigAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfigSGIX,System.Int32,System.Int32[]) - parent: OpenTK.Graphics.Glx.Glx.SGIX - langs: - - csharp - - vb - name: GetFBConfigAttribSGIX(DisplayPtr, GLXFBConfigSGIX, int, int[]) - nameWithType: Glx.SGIX.GetFBConfigAttribSGIX(DisplayPtr, GLXFBConfigSGIX, int, int[]) - fullName: OpenTK.Graphics.Glx.Glx.SGIX.GetFBConfigAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfigSGIX, int, int[]) - type: Method - source: - id: GetFBConfigAttribSGIX - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 1454 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_SGIX_fbconfig] - - [entry point: glXGetFBConfigAttribSGIX] - -
- example: [] - syntax: - content: public static int GetFBConfigAttribSGIX(DisplayPtr dpy, GLXFBConfigSGIX config, int attribute, int[] value) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: config - type: OpenTK.Graphics.Glx.GLXFBConfigSGIX - - id: attribute - type: System.Int32 - - id: value - type: System.Int32[] - return: - type: System.Int32 - content.vb: Public Shared Function GetFBConfigAttribSGIX(dpy As DisplayPtr, config As GLXFBConfigSGIX, attribute As Integer, value As Integer()) As Integer - overload: OpenTK.Graphics.Glx.Glx.SGIX.GetFBConfigAttribSGIX* - nameWithType.vb: Glx.SGIX.GetFBConfigAttribSGIX(DisplayPtr, GLXFBConfigSGIX, Integer, Integer()) - fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.GetFBConfigAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfigSGIX, Integer, Integer()) - name.vb: GetFBConfigAttribSGIX(DisplayPtr, GLXFBConfigSGIX, Integer, Integer()) -- uid: OpenTK.Graphics.Glx.Glx.SGIX.GetFBConfigAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfigSGIX,System.Int32,System.Int32@) - commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.GetFBConfigAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfigSGIX,System.Int32,System.Int32@) - id: GetFBConfigAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfigSGIX,System.Int32,System.Int32@) - parent: OpenTK.Graphics.Glx.Glx.SGIX - langs: - - csharp - - vb - name: GetFBConfigAttribSGIX(DisplayPtr, GLXFBConfigSGIX, int, ref int) - nameWithType: Glx.SGIX.GetFBConfigAttribSGIX(DisplayPtr, GLXFBConfigSGIX, int, ref int) - fullName: OpenTK.Graphics.Glx.Glx.SGIX.GetFBConfigAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfigSGIX, int, ref int) - type: Method - source: - id: GetFBConfigAttribSGIX - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 1464 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_SGIX_fbconfig] - - [entry point: glXGetFBConfigAttribSGIX] - -
- example: [] - syntax: - content: public static int GetFBConfigAttribSGIX(DisplayPtr dpy, GLXFBConfigSGIX config, int attribute, ref int value) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: config - type: OpenTK.Graphics.Glx.GLXFBConfigSGIX - - id: attribute - type: System.Int32 - - id: value - type: System.Int32 - return: - type: System.Int32 - content.vb: Public Shared Function GetFBConfigAttribSGIX(dpy As DisplayPtr, config As GLXFBConfigSGIX, attribute As Integer, value As Integer) As Integer - overload: OpenTK.Graphics.Glx.Glx.SGIX.GetFBConfigAttribSGIX* - nameWithType.vb: Glx.SGIX.GetFBConfigAttribSGIX(DisplayPtr, GLXFBConfigSGIX, Integer, Integer) - fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.GetFBConfigAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfigSGIX, Integer, Integer) - name.vb: GetFBConfigAttribSGIX(DisplayPtr, GLXFBConfigSGIX, Integer, Integer) -- uid: OpenTK.Graphics.Glx.Glx.SGIX.GetSelectedEventSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Span{System.UInt64}) - commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.GetSelectedEventSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Span{System.UInt64}) - id: GetSelectedEventSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Span{System.UInt64}) - parent: OpenTK.Graphics.Glx.Glx.SGIX - langs: - - csharp - - vb - name: GetSelectedEventSGIX(DisplayPtr, GLXDrawable, Span) - nameWithType: Glx.SGIX.GetSelectedEventSGIX(DisplayPtr, GLXDrawable, Span) - fullName: OpenTK.Graphics.Glx.Glx.SGIX.GetSelectedEventSGIX(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, System.Span) - type: Method - source: - id: GetSelectedEventSGIX - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 1474 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_SGIX_pbuffer] - - [entry point: glXGetSelectedEventSGIX] - -
- example: [] - syntax: - content: public static void GetSelectedEventSGIX(DisplayPtr dpy, GLXDrawable drawable, Span mask) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: drawable - type: OpenTK.Graphics.Glx.GLXDrawable - - id: mask - type: System.Span{System.UInt64} - content.vb: Public Shared Sub GetSelectedEventSGIX(dpy As DisplayPtr, drawable As GLXDrawable, mask As Span(Of ULong)) - overload: OpenTK.Graphics.Glx.Glx.SGIX.GetSelectedEventSGIX* - nameWithType.vb: Glx.SGIX.GetSelectedEventSGIX(DisplayPtr, GLXDrawable, Span(Of ULong)) - fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.GetSelectedEventSGIX(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, System.Span(Of ULong)) - name.vb: GetSelectedEventSGIX(DisplayPtr, GLXDrawable, Span(Of ULong)) -- uid: OpenTK.Graphics.Glx.Glx.SGIX.GetSelectedEventSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.UInt64[]) - commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.GetSelectedEventSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.UInt64[]) - id: GetSelectedEventSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.UInt64[]) - parent: OpenTK.Graphics.Glx.Glx.SGIX - langs: - - csharp - - vb - name: GetSelectedEventSGIX(DisplayPtr, GLXDrawable, ulong[]) - nameWithType: Glx.SGIX.GetSelectedEventSGIX(DisplayPtr, GLXDrawable, ulong[]) - fullName: OpenTK.Graphics.Glx.Glx.SGIX.GetSelectedEventSGIX(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, ulong[]) - type: Method - source: - id: GetSelectedEventSGIX - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 1482 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_SGIX_pbuffer] - - [entry point: glXGetSelectedEventSGIX] - -
- example: [] - syntax: - content: public static void GetSelectedEventSGIX(DisplayPtr dpy, GLXDrawable drawable, ulong[] mask) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: drawable - type: OpenTK.Graphics.Glx.GLXDrawable - - id: mask - type: System.UInt64[] - content.vb: Public Shared Sub GetSelectedEventSGIX(dpy As DisplayPtr, drawable As GLXDrawable, mask As ULong()) - overload: OpenTK.Graphics.Glx.Glx.SGIX.GetSelectedEventSGIX* - nameWithType.vb: Glx.SGIX.GetSelectedEventSGIX(DisplayPtr, GLXDrawable, ULong()) - fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.GetSelectedEventSGIX(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, ULong()) - name.vb: GetSelectedEventSGIX(DisplayPtr, GLXDrawable, ULong()) -- uid: OpenTK.Graphics.Glx.Glx.SGIX.GetSelectedEventSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.UInt64@) - commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.GetSelectedEventSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.UInt64@) - id: GetSelectedEventSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.UInt64@) - parent: OpenTK.Graphics.Glx.Glx.SGIX - langs: - - csharp - - vb - name: GetSelectedEventSGIX(DisplayPtr, GLXDrawable, ref ulong) - nameWithType: Glx.SGIX.GetSelectedEventSGIX(DisplayPtr, GLXDrawable, ref ulong) - fullName: OpenTK.Graphics.Glx.Glx.SGIX.GetSelectedEventSGIX(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, ref ulong) - type: Method - source: - id: GetSelectedEventSGIX - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 1490 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_SGIX_pbuffer] - - [entry point: glXGetSelectedEventSGIX] - -
- example: [] - syntax: - content: public static void GetSelectedEventSGIX(DisplayPtr dpy, GLXDrawable drawable, ref ulong mask) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: drawable - type: OpenTK.Graphics.Glx.GLXDrawable - - id: mask - type: System.UInt64 - content.vb: Public Shared Sub GetSelectedEventSGIX(dpy As DisplayPtr, drawable As GLXDrawable, mask As ULong) - overload: OpenTK.Graphics.Glx.Glx.SGIX.GetSelectedEventSGIX* - nameWithType.vb: Glx.SGIX.GetSelectedEventSGIX(DisplayPtr, GLXDrawable, ULong) - fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.GetSelectedEventSGIX(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, ULong) - name.vb: GetSelectedEventSGIX(DisplayPtr, GLXDrawable, ULong) -- uid: OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.IntPtr) - commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.IntPtr) - id: HyperpipeAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.IntPtr) - parent: OpenTK.Graphics.Glx.Glx.SGIX - langs: - - csharp - - vb - name: HyperpipeAttribSGIX(DisplayPtr, int, int, int, nint) - nameWithType: Glx.SGIX.HyperpipeAttribSGIX(DisplayPtr, int, int, int, nint) - fullName: OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr, int, int, int, nint) - type: Method - source: - id: HyperpipeAttribSGIX - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 1498 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_SGIX_hyperpipe] - - [entry point: glXHyperpipeAttribSGIX] - -
- example: [] - syntax: - content: public static int HyperpipeAttribSGIX(DisplayPtr dpy, int timeSlice, int attrib, int size, nint attribList) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: timeSlice - type: System.Int32 - - id: attrib - type: System.Int32 - - id: size - type: System.Int32 - - id: attribList - type: System.IntPtr - return: - type: System.Int32 - content.vb: Public Shared Function HyperpipeAttribSGIX(dpy As DisplayPtr, timeSlice As Integer, attrib As Integer, size As Integer, attribList As IntPtr) As Integer - overload: OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeAttribSGIX* - nameWithType.vb: Glx.SGIX.HyperpipeAttribSGIX(DisplayPtr, Integer, Integer, Integer, IntPtr) - fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer, Integer, System.IntPtr) - name.vb: HyperpipeAttribSGIX(DisplayPtr, Integer, Integer, Integer, IntPtr) -- uid: OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeAttribSGIX``1(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.Span{``0}) - commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeAttribSGIX``1(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.Span{``0}) - id: HyperpipeAttribSGIX``1(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.Span{``0}) - parent: OpenTK.Graphics.Glx.Glx.SGIX - langs: - - csharp - - vb - name: HyperpipeAttribSGIX(DisplayPtr, int, int, int, Span) - nameWithType: Glx.SGIX.HyperpipeAttribSGIX(DisplayPtr, int, int, int, Span) - fullName: OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr, int, int, int, System.Span) - type: Method - source: - id: HyperpipeAttribSGIX - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 1506 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_SGIX_hyperpipe] - - [entry point: glXHyperpipeAttribSGIX] - -
- example: [] - syntax: - content: 'public static int HyperpipeAttribSGIX(DisplayPtr dpy, int timeSlice, int attrib, int size, Span attribList) where T1 : unmanaged' - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: timeSlice - type: System.Int32 - - id: attrib - type: System.Int32 - - id: size - type: System.Int32 - - id: attribList - type: System.Span{{T1}} - typeParameters: - - id: T1 - return: - type: System.Int32 - content.vb: Public Shared Function HyperpipeAttribSGIX(Of T1 As Structure)(dpy As DisplayPtr, timeSlice As Integer, attrib As Integer, size As Integer, attribList As Span(Of T1)) As Integer - overload: OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeAttribSGIX* - nameWithType.vb: Glx.SGIX.HyperpipeAttribSGIX(Of T1)(DisplayPtr, Integer, Integer, Integer, Span(Of T1)) - fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeAttribSGIX(Of T1)(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer, Integer, System.Span(Of T1)) - name.vb: HyperpipeAttribSGIX(Of T1)(DisplayPtr, Integer, Integer, Integer, Span(Of T1)) -- uid: OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeAttribSGIX``1(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,``0[]) - commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeAttribSGIX``1(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,``0[]) - id: HyperpipeAttribSGIX``1(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,``0[]) - parent: OpenTK.Graphics.Glx.Glx.SGIX - langs: - - csharp - - vb - name: HyperpipeAttribSGIX(DisplayPtr, int, int, int, T1[]) - nameWithType: Glx.SGIX.HyperpipeAttribSGIX(DisplayPtr, int, int, int, T1[]) - fullName: OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr, int, int, int, T1[]) - type: Method - source: - id: HyperpipeAttribSGIX - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 1517 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_SGIX_hyperpipe] - - [entry point: glXHyperpipeAttribSGIX] - -
- example: [] - syntax: - content: 'public static int HyperpipeAttribSGIX(DisplayPtr dpy, int timeSlice, int attrib, int size, T1[] attribList) where T1 : unmanaged' - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: timeSlice - type: System.Int32 - - id: attrib - type: System.Int32 - - id: size - type: System.Int32 - - id: attribList - type: '{T1}[]' - typeParameters: - - id: T1 - return: - type: System.Int32 - content.vb: Public Shared Function HyperpipeAttribSGIX(Of T1 As Structure)(dpy As DisplayPtr, timeSlice As Integer, attrib As Integer, size As Integer, attribList As T1()) As Integer - overload: OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeAttribSGIX* - nameWithType.vb: Glx.SGIX.HyperpipeAttribSGIX(Of T1)(DisplayPtr, Integer, Integer, Integer, T1()) - fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeAttribSGIX(Of T1)(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer, Integer, T1()) - name.vb: HyperpipeAttribSGIX(Of T1)(DisplayPtr, Integer, Integer, Integer, T1()) -- uid: OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeAttribSGIX``1(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,``0@) - commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeAttribSGIX``1(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,``0@) - id: HyperpipeAttribSGIX``1(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,``0@) - parent: OpenTK.Graphics.Glx.Glx.SGIX - langs: - - csharp - - vb - name: HyperpipeAttribSGIX(DisplayPtr, int, int, int, ref T1) - nameWithType: Glx.SGIX.HyperpipeAttribSGIX(DisplayPtr, int, int, int, ref T1) - fullName: OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr, int, int, int, ref T1) - type: Method - source: - id: HyperpipeAttribSGIX - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 1528 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_SGIX_hyperpipe] - - [entry point: glXHyperpipeAttribSGIX] - -
- example: [] - syntax: - content: 'public static int HyperpipeAttribSGIX(DisplayPtr dpy, int timeSlice, int attrib, int size, ref T1 attribList) where T1 : unmanaged' - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: timeSlice - type: System.Int32 - - id: attrib - type: System.Int32 - - id: size - type: System.Int32 - - id: attribList - type: '{T1}' - typeParameters: - - id: T1 - return: - type: System.Int32 - content.vb: Public Shared Function HyperpipeAttribSGIX(Of T1 As Structure)(dpy As DisplayPtr, timeSlice As Integer, attrib As Integer, size As Integer, attribList As T1) As Integer - overload: OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeAttribSGIX* - nameWithType.vb: Glx.SGIX.HyperpipeAttribSGIX(Of T1)(DisplayPtr, Integer, Integer, Integer, T1) - fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeAttribSGIX(Of T1)(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer, Integer, T1) - name.vb: HyperpipeAttribSGIX(Of T1)(DisplayPtr, Integer, Integer, Integer, T1) -- uid: OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Span{OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX},System.Span{System.Int32}) - commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Span{OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX},System.Span{System.Int32}) - id: HyperpipeConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Span{OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX},System.Span{System.Int32}) - parent: OpenTK.Graphics.Glx.Glx.SGIX - langs: - - csharp - - vb - name: HyperpipeConfigSGIX(DisplayPtr, int, int, Span, Span) - nameWithType: Glx.SGIX.HyperpipeConfigSGIX(DisplayPtr, int, int, Span, Span) - fullName: OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr, int, int, System.Span, System.Span) - type: Method - source: - id: HyperpipeConfigSGIX - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 1539 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_SGIX_hyperpipe] - - [entry point: glXHyperpipeConfigSGIX] - -
- example: [] - syntax: - content: public static int HyperpipeConfigSGIX(DisplayPtr dpy, int networkId, int npipes, Span cfg, Span hpId) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: networkId - type: System.Int32 - - id: npipes - type: System.Int32 - - id: cfg - type: System.Span{OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX} - - id: hpId - type: System.Span{System.Int32} - return: - type: System.Int32 - content.vb: Public Shared Function HyperpipeConfigSGIX(dpy As DisplayPtr, networkId As Integer, npipes As Integer, cfg As Span(Of GLXHyperpipeConfigSGIX), hpId As Span(Of Integer)) As Integer - overload: OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeConfigSGIX* - nameWithType.vb: Glx.SGIX.HyperpipeConfigSGIX(DisplayPtr, Integer, Integer, Span(Of GLXHyperpipeConfigSGIX), Span(Of Integer)) - fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer, System.Span(Of OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX), System.Span(Of Integer)) - name.vb: HyperpipeConfigSGIX(DisplayPtr, Integer, Integer, Span(Of GLXHyperpipeConfigSGIX), Span(Of Integer)) -- uid: OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX[],System.Int32[]) - commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX[],System.Int32[]) - id: HyperpipeConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX[],System.Int32[]) - parent: OpenTK.Graphics.Glx.Glx.SGIX - langs: - - csharp - - vb - name: HyperpipeConfigSGIX(DisplayPtr, int, int, GLXHyperpipeConfigSGIX[], int[]) - nameWithType: Glx.SGIX.HyperpipeConfigSGIX(DisplayPtr, int, int, GLXHyperpipeConfigSGIX[], int[]) - fullName: OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr, int, int, OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX[], int[]) - type: Method - source: - id: HyperpipeConfigSGIX - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 1552 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_SGIX_hyperpipe] - - [entry point: glXHyperpipeConfigSGIX] - -
- example: [] - syntax: - content: public static int HyperpipeConfigSGIX(DisplayPtr dpy, int networkId, int npipes, GLXHyperpipeConfigSGIX[] cfg, int[] hpId) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: networkId - type: System.Int32 - - id: npipes - type: System.Int32 - - id: cfg - type: OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX[] - - id: hpId - type: System.Int32[] - return: - type: System.Int32 - content.vb: Public Shared Function HyperpipeConfigSGIX(dpy As DisplayPtr, networkId As Integer, npipes As Integer, cfg As GLXHyperpipeConfigSGIX(), hpId As Integer()) As Integer - overload: OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeConfigSGIX* - nameWithType.vb: Glx.SGIX.HyperpipeConfigSGIX(DisplayPtr, Integer, Integer, GLXHyperpipeConfigSGIX(), Integer()) - fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer, OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX(), Integer()) - name.vb: HyperpipeConfigSGIX(DisplayPtr, Integer, Integer, GLXHyperpipeConfigSGIX(), Integer()) -- uid: OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX@,System.Int32@) - commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX@,System.Int32@) - id: HyperpipeConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX@,System.Int32@) - parent: OpenTK.Graphics.Glx.Glx.SGIX - langs: - - csharp - - vb - name: HyperpipeConfigSGIX(DisplayPtr, int, int, ref GLXHyperpipeConfigSGIX, ref int) - nameWithType: Glx.SGIX.HyperpipeConfigSGIX(DisplayPtr, int, int, ref GLXHyperpipeConfigSGIX, ref int) - fullName: OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr, int, int, ref OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX, ref int) - type: Method - source: - id: HyperpipeConfigSGIX - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 1565 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_SGIX_hyperpipe] - - [entry point: glXHyperpipeConfigSGIX] - -
- example: [] - syntax: - content: public static int HyperpipeConfigSGIX(DisplayPtr dpy, int networkId, int npipes, ref GLXHyperpipeConfigSGIX cfg, ref int hpId) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: networkId - type: System.Int32 - - id: npipes - type: System.Int32 - - id: cfg - type: OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX - - id: hpId - type: System.Int32 - return: - type: System.Int32 - content.vb: Public Shared Function HyperpipeConfigSGIX(dpy As DisplayPtr, networkId As Integer, npipes As Integer, cfg As GLXHyperpipeConfigSGIX, hpId As Integer) As Integer - overload: OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeConfigSGIX* - nameWithType.vb: Glx.SGIX.HyperpipeConfigSGIX(DisplayPtr, Integer, Integer, GLXHyperpipeConfigSGIX, Integer) - fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer, OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX, Integer) - name.vb: HyperpipeConfigSGIX(DisplayPtr, Integer, Integer, GLXHyperpipeConfigSGIX, Integer) -- uid: OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelDeltasSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Span{System.Int32},System.Span{System.Int32},System.Span{System.Int32},System.Span{System.Int32}) - commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelDeltasSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Span{System.Int32},System.Span{System.Int32},System.Span{System.Int32},System.Span{System.Int32}) - id: QueryChannelDeltasSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Span{System.Int32},System.Span{System.Int32},System.Span{System.Int32},System.Span{System.Int32}) - parent: OpenTK.Graphics.Glx.Glx.SGIX - langs: - - csharp - - vb - name: QueryChannelDeltasSGIX(DisplayPtr, int, int, Span, Span, Span, Span) - nameWithType: Glx.SGIX.QueryChannelDeltasSGIX(DisplayPtr, int, int, Span, Span, Span, Span) - fullName: OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelDeltasSGIX(OpenTK.Graphics.Glx.DisplayPtr, int, int, System.Span, System.Span, System.Span, System.Span) - type: Method - source: - id: QueryChannelDeltasSGIX - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 1576 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_SGIX_video_resize] - - [entry point: glXQueryChannelDeltasSGIX] - -
- example: [] - syntax: - content: public static int QueryChannelDeltasSGIX(DisplayPtr display, int screen, int channel, Span x, Span y, Span w, Span h) - parameters: - - id: display - type: OpenTK.Graphics.Glx.DisplayPtr - - id: screen - type: System.Int32 - - id: channel - type: System.Int32 - - id: x - type: System.Span{System.Int32} - - id: y - type: System.Span{System.Int32} - - id: w - type: System.Span{System.Int32} - - id: h - type: System.Span{System.Int32} - return: - type: System.Int32 - content.vb: Public Shared Function QueryChannelDeltasSGIX(display As DisplayPtr, screen As Integer, channel As Integer, x As Span(Of Integer), y As Span(Of Integer), w As Span(Of Integer), h As Span(Of Integer)) As Integer - overload: OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelDeltasSGIX* - nameWithType.vb: Glx.SGIX.QueryChannelDeltasSGIX(DisplayPtr, Integer, Integer, Span(Of Integer), Span(Of Integer), Span(Of Integer), Span(Of Integer)) - fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelDeltasSGIX(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer, System.Span(Of Integer), System.Span(Of Integer), System.Span(Of Integer), System.Span(Of Integer)) - name.vb: QueryChannelDeltasSGIX(DisplayPtr, Integer, Integer, Span(Of Integer), Span(Of Integer), Span(Of Integer), Span(Of Integer)) -- uid: OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelDeltasSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32[],System.Int32[],System.Int32[],System.Int32[]) - commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelDeltasSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32[],System.Int32[],System.Int32[],System.Int32[]) - id: QueryChannelDeltasSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32[],System.Int32[],System.Int32[],System.Int32[]) - parent: OpenTK.Graphics.Glx.Glx.SGIX - langs: - - csharp - - vb - name: QueryChannelDeltasSGIX(DisplayPtr, int, int, int[], int[], int[], int[]) - nameWithType: Glx.SGIX.QueryChannelDeltasSGIX(DisplayPtr, int, int, int[], int[], int[], int[]) - fullName: OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelDeltasSGIX(OpenTK.Graphics.Glx.DisplayPtr, int, int, int[], int[], int[], int[]) - type: Method - source: - id: QueryChannelDeltasSGIX - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 1595 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_SGIX_video_resize] - - [entry point: glXQueryChannelDeltasSGIX] - -
- example: [] - syntax: - content: public static int QueryChannelDeltasSGIX(DisplayPtr display, int screen, int channel, int[] x, int[] y, int[] w, int[] h) - parameters: - - id: display - type: OpenTK.Graphics.Glx.DisplayPtr - - id: screen - type: System.Int32 - - id: channel - type: System.Int32 - - id: x - type: System.Int32[] - - id: y - type: System.Int32[] - - id: w - type: System.Int32[] - - id: h - type: System.Int32[] - return: - type: System.Int32 - content.vb: Public Shared Function QueryChannelDeltasSGIX(display As DisplayPtr, screen As Integer, channel As Integer, x As Integer(), y As Integer(), w As Integer(), h As Integer()) As Integer - overload: OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelDeltasSGIX* - nameWithType.vb: Glx.SGIX.QueryChannelDeltasSGIX(DisplayPtr, Integer, Integer, Integer(), Integer(), Integer(), Integer()) - fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelDeltasSGIX(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer, Integer(), Integer(), Integer(), Integer()) - name.vb: QueryChannelDeltasSGIX(DisplayPtr, Integer, Integer, Integer(), Integer(), Integer(), Integer()) -- uid: OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelDeltasSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32@,System.Int32@,System.Int32@,System.Int32@) - commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelDeltasSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32@,System.Int32@,System.Int32@,System.Int32@) - id: QueryChannelDeltasSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32@,System.Int32@,System.Int32@,System.Int32@) - parent: OpenTK.Graphics.Glx.Glx.SGIX - langs: - - csharp - - vb - name: QueryChannelDeltasSGIX(DisplayPtr, int, int, ref int, ref int, ref int, ref int) - nameWithType: Glx.SGIX.QueryChannelDeltasSGIX(DisplayPtr, int, int, ref int, ref int, ref int, ref int) - fullName: OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelDeltasSGIX(OpenTK.Graphics.Glx.DisplayPtr, int, int, ref int, ref int, ref int, ref int) - type: Method - source: - id: QueryChannelDeltasSGIX - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 1614 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_SGIX_video_resize] - - [entry point: glXQueryChannelDeltasSGIX] - -
- example: [] - syntax: - content: public static int QueryChannelDeltasSGIX(DisplayPtr display, int screen, int channel, ref int x, ref int y, ref int w, ref int h) - parameters: - - id: display - type: OpenTK.Graphics.Glx.DisplayPtr - - id: screen - type: System.Int32 - - id: channel - type: System.Int32 - - id: x - type: System.Int32 - - id: y - type: System.Int32 - - id: w - type: System.Int32 - - id: h - type: System.Int32 - return: - type: System.Int32 - content.vb: Public Shared Function QueryChannelDeltasSGIX(display As DisplayPtr, screen As Integer, channel As Integer, x As Integer, y As Integer, w As Integer, h As Integer) As Integer - overload: OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelDeltasSGIX* - nameWithType.vb: Glx.SGIX.QueryChannelDeltasSGIX(DisplayPtr, Integer, Integer, Integer, Integer, Integer, Integer) - fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelDeltasSGIX(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer, Integer, Integer, Integer, Integer) - name.vb: QueryChannelDeltasSGIX(DisplayPtr, Integer, Integer, Integer, Integer, Integer, Integer) -- uid: OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelRectSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Span{System.Int32},System.Span{System.Int32},System.Span{System.Int32},System.Span{System.Int32}) - commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelRectSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Span{System.Int32},System.Span{System.Int32},System.Span{System.Int32},System.Span{System.Int32}) - id: QueryChannelRectSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Span{System.Int32},System.Span{System.Int32},System.Span{System.Int32},System.Span{System.Int32}) - parent: OpenTK.Graphics.Glx.Glx.SGIX - langs: - - csharp - - vb - name: QueryChannelRectSGIX(DisplayPtr, int, int, Span, Span, Span, Span) - nameWithType: Glx.SGIX.QueryChannelRectSGIX(DisplayPtr, int, int, Span, Span, Span, Span) - fullName: OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelRectSGIX(OpenTK.Graphics.Glx.DisplayPtr, int, int, System.Span, System.Span, System.Span, System.Span) - type: Method - source: - id: QueryChannelRectSGIX - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 1627 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_SGIX_video_resize] - - [entry point: glXQueryChannelRectSGIX] - -
- example: [] - syntax: - content: public static int QueryChannelRectSGIX(DisplayPtr display, int screen, int channel, Span dx, Span dy, Span dw, Span dh) - parameters: - - id: display - type: OpenTK.Graphics.Glx.DisplayPtr - - id: screen - type: System.Int32 - - id: channel - type: System.Int32 - - id: dx - type: System.Span{System.Int32} - - id: dy - type: System.Span{System.Int32} - - id: dw - type: System.Span{System.Int32} - - id: dh - type: System.Span{System.Int32} - return: - type: System.Int32 - content.vb: Public Shared Function QueryChannelRectSGIX(display As DisplayPtr, screen As Integer, channel As Integer, dx As Span(Of Integer), dy As Span(Of Integer), dw As Span(Of Integer), dh As Span(Of Integer)) As Integer - overload: OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelRectSGIX* - nameWithType.vb: Glx.SGIX.QueryChannelRectSGIX(DisplayPtr, Integer, Integer, Span(Of Integer), Span(Of Integer), Span(Of Integer), Span(Of Integer)) - fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelRectSGIX(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer, System.Span(Of Integer), System.Span(Of Integer), System.Span(Of Integer), System.Span(Of Integer)) - name.vb: QueryChannelRectSGIX(DisplayPtr, Integer, Integer, Span(Of Integer), Span(Of Integer), Span(Of Integer), Span(Of Integer)) -- uid: OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelRectSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32[],System.Int32[],System.Int32[],System.Int32[]) - commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelRectSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32[],System.Int32[],System.Int32[],System.Int32[]) - id: QueryChannelRectSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32[],System.Int32[],System.Int32[],System.Int32[]) - parent: OpenTK.Graphics.Glx.Glx.SGIX - langs: - - csharp - - vb - name: QueryChannelRectSGIX(DisplayPtr, int, int, int[], int[], int[], int[]) - nameWithType: Glx.SGIX.QueryChannelRectSGIX(DisplayPtr, int, int, int[], int[], int[], int[]) - fullName: OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelRectSGIX(OpenTK.Graphics.Glx.DisplayPtr, int, int, int[], int[], int[], int[]) - type: Method - source: - id: QueryChannelRectSGIX - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 1646 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_SGIX_video_resize] - - [entry point: glXQueryChannelRectSGIX] - -
- example: [] - syntax: - content: public static int QueryChannelRectSGIX(DisplayPtr display, int screen, int channel, int[] dx, int[] dy, int[] dw, int[] dh) - parameters: - - id: display - type: OpenTK.Graphics.Glx.DisplayPtr - - id: screen - type: System.Int32 - - id: channel - type: System.Int32 - - id: dx - type: System.Int32[] - - id: dy - type: System.Int32[] - - id: dw - type: System.Int32[] - - id: dh - type: System.Int32[] - return: - type: System.Int32 - content.vb: Public Shared Function QueryChannelRectSGIX(display As DisplayPtr, screen As Integer, channel As Integer, dx As Integer(), dy As Integer(), dw As Integer(), dh As Integer()) As Integer - overload: OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelRectSGIX* - nameWithType.vb: Glx.SGIX.QueryChannelRectSGIX(DisplayPtr, Integer, Integer, Integer(), Integer(), Integer(), Integer()) - fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelRectSGIX(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer, Integer(), Integer(), Integer(), Integer()) - name.vb: QueryChannelRectSGIX(DisplayPtr, Integer, Integer, Integer(), Integer(), Integer(), Integer()) -- uid: OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelRectSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32@,System.Int32@,System.Int32@,System.Int32@) - commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelRectSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32@,System.Int32@,System.Int32@,System.Int32@) - id: QueryChannelRectSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32@,System.Int32@,System.Int32@,System.Int32@) - parent: OpenTK.Graphics.Glx.Glx.SGIX - langs: - - csharp - - vb - name: QueryChannelRectSGIX(DisplayPtr, int, int, ref int, ref int, ref int, ref int) - nameWithType: Glx.SGIX.QueryChannelRectSGIX(DisplayPtr, int, int, ref int, ref int, ref int, ref int) - fullName: OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelRectSGIX(OpenTK.Graphics.Glx.DisplayPtr, int, int, ref int, ref int, ref int, ref int) - type: Method - source: - id: QueryChannelRectSGIX - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 1665 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_SGIX_video_resize] - - [entry point: glXQueryChannelRectSGIX] - -
- example: [] - syntax: - content: public static int QueryChannelRectSGIX(DisplayPtr display, int screen, int channel, ref int dx, ref int dy, ref int dw, ref int dh) - parameters: - - id: display - type: OpenTK.Graphics.Glx.DisplayPtr - - id: screen - type: System.Int32 - - id: channel - type: System.Int32 - - id: dx - type: System.Int32 - - id: dy - type: System.Int32 - - id: dw - type: System.Int32 - - id: dh - type: System.Int32 - return: - type: System.Int32 - content.vb: Public Shared Function QueryChannelRectSGIX(display As DisplayPtr, screen As Integer, channel As Integer, dx As Integer, dy As Integer, dw As Integer, dh As Integer) As Integer - overload: OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelRectSGIX* - nameWithType.vb: Glx.SGIX.QueryChannelRectSGIX(DisplayPtr, Integer, Integer, Integer, Integer, Integer, Integer) - fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelRectSGIX(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer, Integer, Integer, Integer, Integer) - name.vb: QueryChannelRectSGIX(DisplayPtr, Integer, Integer, Integer, Integer, Integer, Integer) -- uid: OpenTK.Graphics.Glx.Glx.SGIX.QueryGLXPbufferSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXPbufferSGIX,System.Int32,System.Span{System.UInt32}) - commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.QueryGLXPbufferSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXPbufferSGIX,System.Int32,System.Span{System.UInt32}) - id: QueryGLXPbufferSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXPbufferSGIX,System.Int32,System.Span{System.UInt32}) - parent: OpenTK.Graphics.Glx.Glx.SGIX - langs: - - csharp - - vb - name: QueryGLXPbufferSGIX(DisplayPtr, GLXPbufferSGIX, int, Span) - nameWithType: Glx.SGIX.QueryGLXPbufferSGIX(DisplayPtr, GLXPbufferSGIX, int, Span) - fullName: OpenTK.Graphics.Glx.Glx.SGIX.QueryGLXPbufferSGIX(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXPbufferSGIX, int, System.Span) - type: Method - source: - id: QueryGLXPbufferSGIX - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 1678 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_SGIX_pbuffer] - - [entry point: glXQueryGLXPbufferSGIX] - -
- example: [] - syntax: - content: public static void QueryGLXPbufferSGIX(DisplayPtr dpy, GLXPbufferSGIX pbuf, int attribute, Span value) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: pbuf - type: OpenTK.Graphics.Glx.GLXPbufferSGIX - - id: attribute - type: System.Int32 - - id: value - type: System.Span{System.UInt32} - content.vb: Public Shared Sub QueryGLXPbufferSGIX(dpy As DisplayPtr, pbuf As GLXPbufferSGIX, attribute As Integer, value As Span(Of UInteger)) - overload: OpenTK.Graphics.Glx.Glx.SGIX.QueryGLXPbufferSGIX* - nameWithType.vb: Glx.SGIX.QueryGLXPbufferSGIX(DisplayPtr, GLXPbufferSGIX, Integer, Span(Of UInteger)) - fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.QueryGLXPbufferSGIX(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXPbufferSGIX, Integer, System.Span(Of UInteger)) - name.vb: QueryGLXPbufferSGIX(DisplayPtr, GLXPbufferSGIX, Integer, Span(Of UInteger)) -- uid: OpenTK.Graphics.Glx.Glx.SGIX.QueryGLXPbufferSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXPbufferSGIX,System.Int32,System.UInt32[]) - commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.QueryGLXPbufferSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXPbufferSGIX,System.Int32,System.UInt32[]) - id: QueryGLXPbufferSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXPbufferSGIX,System.Int32,System.UInt32[]) - parent: OpenTK.Graphics.Glx.Glx.SGIX - langs: - - csharp - - vb - name: QueryGLXPbufferSGIX(DisplayPtr, GLXPbufferSGIX, int, uint[]) - nameWithType: Glx.SGIX.QueryGLXPbufferSGIX(DisplayPtr, GLXPbufferSGIX, int, uint[]) - fullName: OpenTK.Graphics.Glx.Glx.SGIX.QueryGLXPbufferSGIX(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXPbufferSGIX, int, uint[]) - type: Method - source: - id: QueryGLXPbufferSGIX - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 1686 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_SGIX_pbuffer] - - [entry point: glXQueryGLXPbufferSGIX] - -
- example: [] - syntax: - content: public static void QueryGLXPbufferSGIX(DisplayPtr dpy, GLXPbufferSGIX pbuf, int attribute, uint[] value) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: pbuf - type: OpenTK.Graphics.Glx.GLXPbufferSGIX - - id: attribute - type: System.Int32 - - id: value - type: System.UInt32[] - content.vb: Public Shared Sub QueryGLXPbufferSGIX(dpy As DisplayPtr, pbuf As GLXPbufferSGIX, attribute As Integer, value As UInteger()) - overload: OpenTK.Graphics.Glx.Glx.SGIX.QueryGLXPbufferSGIX* - nameWithType.vb: Glx.SGIX.QueryGLXPbufferSGIX(DisplayPtr, GLXPbufferSGIX, Integer, UInteger()) - fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.QueryGLXPbufferSGIX(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXPbufferSGIX, Integer, UInteger()) - name.vb: QueryGLXPbufferSGIX(DisplayPtr, GLXPbufferSGIX, Integer, UInteger()) -- uid: OpenTK.Graphics.Glx.Glx.SGIX.QueryGLXPbufferSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXPbufferSGIX,System.Int32,System.UInt32@) - commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.QueryGLXPbufferSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXPbufferSGIX,System.Int32,System.UInt32@) - id: QueryGLXPbufferSGIX(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXPbufferSGIX,System.Int32,System.UInt32@) - parent: OpenTK.Graphics.Glx.Glx.SGIX - langs: - - csharp - - vb - name: QueryGLXPbufferSGIX(DisplayPtr, GLXPbufferSGIX, int, ref uint) - nameWithType: Glx.SGIX.QueryGLXPbufferSGIX(DisplayPtr, GLXPbufferSGIX, int, ref uint) - fullName: OpenTK.Graphics.Glx.Glx.SGIX.QueryGLXPbufferSGIX(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXPbufferSGIX, int, ref uint) - type: Method - source: - id: QueryGLXPbufferSGIX - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 1694 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_SGIX_pbuffer] - - [entry point: glXQueryGLXPbufferSGIX] - -
- example: [] - syntax: - content: public static void QueryGLXPbufferSGIX(DisplayPtr dpy, GLXPbufferSGIX pbuf, int attribute, ref uint value) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: pbuf - type: OpenTK.Graphics.Glx.GLXPbufferSGIX - - id: attribute - type: System.Int32 - - id: value - type: System.UInt32 - content.vb: Public Shared Sub QueryGLXPbufferSGIX(dpy As DisplayPtr, pbuf As GLXPbufferSGIX, attribute As Integer, value As UInteger) - overload: OpenTK.Graphics.Glx.Glx.SGIX.QueryGLXPbufferSGIX* - nameWithType.vb: Glx.SGIX.QueryGLXPbufferSGIX(DisplayPtr, GLXPbufferSGIX, Integer, UInteger) - fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.QueryGLXPbufferSGIX(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXPbufferSGIX, Integer, UInteger) - name.vb: QueryGLXPbufferSGIX(DisplayPtr, GLXPbufferSGIX, Integer, UInteger) -- uid: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.IntPtr) - commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.IntPtr) - id: QueryHyperpipeAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.IntPtr) - parent: OpenTK.Graphics.Glx.Glx.SGIX - langs: - - csharp - - vb - name: QueryHyperpipeAttribSGIX(DisplayPtr, int, int, int, nint) - nameWithType: Glx.SGIX.QueryHyperpipeAttribSGIX(DisplayPtr, int, int, int, nint) - fullName: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr, int, int, int, nint) - type: Method - source: - id: QueryHyperpipeAttribSGIX - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 1702 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_SGIX_hyperpipe] - - [entry point: glXQueryHyperpipeAttribSGIX] - -
- example: [] - syntax: - content: public static int QueryHyperpipeAttribSGIX(DisplayPtr dpy, int timeSlice, int attrib, int size, nint returnAttribList) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: timeSlice - type: System.Int32 - - id: attrib - type: System.Int32 - - id: size - type: System.Int32 - - id: returnAttribList - type: System.IntPtr - return: - type: System.Int32 - content.vb: Public Shared Function QueryHyperpipeAttribSGIX(dpy As DisplayPtr, timeSlice As Integer, attrib As Integer, size As Integer, returnAttribList As IntPtr) As Integer - overload: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeAttribSGIX* - nameWithType.vb: Glx.SGIX.QueryHyperpipeAttribSGIX(DisplayPtr, Integer, Integer, Integer, IntPtr) - fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer, Integer, System.IntPtr) - name.vb: QueryHyperpipeAttribSGIX(DisplayPtr, Integer, Integer, Integer, IntPtr) -- uid: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeAttribSGIX``1(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.Span{``0}) - commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeAttribSGIX``1(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.Span{``0}) - id: QueryHyperpipeAttribSGIX``1(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.Span{``0}) - parent: OpenTK.Graphics.Glx.Glx.SGIX - langs: - - csharp - - vb - name: QueryHyperpipeAttribSGIX(DisplayPtr, int, int, int, Span) - nameWithType: Glx.SGIX.QueryHyperpipeAttribSGIX(DisplayPtr, int, int, int, Span) - fullName: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr, int, int, int, System.Span) - type: Method - source: - id: QueryHyperpipeAttribSGIX - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 1710 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_SGIX_hyperpipe] - - [entry point: glXQueryHyperpipeAttribSGIX] - -
- example: [] - syntax: - content: 'public static int QueryHyperpipeAttribSGIX(DisplayPtr dpy, int timeSlice, int attrib, int size, Span returnAttribList) where T1 : unmanaged' - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: timeSlice - type: System.Int32 - - id: attrib - type: System.Int32 - - id: size - type: System.Int32 - - id: returnAttribList - type: System.Span{{T1}} - typeParameters: - - id: T1 - return: - type: System.Int32 - content.vb: Public Shared Function QueryHyperpipeAttribSGIX(Of T1 As Structure)(dpy As DisplayPtr, timeSlice As Integer, attrib As Integer, size As Integer, returnAttribList As Span(Of T1)) As Integer - overload: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeAttribSGIX* - nameWithType.vb: Glx.SGIX.QueryHyperpipeAttribSGIX(Of T1)(DisplayPtr, Integer, Integer, Integer, Span(Of T1)) - fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeAttribSGIX(Of T1)(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer, Integer, System.Span(Of T1)) - name.vb: QueryHyperpipeAttribSGIX(Of T1)(DisplayPtr, Integer, Integer, Integer, Span(Of T1)) -- uid: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeAttribSGIX``1(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,``0[]) - commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeAttribSGIX``1(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,``0[]) - id: QueryHyperpipeAttribSGIX``1(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,``0[]) - parent: OpenTK.Graphics.Glx.Glx.SGIX - langs: - - csharp - - vb - name: QueryHyperpipeAttribSGIX(DisplayPtr, int, int, int, T1[]) - nameWithType: Glx.SGIX.QueryHyperpipeAttribSGIX(DisplayPtr, int, int, int, T1[]) - fullName: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr, int, int, int, T1[]) - type: Method - source: - id: QueryHyperpipeAttribSGIX - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 1721 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_SGIX_hyperpipe] - - [entry point: glXQueryHyperpipeAttribSGIX] - -
- example: [] - syntax: - content: 'public static int QueryHyperpipeAttribSGIX(DisplayPtr dpy, int timeSlice, int attrib, int size, T1[] returnAttribList) where T1 : unmanaged' - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: timeSlice - type: System.Int32 - - id: attrib - type: System.Int32 - - id: size - type: System.Int32 - - id: returnAttribList - type: '{T1}[]' - typeParameters: - - id: T1 - return: - type: System.Int32 - content.vb: Public Shared Function QueryHyperpipeAttribSGIX(Of T1 As Structure)(dpy As DisplayPtr, timeSlice As Integer, attrib As Integer, size As Integer, returnAttribList As T1()) As Integer - overload: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeAttribSGIX* - nameWithType.vb: Glx.SGIX.QueryHyperpipeAttribSGIX(Of T1)(DisplayPtr, Integer, Integer, Integer, T1()) - fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeAttribSGIX(Of T1)(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer, Integer, T1()) - name.vb: QueryHyperpipeAttribSGIX(Of T1)(DisplayPtr, Integer, Integer, Integer, T1()) -- uid: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeAttribSGIX``1(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,``0@) - commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeAttribSGIX``1(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,``0@) - id: QueryHyperpipeAttribSGIX``1(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,``0@) - parent: OpenTK.Graphics.Glx.Glx.SGIX - langs: - - csharp - - vb - name: QueryHyperpipeAttribSGIX(DisplayPtr, int, int, int, ref T1) - nameWithType: Glx.SGIX.QueryHyperpipeAttribSGIX(DisplayPtr, int, int, int, ref T1) - fullName: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr, int, int, int, ref T1) - type: Method - source: - id: QueryHyperpipeAttribSGIX - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 1732 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_SGIX_hyperpipe] - - [entry point: glXQueryHyperpipeAttribSGIX] - -
- example: [] - syntax: - content: 'public static int QueryHyperpipeAttribSGIX(DisplayPtr dpy, int timeSlice, int attrib, int size, ref T1 returnAttribList) where T1 : unmanaged' - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: timeSlice - type: System.Int32 - - id: attrib - type: System.Int32 - - id: size - type: System.Int32 - - id: returnAttribList - type: '{T1}' - typeParameters: - - id: T1 - return: - type: System.Int32 - content.vb: Public Shared Function QueryHyperpipeAttribSGIX(Of T1 As Structure)(dpy As DisplayPtr, timeSlice As Integer, attrib As Integer, size As Integer, returnAttribList As T1) As Integer - overload: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeAttribSGIX* - nameWithType.vb: Glx.SGIX.QueryHyperpipeAttribSGIX(Of T1)(DisplayPtr, Integer, Integer, Integer, T1) - fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeAttribSGIX(Of T1)(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer, Integer, T1) - name.vb: QueryHyperpipeAttribSGIX(Of T1)(DisplayPtr, Integer, Integer, Integer, T1) -- uid: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeBestAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.IntPtr,System.IntPtr) - commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeBestAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.IntPtr,System.IntPtr) - id: QueryHyperpipeBestAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.IntPtr,System.IntPtr) - parent: OpenTK.Graphics.Glx.Glx.SGIX - langs: - - csharp - - vb - name: QueryHyperpipeBestAttribSGIX(DisplayPtr, int, int, int, nint, nint) - nameWithType: Glx.SGIX.QueryHyperpipeBestAttribSGIX(DisplayPtr, int, int, int, nint, nint) - fullName: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeBestAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr, int, int, int, nint, nint) - type: Method - source: - id: QueryHyperpipeBestAttribSGIX - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 1743 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_SGIX_hyperpipe] - - [entry point: glXQueryHyperpipeBestAttribSGIX] - -
- example: [] - syntax: - content: public static int QueryHyperpipeBestAttribSGIX(DisplayPtr dpy, int timeSlice, int attrib, int size, nint attribList, nint returnAttribList) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: timeSlice - type: System.Int32 - - id: attrib - type: System.Int32 - - id: size - type: System.Int32 - - id: attribList - type: System.IntPtr - - id: returnAttribList - type: System.IntPtr - return: - type: System.Int32 - content.vb: Public Shared Function QueryHyperpipeBestAttribSGIX(dpy As DisplayPtr, timeSlice As Integer, attrib As Integer, size As Integer, attribList As IntPtr, returnAttribList As IntPtr) As Integer - overload: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeBestAttribSGIX* - nameWithType.vb: Glx.SGIX.QueryHyperpipeBestAttribSGIX(DisplayPtr, Integer, Integer, Integer, IntPtr, IntPtr) - fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeBestAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer, Integer, System.IntPtr, System.IntPtr) - name.vb: QueryHyperpipeBestAttribSGIX(DisplayPtr, Integer, Integer, Integer, IntPtr, IntPtr) -- uid: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeBestAttribSGIX``2(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.Span{``0},System.Span{``1}) - commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeBestAttribSGIX``2(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.Span{``0},System.Span{``1}) - id: QueryHyperpipeBestAttribSGIX``2(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,System.Span{``0},System.Span{``1}) - parent: OpenTK.Graphics.Glx.Glx.SGIX - langs: - - csharp - - vb - name: QueryHyperpipeBestAttribSGIX(DisplayPtr, int, int, int, Span, Span) - nameWithType: Glx.SGIX.QueryHyperpipeBestAttribSGIX(DisplayPtr, int, int, int, Span, Span) - fullName: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeBestAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr, int, int, int, System.Span, System.Span) - type: Method - source: - id: QueryHyperpipeBestAttribSGIX - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 1752 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_SGIX_hyperpipe] - - [entry point: glXQueryHyperpipeBestAttribSGIX] - -
- example: [] - syntax: - content: 'public static int QueryHyperpipeBestAttribSGIX(DisplayPtr dpy, int timeSlice, int attrib, int size, Span attribList, Span returnAttribList) where T1 : unmanaged where T2 : unmanaged' - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: timeSlice - type: System.Int32 - - id: attrib - type: System.Int32 - - id: size - type: System.Int32 - - id: attribList - type: System.Span{{T1}} - - id: returnAttribList - type: System.Span{{T2}} - typeParameters: - - id: T1 - - id: T2 - return: - type: System.Int32 - content.vb: Public Shared Function QueryHyperpipeBestAttribSGIX(Of T1 As Structure, T2 As Structure)(dpy As DisplayPtr, timeSlice As Integer, attrib As Integer, size As Integer, attribList As Span(Of T1), returnAttribList As Span(Of T2)) As Integer - overload: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeBestAttribSGIX* - nameWithType.vb: Glx.SGIX.QueryHyperpipeBestAttribSGIX(Of T1, T2)(DisplayPtr, Integer, Integer, Integer, Span(Of T1), Span(Of T2)) - fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeBestAttribSGIX(Of T1, T2)(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer, Integer, System.Span(Of T1), System.Span(Of T2)) - name.vb: QueryHyperpipeBestAttribSGIX(Of T1, T2)(DisplayPtr, Integer, Integer, Integer, Span(Of T1), Span(Of T2)) -- uid: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeBestAttribSGIX``2(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,``0[],``1[]) - commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeBestAttribSGIX``2(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,``0[],``1[]) - id: QueryHyperpipeBestAttribSGIX``2(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,``0[],``1[]) - parent: OpenTK.Graphics.Glx.Glx.SGIX - langs: - - csharp - - vb - name: QueryHyperpipeBestAttribSGIX(DisplayPtr, int, int, int, T1[], T2[]) - nameWithType: Glx.SGIX.QueryHyperpipeBestAttribSGIX(DisplayPtr, int, int, int, T1[], T2[]) - fullName: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeBestAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr, int, int, int, T1[], T2[]) - type: Method - source: - id: QueryHyperpipeBestAttribSGIX - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 1767 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_SGIX_hyperpipe] - - [entry point: glXQueryHyperpipeBestAttribSGIX] - -
- example: [] - syntax: - content: 'public static int QueryHyperpipeBestAttribSGIX(DisplayPtr dpy, int timeSlice, int attrib, int size, T1[] attribList, T2[] returnAttribList) where T1 : unmanaged where T2 : unmanaged' - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: timeSlice - type: System.Int32 - - id: attrib - type: System.Int32 - - id: size - type: System.Int32 - - id: attribList - type: '{T1}[]' - - id: returnAttribList - type: '{T2}[]' - typeParameters: - - id: T1 - - id: T2 - return: - type: System.Int32 - content.vb: Public Shared Function QueryHyperpipeBestAttribSGIX(Of T1 As Structure, T2 As Structure)(dpy As DisplayPtr, timeSlice As Integer, attrib As Integer, size As Integer, attribList As T1(), returnAttribList As T2()) As Integer - overload: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeBestAttribSGIX* - nameWithType.vb: Glx.SGIX.QueryHyperpipeBestAttribSGIX(Of T1, T2)(DisplayPtr, Integer, Integer, Integer, T1(), T2()) - fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeBestAttribSGIX(Of T1, T2)(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer, Integer, T1(), T2()) - name.vb: QueryHyperpipeBestAttribSGIX(Of T1, T2)(DisplayPtr, Integer, Integer, Integer, T1(), T2()) -- uid: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeBestAttribSGIX``2(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,``0@,``1@) - commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeBestAttribSGIX``2(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,``0@,``1@) - id: QueryHyperpipeBestAttribSGIX``2(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32,System.Int32,``0@,``1@) - parent: OpenTK.Graphics.Glx.Glx.SGIX - langs: - - csharp - - vb - name: QueryHyperpipeBestAttribSGIX(DisplayPtr, int, int, int, ref T1, ref T2) - nameWithType: Glx.SGIX.QueryHyperpipeBestAttribSGIX(DisplayPtr, int, int, int, ref T1, ref T2) - fullName: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeBestAttribSGIX(OpenTK.Graphics.Glx.DisplayPtr, int, int, int, ref T1, ref T2) - type: Method - source: - id: QueryHyperpipeBestAttribSGIX - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 1782 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_SGIX_hyperpipe] - - [entry point: glXQueryHyperpipeBestAttribSGIX] - -
- example: [] - syntax: - content: 'public static int QueryHyperpipeBestAttribSGIX(DisplayPtr dpy, int timeSlice, int attrib, int size, ref T1 attribList, ref T2 returnAttribList) where T1 : unmanaged where T2 : unmanaged' - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: timeSlice - type: System.Int32 - - id: attrib - type: System.Int32 - - id: size - type: System.Int32 - - id: attribList - type: '{T1}' - - id: returnAttribList - type: '{T2}' - typeParameters: - - id: T1 - - id: T2 - return: - type: System.Int32 - content.vb: Public Shared Function QueryHyperpipeBestAttribSGIX(Of T1 As Structure, T2 As Structure)(dpy As DisplayPtr, timeSlice As Integer, attrib As Integer, size As Integer, attribList As T1, returnAttribList As T2) As Integer - overload: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeBestAttribSGIX* - nameWithType.vb: Glx.SGIX.QueryHyperpipeBestAttribSGIX(Of T1, T2)(DisplayPtr, Integer, Integer, Integer, T1, T2) - fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeBestAttribSGIX(Of T1, T2)(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer, Integer, T1, T2) - name.vb: QueryHyperpipeBestAttribSGIX(Of T1, T2)(DisplayPtr, Integer, Integer, Integer, T1, T2) -- uid: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Span{System.Int32}) - commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Span{System.Int32}) - id: QueryHyperpipeConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Span{System.Int32}) - parent: OpenTK.Graphics.Glx.Glx.SGIX - langs: - - csharp - - vb - name: QueryHyperpipeConfigSGIX(DisplayPtr, int, Span) - nameWithType: Glx.SGIX.QueryHyperpipeConfigSGIX(DisplayPtr, int, Span) - fullName: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr, int, System.Span) - type: Method - source: - id: QueryHyperpipeConfigSGIX - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 1795 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_SGIX_hyperpipe] - - [entry point: glXQueryHyperpipeConfigSGIX] - -
- example: [] - syntax: - content: public static GLXHyperpipeConfigSGIX* QueryHyperpipeConfigSGIX(DisplayPtr dpy, int hpId, Span npipes) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: hpId - type: System.Int32 - - id: npipes - type: System.Span{System.Int32} - return: - type: OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX* - content.vb: Public Shared Function QueryHyperpipeConfigSGIX(dpy As DisplayPtr, hpId As Integer, npipes As Span(Of Integer)) As GLXHyperpipeConfigSGIX* - overload: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeConfigSGIX* - nameWithType.vb: Glx.SGIX.QueryHyperpipeConfigSGIX(DisplayPtr, Integer, Span(Of Integer)) - fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr, Integer, System.Span(Of Integer)) - name.vb: QueryHyperpipeConfigSGIX(DisplayPtr, Integer, Span(Of Integer)) -- uid: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32[]) - commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32[]) - id: QueryHyperpipeConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32[]) - parent: OpenTK.Graphics.Glx.Glx.SGIX - langs: - - csharp - - vb - name: QueryHyperpipeConfigSGIX(DisplayPtr, int, int[]) - nameWithType: Glx.SGIX.QueryHyperpipeConfigSGIX(DisplayPtr, int, int[]) - fullName: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr, int, int[]) - type: Method - source: - id: QueryHyperpipeConfigSGIX - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 1805 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_SGIX_hyperpipe] - - [entry point: glXQueryHyperpipeConfigSGIX] - -
- example: [] - syntax: - content: public static GLXHyperpipeConfigSGIX* QueryHyperpipeConfigSGIX(DisplayPtr dpy, int hpId, int[] npipes) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: hpId - type: System.Int32 - - id: npipes - type: System.Int32[] - return: - type: OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX* - content.vb: Public Shared Function QueryHyperpipeConfigSGIX(dpy As DisplayPtr, hpId As Integer, npipes As Integer()) As GLXHyperpipeConfigSGIX* - overload: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeConfigSGIX* - nameWithType.vb: Glx.SGIX.QueryHyperpipeConfigSGIX(DisplayPtr, Integer, Integer()) - fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer()) - name.vb: QueryHyperpipeConfigSGIX(DisplayPtr, Integer, Integer()) -- uid: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32@) - commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32@) - id: QueryHyperpipeConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32@) - parent: OpenTK.Graphics.Glx.Glx.SGIX - langs: - - csharp - - vb - name: QueryHyperpipeConfigSGIX(DisplayPtr, int, ref int) - nameWithType: Glx.SGIX.QueryHyperpipeConfigSGIX(DisplayPtr, int, ref int) - fullName: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr, int, ref int) - type: Method - source: - id: QueryHyperpipeConfigSGIX - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 1815 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_SGIX_hyperpipe] - - [entry point: glXQueryHyperpipeConfigSGIX] - -
- example: [] - syntax: - content: public static GLXHyperpipeConfigSGIX* QueryHyperpipeConfigSGIX(DisplayPtr dpy, int hpId, ref int npipes) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: hpId - type: System.Int32 - - id: npipes - type: System.Int32 - return: - type: OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX* - content.vb: Public Shared Function QueryHyperpipeConfigSGIX(dpy As DisplayPtr, hpId As Integer, npipes As Integer) As GLXHyperpipeConfigSGIX* - overload: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeConfigSGIX* - nameWithType.vb: Glx.SGIX.QueryHyperpipeConfigSGIX(DisplayPtr, Integer, Integer) - fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeConfigSGIX(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer) - name.vb: QueryHyperpipeConfigSGIX(DisplayPtr, Integer, Integer) -- uid: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeNetworkSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Span{System.Int32}) - commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeNetworkSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Span{System.Int32}) - id: QueryHyperpipeNetworkSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Span{System.Int32}) - parent: OpenTK.Graphics.Glx.Glx.SGIX - langs: - - csharp - - vb - name: QueryHyperpipeNetworkSGIX(DisplayPtr, Span) - nameWithType: Glx.SGIX.QueryHyperpipeNetworkSGIX(DisplayPtr, Span) - fullName: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeNetworkSGIX(OpenTK.Graphics.Glx.DisplayPtr, System.Span) - type: Method - source: - id: QueryHyperpipeNetworkSGIX - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 1825 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_SGIX_hyperpipe] - - [entry point: glXQueryHyperpipeNetworkSGIX] - -
- example: [] - syntax: - content: public static GLXHyperpipeNetworkSGIX* QueryHyperpipeNetworkSGIX(DisplayPtr dpy, Span npipes) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: npipes - type: System.Span{System.Int32} - return: - type: OpenTK.Graphics.Glx.GLXHyperpipeNetworkSGIX* - content.vb: Public Shared Function QueryHyperpipeNetworkSGIX(dpy As DisplayPtr, npipes As Span(Of Integer)) As GLXHyperpipeNetworkSGIX* - overload: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeNetworkSGIX* - nameWithType.vb: Glx.SGIX.QueryHyperpipeNetworkSGIX(DisplayPtr, Span(Of Integer)) - fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeNetworkSGIX(OpenTK.Graphics.Glx.DisplayPtr, System.Span(Of Integer)) - name.vb: QueryHyperpipeNetworkSGIX(DisplayPtr, Span(Of Integer)) -- uid: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeNetworkSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32[]) - commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeNetworkSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32[]) - id: QueryHyperpipeNetworkSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32[]) - parent: OpenTK.Graphics.Glx.Glx.SGIX - langs: - - csharp - - vb - name: QueryHyperpipeNetworkSGIX(DisplayPtr, int[]) - nameWithType: Glx.SGIX.QueryHyperpipeNetworkSGIX(DisplayPtr, int[]) - fullName: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeNetworkSGIX(OpenTK.Graphics.Glx.DisplayPtr, int[]) - type: Method - source: - id: QueryHyperpipeNetworkSGIX - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 1835 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_SGIX_hyperpipe] - - [entry point: glXQueryHyperpipeNetworkSGIX] - -
- example: [] - syntax: - content: public static GLXHyperpipeNetworkSGIX* QueryHyperpipeNetworkSGIX(DisplayPtr dpy, int[] npipes) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: npipes - type: System.Int32[] - return: - type: OpenTK.Graphics.Glx.GLXHyperpipeNetworkSGIX* - content.vb: Public Shared Function QueryHyperpipeNetworkSGIX(dpy As DisplayPtr, npipes As Integer()) As GLXHyperpipeNetworkSGIX* - overload: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeNetworkSGIX* - nameWithType.vb: Glx.SGIX.QueryHyperpipeNetworkSGIX(DisplayPtr, Integer()) - fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeNetworkSGIX(OpenTK.Graphics.Glx.DisplayPtr, Integer()) - name.vb: QueryHyperpipeNetworkSGIX(DisplayPtr, Integer()) -- uid: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeNetworkSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32@) - commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeNetworkSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32@) - id: QueryHyperpipeNetworkSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32@) - parent: OpenTK.Graphics.Glx.Glx.SGIX - langs: - - csharp - - vb - name: QueryHyperpipeNetworkSGIX(DisplayPtr, ref int) - nameWithType: Glx.SGIX.QueryHyperpipeNetworkSGIX(DisplayPtr, ref int) - fullName: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeNetworkSGIX(OpenTK.Graphics.Glx.DisplayPtr, ref int) - type: Method - source: - id: QueryHyperpipeNetworkSGIX - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 1845 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_SGIX_hyperpipe] - - [entry point: glXQueryHyperpipeNetworkSGIX] - -
- example: [] - syntax: - content: public static GLXHyperpipeNetworkSGIX* QueryHyperpipeNetworkSGIX(DisplayPtr dpy, ref int npipes) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: npipes - type: System.Int32 - return: - type: OpenTK.Graphics.Glx.GLXHyperpipeNetworkSGIX* - content.vb: Public Shared Function QueryHyperpipeNetworkSGIX(dpy As DisplayPtr, npipes As Integer) As GLXHyperpipeNetworkSGIX* - overload: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeNetworkSGIX* - nameWithType.vb: Glx.SGIX.QueryHyperpipeNetworkSGIX(DisplayPtr, Integer) - fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeNetworkSGIX(OpenTK.Graphics.Glx.DisplayPtr, Integer) - name.vb: QueryHyperpipeNetworkSGIX(DisplayPtr, Integer) -- uid: OpenTK.Graphics.Glx.Glx.SGIX.QueryMaxSwapBarriersSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Span{System.Int32}) - commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.QueryMaxSwapBarriersSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Span{System.Int32}) - id: QueryMaxSwapBarriersSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Span{System.Int32}) - parent: OpenTK.Graphics.Glx.Glx.SGIX - langs: - - csharp - - vb - name: QueryMaxSwapBarriersSGIX(DisplayPtr, int, Span) - nameWithType: Glx.SGIX.QueryMaxSwapBarriersSGIX(DisplayPtr, int, Span) - fullName: OpenTK.Graphics.Glx.Glx.SGIX.QueryMaxSwapBarriersSGIX(OpenTK.Graphics.Glx.DisplayPtr, int, System.Span) - type: Method - source: - id: QueryMaxSwapBarriersSGIX - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 1855 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_SGIX_swap_barrier] - - [entry point: glXQueryMaxSwapBarriersSGIX] - -
- example: [] - syntax: - content: public static bool QueryMaxSwapBarriersSGIX(DisplayPtr dpy, int screen, Span max) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: screen - type: System.Int32 - - id: max - type: System.Span{System.Int32} - return: - type: System.Boolean - content.vb: Public Shared Function QueryMaxSwapBarriersSGIX(dpy As DisplayPtr, screen As Integer, max As Span(Of Integer)) As Boolean - overload: OpenTK.Graphics.Glx.Glx.SGIX.QueryMaxSwapBarriersSGIX* - nameWithType.vb: Glx.SGIX.QueryMaxSwapBarriersSGIX(DisplayPtr, Integer, Span(Of Integer)) - fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.QueryMaxSwapBarriersSGIX(OpenTK.Graphics.Glx.DisplayPtr, Integer, System.Span(Of Integer)) - name.vb: QueryMaxSwapBarriersSGIX(DisplayPtr, Integer, Span(Of Integer)) -- uid: OpenTK.Graphics.Glx.Glx.SGIX.QueryMaxSwapBarriersSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32[]) - commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.QueryMaxSwapBarriersSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32[]) - id: QueryMaxSwapBarriersSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32[]) - parent: OpenTK.Graphics.Glx.Glx.SGIX - langs: - - csharp - - vb - name: QueryMaxSwapBarriersSGIX(DisplayPtr, int, int[]) - nameWithType: Glx.SGIX.QueryMaxSwapBarriersSGIX(DisplayPtr, int, int[]) - fullName: OpenTK.Graphics.Glx.Glx.SGIX.QueryMaxSwapBarriersSGIX(OpenTK.Graphics.Glx.DisplayPtr, int, int[]) - type: Method - source: - id: QueryMaxSwapBarriersSGIX - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 1865 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_SGIX_swap_barrier] - - [entry point: glXQueryMaxSwapBarriersSGIX] - -
- example: [] - syntax: - content: public static bool QueryMaxSwapBarriersSGIX(DisplayPtr dpy, int screen, int[] max) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: screen - type: System.Int32 - - id: max - type: System.Int32[] - return: - type: System.Boolean - content.vb: Public Shared Function QueryMaxSwapBarriersSGIX(dpy As DisplayPtr, screen As Integer, max As Integer()) As Boolean - overload: OpenTK.Graphics.Glx.Glx.SGIX.QueryMaxSwapBarriersSGIX* - nameWithType.vb: Glx.SGIX.QueryMaxSwapBarriersSGIX(DisplayPtr, Integer, Integer()) - fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.QueryMaxSwapBarriersSGIX(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer()) - name.vb: QueryMaxSwapBarriersSGIX(DisplayPtr, Integer, Integer()) -- uid: OpenTK.Graphics.Glx.Glx.SGIX.QueryMaxSwapBarriersSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32@) - commentId: M:OpenTK.Graphics.Glx.Glx.SGIX.QueryMaxSwapBarriersSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32@) - id: QueryMaxSwapBarriersSGIX(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32@) - parent: OpenTK.Graphics.Glx.Glx.SGIX - langs: - - csharp - - vb - name: QueryMaxSwapBarriersSGIX(DisplayPtr, int, ref int) - nameWithType: Glx.SGIX.QueryMaxSwapBarriersSGIX(DisplayPtr, int, ref int) - fullName: OpenTK.Graphics.Glx.Glx.SGIX.QueryMaxSwapBarriersSGIX(OpenTK.Graphics.Glx.DisplayPtr, int, ref int) - type: Method - source: - id: QueryMaxSwapBarriersSGIX - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 1875 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_SGIX_swap_barrier] - - [entry point: glXQueryMaxSwapBarriersSGIX] - -
- example: [] - syntax: - content: public static bool QueryMaxSwapBarriersSGIX(DisplayPtr dpy, int screen, ref int max) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: screen - type: System.Int32 - - id: max - type: System.Int32 - return: - type: System.Boolean - content.vb: Public Shared Function QueryMaxSwapBarriersSGIX(dpy As DisplayPtr, screen As Integer, max As Integer) As Boolean - overload: OpenTK.Graphics.Glx.Glx.SGIX.QueryMaxSwapBarriersSGIX* - nameWithType.vb: Glx.SGIX.QueryMaxSwapBarriersSGIX(DisplayPtr, Integer, Integer) - fullName.vb: OpenTK.Graphics.Glx.Glx.SGIX.QueryMaxSwapBarriersSGIX(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer) - name.vb: QueryMaxSwapBarriersSGIX(DisplayPtr, Integer, Integer) -references: -- uid: OpenTK.Graphics.Glx - commentId: N:OpenTK.Graphics.Glx - href: OpenTK.html - name: OpenTK.Graphics.Glx - nameWithType: OpenTK.Graphics.Glx - fullName: OpenTK.Graphics.Glx - spec.csharp: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Glx - name: Glx - href: OpenTK.Graphics.Glx.html - spec.vb: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Glx - name: Glx - href: OpenTK.Graphics.Glx.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: System.Object.Equals(System.Object) - commentId: M:System.Object.Equals(System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - name: Equals(object) - nameWithType: object.Equals(object) - fullName: object.Equals(object) - nameWithType.vb: Object.Equals(Object) - fullName.vb: Object.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetHashCode - commentId: M:System.Object.GetHashCode - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - name: GetHashCode() - nameWithType: object.GetHashCode() - fullName: object.GetHashCode() - nameWithType.vb: Object.GetHashCode() - fullName.vb: Object.GetHashCode() - spec.csharp: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.MemberwiseClone - commentId: M:System.Object.MemberwiseClone - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - name: MemberwiseClone() - nameWithType: object.MemberwiseClone() - fullName: object.MemberwiseClone() - nameWithType.vb: Object.MemberwiseClone() - fullName.vb: Object.MemberwiseClone() - spec.csharp: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) - spec.vb: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.ToString - commentId: M:System.Object.ToString - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - name: ToString() - nameWithType: object.ToString() - fullName: object.ToString() - nameWithType.vb: Object.ToString() - fullName.vb: Object.ToString() - spec.csharp: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) - spec.vb: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: OpenTK.Graphics.Glx.Glx.SGIX.BindChannelToWindowSGIX* - commentId: Overload:OpenTK.Graphics.Glx.Glx.SGIX.BindChannelToWindowSGIX - href: OpenTK.Graphics.Glx.Glx.SGIX.html#OpenTK_Graphics_Glx_Glx_SGIX_BindChannelToWindowSGIX_OpenTK_Graphics_Glx_DisplayPtr_System_Int32_System_Int32_OpenTK_Graphics_Glx_Window_ - name: BindChannelToWindowSGIX - nameWithType: Glx.SGIX.BindChannelToWindowSGIX - fullName: OpenTK.Graphics.Glx.Glx.SGIX.BindChannelToWindowSGIX -- uid: OpenTK.Graphics.Glx.DisplayPtr - commentId: T:OpenTK.Graphics.Glx.DisplayPtr - parent: OpenTK.Graphics.Glx - href: OpenTK.Graphics.Glx.DisplayPtr.html - name: DisplayPtr - nameWithType: DisplayPtr - fullName: OpenTK.Graphics.Glx.DisplayPtr -- uid: System.Int32 - commentId: T:System.Int32 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - name: int - nameWithType: int - fullName: int - nameWithType.vb: Integer - fullName.vb: Integer - name.vb: Integer -- uid: OpenTK.Graphics.Glx.Window - commentId: T:OpenTK.Graphics.Glx.Window - parent: OpenTK.Graphics.Glx - href: OpenTK.Graphics.Glx.Window.html - name: Window - nameWithType: Window - fullName: OpenTK.Graphics.Glx.Window -- uid: OpenTK.Graphics.Glx.Glx.SGIX.BindHyperpipeSGIX* - commentId: Overload:OpenTK.Graphics.Glx.Glx.SGIX.BindHyperpipeSGIX - href: OpenTK.Graphics.Glx.Glx.SGIX.html#OpenTK_Graphics_Glx_Glx_SGIX_BindHyperpipeSGIX_OpenTK_Graphics_Glx_DisplayPtr_System_Int32_ - name: BindHyperpipeSGIX - nameWithType: Glx.SGIX.BindHyperpipeSGIX - fullName: OpenTK.Graphics.Glx.Glx.SGIX.BindHyperpipeSGIX -- uid: OpenTK.Graphics.Glx.Glx.SGIX.BindSwapBarrierSGIX* - commentId: Overload:OpenTK.Graphics.Glx.Glx.SGIX.BindSwapBarrierSGIX - href: OpenTK.Graphics.Glx.Glx.SGIX.html#OpenTK_Graphics_Glx_Glx_SGIX_BindSwapBarrierSGIX_OpenTK_Graphics_Glx_DisplayPtr_OpenTK_Graphics_Glx_GLXDrawable_System_Int32_ - name: BindSwapBarrierSGIX - nameWithType: Glx.SGIX.BindSwapBarrierSGIX - fullName: OpenTK.Graphics.Glx.Glx.SGIX.BindSwapBarrierSGIX -- uid: OpenTK.Graphics.Glx.GLXDrawable - commentId: T:OpenTK.Graphics.Glx.GLXDrawable - parent: OpenTK.Graphics.Glx - href: OpenTK.Graphics.Glx.GLXDrawable.html - name: GLXDrawable - nameWithType: GLXDrawable - fullName: OpenTK.Graphics.Glx.GLXDrawable -- uid: OpenTK.Graphics.Glx.Glx.SGIX.ChannelRectSGIX* - commentId: Overload:OpenTK.Graphics.Glx.Glx.SGIX.ChannelRectSGIX - href: OpenTK.Graphics.Glx.Glx.SGIX.html#OpenTK_Graphics_Glx_Glx_SGIX_ChannelRectSGIX_OpenTK_Graphics_Glx_DisplayPtr_System_Int32_System_Int32_System_Int32_System_Int32_System_Int32_System_Int32_ - name: ChannelRectSGIX - nameWithType: Glx.SGIX.ChannelRectSGIX - fullName: OpenTK.Graphics.Glx.Glx.SGIX.ChannelRectSGIX -- uid: OpenTK.Graphics.Glx.Glx.SGIX.ChannelRectSyncSGIX* - commentId: Overload:OpenTK.Graphics.Glx.Glx.SGIX.ChannelRectSyncSGIX - href: OpenTK.Graphics.Glx.Glx.SGIX.html#OpenTK_Graphics_Glx_Glx_SGIX_ChannelRectSyncSGIX_OpenTK_Graphics_Glx_DisplayPtr_System_Int32_System_Int32_OpenTK_Graphics_Glx_All_ - name: ChannelRectSyncSGIX - nameWithType: Glx.SGIX.ChannelRectSyncSGIX - fullName: OpenTK.Graphics.Glx.Glx.SGIX.ChannelRectSyncSGIX -- uid: OpenTK.Graphics.Glx.All - commentId: T:OpenTK.Graphics.Glx.All - parent: OpenTK.Graphics.Glx - href: OpenTK.Graphics.Glx.All.html - name: All - nameWithType: All - fullName: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.Glx.SGIX.ChooseFBConfigSGIX* - commentId: Overload:OpenTK.Graphics.Glx.Glx.SGIX.ChooseFBConfigSGIX - href: OpenTK.Graphics.Glx.Glx.SGIX.html#OpenTK_Graphics_Glx_Glx_SGIX_ChooseFBConfigSGIX_OpenTK_Graphics_Glx_DisplayPtr_System_Int32_System_Int32__System_Int32__ - name: ChooseFBConfigSGIX - nameWithType: Glx.SGIX.ChooseFBConfigSGIX - fullName: OpenTK.Graphics.Glx.Glx.SGIX.ChooseFBConfigSGIX -- uid: System.Int32* - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - name: int* - nameWithType: int* - fullName: int* - nameWithType.vb: Integer* - fullName.vb: Integer* - name.vb: Integer* - spec.csharp: - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '*' - spec.vb: - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '*' -- uid: OpenTK.Graphics.Glx.GLXFBConfigSGIX* - isExternal: true - href: OpenTK.Graphics.Glx.GLXFBConfigSGIX.html - name: GLXFBConfigSGIX* - nameWithType: GLXFBConfigSGIX* - fullName: OpenTK.Graphics.Glx.GLXFBConfigSGIX* - spec.csharp: - - uid: OpenTK.Graphics.Glx.GLXFBConfigSGIX - name: GLXFBConfigSGIX - href: OpenTK.Graphics.Glx.GLXFBConfigSGIX.html - - name: '*' - spec.vb: - - uid: OpenTK.Graphics.Glx.GLXFBConfigSGIX - name: GLXFBConfigSGIX - href: OpenTK.Graphics.Glx.GLXFBConfigSGIX.html - - name: '*' -- uid: OpenTK.Graphics.Glx.Glx.SGIX.CreateContextWithConfigSGIX* - commentId: Overload:OpenTK.Graphics.Glx.Glx.SGIX.CreateContextWithConfigSGIX - href: OpenTK.Graphics.Glx.Glx.SGIX.html#OpenTK_Graphics_Glx_Glx_SGIX_CreateContextWithConfigSGIX_OpenTK_Graphics_Glx_DisplayPtr_OpenTK_Graphics_Glx_GLXFBConfigSGIX_System_Int32_OpenTK_Graphics_Glx_GLXContext_System_Boolean_ - name: CreateContextWithConfigSGIX - nameWithType: Glx.SGIX.CreateContextWithConfigSGIX - fullName: OpenTK.Graphics.Glx.Glx.SGIX.CreateContextWithConfigSGIX -- uid: OpenTK.Graphics.Glx.GLXFBConfigSGIX - commentId: T:OpenTK.Graphics.Glx.GLXFBConfigSGIX - parent: OpenTK.Graphics.Glx - href: OpenTK.Graphics.Glx.GLXFBConfigSGIX.html - name: GLXFBConfigSGIX - nameWithType: GLXFBConfigSGIX - fullName: OpenTK.Graphics.Glx.GLXFBConfigSGIX -- uid: OpenTK.Graphics.Glx.GLXContext - commentId: T:OpenTK.Graphics.Glx.GLXContext - parent: OpenTK.Graphics.Glx - href: OpenTK.Graphics.Glx.GLXContext.html - name: GLXContext - nameWithType: GLXContext - fullName: OpenTK.Graphics.Glx.GLXContext -- uid: System.Boolean - commentId: T:System.Boolean - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - name: bool - nameWithType: bool - fullName: bool - nameWithType.vb: Boolean - fullName.vb: Boolean - name.vb: Boolean -- uid: OpenTK.Graphics.Glx.Glx.SGIX.CreateGLXPbufferSGIX* - commentId: Overload:OpenTK.Graphics.Glx.Glx.SGIX.CreateGLXPbufferSGIX - href: OpenTK.Graphics.Glx.Glx.SGIX.html#OpenTK_Graphics_Glx_Glx_SGIX_CreateGLXPbufferSGIX_OpenTK_Graphics_Glx_DisplayPtr_OpenTK_Graphics_Glx_GLXFBConfigSGIX_System_UInt32_System_UInt32_System_Int32__ - name: CreateGLXPbufferSGIX - nameWithType: Glx.SGIX.CreateGLXPbufferSGIX - fullName: OpenTK.Graphics.Glx.Glx.SGIX.CreateGLXPbufferSGIX -- uid: System.UInt32 - commentId: T:System.UInt32 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - name: uint - nameWithType: uint - fullName: uint - nameWithType.vb: UInteger - fullName.vb: UInteger - name.vb: UInteger -- uid: OpenTK.Graphics.Glx.GLXPbufferSGIX - commentId: T:OpenTK.Graphics.Glx.GLXPbufferSGIX - parent: OpenTK.Graphics.Glx - href: OpenTK.Graphics.Glx.GLXPbufferSGIX.html - name: GLXPbufferSGIX - nameWithType: GLXPbufferSGIX - fullName: OpenTK.Graphics.Glx.GLXPbufferSGIX -- uid: OpenTK.Graphics.Glx.Glx.SGIX.CreateGLXPixmapWithConfigSGIX* - commentId: Overload:OpenTK.Graphics.Glx.Glx.SGIX.CreateGLXPixmapWithConfigSGIX - href: OpenTK.Graphics.Glx.Glx.SGIX.html#OpenTK_Graphics_Glx_Glx_SGIX_CreateGLXPixmapWithConfigSGIX_OpenTK_Graphics_Glx_DisplayPtr_OpenTK_Graphics_Glx_GLXFBConfigSGIX_OpenTK_Graphics_Glx_Pixmap_ - name: CreateGLXPixmapWithConfigSGIX - nameWithType: Glx.SGIX.CreateGLXPixmapWithConfigSGIX - fullName: OpenTK.Graphics.Glx.Glx.SGIX.CreateGLXPixmapWithConfigSGIX -- uid: OpenTK.Graphics.Glx.Pixmap - commentId: T:OpenTK.Graphics.Glx.Pixmap - parent: OpenTK.Graphics.Glx - href: OpenTK.Graphics.Glx.Pixmap.html - name: Pixmap - nameWithType: Pixmap - fullName: OpenTK.Graphics.Glx.Pixmap -- uid: OpenTK.Graphics.Glx.GLXPixmap - commentId: T:OpenTK.Graphics.Glx.GLXPixmap - parent: OpenTK.Graphics.Glx - href: OpenTK.Graphics.Glx.GLXPixmap.html - name: GLXPixmap - nameWithType: GLXPixmap - fullName: OpenTK.Graphics.Glx.GLXPixmap -- uid: OpenTK.Graphics.Glx.Glx.SGIX.DestroyGLXPbufferSGIX* - commentId: Overload:OpenTK.Graphics.Glx.Glx.SGIX.DestroyGLXPbufferSGIX - href: OpenTK.Graphics.Glx.Glx.SGIX.html#OpenTK_Graphics_Glx_Glx_SGIX_DestroyGLXPbufferSGIX_OpenTK_Graphics_Glx_DisplayPtr_OpenTK_Graphics_Glx_GLXPbufferSGIX_ - name: DestroyGLXPbufferSGIX - nameWithType: Glx.SGIX.DestroyGLXPbufferSGIX - fullName: OpenTK.Graphics.Glx.Glx.SGIX.DestroyGLXPbufferSGIX -- uid: OpenTK.Graphics.Glx.Glx.SGIX.DestroyHyperpipeConfigSGIX* - commentId: Overload:OpenTK.Graphics.Glx.Glx.SGIX.DestroyHyperpipeConfigSGIX - href: OpenTK.Graphics.Glx.Glx.SGIX.html#OpenTK_Graphics_Glx_Glx_SGIX_DestroyHyperpipeConfigSGIX_OpenTK_Graphics_Glx_DisplayPtr_System_Int32_ - name: DestroyHyperpipeConfigSGIX - nameWithType: Glx.SGIX.DestroyHyperpipeConfigSGIX - fullName: OpenTK.Graphics.Glx.Glx.SGIX.DestroyHyperpipeConfigSGIX -- uid: OpenTK.Graphics.Glx.Glx.SGIX.GetFBConfigAttribSGIX* - commentId: Overload:OpenTK.Graphics.Glx.Glx.SGIX.GetFBConfigAttribSGIX - href: OpenTK.Graphics.Glx.Glx.SGIX.html#OpenTK_Graphics_Glx_Glx_SGIX_GetFBConfigAttribSGIX_OpenTK_Graphics_Glx_DisplayPtr_OpenTK_Graphics_Glx_GLXFBConfigSGIX_System_Int32_System_Int32__ - name: GetFBConfigAttribSGIX - nameWithType: Glx.SGIX.GetFBConfigAttribSGIX - fullName: OpenTK.Graphics.Glx.Glx.SGIX.GetFBConfigAttribSGIX -- uid: OpenTK.Graphics.Glx.Glx.SGIX.GetFBConfigFromVisualSGIX* - commentId: Overload:OpenTK.Graphics.Glx.Glx.SGIX.GetFBConfigFromVisualSGIX - href: OpenTK.Graphics.Glx.Glx.SGIX.html#OpenTK_Graphics_Glx_Glx_SGIX_GetFBConfigFromVisualSGIX_OpenTK_Graphics_Glx_DisplayPtr_OpenTK_Graphics_Glx_XVisualInfoPtr_ - name: GetFBConfigFromVisualSGIX - nameWithType: Glx.SGIX.GetFBConfigFromVisualSGIX - fullName: OpenTK.Graphics.Glx.Glx.SGIX.GetFBConfigFromVisualSGIX -- uid: OpenTK.Graphics.Glx.XVisualInfoPtr - commentId: T:OpenTK.Graphics.Glx.XVisualInfoPtr - parent: OpenTK.Graphics.Glx - href: OpenTK.Graphics.Glx.XVisualInfoPtr.html - name: XVisualInfoPtr - nameWithType: XVisualInfoPtr - fullName: OpenTK.Graphics.Glx.XVisualInfoPtr -- uid: OpenTK.Graphics.Glx.Glx.SGIX.GetSelectedEventSGIX* - commentId: Overload:OpenTK.Graphics.Glx.Glx.SGIX.GetSelectedEventSGIX - href: OpenTK.Graphics.Glx.Glx.SGIX.html#OpenTK_Graphics_Glx_Glx_SGIX_GetSelectedEventSGIX_OpenTK_Graphics_Glx_DisplayPtr_OpenTK_Graphics_Glx_GLXDrawable_System_UInt64__ - name: GetSelectedEventSGIX - nameWithType: Glx.SGIX.GetSelectedEventSGIX - fullName: OpenTK.Graphics.Glx.Glx.SGIX.GetSelectedEventSGIX -- uid: System.UInt64* - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint64 - name: ulong* - nameWithType: ulong* - fullName: ulong* - nameWithType.vb: ULong* - fullName.vb: ULong* - name.vb: ULong* - spec.csharp: - - uid: System.UInt64 - name: ulong - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint64 - - name: '*' - spec.vb: - - uid: System.UInt64 - name: ULong - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint64 - - name: '*' -- uid: OpenTK.Graphics.Glx.Glx.SGIX.GetVisualFromFBConfigSGIX* - commentId: Overload:OpenTK.Graphics.Glx.Glx.SGIX.GetVisualFromFBConfigSGIX - href: OpenTK.Graphics.Glx.Glx.SGIX.html#OpenTK_Graphics_Glx_Glx_SGIX_GetVisualFromFBConfigSGIX_OpenTK_Graphics_Glx_DisplayPtr_OpenTK_Graphics_Glx_GLXFBConfigSGIX_ - name: GetVisualFromFBConfigSGIX - nameWithType: Glx.SGIX.GetVisualFromFBConfigSGIX - fullName: OpenTK.Graphics.Glx.Glx.SGIX.GetVisualFromFBConfigSGIX -- uid: OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeAttribSGIX* - commentId: Overload:OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeAttribSGIX - href: OpenTK.Graphics.Glx.Glx.SGIX.html#OpenTK_Graphics_Glx_Glx_SGIX_HyperpipeAttribSGIX_OpenTK_Graphics_Glx_DisplayPtr_System_Int32_System_Int32_System_Int32_System_Void__ - name: HyperpipeAttribSGIX - nameWithType: Glx.SGIX.HyperpipeAttribSGIX - fullName: OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeAttribSGIX -- uid: System.Void* - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.void - name: void* - nameWithType: void* - fullName: void* - nameWithType.vb: Void* - fullName.vb: Void* - name.vb: Void* - spec.csharp: - - uid: System.Void - name: void - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.void - - name: '*' - spec.vb: - - uid: System.Void - name: Void - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.void - - name: '*' -- uid: OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeConfigSGIX* - commentId: Overload:OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeConfigSGIX - href: OpenTK.Graphics.Glx.Glx.SGIX.html#OpenTK_Graphics_Glx_Glx_SGIX_HyperpipeConfigSGIX_OpenTK_Graphics_Glx_DisplayPtr_System_Int32_System_Int32_OpenTK_Graphics_Glx_GLXHyperpipeConfigSGIX__System_Int32__ - name: HyperpipeConfigSGIX - nameWithType: Glx.SGIX.HyperpipeConfigSGIX - fullName: OpenTK.Graphics.Glx.Glx.SGIX.HyperpipeConfigSGIX -- uid: OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX* - isExternal: true - href: OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX.html - name: GLXHyperpipeConfigSGIX* - nameWithType: GLXHyperpipeConfigSGIX* - fullName: OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX* - spec.csharp: - - uid: OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX - name: GLXHyperpipeConfigSGIX - href: OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX.html - - name: '*' - spec.vb: - - uid: OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX - name: GLXHyperpipeConfigSGIX - href: OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX.html - - name: '*' -- uid: OpenTK.Graphics.Glx.Glx.SGIX.JoinSwapGroupSGIX* - commentId: Overload:OpenTK.Graphics.Glx.Glx.SGIX.JoinSwapGroupSGIX - href: OpenTK.Graphics.Glx.Glx.SGIX.html#OpenTK_Graphics_Glx_Glx_SGIX_JoinSwapGroupSGIX_OpenTK_Graphics_Glx_DisplayPtr_OpenTK_Graphics_Glx_GLXDrawable_OpenTK_Graphics_Glx_GLXDrawable_ - name: JoinSwapGroupSGIX - nameWithType: Glx.SGIX.JoinSwapGroupSGIX - fullName: OpenTK.Graphics.Glx.Glx.SGIX.JoinSwapGroupSGIX -- uid: OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelDeltasSGIX* - commentId: Overload:OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelDeltasSGIX - href: OpenTK.Graphics.Glx.Glx.SGIX.html#OpenTK_Graphics_Glx_Glx_SGIX_QueryChannelDeltasSGIX_OpenTK_Graphics_Glx_DisplayPtr_System_Int32_System_Int32_System_Int32__System_Int32__System_Int32__System_Int32__ - name: QueryChannelDeltasSGIX - nameWithType: Glx.SGIX.QueryChannelDeltasSGIX - fullName: OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelDeltasSGIX -- uid: OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelRectSGIX* - commentId: Overload:OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelRectSGIX - href: OpenTK.Graphics.Glx.Glx.SGIX.html#OpenTK_Graphics_Glx_Glx_SGIX_QueryChannelRectSGIX_OpenTK_Graphics_Glx_DisplayPtr_System_Int32_System_Int32_System_Int32__System_Int32__System_Int32__System_Int32__ - name: QueryChannelRectSGIX - nameWithType: Glx.SGIX.QueryChannelRectSGIX - fullName: OpenTK.Graphics.Glx.Glx.SGIX.QueryChannelRectSGIX -- uid: OpenTK.Graphics.Glx.Glx.SGIX.QueryGLXPbufferSGIX* - commentId: Overload:OpenTK.Graphics.Glx.Glx.SGIX.QueryGLXPbufferSGIX - href: OpenTK.Graphics.Glx.Glx.SGIX.html#OpenTK_Graphics_Glx_Glx_SGIX_QueryGLXPbufferSGIX_OpenTK_Graphics_Glx_DisplayPtr_OpenTK_Graphics_Glx_GLXPbufferSGIX_System_Int32_System_UInt32__ - name: QueryGLXPbufferSGIX - nameWithType: Glx.SGIX.QueryGLXPbufferSGIX - fullName: OpenTK.Graphics.Glx.Glx.SGIX.QueryGLXPbufferSGIX -- uid: System.UInt32* - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - name: uint* - nameWithType: uint* - fullName: uint* - nameWithType.vb: UInteger* - fullName.vb: UInteger* - name.vb: UInteger* - spec.csharp: - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: '*' - spec.vb: - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: '*' -- uid: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeAttribSGIX* - commentId: Overload:OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeAttribSGIX - href: OpenTK.Graphics.Glx.Glx.SGIX.html#OpenTK_Graphics_Glx_Glx_SGIX_QueryHyperpipeAttribSGIX_OpenTK_Graphics_Glx_DisplayPtr_System_Int32_System_Int32_System_Int32_System_Void__ - name: QueryHyperpipeAttribSGIX - nameWithType: Glx.SGIX.QueryHyperpipeAttribSGIX - fullName: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeAttribSGIX -- uid: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeBestAttribSGIX* - commentId: Overload:OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeBestAttribSGIX - href: OpenTK.Graphics.Glx.Glx.SGIX.html#OpenTK_Graphics_Glx_Glx_SGIX_QueryHyperpipeBestAttribSGIX_OpenTK_Graphics_Glx_DisplayPtr_System_Int32_System_Int32_System_Int32_System_Void__System_Void__ - name: QueryHyperpipeBestAttribSGIX - nameWithType: Glx.SGIX.QueryHyperpipeBestAttribSGIX - fullName: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeBestAttribSGIX -- uid: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeConfigSGIX* - commentId: Overload:OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeConfigSGIX - href: OpenTK.Graphics.Glx.Glx.SGIX.html#OpenTK_Graphics_Glx_Glx_SGIX_QueryHyperpipeConfigSGIX_OpenTK_Graphics_Glx_DisplayPtr_System_Int32_System_Int32__ - name: QueryHyperpipeConfigSGIX - nameWithType: Glx.SGIX.QueryHyperpipeConfigSGIX - fullName: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeConfigSGIX -- uid: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeNetworkSGIX* - commentId: Overload:OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeNetworkSGIX - href: OpenTK.Graphics.Glx.Glx.SGIX.html#OpenTK_Graphics_Glx_Glx_SGIX_QueryHyperpipeNetworkSGIX_OpenTK_Graphics_Glx_DisplayPtr_System_Int32__ - name: QueryHyperpipeNetworkSGIX - nameWithType: Glx.SGIX.QueryHyperpipeNetworkSGIX - fullName: OpenTK.Graphics.Glx.Glx.SGIX.QueryHyperpipeNetworkSGIX -- uid: OpenTK.Graphics.Glx.GLXHyperpipeNetworkSGIX* - isExternal: true - href: OpenTK.Graphics.Glx.GLXHyperpipeNetworkSGIX.html - name: GLXHyperpipeNetworkSGIX* - nameWithType: GLXHyperpipeNetworkSGIX* - fullName: OpenTK.Graphics.Glx.GLXHyperpipeNetworkSGIX* - spec.csharp: - - uid: OpenTK.Graphics.Glx.GLXHyperpipeNetworkSGIX - name: GLXHyperpipeNetworkSGIX - href: OpenTK.Graphics.Glx.GLXHyperpipeNetworkSGIX.html - - name: '*' - spec.vb: - - uid: OpenTK.Graphics.Glx.GLXHyperpipeNetworkSGIX - name: GLXHyperpipeNetworkSGIX - href: OpenTK.Graphics.Glx.GLXHyperpipeNetworkSGIX.html - - name: '*' -- uid: OpenTK.Graphics.Glx.Glx.SGIX.QueryMaxSwapBarriersSGIX* - commentId: Overload:OpenTK.Graphics.Glx.Glx.SGIX.QueryMaxSwapBarriersSGIX - href: OpenTK.Graphics.Glx.Glx.SGIX.html#OpenTK_Graphics_Glx_Glx_SGIX_QueryMaxSwapBarriersSGIX_OpenTK_Graphics_Glx_DisplayPtr_System_Int32_System_Int32__ - name: QueryMaxSwapBarriersSGIX - nameWithType: Glx.SGIX.QueryMaxSwapBarriersSGIX - fullName: OpenTK.Graphics.Glx.Glx.SGIX.QueryMaxSwapBarriersSGIX -- uid: OpenTK.Graphics.Glx.Glx.SGIX.SelectEventSGIX* - commentId: Overload:OpenTK.Graphics.Glx.Glx.SGIX.SelectEventSGIX - href: OpenTK.Graphics.Glx.Glx.SGIX.html#OpenTK_Graphics_Glx_Glx_SGIX_SelectEventSGIX_OpenTK_Graphics_Glx_DisplayPtr_OpenTK_Graphics_Glx_GLXDrawable_System_UInt64_ - name: SelectEventSGIX - nameWithType: Glx.SGIX.SelectEventSGIX - fullName: OpenTK.Graphics.Glx.Glx.SGIX.SelectEventSGIX -- uid: System.UInt64 - commentId: T:System.UInt64 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint64 - name: ulong - nameWithType: ulong - fullName: ulong - nameWithType.vb: ULong - fullName.vb: ULong - name.vb: ULong -- uid: System.Span{System.Int32} - commentId: T:System.Span{System.Int32} - parent: System - definition: System.Span`1 - href: https://learn.microsoft.com/dotnet/api/system.span-1 - name: Span - nameWithType: Span - fullName: System.Span - nameWithType.vb: Span(Of Integer) - fullName.vb: System.Span(Of Integer) - name.vb: Span(Of Integer) - spec.csharp: - - uid: System.Span`1 - name: Span - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.span-1 - - name: < - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '>' - spec.vb: - - uid: System.Span`1 - name: Span - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.span-1 - - name: ( - - name: Of - - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) -- uid: System.Span`1 - commentId: T:System.Span`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.span-1 - name: Span - nameWithType: Span - fullName: System.Span - nameWithType.vb: Span(Of T) - fullName.vb: System.Span(Of T) - name.vb: Span(Of T) - spec.csharp: - - uid: System.Span`1 - name: Span - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.span-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.Span`1 - name: Span - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.span-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: System.Int32[] - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - name: int[] - nameWithType: int[] - fullName: int[] - nameWithType.vb: Integer() - fullName.vb: Integer() - name.vb: Integer() - spec.csharp: - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '[' - - name: ']' - spec.vb: - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ( - - name: ) -- uid: System.Span{System.UInt64} - commentId: T:System.Span{System.UInt64} - parent: System - definition: System.Span`1 - href: https://learn.microsoft.com/dotnet/api/system.span-1 - name: Span - nameWithType: Span - fullName: System.Span - nameWithType.vb: Span(Of ULong) - fullName.vb: System.Span(Of ULong) - name.vb: Span(Of ULong) - spec.csharp: - - uid: System.Span`1 - name: Span - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.span-1 - - name: < - - uid: System.UInt64 - name: ulong - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint64 - - name: '>' - spec.vb: - - uid: System.Span`1 - name: Span - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.span-1 - - name: ( - - name: Of - - name: " " - - uid: System.UInt64 - name: ULong - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint64 - - name: ) -- uid: System.UInt64[] - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint64 - name: ulong[] - nameWithType: ulong[] - fullName: ulong[] - nameWithType.vb: ULong() - fullName.vb: ULong() - name.vb: ULong() - spec.csharp: - - uid: System.UInt64 - name: ulong - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint64 - - name: '[' - - name: ']' - spec.vb: - - uid: System.UInt64 - name: ULong - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint64 - - name: ( - - name: ) -- uid: System.IntPtr - commentId: T:System.IntPtr - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: nint - nameWithType: nint - fullName: nint - nameWithType.vb: IntPtr - fullName.vb: System.IntPtr - name.vb: IntPtr -- uid: System.Span{{T1}} - commentId: T:System.Span{``0} - parent: System - definition: System.Span`1 - href: https://learn.microsoft.com/dotnet/api/system.span-1 - name: Span - nameWithType: Span - fullName: System.Span - nameWithType.vb: Span(Of T1) - fullName.vb: System.Span(Of T1) - name.vb: Span(Of T1) - spec.csharp: - - uid: System.Span`1 - name: Span - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.span-1 - - name: < - - name: T1 - - name: '>' - spec.vb: - - uid: System.Span`1 - name: Span - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.span-1 - - name: ( - - name: Of - - name: " " - - name: T1 - - name: ) -- uid: '{T1}[]' - isExternal: true - name: T1[] - nameWithType: T1[] - fullName: T1[] - nameWithType.vb: T1() - fullName.vb: T1() - name.vb: T1() - spec.csharp: - - name: T1 - - name: '[' - - name: ']' - spec.vb: - - name: T1 - - name: ( - - name: ) -- uid: '{T1}' - commentId: '!:T1' - definition: T1 - name: T1 - nameWithType: T1 - fullName: T1 -- uid: T1 - name: T1 - nameWithType: T1 - fullName: T1 -- uid: System.Span{OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX} - commentId: T:System.Span{OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX} - parent: System - definition: System.Span`1 - href: https://learn.microsoft.com/dotnet/api/system.span-1 - name: Span - nameWithType: Span - fullName: System.Span - nameWithType.vb: Span(Of GLXHyperpipeConfigSGIX) - fullName.vb: System.Span(Of OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX) - name.vb: Span(Of GLXHyperpipeConfigSGIX) - spec.csharp: - - uid: System.Span`1 - name: Span - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.span-1 - - name: < - - uid: OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX - name: GLXHyperpipeConfigSGIX - href: OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX.html - - name: '>' - spec.vb: - - uid: System.Span`1 - name: Span - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.span-1 - - name: ( - - name: Of - - name: " " - - uid: OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX - name: GLXHyperpipeConfigSGIX - href: OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX.html - - name: ) -- uid: OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX[] - isExternal: true - href: OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX.html - name: GLXHyperpipeConfigSGIX[] - nameWithType: GLXHyperpipeConfigSGIX[] - fullName: OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX[] - nameWithType.vb: GLXHyperpipeConfigSGIX() - fullName.vb: OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX() - name.vb: GLXHyperpipeConfigSGIX() - spec.csharp: - - uid: OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX - name: GLXHyperpipeConfigSGIX - href: OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX.html - - name: '[' - - name: ']' - spec.vb: - - uid: OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX - name: GLXHyperpipeConfigSGIX - href: OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX.html - - name: ( - - name: ) -- uid: OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX - commentId: T:OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX - parent: OpenTK.Graphics.Glx - href: OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX.html - name: GLXHyperpipeConfigSGIX - nameWithType: GLXHyperpipeConfigSGIX - fullName: OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX -- uid: System.Span{System.UInt32} - commentId: T:System.Span{System.UInt32} - parent: System - definition: System.Span`1 - href: https://learn.microsoft.com/dotnet/api/system.span-1 - name: Span - nameWithType: Span - fullName: System.Span - nameWithType.vb: Span(Of UInteger) - fullName.vb: System.Span(Of UInteger) - name.vb: Span(Of UInteger) - spec.csharp: - - uid: System.Span`1 - name: Span - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.span-1 - - name: < - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: '>' - spec.vb: - - uid: System.Span`1 - name: Span - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.span-1 - - name: ( - - name: Of - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: System.UInt32[] - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - name: uint[] - nameWithType: uint[] - fullName: uint[] - nameWithType.vb: UInteger() - fullName.vb: UInteger() - name.vb: UInteger() - spec.csharp: - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: '[' - - name: ']' - spec.vb: - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ( - - name: ) -- uid: System.Span{{T2}} - commentId: T:System.Span{``1} - parent: System - definition: System.Span`1 - href: https://learn.microsoft.com/dotnet/api/system.span-1 - name: Span - nameWithType: Span - fullName: System.Span - nameWithType.vb: Span(Of T2) - fullName.vb: System.Span(Of T2) - name.vb: Span(Of T2) - spec.csharp: - - uid: System.Span`1 - name: Span - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.span-1 - - name: < - - name: T2 - - name: '>' - spec.vb: - - uid: System.Span`1 - name: Span - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.span-1 - - name: ( - - name: Of - - name: " " - - name: T2 - - name: ) -- uid: '{T2}[]' - isExternal: true - name: T2[] - nameWithType: T2[] - fullName: T2[] - nameWithType.vb: T2() - fullName.vb: T2() - name.vb: T2() - spec.csharp: - - name: T2 - - name: '[' - - name: ']' - spec.vb: - - name: T2 - - name: ( - - name: ) -- uid: '{T2}' - commentId: '!:T2' - definition: T2 - name: T2 - nameWithType: T2 - fullName: T2 -- uid: T2 - commentId: '!:T2' - name: T2 - nameWithType: T2 - fullName: T2 diff --git a/api/OpenTK.Graphics.Glx.Glx.SUN.yml b/api/OpenTK.Graphics.Glx.Glx.SUN.yml deleted file mode 100644 index f697cefc..00000000 --- a/api/OpenTK.Graphics.Glx.Glx.SUN.yml +++ /dev/null @@ -1,629 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: OpenTK.Graphics.Glx.Glx.SUN - commentId: T:OpenTK.Graphics.Glx.Glx.SUN - id: Glx.SUN - parent: OpenTK.Graphics.Glx - children: - - OpenTK.Graphics.Glx.Glx.SUN.GetTransparentIndexSUN(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.Window,OpenTK.Graphics.Glx.Window,System.Span{System.UInt64}) - - OpenTK.Graphics.Glx.Glx.SUN.GetTransparentIndexSUN(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.Window,OpenTK.Graphics.Glx.Window,System.UInt64*) - - OpenTK.Graphics.Glx.Glx.SUN.GetTransparentIndexSUN(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.Window,OpenTK.Graphics.Glx.Window,System.UInt64@) - - OpenTK.Graphics.Glx.Glx.SUN.GetTransparentIndexSUN(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.Window,OpenTK.Graphics.Glx.Window,System.UInt64[]) - langs: - - csharp - - vb - name: Glx.SUN - nameWithType: Glx.SUN - fullName: OpenTK.Graphics.Glx.Glx.SUN - type: Class - source: - id: SUN - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 1885 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: SUN extensions. - example: [] - syntax: - content: public static class Glx.SUN - content.vb: Public Module Glx.SUN - inheritance: - - System.Object - inheritedMembers: - - System.Object.Equals(System.Object) - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetHashCode - - System.Object.GetType - - System.Object.MemberwiseClone - - System.Object.ReferenceEquals(System.Object,System.Object) - - System.Object.ToString -- uid: OpenTK.Graphics.Glx.Glx.SUN.GetTransparentIndexSUN(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.Window,OpenTK.Graphics.Glx.Window,System.UInt64*) - commentId: M:OpenTK.Graphics.Glx.Glx.SUN.GetTransparentIndexSUN(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.Window,OpenTK.Graphics.Glx.Window,System.UInt64*) - id: GetTransparentIndexSUN(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.Window,OpenTK.Graphics.Glx.Window,System.UInt64*) - parent: OpenTK.Graphics.Glx.Glx.SUN - langs: - - csharp - - vb - name: GetTransparentIndexSUN(DisplayPtr, Window, Window, ulong*) - nameWithType: Glx.SUN.GetTransparentIndexSUN(DisplayPtr, Window, Window, ulong*) - fullName: OpenTK.Graphics.Glx.Glx.SUN.GetTransparentIndexSUN(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.Window, OpenTK.Graphics.Glx.Window, ulong*) - type: Method - source: - id: GetTransparentIndexSUN - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs - startLine: 437 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_SUN_get_transparent_index] - - [entry point: glXGetTransparentIndexSUN] - -
- example: [] - syntax: - content: public static int GetTransparentIndexSUN(DisplayPtr dpy, Window overlay, Window underlay, ulong* pTransparentIndex) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: overlay - type: OpenTK.Graphics.Glx.Window - - id: underlay - type: OpenTK.Graphics.Glx.Window - - id: pTransparentIndex - type: System.UInt64* - return: - type: System.Int32 - content.vb: Public Shared Function GetTransparentIndexSUN(dpy As DisplayPtr, overlay As Window, underlay As Window, pTransparentIndex As ULong*) As Integer - overload: OpenTK.Graphics.Glx.Glx.SUN.GetTransparentIndexSUN* - nameWithType.vb: Glx.SUN.GetTransparentIndexSUN(DisplayPtr, Window, Window, ULong*) - fullName.vb: OpenTK.Graphics.Glx.Glx.SUN.GetTransparentIndexSUN(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.Window, OpenTK.Graphics.Glx.Window, ULong*) - name.vb: GetTransparentIndexSUN(DisplayPtr, Window, Window, ULong*) -- uid: OpenTK.Graphics.Glx.Glx.SUN.GetTransparentIndexSUN(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.Window,OpenTK.Graphics.Glx.Window,System.Span{System.UInt64}) - commentId: M:OpenTK.Graphics.Glx.Glx.SUN.GetTransparentIndexSUN(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.Window,OpenTK.Graphics.Glx.Window,System.Span{System.UInt64}) - id: GetTransparentIndexSUN(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.Window,OpenTK.Graphics.Glx.Window,System.Span{System.UInt64}) - parent: OpenTK.Graphics.Glx.Glx.SUN - langs: - - csharp - - vb - name: GetTransparentIndexSUN(DisplayPtr, Window, Window, Span) - nameWithType: Glx.SUN.GetTransparentIndexSUN(DisplayPtr, Window, Window, Span) - fullName: OpenTK.Graphics.Glx.Glx.SUN.GetTransparentIndexSUN(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.Window, OpenTK.Graphics.Glx.Window, System.Span) - type: Method - source: - id: GetTransparentIndexSUN - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 1888 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_SUN_get_transparent_index] - - [entry point: glXGetTransparentIndexSUN] - -
- example: [] - syntax: - content: public static int GetTransparentIndexSUN(DisplayPtr dpy, Window overlay, Window underlay, Span pTransparentIndex) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: overlay - type: OpenTK.Graphics.Glx.Window - - id: underlay - type: OpenTK.Graphics.Glx.Window - - id: pTransparentIndex - type: System.Span{System.UInt64} - return: - type: System.Int32 - content.vb: Public Shared Function GetTransparentIndexSUN(dpy As DisplayPtr, overlay As Window, underlay As Window, pTransparentIndex As Span(Of ULong)) As Integer - overload: OpenTK.Graphics.Glx.Glx.SUN.GetTransparentIndexSUN* - nameWithType.vb: Glx.SUN.GetTransparentIndexSUN(DisplayPtr, Window, Window, Span(Of ULong)) - fullName.vb: OpenTK.Graphics.Glx.Glx.SUN.GetTransparentIndexSUN(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.Window, OpenTK.Graphics.Glx.Window, System.Span(Of ULong)) - name.vb: GetTransparentIndexSUN(DisplayPtr, Window, Window, Span(Of ULong)) -- uid: OpenTK.Graphics.Glx.Glx.SUN.GetTransparentIndexSUN(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.Window,OpenTK.Graphics.Glx.Window,System.UInt64[]) - commentId: M:OpenTK.Graphics.Glx.Glx.SUN.GetTransparentIndexSUN(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.Window,OpenTK.Graphics.Glx.Window,System.UInt64[]) - id: GetTransparentIndexSUN(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.Window,OpenTK.Graphics.Glx.Window,System.UInt64[]) - parent: OpenTK.Graphics.Glx.Glx.SUN - langs: - - csharp - - vb - name: GetTransparentIndexSUN(DisplayPtr, Window, Window, ulong[]) - nameWithType: Glx.SUN.GetTransparentIndexSUN(DisplayPtr, Window, Window, ulong[]) - fullName: OpenTK.Graphics.Glx.Glx.SUN.GetTransparentIndexSUN(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.Window, OpenTK.Graphics.Glx.Window, ulong[]) - type: Method - source: - id: GetTransparentIndexSUN - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 1898 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_SUN_get_transparent_index] - - [entry point: glXGetTransparentIndexSUN] - -
- example: [] - syntax: - content: public static int GetTransparentIndexSUN(DisplayPtr dpy, Window overlay, Window underlay, ulong[] pTransparentIndex) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: overlay - type: OpenTK.Graphics.Glx.Window - - id: underlay - type: OpenTK.Graphics.Glx.Window - - id: pTransparentIndex - type: System.UInt64[] - return: - type: System.Int32 - content.vb: Public Shared Function GetTransparentIndexSUN(dpy As DisplayPtr, overlay As Window, underlay As Window, pTransparentIndex As ULong()) As Integer - overload: OpenTK.Graphics.Glx.Glx.SUN.GetTransparentIndexSUN* - nameWithType.vb: Glx.SUN.GetTransparentIndexSUN(DisplayPtr, Window, Window, ULong()) - fullName.vb: OpenTK.Graphics.Glx.Glx.SUN.GetTransparentIndexSUN(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.Window, OpenTK.Graphics.Glx.Window, ULong()) - name.vb: GetTransparentIndexSUN(DisplayPtr, Window, Window, ULong()) -- uid: OpenTK.Graphics.Glx.Glx.SUN.GetTransparentIndexSUN(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.Window,OpenTK.Graphics.Glx.Window,System.UInt64@) - commentId: M:OpenTK.Graphics.Glx.Glx.SUN.GetTransparentIndexSUN(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.Window,OpenTK.Graphics.Glx.Window,System.UInt64@) - id: GetTransparentIndexSUN(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.Window,OpenTK.Graphics.Glx.Window,System.UInt64@) - parent: OpenTK.Graphics.Glx.Glx.SUN - langs: - - csharp - - vb - name: GetTransparentIndexSUN(DisplayPtr, Window, Window, ref ulong) - nameWithType: Glx.SUN.GetTransparentIndexSUN(DisplayPtr, Window, Window, ref ulong) - fullName: OpenTK.Graphics.Glx.Glx.SUN.GetTransparentIndexSUN(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.Window, OpenTK.Graphics.Glx.Window, ref ulong) - type: Method - source: - id: GetTransparentIndexSUN - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 1908 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: GLX_SUN_get_transparent_index] - - [entry point: glXGetTransparentIndexSUN] - -
- example: [] - syntax: - content: public static int GetTransparentIndexSUN(DisplayPtr dpy, Window overlay, Window underlay, ref ulong pTransparentIndex) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: overlay - type: OpenTK.Graphics.Glx.Window - - id: underlay - type: OpenTK.Graphics.Glx.Window - - id: pTransparentIndex - type: System.UInt64 - return: - type: System.Int32 - content.vb: Public Shared Function GetTransparentIndexSUN(dpy As DisplayPtr, overlay As Window, underlay As Window, pTransparentIndex As ULong) As Integer - overload: OpenTK.Graphics.Glx.Glx.SUN.GetTransparentIndexSUN* - nameWithType.vb: Glx.SUN.GetTransparentIndexSUN(DisplayPtr, Window, Window, ULong) - fullName.vb: OpenTK.Graphics.Glx.Glx.SUN.GetTransparentIndexSUN(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.Window, OpenTK.Graphics.Glx.Window, ULong) - name.vb: GetTransparentIndexSUN(DisplayPtr, Window, Window, ULong) -references: -- uid: OpenTK.Graphics.Glx - commentId: N:OpenTK.Graphics.Glx - href: OpenTK.html - name: OpenTK.Graphics.Glx - nameWithType: OpenTK.Graphics.Glx - fullName: OpenTK.Graphics.Glx - spec.csharp: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Glx - name: Glx - href: OpenTK.Graphics.Glx.html - spec.vb: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Glx - name: Glx - href: OpenTK.Graphics.Glx.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: System.Object.Equals(System.Object) - commentId: M:System.Object.Equals(System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - name: Equals(object) - nameWithType: object.Equals(object) - fullName: object.Equals(object) - nameWithType.vb: Object.Equals(Object) - fullName.vb: Object.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetHashCode - commentId: M:System.Object.GetHashCode - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - name: GetHashCode() - nameWithType: object.GetHashCode() - fullName: object.GetHashCode() - nameWithType.vb: Object.GetHashCode() - fullName.vb: Object.GetHashCode() - spec.csharp: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.MemberwiseClone - commentId: M:System.Object.MemberwiseClone - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - name: MemberwiseClone() - nameWithType: object.MemberwiseClone() - fullName: object.MemberwiseClone() - nameWithType.vb: Object.MemberwiseClone() - fullName.vb: Object.MemberwiseClone() - spec.csharp: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) - spec.vb: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.ToString - commentId: M:System.Object.ToString - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - name: ToString() - nameWithType: object.ToString() - fullName: object.ToString() - nameWithType.vb: Object.ToString() - fullName.vb: Object.ToString() - spec.csharp: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) - spec.vb: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: OpenTK.Graphics.Glx.Glx.SUN.GetTransparentIndexSUN* - commentId: Overload:OpenTK.Graphics.Glx.Glx.SUN.GetTransparentIndexSUN - href: OpenTK.Graphics.Glx.Glx.SUN.html#OpenTK_Graphics_Glx_Glx_SUN_GetTransparentIndexSUN_OpenTK_Graphics_Glx_DisplayPtr_OpenTK_Graphics_Glx_Window_OpenTK_Graphics_Glx_Window_System_UInt64__ - name: GetTransparentIndexSUN - nameWithType: Glx.SUN.GetTransparentIndexSUN - fullName: OpenTK.Graphics.Glx.Glx.SUN.GetTransparentIndexSUN -- uid: OpenTK.Graphics.Glx.DisplayPtr - commentId: T:OpenTK.Graphics.Glx.DisplayPtr - parent: OpenTK.Graphics.Glx - href: OpenTK.Graphics.Glx.DisplayPtr.html - name: DisplayPtr - nameWithType: DisplayPtr - fullName: OpenTK.Graphics.Glx.DisplayPtr -- uid: OpenTK.Graphics.Glx.Window - commentId: T:OpenTK.Graphics.Glx.Window - parent: OpenTK.Graphics.Glx - href: OpenTK.Graphics.Glx.Window.html - name: Window - nameWithType: Window - fullName: OpenTK.Graphics.Glx.Window -- uid: System.UInt64* - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint64 - name: ulong* - nameWithType: ulong* - fullName: ulong* - nameWithType.vb: ULong* - fullName.vb: ULong* - name.vb: ULong* - spec.csharp: - - uid: System.UInt64 - name: ulong - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint64 - - name: '*' - spec.vb: - - uid: System.UInt64 - name: ULong - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint64 - - name: '*' -- uid: System.Int32 - commentId: T:System.Int32 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - name: int - nameWithType: int - fullName: int - nameWithType.vb: Integer - fullName.vb: Integer - name.vb: Integer -- uid: System.Span{System.UInt64} - commentId: T:System.Span{System.UInt64} - parent: System - definition: System.Span`1 - href: https://learn.microsoft.com/dotnet/api/system.span-1 - name: Span - nameWithType: Span - fullName: System.Span - nameWithType.vb: Span(Of ULong) - fullName.vb: System.Span(Of ULong) - name.vb: Span(Of ULong) - spec.csharp: - - uid: System.Span`1 - name: Span - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.span-1 - - name: < - - uid: System.UInt64 - name: ulong - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint64 - - name: '>' - spec.vb: - - uid: System.Span`1 - name: Span - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.span-1 - - name: ( - - name: Of - - name: " " - - uid: System.UInt64 - name: ULong - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint64 - - name: ) -- uid: System.Span`1 - commentId: T:System.Span`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.span-1 - name: Span - nameWithType: Span - fullName: System.Span - nameWithType.vb: Span(Of T) - fullName.vb: System.Span(Of T) - name.vb: Span(Of T) - spec.csharp: - - uid: System.Span`1 - name: Span - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.span-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.Span`1 - name: Span - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.span-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: System.UInt64[] - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint64 - name: ulong[] - nameWithType: ulong[] - fullName: ulong[] - nameWithType.vb: ULong() - fullName.vb: ULong() - name.vb: ULong() - spec.csharp: - - uid: System.UInt64 - name: ulong - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint64 - - name: '[' - - name: ']' - spec.vb: - - uid: System.UInt64 - name: ULong - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint64 - - name: ( - - name: ) -- uid: System.UInt64 - commentId: T:System.UInt64 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint64 - name: ulong - nameWithType: ulong - fullName: ulong - nameWithType.vb: ULong - fullName.vb: ULong - name.vb: ULong diff --git a/api/OpenTK.Graphics.Glx.Glx.yml b/api/OpenTK.Graphics.Glx.Glx.yml deleted file mode 100644 index bec756be..00000000 --- a/api/OpenTK.Graphics.Glx.Glx.yml +++ /dev/null @@ -1,4544 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: OpenTK.Graphics.Glx.Glx - commentId: T:OpenTK.Graphics.Glx.Glx - id: Glx - parent: OpenTK.Graphics.Glx - children: - - OpenTK.Graphics.Glx.Glx.ChooseFBConfig(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32*,System.Int32*) - - OpenTK.Graphics.Glx.Glx.ChooseFBConfig(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32@,System.Int32@) - - OpenTK.Graphics.Glx.Glx.ChooseFBConfig(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32[],System.Int32[]) - - OpenTK.Graphics.Glx.Glx.ChooseFBConfig(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.ReadOnlySpan{System.Int32},System.Span{System.Int32}) - - OpenTK.Graphics.Glx.Glx.ChooseVisual(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32*) - - OpenTK.Graphics.Glx.Glx.ChooseVisual(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32@) - - OpenTK.Graphics.Glx.Glx.ChooseVisual(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32[]) - - OpenTK.Graphics.Glx.Glx.ChooseVisual(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Span{System.Int32}) - - OpenTK.Graphics.Glx.Glx.CopyContext(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext,OpenTK.Graphics.Glx.GLXContext,System.UInt64) - - OpenTK.Graphics.Glx.Glx.CreateContext(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.XVisualInfoPtr,OpenTK.Graphics.Glx.GLXContext,System.Boolean) - - OpenTK.Graphics.Glx.Glx.CreateGLXPixmap(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.XVisualInfoPtr,OpenTK.Graphics.Glx.Pixmap) - - OpenTK.Graphics.Glx.Glx.CreateNewContext(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,System.Int32,OpenTK.Graphics.Glx.GLXContext,System.Boolean) - - OpenTK.Graphics.Glx.Glx.CreatePbuffer(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,System.Int32*) - - OpenTK.Graphics.Glx.Glx.CreatePbuffer(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,System.Int32@) - - OpenTK.Graphics.Glx.Glx.CreatePbuffer(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,System.Int32[]) - - OpenTK.Graphics.Glx.Glx.CreatePbuffer(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,System.ReadOnlySpan{System.Int32}) - - OpenTK.Graphics.Glx.Glx.CreatePixmap(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.Pixmap,System.Int32*) - - OpenTK.Graphics.Glx.Glx.CreatePixmap(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.Pixmap,System.Int32@) - - OpenTK.Graphics.Glx.Glx.CreatePixmap(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.Pixmap,System.Int32[]) - - OpenTK.Graphics.Glx.Glx.CreatePixmap(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.Pixmap,System.ReadOnlySpan{System.Int32}) - - OpenTK.Graphics.Glx.Glx.CreateWindow(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.Window,System.Int32*) - - OpenTK.Graphics.Glx.Glx.CreateWindow(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.Window,System.Int32@) - - OpenTK.Graphics.Glx.Glx.CreateWindow(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.Window,System.Int32[]) - - OpenTK.Graphics.Glx.Glx.CreateWindow(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.Window,System.ReadOnlySpan{System.Int32}) - - OpenTK.Graphics.Glx.Glx.DestroyContext(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext) - - OpenTK.Graphics.Glx.Glx.DestroyGLXPixmap(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXPixmap) - - OpenTK.Graphics.Glx.Glx.DestroyPbuffer(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXPbuffer) - - OpenTK.Graphics.Glx.Glx.DestroyPixmap(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXPixmap) - - OpenTK.Graphics.Glx.Glx.DestroyWindow(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXWindow) - - OpenTK.Graphics.Glx.Glx.GetClientString(OpenTK.Graphics.Glx.DisplayPtr,System.Int32) - - OpenTK.Graphics.Glx.Glx.GetClientString_(OpenTK.Graphics.Glx.DisplayPtr,System.Int32) - - OpenTK.Graphics.Glx.Glx.GetConfig(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.XVisualInfoPtr,System.Int32,System.Int32*) - - OpenTK.Graphics.Glx.Glx.GetConfig(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.XVisualInfoPtr,System.Int32,System.Int32@) - - OpenTK.Graphics.Glx.Glx.GetConfig(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.XVisualInfoPtr,System.Int32,System.Int32[]) - - OpenTK.Graphics.Glx.Glx.GetConfig(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.XVisualInfoPtr,System.Int32,System.Span{System.Int32}) - - OpenTK.Graphics.Glx.Glx.GetCurrentContext - - OpenTK.Graphics.Glx.Glx.GetCurrentDisplay - - OpenTK.Graphics.Glx.Glx.GetCurrentDrawable - - OpenTK.Graphics.Glx.Glx.GetCurrentReadDrawable - - OpenTK.Graphics.Glx.Glx.GetFBConfig(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32@) - - OpenTK.Graphics.Glx.Glx.GetFBConfig(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32[]) - - OpenTK.Graphics.Glx.Glx.GetFBConfig(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Span{System.Int32}) - - OpenTK.Graphics.Glx.Glx.GetFBConfigAttrib(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,System.Int32,System.Int32*) - - OpenTK.Graphics.Glx.Glx.GetFBConfigAttrib(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,System.Int32,System.Int32@) - - OpenTK.Graphics.Glx.Glx.GetFBConfigAttrib(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,System.Int32,System.Int32[]) - - OpenTK.Graphics.Glx.Glx.GetFBConfigAttrib(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,System.Int32,System.Span{System.Int32}) - - OpenTK.Graphics.Glx.Glx.GetFBConfigs(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32*) - - OpenTK.Graphics.Glx.Glx.GetProcAddress(System.Byte*) - - OpenTK.Graphics.Glx.Glx.GetProcAddress(System.Byte@) - - OpenTK.Graphics.Glx.Glx.GetProcAddress(System.Byte[]) - - OpenTK.Graphics.Glx.Glx.GetProcAddress(System.ReadOnlySpan{System.Byte}) - - OpenTK.Graphics.Glx.Glx.GetSelectedEvent(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Span{System.UInt64}) - - OpenTK.Graphics.Glx.Glx.GetSelectedEvent(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.UInt64*) - - OpenTK.Graphics.Glx.Glx.GetSelectedEvent(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.UInt64@) - - OpenTK.Graphics.Glx.Glx.GetSelectedEvent(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.UInt64[]) - - OpenTK.Graphics.Glx.Glx.GetVisualFromFBConfig(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig) - - OpenTK.Graphics.Glx.Glx.IsDirect(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext) - - OpenTK.Graphics.Glx.Glx.MakeContextCurrent(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,OpenTK.Graphics.Glx.GLXDrawable,OpenTK.Graphics.Glx.GLXContext) - - OpenTK.Graphics.Glx.Glx.MakeCurrent(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,OpenTK.Graphics.Glx.GLXContext) - - OpenTK.Graphics.Glx.Glx.QueryContext(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext,System.Int32,System.Int32*) - - OpenTK.Graphics.Glx.Glx.QueryContext(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext,System.Int32,System.Int32@) - - OpenTK.Graphics.Glx.Glx.QueryContext(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext,System.Int32,System.Int32[]) - - OpenTK.Graphics.Glx.Glx.QueryContext(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext,System.Int32,System.Span{System.Int32}) - - OpenTK.Graphics.Glx.Glx.QueryDrawable(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32,System.Span{System.UInt32}) - - OpenTK.Graphics.Glx.Glx.QueryDrawable(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32,System.UInt32*) - - OpenTK.Graphics.Glx.Glx.QueryDrawable(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32,System.UInt32@) - - OpenTK.Graphics.Glx.Glx.QueryDrawable(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32,System.UInt32[]) - - OpenTK.Graphics.Glx.Glx.QueryExtension(OpenTK.Graphics.Glx.DisplayPtr,System.Int32*,System.Int32*) - - OpenTK.Graphics.Glx.Glx.QueryExtension(OpenTK.Graphics.Glx.DisplayPtr,System.Int32@,System.Int32@) - - OpenTK.Graphics.Glx.Glx.QueryExtension(OpenTK.Graphics.Glx.DisplayPtr,System.Int32[],System.Int32[]) - - OpenTK.Graphics.Glx.Glx.QueryExtension(OpenTK.Graphics.Glx.DisplayPtr,System.Span{System.Int32},System.Span{System.Int32}) - - OpenTK.Graphics.Glx.Glx.QueryExtensionsString(OpenTK.Graphics.Glx.DisplayPtr,System.Int32) - - OpenTK.Graphics.Glx.Glx.QueryExtensionsString_(OpenTK.Graphics.Glx.DisplayPtr,System.Int32) - - OpenTK.Graphics.Glx.Glx.QueryServerString(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32) - - OpenTK.Graphics.Glx.Glx.QueryServerString_(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32) - - OpenTK.Graphics.Glx.Glx.QueryVersion(OpenTK.Graphics.Glx.DisplayPtr,System.Int32*,System.Int32*) - - OpenTK.Graphics.Glx.Glx.QueryVersion(OpenTK.Graphics.Glx.DisplayPtr,System.Int32@,System.Int32@) - - OpenTK.Graphics.Glx.Glx.QueryVersion(OpenTK.Graphics.Glx.DisplayPtr,System.Int32[],System.Int32[]) - - OpenTK.Graphics.Glx.Glx.QueryVersion(OpenTK.Graphics.Glx.DisplayPtr,System.Span{System.Int32},System.Span{System.Int32}) - - OpenTK.Graphics.Glx.Glx.SelectEvent(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.UInt64) - - OpenTK.Graphics.Glx.Glx.SwapBuffers(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable) - - OpenTK.Graphics.Glx.Glx.UseXFont(OpenTK.Graphics.Glx.Font,System.Int32,System.Int32,System.Int32) - - OpenTK.Graphics.Glx.Glx.WaitGL - - OpenTK.Graphics.Glx.Glx.WaitX - langs: - - csharp - - vb - name: Glx - nameWithType: Glx - fullName: OpenTK.Graphics.Glx.Glx - type: Class - source: - id: Glx - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 11 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: public static class Glx - content.vb: Public Module Glx - inheritance: - - System.Object - inheritedMembers: - - System.Object.Equals(System.Object) - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetHashCode - - System.Object.GetType - - System.Object.MemberwiseClone - - System.Object.ReferenceEquals(System.Object,System.Object) - - System.Object.ToString -- uid: OpenTK.Graphics.Glx.Glx.ChooseFBConfig(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32*,System.Int32*) - commentId: M:OpenTK.Graphics.Glx.Glx.ChooseFBConfig(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32*,System.Int32*) - id: ChooseFBConfig(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32*,System.Int32*) - parent: OpenTK.Graphics.Glx.Glx - langs: - - csharp - - vb - name: ChooseFBConfig(DisplayPtr, int, int*, int*) - nameWithType: Glx.ChooseFBConfig(DisplayPtr, int, int*, int*) - fullName: OpenTK.Graphics.Glx.Glx.ChooseFBConfig(OpenTK.Graphics.Glx.DisplayPtr, int, int*, int*) - type: Method - source: - id: ChooseFBConfig - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs - startLine: 12 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: v1.3] - - [entry point: glXChooseFBConfig] - -
- example: [] - syntax: - content: public static GLXFBConfig* ChooseFBConfig(DisplayPtr dpy, int screen, int* attrib_list, int* nelements) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: screen - type: System.Int32 - - id: attrib_list - type: System.Int32* - - id: nelements - type: System.Int32* - return: - type: OpenTK.Graphics.Glx.GLXFBConfig* - content.vb: Public Shared Function ChooseFBConfig(dpy As DisplayPtr, screen As Integer, attrib_list As Integer*, nelements As Integer*) As GLXFBConfig* - overload: OpenTK.Graphics.Glx.Glx.ChooseFBConfig* - nameWithType.vb: Glx.ChooseFBConfig(DisplayPtr, Integer, Integer*, Integer*) - fullName.vb: OpenTK.Graphics.Glx.Glx.ChooseFBConfig(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer*, Integer*) - name.vb: ChooseFBConfig(DisplayPtr, Integer, Integer*, Integer*) -- uid: OpenTK.Graphics.Glx.Glx.ChooseVisual(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32*) - commentId: M:OpenTK.Graphics.Glx.Glx.ChooseVisual(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32*) - id: ChooseVisual(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32*) - parent: OpenTK.Graphics.Glx.Glx - langs: - - csharp - - vb - name: ChooseVisual(DisplayPtr, int, int*) - nameWithType: Glx.ChooseVisual(DisplayPtr, int, int*) - fullName: OpenTK.Graphics.Glx.Glx.ChooseVisual(OpenTK.Graphics.Glx.DisplayPtr, int, int*) - type: Method - source: - id: ChooseVisual - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs - startLine: 15 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: v1.0] - - [entry point: glXChooseVisual] - -
- example: [] - syntax: - content: public static XVisualInfoPtr ChooseVisual(DisplayPtr dpy, int screen, int* attribList) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: screen - type: System.Int32 - - id: attribList - type: System.Int32* - return: - type: OpenTK.Graphics.Glx.XVisualInfoPtr - content.vb: Public Shared Function ChooseVisual(dpy As DisplayPtr, screen As Integer, attribList As Integer*) As XVisualInfoPtr - overload: OpenTK.Graphics.Glx.Glx.ChooseVisual* - nameWithType.vb: Glx.ChooseVisual(DisplayPtr, Integer, Integer*) - fullName.vb: OpenTK.Graphics.Glx.Glx.ChooseVisual(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer*) - name.vb: ChooseVisual(DisplayPtr, Integer, Integer*) -- uid: OpenTK.Graphics.Glx.Glx.CopyContext(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext,OpenTK.Graphics.Glx.GLXContext,System.UInt64) - commentId: M:OpenTK.Graphics.Glx.Glx.CopyContext(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext,OpenTK.Graphics.Glx.GLXContext,System.UInt64) - id: CopyContext(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext,OpenTK.Graphics.Glx.GLXContext,System.UInt64) - parent: OpenTK.Graphics.Glx.Glx - langs: - - csharp - - vb - name: CopyContext(DisplayPtr, GLXContext, GLXContext, ulong) - nameWithType: Glx.CopyContext(DisplayPtr, GLXContext, GLXContext, ulong) - fullName: OpenTK.Graphics.Glx.Glx.CopyContext(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXContext, OpenTK.Graphics.Glx.GLXContext, ulong) - type: Method - source: - id: CopyContext - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs - startLine: 18 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: v1.0] - - [entry point: glXCopyContext] - -
- example: [] - syntax: - content: public static void CopyContext(DisplayPtr dpy, GLXContext src, GLXContext dst, ulong mask) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: src - type: OpenTK.Graphics.Glx.GLXContext - - id: dst - type: OpenTK.Graphics.Glx.GLXContext - - id: mask - type: System.UInt64 - content.vb: Public Shared Sub CopyContext(dpy As DisplayPtr, src As GLXContext, dst As GLXContext, mask As ULong) - overload: OpenTK.Graphics.Glx.Glx.CopyContext* - nameWithType.vb: Glx.CopyContext(DisplayPtr, GLXContext, GLXContext, ULong) - fullName.vb: OpenTK.Graphics.Glx.Glx.CopyContext(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXContext, OpenTK.Graphics.Glx.GLXContext, ULong) - name.vb: CopyContext(DisplayPtr, GLXContext, GLXContext, ULong) -- uid: OpenTK.Graphics.Glx.Glx.CreateContext(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.XVisualInfoPtr,OpenTK.Graphics.Glx.GLXContext,System.Boolean) - commentId: M:OpenTK.Graphics.Glx.Glx.CreateContext(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.XVisualInfoPtr,OpenTK.Graphics.Glx.GLXContext,System.Boolean) - id: CreateContext(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.XVisualInfoPtr,OpenTK.Graphics.Glx.GLXContext,System.Boolean) - parent: OpenTK.Graphics.Glx.Glx - langs: - - csharp - - vb - name: CreateContext(DisplayPtr, XVisualInfoPtr, GLXContext, bool) - nameWithType: Glx.CreateContext(DisplayPtr, XVisualInfoPtr, GLXContext, bool) - fullName: OpenTK.Graphics.Glx.Glx.CreateContext(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.XVisualInfoPtr, OpenTK.Graphics.Glx.GLXContext, bool) - type: Method - source: - id: CreateContext - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs - startLine: 21 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: v1.0] - - [entry point: glXCreateContext] - -
- example: [] - syntax: - content: public static GLXContext CreateContext(DisplayPtr dpy, XVisualInfoPtr vis, GLXContext shareList, bool direct) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: vis - type: OpenTK.Graphics.Glx.XVisualInfoPtr - - id: shareList - type: OpenTK.Graphics.Glx.GLXContext - - id: direct - type: System.Boolean - return: - type: OpenTK.Graphics.Glx.GLXContext - content.vb: Public Shared Function CreateContext(dpy As DisplayPtr, vis As XVisualInfoPtr, shareList As GLXContext, direct As Boolean) As GLXContext - overload: OpenTK.Graphics.Glx.Glx.CreateContext* - nameWithType.vb: Glx.CreateContext(DisplayPtr, XVisualInfoPtr, GLXContext, Boolean) - fullName.vb: OpenTK.Graphics.Glx.Glx.CreateContext(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.XVisualInfoPtr, OpenTK.Graphics.Glx.GLXContext, Boolean) - name.vb: CreateContext(DisplayPtr, XVisualInfoPtr, GLXContext, Boolean) -- uid: OpenTK.Graphics.Glx.Glx.CreateGLXPixmap(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.XVisualInfoPtr,OpenTK.Graphics.Glx.Pixmap) - commentId: M:OpenTK.Graphics.Glx.Glx.CreateGLXPixmap(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.XVisualInfoPtr,OpenTK.Graphics.Glx.Pixmap) - id: CreateGLXPixmap(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.XVisualInfoPtr,OpenTK.Graphics.Glx.Pixmap) - parent: OpenTK.Graphics.Glx.Glx - langs: - - csharp - - vb - name: CreateGLXPixmap(DisplayPtr, XVisualInfoPtr, Pixmap) - nameWithType: Glx.CreateGLXPixmap(DisplayPtr, XVisualInfoPtr, Pixmap) - fullName: OpenTK.Graphics.Glx.Glx.CreateGLXPixmap(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.XVisualInfoPtr, OpenTK.Graphics.Glx.Pixmap) - type: Method - source: - id: CreateGLXPixmap - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs - startLine: 24 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: v1.0] - - [entry point: glXCreateGLXPixmap] - -
- example: [] - syntax: - content: public static GLXPixmap CreateGLXPixmap(DisplayPtr dpy, XVisualInfoPtr visual, Pixmap pixmap) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: visual - type: OpenTK.Graphics.Glx.XVisualInfoPtr - - id: pixmap - type: OpenTK.Graphics.Glx.Pixmap - return: - type: OpenTK.Graphics.Glx.GLXPixmap - content.vb: Public Shared Function CreateGLXPixmap(dpy As DisplayPtr, visual As XVisualInfoPtr, pixmap As Pixmap) As GLXPixmap - overload: OpenTK.Graphics.Glx.Glx.CreateGLXPixmap* -- uid: OpenTK.Graphics.Glx.Glx.CreateNewContext(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,System.Int32,OpenTK.Graphics.Glx.GLXContext,System.Boolean) - commentId: M:OpenTK.Graphics.Glx.Glx.CreateNewContext(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,System.Int32,OpenTK.Graphics.Glx.GLXContext,System.Boolean) - id: CreateNewContext(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,System.Int32,OpenTK.Graphics.Glx.GLXContext,System.Boolean) - parent: OpenTK.Graphics.Glx.Glx - langs: - - csharp - - vb - name: CreateNewContext(DisplayPtr, GLXFBConfig, int, GLXContext, bool) - nameWithType: Glx.CreateNewContext(DisplayPtr, GLXFBConfig, int, GLXContext, bool) - fullName: OpenTK.Graphics.Glx.Glx.CreateNewContext(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfig, int, OpenTK.Graphics.Glx.GLXContext, bool) - type: Method - source: - id: CreateNewContext - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs - startLine: 27 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: v1.3] - - [entry point: glXCreateNewContext] - -
- example: [] - syntax: - content: public static GLXContext CreateNewContext(DisplayPtr dpy, GLXFBConfig config, int render_type, GLXContext share_list, bool direct) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: config - type: OpenTK.Graphics.Glx.GLXFBConfig - - id: render_type - type: System.Int32 - - id: share_list - type: OpenTK.Graphics.Glx.GLXContext - - id: direct - type: System.Boolean - return: - type: OpenTK.Graphics.Glx.GLXContext - content.vb: Public Shared Function CreateNewContext(dpy As DisplayPtr, config As GLXFBConfig, render_type As Integer, share_list As GLXContext, direct As Boolean) As GLXContext - overload: OpenTK.Graphics.Glx.Glx.CreateNewContext* - nameWithType.vb: Glx.CreateNewContext(DisplayPtr, GLXFBConfig, Integer, GLXContext, Boolean) - fullName.vb: OpenTK.Graphics.Glx.Glx.CreateNewContext(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfig, Integer, OpenTK.Graphics.Glx.GLXContext, Boolean) - name.vb: CreateNewContext(DisplayPtr, GLXFBConfig, Integer, GLXContext, Boolean) -- uid: OpenTK.Graphics.Glx.Glx.CreatePbuffer(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,System.Int32*) - commentId: M:OpenTK.Graphics.Glx.Glx.CreatePbuffer(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,System.Int32*) - id: CreatePbuffer(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,System.Int32*) - parent: OpenTK.Graphics.Glx.Glx - langs: - - csharp - - vb - name: CreatePbuffer(DisplayPtr, GLXFBConfig, int*) - nameWithType: Glx.CreatePbuffer(DisplayPtr, GLXFBConfig, int*) - fullName: OpenTK.Graphics.Glx.Glx.CreatePbuffer(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfig, int*) - type: Method - source: - id: CreatePbuffer - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs - startLine: 30 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: v1.3] - - [entry point: glXCreatePbuffer] - -
- example: [] - syntax: - content: public static GLXPbuffer CreatePbuffer(DisplayPtr dpy, GLXFBConfig config, int* attrib_list) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: config - type: OpenTK.Graphics.Glx.GLXFBConfig - - id: attrib_list - type: System.Int32* - return: - type: OpenTK.Graphics.Glx.GLXPbuffer - content.vb: Public Shared Function CreatePbuffer(dpy As DisplayPtr, config As GLXFBConfig, attrib_list As Integer*) As GLXPbuffer - overload: OpenTK.Graphics.Glx.Glx.CreatePbuffer* - nameWithType.vb: Glx.CreatePbuffer(DisplayPtr, GLXFBConfig, Integer*) - fullName.vb: OpenTK.Graphics.Glx.Glx.CreatePbuffer(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfig, Integer*) - name.vb: CreatePbuffer(DisplayPtr, GLXFBConfig, Integer*) -- uid: OpenTK.Graphics.Glx.Glx.CreatePixmap(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.Pixmap,System.Int32*) - commentId: M:OpenTK.Graphics.Glx.Glx.CreatePixmap(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.Pixmap,System.Int32*) - id: CreatePixmap(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.Pixmap,System.Int32*) - parent: OpenTK.Graphics.Glx.Glx - langs: - - csharp - - vb - name: CreatePixmap(DisplayPtr, GLXFBConfig, Pixmap, int*) - nameWithType: Glx.CreatePixmap(DisplayPtr, GLXFBConfig, Pixmap, int*) - fullName: OpenTK.Graphics.Glx.Glx.CreatePixmap(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfig, OpenTK.Graphics.Glx.Pixmap, int*) - type: Method - source: - id: CreatePixmap - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs - startLine: 33 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: v1.3] - - [entry point: glXCreatePixmap] - -
- example: [] - syntax: - content: public static GLXPixmap CreatePixmap(DisplayPtr dpy, GLXFBConfig config, Pixmap pixmap, int* attrib_list) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: config - type: OpenTK.Graphics.Glx.GLXFBConfig - - id: pixmap - type: OpenTK.Graphics.Glx.Pixmap - - id: attrib_list - type: System.Int32* - return: - type: OpenTK.Graphics.Glx.GLXPixmap - content.vb: Public Shared Function CreatePixmap(dpy As DisplayPtr, config As GLXFBConfig, pixmap As Pixmap, attrib_list As Integer*) As GLXPixmap - overload: OpenTK.Graphics.Glx.Glx.CreatePixmap* - nameWithType.vb: Glx.CreatePixmap(DisplayPtr, GLXFBConfig, Pixmap, Integer*) - fullName.vb: OpenTK.Graphics.Glx.Glx.CreatePixmap(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfig, OpenTK.Graphics.Glx.Pixmap, Integer*) - name.vb: CreatePixmap(DisplayPtr, GLXFBConfig, Pixmap, Integer*) -- uid: OpenTK.Graphics.Glx.Glx.CreateWindow(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.Window,System.Int32*) - commentId: M:OpenTK.Graphics.Glx.Glx.CreateWindow(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.Window,System.Int32*) - id: CreateWindow(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.Window,System.Int32*) - parent: OpenTK.Graphics.Glx.Glx - langs: - - csharp - - vb - name: CreateWindow(DisplayPtr, GLXFBConfig, Window, int*) - nameWithType: Glx.CreateWindow(DisplayPtr, GLXFBConfig, Window, int*) - fullName: OpenTK.Graphics.Glx.Glx.CreateWindow(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfig, OpenTK.Graphics.Glx.Window, int*) - type: Method - source: - id: CreateWindow - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs - startLine: 36 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: v1.3] - - [entry point: glXCreateWindow] - -
- example: [] - syntax: - content: public static GLXWindow CreateWindow(DisplayPtr dpy, GLXFBConfig config, Window win, int* attrib_list) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: config - type: OpenTK.Graphics.Glx.GLXFBConfig - - id: win - type: OpenTK.Graphics.Glx.Window - - id: attrib_list - type: System.Int32* - return: - type: OpenTK.Graphics.Glx.GLXWindow - content.vb: Public Shared Function CreateWindow(dpy As DisplayPtr, config As GLXFBConfig, win As Window, attrib_list As Integer*) As GLXWindow - overload: OpenTK.Graphics.Glx.Glx.CreateWindow* - nameWithType.vb: Glx.CreateWindow(DisplayPtr, GLXFBConfig, Window, Integer*) - fullName.vb: OpenTK.Graphics.Glx.Glx.CreateWindow(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfig, OpenTK.Graphics.Glx.Window, Integer*) - name.vb: CreateWindow(DisplayPtr, GLXFBConfig, Window, Integer*) -- uid: OpenTK.Graphics.Glx.Glx.DestroyContext(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext) - commentId: M:OpenTK.Graphics.Glx.Glx.DestroyContext(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext) - id: DestroyContext(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext) - parent: OpenTK.Graphics.Glx.Glx - langs: - - csharp - - vb - name: DestroyContext(DisplayPtr, GLXContext) - nameWithType: Glx.DestroyContext(DisplayPtr, GLXContext) - fullName: OpenTK.Graphics.Glx.Glx.DestroyContext(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXContext) - type: Method - source: - id: DestroyContext - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs - startLine: 39 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: v1.0] - - [entry point: glXDestroyContext] - -
- example: [] - syntax: - content: public static void DestroyContext(DisplayPtr dpy, GLXContext ctx) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: ctx - type: OpenTK.Graphics.Glx.GLXContext - content.vb: Public Shared Sub DestroyContext(dpy As DisplayPtr, ctx As GLXContext) - overload: OpenTK.Graphics.Glx.Glx.DestroyContext* -- uid: OpenTK.Graphics.Glx.Glx.DestroyGLXPixmap(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXPixmap) - commentId: M:OpenTK.Graphics.Glx.Glx.DestroyGLXPixmap(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXPixmap) - id: DestroyGLXPixmap(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXPixmap) - parent: OpenTK.Graphics.Glx.Glx - langs: - - csharp - - vb - name: DestroyGLXPixmap(DisplayPtr, GLXPixmap) - nameWithType: Glx.DestroyGLXPixmap(DisplayPtr, GLXPixmap) - fullName: OpenTK.Graphics.Glx.Glx.DestroyGLXPixmap(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXPixmap) - type: Method - source: - id: DestroyGLXPixmap - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs - startLine: 42 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: v1.0] - - [entry point: glXDestroyGLXPixmap] - -
- example: [] - syntax: - content: public static void DestroyGLXPixmap(DisplayPtr dpy, GLXPixmap pixmap) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: pixmap - type: OpenTK.Graphics.Glx.GLXPixmap - content.vb: Public Shared Sub DestroyGLXPixmap(dpy As DisplayPtr, pixmap As GLXPixmap) - overload: OpenTK.Graphics.Glx.Glx.DestroyGLXPixmap* -- uid: OpenTK.Graphics.Glx.Glx.DestroyPbuffer(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXPbuffer) - commentId: M:OpenTK.Graphics.Glx.Glx.DestroyPbuffer(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXPbuffer) - id: DestroyPbuffer(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXPbuffer) - parent: OpenTK.Graphics.Glx.Glx - langs: - - csharp - - vb - name: DestroyPbuffer(DisplayPtr, GLXPbuffer) - nameWithType: Glx.DestroyPbuffer(DisplayPtr, GLXPbuffer) - fullName: OpenTK.Graphics.Glx.Glx.DestroyPbuffer(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXPbuffer) - type: Method - source: - id: DestroyPbuffer - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs - startLine: 45 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: v1.3] - - [entry point: glXDestroyPbuffer] - -
- example: [] - syntax: - content: public static void DestroyPbuffer(DisplayPtr dpy, GLXPbuffer pbuf) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: pbuf - type: OpenTK.Graphics.Glx.GLXPbuffer - content.vb: Public Shared Sub DestroyPbuffer(dpy As DisplayPtr, pbuf As GLXPbuffer) - overload: OpenTK.Graphics.Glx.Glx.DestroyPbuffer* -- uid: OpenTK.Graphics.Glx.Glx.DestroyPixmap(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXPixmap) - commentId: M:OpenTK.Graphics.Glx.Glx.DestroyPixmap(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXPixmap) - id: DestroyPixmap(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXPixmap) - parent: OpenTK.Graphics.Glx.Glx - langs: - - csharp - - vb - name: DestroyPixmap(DisplayPtr, GLXPixmap) - nameWithType: Glx.DestroyPixmap(DisplayPtr, GLXPixmap) - fullName: OpenTK.Graphics.Glx.Glx.DestroyPixmap(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXPixmap) - type: Method - source: - id: DestroyPixmap - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs - startLine: 48 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: v1.3] - - [entry point: glXDestroyPixmap] - -
- example: [] - syntax: - content: public static void DestroyPixmap(DisplayPtr dpy, GLXPixmap pixmap) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: pixmap - type: OpenTK.Graphics.Glx.GLXPixmap - content.vb: Public Shared Sub DestroyPixmap(dpy As DisplayPtr, pixmap As GLXPixmap) - overload: OpenTK.Graphics.Glx.Glx.DestroyPixmap* -- uid: OpenTK.Graphics.Glx.Glx.DestroyWindow(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXWindow) - commentId: M:OpenTK.Graphics.Glx.Glx.DestroyWindow(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXWindow) - id: DestroyWindow(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXWindow) - parent: OpenTK.Graphics.Glx.Glx - langs: - - csharp - - vb - name: DestroyWindow(DisplayPtr, GLXWindow) - nameWithType: Glx.DestroyWindow(DisplayPtr, GLXWindow) - fullName: OpenTK.Graphics.Glx.Glx.DestroyWindow(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXWindow) - type: Method - source: - id: DestroyWindow - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs - startLine: 51 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: v1.3] - - [entry point: glXDestroyWindow] - -
- example: [] - syntax: - content: public static void DestroyWindow(DisplayPtr dpy, GLXWindow win) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: win - type: OpenTK.Graphics.Glx.GLXWindow - content.vb: Public Shared Sub DestroyWindow(dpy As DisplayPtr, win As GLXWindow) - overload: OpenTK.Graphics.Glx.Glx.DestroyWindow* -- uid: OpenTK.Graphics.Glx.Glx.GetClientString_(OpenTK.Graphics.Glx.DisplayPtr,System.Int32) - commentId: M:OpenTK.Graphics.Glx.Glx.GetClientString_(OpenTK.Graphics.Glx.DisplayPtr,System.Int32) - id: GetClientString_(OpenTK.Graphics.Glx.DisplayPtr,System.Int32) - parent: OpenTK.Graphics.Glx.Glx - langs: - - csharp - - vb - name: GetClientString_(DisplayPtr, int) - nameWithType: Glx.GetClientString_(DisplayPtr, int) - fullName: OpenTK.Graphics.Glx.Glx.GetClientString_(OpenTK.Graphics.Glx.DisplayPtr, int) - type: Method - source: - id: GetClientString_ - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs - startLine: 54 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: v1.1] - - [entry point: glXGetClientString] - -
- example: [] - syntax: - content: public static byte* GetClientString_(DisplayPtr dpy, int name) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: name - type: System.Int32 - return: - type: System.Byte* - content.vb: Public Shared Function GetClientString_(dpy As DisplayPtr, name As Integer) As Byte* - overload: OpenTK.Graphics.Glx.Glx.GetClientString_* - nameWithType.vb: Glx.GetClientString_(DisplayPtr, Integer) - fullName.vb: OpenTK.Graphics.Glx.Glx.GetClientString_(OpenTK.Graphics.Glx.DisplayPtr, Integer) - name.vb: GetClientString_(DisplayPtr, Integer) -- uid: OpenTK.Graphics.Glx.Glx.GetConfig(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.XVisualInfoPtr,System.Int32,System.Int32*) - commentId: M:OpenTK.Graphics.Glx.Glx.GetConfig(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.XVisualInfoPtr,System.Int32,System.Int32*) - id: GetConfig(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.XVisualInfoPtr,System.Int32,System.Int32*) - parent: OpenTK.Graphics.Glx.Glx - langs: - - csharp - - vb - name: GetConfig(DisplayPtr, XVisualInfoPtr, int, int*) - nameWithType: Glx.GetConfig(DisplayPtr, XVisualInfoPtr, int, int*) - fullName: OpenTK.Graphics.Glx.Glx.GetConfig(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.XVisualInfoPtr, int, int*) - type: Method - source: - id: GetConfig - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs - startLine: 57 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: v1.0] - - [entry point: glXGetConfig] - -
- example: [] - syntax: - content: public static int GetConfig(DisplayPtr dpy, XVisualInfoPtr visual, int attrib, int* value) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: visual - type: OpenTK.Graphics.Glx.XVisualInfoPtr - - id: attrib - type: System.Int32 - - id: value - type: System.Int32* - return: - type: System.Int32 - content.vb: Public Shared Function GetConfig(dpy As DisplayPtr, visual As XVisualInfoPtr, attrib As Integer, value As Integer*) As Integer - overload: OpenTK.Graphics.Glx.Glx.GetConfig* - nameWithType.vb: Glx.GetConfig(DisplayPtr, XVisualInfoPtr, Integer, Integer*) - fullName.vb: OpenTK.Graphics.Glx.Glx.GetConfig(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.XVisualInfoPtr, Integer, Integer*) - name.vb: GetConfig(DisplayPtr, XVisualInfoPtr, Integer, Integer*) -- uid: OpenTK.Graphics.Glx.Glx.GetCurrentContext - commentId: M:OpenTK.Graphics.Glx.Glx.GetCurrentContext - id: GetCurrentContext - parent: OpenTK.Graphics.Glx.Glx - langs: - - csharp - - vb - name: GetCurrentContext() - nameWithType: Glx.GetCurrentContext() - fullName: OpenTK.Graphics.Glx.Glx.GetCurrentContext() - type: Method - source: - id: GetCurrentContext - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs - startLine: 60 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: v1.0] - - [entry point: glXGetCurrentContext] - -
- example: [] - syntax: - content: public static GLXContext GetCurrentContext() - return: - type: OpenTK.Graphics.Glx.GLXContext - content.vb: Public Shared Function GetCurrentContext() As GLXContext - overload: OpenTK.Graphics.Glx.Glx.GetCurrentContext* -- uid: OpenTK.Graphics.Glx.Glx.GetCurrentDisplay - commentId: M:OpenTK.Graphics.Glx.Glx.GetCurrentDisplay - id: GetCurrentDisplay - parent: OpenTK.Graphics.Glx.Glx - langs: - - csharp - - vb - name: GetCurrentDisplay() - nameWithType: Glx.GetCurrentDisplay() - fullName: OpenTK.Graphics.Glx.Glx.GetCurrentDisplay() - type: Method - source: - id: GetCurrentDisplay - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs - startLine: 63 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: v1.2] - - [entry point: glXGetCurrentDisplay] - -
- example: [] - syntax: - content: public static DisplayPtr GetCurrentDisplay() - return: - type: OpenTK.Graphics.Glx.DisplayPtr - content.vb: Public Shared Function GetCurrentDisplay() As DisplayPtr - overload: OpenTK.Graphics.Glx.Glx.GetCurrentDisplay* -- uid: OpenTK.Graphics.Glx.Glx.GetCurrentDrawable - commentId: M:OpenTK.Graphics.Glx.Glx.GetCurrentDrawable - id: GetCurrentDrawable - parent: OpenTK.Graphics.Glx.Glx - langs: - - csharp - - vb - name: GetCurrentDrawable() - nameWithType: Glx.GetCurrentDrawable() - fullName: OpenTK.Graphics.Glx.Glx.GetCurrentDrawable() - type: Method - source: - id: GetCurrentDrawable - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs - startLine: 66 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: v1.0] - - [entry point: glXGetCurrentDrawable] - -
- example: [] - syntax: - content: public static GLXDrawable GetCurrentDrawable() - return: - type: OpenTK.Graphics.Glx.GLXDrawable - content.vb: Public Shared Function GetCurrentDrawable() As GLXDrawable - overload: OpenTK.Graphics.Glx.Glx.GetCurrentDrawable* -- uid: OpenTK.Graphics.Glx.Glx.GetCurrentReadDrawable - commentId: M:OpenTK.Graphics.Glx.Glx.GetCurrentReadDrawable - id: GetCurrentReadDrawable - parent: OpenTK.Graphics.Glx.Glx - langs: - - csharp - - vb - name: GetCurrentReadDrawable() - nameWithType: Glx.GetCurrentReadDrawable() - fullName: OpenTK.Graphics.Glx.Glx.GetCurrentReadDrawable() - type: Method - source: - id: GetCurrentReadDrawable - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs - startLine: 69 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: v1.3] - - [entry point: glXGetCurrentReadDrawable] - -
- example: [] - syntax: - content: public static GLXDrawable GetCurrentReadDrawable() - return: - type: OpenTK.Graphics.Glx.GLXDrawable - content.vb: Public Shared Function GetCurrentReadDrawable() As GLXDrawable - overload: OpenTK.Graphics.Glx.Glx.GetCurrentReadDrawable* -- uid: OpenTK.Graphics.Glx.Glx.GetFBConfigAttrib(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,System.Int32,System.Int32*) - commentId: M:OpenTK.Graphics.Glx.Glx.GetFBConfigAttrib(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,System.Int32,System.Int32*) - id: GetFBConfigAttrib(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,System.Int32,System.Int32*) - parent: OpenTK.Graphics.Glx.Glx - langs: - - csharp - - vb - name: GetFBConfigAttrib(DisplayPtr, GLXFBConfig, int, int*) - nameWithType: Glx.GetFBConfigAttrib(DisplayPtr, GLXFBConfig, int, int*) - fullName: OpenTK.Graphics.Glx.Glx.GetFBConfigAttrib(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfig, int, int*) - type: Method - source: - id: GetFBConfigAttrib - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs - startLine: 72 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: v1.3] - - [entry point: glXGetFBConfigAttrib] - -
- example: [] - syntax: - content: public static int GetFBConfigAttrib(DisplayPtr dpy, GLXFBConfig config, int attribute, int* value) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: config - type: OpenTK.Graphics.Glx.GLXFBConfig - - id: attribute - type: System.Int32 - - id: value - type: System.Int32* - return: - type: System.Int32 - content.vb: Public Shared Function GetFBConfigAttrib(dpy As DisplayPtr, config As GLXFBConfig, attribute As Integer, value As Integer*) As Integer - overload: OpenTK.Graphics.Glx.Glx.GetFBConfigAttrib* - nameWithType.vb: Glx.GetFBConfigAttrib(DisplayPtr, GLXFBConfig, Integer, Integer*) - fullName.vb: OpenTK.Graphics.Glx.Glx.GetFBConfigAttrib(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfig, Integer, Integer*) - name.vb: GetFBConfigAttrib(DisplayPtr, GLXFBConfig, Integer, Integer*) -- uid: OpenTK.Graphics.Glx.Glx.GetFBConfigs(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32*) - commentId: M:OpenTK.Graphics.Glx.Glx.GetFBConfigs(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32*) - id: GetFBConfigs(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32*) - parent: OpenTK.Graphics.Glx.Glx - langs: - - csharp - - vb - name: GetFBConfigs(DisplayPtr, int, int*) - nameWithType: Glx.GetFBConfigs(DisplayPtr, int, int*) - fullName: OpenTK.Graphics.Glx.Glx.GetFBConfigs(OpenTK.Graphics.Glx.DisplayPtr, int, int*) - type: Method - source: - id: GetFBConfigs - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs - startLine: 75 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: v1.3] - - [entry point: glXGetFBConfigs] - -
- example: [] - syntax: - content: public static GLXFBConfig* GetFBConfigs(DisplayPtr dpy, int screen, int* nelements) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: screen - type: System.Int32 - - id: nelements - type: System.Int32* - return: - type: OpenTK.Graphics.Glx.GLXFBConfig* - content.vb: Public Shared Function GetFBConfigs(dpy As DisplayPtr, screen As Integer, nelements As Integer*) As GLXFBConfig* - overload: OpenTK.Graphics.Glx.Glx.GetFBConfigs* - nameWithType.vb: Glx.GetFBConfigs(DisplayPtr, Integer, Integer*) - fullName.vb: OpenTK.Graphics.Glx.Glx.GetFBConfigs(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer*) - name.vb: GetFBConfigs(DisplayPtr, Integer, Integer*) -- uid: OpenTK.Graphics.Glx.Glx.GetProcAddress(System.Byte*) - commentId: M:OpenTK.Graphics.Glx.Glx.GetProcAddress(System.Byte*) - id: GetProcAddress(System.Byte*) - parent: OpenTK.Graphics.Glx.Glx - langs: - - csharp - - vb - name: GetProcAddress(byte*) - nameWithType: Glx.GetProcAddress(byte*) - fullName: OpenTK.Graphics.Glx.Glx.GetProcAddress(byte*) - type: Method - source: - id: GetProcAddress - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs - startLine: 78 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: v1.4] - - [entry point: glXGetProcAddress] - -
- example: [] - syntax: - content: public static nint GetProcAddress(byte* procName) - parameters: - - id: procName - type: System.Byte* - return: - type: System.IntPtr - content.vb: Public Shared Function GetProcAddress(procName As Byte*) As IntPtr - overload: OpenTK.Graphics.Glx.Glx.GetProcAddress* - nameWithType.vb: Glx.GetProcAddress(Byte*) - fullName.vb: OpenTK.Graphics.Glx.Glx.GetProcAddress(Byte*) - name.vb: GetProcAddress(Byte*) -- uid: OpenTK.Graphics.Glx.Glx.GetSelectedEvent(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.UInt64*) - commentId: M:OpenTK.Graphics.Glx.Glx.GetSelectedEvent(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.UInt64*) - id: GetSelectedEvent(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.UInt64*) - parent: OpenTK.Graphics.Glx.Glx - langs: - - csharp - - vb - name: GetSelectedEvent(DisplayPtr, GLXDrawable, ulong*) - nameWithType: Glx.GetSelectedEvent(DisplayPtr, GLXDrawable, ulong*) - fullName: OpenTK.Graphics.Glx.Glx.GetSelectedEvent(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, ulong*) - type: Method - source: - id: GetSelectedEvent - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs - startLine: 81 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: v1.3] - - [entry point: glXGetSelectedEvent] - -
- example: [] - syntax: - content: public static void GetSelectedEvent(DisplayPtr dpy, GLXDrawable draw, ulong* event_mask) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: draw - type: OpenTK.Graphics.Glx.GLXDrawable - - id: event_mask - type: System.UInt64* - content.vb: Public Shared Sub GetSelectedEvent(dpy As DisplayPtr, draw As GLXDrawable, event_mask As ULong*) - overload: OpenTK.Graphics.Glx.Glx.GetSelectedEvent* - nameWithType.vb: Glx.GetSelectedEvent(DisplayPtr, GLXDrawable, ULong*) - fullName.vb: OpenTK.Graphics.Glx.Glx.GetSelectedEvent(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, ULong*) - name.vb: GetSelectedEvent(DisplayPtr, GLXDrawable, ULong*) -- uid: OpenTK.Graphics.Glx.Glx.GetVisualFromFBConfig(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig) - commentId: M:OpenTK.Graphics.Glx.Glx.GetVisualFromFBConfig(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig) - id: GetVisualFromFBConfig(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig) - parent: OpenTK.Graphics.Glx.Glx - langs: - - csharp - - vb - name: GetVisualFromFBConfig(DisplayPtr, GLXFBConfig) - nameWithType: Glx.GetVisualFromFBConfig(DisplayPtr, GLXFBConfig) - fullName: OpenTK.Graphics.Glx.Glx.GetVisualFromFBConfig(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfig) - type: Method - source: - id: GetVisualFromFBConfig - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs - startLine: 84 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: v1.3] - - [entry point: glXGetVisualFromFBConfig] - -
- example: [] - syntax: - content: public static XVisualInfoPtr GetVisualFromFBConfig(DisplayPtr dpy, GLXFBConfig config) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: config - type: OpenTK.Graphics.Glx.GLXFBConfig - return: - type: OpenTK.Graphics.Glx.XVisualInfoPtr - content.vb: Public Shared Function GetVisualFromFBConfig(dpy As DisplayPtr, config As GLXFBConfig) As XVisualInfoPtr - overload: OpenTK.Graphics.Glx.Glx.GetVisualFromFBConfig* -- uid: OpenTK.Graphics.Glx.Glx.IsDirect(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext) - commentId: M:OpenTK.Graphics.Glx.Glx.IsDirect(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext) - id: IsDirect(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext) - parent: OpenTK.Graphics.Glx.Glx - langs: - - csharp - - vb - name: IsDirect(DisplayPtr, GLXContext) - nameWithType: Glx.IsDirect(DisplayPtr, GLXContext) - fullName: OpenTK.Graphics.Glx.Glx.IsDirect(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXContext) - type: Method - source: - id: IsDirect - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs - startLine: 87 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: v1.0] - - [entry point: glXIsDirect] - -
- example: [] - syntax: - content: public static bool IsDirect(DisplayPtr dpy, GLXContext ctx) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: ctx - type: OpenTK.Graphics.Glx.GLXContext - return: - type: System.Boolean - content.vb: Public Shared Function IsDirect(dpy As DisplayPtr, ctx As GLXContext) As Boolean - overload: OpenTK.Graphics.Glx.Glx.IsDirect* -- uid: OpenTK.Graphics.Glx.Glx.MakeContextCurrent(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,OpenTK.Graphics.Glx.GLXDrawable,OpenTK.Graphics.Glx.GLXContext) - commentId: M:OpenTK.Graphics.Glx.Glx.MakeContextCurrent(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,OpenTK.Graphics.Glx.GLXDrawable,OpenTK.Graphics.Glx.GLXContext) - id: MakeContextCurrent(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,OpenTK.Graphics.Glx.GLXDrawable,OpenTK.Graphics.Glx.GLXContext) - parent: OpenTK.Graphics.Glx.Glx - langs: - - csharp - - vb - name: MakeContextCurrent(DisplayPtr, GLXDrawable, GLXDrawable, GLXContext) - nameWithType: Glx.MakeContextCurrent(DisplayPtr, GLXDrawable, GLXDrawable, GLXContext) - fullName: OpenTK.Graphics.Glx.Glx.MakeContextCurrent(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, OpenTK.Graphics.Glx.GLXDrawable, OpenTK.Graphics.Glx.GLXContext) - type: Method - source: - id: MakeContextCurrent - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs - startLine: 90 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: v1.3] - - [entry point: glXMakeContextCurrent] - -
- example: [] - syntax: - content: public static bool MakeContextCurrent(DisplayPtr dpy, GLXDrawable draw, GLXDrawable read, GLXContext ctx) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: draw - type: OpenTK.Graphics.Glx.GLXDrawable - - id: read - type: OpenTK.Graphics.Glx.GLXDrawable - - id: ctx - type: OpenTK.Graphics.Glx.GLXContext - return: - type: System.Boolean - content.vb: Public Shared Function MakeContextCurrent(dpy As DisplayPtr, draw As GLXDrawable, read As GLXDrawable, ctx As GLXContext) As Boolean - overload: OpenTK.Graphics.Glx.Glx.MakeContextCurrent* -- uid: OpenTK.Graphics.Glx.Glx.MakeCurrent(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,OpenTK.Graphics.Glx.GLXContext) - commentId: M:OpenTK.Graphics.Glx.Glx.MakeCurrent(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,OpenTK.Graphics.Glx.GLXContext) - id: MakeCurrent(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,OpenTK.Graphics.Glx.GLXContext) - parent: OpenTK.Graphics.Glx.Glx - langs: - - csharp - - vb - name: MakeCurrent(DisplayPtr, GLXDrawable, GLXContext) - nameWithType: Glx.MakeCurrent(DisplayPtr, GLXDrawable, GLXContext) - fullName: OpenTK.Graphics.Glx.Glx.MakeCurrent(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, OpenTK.Graphics.Glx.GLXContext) - type: Method - source: - id: MakeCurrent - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs - startLine: 93 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: v1.0] - - [entry point: glXMakeCurrent] - -
- example: [] - syntax: - content: public static bool MakeCurrent(DisplayPtr dpy, GLXDrawable drawable, GLXContext ctx) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: drawable - type: OpenTK.Graphics.Glx.GLXDrawable - - id: ctx - type: OpenTK.Graphics.Glx.GLXContext - return: - type: System.Boolean - content.vb: Public Shared Function MakeCurrent(dpy As DisplayPtr, drawable As GLXDrawable, ctx As GLXContext) As Boolean - overload: OpenTK.Graphics.Glx.Glx.MakeCurrent* -- uid: OpenTK.Graphics.Glx.Glx.QueryContext(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext,System.Int32,System.Int32*) - commentId: M:OpenTK.Graphics.Glx.Glx.QueryContext(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext,System.Int32,System.Int32*) - id: QueryContext(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext,System.Int32,System.Int32*) - parent: OpenTK.Graphics.Glx.Glx - langs: - - csharp - - vb - name: QueryContext(DisplayPtr, GLXContext, int, int*) - nameWithType: Glx.QueryContext(DisplayPtr, GLXContext, int, int*) - fullName: OpenTK.Graphics.Glx.Glx.QueryContext(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXContext, int, int*) - type: Method - source: - id: QueryContext - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs - startLine: 96 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: v1.3] - - [entry point: glXQueryContext] - -
- example: [] - syntax: - content: public static int QueryContext(DisplayPtr dpy, GLXContext ctx, int attribute, int* value) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: ctx - type: OpenTK.Graphics.Glx.GLXContext - - id: attribute - type: System.Int32 - - id: value - type: System.Int32* - return: - type: System.Int32 - content.vb: Public Shared Function QueryContext(dpy As DisplayPtr, ctx As GLXContext, attribute As Integer, value As Integer*) As Integer - overload: OpenTK.Graphics.Glx.Glx.QueryContext* - nameWithType.vb: Glx.QueryContext(DisplayPtr, GLXContext, Integer, Integer*) - fullName.vb: OpenTK.Graphics.Glx.Glx.QueryContext(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXContext, Integer, Integer*) - name.vb: QueryContext(DisplayPtr, GLXContext, Integer, Integer*) -- uid: OpenTK.Graphics.Glx.Glx.QueryDrawable(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32,System.UInt32*) - commentId: M:OpenTK.Graphics.Glx.Glx.QueryDrawable(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32,System.UInt32*) - id: QueryDrawable(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32,System.UInt32*) - parent: OpenTK.Graphics.Glx.Glx - langs: - - csharp - - vb - name: QueryDrawable(DisplayPtr, GLXDrawable, int, uint*) - nameWithType: Glx.QueryDrawable(DisplayPtr, GLXDrawable, int, uint*) - fullName: OpenTK.Graphics.Glx.Glx.QueryDrawable(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, int, uint*) - type: Method - source: - id: QueryDrawable - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs - startLine: 99 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: v1.3] - - [entry point: glXQueryDrawable] - -
- example: [] - syntax: - content: public static void QueryDrawable(DisplayPtr dpy, GLXDrawable draw, int attribute, uint* value) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: draw - type: OpenTK.Graphics.Glx.GLXDrawable - - id: attribute - type: System.Int32 - - id: value - type: System.UInt32* - content.vb: Public Shared Sub QueryDrawable(dpy As DisplayPtr, draw As GLXDrawable, attribute As Integer, value As UInteger*) - overload: OpenTK.Graphics.Glx.Glx.QueryDrawable* - nameWithType.vb: Glx.QueryDrawable(DisplayPtr, GLXDrawable, Integer, UInteger*) - fullName.vb: OpenTK.Graphics.Glx.Glx.QueryDrawable(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, Integer, UInteger*) - name.vb: QueryDrawable(DisplayPtr, GLXDrawable, Integer, UInteger*) -- uid: OpenTK.Graphics.Glx.Glx.QueryExtension(OpenTK.Graphics.Glx.DisplayPtr,System.Int32*,System.Int32*) - commentId: M:OpenTK.Graphics.Glx.Glx.QueryExtension(OpenTK.Graphics.Glx.DisplayPtr,System.Int32*,System.Int32*) - id: QueryExtension(OpenTK.Graphics.Glx.DisplayPtr,System.Int32*,System.Int32*) - parent: OpenTK.Graphics.Glx.Glx - langs: - - csharp - - vb - name: QueryExtension(DisplayPtr, int*, int*) - nameWithType: Glx.QueryExtension(DisplayPtr, int*, int*) - fullName: OpenTK.Graphics.Glx.Glx.QueryExtension(OpenTK.Graphics.Glx.DisplayPtr, int*, int*) - type: Method - source: - id: QueryExtension - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs - startLine: 102 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: v1.0] - - [entry point: glXQueryExtension] - -
- example: [] - syntax: - content: public static bool QueryExtension(DisplayPtr dpy, int* errorb, int* @event) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: errorb - type: System.Int32* - - id: event - type: System.Int32* - return: - type: System.Boolean - content.vb: Public Shared Function QueryExtension(dpy As DisplayPtr, errorb As Integer*, [event] As Integer*) As Boolean - overload: OpenTK.Graphics.Glx.Glx.QueryExtension* - nameWithType.vb: Glx.QueryExtension(DisplayPtr, Integer*, Integer*) - fullName.vb: OpenTK.Graphics.Glx.Glx.QueryExtension(OpenTK.Graphics.Glx.DisplayPtr, Integer*, Integer*) - name.vb: QueryExtension(DisplayPtr, Integer*, Integer*) -- uid: OpenTK.Graphics.Glx.Glx.QueryExtensionsString_(OpenTK.Graphics.Glx.DisplayPtr,System.Int32) - commentId: M:OpenTK.Graphics.Glx.Glx.QueryExtensionsString_(OpenTK.Graphics.Glx.DisplayPtr,System.Int32) - id: QueryExtensionsString_(OpenTK.Graphics.Glx.DisplayPtr,System.Int32) - parent: OpenTK.Graphics.Glx.Glx - langs: - - csharp - - vb - name: QueryExtensionsString_(DisplayPtr, int) - nameWithType: Glx.QueryExtensionsString_(DisplayPtr, int) - fullName: OpenTK.Graphics.Glx.Glx.QueryExtensionsString_(OpenTK.Graphics.Glx.DisplayPtr, int) - type: Method - source: - id: QueryExtensionsString_ - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs - startLine: 105 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: v1.1] - - [entry point: glXQueryExtensionsString] - -
- example: [] - syntax: - content: public static byte* QueryExtensionsString_(DisplayPtr dpy, int screen) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: screen - type: System.Int32 - return: - type: System.Byte* - content.vb: Public Shared Function QueryExtensionsString_(dpy As DisplayPtr, screen As Integer) As Byte* - overload: OpenTK.Graphics.Glx.Glx.QueryExtensionsString_* - nameWithType.vb: Glx.QueryExtensionsString_(DisplayPtr, Integer) - fullName.vb: OpenTK.Graphics.Glx.Glx.QueryExtensionsString_(OpenTK.Graphics.Glx.DisplayPtr, Integer) - name.vb: QueryExtensionsString_(DisplayPtr, Integer) -- uid: OpenTK.Graphics.Glx.Glx.QueryServerString_(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32) - commentId: M:OpenTK.Graphics.Glx.Glx.QueryServerString_(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32) - id: QueryServerString_(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32) - parent: OpenTK.Graphics.Glx.Glx - langs: - - csharp - - vb - name: QueryServerString_(DisplayPtr, int, int) - nameWithType: Glx.QueryServerString_(DisplayPtr, int, int) - fullName: OpenTK.Graphics.Glx.Glx.QueryServerString_(OpenTK.Graphics.Glx.DisplayPtr, int, int) - type: Method - source: - id: QueryServerString_ - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs - startLine: 108 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: v1.1] - - [entry point: glXQueryServerString] - -
- example: [] - syntax: - content: public static byte* QueryServerString_(DisplayPtr dpy, int screen, int name) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: screen - type: System.Int32 - - id: name - type: System.Int32 - return: - type: System.Byte* - content.vb: Public Shared Function QueryServerString_(dpy As DisplayPtr, screen As Integer, name As Integer) As Byte* - overload: OpenTK.Graphics.Glx.Glx.QueryServerString_* - nameWithType.vb: Glx.QueryServerString_(DisplayPtr, Integer, Integer) - fullName.vb: OpenTK.Graphics.Glx.Glx.QueryServerString_(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer) - name.vb: QueryServerString_(DisplayPtr, Integer, Integer) -- uid: OpenTK.Graphics.Glx.Glx.QueryVersion(OpenTK.Graphics.Glx.DisplayPtr,System.Int32*,System.Int32*) - commentId: M:OpenTK.Graphics.Glx.Glx.QueryVersion(OpenTK.Graphics.Glx.DisplayPtr,System.Int32*,System.Int32*) - id: QueryVersion(OpenTK.Graphics.Glx.DisplayPtr,System.Int32*,System.Int32*) - parent: OpenTK.Graphics.Glx.Glx - langs: - - csharp - - vb - name: QueryVersion(DisplayPtr, int*, int*) - nameWithType: Glx.QueryVersion(DisplayPtr, int*, int*) - fullName: OpenTK.Graphics.Glx.Glx.QueryVersion(OpenTK.Graphics.Glx.DisplayPtr, int*, int*) - type: Method - source: - id: QueryVersion - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs - startLine: 111 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: v1.0] - - [entry point: glXQueryVersion] - -
- example: [] - syntax: - content: public static bool QueryVersion(DisplayPtr dpy, int* maj, int* min) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: maj - type: System.Int32* - - id: min - type: System.Int32* - return: - type: System.Boolean - content.vb: Public Shared Function QueryVersion(dpy As DisplayPtr, maj As Integer*, min As Integer*) As Boolean - overload: OpenTK.Graphics.Glx.Glx.QueryVersion* - nameWithType.vb: Glx.QueryVersion(DisplayPtr, Integer*, Integer*) - fullName.vb: OpenTK.Graphics.Glx.Glx.QueryVersion(OpenTK.Graphics.Glx.DisplayPtr, Integer*, Integer*) - name.vb: QueryVersion(DisplayPtr, Integer*, Integer*) -- uid: OpenTK.Graphics.Glx.Glx.SelectEvent(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.UInt64) - commentId: M:OpenTK.Graphics.Glx.Glx.SelectEvent(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.UInt64) - id: SelectEvent(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.UInt64) - parent: OpenTK.Graphics.Glx.Glx - langs: - - csharp - - vb - name: SelectEvent(DisplayPtr, GLXDrawable, ulong) - nameWithType: Glx.SelectEvent(DisplayPtr, GLXDrawable, ulong) - fullName: OpenTK.Graphics.Glx.Glx.SelectEvent(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, ulong) - type: Method - source: - id: SelectEvent - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs - startLine: 114 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: v1.3] - - [entry point: glXSelectEvent] - -
- example: [] - syntax: - content: public static void SelectEvent(DisplayPtr dpy, GLXDrawable draw, ulong event_mask) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: draw - type: OpenTK.Graphics.Glx.GLXDrawable - - id: event_mask - type: System.UInt64 - content.vb: Public Shared Sub SelectEvent(dpy As DisplayPtr, draw As GLXDrawable, event_mask As ULong) - overload: OpenTK.Graphics.Glx.Glx.SelectEvent* - nameWithType.vb: Glx.SelectEvent(DisplayPtr, GLXDrawable, ULong) - fullName.vb: OpenTK.Graphics.Glx.Glx.SelectEvent(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, ULong) - name.vb: SelectEvent(DisplayPtr, GLXDrawable, ULong) -- uid: OpenTK.Graphics.Glx.Glx.SwapBuffers(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable) - commentId: M:OpenTK.Graphics.Glx.Glx.SwapBuffers(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable) - id: SwapBuffers(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable) - parent: OpenTK.Graphics.Glx.Glx - langs: - - csharp - - vb - name: SwapBuffers(DisplayPtr, GLXDrawable) - nameWithType: Glx.SwapBuffers(DisplayPtr, GLXDrawable) - fullName: OpenTK.Graphics.Glx.Glx.SwapBuffers(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable) - type: Method - source: - id: SwapBuffers - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs - startLine: 117 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: v1.0] - - [entry point: glXSwapBuffers] - -
- example: [] - syntax: - content: public static void SwapBuffers(DisplayPtr dpy, GLXDrawable drawable) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: drawable - type: OpenTK.Graphics.Glx.GLXDrawable - content.vb: Public Shared Sub SwapBuffers(dpy As DisplayPtr, drawable As GLXDrawable) - overload: OpenTK.Graphics.Glx.Glx.SwapBuffers* -- uid: OpenTK.Graphics.Glx.Glx.UseXFont(OpenTK.Graphics.Glx.Font,System.Int32,System.Int32,System.Int32) - commentId: M:OpenTK.Graphics.Glx.Glx.UseXFont(OpenTK.Graphics.Glx.Font,System.Int32,System.Int32,System.Int32) - id: UseXFont(OpenTK.Graphics.Glx.Font,System.Int32,System.Int32,System.Int32) - parent: OpenTK.Graphics.Glx.Glx - langs: - - csharp - - vb - name: UseXFont(Font, int, int, int) - nameWithType: Glx.UseXFont(Font, int, int, int) - fullName: OpenTK.Graphics.Glx.Glx.UseXFont(OpenTK.Graphics.Glx.Font, int, int, int) - type: Method - source: - id: UseXFont - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs - startLine: 120 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: v1.0] - - [entry point: glXUseXFont] - -
- example: [] - syntax: - content: public static void UseXFont(Font font, int first, int count, int list) - parameters: - - id: font - type: OpenTK.Graphics.Glx.Font - - id: first - type: System.Int32 - - id: count - type: System.Int32 - - id: list - type: System.Int32 - content.vb: Public Shared Sub UseXFont(font As Font, first As Integer, count As Integer, list As Integer) - overload: OpenTK.Graphics.Glx.Glx.UseXFont* - nameWithType.vb: Glx.UseXFont(Font, Integer, Integer, Integer) - fullName.vb: OpenTK.Graphics.Glx.Glx.UseXFont(OpenTK.Graphics.Glx.Font, Integer, Integer, Integer) - name.vb: UseXFont(Font, Integer, Integer, Integer) -- uid: OpenTK.Graphics.Glx.Glx.WaitGL - commentId: M:OpenTK.Graphics.Glx.Glx.WaitGL - id: WaitGL - parent: OpenTK.Graphics.Glx.Glx - langs: - - csharp - - vb - name: WaitGL() - nameWithType: Glx.WaitGL() - fullName: OpenTK.Graphics.Glx.Glx.WaitGL() - type: Method - source: - id: WaitGL - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs - startLine: 123 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: v1.0] - - [entry point: glXWaitGL] - -
- example: [] - syntax: - content: public static void WaitGL() - content.vb: Public Shared Sub WaitGL() - overload: OpenTK.Graphics.Glx.Glx.WaitGL* -- uid: OpenTK.Graphics.Glx.Glx.WaitX - commentId: M:OpenTK.Graphics.Glx.Glx.WaitX - id: WaitX - parent: OpenTK.Graphics.Glx.Glx - langs: - - csharp - - vb - name: WaitX() - nameWithType: Glx.WaitX() - fullName: OpenTK.Graphics.Glx.Glx.WaitX() - type: Method - source: - id: WaitX - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Native.cs - startLine: 126 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: v1.0] - - [entry point: glXWaitX] - -
- example: [] - syntax: - content: public static void WaitX() - content.vb: Public Shared Sub WaitX() - overload: OpenTK.Graphics.Glx.Glx.WaitX* -- uid: OpenTK.Graphics.Glx.Glx.ChooseFBConfig(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.ReadOnlySpan{System.Int32},System.Span{System.Int32}) - commentId: M:OpenTK.Graphics.Glx.Glx.ChooseFBConfig(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.ReadOnlySpan{System.Int32},System.Span{System.Int32}) - id: ChooseFBConfig(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.ReadOnlySpan{System.Int32},System.Span{System.Int32}) - parent: OpenTK.Graphics.Glx.Glx - langs: - - csharp - - vb - name: ChooseFBConfig(DisplayPtr, int, ReadOnlySpan, Span) - nameWithType: Glx.ChooseFBConfig(DisplayPtr, int, ReadOnlySpan, Span) - fullName: OpenTK.Graphics.Glx.Glx.ChooseFBConfig(OpenTK.Graphics.Glx.DisplayPtr, int, System.ReadOnlySpan, System.Span) - type: Method - source: - id: ChooseFBConfig - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 14 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: v1.3] - - [entry point: glXChooseFBConfig] - -
- example: [] - syntax: - content: public static GLXFBConfig* ChooseFBConfig(DisplayPtr dpy, int screen, ReadOnlySpan attrib_list, Span nelements) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: screen - type: System.Int32 - - id: attrib_list - type: System.ReadOnlySpan{System.Int32} - - id: nelements - type: System.Span{System.Int32} - return: - type: OpenTK.Graphics.Glx.GLXFBConfig* - content.vb: Public Shared Function ChooseFBConfig(dpy As DisplayPtr, screen As Integer, attrib_list As ReadOnlySpan(Of Integer), nelements As Span(Of Integer)) As GLXFBConfig* - overload: OpenTK.Graphics.Glx.Glx.ChooseFBConfig* - nameWithType.vb: Glx.ChooseFBConfig(DisplayPtr, Integer, ReadOnlySpan(Of Integer), Span(Of Integer)) - fullName.vb: OpenTK.Graphics.Glx.Glx.ChooseFBConfig(OpenTK.Graphics.Glx.DisplayPtr, Integer, System.ReadOnlySpan(Of Integer), System.Span(Of Integer)) - name.vb: ChooseFBConfig(DisplayPtr, Integer, ReadOnlySpan(Of Integer), Span(Of Integer)) -- uid: OpenTK.Graphics.Glx.Glx.ChooseFBConfig(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32[],System.Int32[]) - commentId: M:OpenTK.Graphics.Glx.Glx.ChooseFBConfig(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32[],System.Int32[]) - id: ChooseFBConfig(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32[],System.Int32[]) - parent: OpenTK.Graphics.Glx.Glx - langs: - - csharp - - vb - name: ChooseFBConfig(DisplayPtr, int, int[], int[]) - nameWithType: Glx.ChooseFBConfig(DisplayPtr, int, int[], int[]) - fullName: OpenTK.Graphics.Glx.Glx.ChooseFBConfig(OpenTK.Graphics.Glx.DisplayPtr, int, int[], int[]) - type: Method - source: - id: ChooseFBConfig - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 27 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: v1.3] - - [entry point: glXChooseFBConfig] - -
- example: [] - syntax: - content: public static GLXFBConfig* ChooseFBConfig(DisplayPtr dpy, int screen, int[] attrib_list, int[] nelements) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: screen - type: System.Int32 - - id: attrib_list - type: System.Int32[] - - id: nelements - type: System.Int32[] - return: - type: OpenTK.Graphics.Glx.GLXFBConfig* - content.vb: Public Shared Function ChooseFBConfig(dpy As DisplayPtr, screen As Integer, attrib_list As Integer(), nelements As Integer()) As GLXFBConfig* - overload: OpenTK.Graphics.Glx.Glx.ChooseFBConfig* - nameWithType.vb: Glx.ChooseFBConfig(DisplayPtr, Integer, Integer(), Integer()) - fullName.vb: OpenTK.Graphics.Glx.Glx.ChooseFBConfig(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer(), Integer()) - name.vb: ChooseFBConfig(DisplayPtr, Integer, Integer(), Integer()) -- uid: OpenTK.Graphics.Glx.Glx.ChooseFBConfig(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32@,System.Int32@) - commentId: M:OpenTK.Graphics.Glx.Glx.ChooseFBConfig(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32@,System.Int32@) - id: ChooseFBConfig(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32@,System.Int32@) - parent: OpenTK.Graphics.Glx.Glx - langs: - - csharp - - vb - name: ChooseFBConfig(DisplayPtr, int, in int, ref int) - nameWithType: Glx.ChooseFBConfig(DisplayPtr, int, in int, ref int) - fullName: OpenTK.Graphics.Glx.Glx.ChooseFBConfig(OpenTK.Graphics.Glx.DisplayPtr, int, in int, ref int) - type: Method - source: - id: ChooseFBConfig - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 40 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: v1.3] - - [entry point: glXChooseFBConfig] - -
- example: [] - syntax: - content: public static GLXFBConfig* ChooseFBConfig(DisplayPtr dpy, int screen, in int attrib_list, ref int nelements) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: screen - type: System.Int32 - - id: attrib_list - type: System.Int32 - - id: nelements - type: System.Int32 - return: - type: OpenTK.Graphics.Glx.GLXFBConfig* - content.vb: Public Shared Function ChooseFBConfig(dpy As DisplayPtr, screen As Integer, attrib_list As Integer, nelements As Integer) As GLXFBConfig* - overload: OpenTK.Graphics.Glx.Glx.ChooseFBConfig* - nameWithType.vb: Glx.ChooseFBConfig(DisplayPtr, Integer, Integer, Integer) - fullName.vb: OpenTK.Graphics.Glx.Glx.ChooseFBConfig(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer, Integer) - name.vb: ChooseFBConfig(DisplayPtr, Integer, Integer, Integer) -- uid: OpenTK.Graphics.Glx.Glx.ChooseVisual(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Span{System.Int32}) - commentId: M:OpenTK.Graphics.Glx.Glx.ChooseVisual(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Span{System.Int32}) - id: ChooseVisual(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Span{System.Int32}) - parent: OpenTK.Graphics.Glx.Glx - langs: - - csharp - - vb - name: ChooseVisual(DisplayPtr, int, Span) - nameWithType: Glx.ChooseVisual(DisplayPtr, int, Span) - fullName: OpenTK.Graphics.Glx.Glx.ChooseVisual(OpenTK.Graphics.Glx.DisplayPtr, int, System.Span) - type: Method - source: - id: ChooseVisual - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 51 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: v1.0] - - [entry point: glXChooseVisual] - -
- example: [] - syntax: - content: public static XVisualInfoPtr ChooseVisual(DisplayPtr dpy, int screen, Span attribList) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: screen - type: System.Int32 - - id: attribList - type: System.Span{System.Int32} - return: - type: OpenTK.Graphics.Glx.XVisualInfoPtr - content.vb: Public Shared Function ChooseVisual(dpy As DisplayPtr, screen As Integer, attribList As Span(Of Integer)) As XVisualInfoPtr - overload: OpenTK.Graphics.Glx.Glx.ChooseVisual* - nameWithType.vb: Glx.ChooseVisual(DisplayPtr, Integer, Span(Of Integer)) - fullName.vb: OpenTK.Graphics.Glx.Glx.ChooseVisual(OpenTK.Graphics.Glx.DisplayPtr, Integer, System.Span(Of Integer)) - name.vb: ChooseVisual(DisplayPtr, Integer, Span(Of Integer)) -- uid: OpenTK.Graphics.Glx.Glx.ChooseVisual(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32[]) - commentId: M:OpenTK.Graphics.Glx.Glx.ChooseVisual(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32[]) - id: ChooseVisual(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32[]) - parent: OpenTK.Graphics.Glx.Glx - langs: - - csharp - - vb - name: ChooseVisual(DisplayPtr, int, int[]) - nameWithType: Glx.ChooseVisual(DisplayPtr, int, int[]) - fullName: OpenTK.Graphics.Glx.Glx.ChooseVisual(OpenTK.Graphics.Glx.DisplayPtr, int, int[]) - type: Method - source: - id: ChooseVisual - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 61 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: v1.0] - - [entry point: glXChooseVisual] - -
- example: [] - syntax: - content: public static XVisualInfoPtr ChooseVisual(DisplayPtr dpy, int screen, int[] attribList) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: screen - type: System.Int32 - - id: attribList - type: System.Int32[] - return: - type: OpenTK.Graphics.Glx.XVisualInfoPtr - content.vb: Public Shared Function ChooseVisual(dpy As DisplayPtr, screen As Integer, attribList As Integer()) As XVisualInfoPtr - overload: OpenTK.Graphics.Glx.Glx.ChooseVisual* - nameWithType.vb: Glx.ChooseVisual(DisplayPtr, Integer, Integer()) - fullName.vb: OpenTK.Graphics.Glx.Glx.ChooseVisual(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer()) - name.vb: ChooseVisual(DisplayPtr, Integer, Integer()) -- uid: OpenTK.Graphics.Glx.Glx.ChooseVisual(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32@) - commentId: M:OpenTK.Graphics.Glx.Glx.ChooseVisual(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32@) - id: ChooseVisual(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32@) - parent: OpenTK.Graphics.Glx.Glx - langs: - - csharp - - vb - name: ChooseVisual(DisplayPtr, int, ref int) - nameWithType: Glx.ChooseVisual(DisplayPtr, int, ref int) - fullName: OpenTK.Graphics.Glx.Glx.ChooseVisual(OpenTK.Graphics.Glx.DisplayPtr, int, ref int) - type: Method - source: - id: ChooseVisual - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 71 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: v1.0] - - [entry point: glXChooseVisual] - -
- example: [] - syntax: - content: public static XVisualInfoPtr ChooseVisual(DisplayPtr dpy, int screen, ref int attribList) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: screen - type: System.Int32 - - id: attribList - type: System.Int32 - return: - type: OpenTK.Graphics.Glx.XVisualInfoPtr - content.vb: Public Shared Function ChooseVisual(dpy As DisplayPtr, screen As Integer, attribList As Integer) As XVisualInfoPtr - overload: OpenTK.Graphics.Glx.Glx.ChooseVisual* - nameWithType.vb: Glx.ChooseVisual(DisplayPtr, Integer, Integer) - fullName.vb: OpenTK.Graphics.Glx.Glx.ChooseVisual(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer) - name.vb: ChooseVisual(DisplayPtr, Integer, Integer) -- uid: OpenTK.Graphics.Glx.Glx.CreatePbuffer(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,System.ReadOnlySpan{System.Int32}) - commentId: M:OpenTK.Graphics.Glx.Glx.CreatePbuffer(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,System.ReadOnlySpan{System.Int32}) - id: CreatePbuffer(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,System.ReadOnlySpan{System.Int32}) - parent: OpenTK.Graphics.Glx.Glx - langs: - - csharp - - vb - name: CreatePbuffer(DisplayPtr, GLXFBConfig, ReadOnlySpan) - nameWithType: Glx.CreatePbuffer(DisplayPtr, GLXFBConfig, ReadOnlySpan) - fullName: OpenTK.Graphics.Glx.Glx.CreatePbuffer(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfig, System.ReadOnlySpan) - type: Method - source: - id: CreatePbuffer - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 81 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: v1.3] - - [entry point: glXCreatePbuffer] - -
- example: [] - syntax: - content: public static GLXPbuffer CreatePbuffer(DisplayPtr dpy, GLXFBConfig config, ReadOnlySpan attrib_list) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: config - type: OpenTK.Graphics.Glx.GLXFBConfig - - id: attrib_list - type: System.ReadOnlySpan{System.Int32} - return: - type: OpenTK.Graphics.Glx.GLXPbuffer - content.vb: Public Shared Function CreatePbuffer(dpy As DisplayPtr, config As GLXFBConfig, attrib_list As ReadOnlySpan(Of Integer)) As GLXPbuffer - overload: OpenTK.Graphics.Glx.Glx.CreatePbuffer* - nameWithType.vb: Glx.CreatePbuffer(DisplayPtr, GLXFBConfig, ReadOnlySpan(Of Integer)) - fullName.vb: OpenTK.Graphics.Glx.Glx.CreatePbuffer(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfig, System.ReadOnlySpan(Of Integer)) - name.vb: CreatePbuffer(DisplayPtr, GLXFBConfig, ReadOnlySpan(Of Integer)) -- uid: OpenTK.Graphics.Glx.Glx.CreatePbuffer(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,System.Int32[]) - commentId: M:OpenTK.Graphics.Glx.Glx.CreatePbuffer(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,System.Int32[]) - id: CreatePbuffer(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,System.Int32[]) - parent: OpenTK.Graphics.Glx.Glx - langs: - - csharp - - vb - name: CreatePbuffer(DisplayPtr, GLXFBConfig, int[]) - nameWithType: Glx.CreatePbuffer(DisplayPtr, GLXFBConfig, int[]) - fullName: OpenTK.Graphics.Glx.Glx.CreatePbuffer(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfig, int[]) - type: Method - source: - id: CreatePbuffer - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 91 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: v1.3] - - [entry point: glXCreatePbuffer] - -
- example: [] - syntax: - content: public static GLXPbuffer CreatePbuffer(DisplayPtr dpy, GLXFBConfig config, int[] attrib_list) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: config - type: OpenTK.Graphics.Glx.GLXFBConfig - - id: attrib_list - type: System.Int32[] - return: - type: OpenTK.Graphics.Glx.GLXPbuffer - content.vb: Public Shared Function CreatePbuffer(dpy As DisplayPtr, config As GLXFBConfig, attrib_list As Integer()) As GLXPbuffer - overload: OpenTK.Graphics.Glx.Glx.CreatePbuffer* - nameWithType.vb: Glx.CreatePbuffer(DisplayPtr, GLXFBConfig, Integer()) - fullName.vb: OpenTK.Graphics.Glx.Glx.CreatePbuffer(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfig, Integer()) - name.vb: CreatePbuffer(DisplayPtr, GLXFBConfig, Integer()) -- uid: OpenTK.Graphics.Glx.Glx.CreatePbuffer(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,System.Int32@) - commentId: M:OpenTK.Graphics.Glx.Glx.CreatePbuffer(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,System.Int32@) - id: CreatePbuffer(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,System.Int32@) - parent: OpenTK.Graphics.Glx.Glx - langs: - - csharp - - vb - name: CreatePbuffer(DisplayPtr, GLXFBConfig, in int) - nameWithType: Glx.CreatePbuffer(DisplayPtr, GLXFBConfig, in int) - fullName: OpenTK.Graphics.Glx.Glx.CreatePbuffer(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfig, in int) - type: Method - source: - id: CreatePbuffer - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 101 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: v1.3] - - [entry point: glXCreatePbuffer] - -
- example: [] - syntax: - content: public static GLXPbuffer CreatePbuffer(DisplayPtr dpy, GLXFBConfig config, in int attrib_list) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: config - type: OpenTK.Graphics.Glx.GLXFBConfig - - id: attrib_list - type: System.Int32 - return: - type: OpenTK.Graphics.Glx.GLXPbuffer - content.vb: Public Shared Function CreatePbuffer(dpy As DisplayPtr, config As GLXFBConfig, attrib_list As Integer) As GLXPbuffer - overload: OpenTK.Graphics.Glx.Glx.CreatePbuffer* - nameWithType.vb: Glx.CreatePbuffer(DisplayPtr, GLXFBConfig, Integer) - fullName.vb: OpenTK.Graphics.Glx.Glx.CreatePbuffer(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfig, Integer) - name.vb: CreatePbuffer(DisplayPtr, GLXFBConfig, Integer) -- uid: OpenTK.Graphics.Glx.Glx.CreatePixmap(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.Pixmap,System.ReadOnlySpan{System.Int32}) - commentId: M:OpenTK.Graphics.Glx.Glx.CreatePixmap(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.Pixmap,System.ReadOnlySpan{System.Int32}) - id: CreatePixmap(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.Pixmap,System.ReadOnlySpan{System.Int32}) - parent: OpenTK.Graphics.Glx.Glx - langs: - - csharp - - vb - name: CreatePixmap(DisplayPtr, GLXFBConfig, Pixmap, ReadOnlySpan) - nameWithType: Glx.CreatePixmap(DisplayPtr, GLXFBConfig, Pixmap, ReadOnlySpan) - fullName: OpenTK.Graphics.Glx.Glx.CreatePixmap(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfig, OpenTK.Graphics.Glx.Pixmap, System.ReadOnlySpan) - type: Method - source: - id: CreatePixmap - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 111 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: v1.3] - - [entry point: glXCreatePixmap] - -
- example: [] - syntax: - content: public static GLXPixmap CreatePixmap(DisplayPtr dpy, GLXFBConfig config, Pixmap pixmap, ReadOnlySpan attrib_list) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: config - type: OpenTK.Graphics.Glx.GLXFBConfig - - id: pixmap - type: OpenTK.Graphics.Glx.Pixmap - - id: attrib_list - type: System.ReadOnlySpan{System.Int32} - return: - type: OpenTK.Graphics.Glx.GLXPixmap - content.vb: Public Shared Function CreatePixmap(dpy As DisplayPtr, config As GLXFBConfig, pixmap As Pixmap, attrib_list As ReadOnlySpan(Of Integer)) As GLXPixmap - overload: OpenTK.Graphics.Glx.Glx.CreatePixmap* - nameWithType.vb: Glx.CreatePixmap(DisplayPtr, GLXFBConfig, Pixmap, ReadOnlySpan(Of Integer)) - fullName.vb: OpenTK.Graphics.Glx.Glx.CreatePixmap(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfig, OpenTK.Graphics.Glx.Pixmap, System.ReadOnlySpan(Of Integer)) - name.vb: CreatePixmap(DisplayPtr, GLXFBConfig, Pixmap, ReadOnlySpan(Of Integer)) -- uid: OpenTK.Graphics.Glx.Glx.CreatePixmap(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.Pixmap,System.Int32[]) - commentId: M:OpenTK.Graphics.Glx.Glx.CreatePixmap(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.Pixmap,System.Int32[]) - id: CreatePixmap(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.Pixmap,System.Int32[]) - parent: OpenTK.Graphics.Glx.Glx - langs: - - csharp - - vb - name: CreatePixmap(DisplayPtr, GLXFBConfig, Pixmap, int[]) - nameWithType: Glx.CreatePixmap(DisplayPtr, GLXFBConfig, Pixmap, int[]) - fullName: OpenTK.Graphics.Glx.Glx.CreatePixmap(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfig, OpenTK.Graphics.Glx.Pixmap, int[]) - type: Method - source: - id: CreatePixmap - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 121 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: v1.3] - - [entry point: glXCreatePixmap] - -
- example: [] - syntax: - content: public static GLXPixmap CreatePixmap(DisplayPtr dpy, GLXFBConfig config, Pixmap pixmap, int[] attrib_list) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: config - type: OpenTK.Graphics.Glx.GLXFBConfig - - id: pixmap - type: OpenTK.Graphics.Glx.Pixmap - - id: attrib_list - type: System.Int32[] - return: - type: OpenTK.Graphics.Glx.GLXPixmap - content.vb: Public Shared Function CreatePixmap(dpy As DisplayPtr, config As GLXFBConfig, pixmap As Pixmap, attrib_list As Integer()) As GLXPixmap - overload: OpenTK.Graphics.Glx.Glx.CreatePixmap* - nameWithType.vb: Glx.CreatePixmap(DisplayPtr, GLXFBConfig, Pixmap, Integer()) - fullName.vb: OpenTK.Graphics.Glx.Glx.CreatePixmap(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfig, OpenTK.Graphics.Glx.Pixmap, Integer()) - name.vb: CreatePixmap(DisplayPtr, GLXFBConfig, Pixmap, Integer()) -- uid: OpenTK.Graphics.Glx.Glx.CreatePixmap(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.Pixmap,System.Int32@) - commentId: M:OpenTK.Graphics.Glx.Glx.CreatePixmap(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.Pixmap,System.Int32@) - id: CreatePixmap(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.Pixmap,System.Int32@) - parent: OpenTK.Graphics.Glx.Glx - langs: - - csharp - - vb - name: CreatePixmap(DisplayPtr, GLXFBConfig, Pixmap, in int) - nameWithType: Glx.CreatePixmap(DisplayPtr, GLXFBConfig, Pixmap, in int) - fullName: OpenTK.Graphics.Glx.Glx.CreatePixmap(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfig, OpenTK.Graphics.Glx.Pixmap, in int) - type: Method - source: - id: CreatePixmap - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 131 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: v1.3] - - [entry point: glXCreatePixmap] - -
- example: [] - syntax: - content: public static GLXPixmap CreatePixmap(DisplayPtr dpy, GLXFBConfig config, Pixmap pixmap, in int attrib_list) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: config - type: OpenTK.Graphics.Glx.GLXFBConfig - - id: pixmap - type: OpenTK.Graphics.Glx.Pixmap - - id: attrib_list - type: System.Int32 - return: - type: OpenTK.Graphics.Glx.GLXPixmap - content.vb: Public Shared Function CreatePixmap(dpy As DisplayPtr, config As GLXFBConfig, pixmap As Pixmap, attrib_list As Integer) As GLXPixmap - overload: OpenTK.Graphics.Glx.Glx.CreatePixmap* - nameWithType.vb: Glx.CreatePixmap(DisplayPtr, GLXFBConfig, Pixmap, Integer) - fullName.vb: OpenTK.Graphics.Glx.Glx.CreatePixmap(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfig, OpenTK.Graphics.Glx.Pixmap, Integer) - name.vb: CreatePixmap(DisplayPtr, GLXFBConfig, Pixmap, Integer) -- uid: OpenTK.Graphics.Glx.Glx.CreateWindow(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.Window,System.ReadOnlySpan{System.Int32}) - commentId: M:OpenTK.Graphics.Glx.Glx.CreateWindow(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.Window,System.ReadOnlySpan{System.Int32}) - id: CreateWindow(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.Window,System.ReadOnlySpan{System.Int32}) - parent: OpenTK.Graphics.Glx.Glx - langs: - - csharp - - vb - name: CreateWindow(DisplayPtr, GLXFBConfig, Window, ReadOnlySpan) - nameWithType: Glx.CreateWindow(DisplayPtr, GLXFBConfig, Window, ReadOnlySpan) - fullName: OpenTK.Graphics.Glx.Glx.CreateWindow(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfig, OpenTK.Graphics.Glx.Window, System.ReadOnlySpan) - type: Method - source: - id: CreateWindow - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 141 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: v1.3] - - [entry point: glXCreateWindow] - -
- example: [] - syntax: - content: public static GLXWindow CreateWindow(DisplayPtr dpy, GLXFBConfig config, Window win, ReadOnlySpan attrib_list) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: config - type: OpenTK.Graphics.Glx.GLXFBConfig - - id: win - type: OpenTK.Graphics.Glx.Window - - id: attrib_list - type: System.ReadOnlySpan{System.Int32} - return: - type: OpenTK.Graphics.Glx.GLXWindow - content.vb: Public Shared Function CreateWindow(dpy As DisplayPtr, config As GLXFBConfig, win As Window, attrib_list As ReadOnlySpan(Of Integer)) As GLXWindow - overload: OpenTK.Graphics.Glx.Glx.CreateWindow* - nameWithType.vb: Glx.CreateWindow(DisplayPtr, GLXFBConfig, Window, ReadOnlySpan(Of Integer)) - fullName.vb: OpenTK.Graphics.Glx.Glx.CreateWindow(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfig, OpenTK.Graphics.Glx.Window, System.ReadOnlySpan(Of Integer)) - name.vb: CreateWindow(DisplayPtr, GLXFBConfig, Window, ReadOnlySpan(Of Integer)) -- uid: OpenTK.Graphics.Glx.Glx.CreateWindow(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.Window,System.Int32[]) - commentId: M:OpenTK.Graphics.Glx.Glx.CreateWindow(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.Window,System.Int32[]) - id: CreateWindow(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.Window,System.Int32[]) - parent: OpenTK.Graphics.Glx.Glx - langs: - - csharp - - vb - name: CreateWindow(DisplayPtr, GLXFBConfig, Window, int[]) - nameWithType: Glx.CreateWindow(DisplayPtr, GLXFBConfig, Window, int[]) - fullName: OpenTK.Graphics.Glx.Glx.CreateWindow(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfig, OpenTK.Graphics.Glx.Window, int[]) - type: Method - source: - id: CreateWindow - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 151 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: v1.3] - - [entry point: glXCreateWindow] - -
- example: [] - syntax: - content: public static GLXWindow CreateWindow(DisplayPtr dpy, GLXFBConfig config, Window win, int[] attrib_list) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: config - type: OpenTK.Graphics.Glx.GLXFBConfig - - id: win - type: OpenTK.Graphics.Glx.Window - - id: attrib_list - type: System.Int32[] - return: - type: OpenTK.Graphics.Glx.GLXWindow - content.vb: Public Shared Function CreateWindow(dpy As DisplayPtr, config As GLXFBConfig, win As Window, attrib_list As Integer()) As GLXWindow - overload: OpenTK.Graphics.Glx.Glx.CreateWindow* - nameWithType.vb: Glx.CreateWindow(DisplayPtr, GLXFBConfig, Window, Integer()) - fullName.vb: OpenTK.Graphics.Glx.Glx.CreateWindow(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfig, OpenTK.Graphics.Glx.Window, Integer()) - name.vb: CreateWindow(DisplayPtr, GLXFBConfig, Window, Integer()) -- uid: OpenTK.Graphics.Glx.Glx.CreateWindow(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.Window,System.Int32@) - commentId: M:OpenTK.Graphics.Glx.Glx.CreateWindow(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.Window,System.Int32@) - id: CreateWindow(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,OpenTK.Graphics.Glx.Window,System.Int32@) - parent: OpenTK.Graphics.Glx.Glx - langs: - - csharp - - vb - name: CreateWindow(DisplayPtr, GLXFBConfig, Window, in int) - nameWithType: Glx.CreateWindow(DisplayPtr, GLXFBConfig, Window, in int) - fullName: OpenTK.Graphics.Glx.Glx.CreateWindow(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfig, OpenTK.Graphics.Glx.Window, in int) - type: Method - source: - id: CreateWindow - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 161 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: v1.3] - - [entry point: glXCreateWindow] - -
- example: [] - syntax: - content: public static GLXWindow CreateWindow(DisplayPtr dpy, GLXFBConfig config, Window win, in int attrib_list) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: config - type: OpenTK.Graphics.Glx.GLXFBConfig - - id: win - type: OpenTK.Graphics.Glx.Window - - id: attrib_list - type: System.Int32 - return: - type: OpenTK.Graphics.Glx.GLXWindow - content.vb: Public Shared Function CreateWindow(dpy As DisplayPtr, config As GLXFBConfig, win As Window, attrib_list As Integer) As GLXWindow - overload: OpenTK.Graphics.Glx.Glx.CreateWindow* - nameWithType.vb: Glx.CreateWindow(DisplayPtr, GLXFBConfig, Window, Integer) - fullName.vb: OpenTK.Graphics.Glx.Glx.CreateWindow(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfig, OpenTK.Graphics.Glx.Window, Integer) - name.vb: CreateWindow(DisplayPtr, GLXFBConfig, Window, Integer) -- uid: OpenTK.Graphics.Glx.Glx.GetClientString(OpenTK.Graphics.Glx.DisplayPtr,System.Int32) - commentId: M:OpenTK.Graphics.Glx.Glx.GetClientString(OpenTK.Graphics.Glx.DisplayPtr,System.Int32) - id: GetClientString(OpenTK.Graphics.Glx.DisplayPtr,System.Int32) - parent: OpenTK.Graphics.Glx.Glx - langs: - - csharp - - vb - name: GetClientString(DisplayPtr, int) - nameWithType: Glx.GetClientString(DisplayPtr, int) - fullName: OpenTK.Graphics.Glx.Glx.GetClientString(OpenTK.Graphics.Glx.DisplayPtr, int) - type: Method - source: - id: GetClientString - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 171 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - example: [] - syntax: - content: public static string? GetClientString(DisplayPtr dpy, int name) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: name - type: System.Int32 - return: - type: System.String - content.vb: Public Shared Function GetClientString(dpy As DisplayPtr, name As Integer) As String - overload: OpenTK.Graphics.Glx.Glx.GetClientString* - nameWithType.vb: Glx.GetClientString(DisplayPtr, Integer) - fullName.vb: OpenTK.Graphics.Glx.Glx.GetClientString(OpenTK.Graphics.Glx.DisplayPtr, Integer) - name.vb: GetClientString(DisplayPtr, Integer) -- uid: OpenTK.Graphics.Glx.Glx.GetConfig(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.XVisualInfoPtr,System.Int32,System.Span{System.Int32}) - commentId: M:OpenTK.Graphics.Glx.Glx.GetConfig(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.XVisualInfoPtr,System.Int32,System.Span{System.Int32}) - id: GetConfig(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.XVisualInfoPtr,System.Int32,System.Span{System.Int32}) - parent: OpenTK.Graphics.Glx.Glx - langs: - - csharp - - vb - name: GetConfig(DisplayPtr, XVisualInfoPtr, int, Span) - nameWithType: Glx.GetConfig(DisplayPtr, XVisualInfoPtr, int, Span) - fullName: OpenTK.Graphics.Glx.Glx.GetConfig(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.XVisualInfoPtr, int, System.Span) - type: Method - source: - id: GetConfig - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 180 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: v1.0] - - [entry point: glXGetConfig] - -
- example: [] - syntax: - content: public static int GetConfig(DisplayPtr dpy, XVisualInfoPtr visual, int attrib, Span value) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: visual - type: OpenTK.Graphics.Glx.XVisualInfoPtr - - id: attrib - type: System.Int32 - - id: value - type: System.Span{System.Int32} - return: - type: System.Int32 - content.vb: Public Shared Function GetConfig(dpy As DisplayPtr, visual As XVisualInfoPtr, attrib As Integer, value As Span(Of Integer)) As Integer - overload: OpenTK.Graphics.Glx.Glx.GetConfig* - nameWithType.vb: Glx.GetConfig(DisplayPtr, XVisualInfoPtr, Integer, Span(Of Integer)) - fullName.vb: OpenTK.Graphics.Glx.Glx.GetConfig(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.XVisualInfoPtr, Integer, System.Span(Of Integer)) - name.vb: GetConfig(DisplayPtr, XVisualInfoPtr, Integer, Span(Of Integer)) -- uid: OpenTK.Graphics.Glx.Glx.GetConfig(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.XVisualInfoPtr,System.Int32,System.Int32[]) - commentId: M:OpenTK.Graphics.Glx.Glx.GetConfig(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.XVisualInfoPtr,System.Int32,System.Int32[]) - id: GetConfig(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.XVisualInfoPtr,System.Int32,System.Int32[]) - parent: OpenTK.Graphics.Glx.Glx - langs: - - csharp - - vb - name: GetConfig(DisplayPtr, XVisualInfoPtr, int, int[]) - nameWithType: Glx.GetConfig(DisplayPtr, XVisualInfoPtr, int, int[]) - fullName: OpenTK.Graphics.Glx.Glx.GetConfig(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.XVisualInfoPtr, int, int[]) - type: Method - source: - id: GetConfig - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 190 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: v1.0] - - [entry point: glXGetConfig] - -
- example: [] - syntax: - content: public static int GetConfig(DisplayPtr dpy, XVisualInfoPtr visual, int attrib, int[] value) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: visual - type: OpenTK.Graphics.Glx.XVisualInfoPtr - - id: attrib - type: System.Int32 - - id: value - type: System.Int32[] - return: - type: System.Int32 - content.vb: Public Shared Function GetConfig(dpy As DisplayPtr, visual As XVisualInfoPtr, attrib As Integer, value As Integer()) As Integer - overload: OpenTK.Graphics.Glx.Glx.GetConfig* - nameWithType.vb: Glx.GetConfig(DisplayPtr, XVisualInfoPtr, Integer, Integer()) - fullName.vb: OpenTK.Graphics.Glx.Glx.GetConfig(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.XVisualInfoPtr, Integer, Integer()) - name.vb: GetConfig(DisplayPtr, XVisualInfoPtr, Integer, Integer()) -- uid: OpenTK.Graphics.Glx.Glx.GetConfig(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.XVisualInfoPtr,System.Int32,System.Int32@) - commentId: M:OpenTK.Graphics.Glx.Glx.GetConfig(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.XVisualInfoPtr,System.Int32,System.Int32@) - id: GetConfig(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.XVisualInfoPtr,System.Int32,System.Int32@) - parent: OpenTK.Graphics.Glx.Glx - langs: - - csharp - - vb - name: GetConfig(DisplayPtr, XVisualInfoPtr, int, ref int) - nameWithType: Glx.GetConfig(DisplayPtr, XVisualInfoPtr, int, ref int) - fullName: OpenTK.Graphics.Glx.Glx.GetConfig(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.XVisualInfoPtr, int, ref int) - type: Method - source: - id: GetConfig - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 200 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: v1.0] - - [entry point: glXGetConfig] - -
- example: [] - syntax: - content: public static int GetConfig(DisplayPtr dpy, XVisualInfoPtr visual, int attrib, ref int value) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: visual - type: OpenTK.Graphics.Glx.XVisualInfoPtr - - id: attrib - type: System.Int32 - - id: value - type: System.Int32 - return: - type: System.Int32 - content.vb: Public Shared Function GetConfig(dpy As DisplayPtr, visual As XVisualInfoPtr, attrib As Integer, value As Integer) As Integer - overload: OpenTK.Graphics.Glx.Glx.GetConfig* - nameWithType.vb: Glx.GetConfig(DisplayPtr, XVisualInfoPtr, Integer, Integer) - fullName.vb: OpenTK.Graphics.Glx.Glx.GetConfig(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.XVisualInfoPtr, Integer, Integer) - name.vb: GetConfig(DisplayPtr, XVisualInfoPtr, Integer, Integer) -- uid: OpenTK.Graphics.Glx.Glx.GetFBConfigAttrib(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,System.Int32,System.Span{System.Int32}) - commentId: M:OpenTK.Graphics.Glx.Glx.GetFBConfigAttrib(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,System.Int32,System.Span{System.Int32}) - id: GetFBConfigAttrib(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,System.Int32,System.Span{System.Int32}) - parent: OpenTK.Graphics.Glx.Glx - langs: - - csharp - - vb - name: GetFBConfigAttrib(DisplayPtr, GLXFBConfig, int, Span) - nameWithType: Glx.GetFBConfigAttrib(DisplayPtr, GLXFBConfig, int, Span) - fullName: OpenTK.Graphics.Glx.Glx.GetFBConfigAttrib(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfig, int, System.Span) - type: Method - source: - id: GetFBConfigAttrib - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 210 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: v1.3] - - [entry point: glXGetFBConfigAttrib] - -
- example: [] - syntax: - content: public static int GetFBConfigAttrib(DisplayPtr dpy, GLXFBConfig config, int attribute, Span value) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: config - type: OpenTK.Graphics.Glx.GLXFBConfig - - id: attribute - type: System.Int32 - - id: value - type: System.Span{System.Int32} - return: - type: System.Int32 - content.vb: Public Shared Function GetFBConfigAttrib(dpy As DisplayPtr, config As GLXFBConfig, attribute As Integer, value As Span(Of Integer)) As Integer - overload: OpenTK.Graphics.Glx.Glx.GetFBConfigAttrib* - nameWithType.vb: Glx.GetFBConfigAttrib(DisplayPtr, GLXFBConfig, Integer, Span(Of Integer)) - fullName.vb: OpenTK.Graphics.Glx.Glx.GetFBConfigAttrib(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfig, Integer, System.Span(Of Integer)) - name.vb: GetFBConfigAttrib(DisplayPtr, GLXFBConfig, Integer, Span(Of Integer)) -- uid: OpenTK.Graphics.Glx.Glx.GetFBConfigAttrib(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,System.Int32,System.Int32[]) - commentId: M:OpenTK.Graphics.Glx.Glx.GetFBConfigAttrib(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,System.Int32,System.Int32[]) - id: GetFBConfigAttrib(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,System.Int32,System.Int32[]) - parent: OpenTK.Graphics.Glx.Glx - langs: - - csharp - - vb - name: GetFBConfigAttrib(DisplayPtr, GLXFBConfig, int, int[]) - nameWithType: Glx.GetFBConfigAttrib(DisplayPtr, GLXFBConfig, int, int[]) - fullName: OpenTK.Graphics.Glx.Glx.GetFBConfigAttrib(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfig, int, int[]) - type: Method - source: - id: GetFBConfigAttrib - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 220 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: v1.3] - - [entry point: glXGetFBConfigAttrib] - -
- example: [] - syntax: - content: public static int GetFBConfigAttrib(DisplayPtr dpy, GLXFBConfig config, int attribute, int[] value) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: config - type: OpenTK.Graphics.Glx.GLXFBConfig - - id: attribute - type: System.Int32 - - id: value - type: System.Int32[] - return: - type: System.Int32 - content.vb: Public Shared Function GetFBConfigAttrib(dpy As DisplayPtr, config As GLXFBConfig, attribute As Integer, value As Integer()) As Integer - overload: OpenTK.Graphics.Glx.Glx.GetFBConfigAttrib* - nameWithType.vb: Glx.GetFBConfigAttrib(DisplayPtr, GLXFBConfig, Integer, Integer()) - fullName.vb: OpenTK.Graphics.Glx.Glx.GetFBConfigAttrib(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfig, Integer, Integer()) - name.vb: GetFBConfigAttrib(DisplayPtr, GLXFBConfig, Integer, Integer()) -- uid: OpenTK.Graphics.Glx.Glx.GetFBConfigAttrib(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,System.Int32,System.Int32@) - commentId: M:OpenTK.Graphics.Glx.Glx.GetFBConfigAttrib(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,System.Int32,System.Int32@) - id: GetFBConfigAttrib(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXFBConfig,System.Int32,System.Int32@) - parent: OpenTK.Graphics.Glx.Glx - langs: - - csharp - - vb - name: GetFBConfigAttrib(DisplayPtr, GLXFBConfig, int, ref int) - nameWithType: Glx.GetFBConfigAttrib(DisplayPtr, GLXFBConfig, int, ref int) - fullName: OpenTK.Graphics.Glx.Glx.GetFBConfigAttrib(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfig, int, ref int) - type: Method - source: - id: GetFBConfigAttrib - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 230 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: v1.3] - - [entry point: glXGetFBConfigAttrib] - -
- example: [] - syntax: - content: public static int GetFBConfigAttrib(DisplayPtr dpy, GLXFBConfig config, int attribute, ref int value) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: config - type: OpenTK.Graphics.Glx.GLXFBConfig - - id: attribute - type: System.Int32 - - id: value - type: System.Int32 - return: - type: System.Int32 - content.vb: Public Shared Function GetFBConfigAttrib(dpy As DisplayPtr, config As GLXFBConfig, attribute As Integer, value As Integer) As Integer - overload: OpenTK.Graphics.Glx.Glx.GetFBConfigAttrib* - nameWithType.vb: Glx.GetFBConfigAttrib(DisplayPtr, GLXFBConfig, Integer, Integer) - fullName.vb: OpenTK.Graphics.Glx.Glx.GetFBConfigAttrib(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXFBConfig, Integer, Integer) - name.vb: GetFBConfigAttrib(DisplayPtr, GLXFBConfig, Integer, Integer) -- uid: OpenTK.Graphics.Glx.Glx.GetFBConfig(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Span{System.Int32}) - commentId: M:OpenTK.Graphics.Glx.Glx.GetFBConfig(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Span{System.Int32}) - id: GetFBConfig(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Span{System.Int32}) - parent: OpenTK.Graphics.Glx.Glx - langs: - - csharp - - vb - name: GetFBConfig(DisplayPtr, int, Span) - nameWithType: Glx.GetFBConfig(DisplayPtr, int, Span) - fullName: OpenTK.Graphics.Glx.Glx.GetFBConfig(OpenTK.Graphics.Glx.DisplayPtr, int, System.Span) - type: Method - source: - id: GetFBConfig - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 240 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: v1.3] - - [entry point: glXGetFBConfigs] - -
- example: [] - syntax: - content: public static GLXFBConfig* GetFBConfig(DisplayPtr dpy, int screen, Span nelements) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: screen - type: System.Int32 - - id: nelements - type: System.Span{System.Int32} - return: - type: OpenTK.Graphics.Glx.GLXFBConfig* - content.vb: Public Shared Function GetFBConfig(dpy As DisplayPtr, screen As Integer, nelements As Span(Of Integer)) As GLXFBConfig* - overload: OpenTK.Graphics.Glx.Glx.GetFBConfig* - nameWithType.vb: Glx.GetFBConfig(DisplayPtr, Integer, Span(Of Integer)) - fullName.vb: OpenTK.Graphics.Glx.Glx.GetFBConfig(OpenTK.Graphics.Glx.DisplayPtr, Integer, System.Span(Of Integer)) - name.vb: GetFBConfig(DisplayPtr, Integer, Span(Of Integer)) -- uid: OpenTK.Graphics.Glx.Glx.GetFBConfig(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32[]) - commentId: M:OpenTK.Graphics.Glx.Glx.GetFBConfig(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32[]) - id: GetFBConfig(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32[]) - parent: OpenTK.Graphics.Glx.Glx - langs: - - csharp - - vb - name: GetFBConfig(DisplayPtr, int, int[]) - nameWithType: Glx.GetFBConfig(DisplayPtr, int, int[]) - fullName: OpenTK.Graphics.Glx.Glx.GetFBConfig(OpenTK.Graphics.Glx.DisplayPtr, int, int[]) - type: Method - source: - id: GetFBConfig - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 250 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: v1.3] - - [entry point: glXGetFBConfigs] - -
- example: [] - syntax: - content: public static GLXFBConfig* GetFBConfig(DisplayPtr dpy, int screen, int[] nelements) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: screen - type: System.Int32 - - id: nelements - type: System.Int32[] - return: - type: OpenTK.Graphics.Glx.GLXFBConfig* - content.vb: Public Shared Function GetFBConfig(dpy As DisplayPtr, screen As Integer, nelements As Integer()) As GLXFBConfig* - overload: OpenTK.Graphics.Glx.Glx.GetFBConfig* - nameWithType.vb: Glx.GetFBConfig(DisplayPtr, Integer, Integer()) - fullName.vb: OpenTK.Graphics.Glx.Glx.GetFBConfig(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer()) - name.vb: GetFBConfig(DisplayPtr, Integer, Integer()) -- uid: OpenTK.Graphics.Glx.Glx.GetFBConfig(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32@) - commentId: M:OpenTK.Graphics.Glx.Glx.GetFBConfig(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32@) - id: GetFBConfig(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32@) - parent: OpenTK.Graphics.Glx.Glx - langs: - - csharp - - vb - name: GetFBConfig(DisplayPtr, int, ref int) - nameWithType: Glx.GetFBConfig(DisplayPtr, int, ref int) - fullName: OpenTK.Graphics.Glx.Glx.GetFBConfig(OpenTK.Graphics.Glx.DisplayPtr, int, ref int) - type: Method - source: - id: GetFBConfig - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 260 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: v1.3] - - [entry point: glXGetFBConfigs] - -
- example: [] - syntax: - content: public static GLXFBConfig* GetFBConfig(DisplayPtr dpy, int screen, ref int nelements) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: screen - type: System.Int32 - - id: nelements - type: System.Int32 - return: - type: OpenTK.Graphics.Glx.GLXFBConfig* - content.vb: Public Shared Function GetFBConfig(dpy As DisplayPtr, screen As Integer, nelements As Integer) As GLXFBConfig* - overload: OpenTK.Graphics.Glx.Glx.GetFBConfig* - nameWithType.vb: Glx.GetFBConfig(DisplayPtr, Integer, Integer) - fullName.vb: OpenTK.Graphics.Glx.Glx.GetFBConfig(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer) - name.vb: GetFBConfig(DisplayPtr, Integer, Integer) -- uid: OpenTK.Graphics.Glx.Glx.GetProcAddress(System.ReadOnlySpan{System.Byte}) - commentId: M:OpenTK.Graphics.Glx.Glx.GetProcAddress(System.ReadOnlySpan{System.Byte}) - id: GetProcAddress(System.ReadOnlySpan{System.Byte}) - parent: OpenTK.Graphics.Glx.Glx - langs: - - csharp - - vb - name: GetProcAddress(ReadOnlySpan) - nameWithType: Glx.GetProcAddress(ReadOnlySpan) - fullName: OpenTK.Graphics.Glx.Glx.GetProcAddress(System.ReadOnlySpan) - type: Method - source: - id: GetProcAddress - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 270 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: v1.4] - - [entry point: glXGetProcAddress] - -
- example: [] - syntax: - content: public static nint GetProcAddress(ReadOnlySpan procName) - parameters: - - id: procName - type: System.ReadOnlySpan{System.Byte} - return: - type: System.IntPtr - content.vb: Public Shared Function GetProcAddress(procName As ReadOnlySpan(Of Byte)) As IntPtr - overload: OpenTK.Graphics.Glx.Glx.GetProcAddress* - nameWithType.vb: Glx.GetProcAddress(ReadOnlySpan(Of Byte)) - fullName.vb: OpenTK.Graphics.Glx.Glx.GetProcAddress(System.ReadOnlySpan(Of Byte)) - name.vb: GetProcAddress(ReadOnlySpan(Of Byte)) -- uid: OpenTK.Graphics.Glx.Glx.GetProcAddress(System.Byte[]) - commentId: M:OpenTK.Graphics.Glx.Glx.GetProcAddress(System.Byte[]) - id: GetProcAddress(System.Byte[]) - parent: OpenTK.Graphics.Glx.Glx - langs: - - csharp - - vb - name: GetProcAddress(byte[]) - nameWithType: Glx.GetProcAddress(byte[]) - fullName: OpenTK.Graphics.Glx.Glx.GetProcAddress(byte[]) - type: Method - source: - id: GetProcAddress - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 280 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: v1.4] - - [entry point: glXGetProcAddress] - -
- example: [] - syntax: - content: public static nint GetProcAddress(byte[] procName) - parameters: - - id: procName - type: System.Byte[] - return: - type: System.IntPtr - content.vb: Public Shared Function GetProcAddress(procName As Byte()) As IntPtr - overload: OpenTK.Graphics.Glx.Glx.GetProcAddress* - nameWithType.vb: Glx.GetProcAddress(Byte()) - fullName.vb: OpenTK.Graphics.Glx.Glx.GetProcAddress(Byte()) - name.vb: GetProcAddress(Byte()) -- uid: OpenTK.Graphics.Glx.Glx.GetProcAddress(System.Byte@) - commentId: M:OpenTK.Graphics.Glx.Glx.GetProcAddress(System.Byte@) - id: GetProcAddress(System.Byte@) - parent: OpenTK.Graphics.Glx.Glx - langs: - - csharp - - vb - name: GetProcAddress(in byte) - nameWithType: Glx.GetProcAddress(in byte) - fullName: OpenTK.Graphics.Glx.Glx.GetProcAddress(in byte) - type: Method - source: - id: GetProcAddress - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 290 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: v1.4] - - [entry point: glXGetProcAddress] - -
- example: [] - syntax: - content: public static nint GetProcAddress(in byte procName) - parameters: - - id: procName - type: System.Byte - return: - type: System.IntPtr - content.vb: Public Shared Function GetProcAddress(procName As Byte) As IntPtr - overload: OpenTK.Graphics.Glx.Glx.GetProcAddress* - nameWithType.vb: Glx.GetProcAddress(Byte) - fullName.vb: OpenTK.Graphics.Glx.Glx.GetProcAddress(Byte) - name.vb: GetProcAddress(Byte) -- uid: OpenTK.Graphics.Glx.Glx.GetSelectedEvent(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Span{System.UInt64}) - commentId: M:OpenTK.Graphics.Glx.Glx.GetSelectedEvent(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Span{System.UInt64}) - id: GetSelectedEvent(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Span{System.UInt64}) - parent: OpenTK.Graphics.Glx.Glx - langs: - - csharp - - vb - name: GetSelectedEvent(DisplayPtr, GLXDrawable, Span) - nameWithType: Glx.GetSelectedEvent(DisplayPtr, GLXDrawable, Span) - fullName: OpenTK.Graphics.Glx.Glx.GetSelectedEvent(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, System.Span) - type: Method - source: - id: GetSelectedEvent - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 300 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: v1.3] - - [entry point: glXGetSelectedEvent] - -
- example: [] - syntax: - content: public static void GetSelectedEvent(DisplayPtr dpy, GLXDrawable draw, Span event_mask) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: draw - type: OpenTK.Graphics.Glx.GLXDrawable - - id: event_mask - type: System.Span{System.UInt64} - content.vb: Public Shared Sub GetSelectedEvent(dpy As DisplayPtr, draw As GLXDrawable, event_mask As Span(Of ULong)) - overload: OpenTK.Graphics.Glx.Glx.GetSelectedEvent* - nameWithType.vb: Glx.GetSelectedEvent(DisplayPtr, GLXDrawable, Span(Of ULong)) - fullName.vb: OpenTK.Graphics.Glx.Glx.GetSelectedEvent(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, System.Span(Of ULong)) - name.vb: GetSelectedEvent(DisplayPtr, GLXDrawable, Span(Of ULong)) -- uid: OpenTK.Graphics.Glx.Glx.GetSelectedEvent(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.UInt64[]) - commentId: M:OpenTK.Graphics.Glx.Glx.GetSelectedEvent(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.UInt64[]) - id: GetSelectedEvent(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.UInt64[]) - parent: OpenTK.Graphics.Glx.Glx - langs: - - csharp - - vb - name: GetSelectedEvent(DisplayPtr, GLXDrawable, ulong[]) - nameWithType: Glx.GetSelectedEvent(DisplayPtr, GLXDrawable, ulong[]) - fullName: OpenTK.Graphics.Glx.Glx.GetSelectedEvent(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, ulong[]) - type: Method - source: - id: GetSelectedEvent - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 308 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: v1.3] - - [entry point: glXGetSelectedEvent] - -
- example: [] - syntax: - content: public static void GetSelectedEvent(DisplayPtr dpy, GLXDrawable draw, ulong[] event_mask) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: draw - type: OpenTK.Graphics.Glx.GLXDrawable - - id: event_mask - type: System.UInt64[] - content.vb: Public Shared Sub GetSelectedEvent(dpy As DisplayPtr, draw As GLXDrawable, event_mask As ULong()) - overload: OpenTK.Graphics.Glx.Glx.GetSelectedEvent* - nameWithType.vb: Glx.GetSelectedEvent(DisplayPtr, GLXDrawable, ULong()) - fullName.vb: OpenTK.Graphics.Glx.Glx.GetSelectedEvent(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, ULong()) - name.vb: GetSelectedEvent(DisplayPtr, GLXDrawable, ULong()) -- uid: OpenTK.Graphics.Glx.Glx.GetSelectedEvent(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.UInt64@) - commentId: M:OpenTK.Graphics.Glx.Glx.GetSelectedEvent(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.UInt64@) - id: GetSelectedEvent(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.UInt64@) - parent: OpenTK.Graphics.Glx.Glx - langs: - - csharp - - vb - name: GetSelectedEvent(DisplayPtr, GLXDrawable, ref ulong) - nameWithType: Glx.GetSelectedEvent(DisplayPtr, GLXDrawable, ref ulong) - fullName: OpenTK.Graphics.Glx.Glx.GetSelectedEvent(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, ref ulong) - type: Method - source: - id: GetSelectedEvent - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 316 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: v1.3] - - [entry point: glXGetSelectedEvent] - -
- example: [] - syntax: - content: public static void GetSelectedEvent(DisplayPtr dpy, GLXDrawable draw, ref ulong event_mask) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: draw - type: OpenTK.Graphics.Glx.GLXDrawable - - id: event_mask - type: System.UInt64 - content.vb: Public Shared Sub GetSelectedEvent(dpy As DisplayPtr, draw As GLXDrawable, event_mask As ULong) - overload: OpenTK.Graphics.Glx.Glx.GetSelectedEvent* - nameWithType.vb: Glx.GetSelectedEvent(DisplayPtr, GLXDrawable, ULong) - fullName.vb: OpenTK.Graphics.Glx.Glx.GetSelectedEvent(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, ULong) - name.vb: GetSelectedEvent(DisplayPtr, GLXDrawable, ULong) -- uid: OpenTK.Graphics.Glx.Glx.QueryContext(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext,System.Int32,System.Span{System.Int32}) - commentId: M:OpenTK.Graphics.Glx.Glx.QueryContext(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext,System.Int32,System.Span{System.Int32}) - id: QueryContext(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext,System.Int32,System.Span{System.Int32}) - parent: OpenTK.Graphics.Glx.Glx - langs: - - csharp - - vb - name: QueryContext(DisplayPtr, GLXContext, int, Span) - nameWithType: Glx.QueryContext(DisplayPtr, GLXContext, int, Span) - fullName: OpenTK.Graphics.Glx.Glx.QueryContext(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXContext, int, System.Span) - type: Method - source: - id: QueryContext - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 324 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: v1.3] - - [entry point: glXQueryContext] - -
- example: [] - syntax: - content: public static int QueryContext(DisplayPtr dpy, GLXContext ctx, int attribute, Span value) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: ctx - type: OpenTK.Graphics.Glx.GLXContext - - id: attribute - type: System.Int32 - - id: value - type: System.Span{System.Int32} - return: - type: System.Int32 - content.vb: Public Shared Function QueryContext(dpy As DisplayPtr, ctx As GLXContext, attribute As Integer, value As Span(Of Integer)) As Integer - overload: OpenTK.Graphics.Glx.Glx.QueryContext* - nameWithType.vb: Glx.QueryContext(DisplayPtr, GLXContext, Integer, Span(Of Integer)) - fullName.vb: OpenTK.Graphics.Glx.Glx.QueryContext(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXContext, Integer, System.Span(Of Integer)) - name.vb: QueryContext(DisplayPtr, GLXContext, Integer, Span(Of Integer)) -- uid: OpenTK.Graphics.Glx.Glx.QueryContext(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext,System.Int32,System.Int32[]) - commentId: M:OpenTK.Graphics.Glx.Glx.QueryContext(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext,System.Int32,System.Int32[]) - id: QueryContext(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext,System.Int32,System.Int32[]) - parent: OpenTK.Graphics.Glx.Glx - langs: - - csharp - - vb - name: QueryContext(DisplayPtr, GLXContext, int, int[]) - nameWithType: Glx.QueryContext(DisplayPtr, GLXContext, int, int[]) - fullName: OpenTK.Graphics.Glx.Glx.QueryContext(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXContext, int, int[]) - type: Method - source: - id: QueryContext - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 334 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: v1.3] - - [entry point: glXQueryContext] - -
- example: [] - syntax: - content: public static int QueryContext(DisplayPtr dpy, GLXContext ctx, int attribute, int[] value) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: ctx - type: OpenTK.Graphics.Glx.GLXContext - - id: attribute - type: System.Int32 - - id: value - type: System.Int32[] - return: - type: System.Int32 - content.vb: Public Shared Function QueryContext(dpy As DisplayPtr, ctx As GLXContext, attribute As Integer, value As Integer()) As Integer - overload: OpenTK.Graphics.Glx.Glx.QueryContext* - nameWithType.vb: Glx.QueryContext(DisplayPtr, GLXContext, Integer, Integer()) - fullName.vb: OpenTK.Graphics.Glx.Glx.QueryContext(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXContext, Integer, Integer()) - name.vb: QueryContext(DisplayPtr, GLXContext, Integer, Integer()) -- uid: OpenTK.Graphics.Glx.Glx.QueryContext(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext,System.Int32,System.Int32@) - commentId: M:OpenTK.Graphics.Glx.Glx.QueryContext(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext,System.Int32,System.Int32@) - id: QueryContext(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXContext,System.Int32,System.Int32@) - parent: OpenTK.Graphics.Glx.Glx - langs: - - csharp - - vb - name: QueryContext(DisplayPtr, GLXContext, int, ref int) - nameWithType: Glx.QueryContext(DisplayPtr, GLXContext, int, ref int) - fullName: OpenTK.Graphics.Glx.Glx.QueryContext(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXContext, int, ref int) - type: Method - source: - id: QueryContext - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 344 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: v1.3] - - [entry point: glXQueryContext] - -
- example: [] - syntax: - content: public static int QueryContext(DisplayPtr dpy, GLXContext ctx, int attribute, ref int value) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: ctx - type: OpenTK.Graphics.Glx.GLXContext - - id: attribute - type: System.Int32 - - id: value - type: System.Int32 - return: - type: System.Int32 - content.vb: Public Shared Function QueryContext(dpy As DisplayPtr, ctx As GLXContext, attribute As Integer, value As Integer) As Integer - overload: OpenTK.Graphics.Glx.Glx.QueryContext* - nameWithType.vb: Glx.QueryContext(DisplayPtr, GLXContext, Integer, Integer) - fullName.vb: OpenTK.Graphics.Glx.Glx.QueryContext(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXContext, Integer, Integer) - name.vb: QueryContext(DisplayPtr, GLXContext, Integer, Integer) -- uid: OpenTK.Graphics.Glx.Glx.QueryDrawable(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32,System.Span{System.UInt32}) - commentId: M:OpenTK.Graphics.Glx.Glx.QueryDrawable(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32,System.Span{System.UInt32}) - id: QueryDrawable(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32,System.Span{System.UInt32}) - parent: OpenTK.Graphics.Glx.Glx - langs: - - csharp - - vb - name: QueryDrawable(DisplayPtr, GLXDrawable, int, Span) - nameWithType: Glx.QueryDrawable(DisplayPtr, GLXDrawable, int, Span) - fullName: OpenTK.Graphics.Glx.Glx.QueryDrawable(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, int, System.Span) - type: Method - source: - id: QueryDrawable - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 354 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: v1.3] - - [entry point: glXQueryDrawable] - -
- example: [] - syntax: - content: public static void QueryDrawable(DisplayPtr dpy, GLXDrawable draw, int attribute, Span value) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: draw - type: OpenTK.Graphics.Glx.GLXDrawable - - id: attribute - type: System.Int32 - - id: value - type: System.Span{System.UInt32} - content.vb: Public Shared Sub QueryDrawable(dpy As DisplayPtr, draw As GLXDrawable, attribute As Integer, value As Span(Of UInteger)) - overload: OpenTK.Graphics.Glx.Glx.QueryDrawable* - nameWithType.vb: Glx.QueryDrawable(DisplayPtr, GLXDrawable, Integer, Span(Of UInteger)) - fullName.vb: OpenTK.Graphics.Glx.Glx.QueryDrawable(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, Integer, System.Span(Of UInteger)) - name.vb: QueryDrawable(DisplayPtr, GLXDrawable, Integer, Span(Of UInteger)) -- uid: OpenTK.Graphics.Glx.Glx.QueryDrawable(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32,System.UInt32[]) - commentId: M:OpenTK.Graphics.Glx.Glx.QueryDrawable(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32,System.UInt32[]) - id: QueryDrawable(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32,System.UInt32[]) - parent: OpenTK.Graphics.Glx.Glx - langs: - - csharp - - vb - name: QueryDrawable(DisplayPtr, GLXDrawable, int, uint[]) - nameWithType: Glx.QueryDrawable(DisplayPtr, GLXDrawable, int, uint[]) - fullName: OpenTK.Graphics.Glx.Glx.QueryDrawable(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, int, uint[]) - type: Method - source: - id: QueryDrawable - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 362 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: v1.3] - - [entry point: glXQueryDrawable] - -
- example: [] - syntax: - content: public static void QueryDrawable(DisplayPtr dpy, GLXDrawable draw, int attribute, uint[] value) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: draw - type: OpenTK.Graphics.Glx.GLXDrawable - - id: attribute - type: System.Int32 - - id: value - type: System.UInt32[] - content.vb: Public Shared Sub QueryDrawable(dpy As DisplayPtr, draw As GLXDrawable, attribute As Integer, value As UInteger()) - overload: OpenTK.Graphics.Glx.Glx.QueryDrawable* - nameWithType.vb: Glx.QueryDrawable(DisplayPtr, GLXDrawable, Integer, UInteger()) - fullName.vb: OpenTK.Graphics.Glx.Glx.QueryDrawable(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, Integer, UInteger()) - name.vb: QueryDrawable(DisplayPtr, GLXDrawable, Integer, UInteger()) -- uid: OpenTK.Graphics.Glx.Glx.QueryDrawable(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32,System.UInt32@) - commentId: M:OpenTK.Graphics.Glx.Glx.QueryDrawable(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32,System.UInt32@) - id: QueryDrawable(OpenTK.Graphics.Glx.DisplayPtr,OpenTK.Graphics.Glx.GLXDrawable,System.Int32,System.UInt32@) - parent: OpenTK.Graphics.Glx.Glx - langs: - - csharp - - vb - name: QueryDrawable(DisplayPtr, GLXDrawable, int, ref uint) - nameWithType: Glx.QueryDrawable(DisplayPtr, GLXDrawable, int, ref uint) - fullName: OpenTK.Graphics.Glx.Glx.QueryDrawable(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, int, ref uint) - type: Method - source: - id: QueryDrawable - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 370 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: v1.3] - - [entry point: glXQueryDrawable] - -
- example: [] - syntax: - content: public static void QueryDrawable(DisplayPtr dpy, GLXDrawable draw, int attribute, ref uint value) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: draw - type: OpenTK.Graphics.Glx.GLXDrawable - - id: attribute - type: System.Int32 - - id: value - type: System.UInt32 - content.vb: Public Shared Sub QueryDrawable(dpy As DisplayPtr, draw As GLXDrawable, attribute As Integer, value As UInteger) - overload: OpenTK.Graphics.Glx.Glx.QueryDrawable* - nameWithType.vb: Glx.QueryDrawable(DisplayPtr, GLXDrawable, Integer, UInteger) - fullName.vb: OpenTK.Graphics.Glx.Glx.QueryDrawable(OpenTK.Graphics.Glx.DisplayPtr, OpenTK.Graphics.Glx.GLXDrawable, Integer, UInteger) - name.vb: QueryDrawable(DisplayPtr, GLXDrawable, Integer, UInteger) -- uid: OpenTK.Graphics.Glx.Glx.QueryExtension(OpenTK.Graphics.Glx.DisplayPtr,System.Span{System.Int32},System.Span{System.Int32}) - commentId: M:OpenTK.Graphics.Glx.Glx.QueryExtension(OpenTK.Graphics.Glx.DisplayPtr,System.Span{System.Int32},System.Span{System.Int32}) - id: QueryExtension(OpenTK.Graphics.Glx.DisplayPtr,System.Span{System.Int32},System.Span{System.Int32}) - parent: OpenTK.Graphics.Glx.Glx - langs: - - csharp - - vb - name: QueryExtension(DisplayPtr, Span, Span) - nameWithType: Glx.QueryExtension(DisplayPtr, Span, Span) - fullName: OpenTK.Graphics.Glx.Glx.QueryExtension(OpenTK.Graphics.Glx.DisplayPtr, System.Span, System.Span) - type: Method - source: - id: QueryExtension - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 378 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: v1.0] - - [entry point: glXQueryExtension] - -
- example: [] - syntax: - content: public static bool QueryExtension(DisplayPtr dpy, Span errorb, Span @event) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: errorb - type: System.Span{System.Int32} - - id: event - type: System.Span{System.Int32} - return: - type: System.Boolean - content.vb: Public Shared Function QueryExtension(dpy As DisplayPtr, errorb As Span(Of Integer), [event] As Span(Of Integer)) As Boolean - overload: OpenTK.Graphics.Glx.Glx.QueryExtension* - nameWithType.vb: Glx.QueryExtension(DisplayPtr, Span(Of Integer), Span(Of Integer)) - fullName.vb: OpenTK.Graphics.Glx.Glx.QueryExtension(OpenTK.Graphics.Glx.DisplayPtr, System.Span(Of Integer), System.Span(Of Integer)) - name.vb: QueryExtension(DisplayPtr, Span(Of Integer), Span(Of Integer)) -- uid: OpenTK.Graphics.Glx.Glx.QueryExtension(OpenTK.Graphics.Glx.DisplayPtr,System.Int32[],System.Int32[]) - commentId: M:OpenTK.Graphics.Glx.Glx.QueryExtension(OpenTK.Graphics.Glx.DisplayPtr,System.Int32[],System.Int32[]) - id: QueryExtension(OpenTK.Graphics.Glx.DisplayPtr,System.Int32[],System.Int32[]) - parent: OpenTK.Graphics.Glx.Glx - langs: - - csharp - - vb - name: QueryExtension(DisplayPtr, int[], int[]) - nameWithType: Glx.QueryExtension(DisplayPtr, int[], int[]) - fullName: OpenTK.Graphics.Glx.Glx.QueryExtension(OpenTK.Graphics.Glx.DisplayPtr, int[], int[]) - type: Method - source: - id: QueryExtension - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 391 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: v1.0] - - [entry point: glXQueryExtension] - -
- example: [] - syntax: - content: public static bool QueryExtension(DisplayPtr dpy, int[] errorb, int[] @event) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: errorb - type: System.Int32[] - - id: event - type: System.Int32[] - return: - type: System.Boolean - content.vb: Public Shared Function QueryExtension(dpy As DisplayPtr, errorb As Integer(), [event] As Integer()) As Boolean - overload: OpenTK.Graphics.Glx.Glx.QueryExtension* - nameWithType.vb: Glx.QueryExtension(DisplayPtr, Integer(), Integer()) - fullName.vb: OpenTK.Graphics.Glx.Glx.QueryExtension(OpenTK.Graphics.Glx.DisplayPtr, Integer(), Integer()) - name.vb: QueryExtension(DisplayPtr, Integer(), Integer()) -- uid: OpenTK.Graphics.Glx.Glx.QueryExtension(OpenTK.Graphics.Glx.DisplayPtr,System.Int32@,System.Int32@) - commentId: M:OpenTK.Graphics.Glx.Glx.QueryExtension(OpenTK.Graphics.Glx.DisplayPtr,System.Int32@,System.Int32@) - id: QueryExtension(OpenTK.Graphics.Glx.DisplayPtr,System.Int32@,System.Int32@) - parent: OpenTK.Graphics.Glx.Glx - langs: - - csharp - - vb - name: QueryExtension(DisplayPtr, ref int, ref int) - nameWithType: Glx.QueryExtension(DisplayPtr, ref int, ref int) - fullName: OpenTK.Graphics.Glx.Glx.QueryExtension(OpenTK.Graphics.Glx.DisplayPtr, ref int, ref int) - type: Method - source: - id: QueryExtension - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 404 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: v1.0] - - [entry point: glXQueryExtension] - -
- example: [] - syntax: - content: public static bool QueryExtension(DisplayPtr dpy, ref int errorb, ref int @event) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: errorb - type: System.Int32 - - id: event - type: System.Int32 - return: - type: System.Boolean - content.vb: Public Shared Function QueryExtension(dpy As DisplayPtr, errorb As Integer, [event] As Integer) As Boolean - overload: OpenTK.Graphics.Glx.Glx.QueryExtension* - nameWithType.vb: Glx.QueryExtension(DisplayPtr, Integer, Integer) - fullName.vb: OpenTK.Graphics.Glx.Glx.QueryExtension(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer) - name.vb: QueryExtension(DisplayPtr, Integer, Integer) -- uid: OpenTK.Graphics.Glx.Glx.QueryExtensionsString(OpenTK.Graphics.Glx.DisplayPtr,System.Int32) - commentId: M:OpenTK.Graphics.Glx.Glx.QueryExtensionsString(OpenTK.Graphics.Glx.DisplayPtr,System.Int32) - id: QueryExtensionsString(OpenTK.Graphics.Glx.DisplayPtr,System.Int32) - parent: OpenTK.Graphics.Glx.Glx - langs: - - csharp - - vb - name: QueryExtensionsString(DisplayPtr, int) - nameWithType: Glx.QueryExtensionsString(DisplayPtr, int) - fullName: OpenTK.Graphics.Glx.Glx.QueryExtensionsString(OpenTK.Graphics.Glx.DisplayPtr, int) - type: Method - source: - id: QueryExtensionsString - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 415 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - example: [] - syntax: - content: public static string? QueryExtensionsString(DisplayPtr dpy, int screen) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: screen - type: System.Int32 - return: - type: System.String - content.vb: Public Shared Function QueryExtensionsString(dpy As DisplayPtr, screen As Integer) As String - overload: OpenTK.Graphics.Glx.Glx.QueryExtensionsString* - nameWithType.vb: Glx.QueryExtensionsString(DisplayPtr, Integer) - fullName.vb: OpenTK.Graphics.Glx.Glx.QueryExtensionsString(OpenTK.Graphics.Glx.DisplayPtr, Integer) - name.vb: QueryExtensionsString(DisplayPtr, Integer) -- uid: OpenTK.Graphics.Glx.Glx.QueryServerString(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32) - commentId: M:OpenTK.Graphics.Glx.Glx.QueryServerString(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32) - id: QueryServerString(OpenTK.Graphics.Glx.DisplayPtr,System.Int32,System.Int32) - parent: OpenTK.Graphics.Glx.Glx - langs: - - csharp - - vb - name: QueryServerString(DisplayPtr, int, int) - nameWithType: Glx.QueryServerString(DisplayPtr, int, int) - fullName: OpenTK.Graphics.Glx.Glx.QueryServerString(OpenTK.Graphics.Glx.DisplayPtr, int, int) - type: Method - source: - id: QueryServerString - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 424 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - example: [] - syntax: - content: public static string? QueryServerString(DisplayPtr dpy, int screen, int name) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: screen - type: System.Int32 - - id: name - type: System.Int32 - return: - type: System.String - content.vb: Public Shared Function QueryServerString(dpy As DisplayPtr, screen As Integer, name As Integer) As String - overload: OpenTK.Graphics.Glx.Glx.QueryServerString* - nameWithType.vb: Glx.QueryServerString(DisplayPtr, Integer, Integer) - fullName.vb: OpenTK.Graphics.Glx.Glx.QueryServerString(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer) - name.vb: QueryServerString(DisplayPtr, Integer, Integer) -- uid: OpenTK.Graphics.Glx.Glx.QueryVersion(OpenTK.Graphics.Glx.DisplayPtr,System.Span{System.Int32},System.Span{System.Int32}) - commentId: M:OpenTK.Graphics.Glx.Glx.QueryVersion(OpenTK.Graphics.Glx.DisplayPtr,System.Span{System.Int32},System.Span{System.Int32}) - id: QueryVersion(OpenTK.Graphics.Glx.DisplayPtr,System.Span{System.Int32},System.Span{System.Int32}) - parent: OpenTK.Graphics.Glx.Glx - langs: - - csharp - - vb - name: QueryVersion(DisplayPtr, Span, Span) - nameWithType: Glx.QueryVersion(DisplayPtr, Span, Span) - fullName: OpenTK.Graphics.Glx.Glx.QueryVersion(OpenTK.Graphics.Glx.DisplayPtr, System.Span, System.Span) - type: Method - source: - id: QueryVersion - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 433 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: v1.0] - - [entry point: glXQueryVersion] - -
- example: [] - syntax: - content: public static bool QueryVersion(DisplayPtr dpy, Span maj, Span min) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: maj - type: System.Span{System.Int32} - - id: min - type: System.Span{System.Int32} - return: - type: System.Boolean - content.vb: Public Shared Function QueryVersion(dpy As DisplayPtr, maj As Span(Of Integer), min As Span(Of Integer)) As Boolean - overload: OpenTK.Graphics.Glx.Glx.QueryVersion* - nameWithType.vb: Glx.QueryVersion(DisplayPtr, Span(Of Integer), Span(Of Integer)) - fullName.vb: OpenTK.Graphics.Glx.Glx.QueryVersion(OpenTK.Graphics.Glx.DisplayPtr, System.Span(Of Integer), System.Span(Of Integer)) - name.vb: QueryVersion(DisplayPtr, Span(Of Integer), Span(Of Integer)) -- uid: OpenTK.Graphics.Glx.Glx.QueryVersion(OpenTK.Graphics.Glx.DisplayPtr,System.Int32[],System.Int32[]) - commentId: M:OpenTK.Graphics.Glx.Glx.QueryVersion(OpenTK.Graphics.Glx.DisplayPtr,System.Int32[],System.Int32[]) - id: QueryVersion(OpenTK.Graphics.Glx.DisplayPtr,System.Int32[],System.Int32[]) - parent: OpenTK.Graphics.Glx.Glx - langs: - - csharp - - vb - name: QueryVersion(DisplayPtr, int[], int[]) - nameWithType: Glx.QueryVersion(DisplayPtr, int[], int[]) - fullName: OpenTK.Graphics.Glx.Glx.QueryVersion(OpenTK.Graphics.Glx.DisplayPtr, int[], int[]) - type: Method - source: - id: QueryVersion - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 446 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: v1.0] - - [entry point: glXQueryVersion] - -
- example: [] - syntax: - content: public static bool QueryVersion(DisplayPtr dpy, int[] maj, int[] min) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: maj - type: System.Int32[] - - id: min - type: System.Int32[] - return: - type: System.Boolean - content.vb: Public Shared Function QueryVersion(dpy As DisplayPtr, maj As Integer(), min As Integer()) As Boolean - overload: OpenTK.Graphics.Glx.Glx.QueryVersion* - nameWithType.vb: Glx.QueryVersion(DisplayPtr, Integer(), Integer()) - fullName.vb: OpenTK.Graphics.Glx.Glx.QueryVersion(OpenTK.Graphics.Glx.DisplayPtr, Integer(), Integer()) - name.vb: QueryVersion(DisplayPtr, Integer(), Integer()) -- uid: OpenTK.Graphics.Glx.Glx.QueryVersion(OpenTK.Graphics.Glx.DisplayPtr,System.Int32@,System.Int32@) - commentId: M:OpenTK.Graphics.Glx.Glx.QueryVersion(OpenTK.Graphics.Glx.DisplayPtr,System.Int32@,System.Int32@) - id: QueryVersion(OpenTK.Graphics.Glx.DisplayPtr,System.Int32@,System.Int32@) - parent: OpenTK.Graphics.Glx.Glx - langs: - - csharp - - vb - name: QueryVersion(DisplayPtr, ref int, ref int) - nameWithType: Glx.QueryVersion(DisplayPtr, ref int, ref int) - fullName: OpenTK.Graphics.Glx.Glx.QueryVersion(OpenTK.Graphics.Glx.DisplayPtr, ref int, ref int) - type: Method - source: - id: QueryVersion - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Glx\GLX.Overloads.cs - startLine: 459 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: >- - [requires: v1.0] - - [entry point: glXQueryVersion] - -
- example: [] - syntax: - content: public static bool QueryVersion(DisplayPtr dpy, ref int maj, ref int min) - parameters: - - id: dpy - type: OpenTK.Graphics.Glx.DisplayPtr - - id: maj - type: System.Int32 - - id: min - type: System.Int32 - return: - type: System.Boolean - content.vb: Public Shared Function QueryVersion(dpy As DisplayPtr, maj As Integer, min As Integer) As Boolean - overload: OpenTK.Graphics.Glx.Glx.QueryVersion* - nameWithType.vb: Glx.QueryVersion(DisplayPtr, Integer, Integer) - fullName.vb: OpenTK.Graphics.Glx.Glx.QueryVersion(OpenTK.Graphics.Glx.DisplayPtr, Integer, Integer) - name.vb: QueryVersion(DisplayPtr, Integer, Integer) -references: -- uid: OpenTK.Graphics.Glx - commentId: N:OpenTK.Graphics.Glx - href: OpenTK.html - name: OpenTK.Graphics.Glx - nameWithType: OpenTK.Graphics.Glx - fullName: OpenTK.Graphics.Glx - spec.csharp: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Glx - name: Glx - href: OpenTK.Graphics.Glx.html - spec.vb: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Glx - name: Glx - href: OpenTK.Graphics.Glx.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: System.Object.Equals(System.Object) - commentId: M:System.Object.Equals(System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - name: Equals(object) - nameWithType: object.Equals(object) - fullName: object.Equals(object) - nameWithType.vb: Object.Equals(Object) - fullName.vb: Object.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetHashCode - commentId: M:System.Object.GetHashCode - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - name: GetHashCode() - nameWithType: object.GetHashCode() - fullName: object.GetHashCode() - nameWithType.vb: Object.GetHashCode() - fullName.vb: Object.GetHashCode() - spec.csharp: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.MemberwiseClone - commentId: M:System.Object.MemberwiseClone - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - name: MemberwiseClone() - nameWithType: object.MemberwiseClone() - fullName: object.MemberwiseClone() - nameWithType.vb: Object.MemberwiseClone() - fullName.vb: Object.MemberwiseClone() - spec.csharp: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) - spec.vb: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.ToString - commentId: M:System.Object.ToString - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - name: ToString() - nameWithType: object.ToString() - fullName: object.ToString() - nameWithType.vb: Object.ToString() - fullName.vb: Object.ToString() - spec.csharp: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) - spec.vb: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: OpenTK.Graphics.Glx.Glx.ChooseFBConfig* - commentId: Overload:OpenTK.Graphics.Glx.Glx.ChooseFBConfig - href: OpenTK.Graphics.Glx.Glx.html#OpenTK_Graphics_Glx_Glx_ChooseFBConfig_OpenTK_Graphics_Glx_DisplayPtr_System_Int32_System_Int32__System_Int32__ - name: ChooseFBConfig - nameWithType: Glx.ChooseFBConfig - fullName: OpenTK.Graphics.Glx.Glx.ChooseFBConfig -- uid: OpenTK.Graphics.Glx.DisplayPtr - commentId: T:OpenTK.Graphics.Glx.DisplayPtr - parent: OpenTK.Graphics.Glx - href: OpenTK.Graphics.Glx.DisplayPtr.html - name: DisplayPtr - nameWithType: DisplayPtr - fullName: OpenTK.Graphics.Glx.DisplayPtr -- uid: System.Int32 - commentId: T:System.Int32 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - name: int - nameWithType: int - fullName: int - nameWithType.vb: Integer - fullName.vb: Integer - name.vb: Integer -- uid: System.Int32* - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - name: int* - nameWithType: int* - fullName: int* - nameWithType.vb: Integer* - fullName.vb: Integer* - name.vb: Integer* - spec.csharp: - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '*' - spec.vb: - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '*' -- uid: OpenTK.Graphics.Glx.GLXFBConfig* - isExternal: true - href: OpenTK.Graphics.Glx.GLXFBConfig.html - name: GLXFBConfig* - nameWithType: GLXFBConfig* - fullName: OpenTK.Graphics.Glx.GLXFBConfig* - spec.csharp: - - uid: OpenTK.Graphics.Glx.GLXFBConfig - name: GLXFBConfig - href: OpenTK.Graphics.Glx.GLXFBConfig.html - - name: '*' - spec.vb: - - uid: OpenTK.Graphics.Glx.GLXFBConfig - name: GLXFBConfig - href: OpenTK.Graphics.Glx.GLXFBConfig.html - - name: '*' -- uid: OpenTK.Graphics.Glx.Glx.ChooseVisual* - commentId: Overload:OpenTK.Graphics.Glx.Glx.ChooseVisual - href: OpenTK.Graphics.Glx.Glx.html#OpenTK_Graphics_Glx_Glx_ChooseVisual_OpenTK_Graphics_Glx_DisplayPtr_System_Int32_System_Int32__ - name: ChooseVisual - nameWithType: Glx.ChooseVisual - fullName: OpenTK.Graphics.Glx.Glx.ChooseVisual -- uid: OpenTK.Graphics.Glx.XVisualInfoPtr - commentId: T:OpenTK.Graphics.Glx.XVisualInfoPtr - parent: OpenTK.Graphics.Glx - href: OpenTK.Graphics.Glx.XVisualInfoPtr.html - name: XVisualInfoPtr - nameWithType: XVisualInfoPtr - fullName: OpenTK.Graphics.Glx.XVisualInfoPtr -- uid: OpenTK.Graphics.Glx.Glx.CopyContext* - commentId: Overload:OpenTK.Graphics.Glx.Glx.CopyContext - href: OpenTK.Graphics.Glx.Glx.html#OpenTK_Graphics_Glx_Glx_CopyContext_OpenTK_Graphics_Glx_DisplayPtr_OpenTK_Graphics_Glx_GLXContext_OpenTK_Graphics_Glx_GLXContext_System_UInt64_ - name: CopyContext - nameWithType: Glx.CopyContext - fullName: OpenTK.Graphics.Glx.Glx.CopyContext -- uid: OpenTK.Graphics.Glx.GLXContext - commentId: T:OpenTK.Graphics.Glx.GLXContext - parent: OpenTK.Graphics.Glx - href: OpenTK.Graphics.Glx.GLXContext.html - name: GLXContext - nameWithType: GLXContext - fullName: OpenTK.Graphics.Glx.GLXContext -- uid: System.UInt64 - commentId: T:System.UInt64 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint64 - name: ulong - nameWithType: ulong - fullName: ulong - nameWithType.vb: ULong - fullName.vb: ULong - name.vb: ULong -- uid: OpenTK.Graphics.Glx.Glx.CreateContext* - commentId: Overload:OpenTK.Graphics.Glx.Glx.CreateContext - href: OpenTK.Graphics.Glx.Glx.html#OpenTK_Graphics_Glx_Glx_CreateContext_OpenTK_Graphics_Glx_DisplayPtr_OpenTK_Graphics_Glx_XVisualInfoPtr_OpenTK_Graphics_Glx_GLXContext_System_Boolean_ - name: CreateContext - nameWithType: Glx.CreateContext - fullName: OpenTK.Graphics.Glx.Glx.CreateContext -- uid: System.Boolean - commentId: T:System.Boolean - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - name: bool - nameWithType: bool - fullName: bool - nameWithType.vb: Boolean - fullName.vb: Boolean - name.vb: Boolean -- uid: OpenTK.Graphics.Glx.Glx.CreateGLXPixmap* - commentId: Overload:OpenTK.Graphics.Glx.Glx.CreateGLXPixmap - href: OpenTK.Graphics.Glx.Glx.html#OpenTK_Graphics_Glx_Glx_CreateGLXPixmap_OpenTK_Graphics_Glx_DisplayPtr_OpenTK_Graphics_Glx_XVisualInfoPtr_OpenTK_Graphics_Glx_Pixmap_ - name: CreateGLXPixmap - nameWithType: Glx.CreateGLXPixmap - fullName: OpenTK.Graphics.Glx.Glx.CreateGLXPixmap -- uid: OpenTK.Graphics.Glx.Pixmap - commentId: T:OpenTK.Graphics.Glx.Pixmap - parent: OpenTK.Graphics.Glx - href: OpenTK.Graphics.Glx.Pixmap.html - name: Pixmap - nameWithType: Pixmap - fullName: OpenTK.Graphics.Glx.Pixmap -- uid: OpenTK.Graphics.Glx.GLXPixmap - commentId: T:OpenTK.Graphics.Glx.GLXPixmap - parent: OpenTK.Graphics.Glx - href: OpenTK.Graphics.Glx.GLXPixmap.html - name: GLXPixmap - nameWithType: GLXPixmap - fullName: OpenTK.Graphics.Glx.GLXPixmap -- uid: OpenTK.Graphics.Glx.Glx.CreateNewContext* - commentId: Overload:OpenTK.Graphics.Glx.Glx.CreateNewContext - href: OpenTK.Graphics.Glx.Glx.html#OpenTK_Graphics_Glx_Glx_CreateNewContext_OpenTK_Graphics_Glx_DisplayPtr_OpenTK_Graphics_Glx_GLXFBConfig_System_Int32_OpenTK_Graphics_Glx_GLXContext_System_Boolean_ - name: CreateNewContext - nameWithType: Glx.CreateNewContext - fullName: OpenTK.Graphics.Glx.Glx.CreateNewContext -- uid: OpenTK.Graphics.Glx.GLXFBConfig - commentId: T:OpenTK.Graphics.Glx.GLXFBConfig - parent: OpenTK.Graphics.Glx - href: OpenTK.Graphics.Glx.GLXFBConfig.html - name: GLXFBConfig - nameWithType: GLXFBConfig - fullName: OpenTK.Graphics.Glx.GLXFBConfig -- uid: OpenTK.Graphics.Glx.Glx.CreatePbuffer* - commentId: Overload:OpenTK.Graphics.Glx.Glx.CreatePbuffer - href: OpenTK.Graphics.Glx.Glx.html#OpenTK_Graphics_Glx_Glx_CreatePbuffer_OpenTK_Graphics_Glx_DisplayPtr_OpenTK_Graphics_Glx_GLXFBConfig_System_Int32__ - name: CreatePbuffer - nameWithType: Glx.CreatePbuffer - fullName: OpenTK.Graphics.Glx.Glx.CreatePbuffer -- uid: OpenTK.Graphics.Glx.GLXPbuffer - commentId: T:OpenTK.Graphics.Glx.GLXPbuffer - parent: OpenTK.Graphics.Glx - href: OpenTK.Graphics.Glx.GLXPbuffer.html - name: GLXPbuffer - nameWithType: GLXPbuffer - fullName: OpenTK.Graphics.Glx.GLXPbuffer -- uid: OpenTK.Graphics.Glx.Glx.CreatePixmap* - commentId: Overload:OpenTK.Graphics.Glx.Glx.CreatePixmap - href: OpenTK.Graphics.Glx.Glx.html#OpenTK_Graphics_Glx_Glx_CreatePixmap_OpenTK_Graphics_Glx_DisplayPtr_OpenTK_Graphics_Glx_GLXFBConfig_OpenTK_Graphics_Glx_Pixmap_System_Int32__ - name: CreatePixmap - nameWithType: Glx.CreatePixmap - fullName: OpenTK.Graphics.Glx.Glx.CreatePixmap -- uid: OpenTK.Graphics.Glx.Glx.CreateWindow* - commentId: Overload:OpenTK.Graphics.Glx.Glx.CreateWindow - href: OpenTK.Graphics.Glx.Glx.html#OpenTK_Graphics_Glx_Glx_CreateWindow_OpenTK_Graphics_Glx_DisplayPtr_OpenTK_Graphics_Glx_GLXFBConfig_OpenTK_Graphics_Glx_Window_System_Int32__ - name: CreateWindow - nameWithType: Glx.CreateWindow - fullName: OpenTK.Graphics.Glx.Glx.CreateWindow -- uid: OpenTK.Graphics.Glx.Window - commentId: T:OpenTK.Graphics.Glx.Window - parent: OpenTK.Graphics.Glx - href: OpenTK.Graphics.Glx.Window.html - name: Window - nameWithType: Window - fullName: OpenTK.Graphics.Glx.Window -- uid: OpenTK.Graphics.Glx.GLXWindow - commentId: T:OpenTK.Graphics.Glx.GLXWindow - parent: OpenTK.Graphics.Glx - href: OpenTK.Graphics.Glx.GLXWindow.html - name: GLXWindow - nameWithType: GLXWindow - fullName: OpenTK.Graphics.Glx.GLXWindow -- uid: OpenTK.Graphics.Glx.Glx.DestroyContext* - commentId: Overload:OpenTK.Graphics.Glx.Glx.DestroyContext - href: OpenTK.Graphics.Glx.Glx.html#OpenTK_Graphics_Glx_Glx_DestroyContext_OpenTK_Graphics_Glx_DisplayPtr_OpenTK_Graphics_Glx_GLXContext_ - name: DestroyContext - nameWithType: Glx.DestroyContext - fullName: OpenTK.Graphics.Glx.Glx.DestroyContext -- uid: OpenTK.Graphics.Glx.Glx.DestroyGLXPixmap* - commentId: Overload:OpenTK.Graphics.Glx.Glx.DestroyGLXPixmap - href: OpenTK.Graphics.Glx.Glx.html#OpenTK_Graphics_Glx_Glx_DestroyGLXPixmap_OpenTK_Graphics_Glx_DisplayPtr_OpenTK_Graphics_Glx_GLXPixmap_ - name: DestroyGLXPixmap - nameWithType: Glx.DestroyGLXPixmap - fullName: OpenTK.Graphics.Glx.Glx.DestroyGLXPixmap -- uid: OpenTK.Graphics.Glx.Glx.DestroyPbuffer* - commentId: Overload:OpenTK.Graphics.Glx.Glx.DestroyPbuffer - href: OpenTK.Graphics.Glx.Glx.html#OpenTK_Graphics_Glx_Glx_DestroyPbuffer_OpenTK_Graphics_Glx_DisplayPtr_OpenTK_Graphics_Glx_GLXPbuffer_ - name: DestroyPbuffer - nameWithType: Glx.DestroyPbuffer - fullName: OpenTK.Graphics.Glx.Glx.DestroyPbuffer -- uid: OpenTK.Graphics.Glx.Glx.DestroyPixmap* - commentId: Overload:OpenTK.Graphics.Glx.Glx.DestroyPixmap - href: OpenTK.Graphics.Glx.Glx.html#OpenTK_Graphics_Glx_Glx_DestroyPixmap_OpenTK_Graphics_Glx_DisplayPtr_OpenTK_Graphics_Glx_GLXPixmap_ - name: DestroyPixmap - nameWithType: Glx.DestroyPixmap - fullName: OpenTK.Graphics.Glx.Glx.DestroyPixmap -- uid: OpenTK.Graphics.Glx.Glx.DestroyWindow* - commentId: Overload:OpenTK.Graphics.Glx.Glx.DestroyWindow - href: OpenTK.Graphics.Glx.Glx.html#OpenTK_Graphics_Glx_Glx_DestroyWindow_OpenTK_Graphics_Glx_DisplayPtr_OpenTK_Graphics_Glx_GLXWindow_ - name: DestroyWindow - nameWithType: Glx.DestroyWindow - fullName: OpenTK.Graphics.Glx.Glx.DestroyWindow -- uid: OpenTK.Graphics.Glx.Glx.GetClientString_* - commentId: Overload:OpenTK.Graphics.Glx.Glx.GetClientString_ - href: OpenTK.Graphics.Glx.Glx.html#OpenTK_Graphics_Glx_Glx_GetClientString__OpenTK_Graphics_Glx_DisplayPtr_System_Int32_ - name: GetClientString_ - nameWithType: Glx.GetClientString_ - fullName: OpenTK.Graphics.Glx.Glx.GetClientString_ -- uid: System.Byte* - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.byte - name: byte* - nameWithType: byte* - fullName: byte* - nameWithType.vb: Byte* - fullName.vb: Byte* - name.vb: Byte* - spec.csharp: - - uid: System.Byte - name: byte - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.byte - - name: '*' - spec.vb: - - uid: System.Byte - name: Byte - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.byte - - name: '*' -- uid: OpenTK.Graphics.Glx.Glx.GetConfig* - commentId: Overload:OpenTK.Graphics.Glx.Glx.GetConfig - href: OpenTK.Graphics.Glx.Glx.html#OpenTK_Graphics_Glx_Glx_GetConfig_OpenTK_Graphics_Glx_DisplayPtr_OpenTK_Graphics_Glx_XVisualInfoPtr_System_Int32_System_Int32__ - name: GetConfig - nameWithType: Glx.GetConfig - fullName: OpenTK.Graphics.Glx.Glx.GetConfig -- uid: OpenTK.Graphics.Glx.Glx.GetCurrentContext* - commentId: Overload:OpenTK.Graphics.Glx.Glx.GetCurrentContext - href: OpenTK.Graphics.Glx.Glx.html#OpenTK_Graphics_Glx_Glx_GetCurrentContext - name: GetCurrentContext - nameWithType: Glx.GetCurrentContext - fullName: OpenTK.Graphics.Glx.Glx.GetCurrentContext -- uid: OpenTK.Graphics.Glx.Glx.GetCurrentDisplay* - commentId: Overload:OpenTK.Graphics.Glx.Glx.GetCurrentDisplay - href: OpenTK.Graphics.Glx.Glx.html#OpenTK_Graphics_Glx_Glx_GetCurrentDisplay - name: GetCurrentDisplay - nameWithType: Glx.GetCurrentDisplay - fullName: OpenTK.Graphics.Glx.Glx.GetCurrentDisplay -- uid: OpenTK.Graphics.Glx.Glx.GetCurrentDrawable* - commentId: Overload:OpenTK.Graphics.Glx.Glx.GetCurrentDrawable - href: OpenTK.Graphics.Glx.Glx.html#OpenTK_Graphics_Glx_Glx_GetCurrentDrawable - name: GetCurrentDrawable - nameWithType: Glx.GetCurrentDrawable - fullName: OpenTK.Graphics.Glx.Glx.GetCurrentDrawable -- uid: OpenTK.Graphics.Glx.GLXDrawable - commentId: T:OpenTK.Graphics.Glx.GLXDrawable - parent: OpenTK.Graphics.Glx - href: OpenTK.Graphics.Glx.GLXDrawable.html - name: GLXDrawable - nameWithType: GLXDrawable - fullName: OpenTK.Graphics.Glx.GLXDrawable -- uid: OpenTK.Graphics.Glx.Glx.GetCurrentReadDrawable* - commentId: Overload:OpenTK.Graphics.Glx.Glx.GetCurrentReadDrawable - href: OpenTK.Graphics.Glx.Glx.html#OpenTK_Graphics_Glx_Glx_GetCurrentReadDrawable - name: GetCurrentReadDrawable - nameWithType: Glx.GetCurrentReadDrawable - fullName: OpenTK.Graphics.Glx.Glx.GetCurrentReadDrawable -- uid: OpenTK.Graphics.Glx.Glx.GetFBConfigAttrib* - commentId: Overload:OpenTK.Graphics.Glx.Glx.GetFBConfigAttrib - href: OpenTK.Graphics.Glx.Glx.html#OpenTK_Graphics_Glx_Glx_GetFBConfigAttrib_OpenTK_Graphics_Glx_DisplayPtr_OpenTK_Graphics_Glx_GLXFBConfig_System_Int32_System_Int32__ - name: GetFBConfigAttrib - nameWithType: Glx.GetFBConfigAttrib - fullName: OpenTK.Graphics.Glx.Glx.GetFBConfigAttrib -- uid: OpenTK.Graphics.Glx.Glx.GetFBConfigs* - commentId: Overload:OpenTK.Graphics.Glx.Glx.GetFBConfigs - href: OpenTK.Graphics.Glx.Glx.html#OpenTK_Graphics_Glx_Glx_GetFBConfigs_OpenTK_Graphics_Glx_DisplayPtr_System_Int32_System_Int32__ - name: GetFBConfigs - nameWithType: Glx.GetFBConfigs - fullName: OpenTK.Graphics.Glx.Glx.GetFBConfigs -- uid: OpenTK.Graphics.Glx.Glx.GetProcAddress* - commentId: Overload:OpenTK.Graphics.Glx.Glx.GetProcAddress - href: OpenTK.Graphics.Glx.Glx.html#OpenTK_Graphics_Glx_Glx_GetProcAddress_System_Byte__ - name: GetProcAddress - nameWithType: Glx.GetProcAddress - fullName: OpenTK.Graphics.Glx.Glx.GetProcAddress -- uid: System.IntPtr - commentId: T:System.IntPtr - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: nint - nameWithType: nint - fullName: nint - nameWithType.vb: IntPtr - fullName.vb: System.IntPtr - name.vb: IntPtr -- uid: OpenTK.Graphics.Glx.Glx.GetSelectedEvent* - commentId: Overload:OpenTK.Graphics.Glx.Glx.GetSelectedEvent - href: OpenTK.Graphics.Glx.Glx.html#OpenTK_Graphics_Glx_Glx_GetSelectedEvent_OpenTK_Graphics_Glx_DisplayPtr_OpenTK_Graphics_Glx_GLXDrawable_System_UInt64__ - name: GetSelectedEvent - nameWithType: Glx.GetSelectedEvent - fullName: OpenTK.Graphics.Glx.Glx.GetSelectedEvent -- uid: System.UInt64* - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint64 - name: ulong* - nameWithType: ulong* - fullName: ulong* - nameWithType.vb: ULong* - fullName.vb: ULong* - name.vb: ULong* - spec.csharp: - - uid: System.UInt64 - name: ulong - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint64 - - name: '*' - spec.vb: - - uid: System.UInt64 - name: ULong - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint64 - - name: '*' -- uid: OpenTK.Graphics.Glx.Glx.GetVisualFromFBConfig* - commentId: Overload:OpenTK.Graphics.Glx.Glx.GetVisualFromFBConfig - href: OpenTK.Graphics.Glx.Glx.html#OpenTK_Graphics_Glx_Glx_GetVisualFromFBConfig_OpenTK_Graphics_Glx_DisplayPtr_OpenTK_Graphics_Glx_GLXFBConfig_ - name: GetVisualFromFBConfig - nameWithType: Glx.GetVisualFromFBConfig - fullName: OpenTK.Graphics.Glx.Glx.GetVisualFromFBConfig -- uid: OpenTK.Graphics.Glx.Glx.IsDirect* - commentId: Overload:OpenTK.Graphics.Glx.Glx.IsDirect - href: OpenTK.Graphics.Glx.Glx.html#OpenTK_Graphics_Glx_Glx_IsDirect_OpenTK_Graphics_Glx_DisplayPtr_OpenTK_Graphics_Glx_GLXContext_ - name: IsDirect - nameWithType: Glx.IsDirect - fullName: OpenTK.Graphics.Glx.Glx.IsDirect -- uid: OpenTK.Graphics.Glx.Glx.MakeContextCurrent* - commentId: Overload:OpenTK.Graphics.Glx.Glx.MakeContextCurrent - href: OpenTK.Graphics.Glx.Glx.html#OpenTK_Graphics_Glx_Glx_MakeContextCurrent_OpenTK_Graphics_Glx_DisplayPtr_OpenTK_Graphics_Glx_GLXDrawable_OpenTK_Graphics_Glx_GLXDrawable_OpenTK_Graphics_Glx_GLXContext_ - name: MakeContextCurrent - nameWithType: Glx.MakeContextCurrent - fullName: OpenTK.Graphics.Glx.Glx.MakeContextCurrent -- uid: OpenTK.Graphics.Glx.Glx.MakeCurrent* - commentId: Overload:OpenTK.Graphics.Glx.Glx.MakeCurrent - href: OpenTK.Graphics.Glx.Glx.html#OpenTK_Graphics_Glx_Glx_MakeCurrent_OpenTK_Graphics_Glx_DisplayPtr_OpenTK_Graphics_Glx_GLXDrawable_OpenTK_Graphics_Glx_GLXContext_ - name: MakeCurrent - nameWithType: Glx.MakeCurrent - fullName: OpenTK.Graphics.Glx.Glx.MakeCurrent -- uid: OpenTK.Graphics.Glx.Glx.QueryContext* - commentId: Overload:OpenTK.Graphics.Glx.Glx.QueryContext - href: OpenTK.Graphics.Glx.Glx.html#OpenTK_Graphics_Glx_Glx_QueryContext_OpenTK_Graphics_Glx_DisplayPtr_OpenTK_Graphics_Glx_GLXContext_System_Int32_System_Int32__ - name: QueryContext - nameWithType: Glx.QueryContext - fullName: OpenTK.Graphics.Glx.Glx.QueryContext -- uid: OpenTK.Graphics.Glx.Glx.QueryDrawable* - commentId: Overload:OpenTK.Graphics.Glx.Glx.QueryDrawable - href: OpenTK.Graphics.Glx.Glx.html#OpenTK_Graphics_Glx_Glx_QueryDrawable_OpenTK_Graphics_Glx_DisplayPtr_OpenTK_Graphics_Glx_GLXDrawable_System_Int32_System_UInt32__ - name: QueryDrawable - nameWithType: Glx.QueryDrawable - fullName: OpenTK.Graphics.Glx.Glx.QueryDrawable -- uid: System.UInt32* - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - name: uint* - nameWithType: uint* - fullName: uint* - nameWithType.vb: UInteger* - fullName.vb: UInteger* - name.vb: UInteger* - spec.csharp: - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: '*' - spec.vb: - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: '*' -- uid: OpenTK.Graphics.Glx.Glx.QueryExtension* - commentId: Overload:OpenTK.Graphics.Glx.Glx.QueryExtension - href: OpenTK.Graphics.Glx.Glx.html#OpenTK_Graphics_Glx_Glx_QueryExtension_OpenTK_Graphics_Glx_DisplayPtr_System_Int32__System_Int32__ - name: QueryExtension - nameWithType: Glx.QueryExtension - fullName: OpenTK.Graphics.Glx.Glx.QueryExtension -- uid: OpenTK.Graphics.Glx.Glx.QueryExtensionsString_* - commentId: Overload:OpenTK.Graphics.Glx.Glx.QueryExtensionsString_ - href: OpenTK.Graphics.Glx.Glx.html#OpenTK_Graphics_Glx_Glx_QueryExtensionsString__OpenTK_Graphics_Glx_DisplayPtr_System_Int32_ - name: QueryExtensionsString_ - nameWithType: Glx.QueryExtensionsString_ - fullName: OpenTK.Graphics.Glx.Glx.QueryExtensionsString_ -- uid: OpenTK.Graphics.Glx.Glx.QueryServerString_* - commentId: Overload:OpenTK.Graphics.Glx.Glx.QueryServerString_ - href: OpenTK.Graphics.Glx.Glx.html#OpenTK_Graphics_Glx_Glx_QueryServerString__OpenTK_Graphics_Glx_DisplayPtr_System_Int32_System_Int32_ - name: QueryServerString_ - nameWithType: Glx.QueryServerString_ - fullName: OpenTK.Graphics.Glx.Glx.QueryServerString_ -- uid: OpenTK.Graphics.Glx.Glx.QueryVersion* - commentId: Overload:OpenTK.Graphics.Glx.Glx.QueryVersion - href: OpenTK.Graphics.Glx.Glx.html#OpenTK_Graphics_Glx_Glx_QueryVersion_OpenTK_Graphics_Glx_DisplayPtr_System_Int32__System_Int32__ - name: QueryVersion - nameWithType: Glx.QueryVersion - fullName: OpenTK.Graphics.Glx.Glx.QueryVersion -- uid: OpenTK.Graphics.Glx.Glx.SelectEvent* - commentId: Overload:OpenTK.Graphics.Glx.Glx.SelectEvent - href: OpenTK.Graphics.Glx.Glx.html#OpenTK_Graphics_Glx_Glx_SelectEvent_OpenTK_Graphics_Glx_DisplayPtr_OpenTK_Graphics_Glx_GLXDrawable_System_UInt64_ - name: SelectEvent - nameWithType: Glx.SelectEvent - fullName: OpenTK.Graphics.Glx.Glx.SelectEvent -- uid: OpenTK.Graphics.Glx.Glx.SwapBuffers* - commentId: Overload:OpenTK.Graphics.Glx.Glx.SwapBuffers - href: OpenTK.Graphics.Glx.Glx.html#OpenTK_Graphics_Glx_Glx_SwapBuffers_OpenTK_Graphics_Glx_DisplayPtr_OpenTK_Graphics_Glx_GLXDrawable_ - name: SwapBuffers - nameWithType: Glx.SwapBuffers - fullName: OpenTK.Graphics.Glx.Glx.SwapBuffers -- uid: OpenTK.Graphics.Glx.Glx.UseXFont* - commentId: Overload:OpenTK.Graphics.Glx.Glx.UseXFont - href: OpenTK.Graphics.Glx.Glx.html#OpenTK_Graphics_Glx_Glx_UseXFont_OpenTK_Graphics_Glx_Font_System_Int32_System_Int32_System_Int32_ - name: UseXFont - nameWithType: Glx.UseXFont - fullName: OpenTK.Graphics.Glx.Glx.UseXFont -- uid: OpenTK.Graphics.Glx.Font - commentId: T:OpenTK.Graphics.Glx.Font - parent: OpenTK.Graphics.Glx - href: OpenTK.Graphics.Glx.Font.html - name: Font - nameWithType: Font - fullName: OpenTK.Graphics.Glx.Font -- uid: OpenTK.Graphics.Glx.Glx.WaitGL* - commentId: Overload:OpenTK.Graphics.Glx.Glx.WaitGL - href: OpenTK.Graphics.Glx.Glx.html#OpenTK_Graphics_Glx_Glx_WaitGL - name: WaitGL - nameWithType: Glx.WaitGL - fullName: OpenTK.Graphics.Glx.Glx.WaitGL -- uid: OpenTK.Graphics.Glx.Glx.WaitX* - commentId: Overload:OpenTK.Graphics.Glx.Glx.WaitX - href: OpenTK.Graphics.Glx.Glx.html#OpenTK_Graphics_Glx_Glx_WaitX - name: WaitX - nameWithType: Glx.WaitX - fullName: OpenTK.Graphics.Glx.Glx.WaitX -- uid: System.ReadOnlySpan{System.Int32} - commentId: T:System.ReadOnlySpan{System.Int32} - parent: System - definition: System.ReadOnlySpan`1 - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - name: ReadOnlySpan - nameWithType: ReadOnlySpan - fullName: System.ReadOnlySpan - nameWithType.vb: ReadOnlySpan(Of Integer) - fullName.vb: System.ReadOnlySpan(Of Integer) - name.vb: ReadOnlySpan(Of Integer) - spec.csharp: - - uid: System.ReadOnlySpan`1 - name: ReadOnlySpan - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - - name: < - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '>' - spec.vb: - - uid: System.ReadOnlySpan`1 - name: ReadOnlySpan - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - - name: ( - - name: Of - - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) -- uid: System.Span{System.Int32} - commentId: T:System.Span{System.Int32} - parent: System - definition: System.Span`1 - href: https://learn.microsoft.com/dotnet/api/system.span-1 - name: Span - nameWithType: Span - fullName: System.Span - nameWithType.vb: Span(Of Integer) - fullName.vb: System.Span(Of Integer) - name.vb: Span(Of Integer) - spec.csharp: - - uid: System.Span`1 - name: Span - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.span-1 - - name: < - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '>' - spec.vb: - - uid: System.Span`1 - name: Span - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.span-1 - - name: ( - - name: Of - - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) -- uid: System.ReadOnlySpan`1 - commentId: T:System.ReadOnlySpan`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - name: ReadOnlySpan - nameWithType: ReadOnlySpan - fullName: System.ReadOnlySpan - nameWithType.vb: ReadOnlySpan(Of T) - fullName.vb: System.ReadOnlySpan(Of T) - name.vb: ReadOnlySpan(Of T) - spec.csharp: - - uid: System.ReadOnlySpan`1 - name: ReadOnlySpan - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.ReadOnlySpan`1 - name: ReadOnlySpan - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: System.Span`1 - commentId: T:System.Span`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.span-1 - name: Span - nameWithType: Span - fullName: System.Span - nameWithType.vb: Span(Of T) - fullName.vb: System.Span(Of T) - name.vb: Span(Of T) - spec.csharp: - - uid: System.Span`1 - name: Span - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.span-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.Span`1 - name: Span - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.span-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: System.Int32[] - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - name: int[] - nameWithType: int[] - fullName: int[] - nameWithType.vb: Integer() - fullName.vb: Integer() - name.vb: Integer() - spec.csharp: - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '[' - - name: ']' - spec.vb: - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ( - - name: ) -- uid: OpenTK.Graphics.Glx.Glx.GetClientString* - commentId: Overload:OpenTK.Graphics.Glx.Glx.GetClientString - href: OpenTK.Graphics.Glx.Glx.html#OpenTK_Graphics_Glx_Glx_GetClientString_OpenTK_Graphics_Glx_DisplayPtr_System_Int32_ - name: GetClientString - nameWithType: Glx.GetClientString - fullName: OpenTK.Graphics.Glx.Glx.GetClientString -- uid: System.String - commentId: T:System.String - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - name: string - nameWithType: string - fullName: string - nameWithType.vb: String - fullName.vb: String - name.vb: String -- uid: OpenTK.Graphics.Glx.Glx.GetFBConfig* - commentId: Overload:OpenTK.Graphics.Glx.Glx.GetFBConfig - href: OpenTK.Graphics.Glx.Glx.html#OpenTK_Graphics_Glx_Glx_GetFBConfig_OpenTK_Graphics_Glx_DisplayPtr_System_Int32_System_Span_System_Int32__ - name: GetFBConfig - nameWithType: Glx.GetFBConfig - fullName: OpenTK.Graphics.Glx.Glx.GetFBConfig -- uid: System.ReadOnlySpan{System.Byte} - commentId: T:System.ReadOnlySpan{System.Byte} - parent: System - definition: System.ReadOnlySpan`1 - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - name: ReadOnlySpan - nameWithType: ReadOnlySpan - fullName: System.ReadOnlySpan - nameWithType.vb: ReadOnlySpan(Of Byte) - fullName.vb: System.ReadOnlySpan(Of Byte) - name.vb: ReadOnlySpan(Of Byte) - spec.csharp: - - uid: System.ReadOnlySpan`1 - name: ReadOnlySpan - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - - name: < - - uid: System.Byte - name: byte - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.byte - - name: '>' - spec.vb: - - uid: System.ReadOnlySpan`1 - name: ReadOnlySpan - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - - name: ( - - name: Of - - name: " " - - uid: System.Byte - name: Byte - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.byte - - name: ) -- uid: System.Byte[] - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.byte - name: byte[] - nameWithType: byte[] - fullName: byte[] - nameWithType.vb: Byte() - fullName.vb: Byte() - name.vb: Byte() - spec.csharp: - - uid: System.Byte - name: byte - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.byte - - name: '[' - - name: ']' - spec.vb: - - uid: System.Byte - name: Byte - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.byte - - name: ( - - name: ) -- uid: System.Byte - commentId: T:System.Byte - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.byte - name: byte - nameWithType: byte - fullName: byte - nameWithType.vb: Byte - fullName.vb: Byte - name.vb: Byte -- uid: System.Span{System.UInt64} - commentId: T:System.Span{System.UInt64} - parent: System - definition: System.Span`1 - href: https://learn.microsoft.com/dotnet/api/system.span-1 - name: Span - nameWithType: Span - fullName: System.Span - nameWithType.vb: Span(Of ULong) - fullName.vb: System.Span(Of ULong) - name.vb: Span(Of ULong) - spec.csharp: - - uid: System.Span`1 - name: Span - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.span-1 - - name: < - - uid: System.UInt64 - name: ulong - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint64 - - name: '>' - spec.vb: - - uid: System.Span`1 - name: Span - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.span-1 - - name: ( - - name: Of - - name: " " - - uid: System.UInt64 - name: ULong - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint64 - - name: ) -- uid: System.UInt64[] - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint64 - name: ulong[] - nameWithType: ulong[] - fullName: ulong[] - nameWithType.vb: ULong() - fullName.vb: ULong() - name.vb: ULong() - spec.csharp: - - uid: System.UInt64 - name: ulong - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint64 - - name: '[' - - name: ']' - spec.vb: - - uid: System.UInt64 - name: ULong - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint64 - - name: ( - - name: ) -- uid: System.Span{System.UInt32} - commentId: T:System.Span{System.UInt32} - parent: System - definition: System.Span`1 - href: https://learn.microsoft.com/dotnet/api/system.span-1 - name: Span - nameWithType: Span - fullName: System.Span - nameWithType.vb: Span(Of UInteger) - fullName.vb: System.Span(Of UInteger) - name.vb: Span(Of UInteger) - spec.csharp: - - uid: System.Span`1 - name: Span - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.span-1 - - name: < - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: '>' - spec.vb: - - uid: System.Span`1 - name: Span - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.span-1 - - name: ( - - name: Of - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: System.UInt32[] - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - name: uint[] - nameWithType: uint[] - fullName: uint[] - nameWithType.vb: UInteger() - fullName.vb: UInteger() - name.vb: UInteger() - spec.csharp: - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: '[' - - name: ']' - spec.vb: - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ( - - name: ) -- uid: System.UInt32 - commentId: T:System.UInt32 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - name: uint - nameWithType: uint - fullName: uint - nameWithType.vb: UInteger - fullName.vb: UInteger - name.vb: UInteger -- uid: OpenTK.Graphics.Glx.Glx.QueryExtensionsString* - commentId: Overload:OpenTK.Graphics.Glx.Glx.QueryExtensionsString - href: OpenTK.Graphics.Glx.Glx.html#OpenTK_Graphics_Glx_Glx_QueryExtensionsString_OpenTK_Graphics_Glx_DisplayPtr_System_Int32_ - name: QueryExtensionsString - nameWithType: Glx.QueryExtensionsString - fullName: OpenTK.Graphics.Glx.Glx.QueryExtensionsString -- uid: OpenTK.Graphics.Glx.Glx.QueryServerString* - commentId: Overload:OpenTK.Graphics.Glx.Glx.QueryServerString - href: OpenTK.Graphics.Glx.Glx.html#OpenTK_Graphics_Glx_Glx_QueryServerString_OpenTK_Graphics_Glx_DisplayPtr_System_Int32_System_Int32_ - name: QueryServerString - nameWithType: Glx.QueryServerString - fullName: OpenTK.Graphics.Glx.Glx.QueryServerString diff --git a/api/OpenTK.Graphics.Glx.GlxPointers.yml b/api/OpenTK.Graphics.Glx.GlxPointers.yml deleted file mode 100644 index c7999b6c..00000000 --- a/api/OpenTK.Graphics.Glx.GlxPointers.yml +++ /dev/null @@ -1,7314 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: OpenTK.Graphics.Glx.GlxPointers - commentId: T:OpenTK.Graphics.Glx.GlxPointers - id: GlxPointers - parent: OpenTK.Graphics.Glx - children: - - OpenTK.Graphics.Glx.GlxPointers._glXBindChannelToWindowSGIX_fnptr - - OpenTK.Graphics.Glx.GlxPointers._glXBindHyperpipeSGIX_fnptr - - OpenTK.Graphics.Glx.GlxPointers._glXBindSwapBarrierNV_fnptr - - OpenTK.Graphics.Glx.GlxPointers._glXBindSwapBarrierSGIX_fnptr - - OpenTK.Graphics.Glx.GlxPointers._glXBindTexImageEXT_fnptr - - OpenTK.Graphics.Glx.GlxPointers._glXBindVideoCaptureDeviceNV_fnptr - - OpenTK.Graphics.Glx.GlxPointers._glXBindVideoDeviceNV_fnptr - - OpenTK.Graphics.Glx.GlxPointers._glXBindVideoImageNV_fnptr - - OpenTK.Graphics.Glx.GlxPointers._glXBlitContextFramebufferAMD_fnptr - - OpenTK.Graphics.Glx.GlxPointers._glXChannelRectSGIX_fnptr - - OpenTK.Graphics.Glx.GlxPointers._glXChannelRectSyncSGIX_fnptr - - OpenTK.Graphics.Glx.GlxPointers._glXChooseFBConfigSGIX_fnptr - - OpenTK.Graphics.Glx.GlxPointers._glXChooseFBConfig_fnptr - - OpenTK.Graphics.Glx.GlxPointers._glXChooseVisual_fnptr - - OpenTK.Graphics.Glx.GlxPointers._glXCopyBufferSubDataNV_fnptr - - OpenTK.Graphics.Glx.GlxPointers._glXCopyContext_fnptr - - OpenTK.Graphics.Glx.GlxPointers._glXCopyImageSubDataNV_fnptr - - OpenTK.Graphics.Glx.GlxPointers._glXCopySubBufferMESA_fnptr - - OpenTK.Graphics.Glx.GlxPointers._glXCreateAssociatedContextAMD_fnptr - - OpenTK.Graphics.Glx.GlxPointers._glXCreateAssociatedContextAttribsAMD_fnptr - - OpenTK.Graphics.Glx.GlxPointers._glXCreateContextAttribsARB_fnptr - - OpenTK.Graphics.Glx.GlxPointers._glXCreateContextWithConfigSGIX_fnptr - - OpenTK.Graphics.Glx.GlxPointers._glXCreateContext_fnptr - - OpenTK.Graphics.Glx.GlxPointers._glXCreateGLXPbufferSGIX_fnptr - - OpenTK.Graphics.Glx.GlxPointers._glXCreateGLXPixmapMESA_fnptr - - OpenTK.Graphics.Glx.GlxPointers._glXCreateGLXPixmapWithConfigSGIX_fnptr - - OpenTK.Graphics.Glx.GlxPointers._glXCreateGLXPixmap_fnptr - - OpenTK.Graphics.Glx.GlxPointers._glXCreateNewContext_fnptr - - OpenTK.Graphics.Glx.GlxPointers._glXCreatePbuffer_fnptr - - OpenTK.Graphics.Glx.GlxPointers._glXCreatePixmap_fnptr - - OpenTK.Graphics.Glx.GlxPointers._glXCreateWindow_fnptr - - OpenTK.Graphics.Glx.GlxPointers._glXCushionSGI_fnptr - - OpenTK.Graphics.Glx.GlxPointers._glXDelayBeforeSwapNV_fnptr - - OpenTK.Graphics.Glx.GlxPointers._glXDeleteAssociatedContextAMD_fnptr - - OpenTK.Graphics.Glx.GlxPointers._glXDestroyContext_fnptr - - OpenTK.Graphics.Glx.GlxPointers._glXDestroyGLXPbufferSGIX_fnptr - - OpenTK.Graphics.Glx.GlxPointers._glXDestroyGLXPixmap_fnptr - - OpenTK.Graphics.Glx.GlxPointers._glXDestroyHyperpipeConfigSGIX_fnptr - - OpenTK.Graphics.Glx.GlxPointers._glXDestroyPbuffer_fnptr - - OpenTK.Graphics.Glx.GlxPointers._glXDestroyPixmap_fnptr - - OpenTK.Graphics.Glx.GlxPointers._glXDestroyWindow_fnptr - - OpenTK.Graphics.Glx.GlxPointers._glXEnumerateVideoCaptureDevicesNV_fnptr - - OpenTK.Graphics.Glx.GlxPointers._glXEnumerateVideoDevicesNV_fnptr - - OpenTK.Graphics.Glx.GlxPointers._glXFreeContextEXT_fnptr - - OpenTK.Graphics.Glx.GlxPointers._glXGetAGPOffsetMESA_fnptr - - OpenTK.Graphics.Glx.GlxPointers._glXGetClientString_fnptr - - OpenTK.Graphics.Glx.GlxPointers._glXGetConfig_fnptr - - OpenTK.Graphics.Glx.GlxPointers._glXGetContextGPUIDAMD_fnptr - - OpenTK.Graphics.Glx.GlxPointers._glXGetContextIDEXT_fnptr - - OpenTK.Graphics.Glx.GlxPointers._glXGetCurrentAssociatedContextAMD_fnptr - - OpenTK.Graphics.Glx.GlxPointers._glXGetCurrentContext_fnptr - - OpenTK.Graphics.Glx.GlxPointers._glXGetCurrentDisplayEXT_fnptr - - OpenTK.Graphics.Glx.GlxPointers._glXGetCurrentDisplay_fnptr - - OpenTK.Graphics.Glx.GlxPointers._glXGetCurrentDrawable_fnptr - - OpenTK.Graphics.Glx.GlxPointers._glXGetCurrentReadDrawableSGI_fnptr - - OpenTK.Graphics.Glx.GlxPointers._glXGetCurrentReadDrawable_fnptr - - OpenTK.Graphics.Glx.GlxPointers._glXGetFBConfigAttribSGIX_fnptr - - OpenTK.Graphics.Glx.GlxPointers._glXGetFBConfigAttrib_fnptr - - OpenTK.Graphics.Glx.GlxPointers._glXGetFBConfigFromVisualSGIX_fnptr - - OpenTK.Graphics.Glx.GlxPointers._glXGetFBConfigs_fnptr - - OpenTK.Graphics.Glx.GlxPointers._glXGetGPUIDsAMD_fnptr - - OpenTK.Graphics.Glx.GlxPointers._glXGetGPUInfoAMD_fnptr - - OpenTK.Graphics.Glx.GlxPointers._glXGetMscRateOML_fnptr - - OpenTK.Graphics.Glx.GlxPointers._glXGetProcAddressARB_fnptr - - OpenTK.Graphics.Glx.GlxPointers._glXGetProcAddress_fnptr - - OpenTK.Graphics.Glx.GlxPointers._glXGetSelectedEventSGIX_fnptr - - OpenTK.Graphics.Glx.GlxPointers._glXGetSelectedEvent_fnptr - - OpenTK.Graphics.Glx.GlxPointers._glXGetSwapIntervalMESA_fnptr - - OpenTK.Graphics.Glx.GlxPointers._glXGetSyncValuesOML_fnptr - - OpenTK.Graphics.Glx.GlxPointers._glXGetTransparentIndexSUN_fnptr - - OpenTK.Graphics.Glx.GlxPointers._glXGetVideoDeviceNV_fnptr - - OpenTK.Graphics.Glx.GlxPointers._glXGetVideoInfoNV_fnptr - - OpenTK.Graphics.Glx.GlxPointers._glXGetVideoSyncSGI_fnptr - - OpenTK.Graphics.Glx.GlxPointers._glXGetVisualFromFBConfigSGIX_fnptr - - OpenTK.Graphics.Glx.GlxPointers._glXGetVisualFromFBConfig_fnptr - - OpenTK.Graphics.Glx.GlxPointers._glXHyperpipeAttribSGIX_fnptr - - OpenTK.Graphics.Glx.GlxPointers._glXHyperpipeConfigSGIX_fnptr - - OpenTK.Graphics.Glx.GlxPointers._glXImportContextEXT_fnptr - - OpenTK.Graphics.Glx.GlxPointers._glXIsDirect_fnptr - - OpenTK.Graphics.Glx.GlxPointers._glXJoinSwapGroupNV_fnptr - - OpenTK.Graphics.Glx.GlxPointers._glXJoinSwapGroupSGIX_fnptr - - OpenTK.Graphics.Glx.GlxPointers._glXLockVideoCaptureDeviceNV_fnptr - - OpenTK.Graphics.Glx.GlxPointers._glXMakeAssociatedContextCurrentAMD_fnptr - - OpenTK.Graphics.Glx.GlxPointers._glXMakeContextCurrent_fnptr - - OpenTK.Graphics.Glx.GlxPointers._glXMakeCurrentReadSGI_fnptr - - OpenTK.Graphics.Glx.GlxPointers._glXMakeCurrent_fnptr - - OpenTK.Graphics.Glx.GlxPointers._glXNamedCopyBufferSubDataNV_fnptr - - OpenTK.Graphics.Glx.GlxPointers._glXQueryChannelDeltasSGIX_fnptr - - OpenTK.Graphics.Glx.GlxPointers._glXQueryChannelRectSGIX_fnptr - - OpenTK.Graphics.Glx.GlxPointers._glXQueryContextInfoEXT_fnptr - - OpenTK.Graphics.Glx.GlxPointers._glXQueryContext_fnptr - - OpenTK.Graphics.Glx.GlxPointers._glXQueryCurrentRendererIntegerMESA_fnptr - - OpenTK.Graphics.Glx.GlxPointers._glXQueryCurrentRendererStringMESA_fnptr - - OpenTK.Graphics.Glx.GlxPointers._glXQueryDrawable_fnptr - - OpenTK.Graphics.Glx.GlxPointers._glXQueryExtension_fnptr - - OpenTK.Graphics.Glx.GlxPointers._glXQueryExtensionsString_fnptr - - OpenTK.Graphics.Glx.GlxPointers._glXQueryFrameCountNV_fnptr - - OpenTK.Graphics.Glx.GlxPointers._glXQueryGLXPbufferSGIX_fnptr - - OpenTK.Graphics.Glx.GlxPointers._glXQueryHyperpipeAttribSGIX_fnptr - - OpenTK.Graphics.Glx.GlxPointers._glXQueryHyperpipeBestAttribSGIX_fnptr - - OpenTK.Graphics.Glx.GlxPointers._glXQueryHyperpipeConfigSGIX_fnptr - - OpenTK.Graphics.Glx.GlxPointers._glXQueryHyperpipeNetworkSGIX_fnptr - - OpenTK.Graphics.Glx.GlxPointers._glXQueryMaxSwapBarriersSGIX_fnptr - - OpenTK.Graphics.Glx.GlxPointers._glXQueryMaxSwapGroupsNV_fnptr - - OpenTK.Graphics.Glx.GlxPointers._glXQueryRendererIntegerMESA_fnptr - - OpenTK.Graphics.Glx.GlxPointers._glXQueryRendererStringMESA_fnptr - - OpenTK.Graphics.Glx.GlxPointers._glXQueryServerString_fnptr - - OpenTK.Graphics.Glx.GlxPointers._glXQuerySwapGroupNV_fnptr - - OpenTK.Graphics.Glx.GlxPointers._glXQueryVersion_fnptr - - OpenTK.Graphics.Glx.GlxPointers._glXQueryVideoCaptureDeviceNV_fnptr - - OpenTK.Graphics.Glx.GlxPointers._glXReleaseBuffersMESA_fnptr - - OpenTK.Graphics.Glx.GlxPointers._glXReleaseTexImageEXT_fnptr - - OpenTK.Graphics.Glx.GlxPointers._glXReleaseVideoCaptureDeviceNV_fnptr - - OpenTK.Graphics.Glx.GlxPointers._glXReleaseVideoDeviceNV_fnptr - - OpenTK.Graphics.Glx.GlxPointers._glXReleaseVideoImageNV_fnptr - - OpenTK.Graphics.Glx.GlxPointers._glXResetFrameCountNV_fnptr - - OpenTK.Graphics.Glx.GlxPointers._glXSelectEventSGIX_fnptr - - OpenTK.Graphics.Glx.GlxPointers._glXSelectEvent_fnptr - - OpenTK.Graphics.Glx.GlxPointers._glXSendPbufferToVideoNV_fnptr - - OpenTK.Graphics.Glx.GlxPointers._glXSet3DfxModeMESA_fnptr - - OpenTK.Graphics.Glx.GlxPointers._glXSwapBuffersMscOML_fnptr - - OpenTK.Graphics.Glx.GlxPointers._glXSwapBuffers_fnptr - - OpenTK.Graphics.Glx.GlxPointers._glXSwapIntervalEXT_fnptr - - OpenTK.Graphics.Glx.GlxPointers._glXSwapIntervalMESA_fnptr - - OpenTK.Graphics.Glx.GlxPointers._glXSwapIntervalSGI_fnptr - - OpenTK.Graphics.Glx.GlxPointers._glXUseXFont_fnptr - - OpenTK.Graphics.Glx.GlxPointers._glXWaitForMscOML_fnptr - - OpenTK.Graphics.Glx.GlxPointers._glXWaitForSbcOML_fnptr - - OpenTK.Graphics.Glx.GlxPointers._glXWaitGL_fnptr - - OpenTK.Graphics.Glx.GlxPointers._glXWaitVideoSyncSGI_fnptr - - OpenTK.Graphics.Glx.GlxPointers._glXWaitX_fnptr - langs: - - csharp - - vb - name: GlxPointers - nameWithType: GlxPointers - fullName: OpenTK.Graphics.Glx.GlxPointers - type: Class - source: - id: GlxPointers - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs - startLine: 8 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: A collection of all function pointers to all OpenGL entry points. - example: [] - syntax: - content: public static class GlxPointers - content.vb: Public Module GlxPointers - inheritance: - - System.Object - inheritedMembers: - - System.Object.Equals(System.Object) - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetHashCode - - System.Object.GetType - - System.Object.MemberwiseClone - - System.Object.ReferenceEquals(System.Object,System.Object) - - System.Object.ToString -- uid: OpenTK.Graphics.Glx.GlxPointers._glXBindChannelToWindowSGIX_fnptr - commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXBindChannelToWindowSGIX_fnptr - id: _glXBindChannelToWindowSGIX_fnptr - parent: OpenTK.Graphics.Glx.GlxPointers - langs: - - csharp - - vb - name: _glXBindChannelToWindowSGIX_fnptr - nameWithType: GlxPointers._glXBindChannelToWindowSGIX_fnptr - fullName: OpenTK.Graphics.Glx.GlxPointers._glXBindChannelToWindowSGIX_fnptr - type: Field - source: - id: _glXBindChannelToWindowSGIX_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs - startLine: 11 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: '[entry point: glXBindChannelToWindowSGIX]' - example: [] - syntax: - content: public static delegate* unmanaged _glXBindChannelToWindowSGIX_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _glXBindChannelToWindowSGIX_fnptr As ' -- uid: OpenTK.Graphics.Glx.GlxPointers._glXBindHyperpipeSGIX_fnptr - commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXBindHyperpipeSGIX_fnptr - id: _glXBindHyperpipeSGIX_fnptr - parent: OpenTK.Graphics.Glx.GlxPointers - langs: - - csharp - - vb - name: _glXBindHyperpipeSGIX_fnptr - nameWithType: GlxPointers._glXBindHyperpipeSGIX_fnptr - fullName: OpenTK.Graphics.Glx.GlxPointers._glXBindHyperpipeSGIX_fnptr - type: Field - source: - id: _glXBindHyperpipeSGIX_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs - startLine: 20 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: '[entry point: glXBindHyperpipeSGIX]' - example: [] - syntax: - content: public static delegate* unmanaged _glXBindHyperpipeSGIX_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _glXBindHyperpipeSGIX_fnptr As ' -- uid: OpenTK.Graphics.Glx.GlxPointers._glXBindSwapBarrierNV_fnptr - commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXBindSwapBarrierNV_fnptr - id: _glXBindSwapBarrierNV_fnptr - parent: OpenTK.Graphics.Glx.GlxPointers - langs: - - csharp - - vb - name: _glXBindSwapBarrierNV_fnptr - nameWithType: GlxPointers._glXBindSwapBarrierNV_fnptr - fullName: OpenTK.Graphics.Glx.GlxPointers._glXBindSwapBarrierNV_fnptr - type: Field - source: - id: _glXBindSwapBarrierNV_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs - startLine: 29 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: '[entry point: glXBindSwapBarrierNV]' - example: [] - syntax: - content: public static delegate* unmanaged _glXBindSwapBarrierNV_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _glXBindSwapBarrierNV_fnptr As ' -- uid: OpenTK.Graphics.Glx.GlxPointers._glXBindSwapBarrierSGIX_fnptr - commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXBindSwapBarrierSGIX_fnptr - id: _glXBindSwapBarrierSGIX_fnptr - parent: OpenTK.Graphics.Glx.GlxPointers - langs: - - csharp - - vb - name: _glXBindSwapBarrierSGIX_fnptr - nameWithType: GlxPointers._glXBindSwapBarrierSGIX_fnptr - fullName: OpenTK.Graphics.Glx.GlxPointers._glXBindSwapBarrierSGIX_fnptr - type: Field - source: - id: _glXBindSwapBarrierSGIX_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs - startLine: 38 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: '[entry point: glXBindSwapBarrierSGIX]' - example: [] - syntax: - content: public static delegate* unmanaged _glXBindSwapBarrierSGIX_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _glXBindSwapBarrierSGIX_fnptr As ' -- uid: OpenTK.Graphics.Glx.GlxPointers._glXBindTexImageEXT_fnptr - commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXBindTexImageEXT_fnptr - id: _glXBindTexImageEXT_fnptr - parent: OpenTK.Graphics.Glx.GlxPointers - langs: - - csharp - - vb - name: _glXBindTexImageEXT_fnptr - nameWithType: GlxPointers._glXBindTexImageEXT_fnptr - fullName: OpenTK.Graphics.Glx.GlxPointers._glXBindTexImageEXT_fnptr - type: Field - source: - id: _glXBindTexImageEXT_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs - startLine: 47 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: '[entry point: glXBindTexImageEXT]' - example: [] - syntax: - content: public static delegate* unmanaged _glXBindTexImageEXT_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _glXBindTexImageEXT_fnptr As ' -- uid: OpenTK.Graphics.Glx.GlxPointers._glXBindVideoCaptureDeviceNV_fnptr - commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXBindVideoCaptureDeviceNV_fnptr - id: _glXBindVideoCaptureDeviceNV_fnptr - parent: OpenTK.Graphics.Glx.GlxPointers - langs: - - csharp - - vb - name: _glXBindVideoCaptureDeviceNV_fnptr - nameWithType: GlxPointers._glXBindVideoCaptureDeviceNV_fnptr - fullName: OpenTK.Graphics.Glx.GlxPointers._glXBindVideoCaptureDeviceNV_fnptr - type: Field - source: - id: _glXBindVideoCaptureDeviceNV_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs - startLine: 56 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: '[entry point: glXBindVideoCaptureDeviceNV]' - example: [] - syntax: - content: public static delegate* unmanaged _glXBindVideoCaptureDeviceNV_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _glXBindVideoCaptureDeviceNV_fnptr As ' -- uid: OpenTK.Graphics.Glx.GlxPointers._glXBindVideoDeviceNV_fnptr - commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXBindVideoDeviceNV_fnptr - id: _glXBindVideoDeviceNV_fnptr - parent: OpenTK.Graphics.Glx.GlxPointers - langs: - - csharp - - vb - name: _glXBindVideoDeviceNV_fnptr - nameWithType: GlxPointers._glXBindVideoDeviceNV_fnptr - fullName: OpenTK.Graphics.Glx.GlxPointers._glXBindVideoDeviceNV_fnptr - type: Field - source: - id: _glXBindVideoDeviceNV_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs - startLine: 65 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: '[entry point: glXBindVideoDeviceNV]' - example: [] - syntax: - content: public static delegate* unmanaged _glXBindVideoDeviceNV_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _glXBindVideoDeviceNV_fnptr As ' -- uid: OpenTK.Graphics.Glx.GlxPointers._glXBindVideoImageNV_fnptr - commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXBindVideoImageNV_fnptr - id: _glXBindVideoImageNV_fnptr - parent: OpenTK.Graphics.Glx.GlxPointers - langs: - - csharp - - vb - name: _glXBindVideoImageNV_fnptr - nameWithType: GlxPointers._glXBindVideoImageNV_fnptr - fullName: OpenTK.Graphics.Glx.GlxPointers._glXBindVideoImageNV_fnptr - type: Field - source: - id: _glXBindVideoImageNV_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs - startLine: 74 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: '[entry point: glXBindVideoImageNV]' - example: [] - syntax: - content: public static delegate* unmanaged _glXBindVideoImageNV_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _glXBindVideoImageNV_fnptr As ' -- uid: OpenTK.Graphics.Glx.GlxPointers._glXBlitContextFramebufferAMD_fnptr - commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXBlitContextFramebufferAMD_fnptr - id: _glXBlitContextFramebufferAMD_fnptr - parent: OpenTK.Graphics.Glx.GlxPointers - langs: - - csharp - - vb - name: _glXBlitContextFramebufferAMD_fnptr - nameWithType: GlxPointers._glXBlitContextFramebufferAMD_fnptr - fullName: OpenTK.Graphics.Glx.GlxPointers._glXBlitContextFramebufferAMD_fnptr - type: Field - source: - id: _glXBlitContextFramebufferAMD_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs - startLine: 83 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: '[entry point: glXBlitContextFramebufferAMD]' - example: [] - syntax: - content: public static delegate* unmanaged _glXBlitContextFramebufferAMD_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _glXBlitContextFramebufferAMD_fnptr As ' -- uid: OpenTK.Graphics.Glx.GlxPointers._glXChannelRectSGIX_fnptr - commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXChannelRectSGIX_fnptr - id: _glXChannelRectSGIX_fnptr - parent: OpenTK.Graphics.Glx.GlxPointers - langs: - - csharp - - vb - name: _glXChannelRectSGIX_fnptr - nameWithType: GlxPointers._glXChannelRectSGIX_fnptr - fullName: OpenTK.Graphics.Glx.GlxPointers._glXChannelRectSGIX_fnptr - type: Field - source: - id: _glXChannelRectSGIX_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs - startLine: 92 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: '[entry point: glXChannelRectSGIX]' - example: [] - syntax: - content: public static delegate* unmanaged _glXChannelRectSGIX_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _glXChannelRectSGIX_fnptr As ' -- uid: OpenTK.Graphics.Glx.GlxPointers._glXChannelRectSyncSGIX_fnptr - commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXChannelRectSyncSGIX_fnptr - id: _glXChannelRectSyncSGIX_fnptr - parent: OpenTK.Graphics.Glx.GlxPointers - langs: - - csharp - - vb - name: _glXChannelRectSyncSGIX_fnptr - nameWithType: GlxPointers._glXChannelRectSyncSGIX_fnptr - fullName: OpenTK.Graphics.Glx.GlxPointers._glXChannelRectSyncSGIX_fnptr - type: Field - source: - id: _glXChannelRectSyncSGIX_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs - startLine: 101 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: '[entry point: glXChannelRectSyncSGIX]' - example: [] - syntax: - content: public static delegate* unmanaged _glXChannelRectSyncSGIX_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _glXChannelRectSyncSGIX_fnptr As ' -- uid: OpenTK.Graphics.Glx.GlxPointers._glXChooseFBConfig_fnptr - commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXChooseFBConfig_fnptr - id: _glXChooseFBConfig_fnptr - parent: OpenTK.Graphics.Glx.GlxPointers - langs: - - csharp - - vb - name: _glXChooseFBConfig_fnptr - nameWithType: GlxPointers._glXChooseFBConfig_fnptr - fullName: OpenTK.Graphics.Glx.GlxPointers._glXChooseFBConfig_fnptr - type: Field - source: - id: _glXChooseFBConfig_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs - startLine: 110 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: '[entry point: glXChooseFBConfig]' - example: [] - syntax: - content: public static delegate* unmanaged _glXChooseFBConfig_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _glXChooseFBConfig_fnptr As ' -- uid: OpenTK.Graphics.Glx.GlxPointers._glXChooseFBConfigSGIX_fnptr - commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXChooseFBConfigSGIX_fnptr - id: _glXChooseFBConfigSGIX_fnptr - parent: OpenTK.Graphics.Glx.GlxPointers - langs: - - csharp - - vb - name: _glXChooseFBConfigSGIX_fnptr - nameWithType: GlxPointers._glXChooseFBConfigSGIX_fnptr - fullName: OpenTK.Graphics.Glx.GlxPointers._glXChooseFBConfigSGIX_fnptr - type: Field - source: - id: _glXChooseFBConfigSGIX_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs - startLine: 119 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: '[entry point: glXChooseFBConfigSGIX]' - example: [] - syntax: - content: public static delegate* unmanaged _glXChooseFBConfigSGIX_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _glXChooseFBConfigSGIX_fnptr As ' -- uid: OpenTK.Graphics.Glx.GlxPointers._glXChooseVisual_fnptr - commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXChooseVisual_fnptr - id: _glXChooseVisual_fnptr - parent: OpenTK.Graphics.Glx.GlxPointers - langs: - - csharp - - vb - name: _glXChooseVisual_fnptr - nameWithType: GlxPointers._glXChooseVisual_fnptr - fullName: OpenTK.Graphics.Glx.GlxPointers._glXChooseVisual_fnptr - type: Field - source: - id: _glXChooseVisual_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs - startLine: 128 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: '[entry point: glXChooseVisual]' - example: [] - syntax: - content: public static delegate* unmanaged _glXChooseVisual_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _glXChooseVisual_fnptr As ' -- uid: OpenTK.Graphics.Glx.GlxPointers._glXCopyBufferSubDataNV_fnptr - commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXCopyBufferSubDataNV_fnptr - id: _glXCopyBufferSubDataNV_fnptr - parent: OpenTK.Graphics.Glx.GlxPointers - langs: - - csharp - - vb - name: _glXCopyBufferSubDataNV_fnptr - nameWithType: GlxPointers._glXCopyBufferSubDataNV_fnptr - fullName: OpenTK.Graphics.Glx.GlxPointers._glXCopyBufferSubDataNV_fnptr - type: Field - source: - id: _glXCopyBufferSubDataNV_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs - startLine: 137 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: '[entry point: glXCopyBufferSubDataNV]' - example: [] - syntax: - content: public static delegate* unmanaged _glXCopyBufferSubDataNV_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _glXCopyBufferSubDataNV_fnptr As ' -- uid: OpenTK.Graphics.Glx.GlxPointers._glXCopyContext_fnptr - commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXCopyContext_fnptr - id: _glXCopyContext_fnptr - parent: OpenTK.Graphics.Glx.GlxPointers - langs: - - csharp - - vb - name: _glXCopyContext_fnptr - nameWithType: GlxPointers._glXCopyContext_fnptr - fullName: OpenTK.Graphics.Glx.GlxPointers._glXCopyContext_fnptr - type: Field - source: - id: _glXCopyContext_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs - startLine: 146 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: '[entry point: glXCopyContext]' - example: [] - syntax: - content: public static delegate* unmanaged _glXCopyContext_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _glXCopyContext_fnptr As ' -- uid: OpenTK.Graphics.Glx.GlxPointers._glXCopyImageSubDataNV_fnptr - commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXCopyImageSubDataNV_fnptr - id: _glXCopyImageSubDataNV_fnptr - parent: OpenTK.Graphics.Glx.GlxPointers - langs: - - csharp - - vb - name: _glXCopyImageSubDataNV_fnptr - nameWithType: GlxPointers._glXCopyImageSubDataNV_fnptr - fullName: OpenTK.Graphics.Glx.GlxPointers._glXCopyImageSubDataNV_fnptr - type: Field - source: - id: _glXCopyImageSubDataNV_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs - startLine: 155 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: '[entry point: glXCopyImageSubDataNV]' - example: [] - syntax: - content: public static delegate* unmanaged _glXCopyImageSubDataNV_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _glXCopyImageSubDataNV_fnptr As ' -- uid: OpenTK.Graphics.Glx.GlxPointers._glXCopySubBufferMESA_fnptr - commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXCopySubBufferMESA_fnptr - id: _glXCopySubBufferMESA_fnptr - parent: OpenTK.Graphics.Glx.GlxPointers - langs: - - csharp - - vb - name: _glXCopySubBufferMESA_fnptr - nameWithType: GlxPointers._glXCopySubBufferMESA_fnptr - fullName: OpenTK.Graphics.Glx.GlxPointers._glXCopySubBufferMESA_fnptr - type: Field - source: - id: _glXCopySubBufferMESA_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs - startLine: 164 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: '[entry point: glXCopySubBufferMESA]' - example: [] - syntax: - content: public static delegate* unmanaged _glXCopySubBufferMESA_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _glXCopySubBufferMESA_fnptr As ' -- uid: OpenTK.Graphics.Glx.GlxPointers._glXCreateAssociatedContextAMD_fnptr - commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXCreateAssociatedContextAMD_fnptr - id: _glXCreateAssociatedContextAMD_fnptr - parent: OpenTK.Graphics.Glx.GlxPointers - langs: - - csharp - - vb - name: _glXCreateAssociatedContextAMD_fnptr - nameWithType: GlxPointers._glXCreateAssociatedContextAMD_fnptr - fullName: OpenTK.Graphics.Glx.GlxPointers._glXCreateAssociatedContextAMD_fnptr - type: Field - source: - id: _glXCreateAssociatedContextAMD_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs - startLine: 173 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: '[entry point: glXCreateAssociatedContextAMD]' - example: [] - syntax: - content: public static delegate* unmanaged _glXCreateAssociatedContextAMD_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _glXCreateAssociatedContextAMD_fnptr As ' -- uid: OpenTK.Graphics.Glx.GlxPointers._glXCreateAssociatedContextAttribsAMD_fnptr - commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXCreateAssociatedContextAttribsAMD_fnptr - id: _glXCreateAssociatedContextAttribsAMD_fnptr - parent: OpenTK.Graphics.Glx.GlxPointers - langs: - - csharp - - vb - name: _glXCreateAssociatedContextAttribsAMD_fnptr - nameWithType: GlxPointers._glXCreateAssociatedContextAttribsAMD_fnptr - fullName: OpenTK.Graphics.Glx.GlxPointers._glXCreateAssociatedContextAttribsAMD_fnptr - type: Field - source: - id: _glXCreateAssociatedContextAttribsAMD_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs - startLine: 182 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: '[entry point: glXCreateAssociatedContextAttribsAMD]' - example: [] - syntax: - content: public static delegate* unmanaged _glXCreateAssociatedContextAttribsAMD_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _glXCreateAssociatedContextAttribsAMD_fnptr As ' -- uid: OpenTK.Graphics.Glx.GlxPointers._glXCreateContext_fnptr - commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXCreateContext_fnptr - id: _glXCreateContext_fnptr - parent: OpenTK.Graphics.Glx.GlxPointers - langs: - - csharp - - vb - name: _glXCreateContext_fnptr - nameWithType: GlxPointers._glXCreateContext_fnptr - fullName: OpenTK.Graphics.Glx.GlxPointers._glXCreateContext_fnptr - type: Field - source: - id: _glXCreateContext_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs - startLine: 191 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: '[entry point: glXCreateContext]' - example: [] - syntax: - content: public static delegate* unmanaged _glXCreateContext_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _glXCreateContext_fnptr As ' -- uid: OpenTK.Graphics.Glx.GlxPointers._glXCreateContextAttribsARB_fnptr - commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXCreateContextAttribsARB_fnptr - id: _glXCreateContextAttribsARB_fnptr - parent: OpenTK.Graphics.Glx.GlxPointers - langs: - - csharp - - vb - name: _glXCreateContextAttribsARB_fnptr - nameWithType: GlxPointers._glXCreateContextAttribsARB_fnptr - fullName: OpenTK.Graphics.Glx.GlxPointers._glXCreateContextAttribsARB_fnptr - type: Field - source: - id: _glXCreateContextAttribsARB_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs - startLine: 200 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: '[entry point: glXCreateContextAttribsARB]' - example: [] - syntax: - content: public static delegate* unmanaged _glXCreateContextAttribsARB_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _glXCreateContextAttribsARB_fnptr As ' -- uid: OpenTK.Graphics.Glx.GlxPointers._glXCreateContextWithConfigSGIX_fnptr - commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXCreateContextWithConfigSGIX_fnptr - id: _glXCreateContextWithConfigSGIX_fnptr - parent: OpenTK.Graphics.Glx.GlxPointers - langs: - - csharp - - vb - name: _glXCreateContextWithConfigSGIX_fnptr - nameWithType: GlxPointers._glXCreateContextWithConfigSGIX_fnptr - fullName: OpenTK.Graphics.Glx.GlxPointers._glXCreateContextWithConfigSGIX_fnptr - type: Field - source: - id: _glXCreateContextWithConfigSGIX_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs - startLine: 209 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: '[entry point: glXCreateContextWithConfigSGIX]' - example: [] - syntax: - content: public static delegate* unmanaged _glXCreateContextWithConfigSGIX_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _glXCreateContextWithConfigSGIX_fnptr As ' -- uid: OpenTK.Graphics.Glx.GlxPointers._glXCreateGLXPbufferSGIX_fnptr - commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXCreateGLXPbufferSGIX_fnptr - id: _glXCreateGLXPbufferSGIX_fnptr - parent: OpenTK.Graphics.Glx.GlxPointers - langs: - - csharp - - vb - name: _glXCreateGLXPbufferSGIX_fnptr - nameWithType: GlxPointers._glXCreateGLXPbufferSGIX_fnptr - fullName: OpenTK.Graphics.Glx.GlxPointers._glXCreateGLXPbufferSGIX_fnptr - type: Field - source: - id: _glXCreateGLXPbufferSGIX_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs - startLine: 218 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: '[entry point: glXCreateGLXPbufferSGIX]' - example: [] - syntax: - content: public static delegate* unmanaged _glXCreateGLXPbufferSGIX_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _glXCreateGLXPbufferSGIX_fnptr As ' -- uid: OpenTK.Graphics.Glx.GlxPointers._glXCreateGLXPixmap_fnptr - commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXCreateGLXPixmap_fnptr - id: _glXCreateGLXPixmap_fnptr - parent: OpenTK.Graphics.Glx.GlxPointers - langs: - - csharp - - vb - name: _glXCreateGLXPixmap_fnptr - nameWithType: GlxPointers._glXCreateGLXPixmap_fnptr - fullName: OpenTK.Graphics.Glx.GlxPointers._glXCreateGLXPixmap_fnptr - type: Field - source: - id: _glXCreateGLXPixmap_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs - startLine: 227 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: '[entry point: glXCreateGLXPixmap]' - example: [] - syntax: - content: public static delegate* unmanaged _glXCreateGLXPixmap_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _glXCreateGLXPixmap_fnptr As ' -- uid: OpenTK.Graphics.Glx.GlxPointers._glXCreateGLXPixmapMESA_fnptr - commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXCreateGLXPixmapMESA_fnptr - id: _glXCreateGLXPixmapMESA_fnptr - parent: OpenTK.Graphics.Glx.GlxPointers - langs: - - csharp - - vb - name: _glXCreateGLXPixmapMESA_fnptr - nameWithType: GlxPointers._glXCreateGLXPixmapMESA_fnptr - fullName: OpenTK.Graphics.Glx.GlxPointers._glXCreateGLXPixmapMESA_fnptr - type: Field - source: - id: _glXCreateGLXPixmapMESA_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs - startLine: 236 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: '[entry point: glXCreateGLXPixmapMESA]' - example: [] - syntax: - content: public static delegate* unmanaged _glXCreateGLXPixmapMESA_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _glXCreateGLXPixmapMESA_fnptr As ' -- uid: OpenTK.Graphics.Glx.GlxPointers._glXCreateGLXPixmapWithConfigSGIX_fnptr - commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXCreateGLXPixmapWithConfigSGIX_fnptr - id: _glXCreateGLXPixmapWithConfigSGIX_fnptr - parent: OpenTK.Graphics.Glx.GlxPointers - langs: - - csharp - - vb - name: _glXCreateGLXPixmapWithConfigSGIX_fnptr - nameWithType: GlxPointers._glXCreateGLXPixmapWithConfigSGIX_fnptr - fullName: OpenTK.Graphics.Glx.GlxPointers._glXCreateGLXPixmapWithConfigSGIX_fnptr - type: Field - source: - id: _glXCreateGLXPixmapWithConfigSGIX_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs - startLine: 245 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: '[entry point: glXCreateGLXPixmapWithConfigSGIX]' - example: [] - syntax: - content: public static delegate* unmanaged _glXCreateGLXPixmapWithConfigSGIX_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _glXCreateGLXPixmapWithConfigSGIX_fnptr As ' -- uid: OpenTK.Graphics.Glx.GlxPointers._glXCreateNewContext_fnptr - commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXCreateNewContext_fnptr - id: _glXCreateNewContext_fnptr - parent: OpenTK.Graphics.Glx.GlxPointers - langs: - - csharp - - vb - name: _glXCreateNewContext_fnptr - nameWithType: GlxPointers._glXCreateNewContext_fnptr - fullName: OpenTK.Graphics.Glx.GlxPointers._glXCreateNewContext_fnptr - type: Field - source: - id: _glXCreateNewContext_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs - startLine: 254 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: '[entry point: glXCreateNewContext]' - example: [] - syntax: - content: public static delegate* unmanaged _glXCreateNewContext_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _glXCreateNewContext_fnptr As ' -- uid: OpenTK.Graphics.Glx.GlxPointers._glXCreatePbuffer_fnptr - commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXCreatePbuffer_fnptr - id: _glXCreatePbuffer_fnptr - parent: OpenTK.Graphics.Glx.GlxPointers - langs: - - csharp - - vb - name: _glXCreatePbuffer_fnptr - nameWithType: GlxPointers._glXCreatePbuffer_fnptr - fullName: OpenTK.Graphics.Glx.GlxPointers._glXCreatePbuffer_fnptr - type: Field - source: - id: _glXCreatePbuffer_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs - startLine: 263 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: '[entry point: glXCreatePbuffer]' - example: [] - syntax: - content: public static delegate* unmanaged _glXCreatePbuffer_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _glXCreatePbuffer_fnptr As ' -- uid: OpenTK.Graphics.Glx.GlxPointers._glXCreatePixmap_fnptr - commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXCreatePixmap_fnptr - id: _glXCreatePixmap_fnptr - parent: OpenTK.Graphics.Glx.GlxPointers - langs: - - csharp - - vb - name: _glXCreatePixmap_fnptr - nameWithType: GlxPointers._glXCreatePixmap_fnptr - fullName: OpenTK.Graphics.Glx.GlxPointers._glXCreatePixmap_fnptr - type: Field - source: - id: _glXCreatePixmap_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs - startLine: 272 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: '[entry point: glXCreatePixmap]' - example: [] - syntax: - content: public static delegate* unmanaged _glXCreatePixmap_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _glXCreatePixmap_fnptr As ' -- uid: OpenTK.Graphics.Glx.GlxPointers._glXCreateWindow_fnptr - commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXCreateWindow_fnptr - id: _glXCreateWindow_fnptr - parent: OpenTK.Graphics.Glx.GlxPointers - langs: - - csharp - - vb - name: _glXCreateWindow_fnptr - nameWithType: GlxPointers._glXCreateWindow_fnptr - fullName: OpenTK.Graphics.Glx.GlxPointers._glXCreateWindow_fnptr - type: Field - source: - id: _glXCreateWindow_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs - startLine: 281 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: '[entry point: glXCreateWindow]' - example: [] - syntax: - content: public static delegate* unmanaged _glXCreateWindow_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _glXCreateWindow_fnptr As ' -- uid: OpenTK.Graphics.Glx.GlxPointers._glXCushionSGI_fnptr - commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXCushionSGI_fnptr - id: _glXCushionSGI_fnptr - parent: OpenTK.Graphics.Glx.GlxPointers - langs: - - csharp - - vb - name: _glXCushionSGI_fnptr - nameWithType: GlxPointers._glXCushionSGI_fnptr - fullName: OpenTK.Graphics.Glx.GlxPointers._glXCushionSGI_fnptr - type: Field - source: - id: _glXCushionSGI_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs - startLine: 290 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: '[entry point: glXCushionSGI]' - example: [] - syntax: - content: public static delegate* unmanaged _glXCushionSGI_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _glXCushionSGI_fnptr As ' -- uid: OpenTK.Graphics.Glx.GlxPointers._glXDelayBeforeSwapNV_fnptr - commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXDelayBeforeSwapNV_fnptr - id: _glXDelayBeforeSwapNV_fnptr - parent: OpenTK.Graphics.Glx.GlxPointers - langs: - - csharp - - vb - name: _glXDelayBeforeSwapNV_fnptr - nameWithType: GlxPointers._glXDelayBeforeSwapNV_fnptr - fullName: OpenTK.Graphics.Glx.GlxPointers._glXDelayBeforeSwapNV_fnptr - type: Field - source: - id: _glXDelayBeforeSwapNV_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs - startLine: 299 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: '[entry point: glXDelayBeforeSwapNV]' - example: [] - syntax: - content: public static delegate* unmanaged _glXDelayBeforeSwapNV_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _glXDelayBeforeSwapNV_fnptr As ' -- uid: OpenTK.Graphics.Glx.GlxPointers._glXDeleteAssociatedContextAMD_fnptr - commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXDeleteAssociatedContextAMD_fnptr - id: _glXDeleteAssociatedContextAMD_fnptr - parent: OpenTK.Graphics.Glx.GlxPointers - langs: - - csharp - - vb - name: _glXDeleteAssociatedContextAMD_fnptr - nameWithType: GlxPointers._glXDeleteAssociatedContextAMD_fnptr - fullName: OpenTK.Graphics.Glx.GlxPointers._glXDeleteAssociatedContextAMD_fnptr - type: Field - source: - id: _glXDeleteAssociatedContextAMD_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs - startLine: 308 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: '[entry point: glXDeleteAssociatedContextAMD]' - example: [] - syntax: - content: public static delegate* unmanaged _glXDeleteAssociatedContextAMD_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _glXDeleteAssociatedContextAMD_fnptr As ' -- uid: OpenTK.Graphics.Glx.GlxPointers._glXDestroyContext_fnptr - commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXDestroyContext_fnptr - id: _glXDestroyContext_fnptr - parent: OpenTK.Graphics.Glx.GlxPointers - langs: - - csharp - - vb - name: _glXDestroyContext_fnptr - nameWithType: GlxPointers._glXDestroyContext_fnptr - fullName: OpenTK.Graphics.Glx.GlxPointers._glXDestroyContext_fnptr - type: Field - source: - id: _glXDestroyContext_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs - startLine: 317 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: '[entry point: glXDestroyContext]' - example: [] - syntax: - content: public static delegate* unmanaged _glXDestroyContext_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _glXDestroyContext_fnptr As ' -- uid: OpenTK.Graphics.Glx.GlxPointers._glXDestroyGLXPbufferSGIX_fnptr - commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXDestroyGLXPbufferSGIX_fnptr - id: _glXDestroyGLXPbufferSGIX_fnptr - parent: OpenTK.Graphics.Glx.GlxPointers - langs: - - csharp - - vb - name: _glXDestroyGLXPbufferSGIX_fnptr - nameWithType: GlxPointers._glXDestroyGLXPbufferSGIX_fnptr - fullName: OpenTK.Graphics.Glx.GlxPointers._glXDestroyGLXPbufferSGIX_fnptr - type: Field - source: - id: _glXDestroyGLXPbufferSGIX_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs - startLine: 326 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: '[entry point: glXDestroyGLXPbufferSGIX]' - example: [] - syntax: - content: public static delegate* unmanaged _glXDestroyGLXPbufferSGIX_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _glXDestroyGLXPbufferSGIX_fnptr As ' -- uid: OpenTK.Graphics.Glx.GlxPointers._glXDestroyGLXPixmap_fnptr - commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXDestroyGLXPixmap_fnptr - id: _glXDestroyGLXPixmap_fnptr - parent: OpenTK.Graphics.Glx.GlxPointers - langs: - - csharp - - vb - name: _glXDestroyGLXPixmap_fnptr - nameWithType: GlxPointers._glXDestroyGLXPixmap_fnptr - fullName: OpenTK.Graphics.Glx.GlxPointers._glXDestroyGLXPixmap_fnptr - type: Field - source: - id: _glXDestroyGLXPixmap_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs - startLine: 335 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: '[entry point: glXDestroyGLXPixmap]' - example: [] - syntax: - content: public static delegate* unmanaged _glXDestroyGLXPixmap_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _glXDestroyGLXPixmap_fnptr As ' -- uid: OpenTK.Graphics.Glx.GlxPointers._glXDestroyHyperpipeConfigSGIX_fnptr - commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXDestroyHyperpipeConfigSGIX_fnptr - id: _glXDestroyHyperpipeConfigSGIX_fnptr - parent: OpenTK.Graphics.Glx.GlxPointers - langs: - - csharp - - vb - name: _glXDestroyHyperpipeConfigSGIX_fnptr - nameWithType: GlxPointers._glXDestroyHyperpipeConfigSGIX_fnptr - fullName: OpenTK.Graphics.Glx.GlxPointers._glXDestroyHyperpipeConfigSGIX_fnptr - type: Field - source: - id: _glXDestroyHyperpipeConfigSGIX_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs - startLine: 344 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: '[entry point: glXDestroyHyperpipeConfigSGIX]' - example: [] - syntax: - content: public static delegate* unmanaged _glXDestroyHyperpipeConfigSGIX_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _glXDestroyHyperpipeConfigSGIX_fnptr As ' -- uid: OpenTK.Graphics.Glx.GlxPointers._glXDestroyPbuffer_fnptr - commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXDestroyPbuffer_fnptr - id: _glXDestroyPbuffer_fnptr - parent: OpenTK.Graphics.Glx.GlxPointers - langs: - - csharp - - vb - name: _glXDestroyPbuffer_fnptr - nameWithType: GlxPointers._glXDestroyPbuffer_fnptr - fullName: OpenTK.Graphics.Glx.GlxPointers._glXDestroyPbuffer_fnptr - type: Field - source: - id: _glXDestroyPbuffer_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs - startLine: 353 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: '[entry point: glXDestroyPbuffer]' - example: [] - syntax: - content: public static delegate* unmanaged _glXDestroyPbuffer_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _glXDestroyPbuffer_fnptr As ' -- uid: OpenTK.Graphics.Glx.GlxPointers._glXDestroyPixmap_fnptr - commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXDestroyPixmap_fnptr - id: _glXDestroyPixmap_fnptr - parent: OpenTK.Graphics.Glx.GlxPointers - langs: - - csharp - - vb - name: _glXDestroyPixmap_fnptr - nameWithType: GlxPointers._glXDestroyPixmap_fnptr - fullName: OpenTK.Graphics.Glx.GlxPointers._glXDestroyPixmap_fnptr - type: Field - source: - id: _glXDestroyPixmap_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs - startLine: 362 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: '[entry point: glXDestroyPixmap]' - example: [] - syntax: - content: public static delegate* unmanaged _glXDestroyPixmap_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _glXDestroyPixmap_fnptr As ' -- uid: OpenTK.Graphics.Glx.GlxPointers._glXDestroyWindow_fnptr - commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXDestroyWindow_fnptr - id: _glXDestroyWindow_fnptr - parent: OpenTK.Graphics.Glx.GlxPointers - langs: - - csharp - - vb - name: _glXDestroyWindow_fnptr - nameWithType: GlxPointers._glXDestroyWindow_fnptr - fullName: OpenTK.Graphics.Glx.GlxPointers._glXDestroyWindow_fnptr - type: Field - source: - id: _glXDestroyWindow_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs - startLine: 371 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: '[entry point: glXDestroyWindow]' - example: [] - syntax: - content: public static delegate* unmanaged _glXDestroyWindow_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _glXDestroyWindow_fnptr As ' -- uid: OpenTK.Graphics.Glx.GlxPointers._glXEnumerateVideoCaptureDevicesNV_fnptr - commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXEnumerateVideoCaptureDevicesNV_fnptr - id: _glXEnumerateVideoCaptureDevicesNV_fnptr - parent: OpenTK.Graphics.Glx.GlxPointers - langs: - - csharp - - vb - name: _glXEnumerateVideoCaptureDevicesNV_fnptr - nameWithType: GlxPointers._glXEnumerateVideoCaptureDevicesNV_fnptr - fullName: OpenTK.Graphics.Glx.GlxPointers._glXEnumerateVideoCaptureDevicesNV_fnptr - type: Field - source: - id: _glXEnumerateVideoCaptureDevicesNV_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs - startLine: 380 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: '[entry point: glXEnumerateVideoCaptureDevicesNV]' - example: [] - syntax: - content: public static delegate* unmanaged _glXEnumerateVideoCaptureDevicesNV_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _glXEnumerateVideoCaptureDevicesNV_fnptr As ' -- uid: OpenTK.Graphics.Glx.GlxPointers._glXEnumerateVideoDevicesNV_fnptr - commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXEnumerateVideoDevicesNV_fnptr - id: _glXEnumerateVideoDevicesNV_fnptr - parent: OpenTK.Graphics.Glx.GlxPointers - langs: - - csharp - - vb - name: _glXEnumerateVideoDevicesNV_fnptr - nameWithType: GlxPointers._glXEnumerateVideoDevicesNV_fnptr - fullName: OpenTK.Graphics.Glx.GlxPointers._glXEnumerateVideoDevicesNV_fnptr - type: Field - source: - id: _glXEnumerateVideoDevicesNV_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs - startLine: 389 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: '[entry point: glXEnumerateVideoDevicesNV]' - example: [] - syntax: - content: public static delegate* unmanaged _glXEnumerateVideoDevicesNV_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _glXEnumerateVideoDevicesNV_fnptr As ' -- uid: OpenTK.Graphics.Glx.GlxPointers._glXFreeContextEXT_fnptr - commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXFreeContextEXT_fnptr - id: _glXFreeContextEXT_fnptr - parent: OpenTK.Graphics.Glx.GlxPointers - langs: - - csharp - - vb - name: _glXFreeContextEXT_fnptr - nameWithType: GlxPointers._glXFreeContextEXT_fnptr - fullName: OpenTK.Graphics.Glx.GlxPointers._glXFreeContextEXT_fnptr - type: Field - source: - id: _glXFreeContextEXT_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs - startLine: 398 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: '[entry point: glXFreeContextEXT]' - example: [] - syntax: - content: public static delegate* unmanaged _glXFreeContextEXT_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _glXFreeContextEXT_fnptr As ' -- uid: OpenTK.Graphics.Glx.GlxPointers._glXGetAGPOffsetMESA_fnptr - commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXGetAGPOffsetMESA_fnptr - id: _glXGetAGPOffsetMESA_fnptr - parent: OpenTK.Graphics.Glx.GlxPointers - langs: - - csharp - - vb - name: _glXGetAGPOffsetMESA_fnptr - nameWithType: GlxPointers._glXGetAGPOffsetMESA_fnptr - fullName: OpenTK.Graphics.Glx.GlxPointers._glXGetAGPOffsetMESA_fnptr - type: Field - source: - id: _glXGetAGPOffsetMESA_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs - startLine: 407 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: '[entry point: glXGetAGPOffsetMESA]' - example: [] - syntax: - content: public static delegate* unmanaged _glXGetAGPOffsetMESA_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _glXGetAGPOffsetMESA_fnptr As ' -- uid: OpenTK.Graphics.Glx.GlxPointers._glXGetClientString_fnptr - commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXGetClientString_fnptr - id: _glXGetClientString_fnptr - parent: OpenTK.Graphics.Glx.GlxPointers - langs: - - csharp - - vb - name: _glXGetClientString_fnptr - nameWithType: GlxPointers._glXGetClientString_fnptr - fullName: OpenTK.Graphics.Glx.GlxPointers._glXGetClientString_fnptr - type: Field - source: - id: _glXGetClientString_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs - startLine: 416 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: '[entry point: glXGetClientString]' - example: [] - syntax: - content: public static delegate* unmanaged _glXGetClientString_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _glXGetClientString_fnptr As ' -- uid: OpenTK.Graphics.Glx.GlxPointers._glXGetConfig_fnptr - commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXGetConfig_fnptr - id: _glXGetConfig_fnptr - parent: OpenTK.Graphics.Glx.GlxPointers - langs: - - csharp - - vb - name: _glXGetConfig_fnptr - nameWithType: GlxPointers._glXGetConfig_fnptr - fullName: OpenTK.Graphics.Glx.GlxPointers._glXGetConfig_fnptr - type: Field - source: - id: _glXGetConfig_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs - startLine: 425 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: '[entry point: glXGetConfig]' - example: [] - syntax: - content: public static delegate* unmanaged _glXGetConfig_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _glXGetConfig_fnptr As ' -- uid: OpenTK.Graphics.Glx.GlxPointers._glXGetContextGPUIDAMD_fnptr - commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXGetContextGPUIDAMD_fnptr - id: _glXGetContextGPUIDAMD_fnptr - parent: OpenTK.Graphics.Glx.GlxPointers - langs: - - csharp - - vb - name: _glXGetContextGPUIDAMD_fnptr - nameWithType: GlxPointers._glXGetContextGPUIDAMD_fnptr - fullName: OpenTK.Graphics.Glx.GlxPointers._glXGetContextGPUIDAMD_fnptr - type: Field - source: - id: _glXGetContextGPUIDAMD_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs - startLine: 434 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: '[entry point: glXGetContextGPUIDAMD]' - example: [] - syntax: - content: public static delegate* unmanaged _glXGetContextGPUIDAMD_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _glXGetContextGPUIDAMD_fnptr As ' -- uid: OpenTK.Graphics.Glx.GlxPointers._glXGetContextIDEXT_fnptr - commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXGetContextIDEXT_fnptr - id: _glXGetContextIDEXT_fnptr - parent: OpenTK.Graphics.Glx.GlxPointers - langs: - - csharp - - vb - name: _glXGetContextIDEXT_fnptr - nameWithType: GlxPointers._glXGetContextIDEXT_fnptr - fullName: OpenTK.Graphics.Glx.GlxPointers._glXGetContextIDEXT_fnptr - type: Field - source: - id: _glXGetContextIDEXT_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs - startLine: 443 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: '[entry point: glXGetContextIDEXT]' - example: [] - syntax: - content: public static delegate* unmanaged _glXGetContextIDEXT_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _glXGetContextIDEXT_fnptr As ' -- uid: OpenTK.Graphics.Glx.GlxPointers._glXGetCurrentAssociatedContextAMD_fnptr - commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXGetCurrentAssociatedContextAMD_fnptr - id: _glXGetCurrentAssociatedContextAMD_fnptr - parent: OpenTK.Graphics.Glx.GlxPointers - langs: - - csharp - - vb - name: _glXGetCurrentAssociatedContextAMD_fnptr - nameWithType: GlxPointers._glXGetCurrentAssociatedContextAMD_fnptr - fullName: OpenTK.Graphics.Glx.GlxPointers._glXGetCurrentAssociatedContextAMD_fnptr - type: Field - source: - id: _glXGetCurrentAssociatedContextAMD_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs - startLine: 452 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: '[entry point: glXGetCurrentAssociatedContextAMD]' - example: [] - syntax: - content: public static delegate* unmanaged _glXGetCurrentAssociatedContextAMD_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _glXGetCurrentAssociatedContextAMD_fnptr As ' -- uid: OpenTK.Graphics.Glx.GlxPointers._glXGetCurrentContext_fnptr - commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXGetCurrentContext_fnptr - id: _glXGetCurrentContext_fnptr - parent: OpenTK.Graphics.Glx.GlxPointers - langs: - - csharp - - vb - name: _glXGetCurrentContext_fnptr - nameWithType: GlxPointers._glXGetCurrentContext_fnptr - fullName: OpenTK.Graphics.Glx.GlxPointers._glXGetCurrentContext_fnptr - type: Field - source: - id: _glXGetCurrentContext_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs - startLine: 461 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: '[entry point: glXGetCurrentContext]' - example: [] - syntax: - content: public static delegate* unmanaged _glXGetCurrentContext_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _glXGetCurrentContext_fnptr As ' -- uid: OpenTK.Graphics.Glx.GlxPointers._glXGetCurrentDisplay_fnptr - commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXGetCurrentDisplay_fnptr - id: _glXGetCurrentDisplay_fnptr - parent: OpenTK.Graphics.Glx.GlxPointers - langs: - - csharp - - vb - name: _glXGetCurrentDisplay_fnptr - nameWithType: GlxPointers._glXGetCurrentDisplay_fnptr - fullName: OpenTK.Graphics.Glx.GlxPointers._glXGetCurrentDisplay_fnptr - type: Field - source: - id: _glXGetCurrentDisplay_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs - startLine: 470 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: '[entry point: glXGetCurrentDisplay]' - example: [] - syntax: - content: public static delegate* unmanaged _glXGetCurrentDisplay_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _glXGetCurrentDisplay_fnptr As ' -- uid: OpenTK.Graphics.Glx.GlxPointers._glXGetCurrentDisplayEXT_fnptr - commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXGetCurrentDisplayEXT_fnptr - id: _glXGetCurrentDisplayEXT_fnptr - parent: OpenTK.Graphics.Glx.GlxPointers - langs: - - csharp - - vb - name: _glXGetCurrentDisplayEXT_fnptr - nameWithType: GlxPointers._glXGetCurrentDisplayEXT_fnptr - fullName: OpenTK.Graphics.Glx.GlxPointers._glXGetCurrentDisplayEXT_fnptr - type: Field - source: - id: _glXGetCurrentDisplayEXT_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs - startLine: 479 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: '[entry point: glXGetCurrentDisplayEXT]' - example: [] - syntax: - content: public static delegate* unmanaged _glXGetCurrentDisplayEXT_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _glXGetCurrentDisplayEXT_fnptr As ' -- uid: OpenTK.Graphics.Glx.GlxPointers._glXGetCurrentDrawable_fnptr - commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXGetCurrentDrawable_fnptr - id: _glXGetCurrentDrawable_fnptr - parent: OpenTK.Graphics.Glx.GlxPointers - langs: - - csharp - - vb - name: _glXGetCurrentDrawable_fnptr - nameWithType: GlxPointers._glXGetCurrentDrawable_fnptr - fullName: OpenTK.Graphics.Glx.GlxPointers._glXGetCurrentDrawable_fnptr - type: Field - source: - id: _glXGetCurrentDrawable_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs - startLine: 488 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: '[entry point: glXGetCurrentDrawable]' - example: [] - syntax: - content: public static delegate* unmanaged _glXGetCurrentDrawable_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _glXGetCurrentDrawable_fnptr As ' -- uid: OpenTK.Graphics.Glx.GlxPointers._glXGetCurrentReadDrawable_fnptr - commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXGetCurrentReadDrawable_fnptr - id: _glXGetCurrentReadDrawable_fnptr - parent: OpenTK.Graphics.Glx.GlxPointers - langs: - - csharp - - vb - name: _glXGetCurrentReadDrawable_fnptr - nameWithType: GlxPointers._glXGetCurrentReadDrawable_fnptr - fullName: OpenTK.Graphics.Glx.GlxPointers._glXGetCurrentReadDrawable_fnptr - type: Field - source: - id: _glXGetCurrentReadDrawable_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs - startLine: 497 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: '[entry point: glXGetCurrentReadDrawable]' - example: [] - syntax: - content: public static delegate* unmanaged _glXGetCurrentReadDrawable_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _glXGetCurrentReadDrawable_fnptr As ' -- uid: OpenTK.Graphics.Glx.GlxPointers._glXGetCurrentReadDrawableSGI_fnptr - commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXGetCurrentReadDrawableSGI_fnptr - id: _glXGetCurrentReadDrawableSGI_fnptr - parent: OpenTK.Graphics.Glx.GlxPointers - langs: - - csharp - - vb - name: _glXGetCurrentReadDrawableSGI_fnptr - nameWithType: GlxPointers._glXGetCurrentReadDrawableSGI_fnptr - fullName: OpenTK.Graphics.Glx.GlxPointers._glXGetCurrentReadDrawableSGI_fnptr - type: Field - source: - id: _glXGetCurrentReadDrawableSGI_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs - startLine: 506 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: '[entry point: glXGetCurrentReadDrawableSGI]' - example: [] - syntax: - content: public static delegate* unmanaged _glXGetCurrentReadDrawableSGI_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _glXGetCurrentReadDrawableSGI_fnptr As ' -- uid: OpenTK.Graphics.Glx.GlxPointers._glXGetFBConfigAttrib_fnptr - commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXGetFBConfigAttrib_fnptr - id: _glXGetFBConfigAttrib_fnptr - parent: OpenTK.Graphics.Glx.GlxPointers - langs: - - csharp - - vb - name: _glXGetFBConfigAttrib_fnptr - nameWithType: GlxPointers._glXGetFBConfigAttrib_fnptr - fullName: OpenTK.Graphics.Glx.GlxPointers._glXGetFBConfigAttrib_fnptr - type: Field - source: - id: _glXGetFBConfigAttrib_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs - startLine: 515 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: '[entry point: glXGetFBConfigAttrib]' - example: [] - syntax: - content: public static delegate* unmanaged _glXGetFBConfigAttrib_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _glXGetFBConfigAttrib_fnptr As ' -- uid: OpenTK.Graphics.Glx.GlxPointers._glXGetFBConfigAttribSGIX_fnptr - commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXGetFBConfigAttribSGIX_fnptr - id: _glXGetFBConfigAttribSGIX_fnptr - parent: OpenTK.Graphics.Glx.GlxPointers - langs: - - csharp - - vb - name: _glXGetFBConfigAttribSGIX_fnptr - nameWithType: GlxPointers._glXGetFBConfigAttribSGIX_fnptr - fullName: OpenTK.Graphics.Glx.GlxPointers._glXGetFBConfigAttribSGIX_fnptr - type: Field - source: - id: _glXGetFBConfigAttribSGIX_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs - startLine: 524 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: '[entry point: glXGetFBConfigAttribSGIX]' - example: [] - syntax: - content: public static delegate* unmanaged _glXGetFBConfigAttribSGIX_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _glXGetFBConfigAttribSGIX_fnptr As ' -- uid: OpenTK.Graphics.Glx.GlxPointers._glXGetFBConfigFromVisualSGIX_fnptr - commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXGetFBConfigFromVisualSGIX_fnptr - id: _glXGetFBConfigFromVisualSGIX_fnptr - parent: OpenTK.Graphics.Glx.GlxPointers - langs: - - csharp - - vb - name: _glXGetFBConfigFromVisualSGIX_fnptr - nameWithType: GlxPointers._glXGetFBConfigFromVisualSGIX_fnptr - fullName: OpenTK.Graphics.Glx.GlxPointers._glXGetFBConfigFromVisualSGIX_fnptr - type: Field - source: - id: _glXGetFBConfigFromVisualSGIX_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs - startLine: 533 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: '[entry point: glXGetFBConfigFromVisualSGIX]' - example: [] - syntax: - content: public static delegate* unmanaged _glXGetFBConfigFromVisualSGIX_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _glXGetFBConfigFromVisualSGIX_fnptr As ' -- uid: OpenTK.Graphics.Glx.GlxPointers._glXGetFBConfigs_fnptr - commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXGetFBConfigs_fnptr - id: _glXGetFBConfigs_fnptr - parent: OpenTK.Graphics.Glx.GlxPointers - langs: - - csharp - - vb - name: _glXGetFBConfigs_fnptr - nameWithType: GlxPointers._glXGetFBConfigs_fnptr - fullName: OpenTK.Graphics.Glx.GlxPointers._glXGetFBConfigs_fnptr - type: Field - source: - id: _glXGetFBConfigs_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs - startLine: 542 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: '[entry point: glXGetFBConfigs]' - example: [] - syntax: - content: public static delegate* unmanaged _glXGetFBConfigs_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _glXGetFBConfigs_fnptr As ' -- uid: OpenTK.Graphics.Glx.GlxPointers._glXGetGPUIDsAMD_fnptr - commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXGetGPUIDsAMD_fnptr - id: _glXGetGPUIDsAMD_fnptr - parent: OpenTK.Graphics.Glx.GlxPointers - langs: - - csharp - - vb - name: _glXGetGPUIDsAMD_fnptr - nameWithType: GlxPointers._glXGetGPUIDsAMD_fnptr - fullName: OpenTK.Graphics.Glx.GlxPointers._glXGetGPUIDsAMD_fnptr - type: Field - source: - id: _glXGetGPUIDsAMD_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs - startLine: 551 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: '[entry point: glXGetGPUIDsAMD]' - example: [] - syntax: - content: public static delegate* unmanaged _glXGetGPUIDsAMD_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _glXGetGPUIDsAMD_fnptr As ' -- uid: OpenTK.Graphics.Glx.GlxPointers._glXGetGPUInfoAMD_fnptr - commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXGetGPUInfoAMD_fnptr - id: _glXGetGPUInfoAMD_fnptr - parent: OpenTK.Graphics.Glx.GlxPointers - langs: - - csharp - - vb - name: _glXGetGPUInfoAMD_fnptr - nameWithType: GlxPointers._glXGetGPUInfoAMD_fnptr - fullName: OpenTK.Graphics.Glx.GlxPointers._glXGetGPUInfoAMD_fnptr - type: Field - source: - id: _glXGetGPUInfoAMD_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs - startLine: 560 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: '[entry point: glXGetGPUInfoAMD]' - example: [] - syntax: - content: public static delegate* unmanaged _glXGetGPUInfoAMD_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _glXGetGPUInfoAMD_fnptr As ' -- uid: OpenTK.Graphics.Glx.GlxPointers._glXGetMscRateOML_fnptr - commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXGetMscRateOML_fnptr - id: _glXGetMscRateOML_fnptr - parent: OpenTK.Graphics.Glx.GlxPointers - langs: - - csharp - - vb - name: _glXGetMscRateOML_fnptr - nameWithType: GlxPointers._glXGetMscRateOML_fnptr - fullName: OpenTK.Graphics.Glx.GlxPointers._glXGetMscRateOML_fnptr - type: Field - source: - id: _glXGetMscRateOML_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs - startLine: 569 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: '[entry point: glXGetMscRateOML]' - example: [] - syntax: - content: public static delegate* unmanaged _glXGetMscRateOML_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _glXGetMscRateOML_fnptr As ' -- uid: OpenTK.Graphics.Glx.GlxPointers._glXGetProcAddress_fnptr - commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXGetProcAddress_fnptr - id: _glXGetProcAddress_fnptr - parent: OpenTK.Graphics.Glx.GlxPointers - langs: - - csharp - - vb - name: _glXGetProcAddress_fnptr - nameWithType: GlxPointers._glXGetProcAddress_fnptr - fullName: OpenTK.Graphics.Glx.GlxPointers._glXGetProcAddress_fnptr - type: Field - source: - id: _glXGetProcAddress_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs - startLine: 578 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: '[entry point: glXGetProcAddress]' - example: [] - syntax: - content: public static delegate* unmanaged _glXGetProcAddress_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _glXGetProcAddress_fnptr As ' -- uid: OpenTK.Graphics.Glx.GlxPointers._glXGetProcAddressARB_fnptr - commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXGetProcAddressARB_fnptr - id: _glXGetProcAddressARB_fnptr - parent: OpenTK.Graphics.Glx.GlxPointers - langs: - - csharp - - vb - name: _glXGetProcAddressARB_fnptr - nameWithType: GlxPointers._glXGetProcAddressARB_fnptr - fullName: OpenTK.Graphics.Glx.GlxPointers._glXGetProcAddressARB_fnptr - type: Field - source: - id: _glXGetProcAddressARB_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs - startLine: 587 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: '[entry point: glXGetProcAddressARB]' - example: [] - syntax: - content: public static delegate* unmanaged _glXGetProcAddressARB_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _glXGetProcAddressARB_fnptr As ' -- uid: OpenTK.Graphics.Glx.GlxPointers._glXGetSelectedEvent_fnptr - commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXGetSelectedEvent_fnptr - id: _glXGetSelectedEvent_fnptr - parent: OpenTK.Graphics.Glx.GlxPointers - langs: - - csharp - - vb - name: _glXGetSelectedEvent_fnptr - nameWithType: GlxPointers._glXGetSelectedEvent_fnptr - fullName: OpenTK.Graphics.Glx.GlxPointers._glXGetSelectedEvent_fnptr - type: Field - source: - id: _glXGetSelectedEvent_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs - startLine: 596 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: '[entry point: glXGetSelectedEvent]' - example: [] - syntax: - content: public static delegate* unmanaged _glXGetSelectedEvent_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _glXGetSelectedEvent_fnptr As ' -- uid: OpenTK.Graphics.Glx.GlxPointers._glXGetSelectedEventSGIX_fnptr - commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXGetSelectedEventSGIX_fnptr - id: _glXGetSelectedEventSGIX_fnptr - parent: OpenTK.Graphics.Glx.GlxPointers - langs: - - csharp - - vb - name: _glXGetSelectedEventSGIX_fnptr - nameWithType: GlxPointers._glXGetSelectedEventSGIX_fnptr - fullName: OpenTK.Graphics.Glx.GlxPointers._glXGetSelectedEventSGIX_fnptr - type: Field - source: - id: _glXGetSelectedEventSGIX_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs - startLine: 605 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: '[entry point: glXGetSelectedEventSGIX]' - example: [] - syntax: - content: public static delegate* unmanaged _glXGetSelectedEventSGIX_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _glXGetSelectedEventSGIX_fnptr As ' -- uid: OpenTK.Graphics.Glx.GlxPointers._glXGetSwapIntervalMESA_fnptr - commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXGetSwapIntervalMESA_fnptr - id: _glXGetSwapIntervalMESA_fnptr - parent: OpenTK.Graphics.Glx.GlxPointers - langs: - - csharp - - vb - name: _glXGetSwapIntervalMESA_fnptr - nameWithType: GlxPointers._glXGetSwapIntervalMESA_fnptr - fullName: OpenTK.Graphics.Glx.GlxPointers._glXGetSwapIntervalMESA_fnptr - type: Field - source: - id: _glXGetSwapIntervalMESA_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs - startLine: 614 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: '[entry point: glXGetSwapIntervalMESA]' - example: [] - syntax: - content: public static delegate* unmanaged _glXGetSwapIntervalMESA_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _glXGetSwapIntervalMESA_fnptr As ' -- uid: OpenTK.Graphics.Glx.GlxPointers._glXGetSyncValuesOML_fnptr - commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXGetSyncValuesOML_fnptr - id: _glXGetSyncValuesOML_fnptr - parent: OpenTK.Graphics.Glx.GlxPointers - langs: - - csharp - - vb - name: _glXGetSyncValuesOML_fnptr - nameWithType: GlxPointers._glXGetSyncValuesOML_fnptr - fullName: OpenTK.Graphics.Glx.GlxPointers._glXGetSyncValuesOML_fnptr - type: Field - source: - id: _glXGetSyncValuesOML_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs - startLine: 623 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: '[entry point: glXGetSyncValuesOML]' - example: [] - syntax: - content: public static delegate* unmanaged _glXGetSyncValuesOML_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _glXGetSyncValuesOML_fnptr As ' -- uid: OpenTK.Graphics.Glx.GlxPointers._glXGetTransparentIndexSUN_fnptr - commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXGetTransparentIndexSUN_fnptr - id: _glXGetTransparentIndexSUN_fnptr - parent: OpenTK.Graphics.Glx.GlxPointers - langs: - - csharp - - vb - name: _glXGetTransparentIndexSUN_fnptr - nameWithType: GlxPointers._glXGetTransparentIndexSUN_fnptr - fullName: OpenTK.Graphics.Glx.GlxPointers._glXGetTransparentIndexSUN_fnptr - type: Field - source: - id: _glXGetTransparentIndexSUN_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs - startLine: 632 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: '[entry point: glXGetTransparentIndexSUN]' - example: [] - syntax: - content: public static delegate* unmanaged _glXGetTransparentIndexSUN_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _glXGetTransparentIndexSUN_fnptr As ' -- uid: OpenTK.Graphics.Glx.GlxPointers._glXGetVideoDeviceNV_fnptr - commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXGetVideoDeviceNV_fnptr - id: _glXGetVideoDeviceNV_fnptr - parent: OpenTK.Graphics.Glx.GlxPointers - langs: - - csharp - - vb - name: _glXGetVideoDeviceNV_fnptr - nameWithType: GlxPointers._glXGetVideoDeviceNV_fnptr - fullName: OpenTK.Graphics.Glx.GlxPointers._glXGetVideoDeviceNV_fnptr - type: Field - source: - id: _glXGetVideoDeviceNV_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs - startLine: 641 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: '[entry point: glXGetVideoDeviceNV]' - example: [] - syntax: - content: public static delegate* unmanaged _glXGetVideoDeviceNV_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _glXGetVideoDeviceNV_fnptr As ' -- uid: OpenTK.Graphics.Glx.GlxPointers._glXGetVideoInfoNV_fnptr - commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXGetVideoInfoNV_fnptr - id: _glXGetVideoInfoNV_fnptr - parent: OpenTK.Graphics.Glx.GlxPointers - langs: - - csharp - - vb - name: _glXGetVideoInfoNV_fnptr - nameWithType: GlxPointers._glXGetVideoInfoNV_fnptr - fullName: OpenTK.Graphics.Glx.GlxPointers._glXGetVideoInfoNV_fnptr - type: Field - source: - id: _glXGetVideoInfoNV_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs - startLine: 650 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: '[entry point: glXGetVideoInfoNV]' - example: [] - syntax: - content: public static delegate* unmanaged _glXGetVideoInfoNV_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _glXGetVideoInfoNV_fnptr As ' -- uid: OpenTK.Graphics.Glx.GlxPointers._glXGetVideoSyncSGI_fnptr - commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXGetVideoSyncSGI_fnptr - id: _glXGetVideoSyncSGI_fnptr - parent: OpenTK.Graphics.Glx.GlxPointers - langs: - - csharp - - vb - name: _glXGetVideoSyncSGI_fnptr - nameWithType: GlxPointers._glXGetVideoSyncSGI_fnptr - fullName: OpenTK.Graphics.Glx.GlxPointers._glXGetVideoSyncSGI_fnptr - type: Field - source: - id: _glXGetVideoSyncSGI_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs - startLine: 659 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: '[entry point: glXGetVideoSyncSGI]' - example: [] - syntax: - content: public static delegate* unmanaged _glXGetVideoSyncSGI_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _glXGetVideoSyncSGI_fnptr As ' -- uid: OpenTK.Graphics.Glx.GlxPointers._glXGetVisualFromFBConfig_fnptr - commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXGetVisualFromFBConfig_fnptr - id: _glXGetVisualFromFBConfig_fnptr - parent: OpenTK.Graphics.Glx.GlxPointers - langs: - - csharp - - vb - name: _glXGetVisualFromFBConfig_fnptr - nameWithType: GlxPointers._glXGetVisualFromFBConfig_fnptr - fullName: OpenTK.Graphics.Glx.GlxPointers._glXGetVisualFromFBConfig_fnptr - type: Field - source: - id: _glXGetVisualFromFBConfig_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs - startLine: 668 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: '[entry point: glXGetVisualFromFBConfig]' - example: [] - syntax: - content: public static delegate* unmanaged _glXGetVisualFromFBConfig_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _glXGetVisualFromFBConfig_fnptr As ' -- uid: OpenTK.Graphics.Glx.GlxPointers._glXGetVisualFromFBConfigSGIX_fnptr - commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXGetVisualFromFBConfigSGIX_fnptr - id: _glXGetVisualFromFBConfigSGIX_fnptr - parent: OpenTK.Graphics.Glx.GlxPointers - langs: - - csharp - - vb - name: _glXGetVisualFromFBConfigSGIX_fnptr - nameWithType: GlxPointers._glXGetVisualFromFBConfigSGIX_fnptr - fullName: OpenTK.Graphics.Glx.GlxPointers._glXGetVisualFromFBConfigSGIX_fnptr - type: Field - source: - id: _glXGetVisualFromFBConfigSGIX_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs - startLine: 677 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: '[entry point: glXGetVisualFromFBConfigSGIX]' - example: [] - syntax: - content: public static delegate* unmanaged _glXGetVisualFromFBConfigSGIX_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _glXGetVisualFromFBConfigSGIX_fnptr As ' -- uid: OpenTK.Graphics.Glx.GlxPointers._glXHyperpipeAttribSGIX_fnptr - commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXHyperpipeAttribSGIX_fnptr - id: _glXHyperpipeAttribSGIX_fnptr - parent: OpenTK.Graphics.Glx.GlxPointers - langs: - - csharp - - vb - name: _glXHyperpipeAttribSGIX_fnptr - nameWithType: GlxPointers._glXHyperpipeAttribSGIX_fnptr - fullName: OpenTK.Graphics.Glx.GlxPointers._glXHyperpipeAttribSGIX_fnptr - type: Field - source: - id: _glXHyperpipeAttribSGIX_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs - startLine: 686 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: '[entry point: glXHyperpipeAttribSGIX]' - example: [] - syntax: - content: public static delegate* unmanaged _glXHyperpipeAttribSGIX_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _glXHyperpipeAttribSGIX_fnptr As ' -- uid: OpenTK.Graphics.Glx.GlxPointers._glXHyperpipeConfigSGIX_fnptr - commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXHyperpipeConfigSGIX_fnptr - id: _glXHyperpipeConfigSGIX_fnptr - parent: OpenTK.Graphics.Glx.GlxPointers - langs: - - csharp - - vb - name: _glXHyperpipeConfigSGIX_fnptr - nameWithType: GlxPointers._glXHyperpipeConfigSGIX_fnptr - fullName: OpenTK.Graphics.Glx.GlxPointers._glXHyperpipeConfigSGIX_fnptr - type: Field - source: - id: _glXHyperpipeConfigSGIX_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs - startLine: 695 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: '[entry point: glXHyperpipeConfigSGIX]' - example: [] - syntax: - content: public static delegate* unmanaged _glXHyperpipeConfigSGIX_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _glXHyperpipeConfigSGIX_fnptr As ' -- uid: OpenTK.Graphics.Glx.GlxPointers._glXImportContextEXT_fnptr - commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXImportContextEXT_fnptr - id: _glXImportContextEXT_fnptr - parent: OpenTK.Graphics.Glx.GlxPointers - langs: - - csharp - - vb - name: _glXImportContextEXT_fnptr - nameWithType: GlxPointers._glXImportContextEXT_fnptr - fullName: OpenTK.Graphics.Glx.GlxPointers._glXImportContextEXT_fnptr - type: Field - source: - id: _glXImportContextEXT_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs - startLine: 704 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: '[entry point: glXImportContextEXT]' - example: [] - syntax: - content: public static delegate* unmanaged _glXImportContextEXT_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _glXImportContextEXT_fnptr As ' -- uid: OpenTK.Graphics.Glx.GlxPointers._glXIsDirect_fnptr - commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXIsDirect_fnptr - id: _glXIsDirect_fnptr - parent: OpenTK.Graphics.Glx.GlxPointers - langs: - - csharp - - vb - name: _glXIsDirect_fnptr - nameWithType: GlxPointers._glXIsDirect_fnptr - fullName: OpenTK.Graphics.Glx.GlxPointers._glXIsDirect_fnptr - type: Field - source: - id: _glXIsDirect_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs - startLine: 713 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: '[entry point: glXIsDirect]' - example: [] - syntax: - content: public static delegate* unmanaged _glXIsDirect_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _glXIsDirect_fnptr As ' -- uid: OpenTK.Graphics.Glx.GlxPointers._glXJoinSwapGroupNV_fnptr - commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXJoinSwapGroupNV_fnptr - id: _glXJoinSwapGroupNV_fnptr - parent: OpenTK.Graphics.Glx.GlxPointers - langs: - - csharp - - vb - name: _glXJoinSwapGroupNV_fnptr - nameWithType: GlxPointers._glXJoinSwapGroupNV_fnptr - fullName: OpenTK.Graphics.Glx.GlxPointers._glXJoinSwapGroupNV_fnptr - type: Field - source: - id: _glXJoinSwapGroupNV_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs - startLine: 722 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: '[entry point: glXJoinSwapGroupNV]' - example: [] - syntax: - content: public static delegate* unmanaged _glXJoinSwapGroupNV_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _glXJoinSwapGroupNV_fnptr As ' -- uid: OpenTK.Graphics.Glx.GlxPointers._glXJoinSwapGroupSGIX_fnptr - commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXJoinSwapGroupSGIX_fnptr - id: _glXJoinSwapGroupSGIX_fnptr - parent: OpenTK.Graphics.Glx.GlxPointers - langs: - - csharp - - vb - name: _glXJoinSwapGroupSGIX_fnptr - nameWithType: GlxPointers._glXJoinSwapGroupSGIX_fnptr - fullName: OpenTK.Graphics.Glx.GlxPointers._glXJoinSwapGroupSGIX_fnptr - type: Field - source: - id: _glXJoinSwapGroupSGIX_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs - startLine: 731 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: '[entry point: glXJoinSwapGroupSGIX]' - example: [] - syntax: - content: public static delegate* unmanaged _glXJoinSwapGroupSGIX_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _glXJoinSwapGroupSGIX_fnptr As ' -- uid: OpenTK.Graphics.Glx.GlxPointers._glXLockVideoCaptureDeviceNV_fnptr - commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXLockVideoCaptureDeviceNV_fnptr - id: _glXLockVideoCaptureDeviceNV_fnptr - parent: OpenTK.Graphics.Glx.GlxPointers - langs: - - csharp - - vb - name: _glXLockVideoCaptureDeviceNV_fnptr - nameWithType: GlxPointers._glXLockVideoCaptureDeviceNV_fnptr - fullName: OpenTK.Graphics.Glx.GlxPointers._glXLockVideoCaptureDeviceNV_fnptr - type: Field - source: - id: _glXLockVideoCaptureDeviceNV_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs - startLine: 740 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: '[entry point: glXLockVideoCaptureDeviceNV]' - example: [] - syntax: - content: public static delegate* unmanaged _glXLockVideoCaptureDeviceNV_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _glXLockVideoCaptureDeviceNV_fnptr As ' -- uid: OpenTK.Graphics.Glx.GlxPointers._glXMakeAssociatedContextCurrentAMD_fnptr - commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXMakeAssociatedContextCurrentAMD_fnptr - id: _glXMakeAssociatedContextCurrentAMD_fnptr - parent: OpenTK.Graphics.Glx.GlxPointers - langs: - - csharp - - vb - name: _glXMakeAssociatedContextCurrentAMD_fnptr - nameWithType: GlxPointers._glXMakeAssociatedContextCurrentAMD_fnptr - fullName: OpenTK.Graphics.Glx.GlxPointers._glXMakeAssociatedContextCurrentAMD_fnptr - type: Field - source: - id: _glXMakeAssociatedContextCurrentAMD_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs - startLine: 749 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: '[entry point: glXMakeAssociatedContextCurrentAMD]' - example: [] - syntax: - content: public static delegate* unmanaged _glXMakeAssociatedContextCurrentAMD_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _glXMakeAssociatedContextCurrentAMD_fnptr As ' -- uid: OpenTK.Graphics.Glx.GlxPointers._glXMakeContextCurrent_fnptr - commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXMakeContextCurrent_fnptr - id: _glXMakeContextCurrent_fnptr - parent: OpenTK.Graphics.Glx.GlxPointers - langs: - - csharp - - vb - name: _glXMakeContextCurrent_fnptr - nameWithType: GlxPointers._glXMakeContextCurrent_fnptr - fullName: OpenTK.Graphics.Glx.GlxPointers._glXMakeContextCurrent_fnptr - type: Field - source: - id: _glXMakeContextCurrent_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs - startLine: 758 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: '[entry point: glXMakeContextCurrent]' - example: [] - syntax: - content: public static delegate* unmanaged _glXMakeContextCurrent_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _glXMakeContextCurrent_fnptr As ' -- uid: OpenTK.Graphics.Glx.GlxPointers._glXMakeCurrent_fnptr - commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXMakeCurrent_fnptr - id: _glXMakeCurrent_fnptr - parent: OpenTK.Graphics.Glx.GlxPointers - langs: - - csharp - - vb - name: _glXMakeCurrent_fnptr - nameWithType: GlxPointers._glXMakeCurrent_fnptr - fullName: OpenTK.Graphics.Glx.GlxPointers._glXMakeCurrent_fnptr - type: Field - source: - id: _glXMakeCurrent_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs - startLine: 767 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: '[entry point: glXMakeCurrent]' - example: [] - syntax: - content: public static delegate* unmanaged _glXMakeCurrent_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _glXMakeCurrent_fnptr As ' -- uid: OpenTK.Graphics.Glx.GlxPointers._glXMakeCurrentReadSGI_fnptr - commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXMakeCurrentReadSGI_fnptr - id: _glXMakeCurrentReadSGI_fnptr - parent: OpenTK.Graphics.Glx.GlxPointers - langs: - - csharp - - vb - name: _glXMakeCurrentReadSGI_fnptr - nameWithType: GlxPointers._glXMakeCurrentReadSGI_fnptr - fullName: OpenTK.Graphics.Glx.GlxPointers._glXMakeCurrentReadSGI_fnptr - type: Field - source: - id: _glXMakeCurrentReadSGI_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs - startLine: 776 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: '[entry point: glXMakeCurrentReadSGI]' - example: [] - syntax: - content: public static delegate* unmanaged _glXMakeCurrentReadSGI_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _glXMakeCurrentReadSGI_fnptr As ' -- uid: OpenTK.Graphics.Glx.GlxPointers._glXNamedCopyBufferSubDataNV_fnptr - commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXNamedCopyBufferSubDataNV_fnptr - id: _glXNamedCopyBufferSubDataNV_fnptr - parent: OpenTK.Graphics.Glx.GlxPointers - langs: - - csharp - - vb - name: _glXNamedCopyBufferSubDataNV_fnptr - nameWithType: GlxPointers._glXNamedCopyBufferSubDataNV_fnptr - fullName: OpenTK.Graphics.Glx.GlxPointers._glXNamedCopyBufferSubDataNV_fnptr - type: Field - source: - id: _glXNamedCopyBufferSubDataNV_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs - startLine: 785 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: '[entry point: glXNamedCopyBufferSubDataNV]' - example: [] - syntax: - content: public static delegate* unmanaged _glXNamedCopyBufferSubDataNV_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _glXNamedCopyBufferSubDataNV_fnptr As ' -- uid: OpenTK.Graphics.Glx.GlxPointers._glXQueryChannelDeltasSGIX_fnptr - commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXQueryChannelDeltasSGIX_fnptr - id: _glXQueryChannelDeltasSGIX_fnptr - parent: OpenTK.Graphics.Glx.GlxPointers - langs: - - csharp - - vb - name: _glXQueryChannelDeltasSGIX_fnptr - nameWithType: GlxPointers._glXQueryChannelDeltasSGIX_fnptr - fullName: OpenTK.Graphics.Glx.GlxPointers._glXQueryChannelDeltasSGIX_fnptr - type: Field - source: - id: _glXQueryChannelDeltasSGIX_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs - startLine: 794 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: '[entry point: glXQueryChannelDeltasSGIX]' - example: [] - syntax: - content: public static delegate* unmanaged _glXQueryChannelDeltasSGIX_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _glXQueryChannelDeltasSGIX_fnptr As ' -- uid: OpenTK.Graphics.Glx.GlxPointers._glXQueryChannelRectSGIX_fnptr - commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXQueryChannelRectSGIX_fnptr - id: _glXQueryChannelRectSGIX_fnptr - parent: OpenTK.Graphics.Glx.GlxPointers - langs: - - csharp - - vb - name: _glXQueryChannelRectSGIX_fnptr - nameWithType: GlxPointers._glXQueryChannelRectSGIX_fnptr - fullName: OpenTK.Graphics.Glx.GlxPointers._glXQueryChannelRectSGIX_fnptr - type: Field - source: - id: _glXQueryChannelRectSGIX_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs - startLine: 803 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: '[entry point: glXQueryChannelRectSGIX]' - example: [] - syntax: - content: public static delegate* unmanaged _glXQueryChannelRectSGIX_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _glXQueryChannelRectSGIX_fnptr As ' -- uid: OpenTK.Graphics.Glx.GlxPointers._glXQueryContext_fnptr - commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXQueryContext_fnptr - id: _glXQueryContext_fnptr - parent: OpenTK.Graphics.Glx.GlxPointers - langs: - - csharp - - vb - name: _glXQueryContext_fnptr - nameWithType: GlxPointers._glXQueryContext_fnptr - fullName: OpenTK.Graphics.Glx.GlxPointers._glXQueryContext_fnptr - type: Field - source: - id: _glXQueryContext_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs - startLine: 812 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: '[entry point: glXQueryContext]' - example: [] - syntax: - content: public static delegate* unmanaged _glXQueryContext_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _glXQueryContext_fnptr As ' -- uid: OpenTK.Graphics.Glx.GlxPointers._glXQueryContextInfoEXT_fnptr - commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXQueryContextInfoEXT_fnptr - id: _glXQueryContextInfoEXT_fnptr - parent: OpenTK.Graphics.Glx.GlxPointers - langs: - - csharp - - vb - name: _glXQueryContextInfoEXT_fnptr - nameWithType: GlxPointers._glXQueryContextInfoEXT_fnptr - fullName: OpenTK.Graphics.Glx.GlxPointers._glXQueryContextInfoEXT_fnptr - type: Field - source: - id: _glXQueryContextInfoEXT_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs - startLine: 821 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: '[entry point: glXQueryContextInfoEXT]' - example: [] - syntax: - content: public static delegate* unmanaged _glXQueryContextInfoEXT_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _glXQueryContextInfoEXT_fnptr As ' -- uid: OpenTK.Graphics.Glx.GlxPointers._glXQueryCurrentRendererIntegerMESA_fnptr - commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXQueryCurrentRendererIntegerMESA_fnptr - id: _glXQueryCurrentRendererIntegerMESA_fnptr - parent: OpenTK.Graphics.Glx.GlxPointers - langs: - - csharp - - vb - name: _glXQueryCurrentRendererIntegerMESA_fnptr - nameWithType: GlxPointers._glXQueryCurrentRendererIntegerMESA_fnptr - fullName: OpenTK.Graphics.Glx.GlxPointers._glXQueryCurrentRendererIntegerMESA_fnptr - type: Field - source: - id: _glXQueryCurrentRendererIntegerMESA_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs - startLine: 830 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: '[entry point: glXQueryCurrentRendererIntegerMESA]' - example: [] - syntax: - content: public static delegate* unmanaged _glXQueryCurrentRendererIntegerMESA_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _glXQueryCurrentRendererIntegerMESA_fnptr As ' -- uid: OpenTK.Graphics.Glx.GlxPointers._glXQueryCurrentRendererStringMESA_fnptr - commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXQueryCurrentRendererStringMESA_fnptr - id: _glXQueryCurrentRendererStringMESA_fnptr - parent: OpenTK.Graphics.Glx.GlxPointers - langs: - - csharp - - vb - name: _glXQueryCurrentRendererStringMESA_fnptr - nameWithType: GlxPointers._glXQueryCurrentRendererStringMESA_fnptr - fullName: OpenTK.Graphics.Glx.GlxPointers._glXQueryCurrentRendererStringMESA_fnptr - type: Field - source: - id: _glXQueryCurrentRendererStringMESA_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs - startLine: 839 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: '[entry point: glXQueryCurrentRendererStringMESA]' - example: [] - syntax: - content: public static delegate* unmanaged _glXQueryCurrentRendererStringMESA_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _glXQueryCurrentRendererStringMESA_fnptr As ' -- uid: OpenTK.Graphics.Glx.GlxPointers._glXQueryDrawable_fnptr - commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXQueryDrawable_fnptr - id: _glXQueryDrawable_fnptr - parent: OpenTK.Graphics.Glx.GlxPointers - langs: - - csharp - - vb - name: _glXQueryDrawable_fnptr - nameWithType: GlxPointers._glXQueryDrawable_fnptr - fullName: OpenTK.Graphics.Glx.GlxPointers._glXQueryDrawable_fnptr - type: Field - source: - id: _glXQueryDrawable_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs - startLine: 848 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: '[entry point: glXQueryDrawable]' - example: [] - syntax: - content: public static delegate* unmanaged _glXQueryDrawable_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _glXQueryDrawable_fnptr As ' -- uid: OpenTK.Graphics.Glx.GlxPointers._glXQueryExtension_fnptr - commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXQueryExtension_fnptr - id: _glXQueryExtension_fnptr - parent: OpenTK.Graphics.Glx.GlxPointers - langs: - - csharp - - vb - name: _glXQueryExtension_fnptr - nameWithType: GlxPointers._glXQueryExtension_fnptr - fullName: OpenTK.Graphics.Glx.GlxPointers._glXQueryExtension_fnptr - type: Field - source: - id: _glXQueryExtension_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs - startLine: 857 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: '[entry point: glXQueryExtension]' - example: [] - syntax: - content: public static delegate* unmanaged _glXQueryExtension_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _glXQueryExtension_fnptr As ' -- uid: OpenTK.Graphics.Glx.GlxPointers._glXQueryExtensionsString_fnptr - commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXQueryExtensionsString_fnptr - id: _glXQueryExtensionsString_fnptr - parent: OpenTK.Graphics.Glx.GlxPointers - langs: - - csharp - - vb - name: _glXQueryExtensionsString_fnptr - nameWithType: GlxPointers._glXQueryExtensionsString_fnptr - fullName: OpenTK.Graphics.Glx.GlxPointers._glXQueryExtensionsString_fnptr - type: Field - source: - id: _glXQueryExtensionsString_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs - startLine: 866 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: '[entry point: glXQueryExtensionsString]' - example: [] - syntax: - content: public static delegate* unmanaged _glXQueryExtensionsString_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _glXQueryExtensionsString_fnptr As ' -- uid: OpenTK.Graphics.Glx.GlxPointers._glXQueryFrameCountNV_fnptr - commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXQueryFrameCountNV_fnptr - id: _glXQueryFrameCountNV_fnptr - parent: OpenTK.Graphics.Glx.GlxPointers - langs: - - csharp - - vb - name: _glXQueryFrameCountNV_fnptr - nameWithType: GlxPointers._glXQueryFrameCountNV_fnptr - fullName: OpenTK.Graphics.Glx.GlxPointers._glXQueryFrameCountNV_fnptr - type: Field - source: - id: _glXQueryFrameCountNV_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs - startLine: 875 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: '[entry point: glXQueryFrameCountNV]' - example: [] - syntax: - content: public static delegate* unmanaged _glXQueryFrameCountNV_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _glXQueryFrameCountNV_fnptr As ' -- uid: OpenTK.Graphics.Glx.GlxPointers._glXQueryGLXPbufferSGIX_fnptr - commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXQueryGLXPbufferSGIX_fnptr - id: _glXQueryGLXPbufferSGIX_fnptr - parent: OpenTK.Graphics.Glx.GlxPointers - langs: - - csharp - - vb - name: _glXQueryGLXPbufferSGIX_fnptr - nameWithType: GlxPointers._glXQueryGLXPbufferSGIX_fnptr - fullName: OpenTK.Graphics.Glx.GlxPointers._glXQueryGLXPbufferSGIX_fnptr - type: Field - source: - id: _glXQueryGLXPbufferSGIX_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs - startLine: 884 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: '[entry point: glXQueryGLXPbufferSGIX]' - example: [] - syntax: - content: public static delegate* unmanaged _glXQueryGLXPbufferSGIX_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _glXQueryGLXPbufferSGIX_fnptr As ' -- uid: OpenTK.Graphics.Glx.GlxPointers._glXQueryHyperpipeAttribSGIX_fnptr - commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXQueryHyperpipeAttribSGIX_fnptr - id: _glXQueryHyperpipeAttribSGIX_fnptr - parent: OpenTK.Graphics.Glx.GlxPointers - langs: - - csharp - - vb - name: _glXQueryHyperpipeAttribSGIX_fnptr - nameWithType: GlxPointers._glXQueryHyperpipeAttribSGIX_fnptr - fullName: OpenTK.Graphics.Glx.GlxPointers._glXQueryHyperpipeAttribSGIX_fnptr - type: Field - source: - id: _glXQueryHyperpipeAttribSGIX_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs - startLine: 893 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: '[entry point: glXQueryHyperpipeAttribSGIX]' - example: [] - syntax: - content: public static delegate* unmanaged _glXQueryHyperpipeAttribSGIX_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _glXQueryHyperpipeAttribSGIX_fnptr As ' -- uid: OpenTK.Graphics.Glx.GlxPointers._glXQueryHyperpipeBestAttribSGIX_fnptr - commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXQueryHyperpipeBestAttribSGIX_fnptr - id: _glXQueryHyperpipeBestAttribSGIX_fnptr - parent: OpenTK.Graphics.Glx.GlxPointers - langs: - - csharp - - vb - name: _glXQueryHyperpipeBestAttribSGIX_fnptr - nameWithType: GlxPointers._glXQueryHyperpipeBestAttribSGIX_fnptr - fullName: OpenTK.Graphics.Glx.GlxPointers._glXQueryHyperpipeBestAttribSGIX_fnptr - type: Field - source: - id: _glXQueryHyperpipeBestAttribSGIX_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs - startLine: 902 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: '[entry point: glXQueryHyperpipeBestAttribSGIX]' - example: [] - syntax: - content: public static delegate* unmanaged _glXQueryHyperpipeBestAttribSGIX_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _glXQueryHyperpipeBestAttribSGIX_fnptr As ' -- uid: OpenTK.Graphics.Glx.GlxPointers._glXQueryHyperpipeConfigSGIX_fnptr - commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXQueryHyperpipeConfigSGIX_fnptr - id: _glXQueryHyperpipeConfigSGIX_fnptr - parent: OpenTK.Graphics.Glx.GlxPointers - langs: - - csharp - - vb - name: _glXQueryHyperpipeConfigSGIX_fnptr - nameWithType: GlxPointers._glXQueryHyperpipeConfigSGIX_fnptr - fullName: OpenTK.Graphics.Glx.GlxPointers._glXQueryHyperpipeConfigSGIX_fnptr - type: Field - source: - id: _glXQueryHyperpipeConfigSGIX_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs - startLine: 911 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: '[entry point: glXQueryHyperpipeConfigSGIX]' - example: [] - syntax: - content: public static delegate* unmanaged _glXQueryHyperpipeConfigSGIX_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _glXQueryHyperpipeConfigSGIX_fnptr As ' -- uid: OpenTK.Graphics.Glx.GlxPointers._glXQueryHyperpipeNetworkSGIX_fnptr - commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXQueryHyperpipeNetworkSGIX_fnptr - id: _glXQueryHyperpipeNetworkSGIX_fnptr - parent: OpenTK.Graphics.Glx.GlxPointers - langs: - - csharp - - vb - name: _glXQueryHyperpipeNetworkSGIX_fnptr - nameWithType: GlxPointers._glXQueryHyperpipeNetworkSGIX_fnptr - fullName: OpenTK.Graphics.Glx.GlxPointers._glXQueryHyperpipeNetworkSGIX_fnptr - type: Field - source: - id: _glXQueryHyperpipeNetworkSGIX_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs - startLine: 920 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: '[entry point: glXQueryHyperpipeNetworkSGIX]' - example: [] - syntax: - content: public static delegate* unmanaged _glXQueryHyperpipeNetworkSGIX_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _glXQueryHyperpipeNetworkSGIX_fnptr As ' -- uid: OpenTK.Graphics.Glx.GlxPointers._glXQueryMaxSwapBarriersSGIX_fnptr - commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXQueryMaxSwapBarriersSGIX_fnptr - id: _glXQueryMaxSwapBarriersSGIX_fnptr - parent: OpenTK.Graphics.Glx.GlxPointers - langs: - - csharp - - vb - name: _glXQueryMaxSwapBarriersSGIX_fnptr - nameWithType: GlxPointers._glXQueryMaxSwapBarriersSGIX_fnptr - fullName: OpenTK.Graphics.Glx.GlxPointers._glXQueryMaxSwapBarriersSGIX_fnptr - type: Field - source: - id: _glXQueryMaxSwapBarriersSGIX_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs - startLine: 929 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: '[entry point: glXQueryMaxSwapBarriersSGIX]' - example: [] - syntax: - content: public static delegate* unmanaged _glXQueryMaxSwapBarriersSGIX_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _glXQueryMaxSwapBarriersSGIX_fnptr As ' -- uid: OpenTK.Graphics.Glx.GlxPointers._glXQueryMaxSwapGroupsNV_fnptr - commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXQueryMaxSwapGroupsNV_fnptr - id: _glXQueryMaxSwapGroupsNV_fnptr - parent: OpenTK.Graphics.Glx.GlxPointers - langs: - - csharp - - vb - name: _glXQueryMaxSwapGroupsNV_fnptr - nameWithType: GlxPointers._glXQueryMaxSwapGroupsNV_fnptr - fullName: OpenTK.Graphics.Glx.GlxPointers._glXQueryMaxSwapGroupsNV_fnptr - type: Field - source: - id: _glXQueryMaxSwapGroupsNV_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs - startLine: 938 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: '[entry point: glXQueryMaxSwapGroupsNV]' - example: [] - syntax: - content: public static delegate* unmanaged _glXQueryMaxSwapGroupsNV_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _glXQueryMaxSwapGroupsNV_fnptr As ' -- uid: OpenTK.Graphics.Glx.GlxPointers._glXQueryRendererIntegerMESA_fnptr - commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXQueryRendererIntegerMESA_fnptr - id: _glXQueryRendererIntegerMESA_fnptr - parent: OpenTK.Graphics.Glx.GlxPointers - langs: - - csharp - - vb - name: _glXQueryRendererIntegerMESA_fnptr - nameWithType: GlxPointers._glXQueryRendererIntegerMESA_fnptr - fullName: OpenTK.Graphics.Glx.GlxPointers._glXQueryRendererIntegerMESA_fnptr - type: Field - source: - id: _glXQueryRendererIntegerMESA_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs - startLine: 947 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: '[entry point: glXQueryRendererIntegerMESA]' - example: [] - syntax: - content: public static delegate* unmanaged _glXQueryRendererIntegerMESA_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _glXQueryRendererIntegerMESA_fnptr As ' -- uid: OpenTK.Graphics.Glx.GlxPointers._glXQueryRendererStringMESA_fnptr - commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXQueryRendererStringMESA_fnptr - id: _glXQueryRendererStringMESA_fnptr - parent: OpenTK.Graphics.Glx.GlxPointers - langs: - - csharp - - vb - name: _glXQueryRendererStringMESA_fnptr - nameWithType: GlxPointers._glXQueryRendererStringMESA_fnptr - fullName: OpenTK.Graphics.Glx.GlxPointers._glXQueryRendererStringMESA_fnptr - type: Field - source: - id: _glXQueryRendererStringMESA_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs - startLine: 956 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: '[entry point: glXQueryRendererStringMESA]' - example: [] - syntax: - content: public static delegate* unmanaged _glXQueryRendererStringMESA_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _glXQueryRendererStringMESA_fnptr As ' -- uid: OpenTK.Graphics.Glx.GlxPointers._glXQueryServerString_fnptr - commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXQueryServerString_fnptr - id: _glXQueryServerString_fnptr - parent: OpenTK.Graphics.Glx.GlxPointers - langs: - - csharp - - vb - name: _glXQueryServerString_fnptr - nameWithType: GlxPointers._glXQueryServerString_fnptr - fullName: OpenTK.Graphics.Glx.GlxPointers._glXQueryServerString_fnptr - type: Field - source: - id: _glXQueryServerString_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs - startLine: 965 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: '[entry point: glXQueryServerString]' - example: [] - syntax: - content: public static delegate* unmanaged _glXQueryServerString_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _glXQueryServerString_fnptr As ' -- uid: OpenTK.Graphics.Glx.GlxPointers._glXQuerySwapGroupNV_fnptr - commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXQuerySwapGroupNV_fnptr - id: _glXQuerySwapGroupNV_fnptr - parent: OpenTK.Graphics.Glx.GlxPointers - langs: - - csharp - - vb - name: _glXQuerySwapGroupNV_fnptr - nameWithType: GlxPointers._glXQuerySwapGroupNV_fnptr - fullName: OpenTK.Graphics.Glx.GlxPointers._glXQuerySwapGroupNV_fnptr - type: Field - source: - id: _glXQuerySwapGroupNV_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs - startLine: 974 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: '[entry point: glXQuerySwapGroupNV]' - example: [] - syntax: - content: public static delegate* unmanaged _glXQuerySwapGroupNV_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _glXQuerySwapGroupNV_fnptr As ' -- uid: OpenTK.Graphics.Glx.GlxPointers._glXQueryVersion_fnptr - commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXQueryVersion_fnptr - id: _glXQueryVersion_fnptr - parent: OpenTK.Graphics.Glx.GlxPointers - langs: - - csharp - - vb - name: _glXQueryVersion_fnptr - nameWithType: GlxPointers._glXQueryVersion_fnptr - fullName: OpenTK.Graphics.Glx.GlxPointers._glXQueryVersion_fnptr - type: Field - source: - id: _glXQueryVersion_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs - startLine: 983 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: '[entry point: glXQueryVersion]' - example: [] - syntax: - content: public static delegate* unmanaged _glXQueryVersion_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _glXQueryVersion_fnptr As ' -- uid: OpenTK.Graphics.Glx.GlxPointers._glXQueryVideoCaptureDeviceNV_fnptr - commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXQueryVideoCaptureDeviceNV_fnptr - id: _glXQueryVideoCaptureDeviceNV_fnptr - parent: OpenTK.Graphics.Glx.GlxPointers - langs: - - csharp - - vb - name: _glXQueryVideoCaptureDeviceNV_fnptr - nameWithType: GlxPointers._glXQueryVideoCaptureDeviceNV_fnptr - fullName: OpenTK.Graphics.Glx.GlxPointers._glXQueryVideoCaptureDeviceNV_fnptr - type: Field - source: - id: _glXQueryVideoCaptureDeviceNV_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs - startLine: 992 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: '[entry point: glXQueryVideoCaptureDeviceNV]' - example: [] - syntax: - content: public static delegate* unmanaged _glXQueryVideoCaptureDeviceNV_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _glXQueryVideoCaptureDeviceNV_fnptr As ' -- uid: OpenTK.Graphics.Glx.GlxPointers._glXReleaseBuffersMESA_fnptr - commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXReleaseBuffersMESA_fnptr - id: _glXReleaseBuffersMESA_fnptr - parent: OpenTK.Graphics.Glx.GlxPointers - langs: - - csharp - - vb - name: _glXReleaseBuffersMESA_fnptr - nameWithType: GlxPointers._glXReleaseBuffersMESA_fnptr - fullName: OpenTK.Graphics.Glx.GlxPointers._glXReleaseBuffersMESA_fnptr - type: Field - source: - id: _glXReleaseBuffersMESA_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs - startLine: 1001 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: '[entry point: glXReleaseBuffersMESA]' - example: [] - syntax: - content: public static delegate* unmanaged _glXReleaseBuffersMESA_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _glXReleaseBuffersMESA_fnptr As ' -- uid: OpenTK.Graphics.Glx.GlxPointers._glXReleaseTexImageEXT_fnptr - commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXReleaseTexImageEXT_fnptr - id: _glXReleaseTexImageEXT_fnptr - parent: OpenTK.Graphics.Glx.GlxPointers - langs: - - csharp - - vb - name: _glXReleaseTexImageEXT_fnptr - nameWithType: GlxPointers._glXReleaseTexImageEXT_fnptr - fullName: OpenTK.Graphics.Glx.GlxPointers._glXReleaseTexImageEXT_fnptr - type: Field - source: - id: _glXReleaseTexImageEXT_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs - startLine: 1010 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: '[entry point: glXReleaseTexImageEXT]' - example: [] - syntax: - content: public static delegate* unmanaged _glXReleaseTexImageEXT_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _glXReleaseTexImageEXT_fnptr As ' -- uid: OpenTK.Graphics.Glx.GlxPointers._glXReleaseVideoCaptureDeviceNV_fnptr - commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXReleaseVideoCaptureDeviceNV_fnptr - id: _glXReleaseVideoCaptureDeviceNV_fnptr - parent: OpenTK.Graphics.Glx.GlxPointers - langs: - - csharp - - vb - name: _glXReleaseVideoCaptureDeviceNV_fnptr - nameWithType: GlxPointers._glXReleaseVideoCaptureDeviceNV_fnptr - fullName: OpenTK.Graphics.Glx.GlxPointers._glXReleaseVideoCaptureDeviceNV_fnptr - type: Field - source: - id: _glXReleaseVideoCaptureDeviceNV_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs - startLine: 1019 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: '[entry point: glXReleaseVideoCaptureDeviceNV]' - example: [] - syntax: - content: public static delegate* unmanaged _glXReleaseVideoCaptureDeviceNV_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _glXReleaseVideoCaptureDeviceNV_fnptr As ' -- uid: OpenTK.Graphics.Glx.GlxPointers._glXReleaseVideoDeviceNV_fnptr - commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXReleaseVideoDeviceNV_fnptr - id: _glXReleaseVideoDeviceNV_fnptr - parent: OpenTK.Graphics.Glx.GlxPointers - langs: - - csharp - - vb - name: _glXReleaseVideoDeviceNV_fnptr - nameWithType: GlxPointers._glXReleaseVideoDeviceNV_fnptr - fullName: OpenTK.Graphics.Glx.GlxPointers._glXReleaseVideoDeviceNV_fnptr - type: Field - source: - id: _glXReleaseVideoDeviceNV_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs - startLine: 1028 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: '[entry point: glXReleaseVideoDeviceNV]' - example: [] - syntax: - content: public static delegate* unmanaged _glXReleaseVideoDeviceNV_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _glXReleaseVideoDeviceNV_fnptr As ' -- uid: OpenTK.Graphics.Glx.GlxPointers._glXReleaseVideoImageNV_fnptr - commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXReleaseVideoImageNV_fnptr - id: _glXReleaseVideoImageNV_fnptr - parent: OpenTK.Graphics.Glx.GlxPointers - langs: - - csharp - - vb - name: _glXReleaseVideoImageNV_fnptr - nameWithType: GlxPointers._glXReleaseVideoImageNV_fnptr - fullName: OpenTK.Graphics.Glx.GlxPointers._glXReleaseVideoImageNV_fnptr - type: Field - source: - id: _glXReleaseVideoImageNV_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs - startLine: 1037 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: '[entry point: glXReleaseVideoImageNV]' - example: [] - syntax: - content: public static delegate* unmanaged _glXReleaseVideoImageNV_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _glXReleaseVideoImageNV_fnptr As ' -- uid: OpenTK.Graphics.Glx.GlxPointers._glXResetFrameCountNV_fnptr - commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXResetFrameCountNV_fnptr - id: _glXResetFrameCountNV_fnptr - parent: OpenTK.Graphics.Glx.GlxPointers - langs: - - csharp - - vb - name: _glXResetFrameCountNV_fnptr - nameWithType: GlxPointers._glXResetFrameCountNV_fnptr - fullName: OpenTK.Graphics.Glx.GlxPointers._glXResetFrameCountNV_fnptr - type: Field - source: - id: _glXResetFrameCountNV_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs - startLine: 1046 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: '[entry point: glXResetFrameCountNV]' - example: [] - syntax: - content: public static delegate* unmanaged _glXResetFrameCountNV_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _glXResetFrameCountNV_fnptr As ' -- uid: OpenTK.Graphics.Glx.GlxPointers._glXSelectEvent_fnptr - commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXSelectEvent_fnptr - id: _glXSelectEvent_fnptr - parent: OpenTK.Graphics.Glx.GlxPointers - langs: - - csharp - - vb - name: _glXSelectEvent_fnptr - nameWithType: GlxPointers._glXSelectEvent_fnptr - fullName: OpenTK.Graphics.Glx.GlxPointers._glXSelectEvent_fnptr - type: Field - source: - id: _glXSelectEvent_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs - startLine: 1055 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: '[entry point: glXSelectEvent]' - example: [] - syntax: - content: public static delegate* unmanaged _glXSelectEvent_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _glXSelectEvent_fnptr As ' -- uid: OpenTK.Graphics.Glx.GlxPointers._glXSelectEventSGIX_fnptr - commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXSelectEventSGIX_fnptr - id: _glXSelectEventSGIX_fnptr - parent: OpenTK.Graphics.Glx.GlxPointers - langs: - - csharp - - vb - name: _glXSelectEventSGIX_fnptr - nameWithType: GlxPointers._glXSelectEventSGIX_fnptr - fullName: OpenTK.Graphics.Glx.GlxPointers._glXSelectEventSGIX_fnptr - type: Field - source: - id: _glXSelectEventSGIX_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs - startLine: 1064 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: '[entry point: glXSelectEventSGIX]' - example: [] - syntax: - content: public static delegate* unmanaged _glXSelectEventSGIX_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _glXSelectEventSGIX_fnptr As ' -- uid: OpenTK.Graphics.Glx.GlxPointers._glXSendPbufferToVideoNV_fnptr - commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXSendPbufferToVideoNV_fnptr - id: _glXSendPbufferToVideoNV_fnptr - parent: OpenTK.Graphics.Glx.GlxPointers - langs: - - csharp - - vb - name: _glXSendPbufferToVideoNV_fnptr - nameWithType: GlxPointers._glXSendPbufferToVideoNV_fnptr - fullName: OpenTK.Graphics.Glx.GlxPointers._glXSendPbufferToVideoNV_fnptr - type: Field - source: - id: _glXSendPbufferToVideoNV_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs - startLine: 1073 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: '[entry point: glXSendPbufferToVideoNV]' - example: [] - syntax: - content: public static delegate* unmanaged _glXSendPbufferToVideoNV_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _glXSendPbufferToVideoNV_fnptr As ' -- uid: OpenTK.Graphics.Glx.GlxPointers._glXSet3DfxModeMESA_fnptr - commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXSet3DfxModeMESA_fnptr - id: _glXSet3DfxModeMESA_fnptr - parent: OpenTK.Graphics.Glx.GlxPointers - langs: - - csharp - - vb - name: _glXSet3DfxModeMESA_fnptr - nameWithType: GlxPointers._glXSet3DfxModeMESA_fnptr - fullName: OpenTK.Graphics.Glx.GlxPointers._glXSet3DfxModeMESA_fnptr - type: Field - source: - id: _glXSet3DfxModeMESA_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs - startLine: 1082 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: '[entry point: glXSet3DfxModeMESA]' - example: [] - syntax: - content: public static delegate* unmanaged _glXSet3DfxModeMESA_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _glXSet3DfxModeMESA_fnptr As ' -- uid: OpenTK.Graphics.Glx.GlxPointers._glXSwapBuffers_fnptr - commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXSwapBuffers_fnptr - id: _glXSwapBuffers_fnptr - parent: OpenTK.Graphics.Glx.GlxPointers - langs: - - csharp - - vb - name: _glXSwapBuffers_fnptr - nameWithType: GlxPointers._glXSwapBuffers_fnptr - fullName: OpenTK.Graphics.Glx.GlxPointers._glXSwapBuffers_fnptr - type: Field - source: - id: _glXSwapBuffers_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs - startLine: 1091 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: '[entry point: glXSwapBuffers]' - example: [] - syntax: - content: public static delegate* unmanaged _glXSwapBuffers_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _glXSwapBuffers_fnptr As ' -- uid: OpenTK.Graphics.Glx.GlxPointers._glXSwapBuffersMscOML_fnptr - commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXSwapBuffersMscOML_fnptr - id: _glXSwapBuffersMscOML_fnptr - parent: OpenTK.Graphics.Glx.GlxPointers - langs: - - csharp - - vb - name: _glXSwapBuffersMscOML_fnptr - nameWithType: GlxPointers._glXSwapBuffersMscOML_fnptr - fullName: OpenTK.Graphics.Glx.GlxPointers._glXSwapBuffersMscOML_fnptr - type: Field - source: - id: _glXSwapBuffersMscOML_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs - startLine: 1100 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: '[entry point: glXSwapBuffersMscOML]' - example: [] - syntax: - content: public static delegate* unmanaged _glXSwapBuffersMscOML_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _glXSwapBuffersMscOML_fnptr As ' -- uid: OpenTK.Graphics.Glx.GlxPointers._glXSwapIntervalEXT_fnptr - commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXSwapIntervalEXT_fnptr - id: _glXSwapIntervalEXT_fnptr - parent: OpenTK.Graphics.Glx.GlxPointers - langs: - - csharp - - vb - name: _glXSwapIntervalEXT_fnptr - nameWithType: GlxPointers._glXSwapIntervalEXT_fnptr - fullName: OpenTK.Graphics.Glx.GlxPointers._glXSwapIntervalEXT_fnptr - type: Field - source: - id: _glXSwapIntervalEXT_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs - startLine: 1109 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: '[entry point: glXSwapIntervalEXT]' - example: [] - syntax: - content: public static delegate* unmanaged _glXSwapIntervalEXT_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _glXSwapIntervalEXT_fnptr As ' -- uid: OpenTK.Graphics.Glx.GlxPointers._glXSwapIntervalMESA_fnptr - commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXSwapIntervalMESA_fnptr - id: _glXSwapIntervalMESA_fnptr - parent: OpenTK.Graphics.Glx.GlxPointers - langs: - - csharp - - vb - name: _glXSwapIntervalMESA_fnptr - nameWithType: GlxPointers._glXSwapIntervalMESA_fnptr - fullName: OpenTK.Graphics.Glx.GlxPointers._glXSwapIntervalMESA_fnptr - type: Field - source: - id: _glXSwapIntervalMESA_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs - startLine: 1118 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: '[entry point: glXSwapIntervalMESA]' - example: [] - syntax: - content: public static delegate* unmanaged _glXSwapIntervalMESA_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _glXSwapIntervalMESA_fnptr As ' -- uid: OpenTK.Graphics.Glx.GlxPointers._glXSwapIntervalSGI_fnptr - commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXSwapIntervalSGI_fnptr - id: _glXSwapIntervalSGI_fnptr - parent: OpenTK.Graphics.Glx.GlxPointers - langs: - - csharp - - vb - name: _glXSwapIntervalSGI_fnptr - nameWithType: GlxPointers._glXSwapIntervalSGI_fnptr - fullName: OpenTK.Graphics.Glx.GlxPointers._glXSwapIntervalSGI_fnptr - type: Field - source: - id: _glXSwapIntervalSGI_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs - startLine: 1127 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: '[entry point: glXSwapIntervalSGI]' - example: [] - syntax: - content: public static delegate* unmanaged _glXSwapIntervalSGI_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _glXSwapIntervalSGI_fnptr As ' -- uid: OpenTK.Graphics.Glx.GlxPointers._glXUseXFont_fnptr - commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXUseXFont_fnptr - id: _glXUseXFont_fnptr - parent: OpenTK.Graphics.Glx.GlxPointers - langs: - - csharp - - vb - name: _glXUseXFont_fnptr - nameWithType: GlxPointers._glXUseXFont_fnptr - fullName: OpenTK.Graphics.Glx.GlxPointers._glXUseXFont_fnptr - type: Field - source: - id: _glXUseXFont_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs - startLine: 1136 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: '[entry point: glXUseXFont]' - example: [] - syntax: - content: public static delegate* unmanaged _glXUseXFont_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _glXUseXFont_fnptr As ' -- uid: OpenTK.Graphics.Glx.GlxPointers._glXWaitForMscOML_fnptr - commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXWaitForMscOML_fnptr - id: _glXWaitForMscOML_fnptr - parent: OpenTK.Graphics.Glx.GlxPointers - langs: - - csharp - - vb - name: _glXWaitForMscOML_fnptr - nameWithType: GlxPointers._glXWaitForMscOML_fnptr - fullName: OpenTK.Graphics.Glx.GlxPointers._glXWaitForMscOML_fnptr - type: Field - source: - id: _glXWaitForMscOML_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs - startLine: 1145 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: '[entry point: glXWaitForMscOML]' - example: [] - syntax: - content: public static delegate* unmanaged _glXWaitForMscOML_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _glXWaitForMscOML_fnptr As ' -- uid: OpenTK.Graphics.Glx.GlxPointers._glXWaitForSbcOML_fnptr - commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXWaitForSbcOML_fnptr - id: _glXWaitForSbcOML_fnptr - parent: OpenTK.Graphics.Glx.GlxPointers - langs: - - csharp - - vb - name: _glXWaitForSbcOML_fnptr - nameWithType: GlxPointers._glXWaitForSbcOML_fnptr - fullName: OpenTK.Graphics.Glx.GlxPointers._glXWaitForSbcOML_fnptr - type: Field - source: - id: _glXWaitForSbcOML_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs - startLine: 1154 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: '[entry point: glXWaitForSbcOML]' - example: [] - syntax: - content: public static delegate* unmanaged _glXWaitForSbcOML_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _glXWaitForSbcOML_fnptr As ' -- uid: OpenTK.Graphics.Glx.GlxPointers._glXWaitGL_fnptr - commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXWaitGL_fnptr - id: _glXWaitGL_fnptr - parent: OpenTK.Graphics.Glx.GlxPointers - langs: - - csharp - - vb - name: _glXWaitGL_fnptr - nameWithType: GlxPointers._glXWaitGL_fnptr - fullName: OpenTK.Graphics.Glx.GlxPointers._glXWaitGL_fnptr - type: Field - source: - id: _glXWaitGL_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs - startLine: 1163 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: '[entry point: glXWaitGL]' - example: [] - syntax: - content: public static delegate* unmanaged _glXWaitGL_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _glXWaitGL_fnptr As ' -- uid: OpenTK.Graphics.Glx.GlxPointers._glXWaitVideoSyncSGI_fnptr - commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXWaitVideoSyncSGI_fnptr - id: _glXWaitVideoSyncSGI_fnptr - parent: OpenTK.Graphics.Glx.GlxPointers - langs: - - csharp - - vb - name: _glXWaitVideoSyncSGI_fnptr - nameWithType: GlxPointers._glXWaitVideoSyncSGI_fnptr - fullName: OpenTK.Graphics.Glx.GlxPointers._glXWaitVideoSyncSGI_fnptr - type: Field - source: - id: _glXWaitVideoSyncSGI_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs - startLine: 1172 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: '[entry point: glXWaitVideoSyncSGI]' - example: [] - syntax: - content: public static delegate* unmanaged _glXWaitVideoSyncSGI_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _glXWaitVideoSyncSGI_fnptr As ' -- uid: OpenTK.Graphics.Glx.GlxPointers._glXWaitX_fnptr - commentId: F:OpenTK.Graphics.Glx.GlxPointers._glXWaitX_fnptr - id: _glXWaitX_fnptr - parent: OpenTK.Graphics.Glx.GlxPointers - langs: - - csharp - - vb - name: _glXWaitX_fnptr - nameWithType: GlxPointers._glXWaitX_fnptr - fullName: OpenTK.Graphics.Glx.GlxPointers._glXWaitX_fnptr - type: Field - source: - id: _glXWaitX_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\GLX.Pointers.cs - startLine: 1181 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: '[entry point: glXWaitX]' - example: [] - syntax: - content: public static delegate* unmanaged _glXWaitX_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _glXWaitX_fnptr As ' -references: -- uid: OpenTK.Graphics.Glx - commentId: N:OpenTK.Graphics.Glx - href: OpenTK.html - name: OpenTK.Graphics.Glx - nameWithType: OpenTK.Graphics.Glx - fullName: OpenTK.Graphics.Glx - spec.csharp: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Glx - name: Glx - href: OpenTK.Graphics.Glx.html - spec.vb: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Glx - name: Glx - href: OpenTK.Graphics.Glx.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: System.Object.Equals(System.Object) - commentId: M:System.Object.Equals(System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - name: Equals(object) - nameWithType: object.Equals(object) - fullName: object.Equals(object) - nameWithType.vb: Object.Equals(Object) - fullName.vb: Object.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetHashCode - commentId: M:System.Object.GetHashCode - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - name: GetHashCode() - nameWithType: object.GetHashCode() - fullName: object.GetHashCode() - nameWithType.vb: Object.GetHashCode() - fullName.vb: Object.GetHashCode() - spec.csharp: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.MemberwiseClone - commentId: M:System.Object.MemberwiseClone - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - name: MemberwiseClone() - nameWithType: object.MemberwiseClone() - fullName: object.MemberwiseClone() - nameWithType.vb: Object.MemberwiseClone() - fullName.vb: Object.MemberwiseClone() - spec.csharp: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) - spec.vb: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.ToString - commentId: M:System.Object.ToString - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - name: ToString() - nameWithType: object.ToString() - fullName: object.ToString() - nameWithType.vb: Object.ToString() - fullName.vb: Object.ToString() - spec.csharp: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) - spec.vb: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.UIntPtr - name: nuint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uintptr - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ',' - - name: " " - - uid: System.Byte - name: byte - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.byte - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.UIntPtr - name: nuint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uintptr - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Void - name: void - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.void - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.UIntPtr - name: nuint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uintptr - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '*' - - name: ',' - - name: " " - - uid: System.Void - name: void - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.void - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ',' - - name: " " - - uid: System.UIntPtr - name: nuint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uintptr - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '*' - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ',' - - name: " " - - uid: System.UIntPtr - name: nuint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uintptr - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ',' - - name: " " - - uid: System.Void - name: void - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.void - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '*' - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '*' - - name: ',' - - name: " " - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: '*' - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '*' - - name: ',' - - name: " " - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ',' - - name: " " - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.Void - name: void - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.void - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.UInt64 - name: ulong - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint64 - - name: ',' - - name: " " - - uid: System.Void - name: void - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.void - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Void - name: void - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.void - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.UIntPtr - name: nuint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uintptr - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Void - name: void - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.void - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ',' - - name: " " - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ',' - - name: " " - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '*' - - name: ',' - - name: " " - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.Byte - name: byte - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.byte - - name: ',' - - name: " " - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.Byte - name: byte - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.byte - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '*' - - name: ',' - - name: " " - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.Byte - name: byte - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.byte - - name: ',' - - name: " " - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '*' - - name: ',' - - name: " " - - uid: System.UIntPtr - name: nuint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uintptr - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.UIntPtr - name: nuint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uintptr - - name: ',' - - name: " " - - uid: System.UIntPtr - name: nuint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uintptr - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.UIntPtr - name: nuint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uintptr - - name: ',' - - name: " " - - uid: System.UIntPtr - name: nuint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uintptr - - name: ',' - - name: " " - - uid: System.UIntPtr - name: nuint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uintptr - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '*' - - name: ',' - - name: " " - - uid: System.UIntPtr - name: nuint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uintptr - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.UIntPtr - name: nuint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uintptr - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '*' - - name: ',' - - name: " " - - uid: System.UIntPtr - name: nuint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uintptr - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.UIntPtr - name: nuint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uintptr - - name: ',' - - name: " " - - uid: System.Single - name: float - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.single - - name: ',' - - name: " " - - uid: System.Void - name: void - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.void - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.UIntPtr - name: nuint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uintptr - - name: ',' - - name: " " - - uid: System.Single - name: float - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.single - - name: ',' - - name: " " - - uid: System.Byte - name: byte - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.byte - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.Byte - name: byte - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.byte - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.Void - name: void - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.void - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.UIntPtr - name: nuint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uintptr - - name: ',' - - name: " " - - uid: System.Void - name: void - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.void - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '*' - - name: ',' - - name: " " - - uid: System.UIntPtr - name: nuint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uintptr - - name: '*' - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '*' - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: '*' - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.void - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.Void - name: void - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.void - - name: '*' - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Byte - name: byte - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.byte - - name: '*' - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '*' - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.UIntPtr - name: nuint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uintptr - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uintptr - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.UIntPtr - name: nuint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uintptr - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '*' - - name: ',' - - name: " " - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: '*' - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: '*' - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ',' - - name: " " - - uid: System.Void - name: void - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.void - - name: '*' - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.UIntPtr - name: nuint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uintptr - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '*' - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '*' - - name: ',' - - name: " " - - uid: System.Byte - name: byte - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.byte - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.byte - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.Byte - name: byte - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.byte - - name: '*' - - name: ',' - - name: " " - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.UIntPtr - name: nuint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uintptr - - name: ',' - - name: " " - - uid: System.UInt64 - name: ulong - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint64 - - name: '*' - - name: ',' - - name: " " - - uid: System.Void - name: void - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.void - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.UIntPtr - name: nuint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uintptr - - name: ',' - - name: " " - - uid: System.Int64 - name: long - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int64 - - name: '*' - - name: ',' - - name: " " - - uid: System.Int64 - name: long - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int64 - - name: '*' - - name: ',' - - name: " " - - uid: System.Int64 - name: long - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int64 - - name: '*' - - name: ',' - - name: " " - - uid: System.Byte - name: byte - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.byte - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.UIntPtr - name: nuint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uintptr - - name: ',' - - name: " " - - uid: System.UIntPtr - name: nuint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uintptr - - name: ',' - - name: " " - - uid: System.UInt64 - name: ulong - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint64 - - name: '*' - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: '*' - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ',' - - name: " " - - uid: System.UInt64 - name: ulong - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint64 - - name: '*' - - name: ',' - - name: " " - - uid: System.UInt64 - name: ulong - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint64 - - name: '*' - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: '*' - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Void - name: void - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.void - - name: '*' - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX - name: GLXHyperpipeConfigSGIX - href: OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX.html - - name: '*' - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '*' - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.UIntPtr - name: nuint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uintptr - - name: ',' - - name: " " - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.Byte - name: byte - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.byte - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.UIntPtr - name: nuint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uintptr - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ',' - - name: " " - - uid: System.Byte - name: byte - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.byte - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.UIntPtr - name: nuint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uintptr - - name: ',' - - name: " " - - uid: System.UIntPtr - name: nuint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uintptr - - name: ',' - - name: " " - - uid: System.Void - name: void - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.void - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.UIntPtr - name: nuint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uintptr - - name: ',' - - name: " " - - uid: System.UIntPtr - name: nuint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uintptr - - name: ',' - - name: " " - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.Byte - name: byte - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.byte - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.UIntPtr - name: nuint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uintptr - - name: ',' - - name: " " - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.Byte - name: byte - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.byte - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '*' - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '*' - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '*' - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '*' - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: '*' - - name: ',' - - name: " " - - uid: System.Byte - name: byte - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.byte - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Byte - name: byte - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.byte - - name: '*' - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.UIntPtr - name: nuint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uintptr - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: '*' - - name: ',' - - name: " " - - uid: System.Void - name: void - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.void - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '*' - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '*' - - name: ',' - - name: " " - - uid: System.Byte - name: byte - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.byte - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: '*' - - name: ',' - - name: " " - - uid: System.Byte - name: byte - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.byte - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Void - name: void - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.void - - name: '*' - - name: ',' - - name: " " - - uid: System.Void - name: void - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.void - - name: '*' - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '*' - - name: ',' - - name: " " - - uid: OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX - name: GLXHyperpipeConfigSGIX - href: OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX.html - - name: '*' - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '*' - - name: ',' - - name: " " - - uid: OpenTK.Graphics.Glx.GLXHyperpipeNetworkSGIX - name: GLXHyperpipeNetworkSGIX - href: OpenTK.Graphics.Glx.GLXHyperpipeNetworkSGIX.html - - name: '*' - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '*' - - name: ',' - - name: " " - - uid: System.Byte - name: byte - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.byte - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: '*' - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: '*' - - name: ',' - - name: " " - - uid: System.Byte - name: byte - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.byte - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: '*' - - name: ',' - - name: " " - - uid: System.Byte - name: byte - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.byte - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Byte - name: byte - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.byte - - name: '*' - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Byte - name: byte - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.byte - - name: '*' - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.UIntPtr - name: nuint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uintptr - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: '*' - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: '*' - - name: ',' - - name: " " - - uid: System.Byte - name: byte - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.byte - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.UIntPtr - name: nuint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uintptr - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '*' - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.UIntPtr - name: nuint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uintptr - - name: ',' - - name: " " - - uid: System.Byte - name: byte - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.byte - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.UIntPtr - name: nuint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uintptr - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Byte - name: byte - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.byte - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.UIntPtr - name: nuint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uintptr - - name: ',' - - name: " " - - uid: System.UInt64 - name: ulong - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint64 - - name: ',' - - name: " " - - uid: System.Void - name: void - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.void - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.UIntPtr - name: nuint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uintptr - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.UInt64 - name: ulong - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint64 - - name: '*' - - name: ',' - - name: " " - - uid: System.Byte - name: byte - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.byte - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Byte - name: byte - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.byte - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.UIntPtr - name: nuint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uintptr - - name: ',' - - name: " " - - uid: System.Int64 - name: long - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int64 - - name: ',' - - name: " " - - uid: System.Int64 - name: long - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int64 - - name: ',' - - name: " " - - uid: System.Int64 - name: long - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int64 - - name: ',' - - name: " " - - uid: System.Int64 - name: long - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int64 - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uintptr - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.UIntPtr - name: nuint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uintptr - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Void - name: void - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.void - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.UIntPtr - name: nuint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uintptr - - name: ',' - - name: " " - - uid: System.Int64 - name: long - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int64 - - name: ',' - - name: " " - - uid: System.Int64 - name: long - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int64 - - name: ',' - - name: " " - - uid: System.Int64 - name: long - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int64 - - name: ',' - - name: " " - - uid: System.Int64 - name: long - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int64 - - name: '*' - - name: ',' - - name: " " - - uid: System.Int64 - name: long - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int64 - - name: '*' - - name: ',' - - name: " " - - uid: System.Int64 - name: long - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int64 - - name: '*' - - name: ',' - - name: " " - - uid: System.Byte - name: byte - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.byte - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.UIntPtr - name: nuint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uintptr - - name: ',' - - name: " " - - uid: System.Int64 - name: long - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int64 - - name: ',' - - name: " " - - uid: System.Int64 - name: long - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int64 - - name: '*' - - name: ',' - - name: " " - - uid: System.Int64 - name: long - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int64 - - name: '*' - - name: ',' - - name: " " - - uid: System.Int64 - name: long - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int64 - - name: '*' - - name: ',' - - name: " " - - uid: System.Byte - name: byte - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.byte - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.void - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.Void - name: void - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.void - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: '*' - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '>' diff --git a/api/OpenTK.Graphics.Glx.Pixmap.yml b/api/OpenTK.Graphics.Glx.Pixmap.yml deleted file mode 100644 index f51fa8a7..00000000 --- a/api/OpenTK.Graphics.Glx.Pixmap.yml +++ /dev/null @@ -1,440 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: OpenTK.Graphics.Glx.Pixmap - commentId: T:OpenTK.Graphics.Glx.Pixmap - id: Pixmap - parent: OpenTK.Graphics.Glx - children: - - OpenTK.Graphics.Glx.Pixmap.#ctor(System.UIntPtr) - - OpenTK.Graphics.Glx.Pixmap.XID - - OpenTK.Graphics.Glx.Pixmap.op_Explicit(OpenTK.Graphics.Glx.Pixmap)~System.UIntPtr - - OpenTK.Graphics.Glx.Pixmap.op_Explicit(System.UIntPtr)~OpenTK.Graphics.Glx.Pixmap - langs: - - csharp - - vb - name: Pixmap - nameWithType: Pixmap - fullName: OpenTK.Graphics.Glx.Pixmap - type: Struct - source: - id: Pixmap - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 141 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: An X11 pixmap handle. - example: [] - syntax: - content: public struct Pixmap - content.vb: Public Structure Pixmap - inheritedMembers: - - System.ValueType.Equals(System.Object) - - System.ValueType.GetHashCode - - System.ValueType.ToString - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.ReferenceEquals(System.Object,System.Object) -- uid: OpenTK.Graphics.Glx.Pixmap.XID - commentId: F:OpenTK.Graphics.Glx.Pixmap.XID - id: XID - parent: OpenTK.Graphics.Glx.Pixmap - langs: - - csharp - - vb - name: XID - nameWithType: Pixmap.XID - fullName: OpenTK.Graphics.Glx.Pixmap.XID - type: Field - source: - id: XID - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 146 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: The underlying XID. - example: [] - syntax: - content: public nuint XID - return: - type: System.UIntPtr - content.vb: Public XID As UIntPtr -- uid: OpenTK.Graphics.Glx.Pixmap.#ctor(System.UIntPtr) - commentId: M:OpenTK.Graphics.Glx.Pixmap.#ctor(System.UIntPtr) - id: '#ctor(System.UIntPtr)' - parent: OpenTK.Graphics.Glx.Pixmap - langs: - - csharp - - vb - name: Pixmap(nuint) - nameWithType: Pixmap.Pixmap(nuint) - fullName: OpenTK.Graphics.Glx.Pixmap.Pixmap(nuint) - type: Constructor - source: - id: .ctor - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 152 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: Constructs a new pixmap wrapper struct from an XID. - example: [] - syntax: - content: public Pixmap(nuint xid) - parameters: - - id: xid - type: System.UIntPtr - description: The XID of the Pixmap. - content.vb: Public Sub New(xid As UIntPtr) - overload: OpenTK.Graphics.Glx.Pixmap.#ctor* - nameWithType.vb: Pixmap.New(UIntPtr) - fullName.vb: OpenTK.Graphics.Glx.Pixmap.New(System.UIntPtr) - name.vb: New(UIntPtr) -- uid: OpenTK.Graphics.Glx.Pixmap.op_Explicit(OpenTK.Graphics.Glx.Pixmap)~System.UIntPtr - commentId: M:OpenTK.Graphics.Glx.Pixmap.op_Explicit(OpenTK.Graphics.Glx.Pixmap)~System.UIntPtr - id: op_Explicit(OpenTK.Graphics.Glx.Pixmap)~System.UIntPtr - parent: OpenTK.Graphics.Glx.Pixmap - langs: - - csharp - - vb - name: explicit operator nuint(Pixmap) - nameWithType: Pixmap.explicit operator nuint(Pixmap) - fullName: OpenTK.Graphics.Glx.Pixmap.explicit operator nuint(OpenTK.Graphics.Glx.Pixmap) - type: Operator - source: - id: op_Explicit - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 157 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: public static explicit operator nuint(Pixmap handle) - parameters: - - id: handle - type: OpenTK.Graphics.Glx.Pixmap - return: - type: System.UIntPtr - content.vb: Public Shared Narrowing Operator CType(handle As Pixmap) As UIntPtr - overload: OpenTK.Graphics.Glx.Pixmap.op_Explicit* - nameWithType.vb: Pixmap.CType(Pixmap) - fullName.vb: OpenTK.Graphics.Glx.Pixmap.CType(OpenTK.Graphics.Glx.Pixmap) - name.vb: CType(Pixmap) -- uid: OpenTK.Graphics.Glx.Pixmap.op_Explicit(System.UIntPtr)~OpenTK.Graphics.Glx.Pixmap - commentId: M:OpenTK.Graphics.Glx.Pixmap.op_Explicit(System.UIntPtr)~OpenTK.Graphics.Glx.Pixmap - id: op_Explicit(System.UIntPtr)~OpenTK.Graphics.Glx.Pixmap - parent: OpenTK.Graphics.Glx.Pixmap - langs: - - csharp - - vb - name: explicit operator Pixmap(nuint) - nameWithType: Pixmap.explicit operator Pixmap(nuint) - fullName: OpenTK.Graphics.Glx.Pixmap.explicit operator OpenTK.Graphics.Glx.Pixmap(nuint) - type: Operator - source: - id: op_Explicit - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 158 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: public static explicit operator Pixmap(nuint xid) - parameters: - - id: xid - type: System.UIntPtr - return: - type: OpenTK.Graphics.Glx.Pixmap - content.vb: Public Shared Narrowing Operator CType(xid As UIntPtr) As Pixmap - overload: OpenTK.Graphics.Glx.Pixmap.op_Explicit* - nameWithType.vb: Pixmap.CType(UIntPtr) - fullName.vb: OpenTK.Graphics.Glx.Pixmap.CType(System.UIntPtr) - name.vb: CType(UIntPtr) -references: -- uid: OpenTK.Graphics.Glx - commentId: N:OpenTK.Graphics.Glx - href: OpenTK.html - name: OpenTK.Graphics.Glx - nameWithType: OpenTK.Graphics.Glx - fullName: OpenTK.Graphics.Glx - spec.csharp: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Glx - name: Glx - href: OpenTK.Graphics.Glx.html - spec.vb: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Glx - name: Glx - href: OpenTK.Graphics.Glx.html -- uid: System.ValueType.Equals(System.Object) - commentId: M:System.ValueType.Equals(System.Object) - parent: System.ValueType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals - name: Equals(object) - nameWithType: ValueType.Equals(object) - fullName: System.ValueType.Equals(object) - nameWithType.vb: ValueType.Equals(Object) - fullName.vb: System.ValueType.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: System.ValueType.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.ValueType.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.ValueType.GetHashCode - commentId: M:System.ValueType.GetHashCode - parent: System.ValueType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - name: GetHashCode() - nameWithType: ValueType.GetHashCode() - fullName: System.ValueType.GetHashCode() - spec.csharp: - - uid: System.ValueType.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - - name: ( - - name: ) - spec.vb: - - uid: System.ValueType.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - - name: ( - - name: ) -- uid: System.ValueType.ToString - commentId: M:System.ValueType.ToString - parent: System.ValueType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - name: ToString() - nameWithType: ValueType.ToString() - fullName: System.ValueType.ToString() - spec.csharp: - - uid: System.ValueType.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - - name: ( - - name: ) - spec.vb: - - uid: System.ValueType.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - - name: ( - - name: ) -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.ValueType - commentId: T:System.ValueType - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype - name: ValueType - nameWithType: ValueType - fullName: System.ValueType -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: System.UIntPtr - commentId: T:System.UIntPtr - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uintptr - name: nuint - nameWithType: nuint - fullName: nuint - nameWithType.vb: UIntPtr - fullName.vb: System.UIntPtr - name.vb: UIntPtr -- uid: OpenTK.Graphics.Glx.Pixmap.#ctor* - commentId: Overload:OpenTK.Graphics.Glx.Pixmap.#ctor - href: OpenTK.Graphics.Glx.Pixmap.html#OpenTK_Graphics_Glx_Pixmap__ctor_System_UIntPtr_ - name: Pixmap - nameWithType: Pixmap.Pixmap - fullName: OpenTK.Graphics.Glx.Pixmap.Pixmap - nameWithType.vb: Pixmap.New - fullName.vb: OpenTK.Graphics.Glx.Pixmap.New - name.vb: New -- uid: OpenTK.Graphics.Glx.Pixmap.op_Explicit* - commentId: Overload:OpenTK.Graphics.Glx.Pixmap.op_Explicit - name: explicit operator - nameWithType: Pixmap.explicit operator - fullName: OpenTK.Graphics.Glx.Pixmap.explicit operator - nameWithType.vb: Pixmap.CType - fullName.vb: OpenTK.Graphics.Glx.Pixmap.CType - name.vb: CType - spec.csharp: - - name: explicit - - name: " " - - name: operator -- uid: OpenTK.Graphics.Glx.Pixmap - commentId: T:OpenTK.Graphics.Glx.Pixmap - parent: OpenTK.Graphics.Glx - href: OpenTK.Graphics.Glx.Pixmap.html - name: Pixmap - nameWithType: Pixmap - fullName: OpenTK.Graphics.Glx.Pixmap diff --git a/api/OpenTK.Graphics.Glx.ScreenPtr.yml b/api/OpenTK.Graphics.Glx.ScreenPtr.yml deleted file mode 100644 index 31b14148..00000000 --- a/api/OpenTK.Graphics.Glx.ScreenPtr.yml +++ /dev/null @@ -1,440 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: OpenTK.Graphics.Glx.ScreenPtr - commentId: T:OpenTK.Graphics.Glx.ScreenPtr - id: ScreenPtr - parent: OpenTK.Graphics.Glx - children: - - OpenTK.Graphics.Glx.ScreenPtr.#ctor(System.IntPtr) - - OpenTK.Graphics.Glx.ScreenPtr.Value - - OpenTK.Graphics.Glx.ScreenPtr.op_Explicit(OpenTK.Graphics.Glx.ScreenPtr)~System.IntPtr - - OpenTK.Graphics.Glx.ScreenPtr.op_Explicit(System.IntPtr)~OpenTK.Graphics.Glx.ScreenPtr - langs: - - csharp - - vb - name: ScreenPtr - nameWithType: ScreenPtr - fullName: OpenTK.Graphics.Glx.ScreenPtr - type: Struct - source: - id: ScreenPtr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 72 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: Opaque struct pointer for X11 Screen*. - example: [] - syntax: - content: public struct ScreenPtr - content.vb: Public Structure ScreenPtr - inheritedMembers: - - System.ValueType.Equals(System.Object) - - System.ValueType.GetHashCode - - System.ValueType.ToString - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.ReferenceEquals(System.Object,System.Object) -- uid: OpenTK.Graphics.Glx.ScreenPtr.Value - commentId: F:OpenTK.Graphics.Glx.ScreenPtr.Value - id: Value - parent: OpenTK.Graphics.Glx.ScreenPtr - langs: - - csharp - - vb - name: Value - nameWithType: ScreenPtr.Value - fullName: OpenTK.Graphics.Glx.ScreenPtr.Value - type: Field - source: - id: Value - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 77 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: The underlying pointer value. - example: [] - syntax: - content: public nint Value - return: - type: System.IntPtr - content.vb: Public Value As IntPtr -- uid: OpenTK.Graphics.Glx.ScreenPtr.#ctor(System.IntPtr) - commentId: M:OpenTK.Graphics.Glx.ScreenPtr.#ctor(System.IntPtr) - id: '#ctor(System.IntPtr)' - parent: OpenTK.Graphics.Glx.ScreenPtr - langs: - - csharp - - vb - name: ScreenPtr(nint) - nameWithType: ScreenPtr.ScreenPtr(nint) - fullName: OpenTK.Graphics.Glx.ScreenPtr.ScreenPtr(nint) - type: Constructor - source: - id: .ctor - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 83 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: Constructs a new Screen* wrapper struct from a Screen pointer. - example: [] - syntax: - content: public ScreenPtr(nint value) - parameters: - - id: value - type: System.IntPtr - description: The screen pointer. - content.vb: Public Sub New(value As IntPtr) - overload: OpenTK.Graphics.Glx.ScreenPtr.#ctor* - nameWithType.vb: ScreenPtr.New(IntPtr) - fullName.vb: OpenTK.Graphics.Glx.ScreenPtr.New(System.IntPtr) - name.vb: New(IntPtr) -- uid: OpenTK.Graphics.Glx.ScreenPtr.op_Explicit(OpenTK.Graphics.Glx.ScreenPtr)~System.IntPtr - commentId: M:OpenTK.Graphics.Glx.ScreenPtr.op_Explicit(OpenTK.Graphics.Glx.ScreenPtr)~System.IntPtr - id: op_Explicit(OpenTK.Graphics.Glx.ScreenPtr)~System.IntPtr - parent: OpenTK.Graphics.Glx.ScreenPtr - langs: - - csharp - - vb - name: explicit operator nint(ScreenPtr) - nameWithType: ScreenPtr.explicit operator nint(ScreenPtr) - fullName: OpenTK.Graphics.Glx.ScreenPtr.explicit operator nint(OpenTK.Graphics.Glx.ScreenPtr) - type: Operator - source: - id: op_Explicit - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 88 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: public static explicit operator nint(ScreenPtr handle) - parameters: - - id: handle - type: OpenTK.Graphics.Glx.ScreenPtr - return: - type: System.IntPtr - content.vb: Public Shared Narrowing Operator CType(handle As ScreenPtr) As IntPtr - overload: OpenTK.Graphics.Glx.ScreenPtr.op_Explicit* - nameWithType.vb: ScreenPtr.CType(ScreenPtr) - fullName.vb: OpenTK.Graphics.Glx.ScreenPtr.CType(OpenTK.Graphics.Glx.ScreenPtr) - name.vb: CType(ScreenPtr) -- uid: OpenTK.Graphics.Glx.ScreenPtr.op_Explicit(System.IntPtr)~OpenTK.Graphics.Glx.ScreenPtr - commentId: M:OpenTK.Graphics.Glx.ScreenPtr.op_Explicit(System.IntPtr)~OpenTK.Graphics.Glx.ScreenPtr - id: op_Explicit(System.IntPtr)~OpenTK.Graphics.Glx.ScreenPtr - parent: OpenTK.Graphics.Glx.ScreenPtr - langs: - - csharp - - vb - name: explicit operator ScreenPtr(nint) - nameWithType: ScreenPtr.explicit operator ScreenPtr(nint) - fullName: OpenTK.Graphics.Glx.ScreenPtr.explicit operator OpenTK.Graphics.Glx.ScreenPtr(nint) - type: Operator - source: - id: op_Explicit - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 89 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: public static explicit operator ScreenPtr(nint ptr) - parameters: - - id: ptr - type: System.IntPtr - return: - type: OpenTK.Graphics.Glx.ScreenPtr - content.vb: Public Shared Narrowing Operator CType(ptr As IntPtr) As ScreenPtr - overload: OpenTK.Graphics.Glx.ScreenPtr.op_Explicit* - nameWithType.vb: ScreenPtr.CType(IntPtr) - fullName.vb: OpenTK.Graphics.Glx.ScreenPtr.CType(System.IntPtr) - name.vb: CType(IntPtr) -references: -- uid: OpenTK.Graphics.Glx - commentId: N:OpenTK.Graphics.Glx - href: OpenTK.html - name: OpenTK.Graphics.Glx - nameWithType: OpenTK.Graphics.Glx - fullName: OpenTK.Graphics.Glx - spec.csharp: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Glx - name: Glx - href: OpenTK.Graphics.Glx.html - spec.vb: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Glx - name: Glx - href: OpenTK.Graphics.Glx.html -- uid: System.ValueType.Equals(System.Object) - commentId: M:System.ValueType.Equals(System.Object) - parent: System.ValueType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals - name: Equals(object) - nameWithType: ValueType.Equals(object) - fullName: System.ValueType.Equals(object) - nameWithType.vb: ValueType.Equals(Object) - fullName.vb: System.ValueType.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: System.ValueType.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.ValueType.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.ValueType.GetHashCode - commentId: M:System.ValueType.GetHashCode - parent: System.ValueType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - name: GetHashCode() - nameWithType: ValueType.GetHashCode() - fullName: System.ValueType.GetHashCode() - spec.csharp: - - uid: System.ValueType.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - - name: ( - - name: ) - spec.vb: - - uid: System.ValueType.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - - name: ( - - name: ) -- uid: System.ValueType.ToString - commentId: M:System.ValueType.ToString - parent: System.ValueType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - name: ToString() - nameWithType: ValueType.ToString() - fullName: System.ValueType.ToString() - spec.csharp: - - uid: System.ValueType.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - - name: ( - - name: ) - spec.vb: - - uid: System.ValueType.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - - name: ( - - name: ) -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.ValueType - commentId: T:System.ValueType - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype - name: ValueType - nameWithType: ValueType - fullName: System.ValueType -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: System.IntPtr - commentId: T:System.IntPtr - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: nint - nameWithType: nint - fullName: nint - nameWithType.vb: IntPtr - fullName.vb: System.IntPtr - name.vb: IntPtr -- uid: OpenTK.Graphics.Glx.ScreenPtr.#ctor* - commentId: Overload:OpenTK.Graphics.Glx.ScreenPtr.#ctor - href: OpenTK.Graphics.Glx.ScreenPtr.html#OpenTK_Graphics_Glx_ScreenPtr__ctor_System_IntPtr_ - name: ScreenPtr - nameWithType: ScreenPtr.ScreenPtr - fullName: OpenTK.Graphics.Glx.ScreenPtr.ScreenPtr - nameWithType.vb: ScreenPtr.New - fullName.vb: OpenTK.Graphics.Glx.ScreenPtr.New - name.vb: New -- uid: OpenTK.Graphics.Glx.ScreenPtr.op_Explicit* - commentId: Overload:OpenTK.Graphics.Glx.ScreenPtr.op_Explicit - name: explicit operator - nameWithType: ScreenPtr.explicit operator - fullName: OpenTK.Graphics.Glx.ScreenPtr.explicit operator - nameWithType.vb: ScreenPtr.CType - fullName.vb: OpenTK.Graphics.Glx.ScreenPtr.CType - name.vb: CType - spec.csharp: - - name: explicit - - name: " " - - name: operator -- uid: OpenTK.Graphics.Glx.ScreenPtr - commentId: T:OpenTK.Graphics.Glx.ScreenPtr - parent: OpenTK.Graphics.Glx - href: OpenTK.Graphics.Glx.ScreenPtr.html - name: ScreenPtr - nameWithType: ScreenPtr - fullName: OpenTK.Graphics.Glx.ScreenPtr diff --git a/api/OpenTK.Graphics.Glx.Window.yml b/api/OpenTK.Graphics.Glx.Window.yml deleted file mode 100644 index 382848e8..00000000 --- a/api/OpenTK.Graphics.Glx.Window.yml +++ /dev/null @@ -1,440 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: OpenTK.Graphics.Glx.Window - commentId: T:OpenTK.Graphics.Glx.Window - id: Window - parent: OpenTK.Graphics.Glx - children: - - OpenTK.Graphics.Glx.Window.#ctor(System.UIntPtr) - - OpenTK.Graphics.Glx.Window.XID - - OpenTK.Graphics.Glx.Window.op_Explicit(OpenTK.Graphics.Glx.Window)~System.UIntPtr - - OpenTK.Graphics.Glx.Window.op_Explicit(System.UIntPtr)~OpenTK.Graphics.Glx.Window - langs: - - csharp - - vb - name: Window - nameWithType: Window - fullName: OpenTK.Graphics.Glx.Window - type: Struct - source: - id: Window - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 95 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: An X11 window handle. - example: [] - syntax: - content: public struct Window - content.vb: Public Structure Window - inheritedMembers: - - System.ValueType.Equals(System.Object) - - System.ValueType.GetHashCode - - System.ValueType.ToString - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.ReferenceEquals(System.Object,System.Object) -- uid: OpenTK.Graphics.Glx.Window.XID - commentId: F:OpenTK.Graphics.Glx.Window.XID - id: XID - parent: OpenTK.Graphics.Glx.Window - langs: - - csharp - - vb - name: XID - nameWithType: Window.XID - fullName: OpenTK.Graphics.Glx.Window.XID - type: Field - source: - id: XID - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 100 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: The underlying XID. - example: [] - syntax: - content: public nuint XID - return: - type: System.UIntPtr - content.vb: Public XID As UIntPtr -- uid: OpenTK.Graphics.Glx.Window.#ctor(System.UIntPtr) - commentId: M:OpenTK.Graphics.Glx.Window.#ctor(System.UIntPtr) - id: '#ctor(System.UIntPtr)' - parent: OpenTK.Graphics.Glx.Window - langs: - - csharp - - vb - name: Window(nuint) - nameWithType: Window.Window(nuint) - fullName: OpenTK.Graphics.Glx.Window.Window(nuint) - type: Constructor - source: - id: .ctor - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 106 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: Constructs a new Window wrapper struct from an XID. - example: [] - syntax: - content: public Window(nuint xid) - parameters: - - id: xid - type: System.UIntPtr - description: The XID of the window. - content.vb: Public Sub New(xid As UIntPtr) - overload: OpenTK.Graphics.Glx.Window.#ctor* - nameWithType.vb: Window.New(UIntPtr) - fullName.vb: OpenTK.Graphics.Glx.Window.New(System.UIntPtr) - name.vb: New(UIntPtr) -- uid: OpenTK.Graphics.Glx.Window.op_Explicit(OpenTK.Graphics.Glx.Window)~System.UIntPtr - commentId: M:OpenTK.Graphics.Glx.Window.op_Explicit(OpenTK.Graphics.Glx.Window)~System.UIntPtr - id: op_Explicit(OpenTK.Graphics.Glx.Window)~System.UIntPtr - parent: OpenTK.Graphics.Glx.Window - langs: - - csharp - - vb - name: explicit operator nuint(Window) - nameWithType: Window.explicit operator nuint(Window) - fullName: OpenTK.Graphics.Glx.Window.explicit operator nuint(OpenTK.Graphics.Glx.Window) - type: Operator - source: - id: op_Explicit - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 111 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: public static explicit operator nuint(Window handle) - parameters: - - id: handle - type: OpenTK.Graphics.Glx.Window - return: - type: System.UIntPtr - content.vb: Public Shared Narrowing Operator CType(handle As Window) As UIntPtr - overload: OpenTK.Graphics.Glx.Window.op_Explicit* - nameWithType.vb: Window.CType(Window) - fullName.vb: OpenTK.Graphics.Glx.Window.CType(OpenTK.Graphics.Glx.Window) - name.vb: CType(Window) -- uid: OpenTK.Graphics.Glx.Window.op_Explicit(System.UIntPtr)~OpenTK.Graphics.Glx.Window - commentId: M:OpenTK.Graphics.Glx.Window.op_Explicit(System.UIntPtr)~OpenTK.Graphics.Glx.Window - id: op_Explicit(System.UIntPtr)~OpenTK.Graphics.Glx.Window - parent: OpenTK.Graphics.Glx.Window - langs: - - csharp - - vb - name: explicit operator Window(nuint) - nameWithType: Window.explicit operator Window(nuint) - fullName: OpenTK.Graphics.Glx.Window.explicit operator OpenTK.Graphics.Glx.Window(nuint) - type: Operator - source: - id: op_Explicit - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 112 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: public static explicit operator Window(nuint xid) - parameters: - - id: xid - type: System.UIntPtr - return: - type: OpenTK.Graphics.Glx.Window - content.vb: Public Shared Narrowing Operator CType(xid As UIntPtr) As Window - overload: OpenTK.Graphics.Glx.Window.op_Explicit* - nameWithType.vb: Window.CType(UIntPtr) - fullName.vb: OpenTK.Graphics.Glx.Window.CType(System.UIntPtr) - name.vb: CType(UIntPtr) -references: -- uid: OpenTK.Graphics.Glx - commentId: N:OpenTK.Graphics.Glx - href: OpenTK.html - name: OpenTK.Graphics.Glx - nameWithType: OpenTK.Graphics.Glx - fullName: OpenTK.Graphics.Glx - spec.csharp: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Glx - name: Glx - href: OpenTK.Graphics.Glx.html - spec.vb: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Glx - name: Glx - href: OpenTK.Graphics.Glx.html -- uid: System.ValueType.Equals(System.Object) - commentId: M:System.ValueType.Equals(System.Object) - parent: System.ValueType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals - name: Equals(object) - nameWithType: ValueType.Equals(object) - fullName: System.ValueType.Equals(object) - nameWithType.vb: ValueType.Equals(Object) - fullName.vb: System.ValueType.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: System.ValueType.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.ValueType.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.ValueType.GetHashCode - commentId: M:System.ValueType.GetHashCode - parent: System.ValueType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - name: GetHashCode() - nameWithType: ValueType.GetHashCode() - fullName: System.ValueType.GetHashCode() - spec.csharp: - - uid: System.ValueType.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - - name: ( - - name: ) - spec.vb: - - uid: System.ValueType.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - - name: ( - - name: ) -- uid: System.ValueType.ToString - commentId: M:System.ValueType.ToString - parent: System.ValueType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - name: ToString() - nameWithType: ValueType.ToString() - fullName: System.ValueType.ToString() - spec.csharp: - - uid: System.ValueType.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - - name: ( - - name: ) - spec.vb: - - uid: System.ValueType.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - - name: ( - - name: ) -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.ValueType - commentId: T:System.ValueType - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype - name: ValueType - nameWithType: ValueType - fullName: System.ValueType -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: System.UIntPtr - commentId: T:System.UIntPtr - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uintptr - name: nuint - nameWithType: nuint - fullName: nuint - nameWithType.vb: UIntPtr - fullName.vb: System.UIntPtr - name.vb: UIntPtr -- uid: OpenTK.Graphics.Glx.Window.#ctor* - commentId: Overload:OpenTK.Graphics.Glx.Window.#ctor - href: OpenTK.Graphics.Glx.Window.html#OpenTK_Graphics_Glx_Window__ctor_System_UIntPtr_ - name: Window - nameWithType: Window.Window - fullName: OpenTK.Graphics.Glx.Window.Window - nameWithType.vb: Window.New - fullName.vb: OpenTK.Graphics.Glx.Window.New - name.vb: New -- uid: OpenTK.Graphics.Glx.Window.op_Explicit* - commentId: Overload:OpenTK.Graphics.Glx.Window.op_Explicit - name: explicit operator - nameWithType: Window.explicit operator - fullName: OpenTK.Graphics.Glx.Window.explicit operator - nameWithType.vb: Window.CType - fullName.vb: OpenTK.Graphics.Glx.Window.CType - name.vb: CType - spec.csharp: - - name: explicit - - name: " " - - name: operator -- uid: OpenTK.Graphics.Glx.Window - commentId: T:OpenTK.Graphics.Glx.Window - parent: OpenTK.Graphics.Glx - href: OpenTK.Graphics.Glx.Window.html - name: Window - nameWithType: Window - fullName: OpenTK.Graphics.Glx.Window diff --git a/api/OpenTK.Graphics.Glx.XVisualInfoPtr.yml b/api/OpenTK.Graphics.Glx.XVisualInfoPtr.yml deleted file mode 100644 index 362116c2..00000000 --- a/api/OpenTK.Graphics.Glx.XVisualInfoPtr.yml +++ /dev/null @@ -1,440 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: OpenTK.Graphics.Glx.XVisualInfoPtr - commentId: T:OpenTK.Graphics.Glx.XVisualInfoPtr - id: XVisualInfoPtr - parent: OpenTK.Graphics.Glx - children: - - OpenTK.Graphics.Glx.XVisualInfoPtr.#ctor(System.IntPtr) - - OpenTK.Graphics.Glx.XVisualInfoPtr.Value - - OpenTK.Graphics.Glx.XVisualInfoPtr.op_Explicit(OpenTK.Graphics.Glx.XVisualInfoPtr)~System.IntPtr - - OpenTK.Graphics.Glx.XVisualInfoPtr.op_Explicit(System.IntPtr)~OpenTK.Graphics.Glx.XVisualInfoPtr - langs: - - csharp - - vb - name: XVisualInfoPtr - nameWithType: XVisualInfoPtr - fullName: OpenTK.Graphics.Glx.XVisualInfoPtr - type: Struct - source: - id: XVisualInfoPtr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 187 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: Opaque struct pointer for X11 XVisualInfo*. - example: [] - syntax: - content: public struct XVisualInfoPtr - content.vb: Public Structure XVisualInfoPtr - inheritedMembers: - - System.ValueType.Equals(System.Object) - - System.ValueType.GetHashCode - - System.ValueType.ToString - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.ReferenceEquals(System.Object,System.Object) -- uid: OpenTK.Graphics.Glx.XVisualInfoPtr.Value - commentId: F:OpenTK.Graphics.Glx.XVisualInfoPtr.Value - id: Value - parent: OpenTK.Graphics.Glx.XVisualInfoPtr - langs: - - csharp - - vb - name: Value - nameWithType: XVisualInfoPtr.Value - fullName: OpenTK.Graphics.Glx.XVisualInfoPtr.Value - type: Field - source: - id: Value - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 192 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: The underlying pointer value. - example: [] - syntax: - content: public nint Value - return: - type: System.IntPtr - content.vb: Public Value As IntPtr -- uid: OpenTK.Graphics.Glx.XVisualInfoPtr.#ctor(System.IntPtr) - commentId: M:OpenTK.Graphics.Glx.XVisualInfoPtr.#ctor(System.IntPtr) - id: '#ctor(System.IntPtr)' - parent: OpenTK.Graphics.Glx.XVisualInfoPtr - langs: - - csharp - - vb - name: XVisualInfoPtr(nint) - nameWithType: XVisualInfoPtr.XVisualInfoPtr(nint) - fullName: OpenTK.Graphics.Glx.XVisualInfoPtr.XVisualInfoPtr(nint) - type: Constructor - source: - id: .ctor - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 198 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - summary: Constructs a new XVisualInfo* wrapper struct from a XVisualInfo pointer. - example: [] - syntax: - content: public XVisualInfoPtr(nint value) - parameters: - - id: value - type: System.IntPtr - description: The screen pointer. - content.vb: Public Sub New(value As IntPtr) - overload: OpenTK.Graphics.Glx.XVisualInfoPtr.#ctor* - nameWithType.vb: XVisualInfoPtr.New(IntPtr) - fullName.vb: OpenTK.Graphics.Glx.XVisualInfoPtr.New(System.IntPtr) - name.vb: New(IntPtr) -- uid: OpenTK.Graphics.Glx.XVisualInfoPtr.op_Explicit(OpenTK.Graphics.Glx.XVisualInfoPtr)~System.IntPtr - commentId: M:OpenTK.Graphics.Glx.XVisualInfoPtr.op_Explicit(OpenTK.Graphics.Glx.XVisualInfoPtr)~System.IntPtr - id: op_Explicit(OpenTK.Graphics.Glx.XVisualInfoPtr)~System.IntPtr - parent: OpenTK.Graphics.Glx.XVisualInfoPtr - langs: - - csharp - - vb - name: explicit operator nint(XVisualInfoPtr) - nameWithType: XVisualInfoPtr.explicit operator nint(XVisualInfoPtr) - fullName: OpenTK.Graphics.Glx.XVisualInfoPtr.explicit operator nint(OpenTK.Graphics.Glx.XVisualInfoPtr) - type: Operator - source: - id: op_Explicit - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 203 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: public static explicit operator nint(XVisualInfoPtr handle) - parameters: - - id: handle - type: OpenTK.Graphics.Glx.XVisualInfoPtr - return: - type: System.IntPtr - content.vb: Public Shared Narrowing Operator CType(handle As XVisualInfoPtr) As IntPtr - overload: OpenTK.Graphics.Glx.XVisualInfoPtr.op_Explicit* - nameWithType.vb: XVisualInfoPtr.CType(XVisualInfoPtr) - fullName.vb: OpenTK.Graphics.Glx.XVisualInfoPtr.CType(OpenTK.Graphics.Glx.XVisualInfoPtr) - name.vb: CType(XVisualInfoPtr) -- uid: OpenTK.Graphics.Glx.XVisualInfoPtr.op_Explicit(System.IntPtr)~OpenTK.Graphics.Glx.XVisualInfoPtr - commentId: M:OpenTK.Graphics.Glx.XVisualInfoPtr.op_Explicit(System.IntPtr)~OpenTK.Graphics.Glx.XVisualInfoPtr - id: op_Explicit(System.IntPtr)~OpenTK.Graphics.Glx.XVisualInfoPtr - parent: OpenTK.Graphics.Glx.XVisualInfoPtr - langs: - - csharp - - vb - name: explicit operator XVisualInfoPtr(nint) - nameWithType: XVisualInfoPtr.explicit operator XVisualInfoPtr(nint) - fullName: OpenTK.Graphics.Glx.XVisualInfoPtr.explicit operator OpenTK.Graphics.Glx.XVisualInfoPtr(nint) - type: Operator - source: - id: op_Explicit - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 204 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: public static explicit operator XVisualInfoPtr(nint ptr) - parameters: - - id: ptr - type: System.IntPtr - return: - type: OpenTK.Graphics.Glx.XVisualInfoPtr - content.vb: Public Shared Narrowing Operator CType(ptr As IntPtr) As XVisualInfoPtr - overload: OpenTK.Graphics.Glx.XVisualInfoPtr.op_Explicit* - nameWithType.vb: XVisualInfoPtr.CType(IntPtr) - fullName.vb: OpenTK.Graphics.Glx.XVisualInfoPtr.CType(System.IntPtr) - name.vb: CType(IntPtr) -references: -- uid: OpenTK.Graphics.Glx - commentId: N:OpenTK.Graphics.Glx - href: OpenTK.html - name: OpenTK.Graphics.Glx - nameWithType: OpenTK.Graphics.Glx - fullName: OpenTK.Graphics.Glx - spec.csharp: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Glx - name: Glx - href: OpenTK.Graphics.Glx.html - spec.vb: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Glx - name: Glx - href: OpenTK.Graphics.Glx.html -- uid: System.ValueType.Equals(System.Object) - commentId: M:System.ValueType.Equals(System.Object) - parent: System.ValueType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals - name: Equals(object) - nameWithType: ValueType.Equals(object) - fullName: System.ValueType.Equals(object) - nameWithType.vb: ValueType.Equals(Object) - fullName.vb: System.ValueType.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: System.ValueType.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.ValueType.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.ValueType.GetHashCode - commentId: M:System.ValueType.GetHashCode - parent: System.ValueType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - name: GetHashCode() - nameWithType: ValueType.GetHashCode() - fullName: System.ValueType.GetHashCode() - spec.csharp: - - uid: System.ValueType.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - - name: ( - - name: ) - spec.vb: - - uid: System.ValueType.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - - name: ( - - name: ) -- uid: System.ValueType.ToString - commentId: M:System.ValueType.ToString - parent: System.ValueType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - name: ToString() - nameWithType: ValueType.ToString() - fullName: System.ValueType.ToString() - spec.csharp: - - uid: System.ValueType.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - - name: ( - - name: ) - spec.vb: - - uid: System.ValueType.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - - name: ( - - name: ) -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.ValueType - commentId: T:System.ValueType - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype - name: ValueType - nameWithType: ValueType - fullName: System.ValueType -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: System.IntPtr - commentId: T:System.IntPtr - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: nint - nameWithType: nint - fullName: nint - nameWithType.vb: IntPtr - fullName.vb: System.IntPtr - name.vb: IntPtr -- uid: OpenTK.Graphics.Glx.XVisualInfoPtr.#ctor* - commentId: Overload:OpenTK.Graphics.Glx.XVisualInfoPtr.#ctor - href: OpenTK.Graphics.Glx.XVisualInfoPtr.html#OpenTK_Graphics_Glx_XVisualInfoPtr__ctor_System_IntPtr_ - name: XVisualInfoPtr - nameWithType: XVisualInfoPtr.XVisualInfoPtr - fullName: OpenTK.Graphics.Glx.XVisualInfoPtr.XVisualInfoPtr - nameWithType.vb: XVisualInfoPtr.New - fullName.vb: OpenTK.Graphics.Glx.XVisualInfoPtr.New - name.vb: New -- uid: OpenTK.Graphics.Glx.XVisualInfoPtr.op_Explicit* - commentId: Overload:OpenTK.Graphics.Glx.XVisualInfoPtr.op_Explicit - name: explicit operator - nameWithType: XVisualInfoPtr.explicit operator - fullName: OpenTK.Graphics.Glx.XVisualInfoPtr.explicit operator - nameWithType.vb: XVisualInfoPtr.CType - fullName.vb: OpenTK.Graphics.Glx.XVisualInfoPtr.CType - name.vb: CType - spec.csharp: - - name: explicit - - name: " " - - name: operator -- uid: OpenTK.Graphics.Glx.XVisualInfoPtr - commentId: T:OpenTK.Graphics.Glx.XVisualInfoPtr - parent: OpenTK.Graphics.Glx - href: OpenTK.Graphics.Glx.XVisualInfoPtr.html - name: XVisualInfoPtr - nameWithType: XVisualInfoPtr - fullName: OpenTK.Graphics.Glx.XVisualInfoPtr diff --git a/api/OpenTK.Graphics.Glx.yml b/api/OpenTK.Graphics.Glx.yml deleted file mode 100644 index 321fdd54..00000000 --- a/api/OpenTK.Graphics.Glx.yml +++ /dev/null @@ -1,466 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: OpenTK.Graphics.Glx - commentId: N:OpenTK.Graphics.Glx - id: OpenTK.Graphics.Glx - children: - - OpenTK.Graphics.Glx.All - - OpenTK.Graphics.Glx.Colormap - - OpenTK.Graphics.Glx.DisplayPtr - - OpenTK.Graphics.Glx.Font - - OpenTK.Graphics.Glx.GLXAttribute - - OpenTK.Graphics.Glx.GLXContext - - OpenTK.Graphics.Glx.GLXContextID - - OpenTK.Graphics.Glx.GLXDrawable - - OpenTK.Graphics.Glx.GLXFBConfig - - OpenTK.Graphics.Glx.GLXFBConfigID - - OpenTK.Graphics.Glx.GLXFBConfigIDSGIX - - OpenTK.Graphics.Glx.GLXFBConfigSGIX - - OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX - - OpenTK.Graphics.Glx.GLXHyperpipeNetworkSGIX - - OpenTK.Graphics.Glx.GLXPbuffer - - OpenTK.Graphics.Glx.GLXPbufferSGIX - - OpenTK.Graphics.Glx.GLXPixmap - - OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV - - OpenTK.Graphics.Glx.GLXVideoDeviceNV - - OpenTK.Graphics.Glx.GLXVideoSourceSGIX - - OpenTK.Graphics.Glx.GLXWindow - - OpenTK.Graphics.Glx.Glx - - OpenTK.Graphics.Glx.Glx.AMD - - OpenTK.Graphics.Glx.Glx.ARB - - OpenTK.Graphics.Glx.Glx.EXT - - OpenTK.Graphics.Glx.Glx.MESA - - OpenTK.Graphics.Glx.Glx.NV - - OpenTK.Graphics.Glx.Glx.OML - - OpenTK.Graphics.Glx.Glx.SGI - - OpenTK.Graphics.Glx.Glx.SGIX - - OpenTK.Graphics.Glx.Glx.SUN - - OpenTK.Graphics.Glx.GlxPointers - - OpenTK.Graphics.Glx.Pixmap - - OpenTK.Graphics.Glx.ScreenPtr - - OpenTK.Graphics.Glx.Window - - OpenTK.Graphics.Glx.XVisualInfoPtr - langs: - - csharp - - vb - name: OpenTK.Graphics.Glx - nameWithType: OpenTK.Graphics.Glx - fullName: OpenTK.Graphics.Glx - type: Namespace - assemblies: - - OpenTK.Graphics -references: -- uid: OpenTK.Graphics.Glx.GlxPointers - commentId: T:OpenTK.Graphics.Glx.GlxPointers - href: OpenTK.Graphics.Glx.GlxPointers.html - name: GlxPointers - nameWithType: GlxPointers - fullName: OpenTK.Graphics.Glx.GlxPointers -- uid: OpenTK.Graphics.Glx.All - commentId: T:OpenTK.Graphics.Glx.All - parent: OpenTK.Graphics.Glx - href: OpenTK.Graphics.Glx.All.html - name: All - nameWithType: All - fullName: OpenTK.Graphics.Glx.All -- uid: OpenTK.Graphics.Glx.GLXAttribute - commentId: T:OpenTK.Graphics.Glx.GLXAttribute - parent: OpenTK.Graphics.Glx - href: OpenTK.Graphics.Glx.GLXAttribute.html - name: GLXAttribute - nameWithType: GLXAttribute - fullName: OpenTK.Graphics.Glx.GLXAttribute -- uid: OpenTK.Graphics.Glx.Glx - commentId: T:OpenTK.Graphics.Glx.Glx - href: OpenTK.Graphics.Glx.Glx.html - name: Glx - nameWithType: Glx - fullName: OpenTK.Graphics.Glx.Glx -- uid: OpenTK.Graphics.Glx.Glx.AMD - commentId: T:OpenTK.Graphics.Glx.Glx.AMD - href: OpenTK.Graphics.Glx.Glx.html - name: Glx.AMD - nameWithType: Glx.AMD - fullName: OpenTK.Graphics.Glx.Glx.AMD - spec.csharp: - - uid: OpenTK.Graphics.Glx.Glx - name: Glx - href: OpenTK.Graphics.Glx.Glx.html - - name: . - - uid: OpenTK.Graphics.Glx.Glx.AMD - name: AMD - href: OpenTK.Graphics.Glx.Glx.AMD.html - spec.vb: - - uid: OpenTK.Graphics.Glx.Glx - name: Glx - href: OpenTK.Graphics.Glx.Glx.html - - name: . - - uid: OpenTK.Graphics.Glx.Glx.AMD - name: AMD - href: OpenTK.Graphics.Glx.Glx.AMD.html -- uid: OpenTK.Graphics.Glx.Glx.ARB - commentId: T:OpenTK.Graphics.Glx.Glx.ARB - href: OpenTK.Graphics.Glx.Glx.html - name: Glx.ARB - nameWithType: Glx.ARB - fullName: OpenTK.Graphics.Glx.Glx.ARB - spec.csharp: - - uid: OpenTK.Graphics.Glx.Glx - name: Glx - href: OpenTK.Graphics.Glx.Glx.html - - name: . - - uid: OpenTK.Graphics.Glx.Glx.ARB - name: ARB - href: OpenTK.Graphics.Glx.Glx.ARB.html - spec.vb: - - uid: OpenTK.Graphics.Glx.Glx - name: Glx - href: OpenTK.Graphics.Glx.Glx.html - - name: . - - uid: OpenTK.Graphics.Glx.Glx.ARB - name: ARB - href: OpenTK.Graphics.Glx.Glx.ARB.html -- uid: OpenTK.Graphics.Glx.Glx.EXT - commentId: T:OpenTK.Graphics.Glx.Glx.EXT - href: OpenTK.Graphics.Glx.Glx.html - name: Glx.EXT - nameWithType: Glx.EXT - fullName: OpenTK.Graphics.Glx.Glx.EXT - spec.csharp: - - uid: OpenTK.Graphics.Glx.Glx - name: Glx - href: OpenTK.Graphics.Glx.Glx.html - - name: . - - uid: OpenTK.Graphics.Glx.Glx.EXT - name: EXT - href: OpenTK.Graphics.Glx.Glx.EXT.html - spec.vb: - - uid: OpenTK.Graphics.Glx.Glx - name: Glx - href: OpenTK.Graphics.Glx.Glx.html - - name: . - - uid: OpenTK.Graphics.Glx.Glx.EXT - name: EXT - href: OpenTK.Graphics.Glx.Glx.EXT.html -- uid: OpenTK.Graphics.Glx.Glx.MESA - commentId: T:OpenTK.Graphics.Glx.Glx.MESA - href: OpenTK.Graphics.Glx.Glx.html - name: Glx.MESA - nameWithType: Glx.MESA - fullName: OpenTK.Graphics.Glx.Glx.MESA - spec.csharp: - - uid: OpenTK.Graphics.Glx.Glx - name: Glx - href: OpenTK.Graphics.Glx.Glx.html - - name: . - - uid: OpenTK.Graphics.Glx.Glx.MESA - name: MESA - href: OpenTK.Graphics.Glx.Glx.MESA.html - spec.vb: - - uid: OpenTK.Graphics.Glx.Glx - name: Glx - href: OpenTK.Graphics.Glx.Glx.html - - name: . - - uid: OpenTK.Graphics.Glx.Glx.MESA - name: MESA - href: OpenTK.Graphics.Glx.Glx.MESA.html -- uid: OpenTK.Graphics.Glx.Glx.NV - commentId: T:OpenTK.Graphics.Glx.Glx.NV - href: OpenTK.Graphics.Glx.Glx.html - name: Glx.NV - nameWithType: Glx.NV - fullName: OpenTK.Graphics.Glx.Glx.NV - spec.csharp: - - uid: OpenTK.Graphics.Glx.Glx - name: Glx - href: OpenTK.Graphics.Glx.Glx.html - - name: . - - uid: OpenTK.Graphics.Glx.Glx.NV - name: NV - href: OpenTK.Graphics.Glx.Glx.NV.html - spec.vb: - - uid: OpenTK.Graphics.Glx.Glx - name: Glx - href: OpenTK.Graphics.Glx.Glx.html - - name: . - - uid: OpenTK.Graphics.Glx.Glx.NV - name: NV - href: OpenTK.Graphics.Glx.Glx.NV.html -- uid: OpenTK.Graphics.Glx.Glx.OML - commentId: T:OpenTK.Graphics.Glx.Glx.OML - href: OpenTK.Graphics.Glx.Glx.html - name: Glx.OML - nameWithType: Glx.OML - fullName: OpenTK.Graphics.Glx.Glx.OML - spec.csharp: - - uid: OpenTK.Graphics.Glx.Glx - name: Glx - href: OpenTK.Graphics.Glx.Glx.html - - name: . - - uid: OpenTK.Graphics.Glx.Glx.OML - name: OML - href: OpenTK.Graphics.Glx.Glx.OML.html - spec.vb: - - uid: OpenTK.Graphics.Glx.Glx - name: Glx - href: OpenTK.Graphics.Glx.Glx.html - - name: . - - uid: OpenTK.Graphics.Glx.Glx.OML - name: OML - href: OpenTK.Graphics.Glx.Glx.OML.html -- uid: OpenTK.Graphics.Glx.Glx.SGI - commentId: T:OpenTK.Graphics.Glx.Glx.SGI - href: OpenTK.Graphics.Glx.Glx.html - name: Glx.SGI - nameWithType: Glx.SGI - fullName: OpenTK.Graphics.Glx.Glx.SGI - spec.csharp: - - uid: OpenTK.Graphics.Glx.Glx - name: Glx - href: OpenTK.Graphics.Glx.Glx.html - - name: . - - uid: OpenTK.Graphics.Glx.Glx.SGI - name: SGI - href: OpenTK.Graphics.Glx.Glx.SGI.html - spec.vb: - - uid: OpenTK.Graphics.Glx.Glx - name: Glx - href: OpenTK.Graphics.Glx.Glx.html - - name: . - - uid: OpenTK.Graphics.Glx.Glx.SGI - name: SGI - href: OpenTK.Graphics.Glx.Glx.SGI.html -- uid: OpenTK.Graphics.Glx.Glx.SGIX - commentId: T:OpenTK.Graphics.Glx.Glx.SGIX - href: OpenTK.Graphics.Glx.Glx.html - name: Glx.SGIX - nameWithType: Glx.SGIX - fullName: OpenTK.Graphics.Glx.Glx.SGIX - spec.csharp: - - uid: OpenTK.Graphics.Glx.Glx - name: Glx - href: OpenTK.Graphics.Glx.Glx.html - - name: . - - uid: OpenTK.Graphics.Glx.Glx.SGIX - name: SGIX - href: OpenTK.Graphics.Glx.Glx.SGIX.html - spec.vb: - - uid: OpenTK.Graphics.Glx.Glx - name: Glx - href: OpenTK.Graphics.Glx.Glx.html - - name: . - - uid: OpenTK.Graphics.Glx.Glx.SGIX - name: SGIX - href: OpenTK.Graphics.Glx.Glx.SGIX.html -- uid: OpenTK.Graphics.Glx.Glx.SUN - commentId: T:OpenTK.Graphics.Glx.Glx.SUN - href: OpenTK.Graphics.Glx.Glx.html - name: Glx.SUN - nameWithType: Glx.SUN - fullName: OpenTK.Graphics.Glx.Glx.SUN - spec.csharp: - - uid: OpenTK.Graphics.Glx.Glx - name: Glx - href: OpenTK.Graphics.Glx.Glx.html - - name: . - - uid: OpenTK.Graphics.Glx.Glx.SUN - name: SUN - href: OpenTK.Graphics.Glx.Glx.SUN.html - spec.vb: - - uid: OpenTK.Graphics.Glx.Glx - name: Glx - href: OpenTK.Graphics.Glx.Glx.html - - name: . - - uid: OpenTK.Graphics.Glx.Glx.SUN - name: SUN - href: OpenTK.Graphics.Glx.Glx.SUN.html -- uid: OpenTK.Graphics.Glx.DisplayPtr - commentId: T:OpenTK.Graphics.Glx.DisplayPtr - parent: OpenTK.Graphics.Glx - href: OpenTK.Graphics.Glx.DisplayPtr.html - name: DisplayPtr - nameWithType: DisplayPtr - fullName: OpenTK.Graphics.Glx.DisplayPtr -- uid: OpenTK.Graphics.Glx.ScreenPtr - commentId: T:OpenTK.Graphics.Glx.ScreenPtr - parent: OpenTK.Graphics.Glx - href: OpenTK.Graphics.Glx.ScreenPtr.html - name: ScreenPtr - nameWithType: ScreenPtr - fullName: OpenTK.Graphics.Glx.ScreenPtr -- uid: OpenTK.Graphics.Glx.Window - commentId: T:OpenTK.Graphics.Glx.Window - parent: OpenTK.Graphics.Glx - href: OpenTK.Graphics.Glx.Window.html - name: Window - nameWithType: Window - fullName: OpenTK.Graphics.Glx.Window -- uid: OpenTK.Graphics.Glx.Font - commentId: T:OpenTK.Graphics.Glx.Font - parent: OpenTK.Graphics.Glx - href: OpenTK.Graphics.Glx.Font.html - name: Font - nameWithType: Font - fullName: OpenTK.Graphics.Glx.Font -- uid: OpenTK.Graphics.Glx.Pixmap - commentId: T:OpenTK.Graphics.Glx.Pixmap - parent: OpenTK.Graphics.Glx - href: OpenTK.Graphics.Glx.Pixmap.html - name: Pixmap - nameWithType: Pixmap - fullName: OpenTK.Graphics.Glx.Pixmap -- uid: OpenTK.Graphics.Glx.Colormap - commentId: T:OpenTK.Graphics.Glx.Colormap - parent: OpenTK.Graphics.Glx - href: OpenTK.Graphics.Glx.Colormap.html - name: Colormap - nameWithType: Colormap - fullName: OpenTK.Graphics.Glx.Colormap -- uid: OpenTK.Graphics.Glx.XVisualInfoPtr - commentId: T:OpenTK.Graphics.Glx.XVisualInfoPtr - parent: OpenTK.Graphics.Glx - href: OpenTK.Graphics.Glx.XVisualInfoPtr.html - name: XVisualInfoPtr - nameWithType: XVisualInfoPtr - fullName: OpenTK.Graphics.Glx.XVisualInfoPtr -- uid: OpenTK.Graphics.Glx.GLXFBConfigID - commentId: T:OpenTK.Graphics.Glx.GLXFBConfigID - parent: OpenTK.Graphics.Glx - href: OpenTK.Graphics.Glx.GLXFBConfigID.html - name: GLXFBConfigID - nameWithType: GLXFBConfigID - fullName: OpenTK.Graphics.Glx.GLXFBConfigID -- uid: OpenTK.Graphics.Glx.GLXFBConfig - commentId: T:OpenTK.Graphics.Glx.GLXFBConfig - parent: OpenTK.Graphics.Glx - href: OpenTK.Graphics.Glx.GLXFBConfig.html - name: GLXFBConfig - nameWithType: GLXFBConfig - fullName: OpenTK.Graphics.Glx.GLXFBConfig -- uid: OpenTK.Graphics.Glx.GLXContextID - commentId: T:OpenTK.Graphics.Glx.GLXContextID - parent: OpenTK.Graphics.Glx - href: OpenTK.Graphics.Glx.GLXContextID.html - name: GLXContextID - nameWithType: GLXContextID - fullName: OpenTK.Graphics.Glx.GLXContextID -- uid: OpenTK.Graphics.Glx.GLXContext - commentId: T:OpenTK.Graphics.Glx.GLXContext - parent: OpenTK.Graphics.Glx - href: OpenTK.Graphics.Glx.GLXContext.html - name: GLXContext - nameWithType: GLXContext - fullName: OpenTK.Graphics.Glx.GLXContext -- uid: OpenTK.Graphics.Glx.GLXPixmap - commentId: T:OpenTK.Graphics.Glx.GLXPixmap - parent: OpenTK.Graphics.Glx - href: OpenTK.Graphics.Glx.GLXPixmap.html - name: GLXPixmap - nameWithType: GLXPixmap - fullName: OpenTK.Graphics.Glx.GLXPixmap -- uid: OpenTK.Graphics.Glx.GLXDrawable - commentId: T:OpenTK.Graphics.Glx.GLXDrawable - parent: OpenTK.Graphics.Glx - href: OpenTK.Graphics.Glx.GLXDrawable.html - name: GLXDrawable - nameWithType: GLXDrawable - fullName: OpenTK.Graphics.Glx.GLXDrawable -- uid: OpenTK.Graphics.Glx.GLXWindow - commentId: T:OpenTK.Graphics.Glx.GLXWindow - parent: OpenTK.Graphics.Glx - href: OpenTK.Graphics.Glx.GLXWindow.html - name: GLXWindow - nameWithType: GLXWindow - fullName: OpenTK.Graphics.Glx.GLXWindow -- uid: OpenTK.Graphics.Glx.GLXPbuffer - commentId: T:OpenTK.Graphics.Glx.GLXPbuffer - parent: OpenTK.Graphics.Glx - href: OpenTK.Graphics.Glx.GLXPbuffer.html - name: GLXPbuffer - nameWithType: GLXPbuffer - fullName: OpenTK.Graphics.Glx.GLXPbuffer -- uid: OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV - commentId: T:OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV - parent: OpenTK.Graphics.Glx - href: OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV.html - name: GLXVideoCaptureDeviceNV - nameWithType: GLXVideoCaptureDeviceNV - fullName: OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV -- uid: OpenTK.Graphics.Glx.GLXVideoSourceSGIX - commentId: T:OpenTK.Graphics.Glx.GLXVideoSourceSGIX - parent: OpenTK.Graphics.Glx - href: OpenTK.Graphics.Glx.GLXVideoSourceSGIX.html - name: GLXVideoSourceSGIX - nameWithType: GLXVideoSourceSGIX - fullName: OpenTK.Graphics.Glx.GLXVideoSourceSGIX -- uid: OpenTK.Graphics.Glx.GLXFBConfigIDSGIX - commentId: T:OpenTK.Graphics.Glx.GLXFBConfigIDSGIX - parent: OpenTK.Graphics.Glx - href: OpenTK.Graphics.Glx.GLXFBConfigIDSGIX.html - name: GLXFBConfigIDSGIX - nameWithType: GLXFBConfigIDSGIX - fullName: OpenTK.Graphics.Glx.GLXFBConfigIDSGIX -- uid: OpenTK.Graphics.Glx.GLXFBConfigSGIX - commentId: T:OpenTK.Graphics.Glx.GLXFBConfigSGIX - parent: OpenTK.Graphics.Glx - href: OpenTK.Graphics.Glx.GLXFBConfigSGIX.html - name: GLXFBConfigSGIX - nameWithType: GLXFBConfigSGIX - fullName: OpenTK.Graphics.Glx.GLXFBConfigSGIX -- uid: OpenTK.Graphics.Glx.GLXPbufferSGIX - commentId: T:OpenTK.Graphics.Glx.GLXPbufferSGIX - parent: OpenTK.Graphics.Glx - href: OpenTK.Graphics.Glx.GLXPbufferSGIX.html - name: GLXPbufferSGIX - nameWithType: GLXPbufferSGIX - fullName: OpenTK.Graphics.Glx.GLXPbufferSGIX -- uid: OpenTK.Graphics.Glx.GLXVideoDeviceNV - commentId: T:OpenTK.Graphics.Glx.GLXVideoDeviceNV - parent: OpenTK.Graphics.Glx - href: OpenTK.Graphics.Glx.GLXVideoDeviceNV.html - name: GLXVideoDeviceNV - nameWithType: GLXVideoDeviceNV - fullName: OpenTK.Graphics.Glx.GLXVideoDeviceNV -- uid: OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX - commentId: T:OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX - parent: OpenTK.Graphics.Glx - href: OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX.html - name: GLXHyperpipeConfigSGIX - nameWithType: GLXHyperpipeConfigSGIX - fullName: OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX -- uid: OpenTK.Graphics.Glx.GLXHyperpipeNetworkSGIX - commentId: T:OpenTK.Graphics.Glx.GLXHyperpipeNetworkSGIX - href: OpenTK.Graphics.Glx.GLXHyperpipeNetworkSGIX.html - name: GLXHyperpipeNetworkSGIX - nameWithType: GLXHyperpipeNetworkSGIX - fullName: OpenTK.Graphics.Glx.GLXHyperpipeNetworkSGIX -- uid: OpenTK.Graphics.Glx - commentId: N:OpenTK.Graphics.Glx - href: OpenTK.html - name: OpenTK.Graphics.Glx - nameWithType: OpenTK.Graphics.Glx - fullName: OpenTK.Graphics.Glx - spec.csharp: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Glx - name: Glx - href: OpenTK.Graphics.Glx.html - spec.vb: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Glx - name: Glx - href: OpenTK.Graphics.Glx.html diff --git a/api/OpenTK.Graphics.PerfQueryHandle.yml b/api/OpenTK.Graphics.PerfQueryHandle.yml index 730a2c66..d3ef96ea 100644 --- a/api/OpenTK.Graphics.PerfQueryHandle.yml +++ b/api/OpenTK.Graphics.PerfQueryHandle.yml @@ -25,7 +25,7 @@ items: source: id: PerfQueryHandle path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 1283 + startLine: 1577 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -53,7 +53,7 @@ items: source: id: Zero path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 1285 + startLine: 1579 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -76,7 +76,7 @@ items: source: id: Handle path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 1287 + startLine: 1581 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -99,7 +99,7 @@ items: source: id: .ctor path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 1289 + startLine: 1583 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -127,7 +127,7 @@ items: source: id: Equals path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 1294 + startLine: 1588 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -162,7 +162,7 @@ items: source: id: Equals path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 1299 + startLine: 1593 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -195,7 +195,7 @@ items: source: id: GetHashCode path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 1304 + startLine: 1598 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -223,7 +223,7 @@ items: source: id: op_Equality path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 1309 + startLine: 1603 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -255,7 +255,7 @@ items: source: id: op_Inequality path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 1314 + startLine: 1608 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -287,7 +287,7 @@ items: source: id: op_Explicit path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 1319 + startLine: 1613 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -317,7 +317,7 @@ items: source: id: op_Explicit path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 1320 + startLine: 1614 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics diff --git a/api/OpenTK.Graphics.ProgramHandle.yml b/api/OpenTK.Graphics.ProgramHandle.yml index 0a148e46..85ba80f3 100644 --- a/api/OpenTK.Graphics.ProgramHandle.yml +++ b/api/OpenTK.Graphics.ProgramHandle.yml @@ -25,7 +25,7 @@ items: source: id: ProgramHandle path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 803 + startLine: 1097 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -53,7 +53,7 @@ items: source: id: Zero path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 805 + startLine: 1099 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -76,7 +76,7 @@ items: source: id: Handle path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 807 + startLine: 1101 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -99,7 +99,7 @@ items: source: id: .ctor path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 809 + startLine: 1103 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -127,7 +127,7 @@ items: source: id: Equals path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 814 + startLine: 1108 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -162,7 +162,7 @@ items: source: id: Equals path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 819 + startLine: 1113 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -195,7 +195,7 @@ items: source: id: GetHashCode path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 824 + startLine: 1118 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -223,7 +223,7 @@ items: source: id: op_Equality path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 829 + startLine: 1123 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -255,7 +255,7 @@ items: source: id: op_Inequality path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 834 + startLine: 1128 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -287,7 +287,7 @@ items: source: id: op_Explicit path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 839 + startLine: 1133 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -317,7 +317,7 @@ items: source: id: op_Explicit path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 840 + startLine: 1134 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics diff --git a/api/OpenTK.Graphics.ProgramPipelineHandle.yml b/api/OpenTK.Graphics.ProgramPipelineHandle.yml index 7c4b8e3b..feaadc2b 100644 --- a/api/OpenTK.Graphics.ProgramPipelineHandle.yml +++ b/api/OpenTK.Graphics.ProgramPipelineHandle.yml @@ -25,7 +25,7 @@ items: source: id: ProgramPipelineHandle path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 843 + startLine: 1137 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -53,7 +53,7 @@ items: source: id: Zero path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 845 + startLine: 1139 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -76,7 +76,7 @@ items: source: id: Handle path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 847 + startLine: 1141 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -99,7 +99,7 @@ items: source: id: .ctor path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 849 + startLine: 1143 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -127,7 +127,7 @@ items: source: id: Equals path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 854 + startLine: 1148 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -162,7 +162,7 @@ items: source: id: Equals path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 859 + startLine: 1153 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -195,7 +195,7 @@ items: source: id: GetHashCode path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 864 + startLine: 1158 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -223,7 +223,7 @@ items: source: id: op_Equality path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 869 + startLine: 1163 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -255,7 +255,7 @@ items: source: id: op_Inequality path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 874 + startLine: 1168 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -287,7 +287,7 @@ items: source: id: op_Explicit path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 879 + startLine: 1173 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -317,7 +317,7 @@ items: source: id: op_Explicit path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 880 + startLine: 1174 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics diff --git a/api/OpenTK.Graphics.QueryHandle.yml b/api/OpenTK.Graphics.QueryHandle.yml index a421ae76..7f8fa71a 100644 --- a/api/OpenTK.Graphics.QueryHandle.yml +++ b/api/OpenTK.Graphics.QueryHandle.yml @@ -25,7 +25,7 @@ items: source: id: QueryHandle path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 1003 + startLine: 1297 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -53,7 +53,7 @@ items: source: id: Zero path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 1005 + startLine: 1299 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -76,7 +76,7 @@ items: source: id: Handle path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 1007 + startLine: 1301 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -99,7 +99,7 @@ items: source: id: .ctor path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 1009 + startLine: 1303 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -127,7 +127,7 @@ items: source: id: Equals path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 1014 + startLine: 1308 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -162,7 +162,7 @@ items: source: id: Equals path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 1019 + startLine: 1313 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -195,7 +195,7 @@ items: source: id: GetHashCode path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 1024 + startLine: 1318 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -223,7 +223,7 @@ items: source: id: op_Equality path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 1029 + startLine: 1323 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -255,7 +255,7 @@ items: source: id: op_Inequality path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 1034 + startLine: 1328 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -287,7 +287,7 @@ items: source: id: op_Explicit path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 1039 + startLine: 1333 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -317,7 +317,7 @@ items: source: id: op_Explicit path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 1040 + startLine: 1334 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics diff --git a/api/OpenTK.Graphics.RenderbufferHandle.yml b/api/OpenTK.Graphics.RenderbufferHandle.yml index ac4a0e6d..c77f660b 100644 --- a/api/OpenTK.Graphics.RenderbufferHandle.yml +++ b/api/OpenTK.Graphics.RenderbufferHandle.yml @@ -25,7 +25,7 @@ items: source: id: RenderbufferHandle path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 1083 + startLine: 1377 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -53,7 +53,7 @@ items: source: id: Zero path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 1085 + startLine: 1379 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -76,7 +76,7 @@ items: source: id: Handle path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 1087 + startLine: 1381 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -99,7 +99,7 @@ items: source: id: .ctor path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 1089 + startLine: 1383 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -127,7 +127,7 @@ items: source: id: Equals path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 1094 + startLine: 1388 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -162,7 +162,7 @@ items: source: id: Equals path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 1099 + startLine: 1393 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -195,7 +195,7 @@ items: source: id: GetHashCode path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 1104 + startLine: 1398 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -223,7 +223,7 @@ items: source: id: op_Equality path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 1109 + startLine: 1403 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -255,7 +255,7 @@ items: source: id: op_Inequality path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 1114 + startLine: 1408 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -287,7 +287,7 @@ items: source: id: op_Explicit path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 1119 + startLine: 1413 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -317,7 +317,7 @@ items: source: id: op_Explicit path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 1120 + startLine: 1414 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics diff --git a/api/OpenTK.Graphics.SamplerHandle.yml b/api/OpenTK.Graphics.SamplerHandle.yml index a85de8c2..3709f65f 100644 --- a/api/OpenTK.Graphics.SamplerHandle.yml +++ b/api/OpenTK.Graphics.SamplerHandle.yml @@ -25,7 +25,7 @@ items: source: id: SamplerHandle path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 1123 + startLine: 1417 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -53,7 +53,7 @@ items: source: id: Zero path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 1125 + startLine: 1419 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -76,7 +76,7 @@ items: source: id: Handle path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 1127 + startLine: 1421 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -99,7 +99,7 @@ items: source: id: .ctor path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 1129 + startLine: 1423 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -127,7 +127,7 @@ items: source: id: Equals path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 1134 + startLine: 1428 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -162,7 +162,7 @@ items: source: id: Equals path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 1139 + startLine: 1433 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -195,7 +195,7 @@ items: source: id: GetHashCode path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 1144 + startLine: 1438 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -223,7 +223,7 @@ items: source: id: op_Equality path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 1149 + startLine: 1443 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -255,7 +255,7 @@ items: source: id: op_Inequality path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 1154 + startLine: 1448 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -287,7 +287,7 @@ items: source: id: op_Explicit path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 1159 + startLine: 1453 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -317,7 +317,7 @@ items: source: id: op_Explicit path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 1160 + startLine: 1454 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics diff --git a/api/OpenTK.Graphics.ShaderHandle.yml b/api/OpenTK.Graphics.ShaderHandle.yml index 7edb8432..5cb8c773 100644 --- a/api/OpenTK.Graphics.ShaderHandle.yml +++ b/api/OpenTK.Graphics.ShaderHandle.yml @@ -25,7 +25,7 @@ items: source: id: ShaderHandle path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 963 + startLine: 1257 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -53,7 +53,7 @@ items: source: id: Zero path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 965 + startLine: 1259 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -76,7 +76,7 @@ items: source: id: Handle path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 967 + startLine: 1261 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -99,7 +99,7 @@ items: source: id: .ctor path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 969 + startLine: 1263 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -127,7 +127,7 @@ items: source: id: Equals path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 974 + startLine: 1268 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -162,7 +162,7 @@ items: source: id: Equals path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 979 + startLine: 1273 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -195,7 +195,7 @@ items: source: id: GetHashCode path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 984 + startLine: 1278 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -223,7 +223,7 @@ items: source: id: op_Equality path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 989 + startLine: 1283 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -255,7 +255,7 @@ items: source: id: op_Inequality path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 994 + startLine: 1288 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -287,7 +287,7 @@ items: source: id: op_Explicit path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 999 + startLine: 1293 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -317,7 +317,7 @@ items: source: id: op_Explicit path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 1000 + startLine: 1294 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics diff --git a/api/OpenTK.Graphics.SpecialNumbers.yml b/api/OpenTK.Graphics.SpecialNumbers.yml index 2e9edd7b..fbc8a3aa 100644 --- a/api/OpenTK.Graphics.SpecialNumbers.yml +++ b/api/OpenTK.Graphics.SpecialNumbers.yml @@ -28,7 +28,7 @@ items: source: id: SpecialNumbers path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 617 + startLine: 911 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -61,7 +61,7 @@ items: source: id: "False" path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 619 + startLine: 913 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -84,7 +84,7 @@ items: source: id: NoError path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 620 + startLine: 914 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -107,7 +107,7 @@ items: source: id: Zero path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 621 + startLine: 915 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -130,7 +130,7 @@ items: source: id: None path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 622 + startLine: 916 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -153,7 +153,7 @@ items: source: id: NoneOES path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 623 + startLine: 917 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -176,7 +176,7 @@ items: source: id: "True" path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 624 + startLine: 918 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -199,7 +199,7 @@ items: source: id: One path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 625 + startLine: 919 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -222,7 +222,7 @@ items: source: id: InvalidIndex path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 626 + startLine: 920 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -245,7 +245,7 @@ items: source: id: AllPixelsAMD path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 627 + startLine: 921 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -268,7 +268,7 @@ items: source: id: TimeoutIgnored path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 628 + startLine: 922 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -291,7 +291,7 @@ items: source: id: TimeoutIgnoredAPPLE path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 629 + startLine: 923 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -314,7 +314,7 @@ items: source: id: UUIDSizeEXT path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 636 + startLine: 930 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -337,7 +337,7 @@ items: source: id: LUIDSizeEXT path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 637 + startLine: 931 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics diff --git a/api/OpenTK.Graphics.TextureHandle.yml b/api/OpenTK.Graphics.TextureHandle.yml index 8f95acce..c26f845c 100644 --- a/api/OpenTK.Graphics.TextureHandle.yml +++ b/api/OpenTK.Graphics.TextureHandle.yml @@ -25,7 +25,7 @@ items: source: id: TextureHandle path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 883 + startLine: 1177 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -53,7 +53,7 @@ items: source: id: Zero path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 885 + startLine: 1179 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -76,7 +76,7 @@ items: source: id: Handle path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 887 + startLine: 1181 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -99,7 +99,7 @@ items: source: id: .ctor path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 889 + startLine: 1183 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -127,7 +127,7 @@ items: source: id: Equals path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 894 + startLine: 1188 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -162,7 +162,7 @@ items: source: id: Equals path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 899 + startLine: 1193 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -195,7 +195,7 @@ items: source: id: GetHashCode path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 904 + startLine: 1198 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -223,7 +223,7 @@ items: source: id: op_Equality path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 909 + startLine: 1203 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -255,7 +255,7 @@ items: source: id: op_Inequality path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 914 + startLine: 1208 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -287,7 +287,7 @@ items: source: id: op_Explicit path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 919 + startLine: 1213 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -317,7 +317,7 @@ items: source: id: op_Explicit path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 920 + startLine: 1214 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics diff --git a/api/OpenTK.Graphics.TransformFeedbackHandle.yml b/api/OpenTK.Graphics.TransformFeedbackHandle.yml index 7b9e3cfb..aeb0f927 100644 --- a/api/OpenTK.Graphics.TransformFeedbackHandle.yml +++ b/api/OpenTK.Graphics.TransformFeedbackHandle.yml @@ -25,7 +25,7 @@ items: source: id: TransformFeedbackHandle path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 1163 + startLine: 1457 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -53,7 +53,7 @@ items: source: id: Zero path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 1165 + startLine: 1459 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -76,7 +76,7 @@ items: source: id: Handle path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 1167 + startLine: 1461 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -99,7 +99,7 @@ items: source: id: .ctor path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 1169 + startLine: 1463 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -127,7 +127,7 @@ items: source: id: Equals path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 1174 + startLine: 1468 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -162,7 +162,7 @@ items: source: id: Equals path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 1179 + startLine: 1473 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -195,7 +195,7 @@ items: source: id: GetHashCode path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 1184 + startLine: 1478 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -223,7 +223,7 @@ items: source: id: op_Equality path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 1189 + startLine: 1483 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -255,7 +255,7 @@ items: source: id: op_Inequality path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 1194 + startLine: 1488 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -287,7 +287,7 @@ items: source: id: op_Explicit path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 1199 + startLine: 1493 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -317,7 +317,7 @@ items: source: id: op_Explicit path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 1200 + startLine: 1494 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics diff --git a/api/OpenTK.Graphics.VKLoader.yml b/api/OpenTK.Graphics.VKLoader.yml index 27dccc67..b8ec7f84 100644 --- a/api/OpenTK.Graphics.VKLoader.yml +++ b/api/OpenTK.Graphics.VKLoader.yml @@ -120,7 +120,7 @@ items: source: id: SetInstance path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\VKLoader.cs - startLine: 47 + startLine: 52 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -145,7 +145,7 @@ items: source: id: GetInstanceProcAddress path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\VKLoader.cs - startLine: 52 + startLine: 57 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -175,7 +175,7 @@ items: source: id: GetInstanceProcAddress path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\VKLoader.cs - startLine: 57 + startLine: 62 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics diff --git a/api/OpenTK.Graphics.VertexArrayHandle.yml b/api/OpenTK.Graphics.VertexArrayHandle.yml index a6486533..1f7fcb56 100644 --- a/api/OpenTK.Graphics.VertexArrayHandle.yml +++ b/api/OpenTK.Graphics.VertexArrayHandle.yml @@ -25,7 +25,7 @@ items: source: id: VertexArrayHandle path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 1203 + startLine: 1497 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -53,7 +53,7 @@ items: source: id: Zero path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 1205 + startLine: 1499 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -76,7 +76,7 @@ items: source: id: Handle path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 1207 + startLine: 1501 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -99,7 +99,7 @@ items: source: id: .ctor path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 1209 + startLine: 1503 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -127,7 +127,7 @@ items: source: id: Equals path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 1214 + startLine: 1508 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -162,7 +162,7 @@ items: source: id: Equals path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 1219 + startLine: 1513 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -195,7 +195,7 @@ items: source: id: GetHashCode path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 1224 + startLine: 1518 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -223,7 +223,7 @@ items: source: id: op_Equality path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 1229 + startLine: 1523 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -255,7 +255,7 @@ items: source: id: op_Inequality path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 1234 + startLine: 1528 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -287,7 +287,7 @@ items: source: id: op_Explicit path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 1239 + startLine: 1533 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics @@ -317,7 +317,7 @@ items: source: id: op_Explicit path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 1240 + startLine: 1534 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics diff --git a/api/OpenTK.Graphics.WGLLoader.BindingsContext.yml b/api/OpenTK.Graphics.WGLLoader.BindingsContext.yml index 329f10f4..d2238bee 100644 --- a/api/OpenTK.Graphics.WGLLoader.BindingsContext.yml +++ b/api/OpenTK.Graphics.WGLLoader.BindingsContext.yml @@ -47,7 +47,7 @@ items: source: id: GetProcAddress path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGLLoader.cs - startLine: 18 + startLine: 15 assemblies: - OpenTK.Graphics namespace: OpenTK.Graphics diff --git a/api/OpenTK.Graphics.Wgl.AccelerationType.yml b/api/OpenTK.Graphics.Wgl.AccelerationType.yml deleted file mode 100644 index 061c733f..00000000 --- a/api/OpenTK.Graphics.Wgl.AccelerationType.yml +++ /dev/null @@ -1,200 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: OpenTK.Graphics.Wgl.AccelerationType - commentId: T:OpenTK.Graphics.Wgl.AccelerationType - id: AccelerationType - parent: OpenTK.Graphics.Wgl - children: - - OpenTK.Graphics.Wgl.AccelerationType.FullAccelerationArb - - OpenTK.Graphics.Wgl.AccelerationType.FullAccelerationExt - - OpenTK.Graphics.Wgl.AccelerationType.GenericAccelerationArb - - OpenTK.Graphics.Wgl.AccelerationType.GenericAccelerationExt - - OpenTK.Graphics.Wgl.AccelerationType.NoAccelerationArb - - OpenTK.Graphics.Wgl.AccelerationType.NoAccelerationExt - langs: - - csharp - - vb - name: AccelerationType - nameWithType: AccelerationType - fullName: OpenTK.Graphics.Wgl.AccelerationType - type: Enum - source: - id: AccelerationType - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 315 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: 'public enum AccelerationType : uint' - content.vb: Public Enum AccelerationType As UInteger -- uid: OpenTK.Graphics.Wgl.AccelerationType.NoAccelerationArb - commentId: F:OpenTK.Graphics.Wgl.AccelerationType.NoAccelerationArb - id: NoAccelerationArb - parent: OpenTK.Graphics.Wgl.AccelerationType - langs: - - csharp - - vb - name: NoAccelerationArb - nameWithType: AccelerationType.NoAccelerationArb - fullName: OpenTK.Graphics.Wgl.AccelerationType.NoAccelerationArb - type: Field - source: - id: NoAccelerationArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 317 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: NoAccelerationArb = 8229 - return: - type: OpenTK.Graphics.Wgl.AccelerationType -- uid: OpenTK.Graphics.Wgl.AccelerationType.NoAccelerationExt - commentId: F:OpenTK.Graphics.Wgl.AccelerationType.NoAccelerationExt - id: NoAccelerationExt - parent: OpenTK.Graphics.Wgl.AccelerationType - langs: - - csharp - - vb - name: NoAccelerationExt - nameWithType: AccelerationType.NoAccelerationExt - fullName: OpenTK.Graphics.Wgl.AccelerationType.NoAccelerationExt - type: Field - source: - id: NoAccelerationExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 318 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: NoAccelerationExt = 8229 - return: - type: OpenTK.Graphics.Wgl.AccelerationType -- uid: OpenTK.Graphics.Wgl.AccelerationType.GenericAccelerationArb - commentId: F:OpenTK.Graphics.Wgl.AccelerationType.GenericAccelerationArb - id: GenericAccelerationArb - parent: OpenTK.Graphics.Wgl.AccelerationType - langs: - - csharp - - vb - name: GenericAccelerationArb - nameWithType: AccelerationType.GenericAccelerationArb - fullName: OpenTK.Graphics.Wgl.AccelerationType.GenericAccelerationArb - type: Field - source: - id: GenericAccelerationArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 319 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: GenericAccelerationArb = 8230 - return: - type: OpenTK.Graphics.Wgl.AccelerationType -- uid: OpenTK.Graphics.Wgl.AccelerationType.GenericAccelerationExt - commentId: F:OpenTK.Graphics.Wgl.AccelerationType.GenericAccelerationExt - id: GenericAccelerationExt - parent: OpenTK.Graphics.Wgl.AccelerationType - langs: - - csharp - - vb - name: GenericAccelerationExt - nameWithType: AccelerationType.GenericAccelerationExt - fullName: OpenTK.Graphics.Wgl.AccelerationType.GenericAccelerationExt - type: Field - source: - id: GenericAccelerationExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 320 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: GenericAccelerationExt = 8230 - return: - type: OpenTK.Graphics.Wgl.AccelerationType -- uid: OpenTK.Graphics.Wgl.AccelerationType.FullAccelerationArb - commentId: F:OpenTK.Graphics.Wgl.AccelerationType.FullAccelerationArb - id: FullAccelerationArb - parent: OpenTK.Graphics.Wgl.AccelerationType - langs: - - csharp - - vb - name: FullAccelerationArb - nameWithType: AccelerationType.FullAccelerationArb - fullName: OpenTK.Graphics.Wgl.AccelerationType.FullAccelerationArb - type: Field - source: - id: FullAccelerationArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 321 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: FullAccelerationArb = 8231 - return: - type: OpenTK.Graphics.Wgl.AccelerationType -- uid: OpenTK.Graphics.Wgl.AccelerationType.FullAccelerationExt - commentId: F:OpenTK.Graphics.Wgl.AccelerationType.FullAccelerationExt - id: FullAccelerationExt - parent: OpenTK.Graphics.Wgl.AccelerationType - langs: - - csharp - - vb - name: FullAccelerationExt - nameWithType: AccelerationType.FullAccelerationExt - fullName: OpenTK.Graphics.Wgl.AccelerationType.FullAccelerationExt - type: Field - source: - id: FullAccelerationExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 322 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: FullAccelerationExt = 8231 - return: - type: OpenTK.Graphics.Wgl.AccelerationType -references: -- uid: OpenTK.Graphics.Wgl - commentId: N:OpenTK.Graphics.Wgl - href: OpenTK.html - name: OpenTK.Graphics.Wgl - nameWithType: OpenTK.Graphics.Wgl - fullName: OpenTK.Graphics.Wgl - spec.csharp: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Wgl - name: Wgl - href: OpenTK.Graphics.Wgl.html - spec.vb: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Wgl - name: Wgl - href: OpenTK.Graphics.Wgl.html -- uid: OpenTK.Graphics.Wgl.AccelerationType - commentId: T:OpenTK.Graphics.Wgl.AccelerationType - parent: OpenTK.Graphics.Wgl - href: OpenTK.Graphics.Wgl.AccelerationType.html - name: AccelerationType - nameWithType: AccelerationType - fullName: OpenTK.Graphics.Wgl.AccelerationType diff --git a/api/OpenTK.Graphics.Wgl.All.yml b/api/OpenTK.Graphics.Wgl.All.yml deleted file mode 100644 index 527e041c..00000000 --- a/api/OpenTK.Graphics.Wgl.All.yml +++ /dev/null @@ -1,7054 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: OpenTK.Graphics.Wgl.All - commentId: T:OpenTK.Graphics.Wgl.All - id: All - parent: OpenTK.Graphics.Wgl - children: - - OpenTK.Graphics.Wgl.All.AccelerationArb - - OpenTK.Graphics.Wgl.All.AccelerationExt - - OpenTK.Graphics.Wgl.All.AccessReadOnlyNv - - OpenTK.Graphics.Wgl.All.AccessReadWriteNv - - OpenTK.Graphics.Wgl.All.AccessWriteDiscardNv - - OpenTK.Graphics.Wgl.All.AccumAlphaBitsArb - - OpenTK.Graphics.Wgl.All.AccumAlphaBitsExt - - OpenTK.Graphics.Wgl.All.AccumBitsArb - - OpenTK.Graphics.Wgl.All.AccumBitsExt - - OpenTK.Graphics.Wgl.All.AccumBlueBitsArb - - OpenTK.Graphics.Wgl.All.AccumBlueBitsExt - - OpenTK.Graphics.Wgl.All.AccumGreenBitsArb - - OpenTK.Graphics.Wgl.All.AccumGreenBitsExt - - OpenTK.Graphics.Wgl.All.AccumRedBitsArb - - OpenTK.Graphics.Wgl.All.AccumRedBitsExt - - OpenTK.Graphics.Wgl.All.AlphaBitsArb - - OpenTK.Graphics.Wgl.All.AlphaBitsExt - - OpenTK.Graphics.Wgl.All.AlphaShiftArb - - OpenTK.Graphics.Wgl.All.AlphaShiftExt - - OpenTK.Graphics.Wgl.All.Aux0Arb - - OpenTK.Graphics.Wgl.All.Aux1Arb - - OpenTK.Graphics.Wgl.All.Aux2Arb - - OpenTK.Graphics.Wgl.All.Aux3Arb - - OpenTK.Graphics.Wgl.All.Aux4Arb - - OpenTK.Graphics.Wgl.All.Aux5Arb - - OpenTK.Graphics.Wgl.All.Aux6Arb - - OpenTK.Graphics.Wgl.All.Aux7Arb - - OpenTK.Graphics.Wgl.All.Aux8Arb - - OpenTK.Graphics.Wgl.All.Aux9Arb - - OpenTK.Graphics.Wgl.All.AuxBuffersArb - - OpenTK.Graphics.Wgl.All.AuxBuffersExt - - OpenTK.Graphics.Wgl.All.BackColorBufferBitArb - - OpenTK.Graphics.Wgl.All.BackLeftArb - - OpenTK.Graphics.Wgl.All.BackRightArb - - OpenTK.Graphics.Wgl.All.BindToTextureDepthNv - - OpenTK.Graphics.Wgl.All.BindToTextureRectangleDepthNv - - OpenTK.Graphics.Wgl.All.BindToTextureRectangleFloatRNv - - OpenTK.Graphics.Wgl.All.BindToTextureRectangleFloatRgNv - - OpenTK.Graphics.Wgl.All.BindToTextureRectangleFloatRgbNv - - OpenTK.Graphics.Wgl.All.BindToTextureRectangleFloatRgbaNv - - OpenTK.Graphics.Wgl.All.BindToTextureRectangleRgbNv - - OpenTK.Graphics.Wgl.All.BindToTextureRectangleRgbaNv - - OpenTK.Graphics.Wgl.All.BindToTextureRgbArb - - OpenTK.Graphics.Wgl.All.BindToTextureRgbaArb - - OpenTK.Graphics.Wgl.All.BindToVideoRgbAndDepthNv - - OpenTK.Graphics.Wgl.All.BindToVideoRgbNv - - OpenTK.Graphics.Wgl.All.BindToVideoRgbaNv - - OpenTK.Graphics.Wgl.All.BlueBitsArb - - OpenTK.Graphics.Wgl.All.BlueBitsExt - - OpenTK.Graphics.Wgl.All.BlueShiftArb - - OpenTK.Graphics.Wgl.All.BlueShiftExt - - OpenTK.Graphics.Wgl.All.ColorBitsArb - - OpenTK.Graphics.Wgl.All.ColorBitsExt - - OpenTK.Graphics.Wgl.All.ColorSamplesNv - - OpenTK.Graphics.Wgl.All.ColorspaceExt - - OpenTK.Graphics.Wgl.All.ColorspaceLinearExt - - OpenTK.Graphics.Wgl.All.ColorspaceSrgbExt - - OpenTK.Graphics.Wgl.All.ContextCompatibilityProfileBitArb - - OpenTK.Graphics.Wgl.All.ContextCoreProfileBitArb - - OpenTK.Graphics.Wgl.All.ContextDebugBitArb - - OpenTK.Graphics.Wgl.All.ContextEs2ProfileBitExt - - OpenTK.Graphics.Wgl.All.ContextEsProfileBitExt - - OpenTK.Graphics.Wgl.All.ContextFlagsArb - - OpenTK.Graphics.Wgl.All.ContextForwardCompatibleBitArb - - OpenTK.Graphics.Wgl.All.ContextLayerPlaneArb - - OpenTK.Graphics.Wgl.All.ContextMajorVersionArb - - OpenTK.Graphics.Wgl.All.ContextMinorVersionArb - - OpenTK.Graphics.Wgl.All.ContextMultigpuAttribAfrNv - - OpenTK.Graphics.Wgl.All.ContextMultigpuAttribMultiDisplayMulticastNv - - OpenTK.Graphics.Wgl.All.ContextMultigpuAttribMulticastNv - - OpenTK.Graphics.Wgl.All.ContextMultigpuAttribNv - - OpenTK.Graphics.Wgl.All.ContextMultigpuAttribSingleNv - - OpenTK.Graphics.Wgl.All.ContextOpenglNoErrorArb - - OpenTK.Graphics.Wgl.All.ContextProfileMaskArb - - OpenTK.Graphics.Wgl.All.ContextReleaseBehaviorArb - - OpenTK.Graphics.Wgl.All.ContextReleaseBehaviorFlushArb - - OpenTK.Graphics.Wgl.All.ContextReleaseBehaviorNoneArb - - OpenTK.Graphics.Wgl.All.ContextResetIsolationBitArb - - OpenTK.Graphics.Wgl.All.ContextResetNotificationStrategyArb - - OpenTK.Graphics.Wgl.All.ContextRobustAccessBitArb - - OpenTK.Graphics.Wgl.All.CoverageSamplesNv - - OpenTK.Graphics.Wgl.All.CubeMapFaceArb - - OpenTK.Graphics.Wgl.All.DepthBitsArb - - OpenTK.Graphics.Wgl.All.DepthBitsExt - - OpenTK.Graphics.Wgl.All.DepthBufferBitArb - - OpenTK.Graphics.Wgl.All.DepthComponentNv - - OpenTK.Graphics.Wgl.All.DepthFloatExt - - OpenTK.Graphics.Wgl.All.DepthTextureFormatNv - - OpenTK.Graphics.Wgl.All.DigitalVideoCursorAlphaFramebufferI3d - - OpenTK.Graphics.Wgl.All.DigitalVideoCursorAlphaValueI3d - - OpenTK.Graphics.Wgl.All.DigitalVideoCursorIncludedI3d - - OpenTK.Graphics.Wgl.All.DigitalVideoGammaCorrectedI3d - - OpenTK.Graphics.Wgl.All.DoubleBufferArb - - OpenTK.Graphics.Wgl.All.DoubleBufferExt - - OpenTK.Graphics.Wgl.All.DrawToBitmapArb - - OpenTK.Graphics.Wgl.All.DrawToBitmapExt - - OpenTK.Graphics.Wgl.All.DrawToPbufferArb - - OpenTK.Graphics.Wgl.All.DrawToPbufferExt - - OpenTK.Graphics.Wgl.All.DrawToWindowArb - - OpenTK.Graphics.Wgl.All.DrawToWindowExt - - OpenTK.Graphics.Wgl.All.ErrorIncompatibleAffinityMasksNv - - OpenTK.Graphics.Wgl.All.ErrorIncompatibleDeviceContextsArb - - OpenTK.Graphics.Wgl.All.ErrorInvalidPixelTypeArb - - OpenTK.Graphics.Wgl.All.ErrorInvalidPixelTypeExt - - OpenTK.Graphics.Wgl.All.ErrorInvalidProfileArb - - OpenTK.Graphics.Wgl.All.ErrorInvalidVersionArb - - OpenTK.Graphics.Wgl.All.ErrorMissingAffinityMaskNv - - OpenTK.Graphics.Wgl.All.FloatComponentsNv - - OpenTK.Graphics.Wgl.All.FontLines - - OpenTK.Graphics.Wgl.All.FontPolygons - - OpenTK.Graphics.Wgl.All.FramebufferSrgbCapableArb - - OpenTK.Graphics.Wgl.All.FramebufferSrgbCapableExt - - OpenTK.Graphics.Wgl.All.FrontColorBufferBitArb - - OpenTK.Graphics.Wgl.All.FrontLeftArb - - OpenTK.Graphics.Wgl.All.FrontRightArb - - OpenTK.Graphics.Wgl.All.FullAccelerationArb - - OpenTK.Graphics.Wgl.All.FullAccelerationExt - - OpenTK.Graphics.Wgl.All.GammaExcludeDesktopI3d - - OpenTK.Graphics.Wgl.All.GammaTableSizeI3d - - OpenTK.Graphics.Wgl.All.GenericAccelerationArb - - OpenTK.Graphics.Wgl.All.GenericAccelerationExt - - OpenTK.Graphics.Wgl.All.GenlockSourceDigitalFieldI3d - - OpenTK.Graphics.Wgl.All.GenlockSourceDigitalSyncI3d - - OpenTK.Graphics.Wgl.All.GenlockSourceEdgeBothI3d - - OpenTK.Graphics.Wgl.All.GenlockSourceEdgeFallingI3d - - OpenTK.Graphics.Wgl.All.GenlockSourceEdgeRisingI3d - - OpenTK.Graphics.Wgl.All.GenlockSourceExternalFieldI3d - - OpenTK.Graphics.Wgl.All.GenlockSourceExternalSyncI3d - - OpenTK.Graphics.Wgl.All.GenlockSourceExternalTtlI3d - - OpenTK.Graphics.Wgl.All.GenlockSourceMultiviewI3d - - OpenTK.Graphics.Wgl.All.GpuClockAmd - - OpenTK.Graphics.Wgl.All.GpuFastestTargetGpusAmd - - OpenTK.Graphics.Wgl.All.GpuNumPipesAmd - - OpenTK.Graphics.Wgl.All.GpuNumRbAmd - - OpenTK.Graphics.Wgl.All.GpuNumSimdAmd - - OpenTK.Graphics.Wgl.All.GpuNumSpiAmd - - OpenTK.Graphics.Wgl.All.GpuOpenglVersionStringAmd - - OpenTK.Graphics.Wgl.All.GpuRamAmd - - OpenTK.Graphics.Wgl.All.GpuRendererStringAmd - - OpenTK.Graphics.Wgl.All.GpuVendorAmd - - OpenTK.Graphics.Wgl.All.GreenBitsArb - - OpenTK.Graphics.Wgl.All.GreenBitsExt - - OpenTK.Graphics.Wgl.All.GreenShiftArb - - OpenTK.Graphics.Wgl.All.GreenShiftExt - - OpenTK.Graphics.Wgl.All.ImageBufferLockI3d - - OpenTK.Graphics.Wgl.All.ImageBufferMinAccessI3d - - OpenTK.Graphics.Wgl.All.LoseContextOnResetArb - - OpenTK.Graphics.Wgl.All.MaxPbufferHeightArb - - OpenTK.Graphics.Wgl.All.MaxPbufferHeightExt - - OpenTK.Graphics.Wgl.All.MaxPbufferPixelsArb - - OpenTK.Graphics.Wgl.All.MaxPbufferPixelsExt - - OpenTK.Graphics.Wgl.All.MaxPbufferWidthArb - - OpenTK.Graphics.Wgl.All.MaxPbufferWidthExt - - OpenTK.Graphics.Wgl.All.MipmapLevelArb - - OpenTK.Graphics.Wgl.All.MipmapTextureArb - - OpenTK.Graphics.Wgl.All.NeedPaletteArb - - OpenTK.Graphics.Wgl.All.NeedPaletteExt - - OpenTK.Graphics.Wgl.All.NeedSystemPaletteArb - - OpenTK.Graphics.Wgl.All.NeedSystemPaletteExt - - OpenTK.Graphics.Wgl.All.NoAccelerationArb - - OpenTK.Graphics.Wgl.All.NoAccelerationExt - - OpenTK.Graphics.Wgl.All.NoResetNotificationArb - - OpenTK.Graphics.Wgl.All.NoTextureArb - - OpenTK.Graphics.Wgl.All.None - - OpenTK.Graphics.Wgl.All.NumVideoCaptureSlotsNv - - OpenTK.Graphics.Wgl.All.NumVideoSlotsNv - - OpenTK.Graphics.Wgl.All.NumberOverlaysArb - - OpenTK.Graphics.Wgl.All.NumberOverlaysExt - - OpenTK.Graphics.Wgl.All.NumberPixelFormatsArb - - OpenTK.Graphics.Wgl.All.NumberPixelFormatsExt - - OpenTK.Graphics.Wgl.All.NumberUnderlaysArb - - OpenTK.Graphics.Wgl.All.NumberUnderlaysExt - - OpenTK.Graphics.Wgl.All.OptimalPbufferHeightExt - - OpenTK.Graphics.Wgl.All.OptimalPbufferWidthExt - - OpenTK.Graphics.Wgl.All.PbufferHeightArb - - OpenTK.Graphics.Wgl.All.PbufferHeightExt - - OpenTK.Graphics.Wgl.All.PbufferLargestArb - - OpenTK.Graphics.Wgl.All.PbufferLargestExt - - OpenTK.Graphics.Wgl.All.PbufferLostArb - - OpenTK.Graphics.Wgl.All.PbufferWidthArb - - OpenTK.Graphics.Wgl.All.PbufferWidthExt - - OpenTK.Graphics.Wgl.All.PixelTypeArb - - OpenTK.Graphics.Wgl.All.PixelTypeExt - - OpenTK.Graphics.Wgl.All.RedBitsArb - - OpenTK.Graphics.Wgl.All.RedBitsExt - - OpenTK.Graphics.Wgl.All.RedShiftArb - - OpenTK.Graphics.Wgl.All.RedShiftExt - - OpenTK.Graphics.Wgl.All.Renderbuffer - - OpenTK.Graphics.Wgl.All.SampleBuffers3dfx - - OpenTK.Graphics.Wgl.All.SampleBuffersArb - - OpenTK.Graphics.Wgl.All.SampleBuffersExt - - OpenTK.Graphics.Wgl.All.Samples3dfx - - OpenTK.Graphics.Wgl.All.SamplesArb - - OpenTK.Graphics.Wgl.All.SamplesExt - - OpenTK.Graphics.Wgl.All.ShareAccumArb - - OpenTK.Graphics.Wgl.All.ShareAccumExt - - OpenTK.Graphics.Wgl.All.ShareDepthArb - - OpenTK.Graphics.Wgl.All.ShareDepthExt - - OpenTK.Graphics.Wgl.All.ShareStencilArb - - OpenTK.Graphics.Wgl.All.ShareStencilExt - - OpenTK.Graphics.Wgl.All.StencilBitsArb - - OpenTK.Graphics.Wgl.All.StencilBitsExt - - OpenTK.Graphics.Wgl.All.StencilBufferBitArb - - OpenTK.Graphics.Wgl.All.StereoArb - - OpenTK.Graphics.Wgl.All.StereoEmitterDisable3dl - - OpenTK.Graphics.Wgl.All.StereoEmitterEnable3dl - - OpenTK.Graphics.Wgl.All.StereoExt - - OpenTK.Graphics.Wgl.All.StereoPolarityInvert3dl - - OpenTK.Graphics.Wgl.All.StereoPolarityNormal3dl - - OpenTK.Graphics.Wgl.All.SupportGdiArb - - OpenTK.Graphics.Wgl.All.SupportGdiExt - - OpenTK.Graphics.Wgl.All.SupportOpenglArb - - OpenTK.Graphics.Wgl.All.SupportOpenglExt - - OpenTK.Graphics.Wgl.All.SwapCopyArb - - OpenTK.Graphics.Wgl.All.SwapCopyExt - - OpenTK.Graphics.Wgl.All.SwapExchangeArb - - OpenTK.Graphics.Wgl.All.SwapExchangeExt - - OpenTK.Graphics.Wgl.All.SwapLayerBuffersArb - - OpenTK.Graphics.Wgl.All.SwapLayerBuffersExt - - OpenTK.Graphics.Wgl.All.SwapMainPlane - - OpenTK.Graphics.Wgl.All.SwapMethodArb - - OpenTK.Graphics.Wgl.All.SwapMethodExt - - OpenTK.Graphics.Wgl.All.SwapOverlay1 - - OpenTK.Graphics.Wgl.All.SwapOverlay10 - - OpenTK.Graphics.Wgl.All.SwapOverlay11 - - OpenTK.Graphics.Wgl.All.SwapOverlay12 - - OpenTK.Graphics.Wgl.All.SwapOverlay13 - - OpenTK.Graphics.Wgl.All.SwapOverlay14 - - OpenTK.Graphics.Wgl.All.SwapOverlay15 - - OpenTK.Graphics.Wgl.All.SwapOverlay2 - - OpenTK.Graphics.Wgl.All.SwapOverlay3 - - OpenTK.Graphics.Wgl.All.SwapOverlay4 - - OpenTK.Graphics.Wgl.All.SwapOverlay5 - - OpenTK.Graphics.Wgl.All.SwapOverlay6 - - OpenTK.Graphics.Wgl.All.SwapOverlay7 - - OpenTK.Graphics.Wgl.All.SwapOverlay8 - - OpenTK.Graphics.Wgl.All.SwapOverlay9 - - OpenTK.Graphics.Wgl.All.SwapUndefinedArb - - OpenTK.Graphics.Wgl.All.SwapUndefinedExt - - OpenTK.Graphics.Wgl.All.SwapUnderlay1 - - OpenTK.Graphics.Wgl.All.SwapUnderlay10 - - OpenTK.Graphics.Wgl.All.SwapUnderlay11 - - OpenTK.Graphics.Wgl.All.SwapUnderlay12 - - OpenTK.Graphics.Wgl.All.SwapUnderlay13 - - OpenTK.Graphics.Wgl.All.SwapUnderlay14 - - OpenTK.Graphics.Wgl.All.SwapUnderlay15 - - OpenTK.Graphics.Wgl.All.SwapUnderlay2 - - OpenTK.Graphics.Wgl.All.SwapUnderlay3 - - OpenTK.Graphics.Wgl.All.SwapUnderlay4 - - OpenTK.Graphics.Wgl.All.SwapUnderlay5 - - OpenTK.Graphics.Wgl.All.SwapUnderlay6 - - OpenTK.Graphics.Wgl.All.SwapUnderlay7 - - OpenTK.Graphics.Wgl.All.SwapUnderlay8 - - OpenTK.Graphics.Wgl.All.SwapUnderlay9 - - OpenTK.Graphics.Wgl.All.Texture1dArb - - OpenTK.Graphics.Wgl.All.Texture2d - - OpenTK.Graphics.Wgl.All.Texture2dArb - - OpenTK.Graphics.Wgl.All.Texture3d - - OpenTK.Graphics.Wgl.All.TextureCubeMap - - OpenTK.Graphics.Wgl.All.TextureCubeMapArb - - OpenTK.Graphics.Wgl.All.TextureCubeMapNegativeXArb - - OpenTK.Graphics.Wgl.All.TextureCubeMapNegativeYArb - - OpenTK.Graphics.Wgl.All.TextureCubeMapNegativeZArb - - OpenTK.Graphics.Wgl.All.TextureCubeMapPositiveXArb - - OpenTK.Graphics.Wgl.All.TextureCubeMapPositiveYArb - - OpenTK.Graphics.Wgl.All.TextureCubeMapPositiveZArb - - OpenTK.Graphics.Wgl.All.TextureDepthComponentNv - - OpenTK.Graphics.Wgl.All.TextureFloatRNv - - OpenTK.Graphics.Wgl.All.TextureFloatRgNv - - OpenTK.Graphics.Wgl.All.TextureFloatRgbNv - - OpenTK.Graphics.Wgl.All.TextureFloatRgbaNv - - OpenTK.Graphics.Wgl.All.TextureFormatArb - - OpenTK.Graphics.Wgl.All.TextureRectangle - - OpenTK.Graphics.Wgl.All.TextureRectangleAti - - OpenTK.Graphics.Wgl.All.TextureRectangleNv - - OpenTK.Graphics.Wgl.All.TextureRgbArb - - OpenTK.Graphics.Wgl.All.TextureRgbaArb - - OpenTK.Graphics.Wgl.All.TextureTargetArb - - OpenTK.Graphics.Wgl.All.TransparentAlphaValueArb - - OpenTK.Graphics.Wgl.All.TransparentArb - - OpenTK.Graphics.Wgl.All.TransparentBlueValueArb - - OpenTK.Graphics.Wgl.All.TransparentExt - - OpenTK.Graphics.Wgl.All.TransparentGreenValueArb - - OpenTK.Graphics.Wgl.All.TransparentIndexValueArb - - OpenTK.Graphics.Wgl.All.TransparentRedValueArb - - OpenTK.Graphics.Wgl.All.TransparentValueExt - - OpenTK.Graphics.Wgl.All.TypeColorindexArb - - OpenTK.Graphics.Wgl.All.TypeColorindexExt - - OpenTK.Graphics.Wgl.All.TypeRgbaArb - - OpenTK.Graphics.Wgl.All.TypeRgbaExt - - OpenTK.Graphics.Wgl.All.TypeRgbaFloatArb - - OpenTK.Graphics.Wgl.All.TypeRgbaFloatAti - - OpenTK.Graphics.Wgl.All.TypeRgbaUnsignedFloatExt - - OpenTK.Graphics.Wgl.All.UniqueIdNv - - OpenTK.Graphics.Wgl.All.VideoOutAlphaNv - - OpenTK.Graphics.Wgl.All.VideoOutColorAndAlphaNv - - OpenTK.Graphics.Wgl.All.VideoOutColorAndDepthNv - - OpenTK.Graphics.Wgl.All.VideoOutColorNv - - OpenTK.Graphics.Wgl.All.VideoOutDepthNv - - OpenTK.Graphics.Wgl.All.VideoOutField1 - - OpenTK.Graphics.Wgl.All.VideoOutField2 - - OpenTK.Graphics.Wgl.All.VideoOutFrame - - OpenTK.Graphics.Wgl.All.VideoOutStackedFields12 - - OpenTK.Graphics.Wgl.All.VideoOutStackedFields21 - langs: - - csharp - - vb - name: All - nameWithType: All - fullName: OpenTK.Graphics.Wgl.All - type: Enum - source: - id: All - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 8 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: 'public enum All : uint' - content.vb: Public Enum All As UInteger -- uid: OpenTK.Graphics.Wgl.All.AccessReadOnlyNv - commentId: F:OpenTK.Graphics.Wgl.All.AccessReadOnlyNv - id: AccessReadOnlyNv - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: AccessReadOnlyNv - nameWithType: All.AccessReadOnlyNv - fullName: OpenTK.Graphics.Wgl.All.AccessReadOnlyNv - type: Field - source: - id: AccessReadOnlyNv - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 10 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: AccessReadOnlyNv = 0 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.ContextReleaseBehaviorNoneArb - commentId: F:OpenTK.Graphics.Wgl.All.ContextReleaseBehaviorNoneArb - id: ContextReleaseBehaviorNoneArb - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: ContextReleaseBehaviorNoneArb - nameWithType: All.ContextReleaseBehaviorNoneArb - fullName: OpenTK.Graphics.Wgl.All.ContextReleaseBehaviorNoneArb - type: Field - source: - id: ContextReleaseBehaviorNoneArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 11 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: ContextReleaseBehaviorNoneArb = 0 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.FontLines - commentId: F:OpenTK.Graphics.Wgl.All.FontLines - id: FontLines - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: FontLines - nameWithType: All.FontLines - fullName: OpenTK.Graphics.Wgl.All.FontLines - type: Field - source: - id: FontLines - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 12 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: FontLines = 0 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.None - commentId: F:OpenTK.Graphics.Wgl.All.None - id: None - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: None - nameWithType: All.None - fullName: OpenTK.Graphics.Wgl.All.None - type: Field - source: - id: None - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 13 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: None = 0 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.AccessReadWriteNv - commentId: F:OpenTK.Graphics.Wgl.All.AccessReadWriteNv - id: AccessReadWriteNv - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: AccessReadWriteNv - nameWithType: All.AccessReadWriteNv - fullName: OpenTK.Graphics.Wgl.All.AccessReadWriteNv - type: Field - source: - id: AccessReadWriteNv - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 14 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: AccessReadWriteNv = 1 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.ContextCoreProfileBitArb - commentId: F:OpenTK.Graphics.Wgl.All.ContextCoreProfileBitArb - id: ContextCoreProfileBitArb - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: ContextCoreProfileBitArb - nameWithType: All.ContextCoreProfileBitArb - fullName: OpenTK.Graphics.Wgl.All.ContextCoreProfileBitArb - type: Field - source: - id: ContextCoreProfileBitArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 15 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: ContextCoreProfileBitArb = 1 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.ContextDebugBitArb - commentId: F:OpenTK.Graphics.Wgl.All.ContextDebugBitArb - id: ContextDebugBitArb - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: ContextDebugBitArb - nameWithType: All.ContextDebugBitArb - fullName: OpenTK.Graphics.Wgl.All.ContextDebugBitArb - type: Field - source: - id: ContextDebugBitArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 16 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: ContextDebugBitArb = 1 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.FontPolygons - commentId: F:OpenTK.Graphics.Wgl.All.FontPolygons - id: FontPolygons - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: FontPolygons - nameWithType: All.FontPolygons - fullName: OpenTK.Graphics.Wgl.All.FontPolygons - type: Field - source: - id: FontPolygons - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 17 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: FontPolygons = 1 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.FrontColorBufferBitArb - commentId: F:OpenTK.Graphics.Wgl.All.FrontColorBufferBitArb - id: FrontColorBufferBitArb - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: FrontColorBufferBitArb - nameWithType: All.FrontColorBufferBitArb - fullName: OpenTK.Graphics.Wgl.All.FrontColorBufferBitArb - type: Field - source: - id: FrontColorBufferBitArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 18 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: FrontColorBufferBitArb = 1 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.ImageBufferMinAccessI3d - commentId: F:OpenTK.Graphics.Wgl.All.ImageBufferMinAccessI3d - id: ImageBufferMinAccessI3d - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: ImageBufferMinAccessI3d - nameWithType: All.ImageBufferMinAccessI3d - fullName: OpenTK.Graphics.Wgl.All.ImageBufferMinAccessI3d - type: Field - source: - id: ImageBufferMinAccessI3d - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 19 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: ImageBufferMinAccessI3d = 1 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.SwapMainPlane - commentId: F:OpenTK.Graphics.Wgl.All.SwapMainPlane - id: SwapMainPlane - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: SwapMainPlane - nameWithType: All.SwapMainPlane - fullName: OpenTK.Graphics.Wgl.All.SwapMainPlane - type: Field - source: - id: SwapMainPlane - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 20 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: SwapMainPlane = 1 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.AccessWriteDiscardNv - commentId: F:OpenTK.Graphics.Wgl.All.AccessWriteDiscardNv - id: AccessWriteDiscardNv - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: AccessWriteDiscardNv - nameWithType: All.AccessWriteDiscardNv - fullName: OpenTK.Graphics.Wgl.All.AccessWriteDiscardNv - type: Field - source: - id: AccessWriteDiscardNv - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 21 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: AccessWriteDiscardNv = 2 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.BackColorBufferBitArb - commentId: F:OpenTK.Graphics.Wgl.All.BackColorBufferBitArb - id: BackColorBufferBitArb - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: BackColorBufferBitArb - nameWithType: All.BackColorBufferBitArb - fullName: OpenTK.Graphics.Wgl.All.BackColorBufferBitArb - type: Field - source: - id: BackColorBufferBitArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 22 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: BackColorBufferBitArb = 2 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.ContextCompatibilityProfileBitArb - commentId: F:OpenTK.Graphics.Wgl.All.ContextCompatibilityProfileBitArb - id: ContextCompatibilityProfileBitArb - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: ContextCompatibilityProfileBitArb - nameWithType: All.ContextCompatibilityProfileBitArb - fullName: OpenTK.Graphics.Wgl.All.ContextCompatibilityProfileBitArb - type: Field - source: - id: ContextCompatibilityProfileBitArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 23 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: ContextCompatibilityProfileBitArb = 2 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.ContextForwardCompatibleBitArb - commentId: F:OpenTK.Graphics.Wgl.All.ContextForwardCompatibleBitArb - id: ContextForwardCompatibleBitArb - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: ContextForwardCompatibleBitArb - nameWithType: All.ContextForwardCompatibleBitArb - fullName: OpenTK.Graphics.Wgl.All.ContextForwardCompatibleBitArb - type: Field - source: - id: ContextForwardCompatibleBitArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 24 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: ContextForwardCompatibleBitArb = 2 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.ImageBufferLockI3d - commentId: F:OpenTK.Graphics.Wgl.All.ImageBufferLockI3d - id: ImageBufferLockI3d - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: ImageBufferLockI3d - nameWithType: All.ImageBufferLockI3d - fullName: OpenTK.Graphics.Wgl.All.ImageBufferLockI3d - type: Field - source: - id: ImageBufferLockI3d - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 25 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: ImageBufferLockI3d = 2 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.SwapOverlay1 - commentId: F:OpenTK.Graphics.Wgl.All.SwapOverlay1 - id: SwapOverlay1 - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: SwapOverlay1 - nameWithType: All.SwapOverlay1 - fullName: OpenTK.Graphics.Wgl.All.SwapOverlay1 - type: Field - source: - id: SwapOverlay1 - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 26 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: SwapOverlay1 = 2 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.ContextEs2ProfileBitExt - commentId: F:OpenTK.Graphics.Wgl.All.ContextEs2ProfileBitExt - id: ContextEs2ProfileBitExt - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: ContextEs2ProfileBitExt - nameWithType: All.ContextEs2ProfileBitExt - fullName: OpenTK.Graphics.Wgl.All.ContextEs2ProfileBitExt - type: Field - source: - id: ContextEs2ProfileBitExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 27 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: ContextEs2ProfileBitExt = 4 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.ContextEsProfileBitExt - commentId: F:OpenTK.Graphics.Wgl.All.ContextEsProfileBitExt - id: ContextEsProfileBitExt - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: ContextEsProfileBitExt - nameWithType: All.ContextEsProfileBitExt - fullName: OpenTK.Graphics.Wgl.All.ContextEsProfileBitExt - type: Field - source: - id: ContextEsProfileBitExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 28 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: ContextEsProfileBitExt = 4 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.ContextRobustAccessBitArb - commentId: F:OpenTK.Graphics.Wgl.All.ContextRobustAccessBitArb - id: ContextRobustAccessBitArb - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: ContextRobustAccessBitArb - nameWithType: All.ContextRobustAccessBitArb - fullName: OpenTK.Graphics.Wgl.All.ContextRobustAccessBitArb - type: Field - source: - id: ContextRobustAccessBitArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 29 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: ContextRobustAccessBitArb = 4 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.DepthBufferBitArb - commentId: F:OpenTK.Graphics.Wgl.All.DepthBufferBitArb - id: DepthBufferBitArb - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: DepthBufferBitArb - nameWithType: All.DepthBufferBitArb - fullName: OpenTK.Graphics.Wgl.All.DepthBufferBitArb - type: Field - source: - id: DepthBufferBitArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 30 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: DepthBufferBitArb = 4 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.SwapOverlay2 - commentId: F:OpenTK.Graphics.Wgl.All.SwapOverlay2 - id: SwapOverlay2 - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: SwapOverlay2 - nameWithType: All.SwapOverlay2 - fullName: OpenTK.Graphics.Wgl.All.SwapOverlay2 - type: Field - source: - id: SwapOverlay2 - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 31 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: SwapOverlay2 = 4 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.ContextResetIsolationBitArb - commentId: F:OpenTK.Graphics.Wgl.All.ContextResetIsolationBitArb - id: ContextResetIsolationBitArb - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: ContextResetIsolationBitArb - nameWithType: All.ContextResetIsolationBitArb - fullName: OpenTK.Graphics.Wgl.All.ContextResetIsolationBitArb - type: Field - source: - id: ContextResetIsolationBitArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 32 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: ContextResetIsolationBitArb = 8 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.StencilBufferBitArb - commentId: F:OpenTK.Graphics.Wgl.All.StencilBufferBitArb - id: StencilBufferBitArb - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: StencilBufferBitArb - nameWithType: All.StencilBufferBitArb - fullName: OpenTK.Graphics.Wgl.All.StencilBufferBitArb - type: Field - source: - id: StencilBufferBitArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 33 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: StencilBufferBitArb = 8 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.SwapOverlay3 - commentId: F:OpenTK.Graphics.Wgl.All.SwapOverlay3 - id: SwapOverlay3 - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: SwapOverlay3 - nameWithType: All.SwapOverlay3 - fullName: OpenTK.Graphics.Wgl.All.SwapOverlay3 - type: Field - source: - id: SwapOverlay3 - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 34 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: SwapOverlay3 = 8 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.SwapOverlay4 - commentId: F:OpenTK.Graphics.Wgl.All.SwapOverlay4 - id: SwapOverlay4 - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: SwapOverlay4 - nameWithType: All.SwapOverlay4 - fullName: OpenTK.Graphics.Wgl.All.SwapOverlay4 - type: Field - source: - id: SwapOverlay4 - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 35 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: SwapOverlay4 = 16 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.SwapOverlay5 - commentId: F:OpenTK.Graphics.Wgl.All.SwapOverlay5 - id: SwapOverlay5 - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: SwapOverlay5 - nameWithType: All.SwapOverlay5 - fullName: OpenTK.Graphics.Wgl.All.SwapOverlay5 - type: Field - source: - id: SwapOverlay5 - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 36 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: SwapOverlay5 = 32 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.SwapOverlay6 - commentId: F:OpenTK.Graphics.Wgl.All.SwapOverlay6 - id: SwapOverlay6 - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: SwapOverlay6 - nameWithType: All.SwapOverlay6 - fullName: OpenTK.Graphics.Wgl.All.SwapOverlay6 - type: Field - source: - id: SwapOverlay6 - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 37 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: SwapOverlay6 = 64 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.SwapOverlay7 - commentId: F:OpenTK.Graphics.Wgl.All.SwapOverlay7 - id: SwapOverlay7 - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: SwapOverlay7 - nameWithType: All.SwapOverlay7 - fullName: OpenTK.Graphics.Wgl.All.SwapOverlay7 - type: Field - source: - id: SwapOverlay7 - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 38 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: SwapOverlay7 = 128 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.SwapOverlay8 - commentId: F:OpenTK.Graphics.Wgl.All.SwapOverlay8 - id: SwapOverlay8 - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: SwapOverlay8 - nameWithType: All.SwapOverlay8 - fullName: OpenTK.Graphics.Wgl.All.SwapOverlay8 - type: Field - source: - id: SwapOverlay8 - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 39 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: SwapOverlay8 = 256 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.SwapOverlay9 - commentId: F:OpenTK.Graphics.Wgl.All.SwapOverlay9 - id: SwapOverlay9 - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: SwapOverlay9 - nameWithType: All.SwapOverlay9 - fullName: OpenTK.Graphics.Wgl.All.SwapOverlay9 - type: Field - source: - id: SwapOverlay9 - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 40 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: SwapOverlay9 = 512 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.SwapOverlay10 - commentId: F:OpenTK.Graphics.Wgl.All.SwapOverlay10 - id: SwapOverlay10 - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: SwapOverlay10 - nameWithType: All.SwapOverlay10 - fullName: OpenTK.Graphics.Wgl.All.SwapOverlay10 - type: Field - source: - id: SwapOverlay10 - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 41 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: SwapOverlay10 = 1024 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.SwapOverlay11 - commentId: F:OpenTK.Graphics.Wgl.All.SwapOverlay11 - id: SwapOverlay11 - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: SwapOverlay11 - nameWithType: All.SwapOverlay11 - fullName: OpenTK.Graphics.Wgl.All.SwapOverlay11 - type: Field - source: - id: SwapOverlay11 - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 42 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: SwapOverlay11 = 2048 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.Texture2d - commentId: F:OpenTK.Graphics.Wgl.All.Texture2d - id: Texture2d - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: Texture2d - nameWithType: All.Texture2d - fullName: OpenTK.Graphics.Wgl.All.Texture2d - type: Field - source: - id: Texture2d - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 43 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: Texture2d = 3553 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.SwapOverlay12 - commentId: F:OpenTK.Graphics.Wgl.All.SwapOverlay12 - id: SwapOverlay12 - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: SwapOverlay12 - nameWithType: All.SwapOverlay12 - fullName: OpenTK.Graphics.Wgl.All.SwapOverlay12 - type: Field - source: - id: SwapOverlay12 - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 44 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: SwapOverlay12 = 4096 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.GpuVendorAmd - commentId: F:OpenTK.Graphics.Wgl.All.GpuVendorAmd - id: GpuVendorAmd - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: GpuVendorAmd - nameWithType: All.GpuVendorAmd - fullName: OpenTK.Graphics.Wgl.All.GpuVendorAmd - type: Field - source: - id: GpuVendorAmd - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 45 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: GpuVendorAmd = 7936 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.GpuRendererStringAmd - commentId: F:OpenTK.Graphics.Wgl.All.GpuRendererStringAmd - id: GpuRendererStringAmd - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: GpuRendererStringAmd - nameWithType: All.GpuRendererStringAmd - fullName: OpenTK.Graphics.Wgl.All.GpuRendererStringAmd - type: Field - source: - id: GpuRendererStringAmd - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 46 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: GpuRendererStringAmd = 7937 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.GpuOpenglVersionStringAmd - commentId: F:OpenTK.Graphics.Wgl.All.GpuOpenglVersionStringAmd - id: GpuOpenglVersionStringAmd - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: GpuOpenglVersionStringAmd - nameWithType: All.GpuOpenglVersionStringAmd - fullName: OpenTK.Graphics.Wgl.All.GpuOpenglVersionStringAmd - type: Field - source: - id: GpuOpenglVersionStringAmd - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 47 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: GpuOpenglVersionStringAmd = 7938 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.NumberPixelFormatsArb - commentId: F:OpenTK.Graphics.Wgl.All.NumberPixelFormatsArb - id: NumberPixelFormatsArb - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: NumberPixelFormatsArb - nameWithType: All.NumberPixelFormatsArb - fullName: OpenTK.Graphics.Wgl.All.NumberPixelFormatsArb - type: Field - source: - id: NumberPixelFormatsArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 48 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: NumberPixelFormatsArb = 8192 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.NumberPixelFormatsExt - commentId: F:OpenTK.Graphics.Wgl.All.NumberPixelFormatsExt - id: NumberPixelFormatsExt - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: NumberPixelFormatsExt - nameWithType: All.NumberPixelFormatsExt - fullName: OpenTK.Graphics.Wgl.All.NumberPixelFormatsExt - type: Field - source: - id: NumberPixelFormatsExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 49 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: NumberPixelFormatsExt = 8192 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.SwapOverlay13 - commentId: F:OpenTK.Graphics.Wgl.All.SwapOverlay13 - id: SwapOverlay13 - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: SwapOverlay13 - nameWithType: All.SwapOverlay13 - fullName: OpenTK.Graphics.Wgl.All.SwapOverlay13 - type: Field - source: - id: SwapOverlay13 - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 50 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: SwapOverlay13 = 8192 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.DrawToWindowArb - commentId: F:OpenTK.Graphics.Wgl.All.DrawToWindowArb - id: DrawToWindowArb - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: DrawToWindowArb - nameWithType: All.DrawToWindowArb - fullName: OpenTK.Graphics.Wgl.All.DrawToWindowArb - type: Field - source: - id: DrawToWindowArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 51 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: DrawToWindowArb = 8193 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.DrawToWindowExt - commentId: F:OpenTK.Graphics.Wgl.All.DrawToWindowExt - id: DrawToWindowExt - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: DrawToWindowExt - nameWithType: All.DrawToWindowExt - fullName: OpenTK.Graphics.Wgl.All.DrawToWindowExt - type: Field - source: - id: DrawToWindowExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 52 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: DrawToWindowExt = 8193 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.DrawToBitmapArb - commentId: F:OpenTK.Graphics.Wgl.All.DrawToBitmapArb - id: DrawToBitmapArb - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: DrawToBitmapArb - nameWithType: All.DrawToBitmapArb - fullName: OpenTK.Graphics.Wgl.All.DrawToBitmapArb - type: Field - source: - id: DrawToBitmapArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 53 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: DrawToBitmapArb = 8194 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.DrawToBitmapExt - commentId: F:OpenTK.Graphics.Wgl.All.DrawToBitmapExt - id: DrawToBitmapExt - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: DrawToBitmapExt - nameWithType: All.DrawToBitmapExt - fullName: OpenTK.Graphics.Wgl.All.DrawToBitmapExt - type: Field - source: - id: DrawToBitmapExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 54 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: DrawToBitmapExt = 8194 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.AccelerationArb - commentId: F:OpenTK.Graphics.Wgl.All.AccelerationArb - id: AccelerationArb - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: AccelerationArb - nameWithType: All.AccelerationArb - fullName: OpenTK.Graphics.Wgl.All.AccelerationArb - type: Field - source: - id: AccelerationArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 55 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: AccelerationArb = 8195 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.AccelerationExt - commentId: F:OpenTK.Graphics.Wgl.All.AccelerationExt - id: AccelerationExt - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: AccelerationExt - nameWithType: All.AccelerationExt - fullName: OpenTK.Graphics.Wgl.All.AccelerationExt - type: Field - source: - id: AccelerationExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 56 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: AccelerationExt = 8195 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.NeedPaletteArb - commentId: F:OpenTK.Graphics.Wgl.All.NeedPaletteArb - id: NeedPaletteArb - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: NeedPaletteArb - nameWithType: All.NeedPaletteArb - fullName: OpenTK.Graphics.Wgl.All.NeedPaletteArb - type: Field - source: - id: NeedPaletteArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 57 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: NeedPaletteArb = 8196 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.NeedPaletteExt - commentId: F:OpenTK.Graphics.Wgl.All.NeedPaletteExt - id: NeedPaletteExt - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: NeedPaletteExt - nameWithType: All.NeedPaletteExt - fullName: OpenTK.Graphics.Wgl.All.NeedPaletteExt - type: Field - source: - id: NeedPaletteExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 58 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: NeedPaletteExt = 8196 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.NeedSystemPaletteArb - commentId: F:OpenTK.Graphics.Wgl.All.NeedSystemPaletteArb - id: NeedSystemPaletteArb - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: NeedSystemPaletteArb - nameWithType: All.NeedSystemPaletteArb - fullName: OpenTK.Graphics.Wgl.All.NeedSystemPaletteArb - type: Field - source: - id: NeedSystemPaletteArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 59 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: NeedSystemPaletteArb = 8197 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.NeedSystemPaletteExt - commentId: F:OpenTK.Graphics.Wgl.All.NeedSystemPaletteExt - id: NeedSystemPaletteExt - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: NeedSystemPaletteExt - nameWithType: All.NeedSystemPaletteExt - fullName: OpenTK.Graphics.Wgl.All.NeedSystemPaletteExt - type: Field - source: - id: NeedSystemPaletteExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 60 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: NeedSystemPaletteExt = 8197 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.SwapLayerBuffersArb - commentId: F:OpenTK.Graphics.Wgl.All.SwapLayerBuffersArb - id: SwapLayerBuffersArb - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: SwapLayerBuffersArb - nameWithType: All.SwapLayerBuffersArb - fullName: OpenTK.Graphics.Wgl.All.SwapLayerBuffersArb - type: Field - source: - id: SwapLayerBuffersArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 61 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: SwapLayerBuffersArb = 8198 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.SwapLayerBuffersExt - commentId: F:OpenTK.Graphics.Wgl.All.SwapLayerBuffersExt - id: SwapLayerBuffersExt - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: SwapLayerBuffersExt - nameWithType: All.SwapLayerBuffersExt - fullName: OpenTK.Graphics.Wgl.All.SwapLayerBuffersExt - type: Field - source: - id: SwapLayerBuffersExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 62 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: SwapLayerBuffersExt = 8198 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.SwapMethodArb - commentId: F:OpenTK.Graphics.Wgl.All.SwapMethodArb - id: SwapMethodArb - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: SwapMethodArb - nameWithType: All.SwapMethodArb - fullName: OpenTK.Graphics.Wgl.All.SwapMethodArb - type: Field - source: - id: SwapMethodArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 63 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: SwapMethodArb = 8199 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.SwapMethodExt - commentId: F:OpenTK.Graphics.Wgl.All.SwapMethodExt - id: SwapMethodExt - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: SwapMethodExt - nameWithType: All.SwapMethodExt - fullName: OpenTK.Graphics.Wgl.All.SwapMethodExt - type: Field - source: - id: SwapMethodExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 64 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: SwapMethodExt = 8199 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.NumberOverlaysArb - commentId: F:OpenTK.Graphics.Wgl.All.NumberOverlaysArb - id: NumberOverlaysArb - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: NumberOverlaysArb - nameWithType: All.NumberOverlaysArb - fullName: OpenTK.Graphics.Wgl.All.NumberOverlaysArb - type: Field - source: - id: NumberOverlaysArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 65 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: NumberOverlaysArb = 8200 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.NumberOverlaysExt - commentId: F:OpenTK.Graphics.Wgl.All.NumberOverlaysExt - id: NumberOverlaysExt - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: NumberOverlaysExt - nameWithType: All.NumberOverlaysExt - fullName: OpenTK.Graphics.Wgl.All.NumberOverlaysExt - type: Field - source: - id: NumberOverlaysExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 66 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: NumberOverlaysExt = 8200 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.NumberUnderlaysArb - commentId: F:OpenTK.Graphics.Wgl.All.NumberUnderlaysArb - id: NumberUnderlaysArb - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: NumberUnderlaysArb - nameWithType: All.NumberUnderlaysArb - fullName: OpenTK.Graphics.Wgl.All.NumberUnderlaysArb - type: Field - source: - id: NumberUnderlaysArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 67 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: NumberUnderlaysArb = 8201 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.NumberUnderlaysExt - commentId: F:OpenTK.Graphics.Wgl.All.NumberUnderlaysExt - id: NumberUnderlaysExt - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: NumberUnderlaysExt - nameWithType: All.NumberUnderlaysExt - fullName: OpenTK.Graphics.Wgl.All.NumberUnderlaysExt - type: Field - source: - id: NumberUnderlaysExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 68 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: NumberUnderlaysExt = 8201 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.TransparentArb - commentId: F:OpenTK.Graphics.Wgl.All.TransparentArb - id: TransparentArb - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: TransparentArb - nameWithType: All.TransparentArb - fullName: OpenTK.Graphics.Wgl.All.TransparentArb - type: Field - source: - id: TransparentArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 69 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: TransparentArb = 8202 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.TransparentExt - commentId: F:OpenTK.Graphics.Wgl.All.TransparentExt - id: TransparentExt - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: TransparentExt - nameWithType: All.TransparentExt - fullName: OpenTK.Graphics.Wgl.All.TransparentExt - type: Field - source: - id: TransparentExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 70 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: TransparentExt = 8202 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.TransparentValueExt - commentId: F:OpenTK.Graphics.Wgl.All.TransparentValueExt - id: TransparentValueExt - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: TransparentValueExt - nameWithType: All.TransparentValueExt - fullName: OpenTK.Graphics.Wgl.All.TransparentValueExt - type: Field - source: - id: TransparentValueExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 71 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: TransparentValueExt = 8203 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.ShareDepthArb - commentId: F:OpenTK.Graphics.Wgl.All.ShareDepthArb - id: ShareDepthArb - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: ShareDepthArb - nameWithType: All.ShareDepthArb - fullName: OpenTK.Graphics.Wgl.All.ShareDepthArb - type: Field - source: - id: ShareDepthArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 72 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: ShareDepthArb = 8204 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.ShareDepthExt - commentId: F:OpenTK.Graphics.Wgl.All.ShareDepthExt - id: ShareDepthExt - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: ShareDepthExt - nameWithType: All.ShareDepthExt - fullName: OpenTK.Graphics.Wgl.All.ShareDepthExt - type: Field - source: - id: ShareDepthExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 73 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: ShareDepthExt = 8204 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.ShareStencilArb - commentId: F:OpenTK.Graphics.Wgl.All.ShareStencilArb - id: ShareStencilArb - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: ShareStencilArb - nameWithType: All.ShareStencilArb - fullName: OpenTK.Graphics.Wgl.All.ShareStencilArb - type: Field - source: - id: ShareStencilArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 74 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: ShareStencilArb = 8205 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.ShareStencilExt - commentId: F:OpenTK.Graphics.Wgl.All.ShareStencilExt - id: ShareStencilExt - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: ShareStencilExt - nameWithType: All.ShareStencilExt - fullName: OpenTK.Graphics.Wgl.All.ShareStencilExt - type: Field - source: - id: ShareStencilExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 75 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: ShareStencilExt = 8205 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.ShareAccumArb - commentId: F:OpenTK.Graphics.Wgl.All.ShareAccumArb - id: ShareAccumArb - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: ShareAccumArb - nameWithType: All.ShareAccumArb - fullName: OpenTK.Graphics.Wgl.All.ShareAccumArb - type: Field - source: - id: ShareAccumArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 76 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: ShareAccumArb = 8206 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.ShareAccumExt - commentId: F:OpenTK.Graphics.Wgl.All.ShareAccumExt - id: ShareAccumExt - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: ShareAccumExt - nameWithType: All.ShareAccumExt - fullName: OpenTK.Graphics.Wgl.All.ShareAccumExt - type: Field - source: - id: ShareAccumExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 77 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: ShareAccumExt = 8206 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.SupportGdiArb - commentId: F:OpenTK.Graphics.Wgl.All.SupportGdiArb - id: SupportGdiArb - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: SupportGdiArb - nameWithType: All.SupportGdiArb - fullName: OpenTK.Graphics.Wgl.All.SupportGdiArb - type: Field - source: - id: SupportGdiArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 78 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: SupportGdiArb = 8207 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.SupportGdiExt - commentId: F:OpenTK.Graphics.Wgl.All.SupportGdiExt - id: SupportGdiExt - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: SupportGdiExt - nameWithType: All.SupportGdiExt - fullName: OpenTK.Graphics.Wgl.All.SupportGdiExt - type: Field - source: - id: SupportGdiExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 79 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: SupportGdiExt = 8207 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.SupportOpenglArb - commentId: F:OpenTK.Graphics.Wgl.All.SupportOpenglArb - id: SupportOpenglArb - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: SupportOpenglArb - nameWithType: All.SupportOpenglArb - fullName: OpenTK.Graphics.Wgl.All.SupportOpenglArb - type: Field - source: - id: SupportOpenglArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 80 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: SupportOpenglArb = 8208 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.SupportOpenglExt - commentId: F:OpenTK.Graphics.Wgl.All.SupportOpenglExt - id: SupportOpenglExt - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: SupportOpenglExt - nameWithType: All.SupportOpenglExt - fullName: OpenTK.Graphics.Wgl.All.SupportOpenglExt - type: Field - source: - id: SupportOpenglExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 81 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: SupportOpenglExt = 8208 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.DoubleBufferArb - commentId: F:OpenTK.Graphics.Wgl.All.DoubleBufferArb - id: DoubleBufferArb - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: DoubleBufferArb - nameWithType: All.DoubleBufferArb - fullName: OpenTK.Graphics.Wgl.All.DoubleBufferArb - type: Field - source: - id: DoubleBufferArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 82 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: DoubleBufferArb = 8209 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.DoubleBufferExt - commentId: F:OpenTK.Graphics.Wgl.All.DoubleBufferExt - id: DoubleBufferExt - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: DoubleBufferExt - nameWithType: All.DoubleBufferExt - fullName: OpenTK.Graphics.Wgl.All.DoubleBufferExt - type: Field - source: - id: DoubleBufferExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 83 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: DoubleBufferExt = 8209 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.StereoArb - commentId: F:OpenTK.Graphics.Wgl.All.StereoArb - id: StereoArb - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: StereoArb - nameWithType: All.StereoArb - fullName: OpenTK.Graphics.Wgl.All.StereoArb - type: Field - source: - id: StereoArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 84 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: StereoArb = 8210 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.StereoExt - commentId: F:OpenTK.Graphics.Wgl.All.StereoExt - id: StereoExt - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: StereoExt - nameWithType: All.StereoExt - fullName: OpenTK.Graphics.Wgl.All.StereoExt - type: Field - source: - id: StereoExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 85 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: StereoExt = 8210 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.PixelTypeArb - commentId: F:OpenTK.Graphics.Wgl.All.PixelTypeArb - id: PixelTypeArb - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: PixelTypeArb - nameWithType: All.PixelTypeArb - fullName: OpenTK.Graphics.Wgl.All.PixelTypeArb - type: Field - source: - id: PixelTypeArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 86 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: PixelTypeArb = 8211 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.PixelTypeExt - commentId: F:OpenTK.Graphics.Wgl.All.PixelTypeExt - id: PixelTypeExt - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: PixelTypeExt - nameWithType: All.PixelTypeExt - fullName: OpenTK.Graphics.Wgl.All.PixelTypeExt - type: Field - source: - id: PixelTypeExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 87 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: PixelTypeExt = 8211 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.ColorBitsArb - commentId: F:OpenTK.Graphics.Wgl.All.ColorBitsArb - id: ColorBitsArb - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: ColorBitsArb - nameWithType: All.ColorBitsArb - fullName: OpenTK.Graphics.Wgl.All.ColorBitsArb - type: Field - source: - id: ColorBitsArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 88 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: ColorBitsArb = 8212 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.ColorBitsExt - commentId: F:OpenTK.Graphics.Wgl.All.ColorBitsExt - id: ColorBitsExt - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: ColorBitsExt - nameWithType: All.ColorBitsExt - fullName: OpenTK.Graphics.Wgl.All.ColorBitsExt - type: Field - source: - id: ColorBitsExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 89 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: ColorBitsExt = 8212 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.RedBitsArb - commentId: F:OpenTK.Graphics.Wgl.All.RedBitsArb - id: RedBitsArb - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: RedBitsArb - nameWithType: All.RedBitsArb - fullName: OpenTK.Graphics.Wgl.All.RedBitsArb - type: Field - source: - id: RedBitsArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 90 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: RedBitsArb = 8213 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.RedBitsExt - commentId: F:OpenTK.Graphics.Wgl.All.RedBitsExt - id: RedBitsExt - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: RedBitsExt - nameWithType: All.RedBitsExt - fullName: OpenTK.Graphics.Wgl.All.RedBitsExt - type: Field - source: - id: RedBitsExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 91 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: RedBitsExt = 8213 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.RedShiftArb - commentId: F:OpenTK.Graphics.Wgl.All.RedShiftArb - id: RedShiftArb - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: RedShiftArb - nameWithType: All.RedShiftArb - fullName: OpenTK.Graphics.Wgl.All.RedShiftArb - type: Field - source: - id: RedShiftArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 92 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: RedShiftArb = 8214 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.RedShiftExt - commentId: F:OpenTK.Graphics.Wgl.All.RedShiftExt - id: RedShiftExt - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: RedShiftExt - nameWithType: All.RedShiftExt - fullName: OpenTK.Graphics.Wgl.All.RedShiftExt - type: Field - source: - id: RedShiftExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 93 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: RedShiftExt = 8214 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.GreenBitsArb - commentId: F:OpenTK.Graphics.Wgl.All.GreenBitsArb - id: GreenBitsArb - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: GreenBitsArb - nameWithType: All.GreenBitsArb - fullName: OpenTK.Graphics.Wgl.All.GreenBitsArb - type: Field - source: - id: GreenBitsArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 94 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: GreenBitsArb = 8215 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.GreenBitsExt - commentId: F:OpenTK.Graphics.Wgl.All.GreenBitsExt - id: GreenBitsExt - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: GreenBitsExt - nameWithType: All.GreenBitsExt - fullName: OpenTK.Graphics.Wgl.All.GreenBitsExt - type: Field - source: - id: GreenBitsExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 95 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: GreenBitsExt = 8215 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.GreenShiftArb - commentId: F:OpenTK.Graphics.Wgl.All.GreenShiftArb - id: GreenShiftArb - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: GreenShiftArb - nameWithType: All.GreenShiftArb - fullName: OpenTK.Graphics.Wgl.All.GreenShiftArb - type: Field - source: - id: GreenShiftArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 96 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: GreenShiftArb = 8216 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.GreenShiftExt - commentId: F:OpenTK.Graphics.Wgl.All.GreenShiftExt - id: GreenShiftExt - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: GreenShiftExt - nameWithType: All.GreenShiftExt - fullName: OpenTK.Graphics.Wgl.All.GreenShiftExt - type: Field - source: - id: GreenShiftExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 97 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: GreenShiftExt = 8216 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.BlueBitsArb - commentId: F:OpenTK.Graphics.Wgl.All.BlueBitsArb - id: BlueBitsArb - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: BlueBitsArb - nameWithType: All.BlueBitsArb - fullName: OpenTK.Graphics.Wgl.All.BlueBitsArb - type: Field - source: - id: BlueBitsArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 98 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: BlueBitsArb = 8217 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.BlueBitsExt - commentId: F:OpenTK.Graphics.Wgl.All.BlueBitsExt - id: BlueBitsExt - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: BlueBitsExt - nameWithType: All.BlueBitsExt - fullName: OpenTK.Graphics.Wgl.All.BlueBitsExt - type: Field - source: - id: BlueBitsExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 99 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: BlueBitsExt = 8217 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.BlueShiftArb - commentId: F:OpenTK.Graphics.Wgl.All.BlueShiftArb - id: BlueShiftArb - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: BlueShiftArb - nameWithType: All.BlueShiftArb - fullName: OpenTK.Graphics.Wgl.All.BlueShiftArb - type: Field - source: - id: BlueShiftArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 100 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: BlueShiftArb = 8218 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.BlueShiftExt - commentId: F:OpenTK.Graphics.Wgl.All.BlueShiftExt - id: BlueShiftExt - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: BlueShiftExt - nameWithType: All.BlueShiftExt - fullName: OpenTK.Graphics.Wgl.All.BlueShiftExt - type: Field - source: - id: BlueShiftExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 101 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: BlueShiftExt = 8218 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.AlphaBitsArb - commentId: F:OpenTK.Graphics.Wgl.All.AlphaBitsArb - id: AlphaBitsArb - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: AlphaBitsArb - nameWithType: All.AlphaBitsArb - fullName: OpenTK.Graphics.Wgl.All.AlphaBitsArb - type: Field - source: - id: AlphaBitsArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 102 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: AlphaBitsArb = 8219 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.AlphaBitsExt - commentId: F:OpenTK.Graphics.Wgl.All.AlphaBitsExt - id: AlphaBitsExt - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: AlphaBitsExt - nameWithType: All.AlphaBitsExt - fullName: OpenTK.Graphics.Wgl.All.AlphaBitsExt - type: Field - source: - id: AlphaBitsExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 103 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: AlphaBitsExt = 8219 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.AlphaShiftArb - commentId: F:OpenTK.Graphics.Wgl.All.AlphaShiftArb - id: AlphaShiftArb - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: AlphaShiftArb - nameWithType: All.AlphaShiftArb - fullName: OpenTK.Graphics.Wgl.All.AlphaShiftArb - type: Field - source: - id: AlphaShiftArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 104 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: AlphaShiftArb = 8220 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.AlphaShiftExt - commentId: F:OpenTK.Graphics.Wgl.All.AlphaShiftExt - id: AlphaShiftExt - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: AlphaShiftExt - nameWithType: All.AlphaShiftExt - fullName: OpenTK.Graphics.Wgl.All.AlphaShiftExt - type: Field - source: - id: AlphaShiftExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 105 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: AlphaShiftExt = 8220 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.AccumBitsArb - commentId: F:OpenTK.Graphics.Wgl.All.AccumBitsArb - id: AccumBitsArb - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: AccumBitsArb - nameWithType: All.AccumBitsArb - fullName: OpenTK.Graphics.Wgl.All.AccumBitsArb - type: Field - source: - id: AccumBitsArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 106 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: AccumBitsArb = 8221 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.AccumBitsExt - commentId: F:OpenTK.Graphics.Wgl.All.AccumBitsExt - id: AccumBitsExt - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: AccumBitsExt - nameWithType: All.AccumBitsExt - fullName: OpenTK.Graphics.Wgl.All.AccumBitsExt - type: Field - source: - id: AccumBitsExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 107 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: AccumBitsExt = 8221 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.AccumRedBitsArb - commentId: F:OpenTK.Graphics.Wgl.All.AccumRedBitsArb - id: AccumRedBitsArb - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: AccumRedBitsArb - nameWithType: All.AccumRedBitsArb - fullName: OpenTK.Graphics.Wgl.All.AccumRedBitsArb - type: Field - source: - id: AccumRedBitsArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 108 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: AccumRedBitsArb = 8222 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.AccumRedBitsExt - commentId: F:OpenTK.Graphics.Wgl.All.AccumRedBitsExt - id: AccumRedBitsExt - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: AccumRedBitsExt - nameWithType: All.AccumRedBitsExt - fullName: OpenTK.Graphics.Wgl.All.AccumRedBitsExt - type: Field - source: - id: AccumRedBitsExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 109 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: AccumRedBitsExt = 8222 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.AccumGreenBitsArb - commentId: F:OpenTK.Graphics.Wgl.All.AccumGreenBitsArb - id: AccumGreenBitsArb - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: AccumGreenBitsArb - nameWithType: All.AccumGreenBitsArb - fullName: OpenTK.Graphics.Wgl.All.AccumGreenBitsArb - type: Field - source: - id: AccumGreenBitsArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 110 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: AccumGreenBitsArb = 8223 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.AccumGreenBitsExt - commentId: F:OpenTK.Graphics.Wgl.All.AccumGreenBitsExt - id: AccumGreenBitsExt - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: AccumGreenBitsExt - nameWithType: All.AccumGreenBitsExt - fullName: OpenTK.Graphics.Wgl.All.AccumGreenBitsExt - type: Field - source: - id: AccumGreenBitsExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 111 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: AccumGreenBitsExt = 8223 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.AccumBlueBitsArb - commentId: F:OpenTK.Graphics.Wgl.All.AccumBlueBitsArb - id: AccumBlueBitsArb - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: AccumBlueBitsArb - nameWithType: All.AccumBlueBitsArb - fullName: OpenTK.Graphics.Wgl.All.AccumBlueBitsArb - type: Field - source: - id: AccumBlueBitsArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 112 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: AccumBlueBitsArb = 8224 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.AccumBlueBitsExt - commentId: F:OpenTK.Graphics.Wgl.All.AccumBlueBitsExt - id: AccumBlueBitsExt - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: AccumBlueBitsExt - nameWithType: All.AccumBlueBitsExt - fullName: OpenTK.Graphics.Wgl.All.AccumBlueBitsExt - type: Field - source: - id: AccumBlueBitsExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 113 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: AccumBlueBitsExt = 8224 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.AccumAlphaBitsArb - commentId: F:OpenTK.Graphics.Wgl.All.AccumAlphaBitsArb - id: AccumAlphaBitsArb - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: AccumAlphaBitsArb - nameWithType: All.AccumAlphaBitsArb - fullName: OpenTK.Graphics.Wgl.All.AccumAlphaBitsArb - type: Field - source: - id: AccumAlphaBitsArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 114 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: AccumAlphaBitsArb = 8225 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.AccumAlphaBitsExt - commentId: F:OpenTK.Graphics.Wgl.All.AccumAlphaBitsExt - id: AccumAlphaBitsExt - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: AccumAlphaBitsExt - nameWithType: All.AccumAlphaBitsExt - fullName: OpenTK.Graphics.Wgl.All.AccumAlphaBitsExt - type: Field - source: - id: AccumAlphaBitsExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 115 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: AccumAlphaBitsExt = 8225 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.DepthBitsArb - commentId: F:OpenTK.Graphics.Wgl.All.DepthBitsArb - id: DepthBitsArb - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: DepthBitsArb - nameWithType: All.DepthBitsArb - fullName: OpenTK.Graphics.Wgl.All.DepthBitsArb - type: Field - source: - id: DepthBitsArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 116 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: DepthBitsArb = 8226 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.DepthBitsExt - commentId: F:OpenTK.Graphics.Wgl.All.DepthBitsExt - id: DepthBitsExt - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: DepthBitsExt - nameWithType: All.DepthBitsExt - fullName: OpenTK.Graphics.Wgl.All.DepthBitsExt - type: Field - source: - id: DepthBitsExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 117 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: DepthBitsExt = 8226 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.StencilBitsArb - commentId: F:OpenTK.Graphics.Wgl.All.StencilBitsArb - id: StencilBitsArb - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: StencilBitsArb - nameWithType: All.StencilBitsArb - fullName: OpenTK.Graphics.Wgl.All.StencilBitsArb - type: Field - source: - id: StencilBitsArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 118 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: StencilBitsArb = 8227 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.StencilBitsExt - commentId: F:OpenTK.Graphics.Wgl.All.StencilBitsExt - id: StencilBitsExt - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: StencilBitsExt - nameWithType: All.StencilBitsExt - fullName: OpenTK.Graphics.Wgl.All.StencilBitsExt - type: Field - source: - id: StencilBitsExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 119 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: StencilBitsExt = 8227 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.AuxBuffersArb - commentId: F:OpenTK.Graphics.Wgl.All.AuxBuffersArb - id: AuxBuffersArb - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: AuxBuffersArb - nameWithType: All.AuxBuffersArb - fullName: OpenTK.Graphics.Wgl.All.AuxBuffersArb - type: Field - source: - id: AuxBuffersArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 120 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: AuxBuffersArb = 8228 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.AuxBuffersExt - commentId: F:OpenTK.Graphics.Wgl.All.AuxBuffersExt - id: AuxBuffersExt - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: AuxBuffersExt - nameWithType: All.AuxBuffersExt - fullName: OpenTK.Graphics.Wgl.All.AuxBuffersExt - type: Field - source: - id: AuxBuffersExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 121 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: AuxBuffersExt = 8228 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.NoAccelerationArb - commentId: F:OpenTK.Graphics.Wgl.All.NoAccelerationArb - id: NoAccelerationArb - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: NoAccelerationArb - nameWithType: All.NoAccelerationArb - fullName: OpenTK.Graphics.Wgl.All.NoAccelerationArb - type: Field - source: - id: NoAccelerationArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 122 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: NoAccelerationArb = 8229 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.NoAccelerationExt - commentId: F:OpenTK.Graphics.Wgl.All.NoAccelerationExt - id: NoAccelerationExt - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: NoAccelerationExt - nameWithType: All.NoAccelerationExt - fullName: OpenTK.Graphics.Wgl.All.NoAccelerationExt - type: Field - source: - id: NoAccelerationExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 123 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: NoAccelerationExt = 8229 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.GenericAccelerationArb - commentId: F:OpenTK.Graphics.Wgl.All.GenericAccelerationArb - id: GenericAccelerationArb - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: GenericAccelerationArb - nameWithType: All.GenericAccelerationArb - fullName: OpenTK.Graphics.Wgl.All.GenericAccelerationArb - type: Field - source: - id: GenericAccelerationArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 124 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: GenericAccelerationArb = 8230 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.GenericAccelerationExt - commentId: F:OpenTK.Graphics.Wgl.All.GenericAccelerationExt - id: GenericAccelerationExt - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: GenericAccelerationExt - nameWithType: All.GenericAccelerationExt - fullName: OpenTK.Graphics.Wgl.All.GenericAccelerationExt - type: Field - source: - id: GenericAccelerationExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 125 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: GenericAccelerationExt = 8230 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.FullAccelerationArb - commentId: F:OpenTK.Graphics.Wgl.All.FullAccelerationArb - id: FullAccelerationArb - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: FullAccelerationArb - nameWithType: All.FullAccelerationArb - fullName: OpenTK.Graphics.Wgl.All.FullAccelerationArb - type: Field - source: - id: FullAccelerationArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 126 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: FullAccelerationArb = 8231 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.FullAccelerationExt - commentId: F:OpenTK.Graphics.Wgl.All.FullAccelerationExt - id: FullAccelerationExt - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: FullAccelerationExt - nameWithType: All.FullAccelerationExt - fullName: OpenTK.Graphics.Wgl.All.FullAccelerationExt - type: Field - source: - id: FullAccelerationExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 127 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: FullAccelerationExt = 8231 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.SwapExchangeArb - commentId: F:OpenTK.Graphics.Wgl.All.SwapExchangeArb - id: SwapExchangeArb - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: SwapExchangeArb - nameWithType: All.SwapExchangeArb - fullName: OpenTK.Graphics.Wgl.All.SwapExchangeArb - type: Field - source: - id: SwapExchangeArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 128 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: SwapExchangeArb = 8232 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.SwapExchangeExt - commentId: F:OpenTK.Graphics.Wgl.All.SwapExchangeExt - id: SwapExchangeExt - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: SwapExchangeExt - nameWithType: All.SwapExchangeExt - fullName: OpenTK.Graphics.Wgl.All.SwapExchangeExt - type: Field - source: - id: SwapExchangeExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 129 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: SwapExchangeExt = 8232 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.SwapCopyArb - commentId: F:OpenTK.Graphics.Wgl.All.SwapCopyArb - id: SwapCopyArb - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: SwapCopyArb - nameWithType: All.SwapCopyArb - fullName: OpenTK.Graphics.Wgl.All.SwapCopyArb - type: Field - source: - id: SwapCopyArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 130 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: SwapCopyArb = 8233 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.SwapCopyExt - commentId: F:OpenTK.Graphics.Wgl.All.SwapCopyExt - id: SwapCopyExt - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: SwapCopyExt - nameWithType: All.SwapCopyExt - fullName: OpenTK.Graphics.Wgl.All.SwapCopyExt - type: Field - source: - id: SwapCopyExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 131 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: SwapCopyExt = 8233 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.SwapUndefinedArb - commentId: F:OpenTK.Graphics.Wgl.All.SwapUndefinedArb - id: SwapUndefinedArb - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: SwapUndefinedArb - nameWithType: All.SwapUndefinedArb - fullName: OpenTK.Graphics.Wgl.All.SwapUndefinedArb - type: Field - source: - id: SwapUndefinedArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 132 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: SwapUndefinedArb = 8234 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.SwapUndefinedExt - commentId: F:OpenTK.Graphics.Wgl.All.SwapUndefinedExt - id: SwapUndefinedExt - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: SwapUndefinedExt - nameWithType: All.SwapUndefinedExt - fullName: OpenTK.Graphics.Wgl.All.SwapUndefinedExt - type: Field - source: - id: SwapUndefinedExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 133 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: SwapUndefinedExt = 8234 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.TypeRgbaArb - commentId: F:OpenTK.Graphics.Wgl.All.TypeRgbaArb - id: TypeRgbaArb - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: TypeRgbaArb - nameWithType: All.TypeRgbaArb - fullName: OpenTK.Graphics.Wgl.All.TypeRgbaArb - type: Field - source: - id: TypeRgbaArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 134 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: TypeRgbaArb = 8235 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.TypeRgbaExt - commentId: F:OpenTK.Graphics.Wgl.All.TypeRgbaExt - id: TypeRgbaExt - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: TypeRgbaExt - nameWithType: All.TypeRgbaExt - fullName: OpenTK.Graphics.Wgl.All.TypeRgbaExt - type: Field - source: - id: TypeRgbaExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 135 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: TypeRgbaExt = 8235 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.TypeColorindexArb - commentId: F:OpenTK.Graphics.Wgl.All.TypeColorindexArb - id: TypeColorindexArb - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: TypeColorindexArb - nameWithType: All.TypeColorindexArb - fullName: OpenTK.Graphics.Wgl.All.TypeColorindexArb - type: Field - source: - id: TypeColorindexArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 136 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: TypeColorindexArb = 8236 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.TypeColorindexExt - commentId: F:OpenTK.Graphics.Wgl.All.TypeColorindexExt - id: TypeColorindexExt - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: TypeColorindexExt - nameWithType: All.TypeColorindexExt - fullName: OpenTK.Graphics.Wgl.All.TypeColorindexExt - type: Field - source: - id: TypeColorindexExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 137 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: TypeColorindexExt = 8236 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.DrawToPbufferArb - commentId: F:OpenTK.Graphics.Wgl.All.DrawToPbufferArb - id: DrawToPbufferArb - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: DrawToPbufferArb - nameWithType: All.DrawToPbufferArb - fullName: OpenTK.Graphics.Wgl.All.DrawToPbufferArb - type: Field - source: - id: DrawToPbufferArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 138 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: DrawToPbufferArb = 8237 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.DrawToPbufferExt - commentId: F:OpenTK.Graphics.Wgl.All.DrawToPbufferExt - id: DrawToPbufferExt - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: DrawToPbufferExt - nameWithType: All.DrawToPbufferExt - fullName: OpenTK.Graphics.Wgl.All.DrawToPbufferExt - type: Field - source: - id: DrawToPbufferExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 139 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: DrawToPbufferExt = 8237 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.MaxPbufferPixelsArb - commentId: F:OpenTK.Graphics.Wgl.All.MaxPbufferPixelsArb - id: MaxPbufferPixelsArb - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: MaxPbufferPixelsArb - nameWithType: All.MaxPbufferPixelsArb - fullName: OpenTK.Graphics.Wgl.All.MaxPbufferPixelsArb - type: Field - source: - id: MaxPbufferPixelsArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 140 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: MaxPbufferPixelsArb = 8238 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.MaxPbufferPixelsExt - commentId: F:OpenTK.Graphics.Wgl.All.MaxPbufferPixelsExt - id: MaxPbufferPixelsExt - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: MaxPbufferPixelsExt - nameWithType: All.MaxPbufferPixelsExt - fullName: OpenTK.Graphics.Wgl.All.MaxPbufferPixelsExt - type: Field - source: - id: MaxPbufferPixelsExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 141 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: MaxPbufferPixelsExt = 8238 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.MaxPbufferWidthArb - commentId: F:OpenTK.Graphics.Wgl.All.MaxPbufferWidthArb - id: MaxPbufferWidthArb - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: MaxPbufferWidthArb - nameWithType: All.MaxPbufferWidthArb - fullName: OpenTK.Graphics.Wgl.All.MaxPbufferWidthArb - type: Field - source: - id: MaxPbufferWidthArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 142 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: MaxPbufferWidthArb = 8239 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.MaxPbufferWidthExt - commentId: F:OpenTK.Graphics.Wgl.All.MaxPbufferWidthExt - id: MaxPbufferWidthExt - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: MaxPbufferWidthExt - nameWithType: All.MaxPbufferWidthExt - fullName: OpenTK.Graphics.Wgl.All.MaxPbufferWidthExt - type: Field - source: - id: MaxPbufferWidthExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 143 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: MaxPbufferWidthExt = 8239 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.MaxPbufferHeightArb - commentId: F:OpenTK.Graphics.Wgl.All.MaxPbufferHeightArb - id: MaxPbufferHeightArb - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: MaxPbufferHeightArb - nameWithType: All.MaxPbufferHeightArb - fullName: OpenTK.Graphics.Wgl.All.MaxPbufferHeightArb - type: Field - source: - id: MaxPbufferHeightArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 144 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: MaxPbufferHeightArb = 8240 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.MaxPbufferHeightExt - commentId: F:OpenTK.Graphics.Wgl.All.MaxPbufferHeightExt - id: MaxPbufferHeightExt - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: MaxPbufferHeightExt - nameWithType: All.MaxPbufferHeightExt - fullName: OpenTK.Graphics.Wgl.All.MaxPbufferHeightExt - type: Field - source: - id: MaxPbufferHeightExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 145 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: MaxPbufferHeightExt = 8240 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.OptimalPbufferWidthExt - commentId: F:OpenTK.Graphics.Wgl.All.OptimalPbufferWidthExt - id: OptimalPbufferWidthExt - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: OptimalPbufferWidthExt - nameWithType: All.OptimalPbufferWidthExt - fullName: OpenTK.Graphics.Wgl.All.OptimalPbufferWidthExt - type: Field - source: - id: OptimalPbufferWidthExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 146 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: OptimalPbufferWidthExt = 8241 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.OptimalPbufferHeightExt - commentId: F:OpenTK.Graphics.Wgl.All.OptimalPbufferHeightExt - id: OptimalPbufferHeightExt - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: OptimalPbufferHeightExt - nameWithType: All.OptimalPbufferHeightExt - fullName: OpenTK.Graphics.Wgl.All.OptimalPbufferHeightExt - type: Field - source: - id: OptimalPbufferHeightExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 147 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: OptimalPbufferHeightExt = 8242 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.PbufferLargestArb - commentId: F:OpenTK.Graphics.Wgl.All.PbufferLargestArb - id: PbufferLargestArb - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: PbufferLargestArb - nameWithType: All.PbufferLargestArb - fullName: OpenTK.Graphics.Wgl.All.PbufferLargestArb - type: Field - source: - id: PbufferLargestArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 148 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: PbufferLargestArb = 8243 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.PbufferLargestExt - commentId: F:OpenTK.Graphics.Wgl.All.PbufferLargestExt - id: PbufferLargestExt - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: PbufferLargestExt - nameWithType: All.PbufferLargestExt - fullName: OpenTK.Graphics.Wgl.All.PbufferLargestExt - type: Field - source: - id: PbufferLargestExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 149 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: PbufferLargestExt = 8243 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.PbufferWidthArb - commentId: F:OpenTK.Graphics.Wgl.All.PbufferWidthArb - id: PbufferWidthArb - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: PbufferWidthArb - nameWithType: All.PbufferWidthArb - fullName: OpenTK.Graphics.Wgl.All.PbufferWidthArb - type: Field - source: - id: PbufferWidthArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 150 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: PbufferWidthArb = 8244 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.PbufferWidthExt - commentId: F:OpenTK.Graphics.Wgl.All.PbufferWidthExt - id: PbufferWidthExt - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: PbufferWidthExt - nameWithType: All.PbufferWidthExt - fullName: OpenTK.Graphics.Wgl.All.PbufferWidthExt - type: Field - source: - id: PbufferWidthExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 151 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: PbufferWidthExt = 8244 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.PbufferHeightArb - commentId: F:OpenTK.Graphics.Wgl.All.PbufferHeightArb - id: PbufferHeightArb - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: PbufferHeightArb - nameWithType: All.PbufferHeightArb - fullName: OpenTK.Graphics.Wgl.All.PbufferHeightArb - type: Field - source: - id: PbufferHeightArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 152 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: PbufferHeightArb = 8245 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.PbufferHeightExt - commentId: F:OpenTK.Graphics.Wgl.All.PbufferHeightExt - id: PbufferHeightExt - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: PbufferHeightExt - nameWithType: All.PbufferHeightExt - fullName: OpenTK.Graphics.Wgl.All.PbufferHeightExt - type: Field - source: - id: PbufferHeightExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 153 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: PbufferHeightExt = 8245 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.PbufferLostArb - commentId: F:OpenTK.Graphics.Wgl.All.PbufferLostArb - id: PbufferLostArb - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: PbufferLostArb - nameWithType: All.PbufferLostArb - fullName: OpenTK.Graphics.Wgl.All.PbufferLostArb - type: Field - source: - id: PbufferLostArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 154 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: PbufferLostArb = 8246 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.TransparentRedValueArb - commentId: F:OpenTK.Graphics.Wgl.All.TransparentRedValueArb - id: TransparentRedValueArb - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: TransparentRedValueArb - nameWithType: All.TransparentRedValueArb - fullName: OpenTK.Graphics.Wgl.All.TransparentRedValueArb - type: Field - source: - id: TransparentRedValueArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 155 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: TransparentRedValueArb = 8247 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.TransparentGreenValueArb - commentId: F:OpenTK.Graphics.Wgl.All.TransparentGreenValueArb - id: TransparentGreenValueArb - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: TransparentGreenValueArb - nameWithType: All.TransparentGreenValueArb - fullName: OpenTK.Graphics.Wgl.All.TransparentGreenValueArb - type: Field - source: - id: TransparentGreenValueArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 156 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: TransparentGreenValueArb = 8248 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.TransparentBlueValueArb - commentId: F:OpenTK.Graphics.Wgl.All.TransparentBlueValueArb - id: TransparentBlueValueArb - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: TransparentBlueValueArb - nameWithType: All.TransparentBlueValueArb - fullName: OpenTK.Graphics.Wgl.All.TransparentBlueValueArb - type: Field - source: - id: TransparentBlueValueArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 157 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: TransparentBlueValueArb = 8249 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.TransparentAlphaValueArb - commentId: F:OpenTK.Graphics.Wgl.All.TransparentAlphaValueArb - id: TransparentAlphaValueArb - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: TransparentAlphaValueArb - nameWithType: All.TransparentAlphaValueArb - fullName: OpenTK.Graphics.Wgl.All.TransparentAlphaValueArb - type: Field - source: - id: TransparentAlphaValueArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 158 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: TransparentAlphaValueArb = 8250 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.TransparentIndexValueArb - commentId: F:OpenTK.Graphics.Wgl.All.TransparentIndexValueArb - id: TransparentIndexValueArb - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: TransparentIndexValueArb - nameWithType: All.TransparentIndexValueArb - fullName: OpenTK.Graphics.Wgl.All.TransparentIndexValueArb - type: Field - source: - id: TransparentIndexValueArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 159 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: TransparentIndexValueArb = 8251 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.DepthFloatExt - commentId: F:OpenTK.Graphics.Wgl.All.DepthFloatExt - id: DepthFloatExt - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: DepthFloatExt - nameWithType: All.DepthFloatExt - fullName: OpenTK.Graphics.Wgl.All.DepthFloatExt - type: Field - source: - id: DepthFloatExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 160 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: DepthFloatExt = 8256 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.SampleBuffersArb - commentId: F:OpenTK.Graphics.Wgl.All.SampleBuffersArb - id: SampleBuffersArb - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: SampleBuffersArb - nameWithType: All.SampleBuffersArb - fullName: OpenTK.Graphics.Wgl.All.SampleBuffersArb - type: Field - source: - id: SampleBuffersArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 161 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: SampleBuffersArb = 8257 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.SampleBuffersExt - commentId: F:OpenTK.Graphics.Wgl.All.SampleBuffersExt - id: SampleBuffersExt - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: SampleBuffersExt - nameWithType: All.SampleBuffersExt - fullName: OpenTK.Graphics.Wgl.All.SampleBuffersExt - type: Field - source: - id: SampleBuffersExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 162 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: SampleBuffersExt = 8257 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.CoverageSamplesNv - commentId: F:OpenTK.Graphics.Wgl.All.CoverageSamplesNv - id: CoverageSamplesNv - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: CoverageSamplesNv - nameWithType: All.CoverageSamplesNv - fullName: OpenTK.Graphics.Wgl.All.CoverageSamplesNv - type: Field - source: - id: CoverageSamplesNv - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 163 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: CoverageSamplesNv = 8258 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.SamplesArb - commentId: F:OpenTK.Graphics.Wgl.All.SamplesArb - id: SamplesArb - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: SamplesArb - nameWithType: All.SamplesArb - fullName: OpenTK.Graphics.Wgl.All.SamplesArb - type: Field - source: - id: SamplesArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 164 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: SamplesArb = 8258 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.SamplesExt - commentId: F:OpenTK.Graphics.Wgl.All.SamplesExt - id: SamplesExt - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: SamplesExt - nameWithType: All.SamplesExt - fullName: OpenTK.Graphics.Wgl.All.SamplesExt - type: Field - source: - id: SamplesExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 165 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: SamplesExt = 8258 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.ErrorInvalidPixelTypeArb - commentId: F:OpenTK.Graphics.Wgl.All.ErrorInvalidPixelTypeArb - id: ErrorInvalidPixelTypeArb - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: ErrorInvalidPixelTypeArb - nameWithType: All.ErrorInvalidPixelTypeArb - fullName: OpenTK.Graphics.Wgl.All.ErrorInvalidPixelTypeArb - type: Field - source: - id: ErrorInvalidPixelTypeArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 166 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: ErrorInvalidPixelTypeArb = 8259 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.ErrorInvalidPixelTypeExt - commentId: F:OpenTK.Graphics.Wgl.All.ErrorInvalidPixelTypeExt - id: ErrorInvalidPixelTypeExt - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: ErrorInvalidPixelTypeExt - nameWithType: All.ErrorInvalidPixelTypeExt - fullName: OpenTK.Graphics.Wgl.All.ErrorInvalidPixelTypeExt - type: Field - source: - id: ErrorInvalidPixelTypeExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 167 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: ErrorInvalidPixelTypeExt = 8259 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.GenlockSourceMultiviewI3d - commentId: F:OpenTK.Graphics.Wgl.All.GenlockSourceMultiviewI3d - id: GenlockSourceMultiviewI3d - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: GenlockSourceMultiviewI3d - nameWithType: All.GenlockSourceMultiviewI3d - fullName: OpenTK.Graphics.Wgl.All.GenlockSourceMultiviewI3d - type: Field - source: - id: GenlockSourceMultiviewI3d - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 168 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: GenlockSourceMultiviewI3d = 8260 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.GenlockSourceExternalSyncI3d - commentId: F:OpenTK.Graphics.Wgl.All.GenlockSourceExternalSyncI3d - id: GenlockSourceExternalSyncI3d - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: GenlockSourceExternalSyncI3d - nameWithType: All.GenlockSourceExternalSyncI3d - fullName: OpenTK.Graphics.Wgl.All.GenlockSourceExternalSyncI3d - type: Field - source: - id: GenlockSourceExternalSyncI3d - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 169 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: GenlockSourceExternalSyncI3d = 8261 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.GenlockSourceExternalFieldI3d - commentId: F:OpenTK.Graphics.Wgl.All.GenlockSourceExternalFieldI3d - id: GenlockSourceExternalFieldI3d - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: GenlockSourceExternalFieldI3d - nameWithType: All.GenlockSourceExternalFieldI3d - fullName: OpenTK.Graphics.Wgl.All.GenlockSourceExternalFieldI3d - type: Field - source: - id: GenlockSourceExternalFieldI3d - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 170 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: GenlockSourceExternalFieldI3d = 8262 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.GenlockSourceExternalTtlI3d - commentId: F:OpenTK.Graphics.Wgl.All.GenlockSourceExternalTtlI3d - id: GenlockSourceExternalTtlI3d - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: GenlockSourceExternalTtlI3d - nameWithType: All.GenlockSourceExternalTtlI3d - fullName: OpenTK.Graphics.Wgl.All.GenlockSourceExternalTtlI3d - type: Field - source: - id: GenlockSourceExternalTtlI3d - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 171 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: GenlockSourceExternalTtlI3d = 8263 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.GenlockSourceDigitalSyncI3d - commentId: F:OpenTK.Graphics.Wgl.All.GenlockSourceDigitalSyncI3d - id: GenlockSourceDigitalSyncI3d - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: GenlockSourceDigitalSyncI3d - nameWithType: All.GenlockSourceDigitalSyncI3d - fullName: OpenTK.Graphics.Wgl.All.GenlockSourceDigitalSyncI3d - type: Field - source: - id: GenlockSourceDigitalSyncI3d - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 172 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: GenlockSourceDigitalSyncI3d = 8264 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.GenlockSourceDigitalFieldI3d - commentId: F:OpenTK.Graphics.Wgl.All.GenlockSourceDigitalFieldI3d - id: GenlockSourceDigitalFieldI3d - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: GenlockSourceDigitalFieldI3d - nameWithType: All.GenlockSourceDigitalFieldI3d - fullName: OpenTK.Graphics.Wgl.All.GenlockSourceDigitalFieldI3d - type: Field - source: - id: GenlockSourceDigitalFieldI3d - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 173 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: GenlockSourceDigitalFieldI3d = 8265 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.GenlockSourceEdgeFallingI3d - commentId: F:OpenTK.Graphics.Wgl.All.GenlockSourceEdgeFallingI3d - id: GenlockSourceEdgeFallingI3d - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: GenlockSourceEdgeFallingI3d - nameWithType: All.GenlockSourceEdgeFallingI3d - fullName: OpenTK.Graphics.Wgl.All.GenlockSourceEdgeFallingI3d - type: Field - source: - id: GenlockSourceEdgeFallingI3d - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 174 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: GenlockSourceEdgeFallingI3d = 8266 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.GenlockSourceEdgeRisingI3d - commentId: F:OpenTK.Graphics.Wgl.All.GenlockSourceEdgeRisingI3d - id: GenlockSourceEdgeRisingI3d - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: GenlockSourceEdgeRisingI3d - nameWithType: All.GenlockSourceEdgeRisingI3d - fullName: OpenTK.Graphics.Wgl.All.GenlockSourceEdgeRisingI3d - type: Field - source: - id: GenlockSourceEdgeRisingI3d - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 175 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: GenlockSourceEdgeRisingI3d = 8267 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.GenlockSourceEdgeBothI3d - commentId: F:OpenTK.Graphics.Wgl.All.GenlockSourceEdgeBothI3d - id: GenlockSourceEdgeBothI3d - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: GenlockSourceEdgeBothI3d - nameWithType: All.GenlockSourceEdgeBothI3d - fullName: OpenTK.Graphics.Wgl.All.GenlockSourceEdgeBothI3d - type: Field - source: - id: GenlockSourceEdgeBothI3d - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 176 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: GenlockSourceEdgeBothI3d = 8268 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.GammaTableSizeI3d - commentId: F:OpenTK.Graphics.Wgl.All.GammaTableSizeI3d - id: GammaTableSizeI3d - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: GammaTableSizeI3d - nameWithType: All.GammaTableSizeI3d - fullName: OpenTK.Graphics.Wgl.All.GammaTableSizeI3d - type: Field - source: - id: GammaTableSizeI3d - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 177 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: GammaTableSizeI3d = 8270 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.GammaExcludeDesktopI3d - commentId: F:OpenTK.Graphics.Wgl.All.GammaExcludeDesktopI3d - id: GammaExcludeDesktopI3d - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: GammaExcludeDesktopI3d - nameWithType: All.GammaExcludeDesktopI3d - fullName: OpenTK.Graphics.Wgl.All.GammaExcludeDesktopI3d - type: Field - source: - id: GammaExcludeDesktopI3d - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 178 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: GammaExcludeDesktopI3d = 8271 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.DigitalVideoCursorAlphaFramebufferI3d - commentId: F:OpenTK.Graphics.Wgl.All.DigitalVideoCursorAlphaFramebufferI3d - id: DigitalVideoCursorAlphaFramebufferI3d - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: DigitalVideoCursorAlphaFramebufferI3d - nameWithType: All.DigitalVideoCursorAlphaFramebufferI3d - fullName: OpenTK.Graphics.Wgl.All.DigitalVideoCursorAlphaFramebufferI3d - type: Field - source: - id: DigitalVideoCursorAlphaFramebufferI3d - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 179 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: DigitalVideoCursorAlphaFramebufferI3d = 8272 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.DigitalVideoCursorAlphaValueI3d - commentId: F:OpenTK.Graphics.Wgl.All.DigitalVideoCursorAlphaValueI3d - id: DigitalVideoCursorAlphaValueI3d - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: DigitalVideoCursorAlphaValueI3d - nameWithType: All.DigitalVideoCursorAlphaValueI3d - fullName: OpenTK.Graphics.Wgl.All.DigitalVideoCursorAlphaValueI3d - type: Field - source: - id: DigitalVideoCursorAlphaValueI3d - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 180 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: DigitalVideoCursorAlphaValueI3d = 8273 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.DigitalVideoCursorIncludedI3d - commentId: F:OpenTK.Graphics.Wgl.All.DigitalVideoCursorIncludedI3d - id: DigitalVideoCursorIncludedI3d - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: DigitalVideoCursorIncludedI3d - nameWithType: All.DigitalVideoCursorIncludedI3d - fullName: OpenTK.Graphics.Wgl.All.DigitalVideoCursorIncludedI3d - type: Field - source: - id: DigitalVideoCursorIncludedI3d - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 181 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: DigitalVideoCursorIncludedI3d = 8274 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.DigitalVideoGammaCorrectedI3d - commentId: F:OpenTK.Graphics.Wgl.All.DigitalVideoGammaCorrectedI3d - id: DigitalVideoGammaCorrectedI3d - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: DigitalVideoGammaCorrectedI3d - nameWithType: All.DigitalVideoGammaCorrectedI3d - fullName: OpenTK.Graphics.Wgl.All.DigitalVideoGammaCorrectedI3d - type: Field - source: - id: DigitalVideoGammaCorrectedI3d - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 182 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: DigitalVideoGammaCorrectedI3d = 8275 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.ErrorIncompatibleDeviceContextsArb - commentId: F:OpenTK.Graphics.Wgl.All.ErrorIncompatibleDeviceContextsArb - id: ErrorIncompatibleDeviceContextsArb - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: ErrorIncompatibleDeviceContextsArb - nameWithType: All.ErrorIncompatibleDeviceContextsArb - fullName: OpenTK.Graphics.Wgl.All.ErrorIncompatibleDeviceContextsArb - type: Field - source: - id: ErrorIncompatibleDeviceContextsArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 183 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: ErrorIncompatibleDeviceContextsArb = 8276 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.StereoEmitterEnable3dl - commentId: F:OpenTK.Graphics.Wgl.All.StereoEmitterEnable3dl - id: StereoEmitterEnable3dl - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: StereoEmitterEnable3dl - nameWithType: All.StereoEmitterEnable3dl - fullName: OpenTK.Graphics.Wgl.All.StereoEmitterEnable3dl - type: Field - source: - id: StereoEmitterEnable3dl - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 184 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: StereoEmitterEnable3dl = 8277 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.StereoEmitterDisable3dl - commentId: F:OpenTK.Graphics.Wgl.All.StereoEmitterDisable3dl - id: StereoEmitterDisable3dl - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: StereoEmitterDisable3dl - nameWithType: All.StereoEmitterDisable3dl - fullName: OpenTK.Graphics.Wgl.All.StereoEmitterDisable3dl - type: Field - source: - id: StereoEmitterDisable3dl - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 185 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: StereoEmitterDisable3dl = 8278 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.StereoPolarityNormal3dl - commentId: F:OpenTK.Graphics.Wgl.All.StereoPolarityNormal3dl - id: StereoPolarityNormal3dl - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: StereoPolarityNormal3dl - nameWithType: All.StereoPolarityNormal3dl - fullName: OpenTK.Graphics.Wgl.All.StereoPolarityNormal3dl - type: Field - source: - id: StereoPolarityNormal3dl - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 186 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: StereoPolarityNormal3dl = 8279 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.StereoPolarityInvert3dl - commentId: F:OpenTK.Graphics.Wgl.All.StereoPolarityInvert3dl - id: StereoPolarityInvert3dl - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: StereoPolarityInvert3dl - nameWithType: All.StereoPolarityInvert3dl - fullName: OpenTK.Graphics.Wgl.All.StereoPolarityInvert3dl - type: Field - source: - id: StereoPolarityInvert3dl - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 187 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: StereoPolarityInvert3dl = 8280 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.SampleBuffers3dfx - commentId: F:OpenTK.Graphics.Wgl.All.SampleBuffers3dfx - id: SampleBuffers3dfx - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: SampleBuffers3dfx - nameWithType: All.SampleBuffers3dfx - fullName: OpenTK.Graphics.Wgl.All.SampleBuffers3dfx - type: Field - source: - id: SampleBuffers3dfx - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 188 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: SampleBuffers3dfx = 8288 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.Samples3dfx - commentId: F:OpenTK.Graphics.Wgl.All.Samples3dfx - id: Samples3dfx - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: Samples3dfx - nameWithType: All.Samples3dfx - fullName: OpenTK.Graphics.Wgl.All.Samples3dfx - type: Field - source: - id: Samples3dfx - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 189 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: Samples3dfx = 8289 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.BindToTextureRgbArb - commentId: F:OpenTK.Graphics.Wgl.All.BindToTextureRgbArb - id: BindToTextureRgbArb - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: BindToTextureRgbArb - nameWithType: All.BindToTextureRgbArb - fullName: OpenTK.Graphics.Wgl.All.BindToTextureRgbArb - type: Field - source: - id: BindToTextureRgbArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 190 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: BindToTextureRgbArb = 8304 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.BindToTextureRgbaArb - commentId: F:OpenTK.Graphics.Wgl.All.BindToTextureRgbaArb - id: BindToTextureRgbaArb - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: BindToTextureRgbaArb - nameWithType: All.BindToTextureRgbaArb - fullName: OpenTK.Graphics.Wgl.All.BindToTextureRgbaArb - type: Field - source: - id: BindToTextureRgbaArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 191 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: BindToTextureRgbaArb = 8305 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.TextureFormatArb - commentId: F:OpenTK.Graphics.Wgl.All.TextureFormatArb - id: TextureFormatArb - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: TextureFormatArb - nameWithType: All.TextureFormatArb - fullName: OpenTK.Graphics.Wgl.All.TextureFormatArb - type: Field - source: - id: TextureFormatArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 192 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: TextureFormatArb = 8306 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.TextureTargetArb - commentId: F:OpenTK.Graphics.Wgl.All.TextureTargetArb - id: TextureTargetArb - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: TextureTargetArb - nameWithType: All.TextureTargetArb - fullName: OpenTK.Graphics.Wgl.All.TextureTargetArb - type: Field - source: - id: TextureTargetArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 193 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: TextureTargetArb = 8307 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.MipmapTextureArb - commentId: F:OpenTK.Graphics.Wgl.All.MipmapTextureArb - id: MipmapTextureArb - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: MipmapTextureArb - nameWithType: All.MipmapTextureArb - fullName: OpenTK.Graphics.Wgl.All.MipmapTextureArb - type: Field - source: - id: MipmapTextureArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 194 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: MipmapTextureArb = 8308 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.TextureRgbArb - commentId: F:OpenTK.Graphics.Wgl.All.TextureRgbArb - id: TextureRgbArb - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: TextureRgbArb - nameWithType: All.TextureRgbArb - fullName: OpenTK.Graphics.Wgl.All.TextureRgbArb - type: Field - source: - id: TextureRgbArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 195 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: TextureRgbArb = 8309 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.TextureRgbaArb - commentId: F:OpenTK.Graphics.Wgl.All.TextureRgbaArb - id: TextureRgbaArb - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: TextureRgbaArb - nameWithType: All.TextureRgbaArb - fullName: OpenTK.Graphics.Wgl.All.TextureRgbaArb - type: Field - source: - id: TextureRgbaArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 196 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: TextureRgbaArb = 8310 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.NoTextureArb - commentId: F:OpenTK.Graphics.Wgl.All.NoTextureArb - id: NoTextureArb - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: NoTextureArb - nameWithType: All.NoTextureArb - fullName: OpenTK.Graphics.Wgl.All.NoTextureArb - type: Field - source: - id: NoTextureArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 197 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: NoTextureArb = 8311 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.TextureCubeMapArb - commentId: F:OpenTK.Graphics.Wgl.All.TextureCubeMapArb - id: TextureCubeMapArb - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: TextureCubeMapArb - nameWithType: All.TextureCubeMapArb - fullName: OpenTK.Graphics.Wgl.All.TextureCubeMapArb - type: Field - source: - id: TextureCubeMapArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 198 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: TextureCubeMapArb = 8312 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.Texture1dArb - commentId: F:OpenTK.Graphics.Wgl.All.Texture1dArb - id: Texture1dArb - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: Texture1dArb - nameWithType: All.Texture1dArb - fullName: OpenTK.Graphics.Wgl.All.Texture1dArb - type: Field - source: - id: Texture1dArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 199 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: Texture1dArb = 8313 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.Texture2dArb - commentId: F:OpenTK.Graphics.Wgl.All.Texture2dArb - id: Texture2dArb - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: Texture2dArb - nameWithType: All.Texture2dArb - fullName: OpenTK.Graphics.Wgl.All.Texture2dArb - type: Field - source: - id: Texture2dArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 200 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: Texture2dArb = 8314 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.MipmapLevelArb - commentId: F:OpenTK.Graphics.Wgl.All.MipmapLevelArb - id: MipmapLevelArb - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: MipmapLevelArb - nameWithType: All.MipmapLevelArb - fullName: OpenTK.Graphics.Wgl.All.MipmapLevelArb - type: Field - source: - id: MipmapLevelArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 201 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: MipmapLevelArb = 8315 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.CubeMapFaceArb - commentId: F:OpenTK.Graphics.Wgl.All.CubeMapFaceArb - id: CubeMapFaceArb - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: CubeMapFaceArb - nameWithType: All.CubeMapFaceArb - fullName: OpenTK.Graphics.Wgl.All.CubeMapFaceArb - type: Field - source: - id: CubeMapFaceArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 202 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: CubeMapFaceArb = 8316 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.TextureCubeMapPositiveXArb - commentId: F:OpenTK.Graphics.Wgl.All.TextureCubeMapPositiveXArb - id: TextureCubeMapPositiveXArb - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: TextureCubeMapPositiveXArb - nameWithType: All.TextureCubeMapPositiveXArb - fullName: OpenTK.Graphics.Wgl.All.TextureCubeMapPositiveXArb - type: Field - source: - id: TextureCubeMapPositiveXArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 203 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: TextureCubeMapPositiveXArb = 8317 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.TextureCubeMapNegativeXArb - commentId: F:OpenTK.Graphics.Wgl.All.TextureCubeMapNegativeXArb - id: TextureCubeMapNegativeXArb - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: TextureCubeMapNegativeXArb - nameWithType: All.TextureCubeMapNegativeXArb - fullName: OpenTK.Graphics.Wgl.All.TextureCubeMapNegativeXArb - type: Field - source: - id: TextureCubeMapNegativeXArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 204 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: TextureCubeMapNegativeXArb = 8318 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.TextureCubeMapPositiveYArb - commentId: F:OpenTK.Graphics.Wgl.All.TextureCubeMapPositiveYArb - id: TextureCubeMapPositiveYArb - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: TextureCubeMapPositiveYArb - nameWithType: All.TextureCubeMapPositiveYArb - fullName: OpenTK.Graphics.Wgl.All.TextureCubeMapPositiveYArb - type: Field - source: - id: TextureCubeMapPositiveYArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 205 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: TextureCubeMapPositiveYArb = 8319 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.TextureCubeMapNegativeYArb - commentId: F:OpenTK.Graphics.Wgl.All.TextureCubeMapNegativeYArb - id: TextureCubeMapNegativeYArb - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: TextureCubeMapNegativeYArb - nameWithType: All.TextureCubeMapNegativeYArb - fullName: OpenTK.Graphics.Wgl.All.TextureCubeMapNegativeYArb - type: Field - source: - id: TextureCubeMapNegativeYArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 206 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: TextureCubeMapNegativeYArb = 8320 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.TextureCubeMapPositiveZArb - commentId: F:OpenTK.Graphics.Wgl.All.TextureCubeMapPositiveZArb - id: TextureCubeMapPositiveZArb - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: TextureCubeMapPositiveZArb - nameWithType: All.TextureCubeMapPositiveZArb - fullName: OpenTK.Graphics.Wgl.All.TextureCubeMapPositiveZArb - type: Field - source: - id: TextureCubeMapPositiveZArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 207 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: TextureCubeMapPositiveZArb = 8321 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.TextureCubeMapNegativeZArb - commentId: F:OpenTK.Graphics.Wgl.All.TextureCubeMapNegativeZArb - id: TextureCubeMapNegativeZArb - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: TextureCubeMapNegativeZArb - nameWithType: All.TextureCubeMapNegativeZArb - fullName: OpenTK.Graphics.Wgl.All.TextureCubeMapNegativeZArb - type: Field - source: - id: TextureCubeMapNegativeZArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 208 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: TextureCubeMapNegativeZArb = 8322 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.FrontLeftArb - commentId: F:OpenTK.Graphics.Wgl.All.FrontLeftArb - id: FrontLeftArb - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: FrontLeftArb - nameWithType: All.FrontLeftArb - fullName: OpenTK.Graphics.Wgl.All.FrontLeftArb - type: Field - source: - id: FrontLeftArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 209 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: FrontLeftArb = 8323 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.FrontRightArb - commentId: F:OpenTK.Graphics.Wgl.All.FrontRightArb - id: FrontRightArb - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: FrontRightArb - nameWithType: All.FrontRightArb - fullName: OpenTK.Graphics.Wgl.All.FrontRightArb - type: Field - source: - id: FrontRightArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 210 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: FrontRightArb = 8324 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.BackLeftArb - commentId: F:OpenTK.Graphics.Wgl.All.BackLeftArb - id: BackLeftArb - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: BackLeftArb - nameWithType: All.BackLeftArb - fullName: OpenTK.Graphics.Wgl.All.BackLeftArb - type: Field - source: - id: BackLeftArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 211 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: BackLeftArb = 8325 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.BackRightArb - commentId: F:OpenTK.Graphics.Wgl.All.BackRightArb - id: BackRightArb - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: BackRightArb - nameWithType: All.BackRightArb - fullName: OpenTK.Graphics.Wgl.All.BackRightArb - type: Field - source: - id: BackRightArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 212 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: BackRightArb = 8326 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.Aux0Arb - commentId: F:OpenTK.Graphics.Wgl.All.Aux0Arb - id: Aux0Arb - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: Aux0Arb - nameWithType: All.Aux0Arb - fullName: OpenTK.Graphics.Wgl.All.Aux0Arb - type: Field - source: - id: Aux0Arb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 213 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: Aux0Arb = 8327 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.Aux1Arb - commentId: F:OpenTK.Graphics.Wgl.All.Aux1Arb - id: Aux1Arb - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: Aux1Arb - nameWithType: All.Aux1Arb - fullName: OpenTK.Graphics.Wgl.All.Aux1Arb - type: Field - source: - id: Aux1Arb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 214 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: Aux1Arb = 8328 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.Aux2Arb - commentId: F:OpenTK.Graphics.Wgl.All.Aux2Arb - id: Aux2Arb - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: Aux2Arb - nameWithType: All.Aux2Arb - fullName: OpenTK.Graphics.Wgl.All.Aux2Arb - type: Field - source: - id: Aux2Arb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 215 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: Aux2Arb = 8329 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.Aux3Arb - commentId: F:OpenTK.Graphics.Wgl.All.Aux3Arb - id: Aux3Arb - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: Aux3Arb - nameWithType: All.Aux3Arb - fullName: OpenTK.Graphics.Wgl.All.Aux3Arb - type: Field - source: - id: Aux3Arb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 216 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: Aux3Arb = 8330 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.Aux4Arb - commentId: F:OpenTK.Graphics.Wgl.All.Aux4Arb - id: Aux4Arb - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: Aux4Arb - nameWithType: All.Aux4Arb - fullName: OpenTK.Graphics.Wgl.All.Aux4Arb - type: Field - source: - id: Aux4Arb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 217 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: Aux4Arb = 8331 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.Aux5Arb - commentId: F:OpenTK.Graphics.Wgl.All.Aux5Arb - id: Aux5Arb - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: Aux5Arb - nameWithType: All.Aux5Arb - fullName: OpenTK.Graphics.Wgl.All.Aux5Arb - type: Field - source: - id: Aux5Arb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 218 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: Aux5Arb = 8332 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.Aux6Arb - commentId: F:OpenTK.Graphics.Wgl.All.Aux6Arb - id: Aux6Arb - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: Aux6Arb - nameWithType: All.Aux6Arb - fullName: OpenTK.Graphics.Wgl.All.Aux6Arb - type: Field - source: - id: Aux6Arb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 219 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: Aux6Arb = 8333 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.Aux7Arb - commentId: F:OpenTK.Graphics.Wgl.All.Aux7Arb - id: Aux7Arb - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: Aux7Arb - nameWithType: All.Aux7Arb - fullName: OpenTK.Graphics.Wgl.All.Aux7Arb - type: Field - source: - id: Aux7Arb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 220 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: Aux7Arb = 8334 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.Aux8Arb - commentId: F:OpenTK.Graphics.Wgl.All.Aux8Arb - id: Aux8Arb - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: Aux8Arb - nameWithType: All.Aux8Arb - fullName: OpenTK.Graphics.Wgl.All.Aux8Arb - type: Field - source: - id: Aux8Arb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 221 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: Aux8Arb = 8335 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.Aux9Arb - commentId: F:OpenTK.Graphics.Wgl.All.Aux9Arb - id: Aux9Arb - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: Aux9Arb - nameWithType: All.Aux9Arb - fullName: OpenTK.Graphics.Wgl.All.Aux9Arb - type: Field - source: - id: Aux9Arb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 222 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: Aux9Arb = 8336 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.ContextMajorVersionArb - commentId: F:OpenTK.Graphics.Wgl.All.ContextMajorVersionArb - id: ContextMajorVersionArb - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: ContextMajorVersionArb - nameWithType: All.ContextMajorVersionArb - fullName: OpenTK.Graphics.Wgl.All.ContextMajorVersionArb - type: Field - source: - id: ContextMajorVersionArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 223 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: ContextMajorVersionArb = 8337 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.ContextMinorVersionArb - commentId: F:OpenTK.Graphics.Wgl.All.ContextMinorVersionArb - id: ContextMinorVersionArb - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: ContextMinorVersionArb - nameWithType: All.ContextMinorVersionArb - fullName: OpenTK.Graphics.Wgl.All.ContextMinorVersionArb - type: Field - source: - id: ContextMinorVersionArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 224 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: ContextMinorVersionArb = 8338 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.ContextLayerPlaneArb - commentId: F:OpenTK.Graphics.Wgl.All.ContextLayerPlaneArb - id: ContextLayerPlaneArb - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: ContextLayerPlaneArb - nameWithType: All.ContextLayerPlaneArb - fullName: OpenTK.Graphics.Wgl.All.ContextLayerPlaneArb - type: Field - source: - id: ContextLayerPlaneArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 225 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: ContextLayerPlaneArb = 8339 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.ContextFlagsArb - commentId: F:OpenTK.Graphics.Wgl.All.ContextFlagsArb - id: ContextFlagsArb - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: ContextFlagsArb - nameWithType: All.ContextFlagsArb - fullName: OpenTK.Graphics.Wgl.All.ContextFlagsArb - type: Field - source: - id: ContextFlagsArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 226 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: ContextFlagsArb = 8340 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.ErrorInvalidVersionArb - commentId: F:OpenTK.Graphics.Wgl.All.ErrorInvalidVersionArb - id: ErrorInvalidVersionArb - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: ErrorInvalidVersionArb - nameWithType: All.ErrorInvalidVersionArb - fullName: OpenTK.Graphics.Wgl.All.ErrorInvalidVersionArb - type: Field - source: - id: ErrorInvalidVersionArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 227 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: ErrorInvalidVersionArb = 8341 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.ErrorInvalidProfileArb - commentId: F:OpenTK.Graphics.Wgl.All.ErrorInvalidProfileArb - id: ErrorInvalidProfileArb - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: ErrorInvalidProfileArb - nameWithType: All.ErrorInvalidProfileArb - fullName: OpenTK.Graphics.Wgl.All.ErrorInvalidProfileArb - type: Field - source: - id: ErrorInvalidProfileArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 228 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: ErrorInvalidProfileArb = 8342 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.ContextReleaseBehaviorArb - commentId: F:OpenTK.Graphics.Wgl.All.ContextReleaseBehaviorArb - id: ContextReleaseBehaviorArb - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: ContextReleaseBehaviorArb - nameWithType: All.ContextReleaseBehaviorArb - fullName: OpenTK.Graphics.Wgl.All.ContextReleaseBehaviorArb - type: Field - source: - id: ContextReleaseBehaviorArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 229 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: ContextReleaseBehaviorArb = 8343 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.ContextReleaseBehaviorFlushArb - commentId: F:OpenTK.Graphics.Wgl.All.ContextReleaseBehaviorFlushArb - id: ContextReleaseBehaviorFlushArb - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: ContextReleaseBehaviorFlushArb - nameWithType: All.ContextReleaseBehaviorFlushArb - fullName: OpenTK.Graphics.Wgl.All.ContextReleaseBehaviorFlushArb - type: Field - source: - id: ContextReleaseBehaviorFlushArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 230 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: ContextReleaseBehaviorFlushArb = 8344 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.BindToTextureRectangleRgbNv - commentId: F:OpenTK.Graphics.Wgl.All.BindToTextureRectangleRgbNv - id: BindToTextureRectangleRgbNv - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: BindToTextureRectangleRgbNv - nameWithType: All.BindToTextureRectangleRgbNv - fullName: OpenTK.Graphics.Wgl.All.BindToTextureRectangleRgbNv - type: Field - source: - id: BindToTextureRectangleRgbNv - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 231 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: BindToTextureRectangleRgbNv = 8352 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.BindToTextureRectangleRgbaNv - commentId: F:OpenTK.Graphics.Wgl.All.BindToTextureRectangleRgbaNv - id: BindToTextureRectangleRgbaNv - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: BindToTextureRectangleRgbaNv - nameWithType: All.BindToTextureRectangleRgbaNv - fullName: OpenTK.Graphics.Wgl.All.BindToTextureRectangleRgbaNv - type: Field - source: - id: BindToTextureRectangleRgbaNv - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 232 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: BindToTextureRectangleRgbaNv = 8353 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.TextureRectangleNv - commentId: F:OpenTK.Graphics.Wgl.All.TextureRectangleNv - id: TextureRectangleNv - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: TextureRectangleNv - nameWithType: All.TextureRectangleNv - fullName: OpenTK.Graphics.Wgl.All.TextureRectangleNv - type: Field - source: - id: TextureRectangleNv - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 233 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: TextureRectangleNv = 8354 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.BindToTextureDepthNv - commentId: F:OpenTK.Graphics.Wgl.All.BindToTextureDepthNv - id: BindToTextureDepthNv - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: BindToTextureDepthNv - nameWithType: All.BindToTextureDepthNv - fullName: OpenTK.Graphics.Wgl.All.BindToTextureDepthNv - type: Field - source: - id: BindToTextureDepthNv - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 234 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: BindToTextureDepthNv = 8355 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.BindToTextureRectangleDepthNv - commentId: F:OpenTK.Graphics.Wgl.All.BindToTextureRectangleDepthNv - id: BindToTextureRectangleDepthNv - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: BindToTextureRectangleDepthNv - nameWithType: All.BindToTextureRectangleDepthNv - fullName: OpenTK.Graphics.Wgl.All.BindToTextureRectangleDepthNv - type: Field - source: - id: BindToTextureRectangleDepthNv - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 235 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: BindToTextureRectangleDepthNv = 8356 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.DepthTextureFormatNv - commentId: F:OpenTK.Graphics.Wgl.All.DepthTextureFormatNv - id: DepthTextureFormatNv - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: DepthTextureFormatNv - nameWithType: All.DepthTextureFormatNv - fullName: OpenTK.Graphics.Wgl.All.DepthTextureFormatNv - type: Field - source: - id: DepthTextureFormatNv - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 236 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: DepthTextureFormatNv = 8357 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.TextureDepthComponentNv - commentId: F:OpenTK.Graphics.Wgl.All.TextureDepthComponentNv - id: TextureDepthComponentNv - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: TextureDepthComponentNv - nameWithType: All.TextureDepthComponentNv - fullName: OpenTK.Graphics.Wgl.All.TextureDepthComponentNv - type: Field - source: - id: TextureDepthComponentNv - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 237 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: TextureDepthComponentNv = 8358 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.DepthComponentNv - commentId: F:OpenTK.Graphics.Wgl.All.DepthComponentNv - id: DepthComponentNv - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: DepthComponentNv - nameWithType: All.DepthComponentNv - fullName: OpenTK.Graphics.Wgl.All.DepthComponentNv - type: Field - source: - id: DepthComponentNv - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 238 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: DepthComponentNv = 8359 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.TypeRgbaUnsignedFloatExt - commentId: F:OpenTK.Graphics.Wgl.All.TypeRgbaUnsignedFloatExt - id: TypeRgbaUnsignedFloatExt - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: TypeRgbaUnsignedFloatExt - nameWithType: All.TypeRgbaUnsignedFloatExt - fullName: OpenTK.Graphics.Wgl.All.TypeRgbaUnsignedFloatExt - type: Field - source: - id: TypeRgbaUnsignedFloatExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 239 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: TypeRgbaUnsignedFloatExt = 8360 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.FramebufferSrgbCapableArb - commentId: F:OpenTK.Graphics.Wgl.All.FramebufferSrgbCapableArb - id: FramebufferSrgbCapableArb - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: FramebufferSrgbCapableArb - nameWithType: All.FramebufferSrgbCapableArb - fullName: OpenTK.Graphics.Wgl.All.FramebufferSrgbCapableArb - type: Field - source: - id: FramebufferSrgbCapableArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 240 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: FramebufferSrgbCapableArb = 8361 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.FramebufferSrgbCapableExt - commentId: F:OpenTK.Graphics.Wgl.All.FramebufferSrgbCapableExt - id: FramebufferSrgbCapableExt - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: FramebufferSrgbCapableExt - nameWithType: All.FramebufferSrgbCapableExt - fullName: OpenTK.Graphics.Wgl.All.FramebufferSrgbCapableExt - type: Field - source: - id: FramebufferSrgbCapableExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 241 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: FramebufferSrgbCapableExt = 8361 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.ContextMultigpuAttribNv - commentId: F:OpenTK.Graphics.Wgl.All.ContextMultigpuAttribNv - id: ContextMultigpuAttribNv - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: ContextMultigpuAttribNv - nameWithType: All.ContextMultigpuAttribNv - fullName: OpenTK.Graphics.Wgl.All.ContextMultigpuAttribNv - type: Field - source: - id: ContextMultigpuAttribNv - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 242 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: ContextMultigpuAttribNv = 8362 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.ContextMultigpuAttribSingleNv - commentId: F:OpenTK.Graphics.Wgl.All.ContextMultigpuAttribSingleNv - id: ContextMultigpuAttribSingleNv - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: ContextMultigpuAttribSingleNv - nameWithType: All.ContextMultigpuAttribSingleNv - fullName: OpenTK.Graphics.Wgl.All.ContextMultigpuAttribSingleNv - type: Field - source: - id: ContextMultigpuAttribSingleNv - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 243 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: ContextMultigpuAttribSingleNv = 8363 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.ContextMultigpuAttribAfrNv - commentId: F:OpenTK.Graphics.Wgl.All.ContextMultigpuAttribAfrNv - id: ContextMultigpuAttribAfrNv - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: ContextMultigpuAttribAfrNv - nameWithType: All.ContextMultigpuAttribAfrNv - fullName: OpenTK.Graphics.Wgl.All.ContextMultigpuAttribAfrNv - type: Field - source: - id: ContextMultigpuAttribAfrNv - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 244 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: ContextMultigpuAttribAfrNv = 8364 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.ContextMultigpuAttribMulticastNv - commentId: F:OpenTK.Graphics.Wgl.All.ContextMultigpuAttribMulticastNv - id: ContextMultigpuAttribMulticastNv - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: ContextMultigpuAttribMulticastNv - nameWithType: All.ContextMultigpuAttribMulticastNv - fullName: OpenTK.Graphics.Wgl.All.ContextMultigpuAttribMulticastNv - type: Field - source: - id: ContextMultigpuAttribMulticastNv - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 245 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: ContextMultigpuAttribMulticastNv = 8365 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.ContextMultigpuAttribMultiDisplayMulticastNv - commentId: F:OpenTK.Graphics.Wgl.All.ContextMultigpuAttribMultiDisplayMulticastNv - id: ContextMultigpuAttribMultiDisplayMulticastNv - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: ContextMultigpuAttribMultiDisplayMulticastNv - nameWithType: All.ContextMultigpuAttribMultiDisplayMulticastNv - fullName: OpenTK.Graphics.Wgl.All.ContextMultigpuAttribMultiDisplayMulticastNv - type: Field - source: - id: ContextMultigpuAttribMultiDisplayMulticastNv - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 246 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: ContextMultigpuAttribMultiDisplayMulticastNv = 8366 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.FloatComponentsNv - commentId: F:OpenTK.Graphics.Wgl.All.FloatComponentsNv - id: FloatComponentsNv - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: FloatComponentsNv - nameWithType: All.FloatComponentsNv - fullName: OpenTK.Graphics.Wgl.All.FloatComponentsNv - type: Field - source: - id: FloatComponentsNv - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 247 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: FloatComponentsNv = 8368 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.BindToTextureRectangleFloatRNv - commentId: F:OpenTK.Graphics.Wgl.All.BindToTextureRectangleFloatRNv - id: BindToTextureRectangleFloatRNv - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: BindToTextureRectangleFloatRNv - nameWithType: All.BindToTextureRectangleFloatRNv - fullName: OpenTK.Graphics.Wgl.All.BindToTextureRectangleFloatRNv - type: Field - source: - id: BindToTextureRectangleFloatRNv - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 248 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: BindToTextureRectangleFloatRNv = 8369 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.BindToTextureRectangleFloatRgNv - commentId: F:OpenTK.Graphics.Wgl.All.BindToTextureRectangleFloatRgNv - id: BindToTextureRectangleFloatRgNv - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: BindToTextureRectangleFloatRgNv - nameWithType: All.BindToTextureRectangleFloatRgNv - fullName: OpenTK.Graphics.Wgl.All.BindToTextureRectangleFloatRgNv - type: Field - source: - id: BindToTextureRectangleFloatRgNv - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 249 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: BindToTextureRectangleFloatRgNv = 8370 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.BindToTextureRectangleFloatRgbNv - commentId: F:OpenTK.Graphics.Wgl.All.BindToTextureRectangleFloatRgbNv - id: BindToTextureRectangleFloatRgbNv - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: BindToTextureRectangleFloatRgbNv - nameWithType: All.BindToTextureRectangleFloatRgbNv - fullName: OpenTK.Graphics.Wgl.All.BindToTextureRectangleFloatRgbNv - type: Field - source: - id: BindToTextureRectangleFloatRgbNv - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 250 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: BindToTextureRectangleFloatRgbNv = 8371 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.BindToTextureRectangleFloatRgbaNv - commentId: F:OpenTK.Graphics.Wgl.All.BindToTextureRectangleFloatRgbaNv - id: BindToTextureRectangleFloatRgbaNv - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: BindToTextureRectangleFloatRgbaNv - nameWithType: All.BindToTextureRectangleFloatRgbaNv - fullName: OpenTK.Graphics.Wgl.All.BindToTextureRectangleFloatRgbaNv - type: Field - source: - id: BindToTextureRectangleFloatRgbaNv - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 251 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: BindToTextureRectangleFloatRgbaNv = 8372 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.TextureFloatRNv - commentId: F:OpenTK.Graphics.Wgl.All.TextureFloatRNv - id: TextureFloatRNv - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: TextureFloatRNv - nameWithType: All.TextureFloatRNv - fullName: OpenTK.Graphics.Wgl.All.TextureFloatRNv - type: Field - source: - id: TextureFloatRNv - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 252 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: TextureFloatRNv = 8373 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.TextureFloatRgNv - commentId: F:OpenTK.Graphics.Wgl.All.TextureFloatRgNv - id: TextureFloatRgNv - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: TextureFloatRgNv - nameWithType: All.TextureFloatRgNv - fullName: OpenTK.Graphics.Wgl.All.TextureFloatRgNv - type: Field - source: - id: TextureFloatRgNv - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 253 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: TextureFloatRgNv = 8374 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.TextureFloatRgbNv - commentId: F:OpenTK.Graphics.Wgl.All.TextureFloatRgbNv - id: TextureFloatRgbNv - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: TextureFloatRgbNv - nameWithType: All.TextureFloatRgbNv - fullName: OpenTK.Graphics.Wgl.All.TextureFloatRgbNv - type: Field - source: - id: TextureFloatRgbNv - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 254 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: TextureFloatRgbNv = 8375 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.TextureFloatRgbaNv - commentId: F:OpenTK.Graphics.Wgl.All.TextureFloatRgbaNv - id: TextureFloatRgbaNv - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: TextureFloatRgbaNv - nameWithType: All.TextureFloatRgbaNv - fullName: OpenTK.Graphics.Wgl.All.TextureFloatRgbaNv - type: Field - source: - id: TextureFloatRgbaNv - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 255 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: TextureFloatRgbaNv = 8376 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.ColorSamplesNv - commentId: F:OpenTK.Graphics.Wgl.All.ColorSamplesNv - id: ColorSamplesNv - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: ColorSamplesNv - nameWithType: All.ColorSamplesNv - fullName: OpenTK.Graphics.Wgl.All.ColorSamplesNv - type: Field - source: - id: ColorSamplesNv - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 256 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: ColorSamplesNv = 8377 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.BindToVideoRgbNv - commentId: F:OpenTK.Graphics.Wgl.All.BindToVideoRgbNv - id: BindToVideoRgbNv - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: BindToVideoRgbNv - nameWithType: All.BindToVideoRgbNv - fullName: OpenTK.Graphics.Wgl.All.BindToVideoRgbNv - type: Field - source: - id: BindToVideoRgbNv - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 257 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: BindToVideoRgbNv = 8384 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.BindToVideoRgbaNv - commentId: F:OpenTK.Graphics.Wgl.All.BindToVideoRgbaNv - id: BindToVideoRgbaNv - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: BindToVideoRgbaNv - nameWithType: All.BindToVideoRgbaNv - fullName: OpenTK.Graphics.Wgl.All.BindToVideoRgbaNv - type: Field - source: - id: BindToVideoRgbaNv - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 258 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: BindToVideoRgbaNv = 8385 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.BindToVideoRgbAndDepthNv - commentId: F:OpenTK.Graphics.Wgl.All.BindToVideoRgbAndDepthNv - id: BindToVideoRgbAndDepthNv - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: BindToVideoRgbAndDepthNv - nameWithType: All.BindToVideoRgbAndDepthNv - fullName: OpenTK.Graphics.Wgl.All.BindToVideoRgbAndDepthNv - type: Field - source: - id: BindToVideoRgbAndDepthNv - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 259 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: BindToVideoRgbAndDepthNv = 8386 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.VideoOutColorNv - commentId: F:OpenTK.Graphics.Wgl.All.VideoOutColorNv - id: VideoOutColorNv - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: VideoOutColorNv - nameWithType: All.VideoOutColorNv - fullName: OpenTK.Graphics.Wgl.All.VideoOutColorNv - type: Field - source: - id: VideoOutColorNv - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 260 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: VideoOutColorNv = 8387 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.VideoOutAlphaNv - commentId: F:OpenTK.Graphics.Wgl.All.VideoOutAlphaNv - id: VideoOutAlphaNv - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: VideoOutAlphaNv - nameWithType: All.VideoOutAlphaNv - fullName: OpenTK.Graphics.Wgl.All.VideoOutAlphaNv - type: Field - source: - id: VideoOutAlphaNv - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 261 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: VideoOutAlphaNv = 8388 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.VideoOutDepthNv - commentId: F:OpenTK.Graphics.Wgl.All.VideoOutDepthNv - id: VideoOutDepthNv - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: VideoOutDepthNv - nameWithType: All.VideoOutDepthNv - fullName: OpenTK.Graphics.Wgl.All.VideoOutDepthNv - type: Field - source: - id: VideoOutDepthNv - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 262 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: VideoOutDepthNv = 8389 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.VideoOutColorAndAlphaNv - commentId: F:OpenTK.Graphics.Wgl.All.VideoOutColorAndAlphaNv - id: VideoOutColorAndAlphaNv - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: VideoOutColorAndAlphaNv - nameWithType: All.VideoOutColorAndAlphaNv - fullName: OpenTK.Graphics.Wgl.All.VideoOutColorAndAlphaNv - type: Field - source: - id: VideoOutColorAndAlphaNv - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 263 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: VideoOutColorAndAlphaNv = 8390 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.VideoOutColorAndDepthNv - commentId: F:OpenTK.Graphics.Wgl.All.VideoOutColorAndDepthNv - id: VideoOutColorAndDepthNv - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: VideoOutColorAndDepthNv - nameWithType: All.VideoOutColorAndDepthNv - fullName: OpenTK.Graphics.Wgl.All.VideoOutColorAndDepthNv - type: Field - source: - id: VideoOutColorAndDepthNv - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 264 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: VideoOutColorAndDepthNv = 8391 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.VideoOutFrame - commentId: F:OpenTK.Graphics.Wgl.All.VideoOutFrame - id: VideoOutFrame - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: VideoOutFrame - nameWithType: All.VideoOutFrame - fullName: OpenTK.Graphics.Wgl.All.VideoOutFrame - type: Field - source: - id: VideoOutFrame - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 265 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: VideoOutFrame = 8392 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.VideoOutField1 - commentId: F:OpenTK.Graphics.Wgl.All.VideoOutField1 - id: VideoOutField1 - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: VideoOutField1 - nameWithType: All.VideoOutField1 - fullName: OpenTK.Graphics.Wgl.All.VideoOutField1 - type: Field - source: - id: VideoOutField1 - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 266 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: VideoOutField1 = 8393 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.VideoOutField2 - commentId: F:OpenTK.Graphics.Wgl.All.VideoOutField2 - id: VideoOutField2 - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: VideoOutField2 - nameWithType: All.VideoOutField2 - fullName: OpenTK.Graphics.Wgl.All.VideoOutField2 - type: Field - source: - id: VideoOutField2 - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 267 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: VideoOutField2 = 8394 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.VideoOutStackedFields12 - commentId: F:OpenTK.Graphics.Wgl.All.VideoOutStackedFields12 - id: VideoOutStackedFields12 - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: VideoOutStackedFields12 - nameWithType: All.VideoOutStackedFields12 - fullName: OpenTK.Graphics.Wgl.All.VideoOutStackedFields12 - type: Field - source: - id: VideoOutStackedFields12 - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 268 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: VideoOutStackedFields12 = 8395 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.VideoOutStackedFields21 - commentId: F:OpenTK.Graphics.Wgl.All.VideoOutStackedFields21 - id: VideoOutStackedFields21 - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: VideoOutStackedFields21 - nameWithType: All.VideoOutStackedFields21 - fullName: OpenTK.Graphics.Wgl.All.VideoOutStackedFields21 - type: Field - source: - id: VideoOutStackedFields21 - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 269 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: VideoOutStackedFields21 = 8396 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.UniqueIdNv - commentId: F:OpenTK.Graphics.Wgl.All.UniqueIdNv - id: UniqueIdNv - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: UniqueIdNv - nameWithType: All.UniqueIdNv - fullName: OpenTK.Graphics.Wgl.All.UniqueIdNv - type: Field - source: - id: UniqueIdNv - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 270 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: UniqueIdNv = 8398 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.NumVideoCaptureSlotsNv - commentId: F:OpenTK.Graphics.Wgl.All.NumVideoCaptureSlotsNv - id: NumVideoCaptureSlotsNv - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: NumVideoCaptureSlotsNv - nameWithType: All.NumVideoCaptureSlotsNv - fullName: OpenTK.Graphics.Wgl.All.NumVideoCaptureSlotsNv - type: Field - source: - id: NumVideoCaptureSlotsNv - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 271 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: NumVideoCaptureSlotsNv = 8399 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.ErrorIncompatibleAffinityMasksNv - commentId: F:OpenTK.Graphics.Wgl.All.ErrorIncompatibleAffinityMasksNv - id: ErrorIncompatibleAffinityMasksNv - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: ErrorIncompatibleAffinityMasksNv - nameWithType: All.ErrorIncompatibleAffinityMasksNv - fullName: OpenTK.Graphics.Wgl.All.ErrorIncompatibleAffinityMasksNv - type: Field - source: - id: ErrorIncompatibleAffinityMasksNv - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 272 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: ErrorIncompatibleAffinityMasksNv = 8400 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.ErrorMissingAffinityMaskNv - commentId: F:OpenTK.Graphics.Wgl.All.ErrorMissingAffinityMaskNv - id: ErrorMissingAffinityMaskNv - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: ErrorMissingAffinityMaskNv - nameWithType: All.ErrorMissingAffinityMaskNv - fullName: OpenTK.Graphics.Wgl.All.ErrorMissingAffinityMaskNv - type: Field - source: - id: ErrorMissingAffinityMaskNv - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 273 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: ErrorMissingAffinityMaskNv = 8401 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.NumVideoSlotsNv - commentId: F:OpenTK.Graphics.Wgl.All.NumVideoSlotsNv - id: NumVideoSlotsNv - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: NumVideoSlotsNv - nameWithType: All.NumVideoSlotsNv - fullName: OpenTK.Graphics.Wgl.All.NumVideoSlotsNv - type: Field - source: - id: NumVideoSlotsNv - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 274 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: NumVideoSlotsNv = 8432 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.TypeRgbaFloatArb - commentId: F:OpenTK.Graphics.Wgl.All.TypeRgbaFloatArb - id: TypeRgbaFloatArb - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: TypeRgbaFloatArb - nameWithType: All.TypeRgbaFloatArb - fullName: OpenTK.Graphics.Wgl.All.TypeRgbaFloatArb - type: Field - source: - id: TypeRgbaFloatArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 275 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: TypeRgbaFloatArb = 8608 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.TypeRgbaFloatAti - commentId: F:OpenTK.Graphics.Wgl.All.TypeRgbaFloatAti - id: TypeRgbaFloatAti - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: TypeRgbaFloatAti - nameWithType: All.TypeRgbaFloatAti - fullName: OpenTK.Graphics.Wgl.All.TypeRgbaFloatAti - type: Field - source: - id: TypeRgbaFloatAti - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 276 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: TypeRgbaFloatAti = 8608 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.GpuFastestTargetGpusAmd - commentId: F:OpenTK.Graphics.Wgl.All.GpuFastestTargetGpusAmd - id: GpuFastestTargetGpusAmd - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: GpuFastestTargetGpusAmd - nameWithType: All.GpuFastestTargetGpusAmd - fullName: OpenTK.Graphics.Wgl.All.GpuFastestTargetGpusAmd - type: Field - source: - id: GpuFastestTargetGpusAmd - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 277 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: GpuFastestTargetGpusAmd = 8610 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.GpuRamAmd - commentId: F:OpenTK.Graphics.Wgl.All.GpuRamAmd - id: GpuRamAmd - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: GpuRamAmd - nameWithType: All.GpuRamAmd - fullName: OpenTK.Graphics.Wgl.All.GpuRamAmd - type: Field - source: - id: GpuRamAmd - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 278 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: GpuRamAmd = 8611 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.GpuClockAmd - commentId: F:OpenTK.Graphics.Wgl.All.GpuClockAmd - id: GpuClockAmd - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: GpuClockAmd - nameWithType: All.GpuClockAmd - fullName: OpenTK.Graphics.Wgl.All.GpuClockAmd - type: Field - source: - id: GpuClockAmd - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 279 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: GpuClockAmd = 8612 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.GpuNumPipesAmd - commentId: F:OpenTK.Graphics.Wgl.All.GpuNumPipesAmd - id: GpuNumPipesAmd - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: GpuNumPipesAmd - nameWithType: All.GpuNumPipesAmd - fullName: OpenTK.Graphics.Wgl.All.GpuNumPipesAmd - type: Field - source: - id: GpuNumPipesAmd - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 280 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: GpuNumPipesAmd = 8613 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.TextureRectangleAti - commentId: F:OpenTK.Graphics.Wgl.All.TextureRectangleAti - id: TextureRectangleAti - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: TextureRectangleAti - nameWithType: All.TextureRectangleAti - fullName: OpenTK.Graphics.Wgl.All.TextureRectangleAti - type: Field - source: - id: TextureRectangleAti - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 281 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: TextureRectangleAti = 8613 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.GpuNumSimdAmd - commentId: F:OpenTK.Graphics.Wgl.All.GpuNumSimdAmd - id: GpuNumSimdAmd - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: GpuNumSimdAmd - nameWithType: All.GpuNumSimdAmd - fullName: OpenTK.Graphics.Wgl.All.GpuNumSimdAmd - type: Field - source: - id: GpuNumSimdAmd - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 282 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: GpuNumSimdAmd = 8614 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.GpuNumRbAmd - commentId: F:OpenTK.Graphics.Wgl.All.GpuNumRbAmd - id: GpuNumRbAmd - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: GpuNumRbAmd - nameWithType: All.GpuNumRbAmd - fullName: OpenTK.Graphics.Wgl.All.GpuNumRbAmd - type: Field - source: - id: GpuNumRbAmd - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 283 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: GpuNumRbAmd = 8615 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.GpuNumSpiAmd - commentId: F:OpenTK.Graphics.Wgl.All.GpuNumSpiAmd - id: GpuNumSpiAmd - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: GpuNumSpiAmd - nameWithType: All.GpuNumSpiAmd - fullName: OpenTK.Graphics.Wgl.All.GpuNumSpiAmd - type: Field - source: - id: GpuNumSpiAmd - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 284 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: GpuNumSpiAmd = 8616 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.ColorspaceSrgbExt - commentId: F:OpenTK.Graphics.Wgl.All.ColorspaceSrgbExt - id: ColorspaceSrgbExt - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: ColorspaceSrgbExt - nameWithType: All.ColorspaceSrgbExt - fullName: OpenTK.Graphics.Wgl.All.ColorspaceSrgbExt - type: Field - source: - id: ColorspaceSrgbExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 285 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: ColorspaceSrgbExt = 12425 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.ColorspaceLinearExt - commentId: F:OpenTK.Graphics.Wgl.All.ColorspaceLinearExt - id: ColorspaceLinearExt - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: ColorspaceLinearExt - nameWithType: All.ColorspaceLinearExt - fullName: OpenTK.Graphics.Wgl.All.ColorspaceLinearExt - type: Field - source: - id: ColorspaceLinearExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 286 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: ColorspaceLinearExt = 12426 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.ColorspaceExt - commentId: F:OpenTK.Graphics.Wgl.All.ColorspaceExt - id: ColorspaceExt - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: ColorspaceExt - nameWithType: All.ColorspaceExt - fullName: OpenTK.Graphics.Wgl.All.ColorspaceExt - type: Field - source: - id: ColorspaceExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 287 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: ColorspaceExt = 12445 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.ContextOpenglNoErrorArb - commentId: F:OpenTK.Graphics.Wgl.All.ContextOpenglNoErrorArb - id: ContextOpenglNoErrorArb - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: ContextOpenglNoErrorArb - nameWithType: All.ContextOpenglNoErrorArb - fullName: OpenTK.Graphics.Wgl.All.ContextOpenglNoErrorArb - type: Field - source: - id: ContextOpenglNoErrorArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 288 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: ContextOpenglNoErrorArb = 12723 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.SwapOverlay14 - commentId: F:OpenTK.Graphics.Wgl.All.SwapOverlay14 - id: SwapOverlay14 - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: SwapOverlay14 - nameWithType: All.SwapOverlay14 - fullName: OpenTK.Graphics.Wgl.All.SwapOverlay14 - type: Field - source: - id: SwapOverlay14 - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 289 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: SwapOverlay14 = 16384 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.SwapOverlay15 - commentId: F:OpenTK.Graphics.Wgl.All.SwapOverlay15 - id: SwapOverlay15 - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: SwapOverlay15 - nameWithType: All.SwapOverlay15 - fullName: OpenTK.Graphics.Wgl.All.SwapOverlay15 - type: Field - source: - id: SwapOverlay15 - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 290 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: SwapOverlay15 = 32768 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.Texture3d - commentId: F:OpenTK.Graphics.Wgl.All.Texture3d - id: Texture3d - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: Texture3d - nameWithType: All.Texture3d - fullName: OpenTK.Graphics.Wgl.All.Texture3d - type: Field - source: - id: Texture3d - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 291 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: Texture3d = 32879 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.LoseContextOnResetArb - commentId: F:OpenTK.Graphics.Wgl.All.LoseContextOnResetArb - id: LoseContextOnResetArb - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: LoseContextOnResetArb - nameWithType: All.LoseContextOnResetArb - fullName: OpenTK.Graphics.Wgl.All.LoseContextOnResetArb - type: Field - source: - id: LoseContextOnResetArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 292 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: LoseContextOnResetArb = 33362 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.ContextResetNotificationStrategyArb - commentId: F:OpenTK.Graphics.Wgl.All.ContextResetNotificationStrategyArb - id: ContextResetNotificationStrategyArb - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: ContextResetNotificationStrategyArb - nameWithType: All.ContextResetNotificationStrategyArb - fullName: OpenTK.Graphics.Wgl.All.ContextResetNotificationStrategyArb - type: Field - source: - id: ContextResetNotificationStrategyArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 293 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: ContextResetNotificationStrategyArb = 33366 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.NoResetNotificationArb - commentId: F:OpenTK.Graphics.Wgl.All.NoResetNotificationArb - id: NoResetNotificationArb - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: NoResetNotificationArb - nameWithType: All.NoResetNotificationArb - fullName: OpenTK.Graphics.Wgl.All.NoResetNotificationArb - type: Field - source: - id: NoResetNotificationArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 294 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: NoResetNotificationArb = 33377 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.TextureRectangle - commentId: F:OpenTK.Graphics.Wgl.All.TextureRectangle - id: TextureRectangle - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: TextureRectangle - nameWithType: All.TextureRectangle - fullName: OpenTK.Graphics.Wgl.All.TextureRectangle - type: Field - source: - id: TextureRectangle - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 295 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: TextureRectangle = 34037 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.TextureCubeMap - commentId: F:OpenTK.Graphics.Wgl.All.TextureCubeMap - id: TextureCubeMap - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: TextureCubeMap - nameWithType: All.TextureCubeMap - fullName: OpenTK.Graphics.Wgl.All.TextureCubeMap - type: Field - source: - id: TextureCubeMap - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 296 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: TextureCubeMap = 34067 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.Renderbuffer - commentId: F:OpenTK.Graphics.Wgl.All.Renderbuffer - id: Renderbuffer - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: Renderbuffer - nameWithType: All.Renderbuffer - fullName: OpenTK.Graphics.Wgl.All.Renderbuffer - type: Field - source: - id: Renderbuffer - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 297 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: Renderbuffer = 36161 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.ContextProfileMaskArb - commentId: F:OpenTK.Graphics.Wgl.All.ContextProfileMaskArb - id: ContextProfileMaskArb - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: ContextProfileMaskArb - nameWithType: All.ContextProfileMaskArb - fullName: OpenTK.Graphics.Wgl.All.ContextProfileMaskArb - type: Field - source: - id: ContextProfileMaskArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 298 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: ContextProfileMaskArb = 37158 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.SwapUnderlay1 - commentId: F:OpenTK.Graphics.Wgl.All.SwapUnderlay1 - id: SwapUnderlay1 - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: SwapUnderlay1 - nameWithType: All.SwapUnderlay1 - fullName: OpenTK.Graphics.Wgl.All.SwapUnderlay1 - type: Field - source: - id: SwapUnderlay1 - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 299 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: SwapUnderlay1 = 65536 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.SwapUnderlay2 - commentId: F:OpenTK.Graphics.Wgl.All.SwapUnderlay2 - id: SwapUnderlay2 - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: SwapUnderlay2 - nameWithType: All.SwapUnderlay2 - fullName: OpenTK.Graphics.Wgl.All.SwapUnderlay2 - type: Field - source: - id: SwapUnderlay2 - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 300 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: SwapUnderlay2 = 131072 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.SwapUnderlay3 - commentId: F:OpenTK.Graphics.Wgl.All.SwapUnderlay3 - id: SwapUnderlay3 - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: SwapUnderlay3 - nameWithType: All.SwapUnderlay3 - fullName: OpenTK.Graphics.Wgl.All.SwapUnderlay3 - type: Field - source: - id: SwapUnderlay3 - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 301 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: SwapUnderlay3 = 262144 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.SwapUnderlay4 - commentId: F:OpenTK.Graphics.Wgl.All.SwapUnderlay4 - id: SwapUnderlay4 - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: SwapUnderlay4 - nameWithType: All.SwapUnderlay4 - fullName: OpenTK.Graphics.Wgl.All.SwapUnderlay4 - type: Field - source: - id: SwapUnderlay4 - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 302 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: SwapUnderlay4 = 524288 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.SwapUnderlay5 - commentId: F:OpenTK.Graphics.Wgl.All.SwapUnderlay5 - id: SwapUnderlay5 - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: SwapUnderlay5 - nameWithType: All.SwapUnderlay5 - fullName: OpenTK.Graphics.Wgl.All.SwapUnderlay5 - type: Field - source: - id: SwapUnderlay5 - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 303 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: SwapUnderlay5 = 1048576 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.SwapUnderlay6 - commentId: F:OpenTK.Graphics.Wgl.All.SwapUnderlay6 - id: SwapUnderlay6 - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: SwapUnderlay6 - nameWithType: All.SwapUnderlay6 - fullName: OpenTK.Graphics.Wgl.All.SwapUnderlay6 - type: Field - source: - id: SwapUnderlay6 - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 304 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: SwapUnderlay6 = 2097152 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.SwapUnderlay7 - commentId: F:OpenTK.Graphics.Wgl.All.SwapUnderlay7 - id: SwapUnderlay7 - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: SwapUnderlay7 - nameWithType: All.SwapUnderlay7 - fullName: OpenTK.Graphics.Wgl.All.SwapUnderlay7 - type: Field - source: - id: SwapUnderlay7 - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 305 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: SwapUnderlay7 = 4194304 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.SwapUnderlay8 - commentId: F:OpenTK.Graphics.Wgl.All.SwapUnderlay8 - id: SwapUnderlay8 - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: SwapUnderlay8 - nameWithType: All.SwapUnderlay8 - fullName: OpenTK.Graphics.Wgl.All.SwapUnderlay8 - type: Field - source: - id: SwapUnderlay8 - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 306 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: SwapUnderlay8 = 8388608 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.SwapUnderlay9 - commentId: F:OpenTK.Graphics.Wgl.All.SwapUnderlay9 - id: SwapUnderlay9 - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: SwapUnderlay9 - nameWithType: All.SwapUnderlay9 - fullName: OpenTK.Graphics.Wgl.All.SwapUnderlay9 - type: Field - source: - id: SwapUnderlay9 - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 307 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: SwapUnderlay9 = 16777216 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.SwapUnderlay10 - commentId: F:OpenTK.Graphics.Wgl.All.SwapUnderlay10 - id: SwapUnderlay10 - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: SwapUnderlay10 - nameWithType: All.SwapUnderlay10 - fullName: OpenTK.Graphics.Wgl.All.SwapUnderlay10 - type: Field - source: - id: SwapUnderlay10 - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 308 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: SwapUnderlay10 = 33554432 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.SwapUnderlay11 - commentId: F:OpenTK.Graphics.Wgl.All.SwapUnderlay11 - id: SwapUnderlay11 - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: SwapUnderlay11 - nameWithType: All.SwapUnderlay11 - fullName: OpenTK.Graphics.Wgl.All.SwapUnderlay11 - type: Field - source: - id: SwapUnderlay11 - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 309 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: SwapUnderlay11 = 67108864 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.SwapUnderlay12 - commentId: F:OpenTK.Graphics.Wgl.All.SwapUnderlay12 - id: SwapUnderlay12 - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: SwapUnderlay12 - nameWithType: All.SwapUnderlay12 - fullName: OpenTK.Graphics.Wgl.All.SwapUnderlay12 - type: Field - source: - id: SwapUnderlay12 - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 310 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: SwapUnderlay12 = 134217728 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.SwapUnderlay13 - commentId: F:OpenTK.Graphics.Wgl.All.SwapUnderlay13 - id: SwapUnderlay13 - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: SwapUnderlay13 - nameWithType: All.SwapUnderlay13 - fullName: OpenTK.Graphics.Wgl.All.SwapUnderlay13 - type: Field - source: - id: SwapUnderlay13 - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 311 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: SwapUnderlay13 = 268435456 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.SwapUnderlay14 - commentId: F:OpenTK.Graphics.Wgl.All.SwapUnderlay14 - id: SwapUnderlay14 - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: SwapUnderlay14 - nameWithType: All.SwapUnderlay14 - fullName: OpenTK.Graphics.Wgl.All.SwapUnderlay14 - type: Field - source: - id: SwapUnderlay14 - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 312 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: SwapUnderlay14 = 536870912 - return: - type: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.All.SwapUnderlay15 - commentId: F:OpenTK.Graphics.Wgl.All.SwapUnderlay15 - id: SwapUnderlay15 - parent: OpenTK.Graphics.Wgl.All - langs: - - csharp - - vb - name: SwapUnderlay15 - nameWithType: All.SwapUnderlay15 - fullName: OpenTK.Graphics.Wgl.All.SwapUnderlay15 - type: Field - source: - id: SwapUnderlay15 - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 313 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: SwapUnderlay15 = 1073741824 - return: - type: OpenTK.Graphics.Wgl.All -references: -- uid: OpenTK.Graphics.Wgl - commentId: N:OpenTK.Graphics.Wgl - href: OpenTK.html - name: OpenTK.Graphics.Wgl - nameWithType: OpenTK.Graphics.Wgl - fullName: OpenTK.Graphics.Wgl - spec.csharp: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Wgl - name: Wgl - href: OpenTK.Graphics.Wgl.html - spec.vb: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Wgl - name: Wgl - href: OpenTK.Graphics.Wgl.html -- uid: OpenTK.Graphics.Wgl.All - commentId: T:OpenTK.Graphics.Wgl.All - parent: OpenTK.Graphics.Wgl - href: OpenTK.Graphics.Wgl.All.html - name: All - nameWithType: All - fullName: OpenTK.Graphics.Wgl.All diff --git a/api/OpenTK.Graphics.Wgl.ColorBuffer.yml b/api/OpenTK.Graphics.Wgl.ColorBuffer.yml deleted file mode 100644 index 61dfddee..00000000 --- a/api/OpenTK.Graphics.Wgl.ColorBuffer.yml +++ /dev/null @@ -1,466 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: OpenTK.Graphics.Wgl.ColorBuffer - commentId: T:OpenTK.Graphics.Wgl.ColorBuffer - id: ColorBuffer - parent: OpenTK.Graphics.Wgl - children: - - OpenTK.Graphics.Wgl.ColorBuffer.Aux0Arb - - OpenTK.Graphics.Wgl.ColorBuffer.Aux1Arb - - OpenTK.Graphics.Wgl.ColorBuffer.Aux2Arb - - OpenTK.Graphics.Wgl.ColorBuffer.Aux3Arb - - OpenTK.Graphics.Wgl.ColorBuffer.Aux4Arb - - OpenTK.Graphics.Wgl.ColorBuffer.Aux5Arb - - OpenTK.Graphics.Wgl.ColorBuffer.Aux6Arb - - OpenTK.Graphics.Wgl.ColorBuffer.Aux7Arb - - OpenTK.Graphics.Wgl.ColorBuffer.Aux8Arb - - OpenTK.Graphics.Wgl.ColorBuffer.Aux9Arb - - OpenTK.Graphics.Wgl.ColorBuffer.BackLeftArb - - OpenTK.Graphics.Wgl.ColorBuffer.BackRightArb - - OpenTK.Graphics.Wgl.ColorBuffer.FrontLeftArb - - OpenTK.Graphics.Wgl.ColorBuffer.FrontRightArb - langs: - - csharp - - vb - name: ColorBuffer - nameWithType: ColorBuffer - fullName: OpenTK.Graphics.Wgl.ColorBuffer - type: Enum - source: - id: ColorBuffer - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 325 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: Used in , - example: [] - syntax: - content: 'public enum ColorBuffer : uint' - content.vb: Public Enum ColorBuffer As UInteger -- uid: OpenTK.Graphics.Wgl.ColorBuffer.FrontLeftArb - commentId: F:OpenTK.Graphics.Wgl.ColorBuffer.FrontLeftArb - id: FrontLeftArb - parent: OpenTK.Graphics.Wgl.ColorBuffer - langs: - - csharp - - vb - name: FrontLeftArb - nameWithType: ColorBuffer.FrontLeftArb - fullName: OpenTK.Graphics.Wgl.ColorBuffer.FrontLeftArb - type: Field - source: - id: FrontLeftArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 327 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: FrontLeftArb = 8323 - return: - type: OpenTK.Graphics.Wgl.ColorBuffer -- uid: OpenTK.Graphics.Wgl.ColorBuffer.FrontRightArb - commentId: F:OpenTK.Graphics.Wgl.ColorBuffer.FrontRightArb - id: FrontRightArb - parent: OpenTK.Graphics.Wgl.ColorBuffer - langs: - - csharp - - vb - name: FrontRightArb - nameWithType: ColorBuffer.FrontRightArb - fullName: OpenTK.Graphics.Wgl.ColorBuffer.FrontRightArb - type: Field - source: - id: FrontRightArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 328 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: FrontRightArb = 8324 - return: - type: OpenTK.Graphics.Wgl.ColorBuffer -- uid: OpenTK.Graphics.Wgl.ColorBuffer.BackLeftArb - commentId: F:OpenTK.Graphics.Wgl.ColorBuffer.BackLeftArb - id: BackLeftArb - parent: OpenTK.Graphics.Wgl.ColorBuffer - langs: - - csharp - - vb - name: BackLeftArb - nameWithType: ColorBuffer.BackLeftArb - fullName: OpenTK.Graphics.Wgl.ColorBuffer.BackLeftArb - type: Field - source: - id: BackLeftArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 329 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: BackLeftArb = 8325 - return: - type: OpenTK.Graphics.Wgl.ColorBuffer -- uid: OpenTK.Graphics.Wgl.ColorBuffer.BackRightArb - commentId: F:OpenTK.Graphics.Wgl.ColorBuffer.BackRightArb - id: BackRightArb - parent: OpenTK.Graphics.Wgl.ColorBuffer - langs: - - csharp - - vb - name: BackRightArb - nameWithType: ColorBuffer.BackRightArb - fullName: OpenTK.Graphics.Wgl.ColorBuffer.BackRightArb - type: Field - source: - id: BackRightArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 330 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: BackRightArb = 8326 - return: - type: OpenTK.Graphics.Wgl.ColorBuffer -- uid: OpenTK.Graphics.Wgl.ColorBuffer.Aux0Arb - commentId: F:OpenTK.Graphics.Wgl.ColorBuffer.Aux0Arb - id: Aux0Arb - parent: OpenTK.Graphics.Wgl.ColorBuffer - langs: - - csharp - - vb - name: Aux0Arb - nameWithType: ColorBuffer.Aux0Arb - fullName: OpenTK.Graphics.Wgl.ColorBuffer.Aux0Arb - type: Field - source: - id: Aux0Arb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 331 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: Aux0Arb = 8327 - return: - type: OpenTK.Graphics.Wgl.ColorBuffer -- uid: OpenTK.Graphics.Wgl.ColorBuffer.Aux1Arb - commentId: F:OpenTK.Graphics.Wgl.ColorBuffer.Aux1Arb - id: Aux1Arb - parent: OpenTK.Graphics.Wgl.ColorBuffer - langs: - - csharp - - vb - name: Aux1Arb - nameWithType: ColorBuffer.Aux1Arb - fullName: OpenTK.Graphics.Wgl.ColorBuffer.Aux1Arb - type: Field - source: - id: Aux1Arb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 332 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: Aux1Arb = 8328 - return: - type: OpenTK.Graphics.Wgl.ColorBuffer -- uid: OpenTK.Graphics.Wgl.ColorBuffer.Aux2Arb - commentId: F:OpenTK.Graphics.Wgl.ColorBuffer.Aux2Arb - id: Aux2Arb - parent: OpenTK.Graphics.Wgl.ColorBuffer - langs: - - csharp - - vb - name: Aux2Arb - nameWithType: ColorBuffer.Aux2Arb - fullName: OpenTK.Graphics.Wgl.ColorBuffer.Aux2Arb - type: Field - source: - id: Aux2Arb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 333 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: Aux2Arb = 8329 - return: - type: OpenTK.Graphics.Wgl.ColorBuffer -- uid: OpenTK.Graphics.Wgl.ColorBuffer.Aux3Arb - commentId: F:OpenTK.Graphics.Wgl.ColorBuffer.Aux3Arb - id: Aux3Arb - parent: OpenTK.Graphics.Wgl.ColorBuffer - langs: - - csharp - - vb - name: Aux3Arb - nameWithType: ColorBuffer.Aux3Arb - fullName: OpenTK.Graphics.Wgl.ColorBuffer.Aux3Arb - type: Field - source: - id: Aux3Arb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 334 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: Aux3Arb = 8330 - return: - type: OpenTK.Graphics.Wgl.ColorBuffer -- uid: OpenTK.Graphics.Wgl.ColorBuffer.Aux4Arb - commentId: F:OpenTK.Graphics.Wgl.ColorBuffer.Aux4Arb - id: Aux4Arb - parent: OpenTK.Graphics.Wgl.ColorBuffer - langs: - - csharp - - vb - name: Aux4Arb - nameWithType: ColorBuffer.Aux4Arb - fullName: OpenTK.Graphics.Wgl.ColorBuffer.Aux4Arb - type: Field - source: - id: Aux4Arb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 335 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: Aux4Arb = 8331 - return: - type: OpenTK.Graphics.Wgl.ColorBuffer -- uid: OpenTK.Graphics.Wgl.ColorBuffer.Aux5Arb - commentId: F:OpenTK.Graphics.Wgl.ColorBuffer.Aux5Arb - id: Aux5Arb - parent: OpenTK.Graphics.Wgl.ColorBuffer - langs: - - csharp - - vb - name: Aux5Arb - nameWithType: ColorBuffer.Aux5Arb - fullName: OpenTK.Graphics.Wgl.ColorBuffer.Aux5Arb - type: Field - source: - id: Aux5Arb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 336 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: Aux5Arb = 8332 - return: - type: OpenTK.Graphics.Wgl.ColorBuffer -- uid: OpenTK.Graphics.Wgl.ColorBuffer.Aux6Arb - commentId: F:OpenTK.Graphics.Wgl.ColorBuffer.Aux6Arb - id: Aux6Arb - parent: OpenTK.Graphics.Wgl.ColorBuffer - langs: - - csharp - - vb - name: Aux6Arb - nameWithType: ColorBuffer.Aux6Arb - fullName: OpenTK.Graphics.Wgl.ColorBuffer.Aux6Arb - type: Field - source: - id: Aux6Arb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 337 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: Aux6Arb = 8333 - return: - type: OpenTK.Graphics.Wgl.ColorBuffer -- uid: OpenTK.Graphics.Wgl.ColorBuffer.Aux7Arb - commentId: F:OpenTK.Graphics.Wgl.ColorBuffer.Aux7Arb - id: Aux7Arb - parent: OpenTK.Graphics.Wgl.ColorBuffer - langs: - - csharp - - vb - name: Aux7Arb - nameWithType: ColorBuffer.Aux7Arb - fullName: OpenTK.Graphics.Wgl.ColorBuffer.Aux7Arb - type: Field - source: - id: Aux7Arb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 338 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: Aux7Arb = 8334 - return: - type: OpenTK.Graphics.Wgl.ColorBuffer -- uid: OpenTK.Graphics.Wgl.ColorBuffer.Aux8Arb - commentId: F:OpenTK.Graphics.Wgl.ColorBuffer.Aux8Arb - id: Aux8Arb - parent: OpenTK.Graphics.Wgl.ColorBuffer - langs: - - csharp - - vb - name: Aux8Arb - nameWithType: ColorBuffer.Aux8Arb - fullName: OpenTK.Graphics.Wgl.ColorBuffer.Aux8Arb - type: Field - source: - id: Aux8Arb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 339 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: Aux8Arb = 8335 - return: - type: OpenTK.Graphics.Wgl.ColorBuffer -- uid: OpenTK.Graphics.Wgl.ColorBuffer.Aux9Arb - commentId: F:OpenTK.Graphics.Wgl.ColorBuffer.Aux9Arb - id: Aux9Arb - parent: OpenTK.Graphics.Wgl.ColorBuffer - langs: - - csharp - - vb - name: Aux9Arb - nameWithType: ColorBuffer.Aux9Arb - fullName: OpenTK.Graphics.Wgl.ColorBuffer.Aux9Arb - type: Field - source: - id: Aux9Arb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 340 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: Aux9Arb = 8336 - return: - type: OpenTK.Graphics.Wgl.ColorBuffer -references: -- uid: OpenTK.Graphics.Wgl.Wgl.ARB.BindTexImageARB(System.IntPtr,OpenTK.Graphics.Wgl.ColorBuffer) - commentId: M:OpenTK.Graphics.Wgl.Wgl.ARB.BindTexImageARB(System.IntPtr,OpenTK.Graphics.Wgl.ColorBuffer) - isExternal: true - href: OpenTK.Graphics.Wgl.Wgl.ARB.html#OpenTK_Graphics_Wgl_Wgl_ARB_BindTexImageARB_System_IntPtr_OpenTK_Graphics_Wgl_ColorBuffer_ - name: BindTexImageARB(nint, ColorBuffer) - nameWithType: Wgl.ARB.BindTexImageARB(nint, ColorBuffer) - fullName: OpenTK.Graphics.Wgl.Wgl.ARB.BindTexImageARB(nint, OpenTK.Graphics.Wgl.ColorBuffer) - nameWithType.vb: Wgl.ARB.BindTexImageARB(IntPtr, ColorBuffer) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.ARB.BindTexImageARB(System.IntPtr, OpenTK.Graphics.Wgl.ColorBuffer) - name.vb: BindTexImageARB(IntPtr, ColorBuffer) - spec.csharp: - - uid: OpenTK.Graphics.Wgl.Wgl.ARB.BindTexImageARB(System.IntPtr,OpenTK.Graphics.Wgl.ColorBuffer) - name: BindTexImageARB - href: OpenTK.Graphics.Wgl.Wgl.ARB.html#OpenTK_Graphics_Wgl_Wgl_ARB_BindTexImageARB_System_IntPtr_OpenTK_Graphics_Wgl_ColorBuffer_ - - name: ( - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: OpenTK.Graphics.Wgl.ColorBuffer - name: ColorBuffer - href: OpenTK.Graphics.Wgl.ColorBuffer.html - - name: ) - spec.vb: - - uid: OpenTK.Graphics.Wgl.Wgl.ARB.BindTexImageARB(System.IntPtr,OpenTK.Graphics.Wgl.ColorBuffer) - name: BindTexImageARB - href: OpenTK.Graphics.Wgl.Wgl.ARB.html#OpenTK_Graphics_Wgl_Wgl_ARB_BindTexImageARB_System_IntPtr_OpenTK_Graphics_Wgl_ColorBuffer_ - - name: ( - - uid: System.IntPtr - name: IntPtr - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: OpenTK.Graphics.Wgl.ColorBuffer - name: ColorBuffer - href: OpenTK.Graphics.Wgl.ColorBuffer.html - - name: ) -- uid: OpenTK.Graphics.Wgl.Wgl.ARB.ReleaseTexImageARB(System.IntPtr,OpenTK.Graphics.Wgl.ColorBuffer) - commentId: M:OpenTK.Graphics.Wgl.Wgl.ARB.ReleaseTexImageARB(System.IntPtr,OpenTK.Graphics.Wgl.ColorBuffer) - isExternal: true - href: OpenTK.Graphics.Wgl.Wgl.ARB.html#OpenTK_Graphics_Wgl_Wgl_ARB_ReleaseTexImageARB_System_IntPtr_OpenTK_Graphics_Wgl_ColorBuffer_ - name: ReleaseTexImageARB(nint, ColorBuffer) - nameWithType: Wgl.ARB.ReleaseTexImageARB(nint, ColorBuffer) - fullName: OpenTK.Graphics.Wgl.Wgl.ARB.ReleaseTexImageARB(nint, OpenTK.Graphics.Wgl.ColorBuffer) - nameWithType.vb: Wgl.ARB.ReleaseTexImageARB(IntPtr, ColorBuffer) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.ARB.ReleaseTexImageARB(System.IntPtr, OpenTK.Graphics.Wgl.ColorBuffer) - name.vb: ReleaseTexImageARB(IntPtr, ColorBuffer) - spec.csharp: - - uid: OpenTK.Graphics.Wgl.Wgl.ARB.ReleaseTexImageARB(System.IntPtr,OpenTK.Graphics.Wgl.ColorBuffer) - name: ReleaseTexImageARB - href: OpenTK.Graphics.Wgl.Wgl.ARB.html#OpenTK_Graphics_Wgl_Wgl_ARB_ReleaseTexImageARB_System_IntPtr_OpenTK_Graphics_Wgl_ColorBuffer_ - - name: ( - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: OpenTK.Graphics.Wgl.ColorBuffer - name: ColorBuffer - href: OpenTK.Graphics.Wgl.ColorBuffer.html - - name: ) - spec.vb: - - uid: OpenTK.Graphics.Wgl.Wgl.ARB.ReleaseTexImageARB(System.IntPtr,OpenTK.Graphics.Wgl.ColorBuffer) - name: ReleaseTexImageARB - href: OpenTK.Graphics.Wgl.Wgl.ARB.html#OpenTK_Graphics_Wgl_Wgl_ARB_ReleaseTexImageARB_System_IntPtr_OpenTK_Graphics_Wgl_ColorBuffer_ - - name: ( - - uid: System.IntPtr - name: IntPtr - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: OpenTK.Graphics.Wgl.ColorBuffer - name: ColorBuffer - href: OpenTK.Graphics.Wgl.ColorBuffer.html - - name: ) -- uid: OpenTK.Graphics.Wgl - commentId: N:OpenTK.Graphics.Wgl - href: OpenTK.html - name: OpenTK.Graphics.Wgl - nameWithType: OpenTK.Graphics.Wgl - fullName: OpenTK.Graphics.Wgl - spec.csharp: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Wgl - name: Wgl - href: OpenTK.Graphics.Wgl.html - spec.vb: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Wgl - name: Wgl - href: OpenTK.Graphics.Wgl.html -- uid: OpenTK.Graphics.Wgl.ColorBuffer - commentId: T:OpenTK.Graphics.Wgl.ColorBuffer - parent: OpenTK.Graphics.Wgl - href: OpenTK.Graphics.Wgl.ColorBuffer.html - name: ColorBuffer - nameWithType: ColorBuffer - fullName: OpenTK.Graphics.Wgl.ColorBuffer diff --git a/api/OpenTK.Graphics.Wgl.ColorBufferMask.yml b/api/OpenTK.Graphics.Wgl.ColorBufferMask.yml deleted file mode 100644 index afcc77ff..00000000 --- a/api/OpenTK.Graphics.Wgl.ColorBufferMask.yml +++ /dev/null @@ -1,218 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: OpenTK.Graphics.Wgl.ColorBufferMask - commentId: T:OpenTK.Graphics.Wgl.ColorBufferMask - id: ColorBufferMask - parent: OpenTK.Graphics.Wgl - children: - - OpenTK.Graphics.Wgl.ColorBufferMask.BackColorBufferBitArb - - OpenTK.Graphics.Wgl.ColorBufferMask.DepthBufferBitArb - - OpenTK.Graphics.Wgl.ColorBufferMask.FrontColorBufferBitArb - - OpenTK.Graphics.Wgl.ColorBufferMask.StencilBufferBitArb - langs: - - csharp - - vb - name: ColorBufferMask - nameWithType: ColorBufferMask - fullName: OpenTK.Graphics.Wgl.ColorBufferMask - type: Enum - source: - id: ColorBufferMask - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 343 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: Used in - example: [] - syntax: - content: >- - [Flags] - - public enum ColorBufferMask : uint - content.vb: >- - - - Public Enum ColorBufferMask As UInteger - attributes: - - type: System.FlagsAttribute - ctor: System.FlagsAttribute.#ctor - arguments: [] -- uid: OpenTK.Graphics.Wgl.ColorBufferMask.FrontColorBufferBitArb - commentId: F:OpenTK.Graphics.Wgl.ColorBufferMask.FrontColorBufferBitArb - id: FrontColorBufferBitArb - parent: OpenTK.Graphics.Wgl.ColorBufferMask - langs: - - csharp - - vb - name: FrontColorBufferBitArb - nameWithType: ColorBufferMask.FrontColorBufferBitArb - fullName: OpenTK.Graphics.Wgl.ColorBufferMask.FrontColorBufferBitArb - type: Field - source: - id: FrontColorBufferBitArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 346 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: FrontColorBufferBitArb = 1 - return: - type: OpenTK.Graphics.Wgl.ColorBufferMask -- uid: OpenTK.Graphics.Wgl.ColorBufferMask.BackColorBufferBitArb - commentId: F:OpenTK.Graphics.Wgl.ColorBufferMask.BackColorBufferBitArb - id: BackColorBufferBitArb - parent: OpenTK.Graphics.Wgl.ColorBufferMask - langs: - - csharp - - vb - name: BackColorBufferBitArb - nameWithType: ColorBufferMask.BackColorBufferBitArb - fullName: OpenTK.Graphics.Wgl.ColorBufferMask.BackColorBufferBitArb - type: Field - source: - id: BackColorBufferBitArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 347 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: BackColorBufferBitArb = 2 - return: - type: OpenTK.Graphics.Wgl.ColorBufferMask -- uid: OpenTK.Graphics.Wgl.ColorBufferMask.DepthBufferBitArb - commentId: F:OpenTK.Graphics.Wgl.ColorBufferMask.DepthBufferBitArb - id: DepthBufferBitArb - parent: OpenTK.Graphics.Wgl.ColorBufferMask - langs: - - csharp - - vb - name: DepthBufferBitArb - nameWithType: ColorBufferMask.DepthBufferBitArb - fullName: OpenTK.Graphics.Wgl.ColorBufferMask.DepthBufferBitArb - type: Field - source: - id: DepthBufferBitArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 348 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: DepthBufferBitArb = 4 - return: - type: OpenTK.Graphics.Wgl.ColorBufferMask -- uid: OpenTK.Graphics.Wgl.ColorBufferMask.StencilBufferBitArb - commentId: F:OpenTK.Graphics.Wgl.ColorBufferMask.StencilBufferBitArb - id: StencilBufferBitArb - parent: OpenTK.Graphics.Wgl.ColorBufferMask - langs: - - csharp - - vb - name: StencilBufferBitArb - nameWithType: ColorBufferMask.StencilBufferBitArb - fullName: OpenTK.Graphics.Wgl.ColorBufferMask.StencilBufferBitArb - type: Field - source: - id: StencilBufferBitArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 349 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: StencilBufferBitArb = 8 - return: - type: OpenTK.Graphics.Wgl.ColorBufferMask -references: -- uid: OpenTK.Graphics.Wgl.Wgl.ARB.CreateBufferRegionARB(System.IntPtr,System.Int32,OpenTK.Graphics.Wgl.ColorBufferMask) - commentId: M:OpenTK.Graphics.Wgl.Wgl.ARB.CreateBufferRegionARB(System.IntPtr,System.Int32,OpenTK.Graphics.Wgl.ColorBufferMask) - isExternal: true - href: OpenTK.Graphics.Wgl.Wgl.ARB.html#OpenTK_Graphics_Wgl_Wgl_ARB_CreateBufferRegionARB_System_IntPtr_System_Int32_OpenTK_Graphics_Wgl_ColorBufferMask_ - name: CreateBufferRegionARB(nint, int, ColorBufferMask) - nameWithType: Wgl.ARB.CreateBufferRegionARB(nint, int, ColorBufferMask) - fullName: OpenTK.Graphics.Wgl.Wgl.ARB.CreateBufferRegionARB(nint, int, OpenTK.Graphics.Wgl.ColorBufferMask) - nameWithType.vb: Wgl.ARB.CreateBufferRegionARB(IntPtr, Integer, ColorBufferMask) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.ARB.CreateBufferRegionARB(System.IntPtr, Integer, OpenTK.Graphics.Wgl.ColorBufferMask) - name.vb: CreateBufferRegionARB(IntPtr, Integer, ColorBufferMask) - spec.csharp: - - uid: OpenTK.Graphics.Wgl.Wgl.ARB.CreateBufferRegionARB(System.IntPtr,System.Int32,OpenTK.Graphics.Wgl.ColorBufferMask) - name: CreateBufferRegionARB - href: OpenTK.Graphics.Wgl.Wgl.ARB.html#OpenTK_Graphics_Wgl_Wgl_ARB_CreateBufferRegionARB_System_IntPtr_System_Int32_OpenTK_Graphics_Wgl_ColorBufferMask_ - - name: ( - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: OpenTK.Graphics.Wgl.ColorBufferMask - name: ColorBufferMask - href: OpenTK.Graphics.Wgl.ColorBufferMask.html - - name: ) - spec.vb: - - uid: OpenTK.Graphics.Wgl.Wgl.ARB.CreateBufferRegionARB(System.IntPtr,System.Int32,OpenTK.Graphics.Wgl.ColorBufferMask) - name: CreateBufferRegionARB - href: OpenTK.Graphics.Wgl.Wgl.ARB.html#OpenTK_Graphics_Wgl_Wgl_ARB_CreateBufferRegionARB_System_IntPtr_System_Int32_OpenTK_Graphics_Wgl_ColorBufferMask_ - - name: ( - - uid: System.IntPtr - name: IntPtr - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: OpenTK.Graphics.Wgl.ColorBufferMask - name: ColorBufferMask - href: OpenTK.Graphics.Wgl.ColorBufferMask.html - - name: ) -- uid: OpenTK.Graphics.Wgl - commentId: N:OpenTK.Graphics.Wgl - href: OpenTK.html - name: OpenTK.Graphics.Wgl - nameWithType: OpenTK.Graphics.Wgl - fullName: OpenTK.Graphics.Wgl - spec.csharp: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Wgl - name: Wgl - href: OpenTK.Graphics.Wgl.html - spec.vb: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Wgl - name: Wgl - href: OpenTK.Graphics.Wgl.html -- uid: OpenTK.Graphics.Wgl.ColorBufferMask - commentId: T:OpenTK.Graphics.Wgl.ColorBufferMask - parent: OpenTK.Graphics.Wgl - href: OpenTK.Graphics.Wgl.ColorBufferMask.html - name: ColorBufferMask - nameWithType: ColorBufferMask - fullName: OpenTK.Graphics.Wgl.ColorBufferMask diff --git a/api/OpenTK.Graphics.Wgl.ContextAttribs.yml b/api/OpenTK.Graphics.Wgl.ContextAttribs.yml deleted file mode 100644 index f7b814da..00000000 --- a/api/OpenTK.Graphics.Wgl.ContextAttribs.yml +++ /dev/null @@ -1,233 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: OpenTK.Graphics.Wgl.ContextAttribs - commentId: T:OpenTK.Graphics.Wgl.ContextAttribs - id: ContextAttribs - parent: OpenTK.Graphics.Wgl - children: - - OpenTK.Graphics.Wgl.ContextAttribs.ContextFlagsArb - - OpenTK.Graphics.Wgl.ContextAttribs.ContextLayerPlaneArb - - OpenTK.Graphics.Wgl.ContextAttribs.ContextMajorVersionArb - - OpenTK.Graphics.Wgl.ContextAttribs.ContextMinorVersionArb - - OpenTK.Graphics.Wgl.ContextAttribs.ContextProfileMaskArb - langs: - - csharp - - vb - name: ContextAttribs - nameWithType: ContextAttribs - fullName: OpenTK.Graphics.Wgl.ContextAttribs - type: Enum - source: - id: ContextAttribs - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 352 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: Used in - example: [] - syntax: - content: 'public enum ContextAttribs : uint' - content.vb: Public Enum ContextAttribs As UInteger -- uid: OpenTK.Graphics.Wgl.ContextAttribs.ContextMajorVersionArb - commentId: F:OpenTK.Graphics.Wgl.ContextAttribs.ContextMajorVersionArb - id: ContextMajorVersionArb - parent: OpenTK.Graphics.Wgl.ContextAttribs - langs: - - csharp - - vb - name: ContextMajorVersionArb - nameWithType: ContextAttribs.ContextMajorVersionArb - fullName: OpenTK.Graphics.Wgl.ContextAttribs.ContextMajorVersionArb - type: Field - source: - id: ContextMajorVersionArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 354 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: ContextMajorVersionArb = 8337 - return: - type: OpenTK.Graphics.Wgl.ContextAttribs -- uid: OpenTK.Graphics.Wgl.ContextAttribs.ContextMinorVersionArb - commentId: F:OpenTK.Graphics.Wgl.ContextAttribs.ContextMinorVersionArb - id: ContextMinorVersionArb - parent: OpenTK.Graphics.Wgl.ContextAttribs - langs: - - csharp - - vb - name: ContextMinorVersionArb - nameWithType: ContextAttribs.ContextMinorVersionArb - fullName: OpenTK.Graphics.Wgl.ContextAttribs.ContextMinorVersionArb - type: Field - source: - id: ContextMinorVersionArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 355 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: ContextMinorVersionArb = 8338 - return: - type: OpenTK.Graphics.Wgl.ContextAttribs -- uid: OpenTK.Graphics.Wgl.ContextAttribs.ContextLayerPlaneArb - commentId: F:OpenTK.Graphics.Wgl.ContextAttribs.ContextLayerPlaneArb - id: ContextLayerPlaneArb - parent: OpenTK.Graphics.Wgl.ContextAttribs - langs: - - csharp - - vb - name: ContextLayerPlaneArb - nameWithType: ContextAttribs.ContextLayerPlaneArb - fullName: OpenTK.Graphics.Wgl.ContextAttribs.ContextLayerPlaneArb - type: Field - source: - id: ContextLayerPlaneArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 356 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: ContextLayerPlaneArb = 8339 - return: - type: OpenTK.Graphics.Wgl.ContextAttribs -- uid: OpenTK.Graphics.Wgl.ContextAttribs.ContextFlagsArb - commentId: F:OpenTK.Graphics.Wgl.ContextAttribs.ContextFlagsArb - id: ContextFlagsArb - parent: OpenTK.Graphics.Wgl.ContextAttribs - langs: - - csharp - - vb - name: ContextFlagsArb - nameWithType: ContextAttribs.ContextFlagsArb - fullName: OpenTK.Graphics.Wgl.ContextAttribs.ContextFlagsArb - type: Field - source: - id: ContextFlagsArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 357 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: ContextFlagsArb = 8340 - return: - type: OpenTK.Graphics.Wgl.ContextAttribs -- uid: OpenTK.Graphics.Wgl.ContextAttribs.ContextProfileMaskArb - commentId: F:OpenTK.Graphics.Wgl.ContextAttribs.ContextProfileMaskArb - id: ContextProfileMaskArb - parent: OpenTK.Graphics.Wgl.ContextAttribs - langs: - - csharp - - vb - name: ContextProfileMaskArb - nameWithType: ContextAttribs.ContextProfileMaskArb - fullName: OpenTK.Graphics.Wgl.ContextAttribs.ContextProfileMaskArb - type: Field - source: - id: ContextProfileMaskArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 358 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: ContextProfileMaskArb = 37158 - return: - type: OpenTK.Graphics.Wgl.ContextAttribs -references: -- uid: OpenTK.Graphics.Wgl.Wgl.ARB.CreateContextAttribsARB(System.IntPtr,System.IntPtr,OpenTK.Graphics.Wgl.ContextAttribs*) - commentId: M:OpenTK.Graphics.Wgl.Wgl.ARB.CreateContextAttribsARB(System.IntPtr,System.IntPtr,OpenTK.Graphics.Wgl.ContextAttribs*) - isExternal: true - href: OpenTK.Graphics.Wgl.Wgl.ARB.html#OpenTK_Graphics_Wgl_Wgl_ARB_CreateContextAttribsARB_System_IntPtr_System_IntPtr_OpenTK_Graphics_Wgl_ContextAttribs__ - name: CreateContextAttribsARB(nint, nint, ContextAttribs*) - nameWithType: Wgl.ARB.CreateContextAttribsARB(nint, nint, ContextAttribs*) - fullName: OpenTK.Graphics.Wgl.Wgl.ARB.CreateContextAttribsARB(nint, nint, OpenTK.Graphics.Wgl.ContextAttribs*) - nameWithType.vb: Wgl.ARB.CreateContextAttribsARB(IntPtr, IntPtr, ContextAttribs*) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.ARB.CreateContextAttribsARB(System.IntPtr, System.IntPtr, OpenTK.Graphics.Wgl.ContextAttribs*) - name.vb: CreateContextAttribsARB(IntPtr, IntPtr, ContextAttribs*) - spec.csharp: - - uid: OpenTK.Graphics.Wgl.Wgl.ARB.CreateContextAttribsARB(System.IntPtr,System.IntPtr,OpenTK.Graphics.Wgl.ContextAttribs*) - name: CreateContextAttribsARB - href: OpenTK.Graphics.Wgl.Wgl.ARB.html#OpenTK_Graphics_Wgl_Wgl_ARB_CreateContextAttribsARB_System_IntPtr_System_IntPtr_OpenTK_Graphics_Wgl_ContextAttribs__ - - name: ( - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: OpenTK.Graphics.Wgl.ContextAttribs - name: ContextAttribs - href: OpenTK.Graphics.Wgl.ContextAttribs.html - - name: '*' - - name: ) - spec.vb: - - uid: OpenTK.Graphics.Wgl.Wgl.ARB.CreateContextAttribsARB(System.IntPtr,System.IntPtr,OpenTK.Graphics.Wgl.ContextAttribs*) - name: CreateContextAttribsARB - href: OpenTK.Graphics.Wgl.Wgl.ARB.html#OpenTK_Graphics_Wgl_Wgl_ARB_CreateContextAttribsARB_System_IntPtr_System_IntPtr_OpenTK_Graphics_Wgl_ContextAttribs__ - - name: ( - - uid: System.IntPtr - name: IntPtr - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.IntPtr - name: IntPtr - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: OpenTK.Graphics.Wgl.ContextAttribs - name: ContextAttribs - href: OpenTK.Graphics.Wgl.ContextAttribs.html - - name: '*' - - name: ) -- uid: OpenTK.Graphics.Wgl - commentId: N:OpenTK.Graphics.Wgl - href: OpenTK.html - name: OpenTK.Graphics.Wgl - nameWithType: OpenTK.Graphics.Wgl - fullName: OpenTK.Graphics.Wgl - spec.csharp: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Wgl - name: Wgl - href: OpenTK.Graphics.Wgl.html - spec.vb: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Wgl - name: Wgl - href: OpenTK.Graphics.Wgl.html -- uid: OpenTK.Graphics.Wgl.ContextAttribs - commentId: T:OpenTK.Graphics.Wgl.ContextAttribs - parent: OpenTK.Graphics.Wgl - href: OpenTK.Graphics.Wgl.ContextAttribs.html - name: ContextAttribs - nameWithType: ContextAttribs - fullName: OpenTK.Graphics.Wgl.ContextAttribs diff --git a/api/OpenTK.Graphics.Wgl.ContextAttribute.yml b/api/OpenTK.Graphics.Wgl.ContextAttribute.yml deleted file mode 100644 index d1acede2..00000000 --- a/api/OpenTK.Graphics.Wgl.ContextAttribute.yml +++ /dev/null @@ -1,152 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: OpenTK.Graphics.Wgl.ContextAttribute - commentId: T:OpenTK.Graphics.Wgl.ContextAttribute - id: ContextAttribute - parent: OpenTK.Graphics.Wgl - children: - - OpenTK.Graphics.Wgl.ContextAttribute.NumVideoCaptureSlotsNv - - OpenTK.Graphics.Wgl.ContextAttribute.NumVideoSlotsNv - langs: - - csharp - - vb - name: ContextAttribute - nameWithType: ContextAttribute - fullName: OpenTK.Graphics.Wgl.ContextAttribute - type: Enum - source: - id: ContextAttribute - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 361 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: Used in - example: [] - syntax: - content: 'public enum ContextAttribute : uint' - content.vb: Public Enum ContextAttribute As UInteger -- uid: OpenTK.Graphics.Wgl.ContextAttribute.NumVideoCaptureSlotsNv - commentId: F:OpenTK.Graphics.Wgl.ContextAttribute.NumVideoCaptureSlotsNv - id: NumVideoCaptureSlotsNv - parent: OpenTK.Graphics.Wgl.ContextAttribute - langs: - - csharp - - vb - name: NumVideoCaptureSlotsNv - nameWithType: ContextAttribute.NumVideoCaptureSlotsNv - fullName: OpenTK.Graphics.Wgl.ContextAttribute.NumVideoCaptureSlotsNv - type: Field - source: - id: NumVideoCaptureSlotsNv - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 363 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: NumVideoCaptureSlotsNv = 8399 - return: - type: OpenTK.Graphics.Wgl.ContextAttribute -- uid: OpenTK.Graphics.Wgl.ContextAttribute.NumVideoSlotsNv - commentId: F:OpenTK.Graphics.Wgl.ContextAttribute.NumVideoSlotsNv - id: NumVideoSlotsNv - parent: OpenTK.Graphics.Wgl.ContextAttribute - langs: - - csharp - - vb - name: NumVideoSlotsNv - nameWithType: ContextAttribute.NumVideoSlotsNv - fullName: OpenTK.Graphics.Wgl.ContextAttribute.NumVideoSlotsNv - type: Field - source: - id: NumVideoSlotsNv - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 364 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: NumVideoSlotsNv = 8432 - return: - type: OpenTK.Graphics.Wgl.ContextAttribute -references: -- uid: OpenTK.Graphics.Wgl.Wgl.NV.QueryCurrentContextNV(OpenTK.Graphics.Wgl.ContextAttribute,System.Int32*) - commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.QueryCurrentContextNV(OpenTK.Graphics.Wgl.ContextAttribute,System.Int32*) - isExternal: true - href: OpenTK.Graphics.Wgl.Wgl.NV.html#OpenTK_Graphics_Wgl_Wgl_NV_QueryCurrentContextNV_OpenTK_Graphics_Wgl_ContextAttribute_System_Int32__ - name: QueryCurrentContextNV(ContextAttribute, int*) - nameWithType: Wgl.NV.QueryCurrentContextNV(ContextAttribute, int*) - fullName: OpenTK.Graphics.Wgl.Wgl.NV.QueryCurrentContextNV(OpenTK.Graphics.Wgl.ContextAttribute, int*) - nameWithType.vb: Wgl.NV.QueryCurrentContextNV(ContextAttribute, Integer*) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.QueryCurrentContextNV(OpenTK.Graphics.Wgl.ContextAttribute, Integer*) - name.vb: QueryCurrentContextNV(ContextAttribute, Integer*) - spec.csharp: - - uid: OpenTK.Graphics.Wgl.Wgl.NV.QueryCurrentContextNV(OpenTK.Graphics.Wgl.ContextAttribute,System.Int32*) - name: QueryCurrentContextNV - href: OpenTK.Graphics.Wgl.Wgl.NV.html#OpenTK_Graphics_Wgl_Wgl_NV_QueryCurrentContextNV_OpenTK_Graphics_Wgl_ContextAttribute_System_Int32__ - - name: ( - - uid: OpenTK.Graphics.Wgl.ContextAttribute - name: ContextAttribute - href: OpenTK.Graphics.Wgl.ContextAttribute.html - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '*' - - name: ) - spec.vb: - - uid: OpenTK.Graphics.Wgl.Wgl.NV.QueryCurrentContextNV(OpenTK.Graphics.Wgl.ContextAttribute,System.Int32*) - name: QueryCurrentContextNV - href: OpenTK.Graphics.Wgl.Wgl.NV.html#OpenTK_Graphics_Wgl_Wgl_NV_QueryCurrentContextNV_OpenTK_Graphics_Wgl_ContextAttribute_System_Int32__ - - name: ( - - uid: OpenTK.Graphics.Wgl.ContextAttribute - name: ContextAttribute - href: OpenTK.Graphics.Wgl.ContextAttribute.html - - name: ',' - - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '*' - - name: ) -- uid: OpenTK.Graphics.Wgl - commentId: N:OpenTK.Graphics.Wgl - href: OpenTK.html - name: OpenTK.Graphics.Wgl - nameWithType: OpenTK.Graphics.Wgl - fullName: OpenTK.Graphics.Wgl - spec.csharp: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Wgl - name: Wgl - href: OpenTK.Graphics.Wgl.html - spec.vb: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Wgl - name: Wgl - href: OpenTK.Graphics.Wgl.html -- uid: OpenTK.Graphics.Wgl.ContextAttribute - commentId: T:OpenTK.Graphics.Wgl.ContextAttribute - parent: OpenTK.Graphics.Wgl - href: OpenTK.Graphics.Wgl.ContextAttribute.html - name: ContextAttribute - nameWithType: ContextAttribute - fullName: OpenTK.Graphics.Wgl.ContextAttribute diff --git a/api/OpenTK.Graphics.Wgl.ContextFlagsMask.yml b/api/OpenTK.Graphics.Wgl.ContextFlagsMask.yml deleted file mode 100644 index bb633312..00000000 --- a/api/OpenTK.Graphics.Wgl.ContextFlagsMask.yml +++ /dev/null @@ -1,164 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: OpenTK.Graphics.Wgl.ContextFlagsMask - commentId: T:OpenTK.Graphics.Wgl.ContextFlagsMask - id: ContextFlagsMask - parent: OpenTK.Graphics.Wgl - children: - - OpenTK.Graphics.Wgl.ContextFlagsMask.ContextDebugBitArb - - OpenTK.Graphics.Wgl.ContextFlagsMask.ContextForwardCompatibleBitArb - - OpenTK.Graphics.Wgl.ContextFlagsMask.ContextResetIsolationBitArb - - OpenTK.Graphics.Wgl.ContextFlagsMask.ContextRobustAccessBitArb - langs: - - csharp - - vb - name: ContextFlagsMask - nameWithType: ContextFlagsMask - fullName: OpenTK.Graphics.Wgl.ContextFlagsMask - type: Enum - source: - id: ContextFlagsMask - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 366 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: >- - [Flags] - - public enum ContextFlagsMask : uint - content.vb: >- - - - Public Enum ContextFlagsMask As UInteger - attributes: - - type: System.FlagsAttribute - ctor: System.FlagsAttribute.#ctor - arguments: [] -- uid: OpenTK.Graphics.Wgl.ContextFlagsMask.ContextDebugBitArb - commentId: F:OpenTK.Graphics.Wgl.ContextFlagsMask.ContextDebugBitArb - id: ContextDebugBitArb - parent: OpenTK.Graphics.Wgl.ContextFlagsMask - langs: - - csharp - - vb - name: ContextDebugBitArb - nameWithType: ContextFlagsMask.ContextDebugBitArb - fullName: OpenTK.Graphics.Wgl.ContextFlagsMask.ContextDebugBitArb - type: Field - source: - id: ContextDebugBitArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 369 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: ContextDebugBitArb = 1 - return: - type: OpenTK.Graphics.Wgl.ContextFlagsMask -- uid: OpenTK.Graphics.Wgl.ContextFlagsMask.ContextForwardCompatibleBitArb - commentId: F:OpenTK.Graphics.Wgl.ContextFlagsMask.ContextForwardCompatibleBitArb - id: ContextForwardCompatibleBitArb - parent: OpenTK.Graphics.Wgl.ContextFlagsMask - langs: - - csharp - - vb - name: ContextForwardCompatibleBitArb - nameWithType: ContextFlagsMask.ContextForwardCompatibleBitArb - fullName: OpenTK.Graphics.Wgl.ContextFlagsMask.ContextForwardCompatibleBitArb - type: Field - source: - id: ContextForwardCompatibleBitArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 370 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: ContextForwardCompatibleBitArb = 2 - return: - type: OpenTK.Graphics.Wgl.ContextFlagsMask -- uid: OpenTK.Graphics.Wgl.ContextFlagsMask.ContextRobustAccessBitArb - commentId: F:OpenTK.Graphics.Wgl.ContextFlagsMask.ContextRobustAccessBitArb - id: ContextRobustAccessBitArb - parent: OpenTK.Graphics.Wgl.ContextFlagsMask - langs: - - csharp - - vb - name: ContextRobustAccessBitArb - nameWithType: ContextFlagsMask.ContextRobustAccessBitArb - fullName: OpenTK.Graphics.Wgl.ContextFlagsMask.ContextRobustAccessBitArb - type: Field - source: - id: ContextRobustAccessBitArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 371 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: ContextRobustAccessBitArb = 4 - return: - type: OpenTK.Graphics.Wgl.ContextFlagsMask -- uid: OpenTK.Graphics.Wgl.ContextFlagsMask.ContextResetIsolationBitArb - commentId: F:OpenTK.Graphics.Wgl.ContextFlagsMask.ContextResetIsolationBitArb - id: ContextResetIsolationBitArb - parent: OpenTK.Graphics.Wgl.ContextFlagsMask - langs: - - csharp - - vb - name: ContextResetIsolationBitArb - nameWithType: ContextFlagsMask.ContextResetIsolationBitArb - fullName: OpenTK.Graphics.Wgl.ContextFlagsMask.ContextResetIsolationBitArb - type: Field - source: - id: ContextResetIsolationBitArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 372 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: ContextResetIsolationBitArb = 8 - return: - type: OpenTK.Graphics.Wgl.ContextFlagsMask -references: -- uid: OpenTK.Graphics.Wgl - commentId: N:OpenTK.Graphics.Wgl - href: OpenTK.html - name: OpenTK.Graphics.Wgl - nameWithType: OpenTK.Graphics.Wgl - fullName: OpenTK.Graphics.Wgl - spec.csharp: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Wgl - name: Wgl - href: OpenTK.Graphics.Wgl.html - spec.vb: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Wgl - name: Wgl - href: OpenTK.Graphics.Wgl.html -- uid: OpenTK.Graphics.Wgl.ContextFlagsMask - commentId: T:OpenTK.Graphics.Wgl.ContextFlagsMask - parent: OpenTK.Graphics.Wgl - href: OpenTK.Graphics.Wgl.ContextFlagsMask.html - name: ContextFlagsMask - nameWithType: ContextFlagsMask - fullName: OpenTK.Graphics.Wgl.ContextFlagsMask diff --git a/api/OpenTK.Graphics.Wgl.ContextProfileMask.yml b/api/OpenTK.Graphics.Wgl.ContextProfileMask.yml deleted file mode 100644 index ef50e4b3..00000000 --- a/api/OpenTK.Graphics.Wgl.ContextProfileMask.yml +++ /dev/null @@ -1,164 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: OpenTK.Graphics.Wgl.ContextProfileMask - commentId: T:OpenTK.Graphics.Wgl.ContextProfileMask - id: ContextProfileMask - parent: OpenTK.Graphics.Wgl - children: - - OpenTK.Graphics.Wgl.ContextProfileMask.ContextCompatibilityProfileBitArb - - OpenTK.Graphics.Wgl.ContextProfileMask.ContextCoreProfileBitArb - - OpenTK.Graphics.Wgl.ContextProfileMask.ContextEs2ProfileBitExt - - OpenTK.Graphics.Wgl.ContextProfileMask.ContextEsProfileBitExt - langs: - - csharp - - vb - name: ContextProfileMask - nameWithType: ContextProfileMask - fullName: OpenTK.Graphics.Wgl.ContextProfileMask - type: Enum - source: - id: ContextProfileMask - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 374 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: >- - [Flags] - - public enum ContextProfileMask : uint - content.vb: >- - - - Public Enum ContextProfileMask As UInteger - attributes: - - type: System.FlagsAttribute - ctor: System.FlagsAttribute.#ctor - arguments: [] -- uid: OpenTK.Graphics.Wgl.ContextProfileMask.ContextCoreProfileBitArb - commentId: F:OpenTK.Graphics.Wgl.ContextProfileMask.ContextCoreProfileBitArb - id: ContextCoreProfileBitArb - parent: OpenTK.Graphics.Wgl.ContextProfileMask - langs: - - csharp - - vb - name: ContextCoreProfileBitArb - nameWithType: ContextProfileMask.ContextCoreProfileBitArb - fullName: OpenTK.Graphics.Wgl.ContextProfileMask.ContextCoreProfileBitArb - type: Field - source: - id: ContextCoreProfileBitArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 377 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: ContextCoreProfileBitArb = 1 - return: - type: OpenTK.Graphics.Wgl.ContextProfileMask -- uid: OpenTK.Graphics.Wgl.ContextProfileMask.ContextCompatibilityProfileBitArb - commentId: F:OpenTK.Graphics.Wgl.ContextProfileMask.ContextCompatibilityProfileBitArb - id: ContextCompatibilityProfileBitArb - parent: OpenTK.Graphics.Wgl.ContextProfileMask - langs: - - csharp - - vb - name: ContextCompatibilityProfileBitArb - nameWithType: ContextProfileMask.ContextCompatibilityProfileBitArb - fullName: OpenTK.Graphics.Wgl.ContextProfileMask.ContextCompatibilityProfileBitArb - type: Field - source: - id: ContextCompatibilityProfileBitArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 378 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: ContextCompatibilityProfileBitArb = 2 - return: - type: OpenTK.Graphics.Wgl.ContextProfileMask -- uid: OpenTK.Graphics.Wgl.ContextProfileMask.ContextEs2ProfileBitExt - commentId: F:OpenTK.Graphics.Wgl.ContextProfileMask.ContextEs2ProfileBitExt - id: ContextEs2ProfileBitExt - parent: OpenTK.Graphics.Wgl.ContextProfileMask - langs: - - csharp - - vb - name: ContextEs2ProfileBitExt - nameWithType: ContextProfileMask.ContextEs2ProfileBitExt - fullName: OpenTK.Graphics.Wgl.ContextProfileMask.ContextEs2ProfileBitExt - type: Field - source: - id: ContextEs2ProfileBitExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 379 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: ContextEs2ProfileBitExt = 4 - return: - type: OpenTK.Graphics.Wgl.ContextProfileMask -- uid: OpenTK.Graphics.Wgl.ContextProfileMask.ContextEsProfileBitExt - commentId: F:OpenTK.Graphics.Wgl.ContextProfileMask.ContextEsProfileBitExt - id: ContextEsProfileBitExt - parent: OpenTK.Graphics.Wgl.ContextProfileMask - langs: - - csharp - - vb - name: ContextEsProfileBitExt - nameWithType: ContextProfileMask.ContextEsProfileBitExt - fullName: OpenTK.Graphics.Wgl.ContextProfileMask.ContextEsProfileBitExt - type: Field - source: - id: ContextEsProfileBitExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 380 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: ContextEsProfileBitExt = 4 - return: - type: OpenTK.Graphics.Wgl.ContextProfileMask -references: -- uid: OpenTK.Graphics.Wgl - commentId: N:OpenTK.Graphics.Wgl - href: OpenTK.html - name: OpenTK.Graphics.Wgl - nameWithType: OpenTK.Graphics.Wgl - fullName: OpenTK.Graphics.Wgl - spec.csharp: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Wgl - name: Wgl - href: OpenTK.Graphics.Wgl.html - spec.vb: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Wgl - name: Wgl - href: OpenTK.Graphics.Wgl.html -- uid: OpenTK.Graphics.Wgl.ContextProfileMask - commentId: T:OpenTK.Graphics.Wgl.ContextProfileMask - parent: OpenTK.Graphics.Wgl - href: OpenTK.Graphics.Wgl.ContextProfileMask.html - name: ContextProfileMask - nameWithType: ContextProfileMask - fullName: OpenTK.Graphics.Wgl.ContextProfileMask diff --git a/api/OpenTK.Graphics.Wgl.DXInteropMaskNV.yml b/api/OpenTK.Graphics.Wgl.DXInteropMaskNV.yml deleted file mode 100644 index 838dfff0..00000000 --- a/api/OpenTK.Graphics.Wgl.DXInteropMaskNV.yml +++ /dev/null @@ -1,259 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: OpenTK.Graphics.Wgl.DXInteropMaskNV - commentId: T:OpenTK.Graphics.Wgl.DXInteropMaskNV - id: DXInteropMaskNV - parent: OpenTK.Graphics.Wgl - children: - - OpenTK.Graphics.Wgl.DXInteropMaskNV.AccessReadOnlyNv - - OpenTK.Graphics.Wgl.DXInteropMaskNV.AccessReadWriteNv - - OpenTK.Graphics.Wgl.DXInteropMaskNV.AccessWriteDiscardNv - langs: - - csharp - - vb - name: DXInteropMaskNV - nameWithType: DXInteropMaskNV - fullName: OpenTK.Graphics.Wgl.DXInteropMaskNV - type: Enum - source: - id: DXInteropMaskNV - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 391 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: Used in , - example: [] - syntax: - content: >- - [Flags] - - public enum DXInteropMaskNV : uint - content.vb: >- - - - Public Enum DXInteropMaskNV As UInteger - attributes: - - type: System.FlagsAttribute - ctor: System.FlagsAttribute.#ctor - arguments: [] -- uid: OpenTK.Graphics.Wgl.DXInteropMaskNV.AccessReadOnlyNv - commentId: F:OpenTK.Graphics.Wgl.DXInteropMaskNV.AccessReadOnlyNv - id: AccessReadOnlyNv - parent: OpenTK.Graphics.Wgl.DXInteropMaskNV - langs: - - csharp - - vb - name: AccessReadOnlyNv - nameWithType: DXInteropMaskNV.AccessReadOnlyNv - fullName: OpenTK.Graphics.Wgl.DXInteropMaskNV.AccessReadOnlyNv - type: Field - source: - id: AccessReadOnlyNv - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 394 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: AccessReadOnlyNv = 0 - return: - type: OpenTK.Graphics.Wgl.DXInteropMaskNV -- uid: OpenTK.Graphics.Wgl.DXInteropMaskNV.AccessReadWriteNv - commentId: F:OpenTK.Graphics.Wgl.DXInteropMaskNV.AccessReadWriteNv - id: AccessReadWriteNv - parent: OpenTK.Graphics.Wgl.DXInteropMaskNV - langs: - - csharp - - vb - name: AccessReadWriteNv - nameWithType: DXInteropMaskNV.AccessReadWriteNv - fullName: OpenTK.Graphics.Wgl.DXInteropMaskNV.AccessReadWriteNv - type: Field - source: - id: AccessReadWriteNv - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 395 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: AccessReadWriteNv = 1 - return: - type: OpenTK.Graphics.Wgl.DXInteropMaskNV -- uid: OpenTK.Graphics.Wgl.DXInteropMaskNV.AccessWriteDiscardNv - commentId: F:OpenTK.Graphics.Wgl.DXInteropMaskNV.AccessWriteDiscardNv - id: AccessWriteDiscardNv - parent: OpenTK.Graphics.Wgl.DXInteropMaskNV - langs: - - csharp - - vb - name: AccessWriteDiscardNv - nameWithType: DXInteropMaskNV.AccessWriteDiscardNv - fullName: OpenTK.Graphics.Wgl.DXInteropMaskNV.AccessWriteDiscardNv - type: Field - source: - id: AccessWriteDiscardNv - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 396 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: AccessWriteDiscardNv = 2 - return: - type: OpenTK.Graphics.Wgl.DXInteropMaskNV -references: -- uid: OpenTK.Graphics.Wgl.Wgl.NV.DXObjectAccessNV(System.IntPtr,OpenTK.Graphics.Wgl.DXInteropMaskNV) - commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.DXObjectAccessNV(System.IntPtr,OpenTK.Graphics.Wgl.DXInteropMaskNV) - isExternal: true - href: OpenTK.Graphics.Wgl.Wgl.NV.html#OpenTK_Graphics_Wgl_Wgl_NV_DXObjectAccessNV_System_IntPtr_OpenTK_Graphics_Wgl_DXInteropMaskNV_ - name: DXObjectAccessNV(nint, DXInteropMaskNV) - nameWithType: Wgl.NV.DXObjectAccessNV(nint, DXInteropMaskNV) - fullName: OpenTK.Graphics.Wgl.Wgl.NV.DXObjectAccessNV(nint, OpenTK.Graphics.Wgl.DXInteropMaskNV) - nameWithType.vb: Wgl.NV.DXObjectAccessNV(IntPtr, DXInteropMaskNV) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.DXObjectAccessNV(System.IntPtr, OpenTK.Graphics.Wgl.DXInteropMaskNV) - name.vb: DXObjectAccessNV(IntPtr, DXInteropMaskNV) - spec.csharp: - - uid: OpenTK.Graphics.Wgl.Wgl.NV.DXObjectAccessNV(System.IntPtr,OpenTK.Graphics.Wgl.DXInteropMaskNV) - name: DXObjectAccessNV - href: OpenTK.Graphics.Wgl.Wgl.NV.html#OpenTK_Graphics_Wgl_Wgl_NV_DXObjectAccessNV_System_IntPtr_OpenTK_Graphics_Wgl_DXInteropMaskNV_ - - name: ( - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: OpenTK.Graphics.Wgl.DXInteropMaskNV - name: DXInteropMaskNV - href: OpenTK.Graphics.Wgl.DXInteropMaskNV.html - - name: ) - spec.vb: - - uid: OpenTK.Graphics.Wgl.Wgl.NV.DXObjectAccessNV(System.IntPtr,OpenTK.Graphics.Wgl.DXInteropMaskNV) - name: DXObjectAccessNV - href: OpenTK.Graphics.Wgl.Wgl.NV.html#OpenTK_Graphics_Wgl_Wgl_NV_DXObjectAccessNV_System_IntPtr_OpenTK_Graphics_Wgl_DXInteropMaskNV_ - - name: ( - - uid: System.IntPtr - name: IntPtr - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: OpenTK.Graphics.Wgl.DXInteropMaskNV - name: DXInteropMaskNV - href: OpenTK.Graphics.Wgl.DXInteropMaskNV.html - - name: ) -- uid: OpenTK.Graphics.Wgl.Wgl.NV.DXRegisterObjectNV(System.IntPtr,System.Void*,System.UInt32,OpenTK.Graphics.Wgl.ObjectTypeDX,OpenTK.Graphics.Wgl.DXInteropMaskNV) - commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.DXRegisterObjectNV(System.IntPtr,System.Void*,System.UInt32,OpenTK.Graphics.Wgl.ObjectTypeDX,OpenTK.Graphics.Wgl.DXInteropMaskNV) - isExternal: true - href: OpenTK.Graphics.Wgl.Wgl.NV.html#OpenTK_Graphics_Wgl_Wgl_NV_DXRegisterObjectNV_System_IntPtr_System_Void__System_UInt32_OpenTK_Graphics_Wgl_ObjectTypeDX_OpenTK_Graphics_Wgl_DXInteropMaskNV_ - name: DXRegisterObjectNV(nint, void*, uint, ObjectTypeDX, DXInteropMaskNV) - nameWithType: Wgl.NV.DXRegisterObjectNV(nint, void*, uint, ObjectTypeDX, DXInteropMaskNV) - fullName: OpenTK.Graphics.Wgl.Wgl.NV.DXRegisterObjectNV(nint, void*, uint, OpenTK.Graphics.Wgl.ObjectTypeDX, OpenTK.Graphics.Wgl.DXInteropMaskNV) - nameWithType.vb: Wgl.NV.DXRegisterObjectNV(IntPtr, Void*, UInteger, ObjectTypeDX, DXInteropMaskNV) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.DXRegisterObjectNV(System.IntPtr, Void*, UInteger, OpenTK.Graphics.Wgl.ObjectTypeDX, OpenTK.Graphics.Wgl.DXInteropMaskNV) - name.vb: DXRegisterObjectNV(IntPtr, Void*, UInteger, ObjectTypeDX, DXInteropMaskNV) - spec.csharp: - - uid: OpenTK.Graphics.Wgl.Wgl.NV.DXRegisterObjectNV(System.IntPtr,System.Void*,System.UInt32,OpenTK.Graphics.Wgl.ObjectTypeDX,OpenTK.Graphics.Wgl.DXInteropMaskNV) - name: DXRegisterObjectNV - href: OpenTK.Graphics.Wgl.Wgl.NV.html#OpenTK_Graphics_Wgl_Wgl_NV_DXRegisterObjectNV_System_IntPtr_System_Void__System_UInt32_OpenTK_Graphics_Wgl_ObjectTypeDX_OpenTK_Graphics_Wgl_DXInteropMaskNV_ - - name: ( - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.Void - name: void - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.void - - name: '*' - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ',' - - name: " " - - uid: OpenTK.Graphics.Wgl.ObjectTypeDX - name: ObjectTypeDX - href: OpenTK.Graphics.Wgl.ObjectTypeDX.html - - name: ',' - - name: " " - - uid: OpenTK.Graphics.Wgl.DXInteropMaskNV - name: DXInteropMaskNV - href: OpenTK.Graphics.Wgl.DXInteropMaskNV.html - - name: ) - spec.vb: - - uid: OpenTK.Graphics.Wgl.Wgl.NV.DXRegisterObjectNV(System.IntPtr,System.Void*,System.UInt32,OpenTK.Graphics.Wgl.ObjectTypeDX,OpenTK.Graphics.Wgl.DXInteropMaskNV) - name: DXRegisterObjectNV - href: OpenTK.Graphics.Wgl.Wgl.NV.html#OpenTK_Graphics_Wgl_Wgl_NV_DXRegisterObjectNV_System_IntPtr_System_Void__System_UInt32_OpenTK_Graphics_Wgl_ObjectTypeDX_OpenTK_Graphics_Wgl_DXInteropMaskNV_ - - name: ( - - uid: System.IntPtr - name: IntPtr - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.Void - name: Void - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.void - - name: '*' - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ',' - - name: " " - - uid: OpenTK.Graphics.Wgl.ObjectTypeDX - name: ObjectTypeDX - href: OpenTK.Graphics.Wgl.ObjectTypeDX.html - - name: ',' - - name: " " - - uid: OpenTK.Graphics.Wgl.DXInteropMaskNV - name: DXInteropMaskNV - href: OpenTK.Graphics.Wgl.DXInteropMaskNV.html - - name: ) -- uid: OpenTK.Graphics.Wgl - commentId: N:OpenTK.Graphics.Wgl - href: OpenTK.html - name: OpenTK.Graphics.Wgl - nameWithType: OpenTK.Graphics.Wgl - fullName: OpenTK.Graphics.Wgl - spec.csharp: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Wgl - name: Wgl - href: OpenTK.Graphics.Wgl.html - spec.vb: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Wgl - name: Wgl - href: OpenTK.Graphics.Wgl.html -- uid: OpenTK.Graphics.Wgl.DXInteropMaskNV - commentId: T:OpenTK.Graphics.Wgl.DXInteropMaskNV - parent: OpenTK.Graphics.Wgl - href: OpenTK.Graphics.Wgl.DXInteropMaskNV.html - name: DXInteropMaskNV - nameWithType: DXInteropMaskNV - fullName: OpenTK.Graphics.Wgl.DXInteropMaskNV diff --git a/api/OpenTK.Graphics.Wgl.DigitalVideoAttribute.yml b/api/OpenTK.Graphics.Wgl.DigitalVideoAttribute.yml deleted file mode 100644 index 7ac90d42..00000000 --- a/api/OpenTK.Graphics.Wgl.DigitalVideoAttribute.yml +++ /dev/null @@ -1,264 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: OpenTK.Graphics.Wgl.DigitalVideoAttribute - commentId: T:OpenTK.Graphics.Wgl.DigitalVideoAttribute - id: DigitalVideoAttribute - parent: OpenTK.Graphics.Wgl - children: - - OpenTK.Graphics.Wgl.DigitalVideoAttribute.DigitalVideoCursorAlphaFramebufferI3d - - OpenTK.Graphics.Wgl.DigitalVideoAttribute.DigitalVideoCursorAlphaValueI3d - - OpenTK.Graphics.Wgl.DigitalVideoAttribute.DigitalVideoCursorIncludedI3d - - OpenTK.Graphics.Wgl.DigitalVideoAttribute.DigitalVideoGammaCorrectedI3d - langs: - - csharp - - vb - name: DigitalVideoAttribute - nameWithType: DigitalVideoAttribute - fullName: OpenTK.Graphics.Wgl.DigitalVideoAttribute - type: Enum - source: - id: DigitalVideoAttribute - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 383 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: Used in , - example: [] - syntax: - content: 'public enum DigitalVideoAttribute : uint' - content.vb: Public Enum DigitalVideoAttribute As UInteger -- uid: OpenTK.Graphics.Wgl.DigitalVideoAttribute.DigitalVideoCursorAlphaFramebufferI3d - commentId: F:OpenTK.Graphics.Wgl.DigitalVideoAttribute.DigitalVideoCursorAlphaFramebufferI3d - id: DigitalVideoCursorAlphaFramebufferI3d - parent: OpenTK.Graphics.Wgl.DigitalVideoAttribute - langs: - - csharp - - vb - name: DigitalVideoCursorAlphaFramebufferI3d - nameWithType: DigitalVideoAttribute.DigitalVideoCursorAlphaFramebufferI3d - fullName: OpenTK.Graphics.Wgl.DigitalVideoAttribute.DigitalVideoCursorAlphaFramebufferI3d - type: Field - source: - id: DigitalVideoCursorAlphaFramebufferI3d - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 385 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: DigitalVideoCursorAlphaFramebufferI3d = 8272 - return: - type: OpenTK.Graphics.Wgl.DigitalVideoAttribute -- uid: OpenTK.Graphics.Wgl.DigitalVideoAttribute.DigitalVideoCursorAlphaValueI3d - commentId: F:OpenTK.Graphics.Wgl.DigitalVideoAttribute.DigitalVideoCursorAlphaValueI3d - id: DigitalVideoCursorAlphaValueI3d - parent: OpenTK.Graphics.Wgl.DigitalVideoAttribute - langs: - - csharp - - vb - name: DigitalVideoCursorAlphaValueI3d - nameWithType: DigitalVideoAttribute.DigitalVideoCursorAlphaValueI3d - fullName: OpenTK.Graphics.Wgl.DigitalVideoAttribute.DigitalVideoCursorAlphaValueI3d - type: Field - source: - id: DigitalVideoCursorAlphaValueI3d - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 386 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: DigitalVideoCursorAlphaValueI3d = 8273 - return: - type: OpenTK.Graphics.Wgl.DigitalVideoAttribute -- uid: OpenTK.Graphics.Wgl.DigitalVideoAttribute.DigitalVideoCursorIncludedI3d - commentId: F:OpenTK.Graphics.Wgl.DigitalVideoAttribute.DigitalVideoCursorIncludedI3d - id: DigitalVideoCursorIncludedI3d - parent: OpenTK.Graphics.Wgl.DigitalVideoAttribute - langs: - - csharp - - vb - name: DigitalVideoCursorIncludedI3d - nameWithType: DigitalVideoAttribute.DigitalVideoCursorIncludedI3d - fullName: OpenTK.Graphics.Wgl.DigitalVideoAttribute.DigitalVideoCursorIncludedI3d - type: Field - source: - id: DigitalVideoCursorIncludedI3d - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 387 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: DigitalVideoCursorIncludedI3d = 8274 - return: - type: OpenTK.Graphics.Wgl.DigitalVideoAttribute -- uid: OpenTK.Graphics.Wgl.DigitalVideoAttribute.DigitalVideoGammaCorrectedI3d - commentId: F:OpenTK.Graphics.Wgl.DigitalVideoAttribute.DigitalVideoGammaCorrectedI3d - id: DigitalVideoGammaCorrectedI3d - parent: OpenTK.Graphics.Wgl.DigitalVideoAttribute - langs: - - csharp - - vb - name: DigitalVideoGammaCorrectedI3d - nameWithType: DigitalVideoAttribute.DigitalVideoGammaCorrectedI3d - fullName: OpenTK.Graphics.Wgl.DigitalVideoAttribute.DigitalVideoGammaCorrectedI3d - type: Field - source: - id: DigitalVideoGammaCorrectedI3d - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 388 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: DigitalVideoGammaCorrectedI3d = 8275 - return: - type: OpenTK.Graphics.Wgl.DigitalVideoAttribute -references: -- uid: OpenTK.Graphics.Wgl.Wgl.I3D.GetDigitalVideoParametersI3D(System.IntPtr,OpenTK.Graphics.Wgl.DigitalVideoAttribute,System.Int32*) - commentId: M:OpenTK.Graphics.Wgl.Wgl.I3D.GetDigitalVideoParametersI3D(System.IntPtr,OpenTK.Graphics.Wgl.DigitalVideoAttribute,System.Int32*) - isExternal: true - href: OpenTK.Graphics.Wgl.Wgl.I3D.html#OpenTK_Graphics_Wgl_Wgl_I3D_GetDigitalVideoParametersI3D_System_IntPtr_OpenTK_Graphics_Wgl_DigitalVideoAttribute_System_Int32__ - name: GetDigitalVideoParametersI3D(nint, DigitalVideoAttribute, int*) - nameWithType: Wgl.I3D.GetDigitalVideoParametersI3D(nint, DigitalVideoAttribute, int*) - fullName: OpenTK.Graphics.Wgl.Wgl.I3D.GetDigitalVideoParametersI3D(nint, OpenTK.Graphics.Wgl.DigitalVideoAttribute, int*) - nameWithType.vb: Wgl.I3D.GetDigitalVideoParametersI3D(IntPtr, DigitalVideoAttribute, Integer*) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.I3D.GetDigitalVideoParametersI3D(System.IntPtr, OpenTK.Graphics.Wgl.DigitalVideoAttribute, Integer*) - name.vb: GetDigitalVideoParametersI3D(IntPtr, DigitalVideoAttribute, Integer*) - spec.csharp: - - uid: OpenTK.Graphics.Wgl.Wgl.I3D.GetDigitalVideoParametersI3D(System.IntPtr,OpenTK.Graphics.Wgl.DigitalVideoAttribute,System.Int32*) - name: GetDigitalVideoParametersI3D - href: OpenTK.Graphics.Wgl.Wgl.I3D.html#OpenTK_Graphics_Wgl_Wgl_I3D_GetDigitalVideoParametersI3D_System_IntPtr_OpenTK_Graphics_Wgl_DigitalVideoAttribute_System_Int32__ - - name: ( - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: OpenTK.Graphics.Wgl.DigitalVideoAttribute - name: DigitalVideoAttribute - href: OpenTK.Graphics.Wgl.DigitalVideoAttribute.html - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '*' - - name: ) - spec.vb: - - uid: OpenTK.Graphics.Wgl.Wgl.I3D.GetDigitalVideoParametersI3D(System.IntPtr,OpenTK.Graphics.Wgl.DigitalVideoAttribute,System.Int32*) - name: GetDigitalVideoParametersI3D - href: OpenTK.Graphics.Wgl.Wgl.I3D.html#OpenTK_Graphics_Wgl_Wgl_I3D_GetDigitalVideoParametersI3D_System_IntPtr_OpenTK_Graphics_Wgl_DigitalVideoAttribute_System_Int32__ - - name: ( - - uid: System.IntPtr - name: IntPtr - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: OpenTK.Graphics.Wgl.DigitalVideoAttribute - name: DigitalVideoAttribute - href: OpenTK.Graphics.Wgl.DigitalVideoAttribute.html - - name: ',' - - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '*' - - name: ) -- uid: OpenTK.Graphics.Wgl.Wgl.I3D.SetDigitalVideoParametersI3D(System.IntPtr,OpenTK.Graphics.Wgl.DigitalVideoAttribute,System.Int32*) - commentId: M:OpenTK.Graphics.Wgl.Wgl.I3D.SetDigitalVideoParametersI3D(System.IntPtr,OpenTK.Graphics.Wgl.DigitalVideoAttribute,System.Int32*) - isExternal: true - href: OpenTK.Graphics.Wgl.Wgl.I3D.html#OpenTK_Graphics_Wgl_Wgl_I3D_SetDigitalVideoParametersI3D_System_IntPtr_OpenTK_Graphics_Wgl_DigitalVideoAttribute_System_Int32__ - name: SetDigitalVideoParametersI3D(nint, DigitalVideoAttribute, int*) - nameWithType: Wgl.I3D.SetDigitalVideoParametersI3D(nint, DigitalVideoAttribute, int*) - fullName: OpenTK.Graphics.Wgl.Wgl.I3D.SetDigitalVideoParametersI3D(nint, OpenTK.Graphics.Wgl.DigitalVideoAttribute, int*) - nameWithType.vb: Wgl.I3D.SetDigitalVideoParametersI3D(IntPtr, DigitalVideoAttribute, Integer*) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.I3D.SetDigitalVideoParametersI3D(System.IntPtr, OpenTK.Graphics.Wgl.DigitalVideoAttribute, Integer*) - name.vb: SetDigitalVideoParametersI3D(IntPtr, DigitalVideoAttribute, Integer*) - spec.csharp: - - uid: OpenTK.Graphics.Wgl.Wgl.I3D.SetDigitalVideoParametersI3D(System.IntPtr,OpenTK.Graphics.Wgl.DigitalVideoAttribute,System.Int32*) - name: SetDigitalVideoParametersI3D - href: OpenTK.Graphics.Wgl.Wgl.I3D.html#OpenTK_Graphics_Wgl_Wgl_I3D_SetDigitalVideoParametersI3D_System_IntPtr_OpenTK_Graphics_Wgl_DigitalVideoAttribute_System_Int32__ - - name: ( - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: OpenTK.Graphics.Wgl.DigitalVideoAttribute - name: DigitalVideoAttribute - href: OpenTK.Graphics.Wgl.DigitalVideoAttribute.html - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '*' - - name: ) - spec.vb: - - uid: OpenTK.Graphics.Wgl.Wgl.I3D.SetDigitalVideoParametersI3D(System.IntPtr,OpenTK.Graphics.Wgl.DigitalVideoAttribute,System.Int32*) - name: SetDigitalVideoParametersI3D - href: OpenTK.Graphics.Wgl.Wgl.I3D.html#OpenTK_Graphics_Wgl_Wgl_I3D_SetDigitalVideoParametersI3D_System_IntPtr_OpenTK_Graphics_Wgl_DigitalVideoAttribute_System_Int32__ - - name: ( - - uid: System.IntPtr - name: IntPtr - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: OpenTK.Graphics.Wgl.DigitalVideoAttribute - name: DigitalVideoAttribute - href: OpenTK.Graphics.Wgl.DigitalVideoAttribute.html - - name: ',' - - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '*' - - name: ) -- uid: OpenTK.Graphics.Wgl - commentId: N:OpenTK.Graphics.Wgl - href: OpenTK.html - name: OpenTK.Graphics.Wgl - nameWithType: OpenTK.Graphics.Wgl - fullName: OpenTK.Graphics.Wgl - spec.csharp: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Wgl - name: Wgl - href: OpenTK.Graphics.Wgl.html - spec.vb: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Wgl - name: Wgl - href: OpenTK.Graphics.Wgl.html -- uid: OpenTK.Graphics.Wgl.DigitalVideoAttribute - commentId: T:OpenTK.Graphics.Wgl.DigitalVideoAttribute - parent: OpenTK.Graphics.Wgl - href: OpenTK.Graphics.Wgl.DigitalVideoAttribute.html - name: DigitalVideoAttribute - nameWithType: DigitalVideoAttribute - fullName: OpenTK.Graphics.Wgl.DigitalVideoAttribute diff --git a/api/OpenTK.Graphics.Wgl.FontFormat.yml b/api/OpenTK.Graphics.Wgl.FontFormat.yml deleted file mode 100644 index d08efba3..00000000 --- a/api/OpenTK.Graphics.Wgl.FontFormat.yml +++ /dev/null @@ -1,446 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: OpenTK.Graphics.Wgl.FontFormat - commentId: T:OpenTK.Graphics.Wgl.FontFormat - id: FontFormat - parent: OpenTK.Graphics.Wgl - children: - - OpenTK.Graphics.Wgl.FontFormat.FontLines - - OpenTK.Graphics.Wgl.FontFormat.FontPolygons - langs: - - csharp - - vb - name: FontFormat - nameWithType: FontFormat - fullName: OpenTK.Graphics.Wgl.FontFormat - type: Enum - source: - id: FontFormat - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 399 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: Used in , , - example: [] - syntax: - content: 'public enum FontFormat : uint' - content.vb: Public Enum FontFormat As UInteger -- uid: OpenTK.Graphics.Wgl.FontFormat.FontLines - commentId: F:OpenTK.Graphics.Wgl.FontFormat.FontLines - id: FontLines - parent: OpenTK.Graphics.Wgl.FontFormat - langs: - - csharp - - vb - name: FontLines - nameWithType: FontFormat.FontLines - fullName: OpenTK.Graphics.Wgl.FontFormat.FontLines - type: Field - source: - id: FontLines - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 401 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: FontLines = 0 - return: - type: OpenTK.Graphics.Wgl.FontFormat -- uid: OpenTK.Graphics.Wgl.FontFormat.FontPolygons - commentId: F:OpenTK.Graphics.Wgl.FontFormat.FontPolygons - id: FontPolygons - parent: OpenTK.Graphics.Wgl.FontFormat - langs: - - csharp - - vb - name: FontPolygons - nameWithType: FontFormat.FontPolygons - fullName: OpenTK.Graphics.Wgl.FontFormat.FontPolygons - type: Field - source: - id: FontPolygons - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 402 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: FontPolygons = 1 - return: - type: OpenTK.Graphics.Wgl.FontFormat -references: -- uid: OpenTK.Graphics.Wgl.Wgl.UseFontOutlines(System.IntPtr,System.UInt32,System.UInt32,System.UInt32,System.Single,System.Single,OpenTK.Graphics.Wgl.FontFormat,System.IntPtr) - commentId: M:OpenTK.Graphics.Wgl.Wgl.UseFontOutlines(System.IntPtr,System.UInt32,System.UInt32,System.UInt32,System.Single,System.Single,OpenTK.Graphics.Wgl.FontFormat,System.IntPtr) - isExternal: true - href: OpenTK.Graphics.Wgl.Wgl.html#OpenTK_Graphics_Wgl_Wgl_UseFontOutlines_System_IntPtr_System_UInt32_System_UInt32_System_UInt32_System_Single_System_Single_OpenTK_Graphics_Wgl_FontFormat_System_IntPtr_ - name: UseFontOutlines(nint, uint, uint, uint, float, float, FontFormat, nint) - nameWithType: Wgl.UseFontOutlines(nint, uint, uint, uint, float, float, FontFormat, nint) - fullName: OpenTK.Graphics.Wgl.Wgl.UseFontOutlines(nint, uint, uint, uint, float, float, OpenTK.Graphics.Wgl.FontFormat, nint) - nameWithType.vb: Wgl.UseFontOutlines(IntPtr, UInteger, UInteger, UInteger, Single, Single, FontFormat, IntPtr) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.UseFontOutlines(System.IntPtr, UInteger, UInteger, UInteger, Single, Single, OpenTK.Graphics.Wgl.FontFormat, System.IntPtr) - name.vb: UseFontOutlines(IntPtr, UInteger, UInteger, UInteger, Single, Single, FontFormat, IntPtr) - spec.csharp: - - uid: OpenTK.Graphics.Wgl.Wgl.UseFontOutlines(System.IntPtr,System.UInt32,System.UInt32,System.UInt32,System.Single,System.Single,OpenTK.Graphics.Wgl.FontFormat,System.IntPtr) - name: UseFontOutlines - href: OpenTK.Graphics.Wgl.Wgl.html#OpenTK_Graphics_Wgl_Wgl_UseFontOutlines_System_IntPtr_System_UInt32_System_UInt32_System_UInt32_System_Single_System_Single_OpenTK_Graphics_Wgl_FontFormat_System_IntPtr_ - - name: ( - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ',' - - name: " " - - uid: System.Single - name: float - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.single - - name: ',' - - name: " " - - uid: System.Single - name: float - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.single - - name: ',' - - name: " " - - uid: OpenTK.Graphics.Wgl.FontFormat - name: FontFormat - href: OpenTK.Graphics.Wgl.FontFormat.html - - name: ',' - - name: " " - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ) - spec.vb: - - uid: OpenTK.Graphics.Wgl.Wgl.UseFontOutlines(System.IntPtr,System.UInt32,System.UInt32,System.UInt32,System.Single,System.Single,OpenTK.Graphics.Wgl.FontFormat,System.IntPtr) - name: UseFontOutlines - href: OpenTK.Graphics.Wgl.Wgl.html#OpenTK_Graphics_Wgl_Wgl_UseFontOutlines_System_IntPtr_System_UInt32_System_UInt32_System_UInt32_System_Single_System_Single_OpenTK_Graphics_Wgl_FontFormat_System_IntPtr_ - - name: ( - - uid: System.IntPtr - name: IntPtr - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ',' - - name: " " - - uid: System.Single - name: Single - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.single - - name: ',' - - name: " " - - uid: System.Single - name: Single - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.single - - name: ',' - - name: " " - - uid: OpenTK.Graphics.Wgl.FontFormat - name: FontFormat - href: OpenTK.Graphics.Wgl.FontFormat.html - - name: ',' - - name: " " - - uid: System.IntPtr - name: IntPtr - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ) -- uid: OpenTK.Graphics.Wgl.Wgl.UseFontOutlinesA(System.IntPtr,System.UInt32,System.UInt32,System.UInt32,System.Single,System.Single,OpenTK.Graphics.Wgl.FontFormat,System.IntPtr) - commentId: M:OpenTK.Graphics.Wgl.Wgl.UseFontOutlinesA(System.IntPtr,System.UInt32,System.UInt32,System.UInt32,System.Single,System.Single,OpenTK.Graphics.Wgl.FontFormat,System.IntPtr) - isExternal: true - href: OpenTK.Graphics.Wgl.Wgl.html#OpenTK_Graphics_Wgl_Wgl_UseFontOutlinesA_System_IntPtr_System_UInt32_System_UInt32_System_UInt32_System_Single_System_Single_OpenTK_Graphics_Wgl_FontFormat_System_IntPtr_ - name: UseFontOutlinesA(nint, uint, uint, uint, float, float, FontFormat, nint) - nameWithType: Wgl.UseFontOutlinesA(nint, uint, uint, uint, float, float, FontFormat, nint) - fullName: OpenTK.Graphics.Wgl.Wgl.UseFontOutlinesA(nint, uint, uint, uint, float, float, OpenTK.Graphics.Wgl.FontFormat, nint) - nameWithType.vb: Wgl.UseFontOutlinesA(IntPtr, UInteger, UInteger, UInteger, Single, Single, FontFormat, IntPtr) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.UseFontOutlinesA(System.IntPtr, UInteger, UInteger, UInteger, Single, Single, OpenTK.Graphics.Wgl.FontFormat, System.IntPtr) - name.vb: UseFontOutlinesA(IntPtr, UInteger, UInteger, UInteger, Single, Single, FontFormat, IntPtr) - spec.csharp: - - uid: OpenTK.Graphics.Wgl.Wgl.UseFontOutlinesA(System.IntPtr,System.UInt32,System.UInt32,System.UInt32,System.Single,System.Single,OpenTK.Graphics.Wgl.FontFormat,System.IntPtr) - name: UseFontOutlinesA - href: OpenTK.Graphics.Wgl.Wgl.html#OpenTK_Graphics_Wgl_Wgl_UseFontOutlinesA_System_IntPtr_System_UInt32_System_UInt32_System_UInt32_System_Single_System_Single_OpenTK_Graphics_Wgl_FontFormat_System_IntPtr_ - - name: ( - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ',' - - name: " " - - uid: System.Single - name: float - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.single - - name: ',' - - name: " " - - uid: System.Single - name: float - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.single - - name: ',' - - name: " " - - uid: OpenTK.Graphics.Wgl.FontFormat - name: FontFormat - href: OpenTK.Graphics.Wgl.FontFormat.html - - name: ',' - - name: " " - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ) - spec.vb: - - uid: OpenTK.Graphics.Wgl.Wgl.UseFontOutlinesA(System.IntPtr,System.UInt32,System.UInt32,System.UInt32,System.Single,System.Single,OpenTK.Graphics.Wgl.FontFormat,System.IntPtr) - name: UseFontOutlinesA - href: OpenTK.Graphics.Wgl.Wgl.html#OpenTK_Graphics_Wgl_Wgl_UseFontOutlinesA_System_IntPtr_System_UInt32_System_UInt32_System_UInt32_System_Single_System_Single_OpenTK_Graphics_Wgl_FontFormat_System_IntPtr_ - - name: ( - - uid: System.IntPtr - name: IntPtr - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ',' - - name: " " - - uid: System.Single - name: Single - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.single - - name: ',' - - name: " " - - uid: System.Single - name: Single - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.single - - name: ',' - - name: " " - - uid: OpenTK.Graphics.Wgl.FontFormat - name: FontFormat - href: OpenTK.Graphics.Wgl.FontFormat.html - - name: ',' - - name: " " - - uid: System.IntPtr - name: IntPtr - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ) -- uid: OpenTK.Graphics.Wgl.Wgl.UseFontOutlinesW(System.IntPtr,System.UInt32,System.UInt32,System.UInt32,System.Single,System.Single,OpenTK.Graphics.Wgl.FontFormat,System.IntPtr) - commentId: M:OpenTK.Graphics.Wgl.Wgl.UseFontOutlinesW(System.IntPtr,System.UInt32,System.UInt32,System.UInt32,System.Single,System.Single,OpenTK.Graphics.Wgl.FontFormat,System.IntPtr) - isExternal: true - href: OpenTK.Graphics.Wgl.Wgl.html#OpenTK_Graphics_Wgl_Wgl_UseFontOutlinesW_System_IntPtr_System_UInt32_System_UInt32_System_UInt32_System_Single_System_Single_OpenTK_Graphics_Wgl_FontFormat_System_IntPtr_ - name: UseFontOutlinesW(nint, uint, uint, uint, float, float, FontFormat, nint) - nameWithType: Wgl.UseFontOutlinesW(nint, uint, uint, uint, float, float, FontFormat, nint) - fullName: OpenTK.Graphics.Wgl.Wgl.UseFontOutlinesW(nint, uint, uint, uint, float, float, OpenTK.Graphics.Wgl.FontFormat, nint) - nameWithType.vb: Wgl.UseFontOutlinesW(IntPtr, UInteger, UInteger, UInteger, Single, Single, FontFormat, IntPtr) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.UseFontOutlinesW(System.IntPtr, UInteger, UInteger, UInteger, Single, Single, OpenTK.Graphics.Wgl.FontFormat, System.IntPtr) - name.vb: UseFontOutlinesW(IntPtr, UInteger, UInteger, UInteger, Single, Single, FontFormat, IntPtr) - spec.csharp: - - uid: OpenTK.Graphics.Wgl.Wgl.UseFontOutlinesW(System.IntPtr,System.UInt32,System.UInt32,System.UInt32,System.Single,System.Single,OpenTK.Graphics.Wgl.FontFormat,System.IntPtr) - name: UseFontOutlinesW - href: OpenTK.Graphics.Wgl.Wgl.html#OpenTK_Graphics_Wgl_Wgl_UseFontOutlinesW_System_IntPtr_System_UInt32_System_UInt32_System_UInt32_System_Single_System_Single_OpenTK_Graphics_Wgl_FontFormat_System_IntPtr_ - - name: ( - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ',' - - name: " " - - uid: System.Single - name: float - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.single - - name: ',' - - name: " " - - uid: System.Single - name: float - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.single - - name: ',' - - name: " " - - uid: OpenTK.Graphics.Wgl.FontFormat - name: FontFormat - href: OpenTK.Graphics.Wgl.FontFormat.html - - name: ',' - - name: " " - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ) - spec.vb: - - uid: OpenTK.Graphics.Wgl.Wgl.UseFontOutlinesW(System.IntPtr,System.UInt32,System.UInt32,System.UInt32,System.Single,System.Single,OpenTK.Graphics.Wgl.FontFormat,System.IntPtr) - name: UseFontOutlinesW - href: OpenTK.Graphics.Wgl.Wgl.html#OpenTK_Graphics_Wgl_Wgl_UseFontOutlinesW_System_IntPtr_System_UInt32_System_UInt32_System_UInt32_System_Single_System_Single_OpenTK_Graphics_Wgl_FontFormat_System_IntPtr_ - - name: ( - - uid: System.IntPtr - name: IntPtr - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ',' - - name: " " - - uid: System.Single - name: Single - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.single - - name: ',' - - name: " " - - uid: System.Single - name: Single - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.single - - name: ',' - - name: " " - - uid: OpenTK.Graphics.Wgl.FontFormat - name: FontFormat - href: OpenTK.Graphics.Wgl.FontFormat.html - - name: ',' - - name: " " - - uid: System.IntPtr - name: IntPtr - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ) -- uid: OpenTK.Graphics.Wgl - commentId: N:OpenTK.Graphics.Wgl - href: OpenTK.html - name: OpenTK.Graphics.Wgl - nameWithType: OpenTK.Graphics.Wgl - fullName: OpenTK.Graphics.Wgl - spec.csharp: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Wgl - name: Wgl - href: OpenTK.Graphics.Wgl.html - spec.vb: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Wgl - name: Wgl - href: OpenTK.Graphics.Wgl.html -- uid: OpenTK.Graphics.Wgl.FontFormat - commentId: T:OpenTK.Graphics.Wgl.FontFormat - parent: OpenTK.Graphics.Wgl - href: OpenTK.Graphics.Wgl.FontFormat.html - name: FontFormat - nameWithType: FontFormat - fullName: OpenTK.Graphics.Wgl.FontFormat diff --git a/api/OpenTK.Graphics.Wgl.GPUPropertyAMD.yml b/api/OpenTK.Graphics.Wgl.GPUPropertyAMD.yml deleted file mode 100644 index fc88e364..00000000 --- a/api/OpenTK.Graphics.Wgl.GPUPropertyAMD.yml +++ /dev/null @@ -1,347 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: OpenTK.Graphics.Wgl.GPUPropertyAMD - commentId: T:OpenTK.Graphics.Wgl.GPUPropertyAMD - id: GPUPropertyAMD - parent: OpenTK.Graphics.Wgl - children: - - OpenTK.Graphics.Wgl.GPUPropertyAMD.GpuClockAmd - - OpenTK.Graphics.Wgl.GPUPropertyAMD.GpuNumPipesAmd - - OpenTK.Graphics.Wgl.GPUPropertyAMD.GpuNumRbAmd - - OpenTK.Graphics.Wgl.GPUPropertyAMD.GpuNumSimdAmd - - OpenTK.Graphics.Wgl.GPUPropertyAMD.GpuNumSpiAmd - - OpenTK.Graphics.Wgl.GPUPropertyAMD.GpuOpenglVersionStringAmd - - OpenTK.Graphics.Wgl.GPUPropertyAMD.GpuRamAmd - - OpenTK.Graphics.Wgl.GPUPropertyAMD.GpuRendererStringAmd - - OpenTK.Graphics.Wgl.GPUPropertyAMD.GpuVendorAmd - langs: - - csharp - - vb - name: GPUPropertyAMD - nameWithType: GPUPropertyAMD - fullName: OpenTK.Graphics.Wgl.GPUPropertyAMD - type: Enum - source: - id: GPUPropertyAMD - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 411 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: Used in - example: [] - syntax: - content: 'public enum GPUPropertyAMD : uint' - content.vb: Public Enum GPUPropertyAMD As UInteger -- uid: OpenTK.Graphics.Wgl.GPUPropertyAMD.GpuVendorAmd - commentId: F:OpenTK.Graphics.Wgl.GPUPropertyAMD.GpuVendorAmd - id: GpuVendorAmd - parent: OpenTK.Graphics.Wgl.GPUPropertyAMD - langs: - - csharp - - vb - name: GpuVendorAmd - nameWithType: GPUPropertyAMD.GpuVendorAmd - fullName: OpenTK.Graphics.Wgl.GPUPropertyAMD.GpuVendorAmd - type: Field - source: - id: GpuVendorAmd - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 413 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: GpuVendorAmd = 7936 - return: - type: OpenTK.Graphics.Wgl.GPUPropertyAMD -- uid: OpenTK.Graphics.Wgl.GPUPropertyAMD.GpuRendererStringAmd - commentId: F:OpenTK.Graphics.Wgl.GPUPropertyAMD.GpuRendererStringAmd - id: GpuRendererStringAmd - parent: OpenTK.Graphics.Wgl.GPUPropertyAMD - langs: - - csharp - - vb - name: GpuRendererStringAmd - nameWithType: GPUPropertyAMD.GpuRendererStringAmd - fullName: OpenTK.Graphics.Wgl.GPUPropertyAMD.GpuRendererStringAmd - type: Field - source: - id: GpuRendererStringAmd - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 414 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: GpuRendererStringAmd = 7937 - return: - type: OpenTK.Graphics.Wgl.GPUPropertyAMD -- uid: OpenTK.Graphics.Wgl.GPUPropertyAMD.GpuOpenglVersionStringAmd - commentId: F:OpenTK.Graphics.Wgl.GPUPropertyAMD.GpuOpenglVersionStringAmd - id: GpuOpenglVersionStringAmd - parent: OpenTK.Graphics.Wgl.GPUPropertyAMD - langs: - - csharp - - vb - name: GpuOpenglVersionStringAmd - nameWithType: GPUPropertyAMD.GpuOpenglVersionStringAmd - fullName: OpenTK.Graphics.Wgl.GPUPropertyAMD.GpuOpenglVersionStringAmd - type: Field - source: - id: GpuOpenglVersionStringAmd - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 415 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: GpuOpenglVersionStringAmd = 7938 - return: - type: OpenTK.Graphics.Wgl.GPUPropertyAMD -- uid: OpenTK.Graphics.Wgl.GPUPropertyAMD.GpuRamAmd - commentId: F:OpenTK.Graphics.Wgl.GPUPropertyAMD.GpuRamAmd - id: GpuRamAmd - parent: OpenTK.Graphics.Wgl.GPUPropertyAMD - langs: - - csharp - - vb - name: GpuRamAmd - nameWithType: GPUPropertyAMD.GpuRamAmd - fullName: OpenTK.Graphics.Wgl.GPUPropertyAMD.GpuRamAmd - type: Field - source: - id: GpuRamAmd - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 416 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: GpuRamAmd = 8611 - return: - type: OpenTK.Graphics.Wgl.GPUPropertyAMD -- uid: OpenTK.Graphics.Wgl.GPUPropertyAMD.GpuClockAmd - commentId: F:OpenTK.Graphics.Wgl.GPUPropertyAMD.GpuClockAmd - id: GpuClockAmd - parent: OpenTK.Graphics.Wgl.GPUPropertyAMD - langs: - - csharp - - vb - name: GpuClockAmd - nameWithType: GPUPropertyAMD.GpuClockAmd - fullName: OpenTK.Graphics.Wgl.GPUPropertyAMD.GpuClockAmd - type: Field - source: - id: GpuClockAmd - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 417 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: GpuClockAmd = 8612 - return: - type: OpenTK.Graphics.Wgl.GPUPropertyAMD -- uid: OpenTK.Graphics.Wgl.GPUPropertyAMD.GpuNumPipesAmd - commentId: F:OpenTK.Graphics.Wgl.GPUPropertyAMD.GpuNumPipesAmd - id: GpuNumPipesAmd - parent: OpenTK.Graphics.Wgl.GPUPropertyAMD - langs: - - csharp - - vb - name: GpuNumPipesAmd - nameWithType: GPUPropertyAMD.GpuNumPipesAmd - fullName: OpenTK.Graphics.Wgl.GPUPropertyAMD.GpuNumPipesAmd - type: Field - source: - id: GpuNumPipesAmd - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 418 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: GpuNumPipesAmd = 8613 - return: - type: OpenTK.Graphics.Wgl.GPUPropertyAMD -- uid: OpenTK.Graphics.Wgl.GPUPropertyAMD.GpuNumSimdAmd - commentId: F:OpenTK.Graphics.Wgl.GPUPropertyAMD.GpuNumSimdAmd - id: GpuNumSimdAmd - parent: OpenTK.Graphics.Wgl.GPUPropertyAMD - langs: - - csharp - - vb - name: GpuNumSimdAmd - nameWithType: GPUPropertyAMD.GpuNumSimdAmd - fullName: OpenTK.Graphics.Wgl.GPUPropertyAMD.GpuNumSimdAmd - type: Field - source: - id: GpuNumSimdAmd - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 419 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: GpuNumSimdAmd = 8614 - return: - type: OpenTK.Graphics.Wgl.GPUPropertyAMD -- uid: OpenTK.Graphics.Wgl.GPUPropertyAMD.GpuNumRbAmd - commentId: F:OpenTK.Graphics.Wgl.GPUPropertyAMD.GpuNumRbAmd - id: GpuNumRbAmd - parent: OpenTK.Graphics.Wgl.GPUPropertyAMD - langs: - - csharp - - vb - name: GpuNumRbAmd - nameWithType: GPUPropertyAMD.GpuNumRbAmd - fullName: OpenTK.Graphics.Wgl.GPUPropertyAMD.GpuNumRbAmd - type: Field - source: - id: GpuNumRbAmd - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 420 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: GpuNumRbAmd = 8615 - return: - type: OpenTK.Graphics.Wgl.GPUPropertyAMD -- uid: OpenTK.Graphics.Wgl.GPUPropertyAMD.GpuNumSpiAmd - commentId: F:OpenTK.Graphics.Wgl.GPUPropertyAMD.GpuNumSpiAmd - id: GpuNumSpiAmd - parent: OpenTK.Graphics.Wgl.GPUPropertyAMD - langs: - - csharp - - vb - name: GpuNumSpiAmd - nameWithType: GPUPropertyAMD.GpuNumSpiAmd - fullName: OpenTK.Graphics.Wgl.GPUPropertyAMD.GpuNumSpiAmd - type: Field - source: - id: GpuNumSpiAmd - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 421 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: GpuNumSpiAmd = 8616 - return: - type: OpenTK.Graphics.Wgl.GPUPropertyAMD -references: -- uid: OpenTK.Graphics.Wgl.Wgl.AMD.GetGPUInfoAMD(System.UInt32,OpenTK.Graphics.Wgl.GPUPropertyAMD,OpenTK.Graphics.OpenGL.ScalarType,System.UInt32,System.Void*) - commentId: M:OpenTK.Graphics.Wgl.Wgl.AMD.GetGPUInfoAMD(System.UInt32,OpenTK.Graphics.Wgl.GPUPropertyAMD,OpenTK.Graphics.OpenGL.ScalarType,System.UInt32,System.Void*) - isExternal: true - href: OpenTK.Graphics.Wgl.Wgl.AMD.html#OpenTK_Graphics_Wgl_Wgl_AMD_GetGPUInfoAMD_System_UInt32_OpenTK_Graphics_Wgl_GPUPropertyAMD_OpenTK_Graphics_OpenGL_ScalarType_System_UInt32_System_Void__ - name: GetGPUInfoAMD(uint, GPUPropertyAMD, ScalarType, uint, void*) - nameWithType: Wgl.AMD.GetGPUInfoAMD(uint, GPUPropertyAMD, ScalarType, uint, void*) - fullName: OpenTK.Graphics.Wgl.Wgl.AMD.GetGPUInfoAMD(uint, OpenTK.Graphics.Wgl.GPUPropertyAMD, OpenTK.Graphics.OpenGL.ScalarType, uint, void*) - nameWithType.vb: Wgl.AMD.GetGPUInfoAMD(UInteger, GPUPropertyAMD, ScalarType, UInteger, Void*) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.AMD.GetGPUInfoAMD(UInteger, OpenTK.Graphics.Wgl.GPUPropertyAMD, OpenTK.Graphics.OpenGL.ScalarType, UInteger, Void*) - name.vb: GetGPUInfoAMD(UInteger, GPUPropertyAMD, ScalarType, UInteger, Void*) - spec.csharp: - - uid: OpenTK.Graphics.Wgl.Wgl.AMD.GetGPUInfoAMD(System.UInt32,OpenTK.Graphics.Wgl.GPUPropertyAMD,OpenTK.Graphics.OpenGL.ScalarType,System.UInt32,System.Void*) - name: GetGPUInfoAMD - href: OpenTK.Graphics.Wgl.Wgl.AMD.html#OpenTK_Graphics_Wgl_Wgl_AMD_GetGPUInfoAMD_System_UInt32_OpenTK_Graphics_Wgl_GPUPropertyAMD_OpenTK_Graphics_OpenGL_ScalarType_System_UInt32_System_Void__ - - name: ( - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ',' - - name: " " - - uid: OpenTK.Graphics.Wgl.GPUPropertyAMD - name: GPUPropertyAMD - href: OpenTK.Graphics.Wgl.GPUPropertyAMD.html - - name: ',' - - name: " " - - uid: OpenTK.Graphics.OpenGL.ScalarType - name: ScalarType - href: OpenTK.Graphics.OpenGL.ScalarType.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ',' - - name: " " - - uid: System.Void - name: void - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.void - - name: '*' - - name: ) - spec.vb: - - uid: OpenTK.Graphics.Wgl.Wgl.AMD.GetGPUInfoAMD(System.UInt32,OpenTK.Graphics.Wgl.GPUPropertyAMD,OpenTK.Graphics.OpenGL.ScalarType,System.UInt32,System.Void*) - name: GetGPUInfoAMD - href: OpenTK.Graphics.Wgl.Wgl.AMD.html#OpenTK_Graphics_Wgl_Wgl_AMD_GetGPUInfoAMD_System_UInt32_OpenTK_Graphics_Wgl_GPUPropertyAMD_OpenTK_Graphics_OpenGL_ScalarType_System_UInt32_System_Void__ - - name: ( - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ',' - - name: " " - - uid: OpenTK.Graphics.Wgl.GPUPropertyAMD - name: GPUPropertyAMD - href: OpenTK.Graphics.Wgl.GPUPropertyAMD.html - - name: ',' - - name: " " - - uid: OpenTK.Graphics.OpenGL.ScalarType - name: ScalarType - href: OpenTK.Graphics.OpenGL.ScalarType.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ',' - - name: " " - - uid: System.Void - name: Void - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.void - - name: '*' - - name: ) -- uid: OpenTK.Graphics.Wgl - commentId: N:OpenTK.Graphics.Wgl - href: OpenTK.html - name: OpenTK.Graphics.Wgl - nameWithType: OpenTK.Graphics.Wgl - fullName: OpenTK.Graphics.Wgl - spec.csharp: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Wgl - name: Wgl - href: OpenTK.Graphics.Wgl.html - spec.vb: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Wgl - name: Wgl - href: OpenTK.Graphics.Wgl.html -- uid: OpenTK.Graphics.Wgl.GPUPropertyAMD - commentId: T:OpenTK.Graphics.Wgl.GPUPropertyAMD - parent: OpenTK.Graphics.Wgl - href: OpenTK.Graphics.Wgl.GPUPropertyAMD.html - name: GPUPropertyAMD - nameWithType: GPUPropertyAMD - fullName: OpenTK.Graphics.Wgl.GPUPropertyAMD diff --git a/api/OpenTK.Graphics.Wgl.GammaTableAttribute.yml b/api/OpenTK.Graphics.Wgl.GammaTableAttribute.yml deleted file mode 100644 index 974bed43..00000000 --- a/api/OpenTK.Graphics.Wgl.GammaTableAttribute.yml +++ /dev/null @@ -1,218 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: OpenTK.Graphics.Wgl.GammaTableAttribute - commentId: T:OpenTK.Graphics.Wgl.GammaTableAttribute - id: GammaTableAttribute - parent: OpenTK.Graphics.Wgl - children: - - OpenTK.Graphics.Wgl.GammaTableAttribute.GammaExcludeDesktopI3d - - OpenTK.Graphics.Wgl.GammaTableAttribute.GammaTableSizeI3d - langs: - - csharp - - vb - name: GammaTableAttribute - nameWithType: GammaTableAttribute - fullName: OpenTK.Graphics.Wgl.GammaTableAttribute - type: Enum - source: - id: GammaTableAttribute - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 405 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: Used in , - example: [] - syntax: - content: 'public enum GammaTableAttribute : uint' - content.vb: Public Enum GammaTableAttribute As UInteger -- uid: OpenTK.Graphics.Wgl.GammaTableAttribute.GammaTableSizeI3d - commentId: F:OpenTK.Graphics.Wgl.GammaTableAttribute.GammaTableSizeI3d - id: GammaTableSizeI3d - parent: OpenTK.Graphics.Wgl.GammaTableAttribute - langs: - - csharp - - vb - name: GammaTableSizeI3d - nameWithType: GammaTableAttribute.GammaTableSizeI3d - fullName: OpenTK.Graphics.Wgl.GammaTableAttribute.GammaTableSizeI3d - type: Field - source: - id: GammaTableSizeI3d - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 407 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: GammaTableSizeI3d = 8270 - return: - type: OpenTK.Graphics.Wgl.GammaTableAttribute -- uid: OpenTK.Graphics.Wgl.GammaTableAttribute.GammaExcludeDesktopI3d - commentId: F:OpenTK.Graphics.Wgl.GammaTableAttribute.GammaExcludeDesktopI3d - id: GammaExcludeDesktopI3d - parent: OpenTK.Graphics.Wgl.GammaTableAttribute - langs: - - csharp - - vb - name: GammaExcludeDesktopI3d - nameWithType: GammaTableAttribute.GammaExcludeDesktopI3d - fullName: OpenTK.Graphics.Wgl.GammaTableAttribute.GammaExcludeDesktopI3d - type: Field - source: - id: GammaExcludeDesktopI3d - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 408 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: GammaExcludeDesktopI3d = 8271 - return: - type: OpenTK.Graphics.Wgl.GammaTableAttribute -references: -- uid: OpenTK.Graphics.Wgl.Wgl.I3D.GetGammaTableParametersI3D(System.IntPtr,OpenTK.Graphics.Wgl.GammaTableAttribute,System.Int32*) - commentId: M:OpenTK.Graphics.Wgl.Wgl.I3D.GetGammaTableParametersI3D(System.IntPtr,OpenTK.Graphics.Wgl.GammaTableAttribute,System.Int32*) - isExternal: true - href: OpenTK.Graphics.Wgl.Wgl.I3D.html#OpenTK_Graphics_Wgl_Wgl_I3D_GetGammaTableParametersI3D_System_IntPtr_OpenTK_Graphics_Wgl_GammaTableAttribute_System_Int32__ - name: GetGammaTableParametersI3D(nint, GammaTableAttribute, int*) - nameWithType: Wgl.I3D.GetGammaTableParametersI3D(nint, GammaTableAttribute, int*) - fullName: OpenTK.Graphics.Wgl.Wgl.I3D.GetGammaTableParametersI3D(nint, OpenTK.Graphics.Wgl.GammaTableAttribute, int*) - nameWithType.vb: Wgl.I3D.GetGammaTableParametersI3D(IntPtr, GammaTableAttribute, Integer*) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.I3D.GetGammaTableParametersI3D(System.IntPtr, OpenTK.Graphics.Wgl.GammaTableAttribute, Integer*) - name.vb: GetGammaTableParametersI3D(IntPtr, GammaTableAttribute, Integer*) - spec.csharp: - - uid: OpenTK.Graphics.Wgl.Wgl.I3D.GetGammaTableParametersI3D(System.IntPtr,OpenTK.Graphics.Wgl.GammaTableAttribute,System.Int32*) - name: GetGammaTableParametersI3D - href: OpenTK.Graphics.Wgl.Wgl.I3D.html#OpenTK_Graphics_Wgl_Wgl_I3D_GetGammaTableParametersI3D_System_IntPtr_OpenTK_Graphics_Wgl_GammaTableAttribute_System_Int32__ - - name: ( - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: OpenTK.Graphics.Wgl.GammaTableAttribute - name: GammaTableAttribute - href: OpenTK.Graphics.Wgl.GammaTableAttribute.html - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '*' - - name: ) - spec.vb: - - uid: OpenTK.Graphics.Wgl.Wgl.I3D.GetGammaTableParametersI3D(System.IntPtr,OpenTK.Graphics.Wgl.GammaTableAttribute,System.Int32*) - name: GetGammaTableParametersI3D - href: OpenTK.Graphics.Wgl.Wgl.I3D.html#OpenTK_Graphics_Wgl_Wgl_I3D_GetGammaTableParametersI3D_System_IntPtr_OpenTK_Graphics_Wgl_GammaTableAttribute_System_Int32__ - - name: ( - - uid: System.IntPtr - name: IntPtr - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: OpenTK.Graphics.Wgl.GammaTableAttribute - name: GammaTableAttribute - href: OpenTK.Graphics.Wgl.GammaTableAttribute.html - - name: ',' - - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '*' - - name: ) -- uid: OpenTK.Graphics.Wgl.Wgl.I3D.SetGammaTableParametersI3D(System.IntPtr,OpenTK.Graphics.Wgl.GammaTableAttribute,System.Int32*) - commentId: M:OpenTK.Graphics.Wgl.Wgl.I3D.SetGammaTableParametersI3D(System.IntPtr,OpenTK.Graphics.Wgl.GammaTableAttribute,System.Int32*) - isExternal: true - href: OpenTK.Graphics.Wgl.Wgl.I3D.html#OpenTK_Graphics_Wgl_Wgl_I3D_SetGammaTableParametersI3D_System_IntPtr_OpenTK_Graphics_Wgl_GammaTableAttribute_System_Int32__ - name: SetGammaTableParametersI3D(nint, GammaTableAttribute, int*) - nameWithType: Wgl.I3D.SetGammaTableParametersI3D(nint, GammaTableAttribute, int*) - fullName: OpenTK.Graphics.Wgl.Wgl.I3D.SetGammaTableParametersI3D(nint, OpenTK.Graphics.Wgl.GammaTableAttribute, int*) - nameWithType.vb: Wgl.I3D.SetGammaTableParametersI3D(IntPtr, GammaTableAttribute, Integer*) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.I3D.SetGammaTableParametersI3D(System.IntPtr, OpenTK.Graphics.Wgl.GammaTableAttribute, Integer*) - name.vb: SetGammaTableParametersI3D(IntPtr, GammaTableAttribute, Integer*) - spec.csharp: - - uid: OpenTK.Graphics.Wgl.Wgl.I3D.SetGammaTableParametersI3D(System.IntPtr,OpenTK.Graphics.Wgl.GammaTableAttribute,System.Int32*) - name: SetGammaTableParametersI3D - href: OpenTK.Graphics.Wgl.Wgl.I3D.html#OpenTK_Graphics_Wgl_Wgl_I3D_SetGammaTableParametersI3D_System_IntPtr_OpenTK_Graphics_Wgl_GammaTableAttribute_System_Int32__ - - name: ( - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: OpenTK.Graphics.Wgl.GammaTableAttribute - name: GammaTableAttribute - href: OpenTK.Graphics.Wgl.GammaTableAttribute.html - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '*' - - name: ) - spec.vb: - - uid: OpenTK.Graphics.Wgl.Wgl.I3D.SetGammaTableParametersI3D(System.IntPtr,OpenTK.Graphics.Wgl.GammaTableAttribute,System.Int32*) - name: SetGammaTableParametersI3D - href: OpenTK.Graphics.Wgl.Wgl.I3D.html#OpenTK_Graphics_Wgl_Wgl_I3D_SetGammaTableParametersI3D_System_IntPtr_OpenTK_Graphics_Wgl_GammaTableAttribute_System_Int32__ - - name: ( - - uid: System.IntPtr - name: IntPtr - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: OpenTK.Graphics.Wgl.GammaTableAttribute - name: GammaTableAttribute - href: OpenTK.Graphics.Wgl.GammaTableAttribute.html - - name: ',' - - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '*' - - name: ) -- uid: OpenTK.Graphics.Wgl - commentId: N:OpenTK.Graphics.Wgl - href: OpenTK.html - name: OpenTK.Graphics.Wgl - nameWithType: OpenTK.Graphics.Wgl - fullName: OpenTK.Graphics.Wgl - spec.csharp: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Wgl - name: Wgl - href: OpenTK.Graphics.Wgl.html - spec.vb: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Wgl - name: Wgl - href: OpenTK.Graphics.Wgl.html -- uid: OpenTK.Graphics.Wgl.GammaTableAttribute - commentId: T:OpenTK.Graphics.Wgl.GammaTableAttribute - parent: OpenTK.Graphics.Wgl - href: OpenTK.Graphics.Wgl.GammaTableAttribute.html - name: GammaTableAttribute - nameWithType: GammaTableAttribute - fullName: OpenTK.Graphics.Wgl.GammaTableAttribute diff --git a/api/OpenTK.Graphics.Wgl.ImageBufferMaskI3D.yml b/api/OpenTK.Graphics.Wgl.ImageBufferMaskI3D.yml deleted file mode 100644 index cfe43640..00000000 --- a/api/OpenTK.Graphics.Wgl.ImageBufferMaskI3D.yml +++ /dev/null @@ -1,172 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: OpenTK.Graphics.Wgl.ImageBufferMaskI3D - commentId: T:OpenTK.Graphics.Wgl.ImageBufferMaskI3D - id: ImageBufferMaskI3D - parent: OpenTK.Graphics.Wgl - children: - - OpenTK.Graphics.Wgl.ImageBufferMaskI3D.ImageBufferLockI3d - - OpenTK.Graphics.Wgl.ImageBufferMaskI3D.ImageBufferMinAccessI3d - langs: - - csharp - - vb - name: ImageBufferMaskI3D - nameWithType: ImageBufferMaskI3D - fullName: OpenTK.Graphics.Wgl.ImageBufferMaskI3D - type: Enum - source: - id: ImageBufferMaskI3D - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 424 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: Used in - example: [] - syntax: - content: >- - [Flags] - - public enum ImageBufferMaskI3D : uint - content.vb: >- - - - Public Enum ImageBufferMaskI3D As UInteger - attributes: - - type: System.FlagsAttribute - ctor: System.FlagsAttribute.#ctor - arguments: [] -- uid: OpenTK.Graphics.Wgl.ImageBufferMaskI3D.ImageBufferMinAccessI3d - commentId: F:OpenTK.Graphics.Wgl.ImageBufferMaskI3D.ImageBufferMinAccessI3d - id: ImageBufferMinAccessI3d - parent: OpenTK.Graphics.Wgl.ImageBufferMaskI3D - langs: - - csharp - - vb - name: ImageBufferMinAccessI3d - nameWithType: ImageBufferMaskI3D.ImageBufferMinAccessI3d - fullName: OpenTK.Graphics.Wgl.ImageBufferMaskI3D.ImageBufferMinAccessI3d - type: Field - source: - id: ImageBufferMinAccessI3d - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 427 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: ImageBufferMinAccessI3d = 1 - return: - type: OpenTK.Graphics.Wgl.ImageBufferMaskI3D -- uid: OpenTK.Graphics.Wgl.ImageBufferMaskI3D.ImageBufferLockI3d - commentId: F:OpenTK.Graphics.Wgl.ImageBufferMaskI3D.ImageBufferLockI3d - id: ImageBufferLockI3d - parent: OpenTK.Graphics.Wgl.ImageBufferMaskI3D - langs: - - csharp - - vb - name: ImageBufferLockI3d - nameWithType: ImageBufferMaskI3D.ImageBufferLockI3d - fullName: OpenTK.Graphics.Wgl.ImageBufferMaskI3D.ImageBufferLockI3d - type: Field - source: - id: ImageBufferLockI3d - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 428 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: ImageBufferLockI3d = 2 - return: - type: OpenTK.Graphics.Wgl.ImageBufferMaskI3D -references: -- uid: OpenTK.Graphics.Wgl.Wgl.I3D.CreateImageBufferI3D(System.IntPtr,System.UInt32,OpenTK.Graphics.Wgl.ImageBufferMaskI3D) - commentId: M:OpenTK.Graphics.Wgl.Wgl.I3D.CreateImageBufferI3D(System.IntPtr,System.UInt32,OpenTK.Graphics.Wgl.ImageBufferMaskI3D) - isExternal: true - href: OpenTK.Graphics.Wgl.Wgl.I3D.html#OpenTK_Graphics_Wgl_Wgl_I3D_CreateImageBufferI3D_System_IntPtr_System_UInt32_OpenTK_Graphics_Wgl_ImageBufferMaskI3D_ - name: CreateImageBufferI3D(nint, uint, ImageBufferMaskI3D) - nameWithType: Wgl.I3D.CreateImageBufferI3D(nint, uint, ImageBufferMaskI3D) - fullName: OpenTK.Graphics.Wgl.Wgl.I3D.CreateImageBufferI3D(nint, uint, OpenTK.Graphics.Wgl.ImageBufferMaskI3D) - nameWithType.vb: Wgl.I3D.CreateImageBufferI3D(IntPtr, UInteger, ImageBufferMaskI3D) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.I3D.CreateImageBufferI3D(System.IntPtr, UInteger, OpenTK.Graphics.Wgl.ImageBufferMaskI3D) - name.vb: CreateImageBufferI3D(IntPtr, UInteger, ImageBufferMaskI3D) - spec.csharp: - - uid: OpenTK.Graphics.Wgl.Wgl.I3D.CreateImageBufferI3D(System.IntPtr,System.UInt32,OpenTK.Graphics.Wgl.ImageBufferMaskI3D) - name: CreateImageBufferI3D - href: OpenTK.Graphics.Wgl.Wgl.I3D.html#OpenTK_Graphics_Wgl_Wgl_I3D_CreateImageBufferI3D_System_IntPtr_System_UInt32_OpenTK_Graphics_Wgl_ImageBufferMaskI3D_ - - name: ( - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ',' - - name: " " - - uid: OpenTK.Graphics.Wgl.ImageBufferMaskI3D - name: ImageBufferMaskI3D - href: OpenTK.Graphics.Wgl.ImageBufferMaskI3D.html - - name: ) - spec.vb: - - uid: OpenTK.Graphics.Wgl.Wgl.I3D.CreateImageBufferI3D(System.IntPtr,System.UInt32,OpenTK.Graphics.Wgl.ImageBufferMaskI3D) - name: CreateImageBufferI3D - href: OpenTK.Graphics.Wgl.Wgl.I3D.html#OpenTK_Graphics_Wgl_Wgl_I3D_CreateImageBufferI3D_System_IntPtr_System_UInt32_OpenTK_Graphics_Wgl_ImageBufferMaskI3D_ - - name: ( - - uid: System.IntPtr - name: IntPtr - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ',' - - name: " " - - uid: OpenTK.Graphics.Wgl.ImageBufferMaskI3D - name: ImageBufferMaskI3D - href: OpenTK.Graphics.Wgl.ImageBufferMaskI3D.html - - name: ) -- uid: OpenTK.Graphics.Wgl - commentId: N:OpenTK.Graphics.Wgl - href: OpenTK.html - name: OpenTK.Graphics.Wgl - nameWithType: OpenTK.Graphics.Wgl - fullName: OpenTK.Graphics.Wgl - spec.csharp: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Wgl - name: Wgl - href: OpenTK.Graphics.Wgl.html - spec.vb: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Wgl - name: Wgl - href: OpenTK.Graphics.Wgl.html -- uid: OpenTK.Graphics.Wgl.ImageBufferMaskI3D - commentId: T:OpenTK.Graphics.Wgl.ImageBufferMaskI3D - parent: OpenTK.Graphics.Wgl - href: OpenTK.Graphics.Wgl.ImageBufferMaskI3D.html - name: ImageBufferMaskI3D - nameWithType: ImageBufferMaskI3D - fullName: OpenTK.Graphics.Wgl.ImageBufferMaskI3D diff --git a/api/OpenTK.Graphics.Wgl.LayerPlaneDescriptor.yml b/api/OpenTK.Graphics.Wgl.LayerPlaneDescriptor.yml deleted file mode 100644 index 4af51b53..00000000 --- a/api/OpenTK.Graphics.Wgl.LayerPlaneDescriptor.yml +++ /dev/null @@ -1,895 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: OpenTK.Graphics.Wgl.LayerPlaneDescriptor - commentId: T:OpenTK.Graphics.Wgl.LayerPlaneDescriptor - id: LayerPlaneDescriptor - parent: OpenTK.Graphics.Wgl - children: - - OpenTK.Graphics.Wgl.LayerPlaneDescriptor.bReserved - - OpenTK.Graphics.Wgl.LayerPlaneDescriptor.cAccumAlphaBits - - OpenTK.Graphics.Wgl.LayerPlaneDescriptor.cAccumBits - - OpenTK.Graphics.Wgl.LayerPlaneDescriptor.cAccumBlueBits - - OpenTK.Graphics.Wgl.LayerPlaneDescriptor.cAccumGreenBits - - OpenTK.Graphics.Wgl.LayerPlaneDescriptor.cAccumRedBits - - OpenTK.Graphics.Wgl.LayerPlaneDescriptor.cAlphaBits - - OpenTK.Graphics.Wgl.LayerPlaneDescriptor.cAlphaShift - - OpenTK.Graphics.Wgl.LayerPlaneDescriptor.cAuxBuffers - - OpenTK.Graphics.Wgl.LayerPlaneDescriptor.cBlueBits - - OpenTK.Graphics.Wgl.LayerPlaneDescriptor.cBlueShift - - OpenTK.Graphics.Wgl.LayerPlaneDescriptor.cColorBits - - OpenTK.Graphics.Wgl.LayerPlaneDescriptor.cDepthBits - - OpenTK.Graphics.Wgl.LayerPlaneDescriptor.cGreenBits - - OpenTK.Graphics.Wgl.LayerPlaneDescriptor.cGreenShift - - OpenTK.Graphics.Wgl.LayerPlaneDescriptor.cRedBits - - OpenTK.Graphics.Wgl.LayerPlaneDescriptor.cRedShift - - OpenTK.Graphics.Wgl.LayerPlaneDescriptor.cStencilBits - - OpenTK.Graphics.Wgl.LayerPlaneDescriptor.crTransparent - - OpenTK.Graphics.Wgl.LayerPlaneDescriptor.dwFlags - - OpenTK.Graphics.Wgl.LayerPlaneDescriptor.iLayerPlane - - OpenTK.Graphics.Wgl.LayerPlaneDescriptor.iPixelType - - OpenTK.Graphics.Wgl.LayerPlaneDescriptor.nSize - - OpenTK.Graphics.Wgl.LayerPlaneDescriptor.nVersion - langs: - - csharp - - vb - name: LayerPlaneDescriptor - nameWithType: LayerPlaneDescriptor - fullName: OpenTK.Graphics.Wgl.LayerPlaneDescriptor - type: Struct - source: - id: LayerPlaneDescriptor - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 546 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: public struct LayerPlaneDescriptor - content.vb: Public Structure LayerPlaneDescriptor - inheritedMembers: - - System.ValueType.Equals(System.Object) - - System.ValueType.GetHashCode - - System.ValueType.ToString - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.ReferenceEquals(System.Object,System.Object) -- uid: OpenTK.Graphics.Wgl.LayerPlaneDescriptor.nSize - commentId: F:OpenTK.Graphics.Wgl.LayerPlaneDescriptor.nSize - id: nSize - parent: OpenTK.Graphics.Wgl.LayerPlaneDescriptor - langs: - - csharp - - vb - name: nSize - nameWithType: LayerPlaneDescriptor.nSize - fullName: OpenTK.Graphics.Wgl.LayerPlaneDescriptor.nSize - type: Field - source: - id: nSize - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 548 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: public ushort nSize - return: - type: System.UInt16 - content.vb: Public nSize As UShort -- uid: OpenTK.Graphics.Wgl.LayerPlaneDescriptor.nVersion - commentId: F:OpenTK.Graphics.Wgl.LayerPlaneDescriptor.nVersion - id: nVersion - parent: OpenTK.Graphics.Wgl.LayerPlaneDescriptor - langs: - - csharp - - vb - name: nVersion - nameWithType: LayerPlaneDescriptor.nVersion - fullName: OpenTK.Graphics.Wgl.LayerPlaneDescriptor.nVersion - type: Field - source: - id: nVersion - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 549 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: public ushort nVersion - return: - type: System.UInt16 - content.vb: Public nVersion As UShort -- uid: OpenTK.Graphics.Wgl.LayerPlaneDescriptor.dwFlags - commentId: F:OpenTK.Graphics.Wgl.LayerPlaneDescriptor.dwFlags - id: dwFlags - parent: OpenTK.Graphics.Wgl.LayerPlaneDescriptor - langs: - - csharp - - vb - name: dwFlags - nameWithType: LayerPlaneDescriptor.dwFlags - fullName: OpenTK.Graphics.Wgl.LayerPlaneDescriptor.dwFlags - type: Field - source: - id: dwFlags - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 550 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: public uint dwFlags - return: - type: System.UInt32 - content.vb: Public dwFlags As UInteger -- uid: OpenTK.Graphics.Wgl.LayerPlaneDescriptor.iPixelType - commentId: F:OpenTK.Graphics.Wgl.LayerPlaneDescriptor.iPixelType - id: iPixelType - parent: OpenTK.Graphics.Wgl.LayerPlaneDescriptor - langs: - - csharp - - vb - name: iPixelType - nameWithType: LayerPlaneDescriptor.iPixelType - fullName: OpenTK.Graphics.Wgl.LayerPlaneDescriptor.iPixelType - type: Field - source: - id: iPixelType - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 551 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: public byte iPixelType - return: - type: System.Byte - content.vb: Public iPixelType As Byte -- uid: OpenTK.Graphics.Wgl.LayerPlaneDescriptor.cColorBits - commentId: F:OpenTK.Graphics.Wgl.LayerPlaneDescriptor.cColorBits - id: cColorBits - parent: OpenTK.Graphics.Wgl.LayerPlaneDescriptor - langs: - - csharp - - vb - name: cColorBits - nameWithType: LayerPlaneDescriptor.cColorBits - fullName: OpenTK.Graphics.Wgl.LayerPlaneDescriptor.cColorBits - type: Field - source: - id: cColorBits - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 552 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: public byte cColorBits - return: - type: System.Byte - content.vb: Public cColorBits As Byte -- uid: OpenTK.Graphics.Wgl.LayerPlaneDescriptor.cRedBits - commentId: F:OpenTK.Graphics.Wgl.LayerPlaneDescriptor.cRedBits - id: cRedBits - parent: OpenTK.Graphics.Wgl.LayerPlaneDescriptor - langs: - - csharp - - vb - name: cRedBits - nameWithType: LayerPlaneDescriptor.cRedBits - fullName: OpenTK.Graphics.Wgl.LayerPlaneDescriptor.cRedBits - type: Field - source: - id: cRedBits - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 553 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: public byte cRedBits - return: - type: System.Byte - content.vb: Public cRedBits As Byte -- uid: OpenTK.Graphics.Wgl.LayerPlaneDescriptor.cRedShift - commentId: F:OpenTK.Graphics.Wgl.LayerPlaneDescriptor.cRedShift - id: cRedShift - parent: OpenTK.Graphics.Wgl.LayerPlaneDescriptor - langs: - - csharp - - vb - name: cRedShift - nameWithType: LayerPlaneDescriptor.cRedShift - fullName: OpenTK.Graphics.Wgl.LayerPlaneDescriptor.cRedShift - type: Field - source: - id: cRedShift - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 554 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: public byte cRedShift - return: - type: System.Byte - content.vb: Public cRedShift As Byte -- uid: OpenTK.Graphics.Wgl.LayerPlaneDescriptor.cGreenBits - commentId: F:OpenTK.Graphics.Wgl.LayerPlaneDescriptor.cGreenBits - id: cGreenBits - parent: OpenTK.Graphics.Wgl.LayerPlaneDescriptor - langs: - - csharp - - vb - name: cGreenBits - nameWithType: LayerPlaneDescriptor.cGreenBits - fullName: OpenTK.Graphics.Wgl.LayerPlaneDescriptor.cGreenBits - type: Field - source: - id: cGreenBits - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 555 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: public byte cGreenBits - return: - type: System.Byte - content.vb: Public cGreenBits As Byte -- uid: OpenTK.Graphics.Wgl.LayerPlaneDescriptor.cGreenShift - commentId: F:OpenTK.Graphics.Wgl.LayerPlaneDescriptor.cGreenShift - id: cGreenShift - parent: OpenTK.Graphics.Wgl.LayerPlaneDescriptor - langs: - - csharp - - vb - name: cGreenShift - nameWithType: LayerPlaneDescriptor.cGreenShift - fullName: OpenTK.Graphics.Wgl.LayerPlaneDescriptor.cGreenShift - type: Field - source: - id: cGreenShift - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 556 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: public byte cGreenShift - return: - type: System.Byte - content.vb: Public cGreenShift As Byte -- uid: OpenTK.Graphics.Wgl.LayerPlaneDescriptor.cBlueBits - commentId: F:OpenTK.Graphics.Wgl.LayerPlaneDescriptor.cBlueBits - id: cBlueBits - parent: OpenTK.Graphics.Wgl.LayerPlaneDescriptor - langs: - - csharp - - vb - name: cBlueBits - nameWithType: LayerPlaneDescriptor.cBlueBits - fullName: OpenTK.Graphics.Wgl.LayerPlaneDescriptor.cBlueBits - type: Field - source: - id: cBlueBits - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 557 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: public byte cBlueBits - return: - type: System.Byte - content.vb: Public cBlueBits As Byte -- uid: OpenTK.Graphics.Wgl.LayerPlaneDescriptor.cBlueShift - commentId: F:OpenTK.Graphics.Wgl.LayerPlaneDescriptor.cBlueShift - id: cBlueShift - parent: OpenTK.Graphics.Wgl.LayerPlaneDescriptor - langs: - - csharp - - vb - name: cBlueShift - nameWithType: LayerPlaneDescriptor.cBlueShift - fullName: OpenTK.Graphics.Wgl.LayerPlaneDescriptor.cBlueShift - type: Field - source: - id: cBlueShift - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 558 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: public byte cBlueShift - return: - type: System.Byte - content.vb: Public cBlueShift As Byte -- uid: OpenTK.Graphics.Wgl.LayerPlaneDescriptor.cAlphaBits - commentId: F:OpenTK.Graphics.Wgl.LayerPlaneDescriptor.cAlphaBits - id: cAlphaBits - parent: OpenTK.Graphics.Wgl.LayerPlaneDescriptor - langs: - - csharp - - vb - name: cAlphaBits - nameWithType: LayerPlaneDescriptor.cAlphaBits - fullName: OpenTK.Graphics.Wgl.LayerPlaneDescriptor.cAlphaBits - type: Field - source: - id: cAlphaBits - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 559 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: public byte cAlphaBits - return: - type: System.Byte - content.vb: Public cAlphaBits As Byte -- uid: OpenTK.Graphics.Wgl.LayerPlaneDescriptor.cAlphaShift - commentId: F:OpenTK.Graphics.Wgl.LayerPlaneDescriptor.cAlphaShift - id: cAlphaShift - parent: OpenTK.Graphics.Wgl.LayerPlaneDescriptor - langs: - - csharp - - vb - name: cAlphaShift - nameWithType: LayerPlaneDescriptor.cAlphaShift - fullName: OpenTK.Graphics.Wgl.LayerPlaneDescriptor.cAlphaShift - type: Field - source: - id: cAlphaShift - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 560 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: public byte cAlphaShift - return: - type: System.Byte - content.vb: Public cAlphaShift As Byte -- uid: OpenTK.Graphics.Wgl.LayerPlaneDescriptor.cAccumBits - commentId: F:OpenTK.Graphics.Wgl.LayerPlaneDescriptor.cAccumBits - id: cAccumBits - parent: OpenTK.Graphics.Wgl.LayerPlaneDescriptor - langs: - - csharp - - vb - name: cAccumBits - nameWithType: LayerPlaneDescriptor.cAccumBits - fullName: OpenTK.Graphics.Wgl.LayerPlaneDescriptor.cAccumBits - type: Field - source: - id: cAccumBits - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 561 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: public byte cAccumBits - return: - type: System.Byte - content.vb: Public cAccumBits As Byte -- uid: OpenTK.Graphics.Wgl.LayerPlaneDescriptor.cAccumRedBits - commentId: F:OpenTK.Graphics.Wgl.LayerPlaneDescriptor.cAccumRedBits - id: cAccumRedBits - parent: OpenTK.Graphics.Wgl.LayerPlaneDescriptor - langs: - - csharp - - vb - name: cAccumRedBits - nameWithType: LayerPlaneDescriptor.cAccumRedBits - fullName: OpenTK.Graphics.Wgl.LayerPlaneDescriptor.cAccumRedBits - type: Field - source: - id: cAccumRedBits - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 562 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: public byte cAccumRedBits - return: - type: System.Byte - content.vb: Public cAccumRedBits As Byte -- uid: OpenTK.Graphics.Wgl.LayerPlaneDescriptor.cAccumGreenBits - commentId: F:OpenTK.Graphics.Wgl.LayerPlaneDescriptor.cAccumGreenBits - id: cAccumGreenBits - parent: OpenTK.Graphics.Wgl.LayerPlaneDescriptor - langs: - - csharp - - vb - name: cAccumGreenBits - nameWithType: LayerPlaneDescriptor.cAccumGreenBits - fullName: OpenTK.Graphics.Wgl.LayerPlaneDescriptor.cAccumGreenBits - type: Field - source: - id: cAccumGreenBits - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 563 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: public byte cAccumGreenBits - return: - type: System.Byte - content.vb: Public cAccumGreenBits As Byte -- uid: OpenTK.Graphics.Wgl.LayerPlaneDescriptor.cAccumBlueBits - commentId: F:OpenTK.Graphics.Wgl.LayerPlaneDescriptor.cAccumBlueBits - id: cAccumBlueBits - parent: OpenTK.Graphics.Wgl.LayerPlaneDescriptor - langs: - - csharp - - vb - name: cAccumBlueBits - nameWithType: LayerPlaneDescriptor.cAccumBlueBits - fullName: OpenTK.Graphics.Wgl.LayerPlaneDescriptor.cAccumBlueBits - type: Field - source: - id: cAccumBlueBits - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 564 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: public byte cAccumBlueBits - return: - type: System.Byte - content.vb: Public cAccumBlueBits As Byte -- uid: OpenTK.Graphics.Wgl.LayerPlaneDescriptor.cAccumAlphaBits - commentId: F:OpenTK.Graphics.Wgl.LayerPlaneDescriptor.cAccumAlphaBits - id: cAccumAlphaBits - parent: OpenTK.Graphics.Wgl.LayerPlaneDescriptor - langs: - - csharp - - vb - name: cAccumAlphaBits - nameWithType: LayerPlaneDescriptor.cAccumAlphaBits - fullName: OpenTK.Graphics.Wgl.LayerPlaneDescriptor.cAccumAlphaBits - type: Field - source: - id: cAccumAlphaBits - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 565 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: public byte cAccumAlphaBits - return: - type: System.Byte - content.vb: Public cAccumAlphaBits As Byte -- uid: OpenTK.Graphics.Wgl.LayerPlaneDescriptor.cDepthBits - commentId: F:OpenTK.Graphics.Wgl.LayerPlaneDescriptor.cDepthBits - id: cDepthBits - parent: OpenTK.Graphics.Wgl.LayerPlaneDescriptor - langs: - - csharp - - vb - name: cDepthBits - nameWithType: LayerPlaneDescriptor.cDepthBits - fullName: OpenTK.Graphics.Wgl.LayerPlaneDescriptor.cDepthBits - type: Field - source: - id: cDepthBits - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 566 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: public byte cDepthBits - return: - type: System.Byte - content.vb: Public cDepthBits As Byte -- uid: OpenTK.Graphics.Wgl.LayerPlaneDescriptor.cStencilBits - commentId: F:OpenTK.Graphics.Wgl.LayerPlaneDescriptor.cStencilBits - id: cStencilBits - parent: OpenTK.Graphics.Wgl.LayerPlaneDescriptor - langs: - - csharp - - vb - name: cStencilBits - nameWithType: LayerPlaneDescriptor.cStencilBits - fullName: OpenTK.Graphics.Wgl.LayerPlaneDescriptor.cStencilBits - type: Field - source: - id: cStencilBits - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 567 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: public byte cStencilBits - return: - type: System.Byte - content.vb: Public cStencilBits As Byte -- uid: OpenTK.Graphics.Wgl.LayerPlaneDescriptor.cAuxBuffers - commentId: F:OpenTK.Graphics.Wgl.LayerPlaneDescriptor.cAuxBuffers - id: cAuxBuffers - parent: OpenTK.Graphics.Wgl.LayerPlaneDescriptor - langs: - - csharp - - vb - name: cAuxBuffers - nameWithType: LayerPlaneDescriptor.cAuxBuffers - fullName: OpenTK.Graphics.Wgl.LayerPlaneDescriptor.cAuxBuffers - type: Field - source: - id: cAuxBuffers - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 568 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: public byte cAuxBuffers - return: - type: System.Byte - content.vb: Public cAuxBuffers As Byte -- uid: OpenTK.Graphics.Wgl.LayerPlaneDescriptor.iLayerPlane - commentId: F:OpenTK.Graphics.Wgl.LayerPlaneDescriptor.iLayerPlane - id: iLayerPlane - parent: OpenTK.Graphics.Wgl.LayerPlaneDescriptor - langs: - - csharp - - vb - name: iLayerPlane - nameWithType: LayerPlaneDescriptor.iLayerPlane - fullName: OpenTK.Graphics.Wgl.LayerPlaneDescriptor.iLayerPlane - type: Field - source: - id: iLayerPlane - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 569 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: public byte iLayerPlane - return: - type: System.Byte - content.vb: Public iLayerPlane As Byte -- uid: OpenTK.Graphics.Wgl.LayerPlaneDescriptor.bReserved - commentId: F:OpenTK.Graphics.Wgl.LayerPlaneDescriptor.bReserved - id: bReserved - parent: OpenTK.Graphics.Wgl.LayerPlaneDescriptor - langs: - - csharp - - vb - name: bReserved - nameWithType: LayerPlaneDescriptor.bReserved - fullName: OpenTK.Graphics.Wgl.LayerPlaneDescriptor.bReserved - type: Field - source: - id: bReserved - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 570 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: public byte bReserved - return: - type: System.Byte - content.vb: Public bReserved As Byte -- uid: OpenTK.Graphics.Wgl.LayerPlaneDescriptor.crTransparent - commentId: F:OpenTK.Graphics.Wgl.LayerPlaneDescriptor.crTransparent - id: crTransparent - parent: OpenTK.Graphics.Wgl.LayerPlaneDescriptor - langs: - - csharp - - vb - name: crTransparent - nameWithType: LayerPlaneDescriptor.crTransparent - fullName: OpenTK.Graphics.Wgl.LayerPlaneDescriptor.crTransparent - type: Field - source: - id: crTransparent - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 571 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: public ColorRef crTransparent - return: - type: OpenTK.Graphics.Wgl.ColorRef - content.vb: Public crTransparent As ColorRef -references: -- uid: OpenTK.Graphics.Wgl - commentId: N:OpenTK.Graphics.Wgl - href: OpenTK.html - name: OpenTK.Graphics.Wgl - nameWithType: OpenTK.Graphics.Wgl - fullName: OpenTK.Graphics.Wgl - spec.csharp: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Wgl - name: Wgl - href: OpenTK.Graphics.Wgl.html - spec.vb: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Wgl - name: Wgl - href: OpenTK.Graphics.Wgl.html -- uid: System.ValueType.Equals(System.Object) - commentId: M:System.ValueType.Equals(System.Object) - parent: System.ValueType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals - name: Equals(object) - nameWithType: ValueType.Equals(object) - fullName: System.ValueType.Equals(object) - nameWithType.vb: ValueType.Equals(Object) - fullName.vb: System.ValueType.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: System.ValueType.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.ValueType.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.ValueType.GetHashCode - commentId: M:System.ValueType.GetHashCode - parent: System.ValueType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - name: GetHashCode() - nameWithType: ValueType.GetHashCode() - fullName: System.ValueType.GetHashCode() - spec.csharp: - - uid: System.ValueType.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - - name: ( - - name: ) - spec.vb: - - uid: System.ValueType.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - - name: ( - - name: ) -- uid: System.ValueType.ToString - commentId: M:System.ValueType.ToString - parent: System.ValueType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - name: ToString() - nameWithType: ValueType.ToString() - fullName: System.ValueType.ToString() - spec.csharp: - - uid: System.ValueType.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - - name: ( - - name: ) - spec.vb: - - uid: System.ValueType.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - - name: ( - - name: ) -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.ValueType - commentId: T:System.ValueType - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype - name: ValueType - nameWithType: ValueType - fullName: System.ValueType -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: System.UInt16 - commentId: T:System.UInt16 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint16 - name: ushort - nameWithType: ushort - fullName: ushort - nameWithType.vb: UShort - fullName.vb: UShort - name.vb: UShort -- uid: System.UInt32 - commentId: T:System.UInt32 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - name: uint - nameWithType: uint - fullName: uint - nameWithType.vb: UInteger - fullName.vb: UInteger - name.vb: UInteger -- uid: System.Byte - commentId: T:System.Byte - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.byte - name: byte - nameWithType: byte - fullName: byte - nameWithType.vb: Byte - fullName.vb: Byte - name.vb: Byte -- uid: OpenTK.Graphics.Wgl.ColorRef - commentId: T:OpenTK.Graphics.Wgl.ColorRef - parent: OpenTK.Graphics.Wgl - href: OpenTK.Graphics.Wgl.ColorRef.html - name: ColorRef - nameWithType: ColorRef - fullName: OpenTK.Graphics.Wgl.ColorRef diff --git a/api/OpenTK.Graphics.Wgl.LayerPlaneMask.yml b/api/OpenTK.Graphics.Wgl.LayerPlaneMask.yml deleted file mode 100644 index 393e4b82..00000000 --- a/api/OpenTK.Graphics.Wgl.LayerPlaneMask.yml +++ /dev/null @@ -1,903 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: OpenTK.Graphics.Wgl.LayerPlaneMask - commentId: T:OpenTK.Graphics.Wgl.LayerPlaneMask - id: LayerPlaneMask - parent: OpenTK.Graphics.Wgl - children: - - OpenTK.Graphics.Wgl.LayerPlaneMask.SwapMainPlane - - OpenTK.Graphics.Wgl.LayerPlaneMask.SwapOverlay1 - - OpenTK.Graphics.Wgl.LayerPlaneMask.SwapOverlay10 - - OpenTK.Graphics.Wgl.LayerPlaneMask.SwapOverlay11 - - OpenTK.Graphics.Wgl.LayerPlaneMask.SwapOverlay12 - - OpenTK.Graphics.Wgl.LayerPlaneMask.SwapOverlay13 - - OpenTK.Graphics.Wgl.LayerPlaneMask.SwapOverlay14 - - OpenTK.Graphics.Wgl.LayerPlaneMask.SwapOverlay15 - - OpenTK.Graphics.Wgl.LayerPlaneMask.SwapOverlay2 - - OpenTK.Graphics.Wgl.LayerPlaneMask.SwapOverlay3 - - OpenTK.Graphics.Wgl.LayerPlaneMask.SwapOverlay4 - - OpenTK.Graphics.Wgl.LayerPlaneMask.SwapOverlay5 - - OpenTK.Graphics.Wgl.LayerPlaneMask.SwapOverlay6 - - OpenTK.Graphics.Wgl.LayerPlaneMask.SwapOverlay7 - - OpenTK.Graphics.Wgl.LayerPlaneMask.SwapOverlay8 - - OpenTK.Graphics.Wgl.LayerPlaneMask.SwapOverlay9 - - OpenTK.Graphics.Wgl.LayerPlaneMask.SwapUnderlay1 - - OpenTK.Graphics.Wgl.LayerPlaneMask.SwapUnderlay10 - - OpenTK.Graphics.Wgl.LayerPlaneMask.SwapUnderlay11 - - OpenTK.Graphics.Wgl.LayerPlaneMask.SwapUnderlay12 - - OpenTK.Graphics.Wgl.LayerPlaneMask.SwapUnderlay13 - - OpenTK.Graphics.Wgl.LayerPlaneMask.SwapUnderlay14 - - OpenTK.Graphics.Wgl.LayerPlaneMask.SwapUnderlay15 - - OpenTK.Graphics.Wgl.LayerPlaneMask.SwapUnderlay2 - - OpenTK.Graphics.Wgl.LayerPlaneMask.SwapUnderlay3 - - OpenTK.Graphics.Wgl.LayerPlaneMask.SwapUnderlay4 - - OpenTK.Graphics.Wgl.LayerPlaneMask.SwapUnderlay5 - - OpenTK.Graphics.Wgl.LayerPlaneMask.SwapUnderlay6 - - OpenTK.Graphics.Wgl.LayerPlaneMask.SwapUnderlay7 - - OpenTK.Graphics.Wgl.LayerPlaneMask.SwapUnderlay8 - - OpenTK.Graphics.Wgl.LayerPlaneMask.SwapUnderlay9 - langs: - - csharp - - vb - name: LayerPlaneMask - nameWithType: LayerPlaneMask - fullName: OpenTK.Graphics.Wgl.LayerPlaneMask - type: Enum - source: - id: LayerPlaneMask - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 431 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: Used in , - example: [] - syntax: - content: >- - [Flags] - - public enum LayerPlaneMask : uint - content.vb: >- - - - Public Enum LayerPlaneMask As UInteger - attributes: - - type: System.FlagsAttribute - ctor: System.FlagsAttribute.#ctor - arguments: [] -- uid: OpenTK.Graphics.Wgl.LayerPlaneMask.SwapMainPlane - commentId: F:OpenTK.Graphics.Wgl.LayerPlaneMask.SwapMainPlane - id: SwapMainPlane - parent: OpenTK.Graphics.Wgl.LayerPlaneMask - langs: - - csharp - - vb - name: SwapMainPlane - nameWithType: LayerPlaneMask.SwapMainPlane - fullName: OpenTK.Graphics.Wgl.LayerPlaneMask.SwapMainPlane - type: Field - source: - id: SwapMainPlane - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 434 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: SwapMainPlane = 1 - return: - type: OpenTK.Graphics.Wgl.LayerPlaneMask -- uid: OpenTK.Graphics.Wgl.LayerPlaneMask.SwapOverlay1 - commentId: F:OpenTK.Graphics.Wgl.LayerPlaneMask.SwapOverlay1 - id: SwapOverlay1 - parent: OpenTK.Graphics.Wgl.LayerPlaneMask - langs: - - csharp - - vb - name: SwapOverlay1 - nameWithType: LayerPlaneMask.SwapOverlay1 - fullName: OpenTK.Graphics.Wgl.LayerPlaneMask.SwapOverlay1 - type: Field - source: - id: SwapOverlay1 - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 435 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: SwapOverlay1 = 2 - return: - type: OpenTK.Graphics.Wgl.LayerPlaneMask -- uid: OpenTK.Graphics.Wgl.LayerPlaneMask.SwapOverlay2 - commentId: F:OpenTK.Graphics.Wgl.LayerPlaneMask.SwapOverlay2 - id: SwapOverlay2 - parent: OpenTK.Graphics.Wgl.LayerPlaneMask - langs: - - csharp - - vb - name: SwapOverlay2 - nameWithType: LayerPlaneMask.SwapOverlay2 - fullName: OpenTK.Graphics.Wgl.LayerPlaneMask.SwapOverlay2 - type: Field - source: - id: SwapOverlay2 - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 436 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: SwapOverlay2 = 4 - return: - type: OpenTK.Graphics.Wgl.LayerPlaneMask -- uid: OpenTK.Graphics.Wgl.LayerPlaneMask.SwapOverlay3 - commentId: F:OpenTK.Graphics.Wgl.LayerPlaneMask.SwapOverlay3 - id: SwapOverlay3 - parent: OpenTK.Graphics.Wgl.LayerPlaneMask - langs: - - csharp - - vb - name: SwapOverlay3 - nameWithType: LayerPlaneMask.SwapOverlay3 - fullName: OpenTK.Graphics.Wgl.LayerPlaneMask.SwapOverlay3 - type: Field - source: - id: SwapOverlay3 - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 437 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: SwapOverlay3 = 8 - return: - type: OpenTK.Graphics.Wgl.LayerPlaneMask -- uid: OpenTK.Graphics.Wgl.LayerPlaneMask.SwapOverlay4 - commentId: F:OpenTK.Graphics.Wgl.LayerPlaneMask.SwapOverlay4 - id: SwapOverlay4 - parent: OpenTK.Graphics.Wgl.LayerPlaneMask - langs: - - csharp - - vb - name: SwapOverlay4 - nameWithType: LayerPlaneMask.SwapOverlay4 - fullName: OpenTK.Graphics.Wgl.LayerPlaneMask.SwapOverlay4 - type: Field - source: - id: SwapOverlay4 - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 438 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: SwapOverlay4 = 16 - return: - type: OpenTK.Graphics.Wgl.LayerPlaneMask -- uid: OpenTK.Graphics.Wgl.LayerPlaneMask.SwapOverlay5 - commentId: F:OpenTK.Graphics.Wgl.LayerPlaneMask.SwapOverlay5 - id: SwapOverlay5 - parent: OpenTK.Graphics.Wgl.LayerPlaneMask - langs: - - csharp - - vb - name: SwapOverlay5 - nameWithType: LayerPlaneMask.SwapOverlay5 - fullName: OpenTK.Graphics.Wgl.LayerPlaneMask.SwapOverlay5 - type: Field - source: - id: SwapOverlay5 - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 439 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: SwapOverlay5 = 32 - return: - type: OpenTK.Graphics.Wgl.LayerPlaneMask -- uid: OpenTK.Graphics.Wgl.LayerPlaneMask.SwapOverlay6 - commentId: F:OpenTK.Graphics.Wgl.LayerPlaneMask.SwapOverlay6 - id: SwapOverlay6 - parent: OpenTK.Graphics.Wgl.LayerPlaneMask - langs: - - csharp - - vb - name: SwapOverlay6 - nameWithType: LayerPlaneMask.SwapOverlay6 - fullName: OpenTK.Graphics.Wgl.LayerPlaneMask.SwapOverlay6 - type: Field - source: - id: SwapOverlay6 - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 440 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: SwapOverlay6 = 64 - return: - type: OpenTK.Graphics.Wgl.LayerPlaneMask -- uid: OpenTK.Graphics.Wgl.LayerPlaneMask.SwapOverlay7 - commentId: F:OpenTK.Graphics.Wgl.LayerPlaneMask.SwapOverlay7 - id: SwapOverlay7 - parent: OpenTK.Graphics.Wgl.LayerPlaneMask - langs: - - csharp - - vb - name: SwapOverlay7 - nameWithType: LayerPlaneMask.SwapOverlay7 - fullName: OpenTK.Graphics.Wgl.LayerPlaneMask.SwapOverlay7 - type: Field - source: - id: SwapOverlay7 - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 441 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: SwapOverlay7 = 128 - return: - type: OpenTK.Graphics.Wgl.LayerPlaneMask -- uid: OpenTK.Graphics.Wgl.LayerPlaneMask.SwapOverlay8 - commentId: F:OpenTK.Graphics.Wgl.LayerPlaneMask.SwapOverlay8 - id: SwapOverlay8 - parent: OpenTK.Graphics.Wgl.LayerPlaneMask - langs: - - csharp - - vb - name: SwapOverlay8 - nameWithType: LayerPlaneMask.SwapOverlay8 - fullName: OpenTK.Graphics.Wgl.LayerPlaneMask.SwapOverlay8 - type: Field - source: - id: SwapOverlay8 - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 442 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: SwapOverlay8 = 256 - return: - type: OpenTK.Graphics.Wgl.LayerPlaneMask -- uid: OpenTK.Graphics.Wgl.LayerPlaneMask.SwapOverlay9 - commentId: F:OpenTK.Graphics.Wgl.LayerPlaneMask.SwapOverlay9 - id: SwapOverlay9 - parent: OpenTK.Graphics.Wgl.LayerPlaneMask - langs: - - csharp - - vb - name: SwapOverlay9 - nameWithType: LayerPlaneMask.SwapOverlay9 - fullName: OpenTK.Graphics.Wgl.LayerPlaneMask.SwapOverlay9 - type: Field - source: - id: SwapOverlay9 - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 443 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: SwapOverlay9 = 512 - return: - type: OpenTK.Graphics.Wgl.LayerPlaneMask -- uid: OpenTK.Graphics.Wgl.LayerPlaneMask.SwapOverlay10 - commentId: F:OpenTK.Graphics.Wgl.LayerPlaneMask.SwapOverlay10 - id: SwapOverlay10 - parent: OpenTK.Graphics.Wgl.LayerPlaneMask - langs: - - csharp - - vb - name: SwapOverlay10 - nameWithType: LayerPlaneMask.SwapOverlay10 - fullName: OpenTK.Graphics.Wgl.LayerPlaneMask.SwapOverlay10 - type: Field - source: - id: SwapOverlay10 - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 444 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: SwapOverlay10 = 1024 - return: - type: OpenTK.Graphics.Wgl.LayerPlaneMask -- uid: OpenTK.Graphics.Wgl.LayerPlaneMask.SwapOverlay11 - commentId: F:OpenTK.Graphics.Wgl.LayerPlaneMask.SwapOverlay11 - id: SwapOverlay11 - parent: OpenTK.Graphics.Wgl.LayerPlaneMask - langs: - - csharp - - vb - name: SwapOverlay11 - nameWithType: LayerPlaneMask.SwapOverlay11 - fullName: OpenTK.Graphics.Wgl.LayerPlaneMask.SwapOverlay11 - type: Field - source: - id: SwapOverlay11 - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 445 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: SwapOverlay11 = 2048 - return: - type: OpenTK.Graphics.Wgl.LayerPlaneMask -- uid: OpenTK.Graphics.Wgl.LayerPlaneMask.SwapOverlay12 - commentId: F:OpenTK.Graphics.Wgl.LayerPlaneMask.SwapOverlay12 - id: SwapOverlay12 - parent: OpenTK.Graphics.Wgl.LayerPlaneMask - langs: - - csharp - - vb - name: SwapOverlay12 - nameWithType: LayerPlaneMask.SwapOverlay12 - fullName: OpenTK.Graphics.Wgl.LayerPlaneMask.SwapOverlay12 - type: Field - source: - id: SwapOverlay12 - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 446 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: SwapOverlay12 = 4096 - return: - type: OpenTK.Graphics.Wgl.LayerPlaneMask -- uid: OpenTK.Graphics.Wgl.LayerPlaneMask.SwapOverlay13 - commentId: F:OpenTK.Graphics.Wgl.LayerPlaneMask.SwapOverlay13 - id: SwapOverlay13 - parent: OpenTK.Graphics.Wgl.LayerPlaneMask - langs: - - csharp - - vb - name: SwapOverlay13 - nameWithType: LayerPlaneMask.SwapOverlay13 - fullName: OpenTK.Graphics.Wgl.LayerPlaneMask.SwapOverlay13 - type: Field - source: - id: SwapOverlay13 - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 447 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: SwapOverlay13 = 8192 - return: - type: OpenTK.Graphics.Wgl.LayerPlaneMask -- uid: OpenTK.Graphics.Wgl.LayerPlaneMask.SwapOverlay14 - commentId: F:OpenTK.Graphics.Wgl.LayerPlaneMask.SwapOverlay14 - id: SwapOverlay14 - parent: OpenTK.Graphics.Wgl.LayerPlaneMask - langs: - - csharp - - vb - name: SwapOverlay14 - nameWithType: LayerPlaneMask.SwapOverlay14 - fullName: OpenTK.Graphics.Wgl.LayerPlaneMask.SwapOverlay14 - type: Field - source: - id: SwapOverlay14 - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 448 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: SwapOverlay14 = 16384 - return: - type: OpenTK.Graphics.Wgl.LayerPlaneMask -- uid: OpenTK.Graphics.Wgl.LayerPlaneMask.SwapOverlay15 - commentId: F:OpenTK.Graphics.Wgl.LayerPlaneMask.SwapOverlay15 - id: SwapOverlay15 - parent: OpenTK.Graphics.Wgl.LayerPlaneMask - langs: - - csharp - - vb - name: SwapOverlay15 - nameWithType: LayerPlaneMask.SwapOverlay15 - fullName: OpenTK.Graphics.Wgl.LayerPlaneMask.SwapOverlay15 - type: Field - source: - id: SwapOverlay15 - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 449 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: SwapOverlay15 = 32768 - return: - type: OpenTK.Graphics.Wgl.LayerPlaneMask -- uid: OpenTK.Graphics.Wgl.LayerPlaneMask.SwapUnderlay1 - commentId: F:OpenTK.Graphics.Wgl.LayerPlaneMask.SwapUnderlay1 - id: SwapUnderlay1 - parent: OpenTK.Graphics.Wgl.LayerPlaneMask - langs: - - csharp - - vb - name: SwapUnderlay1 - nameWithType: LayerPlaneMask.SwapUnderlay1 - fullName: OpenTK.Graphics.Wgl.LayerPlaneMask.SwapUnderlay1 - type: Field - source: - id: SwapUnderlay1 - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 450 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: SwapUnderlay1 = 65536 - return: - type: OpenTK.Graphics.Wgl.LayerPlaneMask -- uid: OpenTK.Graphics.Wgl.LayerPlaneMask.SwapUnderlay2 - commentId: F:OpenTK.Graphics.Wgl.LayerPlaneMask.SwapUnderlay2 - id: SwapUnderlay2 - parent: OpenTK.Graphics.Wgl.LayerPlaneMask - langs: - - csharp - - vb - name: SwapUnderlay2 - nameWithType: LayerPlaneMask.SwapUnderlay2 - fullName: OpenTK.Graphics.Wgl.LayerPlaneMask.SwapUnderlay2 - type: Field - source: - id: SwapUnderlay2 - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 451 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: SwapUnderlay2 = 131072 - return: - type: OpenTK.Graphics.Wgl.LayerPlaneMask -- uid: OpenTK.Graphics.Wgl.LayerPlaneMask.SwapUnderlay3 - commentId: F:OpenTK.Graphics.Wgl.LayerPlaneMask.SwapUnderlay3 - id: SwapUnderlay3 - parent: OpenTK.Graphics.Wgl.LayerPlaneMask - langs: - - csharp - - vb - name: SwapUnderlay3 - nameWithType: LayerPlaneMask.SwapUnderlay3 - fullName: OpenTK.Graphics.Wgl.LayerPlaneMask.SwapUnderlay3 - type: Field - source: - id: SwapUnderlay3 - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 452 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: SwapUnderlay3 = 262144 - return: - type: OpenTK.Graphics.Wgl.LayerPlaneMask -- uid: OpenTK.Graphics.Wgl.LayerPlaneMask.SwapUnderlay4 - commentId: F:OpenTK.Graphics.Wgl.LayerPlaneMask.SwapUnderlay4 - id: SwapUnderlay4 - parent: OpenTK.Graphics.Wgl.LayerPlaneMask - langs: - - csharp - - vb - name: SwapUnderlay4 - nameWithType: LayerPlaneMask.SwapUnderlay4 - fullName: OpenTK.Graphics.Wgl.LayerPlaneMask.SwapUnderlay4 - type: Field - source: - id: SwapUnderlay4 - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 453 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: SwapUnderlay4 = 524288 - return: - type: OpenTK.Graphics.Wgl.LayerPlaneMask -- uid: OpenTK.Graphics.Wgl.LayerPlaneMask.SwapUnderlay5 - commentId: F:OpenTK.Graphics.Wgl.LayerPlaneMask.SwapUnderlay5 - id: SwapUnderlay5 - parent: OpenTK.Graphics.Wgl.LayerPlaneMask - langs: - - csharp - - vb - name: SwapUnderlay5 - nameWithType: LayerPlaneMask.SwapUnderlay5 - fullName: OpenTK.Graphics.Wgl.LayerPlaneMask.SwapUnderlay5 - type: Field - source: - id: SwapUnderlay5 - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 454 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: SwapUnderlay5 = 1048576 - return: - type: OpenTK.Graphics.Wgl.LayerPlaneMask -- uid: OpenTK.Graphics.Wgl.LayerPlaneMask.SwapUnderlay6 - commentId: F:OpenTK.Graphics.Wgl.LayerPlaneMask.SwapUnderlay6 - id: SwapUnderlay6 - parent: OpenTK.Graphics.Wgl.LayerPlaneMask - langs: - - csharp - - vb - name: SwapUnderlay6 - nameWithType: LayerPlaneMask.SwapUnderlay6 - fullName: OpenTK.Graphics.Wgl.LayerPlaneMask.SwapUnderlay6 - type: Field - source: - id: SwapUnderlay6 - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 455 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: SwapUnderlay6 = 2097152 - return: - type: OpenTK.Graphics.Wgl.LayerPlaneMask -- uid: OpenTK.Graphics.Wgl.LayerPlaneMask.SwapUnderlay7 - commentId: F:OpenTK.Graphics.Wgl.LayerPlaneMask.SwapUnderlay7 - id: SwapUnderlay7 - parent: OpenTK.Graphics.Wgl.LayerPlaneMask - langs: - - csharp - - vb - name: SwapUnderlay7 - nameWithType: LayerPlaneMask.SwapUnderlay7 - fullName: OpenTK.Graphics.Wgl.LayerPlaneMask.SwapUnderlay7 - type: Field - source: - id: SwapUnderlay7 - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 456 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: SwapUnderlay7 = 4194304 - return: - type: OpenTK.Graphics.Wgl.LayerPlaneMask -- uid: OpenTK.Graphics.Wgl.LayerPlaneMask.SwapUnderlay8 - commentId: F:OpenTK.Graphics.Wgl.LayerPlaneMask.SwapUnderlay8 - id: SwapUnderlay8 - parent: OpenTK.Graphics.Wgl.LayerPlaneMask - langs: - - csharp - - vb - name: SwapUnderlay8 - nameWithType: LayerPlaneMask.SwapUnderlay8 - fullName: OpenTK.Graphics.Wgl.LayerPlaneMask.SwapUnderlay8 - type: Field - source: - id: SwapUnderlay8 - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 457 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: SwapUnderlay8 = 8388608 - return: - type: OpenTK.Graphics.Wgl.LayerPlaneMask -- uid: OpenTK.Graphics.Wgl.LayerPlaneMask.SwapUnderlay9 - commentId: F:OpenTK.Graphics.Wgl.LayerPlaneMask.SwapUnderlay9 - id: SwapUnderlay9 - parent: OpenTK.Graphics.Wgl.LayerPlaneMask - langs: - - csharp - - vb - name: SwapUnderlay9 - nameWithType: LayerPlaneMask.SwapUnderlay9 - fullName: OpenTK.Graphics.Wgl.LayerPlaneMask.SwapUnderlay9 - type: Field - source: - id: SwapUnderlay9 - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 458 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: SwapUnderlay9 = 16777216 - return: - type: OpenTK.Graphics.Wgl.LayerPlaneMask -- uid: OpenTK.Graphics.Wgl.LayerPlaneMask.SwapUnderlay10 - commentId: F:OpenTK.Graphics.Wgl.LayerPlaneMask.SwapUnderlay10 - id: SwapUnderlay10 - parent: OpenTK.Graphics.Wgl.LayerPlaneMask - langs: - - csharp - - vb - name: SwapUnderlay10 - nameWithType: LayerPlaneMask.SwapUnderlay10 - fullName: OpenTK.Graphics.Wgl.LayerPlaneMask.SwapUnderlay10 - type: Field - source: - id: SwapUnderlay10 - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 459 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: SwapUnderlay10 = 33554432 - return: - type: OpenTK.Graphics.Wgl.LayerPlaneMask -- uid: OpenTK.Graphics.Wgl.LayerPlaneMask.SwapUnderlay11 - commentId: F:OpenTK.Graphics.Wgl.LayerPlaneMask.SwapUnderlay11 - id: SwapUnderlay11 - parent: OpenTK.Graphics.Wgl.LayerPlaneMask - langs: - - csharp - - vb - name: SwapUnderlay11 - nameWithType: LayerPlaneMask.SwapUnderlay11 - fullName: OpenTK.Graphics.Wgl.LayerPlaneMask.SwapUnderlay11 - type: Field - source: - id: SwapUnderlay11 - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 460 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: SwapUnderlay11 = 67108864 - return: - type: OpenTK.Graphics.Wgl.LayerPlaneMask -- uid: OpenTK.Graphics.Wgl.LayerPlaneMask.SwapUnderlay12 - commentId: F:OpenTK.Graphics.Wgl.LayerPlaneMask.SwapUnderlay12 - id: SwapUnderlay12 - parent: OpenTK.Graphics.Wgl.LayerPlaneMask - langs: - - csharp - - vb - name: SwapUnderlay12 - nameWithType: LayerPlaneMask.SwapUnderlay12 - fullName: OpenTK.Graphics.Wgl.LayerPlaneMask.SwapUnderlay12 - type: Field - source: - id: SwapUnderlay12 - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 461 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: SwapUnderlay12 = 134217728 - return: - type: OpenTK.Graphics.Wgl.LayerPlaneMask -- uid: OpenTK.Graphics.Wgl.LayerPlaneMask.SwapUnderlay13 - commentId: F:OpenTK.Graphics.Wgl.LayerPlaneMask.SwapUnderlay13 - id: SwapUnderlay13 - parent: OpenTK.Graphics.Wgl.LayerPlaneMask - langs: - - csharp - - vb - name: SwapUnderlay13 - nameWithType: LayerPlaneMask.SwapUnderlay13 - fullName: OpenTK.Graphics.Wgl.LayerPlaneMask.SwapUnderlay13 - type: Field - source: - id: SwapUnderlay13 - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 462 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: SwapUnderlay13 = 268435456 - return: - type: OpenTK.Graphics.Wgl.LayerPlaneMask -- uid: OpenTK.Graphics.Wgl.LayerPlaneMask.SwapUnderlay14 - commentId: F:OpenTK.Graphics.Wgl.LayerPlaneMask.SwapUnderlay14 - id: SwapUnderlay14 - parent: OpenTK.Graphics.Wgl.LayerPlaneMask - langs: - - csharp - - vb - name: SwapUnderlay14 - nameWithType: LayerPlaneMask.SwapUnderlay14 - fullName: OpenTK.Graphics.Wgl.LayerPlaneMask.SwapUnderlay14 - type: Field - source: - id: SwapUnderlay14 - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 463 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: SwapUnderlay14 = 536870912 - return: - type: OpenTK.Graphics.Wgl.LayerPlaneMask -- uid: OpenTK.Graphics.Wgl.LayerPlaneMask.SwapUnderlay15 - commentId: F:OpenTK.Graphics.Wgl.LayerPlaneMask.SwapUnderlay15 - id: SwapUnderlay15 - parent: OpenTK.Graphics.Wgl.LayerPlaneMask - langs: - - csharp - - vb - name: SwapUnderlay15 - nameWithType: LayerPlaneMask.SwapUnderlay15 - fullName: OpenTK.Graphics.Wgl.LayerPlaneMask.SwapUnderlay15 - type: Field - source: - id: SwapUnderlay15 - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 464 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: SwapUnderlay15 = 1073741824 - return: - type: OpenTK.Graphics.Wgl.LayerPlaneMask -references: -- uid: OpenTK.Graphics.Wgl.Wgl.SwapLayerBuffers(System.IntPtr,OpenTK.Graphics.Wgl.LayerPlaneMask) - commentId: M:OpenTK.Graphics.Wgl.Wgl.SwapLayerBuffers(System.IntPtr,OpenTK.Graphics.Wgl.LayerPlaneMask) - isExternal: true - href: OpenTK.Graphics.Wgl.Wgl.html#OpenTK_Graphics_Wgl_Wgl_SwapLayerBuffers_System_IntPtr_OpenTK_Graphics_Wgl_LayerPlaneMask_ - name: SwapLayerBuffers(nint, LayerPlaneMask) - nameWithType: Wgl.SwapLayerBuffers(nint, LayerPlaneMask) - fullName: OpenTK.Graphics.Wgl.Wgl.SwapLayerBuffers(nint, OpenTK.Graphics.Wgl.LayerPlaneMask) - nameWithType.vb: Wgl.SwapLayerBuffers(IntPtr, LayerPlaneMask) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.SwapLayerBuffers(System.IntPtr, OpenTK.Graphics.Wgl.LayerPlaneMask) - name.vb: SwapLayerBuffers(IntPtr, LayerPlaneMask) - spec.csharp: - - uid: OpenTK.Graphics.Wgl.Wgl.SwapLayerBuffers(System.IntPtr,OpenTK.Graphics.Wgl.LayerPlaneMask) - name: SwapLayerBuffers - href: OpenTK.Graphics.Wgl.Wgl.html#OpenTK_Graphics_Wgl_Wgl_SwapLayerBuffers_System_IntPtr_OpenTK_Graphics_Wgl_LayerPlaneMask_ - - name: ( - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: OpenTK.Graphics.Wgl.LayerPlaneMask - name: LayerPlaneMask - href: OpenTK.Graphics.Wgl.LayerPlaneMask.html - - name: ) - spec.vb: - - uid: OpenTK.Graphics.Wgl.Wgl.SwapLayerBuffers(System.IntPtr,OpenTK.Graphics.Wgl.LayerPlaneMask) - name: SwapLayerBuffers - href: OpenTK.Graphics.Wgl.Wgl.html#OpenTK_Graphics_Wgl_Wgl_SwapLayerBuffers_System_IntPtr_OpenTK_Graphics_Wgl_LayerPlaneMask_ - - name: ( - - uid: System.IntPtr - name: IntPtr - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: OpenTK.Graphics.Wgl.LayerPlaneMask - name: LayerPlaneMask - href: OpenTK.Graphics.Wgl.LayerPlaneMask.html - - name: ) -- uid: OpenTK.Graphics.Wgl.Wgl.OML.SwapLayerBuffersMscOML(System.IntPtr,OpenTK.Graphics.Wgl.LayerPlaneMask,System.Int64,System.Int64,System.Int64) - commentId: M:OpenTK.Graphics.Wgl.Wgl.OML.SwapLayerBuffersMscOML(System.IntPtr,OpenTK.Graphics.Wgl.LayerPlaneMask,System.Int64,System.Int64,System.Int64) - isExternal: true - href: OpenTK.Graphics.Wgl.Wgl.OML.html#OpenTK_Graphics_Wgl_Wgl_OML_SwapLayerBuffersMscOML_System_IntPtr_OpenTK_Graphics_Wgl_LayerPlaneMask_System_Int64_System_Int64_System_Int64_ - name: SwapLayerBuffersMscOML(nint, LayerPlaneMask, long, long, long) - nameWithType: Wgl.OML.SwapLayerBuffersMscOML(nint, LayerPlaneMask, long, long, long) - fullName: OpenTK.Graphics.Wgl.Wgl.OML.SwapLayerBuffersMscOML(nint, OpenTK.Graphics.Wgl.LayerPlaneMask, long, long, long) - nameWithType.vb: Wgl.OML.SwapLayerBuffersMscOML(IntPtr, LayerPlaneMask, Long, Long, Long) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.OML.SwapLayerBuffersMscOML(System.IntPtr, OpenTK.Graphics.Wgl.LayerPlaneMask, Long, Long, Long) - name.vb: SwapLayerBuffersMscOML(IntPtr, LayerPlaneMask, Long, Long, Long) - spec.csharp: - - uid: OpenTK.Graphics.Wgl.Wgl.OML.SwapLayerBuffersMscOML(System.IntPtr,OpenTK.Graphics.Wgl.LayerPlaneMask,System.Int64,System.Int64,System.Int64) - name: SwapLayerBuffersMscOML - href: OpenTK.Graphics.Wgl.Wgl.OML.html#OpenTK_Graphics_Wgl_Wgl_OML_SwapLayerBuffersMscOML_System_IntPtr_OpenTK_Graphics_Wgl_LayerPlaneMask_System_Int64_System_Int64_System_Int64_ - - name: ( - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: OpenTK.Graphics.Wgl.LayerPlaneMask - name: LayerPlaneMask - href: OpenTK.Graphics.Wgl.LayerPlaneMask.html - - name: ',' - - name: " " - - uid: System.Int64 - name: long - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int64 - - name: ',' - - name: " " - - uid: System.Int64 - name: long - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int64 - - name: ',' - - name: " " - - uid: System.Int64 - name: long - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int64 - - name: ) - spec.vb: - - uid: OpenTK.Graphics.Wgl.Wgl.OML.SwapLayerBuffersMscOML(System.IntPtr,OpenTK.Graphics.Wgl.LayerPlaneMask,System.Int64,System.Int64,System.Int64) - name: SwapLayerBuffersMscOML - href: OpenTK.Graphics.Wgl.Wgl.OML.html#OpenTK_Graphics_Wgl_Wgl_OML_SwapLayerBuffersMscOML_System_IntPtr_OpenTK_Graphics_Wgl_LayerPlaneMask_System_Int64_System_Int64_System_Int64_ - - name: ( - - uid: System.IntPtr - name: IntPtr - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: OpenTK.Graphics.Wgl.LayerPlaneMask - name: LayerPlaneMask - href: OpenTK.Graphics.Wgl.LayerPlaneMask.html - - name: ',' - - name: " " - - uid: System.Int64 - name: Long - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int64 - - name: ',' - - name: " " - - uid: System.Int64 - name: Long - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int64 - - name: ',' - - name: " " - - uid: System.Int64 - name: Long - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int64 - - name: ) -- uid: OpenTK.Graphics.Wgl - commentId: N:OpenTK.Graphics.Wgl - href: OpenTK.html - name: OpenTK.Graphics.Wgl - nameWithType: OpenTK.Graphics.Wgl - fullName: OpenTK.Graphics.Wgl - spec.csharp: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Wgl - name: Wgl - href: OpenTK.Graphics.Wgl.html - spec.vb: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Wgl - name: Wgl - href: OpenTK.Graphics.Wgl.html -- uid: OpenTK.Graphics.Wgl.LayerPlaneMask - commentId: T:OpenTK.Graphics.Wgl.LayerPlaneMask - parent: OpenTK.Graphics.Wgl - href: OpenTK.Graphics.Wgl.LayerPlaneMask.html - name: LayerPlaneMask - nameWithType: LayerPlaneMask - fullName: OpenTK.Graphics.Wgl.LayerPlaneMask diff --git a/api/OpenTK.Graphics.Wgl.ObjectTypeDX.yml b/api/OpenTK.Graphics.Wgl.ObjectTypeDX.yml deleted file mode 100644 index 62e7a985..00000000 --- a/api/OpenTK.Graphics.Wgl.ObjectTypeDX.yml +++ /dev/null @@ -1,278 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: OpenTK.Graphics.Wgl.ObjectTypeDX - commentId: T:OpenTK.Graphics.Wgl.ObjectTypeDX - id: ObjectTypeDX - parent: OpenTK.Graphics.Wgl - children: - - OpenTK.Graphics.Wgl.ObjectTypeDX.None - - OpenTK.Graphics.Wgl.ObjectTypeDX.Renderbuffer - - OpenTK.Graphics.Wgl.ObjectTypeDX.Texture2d - - OpenTK.Graphics.Wgl.ObjectTypeDX.Texture3d - - OpenTK.Graphics.Wgl.ObjectTypeDX.TextureCubeMap - - OpenTK.Graphics.Wgl.ObjectTypeDX.TextureRectangle - langs: - - csharp - - vb - name: ObjectTypeDX - nameWithType: ObjectTypeDX - fullName: OpenTK.Graphics.Wgl.ObjectTypeDX - type: Enum - source: - id: ObjectTypeDX - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 467 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: Used in - example: [] - syntax: - content: 'public enum ObjectTypeDX : uint' - content.vb: Public Enum ObjectTypeDX As UInteger -- uid: OpenTK.Graphics.Wgl.ObjectTypeDX.None - commentId: F:OpenTK.Graphics.Wgl.ObjectTypeDX.None - id: None - parent: OpenTK.Graphics.Wgl.ObjectTypeDX - langs: - - csharp - - vb - name: None - nameWithType: ObjectTypeDX.None - fullName: OpenTK.Graphics.Wgl.ObjectTypeDX.None - type: Field - source: - id: None - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 469 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: None = 0 - return: - type: OpenTK.Graphics.Wgl.ObjectTypeDX -- uid: OpenTK.Graphics.Wgl.ObjectTypeDX.Texture2d - commentId: F:OpenTK.Graphics.Wgl.ObjectTypeDX.Texture2d - id: Texture2d - parent: OpenTK.Graphics.Wgl.ObjectTypeDX - langs: - - csharp - - vb - name: Texture2d - nameWithType: ObjectTypeDX.Texture2d - fullName: OpenTK.Graphics.Wgl.ObjectTypeDX.Texture2d - type: Field - source: - id: Texture2d - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 470 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: Texture2d = 3553 - return: - type: OpenTK.Graphics.Wgl.ObjectTypeDX -- uid: OpenTK.Graphics.Wgl.ObjectTypeDX.Texture3d - commentId: F:OpenTK.Graphics.Wgl.ObjectTypeDX.Texture3d - id: Texture3d - parent: OpenTK.Graphics.Wgl.ObjectTypeDX - langs: - - csharp - - vb - name: Texture3d - nameWithType: ObjectTypeDX.Texture3d - fullName: OpenTK.Graphics.Wgl.ObjectTypeDX.Texture3d - type: Field - source: - id: Texture3d - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 471 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: Texture3d = 32879 - return: - type: OpenTK.Graphics.Wgl.ObjectTypeDX -- uid: OpenTK.Graphics.Wgl.ObjectTypeDX.TextureRectangle - commentId: F:OpenTK.Graphics.Wgl.ObjectTypeDX.TextureRectangle - id: TextureRectangle - parent: OpenTK.Graphics.Wgl.ObjectTypeDX - langs: - - csharp - - vb - name: TextureRectangle - nameWithType: ObjectTypeDX.TextureRectangle - fullName: OpenTK.Graphics.Wgl.ObjectTypeDX.TextureRectangle - type: Field - source: - id: TextureRectangle - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 472 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: TextureRectangle = 34037 - return: - type: OpenTK.Graphics.Wgl.ObjectTypeDX -- uid: OpenTK.Graphics.Wgl.ObjectTypeDX.TextureCubeMap - commentId: F:OpenTK.Graphics.Wgl.ObjectTypeDX.TextureCubeMap - id: TextureCubeMap - parent: OpenTK.Graphics.Wgl.ObjectTypeDX - langs: - - csharp - - vb - name: TextureCubeMap - nameWithType: ObjectTypeDX.TextureCubeMap - fullName: OpenTK.Graphics.Wgl.ObjectTypeDX.TextureCubeMap - type: Field - source: - id: TextureCubeMap - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 473 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: TextureCubeMap = 34067 - return: - type: OpenTK.Graphics.Wgl.ObjectTypeDX -- uid: OpenTK.Graphics.Wgl.ObjectTypeDX.Renderbuffer - commentId: F:OpenTK.Graphics.Wgl.ObjectTypeDX.Renderbuffer - id: Renderbuffer - parent: OpenTK.Graphics.Wgl.ObjectTypeDX - langs: - - csharp - - vb - name: Renderbuffer - nameWithType: ObjectTypeDX.Renderbuffer - fullName: OpenTK.Graphics.Wgl.ObjectTypeDX.Renderbuffer - type: Field - source: - id: Renderbuffer - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 474 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: Renderbuffer = 36161 - return: - type: OpenTK.Graphics.Wgl.ObjectTypeDX -references: -- uid: OpenTK.Graphics.Wgl.Wgl.NV.DXRegisterObjectNV(System.IntPtr,System.Void*,System.UInt32,OpenTK.Graphics.Wgl.ObjectTypeDX,OpenTK.Graphics.Wgl.DXInteropMaskNV) - commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.DXRegisterObjectNV(System.IntPtr,System.Void*,System.UInt32,OpenTK.Graphics.Wgl.ObjectTypeDX,OpenTK.Graphics.Wgl.DXInteropMaskNV) - isExternal: true - href: OpenTK.Graphics.Wgl.Wgl.NV.html#OpenTK_Graphics_Wgl_Wgl_NV_DXRegisterObjectNV_System_IntPtr_System_Void__System_UInt32_OpenTK_Graphics_Wgl_ObjectTypeDX_OpenTK_Graphics_Wgl_DXInteropMaskNV_ - name: DXRegisterObjectNV(nint, void*, uint, ObjectTypeDX, DXInteropMaskNV) - nameWithType: Wgl.NV.DXRegisterObjectNV(nint, void*, uint, ObjectTypeDX, DXInteropMaskNV) - fullName: OpenTK.Graphics.Wgl.Wgl.NV.DXRegisterObjectNV(nint, void*, uint, OpenTK.Graphics.Wgl.ObjectTypeDX, OpenTK.Graphics.Wgl.DXInteropMaskNV) - nameWithType.vb: Wgl.NV.DXRegisterObjectNV(IntPtr, Void*, UInteger, ObjectTypeDX, DXInteropMaskNV) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.DXRegisterObjectNV(System.IntPtr, Void*, UInteger, OpenTK.Graphics.Wgl.ObjectTypeDX, OpenTK.Graphics.Wgl.DXInteropMaskNV) - name.vb: DXRegisterObjectNV(IntPtr, Void*, UInteger, ObjectTypeDX, DXInteropMaskNV) - spec.csharp: - - uid: OpenTK.Graphics.Wgl.Wgl.NV.DXRegisterObjectNV(System.IntPtr,System.Void*,System.UInt32,OpenTK.Graphics.Wgl.ObjectTypeDX,OpenTK.Graphics.Wgl.DXInteropMaskNV) - name: DXRegisterObjectNV - href: OpenTK.Graphics.Wgl.Wgl.NV.html#OpenTK_Graphics_Wgl_Wgl_NV_DXRegisterObjectNV_System_IntPtr_System_Void__System_UInt32_OpenTK_Graphics_Wgl_ObjectTypeDX_OpenTK_Graphics_Wgl_DXInteropMaskNV_ - - name: ( - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.Void - name: void - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.void - - name: '*' - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ',' - - name: " " - - uid: OpenTK.Graphics.Wgl.ObjectTypeDX - name: ObjectTypeDX - href: OpenTK.Graphics.Wgl.ObjectTypeDX.html - - name: ',' - - name: " " - - uid: OpenTK.Graphics.Wgl.DXInteropMaskNV - name: DXInteropMaskNV - href: OpenTK.Graphics.Wgl.DXInteropMaskNV.html - - name: ) - spec.vb: - - uid: OpenTK.Graphics.Wgl.Wgl.NV.DXRegisterObjectNV(System.IntPtr,System.Void*,System.UInt32,OpenTK.Graphics.Wgl.ObjectTypeDX,OpenTK.Graphics.Wgl.DXInteropMaskNV) - name: DXRegisterObjectNV - href: OpenTK.Graphics.Wgl.Wgl.NV.html#OpenTK_Graphics_Wgl_Wgl_NV_DXRegisterObjectNV_System_IntPtr_System_Void__System_UInt32_OpenTK_Graphics_Wgl_ObjectTypeDX_OpenTK_Graphics_Wgl_DXInteropMaskNV_ - - name: ( - - uid: System.IntPtr - name: IntPtr - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.Void - name: Void - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.void - - name: '*' - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ',' - - name: " " - - uid: OpenTK.Graphics.Wgl.ObjectTypeDX - name: ObjectTypeDX - href: OpenTK.Graphics.Wgl.ObjectTypeDX.html - - name: ',' - - name: " " - - uid: OpenTK.Graphics.Wgl.DXInteropMaskNV - name: DXInteropMaskNV - href: OpenTK.Graphics.Wgl.DXInteropMaskNV.html - - name: ) -- uid: OpenTK.Graphics.Wgl - commentId: N:OpenTK.Graphics.Wgl - href: OpenTK.html - name: OpenTK.Graphics.Wgl - nameWithType: OpenTK.Graphics.Wgl - fullName: OpenTK.Graphics.Wgl - spec.csharp: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Wgl - name: Wgl - href: OpenTK.Graphics.Wgl.html - spec.vb: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Wgl - name: Wgl - href: OpenTK.Graphics.Wgl.html -- uid: OpenTK.Graphics.Wgl.ObjectTypeDX - commentId: T:OpenTK.Graphics.Wgl.ObjectTypeDX - parent: OpenTK.Graphics.Wgl - href: OpenTK.Graphics.Wgl.ObjectTypeDX.html - name: ObjectTypeDX - nameWithType: ObjectTypeDX - fullName: OpenTK.Graphics.Wgl.ObjectTypeDX diff --git a/api/OpenTK.Graphics.Wgl.PBufferAttribute.yml b/api/OpenTK.Graphics.Wgl.PBufferAttribute.yml deleted file mode 100644 index f3ddf37f..00000000 --- a/api/OpenTK.Graphics.Wgl.PBufferAttribute.yml +++ /dev/null @@ -1,402 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: OpenTK.Graphics.Wgl.PBufferAttribute - commentId: T:OpenTK.Graphics.Wgl.PBufferAttribute - id: PBufferAttribute - parent: OpenTK.Graphics.Wgl - children: - - OpenTK.Graphics.Wgl.PBufferAttribute.CubeMapFaceArb - - OpenTK.Graphics.Wgl.PBufferAttribute.MipmapLevelArb - - OpenTK.Graphics.Wgl.PBufferAttribute.MipmapTextureArb - - OpenTK.Graphics.Wgl.PBufferAttribute.PbufferHeightArb - - OpenTK.Graphics.Wgl.PBufferAttribute.PbufferHeightExt - - OpenTK.Graphics.Wgl.PBufferAttribute.PbufferLostArb - - OpenTK.Graphics.Wgl.PBufferAttribute.PbufferWidthArb - - OpenTK.Graphics.Wgl.PBufferAttribute.PbufferWidthExt - - OpenTK.Graphics.Wgl.PBufferAttribute.TextureFormatArb - - OpenTK.Graphics.Wgl.PBufferAttribute.TextureTargetArb - langs: - - csharp - - vb - name: PBufferAttribute - nameWithType: PBufferAttribute - fullName: OpenTK.Graphics.Wgl.PBufferAttribute - type: Enum - source: - id: PBufferAttribute - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 477 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: Used in , - example: [] - syntax: - content: 'public enum PBufferAttribute : uint' - content.vb: Public Enum PBufferAttribute As UInteger -- uid: OpenTK.Graphics.Wgl.PBufferAttribute.PbufferWidthArb - commentId: F:OpenTK.Graphics.Wgl.PBufferAttribute.PbufferWidthArb - id: PbufferWidthArb - parent: OpenTK.Graphics.Wgl.PBufferAttribute - langs: - - csharp - - vb - name: PbufferWidthArb - nameWithType: PBufferAttribute.PbufferWidthArb - fullName: OpenTK.Graphics.Wgl.PBufferAttribute.PbufferWidthArb - type: Field - source: - id: PbufferWidthArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 479 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: PbufferWidthArb = 8244 - return: - type: OpenTK.Graphics.Wgl.PBufferAttribute -- uid: OpenTK.Graphics.Wgl.PBufferAttribute.PbufferWidthExt - commentId: F:OpenTK.Graphics.Wgl.PBufferAttribute.PbufferWidthExt - id: PbufferWidthExt - parent: OpenTK.Graphics.Wgl.PBufferAttribute - langs: - - csharp - - vb - name: PbufferWidthExt - nameWithType: PBufferAttribute.PbufferWidthExt - fullName: OpenTK.Graphics.Wgl.PBufferAttribute.PbufferWidthExt - type: Field - source: - id: PbufferWidthExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 480 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: PbufferWidthExt = 8244 - return: - type: OpenTK.Graphics.Wgl.PBufferAttribute -- uid: OpenTK.Graphics.Wgl.PBufferAttribute.PbufferHeightArb - commentId: F:OpenTK.Graphics.Wgl.PBufferAttribute.PbufferHeightArb - id: PbufferHeightArb - parent: OpenTK.Graphics.Wgl.PBufferAttribute - langs: - - csharp - - vb - name: PbufferHeightArb - nameWithType: PBufferAttribute.PbufferHeightArb - fullName: OpenTK.Graphics.Wgl.PBufferAttribute.PbufferHeightArb - type: Field - source: - id: PbufferHeightArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 481 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: PbufferHeightArb = 8245 - return: - type: OpenTK.Graphics.Wgl.PBufferAttribute -- uid: OpenTK.Graphics.Wgl.PBufferAttribute.PbufferHeightExt - commentId: F:OpenTK.Graphics.Wgl.PBufferAttribute.PbufferHeightExt - id: PbufferHeightExt - parent: OpenTK.Graphics.Wgl.PBufferAttribute - langs: - - csharp - - vb - name: PbufferHeightExt - nameWithType: PBufferAttribute.PbufferHeightExt - fullName: OpenTK.Graphics.Wgl.PBufferAttribute.PbufferHeightExt - type: Field - source: - id: PbufferHeightExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 482 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: PbufferHeightExt = 8245 - return: - type: OpenTK.Graphics.Wgl.PBufferAttribute -- uid: OpenTK.Graphics.Wgl.PBufferAttribute.PbufferLostArb - commentId: F:OpenTK.Graphics.Wgl.PBufferAttribute.PbufferLostArb - id: PbufferLostArb - parent: OpenTK.Graphics.Wgl.PBufferAttribute - langs: - - csharp - - vb - name: PbufferLostArb - nameWithType: PBufferAttribute.PbufferLostArb - fullName: OpenTK.Graphics.Wgl.PBufferAttribute.PbufferLostArb - type: Field - source: - id: PbufferLostArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 483 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: PbufferLostArb = 8246 - return: - type: OpenTK.Graphics.Wgl.PBufferAttribute -- uid: OpenTK.Graphics.Wgl.PBufferAttribute.TextureFormatArb - commentId: F:OpenTK.Graphics.Wgl.PBufferAttribute.TextureFormatArb - id: TextureFormatArb - parent: OpenTK.Graphics.Wgl.PBufferAttribute - langs: - - csharp - - vb - name: TextureFormatArb - nameWithType: PBufferAttribute.TextureFormatArb - fullName: OpenTK.Graphics.Wgl.PBufferAttribute.TextureFormatArb - type: Field - source: - id: TextureFormatArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 484 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: TextureFormatArb = 8306 - return: - type: OpenTK.Graphics.Wgl.PBufferAttribute -- uid: OpenTK.Graphics.Wgl.PBufferAttribute.TextureTargetArb - commentId: F:OpenTK.Graphics.Wgl.PBufferAttribute.TextureTargetArb - id: TextureTargetArb - parent: OpenTK.Graphics.Wgl.PBufferAttribute - langs: - - csharp - - vb - name: TextureTargetArb - nameWithType: PBufferAttribute.TextureTargetArb - fullName: OpenTK.Graphics.Wgl.PBufferAttribute.TextureTargetArb - type: Field - source: - id: TextureTargetArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 485 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: TextureTargetArb = 8307 - return: - type: OpenTK.Graphics.Wgl.PBufferAttribute -- uid: OpenTK.Graphics.Wgl.PBufferAttribute.MipmapTextureArb - commentId: F:OpenTK.Graphics.Wgl.PBufferAttribute.MipmapTextureArb - id: MipmapTextureArb - parent: OpenTK.Graphics.Wgl.PBufferAttribute - langs: - - csharp - - vb - name: MipmapTextureArb - nameWithType: PBufferAttribute.MipmapTextureArb - fullName: OpenTK.Graphics.Wgl.PBufferAttribute.MipmapTextureArb - type: Field - source: - id: MipmapTextureArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 486 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: MipmapTextureArb = 8308 - return: - type: OpenTK.Graphics.Wgl.PBufferAttribute -- uid: OpenTK.Graphics.Wgl.PBufferAttribute.MipmapLevelArb - commentId: F:OpenTK.Graphics.Wgl.PBufferAttribute.MipmapLevelArb - id: MipmapLevelArb - parent: OpenTK.Graphics.Wgl.PBufferAttribute - langs: - - csharp - - vb - name: MipmapLevelArb - nameWithType: PBufferAttribute.MipmapLevelArb - fullName: OpenTK.Graphics.Wgl.PBufferAttribute.MipmapLevelArb - type: Field - source: - id: MipmapLevelArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 487 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: MipmapLevelArb = 8315 - return: - type: OpenTK.Graphics.Wgl.PBufferAttribute -- uid: OpenTK.Graphics.Wgl.PBufferAttribute.CubeMapFaceArb - commentId: F:OpenTK.Graphics.Wgl.PBufferAttribute.CubeMapFaceArb - id: CubeMapFaceArb - parent: OpenTK.Graphics.Wgl.PBufferAttribute - langs: - - csharp - - vb - name: CubeMapFaceArb - nameWithType: PBufferAttribute.CubeMapFaceArb - fullName: OpenTK.Graphics.Wgl.PBufferAttribute.CubeMapFaceArb - type: Field - source: - id: CubeMapFaceArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 488 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: CubeMapFaceArb = 8316 - return: - type: OpenTK.Graphics.Wgl.PBufferAttribute -references: -- uid: OpenTK.Graphics.Wgl.Wgl.ARB.QueryPbufferARB(System.IntPtr,OpenTK.Graphics.Wgl.PBufferAttribute,System.Int32*) - commentId: M:OpenTK.Graphics.Wgl.Wgl.ARB.QueryPbufferARB(System.IntPtr,OpenTK.Graphics.Wgl.PBufferAttribute,System.Int32*) - isExternal: true - href: OpenTK.Graphics.Wgl.Wgl.ARB.html#OpenTK_Graphics_Wgl_Wgl_ARB_QueryPbufferARB_System_IntPtr_OpenTK_Graphics_Wgl_PBufferAttribute_System_Int32__ - name: QueryPbufferARB(nint, PBufferAttribute, int*) - nameWithType: Wgl.ARB.QueryPbufferARB(nint, PBufferAttribute, int*) - fullName: OpenTK.Graphics.Wgl.Wgl.ARB.QueryPbufferARB(nint, OpenTK.Graphics.Wgl.PBufferAttribute, int*) - nameWithType.vb: Wgl.ARB.QueryPbufferARB(IntPtr, PBufferAttribute, Integer*) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.ARB.QueryPbufferARB(System.IntPtr, OpenTK.Graphics.Wgl.PBufferAttribute, Integer*) - name.vb: QueryPbufferARB(IntPtr, PBufferAttribute, Integer*) - spec.csharp: - - uid: OpenTK.Graphics.Wgl.Wgl.ARB.QueryPbufferARB(System.IntPtr,OpenTK.Graphics.Wgl.PBufferAttribute,System.Int32*) - name: QueryPbufferARB - href: OpenTK.Graphics.Wgl.Wgl.ARB.html#OpenTK_Graphics_Wgl_Wgl_ARB_QueryPbufferARB_System_IntPtr_OpenTK_Graphics_Wgl_PBufferAttribute_System_Int32__ - - name: ( - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: OpenTK.Graphics.Wgl.PBufferAttribute - name: PBufferAttribute - href: OpenTK.Graphics.Wgl.PBufferAttribute.html - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '*' - - name: ) - spec.vb: - - uid: OpenTK.Graphics.Wgl.Wgl.ARB.QueryPbufferARB(System.IntPtr,OpenTK.Graphics.Wgl.PBufferAttribute,System.Int32*) - name: QueryPbufferARB - href: OpenTK.Graphics.Wgl.Wgl.ARB.html#OpenTK_Graphics_Wgl_Wgl_ARB_QueryPbufferARB_System_IntPtr_OpenTK_Graphics_Wgl_PBufferAttribute_System_Int32__ - - name: ( - - uid: System.IntPtr - name: IntPtr - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: OpenTK.Graphics.Wgl.PBufferAttribute - name: PBufferAttribute - href: OpenTK.Graphics.Wgl.PBufferAttribute.html - - name: ',' - - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '*' - - name: ) -- uid: OpenTK.Graphics.Wgl.Wgl.EXT.QueryPbufferEXT(System.IntPtr,OpenTK.Graphics.Wgl.PBufferAttribute,System.Int32*) - commentId: M:OpenTK.Graphics.Wgl.Wgl.EXT.QueryPbufferEXT(System.IntPtr,OpenTK.Graphics.Wgl.PBufferAttribute,System.Int32*) - isExternal: true - href: OpenTK.Graphics.Wgl.Wgl.EXT.html#OpenTK_Graphics_Wgl_Wgl_EXT_QueryPbufferEXT_System_IntPtr_OpenTK_Graphics_Wgl_PBufferAttribute_System_Int32__ - name: QueryPbufferEXT(nint, PBufferAttribute, int*) - nameWithType: Wgl.EXT.QueryPbufferEXT(nint, PBufferAttribute, int*) - fullName: OpenTK.Graphics.Wgl.Wgl.EXT.QueryPbufferEXT(nint, OpenTK.Graphics.Wgl.PBufferAttribute, int*) - nameWithType.vb: Wgl.EXT.QueryPbufferEXT(IntPtr, PBufferAttribute, Integer*) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.EXT.QueryPbufferEXT(System.IntPtr, OpenTK.Graphics.Wgl.PBufferAttribute, Integer*) - name.vb: QueryPbufferEXT(IntPtr, PBufferAttribute, Integer*) - spec.csharp: - - uid: OpenTK.Graphics.Wgl.Wgl.EXT.QueryPbufferEXT(System.IntPtr,OpenTK.Graphics.Wgl.PBufferAttribute,System.Int32*) - name: QueryPbufferEXT - href: OpenTK.Graphics.Wgl.Wgl.EXT.html#OpenTK_Graphics_Wgl_Wgl_EXT_QueryPbufferEXT_System_IntPtr_OpenTK_Graphics_Wgl_PBufferAttribute_System_Int32__ - - name: ( - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: OpenTK.Graphics.Wgl.PBufferAttribute - name: PBufferAttribute - href: OpenTK.Graphics.Wgl.PBufferAttribute.html - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '*' - - name: ) - spec.vb: - - uid: OpenTK.Graphics.Wgl.Wgl.EXT.QueryPbufferEXT(System.IntPtr,OpenTK.Graphics.Wgl.PBufferAttribute,System.Int32*) - name: QueryPbufferEXT - href: OpenTK.Graphics.Wgl.Wgl.EXT.html#OpenTK_Graphics_Wgl_Wgl_EXT_QueryPbufferEXT_System_IntPtr_OpenTK_Graphics_Wgl_PBufferAttribute_System_Int32__ - - name: ( - - uid: System.IntPtr - name: IntPtr - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: OpenTK.Graphics.Wgl.PBufferAttribute - name: PBufferAttribute - href: OpenTK.Graphics.Wgl.PBufferAttribute.html - - name: ',' - - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '*' - - name: ) -- uid: OpenTK.Graphics.Wgl - commentId: N:OpenTK.Graphics.Wgl - href: OpenTK.html - name: OpenTK.Graphics.Wgl - nameWithType: OpenTK.Graphics.Wgl - fullName: OpenTK.Graphics.Wgl - spec.csharp: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Wgl - name: Wgl - href: OpenTK.Graphics.Wgl.html - spec.vb: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Wgl - name: Wgl - href: OpenTK.Graphics.Wgl.html -- uid: OpenTK.Graphics.Wgl.PBufferAttribute - commentId: T:OpenTK.Graphics.Wgl.PBufferAttribute - parent: OpenTK.Graphics.Wgl - href: OpenTK.Graphics.Wgl.PBufferAttribute.html - name: PBufferAttribute - nameWithType: PBufferAttribute - fullName: OpenTK.Graphics.Wgl.PBufferAttribute diff --git a/api/OpenTK.Graphics.Wgl.PBufferCubeMapFace.yml b/api/OpenTK.Graphics.Wgl.PBufferCubeMapFace.yml deleted file mode 100644 index 27e29be3..00000000 --- a/api/OpenTK.Graphics.Wgl.PBufferCubeMapFace.yml +++ /dev/null @@ -1,200 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: OpenTK.Graphics.Wgl.PBufferCubeMapFace - commentId: T:OpenTK.Graphics.Wgl.PBufferCubeMapFace - id: PBufferCubeMapFace - parent: OpenTK.Graphics.Wgl - children: - - OpenTK.Graphics.Wgl.PBufferCubeMapFace.TextureCubeMapNegativeXArb - - OpenTK.Graphics.Wgl.PBufferCubeMapFace.TextureCubeMapNegativeYArb - - OpenTK.Graphics.Wgl.PBufferCubeMapFace.TextureCubeMapNegativeZArb - - OpenTK.Graphics.Wgl.PBufferCubeMapFace.TextureCubeMapPositiveXArb - - OpenTK.Graphics.Wgl.PBufferCubeMapFace.TextureCubeMapPositiveYArb - - OpenTK.Graphics.Wgl.PBufferCubeMapFace.TextureCubeMapPositiveZArb - langs: - - csharp - - vb - name: PBufferCubeMapFace - nameWithType: PBufferCubeMapFace - fullName: OpenTK.Graphics.Wgl.PBufferCubeMapFace - type: Enum - source: - id: PBufferCubeMapFace - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 490 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: 'public enum PBufferCubeMapFace : uint' - content.vb: Public Enum PBufferCubeMapFace As UInteger -- uid: OpenTK.Graphics.Wgl.PBufferCubeMapFace.TextureCubeMapPositiveXArb - commentId: F:OpenTK.Graphics.Wgl.PBufferCubeMapFace.TextureCubeMapPositiveXArb - id: TextureCubeMapPositiveXArb - parent: OpenTK.Graphics.Wgl.PBufferCubeMapFace - langs: - - csharp - - vb - name: TextureCubeMapPositiveXArb - nameWithType: PBufferCubeMapFace.TextureCubeMapPositiveXArb - fullName: OpenTK.Graphics.Wgl.PBufferCubeMapFace.TextureCubeMapPositiveXArb - type: Field - source: - id: TextureCubeMapPositiveXArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 492 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: TextureCubeMapPositiveXArb = 8317 - return: - type: OpenTK.Graphics.Wgl.PBufferCubeMapFace -- uid: OpenTK.Graphics.Wgl.PBufferCubeMapFace.TextureCubeMapNegativeXArb - commentId: F:OpenTK.Graphics.Wgl.PBufferCubeMapFace.TextureCubeMapNegativeXArb - id: TextureCubeMapNegativeXArb - parent: OpenTK.Graphics.Wgl.PBufferCubeMapFace - langs: - - csharp - - vb - name: TextureCubeMapNegativeXArb - nameWithType: PBufferCubeMapFace.TextureCubeMapNegativeXArb - fullName: OpenTK.Graphics.Wgl.PBufferCubeMapFace.TextureCubeMapNegativeXArb - type: Field - source: - id: TextureCubeMapNegativeXArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 493 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: TextureCubeMapNegativeXArb = 8318 - return: - type: OpenTK.Graphics.Wgl.PBufferCubeMapFace -- uid: OpenTK.Graphics.Wgl.PBufferCubeMapFace.TextureCubeMapPositiveYArb - commentId: F:OpenTK.Graphics.Wgl.PBufferCubeMapFace.TextureCubeMapPositiveYArb - id: TextureCubeMapPositiveYArb - parent: OpenTK.Graphics.Wgl.PBufferCubeMapFace - langs: - - csharp - - vb - name: TextureCubeMapPositiveYArb - nameWithType: PBufferCubeMapFace.TextureCubeMapPositiveYArb - fullName: OpenTK.Graphics.Wgl.PBufferCubeMapFace.TextureCubeMapPositiveYArb - type: Field - source: - id: TextureCubeMapPositiveYArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 494 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: TextureCubeMapPositiveYArb = 8319 - return: - type: OpenTK.Graphics.Wgl.PBufferCubeMapFace -- uid: OpenTK.Graphics.Wgl.PBufferCubeMapFace.TextureCubeMapNegativeYArb - commentId: F:OpenTK.Graphics.Wgl.PBufferCubeMapFace.TextureCubeMapNegativeYArb - id: TextureCubeMapNegativeYArb - parent: OpenTK.Graphics.Wgl.PBufferCubeMapFace - langs: - - csharp - - vb - name: TextureCubeMapNegativeYArb - nameWithType: PBufferCubeMapFace.TextureCubeMapNegativeYArb - fullName: OpenTK.Graphics.Wgl.PBufferCubeMapFace.TextureCubeMapNegativeYArb - type: Field - source: - id: TextureCubeMapNegativeYArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 495 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: TextureCubeMapNegativeYArb = 8320 - return: - type: OpenTK.Graphics.Wgl.PBufferCubeMapFace -- uid: OpenTK.Graphics.Wgl.PBufferCubeMapFace.TextureCubeMapPositiveZArb - commentId: F:OpenTK.Graphics.Wgl.PBufferCubeMapFace.TextureCubeMapPositiveZArb - id: TextureCubeMapPositiveZArb - parent: OpenTK.Graphics.Wgl.PBufferCubeMapFace - langs: - - csharp - - vb - name: TextureCubeMapPositiveZArb - nameWithType: PBufferCubeMapFace.TextureCubeMapPositiveZArb - fullName: OpenTK.Graphics.Wgl.PBufferCubeMapFace.TextureCubeMapPositiveZArb - type: Field - source: - id: TextureCubeMapPositiveZArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 496 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: TextureCubeMapPositiveZArb = 8321 - return: - type: OpenTK.Graphics.Wgl.PBufferCubeMapFace -- uid: OpenTK.Graphics.Wgl.PBufferCubeMapFace.TextureCubeMapNegativeZArb - commentId: F:OpenTK.Graphics.Wgl.PBufferCubeMapFace.TextureCubeMapNegativeZArb - id: TextureCubeMapNegativeZArb - parent: OpenTK.Graphics.Wgl.PBufferCubeMapFace - langs: - - csharp - - vb - name: TextureCubeMapNegativeZArb - nameWithType: PBufferCubeMapFace.TextureCubeMapNegativeZArb - fullName: OpenTK.Graphics.Wgl.PBufferCubeMapFace.TextureCubeMapNegativeZArb - type: Field - source: - id: TextureCubeMapNegativeZArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 497 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: TextureCubeMapNegativeZArb = 8322 - return: - type: OpenTK.Graphics.Wgl.PBufferCubeMapFace -references: -- uid: OpenTK.Graphics.Wgl - commentId: N:OpenTK.Graphics.Wgl - href: OpenTK.html - name: OpenTK.Graphics.Wgl - nameWithType: OpenTK.Graphics.Wgl - fullName: OpenTK.Graphics.Wgl - spec.csharp: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Wgl - name: Wgl - href: OpenTK.Graphics.Wgl.html - spec.vb: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Wgl - name: Wgl - href: OpenTK.Graphics.Wgl.html -- uid: OpenTK.Graphics.Wgl.PBufferCubeMapFace - commentId: T:OpenTK.Graphics.Wgl.PBufferCubeMapFace - parent: OpenTK.Graphics.Wgl - href: OpenTK.Graphics.Wgl.PBufferCubeMapFace.html - name: PBufferCubeMapFace - nameWithType: PBufferCubeMapFace - fullName: OpenTK.Graphics.Wgl.PBufferCubeMapFace diff --git a/api/OpenTK.Graphics.Wgl.PBufferTextureFormat.yml b/api/OpenTK.Graphics.Wgl.PBufferTextureFormat.yml deleted file mode 100644 index 197c2ae9..00000000 --- a/api/OpenTK.Graphics.Wgl.PBufferTextureFormat.yml +++ /dev/null @@ -1,131 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: OpenTK.Graphics.Wgl.PBufferTextureFormat - commentId: T:OpenTK.Graphics.Wgl.PBufferTextureFormat - id: PBufferTextureFormat - parent: OpenTK.Graphics.Wgl - children: - - OpenTK.Graphics.Wgl.PBufferTextureFormat.NoTextureArb - - OpenTK.Graphics.Wgl.PBufferTextureFormat.TextureRgbArb - - OpenTK.Graphics.Wgl.PBufferTextureFormat.TextureRgbaArb - langs: - - csharp - - vb - name: PBufferTextureFormat - nameWithType: PBufferTextureFormat - fullName: OpenTK.Graphics.Wgl.PBufferTextureFormat - type: Enum - source: - id: PBufferTextureFormat - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 499 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: 'public enum PBufferTextureFormat : uint' - content.vb: Public Enum PBufferTextureFormat As UInteger -- uid: OpenTK.Graphics.Wgl.PBufferTextureFormat.TextureRgbArb - commentId: F:OpenTK.Graphics.Wgl.PBufferTextureFormat.TextureRgbArb - id: TextureRgbArb - parent: OpenTK.Graphics.Wgl.PBufferTextureFormat - langs: - - csharp - - vb - name: TextureRgbArb - nameWithType: PBufferTextureFormat.TextureRgbArb - fullName: OpenTK.Graphics.Wgl.PBufferTextureFormat.TextureRgbArb - type: Field - source: - id: TextureRgbArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 501 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: TextureRgbArb = 8309 - return: - type: OpenTK.Graphics.Wgl.PBufferTextureFormat -- uid: OpenTK.Graphics.Wgl.PBufferTextureFormat.TextureRgbaArb - commentId: F:OpenTK.Graphics.Wgl.PBufferTextureFormat.TextureRgbaArb - id: TextureRgbaArb - parent: OpenTK.Graphics.Wgl.PBufferTextureFormat - langs: - - csharp - - vb - name: TextureRgbaArb - nameWithType: PBufferTextureFormat.TextureRgbaArb - fullName: OpenTK.Graphics.Wgl.PBufferTextureFormat.TextureRgbaArb - type: Field - source: - id: TextureRgbaArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 502 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: TextureRgbaArb = 8310 - return: - type: OpenTK.Graphics.Wgl.PBufferTextureFormat -- uid: OpenTK.Graphics.Wgl.PBufferTextureFormat.NoTextureArb - commentId: F:OpenTK.Graphics.Wgl.PBufferTextureFormat.NoTextureArb - id: NoTextureArb - parent: OpenTK.Graphics.Wgl.PBufferTextureFormat - langs: - - csharp - - vb - name: NoTextureArb - nameWithType: PBufferTextureFormat.NoTextureArb - fullName: OpenTK.Graphics.Wgl.PBufferTextureFormat.NoTextureArb - type: Field - source: - id: NoTextureArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 503 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: NoTextureArb = 8311 - return: - type: OpenTK.Graphics.Wgl.PBufferTextureFormat -references: -- uid: OpenTK.Graphics.Wgl - commentId: N:OpenTK.Graphics.Wgl - href: OpenTK.html - name: OpenTK.Graphics.Wgl - nameWithType: OpenTK.Graphics.Wgl - fullName: OpenTK.Graphics.Wgl - spec.csharp: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Wgl - name: Wgl - href: OpenTK.Graphics.Wgl.html - spec.vb: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Wgl - name: Wgl - href: OpenTK.Graphics.Wgl.html -- uid: OpenTK.Graphics.Wgl.PBufferTextureFormat - commentId: T:OpenTK.Graphics.Wgl.PBufferTextureFormat - parent: OpenTK.Graphics.Wgl - href: OpenTK.Graphics.Wgl.PBufferTextureFormat.html - name: PBufferTextureFormat - nameWithType: PBufferTextureFormat - fullName: OpenTK.Graphics.Wgl.PBufferTextureFormat diff --git a/api/OpenTK.Graphics.Wgl.PBufferTextureTarget.yml b/api/OpenTK.Graphics.Wgl.PBufferTextureTarget.yml deleted file mode 100644 index 85519fb9..00000000 --- a/api/OpenTK.Graphics.Wgl.PBufferTextureTarget.yml +++ /dev/null @@ -1,154 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: OpenTK.Graphics.Wgl.PBufferTextureTarget - commentId: T:OpenTK.Graphics.Wgl.PBufferTextureTarget - id: PBufferTextureTarget - parent: OpenTK.Graphics.Wgl - children: - - OpenTK.Graphics.Wgl.PBufferTextureTarget.NoTextureArb - - OpenTK.Graphics.Wgl.PBufferTextureTarget.Texture1dArb - - OpenTK.Graphics.Wgl.PBufferTextureTarget.Texture2dArb - - OpenTK.Graphics.Wgl.PBufferTextureTarget.TextureCubeMapArb - langs: - - csharp - - vb - name: PBufferTextureTarget - nameWithType: PBufferTextureTarget - fullName: OpenTK.Graphics.Wgl.PBufferTextureTarget - type: Enum - source: - id: PBufferTextureTarget - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 505 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: 'public enum PBufferTextureTarget : uint' - content.vb: Public Enum PBufferTextureTarget As UInteger -- uid: OpenTK.Graphics.Wgl.PBufferTextureTarget.NoTextureArb - commentId: F:OpenTK.Graphics.Wgl.PBufferTextureTarget.NoTextureArb - id: NoTextureArb - parent: OpenTK.Graphics.Wgl.PBufferTextureTarget - langs: - - csharp - - vb - name: NoTextureArb - nameWithType: PBufferTextureTarget.NoTextureArb - fullName: OpenTK.Graphics.Wgl.PBufferTextureTarget.NoTextureArb - type: Field - source: - id: NoTextureArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 507 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: NoTextureArb = 8311 - return: - type: OpenTK.Graphics.Wgl.PBufferTextureTarget -- uid: OpenTK.Graphics.Wgl.PBufferTextureTarget.TextureCubeMapArb - commentId: F:OpenTK.Graphics.Wgl.PBufferTextureTarget.TextureCubeMapArb - id: TextureCubeMapArb - parent: OpenTK.Graphics.Wgl.PBufferTextureTarget - langs: - - csharp - - vb - name: TextureCubeMapArb - nameWithType: PBufferTextureTarget.TextureCubeMapArb - fullName: OpenTK.Graphics.Wgl.PBufferTextureTarget.TextureCubeMapArb - type: Field - source: - id: TextureCubeMapArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 508 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: TextureCubeMapArb = 8312 - return: - type: OpenTK.Graphics.Wgl.PBufferTextureTarget -- uid: OpenTK.Graphics.Wgl.PBufferTextureTarget.Texture1dArb - commentId: F:OpenTK.Graphics.Wgl.PBufferTextureTarget.Texture1dArb - id: Texture1dArb - parent: OpenTK.Graphics.Wgl.PBufferTextureTarget - langs: - - csharp - - vb - name: Texture1dArb - nameWithType: PBufferTextureTarget.Texture1dArb - fullName: OpenTK.Graphics.Wgl.PBufferTextureTarget.Texture1dArb - type: Field - source: - id: Texture1dArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 509 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: Texture1dArb = 8313 - return: - type: OpenTK.Graphics.Wgl.PBufferTextureTarget -- uid: OpenTK.Graphics.Wgl.PBufferTextureTarget.Texture2dArb - commentId: F:OpenTK.Graphics.Wgl.PBufferTextureTarget.Texture2dArb - id: Texture2dArb - parent: OpenTK.Graphics.Wgl.PBufferTextureTarget - langs: - - csharp - - vb - name: Texture2dArb - nameWithType: PBufferTextureTarget.Texture2dArb - fullName: OpenTK.Graphics.Wgl.PBufferTextureTarget.Texture2dArb - type: Field - source: - id: Texture2dArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 510 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: Texture2dArb = 8314 - return: - type: OpenTK.Graphics.Wgl.PBufferTextureTarget -references: -- uid: OpenTK.Graphics.Wgl - commentId: N:OpenTK.Graphics.Wgl - href: OpenTK.html - name: OpenTK.Graphics.Wgl - nameWithType: OpenTK.Graphics.Wgl - fullName: OpenTK.Graphics.Wgl - spec.csharp: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Wgl - name: Wgl - href: OpenTK.Graphics.Wgl.html - spec.vb: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Wgl - name: Wgl - href: OpenTK.Graphics.Wgl.html -- uid: OpenTK.Graphics.Wgl.PBufferTextureTarget - commentId: T:OpenTK.Graphics.Wgl.PBufferTextureTarget - parent: OpenTK.Graphics.Wgl - href: OpenTK.Graphics.Wgl.PBufferTextureTarget.html - name: PBufferTextureTarget - nameWithType: PBufferTextureTarget - fullName: OpenTK.Graphics.Wgl.PBufferTextureTarget diff --git a/api/OpenTK.Graphics.Wgl.PixelFormatAttribute.yml b/api/OpenTK.Graphics.Wgl.PixelFormatAttribute.yml deleted file mode 100644 index f1eda16d..00000000 --- a/api/OpenTK.Graphics.Wgl.PixelFormatAttribute.yml +++ /dev/null @@ -1,2253 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: OpenTK.Graphics.Wgl.PixelFormatAttribute - commentId: T:OpenTK.Graphics.Wgl.PixelFormatAttribute - id: PixelFormatAttribute - parent: OpenTK.Graphics.Wgl - children: - - OpenTK.Graphics.Wgl.PixelFormatAttribute.AccelerationArb - - OpenTK.Graphics.Wgl.PixelFormatAttribute.AccelerationExt - - OpenTK.Graphics.Wgl.PixelFormatAttribute.AccumAlphaBitsArb - - OpenTK.Graphics.Wgl.PixelFormatAttribute.AccumAlphaBitsExt - - OpenTK.Graphics.Wgl.PixelFormatAttribute.AccumBitsArb - - OpenTK.Graphics.Wgl.PixelFormatAttribute.AccumBitsExt - - OpenTK.Graphics.Wgl.PixelFormatAttribute.AccumBlueBitsArb - - OpenTK.Graphics.Wgl.PixelFormatAttribute.AccumBlueBitsExt - - OpenTK.Graphics.Wgl.PixelFormatAttribute.AccumGreenBitsArb - - OpenTK.Graphics.Wgl.PixelFormatAttribute.AccumGreenBitsExt - - OpenTK.Graphics.Wgl.PixelFormatAttribute.AccumRedBitsArb - - OpenTK.Graphics.Wgl.PixelFormatAttribute.AccumRedBitsExt - - OpenTK.Graphics.Wgl.PixelFormatAttribute.AlphaBitsArb - - OpenTK.Graphics.Wgl.PixelFormatAttribute.AlphaBitsExt - - OpenTK.Graphics.Wgl.PixelFormatAttribute.AlphaShiftArb - - OpenTK.Graphics.Wgl.PixelFormatAttribute.AlphaShiftExt - - OpenTK.Graphics.Wgl.PixelFormatAttribute.AuxBuffersArb - - OpenTK.Graphics.Wgl.PixelFormatAttribute.AuxBuffersExt - - OpenTK.Graphics.Wgl.PixelFormatAttribute.BlueBitsArb - - OpenTK.Graphics.Wgl.PixelFormatAttribute.BlueBitsExt - - OpenTK.Graphics.Wgl.PixelFormatAttribute.BlueShiftArb - - OpenTK.Graphics.Wgl.PixelFormatAttribute.BlueShiftExt - - OpenTK.Graphics.Wgl.PixelFormatAttribute.ColorBitsArb - - OpenTK.Graphics.Wgl.PixelFormatAttribute.ColorBitsExt - - OpenTK.Graphics.Wgl.PixelFormatAttribute.DepthBitsArb - - OpenTK.Graphics.Wgl.PixelFormatAttribute.DepthBitsExt - - OpenTK.Graphics.Wgl.PixelFormatAttribute.DoubleBufferArb - - OpenTK.Graphics.Wgl.PixelFormatAttribute.DoubleBufferExt - - OpenTK.Graphics.Wgl.PixelFormatAttribute.DrawToBitmapArb - - OpenTK.Graphics.Wgl.PixelFormatAttribute.DrawToBitmapExt - - OpenTK.Graphics.Wgl.PixelFormatAttribute.DrawToPbufferArb - - OpenTK.Graphics.Wgl.PixelFormatAttribute.DrawToPbufferExt - - OpenTK.Graphics.Wgl.PixelFormatAttribute.DrawToWindowArb - - OpenTK.Graphics.Wgl.PixelFormatAttribute.DrawToWindowExt - - OpenTK.Graphics.Wgl.PixelFormatAttribute.FramebufferSrgbCapableArb - - OpenTK.Graphics.Wgl.PixelFormatAttribute.FramebufferSrgbCapableExt - - OpenTK.Graphics.Wgl.PixelFormatAttribute.GreenBitsArb - - OpenTK.Graphics.Wgl.PixelFormatAttribute.GreenBitsExt - - OpenTK.Graphics.Wgl.PixelFormatAttribute.GreenShiftArb - - OpenTK.Graphics.Wgl.PixelFormatAttribute.GreenShiftExt - - OpenTK.Graphics.Wgl.PixelFormatAttribute.NeedPaletteArb - - OpenTK.Graphics.Wgl.PixelFormatAttribute.NeedPaletteExt - - OpenTK.Graphics.Wgl.PixelFormatAttribute.NeedSystemPaletteArb - - OpenTK.Graphics.Wgl.PixelFormatAttribute.NeedSystemPaletteExt - - OpenTK.Graphics.Wgl.PixelFormatAttribute.NumberOverlaysArb - - OpenTK.Graphics.Wgl.PixelFormatAttribute.NumberOverlaysExt - - OpenTK.Graphics.Wgl.PixelFormatAttribute.NumberPixelFormatsArb - - OpenTK.Graphics.Wgl.PixelFormatAttribute.NumberPixelFormatsExt - - OpenTK.Graphics.Wgl.PixelFormatAttribute.NumberUnderlaysArb - - OpenTK.Graphics.Wgl.PixelFormatAttribute.NumberUnderlaysExt - - OpenTK.Graphics.Wgl.PixelFormatAttribute.PixelTypeArb - - OpenTK.Graphics.Wgl.PixelFormatAttribute.PixelTypeExt - - OpenTK.Graphics.Wgl.PixelFormatAttribute.RedBitsArb - - OpenTK.Graphics.Wgl.PixelFormatAttribute.RedBitsExt - - OpenTK.Graphics.Wgl.PixelFormatAttribute.RedShiftArb - - OpenTK.Graphics.Wgl.PixelFormatAttribute.RedShiftExt - - OpenTK.Graphics.Wgl.PixelFormatAttribute.SamplesArb - - OpenTK.Graphics.Wgl.PixelFormatAttribute.SamplesExt - - OpenTK.Graphics.Wgl.PixelFormatAttribute.ShareAccumArb - - OpenTK.Graphics.Wgl.PixelFormatAttribute.ShareAccumExt - - OpenTK.Graphics.Wgl.PixelFormatAttribute.ShareDepthArb - - OpenTK.Graphics.Wgl.PixelFormatAttribute.ShareDepthExt - - OpenTK.Graphics.Wgl.PixelFormatAttribute.ShareStencilArb - - OpenTK.Graphics.Wgl.PixelFormatAttribute.ShareStencilExt - - OpenTK.Graphics.Wgl.PixelFormatAttribute.StencilBitsArb - - OpenTK.Graphics.Wgl.PixelFormatAttribute.StencilBitsExt - - OpenTK.Graphics.Wgl.PixelFormatAttribute.StereoArb - - OpenTK.Graphics.Wgl.PixelFormatAttribute.StereoExt - - OpenTK.Graphics.Wgl.PixelFormatAttribute.SupportGdiArb - - OpenTK.Graphics.Wgl.PixelFormatAttribute.SupportGdiExt - - OpenTK.Graphics.Wgl.PixelFormatAttribute.SupportOpenglArb - - OpenTK.Graphics.Wgl.PixelFormatAttribute.SupportOpenglExt - - OpenTK.Graphics.Wgl.PixelFormatAttribute.SwapLayerBuffersArb - - OpenTK.Graphics.Wgl.PixelFormatAttribute.SwapLayerBuffersExt - - OpenTK.Graphics.Wgl.PixelFormatAttribute.SwapMethodArb - - OpenTK.Graphics.Wgl.PixelFormatAttribute.SwapMethodExt - - OpenTK.Graphics.Wgl.PixelFormatAttribute.TransparentAlphaValueArb - - OpenTK.Graphics.Wgl.PixelFormatAttribute.TransparentArb - - OpenTK.Graphics.Wgl.PixelFormatAttribute.TransparentBlueValueArb - - OpenTK.Graphics.Wgl.PixelFormatAttribute.TransparentExt - - OpenTK.Graphics.Wgl.PixelFormatAttribute.TransparentGreenValueArb - - OpenTK.Graphics.Wgl.PixelFormatAttribute.TransparentIndexValueArb - - OpenTK.Graphics.Wgl.PixelFormatAttribute.TransparentRedValueArb - langs: - - csharp - - vb - name: PixelFormatAttribute - nameWithType: PixelFormatAttribute - fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute - type: Enum - source: - id: PixelFormatAttribute - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 513 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: Used in , , , ... - example: [] - syntax: - content: 'public enum PixelFormatAttribute : uint' - content.vb: Public Enum PixelFormatAttribute As UInteger -- uid: OpenTK.Graphics.Wgl.PixelFormatAttribute.NumberPixelFormatsArb - commentId: F:OpenTK.Graphics.Wgl.PixelFormatAttribute.NumberPixelFormatsArb - id: NumberPixelFormatsArb - parent: OpenTK.Graphics.Wgl.PixelFormatAttribute - langs: - - csharp - - vb - name: NumberPixelFormatsArb - nameWithType: PixelFormatAttribute.NumberPixelFormatsArb - fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.NumberPixelFormatsArb - type: Field - source: - id: NumberPixelFormatsArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 515 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: NumberPixelFormatsArb = 8192 - return: - type: OpenTK.Graphics.Wgl.PixelFormatAttribute -- uid: OpenTK.Graphics.Wgl.PixelFormatAttribute.NumberPixelFormatsExt - commentId: F:OpenTK.Graphics.Wgl.PixelFormatAttribute.NumberPixelFormatsExt - id: NumberPixelFormatsExt - parent: OpenTK.Graphics.Wgl.PixelFormatAttribute - langs: - - csharp - - vb - name: NumberPixelFormatsExt - nameWithType: PixelFormatAttribute.NumberPixelFormatsExt - fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.NumberPixelFormatsExt - type: Field - source: - id: NumberPixelFormatsExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 516 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: NumberPixelFormatsExt = 8192 - return: - type: OpenTK.Graphics.Wgl.PixelFormatAttribute -- uid: OpenTK.Graphics.Wgl.PixelFormatAttribute.DrawToWindowArb - commentId: F:OpenTK.Graphics.Wgl.PixelFormatAttribute.DrawToWindowArb - id: DrawToWindowArb - parent: OpenTK.Graphics.Wgl.PixelFormatAttribute - langs: - - csharp - - vb - name: DrawToWindowArb - nameWithType: PixelFormatAttribute.DrawToWindowArb - fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.DrawToWindowArb - type: Field - source: - id: DrawToWindowArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 517 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: DrawToWindowArb = 8193 - return: - type: OpenTK.Graphics.Wgl.PixelFormatAttribute -- uid: OpenTK.Graphics.Wgl.PixelFormatAttribute.DrawToWindowExt - commentId: F:OpenTK.Graphics.Wgl.PixelFormatAttribute.DrawToWindowExt - id: DrawToWindowExt - parent: OpenTK.Graphics.Wgl.PixelFormatAttribute - langs: - - csharp - - vb - name: DrawToWindowExt - nameWithType: PixelFormatAttribute.DrawToWindowExt - fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.DrawToWindowExt - type: Field - source: - id: DrawToWindowExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 518 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: DrawToWindowExt = 8193 - return: - type: OpenTK.Graphics.Wgl.PixelFormatAttribute -- uid: OpenTK.Graphics.Wgl.PixelFormatAttribute.DrawToBitmapArb - commentId: F:OpenTK.Graphics.Wgl.PixelFormatAttribute.DrawToBitmapArb - id: DrawToBitmapArb - parent: OpenTK.Graphics.Wgl.PixelFormatAttribute - langs: - - csharp - - vb - name: DrawToBitmapArb - nameWithType: PixelFormatAttribute.DrawToBitmapArb - fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.DrawToBitmapArb - type: Field - source: - id: DrawToBitmapArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 519 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: DrawToBitmapArb = 8194 - return: - type: OpenTK.Graphics.Wgl.PixelFormatAttribute -- uid: OpenTK.Graphics.Wgl.PixelFormatAttribute.DrawToBitmapExt - commentId: F:OpenTK.Graphics.Wgl.PixelFormatAttribute.DrawToBitmapExt - id: DrawToBitmapExt - parent: OpenTK.Graphics.Wgl.PixelFormatAttribute - langs: - - csharp - - vb - name: DrawToBitmapExt - nameWithType: PixelFormatAttribute.DrawToBitmapExt - fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.DrawToBitmapExt - type: Field - source: - id: DrawToBitmapExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 520 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: DrawToBitmapExt = 8194 - return: - type: OpenTK.Graphics.Wgl.PixelFormatAttribute -- uid: OpenTK.Graphics.Wgl.PixelFormatAttribute.AccelerationArb - commentId: F:OpenTK.Graphics.Wgl.PixelFormatAttribute.AccelerationArb - id: AccelerationArb - parent: OpenTK.Graphics.Wgl.PixelFormatAttribute - langs: - - csharp - - vb - name: AccelerationArb - nameWithType: PixelFormatAttribute.AccelerationArb - fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.AccelerationArb - type: Field - source: - id: AccelerationArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 521 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: AccelerationArb = 8195 - return: - type: OpenTK.Graphics.Wgl.PixelFormatAttribute -- uid: OpenTK.Graphics.Wgl.PixelFormatAttribute.AccelerationExt - commentId: F:OpenTK.Graphics.Wgl.PixelFormatAttribute.AccelerationExt - id: AccelerationExt - parent: OpenTK.Graphics.Wgl.PixelFormatAttribute - langs: - - csharp - - vb - name: AccelerationExt - nameWithType: PixelFormatAttribute.AccelerationExt - fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.AccelerationExt - type: Field - source: - id: AccelerationExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 522 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: AccelerationExt = 8195 - return: - type: OpenTK.Graphics.Wgl.PixelFormatAttribute -- uid: OpenTK.Graphics.Wgl.PixelFormatAttribute.NeedPaletteArb - commentId: F:OpenTK.Graphics.Wgl.PixelFormatAttribute.NeedPaletteArb - id: NeedPaletteArb - parent: OpenTK.Graphics.Wgl.PixelFormatAttribute - langs: - - csharp - - vb - name: NeedPaletteArb - nameWithType: PixelFormatAttribute.NeedPaletteArb - fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.NeedPaletteArb - type: Field - source: - id: NeedPaletteArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 523 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: NeedPaletteArb = 8196 - return: - type: OpenTK.Graphics.Wgl.PixelFormatAttribute -- uid: OpenTK.Graphics.Wgl.PixelFormatAttribute.NeedPaletteExt - commentId: F:OpenTK.Graphics.Wgl.PixelFormatAttribute.NeedPaletteExt - id: NeedPaletteExt - parent: OpenTK.Graphics.Wgl.PixelFormatAttribute - langs: - - csharp - - vb - name: NeedPaletteExt - nameWithType: PixelFormatAttribute.NeedPaletteExt - fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.NeedPaletteExt - type: Field - source: - id: NeedPaletteExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 524 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: NeedPaletteExt = 8196 - return: - type: OpenTK.Graphics.Wgl.PixelFormatAttribute -- uid: OpenTK.Graphics.Wgl.PixelFormatAttribute.NeedSystemPaletteArb - commentId: F:OpenTK.Graphics.Wgl.PixelFormatAttribute.NeedSystemPaletteArb - id: NeedSystemPaletteArb - parent: OpenTK.Graphics.Wgl.PixelFormatAttribute - langs: - - csharp - - vb - name: NeedSystemPaletteArb - nameWithType: PixelFormatAttribute.NeedSystemPaletteArb - fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.NeedSystemPaletteArb - type: Field - source: - id: NeedSystemPaletteArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 525 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: NeedSystemPaletteArb = 8197 - return: - type: OpenTK.Graphics.Wgl.PixelFormatAttribute -- uid: OpenTK.Graphics.Wgl.PixelFormatAttribute.NeedSystemPaletteExt - commentId: F:OpenTK.Graphics.Wgl.PixelFormatAttribute.NeedSystemPaletteExt - id: NeedSystemPaletteExt - parent: OpenTK.Graphics.Wgl.PixelFormatAttribute - langs: - - csharp - - vb - name: NeedSystemPaletteExt - nameWithType: PixelFormatAttribute.NeedSystemPaletteExt - fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.NeedSystemPaletteExt - type: Field - source: - id: NeedSystemPaletteExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 526 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: NeedSystemPaletteExt = 8197 - return: - type: OpenTK.Graphics.Wgl.PixelFormatAttribute -- uid: OpenTK.Graphics.Wgl.PixelFormatAttribute.SwapLayerBuffersArb - commentId: F:OpenTK.Graphics.Wgl.PixelFormatAttribute.SwapLayerBuffersArb - id: SwapLayerBuffersArb - parent: OpenTK.Graphics.Wgl.PixelFormatAttribute - langs: - - csharp - - vb - name: SwapLayerBuffersArb - nameWithType: PixelFormatAttribute.SwapLayerBuffersArb - fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.SwapLayerBuffersArb - type: Field - source: - id: SwapLayerBuffersArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 527 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: SwapLayerBuffersArb = 8198 - return: - type: OpenTK.Graphics.Wgl.PixelFormatAttribute -- uid: OpenTK.Graphics.Wgl.PixelFormatAttribute.SwapLayerBuffersExt - commentId: F:OpenTK.Graphics.Wgl.PixelFormatAttribute.SwapLayerBuffersExt - id: SwapLayerBuffersExt - parent: OpenTK.Graphics.Wgl.PixelFormatAttribute - langs: - - csharp - - vb - name: SwapLayerBuffersExt - nameWithType: PixelFormatAttribute.SwapLayerBuffersExt - fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.SwapLayerBuffersExt - type: Field - source: - id: SwapLayerBuffersExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 528 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: SwapLayerBuffersExt = 8198 - return: - type: OpenTK.Graphics.Wgl.PixelFormatAttribute -- uid: OpenTK.Graphics.Wgl.PixelFormatAttribute.SwapMethodArb - commentId: F:OpenTK.Graphics.Wgl.PixelFormatAttribute.SwapMethodArb - id: SwapMethodArb - parent: OpenTK.Graphics.Wgl.PixelFormatAttribute - langs: - - csharp - - vb - name: SwapMethodArb - nameWithType: PixelFormatAttribute.SwapMethodArb - fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.SwapMethodArb - type: Field - source: - id: SwapMethodArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 529 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: SwapMethodArb = 8199 - return: - type: OpenTK.Graphics.Wgl.PixelFormatAttribute -- uid: OpenTK.Graphics.Wgl.PixelFormatAttribute.SwapMethodExt - commentId: F:OpenTK.Graphics.Wgl.PixelFormatAttribute.SwapMethodExt - id: SwapMethodExt - parent: OpenTK.Graphics.Wgl.PixelFormatAttribute - langs: - - csharp - - vb - name: SwapMethodExt - nameWithType: PixelFormatAttribute.SwapMethodExt - fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.SwapMethodExt - type: Field - source: - id: SwapMethodExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 530 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: SwapMethodExt = 8199 - return: - type: OpenTK.Graphics.Wgl.PixelFormatAttribute -- uid: OpenTK.Graphics.Wgl.PixelFormatAttribute.NumberOverlaysArb - commentId: F:OpenTK.Graphics.Wgl.PixelFormatAttribute.NumberOverlaysArb - id: NumberOverlaysArb - parent: OpenTK.Graphics.Wgl.PixelFormatAttribute - langs: - - csharp - - vb - name: NumberOverlaysArb - nameWithType: PixelFormatAttribute.NumberOverlaysArb - fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.NumberOverlaysArb - type: Field - source: - id: NumberOverlaysArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 531 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: NumberOverlaysArb = 8200 - return: - type: OpenTK.Graphics.Wgl.PixelFormatAttribute -- uid: OpenTK.Graphics.Wgl.PixelFormatAttribute.NumberOverlaysExt - commentId: F:OpenTK.Graphics.Wgl.PixelFormatAttribute.NumberOverlaysExt - id: NumberOverlaysExt - parent: OpenTK.Graphics.Wgl.PixelFormatAttribute - langs: - - csharp - - vb - name: NumberOverlaysExt - nameWithType: PixelFormatAttribute.NumberOverlaysExt - fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.NumberOverlaysExt - type: Field - source: - id: NumberOverlaysExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 532 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: NumberOverlaysExt = 8200 - return: - type: OpenTK.Graphics.Wgl.PixelFormatAttribute -- uid: OpenTK.Graphics.Wgl.PixelFormatAttribute.NumberUnderlaysArb - commentId: F:OpenTK.Graphics.Wgl.PixelFormatAttribute.NumberUnderlaysArb - id: NumberUnderlaysArb - parent: OpenTK.Graphics.Wgl.PixelFormatAttribute - langs: - - csharp - - vb - name: NumberUnderlaysArb - nameWithType: PixelFormatAttribute.NumberUnderlaysArb - fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.NumberUnderlaysArb - type: Field - source: - id: NumberUnderlaysArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 533 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: NumberUnderlaysArb = 8201 - return: - type: OpenTK.Graphics.Wgl.PixelFormatAttribute -- uid: OpenTK.Graphics.Wgl.PixelFormatAttribute.NumberUnderlaysExt - commentId: F:OpenTK.Graphics.Wgl.PixelFormatAttribute.NumberUnderlaysExt - id: NumberUnderlaysExt - parent: OpenTK.Graphics.Wgl.PixelFormatAttribute - langs: - - csharp - - vb - name: NumberUnderlaysExt - nameWithType: PixelFormatAttribute.NumberUnderlaysExt - fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.NumberUnderlaysExt - type: Field - source: - id: NumberUnderlaysExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 534 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: NumberUnderlaysExt = 8201 - return: - type: OpenTK.Graphics.Wgl.PixelFormatAttribute -- uid: OpenTK.Graphics.Wgl.PixelFormatAttribute.TransparentArb - commentId: F:OpenTK.Graphics.Wgl.PixelFormatAttribute.TransparentArb - id: TransparentArb - parent: OpenTK.Graphics.Wgl.PixelFormatAttribute - langs: - - csharp - - vb - name: TransparentArb - nameWithType: PixelFormatAttribute.TransparentArb - fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.TransparentArb - type: Field - source: - id: TransparentArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 535 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: TransparentArb = 8202 - return: - type: OpenTK.Graphics.Wgl.PixelFormatAttribute -- uid: OpenTK.Graphics.Wgl.PixelFormatAttribute.TransparentExt - commentId: F:OpenTK.Graphics.Wgl.PixelFormatAttribute.TransparentExt - id: TransparentExt - parent: OpenTK.Graphics.Wgl.PixelFormatAttribute - langs: - - csharp - - vb - name: TransparentExt - nameWithType: PixelFormatAttribute.TransparentExt - fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.TransparentExt - type: Field - source: - id: TransparentExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 536 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: TransparentExt = 8202 - return: - type: OpenTK.Graphics.Wgl.PixelFormatAttribute -- uid: OpenTK.Graphics.Wgl.PixelFormatAttribute.ShareDepthArb - commentId: F:OpenTK.Graphics.Wgl.PixelFormatAttribute.ShareDepthArb - id: ShareDepthArb - parent: OpenTK.Graphics.Wgl.PixelFormatAttribute - langs: - - csharp - - vb - name: ShareDepthArb - nameWithType: PixelFormatAttribute.ShareDepthArb - fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.ShareDepthArb - type: Field - source: - id: ShareDepthArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 537 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: ShareDepthArb = 8204 - return: - type: OpenTK.Graphics.Wgl.PixelFormatAttribute -- uid: OpenTK.Graphics.Wgl.PixelFormatAttribute.ShareDepthExt - commentId: F:OpenTK.Graphics.Wgl.PixelFormatAttribute.ShareDepthExt - id: ShareDepthExt - parent: OpenTK.Graphics.Wgl.PixelFormatAttribute - langs: - - csharp - - vb - name: ShareDepthExt - nameWithType: PixelFormatAttribute.ShareDepthExt - fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.ShareDepthExt - type: Field - source: - id: ShareDepthExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 538 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: ShareDepthExt = 8204 - return: - type: OpenTK.Graphics.Wgl.PixelFormatAttribute -- uid: OpenTK.Graphics.Wgl.PixelFormatAttribute.ShareStencilArb - commentId: F:OpenTK.Graphics.Wgl.PixelFormatAttribute.ShareStencilArb - id: ShareStencilArb - parent: OpenTK.Graphics.Wgl.PixelFormatAttribute - langs: - - csharp - - vb - name: ShareStencilArb - nameWithType: PixelFormatAttribute.ShareStencilArb - fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.ShareStencilArb - type: Field - source: - id: ShareStencilArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 539 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: ShareStencilArb = 8205 - return: - type: OpenTK.Graphics.Wgl.PixelFormatAttribute -- uid: OpenTK.Graphics.Wgl.PixelFormatAttribute.ShareStencilExt - commentId: F:OpenTK.Graphics.Wgl.PixelFormatAttribute.ShareStencilExt - id: ShareStencilExt - parent: OpenTK.Graphics.Wgl.PixelFormatAttribute - langs: - - csharp - - vb - name: ShareStencilExt - nameWithType: PixelFormatAttribute.ShareStencilExt - fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.ShareStencilExt - type: Field - source: - id: ShareStencilExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 540 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: ShareStencilExt = 8205 - return: - type: OpenTK.Graphics.Wgl.PixelFormatAttribute -- uid: OpenTK.Graphics.Wgl.PixelFormatAttribute.ShareAccumArb - commentId: F:OpenTK.Graphics.Wgl.PixelFormatAttribute.ShareAccumArb - id: ShareAccumArb - parent: OpenTK.Graphics.Wgl.PixelFormatAttribute - langs: - - csharp - - vb - name: ShareAccumArb - nameWithType: PixelFormatAttribute.ShareAccumArb - fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.ShareAccumArb - type: Field - source: - id: ShareAccumArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 541 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: ShareAccumArb = 8206 - return: - type: OpenTK.Graphics.Wgl.PixelFormatAttribute -- uid: OpenTK.Graphics.Wgl.PixelFormatAttribute.ShareAccumExt - commentId: F:OpenTK.Graphics.Wgl.PixelFormatAttribute.ShareAccumExt - id: ShareAccumExt - parent: OpenTK.Graphics.Wgl.PixelFormatAttribute - langs: - - csharp - - vb - name: ShareAccumExt - nameWithType: PixelFormatAttribute.ShareAccumExt - fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.ShareAccumExt - type: Field - source: - id: ShareAccumExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 542 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: ShareAccumExt = 8206 - return: - type: OpenTK.Graphics.Wgl.PixelFormatAttribute -- uid: OpenTK.Graphics.Wgl.PixelFormatAttribute.SupportGdiArb - commentId: F:OpenTK.Graphics.Wgl.PixelFormatAttribute.SupportGdiArb - id: SupportGdiArb - parent: OpenTK.Graphics.Wgl.PixelFormatAttribute - langs: - - csharp - - vb - name: SupportGdiArb - nameWithType: PixelFormatAttribute.SupportGdiArb - fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.SupportGdiArb - type: Field - source: - id: SupportGdiArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 543 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: SupportGdiArb = 8207 - return: - type: OpenTK.Graphics.Wgl.PixelFormatAttribute -- uid: OpenTK.Graphics.Wgl.PixelFormatAttribute.SupportGdiExt - commentId: F:OpenTK.Graphics.Wgl.PixelFormatAttribute.SupportGdiExt - id: SupportGdiExt - parent: OpenTK.Graphics.Wgl.PixelFormatAttribute - langs: - - csharp - - vb - name: SupportGdiExt - nameWithType: PixelFormatAttribute.SupportGdiExt - fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.SupportGdiExt - type: Field - source: - id: SupportGdiExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 544 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: SupportGdiExt = 8207 - return: - type: OpenTK.Graphics.Wgl.PixelFormatAttribute -- uid: OpenTK.Graphics.Wgl.PixelFormatAttribute.SupportOpenglArb - commentId: F:OpenTK.Graphics.Wgl.PixelFormatAttribute.SupportOpenglArb - id: SupportOpenglArb - parent: OpenTK.Graphics.Wgl.PixelFormatAttribute - langs: - - csharp - - vb - name: SupportOpenglArb - nameWithType: PixelFormatAttribute.SupportOpenglArb - fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.SupportOpenglArb - type: Field - source: - id: SupportOpenglArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 545 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: SupportOpenglArb = 8208 - return: - type: OpenTK.Graphics.Wgl.PixelFormatAttribute -- uid: OpenTK.Graphics.Wgl.PixelFormatAttribute.SupportOpenglExt - commentId: F:OpenTK.Graphics.Wgl.PixelFormatAttribute.SupportOpenglExt - id: SupportOpenglExt - parent: OpenTK.Graphics.Wgl.PixelFormatAttribute - langs: - - csharp - - vb - name: SupportOpenglExt - nameWithType: PixelFormatAttribute.SupportOpenglExt - fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.SupportOpenglExt - type: Field - source: - id: SupportOpenglExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 546 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: SupportOpenglExt = 8208 - return: - type: OpenTK.Graphics.Wgl.PixelFormatAttribute -- uid: OpenTK.Graphics.Wgl.PixelFormatAttribute.DoubleBufferArb - commentId: F:OpenTK.Graphics.Wgl.PixelFormatAttribute.DoubleBufferArb - id: DoubleBufferArb - parent: OpenTK.Graphics.Wgl.PixelFormatAttribute - langs: - - csharp - - vb - name: DoubleBufferArb - nameWithType: PixelFormatAttribute.DoubleBufferArb - fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.DoubleBufferArb - type: Field - source: - id: DoubleBufferArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 547 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: DoubleBufferArb = 8209 - return: - type: OpenTK.Graphics.Wgl.PixelFormatAttribute -- uid: OpenTK.Graphics.Wgl.PixelFormatAttribute.DoubleBufferExt - commentId: F:OpenTK.Graphics.Wgl.PixelFormatAttribute.DoubleBufferExt - id: DoubleBufferExt - parent: OpenTK.Graphics.Wgl.PixelFormatAttribute - langs: - - csharp - - vb - name: DoubleBufferExt - nameWithType: PixelFormatAttribute.DoubleBufferExt - fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.DoubleBufferExt - type: Field - source: - id: DoubleBufferExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 548 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: DoubleBufferExt = 8209 - return: - type: OpenTK.Graphics.Wgl.PixelFormatAttribute -- uid: OpenTK.Graphics.Wgl.PixelFormatAttribute.StereoArb - commentId: F:OpenTK.Graphics.Wgl.PixelFormatAttribute.StereoArb - id: StereoArb - parent: OpenTK.Graphics.Wgl.PixelFormatAttribute - langs: - - csharp - - vb - name: StereoArb - nameWithType: PixelFormatAttribute.StereoArb - fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.StereoArb - type: Field - source: - id: StereoArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 549 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: StereoArb = 8210 - return: - type: OpenTK.Graphics.Wgl.PixelFormatAttribute -- uid: OpenTK.Graphics.Wgl.PixelFormatAttribute.StereoExt - commentId: F:OpenTK.Graphics.Wgl.PixelFormatAttribute.StereoExt - id: StereoExt - parent: OpenTK.Graphics.Wgl.PixelFormatAttribute - langs: - - csharp - - vb - name: StereoExt - nameWithType: PixelFormatAttribute.StereoExt - fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.StereoExt - type: Field - source: - id: StereoExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 550 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: StereoExt = 8210 - return: - type: OpenTK.Graphics.Wgl.PixelFormatAttribute -- uid: OpenTK.Graphics.Wgl.PixelFormatAttribute.PixelTypeArb - commentId: F:OpenTK.Graphics.Wgl.PixelFormatAttribute.PixelTypeArb - id: PixelTypeArb - parent: OpenTK.Graphics.Wgl.PixelFormatAttribute - langs: - - csharp - - vb - name: PixelTypeArb - nameWithType: PixelFormatAttribute.PixelTypeArb - fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.PixelTypeArb - type: Field - source: - id: PixelTypeArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 551 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: PixelTypeArb = 8211 - return: - type: OpenTK.Graphics.Wgl.PixelFormatAttribute -- uid: OpenTK.Graphics.Wgl.PixelFormatAttribute.PixelTypeExt - commentId: F:OpenTK.Graphics.Wgl.PixelFormatAttribute.PixelTypeExt - id: PixelTypeExt - parent: OpenTK.Graphics.Wgl.PixelFormatAttribute - langs: - - csharp - - vb - name: PixelTypeExt - nameWithType: PixelFormatAttribute.PixelTypeExt - fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.PixelTypeExt - type: Field - source: - id: PixelTypeExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 552 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: PixelTypeExt = 8211 - return: - type: OpenTK.Graphics.Wgl.PixelFormatAttribute -- uid: OpenTK.Graphics.Wgl.PixelFormatAttribute.ColorBitsArb - commentId: F:OpenTK.Graphics.Wgl.PixelFormatAttribute.ColorBitsArb - id: ColorBitsArb - parent: OpenTK.Graphics.Wgl.PixelFormatAttribute - langs: - - csharp - - vb - name: ColorBitsArb - nameWithType: PixelFormatAttribute.ColorBitsArb - fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.ColorBitsArb - type: Field - source: - id: ColorBitsArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 553 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: ColorBitsArb = 8212 - return: - type: OpenTK.Graphics.Wgl.PixelFormatAttribute -- uid: OpenTK.Graphics.Wgl.PixelFormatAttribute.ColorBitsExt - commentId: F:OpenTK.Graphics.Wgl.PixelFormatAttribute.ColorBitsExt - id: ColorBitsExt - parent: OpenTK.Graphics.Wgl.PixelFormatAttribute - langs: - - csharp - - vb - name: ColorBitsExt - nameWithType: PixelFormatAttribute.ColorBitsExt - fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.ColorBitsExt - type: Field - source: - id: ColorBitsExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 554 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: ColorBitsExt = 8212 - return: - type: OpenTK.Graphics.Wgl.PixelFormatAttribute -- uid: OpenTK.Graphics.Wgl.PixelFormatAttribute.RedBitsArb - commentId: F:OpenTK.Graphics.Wgl.PixelFormatAttribute.RedBitsArb - id: RedBitsArb - parent: OpenTK.Graphics.Wgl.PixelFormatAttribute - langs: - - csharp - - vb - name: RedBitsArb - nameWithType: PixelFormatAttribute.RedBitsArb - fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.RedBitsArb - type: Field - source: - id: RedBitsArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 555 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: RedBitsArb = 8213 - return: - type: OpenTK.Graphics.Wgl.PixelFormatAttribute -- uid: OpenTK.Graphics.Wgl.PixelFormatAttribute.RedBitsExt - commentId: F:OpenTK.Graphics.Wgl.PixelFormatAttribute.RedBitsExt - id: RedBitsExt - parent: OpenTK.Graphics.Wgl.PixelFormatAttribute - langs: - - csharp - - vb - name: RedBitsExt - nameWithType: PixelFormatAttribute.RedBitsExt - fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.RedBitsExt - type: Field - source: - id: RedBitsExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 556 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: RedBitsExt = 8213 - return: - type: OpenTK.Graphics.Wgl.PixelFormatAttribute -- uid: OpenTK.Graphics.Wgl.PixelFormatAttribute.RedShiftArb - commentId: F:OpenTK.Graphics.Wgl.PixelFormatAttribute.RedShiftArb - id: RedShiftArb - parent: OpenTK.Graphics.Wgl.PixelFormatAttribute - langs: - - csharp - - vb - name: RedShiftArb - nameWithType: PixelFormatAttribute.RedShiftArb - fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.RedShiftArb - type: Field - source: - id: RedShiftArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 557 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: RedShiftArb = 8214 - return: - type: OpenTK.Graphics.Wgl.PixelFormatAttribute -- uid: OpenTK.Graphics.Wgl.PixelFormatAttribute.RedShiftExt - commentId: F:OpenTK.Graphics.Wgl.PixelFormatAttribute.RedShiftExt - id: RedShiftExt - parent: OpenTK.Graphics.Wgl.PixelFormatAttribute - langs: - - csharp - - vb - name: RedShiftExt - nameWithType: PixelFormatAttribute.RedShiftExt - fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.RedShiftExt - type: Field - source: - id: RedShiftExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 558 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: RedShiftExt = 8214 - return: - type: OpenTK.Graphics.Wgl.PixelFormatAttribute -- uid: OpenTK.Graphics.Wgl.PixelFormatAttribute.GreenBitsArb - commentId: F:OpenTK.Graphics.Wgl.PixelFormatAttribute.GreenBitsArb - id: GreenBitsArb - parent: OpenTK.Graphics.Wgl.PixelFormatAttribute - langs: - - csharp - - vb - name: GreenBitsArb - nameWithType: PixelFormatAttribute.GreenBitsArb - fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.GreenBitsArb - type: Field - source: - id: GreenBitsArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 559 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: GreenBitsArb = 8215 - return: - type: OpenTK.Graphics.Wgl.PixelFormatAttribute -- uid: OpenTK.Graphics.Wgl.PixelFormatAttribute.GreenBitsExt - commentId: F:OpenTK.Graphics.Wgl.PixelFormatAttribute.GreenBitsExt - id: GreenBitsExt - parent: OpenTK.Graphics.Wgl.PixelFormatAttribute - langs: - - csharp - - vb - name: GreenBitsExt - nameWithType: PixelFormatAttribute.GreenBitsExt - fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.GreenBitsExt - type: Field - source: - id: GreenBitsExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 560 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: GreenBitsExt = 8215 - return: - type: OpenTK.Graphics.Wgl.PixelFormatAttribute -- uid: OpenTK.Graphics.Wgl.PixelFormatAttribute.GreenShiftArb - commentId: F:OpenTK.Graphics.Wgl.PixelFormatAttribute.GreenShiftArb - id: GreenShiftArb - parent: OpenTK.Graphics.Wgl.PixelFormatAttribute - langs: - - csharp - - vb - name: GreenShiftArb - nameWithType: PixelFormatAttribute.GreenShiftArb - fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.GreenShiftArb - type: Field - source: - id: GreenShiftArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 561 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: GreenShiftArb = 8216 - return: - type: OpenTK.Graphics.Wgl.PixelFormatAttribute -- uid: OpenTK.Graphics.Wgl.PixelFormatAttribute.GreenShiftExt - commentId: F:OpenTK.Graphics.Wgl.PixelFormatAttribute.GreenShiftExt - id: GreenShiftExt - parent: OpenTK.Graphics.Wgl.PixelFormatAttribute - langs: - - csharp - - vb - name: GreenShiftExt - nameWithType: PixelFormatAttribute.GreenShiftExt - fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.GreenShiftExt - type: Field - source: - id: GreenShiftExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 562 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: GreenShiftExt = 8216 - return: - type: OpenTK.Graphics.Wgl.PixelFormatAttribute -- uid: OpenTK.Graphics.Wgl.PixelFormatAttribute.BlueBitsArb - commentId: F:OpenTK.Graphics.Wgl.PixelFormatAttribute.BlueBitsArb - id: BlueBitsArb - parent: OpenTK.Graphics.Wgl.PixelFormatAttribute - langs: - - csharp - - vb - name: BlueBitsArb - nameWithType: PixelFormatAttribute.BlueBitsArb - fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.BlueBitsArb - type: Field - source: - id: BlueBitsArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 563 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: BlueBitsArb = 8217 - return: - type: OpenTK.Graphics.Wgl.PixelFormatAttribute -- uid: OpenTK.Graphics.Wgl.PixelFormatAttribute.BlueBitsExt - commentId: F:OpenTK.Graphics.Wgl.PixelFormatAttribute.BlueBitsExt - id: BlueBitsExt - parent: OpenTK.Graphics.Wgl.PixelFormatAttribute - langs: - - csharp - - vb - name: BlueBitsExt - nameWithType: PixelFormatAttribute.BlueBitsExt - fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.BlueBitsExt - type: Field - source: - id: BlueBitsExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 564 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: BlueBitsExt = 8217 - return: - type: OpenTK.Graphics.Wgl.PixelFormatAttribute -- uid: OpenTK.Graphics.Wgl.PixelFormatAttribute.BlueShiftArb - commentId: F:OpenTK.Graphics.Wgl.PixelFormatAttribute.BlueShiftArb - id: BlueShiftArb - parent: OpenTK.Graphics.Wgl.PixelFormatAttribute - langs: - - csharp - - vb - name: BlueShiftArb - nameWithType: PixelFormatAttribute.BlueShiftArb - fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.BlueShiftArb - type: Field - source: - id: BlueShiftArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 565 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: BlueShiftArb = 8218 - return: - type: OpenTK.Graphics.Wgl.PixelFormatAttribute -- uid: OpenTK.Graphics.Wgl.PixelFormatAttribute.BlueShiftExt - commentId: F:OpenTK.Graphics.Wgl.PixelFormatAttribute.BlueShiftExt - id: BlueShiftExt - parent: OpenTK.Graphics.Wgl.PixelFormatAttribute - langs: - - csharp - - vb - name: BlueShiftExt - nameWithType: PixelFormatAttribute.BlueShiftExt - fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.BlueShiftExt - type: Field - source: - id: BlueShiftExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 566 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: BlueShiftExt = 8218 - return: - type: OpenTK.Graphics.Wgl.PixelFormatAttribute -- uid: OpenTK.Graphics.Wgl.PixelFormatAttribute.AlphaBitsArb - commentId: F:OpenTK.Graphics.Wgl.PixelFormatAttribute.AlphaBitsArb - id: AlphaBitsArb - parent: OpenTK.Graphics.Wgl.PixelFormatAttribute - langs: - - csharp - - vb - name: AlphaBitsArb - nameWithType: PixelFormatAttribute.AlphaBitsArb - fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.AlphaBitsArb - type: Field - source: - id: AlphaBitsArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 567 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: AlphaBitsArb = 8219 - return: - type: OpenTK.Graphics.Wgl.PixelFormatAttribute -- uid: OpenTK.Graphics.Wgl.PixelFormatAttribute.AlphaBitsExt - commentId: F:OpenTK.Graphics.Wgl.PixelFormatAttribute.AlphaBitsExt - id: AlphaBitsExt - parent: OpenTK.Graphics.Wgl.PixelFormatAttribute - langs: - - csharp - - vb - name: AlphaBitsExt - nameWithType: PixelFormatAttribute.AlphaBitsExt - fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.AlphaBitsExt - type: Field - source: - id: AlphaBitsExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 568 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: AlphaBitsExt = 8219 - return: - type: OpenTK.Graphics.Wgl.PixelFormatAttribute -- uid: OpenTK.Graphics.Wgl.PixelFormatAttribute.AlphaShiftArb - commentId: F:OpenTK.Graphics.Wgl.PixelFormatAttribute.AlphaShiftArb - id: AlphaShiftArb - parent: OpenTK.Graphics.Wgl.PixelFormatAttribute - langs: - - csharp - - vb - name: AlphaShiftArb - nameWithType: PixelFormatAttribute.AlphaShiftArb - fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.AlphaShiftArb - type: Field - source: - id: AlphaShiftArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 569 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: AlphaShiftArb = 8220 - return: - type: OpenTK.Graphics.Wgl.PixelFormatAttribute -- uid: OpenTK.Graphics.Wgl.PixelFormatAttribute.AlphaShiftExt - commentId: F:OpenTK.Graphics.Wgl.PixelFormatAttribute.AlphaShiftExt - id: AlphaShiftExt - parent: OpenTK.Graphics.Wgl.PixelFormatAttribute - langs: - - csharp - - vb - name: AlphaShiftExt - nameWithType: PixelFormatAttribute.AlphaShiftExt - fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.AlphaShiftExt - type: Field - source: - id: AlphaShiftExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 570 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: AlphaShiftExt = 8220 - return: - type: OpenTK.Graphics.Wgl.PixelFormatAttribute -- uid: OpenTK.Graphics.Wgl.PixelFormatAttribute.AccumBitsArb - commentId: F:OpenTK.Graphics.Wgl.PixelFormatAttribute.AccumBitsArb - id: AccumBitsArb - parent: OpenTK.Graphics.Wgl.PixelFormatAttribute - langs: - - csharp - - vb - name: AccumBitsArb - nameWithType: PixelFormatAttribute.AccumBitsArb - fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.AccumBitsArb - type: Field - source: - id: AccumBitsArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 571 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: AccumBitsArb = 8221 - return: - type: OpenTK.Graphics.Wgl.PixelFormatAttribute -- uid: OpenTK.Graphics.Wgl.PixelFormatAttribute.AccumBitsExt - commentId: F:OpenTK.Graphics.Wgl.PixelFormatAttribute.AccumBitsExt - id: AccumBitsExt - parent: OpenTK.Graphics.Wgl.PixelFormatAttribute - langs: - - csharp - - vb - name: AccumBitsExt - nameWithType: PixelFormatAttribute.AccumBitsExt - fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.AccumBitsExt - type: Field - source: - id: AccumBitsExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 572 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: AccumBitsExt = 8221 - return: - type: OpenTK.Graphics.Wgl.PixelFormatAttribute -- uid: OpenTK.Graphics.Wgl.PixelFormatAttribute.AccumRedBitsArb - commentId: F:OpenTK.Graphics.Wgl.PixelFormatAttribute.AccumRedBitsArb - id: AccumRedBitsArb - parent: OpenTK.Graphics.Wgl.PixelFormatAttribute - langs: - - csharp - - vb - name: AccumRedBitsArb - nameWithType: PixelFormatAttribute.AccumRedBitsArb - fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.AccumRedBitsArb - type: Field - source: - id: AccumRedBitsArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 573 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: AccumRedBitsArb = 8222 - return: - type: OpenTK.Graphics.Wgl.PixelFormatAttribute -- uid: OpenTK.Graphics.Wgl.PixelFormatAttribute.AccumRedBitsExt - commentId: F:OpenTK.Graphics.Wgl.PixelFormatAttribute.AccumRedBitsExt - id: AccumRedBitsExt - parent: OpenTK.Graphics.Wgl.PixelFormatAttribute - langs: - - csharp - - vb - name: AccumRedBitsExt - nameWithType: PixelFormatAttribute.AccumRedBitsExt - fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.AccumRedBitsExt - type: Field - source: - id: AccumRedBitsExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 574 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: AccumRedBitsExt = 8222 - return: - type: OpenTK.Graphics.Wgl.PixelFormatAttribute -- uid: OpenTK.Graphics.Wgl.PixelFormatAttribute.AccumGreenBitsArb - commentId: F:OpenTK.Graphics.Wgl.PixelFormatAttribute.AccumGreenBitsArb - id: AccumGreenBitsArb - parent: OpenTK.Graphics.Wgl.PixelFormatAttribute - langs: - - csharp - - vb - name: AccumGreenBitsArb - nameWithType: PixelFormatAttribute.AccumGreenBitsArb - fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.AccumGreenBitsArb - type: Field - source: - id: AccumGreenBitsArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 575 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: AccumGreenBitsArb = 8223 - return: - type: OpenTK.Graphics.Wgl.PixelFormatAttribute -- uid: OpenTK.Graphics.Wgl.PixelFormatAttribute.AccumGreenBitsExt - commentId: F:OpenTK.Graphics.Wgl.PixelFormatAttribute.AccumGreenBitsExt - id: AccumGreenBitsExt - parent: OpenTK.Graphics.Wgl.PixelFormatAttribute - langs: - - csharp - - vb - name: AccumGreenBitsExt - nameWithType: PixelFormatAttribute.AccumGreenBitsExt - fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.AccumGreenBitsExt - type: Field - source: - id: AccumGreenBitsExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 576 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: AccumGreenBitsExt = 8223 - return: - type: OpenTK.Graphics.Wgl.PixelFormatAttribute -- uid: OpenTK.Graphics.Wgl.PixelFormatAttribute.AccumBlueBitsArb - commentId: F:OpenTK.Graphics.Wgl.PixelFormatAttribute.AccumBlueBitsArb - id: AccumBlueBitsArb - parent: OpenTK.Graphics.Wgl.PixelFormatAttribute - langs: - - csharp - - vb - name: AccumBlueBitsArb - nameWithType: PixelFormatAttribute.AccumBlueBitsArb - fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.AccumBlueBitsArb - type: Field - source: - id: AccumBlueBitsArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 577 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: AccumBlueBitsArb = 8224 - return: - type: OpenTK.Graphics.Wgl.PixelFormatAttribute -- uid: OpenTK.Graphics.Wgl.PixelFormatAttribute.AccumBlueBitsExt - commentId: F:OpenTK.Graphics.Wgl.PixelFormatAttribute.AccumBlueBitsExt - id: AccumBlueBitsExt - parent: OpenTK.Graphics.Wgl.PixelFormatAttribute - langs: - - csharp - - vb - name: AccumBlueBitsExt - nameWithType: PixelFormatAttribute.AccumBlueBitsExt - fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.AccumBlueBitsExt - type: Field - source: - id: AccumBlueBitsExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 578 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: AccumBlueBitsExt = 8224 - return: - type: OpenTK.Graphics.Wgl.PixelFormatAttribute -- uid: OpenTK.Graphics.Wgl.PixelFormatAttribute.AccumAlphaBitsArb - commentId: F:OpenTK.Graphics.Wgl.PixelFormatAttribute.AccumAlphaBitsArb - id: AccumAlphaBitsArb - parent: OpenTK.Graphics.Wgl.PixelFormatAttribute - langs: - - csharp - - vb - name: AccumAlphaBitsArb - nameWithType: PixelFormatAttribute.AccumAlphaBitsArb - fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.AccumAlphaBitsArb - type: Field - source: - id: AccumAlphaBitsArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 579 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: AccumAlphaBitsArb = 8225 - return: - type: OpenTK.Graphics.Wgl.PixelFormatAttribute -- uid: OpenTK.Graphics.Wgl.PixelFormatAttribute.AccumAlphaBitsExt - commentId: F:OpenTK.Graphics.Wgl.PixelFormatAttribute.AccumAlphaBitsExt - id: AccumAlphaBitsExt - parent: OpenTK.Graphics.Wgl.PixelFormatAttribute - langs: - - csharp - - vb - name: AccumAlphaBitsExt - nameWithType: PixelFormatAttribute.AccumAlphaBitsExt - fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.AccumAlphaBitsExt - type: Field - source: - id: AccumAlphaBitsExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 580 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: AccumAlphaBitsExt = 8225 - return: - type: OpenTK.Graphics.Wgl.PixelFormatAttribute -- uid: OpenTK.Graphics.Wgl.PixelFormatAttribute.DepthBitsArb - commentId: F:OpenTK.Graphics.Wgl.PixelFormatAttribute.DepthBitsArb - id: DepthBitsArb - parent: OpenTK.Graphics.Wgl.PixelFormatAttribute - langs: - - csharp - - vb - name: DepthBitsArb - nameWithType: PixelFormatAttribute.DepthBitsArb - fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.DepthBitsArb - type: Field - source: - id: DepthBitsArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 581 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: DepthBitsArb = 8226 - return: - type: OpenTK.Graphics.Wgl.PixelFormatAttribute -- uid: OpenTK.Graphics.Wgl.PixelFormatAttribute.DepthBitsExt - commentId: F:OpenTK.Graphics.Wgl.PixelFormatAttribute.DepthBitsExt - id: DepthBitsExt - parent: OpenTK.Graphics.Wgl.PixelFormatAttribute - langs: - - csharp - - vb - name: DepthBitsExt - nameWithType: PixelFormatAttribute.DepthBitsExt - fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.DepthBitsExt - type: Field - source: - id: DepthBitsExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 582 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: DepthBitsExt = 8226 - return: - type: OpenTK.Graphics.Wgl.PixelFormatAttribute -- uid: OpenTK.Graphics.Wgl.PixelFormatAttribute.StencilBitsArb - commentId: F:OpenTK.Graphics.Wgl.PixelFormatAttribute.StencilBitsArb - id: StencilBitsArb - parent: OpenTK.Graphics.Wgl.PixelFormatAttribute - langs: - - csharp - - vb - name: StencilBitsArb - nameWithType: PixelFormatAttribute.StencilBitsArb - fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.StencilBitsArb - type: Field - source: - id: StencilBitsArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 583 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: StencilBitsArb = 8227 - return: - type: OpenTK.Graphics.Wgl.PixelFormatAttribute -- uid: OpenTK.Graphics.Wgl.PixelFormatAttribute.StencilBitsExt - commentId: F:OpenTK.Graphics.Wgl.PixelFormatAttribute.StencilBitsExt - id: StencilBitsExt - parent: OpenTK.Graphics.Wgl.PixelFormatAttribute - langs: - - csharp - - vb - name: StencilBitsExt - nameWithType: PixelFormatAttribute.StencilBitsExt - fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.StencilBitsExt - type: Field - source: - id: StencilBitsExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 584 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: StencilBitsExt = 8227 - return: - type: OpenTK.Graphics.Wgl.PixelFormatAttribute -- uid: OpenTK.Graphics.Wgl.PixelFormatAttribute.AuxBuffersArb - commentId: F:OpenTK.Graphics.Wgl.PixelFormatAttribute.AuxBuffersArb - id: AuxBuffersArb - parent: OpenTK.Graphics.Wgl.PixelFormatAttribute - langs: - - csharp - - vb - name: AuxBuffersArb - nameWithType: PixelFormatAttribute.AuxBuffersArb - fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.AuxBuffersArb - type: Field - source: - id: AuxBuffersArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 585 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: AuxBuffersArb = 8228 - return: - type: OpenTK.Graphics.Wgl.PixelFormatAttribute -- uid: OpenTK.Graphics.Wgl.PixelFormatAttribute.AuxBuffersExt - commentId: F:OpenTK.Graphics.Wgl.PixelFormatAttribute.AuxBuffersExt - id: AuxBuffersExt - parent: OpenTK.Graphics.Wgl.PixelFormatAttribute - langs: - - csharp - - vb - name: AuxBuffersExt - nameWithType: PixelFormatAttribute.AuxBuffersExt - fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.AuxBuffersExt - type: Field - source: - id: AuxBuffersExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 586 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: AuxBuffersExt = 8228 - return: - type: OpenTK.Graphics.Wgl.PixelFormatAttribute -- uid: OpenTK.Graphics.Wgl.PixelFormatAttribute.DrawToPbufferArb - commentId: F:OpenTK.Graphics.Wgl.PixelFormatAttribute.DrawToPbufferArb - id: DrawToPbufferArb - parent: OpenTK.Graphics.Wgl.PixelFormatAttribute - langs: - - csharp - - vb - name: DrawToPbufferArb - nameWithType: PixelFormatAttribute.DrawToPbufferArb - fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.DrawToPbufferArb - type: Field - source: - id: DrawToPbufferArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 587 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: DrawToPbufferArb = 8237 - return: - type: OpenTK.Graphics.Wgl.PixelFormatAttribute -- uid: OpenTK.Graphics.Wgl.PixelFormatAttribute.DrawToPbufferExt - commentId: F:OpenTK.Graphics.Wgl.PixelFormatAttribute.DrawToPbufferExt - id: DrawToPbufferExt - parent: OpenTK.Graphics.Wgl.PixelFormatAttribute - langs: - - csharp - - vb - name: DrawToPbufferExt - nameWithType: PixelFormatAttribute.DrawToPbufferExt - fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.DrawToPbufferExt - type: Field - source: - id: DrawToPbufferExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 588 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: DrawToPbufferExt = 8237 - return: - type: OpenTK.Graphics.Wgl.PixelFormatAttribute -- uid: OpenTK.Graphics.Wgl.PixelFormatAttribute.TransparentRedValueArb - commentId: F:OpenTK.Graphics.Wgl.PixelFormatAttribute.TransparentRedValueArb - id: TransparentRedValueArb - parent: OpenTK.Graphics.Wgl.PixelFormatAttribute - langs: - - csharp - - vb - name: TransparentRedValueArb - nameWithType: PixelFormatAttribute.TransparentRedValueArb - fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.TransparentRedValueArb - type: Field - source: - id: TransparentRedValueArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 589 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: TransparentRedValueArb = 8247 - return: - type: OpenTK.Graphics.Wgl.PixelFormatAttribute -- uid: OpenTK.Graphics.Wgl.PixelFormatAttribute.TransparentGreenValueArb - commentId: F:OpenTK.Graphics.Wgl.PixelFormatAttribute.TransparentGreenValueArb - id: TransparentGreenValueArb - parent: OpenTK.Graphics.Wgl.PixelFormatAttribute - langs: - - csharp - - vb - name: TransparentGreenValueArb - nameWithType: PixelFormatAttribute.TransparentGreenValueArb - fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.TransparentGreenValueArb - type: Field - source: - id: TransparentGreenValueArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 590 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: TransparentGreenValueArb = 8248 - return: - type: OpenTK.Graphics.Wgl.PixelFormatAttribute -- uid: OpenTK.Graphics.Wgl.PixelFormatAttribute.TransparentBlueValueArb - commentId: F:OpenTK.Graphics.Wgl.PixelFormatAttribute.TransparentBlueValueArb - id: TransparentBlueValueArb - parent: OpenTK.Graphics.Wgl.PixelFormatAttribute - langs: - - csharp - - vb - name: TransparentBlueValueArb - nameWithType: PixelFormatAttribute.TransparentBlueValueArb - fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.TransparentBlueValueArb - type: Field - source: - id: TransparentBlueValueArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 591 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: TransparentBlueValueArb = 8249 - return: - type: OpenTK.Graphics.Wgl.PixelFormatAttribute -- uid: OpenTK.Graphics.Wgl.PixelFormatAttribute.TransparentAlphaValueArb - commentId: F:OpenTK.Graphics.Wgl.PixelFormatAttribute.TransparentAlphaValueArb - id: TransparentAlphaValueArb - parent: OpenTK.Graphics.Wgl.PixelFormatAttribute - langs: - - csharp - - vb - name: TransparentAlphaValueArb - nameWithType: PixelFormatAttribute.TransparentAlphaValueArb - fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.TransparentAlphaValueArb - type: Field - source: - id: TransparentAlphaValueArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 592 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: TransparentAlphaValueArb = 8250 - return: - type: OpenTK.Graphics.Wgl.PixelFormatAttribute -- uid: OpenTK.Graphics.Wgl.PixelFormatAttribute.TransparentIndexValueArb - commentId: F:OpenTK.Graphics.Wgl.PixelFormatAttribute.TransparentIndexValueArb - id: TransparentIndexValueArb - parent: OpenTK.Graphics.Wgl.PixelFormatAttribute - langs: - - csharp - - vb - name: TransparentIndexValueArb - nameWithType: PixelFormatAttribute.TransparentIndexValueArb - fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.TransparentIndexValueArb - type: Field - source: - id: TransparentIndexValueArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 593 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: TransparentIndexValueArb = 8251 - return: - type: OpenTK.Graphics.Wgl.PixelFormatAttribute -- uid: OpenTK.Graphics.Wgl.PixelFormatAttribute.SamplesArb - commentId: F:OpenTK.Graphics.Wgl.PixelFormatAttribute.SamplesArb - id: SamplesArb - parent: OpenTK.Graphics.Wgl.PixelFormatAttribute - langs: - - csharp - - vb - name: SamplesArb - nameWithType: PixelFormatAttribute.SamplesArb - fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.SamplesArb - type: Field - source: - id: SamplesArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 594 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: SamplesArb = 8258 - return: - type: OpenTK.Graphics.Wgl.PixelFormatAttribute -- uid: OpenTK.Graphics.Wgl.PixelFormatAttribute.SamplesExt - commentId: F:OpenTK.Graphics.Wgl.PixelFormatAttribute.SamplesExt - id: SamplesExt - parent: OpenTK.Graphics.Wgl.PixelFormatAttribute - langs: - - csharp - - vb - name: SamplesExt - nameWithType: PixelFormatAttribute.SamplesExt - fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.SamplesExt - type: Field - source: - id: SamplesExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 595 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: SamplesExt = 8258 - return: - type: OpenTK.Graphics.Wgl.PixelFormatAttribute -- uid: OpenTK.Graphics.Wgl.PixelFormatAttribute.FramebufferSrgbCapableArb - commentId: F:OpenTK.Graphics.Wgl.PixelFormatAttribute.FramebufferSrgbCapableArb - id: FramebufferSrgbCapableArb - parent: OpenTK.Graphics.Wgl.PixelFormatAttribute - langs: - - csharp - - vb - name: FramebufferSrgbCapableArb - nameWithType: PixelFormatAttribute.FramebufferSrgbCapableArb - fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.FramebufferSrgbCapableArb - type: Field - source: - id: FramebufferSrgbCapableArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 596 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: FramebufferSrgbCapableArb = 8361 - return: - type: OpenTK.Graphics.Wgl.PixelFormatAttribute -- uid: OpenTK.Graphics.Wgl.PixelFormatAttribute.FramebufferSrgbCapableExt - commentId: F:OpenTK.Graphics.Wgl.PixelFormatAttribute.FramebufferSrgbCapableExt - id: FramebufferSrgbCapableExt - parent: OpenTK.Graphics.Wgl.PixelFormatAttribute - langs: - - csharp - - vb - name: FramebufferSrgbCapableExt - nameWithType: PixelFormatAttribute.FramebufferSrgbCapableExt - fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute.FramebufferSrgbCapableExt - type: Field - source: - id: FramebufferSrgbCapableExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 597 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: FramebufferSrgbCapableExt = 8361 - return: - type: OpenTK.Graphics.Wgl.PixelFormatAttribute -references: -- uid: OpenTK.Graphics.Wgl.Wgl.ARB.ChoosePixelFormatARB(System.IntPtr,OpenTK.Graphics.Wgl.PixelFormatAttribute*,System.Single*,System.UInt32,System.Int32*,System.UInt32*) - commentId: M:OpenTK.Graphics.Wgl.Wgl.ARB.ChoosePixelFormatARB(System.IntPtr,OpenTK.Graphics.Wgl.PixelFormatAttribute*,System.Single*,System.UInt32,System.Int32*,System.UInt32*) - isExternal: true - href: OpenTK.Graphics.Wgl.Wgl.ARB.html#OpenTK_Graphics_Wgl_Wgl_ARB_ChoosePixelFormatARB_System_IntPtr_OpenTK_Graphics_Wgl_PixelFormatAttribute__System_Single__System_UInt32_System_Int32__System_UInt32__ - name: ChoosePixelFormatARB(nint, PixelFormatAttribute*, float*, uint, int*, uint*) - nameWithType: Wgl.ARB.ChoosePixelFormatARB(nint, PixelFormatAttribute*, float*, uint, int*, uint*) - fullName: OpenTK.Graphics.Wgl.Wgl.ARB.ChoosePixelFormatARB(nint, OpenTK.Graphics.Wgl.PixelFormatAttribute*, float*, uint, int*, uint*) - nameWithType.vb: Wgl.ARB.ChoosePixelFormatARB(IntPtr, PixelFormatAttribute*, Single*, UInteger, Integer*, UInteger*) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.ARB.ChoosePixelFormatARB(System.IntPtr, OpenTK.Graphics.Wgl.PixelFormatAttribute*, Single*, UInteger, Integer*, UInteger*) - name.vb: ChoosePixelFormatARB(IntPtr, PixelFormatAttribute*, Single*, UInteger, Integer*, UInteger*) - spec.csharp: - - uid: OpenTK.Graphics.Wgl.Wgl.ARB.ChoosePixelFormatARB(System.IntPtr,OpenTK.Graphics.Wgl.PixelFormatAttribute*,System.Single*,System.UInt32,System.Int32*,System.UInt32*) - name: ChoosePixelFormatARB - href: OpenTK.Graphics.Wgl.Wgl.ARB.html#OpenTK_Graphics_Wgl_Wgl_ARB_ChoosePixelFormatARB_System_IntPtr_OpenTK_Graphics_Wgl_PixelFormatAttribute__System_Single__System_UInt32_System_Int32__System_UInt32__ - - name: ( - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: OpenTK.Graphics.Wgl.PixelFormatAttribute - name: PixelFormatAttribute - href: OpenTK.Graphics.Wgl.PixelFormatAttribute.html - - name: '*' - - name: ',' - - name: " " - - uid: System.Single - name: float - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.single - - name: '*' - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '*' - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: '*' - - name: ) - spec.vb: - - uid: OpenTK.Graphics.Wgl.Wgl.ARB.ChoosePixelFormatARB(System.IntPtr,OpenTK.Graphics.Wgl.PixelFormatAttribute*,System.Single*,System.UInt32,System.Int32*,System.UInt32*) - name: ChoosePixelFormatARB - href: OpenTK.Graphics.Wgl.Wgl.ARB.html#OpenTK_Graphics_Wgl_Wgl_ARB_ChoosePixelFormatARB_System_IntPtr_OpenTK_Graphics_Wgl_PixelFormatAttribute__System_Single__System_UInt32_System_Int32__System_UInt32__ - - name: ( - - uid: System.IntPtr - name: IntPtr - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: OpenTK.Graphics.Wgl.PixelFormatAttribute - name: PixelFormatAttribute - href: OpenTK.Graphics.Wgl.PixelFormatAttribute.html - - name: '*' - - name: ',' - - name: " " - - uid: System.Single - name: Single - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.single - - name: '*' - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ',' - - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '*' - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: '*' - - name: ) -- uid: OpenTK.Graphics.Wgl.Wgl.ARB.GetPixelFormatAttribfvARB(System.IntPtr,System.Int32,System.Int32,System.UInt32,OpenTK.Graphics.Wgl.PixelFormatAttribute*,System.Single*) - commentId: M:OpenTK.Graphics.Wgl.Wgl.ARB.GetPixelFormatAttribfvARB(System.IntPtr,System.Int32,System.Int32,System.UInt32,OpenTK.Graphics.Wgl.PixelFormatAttribute*,System.Single*) - isExternal: true - href: OpenTK.Graphics.Wgl.Wgl.ARB.html#OpenTK_Graphics_Wgl_Wgl_ARB_GetPixelFormatAttribfvARB_System_IntPtr_System_Int32_System_Int32_System_UInt32_OpenTK_Graphics_Wgl_PixelFormatAttribute__System_Single__ - name: GetPixelFormatAttribfvARB(nint, int, int, uint, PixelFormatAttribute*, float*) - nameWithType: Wgl.ARB.GetPixelFormatAttribfvARB(nint, int, int, uint, PixelFormatAttribute*, float*) - fullName: OpenTK.Graphics.Wgl.Wgl.ARB.GetPixelFormatAttribfvARB(nint, int, int, uint, OpenTK.Graphics.Wgl.PixelFormatAttribute*, float*) - nameWithType.vb: Wgl.ARB.GetPixelFormatAttribfvARB(IntPtr, Integer, Integer, UInteger, PixelFormatAttribute*, Single*) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.ARB.GetPixelFormatAttribfvARB(System.IntPtr, Integer, Integer, UInteger, OpenTK.Graphics.Wgl.PixelFormatAttribute*, Single*) - name.vb: GetPixelFormatAttribfvARB(IntPtr, Integer, Integer, UInteger, PixelFormatAttribute*, Single*) - spec.csharp: - - uid: OpenTK.Graphics.Wgl.Wgl.ARB.GetPixelFormatAttribfvARB(System.IntPtr,System.Int32,System.Int32,System.UInt32,OpenTK.Graphics.Wgl.PixelFormatAttribute*,System.Single*) - name: GetPixelFormatAttribfvARB - href: OpenTK.Graphics.Wgl.Wgl.ARB.html#OpenTK_Graphics_Wgl_Wgl_ARB_GetPixelFormatAttribfvARB_System_IntPtr_System_Int32_System_Int32_System_UInt32_OpenTK_Graphics_Wgl_PixelFormatAttribute__System_Single__ - - name: ( - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ',' - - name: " " - - uid: OpenTK.Graphics.Wgl.PixelFormatAttribute - name: PixelFormatAttribute - href: OpenTK.Graphics.Wgl.PixelFormatAttribute.html - - name: '*' - - name: ',' - - name: " " - - uid: System.Single - name: float - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.single - - name: '*' - - name: ) - spec.vb: - - uid: OpenTK.Graphics.Wgl.Wgl.ARB.GetPixelFormatAttribfvARB(System.IntPtr,System.Int32,System.Int32,System.UInt32,OpenTK.Graphics.Wgl.PixelFormatAttribute*,System.Single*) - name: GetPixelFormatAttribfvARB - href: OpenTK.Graphics.Wgl.Wgl.ARB.html#OpenTK_Graphics_Wgl_Wgl_ARB_GetPixelFormatAttribfvARB_System_IntPtr_System_Int32_System_Int32_System_UInt32_OpenTK_Graphics_Wgl_PixelFormatAttribute__System_Single__ - - name: ( - - uid: System.IntPtr - name: IntPtr - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ',' - - name: " " - - uid: OpenTK.Graphics.Wgl.PixelFormatAttribute - name: PixelFormatAttribute - href: OpenTK.Graphics.Wgl.PixelFormatAttribute.html - - name: '*' - - name: ',' - - name: " " - - uid: System.Single - name: Single - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.single - - name: '*' - - name: ) -- uid: OpenTK.Graphics.Wgl.Wgl.EXT.GetPixelFormatAttribfvEXT(System.IntPtr,System.Int32,System.Int32,System.UInt32,OpenTK.Graphics.Wgl.PixelFormatAttribute*,System.Single*) - commentId: M:OpenTK.Graphics.Wgl.Wgl.EXT.GetPixelFormatAttribfvEXT(System.IntPtr,System.Int32,System.Int32,System.UInt32,OpenTK.Graphics.Wgl.PixelFormatAttribute*,System.Single*) - isExternal: true - href: OpenTK.Graphics.Wgl.Wgl.EXT.html#OpenTK_Graphics_Wgl_Wgl_EXT_GetPixelFormatAttribfvEXT_System_IntPtr_System_Int32_System_Int32_System_UInt32_OpenTK_Graphics_Wgl_PixelFormatAttribute__System_Single__ - name: GetPixelFormatAttribfvEXT(nint, int, int, uint, PixelFormatAttribute*, float*) - nameWithType: Wgl.EXT.GetPixelFormatAttribfvEXT(nint, int, int, uint, PixelFormatAttribute*, float*) - fullName: OpenTK.Graphics.Wgl.Wgl.EXT.GetPixelFormatAttribfvEXT(nint, int, int, uint, OpenTK.Graphics.Wgl.PixelFormatAttribute*, float*) - nameWithType.vb: Wgl.EXT.GetPixelFormatAttribfvEXT(IntPtr, Integer, Integer, UInteger, PixelFormatAttribute*, Single*) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.EXT.GetPixelFormatAttribfvEXT(System.IntPtr, Integer, Integer, UInteger, OpenTK.Graphics.Wgl.PixelFormatAttribute*, Single*) - name.vb: GetPixelFormatAttribfvEXT(IntPtr, Integer, Integer, UInteger, PixelFormatAttribute*, Single*) - spec.csharp: - - uid: OpenTK.Graphics.Wgl.Wgl.EXT.GetPixelFormatAttribfvEXT(System.IntPtr,System.Int32,System.Int32,System.UInt32,OpenTK.Graphics.Wgl.PixelFormatAttribute*,System.Single*) - name: GetPixelFormatAttribfvEXT - href: OpenTK.Graphics.Wgl.Wgl.EXT.html#OpenTK_Graphics_Wgl_Wgl_EXT_GetPixelFormatAttribfvEXT_System_IntPtr_System_Int32_System_Int32_System_UInt32_OpenTK_Graphics_Wgl_PixelFormatAttribute__System_Single__ - - name: ( - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ',' - - name: " " - - uid: OpenTK.Graphics.Wgl.PixelFormatAttribute - name: PixelFormatAttribute - href: OpenTK.Graphics.Wgl.PixelFormatAttribute.html - - name: '*' - - name: ',' - - name: " " - - uid: System.Single - name: float - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.single - - name: '*' - - name: ) - spec.vb: - - uid: OpenTK.Graphics.Wgl.Wgl.EXT.GetPixelFormatAttribfvEXT(System.IntPtr,System.Int32,System.Int32,System.UInt32,OpenTK.Graphics.Wgl.PixelFormatAttribute*,System.Single*) - name: GetPixelFormatAttribfvEXT - href: OpenTK.Graphics.Wgl.Wgl.EXT.html#OpenTK_Graphics_Wgl_Wgl_EXT_GetPixelFormatAttribfvEXT_System_IntPtr_System_Int32_System_Int32_System_UInt32_OpenTK_Graphics_Wgl_PixelFormatAttribute__System_Single__ - - name: ( - - uid: System.IntPtr - name: IntPtr - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ',' - - name: " " - - uid: OpenTK.Graphics.Wgl.PixelFormatAttribute - name: PixelFormatAttribute - href: OpenTK.Graphics.Wgl.PixelFormatAttribute.html - - name: '*' - - name: ',' - - name: " " - - uid: System.Single - name: Single - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.single - - name: '*' - - name: ) -- uid: OpenTK.Graphics.Wgl - commentId: N:OpenTK.Graphics.Wgl - href: OpenTK.html - name: OpenTK.Graphics.Wgl - nameWithType: OpenTK.Graphics.Wgl - fullName: OpenTK.Graphics.Wgl - spec.csharp: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Wgl - name: Wgl - href: OpenTK.Graphics.Wgl.html - spec.vb: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Wgl - name: Wgl - href: OpenTK.Graphics.Wgl.html -- uid: OpenTK.Graphics.Wgl.PixelFormatAttribute - commentId: T:OpenTK.Graphics.Wgl.PixelFormatAttribute - parent: OpenTK.Graphics.Wgl - href: OpenTK.Graphics.Wgl.PixelFormatAttribute.html - name: PixelFormatAttribute - nameWithType: PixelFormatAttribute - fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute diff --git a/api/OpenTK.Graphics.Wgl.PixelFormatDescriptor.yml b/api/OpenTK.Graphics.Wgl.PixelFormatDescriptor.yml deleted file mode 100644 index f8060529..00000000 --- a/api/OpenTK.Graphics.Wgl.PixelFormatDescriptor.yml +++ /dev/null @@ -1,936 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: OpenTK.Graphics.Wgl.PixelFormatDescriptor - commentId: T:OpenTK.Graphics.Wgl.PixelFormatDescriptor - id: PixelFormatDescriptor - parent: OpenTK.Graphics.Wgl - children: - - OpenTK.Graphics.Wgl.PixelFormatDescriptor.bReserved - - OpenTK.Graphics.Wgl.PixelFormatDescriptor.cAccumAlphaBits - - OpenTK.Graphics.Wgl.PixelFormatDescriptor.cAccumBits - - OpenTK.Graphics.Wgl.PixelFormatDescriptor.cAccumBlueBits - - OpenTK.Graphics.Wgl.PixelFormatDescriptor.cAccumGreenBits - - OpenTK.Graphics.Wgl.PixelFormatDescriptor.cAccumRedBits - - OpenTK.Graphics.Wgl.PixelFormatDescriptor.cAlphaBits - - OpenTK.Graphics.Wgl.PixelFormatDescriptor.cAlphaShift - - OpenTK.Graphics.Wgl.PixelFormatDescriptor.cAuxBuffers - - OpenTK.Graphics.Wgl.PixelFormatDescriptor.cBlueBits - - OpenTK.Graphics.Wgl.PixelFormatDescriptor.cBlueShift - - OpenTK.Graphics.Wgl.PixelFormatDescriptor.cColorBits - - OpenTK.Graphics.Wgl.PixelFormatDescriptor.cDepthBits - - OpenTK.Graphics.Wgl.PixelFormatDescriptor.cGreenBits - - OpenTK.Graphics.Wgl.PixelFormatDescriptor.cGreenShift - - OpenTK.Graphics.Wgl.PixelFormatDescriptor.cRedBits - - OpenTK.Graphics.Wgl.PixelFormatDescriptor.cRedShift - - OpenTK.Graphics.Wgl.PixelFormatDescriptor.cStencilBits - - OpenTK.Graphics.Wgl.PixelFormatDescriptor.dwDamageMask - - OpenTK.Graphics.Wgl.PixelFormatDescriptor.dwFlags - - OpenTK.Graphics.Wgl.PixelFormatDescriptor.dwLayerMask - - OpenTK.Graphics.Wgl.PixelFormatDescriptor.dwVisibleMask - - OpenTK.Graphics.Wgl.PixelFormatDescriptor.iLayerType - - OpenTK.Graphics.Wgl.PixelFormatDescriptor.iPixelType - - OpenTK.Graphics.Wgl.PixelFormatDescriptor.nSize - - OpenTK.Graphics.Wgl.PixelFormatDescriptor.nVersion - langs: - - csharp - - vb - name: PixelFormatDescriptor - nameWithType: PixelFormatDescriptor - fullName: OpenTK.Graphics.Wgl.PixelFormatDescriptor - type: Struct - source: - id: PixelFormatDescriptor - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 574 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: public struct PixelFormatDescriptor - content.vb: Public Structure PixelFormatDescriptor - inheritedMembers: - - System.ValueType.Equals(System.Object) - - System.ValueType.GetHashCode - - System.ValueType.ToString - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.ReferenceEquals(System.Object,System.Object) -- uid: OpenTK.Graphics.Wgl.PixelFormatDescriptor.nSize - commentId: F:OpenTK.Graphics.Wgl.PixelFormatDescriptor.nSize - id: nSize - parent: OpenTK.Graphics.Wgl.PixelFormatDescriptor - langs: - - csharp - - vb - name: nSize - nameWithType: PixelFormatDescriptor.nSize - fullName: OpenTK.Graphics.Wgl.PixelFormatDescriptor.nSize - type: Field - source: - id: nSize - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 576 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: public ushort nSize - return: - type: System.UInt16 - content.vb: Public nSize As UShort -- uid: OpenTK.Graphics.Wgl.PixelFormatDescriptor.nVersion - commentId: F:OpenTK.Graphics.Wgl.PixelFormatDescriptor.nVersion - id: nVersion - parent: OpenTK.Graphics.Wgl.PixelFormatDescriptor - langs: - - csharp - - vb - name: nVersion - nameWithType: PixelFormatDescriptor.nVersion - fullName: OpenTK.Graphics.Wgl.PixelFormatDescriptor.nVersion - type: Field - source: - id: nVersion - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 577 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: public ushort nVersion - return: - type: System.UInt16 - content.vb: Public nVersion As UShort -- uid: OpenTK.Graphics.Wgl.PixelFormatDescriptor.dwFlags - commentId: F:OpenTK.Graphics.Wgl.PixelFormatDescriptor.dwFlags - id: dwFlags - parent: OpenTK.Graphics.Wgl.PixelFormatDescriptor - langs: - - csharp - - vb - name: dwFlags - nameWithType: PixelFormatDescriptor.dwFlags - fullName: OpenTK.Graphics.Wgl.PixelFormatDescriptor.dwFlags - type: Field - source: - id: dwFlags - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 578 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: public uint dwFlags - return: - type: System.UInt32 - content.vb: Public dwFlags As UInteger -- uid: OpenTK.Graphics.Wgl.PixelFormatDescriptor.iPixelType - commentId: F:OpenTK.Graphics.Wgl.PixelFormatDescriptor.iPixelType - id: iPixelType - parent: OpenTK.Graphics.Wgl.PixelFormatDescriptor - langs: - - csharp - - vb - name: iPixelType - nameWithType: PixelFormatDescriptor.iPixelType - fullName: OpenTK.Graphics.Wgl.PixelFormatDescriptor.iPixelType - type: Field - source: - id: iPixelType - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 579 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: public byte iPixelType - return: - type: System.Byte - content.vb: Public iPixelType As Byte -- uid: OpenTK.Graphics.Wgl.PixelFormatDescriptor.cColorBits - commentId: F:OpenTK.Graphics.Wgl.PixelFormatDescriptor.cColorBits - id: cColorBits - parent: OpenTK.Graphics.Wgl.PixelFormatDescriptor - langs: - - csharp - - vb - name: cColorBits - nameWithType: PixelFormatDescriptor.cColorBits - fullName: OpenTK.Graphics.Wgl.PixelFormatDescriptor.cColorBits - type: Field - source: - id: cColorBits - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 580 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: public byte cColorBits - return: - type: System.Byte - content.vb: Public cColorBits As Byte -- uid: OpenTK.Graphics.Wgl.PixelFormatDescriptor.cRedBits - commentId: F:OpenTK.Graphics.Wgl.PixelFormatDescriptor.cRedBits - id: cRedBits - parent: OpenTK.Graphics.Wgl.PixelFormatDescriptor - langs: - - csharp - - vb - name: cRedBits - nameWithType: PixelFormatDescriptor.cRedBits - fullName: OpenTK.Graphics.Wgl.PixelFormatDescriptor.cRedBits - type: Field - source: - id: cRedBits - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 581 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: public byte cRedBits - return: - type: System.Byte - content.vb: Public cRedBits As Byte -- uid: OpenTK.Graphics.Wgl.PixelFormatDescriptor.cRedShift - commentId: F:OpenTK.Graphics.Wgl.PixelFormatDescriptor.cRedShift - id: cRedShift - parent: OpenTK.Graphics.Wgl.PixelFormatDescriptor - langs: - - csharp - - vb - name: cRedShift - nameWithType: PixelFormatDescriptor.cRedShift - fullName: OpenTK.Graphics.Wgl.PixelFormatDescriptor.cRedShift - type: Field - source: - id: cRedShift - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 582 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: public byte cRedShift - return: - type: System.Byte - content.vb: Public cRedShift As Byte -- uid: OpenTK.Graphics.Wgl.PixelFormatDescriptor.cGreenBits - commentId: F:OpenTK.Graphics.Wgl.PixelFormatDescriptor.cGreenBits - id: cGreenBits - parent: OpenTK.Graphics.Wgl.PixelFormatDescriptor - langs: - - csharp - - vb - name: cGreenBits - nameWithType: PixelFormatDescriptor.cGreenBits - fullName: OpenTK.Graphics.Wgl.PixelFormatDescriptor.cGreenBits - type: Field - source: - id: cGreenBits - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 583 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: public byte cGreenBits - return: - type: System.Byte - content.vb: Public cGreenBits As Byte -- uid: OpenTK.Graphics.Wgl.PixelFormatDescriptor.cGreenShift - commentId: F:OpenTK.Graphics.Wgl.PixelFormatDescriptor.cGreenShift - id: cGreenShift - parent: OpenTK.Graphics.Wgl.PixelFormatDescriptor - langs: - - csharp - - vb - name: cGreenShift - nameWithType: PixelFormatDescriptor.cGreenShift - fullName: OpenTK.Graphics.Wgl.PixelFormatDescriptor.cGreenShift - type: Field - source: - id: cGreenShift - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 584 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: public byte cGreenShift - return: - type: System.Byte - content.vb: Public cGreenShift As Byte -- uid: OpenTK.Graphics.Wgl.PixelFormatDescriptor.cBlueBits - commentId: F:OpenTK.Graphics.Wgl.PixelFormatDescriptor.cBlueBits - id: cBlueBits - parent: OpenTK.Graphics.Wgl.PixelFormatDescriptor - langs: - - csharp - - vb - name: cBlueBits - nameWithType: PixelFormatDescriptor.cBlueBits - fullName: OpenTK.Graphics.Wgl.PixelFormatDescriptor.cBlueBits - type: Field - source: - id: cBlueBits - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 585 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: public byte cBlueBits - return: - type: System.Byte - content.vb: Public cBlueBits As Byte -- uid: OpenTK.Graphics.Wgl.PixelFormatDescriptor.cBlueShift - commentId: F:OpenTK.Graphics.Wgl.PixelFormatDescriptor.cBlueShift - id: cBlueShift - parent: OpenTK.Graphics.Wgl.PixelFormatDescriptor - langs: - - csharp - - vb - name: cBlueShift - nameWithType: PixelFormatDescriptor.cBlueShift - fullName: OpenTK.Graphics.Wgl.PixelFormatDescriptor.cBlueShift - type: Field - source: - id: cBlueShift - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 586 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: public byte cBlueShift - return: - type: System.Byte - content.vb: Public cBlueShift As Byte -- uid: OpenTK.Graphics.Wgl.PixelFormatDescriptor.cAlphaBits - commentId: F:OpenTK.Graphics.Wgl.PixelFormatDescriptor.cAlphaBits - id: cAlphaBits - parent: OpenTK.Graphics.Wgl.PixelFormatDescriptor - langs: - - csharp - - vb - name: cAlphaBits - nameWithType: PixelFormatDescriptor.cAlphaBits - fullName: OpenTK.Graphics.Wgl.PixelFormatDescriptor.cAlphaBits - type: Field - source: - id: cAlphaBits - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 587 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: public byte cAlphaBits - return: - type: System.Byte - content.vb: Public cAlphaBits As Byte -- uid: OpenTK.Graphics.Wgl.PixelFormatDescriptor.cAlphaShift - commentId: F:OpenTK.Graphics.Wgl.PixelFormatDescriptor.cAlphaShift - id: cAlphaShift - parent: OpenTK.Graphics.Wgl.PixelFormatDescriptor - langs: - - csharp - - vb - name: cAlphaShift - nameWithType: PixelFormatDescriptor.cAlphaShift - fullName: OpenTK.Graphics.Wgl.PixelFormatDescriptor.cAlphaShift - type: Field - source: - id: cAlphaShift - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 588 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: public byte cAlphaShift - return: - type: System.Byte - content.vb: Public cAlphaShift As Byte -- uid: OpenTK.Graphics.Wgl.PixelFormatDescriptor.cAccumBits - commentId: F:OpenTK.Graphics.Wgl.PixelFormatDescriptor.cAccumBits - id: cAccumBits - parent: OpenTK.Graphics.Wgl.PixelFormatDescriptor - langs: - - csharp - - vb - name: cAccumBits - nameWithType: PixelFormatDescriptor.cAccumBits - fullName: OpenTK.Graphics.Wgl.PixelFormatDescriptor.cAccumBits - type: Field - source: - id: cAccumBits - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 589 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: public byte cAccumBits - return: - type: System.Byte - content.vb: Public cAccumBits As Byte -- uid: OpenTK.Graphics.Wgl.PixelFormatDescriptor.cAccumRedBits - commentId: F:OpenTK.Graphics.Wgl.PixelFormatDescriptor.cAccumRedBits - id: cAccumRedBits - parent: OpenTK.Graphics.Wgl.PixelFormatDescriptor - langs: - - csharp - - vb - name: cAccumRedBits - nameWithType: PixelFormatDescriptor.cAccumRedBits - fullName: OpenTK.Graphics.Wgl.PixelFormatDescriptor.cAccumRedBits - type: Field - source: - id: cAccumRedBits - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 590 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: public byte cAccumRedBits - return: - type: System.Byte - content.vb: Public cAccumRedBits As Byte -- uid: OpenTK.Graphics.Wgl.PixelFormatDescriptor.cAccumGreenBits - commentId: F:OpenTK.Graphics.Wgl.PixelFormatDescriptor.cAccumGreenBits - id: cAccumGreenBits - parent: OpenTK.Graphics.Wgl.PixelFormatDescriptor - langs: - - csharp - - vb - name: cAccumGreenBits - nameWithType: PixelFormatDescriptor.cAccumGreenBits - fullName: OpenTK.Graphics.Wgl.PixelFormatDescriptor.cAccumGreenBits - type: Field - source: - id: cAccumGreenBits - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 591 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: public byte cAccumGreenBits - return: - type: System.Byte - content.vb: Public cAccumGreenBits As Byte -- uid: OpenTK.Graphics.Wgl.PixelFormatDescriptor.cAccumBlueBits - commentId: F:OpenTK.Graphics.Wgl.PixelFormatDescriptor.cAccumBlueBits - id: cAccumBlueBits - parent: OpenTK.Graphics.Wgl.PixelFormatDescriptor - langs: - - csharp - - vb - name: cAccumBlueBits - nameWithType: PixelFormatDescriptor.cAccumBlueBits - fullName: OpenTK.Graphics.Wgl.PixelFormatDescriptor.cAccumBlueBits - type: Field - source: - id: cAccumBlueBits - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 592 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: public byte cAccumBlueBits - return: - type: System.Byte - content.vb: Public cAccumBlueBits As Byte -- uid: OpenTK.Graphics.Wgl.PixelFormatDescriptor.cAccumAlphaBits - commentId: F:OpenTK.Graphics.Wgl.PixelFormatDescriptor.cAccumAlphaBits - id: cAccumAlphaBits - parent: OpenTK.Graphics.Wgl.PixelFormatDescriptor - langs: - - csharp - - vb - name: cAccumAlphaBits - nameWithType: PixelFormatDescriptor.cAccumAlphaBits - fullName: OpenTK.Graphics.Wgl.PixelFormatDescriptor.cAccumAlphaBits - type: Field - source: - id: cAccumAlphaBits - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 593 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: public byte cAccumAlphaBits - return: - type: System.Byte - content.vb: Public cAccumAlphaBits As Byte -- uid: OpenTK.Graphics.Wgl.PixelFormatDescriptor.cDepthBits - commentId: F:OpenTK.Graphics.Wgl.PixelFormatDescriptor.cDepthBits - id: cDepthBits - parent: OpenTK.Graphics.Wgl.PixelFormatDescriptor - langs: - - csharp - - vb - name: cDepthBits - nameWithType: PixelFormatDescriptor.cDepthBits - fullName: OpenTK.Graphics.Wgl.PixelFormatDescriptor.cDepthBits - type: Field - source: - id: cDepthBits - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 594 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: public byte cDepthBits - return: - type: System.Byte - content.vb: Public cDepthBits As Byte -- uid: OpenTK.Graphics.Wgl.PixelFormatDescriptor.cStencilBits - commentId: F:OpenTK.Graphics.Wgl.PixelFormatDescriptor.cStencilBits - id: cStencilBits - parent: OpenTK.Graphics.Wgl.PixelFormatDescriptor - langs: - - csharp - - vb - name: cStencilBits - nameWithType: PixelFormatDescriptor.cStencilBits - fullName: OpenTK.Graphics.Wgl.PixelFormatDescriptor.cStencilBits - type: Field - source: - id: cStencilBits - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 595 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: public byte cStencilBits - return: - type: System.Byte - content.vb: Public cStencilBits As Byte -- uid: OpenTK.Graphics.Wgl.PixelFormatDescriptor.cAuxBuffers - commentId: F:OpenTK.Graphics.Wgl.PixelFormatDescriptor.cAuxBuffers - id: cAuxBuffers - parent: OpenTK.Graphics.Wgl.PixelFormatDescriptor - langs: - - csharp - - vb - name: cAuxBuffers - nameWithType: PixelFormatDescriptor.cAuxBuffers - fullName: OpenTK.Graphics.Wgl.PixelFormatDescriptor.cAuxBuffers - type: Field - source: - id: cAuxBuffers - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 596 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: public byte cAuxBuffers - return: - type: System.Byte - content.vb: Public cAuxBuffers As Byte -- uid: OpenTK.Graphics.Wgl.PixelFormatDescriptor.iLayerType - commentId: F:OpenTK.Graphics.Wgl.PixelFormatDescriptor.iLayerType - id: iLayerType - parent: OpenTK.Graphics.Wgl.PixelFormatDescriptor - langs: - - csharp - - vb - name: iLayerType - nameWithType: PixelFormatDescriptor.iLayerType - fullName: OpenTK.Graphics.Wgl.PixelFormatDescriptor.iLayerType - type: Field - source: - id: iLayerType - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 597 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: public byte iLayerType - return: - type: System.Byte - content.vb: Public iLayerType As Byte -- uid: OpenTK.Graphics.Wgl.PixelFormatDescriptor.bReserved - commentId: F:OpenTK.Graphics.Wgl.PixelFormatDescriptor.bReserved - id: bReserved - parent: OpenTK.Graphics.Wgl.PixelFormatDescriptor - langs: - - csharp - - vb - name: bReserved - nameWithType: PixelFormatDescriptor.bReserved - fullName: OpenTK.Graphics.Wgl.PixelFormatDescriptor.bReserved - type: Field - source: - id: bReserved - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 598 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: public byte bReserved - return: - type: System.Byte - content.vb: Public bReserved As Byte -- uid: OpenTK.Graphics.Wgl.PixelFormatDescriptor.dwLayerMask - commentId: F:OpenTK.Graphics.Wgl.PixelFormatDescriptor.dwLayerMask - id: dwLayerMask - parent: OpenTK.Graphics.Wgl.PixelFormatDescriptor - langs: - - csharp - - vb - name: dwLayerMask - nameWithType: PixelFormatDescriptor.dwLayerMask - fullName: OpenTK.Graphics.Wgl.PixelFormatDescriptor.dwLayerMask - type: Field - source: - id: dwLayerMask - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 599 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: public uint dwLayerMask - return: - type: System.UInt32 - content.vb: Public dwLayerMask As UInteger -- uid: OpenTK.Graphics.Wgl.PixelFormatDescriptor.dwVisibleMask - commentId: F:OpenTK.Graphics.Wgl.PixelFormatDescriptor.dwVisibleMask - id: dwVisibleMask - parent: OpenTK.Graphics.Wgl.PixelFormatDescriptor - langs: - - csharp - - vb - name: dwVisibleMask - nameWithType: PixelFormatDescriptor.dwVisibleMask - fullName: OpenTK.Graphics.Wgl.PixelFormatDescriptor.dwVisibleMask - type: Field - source: - id: dwVisibleMask - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 600 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: public uint dwVisibleMask - return: - type: System.UInt32 - content.vb: Public dwVisibleMask As UInteger -- uid: OpenTK.Graphics.Wgl.PixelFormatDescriptor.dwDamageMask - commentId: F:OpenTK.Graphics.Wgl.PixelFormatDescriptor.dwDamageMask - id: dwDamageMask - parent: OpenTK.Graphics.Wgl.PixelFormatDescriptor - langs: - - csharp - - vb - name: dwDamageMask - nameWithType: PixelFormatDescriptor.dwDamageMask - fullName: OpenTK.Graphics.Wgl.PixelFormatDescriptor.dwDamageMask - type: Field - source: - id: dwDamageMask - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 601 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: public uint dwDamageMask - return: - type: System.UInt32 - content.vb: Public dwDamageMask As UInteger -references: -- uid: OpenTK.Graphics.Wgl - commentId: N:OpenTK.Graphics.Wgl - href: OpenTK.html - name: OpenTK.Graphics.Wgl - nameWithType: OpenTK.Graphics.Wgl - fullName: OpenTK.Graphics.Wgl - spec.csharp: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Wgl - name: Wgl - href: OpenTK.Graphics.Wgl.html - spec.vb: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Wgl - name: Wgl - href: OpenTK.Graphics.Wgl.html -- uid: System.ValueType.Equals(System.Object) - commentId: M:System.ValueType.Equals(System.Object) - parent: System.ValueType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals - name: Equals(object) - nameWithType: ValueType.Equals(object) - fullName: System.ValueType.Equals(object) - nameWithType.vb: ValueType.Equals(Object) - fullName.vb: System.ValueType.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: System.ValueType.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.ValueType.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.ValueType.GetHashCode - commentId: M:System.ValueType.GetHashCode - parent: System.ValueType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - name: GetHashCode() - nameWithType: ValueType.GetHashCode() - fullName: System.ValueType.GetHashCode() - spec.csharp: - - uid: System.ValueType.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - - name: ( - - name: ) - spec.vb: - - uid: System.ValueType.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - - name: ( - - name: ) -- uid: System.ValueType.ToString - commentId: M:System.ValueType.ToString - parent: System.ValueType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - name: ToString() - nameWithType: ValueType.ToString() - fullName: System.ValueType.ToString() - spec.csharp: - - uid: System.ValueType.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - - name: ( - - name: ) - spec.vb: - - uid: System.ValueType.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - - name: ( - - name: ) -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.ValueType - commentId: T:System.ValueType - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype - name: ValueType - nameWithType: ValueType - fullName: System.ValueType -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: System.UInt16 - commentId: T:System.UInt16 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint16 - name: ushort - nameWithType: ushort - fullName: ushort - nameWithType.vb: UShort - fullName.vb: UShort - name.vb: UShort -- uid: System.UInt32 - commentId: T:System.UInt32 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - name: uint - nameWithType: uint - fullName: uint - nameWithType.vb: UInteger - fullName.vb: UInteger - name.vb: UInteger -- uid: System.Byte - commentId: T:System.Byte - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.byte - name: byte - nameWithType: byte - fullName: byte - nameWithType.vb: Byte - fullName.vb: Byte - name.vb: Byte diff --git a/api/OpenTK.Graphics.Wgl.PixelType.yml b/api/OpenTK.Graphics.Wgl.PixelType.yml deleted file mode 100644 index 6d1ecda2..00000000 --- a/api/OpenTK.Graphics.Wgl.PixelType.yml +++ /dev/null @@ -1,154 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: OpenTK.Graphics.Wgl.PixelType - commentId: T:OpenTK.Graphics.Wgl.PixelType - id: PixelType - parent: OpenTK.Graphics.Wgl - children: - - OpenTK.Graphics.Wgl.PixelType.TypeColorindexArb - - OpenTK.Graphics.Wgl.PixelType.TypeColorindexExt - - OpenTK.Graphics.Wgl.PixelType.TypeRgbaArb - - OpenTK.Graphics.Wgl.PixelType.TypeRgbaExt - langs: - - csharp - - vb - name: PixelType - nameWithType: PixelType - fullName: OpenTK.Graphics.Wgl.PixelType - type: Enum - source: - id: PixelType - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 599 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: 'public enum PixelType : uint' - content.vb: Public Enum PixelType As UInteger -- uid: OpenTK.Graphics.Wgl.PixelType.TypeRgbaArb - commentId: F:OpenTK.Graphics.Wgl.PixelType.TypeRgbaArb - id: TypeRgbaArb - parent: OpenTK.Graphics.Wgl.PixelType - langs: - - csharp - - vb - name: TypeRgbaArb - nameWithType: PixelType.TypeRgbaArb - fullName: OpenTK.Graphics.Wgl.PixelType.TypeRgbaArb - type: Field - source: - id: TypeRgbaArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 601 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: TypeRgbaArb = 8235 - return: - type: OpenTK.Graphics.Wgl.PixelType -- uid: OpenTK.Graphics.Wgl.PixelType.TypeRgbaExt - commentId: F:OpenTK.Graphics.Wgl.PixelType.TypeRgbaExt - id: TypeRgbaExt - parent: OpenTK.Graphics.Wgl.PixelType - langs: - - csharp - - vb - name: TypeRgbaExt - nameWithType: PixelType.TypeRgbaExt - fullName: OpenTK.Graphics.Wgl.PixelType.TypeRgbaExt - type: Field - source: - id: TypeRgbaExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 602 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: TypeRgbaExt = 8235 - return: - type: OpenTK.Graphics.Wgl.PixelType -- uid: OpenTK.Graphics.Wgl.PixelType.TypeColorindexArb - commentId: F:OpenTK.Graphics.Wgl.PixelType.TypeColorindexArb - id: TypeColorindexArb - parent: OpenTK.Graphics.Wgl.PixelType - langs: - - csharp - - vb - name: TypeColorindexArb - nameWithType: PixelType.TypeColorindexArb - fullName: OpenTK.Graphics.Wgl.PixelType.TypeColorindexArb - type: Field - source: - id: TypeColorindexArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 603 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: TypeColorindexArb = 8236 - return: - type: OpenTK.Graphics.Wgl.PixelType -- uid: OpenTK.Graphics.Wgl.PixelType.TypeColorindexExt - commentId: F:OpenTK.Graphics.Wgl.PixelType.TypeColorindexExt - id: TypeColorindexExt - parent: OpenTK.Graphics.Wgl.PixelType - langs: - - csharp - - vb - name: TypeColorindexExt - nameWithType: PixelType.TypeColorindexExt - fullName: OpenTK.Graphics.Wgl.PixelType.TypeColorindexExt - type: Field - source: - id: TypeColorindexExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 604 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: TypeColorindexExt = 8236 - return: - type: OpenTK.Graphics.Wgl.PixelType -references: -- uid: OpenTK.Graphics.Wgl - commentId: N:OpenTK.Graphics.Wgl - href: OpenTK.html - name: OpenTK.Graphics.Wgl - nameWithType: OpenTK.Graphics.Wgl - fullName: OpenTK.Graphics.Wgl - spec.csharp: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Wgl - name: Wgl - href: OpenTK.Graphics.Wgl.html - spec.vb: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Wgl - name: Wgl - href: OpenTK.Graphics.Wgl.html -- uid: OpenTK.Graphics.Wgl.PixelType - commentId: T:OpenTK.Graphics.Wgl.PixelType - parent: OpenTK.Graphics.Wgl - href: OpenTK.Graphics.Wgl.PixelType.html - name: PixelType - nameWithType: PixelType - fullName: OpenTK.Graphics.Wgl.PixelType diff --git a/api/OpenTK.Graphics.Wgl.StereoEmitterState.yml b/api/OpenTK.Graphics.Wgl.StereoEmitterState.yml deleted file mode 100644 index 798573d2..00000000 --- a/api/OpenTK.Graphics.Wgl.StereoEmitterState.yml +++ /dev/null @@ -1,196 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: OpenTK.Graphics.Wgl.StereoEmitterState - commentId: T:OpenTK.Graphics.Wgl.StereoEmitterState - id: StereoEmitterState - parent: OpenTK.Graphics.Wgl - children: - - OpenTK.Graphics.Wgl.StereoEmitterState.StereoEmitterDisable3dl - - OpenTK.Graphics.Wgl.StereoEmitterState.StereoEmitterEnable3dl - - OpenTK.Graphics.Wgl.StereoEmitterState.StereoPolarityInvert3dl - - OpenTK.Graphics.Wgl.StereoEmitterState.StereoPolarityNormal3dl - langs: - - csharp - - vb - name: StereoEmitterState - nameWithType: StereoEmitterState - fullName: OpenTK.Graphics.Wgl.StereoEmitterState - type: Enum - source: - id: StereoEmitterState - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 607 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: Used in - example: [] - syntax: - content: 'public enum StereoEmitterState : uint' - content.vb: Public Enum StereoEmitterState As UInteger -- uid: OpenTK.Graphics.Wgl.StereoEmitterState.StereoEmitterEnable3dl - commentId: F:OpenTK.Graphics.Wgl.StereoEmitterState.StereoEmitterEnable3dl - id: StereoEmitterEnable3dl - parent: OpenTK.Graphics.Wgl.StereoEmitterState - langs: - - csharp - - vb - name: StereoEmitterEnable3dl - nameWithType: StereoEmitterState.StereoEmitterEnable3dl - fullName: OpenTK.Graphics.Wgl.StereoEmitterState.StereoEmitterEnable3dl - type: Field - source: - id: StereoEmitterEnable3dl - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 609 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: StereoEmitterEnable3dl = 8277 - return: - type: OpenTK.Graphics.Wgl.StereoEmitterState -- uid: OpenTK.Graphics.Wgl.StereoEmitterState.StereoEmitterDisable3dl - commentId: F:OpenTK.Graphics.Wgl.StereoEmitterState.StereoEmitterDisable3dl - id: StereoEmitterDisable3dl - parent: OpenTK.Graphics.Wgl.StereoEmitterState - langs: - - csharp - - vb - name: StereoEmitterDisable3dl - nameWithType: StereoEmitterState.StereoEmitterDisable3dl - fullName: OpenTK.Graphics.Wgl.StereoEmitterState.StereoEmitterDisable3dl - type: Field - source: - id: StereoEmitterDisable3dl - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 610 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: StereoEmitterDisable3dl = 8278 - return: - type: OpenTK.Graphics.Wgl.StereoEmitterState -- uid: OpenTK.Graphics.Wgl.StereoEmitterState.StereoPolarityNormal3dl - commentId: F:OpenTK.Graphics.Wgl.StereoEmitterState.StereoPolarityNormal3dl - id: StereoPolarityNormal3dl - parent: OpenTK.Graphics.Wgl.StereoEmitterState - langs: - - csharp - - vb - name: StereoPolarityNormal3dl - nameWithType: StereoEmitterState.StereoPolarityNormal3dl - fullName: OpenTK.Graphics.Wgl.StereoEmitterState.StereoPolarityNormal3dl - type: Field - source: - id: StereoPolarityNormal3dl - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 611 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: StereoPolarityNormal3dl = 8279 - return: - type: OpenTK.Graphics.Wgl.StereoEmitterState -- uid: OpenTK.Graphics.Wgl.StereoEmitterState.StereoPolarityInvert3dl - commentId: F:OpenTK.Graphics.Wgl.StereoEmitterState.StereoPolarityInvert3dl - id: StereoPolarityInvert3dl - parent: OpenTK.Graphics.Wgl.StereoEmitterState - langs: - - csharp - - vb - name: StereoPolarityInvert3dl - nameWithType: StereoEmitterState.StereoPolarityInvert3dl - fullName: OpenTK.Graphics.Wgl.StereoEmitterState.StereoPolarityInvert3dl - type: Field - source: - id: StereoPolarityInvert3dl - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 612 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: StereoPolarityInvert3dl = 8280 - return: - type: OpenTK.Graphics.Wgl.StereoEmitterState -references: -- uid: OpenTK.Graphics.Wgl.Wgl._3DL.SetStereoEmitterState3DL(System.IntPtr,OpenTK.Graphics.Wgl.StereoEmitterState) - commentId: M:OpenTK.Graphics.Wgl.Wgl._3DL.SetStereoEmitterState3DL(System.IntPtr,OpenTK.Graphics.Wgl.StereoEmitterState) - isExternal: true - href: OpenTK.Graphics.Wgl.Wgl._3DL.html#OpenTK_Graphics_Wgl_Wgl__3DL_SetStereoEmitterState3DL_System_IntPtr_OpenTK_Graphics_Wgl_StereoEmitterState_ - name: SetStereoEmitterState3DL(nint, StereoEmitterState) - nameWithType: Wgl._3DL.SetStereoEmitterState3DL(nint, StereoEmitterState) - fullName: OpenTK.Graphics.Wgl.Wgl._3DL.SetStereoEmitterState3DL(nint, OpenTK.Graphics.Wgl.StereoEmitterState) - nameWithType.vb: Wgl._3DL.SetStereoEmitterState3DL(IntPtr, StereoEmitterState) - fullName.vb: OpenTK.Graphics.Wgl.Wgl._3DL.SetStereoEmitterState3DL(System.IntPtr, OpenTK.Graphics.Wgl.StereoEmitterState) - name.vb: SetStereoEmitterState3DL(IntPtr, StereoEmitterState) - spec.csharp: - - uid: OpenTK.Graphics.Wgl.Wgl._3DL.SetStereoEmitterState3DL(System.IntPtr,OpenTK.Graphics.Wgl.StereoEmitterState) - name: SetStereoEmitterState3DL - href: OpenTK.Graphics.Wgl.Wgl._3DL.html#OpenTK_Graphics_Wgl_Wgl__3DL_SetStereoEmitterState3DL_System_IntPtr_OpenTK_Graphics_Wgl_StereoEmitterState_ - - name: ( - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: OpenTK.Graphics.Wgl.StereoEmitterState - name: StereoEmitterState - href: OpenTK.Graphics.Wgl.StereoEmitterState.html - - name: ) - spec.vb: - - uid: OpenTK.Graphics.Wgl.Wgl._3DL.SetStereoEmitterState3DL(System.IntPtr,OpenTK.Graphics.Wgl.StereoEmitterState) - name: SetStereoEmitterState3DL - href: OpenTK.Graphics.Wgl.Wgl._3DL.html#OpenTK_Graphics_Wgl_Wgl__3DL_SetStereoEmitterState3DL_System_IntPtr_OpenTK_Graphics_Wgl_StereoEmitterState_ - - name: ( - - uid: System.IntPtr - name: IntPtr - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: OpenTK.Graphics.Wgl.StereoEmitterState - name: StereoEmitterState - href: OpenTK.Graphics.Wgl.StereoEmitterState.html - - name: ) -- uid: OpenTK.Graphics.Wgl - commentId: N:OpenTK.Graphics.Wgl - href: OpenTK.html - name: OpenTK.Graphics.Wgl - nameWithType: OpenTK.Graphics.Wgl - fullName: OpenTK.Graphics.Wgl - spec.csharp: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Wgl - name: Wgl - href: OpenTK.Graphics.Wgl.html - spec.vb: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Wgl - name: Wgl - href: OpenTK.Graphics.Wgl.html -- uid: OpenTK.Graphics.Wgl.StereoEmitterState - commentId: T:OpenTK.Graphics.Wgl.StereoEmitterState - parent: OpenTK.Graphics.Wgl - href: OpenTK.Graphics.Wgl.StereoEmitterState.html - name: StereoEmitterState - nameWithType: StereoEmitterState - fullName: OpenTK.Graphics.Wgl.StereoEmitterState diff --git a/api/OpenTK.Graphics.Wgl.SwapMethod.yml b/api/OpenTK.Graphics.Wgl.SwapMethod.yml deleted file mode 100644 index 5f28dc1f..00000000 --- a/api/OpenTK.Graphics.Wgl.SwapMethod.yml +++ /dev/null @@ -1,200 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: OpenTK.Graphics.Wgl.SwapMethod - commentId: T:OpenTK.Graphics.Wgl.SwapMethod - id: SwapMethod - parent: OpenTK.Graphics.Wgl - children: - - OpenTK.Graphics.Wgl.SwapMethod.SwapCopyArb - - OpenTK.Graphics.Wgl.SwapMethod.SwapCopyExt - - OpenTK.Graphics.Wgl.SwapMethod.SwapExchangeArb - - OpenTK.Graphics.Wgl.SwapMethod.SwapExchangeExt - - OpenTK.Graphics.Wgl.SwapMethod.SwapUndefinedArb - - OpenTK.Graphics.Wgl.SwapMethod.SwapUndefinedExt - langs: - - csharp - - vb - name: SwapMethod - nameWithType: SwapMethod - fullName: OpenTK.Graphics.Wgl.SwapMethod - type: Enum - source: - id: SwapMethod - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 614 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: 'public enum SwapMethod : uint' - content.vb: Public Enum SwapMethod As UInteger -- uid: OpenTK.Graphics.Wgl.SwapMethod.SwapExchangeArb - commentId: F:OpenTK.Graphics.Wgl.SwapMethod.SwapExchangeArb - id: SwapExchangeArb - parent: OpenTK.Graphics.Wgl.SwapMethod - langs: - - csharp - - vb - name: SwapExchangeArb - nameWithType: SwapMethod.SwapExchangeArb - fullName: OpenTK.Graphics.Wgl.SwapMethod.SwapExchangeArb - type: Field - source: - id: SwapExchangeArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 616 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: SwapExchangeArb = 8232 - return: - type: OpenTK.Graphics.Wgl.SwapMethod -- uid: OpenTK.Graphics.Wgl.SwapMethod.SwapExchangeExt - commentId: F:OpenTK.Graphics.Wgl.SwapMethod.SwapExchangeExt - id: SwapExchangeExt - parent: OpenTK.Graphics.Wgl.SwapMethod - langs: - - csharp - - vb - name: SwapExchangeExt - nameWithType: SwapMethod.SwapExchangeExt - fullName: OpenTK.Graphics.Wgl.SwapMethod.SwapExchangeExt - type: Field - source: - id: SwapExchangeExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 617 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: SwapExchangeExt = 8232 - return: - type: OpenTK.Graphics.Wgl.SwapMethod -- uid: OpenTK.Graphics.Wgl.SwapMethod.SwapCopyArb - commentId: F:OpenTK.Graphics.Wgl.SwapMethod.SwapCopyArb - id: SwapCopyArb - parent: OpenTK.Graphics.Wgl.SwapMethod - langs: - - csharp - - vb - name: SwapCopyArb - nameWithType: SwapMethod.SwapCopyArb - fullName: OpenTK.Graphics.Wgl.SwapMethod.SwapCopyArb - type: Field - source: - id: SwapCopyArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 618 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: SwapCopyArb = 8233 - return: - type: OpenTK.Graphics.Wgl.SwapMethod -- uid: OpenTK.Graphics.Wgl.SwapMethod.SwapCopyExt - commentId: F:OpenTK.Graphics.Wgl.SwapMethod.SwapCopyExt - id: SwapCopyExt - parent: OpenTK.Graphics.Wgl.SwapMethod - langs: - - csharp - - vb - name: SwapCopyExt - nameWithType: SwapMethod.SwapCopyExt - fullName: OpenTK.Graphics.Wgl.SwapMethod.SwapCopyExt - type: Field - source: - id: SwapCopyExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 619 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: SwapCopyExt = 8233 - return: - type: OpenTK.Graphics.Wgl.SwapMethod -- uid: OpenTK.Graphics.Wgl.SwapMethod.SwapUndefinedArb - commentId: F:OpenTK.Graphics.Wgl.SwapMethod.SwapUndefinedArb - id: SwapUndefinedArb - parent: OpenTK.Graphics.Wgl.SwapMethod - langs: - - csharp - - vb - name: SwapUndefinedArb - nameWithType: SwapMethod.SwapUndefinedArb - fullName: OpenTK.Graphics.Wgl.SwapMethod.SwapUndefinedArb - type: Field - source: - id: SwapUndefinedArb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 620 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: SwapUndefinedArb = 8234 - return: - type: OpenTK.Graphics.Wgl.SwapMethod -- uid: OpenTK.Graphics.Wgl.SwapMethod.SwapUndefinedExt - commentId: F:OpenTK.Graphics.Wgl.SwapMethod.SwapUndefinedExt - id: SwapUndefinedExt - parent: OpenTK.Graphics.Wgl.SwapMethod - langs: - - csharp - - vb - name: SwapUndefinedExt - nameWithType: SwapMethod.SwapUndefinedExt - fullName: OpenTK.Graphics.Wgl.SwapMethod.SwapUndefinedExt - type: Field - source: - id: SwapUndefinedExt - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 621 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: SwapUndefinedExt = 8234 - return: - type: OpenTK.Graphics.Wgl.SwapMethod -references: -- uid: OpenTK.Graphics.Wgl - commentId: N:OpenTK.Graphics.Wgl - href: OpenTK.html - name: OpenTK.Graphics.Wgl - nameWithType: OpenTK.Graphics.Wgl - fullName: OpenTK.Graphics.Wgl - spec.csharp: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Wgl - name: Wgl - href: OpenTK.Graphics.Wgl.html - spec.vb: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Wgl - name: Wgl - href: OpenTK.Graphics.Wgl.html -- uid: OpenTK.Graphics.Wgl.SwapMethod - commentId: T:OpenTK.Graphics.Wgl.SwapMethod - parent: OpenTK.Graphics.Wgl - href: OpenTK.Graphics.Wgl.SwapMethod.html - name: SwapMethod - nameWithType: SwapMethod - fullName: OpenTK.Graphics.Wgl.SwapMethod diff --git a/api/OpenTK.Graphics.Wgl.VideoCaptureDeviceAttribute.yml b/api/OpenTK.Graphics.Wgl.VideoCaptureDeviceAttribute.yml deleted file mode 100644 index 5bf9c557..00000000 --- a/api/OpenTK.Graphics.Wgl.VideoCaptureDeviceAttribute.yml +++ /dev/null @@ -1,153 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: OpenTK.Graphics.Wgl.VideoCaptureDeviceAttribute - commentId: T:OpenTK.Graphics.Wgl.VideoCaptureDeviceAttribute - id: VideoCaptureDeviceAttribute - parent: OpenTK.Graphics.Wgl - children: - - OpenTK.Graphics.Wgl.VideoCaptureDeviceAttribute.UniqueIdNv - langs: - - csharp - - vb - name: VideoCaptureDeviceAttribute - nameWithType: VideoCaptureDeviceAttribute - fullName: OpenTK.Graphics.Wgl.VideoCaptureDeviceAttribute - type: Enum - source: - id: VideoCaptureDeviceAttribute - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 624 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: Used in - example: [] - syntax: - content: 'public enum VideoCaptureDeviceAttribute : uint' - content.vb: Public Enum VideoCaptureDeviceAttribute As UInteger -- uid: OpenTK.Graphics.Wgl.VideoCaptureDeviceAttribute.UniqueIdNv - commentId: F:OpenTK.Graphics.Wgl.VideoCaptureDeviceAttribute.UniqueIdNv - id: UniqueIdNv - parent: OpenTK.Graphics.Wgl.VideoCaptureDeviceAttribute - langs: - - csharp - - vb - name: UniqueIdNv - nameWithType: VideoCaptureDeviceAttribute.UniqueIdNv - fullName: OpenTK.Graphics.Wgl.VideoCaptureDeviceAttribute.UniqueIdNv - type: Field - source: - id: UniqueIdNv - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 626 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: UniqueIdNv = 8398 - return: - type: OpenTK.Graphics.Wgl.VideoCaptureDeviceAttribute -references: -- uid: OpenTK.Graphics.Wgl.Wgl.NV.QueryVideoCaptureDeviceNV(System.IntPtr,System.IntPtr,OpenTK.Graphics.Wgl.VideoCaptureDeviceAttribute,System.Int32*) - commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.QueryVideoCaptureDeviceNV(System.IntPtr,System.IntPtr,OpenTK.Graphics.Wgl.VideoCaptureDeviceAttribute,System.Int32*) - isExternal: true - href: OpenTK.Graphics.Wgl.Wgl.NV.html#OpenTK_Graphics_Wgl_Wgl_NV_QueryVideoCaptureDeviceNV_System_IntPtr_System_IntPtr_OpenTK_Graphics_Wgl_VideoCaptureDeviceAttribute_System_Int32__ - name: QueryVideoCaptureDeviceNV(nint, nint, VideoCaptureDeviceAttribute, int*) - nameWithType: Wgl.NV.QueryVideoCaptureDeviceNV(nint, nint, VideoCaptureDeviceAttribute, int*) - fullName: OpenTK.Graphics.Wgl.Wgl.NV.QueryVideoCaptureDeviceNV(nint, nint, OpenTK.Graphics.Wgl.VideoCaptureDeviceAttribute, int*) - nameWithType.vb: Wgl.NV.QueryVideoCaptureDeviceNV(IntPtr, IntPtr, VideoCaptureDeviceAttribute, Integer*) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.QueryVideoCaptureDeviceNV(System.IntPtr, System.IntPtr, OpenTK.Graphics.Wgl.VideoCaptureDeviceAttribute, Integer*) - name.vb: QueryVideoCaptureDeviceNV(IntPtr, IntPtr, VideoCaptureDeviceAttribute, Integer*) - spec.csharp: - - uid: OpenTK.Graphics.Wgl.Wgl.NV.QueryVideoCaptureDeviceNV(System.IntPtr,System.IntPtr,OpenTK.Graphics.Wgl.VideoCaptureDeviceAttribute,System.Int32*) - name: QueryVideoCaptureDeviceNV - href: OpenTK.Graphics.Wgl.Wgl.NV.html#OpenTK_Graphics_Wgl_Wgl_NV_QueryVideoCaptureDeviceNV_System_IntPtr_System_IntPtr_OpenTK_Graphics_Wgl_VideoCaptureDeviceAttribute_System_Int32__ - - name: ( - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: OpenTK.Graphics.Wgl.VideoCaptureDeviceAttribute - name: VideoCaptureDeviceAttribute - href: OpenTK.Graphics.Wgl.VideoCaptureDeviceAttribute.html - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '*' - - name: ) - spec.vb: - - uid: OpenTK.Graphics.Wgl.Wgl.NV.QueryVideoCaptureDeviceNV(System.IntPtr,System.IntPtr,OpenTK.Graphics.Wgl.VideoCaptureDeviceAttribute,System.Int32*) - name: QueryVideoCaptureDeviceNV - href: OpenTK.Graphics.Wgl.Wgl.NV.html#OpenTK_Graphics_Wgl_Wgl_NV_QueryVideoCaptureDeviceNV_System_IntPtr_System_IntPtr_OpenTK_Graphics_Wgl_VideoCaptureDeviceAttribute_System_Int32__ - - name: ( - - uid: System.IntPtr - name: IntPtr - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.IntPtr - name: IntPtr - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: OpenTK.Graphics.Wgl.VideoCaptureDeviceAttribute - name: VideoCaptureDeviceAttribute - href: OpenTK.Graphics.Wgl.VideoCaptureDeviceAttribute.html - - name: ',' - - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '*' - - name: ) -- uid: OpenTK.Graphics.Wgl - commentId: N:OpenTK.Graphics.Wgl - href: OpenTK.html - name: OpenTK.Graphics.Wgl - nameWithType: OpenTK.Graphics.Wgl - fullName: OpenTK.Graphics.Wgl - spec.csharp: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Wgl - name: Wgl - href: OpenTK.Graphics.Wgl.html - spec.vb: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Wgl - name: Wgl - href: OpenTK.Graphics.Wgl.html -- uid: OpenTK.Graphics.Wgl.VideoCaptureDeviceAttribute - commentId: T:OpenTK.Graphics.Wgl.VideoCaptureDeviceAttribute - parent: OpenTK.Graphics.Wgl - href: OpenTK.Graphics.Wgl.VideoCaptureDeviceAttribute.html - name: VideoCaptureDeviceAttribute - nameWithType: VideoCaptureDeviceAttribute - fullName: OpenTK.Graphics.Wgl.VideoCaptureDeviceAttribute diff --git a/api/OpenTK.Graphics.Wgl.VideoOutputBuffer.yml b/api/OpenTK.Graphics.Wgl.VideoOutputBuffer.yml deleted file mode 100644 index d959d542..00000000 --- a/api/OpenTK.Graphics.Wgl.VideoOutputBuffer.yml +++ /dev/null @@ -1,271 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: OpenTK.Graphics.Wgl.VideoOutputBuffer - commentId: T:OpenTK.Graphics.Wgl.VideoOutputBuffer - id: VideoOutputBuffer - parent: OpenTK.Graphics.Wgl - children: - - OpenTK.Graphics.Wgl.VideoOutputBuffer.VideoOutAlphaNv - - OpenTK.Graphics.Wgl.VideoOutputBuffer.VideoOutColorAndAlphaNv - - OpenTK.Graphics.Wgl.VideoOutputBuffer.VideoOutColorAndDepthNv - - OpenTK.Graphics.Wgl.VideoOutputBuffer.VideoOutColorNv - - OpenTK.Graphics.Wgl.VideoOutputBuffer.VideoOutDepthNv - langs: - - csharp - - vb - name: VideoOutputBuffer - nameWithType: VideoOutputBuffer - fullName: OpenTK.Graphics.Wgl.VideoOutputBuffer - type: Enum - source: - id: VideoOutputBuffer - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 629 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: Used in , - example: [] - syntax: - content: 'public enum VideoOutputBuffer : uint' - content.vb: Public Enum VideoOutputBuffer As UInteger -- uid: OpenTK.Graphics.Wgl.VideoOutputBuffer.VideoOutColorNv - commentId: F:OpenTK.Graphics.Wgl.VideoOutputBuffer.VideoOutColorNv - id: VideoOutColorNv - parent: OpenTK.Graphics.Wgl.VideoOutputBuffer - langs: - - csharp - - vb - name: VideoOutColorNv - nameWithType: VideoOutputBuffer.VideoOutColorNv - fullName: OpenTK.Graphics.Wgl.VideoOutputBuffer.VideoOutColorNv - type: Field - source: - id: VideoOutColorNv - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 631 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: VideoOutColorNv = 8387 - return: - type: OpenTK.Graphics.Wgl.VideoOutputBuffer -- uid: OpenTK.Graphics.Wgl.VideoOutputBuffer.VideoOutAlphaNv - commentId: F:OpenTK.Graphics.Wgl.VideoOutputBuffer.VideoOutAlphaNv - id: VideoOutAlphaNv - parent: OpenTK.Graphics.Wgl.VideoOutputBuffer - langs: - - csharp - - vb - name: VideoOutAlphaNv - nameWithType: VideoOutputBuffer.VideoOutAlphaNv - fullName: OpenTK.Graphics.Wgl.VideoOutputBuffer.VideoOutAlphaNv - type: Field - source: - id: VideoOutAlphaNv - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 632 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: VideoOutAlphaNv = 8388 - return: - type: OpenTK.Graphics.Wgl.VideoOutputBuffer -- uid: OpenTK.Graphics.Wgl.VideoOutputBuffer.VideoOutDepthNv - commentId: F:OpenTK.Graphics.Wgl.VideoOutputBuffer.VideoOutDepthNv - id: VideoOutDepthNv - parent: OpenTK.Graphics.Wgl.VideoOutputBuffer - langs: - - csharp - - vb - name: VideoOutDepthNv - nameWithType: VideoOutputBuffer.VideoOutDepthNv - fullName: OpenTK.Graphics.Wgl.VideoOutputBuffer.VideoOutDepthNv - type: Field - source: - id: VideoOutDepthNv - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 633 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: VideoOutDepthNv = 8389 - return: - type: OpenTK.Graphics.Wgl.VideoOutputBuffer -- uid: OpenTK.Graphics.Wgl.VideoOutputBuffer.VideoOutColorAndAlphaNv - commentId: F:OpenTK.Graphics.Wgl.VideoOutputBuffer.VideoOutColorAndAlphaNv - id: VideoOutColorAndAlphaNv - parent: OpenTK.Graphics.Wgl.VideoOutputBuffer - langs: - - csharp - - vb - name: VideoOutColorAndAlphaNv - nameWithType: VideoOutputBuffer.VideoOutColorAndAlphaNv - fullName: OpenTK.Graphics.Wgl.VideoOutputBuffer.VideoOutColorAndAlphaNv - type: Field - source: - id: VideoOutColorAndAlphaNv - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 634 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: VideoOutColorAndAlphaNv = 8390 - return: - type: OpenTK.Graphics.Wgl.VideoOutputBuffer -- uid: OpenTK.Graphics.Wgl.VideoOutputBuffer.VideoOutColorAndDepthNv - commentId: F:OpenTK.Graphics.Wgl.VideoOutputBuffer.VideoOutColorAndDepthNv - id: VideoOutColorAndDepthNv - parent: OpenTK.Graphics.Wgl.VideoOutputBuffer - langs: - - csharp - - vb - name: VideoOutColorAndDepthNv - nameWithType: VideoOutputBuffer.VideoOutColorAndDepthNv - fullName: OpenTK.Graphics.Wgl.VideoOutputBuffer.VideoOutColorAndDepthNv - type: Field - source: - id: VideoOutColorAndDepthNv - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 635 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: VideoOutColorAndDepthNv = 8391 - return: - type: OpenTK.Graphics.Wgl.VideoOutputBuffer -references: -- uid: OpenTK.Graphics.Wgl.Wgl.NV.BindVideoImageNV(System.IntPtr,System.IntPtr,OpenTK.Graphics.Wgl.VideoOutputBuffer) - commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.BindVideoImageNV(System.IntPtr,System.IntPtr,OpenTK.Graphics.Wgl.VideoOutputBuffer) - isExternal: true - href: OpenTK.Graphics.Wgl.Wgl.NV.html#OpenTK_Graphics_Wgl_Wgl_NV_BindVideoImageNV_System_IntPtr_System_IntPtr_OpenTK_Graphics_Wgl_VideoOutputBuffer_ - name: BindVideoImageNV(nint, nint, VideoOutputBuffer) - nameWithType: Wgl.NV.BindVideoImageNV(nint, nint, VideoOutputBuffer) - fullName: OpenTK.Graphics.Wgl.Wgl.NV.BindVideoImageNV(nint, nint, OpenTK.Graphics.Wgl.VideoOutputBuffer) - nameWithType.vb: Wgl.NV.BindVideoImageNV(IntPtr, IntPtr, VideoOutputBuffer) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.BindVideoImageNV(System.IntPtr, System.IntPtr, OpenTK.Graphics.Wgl.VideoOutputBuffer) - name.vb: BindVideoImageNV(IntPtr, IntPtr, VideoOutputBuffer) - spec.csharp: - - uid: OpenTK.Graphics.Wgl.Wgl.NV.BindVideoImageNV(System.IntPtr,System.IntPtr,OpenTK.Graphics.Wgl.VideoOutputBuffer) - name: BindVideoImageNV - href: OpenTK.Graphics.Wgl.Wgl.NV.html#OpenTK_Graphics_Wgl_Wgl_NV_BindVideoImageNV_System_IntPtr_System_IntPtr_OpenTK_Graphics_Wgl_VideoOutputBuffer_ - - name: ( - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: OpenTK.Graphics.Wgl.VideoOutputBuffer - name: VideoOutputBuffer - href: OpenTK.Graphics.Wgl.VideoOutputBuffer.html - - name: ) - spec.vb: - - uid: OpenTK.Graphics.Wgl.Wgl.NV.BindVideoImageNV(System.IntPtr,System.IntPtr,OpenTK.Graphics.Wgl.VideoOutputBuffer) - name: BindVideoImageNV - href: OpenTK.Graphics.Wgl.Wgl.NV.html#OpenTK_Graphics_Wgl_Wgl_NV_BindVideoImageNV_System_IntPtr_System_IntPtr_OpenTK_Graphics_Wgl_VideoOutputBuffer_ - - name: ( - - uid: System.IntPtr - name: IntPtr - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.IntPtr - name: IntPtr - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: OpenTK.Graphics.Wgl.VideoOutputBuffer - name: VideoOutputBuffer - href: OpenTK.Graphics.Wgl.VideoOutputBuffer.html - - name: ) -- uid: OpenTK.Graphics.Wgl.Wgl.NV.ReleaseVideoImageNV(System.IntPtr,OpenTK.Graphics.Wgl.VideoOutputBuffer) - commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.ReleaseVideoImageNV(System.IntPtr,OpenTK.Graphics.Wgl.VideoOutputBuffer) - isExternal: true - href: OpenTK.Graphics.Wgl.Wgl.NV.html#OpenTK_Graphics_Wgl_Wgl_NV_ReleaseVideoImageNV_System_IntPtr_OpenTK_Graphics_Wgl_VideoOutputBuffer_ - name: ReleaseVideoImageNV(nint, VideoOutputBuffer) - nameWithType: Wgl.NV.ReleaseVideoImageNV(nint, VideoOutputBuffer) - fullName: OpenTK.Graphics.Wgl.Wgl.NV.ReleaseVideoImageNV(nint, OpenTK.Graphics.Wgl.VideoOutputBuffer) - nameWithType.vb: Wgl.NV.ReleaseVideoImageNV(IntPtr, VideoOutputBuffer) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.ReleaseVideoImageNV(System.IntPtr, OpenTK.Graphics.Wgl.VideoOutputBuffer) - name.vb: ReleaseVideoImageNV(IntPtr, VideoOutputBuffer) - spec.csharp: - - uid: OpenTK.Graphics.Wgl.Wgl.NV.ReleaseVideoImageNV(System.IntPtr,OpenTK.Graphics.Wgl.VideoOutputBuffer) - name: ReleaseVideoImageNV - href: OpenTK.Graphics.Wgl.Wgl.NV.html#OpenTK_Graphics_Wgl_Wgl_NV_ReleaseVideoImageNV_System_IntPtr_OpenTK_Graphics_Wgl_VideoOutputBuffer_ - - name: ( - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: OpenTK.Graphics.Wgl.VideoOutputBuffer - name: VideoOutputBuffer - href: OpenTK.Graphics.Wgl.VideoOutputBuffer.html - - name: ) - spec.vb: - - uid: OpenTK.Graphics.Wgl.Wgl.NV.ReleaseVideoImageNV(System.IntPtr,OpenTK.Graphics.Wgl.VideoOutputBuffer) - name: ReleaseVideoImageNV - href: OpenTK.Graphics.Wgl.Wgl.NV.html#OpenTK_Graphics_Wgl_Wgl_NV_ReleaseVideoImageNV_System_IntPtr_OpenTK_Graphics_Wgl_VideoOutputBuffer_ - - name: ( - - uid: System.IntPtr - name: IntPtr - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: OpenTK.Graphics.Wgl.VideoOutputBuffer - name: VideoOutputBuffer - href: OpenTK.Graphics.Wgl.VideoOutputBuffer.html - - name: ) -- uid: OpenTK.Graphics.Wgl - commentId: N:OpenTK.Graphics.Wgl - href: OpenTK.html - name: OpenTK.Graphics.Wgl - nameWithType: OpenTK.Graphics.Wgl - fullName: OpenTK.Graphics.Wgl - spec.csharp: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Wgl - name: Wgl - href: OpenTK.Graphics.Wgl.html - spec.vb: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Wgl - name: Wgl - href: OpenTK.Graphics.Wgl.html -- uid: OpenTK.Graphics.Wgl.VideoOutputBuffer - commentId: T:OpenTK.Graphics.Wgl.VideoOutputBuffer - parent: OpenTK.Graphics.Wgl - href: OpenTK.Graphics.Wgl.VideoOutputBuffer.html - name: VideoOutputBuffer - nameWithType: VideoOutputBuffer - fullName: OpenTK.Graphics.Wgl.VideoOutputBuffer diff --git a/api/OpenTK.Graphics.Wgl.VideoOutputBufferType.yml b/api/OpenTK.Graphics.Wgl.VideoOutputBufferType.yml deleted file mode 100644 index af9601f6..00000000 --- a/api/OpenTK.Graphics.Wgl.VideoOutputBufferType.yml +++ /dev/null @@ -1,245 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: OpenTK.Graphics.Wgl.VideoOutputBufferType - commentId: T:OpenTK.Graphics.Wgl.VideoOutputBufferType - id: VideoOutputBufferType - parent: OpenTK.Graphics.Wgl - children: - - OpenTK.Graphics.Wgl.VideoOutputBufferType.VideoOutField1 - - OpenTK.Graphics.Wgl.VideoOutputBufferType.VideoOutField2 - - OpenTK.Graphics.Wgl.VideoOutputBufferType.VideoOutFrame - - OpenTK.Graphics.Wgl.VideoOutputBufferType.VideoOutStackedFields12 - - OpenTK.Graphics.Wgl.VideoOutputBufferType.VideoOutStackedFields21 - langs: - - csharp - - vb - name: VideoOutputBufferType - nameWithType: VideoOutputBufferType - fullName: OpenTK.Graphics.Wgl.VideoOutputBufferType - type: Enum - source: - id: VideoOutputBufferType - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 638 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: Used in - example: [] - syntax: - content: 'public enum VideoOutputBufferType : uint' - content.vb: Public Enum VideoOutputBufferType As UInteger -- uid: OpenTK.Graphics.Wgl.VideoOutputBufferType.VideoOutFrame - commentId: F:OpenTK.Graphics.Wgl.VideoOutputBufferType.VideoOutFrame - id: VideoOutFrame - parent: OpenTK.Graphics.Wgl.VideoOutputBufferType - langs: - - csharp - - vb - name: VideoOutFrame - nameWithType: VideoOutputBufferType.VideoOutFrame - fullName: OpenTK.Graphics.Wgl.VideoOutputBufferType.VideoOutFrame - type: Field - source: - id: VideoOutFrame - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 640 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: VideoOutFrame = 8392 - return: - type: OpenTK.Graphics.Wgl.VideoOutputBufferType -- uid: OpenTK.Graphics.Wgl.VideoOutputBufferType.VideoOutField1 - commentId: F:OpenTK.Graphics.Wgl.VideoOutputBufferType.VideoOutField1 - id: VideoOutField1 - parent: OpenTK.Graphics.Wgl.VideoOutputBufferType - langs: - - csharp - - vb - name: VideoOutField1 - nameWithType: VideoOutputBufferType.VideoOutField1 - fullName: OpenTK.Graphics.Wgl.VideoOutputBufferType.VideoOutField1 - type: Field - source: - id: VideoOutField1 - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 641 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: VideoOutField1 = 8393 - return: - type: OpenTK.Graphics.Wgl.VideoOutputBufferType -- uid: OpenTK.Graphics.Wgl.VideoOutputBufferType.VideoOutField2 - commentId: F:OpenTK.Graphics.Wgl.VideoOutputBufferType.VideoOutField2 - id: VideoOutField2 - parent: OpenTK.Graphics.Wgl.VideoOutputBufferType - langs: - - csharp - - vb - name: VideoOutField2 - nameWithType: VideoOutputBufferType.VideoOutField2 - fullName: OpenTK.Graphics.Wgl.VideoOutputBufferType.VideoOutField2 - type: Field - source: - id: VideoOutField2 - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 642 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: VideoOutField2 = 8394 - return: - type: OpenTK.Graphics.Wgl.VideoOutputBufferType -- uid: OpenTK.Graphics.Wgl.VideoOutputBufferType.VideoOutStackedFields12 - commentId: F:OpenTK.Graphics.Wgl.VideoOutputBufferType.VideoOutStackedFields12 - id: VideoOutStackedFields12 - parent: OpenTK.Graphics.Wgl.VideoOutputBufferType - langs: - - csharp - - vb - name: VideoOutStackedFields12 - nameWithType: VideoOutputBufferType.VideoOutStackedFields12 - fullName: OpenTK.Graphics.Wgl.VideoOutputBufferType.VideoOutStackedFields12 - type: Field - source: - id: VideoOutStackedFields12 - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 643 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: VideoOutStackedFields12 = 8395 - return: - type: OpenTK.Graphics.Wgl.VideoOutputBufferType -- uid: OpenTK.Graphics.Wgl.VideoOutputBufferType.VideoOutStackedFields21 - commentId: F:OpenTK.Graphics.Wgl.VideoOutputBufferType.VideoOutStackedFields21 - id: VideoOutStackedFields21 - parent: OpenTK.Graphics.Wgl.VideoOutputBufferType - langs: - - csharp - - vb - name: VideoOutStackedFields21 - nameWithType: VideoOutputBufferType.VideoOutStackedFields21 - fullName: OpenTK.Graphics.Wgl.VideoOutputBufferType.VideoOutStackedFields21 - type: Field - source: - id: VideoOutStackedFields21 - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\Enums.cs - startLine: 644 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: VideoOutStackedFields21 = 8396 - return: - type: OpenTK.Graphics.Wgl.VideoOutputBufferType -references: -- uid: OpenTK.Graphics.Wgl.Wgl.NV.SendPbufferToVideoNV(System.IntPtr,OpenTK.Graphics.Wgl.VideoOutputBufferType,System.UInt64*,System.Int32) - commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.SendPbufferToVideoNV(System.IntPtr,OpenTK.Graphics.Wgl.VideoOutputBufferType,System.UInt64*,System.Int32) - isExternal: true - href: OpenTK.Graphics.Wgl.Wgl.NV.html#OpenTK_Graphics_Wgl_Wgl_NV_SendPbufferToVideoNV_System_IntPtr_OpenTK_Graphics_Wgl_VideoOutputBufferType_System_UInt64__System_Int32_ - name: SendPbufferToVideoNV(nint, VideoOutputBufferType, ulong*, int) - nameWithType: Wgl.NV.SendPbufferToVideoNV(nint, VideoOutputBufferType, ulong*, int) - fullName: OpenTK.Graphics.Wgl.Wgl.NV.SendPbufferToVideoNV(nint, OpenTK.Graphics.Wgl.VideoOutputBufferType, ulong*, int) - nameWithType.vb: Wgl.NV.SendPbufferToVideoNV(IntPtr, VideoOutputBufferType, ULong*, Integer) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.SendPbufferToVideoNV(System.IntPtr, OpenTK.Graphics.Wgl.VideoOutputBufferType, ULong*, Integer) - name.vb: SendPbufferToVideoNV(IntPtr, VideoOutputBufferType, ULong*, Integer) - spec.csharp: - - uid: OpenTK.Graphics.Wgl.Wgl.NV.SendPbufferToVideoNV(System.IntPtr,OpenTK.Graphics.Wgl.VideoOutputBufferType,System.UInt64*,System.Int32) - name: SendPbufferToVideoNV - href: OpenTK.Graphics.Wgl.Wgl.NV.html#OpenTK_Graphics_Wgl_Wgl_NV_SendPbufferToVideoNV_System_IntPtr_OpenTK_Graphics_Wgl_VideoOutputBufferType_System_UInt64__System_Int32_ - - name: ( - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: OpenTK.Graphics.Wgl.VideoOutputBufferType - name: VideoOutputBufferType - href: OpenTK.Graphics.Wgl.VideoOutputBufferType.html - - name: ',' - - name: " " - - uid: System.UInt64 - name: ulong - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint64 - - name: '*' - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) - spec.vb: - - uid: OpenTK.Graphics.Wgl.Wgl.NV.SendPbufferToVideoNV(System.IntPtr,OpenTK.Graphics.Wgl.VideoOutputBufferType,System.UInt64*,System.Int32) - name: SendPbufferToVideoNV - href: OpenTK.Graphics.Wgl.Wgl.NV.html#OpenTK_Graphics_Wgl_Wgl_NV_SendPbufferToVideoNV_System_IntPtr_OpenTK_Graphics_Wgl_VideoOutputBufferType_System_UInt64__System_Int32_ - - name: ( - - uid: System.IntPtr - name: IntPtr - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: OpenTK.Graphics.Wgl.VideoOutputBufferType - name: VideoOutputBufferType - href: OpenTK.Graphics.Wgl.VideoOutputBufferType.html - - name: ',' - - name: " " - - uid: System.UInt64 - name: ULong - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint64 - - name: '*' - - name: ',' - - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) -- uid: OpenTK.Graphics.Wgl - commentId: N:OpenTK.Graphics.Wgl - href: OpenTK.html - name: OpenTK.Graphics.Wgl - nameWithType: OpenTK.Graphics.Wgl - fullName: OpenTK.Graphics.Wgl - spec.csharp: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Wgl - name: Wgl - href: OpenTK.Graphics.Wgl.html - spec.vb: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Wgl - name: Wgl - href: OpenTK.Graphics.Wgl.html -- uid: OpenTK.Graphics.Wgl.VideoOutputBufferType - commentId: T:OpenTK.Graphics.Wgl.VideoOutputBufferType - parent: OpenTK.Graphics.Wgl - href: OpenTK.Graphics.Wgl.VideoOutputBufferType.html - name: VideoOutputBufferType - nameWithType: VideoOutputBufferType - fullName: OpenTK.Graphics.Wgl.VideoOutputBufferType diff --git a/api/OpenTK.Graphics.Wgl.Wgl.AMD.yml b/api/OpenTK.Graphics.Wgl.Wgl.AMD.yml deleted file mode 100644 index 2128ee84..00000000 --- a/api/OpenTK.Graphics.Wgl.Wgl.AMD.yml +++ /dev/null @@ -1,1630 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: OpenTK.Graphics.Wgl.Wgl.AMD - commentId: T:OpenTK.Graphics.Wgl.Wgl.AMD - id: Wgl.AMD - parent: OpenTK.Graphics.Wgl - children: - - OpenTK.Graphics.Wgl.Wgl.AMD.BlitContextFramebufferAMD(System.IntPtr,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,OpenTK.Graphics.OpenGL.ClearBufferMask,OpenTK.Graphics.Wgl.All) - - OpenTK.Graphics.Wgl.Wgl.AMD.CreateAssociatedContextAMD(System.UInt32) - - OpenTK.Graphics.Wgl.Wgl.AMD.CreateAssociatedContextAttribsAMD(System.UInt32,System.IntPtr,System.Int32*) - - OpenTK.Graphics.Wgl.Wgl.AMD.CreateAssociatedContextAttribsAMD(System.UInt32,System.IntPtr,System.Int32@) - - OpenTK.Graphics.Wgl.Wgl.AMD.CreateAssociatedContextAttribsAMD(System.UInt32,System.IntPtr,System.Int32[]) - - OpenTK.Graphics.Wgl.Wgl.AMD.CreateAssociatedContextAttribsAMD(System.UInt32,System.IntPtr,System.ReadOnlySpan{System.Int32}) - - OpenTK.Graphics.Wgl.Wgl.AMD.DeleteAssociatedContextAMD(System.IntPtr) - - OpenTK.Graphics.Wgl.Wgl.AMD.DeleteAssociatedContextAMD_(System.IntPtr) - - OpenTK.Graphics.Wgl.Wgl.AMD.GetContextGPUIDAMD(System.IntPtr) - - OpenTK.Graphics.Wgl.Wgl.AMD.GetCurrentAssociatedContextAMD - - OpenTK.Graphics.Wgl.Wgl.AMD.GetGPUIDsAMD(System.UInt32,System.Span{System.UInt32}) - - OpenTK.Graphics.Wgl.Wgl.AMD.GetGPUIDsAMD(System.UInt32,System.UInt32*) - - OpenTK.Graphics.Wgl.Wgl.AMD.GetGPUIDsAMD(System.UInt32,System.UInt32@) - - OpenTK.Graphics.Wgl.Wgl.AMD.GetGPUIDsAMD(System.UInt32,System.UInt32[]) - - OpenTK.Graphics.Wgl.Wgl.AMD.GetGPUInfoAMD(System.UInt32,OpenTK.Graphics.Wgl.GPUPropertyAMD,OpenTK.Graphics.OpenGL.ScalarType,System.UInt32,System.IntPtr) - - OpenTK.Graphics.Wgl.Wgl.AMD.GetGPUInfoAMD(System.UInt32,OpenTK.Graphics.Wgl.GPUPropertyAMD,OpenTK.Graphics.OpenGL.ScalarType,System.UInt32,System.Void*) - - OpenTK.Graphics.Wgl.Wgl.AMD.GetGPUInfoAMD``1(System.UInt32,OpenTK.Graphics.Wgl.GPUPropertyAMD,OpenTK.Graphics.OpenGL.ScalarType,System.UInt32,System.Span{``0}) - - OpenTK.Graphics.Wgl.Wgl.AMD.GetGPUInfoAMD``1(System.UInt32,OpenTK.Graphics.Wgl.GPUPropertyAMD,OpenTK.Graphics.OpenGL.ScalarType,System.UInt32,``0@) - - OpenTK.Graphics.Wgl.Wgl.AMD.GetGPUInfoAMD``1(System.UInt32,OpenTK.Graphics.Wgl.GPUPropertyAMD,OpenTK.Graphics.OpenGL.ScalarType,System.UInt32,``0[]) - - OpenTK.Graphics.Wgl.Wgl.AMD.MakeAssociatedContextCurrentAMD(System.IntPtr) - - OpenTK.Graphics.Wgl.Wgl.AMD.MakeAssociatedContextCurrentAMD_(System.IntPtr) - langs: - - csharp - - vb - name: Wgl.AMD - nameWithType: Wgl.AMD - fullName: OpenTK.Graphics.Wgl.Wgl.AMD - type: Class - source: - id: AMD - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 265 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: AMD extensions. - example: [] - syntax: - content: public static class Wgl.AMD - content.vb: Public Module Wgl.AMD - inheritance: - - System.Object - inheritedMembers: - - System.Object.Equals(System.Object) - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetHashCode - - System.Object.GetType - - System.Object.MemberwiseClone - - System.Object.ReferenceEquals(System.Object,System.Object) - - System.Object.ToString -- uid: OpenTK.Graphics.Wgl.Wgl.AMD.BlitContextFramebufferAMD(System.IntPtr,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,OpenTK.Graphics.OpenGL.ClearBufferMask,OpenTK.Graphics.Wgl.All) - commentId: M:OpenTK.Graphics.Wgl.Wgl.AMD.BlitContextFramebufferAMD(System.IntPtr,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,OpenTK.Graphics.OpenGL.ClearBufferMask,OpenTK.Graphics.Wgl.All) - id: BlitContextFramebufferAMD(System.IntPtr,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,OpenTK.Graphics.OpenGL.ClearBufferMask,OpenTK.Graphics.Wgl.All) - parent: OpenTK.Graphics.Wgl.Wgl.AMD - langs: - - csharp - - vb - name: BlitContextFramebufferAMD(nint, int, int, int, int, int, int, int, int, ClearBufferMask, All) - nameWithType: Wgl.AMD.BlitContextFramebufferAMD(nint, int, int, int, int, int, int, int, int, ClearBufferMask, All) - fullName: OpenTK.Graphics.Wgl.Wgl.AMD.BlitContextFramebufferAMD(nint, int, int, int, int, int, int, int, int, OpenTK.Graphics.OpenGL.ClearBufferMask, OpenTK.Graphics.Wgl.All) - type: Method - source: - id: BlitContextFramebufferAMD - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs - startLine: 100 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_AMD_gpu_association] - - [entry point: wglBlitContextFramebufferAMD] - -
- example: [] - syntax: - content: public static void BlitContextFramebufferAMD(nint dstCtx, int srcX0, int srcY0, int srcX1, int srcY1, int dstX0, int dstY0, int dstX1, int dstY1, ClearBufferMask mask, All filter) - parameters: - - id: dstCtx - type: System.IntPtr - - id: srcX0 - type: System.Int32 - - id: srcY0 - type: System.Int32 - - id: srcX1 - type: System.Int32 - - id: srcY1 - type: System.Int32 - - id: dstX0 - type: System.Int32 - - id: dstY0 - type: System.Int32 - - id: dstX1 - type: System.Int32 - - id: dstY1 - type: System.Int32 - - id: mask - type: OpenTK.Graphics.OpenGL.ClearBufferMask - - id: filter - type: OpenTK.Graphics.Wgl.All - content.vb: Public Shared Sub BlitContextFramebufferAMD(dstCtx As IntPtr, srcX0 As Integer, srcY0 As Integer, srcX1 As Integer, srcY1 As Integer, dstX0 As Integer, dstY0 As Integer, dstX1 As Integer, dstY1 As Integer, mask As ClearBufferMask, filter As All) - overload: OpenTK.Graphics.Wgl.Wgl.AMD.BlitContextFramebufferAMD* - nameWithType.vb: Wgl.AMD.BlitContextFramebufferAMD(IntPtr, Integer, Integer, Integer, Integer, Integer, Integer, Integer, Integer, ClearBufferMask, All) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.AMD.BlitContextFramebufferAMD(System.IntPtr, Integer, Integer, Integer, Integer, Integer, Integer, Integer, Integer, OpenTK.Graphics.OpenGL.ClearBufferMask, OpenTK.Graphics.Wgl.All) - name.vb: BlitContextFramebufferAMD(IntPtr, Integer, Integer, Integer, Integer, Integer, Integer, Integer, Integer, ClearBufferMask, All) -- uid: OpenTK.Graphics.Wgl.Wgl.AMD.CreateAssociatedContextAMD(System.UInt32) - commentId: M:OpenTK.Graphics.Wgl.Wgl.AMD.CreateAssociatedContextAMD(System.UInt32) - id: CreateAssociatedContextAMD(System.UInt32) - parent: OpenTK.Graphics.Wgl.Wgl.AMD - langs: - - csharp - - vb - name: CreateAssociatedContextAMD(uint) - nameWithType: Wgl.AMD.CreateAssociatedContextAMD(uint) - fullName: OpenTK.Graphics.Wgl.Wgl.AMD.CreateAssociatedContextAMD(uint) - type: Method - source: - id: CreateAssociatedContextAMD - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs - startLine: 103 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_AMD_gpu_association] - - [entry point: wglCreateAssociatedContextAMD] - -
- example: [] - syntax: - content: public static nint CreateAssociatedContextAMD(uint id) - parameters: - - id: id - type: System.UInt32 - return: - type: System.IntPtr - content.vb: Public Shared Function CreateAssociatedContextAMD(id As UInteger) As IntPtr - overload: OpenTK.Graphics.Wgl.Wgl.AMD.CreateAssociatedContextAMD* - nameWithType.vb: Wgl.AMD.CreateAssociatedContextAMD(UInteger) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.AMD.CreateAssociatedContextAMD(UInteger) - name.vb: CreateAssociatedContextAMD(UInteger) -- uid: OpenTK.Graphics.Wgl.Wgl.AMD.CreateAssociatedContextAttribsAMD(System.UInt32,System.IntPtr,System.Int32*) - commentId: M:OpenTK.Graphics.Wgl.Wgl.AMD.CreateAssociatedContextAttribsAMD(System.UInt32,System.IntPtr,System.Int32*) - id: CreateAssociatedContextAttribsAMD(System.UInt32,System.IntPtr,System.Int32*) - parent: OpenTK.Graphics.Wgl.Wgl.AMD - langs: - - csharp - - vb - name: CreateAssociatedContextAttribsAMD(uint, nint, int*) - nameWithType: Wgl.AMD.CreateAssociatedContextAttribsAMD(uint, nint, int*) - fullName: OpenTK.Graphics.Wgl.Wgl.AMD.CreateAssociatedContextAttribsAMD(uint, nint, int*) - type: Method - source: - id: CreateAssociatedContextAttribsAMD - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs - startLine: 106 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_AMD_gpu_association] - - [entry point: wglCreateAssociatedContextAttribsAMD] - -
- example: [] - syntax: - content: public static nint CreateAssociatedContextAttribsAMD(uint id, nint hShareContext, int* attribList) - parameters: - - id: id - type: System.UInt32 - - id: hShareContext - type: System.IntPtr - - id: attribList - type: System.Int32* - return: - type: System.IntPtr - content.vb: Public Shared Function CreateAssociatedContextAttribsAMD(id As UInteger, hShareContext As IntPtr, attribList As Integer*) As IntPtr - overload: OpenTK.Graphics.Wgl.Wgl.AMD.CreateAssociatedContextAttribsAMD* - nameWithType.vb: Wgl.AMD.CreateAssociatedContextAttribsAMD(UInteger, IntPtr, Integer*) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.AMD.CreateAssociatedContextAttribsAMD(UInteger, System.IntPtr, Integer*) - name.vb: CreateAssociatedContextAttribsAMD(UInteger, IntPtr, Integer*) -- uid: OpenTK.Graphics.Wgl.Wgl.AMD.DeleteAssociatedContextAMD_(System.IntPtr) - commentId: M:OpenTK.Graphics.Wgl.Wgl.AMD.DeleteAssociatedContextAMD_(System.IntPtr) - id: DeleteAssociatedContextAMD_(System.IntPtr) - parent: OpenTK.Graphics.Wgl.Wgl.AMD - langs: - - csharp - - vb - name: DeleteAssociatedContextAMD_(nint) - nameWithType: Wgl.AMD.DeleteAssociatedContextAMD_(nint) - fullName: OpenTK.Graphics.Wgl.Wgl.AMD.DeleteAssociatedContextAMD_(nint) - type: Method - source: - id: DeleteAssociatedContextAMD_ - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs - startLine: 109 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_AMD_gpu_association] - - [entry point: wglDeleteAssociatedContextAMD] - -
- example: [] - syntax: - content: public static int DeleteAssociatedContextAMD_(nint hglrc) - parameters: - - id: hglrc - type: System.IntPtr - return: - type: System.Int32 - content.vb: Public Shared Function DeleteAssociatedContextAMD_(hglrc As IntPtr) As Integer - overload: OpenTK.Graphics.Wgl.Wgl.AMD.DeleteAssociatedContextAMD_* - nameWithType.vb: Wgl.AMD.DeleteAssociatedContextAMD_(IntPtr) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.AMD.DeleteAssociatedContextAMD_(System.IntPtr) - name.vb: DeleteAssociatedContextAMD_(IntPtr) -- uid: OpenTK.Graphics.Wgl.Wgl.AMD.GetContextGPUIDAMD(System.IntPtr) - commentId: M:OpenTK.Graphics.Wgl.Wgl.AMD.GetContextGPUIDAMD(System.IntPtr) - id: GetContextGPUIDAMD(System.IntPtr) - parent: OpenTK.Graphics.Wgl.Wgl.AMD - langs: - - csharp - - vb - name: GetContextGPUIDAMD(nint) - nameWithType: Wgl.AMD.GetContextGPUIDAMD(nint) - fullName: OpenTK.Graphics.Wgl.Wgl.AMD.GetContextGPUIDAMD(nint) - type: Method - source: - id: GetContextGPUIDAMD - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs - startLine: 112 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_AMD_gpu_association] - - [entry point: wglGetContextGPUIDAMD] - -
- example: [] - syntax: - content: public static uint GetContextGPUIDAMD(nint hglrc) - parameters: - - id: hglrc - type: System.IntPtr - return: - type: System.UInt32 - content.vb: Public Shared Function GetContextGPUIDAMD(hglrc As IntPtr) As UInteger - overload: OpenTK.Graphics.Wgl.Wgl.AMD.GetContextGPUIDAMD* - nameWithType.vb: Wgl.AMD.GetContextGPUIDAMD(IntPtr) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.AMD.GetContextGPUIDAMD(System.IntPtr) - name.vb: GetContextGPUIDAMD(IntPtr) -- uid: OpenTK.Graphics.Wgl.Wgl.AMD.GetCurrentAssociatedContextAMD - commentId: M:OpenTK.Graphics.Wgl.Wgl.AMD.GetCurrentAssociatedContextAMD - id: GetCurrentAssociatedContextAMD - parent: OpenTK.Graphics.Wgl.Wgl.AMD - langs: - - csharp - - vb - name: GetCurrentAssociatedContextAMD() - nameWithType: Wgl.AMD.GetCurrentAssociatedContextAMD() - fullName: OpenTK.Graphics.Wgl.Wgl.AMD.GetCurrentAssociatedContextAMD() - type: Method - source: - id: GetCurrentAssociatedContextAMD - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs - startLine: 115 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_AMD_gpu_association] - - [entry point: wglGetCurrentAssociatedContextAMD] - -
- example: [] - syntax: - content: public static nint GetCurrentAssociatedContextAMD() - return: - type: System.IntPtr - content.vb: Public Shared Function GetCurrentAssociatedContextAMD() As IntPtr - overload: OpenTK.Graphics.Wgl.Wgl.AMD.GetCurrentAssociatedContextAMD* -- uid: OpenTK.Graphics.Wgl.Wgl.AMD.GetGPUIDsAMD(System.UInt32,System.UInt32*) - commentId: M:OpenTK.Graphics.Wgl.Wgl.AMD.GetGPUIDsAMD(System.UInt32,System.UInt32*) - id: GetGPUIDsAMD(System.UInt32,System.UInt32*) - parent: OpenTK.Graphics.Wgl.Wgl.AMD - langs: - - csharp - - vb - name: GetGPUIDsAMD(uint, uint*) - nameWithType: Wgl.AMD.GetGPUIDsAMD(uint, uint*) - fullName: OpenTK.Graphics.Wgl.Wgl.AMD.GetGPUIDsAMD(uint, uint*) - type: Method - source: - id: GetGPUIDsAMD - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs - startLine: 118 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_AMD_gpu_association] - - [entry point: wglGetGPUIDsAMD] - -
- example: [] - syntax: - content: public static uint GetGPUIDsAMD(uint maxCount, uint* ids) - parameters: - - id: maxCount - type: System.UInt32 - - id: ids - type: System.UInt32* - return: - type: System.UInt32 - content.vb: Public Shared Function GetGPUIDsAMD(maxCount As UInteger, ids As UInteger*) As UInteger - overload: OpenTK.Graphics.Wgl.Wgl.AMD.GetGPUIDsAMD* - nameWithType.vb: Wgl.AMD.GetGPUIDsAMD(UInteger, UInteger*) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.AMD.GetGPUIDsAMD(UInteger, UInteger*) - name.vb: GetGPUIDsAMD(UInteger, UInteger*) -- uid: OpenTK.Graphics.Wgl.Wgl.AMD.GetGPUInfoAMD(System.UInt32,OpenTK.Graphics.Wgl.GPUPropertyAMD,OpenTK.Graphics.OpenGL.ScalarType,System.UInt32,System.Void*) - commentId: M:OpenTK.Graphics.Wgl.Wgl.AMD.GetGPUInfoAMD(System.UInt32,OpenTK.Graphics.Wgl.GPUPropertyAMD,OpenTK.Graphics.OpenGL.ScalarType,System.UInt32,System.Void*) - id: GetGPUInfoAMD(System.UInt32,OpenTK.Graphics.Wgl.GPUPropertyAMD,OpenTK.Graphics.OpenGL.ScalarType,System.UInt32,System.Void*) - parent: OpenTK.Graphics.Wgl.Wgl.AMD - langs: - - csharp - - vb - name: GetGPUInfoAMD(uint, GPUPropertyAMD, ScalarType, uint, void*) - nameWithType: Wgl.AMD.GetGPUInfoAMD(uint, GPUPropertyAMD, ScalarType, uint, void*) - fullName: OpenTK.Graphics.Wgl.Wgl.AMD.GetGPUInfoAMD(uint, OpenTK.Graphics.Wgl.GPUPropertyAMD, OpenTK.Graphics.OpenGL.ScalarType, uint, void*) - type: Method - source: - id: GetGPUInfoAMD - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs - startLine: 121 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_AMD_gpu_association] - - [entry point: wglGetGPUInfoAMD] - -
- example: [] - syntax: - content: public static int GetGPUInfoAMD(uint id, GPUPropertyAMD property, ScalarType dataType, uint size, void* data) - parameters: - - id: id - type: System.UInt32 - - id: property - type: OpenTK.Graphics.Wgl.GPUPropertyAMD - - id: dataType - type: OpenTK.Graphics.OpenGL.ScalarType - - id: size - type: System.UInt32 - - id: data - type: System.Void* - return: - type: System.Int32 - content.vb: Public Shared Function GetGPUInfoAMD(id As UInteger, [property] As GPUPropertyAMD, dataType As ScalarType, size As UInteger, data As Void*) As Integer - overload: OpenTK.Graphics.Wgl.Wgl.AMD.GetGPUInfoAMD* - nameWithType.vb: Wgl.AMD.GetGPUInfoAMD(UInteger, GPUPropertyAMD, ScalarType, UInteger, Void*) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.AMD.GetGPUInfoAMD(UInteger, OpenTK.Graphics.Wgl.GPUPropertyAMD, OpenTK.Graphics.OpenGL.ScalarType, UInteger, Void*) - name.vb: GetGPUInfoAMD(UInteger, GPUPropertyAMD, ScalarType, UInteger, Void*) -- uid: OpenTK.Graphics.Wgl.Wgl.AMD.MakeAssociatedContextCurrentAMD_(System.IntPtr) - commentId: M:OpenTK.Graphics.Wgl.Wgl.AMD.MakeAssociatedContextCurrentAMD_(System.IntPtr) - id: MakeAssociatedContextCurrentAMD_(System.IntPtr) - parent: OpenTK.Graphics.Wgl.Wgl.AMD - langs: - - csharp - - vb - name: MakeAssociatedContextCurrentAMD_(nint) - nameWithType: Wgl.AMD.MakeAssociatedContextCurrentAMD_(nint) - fullName: OpenTK.Graphics.Wgl.Wgl.AMD.MakeAssociatedContextCurrentAMD_(nint) - type: Method - source: - id: MakeAssociatedContextCurrentAMD_ - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs - startLine: 124 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_AMD_gpu_association] - - [entry point: wglMakeAssociatedContextCurrentAMD] - -
- example: [] - syntax: - content: public static int MakeAssociatedContextCurrentAMD_(nint hglrc) - parameters: - - id: hglrc - type: System.IntPtr - return: - type: System.Int32 - content.vb: Public Shared Function MakeAssociatedContextCurrentAMD_(hglrc As IntPtr) As Integer - overload: OpenTK.Graphics.Wgl.Wgl.AMD.MakeAssociatedContextCurrentAMD_* - nameWithType.vb: Wgl.AMD.MakeAssociatedContextCurrentAMD_(IntPtr) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.AMD.MakeAssociatedContextCurrentAMD_(System.IntPtr) - name.vb: MakeAssociatedContextCurrentAMD_(IntPtr) -- uid: OpenTK.Graphics.Wgl.Wgl.AMD.CreateAssociatedContextAttribsAMD(System.UInt32,System.IntPtr,System.ReadOnlySpan{System.Int32}) - commentId: M:OpenTK.Graphics.Wgl.Wgl.AMD.CreateAssociatedContextAttribsAMD(System.UInt32,System.IntPtr,System.ReadOnlySpan{System.Int32}) - id: CreateAssociatedContextAttribsAMD(System.UInt32,System.IntPtr,System.ReadOnlySpan{System.Int32}) - parent: OpenTK.Graphics.Wgl.Wgl.AMD - langs: - - csharp - - vb - name: CreateAssociatedContextAttribsAMD(uint, nint, ReadOnlySpan) - nameWithType: Wgl.AMD.CreateAssociatedContextAttribsAMD(uint, nint, ReadOnlySpan) - fullName: OpenTK.Graphics.Wgl.Wgl.AMD.CreateAssociatedContextAttribsAMD(uint, nint, System.ReadOnlySpan) - type: Method - source: - id: CreateAssociatedContextAttribsAMD - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 268 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_AMD_gpu_association] - - [entry point: wglCreateAssociatedContextAttribsAMD] - -
- example: [] - syntax: - content: public static nint CreateAssociatedContextAttribsAMD(uint id, nint hShareContext, ReadOnlySpan attribList) - parameters: - - id: id - type: System.UInt32 - - id: hShareContext - type: System.IntPtr - - id: attribList - type: System.ReadOnlySpan{System.Int32} - return: - type: System.IntPtr - content.vb: Public Shared Function CreateAssociatedContextAttribsAMD(id As UInteger, hShareContext As IntPtr, attribList As ReadOnlySpan(Of Integer)) As IntPtr - overload: OpenTK.Graphics.Wgl.Wgl.AMD.CreateAssociatedContextAttribsAMD* - nameWithType.vb: Wgl.AMD.CreateAssociatedContextAttribsAMD(UInteger, IntPtr, ReadOnlySpan(Of Integer)) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.AMD.CreateAssociatedContextAttribsAMD(UInteger, System.IntPtr, System.ReadOnlySpan(Of Integer)) - name.vb: CreateAssociatedContextAttribsAMD(UInteger, IntPtr, ReadOnlySpan(Of Integer)) -- uid: OpenTK.Graphics.Wgl.Wgl.AMD.CreateAssociatedContextAttribsAMD(System.UInt32,System.IntPtr,System.Int32[]) - commentId: M:OpenTK.Graphics.Wgl.Wgl.AMD.CreateAssociatedContextAttribsAMD(System.UInt32,System.IntPtr,System.Int32[]) - id: CreateAssociatedContextAttribsAMD(System.UInt32,System.IntPtr,System.Int32[]) - parent: OpenTK.Graphics.Wgl.Wgl.AMD - langs: - - csharp - - vb - name: CreateAssociatedContextAttribsAMD(uint, nint, int[]) - nameWithType: Wgl.AMD.CreateAssociatedContextAttribsAMD(uint, nint, int[]) - fullName: OpenTK.Graphics.Wgl.Wgl.AMD.CreateAssociatedContextAttribsAMD(uint, nint, int[]) - type: Method - source: - id: CreateAssociatedContextAttribsAMD - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 278 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_AMD_gpu_association] - - [entry point: wglCreateAssociatedContextAttribsAMD] - -
- example: [] - syntax: - content: public static nint CreateAssociatedContextAttribsAMD(uint id, nint hShareContext, int[] attribList) - parameters: - - id: id - type: System.UInt32 - - id: hShareContext - type: System.IntPtr - - id: attribList - type: System.Int32[] - return: - type: System.IntPtr - content.vb: Public Shared Function CreateAssociatedContextAttribsAMD(id As UInteger, hShareContext As IntPtr, attribList As Integer()) As IntPtr - overload: OpenTK.Graphics.Wgl.Wgl.AMD.CreateAssociatedContextAttribsAMD* - nameWithType.vb: Wgl.AMD.CreateAssociatedContextAttribsAMD(UInteger, IntPtr, Integer()) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.AMD.CreateAssociatedContextAttribsAMD(UInteger, System.IntPtr, Integer()) - name.vb: CreateAssociatedContextAttribsAMD(UInteger, IntPtr, Integer()) -- uid: OpenTK.Graphics.Wgl.Wgl.AMD.CreateAssociatedContextAttribsAMD(System.UInt32,System.IntPtr,System.Int32@) - commentId: M:OpenTK.Graphics.Wgl.Wgl.AMD.CreateAssociatedContextAttribsAMD(System.UInt32,System.IntPtr,System.Int32@) - id: CreateAssociatedContextAttribsAMD(System.UInt32,System.IntPtr,System.Int32@) - parent: OpenTK.Graphics.Wgl.Wgl.AMD - langs: - - csharp - - vb - name: CreateAssociatedContextAttribsAMD(uint, nint, in int) - nameWithType: Wgl.AMD.CreateAssociatedContextAttribsAMD(uint, nint, in int) - fullName: OpenTK.Graphics.Wgl.Wgl.AMD.CreateAssociatedContextAttribsAMD(uint, nint, in int) - type: Method - source: - id: CreateAssociatedContextAttribsAMD - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 288 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_AMD_gpu_association] - - [entry point: wglCreateAssociatedContextAttribsAMD] - -
- example: [] - syntax: - content: public static nint CreateAssociatedContextAttribsAMD(uint id, nint hShareContext, in int attribList) - parameters: - - id: id - type: System.UInt32 - - id: hShareContext - type: System.IntPtr - - id: attribList - type: System.Int32 - return: - type: System.IntPtr - content.vb: Public Shared Function CreateAssociatedContextAttribsAMD(id As UInteger, hShareContext As IntPtr, attribList As Integer) As IntPtr - overload: OpenTK.Graphics.Wgl.Wgl.AMD.CreateAssociatedContextAttribsAMD* - nameWithType.vb: Wgl.AMD.CreateAssociatedContextAttribsAMD(UInteger, IntPtr, Integer) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.AMD.CreateAssociatedContextAttribsAMD(UInteger, System.IntPtr, Integer) - name.vb: CreateAssociatedContextAttribsAMD(UInteger, IntPtr, Integer) -- uid: OpenTK.Graphics.Wgl.Wgl.AMD.DeleteAssociatedContextAMD(System.IntPtr) - commentId: M:OpenTK.Graphics.Wgl.Wgl.AMD.DeleteAssociatedContextAMD(System.IntPtr) - id: DeleteAssociatedContextAMD(System.IntPtr) - parent: OpenTK.Graphics.Wgl.Wgl.AMD - langs: - - csharp - - vb - name: DeleteAssociatedContextAMD(nint) - nameWithType: Wgl.AMD.DeleteAssociatedContextAMD(nint) - fullName: OpenTK.Graphics.Wgl.Wgl.AMD.DeleteAssociatedContextAMD(nint) - type: Method - source: - id: DeleteAssociatedContextAMD - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 298 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - example: [] - syntax: - content: public static bool DeleteAssociatedContextAMD(nint hglrc) - parameters: - - id: hglrc - type: System.IntPtr - return: - type: System.Boolean - content.vb: Public Shared Function DeleteAssociatedContextAMD(hglrc As IntPtr) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.AMD.DeleteAssociatedContextAMD* - nameWithType.vb: Wgl.AMD.DeleteAssociatedContextAMD(IntPtr) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.AMD.DeleteAssociatedContextAMD(System.IntPtr) - name.vb: DeleteAssociatedContextAMD(IntPtr) -- uid: OpenTK.Graphics.Wgl.Wgl.AMD.GetGPUIDsAMD(System.UInt32,System.Span{System.UInt32}) - commentId: M:OpenTK.Graphics.Wgl.Wgl.AMD.GetGPUIDsAMD(System.UInt32,System.Span{System.UInt32}) - id: GetGPUIDsAMD(System.UInt32,System.Span{System.UInt32}) - parent: OpenTK.Graphics.Wgl.Wgl.AMD - langs: - - csharp - - vb - name: GetGPUIDsAMD(uint, Span) - nameWithType: Wgl.AMD.GetGPUIDsAMD(uint, Span) - fullName: OpenTK.Graphics.Wgl.Wgl.AMD.GetGPUIDsAMD(uint, System.Span) - type: Method - source: - id: GetGPUIDsAMD - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 307 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_AMD_gpu_association] - - [entry point: wglGetGPUIDsAMD] - -
- example: [] - syntax: - content: public static uint GetGPUIDsAMD(uint maxCount, Span ids) - parameters: - - id: maxCount - type: System.UInt32 - - id: ids - type: System.Span{System.UInt32} - return: - type: System.UInt32 - content.vb: Public Shared Function GetGPUIDsAMD(maxCount As UInteger, ids As Span(Of UInteger)) As UInteger - overload: OpenTK.Graphics.Wgl.Wgl.AMD.GetGPUIDsAMD* - nameWithType.vb: Wgl.AMD.GetGPUIDsAMD(UInteger, Span(Of UInteger)) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.AMD.GetGPUIDsAMD(UInteger, System.Span(Of UInteger)) - name.vb: GetGPUIDsAMD(UInteger, Span(Of UInteger)) -- uid: OpenTK.Graphics.Wgl.Wgl.AMD.GetGPUIDsAMD(System.UInt32,System.UInt32[]) - commentId: M:OpenTK.Graphics.Wgl.Wgl.AMD.GetGPUIDsAMD(System.UInt32,System.UInt32[]) - id: GetGPUIDsAMD(System.UInt32,System.UInt32[]) - parent: OpenTK.Graphics.Wgl.Wgl.AMD - langs: - - csharp - - vb - name: GetGPUIDsAMD(uint, uint[]) - nameWithType: Wgl.AMD.GetGPUIDsAMD(uint, uint[]) - fullName: OpenTK.Graphics.Wgl.Wgl.AMD.GetGPUIDsAMD(uint, uint[]) - type: Method - source: - id: GetGPUIDsAMD - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 317 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_AMD_gpu_association] - - [entry point: wglGetGPUIDsAMD] - -
- example: [] - syntax: - content: public static uint GetGPUIDsAMD(uint maxCount, uint[] ids) - parameters: - - id: maxCount - type: System.UInt32 - - id: ids - type: System.UInt32[] - return: - type: System.UInt32 - content.vb: Public Shared Function GetGPUIDsAMD(maxCount As UInteger, ids As UInteger()) As UInteger - overload: OpenTK.Graphics.Wgl.Wgl.AMD.GetGPUIDsAMD* - nameWithType.vb: Wgl.AMD.GetGPUIDsAMD(UInteger, UInteger()) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.AMD.GetGPUIDsAMD(UInteger, UInteger()) - name.vb: GetGPUIDsAMD(UInteger, UInteger()) -- uid: OpenTK.Graphics.Wgl.Wgl.AMD.GetGPUIDsAMD(System.UInt32,System.UInt32@) - commentId: M:OpenTK.Graphics.Wgl.Wgl.AMD.GetGPUIDsAMD(System.UInt32,System.UInt32@) - id: GetGPUIDsAMD(System.UInt32,System.UInt32@) - parent: OpenTK.Graphics.Wgl.Wgl.AMD - langs: - - csharp - - vb - name: GetGPUIDsAMD(uint, ref uint) - nameWithType: Wgl.AMD.GetGPUIDsAMD(uint, ref uint) - fullName: OpenTK.Graphics.Wgl.Wgl.AMD.GetGPUIDsAMD(uint, ref uint) - type: Method - source: - id: GetGPUIDsAMD - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 327 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_AMD_gpu_association] - - [entry point: wglGetGPUIDsAMD] - -
- example: [] - syntax: - content: public static uint GetGPUIDsAMD(uint maxCount, ref uint ids) - parameters: - - id: maxCount - type: System.UInt32 - - id: ids - type: System.UInt32 - return: - type: System.UInt32 - content.vb: Public Shared Function GetGPUIDsAMD(maxCount As UInteger, ids As UInteger) As UInteger - overload: OpenTK.Graphics.Wgl.Wgl.AMD.GetGPUIDsAMD* - nameWithType.vb: Wgl.AMD.GetGPUIDsAMD(UInteger, UInteger) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.AMD.GetGPUIDsAMD(UInteger, UInteger) - name.vb: GetGPUIDsAMD(UInteger, UInteger) -- uid: OpenTK.Graphics.Wgl.Wgl.AMD.GetGPUInfoAMD(System.UInt32,OpenTK.Graphics.Wgl.GPUPropertyAMD,OpenTK.Graphics.OpenGL.ScalarType,System.UInt32,System.IntPtr) - commentId: M:OpenTK.Graphics.Wgl.Wgl.AMD.GetGPUInfoAMD(System.UInt32,OpenTK.Graphics.Wgl.GPUPropertyAMD,OpenTK.Graphics.OpenGL.ScalarType,System.UInt32,System.IntPtr) - id: GetGPUInfoAMD(System.UInt32,OpenTK.Graphics.Wgl.GPUPropertyAMD,OpenTK.Graphics.OpenGL.ScalarType,System.UInt32,System.IntPtr) - parent: OpenTK.Graphics.Wgl.Wgl.AMD - langs: - - csharp - - vb - name: GetGPUInfoAMD(uint, GPUPropertyAMD, ScalarType, uint, nint) - nameWithType: Wgl.AMD.GetGPUInfoAMD(uint, GPUPropertyAMD, ScalarType, uint, nint) - fullName: OpenTK.Graphics.Wgl.Wgl.AMD.GetGPUInfoAMD(uint, OpenTK.Graphics.Wgl.GPUPropertyAMD, OpenTK.Graphics.OpenGL.ScalarType, uint, nint) - type: Method - source: - id: GetGPUInfoAMD - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 337 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_AMD_gpu_association] - - [entry point: wglGetGPUInfoAMD] - -
- example: [] - syntax: - content: public static int GetGPUInfoAMD(uint id, GPUPropertyAMD property, ScalarType dataType, uint size, nint data) - parameters: - - id: id - type: System.UInt32 - - id: property - type: OpenTK.Graphics.Wgl.GPUPropertyAMD - - id: dataType - type: OpenTK.Graphics.OpenGL.ScalarType - - id: size - type: System.UInt32 - - id: data - type: System.IntPtr - return: - type: System.Int32 - content.vb: Public Shared Function GetGPUInfoAMD(id As UInteger, [property] As GPUPropertyAMD, dataType As ScalarType, size As UInteger, data As IntPtr) As Integer - overload: OpenTK.Graphics.Wgl.Wgl.AMD.GetGPUInfoAMD* - nameWithType.vb: Wgl.AMD.GetGPUInfoAMD(UInteger, GPUPropertyAMD, ScalarType, UInteger, IntPtr) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.AMD.GetGPUInfoAMD(UInteger, OpenTK.Graphics.Wgl.GPUPropertyAMD, OpenTK.Graphics.OpenGL.ScalarType, UInteger, System.IntPtr) - name.vb: GetGPUInfoAMD(UInteger, GPUPropertyAMD, ScalarType, UInteger, IntPtr) -- uid: OpenTK.Graphics.Wgl.Wgl.AMD.GetGPUInfoAMD``1(System.UInt32,OpenTK.Graphics.Wgl.GPUPropertyAMD,OpenTK.Graphics.OpenGL.ScalarType,System.UInt32,System.Span{``0}) - commentId: M:OpenTK.Graphics.Wgl.Wgl.AMD.GetGPUInfoAMD``1(System.UInt32,OpenTK.Graphics.Wgl.GPUPropertyAMD,OpenTK.Graphics.OpenGL.ScalarType,System.UInt32,System.Span{``0}) - id: GetGPUInfoAMD``1(System.UInt32,OpenTK.Graphics.Wgl.GPUPropertyAMD,OpenTK.Graphics.OpenGL.ScalarType,System.UInt32,System.Span{``0}) - parent: OpenTK.Graphics.Wgl.Wgl.AMD - langs: - - csharp - - vb - name: GetGPUInfoAMD(uint, GPUPropertyAMD, ScalarType, uint, Span) - nameWithType: Wgl.AMD.GetGPUInfoAMD(uint, GPUPropertyAMD, ScalarType, uint, Span) - fullName: OpenTK.Graphics.Wgl.Wgl.AMD.GetGPUInfoAMD(uint, OpenTK.Graphics.Wgl.GPUPropertyAMD, OpenTK.Graphics.OpenGL.ScalarType, uint, System.Span) - type: Method - source: - id: GetGPUInfoAMD - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 345 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_AMD_gpu_association] - - [entry point: wglGetGPUInfoAMD] - -
- example: [] - syntax: - content: 'public static int GetGPUInfoAMD(uint id, GPUPropertyAMD property, ScalarType dataType, uint size, Span data) where T1 : unmanaged' - parameters: - - id: id - type: System.UInt32 - - id: property - type: OpenTK.Graphics.Wgl.GPUPropertyAMD - - id: dataType - type: OpenTK.Graphics.OpenGL.ScalarType - - id: size - type: System.UInt32 - - id: data - type: System.Span{{T1}} - typeParameters: - - id: T1 - return: - type: System.Int32 - content.vb: Public Shared Function GetGPUInfoAMD(Of T1 As Structure)(id As UInteger, [property] As GPUPropertyAMD, dataType As ScalarType, size As UInteger, data As Span(Of T1)) As Integer - overload: OpenTK.Graphics.Wgl.Wgl.AMD.GetGPUInfoAMD* - nameWithType.vb: Wgl.AMD.GetGPUInfoAMD(Of T1)(UInteger, GPUPropertyAMD, ScalarType, UInteger, Span(Of T1)) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.AMD.GetGPUInfoAMD(Of T1)(UInteger, OpenTK.Graphics.Wgl.GPUPropertyAMD, OpenTK.Graphics.OpenGL.ScalarType, UInteger, System.Span(Of T1)) - name.vb: GetGPUInfoAMD(Of T1)(UInteger, GPUPropertyAMD, ScalarType, UInteger, Span(Of T1)) -- uid: OpenTK.Graphics.Wgl.Wgl.AMD.GetGPUInfoAMD``1(System.UInt32,OpenTK.Graphics.Wgl.GPUPropertyAMD,OpenTK.Graphics.OpenGL.ScalarType,System.UInt32,``0[]) - commentId: M:OpenTK.Graphics.Wgl.Wgl.AMD.GetGPUInfoAMD``1(System.UInt32,OpenTK.Graphics.Wgl.GPUPropertyAMD,OpenTK.Graphics.OpenGL.ScalarType,System.UInt32,``0[]) - id: GetGPUInfoAMD``1(System.UInt32,OpenTK.Graphics.Wgl.GPUPropertyAMD,OpenTK.Graphics.OpenGL.ScalarType,System.UInt32,``0[]) - parent: OpenTK.Graphics.Wgl.Wgl.AMD - langs: - - csharp - - vb - name: GetGPUInfoAMD(uint, GPUPropertyAMD, ScalarType, uint, T1[]) - nameWithType: Wgl.AMD.GetGPUInfoAMD(uint, GPUPropertyAMD, ScalarType, uint, T1[]) - fullName: OpenTK.Graphics.Wgl.Wgl.AMD.GetGPUInfoAMD(uint, OpenTK.Graphics.Wgl.GPUPropertyAMD, OpenTK.Graphics.OpenGL.ScalarType, uint, T1[]) - type: Method - source: - id: GetGPUInfoAMD - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 356 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_AMD_gpu_association] - - [entry point: wglGetGPUInfoAMD] - -
- example: [] - syntax: - content: 'public static int GetGPUInfoAMD(uint id, GPUPropertyAMD property, ScalarType dataType, uint size, T1[] data) where T1 : unmanaged' - parameters: - - id: id - type: System.UInt32 - - id: property - type: OpenTK.Graphics.Wgl.GPUPropertyAMD - - id: dataType - type: OpenTK.Graphics.OpenGL.ScalarType - - id: size - type: System.UInt32 - - id: data - type: '{T1}[]' - typeParameters: - - id: T1 - return: - type: System.Int32 - content.vb: Public Shared Function GetGPUInfoAMD(Of T1 As Structure)(id As UInteger, [property] As GPUPropertyAMD, dataType As ScalarType, size As UInteger, data As T1()) As Integer - overload: OpenTK.Graphics.Wgl.Wgl.AMD.GetGPUInfoAMD* - nameWithType.vb: Wgl.AMD.GetGPUInfoAMD(Of T1)(UInteger, GPUPropertyAMD, ScalarType, UInteger, T1()) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.AMD.GetGPUInfoAMD(Of T1)(UInteger, OpenTK.Graphics.Wgl.GPUPropertyAMD, OpenTK.Graphics.OpenGL.ScalarType, UInteger, T1()) - name.vb: GetGPUInfoAMD(Of T1)(UInteger, GPUPropertyAMD, ScalarType, UInteger, T1()) -- uid: OpenTK.Graphics.Wgl.Wgl.AMD.GetGPUInfoAMD``1(System.UInt32,OpenTK.Graphics.Wgl.GPUPropertyAMD,OpenTK.Graphics.OpenGL.ScalarType,System.UInt32,``0@) - commentId: M:OpenTK.Graphics.Wgl.Wgl.AMD.GetGPUInfoAMD``1(System.UInt32,OpenTK.Graphics.Wgl.GPUPropertyAMD,OpenTK.Graphics.OpenGL.ScalarType,System.UInt32,``0@) - id: GetGPUInfoAMD``1(System.UInt32,OpenTK.Graphics.Wgl.GPUPropertyAMD,OpenTK.Graphics.OpenGL.ScalarType,System.UInt32,``0@) - parent: OpenTK.Graphics.Wgl.Wgl.AMD - langs: - - csharp - - vb - name: GetGPUInfoAMD(uint, GPUPropertyAMD, ScalarType, uint, ref T1) - nameWithType: Wgl.AMD.GetGPUInfoAMD(uint, GPUPropertyAMD, ScalarType, uint, ref T1) - fullName: OpenTK.Graphics.Wgl.Wgl.AMD.GetGPUInfoAMD(uint, OpenTK.Graphics.Wgl.GPUPropertyAMD, OpenTK.Graphics.OpenGL.ScalarType, uint, ref T1) - type: Method - source: - id: GetGPUInfoAMD - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 367 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_AMD_gpu_association] - - [entry point: wglGetGPUInfoAMD] - -
- example: [] - syntax: - content: 'public static int GetGPUInfoAMD(uint id, GPUPropertyAMD property, ScalarType dataType, uint size, ref T1 data) where T1 : unmanaged' - parameters: - - id: id - type: System.UInt32 - - id: property - type: OpenTK.Graphics.Wgl.GPUPropertyAMD - - id: dataType - type: OpenTK.Graphics.OpenGL.ScalarType - - id: size - type: System.UInt32 - - id: data - type: '{T1}' - typeParameters: - - id: T1 - return: - type: System.Int32 - content.vb: Public Shared Function GetGPUInfoAMD(Of T1 As Structure)(id As UInteger, [property] As GPUPropertyAMD, dataType As ScalarType, size As UInteger, data As T1) As Integer - overload: OpenTK.Graphics.Wgl.Wgl.AMD.GetGPUInfoAMD* - nameWithType.vb: Wgl.AMD.GetGPUInfoAMD(Of T1)(UInteger, GPUPropertyAMD, ScalarType, UInteger, T1) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.AMD.GetGPUInfoAMD(Of T1)(UInteger, OpenTK.Graphics.Wgl.GPUPropertyAMD, OpenTK.Graphics.OpenGL.ScalarType, UInteger, T1) - name.vb: GetGPUInfoAMD(Of T1)(UInteger, GPUPropertyAMD, ScalarType, UInteger, T1) -- uid: OpenTK.Graphics.Wgl.Wgl.AMD.MakeAssociatedContextCurrentAMD(System.IntPtr) - commentId: M:OpenTK.Graphics.Wgl.Wgl.AMD.MakeAssociatedContextCurrentAMD(System.IntPtr) - id: MakeAssociatedContextCurrentAMD(System.IntPtr) - parent: OpenTK.Graphics.Wgl.Wgl.AMD - langs: - - csharp - - vb - name: MakeAssociatedContextCurrentAMD(nint) - nameWithType: Wgl.AMD.MakeAssociatedContextCurrentAMD(nint) - fullName: OpenTK.Graphics.Wgl.Wgl.AMD.MakeAssociatedContextCurrentAMD(nint) - type: Method - source: - id: MakeAssociatedContextCurrentAMD - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 378 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - example: [] - syntax: - content: public static bool MakeAssociatedContextCurrentAMD(nint hglrc) - parameters: - - id: hglrc - type: System.IntPtr - return: - type: System.Boolean - content.vb: Public Shared Function MakeAssociatedContextCurrentAMD(hglrc As IntPtr) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.AMD.MakeAssociatedContextCurrentAMD* - nameWithType.vb: Wgl.AMD.MakeAssociatedContextCurrentAMD(IntPtr) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.AMD.MakeAssociatedContextCurrentAMD(System.IntPtr) - name.vb: MakeAssociatedContextCurrentAMD(IntPtr) -references: -- uid: OpenTK.Graphics.Wgl - commentId: N:OpenTK.Graphics.Wgl - href: OpenTK.html - name: OpenTK.Graphics.Wgl - nameWithType: OpenTK.Graphics.Wgl - fullName: OpenTK.Graphics.Wgl - spec.csharp: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Wgl - name: Wgl - href: OpenTK.Graphics.Wgl.html - spec.vb: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Wgl - name: Wgl - href: OpenTK.Graphics.Wgl.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: System.Object.Equals(System.Object) - commentId: M:System.Object.Equals(System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - name: Equals(object) - nameWithType: object.Equals(object) - fullName: object.Equals(object) - nameWithType.vb: Object.Equals(Object) - fullName.vb: Object.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetHashCode - commentId: M:System.Object.GetHashCode - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - name: GetHashCode() - nameWithType: object.GetHashCode() - fullName: object.GetHashCode() - nameWithType.vb: Object.GetHashCode() - fullName.vb: Object.GetHashCode() - spec.csharp: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.MemberwiseClone - commentId: M:System.Object.MemberwiseClone - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - name: MemberwiseClone() - nameWithType: object.MemberwiseClone() - fullName: object.MemberwiseClone() - nameWithType.vb: Object.MemberwiseClone() - fullName.vb: Object.MemberwiseClone() - spec.csharp: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) - spec.vb: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.ToString - commentId: M:System.Object.ToString - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - name: ToString() - nameWithType: object.ToString() - fullName: object.ToString() - nameWithType.vb: Object.ToString() - fullName.vb: Object.ToString() - spec.csharp: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) - spec.vb: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: OpenTK.Graphics.Wgl.Wgl.AMD.BlitContextFramebufferAMD* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.AMD.BlitContextFramebufferAMD - href: OpenTK.Graphics.Wgl.Wgl.AMD.html#OpenTK_Graphics_Wgl_Wgl_AMD_BlitContextFramebufferAMD_System_IntPtr_System_Int32_System_Int32_System_Int32_System_Int32_System_Int32_System_Int32_System_Int32_System_Int32_OpenTK_Graphics_OpenGL_ClearBufferMask_OpenTK_Graphics_Wgl_All_ - name: BlitContextFramebufferAMD - nameWithType: Wgl.AMD.BlitContextFramebufferAMD - fullName: OpenTK.Graphics.Wgl.Wgl.AMD.BlitContextFramebufferAMD -- uid: System.IntPtr - commentId: T:System.IntPtr - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: nint - nameWithType: nint - fullName: nint - nameWithType.vb: IntPtr - fullName.vb: System.IntPtr - name.vb: IntPtr -- uid: System.Int32 - commentId: T:System.Int32 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - name: int - nameWithType: int - fullName: int - nameWithType.vb: Integer - fullName.vb: Integer - name.vb: Integer -- uid: OpenTK.Graphics.OpenGL.ClearBufferMask - commentId: T:OpenTK.Graphics.OpenGL.ClearBufferMask - parent: OpenTK.Graphics.OpenGL - href: OpenTK.Graphics.OpenGL.ClearBufferMask.html - name: ClearBufferMask - nameWithType: ClearBufferMask - fullName: OpenTK.Graphics.OpenGL.ClearBufferMask -- uid: OpenTK.Graphics.Wgl.All - commentId: T:OpenTK.Graphics.Wgl.All - parent: OpenTK.Graphics.Wgl - href: OpenTK.Graphics.Wgl.All.html - name: All - nameWithType: All - fullName: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.OpenGL - commentId: N:OpenTK.Graphics.OpenGL - href: OpenTK.html - name: OpenTK.Graphics.OpenGL - nameWithType: OpenTK.Graphics.OpenGL - fullName: OpenTK.Graphics.OpenGL - spec.csharp: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.OpenGL - name: OpenGL - href: OpenTK.Graphics.OpenGL.html - spec.vb: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.OpenGL - name: OpenGL - href: OpenTK.Graphics.OpenGL.html -- uid: OpenTK.Graphics.Wgl.Wgl.AMD.CreateAssociatedContextAMD* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.AMD.CreateAssociatedContextAMD - href: OpenTK.Graphics.Wgl.Wgl.AMD.html#OpenTK_Graphics_Wgl_Wgl_AMD_CreateAssociatedContextAMD_System_UInt32_ - name: CreateAssociatedContextAMD - nameWithType: Wgl.AMD.CreateAssociatedContextAMD - fullName: OpenTK.Graphics.Wgl.Wgl.AMD.CreateAssociatedContextAMD -- uid: System.UInt32 - commentId: T:System.UInt32 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - name: uint - nameWithType: uint - fullName: uint - nameWithType.vb: UInteger - fullName.vb: UInteger - name.vb: UInteger -- uid: OpenTK.Graphics.Wgl.Wgl.AMD.CreateAssociatedContextAttribsAMD* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.AMD.CreateAssociatedContextAttribsAMD - href: OpenTK.Graphics.Wgl.Wgl.AMD.html#OpenTK_Graphics_Wgl_Wgl_AMD_CreateAssociatedContextAttribsAMD_System_UInt32_System_IntPtr_System_Int32__ - name: CreateAssociatedContextAttribsAMD - nameWithType: Wgl.AMD.CreateAssociatedContextAttribsAMD - fullName: OpenTK.Graphics.Wgl.Wgl.AMD.CreateAssociatedContextAttribsAMD -- uid: System.Int32* - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - name: int* - nameWithType: int* - fullName: int* - nameWithType.vb: Integer* - fullName.vb: Integer* - name.vb: Integer* - spec.csharp: - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '*' - spec.vb: - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '*' -- uid: OpenTK.Graphics.Wgl.Wgl.AMD.DeleteAssociatedContextAMD_* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.AMD.DeleteAssociatedContextAMD_ - href: OpenTK.Graphics.Wgl.Wgl.AMD.html#OpenTK_Graphics_Wgl_Wgl_AMD_DeleteAssociatedContextAMD__System_IntPtr_ - name: DeleteAssociatedContextAMD_ - nameWithType: Wgl.AMD.DeleteAssociatedContextAMD_ - fullName: OpenTK.Graphics.Wgl.Wgl.AMD.DeleteAssociatedContextAMD_ -- uid: OpenTK.Graphics.Wgl.Wgl.AMD.GetContextGPUIDAMD* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.AMD.GetContextGPUIDAMD - href: OpenTK.Graphics.Wgl.Wgl.AMD.html#OpenTK_Graphics_Wgl_Wgl_AMD_GetContextGPUIDAMD_System_IntPtr_ - name: GetContextGPUIDAMD - nameWithType: Wgl.AMD.GetContextGPUIDAMD - fullName: OpenTK.Graphics.Wgl.Wgl.AMD.GetContextGPUIDAMD -- uid: OpenTK.Graphics.Wgl.Wgl.AMD.GetCurrentAssociatedContextAMD* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.AMD.GetCurrentAssociatedContextAMD - href: OpenTK.Graphics.Wgl.Wgl.AMD.html#OpenTK_Graphics_Wgl_Wgl_AMD_GetCurrentAssociatedContextAMD - name: GetCurrentAssociatedContextAMD - nameWithType: Wgl.AMD.GetCurrentAssociatedContextAMD - fullName: OpenTK.Graphics.Wgl.Wgl.AMD.GetCurrentAssociatedContextAMD -- uid: OpenTK.Graphics.Wgl.Wgl.AMD.GetGPUIDsAMD* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.AMD.GetGPUIDsAMD - href: OpenTK.Graphics.Wgl.Wgl.AMD.html#OpenTK_Graphics_Wgl_Wgl_AMD_GetGPUIDsAMD_System_UInt32_System_UInt32__ - name: GetGPUIDsAMD - nameWithType: Wgl.AMD.GetGPUIDsAMD - fullName: OpenTK.Graphics.Wgl.Wgl.AMD.GetGPUIDsAMD -- uid: System.UInt32* - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - name: uint* - nameWithType: uint* - fullName: uint* - nameWithType.vb: UInteger* - fullName.vb: UInteger* - name.vb: UInteger* - spec.csharp: - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: '*' - spec.vb: - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: '*' -- uid: OpenTK.Graphics.Wgl.Wgl.AMD.GetGPUInfoAMD* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.AMD.GetGPUInfoAMD - href: OpenTK.Graphics.Wgl.Wgl.AMD.html#OpenTK_Graphics_Wgl_Wgl_AMD_GetGPUInfoAMD_System_UInt32_OpenTK_Graphics_Wgl_GPUPropertyAMD_OpenTK_Graphics_OpenGL_ScalarType_System_UInt32_System_Void__ - name: GetGPUInfoAMD - nameWithType: Wgl.AMD.GetGPUInfoAMD - fullName: OpenTK.Graphics.Wgl.Wgl.AMD.GetGPUInfoAMD -- uid: OpenTK.Graphics.Wgl.GPUPropertyAMD - commentId: T:OpenTK.Graphics.Wgl.GPUPropertyAMD - parent: OpenTK.Graphics.Wgl - href: OpenTK.Graphics.Wgl.GPUPropertyAMD.html - name: GPUPropertyAMD - nameWithType: GPUPropertyAMD - fullName: OpenTK.Graphics.Wgl.GPUPropertyAMD -- uid: OpenTK.Graphics.OpenGL.ScalarType - commentId: T:OpenTK.Graphics.OpenGL.ScalarType - parent: OpenTK.Graphics.OpenGL - href: OpenTK.Graphics.OpenGL.ScalarType.html - name: ScalarType - nameWithType: ScalarType - fullName: OpenTK.Graphics.OpenGL.ScalarType -- uid: System.Void* - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.void - name: void* - nameWithType: void* - fullName: void* - nameWithType.vb: Void* - fullName.vb: Void* - name.vb: Void* - spec.csharp: - - uid: System.Void - name: void - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.void - - name: '*' - spec.vb: - - uid: System.Void - name: Void - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.void - - name: '*' -- uid: OpenTK.Graphics.Wgl.Wgl.AMD.MakeAssociatedContextCurrentAMD_* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.AMD.MakeAssociatedContextCurrentAMD_ - href: OpenTK.Graphics.Wgl.Wgl.AMD.html#OpenTK_Graphics_Wgl_Wgl_AMD_MakeAssociatedContextCurrentAMD__System_IntPtr_ - name: MakeAssociatedContextCurrentAMD_ - nameWithType: Wgl.AMD.MakeAssociatedContextCurrentAMD_ - fullName: OpenTK.Graphics.Wgl.Wgl.AMD.MakeAssociatedContextCurrentAMD_ -- uid: System.ReadOnlySpan{System.Int32} - commentId: T:System.ReadOnlySpan{System.Int32} - parent: System - definition: System.ReadOnlySpan`1 - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - name: ReadOnlySpan - nameWithType: ReadOnlySpan - fullName: System.ReadOnlySpan - nameWithType.vb: ReadOnlySpan(Of Integer) - fullName.vb: System.ReadOnlySpan(Of Integer) - name.vb: ReadOnlySpan(Of Integer) - spec.csharp: - - uid: System.ReadOnlySpan`1 - name: ReadOnlySpan - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - - name: < - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '>' - spec.vb: - - uid: System.ReadOnlySpan`1 - name: ReadOnlySpan - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - - name: ( - - name: Of - - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) -- uid: System.ReadOnlySpan`1 - commentId: T:System.ReadOnlySpan`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - name: ReadOnlySpan - nameWithType: ReadOnlySpan - fullName: System.ReadOnlySpan - nameWithType.vb: ReadOnlySpan(Of T) - fullName.vb: System.ReadOnlySpan(Of T) - name.vb: ReadOnlySpan(Of T) - spec.csharp: - - uid: System.ReadOnlySpan`1 - name: ReadOnlySpan - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.ReadOnlySpan`1 - name: ReadOnlySpan - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: System.Int32[] - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - name: int[] - nameWithType: int[] - fullName: int[] - nameWithType.vb: Integer() - fullName.vb: Integer() - name.vb: Integer() - spec.csharp: - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '[' - - name: ']' - spec.vb: - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ( - - name: ) -- uid: OpenTK.Graphics.Wgl.Wgl.AMD.DeleteAssociatedContextAMD* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.AMD.DeleteAssociatedContextAMD - href: OpenTK.Graphics.Wgl.Wgl.AMD.html#OpenTK_Graphics_Wgl_Wgl_AMD_DeleteAssociatedContextAMD_System_IntPtr_ - name: DeleteAssociatedContextAMD - nameWithType: Wgl.AMD.DeleteAssociatedContextAMD - fullName: OpenTK.Graphics.Wgl.Wgl.AMD.DeleteAssociatedContextAMD -- uid: System.Boolean - commentId: T:System.Boolean - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - name: bool - nameWithType: bool - fullName: bool - nameWithType.vb: Boolean - fullName.vb: Boolean - name.vb: Boolean -- uid: System.Span{System.UInt32} - commentId: T:System.Span{System.UInt32} - parent: System - definition: System.Span`1 - href: https://learn.microsoft.com/dotnet/api/system.span-1 - name: Span - nameWithType: Span - fullName: System.Span - nameWithType.vb: Span(Of UInteger) - fullName.vb: System.Span(Of UInteger) - name.vb: Span(Of UInteger) - spec.csharp: - - uid: System.Span`1 - name: Span - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.span-1 - - name: < - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: '>' - spec.vb: - - uid: System.Span`1 - name: Span - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.span-1 - - name: ( - - name: Of - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: System.Span`1 - commentId: T:System.Span`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.span-1 - name: Span - nameWithType: Span - fullName: System.Span - nameWithType.vb: Span(Of T) - fullName.vb: System.Span(Of T) - name.vb: Span(Of T) - spec.csharp: - - uid: System.Span`1 - name: Span - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.span-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.Span`1 - name: Span - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.span-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: System.UInt32[] - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - name: uint[] - nameWithType: uint[] - fullName: uint[] - nameWithType.vb: UInteger() - fullName.vb: UInteger() - name.vb: UInteger() - spec.csharp: - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: '[' - - name: ']' - spec.vb: - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ( - - name: ) -- uid: System.Span{{T1}} - commentId: T:System.Span{``0} - parent: System - definition: System.Span`1 - href: https://learn.microsoft.com/dotnet/api/system.span-1 - name: Span - nameWithType: Span - fullName: System.Span - nameWithType.vb: Span(Of T1) - fullName.vb: System.Span(Of T1) - name.vb: Span(Of T1) - spec.csharp: - - uid: System.Span`1 - name: Span - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.span-1 - - name: < - - name: T1 - - name: '>' - spec.vb: - - uid: System.Span`1 - name: Span - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.span-1 - - name: ( - - name: Of - - name: " " - - name: T1 - - name: ) -- uid: '{T1}[]' - isExternal: true - name: T1[] - nameWithType: T1[] - fullName: T1[] - nameWithType.vb: T1() - fullName.vb: T1() - name.vb: T1() - spec.csharp: - - name: T1 - - name: '[' - - name: ']' - spec.vb: - - name: T1 - - name: ( - - name: ) -- uid: '{T1}' - commentId: '!:T1' - definition: T1 - name: T1 - nameWithType: T1 - fullName: T1 -- uid: T1 - name: T1 - nameWithType: T1 - fullName: T1 -- uid: OpenTK.Graphics.Wgl.Wgl.AMD.MakeAssociatedContextCurrentAMD* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.AMD.MakeAssociatedContextCurrentAMD - href: OpenTK.Graphics.Wgl.Wgl.AMD.html#OpenTK_Graphics_Wgl_Wgl_AMD_MakeAssociatedContextCurrentAMD_System_IntPtr_ - name: MakeAssociatedContextCurrentAMD - nameWithType: Wgl.AMD.MakeAssociatedContextCurrentAMD - fullName: OpenTK.Graphics.Wgl.Wgl.AMD.MakeAssociatedContextCurrentAMD diff --git a/api/OpenTK.Graphics.Wgl.Wgl.ARB.yml b/api/OpenTK.Graphics.Wgl.Wgl.ARB.yml deleted file mode 100644 index 4ff1127b..00000000 --- a/api/OpenTK.Graphics.Wgl.Wgl.ARB.yml +++ /dev/null @@ -1,2933 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: OpenTK.Graphics.Wgl.Wgl.ARB - commentId: T:OpenTK.Graphics.Wgl.Wgl.ARB - id: Wgl.ARB - parent: OpenTK.Graphics.Wgl - children: - - OpenTK.Graphics.Wgl.Wgl.ARB.BindTexImageARB(System.IntPtr,OpenTK.Graphics.Wgl.ColorBuffer) - - OpenTK.Graphics.Wgl.Wgl.ARB.BindTexImageARB_(System.IntPtr,OpenTK.Graphics.Wgl.ColorBuffer) - - OpenTK.Graphics.Wgl.Wgl.ARB.ChoosePixelFormatARB(System.IntPtr,OpenTK.Graphics.Wgl.PixelFormatAttribute*,System.Single*,System.UInt32,System.Int32*,System.UInt32*) - - OpenTK.Graphics.Wgl.Wgl.ARB.ChoosePixelFormatARB(System.IntPtr,OpenTK.Graphics.Wgl.PixelFormatAttribute@,System.Single@,System.UInt32,System.Int32@,System.UInt32@) - - OpenTK.Graphics.Wgl.Wgl.ARB.ChoosePixelFormatARB(System.IntPtr,OpenTK.Graphics.Wgl.PixelFormatAttribute[],System.Single[],System.UInt32,System.Int32[],System.UInt32@) - - OpenTK.Graphics.Wgl.Wgl.ARB.ChoosePixelFormatARB(System.IntPtr,System.ReadOnlySpan{OpenTK.Graphics.Wgl.PixelFormatAttribute},System.ReadOnlySpan{System.Single},System.UInt32,System.Span{System.Int32},System.UInt32@) - - OpenTK.Graphics.Wgl.Wgl.ARB.CreateBufferRegionARB(System.IntPtr,System.Int32,OpenTK.Graphics.Wgl.ColorBufferMask) - - OpenTK.Graphics.Wgl.Wgl.ARB.CreateContextAttribsARB(System.IntPtr,System.IntPtr,OpenTK.Graphics.Wgl.ContextAttribs*) - - OpenTK.Graphics.Wgl.Wgl.ARB.CreateContextAttribsARB(System.IntPtr,System.IntPtr,OpenTK.Graphics.Wgl.ContextAttribs@) - - OpenTK.Graphics.Wgl.Wgl.ARB.CreateContextAttribsARB(System.IntPtr,System.IntPtr,OpenTK.Graphics.Wgl.ContextAttribs[]) - - OpenTK.Graphics.Wgl.Wgl.ARB.CreateContextAttribsARB(System.IntPtr,System.IntPtr,System.ReadOnlySpan{OpenTK.Graphics.Wgl.ContextAttribs}) - - OpenTK.Graphics.Wgl.Wgl.ARB.CreatePbufferARB(System.IntPtr,System.Int32,System.Int32,System.Int32,System.Int32*) - - OpenTK.Graphics.Wgl.Wgl.ARB.CreatePbufferARB(System.IntPtr,System.Int32,System.Int32,System.Int32,System.Int32@) - - OpenTK.Graphics.Wgl.Wgl.ARB.CreatePbufferARB(System.IntPtr,System.Int32,System.Int32,System.Int32,System.Int32[]) - - OpenTK.Graphics.Wgl.Wgl.ARB.CreatePbufferARB(System.IntPtr,System.Int32,System.Int32,System.Int32,System.ReadOnlySpan{System.Int32}) - - OpenTK.Graphics.Wgl.Wgl.ARB.DeleteBufferRegionARB(System.IntPtr) - - OpenTK.Graphics.Wgl.Wgl.ARB.DestroyPbufferARB(System.IntPtr) - - OpenTK.Graphics.Wgl.Wgl.ARB.DestroyPbufferARB_(System.IntPtr) - - OpenTK.Graphics.Wgl.Wgl.ARB.GetCurrentReadDCARB - - OpenTK.Graphics.Wgl.Wgl.ARB.GetExtensionsStringARB(System.IntPtr) - - OpenTK.Graphics.Wgl.Wgl.ARB.GetExtensionsStringARB_(System.IntPtr) - - OpenTK.Graphics.Wgl.Wgl.ARB.GetPbufferDCARB(System.IntPtr) - - OpenTK.Graphics.Wgl.Wgl.ARB.GetPixelFormatAttribfvARB(System.IntPtr,System.Int32,System.Int32,System.UInt32,OpenTK.Graphics.Wgl.PixelFormatAttribute*,System.Single*) - - OpenTK.Graphics.Wgl.Wgl.ARB.GetPixelFormatAttribfvARB(System.IntPtr,System.Int32,System.Int32,System.UInt32,OpenTK.Graphics.Wgl.PixelFormatAttribute@,System.Single@) - - OpenTK.Graphics.Wgl.Wgl.ARB.GetPixelFormatAttribfvARB(System.IntPtr,System.Int32,System.Int32,System.UInt32,OpenTK.Graphics.Wgl.PixelFormatAttribute[],System.Single[]) - - OpenTK.Graphics.Wgl.Wgl.ARB.GetPixelFormatAttribfvARB(System.IntPtr,System.Int32,System.Int32,System.UInt32,System.ReadOnlySpan{OpenTK.Graphics.Wgl.PixelFormatAttribute},System.Span{System.Single}) - - OpenTK.Graphics.Wgl.Wgl.ARB.GetPixelFormatAttribivARB(System.IntPtr,System.Int32,System.Int32,System.UInt32,OpenTK.Graphics.Wgl.PixelFormatAttribute*,System.Int32*) - - OpenTK.Graphics.Wgl.Wgl.ARB.GetPixelFormatAttribivARB(System.IntPtr,System.Int32,System.Int32,System.UInt32,OpenTK.Graphics.Wgl.PixelFormatAttribute@,System.Int32@) - - OpenTK.Graphics.Wgl.Wgl.ARB.GetPixelFormatAttribivARB(System.IntPtr,System.Int32,System.Int32,System.UInt32,OpenTK.Graphics.Wgl.PixelFormatAttribute[],System.Int32[]) - - OpenTK.Graphics.Wgl.Wgl.ARB.GetPixelFormatAttribivARB(System.IntPtr,System.Int32,System.Int32,System.UInt32,System.ReadOnlySpan{OpenTK.Graphics.Wgl.PixelFormatAttribute},System.Span{System.Int32}) - - OpenTK.Graphics.Wgl.Wgl.ARB.MakeContextCurrentARB(System.IntPtr,System.IntPtr,System.IntPtr) - - OpenTK.Graphics.Wgl.Wgl.ARB.MakeContextCurrentARB_(System.IntPtr,System.IntPtr,System.IntPtr) - - OpenTK.Graphics.Wgl.Wgl.ARB.QueryPbufferARB(System.IntPtr,OpenTK.Graphics.Wgl.PBufferAttribute,System.Int32*) - - OpenTK.Graphics.Wgl.Wgl.ARB.QueryPbufferARB(System.IntPtr,OpenTK.Graphics.Wgl.PBufferAttribute,System.Int32@) - - OpenTK.Graphics.Wgl.Wgl.ARB.ReleasePbufferDCARB(System.IntPtr,System.IntPtr) - - OpenTK.Graphics.Wgl.Wgl.ARB.ReleaseTexImageARB(System.IntPtr,OpenTK.Graphics.Wgl.ColorBuffer) - - OpenTK.Graphics.Wgl.Wgl.ARB.ReleaseTexImageARB_(System.IntPtr,OpenTK.Graphics.Wgl.ColorBuffer) - - OpenTK.Graphics.Wgl.Wgl.ARB.RestoreBufferRegionARB(System.IntPtr,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32) - - OpenTK.Graphics.Wgl.Wgl.ARB.RestoreBufferRegionARB_(System.IntPtr,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32) - - OpenTK.Graphics.Wgl.Wgl.ARB.SaveBufferRegionARB(System.IntPtr,System.Int32,System.Int32,System.Int32,System.Int32) - - OpenTK.Graphics.Wgl.Wgl.ARB.SaveBufferRegionARB_(System.IntPtr,System.Int32,System.Int32,System.Int32,System.Int32) - - OpenTK.Graphics.Wgl.Wgl.ARB.SetPbufferAttribARB(System.IntPtr,System.Int32*) - - OpenTK.Graphics.Wgl.Wgl.ARB.SetPbufferAttribARB(System.IntPtr,System.Int32@) - - OpenTK.Graphics.Wgl.Wgl.ARB.SetPbufferAttribARB(System.IntPtr,System.Int32[]) - - OpenTK.Graphics.Wgl.Wgl.ARB.SetPbufferAttribARB(System.IntPtr,System.ReadOnlySpan{System.Int32}) - langs: - - csharp - - vb - name: Wgl.ARB - nameWithType: Wgl.ARB - fullName: OpenTK.Graphics.Wgl.Wgl.ARB - type: Class - source: - id: ARB - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 387 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: ARB extensions. - example: [] - syntax: - content: public static class Wgl.ARB - content.vb: Public Module Wgl.ARB - inheritance: - - System.Object - inheritedMembers: - - System.Object.Equals(System.Object) - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetHashCode - - System.Object.GetType - - System.Object.MemberwiseClone - - System.Object.ReferenceEquals(System.Object,System.Object) - - System.Object.ToString -- uid: OpenTK.Graphics.Wgl.Wgl.ARB.BindTexImageARB_(System.IntPtr,OpenTK.Graphics.Wgl.ColorBuffer) - commentId: M:OpenTK.Graphics.Wgl.Wgl.ARB.BindTexImageARB_(System.IntPtr,OpenTK.Graphics.Wgl.ColorBuffer) - id: BindTexImageARB_(System.IntPtr,OpenTK.Graphics.Wgl.ColorBuffer) - parent: OpenTK.Graphics.Wgl.Wgl.ARB - langs: - - csharp - - vb - name: BindTexImageARB_(nint, ColorBuffer) - nameWithType: Wgl.ARB.BindTexImageARB_(nint, ColorBuffer) - fullName: OpenTK.Graphics.Wgl.Wgl.ARB.BindTexImageARB_(nint, OpenTK.Graphics.Wgl.ColorBuffer) - type: Method - source: - id: BindTexImageARB_ - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs - startLine: 131 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_ARB_render_texture] - - [entry point: wglBindTexImageARB] - -
- example: [] - syntax: - content: public static int BindTexImageARB_(nint hPbuffer, ColorBuffer iBuffer) - parameters: - - id: hPbuffer - type: System.IntPtr - - id: iBuffer - type: OpenTK.Graphics.Wgl.ColorBuffer - return: - type: System.Int32 - content.vb: Public Shared Function BindTexImageARB_(hPbuffer As IntPtr, iBuffer As ColorBuffer) As Integer - overload: OpenTK.Graphics.Wgl.Wgl.ARB.BindTexImageARB_* - nameWithType.vb: Wgl.ARB.BindTexImageARB_(IntPtr, ColorBuffer) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.ARB.BindTexImageARB_(System.IntPtr, OpenTK.Graphics.Wgl.ColorBuffer) - name.vb: BindTexImageARB_(IntPtr, ColorBuffer) -- uid: OpenTK.Graphics.Wgl.Wgl.ARB.ChoosePixelFormatARB(System.IntPtr,OpenTK.Graphics.Wgl.PixelFormatAttribute*,System.Single*,System.UInt32,System.Int32*,System.UInt32*) - commentId: M:OpenTK.Graphics.Wgl.Wgl.ARB.ChoosePixelFormatARB(System.IntPtr,OpenTK.Graphics.Wgl.PixelFormatAttribute*,System.Single*,System.UInt32,System.Int32*,System.UInt32*) - id: ChoosePixelFormatARB(System.IntPtr,OpenTK.Graphics.Wgl.PixelFormatAttribute*,System.Single*,System.UInt32,System.Int32*,System.UInt32*) - parent: OpenTK.Graphics.Wgl.Wgl.ARB - langs: - - csharp - - vb - name: ChoosePixelFormatARB(nint, PixelFormatAttribute*, float*, uint, int*, uint*) - nameWithType: Wgl.ARB.ChoosePixelFormatARB(nint, PixelFormatAttribute*, float*, uint, int*, uint*) - fullName: OpenTK.Graphics.Wgl.Wgl.ARB.ChoosePixelFormatARB(nint, OpenTK.Graphics.Wgl.PixelFormatAttribute*, float*, uint, int*, uint*) - type: Method - source: - id: ChoosePixelFormatARB - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs - startLine: 134 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_ARB_pixel_format] - - [entry point: wglChoosePixelFormatARB] - -
- example: [] - syntax: - content: public static int ChoosePixelFormatARB(nint hdc, PixelFormatAttribute* piAttribIList, float* pfAttribFList, uint nMaxFormats, int* piFormats, uint* nNumFormats) - parameters: - - id: hdc - type: System.IntPtr - - id: piAttribIList - type: OpenTK.Graphics.Wgl.PixelFormatAttribute* - - id: pfAttribFList - type: System.Single* - - id: nMaxFormats - type: System.UInt32 - - id: piFormats - type: System.Int32* - - id: nNumFormats - type: System.UInt32* - return: - type: System.Int32 - content.vb: Public Shared Function ChoosePixelFormatARB(hdc As IntPtr, piAttribIList As PixelFormatAttribute*, pfAttribFList As Single*, nMaxFormats As UInteger, piFormats As Integer*, nNumFormats As UInteger*) As Integer - overload: OpenTK.Graphics.Wgl.Wgl.ARB.ChoosePixelFormatARB* - nameWithType.vb: Wgl.ARB.ChoosePixelFormatARB(IntPtr, PixelFormatAttribute*, Single*, UInteger, Integer*, UInteger*) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.ARB.ChoosePixelFormatARB(System.IntPtr, OpenTK.Graphics.Wgl.PixelFormatAttribute*, Single*, UInteger, Integer*, UInteger*) - name.vb: ChoosePixelFormatARB(IntPtr, PixelFormatAttribute*, Single*, UInteger, Integer*, UInteger*) -- uid: OpenTK.Graphics.Wgl.Wgl.ARB.CreateBufferRegionARB(System.IntPtr,System.Int32,OpenTK.Graphics.Wgl.ColorBufferMask) - commentId: M:OpenTK.Graphics.Wgl.Wgl.ARB.CreateBufferRegionARB(System.IntPtr,System.Int32,OpenTK.Graphics.Wgl.ColorBufferMask) - id: CreateBufferRegionARB(System.IntPtr,System.Int32,OpenTK.Graphics.Wgl.ColorBufferMask) - parent: OpenTK.Graphics.Wgl.Wgl.ARB - langs: - - csharp - - vb - name: CreateBufferRegionARB(nint, int, ColorBufferMask) - nameWithType: Wgl.ARB.CreateBufferRegionARB(nint, int, ColorBufferMask) - fullName: OpenTK.Graphics.Wgl.Wgl.ARB.CreateBufferRegionARB(nint, int, OpenTK.Graphics.Wgl.ColorBufferMask) - type: Method - source: - id: CreateBufferRegionARB - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs - startLine: 137 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_ARB_buffer_region] - - [entry point: wglCreateBufferRegionARB] - -
- example: [] - syntax: - content: public static nint CreateBufferRegionARB(nint hDC, int iLayerPlane, ColorBufferMask uType) - parameters: - - id: hDC - type: System.IntPtr - - id: iLayerPlane - type: System.Int32 - - id: uType - type: OpenTK.Graphics.Wgl.ColorBufferMask - return: - type: System.IntPtr - content.vb: Public Shared Function CreateBufferRegionARB(hDC As IntPtr, iLayerPlane As Integer, uType As ColorBufferMask) As IntPtr - overload: OpenTK.Graphics.Wgl.Wgl.ARB.CreateBufferRegionARB* - nameWithType.vb: Wgl.ARB.CreateBufferRegionARB(IntPtr, Integer, ColorBufferMask) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.ARB.CreateBufferRegionARB(System.IntPtr, Integer, OpenTK.Graphics.Wgl.ColorBufferMask) - name.vb: CreateBufferRegionARB(IntPtr, Integer, ColorBufferMask) -- uid: OpenTK.Graphics.Wgl.Wgl.ARB.CreateContextAttribsARB(System.IntPtr,System.IntPtr,OpenTK.Graphics.Wgl.ContextAttribs*) - commentId: M:OpenTK.Graphics.Wgl.Wgl.ARB.CreateContextAttribsARB(System.IntPtr,System.IntPtr,OpenTK.Graphics.Wgl.ContextAttribs*) - id: CreateContextAttribsARB(System.IntPtr,System.IntPtr,OpenTK.Graphics.Wgl.ContextAttribs*) - parent: OpenTK.Graphics.Wgl.Wgl.ARB - langs: - - csharp - - vb - name: CreateContextAttribsARB(nint, nint, ContextAttribs*) - nameWithType: Wgl.ARB.CreateContextAttribsARB(nint, nint, ContextAttribs*) - fullName: OpenTK.Graphics.Wgl.Wgl.ARB.CreateContextAttribsARB(nint, nint, OpenTK.Graphics.Wgl.ContextAttribs*) - type: Method - source: - id: CreateContextAttribsARB - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs - startLine: 140 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_ARB_create_context] - - [entry point: wglCreateContextAttribsARB] - -
- example: [] - syntax: - content: public static nint CreateContextAttribsARB(nint hDC, nint hShareContext, ContextAttribs* attribList) - parameters: - - id: hDC - type: System.IntPtr - - id: hShareContext - type: System.IntPtr - - id: attribList - type: OpenTK.Graphics.Wgl.ContextAttribs* - return: - type: System.IntPtr - content.vb: Public Shared Function CreateContextAttribsARB(hDC As IntPtr, hShareContext As IntPtr, attribList As ContextAttribs*) As IntPtr - overload: OpenTK.Graphics.Wgl.Wgl.ARB.CreateContextAttribsARB* - nameWithType.vb: Wgl.ARB.CreateContextAttribsARB(IntPtr, IntPtr, ContextAttribs*) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.ARB.CreateContextAttribsARB(System.IntPtr, System.IntPtr, OpenTK.Graphics.Wgl.ContextAttribs*) - name.vb: CreateContextAttribsARB(IntPtr, IntPtr, ContextAttribs*) -- uid: OpenTK.Graphics.Wgl.Wgl.ARB.CreatePbufferARB(System.IntPtr,System.Int32,System.Int32,System.Int32,System.Int32*) - commentId: M:OpenTK.Graphics.Wgl.Wgl.ARB.CreatePbufferARB(System.IntPtr,System.Int32,System.Int32,System.Int32,System.Int32*) - id: CreatePbufferARB(System.IntPtr,System.Int32,System.Int32,System.Int32,System.Int32*) - parent: OpenTK.Graphics.Wgl.Wgl.ARB - langs: - - csharp - - vb - name: CreatePbufferARB(nint, int, int, int, int*) - nameWithType: Wgl.ARB.CreatePbufferARB(nint, int, int, int, int*) - fullName: OpenTK.Graphics.Wgl.Wgl.ARB.CreatePbufferARB(nint, int, int, int, int*) - type: Method - source: - id: CreatePbufferARB - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs - startLine: 143 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_ARB_pbuffer] - - [entry point: wglCreatePbufferARB] - -
- example: [] - syntax: - content: public static nint CreatePbufferARB(nint hDC, int iPixelFormat, int iWidth, int iHeight, int* piAttribList) - parameters: - - id: hDC - type: System.IntPtr - - id: iPixelFormat - type: System.Int32 - - id: iWidth - type: System.Int32 - - id: iHeight - type: System.Int32 - - id: piAttribList - type: System.Int32* - return: - type: System.IntPtr - content.vb: Public Shared Function CreatePbufferARB(hDC As IntPtr, iPixelFormat As Integer, iWidth As Integer, iHeight As Integer, piAttribList As Integer*) As IntPtr - overload: OpenTK.Graphics.Wgl.Wgl.ARB.CreatePbufferARB* - nameWithType.vb: Wgl.ARB.CreatePbufferARB(IntPtr, Integer, Integer, Integer, Integer*) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.ARB.CreatePbufferARB(System.IntPtr, Integer, Integer, Integer, Integer*) - name.vb: CreatePbufferARB(IntPtr, Integer, Integer, Integer, Integer*) -- uid: OpenTK.Graphics.Wgl.Wgl.ARB.DeleteBufferRegionARB(System.IntPtr) - commentId: M:OpenTK.Graphics.Wgl.Wgl.ARB.DeleteBufferRegionARB(System.IntPtr) - id: DeleteBufferRegionARB(System.IntPtr) - parent: OpenTK.Graphics.Wgl.Wgl.ARB - langs: - - csharp - - vb - name: DeleteBufferRegionARB(nint) - nameWithType: Wgl.ARB.DeleteBufferRegionARB(nint) - fullName: OpenTK.Graphics.Wgl.Wgl.ARB.DeleteBufferRegionARB(nint) - type: Method - source: - id: DeleteBufferRegionARB - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs - startLine: 146 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_ARB_buffer_region] - - [entry point: wglDeleteBufferRegionARB] - -
- example: [] - syntax: - content: public static void DeleteBufferRegionARB(nint hRegion) - parameters: - - id: hRegion - type: System.IntPtr - content.vb: Public Shared Sub DeleteBufferRegionARB(hRegion As IntPtr) - overload: OpenTK.Graphics.Wgl.Wgl.ARB.DeleteBufferRegionARB* - nameWithType.vb: Wgl.ARB.DeleteBufferRegionARB(IntPtr) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.ARB.DeleteBufferRegionARB(System.IntPtr) - name.vb: DeleteBufferRegionARB(IntPtr) -- uid: OpenTK.Graphics.Wgl.Wgl.ARB.DestroyPbufferARB_(System.IntPtr) - commentId: M:OpenTK.Graphics.Wgl.Wgl.ARB.DestroyPbufferARB_(System.IntPtr) - id: DestroyPbufferARB_(System.IntPtr) - parent: OpenTK.Graphics.Wgl.Wgl.ARB - langs: - - csharp - - vb - name: DestroyPbufferARB_(nint) - nameWithType: Wgl.ARB.DestroyPbufferARB_(nint) - fullName: OpenTK.Graphics.Wgl.Wgl.ARB.DestroyPbufferARB_(nint) - type: Method - source: - id: DestroyPbufferARB_ - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs - startLine: 149 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_ARB_pbuffer] - - [entry point: wglDestroyPbufferARB] - -
- example: [] - syntax: - content: public static int DestroyPbufferARB_(nint hPbuffer) - parameters: - - id: hPbuffer - type: System.IntPtr - return: - type: System.Int32 - content.vb: Public Shared Function DestroyPbufferARB_(hPbuffer As IntPtr) As Integer - overload: OpenTK.Graphics.Wgl.Wgl.ARB.DestroyPbufferARB_* - nameWithType.vb: Wgl.ARB.DestroyPbufferARB_(IntPtr) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.ARB.DestroyPbufferARB_(System.IntPtr) - name.vb: DestroyPbufferARB_(IntPtr) -- uid: OpenTK.Graphics.Wgl.Wgl.ARB.GetCurrentReadDCARB - commentId: M:OpenTK.Graphics.Wgl.Wgl.ARB.GetCurrentReadDCARB - id: GetCurrentReadDCARB - parent: OpenTK.Graphics.Wgl.Wgl.ARB - langs: - - csharp - - vb - name: GetCurrentReadDCARB() - nameWithType: Wgl.ARB.GetCurrentReadDCARB() - fullName: OpenTK.Graphics.Wgl.Wgl.ARB.GetCurrentReadDCARB() - type: Method - source: - id: GetCurrentReadDCARB - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs - startLine: 152 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_ARB_make_current_read] - - [entry point: wglGetCurrentReadDCARB] - -
- example: [] - syntax: - content: public static nint GetCurrentReadDCARB() - return: - type: System.IntPtr - content.vb: Public Shared Function GetCurrentReadDCARB() As IntPtr - overload: OpenTK.Graphics.Wgl.Wgl.ARB.GetCurrentReadDCARB* -- uid: OpenTK.Graphics.Wgl.Wgl.ARB.GetExtensionsStringARB_(System.IntPtr) - commentId: M:OpenTK.Graphics.Wgl.Wgl.ARB.GetExtensionsStringARB_(System.IntPtr) - id: GetExtensionsStringARB_(System.IntPtr) - parent: OpenTK.Graphics.Wgl.Wgl.ARB - langs: - - csharp - - vb - name: GetExtensionsStringARB_(nint) - nameWithType: Wgl.ARB.GetExtensionsStringARB_(nint) - fullName: OpenTK.Graphics.Wgl.Wgl.ARB.GetExtensionsStringARB_(nint) - type: Method - source: - id: GetExtensionsStringARB_ - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs - startLine: 155 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_ARB_extensions_string] - - [entry point: wglGetExtensionsStringARB] - -
- example: [] - syntax: - content: public static byte* GetExtensionsStringARB_(nint hdc) - parameters: - - id: hdc - type: System.IntPtr - return: - type: System.Byte* - content.vb: Public Shared Function GetExtensionsStringARB_(hdc As IntPtr) As Byte* - overload: OpenTK.Graphics.Wgl.Wgl.ARB.GetExtensionsStringARB_* - nameWithType.vb: Wgl.ARB.GetExtensionsStringARB_(IntPtr) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.ARB.GetExtensionsStringARB_(System.IntPtr) - name.vb: GetExtensionsStringARB_(IntPtr) -- uid: OpenTK.Graphics.Wgl.Wgl.ARB.GetPbufferDCARB(System.IntPtr) - commentId: M:OpenTK.Graphics.Wgl.Wgl.ARB.GetPbufferDCARB(System.IntPtr) - id: GetPbufferDCARB(System.IntPtr) - parent: OpenTK.Graphics.Wgl.Wgl.ARB - langs: - - csharp - - vb - name: GetPbufferDCARB(nint) - nameWithType: Wgl.ARB.GetPbufferDCARB(nint) - fullName: OpenTK.Graphics.Wgl.Wgl.ARB.GetPbufferDCARB(nint) - type: Method - source: - id: GetPbufferDCARB - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs - startLine: 158 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_ARB_pbuffer] - - [entry point: wglGetPbufferDCARB] - -
- example: [] - syntax: - content: public static nint GetPbufferDCARB(nint hPbuffer) - parameters: - - id: hPbuffer - type: System.IntPtr - return: - type: System.IntPtr - content.vb: Public Shared Function GetPbufferDCARB(hPbuffer As IntPtr) As IntPtr - overload: OpenTK.Graphics.Wgl.Wgl.ARB.GetPbufferDCARB* - nameWithType.vb: Wgl.ARB.GetPbufferDCARB(IntPtr) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.ARB.GetPbufferDCARB(System.IntPtr) - name.vb: GetPbufferDCARB(IntPtr) -- uid: OpenTK.Graphics.Wgl.Wgl.ARB.GetPixelFormatAttribfvARB(System.IntPtr,System.Int32,System.Int32,System.UInt32,OpenTK.Graphics.Wgl.PixelFormatAttribute*,System.Single*) - commentId: M:OpenTK.Graphics.Wgl.Wgl.ARB.GetPixelFormatAttribfvARB(System.IntPtr,System.Int32,System.Int32,System.UInt32,OpenTK.Graphics.Wgl.PixelFormatAttribute*,System.Single*) - id: GetPixelFormatAttribfvARB(System.IntPtr,System.Int32,System.Int32,System.UInt32,OpenTK.Graphics.Wgl.PixelFormatAttribute*,System.Single*) - parent: OpenTK.Graphics.Wgl.Wgl.ARB - langs: - - csharp - - vb - name: GetPixelFormatAttribfvARB(nint, int, int, uint, PixelFormatAttribute*, float*) - nameWithType: Wgl.ARB.GetPixelFormatAttribfvARB(nint, int, int, uint, PixelFormatAttribute*, float*) - fullName: OpenTK.Graphics.Wgl.Wgl.ARB.GetPixelFormatAttribfvARB(nint, int, int, uint, OpenTK.Graphics.Wgl.PixelFormatAttribute*, float*) - type: Method - source: - id: GetPixelFormatAttribfvARB - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs - startLine: 161 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_ARB_pixel_format] - - [entry point: wglGetPixelFormatAttribfvARB] - -
- example: [] - syntax: - content: public static int GetPixelFormatAttribfvARB(nint hdc, int iPixelFormat, int iLayerPlane, uint nAttributes, PixelFormatAttribute* piAttributes, float* pfValues) - parameters: - - id: hdc - type: System.IntPtr - - id: iPixelFormat - type: System.Int32 - - id: iLayerPlane - type: System.Int32 - - id: nAttributes - type: System.UInt32 - - id: piAttributes - type: OpenTK.Graphics.Wgl.PixelFormatAttribute* - - id: pfValues - type: System.Single* - return: - type: System.Int32 - content.vb: Public Shared Function GetPixelFormatAttribfvARB(hdc As IntPtr, iPixelFormat As Integer, iLayerPlane As Integer, nAttributes As UInteger, piAttributes As PixelFormatAttribute*, pfValues As Single*) As Integer - overload: OpenTK.Graphics.Wgl.Wgl.ARB.GetPixelFormatAttribfvARB* - nameWithType.vb: Wgl.ARB.GetPixelFormatAttribfvARB(IntPtr, Integer, Integer, UInteger, PixelFormatAttribute*, Single*) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.ARB.GetPixelFormatAttribfvARB(System.IntPtr, Integer, Integer, UInteger, OpenTK.Graphics.Wgl.PixelFormatAttribute*, Single*) - name.vb: GetPixelFormatAttribfvARB(IntPtr, Integer, Integer, UInteger, PixelFormatAttribute*, Single*) -- uid: OpenTK.Graphics.Wgl.Wgl.ARB.GetPixelFormatAttribivARB(System.IntPtr,System.Int32,System.Int32,System.UInt32,OpenTK.Graphics.Wgl.PixelFormatAttribute*,System.Int32*) - commentId: M:OpenTK.Graphics.Wgl.Wgl.ARB.GetPixelFormatAttribivARB(System.IntPtr,System.Int32,System.Int32,System.UInt32,OpenTK.Graphics.Wgl.PixelFormatAttribute*,System.Int32*) - id: GetPixelFormatAttribivARB(System.IntPtr,System.Int32,System.Int32,System.UInt32,OpenTK.Graphics.Wgl.PixelFormatAttribute*,System.Int32*) - parent: OpenTK.Graphics.Wgl.Wgl.ARB - langs: - - csharp - - vb - name: GetPixelFormatAttribivARB(nint, int, int, uint, PixelFormatAttribute*, int*) - nameWithType: Wgl.ARB.GetPixelFormatAttribivARB(nint, int, int, uint, PixelFormatAttribute*, int*) - fullName: OpenTK.Graphics.Wgl.Wgl.ARB.GetPixelFormatAttribivARB(nint, int, int, uint, OpenTK.Graphics.Wgl.PixelFormatAttribute*, int*) - type: Method - source: - id: GetPixelFormatAttribivARB - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs - startLine: 164 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_ARB_pixel_format] - - [entry point: wglGetPixelFormatAttribivARB] - -
- example: [] - syntax: - content: public static int GetPixelFormatAttribivARB(nint hdc, int iPixelFormat, int iLayerPlane, uint nAttributes, PixelFormatAttribute* piAttributes, int* piValues) - parameters: - - id: hdc - type: System.IntPtr - - id: iPixelFormat - type: System.Int32 - - id: iLayerPlane - type: System.Int32 - - id: nAttributes - type: System.UInt32 - - id: piAttributes - type: OpenTK.Graphics.Wgl.PixelFormatAttribute* - - id: piValues - type: System.Int32* - return: - type: System.Int32 - content.vb: Public Shared Function GetPixelFormatAttribivARB(hdc As IntPtr, iPixelFormat As Integer, iLayerPlane As Integer, nAttributes As UInteger, piAttributes As PixelFormatAttribute*, piValues As Integer*) As Integer - overload: OpenTK.Graphics.Wgl.Wgl.ARB.GetPixelFormatAttribivARB* - nameWithType.vb: Wgl.ARB.GetPixelFormatAttribivARB(IntPtr, Integer, Integer, UInteger, PixelFormatAttribute*, Integer*) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.ARB.GetPixelFormatAttribivARB(System.IntPtr, Integer, Integer, UInteger, OpenTK.Graphics.Wgl.PixelFormatAttribute*, Integer*) - name.vb: GetPixelFormatAttribivARB(IntPtr, Integer, Integer, UInteger, PixelFormatAttribute*, Integer*) -- uid: OpenTK.Graphics.Wgl.Wgl.ARB.MakeContextCurrentARB_(System.IntPtr,System.IntPtr,System.IntPtr) - commentId: M:OpenTK.Graphics.Wgl.Wgl.ARB.MakeContextCurrentARB_(System.IntPtr,System.IntPtr,System.IntPtr) - id: MakeContextCurrentARB_(System.IntPtr,System.IntPtr,System.IntPtr) - parent: OpenTK.Graphics.Wgl.Wgl.ARB - langs: - - csharp - - vb - name: MakeContextCurrentARB_(nint, nint, nint) - nameWithType: Wgl.ARB.MakeContextCurrentARB_(nint, nint, nint) - fullName: OpenTK.Graphics.Wgl.Wgl.ARB.MakeContextCurrentARB_(nint, nint, nint) - type: Method - source: - id: MakeContextCurrentARB_ - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs - startLine: 167 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_ARB_make_current_read] - - [entry point: wglMakeContextCurrentARB] - -
- example: [] - syntax: - content: public static int MakeContextCurrentARB_(nint hDrawDC, nint hReadDC, nint hglrc) - parameters: - - id: hDrawDC - type: System.IntPtr - - id: hReadDC - type: System.IntPtr - - id: hglrc - type: System.IntPtr - return: - type: System.Int32 - content.vb: Public Shared Function MakeContextCurrentARB_(hDrawDC As IntPtr, hReadDC As IntPtr, hglrc As IntPtr) As Integer - overload: OpenTK.Graphics.Wgl.Wgl.ARB.MakeContextCurrentARB_* - nameWithType.vb: Wgl.ARB.MakeContextCurrentARB_(IntPtr, IntPtr, IntPtr) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.ARB.MakeContextCurrentARB_(System.IntPtr, System.IntPtr, System.IntPtr) - name.vb: MakeContextCurrentARB_(IntPtr, IntPtr, IntPtr) -- uid: OpenTK.Graphics.Wgl.Wgl.ARB.QueryPbufferARB(System.IntPtr,OpenTK.Graphics.Wgl.PBufferAttribute,System.Int32*) - commentId: M:OpenTK.Graphics.Wgl.Wgl.ARB.QueryPbufferARB(System.IntPtr,OpenTK.Graphics.Wgl.PBufferAttribute,System.Int32*) - id: QueryPbufferARB(System.IntPtr,OpenTK.Graphics.Wgl.PBufferAttribute,System.Int32*) - parent: OpenTK.Graphics.Wgl.Wgl.ARB - langs: - - csharp - - vb - name: QueryPbufferARB(nint, PBufferAttribute, int*) - nameWithType: Wgl.ARB.QueryPbufferARB(nint, PBufferAttribute, int*) - fullName: OpenTK.Graphics.Wgl.Wgl.ARB.QueryPbufferARB(nint, OpenTK.Graphics.Wgl.PBufferAttribute, int*) - type: Method - source: - id: QueryPbufferARB - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs - startLine: 170 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_ARB_pbuffer] - - [entry point: wglQueryPbufferARB] - -
- example: [] - syntax: - content: public static int QueryPbufferARB(nint hPbuffer, PBufferAttribute iAttribute, int* piValue) - parameters: - - id: hPbuffer - type: System.IntPtr - - id: iAttribute - type: OpenTK.Graphics.Wgl.PBufferAttribute - - id: piValue - type: System.Int32* - return: - type: System.Int32 - content.vb: Public Shared Function QueryPbufferARB(hPbuffer As IntPtr, iAttribute As PBufferAttribute, piValue As Integer*) As Integer - overload: OpenTK.Graphics.Wgl.Wgl.ARB.QueryPbufferARB* - nameWithType.vb: Wgl.ARB.QueryPbufferARB(IntPtr, PBufferAttribute, Integer*) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.ARB.QueryPbufferARB(System.IntPtr, OpenTK.Graphics.Wgl.PBufferAttribute, Integer*) - name.vb: QueryPbufferARB(IntPtr, PBufferAttribute, Integer*) -- uid: OpenTK.Graphics.Wgl.Wgl.ARB.ReleasePbufferDCARB(System.IntPtr,System.IntPtr) - commentId: M:OpenTK.Graphics.Wgl.Wgl.ARB.ReleasePbufferDCARB(System.IntPtr,System.IntPtr) - id: ReleasePbufferDCARB(System.IntPtr,System.IntPtr) - parent: OpenTK.Graphics.Wgl.Wgl.ARB - langs: - - csharp - - vb - name: ReleasePbufferDCARB(nint, nint) - nameWithType: Wgl.ARB.ReleasePbufferDCARB(nint, nint) - fullName: OpenTK.Graphics.Wgl.Wgl.ARB.ReleasePbufferDCARB(nint, nint) - type: Method - source: - id: ReleasePbufferDCARB - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs - startLine: 173 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_ARB_pbuffer] - - [entry point: wglReleasePbufferDCARB] - -
- example: [] - syntax: - content: public static int ReleasePbufferDCARB(nint hPbuffer, nint hDC) - parameters: - - id: hPbuffer - type: System.IntPtr - - id: hDC - type: System.IntPtr - return: - type: System.Int32 - content.vb: Public Shared Function ReleasePbufferDCARB(hPbuffer As IntPtr, hDC As IntPtr) As Integer - overload: OpenTK.Graphics.Wgl.Wgl.ARB.ReleasePbufferDCARB* - nameWithType.vb: Wgl.ARB.ReleasePbufferDCARB(IntPtr, IntPtr) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.ARB.ReleasePbufferDCARB(System.IntPtr, System.IntPtr) - name.vb: ReleasePbufferDCARB(IntPtr, IntPtr) -- uid: OpenTK.Graphics.Wgl.Wgl.ARB.ReleaseTexImageARB_(System.IntPtr,OpenTK.Graphics.Wgl.ColorBuffer) - commentId: M:OpenTK.Graphics.Wgl.Wgl.ARB.ReleaseTexImageARB_(System.IntPtr,OpenTK.Graphics.Wgl.ColorBuffer) - id: ReleaseTexImageARB_(System.IntPtr,OpenTK.Graphics.Wgl.ColorBuffer) - parent: OpenTK.Graphics.Wgl.Wgl.ARB - langs: - - csharp - - vb - name: ReleaseTexImageARB_(nint, ColorBuffer) - nameWithType: Wgl.ARB.ReleaseTexImageARB_(nint, ColorBuffer) - fullName: OpenTK.Graphics.Wgl.Wgl.ARB.ReleaseTexImageARB_(nint, OpenTK.Graphics.Wgl.ColorBuffer) - type: Method - source: - id: ReleaseTexImageARB_ - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs - startLine: 176 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_ARB_render_texture] - - [entry point: wglReleaseTexImageARB] - -
- example: [] - syntax: - content: public static int ReleaseTexImageARB_(nint hPbuffer, ColorBuffer iBuffer) - parameters: - - id: hPbuffer - type: System.IntPtr - - id: iBuffer - type: OpenTK.Graphics.Wgl.ColorBuffer - return: - type: System.Int32 - content.vb: Public Shared Function ReleaseTexImageARB_(hPbuffer As IntPtr, iBuffer As ColorBuffer) As Integer - overload: OpenTK.Graphics.Wgl.Wgl.ARB.ReleaseTexImageARB_* - nameWithType.vb: Wgl.ARB.ReleaseTexImageARB_(IntPtr, ColorBuffer) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.ARB.ReleaseTexImageARB_(System.IntPtr, OpenTK.Graphics.Wgl.ColorBuffer) - name.vb: ReleaseTexImageARB_(IntPtr, ColorBuffer) -- uid: OpenTK.Graphics.Wgl.Wgl.ARB.RestoreBufferRegionARB_(System.IntPtr,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32) - commentId: M:OpenTK.Graphics.Wgl.Wgl.ARB.RestoreBufferRegionARB_(System.IntPtr,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32) - id: RestoreBufferRegionARB_(System.IntPtr,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32) - parent: OpenTK.Graphics.Wgl.Wgl.ARB - langs: - - csharp - - vb - name: RestoreBufferRegionARB_(nint, int, int, int, int, int, int) - nameWithType: Wgl.ARB.RestoreBufferRegionARB_(nint, int, int, int, int, int, int) - fullName: OpenTK.Graphics.Wgl.Wgl.ARB.RestoreBufferRegionARB_(nint, int, int, int, int, int, int) - type: Method - source: - id: RestoreBufferRegionARB_ - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs - startLine: 179 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_ARB_buffer_region] - - [entry point: wglRestoreBufferRegionARB] - -
- example: [] - syntax: - content: public static int RestoreBufferRegionARB_(nint hRegion, int x, int y, int width, int height, int xSrc, int ySrc) - parameters: - - id: hRegion - type: System.IntPtr - - id: x - type: System.Int32 - - id: y - type: System.Int32 - - id: width - type: System.Int32 - - id: height - type: System.Int32 - - id: xSrc - type: System.Int32 - - id: ySrc - type: System.Int32 - return: - type: System.Int32 - content.vb: Public Shared Function RestoreBufferRegionARB_(hRegion As IntPtr, x As Integer, y As Integer, width As Integer, height As Integer, xSrc As Integer, ySrc As Integer) As Integer - overload: OpenTK.Graphics.Wgl.Wgl.ARB.RestoreBufferRegionARB_* - nameWithType.vb: Wgl.ARB.RestoreBufferRegionARB_(IntPtr, Integer, Integer, Integer, Integer, Integer, Integer) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.ARB.RestoreBufferRegionARB_(System.IntPtr, Integer, Integer, Integer, Integer, Integer, Integer) - name.vb: RestoreBufferRegionARB_(IntPtr, Integer, Integer, Integer, Integer, Integer, Integer) -- uid: OpenTK.Graphics.Wgl.Wgl.ARB.SaveBufferRegionARB_(System.IntPtr,System.Int32,System.Int32,System.Int32,System.Int32) - commentId: M:OpenTK.Graphics.Wgl.Wgl.ARB.SaveBufferRegionARB_(System.IntPtr,System.Int32,System.Int32,System.Int32,System.Int32) - id: SaveBufferRegionARB_(System.IntPtr,System.Int32,System.Int32,System.Int32,System.Int32) - parent: OpenTK.Graphics.Wgl.Wgl.ARB - langs: - - csharp - - vb - name: SaveBufferRegionARB_(nint, int, int, int, int) - nameWithType: Wgl.ARB.SaveBufferRegionARB_(nint, int, int, int, int) - fullName: OpenTK.Graphics.Wgl.Wgl.ARB.SaveBufferRegionARB_(nint, int, int, int, int) - type: Method - source: - id: SaveBufferRegionARB_ - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs - startLine: 182 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_ARB_buffer_region] - - [entry point: wglSaveBufferRegionARB] - -
- example: [] - syntax: - content: public static int SaveBufferRegionARB_(nint hRegion, int x, int y, int width, int height) - parameters: - - id: hRegion - type: System.IntPtr - - id: x - type: System.Int32 - - id: y - type: System.Int32 - - id: width - type: System.Int32 - - id: height - type: System.Int32 - return: - type: System.Int32 - content.vb: Public Shared Function SaveBufferRegionARB_(hRegion As IntPtr, x As Integer, y As Integer, width As Integer, height As Integer) As Integer - overload: OpenTK.Graphics.Wgl.Wgl.ARB.SaveBufferRegionARB_* - nameWithType.vb: Wgl.ARB.SaveBufferRegionARB_(IntPtr, Integer, Integer, Integer, Integer) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.ARB.SaveBufferRegionARB_(System.IntPtr, Integer, Integer, Integer, Integer) - name.vb: SaveBufferRegionARB_(IntPtr, Integer, Integer, Integer, Integer) -- uid: OpenTK.Graphics.Wgl.Wgl.ARB.SetPbufferAttribARB(System.IntPtr,System.Int32*) - commentId: M:OpenTK.Graphics.Wgl.Wgl.ARB.SetPbufferAttribARB(System.IntPtr,System.Int32*) - id: SetPbufferAttribARB(System.IntPtr,System.Int32*) - parent: OpenTK.Graphics.Wgl.Wgl.ARB - langs: - - csharp - - vb - name: SetPbufferAttribARB(nint, int*) - nameWithType: Wgl.ARB.SetPbufferAttribARB(nint, int*) - fullName: OpenTK.Graphics.Wgl.Wgl.ARB.SetPbufferAttribARB(nint, int*) - type: Method - source: - id: SetPbufferAttribARB - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs - startLine: 185 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_ARB_render_texture] - - [entry point: wglSetPbufferAttribARB] - -
- example: [] - syntax: - content: public static int SetPbufferAttribARB(nint hPbuffer, int* piAttribList) - parameters: - - id: hPbuffer - type: System.IntPtr - - id: piAttribList - type: System.Int32* - return: - type: System.Int32 - content.vb: Public Shared Function SetPbufferAttribARB(hPbuffer As IntPtr, piAttribList As Integer*) As Integer - overload: OpenTK.Graphics.Wgl.Wgl.ARB.SetPbufferAttribARB* - nameWithType.vb: Wgl.ARB.SetPbufferAttribARB(IntPtr, Integer*) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.ARB.SetPbufferAttribARB(System.IntPtr, Integer*) - name.vb: SetPbufferAttribARB(IntPtr, Integer*) -- uid: OpenTK.Graphics.Wgl.Wgl.ARB.BindTexImageARB(System.IntPtr,OpenTK.Graphics.Wgl.ColorBuffer) - commentId: M:OpenTK.Graphics.Wgl.Wgl.ARB.BindTexImageARB(System.IntPtr,OpenTK.Graphics.Wgl.ColorBuffer) - id: BindTexImageARB(System.IntPtr,OpenTK.Graphics.Wgl.ColorBuffer) - parent: OpenTK.Graphics.Wgl.Wgl.ARB - langs: - - csharp - - vb - name: BindTexImageARB(nint, ColorBuffer) - nameWithType: Wgl.ARB.BindTexImageARB(nint, ColorBuffer) - fullName: OpenTK.Graphics.Wgl.Wgl.ARB.BindTexImageARB(nint, OpenTK.Graphics.Wgl.ColorBuffer) - type: Method - source: - id: BindTexImageARB - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 390 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - example: [] - syntax: - content: public static bool BindTexImageARB(nint hPbuffer, ColorBuffer iBuffer) - parameters: - - id: hPbuffer - type: System.IntPtr - - id: iBuffer - type: OpenTK.Graphics.Wgl.ColorBuffer - return: - type: System.Boolean - content.vb: Public Shared Function BindTexImageARB(hPbuffer As IntPtr, iBuffer As ColorBuffer) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.ARB.BindTexImageARB* - nameWithType.vb: Wgl.ARB.BindTexImageARB(IntPtr, ColorBuffer) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.ARB.BindTexImageARB(System.IntPtr, OpenTK.Graphics.Wgl.ColorBuffer) - name.vb: BindTexImageARB(IntPtr, ColorBuffer) -- uid: OpenTK.Graphics.Wgl.Wgl.ARB.ChoosePixelFormatARB(System.IntPtr,System.ReadOnlySpan{OpenTK.Graphics.Wgl.PixelFormatAttribute},System.ReadOnlySpan{System.Single},System.UInt32,System.Span{System.Int32},System.UInt32@) - commentId: M:OpenTK.Graphics.Wgl.Wgl.ARB.ChoosePixelFormatARB(System.IntPtr,System.ReadOnlySpan{OpenTK.Graphics.Wgl.PixelFormatAttribute},System.ReadOnlySpan{System.Single},System.UInt32,System.Span{System.Int32},System.UInt32@) - id: ChoosePixelFormatARB(System.IntPtr,System.ReadOnlySpan{OpenTK.Graphics.Wgl.PixelFormatAttribute},System.ReadOnlySpan{System.Single},System.UInt32,System.Span{System.Int32},System.UInt32@) - parent: OpenTK.Graphics.Wgl.Wgl.ARB - langs: - - csharp - - vb - name: ChoosePixelFormatARB(nint, ReadOnlySpan, ReadOnlySpan, uint, Span, out uint) - nameWithType: Wgl.ARB.ChoosePixelFormatARB(nint, ReadOnlySpan, ReadOnlySpan, uint, Span, out uint) - fullName: OpenTK.Graphics.Wgl.Wgl.ARB.ChoosePixelFormatARB(nint, System.ReadOnlySpan, System.ReadOnlySpan, uint, System.Span, out uint) - type: Method - source: - id: ChoosePixelFormatARB - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 399 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_ARB_pixel_format] - - [entry point: wglChoosePixelFormatARB] - -
- example: [] - syntax: - content: public static bool ChoosePixelFormatARB(nint hdc, ReadOnlySpan piAttribIList, ReadOnlySpan pfAttribFList, uint nMaxFormats, Span piFormats, out uint nNumFormats) - parameters: - - id: hdc - type: System.IntPtr - - id: piAttribIList - type: System.ReadOnlySpan{OpenTK.Graphics.Wgl.PixelFormatAttribute} - - id: pfAttribFList - type: System.ReadOnlySpan{System.Single} - - id: nMaxFormats - type: System.UInt32 - - id: piFormats - type: System.Span{System.Int32} - - id: nNumFormats - type: System.UInt32 - return: - type: System.Boolean - content.vb: Public Shared Function ChoosePixelFormatARB(hdc As IntPtr, piAttribIList As ReadOnlySpan(Of PixelFormatAttribute), pfAttribFList As ReadOnlySpan(Of Single), nMaxFormats As UInteger, piFormats As Span(Of Integer), nNumFormats As UInteger) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.ARB.ChoosePixelFormatARB* - nameWithType.vb: Wgl.ARB.ChoosePixelFormatARB(IntPtr, ReadOnlySpan(Of PixelFormatAttribute), ReadOnlySpan(Of Single), UInteger, Span(Of Integer), UInteger) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.ARB.ChoosePixelFormatARB(System.IntPtr, System.ReadOnlySpan(Of OpenTK.Graphics.Wgl.PixelFormatAttribute), System.ReadOnlySpan(Of Single), UInteger, System.Span(Of Integer), UInteger) - name.vb: ChoosePixelFormatARB(IntPtr, ReadOnlySpan(Of PixelFormatAttribute), ReadOnlySpan(Of Single), UInteger, Span(Of Integer), UInteger) -- uid: OpenTK.Graphics.Wgl.Wgl.ARB.ChoosePixelFormatARB(System.IntPtr,OpenTK.Graphics.Wgl.PixelFormatAttribute[],System.Single[],System.UInt32,System.Int32[],System.UInt32@) - commentId: M:OpenTK.Graphics.Wgl.Wgl.ARB.ChoosePixelFormatARB(System.IntPtr,OpenTK.Graphics.Wgl.PixelFormatAttribute[],System.Single[],System.UInt32,System.Int32[],System.UInt32@) - id: ChoosePixelFormatARB(System.IntPtr,OpenTK.Graphics.Wgl.PixelFormatAttribute[],System.Single[],System.UInt32,System.Int32[],System.UInt32@) - parent: OpenTK.Graphics.Wgl.Wgl.ARB - langs: - - csharp - - vb - name: ChoosePixelFormatARB(nint, PixelFormatAttribute[], float[], uint, int[], out uint) - nameWithType: Wgl.ARB.ChoosePixelFormatARB(nint, PixelFormatAttribute[], float[], uint, int[], out uint) - fullName: OpenTK.Graphics.Wgl.Wgl.ARB.ChoosePixelFormatARB(nint, OpenTK.Graphics.Wgl.PixelFormatAttribute[], float[], uint, int[], out uint) - type: Method - source: - id: ChoosePixelFormatARB - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 420 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_ARB_pixel_format] - - [entry point: wglChoosePixelFormatARB] - -
- example: [] - syntax: - content: public static bool ChoosePixelFormatARB(nint hdc, PixelFormatAttribute[] piAttribIList, float[] pfAttribFList, uint nMaxFormats, int[] piFormats, out uint nNumFormats) - parameters: - - id: hdc - type: System.IntPtr - - id: piAttribIList - type: OpenTK.Graphics.Wgl.PixelFormatAttribute[] - - id: pfAttribFList - type: System.Single[] - - id: nMaxFormats - type: System.UInt32 - - id: piFormats - type: System.Int32[] - - id: nNumFormats - type: System.UInt32 - return: - type: System.Boolean - content.vb: Public Shared Function ChoosePixelFormatARB(hdc As IntPtr, piAttribIList As PixelFormatAttribute(), pfAttribFList As Single(), nMaxFormats As UInteger, piFormats As Integer(), nNumFormats As UInteger) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.ARB.ChoosePixelFormatARB* - nameWithType.vb: Wgl.ARB.ChoosePixelFormatARB(IntPtr, PixelFormatAttribute(), Single(), UInteger, Integer(), UInteger) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.ARB.ChoosePixelFormatARB(System.IntPtr, OpenTK.Graphics.Wgl.PixelFormatAttribute(), Single(), UInteger, Integer(), UInteger) - name.vb: ChoosePixelFormatARB(IntPtr, PixelFormatAttribute(), Single(), UInteger, Integer(), UInteger) -- uid: OpenTK.Graphics.Wgl.Wgl.ARB.ChoosePixelFormatARB(System.IntPtr,OpenTK.Graphics.Wgl.PixelFormatAttribute@,System.Single@,System.UInt32,System.Int32@,System.UInt32@) - commentId: M:OpenTK.Graphics.Wgl.Wgl.ARB.ChoosePixelFormatARB(System.IntPtr,OpenTK.Graphics.Wgl.PixelFormatAttribute@,System.Single@,System.UInt32,System.Int32@,System.UInt32@) - id: ChoosePixelFormatARB(System.IntPtr,OpenTK.Graphics.Wgl.PixelFormatAttribute@,System.Single@,System.UInt32,System.Int32@,System.UInt32@) - parent: OpenTK.Graphics.Wgl.Wgl.ARB - langs: - - csharp - - vb - name: ChoosePixelFormatARB(nint, in PixelFormatAttribute, in float, uint, ref int, out uint) - nameWithType: Wgl.ARB.ChoosePixelFormatARB(nint, in PixelFormatAttribute, in float, uint, ref int, out uint) - fullName: OpenTK.Graphics.Wgl.Wgl.ARB.ChoosePixelFormatARB(nint, in OpenTK.Graphics.Wgl.PixelFormatAttribute, in float, uint, ref int, out uint) - type: Method - source: - id: ChoosePixelFormatARB - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 441 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_ARB_pixel_format] - - [entry point: wglChoosePixelFormatARB] - -
- example: [] - syntax: - content: public static bool ChoosePixelFormatARB(nint hdc, in PixelFormatAttribute piAttribIList, in float pfAttribFList, uint nMaxFormats, ref int piFormats, out uint nNumFormats) - parameters: - - id: hdc - type: System.IntPtr - - id: piAttribIList - type: OpenTK.Graphics.Wgl.PixelFormatAttribute - - id: pfAttribFList - type: System.Single - - id: nMaxFormats - type: System.UInt32 - - id: piFormats - type: System.Int32 - - id: nNumFormats - type: System.UInt32 - return: - type: System.Boolean - content.vb: Public Shared Function ChoosePixelFormatARB(hdc As IntPtr, piAttribIList As PixelFormatAttribute, pfAttribFList As Single, nMaxFormats As UInteger, piFormats As Integer, nNumFormats As UInteger) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.ARB.ChoosePixelFormatARB* - nameWithType.vb: Wgl.ARB.ChoosePixelFormatARB(IntPtr, PixelFormatAttribute, Single, UInteger, Integer, UInteger) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.ARB.ChoosePixelFormatARB(System.IntPtr, OpenTK.Graphics.Wgl.PixelFormatAttribute, Single, UInteger, Integer, UInteger) - name.vb: ChoosePixelFormatARB(IntPtr, PixelFormatAttribute, Single, UInteger, Integer, UInteger) -- uid: OpenTK.Graphics.Wgl.Wgl.ARB.CreateContextAttribsARB(System.IntPtr,System.IntPtr,System.ReadOnlySpan{OpenTK.Graphics.Wgl.ContextAttribs}) - commentId: M:OpenTK.Graphics.Wgl.Wgl.ARB.CreateContextAttribsARB(System.IntPtr,System.IntPtr,System.ReadOnlySpan{OpenTK.Graphics.Wgl.ContextAttribs}) - id: CreateContextAttribsARB(System.IntPtr,System.IntPtr,System.ReadOnlySpan{OpenTK.Graphics.Wgl.ContextAttribs}) - parent: OpenTK.Graphics.Wgl.Wgl.ARB - langs: - - csharp - - vb - name: CreateContextAttribsARB(nint, nint, ReadOnlySpan) - nameWithType: Wgl.ARB.CreateContextAttribsARB(nint, nint, ReadOnlySpan) - fullName: OpenTK.Graphics.Wgl.Wgl.ARB.CreateContextAttribsARB(nint, nint, System.ReadOnlySpan) - type: Method - source: - id: CreateContextAttribsARB - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 456 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_ARB_create_context] - - [entry point: wglCreateContextAttribsARB] - -
- example: [] - syntax: - content: public static nint CreateContextAttribsARB(nint hDC, nint hShareContext, ReadOnlySpan attribList) - parameters: - - id: hDC - type: System.IntPtr - - id: hShareContext - type: System.IntPtr - - id: attribList - type: System.ReadOnlySpan{OpenTK.Graphics.Wgl.ContextAttribs} - return: - type: System.IntPtr - content.vb: Public Shared Function CreateContextAttribsARB(hDC As IntPtr, hShareContext As IntPtr, attribList As ReadOnlySpan(Of ContextAttribs)) As IntPtr - overload: OpenTK.Graphics.Wgl.Wgl.ARB.CreateContextAttribsARB* - nameWithType.vb: Wgl.ARB.CreateContextAttribsARB(IntPtr, IntPtr, ReadOnlySpan(Of ContextAttribs)) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.ARB.CreateContextAttribsARB(System.IntPtr, System.IntPtr, System.ReadOnlySpan(Of OpenTK.Graphics.Wgl.ContextAttribs)) - name.vb: CreateContextAttribsARB(IntPtr, IntPtr, ReadOnlySpan(Of ContextAttribs)) -- uid: OpenTK.Graphics.Wgl.Wgl.ARB.CreateContextAttribsARB(System.IntPtr,System.IntPtr,OpenTK.Graphics.Wgl.ContextAttribs[]) - commentId: M:OpenTK.Graphics.Wgl.Wgl.ARB.CreateContextAttribsARB(System.IntPtr,System.IntPtr,OpenTK.Graphics.Wgl.ContextAttribs[]) - id: CreateContextAttribsARB(System.IntPtr,System.IntPtr,OpenTK.Graphics.Wgl.ContextAttribs[]) - parent: OpenTK.Graphics.Wgl.Wgl.ARB - langs: - - csharp - - vb - name: CreateContextAttribsARB(nint, nint, ContextAttribs[]) - nameWithType: Wgl.ARB.CreateContextAttribsARB(nint, nint, ContextAttribs[]) - fullName: OpenTK.Graphics.Wgl.Wgl.ARB.CreateContextAttribsARB(nint, nint, OpenTK.Graphics.Wgl.ContextAttribs[]) - type: Method - source: - id: CreateContextAttribsARB - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 466 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_ARB_create_context] - - [entry point: wglCreateContextAttribsARB] - -
- example: [] - syntax: - content: public static nint CreateContextAttribsARB(nint hDC, nint hShareContext, ContextAttribs[] attribList) - parameters: - - id: hDC - type: System.IntPtr - - id: hShareContext - type: System.IntPtr - - id: attribList - type: OpenTK.Graphics.Wgl.ContextAttribs[] - return: - type: System.IntPtr - content.vb: Public Shared Function CreateContextAttribsARB(hDC As IntPtr, hShareContext As IntPtr, attribList As ContextAttribs()) As IntPtr - overload: OpenTK.Graphics.Wgl.Wgl.ARB.CreateContextAttribsARB* - nameWithType.vb: Wgl.ARB.CreateContextAttribsARB(IntPtr, IntPtr, ContextAttribs()) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.ARB.CreateContextAttribsARB(System.IntPtr, System.IntPtr, OpenTK.Graphics.Wgl.ContextAttribs()) - name.vb: CreateContextAttribsARB(IntPtr, IntPtr, ContextAttribs()) -- uid: OpenTK.Graphics.Wgl.Wgl.ARB.CreateContextAttribsARB(System.IntPtr,System.IntPtr,OpenTK.Graphics.Wgl.ContextAttribs@) - commentId: M:OpenTK.Graphics.Wgl.Wgl.ARB.CreateContextAttribsARB(System.IntPtr,System.IntPtr,OpenTK.Graphics.Wgl.ContextAttribs@) - id: CreateContextAttribsARB(System.IntPtr,System.IntPtr,OpenTK.Graphics.Wgl.ContextAttribs@) - parent: OpenTK.Graphics.Wgl.Wgl.ARB - langs: - - csharp - - vb - name: CreateContextAttribsARB(nint, nint, in ContextAttribs) - nameWithType: Wgl.ARB.CreateContextAttribsARB(nint, nint, in ContextAttribs) - fullName: OpenTK.Graphics.Wgl.Wgl.ARB.CreateContextAttribsARB(nint, nint, in OpenTK.Graphics.Wgl.ContextAttribs) - type: Method - source: - id: CreateContextAttribsARB - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 476 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_ARB_create_context] - - [entry point: wglCreateContextAttribsARB] - -
- example: [] - syntax: - content: public static nint CreateContextAttribsARB(nint hDC, nint hShareContext, in ContextAttribs attribList) - parameters: - - id: hDC - type: System.IntPtr - - id: hShareContext - type: System.IntPtr - - id: attribList - type: OpenTK.Graphics.Wgl.ContextAttribs - return: - type: System.IntPtr - content.vb: Public Shared Function CreateContextAttribsARB(hDC As IntPtr, hShareContext As IntPtr, attribList As ContextAttribs) As IntPtr - overload: OpenTK.Graphics.Wgl.Wgl.ARB.CreateContextAttribsARB* - nameWithType.vb: Wgl.ARB.CreateContextAttribsARB(IntPtr, IntPtr, ContextAttribs) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.ARB.CreateContextAttribsARB(System.IntPtr, System.IntPtr, OpenTK.Graphics.Wgl.ContextAttribs) - name.vb: CreateContextAttribsARB(IntPtr, IntPtr, ContextAttribs) -- uid: OpenTK.Graphics.Wgl.Wgl.ARB.CreatePbufferARB(System.IntPtr,System.Int32,System.Int32,System.Int32,System.ReadOnlySpan{System.Int32}) - commentId: M:OpenTK.Graphics.Wgl.Wgl.ARB.CreatePbufferARB(System.IntPtr,System.Int32,System.Int32,System.Int32,System.ReadOnlySpan{System.Int32}) - id: CreatePbufferARB(System.IntPtr,System.Int32,System.Int32,System.Int32,System.ReadOnlySpan{System.Int32}) - parent: OpenTK.Graphics.Wgl.Wgl.ARB - langs: - - csharp - - vb - name: CreatePbufferARB(nint, int, int, int, ReadOnlySpan) - nameWithType: Wgl.ARB.CreatePbufferARB(nint, int, int, int, ReadOnlySpan) - fullName: OpenTK.Graphics.Wgl.Wgl.ARB.CreatePbufferARB(nint, int, int, int, System.ReadOnlySpan) - type: Method - source: - id: CreatePbufferARB - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 486 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_ARB_pbuffer] - - [entry point: wglCreatePbufferARB] - -
- example: [] - syntax: - content: public static nint CreatePbufferARB(nint hDC, int iPixelFormat, int iWidth, int iHeight, ReadOnlySpan piAttribList) - parameters: - - id: hDC - type: System.IntPtr - - id: iPixelFormat - type: System.Int32 - - id: iWidth - type: System.Int32 - - id: iHeight - type: System.Int32 - - id: piAttribList - type: System.ReadOnlySpan{System.Int32} - return: - type: System.IntPtr - content.vb: Public Shared Function CreatePbufferARB(hDC As IntPtr, iPixelFormat As Integer, iWidth As Integer, iHeight As Integer, piAttribList As ReadOnlySpan(Of Integer)) As IntPtr - overload: OpenTK.Graphics.Wgl.Wgl.ARB.CreatePbufferARB* - nameWithType.vb: Wgl.ARB.CreatePbufferARB(IntPtr, Integer, Integer, Integer, ReadOnlySpan(Of Integer)) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.ARB.CreatePbufferARB(System.IntPtr, Integer, Integer, Integer, System.ReadOnlySpan(Of Integer)) - name.vb: CreatePbufferARB(IntPtr, Integer, Integer, Integer, ReadOnlySpan(Of Integer)) -- uid: OpenTK.Graphics.Wgl.Wgl.ARB.CreatePbufferARB(System.IntPtr,System.Int32,System.Int32,System.Int32,System.Int32[]) - commentId: M:OpenTK.Graphics.Wgl.Wgl.ARB.CreatePbufferARB(System.IntPtr,System.Int32,System.Int32,System.Int32,System.Int32[]) - id: CreatePbufferARB(System.IntPtr,System.Int32,System.Int32,System.Int32,System.Int32[]) - parent: OpenTK.Graphics.Wgl.Wgl.ARB - langs: - - csharp - - vb - name: CreatePbufferARB(nint, int, int, int, int[]) - nameWithType: Wgl.ARB.CreatePbufferARB(nint, int, int, int, int[]) - fullName: OpenTK.Graphics.Wgl.Wgl.ARB.CreatePbufferARB(nint, int, int, int, int[]) - type: Method - source: - id: CreatePbufferARB - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 496 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_ARB_pbuffer] - - [entry point: wglCreatePbufferARB] - -
- example: [] - syntax: - content: public static nint CreatePbufferARB(nint hDC, int iPixelFormat, int iWidth, int iHeight, int[] piAttribList) - parameters: - - id: hDC - type: System.IntPtr - - id: iPixelFormat - type: System.Int32 - - id: iWidth - type: System.Int32 - - id: iHeight - type: System.Int32 - - id: piAttribList - type: System.Int32[] - return: - type: System.IntPtr - content.vb: Public Shared Function CreatePbufferARB(hDC As IntPtr, iPixelFormat As Integer, iWidth As Integer, iHeight As Integer, piAttribList As Integer()) As IntPtr - overload: OpenTK.Graphics.Wgl.Wgl.ARB.CreatePbufferARB* - nameWithType.vb: Wgl.ARB.CreatePbufferARB(IntPtr, Integer, Integer, Integer, Integer()) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.ARB.CreatePbufferARB(System.IntPtr, Integer, Integer, Integer, Integer()) - name.vb: CreatePbufferARB(IntPtr, Integer, Integer, Integer, Integer()) -- uid: OpenTK.Graphics.Wgl.Wgl.ARB.CreatePbufferARB(System.IntPtr,System.Int32,System.Int32,System.Int32,System.Int32@) - commentId: M:OpenTK.Graphics.Wgl.Wgl.ARB.CreatePbufferARB(System.IntPtr,System.Int32,System.Int32,System.Int32,System.Int32@) - id: CreatePbufferARB(System.IntPtr,System.Int32,System.Int32,System.Int32,System.Int32@) - parent: OpenTK.Graphics.Wgl.Wgl.ARB - langs: - - csharp - - vb - name: CreatePbufferARB(nint, int, int, int, in int) - nameWithType: Wgl.ARB.CreatePbufferARB(nint, int, int, int, in int) - fullName: OpenTK.Graphics.Wgl.Wgl.ARB.CreatePbufferARB(nint, int, int, int, in int) - type: Method - source: - id: CreatePbufferARB - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 506 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_ARB_pbuffer] - - [entry point: wglCreatePbufferARB] - -
- example: [] - syntax: - content: public static nint CreatePbufferARB(nint hDC, int iPixelFormat, int iWidth, int iHeight, in int piAttribList) - parameters: - - id: hDC - type: System.IntPtr - - id: iPixelFormat - type: System.Int32 - - id: iWidth - type: System.Int32 - - id: iHeight - type: System.Int32 - - id: piAttribList - type: System.Int32 - return: - type: System.IntPtr - content.vb: Public Shared Function CreatePbufferARB(hDC As IntPtr, iPixelFormat As Integer, iWidth As Integer, iHeight As Integer, piAttribList As Integer) As IntPtr - overload: OpenTK.Graphics.Wgl.Wgl.ARB.CreatePbufferARB* - nameWithType.vb: Wgl.ARB.CreatePbufferARB(IntPtr, Integer, Integer, Integer, Integer) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.ARB.CreatePbufferARB(System.IntPtr, Integer, Integer, Integer, Integer) - name.vb: CreatePbufferARB(IntPtr, Integer, Integer, Integer, Integer) -- uid: OpenTK.Graphics.Wgl.Wgl.ARB.DestroyPbufferARB(System.IntPtr) - commentId: M:OpenTK.Graphics.Wgl.Wgl.ARB.DestroyPbufferARB(System.IntPtr) - id: DestroyPbufferARB(System.IntPtr) - parent: OpenTK.Graphics.Wgl.Wgl.ARB - langs: - - csharp - - vb - name: DestroyPbufferARB(nint) - nameWithType: Wgl.ARB.DestroyPbufferARB(nint) - fullName: OpenTK.Graphics.Wgl.Wgl.ARB.DestroyPbufferARB(nint) - type: Method - source: - id: DestroyPbufferARB - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 516 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - example: [] - syntax: - content: public static bool DestroyPbufferARB(nint hPbuffer) - parameters: - - id: hPbuffer - type: System.IntPtr - return: - type: System.Boolean - content.vb: Public Shared Function DestroyPbufferARB(hPbuffer As IntPtr) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.ARB.DestroyPbufferARB* - nameWithType.vb: Wgl.ARB.DestroyPbufferARB(IntPtr) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.ARB.DestroyPbufferARB(System.IntPtr) - name.vb: DestroyPbufferARB(IntPtr) -- uid: OpenTK.Graphics.Wgl.Wgl.ARB.GetExtensionsStringARB(System.IntPtr) - commentId: M:OpenTK.Graphics.Wgl.Wgl.ARB.GetExtensionsStringARB(System.IntPtr) - id: GetExtensionsStringARB(System.IntPtr) - parent: OpenTK.Graphics.Wgl.Wgl.ARB - langs: - - csharp - - vb - name: GetExtensionsStringARB(nint) - nameWithType: Wgl.ARB.GetExtensionsStringARB(nint) - fullName: OpenTK.Graphics.Wgl.Wgl.ARB.GetExtensionsStringARB(nint) - type: Method - source: - id: GetExtensionsStringARB - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 525 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - example: [] - syntax: - content: public static string? GetExtensionsStringARB(nint hdc) - parameters: - - id: hdc - type: System.IntPtr - return: - type: System.String - content.vb: Public Shared Function GetExtensionsStringARB(hdc As IntPtr) As String - overload: OpenTK.Graphics.Wgl.Wgl.ARB.GetExtensionsStringARB* - nameWithType.vb: Wgl.ARB.GetExtensionsStringARB(IntPtr) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.ARB.GetExtensionsStringARB(System.IntPtr) - name.vb: GetExtensionsStringARB(IntPtr) -- uid: OpenTK.Graphics.Wgl.Wgl.ARB.GetPixelFormatAttribfvARB(System.IntPtr,System.Int32,System.Int32,System.UInt32,System.ReadOnlySpan{OpenTK.Graphics.Wgl.PixelFormatAttribute},System.Span{System.Single}) - commentId: M:OpenTK.Graphics.Wgl.Wgl.ARB.GetPixelFormatAttribfvARB(System.IntPtr,System.Int32,System.Int32,System.UInt32,System.ReadOnlySpan{OpenTK.Graphics.Wgl.PixelFormatAttribute},System.Span{System.Single}) - id: GetPixelFormatAttribfvARB(System.IntPtr,System.Int32,System.Int32,System.UInt32,System.ReadOnlySpan{OpenTK.Graphics.Wgl.PixelFormatAttribute},System.Span{System.Single}) - parent: OpenTK.Graphics.Wgl.Wgl.ARB - langs: - - csharp - - vb - name: GetPixelFormatAttribfvARB(nint, int, int, uint, ReadOnlySpan, Span) - nameWithType: Wgl.ARB.GetPixelFormatAttribfvARB(nint, int, int, uint, ReadOnlySpan, Span) - fullName: OpenTK.Graphics.Wgl.Wgl.ARB.GetPixelFormatAttribfvARB(nint, int, int, uint, System.ReadOnlySpan, System.Span) - type: Method - source: - id: GetPixelFormatAttribfvARB - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 534 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_ARB_pixel_format] - - [entry point: wglGetPixelFormatAttribfvARB] - -
- example: [] - syntax: - content: public static bool GetPixelFormatAttribfvARB(nint hdc, int iPixelFormat, int iLayerPlane, uint nAttributes, ReadOnlySpan piAttributes, Span pfValues) - parameters: - - id: hdc - type: System.IntPtr - - id: iPixelFormat - type: System.Int32 - - id: iLayerPlane - type: System.Int32 - - id: nAttributes - type: System.UInt32 - - id: piAttributes - type: System.ReadOnlySpan{OpenTK.Graphics.Wgl.PixelFormatAttribute} - - id: pfValues - type: System.Span{System.Single} - return: - type: System.Boolean - content.vb: Public Shared Function GetPixelFormatAttribfvARB(hdc As IntPtr, iPixelFormat As Integer, iLayerPlane As Integer, nAttributes As UInteger, piAttributes As ReadOnlySpan(Of PixelFormatAttribute), pfValues As Span(Of Single)) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.ARB.GetPixelFormatAttribfvARB* - nameWithType.vb: Wgl.ARB.GetPixelFormatAttribfvARB(IntPtr, Integer, Integer, UInteger, ReadOnlySpan(Of PixelFormatAttribute), Span(Of Single)) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.ARB.GetPixelFormatAttribfvARB(System.IntPtr, Integer, Integer, UInteger, System.ReadOnlySpan(Of OpenTK.Graphics.Wgl.PixelFormatAttribute), System.Span(Of Single)) - name.vb: GetPixelFormatAttribfvARB(IntPtr, Integer, Integer, UInteger, ReadOnlySpan(Of PixelFormatAttribute), Span(Of Single)) -- uid: OpenTK.Graphics.Wgl.Wgl.ARB.GetPixelFormatAttribfvARB(System.IntPtr,System.Int32,System.Int32,System.UInt32,OpenTK.Graphics.Wgl.PixelFormatAttribute[],System.Single[]) - commentId: M:OpenTK.Graphics.Wgl.Wgl.ARB.GetPixelFormatAttribfvARB(System.IntPtr,System.Int32,System.Int32,System.UInt32,OpenTK.Graphics.Wgl.PixelFormatAttribute[],System.Single[]) - id: GetPixelFormatAttribfvARB(System.IntPtr,System.Int32,System.Int32,System.UInt32,OpenTK.Graphics.Wgl.PixelFormatAttribute[],System.Single[]) - parent: OpenTK.Graphics.Wgl.Wgl.ARB - langs: - - csharp - - vb - name: GetPixelFormatAttribfvARB(nint, int, int, uint, PixelFormatAttribute[], float[]) - nameWithType: Wgl.ARB.GetPixelFormatAttribfvARB(nint, int, int, uint, PixelFormatAttribute[], float[]) - fullName: OpenTK.Graphics.Wgl.Wgl.ARB.GetPixelFormatAttribfvARB(nint, int, int, uint, OpenTK.Graphics.Wgl.PixelFormatAttribute[], float[]) - type: Method - source: - id: GetPixelFormatAttribfvARB - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 549 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_ARB_pixel_format] - - [entry point: wglGetPixelFormatAttribfvARB] - -
- example: [] - syntax: - content: public static bool GetPixelFormatAttribfvARB(nint hdc, int iPixelFormat, int iLayerPlane, uint nAttributes, PixelFormatAttribute[] piAttributes, float[] pfValues) - parameters: - - id: hdc - type: System.IntPtr - - id: iPixelFormat - type: System.Int32 - - id: iLayerPlane - type: System.Int32 - - id: nAttributes - type: System.UInt32 - - id: piAttributes - type: OpenTK.Graphics.Wgl.PixelFormatAttribute[] - - id: pfValues - type: System.Single[] - return: - type: System.Boolean - content.vb: Public Shared Function GetPixelFormatAttribfvARB(hdc As IntPtr, iPixelFormat As Integer, iLayerPlane As Integer, nAttributes As UInteger, piAttributes As PixelFormatAttribute(), pfValues As Single()) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.ARB.GetPixelFormatAttribfvARB* - nameWithType.vb: Wgl.ARB.GetPixelFormatAttribfvARB(IntPtr, Integer, Integer, UInteger, PixelFormatAttribute(), Single()) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.ARB.GetPixelFormatAttribfvARB(System.IntPtr, Integer, Integer, UInteger, OpenTK.Graphics.Wgl.PixelFormatAttribute(), Single()) - name.vb: GetPixelFormatAttribfvARB(IntPtr, Integer, Integer, UInteger, PixelFormatAttribute(), Single()) -- uid: OpenTK.Graphics.Wgl.Wgl.ARB.GetPixelFormatAttribfvARB(System.IntPtr,System.Int32,System.Int32,System.UInt32,OpenTK.Graphics.Wgl.PixelFormatAttribute@,System.Single@) - commentId: M:OpenTK.Graphics.Wgl.Wgl.ARB.GetPixelFormatAttribfvARB(System.IntPtr,System.Int32,System.Int32,System.UInt32,OpenTK.Graphics.Wgl.PixelFormatAttribute@,System.Single@) - id: GetPixelFormatAttribfvARB(System.IntPtr,System.Int32,System.Int32,System.UInt32,OpenTK.Graphics.Wgl.PixelFormatAttribute@,System.Single@) - parent: OpenTK.Graphics.Wgl.Wgl.ARB - langs: - - csharp - - vb - name: GetPixelFormatAttribfvARB(nint, int, int, uint, in PixelFormatAttribute, ref float) - nameWithType: Wgl.ARB.GetPixelFormatAttribfvARB(nint, int, int, uint, in PixelFormatAttribute, ref float) - fullName: OpenTK.Graphics.Wgl.Wgl.ARB.GetPixelFormatAttribfvARB(nint, int, int, uint, in OpenTK.Graphics.Wgl.PixelFormatAttribute, ref float) - type: Method - source: - id: GetPixelFormatAttribfvARB - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 564 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_ARB_pixel_format] - - [entry point: wglGetPixelFormatAttribfvARB] - -
- example: [] - syntax: - content: public static bool GetPixelFormatAttribfvARB(nint hdc, int iPixelFormat, int iLayerPlane, uint nAttributes, in PixelFormatAttribute piAttributes, ref float pfValues) - parameters: - - id: hdc - type: System.IntPtr - - id: iPixelFormat - type: System.Int32 - - id: iLayerPlane - type: System.Int32 - - id: nAttributes - type: System.UInt32 - - id: piAttributes - type: OpenTK.Graphics.Wgl.PixelFormatAttribute - - id: pfValues - type: System.Single - return: - type: System.Boolean - content.vb: Public Shared Function GetPixelFormatAttribfvARB(hdc As IntPtr, iPixelFormat As Integer, iLayerPlane As Integer, nAttributes As UInteger, piAttributes As PixelFormatAttribute, pfValues As Single) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.ARB.GetPixelFormatAttribfvARB* - nameWithType.vb: Wgl.ARB.GetPixelFormatAttribfvARB(IntPtr, Integer, Integer, UInteger, PixelFormatAttribute, Single) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.ARB.GetPixelFormatAttribfvARB(System.IntPtr, Integer, Integer, UInteger, OpenTK.Graphics.Wgl.PixelFormatAttribute, Single) - name.vb: GetPixelFormatAttribfvARB(IntPtr, Integer, Integer, UInteger, PixelFormatAttribute, Single) -- uid: OpenTK.Graphics.Wgl.Wgl.ARB.GetPixelFormatAttribivARB(System.IntPtr,System.Int32,System.Int32,System.UInt32,System.ReadOnlySpan{OpenTK.Graphics.Wgl.PixelFormatAttribute},System.Span{System.Int32}) - commentId: M:OpenTK.Graphics.Wgl.Wgl.ARB.GetPixelFormatAttribivARB(System.IntPtr,System.Int32,System.Int32,System.UInt32,System.ReadOnlySpan{OpenTK.Graphics.Wgl.PixelFormatAttribute},System.Span{System.Int32}) - id: GetPixelFormatAttribivARB(System.IntPtr,System.Int32,System.Int32,System.UInt32,System.ReadOnlySpan{OpenTK.Graphics.Wgl.PixelFormatAttribute},System.Span{System.Int32}) - parent: OpenTK.Graphics.Wgl.Wgl.ARB - langs: - - csharp - - vb - name: GetPixelFormatAttribivARB(nint, int, int, uint, ReadOnlySpan, Span) - nameWithType: Wgl.ARB.GetPixelFormatAttribivARB(nint, int, int, uint, ReadOnlySpan, Span) - fullName: OpenTK.Graphics.Wgl.Wgl.ARB.GetPixelFormatAttribivARB(nint, int, int, uint, System.ReadOnlySpan, System.Span) - type: Method - source: - id: GetPixelFormatAttribivARB - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 577 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_ARB_pixel_format] - - [entry point: wglGetPixelFormatAttribivARB] - -
- example: [] - syntax: - content: public static bool GetPixelFormatAttribivARB(nint hdc, int iPixelFormat, int iLayerPlane, uint nAttributes, ReadOnlySpan piAttributes, Span piValues) - parameters: - - id: hdc - type: System.IntPtr - - id: iPixelFormat - type: System.Int32 - - id: iLayerPlane - type: System.Int32 - - id: nAttributes - type: System.UInt32 - - id: piAttributes - type: System.ReadOnlySpan{OpenTK.Graphics.Wgl.PixelFormatAttribute} - - id: piValues - type: System.Span{System.Int32} - return: - type: System.Boolean - content.vb: Public Shared Function GetPixelFormatAttribivARB(hdc As IntPtr, iPixelFormat As Integer, iLayerPlane As Integer, nAttributes As UInteger, piAttributes As ReadOnlySpan(Of PixelFormatAttribute), piValues As Span(Of Integer)) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.ARB.GetPixelFormatAttribivARB* - nameWithType.vb: Wgl.ARB.GetPixelFormatAttribivARB(IntPtr, Integer, Integer, UInteger, ReadOnlySpan(Of PixelFormatAttribute), Span(Of Integer)) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.ARB.GetPixelFormatAttribivARB(System.IntPtr, Integer, Integer, UInteger, System.ReadOnlySpan(Of OpenTK.Graphics.Wgl.PixelFormatAttribute), System.Span(Of Integer)) - name.vb: GetPixelFormatAttribivARB(IntPtr, Integer, Integer, UInteger, ReadOnlySpan(Of PixelFormatAttribute), Span(Of Integer)) -- uid: OpenTK.Graphics.Wgl.Wgl.ARB.GetPixelFormatAttribivARB(System.IntPtr,System.Int32,System.Int32,System.UInt32,OpenTK.Graphics.Wgl.PixelFormatAttribute[],System.Int32[]) - commentId: M:OpenTK.Graphics.Wgl.Wgl.ARB.GetPixelFormatAttribivARB(System.IntPtr,System.Int32,System.Int32,System.UInt32,OpenTK.Graphics.Wgl.PixelFormatAttribute[],System.Int32[]) - id: GetPixelFormatAttribivARB(System.IntPtr,System.Int32,System.Int32,System.UInt32,OpenTK.Graphics.Wgl.PixelFormatAttribute[],System.Int32[]) - parent: OpenTK.Graphics.Wgl.Wgl.ARB - langs: - - csharp - - vb - name: GetPixelFormatAttribivARB(nint, int, int, uint, PixelFormatAttribute[], int[]) - nameWithType: Wgl.ARB.GetPixelFormatAttribivARB(nint, int, int, uint, PixelFormatAttribute[], int[]) - fullName: OpenTK.Graphics.Wgl.Wgl.ARB.GetPixelFormatAttribivARB(nint, int, int, uint, OpenTK.Graphics.Wgl.PixelFormatAttribute[], int[]) - type: Method - source: - id: GetPixelFormatAttribivARB - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 592 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_ARB_pixel_format] - - [entry point: wglGetPixelFormatAttribivARB] - -
- example: [] - syntax: - content: public static bool GetPixelFormatAttribivARB(nint hdc, int iPixelFormat, int iLayerPlane, uint nAttributes, PixelFormatAttribute[] piAttributes, int[] piValues) - parameters: - - id: hdc - type: System.IntPtr - - id: iPixelFormat - type: System.Int32 - - id: iLayerPlane - type: System.Int32 - - id: nAttributes - type: System.UInt32 - - id: piAttributes - type: OpenTK.Graphics.Wgl.PixelFormatAttribute[] - - id: piValues - type: System.Int32[] - return: - type: System.Boolean - content.vb: Public Shared Function GetPixelFormatAttribivARB(hdc As IntPtr, iPixelFormat As Integer, iLayerPlane As Integer, nAttributes As UInteger, piAttributes As PixelFormatAttribute(), piValues As Integer()) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.ARB.GetPixelFormatAttribivARB* - nameWithType.vb: Wgl.ARB.GetPixelFormatAttribivARB(IntPtr, Integer, Integer, UInteger, PixelFormatAttribute(), Integer()) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.ARB.GetPixelFormatAttribivARB(System.IntPtr, Integer, Integer, UInteger, OpenTK.Graphics.Wgl.PixelFormatAttribute(), Integer()) - name.vb: GetPixelFormatAttribivARB(IntPtr, Integer, Integer, UInteger, PixelFormatAttribute(), Integer()) -- uid: OpenTK.Graphics.Wgl.Wgl.ARB.GetPixelFormatAttribivARB(System.IntPtr,System.Int32,System.Int32,System.UInt32,OpenTK.Graphics.Wgl.PixelFormatAttribute@,System.Int32@) - commentId: M:OpenTK.Graphics.Wgl.Wgl.ARB.GetPixelFormatAttribivARB(System.IntPtr,System.Int32,System.Int32,System.UInt32,OpenTK.Graphics.Wgl.PixelFormatAttribute@,System.Int32@) - id: GetPixelFormatAttribivARB(System.IntPtr,System.Int32,System.Int32,System.UInt32,OpenTK.Graphics.Wgl.PixelFormatAttribute@,System.Int32@) - parent: OpenTK.Graphics.Wgl.Wgl.ARB - langs: - - csharp - - vb - name: GetPixelFormatAttribivARB(nint, int, int, uint, in PixelFormatAttribute, ref int) - nameWithType: Wgl.ARB.GetPixelFormatAttribivARB(nint, int, int, uint, in PixelFormatAttribute, ref int) - fullName: OpenTK.Graphics.Wgl.Wgl.ARB.GetPixelFormatAttribivARB(nint, int, int, uint, in OpenTK.Graphics.Wgl.PixelFormatAttribute, ref int) - type: Method - source: - id: GetPixelFormatAttribivARB - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 607 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_ARB_pixel_format] - - [entry point: wglGetPixelFormatAttribivARB] - -
- example: [] - syntax: - content: public static bool GetPixelFormatAttribivARB(nint hdc, int iPixelFormat, int iLayerPlane, uint nAttributes, in PixelFormatAttribute piAttributes, ref int piValues) - parameters: - - id: hdc - type: System.IntPtr - - id: iPixelFormat - type: System.Int32 - - id: iLayerPlane - type: System.Int32 - - id: nAttributes - type: System.UInt32 - - id: piAttributes - type: OpenTK.Graphics.Wgl.PixelFormatAttribute - - id: piValues - type: System.Int32 - return: - type: System.Boolean - content.vb: Public Shared Function GetPixelFormatAttribivARB(hdc As IntPtr, iPixelFormat As Integer, iLayerPlane As Integer, nAttributes As UInteger, piAttributes As PixelFormatAttribute, piValues As Integer) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.ARB.GetPixelFormatAttribivARB* - nameWithType.vb: Wgl.ARB.GetPixelFormatAttribivARB(IntPtr, Integer, Integer, UInteger, PixelFormatAttribute, Integer) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.ARB.GetPixelFormatAttribivARB(System.IntPtr, Integer, Integer, UInteger, OpenTK.Graphics.Wgl.PixelFormatAttribute, Integer) - name.vb: GetPixelFormatAttribivARB(IntPtr, Integer, Integer, UInteger, PixelFormatAttribute, Integer) -- uid: OpenTK.Graphics.Wgl.Wgl.ARB.MakeContextCurrentARB(System.IntPtr,System.IntPtr,System.IntPtr) - commentId: M:OpenTK.Graphics.Wgl.Wgl.ARB.MakeContextCurrentARB(System.IntPtr,System.IntPtr,System.IntPtr) - id: MakeContextCurrentARB(System.IntPtr,System.IntPtr,System.IntPtr) - parent: OpenTK.Graphics.Wgl.Wgl.ARB - langs: - - csharp - - vb - name: MakeContextCurrentARB(nint, nint, nint) - nameWithType: Wgl.ARB.MakeContextCurrentARB(nint, nint, nint) - fullName: OpenTK.Graphics.Wgl.Wgl.ARB.MakeContextCurrentARB(nint, nint, nint) - type: Method - source: - id: MakeContextCurrentARB - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 620 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - example: [] - syntax: - content: public static bool MakeContextCurrentARB(nint hDrawDC, nint hReadDC, nint hglrc) - parameters: - - id: hDrawDC - type: System.IntPtr - - id: hReadDC - type: System.IntPtr - - id: hglrc - type: System.IntPtr - return: - type: System.Boolean - content.vb: Public Shared Function MakeContextCurrentARB(hDrawDC As IntPtr, hReadDC As IntPtr, hglrc As IntPtr) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.ARB.MakeContextCurrentARB* - nameWithType.vb: Wgl.ARB.MakeContextCurrentARB(IntPtr, IntPtr, IntPtr) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.ARB.MakeContextCurrentARB(System.IntPtr, System.IntPtr, System.IntPtr) - name.vb: MakeContextCurrentARB(IntPtr, IntPtr, IntPtr) -- uid: OpenTK.Graphics.Wgl.Wgl.ARB.QueryPbufferARB(System.IntPtr,OpenTK.Graphics.Wgl.PBufferAttribute,System.Int32@) - commentId: M:OpenTK.Graphics.Wgl.Wgl.ARB.QueryPbufferARB(System.IntPtr,OpenTK.Graphics.Wgl.PBufferAttribute,System.Int32@) - id: QueryPbufferARB(System.IntPtr,OpenTK.Graphics.Wgl.PBufferAttribute,System.Int32@) - parent: OpenTK.Graphics.Wgl.Wgl.ARB - langs: - - csharp - - vb - name: QueryPbufferARB(nint, PBufferAttribute, out int) - nameWithType: Wgl.ARB.QueryPbufferARB(nint, PBufferAttribute, out int) - fullName: OpenTK.Graphics.Wgl.Wgl.ARB.QueryPbufferARB(nint, OpenTK.Graphics.Wgl.PBufferAttribute, out int) - type: Method - source: - id: QueryPbufferARB - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 629 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_ARB_pbuffer] - - [entry point: wglQueryPbufferARB] - -
- example: [] - syntax: - content: public static bool QueryPbufferARB(nint hPbuffer, PBufferAttribute iAttribute, out int piValue) - parameters: - - id: hPbuffer - type: System.IntPtr - - id: iAttribute - type: OpenTK.Graphics.Wgl.PBufferAttribute - - id: piValue - type: System.Int32 - return: - type: System.Boolean - content.vb: Public Shared Function QueryPbufferARB(hPbuffer As IntPtr, iAttribute As PBufferAttribute, piValue As Integer) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.ARB.QueryPbufferARB* - nameWithType.vb: Wgl.ARB.QueryPbufferARB(IntPtr, PBufferAttribute, Integer) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.ARB.QueryPbufferARB(System.IntPtr, OpenTK.Graphics.Wgl.PBufferAttribute, Integer) - name.vb: QueryPbufferARB(IntPtr, PBufferAttribute, Integer) -- uid: OpenTK.Graphics.Wgl.Wgl.ARB.ReleaseTexImageARB(System.IntPtr,OpenTK.Graphics.Wgl.ColorBuffer) - commentId: M:OpenTK.Graphics.Wgl.Wgl.ARB.ReleaseTexImageARB(System.IntPtr,OpenTK.Graphics.Wgl.ColorBuffer) - id: ReleaseTexImageARB(System.IntPtr,OpenTK.Graphics.Wgl.ColorBuffer) - parent: OpenTK.Graphics.Wgl.Wgl.ARB - langs: - - csharp - - vb - name: ReleaseTexImageARB(nint, ColorBuffer) - nameWithType: Wgl.ARB.ReleaseTexImageARB(nint, ColorBuffer) - fullName: OpenTK.Graphics.Wgl.Wgl.ARB.ReleaseTexImageARB(nint, OpenTK.Graphics.Wgl.ColorBuffer) - type: Method - source: - id: ReleaseTexImageARB - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 641 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - example: [] - syntax: - content: public static bool ReleaseTexImageARB(nint hPbuffer, ColorBuffer iBuffer) - parameters: - - id: hPbuffer - type: System.IntPtr - - id: iBuffer - type: OpenTK.Graphics.Wgl.ColorBuffer - return: - type: System.Boolean - content.vb: Public Shared Function ReleaseTexImageARB(hPbuffer As IntPtr, iBuffer As ColorBuffer) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.ARB.ReleaseTexImageARB* - nameWithType.vb: Wgl.ARB.ReleaseTexImageARB(IntPtr, ColorBuffer) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.ARB.ReleaseTexImageARB(System.IntPtr, OpenTK.Graphics.Wgl.ColorBuffer) - name.vb: ReleaseTexImageARB(IntPtr, ColorBuffer) -- uid: OpenTK.Graphics.Wgl.Wgl.ARB.RestoreBufferRegionARB(System.IntPtr,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32) - commentId: M:OpenTK.Graphics.Wgl.Wgl.ARB.RestoreBufferRegionARB(System.IntPtr,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32) - id: RestoreBufferRegionARB(System.IntPtr,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32) - parent: OpenTK.Graphics.Wgl.Wgl.ARB - langs: - - csharp - - vb - name: RestoreBufferRegionARB(nint, int, int, int, int, int, int) - nameWithType: Wgl.ARB.RestoreBufferRegionARB(nint, int, int, int, int, int, int) - fullName: OpenTK.Graphics.Wgl.Wgl.ARB.RestoreBufferRegionARB(nint, int, int, int, int, int, int) - type: Method - source: - id: RestoreBufferRegionARB - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 650 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - example: [] - syntax: - content: public static bool RestoreBufferRegionARB(nint hRegion, int x, int y, int width, int height, int xSrc, int ySrc) - parameters: - - id: hRegion - type: System.IntPtr - - id: x - type: System.Int32 - - id: y - type: System.Int32 - - id: width - type: System.Int32 - - id: height - type: System.Int32 - - id: xSrc - type: System.Int32 - - id: ySrc - type: System.Int32 - return: - type: System.Boolean - content.vb: Public Shared Function RestoreBufferRegionARB(hRegion As IntPtr, x As Integer, y As Integer, width As Integer, height As Integer, xSrc As Integer, ySrc As Integer) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.ARB.RestoreBufferRegionARB* - nameWithType.vb: Wgl.ARB.RestoreBufferRegionARB(IntPtr, Integer, Integer, Integer, Integer, Integer, Integer) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.ARB.RestoreBufferRegionARB(System.IntPtr, Integer, Integer, Integer, Integer, Integer, Integer) - name.vb: RestoreBufferRegionARB(IntPtr, Integer, Integer, Integer, Integer, Integer, Integer) -- uid: OpenTK.Graphics.Wgl.Wgl.ARB.SaveBufferRegionARB(System.IntPtr,System.Int32,System.Int32,System.Int32,System.Int32) - commentId: M:OpenTK.Graphics.Wgl.Wgl.ARB.SaveBufferRegionARB(System.IntPtr,System.Int32,System.Int32,System.Int32,System.Int32) - id: SaveBufferRegionARB(System.IntPtr,System.Int32,System.Int32,System.Int32,System.Int32) - parent: OpenTK.Graphics.Wgl.Wgl.ARB - langs: - - csharp - - vb - name: SaveBufferRegionARB(nint, int, int, int, int) - nameWithType: Wgl.ARB.SaveBufferRegionARB(nint, int, int, int, int) - fullName: OpenTK.Graphics.Wgl.Wgl.ARB.SaveBufferRegionARB(nint, int, int, int, int) - type: Method - source: - id: SaveBufferRegionARB - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 659 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - example: [] - syntax: - content: public static bool SaveBufferRegionARB(nint hRegion, int x, int y, int width, int height) - parameters: - - id: hRegion - type: System.IntPtr - - id: x - type: System.Int32 - - id: y - type: System.Int32 - - id: width - type: System.Int32 - - id: height - type: System.Int32 - return: - type: System.Boolean - content.vb: Public Shared Function SaveBufferRegionARB(hRegion As IntPtr, x As Integer, y As Integer, width As Integer, height As Integer) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.ARB.SaveBufferRegionARB* - nameWithType.vb: Wgl.ARB.SaveBufferRegionARB(IntPtr, Integer, Integer, Integer, Integer) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.ARB.SaveBufferRegionARB(System.IntPtr, Integer, Integer, Integer, Integer) - name.vb: SaveBufferRegionARB(IntPtr, Integer, Integer, Integer, Integer) -- uid: OpenTK.Graphics.Wgl.Wgl.ARB.SetPbufferAttribARB(System.IntPtr,System.ReadOnlySpan{System.Int32}) - commentId: M:OpenTK.Graphics.Wgl.Wgl.ARB.SetPbufferAttribARB(System.IntPtr,System.ReadOnlySpan{System.Int32}) - id: SetPbufferAttribARB(System.IntPtr,System.ReadOnlySpan{System.Int32}) - parent: OpenTK.Graphics.Wgl.Wgl.ARB - langs: - - csharp - - vb - name: SetPbufferAttribARB(nint, ReadOnlySpan) - nameWithType: Wgl.ARB.SetPbufferAttribARB(nint, ReadOnlySpan) - fullName: OpenTK.Graphics.Wgl.Wgl.ARB.SetPbufferAttribARB(nint, System.ReadOnlySpan) - type: Method - source: - id: SetPbufferAttribARB - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 668 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_ARB_render_texture] - - [entry point: wglSetPbufferAttribARB] - -
- example: [] - syntax: - content: public static bool SetPbufferAttribARB(nint hPbuffer, ReadOnlySpan piAttribList) - parameters: - - id: hPbuffer - type: System.IntPtr - - id: piAttribList - type: System.ReadOnlySpan{System.Int32} - return: - type: System.Boolean - content.vb: Public Shared Function SetPbufferAttribARB(hPbuffer As IntPtr, piAttribList As ReadOnlySpan(Of Integer)) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.ARB.SetPbufferAttribARB* - nameWithType.vb: Wgl.ARB.SetPbufferAttribARB(IntPtr, ReadOnlySpan(Of Integer)) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.ARB.SetPbufferAttribARB(System.IntPtr, System.ReadOnlySpan(Of Integer)) - name.vb: SetPbufferAttribARB(IntPtr, ReadOnlySpan(Of Integer)) -- uid: OpenTK.Graphics.Wgl.Wgl.ARB.SetPbufferAttribARB(System.IntPtr,System.Int32[]) - commentId: M:OpenTK.Graphics.Wgl.Wgl.ARB.SetPbufferAttribARB(System.IntPtr,System.Int32[]) - id: SetPbufferAttribARB(System.IntPtr,System.Int32[]) - parent: OpenTK.Graphics.Wgl.Wgl.ARB - langs: - - csharp - - vb - name: SetPbufferAttribARB(nint, int[]) - nameWithType: Wgl.ARB.SetPbufferAttribARB(nint, int[]) - fullName: OpenTK.Graphics.Wgl.Wgl.ARB.SetPbufferAttribARB(nint, int[]) - type: Method - source: - id: SetPbufferAttribARB - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 680 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_ARB_render_texture] - - [entry point: wglSetPbufferAttribARB] - -
- example: [] - syntax: - content: public static bool SetPbufferAttribARB(nint hPbuffer, int[] piAttribList) - parameters: - - id: hPbuffer - type: System.IntPtr - - id: piAttribList - type: System.Int32[] - return: - type: System.Boolean - content.vb: Public Shared Function SetPbufferAttribARB(hPbuffer As IntPtr, piAttribList As Integer()) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.ARB.SetPbufferAttribARB* - nameWithType.vb: Wgl.ARB.SetPbufferAttribARB(IntPtr, Integer()) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.ARB.SetPbufferAttribARB(System.IntPtr, Integer()) - name.vb: SetPbufferAttribARB(IntPtr, Integer()) -- uid: OpenTK.Graphics.Wgl.Wgl.ARB.SetPbufferAttribARB(System.IntPtr,System.Int32@) - commentId: M:OpenTK.Graphics.Wgl.Wgl.ARB.SetPbufferAttribARB(System.IntPtr,System.Int32@) - id: SetPbufferAttribARB(System.IntPtr,System.Int32@) - parent: OpenTK.Graphics.Wgl.Wgl.ARB - langs: - - csharp - - vb - name: SetPbufferAttribARB(nint, in int) - nameWithType: Wgl.ARB.SetPbufferAttribARB(nint, in int) - fullName: OpenTK.Graphics.Wgl.Wgl.ARB.SetPbufferAttribARB(nint, in int) - type: Method - source: - id: SetPbufferAttribARB - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 692 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_ARB_render_texture] - - [entry point: wglSetPbufferAttribARB] - -
- example: [] - syntax: - content: public static bool SetPbufferAttribARB(nint hPbuffer, in int piAttribList) - parameters: - - id: hPbuffer - type: System.IntPtr - - id: piAttribList - type: System.Int32 - return: - type: System.Boolean - content.vb: Public Shared Function SetPbufferAttribARB(hPbuffer As IntPtr, piAttribList As Integer) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.ARB.SetPbufferAttribARB* - nameWithType.vb: Wgl.ARB.SetPbufferAttribARB(IntPtr, Integer) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.ARB.SetPbufferAttribARB(System.IntPtr, Integer) - name.vb: SetPbufferAttribARB(IntPtr, Integer) -references: -- uid: OpenTK.Graphics.Wgl - commentId: N:OpenTK.Graphics.Wgl - href: OpenTK.html - name: OpenTK.Graphics.Wgl - nameWithType: OpenTK.Graphics.Wgl - fullName: OpenTK.Graphics.Wgl - spec.csharp: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Wgl - name: Wgl - href: OpenTK.Graphics.Wgl.html - spec.vb: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Wgl - name: Wgl - href: OpenTK.Graphics.Wgl.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: System.Object.Equals(System.Object) - commentId: M:System.Object.Equals(System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - name: Equals(object) - nameWithType: object.Equals(object) - fullName: object.Equals(object) - nameWithType.vb: Object.Equals(Object) - fullName.vb: Object.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetHashCode - commentId: M:System.Object.GetHashCode - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - name: GetHashCode() - nameWithType: object.GetHashCode() - fullName: object.GetHashCode() - nameWithType.vb: Object.GetHashCode() - fullName.vb: Object.GetHashCode() - spec.csharp: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.MemberwiseClone - commentId: M:System.Object.MemberwiseClone - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - name: MemberwiseClone() - nameWithType: object.MemberwiseClone() - fullName: object.MemberwiseClone() - nameWithType.vb: Object.MemberwiseClone() - fullName.vb: Object.MemberwiseClone() - spec.csharp: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) - spec.vb: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.ToString - commentId: M:System.Object.ToString - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - name: ToString() - nameWithType: object.ToString() - fullName: object.ToString() - nameWithType.vb: Object.ToString() - fullName.vb: Object.ToString() - spec.csharp: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) - spec.vb: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: OpenTK.Graphics.Wgl.Wgl.ARB.BindTexImageARB_* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.ARB.BindTexImageARB_ - href: OpenTK.Graphics.Wgl.Wgl.ARB.html#OpenTK_Graphics_Wgl_Wgl_ARB_BindTexImageARB__System_IntPtr_OpenTK_Graphics_Wgl_ColorBuffer_ - name: BindTexImageARB_ - nameWithType: Wgl.ARB.BindTexImageARB_ - fullName: OpenTK.Graphics.Wgl.Wgl.ARB.BindTexImageARB_ -- uid: System.IntPtr - commentId: T:System.IntPtr - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: nint - nameWithType: nint - fullName: nint - nameWithType.vb: IntPtr - fullName.vb: System.IntPtr - name.vb: IntPtr -- uid: OpenTK.Graphics.Wgl.ColorBuffer - commentId: T:OpenTK.Graphics.Wgl.ColorBuffer - parent: OpenTK.Graphics.Wgl - href: OpenTK.Graphics.Wgl.ColorBuffer.html - name: ColorBuffer - nameWithType: ColorBuffer - fullName: OpenTK.Graphics.Wgl.ColorBuffer -- uid: System.Int32 - commentId: T:System.Int32 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - name: int - nameWithType: int - fullName: int - nameWithType.vb: Integer - fullName.vb: Integer - name.vb: Integer -- uid: OpenTK.Graphics.Wgl.Wgl.ARB.ChoosePixelFormatARB* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.ARB.ChoosePixelFormatARB - href: OpenTK.Graphics.Wgl.Wgl.ARB.html#OpenTK_Graphics_Wgl_Wgl_ARB_ChoosePixelFormatARB_System_IntPtr_OpenTK_Graphics_Wgl_PixelFormatAttribute__System_Single__System_UInt32_System_Int32__System_UInt32__ - name: ChoosePixelFormatARB - nameWithType: Wgl.ARB.ChoosePixelFormatARB - fullName: OpenTK.Graphics.Wgl.Wgl.ARB.ChoosePixelFormatARB -- uid: OpenTK.Graphics.Wgl.PixelFormatAttribute* - isExternal: true - href: OpenTK.Graphics.Wgl.PixelFormatAttribute.html - name: PixelFormatAttribute* - nameWithType: PixelFormatAttribute* - fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute* - spec.csharp: - - uid: OpenTK.Graphics.Wgl.PixelFormatAttribute - name: PixelFormatAttribute - href: OpenTK.Graphics.Wgl.PixelFormatAttribute.html - - name: '*' - spec.vb: - - uid: OpenTK.Graphics.Wgl.PixelFormatAttribute - name: PixelFormatAttribute - href: OpenTK.Graphics.Wgl.PixelFormatAttribute.html - - name: '*' -- uid: System.Single* - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.single - name: float* - nameWithType: float* - fullName: float* - nameWithType.vb: Single* - fullName.vb: Single* - name.vb: Single* - spec.csharp: - - uid: System.Single - name: float - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.single - - name: '*' - spec.vb: - - uid: System.Single - name: Single - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.single - - name: '*' -- uid: System.UInt32 - commentId: T:System.UInt32 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - name: uint - nameWithType: uint - fullName: uint - nameWithType.vb: UInteger - fullName.vb: UInteger - name.vb: UInteger -- uid: System.Int32* - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - name: int* - nameWithType: int* - fullName: int* - nameWithType.vb: Integer* - fullName.vb: Integer* - name.vb: Integer* - spec.csharp: - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '*' - spec.vb: - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '*' -- uid: System.UInt32* - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - name: uint* - nameWithType: uint* - fullName: uint* - nameWithType.vb: UInteger* - fullName.vb: UInteger* - name.vb: UInteger* - spec.csharp: - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: '*' - spec.vb: - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: '*' -- uid: OpenTK.Graphics.Wgl.Wgl.ARB.CreateBufferRegionARB* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.ARB.CreateBufferRegionARB - href: OpenTK.Graphics.Wgl.Wgl.ARB.html#OpenTK_Graphics_Wgl_Wgl_ARB_CreateBufferRegionARB_System_IntPtr_System_Int32_OpenTK_Graphics_Wgl_ColorBufferMask_ - name: CreateBufferRegionARB - nameWithType: Wgl.ARB.CreateBufferRegionARB - fullName: OpenTK.Graphics.Wgl.Wgl.ARB.CreateBufferRegionARB -- uid: OpenTK.Graphics.Wgl.ColorBufferMask - commentId: T:OpenTK.Graphics.Wgl.ColorBufferMask - parent: OpenTK.Graphics.Wgl - href: OpenTK.Graphics.Wgl.ColorBufferMask.html - name: ColorBufferMask - nameWithType: ColorBufferMask - fullName: OpenTK.Graphics.Wgl.ColorBufferMask -- uid: OpenTK.Graphics.Wgl.Wgl.ARB.CreateContextAttribsARB* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.ARB.CreateContextAttribsARB - href: OpenTK.Graphics.Wgl.Wgl.ARB.html#OpenTK_Graphics_Wgl_Wgl_ARB_CreateContextAttribsARB_System_IntPtr_System_IntPtr_OpenTK_Graphics_Wgl_ContextAttribs__ - name: CreateContextAttribsARB - nameWithType: Wgl.ARB.CreateContextAttribsARB - fullName: OpenTK.Graphics.Wgl.Wgl.ARB.CreateContextAttribsARB -- uid: OpenTK.Graphics.Wgl.ContextAttribs* - isExternal: true - href: OpenTK.Graphics.Wgl.ContextAttribs.html - name: ContextAttribs* - nameWithType: ContextAttribs* - fullName: OpenTK.Graphics.Wgl.ContextAttribs* - spec.csharp: - - uid: OpenTK.Graphics.Wgl.ContextAttribs - name: ContextAttribs - href: OpenTK.Graphics.Wgl.ContextAttribs.html - - name: '*' - spec.vb: - - uid: OpenTK.Graphics.Wgl.ContextAttribs - name: ContextAttribs - href: OpenTK.Graphics.Wgl.ContextAttribs.html - - name: '*' -- uid: OpenTK.Graphics.Wgl.Wgl.ARB.CreatePbufferARB* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.ARB.CreatePbufferARB - href: OpenTK.Graphics.Wgl.Wgl.ARB.html#OpenTK_Graphics_Wgl_Wgl_ARB_CreatePbufferARB_System_IntPtr_System_Int32_System_Int32_System_Int32_System_Int32__ - name: CreatePbufferARB - nameWithType: Wgl.ARB.CreatePbufferARB - fullName: OpenTK.Graphics.Wgl.Wgl.ARB.CreatePbufferARB -- uid: OpenTK.Graphics.Wgl.Wgl.ARB.DeleteBufferRegionARB* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.ARB.DeleteBufferRegionARB - href: OpenTK.Graphics.Wgl.Wgl.ARB.html#OpenTK_Graphics_Wgl_Wgl_ARB_DeleteBufferRegionARB_System_IntPtr_ - name: DeleteBufferRegionARB - nameWithType: Wgl.ARB.DeleteBufferRegionARB - fullName: OpenTK.Graphics.Wgl.Wgl.ARB.DeleteBufferRegionARB -- uid: OpenTK.Graphics.Wgl.Wgl.ARB.DestroyPbufferARB_* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.ARB.DestroyPbufferARB_ - href: OpenTK.Graphics.Wgl.Wgl.ARB.html#OpenTK_Graphics_Wgl_Wgl_ARB_DestroyPbufferARB__System_IntPtr_ - name: DestroyPbufferARB_ - nameWithType: Wgl.ARB.DestroyPbufferARB_ - fullName: OpenTK.Graphics.Wgl.Wgl.ARB.DestroyPbufferARB_ -- uid: OpenTK.Graphics.Wgl.Wgl.ARB.GetCurrentReadDCARB* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.ARB.GetCurrentReadDCARB - href: OpenTK.Graphics.Wgl.Wgl.ARB.html#OpenTK_Graphics_Wgl_Wgl_ARB_GetCurrentReadDCARB - name: GetCurrentReadDCARB - nameWithType: Wgl.ARB.GetCurrentReadDCARB - fullName: OpenTK.Graphics.Wgl.Wgl.ARB.GetCurrentReadDCARB -- uid: OpenTK.Graphics.Wgl.Wgl.ARB.GetExtensionsStringARB_* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.ARB.GetExtensionsStringARB_ - href: OpenTK.Graphics.Wgl.Wgl.ARB.html#OpenTK_Graphics_Wgl_Wgl_ARB_GetExtensionsStringARB__System_IntPtr_ - name: GetExtensionsStringARB_ - nameWithType: Wgl.ARB.GetExtensionsStringARB_ - fullName: OpenTK.Graphics.Wgl.Wgl.ARB.GetExtensionsStringARB_ -- uid: System.Byte* - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.byte - name: byte* - nameWithType: byte* - fullName: byte* - nameWithType.vb: Byte* - fullName.vb: Byte* - name.vb: Byte* - spec.csharp: - - uid: System.Byte - name: byte - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.byte - - name: '*' - spec.vb: - - uid: System.Byte - name: Byte - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.byte - - name: '*' -- uid: OpenTK.Graphics.Wgl.Wgl.ARB.GetPbufferDCARB* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.ARB.GetPbufferDCARB - href: OpenTK.Graphics.Wgl.Wgl.ARB.html#OpenTK_Graphics_Wgl_Wgl_ARB_GetPbufferDCARB_System_IntPtr_ - name: GetPbufferDCARB - nameWithType: Wgl.ARB.GetPbufferDCARB - fullName: OpenTK.Graphics.Wgl.Wgl.ARB.GetPbufferDCARB -- uid: OpenTK.Graphics.Wgl.Wgl.ARB.GetPixelFormatAttribfvARB* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.ARB.GetPixelFormatAttribfvARB - href: OpenTK.Graphics.Wgl.Wgl.ARB.html#OpenTK_Graphics_Wgl_Wgl_ARB_GetPixelFormatAttribfvARB_System_IntPtr_System_Int32_System_Int32_System_UInt32_OpenTK_Graphics_Wgl_PixelFormatAttribute__System_Single__ - name: GetPixelFormatAttribfvARB - nameWithType: Wgl.ARB.GetPixelFormatAttribfvARB - fullName: OpenTK.Graphics.Wgl.Wgl.ARB.GetPixelFormatAttribfvARB -- uid: OpenTK.Graphics.Wgl.Wgl.ARB.GetPixelFormatAttribivARB* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.ARB.GetPixelFormatAttribivARB - href: OpenTK.Graphics.Wgl.Wgl.ARB.html#OpenTK_Graphics_Wgl_Wgl_ARB_GetPixelFormatAttribivARB_System_IntPtr_System_Int32_System_Int32_System_UInt32_OpenTK_Graphics_Wgl_PixelFormatAttribute__System_Int32__ - name: GetPixelFormatAttribivARB - nameWithType: Wgl.ARB.GetPixelFormatAttribivARB - fullName: OpenTK.Graphics.Wgl.Wgl.ARB.GetPixelFormatAttribivARB -- uid: OpenTK.Graphics.Wgl.Wgl.ARB.MakeContextCurrentARB_* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.ARB.MakeContextCurrentARB_ - href: OpenTK.Graphics.Wgl.Wgl.ARB.html#OpenTK_Graphics_Wgl_Wgl_ARB_MakeContextCurrentARB__System_IntPtr_System_IntPtr_System_IntPtr_ - name: MakeContextCurrentARB_ - nameWithType: Wgl.ARB.MakeContextCurrentARB_ - fullName: OpenTK.Graphics.Wgl.Wgl.ARB.MakeContextCurrentARB_ -- uid: OpenTK.Graphics.Wgl.Wgl.ARB.QueryPbufferARB* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.ARB.QueryPbufferARB - href: OpenTK.Graphics.Wgl.Wgl.ARB.html#OpenTK_Graphics_Wgl_Wgl_ARB_QueryPbufferARB_System_IntPtr_OpenTK_Graphics_Wgl_PBufferAttribute_System_Int32__ - name: QueryPbufferARB - nameWithType: Wgl.ARB.QueryPbufferARB - fullName: OpenTK.Graphics.Wgl.Wgl.ARB.QueryPbufferARB -- uid: OpenTK.Graphics.Wgl.PBufferAttribute - commentId: T:OpenTK.Graphics.Wgl.PBufferAttribute - parent: OpenTK.Graphics.Wgl - href: OpenTK.Graphics.Wgl.PBufferAttribute.html - name: PBufferAttribute - nameWithType: PBufferAttribute - fullName: OpenTK.Graphics.Wgl.PBufferAttribute -- uid: OpenTK.Graphics.Wgl.Wgl.ARB.ReleasePbufferDCARB* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.ARB.ReleasePbufferDCARB - href: OpenTK.Graphics.Wgl.Wgl.ARB.html#OpenTK_Graphics_Wgl_Wgl_ARB_ReleasePbufferDCARB_System_IntPtr_System_IntPtr_ - name: ReleasePbufferDCARB - nameWithType: Wgl.ARB.ReleasePbufferDCARB - fullName: OpenTK.Graphics.Wgl.Wgl.ARB.ReleasePbufferDCARB -- uid: OpenTK.Graphics.Wgl.Wgl.ARB.ReleaseTexImageARB_* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.ARB.ReleaseTexImageARB_ - href: OpenTK.Graphics.Wgl.Wgl.ARB.html#OpenTK_Graphics_Wgl_Wgl_ARB_ReleaseTexImageARB__System_IntPtr_OpenTK_Graphics_Wgl_ColorBuffer_ - name: ReleaseTexImageARB_ - nameWithType: Wgl.ARB.ReleaseTexImageARB_ - fullName: OpenTK.Graphics.Wgl.Wgl.ARB.ReleaseTexImageARB_ -- uid: OpenTK.Graphics.Wgl.Wgl.ARB.RestoreBufferRegionARB_* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.ARB.RestoreBufferRegionARB_ - href: OpenTK.Graphics.Wgl.Wgl.ARB.html#OpenTK_Graphics_Wgl_Wgl_ARB_RestoreBufferRegionARB__System_IntPtr_System_Int32_System_Int32_System_Int32_System_Int32_System_Int32_System_Int32_ - name: RestoreBufferRegionARB_ - nameWithType: Wgl.ARB.RestoreBufferRegionARB_ - fullName: OpenTK.Graphics.Wgl.Wgl.ARB.RestoreBufferRegionARB_ -- uid: OpenTK.Graphics.Wgl.Wgl.ARB.SaveBufferRegionARB_* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.ARB.SaveBufferRegionARB_ - href: OpenTK.Graphics.Wgl.Wgl.ARB.html#OpenTK_Graphics_Wgl_Wgl_ARB_SaveBufferRegionARB__System_IntPtr_System_Int32_System_Int32_System_Int32_System_Int32_ - name: SaveBufferRegionARB_ - nameWithType: Wgl.ARB.SaveBufferRegionARB_ - fullName: OpenTK.Graphics.Wgl.Wgl.ARB.SaveBufferRegionARB_ -- uid: OpenTK.Graphics.Wgl.Wgl.ARB.SetPbufferAttribARB* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.ARB.SetPbufferAttribARB - href: OpenTK.Graphics.Wgl.Wgl.ARB.html#OpenTK_Graphics_Wgl_Wgl_ARB_SetPbufferAttribARB_System_IntPtr_System_Int32__ - name: SetPbufferAttribARB - nameWithType: Wgl.ARB.SetPbufferAttribARB - fullName: OpenTK.Graphics.Wgl.Wgl.ARB.SetPbufferAttribARB -- uid: OpenTK.Graphics.Wgl.Wgl.ARB.BindTexImageARB* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.ARB.BindTexImageARB - href: OpenTK.Graphics.Wgl.Wgl.ARB.html#OpenTK_Graphics_Wgl_Wgl_ARB_BindTexImageARB_System_IntPtr_OpenTK_Graphics_Wgl_ColorBuffer_ - name: BindTexImageARB - nameWithType: Wgl.ARB.BindTexImageARB - fullName: OpenTK.Graphics.Wgl.Wgl.ARB.BindTexImageARB -- uid: System.Boolean - commentId: T:System.Boolean - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - name: bool - nameWithType: bool - fullName: bool - nameWithType.vb: Boolean - fullName.vb: Boolean - name.vb: Boolean -- uid: System.ReadOnlySpan{OpenTK.Graphics.Wgl.PixelFormatAttribute} - commentId: T:System.ReadOnlySpan{OpenTK.Graphics.Wgl.PixelFormatAttribute} - parent: System - definition: System.ReadOnlySpan`1 - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - name: ReadOnlySpan - nameWithType: ReadOnlySpan - fullName: System.ReadOnlySpan - nameWithType.vb: ReadOnlySpan(Of PixelFormatAttribute) - fullName.vb: System.ReadOnlySpan(Of OpenTK.Graphics.Wgl.PixelFormatAttribute) - name.vb: ReadOnlySpan(Of PixelFormatAttribute) - spec.csharp: - - uid: System.ReadOnlySpan`1 - name: ReadOnlySpan - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - - name: < - - uid: OpenTK.Graphics.Wgl.PixelFormatAttribute - name: PixelFormatAttribute - href: OpenTK.Graphics.Wgl.PixelFormatAttribute.html - - name: '>' - spec.vb: - - uid: System.ReadOnlySpan`1 - name: ReadOnlySpan - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - - name: ( - - name: Of - - name: " " - - uid: OpenTK.Graphics.Wgl.PixelFormatAttribute - name: PixelFormatAttribute - href: OpenTK.Graphics.Wgl.PixelFormatAttribute.html - - name: ) -- uid: System.ReadOnlySpan{System.Single} - commentId: T:System.ReadOnlySpan{System.Single} - parent: System - definition: System.ReadOnlySpan`1 - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - name: ReadOnlySpan - nameWithType: ReadOnlySpan - fullName: System.ReadOnlySpan - nameWithType.vb: ReadOnlySpan(Of Single) - fullName.vb: System.ReadOnlySpan(Of Single) - name.vb: ReadOnlySpan(Of Single) - spec.csharp: - - uid: System.ReadOnlySpan`1 - name: ReadOnlySpan - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - - name: < - - uid: System.Single - name: float - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.single - - name: '>' - spec.vb: - - uid: System.ReadOnlySpan`1 - name: ReadOnlySpan - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - - name: ( - - name: Of - - name: " " - - uid: System.Single - name: Single - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.single - - name: ) -- uid: System.Span{System.Int32} - commentId: T:System.Span{System.Int32} - parent: System - definition: System.Span`1 - href: https://learn.microsoft.com/dotnet/api/system.span-1 - name: Span - nameWithType: Span - fullName: System.Span - nameWithType.vb: Span(Of Integer) - fullName.vb: System.Span(Of Integer) - name.vb: Span(Of Integer) - spec.csharp: - - uid: System.Span`1 - name: Span - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.span-1 - - name: < - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '>' - spec.vb: - - uid: System.Span`1 - name: Span - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.span-1 - - name: ( - - name: Of - - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) -- uid: System.ReadOnlySpan`1 - commentId: T:System.ReadOnlySpan`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - name: ReadOnlySpan - nameWithType: ReadOnlySpan - fullName: System.ReadOnlySpan - nameWithType.vb: ReadOnlySpan(Of T) - fullName.vb: System.ReadOnlySpan(Of T) - name.vb: ReadOnlySpan(Of T) - spec.csharp: - - uid: System.ReadOnlySpan`1 - name: ReadOnlySpan - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.ReadOnlySpan`1 - name: ReadOnlySpan - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: System.Span`1 - commentId: T:System.Span`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.span-1 - name: Span - nameWithType: Span - fullName: System.Span - nameWithType.vb: Span(Of T) - fullName.vb: System.Span(Of T) - name.vb: Span(Of T) - spec.csharp: - - uid: System.Span`1 - name: Span - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.span-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.Span`1 - name: Span - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.span-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: OpenTK.Graphics.Wgl.PixelFormatAttribute[] - isExternal: true - href: OpenTK.Graphics.Wgl.PixelFormatAttribute.html - name: PixelFormatAttribute[] - nameWithType: PixelFormatAttribute[] - fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute[] - nameWithType.vb: PixelFormatAttribute() - fullName.vb: OpenTK.Graphics.Wgl.PixelFormatAttribute() - name.vb: PixelFormatAttribute() - spec.csharp: - - uid: OpenTK.Graphics.Wgl.PixelFormatAttribute - name: PixelFormatAttribute - href: OpenTK.Graphics.Wgl.PixelFormatAttribute.html - - name: '[' - - name: ']' - spec.vb: - - uid: OpenTK.Graphics.Wgl.PixelFormatAttribute - name: PixelFormatAttribute - href: OpenTK.Graphics.Wgl.PixelFormatAttribute.html - - name: ( - - name: ) -- uid: System.Single[] - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.single - name: float[] - nameWithType: float[] - fullName: float[] - nameWithType.vb: Single() - fullName.vb: Single() - name.vb: Single() - spec.csharp: - - uid: System.Single - name: float - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.single - - name: '[' - - name: ']' - spec.vb: - - uid: System.Single - name: Single - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.single - - name: ( - - name: ) -- uid: System.Int32[] - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - name: int[] - nameWithType: int[] - fullName: int[] - nameWithType.vb: Integer() - fullName.vb: Integer() - name.vb: Integer() - spec.csharp: - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '[' - - name: ']' - spec.vb: - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ( - - name: ) -- uid: OpenTK.Graphics.Wgl.PixelFormatAttribute - commentId: T:OpenTK.Graphics.Wgl.PixelFormatAttribute - parent: OpenTK.Graphics.Wgl - href: OpenTK.Graphics.Wgl.PixelFormatAttribute.html - name: PixelFormatAttribute - nameWithType: PixelFormatAttribute - fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute -- uid: System.Single - commentId: T:System.Single - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.single - name: float - nameWithType: float - fullName: float - nameWithType.vb: Single - fullName.vb: Single - name.vb: Single -- uid: System.ReadOnlySpan{OpenTK.Graphics.Wgl.ContextAttribs} - commentId: T:System.ReadOnlySpan{OpenTK.Graphics.Wgl.ContextAttribs} - parent: System - definition: System.ReadOnlySpan`1 - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - name: ReadOnlySpan - nameWithType: ReadOnlySpan - fullName: System.ReadOnlySpan - nameWithType.vb: ReadOnlySpan(Of ContextAttribs) - fullName.vb: System.ReadOnlySpan(Of OpenTK.Graphics.Wgl.ContextAttribs) - name.vb: ReadOnlySpan(Of ContextAttribs) - spec.csharp: - - uid: System.ReadOnlySpan`1 - name: ReadOnlySpan - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - - name: < - - uid: OpenTK.Graphics.Wgl.ContextAttribs - name: ContextAttribs - href: OpenTK.Graphics.Wgl.ContextAttribs.html - - name: '>' - spec.vb: - - uid: System.ReadOnlySpan`1 - name: ReadOnlySpan - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - - name: ( - - name: Of - - name: " " - - uid: OpenTK.Graphics.Wgl.ContextAttribs - name: ContextAttribs - href: OpenTK.Graphics.Wgl.ContextAttribs.html - - name: ) -- uid: OpenTK.Graphics.Wgl.ContextAttribs[] - isExternal: true - href: OpenTK.Graphics.Wgl.ContextAttribs.html - name: ContextAttribs[] - nameWithType: ContextAttribs[] - fullName: OpenTK.Graphics.Wgl.ContextAttribs[] - nameWithType.vb: ContextAttribs() - fullName.vb: OpenTK.Graphics.Wgl.ContextAttribs() - name.vb: ContextAttribs() - spec.csharp: - - uid: OpenTK.Graphics.Wgl.ContextAttribs - name: ContextAttribs - href: OpenTK.Graphics.Wgl.ContextAttribs.html - - name: '[' - - name: ']' - spec.vb: - - uid: OpenTK.Graphics.Wgl.ContextAttribs - name: ContextAttribs - href: OpenTK.Graphics.Wgl.ContextAttribs.html - - name: ( - - name: ) -- uid: OpenTK.Graphics.Wgl.ContextAttribs - commentId: T:OpenTK.Graphics.Wgl.ContextAttribs - parent: OpenTK.Graphics.Wgl - href: OpenTK.Graphics.Wgl.ContextAttribs.html - name: ContextAttribs - nameWithType: ContextAttribs - fullName: OpenTK.Graphics.Wgl.ContextAttribs -- uid: System.ReadOnlySpan{System.Int32} - commentId: T:System.ReadOnlySpan{System.Int32} - parent: System - definition: System.ReadOnlySpan`1 - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - name: ReadOnlySpan - nameWithType: ReadOnlySpan - fullName: System.ReadOnlySpan - nameWithType.vb: ReadOnlySpan(Of Integer) - fullName.vb: System.ReadOnlySpan(Of Integer) - name.vb: ReadOnlySpan(Of Integer) - spec.csharp: - - uid: System.ReadOnlySpan`1 - name: ReadOnlySpan - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - - name: < - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '>' - spec.vb: - - uid: System.ReadOnlySpan`1 - name: ReadOnlySpan - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - - name: ( - - name: Of - - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) -- uid: OpenTK.Graphics.Wgl.Wgl.ARB.DestroyPbufferARB* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.ARB.DestroyPbufferARB - href: OpenTK.Graphics.Wgl.Wgl.ARB.html#OpenTK_Graphics_Wgl_Wgl_ARB_DestroyPbufferARB_System_IntPtr_ - name: DestroyPbufferARB - nameWithType: Wgl.ARB.DestroyPbufferARB - fullName: OpenTK.Graphics.Wgl.Wgl.ARB.DestroyPbufferARB -- uid: OpenTK.Graphics.Wgl.Wgl.ARB.GetExtensionsStringARB* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.ARB.GetExtensionsStringARB - href: OpenTK.Graphics.Wgl.Wgl.ARB.html#OpenTK_Graphics_Wgl_Wgl_ARB_GetExtensionsStringARB_System_IntPtr_ - name: GetExtensionsStringARB - nameWithType: Wgl.ARB.GetExtensionsStringARB - fullName: OpenTK.Graphics.Wgl.Wgl.ARB.GetExtensionsStringARB -- uid: System.String - commentId: T:System.String - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - name: string - nameWithType: string - fullName: string - nameWithType.vb: String - fullName.vb: String - name.vb: String -- uid: System.Span{System.Single} - commentId: T:System.Span{System.Single} - parent: System - definition: System.Span`1 - href: https://learn.microsoft.com/dotnet/api/system.span-1 - name: Span - nameWithType: Span - fullName: System.Span - nameWithType.vb: Span(Of Single) - fullName.vb: System.Span(Of Single) - name.vb: Span(Of Single) - spec.csharp: - - uid: System.Span`1 - name: Span - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.span-1 - - name: < - - uid: System.Single - name: float - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.single - - name: '>' - spec.vb: - - uid: System.Span`1 - name: Span - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.span-1 - - name: ( - - name: Of - - name: " " - - uid: System.Single - name: Single - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.single - - name: ) -- uid: OpenTK.Graphics.Wgl.Wgl.ARB.MakeContextCurrentARB* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.ARB.MakeContextCurrentARB - href: OpenTK.Graphics.Wgl.Wgl.ARB.html#OpenTK_Graphics_Wgl_Wgl_ARB_MakeContextCurrentARB_System_IntPtr_System_IntPtr_System_IntPtr_ - name: MakeContextCurrentARB - nameWithType: Wgl.ARB.MakeContextCurrentARB - fullName: OpenTK.Graphics.Wgl.Wgl.ARB.MakeContextCurrentARB -- uid: OpenTK.Graphics.Wgl.Wgl.ARB.ReleaseTexImageARB* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.ARB.ReleaseTexImageARB - href: OpenTK.Graphics.Wgl.Wgl.ARB.html#OpenTK_Graphics_Wgl_Wgl_ARB_ReleaseTexImageARB_System_IntPtr_OpenTK_Graphics_Wgl_ColorBuffer_ - name: ReleaseTexImageARB - nameWithType: Wgl.ARB.ReleaseTexImageARB - fullName: OpenTK.Graphics.Wgl.Wgl.ARB.ReleaseTexImageARB -- uid: OpenTK.Graphics.Wgl.Wgl.ARB.RestoreBufferRegionARB* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.ARB.RestoreBufferRegionARB - href: OpenTK.Graphics.Wgl.Wgl.ARB.html#OpenTK_Graphics_Wgl_Wgl_ARB_RestoreBufferRegionARB_System_IntPtr_System_Int32_System_Int32_System_Int32_System_Int32_System_Int32_System_Int32_ - name: RestoreBufferRegionARB - nameWithType: Wgl.ARB.RestoreBufferRegionARB - fullName: OpenTK.Graphics.Wgl.Wgl.ARB.RestoreBufferRegionARB -- uid: OpenTK.Graphics.Wgl.Wgl.ARB.SaveBufferRegionARB* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.ARB.SaveBufferRegionARB - href: OpenTK.Graphics.Wgl.Wgl.ARB.html#OpenTK_Graphics_Wgl_Wgl_ARB_SaveBufferRegionARB_System_IntPtr_System_Int32_System_Int32_System_Int32_System_Int32_ - name: SaveBufferRegionARB - nameWithType: Wgl.ARB.SaveBufferRegionARB - fullName: OpenTK.Graphics.Wgl.Wgl.ARB.SaveBufferRegionARB diff --git a/api/OpenTK.Graphics.Wgl.Wgl.EXT.yml b/api/OpenTK.Graphics.Wgl.Wgl.EXT.yml deleted file mode 100644 index fe23f517..00000000 --- a/api/OpenTK.Graphics.Wgl.Wgl.EXT.yml +++ /dev/null @@ -1,2530 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: OpenTK.Graphics.Wgl.Wgl.EXT - commentId: T:OpenTK.Graphics.Wgl.Wgl.EXT - id: Wgl.EXT - parent: OpenTK.Graphics.Wgl - children: - - OpenTK.Graphics.Wgl.Wgl.EXT.BindDisplayColorTableEXT(System.UInt16) - - OpenTK.Graphics.Wgl.Wgl.EXT.ChoosePixelFormatEXT(System.IntPtr,System.Int32*,System.Single*,System.UInt32,System.Int32*,System.UInt32*) - - OpenTK.Graphics.Wgl.Wgl.EXT.ChoosePixelFormatEXT(System.IntPtr,System.Int32@,System.Single@,System.UInt32,System.Int32@,System.UInt32@) - - OpenTK.Graphics.Wgl.Wgl.EXT.ChoosePixelFormatEXT(System.IntPtr,System.Int32[],System.Single[],System.UInt32,System.Int32[],System.UInt32@) - - OpenTK.Graphics.Wgl.Wgl.EXT.ChoosePixelFormatEXT(System.IntPtr,System.ReadOnlySpan{System.Int32},System.ReadOnlySpan{System.Single},System.UInt32,System.Span{System.Int32},System.UInt32@) - - OpenTK.Graphics.Wgl.Wgl.EXT.CreateDisplayColorTableEXT(System.UInt16) - - OpenTK.Graphics.Wgl.Wgl.EXT.CreatePbufferEXT(System.IntPtr,System.Int32,System.Int32,System.Int32,System.Int32*) - - OpenTK.Graphics.Wgl.Wgl.EXT.CreatePbufferEXT(System.IntPtr,System.Int32,System.Int32,System.Int32,System.Int32@) - - OpenTK.Graphics.Wgl.Wgl.EXT.CreatePbufferEXT(System.IntPtr,System.Int32,System.Int32,System.Int32,System.Int32[]) - - OpenTK.Graphics.Wgl.Wgl.EXT.CreatePbufferEXT(System.IntPtr,System.Int32,System.Int32,System.Int32,System.ReadOnlySpan{System.Int32}) - - OpenTK.Graphics.Wgl.Wgl.EXT.DestroyDisplayColorTableEXT(System.UInt16) - - OpenTK.Graphics.Wgl.Wgl.EXT.DestroyPbufferEXT(System.IntPtr) - - OpenTK.Graphics.Wgl.Wgl.EXT.DestroyPbufferEXT_(System.IntPtr) - - OpenTK.Graphics.Wgl.Wgl.EXT.GetCurrentReadDCEXT - - OpenTK.Graphics.Wgl.Wgl.EXT.GetExtensionsStringEXT - - OpenTK.Graphics.Wgl.Wgl.EXT.GetExtensionsStringEXT_ - - OpenTK.Graphics.Wgl.Wgl.EXT.GetPbufferDCEXT(System.IntPtr) - - OpenTK.Graphics.Wgl.Wgl.EXT.GetPixelFormatAttribfvEXT(System.IntPtr,System.Int32,System.Int32,System.UInt32,OpenTK.Graphics.Wgl.PixelFormatAttribute*,System.Single*) - - OpenTK.Graphics.Wgl.Wgl.EXT.GetPixelFormatAttribfvEXT(System.IntPtr,System.Int32,System.Int32,System.UInt32,OpenTK.Graphics.Wgl.PixelFormatAttribute@,System.Single@) - - OpenTK.Graphics.Wgl.Wgl.EXT.GetPixelFormatAttribfvEXT(System.IntPtr,System.Int32,System.Int32,System.UInt32,OpenTK.Graphics.Wgl.PixelFormatAttribute[],System.Single[]) - - OpenTK.Graphics.Wgl.Wgl.EXT.GetPixelFormatAttribfvEXT(System.IntPtr,System.Int32,System.Int32,System.UInt32,System.Span{OpenTK.Graphics.Wgl.PixelFormatAttribute},System.Span{System.Single}) - - OpenTK.Graphics.Wgl.Wgl.EXT.GetPixelFormatAttribivEXT(System.IntPtr,System.Int32,System.Int32,System.UInt32,OpenTK.Graphics.Wgl.PixelFormatAttribute*,System.Int32*) - - OpenTK.Graphics.Wgl.Wgl.EXT.GetPixelFormatAttribivEXT(System.IntPtr,System.Int32,System.Int32,System.UInt32,OpenTK.Graphics.Wgl.PixelFormatAttribute@,System.Int32@) - - OpenTK.Graphics.Wgl.Wgl.EXT.GetPixelFormatAttribivEXT(System.IntPtr,System.Int32,System.Int32,System.UInt32,OpenTK.Graphics.Wgl.PixelFormatAttribute[],System.Int32[]) - - OpenTK.Graphics.Wgl.Wgl.EXT.GetPixelFormatAttribivEXT(System.IntPtr,System.Int32,System.Int32,System.UInt32,System.Span{OpenTK.Graphics.Wgl.PixelFormatAttribute},System.Span{System.Int32}) - - OpenTK.Graphics.Wgl.Wgl.EXT.GetSwapIntervalEXT - - OpenTK.Graphics.Wgl.Wgl.EXT.LoadDisplayColorTableEXT(System.ReadOnlySpan{System.UInt16},System.UInt32) - - OpenTK.Graphics.Wgl.Wgl.EXT.LoadDisplayColorTableEXT(System.UInt16*,System.UInt32) - - OpenTK.Graphics.Wgl.Wgl.EXT.LoadDisplayColorTableEXT(System.UInt16@,System.UInt32) - - OpenTK.Graphics.Wgl.Wgl.EXT.LoadDisplayColorTableEXT(System.UInt16[],System.UInt32) - - OpenTK.Graphics.Wgl.Wgl.EXT.MakeContextCurrentEXT(System.IntPtr,System.IntPtr,System.IntPtr) - - OpenTK.Graphics.Wgl.Wgl.EXT.MakeContextCurrentEXT_(System.IntPtr,System.IntPtr,System.IntPtr) - - OpenTK.Graphics.Wgl.Wgl.EXT.QueryPbufferEXT(System.IntPtr,OpenTK.Graphics.Wgl.PBufferAttribute,System.Int32*) - - OpenTK.Graphics.Wgl.Wgl.EXT.QueryPbufferEXT(System.IntPtr,OpenTK.Graphics.Wgl.PBufferAttribute,System.Int32@) - - OpenTK.Graphics.Wgl.Wgl.EXT.ReleasePbufferDCEXT(System.IntPtr,System.IntPtr) - - OpenTK.Graphics.Wgl.Wgl.EXT.SwapIntervalEXT(System.Int32) - - OpenTK.Graphics.Wgl.Wgl.EXT.SwapIntervalEXT_(System.Int32) - langs: - - csharp - - vb - name: Wgl.EXT - nameWithType: Wgl.EXT - fullName: OpenTK.Graphics.Wgl.Wgl.EXT - type: Class - source: - id: EXT - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 704 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: EXT extensions. - example: [] - syntax: - content: public static class Wgl.EXT - content.vb: Public Module Wgl.EXT - inheritance: - - System.Object - inheritedMembers: - - System.Object.Equals(System.Object) - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetHashCode - - System.Object.GetType - - System.Object.MemberwiseClone - - System.Object.ReferenceEquals(System.Object,System.Object) - - System.Object.ToString -- uid: OpenTK.Graphics.Wgl.Wgl.EXT.BindDisplayColorTableEXT(System.UInt16) - commentId: M:OpenTK.Graphics.Wgl.Wgl.EXT.BindDisplayColorTableEXT(System.UInt16) - id: BindDisplayColorTableEXT(System.UInt16) - parent: OpenTK.Graphics.Wgl.Wgl.EXT - langs: - - csharp - - vb - name: BindDisplayColorTableEXT(ushort) - nameWithType: Wgl.EXT.BindDisplayColorTableEXT(ushort) - fullName: OpenTK.Graphics.Wgl.Wgl.EXT.BindDisplayColorTableEXT(ushort) - type: Method - source: - id: BindDisplayColorTableEXT - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs - startLine: 192 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_EXT_display_color_table] - - [entry point: wglBindDisplayColorTableEXT] - -
- example: [] - syntax: - content: public static bool BindDisplayColorTableEXT(ushort id) - parameters: - - id: id - type: System.UInt16 - return: - type: System.Boolean - content.vb: Public Shared Function BindDisplayColorTableEXT(id As UShort) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.EXT.BindDisplayColorTableEXT* - nameWithType.vb: Wgl.EXT.BindDisplayColorTableEXT(UShort) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.EXT.BindDisplayColorTableEXT(UShort) - name.vb: BindDisplayColorTableEXT(UShort) -- uid: OpenTK.Graphics.Wgl.Wgl.EXT.ChoosePixelFormatEXT(System.IntPtr,System.Int32*,System.Single*,System.UInt32,System.Int32*,System.UInt32*) - commentId: M:OpenTK.Graphics.Wgl.Wgl.EXT.ChoosePixelFormatEXT(System.IntPtr,System.Int32*,System.Single*,System.UInt32,System.Int32*,System.UInt32*) - id: ChoosePixelFormatEXT(System.IntPtr,System.Int32*,System.Single*,System.UInt32,System.Int32*,System.UInt32*) - parent: OpenTK.Graphics.Wgl.Wgl.EXT - langs: - - csharp - - vb - name: ChoosePixelFormatEXT(nint, int*, float*, uint, int*, uint*) - nameWithType: Wgl.EXT.ChoosePixelFormatEXT(nint, int*, float*, uint, int*, uint*) - fullName: OpenTK.Graphics.Wgl.Wgl.EXT.ChoosePixelFormatEXT(nint, int*, float*, uint, int*, uint*) - type: Method - source: - id: ChoosePixelFormatEXT - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs - startLine: 195 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_EXT_pixel_format] - - [entry point: wglChoosePixelFormatEXT] - -
- example: [] - syntax: - content: public static int ChoosePixelFormatEXT(nint hdc, int* piAttribIList, float* pfAttribFList, uint nMaxFormats, int* piFormats, uint* nNumFormats) - parameters: - - id: hdc - type: System.IntPtr - - id: piAttribIList - type: System.Int32* - - id: pfAttribFList - type: System.Single* - - id: nMaxFormats - type: System.UInt32 - - id: piFormats - type: System.Int32* - - id: nNumFormats - type: System.UInt32* - return: - type: System.Int32 - content.vb: Public Shared Function ChoosePixelFormatEXT(hdc As IntPtr, piAttribIList As Integer*, pfAttribFList As Single*, nMaxFormats As UInteger, piFormats As Integer*, nNumFormats As UInteger*) As Integer - overload: OpenTK.Graphics.Wgl.Wgl.EXT.ChoosePixelFormatEXT* - nameWithType.vb: Wgl.EXT.ChoosePixelFormatEXT(IntPtr, Integer*, Single*, UInteger, Integer*, UInteger*) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.EXT.ChoosePixelFormatEXT(System.IntPtr, Integer*, Single*, UInteger, Integer*, UInteger*) - name.vb: ChoosePixelFormatEXT(IntPtr, Integer*, Single*, UInteger, Integer*, UInteger*) -- uid: OpenTK.Graphics.Wgl.Wgl.EXT.CreateDisplayColorTableEXT(System.UInt16) - commentId: M:OpenTK.Graphics.Wgl.Wgl.EXT.CreateDisplayColorTableEXT(System.UInt16) - id: CreateDisplayColorTableEXT(System.UInt16) - parent: OpenTK.Graphics.Wgl.Wgl.EXT - langs: - - csharp - - vb - name: CreateDisplayColorTableEXT(ushort) - nameWithType: Wgl.EXT.CreateDisplayColorTableEXT(ushort) - fullName: OpenTK.Graphics.Wgl.Wgl.EXT.CreateDisplayColorTableEXT(ushort) - type: Method - source: - id: CreateDisplayColorTableEXT - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs - startLine: 198 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_EXT_display_color_table] - - [entry point: wglCreateDisplayColorTableEXT] - -
- example: [] - syntax: - content: public static bool CreateDisplayColorTableEXT(ushort id) - parameters: - - id: id - type: System.UInt16 - return: - type: System.Boolean - content.vb: Public Shared Function CreateDisplayColorTableEXT(id As UShort) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.EXT.CreateDisplayColorTableEXT* - nameWithType.vb: Wgl.EXT.CreateDisplayColorTableEXT(UShort) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.EXT.CreateDisplayColorTableEXT(UShort) - name.vb: CreateDisplayColorTableEXT(UShort) -- uid: OpenTK.Graphics.Wgl.Wgl.EXT.CreatePbufferEXT(System.IntPtr,System.Int32,System.Int32,System.Int32,System.Int32*) - commentId: M:OpenTK.Graphics.Wgl.Wgl.EXT.CreatePbufferEXT(System.IntPtr,System.Int32,System.Int32,System.Int32,System.Int32*) - id: CreatePbufferEXT(System.IntPtr,System.Int32,System.Int32,System.Int32,System.Int32*) - parent: OpenTK.Graphics.Wgl.Wgl.EXT - langs: - - csharp - - vb - name: CreatePbufferEXT(nint, int, int, int, int*) - nameWithType: Wgl.EXT.CreatePbufferEXT(nint, int, int, int, int*) - fullName: OpenTK.Graphics.Wgl.Wgl.EXT.CreatePbufferEXT(nint, int, int, int, int*) - type: Method - source: - id: CreatePbufferEXT - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs - startLine: 201 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_EXT_pbuffer] - - [entry point: wglCreatePbufferEXT] - -
- example: [] - syntax: - content: public static nint CreatePbufferEXT(nint hDC, int iPixelFormat, int iWidth, int iHeight, int* piAttribList) - parameters: - - id: hDC - type: System.IntPtr - - id: iPixelFormat - type: System.Int32 - - id: iWidth - type: System.Int32 - - id: iHeight - type: System.Int32 - - id: piAttribList - type: System.Int32* - return: - type: System.IntPtr - content.vb: Public Shared Function CreatePbufferEXT(hDC As IntPtr, iPixelFormat As Integer, iWidth As Integer, iHeight As Integer, piAttribList As Integer*) As IntPtr - overload: OpenTK.Graphics.Wgl.Wgl.EXT.CreatePbufferEXT* - nameWithType.vb: Wgl.EXT.CreatePbufferEXT(IntPtr, Integer, Integer, Integer, Integer*) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.EXT.CreatePbufferEXT(System.IntPtr, Integer, Integer, Integer, Integer*) - name.vb: CreatePbufferEXT(IntPtr, Integer, Integer, Integer, Integer*) -- uid: OpenTK.Graphics.Wgl.Wgl.EXT.DestroyDisplayColorTableEXT(System.UInt16) - commentId: M:OpenTK.Graphics.Wgl.Wgl.EXT.DestroyDisplayColorTableEXT(System.UInt16) - id: DestroyDisplayColorTableEXT(System.UInt16) - parent: OpenTK.Graphics.Wgl.Wgl.EXT - langs: - - csharp - - vb - name: DestroyDisplayColorTableEXT(ushort) - nameWithType: Wgl.EXT.DestroyDisplayColorTableEXT(ushort) - fullName: OpenTK.Graphics.Wgl.Wgl.EXT.DestroyDisplayColorTableEXT(ushort) - type: Method - source: - id: DestroyDisplayColorTableEXT - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs - startLine: 204 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_EXT_display_color_table] - - [entry point: wglDestroyDisplayColorTableEXT] - -
- example: [] - syntax: - content: public static void DestroyDisplayColorTableEXT(ushort id) - parameters: - - id: id - type: System.UInt16 - content.vb: Public Shared Sub DestroyDisplayColorTableEXT(id As UShort) - overload: OpenTK.Graphics.Wgl.Wgl.EXT.DestroyDisplayColorTableEXT* - nameWithType.vb: Wgl.EXT.DestroyDisplayColorTableEXT(UShort) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.EXT.DestroyDisplayColorTableEXT(UShort) - name.vb: DestroyDisplayColorTableEXT(UShort) -- uid: OpenTK.Graphics.Wgl.Wgl.EXT.DestroyPbufferEXT_(System.IntPtr) - commentId: M:OpenTK.Graphics.Wgl.Wgl.EXT.DestroyPbufferEXT_(System.IntPtr) - id: DestroyPbufferEXT_(System.IntPtr) - parent: OpenTK.Graphics.Wgl.Wgl.EXT - langs: - - csharp - - vb - name: DestroyPbufferEXT_(nint) - nameWithType: Wgl.EXT.DestroyPbufferEXT_(nint) - fullName: OpenTK.Graphics.Wgl.Wgl.EXT.DestroyPbufferEXT_(nint) - type: Method - source: - id: DestroyPbufferEXT_ - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs - startLine: 207 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_EXT_pbuffer] - - [entry point: wglDestroyPbufferEXT] - -
- example: [] - syntax: - content: public static int DestroyPbufferEXT_(nint hPbuffer) - parameters: - - id: hPbuffer - type: System.IntPtr - return: - type: System.Int32 - content.vb: Public Shared Function DestroyPbufferEXT_(hPbuffer As IntPtr) As Integer - overload: OpenTK.Graphics.Wgl.Wgl.EXT.DestroyPbufferEXT_* - nameWithType.vb: Wgl.EXT.DestroyPbufferEXT_(IntPtr) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.EXT.DestroyPbufferEXT_(System.IntPtr) - name.vb: DestroyPbufferEXT_(IntPtr) -- uid: OpenTK.Graphics.Wgl.Wgl.EXT.GetCurrentReadDCEXT - commentId: M:OpenTK.Graphics.Wgl.Wgl.EXT.GetCurrentReadDCEXT - id: GetCurrentReadDCEXT - parent: OpenTK.Graphics.Wgl.Wgl.EXT - langs: - - csharp - - vb - name: GetCurrentReadDCEXT() - nameWithType: Wgl.EXT.GetCurrentReadDCEXT() - fullName: OpenTK.Graphics.Wgl.Wgl.EXT.GetCurrentReadDCEXT() - type: Method - source: - id: GetCurrentReadDCEXT - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs - startLine: 210 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_EXT_make_current_read] - - [entry point: wglGetCurrentReadDCEXT] - -
- example: [] - syntax: - content: public static nint GetCurrentReadDCEXT() - return: - type: System.IntPtr - content.vb: Public Shared Function GetCurrentReadDCEXT() As IntPtr - overload: OpenTK.Graphics.Wgl.Wgl.EXT.GetCurrentReadDCEXT* -- uid: OpenTK.Graphics.Wgl.Wgl.EXT.GetExtensionsStringEXT_ - commentId: M:OpenTK.Graphics.Wgl.Wgl.EXT.GetExtensionsStringEXT_ - id: GetExtensionsStringEXT_ - parent: OpenTK.Graphics.Wgl.Wgl.EXT - langs: - - csharp - - vb - name: GetExtensionsStringEXT_() - nameWithType: Wgl.EXT.GetExtensionsStringEXT_() - fullName: OpenTK.Graphics.Wgl.Wgl.EXT.GetExtensionsStringEXT_() - type: Method - source: - id: GetExtensionsStringEXT_ - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs - startLine: 213 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_EXT_extensions_string] - - [entry point: wglGetExtensionsStringEXT] - -
- example: [] - syntax: - content: public static byte* GetExtensionsStringEXT_() - return: - type: System.Byte* - content.vb: Public Shared Function GetExtensionsStringEXT_() As Byte* - overload: OpenTK.Graphics.Wgl.Wgl.EXT.GetExtensionsStringEXT_* -- uid: OpenTK.Graphics.Wgl.Wgl.EXT.GetPbufferDCEXT(System.IntPtr) - commentId: M:OpenTK.Graphics.Wgl.Wgl.EXT.GetPbufferDCEXT(System.IntPtr) - id: GetPbufferDCEXT(System.IntPtr) - parent: OpenTK.Graphics.Wgl.Wgl.EXT - langs: - - csharp - - vb - name: GetPbufferDCEXT(nint) - nameWithType: Wgl.EXT.GetPbufferDCEXT(nint) - fullName: OpenTK.Graphics.Wgl.Wgl.EXT.GetPbufferDCEXT(nint) - type: Method - source: - id: GetPbufferDCEXT - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs - startLine: 216 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_EXT_pbuffer] - - [entry point: wglGetPbufferDCEXT] - -
- example: [] - syntax: - content: public static nint GetPbufferDCEXT(nint hPbuffer) - parameters: - - id: hPbuffer - type: System.IntPtr - return: - type: System.IntPtr - content.vb: Public Shared Function GetPbufferDCEXT(hPbuffer As IntPtr) As IntPtr - overload: OpenTK.Graphics.Wgl.Wgl.EXT.GetPbufferDCEXT* - nameWithType.vb: Wgl.EXT.GetPbufferDCEXT(IntPtr) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.EXT.GetPbufferDCEXT(System.IntPtr) - name.vb: GetPbufferDCEXT(IntPtr) -- uid: OpenTK.Graphics.Wgl.Wgl.EXT.GetPixelFormatAttribfvEXT(System.IntPtr,System.Int32,System.Int32,System.UInt32,OpenTK.Graphics.Wgl.PixelFormatAttribute*,System.Single*) - commentId: M:OpenTK.Graphics.Wgl.Wgl.EXT.GetPixelFormatAttribfvEXT(System.IntPtr,System.Int32,System.Int32,System.UInt32,OpenTK.Graphics.Wgl.PixelFormatAttribute*,System.Single*) - id: GetPixelFormatAttribfvEXT(System.IntPtr,System.Int32,System.Int32,System.UInt32,OpenTK.Graphics.Wgl.PixelFormatAttribute*,System.Single*) - parent: OpenTK.Graphics.Wgl.Wgl.EXT - langs: - - csharp - - vb - name: GetPixelFormatAttribfvEXT(nint, int, int, uint, PixelFormatAttribute*, float*) - nameWithType: Wgl.EXT.GetPixelFormatAttribfvEXT(nint, int, int, uint, PixelFormatAttribute*, float*) - fullName: OpenTK.Graphics.Wgl.Wgl.EXT.GetPixelFormatAttribfvEXT(nint, int, int, uint, OpenTK.Graphics.Wgl.PixelFormatAttribute*, float*) - type: Method - source: - id: GetPixelFormatAttribfvEXT - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs - startLine: 219 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_EXT_pixel_format] - - [entry point: wglGetPixelFormatAttribfvEXT] - -
- example: [] - syntax: - content: public static int GetPixelFormatAttribfvEXT(nint hdc, int iPixelFormat, int iLayerPlane, uint nAttributes, PixelFormatAttribute* piAttributes, float* pfValues) - parameters: - - id: hdc - type: System.IntPtr - - id: iPixelFormat - type: System.Int32 - - id: iLayerPlane - type: System.Int32 - - id: nAttributes - type: System.UInt32 - - id: piAttributes - type: OpenTK.Graphics.Wgl.PixelFormatAttribute* - - id: pfValues - type: System.Single* - return: - type: System.Int32 - content.vb: Public Shared Function GetPixelFormatAttribfvEXT(hdc As IntPtr, iPixelFormat As Integer, iLayerPlane As Integer, nAttributes As UInteger, piAttributes As PixelFormatAttribute*, pfValues As Single*) As Integer - overload: OpenTK.Graphics.Wgl.Wgl.EXT.GetPixelFormatAttribfvEXT* - nameWithType.vb: Wgl.EXT.GetPixelFormatAttribfvEXT(IntPtr, Integer, Integer, UInteger, PixelFormatAttribute*, Single*) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.EXT.GetPixelFormatAttribfvEXT(System.IntPtr, Integer, Integer, UInteger, OpenTK.Graphics.Wgl.PixelFormatAttribute*, Single*) - name.vb: GetPixelFormatAttribfvEXT(IntPtr, Integer, Integer, UInteger, PixelFormatAttribute*, Single*) -- uid: OpenTK.Graphics.Wgl.Wgl.EXT.GetPixelFormatAttribivEXT(System.IntPtr,System.Int32,System.Int32,System.UInt32,OpenTK.Graphics.Wgl.PixelFormatAttribute*,System.Int32*) - commentId: M:OpenTK.Graphics.Wgl.Wgl.EXT.GetPixelFormatAttribivEXT(System.IntPtr,System.Int32,System.Int32,System.UInt32,OpenTK.Graphics.Wgl.PixelFormatAttribute*,System.Int32*) - id: GetPixelFormatAttribivEXT(System.IntPtr,System.Int32,System.Int32,System.UInt32,OpenTK.Graphics.Wgl.PixelFormatAttribute*,System.Int32*) - parent: OpenTK.Graphics.Wgl.Wgl.EXT - langs: - - csharp - - vb - name: GetPixelFormatAttribivEXT(nint, int, int, uint, PixelFormatAttribute*, int*) - nameWithType: Wgl.EXT.GetPixelFormatAttribivEXT(nint, int, int, uint, PixelFormatAttribute*, int*) - fullName: OpenTK.Graphics.Wgl.Wgl.EXT.GetPixelFormatAttribivEXT(nint, int, int, uint, OpenTK.Graphics.Wgl.PixelFormatAttribute*, int*) - type: Method - source: - id: GetPixelFormatAttribivEXT - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs - startLine: 222 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_EXT_pixel_format] - - [entry point: wglGetPixelFormatAttribivEXT] - -
- example: [] - syntax: - content: public static int GetPixelFormatAttribivEXT(nint hdc, int iPixelFormat, int iLayerPlane, uint nAttributes, PixelFormatAttribute* piAttributes, int* piValues) - parameters: - - id: hdc - type: System.IntPtr - - id: iPixelFormat - type: System.Int32 - - id: iLayerPlane - type: System.Int32 - - id: nAttributes - type: System.UInt32 - - id: piAttributes - type: OpenTK.Graphics.Wgl.PixelFormatAttribute* - - id: piValues - type: System.Int32* - return: - type: System.Int32 - content.vb: Public Shared Function GetPixelFormatAttribivEXT(hdc As IntPtr, iPixelFormat As Integer, iLayerPlane As Integer, nAttributes As UInteger, piAttributes As PixelFormatAttribute*, piValues As Integer*) As Integer - overload: OpenTK.Graphics.Wgl.Wgl.EXT.GetPixelFormatAttribivEXT* - nameWithType.vb: Wgl.EXT.GetPixelFormatAttribivEXT(IntPtr, Integer, Integer, UInteger, PixelFormatAttribute*, Integer*) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.EXT.GetPixelFormatAttribivEXT(System.IntPtr, Integer, Integer, UInteger, OpenTK.Graphics.Wgl.PixelFormatAttribute*, Integer*) - name.vb: GetPixelFormatAttribivEXT(IntPtr, Integer, Integer, UInteger, PixelFormatAttribute*, Integer*) -- uid: OpenTK.Graphics.Wgl.Wgl.EXT.GetSwapIntervalEXT - commentId: M:OpenTK.Graphics.Wgl.Wgl.EXT.GetSwapIntervalEXT - id: GetSwapIntervalEXT - parent: OpenTK.Graphics.Wgl.Wgl.EXT - langs: - - csharp - - vb - name: GetSwapIntervalEXT() - nameWithType: Wgl.EXT.GetSwapIntervalEXT() - fullName: OpenTK.Graphics.Wgl.Wgl.EXT.GetSwapIntervalEXT() - type: Method - source: - id: GetSwapIntervalEXT - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs - startLine: 225 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_EXT_swap_control] - - [entry point: wglGetSwapIntervalEXT] - -
- example: [] - syntax: - content: public static int GetSwapIntervalEXT() - return: - type: System.Int32 - content.vb: Public Shared Function GetSwapIntervalEXT() As Integer - overload: OpenTK.Graphics.Wgl.Wgl.EXT.GetSwapIntervalEXT* -- uid: OpenTK.Graphics.Wgl.Wgl.EXT.LoadDisplayColorTableEXT(System.UInt16*,System.UInt32) - commentId: M:OpenTK.Graphics.Wgl.Wgl.EXT.LoadDisplayColorTableEXT(System.UInt16*,System.UInt32) - id: LoadDisplayColorTableEXT(System.UInt16*,System.UInt32) - parent: OpenTK.Graphics.Wgl.Wgl.EXT - langs: - - csharp - - vb - name: LoadDisplayColorTableEXT(ushort*, uint) - nameWithType: Wgl.EXT.LoadDisplayColorTableEXT(ushort*, uint) - fullName: OpenTK.Graphics.Wgl.Wgl.EXT.LoadDisplayColorTableEXT(ushort*, uint) - type: Method - source: - id: LoadDisplayColorTableEXT - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs - startLine: 228 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_EXT_display_color_table] - - [entry point: wglLoadDisplayColorTableEXT] - -
- example: [] - syntax: - content: public static bool LoadDisplayColorTableEXT(ushort* table, uint length) - parameters: - - id: table - type: System.UInt16* - - id: length - type: System.UInt32 - return: - type: System.Boolean - content.vb: Public Shared Function LoadDisplayColorTableEXT(table As UShort*, length As UInteger) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.EXT.LoadDisplayColorTableEXT* - nameWithType.vb: Wgl.EXT.LoadDisplayColorTableEXT(UShort*, UInteger) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.EXT.LoadDisplayColorTableEXT(UShort*, UInteger) - name.vb: LoadDisplayColorTableEXT(UShort*, UInteger) -- uid: OpenTK.Graphics.Wgl.Wgl.EXT.MakeContextCurrentEXT_(System.IntPtr,System.IntPtr,System.IntPtr) - commentId: M:OpenTK.Graphics.Wgl.Wgl.EXT.MakeContextCurrentEXT_(System.IntPtr,System.IntPtr,System.IntPtr) - id: MakeContextCurrentEXT_(System.IntPtr,System.IntPtr,System.IntPtr) - parent: OpenTK.Graphics.Wgl.Wgl.EXT - langs: - - csharp - - vb - name: MakeContextCurrentEXT_(nint, nint, nint) - nameWithType: Wgl.EXT.MakeContextCurrentEXT_(nint, nint, nint) - fullName: OpenTK.Graphics.Wgl.Wgl.EXT.MakeContextCurrentEXT_(nint, nint, nint) - type: Method - source: - id: MakeContextCurrentEXT_ - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs - startLine: 231 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_EXT_make_current_read] - - [entry point: wglMakeContextCurrentEXT] - -
- example: [] - syntax: - content: public static int MakeContextCurrentEXT_(nint hDrawDC, nint hReadDC, nint hglrc) - parameters: - - id: hDrawDC - type: System.IntPtr - - id: hReadDC - type: System.IntPtr - - id: hglrc - type: System.IntPtr - return: - type: System.Int32 - content.vb: Public Shared Function MakeContextCurrentEXT_(hDrawDC As IntPtr, hReadDC As IntPtr, hglrc As IntPtr) As Integer - overload: OpenTK.Graphics.Wgl.Wgl.EXT.MakeContextCurrentEXT_* - nameWithType.vb: Wgl.EXT.MakeContextCurrentEXT_(IntPtr, IntPtr, IntPtr) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.EXT.MakeContextCurrentEXT_(System.IntPtr, System.IntPtr, System.IntPtr) - name.vb: MakeContextCurrentEXT_(IntPtr, IntPtr, IntPtr) -- uid: OpenTK.Graphics.Wgl.Wgl.EXT.QueryPbufferEXT(System.IntPtr,OpenTK.Graphics.Wgl.PBufferAttribute,System.Int32*) - commentId: M:OpenTK.Graphics.Wgl.Wgl.EXT.QueryPbufferEXT(System.IntPtr,OpenTK.Graphics.Wgl.PBufferAttribute,System.Int32*) - id: QueryPbufferEXT(System.IntPtr,OpenTK.Graphics.Wgl.PBufferAttribute,System.Int32*) - parent: OpenTK.Graphics.Wgl.Wgl.EXT - langs: - - csharp - - vb - name: QueryPbufferEXT(nint, PBufferAttribute, int*) - nameWithType: Wgl.EXT.QueryPbufferEXT(nint, PBufferAttribute, int*) - fullName: OpenTK.Graphics.Wgl.Wgl.EXT.QueryPbufferEXT(nint, OpenTK.Graphics.Wgl.PBufferAttribute, int*) - type: Method - source: - id: QueryPbufferEXT - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs - startLine: 234 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_EXT_pbuffer] - - [entry point: wglQueryPbufferEXT] - -
- example: [] - syntax: - content: public static int QueryPbufferEXT(nint hPbuffer, PBufferAttribute iAttribute, int* piValue) - parameters: - - id: hPbuffer - type: System.IntPtr - - id: iAttribute - type: OpenTK.Graphics.Wgl.PBufferAttribute - - id: piValue - type: System.Int32* - return: - type: System.Int32 - content.vb: Public Shared Function QueryPbufferEXT(hPbuffer As IntPtr, iAttribute As PBufferAttribute, piValue As Integer*) As Integer - overload: OpenTK.Graphics.Wgl.Wgl.EXT.QueryPbufferEXT* - nameWithType.vb: Wgl.EXT.QueryPbufferEXT(IntPtr, PBufferAttribute, Integer*) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.EXT.QueryPbufferEXT(System.IntPtr, OpenTK.Graphics.Wgl.PBufferAttribute, Integer*) - name.vb: QueryPbufferEXT(IntPtr, PBufferAttribute, Integer*) -- uid: OpenTK.Graphics.Wgl.Wgl.EXT.ReleasePbufferDCEXT(System.IntPtr,System.IntPtr) - commentId: M:OpenTK.Graphics.Wgl.Wgl.EXT.ReleasePbufferDCEXT(System.IntPtr,System.IntPtr) - id: ReleasePbufferDCEXT(System.IntPtr,System.IntPtr) - parent: OpenTK.Graphics.Wgl.Wgl.EXT - langs: - - csharp - - vb - name: ReleasePbufferDCEXT(nint, nint) - nameWithType: Wgl.EXT.ReleasePbufferDCEXT(nint, nint) - fullName: OpenTK.Graphics.Wgl.Wgl.EXT.ReleasePbufferDCEXT(nint, nint) - type: Method - source: - id: ReleasePbufferDCEXT - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs - startLine: 237 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_EXT_pbuffer] - - [entry point: wglReleasePbufferDCEXT] - -
- example: [] - syntax: - content: public static int ReleasePbufferDCEXT(nint hPbuffer, nint hDC) - parameters: - - id: hPbuffer - type: System.IntPtr - - id: hDC - type: System.IntPtr - return: - type: System.Int32 - content.vb: Public Shared Function ReleasePbufferDCEXT(hPbuffer As IntPtr, hDC As IntPtr) As Integer - overload: OpenTK.Graphics.Wgl.Wgl.EXT.ReleasePbufferDCEXT* - nameWithType.vb: Wgl.EXT.ReleasePbufferDCEXT(IntPtr, IntPtr) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.EXT.ReleasePbufferDCEXT(System.IntPtr, System.IntPtr) - name.vb: ReleasePbufferDCEXT(IntPtr, IntPtr) -- uid: OpenTK.Graphics.Wgl.Wgl.EXT.SwapIntervalEXT_(System.Int32) - commentId: M:OpenTK.Graphics.Wgl.Wgl.EXT.SwapIntervalEXT_(System.Int32) - id: SwapIntervalEXT_(System.Int32) - parent: OpenTK.Graphics.Wgl.Wgl.EXT - langs: - - csharp - - vb - name: SwapIntervalEXT_(int) - nameWithType: Wgl.EXT.SwapIntervalEXT_(int) - fullName: OpenTK.Graphics.Wgl.Wgl.EXT.SwapIntervalEXT_(int) - type: Method - source: - id: SwapIntervalEXT_ - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs - startLine: 240 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_EXT_swap_control] - - [entry point: wglSwapIntervalEXT] - -
- example: [] - syntax: - content: public static int SwapIntervalEXT_(int interval) - parameters: - - id: interval - type: System.Int32 - return: - type: System.Int32 - content.vb: Public Shared Function SwapIntervalEXT_(interval As Integer) As Integer - overload: OpenTK.Graphics.Wgl.Wgl.EXT.SwapIntervalEXT_* - nameWithType.vb: Wgl.EXT.SwapIntervalEXT_(Integer) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.EXT.SwapIntervalEXT_(Integer) - name.vb: SwapIntervalEXT_(Integer) -- uid: OpenTK.Graphics.Wgl.Wgl.EXT.ChoosePixelFormatEXT(System.IntPtr,System.ReadOnlySpan{System.Int32},System.ReadOnlySpan{System.Single},System.UInt32,System.Span{System.Int32},System.UInt32@) - commentId: M:OpenTK.Graphics.Wgl.Wgl.EXT.ChoosePixelFormatEXT(System.IntPtr,System.ReadOnlySpan{System.Int32},System.ReadOnlySpan{System.Single},System.UInt32,System.Span{System.Int32},System.UInt32@) - id: ChoosePixelFormatEXT(System.IntPtr,System.ReadOnlySpan{System.Int32},System.ReadOnlySpan{System.Single},System.UInt32,System.Span{System.Int32},System.UInt32@) - parent: OpenTK.Graphics.Wgl.Wgl.EXT - langs: - - csharp - - vb - name: ChoosePixelFormatEXT(nint, ReadOnlySpan, ReadOnlySpan, uint, Span, out uint) - nameWithType: Wgl.EXT.ChoosePixelFormatEXT(nint, ReadOnlySpan, ReadOnlySpan, uint, Span, out uint) - fullName: OpenTK.Graphics.Wgl.Wgl.EXT.ChoosePixelFormatEXT(nint, System.ReadOnlySpan, System.ReadOnlySpan, uint, System.Span, out uint) - type: Method - source: - id: ChoosePixelFormatEXT - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 707 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_EXT_pixel_format] - - [entry point: wglChoosePixelFormatEXT] - -
- example: [] - syntax: - content: public static bool ChoosePixelFormatEXT(nint hdc, ReadOnlySpan piAttribIList, ReadOnlySpan pfAttribFList, uint nMaxFormats, Span piFormats, out uint nNumFormats) - parameters: - - id: hdc - type: System.IntPtr - - id: piAttribIList - type: System.ReadOnlySpan{System.Int32} - - id: pfAttribFList - type: System.ReadOnlySpan{System.Single} - - id: nMaxFormats - type: System.UInt32 - - id: piFormats - type: System.Span{System.Int32} - - id: nNumFormats - type: System.UInt32 - return: - type: System.Boolean - content.vb: Public Shared Function ChoosePixelFormatEXT(hdc As IntPtr, piAttribIList As ReadOnlySpan(Of Integer), pfAttribFList As ReadOnlySpan(Of Single), nMaxFormats As UInteger, piFormats As Span(Of Integer), nNumFormats As UInteger) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.EXT.ChoosePixelFormatEXT* - nameWithType.vb: Wgl.EXT.ChoosePixelFormatEXT(IntPtr, ReadOnlySpan(Of Integer), ReadOnlySpan(Of Single), UInteger, Span(Of Integer), UInteger) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.EXT.ChoosePixelFormatEXT(System.IntPtr, System.ReadOnlySpan(Of Integer), System.ReadOnlySpan(Of Single), UInteger, System.Span(Of Integer), UInteger) - name.vb: ChoosePixelFormatEXT(IntPtr, ReadOnlySpan(Of Integer), ReadOnlySpan(Of Single), UInteger, Span(Of Integer), UInteger) -- uid: OpenTK.Graphics.Wgl.Wgl.EXT.ChoosePixelFormatEXT(System.IntPtr,System.Int32[],System.Single[],System.UInt32,System.Int32[],System.UInt32@) - commentId: M:OpenTK.Graphics.Wgl.Wgl.EXT.ChoosePixelFormatEXT(System.IntPtr,System.Int32[],System.Single[],System.UInt32,System.Int32[],System.UInt32@) - id: ChoosePixelFormatEXT(System.IntPtr,System.Int32[],System.Single[],System.UInt32,System.Int32[],System.UInt32@) - parent: OpenTK.Graphics.Wgl.Wgl.EXT - langs: - - csharp - - vb - name: ChoosePixelFormatEXT(nint, int[], float[], uint, int[], out uint) - nameWithType: Wgl.EXT.ChoosePixelFormatEXT(nint, int[], float[], uint, int[], out uint) - fullName: OpenTK.Graphics.Wgl.Wgl.EXT.ChoosePixelFormatEXT(nint, int[], float[], uint, int[], out uint) - type: Method - source: - id: ChoosePixelFormatEXT - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 728 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_EXT_pixel_format] - - [entry point: wglChoosePixelFormatEXT] - -
- example: [] - syntax: - content: public static bool ChoosePixelFormatEXT(nint hdc, int[] piAttribIList, float[] pfAttribFList, uint nMaxFormats, int[] piFormats, out uint nNumFormats) - parameters: - - id: hdc - type: System.IntPtr - - id: piAttribIList - type: System.Int32[] - - id: pfAttribFList - type: System.Single[] - - id: nMaxFormats - type: System.UInt32 - - id: piFormats - type: System.Int32[] - - id: nNumFormats - type: System.UInt32 - return: - type: System.Boolean - content.vb: Public Shared Function ChoosePixelFormatEXT(hdc As IntPtr, piAttribIList As Integer(), pfAttribFList As Single(), nMaxFormats As UInteger, piFormats As Integer(), nNumFormats As UInteger) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.EXT.ChoosePixelFormatEXT* - nameWithType.vb: Wgl.EXT.ChoosePixelFormatEXT(IntPtr, Integer(), Single(), UInteger, Integer(), UInteger) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.EXT.ChoosePixelFormatEXT(System.IntPtr, Integer(), Single(), UInteger, Integer(), UInteger) - name.vb: ChoosePixelFormatEXT(IntPtr, Integer(), Single(), UInteger, Integer(), UInteger) -- uid: OpenTK.Graphics.Wgl.Wgl.EXT.ChoosePixelFormatEXT(System.IntPtr,System.Int32@,System.Single@,System.UInt32,System.Int32@,System.UInt32@) - commentId: M:OpenTK.Graphics.Wgl.Wgl.EXT.ChoosePixelFormatEXT(System.IntPtr,System.Int32@,System.Single@,System.UInt32,System.Int32@,System.UInt32@) - id: ChoosePixelFormatEXT(System.IntPtr,System.Int32@,System.Single@,System.UInt32,System.Int32@,System.UInt32@) - parent: OpenTK.Graphics.Wgl.Wgl.EXT - langs: - - csharp - - vb - name: ChoosePixelFormatEXT(nint, in int, in float, uint, ref int, out uint) - nameWithType: Wgl.EXT.ChoosePixelFormatEXT(nint, in int, in float, uint, ref int, out uint) - fullName: OpenTK.Graphics.Wgl.Wgl.EXT.ChoosePixelFormatEXT(nint, in int, in float, uint, ref int, out uint) - type: Method - source: - id: ChoosePixelFormatEXT - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 749 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_EXT_pixel_format] - - [entry point: wglChoosePixelFormatEXT] - -
- example: [] - syntax: - content: public static bool ChoosePixelFormatEXT(nint hdc, in int piAttribIList, in float pfAttribFList, uint nMaxFormats, ref int piFormats, out uint nNumFormats) - parameters: - - id: hdc - type: System.IntPtr - - id: piAttribIList - type: System.Int32 - - id: pfAttribFList - type: System.Single - - id: nMaxFormats - type: System.UInt32 - - id: piFormats - type: System.Int32 - - id: nNumFormats - type: System.UInt32 - return: - type: System.Boolean - content.vb: Public Shared Function ChoosePixelFormatEXT(hdc As IntPtr, piAttribIList As Integer, pfAttribFList As Single, nMaxFormats As UInteger, piFormats As Integer, nNumFormats As UInteger) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.EXT.ChoosePixelFormatEXT* - nameWithType.vb: Wgl.EXT.ChoosePixelFormatEXT(IntPtr, Integer, Single, UInteger, Integer, UInteger) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.EXT.ChoosePixelFormatEXT(System.IntPtr, Integer, Single, UInteger, Integer, UInteger) - name.vb: ChoosePixelFormatEXT(IntPtr, Integer, Single, UInteger, Integer, UInteger) -- uid: OpenTK.Graphics.Wgl.Wgl.EXT.CreatePbufferEXT(System.IntPtr,System.Int32,System.Int32,System.Int32,System.ReadOnlySpan{System.Int32}) - commentId: M:OpenTK.Graphics.Wgl.Wgl.EXT.CreatePbufferEXT(System.IntPtr,System.Int32,System.Int32,System.Int32,System.ReadOnlySpan{System.Int32}) - id: CreatePbufferEXT(System.IntPtr,System.Int32,System.Int32,System.Int32,System.ReadOnlySpan{System.Int32}) - parent: OpenTK.Graphics.Wgl.Wgl.EXT - langs: - - csharp - - vb - name: CreatePbufferEXT(nint, int, int, int, ReadOnlySpan) - nameWithType: Wgl.EXT.CreatePbufferEXT(nint, int, int, int, ReadOnlySpan) - fullName: OpenTK.Graphics.Wgl.Wgl.EXT.CreatePbufferEXT(nint, int, int, int, System.ReadOnlySpan) - type: Method - source: - id: CreatePbufferEXT - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 764 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_EXT_pbuffer] - - [entry point: wglCreatePbufferEXT] - -
- example: [] - syntax: - content: public static nint CreatePbufferEXT(nint hDC, int iPixelFormat, int iWidth, int iHeight, ReadOnlySpan piAttribList) - parameters: - - id: hDC - type: System.IntPtr - - id: iPixelFormat - type: System.Int32 - - id: iWidth - type: System.Int32 - - id: iHeight - type: System.Int32 - - id: piAttribList - type: System.ReadOnlySpan{System.Int32} - return: - type: System.IntPtr - content.vb: Public Shared Function CreatePbufferEXT(hDC As IntPtr, iPixelFormat As Integer, iWidth As Integer, iHeight As Integer, piAttribList As ReadOnlySpan(Of Integer)) As IntPtr - overload: OpenTK.Graphics.Wgl.Wgl.EXT.CreatePbufferEXT* - nameWithType.vb: Wgl.EXT.CreatePbufferEXT(IntPtr, Integer, Integer, Integer, ReadOnlySpan(Of Integer)) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.EXT.CreatePbufferEXT(System.IntPtr, Integer, Integer, Integer, System.ReadOnlySpan(Of Integer)) - name.vb: CreatePbufferEXT(IntPtr, Integer, Integer, Integer, ReadOnlySpan(Of Integer)) -- uid: OpenTK.Graphics.Wgl.Wgl.EXT.CreatePbufferEXT(System.IntPtr,System.Int32,System.Int32,System.Int32,System.Int32[]) - commentId: M:OpenTK.Graphics.Wgl.Wgl.EXT.CreatePbufferEXT(System.IntPtr,System.Int32,System.Int32,System.Int32,System.Int32[]) - id: CreatePbufferEXT(System.IntPtr,System.Int32,System.Int32,System.Int32,System.Int32[]) - parent: OpenTK.Graphics.Wgl.Wgl.EXT - langs: - - csharp - - vb - name: CreatePbufferEXT(nint, int, int, int, int[]) - nameWithType: Wgl.EXT.CreatePbufferEXT(nint, int, int, int, int[]) - fullName: OpenTK.Graphics.Wgl.Wgl.EXT.CreatePbufferEXT(nint, int, int, int, int[]) - type: Method - source: - id: CreatePbufferEXT - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 774 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_EXT_pbuffer] - - [entry point: wglCreatePbufferEXT] - -
- example: [] - syntax: - content: public static nint CreatePbufferEXT(nint hDC, int iPixelFormat, int iWidth, int iHeight, int[] piAttribList) - parameters: - - id: hDC - type: System.IntPtr - - id: iPixelFormat - type: System.Int32 - - id: iWidth - type: System.Int32 - - id: iHeight - type: System.Int32 - - id: piAttribList - type: System.Int32[] - return: - type: System.IntPtr - content.vb: Public Shared Function CreatePbufferEXT(hDC As IntPtr, iPixelFormat As Integer, iWidth As Integer, iHeight As Integer, piAttribList As Integer()) As IntPtr - overload: OpenTK.Graphics.Wgl.Wgl.EXT.CreatePbufferEXT* - nameWithType.vb: Wgl.EXT.CreatePbufferEXT(IntPtr, Integer, Integer, Integer, Integer()) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.EXT.CreatePbufferEXT(System.IntPtr, Integer, Integer, Integer, Integer()) - name.vb: CreatePbufferEXT(IntPtr, Integer, Integer, Integer, Integer()) -- uid: OpenTK.Graphics.Wgl.Wgl.EXT.CreatePbufferEXT(System.IntPtr,System.Int32,System.Int32,System.Int32,System.Int32@) - commentId: M:OpenTK.Graphics.Wgl.Wgl.EXT.CreatePbufferEXT(System.IntPtr,System.Int32,System.Int32,System.Int32,System.Int32@) - id: CreatePbufferEXT(System.IntPtr,System.Int32,System.Int32,System.Int32,System.Int32@) - parent: OpenTK.Graphics.Wgl.Wgl.EXT - langs: - - csharp - - vb - name: CreatePbufferEXT(nint, int, int, int, in int) - nameWithType: Wgl.EXT.CreatePbufferEXT(nint, int, int, int, in int) - fullName: OpenTK.Graphics.Wgl.Wgl.EXT.CreatePbufferEXT(nint, int, int, int, in int) - type: Method - source: - id: CreatePbufferEXT - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 784 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_EXT_pbuffer] - - [entry point: wglCreatePbufferEXT] - -
- example: [] - syntax: - content: public static nint CreatePbufferEXT(nint hDC, int iPixelFormat, int iWidth, int iHeight, in int piAttribList) - parameters: - - id: hDC - type: System.IntPtr - - id: iPixelFormat - type: System.Int32 - - id: iWidth - type: System.Int32 - - id: iHeight - type: System.Int32 - - id: piAttribList - type: System.Int32 - return: - type: System.IntPtr - content.vb: Public Shared Function CreatePbufferEXT(hDC As IntPtr, iPixelFormat As Integer, iWidth As Integer, iHeight As Integer, piAttribList As Integer) As IntPtr - overload: OpenTK.Graphics.Wgl.Wgl.EXT.CreatePbufferEXT* - nameWithType.vb: Wgl.EXT.CreatePbufferEXT(IntPtr, Integer, Integer, Integer, Integer) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.EXT.CreatePbufferEXT(System.IntPtr, Integer, Integer, Integer, Integer) - name.vb: CreatePbufferEXT(IntPtr, Integer, Integer, Integer, Integer) -- uid: OpenTK.Graphics.Wgl.Wgl.EXT.DestroyPbufferEXT(System.IntPtr) - commentId: M:OpenTK.Graphics.Wgl.Wgl.EXT.DestroyPbufferEXT(System.IntPtr) - id: DestroyPbufferEXT(System.IntPtr) - parent: OpenTK.Graphics.Wgl.Wgl.EXT - langs: - - csharp - - vb - name: DestroyPbufferEXT(nint) - nameWithType: Wgl.EXT.DestroyPbufferEXT(nint) - fullName: OpenTK.Graphics.Wgl.Wgl.EXT.DestroyPbufferEXT(nint) - type: Method - source: - id: DestroyPbufferEXT - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 794 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - example: [] - syntax: - content: public static bool DestroyPbufferEXT(nint hPbuffer) - parameters: - - id: hPbuffer - type: System.IntPtr - return: - type: System.Boolean - content.vb: Public Shared Function DestroyPbufferEXT(hPbuffer As IntPtr) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.EXT.DestroyPbufferEXT* - nameWithType.vb: Wgl.EXT.DestroyPbufferEXT(IntPtr) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.EXT.DestroyPbufferEXT(System.IntPtr) - name.vb: DestroyPbufferEXT(IntPtr) -- uid: OpenTK.Graphics.Wgl.Wgl.EXT.GetExtensionsStringEXT - commentId: M:OpenTK.Graphics.Wgl.Wgl.EXT.GetExtensionsStringEXT - id: GetExtensionsStringEXT - parent: OpenTK.Graphics.Wgl.Wgl.EXT - langs: - - csharp - - vb - name: GetExtensionsStringEXT() - nameWithType: Wgl.EXT.GetExtensionsStringEXT() - fullName: OpenTK.Graphics.Wgl.Wgl.EXT.GetExtensionsStringEXT() - type: Method - source: - id: GetExtensionsStringEXT - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 803 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - example: [] - syntax: - content: public static string? GetExtensionsStringEXT() - return: - type: System.String - content.vb: Public Shared Function GetExtensionsStringEXT() As String - overload: OpenTK.Graphics.Wgl.Wgl.EXT.GetExtensionsStringEXT* -- uid: OpenTK.Graphics.Wgl.Wgl.EXT.GetPixelFormatAttribfvEXT(System.IntPtr,System.Int32,System.Int32,System.UInt32,System.Span{OpenTK.Graphics.Wgl.PixelFormatAttribute},System.Span{System.Single}) - commentId: M:OpenTK.Graphics.Wgl.Wgl.EXT.GetPixelFormatAttribfvEXT(System.IntPtr,System.Int32,System.Int32,System.UInt32,System.Span{OpenTK.Graphics.Wgl.PixelFormatAttribute},System.Span{System.Single}) - id: GetPixelFormatAttribfvEXT(System.IntPtr,System.Int32,System.Int32,System.UInt32,System.Span{OpenTK.Graphics.Wgl.PixelFormatAttribute},System.Span{System.Single}) - parent: OpenTK.Graphics.Wgl.Wgl.EXT - langs: - - csharp - - vb - name: GetPixelFormatAttribfvEXT(nint, int, int, uint, Span, Span) - nameWithType: Wgl.EXT.GetPixelFormatAttribfvEXT(nint, int, int, uint, Span, Span) - fullName: OpenTK.Graphics.Wgl.Wgl.EXT.GetPixelFormatAttribfvEXT(nint, int, int, uint, System.Span, System.Span) - type: Method - source: - id: GetPixelFormatAttribfvEXT - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 812 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_EXT_pixel_format] - - [entry point: wglGetPixelFormatAttribfvEXT] - -
- example: [] - syntax: - content: public static bool GetPixelFormatAttribfvEXT(nint hdc, int iPixelFormat, int iLayerPlane, uint nAttributes, Span piAttributes, Span pfValues) - parameters: - - id: hdc - type: System.IntPtr - - id: iPixelFormat - type: System.Int32 - - id: iLayerPlane - type: System.Int32 - - id: nAttributes - type: System.UInt32 - - id: piAttributes - type: System.Span{OpenTK.Graphics.Wgl.PixelFormatAttribute} - - id: pfValues - type: System.Span{System.Single} - return: - type: System.Boolean - content.vb: Public Shared Function GetPixelFormatAttribfvEXT(hdc As IntPtr, iPixelFormat As Integer, iLayerPlane As Integer, nAttributes As UInteger, piAttributes As Span(Of PixelFormatAttribute), pfValues As Span(Of Single)) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.EXT.GetPixelFormatAttribfvEXT* - nameWithType.vb: Wgl.EXT.GetPixelFormatAttribfvEXT(IntPtr, Integer, Integer, UInteger, Span(Of PixelFormatAttribute), Span(Of Single)) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.EXT.GetPixelFormatAttribfvEXT(System.IntPtr, Integer, Integer, UInteger, System.Span(Of OpenTK.Graphics.Wgl.PixelFormatAttribute), System.Span(Of Single)) - name.vb: GetPixelFormatAttribfvEXT(IntPtr, Integer, Integer, UInteger, Span(Of PixelFormatAttribute), Span(Of Single)) -- uid: OpenTK.Graphics.Wgl.Wgl.EXT.GetPixelFormatAttribfvEXT(System.IntPtr,System.Int32,System.Int32,System.UInt32,OpenTK.Graphics.Wgl.PixelFormatAttribute[],System.Single[]) - commentId: M:OpenTK.Graphics.Wgl.Wgl.EXT.GetPixelFormatAttribfvEXT(System.IntPtr,System.Int32,System.Int32,System.UInt32,OpenTK.Graphics.Wgl.PixelFormatAttribute[],System.Single[]) - id: GetPixelFormatAttribfvEXT(System.IntPtr,System.Int32,System.Int32,System.UInt32,OpenTK.Graphics.Wgl.PixelFormatAttribute[],System.Single[]) - parent: OpenTK.Graphics.Wgl.Wgl.EXT - langs: - - csharp - - vb - name: GetPixelFormatAttribfvEXT(nint, int, int, uint, PixelFormatAttribute[], float[]) - nameWithType: Wgl.EXT.GetPixelFormatAttribfvEXT(nint, int, int, uint, PixelFormatAttribute[], float[]) - fullName: OpenTK.Graphics.Wgl.Wgl.EXT.GetPixelFormatAttribfvEXT(nint, int, int, uint, OpenTK.Graphics.Wgl.PixelFormatAttribute[], float[]) - type: Method - source: - id: GetPixelFormatAttribfvEXT - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 827 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_EXT_pixel_format] - - [entry point: wglGetPixelFormatAttribfvEXT] - -
- example: [] - syntax: - content: public static bool GetPixelFormatAttribfvEXT(nint hdc, int iPixelFormat, int iLayerPlane, uint nAttributes, PixelFormatAttribute[] piAttributes, float[] pfValues) - parameters: - - id: hdc - type: System.IntPtr - - id: iPixelFormat - type: System.Int32 - - id: iLayerPlane - type: System.Int32 - - id: nAttributes - type: System.UInt32 - - id: piAttributes - type: OpenTK.Graphics.Wgl.PixelFormatAttribute[] - - id: pfValues - type: System.Single[] - return: - type: System.Boolean - content.vb: Public Shared Function GetPixelFormatAttribfvEXT(hdc As IntPtr, iPixelFormat As Integer, iLayerPlane As Integer, nAttributes As UInteger, piAttributes As PixelFormatAttribute(), pfValues As Single()) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.EXT.GetPixelFormatAttribfvEXT* - nameWithType.vb: Wgl.EXT.GetPixelFormatAttribfvEXT(IntPtr, Integer, Integer, UInteger, PixelFormatAttribute(), Single()) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.EXT.GetPixelFormatAttribfvEXT(System.IntPtr, Integer, Integer, UInteger, OpenTK.Graphics.Wgl.PixelFormatAttribute(), Single()) - name.vb: GetPixelFormatAttribfvEXT(IntPtr, Integer, Integer, UInteger, PixelFormatAttribute(), Single()) -- uid: OpenTK.Graphics.Wgl.Wgl.EXT.GetPixelFormatAttribfvEXT(System.IntPtr,System.Int32,System.Int32,System.UInt32,OpenTK.Graphics.Wgl.PixelFormatAttribute@,System.Single@) - commentId: M:OpenTK.Graphics.Wgl.Wgl.EXT.GetPixelFormatAttribfvEXT(System.IntPtr,System.Int32,System.Int32,System.UInt32,OpenTK.Graphics.Wgl.PixelFormatAttribute@,System.Single@) - id: GetPixelFormatAttribfvEXT(System.IntPtr,System.Int32,System.Int32,System.UInt32,OpenTK.Graphics.Wgl.PixelFormatAttribute@,System.Single@) - parent: OpenTK.Graphics.Wgl.Wgl.EXT - langs: - - csharp - - vb - name: GetPixelFormatAttribfvEXT(nint, int, int, uint, in PixelFormatAttribute, ref float) - nameWithType: Wgl.EXT.GetPixelFormatAttribfvEXT(nint, int, int, uint, in PixelFormatAttribute, ref float) - fullName: OpenTK.Graphics.Wgl.Wgl.EXT.GetPixelFormatAttribfvEXT(nint, int, int, uint, in OpenTK.Graphics.Wgl.PixelFormatAttribute, ref float) - type: Method - source: - id: GetPixelFormatAttribfvEXT - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 842 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_EXT_pixel_format] - - [entry point: wglGetPixelFormatAttribfvEXT] - -
- example: [] - syntax: - content: public static bool GetPixelFormatAttribfvEXT(nint hdc, int iPixelFormat, int iLayerPlane, uint nAttributes, in PixelFormatAttribute piAttributes, ref float pfValues) - parameters: - - id: hdc - type: System.IntPtr - - id: iPixelFormat - type: System.Int32 - - id: iLayerPlane - type: System.Int32 - - id: nAttributes - type: System.UInt32 - - id: piAttributes - type: OpenTK.Graphics.Wgl.PixelFormatAttribute - - id: pfValues - type: System.Single - return: - type: System.Boolean - content.vb: Public Shared Function GetPixelFormatAttribfvEXT(hdc As IntPtr, iPixelFormat As Integer, iLayerPlane As Integer, nAttributes As UInteger, piAttributes As PixelFormatAttribute, pfValues As Single) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.EXT.GetPixelFormatAttribfvEXT* - nameWithType.vb: Wgl.EXT.GetPixelFormatAttribfvEXT(IntPtr, Integer, Integer, UInteger, PixelFormatAttribute, Single) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.EXT.GetPixelFormatAttribfvEXT(System.IntPtr, Integer, Integer, UInteger, OpenTK.Graphics.Wgl.PixelFormatAttribute, Single) - name.vb: GetPixelFormatAttribfvEXT(IntPtr, Integer, Integer, UInteger, PixelFormatAttribute, Single) -- uid: OpenTK.Graphics.Wgl.Wgl.EXT.GetPixelFormatAttribivEXT(System.IntPtr,System.Int32,System.Int32,System.UInt32,System.Span{OpenTK.Graphics.Wgl.PixelFormatAttribute},System.Span{System.Int32}) - commentId: M:OpenTK.Graphics.Wgl.Wgl.EXT.GetPixelFormatAttribivEXT(System.IntPtr,System.Int32,System.Int32,System.UInt32,System.Span{OpenTK.Graphics.Wgl.PixelFormatAttribute},System.Span{System.Int32}) - id: GetPixelFormatAttribivEXT(System.IntPtr,System.Int32,System.Int32,System.UInt32,System.Span{OpenTK.Graphics.Wgl.PixelFormatAttribute},System.Span{System.Int32}) - parent: OpenTK.Graphics.Wgl.Wgl.EXT - langs: - - csharp - - vb - name: GetPixelFormatAttribivEXT(nint, int, int, uint, Span, Span) - nameWithType: Wgl.EXT.GetPixelFormatAttribivEXT(nint, int, int, uint, Span, Span) - fullName: OpenTK.Graphics.Wgl.Wgl.EXT.GetPixelFormatAttribivEXT(nint, int, int, uint, System.Span, System.Span) - type: Method - source: - id: GetPixelFormatAttribivEXT - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 855 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_EXT_pixel_format] - - [entry point: wglGetPixelFormatAttribivEXT] - -
- example: [] - syntax: - content: public static bool GetPixelFormatAttribivEXT(nint hdc, int iPixelFormat, int iLayerPlane, uint nAttributes, Span piAttributes, Span piValues) - parameters: - - id: hdc - type: System.IntPtr - - id: iPixelFormat - type: System.Int32 - - id: iLayerPlane - type: System.Int32 - - id: nAttributes - type: System.UInt32 - - id: piAttributes - type: System.Span{OpenTK.Graphics.Wgl.PixelFormatAttribute} - - id: piValues - type: System.Span{System.Int32} - return: - type: System.Boolean - content.vb: Public Shared Function GetPixelFormatAttribivEXT(hdc As IntPtr, iPixelFormat As Integer, iLayerPlane As Integer, nAttributes As UInteger, piAttributes As Span(Of PixelFormatAttribute), piValues As Span(Of Integer)) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.EXT.GetPixelFormatAttribivEXT* - nameWithType.vb: Wgl.EXT.GetPixelFormatAttribivEXT(IntPtr, Integer, Integer, UInteger, Span(Of PixelFormatAttribute), Span(Of Integer)) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.EXT.GetPixelFormatAttribivEXT(System.IntPtr, Integer, Integer, UInteger, System.Span(Of OpenTK.Graphics.Wgl.PixelFormatAttribute), System.Span(Of Integer)) - name.vb: GetPixelFormatAttribivEXT(IntPtr, Integer, Integer, UInteger, Span(Of PixelFormatAttribute), Span(Of Integer)) -- uid: OpenTK.Graphics.Wgl.Wgl.EXT.GetPixelFormatAttribivEXT(System.IntPtr,System.Int32,System.Int32,System.UInt32,OpenTK.Graphics.Wgl.PixelFormatAttribute[],System.Int32[]) - commentId: M:OpenTK.Graphics.Wgl.Wgl.EXT.GetPixelFormatAttribivEXT(System.IntPtr,System.Int32,System.Int32,System.UInt32,OpenTK.Graphics.Wgl.PixelFormatAttribute[],System.Int32[]) - id: GetPixelFormatAttribivEXT(System.IntPtr,System.Int32,System.Int32,System.UInt32,OpenTK.Graphics.Wgl.PixelFormatAttribute[],System.Int32[]) - parent: OpenTK.Graphics.Wgl.Wgl.EXT - langs: - - csharp - - vb - name: GetPixelFormatAttribivEXT(nint, int, int, uint, PixelFormatAttribute[], int[]) - nameWithType: Wgl.EXT.GetPixelFormatAttribivEXT(nint, int, int, uint, PixelFormatAttribute[], int[]) - fullName: OpenTK.Graphics.Wgl.Wgl.EXT.GetPixelFormatAttribivEXT(nint, int, int, uint, OpenTK.Graphics.Wgl.PixelFormatAttribute[], int[]) - type: Method - source: - id: GetPixelFormatAttribivEXT - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 870 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_EXT_pixel_format] - - [entry point: wglGetPixelFormatAttribivEXT] - -
- example: [] - syntax: - content: public static bool GetPixelFormatAttribivEXT(nint hdc, int iPixelFormat, int iLayerPlane, uint nAttributes, PixelFormatAttribute[] piAttributes, int[] piValues) - parameters: - - id: hdc - type: System.IntPtr - - id: iPixelFormat - type: System.Int32 - - id: iLayerPlane - type: System.Int32 - - id: nAttributes - type: System.UInt32 - - id: piAttributes - type: OpenTK.Graphics.Wgl.PixelFormatAttribute[] - - id: piValues - type: System.Int32[] - return: - type: System.Boolean - content.vb: Public Shared Function GetPixelFormatAttribivEXT(hdc As IntPtr, iPixelFormat As Integer, iLayerPlane As Integer, nAttributes As UInteger, piAttributes As PixelFormatAttribute(), piValues As Integer()) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.EXT.GetPixelFormatAttribivEXT* - nameWithType.vb: Wgl.EXT.GetPixelFormatAttribivEXT(IntPtr, Integer, Integer, UInteger, PixelFormatAttribute(), Integer()) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.EXT.GetPixelFormatAttribivEXT(System.IntPtr, Integer, Integer, UInteger, OpenTK.Graphics.Wgl.PixelFormatAttribute(), Integer()) - name.vb: GetPixelFormatAttribivEXT(IntPtr, Integer, Integer, UInteger, PixelFormatAttribute(), Integer()) -- uid: OpenTK.Graphics.Wgl.Wgl.EXT.GetPixelFormatAttribivEXT(System.IntPtr,System.Int32,System.Int32,System.UInt32,OpenTK.Graphics.Wgl.PixelFormatAttribute@,System.Int32@) - commentId: M:OpenTK.Graphics.Wgl.Wgl.EXT.GetPixelFormatAttribivEXT(System.IntPtr,System.Int32,System.Int32,System.UInt32,OpenTK.Graphics.Wgl.PixelFormatAttribute@,System.Int32@) - id: GetPixelFormatAttribivEXT(System.IntPtr,System.Int32,System.Int32,System.UInt32,OpenTK.Graphics.Wgl.PixelFormatAttribute@,System.Int32@) - parent: OpenTK.Graphics.Wgl.Wgl.EXT - langs: - - csharp - - vb - name: GetPixelFormatAttribivEXT(nint, int, int, uint, in PixelFormatAttribute, ref int) - nameWithType: Wgl.EXT.GetPixelFormatAttribivEXT(nint, int, int, uint, in PixelFormatAttribute, ref int) - fullName: OpenTK.Graphics.Wgl.Wgl.EXT.GetPixelFormatAttribivEXT(nint, int, int, uint, in OpenTK.Graphics.Wgl.PixelFormatAttribute, ref int) - type: Method - source: - id: GetPixelFormatAttribivEXT - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 885 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_EXT_pixel_format] - - [entry point: wglGetPixelFormatAttribivEXT] - -
- example: [] - syntax: - content: public static bool GetPixelFormatAttribivEXT(nint hdc, int iPixelFormat, int iLayerPlane, uint nAttributes, in PixelFormatAttribute piAttributes, ref int piValues) - parameters: - - id: hdc - type: System.IntPtr - - id: iPixelFormat - type: System.Int32 - - id: iLayerPlane - type: System.Int32 - - id: nAttributes - type: System.UInt32 - - id: piAttributes - type: OpenTK.Graphics.Wgl.PixelFormatAttribute - - id: piValues - type: System.Int32 - return: - type: System.Boolean - content.vb: Public Shared Function GetPixelFormatAttribivEXT(hdc As IntPtr, iPixelFormat As Integer, iLayerPlane As Integer, nAttributes As UInteger, piAttributes As PixelFormatAttribute, piValues As Integer) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.EXT.GetPixelFormatAttribivEXT* - nameWithType.vb: Wgl.EXT.GetPixelFormatAttribivEXT(IntPtr, Integer, Integer, UInteger, PixelFormatAttribute, Integer) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.EXT.GetPixelFormatAttribivEXT(System.IntPtr, Integer, Integer, UInteger, OpenTK.Graphics.Wgl.PixelFormatAttribute, Integer) - name.vb: GetPixelFormatAttribivEXT(IntPtr, Integer, Integer, UInteger, PixelFormatAttribute, Integer) -- uid: OpenTK.Graphics.Wgl.Wgl.EXT.LoadDisplayColorTableEXT(System.ReadOnlySpan{System.UInt16},System.UInt32) - commentId: M:OpenTK.Graphics.Wgl.Wgl.EXT.LoadDisplayColorTableEXT(System.ReadOnlySpan{System.UInt16},System.UInt32) - id: LoadDisplayColorTableEXT(System.ReadOnlySpan{System.UInt16},System.UInt32) - parent: OpenTK.Graphics.Wgl.Wgl.EXT - langs: - - csharp - - vb - name: LoadDisplayColorTableEXT(ReadOnlySpan, uint) - nameWithType: Wgl.EXT.LoadDisplayColorTableEXT(ReadOnlySpan, uint) - fullName: OpenTK.Graphics.Wgl.Wgl.EXT.LoadDisplayColorTableEXT(System.ReadOnlySpan, uint) - type: Method - source: - id: LoadDisplayColorTableEXT - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 898 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_EXT_display_color_table] - - [entry point: wglLoadDisplayColorTableEXT] - -
- example: [] - syntax: - content: public static bool LoadDisplayColorTableEXT(ReadOnlySpan table, uint length) - parameters: - - id: table - type: System.ReadOnlySpan{System.UInt16} - - id: length - type: System.UInt32 - return: - type: System.Boolean - content.vb: Public Shared Function LoadDisplayColorTableEXT(table As ReadOnlySpan(Of UShort), length As UInteger) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.EXT.LoadDisplayColorTableEXT* - nameWithType.vb: Wgl.EXT.LoadDisplayColorTableEXT(ReadOnlySpan(Of UShort), UInteger) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.EXT.LoadDisplayColorTableEXT(System.ReadOnlySpan(Of UShort), UInteger) - name.vb: LoadDisplayColorTableEXT(ReadOnlySpan(Of UShort), UInteger) -- uid: OpenTK.Graphics.Wgl.Wgl.EXT.LoadDisplayColorTableEXT(System.UInt16[],System.UInt32) - commentId: M:OpenTK.Graphics.Wgl.Wgl.EXT.LoadDisplayColorTableEXT(System.UInt16[],System.UInt32) - id: LoadDisplayColorTableEXT(System.UInt16[],System.UInt32) - parent: OpenTK.Graphics.Wgl.Wgl.EXT - langs: - - csharp - - vb - name: LoadDisplayColorTableEXT(ushort[], uint) - nameWithType: Wgl.EXT.LoadDisplayColorTableEXT(ushort[], uint) - fullName: OpenTK.Graphics.Wgl.Wgl.EXT.LoadDisplayColorTableEXT(ushort[], uint) - type: Method - source: - id: LoadDisplayColorTableEXT - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 908 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_EXT_display_color_table] - - [entry point: wglLoadDisplayColorTableEXT] - -
- example: [] - syntax: - content: public static bool LoadDisplayColorTableEXT(ushort[] table, uint length) - parameters: - - id: table - type: System.UInt16[] - - id: length - type: System.UInt32 - return: - type: System.Boolean - content.vb: Public Shared Function LoadDisplayColorTableEXT(table As UShort(), length As UInteger) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.EXT.LoadDisplayColorTableEXT* - nameWithType.vb: Wgl.EXT.LoadDisplayColorTableEXT(UShort(), UInteger) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.EXT.LoadDisplayColorTableEXT(UShort(), UInteger) - name.vb: LoadDisplayColorTableEXT(UShort(), UInteger) -- uid: OpenTK.Graphics.Wgl.Wgl.EXT.LoadDisplayColorTableEXT(System.UInt16@,System.UInt32) - commentId: M:OpenTK.Graphics.Wgl.Wgl.EXT.LoadDisplayColorTableEXT(System.UInt16@,System.UInt32) - id: LoadDisplayColorTableEXT(System.UInt16@,System.UInt32) - parent: OpenTK.Graphics.Wgl.Wgl.EXT - langs: - - csharp - - vb - name: LoadDisplayColorTableEXT(in ushort, uint) - nameWithType: Wgl.EXT.LoadDisplayColorTableEXT(in ushort, uint) - fullName: OpenTK.Graphics.Wgl.Wgl.EXT.LoadDisplayColorTableEXT(in ushort, uint) - type: Method - source: - id: LoadDisplayColorTableEXT - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 918 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_EXT_display_color_table] - - [entry point: wglLoadDisplayColorTableEXT] - -
- example: [] - syntax: - content: public static bool LoadDisplayColorTableEXT(in ushort table, uint length) - parameters: - - id: table - type: System.UInt16 - - id: length - type: System.UInt32 - return: - type: System.Boolean - content.vb: Public Shared Function LoadDisplayColorTableEXT(table As UShort, length As UInteger) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.EXT.LoadDisplayColorTableEXT* - nameWithType.vb: Wgl.EXT.LoadDisplayColorTableEXT(UShort, UInteger) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.EXT.LoadDisplayColorTableEXT(UShort, UInteger) - name.vb: LoadDisplayColorTableEXT(UShort, UInteger) -- uid: OpenTK.Graphics.Wgl.Wgl.EXT.MakeContextCurrentEXT(System.IntPtr,System.IntPtr,System.IntPtr) - commentId: M:OpenTK.Graphics.Wgl.Wgl.EXT.MakeContextCurrentEXT(System.IntPtr,System.IntPtr,System.IntPtr) - id: MakeContextCurrentEXT(System.IntPtr,System.IntPtr,System.IntPtr) - parent: OpenTK.Graphics.Wgl.Wgl.EXT - langs: - - csharp - - vb - name: MakeContextCurrentEXT(nint, nint, nint) - nameWithType: Wgl.EXT.MakeContextCurrentEXT(nint, nint, nint) - fullName: OpenTK.Graphics.Wgl.Wgl.EXT.MakeContextCurrentEXT(nint, nint, nint) - type: Method - source: - id: MakeContextCurrentEXT - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 928 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - example: [] - syntax: - content: public static bool MakeContextCurrentEXT(nint hDrawDC, nint hReadDC, nint hglrc) - parameters: - - id: hDrawDC - type: System.IntPtr - - id: hReadDC - type: System.IntPtr - - id: hglrc - type: System.IntPtr - return: - type: System.Boolean - content.vb: Public Shared Function MakeContextCurrentEXT(hDrawDC As IntPtr, hReadDC As IntPtr, hglrc As IntPtr) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.EXT.MakeContextCurrentEXT* - nameWithType.vb: Wgl.EXT.MakeContextCurrentEXT(IntPtr, IntPtr, IntPtr) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.EXT.MakeContextCurrentEXT(System.IntPtr, System.IntPtr, System.IntPtr) - name.vb: MakeContextCurrentEXT(IntPtr, IntPtr, IntPtr) -- uid: OpenTK.Graphics.Wgl.Wgl.EXT.QueryPbufferEXT(System.IntPtr,OpenTK.Graphics.Wgl.PBufferAttribute,System.Int32@) - commentId: M:OpenTK.Graphics.Wgl.Wgl.EXT.QueryPbufferEXT(System.IntPtr,OpenTK.Graphics.Wgl.PBufferAttribute,System.Int32@) - id: QueryPbufferEXT(System.IntPtr,OpenTK.Graphics.Wgl.PBufferAttribute,System.Int32@) - parent: OpenTK.Graphics.Wgl.Wgl.EXT - langs: - - csharp - - vb - name: QueryPbufferEXT(nint, PBufferAttribute, out int) - nameWithType: Wgl.EXT.QueryPbufferEXT(nint, PBufferAttribute, out int) - fullName: OpenTK.Graphics.Wgl.Wgl.EXT.QueryPbufferEXT(nint, OpenTK.Graphics.Wgl.PBufferAttribute, out int) - type: Method - source: - id: QueryPbufferEXT - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 937 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_EXT_pbuffer] - - [entry point: wglQueryPbufferEXT] - -
- example: [] - syntax: - content: public static bool QueryPbufferEXT(nint hPbuffer, PBufferAttribute iAttribute, out int piValue) - parameters: - - id: hPbuffer - type: System.IntPtr - - id: iAttribute - type: OpenTK.Graphics.Wgl.PBufferAttribute - - id: piValue - type: System.Int32 - return: - type: System.Boolean - content.vb: Public Shared Function QueryPbufferEXT(hPbuffer As IntPtr, iAttribute As PBufferAttribute, piValue As Integer) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.EXT.QueryPbufferEXT* - nameWithType.vb: Wgl.EXT.QueryPbufferEXT(IntPtr, PBufferAttribute, Integer) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.EXT.QueryPbufferEXT(System.IntPtr, OpenTK.Graphics.Wgl.PBufferAttribute, Integer) - name.vb: QueryPbufferEXT(IntPtr, PBufferAttribute, Integer) -- uid: OpenTK.Graphics.Wgl.Wgl.EXT.SwapIntervalEXT(System.Int32) - commentId: M:OpenTK.Graphics.Wgl.Wgl.EXT.SwapIntervalEXT(System.Int32) - id: SwapIntervalEXT(System.Int32) - parent: OpenTK.Graphics.Wgl.Wgl.EXT - langs: - - csharp - - vb - name: SwapIntervalEXT(int) - nameWithType: Wgl.EXT.SwapIntervalEXT(int) - fullName: OpenTK.Graphics.Wgl.Wgl.EXT.SwapIntervalEXT(int) - type: Method - source: - id: SwapIntervalEXT - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 949 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - example: [] - syntax: - content: public static bool SwapIntervalEXT(int interval) - parameters: - - id: interval - type: System.Int32 - return: - type: System.Boolean - content.vb: Public Shared Function SwapIntervalEXT(interval As Integer) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.EXT.SwapIntervalEXT* - nameWithType.vb: Wgl.EXT.SwapIntervalEXT(Integer) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.EXT.SwapIntervalEXT(Integer) - name.vb: SwapIntervalEXT(Integer) -references: -- uid: OpenTK.Graphics.Wgl - commentId: N:OpenTK.Graphics.Wgl - href: OpenTK.html - name: OpenTK.Graphics.Wgl - nameWithType: OpenTK.Graphics.Wgl - fullName: OpenTK.Graphics.Wgl - spec.csharp: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Wgl - name: Wgl - href: OpenTK.Graphics.Wgl.html - spec.vb: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Wgl - name: Wgl - href: OpenTK.Graphics.Wgl.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: System.Object.Equals(System.Object) - commentId: M:System.Object.Equals(System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - name: Equals(object) - nameWithType: object.Equals(object) - fullName: object.Equals(object) - nameWithType.vb: Object.Equals(Object) - fullName.vb: Object.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetHashCode - commentId: M:System.Object.GetHashCode - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - name: GetHashCode() - nameWithType: object.GetHashCode() - fullName: object.GetHashCode() - nameWithType.vb: Object.GetHashCode() - fullName.vb: Object.GetHashCode() - spec.csharp: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.MemberwiseClone - commentId: M:System.Object.MemberwiseClone - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - name: MemberwiseClone() - nameWithType: object.MemberwiseClone() - fullName: object.MemberwiseClone() - nameWithType.vb: Object.MemberwiseClone() - fullName.vb: Object.MemberwiseClone() - spec.csharp: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) - spec.vb: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.ToString - commentId: M:System.Object.ToString - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - name: ToString() - nameWithType: object.ToString() - fullName: object.ToString() - nameWithType.vb: Object.ToString() - fullName.vb: Object.ToString() - spec.csharp: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) - spec.vb: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: OpenTK.Graphics.Wgl.Wgl.EXT.BindDisplayColorTableEXT* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.EXT.BindDisplayColorTableEXT - href: OpenTK.Graphics.Wgl.Wgl.EXT.html#OpenTK_Graphics_Wgl_Wgl_EXT_BindDisplayColorTableEXT_System_UInt16_ - name: BindDisplayColorTableEXT - nameWithType: Wgl.EXT.BindDisplayColorTableEXT - fullName: OpenTK.Graphics.Wgl.Wgl.EXT.BindDisplayColorTableEXT -- uid: System.UInt16 - commentId: T:System.UInt16 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint16 - name: ushort - nameWithType: ushort - fullName: ushort - nameWithType.vb: UShort - fullName.vb: UShort - name.vb: UShort -- uid: System.Boolean - commentId: T:System.Boolean - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - name: bool - nameWithType: bool - fullName: bool - nameWithType.vb: Boolean - fullName.vb: Boolean - name.vb: Boolean -- uid: OpenTK.Graphics.Wgl.Wgl.EXT.ChoosePixelFormatEXT* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.EXT.ChoosePixelFormatEXT - href: OpenTK.Graphics.Wgl.Wgl.EXT.html#OpenTK_Graphics_Wgl_Wgl_EXT_ChoosePixelFormatEXT_System_IntPtr_System_Int32__System_Single__System_UInt32_System_Int32__System_UInt32__ - name: ChoosePixelFormatEXT - nameWithType: Wgl.EXT.ChoosePixelFormatEXT - fullName: OpenTK.Graphics.Wgl.Wgl.EXT.ChoosePixelFormatEXT -- uid: System.IntPtr - commentId: T:System.IntPtr - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: nint - nameWithType: nint - fullName: nint - nameWithType.vb: IntPtr - fullName.vb: System.IntPtr - name.vb: IntPtr -- uid: System.Int32* - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - name: int* - nameWithType: int* - fullName: int* - nameWithType.vb: Integer* - fullName.vb: Integer* - name.vb: Integer* - spec.csharp: - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '*' - spec.vb: - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '*' -- uid: System.Single* - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.single - name: float* - nameWithType: float* - fullName: float* - nameWithType.vb: Single* - fullName.vb: Single* - name.vb: Single* - spec.csharp: - - uid: System.Single - name: float - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.single - - name: '*' - spec.vb: - - uid: System.Single - name: Single - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.single - - name: '*' -- uid: System.UInt32 - commentId: T:System.UInt32 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - name: uint - nameWithType: uint - fullName: uint - nameWithType.vb: UInteger - fullName.vb: UInteger - name.vb: UInteger -- uid: System.UInt32* - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - name: uint* - nameWithType: uint* - fullName: uint* - nameWithType.vb: UInteger* - fullName.vb: UInteger* - name.vb: UInteger* - spec.csharp: - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: '*' - spec.vb: - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: '*' -- uid: System.Int32 - commentId: T:System.Int32 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - name: int - nameWithType: int - fullName: int - nameWithType.vb: Integer - fullName.vb: Integer - name.vb: Integer -- uid: OpenTK.Graphics.Wgl.Wgl.EXT.CreateDisplayColorTableEXT* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.EXT.CreateDisplayColorTableEXT - href: OpenTK.Graphics.Wgl.Wgl.EXT.html#OpenTK_Graphics_Wgl_Wgl_EXT_CreateDisplayColorTableEXT_System_UInt16_ - name: CreateDisplayColorTableEXT - nameWithType: Wgl.EXT.CreateDisplayColorTableEXT - fullName: OpenTK.Graphics.Wgl.Wgl.EXT.CreateDisplayColorTableEXT -- uid: OpenTK.Graphics.Wgl.Wgl.EXT.CreatePbufferEXT* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.EXT.CreatePbufferEXT - href: OpenTK.Graphics.Wgl.Wgl.EXT.html#OpenTK_Graphics_Wgl_Wgl_EXT_CreatePbufferEXT_System_IntPtr_System_Int32_System_Int32_System_Int32_System_Int32__ - name: CreatePbufferEXT - nameWithType: Wgl.EXT.CreatePbufferEXT - fullName: OpenTK.Graphics.Wgl.Wgl.EXT.CreatePbufferEXT -- uid: OpenTK.Graphics.Wgl.Wgl.EXT.DestroyDisplayColorTableEXT* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.EXT.DestroyDisplayColorTableEXT - href: OpenTK.Graphics.Wgl.Wgl.EXT.html#OpenTK_Graphics_Wgl_Wgl_EXT_DestroyDisplayColorTableEXT_System_UInt16_ - name: DestroyDisplayColorTableEXT - nameWithType: Wgl.EXT.DestroyDisplayColorTableEXT - fullName: OpenTK.Graphics.Wgl.Wgl.EXT.DestroyDisplayColorTableEXT -- uid: OpenTK.Graphics.Wgl.Wgl.EXT.DestroyPbufferEXT_* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.EXT.DestroyPbufferEXT_ - href: OpenTK.Graphics.Wgl.Wgl.EXT.html#OpenTK_Graphics_Wgl_Wgl_EXT_DestroyPbufferEXT__System_IntPtr_ - name: DestroyPbufferEXT_ - nameWithType: Wgl.EXT.DestroyPbufferEXT_ - fullName: OpenTK.Graphics.Wgl.Wgl.EXT.DestroyPbufferEXT_ -- uid: OpenTK.Graphics.Wgl.Wgl.EXT.GetCurrentReadDCEXT* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.EXT.GetCurrentReadDCEXT - href: OpenTK.Graphics.Wgl.Wgl.EXT.html#OpenTK_Graphics_Wgl_Wgl_EXT_GetCurrentReadDCEXT - name: GetCurrentReadDCEXT - nameWithType: Wgl.EXT.GetCurrentReadDCEXT - fullName: OpenTK.Graphics.Wgl.Wgl.EXT.GetCurrentReadDCEXT -- uid: OpenTK.Graphics.Wgl.Wgl.EXT.GetExtensionsStringEXT_* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.EXT.GetExtensionsStringEXT_ - href: OpenTK.Graphics.Wgl.Wgl.EXT.html#OpenTK_Graphics_Wgl_Wgl_EXT_GetExtensionsStringEXT_ - name: GetExtensionsStringEXT_ - nameWithType: Wgl.EXT.GetExtensionsStringEXT_ - fullName: OpenTK.Graphics.Wgl.Wgl.EXT.GetExtensionsStringEXT_ -- uid: System.Byte* - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.byte - name: byte* - nameWithType: byte* - fullName: byte* - nameWithType.vb: Byte* - fullName.vb: Byte* - name.vb: Byte* - spec.csharp: - - uid: System.Byte - name: byte - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.byte - - name: '*' - spec.vb: - - uid: System.Byte - name: Byte - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.byte - - name: '*' -- uid: OpenTK.Graphics.Wgl.Wgl.EXT.GetPbufferDCEXT* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.EXT.GetPbufferDCEXT - href: OpenTK.Graphics.Wgl.Wgl.EXT.html#OpenTK_Graphics_Wgl_Wgl_EXT_GetPbufferDCEXT_System_IntPtr_ - name: GetPbufferDCEXT - nameWithType: Wgl.EXT.GetPbufferDCEXT - fullName: OpenTK.Graphics.Wgl.Wgl.EXT.GetPbufferDCEXT -- uid: OpenTK.Graphics.Wgl.Wgl.EXT.GetPixelFormatAttribfvEXT* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.EXT.GetPixelFormatAttribfvEXT - href: OpenTK.Graphics.Wgl.Wgl.EXT.html#OpenTK_Graphics_Wgl_Wgl_EXT_GetPixelFormatAttribfvEXT_System_IntPtr_System_Int32_System_Int32_System_UInt32_OpenTK_Graphics_Wgl_PixelFormatAttribute__System_Single__ - name: GetPixelFormatAttribfvEXT - nameWithType: Wgl.EXT.GetPixelFormatAttribfvEXT - fullName: OpenTK.Graphics.Wgl.Wgl.EXT.GetPixelFormatAttribfvEXT -- uid: OpenTK.Graphics.Wgl.PixelFormatAttribute* - isExternal: true - href: OpenTK.Graphics.Wgl.PixelFormatAttribute.html - name: PixelFormatAttribute* - nameWithType: PixelFormatAttribute* - fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute* - spec.csharp: - - uid: OpenTK.Graphics.Wgl.PixelFormatAttribute - name: PixelFormatAttribute - href: OpenTK.Graphics.Wgl.PixelFormatAttribute.html - - name: '*' - spec.vb: - - uid: OpenTK.Graphics.Wgl.PixelFormatAttribute - name: PixelFormatAttribute - href: OpenTK.Graphics.Wgl.PixelFormatAttribute.html - - name: '*' -- uid: OpenTK.Graphics.Wgl.Wgl.EXT.GetPixelFormatAttribivEXT* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.EXT.GetPixelFormatAttribivEXT - href: OpenTK.Graphics.Wgl.Wgl.EXT.html#OpenTK_Graphics_Wgl_Wgl_EXT_GetPixelFormatAttribivEXT_System_IntPtr_System_Int32_System_Int32_System_UInt32_OpenTK_Graphics_Wgl_PixelFormatAttribute__System_Int32__ - name: GetPixelFormatAttribivEXT - nameWithType: Wgl.EXT.GetPixelFormatAttribivEXT - fullName: OpenTK.Graphics.Wgl.Wgl.EXT.GetPixelFormatAttribivEXT -- uid: OpenTK.Graphics.Wgl.Wgl.EXT.GetSwapIntervalEXT* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.EXT.GetSwapIntervalEXT - href: OpenTK.Graphics.Wgl.Wgl.EXT.html#OpenTK_Graphics_Wgl_Wgl_EXT_GetSwapIntervalEXT - name: GetSwapIntervalEXT - nameWithType: Wgl.EXT.GetSwapIntervalEXT - fullName: OpenTK.Graphics.Wgl.Wgl.EXT.GetSwapIntervalEXT -- uid: OpenTK.Graphics.Wgl.Wgl.EXT.LoadDisplayColorTableEXT* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.EXT.LoadDisplayColorTableEXT - href: OpenTK.Graphics.Wgl.Wgl.EXT.html#OpenTK_Graphics_Wgl_Wgl_EXT_LoadDisplayColorTableEXT_System_UInt16__System_UInt32_ - name: LoadDisplayColorTableEXT - nameWithType: Wgl.EXT.LoadDisplayColorTableEXT - fullName: OpenTK.Graphics.Wgl.Wgl.EXT.LoadDisplayColorTableEXT -- uid: System.UInt16* - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint16 - name: ushort* - nameWithType: ushort* - fullName: ushort* - nameWithType.vb: UShort* - fullName.vb: UShort* - name.vb: UShort* - spec.csharp: - - uid: System.UInt16 - name: ushort - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint16 - - name: '*' - spec.vb: - - uid: System.UInt16 - name: UShort - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint16 - - name: '*' -- uid: OpenTK.Graphics.Wgl.Wgl.EXT.MakeContextCurrentEXT_* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.EXT.MakeContextCurrentEXT_ - href: OpenTK.Graphics.Wgl.Wgl.EXT.html#OpenTK_Graphics_Wgl_Wgl_EXT_MakeContextCurrentEXT__System_IntPtr_System_IntPtr_System_IntPtr_ - name: MakeContextCurrentEXT_ - nameWithType: Wgl.EXT.MakeContextCurrentEXT_ - fullName: OpenTK.Graphics.Wgl.Wgl.EXT.MakeContextCurrentEXT_ -- uid: OpenTK.Graphics.Wgl.Wgl.EXT.QueryPbufferEXT* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.EXT.QueryPbufferEXT - href: OpenTK.Graphics.Wgl.Wgl.EXT.html#OpenTK_Graphics_Wgl_Wgl_EXT_QueryPbufferEXT_System_IntPtr_OpenTK_Graphics_Wgl_PBufferAttribute_System_Int32__ - name: QueryPbufferEXT - nameWithType: Wgl.EXT.QueryPbufferEXT - fullName: OpenTK.Graphics.Wgl.Wgl.EXT.QueryPbufferEXT -- uid: OpenTK.Graphics.Wgl.PBufferAttribute - commentId: T:OpenTK.Graphics.Wgl.PBufferAttribute - parent: OpenTK.Graphics.Wgl - href: OpenTK.Graphics.Wgl.PBufferAttribute.html - name: PBufferAttribute - nameWithType: PBufferAttribute - fullName: OpenTK.Graphics.Wgl.PBufferAttribute -- uid: OpenTK.Graphics.Wgl.Wgl.EXT.ReleasePbufferDCEXT* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.EXT.ReleasePbufferDCEXT - href: OpenTK.Graphics.Wgl.Wgl.EXT.html#OpenTK_Graphics_Wgl_Wgl_EXT_ReleasePbufferDCEXT_System_IntPtr_System_IntPtr_ - name: ReleasePbufferDCEXT - nameWithType: Wgl.EXT.ReleasePbufferDCEXT - fullName: OpenTK.Graphics.Wgl.Wgl.EXT.ReleasePbufferDCEXT -- uid: OpenTK.Graphics.Wgl.Wgl.EXT.SwapIntervalEXT_* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.EXT.SwapIntervalEXT_ - href: OpenTK.Graphics.Wgl.Wgl.EXT.html#OpenTK_Graphics_Wgl_Wgl_EXT_SwapIntervalEXT__System_Int32_ - name: SwapIntervalEXT_ - nameWithType: Wgl.EXT.SwapIntervalEXT_ - fullName: OpenTK.Graphics.Wgl.Wgl.EXT.SwapIntervalEXT_ -- uid: System.ReadOnlySpan{System.Int32} - commentId: T:System.ReadOnlySpan{System.Int32} - parent: System - definition: System.ReadOnlySpan`1 - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - name: ReadOnlySpan - nameWithType: ReadOnlySpan - fullName: System.ReadOnlySpan - nameWithType.vb: ReadOnlySpan(Of Integer) - fullName.vb: System.ReadOnlySpan(Of Integer) - name.vb: ReadOnlySpan(Of Integer) - spec.csharp: - - uid: System.ReadOnlySpan`1 - name: ReadOnlySpan - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - - name: < - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '>' - spec.vb: - - uid: System.ReadOnlySpan`1 - name: ReadOnlySpan - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - - name: ( - - name: Of - - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) -- uid: System.ReadOnlySpan{System.Single} - commentId: T:System.ReadOnlySpan{System.Single} - parent: System - definition: System.ReadOnlySpan`1 - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - name: ReadOnlySpan - nameWithType: ReadOnlySpan - fullName: System.ReadOnlySpan - nameWithType.vb: ReadOnlySpan(Of Single) - fullName.vb: System.ReadOnlySpan(Of Single) - name.vb: ReadOnlySpan(Of Single) - spec.csharp: - - uid: System.ReadOnlySpan`1 - name: ReadOnlySpan - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - - name: < - - uid: System.Single - name: float - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.single - - name: '>' - spec.vb: - - uid: System.ReadOnlySpan`1 - name: ReadOnlySpan - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - - name: ( - - name: Of - - name: " " - - uid: System.Single - name: Single - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.single - - name: ) -- uid: System.Span{System.Int32} - commentId: T:System.Span{System.Int32} - parent: System - definition: System.Span`1 - href: https://learn.microsoft.com/dotnet/api/system.span-1 - name: Span - nameWithType: Span - fullName: System.Span - nameWithType.vb: Span(Of Integer) - fullName.vb: System.Span(Of Integer) - name.vb: Span(Of Integer) - spec.csharp: - - uid: System.Span`1 - name: Span - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.span-1 - - name: < - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '>' - spec.vb: - - uid: System.Span`1 - name: Span - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.span-1 - - name: ( - - name: Of - - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) -- uid: System.ReadOnlySpan`1 - commentId: T:System.ReadOnlySpan`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - name: ReadOnlySpan - nameWithType: ReadOnlySpan - fullName: System.ReadOnlySpan - nameWithType.vb: ReadOnlySpan(Of T) - fullName.vb: System.ReadOnlySpan(Of T) - name.vb: ReadOnlySpan(Of T) - spec.csharp: - - uid: System.ReadOnlySpan`1 - name: ReadOnlySpan - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.ReadOnlySpan`1 - name: ReadOnlySpan - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: System.Span`1 - commentId: T:System.Span`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.span-1 - name: Span - nameWithType: Span - fullName: System.Span - nameWithType.vb: Span(Of T) - fullName.vb: System.Span(Of T) - name.vb: Span(Of T) - spec.csharp: - - uid: System.Span`1 - name: Span - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.span-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.Span`1 - name: Span - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.span-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: System.Int32[] - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - name: int[] - nameWithType: int[] - fullName: int[] - nameWithType.vb: Integer() - fullName.vb: Integer() - name.vb: Integer() - spec.csharp: - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '[' - - name: ']' - spec.vb: - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ( - - name: ) -- uid: System.Single[] - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.single - name: float[] - nameWithType: float[] - fullName: float[] - nameWithType.vb: Single() - fullName.vb: Single() - name.vb: Single() - spec.csharp: - - uid: System.Single - name: float - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.single - - name: '[' - - name: ']' - spec.vb: - - uid: System.Single - name: Single - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.single - - name: ( - - name: ) -- uid: System.Single - commentId: T:System.Single - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.single - name: float - nameWithType: float - fullName: float - nameWithType.vb: Single - fullName.vb: Single - name.vb: Single -- uid: OpenTK.Graphics.Wgl.Wgl.EXT.DestroyPbufferEXT* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.EXT.DestroyPbufferEXT - href: OpenTK.Graphics.Wgl.Wgl.EXT.html#OpenTK_Graphics_Wgl_Wgl_EXT_DestroyPbufferEXT_System_IntPtr_ - name: DestroyPbufferEXT - nameWithType: Wgl.EXT.DestroyPbufferEXT - fullName: OpenTK.Graphics.Wgl.Wgl.EXT.DestroyPbufferEXT -- uid: OpenTK.Graphics.Wgl.Wgl.EXT.GetExtensionsStringEXT* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.EXT.GetExtensionsStringEXT - href: OpenTK.Graphics.Wgl.Wgl.EXT.html#OpenTK_Graphics_Wgl_Wgl_EXT_GetExtensionsStringEXT - name: GetExtensionsStringEXT - nameWithType: Wgl.EXT.GetExtensionsStringEXT - fullName: OpenTK.Graphics.Wgl.Wgl.EXT.GetExtensionsStringEXT -- uid: System.String - commentId: T:System.String - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - name: string - nameWithType: string - fullName: string - nameWithType.vb: String - fullName.vb: String - name.vb: String -- uid: System.Span{OpenTK.Graphics.Wgl.PixelFormatAttribute} - commentId: T:System.Span{OpenTK.Graphics.Wgl.PixelFormatAttribute} - parent: System - definition: System.Span`1 - href: https://learn.microsoft.com/dotnet/api/system.span-1 - name: Span - nameWithType: Span - fullName: System.Span - nameWithType.vb: Span(Of PixelFormatAttribute) - fullName.vb: System.Span(Of OpenTK.Graphics.Wgl.PixelFormatAttribute) - name.vb: Span(Of PixelFormatAttribute) - spec.csharp: - - uid: System.Span`1 - name: Span - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.span-1 - - name: < - - uid: OpenTK.Graphics.Wgl.PixelFormatAttribute - name: PixelFormatAttribute - href: OpenTK.Graphics.Wgl.PixelFormatAttribute.html - - name: '>' - spec.vb: - - uid: System.Span`1 - name: Span - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.span-1 - - name: ( - - name: Of - - name: " " - - uid: OpenTK.Graphics.Wgl.PixelFormatAttribute - name: PixelFormatAttribute - href: OpenTK.Graphics.Wgl.PixelFormatAttribute.html - - name: ) -- uid: System.Span{System.Single} - commentId: T:System.Span{System.Single} - parent: System - definition: System.Span`1 - href: https://learn.microsoft.com/dotnet/api/system.span-1 - name: Span - nameWithType: Span - fullName: System.Span - nameWithType.vb: Span(Of Single) - fullName.vb: System.Span(Of Single) - name.vb: Span(Of Single) - spec.csharp: - - uid: System.Span`1 - name: Span - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.span-1 - - name: < - - uid: System.Single - name: float - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.single - - name: '>' - spec.vb: - - uid: System.Span`1 - name: Span - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.span-1 - - name: ( - - name: Of - - name: " " - - uid: System.Single - name: Single - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.single - - name: ) -- uid: OpenTK.Graphics.Wgl.PixelFormatAttribute[] - isExternal: true - href: OpenTK.Graphics.Wgl.PixelFormatAttribute.html - name: PixelFormatAttribute[] - nameWithType: PixelFormatAttribute[] - fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute[] - nameWithType.vb: PixelFormatAttribute() - fullName.vb: OpenTK.Graphics.Wgl.PixelFormatAttribute() - name.vb: PixelFormatAttribute() - spec.csharp: - - uid: OpenTK.Graphics.Wgl.PixelFormatAttribute - name: PixelFormatAttribute - href: OpenTK.Graphics.Wgl.PixelFormatAttribute.html - - name: '[' - - name: ']' - spec.vb: - - uid: OpenTK.Graphics.Wgl.PixelFormatAttribute - name: PixelFormatAttribute - href: OpenTK.Graphics.Wgl.PixelFormatAttribute.html - - name: ( - - name: ) -- uid: OpenTK.Graphics.Wgl.PixelFormatAttribute - commentId: T:OpenTK.Graphics.Wgl.PixelFormatAttribute - parent: OpenTK.Graphics.Wgl - href: OpenTK.Graphics.Wgl.PixelFormatAttribute.html - name: PixelFormatAttribute - nameWithType: PixelFormatAttribute - fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute -- uid: System.ReadOnlySpan{System.UInt16} - commentId: T:System.ReadOnlySpan{System.UInt16} - parent: System - definition: System.ReadOnlySpan`1 - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - name: ReadOnlySpan - nameWithType: ReadOnlySpan - fullName: System.ReadOnlySpan - nameWithType.vb: ReadOnlySpan(Of UShort) - fullName.vb: System.ReadOnlySpan(Of UShort) - name.vb: ReadOnlySpan(Of UShort) - spec.csharp: - - uid: System.ReadOnlySpan`1 - name: ReadOnlySpan - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - - name: < - - uid: System.UInt16 - name: ushort - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint16 - - name: '>' - spec.vb: - - uid: System.ReadOnlySpan`1 - name: ReadOnlySpan - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - - name: ( - - name: Of - - name: " " - - uid: System.UInt16 - name: UShort - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint16 - - name: ) -- uid: System.UInt16[] - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint16 - name: ushort[] - nameWithType: ushort[] - fullName: ushort[] - nameWithType.vb: UShort() - fullName.vb: UShort() - name.vb: UShort() - spec.csharp: - - uid: System.UInt16 - name: ushort - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint16 - - name: '[' - - name: ']' - spec.vb: - - uid: System.UInt16 - name: UShort - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint16 - - name: ( - - name: ) -- uid: OpenTK.Graphics.Wgl.Wgl.EXT.MakeContextCurrentEXT* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.EXT.MakeContextCurrentEXT - href: OpenTK.Graphics.Wgl.Wgl.EXT.html#OpenTK_Graphics_Wgl_Wgl_EXT_MakeContextCurrentEXT_System_IntPtr_System_IntPtr_System_IntPtr_ - name: MakeContextCurrentEXT - nameWithType: Wgl.EXT.MakeContextCurrentEXT - fullName: OpenTK.Graphics.Wgl.Wgl.EXT.MakeContextCurrentEXT -- uid: OpenTK.Graphics.Wgl.Wgl.EXT.SwapIntervalEXT* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.EXT.SwapIntervalEXT - href: OpenTK.Graphics.Wgl.Wgl.EXT.html#OpenTK_Graphics_Wgl_Wgl_EXT_SwapIntervalEXT_System_Int32_ - name: SwapIntervalEXT - nameWithType: Wgl.EXT.SwapIntervalEXT - fullName: OpenTK.Graphics.Wgl.Wgl.EXT.SwapIntervalEXT diff --git a/api/OpenTK.Graphics.Wgl.Wgl.I3D.yml b/api/OpenTK.Graphics.Wgl.Wgl.I3D.yml deleted file mode 100644 index 4a4152cb..00000000 --- a/api/OpenTK.Graphics.Wgl.Wgl.I3D.yml +++ /dev/null @@ -1,3643 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: OpenTK.Graphics.Wgl.Wgl.I3D - commentId: T:OpenTK.Graphics.Wgl.Wgl.I3D - id: Wgl.I3D - parent: OpenTK.Graphics.Wgl - children: - - OpenTK.Graphics.Wgl.Wgl.I3D.AssociateImageBufferEventsI3D(System.IntPtr,System.IntPtr*,System.IntPtr*,System.UInt32*,System.UInt32) - - OpenTK.Graphics.Wgl.Wgl.I3D.AssociateImageBufferEventsI3D(System.IntPtr,System.IntPtr@,System.IntPtr@,System.UInt32@,System.UInt32) - - OpenTK.Graphics.Wgl.Wgl.I3D.AssociateImageBufferEventsI3D(System.IntPtr,System.IntPtr[],System.IntPtr[],System.UInt32[],System.UInt32) - - OpenTK.Graphics.Wgl.Wgl.I3D.AssociateImageBufferEventsI3D(System.IntPtr,System.ReadOnlySpan{System.IntPtr},System.ReadOnlySpan{System.IntPtr},System.ReadOnlySpan{System.UInt32},System.UInt32) - - OpenTK.Graphics.Wgl.Wgl.I3D.BeginFrameTrackingI3D - - OpenTK.Graphics.Wgl.Wgl.I3D.BeginFrameTrackingI3D_ - - OpenTK.Graphics.Wgl.Wgl.I3D.CreateImageBufferI3D(System.IntPtr,System.UInt32,OpenTK.Graphics.Wgl.ImageBufferMaskI3D) - - OpenTK.Graphics.Wgl.Wgl.I3D.DestroyImageBufferI3D(System.IntPtr,System.IntPtr) - - OpenTK.Graphics.Wgl.Wgl.I3D.DestroyImageBufferI3D_(System.IntPtr,System.IntPtr) - - OpenTK.Graphics.Wgl.Wgl.I3D.DisableFrameLockI3D - - OpenTK.Graphics.Wgl.Wgl.I3D.DisableFrameLockI3D_ - - OpenTK.Graphics.Wgl.Wgl.I3D.DisableGenlockI3D(System.IntPtr) - - OpenTK.Graphics.Wgl.Wgl.I3D.DisableGenlockI3D_(System.IntPtr) - - OpenTK.Graphics.Wgl.Wgl.I3D.EnableFrameLockI3D - - OpenTK.Graphics.Wgl.Wgl.I3D.EnableFrameLockI3D_ - - OpenTK.Graphics.Wgl.Wgl.I3D.EnableGenlockI3D(System.IntPtr) - - OpenTK.Graphics.Wgl.Wgl.I3D.EnableGenlockI3D_(System.IntPtr) - - OpenTK.Graphics.Wgl.Wgl.I3D.EndFrameTrackingI3D - - OpenTK.Graphics.Wgl.Wgl.I3D.EndFrameTrackingI3D_ - - OpenTK.Graphics.Wgl.Wgl.I3D.GenlockSampleRateI3D(System.IntPtr,System.UInt32) - - OpenTK.Graphics.Wgl.Wgl.I3D.GenlockSampleRateI3D_(System.IntPtr,System.UInt32) - - OpenTK.Graphics.Wgl.Wgl.I3D.GenlockSourceDelayI3D(System.IntPtr,System.UInt32) - - OpenTK.Graphics.Wgl.Wgl.I3D.GenlockSourceDelayI3D_(System.IntPtr,System.UInt32) - - OpenTK.Graphics.Wgl.Wgl.I3D.GenlockSourceEdgeI3D(System.IntPtr,System.UInt32) - - OpenTK.Graphics.Wgl.Wgl.I3D.GenlockSourceEdgeI3D_(System.IntPtr,System.UInt32) - - OpenTK.Graphics.Wgl.Wgl.I3D.GenlockSourceI3D(System.IntPtr,System.UInt32) - - OpenTK.Graphics.Wgl.Wgl.I3D.GenlockSourceI3D_(System.IntPtr,System.UInt32) - - OpenTK.Graphics.Wgl.Wgl.I3D.GetDigitalVideoParametersI3D(System.IntPtr,OpenTK.Graphics.Wgl.DigitalVideoAttribute,System.Int32*) - - OpenTK.Graphics.Wgl.Wgl.I3D.GetDigitalVideoParametersI3D(System.IntPtr,OpenTK.Graphics.Wgl.DigitalVideoAttribute,System.Int32@) - - OpenTK.Graphics.Wgl.Wgl.I3D.GetFrameUsageI3D(System.Single*) - - OpenTK.Graphics.Wgl.Wgl.I3D.GetFrameUsageI3D(System.Single@) - - OpenTK.Graphics.Wgl.Wgl.I3D.GetGammaTableI3D(System.IntPtr,System.Int32,System.Span{System.UInt16},System.Span{System.UInt16},System.Span{System.UInt16}) - - OpenTK.Graphics.Wgl.Wgl.I3D.GetGammaTableI3D(System.IntPtr,System.Int32,System.UInt16*,System.UInt16*,System.UInt16*) - - OpenTK.Graphics.Wgl.Wgl.I3D.GetGammaTableI3D(System.IntPtr,System.Int32,System.UInt16@,System.UInt16@,System.UInt16@) - - OpenTK.Graphics.Wgl.Wgl.I3D.GetGammaTableI3D(System.IntPtr,System.Int32,System.UInt16[],System.UInt16[],System.UInt16[]) - - OpenTK.Graphics.Wgl.Wgl.I3D.GetGammaTableParametersI3D(System.IntPtr,OpenTK.Graphics.Wgl.GammaTableAttribute,System.Int32*) - - OpenTK.Graphics.Wgl.Wgl.I3D.GetGammaTableParametersI3D(System.IntPtr,OpenTK.Graphics.Wgl.GammaTableAttribute,System.Int32@) - - OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSampleRateI3D(System.IntPtr,System.UInt32*) - - OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSampleRateI3D(System.IntPtr,System.UInt32@) - - OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSourceDelayI3D(System.IntPtr,System.UInt32*) - - OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSourceDelayI3D(System.IntPtr,System.UInt32@) - - OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSourceEdgeI3D(System.IntPtr,System.UInt32*) - - OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSourceEdgeI3D(System.IntPtr,System.UInt32@) - - OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSourceI3D(System.IntPtr,System.UInt32*) - - OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSourceI3D(System.IntPtr,System.UInt32@) - - OpenTK.Graphics.Wgl.Wgl.I3D.IsEnabledFrameLockI3D(System.Int32*) - - OpenTK.Graphics.Wgl.Wgl.I3D.IsEnabledFrameLockI3D(System.Int32@) - - OpenTK.Graphics.Wgl.Wgl.I3D.IsEnabledGenlockI3D(System.IntPtr,System.Int32*) - - OpenTK.Graphics.Wgl.Wgl.I3D.IsEnabledGenlockI3D(System.IntPtr,System.Int32@) - - OpenTK.Graphics.Wgl.Wgl.I3D.QueryFrameLockMasterI3D(System.Int32*) - - OpenTK.Graphics.Wgl.Wgl.I3D.QueryFrameLockMasterI3D(System.Int32@) - - OpenTK.Graphics.Wgl.Wgl.I3D.QueryFrameTrackingI3D(System.UInt32*,System.UInt32*,System.Single*) - - OpenTK.Graphics.Wgl.Wgl.I3D.QueryFrameTrackingI3D(System.UInt32@,System.UInt32@,System.Single@) - - OpenTK.Graphics.Wgl.Wgl.I3D.QueryGenlockMaxSourceDelayI3D(System.IntPtr,System.UInt32*,System.UInt32*) - - OpenTK.Graphics.Wgl.Wgl.I3D.QueryGenlockMaxSourceDelayI3D(System.IntPtr,System.UInt32@,System.UInt32@) - - OpenTK.Graphics.Wgl.Wgl.I3D.ReleaseImageBufferEventsI3D(System.IntPtr,System.IntPtr*,System.UInt32) - - OpenTK.Graphics.Wgl.Wgl.I3D.ReleaseImageBufferEventsI3D(System.IntPtr,System.IntPtr@,System.UInt32) - - OpenTK.Graphics.Wgl.Wgl.I3D.ReleaseImageBufferEventsI3D(System.IntPtr,System.IntPtr[],System.UInt32) - - OpenTK.Graphics.Wgl.Wgl.I3D.ReleaseImageBufferEventsI3D(System.IntPtr,System.ReadOnlySpan{System.IntPtr},System.UInt32) - - OpenTK.Graphics.Wgl.Wgl.I3D.SetDigitalVideoParametersI3D(System.IntPtr,OpenTK.Graphics.Wgl.DigitalVideoAttribute,System.Int32*) - - OpenTK.Graphics.Wgl.Wgl.I3D.SetDigitalVideoParametersI3D(System.IntPtr,OpenTK.Graphics.Wgl.DigitalVideoAttribute,System.Int32@) - - OpenTK.Graphics.Wgl.Wgl.I3D.SetGammaTableI3D(System.IntPtr,System.Int32,System.ReadOnlySpan{System.UInt16},System.ReadOnlySpan{System.UInt16},System.ReadOnlySpan{System.UInt16}) - - OpenTK.Graphics.Wgl.Wgl.I3D.SetGammaTableI3D(System.IntPtr,System.Int32,System.UInt16*,System.UInt16*,System.UInt16*) - - OpenTK.Graphics.Wgl.Wgl.I3D.SetGammaTableI3D(System.IntPtr,System.Int32,System.UInt16@,System.UInt16@,System.UInt16@) - - OpenTK.Graphics.Wgl.Wgl.I3D.SetGammaTableI3D(System.IntPtr,System.Int32,System.UInt16[],System.UInt16[],System.UInt16[]) - - OpenTK.Graphics.Wgl.Wgl.I3D.SetGammaTableParametersI3D(System.IntPtr,OpenTK.Graphics.Wgl.GammaTableAttribute,System.Int32*) - - OpenTK.Graphics.Wgl.Wgl.I3D.SetGammaTableParametersI3D(System.IntPtr,OpenTK.Graphics.Wgl.GammaTableAttribute,System.Int32@) - langs: - - csharp - - vb - name: Wgl.I3D - nameWithType: Wgl.I3D - fullName: OpenTK.Graphics.Wgl.Wgl.I3D - type: Class - source: - id: I3D - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 958 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: I3D extensions. - example: [] - syntax: - content: public static class Wgl.I3D - content.vb: Public Module Wgl.I3D - inheritance: - - System.Object - inheritedMembers: - - System.Object.Equals(System.Object) - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetHashCode - - System.Object.GetType - - System.Object.MemberwiseClone - - System.Object.ReferenceEquals(System.Object,System.Object) - - System.Object.ToString -- uid: OpenTK.Graphics.Wgl.Wgl.I3D.AssociateImageBufferEventsI3D(System.IntPtr,System.IntPtr*,System.IntPtr*,System.UInt32*,System.UInt32) - commentId: M:OpenTK.Graphics.Wgl.Wgl.I3D.AssociateImageBufferEventsI3D(System.IntPtr,System.IntPtr*,System.IntPtr*,System.UInt32*,System.UInt32) - id: AssociateImageBufferEventsI3D(System.IntPtr,System.IntPtr*,System.IntPtr*,System.UInt32*,System.UInt32) - parent: OpenTK.Graphics.Wgl.Wgl.I3D - langs: - - csharp - - vb - name: AssociateImageBufferEventsI3D(nint, nint*, nint*, uint*, uint) - nameWithType: Wgl.I3D.AssociateImageBufferEventsI3D(nint, nint*, nint*, uint*, uint) - fullName: OpenTK.Graphics.Wgl.Wgl.I3D.AssociateImageBufferEventsI3D(nint, nint*, nint*, uint*, uint) - type: Method - source: - id: AssociateImageBufferEventsI3D - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs - startLine: 247 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_I3D_image_buffer] - - [entry point: wglAssociateImageBufferEventsI3D] - -
- example: [] - syntax: - content: public static int AssociateImageBufferEventsI3D(nint hDC, nint* pEvent, nint* pAddress, uint* pSize, uint count) - parameters: - - id: hDC - type: System.IntPtr - - id: pEvent - type: System.IntPtr* - - id: pAddress - type: System.IntPtr* - - id: pSize - type: System.UInt32* - - id: count - type: System.UInt32 - return: - type: System.Int32 - content.vb: Public Shared Function AssociateImageBufferEventsI3D(hDC As IntPtr, pEvent As IntPtr*, pAddress As IntPtr*, pSize As UInteger*, count As UInteger) As Integer - overload: OpenTK.Graphics.Wgl.Wgl.I3D.AssociateImageBufferEventsI3D* - nameWithType.vb: Wgl.I3D.AssociateImageBufferEventsI3D(IntPtr, IntPtr*, IntPtr*, UInteger*, UInteger) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.I3D.AssociateImageBufferEventsI3D(System.IntPtr, System.IntPtr*, System.IntPtr*, UInteger*, UInteger) - name.vb: AssociateImageBufferEventsI3D(IntPtr, IntPtr*, IntPtr*, UInteger*, UInteger) -- uid: OpenTK.Graphics.Wgl.Wgl.I3D.BeginFrameTrackingI3D_ - commentId: M:OpenTK.Graphics.Wgl.Wgl.I3D.BeginFrameTrackingI3D_ - id: BeginFrameTrackingI3D_ - parent: OpenTK.Graphics.Wgl.Wgl.I3D - langs: - - csharp - - vb - name: BeginFrameTrackingI3D_() - nameWithType: Wgl.I3D.BeginFrameTrackingI3D_() - fullName: OpenTK.Graphics.Wgl.Wgl.I3D.BeginFrameTrackingI3D_() - type: Method - source: - id: BeginFrameTrackingI3D_ - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs - startLine: 250 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_I3D_swap_frame_usage] - - [entry point: wglBeginFrameTrackingI3D] - -
- example: [] - syntax: - content: public static int BeginFrameTrackingI3D_() - return: - type: System.Int32 - content.vb: Public Shared Function BeginFrameTrackingI3D_() As Integer - overload: OpenTK.Graphics.Wgl.Wgl.I3D.BeginFrameTrackingI3D_* -- uid: OpenTK.Graphics.Wgl.Wgl.I3D.CreateImageBufferI3D(System.IntPtr,System.UInt32,OpenTK.Graphics.Wgl.ImageBufferMaskI3D) - commentId: M:OpenTK.Graphics.Wgl.Wgl.I3D.CreateImageBufferI3D(System.IntPtr,System.UInt32,OpenTK.Graphics.Wgl.ImageBufferMaskI3D) - id: CreateImageBufferI3D(System.IntPtr,System.UInt32,OpenTK.Graphics.Wgl.ImageBufferMaskI3D) - parent: OpenTK.Graphics.Wgl.Wgl.I3D - langs: - - csharp - - vb - name: CreateImageBufferI3D(nint, uint, ImageBufferMaskI3D) - nameWithType: Wgl.I3D.CreateImageBufferI3D(nint, uint, ImageBufferMaskI3D) - fullName: OpenTK.Graphics.Wgl.Wgl.I3D.CreateImageBufferI3D(nint, uint, OpenTK.Graphics.Wgl.ImageBufferMaskI3D) - type: Method - source: - id: CreateImageBufferI3D - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs - startLine: 253 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_I3D_image_buffer] - - [entry point: wglCreateImageBufferI3D] - -
- example: [] - syntax: - content: public static nint CreateImageBufferI3D(nint hDC, uint dwSize, ImageBufferMaskI3D uFlags) - parameters: - - id: hDC - type: System.IntPtr - - id: dwSize - type: System.UInt32 - - id: uFlags - type: OpenTK.Graphics.Wgl.ImageBufferMaskI3D - return: - type: System.IntPtr - content.vb: Public Shared Function CreateImageBufferI3D(hDC As IntPtr, dwSize As UInteger, uFlags As ImageBufferMaskI3D) As IntPtr - overload: OpenTK.Graphics.Wgl.Wgl.I3D.CreateImageBufferI3D* - nameWithType.vb: Wgl.I3D.CreateImageBufferI3D(IntPtr, UInteger, ImageBufferMaskI3D) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.I3D.CreateImageBufferI3D(System.IntPtr, UInteger, OpenTK.Graphics.Wgl.ImageBufferMaskI3D) - name.vb: CreateImageBufferI3D(IntPtr, UInteger, ImageBufferMaskI3D) -- uid: OpenTK.Graphics.Wgl.Wgl.I3D.DestroyImageBufferI3D_(System.IntPtr,System.IntPtr) - commentId: M:OpenTK.Graphics.Wgl.Wgl.I3D.DestroyImageBufferI3D_(System.IntPtr,System.IntPtr) - id: DestroyImageBufferI3D_(System.IntPtr,System.IntPtr) - parent: OpenTK.Graphics.Wgl.Wgl.I3D - langs: - - csharp - - vb - name: DestroyImageBufferI3D_(nint, nint) - nameWithType: Wgl.I3D.DestroyImageBufferI3D_(nint, nint) - fullName: OpenTK.Graphics.Wgl.Wgl.I3D.DestroyImageBufferI3D_(nint, nint) - type: Method - source: - id: DestroyImageBufferI3D_ - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs - startLine: 256 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_I3D_image_buffer] - - [entry point: wglDestroyImageBufferI3D] - -
- example: [] - syntax: - content: public static int DestroyImageBufferI3D_(nint hDC, nint pAddress) - parameters: - - id: hDC - type: System.IntPtr - - id: pAddress - type: System.IntPtr - return: - type: System.Int32 - content.vb: Public Shared Function DestroyImageBufferI3D_(hDC As IntPtr, pAddress As IntPtr) As Integer - overload: OpenTK.Graphics.Wgl.Wgl.I3D.DestroyImageBufferI3D_* - nameWithType.vb: Wgl.I3D.DestroyImageBufferI3D_(IntPtr, IntPtr) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.I3D.DestroyImageBufferI3D_(System.IntPtr, System.IntPtr) - name.vb: DestroyImageBufferI3D_(IntPtr, IntPtr) -- uid: OpenTK.Graphics.Wgl.Wgl.I3D.DisableFrameLockI3D_ - commentId: M:OpenTK.Graphics.Wgl.Wgl.I3D.DisableFrameLockI3D_ - id: DisableFrameLockI3D_ - parent: OpenTK.Graphics.Wgl.Wgl.I3D - langs: - - csharp - - vb - name: DisableFrameLockI3D_() - nameWithType: Wgl.I3D.DisableFrameLockI3D_() - fullName: OpenTK.Graphics.Wgl.Wgl.I3D.DisableFrameLockI3D_() - type: Method - source: - id: DisableFrameLockI3D_ - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs - startLine: 259 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_I3D_swap_frame_lock] - - [entry point: wglDisableFrameLockI3D] - -
- example: [] - syntax: - content: public static int DisableFrameLockI3D_() - return: - type: System.Int32 - content.vb: Public Shared Function DisableFrameLockI3D_() As Integer - overload: OpenTK.Graphics.Wgl.Wgl.I3D.DisableFrameLockI3D_* -- uid: OpenTK.Graphics.Wgl.Wgl.I3D.DisableGenlockI3D_(System.IntPtr) - commentId: M:OpenTK.Graphics.Wgl.Wgl.I3D.DisableGenlockI3D_(System.IntPtr) - id: DisableGenlockI3D_(System.IntPtr) - parent: OpenTK.Graphics.Wgl.Wgl.I3D - langs: - - csharp - - vb - name: DisableGenlockI3D_(nint) - nameWithType: Wgl.I3D.DisableGenlockI3D_(nint) - fullName: OpenTK.Graphics.Wgl.Wgl.I3D.DisableGenlockI3D_(nint) - type: Method - source: - id: DisableGenlockI3D_ - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs - startLine: 262 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_I3D_genlock] - - [entry point: wglDisableGenlockI3D] - -
- example: [] - syntax: - content: public static int DisableGenlockI3D_(nint hDC) - parameters: - - id: hDC - type: System.IntPtr - return: - type: System.Int32 - content.vb: Public Shared Function DisableGenlockI3D_(hDC As IntPtr) As Integer - overload: OpenTK.Graphics.Wgl.Wgl.I3D.DisableGenlockI3D_* - nameWithType.vb: Wgl.I3D.DisableGenlockI3D_(IntPtr) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.I3D.DisableGenlockI3D_(System.IntPtr) - name.vb: DisableGenlockI3D_(IntPtr) -- uid: OpenTK.Graphics.Wgl.Wgl.I3D.EnableFrameLockI3D_ - commentId: M:OpenTK.Graphics.Wgl.Wgl.I3D.EnableFrameLockI3D_ - id: EnableFrameLockI3D_ - parent: OpenTK.Graphics.Wgl.Wgl.I3D - langs: - - csharp - - vb - name: EnableFrameLockI3D_() - nameWithType: Wgl.I3D.EnableFrameLockI3D_() - fullName: OpenTK.Graphics.Wgl.Wgl.I3D.EnableFrameLockI3D_() - type: Method - source: - id: EnableFrameLockI3D_ - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs - startLine: 265 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_I3D_swap_frame_lock] - - [entry point: wglEnableFrameLockI3D] - -
- example: [] - syntax: - content: public static int EnableFrameLockI3D_() - return: - type: System.Int32 - content.vb: Public Shared Function EnableFrameLockI3D_() As Integer - overload: OpenTK.Graphics.Wgl.Wgl.I3D.EnableFrameLockI3D_* -- uid: OpenTK.Graphics.Wgl.Wgl.I3D.EnableGenlockI3D_(System.IntPtr) - commentId: M:OpenTK.Graphics.Wgl.Wgl.I3D.EnableGenlockI3D_(System.IntPtr) - id: EnableGenlockI3D_(System.IntPtr) - parent: OpenTK.Graphics.Wgl.Wgl.I3D - langs: - - csharp - - vb - name: EnableGenlockI3D_(nint) - nameWithType: Wgl.I3D.EnableGenlockI3D_(nint) - fullName: OpenTK.Graphics.Wgl.Wgl.I3D.EnableGenlockI3D_(nint) - type: Method - source: - id: EnableGenlockI3D_ - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs - startLine: 268 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_I3D_genlock] - - [entry point: wglEnableGenlockI3D] - -
- example: [] - syntax: - content: public static int EnableGenlockI3D_(nint hDC) - parameters: - - id: hDC - type: System.IntPtr - return: - type: System.Int32 - content.vb: Public Shared Function EnableGenlockI3D_(hDC As IntPtr) As Integer - overload: OpenTK.Graphics.Wgl.Wgl.I3D.EnableGenlockI3D_* - nameWithType.vb: Wgl.I3D.EnableGenlockI3D_(IntPtr) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.I3D.EnableGenlockI3D_(System.IntPtr) - name.vb: EnableGenlockI3D_(IntPtr) -- uid: OpenTK.Graphics.Wgl.Wgl.I3D.EndFrameTrackingI3D_ - commentId: M:OpenTK.Graphics.Wgl.Wgl.I3D.EndFrameTrackingI3D_ - id: EndFrameTrackingI3D_ - parent: OpenTK.Graphics.Wgl.Wgl.I3D - langs: - - csharp - - vb - name: EndFrameTrackingI3D_() - nameWithType: Wgl.I3D.EndFrameTrackingI3D_() - fullName: OpenTK.Graphics.Wgl.Wgl.I3D.EndFrameTrackingI3D_() - type: Method - source: - id: EndFrameTrackingI3D_ - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs - startLine: 271 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_I3D_swap_frame_usage] - - [entry point: wglEndFrameTrackingI3D] - -
- example: [] - syntax: - content: public static int EndFrameTrackingI3D_() - return: - type: System.Int32 - content.vb: Public Shared Function EndFrameTrackingI3D_() As Integer - overload: OpenTK.Graphics.Wgl.Wgl.I3D.EndFrameTrackingI3D_* -- uid: OpenTK.Graphics.Wgl.Wgl.I3D.GenlockSampleRateI3D_(System.IntPtr,System.UInt32) - commentId: M:OpenTK.Graphics.Wgl.Wgl.I3D.GenlockSampleRateI3D_(System.IntPtr,System.UInt32) - id: GenlockSampleRateI3D_(System.IntPtr,System.UInt32) - parent: OpenTK.Graphics.Wgl.Wgl.I3D - langs: - - csharp - - vb - name: GenlockSampleRateI3D_(nint, uint) - nameWithType: Wgl.I3D.GenlockSampleRateI3D_(nint, uint) - fullName: OpenTK.Graphics.Wgl.Wgl.I3D.GenlockSampleRateI3D_(nint, uint) - type: Method - source: - id: GenlockSampleRateI3D_ - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs - startLine: 274 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_I3D_genlock] - - [entry point: wglGenlockSampleRateI3D] - -
- example: [] - syntax: - content: public static int GenlockSampleRateI3D_(nint hDC, uint uRate) - parameters: - - id: hDC - type: System.IntPtr - - id: uRate - type: System.UInt32 - return: - type: System.Int32 - content.vb: Public Shared Function GenlockSampleRateI3D_(hDC As IntPtr, uRate As UInteger) As Integer - overload: OpenTK.Graphics.Wgl.Wgl.I3D.GenlockSampleRateI3D_* - nameWithType.vb: Wgl.I3D.GenlockSampleRateI3D_(IntPtr, UInteger) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.I3D.GenlockSampleRateI3D_(System.IntPtr, UInteger) - name.vb: GenlockSampleRateI3D_(IntPtr, UInteger) -- uid: OpenTK.Graphics.Wgl.Wgl.I3D.GenlockSourceDelayI3D_(System.IntPtr,System.UInt32) - commentId: M:OpenTK.Graphics.Wgl.Wgl.I3D.GenlockSourceDelayI3D_(System.IntPtr,System.UInt32) - id: GenlockSourceDelayI3D_(System.IntPtr,System.UInt32) - parent: OpenTK.Graphics.Wgl.Wgl.I3D - langs: - - csharp - - vb - name: GenlockSourceDelayI3D_(nint, uint) - nameWithType: Wgl.I3D.GenlockSourceDelayI3D_(nint, uint) - fullName: OpenTK.Graphics.Wgl.Wgl.I3D.GenlockSourceDelayI3D_(nint, uint) - type: Method - source: - id: GenlockSourceDelayI3D_ - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs - startLine: 277 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_I3D_genlock] - - [entry point: wglGenlockSourceDelayI3D] - -
- example: [] - syntax: - content: public static int GenlockSourceDelayI3D_(nint hDC, uint uDelay) - parameters: - - id: hDC - type: System.IntPtr - - id: uDelay - type: System.UInt32 - return: - type: System.Int32 - content.vb: Public Shared Function GenlockSourceDelayI3D_(hDC As IntPtr, uDelay As UInteger) As Integer - overload: OpenTK.Graphics.Wgl.Wgl.I3D.GenlockSourceDelayI3D_* - nameWithType.vb: Wgl.I3D.GenlockSourceDelayI3D_(IntPtr, UInteger) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.I3D.GenlockSourceDelayI3D_(System.IntPtr, UInteger) - name.vb: GenlockSourceDelayI3D_(IntPtr, UInteger) -- uid: OpenTK.Graphics.Wgl.Wgl.I3D.GenlockSourceEdgeI3D_(System.IntPtr,System.UInt32) - commentId: M:OpenTK.Graphics.Wgl.Wgl.I3D.GenlockSourceEdgeI3D_(System.IntPtr,System.UInt32) - id: GenlockSourceEdgeI3D_(System.IntPtr,System.UInt32) - parent: OpenTK.Graphics.Wgl.Wgl.I3D - langs: - - csharp - - vb - name: GenlockSourceEdgeI3D_(nint, uint) - nameWithType: Wgl.I3D.GenlockSourceEdgeI3D_(nint, uint) - fullName: OpenTK.Graphics.Wgl.Wgl.I3D.GenlockSourceEdgeI3D_(nint, uint) - type: Method - source: - id: GenlockSourceEdgeI3D_ - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs - startLine: 280 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_I3D_genlock] - - [entry point: wglGenlockSourceEdgeI3D] - -
- example: [] - syntax: - content: public static int GenlockSourceEdgeI3D_(nint hDC, uint uEdge) - parameters: - - id: hDC - type: System.IntPtr - - id: uEdge - type: System.UInt32 - return: - type: System.Int32 - content.vb: Public Shared Function GenlockSourceEdgeI3D_(hDC As IntPtr, uEdge As UInteger) As Integer - overload: OpenTK.Graphics.Wgl.Wgl.I3D.GenlockSourceEdgeI3D_* - nameWithType.vb: Wgl.I3D.GenlockSourceEdgeI3D_(IntPtr, UInteger) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.I3D.GenlockSourceEdgeI3D_(System.IntPtr, UInteger) - name.vb: GenlockSourceEdgeI3D_(IntPtr, UInteger) -- uid: OpenTK.Graphics.Wgl.Wgl.I3D.GenlockSourceI3D_(System.IntPtr,System.UInt32) - commentId: M:OpenTK.Graphics.Wgl.Wgl.I3D.GenlockSourceI3D_(System.IntPtr,System.UInt32) - id: GenlockSourceI3D_(System.IntPtr,System.UInt32) - parent: OpenTK.Graphics.Wgl.Wgl.I3D - langs: - - csharp - - vb - name: GenlockSourceI3D_(nint, uint) - nameWithType: Wgl.I3D.GenlockSourceI3D_(nint, uint) - fullName: OpenTK.Graphics.Wgl.Wgl.I3D.GenlockSourceI3D_(nint, uint) - type: Method - source: - id: GenlockSourceI3D_ - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs - startLine: 283 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_I3D_genlock] - - [entry point: wglGenlockSourceI3D] - -
- example: [] - syntax: - content: public static int GenlockSourceI3D_(nint hDC, uint uSource) - parameters: - - id: hDC - type: System.IntPtr - - id: uSource - type: System.UInt32 - return: - type: System.Int32 - content.vb: Public Shared Function GenlockSourceI3D_(hDC As IntPtr, uSource As UInteger) As Integer - overload: OpenTK.Graphics.Wgl.Wgl.I3D.GenlockSourceI3D_* - nameWithType.vb: Wgl.I3D.GenlockSourceI3D_(IntPtr, UInteger) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.I3D.GenlockSourceI3D_(System.IntPtr, UInteger) - name.vb: GenlockSourceI3D_(IntPtr, UInteger) -- uid: OpenTK.Graphics.Wgl.Wgl.I3D.GetDigitalVideoParametersI3D(System.IntPtr,OpenTK.Graphics.Wgl.DigitalVideoAttribute,System.Int32*) - commentId: M:OpenTK.Graphics.Wgl.Wgl.I3D.GetDigitalVideoParametersI3D(System.IntPtr,OpenTK.Graphics.Wgl.DigitalVideoAttribute,System.Int32*) - id: GetDigitalVideoParametersI3D(System.IntPtr,OpenTK.Graphics.Wgl.DigitalVideoAttribute,System.Int32*) - parent: OpenTK.Graphics.Wgl.Wgl.I3D - langs: - - csharp - - vb - name: GetDigitalVideoParametersI3D(nint, DigitalVideoAttribute, int*) - nameWithType: Wgl.I3D.GetDigitalVideoParametersI3D(nint, DigitalVideoAttribute, int*) - fullName: OpenTK.Graphics.Wgl.Wgl.I3D.GetDigitalVideoParametersI3D(nint, OpenTK.Graphics.Wgl.DigitalVideoAttribute, int*) - type: Method - source: - id: GetDigitalVideoParametersI3D - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs - startLine: 286 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_I3D_digital_video_control] - - [entry point: wglGetDigitalVideoParametersI3D] - -
- example: [] - syntax: - content: public static int GetDigitalVideoParametersI3D(nint hDC, DigitalVideoAttribute iAttribute, int* piValue) - parameters: - - id: hDC - type: System.IntPtr - - id: iAttribute - type: OpenTK.Graphics.Wgl.DigitalVideoAttribute - - id: piValue - type: System.Int32* - return: - type: System.Int32 - content.vb: Public Shared Function GetDigitalVideoParametersI3D(hDC As IntPtr, iAttribute As DigitalVideoAttribute, piValue As Integer*) As Integer - overload: OpenTK.Graphics.Wgl.Wgl.I3D.GetDigitalVideoParametersI3D* - nameWithType.vb: Wgl.I3D.GetDigitalVideoParametersI3D(IntPtr, DigitalVideoAttribute, Integer*) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.I3D.GetDigitalVideoParametersI3D(System.IntPtr, OpenTK.Graphics.Wgl.DigitalVideoAttribute, Integer*) - name.vb: GetDigitalVideoParametersI3D(IntPtr, DigitalVideoAttribute, Integer*) -- uid: OpenTK.Graphics.Wgl.Wgl.I3D.GetFrameUsageI3D(System.Single*) - commentId: M:OpenTK.Graphics.Wgl.Wgl.I3D.GetFrameUsageI3D(System.Single*) - id: GetFrameUsageI3D(System.Single*) - parent: OpenTK.Graphics.Wgl.Wgl.I3D - langs: - - csharp - - vb - name: GetFrameUsageI3D(float*) - nameWithType: Wgl.I3D.GetFrameUsageI3D(float*) - fullName: OpenTK.Graphics.Wgl.Wgl.I3D.GetFrameUsageI3D(float*) - type: Method - source: - id: GetFrameUsageI3D - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs - startLine: 289 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_I3D_swap_frame_usage] - - [entry point: wglGetFrameUsageI3D] - -
- example: [] - syntax: - content: public static int GetFrameUsageI3D(float* pUsage) - parameters: - - id: pUsage - type: System.Single* - return: - type: System.Int32 - content.vb: Public Shared Function GetFrameUsageI3D(pUsage As Single*) As Integer - overload: OpenTK.Graphics.Wgl.Wgl.I3D.GetFrameUsageI3D* - nameWithType.vb: Wgl.I3D.GetFrameUsageI3D(Single*) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.I3D.GetFrameUsageI3D(Single*) - name.vb: GetFrameUsageI3D(Single*) -- uid: OpenTK.Graphics.Wgl.Wgl.I3D.GetGammaTableI3D(System.IntPtr,System.Int32,System.UInt16*,System.UInt16*,System.UInt16*) - commentId: M:OpenTK.Graphics.Wgl.Wgl.I3D.GetGammaTableI3D(System.IntPtr,System.Int32,System.UInt16*,System.UInt16*,System.UInt16*) - id: GetGammaTableI3D(System.IntPtr,System.Int32,System.UInt16*,System.UInt16*,System.UInt16*) - parent: OpenTK.Graphics.Wgl.Wgl.I3D - langs: - - csharp - - vb - name: GetGammaTableI3D(nint, int, ushort*, ushort*, ushort*) - nameWithType: Wgl.I3D.GetGammaTableI3D(nint, int, ushort*, ushort*, ushort*) - fullName: OpenTK.Graphics.Wgl.Wgl.I3D.GetGammaTableI3D(nint, int, ushort*, ushort*, ushort*) - type: Method - source: - id: GetGammaTableI3D - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs - startLine: 292 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_I3D_gamma] - - [entry point: wglGetGammaTableI3D] - -
- example: [] - syntax: - content: public static int GetGammaTableI3D(nint hDC, int iEntries, ushort* puRed, ushort* puGreen, ushort* puBlue) - parameters: - - id: hDC - type: System.IntPtr - - id: iEntries - type: System.Int32 - - id: puRed - type: System.UInt16* - - id: puGreen - type: System.UInt16* - - id: puBlue - type: System.UInt16* - return: - type: System.Int32 - content.vb: Public Shared Function GetGammaTableI3D(hDC As IntPtr, iEntries As Integer, puRed As UShort*, puGreen As UShort*, puBlue As UShort*) As Integer - overload: OpenTK.Graphics.Wgl.Wgl.I3D.GetGammaTableI3D* - nameWithType.vb: Wgl.I3D.GetGammaTableI3D(IntPtr, Integer, UShort*, UShort*, UShort*) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.I3D.GetGammaTableI3D(System.IntPtr, Integer, UShort*, UShort*, UShort*) - name.vb: GetGammaTableI3D(IntPtr, Integer, UShort*, UShort*, UShort*) -- uid: OpenTK.Graphics.Wgl.Wgl.I3D.GetGammaTableParametersI3D(System.IntPtr,OpenTK.Graphics.Wgl.GammaTableAttribute,System.Int32*) - commentId: M:OpenTK.Graphics.Wgl.Wgl.I3D.GetGammaTableParametersI3D(System.IntPtr,OpenTK.Graphics.Wgl.GammaTableAttribute,System.Int32*) - id: GetGammaTableParametersI3D(System.IntPtr,OpenTK.Graphics.Wgl.GammaTableAttribute,System.Int32*) - parent: OpenTK.Graphics.Wgl.Wgl.I3D - langs: - - csharp - - vb - name: GetGammaTableParametersI3D(nint, GammaTableAttribute, int*) - nameWithType: Wgl.I3D.GetGammaTableParametersI3D(nint, GammaTableAttribute, int*) - fullName: OpenTK.Graphics.Wgl.Wgl.I3D.GetGammaTableParametersI3D(nint, OpenTK.Graphics.Wgl.GammaTableAttribute, int*) - type: Method - source: - id: GetGammaTableParametersI3D - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs - startLine: 295 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_I3D_gamma] - - [entry point: wglGetGammaTableParametersI3D] - -
- example: [] - syntax: - content: public static int GetGammaTableParametersI3D(nint hDC, GammaTableAttribute iAttribute, int* piValue) - parameters: - - id: hDC - type: System.IntPtr - - id: iAttribute - type: OpenTK.Graphics.Wgl.GammaTableAttribute - - id: piValue - type: System.Int32* - return: - type: System.Int32 - content.vb: Public Shared Function GetGammaTableParametersI3D(hDC As IntPtr, iAttribute As GammaTableAttribute, piValue As Integer*) As Integer - overload: OpenTK.Graphics.Wgl.Wgl.I3D.GetGammaTableParametersI3D* - nameWithType.vb: Wgl.I3D.GetGammaTableParametersI3D(IntPtr, GammaTableAttribute, Integer*) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.I3D.GetGammaTableParametersI3D(System.IntPtr, OpenTK.Graphics.Wgl.GammaTableAttribute, Integer*) - name.vb: GetGammaTableParametersI3D(IntPtr, GammaTableAttribute, Integer*) -- uid: OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSampleRateI3D(System.IntPtr,System.UInt32*) - commentId: M:OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSampleRateI3D(System.IntPtr,System.UInt32*) - id: GetGenlockSampleRateI3D(System.IntPtr,System.UInt32*) - parent: OpenTK.Graphics.Wgl.Wgl.I3D - langs: - - csharp - - vb - name: GetGenlockSampleRateI3D(nint, uint*) - nameWithType: Wgl.I3D.GetGenlockSampleRateI3D(nint, uint*) - fullName: OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSampleRateI3D(nint, uint*) - type: Method - source: - id: GetGenlockSampleRateI3D - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs - startLine: 298 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_I3D_genlock] - - [entry point: wglGetGenlockSampleRateI3D] - -
- example: [] - syntax: - content: public static int GetGenlockSampleRateI3D(nint hDC, uint* uRate) - parameters: - - id: hDC - type: System.IntPtr - - id: uRate - type: System.UInt32* - return: - type: System.Int32 - content.vb: Public Shared Function GetGenlockSampleRateI3D(hDC As IntPtr, uRate As UInteger*) As Integer - overload: OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSampleRateI3D* - nameWithType.vb: Wgl.I3D.GetGenlockSampleRateI3D(IntPtr, UInteger*) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSampleRateI3D(System.IntPtr, UInteger*) - name.vb: GetGenlockSampleRateI3D(IntPtr, UInteger*) -- uid: OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSourceDelayI3D(System.IntPtr,System.UInt32*) - commentId: M:OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSourceDelayI3D(System.IntPtr,System.UInt32*) - id: GetGenlockSourceDelayI3D(System.IntPtr,System.UInt32*) - parent: OpenTK.Graphics.Wgl.Wgl.I3D - langs: - - csharp - - vb - name: GetGenlockSourceDelayI3D(nint, uint*) - nameWithType: Wgl.I3D.GetGenlockSourceDelayI3D(nint, uint*) - fullName: OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSourceDelayI3D(nint, uint*) - type: Method - source: - id: GetGenlockSourceDelayI3D - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs - startLine: 301 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_I3D_genlock] - - [entry point: wglGetGenlockSourceDelayI3D] - -
- example: [] - syntax: - content: public static int GetGenlockSourceDelayI3D(nint hDC, uint* uDelay) - parameters: - - id: hDC - type: System.IntPtr - - id: uDelay - type: System.UInt32* - return: - type: System.Int32 - content.vb: Public Shared Function GetGenlockSourceDelayI3D(hDC As IntPtr, uDelay As UInteger*) As Integer - overload: OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSourceDelayI3D* - nameWithType.vb: Wgl.I3D.GetGenlockSourceDelayI3D(IntPtr, UInteger*) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSourceDelayI3D(System.IntPtr, UInteger*) - name.vb: GetGenlockSourceDelayI3D(IntPtr, UInteger*) -- uid: OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSourceEdgeI3D(System.IntPtr,System.UInt32*) - commentId: M:OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSourceEdgeI3D(System.IntPtr,System.UInt32*) - id: GetGenlockSourceEdgeI3D(System.IntPtr,System.UInt32*) - parent: OpenTK.Graphics.Wgl.Wgl.I3D - langs: - - csharp - - vb - name: GetGenlockSourceEdgeI3D(nint, uint*) - nameWithType: Wgl.I3D.GetGenlockSourceEdgeI3D(nint, uint*) - fullName: OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSourceEdgeI3D(nint, uint*) - type: Method - source: - id: GetGenlockSourceEdgeI3D - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs - startLine: 304 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_I3D_genlock] - - [entry point: wglGetGenlockSourceEdgeI3D] - -
- example: [] - syntax: - content: public static int GetGenlockSourceEdgeI3D(nint hDC, uint* uEdge) - parameters: - - id: hDC - type: System.IntPtr - - id: uEdge - type: System.UInt32* - return: - type: System.Int32 - content.vb: Public Shared Function GetGenlockSourceEdgeI3D(hDC As IntPtr, uEdge As UInteger*) As Integer - overload: OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSourceEdgeI3D* - nameWithType.vb: Wgl.I3D.GetGenlockSourceEdgeI3D(IntPtr, UInteger*) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSourceEdgeI3D(System.IntPtr, UInteger*) - name.vb: GetGenlockSourceEdgeI3D(IntPtr, UInteger*) -- uid: OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSourceI3D(System.IntPtr,System.UInt32*) - commentId: M:OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSourceI3D(System.IntPtr,System.UInt32*) - id: GetGenlockSourceI3D(System.IntPtr,System.UInt32*) - parent: OpenTK.Graphics.Wgl.Wgl.I3D - langs: - - csharp - - vb - name: GetGenlockSourceI3D(nint, uint*) - nameWithType: Wgl.I3D.GetGenlockSourceI3D(nint, uint*) - fullName: OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSourceI3D(nint, uint*) - type: Method - source: - id: GetGenlockSourceI3D - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs - startLine: 307 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_I3D_genlock] - - [entry point: wglGetGenlockSourceI3D] - -
- example: [] - syntax: - content: public static int GetGenlockSourceI3D(nint hDC, uint* uSource) - parameters: - - id: hDC - type: System.IntPtr - - id: uSource - type: System.UInt32* - return: - type: System.Int32 - content.vb: Public Shared Function GetGenlockSourceI3D(hDC As IntPtr, uSource As UInteger*) As Integer - overload: OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSourceI3D* - nameWithType.vb: Wgl.I3D.GetGenlockSourceI3D(IntPtr, UInteger*) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSourceI3D(System.IntPtr, UInteger*) - name.vb: GetGenlockSourceI3D(IntPtr, UInteger*) -- uid: OpenTK.Graphics.Wgl.Wgl.I3D.IsEnabledFrameLockI3D(System.Int32*) - commentId: M:OpenTK.Graphics.Wgl.Wgl.I3D.IsEnabledFrameLockI3D(System.Int32*) - id: IsEnabledFrameLockI3D(System.Int32*) - parent: OpenTK.Graphics.Wgl.Wgl.I3D - langs: - - csharp - - vb - name: IsEnabledFrameLockI3D(int*) - nameWithType: Wgl.I3D.IsEnabledFrameLockI3D(int*) - fullName: OpenTK.Graphics.Wgl.Wgl.I3D.IsEnabledFrameLockI3D(int*) - type: Method - source: - id: IsEnabledFrameLockI3D - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs - startLine: 310 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_I3D_swap_frame_lock] - - [entry point: wglIsEnabledFrameLockI3D] - -
- example: [] - syntax: - content: public static int IsEnabledFrameLockI3D(int* pFlag) - parameters: - - id: pFlag - type: System.Int32* - return: - type: System.Int32 - content.vb: Public Shared Function IsEnabledFrameLockI3D(pFlag As Integer*) As Integer - overload: OpenTK.Graphics.Wgl.Wgl.I3D.IsEnabledFrameLockI3D* - nameWithType.vb: Wgl.I3D.IsEnabledFrameLockI3D(Integer*) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.I3D.IsEnabledFrameLockI3D(Integer*) - name.vb: IsEnabledFrameLockI3D(Integer*) -- uid: OpenTK.Graphics.Wgl.Wgl.I3D.IsEnabledGenlockI3D(System.IntPtr,System.Int32*) - commentId: M:OpenTK.Graphics.Wgl.Wgl.I3D.IsEnabledGenlockI3D(System.IntPtr,System.Int32*) - id: IsEnabledGenlockI3D(System.IntPtr,System.Int32*) - parent: OpenTK.Graphics.Wgl.Wgl.I3D - langs: - - csharp - - vb - name: IsEnabledGenlockI3D(nint, int*) - nameWithType: Wgl.I3D.IsEnabledGenlockI3D(nint, int*) - fullName: OpenTK.Graphics.Wgl.Wgl.I3D.IsEnabledGenlockI3D(nint, int*) - type: Method - source: - id: IsEnabledGenlockI3D - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs - startLine: 313 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_I3D_genlock] - - [entry point: wglIsEnabledGenlockI3D] - -
- example: [] - syntax: - content: public static int IsEnabledGenlockI3D(nint hDC, int* pFlag) - parameters: - - id: hDC - type: System.IntPtr - - id: pFlag - type: System.Int32* - return: - type: System.Int32 - content.vb: Public Shared Function IsEnabledGenlockI3D(hDC As IntPtr, pFlag As Integer*) As Integer - overload: OpenTK.Graphics.Wgl.Wgl.I3D.IsEnabledGenlockI3D* - nameWithType.vb: Wgl.I3D.IsEnabledGenlockI3D(IntPtr, Integer*) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.I3D.IsEnabledGenlockI3D(System.IntPtr, Integer*) - name.vb: IsEnabledGenlockI3D(IntPtr, Integer*) -- uid: OpenTK.Graphics.Wgl.Wgl.I3D.QueryFrameLockMasterI3D(System.Int32*) - commentId: M:OpenTK.Graphics.Wgl.Wgl.I3D.QueryFrameLockMasterI3D(System.Int32*) - id: QueryFrameLockMasterI3D(System.Int32*) - parent: OpenTK.Graphics.Wgl.Wgl.I3D - langs: - - csharp - - vb - name: QueryFrameLockMasterI3D(int*) - nameWithType: Wgl.I3D.QueryFrameLockMasterI3D(int*) - fullName: OpenTK.Graphics.Wgl.Wgl.I3D.QueryFrameLockMasterI3D(int*) - type: Method - source: - id: QueryFrameLockMasterI3D - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs - startLine: 316 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_I3D_swap_frame_lock] - - [entry point: wglQueryFrameLockMasterI3D] - -
- example: [] - syntax: - content: public static int QueryFrameLockMasterI3D(int* pFlag) - parameters: - - id: pFlag - type: System.Int32* - return: - type: System.Int32 - content.vb: Public Shared Function QueryFrameLockMasterI3D(pFlag As Integer*) As Integer - overload: OpenTK.Graphics.Wgl.Wgl.I3D.QueryFrameLockMasterI3D* - nameWithType.vb: Wgl.I3D.QueryFrameLockMasterI3D(Integer*) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.I3D.QueryFrameLockMasterI3D(Integer*) - name.vb: QueryFrameLockMasterI3D(Integer*) -- uid: OpenTK.Graphics.Wgl.Wgl.I3D.QueryFrameTrackingI3D(System.UInt32*,System.UInt32*,System.Single*) - commentId: M:OpenTK.Graphics.Wgl.Wgl.I3D.QueryFrameTrackingI3D(System.UInt32*,System.UInt32*,System.Single*) - id: QueryFrameTrackingI3D(System.UInt32*,System.UInt32*,System.Single*) - parent: OpenTK.Graphics.Wgl.Wgl.I3D - langs: - - csharp - - vb - name: QueryFrameTrackingI3D(uint*, uint*, float*) - nameWithType: Wgl.I3D.QueryFrameTrackingI3D(uint*, uint*, float*) - fullName: OpenTK.Graphics.Wgl.Wgl.I3D.QueryFrameTrackingI3D(uint*, uint*, float*) - type: Method - source: - id: QueryFrameTrackingI3D - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs - startLine: 319 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_I3D_swap_frame_usage] - - [entry point: wglQueryFrameTrackingI3D] - -
- example: [] - syntax: - content: public static int QueryFrameTrackingI3D(uint* pFrameCount, uint* pMissedFrames, float* pLastMissedUsage) - parameters: - - id: pFrameCount - type: System.UInt32* - - id: pMissedFrames - type: System.UInt32* - - id: pLastMissedUsage - type: System.Single* - return: - type: System.Int32 - content.vb: Public Shared Function QueryFrameTrackingI3D(pFrameCount As UInteger*, pMissedFrames As UInteger*, pLastMissedUsage As Single*) As Integer - overload: OpenTK.Graphics.Wgl.Wgl.I3D.QueryFrameTrackingI3D* - nameWithType.vb: Wgl.I3D.QueryFrameTrackingI3D(UInteger*, UInteger*, Single*) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.I3D.QueryFrameTrackingI3D(UInteger*, UInteger*, Single*) - name.vb: QueryFrameTrackingI3D(UInteger*, UInteger*, Single*) -- uid: OpenTK.Graphics.Wgl.Wgl.I3D.QueryGenlockMaxSourceDelayI3D(System.IntPtr,System.UInt32*,System.UInt32*) - commentId: M:OpenTK.Graphics.Wgl.Wgl.I3D.QueryGenlockMaxSourceDelayI3D(System.IntPtr,System.UInt32*,System.UInt32*) - id: QueryGenlockMaxSourceDelayI3D(System.IntPtr,System.UInt32*,System.UInt32*) - parent: OpenTK.Graphics.Wgl.Wgl.I3D - langs: - - csharp - - vb - name: QueryGenlockMaxSourceDelayI3D(nint, uint*, uint*) - nameWithType: Wgl.I3D.QueryGenlockMaxSourceDelayI3D(nint, uint*, uint*) - fullName: OpenTK.Graphics.Wgl.Wgl.I3D.QueryGenlockMaxSourceDelayI3D(nint, uint*, uint*) - type: Method - source: - id: QueryGenlockMaxSourceDelayI3D - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs - startLine: 322 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_I3D_genlock] - - [entry point: wglQueryGenlockMaxSourceDelayI3D] - -
- example: [] - syntax: - content: public static int QueryGenlockMaxSourceDelayI3D(nint hDC, uint* uMaxLineDelay, uint* uMaxPixelDelay) - parameters: - - id: hDC - type: System.IntPtr - - id: uMaxLineDelay - type: System.UInt32* - - id: uMaxPixelDelay - type: System.UInt32* - return: - type: System.Int32 - content.vb: Public Shared Function QueryGenlockMaxSourceDelayI3D(hDC As IntPtr, uMaxLineDelay As UInteger*, uMaxPixelDelay As UInteger*) As Integer - overload: OpenTK.Graphics.Wgl.Wgl.I3D.QueryGenlockMaxSourceDelayI3D* - nameWithType.vb: Wgl.I3D.QueryGenlockMaxSourceDelayI3D(IntPtr, UInteger*, UInteger*) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.I3D.QueryGenlockMaxSourceDelayI3D(System.IntPtr, UInteger*, UInteger*) - name.vb: QueryGenlockMaxSourceDelayI3D(IntPtr, UInteger*, UInteger*) -- uid: OpenTK.Graphics.Wgl.Wgl.I3D.ReleaseImageBufferEventsI3D(System.IntPtr,System.IntPtr*,System.UInt32) - commentId: M:OpenTK.Graphics.Wgl.Wgl.I3D.ReleaseImageBufferEventsI3D(System.IntPtr,System.IntPtr*,System.UInt32) - id: ReleaseImageBufferEventsI3D(System.IntPtr,System.IntPtr*,System.UInt32) - parent: OpenTK.Graphics.Wgl.Wgl.I3D - langs: - - csharp - - vb - name: ReleaseImageBufferEventsI3D(nint, nint*, uint) - nameWithType: Wgl.I3D.ReleaseImageBufferEventsI3D(nint, nint*, uint) - fullName: OpenTK.Graphics.Wgl.Wgl.I3D.ReleaseImageBufferEventsI3D(nint, nint*, uint) - type: Method - source: - id: ReleaseImageBufferEventsI3D - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs - startLine: 325 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_I3D_image_buffer] - - [entry point: wglReleaseImageBufferEventsI3D] - -
- example: [] - syntax: - content: public static int ReleaseImageBufferEventsI3D(nint hDC, nint* pAddress, uint count) - parameters: - - id: hDC - type: System.IntPtr - - id: pAddress - type: System.IntPtr* - - id: count - type: System.UInt32 - return: - type: System.Int32 - content.vb: Public Shared Function ReleaseImageBufferEventsI3D(hDC As IntPtr, pAddress As IntPtr*, count As UInteger) As Integer - overload: OpenTK.Graphics.Wgl.Wgl.I3D.ReleaseImageBufferEventsI3D* - nameWithType.vb: Wgl.I3D.ReleaseImageBufferEventsI3D(IntPtr, IntPtr*, UInteger) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.I3D.ReleaseImageBufferEventsI3D(System.IntPtr, System.IntPtr*, UInteger) - name.vb: ReleaseImageBufferEventsI3D(IntPtr, IntPtr*, UInteger) -- uid: OpenTK.Graphics.Wgl.Wgl.I3D.SetDigitalVideoParametersI3D(System.IntPtr,OpenTK.Graphics.Wgl.DigitalVideoAttribute,System.Int32*) - commentId: M:OpenTK.Graphics.Wgl.Wgl.I3D.SetDigitalVideoParametersI3D(System.IntPtr,OpenTK.Graphics.Wgl.DigitalVideoAttribute,System.Int32*) - id: SetDigitalVideoParametersI3D(System.IntPtr,OpenTK.Graphics.Wgl.DigitalVideoAttribute,System.Int32*) - parent: OpenTK.Graphics.Wgl.Wgl.I3D - langs: - - csharp - - vb - name: SetDigitalVideoParametersI3D(nint, DigitalVideoAttribute, int*) - nameWithType: Wgl.I3D.SetDigitalVideoParametersI3D(nint, DigitalVideoAttribute, int*) - fullName: OpenTK.Graphics.Wgl.Wgl.I3D.SetDigitalVideoParametersI3D(nint, OpenTK.Graphics.Wgl.DigitalVideoAttribute, int*) - type: Method - source: - id: SetDigitalVideoParametersI3D - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs - startLine: 328 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_I3D_digital_video_control] - - [entry point: wglSetDigitalVideoParametersI3D] - -
- example: [] - syntax: - content: public static int SetDigitalVideoParametersI3D(nint hDC, DigitalVideoAttribute iAttribute, int* piValue) - parameters: - - id: hDC - type: System.IntPtr - - id: iAttribute - type: OpenTK.Graphics.Wgl.DigitalVideoAttribute - - id: piValue - type: System.Int32* - return: - type: System.Int32 - content.vb: Public Shared Function SetDigitalVideoParametersI3D(hDC As IntPtr, iAttribute As DigitalVideoAttribute, piValue As Integer*) As Integer - overload: OpenTK.Graphics.Wgl.Wgl.I3D.SetDigitalVideoParametersI3D* - nameWithType.vb: Wgl.I3D.SetDigitalVideoParametersI3D(IntPtr, DigitalVideoAttribute, Integer*) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.I3D.SetDigitalVideoParametersI3D(System.IntPtr, OpenTK.Graphics.Wgl.DigitalVideoAttribute, Integer*) - name.vb: SetDigitalVideoParametersI3D(IntPtr, DigitalVideoAttribute, Integer*) -- uid: OpenTK.Graphics.Wgl.Wgl.I3D.SetGammaTableI3D(System.IntPtr,System.Int32,System.UInt16*,System.UInt16*,System.UInt16*) - commentId: M:OpenTK.Graphics.Wgl.Wgl.I3D.SetGammaTableI3D(System.IntPtr,System.Int32,System.UInt16*,System.UInt16*,System.UInt16*) - id: SetGammaTableI3D(System.IntPtr,System.Int32,System.UInt16*,System.UInt16*,System.UInt16*) - parent: OpenTK.Graphics.Wgl.Wgl.I3D - langs: - - csharp - - vb - name: SetGammaTableI3D(nint, int, ushort*, ushort*, ushort*) - nameWithType: Wgl.I3D.SetGammaTableI3D(nint, int, ushort*, ushort*, ushort*) - fullName: OpenTK.Graphics.Wgl.Wgl.I3D.SetGammaTableI3D(nint, int, ushort*, ushort*, ushort*) - type: Method - source: - id: SetGammaTableI3D - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs - startLine: 331 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_I3D_gamma] - - [entry point: wglSetGammaTableI3D] - -
- example: [] - syntax: - content: public static int SetGammaTableI3D(nint hDC, int iEntries, ushort* puRed, ushort* puGreen, ushort* puBlue) - parameters: - - id: hDC - type: System.IntPtr - - id: iEntries - type: System.Int32 - - id: puRed - type: System.UInt16* - - id: puGreen - type: System.UInt16* - - id: puBlue - type: System.UInt16* - return: - type: System.Int32 - content.vb: Public Shared Function SetGammaTableI3D(hDC As IntPtr, iEntries As Integer, puRed As UShort*, puGreen As UShort*, puBlue As UShort*) As Integer - overload: OpenTK.Graphics.Wgl.Wgl.I3D.SetGammaTableI3D* - nameWithType.vb: Wgl.I3D.SetGammaTableI3D(IntPtr, Integer, UShort*, UShort*, UShort*) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.I3D.SetGammaTableI3D(System.IntPtr, Integer, UShort*, UShort*, UShort*) - name.vb: SetGammaTableI3D(IntPtr, Integer, UShort*, UShort*, UShort*) -- uid: OpenTK.Graphics.Wgl.Wgl.I3D.SetGammaTableParametersI3D(System.IntPtr,OpenTK.Graphics.Wgl.GammaTableAttribute,System.Int32*) - commentId: M:OpenTK.Graphics.Wgl.Wgl.I3D.SetGammaTableParametersI3D(System.IntPtr,OpenTK.Graphics.Wgl.GammaTableAttribute,System.Int32*) - id: SetGammaTableParametersI3D(System.IntPtr,OpenTK.Graphics.Wgl.GammaTableAttribute,System.Int32*) - parent: OpenTK.Graphics.Wgl.Wgl.I3D - langs: - - csharp - - vb - name: SetGammaTableParametersI3D(nint, GammaTableAttribute, int*) - nameWithType: Wgl.I3D.SetGammaTableParametersI3D(nint, GammaTableAttribute, int*) - fullName: OpenTK.Graphics.Wgl.Wgl.I3D.SetGammaTableParametersI3D(nint, OpenTK.Graphics.Wgl.GammaTableAttribute, int*) - type: Method - source: - id: SetGammaTableParametersI3D - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs - startLine: 334 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_I3D_gamma] - - [entry point: wglSetGammaTableParametersI3D] - -
- example: [] - syntax: - content: public static int SetGammaTableParametersI3D(nint hDC, GammaTableAttribute iAttribute, int* piValue) - parameters: - - id: hDC - type: System.IntPtr - - id: iAttribute - type: OpenTK.Graphics.Wgl.GammaTableAttribute - - id: piValue - type: System.Int32* - return: - type: System.Int32 - content.vb: Public Shared Function SetGammaTableParametersI3D(hDC As IntPtr, iAttribute As GammaTableAttribute, piValue As Integer*) As Integer - overload: OpenTK.Graphics.Wgl.Wgl.I3D.SetGammaTableParametersI3D* - nameWithType.vb: Wgl.I3D.SetGammaTableParametersI3D(IntPtr, GammaTableAttribute, Integer*) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.I3D.SetGammaTableParametersI3D(System.IntPtr, OpenTK.Graphics.Wgl.GammaTableAttribute, Integer*) - name.vb: SetGammaTableParametersI3D(IntPtr, GammaTableAttribute, Integer*) -- uid: OpenTK.Graphics.Wgl.Wgl.I3D.AssociateImageBufferEventsI3D(System.IntPtr,System.ReadOnlySpan{System.IntPtr},System.ReadOnlySpan{System.IntPtr},System.ReadOnlySpan{System.UInt32},System.UInt32) - commentId: M:OpenTK.Graphics.Wgl.Wgl.I3D.AssociateImageBufferEventsI3D(System.IntPtr,System.ReadOnlySpan{System.IntPtr},System.ReadOnlySpan{System.IntPtr},System.ReadOnlySpan{System.UInt32},System.UInt32) - id: AssociateImageBufferEventsI3D(System.IntPtr,System.ReadOnlySpan{System.IntPtr},System.ReadOnlySpan{System.IntPtr},System.ReadOnlySpan{System.UInt32},System.UInt32) - parent: OpenTK.Graphics.Wgl.Wgl.I3D - langs: - - csharp - - vb - name: AssociateImageBufferEventsI3D(nint, ReadOnlySpan, ReadOnlySpan, ReadOnlySpan, uint) - nameWithType: Wgl.I3D.AssociateImageBufferEventsI3D(nint, ReadOnlySpan, ReadOnlySpan, ReadOnlySpan, uint) - fullName: OpenTK.Graphics.Wgl.Wgl.I3D.AssociateImageBufferEventsI3D(nint, System.ReadOnlySpan, System.ReadOnlySpan, System.ReadOnlySpan, uint) - type: Method - source: - id: AssociateImageBufferEventsI3D - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 961 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_I3D_image_buffer] - - [entry point: wglAssociateImageBufferEventsI3D] - -
- example: [] - syntax: - content: public static bool AssociateImageBufferEventsI3D(nint hDC, ReadOnlySpan pEvent, ReadOnlySpan pAddress, ReadOnlySpan pSize, uint count) - parameters: - - id: hDC - type: System.IntPtr - - id: pEvent - type: System.ReadOnlySpan{System.IntPtr} - - id: pAddress - type: System.ReadOnlySpan{System.IntPtr} - - id: pSize - type: System.ReadOnlySpan{System.UInt32} - - id: count - type: System.UInt32 - return: - type: System.Boolean - content.vb: Public Shared Function AssociateImageBufferEventsI3D(hDC As IntPtr, pEvent As ReadOnlySpan(Of IntPtr), pAddress As ReadOnlySpan(Of IntPtr), pSize As ReadOnlySpan(Of UInteger), count As UInteger) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.I3D.AssociateImageBufferEventsI3D* - nameWithType.vb: Wgl.I3D.AssociateImageBufferEventsI3D(IntPtr, ReadOnlySpan(Of IntPtr), ReadOnlySpan(Of IntPtr), ReadOnlySpan(Of UInteger), UInteger) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.I3D.AssociateImageBufferEventsI3D(System.IntPtr, System.ReadOnlySpan(Of System.IntPtr), System.ReadOnlySpan(Of System.IntPtr), System.ReadOnlySpan(Of UInteger), UInteger) - name.vb: AssociateImageBufferEventsI3D(IntPtr, ReadOnlySpan(Of IntPtr), ReadOnlySpan(Of IntPtr), ReadOnlySpan(Of UInteger), UInteger) -- uid: OpenTK.Graphics.Wgl.Wgl.I3D.AssociateImageBufferEventsI3D(System.IntPtr,System.IntPtr[],System.IntPtr[],System.UInt32[],System.UInt32) - commentId: M:OpenTK.Graphics.Wgl.Wgl.I3D.AssociateImageBufferEventsI3D(System.IntPtr,System.IntPtr[],System.IntPtr[],System.UInt32[],System.UInt32) - id: AssociateImageBufferEventsI3D(System.IntPtr,System.IntPtr[],System.IntPtr[],System.UInt32[],System.UInt32) - parent: OpenTK.Graphics.Wgl.Wgl.I3D - langs: - - csharp - - vb - name: AssociateImageBufferEventsI3D(nint, nint[], nint[], uint[], uint) - nameWithType: Wgl.I3D.AssociateImageBufferEventsI3D(nint, nint[], nint[], uint[], uint) - fullName: OpenTK.Graphics.Wgl.Wgl.I3D.AssociateImageBufferEventsI3D(nint, nint[], nint[], uint[], uint) - type: Method - source: - id: AssociateImageBufferEventsI3D - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 979 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_I3D_image_buffer] - - [entry point: wglAssociateImageBufferEventsI3D] - -
- example: [] - syntax: - content: public static bool AssociateImageBufferEventsI3D(nint hDC, nint[] pEvent, nint[] pAddress, uint[] pSize, uint count) - parameters: - - id: hDC - type: System.IntPtr - - id: pEvent - type: System.IntPtr[] - - id: pAddress - type: System.IntPtr[] - - id: pSize - type: System.UInt32[] - - id: count - type: System.UInt32 - return: - type: System.Boolean - content.vb: Public Shared Function AssociateImageBufferEventsI3D(hDC As IntPtr, pEvent As IntPtr(), pAddress As IntPtr(), pSize As UInteger(), count As UInteger) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.I3D.AssociateImageBufferEventsI3D* - nameWithType.vb: Wgl.I3D.AssociateImageBufferEventsI3D(IntPtr, IntPtr(), IntPtr(), UInteger(), UInteger) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.I3D.AssociateImageBufferEventsI3D(System.IntPtr, System.IntPtr(), System.IntPtr(), UInteger(), UInteger) - name.vb: AssociateImageBufferEventsI3D(IntPtr, IntPtr(), IntPtr(), UInteger(), UInteger) -- uid: OpenTK.Graphics.Wgl.Wgl.I3D.AssociateImageBufferEventsI3D(System.IntPtr,System.IntPtr@,System.IntPtr@,System.UInt32@,System.UInt32) - commentId: M:OpenTK.Graphics.Wgl.Wgl.I3D.AssociateImageBufferEventsI3D(System.IntPtr,System.IntPtr@,System.IntPtr@,System.UInt32@,System.UInt32) - id: AssociateImageBufferEventsI3D(System.IntPtr,System.IntPtr@,System.IntPtr@,System.UInt32@,System.UInt32) - parent: OpenTK.Graphics.Wgl.Wgl.I3D - langs: - - csharp - - vb - name: AssociateImageBufferEventsI3D(nint, in nint, in nint, in uint, uint) - nameWithType: Wgl.I3D.AssociateImageBufferEventsI3D(nint, in nint, in nint, in uint, uint) - fullName: OpenTK.Graphics.Wgl.Wgl.I3D.AssociateImageBufferEventsI3D(nint, in nint, in nint, in uint, uint) - type: Method - source: - id: AssociateImageBufferEventsI3D - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 997 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_I3D_image_buffer] - - [entry point: wglAssociateImageBufferEventsI3D] - -
- example: [] - syntax: - content: public static bool AssociateImageBufferEventsI3D(nint hDC, in nint pEvent, in nint pAddress, in uint pSize, uint count) - parameters: - - id: hDC - type: System.IntPtr - - id: pEvent - type: System.IntPtr - - id: pAddress - type: System.IntPtr - - id: pSize - type: System.UInt32 - - id: count - type: System.UInt32 - return: - type: System.Boolean - content.vb: Public Shared Function AssociateImageBufferEventsI3D(hDC As IntPtr, pEvent As IntPtr, pAddress As IntPtr, pSize As UInteger, count As UInteger) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.I3D.AssociateImageBufferEventsI3D* - nameWithType.vb: Wgl.I3D.AssociateImageBufferEventsI3D(IntPtr, IntPtr, IntPtr, UInteger, UInteger) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.I3D.AssociateImageBufferEventsI3D(System.IntPtr, System.IntPtr, System.IntPtr, UInteger, UInteger) - name.vb: AssociateImageBufferEventsI3D(IntPtr, IntPtr, IntPtr, UInteger, UInteger) -- uid: OpenTK.Graphics.Wgl.Wgl.I3D.BeginFrameTrackingI3D - commentId: M:OpenTK.Graphics.Wgl.Wgl.I3D.BeginFrameTrackingI3D - id: BeginFrameTrackingI3D - parent: OpenTK.Graphics.Wgl.Wgl.I3D - langs: - - csharp - - vb - name: BeginFrameTrackingI3D() - nameWithType: Wgl.I3D.BeginFrameTrackingI3D() - fullName: OpenTK.Graphics.Wgl.Wgl.I3D.BeginFrameTrackingI3D() - type: Method - source: - id: BeginFrameTrackingI3D - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 1011 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - example: [] - syntax: - content: public static bool BeginFrameTrackingI3D() - return: - type: System.Boolean - content.vb: Public Shared Function BeginFrameTrackingI3D() As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.I3D.BeginFrameTrackingI3D* -- uid: OpenTK.Graphics.Wgl.Wgl.I3D.DestroyImageBufferI3D(System.IntPtr,System.IntPtr) - commentId: M:OpenTK.Graphics.Wgl.Wgl.I3D.DestroyImageBufferI3D(System.IntPtr,System.IntPtr) - id: DestroyImageBufferI3D(System.IntPtr,System.IntPtr) - parent: OpenTK.Graphics.Wgl.Wgl.I3D - langs: - - csharp - - vb - name: DestroyImageBufferI3D(nint, nint) - nameWithType: Wgl.I3D.DestroyImageBufferI3D(nint, nint) - fullName: OpenTK.Graphics.Wgl.Wgl.I3D.DestroyImageBufferI3D(nint, nint) - type: Method - source: - id: DestroyImageBufferI3D - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 1020 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - example: [] - syntax: - content: public static bool DestroyImageBufferI3D(nint hDC, nint pAddress) - parameters: - - id: hDC - type: System.IntPtr - - id: pAddress - type: System.IntPtr - return: - type: System.Boolean - content.vb: Public Shared Function DestroyImageBufferI3D(hDC As IntPtr, pAddress As IntPtr) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.I3D.DestroyImageBufferI3D* - nameWithType.vb: Wgl.I3D.DestroyImageBufferI3D(IntPtr, IntPtr) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.I3D.DestroyImageBufferI3D(System.IntPtr, System.IntPtr) - name.vb: DestroyImageBufferI3D(IntPtr, IntPtr) -- uid: OpenTK.Graphics.Wgl.Wgl.I3D.DisableFrameLockI3D - commentId: M:OpenTK.Graphics.Wgl.Wgl.I3D.DisableFrameLockI3D - id: DisableFrameLockI3D - parent: OpenTK.Graphics.Wgl.Wgl.I3D - langs: - - csharp - - vb - name: DisableFrameLockI3D() - nameWithType: Wgl.I3D.DisableFrameLockI3D() - fullName: OpenTK.Graphics.Wgl.Wgl.I3D.DisableFrameLockI3D() - type: Method - source: - id: DisableFrameLockI3D - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 1029 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - example: [] - syntax: - content: public static bool DisableFrameLockI3D() - return: - type: System.Boolean - content.vb: Public Shared Function DisableFrameLockI3D() As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.I3D.DisableFrameLockI3D* -- uid: OpenTK.Graphics.Wgl.Wgl.I3D.DisableGenlockI3D(System.IntPtr) - commentId: M:OpenTK.Graphics.Wgl.Wgl.I3D.DisableGenlockI3D(System.IntPtr) - id: DisableGenlockI3D(System.IntPtr) - parent: OpenTK.Graphics.Wgl.Wgl.I3D - langs: - - csharp - - vb - name: DisableGenlockI3D(nint) - nameWithType: Wgl.I3D.DisableGenlockI3D(nint) - fullName: OpenTK.Graphics.Wgl.Wgl.I3D.DisableGenlockI3D(nint) - type: Method - source: - id: DisableGenlockI3D - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 1038 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - example: [] - syntax: - content: public static bool DisableGenlockI3D(nint hDC) - parameters: - - id: hDC - type: System.IntPtr - return: - type: System.Boolean - content.vb: Public Shared Function DisableGenlockI3D(hDC As IntPtr) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.I3D.DisableGenlockI3D* - nameWithType.vb: Wgl.I3D.DisableGenlockI3D(IntPtr) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.I3D.DisableGenlockI3D(System.IntPtr) - name.vb: DisableGenlockI3D(IntPtr) -- uid: OpenTK.Graphics.Wgl.Wgl.I3D.EnableFrameLockI3D - commentId: M:OpenTK.Graphics.Wgl.Wgl.I3D.EnableFrameLockI3D - id: EnableFrameLockI3D - parent: OpenTK.Graphics.Wgl.Wgl.I3D - langs: - - csharp - - vb - name: EnableFrameLockI3D() - nameWithType: Wgl.I3D.EnableFrameLockI3D() - fullName: OpenTK.Graphics.Wgl.Wgl.I3D.EnableFrameLockI3D() - type: Method - source: - id: EnableFrameLockI3D - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 1047 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - example: [] - syntax: - content: public static bool EnableFrameLockI3D() - return: - type: System.Boolean - content.vb: Public Shared Function EnableFrameLockI3D() As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.I3D.EnableFrameLockI3D* -- uid: OpenTK.Graphics.Wgl.Wgl.I3D.EnableGenlockI3D(System.IntPtr) - commentId: M:OpenTK.Graphics.Wgl.Wgl.I3D.EnableGenlockI3D(System.IntPtr) - id: EnableGenlockI3D(System.IntPtr) - parent: OpenTK.Graphics.Wgl.Wgl.I3D - langs: - - csharp - - vb - name: EnableGenlockI3D(nint) - nameWithType: Wgl.I3D.EnableGenlockI3D(nint) - fullName: OpenTK.Graphics.Wgl.Wgl.I3D.EnableGenlockI3D(nint) - type: Method - source: - id: EnableGenlockI3D - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 1056 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - example: [] - syntax: - content: public static bool EnableGenlockI3D(nint hDC) - parameters: - - id: hDC - type: System.IntPtr - return: - type: System.Boolean - content.vb: Public Shared Function EnableGenlockI3D(hDC As IntPtr) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.I3D.EnableGenlockI3D* - nameWithType.vb: Wgl.I3D.EnableGenlockI3D(IntPtr) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.I3D.EnableGenlockI3D(System.IntPtr) - name.vb: EnableGenlockI3D(IntPtr) -- uid: OpenTK.Graphics.Wgl.Wgl.I3D.EndFrameTrackingI3D - commentId: M:OpenTK.Graphics.Wgl.Wgl.I3D.EndFrameTrackingI3D - id: EndFrameTrackingI3D - parent: OpenTK.Graphics.Wgl.Wgl.I3D - langs: - - csharp - - vb - name: EndFrameTrackingI3D() - nameWithType: Wgl.I3D.EndFrameTrackingI3D() - fullName: OpenTK.Graphics.Wgl.Wgl.I3D.EndFrameTrackingI3D() - type: Method - source: - id: EndFrameTrackingI3D - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 1065 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - example: [] - syntax: - content: public static bool EndFrameTrackingI3D() - return: - type: System.Boolean - content.vb: Public Shared Function EndFrameTrackingI3D() As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.I3D.EndFrameTrackingI3D* -- uid: OpenTK.Graphics.Wgl.Wgl.I3D.GenlockSampleRateI3D(System.IntPtr,System.UInt32) - commentId: M:OpenTK.Graphics.Wgl.Wgl.I3D.GenlockSampleRateI3D(System.IntPtr,System.UInt32) - id: GenlockSampleRateI3D(System.IntPtr,System.UInt32) - parent: OpenTK.Graphics.Wgl.Wgl.I3D - langs: - - csharp - - vb - name: GenlockSampleRateI3D(nint, uint) - nameWithType: Wgl.I3D.GenlockSampleRateI3D(nint, uint) - fullName: OpenTK.Graphics.Wgl.Wgl.I3D.GenlockSampleRateI3D(nint, uint) - type: Method - source: - id: GenlockSampleRateI3D - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 1074 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - example: [] - syntax: - content: public static bool GenlockSampleRateI3D(nint hDC, uint uRate) - parameters: - - id: hDC - type: System.IntPtr - - id: uRate - type: System.UInt32 - return: - type: System.Boolean - content.vb: Public Shared Function GenlockSampleRateI3D(hDC As IntPtr, uRate As UInteger) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.I3D.GenlockSampleRateI3D* - nameWithType.vb: Wgl.I3D.GenlockSampleRateI3D(IntPtr, UInteger) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.I3D.GenlockSampleRateI3D(System.IntPtr, UInteger) - name.vb: GenlockSampleRateI3D(IntPtr, UInteger) -- uid: OpenTK.Graphics.Wgl.Wgl.I3D.GenlockSourceDelayI3D(System.IntPtr,System.UInt32) - commentId: M:OpenTK.Graphics.Wgl.Wgl.I3D.GenlockSourceDelayI3D(System.IntPtr,System.UInt32) - id: GenlockSourceDelayI3D(System.IntPtr,System.UInt32) - parent: OpenTK.Graphics.Wgl.Wgl.I3D - langs: - - csharp - - vb - name: GenlockSourceDelayI3D(nint, uint) - nameWithType: Wgl.I3D.GenlockSourceDelayI3D(nint, uint) - fullName: OpenTK.Graphics.Wgl.Wgl.I3D.GenlockSourceDelayI3D(nint, uint) - type: Method - source: - id: GenlockSourceDelayI3D - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 1083 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - example: [] - syntax: - content: public static bool GenlockSourceDelayI3D(nint hDC, uint uDelay) - parameters: - - id: hDC - type: System.IntPtr - - id: uDelay - type: System.UInt32 - return: - type: System.Boolean - content.vb: Public Shared Function GenlockSourceDelayI3D(hDC As IntPtr, uDelay As UInteger) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.I3D.GenlockSourceDelayI3D* - nameWithType.vb: Wgl.I3D.GenlockSourceDelayI3D(IntPtr, UInteger) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.I3D.GenlockSourceDelayI3D(System.IntPtr, UInteger) - name.vb: GenlockSourceDelayI3D(IntPtr, UInteger) -- uid: OpenTK.Graphics.Wgl.Wgl.I3D.GenlockSourceEdgeI3D(System.IntPtr,System.UInt32) - commentId: M:OpenTK.Graphics.Wgl.Wgl.I3D.GenlockSourceEdgeI3D(System.IntPtr,System.UInt32) - id: GenlockSourceEdgeI3D(System.IntPtr,System.UInt32) - parent: OpenTK.Graphics.Wgl.Wgl.I3D - langs: - - csharp - - vb - name: GenlockSourceEdgeI3D(nint, uint) - nameWithType: Wgl.I3D.GenlockSourceEdgeI3D(nint, uint) - fullName: OpenTK.Graphics.Wgl.Wgl.I3D.GenlockSourceEdgeI3D(nint, uint) - type: Method - source: - id: GenlockSourceEdgeI3D - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 1092 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - example: [] - syntax: - content: public static bool GenlockSourceEdgeI3D(nint hDC, uint uEdge) - parameters: - - id: hDC - type: System.IntPtr - - id: uEdge - type: System.UInt32 - return: - type: System.Boolean - content.vb: Public Shared Function GenlockSourceEdgeI3D(hDC As IntPtr, uEdge As UInteger) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.I3D.GenlockSourceEdgeI3D* - nameWithType.vb: Wgl.I3D.GenlockSourceEdgeI3D(IntPtr, UInteger) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.I3D.GenlockSourceEdgeI3D(System.IntPtr, UInteger) - name.vb: GenlockSourceEdgeI3D(IntPtr, UInteger) -- uid: OpenTK.Graphics.Wgl.Wgl.I3D.GenlockSourceI3D(System.IntPtr,System.UInt32) - commentId: M:OpenTK.Graphics.Wgl.Wgl.I3D.GenlockSourceI3D(System.IntPtr,System.UInt32) - id: GenlockSourceI3D(System.IntPtr,System.UInt32) - parent: OpenTK.Graphics.Wgl.Wgl.I3D - langs: - - csharp - - vb - name: GenlockSourceI3D(nint, uint) - nameWithType: Wgl.I3D.GenlockSourceI3D(nint, uint) - fullName: OpenTK.Graphics.Wgl.Wgl.I3D.GenlockSourceI3D(nint, uint) - type: Method - source: - id: GenlockSourceI3D - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 1101 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - example: [] - syntax: - content: public static bool GenlockSourceI3D(nint hDC, uint uSource) - parameters: - - id: hDC - type: System.IntPtr - - id: uSource - type: System.UInt32 - return: - type: System.Boolean - content.vb: Public Shared Function GenlockSourceI3D(hDC As IntPtr, uSource As UInteger) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.I3D.GenlockSourceI3D* - nameWithType.vb: Wgl.I3D.GenlockSourceI3D(IntPtr, UInteger) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.I3D.GenlockSourceI3D(System.IntPtr, UInteger) - name.vb: GenlockSourceI3D(IntPtr, UInteger) -- uid: OpenTK.Graphics.Wgl.Wgl.I3D.GetDigitalVideoParametersI3D(System.IntPtr,OpenTK.Graphics.Wgl.DigitalVideoAttribute,System.Int32@) - commentId: M:OpenTK.Graphics.Wgl.Wgl.I3D.GetDigitalVideoParametersI3D(System.IntPtr,OpenTK.Graphics.Wgl.DigitalVideoAttribute,System.Int32@) - id: GetDigitalVideoParametersI3D(System.IntPtr,OpenTK.Graphics.Wgl.DigitalVideoAttribute,System.Int32@) - parent: OpenTK.Graphics.Wgl.Wgl.I3D - langs: - - csharp - - vb - name: GetDigitalVideoParametersI3D(nint, DigitalVideoAttribute, out int) - nameWithType: Wgl.I3D.GetDigitalVideoParametersI3D(nint, DigitalVideoAttribute, out int) - fullName: OpenTK.Graphics.Wgl.Wgl.I3D.GetDigitalVideoParametersI3D(nint, OpenTK.Graphics.Wgl.DigitalVideoAttribute, out int) - type: Method - source: - id: GetDigitalVideoParametersI3D - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 1110 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_I3D_digital_video_control] - - [entry point: wglGetDigitalVideoParametersI3D] - -
- example: [] - syntax: - content: public static bool GetDigitalVideoParametersI3D(nint hDC, DigitalVideoAttribute iAttribute, out int piValue) - parameters: - - id: hDC - type: System.IntPtr - - id: iAttribute - type: OpenTK.Graphics.Wgl.DigitalVideoAttribute - - id: piValue - type: System.Int32 - return: - type: System.Boolean - content.vb: Public Shared Function GetDigitalVideoParametersI3D(hDC As IntPtr, iAttribute As DigitalVideoAttribute, piValue As Integer) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.I3D.GetDigitalVideoParametersI3D* - nameWithType.vb: Wgl.I3D.GetDigitalVideoParametersI3D(IntPtr, DigitalVideoAttribute, Integer) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.I3D.GetDigitalVideoParametersI3D(System.IntPtr, OpenTK.Graphics.Wgl.DigitalVideoAttribute, Integer) - name.vb: GetDigitalVideoParametersI3D(IntPtr, DigitalVideoAttribute, Integer) -- uid: OpenTK.Graphics.Wgl.Wgl.I3D.GetFrameUsageI3D(System.Single@) - commentId: M:OpenTK.Graphics.Wgl.Wgl.I3D.GetFrameUsageI3D(System.Single@) - id: GetFrameUsageI3D(System.Single@) - parent: OpenTK.Graphics.Wgl.Wgl.I3D - langs: - - csharp - - vb - name: GetFrameUsageI3D(out float) - nameWithType: Wgl.I3D.GetFrameUsageI3D(out float) - fullName: OpenTK.Graphics.Wgl.Wgl.I3D.GetFrameUsageI3D(out float) - type: Method - source: - id: GetFrameUsageI3D - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 1122 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_I3D_swap_frame_usage] - - [entry point: wglGetFrameUsageI3D] - -
- example: [] - syntax: - content: public static bool GetFrameUsageI3D(out float pUsage) - parameters: - - id: pUsage - type: System.Single - return: - type: System.Boolean - content.vb: Public Shared Function GetFrameUsageI3D(pUsage As Single) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.I3D.GetFrameUsageI3D* - nameWithType.vb: Wgl.I3D.GetFrameUsageI3D(Single) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.I3D.GetFrameUsageI3D(Single) - name.vb: GetFrameUsageI3D(Single) -- uid: OpenTK.Graphics.Wgl.Wgl.I3D.GetGammaTableI3D(System.IntPtr,System.Int32,System.Span{System.UInt16},System.Span{System.UInt16},System.Span{System.UInt16}) - commentId: M:OpenTK.Graphics.Wgl.Wgl.I3D.GetGammaTableI3D(System.IntPtr,System.Int32,System.Span{System.UInt16},System.Span{System.UInt16},System.Span{System.UInt16}) - id: GetGammaTableI3D(System.IntPtr,System.Int32,System.Span{System.UInt16},System.Span{System.UInt16},System.Span{System.UInt16}) - parent: OpenTK.Graphics.Wgl.Wgl.I3D - langs: - - csharp - - vb - name: GetGammaTableI3D(nint, int, Span, Span, Span) - nameWithType: Wgl.I3D.GetGammaTableI3D(nint, int, Span, Span, Span) - fullName: OpenTK.Graphics.Wgl.Wgl.I3D.GetGammaTableI3D(nint, int, System.Span, System.Span, System.Span) - type: Method - source: - id: GetGammaTableI3D - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 1134 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_I3D_gamma] - - [entry point: wglGetGammaTableI3D] - -
- example: [] - syntax: - content: public static bool GetGammaTableI3D(nint hDC, int iEntries, Span puRed, Span puGreen, Span puBlue) - parameters: - - id: hDC - type: System.IntPtr - - id: iEntries - type: System.Int32 - - id: puRed - type: System.Span{System.UInt16} - - id: puGreen - type: System.Span{System.UInt16} - - id: puBlue - type: System.Span{System.UInt16} - return: - type: System.Boolean - content.vb: Public Shared Function GetGammaTableI3D(hDC As IntPtr, iEntries As Integer, puRed As Span(Of UShort), puGreen As Span(Of UShort), puBlue As Span(Of UShort)) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.I3D.GetGammaTableI3D* - nameWithType.vb: Wgl.I3D.GetGammaTableI3D(IntPtr, Integer, Span(Of UShort), Span(Of UShort), Span(Of UShort)) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.I3D.GetGammaTableI3D(System.IntPtr, Integer, System.Span(Of UShort), System.Span(Of UShort), System.Span(Of UShort)) - name.vb: GetGammaTableI3D(IntPtr, Integer, Span(Of UShort), Span(Of UShort), Span(Of UShort)) -- uid: OpenTK.Graphics.Wgl.Wgl.I3D.GetGammaTableI3D(System.IntPtr,System.Int32,System.UInt16[],System.UInt16[],System.UInt16[]) - commentId: M:OpenTK.Graphics.Wgl.Wgl.I3D.GetGammaTableI3D(System.IntPtr,System.Int32,System.UInt16[],System.UInt16[],System.UInt16[]) - id: GetGammaTableI3D(System.IntPtr,System.Int32,System.UInt16[],System.UInt16[],System.UInt16[]) - parent: OpenTK.Graphics.Wgl.Wgl.I3D - langs: - - csharp - - vb - name: GetGammaTableI3D(nint, int, ushort[], ushort[], ushort[]) - nameWithType: Wgl.I3D.GetGammaTableI3D(nint, int, ushort[], ushort[], ushort[]) - fullName: OpenTK.Graphics.Wgl.Wgl.I3D.GetGammaTableI3D(nint, int, ushort[], ushort[], ushort[]) - type: Method - source: - id: GetGammaTableI3D - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 1152 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_I3D_gamma] - - [entry point: wglGetGammaTableI3D] - -
- example: [] - syntax: - content: public static bool GetGammaTableI3D(nint hDC, int iEntries, ushort[] puRed, ushort[] puGreen, ushort[] puBlue) - parameters: - - id: hDC - type: System.IntPtr - - id: iEntries - type: System.Int32 - - id: puRed - type: System.UInt16[] - - id: puGreen - type: System.UInt16[] - - id: puBlue - type: System.UInt16[] - return: - type: System.Boolean - content.vb: Public Shared Function GetGammaTableI3D(hDC As IntPtr, iEntries As Integer, puRed As UShort(), puGreen As UShort(), puBlue As UShort()) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.I3D.GetGammaTableI3D* - nameWithType.vb: Wgl.I3D.GetGammaTableI3D(IntPtr, Integer, UShort(), UShort(), UShort()) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.I3D.GetGammaTableI3D(System.IntPtr, Integer, UShort(), UShort(), UShort()) - name.vb: GetGammaTableI3D(IntPtr, Integer, UShort(), UShort(), UShort()) -- uid: OpenTK.Graphics.Wgl.Wgl.I3D.GetGammaTableI3D(System.IntPtr,System.Int32,System.UInt16@,System.UInt16@,System.UInt16@) - commentId: M:OpenTK.Graphics.Wgl.Wgl.I3D.GetGammaTableI3D(System.IntPtr,System.Int32,System.UInt16@,System.UInt16@,System.UInt16@) - id: GetGammaTableI3D(System.IntPtr,System.Int32,System.UInt16@,System.UInt16@,System.UInt16@) - parent: OpenTK.Graphics.Wgl.Wgl.I3D - langs: - - csharp - - vb - name: GetGammaTableI3D(nint, int, ref ushort, ref ushort, ref ushort) - nameWithType: Wgl.I3D.GetGammaTableI3D(nint, int, ref ushort, ref ushort, ref ushort) - fullName: OpenTK.Graphics.Wgl.Wgl.I3D.GetGammaTableI3D(nint, int, ref ushort, ref ushort, ref ushort) - type: Method - source: - id: GetGammaTableI3D - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 1170 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_I3D_gamma] - - [entry point: wglGetGammaTableI3D] - -
- example: [] - syntax: - content: public static bool GetGammaTableI3D(nint hDC, int iEntries, ref ushort puRed, ref ushort puGreen, ref ushort puBlue) - parameters: - - id: hDC - type: System.IntPtr - - id: iEntries - type: System.Int32 - - id: puRed - type: System.UInt16 - - id: puGreen - type: System.UInt16 - - id: puBlue - type: System.UInt16 - return: - type: System.Boolean - content.vb: Public Shared Function GetGammaTableI3D(hDC As IntPtr, iEntries As Integer, puRed As UShort, puGreen As UShort, puBlue As UShort) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.I3D.GetGammaTableI3D* - nameWithType.vb: Wgl.I3D.GetGammaTableI3D(IntPtr, Integer, UShort, UShort, UShort) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.I3D.GetGammaTableI3D(System.IntPtr, Integer, UShort, UShort, UShort) - name.vb: GetGammaTableI3D(IntPtr, Integer, UShort, UShort, UShort) -- uid: OpenTK.Graphics.Wgl.Wgl.I3D.GetGammaTableParametersI3D(System.IntPtr,OpenTK.Graphics.Wgl.GammaTableAttribute,System.Int32@) - commentId: M:OpenTK.Graphics.Wgl.Wgl.I3D.GetGammaTableParametersI3D(System.IntPtr,OpenTK.Graphics.Wgl.GammaTableAttribute,System.Int32@) - id: GetGammaTableParametersI3D(System.IntPtr,OpenTK.Graphics.Wgl.GammaTableAttribute,System.Int32@) - parent: OpenTK.Graphics.Wgl.Wgl.I3D - langs: - - csharp - - vb - name: GetGammaTableParametersI3D(nint, GammaTableAttribute, out int) - nameWithType: Wgl.I3D.GetGammaTableParametersI3D(nint, GammaTableAttribute, out int) - fullName: OpenTK.Graphics.Wgl.Wgl.I3D.GetGammaTableParametersI3D(nint, OpenTK.Graphics.Wgl.GammaTableAttribute, out int) - type: Method - source: - id: GetGammaTableParametersI3D - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 1184 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_I3D_gamma] - - [entry point: wglGetGammaTableParametersI3D] - -
- example: [] - syntax: - content: public static bool GetGammaTableParametersI3D(nint hDC, GammaTableAttribute iAttribute, out int piValue) - parameters: - - id: hDC - type: System.IntPtr - - id: iAttribute - type: OpenTK.Graphics.Wgl.GammaTableAttribute - - id: piValue - type: System.Int32 - return: - type: System.Boolean - content.vb: Public Shared Function GetGammaTableParametersI3D(hDC As IntPtr, iAttribute As GammaTableAttribute, piValue As Integer) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.I3D.GetGammaTableParametersI3D* - nameWithType.vb: Wgl.I3D.GetGammaTableParametersI3D(IntPtr, GammaTableAttribute, Integer) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.I3D.GetGammaTableParametersI3D(System.IntPtr, OpenTK.Graphics.Wgl.GammaTableAttribute, Integer) - name.vb: GetGammaTableParametersI3D(IntPtr, GammaTableAttribute, Integer) -- uid: OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSampleRateI3D(System.IntPtr,System.UInt32@) - commentId: M:OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSampleRateI3D(System.IntPtr,System.UInt32@) - id: GetGenlockSampleRateI3D(System.IntPtr,System.UInt32@) - parent: OpenTK.Graphics.Wgl.Wgl.I3D - langs: - - csharp - - vb - name: GetGenlockSampleRateI3D(nint, out uint) - nameWithType: Wgl.I3D.GetGenlockSampleRateI3D(nint, out uint) - fullName: OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSampleRateI3D(nint, out uint) - type: Method - source: - id: GetGenlockSampleRateI3D - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 1196 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_I3D_genlock] - - [entry point: wglGetGenlockSampleRateI3D] - -
- example: [] - syntax: - content: public static bool GetGenlockSampleRateI3D(nint hDC, out uint uRate) - parameters: - - id: hDC - type: System.IntPtr - - id: uRate - type: System.UInt32 - return: - type: System.Boolean - content.vb: Public Shared Function GetGenlockSampleRateI3D(hDC As IntPtr, uRate As UInteger) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSampleRateI3D* - nameWithType.vb: Wgl.I3D.GetGenlockSampleRateI3D(IntPtr, UInteger) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSampleRateI3D(System.IntPtr, UInteger) - name.vb: GetGenlockSampleRateI3D(IntPtr, UInteger) -- uid: OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSourceDelayI3D(System.IntPtr,System.UInt32@) - commentId: M:OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSourceDelayI3D(System.IntPtr,System.UInt32@) - id: GetGenlockSourceDelayI3D(System.IntPtr,System.UInt32@) - parent: OpenTK.Graphics.Wgl.Wgl.I3D - langs: - - csharp - - vb - name: GetGenlockSourceDelayI3D(nint, out uint) - nameWithType: Wgl.I3D.GetGenlockSourceDelayI3D(nint, out uint) - fullName: OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSourceDelayI3D(nint, out uint) - type: Method - source: - id: GetGenlockSourceDelayI3D - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 1208 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_I3D_genlock] - - [entry point: wglGetGenlockSourceDelayI3D] - -
- example: [] - syntax: - content: public static bool GetGenlockSourceDelayI3D(nint hDC, out uint uDelay) - parameters: - - id: hDC - type: System.IntPtr - - id: uDelay - type: System.UInt32 - return: - type: System.Boolean - content.vb: Public Shared Function GetGenlockSourceDelayI3D(hDC As IntPtr, uDelay As UInteger) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSourceDelayI3D* - nameWithType.vb: Wgl.I3D.GetGenlockSourceDelayI3D(IntPtr, UInteger) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSourceDelayI3D(System.IntPtr, UInteger) - name.vb: GetGenlockSourceDelayI3D(IntPtr, UInteger) -- uid: OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSourceEdgeI3D(System.IntPtr,System.UInt32@) - commentId: M:OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSourceEdgeI3D(System.IntPtr,System.UInt32@) - id: GetGenlockSourceEdgeI3D(System.IntPtr,System.UInt32@) - parent: OpenTK.Graphics.Wgl.Wgl.I3D - langs: - - csharp - - vb - name: GetGenlockSourceEdgeI3D(nint, out uint) - nameWithType: Wgl.I3D.GetGenlockSourceEdgeI3D(nint, out uint) - fullName: OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSourceEdgeI3D(nint, out uint) - type: Method - source: - id: GetGenlockSourceEdgeI3D - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 1220 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_I3D_genlock] - - [entry point: wglGetGenlockSourceEdgeI3D] - -
- example: [] - syntax: - content: public static bool GetGenlockSourceEdgeI3D(nint hDC, out uint uEdge) - parameters: - - id: hDC - type: System.IntPtr - - id: uEdge - type: System.UInt32 - return: - type: System.Boolean - content.vb: Public Shared Function GetGenlockSourceEdgeI3D(hDC As IntPtr, uEdge As UInteger) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSourceEdgeI3D* - nameWithType.vb: Wgl.I3D.GetGenlockSourceEdgeI3D(IntPtr, UInteger) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSourceEdgeI3D(System.IntPtr, UInteger) - name.vb: GetGenlockSourceEdgeI3D(IntPtr, UInteger) -- uid: OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSourceI3D(System.IntPtr,System.UInt32@) - commentId: M:OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSourceI3D(System.IntPtr,System.UInt32@) - id: GetGenlockSourceI3D(System.IntPtr,System.UInt32@) - parent: OpenTK.Graphics.Wgl.Wgl.I3D - langs: - - csharp - - vb - name: GetGenlockSourceI3D(nint, out uint) - nameWithType: Wgl.I3D.GetGenlockSourceI3D(nint, out uint) - fullName: OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSourceI3D(nint, out uint) - type: Method - source: - id: GetGenlockSourceI3D - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 1232 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_I3D_genlock] - - [entry point: wglGetGenlockSourceI3D] - -
- example: [] - syntax: - content: public static bool GetGenlockSourceI3D(nint hDC, out uint uSource) - parameters: - - id: hDC - type: System.IntPtr - - id: uSource - type: System.UInt32 - return: - type: System.Boolean - content.vb: Public Shared Function GetGenlockSourceI3D(hDC As IntPtr, uSource As UInteger) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSourceI3D* - nameWithType.vb: Wgl.I3D.GetGenlockSourceI3D(IntPtr, UInteger) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSourceI3D(System.IntPtr, UInteger) - name.vb: GetGenlockSourceI3D(IntPtr, UInteger) -- uid: OpenTK.Graphics.Wgl.Wgl.I3D.IsEnabledFrameLockI3D(System.Int32@) - commentId: M:OpenTK.Graphics.Wgl.Wgl.I3D.IsEnabledFrameLockI3D(System.Int32@) - id: IsEnabledFrameLockI3D(System.Int32@) - parent: OpenTK.Graphics.Wgl.Wgl.I3D - langs: - - csharp - - vb - name: IsEnabledFrameLockI3D(out int) - nameWithType: Wgl.I3D.IsEnabledFrameLockI3D(out int) - fullName: OpenTK.Graphics.Wgl.Wgl.I3D.IsEnabledFrameLockI3D(out int) - type: Method - source: - id: IsEnabledFrameLockI3D - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 1244 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_I3D_swap_frame_lock] - - [entry point: wglIsEnabledFrameLockI3D] - -
- example: [] - syntax: - content: public static bool IsEnabledFrameLockI3D(out int pFlag) - parameters: - - id: pFlag - type: System.Int32 - return: - type: System.Boolean - content.vb: Public Shared Function IsEnabledFrameLockI3D(pFlag As Integer) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.I3D.IsEnabledFrameLockI3D* - nameWithType.vb: Wgl.I3D.IsEnabledFrameLockI3D(Integer) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.I3D.IsEnabledFrameLockI3D(Integer) - name.vb: IsEnabledFrameLockI3D(Integer) -- uid: OpenTK.Graphics.Wgl.Wgl.I3D.IsEnabledGenlockI3D(System.IntPtr,System.Int32@) - commentId: M:OpenTK.Graphics.Wgl.Wgl.I3D.IsEnabledGenlockI3D(System.IntPtr,System.Int32@) - id: IsEnabledGenlockI3D(System.IntPtr,System.Int32@) - parent: OpenTK.Graphics.Wgl.Wgl.I3D - langs: - - csharp - - vb - name: IsEnabledGenlockI3D(nint, out int) - nameWithType: Wgl.I3D.IsEnabledGenlockI3D(nint, out int) - fullName: OpenTK.Graphics.Wgl.Wgl.I3D.IsEnabledGenlockI3D(nint, out int) - type: Method - source: - id: IsEnabledGenlockI3D - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 1256 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_I3D_genlock] - - [entry point: wglIsEnabledGenlockI3D] - -
- example: [] - syntax: - content: public static bool IsEnabledGenlockI3D(nint hDC, out int pFlag) - parameters: - - id: hDC - type: System.IntPtr - - id: pFlag - type: System.Int32 - return: - type: System.Boolean - content.vb: Public Shared Function IsEnabledGenlockI3D(hDC As IntPtr, pFlag As Integer) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.I3D.IsEnabledGenlockI3D* - nameWithType.vb: Wgl.I3D.IsEnabledGenlockI3D(IntPtr, Integer) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.I3D.IsEnabledGenlockI3D(System.IntPtr, Integer) - name.vb: IsEnabledGenlockI3D(IntPtr, Integer) -- uid: OpenTK.Graphics.Wgl.Wgl.I3D.QueryFrameLockMasterI3D(System.Int32@) - commentId: M:OpenTK.Graphics.Wgl.Wgl.I3D.QueryFrameLockMasterI3D(System.Int32@) - id: QueryFrameLockMasterI3D(System.Int32@) - parent: OpenTK.Graphics.Wgl.Wgl.I3D - langs: - - csharp - - vb - name: QueryFrameLockMasterI3D(out int) - nameWithType: Wgl.I3D.QueryFrameLockMasterI3D(out int) - fullName: OpenTK.Graphics.Wgl.Wgl.I3D.QueryFrameLockMasterI3D(out int) - type: Method - source: - id: QueryFrameLockMasterI3D - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 1268 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_I3D_swap_frame_lock] - - [entry point: wglQueryFrameLockMasterI3D] - -
- example: [] - syntax: - content: public static bool QueryFrameLockMasterI3D(out int pFlag) - parameters: - - id: pFlag - type: System.Int32 - return: - type: System.Boolean - content.vb: Public Shared Function QueryFrameLockMasterI3D(pFlag As Integer) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.I3D.QueryFrameLockMasterI3D* - nameWithType.vb: Wgl.I3D.QueryFrameLockMasterI3D(Integer) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.I3D.QueryFrameLockMasterI3D(Integer) - name.vb: QueryFrameLockMasterI3D(Integer) -- uid: OpenTK.Graphics.Wgl.Wgl.I3D.QueryFrameTrackingI3D(System.UInt32@,System.UInt32@,System.Single@) - commentId: M:OpenTK.Graphics.Wgl.Wgl.I3D.QueryFrameTrackingI3D(System.UInt32@,System.UInt32@,System.Single@) - id: QueryFrameTrackingI3D(System.UInt32@,System.UInt32@,System.Single@) - parent: OpenTK.Graphics.Wgl.Wgl.I3D - langs: - - csharp - - vb - name: QueryFrameTrackingI3D(out uint, out uint, out float) - nameWithType: Wgl.I3D.QueryFrameTrackingI3D(out uint, out uint, out float) - fullName: OpenTK.Graphics.Wgl.Wgl.I3D.QueryFrameTrackingI3D(out uint, out uint, out float) - type: Method - source: - id: QueryFrameTrackingI3D - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 1280 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_I3D_swap_frame_usage] - - [entry point: wglQueryFrameTrackingI3D] - -
- example: [] - syntax: - content: public static bool QueryFrameTrackingI3D(out uint pFrameCount, out uint pMissedFrames, out float pLastMissedUsage) - parameters: - - id: pFrameCount - type: System.UInt32 - - id: pMissedFrames - type: System.UInt32 - - id: pLastMissedUsage - type: System.Single - return: - type: System.Boolean - content.vb: Public Shared Function QueryFrameTrackingI3D(pFrameCount As UInteger, pMissedFrames As UInteger, pLastMissedUsage As Single) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.I3D.QueryFrameTrackingI3D* - nameWithType.vb: Wgl.I3D.QueryFrameTrackingI3D(UInteger, UInteger, Single) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.I3D.QueryFrameTrackingI3D(UInteger, UInteger, Single) - name.vb: QueryFrameTrackingI3D(UInteger, UInteger, Single) -- uid: OpenTK.Graphics.Wgl.Wgl.I3D.QueryGenlockMaxSourceDelayI3D(System.IntPtr,System.UInt32@,System.UInt32@) - commentId: M:OpenTK.Graphics.Wgl.Wgl.I3D.QueryGenlockMaxSourceDelayI3D(System.IntPtr,System.UInt32@,System.UInt32@) - id: QueryGenlockMaxSourceDelayI3D(System.IntPtr,System.UInt32@,System.UInt32@) - parent: OpenTK.Graphics.Wgl.Wgl.I3D - langs: - - csharp - - vb - name: QueryGenlockMaxSourceDelayI3D(nint, out uint, out uint) - nameWithType: Wgl.I3D.QueryGenlockMaxSourceDelayI3D(nint, out uint, out uint) - fullName: OpenTK.Graphics.Wgl.Wgl.I3D.QueryGenlockMaxSourceDelayI3D(nint, out uint, out uint) - type: Method - source: - id: QueryGenlockMaxSourceDelayI3D - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 1294 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_I3D_genlock] - - [entry point: wglQueryGenlockMaxSourceDelayI3D] - -
- example: [] - syntax: - content: public static bool QueryGenlockMaxSourceDelayI3D(nint hDC, out uint uMaxLineDelay, out uint uMaxPixelDelay) - parameters: - - id: hDC - type: System.IntPtr - - id: uMaxLineDelay - type: System.UInt32 - - id: uMaxPixelDelay - type: System.UInt32 - return: - type: System.Boolean - content.vb: Public Shared Function QueryGenlockMaxSourceDelayI3D(hDC As IntPtr, uMaxLineDelay As UInteger, uMaxPixelDelay As UInteger) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.I3D.QueryGenlockMaxSourceDelayI3D* - nameWithType.vb: Wgl.I3D.QueryGenlockMaxSourceDelayI3D(IntPtr, UInteger, UInteger) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.I3D.QueryGenlockMaxSourceDelayI3D(System.IntPtr, UInteger, UInteger) - name.vb: QueryGenlockMaxSourceDelayI3D(IntPtr, UInteger, UInteger) -- uid: OpenTK.Graphics.Wgl.Wgl.I3D.ReleaseImageBufferEventsI3D(System.IntPtr,System.ReadOnlySpan{System.IntPtr},System.UInt32) - commentId: M:OpenTK.Graphics.Wgl.Wgl.I3D.ReleaseImageBufferEventsI3D(System.IntPtr,System.ReadOnlySpan{System.IntPtr},System.UInt32) - id: ReleaseImageBufferEventsI3D(System.IntPtr,System.ReadOnlySpan{System.IntPtr},System.UInt32) - parent: OpenTK.Graphics.Wgl.Wgl.I3D - langs: - - csharp - - vb - name: ReleaseImageBufferEventsI3D(nint, ReadOnlySpan, uint) - nameWithType: Wgl.I3D.ReleaseImageBufferEventsI3D(nint, ReadOnlySpan, uint) - fullName: OpenTK.Graphics.Wgl.Wgl.I3D.ReleaseImageBufferEventsI3D(nint, System.ReadOnlySpan, uint) - type: Method - source: - id: ReleaseImageBufferEventsI3D - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 1307 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_I3D_image_buffer] - - [entry point: wglReleaseImageBufferEventsI3D] - -
- example: [] - syntax: - content: public static bool ReleaseImageBufferEventsI3D(nint hDC, ReadOnlySpan pAddress, uint count) - parameters: - - id: hDC - type: System.IntPtr - - id: pAddress - type: System.ReadOnlySpan{System.IntPtr} - - id: count - type: System.UInt32 - return: - type: System.Boolean - content.vb: Public Shared Function ReleaseImageBufferEventsI3D(hDC As IntPtr, pAddress As ReadOnlySpan(Of IntPtr), count As UInteger) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.I3D.ReleaseImageBufferEventsI3D* - nameWithType.vb: Wgl.I3D.ReleaseImageBufferEventsI3D(IntPtr, ReadOnlySpan(Of IntPtr), UInteger) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.I3D.ReleaseImageBufferEventsI3D(System.IntPtr, System.ReadOnlySpan(Of System.IntPtr), UInteger) - name.vb: ReleaseImageBufferEventsI3D(IntPtr, ReadOnlySpan(Of IntPtr), UInteger) -- uid: OpenTK.Graphics.Wgl.Wgl.I3D.ReleaseImageBufferEventsI3D(System.IntPtr,System.IntPtr[],System.UInt32) - commentId: M:OpenTK.Graphics.Wgl.Wgl.I3D.ReleaseImageBufferEventsI3D(System.IntPtr,System.IntPtr[],System.UInt32) - id: ReleaseImageBufferEventsI3D(System.IntPtr,System.IntPtr[],System.UInt32) - parent: OpenTK.Graphics.Wgl.Wgl.I3D - langs: - - csharp - - vb - name: ReleaseImageBufferEventsI3D(nint, nint[], uint) - nameWithType: Wgl.I3D.ReleaseImageBufferEventsI3D(nint, nint[], uint) - fullName: OpenTK.Graphics.Wgl.Wgl.I3D.ReleaseImageBufferEventsI3D(nint, nint[], uint) - type: Method - source: - id: ReleaseImageBufferEventsI3D - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 1319 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_I3D_image_buffer] - - [entry point: wglReleaseImageBufferEventsI3D] - -
- example: [] - syntax: - content: public static bool ReleaseImageBufferEventsI3D(nint hDC, nint[] pAddress, uint count) - parameters: - - id: hDC - type: System.IntPtr - - id: pAddress - type: System.IntPtr[] - - id: count - type: System.UInt32 - return: - type: System.Boolean - content.vb: Public Shared Function ReleaseImageBufferEventsI3D(hDC As IntPtr, pAddress As IntPtr(), count As UInteger) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.I3D.ReleaseImageBufferEventsI3D* - nameWithType.vb: Wgl.I3D.ReleaseImageBufferEventsI3D(IntPtr, IntPtr(), UInteger) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.I3D.ReleaseImageBufferEventsI3D(System.IntPtr, System.IntPtr(), UInteger) - name.vb: ReleaseImageBufferEventsI3D(IntPtr, IntPtr(), UInteger) -- uid: OpenTK.Graphics.Wgl.Wgl.I3D.ReleaseImageBufferEventsI3D(System.IntPtr,System.IntPtr@,System.UInt32) - commentId: M:OpenTK.Graphics.Wgl.Wgl.I3D.ReleaseImageBufferEventsI3D(System.IntPtr,System.IntPtr@,System.UInt32) - id: ReleaseImageBufferEventsI3D(System.IntPtr,System.IntPtr@,System.UInt32) - parent: OpenTK.Graphics.Wgl.Wgl.I3D - langs: - - csharp - - vb - name: ReleaseImageBufferEventsI3D(nint, in nint, uint) - nameWithType: Wgl.I3D.ReleaseImageBufferEventsI3D(nint, in nint, uint) - fullName: OpenTK.Graphics.Wgl.Wgl.I3D.ReleaseImageBufferEventsI3D(nint, in nint, uint) - type: Method - source: - id: ReleaseImageBufferEventsI3D - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 1331 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_I3D_image_buffer] - - [entry point: wglReleaseImageBufferEventsI3D] - -
- example: [] - syntax: - content: public static bool ReleaseImageBufferEventsI3D(nint hDC, in nint pAddress, uint count) - parameters: - - id: hDC - type: System.IntPtr - - id: pAddress - type: System.IntPtr - - id: count - type: System.UInt32 - return: - type: System.Boolean - content.vb: Public Shared Function ReleaseImageBufferEventsI3D(hDC As IntPtr, pAddress As IntPtr, count As UInteger) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.I3D.ReleaseImageBufferEventsI3D* - nameWithType.vb: Wgl.I3D.ReleaseImageBufferEventsI3D(IntPtr, IntPtr, UInteger) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.I3D.ReleaseImageBufferEventsI3D(System.IntPtr, System.IntPtr, UInteger) - name.vb: ReleaseImageBufferEventsI3D(IntPtr, IntPtr, UInteger) -- uid: OpenTK.Graphics.Wgl.Wgl.I3D.SetDigitalVideoParametersI3D(System.IntPtr,OpenTK.Graphics.Wgl.DigitalVideoAttribute,System.Int32@) - commentId: M:OpenTK.Graphics.Wgl.Wgl.I3D.SetDigitalVideoParametersI3D(System.IntPtr,OpenTK.Graphics.Wgl.DigitalVideoAttribute,System.Int32@) - id: SetDigitalVideoParametersI3D(System.IntPtr,OpenTK.Graphics.Wgl.DigitalVideoAttribute,System.Int32@) - parent: OpenTK.Graphics.Wgl.Wgl.I3D - langs: - - csharp - - vb - name: SetDigitalVideoParametersI3D(nint, DigitalVideoAttribute, in int) - nameWithType: Wgl.I3D.SetDigitalVideoParametersI3D(nint, DigitalVideoAttribute, in int) - fullName: OpenTK.Graphics.Wgl.Wgl.I3D.SetDigitalVideoParametersI3D(nint, OpenTK.Graphics.Wgl.DigitalVideoAttribute, in int) - type: Method - source: - id: SetDigitalVideoParametersI3D - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 1343 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_I3D_digital_video_control] - - [entry point: wglSetDigitalVideoParametersI3D] - -
- example: [] - syntax: - content: public static bool SetDigitalVideoParametersI3D(nint hDC, DigitalVideoAttribute iAttribute, in int piValue) - parameters: - - id: hDC - type: System.IntPtr - - id: iAttribute - type: OpenTK.Graphics.Wgl.DigitalVideoAttribute - - id: piValue - type: System.Int32 - return: - type: System.Boolean - content.vb: Public Shared Function SetDigitalVideoParametersI3D(hDC As IntPtr, iAttribute As DigitalVideoAttribute, piValue As Integer) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.I3D.SetDigitalVideoParametersI3D* - nameWithType.vb: Wgl.I3D.SetDigitalVideoParametersI3D(IntPtr, DigitalVideoAttribute, Integer) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.I3D.SetDigitalVideoParametersI3D(System.IntPtr, OpenTK.Graphics.Wgl.DigitalVideoAttribute, Integer) - name.vb: SetDigitalVideoParametersI3D(IntPtr, DigitalVideoAttribute, Integer) -- uid: OpenTK.Graphics.Wgl.Wgl.I3D.SetGammaTableI3D(System.IntPtr,System.Int32,System.ReadOnlySpan{System.UInt16},System.ReadOnlySpan{System.UInt16},System.ReadOnlySpan{System.UInt16}) - commentId: M:OpenTK.Graphics.Wgl.Wgl.I3D.SetGammaTableI3D(System.IntPtr,System.Int32,System.ReadOnlySpan{System.UInt16},System.ReadOnlySpan{System.UInt16},System.ReadOnlySpan{System.UInt16}) - id: SetGammaTableI3D(System.IntPtr,System.Int32,System.ReadOnlySpan{System.UInt16},System.ReadOnlySpan{System.UInt16},System.ReadOnlySpan{System.UInt16}) - parent: OpenTK.Graphics.Wgl.Wgl.I3D - langs: - - csharp - - vb - name: SetGammaTableI3D(nint, int, ReadOnlySpan, ReadOnlySpan, ReadOnlySpan) - nameWithType: Wgl.I3D.SetGammaTableI3D(nint, int, ReadOnlySpan, ReadOnlySpan, ReadOnlySpan) - fullName: OpenTK.Graphics.Wgl.Wgl.I3D.SetGammaTableI3D(nint, int, System.ReadOnlySpan, System.ReadOnlySpan, System.ReadOnlySpan) - type: Method - source: - id: SetGammaTableI3D - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 1355 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_I3D_gamma] - - [entry point: wglSetGammaTableI3D] - -
- example: [] - syntax: - content: public static bool SetGammaTableI3D(nint hDC, int iEntries, ReadOnlySpan puRed, ReadOnlySpan puGreen, ReadOnlySpan puBlue) - parameters: - - id: hDC - type: System.IntPtr - - id: iEntries - type: System.Int32 - - id: puRed - type: System.ReadOnlySpan{System.UInt16} - - id: puGreen - type: System.ReadOnlySpan{System.UInt16} - - id: puBlue - type: System.ReadOnlySpan{System.UInt16} - return: - type: System.Boolean - content.vb: Public Shared Function SetGammaTableI3D(hDC As IntPtr, iEntries As Integer, puRed As ReadOnlySpan(Of UShort), puGreen As ReadOnlySpan(Of UShort), puBlue As ReadOnlySpan(Of UShort)) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.I3D.SetGammaTableI3D* - nameWithType.vb: Wgl.I3D.SetGammaTableI3D(IntPtr, Integer, ReadOnlySpan(Of UShort), ReadOnlySpan(Of UShort), ReadOnlySpan(Of UShort)) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.I3D.SetGammaTableI3D(System.IntPtr, Integer, System.ReadOnlySpan(Of UShort), System.ReadOnlySpan(Of UShort), System.ReadOnlySpan(Of UShort)) - name.vb: SetGammaTableI3D(IntPtr, Integer, ReadOnlySpan(Of UShort), ReadOnlySpan(Of UShort), ReadOnlySpan(Of UShort)) -- uid: OpenTK.Graphics.Wgl.Wgl.I3D.SetGammaTableI3D(System.IntPtr,System.Int32,System.UInt16[],System.UInt16[],System.UInt16[]) - commentId: M:OpenTK.Graphics.Wgl.Wgl.I3D.SetGammaTableI3D(System.IntPtr,System.Int32,System.UInt16[],System.UInt16[],System.UInt16[]) - id: SetGammaTableI3D(System.IntPtr,System.Int32,System.UInt16[],System.UInt16[],System.UInt16[]) - parent: OpenTK.Graphics.Wgl.Wgl.I3D - langs: - - csharp - - vb - name: SetGammaTableI3D(nint, int, ushort[], ushort[], ushort[]) - nameWithType: Wgl.I3D.SetGammaTableI3D(nint, int, ushort[], ushort[], ushort[]) - fullName: OpenTK.Graphics.Wgl.Wgl.I3D.SetGammaTableI3D(nint, int, ushort[], ushort[], ushort[]) - type: Method - source: - id: SetGammaTableI3D - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 1373 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_I3D_gamma] - - [entry point: wglSetGammaTableI3D] - -
- example: [] - syntax: - content: public static bool SetGammaTableI3D(nint hDC, int iEntries, ushort[] puRed, ushort[] puGreen, ushort[] puBlue) - parameters: - - id: hDC - type: System.IntPtr - - id: iEntries - type: System.Int32 - - id: puRed - type: System.UInt16[] - - id: puGreen - type: System.UInt16[] - - id: puBlue - type: System.UInt16[] - return: - type: System.Boolean - content.vb: Public Shared Function SetGammaTableI3D(hDC As IntPtr, iEntries As Integer, puRed As UShort(), puGreen As UShort(), puBlue As UShort()) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.I3D.SetGammaTableI3D* - nameWithType.vb: Wgl.I3D.SetGammaTableI3D(IntPtr, Integer, UShort(), UShort(), UShort()) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.I3D.SetGammaTableI3D(System.IntPtr, Integer, UShort(), UShort(), UShort()) - name.vb: SetGammaTableI3D(IntPtr, Integer, UShort(), UShort(), UShort()) -- uid: OpenTK.Graphics.Wgl.Wgl.I3D.SetGammaTableI3D(System.IntPtr,System.Int32,System.UInt16@,System.UInt16@,System.UInt16@) - commentId: M:OpenTK.Graphics.Wgl.Wgl.I3D.SetGammaTableI3D(System.IntPtr,System.Int32,System.UInt16@,System.UInt16@,System.UInt16@) - id: SetGammaTableI3D(System.IntPtr,System.Int32,System.UInt16@,System.UInt16@,System.UInt16@) - parent: OpenTK.Graphics.Wgl.Wgl.I3D - langs: - - csharp - - vb - name: SetGammaTableI3D(nint, int, in ushort, in ushort, in ushort) - nameWithType: Wgl.I3D.SetGammaTableI3D(nint, int, in ushort, in ushort, in ushort) - fullName: OpenTK.Graphics.Wgl.Wgl.I3D.SetGammaTableI3D(nint, int, in ushort, in ushort, in ushort) - type: Method - source: - id: SetGammaTableI3D - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 1391 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_I3D_gamma] - - [entry point: wglSetGammaTableI3D] - -
- example: [] - syntax: - content: public static bool SetGammaTableI3D(nint hDC, int iEntries, in ushort puRed, in ushort puGreen, in ushort puBlue) - parameters: - - id: hDC - type: System.IntPtr - - id: iEntries - type: System.Int32 - - id: puRed - type: System.UInt16 - - id: puGreen - type: System.UInt16 - - id: puBlue - type: System.UInt16 - return: - type: System.Boolean - content.vb: Public Shared Function SetGammaTableI3D(hDC As IntPtr, iEntries As Integer, puRed As UShort, puGreen As UShort, puBlue As UShort) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.I3D.SetGammaTableI3D* - nameWithType.vb: Wgl.I3D.SetGammaTableI3D(IntPtr, Integer, UShort, UShort, UShort) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.I3D.SetGammaTableI3D(System.IntPtr, Integer, UShort, UShort, UShort) - name.vb: SetGammaTableI3D(IntPtr, Integer, UShort, UShort, UShort) -- uid: OpenTK.Graphics.Wgl.Wgl.I3D.SetGammaTableParametersI3D(System.IntPtr,OpenTK.Graphics.Wgl.GammaTableAttribute,System.Int32@) - commentId: M:OpenTK.Graphics.Wgl.Wgl.I3D.SetGammaTableParametersI3D(System.IntPtr,OpenTK.Graphics.Wgl.GammaTableAttribute,System.Int32@) - id: SetGammaTableParametersI3D(System.IntPtr,OpenTK.Graphics.Wgl.GammaTableAttribute,System.Int32@) - parent: OpenTK.Graphics.Wgl.Wgl.I3D - langs: - - csharp - - vb - name: SetGammaTableParametersI3D(nint, GammaTableAttribute, in int) - nameWithType: Wgl.I3D.SetGammaTableParametersI3D(nint, GammaTableAttribute, in int) - fullName: OpenTK.Graphics.Wgl.Wgl.I3D.SetGammaTableParametersI3D(nint, OpenTK.Graphics.Wgl.GammaTableAttribute, in int) - type: Method - source: - id: SetGammaTableParametersI3D - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 1405 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_I3D_gamma] - - [entry point: wglSetGammaTableParametersI3D] - -
- example: [] - syntax: - content: public static bool SetGammaTableParametersI3D(nint hDC, GammaTableAttribute iAttribute, in int piValue) - parameters: - - id: hDC - type: System.IntPtr - - id: iAttribute - type: OpenTK.Graphics.Wgl.GammaTableAttribute - - id: piValue - type: System.Int32 - return: - type: System.Boolean - content.vb: Public Shared Function SetGammaTableParametersI3D(hDC As IntPtr, iAttribute As GammaTableAttribute, piValue As Integer) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.I3D.SetGammaTableParametersI3D* - nameWithType.vb: Wgl.I3D.SetGammaTableParametersI3D(IntPtr, GammaTableAttribute, Integer) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.I3D.SetGammaTableParametersI3D(System.IntPtr, OpenTK.Graphics.Wgl.GammaTableAttribute, Integer) - name.vb: SetGammaTableParametersI3D(IntPtr, GammaTableAttribute, Integer) -references: -- uid: OpenTK.Graphics.Wgl - commentId: N:OpenTK.Graphics.Wgl - href: OpenTK.html - name: OpenTK.Graphics.Wgl - nameWithType: OpenTK.Graphics.Wgl - fullName: OpenTK.Graphics.Wgl - spec.csharp: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Wgl - name: Wgl - href: OpenTK.Graphics.Wgl.html - spec.vb: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Wgl - name: Wgl - href: OpenTK.Graphics.Wgl.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: System.Object.Equals(System.Object) - commentId: M:System.Object.Equals(System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - name: Equals(object) - nameWithType: object.Equals(object) - fullName: object.Equals(object) - nameWithType.vb: Object.Equals(Object) - fullName.vb: Object.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetHashCode - commentId: M:System.Object.GetHashCode - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - name: GetHashCode() - nameWithType: object.GetHashCode() - fullName: object.GetHashCode() - nameWithType.vb: Object.GetHashCode() - fullName.vb: Object.GetHashCode() - spec.csharp: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.MemberwiseClone - commentId: M:System.Object.MemberwiseClone - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - name: MemberwiseClone() - nameWithType: object.MemberwiseClone() - fullName: object.MemberwiseClone() - nameWithType.vb: Object.MemberwiseClone() - fullName.vb: Object.MemberwiseClone() - spec.csharp: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) - spec.vb: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.ToString - commentId: M:System.Object.ToString - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - name: ToString() - nameWithType: object.ToString() - fullName: object.ToString() - nameWithType.vb: Object.ToString() - fullName.vb: Object.ToString() - spec.csharp: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) - spec.vb: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: OpenTK.Graphics.Wgl.Wgl.I3D.AssociateImageBufferEventsI3D* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.I3D.AssociateImageBufferEventsI3D - href: OpenTK.Graphics.Wgl.Wgl.I3D.html#OpenTK_Graphics_Wgl_Wgl_I3D_AssociateImageBufferEventsI3D_System_IntPtr_System_IntPtr__System_IntPtr__System_UInt32__System_UInt32_ - name: AssociateImageBufferEventsI3D - nameWithType: Wgl.I3D.AssociateImageBufferEventsI3D - fullName: OpenTK.Graphics.Wgl.Wgl.I3D.AssociateImageBufferEventsI3D -- uid: System.IntPtr - commentId: T:System.IntPtr - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: nint - nameWithType: nint - fullName: nint - nameWithType.vb: IntPtr - fullName.vb: System.IntPtr - name.vb: IntPtr -- uid: System.IntPtr* - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: nint* - nameWithType: nint* - fullName: nint* - nameWithType.vb: IntPtr* - fullName.vb: System.IntPtr* - name.vb: IntPtr* - spec.csharp: - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: '*' - spec.vb: - - uid: System.IntPtr - name: IntPtr - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: '*' -- uid: System.UInt32* - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - name: uint* - nameWithType: uint* - fullName: uint* - nameWithType.vb: UInteger* - fullName.vb: UInteger* - name.vb: UInteger* - spec.csharp: - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: '*' - spec.vb: - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: '*' -- uid: System.UInt32 - commentId: T:System.UInt32 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - name: uint - nameWithType: uint - fullName: uint - nameWithType.vb: UInteger - fullName.vb: UInteger - name.vb: UInteger -- uid: System.Int32 - commentId: T:System.Int32 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - name: int - nameWithType: int - fullName: int - nameWithType.vb: Integer - fullName.vb: Integer - name.vb: Integer -- uid: OpenTK.Graphics.Wgl.Wgl.I3D.BeginFrameTrackingI3D_* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.I3D.BeginFrameTrackingI3D_ - href: OpenTK.Graphics.Wgl.Wgl.I3D.html#OpenTK_Graphics_Wgl_Wgl_I3D_BeginFrameTrackingI3D_ - name: BeginFrameTrackingI3D_ - nameWithType: Wgl.I3D.BeginFrameTrackingI3D_ - fullName: OpenTK.Graphics.Wgl.Wgl.I3D.BeginFrameTrackingI3D_ -- uid: OpenTK.Graphics.Wgl.Wgl.I3D.CreateImageBufferI3D* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.I3D.CreateImageBufferI3D - href: OpenTK.Graphics.Wgl.Wgl.I3D.html#OpenTK_Graphics_Wgl_Wgl_I3D_CreateImageBufferI3D_System_IntPtr_System_UInt32_OpenTK_Graphics_Wgl_ImageBufferMaskI3D_ - name: CreateImageBufferI3D - nameWithType: Wgl.I3D.CreateImageBufferI3D - fullName: OpenTK.Graphics.Wgl.Wgl.I3D.CreateImageBufferI3D -- uid: OpenTK.Graphics.Wgl.ImageBufferMaskI3D - commentId: T:OpenTK.Graphics.Wgl.ImageBufferMaskI3D - parent: OpenTK.Graphics.Wgl - href: OpenTK.Graphics.Wgl.ImageBufferMaskI3D.html - name: ImageBufferMaskI3D - nameWithType: ImageBufferMaskI3D - fullName: OpenTK.Graphics.Wgl.ImageBufferMaskI3D -- uid: OpenTK.Graphics.Wgl.Wgl.I3D.DestroyImageBufferI3D_* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.I3D.DestroyImageBufferI3D_ - href: OpenTK.Graphics.Wgl.Wgl.I3D.html#OpenTK_Graphics_Wgl_Wgl_I3D_DestroyImageBufferI3D__System_IntPtr_System_IntPtr_ - name: DestroyImageBufferI3D_ - nameWithType: Wgl.I3D.DestroyImageBufferI3D_ - fullName: OpenTK.Graphics.Wgl.Wgl.I3D.DestroyImageBufferI3D_ -- uid: OpenTK.Graphics.Wgl.Wgl.I3D.DisableFrameLockI3D_* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.I3D.DisableFrameLockI3D_ - href: OpenTK.Graphics.Wgl.Wgl.I3D.html#OpenTK_Graphics_Wgl_Wgl_I3D_DisableFrameLockI3D_ - name: DisableFrameLockI3D_ - nameWithType: Wgl.I3D.DisableFrameLockI3D_ - fullName: OpenTK.Graphics.Wgl.Wgl.I3D.DisableFrameLockI3D_ -- uid: OpenTK.Graphics.Wgl.Wgl.I3D.DisableGenlockI3D_* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.I3D.DisableGenlockI3D_ - href: OpenTK.Graphics.Wgl.Wgl.I3D.html#OpenTK_Graphics_Wgl_Wgl_I3D_DisableGenlockI3D__System_IntPtr_ - name: DisableGenlockI3D_ - nameWithType: Wgl.I3D.DisableGenlockI3D_ - fullName: OpenTK.Graphics.Wgl.Wgl.I3D.DisableGenlockI3D_ -- uid: OpenTK.Graphics.Wgl.Wgl.I3D.EnableFrameLockI3D_* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.I3D.EnableFrameLockI3D_ - href: OpenTK.Graphics.Wgl.Wgl.I3D.html#OpenTK_Graphics_Wgl_Wgl_I3D_EnableFrameLockI3D_ - name: EnableFrameLockI3D_ - nameWithType: Wgl.I3D.EnableFrameLockI3D_ - fullName: OpenTK.Graphics.Wgl.Wgl.I3D.EnableFrameLockI3D_ -- uid: OpenTK.Graphics.Wgl.Wgl.I3D.EnableGenlockI3D_* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.I3D.EnableGenlockI3D_ - href: OpenTK.Graphics.Wgl.Wgl.I3D.html#OpenTK_Graphics_Wgl_Wgl_I3D_EnableGenlockI3D__System_IntPtr_ - name: EnableGenlockI3D_ - nameWithType: Wgl.I3D.EnableGenlockI3D_ - fullName: OpenTK.Graphics.Wgl.Wgl.I3D.EnableGenlockI3D_ -- uid: OpenTK.Graphics.Wgl.Wgl.I3D.EndFrameTrackingI3D_* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.I3D.EndFrameTrackingI3D_ - href: OpenTK.Graphics.Wgl.Wgl.I3D.html#OpenTK_Graphics_Wgl_Wgl_I3D_EndFrameTrackingI3D_ - name: EndFrameTrackingI3D_ - nameWithType: Wgl.I3D.EndFrameTrackingI3D_ - fullName: OpenTK.Graphics.Wgl.Wgl.I3D.EndFrameTrackingI3D_ -- uid: OpenTK.Graphics.Wgl.Wgl.I3D.GenlockSampleRateI3D_* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.I3D.GenlockSampleRateI3D_ - href: OpenTK.Graphics.Wgl.Wgl.I3D.html#OpenTK_Graphics_Wgl_Wgl_I3D_GenlockSampleRateI3D__System_IntPtr_System_UInt32_ - name: GenlockSampleRateI3D_ - nameWithType: Wgl.I3D.GenlockSampleRateI3D_ - fullName: OpenTK.Graphics.Wgl.Wgl.I3D.GenlockSampleRateI3D_ -- uid: OpenTK.Graphics.Wgl.Wgl.I3D.GenlockSourceDelayI3D_* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.I3D.GenlockSourceDelayI3D_ - href: OpenTK.Graphics.Wgl.Wgl.I3D.html#OpenTK_Graphics_Wgl_Wgl_I3D_GenlockSourceDelayI3D__System_IntPtr_System_UInt32_ - name: GenlockSourceDelayI3D_ - nameWithType: Wgl.I3D.GenlockSourceDelayI3D_ - fullName: OpenTK.Graphics.Wgl.Wgl.I3D.GenlockSourceDelayI3D_ -- uid: OpenTK.Graphics.Wgl.Wgl.I3D.GenlockSourceEdgeI3D_* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.I3D.GenlockSourceEdgeI3D_ - href: OpenTK.Graphics.Wgl.Wgl.I3D.html#OpenTK_Graphics_Wgl_Wgl_I3D_GenlockSourceEdgeI3D__System_IntPtr_System_UInt32_ - name: GenlockSourceEdgeI3D_ - nameWithType: Wgl.I3D.GenlockSourceEdgeI3D_ - fullName: OpenTK.Graphics.Wgl.Wgl.I3D.GenlockSourceEdgeI3D_ -- uid: OpenTK.Graphics.Wgl.Wgl.I3D.GenlockSourceI3D_* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.I3D.GenlockSourceI3D_ - href: OpenTK.Graphics.Wgl.Wgl.I3D.html#OpenTK_Graphics_Wgl_Wgl_I3D_GenlockSourceI3D__System_IntPtr_System_UInt32_ - name: GenlockSourceI3D_ - nameWithType: Wgl.I3D.GenlockSourceI3D_ - fullName: OpenTK.Graphics.Wgl.Wgl.I3D.GenlockSourceI3D_ -- uid: OpenTK.Graphics.Wgl.Wgl.I3D.GetDigitalVideoParametersI3D* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.I3D.GetDigitalVideoParametersI3D - href: OpenTK.Graphics.Wgl.Wgl.I3D.html#OpenTK_Graphics_Wgl_Wgl_I3D_GetDigitalVideoParametersI3D_System_IntPtr_OpenTK_Graphics_Wgl_DigitalVideoAttribute_System_Int32__ - name: GetDigitalVideoParametersI3D - nameWithType: Wgl.I3D.GetDigitalVideoParametersI3D - fullName: OpenTK.Graphics.Wgl.Wgl.I3D.GetDigitalVideoParametersI3D -- uid: OpenTK.Graphics.Wgl.DigitalVideoAttribute - commentId: T:OpenTK.Graphics.Wgl.DigitalVideoAttribute - parent: OpenTK.Graphics.Wgl - href: OpenTK.Graphics.Wgl.DigitalVideoAttribute.html - name: DigitalVideoAttribute - nameWithType: DigitalVideoAttribute - fullName: OpenTK.Graphics.Wgl.DigitalVideoAttribute -- uid: System.Int32* - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - name: int* - nameWithType: int* - fullName: int* - nameWithType.vb: Integer* - fullName.vb: Integer* - name.vb: Integer* - spec.csharp: - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '*' - spec.vb: - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '*' -- uid: OpenTK.Graphics.Wgl.Wgl.I3D.GetFrameUsageI3D* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.I3D.GetFrameUsageI3D - href: OpenTK.Graphics.Wgl.Wgl.I3D.html#OpenTK_Graphics_Wgl_Wgl_I3D_GetFrameUsageI3D_System_Single__ - name: GetFrameUsageI3D - nameWithType: Wgl.I3D.GetFrameUsageI3D - fullName: OpenTK.Graphics.Wgl.Wgl.I3D.GetFrameUsageI3D -- uid: System.Single* - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.single - name: float* - nameWithType: float* - fullName: float* - nameWithType.vb: Single* - fullName.vb: Single* - name.vb: Single* - spec.csharp: - - uid: System.Single - name: float - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.single - - name: '*' - spec.vb: - - uid: System.Single - name: Single - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.single - - name: '*' -- uid: OpenTK.Graphics.Wgl.Wgl.I3D.GetGammaTableI3D* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.I3D.GetGammaTableI3D - href: OpenTK.Graphics.Wgl.Wgl.I3D.html#OpenTK_Graphics_Wgl_Wgl_I3D_GetGammaTableI3D_System_IntPtr_System_Int32_System_UInt16__System_UInt16__System_UInt16__ - name: GetGammaTableI3D - nameWithType: Wgl.I3D.GetGammaTableI3D - fullName: OpenTK.Graphics.Wgl.Wgl.I3D.GetGammaTableI3D -- uid: System.UInt16* - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint16 - name: ushort* - nameWithType: ushort* - fullName: ushort* - nameWithType.vb: UShort* - fullName.vb: UShort* - name.vb: UShort* - spec.csharp: - - uid: System.UInt16 - name: ushort - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint16 - - name: '*' - spec.vb: - - uid: System.UInt16 - name: UShort - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint16 - - name: '*' -- uid: OpenTK.Graphics.Wgl.Wgl.I3D.GetGammaTableParametersI3D* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.I3D.GetGammaTableParametersI3D - href: OpenTK.Graphics.Wgl.Wgl.I3D.html#OpenTK_Graphics_Wgl_Wgl_I3D_GetGammaTableParametersI3D_System_IntPtr_OpenTK_Graphics_Wgl_GammaTableAttribute_System_Int32__ - name: GetGammaTableParametersI3D - nameWithType: Wgl.I3D.GetGammaTableParametersI3D - fullName: OpenTK.Graphics.Wgl.Wgl.I3D.GetGammaTableParametersI3D -- uid: OpenTK.Graphics.Wgl.GammaTableAttribute - commentId: T:OpenTK.Graphics.Wgl.GammaTableAttribute - parent: OpenTK.Graphics.Wgl - href: OpenTK.Graphics.Wgl.GammaTableAttribute.html - name: GammaTableAttribute - nameWithType: GammaTableAttribute - fullName: OpenTK.Graphics.Wgl.GammaTableAttribute -- uid: OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSampleRateI3D* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSampleRateI3D - href: OpenTK.Graphics.Wgl.Wgl.I3D.html#OpenTK_Graphics_Wgl_Wgl_I3D_GetGenlockSampleRateI3D_System_IntPtr_System_UInt32__ - name: GetGenlockSampleRateI3D - nameWithType: Wgl.I3D.GetGenlockSampleRateI3D - fullName: OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSampleRateI3D -- uid: OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSourceDelayI3D* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSourceDelayI3D - href: OpenTK.Graphics.Wgl.Wgl.I3D.html#OpenTK_Graphics_Wgl_Wgl_I3D_GetGenlockSourceDelayI3D_System_IntPtr_System_UInt32__ - name: GetGenlockSourceDelayI3D - nameWithType: Wgl.I3D.GetGenlockSourceDelayI3D - fullName: OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSourceDelayI3D -- uid: OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSourceEdgeI3D* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSourceEdgeI3D - href: OpenTK.Graphics.Wgl.Wgl.I3D.html#OpenTK_Graphics_Wgl_Wgl_I3D_GetGenlockSourceEdgeI3D_System_IntPtr_System_UInt32__ - name: GetGenlockSourceEdgeI3D - nameWithType: Wgl.I3D.GetGenlockSourceEdgeI3D - fullName: OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSourceEdgeI3D -- uid: OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSourceI3D* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSourceI3D - href: OpenTK.Graphics.Wgl.Wgl.I3D.html#OpenTK_Graphics_Wgl_Wgl_I3D_GetGenlockSourceI3D_System_IntPtr_System_UInt32__ - name: GetGenlockSourceI3D - nameWithType: Wgl.I3D.GetGenlockSourceI3D - fullName: OpenTK.Graphics.Wgl.Wgl.I3D.GetGenlockSourceI3D -- uid: OpenTK.Graphics.Wgl.Wgl.I3D.IsEnabledFrameLockI3D* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.I3D.IsEnabledFrameLockI3D - href: OpenTK.Graphics.Wgl.Wgl.I3D.html#OpenTK_Graphics_Wgl_Wgl_I3D_IsEnabledFrameLockI3D_System_Int32__ - name: IsEnabledFrameLockI3D - nameWithType: Wgl.I3D.IsEnabledFrameLockI3D - fullName: OpenTK.Graphics.Wgl.Wgl.I3D.IsEnabledFrameLockI3D -- uid: OpenTK.Graphics.Wgl.Wgl.I3D.IsEnabledGenlockI3D* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.I3D.IsEnabledGenlockI3D - href: OpenTK.Graphics.Wgl.Wgl.I3D.html#OpenTK_Graphics_Wgl_Wgl_I3D_IsEnabledGenlockI3D_System_IntPtr_System_Int32__ - name: IsEnabledGenlockI3D - nameWithType: Wgl.I3D.IsEnabledGenlockI3D - fullName: OpenTK.Graphics.Wgl.Wgl.I3D.IsEnabledGenlockI3D -- uid: OpenTK.Graphics.Wgl.Wgl.I3D.QueryFrameLockMasterI3D* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.I3D.QueryFrameLockMasterI3D - href: OpenTK.Graphics.Wgl.Wgl.I3D.html#OpenTK_Graphics_Wgl_Wgl_I3D_QueryFrameLockMasterI3D_System_Int32__ - name: QueryFrameLockMasterI3D - nameWithType: Wgl.I3D.QueryFrameLockMasterI3D - fullName: OpenTK.Graphics.Wgl.Wgl.I3D.QueryFrameLockMasterI3D -- uid: OpenTK.Graphics.Wgl.Wgl.I3D.QueryFrameTrackingI3D* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.I3D.QueryFrameTrackingI3D - href: OpenTK.Graphics.Wgl.Wgl.I3D.html#OpenTK_Graphics_Wgl_Wgl_I3D_QueryFrameTrackingI3D_System_UInt32__System_UInt32__System_Single__ - name: QueryFrameTrackingI3D - nameWithType: Wgl.I3D.QueryFrameTrackingI3D - fullName: OpenTK.Graphics.Wgl.Wgl.I3D.QueryFrameTrackingI3D -- uid: OpenTK.Graphics.Wgl.Wgl.I3D.QueryGenlockMaxSourceDelayI3D* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.I3D.QueryGenlockMaxSourceDelayI3D - href: OpenTK.Graphics.Wgl.Wgl.I3D.html#OpenTK_Graphics_Wgl_Wgl_I3D_QueryGenlockMaxSourceDelayI3D_System_IntPtr_System_UInt32__System_UInt32__ - name: QueryGenlockMaxSourceDelayI3D - nameWithType: Wgl.I3D.QueryGenlockMaxSourceDelayI3D - fullName: OpenTK.Graphics.Wgl.Wgl.I3D.QueryGenlockMaxSourceDelayI3D -- uid: OpenTK.Graphics.Wgl.Wgl.I3D.ReleaseImageBufferEventsI3D* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.I3D.ReleaseImageBufferEventsI3D - href: OpenTK.Graphics.Wgl.Wgl.I3D.html#OpenTK_Graphics_Wgl_Wgl_I3D_ReleaseImageBufferEventsI3D_System_IntPtr_System_IntPtr__System_UInt32_ - name: ReleaseImageBufferEventsI3D - nameWithType: Wgl.I3D.ReleaseImageBufferEventsI3D - fullName: OpenTK.Graphics.Wgl.Wgl.I3D.ReleaseImageBufferEventsI3D -- uid: OpenTK.Graphics.Wgl.Wgl.I3D.SetDigitalVideoParametersI3D* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.I3D.SetDigitalVideoParametersI3D - href: OpenTK.Graphics.Wgl.Wgl.I3D.html#OpenTK_Graphics_Wgl_Wgl_I3D_SetDigitalVideoParametersI3D_System_IntPtr_OpenTK_Graphics_Wgl_DigitalVideoAttribute_System_Int32__ - name: SetDigitalVideoParametersI3D - nameWithType: Wgl.I3D.SetDigitalVideoParametersI3D - fullName: OpenTK.Graphics.Wgl.Wgl.I3D.SetDigitalVideoParametersI3D -- uid: OpenTK.Graphics.Wgl.Wgl.I3D.SetGammaTableI3D* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.I3D.SetGammaTableI3D - href: OpenTK.Graphics.Wgl.Wgl.I3D.html#OpenTK_Graphics_Wgl_Wgl_I3D_SetGammaTableI3D_System_IntPtr_System_Int32_System_UInt16__System_UInt16__System_UInt16__ - name: SetGammaTableI3D - nameWithType: Wgl.I3D.SetGammaTableI3D - fullName: OpenTK.Graphics.Wgl.Wgl.I3D.SetGammaTableI3D -- uid: OpenTK.Graphics.Wgl.Wgl.I3D.SetGammaTableParametersI3D* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.I3D.SetGammaTableParametersI3D - href: OpenTK.Graphics.Wgl.Wgl.I3D.html#OpenTK_Graphics_Wgl_Wgl_I3D_SetGammaTableParametersI3D_System_IntPtr_OpenTK_Graphics_Wgl_GammaTableAttribute_System_Int32__ - name: SetGammaTableParametersI3D - nameWithType: Wgl.I3D.SetGammaTableParametersI3D - fullName: OpenTK.Graphics.Wgl.Wgl.I3D.SetGammaTableParametersI3D -- uid: System.ReadOnlySpan{System.IntPtr} - commentId: T:System.ReadOnlySpan{System.IntPtr} - parent: System - definition: System.ReadOnlySpan`1 - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - name: ReadOnlySpan - nameWithType: ReadOnlySpan - fullName: System.ReadOnlySpan - nameWithType.vb: ReadOnlySpan(Of IntPtr) - fullName.vb: System.ReadOnlySpan(Of System.IntPtr) - name.vb: ReadOnlySpan(Of IntPtr) - spec.csharp: - - uid: System.ReadOnlySpan`1 - name: ReadOnlySpan - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - - name: < - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: '>' - spec.vb: - - uid: System.ReadOnlySpan`1 - name: ReadOnlySpan - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - - name: ( - - name: Of - - name: " " - - uid: System.IntPtr - name: IntPtr - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ) -- uid: System.ReadOnlySpan{System.UInt32} - commentId: T:System.ReadOnlySpan{System.UInt32} - parent: System - definition: System.ReadOnlySpan`1 - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - name: ReadOnlySpan - nameWithType: ReadOnlySpan - fullName: System.ReadOnlySpan - nameWithType.vb: ReadOnlySpan(Of UInteger) - fullName.vb: System.ReadOnlySpan(Of UInteger) - name.vb: ReadOnlySpan(Of UInteger) - spec.csharp: - - uid: System.ReadOnlySpan`1 - name: ReadOnlySpan - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - - name: < - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: '>' - spec.vb: - - uid: System.ReadOnlySpan`1 - name: ReadOnlySpan - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - - name: ( - - name: Of - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: System.Boolean - commentId: T:System.Boolean - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - name: bool - nameWithType: bool - fullName: bool - nameWithType.vb: Boolean - fullName.vb: Boolean - name.vb: Boolean -- uid: System.ReadOnlySpan`1 - commentId: T:System.ReadOnlySpan`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - name: ReadOnlySpan - nameWithType: ReadOnlySpan - fullName: System.ReadOnlySpan - nameWithType.vb: ReadOnlySpan(Of T) - fullName.vb: System.ReadOnlySpan(Of T) - name.vb: ReadOnlySpan(Of T) - spec.csharp: - - uid: System.ReadOnlySpan`1 - name: ReadOnlySpan - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.ReadOnlySpan`1 - name: ReadOnlySpan - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: System.IntPtr[] - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: nint[] - nameWithType: nint[] - fullName: nint[] - nameWithType.vb: IntPtr() - fullName.vb: System.IntPtr() - name.vb: IntPtr() - spec.csharp: - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: '[' - - name: ']' - spec.vb: - - uid: System.IntPtr - name: IntPtr - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ( - - name: ) -- uid: System.UInt32[] - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - name: uint[] - nameWithType: uint[] - fullName: uint[] - nameWithType.vb: UInteger() - fullName.vb: UInteger() - name.vb: UInteger() - spec.csharp: - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: '[' - - name: ']' - spec.vb: - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ( - - name: ) -- uid: OpenTK.Graphics.Wgl.Wgl.I3D.BeginFrameTrackingI3D* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.I3D.BeginFrameTrackingI3D - href: OpenTK.Graphics.Wgl.Wgl.I3D.html#OpenTK_Graphics_Wgl_Wgl_I3D_BeginFrameTrackingI3D - name: BeginFrameTrackingI3D - nameWithType: Wgl.I3D.BeginFrameTrackingI3D - fullName: OpenTK.Graphics.Wgl.Wgl.I3D.BeginFrameTrackingI3D -- uid: OpenTK.Graphics.Wgl.Wgl.I3D.DestroyImageBufferI3D* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.I3D.DestroyImageBufferI3D - href: OpenTK.Graphics.Wgl.Wgl.I3D.html#OpenTK_Graphics_Wgl_Wgl_I3D_DestroyImageBufferI3D_System_IntPtr_System_IntPtr_ - name: DestroyImageBufferI3D - nameWithType: Wgl.I3D.DestroyImageBufferI3D - fullName: OpenTK.Graphics.Wgl.Wgl.I3D.DestroyImageBufferI3D -- uid: OpenTK.Graphics.Wgl.Wgl.I3D.DisableFrameLockI3D* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.I3D.DisableFrameLockI3D - href: OpenTK.Graphics.Wgl.Wgl.I3D.html#OpenTK_Graphics_Wgl_Wgl_I3D_DisableFrameLockI3D - name: DisableFrameLockI3D - nameWithType: Wgl.I3D.DisableFrameLockI3D - fullName: OpenTK.Graphics.Wgl.Wgl.I3D.DisableFrameLockI3D -- uid: OpenTK.Graphics.Wgl.Wgl.I3D.DisableGenlockI3D* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.I3D.DisableGenlockI3D - href: OpenTK.Graphics.Wgl.Wgl.I3D.html#OpenTK_Graphics_Wgl_Wgl_I3D_DisableGenlockI3D_System_IntPtr_ - name: DisableGenlockI3D - nameWithType: Wgl.I3D.DisableGenlockI3D - fullName: OpenTK.Graphics.Wgl.Wgl.I3D.DisableGenlockI3D -- uid: OpenTK.Graphics.Wgl.Wgl.I3D.EnableFrameLockI3D* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.I3D.EnableFrameLockI3D - href: OpenTK.Graphics.Wgl.Wgl.I3D.html#OpenTK_Graphics_Wgl_Wgl_I3D_EnableFrameLockI3D - name: EnableFrameLockI3D - nameWithType: Wgl.I3D.EnableFrameLockI3D - fullName: OpenTK.Graphics.Wgl.Wgl.I3D.EnableFrameLockI3D -- uid: OpenTK.Graphics.Wgl.Wgl.I3D.EnableGenlockI3D* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.I3D.EnableGenlockI3D - href: OpenTK.Graphics.Wgl.Wgl.I3D.html#OpenTK_Graphics_Wgl_Wgl_I3D_EnableGenlockI3D_System_IntPtr_ - name: EnableGenlockI3D - nameWithType: Wgl.I3D.EnableGenlockI3D - fullName: OpenTK.Graphics.Wgl.Wgl.I3D.EnableGenlockI3D -- uid: OpenTK.Graphics.Wgl.Wgl.I3D.EndFrameTrackingI3D* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.I3D.EndFrameTrackingI3D - href: OpenTK.Graphics.Wgl.Wgl.I3D.html#OpenTK_Graphics_Wgl_Wgl_I3D_EndFrameTrackingI3D - name: EndFrameTrackingI3D - nameWithType: Wgl.I3D.EndFrameTrackingI3D - fullName: OpenTK.Graphics.Wgl.Wgl.I3D.EndFrameTrackingI3D -- uid: OpenTK.Graphics.Wgl.Wgl.I3D.GenlockSampleRateI3D* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.I3D.GenlockSampleRateI3D - href: OpenTK.Graphics.Wgl.Wgl.I3D.html#OpenTK_Graphics_Wgl_Wgl_I3D_GenlockSampleRateI3D_System_IntPtr_System_UInt32_ - name: GenlockSampleRateI3D - nameWithType: Wgl.I3D.GenlockSampleRateI3D - fullName: OpenTK.Graphics.Wgl.Wgl.I3D.GenlockSampleRateI3D -- uid: OpenTK.Graphics.Wgl.Wgl.I3D.GenlockSourceDelayI3D* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.I3D.GenlockSourceDelayI3D - href: OpenTK.Graphics.Wgl.Wgl.I3D.html#OpenTK_Graphics_Wgl_Wgl_I3D_GenlockSourceDelayI3D_System_IntPtr_System_UInt32_ - name: GenlockSourceDelayI3D - nameWithType: Wgl.I3D.GenlockSourceDelayI3D - fullName: OpenTK.Graphics.Wgl.Wgl.I3D.GenlockSourceDelayI3D -- uid: OpenTK.Graphics.Wgl.Wgl.I3D.GenlockSourceEdgeI3D* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.I3D.GenlockSourceEdgeI3D - href: OpenTK.Graphics.Wgl.Wgl.I3D.html#OpenTK_Graphics_Wgl_Wgl_I3D_GenlockSourceEdgeI3D_System_IntPtr_System_UInt32_ - name: GenlockSourceEdgeI3D - nameWithType: Wgl.I3D.GenlockSourceEdgeI3D - fullName: OpenTK.Graphics.Wgl.Wgl.I3D.GenlockSourceEdgeI3D -- uid: OpenTK.Graphics.Wgl.Wgl.I3D.GenlockSourceI3D* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.I3D.GenlockSourceI3D - href: OpenTK.Graphics.Wgl.Wgl.I3D.html#OpenTK_Graphics_Wgl_Wgl_I3D_GenlockSourceI3D_System_IntPtr_System_UInt32_ - name: GenlockSourceI3D - nameWithType: Wgl.I3D.GenlockSourceI3D - fullName: OpenTK.Graphics.Wgl.Wgl.I3D.GenlockSourceI3D -- uid: System.Single - commentId: T:System.Single - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.single - name: float - nameWithType: float - fullName: float - nameWithType.vb: Single - fullName.vb: Single - name.vb: Single -- uid: System.Span{System.UInt16} - commentId: T:System.Span{System.UInt16} - parent: System - definition: System.Span`1 - href: https://learn.microsoft.com/dotnet/api/system.span-1 - name: Span - nameWithType: Span - fullName: System.Span - nameWithType.vb: Span(Of UShort) - fullName.vb: System.Span(Of UShort) - name.vb: Span(Of UShort) - spec.csharp: - - uid: System.Span`1 - name: Span - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.span-1 - - name: < - - uid: System.UInt16 - name: ushort - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint16 - - name: '>' - spec.vb: - - uid: System.Span`1 - name: Span - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.span-1 - - name: ( - - name: Of - - name: " " - - uid: System.UInt16 - name: UShort - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint16 - - name: ) -- uid: System.Span`1 - commentId: T:System.Span`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.span-1 - name: Span - nameWithType: Span - fullName: System.Span - nameWithType.vb: Span(Of T) - fullName.vb: System.Span(Of T) - name.vb: Span(Of T) - spec.csharp: - - uid: System.Span`1 - name: Span - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.span-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.Span`1 - name: Span - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.span-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: System.UInt16[] - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint16 - name: ushort[] - nameWithType: ushort[] - fullName: ushort[] - nameWithType.vb: UShort() - fullName.vb: UShort() - name.vb: UShort() - spec.csharp: - - uid: System.UInt16 - name: ushort - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint16 - - name: '[' - - name: ']' - spec.vb: - - uid: System.UInt16 - name: UShort - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint16 - - name: ( - - name: ) -- uid: System.UInt16 - commentId: T:System.UInt16 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint16 - name: ushort - nameWithType: ushort - fullName: ushort - nameWithType.vb: UShort - fullName.vb: UShort - name.vb: UShort -- uid: System.ReadOnlySpan{System.UInt16} - commentId: T:System.ReadOnlySpan{System.UInt16} - parent: System - definition: System.ReadOnlySpan`1 - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - name: ReadOnlySpan - nameWithType: ReadOnlySpan - fullName: System.ReadOnlySpan - nameWithType.vb: ReadOnlySpan(Of UShort) - fullName.vb: System.ReadOnlySpan(Of UShort) - name.vb: ReadOnlySpan(Of UShort) - spec.csharp: - - uid: System.ReadOnlySpan`1 - name: ReadOnlySpan - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - - name: < - - uid: System.UInt16 - name: ushort - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint16 - - name: '>' - spec.vb: - - uid: System.ReadOnlySpan`1 - name: ReadOnlySpan - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - - name: ( - - name: Of - - name: " " - - uid: System.UInt16 - name: UShort - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint16 - - name: ) diff --git a/api/OpenTK.Graphics.Wgl.Wgl.NV.yml b/api/OpenTK.Graphics.Wgl.Wgl.NV.yml deleted file mode 100644 index 43bd333f..00000000 --- a/api/OpenTK.Graphics.Wgl.Wgl.NV.yml +++ /dev/null @@ -1,5043 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: OpenTK.Graphics.Wgl.Wgl.NV - commentId: T:OpenTK.Graphics.Wgl.Wgl.NV - id: Wgl.NV - parent: OpenTK.Graphics.Wgl - children: - - OpenTK.Graphics.Wgl.Wgl.NV.AllocateMemoryNV(System.Int32,System.Single,System.Single,System.Single) - - OpenTK.Graphics.Wgl.Wgl.NV.BindSwapBarrierNV(System.UInt32,System.UInt32) - - OpenTK.Graphics.Wgl.Wgl.NV.BindSwapBarrierNV_(System.UInt32,System.UInt32) - - OpenTK.Graphics.Wgl.Wgl.NV.BindVideoCaptureDeviceNV(System.UInt32,System.IntPtr) - - OpenTK.Graphics.Wgl.Wgl.NV.BindVideoCaptureDeviceNV_(System.UInt32,System.IntPtr) - - OpenTK.Graphics.Wgl.Wgl.NV.BindVideoDeviceNV(System.IntPtr,System.UInt32,System.IntPtr,System.Int32*) - - OpenTK.Graphics.Wgl.Wgl.NV.BindVideoDeviceNV(System.IntPtr,System.UInt32,System.IntPtr,System.Int32@) - - OpenTK.Graphics.Wgl.Wgl.NV.BindVideoDeviceNV(System.IntPtr,System.UInt32,System.IntPtr,System.Int32[]) - - OpenTK.Graphics.Wgl.Wgl.NV.BindVideoDeviceNV(System.IntPtr,System.UInt32,System.IntPtr,System.ReadOnlySpan{System.Int32}) - - OpenTK.Graphics.Wgl.Wgl.NV.BindVideoImageNV(System.IntPtr,System.IntPtr,OpenTK.Graphics.Wgl.VideoOutputBuffer) - - OpenTK.Graphics.Wgl.Wgl.NV.BindVideoImageNV_(System.IntPtr,System.IntPtr,OpenTK.Graphics.Wgl.VideoOutputBuffer) - - OpenTK.Graphics.Wgl.Wgl.NV.CopyImageSubDataNV(System.IntPtr,System.UInt32,OpenTK.Graphics.OpenGL.TextureTarget,System.Int32,System.Int32,System.Int32,System.Int32,System.IntPtr,System.UInt32,OpenTK.Graphics.OpenGL.TextureTarget,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32) - - OpenTK.Graphics.Wgl.Wgl.NV.CopyImageSubDataNV_(System.IntPtr,System.UInt32,OpenTK.Graphics.OpenGL.TextureTarget,System.Int32,System.Int32,System.Int32,System.Int32,System.IntPtr,System.UInt32,OpenTK.Graphics.OpenGL.TextureTarget,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32) - - OpenTK.Graphics.Wgl.Wgl.NV.CreateAffinityDCNV(System.IntPtr*) - - OpenTK.Graphics.Wgl.Wgl.NV.CreateAffinityDCNV(System.IntPtr@) - - OpenTK.Graphics.Wgl.Wgl.NV.CreateAffinityDCNV(System.IntPtr[]) - - OpenTK.Graphics.Wgl.Wgl.NV.CreateAffinityDCNV(System.ReadOnlySpan{System.IntPtr}) - - OpenTK.Graphics.Wgl.Wgl.NV.DXCloseDeviceNV(System.IntPtr) - - OpenTK.Graphics.Wgl.Wgl.NV.DXCloseDeviceNV_(System.IntPtr) - - OpenTK.Graphics.Wgl.Wgl.NV.DXLockObjectsNV(System.IntPtr,System.Int32,System.IntPtr*) - - OpenTK.Graphics.Wgl.Wgl.NV.DXLockObjectsNV(System.IntPtr,System.Int32,System.IntPtr@) - - OpenTK.Graphics.Wgl.Wgl.NV.DXLockObjectsNV(System.IntPtr,System.Int32,System.IntPtr[]) - - OpenTK.Graphics.Wgl.Wgl.NV.DXLockObjectsNV(System.IntPtr,System.Int32,System.Span{System.IntPtr}) - - OpenTK.Graphics.Wgl.Wgl.NV.DXObjectAccessNV(System.IntPtr,OpenTK.Graphics.Wgl.DXInteropMaskNV) - - OpenTK.Graphics.Wgl.Wgl.NV.DXObjectAccessNV_(System.IntPtr,OpenTK.Graphics.Wgl.DXInteropMaskNV) - - OpenTK.Graphics.Wgl.Wgl.NV.DXOpenDeviceNV(System.IntPtr) - - OpenTK.Graphics.Wgl.Wgl.NV.DXOpenDeviceNV(System.Void*) - - OpenTK.Graphics.Wgl.Wgl.NV.DXOpenDeviceNV``1(``0@) - - OpenTK.Graphics.Wgl.Wgl.NV.DXRegisterObjectNV(System.IntPtr,System.IntPtr,System.UInt32,OpenTK.Graphics.Wgl.ObjectTypeDX,OpenTK.Graphics.Wgl.DXInteropMaskNV) - - OpenTK.Graphics.Wgl.Wgl.NV.DXRegisterObjectNV(System.IntPtr,System.Void*,System.UInt32,OpenTK.Graphics.Wgl.ObjectTypeDX,OpenTK.Graphics.Wgl.DXInteropMaskNV) - - OpenTK.Graphics.Wgl.Wgl.NV.DXRegisterObjectNV``1(System.IntPtr,``0@,System.UInt32,OpenTK.Graphics.Wgl.ObjectTypeDX,OpenTK.Graphics.Wgl.DXInteropMaskNV) - - OpenTK.Graphics.Wgl.Wgl.NV.DXSetResourceShareHandleNV(System.IntPtr,System.IntPtr) - - OpenTK.Graphics.Wgl.Wgl.NV.DXSetResourceShareHandleNV(System.Void*,System.IntPtr) - - OpenTK.Graphics.Wgl.Wgl.NV.DXSetResourceShareHandleNV``1(``0@,System.IntPtr) - - OpenTK.Graphics.Wgl.Wgl.NV.DXUnlockObjectsNV(System.IntPtr,System.Int32,System.IntPtr*) - - OpenTK.Graphics.Wgl.Wgl.NV.DXUnlockObjectsNV(System.IntPtr,System.Int32,System.IntPtr@) - - OpenTK.Graphics.Wgl.Wgl.NV.DXUnlockObjectsNV(System.IntPtr,System.Int32,System.IntPtr[]) - - OpenTK.Graphics.Wgl.Wgl.NV.DXUnlockObjectsNV(System.IntPtr,System.Int32,System.Span{System.IntPtr}) - - OpenTK.Graphics.Wgl.Wgl.NV.DXUnregisterObjectNV(System.IntPtr,System.IntPtr) - - OpenTK.Graphics.Wgl.Wgl.NV.DXUnregisterObjectNV_(System.IntPtr,System.IntPtr) - - OpenTK.Graphics.Wgl.Wgl.NV.DelayBeforeSwapNV(System.IntPtr,System.Single) - - OpenTK.Graphics.Wgl.Wgl.NV.DelayBeforeSwapNV_(System.IntPtr,System.Single) - - OpenTK.Graphics.Wgl.Wgl.NV.DeleteDCNV(System.IntPtr) - - OpenTK.Graphics.Wgl.Wgl.NV.DeleteDCNV_(System.IntPtr) - - OpenTK.Graphics.Wgl.Wgl.NV.EnumGpuDevicesNV(System.IntPtr,System.UInt32,OpenTK.Graphics.Wgl._GPU_DEVICE*) - - OpenTK.Graphics.Wgl.Wgl.NV.EnumGpuDevicesNV(System.IntPtr,System.UInt32,OpenTK.Graphics.Wgl._GPU_DEVICE@) - - OpenTK.Graphics.Wgl.Wgl.NV.EnumGpuDevicesNV(System.IntPtr,System.UInt32,OpenTK.Graphics.Wgl._GPU_DEVICE[]) - - OpenTK.Graphics.Wgl.Wgl.NV.EnumGpuDevicesNV(System.IntPtr,System.UInt32,System.Span{OpenTK.Graphics.Wgl._GPU_DEVICE}) - - OpenTK.Graphics.Wgl.Wgl.NV.EnumGpusFromAffinityDCNV(System.IntPtr,System.UInt32,System.IntPtr*) - - OpenTK.Graphics.Wgl.Wgl.NV.EnumGpusFromAffinityDCNV(System.IntPtr,System.UInt32,System.IntPtr@) - - OpenTK.Graphics.Wgl.Wgl.NV.EnumGpusNV(System.UInt32,System.IntPtr*) - - OpenTK.Graphics.Wgl.Wgl.NV.EnumGpusNV(System.UInt32,System.IntPtr@) - - OpenTK.Graphics.Wgl.Wgl.NV.EnumerateVideoCaptureDevicesNV(System.IntPtr,System.IntPtr*) - - OpenTK.Graphics.Wgl.Wgl.NV.EnumerateVideoCaptureDevicesNV(System.IntPtr,System.IntPtr@) - - OpenTK.Graphics.Wgl.Wgl.NV.EnumerateVideoCaptureDevicesNV(System.IntPtr,System.IntPtr[]) - - OpenTK.Graphics.Wgl.Wgl.NV.EnumerateVideoCaptureDevicesNV(System.IntPtr,System.Span{System.IntPtr}) - - OpenTK.Graphics.Wgl.Wgl.NV.EnumerateVideoDevicesNV(System.IntPtr,System.IntPtr*) - - OpenTK.Graphics.Wgl.Wgl.NV.EnumerateVideoDevicesNV(System.IntPtr,System.IntPtr@) - - OpenTK.Graphics.Wgl.Wgl.NV.EnumerateVideoDevicesNV(System.IntPtr,System.IntPtr[]) - - OpenTK.Graphics.Wgl.Wgl.NV.EnumerateVideoDevicesNV(System.IntPtr,System.Span{System.IntPtr}) - - OpenTK.Graphics.Wgl.Wgl.NV.FreeMemoryNV(System.IntPtr) - - OpenTK.Graphics.Wgl.Wgl.NV.FreeMemoryNV(System.Void*) - - OpenTK.Graphics.Wgl.Wgl.NV.FreeMemoryNV``1(System.Span{``0}) - - OpenTK.Graphics.Wgl.Wgl.NV.FreeMemoryNV``1(``0@) - - OpenTK.Graphics.Wgl.Wgl.NV.FreeMemoryNV``1(``0[]) - - OpenTK.Graphics.Wgl.Wgl.NV.GetVideoDeviceNV(System.IntPtr,System.Int32,System.IntPtr*) - - OpenTK.Graphics.Wgl.Wgl.NV.GetVideoDeviceNV(System.IntPtr,System.Int32,System.IntPtr@) - - OpenTK.Graphics.Wgl.Wgl.NV.GetVideoDeviceNV(System.IntPtr,System.Int32,System.IntPtr[]) - - OpenTK.Graphics.Wgl.Wgl.NV.GetVideoDeviceNV(System.IntPtr,System.Int32,System.Span{System.IntPtr}) - - OpenTK.Graphics.Wgl.Wgl.NV.GetVideoInfoNV(System.IntPtr,System.UInt64*,System.UInt64*) - - OpenTK.Graphics.Wgl.Wgl.NV.GetVideoInfoNV(System.IntPtr,System.UInt64@,System.UInt64@) - - OpenTK.Graphics.Wgl.Wgl.NV.JoinSwapGroupNV(System.IntPtr,System.UInt32) - - OpenTK.Graphics.Wgl.Wgl.NV.JoinSwapGroupNV_(System.IntPtr,System.UInt32) - - OpenTK.Graphics.Wgl.Wgl.NV.LockVideoCaptureDeviceNV(System.IntPtr,System.IntPtr) - - OpenTK.Graphics.Wgl.Wgl.NV.LockVideoCaptureDeviceNV_(System.IntPtr,System.IntPtr) - - OpenTK.Graphics.Wgl.Wgl.NV.QueryCurrentContextNV(OpenTK.Graphics.Wgl.ContextAttribute,System.Int32*) - - OpenTK.Graphics.Wgl.Wgl.NV.QueryCurrentContextNV(OpenTK.Graphics.Wgl.ContextAttribute,System.Int32@) - - OpenTK.Graphics.Wgl.Wgl.NV.QueryFrameCountNV(System.IntPtr,System.UInt32*) - - OpenTK.Graphics.Wgl.Wgl.NV.QueryFrameCountNV(System.IntPtr,System.UInt32@) - - OpenTK.Graphics.Wgl.Wgl.NV.QueryMaxSwapGroupsNV(System.IntPtr,System.UInt32*,System.UInt32*) - - OpenTK.Graphics.Wgl.Wgl.NV.QueryMaxSwapGroupsNV(System.IntPtr,System.UInt32@,System.UInt32@) - - OpenTK.Graphics.Wgl.Wgl.NV.QuerySwapGroupNV(System.IntPtr,System.UInt32*,System.UInt32*) - - OpenTK.Graphics.Wgl.Wgl.NV.QuerySwapGroupNV(System.IntPtr,System.UInt32@,System.UInt32@) - - OpenTK.Graphics.Wgl.Wgl.NV.QueryVideoCaptureDeviceNV(System.IntPtr,System.IntPtr,OpenTK.Graphics.Wgl.VideoCaptureDeviceAttribute,System.Int32*) - - OpenTK.Graphics.Wgl.Wgl.NV.QueryVideoCaptureDeviceNV(System.IntPtr,System.IntPtr,OpenTK.Graphics.Wgl.VideoCaptureDeviceAttribute,System.Int32@) - - OpenTK.Graphics.Wgl.Wgl.NV.ReleaseVideoCaptureDeviceNV(System.IntPtr,System.IntPtr) - - OpenTK.Graphics.Wgl.Wgl.NV.ReleaseVideoCaptureDeviceNV_(System.IntPtr,System.IntPtr) - - OpenTK.Graphics.Wgl.Wgl.NV.ReleaseVideoDeviceNV(System.IntPtr) - - OpenTK.Graphics.Wgl.Wgl.NV.ReleaseVideoDeviceNV_(System.IntPtr) - - OpenTK.Graphics.Wgl.Wgl.NV.ReleaseVideoImageNV(System.IntPtr,OpenTK.Graphics.Wgl.VideoOutputBuffer) - - OpenTK.Graphics.Wgl.Wgl.NV.ReleaseVideoImageNV_(System.IntPtr,OpenTK.Graphics.Wgl.VideoOutputBuffer) - - OpenTK.Graphics.Wgl.Wgl.NV.ResetFrameCountNV(System.IntPtr) - - OpenTK.Graphics.Wgl.Wgl.NV.ResetFrameCountNV_(System.IntPtr) - - OpenTK.Graphics.Wgl.Wgl.NV.SendPbufferToVideoNV(System.IntPtr,OpenTK.Graphics.Wgl.VideoOutputBufferType,System.UInt64*,System.Int32) - - OpenTK.Graphics.Wgl.Wgl.NV.SendPbufferToVideoNV(System.IntPtr,OpenTK.Graphics.Wgl.VideoOutputBufferType,System.UInt64@,System.Int32) - langs: - - csharp - - vb - name: Wgl.NV - nameWithType: Wgl.NV - fullName: OpenTK.Graphics.Wgl.Wgl.NV - type: Class - source: - id: NV - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 1417 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: NV extensions. - example: [] - syntax: - content: public static class Wgl.NV - content.vb: Public Module Wgl.NV - inheritance: - - System.Object - inheritedMembers: - - System.Object.Equals(System.Object) - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetHashCode - - System.Object.GetType - - System.Object.MemberwiseClone - - System.Object.ReferenceEquals(System.Object,System.Object) - - System.Object.ToString -- uid: OpenTK.Graphics.Wgl.Wgl.NV.AllocateMemoryNV(System.Int32,System.Single,System.Single,System.Single) - commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.AllocateMemoryNV(System.Int32,System.Single,System.Single,System.Single) - id: AllocateMemoryNV(System.Int32,System.Single,System.Single,System.Single) - parent: OpenTK.Graphics.Wgl.Wgl.NV - langs: - - csharp - - vb - name: AllocateMemoryNV(int, float, float, float) - nameWithType: Wgl.NV.AllocateMemoryNV(int, float, float, float) - fullName: OpenTK.Graphics.Wgl.Wgl.NV.AllocateMemoryNV(int, float, float, float) - type: Method - source: - id: AllocateMemoryNV - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs - startLine: 341 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_NV_vertex_array_range] - - [entry point: wglAllocateMemoryNV] - -
- example: [] - syntax: - content: public static void* AllocateMemoryNV(int size, float readfreq, float writefreq, float priority) - parameters: - - id: size - type: System.Int32 - - id: readfreq - type: System.Single - - id: writefreq - type: System.Single - - id: priority - type: System.Single - return: - type: System.Void* - content.vb: Public Shared Function AllocateMemoryNV(size As Integer, readfreq As Single, writefreq As Single, priority As Single) As Void* - overload: OpenTK.Graphics.Wgl.Wgl.NV.AllocateMemoryNV* - nameWithType.vb: Wgl.NV.AllocateMemoryNV(Integer, Single, Single, Single) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.AllocateMemoryNV(Integer, Single, Single, Single) - name.vb: AllocateMemoryNV(Integer, Single, Single, Single) -- uid: OpenTK.Graphics.Wgl.Wgl.NV.BindSwapBarrierNV_(System.UInt32,System.UInt32) - commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.BindSwapBarrierNV_(System.UInt32,System.UInt32) - id: BindSwapBarrierNV_(System.UInt32,System.UInt32) - parent: OpenTK.Graphics.Wgl.Wgl.NV - langs: - - csharp - - vb - name: BindSwapBarrierNV_(uint, uint) - nameWithType: Wgl.NV.BindSwapBarrierNV_(uint, uint) - fullName: OpenTK.Graphics.Wgl.Wgl.NV.BindSwapBarrierNV_(uint, uint) - type: Method - source: - id: BindSwapBarrierNV_ - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs - startLine: 344 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_NV_swap_group] - - [entry point: wglBindSwapBarrierNV] - -
- example: [] - syntax: - content: public static int BindSwapBarrierNV_(uint group, uint barrier) - parameters: - - id: group - type: System.UInt32 - - id: barrier - type: System.UInt32 - return: - type: System.Int32 - content.vb: Public Shared Function BindSwapBarrierNV_(group As UInteger, barrier As UInteger) As Integer - overload: OpenTK.Graphics.Wgl.Wgl.NV.BindSwapBarrierNV_* - nameWithType.vb: Wgl.NV.BindSwapBarrierNV_(UInteger, UInteger) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.BindSwapBarrierNV_(UInteger, UInteger) - name.vb: BindSwapBarrierNV_(UInteger, UInteger) -- uid: OpenTK.Graphics.Wgl.Wgl.NV.BindVideoCaptureDeviceNV_(System.UInt32,System.IntPtr) - commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.BindVideoCaptureDeviceNV_(System.UInt32,System.IntPtr) - id: BindVideoCaptureDeviceNV_(System.UInt32,System.IntPtr) - parent: OpenTK.Graphics.Wgl.Wgl.NV - langs: - - csharp - - vb - name: BindVideoCaptureDeviceNV_(uint, nint) - nameWithType: Wgl.NV.BindVideoCaptureDeviceNV_(uint, nint) - fullName: OpenTK.Graphics.Wgl.Wgl.NV.BindVideoCaptureDeviceNV_(uint, nint) - type: Method - source: - id: BindVideoCaptureDeviceNV_ - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs - startLine: 347 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_NV_video_capture] - - [entry point: wglBindVideoCaptureDeviceNV] - -
- example: [] - syntax: - content: public static int BindVideoCaptureDeviceNV_(uint uVideoSlot, nint hDevice) - parameters: - - id: uVideoSlot - type: System.UInt32 - - id: hDevice - type: System.IntPtr - return: - type: System.Int32 - content.vb: Public Shared Function BindVideoCaptureDeviceNV_(uVideoSlot As UInteger, hDevice As IntPtr) As Integer - overload: OpenTK.Graphics.Wgl.Wgl.NV.BindVideoCaptureDeviceNV_* - nameWithType.vb: Wgl.NV.BindVideoCaptureDeviceNV_(UInteger, IntPtr) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.BindVideoCaptureDeviceNV_(UInteger, System.IntPtr) - name.vb: BindVideoCaptureDeviceNV_(UInteger, IntPtr) -- uid: OpenTK.Graphics.Wgl.Wgl.NV.BindVideoDeviceNV(System.IntPtr,System.UInt32,System.IntPtr,System.Int32*) - commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.BindVideoDeviceNV(System.IntPtr,System.UInt32,System.IntPtr,System.Int32*) - id: BindVideoDeviceNV(System.IntPtr,System.UInt32,System.IntPtr,System.Int32*) - parent: OpenTK.Graphics.Wgl.Wgl.NV - langs: - - csharp - - vb - name: BindVideoDeviceNV(nint, uint, nint, int*) - nameWithType: Wgl.NV.BindVideoDeviceNV(nint, uint, nint, int*) - fullName: OpenTK.Graphics.Wgl.Wgl.NV.BindVideoDeviceNV(nint, uint, nint, int*) - type: Method - source: - id: BindVideoDeviceNV - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs - startLine: 350 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_NV_present_video] - - [entry point: wglBindVideoDeviceNV] - -
- example: [] - syntax: - content: public static int BindVideoDeviceNV(nint hDc, uint uVideoSlot, nint hVideoDevice, int* piAttribList) - parameters: - - id: hDc - type: System.IntPtr - - id: uVideoSlot - type: System.UInt32 - - id: hVideoDevice - type: System.IntPtr - - id: piAttribList - type: System.Int32* - return: - type: System.Int32 - content.vb: Public Shared Function BindVideoDeviceNV(hDc As IntPtr, uVideoSlot As UInteger, hVideoDevice As IntPtr, piAttribList As Integer*) As Integer - overload: OpenTK.Graphics.Wgl.Wgl.NV.BindVideoDeviceNV* - nameWithType.vb: Wgl.NV.BindVideoDeviceNV(IntPtr, UInteger, IntPtr, Integer*) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.BindVideoDeviceNV(System.IntPtr, UInteger, System.IntPtr, Integer*) - name.vb: BindVideoDeviceNV(IntPtr, UInteger, IntPtr, Integer*) -- uid: OpenTK.Graphics.Wgl.Wgl.NV.BindVideoImageNV_(System.IntPtr,System.IntPtr,OpenTK.Graphics.Wgl.VideoOutputBuffer) - commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.BindVideoImageNV_(System.IntPtr,System.IntPtr,OpenTK.Graphics.Wgl.VideoOutputBuffer) - id: BindVideoImageNV_(System.IntPtr,System.IntPtr,OpenTK.Graphics.Wgl.VideoOutputBuffer) - parent: OpenTK.Graphics.Wgl.Wgl.NV - langs: - - csharp - - vb - name: BindVideoImageNV_(nint, nint, VideoOutputBuffer) - nameWithType: Wgl.NV.BindVideoImageNV_(nint, nint, VideoOutputBuffer) - fullName: OpenTK.Graphics.Wgl.Wgl.NV.BindVideoImageNV_(nint, nint, OpenTK.Graphics.Wgl.VideoOutputBuffer) - type: Method - source: - id: BindVideoImageNV_ - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs - startLine: 353 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_NV_video_output] - - [entry point: wglBindVideoImageNV] - -
- example: [] - syntax: - content: public static int BindVideoImageNV_(nint hVideoDevice, nint hPbuffer, VideoOutputBuffer iVideoBuffer) - parameters: - - id: hVideoDevice - type: System.IntPtr - - id: hPbuffer - type: System.IntPtr - - id: iVideoBuffer - type: OpenTK.Graphics.Wgl.VideoOutputBuffer - return: - type: System.Int32 - content.vb: Public Shared Function BindVideoImageNV_(hVideoDevice As IntPtr, hPbuffer As IntPtr, iVideoBuffer As VideoOutputBuffer) As Integer - overload: OpenTK.Graphics.Wgl.Wgl.NV.BindVideoImageNV_* - nameWithType.vb: Wgl.NV.BindVideoImageNV_(IntPtr, IntPtr, VideoOutputBuffer) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.BindVideoImageNV_(System.IntPtr, System.IntPtr, OpenTK.Graphics.Wgl.VideoOutputBuffer) - name.vb: BindVideoImageNV_(IntPtr, IntPtr, VideoOutputBuffer) -- uid: OpenTK.Graphics.Wgl.Wgl.NV.CopyImageSubDataNV_(System.IntPtr,System.UInt32,OpenTK.Graphics.OpenGL.TextureTarget,System.Int32,System.Int32,System.Int32,System.Int32,System.IntPtr,System.UInt32,OpenTK.Graphics.OpenGL.TextureTarget,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32) - commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.CopyImageSubDataNV_(System.IntPtr,System.UInt32,OpenTK.Graphics.OpenGL.TextureTarget,System.Int32,System.Int32,System.Int32,System.Int32,System.IntPtr,System.UInt32,OpenTK.Graphics.OpenGL.TextureTarget,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32) - id: CopyImageSubDataNV_(System.IntPtr,System.UInt32,OpenTK.Graphics.OpenGL.TextureTarget,System.Int32,System.Int32,System.Int32,System.Int32,System.IntPtr,System.UInt32,OpenTK.Graphics.OpenGL.TextureTarget,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32) - parent: OpenTK.Graphics.Wgl.Wgl.NV - langs: - - csharp - - vb - name: CopyImageSubDataNV_(nint, uint, TextureTarget, int, int, int, int, nint, uint, TextureTarget, int, int, int, int, int, int, int) - nameWithType: Wgl.NV.CopyImageSubDataNV_(nint, uint, TextureTarget, int, int, int, int, nint, uint, TextureTarget, int, int, int, int, int, int, int) - fullName: OpenTK.Graphics.Wgl.Wgl.NV.CopyImageSubDataNV_(nint, uint, OpenTK.Graphics.OpenGL.TextureTarget, int, int, int, int, nint, uint, OpenTK.Graphics.OpenGL.TextureTarget, int, int, int, int, int, int, int) - type: Method - source: - id: CopyImageSubDataNV_ - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs - startLine: 356 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_NV_copy_image] - - [entry point: wglCopyImageSubDataNV] - -
- example: [] - syntax: - content: public static int CopyImageSubDataNV_(nint hSrcRC, uint srcName, TextureTarget srcTarget, int srcLevel, int srcX, int srcY, int srcZ, nint hDstRC, uint dstName, TextureTarget dstTarget, int dstLevel, int dstX, int dstY, int dstZ, int width, int height, int depth) - parameters: - - id: hSrcRC - type: System.IntPtr - - id: srcName - type: System.UInt32 - - id: srcTarget - type: OpenTK.Graphics.OpenGL.TextureTarget - - id: srcLevel - type: System.Int32 - - id: srcX - type: System.Int32 - - id: srcY - type: System.Int32 - - id: srcZ - type: System.Int32 - - id: hDstRC - type: System.IntPtr - - id: dstName - type: System.UInt32 - - id: dstTarget - type: OpenTK.Graphics.OpenGL.TextureTarget - - id: dstLevel - type: System.Int32 - - id: dstX - type: System.Int32 - - id: dstY - type: System.Int32 - - id: dstZ - type: System.Int32 - - id: width - type: System.Int32 - - id: height - type: System.Int32 - - id: depth - type: System.Int32 - return: - type: System.Int32 - content.vb: Public Shared Function CopyImageSubDataNV_(hSrcRC As IntPtr, srcName As UInteger, srcTarget As TextureTarget, srcLevel As Integer, srcX As Integer, srcY As Integer, srcZ As Integer, hDstRC As IntPtr, dstName As UInteger, dstTarget As TextureTarget, dstLevel As Integer, dstX As Integer, dstY As Integer, dstZ As Integer, width As Integer, height As Integer, depth As Integer) As Integer - overload: OpenTK.Graphics.Wgl.Wgl.NV.CopyImageSubDataNV_* - nameWithType.vb: Wgl.NV.CopyImageSubDataNV_(IntPtr, UInteger, TextureTarget, Integer, Integer, Integer, Integer, IntPtr, UInteger, TextureTarget, Integer, Integer, Integer, Integer, Integer, Integer, Integer) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.CopyImageSubDataNV_(System.IntPtr, UInteger, OpenTK.Graphics.OpenGL.TextureTarget, Integer, Integer, Integer, Integer, System.IntPtr, UInteger, OpenTK.Graphics.OpenGL.TextureTarget, Integer, Integer, Integer, Integer, Integer, Integer, Integer) - name.vb: CopyImageSubDataNV_(IntPtr, UInteger, TextureTarget, Integer, Integer, Integer, Integer, IntPtr, UInteger, TextureTarget, Integer, Integer, Integer, Integer, Integer, Integer, Integer) -- uid: OpenTK.Graphics.Wgl.Wgl.NV.CreateAffinityDCNV(System.IntPtr*) - commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.CreateAffinityDCNV(System.IntPtr*) - id: CreateAffinityDCNV(System.IntPtr*) - parent: OpenTK.Graphics.Wgl.Wgl.NV - langs: - - csharp - - vb - name: CreateAffinityDCNV(nint*) - nameWithType: Wgl.NV.CreateAffinityDCNV(nint*) - fullName: OpenTK.Graphics.Wgl.Wgl.NV.CreateAffinityDCNV(nint*) - type: Method - source: - id: CreateAffinityDCNV - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs - startLine: 359 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_NV_gpu_affinity] - - [entry point: wglCreateAffinityDCNV] - -
- example: [] - syntax: - content: public static nint CreateAffinityDCNV(nint* phGpuList) - parameters: - - id: phGpuList - type: System.IntPtr* - return: - type: System.IntPtr - content.vb: Public Shared Function CreateAffinityDCNV(phGpuList As IntPtr*) As IntPtr - overload: OpenTK.Graphics.Wgl.Wgl.NV.CreateAffinityDCNV* - nameWithType.vb: Wgl.NV.CreateAffinityDCNV(IntPtr*) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.CreateAffinityDCNV(System.IntPtr*) - name.vb: CreateAffinityDCNV(IntPtr*) -- uid: OpenTK.Graphics.Wgl.Wgl.NV.DelayBeforeSwapNV_(System.IntPtr,System.Single) - commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.DelayBeforeSwapNV_(System.IntPtr,System.Single) - id: DelayBeforeSwapNV_(System.IntPtr,System.Single) - parent: OpenTK.Graphics.Wgl.Wgl.NV - langs: - - csharp - - vb - name: DelayBeforeSwapNV_(nint, float) - nameWithType: Wgl.NV.DelayBeforeSwapNV_(nint, float) - fullName: OpenTK.Graphics.Wgl.Wgl.NV.DelayBeforeSwapNV_(nint, float) - type: Method - source: - id: DelayBeforeSwapNV_ - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs - startLine: 362 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_NV_delay_before_swap] - - [entry point: wglDelayBeforeSwapNV] - -
- example: [] - syntax: - content: public static int DelayBeforeSwapNV_(nint hDC, float seconds) - parameters: - - id: hDC - type: System.IntPtr - - id: seconds - type: System.Single - return: - type: System.Int32 - content.vb: Public Shared Function DelayBeforeSwapNV_(hDC As IntPtr, seconds As Single) As Integer - overload: OpenTK.Graphics.Wgl.Wgl.NV.DelayBeforeSwapNV_* - nameWithType.vb: Wgl.NV.DelayBeforeSwapNV_(IntPtr, Single) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.DelayBeforeSwapNV_(System.IntPtr, Single) - name.vb: DelayBeforeSwapNV_(IntPtr, Single) -- uid: OpenTK.Graphics.Wgl.Wgl.NV.DeleteDCNV_(System.IntPtr) - commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.DeleteDCNV_(System.IntPtr) - id: DeleteDCNV_(System.IntPtr) - parent: OpenTK.Graphics.Wgl.Wgl.NV - langs: - - csharp - - vb - name: DeleteDCNV_(nint) - nameWithType: Wgl.NV.DeleteDCNV_(nint) - fullName: OpenTK.Graphics.Wgl.Wgl.NV.DeleteDCNV_(nint) - type: Method - source: - id: DeleteDCNV_ - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs - startLine: 365 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_NV_gpu_affinity] - - [entry point: wglDeleteDCNV] - -
- example: [] - syntax: - content: public static int DeleteDCNV_(nint hdc) - parameters: - - id: hdc - type: System.IntPtr - return: - type: System.Int32 - content.vb: Public Shared Function DeleteDCNV_(hdc As IntPtr) As Integer - overload: OpenTK.Graphics.Wgl.Wgl.NV.DeleteDCNV_* - nameWithType.vb: Wgl.NV.DeleteDCNV_(IntPtr) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.DeleteDCNV_(System.IntPtr) - name.vb: DeleteDCNV_(IntPtr) -- uid: OpenTK.Graphics.Wgl.Wgl.NV.DXCloseDeviceNV_(System.IntPtr) - commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.DXCloseDeviceNV_(System.IntPtr) - id: DXCloseDeviceNV_(System.IntPtr) - parent: OpenTK.Graphics.Wgl.Wgl.NV - langs: - - csharp - - vb - name: DXCloseDeviceNV_(nint) - nameWithType: Wgl.NV.DXCloseDeviceNV_(nint) - fullName: OpenTK.Graphics.Wgl.Wgl.NV.DXCloseDeviceNV_(nint) - type: Method - source: - id: DXCloseDeviceNV_ - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs - startLine: 368 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_NV_DX_interop] - - [entry point: wglDXCloseDeviceNV] - -
- example: [] - syntax: - content: public static int DXCloseDeviceNV_(nint hDevice) - parameters: - - id: hDevice - type: System.IntPtr - return: - type: System.Int32 - content.vb: Public Shared Function DXCloseDeviceNV_(hDevice As IntPtr) As Integer - overload: OpenTK.Graphics.Wgl.Wgl.NV.DXCloseDeviceNV_* - nameWithType.vb: Wgl.NV.DXCloseDeviceNV_(IntPtr) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.DXCloseDeviceNV_(System.IntPtr) - name.vb: DXCloseDeviceNV_(IntPtr) -- uid: OpenTK.Graphics.Wgl.Wgl.NV.DXLockObjectsNV(System.IntPtr,System.Int32,System.IntPtr*) - commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.DXLockObjectsNV(System.IntPtr,System.Int32,System.IntPtr*) - id: DXLockObjectsNV(System.IntPtr,System.Int32,System.IntPtr*) - parent: OpenTK.Graphics.Wgl.Wgl.NV - langs: - - csharp - - vb - name: DXLockObjectsNV(nint, int, nint*) - nameWithType: Wgl.NV.DXLockObjectsNV(nint, int, nint*) - fullName: OpenTK.Graphics.Wgl.Wgl.NV.DXLockObjectsNV(nint, int, nint*) - type: Method - source: - id: DXLockObjectsNV - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs - startLine: 371 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_NV_DX_interop] - - [entry point: wglDXLockObjectsNV] - -
- example: [] - syntax: - content: public static int DXLockObjectsNV(nint hDevice, int count, nint* hObjects) - parameters: - - id: hDevice - type: System.IntPtr - - id: count - type: System.Int32 - - id: hObjects - type: System.IntPtr* - return: - type: System.Int32 - content.vb: Public Shared Function DXLockObjectsNV(hDevice As IntPtr, count As Integer, hObjects As IntPtr*) As Integer - overload: OpenTK.Graphics.Wgl.Wgl.NV.DXLockObjectsNV* - nameWithType.vb: Wgl.NV.DXLockObjectsNV(IntPtr, Integer, IntPtr*) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.DXLockObjectsNV(System.IntPtr, Integer, System.IntPtr*) - name.vb: DXLockObjectsNV(IntPtr, Integer, IntPtr*) -- uid: OpenTK.Graphics.Wgl.Wgl.NV.DXObjectAccessNV_(System.IntPtr,OpenTK.Graphics.Wgl.DXInteropMaskNV) - commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.DXObjectAccessNV_(System.IntPtr,OpenTK.Graphics.Wgl.DXInteropMaskNV) - id: DXObjectAccessNV_(System.IntPtr,OpenTK.Graphics.Wgl.DXInteropMaskNV) - parent: OpenTK.Graphics.Wgl.Wgl.NV - langs: - - csharp - - vb - name: DXObjectAccessNV_(nint, DXInteropMaskNV) - nameWithType: Wgl.NV.DXObjectAccessNV_(nint, DXInteropMaskNV) - fullName: OpenTK.Graphics.Wgl.Wgl.NV.DXObjectAccessNV_(nint, OpenTK.Graphics.Wgl.DXInteropMaskNV) - type: Method - source: - id: DXObjectAccessNV_ - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs - startLine: 374 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_NV_DX_interop] - - [entry point: wglDXObjectAccessNV] - -
- example: [] - syntax: - content: public static int DXObjectAccessNV_(nint hObject, DXInteropMaskNV access) - parameters: - - id: hObject - type: System.IntPtr - - id: access - type: OpenTK.Graphics.Wgl.DXInteropMaskNV - return: - type: System.Int32 - content.vb: Public Shared Function DXObjectAccessNV_(hObject As IntPtr, access As DXInteropMaskNV) As Integer - overload: OpenTK.Graphics.Wgl.Wgl.NV.DXObjectAccessNV_* - nameWithType.vb: Wgl.NV.DXObjectAccessNV_(IntPtr, DXInteropMaskNV) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.DXObjectAccessNV_(System.IntPtr, OpenTK.Graphics.Wgl.DXInteropMaskNV) - name.vb: DXObjectAccessNV_(IntPtr, DXInteropMaskNV) -- uid: OpenTK.Graphics.Wgl.Wgl.NV.DXOpenDeviceNV(System.Void*) - commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.DXOpenDeviceNV(System.Void*) - id: DXOpenDeviceNV(System.Void*) - parent: OpenTK.Graphics.Wgl.Wgl.NV - langs: - - csharp - - vb - name: DXOpenDeviceNV(void*) - nameWithType: Wgl.NV.DXOpenDeviceNV(void*) - fullName: OpenTK.Graphics.Wgl.Wgl.NV.DXOpenDeviceNV(void*) - type: Method - source: - id: DXOpenDeviceNV - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs - startLine: 377 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_NV_DX_interop] - - [entry point: wglDXOpenDeviceNV] - -
- example: [] - syntax: - content: public static nint DXOpenDeviceNV(void* dxDevice) - parameters: - - id: dxDevice - type: System.Void* - return: - type: System.IntPtr - content.vb: Public Shared Function DXOpenDeviceNV(dxDevice As Void*) As IntPtr - overload: OpenTK.Graphics.Wgl.Wgl.NV.DXOpenDeviceNV* - nameWithType.vb: Wgl.NV.DXOpenDeviceNV(Void*) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.DXOpenDeviceNV(Void*) - name.vb: DXOpenDeviceNV(Void*) -- uid: OpenTK.Graphics.Wgl.Wgl.NV.DXRegisterObjectNV(System.IntPtr,System.Void*,System.UInt32,OpenTK.Graphics.Wgl.ObjectTypeDX,OpenTK.Graphics.Wgl.DXInteropMaskNV) - commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.DXRegisterObjectNV(System.IntPtr,System.Void*,System.UInt32,OpenTK.Graphics.Wgl.ObjectTypeDX,OpenTK.Graphics.Wgl.DXInteropMaskNV) - id: DXRegisterObjectNV(System.IntPtr,System.Void*,System.UInt32,OpenTK.Graphics.Wgl.ObjectTypeDX,OpenTK.Graphics.Wgl.DXInteropMaskNV) - parent: OpenTK.Graphics.Wgl.Wgl.NV - langs: - - csharp - - vb - name: DXRegisterObjectNV(nint, void*, uint, ObjectTypeDX, DXInteropMaskNV) - nameWithType: Wgl.NV.DXRegisterObjectNV(nint, void*, uint, ObjectTypeDX, DXInteropMaskNV) - fullName: OpenTK.Graphics.Wgl.Wgl.NV.DXRegisterObjectNV(nint, void*, uint, OpenTK.Graphics.Wgl.ObjectTypeDX, OpenTK.Graphics.Wgl.DXInteropMaskNV) - type: Method - source: - id: DXRegisterObjectNV - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs - startLine: 380 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_NV_DX_interop] - - [entry point: wglDXRegisterObjectNV] - -
- example: [] - syntax: - content: public static nint DXRegisterObjectNV(nint hDevice, void* dxObject, uint name, ObjectTypeDX type, DXInteropMaskNV access) - parameters: - - id: hDevice - type: System.IntPtr - - id: dxObject - type: System.Void* - - id: name - type: System.UInt32 - - id: type - type: OpenTK.Graphics.Wgl.ObjectTypeDX - - id: access - type: OpenTK.Graphics.Wgl.DXInteropMaskNV - return: - type: System.IntPtr - content.vb: Public Shared Function DXRegisterObjectNV(hDevice As IntPtr, dxObject As Void*, name As UInteger, type As ObjectTypeDX, access As DXInteropMaskNV) As IntPtr - overload: OpenTK.Graphics.Wgl.Wgl.NV.DXRegisterObjectNV* - nameWithType.vb: Wgl.NV.DXRegisterObjectNV(IntPtr, Void*, UInteger, ObjectTypeDX, DXInteropMaskNV) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.DXRegisterObjectNV(System.IntPtr, Void*, UInteger, OpenTK.Graphics.Wgl.ObjectTypeDX, OpenTK.Graphics.Wgl.DXInteropMaskNV) - name.vb: DXRegisterObjectNV(IntPtr, Void*, UInteger, ObjectTypeDX, DXInteropMaskNV) -- uid: OpenTK.Graphics.Wgl.Wgl.NV.DXSetResourceShareHandleNV(System.Void*,System.IntPtr) - commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.DXSetResourceShareHandleNV(System.Void*,System.IntPtr) - id: DXSetResourceShareHandleNV(System.Void*,System.IntPtr) - parent: OpenTK.Graphics.Wgl.Wgl.NV - langs: - - csharp - - vb - name: DXSetResourceShareHandleNV(void*, nint) - nameWithType: Wgl.NV.DXSetResourceShareHandleNV(void*, nint) - fullName: OpenTK.Graphics.Wgl.Wgl.NV.DXSetResourceShareHandleNV(void*, nint) - type: Method - source: - id: DXSetResourceShareHandleNV - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs - startLine: 383 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_NV_DX_interop] - - [entry point: wglDXSetResourceShareHandleNV] - -
- example: [] - syntax: - content: public static int DXSetResourceShareHandleNV(void* dxObject, nint shareHandle) - parameters: - - id: dxObject - type: System.Void* - - id: shareHandle - type: System.IntPtr - return: - type: System.Int32 - content.vb: Public Shared Function DXSetResourceShareHandleNV(dxObject As Void*, shareHandle As IntPtr) As Integer - overload: OpenTK.Graphics.Wgl.Wgl.NV.DXSetResourceShareHandleNV* - nameWithType.vb: Wgl.NV.DXSetResourceShareHandleNV(Void*, IntPtr) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.DXSetResourceShareHandleNV(Void*, System.IntPtr) - name.vb: DXSetResourceShareHandleNV(Void*, IntPtr) -- uid: OpenTK.Graphics.Wgl.Wgl.NV.DXUnlockObjectsNV(System.IntPtr,System.Int32,System.IntPtr*) - commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.DXUnlockObjectsNV(System.IntPtr,System.Int32,System.IntPtr*) - id: DXUnlockObjectsNV(System.IntPtr,System.Int32,System.IntPtr*) - parent: OpenTK.Graphics.Wgl.Wgl.NV - langs: - - csharp - - vb - name: DXUnlockObjectsNV(nint, int, nint*) - nameWithType: Wgl.NV.DXUnlockObjectsNV(nint, int, nint*) - fullName: OpenTK.Graphics.Wgl.Wgl.NV.DXUnlockObjectsNV(nint, int, nint*) - type: Method - source: - id: DXUnlockObjectsNV - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs - startLine: 386 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_NV_DX_interop] - - [entry point: wglDXUnlockObjectsNV] - -
- example: [] - syntax: - content: public static int DXUnlockObjectsNV(nint hDevice, int count, nint* hObjects) - parameters: - - id: hDevice - type: System.IntPtr - - id: count - type: System.Int32 - - id: hObjects - type: System.IntPtr* - return: - type: System.Int32 - content.vb: Public Shared Function DXUnlockObjectsNV(hDevice As IntPtr, count As Integer, hObjects As IntPtr*) As Integer - overload: OpenTK.Graphics.Wgl.Wgl.NV.DXUnlockObjectsNV* - nameWithType.vb: Wgl.NV.DXUnlockObjectsNV(IntPtr, Integer, IntPtr*) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.DXUnlockObjectsNV(System.IntPtr, Integer, System.IntPtr*) - name.vb: DXUnlockObjectsNV(IntPtr, Integer, IntPtr*) -- uid: OpenTK.Graphics.Wgl.Wgl.NV.DXUnregisterObjectNV_(System.IntPtr,System.IntPtr) - commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.DXUnregisterObjectNV_(System.IntPtr,System.IntPtr) - id: DXUnregisterObjectNV_(System.IntPtr,System.IntPtr) - parent: OpenTK.Graphics.Wgl.Wgl.NV - langs: - - csharp - - vb - name: DXUnregisterObjectNV_(nint, nint) - nameWithType: Wgl.NV.DXUnregisterObjectNV_(nint, nint) - fullName: OpenTK.Graphics.Wgl.Wgl.NV.DXUnregisterObjectNV_(nint, nint) - type: Method - source: - id: DXUnregisterObjectNV_ - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs - startLine: 389 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_NV_DX_interop] - - [entry point: wglDXUnregisterObjectNV] - -
- example: [] - syntax: - content: public static int DXUnregisterObjectNV_(nint hDevice, nint hObject) - parameters: - - id: hDevice - type: System.IntPtr - - id: hObject - type: System.IntPtr - return: - type: System.Int32 - content.vb: Public Shared Function DXUnregisterObjectNV_(hDevice As IntPtr, hObject As IntPtr) As Integer - overload: OpenTK.Graphics.Wgl.Wgl.NV.DXUnregisterObjectNV_* - nameWithType.vb: Wgl.NV.DXUnregisterObjectNV_(IntPtr, IntPtr) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.DXUnregisterObjectNV_(System.IntPtr, System.IntPtr) - name.vb: DXUnregisterObjectNV_(IntPtr, IntPtr) -- uid: OpenTK.Graphics.Wgl.Wgl.NV.EnumerateVideoCaptureDevicesNV(System.IntPtr,System.IntPtr*) - commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.EnumerateVideoCaptureDevicesNV(System.IntPtr,System.IntPtr*) - id: EnumerateVideoCaptureDevicesNV(System.IntPtr,System.IntPtr*) - parent: OpenTK.Graphics.Wgl.Wgl.NV - langs: - - csharp - - vb - name: EnumerateVideoCaptureDevicesNV(nint, nint*) - nameWithType: Wgl.NV.EnumerateVideoCaptureDevicesNV(nint, nint*) - fullName: OpenTK.Graphics.Wgl.Wgl.NV.EnumerateVideoCaptureDevicesNV(nint, nint*) - type: Method - source: - id: EnumerateVideoCaptureDevicesNV - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs - startLine: 392 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_NV_video_capture] - - [entry point: wglEnumerateVideoCaptureDevicesNV] - -
- example: [] - syntax: - content: public static uint EnumerateVideoCaptureDevicesNV(nint hDc, nint* phDeviceList) - parameters: - - id: hDc - type: System.IntPtr - - id: phDeviceList - type: System.IntPtr* - return: - type: System.UInt32 - content.vb: Public Shared Function EnumerateVideoCaptureDevicesNV(hDc As IntPtr, phDeviceList As IntPtr*) As UInteger - overload: OpenTK.Graphics.Wgl.Wgl.NV.EnumerateVideoCaptureDevicesNV* - nameWithType.vb: Wgl.NV.EnumerateVideoCaptureDevicesNV(IntPtr, IntPtr*) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.EnumerateVideoCaptureDevicesNV(System.IntPtr, System.IntPtr*) - name.vb: EnumerateVideoCaptureDevicesNV(IntPtr, IntPtr*) -- uid: OpenTK.Graphics.Wgl.Wgl.NV.EnumerateVideoDevicesNV(System.IntPtr,System.IntPtr*) - commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.EnumerateVideoDevicesNV(System.IntPtr,System.IntPtr*) - id: EnumerateVideoDevicesNV(System.IntPtr,System.IntPtr*) - parent: OpenTK.Graphics.Wgl.Wgl.NV - langs: - - csharp - - vb - name: EnumerateVideoDevicesNV(nint, nint*) - nameWithType: Wgl.NV.EnumerateVideoDevicesNV(nint, nint*) - fullName: OpenTK.Graphics.Wgl.Wgl.NV.EnumerateVideoDevicesNV(nint, nint*) - type: Method - source: - id: EnumerateVideoDevicesNV - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs - startLine: 395 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_NV_present_video] - - [entry point: wglEnumerateVideoDevicesNV] - -
- example: [] - syntax: - content: public static int EnumerateVideoDevicesNV(nint hDc, nint* phDeviceList) - parameters: - - id: hDc - type: System.IntPtr - - id: phDeviceList - type: System.IntPtr* - return: - type: System.Int32 - content.vb: Public Shared Function EnumerateVideoDevicesNV(hDc As IntPtr, phDeviceList As IntPtr*) As Integer - overload: OpenTK.Graphics.Wgl.Wgl.NV.EnumerateVideoDevicesNV* - nameWithType.vb: Wgl.NV.EnumerateVideoDevicesNV(IntPtr, IntPtr*) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.EnumerateVideoDevicesNV(System.IntPtr, System.IntPtr*) - name.vb: EnumerateVideoDevicesNV(IntPtr, IntPtr*) -- uid: OpenTK.Graphics.Wgl.Wgl.NV.EnumGpuDevicesNV(System.IntPtr,System.UInt32,OpenTK.Graphics.Wgl._GPU_DEVICE*) - commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.EnumGpuDevicesNV(System.IntPtr,System.UInt32,OpenTK.Graphics.Wgl._GPU_DEVICE*) - id: EnumGpuDevicesNV(System.IntPtr,System.UInt32,OpenTK.Graphics.Wgl._GPU_DEVICE*) - parent: OpenTK.Graphics.Wgl.Wgl.NV - langs: - - csharp - - vb - name: EnumGpuDevicesNV(nint, uint, _GPU_DEVICE*) - nameWithType: Wgl.NV.EnumGpuDevicesNV(nint, uint, _GPU_DEVICE*) - fullName: OpenTK.Graphics.Wgl.Wgl.NV.EnumGpuDevicesNV(nint, uint, OpenTK.Graphics.Wgl._GPU_DEVICE*) - type: Method - source: - id: EnumGpuDevicesNV - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs - startLine: 398 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_NV_gpu_affinity] - - [entry point: wglEnumGpuDevicesNV] - -
- example: [] - syntax: - content: public static int EnumGpuDevicesNV(nint hGpu, uint iDeviceIndex, _GPU_DEVICE* lpGpuDevice) - parameters: - - id: hGpu - type: System.IntPtr - - id: iDeviceIndex - type: System.UInt32 - - id: lpGpuDevice - type: OpenTK.Graphics.Wgl._GPU_DEVICE* - return: - type: System.Int32 - content.vb: Public Shared Function EnumGpuDevicesNV(hGpu As IntPtr, iDeviceIndex As UInteger, lpGpuDevice As _GPU_DEVICE*) As Integer - overload: OpenTK.Graphics.Wgl.Wgl.NV.EnumGpuDevicesNV* - nameWithType.vb: Wgl.NV.EnumGpuDevicesNV(IntPtr, UInteger, _GPU_DEVICE*) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.EnumGpuDevicesNV(System.IntPtr, UInteger, OpenTK.Graphics.Wgl._GPU_DEVICE*) - name.vb: EnumGpuDevicesNV(IntPtr, UInteger, _GPU_DEVICE*) -- uid: OpenTK.Graphics.Wgl.Wgl.NV.EnumGpusFromAffinityDCNV(System.IntPtr,System.UInt32,System.IntPtr*) - commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.EnumGpusFromAffinityDCNV(System.IntPtr,System.UInt32,System.IntPtr*) - id: EnumGpusFromAffinityDCNV(System.IntPtr,System.UInt32,System.IntPtr*) - parent: OpenTK.Graphics.Wgl.Wgl.NV - langs: - - csharp - - vb - name: EnumGpusFromAffinityDCNV(nint, uint, nint*) - nameWithType: Wgl.NV.EnumGpusFromAffinityDCNV(nint, uint, nint*) - fullName: OpenTK.Graphics.Wgl.Wgl.NV.EnumGpusFromAffinityDCNV(nint, uint, nint*) - type: Method - source: - id: EnumGpusFromAffinityDCNV - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs - startLine: 401 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_NV_gpu_affinity] - - [entry point: wglEnumGpusFromAffinityDCNV] - -
- example: [] - syntax: - content: public static int EnumGpusFromAffinityDCNV(nint hAffinityDC, uint iGpuIndex, nint* hGpu) - parameters: - - id: hAffinityDC - type: System.IntPtr - - id: iGpuIndex - type: System.UInt32 - - id: hGpu - type: System.IntPtr* - return: - type: System.Int32 - content.vb: Public Shared Function EnumGpusFromAffinityDCNV(hAffinityDC As IntPtr, iGpuIndex As UInteger, hGpu As IntPtr*) As Integer - overload: OpenTK.Graphics.Wgl.Wgl.NV.EnumGpusFromAffinityDCNV* - nameWithType.vb: Wgl.NV.EnumGpusFromAffinityDCNV(IntPtr, UInteger, IntPtr*) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.EnumGpusFromAffinityDCNV(System.IntPtr, UInteger, System.IntPtr*) - name.vb: EnumGpusFromAffinityDCNV(IntPtr, UInteger, IntPtr*) -- uid: OpenTK.Graphics.Wgl.Wgl.NV.EnumGpusNV(System.UInt32,System.IntPtr*) - commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.EnumGpusNV(System.UInt32,System.IntPtr*) - id: EnumGpusNV(System.UInt32,System.IntPtr*) - parent: OpenTK.Graphics.Wgl.Wgl.NV - langs: - - csharp - - vb - name: EnumGpusNV(uint, nint*) - nameWithType: Wgl.NV.EnumGpusNV(uint, nint*) - fullName: OpenTK.Graphics.Wgl.Wgl.NV.EnumGpusNV(uint, nint*) - type: Method - source: - id: EnumGpusNV - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs - startLine: 404 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_NV_gpu_affinity] - - [entry point: wglEnumGpusNV] - -
- example: [] - syntax: - content: public static int EnumGpusNV(uint iGpuIndex, nint* phGpu) - parameters: - - id: iGpuIndex - type: System.UInt32 - - id: phGpu - type: System.IntPtr* - return: - type: System.Int32 - content.vb: Public Shared Function EnumGpusNV(iGpuIndex As UInteger, phGpu As IntPtr*) As Integer - overload: OpenTK.Graphics.Wgl.Wgl.NV.EnumGpusNV* - nameWithType.vb: Wgl.NV.EnumGpusNV(UInteger, IntPtr*) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.EnumGpusNV(UInteger, System.IntPtr*) - name.vb: EnumGpusNV(UInteger, IntPtr*) -- uid: OpenTK.Graphics.Wgl.Wgl.NV.FreeMemoryNV(System.Void*) - commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.FreeMemoryNV(System.Void*) - id: FreeMemoryNV(System.Void*) - parent: OpenTK.Graphics.Wgl.Wgl.NV - langs: - - csharp - - vb - name: FreeMemoryNV(void*) - nameWithType: Wgl.NV.FreeMemoryNV(void*) - fullName: OpenTK.Graphics.Wgl.Wgl.NV.FreeMemoryNV(void*) - type: Method - source: - id: FreeMemoryNV - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs - startLine: 407 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_NV_vertex_array_range] - - [entry point: wglFreeMemoryNV] - -
- example: [] - syntax: - content: public static void FreeMemoryNV(void* pointer) - parameters: - - id: pointer - type: System.Void* - content.vb: Public Shared Sub FreeMemoryNV(pointer As Void*) - overload: OpenTK.Graphics.Wgl.Wgl.NV.FreeMemoryNV* - nameWithType.vb: Wgl.NV.FreeMemoryNV(Void*) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.FreeMemoryNV(Void*) - name.vb: FreeMemoryNV(Void*) -- uid: OpenTK.Graphics.Wgl.Wgl.NV.GetVideoDeviceNV(System.IntPtr,System.Int32,System.IntPtr*) - commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.GetVideoDeviceNV(System.IntPtr,System.Int32,System.IntPtr*) - id: GetVideoDeviceNV(System.IntPtr,System.Int32,System.IntPtr*) - parent: OpenTK.Graphics.Wgl.Wgl.NV - langs: - - csharp - - vb - name: GetVideoDeviceNV(nint, int, nint*) - nameWithType: Wgl.NV.GetVideoDeviceNV(nint, int, nint*) - fullName: OpenTK.Graphics.Wgl.Wgl.NV.GetVideoDeviceNV(nint, int, nint*) - type: Method - source: - id: GetVideoDeviceNV - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs - startLine: 410 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_NV_video_output] - - [entry point: wglGetVideoDeviceNV] - -
- example: [] - syntax: - content: public static int GetVideoDeviceNV(nint hDC, int numDevices, nint* hVideoDevice) - parameters: - - id: hDC - type: System.IntPtr - - id: numDevices - type: System.Int32 - - id: hVideoDevice - type: System.IntPtr* - return: - type: System.Int32 - content.vb: Public Shared Function GetVideoDeviceNV(hDC As IntPtr, numDevices As Integer, hVideoDevice As IntPtr*) As Integer - overload: OpenTK.Graphics.Wgl.Wgl.NV.GetVideoDeviceNV* - nameWithType.vb: Wgl.NV.GetVideoDeviceNV(IntPtr, Integer, IntPtr*) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.GetVideoDeviceNV(System.IntPtr, Integer, System.IntPtr*) - name.vb: GetVideoDeviceNV(IntPtr, Integer, IntPtr*) -- uid: OpenTK.Graphics.Wgl.Wgl.NV.GetVideoInfoNV(System.IntPtr,System.UInt64*,System.UInt64*) - commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.GetVideoInfoNV(System.IntPtr,System.UInt64*,System.UInt64*) - id: GetVideoInfoNV(System.IntPtr,System.UInt64*,System.UInt64*) - parent: OpenTK.Graphics.Wgl.Wgl.NV - langs: - - csharp - - vb - name: GetVideoInfoNV(nint, ulong*, ulong*) - nameWithType: Wgl.NV.GetVideoInfoNV(nint, ulong*, ulong*) - fullName: OpenTK.Graphics.Wgl.Wgl.NV.GetVideoInfoNV(nint, ulong*, ulong*) - type: Method - source: - id: GetVideoInfoNV - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs - startLine: 413 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_NV_video_output] - - [entry point: wglGetVideoInfoNV] - -
- example: [] - syntax: - content: public static int GetVideoInfoNV(nint hpVideoDevice, ulong* pulCounterOutputPbuffer, ulong* pulCounterOutputVideo) - parameters: - - id: hpVideoDevice - type: System.IntPtr - - id: pulCounterOutputPbuffer - type: System.UInt64* - - id: pulCounterOutputVideo - type: System.UInt64* - return: - type: System.Int32 - content.vb: Public Shared Function GetVideoInfoNV(hpVideoDevice As IntPtr, pulCounterOutputPbuffer As ULong*, pulCounterOutputVideo As ULong*) As Integer - overload: OpenTK.Graphics.Wgl.Wgl.NV.GetVideoInfoNV* - nameWithType.vb: Wgl.NV.GetVideoInfoNV(IntPtr, ULong*, ULong*) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.GetVideoInfoNV(System.IntPtr, ULong*, ULong*) - name.vb: GetVideoInfoNV(IntPtr, ULong*, ULong*) -- uid: OpenTK.Graphics.Wgl.Wgl.NV.JoinSwapGroupNV_(System.IntPtr,System.UInt32) - commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.JoinSwapGroupNV_(System.IntPtr,System.UInt32) - id: JoinSwapGroupNV_(System.IntPtr,System.UInt32) - parent: OpenTK.Graphics.Wgl.Wgl.NV - langs: - - csharp - - vb - name: JoinSwapGroupNV_(nint, uint) - nameWithType: Wgl.NV.JoinSwapGroupNV_(nint, uint) - fullName: OpenTK.Graphics.Wgl.Wgl.NV.JoinSwapGroupNV_(nint, uint) - type: Method - source: - id: JoinSwapGroupNV_ - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs - startLine: 416 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_NV_swap_group] - - [entry point: wglJoinSwapGroupNV] - -
- example: [] - syntax: - content: public static int JoinSwapGroupNV_(nint hDC, uint group) - parameters: - - id: hDC - type: System.IntPtr - - id: group - type: System.UInt32 - return: - type: System.Int32 - content.vb: Public Shared Function JoinSwapGroupNV_(hDC As IntPtr, group As UInteger) As Integer - overload: OpenTK.Graphics.Wgl.Wgl.NV.JoinSwapGroupNV_* - nameWithType.vb: Wgl.NV.JoinSwapGroupNV_(IntPtr, UInteger) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.JoinSwapGroupNV_(System.IntPtr, UInteger) - name.vb: JoinSwapGroupNV_(IntPtr, UInteger) -- uid: OpenTK.Graphics.Wgl.Wgl.NV.LockVideoCaptureDeviceNV_(System.IntPtr,System.IntPtr) - commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.LockVideoCaptureDeviceNV_(System.IntPtr,System.IntPtr) - id: LockVideoCaptureDeviceNV_(System.IntPtr,System.IntPtr) - parent: OpenTK.Graphics.Wgl.Wgl.NV - langs: - - csharp - - vb - name: LockVideoCaptureDeviceNV_(nint, nint) - nameWithType: Wgl.NV.LockVideoCaptureDeviceNV_(nint, nint) - fullName: OpenTK.Graphics.Wgl.Wgl.NV.LockVideoCaptureDeviceNV_(nint, nint) - type: Method - source: - id: LockVideoCaptureDeviceNV_ - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs - startLine: 419 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_NV_video_capture] - - [entry point: wglLockVideoCaptureDeviceNV] - -
- example: [] - syntax: - content: public static int LockVideoCaptureDeviceNV_(nint hDc, nint hDevice) - parameters: - - id: hDc - type: System.IntPtr - - id: hDevice - type: System.IntPtr - return: - type: System.Int32 - content.vb: Public Shared Function LockVideoCaptureDeviceNV_(hDc As IntPtr, hDevice As IntPtr) As Integer - overload: OpenTK.Graphics.Wgl.Wgl.NV.LockVideoCaptureDeviceNV_* - nameWithType.vb: Wgl.NV.LockVideoCaptureDeviceNV_(IntPtr, IntPtr) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.LockVideoCaptureDeviceNV_(System.IntPtr, System.IntPtr) - name.vb: LockVideoCaptureDeviceNV_(IntPtr, IntPtr) -- uid: OpenTK.Graphics.Wgl.Wgl.NV.QueryCurrentContextNV(OpenTK.Graphics.Wgl.ContextAttribute,System.Int32*) - commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.QueryCurrentContextNV(OpenTK.Graphics.Wgl.ContextAttribute,System.Int32*) - id: QueryCurrentContextNV(OpenTK.Graphics.Wgl.ContextAttribute,System.Int32*) - parent: OpenTK.Graphics.Wgl.Wgl.NV - langs: - - csharp - - vb - name: QueryCurrentContextNV(ContextAttribute, int*) - nameWithType: Wgl.NV.QueryCurrentContextNV(ContextAttribute, int*) - fullName: OpenTK.Graphics.Wgl.Wgl.NV.QueryCurrentContextNV(OpenTK.Graphics.Wgl.ContextAttribute, int*) - type: Method - source: - id: QueryCurrentContextNV - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs - startLine: 422 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_NV_present_video] - - [entry point: wglQueryCurrentContextNV] - -
- example: [] - syntax: - content: public static int QueryCurrentContextNV(ContextAttribute iAttribute, int* piValue) - parameters: - - id: iAttribute - type: OpenTK.Graphics.Wgl.ContextAttribute - - id: piValue - type: System.Int32* - return: - type: System.Int32 - content.vb: Public Shared Function QueryCurrentContextNV(iAttribute As ContextAttribute, piValue As Integer*) As Integer - overload: OpenTK.Graphics.Wgl.Wgl.NV.QueryCurrentContextNV* - nameWithType.vb: Wgl.NV.QueryCurrentContextNV(ContextAttribute, Integer*) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.QueryCurrentContextNV(OpenTK.Graphics.Wgl.ContextAttribute, Integer*) - name.vb: QueryCurrentContextNV(ContextAttribute, Integer*) -- uid: OpenTK.Graphics.Wgl.Wgl.NV.QueryFrameCountNV(System.IntPtr,System.UInt32*) - commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.QueryFrameCountNV(System.IntPtr,System.UInt32*) - id: QueryFrameCountNV(System.IntPtr,System.UInt32*) - parent: OpenTK.Graphics.Wgl.Wgl.NV - langs: - - csharp - - vb - name: QueryFrameCountNV(nint, uint*) - nameWithType: Wgl.NV.QueryFrameCountNV(nint, uint*) - fullName: OpenTK.Graphics.Wgl.Wgl.NV.QueryFrameCountNV(nint, uint*) - type: Method - source: - id: QueryFrameCountNV - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs - startLine: 425 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_NV_swap_group] - - [entry point: wglQueryFrameCountNV] - -
- example: [] - syntax: - content: public static int QueryFrameCountNV(nint hDC, uint* count) - parameters: - - id: hDC - type: System.IntPtr - - id: count - type: System.UInt32* - return: - type: System.Int32 - content.vb: Public Shared Function QueryFrameCountNV(hDC As IntPtr, count As UInteger*) As Integer - overload: OpenTK.Graphics.Wgl.Wgl.NV.QueryFrameCountNV* - nameWithType.vb: Wgl.NV.QueryFrameCountNV(IntPtr, UInteger*) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.QueryFrameCountNV(System.IntPtr, UInteger*) - name.vb: QueryFrameCountNV(IntPtr, UInteger*) -- uid: OpenTK.Graphics.Wgl.Wgl.NV.QueryMaxSwapGroupsNV(System.IntPtr,System.UInt32*,System.UInt32*) - commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.QueryMaxSwapGroupsNV(System.IntPtr,System.UInt32*,System.UInt32*) - id: QueryMaxSwapGroupsNV(System.IntPtr,System.UInt32*,System.UInt32*) - parent: OpenTK.Graphics.Wgl.Wgl.NV - langs: - - csharp - - vb - name: QueryMaxSwapGroupsNV(nint, uint*, uint*) - nameWithType: Wgl.NV.QueryMaxSwapGroupsNV(nint, uint*, uint*) - fullName: OpenTK.Graphics.Wgl.Wgl.NV.QueryMaxSwapGroupsNV(nint, uint*, uint*) - type: Method - source: - id: QueryMaxSwapGroupsNV - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs - startLine: 428 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_NV_swap_group] - - [entry point: wglQueryMaxSwapGroupsNV] - -
- example: [] - syntax: - content: public static int QueryMaxSwapGroupsNV(nint hDC, uint* maxGroups, uint* maxBarriers) - parameters: - - id: hDC - type: System.IntPtr - - id: maxGroups - type: System.UInt32* - - id: maxBarriers - type: System.UInt32* - return: - type: System.Int32 - content.vb: Public Shared Function QueryMaxSwapGroupsNV(hDC As IntPtr, maxGroups As UInteger*, maxBarriers As UInteger*) As Integer - overload: OpenTK.Graphics.Wgl.Wgl.NV.QueryMaxSwapGroupsNV* - nameWithType.vb: Wgl.NV.QueryMaxSwapGroupsNV(IntPtr, UInteger*, UInteger*) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.QueryMaxSwapGroupsNV(System.IntPtr, UInteger*, UInteger*) - name.vb: QueryMaxSwapGroupsNV(IntPtr, UInteger*, UInteger*) -- uid: OpenTK.Graphics.Wgl.Wgl.NV.QuerySwapGroupNV(System.IntPtr,System.UInt32*,System.UInt32*) - commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.QuerySwapGroupNV(System.IntPtr,System.UInt32*,System.UInt32*) - id: QuerySwapGroupNV(System.IntPtr,System.UInt32*,System.UInt32*) - parent: OpenTK.Graphics.Wgl.Wgl.NV - langs: - - csharp - - vb - name: QuerySwapGroupNV(nint, uint*, uint*) - nameWithType: Wgl.NV.QuerySwapGroupNV(nint, uint*, uint*) - fullName: OpenTK.Graphics.Wgl.Wgl.NV.QuerySwapGroupNV(nint, uint*, uint*) - type: Method - source: - id: QuerySwapGroupNV - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs - startLine: 431 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_NV_swap_group] - - [entry point: wglQuerySwapGroupNV] - -
- example: [] - syntax: - content: public static int QuerySwapGroupNV(nint hDC, uint* group, uint* barrier) - parameters: - - id: hDC - type: System.IntPtr - - id: group - type: System.UInt32* - - id: barrier - type: System.UInt32* - return: - type: System.Int32 - content.vb: Public Shared Function QuerySwapGroupNV(hDC As IntPtr, group As UInteger*, barrier As UInteger*) As Integer - overload: OpenTK.Graphics.Wgl.Wgl.NV.QuerySwapGroupNV* - nameWithType.vb: Wgl.NV.QuerySwapGroupNV(IntPtr, UInteger*, UInteger*) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.QuerySwapGroupNV(System.IntPtr, UInteger*, UInteger*) - name.vb: QuerySwapGroupNV(IntPtr, UInteger*, UInteger*) -- uid: OpenTK.Graphics.Wgl.Wgl.NV.QueryVideoCaptureDeviceNV(System.IntPtr,System.IntPtr,OpenTK.Graphics.Wgl.VideoCaptureDeviceAttribute,System.Int32*) - commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.QueryVideoCaptureDeviceNV(System.IntPtr,System.IntPtr,OpenTK.Graphics.Wgl.VideoCaptureDeviceAttribute,System.Int32*) - id: QueryVideoCaptureDeviceNV(System.IntPtr,System.IntPtr,OpenTK.Graphics.Wgl.VideoCaptureDeviceAttribute,System.Int32*) - parent: OpenTK.Graphics.Wgl.Wgl.NV - langs: - - csharp - - vb - name: QueryVideoCaptureDeviceNV(nint, nint, VideoCaptureDeviceAttribute, int*) - nameWithType: Wgl.NV.QueryVideoCaptureDeviceNV(nint, nint, VideoCaptureDeviceAttribute, int*) - fullName: OpenTK.Graphics.Wgl.Wgl.NV.QueryVideoCaptureDeviceNV(nint, nint, OpenTK.Graphics.Wgl.VideoCaptureDeviceAttribute, int*) - type: Method - source: - id: QueryVideoCaptureDeviceNV - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs - startLine: 434 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_NV_video_capture] - - [entry point: wglQueryVideoCaptureDeviceNV] - -
- example: [] - syntax: - content: public static int QueryVideoCaptureDeviceNV(nint hDc, nint hDevice, VideoCaptureDeviceAttribute iAttribute, int* piValue) - parameters: - - id: hDc - type: System.IntPtr - - id: hDevice - type: System.IntPtr - - id: iAttribute - type: OpenTK.Graphics.Wgl.VideoCaptureDeviceAttribute - - id: piValue - type: System.Int32* - return: - type: System.Int32 - content.vb: Public Shared Function QueryVideoCaptureDeviceNV(hDc As IntPtr, hDevice As IntPtr, iAttribute As VideoCaptureDeviceAttribute, piValue As Integer*) As Integer - overload: OpenTK.Graphics.Wgl.Wgl.NV.QueryVideoCaptureDeviceNV* - nameWithType.vb: Wgl.NV.QueryVideoCaptureDeviceNV(IntPtr, IntPtr, VideoCaptureDeviceAttribute, Integer*) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.QueryVideoCaptureDeviceNV(System.IntPtr, System.IntPtr, OpenTK.Graphics.Wgl.VideoCaptureDeviceAttribute, Integer*) - name.vb: QueryVideoCaptureDeviceNV(IntPtr, IntPtr, VideoCaptureDeviceAttribute, Integer*) -- uid: OpenTK.Graphics.Wgl.Wgl.NV.ReleaseVideoCaptureDeviceNV_(System.IntPtr,System.IntPtr) - commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.ReleaseVideoCaptureDeviceNV_(System.IntPtr,System.IntPtr) - id: ReleaseVideoCaptureDeviceNV_(System.IntPtr,System.IntPtr) - parent: OpenTK.Graphics.Wgl.Wgl.NV - langs: - - csharp - - vb - name: ReleaseVideoCaptureDeviceNV_(nint, nint) - nameWithType: Wgl.NV.ReleaseVideoCaptureDeviceNV_(nint, nint) - fullName: OpenTK.Graphics.Wgl.Wgl.NV.ReleaseVideoCaptureDeviceNV_(nint, nint) - type: Method - source: - id: ReleaseVideoCaptureDeviceNV_ - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs - startLine: 437 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_NV_video_capture] - - [entry point: wglReleaseVideoCaptureDeviceNV] - -
- example: [] - syntax: - content: public static int ReleaseVideoCaptureDeviceNV_(nint hDc, nint hDevice) - parameters: - - id: hDc - type: System.IntPtr - - id: hDevice - type: System.IntPtr - return: - type: System.Int32 - content.vb: Public Shared Function ReleaseVideoCaptureDeviceNV_(hDc As IntPtr, hDevice As IntPtr) As Integer - overload: OpenTK.Graphics.Wgl.Wgl.NV.ReleaseVideoCaptureDeviceNV_* - nameWithType.vb: Wgl.NV.ReleaseVideoCaptureDeviceNV_(IntPtr, IntPtr) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.ReleaseVideoCaptureDeviceNV_(System.IntPtr, System.IntPtr) - name.vb: ReleaseVideoCaptureDeviceNV_(IntPtr, IntPtr) -- uid: OpenTK.Graphics.Wgl.Wgl.NV.ReleaseVideoDeviceNV_(System.IntPtr) - commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.ReleaseVideoDeviceNV_(System.IntPtr) - id: ReleaseVideoDeviceNV_(System.IntPtr) - parent: OpenTK.Graphics.Wgl.Wgl.NV - langs: - - csharp - - vb - name: ReleaseVideoDeviceNV_(nint) - nameWithType: Wgl.NV.ReleaseVideoDeviceNV_(nint) - fullName: OpenTK.Graphics.Wgl.Wgl.NV.ReleaseVideoDeviceNV_(nint) - type: Method - source: - id: ReleaseVideoDeviceNV_ - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs - startLine: 440 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_NV_video_output] - - [entry point: wglReleaseVideoDeviceNV] - -
- example: [] - syntax: - content: public static int ReleaseVideoDeviceNV_(nint hVideoDevice) - parameters: - - id: hVideoDevice - type: System.IntPtr - return: - type: System.Int32 - content.vb: Public Shared Function ReleaseVideoDeviceNV_(hVideoDevice As IntPtr) As Integer - overload: OpenTK.Graphics.Wgl.Wgl.NV.ReleaseVideoDeviceNV_* - nameWithType.vb: Wgl.NV.ReleaseVideoDeviceNV_(IntPtr) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.ReleaseVideoDeviceNV_(System.IntPtr) - name.vb: ReleaseVideoDeviceNV_(IntPtr) -- uid: OpenTK.Graphics.Wgl.Wgl.NV.ReleaseVideoImageNV_(System.IntPtr,OpenTK.Graphics.Wgl.VideoOutputBuffer) - commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.ReleaseVideoImageNV_(System.IntPtr,OpenTK.Graphics.Wgl.VideoOutputBuffer) - id: ReleaseVideoImageNV_(System.IntPtr,OpenTK.Graphics.Wgl.VideoOutputBuffer) - parent: OpenTK.Graphics.Wgl.Wgl.NV - langs: - - csharp - - vb - name: ReleaseVideoImageNV_(nint, VideoOutputBuffer) - nameWithType: Wgl.NV.ReleaseVideoImageNV_(nint, VideoOutputBuffer) - fullName: OpenTK.Graphics.Wgl.Wgl.NV.ReleaseVideoImageNV_(nint, OpenTK.Graphics.Wgl.VideoOutputBuffer) - type: Method - source: - id: ReleaseVideoImageNV_ - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs - startLine: 443 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_NV_video_output] - - [entry point: wglReleaseVideoImageNV] - -
- example: [] - syntax: - content: public static int ReleaseVideoImageNV_(nint hPbuffer, VideoOutputBuffer iVideoBuffer) - parameters: - - id: hPbuffer - type: System.IntPtr - - id: iVideoBuffer - type: OpenTK.Graphics.Wgl.VideoOutputBuffer - return: - type: System.Int32 - content.vb: Public Shared Function ReleaseVideoImageNV_(hPbuffer As IntPtr, iVideoBuffer As VideoOutputBuffer) As Integer - overload: OpenTK.Graphics.Wgl.Wgl.NV.ReleaseVideoImageNV_* - nameWithType.vb: Wgl.NV.ReleaseVideoImageNV_(IntPtr, VideoOutputBuffer) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.ReleaseVideoImageNV_(System.IntPtr, OpenTK.Graphics.Wgl.VideoOutputBuffer) - name.vb: ReleaseVideoImageNV_(IntPtr, VideoOutputBuffer) -- uid: OpenTK.Graphics.Wgl.Wgl.NV.ResetFrameCountNV_(System.IntPtr) - commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.ResetFrameCountNV_(System.IntPtr) - id: ResetFrameCountNV_(System.IntPtr) - parent: OpenTK.Graphics.Wgl.Wgl.NV - langs: - - csharp - - vb - name: ResetFrameCountNV_(nint) - nameWithType: Wgl.NV.ResetFrameCountNV_(nint) - fullName: OpenTK.Graphics.Wgl.Wgl.NV.ResetFrameCountNV_(nint) - type: Method - source: - id: ResetFrameCountNV_ - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs - startLine: 446 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_NV_swap_group] - - [entry point: wglResetFrameCountNV] - -
- example: [] - syntax: - content: public static int ResetFrameCountNV_(nint hDC) - parameters: - - id: hDC - type: System.IntPtr - return: - type: System.Int32 - content.vb: Public Shared Function ResetFrameCountNV_(hDC As IntPtr) As Integer - overload: OpenTK.Graphics.Wgl.Wgl.NV.ResetFrameCountNV_* - nameWithType.vb: Wgl.NV.ResetFrameCountNV_(IntPtr) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.ResetFrameCountNV_(System.IntPtr) - name.vb: ResetFrameCountNV_(IntPtr) -- uid: OpenTK.Graphics.Wgl.Wgl.NV.SendPbufferToVideoNV(System.IntPtr,OpenTK.Graphics.Wgl.VideoOutputBufferType,System.UInt64*,System.Int32) - commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.SendPbufferToVideoNV(System.IntPtr,OpenTK.Graphics.Wgl.VideoOutputBufferType,System.UInt64*,System.Int32) - id: SendPbufferToVideoNV(System.IntPtr,OpenTK.Graphics.Wgl.VideoOutputBufferType,System.UInt64*,System.Int32) - parent: OpenTK.Graphics.Wgl.Wgl.NV - langs: - - csharp - - vb - name: SendPbufferToVideoNV(nint, VideoOutputBufferType, ulong*, int) - nameWithType: Wgl.NV.SendPbufferToVideoNV(nint, VideoOutputBufferType, ulong*, int) - fullName: OpenTK.Graphics.Wgl.Wgl.NV.SendPbufferToVideoNV(nint, OpenTK.Graphics.Wgl.VideoOutputBufferType, ulong*, int) - type: Method - source: - id: SendPbufferToVideoNV - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs - startLine: 449 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_NV_video_output] - - [entry point: wglSendPbufferToVideoNV] - -
- example: [] - syntax: - content: public static int SendPbufferToVideoNV(nint hPbuffer, VideoOutputBufferType iBufferType, ulong* pulCounterPbuffer, int bBlock) - parameters: - - id: hPbuffer - type: System.IntPtr - - id: iBufferType - type: OpenTK.Graphics.Wgl.VideoOutputBufferType - - id: pulCounterPbuffer - type: System.UInt64* - - id: bBlock - type: System.Int32 - return: - type: System.Int32 - content.vb: Public Shared Function SendPbufferToVideoNV(hPbuffer As IntPtr, iBufferType As VideoOutputBufferType, pulCounterPbuffer As ULong*, bBlock As Integer) As Integer - overload: OpenTK.Graphics.Wgl.Wgl.NV.SendPbufferToVideoNV* - nameWithType.vb: Wgl.NV.SendPbufferToVideoNV(IntPtr, VideoOutputBufferType, ULong*, Integer) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.SendPbufferToVideoNV(System.IntPtr, OpenTK.Graphics.Wgl.VideoOutputBufferType, ULong*, Integer) - name.vb: SendPbufferToVideoNV(IntPtr, VideoOutputBufferType, ULong*, Integer) -- uid: OpenTK.Graphics.Wgl.Wgl.NV.BindSwapBarrierNV(System.UInt32,System.UInt32) - commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.BindSwapBarrierNV(System.UInt32,System.UInt32) - id: BindSwapBarrierNV(System.UInt32,System.UInt32) - parent: OpenTK.Graphics.Wgl.Wgl.NV - langs: - - csharp - - vb - name: BindSwapBarrierNV(uint, uint) - nameWithType: Wgl.NV.BindSwapBarrierNV(uint, uint) - fullName: OpenTK.Graphics.Wgl.Wgl.NV.BindSwapBarrierNV(uint, uint) - type: Method - source: - id: BindSwapBarrierNV - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 1420 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - example: [] - syntax: - content: public static bool BindSwapBarrierNV(uint group, uint barrier) - parameters: - - id: group - type: System.UInt32 - - id: barrier - type: System.UInt32 - return: - type: System.Boolean - content.vb: Public Shared Function BindSwapBarrierNV(group As UInteger, barrier As UInteger) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.NV.BindSwapBarrierNV* - nameWithType.vb: Wgl.NV.BindSwapBarrierNV(UInteger, UInteger) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.BindSwapBarrierNV(UInteger, UInteger) - name.vb: BindSwapBarrierNV(UInteger, UInteger) -- uid: OpenTK.Graphics.Wgl.Wgl.NV.BindVideoCaptureDeviceNV(System.UInt32,System.IntPtr) - commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.BindVideoCaptureDeviceNV(System.UInt32,System.IntPtr) - id: BindVideoCaptureDeviceNV(System.UInt32,System.IntPtr) - parent: OpenTK.Graphics.Wgl.Wgl.NV - langs: - - csharp - - vb - name: BindVideoCaptureDeviceNV(uint, nint) - nameWithType: Wgl.NV.BindVideoCaptureDeviceNV(uint, nint) - fullName: OpenTK.Graphics.Wgl.Wgl.NV.BindVideoCaptureDeviceNV(uint, nint) - type: Method - source: - id: BindVideoCaptureDeviceNV - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 1429 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - example: [] - syntax: - content: public static bool BindVideoCaptureDeviceNV(uint uVideoSlot, nint hDevice) - parameters: - - id: uVideoSlot - type: System.UInt32 - - id: hDevice - type: System.IntPtr - return: - type: System.Boolean - content.vb: Public Shared Function BindVideoCaptureDeviceNV(uVideoSlot As UInteger, hDevice As IntPtr) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.NV.BindVideoCaptureDeviceNV* - nameWithType.vb: Wgl.NV.BindVideoCaptureDeviceNV(UInteger, IntPtr) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.BindVideoCaptureDeviceNV(UInteger, System.IntPtr) - name.vb: BindVideoCaptureDeviceNV(UInteger, IntPtr) -- uid: OpenTK.Graphics.Wgl.Wgl.NV.BindVideoDeviceNV(System.IntPtr,System.UInt32,System.IntPtr,System.ReadOnlySpan{System.Int32}) - commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.BindVideoDeviceNV(System.IntPtr,System.UInt32,System.IntPtr,System.ReadOnlySpan{System.Int32}) - id: BindVideoDeviceNV(System.IntPtr,System.UInt32,System.IntPtr,System.ReadOnlySpan{System.Int32}) - parent: OpenTK.Graphics.Wgl.Wgl.NV - langs: - - csharp - - vb - name: BindVideoDeviceNV(nint, uint, nint, ReadOnlySpan) - nameWithType: Wgl.NV.BindVideoDeviceNV(nint, uint, nint, ReadOnlySpan) - fullName: OpenTK.Graphics.Wgl.Wgl.NV.BindVideoDeviceNV(nint, uint, nint, System.ReadOnlySpan) - type: Method - source: - id: BindVideoDeviceNV - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 1438 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_NV_present_video] - - [entry point: wglBindVideoDeviceNV] - -
- example: [] - syntax: - content: public static bool BindVideoDeviceNV(nint hDc, uint uVideoSlot, nint hVideoDevice, ReadOnlySpan piAttribList) - parameters: - - id: hDc - type: System.IntPtr - - id: uVideoSlot - type: System.UInt32 - - id: hVideoDevice - type: System.IntPtr - - id: piAttribList - type: System.ReadOnlySpan{System.Int32} - return: - type: System.Boolean - content.vb: Public Shared Function BindVideoDeviceNV(hDc As IntPtr, uVideoSlot As UInteger, hVideoDevice As IntPtr, piAttribList As ReadOnlySpan(Of Integer)) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.NV.BindVideoDeviceNV* - nameWithType.vb: Wgl.NV.BindVideoDeviceNV(IntPtr, UInteger, IntPtr, ReadOnlySpan(Of Integer)) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.BindVideoDeviceNV(System.IntPtr, UInteger, System.IntPtr, System.ReadOnlySpan(Of Integer)) - name.vb: BindVideoDeviceNV(IntPtr, UInteger, IntPtr, ReadOnlySpan(Of Integer)) -- uid: OpenTK.Graphics.Wgl.Wgl.NV.BindVideoDeviceNV(System.IntPtr,System.UInt32,System.IntPtr,System.Int32[]) - commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.BindVideoDeviceNV(System.IntPtr,System.UInt32,System.IntPtr,System.Int32[]) - id: BindVideoDeviceNV(System.IntPtr,System.UInt32,System.IntPtr,System.Int32[]) - parent: OpenTK.Graphics.Wgl.Wgl.NV - langs: - - csharp - - vb - name: BindVideoDeviceNV(nint, uint, nint, int[]) - nameWithType: Wgl.NV.BindVideoDeviceNV(nint, uint, nint, int[]) - fullName: OpenTK.Graphics.Wgl.Wgl.NV.BindVideoDeviceNV(nint, uint, nint, int[]) - type: Method - source: - id: BindVideoDeviceNV - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 1450 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_NV_present_video] - - [entry point: wglBindVideoDeviceNV] - -
- example: [] - syntax: - content: public static bool BindVideoDeviceNV(nint hDc, uint uVideoSlot, nint hVideoDevice, int[] piAttribList) - parameters: - - id: hDc - type: System.IntPtr - - id: uVideoSlot - type: System.UInt32 - - id: hVideoDevice - type: System.IntPtr - - id: piAttribList - type: System.Int32[] - return: - type: System.Boolean - content.vb: Public Shared Function BindVideoDeviceNV(hDc As IntPtr, uVideoSlot As UInteger, hVideoDevice As IntPtr, piAttribList As Integer()) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.NV.BindVideoDeviceNV* - nameWithType.vb: Wgl.NV.BindVideoDeviceNV(IntPtr, UInteger, IntPtr, Integer()) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.BindVideoDeviceNV(System.IntPtr, UInteger, System.IntPtr, Integer()) - name.vb: BindVideoDeviceNV(IntPtr, UInteger, IntPtr, Integer()) -- uid: OpenTK.Graphics.Wgl.Wgl.NV.BindVideoDeviceNV(System.IntPtr,System.UInt32,System.IntPtr,System.Int32@) - commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.BindVideoDeviceNV(System.IntPtr,System.UInt32,System.IntPtr,System.Int32@) - id: BindVideoDeviceNV(System.IntPtr,System.UInt32,System.IntPtr,System.Int32@) - parent: OpenTK.Graphics.Wgl.Wgl.NV - langs: - - csharp - - vb - name: BindVideoDeviceNV(nint, uint, nint, in int) - nameWithType: Wgl.NV.BindVideoDeviceNV(nint, uint, nint, in int) - fullName: OpenTK.Graphics.Wgl.Wgl.NV.BindVideoDeviceNV(nint, uint, nint, in int) - type: Method - source: - id: BindVideoDeviceNV - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 1462 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_NV_present_video] - - [entry point: wglBindVideoDeviceNV] - -
- example: [] - syntax: - content: public static bool BindVideoDeviceNV(nint hDc, uint uVideoSlot, nint hVideoDevice, in int piAttribList) - parameters: - - id: hDc - type: System.IntPtr - - id: uVideoSlot - type: System.UInt32 - - id: hVideoDevice - type: System.IntPtr - - id: piAttribList - type: System.Int32 - return: - type: System.Boolean - content.vb: Public Shared Function BindVideoDeviceNV(hDc As IntPtr, uVideoSlot As UInteger, hVideoDevice As IntPtr, piAttribList As Integer) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.NV.BindVideoDeviceNV* - nameWithType.vb: Wgl.NV.BindVideoDeviceNV(IntPtr, UInteger, IntPtr, Integer) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.BindVideoDeviceNV(System.IntPtr, UInteger, System.IntPtr, Integer) - name.vb: BindVideoDeviceNV(IntPtr, UInteger, IntPtr, Integer) -- uid: OpenTK.Graphics.Wgl.Wgl.NV.BindVideoImageNV(System.IntPtr,System.IntPtr,OpenTK.Graphics.Wgl.VideoOutputBuffer) - commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.BindVideoImageNV(System.IntPtr,System.IntPtr,OpenTK.Graphics.Wgl.VideoOutputBuffer) - id: BindVideoImageNV(System.IntPtr,System.IntPtr,OpenTK.Graphics.Wgl.VideoOutputBuffer) - parent: OpenTK.Graphics.Wgl.Wgl.NV - langs: - - csharp - - vb - name: BindVideoImageNV(nint, nint, VideoOutputBuffer) - nameWithType: Wgl.NV.BindVideoImageNV(nint, nint, VideoOutputBuffer) - fullName: OpenTK.Graphics.Wgl.Wgl.NV.BindVideoImageNV(nint, nint, OpenTK.Graphics.Wgl.VideoOutputBuffer) - type: Method - source: - id: BindVideoImageNV - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 1474 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - example: [] - syntax: - content: public static bool BindVideoImageNV(nint hVideoDevice, nint hPbuffer, VideoOutputBuffer iVideoBuffer) - parameters: - - id: hVideoDevice - type: System.IntPtr - - id: hPbuffer - type: System.IntPtr - - id: iVideoBuffer - type: OpenTK.Graphics.Wgl.VideoOutputBuffer - return: - type: System.Boolean - content.vb: Public Shared Function BindVideoImageNV(hVideoDevice As IntPtr, hPbuffer As IntPtr, iVideoBuffer As VideoOutputBuffer) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.NV.BindVideoImageNV* - nameWithType.vb: Wgl.NV.BindVideoImageNV(IntPtr, IntPtr, VideoOutputBuffer) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.BindVideoImageNV(System.IntPtr, System.IntPtr, OpenTK.Graphics.Wgl.VideoOutputBuffer) - name.vb: BindVideoImageNV(IntPtr, IntPtr, VideoOutputBuffer) -- uid: OpenTK.Graphics.Wgl.Wgl.NV.CopyImageSubDataNV(System.IntPtr,System.UInt32,OpenTK.Graphics.OpenGL.TextureTarget,System.Int32,System.Int32,System.Int32,System.Int32,System.IntPtr,System.UInt32,OpenTK.Graphics.OpenGL.TextureTarget,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32) - commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.CopyImageSubDataNV(System.IntPtr,System.UInt32,OpenTK.Graphics.OpenGL.TextureTarget,System.Int32,System.Int32,System.Int32,System.Int32,System.IntPtr,System.UInt32,OpenTK.Graphics.OpenGL.TextureTarget,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32) - id: CopyImageSubDataNV(System.IntPtr,System.UInt32,OpenTK.Graphics.OpenGL.TextureTarget,System.Int32,System.Int32,System.Int32,System.Int32,System.IntPtr,System.UInt32,OpenTK.Graphics.OpenGL.TextureTarget,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32) - parent: OpenTK.Graphics.Wgl.Wgl.NV - langs: - - csharp - - vb - name: CopyImageSubDataNV(nint, uint, TextureTarget, int, int, int, int, nint, uint, TextureTarget, int, int, int, int, int, int, int) - nameWithType: Wgl.NV.CopyImageSubDataNV(nint, uint, TextureTarget, int, int, int, int, nint, uint, TextureTarget, int, int, int, int, int, int, int) - fullName: OpenTK.Graphics.Wgl.Wgl.NV.CopyImageSubDataNV(nint, uint, OpenTK.Graphics.OpenGL.TextureTarget, int, int, int, int, nint, uint, OpenTK.Graphics.OpenGL.TextureTarget, int, int, int, int, int, int, int) - type: Method - source: - id: CopyImageSubDataNV - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 1483 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - example: [] - syntax: - content: public static bool CopyImageSubDataNV(nint hSrcRC, uint srcName, TextureTarget srcTarget, int srcLevel, int srcX, int srcY, int srcZ, nint hDstRC, uint dstName, TextureTarget dstTarget, int dstLevel, int dstX, int dstY, int dstZ, int width, int height, int depth) - parameters: - - id: hSrcRC - type: System.IntPtr - - id: srcName - type: System.UInt32 - - id: srcTarget - type: OpenTK.Graphics.OpenGL.TextureTarget - - id: srcLevel - type: System.Int32 - - id: srcX - type: System.Int32 - - id: srcY - type: System.Int32 - - id: srcZ - type: System.Int32 - - id: hDstRC - type: System.IntPtr - - id: dstName - type: System.UInt32 - - id: dstTarget - type: OpenTK.Graphics.OpenGL.TextureTarget - - id: dstLevel - type: System.Int32 - - id: dstX - type: System.Int32 - - id: dstY - type: System.Int32 - - id: dstZ - type: System.Int32 - - id: width - type: System.Int32 - - id: height - type: System.Int32 - - id: depth - type: System.Int32 - return: - type: System.Boolean - content.vb: Public Shared Function CopyImageSubDataNV(hSrcRC As IntPtr, srcName As UInteger, srcTarget As TextureTarget, srcLevel As Integer, srcX As Integer, srcY As Integer, srcZ As Integer, hDstRC As IntPtr, dstName As UInteger, dstTarget As TextureTarget, dstLevel As Integer, dstX As Integer, dstY As Integer, dstZ As Integer, width As Integer, height As Integer, depth As Integer) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.NV.CopyImageSubDataNV* - nameWithType.vb: Wgl.NV.CopyImageSubDataNV(IntPtr, UInteger, TextureTarget, Integer, Integer, Integer, Integer, IntPtr, UInteger, TextureTarget, Integer, Integer, Integer, Integer, Integer, Integer, Integer) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.CopyImageSubDataNV(System.IntPtr, UInteger, OpenTK.Graphics.OpenGL.TextureTarget, Integer, Integer, Integer, Integer, System.IntPtr, UInteger, OpenTK.Graphics.OpenGL.TextureTarget, Integer, Integer, Integer, Integer, Integer, Integer, Integer) - name.vb: CopyImageSubDataNV(IntPtr, UInteger, TextureTarget, Integer, Integer, Integer, Integer, IntPtr, UInteger, TextureTarget, Integer, Integer, Integer, Integer, Integer, Integer, Integer) -- uid: OpenTK.Graphics.Wgl.Wgl.NV.CreateAffinityDCNV(System.ReadOnlySpan{System.IntPtr}) - commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.CreateAffinityDCNV(System.ReadOnlySpan{System.IntPtr}) - id: CreateAffinityDCNV(System.ReadOnlySpan{System.IntPtr}) - parent: OpenTK.Graphics.Wgl.Wgl.NV - langs: - - csharp - - vb - name: CreateAffinityDCNV(ReadOnlySpan) - nameWithType: Wgl.NV.CreateAffinityDCNV(ReadOnlySpan) - fullName: OpenTK.Graphics.Wgl.Wgl.NV.CreateAffinityDCNV(System.ReadOnlySpan) - type: Method - source: - id: CreateAffinityDCNV - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 1492 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_NV_gpu_affinity] - - [entry point: wglCreateAffinityDCNV] - -
- example: [] - syntax: - content: public static nint CreateAffinityDCNV(ReadOnlySpan phGpuList) - parameters: - - id: phGpuList - type: System.ReadOnlySpan{System.IntPtr} - return: - type: System.IntPtr - content.vb: Public Shared Function CreateAffinityDCNV(phGpuList As ReadOnlySpan(Of IntPtr)) As IntPtr - overload: OpenTK.Graphics.Wgl.Wgl.NV.CreateAffinityDCNV* - nameWithType.vb: Wgl.NV.CreateAffinityDCNV(ReadOnlySpan(Of IntPtr)) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.CreateAffinityDCNV(System.ReadOnlySpan(Of System.IntPtr)) - name.vb: CreateAffinityDCNV(ReadOnlySpan(Of IntPtr)) -- uid: OpenTK.Graphics.Wgl.Wgl.NV.CreateAffinityDCNV(System.IntPtr[]) - commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.CreateAffinityDCNV(System.IntPtr[]) - id: CreateAffinityDCNV(System.IntPtr[]) - parent: OpenTK.Graphics.Wgl.Wgl.NV - langs: - - csharp - - vb - name: CreateAffinityDCNV(nint[]) - nameWithType: Wgl.NV.CreateAffinityDCNV(nint[]) - fullName: OpenTK.Graphics.Wgl.Wgl.NV.CreateAffinityDCNV(nint[]) - type: Method - source: - id: CreateAffinityDCNV - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 1502 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_NV_gpu_affinity] - - [entry point: wglCreateAffinityDCNV] - -
- example: [] - syntax: - content: public static nint CreateAffinityDCNV(nint[] phGpuList) - parameters: - - id: phGpuList - type: System.IntPtr[] - return: - type: System.IntPtr - content.vb: Public Shared Function CreateAffinityDCNV(phGpuList As IntPtr()) As IntPtr - overload: OpenTK.Graphics.Wgl.Wgl.NV.CreateAffinityDCNV* - nameWithType.vb: Wgl.NV.CreateAffinityDCNV(IntPtr()) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.CreateAffinityDCNV(System.IntPtr()) - name.vb: CreateAffinityDCNV(IntPtr()) -- uid: OpenTK.Graphics.Wgl.Wgl.NV.CreateAffinityDCNV(System.IntPtr@) - commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.CreateAffinityDCNV(System.IntPtr@) - id: CreateAffinityDCNV(System.IntPtr@) - parent: OpenTK.Graphics.Wgl.Wgl.NV - langs: - - csharp - - vb - name: CreateAffinityDCNV(in nint) - nameWithType: Wgl.NV.CreateAffinityDCNV(in nint) - fullName: OpenTK.Graphics.Wgl.Wgl.NV.CreateAffinityDCNV(in nint) - type: Method - source: - id: CreateAffinityDCNV - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 1512 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_NV_gpu_affinity] - - [entry point: wglCreateAffinityDCNV] - -
- example: [] - syntax: - content: public static nint CreateAffinityDCNV(in nint phGpuList) - parameters: - - id: phGpuList - type: System.IntPtr - return: - type: System.IntPtr - content.vb: Public Shared Function CreateAffinityDCNV(phGpuList As IntPtr) As IntPtr - overload: OpenTK.Graphics.Wgl.Wgl.NV.CreateAffinityDCNV* - nameWithType.vb: Wgl.NV.CreateAffinityDCNV(IntPtr) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.CreateAffinityDCNV(System.IntPtr) - name.vb: CreateAffinityDCNV(IntPtr) -- uid: OpenTK.Graphics.Wgl.Wgl.NV.DelayBeforeSwapNV(System.IntPtr,System.Single) - commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.DelayBeforeSwapNV(System.IntPtr,System.Single) - id: DelayBeforeSwapNV(System.IntPtr,System.Single) - parent: OpenTK.Graphics.Wgl.Wgl.NV - langs: - - csharp - - vb - name: DelayBeforeSwapNV(nint, float) - nameWithType: Wgl.NV.DelayBeforeSwapNV(nint, float) - fullName: OpenTK.Graphics.Wgl.Wgl.NV.DelayBeforeSwapNV(nint, float) - type: Method - source: - id: DelayBeforeSwapNV - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 1522 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - example: [] - syntax: - content: public static bool DelayBeforeSwapNV(nint hDC, float seconds) - parameters: - - id: hDC - type: System.IntPtr - - id: seconds - type: System.Single - return: - type: System.Boolean - content.vb: Public Shared Function DelayBeforeSwapNV(hDC As IntPtr, seconds As Single) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.NV.DelayBeforeSwapNV* - nameWithType.vb: Wgl.NV.DelayBeforeSwapNV(IntPtr, Single) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.DelayBeforeSwapNV(System.IntPtr, Single) - name.vb: DelayBeforeSwapNV(IntPtr, Single) -- uid: OpenTK.Graphics.Wgl.Wgl.NV.DeleteDCNV(System.IntPtr) - commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.DeleteDCNV(System.IntPtr) - id: DeleteDCNV(System.IntPtr) - parent: OpenTK.Graphics.Wgl.Wgl.NV - langs: - - csharp - - vb - name: DeleteDCNV(nint) - nameWithType: Wgl.NV.DeleteDCNV(nint) - fullName: OpenTK.Graphics.Wgl.Wgl.NV.DeleteDCNV(nint) - type: Method - source: - id: DeleteDCNV - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 1531 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - example: [] - syntax: - content: public static bool DeleteDCNV(nint hdc) - parameters: - - id: hdc - type: System.IntPtr - return: - type: System.Boolean - content.vb: Public Shared Function DeleteDCNV(hdc As IntPtr) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.NV.DeleteDCNV* - nameWithType.vb: Wgl.NV.DeleteDCNV(IntPtr) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.DeleteDCNV(System.IntPtr) - name.vb: DeleteDCNV(IntPtr) -- uid: OpenTK.Graphics.Wgl.Wgl.NV.DXCloseDeviceNV(System.IntPtr) - commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.DXCloseDeviceNV(System.IntPtr) - id: DXCloseDeviceNV(System.IntPtr) - parent: OpenTK.Graphics.Wgl.Wgl.NV - langs: - - csharp - - vb - name: DXCloseDeviceNV(nint) - nameWithType: Wgl.NV.DXCloseDeviceNV(nint) - fullName: OpenTK.Graphics.Wgl.Wgl.NV.DXCloseDeviceNV(nint) - type: Method - source: - id: DXCloseDeviceNV - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 1540 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - example: [] - syntax: - content: public static bool DXCloseDeviceNV(nint hDevice) - parameters: - - id: hDevice - type: System.IntPtr - return: - type: System.Boolean - content.vb: Public Shared Function DXCloseDeviceNV(hDevice As IntPtr) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.NV.DXCloseDeviceNV* - nameWithType.vb: Wgl.NV.DXCloseDeviceNV(IntPtr) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.DXCloseDeviceNV(System.IntPtr) - name.vb: DXCloseDeviceNV(IntPtr) -- uid: OpenTK.Graphics.Wgl.Wgl.NV.DXLockObjectsNV(System.IntPtr,System.Int32,System.Span{System.IntPtr}) - commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.DXLockObjectsNV(System.IntPtr,System.Int32,System.Span{System.IntPtr}) - id: DXLockObjectsNV(System.IntPtr,System.Int32,System.Span{System.IntPtr}) - parent: OpenTK.Graphics.Wgl.Wgl.NV - langs: - - csharp - - vb - name: DXLockObjectsNV(nint, int, Span) - nameWithType: Wgl.NV.DXLockObjectsNV(nint, int, Span) - fullName: OpenTK.Graphics.Wgl.Wgl.NV.DXLockObjectsNV(nint, int, System.Span) - type: Method - source: - id: DXLockObjectsNV - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 1549 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_NV_DX_interop] - - [entry point: wglDXLockObjectsNV] - -
- example: [] - syntax: - content: public static bool DXLockObjectsNV(nint hDevice, int count, Span hObjects) - parameters: - - id: hDevice - type: System.IntPtr - - id: count - type: System.Int32 - - id: hObjects - type: System.Span{System.IntPtr} - return: - type: System.Boolean - content.vb: Public Shared Function DXLockObjectsNV(hDevice As IntPtr, count As Integer, hObjects As Span(Of IntPtr)) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.NV.DXLockObjectsNV* - nameWithType.vb: Wgl.NV.DXLockObjectsNV(IntPtr, Integer, Span(Of IntPtr)) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.DXLockObjectsNV(System.IntPtr, Integer, System.Span(Of System.IntPtr)) - name.vb: DXLockObjectsNV(IntPtr, Integer, Span(Of IntPtr)) -- uid: OpenTK.Graphics.Wgl.Wgl.NV.DXLockObjectsNV(System.IntPtr,System.Int32,System.IntPtr[]) - commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.DXLockObjectsNV(System.IntPtr,System.Int32,System.IntPtr[]) - id: DXLockObjectsNV(System.IntPtr,System.Int32,System.IntPtr[]) - parent: OpenTK.Graphics.Wgl.Wgl.NV - langs: - - csharp - - vb - name: DXLockObjectsNV(nint, int, nint[]) - nameWithType: Wgl.NV.DXLockObjectsNV(nint, int, nint[]) - fullName: OpenTK.Graphics.Wgl.Wgl.NV.DXLockObjectsNV(nint, int, nint[]) - type: Method - source: - id: DXLockObjectsNV - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 1561 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_NV_DX_interop] - - [entry point: wglDXLockObjectsNV] - -
- example: [] - syntax: - content: public static bool DXLockObjectsNV(nint hDevice, int count, nint[] hObjects) - parameters: - - id: hDevice - type: System.IntPtr - - id: count - type: System.Int32 - - id: hObjects - type: System.IntPtr[] - return: - type: System.Boolean - content.vb: Public Shared Function DXLockObjectsNV(hDevice As IntPtr, count As Integer, hObjects As IntPtr()) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.NV.DXLockObjectsNV* - nameWithType.vb: Wgl.NV.DXLockObjectsNV(IntPtr, Integer, IntPtr()) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.DXLockObjectsNV(System.IntPtr, Integer, System.IntPtr()) - name.vb: DXLockObjectsNV(IntPtr, Integer, IntPtr()) -- uid: OpenTK.Graphics.Wgl.Wgl.NV.DXLockObjectsNV(System.IntPtr,System.Int32,System.IntPtr@) - commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.DXLockObjectsNV(System.IntPtr,System.Int32,System.IntPtr@) - id: DXLockObjectsNV(System.IntPtr,System.Int32,System.IntPtr@) - parent: OpenTK.Graphics.Wgl.Wgl.NV - langs: - - csharp - - vb - name: DXLockObjectsNV(nint, int, in nint) - nameWithType: Wgl.NV.DXLockObjectsNV(nint, int, in nint) - fullName: OpenTK.Graphics.Wgl.Wgl.NV.DXLockObjectsNV(nint, int, in nint) - type: Method - source: - id: DXLockObjectsNV - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 1573 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_NV_DX_interop] - - [entry point: wglDXLockObjectsNV] - -
- example: [] - syntax: - content: public static bool DXLockObjectsNV(nint hDevice, int count, in nint hObjects) - parameters: - - id: hDevice - type: System.IntPtr - - id: count - type: System.Int32 - - id: hObjects - type: System.IntPtr - return: - type: System.Boolean - content.vb: Public Shared Function DXLockObjectsNV(hDevice As IntPtr, count As Integer, hObjects As IntPtr) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.NV.DXLockObjectsNV* - nameWithType.vb: Wgl.NV.DXLockObjectsNV(IntPtr, Integer, IntPtr) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.DXLockObjectsNV(System.IntPtr, Integer, System.IntPtr) - name.vb: DXLockObjectsNV(IntPtr, Integer, IntPtr) -- uid: OpenTK.Graphics.Wgl.Wgl.NV.DXObjectAccessNV(System.IntPtr,OpenTK.Graphics.Wgl.DXInteropMaskNV) - commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.DXObjectAccessNV(System.IntPtr,OpenTK.Graphics.Wgl.DXInteropMaskNV) - id: DXObjectAccessNV(System.IntPtr,OpenTK.Graphics.Wgl.DXInteropMaskNV) - parent: OpenTK.Graphics.Wgl.Wgl.NV - langs: - - csharp - - vb - name: DXObjectAccessNV(nint, DXInteropMaskNV) - nameWithType: Wgl.NV.DXObjectAccessNV(nint, DXInteropMaskNV) - fullName: OpenTK.Graphics.Wgl.Wgl.NV.DXObjectAccessNV(nint, OpenTK.Graphics.Wgl.DXInteropMaskNV) - type: Method - source: - id: DXObjectAccessNV - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 1585 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - example: [] - syntax: - content: public static bool DXObjectAccessNV(nint hObject, DXInteropMaskNV access) - parameters: - - id: hObject - type: System.IntPtr - - id: access - type: OpenTK.Graphics.Wgl.DXInteropMaskNV - return: - type: System.Boolean - content.vb: Public Shared Function DXObjectAccessNV(hObject As IntPtr, access As DXInteropMaskNV) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.NV.DXObjectAccessNV* - nameWithType.vb: Wgl.NV.DXObjectAccessNV(IntPtr, DXInteropMaskNV) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.DXObjectAccessNV(System.IntPtr, OpenTK.Graphics.Wgl.DXInteropMaskNV) - name.vb: DXObjectAccessNV(IntPtr, DXInteropMaskNV) -- uid: OpenTK.Graphics.Wgl.Wgl.NV.DXOpenDeviceNV(System.IntPtr) - commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.DXOpenDeviceNV(System.IntPtr) - id: DXOpenDeviceNV(System.IntPtr) - parent: OpenTK.Graphics.Wgl.Wgl.NV - langs: - - csharp - - vb - name: DXOpenDeviceNV(nint) - nameWithType: Wgl.NV.DXOpenDeviceNV(nint) - fullName: OpenTK.Graphics.Wgl.Wgl.NV.DXOpenDeviceNV(nint) - type: Method - source: - id: DXOpenDeviceNV - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 1594 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_NV_DX_interop] - - [entry point: wglDXOpenDeviceNV] - -
- example: [] - syntax: - content: public static nint DXOpenDeviceNV(nint dxDevice) - parameters: - - id: dxDevice - type: System.IntPtr - return: - type: System.IntPtr - content.vb: Public Shared Function DXOpenDeviceNV(dxDevice As IntPtr) As IntPtr - overload: OpenTK.Graphics.Wgl.Wgl.NV.DXOpenDeviceNV* - nameWithType.vb: Wgl.NV.DXOpenDeviceNV(IntPtr) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.DXOpenDeviceNV(System.IntPtr) - name.vb: DXOpenDeviceNV(IntPtr) -- uid: OpenTK.Graphics.Wgl.Wgl.NV.DXOpenDeviceNV``1(``0@) - commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.DXOpenDeviceNV``1(``0@) - id: DXOpenDeviceNV``1(``0@) - parent: OpenTK.Graphics.Wgl.Wgl.NV - langs: - - csharp - - vb - name: DXOpenDeviceNV(in T1) - nameWithType: Wgl.NV.DXOpenDeviceNV(in T1) - fullName: OpenTK.Graphics.Wgl.Wgl.NV.DXOpenDeviceNV(in T1) - type: Method - source: - id: DXOpenDeviceNV - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 1602 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_NV_DX_interop] - - [entry point: wglDXOpenDeviceNV] - -
- example: [] - syntax: - content: 'public static nint DXOpenDeviceNV(in T1 dxDevice) where T1 : unmanaged' - parameters: - - id: dxDevice - type: '{T1}' - typeParameters: - - id: T1 - return: - type: System.IntPtr - content.vb: Public Shared Function DXOpenDeviceNV(Of T1 As Structure)(dxDevice As T1) As IntPtr - overload: OpenTK.Graphics.Wgl.Wgl.NV.DXOpenDeviceNV* - nameWithType.vb: Wgl.NV.DXOpenDeviceNV(Of T1)(T1) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.DXOpenDeviceNV(Of T1)(T1) - name.vb: DXOpenDeviceNV(Of T1)(T1) -- uid: OpenTK.Graphics.Wgl.Wgl.NV.DXRegisterObjectNV(System.IntPtr,System.IntPtr,System.UInt32,OpenTK.Graphics.Wgl.ObjectTypeDX,OpenTK.Graphics.Wgl.DXInteropMaskNV) - commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.DXRegisterObjectNV(System.IntPtr,System.IntPtr,System.UInt32,OpenTK.Graphics.Wgl.ObjectTypeDX,OpenTK.Graphics.Wgl.DXInteropMaskNV) - id: DXRegisterObjectNV(System.IntPtr,System.IntPtr,System.UInt32,OpenTK.Graphics.Wgl.ObjectTypeDX,OpenTK.Graphics.Wgl.DXInteropMaskNV) - parent: OpenTK.Graphics.Wgl.Wgl.NV - langs: - - csharp - - vb - name: DXRegisterObjectNV(nint, nint, uint, ObjectTypeDX, DXInteropMaskNV) - nameWithType: Wgl.NV.DXRegisterObjectNV(nint, nint, uint, ObjectTypeDX, DXInteropMaskNV) - fullName: OpenTK.Graphics.Wgl.Wgl.NV.DXRegisterObjectNV(nint, nint, uint, OpenTK.Graphics.Wgl.ObjectTypeDX, OpenTK.Graphics.Wgl.DXInteropMaskNV) - type: Method - source: - id: DXRegisterObjectNV - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 1613 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_NV_DX_interop] - - [entry point: wglDXRegisterObjectNV] - -
- example: [] - syntax: - content: public static nint DXRegisterObjectNV(nint hDevice, nint dxObject, uint name, ObjectTypeDX type, DXInteropMaskNV access) - parameters: - - id: hDevice - type: System.IntPtr - - id: dxObject - type: System.IntPtr - - id: name - type: System.UInt32 - - id: type - type: OpenTK.Graphics.Wgl.ObjectTypeDX - - id: access - type: OpenTK.Graphics.Wgl.DXInteropMaskNV - return: - type: System.IntPtr - content.vb: Public Shared Function DXRegisterObjectNV(hDevice As IntPtr, dxObject As IntPtr, name As UInteger, type As ObjectTypeDX, access As DXInteropMaskNV) As IntPtr - overload: OpenTK.Graphics.Wgl.Wgl.NV.DXRegisterObjectNV* - nameWithType.vb: Wgl.NV.DXRegisterObjectNV(IntPtr, IntPtr, UInteger, ObjectTypeDX, DXInteropMaskNV) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.DXRegisterObjectNV(System.IntPtr, System.IntPtr, UInteger, OpenTK.Graphics.Wgl.ObjectTypeDX, OpenTK.Graphics.Wgl.DXInteropMaskNV) - name.vb: DXRegisterObjectNV(IntPtr, IntPtr, UInteger, ObjectTypeDX, DXInteropMaskNV) -- uid: OpenTK.Graphics.Wgl.Wgl.NV.DXRegisterObjectNV``1(System.IntPtr,``0@,System.UInt32,OpenTK.Graphics.Wgl.ObjectTypeDX,OpenTK.Graphics.Wgl.DXInteropMaskNV) - commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.DXRegisterObjectNV``1(System.IntPtr,``0@,System.UInt32,OpenTK.Graphics.Wgl.ObjectTypeDX,OpenTK.Graphics.Wgl.DXInteropMaskNV) - id: DXRegisterObjectNV``1(System.IntPtr,``0@,System.UInt32,OpenTK.Graphics.Wgl.ObjectTypeDX,OpenTK.Graphics.Wgl.DXInteropMaskNV) - parent: OpenTK.Graphics.Wgl.Wgl.NV - langs: - - csharp - - vb - name: DXRegisterObjectNV(nint, in T1, uint, ObjectTypeDX, DXInteropMaskNV) - nameWithType: Wgl.NV.DXRegisterObjectNV(nint, in T1, uint, ObjectTypeDX, DXInteropMaskNV) - fullName: OpenTK.Graphics.Wgl.Wgl.NV.DXRegisterObjectNV(nint, in T1, uint, OpenTK.Graphics.Wgl.ObjectTypeDX, OpenTK.Graphics.Wgl.DXInteropMaskNV) - type: Method - source: - id: DXRegisterObjectNV - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 1621 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_NV_DX_interop] - - [entry point: wglDXRegisterObjectNV] - -
- example: [] - syntax: - content: 'public static nint DXRegisterObjectNV(nint hDevice, in T1 dxObject, uint name, ObjectTypeDX type, DXInteropMaskNV access) where T1 : unmanaged' - parameters: - - id: hDevice - type: System.IntPtr - - id: dxObject - type: '{T1}' - - id: name - type: System.UInt32 - - id: type - type: OpenTK.Graphics.Wgl.ObjectTypeDX - - id: access - type: OpenTK.Graphics.Wgl.DXInteropMaskNV - typeParameters: - - id: T1 - return: - type: System.IntPtr - content.vb: Public Shared Function DXRegisterObjectNV(Of T1 As Structure)(hDevice As IntPtr, dxObject As T1, name As UInteger, type As ObjectTypeDX, access As DXInteropMaskNV) As IntPtr - overload: OpenTK.Graphics.Wgl.Wgl.NV.DXRegisterObjectNV* - nameWithType.vb: Wgl.NV.DXRegisterObjectNV(Of T1)(IntPtr, T1, UInteger, ObjectTypeDX, DXInteropMaskNV) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.DXRegisterObjectNV(Of T1)(System.IntPtr, T1, UInteger, OpenTK.Graphics.Wgl.ObjectTypeDX, OpenTK.Graphics.Wgl.DXInteropMaskNV) - name.vb: DXRegisterObjectNV(Of T1)(IntPtr, T1, UInteger, ObjectTypeDX, DXInteropMaskNV) -- uid: OpenTK.Graphics.Wgl.Wgl.NV.DXSetResourceShareHandleNV(System.IntPtr,System.IntPtr) - commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.DXSetResourceShareHandleNV(System.IntPtr,System.IntPtr) - id: DXSetResourceShareHandleNV(System.IntPtr,System.IntPtr) - parent: OpenTK.Graphics.Wgl.Wgl.NV - langs: - - csharp - - vb - name: DXSetResourceShareHandleNV(nint, nint) - nameWithType: Wgl.NV.DXSetResourceShareHandleNV(nint, nint) - fullName: OpenTK.Graphics.Wgl.Wgl.NV.DXSetResourceShareHandleNV(nint, nint) - type: Method - source: - id: DXSetResourceShareHandleNV - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 1632 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_NV_DX_interop] - - [entry point: wglDXSetResourceShareHandleNV] - -
- example: [] - syntax: - content: public static bool DXSetResourceShareHandleNV(nint dxObject, nint shareHandle) - parameters: - - id: dxObject - type: System.IntPtr - - id: shareHandle - type: System.IntPtr - return: - type: System.Boolean - content.vb: Public Shared Function DXSetResourceShareHandleNV(dxObject As IntPtr, shareHandle As IntPtr) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.NV.DXSetResourceShareHandleNV* - nameWithType.vb: Wgl.NV.DXSetResourceShareHandleNV(IntPtr, IntPtr) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.DXSetResourceShareHandleNV(System.IntPtr, System.IntPtr) - name.vb: DXSetResourceShareHandleNV(IntPtr, IntPtr) -- uid: OpenTK.Graphics.Wgl.Wgl.NV.DXSetResourceShareHandleNV``1(``0@,System.IntPtr) - commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.DXSetResourceShareHandleNV``1(``0@,System.IntPtr) - id: DXSetResourceShareHandleNV``1(``0@,System.IntPtr) - parent: OpenTK.Graphics.Wgl.Wgl.NV - langs: - - csharp - - vb - name: DXSetResourceShareHandleNV(in T1, nint) - nameWithType: Wgl.NV.DXSetResourceShareHandleNV(in T1, nint) - fullName: OpenTK.Graphics.Wgl.Wgl.NV.DXSetResourceShareHandleNV(in T1, nint) - type: Method - source: - id: DXSetResourceShareHandleNV - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 1642 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_NV_DX_interop] - - [entry point: wglDXSetResourceShareHandleNV] - -
- example: [] - syntax: - content: 'public static bool DXSetResourceShareHandleNV(in T1 dxObject, nint shareHandle) where T1 : unmanaged' - parameters: - - id: dxObject - type: '{T1}' - - id: shareHandle - type: System.IntPtr - typeParameters: - - id: T1 - return: - type: System.Boolean - content.vb: Public Shared Function DXSetResourceShareHandleNV(Of T1 As Structure)(dxObject As T1, shareHandle As IntPtr) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.NV.DXSetResourceShareHandleNV* - nameWithType.vb: Wgl.NV.DXSetResourceShareHandleNV(Of T1)(T1, IntPtr) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.DXSetResourceShareHandleNV(Of T1)(T1, System.IntPtr) - name.vb: DXSetResourceShareHandleNV(Of T1)(T1, IntPtr) -- uid: OpenTK.Graphics.Wgl.Wgl.NV.DXUnlockObjectsNV(System.IntPtr,System.Int32,System.Span{System.IntPtr}) - commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.DXUnlockObjectsNV(System.IntPtr,System.Int32,System.Span{System.IntPtr}) - id: DXUnlockObjectsNV(System.IntPtr,System.Int32,System.Span{System.IntPtr}) - parent: OpenTK.Graphics.Wgl.Wgl.NV - langs: - - csharp - - vb - name: DXUnlockObjectsNV(nint, int, Span) - nameWithType: Wgl.NV.DXUnlockObjectsNV(nint, int, Span) - fullName: OpenTK.Graphics.Wgl.Wgl.NV.DXUnlockObjectsNV(nint, int, System.Span) - type: Method - source: - id: DXUnlockObjectsNV - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 1655 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_NV_DX_interop] - - [entry point: wglDXUnlockObjectsNV] - -
- example: [] - syntax: - content: public static bool DXUnlockObjectsNV(nint hDevice, int count, Span hObjects) - parameters: - - id: hDevice - type: System.IntPtr - - id: count - type: System.Int32 - - id: hObjects - type: System.Span{System.IntPtr} - return: - type: System.Boolean - content.vb: Public Shared Function DXUnlockObjectsNV(hDevice As IntPtr, count As Integer, hObjects As Span(Of IntPtr)) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.NV.DXUnlockObjectsNV* - nameWithType.vb: Wgl.NV.DXUnlockObjectsNV(IntPtr, Integer, Span(Of IntPtr)) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.DXUnlockObjectsNV(System.IntPtr, Integer, System.Span(Of System.IntPtr)) - name.vb: DXUnlockObjectsNV(IntPtr, Integer, Span(Of IntPtr)) -- uid: OpenTK.Graphics.Wgl.Wgl.NV.DXUnlockObjectsNV(System.IntPtr,System.Int32,System.IntPtr[]) - commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.DXUnlockObjectsNV(System.IntPtr,System.Int32,System.IntPtr[]) - id: DXUnlockObjectsNV(System.IntPtr,System.Int32,System.IntPtr[]) - parent: OpenTK.Graphics.Wgl.Wgl.NV - langs: - - csharp - - vb - name: DXUnlockObjectsNV(nint, int, nint[]) - nameWithType: Wgl.NV.DXUnlockObjectsNV(nint, int, nint[]) - fullName: OpenTK.Graphics.Wgl.Wgl.NV.DXUnlockObjectsNV(nint, int, nint[]) - type: Method - source: - id: DXUnlockObjectsNV - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 1667 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_NV_DX_interop] - - [entry point: wglDXUnlockObjectsNV] - -
- example: [] - syntax: - content: public static bool DXUnlockObjectsNV(nint hDevice, int count, nint[] hObjects) - parameters: - - id: hDevice - type: System.IntPtr - - id: count - type: System.Int32 - - id: hObjects - type: System.IntPtr[] - return: - type: System.Boolean - content.vb: Public Shared Function DXUnlockObjectsNV(hDevice As IntPtr, count As Integer, hObjects As IntPtr()) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.NV.DXUnlockObjectsNV* - nameWithType.vb: Wgl.NV.DXUnlockObjectsNV(IntPtr, Integer, IntPtr()) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.DXUnlockObjectsNV(System.IntPtr, Integer, System.IntPtr()) - name.vb: DXUnlockObjectsNV(IntPtr, Integer, IntPtr()) -- uid: OpenTK.Graphics.Wgl.Wgl.NV.DXUnlockObjectsNV(System.IntPtr,System.Int32,System.IntPtr@) - commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.DXUnlockObjectsNV(System.IntPtr,System.Int32,System.IntPtr@) - id: DXUnlockObjectsNV(System.IntPtr,System.Int32,System.IntPtr@) - parent: OpenTK.Graphics.Wgl.Wgl.NV - langs: - - csharp - - vb - name: DXUnlockObjectsNV(nint, int, in nint) - nameWithType: Wgl.NV.DXUnlockObjectsNV(nint, int, in nint) - fullName: OpenTK.Graphics.Wgl.Wgl.NV.DXUnlockObjectsNV(nint, int, in nint) - type: Method - source: - id: DXUnlockObjectsNV - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 1679 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_NV_DX_interop] - - [entry point: wglDXUnlockObjectsNV] - -
- example: [] - syntax: - content: public static bool DXUnlockObjectsNV(nint hDevice, int count, in nint hObjects) - parameters: - - id: hDevice - type: System.IntPtr - - id: count - type: System.Int32 - - id: hObjects - type: System.IntPtr - return: - type: System.Boolean - content.vb: Public Shared Function DXUnlockObjectsNV(hDevice As IntPtr, count As Integer, hObjects As IntPtr) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.NV.DXUnlockObjectsNV* - nameWithType.vb: Wgl.NV.DXUnlockObjectsNV(IntPtr, Integer, IntPtr) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.DXUnlockObjectsNV(System.IntPtr, Integer, System.IntPtr) - name.vb: DXUnlockObjectsNV(IntPtr, Integer, IntPtr) -- uid: OpenTK.Graphics.Wgl.Wgl.NV.DXUnregisterObjectNV(System.IntPtr,System.IntPtr) - commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.DXUnregisterObjectNV(System.IntPtr,System.IntPtr) - id: DXUnregisterObjectNV(System.IntPtr,System.IntPtr) - parent: OpenTK.Graphics.Wgl.Wgl.NV - langs: - - csharp - - vb - name: DXUnregisterObjectNV(nint, nint) - nameWithType: Wgl.NV.DXUnregisterObjectNV(nint, nint) - fullName: OpenTK.Graphics.Wgl.Wgl.NV.DXUnregisterObjectNV(nint, nint) - type: Method - source: - id: DXUnregisterObjectNV - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 1691 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - example: [] - syntax: - content: public static bool DXUnregisterObjectNV(nint hDevice, nint hObject) - parameters: - - id: hDevice - type: System.IntPtr - - id: hObject - type: System.IntPtr - return: - type: System.Boolean - content.vb: Public Shared Function DXUnregisterObjectNV(hDevice As IntPtr, hObject As IntPtr) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.NV.DXUnregisterObjectNV* - nameWithType.vb: Wgl.NV.DXUnregisterObjectNV(IntPtr, IntPtr) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.DXUnregisterObjectNV(System.IntPtr, System.IntPtr) - name.vb: DXUnregisterObjectNV(IntPtr, IntPtr) -- uid: OpenTK.Graphics.Wgl.Wgl.NV.EnumerateVideoCaptureDevicesNV(System.IntPtr,System.Span{System.IntPtr}) - commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.EnumerateVideoCaptureDevicesNV(System.IntPtr,System.Span{System.IntPtr}) - id: EnumerateVideoCaptureDevicesNV(System.IntPtr,System.Span{System.IntPtr}) - parent: OpenTK.Graphics.Wgl.Wgl.NV - langs: - - csharp - - vb - name: EnumerateVideoCaptureDevicesNV(nint, Span) - nameWithType: Wgl.NV.EnumerateVideoCaptureDevicesNV(nint, Span) - fullName: OpenTK.Graphics.Wgl.Wgl.NV.EnumerateVideoCaptureDevicesNV(nint, System.Span) - type: Method - source: - id: EnumerateVideoCaptureDevicesNV - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 1700 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_NV_video_capture] - - [entry point: wglEnumerateVideoCaptureDevicesNV] - -
- example: [] - syntax: - content: public static uint EnumerateVideoCaptureDevicesNV(nint hDc, Span phDeviceList) - parameters: - - id: hDc - type: System.IntPtr - - id: phDeviceList - type: System.Span{System.IntPtr} - return: - type: System.UInt32 - content.vb: Public Shared Function EnumerateVideoCaptureDevicesNV(hDc As IntPtr, phDeviceList As Span(Of IntPtr)) As UInteger - overload: OpenTK.Graphics.Wgl.Wgl.NV.EnumerateVideoCaptureDevicesNV* - nameWithType.vb: Wgl.NV.EnumerateVideoCaptureDevicesNV(IntPtr, Span(Of IntPtr)) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.EnumerateVideoCaptureDevicesNV(System.IntPtr, System.Span(Of System.IntPtr)) - name.vb: EnumerateVideoCaptureDevicesNV(IntPtr, Span(Of IntPtr)) -- uid: OpenTK.Graphics.Wgl.Wgl.NV.EnumerateVideoCaptureDevicesNV(System.IntPtr,System.IntPtr[]) - commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.EnumerateVideoCaptureDevicesNV(System.IntPtr,System.IntPtr[]) - id: EnumerateVideoCaptureDevicesNV(System.IntPtr,System.IntPtr[]) - parent: OpenTK.Graphics.Wgl.Wgl.NV - langs: - - csharp - - vb - name: EnumerateVideoCaptureDevicesNV(nint, nint[]) - nameWithType: Wgl.NV.EnumerateVideoCaptureDevicesNV(nint, nint[]) - fullName: OpenTK.Graphics.Wgl.Wgl.NV.EnumerateVideoCaptureDevicesNV(nint, nint[]) - type: Method - source: - id: EnumerateVideoCaptureDevicesNV - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 1710 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_NV_video_capture] - - [entry point: wglEnumerateVideoCaptureDevicesNV] - -
- example: [] - syntax: - content: public static uint EnumerateVideoCaptureDevicesNV(nint hDc, nint[] phDeviceList) - parameters: - - id: hDc - type: System.IntPtr - - id: phDeviceList - type: System.IntPtr[] - return: - type: System.UInt32 - content.vb: Public Shared Function EnumerateVideoCaptureDevicesNV(hDc As IntPtr, phDeviceList As IntPtr()) As UInteger - overload: OpenTK.Graphics.Wgl.Wgl.NV.EnumerateVideoCaptureDevicesNV* - nameWithType.vb: Wgl.NV.EnumerateVideoCaptureDevicesNV(IntPtr, IntPtr()) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.EnumerateVideoCaptureDevicesNV(System.IntPtr, System.IntPtr()) - name.vb: EnumerateVideoCaptureDevicesNV(IntPtr, IntPtr()) -- uid: OpenTK.Graphics.Wgl.Wgl.NV.EnumerateVideoCaptureDevicesNV(System.IntPtr,System.IntPtr@) - commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.EnumerateVideoCaptureDevicesNV(System.IntPtr,System.IntPtr@) - id: EnumerateVideoCaptureDevicesNV(System.IntPtr,System.IntPtr@) - parent: OpenTK.Graphics.Wgl.Wgl.NV - langs: - - csharp - - vb - name: EnumerateVideoCaptureDevicesNV(nint, ref nint) - nameWithType: Wgl.NV.EnumerateVideoCaptureDevicesNV(nint, ref nint) - fullName: OpenTK.Graphics.Wgl.Wgl.NV.EnumerateVideoCaptureDevicesNV(nint, ref nint) - type: Method - source: - id: EnumerateVideoCaptureDevicesNV - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 1720 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_NV_video_capture] - - [entry point: wglEnumerateVideoCaptureDevicesNV] - -
- example: [] - syntax: - content: public static uint EnumerateVideoCaptureDevicesNV(nint hDc, ref nint phDeviceList) - parameters: - - id: hDc - type: System.IntPtr - - id: phDeviceList - type: System.IntPtr - return: - type: System.UInt32 - content.vb: Public Shared Function EnumerateVideoCaptureDevicesNV(hDc As IntPtr, phDeviceList As IntPtr) As UInteger - overload: OpenTK.Graphics.Wgl.Wgl.NV.EnumerateVideoCaptureDevicesNV* - nameWithType.vb: Wgl.NV.EnumerateVideoCaptureDevicesNV(IntPtr, IntPtr) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.EnumerateVideoCaptureDevicesNV(System.IntPtr, System.IntPtr) - name.vb: EnumerateVideoCaptureDevicesNV(IntPtr, IntPtr) -- uid: OpenTK.Graphics.Wgl.Wgl.NV.EnumerateVideoDevicesNV(System.IntPtr,System.Span{System.IntPtr}) - commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.EnumerateVideoDevicesNV(System.IntPtr,System.Span{System.IntPtr}) - id: EnumerateVideoDevicesNV(System.IntPtr,System.Span{System.IntPtr}) - parent: OpenTK.Graphics.Wgl.Wgl.NV - langs: - - csharp - - vb - name: EnumerateVideoDevicesNV(nint, Span) - nameWithType: Wgl.NV.EnumerateVideoDevicesNV(nint, Span) - fullName: OpenTK.Graphics.Wgl.Wgl.NV.EnumerateVideoDevicesNV(nint, System.Span) - type: Method - source: - id: EnumerateVideoDevicesNV - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 1730 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_NV_present_video] - - [entry point: wglEnumerateVideoDevicesNV] - -
- example: [] - syntax: - content: public static int EnumerateVideoDevicesNV(nint hDc, Span phDeviceList) - parameters: - - id: hDc - type: System.IntPtr - - id: phDeviceList - type: System.Span{System.IntPtr} - return: - type: System.Int32 - content.vb: Public Shared Function EnumerateVideoDevicesNV(hDc As IntPtr, phDeviceList As Span(Of IntPtr)) As Integer - overload: OpenTK.Graphics.Wgl.Wgl.NV.EnumerateVideoDevicesNV* - nameWithType.vb: Wgl.NV.EnumerateVideoDevicesNV(IntPtr, Span(Of IntPtr)) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.EnumerateVideoDevicesNV(System.IntPtr, System.Span(Of System.IntPtr)) - name.vb: EnumerateVideoDevicesNV(IntPtr, Span(Of IntPtr)) -- uid: OpenTK.Graphics.Wgl.Wgl.NV.EnumerateVideoDevicesNV(System.IntPtr,System.IntPtr[]) - commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.EnumerateVideoDevicesNV(System.IntPtr,System.IntPtr[]) - id: EnumerateVideoDevicesNV(System.IntPtr,System.IntPtr[]) - parent: OpenTK.Graphics.Wgl.Wgl.NV - langs: - - csharp - - vb - name: EnumerateVideoDevicesNV(nint, nint[]) - nameWithType: Wgl.NV.EnumerateVideoDevicesNV(nint, nint[]) - fullName: OpenTK.Graphics.Wgl.Wgl.NV.EnumerateVideoDevicesNV(nint, nint[]) - type: Method - source: - id: EnumerateVideoDevicesNV - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 1740 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_NV_present_video] - - [entry point: wglEnumerateVideoDevicesNV] - -
- example: [] - syntax: - content: public static int EnumerateVideoDevicesNV(nint hDc, nint[] phDeviceList) - parameters: - - id: hDc - type: System.IntPtr - - id: phDeviceList - type: System.IntPtr[] - return: - type: System.Int32 - content.vb: Public Shared Function EnumerateVideoDevicesNV(hDc As IntPtr, phDeviceList As IntPtr()) As Integer - overload: OpenTK.Graphics.Wgl.Wgl.NV.EnumerateVideoDevicesNV* - nameWithType.vb: Wgl.NV.EnumerateVideoDevicesNV(IntPtr, IntPtr()) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.EnumerateVideoDevicesNV(System.IntPtr, System.IntPtr()) - name.vb: EnumerateVideoDevicesNV(IntPtr, IntPtr()) -- uid: OpenTK.Graphics.Wgl.Wgl.NV.EnumerateVideoDevicesNV(System.IntPtr,System.IntPtr@) - commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.EnumerateVideoDevicesNV(System.IntPtr,System.IntPtr@) - id: EnumerateVideoDevicesNV(System.IntPtr,System.IntPtr@) - parent: OpenTK.Graphics.Wgl.Wgl.NV - langs: - - csharp - - vb - name: EnumerateVideoDevicesNV(nint, ref nint) - nameWithType: Wgl.NV.EnumerateVideoDevicesNV(nint, ref nint) - fullName: OpenTK.Graphics.Wgl.Wgl.NV.EnumerateVideoDevicesNV(nint, ref nint) - type: Method - source: - id: EnumerateVideoDevicesNV - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 1750 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_NV_present_video] - - [entry point: wglEnumerateVideoDevicesNV] - -
- example: [] - syntax: - content: public static int EnumerateVideoDevicesNV(nint hDc, ref nint phDeviceList) - parameters: - - id: hDc - type: System.IntPtr - - id: phDeviceList - type: System.IntPtr - return: - type: System.Int32 - content.vb: Public Shared Function EnumerateVideoDevicesNV(hDc As IntPtr, phDeviceList As IntPtr) As Integer - overload: OpenTK.Graphics.Wgl.Wgl.NV.EnumerateVideoDevicesNV* - nameWithType.vb: Wgl.NV.EnumerateVideoDevicesNV(IntPtr, IntPtr) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.EnumerateVideoDevicesNV(System.IntPtr, System.IntPtr) - name.vb: EnumerateVideoDevicesNV(IntPtr, IntPtr) -- uid: OpenTK.Graphics.Wgl.Wgl.NV.EnumGpuDevicesNV(System.IntPtr,System.UInt32,System.Span{OpenTK.Graphics.Wgl._GPU_DEVICE}) - commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.EnumGpuDevicesNV(System.IntPtr,System.UInt32,System.Span{OpenTK.Graphics.Wgl._GPU_DEVICE}) - id: EnumGpuDevicesNV(System.IntPtr,System.UInt32,System.Span{OpenTK.Graphics.Wgl._GPU_DEVICE}) - parent: OpenTK.Graphics.Wgl.Wgl.NV - langs: - - csharp - - vb - name: EnumGpuDevicesNV(nint, uint, Span<_GPU_DEVICE>) - nameWithType: Wgl.NV.EnumGpuDevicesNV(nint, uint, Span<_GPU_DEVICE>) - fullName: OpenTK.Graphics.Wgl.Wgl.NV.EnumGpuDevicesNV(nint, uint, System.Span) - type: Method - source: - id: EnumGpuDevicesNV - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 1760 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_NV_gpu_affinity] - - [entry point: wglEnumGpuDevicesNV] - -
- example: [] - syntax: - content: public static bool EnumGpuDevicesNV(nint hGpu, uint iDeviceIndex, Span<_GPU_DEVICE> lpGpuDevice) - parameters: - - id: hGpu - type: System.IntPtr - - id: iDeviceIndex - type: System.UInt32 - - id: lpGpuDevice - type: System.Span{OpenTK.Graphics.Wgl._GPU_DEVICE} - return: - type: System.Boolean - content.vb: Public Shared Function EnumGpuDevicesNV(hGpu As IntPtr, iDeviceIndex As UInteger, lpGpuDevice As Span(Of _GPU_DEVICE)) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.NV.EnumGpuDevicesNV* - nameWithType.vb: Wgl.NV.EnumGpuDevicesNV(IntPtr, UInteger, Span(Of _GPU_DEVICE)) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.EnumGpuDevicesNV(System.IntPtr, UInteger, System.Span(Of OpenTK.Graphics.Wgl._GPU_DEVICE)) - name.vb: EnumGpuDevicesNV(IntPtr, UInteger, Span(Of _GPU_DEVICE)) -- uid: OpenTK.Graphics.Wgl.Wgl.NV.EnumGpuDevicesNV(System.IntPtr,System.UInt32,OpenTK.Graphics.Wgl._GPU_DEVICE[]) - commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.EnumGpuDevicesNV(System.IntPtr,System.UInt32,OpenTK.Graphics.Wgl._GPU_DEVICE[]) - id: EnumGpuDevicesNV(System.IntPtr,System.UInt32,OpenTK.Graphics.Wgl._GPU_DEVICE[]) - parent: OpenTK.Graphics.Wgl.Wgl.NV - langs: - - csharp - - vb - name: EnumGpuDevicesNV(nint, uint, _GPU_DEVICE[]) - nameWithType: Wgl.NV.EnumGpuDevicesNV(nint, uint, _GPU_DEVICE[]) - fullName: OpenTK.Graphics.Wgl.Wgl.NV.EnumGpuDevicesNV(nint, uint, OpenTK.Graphics.Wgl._GPU_DEVICE[]) - type: Method - source: - id: EnumGpuDevicesNV - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 1772 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_NV_gpu_affinity] - - [entry point: wglEnumGpuDevicesNV] - -
- example: [] - syntax: - content: public static bool EnumGpuDevicesNV(nint hGpu, uint iDeviceIndex, _GPU_DEVICE[] lpGpuDevice) - parameters: - - id: hGpu - type: System.IntPtr - - id: iDeviceIndex - type: System.UInt32 - - id: lpGpuDevice - type: OpenTK.Graphics.Wgl._GPU_DEVICE[] - return: - type: System.Boolean - content.vb: Public Shared Function EnumGpuDevicesNV(hGpu As IntPtr, iDeviceIndex As UInteger, lpGpuDevice As _GPU_DEVICE()) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.NV.EnumGpuDevicesNV* - nameWithType.vb: Wgl.NV.EnumGpuDevicesNV(IntPtr, UInteger, _GPU_DEVICE()) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.EnumGpuDevicesNV(System.IntPtr, UInteger, OpenTK.Graphics.Wgl._GPU_DEVICE()) - name.vb: EnumGpuDevicesNV(IntPtr, UInteger, _GPU_DEVICE()) -- uid: OpenTK.Graphics.Wgl.Wgl.NV.EnumGpuDevicesNV(System.IntPtr,System.UInt32,OpenTK.Graphics.Wgl._GPU_DEVICE@) - commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.EnumGpuDevicesNV(System.IntPtr,System.UInt32,OpenTK.Graphics.Wgl._GPU_DEVICE@) - id: EnumGpuDevicesNV(System.IntPtr,System.UInt32,OpenTK.Graphics.Wgl._GPU_DEVICE@) - parent: OpenTK.Graphics.Wgl.Wgl.NV - langs: - - csharp - - vb - name: EnumGpuDevicesNV(nint, uint, ref _GPU_DEVICE) - nameWithType: Wgl.NV.EnumGpuDevicesNV(nint, uint, ref _GPU_DEVICE) - fullName: OpenTK.Graphics.Wgl.Wgl.NV.EnumGpuDevicesNV(nint, uint, ref OpenTK.Graphics.Wgl._GPU_DEVICE) - type: Method - source: - id: EnumGpuDevicesNV - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 1784 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_NV_gpu_affinity] - - [entry point: wglEnumGpuDevicesNV] - -
- example: [] - syntax: - content: public static bool EnumGpuDevicesNV(nint hGpu, uint iDeviceIndex, ref _GPU_DEVICE lpGpuDevice) - parameters: - - id: hGpu - type: System.IntPtr - - id: iDeviceIndex - type: System.UInt32 - - id: lpGpuDevice - type: OpenTK.Graphics.Wgl._GPU_DEVICE - return: - type: System.Boolean - content.vb: Public Shared Function EnumGpuDevicesNV(hGpu As IntPtr, iDeviceIndex As UInteger, lpGpuDevice As _GPU_DEVICE) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.NV.EnumGpuDevicesNV* - nameWithType.vb: Wgl.NV.EnumGpuDevicesNV(IntPtr, UInteger, _GPU_DEVICE) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.EnumGpuDevicesNV(System.IntPtr, UInteger, OpenTK.Graphics.Wgl._GPU_DEVICE) - name.vb: EnumGpuDevicesNV(IntPtr, UInteger, _GPU_DEVICE) -- uid: OpenTK.Graphics.Wgl.Wgl.NV.EnumGpusFromAffinityDCNV(System.IntPtr,System.UInt32,System.IntPtr@) - commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.EnumGpusFromAffinityDCNV(System.IntPtr,System.UInt32,System.IntPtr@) - id: EnumGpusFromAffinityDCNV(System.IntPtr,System.UInt32,System.IntPtr@) - parent: OpenTK.Graphics.Wgl.Wgl.NV - langs: - - csharp - - vb - name: EnumGpusFromAffinityDCNV(nint, uint, out nint) - nameWithType: Wgl.NV.EnumGpusFromAffinityDCNV(nint, uint, out nint) - fullName: OpenTK.Graphics.Wgl.Wgl.NV.EnumGpusFromAffinityDCNV(nint, uint, out nint) - type: Method - source: - id: EnumGpusFromAffinityDCNV - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 1796 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_NV_gpu_affinity] - - [entry point: wglEnumGpusFromAffinityDCNV] - -
- example: [] - syntax: - content: public static bool EnumGpusFromAffinityDCNV(nint hAffinityDC, uint iGpuIndex, out nint hGpu) - parameters: - - id: hAffinityDC - type: System.IntPtr - - id: iGpuIndex - type: System.UInt32 - - id: hGpu - type: System.IntPtr - return: - type: System.Boolean - content.vb: Public Shared Function EnumGpusFromAffinityDCNV(hAffinityDC As IntPtr, iGpuIndex As UInteger, hGpu As IntPtr) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.NV.EnumGpusFromAffinityDCNV* - nameWithType.vb: Wgl.NV.EnumGpusFromAffinityDCNV(IntPtr, UInteger, IntPtr) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.EnumGpusFromAffinityDCNV(System.IntPtr, UInteger, System.IntPtr) - name.vb: EnumGpusFromAffinityDCNV(IntPtr, UInteger, IntPtr) -- uid: OpenTK.Graphics.Wgl.Wgl.NV.EnumGpusNV(System.UInt32,System.IntPtr@) - commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.EnumGpusNV(System.UInt32,System.IntPtr@) - id: EnumGpusNV(System.UInt32,System.IntPtr@) - parent: OpenTK.Graphics.Wgl.Wgl.NV - langs: - - csharp - - vb - name: EnumGpusNV(uint, out nint) - nameWithType: Wgl.NV.EnumGpusNV(uint, out nint) - fullName: OpenTK.Graphics.Wgl.Wgl.NV.EnumGpusNV(uint, out nint) - type: Method - source: - id: EnumGpusNV - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 1808 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_NV_gpu_affinity] - - [entry point: wglEnumGpusNV] - -
- example: [] - syntax: - content: public static bool EnumGpusNV(uint iGpuIndex, out nint phGpu) - parameters: - - id: iGpuIndex - type: System.UInt32 - - id: phGpu - type: System.IntPtr - return: - type: System.Boolean - content.vb: Public Shared Function EnumGpusNV(iGpuIndex As UInteger, phGpu As IntPtr) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.NV.EnumGpusNV* - nameWithType.vb: Wgl.NV.EnumGpusNV(UInteger, IntPtr) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.EnumGpusNV(UInteger, System.IntPtr) - name.vb: EnumGpusNV(UInteger, IntPtr) -- uid: OpenTK.Graphics.Wgl.Wgl.NV.FreeMemoryNV(System.IntPtr) - commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.FreeMemoryNV(System.IntPtr) - id: FreeMemoryNV(System.IntPtr) - parent: OpenTK.Graphics.Wgl.Wgl.NV - langs: - - csharp - - vb - name: FreeMemoryNV(nint) - nameWithType: Wgl.NV.FreeMemoryNV(nint) - fullName: OpenTK.Graphics.Wgl.Wgl.NV.FreeMemoryNV(nint) - type: Method - source: - id: FreeMemoryNV - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 1820 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_NV_vertex_array_range] - - [entry point: wglFreeMemoryNV] - -
- example: [] - syntax: - content: public static void FreeMemoryNV(nint pointer) - parameters: - - id: pointer - type: System.IntPtr - content.vb: Public Shared Sub FreeMemoryNV(pointer As IntPtr) - overload: OpenTK.Graphics.Wgl.Wgl.NV.FreeMemoryNV* - nameWithType.vb: Wgl.NV.FreeMemoryNV(IntPtr) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.FreeMemoryNV(System.IntPtr) - name.vb: FreeMemoryNV(IntPtr) -- uid: OpenTK.Graphics.Wgl.Wgl.NV.FreeMemoryNV``1(System.Span{``0}) - commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.FreeMemoryNV``1(System.Span{``0}) - id: FreeMemoryNV``1(System.Span{``0}) - parent: OpenTK.Graphics.Wgl.Wgl.NV - langs: - - csharp - - vb - name: FreeMemoryNV(Span) - nameWithType: Wgl.NV.FreeMemoryNV(Span) - fullName: OpenTK.Graphics.Wgl.Wgl.NV.FreeMemoryNV(System.Span) - type: Method - source: - id: FreeMemoryNV - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 1826 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_NV_vertex_array_range] - - [entry point: wglFreeMemoryNV] - -
- example: [] - syntax: - content: 'public static void FreeMemoryNV(Span pointer) where T1 : unmanaged' - parameters: - - id: pointer - type: System.Span{{T1}} - typeParameters: - - id: T1 - content.vb: Public Shared Sub FreeMemoryNV(Of T1 As Structure)(pointer As Span(Of T1)) - overload: OpenTK.Graphics.Wgl.Wgl.NV.FreeMemoryNV* - nameWithType.vb: Wgl.NV.FreeMemoryNV(Of T1)(Span(Of T1)) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.FreeMemoryNV(Of T1)(System.Span(Of T1)) - name.vb: FreeMemoryNV(Of T1)(Span(Of T1)) -- uid: OpenTK.Graphics.Wgl.Wgl.NV.FreeMemoryNV``1(``0[]) - commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.FreeMemoryNV``1(``0[]) - id: FreeMemoryNV``1(``0[]) - parent: OpenTK.Graphics.Wgl.Wgl.NV - langs: - - csharp - - vb - name: FreeMemoryNV(T1[]) - nameWithType: Wgl.NV.FreeMemoryNV(T1[]) - fullName: OpenTK.Graphics.Wgl.Wgl.NV.FreeMemoryNV(T1[]) - type: Method - source: - id: FreeMemoryNV - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 1835 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_NV_vertex_array_range] - - [entry point: wglFreeMemoryNV] - -
- example: [] - syntax: - content: 'public static void FreeMemoryNV(T1[] pointer) where T1 : unmanaged' - parameters: - - id: pointer - type: '{T1}[]' - typeParameters: - - id: T1 - content.vb: Public Shared Sub FreeMemoryNV(Of T1 As Structure)(pointer As T1()) - overload: OpenTK.Graphics.Wgl.Wgl.NV.FreeMemoryNV* - nameWithType.vb: Wgl.NV.FreeMemoryNV(Of T1)(T1()) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.FreeMemoryNV(Of T1)(T1()) - name.vb: FreeMemoryNV(Of T1)(T1()) -- uid: OpenTK.Graphics.Wgl.Wgl.NV.FreeMemoryNV``1(``0@) - commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.FreeMemoryNV``1(``0@) - id: FreeMemoryNV``1(``0@) - parent: OpenTK.Graphics.Wgl.Wgl.NV - langs: - - csharp - - vb - name: FreeMemoryNV(ref T1) - nameWithType: Wgl.NV.FreeMemoryNV(ref T1) - fullName: OpenTK.Graphics.Wgl.Wgl.NV.FreeMemoryNV(ref T1) - type: Method - source: - id: FreeMemoryNV - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 1844 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_NV_vertex_array_range] - - [entry point: wglFreeMemoryNV] - -
- example: [] - syntax: - content: 'public static void FreeMemoryNV(ref T1 pointer) where T1 : unmanaged' - parameters: - - id: pointer - type: '{T1}' - typeParameters: - - id: T1 - content.vb: Public Shared Sub FreeMemoryNV(Of T1 As Structure)(pointer As T1) - overload: OpenTK.Graphics.Wgl.Wgl.NV.FreeMemoryNV* - nameWithType.vb: Wgl.NV.FreeMemoryNV(Of T1)(T1) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.FreeMemoryNV(Of T1)(T1) - name.vb: FreeMemoryNV(Of T1)(T1) -- uid: OpenTK.Graphics.Wgl.Wgl.NV.GetVideoDeviceNV(System.IntPtr,System.Int32,System.Span{System.IntPtr}) - commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.GetVideoDeviceNV(System.IntPtr,System.Int32,System.Span{System.IntPtr}) - id: GetVideoDeviceNV(System.IntPtr,System.Int32,System.Span{System.IntPtr}) - parent: OpenTK.Graphics.Wgl.Wgl.NV - langs: - - csharp - - vb - name: GetVideoDeviceNV(nint, int, Span) - nameWithType: Wgl.NV.GetVideoDeviceNV(nint, int, Span) - fullName: OpenTK.Graphics.Wgl.Wgl.NV.GetVideoDeviceNV(nint, int, System.Span) - type: Method - source: - id: GetVideoDeviceNV - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 1853 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_NV_video_output] - - [entry point: wglGetVideoDeviceNV] - -
- example: [] - syntax: - content: public static bool GetVideoDeviceNV(nint hDC, int numDevices, Span hVideoDevice) - parameters: - - id: hDC - type: System.IntPtr - - id: numDevices - type: System.Int32 - - id: hVideoDevice - type: System.Span{System.IntPtr} - return: - type: System.Boolean - content.vb: Public Shared Function GetVideoDeviceNV(hDC As IntPtr, numDevices As Integer, hVideoDevice As Span(Of IntPtr)) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.NV.GetVideoDeviceNV* - nameWithType.vb: Wgl.NV.GetVideoDeviceNV(IntPtr, Integer, Span(Of IntPtr)) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.GetVideoDeviceNV(System.IntPtr, Integer, System.Span(Of System.IntPtr)) - name.vb: GetVideoDeviceNV(IntPtr, Integer, Span(Of IntPtr)) -- uid: OpenTK.Graphics.Wgl.Wgl.NV.GetVideoDeviceNV(System.IntPtr,System.Int32,System.IntPtr[]) - commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.GetVideoDeviceNV(System.IntPtr,System.Int32,System.IntPtr[]) - id: GetVideoDeviceNV(System.IntPtr,System.Int32,System.IntPtr[]) - parent: OpenTK.Graphics.Wgl.Wgl.NV - langs: - - csharp - - vb - name: GetVideoDeviceNV(nint, int, nint[]) - nameWithType: Wgl.NV.GetVideoDeviceNV(nint, int, nint[]) - fullName: OpenTK.Graphics.Wgl.Wgl.NV.GetVideoDeviceNV(nint, int, nint[]) - type: Method - source: - id: GetVideoDeviceNV - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 1865 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_NV_video_output] - - [entry point: wglGetVideoDeviceNV] - -
- example: [] - syntax: - content: public static bool GetVideoDeviceNV(nint hDC, int numDevices, nint[] hVideoDevice) - parameters: - - id: hDC - type: System.IntPtr - - id: numDevices - type: System.Int32 - - id: hVideoDevice - type: System.IntPtr[] - return: - type: System.Boolean - content.vb: Public Shared Function GetVideoDeviceNV(hDC As IntPtr, numDevices As Integer, hVideoDevice As IntPtr()) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.NV.GetVideoDeviceNV* - nameWithType.vb: Wgl.NV.GetVideoDeviceNV(IntPtr, Integer, IntPtr()) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.GetVideoDeviceNV(System.IntPtr, Integer, System.IntPtr()) - name.vb: GetVideoDeviceNV(IntPtr, Integer, IntPtr()) -- uid: OpenTK.Graphics.Wgl.Wgl.NV.GetVideoDeviceNV(System.IntPtr,System.Int32,System.IntPtr@) - commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.GetVideoDeviceNV(System.IntPtr,System.Int32,System.IntPtr@) - id: GetVideoDeviceNV(System.IntPtr,System.Int32,System.IntPtr@) - parent: OpenTK.Graphics.Wgl.Wgl.NV - langs: - - csharp - - vb - name: GetVideoDeviceNV(nint, int, ref nint) - nameWithType: Wgl.NV.GetVideoDeviceNV(nint, int, ref nint) - fullName: OpenTK.Graphics.Wgl.Wgl.NV.GetVideoDeviceNV(nint, int, ref nint) - type: Method - source: - id: GetVideoDeviceNV - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 1877 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_NV_video_output] - - [entry point: wglGetVideoDeviceNV] - -
- example: [] - syntax: - content: public static bool GetVideoDeviceNV(nint hDC, int numDevices, ref nint hVideoDevice) - parameters: - - id: hDC - type: System.IntPtr - - id: numDevices - type: System.Int32 - - id: hVideoDevice - type: System.IntPtr - return: - type: System.Boolean - content.vb: Public Shared Function GetVideoDeviceNV(hDC As IntPtr, numDevices As Integer, hVideoDevice As IntPtr) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.NV.GetVideoDeviceNV* - nameWithType.vb: Wgl.NV.GetVideoDeviceNV(IntPtr, Integer, IntPtr) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.GetVideoDeviceNV(System.IntPtr, Integer, System.IntPtr) - name.vb: GetVideoDeviceNV(IntPtr, Integer, IntPtr) -- uid: OpenTK.Graphics.Wgl.Wgl.NV.GetVideoInfoNV(System.IntPtr,System.UInt64@,System.UInt64@) - commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.GetVideoInfoNV(System.IntPtr,System.UInt64@,System.UInt64@) - id: GetVideoInfoNV(System.IntPtr,System.UInt64@,System.UInt64@) - parent: OpenTK.Graphics.Wgl.Wgl.NV - langs: - - csharp - - vb - name: GetVideoInfoNV(nint, out ulong, out ulong) - nameWithType: Wgl.NV.GetVideoInfoNV(nint, out ulong, out ulong) - fullName: OpenTK.Graphics.Wgl.Wgl.NV.GetVideoInfoNV(nint, out ulong, out ulong) - type: Method - source: - id: GetVideoInfoNV - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 1889 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_NV_video_output] - - [entry point: wglGetVideoInfoNV] - -
- example: [] - syntax: - content: public static bool GetVideoInfoNV(nint hpVideoDevice, out ulong pulCounterOutputPbuffer, out ulong pulCounterOutputVideo) - parameters: - - id: hpVideoDevice - type: System.IntPtr - - id: pulCounterOutputPbuffer - type: System.UInt64 - - id: pulCounterOutputVideo - type: System.UInt64 - return: - type: System.Boolean - content.vb: Public Shared Function GetVideoInfoNV(hpVideoDevice As IntPtr, pulCounterOutputPbuffer As ULong, pulCounterOutputVideo As ULong) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.NV.GetVideoInfoNV* - nameWithType.vb: Wgl.NV.GetVideoInfoNV(IntPtr, ULong, ULong) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.GetVideoInfoNV(System.IntPtr, ULong, ULong) - name.vb: GetVideoInfoNV(IntPtr, ULong, ULong) -- uid: OpenTK.Graphics.Wgl.Wgl.NV.JoinSwapGroupNV(System.IntPtr,System.UInt32) - commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.JoinSwapGroupNV(System.IntPtr,System.UInt32) - id: JoinSwapGroupNV(System.IntPtr,System.UInt32) - parent: OpenTK.Graphics.Wgl.Wgl.NV - langs: - - csharp - - vb - name: JoinSwapGroupNV(nint, uint) - nameWithType: Wgl.NV.JoinSwapGroupNV(nint, uint) - fullName: OpenTK.Graphics.Wgl.Wgl.NV.JoinSwapGroupNV(nint, uint) - type: Method - source: - id: JoinSwapGroupNV - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 1902 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - example: [] - syntax: - content: public static bool JoinSwapGroupNV(nint hDC, uint group) - parameters: - - id: hDC - type: System.IntPtr - - id: group - type: System.UInt32 - return: - type: System.Boolean - content.vb: Public Shared Function JoinSwapGroupNV(hDC As IntPtr, group As UInteger) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.NV.JoinSwapGroupNV* - nameWithType.vb: Wgl.NV.JoinSwapGroupNV(IntPtr, UInteger) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.JoinSwapGroupNV(System.IntPtr, UInteger) - name.vb: JoinSwapGroupNV(IntPtr, UInteger) -- uid: OpenTK.Graphics.Wgl.Wgl.NV.LockVideoCaptureDeviceNV(System.IntPtr,System.IntPtr) - commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.LockVideoCaptureDeviceNV(System.IntPtr,System.IntPtr) - id: LockVideoCaptureDeviceNV(System.IntPtr,System.IntPtr) - parent: OpenTK.Graphics.Wgl.Wgl.NV - langs: - - csharp - - vb - name: LockVideoCaptureDeviceNV(nint, nint) - nameWithType: Wgl.NV.LockVideoCaptureDeviceNV(nint, nint) - fullName: OpenTK.Graphics.Wgl.Wgl.NV.LockVideoCaptureDeviceNV(nint, nint) - type: Method - source: - id: LockVideoCaptureDeviceNV - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 1911 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - example: [] - syntax: - content: public static bool LockVideoCaptureDeviceNV(nint hDc, nint hDevice) - parameters: - - id: hDc - type: System.IntPtr - - id: hDevice - type: System.IntPtr - return: - type: System.Boolean - content.vb: Public Shared Function LockVideoCaptureDeviceNV(hDc As IntPtr, hDevice As IntPtr) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.NV.LockVideoCaptureDeviceNV* - nameWithType.vb: Wgl.NV.LockVideoCaptureDeviceNV(IntPtr, IntPtr) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.LockVideoCaptureDeviceNV(System.IntPtr, System.IntPtr) - name.vb: LockVideoCaptureDeviceNV(IntPtr, IntPtr) -- uid: OpenTK.Graphics.Wgl.Wgl.NV.QueryCurrentContextNV(OpenTK.Graphics.Wgl.ContextAttribute,System.Int32@) - commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.QueryCurrentContextNV(OpenTK.Graphics.Wgl.ContextAttribute,System.Int32@) - id: QueryCurrentContextNV(OpenTK.Graphics.Wgl.ContextAttribute,System.Int32@) - parent: OpenTK.Graphics.Wgl.Wgl.NV - langs: - - csharp - - vb - name: QueryCurrentContextNV(ContextAttribute, out int) - nameWithType: Wgl.NV.QueryCurrentContextNV(ContextAttribute, out int) - fullName: OpenTK.Graphics.Wgl.Wgl.NV.QueryCurrentContextNV(OpenTK.Graphics.Wgl.ContextAttribute, out int) - type: Method - source: - id: QueryCurrentContextNV - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 1920 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_NV_present_video] - - [entry point: wglQueryCurrentContextNV] - -
- example: [] - syntax: - content: public static bool QueryCurrentContextNV(ContextAttribute iAttribute, out int piValue) - parameters: - - id: iAttribute - type: OpenTK.Graphics.Wgl.ContextAttribute - - id: piValue - type: System.Int32 - return: - type: System.Boolean - content.vb: Public Shared Function QueryCurrentContextNV(iAttribute As ContextAttribute, piValue As Integer) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.NV.QueryCurrentContextNV* - nameWithType.vb: Wgl.NV.QueryCurrentContextNV(ContextAttribute, Integer) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.QueryCurrentContextNV(OpenTK.Graphics.Wgl.ContextAttribute, Integer) - name.vb: QueryCurrentContextNV(ContextAttribute, Integer) -- uid: OpenTK.Graphics.Wgl.Wgl.NV.QueryFrameCountNV(System.IntPtr,System.UInt32@) - commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.QueryFrameCountNV(System.IntPtr,System.UInt32@) - id: QueryFrameCountNV(System.IntPtr,System.UInt32@) - parent: OpenTK.Graphics.Wgl.Wgl.NV - langs: - - csharp - - vb - name: QueryFrameCountNV(nint, out uint) - nameWithType: Wgl.NV.QueryFrameCountNV(nint, out uint) - fullName: OpenTK.Graphics.Wgl.Wgl.NV.QueryFrameCountNV(nint, out uint) - type: Method - source: - id: QueryFrameCountNV - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 1932 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_NV_swap_group] - - [entry point: wglQueryFrameCountNV] - -
- example: [] - syntax: - content: public static bool QueryFrameCountNV(nint hDC, out uint count) - parameters: - - id: hDC - type: System.IntPtr - - id: count - type: System.UInt32 - return: - type: System.Boolean - content.vb: Public Shared Function QueryFrameCountNV(hDC As IntPtr, count As UInteger) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.NV.QueryFrameCountNV* - nameWithType.vb: Wgl.NV.QueryFrameCountNV(IntPtr, UInteger) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.QueryFrameCountNV(System.IntPtr, UInteger) - name.vb: QueryFrameCountNV(IntPtr, UInteger) -- uid: OpenTK.Graphics.Wgl.Wgl.NV.QueryMaxSwapGroupsNV(System.IntPtr,System.UInt32@,System.UInt32@) - commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.QueryMaxSwapGroupsNV(System.IntPtr,System.UInt32@,System.UInt32@) - id: QueryMaxSwapGroupsNV(System.IntPtr,System.UInt32@,System.UInt32@) - parent: OpenTK.Graphics.Wgl.Wgl.NV - langs: - - csharp - - vb - name: QueryMaxSwapGroupsNV(nint, out uint, out uint) - nameWithType: Wgl.NV.QueryMaxSwapGroupsNV(nint, out uint, out uint) - fullName: OpenTK.Graphics.Wgl.Wgl.NV.QueryMaxSwapGroupsNV(nint, out uint, out uint) - type: Method - source: - id: QueryMaxSwapGroupsNV - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 1944 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_NV_swap_group] - - [entry point: wglQueryMaxSwapGroupsNV] - -
- example: [] - syntax: - content: public static bool QueryMaxSwapGroupsNV(nint hDC, out uint maxGroups, out uint maxBarriers) - parameters: - - id: hDC - type: System.IntPtr - - id: maxGroups - type: System.UInt32 - - id: maxBarriers - type: System.UInt32 - return: - type: System.Boolean - content.vb: Public Shared Function QueryMaxSwapGroupsNV(hDC As IntPtr, maxGroups As UInteger, maxBarriers As UInteger) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.NV.QueryMaxSwapGroupsNV* - nameWithType.vb: Wgl.NV.QueryMaxSwapGroupsNV(IntPtr, UInteger, UInteger) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.QueryMaxSwapGroupsNV(System.IntPtr, UInteger, UInteger) - name.vb: QueryMaxSwapGroupsNV(IntPtr, UInteger, UInteger) -- uid: OpenTK.Graphics.Wgl.Wgl.NV.QuerySwapGroupNV(System.IntPtr,System.UInt32@,System.UInt32@) - commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.QuerySwapGroupNV(System.IntPtr,System.UInt32@,System.UInt32@) - id: QuerySwapGroupNV(System.IntPtr,System.UInt32@,System.UInt32@) - parent: OpenTK.Graphics.Wgl.Wgl.NV - langs: - - csharp - - vb - name: QuerySwapGroupNV(nint, out uint, out uint) - nameWithType: Wgl.NV.QuerySwapGroupNV(nint, out uint, out uint) - fullName: OpenTK.Graphics.Wgl.Wgl.NV.QuerySwapGroupNV(nint, out uint, out uint) - type: Method - source: - id: QuerySwapGroupNV - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 1957 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_NV_swap_group] - - [entry point: wglQuerySwapGroupNV] - -
- example: [] - syntax: - content: public static bool QuerySwapGroupNV(nint hDC, out uint group, out uint barrier) - parameters: - - id: hDC - type: System.IntPtr - - id: group - type: System.UInt32 - - id: barrier - type: System.UInt32 - return: - type: System.Boolean - content.vb: Public Shared Function QuerySwapGroupNV(hDC As IntPtr, group As UInteger, barrier As UInteger) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.NV.QuerySwapGroupNV* - nameWithType.vb: Wgl.NV.QuerySwapGroupNV(IntPtr, UInteger, UInteger) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.QuerySwapGroupNV(System.IntPtr, UInteger, UInteger) - name.vb: QuerySwapGroupNV(IntPtr, UInteger, UInteger) -- uid: OpenTK.Graphics.Wgl.Wgl.NV.QueryVideoCaptureDeviceNV(System.IntPtr,System.IntPtr,OpenTK.Graphics.Wgl.VideoCaptureDeviceAttribute,System.Int32@) - commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.QueryVideoCaptureDeviceNV(System.IntPtr,System.IntPtr,OpenTK.Graphics.Wgl.VideoCaptureDeviceAttribute,System.Int32@) - id: QueryVideoCaptureDeviceNV(System.IntPtr,System.IntPtr,OpenTK.Graphics.Wgl.VideoCaptureDeviceAttribute,System.Int32@) - parent: OpenTK.Graphics.Wgl.Wgl.NV - langs: - - csharp - - vb - name: QueryVideoCaptureDeviceNV(nint, nint, VideoCaptureDeviceAttribute, out int) - nameWithType: Wgl.NV.QueryVideoCaptureDeviceNV(nint, nint, VideoCaptureDeviceAttribute, out int) - fullName: OpenTK.Graphics.Wgl.Wgl.NV.QueryVideoCaptureDeviceNV(nint, nint, OpenTK.Graphics.Wgl.VideoCaptureDeviceAttribute, out int) - type: Method - source: - id: QueryVideoCaptureDeviceNV - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 1970 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_NV_video_capture] - - [entry point: wglQueryVideoCaptureDeviceNV] - -
- example: [] - syntax: - content: public static bool QueryVideoCaptureDeviceNV(nint hDc, nint hDevice, VideoCaptureDeviceAttribute iAttribute, out int piValue) - parameters: - - id: hDc - type: System.IntPtr - - id: hDevice - type: System.IntPtr - - id: iAttribute - type: OpenTK.Graphics.Wgl.VideoCaptureDeviceAttribute - - id: piValue - type: System.Int32 - return: - type: System.Boolean - content.vb: Public Shared Function QueryVideoCaptureDeviceNV(hDc As IntPtr, hDevice As IntPtr, iAttribute As VideoCaptureDeviceAttribute, piValue As Integer) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.NV.QueryVideoCaptureDeviceNV* - nameWithType.vb: Wgl.NV.QueryVideoCaptureDeviceNV(IntPtr, IntPtr, VideoCaptureDeviceAttribute, Integer) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.QueryVideoCaptureDeviceNV(System.IntPtr, System.IntPtr, OpenTK.Graphics.Wgl.VideoCaptureDeviceAttribute, Integer) - name.vb: QueryVideoCaptureDeviceNV(IntPtr, IntPtr, VideoCaptureDeviceAttribute, Integer) -- uid: OpenTK.Graphics.Wgl.Wgl.NV.ReleaseVideoCaptureDeviceNV(System.IntPtr,System.IntPtr) - commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.ReleaseVideoCaptureDeviceNV(System.IntPtr,System.IntPtr) - id: ReleaseVideoCaptureDeviceNV(System.IntPtr,System.IntPtr) - parent: OpenTK.Graphics.Wgl.Wgl.NV - langs: - - csharp - - vb - name: ReleaseVideoCaptureDeviceNV(nint, nint) - nameWithType: Wgl.NV.ReleaseVideoCaptureDeviceNV(nint, nint) - fullName: OpenTK.Graphics.Wgl.Wgl.NV.ReleaseVideoCaptureDeviceNV(nint, nint) - type: Method - source: - id: ReleaseVideoCaptureDeviceNV - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 1982 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - example: [] - syntax: - content: public static bool ReleaseVideoCaptureDeviceNV(nint hDc, nint hDevice) - parameters: - - id: hDc - type: System.IntPtr - - id: hDevice - type: System.IntPtr - return: - type: System.Boolean - content.vb: Public Shared Function ReleaseVideoCaptureDeviceNV(hDc As IntPtr, hDevice As IntPtr) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.NV.ReleaseVideoCaptureDeviceNV* - nameWithType.vb: Wgl.NV.ReleaseVideoCaptureDeviceNV(IntPtr, IntPtr) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.ReleaseVideoCaptureDeviceNV(System.IntPtr, System.IntPtr) - name.vb: ReleaseVideoCaptureDeviceNV(IntPtr, IntPtr) -- uid: OpenTK.Graphics.Wgl.Wgl.NV.ReleaseVideoDeviceNV(System.IntPtr) - commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.ReleaseVideoDeviceNV(System.IntPtr) - id: ReleaseVideoDeviceNV(System.IntPtr) - parent: OpenTK.Graphics.Wgl.Wgl.NV - langs: - - csharp - - vb - name: ReleaseVideoDeviceNV(nint) - nameWithType: Wgl.NV.ReleaseVideoDeviceNV(nint) - fullName: OpenTK.Graphics.Wgl.Wgl.NV.ReleaseVideoDeviceNV(nint) - type: Method - source: - id: ReleaseVideoDeviceNV - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 1991 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - example: [] - syntax: - content: public static bool ReleaseVideoDeviceNV(nint hVideoDevice) - parameters: - - id: hVideoDevice - type: System.IntPtr - return: - type: System.Boolean - content.vb: Public Shared Function ReleaseVideoDeviceNV(hVideoDevice As IntPtr) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.NV.ReleaseVideoDeviceNV* - nameWithType.vb: Wgl.NV.ReleaseVideoDeviceNV(IntPtr) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.ReleaseVideoDeviceNV(System.IntPtr) - name.vb: ReleaseVideoDeviceNV(IntPtr) -- uid: OpenTK.Graphics.Wgl.Wgl.NV.ReleaseVideoImageNV(System.IntPtr,OpenTK.Graphics.Wgl.VideoOutputBuffer) - commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.ReleaseVideoImageNV(System.IntPtr,OpenTK.Graphics.Wgl.VideoOutputBuffer) - id: ReleaseVideoImageNV(System.IntPtr,OpenTK.Graphics.Wgl.VideoOutputBuffer) - parent: OpenTK.Graphics.Wgl.Wgl.NV - langs: - - csharp - - vb - name: ReleaseVideoImageNV(nint, VideoOutputBuffer) - nameWithType: Wgl.NV.ReleaseVideoImageNV(nint, VideoOutputBuffer) - fullName: OpenTK.Graphics.Wgl.Wgl.NV.ReleaseVideoImageNV(nint, OpenTK.Graphics.Wgl.VideoOutputBuffer) - type: Method - source: - id: ReleaseVideoImageNV - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 2000 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - example: [] - syntax: - content: public static bool ReleaseVideoImageNV(nint hPbuffer, VideoOutputBuffer iVideoBuffer) - parameters: - - id: hPbuffer - type: System.IntPtr - - id: iVideoBuffer - type: OpenTK.Graphics.Wgl.VideoOutputBuffer - return: - type: System.Boolean - content.vb: Public Shared Function ReleaseVideoImageNV(hPbuffer As IntPtr, iVideoBuffer As VideoOutputBuffer) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.NV.ReleaseVideoImageNV* - nameWithType.vb: Wgl.NV.ReleaseVideoImageNV(IntPtr, VideoOutputBuffer) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.ReleaseVideoImageNV(System.IntPtr, OpenTK.Graphics.Wgl.VideoOutputBuffer) - name.vb: ReleaseVideoImageNV(IntPtr, VideoOutputBuffer) -- uid: OpenTK.Graphics.Wgl.Wgl.NV.ResetFrameCountNV(System.IntPtr) - commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.ResetFrameCountNV(System.IntPtr) - id: ResetFrameCountNV(System.IntPtr) - parent: OpenTK.Graphics.Wgl.Wgl.NV - langs: - - csharp - - vb - name: ResetFrameCountNV(nint) - nameWithType: Wgl.NV.ResetFrameCountNV(nint) - fullName: OpenTK.Graphics.Wgl.Wgl.NV.ResetFrameCountNV(nint) - type: Method - source: - id: ResetFrameCountNV - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 2009 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - example: [] - syntax: - content: public static bool ResetFrameCountNV(nint hDC) - parameters: - - id: hDC - type: System.IntPtr - return: - type: System.Boolean - content.vb: Public Shared Function ResetFrameCountNV(hDC As IntPtr) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.NV.ResetFrameCountNV* - nameWithType.vb: Wgl.NV.ResetFrameCountNV(IntPtr) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.ResetFrameCountNV(System.IntPtr) - name.vb: ResetFrameCountNV(IntPtr) -- uid: OpenTK.Graphics.Wgl.Wgl.NV.SendPbufferToVideoNV(System.IntPtr,OpenTK.Graphics.Wgl.VideoOutputBufferType,System.UInt64@,System.Int32) - commentId: M:OpenTK.Graphics.Wgl.Wgl.NV.SendPbufferToVideoNV(System.IntPtr,OpenTK.Graphics.Wgl.VideoOutputBufferType,System.UInt64@,System.Int32) - id: SendPbufferToVideoNV(System.IntPtr,OpenTK.Graphics.Wgl.VideoOutputBufferType,System.UInt64@,System.Int32) - parent: OpenTK.Graphics.Wgl.Wgl.NV - langs: - - csharp - - vb - name: SendPbufferToVideoNV(nint, VideoOutputBufferType, out ulong, int) - nameWithType: Wgl.NV.SendPbufferToVideoNV(nint, VideoOutputBufferType, out ulong, int) - fullName: OpenTK.Graphics.Wgl.Wgl.NV.SendPbufferToVideoNV(nint, OpenTK.Graphics.Wgl.VideoOutputBufferType, out ulong, int) - type: Method - source: - id: SendPbufferToVideoNV - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 2018 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_NV_video_output] - - [entry point: wglSendPbufferToVideoNV] - -
- example: [] - syntax: - content: public static bool SendPbufferToVideoNV(nint hPbuffer, VideoOutputBufferType iBufferType, out ulong pulCounterPbuffer, int bBlock) - parameters: - - id: hPbuffer - type: System.IntPtr - - id: iBufferType - type: OpenTK.Graphics.Wgl.VideoOutputBufferType - - id: pulCounterPbuffer - type: System.UInt64 - - id: bBlock - type: System.Int32 - return: - type: System.Boolean - content.vb: Public Shared Function SendPbufferToVideoNV(hPbuffer As IntPtr, iBufferType As VideoOutputBufferType, pulCounterPbuffer As ULong, bBlock As Integer) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.NV.SendPbufferToVideoNV* - nameWithType.vb: Wgl.NV.SendPbufferToVideoNV(IntPtr, VideoOutputBufferType, ULong, Integer) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.NV.SendPbufferToVideoNV(System.IntPtr, OpenTK.Graphics.Wgl.VideoOutputBufferType, ULong, Integer) - name.vb: SendPbufferToVideoNV(IntPtr, VideoOutputBufferType, ULong, Integer) -references: -- uid: OpenTK.Graphics.Wgl - commentId: N:OpenTK.Graphics.Wgl - href: OpenTK.html - name: OpenTK.Graphics.Wgl - nameWithType: OpenTK.Graphics.Wgl - fullName: OpenTK.Graphics.Wgl - spec.csharp: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Wgl - name: Wgl - href: OpenTK.Graphics.Wgl.html - spec.vb: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Wgl - name: Wgl - href: OpenTK.Graphics.Wgl.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: System.Object.Equals(System.Object) - commentId: M:System.Object.Equals(System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - name: Equals(object) - nameWithType: object.Equals(object) - fullName: object.Equals(object) - nameWithType.vb: Object.Equals(Object) - fullName.vb: Object.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetHashCode - commentId: M:System.Object.GetHashCode - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - name: GetHashCode() - nameWithType: object.GetHashCode() - fullName: object.GetHashCode() - nameWithType.vb: Object.GetHashCode() - fullName.vb: Object.GetHashCode() - spec.csharp: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.MemberwiseClone - commentId: M:System.Object.MemberwiseClone - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - name: MemberwiseClone() - nameWithType: object.MemberwiseClone() - fullName: object.MemberwiseClone() - nameWithType.vb: Object.MemberwiseClone() - fullName.vb: Object.MemberwiseClone() - spec.csharp: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) - spec.vb: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.ToString - commentId: M:System.Object.ToString - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - name: ToString() - nameWithType: object.ToString() - fullName: object.ToString() - nameWithType.vb: Object.ToString() - fullName.vb: Object.ToString() - spec.csharp: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) - spec.vb: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: OpenTK.Graphics.Wgl.Wgl.NV.AllocateMemoryNV* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.NV.AllocateMemoryNV - href: OpenTK.Graphics.Wgl.Wgl.NV.html#OpenTK_Graphics_Wgl_Wgl_NV_AllocateMemoryNV_System_Int32_System_Single_System_Single_System_Single_ - name: AllocateMemoryNV - nameWithType: Wgl.NV.AllocateMemoryNV - fullName: OpenTK.Graphics.Wgl.Wgl.NV.AllocateMemoryNV -- uid: System.Int32 - commentId: T:System.Int32 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - name: int - nameWithType: int - fullName: int - nameWithType.vb: Integer - fullName.vb: Integer - name.vb: Integer -- uid: System.Single - commentId: T:System.Single - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.single - name: float - nameWithType: float - fullName: float - nameWithType.vb: Single - fullName.vb: Single - name.vb: Single -- uid: System.Void* - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.void - name: void* - nameWithType: void* - fullName: void* - nameWithType.vb: Void* - fullName.vb: Void* - name.vb: Void* - spec.csharp: - - uid: System.Void - name: void - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.void - - name: '*' - spec.vb: - - uid: System.Void - name: Void - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.void - - name: '*' -- uid: OpenTK.Graphics.Wgl.Wgl.NV.BindSwapBarrierNV_* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.NV.BindSwapBarrierNV_ - href: OpenTK.Graphics.Wgl.Wgl.NV.html#OpenTK_Graphics_Wgl_Wgl_NV_BindSwapBarrierNV__System_UInt32_System_UInt32_ - name: BindSwapBarrierNV_ - nameWithType: Wgl.NV.BindSwapBarrierNV_ - fullName: OpenTK.Graphics.Wgl.Wgl.NV.BindSwapBarrierNV_ -- uid: System.UInt32 - commentId: T:System.UInt32 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - name: uint - nameWithType: uint - fullName: uint - nameWithType.vb: UInteger - fullName.vb: UInteger - name.vb: UInteger -- uid: OpenTK.Graphics.Wgl.Wgl.NV.BindVideoCaptureDeviceNV_* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.NV.BindVideoCaptureDeviceNV_ - href: OpenTK.Graphics.Wgl.Wgl.NV.html#OpenTK_Graphics_Wgl_Wgl_NV_BindVideoCaptureDeviceNV__System_UInt32_System_IntPtr_ - name: BindVideoCaptureDeviceNV_ - nameWithType: Wgl.NV.BindVideoCaptureDeviceNV_ - fullName: OpenTK.Graphics.Wgl.Wgl.NV.BindVideoCaptureDeviceNV_ -- uid: System.IntPtr - commentId: T:System.IntPtr - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: nint - nameWithType: nint - fullName: nint - nameWithType.vb: IntPtr - fullName.vb: System.IntPtr - name.vb: IntPtr -- uid: OpenTK.Graphics.Wgl.Wgl.NV.BindVideoDeviceNV* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.NV.BindVideoDeviceNV - href: OpenTK.Graphics.Wgl.Wgl.NV.html#OpenTK_Graphics_Wgl_Wgl_NV_BindVideoDeviceNV_System_IntPtr_System_UInt32_System_IntPtr_System_Int32__ - name: BindVideoDeviceNV - nameWithType: Wgl.NV.BindVideoDeviceNV - fullName: OpenTK.Graphics.Wgl.Wgl.NV.BindVideoDeviceNV -- uid: System.Int32* - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - name: int* - nameWithType: int* - fullName: int* - nameWithType.vb: Integer* - fullName.vb: Integer* - name.vb: Integer* - spec.csharp: - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '*' - spec.vb: - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '*' -- uid: OpenTK.Graphics.Wgl.Wgl.NV.BindVideoImageNV_* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.NV.BindVideoImageNV_ - href: OpenTK.Graphics.Wgl.Wgl.NV.html#OpenTK_Graphics_Wgl_Wgl_NV_BindVideoImageNV__System_IntPtr_System_IntPtr_OpenTK_Graphics_Wgl_VideoOutputBuffer_ - name: BindVideoImageNV_ - nameWithType: Wgl.NV.BindVideoImageNV_ - fullName: OpenTK.Graphics.Wgl.Wgl.NV.BindVideoImageNV_ -- uid: OpenTK.Graphics.Wgl.VideoOutputBuffer - commentId: T:OpenTK.Graphics.Wgl.VideoOutputBuffer - parent: OpenTK.Graphics.Wgl - href: OpenTK.Graphics.Wgl.VideoOutputBuffer.html - name: VideoOutputBuffer - nameWithType: VideoOutputBuffer - fullName: OpenTK.Graphics.Wgl.VideoOutputBuffer -- uid: OpenTK.Graphics.Wgl.Wgl.NV.CopyImageSubDataNV_* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.NV.CopyImageSubDataNV_ - href: OpenTK.Graphics.Wgl.Wgl.NV.html#OpenTK_Graphics_Wgl_Wgl_NV_CopyImageSubDataNV__System_IntPtr_System_UInt32_OpenTK_Graphics_OpenGL_TextureTarget_System_Int32_System_Int32_System_Int32_System_Int32_System_IntPtr_System_UInt32_OpenTK_Graphics_OpenGL_TextureTarget_System_Int32_System_Int32_System_Int32_System_Int32_System_Int32_System_Int32_System_Int32_ - name: CopyImageSubDataNV_ - nameWithType: Wgl.NV.CopyImageSubDataNV_ - fullName: OpenTK.Graphics.Wgl.Wgl.NV.CopyImageSubDataNV_ -- uid: OpenTK.Graphics.OpenGL.TextureTarget - commentId: T:OpenTK.Graphics.OpenGL.TextureTarget - parent: OpenTK.Graphics.OpenGL - href: OpenTK.Graphics.OpenGL.TextureTarget.html - name: TextureTarget - nameWithType: TextureTarget - fullName: OpenTK.Graphics.OpenGL.TextureTarget -- uid: OpenTK.Graphics.OpenGL - commentId: N:OpenTK.Graphics.OpenGL - href: OpenTK.html - name: OpenTK.Graphics.OpenGL - nameWithType: OpenTK.Graphics.OpenGL - fullName: OpenTK.Graphics.OpenGL - spec.csharp: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.OpenGL - name: OpenGL - href: OpenTK.Graphics.OpenGL.html - spec.vb: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.OpenGL - name: OpenGL - href: OpenTK.Graphics.OpenGL.html -- uid: OpenTK.Graphics.Wgl.Wgl.NV.CreateAffinityDCNV* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.NV.CreateAffinityDCNV - href: OpenTK.Graphics.Wgl.Wgl.NV.html#OpenTK_Graphics_Wgl_Wgl_NV_CreateAffinityDCNV_System_IntPtr__ - name: CreateAffinityDCNV - nameWithType: Wgl.NV.CreateAffinityDCNV - fullName: OpenTK.Graphics.Wgl.Wgl.NV.CreateAffinityDCNV -- uid: System.IntPtr* - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: nint* - nameWithType: nint* - fullName: nint* - nameWithType.vb: IntPtr* - fullName.vb: System.IntPtr* - name.vb: IntPtr* - spec.csharp: - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: '*' - spec.vb: - - uid: System.IntPtr - name: IntPtr - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: '*' -- uid: OpenTK.Graphics.Wgl.Wgl.NV.DelayBeforeSwapNV_* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.NV.DelayBeforeSwapNV_ - href: OpenTK.Graphics.Wgl.Wgl.NV.html#OpenTK_Graphics_Wgl_Wgl_NV_DelayBeforeSwapNV__System_IntPtr_System_Single_ - name: DelayBeforeSwapNV_ - nameWithType: Wgl.NV.DelayBeforeSwapNV_ - fullName: OpenTK.Graphics.Wgl.Wgl.NV.DelayBeforeSwapNV_ -- uid: OpenTK.Graphics.Wgl.Wgl.NV.DeleteDCNV_* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.NV.DeleteDCNV_ - href: OpenTK.Graphics.Wgl.Wgl.NV.html#OpenTK_Graphics_Wgl_Wgl_NV_DeleteDCNV__System_IntPtr_ - name: DeleteDCNV_ - nameWithType: Wgl.NV.DeleteDCNV_ - fullName: OpenTK.Graphics.Wgl.Wgl.NV.DeleteDCNV_ -- uid: OpenTK.Graphics.Wgl.Wgl.NV.DXCloseDeviceNV_* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.NV.DXCloseDeviceNV_ - href: OpenTK.Graphics.Wgl.Wgl.NV.html#OpenTK_Graphics_Wgl_Wgl_NV_DXCloseDeviceNV__System_IntPtr_ - name: DXCloseDeviceNV_ - nameWithType: Wgl.NV.DXCloseDeviceNV_ - fullName: OpenTK.Graphics.Wgl.Wgl.NV.DXCloseDeviceNV_ -- uid: OpenTK.Graphics.Wgl.Wgl.NV.DXLockObjectsNV* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.NV.DXLockObjectsNV - href: OpenTK.Graphics.Wgl.Wgl.NV.html#OpenTK_Graphics_Wgl_Wgl_NV_DXLockObjectsNV_System_IntPtr_System_Int32_System_IntPtr__ - name: DXLockObjectsNV - nameWithType: Wgl.NV.DXLockObjectsNV - fullName: OpenTK.Graphics.Wgl.Wgl.NV.DXLockObjectsNV -- uid: OpenTK.Graphics.Wgl.Wgl.NV.DXObjectAccessNV_* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.NV.DXObjectAccessNV_ - href: OpenTK.Graphics.Wgl.Wgl.NV.html#OpenTK_Graphics_Wgl_Wgl_NV_DXObjectAccessNV__System_IntPtr_OpenTK_Graphics_Wgl_DXInteropMaskNV_ - name: DXObjectAccessNV_ - nameWithType: Wgl.NV.DXObjectAccessNV_ - fullName: OpenTK.Graphics.Wgl.Wgl.NV.DXObjectAccessNV_ -- uid: OpenTK.Graphics.Wgl.DXInteropMaskNV - commentId: T:OpenTK.Graphics.Wgl.DXInteropMaskNV - parent: OpenTK.Graphics.Wgl - href: OpenTK.Graphics.Wgl.DXInteropMaskNV.html - name: DXInteropMaskNV - nameWithType: DXInteropMaskNV - fullName: OpenTK.Graphics.Wgl.DXInteropMaskNV -- uid: OpenTK.Graphics.Wgl.Wgl.NV.DXOpenDeviceNV* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.NV.DXOpenDeviceNV - href: OpenTK.Graphics.Wgl.Wgl.NV.html#OpenTK_Graphics_Wgl_Wgl_NV_DXOpenDeviceNV_System_Void__ - name: DXOpenDeviceNV - nameWithType: Wgl.NV.DXOpenDeviceNV - fullName: OpenTK.Graphics.Wgl.Wgl.NV.DXOpenDeviceNV -- uid: OpenTK.Graphics.Wgl.Wgl.NV.DXRegisterObjectNV* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.NV.DXRegisterObjectNV - href: OpenTK.Graphics.Wgl.Wgl.NV.html#OpenTK_Graphics_Wgl_Wgl_NV_DXRegisterObjectNV_System_IntPtr_System_Void__System_UInt32_OpenTK_Graphics_Wgl_ObjectTypeDX_OpenTK_Graphics_Wgl_DXInteropMaskNV_ - name: DXRegisterObjectNV - nameWithType: Wgl.NV.DXRegisterObjectNV - fullName: OpenTK.Graphics.Wgl.Wgl.NV.DXRegisterObjectNV -- uid: OpenTK.Graphics.Wgl.ObjectTypeDX - commentId: T:OpenTK.Graphics.Wgl.ObjectTypeDX - parent: OpenTK.Graphics.Wgl - href: OpenTK.Graphics.Wgl.ObjectTypeDX.html - name: ObjectTypeDX - nameWithType: ObjectTypeDX - fullName: OpenTK.Graphics.Wgl.ObjectTypeDX -- uid: OpenTK.Graphics.Wgl.Wgl.NV.DXSetResourceShareHandleNV* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.NV.DXSetResourceShareHandleNV - href: OpenTK.Graphics.Wgl.Wgl.NV.html#OpenTK_Graphics_Wgl_Wgl_NV_DXSetResourceShareHandleNV_System_Void__System_IntPtr_ - name: DXSetResourceShareHandleNV - nameWithType: Wgl.NV.DXSetResourceShareHandleNV - fullName: OpenTK.Graphics.Wgl.Wgl.NV.DXSetResourceShareHandleNV -- uid: OpenTK.Graphics.Wgl.Wgl.NV.DXUnlockObjectsNV* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.NV.DXUnlockObjectsNV - href: OpenTK.Graphics.Wgl.Wgl.NV.html#OpenTK_Graphics_Wgl_Wgl_NV_DXUnlockObjectsNV_System_IntPtr_System_Int32_System_IntPtr__ - name: DXUnlockObjectsNV - nameWithType: Wgl.NV.DXUnlockObjectsNV - fullName: OpenTK.Graphics.Wgl.Wgl.NV.DXUnlockObjectsNV -- uid: OpenTK.Graphics.Wgl.Wgl.NV.DXUnregisterObjectNV_* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.NV.DXUnregisterObjectNV_ - href: OpenTK.Graphics.Wgl.Wgl.NV.html#OpenTK_Graphics_Wgl_Wgl_NV_DXUnregisterObjectNV__System_IntPtr_System_IntPtr_ - name: DXUnregisterObjectNV_ - nameWithType: Wgl.NV.DXUnregisterObjectNV_ - fullName: OpenTK.Graphics.Wgl.Wgl.NV.DXUnregisterObjectNV_ -- uid: OpenTK.Graphics.Wgl.Wgl.NV.EnumerateVideoCaptureDevicesNV* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.NV.EnumerateVideoCaptureDevicesNV - href: OpenTK.Graphics.Wgl.Wgl.NV.html#OpenTK_Graphics_Wgl_Wgl_NV_EnumerateVideoCaptureDevicesNV_System_IntPtr_System_IntPtr__ - name: EnumerateVideoCaptureDevicesNV - nameWithType: Wgl.NV.EnumerateVideoCaptureDevicesNV - fullName: OpenTK.Graphics.Wgl.Wgl.NV.EnumerateVideoCaptureDevicesNV -- uid: OpenTK.Graphics.Wgl.Wgl.NV.EnumerateVideoDevicesNV* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.NV.EnumerateVideoDevicesNV - href: OpenTK.Graphics.Wgl.Wgl.NV.html#OpenTK_Graphics_Wgl_Wgl_NV_EnumerateVideoDevicesNV_System_IntPtr_System_IntPtr__ - name: EnumerateVideoDevicesNV - nameWithType: Wgl.NV.EnumerateVideoDevicesNV - fullName: OpenTK.Graphics.Wgl.Wgl.NV.EnumerateVideoDevicesNV -- uid: OpenTK.Graphics.Wgl.Wgl.NV.EnumGpuDevicesNV* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.NV.EnumGpuDevicesNV - href: OpenTK.Graphics.Wgl.Wgl.NV.html#OpenTK_Graphics_Wgl_Wgl_NV_EnumGpuDevicesNV_System_IntPtr_System_UInt32_OpenTK_Graphics_Wgl__GPU_DEVICE__ - name: EnumGpuDevicesNV - nameWithType: Wgl.NV.EnumGpuDevicesNV - fullName: OpenTK.Graphics.Wgl.Wgl.NV.EnumGpuDevicesNV -- uid: OpenTK.Graphics.Wgl._GPU_DEVICE* - isExternal: true - href: OpenTK.Graphics.Wgl._GPU_DEVICE.html - name: _GPU_DEVICE* - nameWithType: _GPU_DEVICE* - fullName: OpenTK.Graphics.Wgl._GPU_DEVICE* - spec.csharp: - - uid: OpenTK.Graphics.Wgl._GPU_DEVICE - name: _GPU_DEVICE - href: OpenTK.Graphics.Wgl._GPU_DEVICE.html - - name: '*' - spec.vb: - - uid: OpenTK.Graphics.Wgl._GPU_DEVICE - name: _GPU_DEVICE - href: OpenTK.Graphics.Wgl._GPU_DEVICE.html - - name: '*' -- uid: OpenTK.Graphics.Wgl.Wgl.NV.EnumGpusFromAffinityDCNV* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.NV.EnumGpusFromAffinityDCNV - href: OpenTK.Graphics.Wgl.Wgl.NV.html#OpenTK_Graphics_Wgl_Wgl_NV_EnumGpusFromAffinityDCNV_System_IntPtr_System_UInt32_System_IntPtr__ - name: EnumGpusFromAffinityDCNV - nameWithType: Wgl.NV.EnumGpusFromAffinityDCNV - fullName: OpenTK.Graphics.Wgl.Wgl.NV.EnumGpusFromAffinityDCNV -- uid: OpenTK.Graphics.Wgl.Wgl.NV.EnumGpusNV* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.NV.EnumGpusNV - href: OpenTK.Graphics.Wgl.Wgl.NV.html#OpenTK_Graphics_Wgl_Wgl_NV_EnumGpusNV_System_UInt32_System_IntPtr__ - name: EnumGpusNV - nameWithType: Wgl.NV.EnumGpusNV - fullName: OpenTK.Graphics.Wgl.Wgl.NV.EnumGpusNV -- uid: OpenTK.Graphics.Wgl.Wgl.NV.FreeMemoryNV* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.NV.FreeMemoryNV - href: OpenTK.Graphics.Wgl.Wgl.NV.html#OpenTK_Graphics_Wgl_Wgl_NV_FreeMemoryNV_System_Void__ - name: FreeMemoryNV - nameWithType: Wgl.NV.FreeMemoryNV - fullName: OpenTK.Graphics.Wgl.Wgl.NV.FreeMemoryNV -- uid: OpenTK.Graphics.Wgl.Wgl.NV.GetVideoDeviceNV* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.NV.GetVideoDeviceNV - href: OpenTK.Graphics.Wgl.Wgl.NV.html#OpenTK_Graphics_Wgl_Wgl_NV_GetVideoDeviceNV_System_IntPtr_System_Int32_System_IntPtr__ - name: GetVideoDeviceNV - nameWithType: Wgl.NV.GetVideoDeviceNV - fullName: OpenTK.Graphics.Wgl.Wgl.NV.GetVideoDeviceNV -- uid: OpenTK.Graphics.Wgl.Wgl.NV.GetVideoInfoNV* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.NV.GetVideoInfoNV - href: OpenTK.Graphics.Wgl.Wgl.NV.html#OpenTK_Graphics_Wgl_Wgl_NV_GetVideoInfoNV_System_IntPtr_System_UInt64__System_UInt64__ - name: GetVideoInfoNV - nameWithType: Wgl.NV.GetVideoInfoNV - fullName: OpenTK.Graphics.Wgl.Wgl.NV.GetVideoInfoNV -- uid: System.UInt64* - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint64 - name: ulong* - nameWithType: ulong* - fullName: ulong* - nameWithType.vb: ULong* - fullName.vb: ULong* - name.vb: ULong* - spec.csharp: - - uid: System.UInt64 - name: ulong - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint64 - - name: '*' - spec.vb: - - uid: System.UInt64 - name: ULong - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint64 - - name: '*' -- uid: OpenTK.Graphics.Wgl.Wgl.NV.JoinSwapGroupNV_* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.NV.JoinSwapGroupNV_ - href: OpenTK.Graphics.Wgl.Wgl.NV.html#OpenTK_Graphics_Wgl_Wgl_NV_JoinSwapGroupNV__System_IntPtr_System_UInt32_ - name: JoinSwapGroupNV_ - nameWithType: Wgl.NV.JoinSwapGroupNV_ - fullName: OpenTK.Graphics.Wgl.Wgl.NV.JoinSwapGroupNV_ -- uid: OpenTK.Graphics.Wgl.Wgl.NV.LockVideoCaptureDeviceNV_* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.NV.LockVideoCaptureDeviceNV_ - href: OpenTK.Graphics.Wgl.Wgl.NV.html#OpenTK_Graphics_Wgl_Wgl_NV_LockVideoCaptureDeviceNV__System_IntPtr_System_IntPtr_ - name: LockVideoCaptureDeviceNV_ - nameWithType: Wgl.NV.LockVideoCaptureDeviceNV_ - fullName: OpenTK.Graphics.Wgl.Wgl.NV.LockVideoCaptureDeviceNV_ -- uid: OpenTK.Graphics.Wgl.Wgl.NV.QueryCurrentContextNV* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.NV.QueryCurrentContextNV - href: OpenTK.Graphics.Wgl.Wgl.NV.html#OpenTK_Graphics_Wgl_Wgl_NV_QueryCurrentContextNV_OpenTK_Graphics_Wgl_ContextAttribute_System_Int32__ - name: QueryCurrentContextNV - nameWithType: Wgl.NV.QueryCurrentContextNV - fullName: OpenTK.Graphics.Wgl.Wgl.NV.QueryCurrentContextNV -- uid: OpenTK.Graphics.Wgl.ContextAttribute - commentId: T:OpenTK.Graphics.Wgl.ContextAttribute - parent: OpenTK.Graphics.Wgl - href: OpenTK.Graphics.Wgl.ContextAttribute.html - name: ContextAttribute - nameWithType: ContextAttribute - fullName: OpenTK.Graphics.Wgl.ContextAttribute -- uid: OpenTK.Graphics.Wgl.Wgl.NV.QueryFrameCountNV* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.NV.QueryFrameCountNV - href: OpenTK.Graphics.Wgl.Wgl.NV.html#OpenTK_Graphics_Wgl_Wgl_NV_QueryFrameCountNV_System_IntPtr_System_UInt32__ - name: QueryFrameCountNV - nameWithType: Wgl.NV.QueryFrameCountNV - fullName: OpenTK.Graphics.Wgl.Wgl.NV.QueryFrameCountNV -- uid: System.UInt32* - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - name: uint* - nameWithType: uint* - fullName: uint* - nameWithType.vb: UInteger* - fullName.vb: UInteger* - name.vb: UInteger* - spec.csharp: - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: '*' - spec.vb: - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: '*' -- uid: OpenTK.Graphics.Wgl.Wgl.NV.QueryMaxSwapGroupsNV* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.NV.QueryMaxSwapGroupsNV - href: OpenTK.Graphics.Wgl.Wgl.NV.html#OpenTK_Graphics_Wgl_Wgl_NV_QueryMaxSwapGroupsNV_System_IntPtr_System_UInt32__System_UInt32__ - name: QueryMaxSwapGroupsNV - nameWithType: Wgl.NV.QueryMaxSwapGroupsNV - fullName: OpenTK.Graphics.Wgl.Wgl.NV.QueryMaxSwapGroupsNV -- uid: OpenTK.Graphics.Wgl.Wgl.NV.QuerySwapGroupNV* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.NV.QuerySwapGroupNV - href: OpenTK.Graphics.Wgl.Wgl.NV.html#OpenTK_Graphics_Wgl_Wgl_NV_QuerySwapGroupNV_System_IntPtr_System_UInt32__System_UInt32__ - name: QuerySwapGroupNV - nameWithType: Wgl.NV.QuerySwapGroupNV - fullName: OpenTK.Graphics.Wgl.Wgl.NV.QuerySwapGroupNV -- uid: OpenTK.Graphics.Wgl.Wgl.NV.QueryVideoCaptureDeviceNV* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.NV.QueryVideoCaptureDeviceNV - href: OpenTK.Graphics.Wgl.Wgl.NV.html#OpenTK_Graphics_Wgl_Wgl_NV_QueryVideoCaptureDeviceNV_System_IntPtr_System_IntPtr_OpenTK_Graphics_Wgl_VideoCaptureDeviceAttribute_System_Int32__ - name: QueryVideoCaptureDeviceNV - nameWithType: Wgl.NV.QueryVideoCaptureDeviceNV - fullName: OpenTK.Graphics.Wgl.Wgl.NV.QueryVideoCaptureDeviceNV -- uid: OpenTK.Graphics.Wgl.VideoCaptureDeviceAttribute - commentId: T:OpenTK.Graphics.Wgl.VideoCaptureDeviceAttribute - parent: OpenTK.Graphics.Wgl - href: OpenTK.Graphics.Wgl.VideoCaptureDeviceAttribute.html - name: VideoCaptureDeviceAttribute - nameWithType: VideoCaptureDeviceAttribute - fullName: OpenTK.Graphics.Wgl.VideoCaptureDeviceAttribute -- uid: OpenTK.Graphics.Wgl.Wgl.NV.ReleaseVideoCaptureDeviceNV_* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.NV.ReleaseVideoCaptureDeviceNV_ - href: OpenTK.Graphics.Wgl.Wgl.NV.html#OpenTK_Graphics_Wgl_Wgl_NV_ReleaseVideoCaptureDeviceNV__System_IntPtr_System_IntPtr_ - name: ReleaseVideoCaptureDeviceNV_ - nameWithType: Wgl.NV.ReleaseVideoCaptureDeviceNV_ - fullName: OpenTK.Graphics.Wgl.Wgl.NV.ReleaseVideoCaptureDeviceNV_ -- uid: OpenTK.Graphics.Wgl.Wgl.NV.ReleaseVideoDeviceNV_* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.NV.ReleaseVideoDeviceNV_ - href: OpenTK.Graphics.Wgl.Wgl.NV.html#OpenTK_Graphics_Wgl_Wgl_NV_ReleaseVideoDeviceNV__System_IntPtr_ - name: ReleaseVideoDeviceNV_ - nameWithType: Wgl.NV.ReleaseVideoDeviceNV_ - fullName: OpenTK.Graphics.Wgl.Wgl.NV.ReleaseVideoDeviceNV_ -- uid: OpenTK.Graphics.Wgl.Wgl.NV.ReleaseVideoImageNV_* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.NV.ReleaseVideoImageNV_ - href: OpenTK.Graphics.Wgl.Wgl.NV.html#OpenTK_Graphics_Wgl_Wgl_NV_ReleaseVideoImageNV__System_IntPtr_OpenTK_Graphics_Wgl_VideoOutputBuffer_ - name: ReleaseVideoImageNV_ - nameWithType: Wgl.NV.ReleaseVideoImageNV_ - fullName: OpenTK.Graphics.Wgl.Wgl.NV.ReleaseVideoImageNV_ -- uid: OpenTK.Graphics.Wgl.Wgl.NV.ResetFrameCountNV_* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.NV.ResetFrameCountNV_ - href: OpenTK.Graphics.Wgl.Wgl.NV.html#OpenTK_Graphics_Wgl_Wgl_NV_ResetFrameCountNV__System_IntPtr_ - name: ResetFrameCountNV_ - nameWithType: Wgl.NV.ResetFrameCountNV_ - fullName: OpenTK.Graphics.Wgl.Wgl.NV.ResetFrameCountNV_ -- uid: OpenTK.Graphics.Wgl.Wgl.NV.SendPbufferToVideoNV* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.NV.SendPbufferToVideoNV - href: OpenTK.Graphics.Wgl.Wgl.NV.html#OpenTK_Graphics_Wgl_Wgl_NV_SendPbufferToVideoNV_System_IntPtr_OpenTK_Graphics_Wgl_VideoOutputBufferType_System_UInt64__System_Int32_ - name: SendPbufferToVideoNV - nameWithType: Wgl.NV.SendPbufferToVideoNV - fullName: OpenTK.Graphics.Wgl.Wgl.NV.SendPbufferToVideoNV -- uid: OpenTK.Graphics.Wgl.VideoOutputBufferType - commentId: T:OpenTK.Graphics.Wgl.VideoOutputBufferType - parent: OpenTK.Graphics.Wgl - href: OpenTK.Graphics.Wgl.VideoOutputBufferType.html - name: VideoOutputBufferType - nameWithType: VideoOutputBufferType - fullName: OpenTK.Graphics.Wgl.VideoOutputBufferType -- uid: OpenTK.Graphics.Wgl.Wgl.NV.BindSwapBarrierNV* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.NV.BindSwapBarrierNV - href: OpenTK.Graphics.Wgl.Wgl.NV.html#OpenTK_Graphics_Wgl_Wgl_NV_BindSwapBarrierNV_System_UInt32_System_UInt32_ - name: BindSwapBarrierNV - nameWithType: Wgl.NV.BindSwapBarrierNV - fullName: OpenTK.Graphics.Wgl.Wgl.NV.BindSwapBarrierNV -- uid: System.Boolean - commentId: T:System.Boolean - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - name: bool - nameWithType: bool - fullName: bool - nameWithType.vb: Boolean - fullName.vb: Boolean - name.vb: Boolean -- uid: OpenTK.Graphics.Wgl.Wgl.NV.BindVideoCaptureDeviceNV* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.NV.BindVideoCaptureDeviceNV - href: OpenTK.Graphics.Wgl.Wgl.NV.html#OpenTK_Graphics_Wgl_Wgl_NV_BindVideoCaptureDeviceNV_System_UInt32_System_IntPtr_ - name: BindVideoCaptureDeviceNV - nameWithType: Wgl.NV.BindVideoCaptureDeviceNV - fullName: OpenTK.Graphics.Wgl.Wgl.NV.BindVideoCaptureDeviceNV -- uid: System.ReadOnlySpan{System.Int32} - commentId: T:System.ReadOnlySpan{System.Int32} - parent: System - definition: System.ReadOnlySpan`1 - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - name: ReadOnlySpan - nameWithType: ReadOnlySpan - fullName: System.ReadOnlySpan - nameWithType.vb: ReadOnlySpan(Of Integer) - fullName.vb: System.ReadOnlySpan(Of Integer) - name.vb: ReadOnlySpan(Of Integer) - spec.csharp: - - uid: System.ReadOnlySpan`1 - name: ReadOnlySpan - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - - name: < - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '>' - spec.vb: - - uid: System.ReadOnlySpan`1 - name: ReadOnlySpan - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - - name: ( - - name: Of - - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) -- uid: System.ReadOnlySpan`1 - commentId: T:System.ReadOnlySpan`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - name: ReadOnlySpan - nameWithType: ReadOnlySpan - fullName: System.ReadOnlySpan - nameWithType.vb: ReadOnlySpan(Of T) - fullName.vb: System.ReadOnlySpan(Of T) - name.vb: ReadOnlySpan(Of T) - spec.csharp: - - uid: System.ReadOnlySpan`1 - name: ReadOnlySpan - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.ReadOnlySpan`1 - name: ReadOnlySpan - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: System.Int32[] - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - name: int[] - nameWithType: int[] - fullName: int[] - nameWithType.vb: Integer() - fullName.vb: Integer() - name.vb: Integer() - spec.csharp: - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '[' - - name: ']' - spec.vb: - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ( - - name: ) -- uid: OpenTK.Graphics.Wgl.Wgl.NV.BindVideoImageNV* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.NV.BindVideoImageNV - href: OpenTK.Graphics.Wgl.Wgl.NV.html#OpenTK_Graphics_Wgl_Wgl_NV_BindVideoImageNV_System_IntPtr_System_IntPtr_OpenTK_Graphics_Wgl_VideoOutputBuffer_ - name: BindVideoImageNV - nameWithType: Wgl.NV.BindVideoImageNV - fullName: OpenTK.Graphics.Wgl.Wgl.NV.BindVideoImageNV -- uid: OpenTK.Graphics.Wgl.Wgl.NV.CopyImageSubDataNV* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.NV.CopyImageSubDataNV - href: OpenTK.Graphics.Wgl.Wgl.NV.html#OpenTK_Graphics_Wgl_Wgl_NV_CopyImageSubDataNV_System_IntPtr_System_UInt32_OpenTK_Graphics_OpenGL_TextureTarget_System_Int32_System_Int32_System_Int32_System_Int32_System_IntPtr_System_UInt32_OpenTK_Graphics_OpenGL_TextureTarget_System_Int32_System_Int32_System_Int32_System_Int32_System_Int32_System_Int32_System_Int32_ - name: CopyImageSubDataNV - nameWithType: Wgl.NV.CopyImageSubDataNV - fullName: OpenTK.Graphics.Wgl.Wgl.NV.CopyImageSubDataNV -- uid: System.ReadOnlySpan{System.IntPtr} - commentId: T:System.ReadOnlySpan{System.IntPtr} - parent: System - definition: System.ReadOnlySpan`1 - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - name: ReadOnlySpan - nameWithType: ReadOnlySpan - fullName: System.ReadOnlySpan - nameWithType.vb: ReadOnlySpan(Of IntPtr) - fullName.vb: System.ReadOnlySpan(Of System.IntPtr) - name.vb: ReadOnlySpan(Of IntPtr) - spec.csharp: - - uid: System.ReadOnlySpan`1 - name: ReadOnlySpan - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - - name: < - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: '>' - spec.vb: - - uid: System.ReadOnlySpan`1 - name: ReadOnlySpan - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - - name: ( - - name: Of - - name: " " - - uid: System.IntPtr - name: IntPtr - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ) -- uid: System.IntPtr[] - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: nint[] - nameWithType: nint[] - fullName: nint[] - nameWithType.vb: IntPtr() - fullName.vb: System.IntPtr() - name.vb: IntPtr() - spec.csharp: - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: '[' - - name: ']' - spec.vb: - - uid: System.IntPtr - name: IntPtr - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ( - - name: ) -- uid: OpenTK.Graphics.Wgl.Wgl.NV.DelayBeforeSwapNV* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.NV.DelayBeforeSwapNV - href: OpenTK.Graphics.Wgl.Wgl.NV.html#OpenTK_Graphics_Wgl_Wgl_NV_DelayBeforeSwapNV_System_IntPtr_System_Single_ - name: DelayBeforeSwapNV - nameWithType: Wgl.NV.DelayBeforeSwapNV - fullName: OpenTK.Graphics.Wgl.Wgl.NV.DelayBeforeSwapNV -- uid: OpenTK.Graphics.Wgl.Wgl.NV.DeleteDCNV* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.NV.DeleteDCNV - href: OpenTK.Graphics.Wgl.Wgl.NV.html#OpenTK_Graphics_Wgl_Wgl_NV_DeleteDCNV_System_IntPtr_ - name: DeleteDCNV - nameWithType: Wgl.NV.DeleteDCNV - fullName: OpenTK.Graphics.Wgl.Wgl.NV.DeleteDCNV -- uid: OpenTK.Graphics.Wgl.Wgl.NV.DXCloseDeviceNV* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.NV.DXCloseDeviceNV - href: OpenTK.Graphics.Wgl.Wgl.NV.html#OpenTK_Graphics_Wgl_Wgl_NV_DXCloseDeviceNV_System_IntPtr_ - name: DXCloseDeviceNV - nameWithType: Wgl.NV.DXCloseDeviceNV - fullName: OpenTK.Graphics.Wgl.Wgl.NV.DXCloseDeviceNV -- uid: System.Span{System.IntPtr} - commentId: T:System.Span{System.IntPtr} - parent: System - definition: System.Span`1 - href: https://learn.microsoft.com/dotnet/api/system.span-1 - name: Span - nameWithType: Span - fullName: System.Span - nameWithType.vb: Span(Of IntPtr) - fullName.vb: System.Span(Of System.IntPtr) - name.vb: Span(Of IntPtr) - spec.csharp: - - uid: System.Span`1 - name: Span - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.span-1 - - name: < - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: '>' - spec.vb: - - uid: System.Span`1 - name: Span - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.span-1 - - name: ( - - name: Of - - name: " " - - uid: System.IntPtr - name: IntPtr - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ) -- uid: System.Span`1 - commentId: T:System.Span`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.span-1 - name: Span - nameWithType: Span - fullName: System.Span - nameWithType.vb: Span(Of T) - fullName.vb: System.Span(Of T) - name.vb: Span(Of T) - spec.csharp: - - uid: System.Span`1 - name: Span - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.span-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.Span`1 - name: Span - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.span-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: OpenTK.Graphics.Wgl.Wgl.NV.DXObjectAccessNV* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.NV.DXObjectAccessNV - href: OpenTK.Graphics.Wgl.Wgl.NV.html#OpenTK_Graphics_Wgl_Wgl_NV_DXObjectAccessNV_System_IntPtr_OpenTK_Graphics_Wgl_DXInteropMaskNV_ - name: DXObjectAccessNV - nameWithType: Wgl.NV.DXObjectAccessNV - fullName: OpenTK.Graphics.Wgl.Wgl.NV.DXObjectAccessNV -- uid: '{T1}' - commentId: '!:T1' - definition: T1 - name: T1 - nameWithType: T1 - fullName: T1 -- uid: T1 - name: T1 - nameWithType: T1 - fullName: T1 -- uid: OpenTK.Graphics.Wgl.Wgl.NV.DXUnregisterObjectNV* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.NV.DXUnregisterObjectNV - href: OpenTK.Graphics.Wgl.Wgl.NV.html#OpenTK_Graphics_Wgl_Wgl_NV_DXUnregisterObjectNV_System_IntPtr_System_IntPtr_ - name: DXUnregisterObjectNV - nameWithType: Wgl.NV.DXUnregisterObjectNV - fullName: OpenTK.Graphics.Wgl.Wgl.NV.DXUnregisterObjectNV -- uid: System.Span{OpenTK.Graphics.Wgl._GPU_DEVICE} - commentId: T:System.Span{OpenTK.Graphics.Wgl._GPU_DEVICE} - parent: System - definition: System.Span`1 - href: https://learn.microsoft.com/dotnet/api/system.span-1 - name: Span<_GPU_DEVICE> - nameWithType: Span<_GPU_DEVICE> - fullName: System.Span - nameWithType.vb: Span(Of _GPU_DEVICE) - fullName.vb: System.Span(Of OpenTK.Graphics.Wgl._GPU_DEVICE) - name.vb: Span(Of _GPU_DEVICE) - spec.csharp: - - uid: System.Span`1 - name: Span - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.span-1 - - name: < - - uid: OpenTK.Graphics.Wgl._GPU_DEVICE - name: _GPU_DEVICE - href: OpenTK.Graphics.Wgl._GPU_DEVICE.html - - name: '>' - spec.vb: - - uid: System.Span`1 - name: Span - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.span-1 - - name: ( - - name: Of - - name: " " - - uid: OpenTK.Graphics.Wgl._GPU_DEVICE - name: _GPU_DEVICE - href: OpenTK.Graphics.Wgl._GPU_DEVICE.html - - name: ) -- uid: OpenTK.Graphics.Wgl._GPU_DEVICE[] - isExternal: true - href: OpenTK.Graphics.Wgl._GPU_DEVICE.html - name: _GPU_DEVICE[] - nameWithType: _GPU_DEVICE[] - fullName: OpenTK.Graphics.Wgl._GPU_DEVICE[] - nameWithType.vb: _GPU_DEVICE() - fullName.vb: OpenTK.Graphics.Wgl._GPU_DEVICE() - name.vb: _GPU_DEVICE() - spec.csharp: - - uid: OpenTK.Graphics.Wgl._GPU_DEVICE - name: _GPU_DEVICE - href: OpenTK.Graphics.Wgl._GPU_DEVICE.html - - name: '[' - - name: ']' - spec.vb: - - uid: OpenTK.Graphics.Wgl._GPU_DEVICE - name: _GPU_DEVICE - href: OpenTK.Graphics.Wgl._GPU_DEVICE.html - - name: ( - - name: ) -- uid: OpenTK.Graphics.Wgl._GPU_DEVICE - commentId: T:OpenTK.Graphics.Wgl._GPU_DEVICE - parent: OpenTK.Graphics.Wgl - href: OpenTK.Graphics.Wgl._GPU_DEVICE.html - name: _GPU_DEVICE - nameWithType: _GPU_DEVICE - fullName: OpenTK.Graphics.Wgl._GPU_DEVICE -- uid: System.Span{{T1}} - commentId: T:System.Span{``0} - parent: System - definition: System.Span`1 - href: https://learn.microsoft.com/dotnet/api/system.span-1 - name: Span - nameWithType: Span - fullName: System.Span - nameWithType.vb: Span(Of T1) - fullName.vb: System.Span(Of T1) - name.vb: Span(Of T1) - spec.csharp: - - uid: System.Span`1 - name: Span - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.span-1 - - name: < - - name: T1 - - name: '>' - spec.vb: - - uid: System.Span`1 - name: Span - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.span-1 - - name: ( - - name: Of - - name: " " - - name: T1 - - name: ) -- uid: '{T1}[]' - isExternal: true - name: T1[] - nameWithType: T1[] - fullName: T1[] - nameWithType.vb: T1() - fullName.vb: T1() - name.vb: T1() - spec.csharp: - - name: T1 - - name: '[' - - name: ']' - spec.vb: - - name: T1 - - name: ( - - name: ) -- uid: System.UInt64 - commentId: T:System.UInt64 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint64 - name: ulong - nameWithType: ulong - fullName: ulong - nameWithType.vb: ULong - fullName.vb: ULong - name.vb: ULong -- uid: OpenTK.Graphics.Wgl.Wgl.NV.JoinSwapGroupNV* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.NV.JoinSwapGroupNV - href: OpenTK.Graphics.Wgl.Wgl.NV.html#OpenTK_Graphics_Wgl_Wgl_NV_JoinSwapGroupNV_System_IntPtr_System_UInt32_ - name: JoinSwapGroupNV - nameWithType: Wgl.NV.JoinSwapGroupNV - fullName: OpenTK.Graphics.Wgl.Wgl.NV.JoinSwapGroupNV -- uid: OpenTK.Graphics.Wgl.Wgl.NV.LockVideoCaptureDeviceNV* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.NV.LockVideoCaptureDeviceNV - href: OpenTK.Graphics.Wgl.Wgl.NV.html#OpenTK_Graphics_Wgl_Wgl_NV_LockVideoCaptureDeviceNV_System_IntPtr_System_IntPtr_ - name: LockVideoCaptureDeviceNV - nameWithType: Wgl.NV.LockVideoCaptureDeviceNV - fullName: OpenTK.Graphics.Wgl.Wgl.NV.LockVideoCaptureDeviceNV -- uid: OpenTK.Graphics.Wgl.Wgl.NV.ReleaseVideoCaptureDeviceNV* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.NV.ReleaseVideoCaptureDeviceNV - href: OpenTK.Graphics.Wgl.Wgl.NV.html#OpenTK_Graphics_Wgl_Wgl_NV_ReleaseVideoCaptureDeviceNV_System_IntPtr_System_IntPtr_ - name: ReleaseVideoCaptureDeviceNV - nameWithType: Wgl.NV.ReleaseVideoCaptureDeviceNV - fullName: OpenTK.Graphics.Wgl.Wgl.NV.ReleaseVideoCaptureDeviceNV -- uid: OpenTK.Graphics.Wgl.Wgl.NV.ReleaseVideoDeviceNV* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.NV.ReleaseVideoDeviceNV - href: OpenTK.Graphics.Wgl.Wgl.NV.html#OpenTK_Graphics_Wgl_Wgl_NV_ReleaseVideoDeviceNV_System_IntPtr_ - name: ReleaseVideoDeviceNV - nameWithType: Wgl.NV.ReleaseVideoDeviceNV - fullName: OpenTK.Graphics.Wgl.Wgl.NV.ReleaseVideoDeviceNV -- uid: OpenTK.Graphics.Wgl.Wgl.NV.ReleaseVideoImageNV* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.NV.ReleaseVideoImageNV - href: OpenTK.Graphics.Wgl.Wgl.NV.html#OpenTK_Graphics_Wgl_Wgl_NV_ReleaseVideoImageNV_System_IntPtr_OpenTK_Graphics_Wgl_VideoOutputBuffer_ - name: ReleaseVideoImageNV - nameWithType: Wgl.NV.ReleaseVideoImageNV - fullName: OpenTK.Graphics.Wgl.Wgl.NV.ReleaseVideoImageNV -- uid: OpenTK.Graphics.Wgl.Wgl.NV.ResetFrameCountNV* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.NV.ResetFrameCountNV - href: OpenTK.Graphics.Wgl.Wgl.NV.html#OpenTK_Graphics_Wgl_Wgl_NV_ResetFrameCountNV_System_IntPtr_ - name: ResetFrameCountNV - nameWithType: Wgl.NV.ResetFrameCountNV - fullName: OpenTK.Graphics.Wgl.Wgl.NV.ResetFrameCountNV diff --git a/api/OpenTK.Graphics.Wgl.Wgl.OML.yml b/api/OpenTK.Graphics.Wgl.Wgl.OML.yml deleted file mode 100644 index baf65fa1..00000000 --- a/api/OpenTK.Graphics.Wgl.Wgl.OML.yml +++ /dev/null @@ -1,887 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: OpenTK.Graphics.Wgl.Wgl.OML - commentId: T:OpenTK.Graphics.Wgl.Wgl.OML - id: Wgl.OML - parent: OpenTK.Graphics.Wgl - children: - - OpenTK.Graphics.Wgl.Wgl.OML.GetMscRateOML(System.IntPtr,System.Int32*,System.Int32*) - - OpenTK.Graphics.Wgl.Wgl.OML.GetMscRateOML(System.IntPtr,System.Int32@,System.Int32@) - - OpenTK.Graphics.Wgl.Wgl.OML.GetSyncValuesOML(System.IntPtr,System.Int64*,System.Int64*,System.Int64*) - - OpenTK.Graphics.Wgl.Wgl.OML.GetSyncValuesOML(System.IntPtr,System.Int64@,System.Int64@,System.Int64@) - - OpenTK.Graphics.Wgl.Wgl.OML.SwapBuffersMscOML(System.IntPtr,System.Int64,System.Int64,System.Int64) - - OpenTK.Graphics.Wgl.Wgl.OML.SwapLayerBuffersMscOML(System.IntPtr,OpenTK.Graphics.Wgl.LayerPlaneMask,System.Int64,System.Int64,System.Int64) - - OpenTK.Graphics.Wgl.Wgl.OML.WaitForMscOML(System.IntPtr,System.Int64,System.Int64,System.Int64,System.Int64*,System.Int64*,System.Int64*) - - OpenTK.Graphics.Wgl.Wgl.OML.WaitForMscOML(System.IntPtr,System.Int64,System.Int64,System.Int64,System.Int64@,System.Int64@,System.Int64@) - - OpenTK.Graphics.Wgl.Wgl.OML.WaitForSbcOML(System.IntPtr,System.Int64,System.Int64*,System.Int64*,System.Int64*) - - OpenTK.Graphics.Wgl.Wgl.OML.WaitForSbcOML(System.IntPtr,System.Int64,System.Int64@,System.Int64@,System.Int64@) - langs: - - csharp - - vb - name: Wgl.OML - nameWithType: Wgl.OML - fullName: OpenTK.Graphics.Wgl.Wgl.OML - type: Class - source: - id: OML - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 2030 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: OML extensions. - example: [] - syntax: - content: public static class Wgl.OML - content.vb: Public Module Wgl.OML - inheritance: - - System.Object - inheritedMembers: - - System.Object.Equals(System.Object) - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetHashCode - - System.Object.GetType - - System.Object.MemberwiseClone - - System.Object.ReferenceEquals(System.Object,System.Object) - - System.Object.ToString -- uid: OpenTK.Graphics.Wgl.Wgl.OML.GetMscRateOML(System.IntPtr,System.Int32*,System.Int32*) - commentId: M:OpenTK.Graphics.Wgl.Wgl.OML.GetMscRateOML(System.IntPtr,System.Int32*,System.Int32*) - id: GetMscRateOML(System.IntPtr,System.Int32*,System.Int32*) - parent: OpenTK.Graphics.Wgl.Wgl.OML - langs: - - csharp - - vb - name: GetMscRateOML(nint, int*, int*) - nameWithType: Wgl.OML.GetMscRateOML(nint, int*, int*) - fullName: OpenTK.Graphics.Wgl.Wgl.OML.GetMscRateOML(nint, int*, int*) - type: Method - source: - id: GetMscRateOML - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs - startLine: 456 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_OML_sync_control] - - [entry point: wglGetMscRateOML] - -
- example: [] - syntax: - content: public static int GetMscRateOML(nint hdc, int* numerator, int* denominator) - parameters: - - id: hdc - type: System.IntPtr - - id: numerator - type: System.Int32* - - id: denominator - type: System.Int32* - return: - type: System.Int32 - content.vb: Public Shared Function GetMscRateOML(hdc As IntPtr, numerator As Integer*, denominator As Integer*) As Integer - overload: OpenTK.Graphics.Wgl.Wgl.OML.GetMscRateOML* - nameWithType.vb: Wgl.OML.GetMscRateOML(IntPtr, Integer*, Integer*) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.OML.GetMscRateOML(System.IntPtr, Integer*, Integer*) - name.vb: GetMscRateOML(IntPtr, Integer*, Integer*) -- uid: OpenTK.Graphics.Wgl.Wgl.OML.GetSyncValuesOML(System.IntPtr,System.Int64*,System.Int64*,System.Int64*) - commentId: M:OpenTK.Graphics.Wgl.Wgl.OML.GetSyncValuesOML(System.IntPtr,System.Int64*,System.Int64*,System.Int64*) - id: GetSyncValuesOML(System.IntPtr,System.Int64*,System.Int64*,System.Int64*) - parent: OpenTK.Graphics.Wgl.Wgl.OML - langs: - - csharp - - vb - name: GetSyncValuesOML(nint, long*, long*, long*) - nameWithType: Wgl.OML.GetSyncValuesOML(nint, long*, long*, long*) - fullName: OpenTK.Graphics.Wgl.Wgl.OML.GetSyncValuesOML(nint, long*, long*, long*) - type: Method - source: - id: GetSyncValuesOML - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs - startLine: 459 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_OML_sync_control] - - [entry point: wglGetSyncValuesOML] - -
- example: [] - syntax: - content: public static int GetSyncValuesOML(nint hdc, long* ust, long* msc, long* sbc) - parameters: - - id: hdc - type: System.IntPtr - - id: ust - type: System.Int64* - - id: msc - type: System.Int64* - - id: sbc - type: System.Int64* - return: - type: System.Int32 - content.vb: Public Shared Function GetSyncValuesOML(hdc As IntPtr, ust As Long*, msc As Long*, sbc As Long*) As Integer - overload: OpenTK.Graphics.Wgl.Wgl.OML.GetSyncValuesOML* - nameWithType.vb: Wgl.OML.GetSyncValuesOML(IntPtr, Long*, Long*, Long*) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.OML.GetSyncValuesOML(System.IntPtr, Long*, Long*, Long*) - name.vb: GetSyncValuesOML(IntPtr, Long*, Long*, Long*) -- uid: OpenTK.Graphics.Wgl.Wgl.OML.SwapBuffersMscOML(System.IntPtr,System.Int64,System.Int64,System.Int64) - commentId: M:OpenTK.Graphics.Wgl.Wgl.OML.SwapBuffersMscOML(System.IntPtr,System.Int64,System.Int64,System.Int64) - id: SwapBuffersMscOML(System.IntPtr,System.Int64,System.Int64,System.Int64) - parent: OpenTK.Graphics.Wgl.Wgl.OML - langs: - - csharp - - vb - name: SwapBuffersMscOML(nint, long, long, long) - nameWithType: Wgl.OML.SwapBuffersMscOML(nint, long, long, long) - fullName: OpenTK.Graphics.Wgl.Wgl.OML.SwapBuffersMscOML(nint, long, long, long) - type: Method - source: - id: SwapBuffersMscOML - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs - startLine: 462 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_OML_sync_control] - - [entry point: wglSwapBuffersMscOML] - -
- example: [] - syntax: - content: public static long SwapBuffersMscOML(nint hdc, long target_msc, long divisor, long remainder) - parameters: - - id: hdc - type: System.IntPtr - - id: target_msc - type: System.Int64 - - id: divisor - type: System.Int64 - - id: remainder - type: System.Int64 - return: - type: System.Int64 - content.vb: Public Shared Function SwapBuffersMscOML(hdc As IntPtr, target_msc As Long, divisor As Long, remainder As Long) As Long - overload: OpenTK.Graphics.Wgl.Wgl.OML.SwapBuffersMscOML* - nameWithType.vb: Wgl.OML.SwapBuffersMscOML(IntPtr, Long, Long, Long) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.OML.SwapBuffersMscOML(System.IntPtr, Long, Long, Long) - name.vb: SwapBuffersMscOML(IntPtr, Long, Long, Long) -- uid: OpenTK.Graphics.Wgl.Wgl.OML.SwapLayerBuffersMscOML(System.IntPtr,OpenTK.Graphics.Wgl.LayerPlaneMask,System.Int64,System.Int64,System.Int64) - commentId: M:OpenTK.Graphics.Wgl.Wgl.OML.SwapLayerBuffersMscOML(System.IntPtr,OpenTK.Graphics.Wgl.LayerPlaneMask,System.Int64,System.Int64,System.Int64) - id: SwapLayerBuffersMscOML(System.IntPtr,OpenTK.Graphics.Wgl.LayerPlaneMask,System.Int64,System.Int64,System.Int64) - parent: OpenTK.Graphics.Wgl.Wgl.OML - langs: - - csharp - - vb - name: SwapLayerBuffersMscOML(nint, LayerPlaneMask, long, long, long) - nameWithType: Wgl.OML.SwapLayerBuffersMscOML(nint, LayerPlaneMask, long, long, long) - fullName: OpenTK.Graphics.Wgl.Wgl.OML.SwapLayerBuffersMscOML(nint, OpenTK.Graphics.Wgl.LayerPlaneMask, long, long, long) - type: Method - source: - id: SwapLayerBuffersMscOML - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs - startLine: 465 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_OML_sync_control] - - [entry point: wglSwapLayerBuffersMscOML] - -
- example: [] - syntax: - content: public static long SwapLayerBuffersMscOML(nint hdc, LayerPlaneMask fuPlanes, long target_msc, long divisor, long remainder) - parameters: - - id: hdc - type: System.IntPtr - - id: fuPlanes - type: OpenTK.Graphics.Wgl.LayerPlaneMask - - id: target_msc - type: System.Int64 - - id: divisor - type: System.Int64 - - id: remainder - type: System.Int64 - return: - type: System.Int64 - content.vb: Public Shared Function SwapLayerBuffersMscOML(hdc As IntPtr, fuPlanes As LayerPlaneMask, target_msc As Long, divisor As Long, remainder As Long) As Long - overload: OpenTK.Graphics.Wgl.Wgl.OML.SwapLayerBuffersMscOML* - nameWithType.vb: Wgl.OML.SwapLayerBuffersMscOML(IntPtr, LayerPlaneMask, Long, Long, Long) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.OML.SwapLayerBuffersMscOML(System.IntPtr, OpenTK.Graphics.Wgl.LayerPlaneMask, Long, Long, Long) - name.vb: SwapLayerBuffersMscOML(IntPtr, LayerPlaneMask, Long, Long, Long) -- uid: OpenTK.Graphics.Wgl.Wgl.OML.WaitForMscOML(System.IntPtr,System.Int64,System.Int64,System.Int64,System.Int64*,System.Int64*,System.Int64*) - commentId: M:OpenTK.Graphics.Wgl.Wgl.OML.WaitForMscOML(System.IntPtr,System.Int64,System.Int64,System.Int64,System.Int64*,System.Int64*,System.Int64*) - id: WaitForMscOML(System.IntPtr,System.Int64,System.Int64,System.Int64,System.Int64*,System.Int64*,System.Int64*) - parent: OpenTK.Graphics.Wgl.Wgl.OML - langs: - - csharp - - vb - name: WaitForMscOML(nint, long, long, long, long*, long*, long*) - nameWithType: Wgl.OML.WaitForMscOML(nint, long, long, long, long*, long*, long*) - fullName: OpenTK.Graphics.Wgl.Wgl.OML.WaitForMscOML(nint, long, long, long, long*, long*, long*) - type: Method - source: - id: WaitForMscOML - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs - startLine: 468 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_OML_sync_control] - - [entry point: wglWaitForMscOML] - -
- example: [] - syntax: - content: public static int WaitForMscOML(nint hdc, long target_msc, long divisor, long remainder, long* ust, long* msc, long* sbc) - parameters: - - id: hdc - type: System.IntPtr - - id: target_msc - type: System.Int64 - - id: divisor - type: System.Int64 - - id: remainder - type: System.Int64 - - id: ust - type: System.Int64* - - id: msc - type: System.Int64* - - id: sbc - type: System.Int64* - return: - type: System.Int32 - content.vb: Public Shared Function WaitForMscOML(hdc As IntPtr, target_msc As Long, divisor As Long, remainder As Long, ust As Long*, msc As Long*, sbc As Long*) As Integer - overload: OpenTK.Graphics.Wgl.Wgl.OML.WaitForMscOML* - nameWithType.vb: Wgl.OML.WaitForMscOML(IntPtr, Long, Long, Long, Long*, Long*, Long*) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.OML.WaitForMscOML(System.IntPtr, Long, Long, Long, Long*, Long*, Long*) - name.vb: WaitForMscOML(IntPtr, Long, Long, Long, Long*, Long*, Long*) -- uid: OpenTK.Graphics.Wgl.Wgl.OML.WaitForSbcOML(System.IntPtr,System.Int64,System.Int64*,System.Int64*,System.Int64*) - commentId: M:OpenTK.Graphics.Wgl.Wgl.OML.WaitForSbcOML(System.IntPtr,System.Int64,System.Int64*,System.Int64*,System.Int64*) - id: WaitForSbcOML(System.IntPtr,System.Int64,System.Int64*,System.Int64*,System.Int64*) - parent: OpenTK.Graphics.Wgl.Wgl.OML - langs: - - csharp - - vb - name: WaitForSbcOML(nint, long, long*, long*, long*) - nameWithType: Wgl.OML.WaitForSbcOML(nint, long, long*, long*, long*) - fullName: OpenTK.Graphics.Wgl.Wgl.OML.WaitForSbcOML(nint, long, long*, long*, long*) - type: Method - source: - id: WaitForSbcOML - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs - startLine: 471 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_OML_sync_control] - - [entry point: wglWaitForSbcOML] - -
- example: [] - syntax: - content: public static int WaitForSbcOML(nint hdc, long target_sbc, long* ust, long* msc, long* sbc) - parameters: - - id: hdc - type: System.IntPtr - - id: target_sbc - type: System.Int64 - - id: ust - type: System.Int64* - - id: msc - type: System.Int64* - - id: sbc - type: System.Int64* - return: - type: System.Int32 - content.vb: Public Shared Function WaitForSbcOML(hdc As IntPtr, target_sbc As Long, ust As Long*, msc As Long*, sbc As Long*) As Integer - overload: OpenTK.Graphics.Wgl.Wgl.OML.WaitForSbcOML* - nameWithType.vb: Wgl.OML.WaitForSbcOML(IntPtr, Long, Long*, Long*, Long*) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.OML.WaitForSbcOML(System.IntPtr, Long, Long*, Long*, Long*) - name.vb: WaitForSbcOML(IntPtr, Long, Long*, Long*, Long*) -- uid: OpenTK.Graphics.Wgl.Wgl.OML.GetMscRateOML(System.IntPtr,System.Int32@,System.Int32@) - commentId: M:OpenTK.Graphics.Wgl.Wgl.OML.GetMscRateOML(System.IntPtr,System.Int32@,System.Int32@) - id: GetMscRateOML(System.IntPtr,System.Int32@,System.Int32@) - parent: OpenTK.Graphics.Wgl.Wgl.OML - langs: - - csharp - - vb - name: GetMscRateOML(nint, out int, out int) - nameWithType: Wgl.OML.GetMscRateOML(nint, out int, out int) - fullName: OpenTK.Graphics.Wgl.Wgl.OML.GetMscRateOML(nint, out int, out int) - type: Method - source: - id: GetMscRateOML - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 2033 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_OML_sync_control] - - [entry point: wglGetMscRateOML] - -
- example: [] - syntax: - content: public static bool GetMscRateOML(nint hdc, out int numerator, out int denominator) - parameters: - - id: hdc - type: System.IntPtr - - id: numerator - type: System.Int32 - - id: denominator - type: System.Int32 - return: - type: System.Boolean - content.vb: Public Shared Function GetMscRateOML(hdc As IntPtr, numerator As Integer, denominator As Integer) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.OML.GetMscRateOML* - nameWithType.vb: Wgl.OML.GetMscRateOML(IntPtr, Integer, Integer) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.OML.GetMscRateOML(System.IntPtr, Integer, Integer) - name.vb: GetMscRateOML(IntPtr, Integer, Integer) -- uid: OpenTK.Graphics.Wgl.Wgl.OML.GetSyncValuesOML(System.IntPtr,System.Int64@,System.Int64@,System.Int64@) - commentId: M:OpenTK.Graphics.Wgl.Wgl.OML.GetSyncValuesOML(System.IntPtr,System.Int64@,System.Int64@,System.Int64@) - id: GetSyncValuesOML(System.IntPtr,System.Int64@,System.Int64@,System.Int64@) - parent: OpenTK.Graphics.Wgl.Wgl.OML - langs: - - csharp - - vb - name: GetSyncValuesOML(nint, out long, out long, out long) - nameWithType: Wgl.OML.GetSyncValuesOML(nint, out long, out long, out long) - fullName: OpenTK.Graphics.Wgl.Wgl.OML.GetSyncValuesOML(nint, out long, out long, out long) - type: Method - source: - id: GetSyncValuesOML - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 2046 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_OML_sync_control] - - [entry point: wglGetSyncValuesOML] - -
- example: [] - syntax: - content: public static bool GetSyncValuesOML(nint hdc, out long ust, out long msc, out long sbc) - parameters: - - id: hdc - type: System.IntPtr - - id: ust - type: System.Int64 - - id: msc - type: System.Int64 - - id: sbc - type: System.Int64 - return: - type: System.Boolean - content.vb: Public Shared Function GetSyncValuesOML(hdc As IntPtr, ust As Long, msc As Long, sbc As Long) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.OML.GetSyncValuesOML* - nameWithType.vb: Wgl.OML.GetSyncValuesOML(IntPtr, Long, Long, Long) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.OML.GetSyncValuesOML(System.IntPtr, Long, Long, Long) - name.vb: GetSyncValuesOML(IntPtr, Long, Long, Long) -- uid: OpenTK.Graphics.Wgl.Wgl.OML.WaitForMscOML(System.IntPtr,System.Int64,System.Int64,System.Int64,System.Int64@,System.Int64@,System.Int64@) - commentId: M:OpenTK.Graphics.Wgl.Wgl.OML.WaitForMscOML(System.IntPtr,System.Int64,System.Int64,System.Int64,System.Int64@,System.Int64@,System.Int64@) - id: WaitForMscOML(System.IntPtr,System.Int64,System.Int64,System.Int64,System.Int64@,System.Int64@,System.Int64@) - parent: OpenTK.Graphics.Wgl.Wgl.OML - langs: - - csharp - - vb - name: WaitForMscOML(nint, long, long, long, out long, out long, out long) - nameWithType: Wgl.OML.WaitForMscOML(nint, long, long, long, out long, out long, out long) - fullName: OpenTK.Graphics.Wgl.Wgl.OML.WaitForMscOML(nint, long, long, long, out long, out long, out long) - type: Method - source: - id: WaitForMscOML - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 2060 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_OML_sync_control] - - [entry point: wglWaitForMscOML] - -
- example: [] - syntax: - content: public static bool WaitForMscOML(nint hdc, long target_msc, long divisor, long remainder, out long ust, out long msc, out long sbc) - parameters: - - id: hdc - type: System.IntPtr - - id: target_msc - type: System.Int64 - - id: divisor - type: System.Int64 - - id: remainder - type: System.Int64 - - id: ust - type: System.Int64 - - id: msc - type: System.Int64 - - id: sbc - type: System.Int64 - return: - type: System.Boolean - content.vb: Public Shared Function WaitForMscOML(hdc As IntPtr, target_msc As Long, divisor As Long, remainder As Long, ust As Long, msc As Long, sbc As Long) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.OML.WaitForMscOML* - nameWithType.vb: Wgl.OML.WaitForMscOML(IntPtr, Long, Long, Long, Long, Long, Long) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.OML.WaitForMscOML(System.IntPtr, Long, Long, Long, Long, Long, Long) - name.vb: WaitForMscOML(IntPtr, Long, Long, Long, Long, Long, Long) -- uid: OpenTK.Graphics.Wgl.Wgl.OML.WaitForSbcOML(System.IntPtr,System.Int64,System.Int64@,System.Int64@,System.Int64@) - commentId: M:OpenTK.Graphics.Wgl.Wgl.OML.WaitForSbcOML(System.IntPtr,System.Int64,System.Int64@,System.Int64@,System.Int64@) - id: WaitForSbcOML(System.IntPtr,System.Int64,System.Int64@,System.Int64@,System.Int64@) - parent: OpenTK.Graphics.Wgl.Wgl.OML - langs: - - csharp - - vb - name: WaitForSbcOML(nint, long, out long, out long, out long) - nameWithType: Wgl.OML.WaitForSbcOML(nint, long, out long, out long, out long) - fullName: OpenTK.Graphics.Wgl.Wgl.OML.WaitForSbcOML(nint, long, out long, out long, out long) - type: Method - source: - id: WaitForSbcOML - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 2074 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: WGL_OML_sync_control] - - [entry point: wglWaitForSbcOML] - -
- example: [] - syntax: - content: public static bool WaitForSbcOML(nint hdc, long target_sbc, out long ust, out long msc, out long sbc) - parameters: - - id: hdc - type: System.IntPtr - - id: target_sbc - type: System.Int64 - - id: ust - type: System.Int64 - - id: msc - type: System.Int64 - - id: sbc - type: System.Int64 - return: - type: System.Boolean - content.vb: Public Shared Function WaitForSbcOML(hdc As IntPtr, target_sbc As Long, ust As Long, msc As Long, sbc As Long) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.OML.WaitForSbcOML* - nameWithType.vb: Wgl.OML.WaitForSbcOML(IntPtr, Long, Long, Long, Long) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.OML.WaitForSbcOML(System.IntPtr, Long, Long, Long, Long) - name.vb: WaitForSbcOML(IntPtr, Long, Long, Long, Long) -references: -- uid: OpenTK.Graphics.Wgl - commentId: N:OpenTK.Graphics.Wgl - href: OpenTK.html - name: OpenTK.Graphics.Wgl - nameWithType: OpenTK.Graphics.Wgl - fullName: OpenTK.Graphics.Wgl - spec.csharp: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Wgl - name: Wgl - href: OpenTK.Graphics.Wgl.html - spec.vb: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Wgl - name: Wgl - href: OpenTK.Graphics.Wgl.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: System.Object.Equals(System.Object) - commentId: M:System.Object.Equals(System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - name: Equals(object) - nameWithType: object.Equals(object) - fullName: object.Equals(object) - nameWithType.vb: Object.Equals(Object) - fullName.vb: Object.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetHashCode - commentId: M:System.Object.GetHashCode - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - name: GetHashCode() - nameWithType: object.GetHashCode() - fullName: object.GetHashCode() - nameWithType.vb: Object.GetHashCode() - fullName.vb: Object.GetHashCode() - spec.csharp: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.MemberwiseClone - commentId: M:System.Object.MemberwiseClone - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - name: MemberwiseClone() - nameWithType: object.MemberwiseClone() - fullName: object.MemberwiseClone() - nameWithType.vb: Object.MemberwiseClone() - fullName.vb: Object.MemberwiseClone() - spec.csharp: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) - spec.vb: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.ToString - commentId: M:System.Object.ToString - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - name: ToString() - nameWithType: object.ToString() - fullName: object.ToString() - nameWithType.vb: Object.ToString() - fullName.vb: Object.ToString() - spec.csharp: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) - spec.vb: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: OpenTK.Graphics.Wgl.Wgl.OML.GetMscRateOML* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.OML.GetMscRateOML - href: OpenTK.Graphics.Wgl.Wgl.OML.html#OpenTK_Graphics_Wgl_Wgl_OML_GetMscRateOML_System_IntPtr_System_Int32__System_Int32__ - name: GetMscRateOML - nameWithType: Wgl.OML.GetMscRateOML - fullName: OpenTK.Graphics.Wgl.Wgl.OML.GetMscRateOML -- uid: System.IntPtr - commentId: T:System.IntPtr - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: nint - nameWithType: nint - fullName: nint - nameWithType.vb: IntPtr - fullName.vb: System.IntPtr - name.vb: IntPtr -- uid: System.Int32* - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - name: int* - nameWithType: int* - fullName: int* - nameWithType.vb: Integer* - fullName.vb: Integer* - name.vb: Integer* - spec.csharp: - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '*' - spec.vb: - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '*' -- uid: System.Int32 - commentId: T:System.Int32 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - name: int - nameWithType: int - fullName: int - nameWithType.vb: Integer - fullName.vb: Integer - name.vb: Integer -- uid: OpenTK.Graphics.Wgl.Wgl.OML.GetSyncValuesOML* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.OML.GetSyncValuesOML - href: OpenTK.Graphics.Wgl.Wgl.OML.html#OpenTK_Graphics_Wgl_Wgl_OML_GetSyncValuesOML_System_IntPtr_System_Int64__System_Int64__System_Int64__ - name: GetSyncValuesOML - nameWithType: Wgl.OML.GetSyncValuesOML - fullName: OpenTK.Graphics.Wgl.Wgl.OML.GetSyncValuesOML -- uid: System.Int64* - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int64 - name: long* - nameWithType: long* - fullName: long* - nameWithType.vb: Long* - fullName.vb: Long* - name.vb: Long* - spec.csharp: - - uid: System.Int64 - name: long - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int64 - - name: '*' - spec.vb: - - uid: System.Int64 - name: Long - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int64 - - name: '*' -- uid: OpenTK.Graphics.Wgl.Wgl.OML.SwapBuffersMscOML* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.OML.SwapBuffersMscOML - href: OpenTK.Graphics.Wgl.Wgl.OML.html#OpenTK_Graphics_Wgl_Wgl_OML_SwapBuffersMscOML_System_IntPtr_System_Int64_System_Int64_System_Int64_ - name: SwapBuffersMscOML - nameWithType: Wgl.OML.SwapBuffersMscOML - fullName: OpenTK.Graphics.Wgl.Wgl.OML.SwapBuffersMscOML -- uid: System.Int64 - commentId: T:System.Int64 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int64 - name: long - nameWithType: long - fullName: long - nameWithType.vb: Long - fullName.vb: Long - name.vb: Long -- uid: OpenTK.Graphics.Wgl.Wgl.OML.SwapLayerBuffersMscOML* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.OML.SwapLayerBuffersMscOML - href: OpenTK.Graphics.Wgl.Wgl.OML.html#OpenTK_Graphics_Wgl_Wgl_OML_SwapLayerBuffersMscOML_System_IntPtr_OpenTK_Graphics_Wgl_LayerPlaneMask_System_Int64_System_Int64_System_Int64_ - name: SwapLayerBuffersMscOML - nameWithType: Wgl.OML.SwapLayerBuffersMscOML - fullName: OpenTK.Graphics.Wgl.Wgl.OML.SwapLayerBuffersMscOML -- uid: OpenTK.Graphics.Wgl.LayerPlaneMask - commentId: T:OpenTK.Graphics.Wgl.LayerPlaneMask - parent: OpenTK.Graphics.Wgl - href: OpenTK.Graphics.Wgl.LayerPlaneMask.html - name: LayerPlaneMask - nameWithType: LayerPlaneMask - fullName: OpenTK.Graphics.Wgl.LayerPlaneMask -- uid: OpenTK.Graphics.Wgl.Wgl.OML.WaitForMscOML* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.OML.WaitForMscOML - href: OpenTK.Graphics.Wgl.Wgl.OML.html#OpenTK_Graphics_Wgl_Wgl_OML_WaitForMscOML_System_IntPtr_System_Int64_System_Int64_System_Int64_System_Int64__System_Int64__System_Int64__ - name: WaitForMscOML - nameWithType: Wgl.OML.WaitForMscOML - fullName: OpenTK.Graphics.Wgl.Wgl.OML.WaitForMscOML -- uid: OpenTK.Graphics.Wgl.Wgl.OML.WaitForSbcOML* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.OML.WaitForSbcOML - href: OpenTK.Graphics.Wgl.Wgl.OML.html#OpenTK_Graphics_Wgl_Wgl_OML_WaitForSbcOML_System_IntPtr_System_Int64_System_Int64__System_Int64__System_Int64__ - name: WaitForSbcOML - nameWithType: Wgl.OML.WaitForSbcOML - fullName: OpenTK.Graphics.Wgl.Wgl.OML.WaitForSbcOML -- uid: System.Boolean - commentId: T:System.Boolean - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - name: bool - nameWithType: bool - fullName: bool - nameWithType.vb: Boolean - fullName.vb: Boolean - name.vb: Boolean diff --git a/api/OpenTK.Graphics.Wgl.Wgl.yml b/api/OpenTK.Graphics.Wgl.Wgl.yml deleted file mode 100644 index 811c1d14..00000000 --- a/api/OpenTK.Graphics.Wgl.Wgl.yml +++ /dev/null @@ -1,2996 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: OpenTK.Graphics.Wgl.Wgl - commentId: T:OpenTK.Graphics.Wgl.Wgl - id: Wgl - parent: OpenTK.Graphics.Wgl - children: - - OpenTK.Graphics.Wgl.Wgl.ChoosePixelFormat(System.IntPtr,OpenTK.Graphics.Wgl.PixelFormatDescriptor*) - - OpenTK.Graphics.Wgl.Wgl.ChoosePixelFormat(System.IntPtr,OpenTK.Graphics.Wgl.PixelFormatDescriptor@) - - OpenTK.Graphics.Wgl.Wgl.CopyContext(System.IntPtr,System.IntPtr,OpenTK.Graphics.OpenGL.AttribMask) - - OpenTK.Graphics.Wgl.Wgl.CopyContext_(System.IntPtr,System.IntPtr,OpenTK.Graphics.OpenGL.AttribMask) - - OpenTK.Graphics.Wgl.Wgl.CreateContext(System.IntPtr) - - OpenTK.Graphics.Wgl.Wgl.CreateLayerContext(System.IntPtr,System.Int32) - - OpenTK.Graphics.Wgl.Wgl.DeleteContext(System.IntPtr) - - OpenTK.Graphics.Wgl.Wgl.DeleteContext_(System.IntPtr) - - OpenTK.Graphics.Wgl.Wgl.DescribeLayerPlane(System.IntPtr,System.Int32,System.Int32,System.UInt32,OpenTK.Graphics.Wgl.LayerPlaneDescriptor*) - - OpenTK.Graphics.Wgl.Wgl.DescribeLayerPlane(System.IntPtr,System.Int32,System.Int32,System.UInt32,OpenTK.Graphics.Wgl.LayerPlaneDescriptor@) - - OpenTK.Graphics.Wgl.Wgl.DescribePixelFormat(System.IntPtr,System.Int32,System.UInt32,OpenTK.Graphics.Wgl.PixelFormatDescriptor*) - - OpenTK.Graphics.Wgl.Wgl.DescribePixelFormat(System.IntPtr,System.Int32,System.UInt32,OpenTK.Graphics.Wgl.PixelFormatDescriptor@) - - OpenTK.Graphics.Wgl.Wgl.GetCurrentContext - - OpenTK.Graphics.Wgl.Wgl.GetCurrentDC - - OpenTK.Graphics.Wgl.Wgl.GetEnhMetaFilePixelFormat(System.IntPtr,System.UInt32,OpenTK.Graphics.Wgl.PixelFormatDescriptor*) - - OpenTK.Graphics.Wgl.Wgl.GetEnhMetaFilePixelFormat(System.IntPtr,System.UInt32,OpenTK.Graphics.Wgl.PixelFormatDescriptor@) - - OpenTK.Graphics.Wgl.Wgl.GetLayerPaletteEntries(System.IntPtr,System.Int32,System.Int32,System.Int32,OpenTK.Graphics.Wgl.ColorRef*) - - OpenTK.Graphics.Wgl.Wgl.GetLayerPaletteEntries(System.IntPtr,System.Int32,System.Int32,System.Int32,OpenTK.Graphics.Wgl.ColorRef@) - - OpenTK.Graphics.Wgl.Wgl.GetLayerPaletteEntries(System.IntPtr,System.Int32,System.Int32,System.Int32,OpenTK.Graphics.Wgl.ColorRef[]) - - OpenTK.Graphics.Wgl.Wgl.GetLayerPaletteEntries(System.IntPtr,System.Int32,System.Int32,System.Int32,System.Span{OpenTK.Graphics.Wgl.ColorRef}) - - OpenTK.Graphics.Wgl.Wgl.GetPixelFormat(System.IntPtr) - - OpenTK.Graphics.Wgl.Wgl.GetProcAddress(System.Byte*) - - OpenTK.Graphics.Wgl.Wgl.GetProcAddress(System.String) - - OpenTK.Graphics.Wgl.Wgl.MakeCurrent(System.IntPtr,System.IntPtr) - - OpenTK.Graphics.Wgl.Wgl.MakeCurrent_(System.IntPtr,System.IntPtr) - - OpenTK.Graphics.Wgl.Wgl.RealizeLayerPalette(System.IntPtr,System.Int32,System.Int32) - - OpenTK.Graphics.Wgl.Wgl.RealizeLayerPalette_(System.IntPtr,System.Int32,System.Int32) - - OpenTK.Graphics.Wgl.Wgl.SetLayerPaletteEntries(System.IntPtr,System.Int32,System.Int32,System.Int32,OpenTK.Graphics.Wgl.ColorRef*) - - OpenTK.Graphics.Wgl.Wgl.SetLayerPaletteEntries(System.IntPtr,System.Int32,System.Int32,System.Int32,OpenTK.Graphics.Wgl.ColorRef@) - - OpenTK.Graphics.Wgl.Wgl.SetLayerPaletteEntries(System.IntPtr,System.Int32,System.Int32,System.Int32,OpenTK.Graphics.Wgl.ColorRef[]) - - OpenTK.Graphics.Wgl.Wgl.SetLayerPaletteEntries(System.IntPtr,System.Int32,System.Int32,System.Int32,System.ReadOnlySpan{OpenTK.Graphics.Wgl.ColorRef}) - - OpenTK.Graphics.Wgl.Wgl.SetPixelFormat(System.IntPtr,System.Int32,OpenTK.Graphics.Wgl.PixelFormatDescriptor*) - - OpenTK.Graphics.Wgl.Wgl.SetPixelFormat(System.IntPtr,System.Int32,OpenTK.Graphics.Wgl.PixelFormatDescriptor@) - - OpenTK.Graphics.Wgl.Wgl.ShareLists(System.IntPtr,System.IntPtr) - - OpenTK.Graphics.Wgl.Wgl.ShareLists_(System.IntPtr,System.IntPtr) - - OpenTK.Graphics.Wgl.Wgl.SwapBuffers(System.IntPtr) - - OpenTK.Graphics.Wgl.Wgl.SwapBuffers_(System.IntPtr) - - OpenTK.Graphics.Wgl.Wgl.SwapLayerBuffers(System.IntPtr,OpenTK.Graphics.Wgl.LayerPlaneMask) - - OpenTK.Graphics.Wgl.Wgl.SwapLayerBuffers_(System.IntPtr,OpenTK.Graphics.Wgl.LayerPlaneMask) - - OpenTK.Graphics.Wgl.Wgl.UseFontBitmaps(System.IntPtr,System.UInt32,System.UInt32,System.UInt32) - - OpenTK.Graphics.Wgl.Wgl.UseFontBitmapsA(System.IntPtr,System.UInt32,System.UInt32,System.UInt32) - - OpenTK.Graphics.Wgl.Wgl.UseFontBitmapsA_(System.IntPtr,System.UInt32,System.UInt32,System.UInt32) - - OpenTK.Graphics.Wgl.Wgl.UseFontBitmapsW(System.IntPtr,System.UInt32,System.UInt32,System.UInt32) - - OpenTK.Graphics.Wgl.Wgl.UseFontBitmapsW_(System.IntPtr,System.UInt32,System.UInt32,System.UInt32) - - OpenTK.Graphics.Wgl.Wgl.UseFontBitmaps_(System.IntPtr,System.UInt32,System.UInt32,System.UInt32) - - OpenTK.Graphics.Wgl.Wgl.UseFontOutlines(System.IntPtr,System.UInt32,System.UInt32,System.UInt32,System.Single,System.Single,OpenTK.Graphics.Wgl.FontFormat,System.IntPtr) - - OpenTK.Graphics.Wgl.Wgl.UseFontOutlinesA(System.IntPtr,System.UInt32,System.UInt32,System.UInt32,System.Single,System.Single,OpenTK.Graphics.Wgl.FontFormat,System.IntPtr) - - OpenTK.Graphics.Wgl.Wgl.UseFontOutlinesA_(System.IntPtr,System.UInt32,System.UInt32,System.UInt32,System.Single,System.Single,OpenTK.Graphics.Wgl.FontFormat,System.IntPtr) - - OpenTK.Graphics.Wgl.Wgl.UseFontOutlinesW(System.IntPtr,System.UInt32,System.UInt32,System.UInt32,System.Single,System.Single,OpenTK.Graphics.Wgl.FontFormat,System.IntPtr) - - OpenTK.Graphics.Wgl.Wgl.UseFontOutlinesW_(System.IntPtr,System.UInt32,System.UInt32,System.UInt32,System.Single,System.Single,OpenTK.Graphics.Wgl.FontFormat,System.IntPtr) - - OpenTK.Graphics.Wgl.Wgl.UseFontOutlines_(System.IntPtr,System.UInt32,System.UInt32,System.UInt32,System.Single,System.Single,OpenTK.Graphics.Wgl.FontFormat,System.IntPtr) - langs: - - csharp - - vb - name: Wgl - nameWithType: Wgl - fullName: OpenTK.Graphics.Wgl.Wgl - type: Class - source: - id: Wgl - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 11 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: public static class Wgl - content.vb: Public Module Wgl - inheritance: - - System.Object - inheritedMembers: - - System.Object.Equals(System.Object) - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetHashCode - - System.Object.GetType - - System.Object.MemberwiseClone - - System.Object.ReferenceEquals(System.Object,System.Object) - - System.Object.ToString -- uid: OpenTK.Graphics.Wgl.Wgl.ChoosePixelFormat(System.IntPtr,OpenTK.Graphics.Wgl.PixelFormatDescriptor*) - commentId: M:OpenTK.Graphics.Wgl.Wgl.ChoosePixelFormat(System.IntPtr,OpenTK.Graphics.Wgl.PixelFormatDescriptor*) - id: ChoosePixelFormat(System.IntPtr,OpenTK.Graphics.Wgl.PixelFormatDescriptor*) - parent: OpenTK.Graphics.Wgl.Wgl - langs: - - csharp - - vb - name: ChoosePixelFormat(nint, PixelFormatDescriptor*) - nameWithType: Wgl.ChoosePixelFormat(nint, PixelFormatDescriptor*) - fullName: OpenTK.Graphics.Wgl.Wgl.ChoosePixelFormat(nint, OpenTK.Graphics.Wgl.PixelFormatDescriptor*) - type: Method - source: - id: ChoosePixelFormat - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs - startLine: 12 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: v1.0] - - [entry point: ChoosePixelFormat] - -
- example: [] - syntax: - content: public static int ChoosePixelFormat(nint hDc, PixelFormatDescriptor* pPfd) - parameters: - - id: hDc - type: System.IntPtr - - id: pPfd - type: OpenTK.Graphics.Wgl.PixelFormatDescriptor* - return: - type: System.Int32 - content.vb: Public Shared Function ChoosePixelFormat(hDc As IntPtr, pPfd As PixelFormatDescriptor*) As Integer - overload: OpenTK.Graphics.Wgl.Wgl.ChoosePixelFormat* - nameWithType.vb: Wgl.ChoosePixelFormat(IntPtr, PixelFormatDescriptor*) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.ChoosePixelFormat(System.IntPtr, OpenTK.Graphics.Wgl.PixelFormatDescriptor*) - name.vb: ChoosePixelFormat(IntPtr, PixelFormatDescriptor*) -- uid: OpenTK.Graphics.Wgl.Wgl.CopyContext_(System.IntPtr,System.IntPtr,OpenTK.Graphics.OpenGL.AttribMask) - commentId: M:OpenTK.Graphics.Wgl.Wgl.CopyContext_(System.IntPtr,System.IntPtr,OpenTK.Graphics.OpenGL.AttribMask) - id: CopyContext_(System.IntPtr,System.IntPtr,OpenTK.Graphics.OpenGL.AttribMask) - parent: OpenTK.Graphics.Wgl.Wgl - langs: - - csharp - - vb - name: CopyContext_(nint, nint, AttribMask) - nameWithType: Wgl.CopyContext_(nint, nint, AttribMask) - fullName: OpenTK.Graphics.Wgl.Wgl.CopyContext_(nint, nint, OpenTK.Graphics.OpenGL.AttribMask) - type: Method - source: - id: CopyContext_ - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs - startLine: 15 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: v1.0] - - [entry point: wglCopyContext] - -
- example: [] - syntax: - content: public static int CopyContext_(nint hglrcSrc, nint hglrcDst, AttribMask mask) - parameters: - - id: hglrcSrc - type: System.IntPtr - - id: hglrcDst - type: System.IntPtr - - id: mask - type: OpenTK.Graphics.OpenGL.AttribMask - return: - type: System.Int32 - content.vb: Public Shared Function CopyContext_(hglrcSrc As IntPtr, hglrcDst As IntPtr, mask As AttribMask) As Integer - overload: OpenTK.Graphics.Wgl.Wgl.CopyContext_* - nameWithType.vb: Wgl.CopyContext_(IntPtr, IntPtr, AttribMask) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.CopyContext_(System.IntPtr, System.IntPtr, OpenTK.Graphics.OpenGL.AttribMask) - name.vb: CopyContext_(IntPtr, IntPtr, AttribMask) -- uid: OpenTK.Graphics.Wgl.Wgl.CreateContext(System.IntPtr) - commentId: M:OpenTK.Graphics.Wgl.Wgl.CreateContext(System.IntPtr) - id: CreateContext(System.IntPtr) - parent: OpenTK.Graphics.Wgl.Wgl - langs: - - csharp - - vb - name: CreateContext(nint) - nameWithType: Wgl.CreateContext(nint) - fullName: OpenTK.Graphics.Wgl.Wgl.CreateContext(nint) - type: Method - source: - id: CreateContext - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs - startLine: 18 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: v1.0] - - [entry point: wglCreateContext] - -
- example: [] - syntax: - content: public static nint CreateContext(nint hDc) - parameters: - - id: hDc - type: System.IntPtr - return: - type: System.IntPtr - content.vb: Public Shared Function CreateContext(hDc As IntPtr) As IntPtr - overload: OpenTK.Graphics.Wgl.Wgl.CreateContext* - nameWithType.vb: Wgl.CreateContext(IntPtr) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.CreateContext(System.IntPtr) - name.vb: CreateContext(IntPtr) -- uid: OpenTK.Graphics.Wgl.Wgl.CreateLayerContext(System.IntPtr,System.Int32) - commentId: M:OpenTK.Graphics.Wgl.Wgl.CreateLayerContext(System.IntPtr,System.Int32) - id: CreateLayerContext(System.IntPtr,System.Int32) - parent: OpenTK.Graphics.Wgl.Wgl - langs: - - csharp - - vb - name: CreateLayerContext(nint, int) - nameWithType: Wgl.CreateLayerContext(nint, int) - fullName: OpenTK.Graphics.Wgl.Wgl.CreateLayerContext(nint, int) - type: Method - source: - id: CreateLayerContext - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs - startLine: 21 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: v1.0] - - [entry point: wglCreateLayerContext] - -
- example: [] - syntax: - content: public static nint CreateLayerContext(nint hDc, int level) - parameters: - - id: hDc - type: System.IntPtr - - id: level - type: System.Int32 - return: - type: System.IntPtr - content.vb: Public Shared Function CreateLayerContext(hDc As IntPtr, level As Integer) As IntPtr - overload: OpenTK.Graphics.Wgl.Wgl.CreateLayerContext* - nameWithType.vb: Wgl.CreateLayerContext(IntPtr, Integer) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.CreateLayerContext(System.IntPtr, Integer) - name.vb: CreateLayerContext(IntPtr, Integer) -- uid: OpenTK.Graphics.Wgl.Wgl.DeleteContext_(System.IntPtr) - commentId: M:OpenTK.Graphics.Wgl.Wgl.DeleteContext_(System.IntPtr) - id: DeleteContext_(System.IntPtr) - parent: OpenTK.Graphics.Wgl.Wgl - langs: - - csharp - - vb - name: DeleteContext_(nint) - nameWithType: Wgl.DeleteContext_(nint) - fullName: OpenTK.Graphics.Wgl.Wgl.DeleteContext_(nint) - type: Method - source: - id: DeleteContext_ - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs - startLine: 24 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: v1.0] - - [entry point: wglDeleteContext] - -
- example: [] - syntax: - content: public static int DeleteContext_(nint oldContext) - parameters: - - id: oldContext - type: System.IntPtr - return: - type: System.Int32 - content.vb: Public Shared Function DeleteContext_(oldContext As IntPtr) As Integer - overload: OpenTK.Graphics.Wgl.Wgl.DeleteContext_* - nameWithType.vb: Wgl.DeleteContext_(IntPtr) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.DeleteContext_(System.IntPtr) - name.vb: DeleteContext_(IntPtr) -- uid: OpenTK.Graphics.Wgl.Wgl.DescribeLayerPlane(System.IntPtr,System.Int32,System.Int32,System.UInt32,OpenTK.Graphics.Wgl.LayerPlaneDescriptor*) - commentId: M:OpenTK.Graphics.Wgl.Wgl.DescribeLayerPlane(System.IntPtr,System.Int32,System.Int32,System.UInt32,OpenTK.Graphics.Wgl.LayerPlaneDescriptor*) - id: DescribeLayerPlane(System.IntPtr,System.Int32,System.Int32,System.UInt32,OpenTK.Graphics.Wgl.LayerPlaneDescriptor*) - parent: OpenTK.Graphics.Wgl.Wgl - langs: - - csharp - - vb - name: DescribeLayerPlane(nint, int, int, uint, LayerPlaneDescriptor*) - nameWithType: Wgl.DescribeLayerPlane(nint, int, int, uint, LayerPlaneDescriptor*) - fullName: OpenTK.Graphics.Wgl.Wgl.DescribeLayerPlane(nint, int, int, uint, OpenTK.Graphics.Wgl.LayerPlaneDescriptor*) - type: Method - source: - id: DescribeLayerPlane - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs - startLine: 27 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: v1.0] - - [entry point: wglDescribeLayerPlane] - -
- example: [] - syntax: - content: public static int DescribeLayerPlane(nint hDc, int pixelFormat, int layerPlane, uint nBytes, LayerPlaneDescriptor* plpd) - parameters: - - id: hDc - type: System.IntPtr - - id: pixelFormat - type: System.Int32 - - id: layerPlane - type: System.Int32 - - id: nBytes - type: System.UInt32 - - id: plpd - type: OpenTK.Graphics.Wgl.LayerPlaneDescriptor* - return: - type: System.Int32 - content.vb: Public Shared Function DescribeLayerPlane(hDc As IntPtr, pixelFormat As Integer, layerPlane As Integer, nBytes As UInteger, plpd As LayerPlaneDescriptor*) As Integer - overload: OpenTK.Graphics.Wgl.Wgl.DescribeLayerPlane* - nameWithType.vb: Wgl.DescribeLayerPlane(IntPtr, Integer, Integer, UInteger, LayerPlaneDescriptor*) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.DescribeLayerPlane(System.IntPtr, Integer, Integer, UInteger, OpenTK.Graphics.Wgl.LayerPlaneDescriptor*) - name.vb: DescribeLayerPlane(IntPtr, Integer, Integer, UInteger, LayerPlaneDescriptor*) -- uid: OpenTK.Graphics.Wgl.Wgl.DescribePixelFormat(System.IntPtr,System.Int32,System.UInt32,OpenTK.Graphics.Wgl.PixelFormatDescriptor*) - commentId: M:OpenTK.Graphics.Wgl.Wgl.DescribePixelFormat(System.IntPtr,System.Int32,System.UInt32,OpenTK.Graphics.Wgl.PixelFormatDescriptor*) - id: DescribePixelFormat(System.IntPtr,System.Int32,System.UInt32,OpenTK.Graphics.Wgl.PixelFormatDescriptor*) - parent: OpenTK.Graphics.Wgl.Wgl - langs: - - csharp - - vb - name: DescribePixelFormat(nint, int, uint, PixelFormatDescriptor*) - nameWithType: Wgl.DescribePixelFormat(nint, int, uint, PixelFormatDescriptor*) - fullName: OpenTK.Graphics.Wgl.Wgl.DescribePixelFormat(nint, int, uint, OpenTK.Graphics.Wgl.PixelFormatDescriptor*) - type: Method - source: - id: DescribePixelFormat - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs - startLine: 30 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: v1.0] - - [entry point: DescribePixelFormat] - -
- example: [] - syntax: - content: public static int DescribePixelFormat(nint hdc, int ipfd, uint cjpfd, PixelFormatDescriptor* ppfd) - parameters: - - id: hdc - type: System.IntPtr - - id: ipfd - type: System.Int32 - - id: cjpfd - type: System.UInt32 - - id: ppfd - type: OpenTK.Graphics.Wgl.PixelFormatDescriptor* - return: - type: System.Int32 - content.vb: Public Shared Function DescribePixelFormat(hdc As IntPtr, ipfd As Integer, cjpfd As UInteger, ppfd As PixelFormatDescriptor*) As Integer - overload: OpenTK.Graphics.Wgl.Wgl.DescribePixelFormat* - nameWithType.vb: Wgl.DescribePixelFormat(IntPtr, Integer, UInteger, PixelFormatDescriptor*) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.DescribePixelFormat(System.IntPtr, Integer, UInteger, OpenTK.Graphics.Wgl.PixelFormatDescriptor*) - name.vb: DescribePixelFormat(IntPtr, Integer, UInteger, PixelFormatDescriptor*) -- uid: OpenTK.Graphics.Wgl.Wgl.GetCurrentContext - commentId: M:OpenTK.Graphics.Wgl.Wgl.GetCurrentContext - id: GetCurrentContext - parent: OpenTK.Graphics.Wgl.Wgl - langs: - - csharp - - vb - name: GetCurrentContext() - nameWithType: Wgl.GetCurrentContext() - fullName: OpenTK.Graphics.Wgl.Wgl.GetCurrentContext() - type: Method - source: - id: GetCurrentContext - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs - startLine: 33 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: v1.0] - - [entry point: wglGetCurrentContext] - -
- example: [] - syntax: - content: public static nint GetCurrentContext() - return: - type: System.IntPtr - content.vb: Public Shared Function GetCurrentContext() As IntPtr - overload: OpenTK.Graphics.Wgl.Wgl.GetCurrentContext* -- uid: OpenTK.Graphics.Wgl.Wgl.GetCurrentDC - commentId: M:OpenTK.Graphics.Wgl.Wgl.GetCurrentDC - id: GetCurrentDC - parent: OpenTK.Graphics.Wgl.Wgl - langs: - - csharp - - vb - name: GetCurrentDC() - nameWithType: Wgl.GetCurrentDC() - fullName: OpenTK.Graphics.Wgl.Wgl.GetCurrentDC() - type: Method - source: - id: GetCurrentDC - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs - startLine: 36 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: v1.0] - - [entry point: wglGetCurrentDC] - -
- example: [] - syntax: - content: public static nint GetCurrentDC() - return: - type: System.IntPtr - content.vb: Public Shared Function GetCurrentDC() As IntPtr - overload: OpenTK.Graphics.Wgl.Wgl.GetCurrentDC* -- uid: OpenTK.Graphics.Wgl.Wgl.GetEnhMetaFilePixelFormat(System.IntPtr,System.UInt32,OpenTK.Graphics.Wgl.PixelFormatDescriptor*) - commentId: M:OpenTK.Graphics.Wgl.Wgl.GetEnhMetaFilePixelFormat(System.IntPtr,System.UInt32,OpenTK.Graphics.Wgl.PixelFormatDescriptor*) - id: GetEnhMetaFilePixelFormat(System.IntPtr,System.UInt32,OpenTK.Graphics.Wgl.PixelFormatDescriptor*) - parent: OpenTK.Graphics.Wgl.Wgl - langs: - - csharp - - vb - name: GetEnhMetaFilePixelFormat(nint, uint, PixelFormatDescriptor*) - nameWithType: Wgl.GetEnhMetaFilePixelFormat(nint, uint, PixelFormatDescriptor*) - fullName: OpenTK.Graphics.Wgl.Wgl.GetEnhMetaFilePixelFormat(nint, uint, OpenTK.Graphics.Wgl.PixelFormatDescriptor*) - type: Method - source: - id: GetEnhMetaFilePixelFormat - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs - startLine: 39 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: v1.0] - - [entry point: GetEnhMetaFilePixelFormat] - -
- example: [] - syntax: - content: public static uint GetEnhMetaFilePixelFormat(nint hemf, uint cbBuffer, PixelFormatDescriptor* ppfd) - parameters: - - id: hemf - type: System.IntPtr - - id: cbBuffer - type: System.UInt32 - - id: ppfd - type: OpenTK.Graphics.Wgl.PixelFormatDescriptor* - return: - type: System.UInt32 - content.vb: Public Shared Function GetEnhMetaFilePixelFormat(hemf As IntPtr, cbBuffer As UInteger, ppfd As PixelFormatDescriptor*) As UInteger - overload: OpenTK.Graphics.Wgl.Wgl.GetEnhMetaFilePixelFormat* - nameWithType.vb: Wgl.GetEnhMetaFilePixelFormat(IntPtr, UInteger, PixelFormatDescriptor*) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.GetEnhMetaFilePixelFormat(System.IntPtr, UInteger, OpenTK.Graphics.Wgl.PixelFormatDescriptor*) - name.vb: GetEnhMetaFilePixelFormat(IntPtr, UInteger, PixelFormatDescriptor*) -- uid: OpenTK.Graphics.Wgl.Wgl.GetLayerPaletteEntries(System.IntPtr,System.Int32,System.Int32,System.Int32,OpenTK.Graphics.Wgl.ColorRef*) - commentId: M:OpenTK.Graphics.Wgl.Wgl.GetLayerPaletteEntries(System.IntPtr,System.Int32,System.Int32,System.Int32,OpenTK.Graphics.Wgl.ColorRef*) - id: GetLayerPaletteEntries(System.IntPtr,System.Int32,System.Int32,System.Int32,OpenTK.Graphics.Wgl.ColorRef*) - parent: OpenTK.Graphics.Wgl.Wgl - langs: - - csharp - - vb - name: GetLayerPaletteEntries(nint, int, int, int, ColorRef*) - nameWithType: Wgl.GetLayerPaletteEntries(nint, int, int, int, ColorRef*) - fullName: OpenTK.Graphics.Wgl.Wgl.GetLayerPaletteEntries(nint, int, int, int, OpenTK.Graphics.Wgl.ColorRef*) - type: Method - source: - id: GetLayerPaletteEntries - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs - startLine: 42 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: v1.0] - - [entry point: wglGetLayerPaletteEntries] - -
- example: [] - syntax: - content: public static int GetLayerPaletteEntries(nint hdc, int iLayerPlane, int iStart, int cEntries, ColorRef* pcr) - parameters: - - id: hdc - type: System.IntPtr - - id: iLayerPlane - type: System.Int32 - - id: iStart - type: System.Int32 - - id: cEntries - type: System.Int32 - - id: pcr - type: OpenTK.Graphics.Wgl.ColorRef* - return: - type: System.Int32 - content.vb: Public Shared Function GetLayerPaletteEntries(hdc As IntPtr, iLayerPlane As Integer, iStart As Integer, cEntries As Integer, pcr As ColorRef*) As Integer - overload: OpenTK.Graphics.Wgl.Wgl.GetLayerPaletteEntries* - nameWithType.vb: Wgl.GetLayerPaletteEntries(IntPtr, Integer, Integer, Integer, ColorRef*) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.GetLayerPaletteEntries(System.IntPtr, Integer, Integer, Integer, OpenTK.Graphics.Wgl.ColorRef*) - name.vb: GetLayerPaletteEntries(IntPtr, Integer, Integer, Integer, ColorRef*) -- uid: OpenTK.Graphics.Wgl.Wgl.GetPixelFormat(System.IntPtr) - commentId: M:OpenTK.Graphics.Wgl.Wgl.GetPixelFormat(System.IntPtr) - id: GetPixelFormat(System.IntPtr) - parent: OpenTK.Graphics.Wgl.Wgl - langs: - - csharp - - vb - name: GetPixelFormat(nint) - nameWithType: Wgl.GetPixelFormat(nint) - fullName: OpenTK.Graphics.Wgl.Wgl.GetPixelFormat(nint) - type: Method - source: - id: GetPixelFormat - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs - startLine: 45 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: v1.0] - - [entry point: GetPixelFormat] - -
- example: [] - syntax: - content: public static int GetPixelFormat(nint hdc) - parameters: - - id: hdc - type: System.IntPtr - return: - type: System.Int32 - content.vb: Public Shared Function GetPixelFormat(hdc As IntPtr) As Integer - overload: OpenTK.Graphics.Wgl.Wgl.GetPixelFormat* - nameWithType.vb: Wgl.GetPixelFormat(IntPtr) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.GetPixelFormat(System.IntPtr) - name.vb: GetPixelFormat(IntPtr) -- uid: OpenTK.Graphics.Wgl.Wgl.GetProcAddress(System.Byte*) - commentId: M:OpenTK.Graphics.Wgl.Wgl.GetProcAddress(System.Byte*) - id: GetProcAddress(System.Byte*) - parent: OpenTK.Graphics.Wgl.Wgl - langs: - - csharp - - vb - name: GetProcAddress(byte*) - nameWithType: Wgl.GetProcAddress(byte*) - fullName: OpenTK.Graphics.Wgl.Wgl.GetProcAddress(byte*) - type: Method - source: - id: GetProcAddress - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs - startLine: 48 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: v1.0] - - [entry point: wglGetProcAddress] - -
- example: [] - syntax: - content: public static nint GetProcAddress(byte* lpszProc) - parameters: - - id: lpszProc - type: System.Byte* - return: - type: System.IntPtr - content.vb: Public Shared Function GetProcAddress(lpszProc As Byte*) As IntPtr - overload: OpenTK.Graphics.Wgl.Wgl.GetProcAddress* - nameWithType.vb: Wgl.GetProcAddress(Byte*) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.GetProcAddress(Byte*) - name.vb: GetProcAddress(Byte*) -- uid: OpenTK.Graphics.Wgl.Wgl.MakeCurrent_(System.IntPtr,System.IntPtr) - commentId: M:OpenTK.Graphics.Wgl.Wgl.MakeCurrent_(System.IntPtr,System.IntPtr) - id: MakeCurrent_(System.IntPtr,System.IntPtr) - parent: OpenTK.Graphics.Wgl.Wgl - langs: - - csharp - - vb - name: MakeCurrent_(nint, nint) - nameWithType: Wgl.MakeCurrent_(nint, nint) - fullName: OpenTK.Graphics.Wgl.Wgl.MakeCurrent_(nint, nint) - type: Method - source: - id: MakeCurrent_ - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs - startLine: 51 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: v1.0] - - [entry point: wglMakeCurrent] - -
- example: [] - syntax: - content: public static int MakeCurrent_(nint hDc, nint newContext) - parameters: - - id: hDc - type: System.IntPtr - - id: newContext - type: System.IntPtr - return: - type: System.Int32 - content.vb: Public Shared Function MakeCurrent_(hDc As IntPtr, newContext As IntPtr) As Integer - overload: OpenTK.Graphics.Wgl.Wgl.MakeCurrent_* - nameWithType.vb: Wgl.MakeCurrent_(IntPtr, IntPtr) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.MakeCurrent_(System.IntPtr, System.IntPtr) - name.vb: MakeCurrent_(IntPtr, IntPtr) -- uid: OpenTK.Graphics.Wgl.Wgl.RealizeLayerPalette_(System.IntPtr,System.Int32,System.Int32) - commentId: M:OpenTK.Graphics.Wgl.Wgl.RealizeLayerPalette_(System.IntPtr,System.Int32,System.Int32) - id: RealizeLayerPalette_(System.IntPtr,System.Int32,System.Int32) - parent: OpenTK.Graphics.Wgl.Wgl - langs: - - csharp - - vb - name: RealizeLayerPalette_(nint, int, int) - nameWithType: Wgl.RealizeLayerPalette_(nint, int, int) - fullName: OpenTK.Graphics.Wgl.Wgl.RealizeLayerPalette_(nint, int, int) - type: Method - source: - id: RealizeLayerPalette_ - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs - startLine: 54 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: v1.0] - - [entry point: wglRealizeLayerPalette] - -
- example: [] - syntax: - content: public static int RealizeLayerPalette_(nint hdc, int iLayerPlane, int bRealize) - parameters: - - id: hdc - type: System.IntPtr - - id: iLayerPlane - type: System.Int32 - - id: bRealize - type: System.Int32 - return: - type: System.Int32 - content.vb: Public Shared Function RealizeLayerPalette_(hdc As IntPtr, iLayerPlane As Integer, bRealize As Integer) As Integer - overload: OpenTK.Graphics.Wgl.Wgl.RealizeLayerPalette_* - nameWithType.vb: Wgl.RealizeLayerPalette_(IntPtr, Integer, Integer) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.RealizeLayerPalette_(System.IntPtr, Integer, Integer) - name.vb: RealizeLayerPalette_(IntPtr, Integer, Integer) -- uid: OpenTK.Graphics.Wgl.Wgl.SetLayerPaletteEntries(System.IntPtr,System.Int32,System.Int32,System.Int32,OpenTK.Graphics.Wgl.ColorRef*) - commentId: M:OpenTK.Graphics.Wgl.Wgl.SetLayerPaletteEntries(System.IntPtr,System.Int32,System.Int32,System.Int32,OpenTK.Graphics.Wgl.ColorRef*) - id: SetLayerPaletteEntries(System.IntPtr,System.Int32,System.Int32,System.Int32,OpenTK.Graphics.Wgl.ColorRef*) - parent: OpenTK.Graphics.Wgl.Wgl - langs: - - csharp - - vb - name: SetLayerPaletteEntries(nint, int, int, int, ColorRef*) - nameWithType: Wgl.SetLayerPaletteEntries(nint, int, int, int, ColorRef*) - fullName: OpenTK.Graphics.Wgl.Wgl.SetLayerPaletteEntries(nint, int, int, int, OpenTK.Graphics.Wgl.ColorRef*) - type: Method - source: - id: SetLayerPaletteEntries - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs - startLine: 57 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: v1.0] - - [entry point: wglSetLayerPaletteEntries] - -
- example: [] - syntax: - content: public static int SetLayerPaletteEntries(nint hdc, int iLayerPlane, int iStart, int cEntries, ColorRef* pcr) - parameters: - - id: hdc - type: System.IntPtr - - id: iLayerPlane - type: System.Int32 - - id: iStart - type: System.Int32 - - id: cEntries - type: System.Int32 - - id: pcr - type: OpenTK.Graphics.Wgl.ColorRef* - return: - type: System.Int32 - content.vb: Public Shared Function SetLayerPaletteEntries(hdc As IntPtr, iLayerPlane As Integer, iStart As Integer, cEntries As Integer, pcr As ColorRef*) As Integer - overload: OpenTK.Graphics.Wgl.Wgl.SetLayerPaletteEntries* - nameWithType.vb: Wgl.SetLayerPaletteEntries(IntPtr, Integer, Integer, Integer, ColorRef*) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.SetLayerPaletteEntries(System.IntPtr, Integer, Integer, Integer, OpenTK.Graphics.Wgl.ColorRef*) - name.vb: SetLayerPaletteEntries(IntPtr, Integer, Integer, Integer, ColorRef*) -- uid: OpenTK.Graphics.Wgl.Wgl.SetPixelFormat(System.IntPtr,System.Int32,OpenTK.Graphics.Wgl.PixelFormatDescriptor*) - commentId: M:OpenTK.Graphics.Wgl.Wgl.SetPixelFormat(System.IntPtr,System.Int32,OpenTK.Graphics.Wgl.PixelFormatDescriptor*) - id: SetPixelFormat(System.IntPtr,System.Int32,OpenTK.Graphics.Wgl.PixelFormatDescriptor*) - parent: OpenTK.Graphics.Wgl.Wgl - langs: - - csharp - - vb - name: SetPixelFormat(nint, int, PixelFormatDescriptor*) - nameWithType: Wgl.SetPixelFormat(nint, int, PixelFormatDescriptor*) - fullName: OpenTK.Graphics.Wgl.Wgl.SetPixelFormat(nint, int, OpenTK.Graphics.Wgl.PixelFormatDescriptor*) - type: Method - source: - id: SetPixelFormat - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs - startLine: 60 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: v1.0] - - [entry point: SetPixelFormat] - -
- example: [] - syntax: - content: public static int SetPixelFormat(nint hdc, int ipfd, PixelFormatDescriptor* ppfd) - parameters: - - id: hdc - type: System.IntPtr - - id: ipfd - type: System.Int32 - - id: ppfd - type: OpenTK.Graphics.Wgl.PixelFormatDescriptor* - return: - type: System.Int32 - content.vb: Public Shared Function SetPixelFormat(hdc As IntPtr, ipfd As Integer, ppfd As PixelFormatDescriptor*) As Integer - overload: OpenTK.Graphics.Wgl.Wgl.SetPixelFormat* - nameWithType.vb: Wgl.SetPixelFormat(IntPtr, Integer, PixelFormatDescriptor*) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.SetPixelFormat(System.IntPtr, Integer, OpenTK.Graphics.Wgl.PixelFormatDescriptor*) - name.vb: SetPixelFormat(IntPtr, Integer, PixelFormatDescriptor*) -- uid: OpenTK.Graphics.Wgl.Wgl.ShareLists_(System.IntPtr,System.IntPtr) - commentId: M:OpenTK.Graphics.Wgl.Wgl.ShareLists_(System.IntPtr,System.IntPtr) - id: ShareLists_(System.IntPtr,System.IntPtr) - parent: OpenTK.Graphics.Wgl.Wgl - langs: - - csharp - - vb - name: ShareLists_(nint, nint) - nameWithType: Wgl.ShareLists_(nint, nint) - fullName: OpenTK.Graphics.Wgl.Wgl.ShareLists_(nint, nint) - type: Method - source: - id: ShareLists_ - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs - startLine: 63 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: v1.0] - - [entry point: wglShareLists] - -
- example: [] - syntax: - content: public static int ShareLists_(nint hrcSrvShare, nint hrcSrvSource) - parameters: - - id: hrcSrvShare - type: System.IntPtr - - id: hrcSrvSource - type: System.IntPtr - return: - type: System.Int32 - content.vb: Public Shared Function ShareLists_(hrcSrvShare As IntPtr, hrcSrvSource As IntPtr) As Integer - overload: OpenTK.Graphics.Wgl.Wgl.ShareLists_* - nameWithType.vb: Wgl.ShareLists_(IntPtr, IntPtr) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.ShareLists_(System.IntPtr, System.IntPtr) - name.vb: ShareLists_(IntPtr, IntPtr) -- uid: OpenTK.Graphics.Wgl.Wgl.SwapBuffers_(System.IntPtr) - commentId: M:OpenTK.Graphics.Wgl.Wgl.SwapBuffers_(System.IntPtr) - id: SwapBuffers_(System.IntPtr) - parent: OpenTK.Graphics.Wgl.Wgl - langs: - - csharp - - vb - name: SwapBuffers_(nint) - nameWithType: Wgl.SwapBuffers_(nint) - fullName: OpenTK.Graphics.Wgl.Wgl.SwapBuffers_(nint) - type: Method - source: - id: SwapBuffers_ - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs - startLine: 66 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: v1.0] - - [entry point: SwapBuffers] - -
- example: [] - syntax: - content: public static int SwapBuffers_(nint hdc) - parameters: - - id: hdc - type: System.IntPtr - return: - type: System.Int32 - content.vb: Public Shared Function SwapBuffers_(hdc As IntPtr) As Integer - overload: OpenTK.Graphics.Wgl.Wgl.SwapBuffers_* - nameWithType.vb: Wgl.SwapBuffers_(IntPtr) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.SwapBuffers_(System.IntPtr) - name.vb: SwapBuffers_(IntPtr) -- uid: OpenTK.Graphics.Wgl.Wgl.SwapLayerBuffers_(System.IntPtr,OpenTK.Graphics.Wgl.LayerPlaneMask) - commentId: M:OpenTK.Graphics.Wgl.Wgl.SwapLayerBuffers_(System.IntPtr,OpenTK.Graphics.Wgl.LayerPlaneMask) - id: SwapLayerBuffers_(System.IntPtr,OpenTK.Graphics.Wgl.LayerPlaneMask) - parent: OpenTK.Graphics.Wgl.Wgl - langs: - - csharp - - vb - name: SwapLayerBuffers_(nint, LayerPlaneMask) - nameWithType: Wgl.SwapLayerBuffers_(nint, LayerPlaneMask) - fullName: OpenTK.Graphics.Wgl.Wgl.SwapLayerBuffers_(nint, OpenTK.Graphics.Wgl.LayerPlaneMask) - type: Method - source: - id: SwapLayerBuffers_ - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs - startLine: 69 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: v1.0] - - [entry point: wglSwapLayerBuffers] - -
- example: [] - syntax: - content: public static int SwapLayerBuffers_(nint hdc, LayerPlaneMask fuFlags) - parameters: - - id: hdc - type: System.IntPtr - - id: fuFlags - type: OpenTK.Graphics.Wgl.LayerPlaneMask - return: - type: System.Int32 - content.vb: Public Shared Function SwapLayerBuffers_(hdc As IntPtr, fuFlags As LayerPlaneMask) As Integer - overload: OpenTK.Graphics.Wgl.Wgl.SwapLayerBuffers_* - nameWithType.vb: Wgl.SwapLayerBuffers_(IntPtr, LayerPlaneMask) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.SwapLayerBuffers_(System.IntPtr, OpenTK.Graphics.Wgl.LayerPlaneMask) - name.vb: SwapLayerBuffers_(IntPtr, LayerPlaneMask) -- uid: OpenTK.Graphics.Wgl.Wgl.UseFontBitmaps_(System.IntPtr,System.UInt32,System.UInt32,System.UInt32) - commentId: M:OpenTK.Graphics.Wgl.Wgl.UseFontBitmaps_(System.IntPtr,System.UInt32,System.UInt32,System.UInt32) - id: UseFontBitmaps_(System.IntPtr,System.UInt32,System.UInt32,System.UInt32) - parent: OpenTK.Graphics.Wgl.Wgl - langs: - - csharp - - vb - name: UseFontBitmaps_(nint, uint, uint, uint) - nameWithType: Wgl.UseFontBitmaps_(nint, uint, uint, uint) - fullName: OpenTK.Graphics.Wgl.Wgl.UseFontBitmaps_(nint, uint, uint, uint) - type: Method - source: - id: UseFontBitmaps_ - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs - startLine: 72 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: v1.0] - - [entry point: wglUseFontBitmaps] - -
- example: [] - syntax: - content: public static int UseFontBitmaps_(nint hDC, uint first, uint count, uint listBase) - parameters: - - id: hDC - type: System.IntPtr - - id: first - type: System.UInt32 - - id: count - type: System.UInt32 - - id: listBase - type: System.UInt32 - return: - type: System.Int32 - content.vb: Public Shared Function UseFontBitmaps_(hDC As IntPtr, first As UInteger, count As UInteger, listBase As UInteger) As Integer - overload: OpenTK.Graphics.Wgl.Wgl.UseFontBitmaps_* - nameWithType.vb: Wgl.UseFontBitmaps_(IntPtr, UInteger, UInteger, UInteger) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.UseFontBitmaps_(System.IntPtr, UInteger, UInteger, UInteger) - name.vb: UseFontBitmaps_(IntPtr, UInteger, UInteger, UInteger) -- uid: OpenTK.Graphics.Wgl.Wgl.UseFontBitmapsA_(System.IntPtr,System.UInt32,System.UInt32,System.UInt32) - commentId: M:OpenTK.Graphics.Wgl.Wgl.UseFontBitmapsA_(System.IntPtr,System.UInt32,System.UInt32,System.UInt32) - id: UseFontBitmapsA_(System.IntPtr,System.UInt32,System.UInt32,System.UInt32) - parent: OpenTK.Graphics.Wgl.Wgl - langs: - - csharp - - vb - name: UseFontBitmapsA_(nint, uint, uint, uint) - nameWithType: Wgl.UseFontBitmapsA_(nint, uint, uint, uint) - fullName: OpenTK.Graphics.Wgl.Wgl.UseFontBitmapsA_(nint, uint, uint, uint) - type: Method - source: - id: UseFontBitmapsA_ - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs - startLine: 75 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: v1.0] - - [entry point: wglUseFontBitmapsA] - -
- example: [] - syntax: - content: public static int UseFontBitmapsA_(nint hDC, uint first, uint count, uint listBase) - parameters: - - id: hDC - type: System.IntPtr - - id: first - type: System.UInt32 - - id: count - type: System.UInt32 - - id: listBase - type: System.UInt32 - return: - type: System.Int32 - content.vb: Public Shared Function UseFontBitmapsA_(hDC As IntPtr, first As UInteger, count As UInteger, listBase As UInteger) As Integer - overload: OpenTK.Graphics.Wgl.Wgl.UseFontBitmapsA_* - nameWithType.vb: Wgl.UseFontBitmapsA_(IntPtr, UInteger, UInteger, UInteger) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.UseFontBitmapsA_(System.IntPtr, UInteger, UInteger, UInteger) - name.vb: UseFontBitmapsA_(IntPtr, UInteger, UInteger, UInteger) -- uid: OpenTK.Graphics.Wgl.Wgl.UseFontBitmapsW_(System.IntPtr,System.UInt32,System.UInt32,System.UInt32) - commentId: M:OpenTK.Graphics.Wgl.Wgl.UseFontBitmapsW_(System.IntPtr,System.UInt32,System.UInt32,System.UInt32) - id: UseFontBitmapsW_(System.IntPtr,System.UInt32,System.UInt32,System.UInt32) - parent: OpenTK.Graphics.Wgl.Wgl - langs: - - csharp - - vb - name: UseFontBitmapsW_(nint, uint, uint, uint) - nameWithType: Wgl.UseFontBitmapsW_(nint, uint, uint, uint) - fullName: OpenTK.Graphics.Wgl.Wgl.UseFontBitmapsW_(nint, uint, uint, uint) - type: Method - source: - id: UseFontBitmapsW_ - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs - startLine: 78 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: v1.0] - - [entry point: wglUseFontBitmapsW] - -
- example: [] - syntax: - content: public static int UseFontBitmapsW_(nint hDC, uint first, uint count, uint listBase) - parameters: - - id: hDC - type: System.IntPtr - - id: first - type: System.UInt32 - - id: count - type: System.UInt32 - - id: listBase - type: System.UInt32 - return: - type: System.Int32 - content.vb: Public Shared Function UseFontBitmapsW_(hDC As IntPtr, first As UInteger, count As UInteger, listBase As UInteger) As Integer - overload: OpenTK.Graphics.Wgl.Wgl.UseFontBitmapsW_* - nameWithType.vb: Wgl.UseFontBitmapsW_(IntPtr, UInteger, UInteger, UInteger) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.UseFontBitmapsW_(System.IntPtr, UInteger, UInteger, UInteger) - name.vb: UseFontBitmapsW_(IntPtr, UInteger, UInteger, UInteger) -- uid: OpenTK.Graphics.Wgl.Wgl.UseFontOutlines_(System.IntPtr,System.UInt32,System.UInt32,System.UInt32,System.Single,System.Single,OpenTK.Graphics.Wgl.FontFormat,System.IntPtr) - commentId: M:OpenTK.Graphics.Wgl.Wgl.UseFontOutlines_(System.IntPtr,System.UInt32,System.UInt32,System.UInt32,System.Single,System.Single,OpenTK.Graphics.Wgl.FontFormat,System.IntPtr) - id: UseFontOutlines_(System.IntPtr,System.UInt32,System.UInt32,System.UInt32,System.Single,System.Single,OpenTK.Graphics.Wgl.FontFormat,System.IntPtr) - parent: OpenTK.Graphics.Wgl.Wgl - langs: - - csharp - - vb - name: UseFontOutlines_(nint, uint, uint, uint, float, float, FontFormat, nint) - nameWithType: Wgl.UseFontOutlines_(nint, uint, uint, uint, float, float, FontFormat, nint) - fullName: OpenTK.Graphics.Wgl.Wgl.UseFontOutlines_(nint, uint, uint, uint, float, float, OpenTK.Graphics.Wgl.FontFormat, nint) - type: Method - source: - id: UseFontOutlines_ - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs - startLine: 81 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: v1.0] - - [entry point: wglUseFontOutlines] - -
- example: [] - syntax: - content: public static int UseFontOutlines_(nint hDC, uint first, uint count, uint listBase, float deviation, float extrusion, FontFormat format, nint lpgmf) - parameters: - - id: hDC - type: System.IntPtr - - id: first - type: System.UInt32 - - id: count - type: System.UInt32 - - id: listBase - type: System.UInt32 - - id: deviation - type: System.Single - - id: extrusion - type: System.Single - - id: format - type: OpenTK.Graphics.Wgl.FontFormat - - id: lpgmf - type: System.IntPtr - return: - type: System.Int32 - content.vb: Public Shared Function UseFontOutlines_(hDC As IntPtr, first As UInteger, count As UInteger, listBase As UInteger, deviation As Single, extrusion As Single, format As FontFormat, lpgmf As IntPtr) As Integer - overload: OpenTK.Graphics.Wgl.Wgl.UseFontOutlines_* - nameWithType.vb: Wgl.UseFontOutlines_(IntPtr, UInteger, UInteger, UInteger, Single, Single, FontFormat, IntPtr) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.UseFontOutlines_(System.IntPtr, UInteger, UInteger, UInteger, Single, Single, OpenTK.Graphics.Wgl.FontFormat, System.IntPtr) - name.vb: UseFontOutlines_(IntPtr, UInteger, UInteger, UInteger, Single, Single, FontFormat, IntPtr) -- uid: OpenTK.Graphics.Wgl.Wgl.UseFontOutlinesA_(System.IntPtr,System.UInt32,System.UInt32,System.UInt32,System.Single,System.Single,OpenTK.Graphics.Wgl.FontFormat,System.IntPtr) - commentId: M:OpenTK.Graphics.Wgl.Wgl.UseFontOutlinesA_(System.IntPtr,System.UInt32,System.UInt32,System.UInt32,System.Single,System.Single,OpenTK.Graphics.Wgl.FontFormat,System.IntPtr) - id: UseFontOutlinesA_(System.IntPtr,System.UInt32,System.UInt32,System.UInt32,System.Single,System.Single,OpenTK.Graphics.Wgl.FontFormat,System.IntPtr) - parent: OpenTK.Graphics.Wgl.Wgl - langs: - - csharp - - vb - name: UseFontOutlinesA_(nint, uint, uint, uint, float, float, FontFormat, nint) - nameWithType: Wgl.UseFontOutlinesA_(nint, uint, uint, uint, float, float, FontFormat, nint) - fullName: OpenTK.Graphics.Wgl.Wgl.UseFontOutlinesA_(nint, uint, uint, uint, float, float, OpenTK.Graphics.Wgl.FontFormat, nint) - type: Method - source: - id: UseFontOutlinesA_ - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs - startLine: 84 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: v1.0] - - [entry point: wglUseFontOutlinesA] - -
- example: [] - syntax: - content: public static int UseFontOutlinesA_(nint hDC, uint first, uint count, uint listBase, float deviation, float extrusion, FontFormat format, nint lpgmf) - parameters: - - id: hDC - type: System.IntPtr - - id: first - type: System.UInt32 - - id: count - type: System.UInt32 - - id: listBase - type: System.UInt32 - - id: deviation - type: System.Single - - id: extrusion - type: System.Single - - id: format - type: OpenTK.Graphics.Wgl.FontFormat - - id: lpgmf - type: System.IntPtr - return: - type: System.Int32 - content.vb: Public Shared Function UseFontOutlinesA_(hDC As IntPtr, first As UInteger, count As UInteger, listBase As UInteger, deviation As Single, extrusion As Single, format As FontFormat, lpgmf As IntPtr) As Integer - overload: OpenTK.Graphics.Wgl.Wgl.UseFontOutlinesA_* - nameWithType.vb: Wgl.UseFontOutlinesA_(IntPtr, UInteger, UInteger, UInteger, Single, Single, FontFormat, IntPtr) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.UseFontOutlinesA_(System.IntPtr, UInteger, UInteger, UInteger, Single, Single, OpenTK.Graphics.Wgl.FontFormat, System.IntPtr) - name.vb: UseFontOutlinesA_(IntPtr, UInteger, UInteger, UInteger, Single, Single, FontFormat, IntPtr) -- uid: OpenTK.Graphics.Wgl.Wgl.UseFontOutlinesW_(System.IntPtr,System.UInt32,System.UInt32,System.UInt32,System.Single,System.Single,OpenTK.Graphics.Wgl.FontFormat,System.IntPtr) - commentId: M:OpenTK.Graphics.Wgl.Wgl.UseFontOutlinesW_(System.IntPtr,System.UInt32,System.UInt32,System.UInt32,System.Single,System.Single,OpenTK.Graphics.Wgl.FontFormat,System.IntPtr) - id: UseFontOutlinesW_(System.IntPtr,System.UInt32,System.UInt32,System.UInt32,System.Single,System.Single,OpenTK.Graphics.Wgl.FontFormat,System.IntPtr) - parent: OpenTK.Graphics.Wgl.Wgl - langs: - - csharp - - vb - name: UseFontOutlinesW_(nint, uint, uint, uint, float, float, FontFormat, nint) - nameWithType: Wgl.UseFontOutlinesW_(nint, uint, uint, uint, float, float, FontFormat, nint) - fullName: OpenTK.Graphics.Wgl.Wgl.UseFontOutlinesW_(nint, uint, uint, uint, float, float, OpenTK.Graphics.Wgl.FontFormat, nint) - type: Method - source: - id: UseFontOutlinesW_ - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Native.cs - startLine: 87 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: v1.0] - - [entry point: wglUseFontOutlinesW] - -
- example: [] - syntax: - content: public static int UseFontOutlinesW_(nint hDC, uint first, uint count, uint listBase, float deviation, float extrusion, FontFormat format, nint lpgmf) - parameters: - - id: hDC - type: System.IntPtr - - id: first - type: System.UInt32 - - id: count - type: System.UInt32 - - id: listBase - type: System.UInt32 - - id: deviation - type: System.Single - - id: extrusion - type: System.Single - - id: format - type: OpenTK.Graphics.Wgl.FontFormat - - id: lpgmf - type: System.IntPtr - return: - type: System.Int32 - content.vb: Public Shared Function UseFontOutlinesW_(hDC As IntPtr, first As UInteger, count As UInteger, listBase As UInteger, deviation As Single, extrusion As Single, format As FontFormat, lpgmf As IntPtr) As Integer - overload: OpenTK.Graphics.Wgl.Wgl.UseFontOutlinesW_* - nameWithType.vb: Wgl.UseFontOutlinesW_(IntPtr, UInteger, UInteger, UInteger, Single, Single, FontFormat, IntPtr) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.UseFontOutlinesW_(System.IntPtr, UInteger, UInteger, UInteger, Single, Single, OpenTK.Graphics.Wgl.FontFormat, System.IntPtr) - name.vb: UseFontOutlinesW_(IntPtr, UInteger, UInteger, UInteger, Single, Single, FontFormat, IntPtr) -- uid: OpenTK.Graphics.Wgl.Wgl.ChoosePixelFormat(System.IntPtr,OpenTK.Graphics.Wgl.PixelFormatDescriptor@) - commentId: M:OpenTK.Graphics.Wgl.Wgl.ChoosePixelFormat(System.IntPtr,OpenTK.Graphics.Wgl.PixelFormatDescriptor@) - id: ChoosePixelFormat(System.IntPtr,OpenTK.Graphics.Wgl.PixelFormatDescriptor@) - parent: OpenTK.Graphics.Wgl.Wgl - langs: - - csharp - - vb - name: ChoosePixelFormat(nint, in PixelFormatDescriptor) - nameWithType: Wgl.ChoosePixelFormat(nint, in PixelFormatDescriptor) - fullName: OpenTK.Graphics.Wgl.Wgl.ChoosePixelFormat(nint, in OpenTK.Graphics.Wgl.PixelFormatDescriptor) - type: Method - source: - id: ChoosePixelFormat - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 14 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: v1.0] - - [entry point: ChoosePixelFormat] - -
- example: [] - syntax: - content: public static int ChoosePixelFormat(nint hDc, in PixelFormatDescriptor pPfd) - parameters: - - id: hDc - type: System.IntPtr - - id: pPfd - type: OpenTK.Graphics.Wgl.PixelFormatDescriptor - return: - type: System.Int32 - content.vb: Public Shared Function ChoosePixelFormat(hDc As IntPtr, pPfd As PixelFormatDescriptor) As Integer - overload: OpenTK.Graphics.Wgl.Wgl.ChoosePixelFormat* - nameWithType.vb: Wgl.ChoosePixelFormat(IntPtr, PixelFormatDescriptor) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.ChoosePixelFormat(System.IntPtr, OpenTK.Graphics.Wgl.PixelFormatDescriptor) - name.vb: ChoosePixelFormat(IntPtr, PixelFormatDescriptor) -- uid: OpenTK.Graphics.Wgl.Wgl.CopyContext(System.IntPtr,System.IntPtr,OpenTK.Graphics.OpenGL.AttribMask) - commentId: M:OpenTK.Graphics.Wgl.Wgl.CopyContext(System.IntPtr,System.IntPtr,OpenTK.Graphics.OpenGL.AttribMask) - id: CopyContext(System.IntPtr,System.IntPtr,OpenTK.Graphics.OpenGL.AttribMask) - parent: OpenTK.Graphics.Wgl.Wgl - langs: - - csharp - - vb - name: CopyContext(nint, nint, AttribMask) - nameWithType: Wgl.CopyContext(nint, nint, AttribMask) - fullName: OpenTK.Graphics.Wgl.Wgl.CopyContext(nint, nint, OpenTK.Graphics.OpenGL.AttribMask) - type: Method - source: - id: CopyContext - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 24 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - example: [] - syntax: - content: public static bool CopyContext(nint hglrcSrc, nint hglrcDst, AttribMask mask) - parameters: - - id: hglrcSrc - type: System.IntPtr - - id: hglrcDst - type: System.IntPtr - - id: mask - type: OpenTK.Graphics.OpenGL.AttribMask - return: - type: System.Boolean - content.vb: Public Shared Function CopyContext(hglrcSrc As IntPtr, hglrcDst As IntPtr, mask As AttribMask) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.CopyContext* - nameWithType.vb: Wgl.CopyContext(IntPtr, IntPtr, AttribMask) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.CopyContext(System.IntPtr, System.IntPtr, OpenTK.Graphics.OpenGL.AttribMask) - name.vb: CopyContext(IntPtr, IntPtr, AttribMask) -- uid: OpenTK.Graphics.Wgl.Wgl.DeleteContext(System.IntPtr) - commentId: M:OpenTK.Graphics.Wgl.Wgl.DeleteContext(System.IntPtr) - id: DeleteContext(System.IntPtr) - parent: OpenTK.Graphics.Wgl.Wgl - langs: - - csharp - - vb - name: DeleteContext(nint) - nameWithType: Wgl.DeleteContext(nint) - fullName: OpenTK.Graphics.Wgl.Wgl.DeleteContext(nint) - type: Method - source: - id: DeleteContext - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 33 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - example: [] - syntax: - content: public static bool DeleteContext(nint oldContext) - parameters: - - id: oldContext - type: System.IntPtr - return: - type: System.Boolean - content.vb: Public Shared Function DeleteContext(oldContext As IntPtr) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.DeleteContext* - nameWithType.vb: Wgl.DeleteContext(IntPtr) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.DeleteContext(System.IntPtr) - name.vb: DeleteContext(IntPtr) -- uid: OpenTK.Graphics.Wgl.Wgl.DescribeLayerPlane(System.IntPtr,System.Int32,System.Int32,System.UInt32,OpenTK.Graphics.Wgl.LayerPlaneDescriptor@) - commentId: M:OpenTK.Graphics.Wgl.Wgl.DescribeLayerPlane(System.IntPtr,System.Int32,System.Int32,System.UInt32,OpenTK.Graphics.Wgl.LayerPlaneDescriptor@) - id: DescribeLayerPlane(System.IntPtr,System.Int32,System.Int32,System.UInt32,OpenTK.Graphics.Wgl.LayerPlaneDescriptor@) - parent: OpenTK.Graphics.Wgl.Wgl - langs: - - csharp - - vb - name: DescribeLayerPlane(nint, int, int, uint, out LayerPlaneDescriptor) - nameWithType: Wgl.DescribeLayerPlane(nint, int, int, uint, out LayerPlaneDescriptor) - fullName: OpenTK.Graphics.Wgl.Wgl.DescribeLayerPlane(nint, int, int, uint, out OpenTK.Graphics.Wgl.LayerPlaneDescriptor) - type: Method - source: - id: DescribeLayerPlane - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 42 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: v1.0] - - [entry point: wglDescribeLayerPlane] - -
- example: [] - syntax: - content: public static bool DescribeLayerPlane(nint hDc, int pixelFormat, int layerPlane, uint nBytes, out LayerPlaneDescriptor plpd) - parameters: - - id: hDc - type: System.IntPtr - - id: pixelFormat - type: System.Int32 - - id: layerPlane - type: System.Int32 - - id: nBytes - type: System.UInt32 - - id: plpd - type: OpenTK.Graphics.Wgl.LayerPlaneDescriptor - return: - type: System.Boolean - content.vb: Public Shared Function DescribeLayerPlane(hDc As IntPtr, pixelFormat As Integer, layerPlane As Integer, nBytes As UInteger, plpd As LayerPlaneDescriptor) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.DescribeLayerPlane* - nameWithType.vb: Wgl.DescribeLayerPlane(IntPtr, Integer, Integer, UInteger, LayerPlaneDescriptor) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.DescribeLayerPlane(System.IntPtr, Integer, Integer, UInteger, OpenTK.Graphics.Wgl.LayerPlaneDescriptor) - name.vb: DescribeLayerPlane(IntPtr, Integer, Integer, UInteger, LayerPlaneDescriptor) -- uid: OpenTK.Graphics.Wgl.Wgl.DescribePixelFormat(System.IntPtr,System.Int32,System.UInt32,OpenTK.Graphics.Wgl.PixelFormatDescriptor@) - commentId: M:OpenTK.Graphics.Wgl.Wgl.DescribePixelFormat(System.IntPtr,System.Int32,System.UInt32,OpenTK.Graphics.Wgl.PixelFormatDescriptor@) - id: DescribePixelFormat(System.IntPtr,System.Int32,System.UInt32,OpenTK.Graphics.Wgl.PixelFormatDescriptor@) - parent: OpenTK.Graphics.Wgl.Wgl - langs: - - csharp - - vb - name: DescribePixelFormat(nint, int, uint, out PixelFormatDescriptor) - nameWithType: Wgl.DescribePixelFormat(nint, int, uint, out PixelFormatDescriptor) - fullName: OpenTK.Graphics.Wgl.Wgl.DescribePixelFormat(nint, int, uint, out OpenTK.Graphics.Wgl.PixelFormatDescriptor) - type: Method - source: - id: DescribePixelFormat - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 54 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: v1.0] - - [entry point: DescribePixelFormat] - -
- example: [] - syntax: - content: public static int DescribePixelFormat(nint hdc, int ipfd, uint cjpfd, out PixelFormatDescriptor ppfd) - parameters: - - id: hdc - type: System.IntPtr - - id: ipfd - type: System.Int32 - - id: cjpfd - type: System.UInt32 - - id: ppfd - type: OpenTK.Graphics.Wgl.PixelFormatDescriptor - return: - type: System.Int32 - content.vb: Public Shared Function DescribePixelFormat(hdc As IntPtr, ipfd As Integer, cjpfd As UInteger, ppfd As PixelFormatDescriptor) As Integer - overload: OpenTK.Graphics.Wgl.Wgl.DescribePixelFormat* - nameWithType.vb: Wgl.DescribePixelFormat(IntPtr, Integer, UInteger, PixelFormatDescriptor) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.DescribePixelFormat(System.IntPtr, Integer, UInteger, OpenTK.Graphics.Wgl.PixelFormatDescriptor) - name.vb: DescribePixelFormat(IntPtr, Integer, UInteger, PixelFormatDescriptor) -- uid: OpenTK.Graphics.Wgl.Wgl.GetEnhMetaFilePixelFormat(System.IntPtr,System.UInt32,OpenTK.Graphics.Wgl.PixelFormatDescriptor@) - commentId: M:OpenTK.Graphics.Wgl.Wgl.GetEnhMetaFilePixelFormat(System.IntPtr,System.UInt32,OpenTK.Graphics.Wgl.PixelFormatDescriptor@) - id: GetEnhMetaFilePixelFormat(System.IntPtr,System.UInt32,OpenTK.Graphics.Wgl.PixelFormatDescriptor@) - parent: OpenTK.Graphics.Wgl.Wgl - langs: - - csharp - - vb - name: GetEnhMetaFilePixelFormat(nint, uint, out PixelFormatDescriptor) - nameWithType: Wgl.GetEnhMetaFilePixelFormat(nint, uint, out PixelFormatDescriptor) - fullName: OpenTK.Graphics.Wgl.Wgl.GetEnhMetaFilePixelFormat(nint, uint, out OpenTK.Graphics.Wgl.PixelFormatDescriptor) - type: Method - source: - id: GetEnhMetaFilePixelFormat - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 64 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: v1.0] - - [entry point: GetEnhMetaFilePixelFormat] - -
- example: [] - syntax: - content: public static uint GetEnhMetaFilePixelFormat(nint hemf, uint cbBuffer, out PixelFormatDescriptor ppfd) - parameters: - - id: hemf - type: System.IntPtr - - id: cbBuffer - type: System.UInt32 - - id: ppfd - type: OpenTK.Graphics.Wgl.PixelFormatDescriptor - return: - type: System.UInt32 - content.vb: Public Shared Function GetEnhMetaFilePixelFormat(hemf As IntPtr, cbBuffer As UInteger, ppfd As PixelFormatDescriptor) As UInteger - overload: OpenTK.Graphics.Wgl.Wgl.GetEnhMetaFilePixelFormat* - nameWithType.vb: Wgl.GetEnhMetaFilePixelFormat(IntPtr, UInteger, PixelFormatDescriptor) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.GetEnhMetaFilePixelFormat(System.IntPtr, UInteger, OpenTK.Graphics.Wgl.PixelFormatDescriptor) - name.vb: GetEnhMetaFilePixelFormat(IntPtr, UInteger, PixelFormatDescriptor) -- uid: OpenTK.Graphics.Wgl.Wgl.GetLayerPaletteEntries(System.IntPtr,System.Int32,System.Int32,System.Int32,System.Span{OpenTK.Graphics.Wgl.ColorRef}) - commentId: M:OpenTK.Graphics.Wgl.Wgl.GetLayerPaletteEntries(System.IntPtr,System.Int32,System.Int32,System.Int32,System.Span{OpenTK.Graphics.Wgl.ColorRef}) - id: GetLayerPaletteEntries(System.IntPtr,System.Int32,System.Int32,System.Int32,System.Span{OpenTK.Graphics.Wgl.ColorRef}) - parent: OpenTK.Graphics.Wgl.Wgl - langs: - - csharp - - vb - name: GetLayerPaletteEntries(nint, int, int, int, Span) - nameWithType: Wgl.GetLayerPaletteEntries(nint, int, int, int, Span) - fullName: OpenTK.Graphics.Wgl.Wgl.GetLayerPaletteEntries(nint, int, int, int, System.Span) - type: Method - source: - id: GetLayerPaletteEntries - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 74 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: v1.0] - - [entry point: wglGetLayerPaletteEntries] - -
- example: [] - syntax: - content: public static int GetLayerPaletteEntries(nint hdc, int iLayerPlane, int iStart, int cEntries, Span pcr) - parameters: - - id: hdc - type: System.IntPtr - - id: iLayerPlane - type: System.Int32 - - id: iStart - type: System.Int32 - - id: cEntries - type: System.Int32 - - id: pcr - type: System.Span{OpenTK.Graphics.Wgl.ColorRef} - return: - type: System.Int32 - content.vb: Public Shared Function GetLayerPaletteEntries(hdc As IntPtr, iLayerPlane As Integer, iStart As Integer, cEntries As Integer, pcr As Span(Of ColorRef)) As Integer - overload: OpenTK.Graphics.Wgl.Wgl.GetLayerPaletteEntries* - nameWithType.vb: Wgl.GetLayerPaletteEntries(IntPtr, Integer, Integer, Integer, Span(Of ColorRef)) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.GetLayerPaletteEntries(System.IntPtr, Integer, Integer, Integer, System.Span(Of OpenTK.Graphics.Wgl.ColorRef)) - name.vb: GetLayerPaletteEntries(IntPtr, Integer, Integer, Integer, Span(Of ColorRef)) -- uid: OpenTK.Graphics.Wgl.Wgl.GetLayerPaletteEntries(System.IntPtr,System.Int32,System.Int32,System.Int32,OpenTK.Graphics.Wgl.ColorRef[]) - commentId: M:OpenTK.Graphics.Wgl.Wgl.GetLayerPaletteEntries(System.IntPtr,System.Int32,System.Int32,System.Int32,OpenTK.Graphics.Wgl.ColorRef[]) - id: GetLayerPaletteEntries(System.IntPtr,System.Int32,System.Int32,System.Int32,OpenTK.Graphics.Wgl.ColorRef[]) - parent: OpenTK.Graphics.Wgl.Wgl - langs: - - csharp - - vb - name: GetLayerPaletteEntries(nint, int, int, int, ColorRef[]) - nameWithType: Wgl.GetLayerPaletteEntries(nint, int, int, int, ColorRef[]) - fullName: OpenTK.Graphics.Wgl.Wgl.GetLayerPaletteEntries(nint, int, int, int, OpenTK.Graphics.Wgl.ColorRef[]) - type: Method - source: - id: GetLayerPaletteEntries - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 84 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: v1.0] - - [entry point: wglGetLayerPaletteEntries] - -
- example: [] - syntax: - content: public static int GetLayerPaletteEntries(nint hdc, int iLayerPlane, int iStart, int cEntries, ColorRef[] pcr) - parameters: - - id: hdc - type: System.IntPtr - - id: iLayerPlane - type: System.Int32 - - id: iStart - type: System.Int32 - - id: cEntries - type: System.Int32 - - id: pcr - type: OpenTK.Graphics.Wgl.ColorRef[] - return: - type: System.Int32 - content.vb: Public Shared Function GetLayerPaletteEntries(hdc As IntPtr, iLayerPlane As Integer, iStart As Integer, cEntries As Integer, pcr As ColorRef()) As Integer - overload: OpenTK.Graphics.Wgl.Wgl.GetLayerPaletteEntries* - nameWithType.vb: Wgl.GetLayerPaletteEntries(IntPtr, Integer, Integer, Integer, ColorRef()) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.GetLayerPaletteEntries(System.IntPtr, Integer, Integer, Integer, OpenTK.Graphics.Wgl.ColorRef()) - name.vb: GetLayerPaletteEntries(IntPtr, Integer, Integer, Integer, ColorRef()) -- uid: OpenTK.Graphics.Wgl.Wgl.GetLayerPaletteEntries(System.IntPtr,System.Int32,System.Int32,System.Int32,OpenTK.Graphics.Wgl.ColorRef@) - commentId: M:OpenTK.Graphics.Wgl.Wgl.GetLayerPaletteEntries(System.IntPtr,System.Int32,System.Int32,System.Int32,OpenTK.Graphics.Wgl.ColorRef@) - id: GetLayerPaletteEntries(System.IntPtr,System.Int32,System.Int32,System.Int32,OpenTK.Graphics.Wgl.ColorRef@) - parent: OpenTK.Graphics.Wgl.Wgl - langs: - - csharp - - vb - name: GetLayerPaletteEntries(nint, int, int, int, ref ColorRef) - nameWithType: Wgl.GetLayerPaletteEntries(nint, int, int, int, ref ColorRef) - fullName: OpenTK.Graphics.Wgl.Wgl.GetLayerPaletteEntries(nint, int, int, int, ref OpenTK.Graphics.Wgl.ColorRef) - type: Method - source: - id: GetLayerPaletteEntries - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 94 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: v1.0] - - [entry point: wglGetLayerPaletteEntries] - -
- example: [] - syntax: - content: public static int GetLayerPaletteEntries(nint hdc, int iLayerPlane, int iStart, int cEntries, ref ColorRef pcr) - parameters: - - id: hdc - type: System.IntPtr - - id: iLayerPlane - type: System.Int32 - - id: iStart - type: System.Int32 - - id: cEntries - type: System.Int32 - - id: pcr - type: OpenTK.Graphics.Wgl.ColorRef - return: - type: System.Int32 - content.vb: Public Shared Function GetLayerPaletteEntries(hdc As IntPtr, iLayerPlane As Integer, iStart As Integer, cEntries As Integer, pcr As ColorRef) As Integer - overload: OpenTK.Graphics.Wgl.Wgl.GetLayerPaletteEntries* - nameWithType.vb: Wgl.GetLayerPaletteEntries(IntPtr, Integer, Integer, Integer, ColorRef) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.GetLayerPaletteEntries(System.IntPtr, Integer, Integer, Integer, OpenTK.Graphics.Wgl.ColorRef) - name.vb: GetLayerPaletteEntries(IntPtr, Integer, Integer, Integer, ColorRef) -- uid: OpenTK.Graphics.Wgl.Wgl.GetProcAddress(System.String) - commentId: M:OpenTK.Graphics.Wgl.Wgl.GetProcAddress(System.String) - id: GetProcAddress(System.String) - parent: OpenTK.Graphics.Wgl.Wgl - langs: - - csharp - - vb - name: GetProcAddress(string) - nameWithType: Wgl.GetProcAddress(string) - fullName: OpenTK.Graphics.Wgl.Wgl.GetProcAddress(string) - type: Method - source: - id: GetProcAddress - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 104 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: v1.0] - - [entry point: wglGetProcAddress] - -
- example: [] - syntax: - content: public static nint GetProcAddress(string lpszProc) - parameters: - - id: lpszProc - type: System.String - return: - type: System.IntPtr - content.vb: Public Shared Function GetProcAddress(lpszProc As String) As IntPtr - overload: OpenTK.Graphics.Wgl.Wgl.GetProcAddress* - nameWithType.vb: Wgl.GetProcAddress(String) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.GetProcAddress(String) - name.vb: GetProcAddress(String) -- uid: OpenTK.Graphics.Wgl.Wgl.MakeCurrent(System.IntPtr,System.IntPtr) - commentId: M:OpenTK.Graphics.Wgl.Wgl.MakeCurrent(System.IntPtr,System.IntPtr) - id: MakeCurrent(System.IntPtr,System.IntPtr) - parent: OpenTK.Graphics.Wgl.Wgl - langs: - - csharp - - vb - name: MakeCurrent(nint, nint) - nameWithType: Wgl.MakeCurrent(nint, nint) - fullName: OpenTK.Graphics.Wgl.Wgl.MakeCurrent(nint, nint) - type: Method - source: - id: MakeCurrent - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 113 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - example: [] - syntax: - content: public static bool MakeCurrent(nint hDc, nint newContext) - parameters: - - id: hDc - type: System.IntPtr - - id: newContext - type: System.IntPtr - return: - type: System.Boolean - content.vb: Public Shared Function MakeCurrent(hDc As IntPtr, newContext As IntPtr) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.MakeCurrent* - nameWithType.vb: Wgl.MakeCurrent(IntPtr, IntPtr) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.MakeCurrent(System.IntPtr, System.IntPtr) - name.vb: MakeCurrent(IntPtr, IntPtr) -- uid: OpenTK.Graphics.Wgl.Wgl.RealizeLayerPalette(System.IntPtr,System.Int32,System.Int32) - commentId: M:OpenTK.Graphics.Wgl.Wgl.RealizeLayerPalette(System.IntPtr,System.Int32,System.Int32) - id: RealizeLayerPalette(System.IntPtr,System.Int32,System.Int32) - parent: OpenTK.Graphics.Wgl.Wgl - langs: - - csharp - - vb - name: RealizeLayerPalette(nint, int, int) - nameWithType: Wgl.RealizeLayerPalette(nint, int, int) - fullName: OpenTK.Graphics.Wgl.Wgl.RealizeLayerPalette(nint, int, int) - type: Method - source: - id: RealizeLayerPalette - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 122 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - example: [] - syntax: - content: public static bool RealizeLayerPalette(nint hdc, int iLayerPlane, int bRealize) - parameters: - - id: hdc - type: System.IntPtr - - id: iLayerPlane - type: System.Int32 - - id: bRealize - type: System.Int32 - return: - type: System.Boolean - content.vb: Public Shared Function RealizeLayerPalette(hdc As IntPtr, iLayerPlane As Integer, bRealize As Integer) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.RealizeLayerPalette* - nameWithType.vb: Wgl.RealizeLayerPalette(IntPtr, Integer, Integer) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.RealizeLayerPalette(System.IntPtr, Integer, Integer) - name.vb: RealizeLayerPalette(IntPtr, Integer, Integer) -- uid: OpenTK.Graphics.Wgl.Wgl.SetLayerPaletteEntries(System.IntPtr,System.Int32,System.Int32,System.Int32,System.ReadOnlySpan{OpenTK.Graphics.Wgl.ColorRef}) - commentId: M:OpenTK.Graphics.Wgl.Wgl.SetLayerPaletteEntries(System.IntPtr,System.Int32,System.Int32,System.Int32,System.ReadOnlySpan{OpenTK.Graphics.Wgl.ColorRef}) - id: SetLayerPaletteEntries(System.IntPtr,System.Int32,System.Int32,System.Int32,System.ReadOnlySpan{OpenTK.Graphics.Wgl.ColorRef}) - parent: OpenTK.Graphics.Wgl.Wgl - langs: - - csharp - - vb - name: SetLayerPaletteEntries(nint, int, int, int, ReadOnlySpan) - nameWithType: Wgl.SetLayerPaletteEntries(nint, int, int, int, ReadOnlySpan) - fullName: OpenTK.Graphics.Wgl.Wgl.SetLayerPaletteEntries(nint, int, int, int, System.ReadOnlySpan) - type: Method - source: - id: SetLayerPaletteEntries - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 131 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: v1.0] - - [entry point: wglSetLayerPaletteEntries] - -
- example: [] - syntax: - content: public static int SetLayerPaletteEntries(nint hdc, int iLayerPlane, int iStart, int cEntries, ReadOnlySpan pcr) - parameters: - - id: hdc - type: System.IntPtr - - id: iLayerPlane - type: System.Int32 - - id: iStart - type: System.Int32 - - id: cEntries - type: System.Int32 - - id: pcr - type: System.ReadOnlySpan{OpenTK.Graphics.Wgl.ColorRef} - return: - type: System.Int32 - content.vb: Public Shared Function SetLayerPaletteEntries(hdc As IntPtr, iLayerPlane As Integer, iStart As Integer, cEntries As Integer, pcr As ReadOnlySpan(Of ColorRef)) As Integer - overload: OpenTK.Graphics.Wgl.Wgl.SetLayerPaletteEntries* - nameWithType.vb: Wgl.SetLayerPaletteEntries(IntPtr, Integer, Integer, Integer, ReadOnlySpan(Of ColorRef)) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.SetLayerPaletteEntries(System.IntPtr, Integer, Integer, Integer, System.ReadOnlySpan(Of OpenTK.Graphics.Wgl.ColorRef)) - name.vb: SetLayerPaletteEntries(IntPtr, Integer, Integer, Integer, ReadOnlySpan(Of ColorRef)) -- uid: OpenTK.Graphics.Wgl.Wgl.SetLayerPaletteEntries(System.IntPtr,System.Int32,System.Int32,System.Int32,OpenTK.Graphics.Wgl.ColorRef[]) - commentId: M:OpenTK.Graphics.Wgl.Wgl.SetLayerPaletteEntries(System.IntPtr,System.Int32,System.Int32,System.Int32,OpenTK.Graphics.Wgl.ColorRef[]) - id: SetLayerPaletteEntries(System.IntPtr,System.Int32,System.Int32,System.Int32,OpenTK.Graphics.Wgl.ColorRef[]) - parent: OpenTK.Graphics.Wgl.Wgl - langs: - - csharp - - vb - name: SetLayerPaletteEntries(nint, int, int, int, ColorRef[]) - nameWithType: Wgl.SetLayerPaletteEntries(nint, int, int, int, ColorRef[]) - fullName: OpenTK.Graphics.Wgl.Wgl.SetLayerPaletteEntries(nint, int, int, int, OpenTK.Graphics.Wgl.ColorRef[]) - type: Method - source: - id: SetLayerPaletteEntries - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 141 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: v1.0] - - [entry point: wglSetLayerPaletteEntries] - -
- example: [] - syntax: - content: public static int SetLayerPaletteEntries(nint hdc, int iLayerPlane, int iStart, int cEntries, ColorRef[] pcr) - parameters: - - id: hdc - type: System.IntPtr - - id: iLayerPlane - type: System.Int32 - - id: iStart - type: System.Int32 - - id: cEntries - type: System.Int32 - - id: pcr - type: OpenTK.Graphics.Wgl.ColorRef[] - return: - type: System.Int32 - content.vb: Public Shared Function SetLayerPaletteEntries(hdc As IntPtr, iLayerPlane As Integer, iStart As Integer, cEntries As Integer, pcr As ColorRef()) As Integer - overload: OpenTK.Graphics.Wgl.Wgl.SetLayerPaletteEntries* - nameWithType.vb: Wgl.SetLayerPaletteEntries(IntPtr, Integer, Integer, Integer, ColorRef()) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.SetLayerPaletteEntries(System.IntPtr, Integer, Integer, Integer, OpenTK.Graphics.Wgl.ColorRef()) - name.vb: SetLayerPaletteEntries(IntPtr, Integer, Integer, Integer, ColorRef()) -- uid: OpenTK.Graphics.Wgl.Wgl.SetLayerPaletteEntries(System.IntPtr,System.Int32,System.Int32,System.Int32,OpenTK.Graphics.Wgl.ColorRef@) - commentId: M:OpenTK.Graphics.Wgl.Wgl.SetLayerPaletteEntries(System.IntPtr,System.Int32,System.Int32,System.Int32,OpenTK.Graphics.Wgl.ColorRef@) - id: SetLayerPaletteEntries(System.IntPtr,System.Int32,System.Int32,System.Int32,OpenTK.Graphics.Wgl.ColorRef@) - parent: OpenTK.Graphics.Wgl.Wgl - langs: - - csharp - - vb - name: SetLayerPaletteEntries(nint, int, int, int, in ColorRef) - nameWithType: Wgl.SetLayerPaletteEntries(nint, int, int, int, in ColorRef) - fullName: OpenTK.Graphics.Wgl.Wgl.SetLayerPaletteEntries(nint, int, int, int, in OpenTK.Graphics.Wgl.ColorRef) - type: Method - source: - id: SetLayerPaletteEntries - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 151 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: v1.0] - - [entry point: wglSetLayerPaletteEntries] - -
- example: [] - syntax: - content: public static int SetLayerPaletteEntries(nint hdc, int iLayerPlane, int iStart, int cEntries, in ColorRef pcr) - parameters: - - id: hdc - type: System.IntPtr - - id: iLayerPlane - type: System.Int32 - - id: iStart - type: System.Int32 - - id: cEntries - type: System.Int32 - - id: pcr - type: OpenTK.Graphics.Wgl.ColorRef - return: - type: System.Int32 - content.vb: Public Shared Function SetLayerPaletteEntries(hdc As IntPtr, iLayerPlane As Integer, iStart As Integer, cEntries As Integer, pcr As ColorRef) As Integer - overload: OpenTK.Graphics.Wgl.Wgl.SetLayerPaletteEntries* - nameWithType.vb: Wgl.SetLayerPaletteEntries(IntPtr, Integer, Integer, Integer, ColorRef) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.SetLayerPaletteEntries(System.IntPtr, Integer, Integer, Integer, OpenTK.Graphics.Wgl.ColorRef) - name.vb: SetLayerPaletteEntries(IntPtr, Integer, Integer, Integer, ColorRef) -- uid: OpenTK.Graphics.Wgl.Wgl.SetPixelFormat(System.IntPtr,System.Int32,OpenTK.Graphics.Wgl.PixelFormatDescriptor@) - commentId: M:OpenTK.Graphics.Wgl.Wgl.SetPixelFormat(System.IntPtr,System.Int32,OpenTK.Graphics.Wgl.PixelFormatDescriptor@) - id: SetPixelFormat(System.IntPtr,System.Int32,OpenTK.Graphics.Wgl.PixelFormatDescriptor@) - parent: OpenTK.Graphics.Wgl.Wgl - langs: - - csharp - - vb - name: SetPixelFormat(nint, int, in PixelFormatDescriptor) - nameWithType: Wgl.SetPixelFormat(nint, int, in PixelFormatDescriptor) - fullName: OpenTK.Graphics.Wgl.Wgl.SetPixelFormat(nint, int, in OpenTK.Graphics.Wgl.PixelFormatDescriptor) - type: Method - source: - id: SetPixelFormat - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 161 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: >- - [requires: v1.0] - - [entry point: SetPixelFormat] - -
- example: [] - syntax: - content: public static bool SetPixelFormat(nint hdc, int ipfd, in PixelFormatDescriptor ppfd) - parameters: - - id: hdc - type: System.IntPtr - - id: ipfd - type: System.Int32 - - id: ppfd - type: OpenTK.Graphics.Wgl.PixelFormatDescriptor - return: - type: System.Boolean - content.vb: Public Shared Function SetPixelFormat(hdc As IntPtr, ipfd As Integer, ppfd As PixelFormatDescriptor) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.SetPixelFormat* - nameWithType.vb: Wgl.SetPixelFormat(IntPtr, Integer, PixelFormatDescriptor) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.SetPixelFormat(System.IntPtr, Integer, OpenTK.Graphics.Wgl.PixelFormatDescriptor) - name.vb: SetPixelFormat(IntPtr, Integer, PixelFormatDescriptor) -- uid: OpenTK.Graphics.Wgl.Wgl.ShareLists(System.IntPtr,System.IntPtr) - commentId: M:OpenTK.Graphics.Wgl.Wgl.ShareLists(System.IntPtr,System.IntPtr) - id: ShareLists(System.IntPtr,System.IntPtr) - parent: OpenTK.Graphics.Wgl.Wgl - langs: - - csharp - - vb - name: ShareLists(nint, nint) - nameWithType: Wgl.ShareLists(nint, nint) - fullName: OpenTK.Graphics.Wgl.Wgl.ShareLists(nint, nint) - type: Method - source: - id: ShareLists - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 173 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - example: [] - syntax: - content: public static bool ShareLists(nint hrcSrvShare, nint hrcSrvSource) - parameters: - - id: hrcSrvShare - type: System.IntPtr - - id: hrcSrvSource - type: System.IntPtr - return: - type: System.Boolean - content.vb: Public Shared Function ShareLists(hrcSrvShare As IntPtr, hrcSrvSource As IntPtr) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.ShareLists* - nameWithType.vb: Wgl.ShareLists(IntPtr, IntPtr) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.ShareLists(System.IntPtr, System.IntPtr) - name.vb: ShareLists(IntPtr, IntPtr) -- uid: OpenTK.Graphics.Wgl.Wgl.SwapBuffers(System.IntPtr) - commentId: M:OpenTK.Graphics.Wgl.Wgl.SwapBuffers(System.IntPtr) - id: SwapBuffers(System.IntPtr) - parent: OpenTK.Graphics.Wgl.Wgl - langs: - - csharp - - vb - name: SwapBuffers(nint) - nameWithType: Wgl.SwapBuffers(nint) - fullName: OpenTK.Graphics.Wgl.Wgl.SwapBuffers(nint) - type: Method - source: - id: SwapBuffers - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 182 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - example: [] - syntax: - content: public static bool SwapBuffers(nint hdc) - parameters: - - id: hdc - type: System.IntPtr - return: - type: System.Boolean - content.vb: Public Shared Function SwapBuffers(hdc As IntPtr) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.SwapBuffers* - nameWithType.vb: Wgl.SwapBuffers(IntPtr) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.SwapBuffers(System.IntPtr) - name.vb: SwapBuffers(IntPtr) -- uid: OpenTK.Graphics.Wgl.Wgl.SwapLayerBuffers(System.IntPtr,OpenTK.Graphics.Wgl.LayerPlaneMask) - commentId: M:OpenTK.Graphics.Wgl.Wgl.SwapLayerBuffers(System.IntPtr,OpenTK.Graphics.Wgl.LayerPlaneMask) - id: SwapLayerBuffers(System.IntPtr,OpenTK.Graphics.Wgl.LayerPlaneMask) - parent: OpenTK.Graphics.Wgl.Wgl - langs: - - csharp - - vb - name: SwapLayerBuffers(nint, LayerPlaneMask) - nameWithType: Wgl.SwapLayerBuffers(nint, LayerPlaneMask) - fullName: OpenTK.Graphics.Wgl.Wgl.SwapLayerBuffers(nint, OpenTK.Graphics.Wgl.LayerPlaneMask) - type: Method - source: - id: SwapLayerBuffers - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 191 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - example: [] - syntax: - content: public static bool SwapLayerBuffers(nint hdc, LayerPlaneMask fuFlags) - parameters: - - id: hdc - type: System.IntPtr - - id: fuFlags - type: OpenTK.Graphics.Wgl.LayerPlaneMask - return: - type: System.Boolean - content.vb: Public Shared Function SwapLayerBuffers(hdc As IntPtr, fuFlags As LayerPlaneMask) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.SwapLayerBuffers* - nameWithType.vb: Wgl.SwapLayerBuffers(IntPtr, LayerPlaneMask) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.SwapLayerBuffers(System.IntPtr, OpenTK.Graphics.Wgl.LayerPlaneMask) - name.vb: SwapLayerBuffers(IntPtr, LayerPlaneMask) -- uid: OpenTK.Graphics.Wgl.Wgl.UseFontBitmaps(System.IntPtr,System.UInt32,System.UInt32,System.UInt32) - commentId: M:OpenTK.Graphics.Wgl.Wgl.UseFontBitmaps(System.IntPtr,System.UInt32,System.UInt32,System.UInt32) - id: UseFontBitmaps(System.IntPtr,System.UInt32,System.UInt32,System.UInt32) - parent: OpenTK.Graphics.Wgl.Wgl - langs: - - csharp - - vb - name: UseFontBitmaps(nint, uint, uint, uint) - nameWithType: Wgl.UseFontBitmaps(nint, uint, uint, uint) - fullName: OpenTK.Graphics.Wgl.Wgl.UseFontBitmaps(nint, uint, uint, uint) - type: Method - source: - id: UseFontBitmaps - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 200 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - example: [] - syntax: - content: public static bool UseFontBitmaps(nint hDC, uint first, uint count, uint listBase) - parameters: - - id: hDC - type: System.IntPtr - - id: first - type: System.UInt32 - - id: count - type: System.UInt32 - - id: listBase - type: System.UInt32 - return: - type: System.Boolean - content.vb: Public Shared Function UseFontBitmaps(hDC As IntPtr, first As UInteger, count As UInteger, listBase As UInteger) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.UseFontBitmaps* - nameWithType.vb: Wgl.UseFontBitmaps(IntPtr, UInteger, UInteger, UInteger) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.UseFontBitmaps(System.IntPtr, UInteger, UInteger, UInteger) - name.vb: UseFontBitmaps(IntPtr, UInteger, UInteger, UInteger) -- uid: OpenTK.Graphics.Wgl.Wgl.UseFontBitmapsA(System.IntPtr,System.UInt32,System.UInt32,System.UInt32) - commentId: M:OpenTK.Graphics.Wgl.Wgl.UseFontBitmapsA(System.IntPtr,System.UInt32,System.UInt32,System.UInt32) - id: UseFontBitmapsA(System.IntPtr,System.UInt32,System.UInt32,System.UInt32) - parent: OpenTK.Graphics.Wgl.Wgl - langs: - - csharp - - vb - name: UseFontBitmapsA(nint, uint, uint, uint) - nameWithType: Wgl.UseFontBitmapsA(nint, uint, uint, uint) - fullName: OpenTK.Graphics.Wgl.Wgl.UseFontBitmapsA(nint, uint, uint, uint) - type: Method - source: - id: UseFontBitmapsA - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 209 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - example: [] - syntax: - content: public static bool UseFontBitmapsA(nint hDC, uint first, uint count, uint listBase) - parameters: - - id: hDC - type: System.IntPtr - - id: first - type: System.UInt32 - - id: count - type: System.UInt32 - - id: listBase - type: System.UInt32 - return: - type: System.Boolean - content.vb: Public Shared Function UseFontBitmapsA(hDC As IntPtr, first As UInteger, count As UInteger, listBase As UInteger) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.UseFontBitmapsA* - nameWithType.vb: Wgl.UseFontBitmapsA(IntPtr, UInteger, UInteger, UInteger) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.UseFontBitmapsA(System.IntPtr, UInteger, UInteger, UInteger) - name.vb: UseFontBitmapsA(IntPtr, UInteger, UInteger, UInteger) -- uid: OpenTK.Graphics.Wgl.Wgl.UseFontBitmapsW(System.IntPtr,System.UInt32,System.UInt32,System.UInt32) - commentId: M:OpenTK.Graphics.Wgl.Wgl.UseFontBitmapsW(System.IntPtr,System.UInt32,System.UInt32,System.UInt32) - id: UseFontBitmapsW(System.IntPtr,System.UInt32,System.UInt32,System.UInt32) - parent: OpenTK.Graphics.Wgl.Wgl - langs: - - csharp - - vb - name: UseFontBitmapsW(nint, uint, uint, uint) - nameWithType: Wgl.UseFontBitmapsW(nint, uint, uint, uint) - fullName: OpenTK.Graphics.Wgl.Wgl.UseFontBitmapsW(nint, uint, uint, uint) - type: Method - source: - id: UseFontBitmapsW - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 218 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - example: [] - syntax: - content: public static bool UseFontBitmapsW(nint hDC, uint first, uint count, uint listBase) - parameters: - - id: hDC - type: System.IntPtr - - id: first - type: System.UInt32 - - id: count - type: System.UInt32 - - id: listBase - type: System.UInt32 - return: - type: System.Boolean - content.vb: Public Shared Function UseFontBitmapsW(hDC As IntPtr, first As UInteger, count As UInteger, listBase As UInteger) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.UseFontBitmapsW* - nameWithType.vb: Wgl.UseFontBitmapsW(IntPtr, UInteger, UInteger, UInteger) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.UseFontBitmapsW(System.IntPtr, UInteger, UInteger, UInteger) - name.vb: UseFontBitmapsW(IntPtr, UInteger, UInteger, UInteger) -- uid: OpenTK.Graphics.Wgl.Wgl.UseFontOutlines(System.IntPtr,System.UInt32,System.UInt32,System.UInt32,System.Single,System.Single,OpenTK.Graphics.Wgl.FontFormat,System.IntPtr) - commentId: M:OpenTK.Graphics.Wgl.Wgl.UseFontOutlines(System.IntPtr,System.UInt32,System.UInt32,System.UInt32,System.Single,System.Single,OpenTK.Graphics.Wgl.FontFormat,System.IntPtr) - id: UseFontOutlines(System.IntPtr,System.UInt32,System.UInt32,System.UInt32,System.Single,System.Single,OpenTK.Graphics.Wgl.FontFormat,System.IntPtr) - parent: OpenTK.Graphics.Wgl.Wgl - langs: - - csharp - - vb - name: UseFontOutlines(nint, uint, uint, uint, float, float, FontFormat, nint) - nameWithType: Wgl.UseFontOutlines(nint, uint, uint, uint, float, float, FontFormat, nint) - fullName: OpenTK.Graphics.Wgl.Wgl.UseFontOutlines(nint, uint, uint, uint, float, float, OpenTK.Graphics.Wgl.FontFormat, nint) - type: Method - source: - id: UseFontOutlines - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 227 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - example: [] - syntax: - content: public static bool UseFontOutlines(nint hDC, uint first, uint count, uint listBase, float deviation, float extrusion, FontFormat format, nint lpgmf) - parameters: - - id: hDC - type: System.IntPtr - - id: first - type: System.UInt32 - - id: count - type: System.UInt32 - - id: listBase - type: System.UInt32 - - id: deviation - type: System.Single - - id: extrusion - type: System.Single - - id: format - type: OpenTK.Graphics.Wgl.FontFormat - - id: lpgmf - type: System.IntPtr - return: - type: System.Boolean - content.vb: Public Shared Function UseFontOutlines(hDC As IntPtr, first As UInteger, count As UInteger, listBase As UInteger, deviation As Single, extrusion As Single, format As FontFormat, lpgmf As IntPtr) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.UseFontOutlines* - nameWithType.vb: Wgl.UseFontOutlines(IntPtr, UInteger, UInteger, UInteger, Single, Single, FontFormat, IntPtr) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.UseFontOutlines(System.IntPtr, UInteger, UInteger, UInteger, Single, Single, OpenTK.Graphics.Wgl.FontFormat, System.IntPtr) - name.vb: UseFontOutlines(IntPtr, UInteger, UInteger, UInteger, Single, Single, FontFormat, IntPtr) -- uid: OpenTK.Graphics.Wgl.Wgl.UseFontOutlinesA(System.IntPtr,System.UInt32,System.UInt32,System.UInt32,System.Single,System.Single,OpenTK.Graphics.Wgl.FontFormat,System.IntPtr) - commentId: M:OpenTK.Graphics.Wgl.Wgl.UseFontOutlinesA(System.IntPtr,System.UInt32,System.UInt32,System.UInt32,System.Single,System.Single,OpenTK.Graphics.Wgl.FontFormat,System.IntPtr) - id: UseFontOutlinesA(System.IntPtr,System.UInt32,System.UInt32,System.UInt32,System.Single,System.Single,OpenTK.Graphics.Wgl.FontFormat,System.IntPtr) - parent: OpenTK.Graphics.Wgl.Wgl - langs: - - csharp - - vb - name: UseFontOutlinesA(nint, uint, uint, uint, float, float, FontFormat, nint) - nameWithType: Wgl.UseFontOutlinesA(nint, uint, uint, uint, float, float, FontFormat, nint) - fullName: OpenTK.Graphics.Wgl.Wgl.UseFontOutlinesA(nint, uint, uint, uint, float, float, OpenTK.Graphics.Wgl.FontFormat, nint) - type: Method - source: - id: UseFontOutlinesA - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 236 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - example: [] - syntax: - content: public static bool UseFontOutlinesA(nint hDC, uint first, uint count, uint listBase, float deviation, float extrusion, FontFormat format, nint lpgmf) - parameters: - - id: hDC - type: System.IntPtr - - id: first - type: System.UInt32 - - id: count - type: System.UInt32 - - id: listBase - type: System.UInt32 - - id: deviation - type: System.Single - - id: extrusion - type: System.Single - - id: format - type: OpenTK.Graphics.Wgl.FontFormat - - id: lpgmf - type: System.IntPtr - return: - type: System.Boolean - content.vb: Public Shared Function UseFontOutlinesA(hDC As IntPtr, first As UInteger, count As UInteger, listBase As UInteger, deviation As Single, extrusion As Single, format As FontFormat, lpgmf As IntPtr) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.UseFontOutlinesA* - nameWithType.vb: Wgl.UseFontOutlinesA(IntPtr, UInteger, UInteger, UInteger, Single, Single, FontFormat, IntPtr) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.UseFontOutlinesA(System.IntPtr, UInteger, UInteger, UInteger, Single, Single, OpenTK.Graphics.Wgl.FontFormat, System.IntPtr) - name.vb: UseFontOutlinesA(IntPtr, UInteger, UInteger, UInteger, Single, Single, FontFormat, IntPtr) -- uid: OpenTK.Graphics.Wgl.Wgl.UseFontOutlinesW(System.IntPtr,System.UInt32,System.UInt32,System.UInt32,System.Single,System.Single,OpenTK.Graphics.Wgl.FontFormat,System.IntPtr) - commentId: M:OpenTK.Graphics.Wgl.Wgl.UseFontOutlinesW(System.IntPtr,System.UInt32,System.UInt32,System.UInt32,System.Single,System.Single,OpenTK.Graphics.Wgl.FontFormat,System.IntPtr) - id: UseFontOutlinesW(System.IntPtr,System.UInt32,System.UInt32,System.UInt32,System.Single,System.Single,OpenTK.Graphics.Wgl.FontFormat,System.IntPtr) - parent: OpenTK.Graphics.Wgl.Wgl - langs: - - csharp - - vb - name: UseFontOutlinesW(nint, uint, uint, uint, float, float, FontFormat, nint) - nameWithType: Wgl.UseFontOutlinesW(nint, uint, uint, uint, float, float, FontFormat, nint) - fullName: OpenTK.Graphics.Wgl.Wgl.UseFontOutlinesW(nint, uint, uint, uint, float, float, OpenTK.Graphics.Wgl.FontFormat, nint) - type: Method - source: - id: UseFontOutlinesW - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Wgl\WGL.Overloads.cs - startLine: 245 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - example: [] - syntax: - content: public static bool UseFontOutlinesW(nint hDC, uint first, uint count, uint listBase, float deviation, float extrusion, FontFormat format, nint lpgmf) - parameters: - - id: hDC - type: System.IntPtr - - id: first - type: System.UInt32 - - id: count - type: System.UInt32 - - id: listBase - type: System.UInt32 - - id: deviation - type: System.Single - - id: extrusion - type: System.Single - - id: format - type: OpenTK.Graphics.Wgl.FontFormat - - id: lpgmf - type: System.IntPtr - return: - type: System.Boolean - content.vb: Public Shared Function UseFontOutlinesW(hDC As IntPtr, first As UInteger, count As UInteger, listBase As UInteger, deviation As Single, extrusion As Single, format As FontFormat, lpgmf As IntPtr) As Boolean - overload: OpenTK.Graphics.Wgl.Wgl.UseFontOutlinesW* - nameWithType.vb: Wgl.UseFontOutlinesW(IntPtr, UInteger, UInteger, UInteger, Single, Single, FontFormat, IntPtr) - fullName.vb: OpenTK.Graphics.Wgl.Wgl.UseFontOutlinesW(System.IntPtr, UInteger, UInteger, UInteger, Single, Single, OpenTK.Graphics.Wgl.FontFormat, System.IntPtr) - name.vb: UseFontOutlinesW(IntPtr, UInteger, UInteger, UInteger, Single, Single, FontFormat, IntPtr) -references: -- uid: OpenTK.Graphics.Wgl - commentId: N:OpenTK.Graphics.Wgl - href: OpenTK.html - name: OpenTK.Graphics.Wgl - nameWithType: OpenTK.Graphics.Wgl - fullName: OpenTK.Graphics.Wgl - spec.csharp: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Wgl - name: Wgl - href: OpenTK.Graphics.Wgl.html - spec.vb: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Wgl - name: Wgl - href: OpenTK.Graphics.Wgl.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: System.Object.Equals(System.Object) - commentId: M:System.Object.Equals(System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - name: Equals(object) - nameWithType: object.Equals(object) - fullName: object.Equals(object) - nameWithType.vb: Object.Equals(Object) - fullName.vb: Object.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetHashCode - commentId: M:System.Object.GetHashCode - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - name: GetHashCode() - nameWithType: object.GetHashCode() - fullName: object.GetHashCode() - nameWithType.vb: Object.GetHashCode() - fullName.vb: Object.GetHashCode() - spec.csharp: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.MemberwiseClone - commentId: M:System.Object.MemberwiseClone - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - name: MemberwiseClone() - nameWithType: object.MemberwiseClone() - fullName: object.MemberwiseClone() - nameWithType.vb: Object.MemberwiseClone() - fullName.vb: Object.MemberwiseClone() - spec.csharp: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) - spec.vb: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.ToString - commentId: M:System.Object.ToString - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - name: ToString() - nameWithType: object.ToString() - fullName: object.ToString() - nameWithType.vb: Object.ToString() - fullName.vb: Object.ToString() - spec.csharp: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) - spec.vb: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: OpenTK.Graphics.Wgl.Wgl.ChoosePixelFormat* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.ChoosePixelFormat - href: OpenTK.Graphics.Wgl.Wgl.html#OpenTK_Graphics_Wgl_Wgl_ChoosePixelFormat_System_IntPtr_OpenTK_Graphics_Wgl_PixelFormatDescriptor__ - name: ChoosePixelFormat - nameWithType: Wgl.ChoosePixelFormat - fullName: OpenTK.Graphics.Wgl.Wgl.ChoosePixelFormat -- uid: System.IntPtr - commentId: T:System.IntPtr - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: nint - nameWithType: nint - fullName: nint - nameWithType.vb: IntPtr - fullName.vb: System.IntPtr - name.vb: IntPtr -- uid: OpenTK.Graphics.Wgl.PixelFormatDescriptor* - isExternal: true - href: OpenTK.Graphics.Wgl.PixelFormatDescriptor.html - name: PixelFormatDescriptor* - nameWithType: PixelFormatDescriptor* - fullName: OpenTK.Graphics.Wgl.PixelFormatDescriptor* - spec.csharp: - - uid: OpenTK.Graphics.Wgl.PixelFormatDescriptor - name: PixelFormatDescriptor - href: OpenTK.Graphics.Wgl.PixelFormatDescriptor.html - - name: '*' - spec.vb: - - uid: OpenTK.Graphics.Wgl.PixelFormatDescriptor - name: PixelFormatDescriptor - href: OpenTK.Graphics.Wgl.PixelFormatDescriptor.html - - name: '*' -- uid: System.Int32 - commentId: T:System.Int32 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - name: int - nameWithType: int - fullName: int - nameWithType.vb: Integer - fullName.vb: Integer - name.vb: Integer -- uid: OpenTK.Graphics.Wgl.Wgl.CopyContext_* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.CopyContext_ - href: OpenTK.Graphics.Wgl.Wgl.html#OpenTK_Graphics_Wgl_Wgl_CopyContext__System_IntPtr_System_IntPtr_OpenTK_Graphics_OpenGL_AttribMask_ - name: CopyContext_ - nameWithType: Wgl.CopyContext_ - fullName: OpenTK.Graphics.Wgl.Wgl.CopyContext_ -- uid: OpenTK.Graphics.OpenGL.AttribMask - commentId: T:OpenTK.Graphics.OpenGL.AttribMask - parent: OpenTK.Graphics.OpenGL - href: OpenTK.Graphics.OpenGL.AttribMask.html - name: AttribMask - nameWithType: AttribMask - fullName: OpenTK.Graphics.OpenGL.AttribMask -- uid: OpenTK.Graphics.OpenGL - commentId: N:OpenTK.Graphics.OpenGL - href: OpenTK.html - name: OpenTK.Graphics.OpenGL - nameWithType: OpenTK.Graphics.OpenGL - fullName: OpenTK.Graphics.OpenGL - spec.csharp: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.OpenGL - name: OpenGL - href: OpenTK.Graphics.OpenGL.html - spec.vb: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.OpenGL - name: OpenGL - href: OpenTK.Graphics.OpenGL.html -- uid: OpenTK.Graphics.Wgl.Wgl.CreateContext* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.CreateContext - href: OpenTK.Graphics.Wgl.Wgl.html#OpenTK_Graphics_Wgl_Wgl_CreateContext_System_IntPtr_ - name: CreateContext - nameWithType: Wgl.CreateContext - fullName: OpenTK.Graphics.Wgl.Wgl.CreateContext -- uid: OpenTK.Graphics.Wgl.Wgl.CreateLayerContext* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.CreateLayerContext - href: OpenTK.Graphics.Wgl.Wgl.html#OpenTK_Graphics_Wgl_Wgl_CreateLayerContext_System_IntPtr_System_Int32_ - name: CreateLayerContext - nameWithType: Wgl.CreateLayerContext - fullName: OpenTK.Graphics.Wgl.Wgl.CreateLayerContext -- uid: OpenTK.Graphics.Wgl.Wgl.DeleteContext_* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.DeleteContext_ - href: OpenTK.Graphics.Wgl.Wgl.html#OpenTK_Graphics_Wgl_Wgl_DeleteContext__System_IntPtr_ - name: DeleteContext_ - nameWithType: Wgl.DeleteContext_ - fullName: OpenTK.Graphics.Wgl.Wgl.DeleteContext_ -- uid: OpenTK.Graphics.Wgl.Wgl.DescribeLayerPlane* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.DescribeLayerPlane - href: OpenTK.Graphics.Wgl.Wgl.html#OpenTK_Graphics_Wgl_Wgl_DescribeLayerPlane_System_IntPtr_System_Int32_System_Int32_System_UInt32_OpenTK_Graphics_Wgl_LayerPlaneDescriptor__ - name: DescribeLayerPlane - nameWithType: Wgl.DescribeLayerPlane - fullName: OpenTK.Graphics.Wgl.Wgl.DescribeLayerPlane -- uid: System.UInt32 - commentId: T:System.UInt32 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - name: uint - nameWithType: uint - fullName: uint - nameWithType.vb: UInteger - fullName.vb: UInteger - name.vb: UInteger -- uid: OpenTK.Graphics.Wgl.LayerPlaneDescriptor* - isExternal: true - href: OpenTK.Graphics.Wgl.LayerPlaneDescriptor.html - name: LayerPlaneDescriptor* - nameWithType: LayerPlaneDescriptor* - fullName: OpenTK.Graphics.Wgl.LayerPlaneDescriptor* - spec.csharp: - - uid: OpenTK.Graphics.Wgl.LayerPlaneDescriptor - name: LayerPlaneDescriptor - href: OpenTK.Graphics.Wgl.LayerPlaneDescriptor.html - - name: '*' - spec.vb: - - uid: OpenTK.Graphics.Wgl.LayerPlaneDescriptor - name: LayerPlaneDescriptor - href: OpenTK.Graphics.Wgl.LayerPlaneDescriptor.html - - name: '*' -- uid: OpenTK.Graphics.Wgl.Wgl.DescribePixelFormat* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.DescribePixelFormat - href: OpenTK.Graphics.Wgl.Wgl.html#OpenTK_Graphics_Wgl_Wgl_DescribePixelFormat_System_IntPtr_System_Int32_System_UInt32_OpenTK_Graphics_Wgl_PixelFormatDescriptor__ - name: DescribePixelFormat - nameWithType: Wgl.DescribePixelFormat - fullName: OpenTK.Graphics.Wgl.Wgl.DescribePixelFormat -- uid: OpenTK.Graphics.Wgl.Wgl.GetCurrentContext* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.GetCurrentContext - href: OpenTK.Graphics.Wgl.Wgl.html#OpenTK_Graphics_Wgl_Wgl_GetCurrentContext - name: GetCurrentContext - nameWithType: Wgl.GetCurrentContext - fullName: OpenTK.Graphics.Wgl.Wgl.GetCurrentContext -- uid: OpenTK.Graphics.Wgl.Wgl.GetCurrentDC* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.GetCurrentDC - href: OpenTK.Graphics.Wgl.Wgl.html#OpenTK_Graphics_Wgl_Wgl_GetCurrentDC - name: GetCurrentDC - nameWithType: Wgl.GetCurrentDC - fullName: OpenTK.Graphics.Wgl.Wgl.GetCurrentDC -- uid: OpenTK.Graphics.Wgl.Wgl.GetEnhMetaFilePixelFormat* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.GetEnhMetaFilePixelFormat - href: OpenTK.Graphics.Wgl.Wgl.html#OpenTK_Graphics_Wgl_Wgl_GetEnhMetaFilePixelFormat_System_IntPtr_System_UInt32_OpenTK_Graphics_Wgl_PixelFormatDescriptor__ - name: GetEnhMetaFilePixelFormat - nameWithType: Wgl.GetEnhMetaFilePixelFormat - fullName: OpenTK.Graphics.Wgl.Wgl.GetEnhMetaFilePixelFormat -- uid: OpenTK.Graphics.Wgl.Wgl.GetLayerPaletteEntries* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.GetLayerPaletteEntries - href: OpenTK.Graphics.Wgl.Wgl.html#OpenTK_Graphics_Wgl_Wgl_GetLayerPaletteEntries_System_IntPtr_System_Int32_System_Int32_System_Int32_OpenTK_Graphics_Wgl_ColorRef__ - name: GetLayerPaletteEntries - nameWithType: Wgl.GetLayerPaletteEntries - fullName: OpenTK.Graphics.Wgl.Wgl.GetLayerPaletteEntries -- uid: OpenTK.Graphics.Wgl.ColorRef* - isExternal: true - href: OpenTK.Graphics.Wgl.ColorRef.html - name: ColorRef* - nameWithType: ColorRef* - fullName: OpenTK.Graphics.Wgl.ColorRef* - spec.csharp: - - uid: OpenTK.Graphics.Wgl.ColorRef - name: ColorRef - href: OpenTK.Graphics.Wgl.ColorRef.html - - name: '*' - spec.vb: - - uid: OpenTK.Graphics.Wgl.ColorRef - name: ColorRef - href: OpenTK.Graphics.Wgl.ColorRef.html - - name: '*' -- uid: OpenTK.Graphics.Wgl.Wgl.GetPixelFormat* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.GetPixelFormat - href: OpenTK.Graphics.Wgl.Wgl.html#OpenTK_Graphics_Wgl_Wgl_GetPixelFormat_System_IntPtr_ - name: GetPixelFormat - nameWithType: Wgl.GetPixelFormat - fullName: OpenTK.Graphics.Wgl.Wgl.GetPixelFormat -- uid: OpenTK.Graphics.Wgl.Wgl.GetProcAddress* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.GetProcAddress - href: OpenTK.Graphics.Wgl.Wgl.html#OpenTK_Graphics_Wgl_Wgl_GetProcAddress_System_Byte__ - name: GetProcAddress - nameWithType: Wgl.GetProcAddress - fullName: OpenTK.Graphics.Wgl.Wgl.GetProcAddress -- uid: System.Byte* - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.byte - name: byte* - nameWithType: byte* - fullName: byte* - nameWithType.vb: Byte* - fullName.vb: Byte* - name.vb: Byte* - spec.csharp: - - uid: System.Byte - name: byte - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.byte - - name: '*' - spec.vb: - - uid: System.Byte - name: Byte - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.byte - - name: '*' -- uid: OpenTK.Graphics.Wgl.Wgl.MakeCurrent_* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.MakeCurrent_ - href: OpenTK.Graphics.Wgl.Wgl.html#OpenTK_Graphics_Wgl_Wgl_MakeCurrent__System_IntPtr_System_IntPtr_ - name: MakeCurrent_ - nameWithType: Wgl.MakeCurrent_ - fullName: OpenTK.Graphics.Wgl.Wgl.MakeCurrent_ -- uid: OpenTK.Graphics.Wgl.Wgl.RealizeLayerPalette_* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.RealizeLayerPalette_ - href: OpenTK.Graphics.Wgl.Wgl.html#OpenTK_Graphics_Wgl_Wgl_RealizeLayerPalette__System_IntPtr_System_Int32_System_Int32_ - name: RealizeLayerPalette_ - nameWithType: Wgl.RealizeLayerPalette_ - fullName: OpenTK.Graphics.Wgl.Wgl.RealizeLayerPalette_ -- uid: OpenTK.Graphics.Wgl.Wgl.SetLayerPaletteEntries* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.SetLayerPaletteEntries - href: OpenTK.Graphics.Wgl.Wgl.html#OpenTK_Graphics_Wgl_Wgl_SetLayerPaletteEntries_System_IntPtr_System_Int32_System_Int32_System_Int32_OpenTK_Graphics_Wgl_ColorRef__ - name: SetLayerPaletteEntries - nameWithType: Wgl.SetLayerPaletteEntries - fullName: OpenTK.Graphics.Wgl.Wgl.SetLayerPaletteEntries -- uid: OpenTK.Graphics.Wgl.Wgl.SetPixelFormat* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.SetPixelFormat - href: OpenTK.Graphics.Wgl.Wgl.html#OpenTK_Graphics_Wgl_Wgl_SetPixelFormat_System_IntPtr_System_Int32_OpenTK_Graphics_Wgl_PixelFormatDescriptor__ - name: SetPixelFormat - nameWithType: Wgl.SetPixelFormat - fullName: OpenTK.Graphics.Wgl.Wgl.SetPixelFormat -- uid: OpenTK.Graphics.Wgl.Wgl.ShareLists_* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.ShareLists_ - href: OpenTK.Graphics.Wgl.Wgl.html#OpenTK_Graphics_Wgl_Wgl_ShareLists__System_IntPtr_System_IntPtr_ - name: ShareLists_ - nameWithType: Wgl.ShareLists_ - fullName: OpenTK.Graphics.Wgl.Wgl.ShareLists_ -- uid: OpenTK.Graphics.Wgl.Wgl.SwapBuffers_* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.SwapBuffers_ - href: OpenTK.Graphics.Wgl.Wgl.html#OpenTK_Graphics_Wgl_Wgl_SwapBuffers__System_IntPtr_ - name: SwapBuffers_ - nameWithType: Wgl.SwapBuffers_ - fullName: OpenTK.Graphics.Wgl.Wgl.SwapBuffers_ -- uid: OpenTK.Graphics.Wgl.Wgl.SwapLayerBuffers_* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.SwapLayerBuffers_ - href: OpenTK.Graphics.Wgl.Wgl.html#OpenTK_Graphics_Wgl_Wgl_SwapLayerBuffers__System_IntPtr_OpenTK_Graphics_Wgl_LayerPlaneMask_ - name: SwapLayerBuffers_ - nameWithType: Wgl.SwapLayerBuffers_ - fullName: OpenTK.Graphics.Wgl.Wgl.SwapLayerBuffers_ -- uid: OpenTK.Graphics.Wgl.LayerPlaneMask - commentId: T:OpenTK.Graphics.Wgl.LayerPlaneMask - parent: OpenTK.Graphics.Wgl - href: OpenTK.Graphics.Wgl.LayerPlaneMask.html - name: LayerPlaneMask - nameWithType: LayerPlaneMask - fullName: OpenTK.Graphics.Wgl.LayerPlaneMask -- uid: OpenTK.Graphics.Wgl.Wgl.UseFontBitmaps_* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.UseFontBitmaps_ - href: OpenTK.Graphics.Wgl.Wgl.html#OpenTK_Graphics_Wgl_Wgl_UseFontBitmaps__System_IntPtr_System_UInt32_System_UInt32_System_UInt32_ - name: UseFontBitmaps_ - nameWithType: Wgl.UseFontBitmaps_ - fullName: OpenTK.Graphics.Wgl.Wgl.UseFontBitmaps_ -- uid: OpenTK.Graphics.Wgl.Wgl.UseFontBitmapsA_* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.UseFontBitmapsA_ - href: OpenTK.Graphics.Wgl.Wgl.html#OpenTK_Graphics_Wgl_Wgl_UseFontBitmapsA__System_IntPtr_System_UInt32_System_UInt32_System_UInt32_ - name: UseFontBitmapsA_ - nameWithType: Wgl.UseFontBitmapsA_ - fullName: OpenTK.Graphics.Wgl.Wgl.UseFontBitmapsA_ -- uid: OpenTK.Graphics.Wgl.Wgl.UseFontBitmapsW_* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.UseFontBitmapsW_ - href: OpenTK.Graphics.Wgl.Wgl.html#OpenTK_Graphics_Wgl_Wgl_UseFontBitmapsW__System_IntPtr_System_UInt32_System_UInt32_System_UInt32_ - name: UseFontBitmapsW_ - nameWithType: Wgl.UseFontBitmapsW_ - fullName: OpenTK.Graphics.Wgl.Wgl.UseFontBitmapsW_ -- uid: OpenTK.Graphics.Wgl.Wgl.UseFontOutlines_* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.UseFontOutlines_ - href: OpenTK.Graphics.Wgl.Wgl.html#OpenTK_Graphics_Wgl_Wgl_UseFontOutlines__System_IntPtr_System_UInt32_System_UInt32_System_UInt32_System_Single_System_Single_OpenTK_Graphics_Wgl_FontFormat_System_IntPtr_ - name: UseFontOutlines_ - nameWithType: Wgl.UseFontOutlines_ - fullName: OpenTK.Graphics.Wgl.Wgl.UseFontOutlines_ -- uid: System.Single - commentId: T:System.Single - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.single - name: float - nameWithType: float - fullName: float - nameWithType.vb: Single - fullName.vb: Single - name.vb: Single -- uid: OpenTK.Graphics.Wgl.FontFormat - commentId: T:OpenTK.Graphics.Wgl.FontFormat - parent: OpenTK.Graphics.Wgl - href: OpenTK.Graphics.Wgl.FontFormat.html - name: FontFormat - nameWithType: FontFormat - fullName: OpenTK.Graphics.Wgl.FontFormat -- uid: OpenTK.Graphics.Wgl.Wgl.UseFontOutlinesA_* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.UseFontOutlinesA_ - href: OpenTK.Graphics.Wgl.Wgl.html#OpenTK_Graphics_Wgl_Wgl_UseFontOutlinesA__System_IntPtr_System_UInt32_System_UInt32_System_UInt32_System_Single_System_Single_OpenTK_Graphics_Wgl_FontFormat_System_IntPtr_ - name: UseFontOutlinesA_ - nameWithType: Wgl.UseFontOutlinesA_ - fullName: OpenTK.Graphics.Wgl.Wgl.UseFontOutlinesA_ -- uid: OpenTK.Graphics.Wgl.Wgl.UseFontOutlinesW_* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.UseFontOutlinesW_ - href: OpenTK.Graphics.Wgl.Wgl.html#OpenTK_Graphics_Wgl_Wgl_UseFontOutlinesW__System_IntPtr_System_UInt32_System_UInt32_System_UInt32_System_Single_System_Single_OpenTK_Graphics_Wgl_FontFormat_System_IntPtr_ - name: UseFontOutlinesW_ - nameWithType: Wgl.UseFontOutlinesW_ - fullName: OpenTK.Graphics.Wgl.Wgl.UseFontOutlinesW_ -- uid: OpenTK.Graphics.Wgl.PixelFormatDescriptor - commentId: T:OpenTK.Graphics.Wgl.PixelFormatDescriptor - parent: OpenTK.Graphics.Wgl - href: OpenTK.Graphics.Wgl.PixelFormatDescriptor.html - name: PixelFormatDescriptor - nameWithType: PixelFormatDescriptor - fullName: OpenTK.Graphics.Wgl.PixelFormatDescriptor -- uid: OpenTK.Graphics.Wgl.Wgl.CopyContext* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.CopyContext - href: OpenTK.Graphics.Wgl.Wgl.html#OpenTK_Graphics_Wgl_Wgl_CopyContext_System_IntPtr_System_IntPtr_OpenTK_Graphics_OpenGL_AttribMask_ - name: CopyContext - nameWithType: Wgl.CopyContext - fullName: OpenTK.Graphics.Wgl.Wgl.CopyContext -- uid: System.Boolean - commentId: T:System.Boolean - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - name: bool - nameWithType: bool - fullName: bool - nameWithType.vb: Boolean - fullName.vb: Boolean - name.vb: Boolean -- uid: OpenTK.Graphics.Wgl.Wgl.DeleteContext* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.DeleteContext - href: OpenTK.Graphics.Wgl.Wgl.html#OpenTK_Graphics_Wgl_Wgl_DeleteContext_System_IntPtr_ - name: DeleteContext - nameWithType: Wgl.DeleteContext - fullName: OpenTK.Graphics.Wgl.Wgl.DeleteContext -- uid: OpenTK.Graphics.Wgl.LayerPlaneDescriptor - commentId: T:OpenTK.Graphics.Wgl.LayerPlaneDescriptor - parent: OpenTK.Graphics.Wgl - href: OpenTK.Graphics.Wgl.LayerPlaneDescriptor.html - name: LayerPlaneDescriptor - nameWithType: LayerPlaneDescriptor - fullName: OpenTK.Graphics.Wgl.LayerPlaneDescriptor -- uid: System.Span{OpenTK.Graphics.Wgl.ColorRef} - commentId: T:System.Span{OpenTK.Graphics.Wgl.ColorRef} - parent: System - definition: System.Span`1 - href: https://learn.microsoft.com/dotnet/api/system.span-1 - name: Span - nameWithType: Span - fullName: System.Span - nameWithType.vb: Span(Of ColorRef) - fullName.vb: System.Span(Of OpenTK.Graphics.Wgl.ColorRef) - name.vb: Span(Of ColorRef) - spec.csharp: - - uid: System.Span`1 - name: Span - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.span-1 - - name: < - - uid: OpenTK.Graphics.Wgl.ColorRef - name: ColorRef - href: OpenTK.Graphics.Wgl.ColorRef.html - - name: '>' - spec.vb: - - uid: System.Span`1 - name: Span - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.span-1 - - name: ( - - name: Of - - name: " " - - uid: OpenTK.Graphics.Wgl.ColorRef - name: ColorRef - href: OpenTK.Graphics.Wgl.ColorRef.html - - name: ) -- uid: System.Span`1 - commentId: T:System.Span`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.span-1 - name: Span - nameWithType: Span - fullName: System.Span - nameWithType.vb: Span(Of T) - fullName.vb: System.Span(Of T) - name.vb: Span(Of T) - spec.csharp: - - uid: System.Span`1 - name: Span - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.span-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.Span`1 - name: Span - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.span-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: OpenTK.Graphics.Wgl.ColorRef[] - isExternal: true - href: OpenTK.Graphics.Wgl.ColorRef.html - name: ColorRef[] - nameWithType: ColorRef[] - fullName: OpenTK.Graphics.Wgl.ColorRef[] - nameWithType.vb: ColorRef() - fullName.vb: OpenTK.Graphics.Wgl.ColorRef() - name.vb: ColorRef() - spec.csharp: - - uid: OpenTK.Graphics.Wgl.ColorRef - name: ColorRef - href: OpenTK.Graphics.Wgl.ColorRef.html - - name: '[' - - name: ']' - spec.vb: - - uid: OpenTK.Graphics.Wgl.ColorRef - name: ColorRef - href: OpenTK.Graphics.Wgl.ColorRef.html - - name: ( - - name: ) -- uid: OpenTK.Graphics.Wgl.ColorRef - commentId: T:OpenTK.Graphics.Wgl.ColorRef - parent: OpenTK.Graphics.Wgl - href: OpenTK.Graphics.Wgl.ColorRef.html - name: ColorRef - nameWithType: ColorRef - fullName: OpenTK.Graphics.Wgl.ColorRef -- uid: System.String - commentId: T:System.String - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - name: string - nameWithType: string - fullName: string - nameWithType.vb: String - fullName.vb: String - name.vb: String -- uid: OpenTK.Graphics.Wgl.Wgl.MakeCurrent* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.MakeCurrent - href: OpenTK.Graphics.Wgl.Wgl.html#OpenTK_Graphics_Wgl_Wgl_MakeCurrent_System_IntPtr_System_IntPtr_ - name: MakeCurrent - nameWithType: Wgl.MakeCurrent - fullName: OpenTK.Graphics.Wgl.Wgl.MakeCurrent -- uid: OpenTK.Graphics.Wgl.Wgl.RealizeLayerPalette* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.RealizeLayerPalette - href: OpenTK.Graphics.Wgl.Wgl.html#OpenTK_Graphics_Wgl_Wgl_RealizeLayerPalette_System_IntPtr_System_Int32_System_Int32_ - name: RealizeLayerPalette - nameWithType: Wgl.RealizeLayerPalette - fullName: OpenTK.Graphics.Wgl.Wgl.RealizeLayerPalette -- uid: System.ReadOnlySpan{OpenTK.Graphics.Wgl.ColorRef} - commentId: T:System.ReadOnlySpan{OpenTK.Graphics.Wgl.ColorRef} - parent: System - definition: System.ReadOnlySpan`1 - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - name: ReadOnlySpan - nameWithType: ReadOnlySpan - fullName: System.ReadOnlySpan - nameWithType.vb: ReadOnlySpan(Of ColorRef) - fullName.vb: System.ReadOnlySpan(Of OpenTK.Graphics.Wgl.ColorRef) - name.vb: ReadOnlySpan(Of ColorRef) - spec.csharp: - - uid: System.ReadOnlySpan`1 - name: ReadOnlySpan - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - - name: < - - uid: OpenTK.Graphics.Wgl.ColorRef - name: ColorRef - href: OpenTK.Graphics.Wgl.ColorRef.html - - name: '>' - spec.vb: - - uid: System.ReadOnlySpan`1 - name: ReadOnlySpan - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - - name: ( - - name: Of - - name: " " - - uid: OpenTK.Graphics.Wgl.ColorRef - name: ColorRef - href: OpenTK.Graphics.Wgl.ColorRef.html - - name: ) -- uid: System.ReadOnlySpan`1 - commentId: T:System.ReadOnlySpan`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - name: ReadOnlySpan - nameWithType: ReadOnlySpan - fullName: System.ReadOnlySpan - nameWithType.vb: ReadOnlySpan(Of T) - fullName.vb: System.ReadOnlySpan(Of T) - name.vb: ReadOnlySpan(Of T) - spec.csharp: - - uid: System.ReadOnlySpan`1 - name: ReadOnlySpan - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.ReadOnlySpan`1 - name: ReadOnlySpan - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: OpenTK.Graphics.Wgl.Wgl.ShareLists* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.ShareLists - href: OpenTK.Graphics.Wgl.Wgl.html#OpenTK_Graphics_Wgl_Wgl_ShareLists_System_IntPtr_System_IntPtr_ - name: ShareLists - nameWithType: Wgl.ShareLists - fullName: OpenTK.Graphics.Wgl.Wgl.ShareLists -- uid: OpenTK.Graphics.Wgl.Wgl.SwapBuffers* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.SwapBuffers - href: OpenTK.Graphics.Wgl.Wgl.html#OpenTK_Graphics_Wgl_Wgl_SwapBuffers_System_IntPtr_ - name: SwapBuffers - nameWithType: Wgl.SwapBuffers - fullName: OpenTK.Graphics.Wgl.Wgl.SwapBuffers -- uid: OpenTK.Graphics.Wgl.Wgl.SwapLayerBuffers* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.SwapLayerBuffers - href: OpenTK.Graphics.Wgl.Wgl.html#OpenTK_Graphics_Wgl_Wgl_SwapLayerBuffers_System_IntPtr_OpenTK_Graphics_Wgl_LayerPlaneMask_ - name: SwapLayerBuffers - nameWithType: Wgl.SwapLayerBuffers - fullName: OpenTK.Graphics.Wgl.Wgl.SwapLayerBuffers -- uid: OpenTK.Graphics.Wgl.Wgl.UseFontBitmaps* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.UseFontBitmaps - href: OpenTK.Graphics.Wgl.Wgl.html#OpenTK_Graphics_Wgl_Wgl_UseFontBitmaps_System_IntPtr_System_UInt32_System_UInt32_System_UInt32_ - name: UseFontBitmaps - nameWithType: Wgl.UseFontBitmaps - fullName: OpenTK.Graphics.Wgl.Wgl.UseFontBitmaps -- uid: OpenTK.Graphics.Wgl.Wgl.UseFontBitmapsA* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.UseFontBitmapsA - href: OpenTK.Graphics.Wgl.Wgl.html#OpenTK_Graphics_Wgl_Wgl_UseFontBitmapsA_System_IntPtr_System_UInt32_System_UInt32_System_UInt32_ - name: UseFontBitmapsA - nameWithType: Wgl.UseFontBitmapsA - fullName: OpenTK.Graphics.Wgl.Wgl.UseFontBitmapsA -- uid: OpenTK.Graphics.Wgl.Wgl.UseFontBitmapsW* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.UseFontBitmapsW - href: OpenTK.Graphics.Wgl.Wgl.html#OpenTK_Graphics_Wgl_Wgl_UseFontBitmapsW_System_IntPtr_System_UInt32_System_UInt32_System_UInt32_ - name: UseFontBitmapsW - nameWithType: Wgl.UseFontBitmapsW - fullName: OpenTK.Graphics.Wgl.Wgl.UseFontBitmapsW -- uid: OpenTK.Graphics.Wgl.Wgl.UseFontOutlines* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.UseFontOutlines - href: OpenTK.Graphics.Wgl.Wgl.html#OpenTK_Graphics_Wgl_Wgl_UseFontOutlines_System_IntPtr_System_UInt32_System_UInt32_System_UInt32_System_Single_System_Single_OpenTK_Graphics_Wgl_FontFormat_System_IntPtr_ - name: UseFontOutlines - nameWithType: Wgl.UseFontOutlines - fullName: OpenTK.Graphics.Wgl.Wgl.UseFontOutlines -- uid: OpenTK.Graphics.Wgl.Wgl.UseFontOutlinesA* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.UseFontOutlinesA - href: OpenTK.Graphics.Wgl.Wgl.html#OpenTK_Graphics_Wgl_Wgl_UseFontOutlinesA_System_IntPtr_System_UInt32_System_UInt32_System_UInt32_System_Single_System_Single_OpenTK_Graphics_Wgl_FontFormat_System_IntPtr_ - name: UseFontOutlinesA - nameWithType: Wgl.UseFontOutlinesA - fullName: OpenTK.Graphics.Wgl.Wgl.UseFontOutlinesA -- uid: OpenTK.Graphics.Wgl.Wgl.UseFontOutlinesW* - commentId: Overload:OpenTK.Graphics.Wgl.Wgl.UseFontOutlinesW - href: OpenTK.Graphics.Wgl.Wgl.html#OpenTK_Graphics_Wgl_Wgl_UseFontOutlinesW_System_IntPtr_System_UInt32_System_UInt32_System_UInt32_System_Single_System_Single_OpenTK_Graphics_Wgl_FontFormat_System_IntPtr_ - name: UseFontOutlinesW - nameWithType: Wgl.UseFontOutlinesW - fullName: OpenTK.Graphics.Wgl.Wgl.UseFontOutlinesW diff --git a/api/OpenTK.Graphics.Wgl.WglPointers.yml b/api/OpenTK.Graphics.Wgl.WglPointers.yml deleted file mode 100644 index e6a06456..00000000 --- a/api/OpenTK.Graphics.Wgl.WglPointers.yml +++ /dev/null @@ -1,7033 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: OpenTK.Graphics.Wgl.WglPointers - commentId: T:OpenTK.Graphics.Wgl.WglPointers - id: WglPointers - parent: OpenTK.Graphics.Wgl - children: - - OpenTK.Graphics.Wgl.WglPointers._ChoosePixelFormat_fnptr - - OpenTK.Graphics.Wgl.WglPointers._DescribePixelFormat_fnptr - - OpenTK.Graphics.Wgl.WglPointers._GetEnhMetaFilePixelFormat_fnptr - - OpenTK.Graphics.Wgl.WglPointers._GetPixelFormat_fnptr - - OpenTK.Graphics.Wgl.WglPointers._SetPixelFormat_fnptr - - OpenTK.Graphics.Wgl.WglPointers._SwapBuffers_fnptr - - OpenTK.Graphics.Wgl.WglPointers._wglAllocateMemoryNV_fnptr - - OpenTK.Graphics.Wgl.WglPointers._wglAssociateImageBufferEventsI3D_fnptr - - OpenTK.Graphics.Wgl.WglPointers._wglBeginFrameTrackingI3D_fnptr - - OpenTK.Graphics.Wgl.WglPointers._wglBindDisplayColorTableEXT_fnptr - - OpenTK.Graphics.Wgl.WglPointers._wglBindSwapBarrierNV_fnptr - - OpenTK.Graphics.Wgl.WglPointers._wglBindTexImageARB_fnptr - - OpenTK.Graphics.Wgl.WglPointers._wglBindVideoCaptureDeviceNV_fnptr - - OpenTK.Graphics.Wgl.WglPointers._wglBindVideoDeviceNV_fnptr - - OpenTK.Graphics.Wgl.WglPointers._wglBindVideoImageNV_fnptr - - OpenTK.Graphics.Wgl.WglPointers._wglBlitContextFramebufferAMD_fnptr - - OpenTK.Graphics.Wgl.WglPointers._wglChoosePixelFormatARB_fnptr - - OpenTK.Graphics.Wgl.WglPointers._wglChoosePixelFormatEXT_fnptr - - OpenTK.Graphics.Wgl.WglPointers._wglCopyContext_fnptr - - OpenTK.Graphics.Wgl.WglPointers._wglCopyImageSubDataNV_fnptr - - OpenTK.Graphics.Wgl.WglPointers._wglCreateAffinityDCNV_fnptr - - OpenTK.Graphics.Wgl.WglPointers._wglCreateAssociatedContextAMD_fnptr - - OpenTK.Graphics.Wgl.WglPointers._wglCreateAssociatedContextAttribsAMD_fnptr - - OpenTK.Graphics.Wgl.WglPointers._wglCreateBufferRegionARB_fnptr - - OpenTK.Graphics.Wgl.WglPointers._wglCreateContextAttribsARB_fnptr - - OpenTK.Graphics.Wgl.WglPointers._wglCreateContext_fnptr - - OpenTK.Graphics.Wgl.WglPointers._wglCreateDisplayColorTableEXT_fnptr - - OpenTK.Graphics.Wgl.WglPointers._wglCreateImageBufferI3D_fnptr - - OpenTK.Graphics.Wgl.WglPointers._wglCreateLayerContext_fnptr - - OpenTK.Graphics.Wgl.WglPointers._wglCreatePbufferARB_fnptr - - OpenTK.Graphics.Wgl.WglPointers._wglCreatePbufferEXT_fnptr - - OpenTK.Graphics.Wgl.WglPointers._wglDXCloseDeviceNV_fnptr - - OpenTK.Graphics.Wgl.WglPointers._wglDXLockObjectsNV_fnptr - - OpenTK.Graphics.Wgl.WglPointers._wglDXObjectAccessNV_fnptr - - OpenTK.Graphics.Wgl.WglPointers._wglDXOpenDeviceNV_fnptr - - OpenTK.Graphics.Wgl.WglPointers._wglDXRegisterObjectNV_fnptr - - OpenTK.Graphics.Wgl.WglPointers._wglDXSetResourceShareHandleNV_fnptr - - OpenTK.Graphics.Wgl.WglPointers._wglDXUnlockObjectsNV_fnptr - - OpenTK.Graphics.Wgl.WglPointers._wglDXUnregisterObjectNV_fnptr - - OpenTK.Graphics.Wgl.WglPointers._wglDelayBeforeSwapNV_fnptr - - OpenTK.Graphics.Wgl.WglPointers._wglDeleteAssociatedContextAMD_fnptr - - OpenTK.Graphics.Wgl.WglPointers._wglDeleteBufferRegionARB_fnptr - - OpenTK.Graphics.Wgl.WglPointers._wglDeleteContext_fnptr - - OpenTK.Graphics.Wgl.WglPointers._wglDeleteDCNV_fnptr - - OpenTK.Graphics.Wgl.WglPointers._wglDescribeLayerPlane_fnptr - - OpenTK.Graphics.Wgl.WglPointers._wglDestroyDisplayColorTableEXT_fnptr - - OpenTK.Graphics.Wgl.WglPointers._wglDestroyImageBufferI3D_fnptr - - OpenTK.Graphics.Wgl.WglPointers._wglDestroyPbufferARB_fnptr - - OpenTK.Graphics.Wgl.WglPointers._wglDestroyPbufferEXT_fnptr - - OpenTK.Graphics.Wgl.WglPointers._wglDisableFrameLockI3D_fnptr - - OpenTK.Graphics.Wgl.WglPointers._wglDisableGenlockI3D_fnptr - - OpenTK.Graphics.Wgl.WglPointers._wglEnableFrameLockI3D_fnptr - - OpenTK.Graphics.Wgl.WglPointers._wglEnableGenlockI3D_fnptr - - OpenTK.Graphics.Wgl.WglPointers._wglEndFrameTrackingI3D_fnptr - - OpenTK.Graphics.Wgl.WglPointers._wglEnumGpuDevicesNV_fnptr - - OpenTK.Graphics.Wgl.WglPointers._wglEnumGpusFromAffinityDCNV_fnptr - - OpenTK.Graphics.Wgl.WglPointers._wglEnumGpusNV_fnptr - - OpenTK.Graphics.Wgl.WglPointers._wglEnumerateVideoCaptureDevicesNV_fnptr - - OpenTK.Graphics.Wgl.WglPointers._wglEnumerateVideoDevicesNV_fnptr - - OpenTK.Graphics.Wgl.WglPointers._wglFreeMemoryNV_fnptr - - OpenTK.Graphics.Wgl.WglPointers._wglGenlockSampleRateI3D_fnptr - - OpenTK.Graphics.Wgl.WglPointers._wglGenlockSourceDelayI3D_fnptr - - OpenTK.Graphics.Wgl.WglPointers._wglGenlockSourceEdgeI3D_fnptr - - OpenTK.Graphics.Wgl.WglPointers._wglGenlockSourceI3D_fnptr - - OpenTK.Graphics.Wgl.WglPointers._wglGetContextGPUIDAMD_fnptr - - OpenTK.Graphics.Wgl.WglPointers._wglGetCurrentAssociatedContextAMD_fnptr - - OpenTK.Graphics.Wgl.WglPointers._wglGetCurrentContext_fnptr - - OpenTK.Graphics.Wgl.WglPointers._wglGetCurrentDC_fnptr - - OpenTK.Graphics.Wgl.WglPointers._wglGetCurrentReadDCARB_fnptr - - OpenTK.Graphics.Wgl.WglPointers._wglGetCurrentReadDCEXT_fnptr - - OpenTK.Graphics.Wgl.WglPointers._wglGetDigitalVideoParametersI3D_fnptr - - OpenTK.Graphics.Wgl.WglPointers._wglGetExtensionsStringARB_fnptr - - OpenTK.Graphics.Wgl.WglPointers._wglGetExtensionsStringEXT_fnptr - - OpenTK.Graphics.Wgl.WglPointers._wglGetFrameUsageI3D_fnptr - - OpenTK.Graphics.Wgl.WglPointers._wglGetGPUIDsAMD_fnptr - - OpenTK.Graphics.Wgl.WglPointers._wglGetGPUInfoAMD_fnptr - - OpenTK.Graphics.Wgl.WglPointers._wglGetGammaTableI3D_fnptr - - OpenTK.Graphics.Wgl.WglPointers._wglGetGammaTableParametersI3D_fnptr - - OpenTK.Graphics.Wgl.WglPointers._wglGetGenlockSampleRateI3D_fnptr - - OpenTK.Graphics.Wgl.WglPointers._wglGetGenlockSourceDelayI3D_fnptr - - OpenTK.Graphics.Wgl.WglPointers._wglGetGenlockSourceEdgeI3D_fnptr - - OpenTK.Graphics.Wgl.WglPointers._wglGetGenlockSourceI3D_fnptr - - OpenTK.Graphics.Wgl.WglPointers._wglGetLayerPaletteEntries_fnptr - - OpenTK.Graphics.Wgl.WglPointers._wglGetMscRateOML_fnptr - - OpenTK.Graphics.Wgl.WglPointers._wglGetPbufferDCARB_fnptr - - OpenTK.Graphics.Wgl.WglPointers._wglGetPbufferDCEXT_fnptr - - OpenTK.Graphics.Wgl.WglPointers._wglGetPixelFormatAttribfvARB_fnptr - - OpenTK.Graphics.Wgl.WglPointers._wglGetPixelFormatAttribfvEXT_fnptr - - OpenTK.Graphics.Wgl.WglPointers._wglGetPixelFormatAttribivARB_fnptr - - OpenTK.Graphics.Wgl.WglPointers._wglGetPixelFormatAttribivEXT_fnptr - - OpenTK.Graphics.Wgl.WglPointers._wglGetProcAddress_fnptr - - OpenTK.Graphics.Wgl.WglPointers._wglGetSwapIntervalEXT_fnptr - - OpenTK.Graphics.Wgl.WglPointers._wglGetSyncValuesOML_fnptr - - OpenTK.Graphics.Wgl.WglPointers._wglGetVideoDeviceNV_fnptr - - OpenTK.Graphics.Wgl.WglPointers._wglGetVideoInfoNV_fnptr - - OpenTK.Graphics.Wgl.WglPointers._wglIsEnabledFrameLockI3D_fnptr - - OpenTK.Graphics.Wgl.WglPointers._wglIsEnabledGenlockI3D_fnptr - - OpenTK.Graphics.Wgl.WglPointers._wglJoinSwapGroupNV_fnptr - - OpenTK.Graphics.Wgl.WglPointers._wglLoadDisplayColorTableEXT_fnptr - - OpenTK.Graphics.Wgl.WglPointers._wglLockVideoCaptureDeviceNV_fnptr - - OpenTK.Graphics.Wgl.WglPointers._wglMakeAssociatedContextCurrentAMD_fnptr - - OpenTK.Graphics.Wgl.WglPointers._wglMakeContextCurrentARB_fnptr - - OpenTK.Graphics.Wgl.WglPointers._wglMakeContextCurrentEXT_fnptr - - OpenTK.Graphics.Wgl.WglPointers._wglMakeCurrent_fnptr - - OpenTK.Graphics.Wgl.WglPointers._wglQueryCurrentContextNV_fnptr - - OpenTK.Graphics.Wgl.WglPointers._wglQueryFrameCountNV_fnptr - - OpenTK.Graphics.Wgl.WglPointers._wglQueryFrameLockMasterI3D_fnptr - - OpenTK.Graphics.Wgl.WglPointers._wglQueryFrameTrackingI3D_fnptr - - OpenTK.Graphics.Wgl.WglPointers._wglQueryGenlockMaxSourceDelayI3D_fnptr - - OpenTK.Graphics.Wgl.WglPointers._wglQueryMaxSwapGroupsNV_fnptr - - OpenTK.Graphics.Wgl.WglPointers._wglQueryPbufferARB_fnptr - - OpenTK.Graphics.Wgl.WglPointers._wglQueryPbufferEXT_fnptr - - OpenTK.Graphics.Wgl.WglPointers._wglQuerySwapGroupNV_fnptr - - OpenTK.Graphics.Wgl.WglPointers._wglQueryVideoCaptureDeviceNV_fnptr - - OpenTK.Graphics.Wgl.WglPointers._wglRealizeLayerPalette_fnptr - - OpenTK.Graphics.Wgl.WglPointers._wglReleaseImageBufferEventsI3D_fnptr - - OpenTK.Graphics.Wgl.WglPointers._wglReleasePbufferDCARB_fnptr - - OpenTK.Graphics.Wgl.WglPointers._wglReleasePbufferDCEXT_fnptr - - OpenTK.Graphics.Wgl.WglPointers._wglReleaseTexImageARB_fnptr - - OpenTK.Graphics.Wgl.WglPointers._wglReleaseVideoCaptureDeviceNV_fnptr - - OpenTK.Graphics.Wgl.WglPointers._wglReleaseVideoDeviceNV_fnptr - - OpenTK.Graphics.Wgl.WglPointers._wglReleaseVideoImageNV_fnptr - - OpenTK.Graphics.Wgl.WglPointers._wglResetFrameCountNV_fnptr - - OpenTK.Graphics.Wgl.WglPointers._wglRestoreBufferRegionARB_fnptr - - OpenTK.Graphics.Wgl.WglPointers._wglSaveBufferRegionARB_fnptr - - OpenTK.Graphics.Wgl.WglPointers._wglSendPbufferToVideoNV_fnptr - - OpenTK.Graphics.Wgl.WglPointers._wglSetDigitalVideoParametersI3D_fnptr - - OpenTK.Graphics.Wgl.WglPointers._wglSetGammaTableI3D_fnptr - - OpenTK.Graphics.Wgl.WglPointers._wglSetGammaTableParametersI3D_fnptr - - OpenTK.Graphics.Wgl.WglPointers._wglSetLayerPaletteEntries_fnptr - - OpenTK.Graphics.Wgl.WglPointers._wglSetPbufferAttribARB_fnptr - - OpenTK.Graphics.Wgl.WglPointers._wglSetStereoEmitterState3DL_fnptr - - OpenTK.Graphics.Wgl.WglPointers._wglShareLists_fnptr - - OpenTK.Graphics.Wgl.WglPointers._wglSwapBuffersMscOML_fnptr - - OpenTK.Graphics.Wgl.WglPointers._wglSwapIntervalEXT_fnptr - - OpenTK.Graphics.Wgl.WglPointers._wglSwapLayerBuffersMscOML_fnptr - - OpenTK.Graphics.Wgl.WglPointers._wglSwapLayerBuffers_fnptr - - OpenTK.Graphics.Wgl.WglPointers._wglUseFontBitmapsA_fnptr - - OpenTK.Graphics.Wgl.WglPointers._wglUseFontBitmapsW_fnptr - - OpenTK.Graphics.Wgl.WglPointers._wglUseFontBitmaps_fnptr - - OpenTK.Graphics.Wgl.WglPointers._wglUseFontOutlinesA_fnptr - - OpenTK.Graphics.Wgl.WglPointers._wglUseFontOutlinesW_fnptr - - OpenTK.Graphics.Wgl.WglPointers._wglUseFontOutlines_fnptr - - OpenTK.Graphics.Wgl.WglPointers._wglWaitForMscOML_fnptr - - OpenTK.Graphics.Wgl.WglPointers._wglWaitForSbcOML_fnptr - langs: - - csharp - - vb - name: WglPointers - nameWithType: WglPointers - fullName: OpenTK.Graphics.Wgl.WglPointers - type: Class - source: - id: WglPointers - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs - startLine: 8 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: A collection of all function pointers to all OpenGL entry points. - example: [] - syntax: - content: public static class WglPointers - content.vb: Public Module WglPointers - inheritance: - - System.Object - inheritedMembers: - - System.Object.Equals(System.Object) - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetHashCode - - System.Object.GetType - - System.Object.MemberwiseClone - - System.Object.ReferenceEquals(System.Object,System.Object) - - System.Object.ToString -- uid: OpenTK.Graphics.Wgl.WglPointers._ChoosePixelFormat_fnptr - commentId: F:OpenTK.Graphics.Wgl.WglPointers._ChoosePixelFormat_fnptr - id: _ChoosePixelFormat_fnptr - parent: OpenTK.Graphics.Wgl.WglPointers - langs: - - csharp - - vb - name: _ChoosePixelFormat_fnptr - nameWithType: WglPointers._ChoosePixelFormat_fnptr - fullName: OpenTK.Graphics.Wgl.WglPointers._ChoosePixelFormat_fnptr - type: Field - source: - id: _ChoosePixelFormat_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs - startLine: 11 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: '[entry point: ChoosePixelFormat]' - example: [] - syntax: - content: public static delegate* unmanaged _ChoosePixelFormat_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _ChoosePixelFormat_fnptr As ' -- uid: OpenTK.Graphics.Wgl.WglPointers._DescribePixelFormat_fnptr - commentId: F:OpenTK.Graphics.Wgl.WglPointers._DescribePixelFormat_fnptr - id: _DescribePixelFormat_fnptr - parent: OpenTK.Graphics.Wgl.WglPointers - langs: - - csharp - - vb - name: _DescribePixelFormat_fnptr - nameWithType: WglPointers._DescribePixelFormat_fnptr - fullName: OpenTK.Graphics.Wgl.WglPointers._DescribePixelFormat_fnptr - type: Field - source: - id: _DescribePixelFormat_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs - startLine: 20 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: '[entry point: DescribePixelFormat]' - example: [] - syntax: - content: public static delegate* unmanaged _DescribePixelFormat_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _DescribePixelFormat_fnptr As ' -- uid: OpenTK.Graphics.Wgl.WglPointers._GetEnhMetaFilePixelFormat_fnptr - commentId: F:OpenTK.Graphics.Wgl.WglPointers._GetEnhMetaFilePixelFormat_fnptr - id: _GetEnhMetaFilePixelFormat_fnptr - parent: OpenTK.Graphics.Wgl.WglPointers - langs: - - csharp - - vb - name: _GetEnhMetaFilePixelFormat_fnptr - nameWithType: WglPointers._GetEnhMetaFilePixelFormat_fnptr - fullName: OpenTK.Graphics.Wgl.WglPointers._GetEnhMetaFilePixelFormat_fnptr - type: Field - source: - id: _GetEnhMetaFilePixelFormat_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs - startLine: 29 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: '[entry point: GetEnhMetaFilePixelFormat]' - example: [] - syntax: - content: public static delegate* unmanaged _GetEnhMetaFilePixelFormat_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _GetEnhMetaFilePixelFormat_fnptr As ' -- uid: OpenTK.Graphics.Wgl.WglPointers._GetPixelFormat_fnptr - commentId: F:OpenTK.Graphics.Wgl.WglPointers._GetPixelFormat_fnptr - id: _GetPixelFormat_fnptr - parent: OpenTK.Graphics.Wgl.WglPointers - langs: - - csharp - - vb - name: _GetPixelFormat_fnptr - nameWithType: WglPointers._GetPixelFormat_fnptr - fullName: OpenTK.Graphics.Wgl.WglPointers._GetPixelFormat_fnptr - type: Field - source: - id: _GetPixelFormat_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs - startLine: 38 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: '[entry point: GetPixelFormat]' - example: [] - syntax: - content: public static delegate* unmanaged _GetPixelFormat_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _GetPixelFormat_fnptr As ' -- uid: OpenTK.Graphics.Wgl.WglPointers._SetPixelFormat_fnptr - commentId: F:OpenTK.Graphics.Wgl.WglPointers._SetPixelFormat_fnptr - id: _SetPixelFormat_fnptr - parent: OpenTK.Graphics.Wgl.WglPointers - langs: - - csharp - - vb - name: _SetPixelFormat_fnptr - nameWithType: WglPointers._SetPixelFormat_fnptr - fullName: OpenTK.Graphics.Wgl.WglPointers._SetPixelFormat_fnptr - type: Field - source: - id: _SetPixelFormat_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs - startLine: 47 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: '[entry point: SetPixelFormat]' - example: [] - syntax: - content: public static delegate* unmanaged _SetPixelFormat_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _SetPixelFormat_fnptr As ' -- uid: OpenTK.Graphics.Wgl.WglPointers._SwapBuffers_fnptr - commentId: F:OpenTK.Graphics.Wgl.WglPointers._SwapBuffers_fnptr - id: _SwapBuffers_fnptr - parent: OpenTK.Graphics.Wgl.WglPointers - langs: - - csharp - - vb - name: _SwapBuffers_fnptr - nameWithType: WglPointers._SwapBuffers_fnptr - fullName: OpenTK.Graphics.Wgl.WglPointers._SwapBuffers_fnptr - type: Field - source: - id: _SwapBuffers_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs - startLine: 56 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: '[entry point: SwapBuffers]' - example: [] - syntax: - content: public static delegate* unmanaged _SwapBuffers_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _SwapBuffers_fnptr As ' -- uid: OpenTK.Graphics.Wgl.WglPointers._wglAllocateMemoryNV_fnptr - commentId: F:OpenTK.Graphics.Wgl.WglPointers._wglAllocateMemoryNV_fnptr - id: _wglAllocateMemoryNV_fnptr - parent: OpenTK.Graphics.Wgl.WglPointers - langs: - - csharp - - vb - name: _wglAllocateMemoryNV_fnptr - nameWithType: WglPointers._wglAllocateMemoryNV_fnptr - fullName: OpenTK.Graphics.Wgl.WglPointers._wglAllocateMemoryNV_fnptr - type: Field - source: - id: _wglAllocateMemoryNV_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs - startLine: 65 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: '[entry point: wglAllocateMemoryNV]' - example: [] - syntax: - content: public static delegate* unmanaged _wglAllocateMemoryNV_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _wglAllocateMemoryNV_fnptr As ' -- uid: OpenTK.Graphics.Wgl.WglPointers._wglAssociateImageBufferEventsI3D_fnptr - commentId: F:OpenTK.Graphics.Wgl.WglPointers._wglAssociateImageBufferEventsI3D_fnptr - id: _wglAssociateImageBufferEventsI3D_fnptr - parent: OpenTK.Graphics.Wgl.WglPointers - langs: - - csharp - - vb - name: _wglAssociateImageBufferEventsI3D_fnptr - nameWithType: WglPointers._wglAssociateImageBufferEventsI3D_fnptr - fullName: OpenTK.Graphics.Wgl.WglPointers._wglAssociateImageBufferEventsI3D_fnptr - type: Field - source: - id: _wglAssociateImageBufferEventsI3D_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs - startLine: 74 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: '[entry point: wglAssociateImageBufferEventsI3D]' - example: [] - syntax: - content: public static delegate* unmanaged _wglAssociateImageBufferEventsI3D_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _wglAssociateImageBufferEventsI3D_fnptr As ' -- uid: OpenTK.Graphics.Wgl.WglPointers._wglBeginFrameTrackingI3D_fnptr - commentId: F:OpenTK.Graphics.Wgl.WglPointers._wglBeginFrameTrackingI3D_fnptr - id: _wglBeginFrameTrackingI3D_fnptr - parent: OpenTK.Graphics.Wgl.WglPointers - langs: - - csharp - - vb - name: _wglBeginFrameTrackingI3D_fnptr - nameWithType: WglPointers._wglBeginFrameTrackingI3D_fnptr - fullName: OpenTK.Graphics.Wgl.WglPointers._wglBeginFrameTrackingI3D_fnptr - type: Field - source: - id: _wglBeginFrameTrackingI3D_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs - startLine: 83 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: '[entry point: wglBeginFrameTrackingI3D]' - example: [] - syntax: - content: public static delegate* unmanaged _wglBeginFrameTrackingI3D_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _wglBeginFrameTrackingI3D_fnptr As ' -- uid: OpenTK.Graphics.Wgl.WglPointers._wglBindDisplayColorTableEXT_fnptr - commentId: F:OpenTK.Graphics.Wgl.WglPointers._wglBindDisplayColorTableEXT_fnptr - id: _wglBindDisplayColorTableEXT_fnptr - parent: OpenTK.Graphics.Wgl.WglPointers - langs: - - csharp - - vb - name: _wglBindDisplayColorTableEXT_fnptr - nameWithType: WglPointers._wglBindDisplayColorTableEXT_fnptr - fullName: OpenTK.Graphics.Wgl.WglPointers._wglBindDisplayColorTableEXT_fnptr - type: Field - source: - id: _wglBindDisplayColorTableEXT_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs - startLine: 92 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: '[entry point: wglBindDisplayColorTableEXT]' - example: [] - syntax: - content: public static delegate* unmanaged _wglBindDisplayColorTableEXT_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _wglBindDisplayColorTableEXT_fnptr As ' -- uid: OpenTK.Graphics.Wgl.WglPointers._wglBindSwapBarrierNV_fnptr - commentId: F:OpenTK.Graphics.Wgl.WglPointers._wglBindSwapBarrierNV_fnptr - id: _wglBindSwapBarrierNV_fnptr - parent: OpenTK.Graphics.Wgl.WglPointers - langs: - - csharp - - vb - name: _wglBindSwapBarrierNV_fnptr - nameWithType: WglPointers._wglBindSwapBarrierNV_fnptr - fullName: OpenTK.Graphics.Wgl.WglPointers._wglBindSwapBarrierNV_fnptr - type: Field - source: - id: _wglBindSwapBarrierNV_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs - startLine: 101 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: '[entry point: wglBindSwapBarrierNV]' - example: [] - syntax: - content: public static delegate* unmanaged _wglBindSwapBarrierNV_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _wglBindSwapBarrierNV_fnptr As ' -- uid: OpenTK.Graphics.Wgl.WglPointers._wglBindTexImageARB_fnptr - commentId: F:OpenTK.Graphics.Wgl.WglPointers._wglBindTexImageARB_fnptr - id: _wglBindTexImageARB_fnptr - parent: OpenTK.Graphics.Wgl.WglPointers - langs: - - csharp - - vb - name: _wglBindTexImageARB_fnptr - nameWithType: WglPointers._wglBindTexImageARB_fnptr - fullName: OpenTK.Graphics.Wgl.WglPointers._wglBindTexImageARB_fnptr - type: Field - source: - id: _wglBindTexImageARB_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs - startLine: 110 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: '[entry point: wglBindTexImageARB]' - example: [] - syntax: - content: public static delegate* unmanaged _wglBindTexImageARB_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _wglBindTexImageARB_fnptr As ' -- uid: OpenTK.Graphics.Wgl.WglPointers._wglBindVideoCaptureDeviceNV_fnptr - commentId: F:OpenTK.Graphics.Wgl.WglPointers._wglBindVideoCaptureDeviceNV_fnptr - id: _wglBindVideoCaptureDeviceNV_fnptr - parent: OpenTK.Graphics.Wgl.WglPointers - langs: - - csharp - - vb - name: _wglBindVideoCaptureDeviceNV_fnptr - nameWithType: WglPointers._wglBindVideoCaptureDeviceNV_fnptr - fullName: OpenTK.Graphics.Wgl.WglPointers._wglBindVideoCaptureDeviceNV_fnptr - type: Field - source: - id: _wglBindVideoCaptureDeviceNV_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs - startLine: 119 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: '[entry point: wglBindVideoCaptureDeviceNV]' - example: [] - syntax: - content: public static delegate* unmanaged _wglBindVideoCaptureDeviceNV_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _wglBindVideoCaptureDeviceNV_fnptr As ' -- uid: OpenTK.Graphics.Wgl.WglPointers._wglBindVideoDeviceNV_fnptr - commentId: F:OpenTK.Graphics.Wgl.WglPointers._wglBindVideoDeviceNV_fnptr - id: _wglBindVideoDeviceNV_fnptr - parent: OpenTK.Graphics.Wgl.WglPointers - langs: - - csharp - - vb - name: _wglBindVideoDeviceNV_fnptr - nameWithType: WglPointers._wglBindVideoDeviceNV_fnptr - fullName: OpenTK.Graphics.Wgl.WglPointers._wglBindVideoDeviceNV_fnptr - type: Field - source: - id: _wglBindVideoDeviceNV_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs - startLine: 128 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: '[entry point: wglBindVideoDeviceNV]' - example: [] - syntax: - content: public static delegate* unmanaged _wglBindVideoDeviceNV_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _wglBindVideoDeviceNV_fnptr As ' -- uid: OpenTK.Graphics.Wgl.WglPointers._wglBindVideoImageNV_fnptr - commentId: F:OpenTK.Graphics.Wgl.WglPointers._wglBindVideoImageNV_fnptr - id: _wglBindVideoImageNV_fnptr - parent: OpenTK.Graphics.Wgl.WglPointers - langs: - - csharp - - vb - name: _wglBindVideoImageNV_fnptr - nameWithType: WglPointers._wglBindVideoImageNV_fnptr - fullName: OpenTK.Graphics.Wgl.WglPointers._wglBindVideoImageNV_fnptr - type: Field - source: - id: _wglBindVideoImageNV_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs - startLine: 137 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: '[entry point: wglBindVideoImageNV]' - example: [] - syntax: - content: public static delegate* unmanaged _wglBindVideoImageNV_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _wglBindVideoImageNV_fnptr As ' -- uid: OpenTK.Graphics.Wgl.WglPointers._wglBlitContextFramebufferAMD_fnptr - commentId: F:OpenTK.Graphics.Wgl.WglPointers._wglBlitContextFramebufferAMD_fnptr - id: _wglBlitContextFramebufferAMD_fnptr - parent: OpenTK.Graphics.Wgl.WglPointers - langs: - - csharp - - vb - name: _wglBlitContextFramebufferAMD_fnptr - nameWithType: WglPointers._wglBlitContextFramebufferAMD_fnptr - fullName: OpenTK.Graphics.Wgl.WglPointers._wglBlitContextFramebufferAMD_fnptr - type: Field - source: - id: _wglBlitContextFramebufferAMD_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs - startLine: 146 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: '[entry point: wglBlitContextFramebufferAMD]' - example: [] - syntax: - content: public static delegate* unmanaged _wglBlitContextFramebufferAMD_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _wglBlitContextFramebufferAMD_fnptr As ' -- uid: OpenTK.Graphics.Wgl.WglPointers._wglChoosePixelFormatARB_fnptr - commentId: F:OpenTK.Graphics.Wgl.WglPointers._wglChoosePixelFormatARB_fnptr - id: _wglChoosePixelFormatARB_fnptr - parent: OpenTK.Graphics.Wgl.WglPointers - langs: - - csharp - - vb - name: _wglChoosePixelFormatARB_fnptr - nameWithType: WglPointers._wglChoosePixelFormatARB_fnptr - fullName: OpenTK.Graphics.Wgl.WglPointers._wglChoosePixelFormatARB_fnptr - type: Field - source: - id: _wglChoosePixelFormatARB_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs - startLine: 155 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: '[entry point: wglChoosePixelFormatARB]' - example: [] - syntax: - content: public static delegate* unmanaged _wglChoosePixelFormatARB_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _wglChoosePixelFormatARB_fnptr As ' -- uid: OpenTK.Graphics.Wgl.WglPointers._wglChoosePixelFormatEXT_fnptr - commentId: F:OpenTK.Graphics.Wgl.WglPointers._wglChoosePixelFormatEXT_fnptr - id: _wglChoosePixelFormatEXT_fnptr - parent: OpenTK.Graphics.Wgl.WglPointers - langs: - - csharp - - vb - name: _wglChoosePixelFormatEXT_fnptr - nameWithType: WglPointers._wglChoosePixelFormatEXT_fnptr - fullName: OpenTK.Graphics.Wgl.WglPointers._wglChoosePixelFormatEXT_fnptr - type: Field - source: - id: _wglChoosePixelFormatEXT_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs - startLine: 164 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: '[entry point: wglChoosePixelFormatEXT]' - example: [] - syntax: - content: public static delegate* unmanaged _wglChoosePixelFormatEXT_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _wglChoosePixelFormatEXT_fnptr As ' -- uid: OpenTK.Graphics.Wgl.WglPointers._wglCopyContext_fnptr - commentId: F:OpenTK.Graphics.Wgl.WglPointers._wglCopyContext_fnptr - id: _wglCopyContext_fnptr - parent: OpenTK.Graphics.Wgl.WglPointers - langs: - - csharp - - vb - name: _wglCopyContext_fnptr - nameWithType: WglPointers._wglCopyContext_fnptr - fullName: OpenTK.Graphics.Wgl.WglPointers._wglCopyContext_fnptr - type: Field - source: - id: _wglCopyContext_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs - startLine: 173 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: '[entry point: wglCopyContext]' - example: [] - syntax: - content: public static delegate* unmanaged _wglCopyContext_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _wglCopyContext_fnptr As ' -- uid: OpenTK.Graphics.Wgl.WglPointers._wglCopyImageSubDataNV_fnptr - commentId: F:OpenTK.Graphics.Wgl.WglPointers._wglCopyImageSubDataNV_fnptr - id: _wglCopyImageSubDataNV_fnptr - parent: OpenTK.Graphics.Wgl.WglPointers - langs: - - csharp - - vb - name: _wglCopyImageSubDataNV_fnptr - nameWithType: WglPointers._wglCopyImageSubDataNV_fnptr - fullName: OpenTK.Graphics.Wgl.WglPointers._wglCopyImageSubDataNV_fnptr - type: Field - source: - id: _wglCopyImageSubDataNV_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs - startLine: 182 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: '[entry point: wglCopyImageSubDataNV]' - example: [] - syntax: - content: public static delegate* unmanaged _wglCopyImageSubDataNV_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _wglCopyImageSubDataNV_fnptr As ' -- uid: OpenTK.Graphics.Wgl.WglPointers._wglCreateAffinityDCNV_fnptr - commentId: F:OpenTK.Graphics.Wgl.WglPointers._wglCreateAffinityDCNV_fnptr - id: _wglCreateAffinityDCNV_fnptr - parent: OpenTK.Graphics.Wgl.WglPointers - langs: - - csharp - - vb - name: _wglCreateAffinityDCNV_fnptr - nameWithType: WglPointers._wglCreateAffinityDCNV_fnptr - fullName: OpenTK.Graphics.Wgl.WglPointers._wglCreateAffinityDCNV_fnptr - type: Field - source: - id: _wglCreateAffinityDCNV_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs - startLine: 191 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: '[entry point: wglCreateAffinityDCNV]' - example: [] - syntax: - content: public static delegate* unmanaged _wglCreateAffinityDCNV_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _wglCreateAffinityDCNV_fnptr As ' -- uid: OpenTK.Graphics.Wgl.WglPointers._wglCreateAssociatedContextAMD_fnptr - commentId: F:OpenTK.Graphics.Wgl.WglPointers._wglCreateAssociatedContextAMD_fnptr - id: _wglCreateAssociatedContextAMD_fnptr - parent: OpenTK.Graphics.Wgl.WglPointers - langs: - - csharp - - vb - name: _wglCreateAssociatedContextAMD_fnptr - nameWithType: WglPointers._wglCreateAssociatedContextAMD_fnptr - fullName: OpenTK.Graphics.Wgl.WglPointers._wglCreateAssociatedContextAMD_fnptr - type: Field - source: - id: _wglCreateAssociatedContextAMD_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs - startLine: 200 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: '[entry point: wglCreateAssociatedContextAMD]' - example: [] - syntax: - content: public static delegate* unmanaged _wglCreateAssociatedContextAMD_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _wglCreateAssociatedContextAMD_fnptr As ' -- uid: OpenTK.Graphics.Wgl.WglPointers._wglCreateAssociatedContextAttribsAMD_fnptr - commentId: F:OpenTK.Graphics.Wgl.WglPointers._wglCreateAssociatedContextAttribsAMD_fnptr - id: _wglCreateAssociatedContextAttribsAMD_fnptr - parent: OpenTK.Graphics.Wgl.WglPointers - langs: - - csharp - - vb - name: _wglCreateAssociatedContextAttribsAMD_fnptr - nameWithType: WglPointers._wglCreateAssociatedContextAttribsAMD_fnptr - fullName: OpenTK.Graphics.Wgl.WglPointers._wglCreateAssociatedContextAttribsAMD_fnptr - type: Field - source: - id: _wglCreateAssociatedContextAttribsAMD_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs - startLine: 209 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: '[entry point: wglCreateAssociatedContextAttribsAMD]' - example: [] - syntax: - content: public static delegate* unmanaged _wglCreateAssociatedContextAttribsAMD_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _wglCreateAssociatedContextAttribsAMD_fnptr As ' -- uid: OpenTK.Graphics.Wgl.WglPointers._wglCreateBufferRegionARB_fnptr - commentId: F:OpenTK.Graphics.Wgl.WglPointers._wglCreateBufferRegionARB_fnptr - id: _wglCreateBufferRegionARB_fnptr - parent: OpenTK.Graphics.Wgl.WglPointers - langs: - - csharp - - vb - name: _wglCreateBufferRegionARB_fnptr - nameWithType: WglPointers._wglCreateBufferRegionARB_fnptr - fullName: OpenTK.Graphics.Wgl.WglPointers._wglCreateBufferRegionARB_fnptr - type: Field - source: - id: _wglCreateBufferRegionARB_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs - startLine: 218 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: '[entry point: wglCreateBufferRegionARB]' - example: [] - syntax: - content: public static delegate* unmanaged _wglCreateBufferRegionARB_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _wglCreateBufferRegionARB_fnptr As ' -- uid: OpenTK.Graphics.Wgl.WglPointers._wglCreateContext_fnptr - commentId: F:OpenTK.Graphics.Wgl.WglPointers._wglCreateContext_fnptr - id: _wglCreateContext_fnptr - parent: OpenTK.Graphics.Wgl.WglPointers - langs: - - csharp - - vb - name: _wglCreateContext_fnptr - nameWithType: WglPointers._wglCreateContext_fnptr - fullName: OpenTK.Graphics.Wgl.WglPointers._wglCreateContext_fnptr - type: Field - source: - id: _wglCreateContext_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs - startLine: 227 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: '[entry point: wglCreateContext]' - example: [] - syntax: - content: public static delegate* unmanaged _wglCreateContext_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _wglCreateContext_fnptr As ' -- uid: OpenTK.Graphics.Wgl.WglPointers._wglCreateContextAttribsARB_fnptr - commentId: F:OpenTK.Graphics.Wgl.WglPointers._wglCreateContextAttribsARB_fnptr - id: _wglCreateContextAttribsARB_fnptr - parent: OpenTK.Graphics.Wgl.WglPointers - langs: - - csharp - - vb - name: _wglCreateContextAttribsARB_fnptr - nameWithType: WglPointers._wglCreateContextAttribsARB_fnptr - fullName: OpenTK.Graphics.Wgl.WglPointers._wglCreateContextAttribsARB_fnptr - type: Field - source: - id: _wglCreateContextAttribsARB_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs - startLine: 236 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: '[entry point: wglCreateContextAttribsARB]' - example: [] - syntax: - content: public static delegate* unmanaged _wglCreateContextAttribsARB_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _wglCreateContextAttribsARB_fnptr As ' -- uid: OpenTK.Graphics.Wgl.WglPointers._wglCreateDisplayColorTableEXT_fnptr - commentId: F:OpenTK.Graphics.Wgl.WglPointers._wglCreateDisplayColorTableEXT_fnptr - id: _wglCreateDisplayColorTableEXT_fnptr - parent: OpenTK.Graphics.Wgl.WglPointers - langs: - - csharp - - vb - name: _wglCreateDisplayColorTableEXT_fnptr - nameWithType: WglPointers._wglCreateDisplayColorTableEXT_fnptr - fullName: OpenTK.Graphics.Wgl.WglPointers._wglCreateDisplayColorTableEXT_fnptr - type: Field - source: - id: _wglCreateDisplayColorTableEXT_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs - startLine: 245 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: '[entry point: wglCreateDisplayColorTableEXT]' - example: [] - syntax: - content: public static delegate* unmanaged _wglCreateDisplayColorTableEXT_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _wglCreateDisplayColorTableEXT_fnptr As ' -- uid: OpenTK.Graphics.Wgl.WglPointers._wglCreateImageBufferI3D_fnptr - commentId: F:OpenTK.Graphics.Wgl.WglPointers._wglCreateImageBufferI3D_fnptr - id: _wglCreateImageBufferI3D_fnptr - parent: OpenTK.Graphics.Wgl.WglPointers - langs: - - csharp - - vb - name: _wglCreateImageBufferI3D_fnptr - nameWithType: WglPointers._wglCreateImageBufferI3D_fnptr - fullName: OpenTK.Graphics.Wgl.WglPointers._wglCreateImageBufferI3D_fnptr - type: Field - source: - id: _wglCreateImageBufferI3D_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs - startLine: 254 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: '[entry point: wglCreateImageBufferI3D]' - example: [] - syntax: - content: public static delegate* unmanaged _wglCreateImageBufferI3D_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _wglCreateImageBufferI3D_fnptr As ' -- uid: OpenTK.Graphics.Wgl.WglPointers._wglCreateLayerContext_fnptr - commentId: F:OpenTK.Graphics.Wgl.WglPointers._wglCreateLayerContext_fnptr - id: _wglCreateLayerContext_fnptr - parent: OpenTK.Graphics.Wgl.WglPointers - langs: - - csharp - - vb - name: _wglCreateLayerContext_fnptr - nameWithType: WglPointers._wglCreateLayerContext_fnptr - fullName: OpenTK.Graphics.Wgl.WglPointers._wglCreateLayerContext_fnptr - type: Field - source: - id: _wglCreateLayerContext_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs - startLine: 263 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: '[entry point: wglCreateLayerContext]' - example: [] - syntax: - content: public static delegate* unmanaged _wglCreateLayerContext_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _wglCreateLayerContext_fnptr As ' -- uid: OpenTK.Graphics.Wgl.WglPointers._wglCreatePbufferARB_fnptr - commentId: F:OpenTK.Graphics.Wgl.WglPointers._wglCreatePbufferARB_fnptr - id: _wglCreatePbufferARB_fnptr - parent: OpenTK.Graphics.Wgl.WglPointers - langs: - - csharp - - vb - name: _wglCreatePbufferARB_fnptr - nameWithType: WglPointers._wglCreatePbufferARB_fnptr - fullName: OpenTK.Graphics.Wgl.WglPointers._wglCreatePbufferARB_fnptr - type: Field - source: - id: _wglCreatePbufferARB_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs - startLine: 272 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: '[entry point: wglCreatePbufferARB]' - example: [] - syntax: - content: public static delegate* unmanaged _wglCreatePbufferARB_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _wglCreatePbufferARB_fnptr As ' -- uid: OpenTK.Graphics.Wgl.WglPointers._wglCreatePbufferEXT_fnptr - commentId: F:OpenTK.Graphics.Wgl.WglPointers._wglCreatePbufferEXT_fnptr - id: _wglCreatePbufferEXT_fnptr - parent: OpenTK.Graphics.Wgl.WglPointers - langs: - - csharp - - vb - name: _wglCreatePbufferEXT_fnptr - nameWithType: WglPointers._wglCreatePbufferEXT_fnptr - fullName: OpenTK.Graphics.Wgl.WglPointers._wglCreatePbufferEXT_fnptr - type: Field - source: - id: _wglCreatePbufferEXT_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs - startLine: 281 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: '[entry point: wglCreatePbufferEXT]' - example: [] - syntax: - content: public static delegate* unmanaged _wglCreatePbufferEXT_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _wglCreatePbufferEXT_fnptr As ' -- uid: OpenTK.Graphics.Wgl.WglPointers._wglDelayBeforeSwapNV_fnptr - commentId: F:OpenTK.Graphics.Wgl.WglPointers._wglDelayBeforeSwapNV_fnptr - id: _wglDelayBeforeSwapNV_fnptr - parent: OpenTK.Graphics.Wgl.WglPointers - langs: - - csharp - - vb - name: _wglDelayBeforeSwapNV_fnptr - nameWithType: WglPointers._wglDelayBeforeSwapNV_fnptr - fullName: OpenTK.Graphics.Wgl.WglPointers._wglDelayBeforeSwapNV_fnptr - type: Field - source: - id: _wglDelayBeforeSwapNV_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs - startLine: 290 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: '[entry point: wglDelayBeforeSwapNV]' - example: [] - syntax: - content: public static delegate* unmanaged _wglDelayBeforeSwapNV_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _wglDelayBeforeSwapNV_fnptr As ' -- uid: OpenTK.Graphics.Wgl.WglPointers._wglDeleteAssociatedContextAMD_fnptr - commentId: F:OpenTK.Graphics.Wgl.WglPointers._wglDeleteAssociatedContextAMD_fnptr - id: _wglDeleteAssociatedContextAMD_fnptr - parent: OpenTK.Graphics.Wgl.WglPointers - langs: - - csharp - - vb - name: _wglDeleteAssociatedContextAMD_fnptr - nameWithType: WglPointers._wglDeleteAssociatedContextAMD_fnptr - fullName: OpenTK.Graphics.Wgl.WglPointers._wglDeleteAssociatedContextAMD_fnptr - type: Field - source: - id: _wglDeleteAssociatedContextAMD_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs - startLine: 299 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: '[entry point: wglDeleteAssociatedContextAMD]' - example: [] - syntax: - content: public static delegate* unmanaged _wglDeleteAssociatedContextAMD_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _wglDeleteAssociatedContextAMD_fnptr As ' -- uid: OpenTK.Graphics.Wgl.WglPointers._wglDeleteBufferRegionARB_fnptr - commentId: F:OpenTK.Graphics.Wgl.WglPointers._wglDeleteBufferRegionARB_fnptr - id: _wglDeleteBufferRegionARB_fnptr - parent: OpenTK.Graphics.Wgl.WglPointers - langs: - - csharp - - vb - name: _wglDeleteBufferRegionARB_fnptr - nameWithType: WglPointers._wglDeleteBufferRegionARB_fnptr - fullName: OpenTK.Graphics.Wgl.WglPointers._wglDeleteBufferRegionARB_fnptr - type: Field - source: - id: _wglDeleteBufferRegionARB_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs - startLine: 308 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: '[entry point: wglDeleteBufferRegionARB]' - example: [] - syntax: - content: public static delegate* unmanaged _wglDeleteBufferRegionARB_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _wglDeleteBufferRegionARB_fnptr As ' -- uid: OpenTK.Graphics.Wgl.WglPointers._wglDeleteContext_fnptr - commentId: F:OpenTK.Graphics.Wgl.WglPointers._wglDeleteContext_fnptr - id: _wglDeleteContext_fnptr - parent: OpenTK.Graphics.Wgl.WglPointers - langs: - - csharp - - vb - name: _wglDeleteContext_fnptr - nameWithType: WglPointers._wglDeleteContext_fnptr - fullName: OpenTK.Graphics.Wgl.WglPointers._wglDeleteContext_fnptr - type: Field - source: - id: _wglDeleteContext_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs - startLine: 317 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: '[entry point: wglDeleteContext]' - example: [] - syntax: - content: public static delegate* unmanaged _wglDeleteContext_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _wglDeleteContext_fnptr As ' -- uid: OpenTK.Graphics.Wgl.WglPointers._wglDeleteDCNV_fnptr - commentId: F:OpenTK.Graphics.Wgl.WglPointers._wglDeleteDCNV_fnptr - id: _wglDeleteDCNV_fnptr - parent: OpenTK.Graphics.Wgl.WglPointers - langs: - - csharp - - vb - name: _wglDeleteDCNV_fnptr - nameWithType: WglPointers._wglDeleteDCNV_fnptr - fullName: OpenTK.Graphics.Wgl.WglPointers._wglDeleteDCNV_fnptr - type: Field - source: - id: _wglDeleteDCNV_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs - startLine: 326 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: '[entry point: wglDeleteDCNV]' - example: [] - syntax: - content: public static delegate* unmanaged _wglDeleteDCNV_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _wglDeleteDCNV_fnptr As ' -- uid: OpenTK.Graphics.Wgl.WglPointers._wglDescribeLayerPlane_fnptr - commentId: F:OpenTK.Graphics.Wgl.WglPointers._wglDescribeLayerPlane_fnptr - id: _wglDescribeLayerPlane_fnptr - parent: OpenTK.Graphics.Wgl.WglPointers - langs: - - csharp - - vb - name: _wglDescribeLayerPlane_fnptr - nameWithType: WglPointers._wglDescribeLayerPlane_fnptr - fullName: OpenTK.Graphics.Wgl.WglPointers._wglDescribeLayerPlane_fnptr - type: Field - source: - id: _wglDescribeLayerPlane_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs - startLine: 335 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: '[entry point: wglDescribeLayerPlane]' - example: [] - syntax: - content: public static delegate* unmanaged _wglDescribeLayerPlane_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _wglDescribeLayerPlane_fnptr As ' -- uid: OpenTK.Graphics.Wgl.WglPointers._wglDestroyDisplayColorTableEXT_fnptr - commentId: F:OpenTK.Graphics.Wgl.WglPointers._wglDestroyDisplayColorTableEXT_fnptr - id: _wglDestroyDisplayColorTableEXT_fnptr - parent: OpenTK.Graphics.Wgl.WglPointers - langs: - - csharp - - vb - name: _wglDestroyDisplayColorTableEXT_fnptr - nameWithType: WglPointers._wglDestroyDisplayColorTableEXT_fnptr - fullName: OpenTK.Graphics.Wgl.WglPointers._wglDestroyDisplayColorTableEXT_fnptr - type: Field - source: - id: _wglDestroyDisplayColorTableEXT_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs - startLine: 344 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: '[entry point: wglDestroyDisplayColorTableEXT]' - example: [] - syntax: - content: public static delegate* unmanaged _wglDestroyDisplayColorTableEXT_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _wglDestroyDisplayColorTableEXT_fnptr As ' -- uid: OpenTK.Graphics.Wgl.WglPointers._wglDestroyImageBufferI3D_fnptr - commentId: F:OpenTK.Graphics.Wgl.WglPointers._wglDestroyImageBufferI3D_fnptr - id: _wglDestroyImageBufferI3D_fnptr - parent: OpenTK.Graphics.Wgl.WglPointers - langs: - - csharp - - vb - name: _wglDestroyImageBufferI3D_fnptr - nameWithType: WglPointers._wglDestroyImageBufferI3D_fnptr - fullName: OpenTK.Graphics.Wgl.WglPointers._wglDestroyImageBufferI3D_fnptr - type: Field - source: - id: _wglDestroyImageBufferI3D_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs - startLine: 353 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: '[entry point: wglDestroyImageBufferI3D]' - example: [] - syntax: - content: public static delegate* unmanaged _wglDestroyImageBufferI3D_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _wglDestroyImageBufferI3D_fnptr As ' -- uid: OpenTK.Graphics.Wgl.WglPointers._wglDestroyPbufferARB_fnptr - commentId: F:OpenTK.Graphics.Wgl.WglPointers._wglDestroyPbufferARB_fnptr - id: _wglDestroyPbufferARB_fnptr - parent: OpenTK.Graphics.Wgl.WglPointers - langs: - - csharp - - vb - name: _wglDestroyPbufferARB_fnptr - nameWithType: WglPointers._wglDestroyPbufferARB_fnptr - fullName: OpenTK.Graphics.Wgl.WglPointers._wglDestroyPbufferARB_fnptr - type: Field - source: - id: _wglDestroyPbufferARB_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs - startLine: 362 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: '[entry point: wglDestroyPbufferARB]' - example: [] - syntax: - content: public static delegate* unmanaged _wglDestroyPbufferARB_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _wglDestroyPbufferARB_fnptr As ' -- uid: OpenTK.Graphics.Wgl.WglPointers._wglDestroyPbufferEXT_fnptr - commentId: F:OpenTK.Graphics.Wgl.WglPointers._wglDestroyPbufferEXT_fnptr - id: _wglDestroyPbufferEXT_fnptr - parent: OpenTK.Graphics.Wgl.WglPointers - langs: - - csharp - - vb - name: _wglDestroyPbufferEXT_fnptr - nameWithType: WglPointers._wglDestroyPbufferEXT_fnptr - fullName: OpenTK.Graphics.Wgl.WglPointers._wglDestroyPbufferEXT_fnptr - type: Field - source: - id: _wglDestroyPbufferEXT_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs - startLine: 371 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: '[entry point: wglDestroyPbufferEXT]' - example: [] - syntax: - content: public static delegate* unmanaged _wglDestroyPbufferEXT_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _wglDestroyPbufferEXT_fnptr As ' -- uid: OpenTK.Graphics.Wgl.WglPointers._wglDisableFrameLockI3D_fnptr - commentId: F:OpenTK.Graphics.Wgl.WglPointers._wglDisableFrameLockI3D_fnptr - id: _wglDisableFrameLockI3D_fnptr - parent: OpenTK.Graphics.Wgl.WglPointers - langs: - - csharp - - vb - name: _wglDisableFrameLockI3D_fnptr - nameWithType: WglPointers._wglDisableFrameLockI3D_fnptr - fullName: OpenTK.Graphics.Wgl.WglPointers._wglDisableFrameLockI3D_fnptr - type: Field - source: - id: _wglDisableFrameLockI3D_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs - startLine: 380 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: '[entry point: wglDisableFrameLockI3D]' - example: [] - syntax: - content: public static delegate* unmanaged _wglDisableFrameLockI3D_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _wglDisableFrameLockI3D_fnptr As ' -- uid: OpenTK.Graphics.Wgl.WglPointers._wglDisableGenlockI3D_fnptr - commentId: F:OpenTK.Graphics.Wgl.WglPointers._wglDisableGenlockI3D_fnptr - id: _wglDisableGenlockI3D_fnptr - parent: OpenTK.Graphics.Wgl.WglPointers - langs: - - csharp - - vb - name: _wglDisableGenlockI3D_fnptr - nameWithType: WglPointers._wglDisableGenlockI3D_fnptr - fullName: OpenTK.Graphics.Wgl.WglPointers._wglDisableGenlockI3D_fnptr - type: Field - source: - id: _wglDisableGenlockI3D_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs - startLine: 389 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: '[entry point: wglDisableGenlockI3D]' - example: [] - syntax: - content: public static delegate* unmanaged _wglDisableGenlockI3D_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _wglDisableGenlockI3D_fnptr As ' -- uid: OpenTK.Graphics.Wgl.WglPointers._wglDXCloseDeviceNV_fnptr - commentId: F:OpenTK.Graphics.Wgl.WglPointers._wglDXCloseDeviceNV_fnptr - id: _wglDXCloseDeviceNV_fnptr - parent: OpenTK.Graphics.Wgl.WglPointers - langs: - - csharp - - vb - name: _wglDXCloseDeviceNV_fnptr - nameWithType: WglPointers._wglDXCloseDeviceNV_fnptr - fullName: OpenTK.Graphics.Wgl.WglPointers._wglDXCloseDeviceNV_fnptr - type: Field - source: - id: _wglDXCloseDeviceNV_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs - startLine: 398 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: '[entry point: wglDXCloseDeviceNV]' - example: [] - syntax: - content: public static delegate* unmanaged _wglDXCloseDeviceNV_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _wglDXCloseDeviceNV_fnptr As ' -- uid: OpenTK.Graphics.Wgl.WglPointers._wglDXLockObjectsNV_fnptr - commentId: F:OpenTK.Graphics.Wgl.WglPointers._wglDXLockObjectsNV_fnptr - id: _wglDXLockObjectsNV_fnptr - parent: OpenTK.Graphics.Wgl.WglPointers - langs: - - csharp - - vb - name: _wglDXLockObjectsNV_fnptr - nameWithType: WglPointers._wglDXLockObjectsNV_fnptr - fullName: OpenTK.Graphics.Wgl.WglPointers._wglDXLockObjectsNV_fnptr - type: Field - source: - id: _wglDXLockObjectsNV_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs - startLine: 407 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: '[entry point: wglDXLockObjectsNV]' - example: [] - syntax: - content: public static delegate* unmanaged _wglDXLockObjectsNV_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _wglDXLockObjectsNV_fnptr As ' -- uid: OpenTK.Graphics.Wgl.WglPointers._wglDXObjectAccessNV_fnptr - commentId: F:OpenTK.Graphics.Wgl.WglPointers._wglDXObjectAccessNV_fnptr - id: _wglDXObjectAccessNV_fnptr - parent: OpenTK.Graphics.Wgl.WglPointers - langs: - - csharp - - vb - name: _wglDXObjectAccessNV_fnptr - nameWithType: WglPointers._wglDXObjectAccessNV_fnptr - fullName: OpenTK.Graphics.Wgl.WglPointers._wglDXObjectAccessNV_fnptr - type: Field - source: - id: _wglDXObjectAccessNV_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs - startLine: 416 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: '[entry point: wglDXObjectAccessNV]' - example: [] - syntax: - content: public static delegate* unmanaged _wglDXObjectAccessNV_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _wglDXObjectAccessNV_fnptr As ' -- uid: OpenTK.Graphics.Wgl.WglPointers._wglDXOpenDeviceNV_fnptr - commentId: F:OpenTK.Graphics.Wgl.WglPointers._wglDXOpenDeviceNV_fnptr - id: _wglDXOpenDeviceNV_fnptr - parent: OpenTK.Graphics.Wgl.WglPointers - langs: - - csharp - - vb - name: _wglDXOpenDeviceNV_fnptr - nameWithType: WglPointers._wglDXOpenDeviceNV_fnptr - fullName: OpenTK.Graphics.Wgl.WglPointers._wglDXOpenDeviceNV_fnptr - type: Field - source: - id: _wglDXOpenDeviceNV_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs - startLine: 425 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: '[entry point: wglDXOpenDeviceNV]' - example: [] - syntax: - content: public static delegate* unmanaged _wglDXOpenDeviceNV_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _wglDXOpenDeviceNV_fnptr As ' -- uid: OpenTK.Graphics.Wgl.WglPointers._wglDXRegisterObjectNV_fnptr - commentId: F:OpenTK.Graphics.Wgl.WglPointers._wglDXRegisterObjectNV_fnptr - id: _wglDXRegisterObjectNV_fnptr - parent: OpenTK.Graphics.Wgl.WglPointers - langs: - - csharp - - vb - name: _wglDXRegisterObjectNV_fnptr - nameWithType: WglPointers._wglDXRegisterObjectNV_fnptr - fullName: OpenTK.Graphics.Wgl.WglPointers._wglDXRegisterObjectNV_fnptr - type: Field - source: - id: _wglDXRegisterObjectNV_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs - startLine: 434 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: '[entry point: wglDXRegisterObjectNV]' - example: [] - syntax: - content: public static delegate* unmanaged _wglDXRegisterObjectNV_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _wglDXRegisterObjectNV_fnptr As ' -- uid: OpenTK.Graphics.Wgl.WglPointers._wglDXSetResourceShareHandleNV_fnptr - commentId: F:OpenTK.Graphics.Wgl.WglPointers._wglDXSetResourceShareHandleNV_fnptr - id: _wglDXSetResourceShareHandleNV_fnptr - parent: OpenTK.Graphics.Wgl.WglPointers - langs: - - csharp - - vb - name: _wglDXSetResourceShareHandleNV_fnptr - nameWithType: WglPointers._wglDXSetResourceShareHandleNV_fnptr - fullName: OpenTK.Graphics.Wgl.WglPointers._wglDXSetResourceShareHandleNV_fnptr - type: Field - source: - id: _wglDXSetResourceShareHandleNV_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs - startLine: 443 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: '[entry point: wglDXSetResourceShareHandleNV]' - example: [] - syntax: - content: public static delegate* unmanaged _wglDXSetResourceShareHandleNV_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _wglDXSetResourceShareHandleNV_fnptr As ' -- uid: OpenTK.Graphics.Wgl.WglPointers._wglDXUnlockObjectsNV_fnptr - commentId: F:OpenTK.Graphics.Wgl.WglPointers._wglDXUnlockObjectsNV_fnptr - id: _wglDXUnlockObjectsNV_fnptr - parent: OpenTK.Graphics.Wgl.WglPointers - langs: - - csharp - - vb - name: _wglDXUnlockObjectsNV_fnptr - nameWithType: WglPointers._wglDXUnlockObjectsNV_fnptr - fullName: OpenTK.Graphics.Wgl.WglPointers._wglDXUnlockObjectsNV_fnptr - type: Field - source: - id: _wglDXUnlockObjectsNV_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs - startLine: 452 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: '[entry point: wglDXUnlockObjectsNV]' - example: [] - syntax: - content: public static delegate* unmanaged _wglDXUnlockObjectsNV_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _wglDXUnlockObjectsNV_fnptr As ' -- uid: OpenTK.Graphics.Wgl.WglPointers._wglDXUnregisterObjectNV_fnptr - commentId: F:OpenTK.Graphics.Wgl.WglPointers._wglDXUnregisterObjectNV_fnptr - id: _wglDXUnregisterObjectNV_fnptr - parent: OpenTK.Graphics.Wgl.WglPointers - langs: - - csharp - - vb - name: _wglDXUnregisterObjectNV_fnptr - nameWithType: WglPointers._wglDXUnregisterObjectNV_fnptr - fullName: OpenTK.Graphics.Wgl.WglPointers._wglDXUnregisterObjectNV_fnptr - type: Field - source: - id: _wglDXUnregisterObjectNV_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs - startLine: 461 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: '[entry point: wglDXUnregisterObjectNV]' - example: [] - syntax: - content: public static delegate* unmanaged _wglDXUnregisterObjectNV_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _wglDXUnregisterObjectNV_fnptr As ' -- uid: OpenTK.Graphics.Wgl.WglPointers._wglEnableFrameLockI3D_fnptr - commentId: F:OpenTK.Graphics.Wgl.WglPointers._wglEnableFrameLockI3D_fnptr - id: _wglEnableFrameLockI3D_fnptr - parent: OpenTK.Graphics.Wgl.WglPointers - langs: - - csharp - - vb - name: _wglEnableFrameLockI3D_fnptr - nameWithType: WglPointers._wglEnableFrameLockI3D_fnptr - fullName: OpenTK.Graphics.Wgl.WglPointers._wglEnableFrameLockI3D_fnptr - type: Field - source: - id: _wglEnableFrameLockI3D_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs - startLine: 470 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: '[entry point: wglEnableFrameLockI3D]' - example: [] - syntax: - content: public static delegate* unmanaged _wglEnableFrameLockI3D_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _wglEnableFrameLockI3D_fnptr As ' -- uid: OpenTK.Graphics.Wgl.WglPointers._wglEnableGenlockI3D_fnptr - commentId: F:OpenTK.Graphics.Wgl.WglPointers._wglEnableGenlockI3D_fnptr - id: _wglEnableGenlockI3D_fnptr - parent: OpenTK.Graphics.Wgl.WglPointers - langs: - - csharp - - vb - name: _wglEnableGenlockI3D_fnptr - nameWithType: WglPointers._wglEnableGenlockI3D_fnptr - fullName: OpenTK.Graphics.Wgl.WglPointers._wglEnableGenlockI3D_fnptr - type: Field - source: - id: _wglEnableGenlockI3D_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs - startLine: 479 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: '[entry point: wglEnableGenlockI3D]' - example: [] - syntax: - content: public static delegate* unmanaged _wglEnableGenlockI3D_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _wglEnableGenlockI3D_fnptr As ' -- uid: OpenTK.Graphics.Wgl.WglPointers._wglEndFrameTrackingI3D_fnptr - commentId: F:OpenTK.Graphics.Wgl.WglPointers._wglEndFrameTrackingI3D_fnptr - id: _wglEndFrameTrackingI3D_fnptr - parent: OpenTK.Graphics.Wgl.WglPointers - langs: - - csharp - - vb - name: _wglEndFrameTrackingI3D_fnptr - nameWithType: WglPointers._wglEndFrameTrackingI3D_fnptr - fullName: OpenTK.Graphics.Wgl.WglPointers._wglEndFrameTrackingI3D_fnptr - type: Field - source: - id: _wglEndFrameTrackingI3D_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs - startLine: 488 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: '[entry point: wglEndFrameTrackingI3D]' - example: [] - syntax: - content: public static delegate* unmanaged _wglEndFrameTrackingI3D_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _wglEndFrameTrackingI3D_fnptr As ' -- uid: OpenTK.Graphics.Wgl.WglPointers._wglEnumerateVideoCaptureDevicesNV_fnptr - commentId: F:OpenTK.Graphics.Wgl.WglPointers._wglEnumerateVideoCaptureDevicesNV_fnptr - id: _wglEnumerateVideoCaptureDevicesNV_fnptr - parent: OpenTK.Graphics.Wgl.WglPointers - langs: - - csharp - - vb - name: _wglEnumerateVideoCaptureDevicesNV_fnptr - nameWithType: WglPointers._wglEnumerateVideoCaptureDevicesNV_fnptr - fullName: OpenTK.Graphics.Wgl.WglPointers._wglEnumerateVideoCaptureDevicesNV_fnptr - type: Field - source: - id: _wglEnumerateVideoCaptureDevicesNV_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs - startLine: 497 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: '[entry point: wglEnumerateVideoCaptureDevicesNV]' - example: [] - syntax: - content: public static delegate* unmanaged _wglEnumerateVideoCaptureDevicesNV_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _wglEnumerateVideoCaptureDevicesNV_fnptr As ' -- uid: OpenTK.Graphics.Wgl.WglPointers._wglEnumerateVideoDevicesNV_fnptr - commentId: F:OpenTK.Graphics.Wgl.WglPointers._wglEnumerateVideoDevicesNV_fnptr - id: _wglEnumerateVideoDevicesNV_fnptr - parent: OpenTK.Graphics.Wgl.WglPointers - langs: - - csharp - - vb - name: _wglEnumerateVideoDevicesNV_fnptr - nameWithType: WglPointers._wglEnumerateVideoDevicesNV_fnptr - fullName: OpenTK.Graphics.Wgl.WglPointers._wglEnumerateVideoDevicesNV_fnptr - type: Field - source: - id: _wglEnumerateVideoDevicesNV_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs - startLine: 506 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: '[entry point: wglEnumerateVideoDevicesNV]' - example: [] - syntax: - content: public static delegate* unmanaged _wglEnumerateVideoDevicesNV_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _wglEnumerateVideoDevicesNV_fnptr As ' -- uid: OpenTK.Graphics.Wgl.WglPointers._wglEnumGpuDevicesNV_fnptr - commentId: F:OpenTK.Graphics.Wgl.WglPointers._wglEnumGpuDevicesNV_fnptr - id: _wglEnumGpuDevicesNV_fnptr - parent: OpenTK.Graphics.Wgl.WglPointers - langs: - - csharp - - vb - name: _wglEnumGpuDevicesNV_fnptr - nameWithType: WglPointers._wglEnumGpuDevicesNV_fnptr - fullName: OpenTK.Graphics.Wgl.WglPointers._wglEnumGpuDevicesNV_fnptr - type: Field - source: - id: _wglEnumGpuDevicesNV_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs - startLine: 515 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: '[entry point: wglEnumGpuDevicesNV]' - example: [] - syntax: - content: public static delegate* unmanaged _wglEnumGpuDevicesNV_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _wglEnumGpuDevicesNV_fnptr As ' -- uid: OpenTK.Graphics.Wgl.WglPointers._wglEnumGpusFromAffinityDCNV_fnptr - commentId: F:OpenTK.Graphics.Wgl.WglPointers._wglEnumGpusFromAffinityDCNV_fnptr - id: _wglEnumGpusFromAffinityDCNV_fnptr - parent: OpenTK.Graphics.Wgl.WglPointers - langs: - - csharp - - vb - name: _wglEnumGpusFromAffinityDCNV_fnptr - nameWithType: WglPointers._wglEnumGpusFromAffinityDCNV_fnptr - fullName: OpenTK.Graphics.Wgl.WglPointers._wglEnumGpusFromAffinityDCNV_fnptr - type: Field - source: - id: _wglEnumGpusFromAffinityDCNV_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs - startLine: 524 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: '[entry point: wglEnumGpusFromAffinityDCNV]' - example: [] - syntax: - content: public static delegate* unmanaged _wglEnumGpusFromAffinityDCNV_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _wglEnumGpusFromAffinityDCNV_fnptr As ' -- uid: OpenTK.Graphics.Wgl.WglPointers._wglEnumGpusNV_fnptr - commentId: F:OpenTK.Graphics.Wgl.WglPointers._wglEnumGpusNV_fnptr - id: _wglEnumGpusNV_fnptr - parent: OpenTK.Graphics.Wgl.WglPointers - langs: - - csharp - - vb - name: _wglEnumGpusNV_fnptr - nameWithType: WglPointers._wglEnumGpusNV_fnptr - fullName: OpenTK.Graphics.Wgl.WglPointers._wglEnumGpusNV_fnptr - type: Field - source: - id: _wglEnumGpusNV_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs - startLine: 533 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: '[entry point: wglEnumGpusNV]' - example: [] - syntax: - content: public static delegate* unmanaged _wglEnumGpusNV_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _wglEnumGpusNV_fnptr As ' -- uid: OpenTK.Graphics.Wgl.WglPointers._wglFreeMemoryNV_fnptr - commentId: F:OpenTK.Graphics.Wgl.WglPointers._wglFreeMemoryNV_fnptr - id: _wglFreeMemoryNV_fnptr - parent: OpenTK.Graphics.Wgl.WglPointers - langs: - - csharp - - vb - name: _wglFreeMemoryNV_fnptr - nameWithType: WglPointers._wglFreeMemoryNV_fnptr - fullName: OpenTK.Graphics.Wgl.WglPointers._wglFreeMemoryNV_fnptr - type: Field - source: - id: _wglFreeMemoryNV_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs - startLine: 542 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: '[entry point: wglFreeMemoryNV]' - example: [] - syntax: - content: public static delegate* unmanaged _wglFreeMemoryNV_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _wglFreeMemoryNV_fnptr As ' -- uid: OpenTK.Graphics.Wgl.WglPointers._wglGenlockSampleRateI3D_fnptr - commentId: F:OpenTK.Graphics.Wgl.WglPointers._wglGenlockSampleRateI3D_fnptr - id: _wglGenlockSampleRateI3D_fnptr - parent: OpenTK.Graphics.Wgl.WglPointers - langs: - - csharp - - vb - name: _wglGenlockSampleRateI3D_fnptr - nameWithType: WglPointers._wglGenlockSampleRateI3D_fnptr - fullName: OpenTK.Graphics.Wgl.WglPointers._wglGenlockSampleRateI3D_fnptr - type: Field - source: - id: _wglGenlockSampleRateI3D_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs - startLine: 551 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: '[entry point: wglGenlockSampleRateI3D]' - example: [] - syntax: - content: public static delegate* unmanaged _wglGenlockSampleRateI3D_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _wglGenlockSampleRateI3D_fnptr As ' -- uid: OpenTK.Graphics.Wgl.WglPointers._wglGenlockSourceDelayI3D_fnptr - commentId: F:OpenTK.Graphics.Wgl.WglPointers._wglGenlockSourceDelayI3D_fnptr - id: _wglGenlockSourceDelayI3D_fnptr - parent: OpenTK.Graphics.Wgl.WglPointers - langs: - - csharp - - vb - name: _wglGenlockSourceDelayI3D_fnptr - nameWithType: WglPointers._wglGenlockSourceDelayI3D_fnptr - fullName: OpenTK.Graphics.Wgl.WglPointers._wglGenlockSourceDelayI3D_fnptr - type: Field - source: - id: _wglGenlockSourceDelayI3D_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs - startLine: 560 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: '[entry point: wglGenlockSourceDelayI3D]' - example: [] - syntax: - content: public static delegate* unmanaged _wglGenlockSourceDelayI3D_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _wglGenlockSourceDelayI3D_fnptr As ' -- uid: OpenTK.Graphics.Wgl.WglPointers._wglGenlockSourceEdgeI3D_fnptr - commentId: F:OpenTK.Graphics.Wgl.WglPointers._wglGenlockSourceEdgeI3D_fnptr - id: _wglGenlockSourceEdgeI3D_fnptr - parent: OpenTK.Graphics.Wgl.WglPointers - langs: - - csharp - - vb - name: _wglGenlockSourceEdgeI3D_fnptr - nameWithType: WglPointers._wglGenlockSourceEdgeI3D_fnptr - fullName: OpenTK.Graphics.Wgl.WglPointers._wglGenlockSourceEdgeI3D_fnptr - type: Field - source: - id: _wglGenlockSourceEdgeI3D_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs - startLine: 569 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: '[entry point: wglGenlockSourceEdgeI3D]' - example: [] - syntax: - content: public static delegate* unmanaged _wglGenlockSourceEdgeI3D_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _wglGenlockSourceEdgeI3D_fnptr As ' -- uid: OpenTK.Graphics.Wgl.WglPointers._wglGenlockSourceI3D_fnptr - commentId: F:OpenTK.Graphics.Wgl.WglPointers._wglGenlockSourceI3D_fnptr - id: _wglGenlockSourceI3D_fnptr - parent: OpenTK.Graphics.Wgl.WglPointers - langs: - - csharp - - vb - name: _wglGenlockSourceI3D_fnptr - nameWithType: WglPointers._wglGenlockSourceI3D_fnptr - fullName: OpenTK.Graphics.Wgl.WglPointers._wglGenlockSourceI3D_fnptr - type: Field - source: - id: _wglGenlockSourceI3D_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs - startLine: 578 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: '[entry point: wglGenlockSourceI3D]' - example: [] - syntax: - content: public static delegate* unmanaged _wglGenlockSourceI3D_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _wglGenlockSourceI3D_fnptr As ' -- uid: OpenTK.Graphics.Wgl.WglPointers._wglGetContextGPUIDAMD_fnptr - commentId: F:OpenTK.Graphics.Wgl.WglPointers._wglGetContextGPUIDAMD_fnptr - id: _wglGetContextGPUIDAMD_fnptr - parent: OpenTK.Graphics.Wgl.WglPointers - langs: - - csharp - - vb - name: _wglGetContextGPUIDAMD_fnptr - nameWithType: WglPointers._wglGetContextGPUIDAMD_fnptr - fullName: OpenTK.Graphics.Wgl.WglPointers._wglGetContextGPUIDAMD_fnptr - type: Field - source: - id: _wglGetContextGPUIDAMD_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs - startLine: 587 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: '[entry point: wglGetContextGPUIDAMD]' - example: [] - syntax: - content: public static delegate* unmanaged _wglGetContextGPUIDAMD_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _wglGetContextGPUIDAMD_fnptr As ' -- uid: OpenTK.Graphics.Wgl.WglPointers._wglGetCurrentAssociatedContextAMD_fnptr - commentId: F:OpenTK.Graphics.Wgl.WglPointers._wglGetCurrentAssociatedContextAMD_fnptr - id: _wglGetCurrentAssociatedContextAMD_fnptr - parent: OpenTK.Graphics.Wgl.WglPointers - langs: - - csharp - - vb - name: _wglGetCurrentAssociatedContextAMD_fnptr - nameWithType: WglPointers._wglGetCurrentAssociatedContextAMD_fnptr - fullName: OpenTK.Graphics.Wgl.WglPointers._wglGetCurrentAssociatedContextAMD_fnptr - type: Field - source: - id: _wglGetCurrentAssociatedContextAMD_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs - startLine: 596 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: '[entry point: wglGetCurrentAssociatedContextAMD]' - example: [] - syntax: - content: public static delegate* unmanaged _wglGetCurrentAssociatedContextAMD_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _wglGetCurrentAssociatedContextAMD_fnptr As ' -- uid: OpenTK.Graphics.Wgl.WglPointers._wglGetCurrentContext_fnptr - commentId: F:OpenTK.Graphics.Wgl.WglPointers._wglGetCurrentContext_fnptr - id: _wglGetCurrentContext_fnptr - parent: OpenTK.Graphics.Wgl.WglPointers - langs: - - csharp - - vb - name: _wglGetCurrentContext_fnptr - nameWithType: WglPointers._wglGetCurrentContext_fnptr - fullName: OpenTK.Graphics.Wgl.WglPointers._wglGetCurrentContext_fnptr - type: Field - source: - id: _wglGetCurrentContext_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs - startLine: 605 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: '[entry point: wglGetCurrentContext]' - example: [] - syntax: - content: public static delegate* unmanaged _wglGetCurrentContext_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _wglGetCurrentContext_fnptr As ' -- uid: OpenTK.Graphics.Wgl.WglPointers._wglGetCurrentDC_fnptr - commentId: F:OpenTK.Graphics.Wgl.WglPointers._wglGetCurrentDC_fnptr - id: _wglGetCurrentDC_fnptr - parent: OpenTK.Graphics.Wgl.WglPointers - langs: - - csharp - - vb - name: _wglGetCurrentDC_fnptr - nameWithType: WglPointers._wglGetCurrentDC_fnptr - fullName: OpenTK.Graphics.Wgl.WglPointers._wglGetCurrentDC_fnptr - type: Field - source: - id: _wglGetCurrentDC_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs - startLine: 614 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: '[entry point: wglGetCurrentDC]' - example: [] - syntax: - content: public static delegate* unmanaged _wglGetCurrentDC_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _wglGetCurrentDC_fnptr As ' -- uid: OpenTK.Graphics.Wgl.WglPointers._wglGetCurrentReadDCARB_fnptr - commentId: F:OpenTK.Graphics.Wgl.WglPointers._wglGetCurrentReadDCARB_fnptr - id: _wglGetCurrentReadDCARB_fnptr - parent: OpenTK.Graphics.Wgl.WglPointers - langs: - - csharp - - vb - name: _wglGetCurrentReadDCARB_fnptr - nameWithType: WglPointers._wglGetCurrentReadDCARB_fnptr - fullName: OpenTK.Graphics.Wgl.WglPointers._wglGetCurrentReadDCARB_fnptr - type: Field - source: - id: _wglGetCurrentReadDCARB_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs - startLine: 623 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: '[entry point: wglGetCurrentReadDCARB]' - example: [] - syntax: - content: public static delegate* unmanaged _wglGetCurrentReadDCARB_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _wglGetCurrentReadDCARB_fnptr As ' -- uid: OpenTK.Graphics.Wgl.WglPointers._wglGetCurrentReadDCEXT_fnptr - commentId: F:OpenTK.Graphics.Wgl.WglPointers._wglGetCurrentReadDCEXT_fnptr - id: _wglGetCurrentReadDCEXT_fnptr - parent: OpenTK.Graphics.Wgl.WglPointers - langs: - - csharp - - vb - name: _wglGetCurrentReadDCEXT_fnptr - nameWithType: WglPointers._wglGetCurrentReadDCEXT_fnptr - fullName: OpenTK.Graphics.Wgl.WglPointers._wglGetCurrentReadDCEXT_fnptr - type: Field - source: - id: _wglGetCurrentReadDCEXT_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs - startLine: 632 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: '[entry point: wglGetCurrentReadDCEXT]' - example: [] - syntax: - content: public static delegate* unmanaged _wglGetCurrentReadDCEXT_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _wglGetCurrentReadDCEXT_fnptr As ' -- uid: OpenTK.Graphics.Wgl.WglPointers._wglGetDigitalVideoParametersI3D_fnptr - commentId: F:OpenTK.Graphics.Wgl.WglPointers._wglGetDigitalVideoParametersI3D_fnptr - id: _wglGetDigitalVideoParametersI3D_fnptr - parent: OpenTK.Graphics.Wgl.WglPointers - langs: - - csharp - - vb - name: _wglGetDigitalVideoParametersI3D_fnptr - nameWithType: WglPointers._wglGetDigitalVideoParametersI3D_fnptr - fullName: OpenTK.Graphics.Wgl.WglPointers._wglGetDigitalVideoParametersI3D_fnptr - type: Field - source: - id: _wglGetDigitalVideoParametersI3D_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs - startLine: 641 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: '[entry point: wglGetDigitalVideoParametersI3D]' - example: [] - syntax: - content: public static delegate* unmanaged _wglGetDigitalVideoParametersI3D_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _wglGetDigitalVideoParametersI3D_fnptr As ' -- uid: OpenTK.Graphics.Wgl.WglPointers._wglGetExtensionsStringARB_fnptr - commentId: F:OpenTK.Graphics.Wgl.WglPointers._wglGetExtensionsStringARB_fnptr - id: _wglGetExtensionsStringARB_fnptr - parent: OpenTK.Graphics.Wgl.WglPointers - langs: - - csharp - - vb - name: _wglGetExtensionsStringARB_fnptr - nameWithType: WglPointers._wglGetExtensionsStringARB_fnptr - fullName: OpenTK.Graphics.Wgl.WglPointers._wglGetExtensionsStringARB_fnptr - type: Field - source: - id: _wglGetExtensionsStringARB_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs - startLine: 650 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: '[entry point: wglGetExtensionsStringARB]' - example: [] - syntax: - content: public static delegate* unmanaged _wglGetExtensionsStringARB_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _wglGetExtensionsStringARB_fnptr As ' -- uid: OpenTK.Graphics.Wgl.WglPointers._wglGetExtensionsStringEXT_fnptr - commentId: F:OpenTK.Graphics.Wgl.WglPointers._wglGetExtensionsStringEXT_fnptr - id: _wglGetExtensionsStringEXT_fnptr - parent: OpenTK.Graphics.Wgl.WglPointers - langs: - - csharp - - vb - name: _wglGetExtensionsStringEXT_fnptr - nameWithType: WglPointers._wglGetExtensionsStringEXT_fnptr - fullName: OpenTK.Graphics.Wgl.WglPointers._wglGetExtensionsStringEXT_fnptr - type: Field - source: - id: _wglGetExtensionsStringEXT_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs - startLine: 659 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: '[entry point: wglGetExtensionsStringEXT]' - example: [] - syntax: - content: public static delegate* unmanaged _wglGetExtensionsStringEXT_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _wglGetExtensionsStringEXT_fnptr As ' -- uid: OpenTK.Graphics.Wgl.WglPointers._wglGetFrameUsageI3D_fnptr - commentId: F:OpenTK.Graphics.Wgl.WglPointers._wglGetFrameUsageI3D_fnptr - id: _wglGetFrameUsageI3D_fnptr - parent: OpenTK.Graphics.Wgl.WglPointers - langs: - - csharp - - vb - name: _wglGetFrameUsageI3D_fnptr - nameWithType: WglPointers._wglGetFrameUsageI3D_fnptr - fullName: OpenTK.Graphics.Wgl.WglPointers._wglGetFrameUsageI3D_fnptr - type: Field - source: - id: _wglGetFrameUsageI3D_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs - startLine: 668 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: '[entry point: wglGetFrameUsageI3D]' - example: [] - syntax: - content: public static delegate* unmanaged _wglGetFrameUsageI3D_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _wglGetFrameUsageI3D_fnptr As ' -- uid: OpenTK.Graphics.Wgl.WglPointers._wglGetGammaTableI3D_fnptr - commentId: F:OpenTK.Graphics.Wgl.WglPointers._wglGetGammaTableI3D_fnptr - id: _wglGetGammaTableI3D_fnptr - parent: OpenTK.Graphics.Wgl.WglPointers - langs: - - csharp - - vb - name: _wglGetGammaTableI3D_fnptr - nameWithType: WglPointers._wglGetGammaTableI3D_fnptr - fullName: OpenTK.Graphics.Wgl.WglPointers._wglGetGammaTableI3D_fnptr - type: Field - source: - id: _wglGetGammaTableI3D_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs - startLine: 677 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: '[entry point: wglGetGammaTableI3D]' - example: [] - syntax: - content: public static delegate* unmanaged _wglGetGammaTableI3D_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _wglGetGammaTableI3D_fnptr As ' -- uid: OpenTK.Graphics.Wgl.WglPointers._wglGetGammaTableParametersI3D_fnptr - commentId: F:OpenTK.Graphics.Wgl.WglPointers._wglGetGammaTableParametersI3D_fnptr - id: _wglGetGammaTableParametersI3D_fnptr - parent: OpenTK.Graphics.Wgl.WglPointers - langs: - - csharp - - vb - name: _wglGetGammaTableParametersI3D_fnptr - nameWithType: WglPointers._wglGetGammaTableParametersI3D_fnptr - fullName: OpenTK.Graphics.Wgl.WglPointers._wglGetGammaTableParametersI3D_fnptr - type: Field - source: - id: _wglGetGammaTableParametersI3D_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs - startLine: 686 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: '[entry point: wglGetGammaTableParametersI3D]' - example: [] - syntax: - content: public static delegate* unmanaged _wglGetGammaTableParametersI3D_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _wglGetGammaTableParametersI3D_fnptr As ' -- uid: OpenTK.Graphics.Wgl.WglPointers._wglGetGenlockSampleRateI3D_fnptr - commentId: F:OpenTK.Graphics.Wgl.WglPointers._wglGetGenlockSampleRateI3D_fnptr - id: _wglGetGenlockSampleRateI3D_fnptr - parent: OpenTK.Graphics.Wgl.WglPointers - langs: - - csharp - - vb - name: _wglGetGenlockSampleRateI3D_fnptr - nameWithType: WglPointers._wglGetGenlockSampleRateI3D_fnptr - fullName: OpenTK.Graphics.Wgl.WglPointers._wglGetGenlockSampleRateI3D_fnptr - type: Field - source: - id: _wglGetGenlockSampleRateI3D_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs - startLine: 695 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: '[entry point: wglGetGenlockSampleRateI3D]' - example: [] - syntax: - content: public static delegate* unmanaged _wglGetGenlockSampleRateI3D_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _wglGetGenlockSampleRateI3D_fnptr As ' -- uid: OpenTK.Graphics.Wgl.WglPointers._wglGetGenlockSourceDelayI3D_fnptr - commentId: F:OpenTK.Graphics.Wgl.WglPointers._wglGetGenlockSourceDelayI3D_fnptr - id: _wglGetGenlockSourceDelayI3D_fnptr - parent: OpenTK.Graphics.Wgl.WglPointers - langs: - - csharp - - vb - name: _wglGetGenlockSourceDelayI3D_fnptr - nameWithType: WglPointers._wglGetGenlockSourceDelayI3D_fnptr - fullName: OpenTK.Graphics.Wgl.WglPointers._wglGetGenlockSourceDelayI3D_fnptr - type: Field - source: - id: _wglGetGenlockSourceDelayI3D_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs - startLine: 704 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: '[entry point: wglGetGenlockSourceDelayI3D]' - example: [] - syntax: - content: public static delegate* unmanaged _wglGetGenlockSourceDelayI3D_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _wglGetGenlockSourceDelayI3D_fnptr As ' -- uid: OpenTK.Graphics.Wgl.WglPointers._wglGetGenlockSourceEdgeI3D_fnptr - commentId: F:OpenTK.Graphics.Wgl.WglPointers._wglGetGenlockSourceEdgeI3D_fnptr - id: _wglGetGenlockSourceEdgeI3D_fnptr - parent: OpenTK.Graphics.Wgl.WglPointers - langs: - - csharp - - vb - name: _wglGetGenlockSourceEdgeI3D_fnptr - nameWithType: WglPointers._wglGetGenlockSourceEdgeI3D_fnptr - fullName: OpenTK.Graphics.Wgl.WglPointers._wglGetGenlockSourceEdgeI3D_fnptr - type: Field - source: - id: _wglGetGenlockSourceEdgeI3D_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs - startLine: 713 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: '[entry point: wglGetGenlockSourceEdgeI3D]' - example: [] - syntax: - content: public static delegate* unmanaged _wglGetGenlockSourceEdgeI3D_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _wglGetGenlockSourceEdgeI3D_fnptr As ' -- uid: OpenTK.Graphics.Wgl.WglPointers._wglGetGenlockSourceI3D_fnptr - commentId: F:OpenTK.Graphics.Wgl.WglPointers._wglGetGenlockSourceI3D_fnptr - id: _wglGetGenlockSourceI3D_fnptr - parent: OpenTK.Graphics.Wgl.WglPointers - langs: - - csharp - - vb - name: _wglGetGenlockSourceI3D_fnptr - nameWithType: WglPointers._wglGetGenlockSourceI3D_fnptr - fullName: OpenTK.Graphics.Wgl.WglPointers._wglGetGenlockSourceI3D_fnptr - type: Field - source: - id: _wglGetGenlockSourceI3D_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs - startLine: 722 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: '[entry point: wglGetGenlockSourceI3D]' - example: [] - syntax: - content: public static delegate* unmanaged _wglGetGenlockSourceI3D_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _wglGetGenlockSourceI3D_fnptr As ' -- uid: OpenTK.Graphics.Wgl.WglPointers._wglGetGPUIDsAMD_fnptr - commentId: F:OpenTK.Graphics.Wgl.WglPointers._wglGetGPUIDsAMD_fnptr - id: _wglGetGPUIDsAMD_fnptr - parent: OpenTK.Graphics.Wgl.WglPointers - langs: - - csharp - - vb - name: _wglGetGPUIDsAMD_fnptr - nameWithType: WglPointers._wglGetGPUIDsAMD_fnptr - fullName: OpenTK.Graphics.Wgl.WglPointers._wglGetGPUIDsAMD_fnptr - type: Field - source: - id: _wglGetGPUIDsAMD_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs - startLine: 731 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: '[entry point: wglGetGPUIDsAMD]' - example: [] - syntax: - content: public static delegate* unmanaged _wglGetGPUIDsAMD_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _wglGetGPUIDsAMD_fnptr As ' -- uid: OpenTK.Graphics.Wgl.WglPointers._wglGetGPUInfoAMD_fnptr - commentId: F:OpenTK.Graphics.Wgl.WglPointers._wglGetGPUInfoAMD_fnptr - id: _wglGetGPUInfoAMD_fnptr - parent: OpenTK.Graphics.Wgl.WglPointers - langs: - - csharp - - vb - name: _wglGetGPUInfoAMD_fnptr - nameWithType: WglPointers._wglGetGPUInfoAMD_fnptr - fullName: OpenTK.Graphics.Wgl.WglPointers._wglGetGPUInfoAMD_fnptr - type: Field - source: - id: _wglGetGPUInfoAMD_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs - startLine: 740 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: '[entry point: wglGetGPUInfoAMD]' - example: [] - syntax: - content: public static delegate* unmanaged _wglGetGPUInfoAMD_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _wglGetGPUInfoAMD_fnptr As ' -- uid: OpenTK.Graphics.Wgl.WglPointers._wglGetLayerPaletteEntries_fnptr - commentId: F:OpenTK.Graphics.Wgl.WglPointers._wglGetLayerPaletteEntries_fnptr - id: _wglGetLayerPaletteEntries_fnptr - parent: OpenTK.Graphics.Wgl.WglPointers - langs: - - csharp - - vb - name: _wglGetLayerPaletteEntries_fnptr - nameWithType: WglPointers._wglGetLayerPaletteEntries_fnptr - fullName: OpenTK.Graphics.Wgl.WglPointers._wglGetLayerPaletteEntries_fnptr - type: Field - source: - id: _wglGetLayerPaletteEntries_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs - startLine: 749 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: '[entry point: wglGetLayerPaletteEntries]' - example: [] - syntax: - content: public static delegate* unmanaged _wglGetLayerPaletteEntries_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _wglGetLayerPaletteEntries_fnptr As ' -- uid: OpenTK.Graphics.Wgl.WglPointers._wglGetMscRateOML_fnptr - commentId: F:OpenTK.Graphics.Wgl.WglPointers._wglGetMscRateOML_fnptr - id: _wglGetMscRateOML_fnptr - parent: OpenTK.Graphics.Wgl.WglPointers - langs: - - csharp - - vb - name: _wglGetMscRateOML_fnptr - nameWithType: WglPointers._wglGetMscRateOML_fnptr - fullName: OpenTK.Graphics.Wgl.WglPointers._wglGetMscRateOML_fnptr - type: Field - source: - id: _wglGetMscRateOML_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs - startLine: 758 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: '[entry point: wglGetMscRateOML]' - example: [] - syntax: - content: public static delegate* unmanaged _wglGetMscRateOML_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _wglGetMscRateOML_fnptr As ' -- uid: OpenTK.Graphics.Wgl.WglPointers._wglGetPbufferDCARB_fnptr - commentId: F:OpenTK.Graphics.Wgl.WglPointers._wglGetPbufferDCARB_fnptr - id: _wglGetPbufferDCARB_fnptr - parent: OpenTK.Graphics.Wgl.WglPointers - langs: - - csharp - - vb - name: _wglGetPbufferDCARB_fnptr - nameWithType: WglPointers._wglGetPbufferDCARB_fnptr - fullName: OpenTK.Graphics.Wgl.WglPointers._wglGetPbufferDCARB_fnptr - type: Field - source: - id: _wglGetPbufferDCARB_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs - startLine: 767 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: '[entry point: wglGetPbufferDCARB]' - example: [] - syntax: - content: public static delegate* unmanaged _wglGetPbufferDCARB_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _wglGetPbufferDCARB_fnptr As ' -- uid: OpenTK.Graphics.Wgl.WglPointers._wglGetPbufferDCEXT_fnptr - commentId: F:OpenTK.Graphics.Wgl.WglPointers._wglGetPbufferDCEXT_fnptr - id: _wglGetPbufferDCEXT_fnptr - parent: OpenTK.Graphics.Wgl.WglPointers - langs: - - csharp - - vb - name: _wglGetPbufferDCEXT_fnptr - nameWithType: WglPointers._wglGetPbufferDCEXT_fnptr - fullName: OpenTK.Graphics.Wgl.WglPointers._wglGetPbufferDCEXT_fnptr - type: Field - source: - id: _wglGetPbufferDCEXT_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs - startLine: 776 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: '[entry point: wglGetPbufferDCEXT]' - example: [] - syntax: - content: public static delegate* unmanaged _wglGetPbufferDCEXT_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _wglGetPbufferDCEXT_fnptr As ' -- uid: OpenTK.Graphics.Wgl.WglPointers._wglGetPixelFormatAttribfvARB_fnptr - commentId: F:OpenTK.Graphics.Wgl.WglPointers._wglGetPixelFormatAttribfvARB_fnptr - id: _wglGetPixelFormatAttribfvARB_fnptr - parent: OpenTK.Graphics.Wgl.WglPointers - langs: - - csharp - - vb - name: _wglGetPixelFormatAttribfvARB_fnptr - nameWithType: WglPointers._wglGetPixelFormatAttribfvARB_fnptr - fullName: OpenTK.Graphics.Wgl.WglPointers._wglGetPixelFormatAttribfvARB_fnptr - type: Field - source: - id: _wglGetPixelFormatAttribfvARB_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs - startLine: 785 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: '[entry point: wglGetPixelFormatAttribfvARB]' - example: [] - syntax: - content: public static delegate* unmanaged _wglGetPixelFormatAttribfvARB_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _wglGetPixelFormatAttribfvARB_fnptr As ' -- uid: OpenTK.Graphics.Wgl.WglPointers._wglGetPixelFormatAttribfvEXT_fnptr - commentId: F:OpenTK.Graphics.Wgl.WglPointers._wglGetPixelFormatAttribfvEXT_fnptr - id: _wglGetPixelFormatAttribfvEXT_fnptr - parent: OpenTK.Graphics.Wgl.WglPointers - langs: - - csharp - - vb - name: _wglGetPixelFormatAttribfvEXT_fnptr - nameWithType: WglPointers._wglGetPixelFormatAttribfvEXT_fnptr - fullName: OpenTK.Graphics.Wgl.WglPointers._wglGetPixelFormatAttribfvEXT_fnptr - type: Field - source: - id: _wglGetPixelFormatAttribfvEXT_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs - startLine: 794 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: '[entry point: wglGetPixelFormatAttribfvEXT]' - example: [] - syntax: - content: public static delegate* unmanaged _wglGetPixelFormatAttribfvEXT_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _wglGetPixelFormatAttribfvEXT_fnptr As ' -- uid: OpenTK.Graphics.Wgl.WglPointers._wglGetPixelFormatAttribivARB_fnptr - commentId: F:OpenTK.Graphics.Wgl.WglPointers._wglGetPixelFormatAttribivARB_fnptr - id: _wglGetPixelFormatAttribivARB_fnptr - parent: OpenTK.Graphics.Wgl.WglPointers - langs: - - csharp - - vb - name: _wglGetPixelFormatAttribivARB_fnptr - nameWithType: WglPointers._wglGetPixelFormatAttribivARB_fnptr - fullName: OpenTK.Graphics.Wgl.WglPointers._wglGetPixelFormatAttribivARB_fnptr - type: Field - source: - id: _wglGetPixelFormatAttribivARB_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs - startLine: 803 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: '[entry point: wglGetPixelFormatAttribivARB]' - example: [] - syntax: - content: public static delegate* unmanaged _wglGetPixelFormatAttribivARB_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _wglGetPixelFormatAttribivARB_fnptr As ' -- uid: OpenTK.Graphics.Wgl.WglPointers._wglGetPixelFormatAttribivEXT_fnptr - commentId: F:OpenTK.Graphics.Wgl.WglPointers._wglGetPixelFormatAttribivEXT_fnptr - id: _wglGetPixelFormatAttribivEXT_fnptr - parent: OpenTK.Graphics.Wgl.WglPointers - langs: - - csharp - - vb - name: _wglGetPixelFormatAttribivEXT_fnptr - nameWithType: WglPointers._wglGetPixelFormatAttribivEXT_fnptr - fullName: OpenTK.Graphics.Wgl.WglPointers._wglGetPixelFormatAttribivEXT_fnptr - type: Field - source: - id: _wglGetPixelFormatAttribivEXT_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs - startLine: 812 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: '[entry point: wglGetPixelFormatAttribivEXT]' - example: [] - syntax: - content: public static delegate* unmanaged _wglGetPixelFormatAttribivEXT_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _wglGetPixelFormatAttribivEXT_fnptr As ' -- uid: OpenTK.Graphics.Wgl.WglPointers._wglGetProcAddress_fnptr - commentId: F:OpenTK.Graphics.Wgl.WglPointers._wglGetProcAddress_fnptr - id: _wglGetProcAddress_fnptr - parent: OpenTK.Graphics.Wgl.WglPointers - langs: - - csharp - - vb - name: _wglGetProcAddress_fnptr - nameWithType: WglPointers._wglGetProcAddress_fnptr - fullName: OpenTK.Graphics.Wgl.WglPointers._wglGetProcAddress_fnptr - type: Field - source: - id: _wglGetProcAddress_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs - startLine: 821 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: '[entry point: wglGetProcAddress]' - example: [] - syntax: - content: public static delegate* unmanaged _wglGetProcAddress_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _wglGetProcAddress_fnptr As ' -- uid: OpenTK.Graphics.Wgl.WglPointers._wglGetSwapIntervalEXT_fnptr - commentId: F:OpenTK.Graphics.Wgl.WglPointers._wglGetSwapIntervalEXT_fnptr - id: _wglGetSwapIntervalEXT_fnptr - parent: OpenTK.Graphics.Wgl.WglPointers - langs: - - csharp - - vb - name: _wglGetSwapIntervalEXT_fnptr - nameWithType: WglPointers._wglGetSwapIntervalEXT_fnptr - fullName: OpenTK.Graphics.Wgl.WglPointers._wglGetSwapIntervalEXT_fnptr - type: Field - source: - id: _wglGetSwapIntervalEXT_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs - startLine: 830 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: '[entry point: wglGetSwapIntervalEXT]' - example: [] - syntax: - content: public static delegate* unmanaged _wglGetSwapIntervalEXT_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _wglGetSwapIntervalEXT_fnptr As ' -- uid: OpenTK.Graphics.Wgl.WglPointers._wglGetSyncValuesOML_fnptr - commentId: F:OpenTK.Graphics.Wgl.WglPointers._wglGetSyncValuesOML_fnptr - id: _wglGetSyncValuesOML_fnptr - parent: OpenTK.Graphics.Wgl.WglPointers - langs: - - csharp - - vb - name: _wglGetSyncValuesOML_fnptr - nameWithType: WglPointers._wglGetSyncValuesOML_fnptr - fullName: OpenTK.Graphics.Wgl.WglPointers._wglGetSyncValuesOML_fnptr - type: Field - source: - id: _wglGetSyncValuesOML_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs - startLine: 839 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: '[entry point: wglGetSyncValuesOML]' - example: [] - syntax: - content: public static delegate* unmanaged _wglGetSyncValuesOML_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _wglGetSyncValuesOML_fnptr As ' -- uid: OpenTK.Graphics.Wgl.WglPointers._wglGetVideoDeviceNV_fnptr - commentId: F:OpenTK.Graphics.Wgl.WglPointers._wglGetVideoDeviceNV_fnptr - id: _wglGetVideoDeviceNV_fnptr - parent: OpenTK.Graphics.Wgl.WglPointers - langs: - - csharp - - vb - name: _wglGetVideoDeviceNV_fnptr - nameWithType: WglPointers._wglGetVideoDeviceNV_fnptr - fullName: OpenTK.Graphics.Wgl.WglPointers._wglGetVideoDeviceNV_fnptr - type: Field - source: - id: _wglGetVideoDeviceNV_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs - startLine: 848 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: '[entry point: wglGetVideoDeviceNV]' - example: [] - syntax: - content: public static delegate* unmanaged _wglGetVideoDeviceNV_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _wglGetVideoDeviceNV_fnptr As ' -- uid: OpenTK.Graphics.Wgl.WglPointers._wglGetVideoInfoNV_fnptr - commentId: F:OpenTK.Graphics.Wgl.WglPointers._wglGetVideoInfoNV_fnptr - id: _wglGetVideoInfoNV_fnptr - parent: OpenTK.Graphics.Wgl.WglPointers - langs: - - csharp - - vb - name: _wglGetVideoInfoNV_fnptr - nameWithType: WglPointers._wglGetVideoInfoNV_fnptr - fullName: OpenTK.Graphics.Wgl.WglPointers._wglGetVideoInfoNV_fnptr - type: Field - source: - id: _wglGetVideoInfoNV_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs - startLine: 857 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: '[entry point: wglGetVideoInfoNV]' - example: [] - syntax: - content: public static delegate* unmanaged _wglGetVideoInfoNV_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _wglGetVideoInfoNV_fnptr As ' -- uid: OpenTK.Graphics.Wgl.WglPointers._wglIsEnabledFrameLockI3D_fnptr - commentId: F:OpenTK.Graphics.Wgl.WglPointers._wglIsEnabledFrameLockI3D_fnptr - id: _wglIsEnabledFrameLockI3D_fnptr - parent: OpenTK.Graphics.Wgl.WglPointers - langs: - - csharp - - vb - name: _wglIsEnabledFrameLockI3D_fnptr - nameWithType: WglPointers._wglIsEnabledFrameLockI3D_fnptr - fullName: OpenTK.Graphics.Wgl.WglPointers._wglIsEnabledFrameLockI3D_fnptr - type: Field - source: - id: _wglIsEnabledFrameLockI3D_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs - startLine: 866 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: '[entry point: wglIsEnabledFrameLockI3D]' - example: [] - syntax: - content: public static delegate* unmanaged _wglIsEnabledFrameLockI3D_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _wglIsEnabledFrameLockI3D_fnptr As ' -- uid: OpenTK.Graphics.Wgl.WglPointers._wglIsEnabledGenlockI3D_fnptr - commentId: F:OpenTK.Graphics.Wgl.WglPointers._wglIsEnabledGenlockI3D_fnptr - id: _wglIsEnabledGenlockI3D_fnptr - parent: OpenTK.Graphics.Wgl.WglPointers - langs: - - csharp - - vb - name: _wglIsEnabledGenlockI3D_fnptr - nameWithType: WglPointers._wglIsEnabledGenlockI3D_fnptr - fullName: OpenTK.Graphics.Wgl.WglPointers._wglIsEnabledGenlockI3D_fnptr - type: Field - source: - id: _wglIsEnabledGenlockI3D_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs - startLine: 875 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: '[entry point: wglIsEnabledGenlockI3D]' - example: [] - syntax: - content: public static delegate* unmanaged _wglIsEnabledGenlockI3D_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _wglIsEnabledGenlockI3D_fnptr As ' -- uid: OpenTK.Graphics.Wgl.WglPointers._wglJoinSwapGroupNV_fnptr - commentId: F:OpenTK.Graphics.Wgl.WglPointers._wglJoinSwapGroupNV_fnptr - id: _wglJoinSwapGroupNV_fnptr - parent: OpenTK.Graphics.Wgl.WglPointers - langs: - - csharp - - vb - name: _wglJoinSwapGroupNV_fnptr - nameWithType: WglPointers._wglJoinSwapGroupNV_fnptr - fullName: OpenTK.Graphics.Wgl.WglPointers._wglJoinSwapGroupNV_fnptr - type: Field - source: - id: _wglJoinSwapGroupNV_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs - startLine: 884 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: '[entry point: wglJoinSwapGroupNV]' - example: [] - syntax: - content: public static delegate* unmanaged _wglJoinSwapGroupNV_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _wglJoinSwapGroupNV_fnptr As ' -- uid: OpenTK.Graphics.Wgl.WglPointers._wglLoadDisplayColorTableEXT_fnptr - commentId: F:OpenTK.Graphics.Wgl.WglPointers._wglLoadDisplayColorTableEXT_fnptr - id: _wglLoadDisplayColorTableEXT_fnptr - parent: OpenTK.Graphics.Wgl.WglPointers - langs: - - csharp - - vb - name: _wglLoadDisplayColorTableEXT_fnptr - nameWithType: WglPointers._wglLoadDisplayColorTableEXT_fnptr - fullName: OpenTK.Graphics.Wgl.WglPointers._wglLoadDisplayColorTableEXT_fnptr - type: Field - source: - id: _wglLoadDisplayColorTableEXT_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs - startLine: 893 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: '[entry point: wglLoadDisplayColorTableEXT]' - example: [] - syntax: - content: public static delegate* unmanaged _wglLoadDisplayColorTableEXT_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _wglLoadDisplayColorTableEXT_fnptr As ' -- uid: OpenTK.Graphics.Wgl.WglPointers._wglLockVideoCaptureDeviceNV_fnptr - commentId: F:OpenTK.Graphics.Wgl.WglPointers._wglLockVideoCaptureDeviceNV_fnptr - id: _wglLockVideoCaptureDeviceNV_fnptr - parent: OpenTK.Graphics.Wgl.WglPointers - langs: - - csharp - - vb - name: _wglLockVideoCaptureDeviceNV_fnptr - nameWithType: WglPointers._wglLockVideoCaptureDeviceNV_fnptr - fullName: OpenTK.Graphics.Wgl.WglPointers._wglLockVideoCaptureDeviceNV_fnptr - type: Field - source: - id: _wglLockVideoCaptureDeviceNV_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs - startLine: 902 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: '[entry point: wglLockVideoCaptureDeviceNV]' - example: [] - syntax: - content: public static delegate* unmanaged _wglLockVideoCaptureDeviceNV_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _wglLockVideoCaptureDeviceNV_fnptr As ' -- uid: OpenTK.Graphics.Wgl.WglPointers._wglMakeAssociatedContextCurrentAMD_fnptr - commentId: F:OpenTK.Graphics.Wgl.WglPointers._wglMakeAssociatedContextCurrentAMD_fnptr - id: _wglMakeAssociatedContextCurrentAMD_fnptr - parent: OpenTK.Graphics.Wgl.WglPointers - langs: - - csharp - - vb - name: _wglMakeAssociatedContextCurrentAMD_fnptr - nameWithType: WglPointers._wglMakeAssociatedContextCurrentAMD_fnptr - fullName: OpenTK.Graphics.Wgl.WglPointers._wglMakeAssociatedContextCurrentAMD_fnptr - type: Field - source: - id: _wglMakeAssociatedContextCurrentAMD_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs - startLine: 911 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: '[entry point: wglMakeAssociatedContextCurrentAMD]' - example: [] - syntax: - content: public static delegate* unmanaged _wglMakeAssociatedContextCurrentAMD_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _wglMakeAssociatedContextCurrentAMD_fnptr As ' -- uid: OpenTK.Graphics.Wgl.WglPointers._wglMakeContextCurrentARB_fnptr - commentId: F:OpenTK.Graphics.Wgl.WglPointers._wglMakeContextCurrentARB_fnptr - id: _wglMakeContextCurrentARB_fnptr - parent: OpenTK.Graphics.Wgl.WglPointers - langs: - - csharp - - vb - name: _wglMakeContextCurrentARB_fnptr - nameWithType: WglPointers._wglMakeContextCurrentARB_fnptr - fullName: OpenTK.Graphics.Wgl.WglPointers._wglMakeContextCurrentARB_fnptr - type: Field - source: - id: _wglMakeContextCurrentARB_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs - startLine: 920 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: '[entry point: wglMakeContextCurrentARB]' - example: [] - syntax: - content: public static delegate* unmanaged _wglMakeContextCurrentARB_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _wglMakeContextCurrentARB_fnptr As ' -- uid: OpenTK.Graphics.Wgl.WglPointers._wglMakeContextCurrentEXT_fnptr - commentId: F:OpenTK.Graphics.Wgl.WglPointers._wglMakeContextCurrentEXT_fnptr - id: _wglMakeContextCurrentEXT_fnptr - parent: OpenTK.Graphics.Wgl.WglPointers - langs: - - csharp - - vb - name: _wglMakeContextCurrentEXT_fnptr - nameWithType: WglPointers._wglMakeContextCurrentEXT_fnptr - fullName: OpenTK.Graphics.Wgl.WglPointers._wglMakeContextCurrentEXT_fnptr - type: Field - source: - id: _wglMakeContextCurrentEXT_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs - startLine: 929 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: '[entry point: wglMakeContextCurrentEXT]' - example: [] - syntax: - content: public static delegate* unmanaged _wglMakeContextCurrentEXT_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _wglMakeContextCurrentEXT_fnptr As ' -- uid: OpenTK.Graphics.Wgl.WglPointers._wglMakeCurrent_fnptr - commentId: F:OpenTK.Graphics.Wgl.WglPointers._wglMakeCurrent_fnptr - id: _wglMakeCurrent_fnptr - parent: OpenTK.Graphics.Wgl.WglPointers - langs: - - csharp - - vb - name: _wglMakeCurrent_fnptr - nameWithType: WglPointers._wglMakeCurrent_fnptr - fullName: OpenTK.Graphics.Wgl.WglPointers._wglMakeCurrent_fnptr - type: Field - source: - id: _wglMakeCurrent_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs - startLine: 938 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: '[entry point: wglMakeCurrent]' - example: [] - syntax: - content: public static delegate* unmanaged _wglMakeCurrent_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _wglMakeCurrent_fnptr As ' -- uid: OpenTK.Graphics.Wgl.WglPointers._wglQueryCurrentContextNV_fnptr - commentId: F:OpenTK.Graphics.Wgl.WglPointers._wglQueryCurrentContextNV_fnptr - id: _wglQueryCurrentContextNV_fnptr - parent: OpenTK.Graphics.Wgl.WglPointers - langs: - - csharp - - vb - name: _wglQueryCurrentContextNV_fnptr - nameWithType: WglPointers._wglQueryCurrentContextNV_fnptr - fullName: OpenTK.Graphics.Wgl.WglPointers._wglQueryCurrentContextNV_fnptr - type: Field - source: - id: _wglQueryCurrentContextNV_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs - startLine: 947 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: '[entry point: wglQueryCurrentContextNV]' - example: [] - syntax: - content: public static delegate* unmanaged _wglQueryCurrentContextNV_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _wglQueryCurrentContextNV_fnptr As ' -- uid: OpenTK.Graphics.Wgl.WglPointers._wglQueryFrameCountNV_fnptr - commentId: F:OpenTK.Graphics.Wgl.WglPointers._wglQueryFrameCountNV_fnptr - id: _wglQueryFrameCountNV_fnptr - parent: OpenTK.Graphics.Wgl.WglPointers - langs: - - csharp - - vb - name: _wglQueryFrameCountNV_fnptr - nameWithType: WglPointers._wglQueryFrameCountNV_fnptr - fullName: OpenTK.Graphics.Wgl.WglPointers._wglQueryFrameCountNV_fnptr - type: Field - source: - id: _wglQueryFrameCountNV_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs - startLine: 956 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: '[entry point: wglQueryFrameCountNV]' - example: [] - syntax: - content: public static delegate* unmanaged _wglQueryFrameCountNV_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _wglQueryFrameCountNV_fnptr As ' -- uid: OpenTK.Graphics.Wgl.WglPointers._wglQueryFrameLockMasterI3D_fnptr - commentId: F:OpenTK.Graphics.Wgl.WglPointers._wglQueryFrameLockMasterI3D_fnptr - id: _wglQueryFrameLockMasterI3D_fnptr - parent: OpenTK.Graphics.Wgl.WglPointers - langs: - - csharp - - vb - name: _wglQueryFrameLockMasterI3D_fnptr - nameWithType: WglPointers._wglQueryFrameLockMasterI3D_fnptr - fullName: OpenTK.Graphics.Wgl.WglPointers._wglQueryFrameLockMasterI3D_fnptr - type: Field - source: - id: _wglQueryFrameLockMasterI3D_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs - startLine: 965 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: '[entry point: wglQueryFrameLockMasterI3D]' - example: [] - syntax: - content: public static delegate* unmanaged _wglQueryFrameLockMasterI3D_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _wglQueryFrameLockMasterI3D_fnptr As ' -- uid: OpenTK.Graphics.Wgl.WglPointers._wglQueryFrameTrackingI3D_fnptr - commentId: F:OpenTK.Graphics.Wgl.WglPointers._wglQueryFrameTrackingI3D_fnptr - id: _wglQueryFrameTrackingI3D_fnptr - parent: OpenTK.Graphics.Wgl.WglPointers - langs: - - csharp - - vb - name: _wglQueryFrameTrackingI3D_fnptr - nameWithType: WglPointers._wglQueryFrameTrackingI3D_fnptr - fullName: OpenTK.Graphics.Wgl.WglPointers._wglQueryFrameTrackingI3D_fnptr - type: Field - source: - id: _wglQueryFrameTrackingI3D_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs - startLine: 974 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: '[entry point: wglQueryFrameTrackingI3D]' - example: [] - syntax: - content: public static delegate* unmanaged _wglQueryFrameTrackingI3D_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _wglQueryFrameTrackingI3D_fnptr As ' -- uid: OpenTK.Graphics.Wgl.WglPointers._wglQueryGenlockMaxSourceDelayI3D_fnptr - commentId: F:OpenTK.Graphics.Wgl.WglPointers._wglQueryGenlockMaxSourceDelayI3D_fnptr - id: _wglQueryGenlockMaxSourceDelayI3D_fnptr - parent: OpenTK.Graphics.Wgl.WglPointers - langs: - - csharp - - vb - name: _wglQueryGenlockMaxSourceDelayI3D_fnptr - nameWithType: WglPointers._wglQueryGenlockMaxSourceDelayI3D_fnptr - fullName: OpenTK.Graphics.Wgl.WglPointers._wglQueryGenlockMaxSourceDelayI3D_fnptr - type: Field - source: - id: _wglQueryGenlockMaxSourceDelayI3D_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs - startLine: 983 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: '[entry point: wglQueryGenlockMaxSourceDelayI3D]' - example: [] - syntax: - content: public static delegate* unmanaged _wglQueryGenlockMaxSourceDelayI3D_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _wglQueryGenlockMaxSourceDelayI3D_fnptr As ' -- uid: OpenTK.Graphics.Wgl.WglPointers._wglQueryMaxSwapGroupsNV_fnptr - commentId: F:OpenTK.Graphics.Wgl.WglPointers._wglQueryMaxSwapGroupsNV_fnptr - id: _wglQueryMaxSwapGroupsNV_fnptr - parent: OpenTK.Graphics.Wgl.WglPointers - langs: - - csharp - - vb - name: _wglQueryMaxSwapGroupsNV_fnptr - nameWithType: WglPointers._wglQueryMaxSwapGroupsNV_fnptr - fullName: OpenTK.Graphics.Wgl.WglPointers._wglQueryMaxSwapGroupsNV_fnptr - type: Field - source: - id: _wglQueryMaxSwapGroupsNV_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs - startLine: 992 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: '[entry point: wglQueryMaxSwapGroupsNV]' - example: [] - syntax: - content: public static delegate* unmanaged _wglQueryMaxSwapGroupsNV_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _wglQueryMaxSwapGroupsNV_fnptr As ' -- uid: OpenTK.Graphics.Wgl.WglPointers._wglQueryPbufferARB_fnptr - commentId: F:OpenTK.Graphics.Wgl.WglPointers._wglQueryPbufferARB_fnptr - id: _wglQueryPbufferARB_fnptr - parent: OpenTK.Graphics.Wgl.WglPointers - langs: - - csharp - - vb - name: _wglQueryPbufferARB_fnptr - nameWithType: WglPointers._wglQueryPbufferARB_fnptr - fullName: OpenTK.Graphics.Wgl.WglPointers._wglQueryPbufferARB_fnptr - type: Field - source: - id: _wglQueryPbufferARB_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs - startLine: 1001 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: '[entry point: wglQueryPbufferARB]' - example: [] - syntax: - content: public static delegate* unmanaged _wglQueryPbufferARB_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _wglQueryPbufferARB_fnptr As ' -- uid: OpenTK.Graphics.Wgl.WglPointers._wglQueryPbufferEXT_fnptr - commentId: F:OpenTK.Graphics.Wgl.WglPointers._wglQueryPbufferEXT_fnptr - id: _wglQueryPbufferEXT_fnptr - parent: OpenTK.Graphics.Wgl.WglPointers - langs: - - csharp - - vb - name: _wglQueryPbufferEXT_fnptr - nameWithType: WglPointers._wglQueryPbufferEXT_fnptr - fullName: OpenTK.Graphics.Wgl.WglPointers._wglQueryPbufferEXT_fnptr - type: Field - source: - id: _wglQueryPbufferEXT_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs - startLine: 1010 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: '[entry point: wglQueryPbufferEXT]' - example: [] - syntax: - content: public static delegate* unmanaged _wglQueryPbufferEXT_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _wglQueryPbufferEXT_fnptr As ' -- uid: OpenTK.Graphics.Wgl.WglPointers._wglQuerySwapGroupNV_fnptr - commentId: F:OpenTK.Graphics.Wgl.WglPointers._wglQuerySwapGroupNV_fnptr - id: _wglQuerySwapGroupNV_fnptr - parent: OpenTK.Graphics.Wgl.WglPointers - langs: - - csharp - - vb - name: _wglQuerySwapGroupNV_fnptr - nameWithType: WglPointers._wglQuerySwapGroupNV_fnptr - fullName: OpenTK.Graphics.Wgl.WglPointers._wglQuerySwapGroupNV_fnptr - type: Field - source: - id: _wglQuerySwapGroupNV_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs - startLine: 1019 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: '[entry point: wglQuerySwapGroupNV]' - example: [] - syntax: - content: public static delegate* unmanaged _wglQuerySwapGroupNV_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _wglQuerySwapGroupNV_fnptr As ' -- uid: OpenTK.Graphics.Wgl.WglPointers._wglQueryVideoCaptureDeviceNV_fnptr - commentId: F:OpenTK.Graphics.Wgl.WglPointers._wglQueryVideoCaptureDeviceNV_fnptr - id: _wglQueryVideoCaptureDeviceNV_fnptr - parent: OpenTK.Graphics.Wgl.WglPointers - langs: - - csharp - - vb - name: _wglQueryVideoCaptureDeviceNV_fnptr - nameWithType: WglPointers._wglQueryVideoCaptureDeviceNV_fnptr - fullName: OpenTK.Graphics.Wgl.WglPointers._wglQueryVideoCaptureDeviceNV_fnptr - type: Field - source: - id: _wglQueryVideoCaptureDeviceNV_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs - startLine: 1028 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: '[entry point: wglQueryVideoCaptureDeviceNV]' - example: [] - syntax: - content: public static delegate* unmanaged _wglQueryVideoCaptureDeviceNV_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _wglQueryVideoCaptureDeviceNV_fnptr As ' -- uid: OpenTK.Graphics.Wgl.WglPointers._wglRealizeLayerPalette_fnptr - commentId: F:OpenTK.Graphics.Wgl.WglPointers._wglRealizeLayerPalette_fnptr - id: _wglRealizeLayerPalette_fnptr - parent: OpenTK.Graphics.Wgl.WglPointers - langs: - - csharp - - vb - name: _wglRealizeLayerPalette_fnptr - nameWithType: WglPointers._wglRealizeLayerPalette_fnptr - fullName: OpenTK.Graphics.Wgl.WglPointers._wglRealizeLayerPalette_fnptr - type: Field - source: - id: _wglRealizeLayerPalette_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs - startLine: 1037 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: '[entry point: wglRealizeLayerPalette]' - example: [] - syntax: - content: public static delegate* unmanaged _wglRealizeLayerPalette_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _wglRealizeLayerPalette_fnptr As ' -- uid: OpenTK.Graphics.Wgl.WglPointers._wglReleaseImageBufferEventsI3D_fnptr - commentId: F:OpenTK.Graphics.Wgl.WglPointers._wglReleaseImageBufferEventsI3D_fnptr - id: _wglReleaseImageBufferEventsI3D_fnptr - parent: OpenTK.Graphics.Wgl.WglPointers - langs: - - csharp - - vb - name: _wglReleaseImageBufferEventsI3D_fnptr - nameWithType: WglPointers._wglReleaseImageBufferEventsI3D_fnptr - fullName: OpenTK.Graphics.Wgl.WglPointers._wglReleaseImageBufferEventsI3D_fnptr - type: Field - source: - id: _wglReleaseImageBufferEventsI3D_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs - startLine: 1046 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: '[entry point: wglReleaseImageBufferEventsI3D]' - example: [] - syntax: - content: public static delegate* unmanaged _wglReleaseImageBufferEventsI3D_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _wglReleaseImageBufferEventsI3D_fnptr As ' -- uid: OpenTK.Graphics.Wgl.WglPointers._wglReleasePbufferDCARB_fnptr - commentId: F:OpenTK.Graphics.Wgl.WglPointers._wglReleasePbufferDCARB_fnptr - id: _wglReleasePbufferDCARB_fnptr - parent: OpenTK.Graphics.Wgl.WglPointers - langs: - - csharp - - vb - name: _wglReleasePbufferDCARB_fnptr - nameWithType: WglPointers._wglReleasePbufferDCARB_fnptr - fullName: OpenTK.Graphics.Wgl.WglPointers._wglReleasePbufferDCARB_fnptr - type: Field - source: - id: _wglReleasePbufferDCARB_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs - startLine: 1055 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: '[entry point: wglReleasePbufferDCARB]' - example: [] - syntax: - content: public static delegate* unmanaged _wglReleasePbufferDCARB_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _wglReleasePbufferDCARB_fnptr As ' -- uid: OpenTK.Graphics.Wgl.WglPointers._wglReleasePbufferDCEXT_fnptr - commentId: F:OpenTK.Graphics.Wgl.WglPointers._wglReleasePbufferDCEXT_fnptr - id: _wglReleasePbufferDCEXT_fnptr - parent: OpenTK.Graphics.Wgl.WglPointers - langs: - - csharp - - vb - name: _wglReleasePbufferDCEXT_fnptr - nameWithType: WglPointers._wglReleasePbufferDCEXT_fnptr - fullName: OpenTK.Graphics.Wgl.WglPointers._wglReleasePbufferDCEXT_fnptr - type: Field - source: - id: _wglReleasePbufferDCEXT_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs - startLine: 1064 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: '[entry point: wglReleasePbufferDCEXT]' - example: [] - syntax: - content: public static delegate* unmanaged _wglReleasePbufferDCEXT_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _wglReleasePbufferDCEXT_fnptr As ' -- uid: OpenTK.Graphics.Wgl.WglPointers._wglReleaseTexImageARB_fnptr - commentId: F:OpenTK.Graphics.Wgl.WglPointers._wglReleaseTexImageARB_fnptr - id: _wglReleaseTexImageARB_fnptr - parent: OpenTK.Graphics.Wgl.WglPointers - langs: - - csharp - - vb - name: _wglReleaseTexImageARB_fnptr - nameWithType: WglPointers._wglReleaseTexImageARB_fnptr - fullName: OpenTK.Graphics.Wgl.WglPointers._wglReleaseTexImageARB_fnptr - type: Field - source: - id: _wglReleaseTexImageARB_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs - startLine: 1073 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: '[entry point: wglReleaseTexImageARB]' - example: [] - syntax: - content: public static delegate* unmanaged _wglReleaseTexImageARB_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _wglReleaseTexImageARB_fnptr As ' -- uid: OpenTK.Graphics.Wgl.WglPointers._wglReleaseVideoCaptureDeviceNV_fnptr - commentId: F:OpenTK.Graphics.Wgl.WglPointers._wglReleaseVideoCaptureDeviceNV_fnptr - id: _wglReleaseVideoCaptureDeviceNV_fnptr - parent: OpenTK.Graphics.Wgl.WglPointers - langs: - - csharp - - vb - name: _wglReleaseVideoCaptureDeviceNV_fnptr - nameWithType: WglPointers._wglReleaseVideoCaptureDeviceNV_fnptr - fullName: OpenTK.Graphics.Wgl.WglPointers._wglReleaseVideoCaptureDeviceNV_fnptr - type: Field - source: - id: _wglReleaseVideoCaptureDeviceNV_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs - startLine: 1082 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: '[entry point: wglReleaseVideoCaptureDeviceNV]' - example: [] - syntax: - content: public static delegate* unmanaged _wglReleaseVideoCaptureDeviceNV_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _wglReleaseVideoCaptureDeviceNV_fnptr As ' -- uid: OpenTK.Graphics.Wgl.WglPointers._wglReleaseVideoDeviceNV_fnptr - commentId: F:OpenTK.Graphics.Wgl.WglPointers._wglReleaseVideoDeviceNV_fnptr - id: _wglReleaseVideoDeviceNV_fnptr - parent: OpenTK.Graphics.Wgl.WglPointers - langs: - - csharp - - vb - name: _wglReleaseVideoDeviceNV_fnptr - nameWithType: WglPointers._wglReleaseVideoDeviceNV_fnptr - fullName: OpenTK.Graphics.Wgl.WglPointers._wglReleaseVideoDeviceNV_fnptr - type: Field - source: - id: _wglReleaseVideoDeviceNV_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs - startLine: 1091 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: '[entry point: wglReleaseVideoDeviceNV]' - example: [] - syntax: - content: public static delegate* unmanaged _wglReleaseVideoDeviceNV_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _wglReleaseVideoDeviceNV_fnptr As ' -- uid: OpenTK.Graphics.Wgl.WglPointers._wglReleaseVideoImageNV_fnptr - commentId: F:OpenTK.Graphics.Wgl.WglPointers._wglReleaseVideoImageNV_fnptr - id: _wglReleaseVideoImageNV_fnptr - parent: OpenTK.Graphics.Wgl.WglPointers - langs: - - csharp - - vb - name: _wglReleaseVideoImageNV_fnptr - nameWithType: WglPointers._wglReleaseVideoImageNV_fnptr - fullName: OpenTK.Graphics.Wgl.WglPointers._wglReleaseVideoImageNV_fnptr - type: Field - source: - id: _wglReleaseVideoImageNV_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs - startLine: 1100 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: '[entry point: wglReleaseVideoImageNV]' - example: [] - syntax: - content: public static delegate* unmanaged _wglReleaseVideoImageNV_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _wglReleaseVideoImageNV_fnptr As ' -- uid: OpenTK.Graphics.Wgl.WglPointers._wglResetFrameCountNV_fnptr - commentId: F:OpenTK.Graphics.Wgl.WglPointers._wglResetFrameCountNV_fnptr - id: _wglResetFrameCountNV_fnptr - parent: OpenTK.Graphics.Wgl.WglPointers - langs: - - csharp - - vb - name: _wglResetFrameCountNV_fnptr - nameWithType: WglPointers._wglResetFrameCountNV_fnptr - fullName: OpenTK.Graphics.Wgl.WglPointers._wglResetFrameCountNV_fnptr - type: Field - source: - id: _wglResetFrameCountNV_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs - startLine: 1109 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: '[entry point: wglResetFrameCountNV]' - example: [] - syntax: - content: public static delegate* unmanaged _wglResetFrameCountNV_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _wglResetFrameCountNV_fnptr As ' -- uid: OpenTK.Graphics.Wgl.WglPointers._wglRestoreBufferRegionARB_fnptr - commentId: F:OpenTK.Graphics.Wgl.WglPointers._wglRestoreBufferRegionARB_fnptr - id: _wglRestoreBufferRegionARB_fnptr - parent: OpenTK.Graphics.Wgl.WglPointers - langs: - - csharp - - vb - name: _wglRestoreBufferRegionARB_fnptr - nameWithType: WglPointers._wglRestoreBufferRegionARB_fnptr - fullName: OpenTK.Graphics.Wgl.WglPointers._wglRestoreBufferRegionARB_fnptr - type: Field - source: - id: _wglRestoreBufferRegionARB_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs - startLine: 1118 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: '[entry point: wglRestoreBufferRegionARB]' - example: [] - syntax: - content: public static delegate* unmanaged _wglRestoreBufferRegionARB_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _wglRestoreBufferRegionARB_fnptr As ' -- uid: OpenTK.Graphics.Wgl.WglPointers._wglSaveBufferRegionARB_fnptr - commentId: F:OpenTK.Graphics.Wgl.WglPointers._wglSaveBufferRegionARB_fnptr - id: _wglSaveBufferRegionARB_fnptr - parent: OpenTK.Graphics.Wgl.WglPointers - langs: - - csharp - - vb - name: _wglSaveBufferRegionARB_fnptr - nameWithType: WglPointers._wglSaveBufferRegionARB_fnptr - fullName: OpenTK.Graphics.Wgl.WglPointers._wglSaveBufferRegionARB_fnptr - type: Field - source: - id: _wglSaveBufferRegionARB_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs - startLine: 1127 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: '[entry point: wglSaveBufferRegionARB]' - example: [] - syntax: - content: public static delegate* unmanaged _wglSaveBufferRegionARB_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _wglSaveBufferRegionARB_fnptr As ' -- uid: OpenTK.Graphics.Wgl.WglPointers._wglSendPbufferToVideoNV_fnptr - commentId: F:OpenTK.Graphics.Wgl.WglPointers._wglSendPbufferToVideoNV_fnptr - id: _wglSendPbufferToVideoNV_fnptr - parent: OpenTK.Graphics.Wgl.WglPointers - langs: - - csharp - - vb - name: _wglSendPbufferToVideoNV_fnptr - nameWithType: WglPointers._wglSendPbufferToVideoNV_fnptr - fullName: OpenTK.Graphics.Wgl.WglPointers._wglSendPbufferToVideoNV_fnptr - type: Field - source: - id: _wglSendPbufferToVideoNV_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs - startLine: 1136 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: '[entry point: wglSendPbufferToVideoNV]' - example: [] - syntax: - content: public static delegate* unmanaged _wglSendPbufferToVideoNV_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _wglSendPbufferToVideoNV_fnptr As ' -- uid: OpenTK.Graphics.Wgl.WglPointers._wglSetDigitalVideoParametersI3D_fnptr - commentId: F:OpenTK.Graphics.Wgl.WglPointers._wglSetDigitalVideoParametersI3D_fnptr - id: _wglSetDigitalVideoParametersI3D_fnptr - parent: OpenTK.Graphics.Wgl.WglPointers - langs: - - csharp - - vb - name: _wglSetDigitalVideoParametersI3D_fnptr - nameWithType: WglPointers._wglSetDigitalVideoParametersI3D_fnptr - fullName: OpenTK.Graphics.Wgl.WglPointers._wglSetDigitalVideoParametersI3D_fnptr - type: Field - source: - id: _wglSetDigitalVideoParametersI3D_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs - startLine: 1145 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: '[entry point: wglSetDigitalVideoParametersI3D]' - example: [] - syntax: - content: public static delegate* unmanaged _wglSetDigitalVideoParametersI3D_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _wglSetDigitalVideoParametersI3D_fnptr As ' -- uid: OpenTK.Graphics.Wgl.WglPointers._wglSetGammaTableI3D_fnptr - commentId: F:OpenTK.Graphics.Wgl.WglPointers._wglSetGammaTableI3D_fnptr - id: _wglSetGammaTableI3D_fnptr - parent: OpenTK.Graphics.Wgl.WglPointers - langs: - - csharp - - vb - name: _wglSetGammaTableI3D_fnptr - nameWithType: WglPointers._wglSetGammaTableI3D_fnptr - fullName: OpenTK.Graphics.Wgl.WglPointers._wglSetGammaTableI3D_fnptr - type: Field - source: - id: _wglSetGammaTableI3D_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs - startLine: 1154 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: '[entry point: wglSetGammaTableI3D]' - example: [] - syntax: - content: public static delegate* unmanaged _wglSetGammaTableI3D_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _wglSetGammaTableI3D_fnptr As ' -- uid: OpenTK.Graphics.Wgl.WglPointers._wglSetGammaTableParametersI3D_fnptr - commentId: F:OpenTK.Graphics.Wgl.WglPointers._wglSetGammaTableParametersI3D_fnptr - id: _wglSetGammaTableParametersI3D_fnptr - parent: OpenTK.Graphics.Wgl.WglPointers - langs: - - csharp - - vb - name: _wglSetGammaTableParametersI3D_fnptr - nameWithType: WglPointers._wglSetGammaTableParametersI3D_fnptr - fullName: OpenTK.Graphics.Wgl.WglPointers._wglSetGammaTableParametersI3D_fnptr - type: Field - source: - id: _wglSetGammaTableParametersI3D_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs - startLine: 1163 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: '[entry point: wglSetGammaTableParametersI3D]' - example: [] - syntax: - content: public static delegate* unmanaged _wglSetGammaTableParametersI3D_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _wglSetGammaTableParametersI3D_fnptr As ' -- uid: OpenTK.Graphics.Wgl.WglPointers._wglSetLayerPaletteEntries_fnptr - commentId: F:OpenTK.Graphics.Wgl.WglPointers._wglSetLayerPaletteEntries_fnptr - id: _wglSetLayerPaletteEntries_fnptr - parent: OpenTK.Graphics.Wgl.WglPointers - langs: - - csharp - - vb - name: _wglSetLayerPaletteEntries_fnptr - nameWithType: WglPointers._wglSetLayerPaletteEntries_fnptr - fullName: OpenTK.Graphics.Wgl.WglPointers._wglSetLayerPaletteEntries_fnptr - type: Field - source: - id: _wglSetLayerPaletteEntries_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs - startLine: 1172 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: '[entry point: wglSetLayerPaletteEntries]' - example: [] - syntax: - content: public static delegate* unmanaged _wglSetLayerPaletteEntries_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _wglSetLayerPaletteEntries_fnptr As ' -- uid: OpenTK.Graphics.Wgl.WglPointers._wglSetPbufferAttribARB_fnptr - commentId: F:OpenTK.Graphics.Wgl.WglPointers._wglSetPbufferAttribARB_fnptr - id: _wglSetPbufferAttribARB_fnptr - parent: OpenTK.Graphics.Wgl.WglPointers - langs: - - csharp - - vb - name: _wglSetPbufferAttribARB_fnptr - nameWithType: WglPointers._wglSetPbufferAttribARB_fnptr - fullName: OpenTK.Graphics.Wgl.WglPointers._wglSetPbufferAttribARB_fnptr - type: Field - source: - id: _wglSetPbufferAttribARB_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs - startLine: 1181 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: '[entry point: wglSetPbufferAttribARB]' - example: [] - syntax: - content: public static delegate* unmanaged _wglSetPbufferAttribARB_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _wglSetPbufferAttribARB_fnptr As ' -- uid: OpenTK.Graphics.Wgl.WglPointers._wglSetStereoEmitterState3DL_fnptr - commentId: F:OpenTK.Graphics.Wgl.WglPointers._wglSetStereoEmitterState3DL_fnptr - id: _wglSetStereoEmitterState3DL_fnptr - parent: OpenTK.Graphics.Wgl.WglPointers - langs: - - csharp - - vb - name: _wglSetStereoEmitterState3DL_fnptr - nameWithType: WglPointers._wglSetStereoEmitterState3DL_fnptr - fullName: OpenTK.Graphics.Wgl.WglPointers._wglSetStereoEmitterState3DL_fnptr - type: Field - source: - id: _wglSetStereoEmitterState3DL_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs - startLine: 1190 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: '[entry point: wglSetStereoEmitterState3DL]' - example: [] - syntax: - content: public static delegate* unmanaged _wglSetStereoEmitterState3DL_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _wglSetStereoEmitterState3DL_fnptr As ' -- uid: OpenTK.Graphics.Wgl.WglPointers._wglShareLists_fnptr - commentId: F:OpenTK.Graphics.Wgl.WglPointers._wglShareLists_fnptr - id: _wglShareLists_fnptr - parent: OpenTK.Graphics.Wgl.WglPointers - langs: - - csharp - - vb - name: _wglShareLists_fnptr - nameWithType: WglPointers._wglShareLists_fnptr - fullName: OpenTK.Graphics.Wgl.WglPointers._wglShareLists_fnptr - type: Field - source: - id: _wglShareLists_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs - startLine: 1199 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: '[entry point: wglShareLists]' - example: [] - syntax: - content: public static delegate* unmanaged _wglShareLists_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _wglShareLists_fnptr As ' -- uid: OpenTK.Graphics.Wgl.WglPointers._wglSwapBuffersMscOML_fnptr - commentId: F:OpenTK.Graphics.Wgl.WglPointers._wglSwapBuffersMscOML_fnptr - id: _wglSwapBuffersMscOML_fnptr - parent: OpenTK.Graphics.Wgl.WglPointers - langs: - - csharp - - vb - name: _wglSwapBuffersMscOML_fnptr - nameWithType: WglPointers._wglSwapBuffersMscOML_fnptr - fullName: OpenTK.Graphics.Wgl.WglPointers._wglSwapBuffersMscOML_fnptr - type: Field - source: - id: _wglSwapBuffersMscOML_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs - startLine: 1208 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: '[entry point: wglSwapBuffersMscOML]' - example: [] - syntax: - content: public static delegate* unmanaged _wglSwapBuffersMscOML_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _wglSwapBuffersMscOML_fnptr As ' -- uid: OpenTK.Graphics.Wgl.WglPointers._wglSwapIntervalEXT_fnptr - commentId: F:OpenTK.Graphics.Wgl.WglPointers._wglSwapIntervalEXT_fnptr - id: _wglSwapIntervalEXT_fnptr - parent: OpenTK.Graphics.Wgl.WglPointers - langs: - - csharp - - vb - name: _wglSwapIntervalEXT_fnptr - nameWithType: WglPointers._wglSwapIntervalEXT_fnptr - fullName: OpenTK.Graphics.Wgl.WglPointers._wglSwapIntervalEXT_fnptr - type: Field - source: - id: _wglSwapIntervalEXT_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs - startLine: 1217 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: '[entry point: wglSwapIntervalEXT]' - example: [] - syntax: - content: public static delegate* unmanaged _wglSwapIntervalEXT_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _wglSwapIntervalEXT_fnptr As ' -- uid: OpenTK.Graphics.Wgl.WglPointers._wglSwapLayerBuffers_fnptr - commentId: F:OpenTK.Graphics.Wgl.WglPointers._wglSwapLayerBuffers_fnptr - id: _wglSwapLayerBuffers_fnptr - parent: OpenTK.Graphics.Wgl.WglPointers - langs: - - csharp - - vb - name: _wglSwapLayerBuffers_fnptr - nameWithType: WglPointers._wglSwapLayerBuffers_fnptr - fullName: OpenTK.Graphics.Wgl.WglPointers._wglSwapLayerBuffers_fnptr - type: Field - source: - id: _wglSwapLayerBuffers_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs - startLine: 1226 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: '[entry point: wglSwapLayerBuffers]' - example: [] - syntax: - content: public static delegate* unmanaged _wglSwapLayerBuffers_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _wglSwapLayerBuffers_fnptr As ' -- uid: OpenTK.Graphics.Wgl.WglPointers._wglSwapLayerBuffersMscOML_fnptr - commentId: F:OpenTK.Graphics.Wgl.WglPointers._wglSwapLayerBuffersMscOML_fnptr - id: _wglSwapLayerBuffersMscOML_fnptr - parent: OpenTK.Graphics.Wgl.WglPointers - langs: - - csharp - - vb - name: _wglSwapLayerBuffersMscOML_fnptr - nameWithType: WglPointers._wglSwapLayerBuffersMscOML_fnptr - fullName: OpenTK.Graphics.Wgl.WglPointers._wglSwapLayerBuffersMscOML_fnptr - type: Field - source: - id: _wglSwapLayerBuffersMscOML_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs - startLine: 1235 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: '[entry point: wglSwapLayerBuffersMscOML]' - example: [] - syntax: - content: public static delegate* unmanaged _wglSwapLayerBuffersMscOML_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _wglSwapLayerBuffersMscOML_fnptr As ' -- uid: OpenTK.Graphics.Wgl.WglPointers._wglUseFontBitmaps_fnptr - commentId: F:OpenTK.Graphics.Wgl.WglPointers._wglUseFontBitmaps_fnptr - id: _wglUseFontBitmaps_fnptr - parent: OpenTK.Graphics.Wgl.WglPointers - langs: - - csharp - - vb - name: _wglUseFontBitmaps_fnptr - nameWithType: WglPointers._wglUseFontBitmaps_fnptr - fullName: OpenTK.Graphics.Wgl.WglPointers._wglUseFontBitmaps_fnptr - type: Field - source: - id: _wglUseFontBitmaps_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs - startLine: 1244 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: '[entry point: wglUseFontBitmaps]' - example: [] - syntax: - content: public static delegate* unmanaged _wglUseFontBitmaps_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _wglUseFontBitmaps_fnptr As ' -- uid: OpenTK.Graphics.Wgl.WglPointers._wglUseFontBitmapsA_fnptr - commentId: F:OpenTK.Graphics.Wgl.WglPointers._wglUseFontBitmapsA_fnptr - id: _wglUseFontBitmapsA_fnptr - parent: OpenTK.Graphics.Wgl.WglPointers - langs: - - csharp - - vb - name: _wglUseFontBitmapsA_fnptr - nameWithType: WglPointers._wglUseFontBitmapsA_fnptr - fullName: OpenTK.Graphics.Wgl.WglPointers._wglUseFontBitmapsA_fnptr - type: Field - source: - id: _wglUseFontBitmapsA_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs - startLine: 1253 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: '[entry point: wglUseFontBitmapsA]' - example: [] - syntax: - content: public static delegate* unmanaged _wglUseFontBitmapsA_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _wglUseFontBitmapsA_fnptr As ' -- uid: OpenTK.Graphics.Wgl.WglPointers._wglUseFontBitmapsW_fnptr - commentId: F:OpenTK.Graphics.Wgl.WglPointers._wglUseFontBitmapsW_fnptr - id: _wglUseFontBitmapsW_fnptr - parent: OpenTK.Graphics.Wgl.WglPointers - langs: - - csharp - - vb - name: _wglUseFontBitmapsW_fnptr - nameWithType: WglPointers._wglUseFontBitmapsW_fnptr - fullName: OpenTK.Graphics.Wgl.WglPointers._wglUseFontBitmapsW_fnptr - type: Field - source: - id: _wglUseFontBitmapsW_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs - startLine: 1262 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: '[entry point: wglUseFontBitmapsW]' - example: [] - syntax: - content: public static delegate* unmanaged _wglUseFontBitmapsW_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _wglUseFontBitmapsW_fnptr As ' -- uid: OpenTK.Graphics.Wgl.WglPointers._wglUseFontOutlines_fnptr - commentId: F:OpenTK.Graphics.Wgl.WglPointers._wglUseFontOutlines_fnptr - id: _wglUseFontOutlines_fnptr - parent: OpenTK.Graphics.Wgl.WglPointers - langs: - - csharp - - vb - name: _wglUseFontOutlines_fnptr - nameWithType: WglPointers._wglUseFontOutlines_fnptr - fullName: OpenTK.Graphics.Wgl.WglPointers._wglUseFontOutlines_fnptr - type: Field - source: - id: _wglUseFontOutlines_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs - startLine: 1271 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: '[entry point: wglUseFontOutlines]' - example: [] - syntax: - content: public static delegate* unmanaged _wglUseFontOutlines_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _wglUseFontOutlines_fnptr As ' -- uid: OpenTK.Graphics.Wgl.WglPointers._wglUseFontOutlinesA_fnptr - commentId: F:OpenTK.Graphics.Wgl.WglPointers._wglUseFontOutlinesA_fnptr - id: _wglUseFontOutlinesA_fnptr - parent: OpenTK.Graphics.Wgl.WglPointers - langs: - - csharp - - vb - name: _wglUseFontOutlinesA_fnptr - nameWithType: WglPointers._wglUseFontOutlinesA_fnptr - fullName: OpenTK.Graphics.Wgl.WglPointers._wglUseFontOutlinesA_fnptr - type: Field - source: - id: _wglUseFontOutlinesA_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs - startLine: 1280 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: '[entry point: wglUseFontOutlinesA]' - example: [] - syntax: - content: public static delegate* unmanaged _wglUseFontOutlinesA_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _wglUseFontOutlinesA_fnptr As ' -- uid: OpenTK.Graphics.Wgl.WglPointers._wglUseFontOutlinesW_fnptr - commentId: F:OpenTK.Graphics.Wgl.WglPointers._wglUseFontOutlinesW_fnptr - id: _wglUseFontOutlinesW_fnptr - parent: OpenTK.Graphics.Wgl.WglPointers - langs: - - csharp - - vb - name: _wglUseFontOutlinesW_fnptr - nameWithType: WglPointers._wglUseFontOutlinesW_fnptr - fullName: OpenTK.Graphics.Wgl.WglPointers._wglUseFontOutlinesW_fnptr - type: Field - source: - id: _wglUseFontOutlinesW_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs - startLine: 1289 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: '[entry point: wglUseFontOutlinesW]' - example: [] - syntax: - content: public static delegate* unmanaged _wglUseFontOutlinesW_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _wglUseFontOutlinesW_fnptr As ' -- uid: OpenTK.Graphics.Wgl.WglPointers._wglWaitForMscOML_fnptr - commentId: F:OpenTK.Graphics.Wgl.WglPointers._wglWaitForMscOML_fnptr - id: _wglWaitForMscOML_fnptr - parent: OpenTK.Graphics.Wgl.WglPointers - langs: - - csharp - - vb - name: _wglWaitForMscOML_fnptr - nameWithType: WglPointers._wglWaitForMscOML_fnptr - fullName: OpenTK.Graphics.Wgl.WglPointers._wglWaitForMscOML_fnptr - type: Field - source: - id: _wglWaitForMscOML_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs - startLine: 1298 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: '[entry point: wglWaitForMscOML]' - example: [] - syntax: - content: public static delegate* unmanaged _wglWaitForMscOML_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _wglWaitForMscOML_fnptr As ' -- uid: OpenTK.Graphics.Wgl.WglPointers._wglWaitForSbcOML_fnptr - commentId: F:OpenTK.Graphics.Wgl.WglPointers._wglWaitForSbcOML_fnptr - id: _wglWaitForSbcOML_fnptr - parent: OpenTK.Graphics.Wgl.WglPointers - langs: - - csharp - - vb - name: _wglWaitForSbcOML_fnptr - nameWithType: WglPointers._wglWaitForSbcOML_fnptr - fullName: OpenTK.Graphics.Wgl.WglPointers._wglWaitForSbcOML_fnptr - type: Field - source: - id: _wglWaitForSbcOML_fnptr - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\WGL.Pointers.cs - startLine: 1307 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - summary: '[entry point: wglWaitForSbcOML]' - example: [] - syntax: - content: public static delegate* unmanaged _wglWaitForSbcOML_fnptr - return: - type: delegate* unmanaged - content.vb: 'Public Shared _wglWaitForSbcOML_fnptr As ' -references: -- uid: OpenTK.Graphics.Wgl - commentId: N:OpenTK.Graphics.Wgl - href: OpenTK.html - name: OpenTK.Graphics.Wgl - nameWithType: OpenTK.Graphics.Wgl - fullName: OpenTK.Graphics.Wgl - spec.csharp: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Wgl - name: Wgl - href: OpenTK.Graphics.Wgl.html - spec.vb: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Wgl - name: Wgl - href: OpenTK.Graphics.Wgl.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: System.Object.Equals(System.Object) - commentId: M:System.Object.Equals(System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - name: Equals(object) - nameWithType: object.Equals(object) - fullName: object.Equals(object) - nameWithType.vb: Object.Equals(Object) - fullName.vb: Object.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetHashCode - commentId: M:System.Object.GetHashCode - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - name: GetHashCode() - nameWithType: object.GetHashCode() - fullName: object.GetHashCode() - nameWithType.vb: Object.GetHashCode() - fullName.vb: Object.GetHashCode() - spec.csharp: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.MemberwiseClone - commentId: M:System.Object.MemberwiseClone - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - name: MemberwiseClone() - nameWithType: object.MemberwiseClone() - fullName: object.MemberwiseClone() - nameWithType.vb: Object.MemberwiseClone() - fullName.vb: Object.MemberwiseClone() - spec.csharp: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) - spec.vb: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.ToString - commentId: M:System.Object.ToString - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - name: ToString() - nameWithType: object.ToString() - fullName: object.ToString() - nameWithType.vb: Object.ToString() - fullName.vb: Object.ToString() - spec.csharp: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) - spec.vb: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: OpenTK.Graphics.Wgl.PixelFormatDescriptor - name: PixelFormatDescriptor - href: OpenTK.Graphics.Wgl.PixelFormatDescriptor.html - - name: '*' - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ',' - - name: " " - - uid: OpenTK.Graphics.Wgl.PixelFormatDescriptor - name: PixelFormatDescriptor - href: OpenTK.Graphics.Wgl.PixelFormatDescriptor.html - - name: '*' - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ',' - - name: " " - - uid: OpenTK.Graphics.Wgl.PixelFormatDescriptor - name: PixelFormatDescriptor - href: OpenTK.Graphics.Wgl.PixelFormatDescriptor.html - - name: '*' - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: OpenTK.Graphics.Wgl.PixelFormatDescriptor - name: PixelFormatDescriptor - href: OpenTK.Graphics.Wgl.PixelFormatDescriptor.html - - name: '*' - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Single - name: float - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.single - - name: ',' - - name: " " - - uid: System.Single - name: float - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.single - - name: ',' - - name: " " - - uid: System.Single - name: float - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.single - - name: ',' - - name: " " - - uid: System.Void - name: void - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.void - - name: '*' - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: '*' - - name: ',' - - name: " " - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: '*' - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: '*' - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint16 - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.UInt16 - name: ushort - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint16 - - name: ',' - - name: " " - - uid: System.Byte - name: byte - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.byte - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ',' - - name: " " - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ',' - - name: " " - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '*' - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ',' - - name: " " - - uid: System.Void - name: void - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.void - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '*' - - name: ',' - - name: " " - - uid: System.Single - name: float - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.single - - name: '*' - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '*' - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: '*' - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: '*' - - name: ',' - - name: " " - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ',' - - name: " " - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ',' - - name: " " - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '*' - - name: ',' - - name: " " - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ',' - - name: " " - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '*' - - name: ',' - - name: " " - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ',' - - name: " " - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '*' - - name: ',' - - name: " " - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.Single - name: float - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.single - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.Void - name: void - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.void - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ',' - - name: " " - - uid: OpenTK.Graphics.Wgl.LayerPlaneDescriptor - name: LayerPlaneDescriptor - href: OpenTK.Graphics.Wgl.LayerPlaneDescriptor.html - - name: '*' - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint16 - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.UInt16 - name: ushort - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint16 - - name: ',' - - name: " " - - uid: System.Void - name: void - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.void - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: '*' - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.void - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.Void - name: void - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.void - - name: '*' - - name: ',' - - name: " " - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.Void - name: void - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.void - - name: '*' - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ',' - - name: " " - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.void - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.Void - name: void - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.void - - name: '*' - - name: ',' - - name: " " - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: '*' - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: '*' - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ',' - - name: " " - - uid: OpenTK.Graphics.Wgl._GPU_DEVICE - name: _GPU_DEVICE - href: OpenTK.Graphics.Wgl._GPU_DEVICE.html - - name: '*' - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ',' - - name: " " - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: '*' - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ',' - - name: " " - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: '*' - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.void - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.Void - name: void - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.void - - name: '*' - - name: ',' - - name: " " - - uid: System.Void - name: void - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.void - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '*' - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.Byte - name: byte - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.byte - - name: '*' - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.byte - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.Byte - name: byte - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.byte - - name: '*' - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.single - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.Single - name: float - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.single - - name: '*' - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.UInt16 - name: ushort - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint16 - - name: '*' - - name: ',' - - name: " " - - uid: System.UInt16 - name: ushort - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint16 - - name: '*' - - name: ',' - - name: " " - - uid: System.UInt16 - name: ushort - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint16 - - name: '*' - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: '*' - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: '*' - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ',' - - name: " " - - uid: System.Void - name: void - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.void - - name: '*' - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: '*' - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '*' - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '*' - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '*' - - name: ',' - - name: " " - - uid: System.Single - name: float - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.single - - name: '*' - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '*' - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '*' - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.byte - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.Byte - name: byte - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.byte - - name: '*' - - name: ',' - - name: " " - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.Int64 - name: long - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int64 - - name: '*' - - name: ',' - - name: " " - - uid: System.Int64 - name: long - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int64 - - name: '*' - - name: ',' - - name: " " - - uid: System.Int64 - name: long - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int64 - - name: '*' - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.UInt64 - name: ulong - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint64 - - name: '*' - - name: ',' - - name: " " - - uid: System.UInt64 - name: ulong - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint64 - - name: '*' - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '*' - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '*' - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint16 - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.UInt16 - name: ushort - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint16 - - name: '*' - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ',' - - name: " " - - uid: System.Byte - name: byte - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.byte - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '*' - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: '*' - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: '*' - - name: ',' - - name: " " - - uid: System.Single - name: float - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.single - - name: '*' - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: '*' - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: '*' - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '*' - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: '*' - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.UInt64 - name: ulong - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint64 - - name: '*' - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.Int64 - name: long - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int64 - - name: ',' - - name: " " - - uid: System.Int64 - name: long - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int64 - - name: ',' - - name: " " - - uid: System.Int64 - name: long - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int64 - - name: ',' - - name: " " - - uid: System.Int64 - name: long - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int64 - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int64 - name: long - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int64 - - name: ',' - - name: " " - - uid: System.Int64 - name: long - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int64 - - name: ',' - - name: " " - - uid: System.Int64 - name: long - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int64 - - name: ',' - - name: " " - - uid: System.Int64 - name: long - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int64 - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ',' - - name: " " - - uid: System.Single - name: float - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.single - - name: ',' - - name: " " - - uid: System.Single - name: float - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.single - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.Int64 - name: long - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int64 - - name: ',' - - name: " " - - uid: System.Int64 - name: long - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int64 - - name: ',' - - name: " " - - uid: System.Int64 - name: long - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int64 - - name: ',' - - name: " " - - uid: System.Int64 - name: long - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int64 - - name: '*' - - name: ',' - - name: " " - - uid: System.Int64 - name: long - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int64 - - name: '*' - - name: ',' - - name: " " - - uid: System.Int64 - name: long - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int64 - - name: '*' - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '>' -- uid: delegate* unmanaged - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: delegate* unmanaged - nameWithType: delegate* unmanaged - fullName: delegate* unmanaged - spec.csharp: - - name: delegate - - name: '*' - - name: " " - - name: unmanaged - - name: < - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ',' - - name: " " - - uid: System.Int64 - name: long - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int64 - - name: ',' - - name: " " - - uid: System.Int64 - name: long - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int64 - - name: '*' - - name: ',' - - name: " " - - uid: System.Int64 - name: long - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int64 - - name: '*' - - name: ',' - - name: " " - - uid: System.Int64 - name: long - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int64 - - name: '*' - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: '>' diff --git a/api/OpenTK.Graphics.Wgl._GPU_DEVICE.yml b/api/OpenTK.Graphics.Wgl._GPU_DEVICE.yml deleted file mode 100644 index 67e687c1..00000000 --- a/api/OpenTK.Graphics.Wgl._GPU_DEVICE.yml +++ /dev/null @@ -1,438 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: OpenTK.Graphics.Wgl._GPU_DEVICE - commentId: T:OpenTK.Graphics.Wgl._GPU_DEVICE - id: _GPU_DEVICE - parent: OpenTK.Graphics.Wgl - children: - - OpenTK.Graphics.Wgl._GPU_DEVICE.DeviceName - - OpenTK.Graphics.Wgl._GPU_DEVICE.DeviceString - - OpenTK.Graphics.Wgl._GPU_DEVICE.Flags - - OpenTK.Graphics.Wgl._GPU_DEVICE.cb - - OpenTK.Graphics.Wgl._GPU_DEVICE.rcVirtualScreen - langs: - - csharp - - vb - name: _GPU_DEVICE - nameWithType: _GPU_DEVICE - fullName: OpenTK.Graphics.Wgl._GPU_DEVICE - type: Struct - source: - id: _GPU_DEVICE - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 604 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: public struct _GPU_DEVICE - content.vb: Public Structure _GPU_DEVICE - inheritedMembers: - - System.ValueType.Equals(System.Object) - - System.ValueType.GetHashCode - - System.ValueType.ToString - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.ReferenceEquals(System.Object,System.Object) -- uid: OpenTK.Graphics.Wgl._GPU_DEVICE.cb - commentId: F:OpenTK.Graphics.Wgl._GPU_DEVICE.cb - id: cb - parent: OpenTK.Graphics.Wgl._GPU_DEVICE - langs: - - csharp - - vb - name: cb - nameWithType: _GPU_DEVICE.cb - fullName: OpenTK.Graphics.Wgl._GPU_DEVICE.cb - type: Field - source: - id: cb - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 606 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: public uint cb - return: - type: System.UInt32 - content.vb: Public cb As UInteger -- uid: OpenTK.Graphics.Wgl._GPU_DEVICE.DeviceName - commentId: F:OpenTK.Graphics.Wgl._GPU_DEVICE.DeviceName - id: DeviceName - parent: OpenTK.Graphics.Wgl._GPU_DEVICE - langs: - - csharp - - vb - name: DeviceName - nameWithType: _GPU_DEVICE.DeviceName - fullName: OpenTK.Graphics.Wgl._GPU_DEVICE.DeviceName - type: Field - source: - id: DeviceName - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 607 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: public byte* DeviceName - return: - type: System.Byte* - content.vb: Public DeviceName As Byte* -- uid: OpenTK.Graphics.Wgl._GPU_DEVICE.DeviceString - commentId: F:OpenTK.Graphics.Wgl._GPU_DEVICE.DeviceString - id: DeviceString - parent: OpenTK.Graphics.Wgl._GPU_DEVICE - langs: - - csharp - - vb - name: DeviceString - nameWithType: _GPU_DEVICE.DeviceString - fullName: OpenTK.Graphics.Wgl._GPU_DEVICE.DeviceString - type: Field - source: - id: DeviceString - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 608 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: public byte* DeviceString - return: - type: System.Byte* - content.vb: Public DeviceString As Byte* -- uid: OpenTK.Graphics.Wgl._GPU_DEVICE.Flags - commentId: F:OpenTK.Graphics.Wgl._GPU_DEVICE.Flags - id: Flags - parent: OpenTK.Graphics.Wgl._GPU_DEVICE - langs: - - csharp - - vb - name: Flags - nameWithType: _GPU_DEVICE.Flags - fullName: OpenTK.Graphics.Wgl._GPU_DEVICE.Flags - type: Field - source: - id: Flags - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 609 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: public uint Flags - return: - type: System.UInt32 - content.vb: Public Flags As UInteger -- uid: OpenTK.Graphics.Wgl._GPU_DEVICE.rcVirtualScreen - commentId: F:OpenTK.Graphics.Wgl._GPU_DEVICE.rcVirtualScreen - id: rcVirtualScreen - parent: OpenTK.Graphics.Wgl._GPU_DEVICE - langs: - - csharp - - vb - name: rcVirtualScreen - nameWithType: _GPU_DEVICE.rcVirtualScreen - fullName: OpenTK.Graphics.Wgl._GPU_DEVICE.rcVirtualScreen - type: Field - source: - id: rcVirtualScreen - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 610 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: public Rect rcVirtualScreen - return: - type: OpenTK.Graphics.Wgl.Rect - content.vb: Public rcVirtualScreen As Rect -references: -- uid: OpenTK.Graphics.Wgl - commentId: N:OpenTK.Graphics.Wgl - href: OpenTK.html - name: OpenTK.Graphics.Wgl - nameWithType: OpenTK.Graphics.Wgl - fullName: OpenTK.Graphics.Wgl - spec.csharp: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Wgl - name: Wgl - href: OpenTK.Graphics.Wgl.html - spec.vb: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Wgl - name: Wgl - href: OpenTK.Graphics.Wgl.html -- uid: System.ValueType.Equals(System.Object) - commentId: M:System.ValueType.Equals(System.Object) - parent: System.ValueType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals - name: Equals(object) - nameWithType: ValueType.Equals(object) - fullName: System.ValueType.Equals(object) - nameWithType.vb: ValueType.Equals(Object) - fullName.vb: System.ValueType.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: System.ValueType.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.ValueType.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.ValueType.GetHashCode - commentId: M:System.ValueType.GetHashCode - parent: System.ValueType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - name: GetHashCode() - nameWithType: ValueType.GetHashCode() - fullName: System.ValueType.GetHashCode() - spec.csharp: - - uid: System.ValueType.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - - name: ( - - name: ) - spec.vb: - - uid: System.ValueType.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - - name: ( - - name: ) -- uid: System.ValueType.ToString - commentId: M:System.ValueType.ToString - parent: System.ValueType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - name: ToString() - nameWithType: ValueType.ToString() - fullName: System.ValueType.ToString() - spec.csharp: - - uid: System.ValueType.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - - name: ( - - name: ) - spec.vb: - - uid: System.ValueType.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - - name: ( - - name: ) -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.ValueType - commentId: T:System.ValueType - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype - name: ValueType - nameWithType: ValueType - fullName: System.ValueType -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: System.UInt32 - commentId: T:System.UInt32 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - name: uint - nameWithType: uint - fullName: uint - nameWithType.vb: UInteger - fullName.vb: UInteger - name.vb: UInteger -- uid: System.Byte* - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.byte - name: byte* - nameWithType: byte* - fullName: byte* - nameWithType.vb: Byte* - fullName.vb: Byte* - name.vb: Byte* - spec.csharp: - - uid: System.Byte - name: byte - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.byte - - name: '*' - spec.vb: - - uid: System.Byte - name: Byte - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.byte - - name: '*' -- uid: OpenTK.Graphics.Wgl.Rect - commentId: T:OpenTK.Graphics.Wgl.Rect - parent: OpenTK.Graphics.Wgl - href: OpenTK.Graphics.Wgl.Rect.html - name: Rect - nameWithType: Rect - fullName: OpenTK.Graphics.Wgl.Rect diff --git a/api/OpenTK.Graphics.Wgl.yml b/api/OpenTK.Graphics.Wgl.yml deleted file mode 100644 index aeece517..00000000 --- a/api/OpenTK.Graphics.Wgl.yml +++ /dev/null @@ -1,477 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: OpenTK.Graphics.Wgl - commentId: N:OpenTK.Graphics.Wgl - id: OpenTK.Graphics.Wgl - children: - - OpenTK.Graphics.Wgl.AccelerationType - - OpenTK.Graphics.Wgl.All - - OpenTK.Graphics.Wgl.ColorBuffer - - OpenTK.Graphics.Wgl.ColorBufferMask - - OpenTK.Graphics.Wgl.ColorRef - - OpenTK.Graphics.Wgl.ContextAttribs - - OpenTK.Graphics.Wgl.ContextAttribute - - OpenTK.Graphics.Wgl.ContextFlagsMask - - OpenTK.Graphics.Wgl.ContextProfileMask - - OpenTK.Graphics.Wgl.DXInteropMaskNV - - OpenTK.Graphics.Wgl.DigitalVideoAttribute - - OpenTK.Graphics.Wgl.FontFormat - - OpenTK.Graphics.Wgl.GPUPropertyAMD - - OpenTK.Graphics.Wgl.GammaTableAttribute - - OpenTK.Graphics.Wgl.ImageBufferMaskI3D - - OpenTK.Graphics.Wgl.LayerPlaneDescriptor - - OpenTK.Graphics.Wgl.LayerPlaneMask - - OpenTK.Graphics.Wgl.ObjectTypeDX - - OpenTK.Graphics.Wgl.PBufferAttribute - - OpenTK.Graphics.Wgl.PBufferCubeMapFace - - OpenTK.Graphics.Wgl.PBufferTextureFormat - - OpenTK.Graphics.Wgl.PBufferTextureTarget - - OpenTK.Graphics.Wgl.PixelFormatAttribute - - OpenTK.Graphics.Wgl.PixelFormatDescriptor - - OpenTK.Graphics.Wgl.PixelType - - OpenTK.Graphics.Wgl.Rect - - OpenTK.Graphics.Wgl.StereoEmitterState - - OpenTK.Graphics.Wgl.SwapMethod - - OpenTK.Graphics.Wgl.VideoCaptureDeviceAttribute - - OpenTK.Graphics.Wgl.VideoOutputBuffer - - OpenTK.Graphics.Wgl.VideoOutputBufferType - - OpenTK.Graphics.Wgl.Wgl - - OpenTK.Graphics.Wgl.Wgl.AMD - - OpenTK.Graphics.Wgl.Wgl.ARB - - OpenTK.Graphics.Wgl.Wgl.EXT - - OpenTK.Graphics.Wgl.Wgl.I3D - - OpenTK.Graphics.Wgl.Wgl.NV - - OpenTK.Graphics.Wgl.Wgl.OML - - OpenTK.Graphics.Wgl.Wgl._3DL - - OpenTK.Graphics.Wgl.WglPointers - - OpenTK.Graphics.Wgl._GPU_DEVICE - langs: - - csharp - - vb - name: OpenTK.Graphics.Wgl - nameWithType: OpenTK.Graphics.Wgl - fullName: OpenTK.Graphics.Wgl - type: Namespace - assemblies: - - OpenTK.Graphics -references: -- uid: OpenTK.Graphics.Wgl.Rect - commentId: T:OpenTK.Graphics.Wgl.Rect - parent: OpenTK.Graphics.Wgl - href: OpenTK.Graphics.Wgl.Rect.html - name: Rect - nameWithType: Rect - fullName: OpenTK.Graphics.Wgl.Rect -- uid: OpenTK.Graphics.Wgl.ColorRef - commentId: T:OpenTK.Graphics.Wgl.ColorRef - parent: OpenTK.Graphics.Wgl - href: OpenTK.Graphics.Wgl.ColorRef.html - name: ColorRef - nameWithType: ColorRef - fullName: OpenTK.Graphics.Wgl.ColorRef -- uid: OpenTK.Graphics.Wgl.LayerPlaneDescriptor - commentId: T:OpenTK.Graphics.Wgl.LayerPlaneDescriptor - parent: OpenTK.Graphics.Wgl - href: OpenTK.Graphics.Wgl.LayerPlaneDescriptor.html - name: LayerPlaneDescriptor - nameWithType: LayerPlaneDescriptor - fullName: OpenTK.Graphics.Wgl.LayerPlaneDescriptor -- uid: OpenTK.Graphics.Wgl.PixelFormatDescriptor - commentId: T:OpenTK.Graphics.Wgl.PixelFormatDescriptor - parent: OpenTK.Graphics.Wgl - href: OpenTK.Graphics.Wgl.PixelFormatDescriptor.html - name: PixelFormatDescriptor - nameWithType: PixelFormatDescriptor - fullName: OpenTK.Graphics.Wgl.PixelFormatDescriptor -- uid: OpenTK.Graphics.Wgl._GPU_DEVICE - commentId: T:OpenTK.Graphics.Wgl._GPU_DEVICE - parent: OpenTK.Graphics.Wgl - href: OpenTK.Graphics.Wgl._GPU_DEVICE.html - name: _GPU_DEVICE - nameWithType: _GPU_DEVICE - fullName: OpenTK.Graphics.Wgl._GPU_DEVICE -- uid: OpenTK.Graphics.Wgl.WglPointers - commentId: T:OpenTK.Graphics.Wgl.WglPointers - href: OpenTK.Graphics.Wgl.WglPointers.html - name: WglPointers - nameWithType: WglPointers - fullName: OpenTK.Graphics.Wgl.WglPointers -- uid: OpenTK.Graphics.Wgl.All - commentId: T:OpenTK.Graphics.Wgl.All - parent: OpenTK.Graphics.Wgl - href: OpenTK.Graphics.Wgl.All.html - name: All - nameWithType: All - fullName: OpenTK.Graphics.Wgl.All -- uid: OpenTK.Graphics.Wgl.AccelerationType - commentId: T:OpenTK.Graphics.Wgl.AccelerationType - parent: OpenTK.Graphics.Wgl - href: OpenTK.Graphics.Wgl.AccelerationType.html - name: AccelerationType - nameWithType: AccelerationType - fullName: OpenTK.Graphics.Wgl.AccelerationType -- uid: OpenTK.Graphics.Wgl.ColorBuffer - commentId: T:OpenTK.Graphics.Wgl.ColorBuffer - parent: OpenTK.Graphics.Wgl - href: OpenTK.Graphics.Wgl.ColorBuffer.html - name: ColorBuffer - nameWithType: ColorBuffer - fullName: OpenTK.Graphics.Wgl.ColorBuffer -- uid: OpenTK.Graphics.Wgl.ColorBufferMask - commentId: T:OpenTK.Graphics.Wgl.ColorBufferMask - parent: OpenTK.Graphics.Wgl - href: OpenTK.Graphics.Wgl.ColorBufferMask.html - name: ColorBufferMask - nameWithType: ColorBufferMask - fullName: OpenTK.Graphics.Wgl.ColorBufferMask -- uid: OpenTK.Graphics.Wgl.ContextAttribs - commentId: T:OpenTK.Graphics.Wgl.ContextAttribs - parent: OpenTK.Graphics.Wgl - href: OpenTK.Graphics.Wgl.ContextAttribs.html - name: ContextAttribs - nameWithType: ContextAttribs - fullName: OpenTK.Graphics.Wgl.ContextAttribs -- uid: OpenTK.Graphics.Wgl.ContextAttribute - commentId: T:OpenTK.Graphics.Wgl.ContextAttribute - parent: OpenTK.Graphics.Wgl - href: OpenTK.Graphics.Wgl.ContextAttribute.html - name: ContextAttribute - nameWithType: ContextAttribute - fullName: OpenTK.Graphics.Wgl.ContextAttribute -- uid: OpenTK.Graphics.Wgl.ContextFlagsMask - commentId: T:OpenTK.Graphics.Wgl.ContextFlagsMask - parent: OpenTK.Graphics.Wgl - href: OpenTK.Graphics.Wgl.ContextFlagsMask.html - name: ContextFlagsMask - nameWithType: ContextFlagsMask - fullName: OpenTK.Graphics.Wgl.ContextFlagsMask -- uid: OpenTK.Graphics.Wgl.ContextProfileMask - commentId: T:OpenTK.Graphics.Wgl.ContextProfileMask - parent: OpenTK.Graphics.Wgl - href: OpenTK.Graphics.Wgl.ContextProfileMask.html - name: ContextProfileMask - nameWithType: ContextProfileMask - fullName: OpenTK.Graphics.Wgl.ContextProfileMask -- uid: OpenTK.Graphics.Wgl.DigitalVideoAttribute - commentId: T:OpenTK.Graphics.Wgl.DigitalVideoAttribute - parent: OpenTK.Graphics.Wgl - href: OpenTK.Graphics.Wgl.DigitalVideoAttribute.html - name: DigitalVideoAttribute - nameWithType: DigitalVideoAttribute - fullName: OpenTK.Graphics.Wgl.DigitalVideoAttribute -- uid: OpenTK.Graphics.Wgl.DXInteropMaskNV - commentId: T:OpenTK.Graphics.Wgl.DXInteropMaskNV - parent: OpenTK.Graphics.Wgl - href: OpenTK.Graphics.Wgl.DXInteropMaskNV.html - name: DXInteropMaskNV - nameWithType: DXInteropMaskNV - fullName: OpenTK.Graphics.Wgl.DXInteropMaskNV -- uid: OpenTK.Graphics.Wgl.FontFormat - commentId: T:OpenTK.Graphics.Wgl.FontFormat - parent: OpenTK.Graphics.Wgl - href: OpenTK.Graphics.Wgl.FontFormat.html - name: FontFormat - nameWithType: FontFormat - fullName: OpenTK.Graphics.Wgl.FontFormat -- uid: OpenTK.Graphics.Wgl.GammaTableAttribute - commentId: T:OpenTK.Graphics.Wgl.GammaTableAttribute - parent: OpenTK.Graphics.Wgl - href: OpenTK.Graphics.Wgl.GammaTableAttribute.html - name: GammaTableAttribute - nameWithType: GammaTableAttribute - fullName: OpenTK.Graphics.Wgl.GammaTableAttribute -- uid: OpenTK.Graphics.Wgl.GPUPropertyAMD - commentId: T:OpenTK.Graphics.Wgl.GPUPropertyAMD - parent: OpenTK.Graphics.Wgl - href: OpenTK.Graphics.Wgl.GPUPropertyAMD.html - name: GPUPropertyAMD - nameWithType: GPUPropertyAMD - fullName: OpenTK.Graphics.Wgl.GPUPropertyAMD -- uid: OpenTK.Graphics.Wgl.ImageBufferMaskI3D - commentId: T:OpenTK.Graphics.Wgl.ImageBufferMaskI3D - parent: OpenTK.Graphics.Wgl - href: OpenTK.Graphics.Wgl.ImageBufferMaskI3D.html - name: ImageBufferMaskI3D - nameWithType: ImageBufferMaskI3D - fullName: OpenTK.Graphics.Wgl.ImageBufferMaskI3D -- uid: OpenTK.Graphics.Wgl.LayerPlaneMask - commentId: T:OpenTK.Graphics.Wgl.LayerPlaneMask - parent: OpenTK.Graphics.Wgl - href: OpenTK.Graphics.Wgl.LayerPlaneMask.html - name: LayerPlaneMask - nameWithType: LayerPlaneMask - fullName: OpenTK.Graphics.Wgl.LayerPlaneMask -- uid: OpenTK.Graphics.Wgl.ObjectTypeDX - commentId: T:OpenTK.Graphics.Wgl.ObjectTypeDX - parent: OpenTK.Graphics.Wgl - href: OpenTK.Graphics.Wgl.ObjectTypeDX.html - name: ObjectTypeDX - nameWithType: ObjectTypeDX - fullName: OpenTK.Graphics.Wgl.ObjectTypeDX -- uid: OpenTK.Graphics.Wgl.PBufferAttribute - commentId: T:OpenTK.Graphics.Wgl.PBufferAttribute - parent: OpenTK.Graphics.Wgl - href: OpenTK.Graphics.Wgl.PBufferAttribute.html - name: PBufferAttribute - nameWithType: PBufferAttribute - fullName: OpenTK.Graphics.Wgl.PBufferAttribute -- uid: OpenTK.Graphics.Wgl.PBufferCubeMapFace - commentId: T:OpenTK.Graphics.Wgl.PBufferCubeMapFace - parent: OpenTK.Graphics.Wgl - href: OpenTK.Graphics.Wgl.PBufferCubeMapFace.html - name: PBufferCubeMapFace - nameWithType: PBufferCubeMapFace - fullName: OpenTK.Graphics.Wgl.PBufferCubeMapFace -- uid: OpenTK.Graphics.Wgl.PBufferTextureFormat - commentId: T:OpenTK.Graphics.Wgl.PBufferTextureFormat - parent: OpenTK.Graphics.Wgl - href: OpenTK.Graphics.Wgl.PBufferTextureFormat.html - name: PBufferTextureFormat - nameWithType: PBufferTextureFormat - fullName: OpenTK.Graphics.Wgl.PBufferTextureFormat -- uid: OpenTK.Graphics.Wgl.PBufferTextureTarget - commentId: T:OpenTK.Graphics.Wgl.PBufferTextureTarget - parent: OpenTK.Graphics.Wgl - href: OpenTK.Graphics.Wgl.PBufferTextureTarget.html - name: PBufferTextureTarget - nameWithType: PBufferTextureTarget - fullName: OpenTK.Graphics.Wgl.PBufferTextureTarget -- uid: OpenTK.Graphics.Wgl.PixelFormatAttribute - commentId: T:OpenTK.Graphics.Wgl.PixelFormatAttribute - parent: OpenTK.Graphics.Wgl - href: OpenTK.Graphics.Wgl.PixelFormatAttribute.html - name: PixelFormatAttribute - nameWithType: PixelFormatAttribute - fullName: OpenTK.Graphics.Wgl.PixelFormatAttribute -- uid: OpenTK.Graphics.Wgl.PixelType - commentId: T:OpenTK.Graphics.Wgl.PixelType - parent: OpenTK.Graphics.Wgl - href: OpenTK.Graphics.Wgl.PixelType.html - name: PixelType - nameWithType: PixelType - fullName: OpenTK.Graphics.Wgl.PixelType -- uid: OpenTK.Graphics.Wgl.StereoEmitterState - commentId: T:OpenTK.Graphics.Wgl.StereoEmitterState - parent: OpenTK.Graphics.Wgl - href: OpenTK.Graphics.Wgl.StereoEmitterState.html - name: StereoEmitterState - nameWithType: StereoEmitterState - fullName: OpenTK.Graphics.Wgl.StereoEmitterState -- uid: OpenTK.Graphics.Wgl.SwapMethod - commentId: T:OpenTK.Graphics.Wgl.SwapMethod - parent: OpenTK.Graphics.Wgl - href: OpenTK.Graphics.Wgl.SwapMethod.html - name: SwapMethod - nameWithType: SwapMethod - fullName: OpenTK.Graphics.Wgl.SwapMethod -- uid: OpenTK.Graphics.Wgl.VideoCaptureDeviceAttribute - commentId: T:OpenTK.Graphics.Wgl.VideoCaptureDeviceAttribute - parent: OpenTK.Graphics.Wgl - href: OpenTK.Graphics.Wgl.VideoCaptureDeviceAttribute.html - name: VideoCaptureDeviceAttribute - nameWithType: VideoCaptureDeviceAttribute - fullName: OpenTK.Graphics.Wgl.VideoCaptureDeviceAttribute -- uid: OpenTK.Graphics.Wgl.VideoOutputBuffer - commentId: T:OpenTK.Graphics.Wgl.VideoOutputBuffer - parent: OpenTK.Graphics.Wgl - href: OpenTK.Graphics.Wgl.VideoOutputBuffer.html - name: VideoOutputBuffer - nameWithType: VideoOutputBuffer - fullName: OpenTK.Graphics.Wgl.VideoOutputBuffer -- uid: OpenTK.Graphics.Wgl.VideoOutputBufferType - commentId: T:OpenTK.Graphics.Wgl.VideoOutputBufferType - parent: OpenTK.Graphics.Wgl - href: OpenTK.Graphics.Wgl.VideoOutputBufferType.html - name: VideoOutputBufferType - nameWithType: VideoOutputBufferType - fullName: OpenTK.Graphics.Wgl.VideoOutputBufferType -- uid: OpenTK.Graphics.Wgl.Wgl - commentId: T:OpenTK.Graphics.Wgl.Wgl - href: OpenTK.Graphics.Wgl.Wgl.html - name: Wgl - nameWithType: Wgl - fullName: OpenTK.Graphics.Wgl.Wgl -- uid: OpenTK.Graphics.Wgl.Wgl._3DL - commentId: T:OpenTK.Graphics.Wgl.Wgl._3DL - href: OpenTK.Graphics.Wgl.Wgl.html - name: Wgl._3DL - nameWithType: Wgl._3DL - fullName: OpenTK.Graphics.Wgl.Wgl._3DL - spec.csharp: - - uid: OpenTK.Graphics.Wgl.Wgl - name: Wgl - href: OpenTK.Graphics.Wgl.Wgl.html - - name: . - - uid: OpenTK.Graphics.Wgl.Wgl._3DL - name: _3DL - href: OpenTK.Graphics.Wgl.Wgl._3DL.html - spec.vb: - - uid: OpenTK.Graphics.Wgl.Wgl - name: Wgl - href: OpenTK.Graphics.Wgl.Wgl.html - - name: . - - uid: OpenTK.Graphics.Wgl.Wgl._3DL - name: _3DL - href: OpenTK.Graphics.Wgl.Wgl._3DL.html -- uid: OpenTK.Graphics.Wgl.Wgl.AMD - commentId: T:OpenTK.Graphics.Wgl.Wgl.AMD - href: OpenTK.Graphics.Wgl.Wgl.html - name: Wgl.AMD - nameWithType: Wgl.AMD - fullName: OpenTK.Graphics.Wgl.Wgl.AMD - spec.csharp: - - uid: OpenTK.Graphics.Wgl.Wgl - name: Wgl - href: OpenTK.Graphics.Wgl.Wgl.html - - name: . - - uid: OpenTK.Graphics.Wgl.Wgl.AMD - name: AMD - href: OpenTK.Graphics.Wgl.Wgl.AMD.html - spec.vb: - - uid: OpenTK.Graphics.Wgl.Wgl - name: Wgl - href: OpenTK.Graphics.Wgl.Wgl.html - - name: . - - uid: OpenTK.Graphics.Wgl.Wgl.AMD - name: AMD - href: OpenTK.Graphics.Wgl.Wgl.AMD.html -- uid: OpenTK.Graphics.Wgl.Wgl.ARB - commentId: T:OpenTK.Graphics.Wgl.Wgl.ARB - href: OpenTK.Graphics.Wgl.Wgl.html - name: Wgl.ARB - nameWithType: Wgl.ARB - fullName: OpenTK.Graphics.Wgl.Wgl.ARB - spec.csharp: - - uid: OpenTK.Graphics.Wgl.Wgl - name: Wgl - href: OpenTK.Graphics.Wgl.Wgl.html - - name: . - - uid: OpenTK.Graphics.Wgl.Wgl.ARB - name: ARB - href: OpenTK.Graphics.Wgl.Wgl.ARB.html - spec.vb: - - uid: OpenTK.Graphics.Wgl.Wgl - name: Wgl - href: OpenTK.Graphics.Wgl.Wgl.html - - name: . - - uid: OpenTK.Graphics.Wgl.Wgl.ARB - name: ARB - href: OpenTK.Graphics.Wgl.Wgl.ARB.html -- uid: OpenTK.Graphics.Wgl.Wgl.EXT - commentId: T:OpenTK.Graphics.Wgl.Wgl.EXT - href: OpenTK.Graphics.Wgl.Wgl.html - name: Wgl.EXT - nameWithType: Wgl.EXT - fullName: OpenTK.Graphics.Wgl.Wgl.EXT - spec.csharp: - - uid: OpenTK.Graphics.Wgl.Wgl - name: Wgl - href: OpenTK.Graphics.Wgl.Wgl.html - - name: . - - uid: OpenTK.Graphics.Wgl.Wgl.EXT - name: EXT - href: OpenTK.Graphics.Wgl.Wgl.EXT.html - spec.vb: - - uid: OpenTK.Graphics.Wgl.Wgl - name: Wgl - href: OpenTK.Graphics.Wgl.Wgl.html - - name: . - - uid: OpenTK.Graphics.Wgl.Wgl.EXT - name: EXT - href: OpenTK.Graphics.Wgl.Wgl.EXT.html -- uid: OpenTK.Graphics.Wgl.Wgl.I3D - commentId: T:OpenTK.Graphics.Wgl.Wgl.I3D - href: OpenTK.Graphics.Wgl.Wgl.html - name: Wgl.I3D - nameWithType: Wgl.I3D - fullName: OpenTK.Graphics.Wgl.Wgl.I3D - spec.csharp: - - uid: OpenTK.Graphics.Wgl.Wgl - name: Wgl - href: OpenTK.Graphics.Wgl.Wgl.html - - name: . - - uid: OpenTK.Graphics.Wgl.Wgl.I3D - name: I3D - href: OpenTK.Graphics.Wgl.Wgl.I3D.html - spec.vb: - - uid: OpenTK.Graphics.Wgl.Wgl - name: Wgl - href: OpenTK.Graphics.Wgl.Wgl.html - - name: . - - uid: OpenTK.Graphics.Wgl.Wgl.I3D - name: I3D - href: OpenTK.Graphics.Wgl.Wgl.I3D.html -- uid: OpenTK.Graphics.Wgl.Wgl.NV - commentId: T:OpenTK.Graphics.Wgl.Wgl.NV - href: OpenTK.Graphics.Wgl.Wgl.html - name: Wgl.NV - nameWithType: Wgl.NV - fullName: OpenTK.Graphics.Wgl.Wgl.NV - spec.csharp: - - uid: OpenTK.Graphics.Wgl.Wgl - name: Wgl - href: OpenTK.Graphics.Wgl.Wgl.html - - name: . - - uid: OpenTK.Graphics.Wgl.Wgl.NV - name: NV - href: OpenTK.Graphics.Wgl.Wgl.NV.html - spec.vb: - - uid: OpenTK.Graphics.Wgl.Wgl - name: Wgl - href: OpenTK.Graphics.Wgl.Wgl.html - - name: . - - uid: OpenTK.Graphics.Wgl.Wgl.NV - name: NV - href: OpenTK.Graphics.Wgl.Wgl.NV.html -- uid: OpenTK.Graphics.Wgl.Wgl.OML - commentId: T:OpenTK.Graphics.Wgl.Wgl.OML - href: OpenTK.Graphics.Wgl.Wgl.html - name: Wgl.OML - nameWithType: Wgl.OML - fullName: OpenTK.Graphics.Wgl.Wgl.OML - spec.csharp: - - uid: OpenTK.Graphics.Wgl.Wgl - name: Wgl - href: OpenTK.Graphics.Wgl.Wgl.html - - name: . - - uid: OpenTK.Graphics.Wgl.Wgl.OML - name: OML - href: OpenTK.Graphics.Wgl.Wgl.OML.html - spec.vb: - - uid: OpenTK.Graphics.Wgl.Wgl - name: Wgl - href: OpenTK.Graphics.Wgl.Wgl.html - - name: . - - uid: OpenTK.Graphics.Wgl.Wgl.OML - name: OML - href: OpenTK.Graphics.Wgl.Wgl.OML.html -- uid: OpenTK.Graphics.Wgl - commentId: N:OpenTK.Graphics.Wgl - href: OpenTK.html - name: OpenTK.Graphics.Wgl - nameWithType: OpenTK.Graphics.Wgl - fullName: OpenTK.Graphics.Wgl - spec.csharp: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Wgl - name: Wgl - href: OpenTK.Graphics.Wgl.html - spec.vb: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Wgl - name: Wgl - href: OpenTK.Graphics.Wgl.html diff --git a/api/OpenTK.Graphics.yml b/api/OpenTK.Graphics.yml index 218911a6..8a231722 100644 --- a/api/OpenTK.Graphics.yml +++ b/api/OpenTK.Graphics.yml @@ -8,6 +8,8 @@ items: - OpenTK.Graphics.CLContext - OpenTK.Graphics.CLEvent - OpenTK.Graphics.DisplayListHandle + - OpenTK.Graphics.EGLLoader + - OpenTK.Graphics.EGLLoader.BindingsContext - OpenTK.Graphics.FramebufferHandle - OpenTK.Graphics.GLHandleARB - OpenTK.Graphics.GLLoader @@ -38,6 +40,34 @@ items: assemblies: - OpenTK.Graphics references: +- uid: OpenTK.Graphics.EGLLoader + commentId: T:OpenTK.Graphics.EGLLoader + href: OpenTK.Graphics.EGLLoader.html + name: EGLLoader + nameWithType: EGLLoader + fullName: OpenTK.Graphics.EGLLoader +- uid: OpenTK.Graphics.EGLLoader.BindingsContext + commentId: T:OpenTK.Graphics.EGLLoader.BindingsContext + href: OpenTK.Graphics.EGLLoader.html + name: EGLLoader.BindingsContext + nameWithType: EGLLoader.BindingsContext + fullName: OpenTK.Graphics.EGLLoader.BindingsContext + spec.csharp: + - uid: OpenTK.Graphics.EGLLoader + name: EGLLoader + href: OpenTK.Graphics.EGLLoader.html + - name: . + - uid: OpenTK.Graphics.EGLLoader.BindingsContext + name: BindingsContext + href: OpenTK.Graphics.EGLLoader.BindingsContext.html + spec.vb: + - uid: OpenTK.Graphics.EGLLoader + name: EGLLoader + href: OpenTK.Graphics.EGLLoader.html + - name: . + - uid: OpenTK.Graphics.EGLLoader.BindingsContext + name: BindingsContext + href: OpenTK.Graphics.EGLLoader.BindingsContext.html - uid: OpenTK.Graphics.GLLoader commentId: T:OpenTK.Graphics.GLLoader href: OpenTK.Graphics.GLLoader.html diff --git a/api/OpenTK.Platform.AppTheme.yml b/api/OpenTK.Platform.AppTheme.yml index ed149de2..b388e8de 100644 --- a/api/OpenTK.Platform.AppTheme.yml +++ b/api/OpenTK.Platform.AppTheme.yml @@ -18,7 +18,7 @@ items: source: id: AppTheme path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\ThemeInfo.cs - startLine: 11 + startLine: 14 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -41,7 +41,7 @@ items: source: id: NoPreference path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\ThemeInfo.cs - startLine: 16 + startLine: 19 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -65,7 +65,7 @@ items: source: id: Light path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\ThemeInfo.cs - startLine: 21 + startLine: 24 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -89,7 +89,7 @@ items: source: id: Dark path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\ThemeInfo.cs - startLine: 26 + startLine: 29 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -100,6 +100,38 @@ items: return: type: OpenTK.Platform.AppTheme references: +- uid: OpenTK.Platform.ThemeInfo + commentId: T:OpenTK.Platform.ThemeInfo + parent: OpenTK.Platform + href: OpenTK.Platform.ThemeInfo.html + name: ThemeInfo + nameWithType: ThemeInfo + fullName: OpenTK.Platform.ThemeInfo +- uid: OpenTK.Platform.IShellComponent.GetPreferredTheme + commentId: M:OpenTK.Platform.IShellComponent.GetPreferredTheme + parent: OpenTK.Platform.IShellComponent + href: OpenTK.Platform.IShellComponent.html#OpenTK_Platform_IShellComponent_GetPreferredTheme + name: GetPreferredTheme() + nameWithType: IShellComponent.GetPreferredTheme() + fullName: OpenTK.Platform.IShellComponent.GetPreferredTheme() + spec.csharp: + - uid: OpenTK.Platform.IShellComponent.GetPreferredTheme + name: GetPreferredTheme + href: OpenTK.Platform.IShellComponent.html#OpenTK_Platform_IShellComponent_GetPreferredTheme + - name: ( + - name: ) + spec.vb: + - uid: OpenTK.Platform.IShellComponent.GetPreferredTheme + name: GetPreferredTheme + href: OpenTK.Platform.IShellComponent.html#OpenTK_Platform_IShellComponent_GetPreferredTheme + - name: ( + - name: ) +- uid: OpenTK.Platform.ThemeChangeEventArgs + commentId: T:OpenTK.Platform.ThemeChangeEventArgs + href: OpenTK.Platform.ThemeChangeEventArgs.html + name: ThemeChangeEventArgs + nameWithType: ThemeChangeEventArgs + fullName: OpenTK.Platform.ThemeChangeEventArgs - uid: OpenTK.Platform commentId: N:OpenTK.Platform href: OpenTK.html @@ -122,6 +154,13 @@ references: - uid: OpenTK.Platform name: Platform href: OpenTK.Platform.html +- uid: OpenTK.Platform.IShellComponent + commentId: T:OpenTK.Platform.IShellComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IShellComponent.html + name: IShellComponent + nameWithType: IShellComponent + fullName: OpenTK.Platform.IShellComponent - uid: OpenTK.Platform.AppTheme commentId: T:OpenTK.Platform.AppTheme parent: OpenTK.Platform diff --git a/api/OpenTK.Platform.Bitmap.yml b/api/OpenTK.Platform.Bitmap.yml index 98897085..2da19e1d 100644 --- a/api/OpenTK.Platform.Bitmap.yml +++ b/api/OpenTK.Platform.Bitmap.yml @@ -52,7 +52,7 @@ items: source: id: Width path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Bitmap.cs - startLine: 18 + startLine: 19 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -79,7 +79,7 @@ items: source: id: Height path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Bitmap.cs - startLine: 23 + startLine: 24 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -106,7 +106,7 @@ items: source: id: Data path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Bitmap.cs - startLine: 28 + startLine: 29 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -133,7 +133,7 @@ items: source: id: .ctor path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Bitmap.cs - startLine: 37 + startLine: 38 assemblies: - OpenTK.Platform namespace: OpenTK.Platform diff --git a/api/OpenTK.Platform.ClipboardFormat.yml b/api/OpenTK.Platform.ClipboardFormat.yml index 32d16732..1435b890 100644 --- a/api/OpenTK.Platform.ClipboardFormat.yml +++ b/api/OpenTK.Platform.ClipboardFormat.yml @@ -20,7 +20,7 @@ items: source: id: ClipboardFormat path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\ClipboardFormat.cs - startLine: 11 + startLine: 12 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -29,6 +29,9 @@ items: syntax: content: public enum ClipboardFormat content.vb: Public Enum ClipboardFormat + seealso: + - linkId: OpenTK.Platform.IClipboardComponent.GetClipboardFormat + commentId: M:OpenTK.Platform.IClipboardComponent.GetClipboardFormat - uid: OpenTK.Platform.ClipboardFormat.None commentId: F:OpenTK.Platform.ClipboardFormat.None id: None @@ -43,7 +46,7 @@ items: source: id: None path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\ClipboardFormat.cs - startLine: 16 + startLine: 17 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -67,7 +70,7 @@ items: source: id: Text path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\ClipboardFormat.cs - startLine: 21 + startLine: 24 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -77,6 +80,11 @@ items: content: Text = 1 return: type: OpenTK.Platform.ClipboardFormat + seealso: + - linkId: OpenTK.Platform.IClipboardComponent.GetClipboardText + commentId: M:OpenTK.Platform.IClipboardComponent.GetClipboardText + - linkId: OpenTK.Platform.IClipboardComponent.SetClipboardText(System.String) + commentId: M:OpenTK.Platform.IClipboardComponent.SetClipboardText(System.String) - uid: OpenTK.Platform.ClipboardFormat.Audio commentId: F:OpenTK.Platform.ClipboardFormat.Audio id: Audio @@ -91,7 +99,7 @@ items: source: id: Audio path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\ClipboardFormat.cs - startLine: 26 + startLine: 30 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -101,6 +109,9 @@ items: content: Audio = 2 return: type: OpenTK.Platform.ClipboardFormat + seealso: + - linkId: OpenTK.Platform.IClipboardComponent.GetClipboardAudio + commentId: M:OpenTK.Platform.IClipboardComponent.GetClipboardAudio - uid: OpenTK.Platform.ClipboardFormat.Bitmap commentId: F:OpenTK.Platform.ClipboardFormat.Bitmap id: Bitmap @@ -115,7 +126,7 @@ items: source: id: Bitmap path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\ClipboardFormat.cs - startLine: 31 + startLine: 37 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -125,6 +136,11 @@ items: content: Bitmap = 3 return: type: OpenTK.Platform.ClipboardFormat + seealso: + - linkId: OpenTK.Platform.IClipboardComponent.GetClipboardBitmap + commentId: M:OpenTK.Platform.IClipboardComponent.GetClipboardBitmap + - linkId: OpenTK.Platform.IClipboardComponent.SetClipboardBitmap(OpenTK.Platform.Bitmap) + commentId: M:OpenTK.Platform.IClipboardComponent.SetClipboardBitmap(OpenTK.Platform.Bitmap) - uid: OpenTK.Platform.ClipboardFormat.Files commentId: F:OpenTK.Platform.ClipboardFormat.Files id: Files @@ -139,7 +155,7 @@ items: source: id: Files path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\ClipboardFormat.cs - startLine: 36 + startLine: 43 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -149,7 +165,29 @@ items: content: Files = 5 return: type: OpenTK.Platform.ClipboardFormat + seealso: + - linkId: OpenTK.Platform.IClipboardComponent.GetClipboardFiles + commentId: M:OpenTK.Platform.IClipboardComponent.GetClipboardFiles references: +- uid: OpenTK.Platform.IClipboardComponent.GetClipboardFormat + commentId: M:OpenTK.Platform.IClipboardComponent.GetClipboardFormat + parent: OpenTK.Platform.IClipboardComponent + href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_GetClipboardFormat + name: GetClipboardFormat() + nameWithType: IClipboardComponent.GetClipboardFormat() + fullName: OpenTK.Platform.IClipboardComponent.GetClipboardFormat() + spec.csharp: + - uid: OpenTK.Platform.IClipboardComponent.GetClipboardFormat + name: GetClipboardFormat + href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_GetClipboardFormat + - name: ( + - name: ) + spec.vb: + - uid: OpenTK.Platform.IClipboardComponent.GetClipboardFormat + name: GetClipboardFormat + href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_GetClipboardFormat + - name: ( + - name: ) - uid: OpenTK.Platform commentId: N:OpenTK.Platform href: OpenTK.html @@ -172,6 +210,13 @@ references: - uid: OpenTK.Platform name: Platform href: OpenTK.Platform.html +- uid: OpenTK.Platform.IClipboardComponent + commentId: T:OpenTK.Platform.IClipboardComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IClipboardComponent.html + name: IClipboardComponent + nameWithType: IClipboardComponent + fullName: OpenTK.Platform.IClipboardComponent - uid: OpenTK.Platform.ClipboardFormat commentId: T:OpenTK.Platform.ClipboardFormat parent: OpenTK.Platform @@ -179,6 +224,75 @@ references: name: ClipboardFormat nameWithType: ClipboardFormat fullName: OpenTK.Platform.ClipboardFormat +- uid: OpenTK.Platform.IClipboardComponent.GetClipboardText + commentId: M:OpenTK.Platform.IClipboardComponent.GetClipboardText + parent: OpenTK.Platform.IClipboardComponent + href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_GetClipboardText + name: GetClipboardText() + nameWithType: IClipboardComponent.GetClipboardText() + fullName: OpenTK.Platform.IClipboardComponent.GetClipboardText() + spec.csharp: + - uid: OpenTK.Platform.IClipboardComponent.GetClipboardText + name: GetClipboardText + href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_GetClipboardText + - name: ( + - name: ) + spec.vb: + - uid: OpenTK.Platform.IClipboardComponent.GetClipboardText + name: GetClipboardText + href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_GetClipboardText + - name: ( + - name: ) +- uid: OpenTK.Platform.IClipboardComponent.SetClipboardText(System.String) + commentId: M:OpenTK.Platform.IClipboardComponent.SetClipboardText(System.String) + parent: OpenTK.Platform.IClipboardComponent + isExternal: true + href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_SetClipboardText_System_String_ + name: SetClipboardText(string) + nameWithType: IClipboardComponent.SetClipboardText(string) + fullName: OpenTK.Platform.IClipboardComponent.SetClipboardText(string) + nameWithType.vb: IClipboardComponent.SetClipboardText(String) + fullName.vb: OpenTK.Platform.IClipboardComponent.SetClipboardText(String) + name.vb: SetClipboardText(String) + spec.csharp: + - uid: OpenTK.Platform.IClipboardComponent.SetClipboardText(System.String) + name: SetClipboardText + href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_SetClipboardText_System_String_ + - name: ( + - uid: System.String + name: string + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ) + spec.vb: + - uid: OpenTK.Platform.IClipboardComponent.SetClipboardText(System.String) + name: SetClipboardText + href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_SetClipboardText_System_String_ + - name: ( + - uid: System.String + name: String + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ) +- uid: OpenTK.Platform.IClipboardComponent.GetClipboardAudio + commentId: M:OpenTK.Platform.IClipboardComponent.GetClipboardAudio + parent: OpenTK.Platform.IClipboardComponent + href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_GetClipboardAudio + name: GetClipboardAudio() + nameWithType: IClipboardComponent.GetClipboardAudio() + fullName: OpenTK.Platform.IClipboardComponent.GetClipboardAudio() + spec.csharp: + - uid: OpenTK.Platform.IClipboardComponent.GetClipboardAudio + name: GetClipboardAudio + href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_GetClipboardAudio + - name: ( + - name: ) + spec.vb: + - uid: OpenTK.Platform.IClipboardComponent.GetClipboardAudio + name: GetClipboardAudio + href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_GetClipboardAudio + - name: ( + - name: ) - uid: OpenTK.Platform.AudioData commentId: T:OpenTK.Platform.AudioData parent: OpenTK.Platform @@ -186,6 +300,50 @@ references: name: AudioData nameWithType: AudioData fullName: OpenTK.Platform.AudioData +- uid: OpenTK.Platform.IClipboardComponent.GetClipboardBitmap + commentId: M:OpenTK.Platform.IClipboardComponent.GetClipboardBitmap + parent: OpenTK.Platform.IClipboardComponent + href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_GetClipboardBitmap + name: GetClipboardBitmap() + nameWithType: IClipboardComponent.GetClipboardBitmap() + fullName: OpenTK.Platform.IClipboardComponent.GetClipboardBitmap() + spec.csharp: + - uid: OpenTK.Platform.IClipboardComponent.GetClipboardBitmap + name: GetClipboardBitmap + href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_GetClipboardBitmap + - name: ( + - name: ) + spec.vb: + - uid: OpenTK.Platform.IClipboardComponent.GetClipboardBitmap + name: GetClipboardBitmap + href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_GetClipboardBitmap + - name: ( + - name: ) +- uid: OpenTK.Platform.IClipboardComponent.SetClipboardBitmap(OpenTK.Platform.Bitmap) + commentId: M:OpenTK.Platform.IClipboardComponent.SetClipboardBitmap(OpenTK.Platform.Bitmap) + parent: OpenTK.Platform.IClipboardComponent + href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_SetClipboardBitmap_OpenTK_Platform_Bitmap_ + name: SetClipboardBitmap(Bitmap) + nameWithType: IClipboardComponent.SetClipboardBitmap(Bitmap) + fullName: OpenTK.Platform.IClipboardComponent.SetClipboardBitmap(OpenTK.Platform.Bitmap) + spec.csharp: + - uid: OpenTK.Platform.IClipboardComponent.SetClipboardBitmap(OpenTK.Platform.Bitmap) + name: SetClipboardBitmap + href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_SetClipboardBitmap_OpenTK_Platform_Bitmap_ + - name: ( + - uid: OpenTK.Platform.Bitmap + name: Bitmap + href: OpenTK.Platform.Bitmap.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IClipboardComponent.SetClipboardBitmap(OpenTK.Platform.Bitmap) + name: SetClipboardBitmap + href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_SetClipboardBitmap_OpenTK_Platform_Bitmap_ + - name: ( + - uid: OpenTK.Platform.Bitmap + name: Bitmap + href: OpenTK.Platform.Bitmap.html + - name: ) - uid: OpenTK.Platform.Bitmap commentId: T:OpenTK.Platform.Bitmap parent: OpenTK.Platform @@ -193,3 +351,22 @@ references: name: Bitmap nameWithType: Bitmap fullName: OpenTK.Platform.Bitmap +- uid: OpenTK.Platform.IClipboardComponent.GetClipboardFiles + commentId: M:OpenTK.Platform.IClipboardComponent.GetClipboardFiles + parent: OpenTK.Platform.IClipboardComponent + href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_GetClipboardFiles + name: GetClipboardFiles() + nameWithType: IClipboardComponent.GetClipboardFiles() + fullName: OpenTK.Platform.IClipboardComponent.GetClipboardFiles() + spec.csharp: + - uid: OpenTK.Platform.IClipboardComponent.GetClipboardFiles + name: GetClipboardFiles + href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_GetClipboardFiles + - name: ( + - name: ) + spec.vb: + - uid: OpenTK.Platform.IClipboardComponent.GetClipboardFiles + name: GetClipboardFiles + href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_GetClipboardFiles + - name: ( + - name: ) diff --git a/api/OpenTK.Platform.ClipboardUpdateEventArgs.yml b/api/OpenTK.Platform.ClipboardUpdateEventArgs.yml index 7d31739b..5e2dda23 100644 --- a/api/OpenTK.Platform.ClipboardUpdateEventArgs.yml +++ b/api/OpenTK.Platform.ClipboardUpdateEventArgs.yml @@ -17,7 +17,7 @@ items: source: id: ClipboardUpdateEventArgs path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\WindowEventArgs.cs - startLine: 589 + startLine: 595 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -52,7 +52,7 @@ items: source: id: NewFormat path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\WindowEventArgs.cs - startLine: 594 + startLine: 600 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -79,7 +79,7 @@ items: source: id: .ctor path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\WindowEventArgs.cs - startLine: 600 + startLine: 606 assemblies: - OpenTK.Platform namespace: OpenTK.Platform diff --git a/api/OpenTK.Platform.CloseEventArgs.yml b/api/OpenTK.Platform.CloseEventArgs.yml index d49709ae..10374afd 100644 --- a/api/OpenTK.Platform.CloseEventArgs.yml +++ b/api/OpenTK.Platform.CloseEventArgs.yml @@ -16,7 +16,7 @@ items: source: id: CloseEventArgs path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\WindowEventArgs.cs - startLine: 545 + startLine: 546 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -53,7 +53,7 @@ items: source: id: .ctor path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\WindowEventArgs.cs - startLine: 551 + startLine: 552 assemblies: - OpenTK.Platform namespace: OpenTK.Platform diff --git a/api/OpenTK.Platform.ContextDepthBits.yml b/api/OpenTK.Platform.ContextDepthBits.yml index 82275278..14e337f3 100644 --- a/api/OpenTK.Platform.ContextDepthBits.yml +++ b/api/OpenTK.Platform.ContextDepthBits.yml @@ -19,7 +19,7 @@ items: source: id: ContextDepthBits path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\ContextSettings.cs - startLine: 517 + startLine: 601 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -42,7 +42,7 @@ items: source: id: None path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\ContextSettings.cs - startLine: 522 + startLine: 606 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -66,7 +66,7 @@ items: source: id: Depth16 path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\ContextSettings.cs - startLine: 527 + startLine: 611 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -90,7 +90,7 @@ items: source: id: Depth24 path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\ContextSettings.cs - startLine: 532 + startLine: 616 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -114,7 +114,7 @@ items: source: id: Depth32 path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\ContextSettings.cs - startLine: 537 + startLine: 621 assemblies: - OpenTK.Platform namespace: OpenTK.Platform diff --git a/api/OpenTK.Platform.ContextPixelFormat.yml b/api/OpenTK.Platform.ContextPixelFormat.yml index d24196db..2989ff12 100644 --- a/api/OpenTK.Platform.ContextPixelFormat.yml +++ b/api/OpenTK.Platform.ContextPixelFormat.yml @@ -18,7 +18,7 @@ items: source: id: ContextPixelFormat path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\ContextSettings.cs - startLine: 470 + startLine: 554 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -46,7 +46,7 @@ items: source: id: RGBA path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\ContextSettings.cs - startLine: 475 + startLine: 559 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -70,7 +70,7 @@ items: source: id: RGBAFloat path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\ContextSettings.cs - startLine: 483 + startLine: 567 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -101,7 +101,7 @@ items: source: id: RGBAPackedFloat path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\ContextSettings.cs - startLine: 489 + startLine: 573 assemblies: - OpenTK.Platform namespace: OpenTK.Platform diff --git a/api/OpenTK.Platform.ContextReleaseBehaviour.yml b/api/OpenTK.Platform.ContextReleaseBehaviour.yml index 70d67c0f..82382891 100644 --- a/api/OpenTK.Platform.ContextReleaseBehaviour.yml +++ b/api/OpenTK.Platform.ContextReleaseBehaviour.yml @@ -17,7 +17,7 @@ items: source: id: ContextReleaseBehaviour path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\ContextSettings.cs - startLine: 575 + startLine: 659 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -40,7 +40,7 @@ items: source: id: None path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\ContextSettings.cs - startLine: 580 + startLine: 664 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -64,7 +64,7 @@ items: source: id: Flush path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\ContextSettings.cs - startLine: 585 + startLine: 669 assemblies: - OpenTK.Platform namespace: OpenTK.Platform diff --git a/api/OpenTK.Platform.ContextResetNotificationStrategy.yml b/api/OpenTK.Platform.ContextResetNotificationStrategy.yml index 510ec27f..9af4a2f5 100644 --- a/api/OpenTK.Platform.ContextResetNotificationStrategy.yml +++ b/api/OpenTK.Platform.ContextResetNotificationStrategy.yml @@ -17,7 +17,7 @@ items: source: id: ContextResetNotificationStrategy path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\ContextSettings.cs - startLine: 566 + startLine: 650 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -40,7 +40,7 @@ items: source: id: NoResetNotification path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\ContextSettings.cs - startLine: 568 + startLine: 652 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -62,7 +62,7 @@ items: source: id: LoseContextOnReset path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\ContextSettings.cs - startLine: 569 + startLine: 653 assemblies: - OpenTK.Platform namespace: OpenTK.Platform diff --git a/api/OpenTK.Platform.ContextStencilBits.yml b/api/OpenTK.Platform.ContextStencilBits.yml index fe360014..f57e0656 100644 --- a/api/OpenTK.Platform.ContextStencilBits.yml +++ b/api/OpenTK.Platform.ContextStencilBits.yml @@ -18,7 +18,7 @@ items: source: id: ContextStencilBits path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\ContextSettings.cs - startLine: 545 + startLine: 629 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -41,7 +41,7 @@ items: source: id: None path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\ContextSettings.cs - startLine: 550 + startLine: 634 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -65,7 +65,7 @@ items: source: id: Stencil1 path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\ContextSettings.cs - startLine: 555 + startLine: 639 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -89,7 +89,7 @@ items: source: id: Stencil8 path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\ContextSettings.cs - startLine: 560 + startLine: 644 assemblies: - OpenTK.Platform namespace: OpenTK.Platform diff --git a/api/OpenTK.Platform.ContextSwapMethod.yml b/api/OpenTK.Platform.ContextSwapMethod.yml index af5dce04..d51cf7e0 100644 --- a/api/OpenTK.Platform.ContextSwapMethod.yml +++ b/api/OpenTK.Platform.ContextSwapMethod.yml @@ -18,7 +18,7 @@ items: source: id: ContextSwapMethod path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\ContextSettings.cs - startLine: 495 + startLine: 579 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -41,7 +41,7 @@ items: source: id: Undefined path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\ContextSettings.cs - startLine: 500 + startLine: 584 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -65,7 +65,7 @@ items: source: id: Exchange path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\ContextSettings.cs - startLine: 505 + startLine: 589 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -89,7 +89,7 @@ items: source: id: Copy path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\ContextSettings.cs - startLine: 511 + startLine: 595 assemblies: - OpenTK.Platform namespace: OpenTK.Platform diff --git a/api/OpenTK.Platform.ContextValues.yml b/api/OpenTK.Platform.ContextValues.yml index 73388855..80e89a76 100644 --- a/api/OpenTK.Platform.ContextValues.yml +++ b/api/OpenTK.Platform.ContextValues.yml @@ -18,6 +18,7 @@ items: - OpenTK.Platform.ContextValues.HasEqualColorBits(OpenTK.Platform.ContextValues,OpenTK.Platform.ContextValues) - OpenTK.Platform.ContextValues.HasEqualDepthBits(OpenTK.Platform.ContextValues,OpenTK.Platform.ContextValues) - OpenTK.Platform.ContextValues.HasEqualDoubleBuffer(OpenTK.Platform.ContextValues,OpenTK.Platform.ContextValues) + - OpenTK.Platform.ContextValues.HasEqualFramebufferTransparencySupport(OpenTK.Platform.ContextValues,OpenTK.Platform.ContextValues) - OpenTK.Platform.ContextValues.HasEqualMSAA(OpenTK.Platform.ContextValues,OpenTK.Platform.ContextValues) - OpenTK.Platform.ContextValues.HasEqualPixelFormat(OpenTK.Platform.ContextValues,OpenTK.Platform.ContextValues) - OpenTK.Platform.ContextValues.HasEqualSRGB(OpenTK.Platform.ContextValues,OpenTK.Platform.ContextValues) @@ -36,6 +37,7 @@ items: - OpenTK.Platform.ContextValues.SRGBFramebuffer - OpenTK.Platform.ContextValues.Samples - OpenTK.Platform.ContextValues.StencilBits + - OpenTK.Platform.ContextValues.SupportsFramebufferTransparency - OpenTK.Platform.ContextValues.SwapMethod - OpenTK.Platform.ContextValues.ToString - OpenTK.Platform.ContextValues.op_Equality(OpenTK.Platform.ContextValues,OpenTK.Platform.ContextValues) @@ -339,6 +341,38 @@ items: return: type: System.Int32 content.vb: Public Samples As Integer +- uid: OpenTK.Platform.ContextValues.SupportsFramebufferTransparency + commentId: F:OpenTK.Platform.ContextValues.SupportsFramebufferTransparency + id: SupportsFramebufferTransparency + parent: OpenTK.Platform.ContextValues + langs: + - csharp + - vb + name: SupportsFramebufferTransparency + nameWithType: ContextValues.SupportsFramebufferTransparency + fullName: OpenTK.Platform.ContextValues.SupportsFramebufferTransparency + type: Field + source: + id: SupportsFramebufferTransparency + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\ContextSettings.cs + startLine: 67 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: If this context configuration supports . + example: [] + syntax: + content: public bool SupportsFramebufferTransparency + return: + type: System.Boolean + content.vb: Public SupportsFramebufferTransparency As Boolean + seealso: + - linkId: OpenTK.Platform.WindowTransparencyMode.TransparentFramebuffer + commentId: F:OpenTK.Platform.WindowTransparencyMode.TransparentFramebuffer + - linkId: OpenTK.Platform.IWindowComponent.SetTransparencyMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowTransparencyMode,System.Single) + commentId: M:OpenTK.Platform.IWindowComponent.SetTransparencyMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowTransparencyMode,System.Single) + - linkId: OpenTK.Platform.IWindowComponent.GetTransparencyMode(OpenTK.Platform.WindowHandle,System.Single@) + commentId: M:OpenTK.Platform.IWindowComponent.GetTransparencyMode(OpenTK.Platform.WindowHandle,System.Single@) - uid: OpenTK.Platform.ContextValues.DefaultValuesSelector(System.Collections.Generic.IReadOnlyList{OpenTK.Platform.ContextValues},OpenTK.Platform.ContextValues,OpenTK.Core.Utility.ILogger) commentId: M:OpenTK.Platform.ContextValues.DefaultValuesSelector(System.Collections.Generic.IReadOnlyList{OpenTK.Platform.ContextValues},OpenTK.Platform.ContextValues,OpenTK.Core.Utility.ILogger) id: DefaultValuesSelector(System.Collections.Generic.IReadOnlyList{OpenTK.Platform.ContextValues},OpenTK.Platform.ContextValues,OpenTK.Core.Utility.ILogger) @@ -353,7 +387,7 @@ items: source: id: DefaultValuesSelector path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\ContextSettings.cs - startLine: 58 + startLine: 94 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -362,7 +396,7 @@ items: The relaxations are done in the following order: -
  1. If no exact match is found try find a format with a larger number of color, depth, or stencil bits.
  2. If == false is requested, == true formats will be accepted.
  3. If == , any swap method will be accepted.
  4. If == true, accept == false formats.
  5. Accept any .
  6. Decrement by one at a time until 0 and see if any alternative sample counts are possible.
  7. Accept any .
  8. Allow one of color bits (, , , and ), , or to be lower than requested.
  9. Allow two of color bits (, , , and ), , or to be lower than requested.
  10. Relax all bit requirements.
  11. If all relaxations fail, select the first option in the list.
+
  1. If no exact match is found try find a format with a larger number of color, depth, or stencil bits.
  2. If == false is requested, == true formats will be accepted.
  3. If == false is requested, == true formats will be accepted.
  4. If == , any swap method will be accepted.
  5. If == true, accept == false formats.
  6. If == true, accept == false formats.
  7. Accept any .
  8. Decrement by one at a time until 0 and see if any alternative sample counts are possible.
  9. Accept any .
  10. Allow one of color bits (, , , and ), , or to be lower than requested.
  11. Allow two of color bits (, , , and ), , or to be lower than requested.
  12. Relax all bit requirements.
  13. If all relaxations fail, select the first option in the list.
example: [] syntax: content: public static int DefaultValuesSelector(IReadOnlyList options, ContextValues requested, ILogger? logger) @@ -398,7 +432,7 @@ items: source: id: IsEqualExcludingID path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\ContextSettings.cs - startLine: 289 + startLine: 367 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -427,7 +461,7 @@ items: source: id: HasEqualColorBits path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\ContextSettings.cs - startLine: 304 + startLine: 383 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -456,7 +490,7 @@ items: source: id: HasGreaterOrEqualColorBits path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\ContextSettings.cs - startLine: 312 + startLine: 391 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -485,7 +519,7 @@ items: source: id: HasLessOrEqualColorBits path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\ContextSettings.cs - startLine: 320 + startLine: 399 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -514,7 +548,7 @@ items: source: id: HasEqualDepthBits path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\ContextSettings.cs - startLine: 328 + startLine: 407 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -543,7 +577,7 @@ items: source: id: HasGreaterOrEqualDepthBits path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\ContextSettings.cs - startLine: 333 + startLine: 412 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -572,7 +606,7 @@ items: source: id: HasLessOrEqualDepthBits path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\ContextSettings.cs - startLine: 338 + startLine: 417 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -601,7 +635,7 @@ items: source: id: HasEqualStencilBits path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\ContextSettings.cs - startLine: 343 + startLine: 422 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -630,7 +664,7 @@ items: source: id: HasGreaterOrEqualStencilBits path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\ContextSettings.cs - startLine: 348 + startLine: 427 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -659,7 +693,7 @@ items: source: id: HasLessOrEqualStencilBits path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\ContextSettings.cs - startLine: 353 + startLine: 432 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -688,7 +722,7 @@ items: source: id: HasEqualMSAA path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\ContextSettings.cs - startLine: 358 + startLine: 437 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -717,7 +751,7 @@ items: source: id: HasEqualDoubleBuffer path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\ContextSettings.cs - startLine: 363 + startLine: 442 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -746,7 +780,7 @@ items: source: id: HasEqualSRGB path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\ContextSettings.cs - startLine: 368 + startLine: 447 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -775,7 +809,7 @@ items: source: id: HasEqualPixelFormat path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\ContextSettings.cs - startLine: 373 + startLine: 452 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -804,7 +838,7 @@ items: source: id: HasEqualSwapMethod path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\ContextSettings.cs - startLine: 378 + startLine: 457 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -819,6 +853,35 @@ items: type: System.Boolean content.vb: Public Shared Function HasEqualSwapMethod([option] As ContextValues, requested As ContextValues) As Boolean overload: OpenTK.Platform.ContextValues.HasEqualSwapMethod* +- uid: OpenTK.Platform.ContextValues.HasEqualFramebufferTransparencySupport(OpenTK.Platform.ContextValues,OpenTK.Platform.ContextValues) + commentId: M:OpenTK.Platform.ContextValues.HasEqualFramebufferTransparencySupport(OpenTK.Platform.ContextValues,OpenTK.Platform.ContextValues) + id: HasEqualFramebufferTransparencySupport(OpenTK.Platform.ContextValues,OpenTK.Platform.ContextValues) + parent: OpenTK.Platform.ContextValues + langs: + - csharp + - vb + name: HasEqualFramebufferTransparencySupport(ContextValues, ContextValues) + nameWithType: ContextValues.HasEqualFramebufferTransparencySupport(ContextValues, ContextValues) + fullName: OpenTK.Platform.ContextValues.HasEqualFramebufferTransparencySupport(OpenTK.Platform.ContextValues, OpenTK.Platform.ContextValues) + type: Method + source: + id: HasEqualFramebufferTransparencySupport + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\ContextSettings.cs + startLine: 462 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + syntax: + content: public static bool HasEqualFramebufferTransparencySupport(ContextValues option, ContextValues requested) + parameters: + - id: option + type: OpenTK.Platform.ContextValues + - id: requested + type: OpenTK.Platform.ContextValues + return: + type: System.Boolean + content.vb: Public Shared Function HasEqualFramebufferTransparencySupport([option] As ContextValues, requested As ContextValues) As Boolean + overload: OpenTK.Platform.ContextValues.HasEqualFramebufferTransparencySupport* - uid: OpenTK.Platform.ContextValues.#ctor(System.UInt64,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Boolean,System.Boolean,OpenTK.Platform.ContextPixelFormat,OpenTK.Platform.ContextSwapMethod,System.Int32) commentId: M:OpenTK.Platform.ContextValues.#ctor(System.UInt64,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Boolean,System.Boolean,OpenTK.Platform.ContextPixelFormat,OpenTK.Platform.ContextSwapMethod,System.Int32) id: '#ctor(System.UInt64,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Boolean,System.Boolean,OpenTK.Platform.ContextPixelFormat,OpenTK.Platform.ContextSwapMethod,System.Int32)' @@ -833,7 +896,7 @@ items: source: id: .ctor path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\ContextSettings.cs - startLine: 383 + startLine: 467 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -883,7 +946,7 @@ items: source: id: Equals path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\ContextSettings.cs - startLine: 399 + startLine: 483 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -918,7 +981,7 @@ items: source: id: Equals path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\ContextSettings.cs - startLine: 404 + startLine: 488 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -951,7 +1014,7 @@ items: source: id: GetHashCode path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\ContextSettings.cs - startLine: 420 + startLine: 504 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -979,7 +1042,7 @@ items: source: id: op_Equality path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\ContextSettings.cs - startLine: 438 + startLine: 522 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -1011,7 +1074,7 @@ items: source: id: op_Inequality path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\ContextSettings.cs - startLine: 443 + startLine: 527 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -1043,7 +1106,7 @@ items: source: id: ToString path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\ContextSettings.cs - startLine: 448 + startLine: 532 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -1320,6 +1383,144 @@ references: name: ContextSwapMethod nameWithType: ContextSwapMethod fullName: OpenTK.Platform.ContextSwapMethod +- uid: OpenTK.Platform.WindowTransparencyMode.TransparentFramebuffer + commentId: F:OpenTK.Platform.WindowTransparencyMode.TransparentFramebuffer + href: OpenTK.Platform.WindowTransparencyMode.html#OpenTK_Platform_WindowTransparencyMode_TransparentFramebuffer + name: TransparentFramebuffer + nameWithType: WindowTransparencyMode.TransparentFramebuffer + fullName: OpenTK.Platform.WindowTransparencyMode.TransparentFramebuffer +- uid: OpenTK.Platform.IWindowComponent.SetTransparencyMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowTransparencyMode,System.Single) + commentId: M:OpenTK.Platform.IWindowComponent.SetTransparencyMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowTransparencyMode,System.Single) + parent: OpenTK.Platform.IWindowComponent + isExternal: true + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetTransparencyMode_OpenTK_Platform_WindowHandle_OpenTK_Platform_WindowTransparencyMode_System_Single_ + name: SetTransparencyMode(WindowHandle, WindowTransparencyMode, float) + nameWithType: IWindowComponent.SetTransparencyMode(WindowHandle, WindowTransparencyMode, float) + fullName: OpenTK.Platform.IWindowComponent.SetTransparencyMode(OpenTK.Platform.WindowHandle, OpenTK.Platform.WindowTransparencyMode, float) + nameWithType.vb: IWindowComponent.SetTransparencyMode(WindowHandle, WindowTransparencyMode, Single) + fullName.vb: OpenTK.Platform.IWindowComponent.SetTransparencyMode(OpenTK.Platform.WindowHandle, OpenTK.Platform.WindowTransparencyMode, Single) + name.vb: SetTransparencyMode(WindowHandle, WindowTransparencyMode, Single) + spec.csharp: + - uid: OpenTK.Platform.IWindowComponent.SetTransparencyMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowTransparencyMode,System.Single) + name: SetTransparencyMode + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetTransparencyMode_OpenTK_Platform_WindowHandle_OpenTK_Platform_WindowTransparencyMode_System_Single_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: OpenTK.Platform.WindowTransparencyMode + name: WindowTransparencyMode + href: OpenTK.Platform.WindowTransparencyMode.html + - name: ',' + - name: " " + - uid: System.Single + name: float + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.single + - name: ) + spec.vb: + - uid: OpenTK.Platform.IWindowComponent.SetTransparencyMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowTransparencyMode,System.Single) + name: SetTransparencyMode + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetTransparencyMode_OpenTK_Platform_WindowHandle_OpenTK_Platform_WindowTransparencyMode_System_Single_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: OpenTK.Platform.WindowTransparencyMode + name: WindowTransparencyMode + href: OpenTK.Platform.WindowTransparencyMode.html + - name: ',' + - name: " " + - uid: System.Single + name: Single + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.single + - name: ) +- uid: OpenTK.Platform.IWindowComponent.GetTransparencyMode(OpenTK.Platform.WindowHandle,System.Single@) + commentId: M:OpenTK.Platform.IWindowComponent.GetTransparencyMode(OpenTK.Platform.WindowHandle,System.Single@) + parent: OpenTK.Platform.IWindowComponent + isExternal: true + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetTransparencyMode_OpenTK_Platform_WindowHandle_System_Single__ + name: GetTransparencyMode(WindowHandle, out float) + nameWithType: IWindowComponent.GetTransparencyMode(WindowHandle, out float) + fullName: OpenTK.Platform.IWindowComponent.GetTransparencyMode(OpenTK.Platform.WindowHandle, out float) + nameWithType.vb: IWindowComponent.GetTransparencyMode(WindowHandle, Single) + fullName.vb: OpenTK.Platform.IWindowComponent.GetTransparencyMode(OpenTK.Platform.WindowHandle, Single) + name.vb: GetTransparencyMode(WindowHandle, Single) + spec.csharp: + - uid: OpenTK.Platform.IWindowComponent.GetTransparencyMode(OpenTK.Platform.WindowHandle,System.Single@) + name: GetTransparencyMode + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetTransparencyMode_OpenTK_Platform_WindowHandle_System_Single__ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - name: out + - name: " " + - uid: System.Single + name: float + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.single + - name: ) + spec.vb: + - uid: OpenTK.Platform.IWindowComponent.GetTransparencyMode(OpenTK.Platform.WindowHandle,System.Single@) + name: GetTransparencyMode + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetTransparencyMode_OpenTK_Platform_WindowHandle_System_Single__ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: System.Single + name: Single + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.single + - name: ) +- uid: OpenTK.Platform.IWindowComponent.SupportsFramebufferTransparency(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.SupportsFramebufferTransparency(OpenTK.Platform.WindowHandle) + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SupportsFramebufferTransparency_OpenTK_Platform_WindowHandle_ + name: SupportsFramebufferTransparency(WindowHandle) + nameWithType: IWindowComponent.SupportsFramebufferTransparency(WindowHandle) + fullName: OpenTK.Platform.IWindowComponent.SupportsFramebufferTransparency(OpenTK.Platform.WindowHandle) + spec.csharp: + - uid: OpenTK.Platform.IWindowComponent.SupportsFramebufferTransparency(OpenTK.Platform.WindowHandle) + name: SupportsFramebufferTransparency + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SupportsFramebufferTransparency_OpenTK_Platform_WindowHandle_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IWindowComponent.SupportsFramebufferTransparency(OpenTK.Platform.WindowHandle) + name: SupportsFramebufferTransparency + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SupportsFramebufferTransparency_OpenTK_Platform_WindowHandle_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ) +- uid: OpenTK.Platform.IWindowComponent + commentId: T:OpenTK.Platform.IWindowComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IWindowComponent.html + name: IWindowComponent + nameWithType: IWindowComponent + fullName: OpenTK.Platform.IWindowComponent +- uid: OpenTK.Platform.ContextValues.SupportsFramebufferTransparency + commentId: F:OpenTK.Platform.ContextValues.SupportsFramebufferTransparency + href: OpenTK.Platform.ContextValues.html#OpenTK_Platform_ContextValues_SupportsFramebufferTransparency + name: SupportsFramebufferTransparency + nameWithType: ContextValues.SupportsFramebufferTransparency + fullName: OpenTK.Platform.ContextValues.SupportsFramebufferTransparency - uid: OpenTK.Platform.ContextValues.SRGBFramebuffer commentId: F:OpenTK.Platform.ContextValues.SRGBFramebuffer href: OpenTK.Platform.ContextValues.html#OpenTK_Platform_ContextValues_SRGBFramebuffer @@ -1624,6 +1825,12 @@ references: name: HasEqualSwapMethod nameWithType: ContextValues.HasEqualSwapMethod fullName: OpenTK.Platform.ContextValues.HasEqualSwapMethod +- uid: OpenTK.Platform.ContextValues.HasEqualFramebufferTransparencySupport* + commentId: Overload:OpenTK.Platform.ContextValues.HasEqualFramebufferTransparencySupport + href: OpenTK.Platform.ContextValues.html#OpenTK_Platform_ContextValues_HasEqualFramebufferTransparencySupport_OpenTK_Platform_ContextValues_OpenTK_Platform_ContextValues_ + name: HasEqualFramebufferTransparencySupport + nameWithType: ContextValues.HasEqualFramebufferTransparencySupport + fullName: OpenTK.Platform.ContextValues.HasEqualFramebufferTransparencySupport - uid: OpenTK.Platform.ContextValues.#ctor* commentId: Overload:OpenTK.Platform.ContextValues.#ctor href: OpenTK.Platform.ContextValues.html#OpenTK_Platform_ContextValues__ctor_System_UInt64_System_Int32_System_Int32_System_Int32_System_Int32_System_Int32_System_Int32_System_Boolean_System_Boolean_OpenTK_Platform_ContextPixelFormat_OpenTK_Platform_ContextSwapMethod_System_Int32_ diff --git a/api/OpenTK.Platform.DialogFileFilter.yml b/api/OpenTK.Platform.DialogFileFilter.yml index fea731c3..ef1617ab 100644 --- a/api/OpenTK.Platform.DialogFileFilter.yml +++ b/api/OpenTK.Platform.DialogFileFilter.yml @@ -78,14 +78,14 @@ items: source: id: Filter path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\DialogFileFilter.cs - startLine: 22 + startLine: 23 assemblies: - OpenTK.Platform namespace: OpenTK.Platform - summary: The file extension filter. The format of this string is "ext1;ext2". Use * to match any files. + summary: The file extension filter. The format of this string is "ext1;ext2;ext3". Use * to match any files. example: - >- - new DialogFileFilter(){ Name="Images", Filter="png;jpg;jpeg" }; +
new DialogFileFilter(){ Name="Images", Filter="png;jpg;jpeg" };
This creates a file filter that will match any files ending in png, jpg, or jpeg. syntax: @@ -107,12 +107,16 @@ items: source: id: .ctor path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\DialogFileFilter.cs - startLine: 29 + startLine: 38 assemblies: - OpenTK.Platform namespace: OpenTK.Platform summary: Initializes a new instance of the struct. - example: [] + example: + - >- +
new DialogFileFilter(){ Name="Images", Filter="png;jpg;jpeg" };
+ + This creates a file filter that will match any files ending in png, jpg, or jpeg. syntax: content: public DialogFileFilter(string name, string filter) parameters: @@ -121,9 +125,18 @@ items: description: The display name of the filter. - id: filter type: System.String - description: The filter string. + description: The filter string. for format details. content.vb: Public Sub New(name As String, filter As String) overload: OpenTK.Platform.DialogFileFilter.#ctor* + seealso: + - linkId: OpenTK.Platform.DialogFileFilter.Name + commentId: F:OpenTK.Platform.DialogFileFilter.Name + - linkId: OpenTK.Platform.DialogFileFilter.Filter + commentId: F:OpenTK.Platform.DialogFileFilter.Filter + - linkId: OpenTK.Platform.IDialogComponent.ShowOpenDialog(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.DialogFileFilter[],OpenTK.Platform.OpenDialogOptions) + commentId: M:OpenTK.Platform.IDialogComponent.ShowOpenDialog(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.DialogFileFilter[],OpenTK.Platform.OpenDialogOptions) + - linkId: OpenTK.Platform.IDialogComponent.ShowSaveDialog(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.DialogFileFilter[],OpenTK.Platform.SaveDialogOptions) + commentId: M:OpenTK.Platform.IDialogComponent.ShowSaveDialog(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.DialogFileFilter[],OpenTK.Platform.SaveDialogOptions) nameWithType.vb: DialogFileFilter.New(String, String) fullName.vb: OpenTK.Platform.DialogFileFilter.New(String, String) name.vb: New(String, String) @@ -141,7 +154,7 @@ items: source: id: Equals path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\DialogFileFilter.cs - startLine: 36 + startLine: 45 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -176,7 +189,7 @@ items: source: id: Equals path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\DialogFileFilter.cs - startLine: 42 + startLine: 51 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -209,7 +222,7 @@ items: source: id: GetHashCode path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\DialogFileFilter.cs - startLine: 49 + startLine: 58 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -237,7 +250,7 @@ items: source: id: op_Equality path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\DialogFileFilter.cs - startLine: 60 + startLine: 69 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -274,7 +287,7 @@ items: source: id: op_Inequality path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\DialogFileFilter.cs - startLine: 71 + startLine: 80 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -311,7 +324,7 @@ items: source: id: ToString path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\DialogFileFilter.cs - startLine: 80 + startLine: 89 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -552,6 +565,172 @@ references: nameWithType.vb: String fullName.vb: String name.vb: String +- uid: OpenTK.Platform.DialogFileFilter.Name + commentId: F:OpenTK.Platform.DialogFileFilter.Name + href: OpenTK.Platform.DialogFileFilter.html#OpenTK_Platform_DialogFileFilter_Name + name: Name + nameWithType: DialogFileFilter.Name + fullName: OpenTK.Platform.DialogFileFilter.Name +- uid: OpenTK.Platform.DialogFileFilter.Filter + commentId: F:OpenTK.Platform.DialogFileFilter.Filter + href: OpenTK.Platform.DialogFileFilter.html#OpenTK_Platform_DialogFileFilter_Filter + name: Filter + nameWithType: DialogFileFilter.Filter + fullName: OpenTK.Platform.DialogFileFilter.Filter +- uid: OpenTK.Platform.IDialogComponent.ShowOpenDialog(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.DialogFileFilter[],OpenTK.Platform.OpenDialogOptions) + commentId: M:OpenTK.Platform.IDialogComponent.ShowOpenDialog(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.DialogFileFilter[],OpenTK.Platform.OpenDialogOptions) + parent: OpenTK.Platform.IDialogComponent + isExternal: true + href: OpenTK.Platform.IDialogComponent.html#OpenTK_Platform_IDialogComponent_ShowOpenDialog_OpenTK_Platform_WindowHandle_System_String_System_String_OpenTK_Platform_DialogFileFilter___OpenTK_Platform_OpenDialogOptions_ + name: ShowOpenDialog(WindowHandle, string, string, DialogFileFilter[], OpenDialogOptions) + nameWithType: IDialogComponent.ShowOpenDialog(WindowHandle, string, string, DialogFileFilter[], OpenDialogOptions) + fullName: OpenTK.Platform.IDialogComponent.ShowOpenDialog(OpenTK.Platform.WindowHandle, string, string, OpenTK.Platform.DialogFileFilter[], OpenTK.Platform.OpenDialogOptions) + nameWithType.vb: IDialogComponent.ShowOpenDialog(WindowHandle, String, String, DialogFileFilter(), OpenDialogOptions) + fullName.vb: OpenTK.Platform.IDialogComponent.ShowOpenDialog(OpenTK.Platform.WindowHandle, String, String, OpenTK.Platform.DialogFileFilter(), OpenTK.Platform.OpenDialogOptions) + name.vb: ShowOpenDialog(WindowHandle, String, String, DialogFileFilter(), OpenDialogOptions) + spec.csharp: + - uid: OpenTK.Platform.IDialogComponent.ShowOpenDialog(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.DialogFileFilter[],OpenTK.Platform.OpenDialogOptions) + name: ShowOpenDialog + href: OpenTK.Platform.IDialogComponent.html#OpenTK_Platform_IDialogComponent_ShowOpenDialog_OpenTK_Platform_WindowHandle_System_String_System_String_OpenTK_Platform_DialogFileFilter___OpenTK_Platform_OpenDialogOptions_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: System.String + name: string + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ',' + - name: " " + - uid: System.String + name: string + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ',' + - name: " " + - uid: OpenTK.Platform.DialogFileFilter + name: DialogFileFilter + href: OpenTK.Platform.DialogFileFilter.html + - name: '[' + - name: ']' + - name: ',' + - name: " " + - uid: OpenTK.Platform.OpenDialogOptions + name: OpenDialogOptions + href: OpenTK.Platform.OpenDialogOptions.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IDialogComponent.ShowOpenDialog(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.DialogFileFilter[],OpenTK.Platform.OpenDialogOptions) + name: ShowOpenDialog + href: OpenTK.Platform.IDialogComponent.html#OpenTK_Platform_IDialogComponent_ShowOpenDialog_OpenTK_Platform_WindowHandle_System_String_System_String_OpenTK_Platform_DialogFileFilter___OpenTK_Platform_OpenDialogOptions_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: System.String + name: String + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ',' + - name: " " + - uid: System.String + name: String + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ',' + - name: " " + - uid: OpenTK.Platform.DialogFileFilter + name: DialogFileFilter + href: OpenTK.Platform.DialogFileFilter.html + - name: ( + - name: ) + - name: ',' + - name: " " + - uid: OpenTK.Platform.OpenDialogOptions + name: OpenDialogOptions + href: OpenTK.Platform.OpenDialogOptions.html + - name: ) +- uid: OpenTK.Platform.IDialogComponent.ShowSaveDialog(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.DialogFileFilter[],OpenTK.Platform.SaveDialogOptions) + commentId: M:OpenTK.Platform.IDialogComponent.ShowSaveDialog(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.DialogFileFilter[],OpenTK.Platform.SaveDialogOptions) + parent: OpenTK.Platform.IDialogComponent + isExternal: true + href: OpenTK.Platform.IDialogComponent.html#OpenTK_Platform_IDialogComponent_ShowSaveDialog_OpenTK_Platform_WindowHandle_System_String_System_String_OpenTK_Platform_DialogFileFilter___OpenTK_Platform_SaveDialogOptions_ + name: ShowSaveDialog(WindowHandle, string, string, DialogFileFilter[], SaveDialogOptions) + nameWithType: IDialogComponent.ShowSaveDialog(WindowHandle, string, string, DialogFileFilter[], SaveDialogOptions) + fullName: OpenTK.Platform.IDialogComponent.ShowSaveDialog(OpenTK.Platform.WindowHandle, string, string, OpenTK.Platform.DialogFileFilter[], OpenTK.Platform.SaveDialogOptions) + nameWithType.vb: IDialogComponent.ShowSaveDialog(WindowHandle, String, String, DialogFileFilter(), SaveDialogOptions) + fullName.vb: OpenTK.Platform.IDialogComponent.ShowSaveDialog(OpenTK.Platform.WindowHandle, String, String, OpenTK.Platform.DialogFileFilter(), OpenTK.Platform.SaveDialogOptions) + name.vb: ShowSaveDialog(WindowHandle, String, String, DialogFileFilter(), SaveDialogOptions) + spec.csharp: + - uid: OpenTK.Platform.IDialogComponent.ShowSaveDialog(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.DialogFileFilter[],OpenTK.Platform.SaveDialogOptions) + name: ShowSaveDialog + href: OpenTK.Platform.IDialogComponent.html#OpenTK_Platform_IDialogComponent_ShowSaveDialog_OpenTK_Platform_WindowHandle_System_String_System_String_OpenTK_Platform_DialogFileFilter___OpenTK_Platform_SaveDialogOptions_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: System.String + name: string + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ',' + - name: " " + - uid: System.String + name: string + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ',' + - name: " " + - uid: OpenTK.Platform.DialogFileFilter + name: DialogFileFilter + href: OpenTK.Platform.DialogFileFilter.html + - name: '[' + - name: ']' + - name: ',' + - name: " " + - uid: OpenTK.Platform.SaveDialogOptions + name: SaveDialogOptions + href: OpenTK.Platform.SaveDialogOptions.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IDialogComponent.ShowSaveDialog(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.DialogFileFilter[],OpenTK.Platform.SaveDialogOptions) + name: ShowSaveDialog + href: OpenTK.Platform.IDialogComponent.html#OpenTK_Platform_IDialogComponent_ShowSaveDialog_OpenTK_Platform_WindowHandle_System_String_System_String_OpenTK_Platform_DialogFileFilter___OpenTK_Platform_SaveDialogOptions_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: System.String + name: String + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ',' + - name: " " + - uid: System.String + name: String + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ',' + - name: " " + - uid: OpenTK.Platform.DialogFileFilter + name: DialogFileFilter + href: OpenTK.Platform.DialogFileFilter.html + - name: ( + - name: ) + - name: ',' + - name: " " + - uid: OpenTK.Platform.SaveDialogOptions + name: SaveDialogOptions + href: OpenTK.Platform.SaveDialogOptions.html + - name: ) - uid: OpenTK.Platform.DialogFileFilter commentId: T:OpenTK.Platform.DialogFileFilter parent: OpenTK.Platform @@ -568,6 +747,13 @@ references: nameWithType.vb: DialogFileFilter.New fullName.vb: OpenTK.Platform.DialogFileFilter.New name.vb: New +- uid: OpenTK.Platform.IDialogComponent + commentId: T:OpenTK.Platform.IDialogComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IDialogComponent.html + name: IDialogComponent + nameWithType: IDialogComponent + fullName: OpenTK.Platform.IDialogComponent - uid: System.ValueType.Equals(System.Object) commentId: M:System.ValueType.Equals(System.Object) parent: System.ValueType diff --git a/api/OpenTK.Platform.DisplayConnectionChangedEventArgs.yml b/api/OpenTK.Platform.DisplayConnectionChangedEventArgs.yml index 41d55308..22a66152 100644 --- a/api/OpenTK.Platform.DisplayConnectionChangedEventArgs.yml +++ b/api/OpenTK.Platform.DisplayConnectionChangedEventArgs.yml @@ -18,7 +18,7 @@ items: source: id: DisplayConnectionChangedEventArgs path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\WindowEventArgs.cs - startLine: 629 + startLine: 637 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -53,7 +53,7 @@ items: source: id: Display path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\WindowEventArgs.cs - startLine: 634 + startLine: 642 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -80,7 +80,7 @@ items: source: id: Disconnected path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\WindowEventArgs.cs - startLine: 639 + startLine: 647 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -107,7 +107,7 @@ items: source: id: .ctor path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\WindowEventArgs.cs - startLine: 647 + startLine: 655 assemblies: - OpenTK.Platform namespace: OpenTK.Platform diff --git a/api/OpenTK.Platform.FileDropEventArgs.yml b/api/OpenTK.Platform.FileDropEventArgs.yml index e1459cfc..8c1273c0 100644 --- a/api/OpenTK.Platform.FileDropEventArgs.yml +++ b/api/OpenTK.Platform.FileDropEventArgs.yml @@ -18,7 +18,7 @@ items: source: id: FileDropEventArgs path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\WindowEventArgs.cs - startLine: 559 + startLine: 565 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -55,7 +55,7 @@ items: source: id: FilePaths path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\WindowEventArgs.cs - startLine: 564 + startLine: 570 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -82,7 +82,7 @@ items: source: id: Position path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\WindowEventArgs.cs - startLine: 569 + startLine: 575 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -109,7 +109,7 @@ items: source: id: .ctor path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\WindowEventArgs.cs - startLine: 577 + startLine: 583 assemblies: - OpenTK.Platform namespace: OpenTK.Platform diff --git a/api/OpenTK.Platform.GraphicsApiHints.yml b/api/OpenTK.Platform.GraphicsApiHints.yml index f2aa6c79..4e314757 100644 --- a/api/OpenTK.Platform.GraphicsApiHints.yml +++ b/api/OpenTK.Platform.GraphicsApiHints.yml @@ -29,6 +29,7 @@ items: - System.Object derivedClasses: - OpenTK.Platform.OpenGLGraphicsApiHints + - OpenTK.Platform.VulkanGraphicsApiHints inheritedMembers: - System.Object.Equals(System.Object) - System.Object.Equals(System.Object,System.Object) diff --git a/api/OpenTK.Platform.HitTest.yml b/api/OpenTK.Platform.HitTest.yml index a0a618c3..a74cb954 100644 --- a/api/OpenTK.Platform.HitTest.yml +++ b/api/OpenTK.Platform.HitTest.yml @@ -15,7 +15,7 @@ items: source: id: HitTest path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IWindowComponent.cs - startLine: 19 + startLine: 20 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -42,7 +42,45 @@ items: type: OpenTK.Platform.HitType description: The result of the hit test. content.vb: Public Delegate Function HitTest(handle As WindowHandle, position As Vector2) As HitType + seealso: + - linkId: OpenTK.Platform.IWindowComponent.SetHitTestCallback(OpenTK.Platform.WindowHandle,OpenTK.Platform.HitTest) + commentId: M:OpenTK.Platform.IWindowComponent.SetHitTestCallback(OpenTK.Platform.WindowHandle,OpenTK.Platform.HitTest) references: +- uid: OpenTK.Platform.IWindowComponent.SetHitTestCallback(OpenTK.Platform.WindowHandle,OpenTK.Platform.HitTest) + commentId: M:OpenTK.Platform.IWindowComponent.SetHitTestCallback(OpenTK.Platform.WindowHandle,OpenTK.Platform.HitTest) + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetHitTestCallback_OpenTK_Platform_WindowHandle_OpenTK_Platform_HitTest_ + name: SetHitTestCallback(WindowHandle, HitTest) + nameWithType: IWindowComponent.SetHitTestCallback(WindowHandle, HitTest) + fullName: OpenTK.Platform.IWindowComponent.SetHitTestCallback(OpenTK.Platform.WindowHandle, OpenTK.Platform.HitTest) + spec.csharp: + - uid: OpenTK.Platform.IWindowComponent.SetHitTestCallback(OpenTK.Platform.WindowHandle,OpenTK.Platform.HitTest) + name: SetHitTestCallback + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetHitTestCallback_OpenTK_Platform_WindowHandle_OpenTK_Platform_HitTest_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: OpenTK.Platform.HitTest + name: HitTest + href: OpenTK.Platform.HitTest.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IWindowComponent.SetHitTestCallback(OpenTK.Platform.WindowHandle,OpenTK.Platform.HitTest) + name: SetHitTestCallback + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetHitTestCallback_OpenTK_Platform_WindowHandle_OpenTK_Platform_HitTest_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: OpenTK.Platform.HitTest + name: HitTest + href: OpenTK.Platform.HitTest.html + - name: ) - uid: OpenTK.Platform commentId: N:OpenTK.Platform href: OpenTK.html @@ -86,6 +124,13 @@ references: name: HitType nameWithType: HitType fullName: OpenTK.Platform.HitType +- uid: OpenTK.Platform.IWindowComponent + commentId: T:OpenTK.Platform.IWindowComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IWindowComponent.html + name: IWindowComponent + nameWithType: IWindowComponent + fullName: OpenTK.Platform.IWindowComponent - uid: OpenTK.Mathematics commentId: N:OpenTK.Mathematics href: OpenTK.html diff --git a/api/OpenTK.Platform.IClipboardComponent.yml b/api/OpenTK.Platform.IClipboardComponent.yml index 95295461..71d7994e 100644 --- a/api/OpenTK.Platform.IClipboardComponent.yml +++ b/api/OpenTK.Platform.IClipboardComponent.yml @@ -10,6 +10,7 @@ items: - OpenTK.Platform.IClipboardComponent.GetClipboardFiles - OpenTK.Platform.IClipboardComponent.GetClipboardFormat - OpenTK.Platform.IClipboardComponent.GetClipboardText + - OpenTK.Platform.IClipboardComponent.SetClipboardBitmap(OpenTK.Platform.Bitmap) - OpenTK.Platform.IClipboardComponent.SetClipboardText(System.String) - OpenTK.Platform.IClipboardComponent.SupportedFormats langs: @@ -31,11 +32,15 @@ items: syntax: content: 'public interface IClipboardComponent : IPalComponent' content.vb: Public Interface IClipboardComponent Inherits IPalComponent + seealso: + - linkId: OpenTK.Platform.Toolkit.Clipboard + commentId: P:OpenTK.Platform.Toolkit.Clipboard inheritedMembers: - OpenTK.Platform.IPalComponent.Name - OpenTK.Platform.IPalComponent.Provides - OpenTK.Platform.IPalComponent.Logger - OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + - OpenTK.Platform.IPalComponent.Uninitialize - uid: OpenTK.Platform.IClipboardComponent.SupportedFormats commentId: P:OpenTK.Platform.IClipboardComponent.SupportedFormats id: SupportedFormats @@ -50,7 +55,7 @@ items: source: id: SupportedFormats path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IClipboardComponent.cs - startLine: 19 + startLine: 21 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -63,6 +68,11 @@ items: type: System.Collections.Generic.IReadOnlyList{OpenTK.Platform.ClipboardFormat} content.vb: ReadOnly Property SupportedFormats As IReadOnlyList(Of ClipboardFormat) overload: OpenTK.Platform.IClipboardComponent.SupportedFormats* + seealso: + - linkId: OpenTK.Platform.IClipboardComponent.GetClipboardFormat + commentId: M:OpenTK.Platform.IClipboardComponent.GetClipboardFormat + - linkId: OpenTK.Platform.ClipboardFormat + commentId: T:OpenTK.Platform.ClipboardFormat - uid: OpenTK.Platform.IClipboardComponent.GetClipboardFormat commentId: M:OpenTK.Platform.IClipboardComponent.GetClipboardFormat id: GetClipboardFormat @@ -77,7 +87,7 @@ items: source: id: GetClipboardFormat path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IClipboardComponent.cs - startLine: 25 + startLine: 28 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -90,6 +100,9 @@ items: description: The format of the data currently in the clipboard. content.vb: Function GetClipboardFormat() As ClipboardFormat overload: OpenTK.Platform.IClipboardComponent.GetClipboardFormat* + seealso: + - linkId: OpenTK.Platform.ClipboardFormat + commentId: T:OpenTK.Platform.ClipboardFormat - uid: OpenTK.Platform.IClipboardComponent.SetClipboardText(System.String) commentId: M:OpenTK.Platform.IClipboardComponent.SetClipboardText(System.String) id: SetClipboardText(System.String) @@ -104,7 +117,7 @@ items: source: id: SetClipboardText path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IClipboardComponent.cs - startLine: 31 + startLine: 35 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -115,9 +128,12 @@ items: parameters: - id: text type: System.String - description: The text to put on the clipboard. + description: The text to write to the clipboard. content.vb: Sub SetClipboardText(text As String) overload: OpenTK.Platform.IClipboardComponent.SetClipboardText* + seealso: + - linkId: OpenTK.Platform.IClipboardComponent.GetClipboardFormat + commentId: M:OpenTK.Platform.IClipboardComponent.GetClipboardFormat nameWithType.vb: IClipboardComponent.SetClipboardText(String) fullName.vb: OpenTK.Platform.IClipboardComponent.SetClipboardText(String) name.vb: SetClipboardText(String) @@ -135,22 +151,25 @@ items: source: id: GetClipboardText path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IClipboardComponent.cs - startLine: 38 + startLine: 43 assemblies: - OpenTK.Platform namespace: OpenTK.Platform summary: >- - Returns the string currently in the clipboard. + Gets the string currently in the clipboard. - This function returns null if the current clipboard data doesn't have the format. + This function returns null if the current clipboard data doesn't have the format. example: [] syntax: content: string? GetClipboardText() return: type: System.String - description: The string currently in the clipboard, or null. + description: The string currently in the clipboard, or null. content.vb: Function GetClipboardText() As String overload: OpenTK.Platform.IClipboardComponent.GetClipboardText* + seealso: + - linkId: OpenTK.Platform.IClipboardComponent.GetClipboardFormat + commentId: M:OpenTK.Platform.IClipboardComponent.GetClipboardFormat - uid: OpenTK.Platform.IClipboardComponent.GetClipboardAudio commentId: M:OpenTK.Platform.IClipboardComponent.GetClipboardAudio id: GetClipboardAudio @@ -165,22 +184,66 @@ items: source: id: GetClipboardAudio path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IClipboardComponent.cs - startLine: 45 + startLine: 51 assemblies: - OpenTK.Platform namespace: OpenTK.Platform summary: >- Gets the audio data currently in the clipboard. - This function returns null if the current clipboard data doesn't have the format. + This function returns null if the current clipboard data doesn't have the format. example: [] syntax: content: AudioData? GetClipboardAudio() return: type: OpenTK.Platform.AudioData - description: The audio data currently in the clipboard. + description: The audio data currently in the clipboard, or null. content.vb: Function GetClipboardAudio() As AudioData overload: OpenTK.Platform.IClipboardComponent.GetClipboardAudio* + seealso: + - linkId: OpenTK.Platform.IClipboardComponent.GetClipboardFormat + commentId: M:OpenTK.Platform.IClipboardComponent.GetClipboardFormat +- uid: OpenTK.Platform.IClipboardComponent.SetClipboardBitmap(OpenTK.Platform.Bitmap) + commentId: M:OpenTK.Platform.IClipboardComponent.SetClipboardBitmap(OpenTK.Platform.Bitmap) + id: SetClipboardBitmap(OpenTK.Platform.Bitmap) + parent: OpenTK.Platform.IClipboardComponent + langs: + - csharp + - vb + name: SetClipboardBitmap(Bitmap) + nameWithType: IClipboardComponent.SetClipboardBitmap(Bitmap) + fullName: OpenTK.Platform.IClipboardComponent.SetClipboardBitmap(OpenTK.Platform.Bitmap) + type: Method + source: + id: SetClipboardBitmap + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IClipboardComponent.cs + startLine: 66 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Writes a bitmap to the clipboard. + remarks: >- + On linux clipboard bitmaps are defacto transferred as PNG data, as such a PNG encoder/decoder is needed to read and write bitmaps from the clipboard. + + To enable this must be called with an object that implements the interface. + + If this is not done, and will both throw an exception. + example: [] + syntax: + content: void SetClipboardBitmap(Bitmap bitmap) + parameters: + - id: bitmap + type: OpenTK.Platform.Bitmap + description: The bitmap to write to the clipboard. + content.vb: Sub SetClipboardBitmap(bitmap As Bitmap) + overload: OpenTK.Platform.IClipboardComponent.SetClipboardBitmap* + seealso: + - linkId: OpenTK.Platform.IClipboardComponent.GetClipboardFormat + commentId: M:OpenTK.Platform.IClipboardComponent.GetClipboardFormat + - linkId: OpenTK.Platform.Native.X11.X11ClipboardComponent.SetPngCodec(OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec) + commentId: M:OpenTK.Platform.Native.X11.X11ClipboardComponent.SetPngCodec(OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec) + - linkId: OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec + commentId: T:OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec - uid: OpenTK.Platform.IClipboardComponent.GetClipboardBitmap commentId: M:OpenTK.Platform.IClipboardComponent.GetClipboardBitmap id: GetClipboardBitmap @@ -195,22 +258,35 @@ items: source: id: GetClipboardBitmap path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IClipboardComponent.cs - startLine: 53 + startLine: 82 assemblies: - OpenTK.Platform namespace: OpenTK.Platform summary: >- Gets the bitmap currently in the clipboard. - This function returns null if the current clipboard data doesn't have the format. + This function returns null if the current clipboard data doesn't have the format. + remarks: >- + On linux clipboard bitmaps are defacto transferred as PNG data, as such a PNG encoder/decoder is needed to read and write bitmaps from the clipboard. + + To enable this must be called with an object that implements the interface. + + If this is not done, and will both throw an exception. example: [] syntax: content: Bitmap? GetClipboardBitmap() return: type: OpenTK.Platform.Bitmap - description: The bitmap currently in the clipboard. + description: The bitmap currently in the clipboard, or null. content.vb: Function GetClipboardBitmap() As Bitmap overload: OpenTK.Platform.IClipboardComponent.GetClipboardBitmap* + seealso: + - linkId: OpenTK.Platform.IClipboardComponent.GetClipboardFormat + commentId: M:OpenTK.Platform.IClipboardComponent.GetClipboardFormat + - linkId: OpenTK.Platform.Native.X11.X11ClipboardComponent.SetPngCodec(OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec) + commentId: M:OpenTK.Platform.Native.X11.X11ClipboardComponent.SetPngCodec(OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec) + - linkId: OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec + commentId: T:OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec - uid: OpenTK.Platform.IClipboardComponent.GetClipboardFiles commentId: M:OpenTK.Platform.IClipboardComponent.GetClipboardFiles id: GetClipboardFiles @@ -225,23 +301,32 @@ items: source: id: GetClipboardFiles path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IClipboardComponent.cs - startLine: 60 + startLine: 90 assemblies: - OpenTK.Platform namespace: OpenTK.Platform summary: >- Gets a list of files and directories currently in the clipboard. - This function returns null if the current clipboard data doesn't have the format. + This function returns null if the current clipboard data doesn't have the format. example: [] syntax: content: List? GetClipboardFiles() return: type: System.Collections.Generic.List{System.String} - description: The list of files and directories currently in the clipboard. + description: The list of files and directories currently in the clipboard, or null. content.vb: Function GetClipboardFiles() As List(Of String) overload: OpenTK.Platform.IClipboardComponent.GetClipboardFiles* + seealso: + - linkId: OpenTK.Platform.IClipboardComponent.GetClipboardFormat + commentId: M:OpenTK.Platform.IClipboardComponent.GetClipboardFormat references: +- uid: OpenTK.Platform.Toolkit.Clipboard + commentId: P:OpenTK.Platform.Toolkit.Clipboard + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Clipboard + name: Clipboard + nameWithType: Toolkit.Clipboard + fullName: OpenTK.Platform.Toolkit.Clipboard - uid: OpenTK.Platform commentId: N:OpenTK.Platform href: OpenTK.html @@ -310,6 +395,25 @@ references: name: ToolkitOptions href: OpenTK.Platform.ToolkitOptions.html - name: ) +- uid: OpenTK.Platform.IPalComponent.Uninitialize + commentId: M:OpenTK.Platform.IPalComponent.Uninitialize + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + name: Uninitialize() + nameWithType: IPalComponent.Uninitialize() + fullName: OpenTK.Platform.IPalComponent.Uninitialize() + spec.csharp: + - uid: OpenTK.Platform.IPalComponent.Uninitialize + name: Uninitialize + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + - name: ( + - name: ) + spec.vb: + - uid: OpenTK.Platform.IPalComponent.Uninitialize + name: Uninitialize + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + - name: ( + - name: ) - uid: OpenTK.Platform.IPalComponent commentId: T:OpenTK.Platform.IPalComponent parent: OpenTK.Platform @@ -317,6 +421,32 @@ references: name: IPalComponent nameWithType: IPalComponent fullName: OpenTK.Platform.IPalComponent +- uid: OpenTK.Platform.IClipboardComponent.GetClipboardFormat + commentId: M:OpenTK.Platform.IClipboardComponent.GetClipboardFormat + parent: OpenTK.Platform.IClipboardComponent + href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_GetClipboardFormat + name: GetClipboardFormat() + nameWithType: IClipboardComponent.GetClipboardFormat() + fullName: OpenTK.Platform.IClipboardComponent.GetClipboardFormat() + spec.csharp: + - uid: OpenTK.Platform.IClipboardComponent.GetClipboardFormat + name: GetClipboardFormat + href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_GetClipboardFormat + - name: ( + - name: ) + spec.vb: + - uid: OpenTK.Platform.IClipboardComponent.GetClipboardFormat + name: GetClipboardFormat + href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_GetClipboardFormat + - name: ( + - name: ) +- uid: OpenTK.Platform.ClipboardFormat + commentId: T:OpenTK.Platform.ClipboardFormat + parent: OpenTK.Platform + href: OpenTK.Platform.ClipboardFormat.html + name: ClipboardFormat + nameWithType: ClipboardFormat + fullName: OpenTK.Platform.ClipboardFormat - uid: OpenTK.Platform.IClipboardComponent.SupportedFormats* commentId: Overload:OpenTK.Platform.IClipboardComponent.SupportedFormats href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_SupportedFormats @@ -356,6 +486,13 @@ references: name: ClipboardFormat href: OpenTK.Platform.ClipboardFormat.html - name: ) +- uid: OpenTK.Platform.IClipboardComponent + commentId: T:OpenTK.Platform.IClipboardComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IClipboardComponent.html + name: IClipboardComponent + nameWithType: IClipboardComponent + fullName: OpenTK.Platform.IClipboardComponent - uid: System.Collections.Generic.IReadOnlyList`1 commentId: T:System.Collections.Generic.IReadOnlyList`1 isExternal: true @@ -427,13 +564,6 @@ references: name: GetClipboardFormat nameWithType: IClipboardComponent.GetClipboardFormat fullName: OpenTK.Platform.IClipboardComponent.GetClipboardFormat -- uid: OpenTK.Platform.ClipboardFormat - commentId: T:OpenTK.Platform.ClipboardFormat - parent: OpenTK.Platform - href: OpenTK.Platform.ClipboardFormat.html - name: ClipboardFormat - nameWithType: ClipboardFormat - fullName: OpenTK.Platform.ClipboardFormat - uid: OpenTK.Platform.IClipboardComponent.SetClipboardText* commentId: Overload:OpenTK.Platform.IClipboardComponent.SetClipboardText href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_SetClipboardText_System_String_ @@ -489,6 +619,148 @@ references: name: AudioData nameWithType: AudioData fullName: OpenTK.Platform.AudioData +- uid: OpenTK.Platform.Native.X11.X11ClipboardComponent.SetPngCodec(OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec) + commentId: M:OpenTK.Platform.Native.X11.X11ClipboardComponent.SetPngCodec(OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec) + href: OpenTK.Platform.Native.X11.X11ClipboardComponent.html#OpenTK_Platform_Native_X11_X11ClipboardComponent_SetPngCodec_OpenTK_Platform_Native_X11_X11ClipboardComponent_IPngCodec_ + name: SetPngCodec(IPngCodec) + nameWithType: X11ClipboardComponent.SetPngCodec(X11ClipboardComponent.IPngCodec) + fullName: OpenTK.Platform.Native.X11.X11ClipboardComponent.SetPngCodec(OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec) + spec.csharp: + - uid: OpenTK.Platform.Native.X11.X11ClipboardComponent.SetPngCodec(OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec) + name: SetPngCodec + href: OpenTK.Platform.Native.X11.X11ClipboardComponent.html#OpenTK_Platform_Native_X11_X11ClipboardComponent_SetPngCodec_OpenTK_Platform_Native_X11_X11ClipboardComponent_IPngCodec_ + - name: ( + - uid: OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec + name: IPngCodec + href: OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.Native.X11.X11ClipboardComponent.SetPngCodec(OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec) + name: SetPngCodec + href: OpenTK.Platform.Native.X11.X11ClipboardComponent.html#OpenTK_Platform_Native_X11_X11ClipboardComponent_SetPngCodec_OpenTK_Platform_Native_X11_X11ClipboardComponent_IPngCodec_ + - name: ( + - uid: OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec + name: IPngCodec + href: OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec.html + - name: ) +- uid: OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec + commentId: T:OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec + parent: OpenTK.Platform.Native.X11 + href: OpenTK.Platform.Native.X11.X11ClipboardComponent.html + name: X11ClipboardComponent.IPngCodec + nameWithType: X11ClipboardComponent.IPngCodec + fullName: OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec + spec.csharp: + - uid: OpenTK.Platform.Native.X11.X11ClipboardComponent + name: X11ClipboardComponent + href: OpenTK.Platform.Native.X11.X11ClipboardComponent.html + - name: . + - uid: OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec + name: IPngCodec + href: OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec.html + spec.vb: + - uid: OpenTK.Platform.Native.X11.X11ClipboardComponent + name: X11ClipboardComponent + href: OpenTK.Platform.Native.X11.X11ClipboardComponent.html + - name: . + - uid: OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec + name: IPngCodec + href: OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec.html +- uid: OpenTK.Platform.IClipboardComponent.SetClipboardBitmap(OpenTK.Platform.Bitmap) + commentId: M:OpenTK.Platform.IClipboardComponent.SetClipboardBitmap(OpenTK.Platform.Bitmap) + parent: OpenTK.Platform.IClipboardComponent + href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_SetClipboardBitmap_OpenTK_Platform_Bitmap_ + name: SetClipboardBitmap(Bitmap) + nameWithType: IClipboardComponent.SetClipboardBitmap(Bitmap) + fullName: OpenTK.Platform.IClipboardComponent.SetClipboardBitmap(OpenTK.Platform.Bitmap) + spec.csharp: + - uid: OpenTK.Platform.IClipboardComponent.SetClipboardBitmap(OpenTK.Platform.Bitmap) + name: SetClipboardBitmap + href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_SetClipboardBitmap_OpenTK_Platform_Bitmap_ + - name: ( + - uid: OpenTK.Platform.Bitmap + name: Bitmap + href: OpenTK.Platform.Bitmap.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IClipboardComponent.SetClipboardBitmap(OpenTK.Platform.Bitmap) + name: SetClipboardBitmap + href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_SetClipboardBitmap_OpenTK_Platform_Bitmap_ + - name: ( + - uid: OpenTK.Platform.Bitmap + name: Bitmap + href: OpenTK.Platform.Bitmap.html + - name: ) +- uid: OpenTK.Platform.IClipboardComponent.GetClipboardBitmap + commentId: M:OpenTK.Platform.IClipboardComponent.GetClipboardBitmap + parent: OpenTK.Platform.IClipboardComponent + href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_GetClipboardBitmap + name: GetClipboardBitmap() + nameWithType: IClipboardComponent.GetClipboardBitmap() + fullName: OpenTK.Platform.IClipboardComponent.GetClipboardBitmap() + spec.csharp: + - uid: OpenTK.Platform.IClipboardComponent.GetClipboardBitmap + name: GetClipboardBitmap + href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_GetClipboardBitmap + - name: ( + - name: ) + spec.vb: + - uid: OpenTK.Platform.IClipboardComponent.GetClipboardBitmap + name: GetClipboardBitmap + href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_GetClipboardBitmap + - name: ( + - name: ) +- uid: OpenTK.Platform.IClipboardComponent.SetClipboardBitmap* + commentId: Overload:OpenTK.Platform.IClipboardComponent.SetClipboardBitmap + href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_SetClipboardBitmap_OpenTK_Platform_Bitmap_ + name: SetClipboardBitmap + nameWithType: IClipboardComponent.SetClipboardBitmap + fullName: OpenTK.Platform.IClipboardComponent.SetClipboardBitmap +- uid: OpenTK.Platform.Bitmap + commentId: T:OpenTK.Platform.Bitmap + parent: OpenTK.Platform + href: OpenTK.Platform.Bitmap.html + name: Bitmap + nameWithType: Bitmap + fullName: OpenTK.Platform.Bitmap +- uid: OpenTK.Platform.Native.X11 + commentId: N:OpenTK.Platform.Native.X11 + href: OpenTK.html + name: OpenTK.Platform.Native.X11 + nameWithType: OpenTK.Platform.Native.X11 + fullName: OpenTK.Platform.Native.X11 + spec.csharp: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Platform + name: Platform + href: OpenTK.Platform.html + - name: . + - uid: OpenTK.Platform.Native + name: Native + href: OpenTK.Platform.Native.html + - name: . + - uid: OpenTK.Platform.Native.X11 + name: X11 + href: OpenTK.Platform.Native.X11.html + spec.vb: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Platform + name: Platform + href: OpenTK.Platform.html + - name: . + - uid: OpenTK.Platform.Native + name: Native + href: OpenTK.Platform.Native.html + - name: . + - uid: OpenTK.Platform.Native.X11 + name: X11 + href: OpenTK.Platform.Native.X11.html - uid: OpenTK.Platform.ClipboardFormat.Bitmap commentId: F:OpenTK.Platform.ClipboardFormat.Bitmap href: OpenTK.Platform.ClipboardFormat.html#OpenTK_Platform_ClipboardFormat_Bitmap @@ -501,13 +773,6 @@ references: name: GetClipboardBitmap nameWithType: IClipboardComponent.GetClipboardBitmap fullName: OpenTK.Platform.IClipboardComponent.GetClipboardBitmap -- uid: OpenTK.Platform.Bitmap - commentId: T:OpenTK.Platform.Bitmap - parent: OpenTK.Platform - href: OpenTK.Platform.Bitmap.html - name: Bitmap - nameWithType: Bitmap - fullName: OpenTK.Platform.Bitmap - uid: OpenTK.Platform.ClipboardFormat.Files commentId: F:OpenTK.Platform.ClipboardFormat.Files href: OpenTK.Platform.ClipboardFormat.html#OpenTK_Platform_ClipboardFormat_Files diff --git a/api/OpenTK.Platform.ICursorComponent.yml b/api/OpenTK.Platform.ICursorComponent.yml index e0a98e75..e891ad36 100644 --- a/api/OpenTK.Platform.ICursorComponent.yml +++ b/api/OpenTK.Platform.ICursorComponent.yml @@ -24,20 +24,24 @@ items: source: id: ICursorComponent path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\ICursorComponent.cs - startLine: 8 + startLine: 9 assemblies: - OpenTK.Platform namespace: OpenTK.Platform - summary: Interface for drivers which provide the cursor component of the platform abstraction layer. + summary: Interface for creating and interacting with cursor images. example: [] syntax: content: 'public interface ICursorComponent : IPalComponent' content.vb: Public Interface ICursorComponent Inherits IPalComponent + seealso: + - linkId: OpenTK.Platform.Toolkit.Cursor + commentId: P:OpenTK.Platform.Toolkit.Cursor inheritedMembers: - OpenTK.Platform.IPalComponent.Name - OpenTK.Platform.IPalComponent.Provides - OpenTK.Platform.IPalComponent.Logger - OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + - OpenTK.Platform.IPalComponent.Uninitialize - uid: OpenTK.Platform.ICursorComponent.CanLoadSystemCursors commentId: P:OpenTK.Platform.ICursorComponent.CanLoadSystemCursors id: CanLoadSystemCursors @@ -52,7 +56,7 @@ items: source: id: CanLoadSystemCursors path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\ICursorComponent.cs - startLine: 14 + startLine: 17 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -82,16 +86,16 @@ items: source: id: CanInspectSystemCursors path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\ICursorComponent.cs - startLine: 23 + startLine: 28 assemblies: - OpenTK.Platform namespace: OpenTK.Platform summary: >- True if the backend supports inspecting system cursor handles. - If true, functions like and works on system cursors. + If true, functions like and works on system cursors. - If false, these functions will fail. + If fals, these functions will fail. example: [] syntax: content: bool CanInspectSystemCursors { get; } @@ -105,6 +109,10 @@ items: commentId: M:OpenTK.Platform.ICursorComponent.GetSize(OpenTK.Platform.CursorHandle,System.Int32@,System.Int32@) - linkId: OpenTK.Platform.ICursorComponent.GetHotspot(OpenTK.Platform.CursorHandle,System.Int32@,System.Int32@) commentId: M:OpenTK.Platform.ICursorComponent.GetHotspot(OpenTK.Platform.CursorHandle,System.Int32@,System.Int32@) + - linkId: OpenTK.Platform.ICursorComponent.CanLoadSystemCursors + commentId: P:OpenTK.Platform.ICursorComponent.CanLoadSystemCursors + - linkId: OpenTK.Platform.ICursorComponent.Create(OpenTK.Platform.SystemCursorType) + commentId: M:OpenTK.Platform.ICursorComponent.Create(OpenTK.Platform.SystemCursorType) - uid: OpenTK.Platform.ICursorComponent.Create(OpenTK.Platform.SystemCursorType) commentId: M:OpenTK.Platform.ICursorComponent.Create(OpenTK.Platform.SystemCursorType) id: Create(OpenTK.Platform.SystemCursorType) @@ -119,12 +127,12 @@ items: source: id: Create path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\ICursorComponent.cs - startLine: 38 + startLine: 45 assemblies: - OpenTK.Platform namespace: OpenTK.Platform summary: Create a standard system cursor. - remarks: This function is only supported if is true. + remarks: This function is only supported if is true. example: [] syntax: content: CursorHandle Create(SystemCursorType systemCursor) @@ -138,12 +146,16 @@ items: content.vb: Function Create(systemCursor As SystemCursorType) As CursorHandle overload: OpenTK.Platform.ICursorComponent.Create* exceptions: - - type: OpenTK.Platform.PalNotImplementedException - commentId: T:OpenTK.Platform.PalNotImplementedException + - type: System.PlatformNotSupportedException + commentId: T:System.PlatformNotSupportedException description: Driver does not implement this function. See . - - type: OpenTK.Platform.PlatformException - commentId: T:OpenTK.Platform.PlatformException - description: System does not provide cursor type selected by systemCursor. + seealso: + - linkId: OpenTK.Platform.ICursorComponent.CanLoadSystemCursors + commentId: P:OpenTK.Platform.ICursorComponent.CanLoadSystemCursors + - linkId: OpenTK.Platform.SystemCursorType + commentId: T:OpenTK.Platform.SystemCursorType + - linkId: OpenTK.Platform.ICursorComponent.Destroy(OpenTK.Platform.CursorHandle) + commentId: M:OpenTK.Platform.ICursorComponent.Destroy(OpenTK.Platform.CursorHandle) - uid: OpenTK.Platform.ICursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.Int32,System.Int32) commentId: M:OpenTK.Platform.ICursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.Int32,System.Int32) id: Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.Int32,System.Int32) @@ -158,7 +170,7 @@ items: source: id: Create path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\ICursorComponent.cs - startLine: 51 + startLine: 61 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -175,7 +187,7 @@ items: description: Height of the cursor image. - id: image type: System.ReadOnlySpan{System.Byte} - description: Buffer containing image data. + description: Buffer containing image data in RGBA order. - id: hotspotX type: System.Int32 description: The x coordinate of the cursor hotspot. @@ -190,10 +202,16 @@ items: exceptions: - type: System.ArgumentOutOfRangeException commentId: T:System.ArgumentOutOfRangeException - description: width or height is negative. + description: If width, height, hotspotX, or hotspotY are negative. + - type: System.ArgumentOutOfRangeException + commentId: T:System.ArgumentOutOfRangeException + description: If hotspotX or hotspotY are greater than width or height respectively. - type: System.ArgumentException commentId: T:System.ArgumentException description: image is smaller than specified dimensions. + seealso: + - linkId: OpenTK.Platform.ICursorComponent.Destroy(OpenTK.Platform.CursorHandle) + commentId: M:OpenTK.Platform.ICursorComponent.Destroy(OpenTK.Platform.CursorHandle) nameWithType.vb: ICursorComponent.Create(Integer, Integer, ReadOnlySpan(Of Byte), Integer, Integer) fullName.vb: OpenTK.Platform.ICursorComponent.Create(Integer, Integer, System.ReadOnlySpan(Of Byte), Integer, Integer) name.vb: Create(Integer, Integer, ReadOnlySpan(Of Byte), Integer, Integer) @@ -211,7 +229,7 @@ items: source: id: Create path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\ICursorComponent.cs - startLine: 67 + startLine: 78 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -228,10 +246,10 @@ items: description: Height of the cursor image. - id: colorData type: System.ReadOnlySpan{System.Byte} - description: Buffer containing color data. + description: Buffer containing RGB color data. - id: maskData type: System.ReadOnlySpan{System.Byte} - description: Buffer containing mask data. + description: Buffer containing mask data. Pixels where the mask is 1 will be visible while mask value of 0 is transparent. - id: hotspotX type: System.Int32 description: The x coordinate of the cursor hotspot. @@ -246,10 +264,16 @@ items: exceptions: - type: System.ArgumentOutOfRangeException commentId: T:System.ArgumentOutOfRangeException - description: width or height is negative. + description: If width, height, hotspotX, or hotspotY are negative. + - type: System.ArgumentOutOfRangeException + commentId: T:System.ArgumentOutOfRangeException + description: If hotspotX or hotspotY are greater than width or height respectively. - type: System.ArgumentException commentId: T:System.ArgumentException description: colorData or maskData is smaller than specified dimensions. + seealso: + - linkId: OpenTK.Platform.ICursorComponent.Destroy(OpenTK.Platform.CursorHandle) + commentId: M:OpenTK.Platform.ICursorComponent.Destroy(OpenTK.Platform.CursorHandle) nameWithType.vb: ICursorComponent.Create(Integer, Integer, ReadOnlySpan(Of Byte), ReadOnlySpan(Of Byte), Integer, Integer) fullName.vb: OpenTK.Platform.ICursorComponent.Create(Integer, Integer, System.ReadOnlySpan(Of Byte), System.ReadOnlySpan(Of Byte), Integer, Integer) name.vb: Create(Integer, Integer, ReadOnlySpan(Of Byte), ReadOnlySpan(Of Byte), Integer, Integer) @@ -267,7 +291,7 @@ items: source: id: Destroy path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\ICursorComponent.cs - startLine: 74 + startLine: 87 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -281,10 +305,13 @@ items: description: Handle to a cursor object. content.vb: Sub Destroy(handle As CursorHandle) overload: OpenTK.Platform.ICursorComponent.Destroy* - exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: handle is null. + seealso: + - linkId: OpenTK.Platform.ICursorComponent.Create(OpenTK.Platform.SystemCursorType) + commentId: M:OpenTK.Platform.ICursorComponent.Create(OpenTK.Platform.SystemCursorType) + - linkId: OpenTK.Platform.ICursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.Int32,System.Int32) + commentId: M:OpenTK.Platform.ICursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.Int32,System.Int32) + - linkId: OpenTK.Platform.ICursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.ReadOnlySpan{System.Byte},System.Int32,System.Int32) + commentId: M:OpenTK.Platform.ICursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.ReadOnlySpan{System.Byte},System.Int32,System.Int32) - uid: OpenTK.Platform.ICursorComponent.IsSystemCursor(OpenTK.Platform.CursorHandle) commentId: M:OpenTK.Platform.ICursorComponent.IsSystemCursor(OpenTK.Platform.CursorHandle) id: IsSystemCursor(OpenTK.Platform.CursorHandle) @@ -299,11 +326,11 @@ items: source: id: IsSystemCursor path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\ICursorComponent.cs - startLine: 82 + startLine: 96 assemblies: - OpenTK.Platform namespace: OpenTK.Platform - summary: Returns true if this cursor is a system cursor. + summary: Returns true if this cursor is a system cursor. example: [] syntax: content: bool IsSystemCursor(CursorHandle handle) @@ -319,6 +346,8 @@ items: seealso: - linkId: OpenTK.Platform.ICursorComponent.Create(OpenTK.Platform.SystemCursorType) commentId: M:OpenTK.Platform.ICursorComponent.Create(OpenTK.Platform.SystemCursorType) + - linkId: OpenTK.Platform.ICursorComponent.CanLoadSystemCursors + commentId: P:OpenTK.Platform.ICursorComponent.CanLoadSystemCursors - uid: OpenTK.Platform.ICursorComponent.GetSize(OpenTK.Platform.CursorHandle,System.Int32@,System.Int32@) commentId: M:OpenTK.Platform.ICursorComponent.GetSize(OpenTK.Platform.CursorHandle,System.Int32@,System.Int32@) id: GetSize(OpenTK.Platform.CursorHandle,System.Int32@,System.Int32@) @@ -333,12 +362,12 @@ items: source: id: GetSize path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\ICursorComponent.cs - startLine: 96 + startLine: 109 assemblies: - OpenTK.Platform namespace: OpenTK.Platform summary: Get the size of the cursor image. - remarks: If handle is a system cursor and is false this function will fail. + remarks: If handle is a system cursor and is false this function will fail. example: [] syntax: content: void GetSize(CursorHandle handle, out int width, out int height) @@ -354,10 +383,6 @@ items: description: Height of the cursor. content.vb: Sub GetSize(handle As CursorHandle, width As Integer, height As Integer) overload: OpenTK.Platform.ICursorComponent.GetSize* - exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: handle is null. seealso: - linkId: OpenTK.Platform.ICursorComponent.IsSystemCursor(OpenTK.Platform.CursorHandle) commentId: M:OpenTK.Platform.ICursorComponent.IsSystemCursor(OpenTK.Platform.CursorHandle) @@ -380,14 +405,11 @@ items: source: id: GetHotspot path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\ICursorComponent.cs - startLine: 111 + startLine: 122 assemblies: - OpenTK.Platform namespace: OpenTK.Platform - summary: >- - Get the hotspot location of the mouse cursor. - - Getting the hotspot of a system cursor is not guaranteed to be possible, check before trying. + summary: Get the hotspot location of the mouse cursor. remarks: If handle is a system cursor and is false this function will fail. example: [] syntax: @@ -404,10 +426,6 @@ items: description: Y coordinate of the hotspot. content.vb: Sub GetHotspot(handle As CursorHandle, x As Integer, y As Integer) overload: OpenTK.Platform.ICursorComponent.GetHotspot* - exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: handle is null. seealso: - linkId: OpenTK.Platform.ICursorComponent.IsSystemCursor(OpenTK.Platform.CursorHandle) commentId: M:OpenTK.Platform.ICursorComponent.IsSystemCursor(OpenTK.Platform.CursorHandle) @@ -417,6 +435,12 @@ items: fullName.vb: OpenTK.Platform.ICursorComponent.GetHotspot(OpenTK.Platform.CursorHandle, Integer, Integer) name.vb: GetHotspot(CursorHandle, Integer, Integer) references: +- uid: OpenTK.Platform.Toolkit.Cursor + commentId: P:OpenTK.Platform.Toolkit.Cursor + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Cursor + name: Cursor + nameWithType: Toolkit.Cursor + fullName: OpenTK.Platform.Toolkit.Cursor - uid: OpenTK.Platform commentId: N:OpenTK.Platform href: OpenTK.html @@ -485,6 +509,25 @@ references: name: ToolkitOptions href: OpenTK.Platform.ToolkitOptions.html - name: ) +- uid: OpenTK.Platform.IPalComponent.Uninitialize + commentId: M:OpenTK.Platform.IPalComponent.Uninitialize + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + name: Uninitialize() + nameWithType: IPalComponent.Uninitialize() + fullName: OpenTK.Platform.IPalComponent.Uninitialize() + spec.csharp: + - uid: OpenTK.Platform.IPalComponent.Uninitialize + name: Uninitialize + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + - name: ( + - name: ) + spec.vb: + - uid: OpenTK.Platform.IPalComponent.Uninitialize + name: Uninitialize + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + - name: ( + - name: ) - uid: OpenTK.Platform.IPalComponent commentId: T:OpenTK.Platform.IPalComponent parent: OpenTK.Platform @@ -662,12 +705,6 @@ references: isExternal: true href: https://learn.microsoft.com/dotnet/api/system.int32 - name: ) -- uid: OpenTK.Platform.ICursorComponent.CanInspectSystemCursors* - commentId: Overload:OpenTK.Platform.ICursorComponent.CanInspectSystemCursors - href: OpenTK.Platform.ICursorComponent.html#OpenTK_Platform_ICursorComponent_CanInspectSystemCursors - name: CanInspectSystemCursors - nameWithType: ICursorComponent.CanInspectSystemCursors - fullName: OpenTK.Platform.ICursorComponent.CanInspectSystemCursors - uid: OpenTK.Platform.ICursorComponent.CanLoadSystemCursors commentId: P:OpenTK.Platform.ICursorComponent.CanLoadSystemCursors parent: OpenTK.Platform.ICursorComponent @@ -675,24 +712,12 @@ references: name: CanLoadSystemCursors nameWithType: ICursorComponent.CanLoadSystemCursors fullName: OpenTK.Platform.ICursorComponent.CanLoadSystemCursors -- uid: OpenTK.Platform.PalNotImplementedException - commentId: T:OpenTK.Platform.PalNotImplementedException - href: OpenTK.Platform.PalNotImplementedException.html - name: PalNotImplementedException - nameWithType: PalNotImplementedException - fullName: OpenTK.Platform.PalNotImplementedException -- uid: OpenTK.Platform.PlatformException - commentId: T:OpenTK.Platform.PlatformException - href: OpenTK.Platform.PlatformException.html - name: PlatformException - nameWithType: PlatformException - fullName: OpenTK.Platform.PlatformException -- uid: OpenTK.Platform.ICursorComponent.Create* - commentId: Overload:OpenTK.Platform.ICursorComponent.Create - href: OpenTK.Platform.ICursorComponent.html#OpenTK_Platform_ICursorComponent_Create_OpenTK_Platform_SystemCursorType_ - name: Create - nameWithType: ICursorComponent.Create - fullName: OpenTK.Platform.ICursorComponent.Create +- uid: OpenTK.Platform.ICursorComponent.CanInspectSystemCursors* + commentId: Overload:OpenTK.Platform.ICursorComponent.CanInspectSystemCursors + href: OpenTK.Platform.ICursorComponent.html#OpenTK_Platform_ICursorComponent_CanInspectSystemCursors + name: CanInspectSystemCursors + nameWithType: ICursorComponent.CanInspectSystemCursors + fullName: OpenTK.Platform.ICursorComponent.CanInspectSystemCursors - uid: OpenTK.Platform.SystemCursorType commentId: T:OpenTK.Platform.SystemCursorType parent: OpenTK.Platform @@ -700,6 +725,44 @@ references: name: SystemCursorType nameWithType: SystemCursorType fullName: OpenTK.Platform.SystemCursorType +- uid: OpenTK.Platform.ICursorComponent.Destroy(OpenTK.Platform.CursorHandle) + commentId: M:OpenTK.Platform.ICursorComponent.Destroy(OpenTK.Platform.CursorHandle) + parent: OpenTK.Platform.ICursorComponent + href: OpenTK.Platform.ICursorComponent.html#OpenTK_Platform_ICursorComponent_Destroy_OpenTK_Platform_CursorHandle_ + name: Destroy(CursorHandle) + nameWithType: ICursorComponent.Destroy(CursorHandle) + fullName: OpenTK.Platform.ICursorComponent.Destroy(OpenTK.Platform.CursorHandle) + spec.csharp: + - uid: OpenTK.Platform.ICursorComponent.Destroy(OpenTK.Platform.CursorHandle) + name: Destroy + href: OpenTK.Platform.ICursorComponent.html#OpenTK_Platform_ICursorComponent_Destroy_OpenTK_Platform_CursorHandle_ + - name: ( + - uid: OpenTK.Platform.CursorHandle + name: CursorHandle + href: OpenTK.Platform.CursorHandle.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.ICursorComponent.Destroy(OpenTK.Platform.CursorHandle) + name: Destroy + href: OpenTK.Platform.ICursorComponent.html#OpenTK_Platform_ICursorComponent_Destroy_OpenTK_Platform_CursorHandle_ + - name: ( + - uid: OpenTK.Platform.CursorHandle + name: CursorHandle + href: OpenTK.Platform.CursorHandle.html + - name: ) +- uid: System.PlatformNotSupportedException + commentId: T:System.PlatformNotSupportedException + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.platformnotsupportedexception + name: PlatformNotSupportedException + nameWithType: PlatformNotSupportedException + fullName: System.PlatformNotSupportedException +- uid: OpenTK.Platform.ICursorComponent.Create* + commentId: Overload:OpenTK.Platform.ICursorComponent.Create + href: OpenTK.Platform.ICursorComponent.html#OpenTK_Platform_ICursorComponent_Create_OpenTK_Platform_SystemCursorType_ + name: Create + nameWithType: ICursorComponent.Create + fullName: OpenTK.Platform.ICursorComponent.Create - uid: OpenTK.Platform.CursorHandle commentId: T:OpenTK.Platform.CursorHandle parent: OpenTK.Platform @@ -795,13 +858,218 @@ references: - name: " " - name: T - name: ) -- uid: System.ArgumentNullException - commentId: T:System.ArgumentNullException +- uid: OpenTK.Platform.ICursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.Int32,System.Int32) + commentId: M:OpenTK.Platform.ICursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.Int32,System.Int32) + parent: OpenTK.Platform.ICursorComponent isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.argumentnullexception - name: ArgumentNullException - nameWithType: ArgumentNullException - fullName: System.ArgumentNullException + href: OpenTK.Platform.ICursorComponent.html#OpenTK_Platform_ICursorComponent_Create_System_Int32_System_Int32_System_ReadOnlySpan_System_Byte__System_Int32_System_Int32_ + name: Create(int, int, ReadOnlySpan, int, int) + nameWithType: ICursorComponent.Create(int, int, ReadOnlySpan, int, int) + fullName: OpenTK.Platform.ICursorComponent.Create(int, int, System.ReadOnlySpan, int, int) + nameWithType.vb: ICursorComponent.Create(Integer, Integer, ReadOnlySpan(Of Byte), Integer, Integer) + fullName.vb: OpenTK.Platform.ICursorComponent.Create(Integer, Integer, System.ReadOnlySpan(Of Byte), Integer, Integer) + name.vb: Create(Integer, Integer, ReadOnlySpan(Of Byte), Integer, Integer) + spec.csharp: + - uid: OpenTK.Platform.ICursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.Int32,System.Int32) + name: Create + href: OpenTK.Platform.ICursorComponent.html#OpenTK_Platform_ICursorComponent_Create_System_Int32_System_Int32_System_ReadOnlySpan_System_Byte__System_Int32_System_Int32_ + - name: ( + - uid: System.Int32 + name: int + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ',' + - name: " " + - uid: System.Int32 + name: int + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ',' + - name: " " + - uid: System.ReadOnlySpan`1 + name: ReadOnlySpan + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 + - name: < + - uid: System.Byte + name: byte + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.byte + - name: '>' + - name: ',' + - name: " " + - uid: System.Int32 + name: int + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ',' + - name: " " + - uid: System.Int32 + name: int + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ) + spec.vb: + - uid: OpenTK.Platform.ICursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.Int32,System.Int32) + name: Create + href: OpenTK.Platform.ICursorComponent.html#OpenTK_Platform_ICursorComponent_Create_System_Int32_System_Int32_System_ReadOnlySpan_System_Byte__System_Int32_System_Int32_ + - name: ( + - uid: System.Int32 + name: Integer + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ',' + - name: " " + - uid: System.Int32 + name: Integer + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ',' + - name: " " + - uid: System.ReadOnlySpan`1 + name: ReadOnlySpan + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 + - name: ( + - name: Of + - name: " " + - uid: System.Byte + name: Byte + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.byte + - name: ) + - name: ',' + - name: " " + - uid: System.Int32 + name: Integer + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ',' + - name: " " + - uid: System.Int32 + name: Integer + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ) +- uid: OpenTK.Platform.ICursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.ReadOnlySpan{System.Byte},System.Int32,System.Int32) + commentId: M:OpenTK.Platform.ICursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.ReadOnlySpan{System.Byte},System.Int32,System.Int32) + parent: OpenTK.Platform.ICursorComponent + isExternal: true + href: OpenTK.Platform.ICursorComponent.html#OpenTK_Platform_ICursorComponent_Create_System_Int32_System_Int32_System_ReadOnlySpan_System_Byte__System_ReadOnlySpan_System_Byte__System_Int32_System_Int32_ + name: Create(int, int, ReadOnlySpan, ReadOnlySpan, int, int) + nameWithType: ICursorComponent.Create(int, int, ReadOnlySpan, ReadOnlySpan, int, int) + fullName: OpenTK.Platform.ICursorComponent.Create(int, int, System.ReadOnlySpan, System.ReadOnlySpan, int, int) + nameWithType.vb: ICursorComponent.Create(Integer, Integer, ReadOnlySpan(Of Byte), ReadOnlySpan(Of Byte), Integer, Integer) + fullName.vb: OpenTK.Platform.ICursorComponent.Create(Integer, Integer, System.ReadOnlySpan(Of Byte), System.ReadOnlySpan(Of Byte), Integer, Integer) + name.vb: Create(Integer, Integer, ReadOnlySpan(Of Byte), ReadOnlySpan(Of Byte), Integer, Integer) + spec.csharp: + - uid: OpenTK.Platform.ICursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.ReadOnlySpan{System.Byte},System.Int32,System.Int32) + name: Create + href: OpenTK.Platform.ICursorComponent.html#OpenTK_Platform_ICursorComponent_Create_System_Int32_System_Int32_System_ReadOnlySpan_System_Byte__System_ReadOnlySpan_System_Byte__System_Int32_System_Int32_ + - name: ( + - uid: System.Int32 + name: int + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ',' + - name: " " + - uid: System.Int32 + name: int + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ',' + - name: " " + - uid: System.ReadOnlySpan`1 + name: ReadOnlySpan + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 + - name: < + - uid: System.Byte + name: byte + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.byte + - name: '>' + - name: ',' + - name: " " + - uid: System.ReadOnlySpan`1 + name: ReadOnlySpan + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 + - name: < + - uid: System.Byte + name: byte + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.byte + - name: '>' + - name: ',' + - name: " " + - uid: System.Int32 + name: int + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ',' + - name: " " + - uid: System.Int32 + name: int + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ) + spec.vb: + - uid: OpenTK.Platform.ICursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.ReadOnlySpan{System.Byte},System.Int32,System.Int32) + name: Create + href: OpenTK.Platform.ICursorComponent.html#OpenTK_Platform_ICursorComponent_Create_System_Int32_System_Int32_System_ReadOnlySpan_System_Byte__System_ReadOnlySpan_System_Byte__System_Int32_System_Int32_ + - name: ( + - uid: System.Int32 + name: Integer + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ',' + - name: " " + - uid: System.Int32 + name: Integer + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ',' + - name: " " + - uid: System.ReadOnlySpan`1 + name: ReadOnlySpan + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 + - name: ( + - name: Of + - name: " " + - uid: System.Byte + name: Byte + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.byte + - name: ) + - name: ',' + - name: " " + - uid: System.ReadOnlySpan`1 + name: ReadOnlySpan + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 + - name: ( + - name: Of + - name: " " + - uid: System.Byte + name: Byte + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.byte + - name: ) + - name: ',' + - name: " " + - uid: System.Int32 + name: Integer + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ',' + - name: " " + - uid: System.Int32 + name: Integer + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ) - uid: OpenTK.Platform.ICursorComponent.Destroy* commentId: Overload:OpenTK.Platform.ICursorComponent.Destroy href: OpenTK.Platform.ICursorComponent.html#OpenTK_Platform_ICursorComponent_Destroy_OpenTK_Platform_CursorHandle_ diff --git a/api/OpenTK.Platform.IDialogComponent.yml b/api/OpenTK.Platform.IDialogComponent.yml index d98b5abd..ab33baa3 100644 --- a/api/OpenTK.Platform.IDialogComponent.yml +++ b/api/OpenTK.Platform.IDialogComponent.yml @@ -19,7 +19,7 @@ items: source: id: IDialogComponent path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IDialogComponent.cs - startLine: 13 + startLine: 14 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -28,11 +28,15 @@ items: syntax: content: 'public interface IDialogComponent : IPalComponent' content.vb: Public Interface IDialogComponent Inherits IPalComponent + seealso: + - linkId: OpenTK.Platform.Toolkit.Dialog + commentId: P:OpenTK.Platform.Toolkit.Dialog inheritedMembers: - OpenTK.Platform.IPalComponent.Name - OpenTK.Platform.IPalComponent.Provides - OpenTK.Platform.IPalComponent.Logger - OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + - OpenTK.Platform.IPalComponent.Uninitialize - uid: OpenTK.Platform.IDialogComponent.CanTargetFolders commentId: P:OpenTK.Platform.IDialogComponent.CanTargetFolders id: CanTargetFolders @@ -47,14 +51,14 @@ items: source: id: CanTargetFolders path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IDialogComponent.cs - startLine: 21 + startLine: 23 assemblies: - OpenTK.Platform namespace: OpenTK.Platform summary: >- If the value of this property is true will work. - Otherwise these flags will be ignored. + Otherwise this flag will be ignored. example: [] syntax: content: bool CanTargetFolders { get; } @@ -64,6 +68,8 @@ items: content.vb: ReadOnly Property CanTargetFolders As Boolean overload: OpenTK.Platform.IDialogComponent.CanTargetFolders* seealso: + - linkId: OpenTK.Platform.Toolkit.Dialog + commentId: P:OpenTK.Platform.Toolkit.Dialog - linkId: OpenTK.Platform.OpenDialogOptions.SelectDirectory commentId: F:OpenTK.Platform.OpenDialogOptions.SelectDirectory - linkId: OpenTK.Platform.IDialogComponent.ShowOpenDialog(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.DialogFileFilter[],OpenTK.Platform.OpenDialogOptions) @@ -82,11 +88,12 @@ items: source: id: ShowMessageBox path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IDialogComponent.cs - startLine: 32 + startLine: 41 assemblies: - OpenTK.Platform namespace: OpenTK.Platform summary: Shows a modal message box. + remarks: This function runs a modal event loop and will only return once the dialog has been dissmissed by pressing any of it's buttons. example: [] syntax: content: MessageBoxButton ShowMessageBox(WindowHandle parent, string title, string content, MessageBoxType messageBoxType, IconHandle? customIcon = null) @@ -99,7 +106,7 @@ items: description: The title of the dialog box. - id: content type: System.String - description: The content text of the dialog box. + description: The content text of the dialog box. This is the prompt to the user, explain what they should do. - id: messageBoxType type: OpenTK.Platform.MessageBoxType description: The type of message box. Determines button layout and default icon. @@ -111,6 +118,15 @@ items: description: The pressed message box button. content.vb: Function ShowMessageBox(parent As WindowHandle, title As String, content As String, messageBoxType As MessageBoxType, customIcon As IconHandle = Nothing) As MessageBoxButton overload: OpenTK.Platform.IDialogComponent.ShowMessageBox* + seealso: + - linkId: OpenTK.Platform.MessageBoxType + commentId: T:OpenTK.Platform.MessageBoxType + - linkId: OpenTK.Platform.MessageBoxButton + commentId: T:OpenTK.Platform.MessageBoxButton + - linkId: OpenTK.Platform.Toolkit.Icon + commentId: P:OpenTK.Platform.Toolkit.Icon + - linkId: OpenTK.Platform.IIconComponent + commentId: T:OpenTK.Platform.IIconComponent nameWithType.vb: IDialogComponent.ShowMessageBox(WindowHandle, String, String, MessageBoxType, IconHandle) fullName.vb: OpenTK.Platform.IDialogComponent.ShowMessageBox(OpenTK.Platform.WindowHandle, String, String, OpenTK.Platform.MessageBoxType, OpenTK.Platform.IconHandle) name.vb: ShowMessageBox(WindowHandle, String, String, MessageBoxType, IconHandle) @@ -128,11 +144,12 @@ items: source: id: ShowOpenDialog path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IDialogComponent.cs - startLine: 50 + startLine: 62 assemblies: - OpenTK.Platform namespace: OpenTK.Platform summary: Shows a modal "open file/folder" dialog. + remarks: This function runs a modal event loop and will only return once the dialog has been dissmissed by pressing any of it's buttons. example: [] syntax: content: List? ShowOpenDialog(WindowHandle parent, string title, string directory, DialogFileFilter[]? allowedExtensions, OpenDialogOptions options) @@ -186,11 +203,12 @@ items: source: id: ShowSaveDialog path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IDialogComponent.cs - startLine: 63 + startLine: 78 assemblies: - OpenTK.Platform namespace: OpenTK.Platform summary: Shows a modal "save file" dialog. + remarks: This function runs a modal event loop and will only return once the dialog has been dissmissed by pressing any of it's buttons. example: [] syntax: content: string? ShowSaveDialog(WindowHandle parent, string title, string directory, DialogFileFilter[]? allowedExtensions, SaveDialogOptions options) @@ -224,6 +242,12 @@ items: fullName.vb: OpenTK.Platform.IDialogComponent.ShowSaveDialog(OpenTK.Platform.WindowHandle, String, String, OpenTK.Platform.DialogFileFilter(), OpenTK.Platform.SaveDialogOptions) name.vb: ShowSaveDialog(WindowHandle, String, String, DialogFileFilter(), SaveDialogOptions) references: +- uid: OpenTK.Platform.Toolkit.Dialog + commentId: P:OpenTK.Platform.Toolkit.Dialog + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Dialog + name: Dialog + nameWithType: Toolkit.Dialog + fullName: OpenTK.Platform.Toolkit.Dialog - uid: OpenTK.Platform commentId: N:OpenTK.Platform href: OpenTK.html @@ -292,6 +316,25 @@ references: name: ToolkitOptions href: OpenTK.Platform.ToolkitOptions.html - name: ) +- uid: OpenTK.Platform.IPalComponent.Uninitialize + commentId: M:OpenTK.Platform.IPalComponent.Uninitialize + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + name: Uninitialize() + nameWithType: IPalComponent.Uninitialize() + fullName: OpenTK.Platform.IPalComponent.Uninitialize() + spec.csharp: + - uid: OpenTK.Platform.IPalComponent.Uninitialize + name: Uninitialize + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + - name: ( + - name: ) + spec.vb: + - uid: OpenTK.Platform.IPalComponent.Uninitialize + name: Uninitialize + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + - name: ( + - name: ) - uid: OpenTK.Platform.IPalComponent commentId: T:OpenTK.Platform.IPalComponent parent: OpenTK.Platform @@ -413,6 +456,33 @@ references: name: System nameWithType: System fullName: System +- uid: OpenTK.Platform.MessageBoxType + commentId: T:OpenTK.Platform.MessageBoxType + parent: OpenTK.Platform + href: OpenTK.Platform.MessageBoxType.html + name: MessageBoxType + nameWithType: MessageBoxType + fullName: OpenTK.Platform.MessageBoxType +- uid: OpenTK.Platform.MessageBoxButton + commentId: T:OpenTK.Platform.MessageBoxButton + parent: OpenTK.Platform + href: OpenTK.Platform.MessageBoxButton.html + name: MessageBoxButton + nameWithType: MessageBoxButton + fullName: OpenTK.Platform.MessageBoxButton +- uid: OpenTK.Platform.Toolkit.Icon + commentId: P:OpenTK.Platform.Toolkit.Icon + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Icon + name: Icon + nameWithType: Toolkit.Icon + fullName: OpenTK.Platform.Toolkit.Icon +- uid: OpenTK.Platform.IIconComponent + commentId: T:OpenTK.Platform.IIconComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IIconComponent.html + name: IIconComponent + nameWithType: IIconComponent + fullName: OpenTK.Platform.IIconComponent - uid: OpenTK.Platform.IDialogComponent.ShowMessageBox* commentId: Overload:OpenTK.Platform.IDialogComponent.ShowMessageBox href: OpenTK.Platform.IDialogComponent.html#OpenTK_Platform_IDialogComponent_ShowMessageBox_OpenTK_Platform_WindowHandle_System_String_System_String_OpenTK_Platform_MessageBoxType_OpenTK_Platform_IconHandle_ @@ -437,13 +507,6 @@ references: nameWithType.vb: String fullName.vb: String name.vb: String -- uid: OpenTK.Platform.MessageBoxType - commentId: T:OpenTK.Platform.MessageBoxType - parent: OpenTK.Platform - href: OpenTK.Platform.MessageBoxType.html - name: MessageBoxType - nameWithType: MessageBoxType - fullName: OpenTK.Platform.MessageBoxType - uid: OpenTK.Platform.IconHandle commentId: T:OpenTK.Platform.IconHandle parent: OpenTK.Platform @@ -451,13 +514,6 @@ references: name: IconHandle nameWithType: IconHandle fullName: OpenTK.Platform.IconHandle -- uid: OpenTK.Platform.MessageBoxButton - commentId: T:OpenTK.Platform.MessageBoxButton - parent: OpenTK.Platform - href: OpenTK.Platform.MessageBoxButton.html - name: MessageBoxButton - nameWithType: MessageBoxButton - fullName: OpenTK.Platform.MessageBoxButton - uid: OpenTK.Platform.DialogFileFilter commentId: T:OpenTK.Platform.DialogFileFilter parent: OpenTK.Platform diff --git a/api/OpenTK.Platform.IDisplayComponent.yml b/api/OpenTK.Platform.IDisplayComponent.yml index 448ee1b3..21be7c50 100644 --- a/api/OpenTK.Platform.IDisplayComponent.yml +++ b/api/OpenTK.Platform.IDisplayComponent.yml @@ -29,7 +29,7 @@ items: source: id: IDisplayComponent path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IDisplayComponent.cs - startLine: 8 + startLine: 9 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -38,11 +38,15 @@ items: syntax: content: 'public interface IDisplayComponent : IPalComponent' content.vb: Public Interface IDisplayComponent Inherits IPalComponent + seealso: + - linkId: OpenTK.Platform.Toolkit.Display + commentId: P:OpenTK.Platform.Toolkit.Display inheritedMembers: - OpenTK.Platform.IPalComponent.Name - OpenTK.Platform.IPalComponent.Provides - OpenTK.Platform.IPalComponent.Logger - OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + - OpenTK.Platform.IPalComponent.Uninitialize - uid: OpenTK.Platform.IDisplayComponent.CanGetVirtualPosition commentId: P:OpenTK.Platform.IDisplayComponent.CanGetVirtualPosition id: CanGetVirtualPosition @@ -57,7 +61,7 @@ items: source: id: CanGetVirtualPosition path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IDisplayComponent.cs - startLine: 15 + startLine: 20 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -84,7 +88,7 @@ items: source: id: GetDisplayCount path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IDisplayComponent.cs - startLine: 21 + startLine: 26 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -111,7 +115,7 @@ items: source: id: Open path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IDisplayComponent.cs - startLine: 34 + startLine: 39 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -149,7 +153,7 @@ items: source: id: OpenPrimary path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IDisplayComponent.cs - startLine: 40 + startLine: 45 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -176,7 +180,7 @@ items: source: id: Close path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IDisplayComponent.cs - startLine: 47 + startLine: 52 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -208,7 +212,7 @@ items: source: id: IsPrimary path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IDisplayComponent.cs - startLine: 54 + startLine: 59 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -239,7 +243,7 @@ items: source: id: GetName path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IDisplayComponent.cs - startLine: 62 + startLine: 67 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -274,7 +278,7 @@ items: source: id: GetVideoMode path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IDisplayComponent.cs - startLine: 70 + startLine: 75 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -312,7 +316,7 @@ items: source: id: GetSupportedVideoModes path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IDisplayComponent.cs - startLine: 78 + startLine: 83 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -347,7 +351,7 @@ items: source: id: GetVirtualPosition path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IDisplayComponent.cs - startLine: 88 + startLine: 93 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -391,7 +395,7 @@ items: source: id: GetResolution path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IDisplayComponent.cs - startLine: 97 + startLine: 102 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -432,7 +436,7 @@ items: source: id: GetWorkArea path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IDisplayComponent.cs - startLine: 105 + startLine: 110 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -469,7 +473,7 @@ items: source: id: GetRefreshRate path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IDisplayComponent.cs - startLine: 112 + startLine: 117 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -503,7 +507,7 @@ items: source: id: GetDisplayScale path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IDisplayComponent.cs - startLine: 120 + startLine: 125 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -527,6 +531,12 @@ items: fullName.vb: OpenTK.Platform.IDisplayComponent.GetDisplayScale(OpenTK.Platform.DisplayHandle, Single, Single) name.vb: GetDisplayScale(DisplayHandle, Single, Single) references: +- uid: OpenTK.Platform.Toolkit.Display + commentId: P:OpenTK.Platform.Toolkit.Display + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Display + name: Display + nameWithType: Toolkit.Display + fullName: OpenTK.Platform.Toolkit.Display - uid: OpenTK.Platform commentId: N:OpenTK.Platform href: OpenTK.html @@ -595,6 +605,25 @@ references: name: ToolkitOptions href: OpenTK.Platform.ToolkitOptions.html - name: ) +- uid: OpenTK.Platform.IPalComponent.Uninitialize + commentId: M:OpenTK.Platform.IPalComponent.Uninitialize + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + name: Uninitialize() + nameWithType: IPalComponent.Uninitialize() + fullName: OpenTK.Platform.IPalComponent.Uninitialize() + spec.csharp: + - uid: OpenTK.Platform.IPalComponent.Uninitialize + name: Uninitialize + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + - name: ( + - name: ) + spec.vb: + - uid: OpenTK.Platform.IPalComponent.Uninitialize + name: Uninitialize + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + - name: ( + - name: ) - uid: OpenTK.Platform.IPalComponent commentId: T:OpenTK.Platform.IPalComponent parent: OpenTK.Platform diff --git a/api/OpenTK.Platform.IIconComponent.yml b/api/OpenTK.Platform.IIconComponent.yml index 41cf949d..9bd9b6c7 100644 --- a/api/OpenTK.Platform.IIconComponent.yml +++ b/api/OpenTK.Platform.IIconComponent.yml @@ -20,20 +20,24 @@ items: source: id: IIconComponent path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IIconComponent.cs - startLine: 8 + startLine: 9 assemblies: - OpenTK.Platform namespace: OpenTK.Platform - summary: Interface for PAL drivers which provide the icon component. + summary: Interface creatiing and interacting with window icon images. example: [] syntax: content: 'public interface IIconComponent : IPalComponent' content.vb: Public Interface IIconComponent Inherits IPalComponent + seealso: + - linkId: OpenTK.Platform.Toolkit.Icon + commentId: P:OpenTK.Platform.Toolkit.Icon inheritedMembers: - OpenTK.Platform.IPalComponent.Name - OpenTK.Platform.IPalComponent.Provides - OpenTK.Platform.IPalComponent.Logger - OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + - OpenTK.Platform.IPalComponent.Uninitialize - uid: OpenTK.Platform.IIconComponent.CanLoadSystemIcons commentId: P:OpenTK.Platform.IIconComponent.CanLoadSystemIcons id: CanLoadSystemIcons @@ -48,14 +52,14 @@ items: source: id: CanLoadSystemIcons path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IIconComponent.cs - startLine: 15 + startLine: 16 assemblies: - OpenTK.Platform namespace: OpenTK.Platform summary: >- - True if icon objects can be populated from common system icons. + If common system icons can be created. - If this is true, then will work, otherwise an exception will be thrown. + If this is true then will work, otherwise an exception will be thrown. example: [] syntax: content: bool CanLoadSystemIcons { get; } @@ -81,14 +85,14 @@ items: source: id: Create path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IIconComponent.cs - startLine: 24 + startLine: 26 assemblies: - OpenTK.Platform namespace: OpenTK.Platform summary: >- Load a system icon. - Only works if is true. + Only works if is true. example: [] syntax: content: IconHandle Create(SystemIconType systemIcon) @@ -101,6 +105,10 @@ items: description: A handle to the created system icon. content.vb: Function Create(systemIcon As SystemIconType) As IconHandle overload: OpenTK.Platform.IIconComponent.Create* + exceptions: + - type: System.PlatformNotSupportedException + commentId: T:System.PlatformNotSupportedException + description: Platform does not implement this function. See . seealso: - linkId: OpenTK.Platform.IIconComponent.CanLoadSystemIcons commentId: P:OpenTK.Platform.IIconComponent.CanLoadSystemIcons @@ -118,7 +126,7 @@ items: source: id: Create path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IIconComponent.cs - startLine: 34 + startLine: 38 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -135,12 +143,19 @@ items: description: Height of the bitmap. - id: data type: System.ReadOnlySpan{System.Byte} - description: Image data to load into icon. + description: Image data to load into icon in RGBA format. return: type: OpenTK.Platform.IconHandle description: A handle to the created icon. content.vb: Function Create(width As Integer, height As Integer, data As ReadOnlySpan(Of Byte)) As IconHandle overload: OpenTK.Platform.IIconComponent.Create* + exceptions: + - type: System.ArgumentOutOfRangeException + commentId: T:System.ArgumentOutOfRangeException + description: If width, or height are negative. + - type: System.ArgumentException + commentId: T:System.ArgumentException + description: data is smaller than specified dimensions. nameWithType.vb: IIconComponent.Create(Integer, Integer, ReadOnlySpan(Of Byte)) fullName.vb: OpenTK.Platform.IIconComponent.Create(Integer, Integer, System.ReadOnlySpan(Of Byte)) name.vb: Create(Integer, Integer, ReadOnlySpan(Of Byte)) @@ -158,7 +173,7 @@ items: source: id: Destroy path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IIconComponent.cs - startLine: 41 + startLine: 46 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -172,10 +187,11 @@ items: description: Handle to the icon object to destroy. content.vb: Sub Destroy(handle As IconHandle) overload: OpenTK.Platform.IIconComponent.Destroy* - exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: handle is null. + seealso: + - linkId: OpenTK.Platform.IIconComponent.Create(OpenTK.Platform.SystemIconType) + commentId: M:OpenTK.Platform.IIconComponent.Create(OpenTK.Platform.SystemIconType) + - linkId: OpenTK.Platform.IIconComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte}) + commentId: M:OpenTK.Platform.IIconComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte}) - uid: OpenTK.Platform.IIconComponent.GetSize(OpenTK.Platform.IconHandle,System.Int32@,System.Int32@) commentId: M:OpenTK.Platform.IIconComponent.GetSize(OpenTK.Platform.IconHandle,System.Int32@,System.Int32@) id: GetSize(OpenTK.Platform.IconHandle,System.Int32@,System.Int32@) @@ -190,7 +206,7 @@ items: source: id: GetSize path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IIconComponent.cs - startLine: 50 + startLine: 54 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -210,14 +226,16 @@ items: description: Height of icon. content.vb: Sub GetSize(handle As IconHandle, width As Integer, height As Integer) overload: OpenTK.Platform.IIconComponent.GetSize* - exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: handle is null. nameWithType.vb: IIconComponent.GetSize(IconHandle, Integer, Integer) fullName.vb: OpenTK.Platform.IIconComponent.GetSize(OpenTK.Platform.IconHandle, Integer, Integer) name.vb: GetSize(IconHandle, Integer, Integer) references: +- uid: OpenTK.Platform.Toolkit.Icon + commentId: P:OpenTK.Platform.Toolkit.Icon + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Icon + name: Icon + nameWithType: Toolkit.Icon + fullName: OpenTK.Platform.Toolkit.Icon - uid: OpenTK.Platform commentId: N:OpenTK.Platform href: OpenTK.html @@ -286,6 +304,25 @@ references: name: ToolkitOptions href: OpenTK.Platform.ToolkitOptions.html - name: ) +- uid: OpenTK.Platform.IPalComponent.Uninitialize + commentId: M:OpenTK.Platform.IPalComponent.Uninitialize + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + name: Uninitialize() + nameWithType: IPalComponent.Uninitialize() + fullName: OpenTK.Platform.IPalComponent.Uninitialize() + spec.csharp: + - uid: OpenTK.Platform.IPalComponent.Uninitialize + name: Uninitialize + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + - name: ( + - name: ) + spec.vb: + - uid: OpenTK.Platform.IPalComponent.Uninitialize + name: Uninitialize + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + - name: ( + - name: ) - uid: OpenTK.Platform.IPalComponent commentId: T:OpenTK.Platform.IPalComponent parent: OpenTK.Platform @@ -356,6 +393,13 @@ references: name: CanLoadSystemIcons nameWithType: IIconComponent.CanLoadSystemIcons fullName: OpenTK.Platform.IIconComponent.CanLoadSystemIcons +- uid: System.PlatformNotSupportedException + commentId: T:System.PlatformNotSupportedException + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.platformnotsupportedexception + name: PlatformNotSupportedException + nameWithType: PlatformNotSupportedException + fullName: System.PlatformNotSupportedException - uid: OpenTK.Platform.IIconComponent.Create* commentId: Overload:OpenTK.Platform.IIconComponent.Create href: OpenTK.Platform.IIconComponent.html#OpenTK_Platform_IIconComponent_Create_OpenTK_Platform_SystemIconType_ @@ -376,6 +420,20 @@ references: name: IconHandle nameWithType: IconHandle fullName: OpenTK.Platform.IconHandle +- uid: System.ArgumentOutOfRangeException + commentId: T:System.ArgumentOutOfRangeException + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.argumentoutofrangeexception + name: ArgumentOutOfRangeException + nameWithType: ArgumentOutOfRangeException + fullName: System.ArgumentOutOfRangeException +- uid: System.ArgumentException + commentId: T:System.ArgumentException + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.argumentexception + name: ArgumentException + nameWithType: ArgumentException + fullName: System.ArgumentException - uid: System.Int32 commentId: T:System.Int32 parent: System @@ -450,13 +508,75 @@ references: - name: " " - name: T - name: ) -- uid: System.ArgumentNullException - commentId: T:System.ArgumentNullException +- uid: OpenTK.Platform.IIconComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte}) + commentId: M:OpenTK.Platform.IIconComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte}) + parent: OpenTK.Platform.IIconComponent isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.argumentnullexception - name: ArgumentNullException - nameWithType: ArgumentNullException - fullName: System.ArgumentNullException + href: OpenTK.Platform.IIconComponent.html#OpenTK_Platform_IIconComponent_Create_System_Int32_System_Int32_System_ReadOnlySpan_System_Byte__ + name: Create(int, int, ReadOnlySpan) + nameWithType: IIconComponent.Create(int, int, ReadOnlySpan) + fullName: OpenTK.Platform.IIconComponent.Create(int, int, System.ReadOnlySpan) + nameWithType.vb: IIconComponent.Create(Integer, Integer, ReadOnlySpan(Of Byte)) + fullName.vb: OpenTK.Platform.IIconComponent.Create(Integer, Integer, System.ReadOnlySpan(Of Byte)) + name.vb: Create(Integer, Integer, ReadOnlySpan(Of Byte)) + spec.csharp: + - uid: OpenTK.Platform.IIconComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte}) + name: Create + href: OpenTK.Platform.IIconComponent.html#OpenTK_Platform_IIconComponent_Create_System_Int32_System_Int32_System_ReadOnlySpan_System_Byte__ + - name: ( + - uid: System.Int32 + name: int + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ',' + - name: " " + - uid: System.Int32 + name: int + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ',' + - name: " " + - uid: System.ReadOnlySpan`1 + name: ReadOnlySpan + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 + - name: < + - uid: System.Byte + name: byte + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.byte + - name: '>' + - name: ) + spec.vb: + - uid: OpenTK.Platform.IIconComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte}) + name: Create + href: OpenTK.Platform.IIconComponent.html#OpenTK_Platform_IIconComponent_Create_System_Int32_System_Int32_System_ReadOnlySpan_System_Byte__ + - name: ( + - uid: System.Int32 + name: Integer + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ',' + - name: " " + - uid: System.Int32 + name: Integer + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ',' + - name: " " + - uid: System.ReadOnlySpan`1 + name: ReadOnlySpan + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 + - name: ( + - name: Of + - name: " " + - uid: System.Byte + name: Byte + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.byte + - name: ) + - name: ) - uid: OpenTK.Platform.IIconComponent.Destroy* commentId: Overload:OpenTK.Platform.IIconComponent.Destroy href: OpenTK.Platform.IIconComponent.html#OpenTK_Platform_IIconComponent_Destroy_OpenTK_Platform_IconHandle_ diff --git a/api/OpenTK.Platform.IJoystickComponent.yml b/api/OpenTK.Platform.IJoystickComponent.yml index 2105e874..588bbe25 100644 --- a/api/OpenTK.Platform.IJoystickComponent.yml +++ b/api/OpenTK.Platform.IJoystickComponent.yml @@ -27,7 +27,7 @@ items: source: id: IJoystickComponent path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IJoystickComponent.cs - startLine: 12 + startLine: 13 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -36,11 +36,15 @@ items: syntax: content: 'public interface IJoystickComponent : IPalComponent' content.vb: Public Interface IJoystickComponent Inherits IPalComponent + seealso: + - linkId: OpenTK.Platform.Toolkit.Joystick + commentId: P:OpenTK.Platform.Toolkit.Joystick inheritedMembers: - OpenTK.Platform.IPalComponent.Name - OpenTK.Platform.IPalComponent.Provides - OpenTK.Platform.IPalComponent.Logger - OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + - OpenTK.Platform.IPalComponent.Uninitialize - uid: OpenTK.Platform.IJoystickComponent.LeftDeadzone commentId: P:OpenTK.Platform.IJoystickComponent.LeftDeadzone id: LeftDeadzone @@ -55,7 +59,7 @@ items: source: id: LeftDeadzone path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IJoystickComponent.cs - startLine: 27 + startLine: 28 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -82,7 +86,7 @@ items: source: id: RightDeadzone path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IJoystickComponent.cs - startLine: 32 + startLine: 33 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -109,7 +113,7 @@ items: source: id: TriggerThreshold path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IJoystickComponent.cs - startLine: 37 + startLine: 38 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -136,7 +140,7 @@ items: source: id: IsConnected path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IJoystickComponent.cs - startLine: 44 + startLine: 45 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -170,7 +174,7 @@ items: source: id: Open path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IJoystickComponent.cs - startLine: 51 + startLine: 52 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -204,7 +208,7 @@ items: source: id: Close path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IJoystickComponent.cs - startLine: 57 + startLine: 58 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -232,7 +236,7 @@ items: source: id: GetGuid path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IJoystickComponent.cs - startLine: 59 + startLine: 60 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -259,7 +263,7 @@ items: source: id: GetName path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IJoystickComponent.cs - startLine: 61 + startLine: 62 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -286,7 +290,7 @@ items: source: id: GetAxis path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IJoystickComponent.cs - startLine: 70 + startLine: 71 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -323,7 +327,7 @@ items: source: id: GetButton path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IJoystickComponent.cs - startLine: 78 + startLine: 79 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -357,7 +361,7 @@ items: source: id: SetVibration path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IJoystickComponent.cs - startLine: 80 + startLine: 81 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -391,7 +395,7 @@ items: source: id: TryGetBatteryInfo path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IJoystickComponent.cs - startLine: 82 + startLine: 83 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -410,6 +414,12 @@ items: fullName.vb: OpenTK.Platform.IJoystickComponent.TryGetBatteryInfo(OpenTK.Platform.JoystickHandle, OpenTK.Platform.GamepadBatteryInfo) name.vb: TryGetBatteryInfo(JoystickHandle, GamepadBatteryInfo) references: +- uid: OpenTK.Platform.Toolkit.Joystick + commentId: P:OpenTK.Platform.Toolkit.Joystick + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Joystick + name: Joystick + nameWithType: Toolkit.Joystick + fullName: OpenTK.Platform.Toolkit.Joystick - uid: OpenTK.Platform commentId: N:OpenTK.Platform href: OpenTK.html @@ -478,6 +488,25 @@ references: name: ToolkitOptions href: OpenTK.Platform.ToolkitOptions.html - name: ) +- uid: OpenTK.Platform.IPalComponent.Uninitialize + commentId: M:OpenTK.Platform.IPalComponent.Uninitialize + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + name: Uninitialize() + nameWithType: IPalComponent.Uninitialize() + fullName: OpenTK.Platform.IPalComponent.Uninitialize() + spec.csharp: + - uid: OpenTK.Platform.IPalComponent.Uninitialize + name: Uninitialize + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + - name: ( + - name: ) + spec.vb: + - uid: OpenTK.Platform.IPalComponent.Uninitialize + name: Uninitialize + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + - name: ( + - name: ) - uid: OpenTK.Platform.IPalComponent commentId: T:OpenTK.Platform.IPalComponent parent: OpenTK.Platform diff --git a/api/OpenTK.Platform.IKeyboardComponent.yml b/api/OpenTK.Platform.IKeyboardComponent.yml index f09ba07d..17a4fb4d 100644 --- a/api/OpenTK.Platform.IKeyboardComponent.yml +++ b/api/OpenTK.Platform.IKeyboardComponent.yml @@ -26,20 +26,24 @@ items: source: id: IKeyboardComponent path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IKeyboardComponent.cs - startLine: 7 + startLine: 8 assemblies: - OpenTK.Platform namespace: OpenTK.Platform - summary: PAL driver for global keyboard information. + summary: Interaface for keyboard interaction, keyboard layouts and IME. example: [] syntax: content: 'public interface IKeyboardComponent : IPalComponent' content.vb: Public Interface IKeyboardComponent Inherits IPalComponent + seealso: + - linkId: OpenTK.Platform.Toolkit.Keyboard + commentId: P:OpenTK.Platform.Toolkit.Keyboard inheritedMembers: - OpenTK.Platform.IPalComponent.Name - OpenTK.Platform.IPalComponent.Provides - OpenTK.Platform.IPalComponent.Logger - OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + - OpenTK.Platform.IPalComponent.Uninitialize - uid: OpenTK.Platform.IKeyboardComponent.SupportsLayouts commentId: P:OpenTK.Platform.IKeyboardComponent.SupportsLayouts id: SupportsLayouts @@ -54,7 +58,7 @@ items: source: id: SupportsLayouts path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IKeyboardComponent.cs - startLine: 16 + startLine: 17 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -81,7 +85,7 @@ items: source: id: SupportsIme path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IKeyboardComponent.cs - startLine: 21 + startLine: 22 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -108,7 +112,7 @@ items: source: id: GetActiveKeyboardLayout path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IKeyboardComponent.cs - startLine: 29 + startLine: 30 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -146,7 +150,7 @@ items: source: id: GetAvailableKeyboardLayouts path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IKeyboardComponent.cs - startLine: 35 + startLine: 36 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -173,7 +177,7 @@ items: source: id: GetScancodeFromKey path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IKeyboardComponent.cs - startLine: 48 + startLine: 50 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -200,6 +204,9 @@ items: or if no scancode produces the key. content.vb: Function GetScancodeFromKey(key As Key) As Scancode overload: OpenTK.Platform.IKeyboardComponent.GetScancodeFromKey* + seealso: + - linkId: OpenTK.Platform.IKeyboardComponent.GetKeyFromScancode(OpenTK.Platform.Scancode) + commentId: M:OpenTK.Platform.IKeyboardComponent.GetKeyFromScancode(OpenTK.Platform.Scancode) - uid: OpenTK.Platform.IKeyboardComponent.GetKeyFromScancode(OpenTK.Platform.Scancode) commentId: M:OpenTK.Platform.IKeyboardComponent.GetKeyFromScancode(OpenTK.Platform.Scancode) id: GetKeyFromScancode(OpenTK.Platform.Scancode) @@ -214,7 +221,7 @@ items: source: id: GetKeyFromScancode path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IKeyboardComponent.cs - startLine: 59 + startLine: 62 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -237,6 +244,9 @@ items: or if the scancode can't be mapped to a key. content.vb: Function GetKeyFromScancode(scancode As Scancode) As Key overload: OpenTK.Platform.IKeyboardComponent.GetKeyFromScancode* + seealso: + - linkId: OpenTK.Platform.IKeyboardComponent.GetScancodeFromKey(OpenTK.Platform.Key) + commentId: M:OpenTK.Platform.IKeyboardComponent.GetScancodeFromKey(OpenTK.Platform.Key) - uid: OpenTK.Platform.IKeyboardComponent.GetKeyboardState(System.Boolean[]) commentId: M:OpenTK.Platform.IKeyboardComponent.GetKeyboardState(System.Boolean[]) id: GetKeyboardState(System.Boolean[]) @@ -251,7 +261,7 @@ items: source: id: GetKeyboardState path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IKeyboardComponent.cs - startLine: 67 + startLine: 72 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -270,6 +280,9 @@ items: description: An array to be filled with the keyboard state. content.vb: Sub GetKeyboardState(keyboardState As Boolean()) overload: OpenTK.Platform.IKeyboardComponent.GetKeyboardState* + seealso: + - linkId: OpenTK.Platform.IKeyboardComponent.GetKeyboardModifiers + commentId: M:OpenTK.Platform.IKeyboardComponent.GetKeyboardModifiers nameWithType.vb: IKeyboardComponent.GetKeyboardState(Boolean()) fullName.vb: OpenTK.Platform.IKeyboardComponent.GetKeyboardState(Boolean()) name.vb: GetKeyboardState(Boolean()) @@ -287,7 +300,7 @@ items: source: id: GetKeyboardModifiers path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IKeyboardComponent.cs - startLine: 73 + startLine: 79 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -300,6 +313,9 @@ items: description: The current keyboard modifiers. content.vb: Function GetKeyboardModifiers() As KeyModifier overload: OpenTK.Platform.IKeyboardComponent.GetKeyboardModifiers* + seealso: + - linkId: OpenTK.Platform.IKeyboardComponent.GetKeyboardState(System.Boolean[]) + commentId: M:OpenTK.Platform.IKeyboardComponent.GetKeyboardState(System.Boolean[]) - uid: OpenTK.Platform.IKeyboardComponent.BeginIme(OpenTK.Platform.WindowHandle) commentId: M:OpenTK.Platform.IKeyboardComponent.BeginIme(OpenTK.Platform.WindowHandle) id: BeginIme(OpenTK.Platform.WindowHandle) @@ -314,7 +330,7 @@ items: source: id: BeginIme path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IKeyboardComponent.cs - startLine: 81 + startLine: 87 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -342,7 +358,7 @@ items: source: id: SetImeRectangle path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IKeyboardComponent.cs - startLine: 91 + startLine: 97 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -385,7 +401,7 @@ items: source: id: EndIme path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IKeyboardComponent.cs - startLine: 97 + startLine: 103 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -400,6 +416,12 @@ items: content.vb: Sub EndIme(window As WindowHandle) overload: OpenTK.Platform.IKeyboardComponent.EndIme* references: +- uid: OpenTK.Platform.Toolkit.Keyboard + commentId: P:OpenTK.Platform.Toolkit.Keyboard + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Keyboard + name: Keyboard + nameWithType: Toolkit.Keyboard + fullName: OpenTK.Platform.Toolkit.Keyboard - uid: OpenTK.Platform commentId: N:OpenTK.Platform href: OpenTK.html @@ -468,6 +490,25 @@ references: name: ToolkitOptions href: OpenTK.Platform.ToolkitOptions.html - name: ) +- uid: OpenTK.Platform.IPalComponent.Uninitialize + commentId: M:OpenTK.Platform.IPalComponent.Uninitialize + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + name: Uninitialize() + nameWithType: IPalComponent.Uninitialize() + fullName: OpenTK.Platform.IPalComponent.Uninitialize() + spec.csharp: + - uid: OpenTK.Platform.IPalComponent.Uninitialize + name: Uninitialize + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + - name: ( + - name: ) + spec.vb: + - uid: OpenTK.Platform.IPalComponent.Uninitialize + name: Uninitialize + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + - name: ( + - name: ) - uid: OpenTK.Platform.IPalComponent commentId: T:OpenTK.Platform.IPalComponent parent: OpenTK.Platform @@ -564,6 +605,31 @@ references: href: https://learn.microsoft.com/dotnet/api/system.string - name: ( - name: ) +- uid: OpenTK.Platform.IKeyboardComponent.GetKeyFromScancode(OpenTK.Platform.Scancode) + commentId: M:OpenTK.Platform.IKeyboardComponent.GetKeyFromScancode(OpenTK.Platform.Scancode) + parent: OpenTK.Platform.IKeyboardComponent + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_GetKeyFromScancode_OpenTK_Platform_Scancode_ + name: GetKeyFromScancode(Scancode) + nameWithType: IKeyboardComponent.GetKeyFromScancode(Scancode) + fullName: OpenTK.Platform.IKeyboardComponent.GetKeyFromScancode(OpenTK.Platform.Scancode) + spec.csharp: + - uid: OpenTK.Platform.IKeyboardComponent.GetKeyFromScancode(OpenTK.Platform.Scancode) + name: GetKeyFromScancode + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_GetKeyFromScancode_OpenTK_Platform_Scancode_ + - name: ( + - uid: OpenTK.Platform.Scancode + name: Scancode + href: OpenTK.Platform.Scancode.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IKeyboardComponent.GetKeyFromScancode(OpenTK.Platform.Scancode) + name: GetKeyFromScancode + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_GetKeyFromScancode_OpenTK_Platform_Scancode_ + - name: ( + - uid: OpenTK.Platform.Scancode + name: Scancode + href: OpenTK.Platform.Scancode.html + - name: ) - uid: OpenTK.Platform.Scancode commentId: T:OpenTK.Platform.Scancode parent: OpenTK.Platform @@ -590,6 +656,38 @@ references: name: GetScancodeFromKey nameWithType: IKeyboardComponent.GetScancodeFromKey fullName: OpenTK.Platform.IKeyboardComponent.GetScancodeFromKey +- uid: OpenTK.Platform.IKeyboardComponent + commentId: T:OpenTK.Platform.IKeyboardComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IKeyboardComponent.html + name: IKeyboardComponent + nameWithType: IKeyboardComponent + fullName: OpenTK.Platform.IKeyboardComponent +- uid: OpenTK.Platform.IKeyboardComponent.GetScancodeFromKey(OpenTK.Platform.Key) + commentId: M:OpenTK.Platform.IKeyboardComponent.GetScancodeFromKey(OpenTK.Platform.Key) + parent: OpenTK.Platform.IKeyboardComponent + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_GetScancodeFromKey_OpenTK_Platform_Key_ + name: GetScancodeFromKey(Key) + nameWithType: IKeyboardComponent.GetScancodeFromKey(Key) + fullName: OpenTK.Platform.IKeyboardComponent.GetScancodeFromKey(OpenTK.Platform.Key) + spec.csharp: + - uid: OpenTK.Platform.IKeyboardComponent.GetScancodeFromKey(OpenTK.Platform.Key) + name: GetScancodeFromKey + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_GetScancodeFromKey_OpenTK_Platform_Key_ + - name: ( + - uid: OpenTK.Platform.Key + name: Key + href: OpenTK.Platform.Key.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IKeyboardComponent.GetScancodeFromKey(OpenTK.Platform.Key) + name: GetScancodeFromKey + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_GetScancodeFromKey_OpenTK_Platform_Key_ + - name: ( + - uid: OpenTK.Platform.Key + name: Key + href: OpenTK.Platform.Key.html + - name: ) - uid: OpenTK.Platform.Key.Unknown commentId: F:OpenTK.Platform.Key.Unknown href: OpenTK.Platform.Key.html#OpenTK_Platform_Key_Unknown @@ -602,6 +700,25 @@ references: name: GetKeyFromScancode nameWithType: IKeyboardComponent.GetKeyFromScancode fullName: OpenTK.Platform.IKeyboardComponent.GetKeyFromScancode +- uid: OpenTK.Platform.IKeyboardComponent.GetKeyboardModifiers + commentId: M:OpenTK.Platform.IKeyboardComponent.GetKeyboardModifiers + parent: OpenTK.Platform.IKeyboardComponent + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_GetKeyboardModifiers + name: GetKeyboardModifiers() + nameWithType: IKeyboardComponent.GetKeyboardModifiers() + fullName: OpenTK.Platform.IKeyboardComponent.GetKeyboardModifiers() + spec.csharp: + - uid: OpenTK.Platform.IKeyboardComponent.GetKeyboardModifiers + name: GetKeyboardModifiers + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_GetKeyboardModifiers + - name: ( + - name: ) + spec.vb: + - uid: OpenTK.Platform.IKeyboardComponent.GetKeyboardModifiers + name: GetKeyboardModifiers + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_GetKeyboardModifiers + - name: ( + - name: ) - uid: OpenTK.Platform.IKeyboardComponent.GetKeyboardState* commentId: Overload:OpenTK.Platform.IKeyboardComponent.GetKeyboardState href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_GetKeyboardState_System_Boolean___ @@ -631,6 +748,41 @@ references: href: https://learn.microsoft.com/dotnet/api/system.boolean - name: ( - name: ) +- uid: OpenTK.Platform.IKeyboardComponent.GetKeyboardState(System.Boolean[]) + commentId: M:OpenTK.Platform.IKeyboardComponent.GetKeyboardState(System.Boolean[]) + parent: OpenTK.Platform.IKeyboardComponent + isExternal: true + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_GetKeyboardState_System_Boolean___ + name: GetKeyboardState(bool[]) + nameWithType: IKeyboardComponent.GetKeyboardState(bool[]) + fullName: OpenTK.Platform.IKeyboardComponent.GetKeyboardState(bool[]) + nameWithType.vb: IKeyboardComponent.GetKeyboardState(Boolean()) + fullName.vb: OpenTK.Platform.IKeyboardComponent.GetKeyboardState(Boolean()) + name.vb: GetKeyboardState(Boolean()) + spec.csharp: + - uid: OpenTK.Platform.IKeyboardComponent.GetKeyboardState(System.Boolean[]) + name: GetKeyboardState + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_GetKeyboardState_System_Boolean___ + - name: ( + - uid: System.Boolean + name: bool + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: '[' + - name: ']' + - name: ) + spec.vb: + - uid: OpenTK.Platform.IKeyboardComponent.GetKeyboardState(System.Boolean[]) + name: GetKeyboardState + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_GetKeyboardState_System_Boolean___ + - name: ( + - uid: System.Boolean + name: Boolean + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: ( + - name: ) + - name: ) - uid: OpenTK.Platform.IKeyboardComponent.GetKeyboardModifiers* commentId: Overload:OpenTK.Platform.IKeyboardComponent.GetKeyboardModifiers href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_GetKeyboardModifiers diff --git a/api/OpenTK.Platform.IMouseComponent.yml b/api/OpenTK.Platform.IMouseComponent.yml index bdc11317..bf8d28ea 100644 --- a/api/OpenTK.Platform.IMouseComponent.yml +++ b/api/OpenTK.Platform.IMouseComponent.yml @@ -7,10 +7,12 @@ items: children: - OpenTK.Platform.IMouseComponent.CanSetMousePosition - OpenTK.Platform.IMouseComponent.EnableRawMouseMotion(OpenTK.Platform.WindowHandle,System.Boolean) - - OpenTK.Platform.IMouseComponent.GetMouseState(OpenTK.Platform.MouseState@) - - OpenTK.Platform.IMouseComponent.GetPosition(System.Int32@,System.Int32@) + - OpenTK.Platform.IMouseComponent.GetGlobalMouseState(OpenTK.Platform.MouseState@) + - OpenTK.Platform.IMouseComponent.GetGlobalPosition(OpenTK.Mathematics.Vector2@) + - OpenTK.Platform.IMouseComponent.GetMouseState(OpenTK.Platform.WindowHandle,OpenTK.Platform.MouseState@) + - OpenTK.Platform.IMouseComponent.GetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2@) - OpenTK.Platform.IMouseComponent.IsRawMouseMotionEnabled(OpenTK.Platform.WindowHandle) - - OpenTK.Platform.IMouseComponent.SetPosition(System.Int32,System.Int32) + - OpenTK.Platform.IMouseComponent.SetGlobalPosition(OpenTK.Mathematics.Vector2) - OpenTK.Platform.IMouseComponent.SupportsRawMouseMotion langs: - csharp @@ -22,20 +24,24 @@ items: source: id: IMouseComponent path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IMouseComponent.cs - startLine: 31 + startLine: 36 assemblies: - OpenTK.Platform namespace: OpenTK.Platform - summary: Base interface for drivers which implement the mouse component. + summary: Interace for getting mouse input and setting mouse position. example: [] syntax: content: 'public interface IMouseComponent : IPalComponent' content.vb: Public Interface IMouseComponent Inherits IPalComponent + seealso: + - linkId: OpenTK.Platform.Toolkit.Mouse + commentId: P:OpenTK.Platform.Toolkit.Mouse inheritedMembers: - OpenTK.Platform.IPalComponent.Name - OpenTK.Platform.IPalComponent.Provides - OpenTK.Platform.IPalComponent.Logger - OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + - OpenTK.Platform.IPalComponent.Uninitialize - uid: OpenTK.Platform.IMouseComponent.CanSetMousePosition commentId: P:OpenTK.Platform.IMouseComponent.CanSetMousePosition id: CanSetMousePosition @@ -50,11 +56,11 @@ items: source: id: CanSetMousePosition path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IMouseComponent.cs - startLine: 37 + startLine: 42 assemblies: - OpenTK.Platform namespace: OpenTK.Platform - summary: If it's possible to set the position of the mouse using . + summary: If it's possible to set the position of the mouse using . example: [] syntax: content: bool CanSetMousePosition { get; } @@ -64,8 +70,8 @@ items: content.vb: ReadOnly Property CanSetMousePosition As Boolean overload: OpenTK.Platform.IMouseComponent.CanSetMousePosition* seealso: - - linkId: OpenTK.Platform.IMouseComponent.SetPosition(System.Int32,System.Int32) - commentId: M:OpenTK.Platform.IMouseComponent.SetPosition(System.Int32,System.Int32) + - linkId: OpenTK.Platform.IMouseComponent.SetGlobalPosition(OpenTK.Mathematics.Vector2) + commentId: M:OpenTK.Platform.IMouseComponent.SetGlobalPosition(OpenTK.Mathematics.Vector2) - uid: OpenTK.Platform.IMouseComponent.SupportsRawMouseMotion commentId: P:OpenTK.Platform.IMouseComponent.SupportsRawMouseMotion id: SupportsRawMouseMotion @@ -80,7 +86,7 @@ items: source: id: SupportsRawMouseMotion path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IMouseComponent.cs - startLine: 47 + startLine: 52 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -101,111 +107,210 @@ items: commentId: M:OpenTK.Platform.IMouseComponent.IsRawMouseMotionEnabled(OpenTK.Platform.WindowHandle) - linkId: OpenTK.Platform.IMouseComponent.EnableRawMouseMotion(OpenTK.Platform.WindowHandle,System.Boolean) commentId: M:OpenTK.Platform.IMouseComponent.EnableRawMouseMotion(OpenTK.Platform.WindowHandle,System.Boolean) -- uid: OpenTK.Platform.IMouseComponent.GetPosition(System.Int32@,System.Int32@) - commentId: M:OpenTK.Platform.IMouseComponent.GetPosition(System.Int32@,System.Int32@) - id: GetPosition(System.Int32@,System.Int32@) +- uid: OpenTK.Platform.IMouseComponent.GetGlobalPosition(OpenTK.Mathematics.Vector2@) + commentId: M:OpenTK.Platform.IMouseComponent.GetGlobalPosition(OpenTK.Mathematics.Vector2@) + id: GetGlobalPosition(OpenTK.Mathematics.Vector2@) + parent: OpenTK.Platform.IMouseComponent + langs: + - csharp + - vb + name: GetGlobalPosition(out Vector2) + nameWithType: IMouseComponent.GetGlobalPosition(out Vector2) + fullName: OpenTK.Platform.IMouseComponent.GetGlobalPosition(out OpenTK.Mathematics.Vector2) + type: Method + source: + id: GetGlobalPosition + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IMouseComponent.cs + startLine: 62 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: >- + Get the global mouse cursor position. + + This function may query the mouse position outside of event processing to get the position of the mouse at the time this function is called. + + The mouse position returned is the mouse position as it is on screen, it will not return virtual coordinates when using . + example: [] + syntax: + content: void GetGlobalPosition(out Vector2 globalPosition) + parameters: + - id: globalPosition + type: OpenTK.Mathematics.Vector2 + description: Coordinate of the mouse in screen coordinates. + content.vb: Sub GetGlobalPosition(globalPosition As Vector2) + overload: OpenTK.Platform.IMouseComponent.GetGlobalPosition* + seealso: + - linkId: OpenTK.Platform.IMouseComponent.GetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2@) + commentId: M:OpenTK.Platform.IMouseComponent.GetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2@) + - linkId: OpenTK.Platform.IMouseComponent.SetGlobalPosition(OpenTK.Mathematics.Vector2) + commentId: M:OpenTK.Platform.IMouseComponent.SetGlobalPosition(OpenTK.Mathematics.Vector2) + nameWithType.vb: IMouseComponent.GetGlobalPosition(Vector2) + fullName.vb: OpenTK.Platform.IMouseComponent.GetGlobalPosition(OpenTK.Mathematics.Vector2) + name.vb: GetGlobalPosition(Vector2) +- uid: OpenTK.Platform.IMouseComponent.GetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2@) + commentId: M:OpenTK.Platform.IMouseComponent.GetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2@) + id: GetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2@) parent: OpenTK.Platform.IMouseComponent langs: - csharp - vb - name: GetPosition(out int, out int) - nameWithType: IMouseComponent.GetPosition(out int, out int) - fullName: OpenTK.Platform.IMouseComponent.GetPosition(out int, out int) + name: GetPosition(WindowHandle, out Vector2) + nameWithType: IMouseComponent.GetPosition(WindowHandle, out Vector2) + fullName: OpenTK.Platform.IMouseComponent.GetPosition(OpenTK.Platform.WindowHandle, out OpenTK.Mathematics.Vector2) type: Method source: id: GetPosition path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IMouseComponent.cs - startLine: 58 + startLine: 72 assemblies: - OpenTK.Platform namespace: OpenTK.Platform - summary: Get the mouse cursor position. + summary: >- + Gets the mouse position as seen from the specified window. + + This function takes into consideration only the mouse events that the specified window has received and does not represent global state. + + If the window has locked the cursor using , this function will return virtual coordinates (unlike GetGlobalPosition(out Vector2i)). example: [] syntax: - content: void GetPosition(out int x, out int y) + content: void GetPosition(WindowHandle window, out Vector2 position) parameters: - - id: x - type: System.Int32 - description: X coordinate of the mouse in desktop space. - - id: y - type: System.Int32 - description: Y coordinate of the mouse in desktop space. - content.vb: Sub GetPosition(x As Integer, y As Integer) + - id: window + type: OpenTK.Platform.WindowHandle + description: The window to get the mouse position for. + - id: position + type: OpenTK.Mathematics.Vector2 + description: Coordinate of the mouse in client coordinates. + content.vb: Sub GetPosition(window As WindowHandle, position As Vector2) overload: OpenTK.Platform.IMouseComponent.GetPosition* - nameWithType.vb: IMouseComponent.GetPosition(Integer, Integer) - fullName.vb: OpenTK.Platform.IMouseComponent.GetPosition(Integer, Integer) - name.vb: GetPosition(Integer, Integer) -- uid: OpenTK.Platform.IMouseComponent.SetPosition(System.Int32,System.Int32) - commentId: M:OpenTK.Platform.IMouseComponent.SetPosition(System.Int32,System.Int32) - id: SetPosition(System.Int32,System.Int32) + seealso: + - linkId: OpenTK.Platform.IMouseComponent.GetGlobalPosition(OpenTK.Mathematics.Vector2@) + commentId: M:OpenTK.Platform.IMouseComponent.GetGlobalPosition(OpenTK.Mathematics.Vector2@) + nameWithType.vb: IMouseComponent.GetPosition(WindowHandle, Vector2) + fullName.vb: OpenTK.Platform.IMouseComponent.GetPosition(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2) + name.vb: GetPosition(WindowHandle, Vector2) +- uid: OpenTK.Platform.IMouseComponent.SetGlobalPosition(OpenTK.Mathematics.Vector2) + commentId: M:OpenTK.Platform.IMouseComponent.SetGlobalPosition(OpenTK.Mathematics.Vector2) + id: SetGlobalPosition(OpenTK.Mathematics.Vector2) parent: OpenTK.Platform.IMouseComponent langs: - csharp - vb - name: SetPosition(int, int) - nameWithType: IMouseComponent.SetPosition(int, int) - fullName: OpenTK.Platform.IMouseComponent.SetPosition(int, int) + name: SetGlobalPosition(Vector2) + nameWithType: IMouseComponent.SetGlobalPosition(Vector2) + fullName: OpenTK.Platform.IMouseComponent.SetGlobalPosition(OpenTK.Mathematics.Vector2) type: Method source: - id: SetPosition + id: SetGlobalPosition path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IMouseComponent.cs - startLine: 67 + startLine: 81 assemblies: - OpenTK.Platform namespace: OpenTK.Platform summary: >- - Set the mouse cursor position. + Set the global mouse cursor position. Check that is true before using this. example: [] syntax: - content: void SetPosition(int x, int y) + content: void SetGlobalPosition(Vector2 newGlobalPosition) parameters: - - id: x - type: System.Int32 - description: X coordinate of the mouse in desktop space. - - id: y - type: System.Int32 - description: Y coordinate of the mouse in desktop space. - content.vb: Sub SetPosition(x As Integer, y As Integer) - overload: OpenTK.Platform.IMouseComponent.SetPosition* + - id: newGlobalPosition + type: OpenTK.Mathematics.Vector2 + description: New coordinate of the mouse in screen space. + content.vb: Sub SetGlobalPosition(newGlobalPosition As Vector2) + overload: OpenTK.Platform.IMouseComponent.SetGlobalPosition* seealso: + - linkId: OpenTK.Platform.IMouseComponent.GetGlobalPosition(OpenTK.Mathematics.Vector2@) + commentId: M:OpenTK.Platform.IMouseComponent.GetGlobalPosition(OpenTK.Mathematics.Vector2@) - linkId: OpenTK.Platform.IMouseComponent.CanSetMousePosition commentId: P:OpenTK.Platform.IMouseComponent.CanSetMousePosition - nameWithType.vb: IMouseComponent.SetPosition(Integer, Integer) - fullName.vb: OpenTK.Platform.IMouseComponent.SetPosition(Integer, Integer) - name.vb: SetPosition(Integer, Integer) -- uid: OpenTK.Platform.IMouseComponent.GetMouseState(OpenTK.Platform.MouseState@) - commentId: M:OpenTK.Platform.IMouseComponent.GetMouseState(OpenTK.Platform.MouseState@) - id: GetMouseState(OpenTK.Platform.MouseState@) +- uid: OpenTK.Platform.IMouseComponent.GetGlobalMouseState(OpenTK.Platform.MouseState@) + commentId: M:OpenTK.Platform.IMouseComponent.GetGlobalMouseState(OpenTK.Platform.MouseState@) + id: GetGlobalMouseState(OpenTK.Platform.MouseState@) + parent: OpenTK.Platform.IMouseComponent + langs: + - csharp + - vb + name: GetGlobalMouseState(out MouseState) + nameWithType: IMouseComponent.GetGlobalMouseState(out MouseState) + fullName: OpenTK.Platform.IMouseComponent.GetGlobalMouseState(out OpenTK.Platform.MouseState) + type: Method + source: + id: GetGlobalMouseState + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IMouseComponent.cs + startLine: 91 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: >- + Fills the state struct with the current mouse state. + + This function may query the mouse state outside of event processing to get the position of the mouse at the time this function is called. + + The will be the screen mouse position and not virtual coordinates described by . + + The is in window screen coordinates. + example: [] + syntax: + content: void GetGlobalMouseState(out MouseState state) + parameters: + - id: state + type: OpenTK.Platform.MouseState + description: The current mouse state. + content.vb: Sub GetGlobalMouseState(state As MouseState) + overload: OpenTK.Platform.IMouseComponent.GetGlobalMouseState* + seealso: + - linkId: OpenTK.Platform.IMouseComponent.GetMouseState(OpenTK.Platform.WindowHandle,OpenTK.Platform.MouseState@) + commentId: M:OpenTK.Platform.IMouseComponent.GetMouseState(OpenTK.Platform.WindowHandle,OpenTK.Platform.MouseState@) + nameWithType.vb: IMouseComponent.GetGlobalMouseState(MouseState) + fullName.vb: OpenTK.Platform.IMouseComponent.GetGlobalMouseState(OpenTK.Platform.MouseState) + name.vb: GetGlobalMouseState(MouseState) +- uid: OpenTK.Platform.IMouseComponent.GetMouseState(OpenTK.Platform.WindowHandle,OpenTK.Platform.MouseState@) + commentId: M:OpenTK.Platform.IMouseComponent.GetMouseState(OpenTK.Platform.WindowHandle,OpenTK.Platform.MouseState@) + id: GetMouseState(OpenTK.Platform.WindowHandle,OpenTK.Platform.MouseState@) parent: OpenTK.Platform.IMouseComponent langs: - csharp - vb - name: GetMouseState(out MouseState) - nameWithType: IMouseComponent.GetMouseState(out MouseState) - fullName: OpenTK.Platform.IMouseComponent.GetMouseState(out OpenTK.Platform.MouseState) + name: GetMouseState(WindowHandle, out MouseState) + nameWithType: IMouseComponent.GetMouseState(WindowHandle, out MouseState) + fullName: OpenTK.Platform.IMouseComponent.GetMouseState(OpenTK.Platform.WindowHandle, out OpenTK.Platform.MouseState) type: Method source: id: GetMouseState path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IMouseComponent.cs - startLine: 73 + startLine: 102 assemblies: - OpenTK.Platform namespace: OpenTK.Platform - summary: Fills the state struct with the current mouse state. + summary: >- + Fills the state struct with the current mouse state for the specified window. + + This function takes into consideration only the mouse events that the specified window has received and does not represent global state. + + If the window has locked the cursor using , this function will return virtual coordinates (unlike ). + + The is in window relative coordinates. example: [] syntax: - content: void GetMouseState(out MouseState state) + content: void GetMouseState(WindowHandle window, out MouseState state) parameters: + - id: window + type: OpenTK.Platform.WindowHandle + description: The window to get the mouse state from. - id: state type: OpenTK.Platform.MouseState description: The current mouse state. - content.vb: Sub GetMouseState(state As MouseState) + content.vb: Sub GetMouseState(window As WindowHandle, state As MouseState) overload: OpenTK.Platform.IMouseComponent.GetMouseState* - nameWithType.vb: IMouseComponent.GetMouseState(MouseState) - fullName.vb: OpenTK.Platform.IMouseComponent.GetMouseState(OpenTK.Platform.MouseState) - name.vb: GetMouseState(MouseState) + seealso: + - linkId: OpenTK.Platform.IMouseComponent.GetGlobalMouseState(OpenTK.Platform.MouseState@) + commentId: M:OpenTK.Platform.IMouseComponent.GetGlobalMouseState(OpenTK.Platform.MouseState@) + nameWithType.vb: IMouseComponent.GetMouseState(WindowHandle, MouseState) + fullName.vb: OpenTK.Platform.IMouseComponent.GetMouseState(OpenTK.Platform.WindowHandle, OpenTK.Platform.MouseState) + name.vb: GetMouseState(WindowHandle, MouseState) - uid: OpenTK.Platform.IMouseComponent.IsRawMouseMotionEnabled(OpenTK.Platform.WindowHandle) commentId: M:OpenTK.Platform.IMouseComponent.IsRawMouseMotionEnabled(OpenTK.Platform.WindowHandle) id: IsRawMouseMotionEnabled(OpenTK.Platform.WindowHandle) @@ -220,7 +325,7 @@ items: source: id: IsRawMouseMotionEnabled path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IMouseComponent.cs - startLine: 82 + startLine: 112 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -243,6 +348,8 @@ items: seealso: - linkId: OpenTK.Platform.IMouseComponent.SupportsRawMouseMotion commentId: P:OpenTK.Platform.IMouseComponent.SupportsRawMouseMotion + - linkId: OpenTK.Platform.IMouseComponent.EnableRawMouseMotion(OpenTK.Platform.WindowHandle,System.Boolean) + commentId: M:OpenTK.Platform.IMouseComponent.EnableRawMouseMotion(OpenTK.Platform.WindowHandle,System.Boolean) - uid: OpenTK.Platform.IMouseComponent.EnableRawMouseMotion(OpenTK.Platform.WindowHandle,System.Boolean) commentId: M:OpenTK.Platform.IMouseComponent.EnableRawMouseMotion(OpenTK.Platform.WindowHandle,System.Boolean) id: EnableRawMouseMotion(OpenTK.Platform.WindowHandle,System.Boolean) @@ -257,7 +364,7 @@ items: source: id: EnableRawMouseMotion path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IMouseComponent.cs - startLine: 93 + startLine: 124 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -288,6 +395,12 @@ items: fullName.vb: OpenTK.Platform.IMouseComponent.EnableRawMouseMotion(OpenTK.Platform.WindowHandle, Boolean) name.vb: EnableRawMouseMotion(WindowHandle, Boolean) references: +- uid: OpenTK.Platform.Toolkit.Mouse + commentId: P:OpenTK.Platform.Toolkit.Mouse + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Mouse + name: Mouse + nameWithType: Toolkit.Mouse + fullName: OpenTK.Platform.Toolkit.Mouse - uid: OpenTK.Platform commentId: N:OpenTK.Platform href: OpenTK.html @@ -356,6 +469,25 @@ references: name: ToolkitOptions href: OpenTK.Platform.ToolkitOptions.html - name: ) +- uid: OpenTK.Platform.IPalComponent.Uninitialize + commentId: M:OpenTK.Platform.IPalComponent.Uninitialize + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + name: Uninitialize() + nameWithType: IPalComponent.Uninitialize() + fullName: OpenTK.Platform.IPalComponent.Uninitialize() + spec.csharp: + - uid: OpenTK.Platform.IPalComponent.Uninitialize + name: Uninitialize + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + - name: ( + - name: ) + spec.vb: + - uid: OpenTK.Platform.IPalComponent.Uninitialize + name: Uninitialize + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + - name: ( + - name: ) - uid: OpenTK.Platform.IPalComponent commentId: T:OpenTK.Platform.IPalComponent parent: OpenTK.Platform @@ -363,48 +495,30 @@ references: name: IPalComponent nameWithType: IPalComponent fullName: OpenTK.Platform.IPalComponent -- uid: OpenTK.Platform.IMouseComponent.SetPosition(System.Int32,System.Int32) - commentId: M:OpenTK.Platform.IMouseComponent.SetPosition(System.Int32,System.Int32) +- uid: OpenTK.Platform.IMouseComponent.SetGlobalPosition(OpenTK.Mathematics.Vector2) + commentId: M:OpenTK.Platform.IMouseComponent.SetGlobalPosition(OpenTK.Mathematics.Vector2) parent: OpenTK.Platform.IMouseComponent - isExternal: true - href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_SetPosition_System_Int32_System_Int32_ - name: SetPosition(int, int) - nameWithType: IMouseComponent.SetPosition(int, int) - fullName: OpenTK.Platform.IMouseComponent.SetPosition(int, int) - nameWithType.vb: IMouseComponent.SetPosition(Integer, Integer) - fullName.vb: OpenTK.Platform.IMouseComponent.SetPosition(Integer, Integer) - name.vb: SetPosition(Integer, Integer) + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_SetGlobalPosition_OpenTK_Mathematics_Vector2_ + name: SetGlobalPosition(Vector2) + nameWithType: IMouseComponent.SetGlobalPosition(Vector2) + fullName: OpenTK.Platform.IMouseComponent.SetGlobalPosition(OpenTK.Mathematics.Vector2) spec.csharp: - - uid: OpenTK.Platform.IMouseComponent.SetPosition(System.Int32,System.Int32) - name: SetPosition - href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_SetPosition_System_Int32_System_Int32_ + - uid: OpenTK.Platform.IMouseComponent.SetGlobalPosition(OpenTK.Mathematics.Vector2) + name: SetGlobalPosition + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_SetGlobalPosition_OpenTK_Mathematics_Vector2_ - name: ( - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 + - uid: OpenTK.Mathematics.Vector2 + name: Vector2 + href: OpenTK.Mathematics.Vector2.html - name: ) spec.vb: - - uid: OpenTK.Platform.IMouseComponent.SetPosition(System.Int32,System.Int32) - name: SetPosition - href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_SetPosition_System_Int32_System_Int32_ + - uid: OpenTK.Platform.IMouseComponent.SetGlobalPosition(OpenTK.Mathematics.Vector2) + name: SetGlobalPosition + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_SetGlobalPosition_OpenTK_Mathematics_Vector2_ - name: ( - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 + - uid: OpenTK.Mathematics.Vector2 + name: Vector2 + href: OpenTK.Mathematics.Vector2.html - name: ) - uid: OpenTK.Platform.IMouseComponent.CanSetMousePosition* commentId: Overload:OpenTK.Platform.IMouseComponent.CanSetMousePosition @@ -509,23 +623,130 @@ references: name: SupportsRawMouseMotion nameWithType: IMouseComponent.SupportsRawMouseMotion fullName: OpenTK.Platform.IMouseComponent.SupportsRawMouseMotion +- uid: OpenTK.Platform.IMouseComponent.GetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2@) + commentId: M:OpenTK.Platform.IMouseComponent.GetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2@) + parent: OpenTK.Platform.IMouseComponent + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_GetPosition_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2__ + name: GetPosition(WindowHandle, out Vector2) + nameWithType: IMouseComponent.GetPosition(WindowHandle, out Vector2) + fullName: OpenTK.Platform.IMouseComponent.GetPosition(OpenTK.Platform.WindowHandle, out OpenTK.Mathematics.Vector2) + nameWithType.vb: IMouseComponent.GetPosition(WindowHandle, Vector2) + fullName.vb: OpenTK.Platform.IMouseComponent.GetPosition(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2) + name.vb: GetPosition(WindowHandle, Vector2) + spec.csharp: + - uid: OpenTK.Platform.IMouseComponent.GetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2@) + name: GetPosition + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_GetPosition_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2__ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - name: out + - name: " " + - uid: OpenTK.Mathematics.Vector2 + name: Vector2 + href: OpenTK.Mathematics.Vector2.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IMouseComponent.GetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2@) + name: GetPosition + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_GetPosition_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2__ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: OpenTK.Mathematics.Vector2 + name: Vector2 + href: OpenTK.Mathematics.Vector2.html + - name: ) +- uid: OpenTK.Platform.CursorCaptureMode.Locked + commentId: F:OpenTK.Platform.CursorCaptureMode.Locked + href: OpenTK.Platform.CursorCaptureMode.html#OpenTK_Platform_CursorCaptureMode_Locked + name: Locked + nameWithType: CursorCaptureMode.Locked + fullName: OpenTK.Platform.CursorCaptureMode.Locked +- uid: OpenTK.Platform.IMouseComponent.GetGlobalPosition* + commentId: Overload:OpenTK.Platform.IMouseComponent.GetGlobalPosition + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_GetGlobalPosition_OpenTK_Mathematics_Vector2__ + name: GetGlobalPosition + nameWithType: IMouseComponent.GetGlobalPosition + fullName: OpenTK.Platform.IMouseComponent.GetGlobalPosition +- uid: OpenTK.Mathematics.Vector2 + commentId: T:OpenTK.Mathematics.Vector2 + parent: OpenTK.Mathematics + href: OpenTK.Mathematics.Vector2.html + name: Vector2 + nameWithType: Vector2 + fullName: OpenTK.Mathematics.Vector2 +- uid: OpenTK.Mathematics + commentId: N:OpenTK.Mathematics + href: OpenTK.html + name: OpenTK.Mathematics + nameWithType: OpenTK.Mathematics + fullName: OpenTK.Mathematics + spec.csharp: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Mathematics + name: Mathematics + href: OpenTK.Mathematics.html + spec.vb: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Mathematics + name: Mathematics + href: OpenTK.Mathematics.html +- uid: OpenTK.Platform.IMouseComponent.GetGlobalPosition(OpenTK.Mathematics.Vector2@) + commentId: M:OpenTK.Platform.IMouseComponent.GetGlobalPosition(OpenTK.Mathematics.Vector2@) + parent: OpenTK.Platform.IMouseComponent + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_GetGlobalPosition_OpenTK_Mathematics_Vector2__ + name: GetGlobalPosition(out Vector2) + nameWithType: IMouseComponent.GetGlobalPosition(out Vector2) + fullName: OpenTK.Platform.IMouseComponent.GetGlobalPosition(out OpenTK.Mathematics.Vector2) + nameWithType.vb: IMouseComponent.GetGlobalPosition(Vector2) + fullName.vb: OpenTK.Platform.IMouseComponent.GetGlobalPosition(OpenTK.Mathematics.Vector2) + name.vb: GetGlobalPosition(Vector2) + spec.csharp: + - uid: OpenTK.Platform.IMouseComponent.GetGlobalPosition(OpenTK.Mathematics.Vector2@) + name: GetGlobalPosition + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_GetGlobalPosition_OpenTK_Mathematics_Vector2__ + - name: ( + - name: out + - name: " " + - uid: OpenTK.Mathematics.Vector2 + name: Vector2 + href: OpenTK.Mathematics.Vector2.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IMouseComponent.GetGlobalPosition(OpenTK.Mathematics.Vector2@) + name: GetGlobalPosition + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_GetGlobalPosition_OpenTK_Mathematics_Vector2__ + - name: ( + - uid: OpenTK.Mathematics.Vector2 + name: Vector2 + href: OpenTK.Mathematics.Vector2.html + - name: ) - uid: OpenTK.Platform.IMouseComponent.GetPosition* commentId: Overload:OpenTK.Platform.IMouseComponent.GetPosition - href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_GetPosition_System_Int32__System_Int32__ + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_GetPosition_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2__ name: GetPosition nameWithType: IMouseComponent.GetPosition fullName: OpenTK.Platform.IMouseComponent.GetPosition -- uid: System.Int32 - commentId: T:System.Int32 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - name: int - nameWithType: int - fullName: int - nameWithType.vb: Integer - fullName.vb: Integer - name.vb: Integer +- uid: OpenTK.Platform.WindowHandle + commentId: T:OpenTK.Platform.WindowHandle + parent: OpenTK.Platform + href: OpenTK.Platform.WindowHandle.html + name: WindowHandle + nameWithType: WindowHandle + fullName: OpenTK.Platform.WindowHandle - uid: OpenTK.Platform.IMouseComponent.CanSetMousePosition commentId: P:OpenTK.Platform.IMouseComponent.CanSetMousePosition parent: OpenTK.Platform.IMouseComponent @@ -533,18 +754,64 @@ references: name: CanSetMousePosition nameWithType: IMouseComponent.CanSetMousePosition fullName: OpenTK.Platform.IMouseComponent.CanSetMousePosition -- uid: OpenTK.Platform.IMouseComponent.SetPosition* - commentId: Overload:OpenTK.Platform.IMouseComponent.SetPosition - href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_SetPosition_System_Int32_System_Int32_ - name: SetPosition - nameWithType: IMouseComponent.SetPosition - fullName: OpenTK.Platform.IMouseComponent.SetPosition -- uid: OpenTK.Platform.IMouseComponent.GetMouseState* - commentId: Overload:OpenTK.Platform.IMouseComponent.GetMouseState - href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_GetMouseState_OpenTK_Platform_MouseState__ - name: GetMouseState - nameWithType: IMouseComponent.GetMouseState - fullName: OpenTK.Platform.IMouseComponent.GetMouseState +- uid: OpenTK.Platform.IMouseComponent.SetGlobalPosition* + commentId: Overload:OpenTK.Platform.IMouseComponent.SetGlobalPosition + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_SetGlobalPosition_OpenTK_Mathematics_Vector2_ + name: SetGlobalPosition + nameWithType: IMouseComponent.SetGlobalPosition + fullName: OpenTK.Platform.IMouseComponent.SetGlobalPosition +- uid: OpenTK.Platform.IMouseComponent.GetMouseState(OpenTK.Platform.WindowHandle,OpenTK.Platform.MouseState@) + commentId: M:OpenTK.Platform.IMouseComponent.GetMouseState(OpenTK.Platform.WindowHandle,OpenTK.Platform.MouseState@) + parent: OpenTK.Platform.IMouseComponent + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_GetMouseState_OpenTK_Platform_WindowHandle_OpenTK_Platform_MouseState__ + name: GetMouseState(WindowHandle, out MouseState) + nameWithType: IMouseComponent.GetMouseState(WindowHandle, out MouseState) + fullName: OpenTK.Platform.IMouseComponent.GetMouseState(OpenTK.Platform.WindowHandle, out OpenTK.Platform.MouseState) + nameWithType.vb: IMouseComponent.GetMouseState(WindowHandle, MouseState) + fullName.vb: OpenTK.Platform.IMouseComponent.GetMouseState(OpenTK.Platform.WindowHandle, OpenTK.Platform.MouseState) + name.vb: GetMouseState(WindowHandle, MouseState) + spec.csharp: + - uid: OpenTK.Platform.IMouseComponent.GetMouseState(OpenTK.Platform.WindowHandle,OpenTK.Platform.MouseState@) + name: GetMouseState + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_GetMouseState_OpenTK_Platform_WindowHandle_OpenTK_Platform_MouseState__ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - name: out + - name: " " + - uid: OpenTK.Platform.MouseState + name: MouseState + href: OpenTK.Platform.MouseState.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IMouseComponent.GetMouseState(OpenTK.Platform.WindowHandle,OpenTK.Platform.MouseState@) + name: GetMouseState + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_GetMouseState_OpenTK_Platform_WindowHandle_OpenTK_Platform_MouseState__ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: OpenTK.Platform.MouseState + name: MouseState + href: OpenTK.Platform.MouseState.html + - name: ) +- uid: OpenTK.Platform.MouseState.Position + commentId: F:OpenTK.Platform.MouseState.Position + href: OpenTK.Platform.MouseState.html#OpenTK_Platform_MouseState_Position + name: Position + nameWithType: MouseState.Position + fullName: OpenTK.Platform.MouseState.Position +- uid: OpenTK.Platform.IMouseComponent.GetGlobalMouseState* + commentId: Overload:OpenTK.Platform.IMouseComponent.GetGlobalMouseState + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_GetGlobalMouseState_OpenTK_Platform_MouseState__ + name: GetGlobalMouseState + nameWithType: IMouseComponent.GetGlobalMouseState + fullName: OpenTK.Platform.IMouseComponent.GetGlobalMouseState - uid: OpenTK.Platform.MouseState commentId: T:OpenTK.Platform.MouseState parent: OpenTK.Platform @@ -552,6 +819,42 @@ references: name: MouseState nameWithType: MouseState fullName: OpenTK.Platform.MouseState +- uid: OpenTK.Platform.IMouseComponent.GetGlobalMouseState(OpenTK.Platform.MouseState@) + commentId: M:OpenTK.Platform.IMouseComponent.GetGlobalMouseState(OpenTK.Platform.MouseState@) + parent: OpenTK.Platform.IMouseComponent + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_GetGlobalMouseState_OpenTK_Platform_MouseState__ + name: GetGlobalMouseState(out MouseState) + nameWithType: IMouseComponent.GetGlobalMouseState(out MouseState) + fullName: OpenTK.Platform.IMouseComponent.GetGlobalMouseState(out OpenTK.Platform.MouseState) + nameWithType.vb: IMouseComponent.GetGlobalMouseState(MouseState) + fullName.vb: OpenTK.Platform.IMouseComponent.GetGlobalMouseState(OpenTK.Platform.MouseState) + name.vb: GetGlobalMouseState(MouseState) + spec.csharp: + - uid: OpenTK.Platform.IMouseComponent.GetGlobalMouseState(OpenTK.Platform.MouseState@) + name: GetGlobalMouseState + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_GetGlobalMouseState_OpenTK_Platform_MouseState__ + - name: ( + - name: out + - name: " " + - uid: OpenTK.Platform.MouseState + name: MouseState + href: OpenTK.Platform.MouseState.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IMouseComponent.GetGlobalMouseState(OpenTK.Platform.MouseState@) + name: GetGlobalMouseState + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_GetGlobalMouseState_OpenTK_Platform_MouseState__ + - name: ( + - uid: OpenTK.Platform.MouseState + name: MouseState + href: OpenTK.Platform.MouseState.html + - name: ) +- uid: OpenTK.Platform.IMouseComponent.GetMouseState* + commentId: Overload:OpenTK.Platform.IMouseComponent.GetMouseState + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_GetMouseState_OpenTK_Platform_WindowHandle_OpenTK_Platform_MouseState__ + name: GetMouseState + nameWithType: IMouseComponent.GetMouseState + fullName: OpenTK.Platform.IMouseComponent.GetMouseState - uid: OpenTK.Platform.IMouseComponent.SupportsRawMouseMotion commentId: P:OpenTK.Platform.IMouseComponent.SupportsRawMouseMotion parent: OpenTK.Platform.IMouseComponent @@ -565,13 +868,6 @@ references: name: IsRawMouseMotionEnabled nameWithType: IMouseComponent.IsRawMouseMotionEnabled fullName: OpenTK.Platform.IMouseComponent.IsRawMouseMotionEnabled -- uid: OpenTK.Platform.WindowHandle - commentId: T:OpenTK.Platform.WindowHandle - parent: OpenTK.Platform - href: OpenTK.Platform.WindowHandle.html - name: WindowHandle - nameWithType: WindowHandle - fullName: OpenTK.Platform.WindowHandle - uid: OpenTK.Platform.RawMouseMoveEventArgs commentId: T:OpenTK.Platform.RawMouseMoveEventArgs href: OpenTK.Platform.RawMouseMoveEventArgs.html diff --git a/api/OpenTK.Platform.IOpenGLComponent.yml b/api/OpenTK.Platform.IOpenGLComponent.yml index c5ec7b43..d6465c45 100644 --- a/api/OpenTK.Platform.IOpenGLComponent.yml +++ b/api/OpenTK.Platform.IOpenGLComponent.yml @@ -29,20 +29,24 @@ items: source: id: IOpenGLComponent path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IOpenGLComponent.cs - startLine: 10 + startLine: 11 assemblies: - OpenTK.Platform namespace: OpenTK.Platform - summary: Interface for drivers which provide the PAL OpenGL Component. + summary: Interface for creating and interacting with OpenGL contexts. example: [] syntax: content: 'public interface IOpenGLComponent : IPalComponent' content.vb: Public Interface IOpenGLComponent Inherits IPalComponent + seealso: + - linkId: OpenTK.Platform.Toolkit.OpenGL + commentId: P:OpenTK.Platform.Toolkit.OpenGL inheritedMembers: - OpenTK.Platform.IPalComponent.Name - OpenTK.Platform.IPalComponent.Provides - OpenTK.Platform.IPalComponent.Logger - OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + - OpenTK.Platform.IPalComponent.Uninitialize - uid: OpenTK.Platform.IOpenGLComponent.CanShareContexts commentId: P:OpenTK.Platform.IOpenGLComponent.CanShareContexts id: CanShareContexts @@ -57,7 +61,7 @@ items: source: id: CanShareContexts path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IOpenGLComponent.cs - startLine: 15 + startLine: 16 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -84,7 +88,7 @@ items: source: id: CanCreateFromWindow path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IOpenGLComponent.cs - startLine: 21 + startLine: 22 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -114,7 +118,7 @@ items: source: id: CanCreateFromSurface path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IOpenGLComponent.cs - startLine: 26 + startLine: 27 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -141,7 +145,7 @@ items: source: id: CreateFromSurface path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IOpenGLComponent.cs - startLine: 32 + startLine: 33 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -168,7 +172,7 @@ items: source: id: CreateFromWindow path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IOpenGLComponent.cs - startLine: 41 + startLine: 44 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -185,6 +189,11 @@ items: description: An OpenGL context handle. content.vb: Function CreateFromWindow(handle As WindowHandle) As OpenGLContextHandle overload: OpenTK.Platform.IOpenGLComponent.CreateFromWindow* + seealso: + - linkId: OpenTK.Platform.IWindowComponent.Create(OpenTK.Platform.GraphicsApiHints) + commentId: M:OpenTK.Platform.IWindowComponent.Create(OpenTK.Platform.GraphicsApiHints) + - linkId: OpenTK.Platform.OpenGLGraphicsApiHints + commentId: T:OpenTK.Platform.OpenGLGraphicsApiHints - uid: OpenTK.Platform.IOpenGLComponent.DestroyContext(OpenTK.Platform.OpenGLContextHandle) commentId: M:OpenTK.Platform.IOpenGLComponent.DestroyContext(OpenTK.Platform.OpenGLContextHandle) id: DestroyContext(OpenTK.Platform.OpenGLContextHandle) @@ -199,7 +208,7 @@ items: source: id: DestroyContext path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IOpenGLComponent.cs - startLine: 48 + startLine: 51 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -213,10 +222,9 @@ items: description: Handle to the OpenGL context to destroy. content.vb: Sub DestroyContext(handle As OpenGLContextHandle) overload: OpenTK.Platform.IOpenGLComponent.DestroyContext* - exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: OpenGL context handle is null. + seealso: + - linkId: OpenTK.Platform.IOpenGLComponent.CreateFromWindow(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IOpenGLComponent.CreateFromWindow(OpenTK.Platform.WindowHandle) - uid: OpenTK.Platform.IOpenGLComponent.GetBindingsContext(OpenTK.Platform.OpenGLContextHandle) commentId: M:OpenTK.Platform.IOpenGLComponent.GetBindingsContext(OpenTK.Platform.OpenGLContextHandle) id: GetBindingsContext(OpenTK.Platform.OpenGLContextHandle) @@ -231,11 +239,14 @@ items: source: id: GetBindingsContext path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IOpenGLComponent.cs - startLine: 55 + startLine: 61 assemblies: - OpenTK.Platform namespace: OpenTK.Platform - summary: Gets a from an . + summary: >- + Gets a from an . + + Pass this to to load the OpenGL bindings. example: [] syntax: content: IBindingsContext GetBindingsContext(OpenGLContextHandle handle) @@ -248,6 +259,11 @@ items: description: The created bindings context. content.vb: Function GetBindingsContext(handle As OpenGLContextHandle) As IBindingsContext overload: OpenTK.Platform.IOpenGLComponent.GetBindingsContext* + seealso: + - linkId: OpenTK.Graphics.GLLoader + commentId: T:OpenTK.Graphics.GLLoader + - linkId: OpenTK.IBindingsContext + commentId: T:OpenTK.IBindingsContext - uid: OpenTK.Platform.IOpenGLComponent.GetProcedureAddress(OpenTK.Platform.OpenGLContextHandle,System.String) commentId: M:OpenTK.Platform.IOpenGLComponent.GetProcedureAddress(OpenTK.Platform.OpenGLContextHandle,System.String) id: GetProcedureAddress(OpenTK.Platform.OpenGLContextHandle,System.String) @@ -262,7 +278,7 @@ items: source: id: GetProcedureAddress path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IOpenGLComponent.cs - startLine: 64 + startLine: 69 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -282,10 +298,6 @@ items: description: The procedure address to the OpenGL command. content.vb: Function GetProcedureAddress(handle As OpenGLContextHandle, procedureName As String) As IntPtr overload: OpenTK.Platform.IOpenGLComponent.GetProcedureAddress* - exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: OpenGL context handle or procedure name is null. nameWithType.vb: IOpenGLComponent.GetProcedureAddress(OpenGLContextHandle, String) fullName.vb: OpenTK.Platform.IOpenGLComponent.GetProcedureAddress(OpenTK.Platform.OpenGLContextHandle, String) name.vb: GetProcedureAddress(OpenGLContextHandle, String) @@ -303,7 +315,7 @@ items: source: id: GetCurrentContext path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IOpenGLComponent.cs - startLine: 70 + startLine: 76 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -313,9 +325,12 @@ items: content: OpenGLContextHandle? GetCurrentContext() return: type: OpenTK.Platform.OpenGLContextHandle - description: Handle to the current OpenGL context, null if none are current. + description: Handle to the current OpenGL context, null if no context is current. content.vb: Function GetCurrentContext() As OpenGLContextHandle overload: OpenTK.Platform.IOpenGLComponent.GetCurrentContext* + seealso: + - linkId: OpenTK.Platform.IOpenGLComponent.SetCurrentContext(OpenTK.Platform.OpenGLContextHandle) + commentId: M:OpenTK.Platform.IOpenGLComponent.SetCurrentContext(OpenTK.Platform.OpenGLContextHandle) - uid: OpenTK.Platform.IOpenGLComponent.SetCurrentContext(OpenTK.Platform.OpenGLContextHandle) commentId: M:OpenTK.Platform.IOpenGLComponent.SetCurrentContext(OpenTK.Platform.OpenGLContextHandle) id: SetCurrentContext(OpenTK.Platform.OpenGLContextHandle) @@ -330,7 +345,7 @@ items: source: id: SetCurrentContext path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IOpenGLComponent.cs - startLine: 78 + startLine: 85 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -341,12 +356,15 @@ items: parameters: - id: handle type: OpenTK.Platform.OpenGLContextHandle - description: Handle to the OpenGL context to make current, or null to make none current. + description: Handle to the OpenGL context to make current, or null to make no context current. return: type: System.Boolean - description: True when the OpenGL context is successfully made current. + description: true when the OpenGL context is successfully made current. content.vb: Function SetCurrentContext(handle As OpenGLContextHandle) As Boolean overload: OpenTK.Platform.IOpenGLComponent.SetCurrentContext* + seealso: + - linkId: OpenTK.Platform.IOpenGLComponent.GetCurrentContext + commentId: M:OpenTK.Platform.IOpenGLComponent.GetCurrentContext nameWithType.vb: IOpenGLComponent.SetCurrentContext(OpenGLContextHandle) fullName.vb: OpenTK.Platform.IOpenGLComponent.SetCurrentContext(OpenTK.Platform.OpenGLContextHandle) name.vb: SetCurrentContext(OpenGLContextHandle) @@ -364,7 +382,7 @@ items: source: id: GetSharedContext path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IOpenGLComponent.cs - startLine: 85 + startLine: 93 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -381,6 +399,9 @@ items: description: Handle to the OpenGL context the given context shares display lists with. content.vb: Function GetSharedContext(handle As OpenGLContextHandle) As OpenGLContextHandle overload: OpenTK.Platform.IOpenGLComponent.GetSharedContext* + seealso: + - linkId: OpenTK.Platform.OpenGLGraphicsApiHints.SharedContext + commentId: P:OpenTK.Platform.OpenGLGraphicsApiHints.SharedContext - uid: OpenTK.Platform.IOpenGLComponent.SetSwapInterval(System.Int32) commentId: M:OpenTK.Platform.IOpenGLComponent.SetSwapInterval(System.Int32) id: SetSwapInterval(System.Int32) @@ -395,7 +416,7 @@ items: source: id: SetSwapInterval path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IOpenGLComponent.cs - startLine: 92 + startLine: 100 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -426,17 +447,17 @@ items: source: id: GetSwapInterval path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IOpenGLComponent.cs - startLine: 99 + startLine: 107 assemblies: - OpenTK.Platform namespace: OpenTK.Platform - summary: Gets the swap interval of the current OpenGL context. + summary: Gets the swap interval of the current OpenGL context, or -1 if no context is current. example: [] syntax: content: int GetSwapInterval() return: type: System.Int32 - description: The current swap interval. + description: The current swap interval, or -1 if no context is current. content.vb: Function GetSwapInterval() As Integer overload: OpenTK.Platform.IOpenGLComponent.GetSwapInterval* - uid: OpenTK.Platform.IOpenGLComponent.SwapBuffers(OpenTK.Platform.OpenGLContextHandle) @@ -453,7 +474,7 @@ items: source: id: SwapBuffers path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IOpenGLComponent.cs - startLine: 105 + startLine: 114 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -467,7 +488,16 @@ items: description: Handle to the context. content.vb: Sub SwapBuffers(handle As OpenGLContextHandle) overload: OpenTK.Platform.IOpenGLComponent.SwapBuffers* + seealso: + - linkId: OpenTK.Platform.OpenGLGraphicsApiHints.SwapMethod + commentId: P:OpenTK.Platform.OpenGLGraphicsApiHints.SwapMethod references: +- uid: OpenTK.Platform.Toolkit.OpenGL + commentId: P:OpenTK.Platform.Toolkit.OpenGL + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_OpenGL + name: OpenGL + nameWithType: Toolkit.OpenGL + fullName: OpenTK.Platform.Toolkit.OpenGL - uid: OpenTK.Platform commentId: N:OpenTK.Platform href: OpenTK.html @@ -536,6 +566,25 @@ references: name: ToolkitOptions href: OpenTK.Platform.ToolkitOptions.html - name: ) +- uid: OpenTK.Platform.IPalComponent.Uninitialize + commentId: M:OpenTK.Platform.IPalComponent.Uninitialize + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + name: Uninitialize() + nameWithType: IPalComponent.Uninitialize() + fullName: OpenTK.Platform.IPalComponent.Uninitialize() + spec.csharp: + - uid: OpenTK.Platform.IPalComponent.Uninitialize + name: Uninitialize + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + - name: ( + - name: ) + spec.vb: + - uid: OpenTK.Platform.IPalComponent.Uninitialize + name: Uninitialize + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + - name: ( + - name: ) - uid: OpenTK.Platform.IPalComponent commentId: T:OpenTK.Platform.IPalComponent parent: OpenTK.Platform @@ -643,6 +692,38 @@ references: name: OpenGLContextHandle nameWithType: OpenGLContextHandle fullName: OpenTK.Platform.OpenGLContextHandle +- uid: OpenTK.Platform.IWindowComponent.Create(OpenTK.Platform.GraphicsApiHints) + commentId: M:OpenTK.Platform.IWindowComponent.Create(OpenTK.Platform.GraphicsApiHints) + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_Create_OpenTK_Platform_GraphicsApiHints_ + name: Create(GraphicsApiHints) + nameWithType: IWindowComponent.Create(GraphicsApiHints) + fullName: OpenTK.Platform.IWindowComponent.Create(OpenTK.Platform.GraphicsApiHints) + spec.csharp: + - uid: OpenTK.Platform.IWindowComponent.Create(OpenTK.Platform.GraphicsApiHints) + name: Create + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_Create_OpenTK_Platform_GraphicsApiHints_ + - name: ( + - uid: OpenTK.Platform.GraphicsApiHints + name: GraphicsApiHints + href: OpenTK.Platform.GraphicsApiHints.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IWindowComponent.Create(OpenTK.Platform.GraphicsApiHints) + name: Create + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_Create_OpenTK_Platform_GraphicsApiHints_ + - name: ( + - uid: OpenTK.Platform.GraphicsApiHints + name: GraphicsApiHints + href: OpenTK.Platform.GraphicsApiHints.html + - name: ) +- uid: OpenTK.Platform.OpenGLGraphicsApiHints + commentId: T:OpenTK.Platform.OpenGLGraphicsApiHints + parent: OpenTK.Platform + href: OpenTK.Platform.OpenGLGraphicsApiHints.html + name: OpenGLGraphicsApiHints + nameWithType: OpenGLGraphicsApiHints + fullName: OpenTK.Platform.OpenGLGraphicsApiHints - uid: OpenTK.Platform.IOpenGLComponent.CreateFromWindow* commentId: Overload:OpenTK.Platform.IOpenGLComponent.CreateFromWindow href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_CreateFromWindow_OpenTK_Platform_WindowHandle_ @@ -656,19 +737,25 @@ references: name: WindowHandle nameWithType: WindowHandle fullName: OpenTK.Platform.WindowHandle -- uid: System.ArgumentNullException - commentId: T:System.ArgumentNullException - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.argumentnullexception - name: ArgumentNullException - nameWithType: ArgumentNullException - fullName: System.ArgumentNullException +- uid: OpenTK.Platform.IWindowComponent + commentId: T:OpenTK.Platform.IWindowComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IWindowComponent.html + name: IWindowComponent + nameWithType: IWindowComponent + fullName: OpenTK.Platform.IWindowComponent - uid: OpenTK.Platform.IOpenGLComponent.DestroyContext* commentId: Overload:OpenTK.Platform.IOpenGLComponent.DestroyContext href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_DestroyContext_OpenTK_Platform_OpenGLContextHandle_ name: DestroyContext nameWithType: IOpenGLComponent.DestroyContext fullName: OpenTK.Platform.IOpenGLComponent.DestroyContext +- uid: OpenTK.Graphics.GLLoader + commentId: T:OpenTK.Graphics.GLLoader + href: OpenTK.Graphics.GLLoader.html + name: GLLoader + nameWithType: GLLoader + fullName: OpenTK.Graphics.GLLoader - uid: OpenTK.IBindingsContext commentId: T:OpenTK.IBindingsContext parent: OpenTK @@ -676,6 +763,30 @@ references: name: IBindingsContext nameWithType: IBindingsContext fullName: OpenTK.IBindingsContext +- uid: OpenTK.Graphics.GLLoader.LoadBindings(OpenTK.IBindingsContext) + commentId: M:OpenTK.Graphics.GLLoader.LoadBindings(OpenTK.IBindingsContext) + href: OpenTK.Graphics.GLLoader.html#OpenTK_Graphics_GLLoader_LoadBindings_OpenTK_IBindingsContext_ + name: LoadBindings(IBindingsContext) + nameWithType: GLLoader.LoadBindings(IBindingsContext) + fullName: OpenTK.Graphics.GLLoader.LoadBindings(OpenTK.IBindingsContext) + spec.csharp: + - uid: OpenTK.Graphics.GLLoader.LoadBindings(OpenTK.IBindingsContext) + name: LoadBindings + href: OpenTK.Graphics.GLLoader.html#OpenTK_Graphics_GLLoader_LoadBindings_OpenTK_IBindingsContext_ + - name: ( + - uid: OpenTK.IBindingsContext + name: IBindingsContext + href: OpenTK.IBindingsContext.html + - name: ) + spec.vb: + - uid: OpenTK.Graphics.GLLoader.LoadBindings(OpenTK.IBindingsContext) + name: LoadBindings + href: OpenTK.Graphics.GLLoader.html#OpenTK_Graphics_GLLoader_LoadBindings_OpenTK_IBindingsContext_ + - name: ( + - uid: OpenTK.IBindingsContext + name: IBindingsContext + href: OpenTK.IBindingsContext.html + - name: ) - uid: OpenTK.Platform.IOpenGLComponent.GetBindingsContext* commentId: Overload:OpenTK.Platform.IOpenGLComponent.GetBindingsContext href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_GetBindingsContext_OpenTK_Platform_OpenGLContextHandle_ @@ -716,18 +827,68 @@ references: nameWithType.vb: IntPtr fullName.vb: System.IntPtr name.vb: IntPtr +- uid: OpenTK.Platform.IOpenGLComponent.SetCurrentContext(OpenTK.Platform.OpenGLContextHandle) + commentId: M:OpenTK.Platform.IOpenGLComponent.SetCurrentContext(OpenTK.Platform.OpenGLContextHandle) + parent: OpenTK.Platform.IOpenGLComponent + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_SetCurrentContext_OpenTK_Platform_OpenGLContextHandle_ + name: SetCurrentContext(OpenGLContextHandle) + nameWithType: IOpenGLComponent.SetCurrentContext(OpenGLContextHandle) + fullName: OpenTK.Platform.IOpenGLComponent.SetCurrentContext(OpenTK.Platform.OpenGLContextHandle) + spec.csharp: + - uid: OpenTK.Platform.IOpenGLComponent.SetCurrentContext(OpenTK.Platform.OpenGLContextHandle) + name: SetCurrentContext + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_SetCurrentContext_OpenTK_Platform_OpenGLContextHandle_ + - name: ( + - uid: OpenTK.Platform.OpenGLContextHandle + name: OpenGLContextHandle + href: OpenTK.Platform.OpenGLContextHandle.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IOpenGLComponent.SetCurrentContext(OpenTK.Platform.OpenGLContextHandle) + name: SetCurrentContext + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_SetCurrentContext_OpenTK_Platform_OpenGLContextHandle_ + - name: ( + - uid: OpenTK.Platform.OpenGLContextHandle + name: OpenGLContextHandle + href: OpenTK.Platform.OpenGLContextHandle.html + - name: ) - uid: OpenTK.Platform.IOpenGLComponent.GetCurrentContext* commentId: Overload:OpenTK.Platform.IOpenGLComponent.GetCurrentContext href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_GetCurrentContext name: GetCurrentContext nameWithType: IOpenGLComponent.GetCurrentContext fullName: OpenTK.Platform.IOpenGLComponent.GetCurrentContext +- uid: OpenTK.Platform.IOpenGLComponent.GetCurrentContext + commentId: M:OpenTK.Platform.IOpenGLComponent.GetCurrentContext + parent: OpenTK.Platform.IOpenGLComponent + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_GetCurrentContext + name: GetCurrentContext() + nameWithType: IOpenGLComponent.GetCurrentContext() + fullName: OpenTK.Platform.IOpenGLComponent.GetCurrentContext() + spec.csharp: + - uid: OpenTK.Platform.IOpenGLComponent.GetCurrentContext + name: GetCurrentContext + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_GetCurrentContext + - name: ( + - name: ) + spec.vb: + - uid: OpenTK.Platform.IOpenGLComponent.GetCurrentContext + name: GetCurrentContext + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_GetCurrentContext + - name: ( + - name: ) - uid: OpenTK.Platform.IOpenGLComponent.SetCurrentContext* commentId: Overload:OpenTK.Platform.IOpenGLComponent.SetCurrentContext href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_SetCurrentContext_OpenTK_Platform_OpenGLContextHandle_ name: SetCurrentContext nameWithType: IOpenGLComponent.SetCurrentContext fullName: OpenTK.Platform.IOpenGLComponent.SetCurrentContext +- uid: OpenTK.Platform.OpenGLGraphicsApiHints.SharedContext + commentId: P:OpenTK.Platform.OpenGLGraphicsApiHints.SharedContext + href: OpenTK.Platform.OpenGLGraphicsApiHints.html#OpenTK_Platform_OpenGLGraphicsApiHints_SharedContext + name: SharedContext + nameWithType: OpenGLGraphicsApiHints.SharedContext + fullName: OpenTK.Platform.OpenGLGraphicsApiHints.SharedContext - uid: OpenTK.Platform.IOpenGLComponent.GetSharedContext* commentId: Overload:OpenTK.Platform.IOpenGLComponent.GetSharedContext href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_GetSharedContext_OpenTK_Platform_OpenGLContextHandle_ @@ -757,6 +918,12 @@ references: name: GetSwapInterval nameWithType: IOpenGLComponent.GetSwapInterval fullName: OpenTK.Platform.IOpenGLComponent.GetSwapInterval +- uid: OpenTK.Platform.OpenGLGraphicsApiHints.SwapMethod + commentId: P:OpenTK.Platform.OpenGLGraphicsApiHints.SwapMethod + href: OpenTK.Platform.OpenGLGraphicsApiHints.html#OpenTK_Platform_OpenGLGraphicsApiHints_SwapMethod + name: SwapMethod + nameWithType: OpenGLGraphicsApiHints.SwapMethod + fullName: OpenTK.Platform.OpenGLGraphicsApiHints.SwapMethod - uid: OpenTK.Platform.IOpenGLComponent.SwapBuffers* commentId: Overload:OpenTK.Platform.IOpenGLComponent.SwapBuffers href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_SwapBuffers_OpenTK_Platform_OpenGLContextHandle_ diff --git a/api/OpenTK.Platform.IPalComponent.yml b/api/OpenTK.Platform.IPalComponent.yml index f4175659..fb579976 100644 --- a/api/OpenTK.Platform.IPalComponent.yml +++ b/api/OpenTK.Platform.IPalComponent.yml @@ -9,6 +9,7 @@ items: - OpenTK.Platform.IPalComponent.Logger - OpenTK.Platform.IPalComponent.Name - OpenTK.Platform.IPalComponent.Provides + - OpenTK.Platform.IPalComponent.Uninitialize langs: - csharp - vb @@ -96,11 +97,11 @@ items: source: id: Logger path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IPalComponent.cs - startLine: 50 + startLine: 52 assemblies: - OpenTK.Platform namespace: OpenTK.Platform - summary: Provides a logger for this component. + summary: The logger that this component uses to log diagnostic messages. example: [] syntax: content: ILogger? Logger { get; set; } @@ -109,6 +110,11 @@ items: type: OpenTK.Core.Utility.ILogger content.vb: Property Logger As ILogger overload: OpenTK.Platform.IPalComponent.Logger* + seealso: + - linkId: OpenTK.Core.Utility.ILogger + commentId: T:OpenTK.Core.Utility.ILogger + - linkId: OpenTK.Platform.ToolkitOptions.Logger + commentId: P:OpenTK.Platform.ToolkitOptions.Logger - uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) commentId: M:OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) id: Initialize(OpenTK.Platform.ToolkitOptions) @@ -123,7 +129,7 @@ items: source: id: Initialize path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IPalComponent.cs - startLine: 56 + startLine: 60 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -137,6 +143,38 @@ items: description: The options to initialize the component with. content.vb: Sub Initialize(options As ToolkitOptions) overload: OpenTK.Platform.IPalComponent.Initialize* + seealso: + - linkId: OpenTK.Platform.ToolkitOptions + commentId: T:OpenTK.Platform.ToolkitOptions + - linkId: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) +- uid: OpenTK.Platform.IPalComponent.Uninitialize + commentId: M:OpenTK.Platform.IPalComponent.Uninitialize + id: Uninitialize + parent: OpenTK.Platform.IPalComponent + langs: + - csharp + - vb + name: Uninitialize() + nameWithType: IPalComponent.Uninitialize() + fullName: OpenTK.Platform.IPalComponent.Uninitialize() + type: Method + source: + id: Uninitialize + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IPalComponent.cs + startLine: 66 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Uninitialize the component. Frees any native resources used by the component. + example: [] + syntax: + content: void Uninitialize() + content.vb: Sub Uninitialize() + overload: OpenTK.Platform.IPalComponent.Uninitialize* + seealso: + - linkId: OpenTK.Platform.Toolkit.Uninit + commentId: M:OpenTK.Platform.Toolkit.Uninit references: - uid: OpenTK.Platform commentId: N:OpenTK.Platform @@ -197,12 +235,6 @@ references: name: PalComponents nameWithType: PalComponents fullName: OpenTK.Platform.PalComponents -- uid: OpenTK.Platform.IPalComponent.Logger* - commentId: Overload:OpenTK.Platform.IPalComponent.Logger - href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Logger - name: Logger - nameWithType: IPalComponent.Logger - fullName: OpenTK.Platform.IPalComponent.Logger - uid: OpenTK.Core.Utility.ILogger commentId: T:OpenTK.Core.Utility.ILogger parent: OpenTK.Core.Utility @@ -210,6 +242,18 @@ references: name: ILogger nameWithType: ILogger fullName: OpenTK.Core.Utility.ILogger +- uid: OpenTK.Platform.ToolkitOptions.Logger + commentId: P:OpenTK.Platform.ToolkitOptions.Logger + href: OpenTK.Platform.ToolkitOptions.html#OpenTK_Platform_ToolkitOptions_Logger + name: Logger + nameWithType: ToolkitOptions.Logger + fullName: OpenTK.Platform.ToolkitOptions.Logger +- uid: OpenTK.Platform.IPalComponent.Logger* + commentId: Overload:OpenTK.Platform.IPalComponent.Logger + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Logger + name: Logger + nameWithType: IPalComponent.Logger + fullName: OpenTK.Platform.IPalComponent.Logger - uid: OpenTK.Core.Utility commentId: N:OpenTK.Core.Utility href: OpenTK.html @@ -240,12 +284,6 @@ references: - uid: OpenTK.Core.Utility name: Utility href: OpenTK.Core.Utility.html -- uid: OpenTK.Platform.IPalComponent.Initialize* - commentId: Overload:OpenTK.Platform.IPalComponent.Initialize - href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ - name: Initialize - nameWithType: IPalComponent.Initialize - fullName: OpenTK.Platform.IPalComponent.Initialize - uid: OpenTK.Platform.ToolkitOptions commentId: T:OpenTK.Platform.ToolkitOptions parent: OpenTK.Platform @@ -253,3 +291,57 @@ references: name: ToolkitOptions nameWithType: ToolkitOptions fullName: OpenTK.Platform.ToolkitOptions +- uid: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Init_OpenTK_Platform_ToolkitOptions_ + name: Init(ToolkitOptions) + nameWithType: Toolkit.Init(ToolkitOptions) + fullName: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + spec.csharp: + - uid: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + name: Init + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Init_OpenTK_Platform_ToolkitOptions_ + - name: ( + - uid: OpenTK.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Platform.ToolkitOptions.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + name: Init + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Init_OpenTK_Platform_ToolkitOptions_ + - name: ( + - uid: OpenTK.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Platform.ToolkitOptions.html + - name: ) +- uid: OpenTK.Platform.IPalComponent.Initialize* + commentId: Overload:OpenTK.Platform.IPalComponent.Initialize + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ + name: Initialize + nameWithType: IPalComponent.Initialize + fullName: OpenTK.Platform.IPalComponent.Initialize +- uid: OpenTK.Platform.Toolkit.Uninit + commentId: M:OpenTK.Platform.Toolkit.Uninit + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Uninit + name: Uninit() + nameWithType: Toolkit.Uninit() + fullName: OpenTK.Platform.Toolkit.Uninit() + spec.csharp: + - uid: OpenTK.Platform.Toolkit.Uninit + name: Uninit + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Uninit + - name: ( + - name: ) + spec.vb: + - uid: OpenTK.Platform.Toolkit.Uninit + name: Uninit + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Uninit + - name: ( + - name: ) +- uid: OpenTK.Platform.IPalComponent.Uninitialize* + commentId: Overload:OpenTK.Platform.IPalComponent.Uninitialize + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + name: Uninitialize + nameWithType: IPalComponent.Uninitialize + fullName: OpenTK.Platform.IPalComponent.Uninitialize diff --git a/api/OpenTK.Platform.IShellComponent.yml b/api/OpenTK.Platform.IShellComponent.yml index db91f634..bd38d094 100644 --- a/api/OpenTK.Platform.IShellComponent.yml +++ b/api/OpenTK.Platform.IShellComponent.yml @@ -5,10 +5,11 @@ items: id: IShellComponent parent: OpenTK.Platform children: - - OpenTK.Platform.IShellComponent.AllowScreenSaver(System.Boolean) + - OpenTK.Platform.IShellComponent.AllowScreenSaver(System.Boolean,System.String) - OpenTK.Platform.IShellComponent.GetBatteryInfo(OpenTK.Platform.BatteryInfo@) - OpenTK.Platform.IShellComponent.GetPreferredTheme - OpenTK.Platform.IShellComponent.GetSystemMemoryInformation + - OpenTK.Platform.IShellComponent.IsScreenSaverAllowed langs: - csharp - vb @@ -19,7 +20,7 @@ items: source: id: IShellComponent path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IShellComponent.cs - startLine: 12 + startLine: 13 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -28,49 +29,98 @@ items: syntax: content: 'public interface IShellComponent : IPalComponent' content.vb: Public Interface IShellComponent Inherits IPalComponent + seealso: + - linkId: OpenTK.Platform.Toolkit.Shell + commentId: P:OpenTK.Platform.Toolkit.Shell inheritedMembers: - OpenTK.Platform.IPalComponent.Name - OpenTK.Platform.IPalComponent.Provides - OpenTK.Platform.IPalComponent.Logger - OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) -- uid: OpenTK.Platform.IShellComponent.AllowScreenSaver(System.Boolean) - commentId: M:OpenTK.Platform.IShellComponent.AllowScreenSaver(System.Boolean) - id: AllowScreenSaver(System.Boolean) + - OpenTK.Platform.IPalComponent.Uninitialize +- uid: OpenTK.Platform.IShellComponent.AllowScreenSaver(System.Boolean,System.String) + commentId: M:OpenTK.Platform.IShellComponent.AllowScreenSaver(System.Boolean,System.String) + id: AllowScreenSaver(System.Boolean,System.String) parent: OpenTK.Platform.IShellComponent langs: - csharp - vb - name: AllowScreenSaver(bool) - nameWithType: IShellComponent.AllowScreenSaver(bool) - fullName: OpenTK.Platform.IShellComponent.AllowScreenSaver(bool) + name: AllowScreenSaver(bool, string?) + nameWithType: IShellComponent.AllowScreenSaver(bool, string?) + fullName: OpenTK.Platform.IShellComponent.AllowScreenSaver(bool, string?) type: Method source: id: AllowScreenSaver path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IShellComponent.cs - startLine: 23 + startLine: 30 assemblies: - OpenTK.Platform namespace: OpenTK.Platform summary: >- Sets whether or not a screensaver is allowed to draw on top of the window. - For games with long cutscenes it would be appropriate to set this to false, + For games with long cutscenes it would be appropriate to set this to false, - while tools that act like normal applications should set this to true. + while tools that act like normal applications should set this to true. By default this setting is untouched. example: [] syntax: - content: void AllowScreenSaver(bool allow) + content: void AllowScreenSaver(bool allow, string? disableReason) parameters: - id: allow type: System.Boolean description: Whether to allow screensavers to appear while the application is running. - content.vb: Sub AllowScreenSaver(allow As Boolean) + - id: disableReason + type: System.String + description: >- + A reason for why the screen saver is disabled. + + This string should both contain the reason why the screen saver is disabed as well as the name of the + + application so the user knows which application is preventing the screen saver from running. + + If null is sent the following default message will be sent: + +
$"{ApplicationName} is is preventing screen saver."
+ content.vb: Sub AllowScreenSaver(allow As Boolean, disableReason As String) overload: OpenTK.Platform.IShellComponent.AllowScreenSaver* - nameWithType.vb: IShellComponent.AllowScreenSaver(Boolean) - fullName.vb: OpenTK.Platform.IShellComponent.AllowScreenSaver(Boolean) - name.vb: AllowScreenSaver(Boolean) + seealso: + - linkId: OpenTK.Platform.IShellComponent.IsScreenSaverAllowed + commentId: M:OpenTK.Platform.IShellComponent.IsScreenSaverAllowed + nameWithType.vb: IShellComponent.AllowScreenSaver(Boolean, String) + fullName.vb: OpenTK.Platform.IShellComponent.AllowScreenSaver(Boolean, String) + name.vb: AllowScreenSaver(Boolean, String) +- uid: OpenTK.Platform.IShellComponent.IsScreenSaverAllowed + commentId: M:OpenTK.Platform.IShellComponent.IsScreenSaverAllowed + id: IsScreenSaverAllowed + parent: OpenTK.Platform.IShellComponent + langs: + - csharp + - vb + name: IsScreenSaverAllowed() + nameWithType: IShellComponent.IsScreenSaverAllowed() + fullName: OpenTK.Platform.IShellComponent.IsScreenSaverAllowed() + type: Method + source: + id: IsScreenSaverAllowed + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IShellComponent.cs + startLine: 37 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Gets if the screen saver is allowed to run or not. + example: [] + syntax: + content: bool IsScreenSaverAllowed() + return: + type: System.Boolean + description: If the screen saver is allowed to run. + content.vb: Function IsScreenSaverAllowed() As Boolean + overload: OpenTK.Platform.IShellComponent.IsScreenSaverAllowed* + seealso: + - linkId: OpenTK.Platform.IShellComponent.AllowScreenSaver(System.Boolean,System.String) + commentId: M:OpenTK.Platform.IShellComponent.AllowScreenSaver(System.Boolean,System.String) - uid: OpenTK.Platform.IShellComponent.GetBatteryInfo(OpenTK.Platform.BatteryInfo@) commentId: M:OpenTK.Platform.IShellComponent.GetBatteryInfo(OpenTK.Platform.BatteryInfo@) id: GetBatteryInfo(OpenTK.Platform.BatteryInfo@) @@ -85,7 +135,7 @@ items: source: id: GetBatteryInfo path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IShellComponent.cs - startLine: 31 + startLine: 45 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -121,7 +171,7 @@ items: source: id: GetPreferredTheme path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IShellComponent.cs - startLine: 39 + startLine: 54 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -134,6 +184,9 @@ items: description: The user set preferred theme. content.vb: Function GetPreferredTheme() As ThemeInfo overload: OpenTK.Platform.IShellComponent.GetPreferredTheme* + seealso: + - linkId: OpenTK.Platform.ThemeChangeEventArgs + commentId: T:OpenTK.Platform.ThemeChangeEventArgs - uid: OpenTK.Platform.IShellComponent.GetSystemMemoryInformation commentId: M:OpenTK.Platform.IShellComponent.GetSystemMemoryInformation id: GetSystemMemoryInformation @@ -148,7 +201,7 @@ items: source: id: GetSystemMemoryInformation path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IShellComponent.cs - startLine: 45 + startLine: 60 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -162,6 +215,12 @@ items: content.vb: Function GetSystemMemoryInformation() As SystemMemoryInfo overload: OpenTK.Platform.IShellComponent.GetSystemMemoryInformation* references: +- uid: OpenTK.Platform.Toolkit.Shell + commentId: P:OpenTK.Platform.Toolkit.Shell + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Shell + name: Shell + nameWithType: Toolkit.Shell + fullName: OpenTK.Platform.Toolkit.Shell - uid: OpenTK.Platform commentId: N:OpenTK.Platform href: OpenTK.html @@ -230,6 +289,25 @@ references: name: ToolkitOptions href: OpenTK.Platform.ToolkitOptions.html - name: ) +- uid: OpenTK.Platform.IPalComponent.Uninitialize + commentId: M:OpenTK.Platform.IPalComponent.Uninitialize + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + name: Uninitialize() + nameWithType: IPalComponent.Uninitialize() + fullName: OpenTK.Platform.IPalComponent.Uninitialize() + spec.csharp: + - uid: OpenTK.Platform.IPalComponent.Uninitialize + name: Uninitialize + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + - name: ( + - name: ) + spec.vb: + - uid: OpenTK.Platform.IPalComponent.Uninitialize + name: Uninitialize + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + - name: ( + - name: ) - uid: OpenTK.Platform.IPalComponent commentId: T:OpenTK.Platform.IPalComponent parent: OpenTK.Platform @@ -237,9 +315,28 @@ references: name: IPalComponent nameWithType: IPalComponent fullName: OpenTK.Platform.IPalComponent +- uid: OpenTK.Platform.IShellComponent.IsScreenSaverAllowed + commentId: M:OpenTK.Platform.IShellComponent.IsScreenSaverAllowed + parent: OpenTK.Platform.IShellComponent + href: OpenTK.Platform.IShellComponent.html#OpenTK_Platform_IShellComponent_IsScreenSaverAllowed + name: IsScreenSaverAllowed() + nameWithType: IShellComponent.IsScreenSaverAllowed() + fullName: OpenTK.Platform.IShellComponent.IsScreenSaverAllowed() + spec.csharp: + - uid: OpenTK.Platform.IShellComponent.IsScreenSaverAllowed + name: IsScreenSaverAllowed + href: OpenTK.Platform.IShellComponent.html#OpenTK_Platform_IShellComponent_IsScreenSaverAllowed + - name: ( + - name: ) + spec.vb: + - uid: OpenTK.Platform.IShellComponent.IsScreenSaverAllowed + name: IsScreenSaverAllowed + href: OpenTK.Platform.IShellComponent.html#OpenTK_Platform_IShellComponent_IsScreenSaverAllowed + - name: ( + - name: ) - uid: OpenTK.Platform.IShellComponent.AllowScreenSaver* commentId: Overload:OpenTK.Platform.IShellComponent.AllowScreenSaver - href: OpenTK.Platform.IShellComponent.html#OpenTK_Platform_IShellComponent_AllowScreenSaver_System_Boolean_ + href: OpenTK.Platform.IShellComponent.html#OpenTK_Platform_IShellComponent_AllowScreenSaver_System_Boolean_System_String_ name: AllowScreenSaver nameWithType: IShellComponent.AllowScreenSaver fullName: OpenTK.Platform.IShellComponent.AllowScreenSaver @@ -254,6 +351,24 @@ references: nameWithType.vb: Boolean fullName.vb: Boolean name.vb: Boolean +- uid: System.String + commentId: T:System.String + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + name: string + nameWithType: string + fullName: string + nameWithType.vb: String + fullName.vb: String + name.vb: String +- uid: OpenTK.Platform.IShellComponent + commentId: T:OpenTK.Platform.IShellComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IShellComponent.html + name: IShellComponent + nameWithType: IShellComponent + fullName: OpenTK.Platform.IShellComponent - uid: System commentId: N:System isExternal: true @@ -261,6 +376,55 @@ references: name: System nameWithType: System fullName: System +- uid: OpenTK.Platform.IShellComponent.AllowScreenSaver(System.Boolean,System.String) + commentId: M:OpenTK.Platform.IShellComponent.AllowScreenSaver(System.Boolean,System.String) + parent: OpenTK.Platform.IShellComponent + isExternal: true + href: OpenTK.Platform.IShellComponent.html#OpenTK_Platform_IShellComponent_AllowScreenSaver_System_Boolean_System_String_ + name: AllowScreenSaver(bool, string) + nameWithType: IShellComponent.AllowScreenSaver(bool, string) + fullName: OpenTK.Platform.IShellComponent.AllowScreenSaver(bool, string) + nameWithType.vb: IShellComponent.AllowScreenSaver(Boolean, String) + fullName.vb: OpenTK.Platform.IShellComponent.AllowScreenSaver(Boolean, String) + name.vb: AllowScreenSaver(Boolean, String) + spec.csharp: + - uid: OpenTK.Platform.IShellComponent.AllowScreenSaver(System.Boolean,System.String) + name: AllowScreenSaver + href: OpenTK.Platform.IShellComponent.html#OpenTK_Platform_IShellComponent_AllowScreenSaver_System_Boolean_System_String_ + - name: ( + - uid: System.Boolean + name: bool + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: ',' + - name: " " + - uid: System.String + name: string + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ) + spec.vb: + - uid: OpenTK.Platform.IShellComponent.AllowScreenSaver(System.Boolean,System.String) + name: AllowScreenSaver + href: OpenTK.Platform.IShellComponent.html#OpenTK_Platform_IShellComponent_AllowScreenSaver_System_Boolean_System_String_ + - name: ( + - uid: System.Boolean + name: Boolean + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: ',' + - name: " " + - uid: System.String + name: String + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ) +- uid: OpenTK.Platform.IShellComponent.IsScreenSaverAllowed* + commentId: Overload:OpenTK.Platform.IShellComponent.IsScreenSaverAllowed + href: OpenTK.Platform.IShellComponent.html#OpenTK_Platform_IShellComponent_IsScreenSaverAllowed + name: IsScreenSaverAllowed + nameWithType: IShellComponent.IsScreenSaverAllowed + fullName: OpenTK.Platform.IShellComponent.IsScreenSaverAllowed - uid: OpenTK.Platform.BatteryStatus.HasSystemBattery commentId: F:OpenTK.Platform.BatteryStatus.HasSystemBattery href: OpenTK.Platform.BatteryStatus.html#OpenTK_Platform_BatteryStatus_HasSystemBattery @@ -287,6 +451,12 @@ references: name: BatteryStatus nameWithType: BatteryStatus fullName: OpenTK.Platform.BatteryStatus +- uid: OpenTK.Platform.ThemeChangeEventArgs + commentId: T:OpenTK.Platform.ThemeChangeEventArgs + href: OpenTK.Platform.ThemeChangeEventArgs.html + name: ThemeChangeEventArgs + nameWithType: ThemeChangeEventArgs + fullName: OpenTK.Platform.ThemeChangeEventArgs - uid: OpenTK.Platform.IShellComponent.GetPreferredTheme* commentId: Overload:OpenTK.Platform.IShellComponent.GetPreferredTheme href: OpenTK.Platform.IShellComponent.html#OpenTK_Platform_IShellComponent_GetPreferredTheme diff --git a/api/OpenTK.Platform.ISurfaceComponent.yml b/api/OpenTK.Platform.ISurfaceComponent.yml index a7033f07..60abe0cd 100644 --- a/api/OpenTK.Platform.ISurfaceComponent.yml +++ b/api/OpenTK.Platform.ISurfaceComponent.yml @@ -21,20 +21,24 @@ items: source: id: ISurfaceComponent path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\ISurfaceComponent.cs - startLine: 5 + startLine: 6 assemblies: - OpenTK.Platform namespace: OpenTK.Platform - summary: Interface for drivers which provide the surface component of the platform abstraction layer. + summary: Interface for creating and interacting with surfaces. example: [] syntax: content: 'public interface ISurfaceComponent : IPalComponent' content.vb: Public Interface ISurfaceComponent Inherits IPalComponent + seealso: + - linkId: OpenTK.Platform.Toolkit.Surface + commentId: P:OpenTK.Platform.Toolkit.Surface inheritedMembers: - OpenTK.Platform.IPalComponent.Name - OpenTK.Platform.IPalComponent.Provides - OpenTK.Platform.IPalComponent.Logger - OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + - OpenTK.Platform.IPalComponent.Uninitialize - uid: OpenTK.Platform.ISurfaceComponent.Create commentId: M:OpenTK.Platform.ISurfaceComponent.Create id: Create @@ -49,7 +53,7 @@ items: source: id: Create path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\ISurfaceComponent.cs - startLine: 11 + startLine: 12 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -76,7 +80,7 @@ items: source: id: Destroy path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\ISurfaceComponent.cs - startLine: 17 + startLine: 18 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -104,7 +108,7 @@ items: source: id: GetType path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\ISurfaceComponent.cs - startLine: 24 + startLine: 25 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -135,7 +139,7 @@ items: source: id: GetDisplay path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\ISurfaceComponent.cs - startLine: 31 + startLine: 32 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -166,7 +170,7 @@ items: source: id: SetDisplay path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\ISurfaceComponent.cs - startLine: 38 + startLine: 39 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -197,7 +201,7 @@ items: source: id: GetClientSize path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\ISurfaceComponent.cs - startLine: 46 + startLine: 47 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -221,6 +225,12 @@ items: fullName.vb: OpenTK.Platform.ISurfaceComponent.GetClientSize(OpenTK.Platform.SurfaceHandle, Integer, Integer) name.vb: GetClientSize(SurfaceHandle, Integer, Integer) references: +- uid: OpenTK.Platform.Toolkit.Surface + commentId: P:OpenTK.Platform.Toolkit.Surface + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Surface + name: Surface + nameWithType: Toolkit.Surface + fullName: OpenTK.Platform.Toolkit.Surface - uid: OpenTK.Platform commentId: N:OpenTK.Platform href: OpenTK.html @@ -289,6 +299,25 @@ references: name: ToolkitOptions href: OpenTK.Platform.ToolkitOptions.html - name: ) +- uid: OpenTK.Platform.IPalComponent.Uninitialize + commentId: M:OpenTK.Platform.IPalComponent.Uninitialize + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + name: Uninitialize() + nameWithType: IPalComponent.Uninitialize() + fullName: OpenTK.Platform.IPalComponent.Uninitialize() + spec.csharp: + - uid: OpenTK.Platform.IPalComponent.Uninitialize + name: Uninitialize + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + - name: ( + - name: ) + spec.vb: + - uid: OpenTK.Platform.IPalComponent.Uninitialize + name: Uninitialize + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + - name: ( + - name: ) - uid: OpenTK.Platform.IPalComponent commentId: T:OpenTK.Platform.IPalComponent parent: OpenTK.Platform diff --git a/api/OpenTK.Platform.IVulkanComponent.yml b/api/OpenTK.Platform.IVulkanComponent.yml index 25d8b55f..780ab85a 100644 --- a/api/OpenTK.Platform.IVulkanComponent.yml +++ b/api/OpenTK.Platform.IVulkanComponent.yml @@ -18,20 +18,26 @@ items: source: id: IVulkanComponent path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IVulkanComponent.cs - startLine: 12 + startLine: 14 assemblies: - OpenTK.Platform namespace: OpenTK.Platform - summary: Interface for creating and interacting with vulkan. + summary: Interface for interacting with Vulkan in a more convenient way. example: [] syntax: content: 'public interface IVulkanComponent : IPalComponent' content.vb: Public Interface IVulkanComponent Inherits IPalComponent + seealso: + - linkId: OpenTK.Platform.Toolkit.Vulkan + commentId: P:OpenTK.Platform.Toolkit.Vulkan + - linkId: OpenTK.Platform.VulkanGraphicsApiHints + commentId: T:OpenTK.Platform.VulkanGraphicsApiHints inheritedMembers: - OpenTK.Platform.IPalComponent.Name - OpenTK.Platform.IPalComponent.Provides - OpenTK.Platform.IPalComponent.Logger - OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + - OpenTK.Platform.IPalComponent.Uninitialize - uid: OpenTK.Platform.IVulkanComponent.GetRequiredInstanceExtensions commentId: M:OpenTK.Platform.IVulkanComponent.GetRequiredInstanceExtensions id: GetRequiredInstanceExtensions @@ -46,7 +52,7 @@ items: source: id: GetRequiredInstanceExtensions path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IVulkanComponent.cs - startLine: 21 + startLine: 25 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -63,9 +69,14 @@ items: content: ReadOnlySpan GetRequiredInstanceExtensions() return: type: System.ReadOnlySpan{System.String} - description: '' + description: A list of required extensions for functions to work. content.vb: Function GetRequiredInstanceExtensions() As ReadOnlySpan(Of String) overload: OpenTK.Platform.IVulkanComponent.GetRequiredInstanceExtensions* + seealso: + - linkId: OpenTK.Platform.IVulkanComponent.GetPhysicalDevicePresentationSupport(OpenTK.Graphics.Vulkan.VkInstance,OpenTK.Graphics.Vulkan.VkPhysicalDevice,System.UInt32) + commentId: M:OpenTK.Platform.IVulkanComponent.GetPhysicalDevicePresentationSupport(OpenTK.Graphics.Vulkan.VkInstance,OpenTK.Graphics.Vulkan.VkPhysicalDevice,System.UInt32) + - linkId: OpenTK.Platform.IVulkanComponent.CreateWindowSurface(OpenTK.Graphics.Vulkan.VkInstance,OpenTK.Platform.WindowHandle,OpenTK.Graphics.Vulkan.VkAllocationCallbacks*,OpenTK.Graphics.Vulkan.VkSurfaceKHR@) + commentId: M:OpenTK.Platform.IVulkanComponent.CreateWindowSurface(OpenTK.Graphics.Vulkan.VkInstance,OpenTK.Platform.WindowHandle,OpenTK.Graphics.Vulkan.VkAllocationCallbacks*,OpenTK.Graphics.Vulkan.VkSurfaceKHR@) - uid: OpenTK.Platform.IVulkanComponent.GetPhysicalDevicePresentationSupport(OpenTK.Graphics.Vulkan.VkInstance,OpenTK.Graphics.Vulkan.VkPhysicalDevice,System.UInt32) commentId: M:OpenTK.Platform.IVulkanComponent.GetPhysicalDevicePresentationSupport(OpenTK.Graphics.Vulkan.VkInstance,OpenTK.Graphics.Vulkan.VkPhysicalDevice,System.UInt32) id: GetPhysicalDevicePresentationSupport(OpenTK.Graphics.Vulkan.VkInstance,OpenTK.Graphics.Vulkan.VkPhysicalDevice,System.UInt32) @@ -80,11 +91,11 @@ items: source: id: GetPhysicalDevicePresentationSupport path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IVulkanComponent.cs - startLine: 30 + startLine: 35 assemblies: - OpenTK.Platform namespace: OpenTK.Platform - summary: Returns true of the given queue family supports presentation to a surface created with . + summary: Returns true if the given queue family supports presentation to a surface created with . example: [] syntax: content: bool GetPhysicalDevicePresentationSupport(VkInstance instance, VkPhysicalDevice device, uint queueFamily) @@ -100,9 +111,12 @@ items: description: The index of the queue family to query for presentation support. return: type: System.Boolean - description: '' + description: If this queue family supports presentation. content.vb: Function GetPhysicalDevicePresentationSupport(instance As VkInstance, device As VkPhysicalDevice, queueFamily As UInteger) As Boolean overload: OpenTK.Platform.IVulkanComponent.GetPhysicalDevicePresentationSupport* + seealso: + - linkId: OpenTK.Platform.IVulkanComponent.GetRequiredInstanceExtensions + commentId: M:OpenTK.Platform.IVulkanComponent.GetRequiredInstanceExtensions nameWithType.vb: IVulkanComponent.GetPhysicalDevicePresentationSupport(VkInstance, VkPhysicalDevice, UInteger) fullName.vb: OpenTK.Platform.IVulkanComponent.GetPhysicalDevicePresentationSupport(OpenTK.Graphics.Vulkan.VkInstance, OpenTK.Graphics.Vulkan.VkPhysicalDevice, UInteger) name.vb: GetPhysicalDevicePresentationSupport(VkInstance, VkPhysicalDevice, UInteger) @@ -120,7 +134,7 @@ items: source: id: CreateWindowSurface path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IVulkanComponent.cs - startLine: 40 + startLine: 46 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -146,10 +160,25 @@ items: description: The Vulkan result code of this operation. content.vb: Function CreateWindowSurface(instance As VkInstance, window As WindowHandle, allocator As VkAllocationCallbacks*, surface As VkSurfaceKHR) As VkResult overload: OpenTK.Platform.IVulkanComponent.CreateWindowSurface* + seealso: + - linkId: OpenTK.Platform.IVulkanComponent.GetRequiredInstanceExtensions + commentId: M:OpenTK.Platform.IVulkanComponent.GetRequiredInstanceExtensions nameWithType.vb: IVulkanComponent.CreateWindowSurface(VkInstance, WindowHandle, VkAllocationCallbacks*, VkSurfaceKHR) fullName.vb: OpenTK.Platform.IVulkanComponent.CreateWindowSurface(OpenTK.Graphics.Vulkan.VkInstance, OpenTK.Platform.WindowHandle, OpenTK.Graphics.Vulkan.VkAllocationCallbacks*, OpenTK.Graphics.Vulkan.VkSurfaceKHR) name.vb: CreateWindowSurface(VkInstance, WindowHandle, VkAllocationCallbacks*, VkSurfaceKHR) references: +- uid: OpenTK.Platform.Toolkit.Vulkan + commentId: P:OpenTK.Platform.Toolkit.Vulkan + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Vulkan + name: Vulkan + nameWithType: Toolkit.Vulkan + fullName: OpenTK.Platform.Toolkit.Vulkan +- uid: OpenTK.Platform.VulkanGraphicsApiHints + commentId: T:OpenTK.Platform.VulkanGraphicsApiHints + href: OpenTK.Platform.VulkanGraphicsApiHints.html + name: VulkanGraphicsApiHints + nameWithType: VulkanGraphicsApiHints + fullName: OpenTK.Platform.VulkanGraphicsApiHints - uid: OpenTK.Platform commentId: N:OpenTK.Platform href: OpenTK.html @@ -218,6 +247,25 @@ references: name: ToolkitOptions href: OpenTK.Platform.ToolkitOptions.html - name: ) +- uid: OpenTK.Platform.IPalComponent.Uninitialize + commentId: M:OpenTK.Platform.IPalComponent.Uninitialize + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + name: Uninitialize() + nameWithType: IPalComponent.Uninitialize() + fullName: OpenTK.Platform.IPalComponent.Uninitialize() + spec.csharp: + - uid: OpenTK.Platform.IPalComponent.Uninitialize + name: Uninitialize + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + - name: ( + - name: ) + spec.vb: + - uid: OpenTK.Platform.IPalComponent.Uninitialize + name: Uninitialize + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + - name: ( + - name: ) - uid: OpenTK.Platform.IPalComponent commentId: T:OpenTK.Platform.IPalComponent parent: OpenTK.Platform @@ -227,6 +275,7 @@ references: fullName: OpenTK.Platform.IPalComponent - uid: OpenTK.Platform.IVulkanComponent.GetPhysicalDevicePresentationSupport(OpenTK.Graphics.Vulkan.VkInstance,OpenTK.Graphics.Vulkan.VkPhysicalDevice,System.UInt32) commentId: M:OpenTK.Platform.IVulkanComponent.GetPhysicalDevicePresentationSupport(OpenTK.Graphics.Vulkan.VkInstance,OpenTK.Graphics.Vulkan.VkPhysicalDevice,System.UInt32) + parent: OpenTK.Platform.IVulkanComponent isExternal: true href: OpenTK.Platform.IVulkanComponent.html#OpenTK_Platform_IVulkanComponent_GetPhysicalDevicePresentationSupport_OpenTK_Graphics_Vulkan_VkInstance_OpenTK_Graphics_Vulkan_VkPhysicalDevice_System_UInt32_ name: GetPhysicalDevicePresentationSupport(VkInstance, VkPhysicalDevice, uint) @@ -277,6 +326,7 @@ references: - name: ) - uid: OpenTK.Platform.IVulkanComponent.CreateWindowSurface(OpenTK.Graphics.Vulkan.VkInstance,OpenTK.Platform.WindowHandle,OpenTK.Graphics.Vulkan.VkAllocationCallbacks*,OpenTK.Graphics.Vulkan.VkSurfaceKHR@) commentId: M:OpenTK.Platform.IVulkanComponent.CreateWindowSurface(OpenTK.Graphics.Vulkan.VkInstance,OpenTK.Platform.WindowHandle,OpenTK.Graphics.Vulkan.VkAllocationCallbacks*,OpenTK.Graphics.Vulkan.VkSurfaceKHR@) + parent: OpenTK.Platform.IVulkanComponent href: OpenTK.Platform.IVulkanComponent.html#OpenTK_Platform_IVulkanComponent_CreateWindowSurface_OpenTK_Graphics_Vulkan_VkInstance_OpenTK_Platform_WindowHandle_OpenTK_Graphics_Vulkan_VkAllocationCallbacks__OpenTK_Graphics_Vulkan_VkSurfaceKHR__ name: CreateWindowSurface(VkInstance, WindowHandle, VkAllocationCallbacks*, out VkSurfaceKHR) nameWithType: IVulkanComponent.CreateWindowSurface(VkInstance, WindowHandle, VkAllocationCallbacks*, out VkSurfaceKHR) @@ -343,6 +393,13 @@ references: name: VkInstance nameWithType: VkInstance fullName: OpenTK.Graphics.Vulkan.VkInstance +- uid: OpenTK.Platform.IVulkanComponent + commentId: T:OpenTK.Platform.IVulkanComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IVulkanComponent.html + name: IVulkanComponent + nameWithType: IVulkanComponent + fullName: OpenTK.Platform.IVulkanComponent - uid: OpenTK.Platform.IVulkanComponent.GetRequiredInstanceExtensions* commentId: Overload:OpenTK.Platform.IVulkanComponent.GetRequiredInstanceExtensions href: OpenTK.Platform.IVulkanComponent.html#OpenTK_Platform_IVulkanComponent_GetRequiredInstanceExtensions @@ -449,6 +506,25 @@ references: name: System nameWithType: System fullName: System +- uid: OpenTK.Platform.IVulkanComponent.GetRequiredInstanceExtensions + commentId: M:OpenTK.Platform.IVulkanComponent.GetRequiredInstanceExtensions + parent: OpenTK.Platform.IVulkanComponent + href: OpenTK.Platform.IVulkanComponent.html#OpenTK_Platform_IVulkanComponent_GetRequiredInstanceExtensions + name: GetRequiredInstanceExtensions() + nameWithType: IVulkanComponent.GetRequiredInstanceExtensions() + fullName: OpenTK.Platform.IVulkanComponent.GetRequiredInstanceExtensions() + spec.csharp: + - uid: OpenTK.Platform.IVulkanComponent.GetRequiredInstanceExtensions + name: GetRequiredInstanceExtensions + href: OpenTK.Platform.IVulkanComponent.html#OpenTK_Platform_IVulkanComponent_GetRequiredInstanceExtensions + - name: ( + - name: ) + spec.vb: + - uid: OpenTK.Platform.IVulkanComponent.GetRequiredInstanceExtensions + name: GetRequiredInstanceExtensions + href: OpenTK.Platform.IVulkanComponent.html#OpenTK_Platform_IVulkanComponent_GetRequiredInstanceExtensions + - name: ( + - name: ) - uid: OpenTK.Graphics.Vulkan.VkPhysicalDevice commentId: T:OpenTK.Graphics.Vulkan.VkPhysicalDevice parent: OpenTK.Graphics.Vulkan diff --git a/api/OpenTK.Platform.IWindowComponent.yml b/api/OpenTK.Platform.IWindowComponent.yml index c88de1a5..56a95dad 100644 --- a/api/OpenTK.Platform.IWindowComponent.yml +++ b/api/OpenTK.Platform.IWindowComponent.yml @@ -9,39 +9,42 @@ items: - OpenTK.Platform.IWindowComponent.CanGetDisplay - OpenTK.Platform.IWindowComponent.CanSetCursor - OpenTK.Platform.IWindowComponent.CanSetIcon - - OpenTK.Platform.IWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) + - OpenTK.Platform.IWindowComponent.ClientToFramebuffer(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + - OpenTK.Platform.IWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) - OpenTK.Platform.IWindowComponent.Create(OpenTK.Platform.GraphicsApiHints) - OpenTK.Platform.IWindowComponent.Destroy(OpenTK.Platform.WindowHandle) - OpenTK.Platform.IWindowComponent.FocusWindow(OpenTK.Platform.WindowHandle) + - OpenTK.Platform.IWindowComponent.FramebufferToClient(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) - OpenTK.Platform.IWindowComponent.GetBorderStyle(OpenTK.Platform.WindowHandle) - OpenTK.Platform.IWindowComponent.GetBounds(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) - OpenTK.Platform.IWindowComponent.GetClientBounds(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) - - OpenTK.Platform.IWindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) - - OpenTK.Platform.IWindowComponent.GetClientSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + - OpenTK.Platform.IWindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) + - OpenTK.Platform.IWindowComponent.GetClientSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) - OpenTK.Platform.IWindowComponent.GetCursorCaptureMode(OpenTK.Platform.WindowHandle) - OpenTK.Platform.IWindowComponent.GetDisplay(OpenTK.Platform.WindowHandle) - - OpenTK.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + - OpenTK.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) - OpenTK.Platform.IWindowComponent.GetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle@) - OpenTK.Platform.IWindowComponent.GetIcon(OpenTK.Platform.WindowHandle) - OpenTK.Platform.IWindowComponent.GetMaxClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) - OpenTK.Platform.IWindowComponent.GetMinClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) - OpenTK.Platform.IWindowComponent.GetMode(OpenTK.Platform.WindowHandle) - - OpenTK.Platform.IWindowComponent.GetPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + - OpenTK.Platform.IWindowComponent.GetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) - OpenTK.Platform.IWindowComponent.GetScaleFactor(OpenTK.Platform.WindowHandle,System.Single@,System.Single@) - - OpenTK.Platform.IWindowComponent.GetSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + - OpenTK.Platform.IWindowComponent.GetSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) - OpenTK.Platform.IWindowComponent.GetTitle(OpenTK.Platform.WindowHandle) + - OpenTK.Platform.IWindowComponent.GetTransparencyMode(OpenTK.Platform.WindowHandle,System.Single@) - OpenTK.Platform.IWindowComponent.IsAlwaysOnTop(OpenTK.Platform.WindowHandle) - OpenTK.Platform.IWindowComponent.IsFocused(OpenTK.Platform.WindowHandle) - OpenTK.Platform.IWindowComponent.IsWindowDestroyed(OpenTK.Platform.WindowHandle) - OpenTK.Platform.IWindowComponent.ProcessEvents(System.Boolean) - OpenTK.Platform.IWindowComponent.RequestAttention(OpenTK.Platform.WindowHandle) - - OpenTK.Platform.IWindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) + - OpenTK.Platform.IWindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) - OpenTK.Platform.IWindowComponent.SetAlwaysOnTop(OpenTK.Platform.WindowHandle,System.Boolean) - OpenTK.Platform.IWindowComponent.SetBorderStyle(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowBorderStyle) - OpenTK.Platform.IWindowComponent.SetBounds(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) - OpenTK.Platform.IWindowComponent.SetClientBounds(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) - - OpenTK.Platform.IWindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) - - OpenTK.Platform.IWindowComponent.SetClientSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) + - OpenTK.Platform.IWindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) + - OpenTK.Platform.IWindowComponent.SetClientSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) - OpenTK.Platform.IWindowComponent.SetCursor(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorHandle) - OpenTK.Platform.IWindowComponent.SetCursorCaptureMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorCaptureMode) - OpenTK.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle) @@ -51,12 +54,14 @@ items: - OpenTK.Platform.IWindowComponent.SetMaxClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) - OpenTK.Platform.IWindowComponent.SetMinClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) - OpenTK.Platform.IWindowComponent.SetMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowMode) - - OpenTK.Platform.IWindowComponent.SetPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) - - OpenTK.Platform.IWindowComponent.SetSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) + - OpenTK.Platform.IWindowComponent.SetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) + - OpenTK.Platform.IWindowComponent.SetSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) - OpenTK.Platform.IWindowComponent.SetTitle(OpenTK.Platform.WindowHandle,System.String) + - OpenTK.Platform.IWindowComponent.SetTransparencyMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowTransparencyMode,System.Single) - OpenTK.Platform.IWindowComponent.SupportedEvents - OpenTK.Platform.IWindowComponent.SupportedModes - OpenTK.Platform.IWindowComponent.SupportedStyles + - OpenTK.Platform.IWindowComponent.SupportsFramebufferTransparency(OpenTK.Platform.WindowHandle) langs: - csharp - vb @@ -67,7 +72,7 @@ items: source: id: IWindowComponent path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IWindowComponent.cs - startLine: 24 + startLine: 26 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -76,11 +81,15 @@ items: syntax: content: 'public interface IWindowComponent : IPalComponent' content.vb: Public Interface IWindowComponent Inherits IPalComponent + seealso: + - linkId: OpenTK.Platform.Toolkit.Window + commentId: P:OpenTK.Platform.Toolkit.Window inheritedMembers: - OpenTK.Platform.IPalComponent.Name - OpenTK.Platform.IPalComponent.Provides - OpenTK.Platform.IPalComponent.Logger - OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + - OpenTK.Platform.IPalComponent.Uninitialize - uid: OpenTK.Platform.IWindowComponent.CanSetIcon commentId: P:OpenTK.Platform.IWindowComponent.CanSetIcon id: CanSetIcon @@ -95,11 +104,11 @@ items: source: id: CanSetIcon path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IWindowComponent.cs - startLine: 34 + startLine: 37 assemblies: - OpenTK.Platform namespace: OpenTK.Platform - summary: True when the driver supports setting the window icon using . + summary: true when the driver supports setting and getting the window icon using and . example: [] syntax: content: bool CanSetIcon { get; } @@ -111,6 +120,8 @@ items: seealso: - linkId: OpenTK.Platform.IWindowComponent.SetIcon(OpenTK.Platform.WindowHandle,OpenTK.Platform.IconHandle) commentId: M:OpenTK.Platform.IWindowComponent.SetIcon(OpenTK.Platform.WindowHandle,OpenTK.Platform.IconHandle) + - linkId: OpenTK.Platform.IWindowComponent.GetIcon(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.GetIcon(OpenTK.Platform.WindowHandle) - uid: OpenTK.Platform.IWindowComponent.CanGetDisplay commentId: P:OpenTK.Platform.IWindowComponent.CanGetDisplay id: CanGetDisplay @@ -125,11 +136,11 @@ items: source: id: CanGetDisplay path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IWindowComponent.cs - startLine: 42 + startLine: 45 assemblies: - OpenTK.Platform namespace: OpenTK.Platform - summary: True when the driver can provide the display the window is in using . + summary: true when the driver can provide the display the window is in using . example: [] syntax: content: bool CanGetDisplay { get; } @@ -155,11 +166,11 @@ items: source: id: CanSetCursor path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IWindowComponent.cs - startLine: 50 + startLine: 53 assemblies: - OpenTK.Platform namespace: OpenTK.Platform - summary: True when the driver supports setting the cursor of the window using . + summary: true when the driver supports setting the cursor of the window using . example: [] syntax: content: bool CanSetCursor { get; } @@ -185,11 +196,11 @@ items: source: id: CanCaptureCursor path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IWindowComponent.cs - startLine: 58 + startLine: 61 assemblies: - OpenTK.Platform namespace: OpenTK.Platform - summary: True when the driver supports capturing the cursor in a window using . + summary: true when the driver supports capturing the cursor in a window using . example: [] syntax: content: bool CanCaptureCursor { get; } @@ -215,7 +226,7 @@ items: source: id: SupportedEvents path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IWindowComponent.cs - startLine: 63 + startLine: 66 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -242,7 +253,7 @@ items: source: id: SupportedStyles path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IWindowComponent.cs - startLine: 68 + startLine: 71 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -269,7 +280,7 @@ items: source: id: SupportedModes path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IWindowComponent.cs - startLine: 73 + startLine: 76 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -296,7 +307,7 @@ items: source: id: ProcessEvents path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IWindowComponent.cs - startLine: 79 + startLine: 82 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -327,7 +338,7 @@ items: source: id: Create path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IWindowComponent.cs - startLine: 88 + startLine: 92 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -344,6 +355,9 @@ items: description: Handle to the new window object. content.vb: Function Create(hints As GraphicsApiHints) As WindowHandle overload: OpenTK.Platform.IWindowComponent.Create* + seealso: + - linkId: OpenTK.Platform.IWindowComponent.Destroy(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.Destroy(OpenTK.Platform.WindowHandle) - uid: OpenTK.Platform.IWindowComponent.Destroy(OpenTK.Platform.WindowHandle) commentId: M:OpenTK.Platform.IWindowComponent.Destroy(OpenTK.Platform.WindowHandle) id: Destroy(OpenTK.Platform.WindowHandle) @@ -358,7 +372,7 @@ items: source: id: Destroy path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IWindowComponent.cs - startLine: 95 + startLine: 100 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -372,10 +386,11 @@ items: description: Handle to a window object. content.vb: Sub Destroy(handle As WindowHandle) overload: OpenTK.Platform.IWindowComponent.Destroy* - exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: handle is null. + seealso: + - linkId: OpenTK.Platform.IWindowComponent.Create(OpenTK.Platform.GraphicsApiHints) + commentId: M:OpenTK.Platform.IWindowComponent.Create(OpenTK.Platform.GraphicsApiHints) + - linkId: OpenTK.Platform.IWindowComponent.IsWindowDestroyed(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.IsWindowDestroyed(OpenTK.Platform.WindowHandle) - uid: OpenTK.Platform.IWindowComponent.IsWindowDestroyed(OpenTK.Platform.WindowHandle) commentId: M:OpenTK.Platform.IWindowComponent.IsWindowDestroyed(OpenTK.Platform.WindowHandle) id: IsWindowDestroyed(OpenTK.Platform.WindowHandle) @@ -390,7 +405,7 @@ items: source: id: IsWindowDestroyed path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IWindowComponent.cs - startLine: 102 + startLine: 109 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -407,6 +422,11 @@ items: description: If was called with the window handle. content.vb: Function IsWindowDestroyed(handle As WindowHandle) As Boolean overload: OpenTK.Platform.IWindowComponent.IsWindowDestroyed* + seealso: + - linkId: OpenTK.Platform.IWindowComponent.Create(OpenTK.Platform.GraphicsApiHints) + commentId: M:OpenTK.Platform.IWindowComponent.Create(OpenTK.Platform.GraphicsApiHints) + - linkId: OpenTK.Platform.IWindowComponent.Destroy(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.Destroy(OpenTK.Platform.WindowHandle) - uid: OpenTK.Platform.IWindowComponent.GetTitle(OpenTK.Platform.WindowHandle) commentId: M:OpenTK.Platform.IWindowComponent.GetTitle(OpenTK.Platform.WindowHandle) id: GetTitle(OpenTK.Platform.WindowHandle) @@ -421,7 +441,7 @@ items: source: id: GetTitle path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IWindowComponent.cs - startLine: 110 + startLine: 117 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -438,10 +458,9 @@ items: description: The title of the window. content.vb: Function GetTitle(handle As WindowHandle) As String overload: OpenTK.Platform.IWindowComponent.GetTitle* - exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: handle is null. + seealso: + - linkId: OpenTK.Platform.IWindowComponent.SetTitle(OpenTK.Platform.WindowHandle,System.String) + commentId: M:OpenTK.Platform.IWindowComponent.SetTitle(OpenTK.Platform.WindowHandle,System.String) - uid: OpenTK.Platform.IWindowComponent.SetTitle(OpenTK.Platform.WindowHandle,System.String) commentId: M:OpenTK.Platform.IWindowComponent.SetTitle(OpenTK.Platform.WindowHandle,System.String) id: SetTitle(OpenTK.Platform.WindowHandle,System.String) @@ -456,7 +475,7 @@ items: source: id: SetTitle path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IWindowComponent.cs - startLine: 120 + startLine: 125 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -473,10 +492,9 @@ items: description: New window title string. content.vb: Sub SetTitle(handle As WindowHandle, title As String) overload: OpenTK.Platform.IWindowComponent.SetTitle* - exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: handle or title is null. + seealso: + - linkId: OpenTK.Platform.IWindowComponent.GetTitle(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.GetTitle(OpenTK.Platform.WindowHandle) nameWithType.vb: IWindowComponent.SetTitle(WindowHandle, String) fullName.vb: OpenTK.Platform.IWindowComponent.SetTitle(OpenTK.Platform.WindowHandle, String) name.vb: SetTitle(WindowHandle, String) @@ -494,7 +512,7 @@ items: source: id: GetIcon path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IWindowComponent.cs - startLine: 131 + startLine: 135 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -512,12 +530,14 @@ items: content.vb: Function GetIcon(handle As WindowHandle) As IconHandle overload: OpenTK.Platform.IWindowComponent.GetIcon* exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: handle is null. - - type: OpenTK.Platform.PalNotImplementedException - commentId: T:OpenTK.Platform.PalNotImplementedException - description: Driver does not support getting the window icon. See . + - type: System.PlatformNotSupportedException + commentId: T:System.PlatformNotSupportedException + description: Backend does not support getting the window icon. See . + seealso: + - linkId: OpenTK.Platform.IWindowComponent.CanSetIcon + commentId: P:OpenTK.Platform.IWindowComponent.CanSetIcon + - linkId: OpenTK.Platform.IWindowComponent.SetIcon(OpenTK.Platform.WindowHandle,OpenTK.Platform.IconHandle) + commentId: M:OpenTK.Platform.IWindowComponent.SetIcon(OpenTK.Platform.WindowHandle,OpenTK.Platform.IconHandle) - uid: OpenTK.Platform.IWindowComponent.SetIcon(OpenTK.Platform.WindowHandle,OpenTK.Platform.IconHandle) commentId: M:OpenTK.Platform.IWindowComponent.SetIcon(OpenTK.Platform.WindowHandle,OpenTK.Platform.IconHandle) id: SetIcon(OpenTK.Platform.WindowHandle,OpenTK.Platform.IconHandle) @@ -532,7 +552,7 @@ items: source: id: SetIcon path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IWindowComponent.cs - startLine: 141 + startLine: 145 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -546,183 +566,151 @@ items: description: Handle to a window. - id: icon type: OpenTK.Platform.IconHandle - description: Handle to an icon object, or null to revert to default. + description: Handle to an icon object. content.vb: Sub SetIcon(handle As WindowHandle, icon As IconHandle) overload: OpenTK.Platform.IWindowComponent.SetIcon* exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: handle or icon is null. - - type: OpenTK.Platform.PalNotImplementedException - commentId: T:OpenTK.Platform.PalNotImplementedException + - type: System.PlatformNotSupportedException + commentId: T:System.PlatformNotSupportedException description: Backend does not support setting the window icon. See . seealso: - linkId: OpenTK.Platform.IWindowComponent.CanSetIcon commentId: P:OpenTK.Platform.IWindowComponent.CanSetIcon -- uid: OpenTK.Platform.IWindowComponent.GetPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) - commentId: M:OpenTK.Platform.IWindowComponent.GetPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) - id: GetPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + - linkId: OpenTK.Platform.IWindowComponent.GetIcon(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.GetIcon(OpenTK.Platform.WindowHandle) +- uid: OpenTK.Platform.IWindowComponent.GetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) + commentId: M:OpenTK.Platform.IWindowComponent.GetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) + id: GetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) parent: OpenTK.Platform.IWindowComponent langs: - csharp - vb - name: GetPosition(WindowHandle, out int, out int) - nameWithType: IWindowComponent.GetPosition(WindowHandle, out int, out int) - fullName: OpenTK.Platform.IWindowComponent.GetPosition(OpenTK.Platform.WindowHandle, out int, out int) + name: GetPosition(WindowHandle, out Vector2i) + nameWithType: IWindowComponent.GetPosition(WindowHandle, out Vector2i) + fullName: OpenTK.Platform.IWindowComponent.GetPosition(OpenTK.Platform.WindowHandle, out OpenTK.Mathematics.Vector2i) type: Method source: id: GetPosition path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IWindowComponent.cs - startLine: 150 + startLine: 153 assemblies: - OpenTK.Platform namespace: OpenTK.Platform summary: Get the window position in display coordinates (top left origin). example: [] syntax: - content: void GetPosition(WindowHandle handle, out int x, out int y) + content: void GetPosition(WindowHandle handle, out Vector2i position) parameters: - id: handle type: OpenTK.Platform.WindowHandle description: Handle to a window. - - id: x - type: System.Int32 - description: X coordinate of the window. - - id: y - type: System.Int32 - description: Y coordinate of the window. - content.vb: Sub GetPosition(handle As WindowHandle, x As Integer, y As Integer) + - id: position + type: OpenTK.Mathematics.Vector2i + description: Coordinate of the window in screen coordinates. + content.vb: Sub GetPosition(handle As WindowHandle, position As Vector2i) overload: OpenTK.Platform.IWindowComponent.GetPosition* - exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: handle is null. - nameWithType.vb: IWindowComponent.GetPosition(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Platform.IWindowComponent.GetPosition(OpenTK.Platform.WindowHandle, Integer, Integer) - name.vb: GetPosition(WindowHandle, Integer, Integer) -- uid: OpenTK.Platform.IWindowComponent.SetPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) - commentId: M:OpenTK.Platform.IWindowComponent.SetPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) - id: SetPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) + seealso: + - linkId: OpenTK.Platform.IWindowComponent.SetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) + commentId: M:OpenTK.Platform.IWindowComponent.SetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) + nameWithType.vb: IWindowComponent.GetPosition(WindowHandle, Vector2i) + fullName.vb: OpenTK.Platform.IWindowComponent.GetPosition(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2i) + name.vb: GetPosition(WindowHandle, Vector2i) +- uid: OpenTK.Platform.IWindowComponent.SetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) + commentId: M:OpenTK.Platform.IWindowComponent.SetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) + id: SetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) parent: OpenTK.Platform.IWindowComponent langs: - csharp - vb - name: SetPosition(WindowHandle, int, int) - nameWithType: IWindowComponent.SetPosition(WindowHandle, int, int) - fullName: OpenTK.Platform.IWindowComponent.SetPosition(OpenTK.Platform.WindowHandle, int, int) + name: SetPosition(WindowHandle, Vector2i) + nameWithType: IWindowComponent.SetPosition(WindowHandle, Vector2i) + fullName: OpenTK.Platform.IWindowComponent.SetPosition(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2i) type: Method source: id: SetPosition path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IWindowComponent.cs - startLine: 159 + startLine: 160 assemblies: - OpenTK.Platform namespace: OpenTK.Platform summary: Set the window position in display coordinates (top left origin). example: [] syntax: - content: void SetPosition(WindowHandle handle, int x, int y) + content: void SetPosition(WindowHandle handle, Vector2i newPosition) parameters: - id: handle type: OpenTK.Platform.WindowHandle description: Handle to a window. - - id: x - type: System.Int32 - description: New X coordinate of the window. - - id: y - type: System.Int32 - description: New Y coordinate of the window. - content.vb: Sub SetPosition(handle As WindowHandle, x As Integer, y As Integer) + - id: newPosition + type: OpenTK.Mathematics.Vector2i + description: New position of the window in screen coordinates. + content.vb: Sub SetPosition(handle As WindowHandle, newPosition As Vector2i) overload: OpenTK.Platform.IWindowComponent.SetPosition* - exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: handle is null. - nameWithType.vb: IWindowComponent.SetPosition(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Platform.IWindowComponent.SetPosition(OpenTK.Platform.WindowHandle, Integer, Integer) - name.vb: SetPosition(WindowHandle, Integer, Integer) -- uid: OpenTK.Platform.IWindowComponent.GetSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) - commentId: M:OpenTK.Platform.IWindowComponent.GetSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) - id: GetSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) +- uid: OpenTK.Platform.IWindowComponent.GetSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) + commentId: M:OpenTK.Platform.IWindowComponent.GetSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) + id: GetSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) parent: OpenTK.Platform.IWindowComponent langs: - csharp - vb - name: GetSize(WindowHandle, out int, out int) - nameWithType: IWindowComponent.GetSize(WindowHandle, out int, out int) - fullName: OpenTK.Platform.IWindowComponent.GetSize(OpenTK.Platform.WindowHandle, out int, out int) + name: GetSize(WindowHandle, out Vector2i) + nameWithType: IWindowComponent.GetSize(WindowHandle, out Vector2i) + fullName: OpenTK.Platform.IWindowComponent.GetSize(OpenTK.Platform.WindowHandle, out OpenTK.Mathematics.Vector2i) type: Method source: id: GetSize path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IWindowComponent.cs - startLine: 168 + startLine: 167 assemblies: - OpenTK.Platform namespace: OpenTK.Platform summary: Get the size of the window. example: [] syntax: - content: void GetSize(WindowHandle handle, out int width, out int height) + content: void GetSize(WindowHandle handle, out Vector2i size) parameters: - id: handle type: OpenTK.Platform.WindowHandle description: Handle to a window. - - id: width - type: System.Int32 - description: Width of the window in pixels. - - id: height - type: System.Int32 - description: Height of the window in pixels. - content.vb: Sub GetSize(handle As WindowHandle, width As Integer, height As Integer) + - id: size + type: OpenTK.Mathematics.Vector2i + description: Size of the window in screen coordinates. + content.vb: Sub GetSize(handle As WindowHandle, size As Vector2i) overload: OpenTK.Platform.IWindowComponent.GetSize* - exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: handle is null. - nameWithType.vb: IWindowComponent.GetSize(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Platform.IWindowComponent.GetSize(OpenTK.Platform.WindowHandle, Integer, Integer) - name.vb: GetSize(WindowHandle, Integer, Integer) -- uid: OpenTK.Platform.IWindowComponent.SetSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) - commentId: M:OpenTK.Platform.IWindowComponent.SetSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) - id: SetSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) + nameWithType.vb: IWindowComponent.GetSize(WindowHandle, Vector2i) + fullName.vb: OpenTK.Platform.IWindowComponent.GetSize(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2i) + name.vb: GetSize(WindowHandle, Vector2i) +- uid: OpenTK.Platform.IWindowComponent.SetSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) + commentId: M:OpenTK.Platform.IWindowComponent.SetSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) + id: SetSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) parent: OpenTK.Platform.IWindowComponent langs: - csharp - vb - name: SetSize(WindowHandle, int, int) - nameWithType: IWindowComponent.SetSize(WindowHandle, int, int) - fullName: OpenTK.Platform.IWindowComponent.SetSize(OpenTK.Platform.WindowHandle, int, int) + name: SetSize(WindowHandle, Vector2i) + nameWithType: IWindowComponent.SetSize(WindowHandle, Vector2i) + fullName: OpenTK.Platform.IWindowComponent.SetSize(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2i) type: Method source: id: SetSize path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IWindowComponent.cs - startLine: 177 + startLine: 174 assemblies: - OpenTK.Platform namespace: OpenTK.Platform summary: Set the size of the window. example: [] syntax: - content: void SetSize(WindowHandle handle, int width, int height) + content: void SetSize(WindowHandle handle, Vector2i newSize) parameters: - id: handle type: OpenTK.Platform.WindowHandle description: Handle to a window. - - id: width - type: System.Int32 - description: New width of the window in pixels. - - id: height - type: System.Int32 - description: New height of the window in pixels. - content.vb: Sub SetSize(handle As WindowHandle, width As Integer, height As Integer) + - id: newSize + type: OpenTK.Mathematics.Vector2i + description: New size of the window in screen coordinates. + content.vb: Sub SetSize(handle As WindowHandle, newSize As Vector2i) overload: OpenTK.Platform.IWindowComponent.SetSize* - exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: handle is null. - nameWithType.vb: IWindowComponent.SetSize(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Platform.IWindowComponent.SetSize(OpenTK.Platform.WindowHandle, Integer, Integer) - name.vb: SetSize(WindowHandle, Integer, Integer) - uid: OpenTK.Platform.IWindowComponent.GetBounds(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) commentId: M:OpenTK.Platform.IWindowComponent.GetBounds(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) id: GetBounds(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) @@ -737,7 +725,7 @@ items: source: id: GetBounds path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IWindowComponent.cs - startLine: 187 + startLine: 184 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -757,10 +745,10 @@ items: description: Y coordinate of the window. - id: width type: System.Int32 - description: Width of the window in pixels. + description: Width of the window in screen coordinates. - id: height type: System.Int32 - description: Height of the window in pixels. + description: Height of the window in screen coordinates. content.vb: Sub GetBounds(handle As WindowHandle, x As Integer, y As Integer, width As Integer, height As Integer) overload: OpenTK.Platform.IWindowComponent.GetBounds* nameWithType.vb: IWindowComponent.GetBounds(WindowHandle, Integer, Integer, Integer, Integer) @@ -780,7 +768,7 @@ items: source: id: SetBounds path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IWindowComponent.cs - startLine: 197 + startLine: 194 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -800,179 +788,145 @@ items: description: New Y coordinate of the window. - id: width type: System.Int32 - description: New width of the window in pixels. + description: New width of the window in screen coordinates. - id: height type: System.Int32 - description: New height of the window in pixels. + description: New height of the window in screen coordinates. content.vb: Sub SetBounds(handle As WindowHandle, x As Integer, y As Integer, width As Integer, height As Integer) overload: OpenTK.Platform.IWindowComponent.SetBounds* nameWithType.vb: IWindowComponent.SetBounds(WindowHandle, Integer, Integer, Integer, Integer) fullName.vb: OpenTK.Platform.IWindowComponent.SetBounds(OpenTK.Platform.WindowHandle, Integer, Integer, Integer, Integer) name.vb: SetBounds(WindowHandle, Integer, Integer, Integer, Integer) -- uid: OpenTK.Platform.IWindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) - commentId: M:OpenTK.Platform.IWindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) - id: GetClientPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) +- uid: OpenTK.Platform.IWindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) + commentId: M:OpenTK.Platform.IWindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) + id: GetClientPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) parent: OpenTK.Platform.IWindowComponent langs: - csharp - vb - name: GetClientPosition(WindowHandle, out int, out int) - nameWithType: IWindowComponent.GetClientPosition(WindowHandle, out int, out int) - fullName: OpenTK.Platform.IWindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle, out int, out int) + name: GetClientPosition(WindowHandle, out Vector2i) + nameWithType: IWindowComponent.GetClientPosition(WindowHandle, out Vector2i) + fullName: OpenTK.Platform.IWindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle, out OpenTK.Mathematics.Vector2i) type: Method source: id: GetClientPosition path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IWindowComponent.cs - startLine: 206 + startLine: 201 assemblies: - OpenTK.Platform namespace: OpenTK.Platform summary: Get the position of the client area (drawing area) of a window. example: [] syntax: - content: void GetClientPosition(WindowHandle handle, out int x, out int y) + content: void GetClientPosition(WindowHandle handle, out Vector2i clientPosition) parameters: - id: handle type: OpenTK.Platform.WindowHandle description: Handle to a window. - - id: x - type: System.Int32 - description: X coordinate of the client area. - - id: y - type: System.Int32 - description: Y coordinate of the client area. - content.vb: Sub GetClientPosition(handle As WindowHandle, x As Integer, y As Integer) + - id: clientPosition + type: OpenTK.Mathematics.Vector2i + description: The coordinate of the client area in screen coordinates. + content.vb: Sub GetClientPosition(handle As WindowHandle, clientPosition As Vector2i) overload: OpenTK.Platform.IWindowComponent.GetClientPosition* - exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: handle is null. - nameWithType.vb: IWindowComponent.GetClientPosition(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Platform.IWindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle, Integer, Integer) - name.vb: GetClientPosition(WindowHandle, Integer, Integer) -- uid: OpenTK.Platform.IWindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) - commentId: M:OpenTK.Platform.IWindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) - id: SetClientPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) + nameWithType.vb: IWindowComponent.GetClientPosition(WindowHandle, Vector2i) + fullName.vb: OpenTK.Platform.IWindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2i) + name.vb: GetClientPosition(WindowHandle, Vector2i) +- uid: OpenTK.Platform.IWindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) + commentId: M:OpenTK.Platform.IWindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) + id: SetClientPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) parent: OpenTK.Platform.IWindowComponent langs: - csharp - vb - name: SetClientPosition(WindowHandle, int, int) - nameWithType: IWindowComponent.SetClientPosition(WindowHandle, int, int) - fullName: OpenTK.Platform.IWindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle, int, int) + name: SetClientPosition(WindowHandle, Vector2i) + nameWithType: IWindowComponent.SetClientPosition(WindowHandle, Vector2i) + fullName: OpenTK.Platform.IWindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2i) type: Method source: id: SetClientPosition path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IWindowComponent.cs - startLine: 215 + startLine: 208 assemblies: - OpenTK.Platform namespace: OpenTK.Platform summary: Set the position of the client area (drawing area) of a window. example: [] syntax: - content: void SetClientPosition(WindowHandle handle, int x, int y) + content: void SetClientPosition(WindowHandle handle, Vector2i newClientPosition) parameters: - id: handle type: OpenTK.Platform.WindowHandle description: Handle to a window. - - id: x - type: System.Int32 - description: New X coordinate of the client area. - - id: y - type: System.Int32 - description: New Y coordinate of the client area. - content.vb: Sub SetClientPosition(handle As WindowHandle, x As Integer, y As Integer) + - id: newClientPosition + type: OpenTK.Mathematics.Vector2i + description: New coordinate of the client area in screen coordinates. + content.vb: Sub SetClientPosition(handle As WindowHandle, newClientPosition As Vector2i) overload: OpenTK.Platform.IWindowComponent.SetClientPosition* - exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: handle is null. - nameWithType.vb: IWindowComponent.SetClientPosition(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Platform.IWindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle, Integer, Integer) - name.vb: SetClientPosition(WindowHandle, Integer, Integer) -- uid: OpenTK.Platform.IWindowComponent.GetClientSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) - commentId: M:OpenTK.Platform.IWindowComponent.GetClientSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) - id: GetClientSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) +- uid: OpenTK.Platform.IWindowComponent.GetClientSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) + commentId: M:OpenTK.Platform.IWindowComponent.GetClientSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) + id: GetClientSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) parent: OpenTK.Platform.IWindowComponent langs: - csharp - vb - name: GetClientSize(WindowHandle, out int, out int) - nameWithType: IWindowComponent.GetClientSize(WindowHandle, out int, out int) - fullName: OpenTK.Platform.IWindowComponent.GetClientSize(OpenTK.Platform.WindowHandle, out int, out int) + name: GetClientSize(WindowHandle, out Vector2i) + nameWithType: IWindowComponent.GetClientSize(WindowHandle, out Vector2i) + fullName: OpenTK.Platform.IWindowComponent.GetClientSize(OpenTK.Platform.WindowHandle, out OpenTK.Mathematics.Vector2i) type: Method source: id: GetClientSize path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IWindowComponent.cs - startLine: 224 + startLine: 215 assemblies: - OpenTK.Platform namespace: OpenTK.Platform summary: Get the size of the client area (drawing area) of a window. example: [] syntax: - content: void GetClientSize(WindowHandle handle, out int width, out int height) + content: void GetClientSize(WindowHandle handle, out Vector2i clientSize) parameters: - id: handle type: OpenTK.Platform.WindowHandle description: Handle to a window. - - id: width - type: System.Int32 - description: Width of the client area in pixels. - - id: height - type: System.Int32 - description: Height of the client area in pixels. - content.vb: Sub GetClientSize(handle As WindowHandle, width As Integer, height As Integer) + - id: clientSize + type: OpenTK.Mathematics.Vector2i + description: Size of the client area in screen coordinates. + content.vb: Sub GetClientSize(handle As WindowHandle, clientSize As Vector2i) overload: OpenTK.Platform.IWindowComponent.GetClientSize* - exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: handle is null. - nameWithType.vb: IWindowComponent.GetClientSize(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Platform.IWindowComponent.GetClientSize(OpenTK.Platform.WindowHandle, Integer, Integer) - name.vb: GetClientSize(WindowHandle, Integer, Integer) -- uid: OpenTK.Platform.IWindowComponent.SetClientSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) - commentId: M:OpenTK.Platform.IWindowComponent.SetClientSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) - id: SetClientSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) + nameWithType.vb: IWindowComponent.GetClientSize(WindowHandle, Vector2i) + fullName.vb: OpenTK.Platform.IWindowComponent.GetClientSize(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2i) + name.vb: GetClientSize(WindowHandle, Vector2i) +- uid: OpenTK.Platform.IWindowComponent.SetClientSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) + commentId: M:OpenTK.Platform.IWindowComponent.SetClientSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) + id: SetClientSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) parent: OpenTK.Platform.IWindowComponent langs: - csharp - vb - name: SetClientSize(WindowHandle, int, int) - nameWithType: IWindowComponent.SetClientSize(WindowHandle, int, int) - fullName: OpenTK.Platform.IWindowComponent.SetClientSize(OpenTK.Platform.WindowHandle, int, int) + name: SetClientSize(WindowHandle, Vector2i) + nameWithType: IWindowComponent.SetClientSize(WindowHandle, Vector2i) + fullName: OpenTK.Platform.IWindowComponent.SetClientSize(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2i) type: Method source: id: SetClientSize path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IWindowComponent.cs - startLine: 233 + startLine: 222 assemblies: - OpenTK.Platform namespace: OpenTK.Platform summary: Set the size of the client area (drawing area) of a window. example: [] syntax: - content: void SetClientSize(WindowHandle handle, int width, int height) + content: void SetClientSize(WindowHandle handle, Vector2i newClientSize) parameters: - id: handle type: OpenTK.Platform.WindowHandle description: Handle to a window. - - id: width - type: System.Int32 - description: New width of the client area in pixels. - - id: height - type: System.Int32 - description: New height of the client area in pixels. - content.vb: Sub SetClientSize(handle As WindowHandle, width As Integer, height As Integer) + - id: newClientSize + type: OpenTK.Mathematics.Vector2i + description: New size of the client area in screen coordinates. + content.vb: Sub SetClientSize(handle As WindowHandle, newClientSize As Vector2i) overload: OpenTK.Platform.IWindowComponent.SetClientSize* - exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: handle is null. - nameWithType.vb: IWindowComponent.SetClientSize(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Platform.IWindowComponent.SetClientSize(OpenTK.Platform.WindowHandle, Integer, Integer) - name.vb: SetClientSize(WindowHandle, Integer, Integer) - uid: OpenTK.Platform.IWindowComponent.GetClientBounds(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) commentId: M:OpenTK.Platform.IWindowComponent.GetClientBounds(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) id: GetClientBounds(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) @@ -987,7 +941,7 @@ items: source: id: GetClientBounds path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IWindowComponent.cs - startLine: 243 + startLine: 232 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -1030,7 +984,7 @@ items: source: id: SetClientBounds path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IWindowComponent.cs - startLine: 253 + startLine: 242 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -1059,21 +1013,21 @@ items: nameWithType.vb: IWindowComponent.SetClientBounds(WindowHandle, Integer, Integer, Integer, Integer) fullName.vb: OpenTK.Platform.IWindowComponent.SetClientBounds(OpenTK.Platform.WindowHandle, Integer, Integer, Integer, Integer) name.vb: SetClientBounds(WindowHandle, Integer, Integer, Integer, Integer) -- uid: OpenTK.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) - commentId: M:OpenTK.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) - id: GetFramebufferSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) +- uid: OpenTK.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) + commentId: M:OpenTK.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) + id: GetFramebufferSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) parent: OpenTK.Platform.IWindowComponent langs: - csharp - vb - name: GetFramebufferSize(WindowHandle, out int, out int) - nameWithType: IWindowComponent.GetFramebufferSize(WindowHandle, out int, out int) - fullName: OpenTK.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle, out int, out int) + name: GetFramebufferSize(WindowHandle, out Vector2i) + nameWithType: IWindowComponent.GetFramebufferSize(WindowHandle, out Vector2i) + fullName: OpenTK.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle, out OpenTK.Mathematics.Vector2i) type: Method source: id: GetFramebufferSize path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IWindowComponent.cs - startLine: 262 + startLine: 250 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -1083,22 +1037,19 @@ items: Use this value when calls to graphics APIs that want pixels, e.g. GL.Viewport(). example: [] syntax: - content: void GetFramebufferSize(WindowHandle handle, out int width, out int height) + content: void GetFramebufferSize(WindowHandle handle, out Vector2i framebufferSize) parameters: - id: handle type: OpenTK.Platform.WindowHandle description: Handle to a window. - - id: width - type: System.Int32 - description: Width in pixels of the window framebuffer. - - id: height - type: System.Int32 - description: Height in pixels of the window framebuffer. - content.vb: Sub GetFramebufferSize(handle As WindowHandle, width As Integer, height As Integer) + - id: framebufferSize + type: OpenTK.Mathematics.Vector2i + description: Size in pixels of the window framebuffer. + content.vb: Sub GetFramebufferSize(handle As WindowHandle, framebufferSize As Vector2i) overload: OpenTK.Platform.IWindowComponent.GetFramebufferSize* - nameWithType.vb: IWindowComponent.GetFramebufferSize(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle, Integer, Integer) - name.vb: GetFramebufferSize(WindowHandle, Integer, Integer) + nameWithType.vb: IWindowComponent.GetFramebufferSize(WindowHandle, Vector2i) + fullName.vb: OpenTK.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2i) + name.vb: GetFramebufferSize(WindowHandle, Vector2i) - uid: OpenTK.Platform.IWindowComponent.GetMaxClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) commentId: M:OpenTK.Platform.IWindowComponent.GetMaxClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) id: GetMaxClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) @@ -1113,7 +1064,7 @@ items: source: id: GetMaxClientSize path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IWindowComponent.cs - startLine: 270 + startLine: 258 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -1150,7 +1101,7 @@ items: source: id: SetMaxClientSize path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IWindowComponent.cs - startLine: 278 + startLine: 266 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -1187,7 +1138,7 @@ items: source: id: GetMinClientSize path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IWindowComponent.cs - startLine: 286 + startLine: 274 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -1224,7 +1175,7 @@ items: source: id: SetMinClientSize path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IWindowComponent.cs - startLine: 294 + startLine: 282 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -1261,7 +1212,7 @@ items: source: id: GetDisplay path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IWindowComponent.cs - startLine: 304 + startLine: 291 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -1279,9 +1230,6 @@ items: content.vb: Function GetDisplay(handle As WindowHandle) As DisplayHandle overload: OpenTK.Platform.IWindowComponent.GetDisplay* exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: handle is null. - type: OpenTK.Platform.PalNotImplementedException commentId: T:OpenTK.Platform.PalNotImplementedException description: Backend does not support finding the window display. . @@ -1302,7 +1250,7 @@ items: source: id: GetMode path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IWindowComponent.cs - startLine: 312 + startLine: 298 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -1319,10 +1267,6 @@ items: description: The mode of the window. content.vb: Function GetMode(handle As WindowHandle) As WindowMode overload: OpenTK.Platform.IWindowComponent.GetMode* - exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: handle is null. - uid: OpenTK.Platform.IWindowComponent.SetMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowMode) commentId: M:OpenTK.Platform.IWindowComponent.SetMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowMode) id: SetMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowMode) @@ -1337,7 +1281,7 @@ items: source: id: SetMode path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IWindowComponent.cs - startLine: 330 + startLine: 315 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -1363,15 +1307,17 @@ items: content.vb: Sub SetMode(handle As WindowHandle, mode As WindowMode) overload: OpenTK.Platform.IWindowComponent.SetMode* exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: handle is null. - - type: System.ArgumentOutOfRangeException - commentId: T:System.ArgumentOutOfRangeException + - type: System.ComponentModel.InvalidEnumArgumentException + commentId: T:System.ComponentModel.InvalidEnumArgumentException description: mode is an invalid value. - - type: OpenTK.Platform.PalNotImplementedException - commentId: T:OpenTK.Platform.PalNotImplementedException - description: Driver does not support the value set by mode. See . + - type: System.PlatformNotSupportedException + commentId: T:System.PlatformNotSupportedException + description: Backend does not support the value set by mode. See . + seealso: + - linkId: OpenTK.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle) + commentId: M:OpenTK.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle) + - linkId: OpenTK.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle,OpenTK.Platform.VideoMode) + commentId: M:OpenTK.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle,OpenTK.Platform.VideoMode) - uid: OpenTK.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle) commentId: M:OpenTK.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle) id: SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle) @@ -1386,7 +1332,7 @@ items: source: id: SetFullscreenDisplay path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IWindowComponent.cs - startLine: 341 + startLine: 327 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -1407,6 +1353,9 @@ items: description: The display to make the window fullscreen on. content.vb: Sub SetFullscreenDisplay(handle As WindowHandle, display As DisplayHandle) overload: OpenTK.Platform.IWindowComponent.SetFullscreenDisplay* + seealso: + - linkId: OpenTK.Platform.IWindowComponent.SetMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowMode) + commentId: M:OpenTK.Platform.IWindowComponent.SetMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowMode) nameWithType.vb: IWindowComponent.SetFullscreenDisplay(WindowHandle, DisplayHandle) fullName.vb: OpenTK.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle, OpenTK.Platform.DisplayHandle) name.vb: SetFullscreenDisplay(WindowHandle, DisplayHandle) @@ -1424,7 +1373,7 @@ items: source: id: SetFullscreenDisplay path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IWindowComponent.cs - startLine: 354 + startLine: 342 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -1434,7 +1383,7 @@ items: Only video modes accuired using are expected to work. - remarks: To make an 'windowed fullscreen' window see . + remarks: To make a 'windowed fullscreen' window see . example: [] syntax: content: void SetFullscreenDisplay(WindowHandle handle, DisplayHandle display, VideoMode videoMode) @@ -1450,6 +1399,11 @@ items: description: The video mode to use when making the window fullscreen. content.vb: Sub SetFullscreenDisplay(handle As WindowHandle, display As DisplayHandle, videoMode As VideoMode) overload: OpenTK.Platform.IWindowComponent.SetFullscreenDisplay* + seealso: + - linkId: OpenTK.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle) + commentId: M:OpenTK.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle) + - linkId: OpenTK.Platform.IWindowComponent.SetMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowMode) + commentId: M:OpenTK.Platform.IWindowComponent.SetMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowMode) - uid: OpenTK.Platform.IWindowComponent.GetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle@) commentId: M:OpenTK.Platform.IWindowComponent.GetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle@) id: GetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle@) @@ -1464,7 +1418,7 @@ items: source: id: GetFullscreenDisplay path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IWindowComponent.cs - startLine: 362 + startLine: 353 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -1481,9 +1435,16 @@ items: description: The display where the window is fullscreen or null if the window is not fullscreen. return: type: System.Boolean - description: true if the window was fullscreen, false otherwise. + description: true if the window was fullscreen, false otherwise. content.vb: Function GetFullscreenDisplay(handle As WindowHandle, display As DisplayHandle) As Boolean overload: OpenTK.Platform.IWindowComponent.GetFullscreenDisplay* + seealso: + - linkId: OpenTK.Platform.IWindowComponent.SetMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowMode) + commentId: M:OpenTK.Platform.IWindowComponent.SetMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowMode) + - linkId: OpenTK.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle) + commentId: M:OpenTK.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle) + - linkId: OpenTK.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle,OpenTK.Platform.VideoMode) + commentId: M:OpenTK.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle,OpenTK.Platform.VideoMode) nameWithType.vb: IWindowComponent.GetFullscreenDisplay(WindowHandle, DisplayHandle) fullName.vb: OpenTK.Platform.IWindowComponent.GetFullscreenDisplay(OpenTK.Platform.WindowHandle, OpenTK.Platform.DisplayHandle) name.vb: GetFullscreenDisplay(WindowHandle, DisplayHandle) @@ -1501,7 +1462,7 @@ items: source: id: GetBorderStyle path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IWindowComponent.cs - startLine: 370 + startLine: 361 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -1518,10 +1479,9 @@ items: description: The border style of the window. content.vb: Function GetBorderStyle(handle As WindowHandle) As WindowBorderStyle overload: OpenTK.Platform.IWindowComponent.GetBorderStyle* - exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: handle is null. + seealso: + - linkId: OpenTK.Platform.IWindowComponent.SetBorderStyle(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowBorderStyle) + commentId: M:OpenTK.Platform.IWindowComponent.SetBorderStyle(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowBorderStyle) - uid: OpenTK.Platform.IWindowComponent.SetBorderStyle(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowBorderStyle) commentId: M:OpenTK.Platform.IWindowComponent.SetBorderStyle(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowBorderStyle) id: SetBorderStyle(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowBorderStyle) @@ -1536,7 +1496,7 @@ items: source: id: SetBorderStyle path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IWindowComponent.cs - startLine: 382 + startLine: 370 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -1554,15 +1514,143 @@ items: content.vb: Sub SetBorderStyle(handle As WindowHandle, style As WindowBorderStyle) overload: OpenTK.Platform.IWindowComponent.SetBorderStyle* exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: handle is null. - - type: System.ArgumentOutOfRangeException - commentId: T:System.ArgumentOutOfRangeException + - type: System.ComponentModel.InvalidEnumArgumentException + commentId: T:System.ComponentModel.InvalidEnumArgumentException description: style is an invalid value. - - type: OpenTK.Platform.PalNotImplementedException - commentId: T:OpenTK.Platform.PalNotImplementedException - description: Driver does not support the value set by style. See . + - type: System.PlatformNotSupportedException + commentId: T:System.PlatformNotSupportedException + description: Backend does not support the value set by style. See . +- uid: OpenTK.Platform.IWindowComponent.SupportsFramebufferTransparency(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.SupportsFramebufferTransparency(OpenTK.Platform.WindowHandle) + id: SupportsFramebufferTransparency(OpenTK.Platform.WindowHandle) + parent: OpenTK.Platform.IWindowComponent + langs: + - csharp + - vb + name: SupportsFramebufferTransparency(WindowHandle) + nameWithType: IWindowComponent.SupportsFramebufferTransparency(WindowHandle) + fullName: OpenTK.Platform.IWindowComponent.SupportsFramebufferTransparency(OpenTK.Platform.WindowHandle) + type: Method + source: + id: SupportsFramebufferTransparency + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IWindowComponent.cs + startLine: 395 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: >- + Returns true if is supported for this window. + +
Win32Always returns true.
macOSAlways returns true.
Linux/X11Returns true if the selected had true.
+ example: [] + syntax: + content: bool SupportsFramebufferTransparency(WindowHandle handle) + parameters: + - id: handle + type: OpenTK.Platform.WindowHandle + description: The window to query framebuffer transparency support for. + return: + type: System.Boolean + description: If with would work. + content.vb: Function SupportsFramebufferTransparency(handle As WindowHandle) As Boolean + overload: OpenTK.Platform.IWindowComponent.SupportsFramebufferTransparency* + seealso: + - linkId: OpenTK.Platform.IWindowComponent.SetTransparencyMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowTransparencyMode,System.Single) + commentId: M:OpenTK.Platform.IWindowComponent.SetTransparencyMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowTransparencyMode,System.Single) + - linkId: OpenTK.Platform.OpenGLGraphicsApiHints.SupportTransparentFramebufferX11 + commentId: P:OpenTK.Platform.OpenGLGraphicsApiHints.SupportTransparentFramebufferX11 + - linkId: OpenTK.Platform.ContextValues.SupportsFramebufferTransparency + commentId: F:OpenTK.Platform.ContextValues.SupportsFramebufferTransparency + - linkId: OpenTK.Platform.WindowTransparencyMode + commentId: T:OpenTK.Platform.WindowTransparencyMode +- uid: OpenTK.Platform.IWindowComponent.SetTransparencyMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowTransparencyMode,System.Single) + commentId: M:OpenTK.Platform.IWindowComponent.SetTransparencyMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowTransparencyMode,System.Single) + id: SetTransparencyMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowTransparencyMode,System.Single) + parent: OpenTK.Platform.IWindowComponent + langs: + - csharp + - vb + name: SetTransparencyMode(WindowHandle, WindowTransparencyMode, float) + nameWithType: IWindowComponent.SetTransparencyMode(WindowHandle, WindowTransparencyMode, float) + fullName: OpenTK.Platform.IWindowComponent.SetTransparencyMode(OpenTK.Platform.WindowHandle, OpenTK.Platform.WindowTransparencyMode, float) + type: Method + source: + id: SetTransparencyMode + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IWindowComponent.cs + startLine: 406 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Sets the transparency mode of the specified window. + example: [] + syntax: + content: void SetTransparencyMode(WindowHandle handle, WindowTransparencyMode transparencyMode, float opacity = 0.5) + parameters: + - id: handle + type: OpenTK.Platform.WindowHandle + description: The window to set the transparency mode of. + - id: transparencyMode + type: OpenTK.Platform.WindowTransparencyMode + description: The transparency mode to apply to the window. + - id: opacity + type: System.Single + description: The whole window opacity. Ignored if transparencyMode is not . + content.vb: Sub SetTransparencyMode(handle As WindowHandle, transparencyMode As WindowTransparencyMode, opacity As Single = 0.5) + overload: OpenTK.Platform.IWindowComponent.SetTransparencyMode* + seealso: + - linkId: OpenTK.Platform.WindowTransparencyMode + commentId: T:OpenTK.Platform.WindowTransparencyMode + - linkId: OpenTK.Platform.IWindowComponent.SupportsFramebufferTransparency(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.SupportsFramebufferTransparency(OpenTK.Platform.WindowHandle) + - linkId: OpenTK.Platform.IWindowComponent.GetTransparencyMode(OpenTK.Platform.WindowHandle,System.Single@) + commentId: M:OpenTK.Platform.IWindowComponent.GetTransparencyMode(OpenTK.Platform.WindowHandle,System.Single@) + nameWithType.vb: IWindowComponent.SetTransparencyMode(WindowHandle, WindowTransparencyMode, Single) + fullName.vb: OpenTK.Platform.IWindowComponent.SetTransparencyMode(OpenTK.Platform.WindowHandle, OpenTK.Platform.WindowTransparencyMode, Single) + name.vb: SetTransparencyMode(WindowHandle, WindowTransparencyMode, Single) +- uid: OpenTK.Platform.IWindowComponent.GetTransparencyMode(OpenTK.Platform.WindowHandle,System.Single@) + commentId: M:OpenTK.Platform.IWindowComponent.GetTransparencyMode(OpenTK.Platform.WindowHandle,System.Single@) + id: GetTransparencyMode(OpenTK.Platform.WindowHandle,System.Single@) + parent: OpenTK.Platform.IWindowComponent + langs: + - csharp + - vb + name: GetTransparencyMode(WindowHandle, out float) + nameWithType: IWindowComponent.GetTransparencyMode(WindowHandle, out float) + fullName: OpenTK.Platform.IWindowComponent.GetTransparencyMode(OpenTK.Platform.WindowHandle, out float) + type: Method + source: + id: GetTransparencyMode + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IWindowComponent.cs + startLine: 417 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Gets the transparency mode of the specified window. + example: [] + syntax: + content: WindowTransparencyMode GetTransparencyMode(WindowHandle handle, out float opacity) + parameters: + - id: handle + type: OpenTK.Platform.WindowHandle + description: The window to query the transparency mode of. + - id: opacity + type: System.Single + description: The window opacity if the transparency mode was , 0 otherwise. + return: + type: OpenTK.Platform.WindowTransparencyMode + description: The transparency mode of the specified window. + content.vb: Function GetTransparencyMode(handle As WindowHandle, opacity As Single) As WindowTransparencyMode + overload: OpenTK.Platform.IWindowComponent.GetTransparencyMode* + seealso: + - linkId: OpenTK.Platform.WindowTransparencyMode + commentId: T:OpenTK.Platform.WindowTransparencyMode + - linkId: OpenTK.Platform.IWindowComponent.SetTransparencyMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowTransparencyMode,System.Single) + commentId: M:OpenTK.Platform.IWindowComponent.SetTransparencyMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowTransparencyMode,System.Single) + - linkId: OpenTK.Platform.IWindowComponent.SupportsFramebufferTransparency(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.SupportsFramebufferTransparency(OpenTK.Platform.WindowHandle) + nameWithType.vb: IWindowComponent.GetTransparencyMode(WindowHandle, Single) + fullName.vb: OpenTK.Platform.IWindowComponent.GetTransparencyMode(OpenTK.Platform.WindowHandle, Single) + name.vb: GetTransparencyMode(WindowHandle, Single) - uid: OpenTK.Platform.IWindowComponent.SetAlwaysOnTop(OpenTK.Platform.WindowHandle,System.Boolean) commentId: M:OpenTK.Platform.IWindowComponent.SetAlwaysOnTop(OpenTK.Platform.WindowHandle,System.Boolean) id: SetAlwaysOnTop(OpenTK.Platform.WindowHandle,System.Boolean) @@ -1577,7 +1665,7 @@ items: source: id: SetAlwaysOnTop path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IWindowComponent.cs - startLine: 389 + startLine: 425 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -1594,6 +1682,9 @@ items: description: Whether the window should be always on top or not. content.vb: Sub SetAlwaysOnTop(handle As WindowHandle, floating As Boolean) overload: OpenTK.Platform.IWindowComponent.SetAlwaysOnTop* + seealso: + - linkId: OpenTK.Platform.IWindowComponent.IsAlwaysOnTop(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.IsAlwaysOnTop(OpenTK.Platform.WindowHandle) nameWithType.vb: IWindowComponent.SetAlwaysOnTop(WindowHandle, Boolean) fullName.vb: OpenTK.Platform.IWindowComponent.SetAlwaysOnTop(OpenTK.Platform.WindowHandle, Boolean) name.vb: SetAlwaysOnTop(WindowHandle, Boolean) @@ -1611,7 +1702,7 @@ items: source: id: IsAlwaysOnTop path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IWindowComponent.cs - startLine: 396 + startLine: 433 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -1628,6 +1719,9 @@ items: description: Whether the window is always on top or not. content.vb: Function IsAlwaysOnTop(handle As WindowHandle) As Boolean overload: OpenTK.Platform.IWindowComponent.IsAlwaysOnTop* + seealso: + - linkId: OpenTK.Platform.IWindowComponent.SetAlwaysOnTop(OpenTK.Platform.WindowHandle,System.Boolean) + commentId: M:OpenTK.Platform.IWindowComponent.SetAlwaysOnTop(OpenTK.Platform.WindowHandle,System.Boolean) - uid: OpenTK.Platform.IWindowComponent.SetHitTestCallback(OpenTK.Platform.WindowHandle,OpenTK.Platform.HitTest) commentId: M:OpenTK.Platform.IWindowComponent.SetHitTestCallback(OpenTK.Platform.WindowHandle,OpenTK.Platform.HitTest) id: SetHitTestCallback(OpenTK.Platform.WindowHandle,OpenTK.Platform.HitTest) @@ -1642,7 +1736,7 @@ items: source: id: SetHitTestCallback path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IWindowComponent.cs - startLine: 408 + startLine: 447 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -1669,6 +1763,11 @@ items: description: The hit test delegate. content.vb: Sub SetHitTestCallback(handle As WindowHandle, test As HitTest) overload: OpenTK.Platform.IWindowComponent.SetHitTestCallback* + seealso: + - linkId: OpenTK.Platform.HitTest + commentId: T:OpenTK.Platform.HitTest + - linkId: OpenTK.Platform.HitType + commentId: T:OpenTK.Platform.HitType nameWithType.vb: IWindowComponent.SetHitTestCallback(WindowHandle, HitTest) fullName.vb: OpenTK.Platform.IWindowComponent.SetHitTestCallback(OpenTK.Platform.WindowHandle, OpenTK.Platform.HitTest) name.vb: SetHitTestCallback(WindowHandle, HitTest) @@ -1686,7 +1785,7 @@ items: source: id: SetCursor path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IWindowComponent.cs - startLine: 418 + startLine: 456 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -1704,11 +1803,8 @@ items: content.vb: Sub SetCursor(handle As WindowHandle, cursor As CursorHandle) overload: OpenTK.Platform.IWindowComponent.SetCursor* exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: handle is null. - - type: OpenTK.Platform.PalNotImplementedException - commentId: T:OpenTK.Platform.PalNotImplementedException + - type: System.PlatformNotSupportedException + commentId: T:System.PlatformNotSupportedException description: Backend does not support setting the window mouse cursor. See . seealso: - linkId: OpenTK.Platform.IWindowComponent.CanSetCursor @@ -1730,7 +1826,7 @@ items: source: id: GetCursorCaptureMode path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IWindowComponent.cs - startLine: 425 + startLine: 465 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -1747,6 +1843,11 @@ items: description: The current cursor capture mode. content.vb: Function GetCursorCaptureMode(handle As WindowHandle) As CursorCaptureMode overload: OpenTK.Platform.IWindowComponent.GetCursorCaptureMode* + seealso: + - linkId: OpenTK.Platform.IWindowComponent.CanCaptureCursor + commentId: P:OpenTK.Platform.IWindowComponent.CanCaptureCursor + - linkId: OpenTK.Platform.IWindowComponent.SetCursorCaptureMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorCaptureMode) + commentId: M:OpenTK.Platform.IWindowComponent.SetCursorCaptureMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorCaptureMode) - uid: OpenTK.Platform.IWindowComponent.SetCursorCaptureMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorCaptureMode) commentId: M:OpenTK.Platform.IWindowComponent.SetCursorCaptureMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorCaptureMode) id: SetCursorCaptureMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorCaptureMode) @@ -1761,7 +1862,7 @@ items: source: id: SetCursorCaptureMode path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IWindowComponent.cs - startLine: 434 + startLine: 475 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -1784,6 +1885,8 @@ items: seealso: - linkId: OpenTK.Platform.IWindowComponent.CanCaptureCursor commentId: P:OpenTK.Platform.IWindowComponent.CanCaptureCursor + - linkId: OpenTK.Platform.IWindowComponent.SetCursorCaptureMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorCaptureMode) + commentId: M:OpenTK.Platform.IWindowComponent.SetCursorCaptureMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorCaptureMode) - uid: OpenTK.Platform.IWindowComponent.IsFocused(OpenTK.Platform.WindowHandle) commentId: M:OpenTK.Platform.IWindowComponent.IsFocused(OpenTK.Platform.WindowHandle) id: IsFocused(OpenTK.Platform.WindowHandle) @@ -1798,7 +1901,7 @@ items: source: id: IsFocused path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IWindowComponent.cs - startLine: 441 + startLine: 484 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -1815,6 +1918,11 @@ items: description: If the window has input focus. content.vb: Function IsFocused(handle As WindowHandle) As Boolean overload: OpenTK.Platform.IWindowComponent.IsFocused* + seealso: + - linkId: OpenTK.Platform.IWindowComponent.FocusWindow(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.FocusWindow(OpenTK.Platform.WindowHandle) + - linkId: OpenTK.Platform.IWindowComponent.RequestAttention(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.RequestAttention(OpenTK.Platform.WindowHandle) - uid: OpenTK.Platform.IWindowComponent.FocusWindow(OpenTK.Platform.WindowHandle) commentId: M:OpenTK.Platform.IWindowComponent.FocusWindow(OpenTK.Platform.WindowHandle) id: FocusWindow(OpenTK.Platform.WindowHandle) @@ -1829,7 +1937,7 @@ items: source: id: FocusWindow path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IWindowComponent.cs - startLine: 447 + startLine: 492 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -1843,6 +1951,11 @@ items: description: Handle to the window to focus. content.vb: Sub FocusWindow(handle As WindowHandle) overload: OpenTK.Platform.IWindowComponent.FocusWindow* + seealso: + - linkId: OpenTK.Platform.IWindowComponent.IsFocused(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.IsFocused(OpenTK.Platform.WindowHandle) + - linkId: OpenTK.Platform.IWindowComponent.RequestAttention(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.RequestAttention(OpenTK.Platform.WindowHandle) - uid: OpenTK.Platform.IWindowComponent.RequestAttention(OpenTK.Platform.WindowHandle) commentId: M:OpenTK.Platform.IWindowComponent.RequestAttention(OpenTK.Platform.WindowHandle) id: RequestAttention(OpenTK.Platform.WindowHandle) @@ -1857,11 +1970,14 @@ items: source: id: RequestAttention path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IWindowComponent.cs - startLine: 453 + startLine: 500 assemblies: - OpenTK.Platform namespace: OpenTK.Platform - summary: Requests that the user pay attention to the window. + summary: >- + Requests that the user pay attention to the window. + + Usually by flashing the window icon. example: [] syntax: content: void RequestAttention(WindowHandle handle) @@ -1871,92 +1987,193 @@ items: description: A handle to the window that requests attention. content.vb: Sub RequestAttention(handle As WindowHandle) overload: OpenTK.Platform.IWindowComponent.RequestAttention* -- uid: OpenTK.Platform.IWindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) - commentId: M:OpenTK.Platform.IWindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) - id: ScreenToClient(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) + seealso: + - linkId: OpenTK.Platform.IWindowComponent.FocusWindow(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.FocusWindow(OpenTK.Platform.WindowHandle) +- uid: OpenTK.Platform.IWindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + commentId: M:OpenTK.Platform.IWindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + id: ScreenToClient(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) parent: OpenTK.Platform.IWindowComponent langs: - csharp - vb - name: ScreenToClient(WindowHandle, int, int, out int, out int) - nameWithType: IWindowComponent.ScreenToClient(WindowHandle, int, int, out int, out int) - fullName: OpenTK.Platform.IWindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle, int, int, out int, out int) + name: ScreenToClient(WindowHandle, Vector2, out Vector2) + nameWithType: IWindowComponent.ScreenToClient(WindowHandle, Vector2, out Vector2) + fullName: OpenTK.Platform.IWindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2, out OpenTK.Mathematics.Vector2) type: Method source: id: ScreenToClient path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IWindowComponent.cs - startLine: 464 + startLine: 514 assemblies: - OpenTK.Platform namespace: OpenTK.Platform summary: Converts screen coordinates to window relative coordinates. + remarks: >- + On platforms that support non-integer screen and client space coordinates (macOS) this function will return full precision results, + + on integer based platforms (win32 and X11) the input coordinates will (if necessary) be truncated to ints before conversion. example: [] syntax: - content: void ScreenToClient(WindowHandle handle, int x, int y, out int clientX, out int clientY) + content: void ScreenToClient(WindowHandle handle, Vector2 screen, out Vector2 client) parameters: - id: handle type: OpenTK.Platform.WindowHandle description: The window handle. - - id: x - type: System.Int32 - description: The screen x coordinate. - - id: y - type: System.Int32 - description: The screen y coordinate. - - id: clientX - type: System.Int32 - description: The client x coordinate. - - id: clientY - type: System.Int32 - description: The client y coordinate. - content.vb: Sub ScreenToClient(handle As WindowHandle, x As Integer, y As Integer, clientX As Integer, clientY As Integer) + - id: screen + type: OpenTK.Mathematics.Vector2 + description: The screen coordinate. + - id: client + type: OpenTK.Mathematics.Vector2 + description: The client coordinate. + content.vb: Sub ScreenToClient(handle As WindowHandle, screen As Vector2, client As Vector2) overload: OpenTK.Platform.IWindowComponent.ScreenToClient* - nameWithType.vb: IWindowComponent.ScreenToClient(WindowHandle, Integer, Integer, Integer, Integer) - fullName.vb: OpenTK.Platform.IWindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle, Integer, Integer, Integer, Integer) - name.vb: ScreenToClient(WindowHandle, Integer, Integer, Integer, Integer) -- uid: OpenTK.Platform.IWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) - commentId: M:OpenTK.Platform.IWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) - id: ClientToScreen(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) + seealso: + - linkId: OpenTK.Platform.IWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + commentId: M:OpenTK.Platform.IWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + - linkId: OpenTK.Platform.IWindowComponent.ClientToFramebuffer(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + commentId: M:OpenTK.Platform.IWindowComponent.ClientToFramebuffer(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + nameWithType.vb: IWindowComponent.ScreenToClient(WindowHandle, Vector2, Vector2) + fullName.vb: OpenTK.Platform.IWindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2, OpenTK.Mathematics.Vector2) + name.vb: ScreenToClient(WindowHandle, Vector2, Vector2) +- uid: OpenTK.Platform.IWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + commentId: M:OpenTK.Platform.IWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + id: ClientToScreen(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) parent: OpenTK.Platform.IWindowComponent langs: - csharp - vb - name: ClientToScreen(WindowHandle, int, int, out int, out int) - nameWithType: IWindowComponent.ClientToScreen(WindowHandle, int, int, out int, out int) - fullName: OpenTK.Platform.IWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle, int, int, out int, out int) + name: ClientToScreen(WindowHandle, Vector2, out Vector2) + nameWithType: IWindowComponent.ClientToScreen(WindowHandle, Vector2, out Vector2) + fullName: OpenTK.Platform.IWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2, out OpenTK.Mathematics.Vector2) type: Method source: id: ClientToScreen path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IWindowComponent.cs - startLine: 475 + startLine: 528 assemblies: - OpenTK.Platform namespace: OpenTK.Platform summary: Converts window relative coordinates to screen coordinates. + remarks: >- + On platforms that support non-integer screen and client space coordinates (macOS) this function will return full precision results, + + on integer based platforms (win32 and X11) the input coordinates will (if necessary) be truncated to ints before conversion. example: [] syntax: - content: void ClientToScreen(WindowHandle handle, int clientX, int clientY, out int x, out int y) + content: void ClientToScreen(WindowHandle handle, Vector2 client, out Vector2 screen) parameters: - id: handle type: OpenTK.Platform.WindowHandle description: The window handle. - - id: clientX - type: System.Int32 - description: The client x coordinate. - - id: clientY - type: System.Int32 - description: The client y coordinate. - - id: x - type: System.Int32 - description: The screen x coordinate. - - id: y - type: System.Int32 - description: The screen y coordinate. - content.vb: Sub ClientToScreen(handle As WindowHandle, clientX As Integer, clientY As Integer, x As Integer, y As Integer) + - id: client + type: OpenTK.Mathematics.Vector2 + description: The client coordinate. + - id: screen + type: OpenTK.Mathematics.Vector2 + description: The screen coordinate. + content.vb: Sub ClientToScreen(handle As WindowHandle, client As Vector2, screen As Vector2) overload: OpenTK.Platform.IWindowComponent.ClientToScreen* - nameWithType.vb: IWindowComponent.ClientToScreen(WindowHandle, Integer, Integer, Integer, Integer) - fullName.vb: OpenTK.Platform.IWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle, Integer, Integer, Integer, Integer) - name.vb: ClientToScreen(WindowHandle, Integer, Integer, Integer, Integer) + seealso: + - linkId: OpenTK.Platform.IWindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + commentId: M:OpenTK.Platform.IWindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + - linkId: OpenTK.Platform.IWindowComponent.ClientToFramebuffer(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + commentId: M:OpenTK.Platform.IWindowComponent.ClientToFramebuffer(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + nameWithType.vb: IWindowComponent.ClientToScreen(WindowHandle, Vector2, Vector2) + fullName.vb: OpenTK.Platform.IWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2, OpenTK.Mathematics.Vector2) + name.vb: ClientToScreen(WindowHandle, Vector2, Vector2) +- uid: OpenTK.Platform.IWindowComponent.ClientToFramebuffer(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + commentId: M:OpenTK.Platform.IWindowComponent.ClientToFramebuffer(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + id: ClientToFramebuffer(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + parent: OpenTK.Platform.IWindowComponent + langs: + - csharp + - vb + name: ClientToFramebuffer(WindowHandle, Vector2, out Vector2) + nameWithType: IWindowComponent.ClientToFramebuffer(WindowHandle, Vector2, out Vector2) + fullName: OpenTK.Platform.IWindowComponent.ClientToFramebuffer(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2, out OpenTK.Mathematics.Vector2) + type: Method + source: + id: ClientToFramebuffer + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IWindowComponent.cs + startLine: 542 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Converts window relative coordinates to framebuffer coordinates. + remarks: >- + On platforms that support non-integer screen and client space coordinates (macOS) this function will return full precision results, + + on integer based platforms (win32 and X11) the input coordinates will (if necessary) be truncated to ints before conversion. + example: [] + syntax: + content: void ClientToFramebuffer(WindowHandle handle, Vector2 client, out Vector2 framebuffer) + parameters: + - id: handle + type: OpenTK.Platform.WindowHandle + description: Handle of the window whose coordinate system to use. + - id: client + type: OpenTK.Mathematics.Vector2 + description: The client coordinate. + - id: framebuffer + type: OpenTK.Mathematics.Vector2 + description: The framebuffer coordinate. + content.vb: Sub ClientToFramebuffer(handle As WindowHandle, client As Vector2, framebuffer As Vector2) + overload: OpenTK.Platform.IWindowComponent.ClientToFramebuffer* + seealso: + - linkId: OpenTK.Platform.IWindowComponent.FramebufferToClient(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + commentId: M:OpenTK.Platform.IWindowComponent.FramebufferToClient(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + - linkId: OpenTK.Platform.IWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + commentId: M:OpenTK.Platform.IWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + nameWithType.vb: IWindowComponent.ClientToFramebuffer(WindowHandle, Vector2, Vector2) + fullName.vb: OpenTK.Platform.IWindowComponent.ClientToFramebuffer(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2, OpenTK.Mathematics.Vector2) + name.vb: ClientToFramebuffer(WindowHandle, Vector2, Vector2) +- uid: OpenTK.Platform.IWindowComponent.FramebufferToClient(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + commentId: M:OpenTK.Platform.IWindowComponent.FramebufferToClient(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + id: FramebufferToClient(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + parent: OpenTK.Platform.IWindowComponent + langs: + - csharp + - vb + name: FramebufferToClient(WindowHandle, Vector2, out Vector2) + nameWithType: IWindowComponent.FramebufferToClient(WindowHandle, Vector2, out Vector2) + fullName: OpenTK.Platform.IWindowComponent.FramebufferToClient(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2, out OpenTK.Mathematics.Vector2) + type: Method + source: + id: FramebufferToClient + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IWindowComponent.cs + startLine: 556 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Converts framebuffer coordinates to framebuffer coordinates. + remarks: >- + On platforms that support non-integer screen and client space coordinates (macOS) this function will return full precision results, + + on integer based platforms (win32 and X11) the input coordinates will (if necessary) be truncated to ints before conversion. + example: [] + syntax: + content: void FramebufferToClient(WindowHandle handle, Vector2 framebuffer, out Vector2 client) + parameters: + - id: handle + type: OpenTK.Platform.WindowHandle + description: Handle of the window whose coordinate system to use. + - id: framebuffer + type: OpenTK.Mathematics.Vector2 + description: The framebuffer coordinate. + - id: client + type: OpenTK.Mathematics.Vector2 + description: The client coordinate. + content.vb: Sub FramebufferToClient(handle As WindowHandle, framebuffer As Vector2, client As Vector2) + overload: OpenTK.Platform.IWindowComponent.FramebufferToClient* + seealso: + - linkId: OpenTK.Platform.IWindowComponent.ClientToFramebuffer(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + commentId: M:OpenTK.Platform.IWindowComponent.ClientToFramebuffer(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + - linkId: OpenTK.Platform.IWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + commentId: M:OpenTK.Platform.IWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + nameWithType.vb: IWindowComponent.FramebufferToClient(WindowHandle, Vector2, Vector2) + fullName.vb: OpenTK.Platform.IWindowComponent.FramebufferToClient(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2, OpenTK.Mathematics.Vector2) + name.vb: FramebufferToClient(WindowHandle, Vector2, Vector2) - uid: OpenTK.Platform.IWindowComponent.GetScaleFactor(OpenTK.Platform.WindowHandle,System.Single@,System.Single@) commentId: M:OpenTK.Platform.IWindowComponent.GetScaleFactor(OpenTK.Platform.WindowHandle,System.Single@,System.Single@) id: GetScaleFactor(OpenTK.Platform.WindowHandle,System.Single@,System.Single@) @@ -1971,7 +2188,7 @@ items: source: id: GetScaleFactor path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IWindowComponent.cs - startLine: 484 + startLine: 565 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -1998,6 +2215,12 @@ items: fullName.vb: OpenTK.Platform.IWindowComponent.GetScaleFactor(OpenTK.Platform.WindowHandle, Single, Single) name.vb: GetScaleFactor(WindowHandle, Single, Single) references: +- uid: OpenTK.Platform.Toolkit.Window + commentId: P:OpenTK.Platform.Toolkit.Window + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Window + name: Window + nameWithType: Toolkit.Window + fullName: OpenTK.Platform.Toolkit.Window - uid: OpenTK.Platform commentId: N:OpenTK.Platform href: OpenTK.html @@ -2066,6 +2289,25 @@ references: name: ToolkitOptions href: OpenTK.Platform.ToolkitOptions.html - name: ) +- uid: OpenTK.Platform.IPalComponent.Uninitialize + commentId: M:OpenTK.Platform.IPalComponent.Uninitialize + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + name: Uninitialize() + nameWithType: IPalComponent.Uninitialize() + fullName: OpenTK.Platform.IPalComponent.Uninitialize() + spec.csharp: + - uid: OpenTK.Platform.IPalComponent.Uninitialize + name: Uninitialize + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + - name: ( + - name: ) + spec.vb: + - uid: OpenTK.Platform.IPalComponent.Uninitialize + name: Uninitialize + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + - name: ( + - name: ) - uid: OpenTK.Platform.IPalComponent commentId: T:OpenTK.Platform.IPalComponent parent: OpenTK.Platform @@ -2108,6 +2350,31 @@ references: name: IconHandle href: OpenTK.Platform.IconHandle.html - name: ) +- uid: OpenTK.Platform.IWindowComponent.GetIcon(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.GetIcon(OpenTK.Platform.WindowHandle) + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetIcon_OpenTK_Platform_WindowHandle_ + name: GetIcon(WindowHandle) + nameWithType: IWindowComponent.GetIcon(WindowHandle) + fullName: OpenTK.Platform.IWindowComponent.GetIcon(OpenTK.Platform.WindowHandle) + spec.csharp: + - uid: OpenTK.Platform.IWindowComponent.GetIcon(OpenTK.Platform.WindowHandle) + name: GetIcon + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetIcon_OpenTK_Platform_WindowHandle_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IWindowComponent.GetIcon(OpenTK.Platform.WindowHandle) + name: GetIcon + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetIcon_OpenTK_Platform_WindowHandle_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ) - uid: OpenTK.Platform.IWindowComponent.CanSetIcon* commentId: Overload:OpenTK.Platform.IWindowComponent.CanSetIcon href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_CanSetIcon @@ -2447,12 +2714,37 @@ references: name: ProcessEvents nameWithType: IWindowComponent.ProcessEvents fullName: OpenTK.Platform.IWindowComponent.ProcessEvents -- uid: OpenTK.Platform.IWindowComponent.Create* - commentId: Overload:OpenTK.Platform.IWindowComponent.Create - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_Create_OpenTK_Platform_GraphicsApiHints_ - name: Create - nameWithType: IWindowComponent.Create - fullName: OpenTK.Platform.IWindowComponent.Create +- uid: OpenTK.Platform.IWindowComponent.Destroy(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.Destroy(OpenTK.Platform.WindowHandle) + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_Destroy_OpenTK_Platform_WindowHandle_ + name: Destroy(WindowHandle) + nameWithType: IWindowComponent.Destroy(WindowHandle) + fullName: OpenTK.Platform.IWindowComponent.Destroy(OpenTK.Platform.WindowHandle) + spec.csharp: + - uid: OpenTK.Platform.IWindowComponent.Destroy(OpenTK.Platform.WindowHandle) + name: Destroy + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_Destroy_OpenTK_Platform_WindowHandle_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IWindowComponent.Destroy(OpenTK.Platform.WindowHandle) + name: Destroy + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_Destroy_OpenTK_Platform_WindowHandle_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ) +- uid: OpenTK.Platform.IWindowComponent.Create* + commentId: Overload:OpenTK.Platform.IWindowComponent.Create + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_Create_OpenTK_Platform_GraphicsApiHints_ + name: Create + nameWithType: IWindowComponent.Create + fullName: OpenTK.Platform.IWindowComponent.Create - uid: OpenTK.Platform.GraphicsApiHints commentId: T:OpenTK.Platform.GraphicsApiHints parent: OpenTK.Platform @@ -2467,6 +2759,31 @@ references: name: WindowHandle nameWithType: WindowHandle fullName: OpenTK.Platform.WindowHandle +- uid: OpenTK.Platform.IWindowComponent.Create(OpenTK.Platform.GraphicsApiHints) + commentId: M:OpenTK.Platform.IWindowComponent.Create(OpenTK.Platform.GraphicsApiHints) + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_Create_OpenTK_Platform_GraphicsApiHints_ + name: Create(GraphicsApiHints) + nameWithType: IWindowComponent.Create(GraphicsApiHints) + fullName: OpenTK.Platform.IWindowComponent.Create(OpenTK.Platform.GraphicsApiHints) + spec.csharp: + - uid: OpenTK.Platform.IWindowComponent.Create(OpenTK.Platform.GraphicsApiHints) + name: Create + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_Create_OpenTK_Platform_GraphicsApiHints_ + - name: ( + - uid: OpenTK.Platform.GraphicsApiHints + name: GraphicsApiHints + href: OpenTK.Platform.GraphicsApiHints.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IWindowComponent.Create(OpenTK.Platform.GraphicsApiHints) + name: Create + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_Create_OpenTK_Platform_GraphicsApiHints_ + - name: ( + - uid: OpenTK.Platform.GraphicsApiHints + name: GraphicsApiHints + href: OpenTK.Platform.GraphicsApiHints.html + - name: ) - uid: OpenTK.Platform.IWindowComponent.IsWindowDestroyed(OpenTK.Platform.WindowHandle) commentId: M:OpenTK.Platform.IWindowComponent.IsWindowDestroyed(OpenTK.Platform.WindowHandle) parent: OpenTK.Platform.IWindowComponent @@ -2492,50 +2809,59 @@ references: name: WindowHandle href: OpenTK.Platform.WindowHandle.html - name: ) -- uid: System.ArgumentNullException - commentId: T:System.ArgumentNullException - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.argumentnullexception - name: ArgumentNullException - nameWithType: ArgumentNullException - fullName: System.ArgumentNullException - uid: OpenTK.Platform.IWindowComponent.Destroy* commentId: Overload:OpenTK.Platform.IWindowComponent.Destroy href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_Destroy_OpenTK_Platform_WindowHandle_ name: Destroy nameWithType: IWindowComponent.Destroy fullName: OpenTK.Platform.IWindowComponent.Destroy -- uid: OpenTK.Platform.IWindowComponent.Destroy(OpenTK.Platform.WindowHandle) - commentId: M:OpenTK.Platform.IWindowComponent.Destroy(OpenTK.Platform.WindowHandle) +- uid: OpenTK.Platform.IWindowComponent.IsWindowDestroyed* + commentId: Overload:OpenTK.Platform.IWindowComponent.IsWindowDestroyed + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_IsWindowDestroyed_OpenTK_Platform_WindowHandle_ + name: IsWindowDestroyed + nameWithType: IWindowComponent.IsWindowDestroyed + fullName: OpenTK.Platform.IWindowComponent.IsWindowDestroyed +- uid: OpenTK.Platform.IWindowComponent.SetTitle(OpenTK.Platform.WindowHandle,System.String) + commentId: M:OpenTK.Platform.IWindowComponent.SetTitle(OpenTK.Platform.WindowHandle,System.String) parent: OpenTK.Platform.IWindowComponent - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_Destroy_OpenTK_Platform_WindowHandle_ - name: Destroy(WindowHandle) - nameWithType: IWindowComponent.Destroy(WindowHandle) - fullName: OpenTK.Platform.IWindowComponent.Destroy(OpenTK.Platform.WindowHandle) + isExternal: true + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetTitle_OpenTK_Platform_WindowHandle_System_String_ + name: SetTitle(WindowHandle, string) + nameWithType: IWindowComponent.SetTitle(WindowHandle, string) + fullName: OpenTK.Platform.IWindowComponent.SetTitle(OpenTK.Platform.WindowHandle, string) + nameWithType.vb: IWindowComponent.SetTitle(WindowHandle, String) + fullName.vb: OpenTK.Platform.IWindowComponent.SetTitle(OpenTK.Platform.WindowHandle, String) + name.vb: SetTitle(WindowHandle, String) spec.csharp: - - uid: OpenTK.Platform.IWindowComponent.Destroy(OpenTK.Platform.WindowHandle) - name: Destroy - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_Destroy_OpenTK_Platform_WindowHandle_ + - uid: OpenTK.Platform.IWindowComponent.SetTitle(OpenTK.Platform.WindowHandle,System.String) + name: SetTitle + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetTitle_OpenTK_Platform_WindowHandle_System_String_ - name: ( - uid: OpenTK.Platform.WindowHandle name: WindowHandle href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: System.String + name: string + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string - name: ) spec.vb: - - uid: OpenTK.Platform.IWindowComponent.Destroy(OpenTK.Platform.WindowHandle) - name: Destroy - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_Destroy_OpenTK_Platform_WindowHandle_ + - uid: OpenTK.Platform.IWindowComponent.SetTitle(OpenTK.Platform.WindowHandle,System.String) + name: SetTitle + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetTitle_OpenTK_Platform_WindowHandle_System_String_ - name: ( - uid: OpenTK.Platform.WindowHandle name: WindowHandle href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: System.String + name: String + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string - name: ) -- uid: OpenTK.Platform.IWindowComponent.IsWindowDestroyed* - commentId: Overload:OpenTK.Platform.IWindowComponent.IsWindowDestroyed - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_IsWindowDestroyed_OpenTK_Platform_WindowHandle_ - name: IsWindowDestroyed - nameWithType: IWindowComponent.IsWindowDestroyed - fullName: OpenTK.Platform.IWindowComponent.IsWindowDestroyed - uid: OpenTK.Platform.IWindowComponent.GetTitle* commentId: Overload:OpenTK.Platform.IWindowComponent.GetTitle href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetTitle_OpenTK_Platform_WindowHandle_ @@ -2553,6 +2879,31 @@ references: nameWithType.vb: String fullName.vb: String name.vb: String +- uid: OpenTK.Platform.IWindowComponent.GetTitle(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.GetTitle(OpenTK.Platform.WindowHandle) + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetTitle_OpenTK_Platform_WindowHandle_ + name: GetTitle(WindowHandle) + nameWithType: IWindowComponent.GetTitle(WindowHandle) + fullName: OpenTK.Platform.IWindowComponent.GetTitle(OpenTK.Platform.WindowHandle) + spec.csharp: + - uid: OpenTK.Platform.IWindowComponent.GetTitle(OpenTK.Platform.WindowHandle) + name: GetTitle + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetTitle_OpenTK_Platform_WindowHandle_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IWindowComponent.GetTitle(OpenTK.Platform.WindowHandle) + name: GetTitle + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetTitle_OpenTK_Platform_WindowHandle_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ) - uid: OpenTK.Platform.IWindowComponent.SetTitle* commentId: Overload:OpenTK.Platform.IWindowComponent.SetTitle href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetTitle_OpenTK_Platform_WindowHandle_System_String_ @@ -2566,12 +2917,13 @@ references: name: CanSetIcon nameWithType: IWindowComponent.CanSetIcon fullName: OpenTK.Platform.IWindowComponent.CanSetIcon -- uid: OpenTK.Platform.PalNotImplementedException - commentId: T:OpenTK.Platform.PalNotImplementedException - href: OpenTK.Platform.PalNotImplementedException.html - name: PalNotImplementedException - nameWithType: PalNotImplementedException - fullName: OpenTK.Platform.PalNotImplementedException +- uid: System.PlatformNotSupportedException + commentId: T:System.PlatformNotSupportedException + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.platformnotsupportedexception + name: PlatformNotSupportedException + nameWithType: PlatformNotSupportedException + fullName: System.PlatformNotSupportedException - uid: OpenTK.Platform.IWindowComponent.GetIcon* commentId: Overload:OpenTK.Platform.IWindowComponent.GetIcon href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetIcon_OpenTK_Platform_WindowHandle_ @@ -2591,38 +2943,91 @@ references: name: SetIcon nameWithType: IWindowComponent.SetIcon fullName: OpenTK.Platform.IWindowComponent.SetIcon +- uid: OpenTK.Platform.IWindowComponent.SetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) + commentId: M:OpenTK.Platform.IWindowComponent.SetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetPosition_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2i_ + name: SetPosition(WindowHandle, Vector2i) + nameWithType: IWindowComponent.SetPosition(WindowHandle, Vector2i) + fullName: OpenTK.Platform.IWindowComponent.SetPosition(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2i) + spec.csharp: + - uid: OpenTK.Platform.IWindowComponent.SetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) + name: SetPosition + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetPosition_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2i_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: OpenTK.Mathematics.Vector2i + name: Vector2i + href: OpenTK.Mathematics.Vector2i.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IWindowComponent.SetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) + name: SetPosition + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetPosition_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2i_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: OpenTK.Mathematics.Vector2i + name: Vector2i + href: OpenTK.Mathematics.Vector2i.html + - name: ) - uid: OpenTK.Platform.IWindowComponent.GetPosition* commentId: Overload:OpenTK.Platform.IWindowComponent.GetPosition - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetPosition_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetPosition_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2i__ name: GetPosition nameWithType: IWindowComponent.GetPosition fullName: OpenTK.Platform.IWindowComponent.GetPosition -- uid: System.Int32 - commentId: T:System.Int32 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - name: int - nameWithType: int - fullName: int - nameWithType.vb: Integer - fullName.vb: Integer - name.vb: Integer +- uid: OpenTK.Mathematics.Vector2i + commentId: T:OpenTK.Mathematics.Vector2i + parent: OpenTK.Mathematics + href: OpenTK.Mathematics.Vector2i.html + name: Vector2i + nameWithType: Vector2i + fullName: OpenTK.Mathematics.Vector2i +- uid: OpenTK.Mathematics + commentId: N:OpenTK.Mathematics + href: OpenTK.html + name: OpenTK.Mathematics + nameWithType: OpenTK.Mathematics + fullName: OpenTK.Mathematics + spec.csharp: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Mathematics + name: Mathematics + href: OpenTK.Mathematics.html + spec.vb: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Mathematics + name: Mathematics + href: OpenTK.Mathematics.html - uid: OpenTK.Platform.IWindowComponent.SetPosition* commentId: Overload:OpenTK.Platform.IWindowComponent.SetPosition - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetPosition_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetPosition_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2i_ name: SetPosition nameWithType: IWindowComponent.SetPosition fullName: OpenTK.Platform.IWindowComponent.SetPosition - uid: OpenTK.Platform.IWindowComponent.GetSize* commentId: Overload:OpenTK.Platform.IWindowComponent.GetSize - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetSize_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetSize_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2i__ name: GetSize nameWithType: IWindowComponent.GetSize fullName: OpenTK.Platform.IWindowComponent.GetSize - uid: OpenTK.Platform.IWindowComponent.SetSize* commentId: Overload:OpenTK.Platform.IWindowComponent.SetSize - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetSize_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetSize_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2i_ name: SetSize nameWithType: IWindowComponent.SetSize fullName: OpenTK.Platform.IWindowComponent.SetSize @@ -2632,6 +3037,17 @@ references: name: GetBounds nameWithType: IWindowComponent.GetBounds fullName: OpenTK.Platform.IWindowComponent.GetBounds +- uid: System.Int32 + commentId: T:System.Int32 + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + name: int + nameWithType: int + fullName: int + nameWithType.vb: Integer + fullName.vb: Integer + name.vb: Integer - uid: OpenTK.Platform.IWindowComponent.SetBounds* commentId: Overload:OpenTK.Platform.IWindowComponent.SetBounds href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetBounds_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_System_Int32_System_Int32_ @@ -2640,25 +3056,25 @@ references: fullName: OpenTK.Platform.IWindowComponent.SetBounds - uid: OpenTK.Platform.IWindowComponent.GetClientPosition* commentId: Overload:OpenTK.Platform.IWindowComponent.GetClientPosition - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetClientPosition_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetClientPosition_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2i__ name: GetClientPosition nameWithType: IWindowComponent.GetClientPosition fullName: OpenTK.Platform.IWindowComponent.GetClientPosition - uid: OpenTK.Platform.IWindowComponent.SetClientPosition* commentId: Overload:OpenTK.Platform.IWindowComponent.SetClientPosition - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetClientPosition_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetClientPosition_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2i_ name: SetClientPosition nameWithType: IWindowComponent.SetClientPosition fullName: OpenTK.Platform.IWindowComponent.SetClientPosition - uid: OpenTK.Platform.IWindowComponent.GetClientSize* commentId: Overload:OpenTK.Platform.IWindowComponent.GetClientSize - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetClientSize_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetClientSize_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2i__ name: GetClientSize nameWithType: IWindowComponent.GetClientSize fullName: OpenTK.Platform.IWindowComponent.GetClientSize - uid: OpenTK.Platform.IWindowComponent.SetClientSize* commentId: Overload:OpenTK.Platform.IWindowComponent.SetClientSize - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetClientSize_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetClientSize_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2i_ name: SetClientSize nameWithType: IWindowComponent.SetClientSize fullName: OpenTK.Platform.IWindowComponent.SetClientSize @@ -2676,7 +3092,7 @@ references: fullName: OpenTK.Platform.IWindowComponent.SetClientBounds - uid: OpenTK.Platform.IWindowComponent.GetFramebufferSize* commentId: Overload:OpenTK.Platform.IWindowComponent.GetFramebufferSize - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetFramebufferSize_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetFramebufferSize_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2i__ name: GetFramebufferSize nameWithType: IWindowComponent.GetFramebufferSize fullName: OpenTK.Platform.IWindowComponent.GetFramebufferSize @@ -2762,6 +3178,12 @@ references: name: CanGetDisplay nameWithType: IWindowComponent.CanGetDisplay fullName: OpenTK.Platform.IWindowComponent.CanGetDisplay +- uid: OpenTK.Platform.PalNotImplementedException + commentId: T:OpenTK.Platform.PalNotImplementedException + href: OpenTK.Platform.PalNotImplementedException.html + name: PalNotImplementedException + nameWithType: PalNotImplementedException + fullName: OpenTK.Platform.PalNotImplementedException - uid: OpenTK.Platform.IWindowComponent.GetDisplay* commentId: Overload:OpenTK.Platform.IWindowComponent.GetDisplay href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetDisplay_OpenTK_Platform_WindowHandle_ @@ -2788,25 +3210,6 @@ references: name: WindowMode nameWithType: WindowMode fullName: OpenTK.Platform.WindowMode -- uid: OpenTK.Platform.IWindowComponent.SupportedModes - commentId: P:OpenTK.Platform.IWindowComponent.SupportedModes - parent: OpenTK.Platform.IWindowComponent - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SupportedModes - name: SupportedModes - nameWithType: IWindowComponent.SupportedModes - fullName: OpenTK.Platform.IWindowComponent.SupportedModes -- uid: OpenTK.Platform.WindowMode.WindowedFullscreen - commentId: F:OpenTK.Platform.WindowMode.WindowedFullscreen - href: OpenTK.Platform.WindowMode.html#OpenTK_Platform_WindowMode_WindowedFullscreen - name: WindowedFullscreen - nameWithType: WindowMode.WindowedFullscreen - fullName: OpenTK.Platform.WindowMode.WindowedFullscreen -- uid: OpenTK.Platform.WindowMode.ExclusiveFullscreen - commentId: F:OpenTK.Platform.WindowMode.ExclusiveFullscreen - href: OpenTK.Platform.WindowMode.html#OpenTK_Platform_WindowMode_ExclusiveFullscreen - name: ExclusiveFullscreen - nameWithType: WindowMode.ExclusiveFullscreen - fullName: OpenTK.Platform.WindowMode.ExclusiveFullscreen - uid: OpenTK.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle) commentId: M:OpenTK.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle) parent: OpenTK.Platform.IWindowComponent @@ -2887,19 +3290,73 @@ references: name: VideoMode href: OpenTK.Platform.VideoMode.html - name: ) -- uid: System.ArgumentOutOfRangeException - commentId: T:System.ArgumentOutOfRangeException +- uid: OpenTK.Platform.WindowMode.WindowedFullscreen + commentId: F:OpenTK.Platform.WindowMode.WindowedFullscreen + href: OpenTK.Platform.WindowMode.html#OpenTK_Platform_WindowMode_WindowedFullscreen + name: WindowedFullscreen + nameWithType: WindowMode.WindowedFullscreen + fullName: OpenTK.Platform.WindowMode.WindowedFullscreen +- uid: OpenTK.Platform.WindowMode.ExclusiveFullscreen + commentId: F:OpenTK.Platform.WindowMode.ExclusiveFullscreen + href: OpenTK.Platform.WindowMode.html#OpenTK_Platform_WindowMode_ExclusiveFullscreen + name: ExclusiveFullscreen + nameWithType: WindowMode.ExclusiveFullscreen + fullName: OpenTK.Platform.WindowMode.ExclusiveFullscreen +- uid: OpenTK.Platform.IWindowComponent.SupportedModes + commentId: P:OpenTK.Platform.IWindowComponent.SupportedModes + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SupportedModes + name: SupportedModes + nameWithType: IWindowComponent.SupportedModes + fullName: OpenTK.Platform.IWindowComponent.SupportedModes +- uid: System.ComponentModel.InvalidEnumArgumentException + commentId: T:System.ComponentModel.InvalidEnumArgumentException isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.argumentoutofrangeexception - name: ArgumentOutOfRangeException - nameWithType: ArgumentOutOfRangeException - fullName: System.ArgumentOutOfRangeException + href: https://learn.microsoft.com/dotnet/api/system.componentmodel.invalidenumargumentexception + name: InvalidEnumArgumentException + nameWithType: InvalidEnumArgumentException + fullName: System.ComponentModel.InvalidEnumArgumentException - uid: OpenTK.Platform.IWindowComponent.SetMode* commentId: Overload:OpenTK.Platform.IWindowComponent.SetMode href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetMode_OpenTK_Platform_WindowHandle_OpenTK_Platform_WindowMode_ name: SetMode nameWithType: IWindowComponent.SetMode fullName: OpenTK.Platform.IWindowComponent.SetMode +- uid: OpenTK.Platform.IWindowComponent.SetMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowMode) + commentId: M:OpenTK.Platform.IWindowComponent.SetMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowMode) + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetMode_OpenTK_Platform_WindowHandle_OpenTK_Platform_WindowMode_ + name: SetMode(WindowHandle, WindowMode) + nameWithType: IWindowComponent.SetMode(WindowHandle, WindowMode) + fullName: OpenTK.Platform.IWindowComponent.SetMode(OpenTK.Platform.WindowHandle, OpenTK.Platform.WindowMode) + spec.csharp: + - uid: OpenTK.Platform.IWindowComponent.SetMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowMode) + name: SetMode + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetMode_OpenTK_Platform_WindowHandle_OpenTK_Platform_WindowMode_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: OpenTK.Platform.WindowMode + name: WindowMode + href: OpenTK.Platform.WindowMode.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IWindowComponent.SetMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowMode) + name: SetMode + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetMode_OpenTK_Platform_WindowHandle_OpenTK_Platform_WindowMode_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: OpenTK.Platform.WindowMode + name: WindowMode + href: OpenTK.Platform.WindowMode.html + - name: ) - uid: OpenTK.Platform.IWindowComponent.SetFullscreenDisplay* commentId: Overload:OpenTK.Platform.IWindowComponent.SetFullscreenDisplay href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetFullscreenDisplay_OpenTK_Platform_WindowHandle_OpenTK_Platform_DisplayHandle_ @@ -2951,50 +3408,331 @@ references: name: GetFullscreenDisplay nameWithType: IWindowComponent.GetFullscreenDisplay fullName: OpenTK.Platform.IWindowComponent.GetFullscreenDisplay -- uid: OpenTK.Platform.IWindowComponent.GetBorderStyle* - commentId: Overload:OpenTK.Platform.IWindowComponent.GetBorderStyle - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetBorderStyle_OpenTK_Platform_WindowHandle_ - name: GetBorderStyle - nameWithType: IWindowComponent.GetBorderStyle - fullName: OpenTK.Platform.IWindowComponent.GetBorderStyle -- uid: OpenTK.Platform.WindowBorderStyle - commentId: T:OpenTK.Platform.WindowBorderStyle - parent: OpenTK.Platform - href: OpenTK.Platform.WindowBorderStyle.html - name: WindowBorderStyle - nameWithType: WindowBorderStyle - fullName: OpenTK.Platform.WindowBorderStyle -- uid: OpenTK.Platform.IWindowComponent.SupportedStyles - commentId: P:OpenTK.Platform.IWindowComponent.SupportedStyles +- uid: OpenTK.Platform.IWindowComponent.SetBorderStyle(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowBorderStyle) + commentId: M:OpenTK.Platform.IWindowComponent.SetBorderStyle(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowBorderStyle) parent: OpenTK.Platform.IWindowComponent - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SupportedStyles - name: SupportedStyles - nameWithType: IWindowComponent.SupportedStyles - fullName: OpenTK.Platform.IWindowComponent.SupportedStyles -- uid: OpenTK.Platform.IWindowComponent.SetBorderStyle* + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetBorderStyle_OpenTK_Platform_WindowHandle_OpenTK_Platform_WindowBorderStyle_ + name: SetBorderStyle(WindowHandle, WindowBorderStyle) + nameWithType: IWindowComponent.SetBorderStyle(WindowHandle, WindowBorderStyle) + fullName: OpenTK.Platform.IWindowComponent.SetBorderStyle(OpenTK.Platform.WindowHandle, OpenTK.Platform.WindowBorderStyle) + spec.csharp: + - uid: OpenTK.Platform.IWindowComponent.SetBorderStyle(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowBorderStyle) + name: SetBorderStyle + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetBorderStyle_OpenTK_Platform_WindowHandle_OpenTK_Platform_WindowBorderStyle_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: OpenTK.Platform.WindowBorderStyle + name: WindowBorderStyle + href: OpenTK.Platform.WindowBorderStyle.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IWindowComponent.SetBorderStyle(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowBorderStyle) + name: SetBorderStyle + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetBorderStyle_OpenTK_Platform_WindowHandle_OpenTK_Platform_WindowBorderStyle_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: OpenTK.Platform.WindowBorderStyle + name: WindowBorderStyle + href: OpenTK.Platform.WindowBorderStyle.html + - name: ) +- uid: OpenTK.Platform.IWindowComponent.GetBorderStyle* + commentId: Overload:OpenTK.Platform.IWindowComponent.GetBorderStyle + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetBorderStyle_OpenTK_Platform_WindowHandle_ + name: GetBorderStyle + nameWithType: IWindowComponent.GetBorderStyle + fullName: OpenTK.Platform.IWindowComponent.GetBorderStyle +- uid: OpenTK.Platform.WindowBorderStyle + commentId: T:OpenTK.Platform.WindowBorderStyle + parent: OpenTK.Platform + href: OpenTK.Platform.WindowBorderStyle.html + name: WindowBorderStyle + nameWithType: WindowBorderStyle + fullName: OpenTK.Platform.WindowBorderStyle +- uid: OpenTK.Platform.IWindowComponent.SupportedStyles + commentId: P:OpenTK.Platform.IWindowComponent.SupportedStyles + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SupportedStyles + name: SupportedStyles + nameWithType: IWindowComponent.SupportedStyles + fullName: OpenTK.Platform.IWindowComponent.SupportedStyles +- uid: OpenTK.Platform.IWindowComponent.SetBorderStyle* commentId: Overload:OpenTK.Platform.IWindowComponent.SetBorderStyle href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetBorderStyle_OpenTK_Platform_WindowHandle_OpenTK_Platform_WindowBorderStyle_ name: SetBorderStyle nameWithType: IWindowComponent.SetBorderStyle fullName: OpenTK.Platform.IWindowComponent.SetBorderStyle +- uid: OpenTK.Platform.IWindowComponent.SetTransparencyMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowTransparencyMode,System.Single) + commentId: M:OpenTK.Platform.IWindowComponent.SetTransparencyMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowTransparencyMode,System.Single) + parent: OpenTK.Platform.IWindowComponent + isExternal: true + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetTransparencyMode_OpenTK_Platform_WindowHandle_OpenTK_Platform_WindowTransparencyMode_System_Single_ + name: SetTransparencyMode(WindowHandle, WindowTransparencyMode, float) + nameWithType: IWindowComponent.SetTransparencyMode(WindowHandle, WindowTransparencyMode, float) + fullName: OpenTK.Platform.IWindowComponent.SetTransparencyMode(OpenTK.Platform.WindowHandle, OpenTK.Platform.WindowTransparencyMode, float) + nameWithType.vb: IWindowComponent.SetTransparencyMode(WindowHandle, WindowTransparencyMode, Single) + fullName.vb: OpenTK.Platform.IWindowComponent.SetTransparencyMode(OpenTK.Platform.WindowHandle, OpenTK.Platform.WindowTransparencyMode, Single) + name.vb: SetTransparencyMode(WindowHandle, WindowTransparencyMode, Single) + spec.csharp: + - uid: OpenTK.Platform.IWindowComponent.SetTransparencyMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowTransparencyMode,System.Single) + name: SetTransparencyMode + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetTransparencyMode_OpenTK_Platform_WindowHandle_OpenTK_Platform_WindowTransparencyMode_System_Single_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: OpenTK.Platform.WindowTransparencyMode + name: WindowTransparencyMode + href: OpenTK.Platform.WindowTransparencyMode.html + - name: ',' + - name: " " + - uid: System.Single + name: float + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.single + - name: ) + spec.vb: + - uid: OpenTK.Platform.IWindowComponent.SetTransparencyMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowTransparencyMode,System.Single) + name: SetTransparencyMode + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetTransparencyMode_OpenTK_Platform_WindowHandle_OpenTK_Platform_WindowTransparencyMode_System_Single_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: OpenTK.Platform.WindowTransparencyMode + name: WindowTransparencyMode + href: OpenTK.Platform.WindowTransparencyMode.html + - name: ',' + - name: " " + - uid: System.Single + name: Single + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.single + - name: ) +- uid: OpenTK.Platform.OpenGLGraphicsApiHints.SupportTransparentFramebufferX11 + commentId: P:OpenTK.Platform.OpenGLGraphicsApiHints.SupportTransparentFramebufferX11 + href: OpenTK.Platform.OpenGLGraphicsApiHints.html#OpenTK_Platform_OpenGLGraphicsApiHints_SupportTransparentFramebufferX11 + name: SupportTransparentFramebufferX11 + nameWithType: OpenGLGraphicsApiHints.SupportTransparentFramebufferX11 + fullName: OpenTK.Platform.OpenGLGraphicsApiHints.SupportTransparentFramebufferX11 +- uid: OpenTK.Platform.ContextValues.SupportsFramebufferTransparency + commentId: F:OpenTK.Platform.ContextValues.SupportsFramebufferTransparency + href: OpenTK.Platform.ContextValues.html#OpenTK_Platform_ContextValues_SupportsFramebufferTransparency + name: SupportsFramebufferTransparency + nameWithType: ContextValues.SupportsFramebufferTransparency + fullName: OpenTK.Platform.ContextValues.SupportsFramebufferTransparency +- uid: OpenTK.Platform.WindowTransparencyMode + commentId: T:OpenTK.Platform.WindowTransparencyMode + parent: OpenTK.Platform + href: OpenTK.Platform.WindowTransparencyMode.html + name: WindowTransparencyMode + nameWithType: WindowTransparencyMode + fullName: OpenTK.Platform.WindowTransparencyMode +- uid: OpenTK.Platform.WindowTransparencyMode.TransparentFramebuffer + commentId: F:OpenTK.Platform.WindowTransparencyMode.TransparentFramebuffer + href: OpenTK.Platform.WindowTransparencyMode.html#OpenTK_Platform_WindowTransparencyMode_TransparentFramebuffer + name: TransparentFramebuffer + nameWithType: WindowTransparencyMode.TransparentFramebuffer + fullName: OpenTK.Platform.WindowTransparencyMode.TransparentFramebuffer +- uid: OpenTK.Platform.ContextValues + commentId: T:OpenTK.Platform.ContextValues + parent: OpenTK.Platform + href: OpenTK.Platform.ContextValues.html + name: ContextValues + nameWithType: ContextValues + fullName: OpenTK.Platform.ContextValues +- uid: OpenTK.Platform.IWindowComponent.SupportsFramebufferTransparency* + commentId: Overload:OpenTK.Platform.IWindowComponent.SupportsFramebufferTransparency + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SupportsFramebufferTransparency_OpenTK_Platform_WindowHandle_ + name: SupportsFramebufferTransparency + nameWithType: IWindowComponent.SupportsFramebufferTransparency + fullName: OpenTK.Platform.IWindowComponent.SupportsFramebufferTransparency +- uid: OpenTK.Platform.IWindowComponent.SupportsFramebufferTransparency(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.SupportsFramebufferTransparency(OpenTK.Platform.WindowHandle) + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SupportsFramebufferTransparency_OpenTK_Platform_WindowHandle_ + name: SupportsFramebufferTransparency(WindowHandle) + nameWithType: IWindowComponent.SupportsFramebufferTransparency(WindowHandle) + fullName: OpenTK.Platform.IWindowComponent.SupportsFramebufferTransparency(OpenTK.Platform.WindowHandle) + spec.csharp: + - uid: OpenTK.Platform.IWindowComponent.SupportsFramebufferTransparency(OpenTK.Platform.WindowHandle) + name: SupportsFramebufferTransparency + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SupportsFramebufferTransparency_OpenTK_Platform_WindowHandle_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IWindowComponent.SupportsFramebufferTransparency(OpenTK.Platform.WindowHandle) + name: SupportsFramebufferTransparency + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SupportsFramebufferTransparency_OpenTK_Platform_WindowHandle_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ) +- uid: OpenTK.Platform.IWindowComponent.GetTransparencyMode(OpenTK.Platform.WindowHandle,System.Single@) + commentId: M:OpenTK.Platform.IWindowComponent.GetTransparencyMode(OpenTK.Platform.WindowHandle,System.Single@) + parent: OpenTK.Platform.IWindowComponent + isExternal: true + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetTransparencyMode_OpenTK_Platform_WindowHandle_System_Single__ + name: GetTransparencyMode(WindowHandle, out float) + nameWithType: IWindowComponent.GetTransparencyMode(WindowHandle, out float) + fullName: OpenTK.Platform.IWindowComponent.GetTransparencyMode(OpenTK.Platform.WindowHandle, out float) + nameWithType.vb: IWindowComponent.GetTransparencyMode(WindowHandle, Single) + fullName.vb: OpenTK.Platform.IWindowComponent.GetTransparencyMode(OpenTK.Platform.WindowHandle, Single) + name.vb: GetTransparencyMode(WindowHandle, Single) + spec.csharp: + - uid: OpenTK.Platform.IWindowComponent.GetTransparencyMode(OpenTK.Platform.WindowHandle,System.Single@) + name: GetTransparencyMode + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetTransparencyMode_OpenTK_Platform_WindowHandle_System_Single__ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - name: out + - name: " " + - uid: System.Single + name: float + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.single + - name: ) + spec.vb: + - uid: OpenTK.Platform.IWindowComponent.GetTransparencyMode(OpenTK.Platform.WindowHandle,System.Single@) + name: GetTransparencyMode + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetTransparencyMode_OpenTK_Platform_WindowHandle_System_Single__ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: System.Single + name: Single + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.single + - name: ) +- uid: OpenTK.Platform.WindowTransparencyMode.TransparentWindow + commentId: F:OpenTK.Platform.WindowTransparencyMode.TransparentWindow + href: OpenTK.Platform.WindowTransparencyMode.html#OpenTK_Platform_WindowTransparencyMode_TransparentWindow + name: TransparentWindow + nameWithType: WindowTransparencyMode.TransparentWindow + fullName: OpenTK.Platform.WindowTransparencyMode.TransparentWindow +- uid: OpenTK.Platform.IWindowComponent.SetTransparencyMode* + commentId: Overload:OpenTK.Platform.IWindowComponent.SetTransparencyMode + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetTransparencyMode_OpenTK_Platform_WindowHandle_OpenTK_Platform_WindowTransparencyMode_System_Single_ + name: SetTransparencyMode + nameWithType: IWindowComponent.SetTransparencyMode + fullName: OpenTK.Platform.IWindowComponent.SetTransparencyMode +- uid: System.Single + commentId: T:System.Single + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.single + name: float + nameWithType: float + fullName: float + nameWithType.vb: Single + fullName.vb: Single + name.vb: Single +- uid: OpenTK.Platform.IWindowComponent.GetTransparencyMode* + commentId: Overload:OpenTK.Platform.IWindowComponent.GetTransparencyMode + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetTransparencyMode_OpenTK_Platform_WindowHandle_System_Single__ + name: GetTransparencyMode + nameWithType: IWindowComponent.GetTransparencyMode + fullName: OpenTK.Platform.IWindowComponent.GetTransparencyMode +- uid: OpenTK.Platform.IWindowComponent.IsAlwaysOnTop(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.IsAlwaysOnTop(OpenTK.Platform.WindowHandle) + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_IsAlwaysOnTop_OpenTK_Platform_WindowHandle_ + name: IsAlwaysOnTop(WindowHandle) + nameWithType: IWindowComponent.IsAlwaysOnTop(WindowHandle) + fullName: OpenTK.Platform.IWindowComponent.IsAlwaysOnTop(OpenTK.Platform.WindowHandle) + spec.csharp: + - uid: OpenTK.Platform.IWindowComponent.IsAlwaysOnTop(OpenTK.Platform.WindowHandle) + name: IsAlwaysOnTop + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_IsAlwaysOnTop_OpenTK_Platform_WindowHandle_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IWindowComponent.IsAlwaysOnTop(OpenTK.Platform.WindowHandle) + name: IsAlwaysOnTop + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_IsAlwaysOnTop_OpenTK_Platform_WindowHandle_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ) - uid: OpenTK.Platform.IWindowComponent.SetAlwaysOnTop* commentId: Overload:OpenTK.Platform.IWindowComponent.SetAlwaysOnTop href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetAlwaysOnTop_OpenTK_Platform_WindowHandle_System_Boolean_ name: SetAlwaysOnTop nameWithType: IWindowComponent.SetAlwaysOnTop fullName: OpenTK.Platform.IWindowComponent.SetAlwaysOnTop +- uid: OpenTK.Platform.IWindowComponent.SetAlwaysOnTop(OpenTK.Platform.WindowHandle,System.Boolean) + commentId: M:OpenTK.Platform.IWindowComponent.SetAlwaysOnTop(OpenTK.Platform.WindowHandle,System.Boolean) + parent: OpenTK.Platform.IWindowComponent + isExternal: true + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetAlwaysOnTop_OpenTK_Platform_WindowHandle_System_Boolean_ + name: SetAlwaysOnTop(WindowHandle, bool) + nameWithType: IWindowComponent.SetAlwaysOnTop(WindowHandle, bool) + fullName: OpenTK.Platform.IWindowComponent.SetAlwaysOnTop(OpenTK.Platform.WindowHandle, bool) + nameWithType.vb: IWindowComponent.SetAlwaysOnTop(WindowHandle, Boolean) + fullName.vb: OpenTK.Platform.IWindowComponent.SetAlwaysOnTop(OpenTK.Platform.WindowHandle, Boolean) + name.vb: SetAlwaysOnTop(WindowHandle, Boolean) + spec.csharp: + - uid: OpenTK.Platform.IWindowComponent.SetAlwaysOnTop(OpenTK.Platform.WindowHandle,System.Boolean) + name: SetAlwaysOnTop + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetAlwaysOnTop_OpenTK_Platform_WindowHandle_System_Boolean_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: System.Boolean + name: bool + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: ) + spec.vb: + - uid: OpenTK.Platform.IWindowComponent.SetAlwaysOnTop(OpenTK.Platform.WindowHandle,System.Boolean) + name: SetAlwaysOnTop + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetAlwaysOnTop_OpenTK_Platform_WindowHandle_System_Boolean_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: System.Boolean + name: Boolean + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: ) - uid: OpenTK.Platform.IWindowComponent.IsAlwaysOnTop* commentId: Overload:OpenTK.Platform.IWindowComponent.IsAlwaysOnTop href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_IsAlwaysOnTop_OpenTK_Platform_WindowHandle_ name: IsAlwaysOnTop nameWithType: IWindowComponent.IsAlwaysOnTop fullName: OpenTK.Platform.IWindowComponent.IsAlwaysOnTop -- uid: OpenTK.Platform.IWindowComponent.SetHitTestCallback* - commentId: Overload:OpenTK.Platform.IWindowComponent.SetHitTestCallback - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetHitTestCallback_OpenTK_Platform_WindowHandle_OpenTK_Platform_HitTest_ - name: SetHitTestCallback - nameWithType: IWindowComponent.SetHitTestCallback - fullName: OpenTK.Platform.IWindowComponent.SetHitTestCallback - uid: OpenTK.Platform.HitTest commentId: T:OpenTK.Platform.HitTest parent: OpenTK.Platform @@ -3002,6 +3740,19 @@ references: name: HitTest nameWithType: HitTest fullName: OpenTK.Platform.HitTest +- uid: OpenTK.Platform.HitType + commentId: T:OpenTK.Platform.HitType + parent: OpenTK.Platform + href: OpenTK.Platform.HitType.html + name: HitType + nameWithType: HitType + fullName: OpenTK.Platform.HitType +- uid: OpenTK.Platform.IWindowComponent.SetHitTestCallback* + commentId: Overload:OpenTK.Platform.IWindowComponent.SetHitTestCallback + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetHitTestCallback_OpenTK_Platform_WindowHandle_OpenTK_Platform_HitTest_ + name: SetHitTestCallback + nameWithType: IWindowComponent.SetHitTestCallback + fullName: OpenTK.Platform.IWindowComponent.SetHitTestCallback - uid: OpenTK.Platform.IWindowComponent.CanSetCursor commentId: P:OpenTK.Platform.IWindowComponent.CanSetCursor parent: OpenTK.Platform.IWindowComponent @@ -3022,6 +3773,13 @@ references: name: CursorHandle nameWithType: CursorHandle fullName: OpenTK.Platform.CursorHandle +- uid: OpenTK.Platform.IWindowComponent.CanCaptureCursor + commentId: P:OpenTK.Platform.IWindowComponent.CanCaptureCursor + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_CanCaptureCursor + name: CanCaptureCursor + nameWithType: IWindowComponent.CanCaptureCursor + fullName: OpenTK.Platform.IWindowComponent.CanCaptureCursor - uid: OpenTK.Platform.IWindowComponent.GetCursorCaptureMode* commentId: Overload:OpenTK.Platform.IWindowComponent.GetCursorCaptureMode href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetCursorCaptureMode_OpenTK_Platform_WindowHandle_ @@ -3035,25 +3793,93 @@ references: name: CursorCaptureMode nameWithType: CursorCaptureMode fullName: OpenTK.Platform.CursorCaptureMode -- uid: OpenTK.Platform.IWindowComponent.CanCaptureCursor - commentId: P:OpenTK.Platform.IWindowComponent.CanCaptureCursor - parent: OpenTK.Platform.IWindowComponent - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_CanCaptureCursor - name: CanCaptureCursor - nameWithType: IWindowComponent.CanCaptureCursor - fullName: OpenTK.Platform.IWindowComponent.CanCaptureCursor - uid: OpenTK.Platform.IWindowComponent.SetCursorCaptureMode* commentId: Overload:OpenTK.Platform.IWindowComponent.SetCursorCaptureMode href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetCursorCaptureMode_OpenTK_Platform_WindowHandle_OpenTK_Platform_CursorCaptureMode_ name: SetCursorCaptureMode nameWithType: IWindowComponent.SetCursorCaptureMode fullName: OpenTK.Platform.IWindowComponent.SetCursorCaptureMode +- uid: OpenTK.Platform.IWindowComponent.FocusWindow(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.FocusWindow(OpenTK.Platform.WindowHandle) + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_FocusWindow_OpenTK_Platform_WindowHandle_ + name: FocusWindow(WindowHandle) + nameWithType: IWindowComponent.FocusWindow(WindowHandle) + fullName: OpenTK.Platform.IWindowComponent.FocusWindow(OpenTK.Platform.WindowHandle) + spec.csharp: + - uid: OpenTK.Platform.IWindowComponent.FocusWindow(OpenTK.Platform.WindowHandle) + name: FocusWindow + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_FocusWindow_OpenTK_Platform_WindowHandle_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IWindowComponent.FocusWindow(OpenTK.Platform.WindowHandle) + name: FocusWindow + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_FocusWindow_OpenTK_Platform_WindowHandle_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ) +- uid: OpenTK.Platform.IWindowComponent.RequestAttention(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.RequestAttention(OpenTK.Platform.WindowHandle) + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_RequestAttention_OpenTK_Platform_WindowHandle_ + name: RequestAttention(WindowHandle) + nameWithType: IWindowComponent.RequestAttention(WindowHandle) + fullName: OpenTK.Platform.IWindowComponent.RequestAttention(OpenTK.Platform.WindowHandle) + spec.csharp: + - uid: OpenTK.Platform.IWindowComponent.RequestAttention(OpenTK.Platform.WindowHandle) + name: RequestAttention + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_RequestAttention_OpenTK_Platform_WindowHandle_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IWindowComponent.RequestAttention(OpenTK.Platform.WindowHandle) + name: RequestAttention + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_RequestAttention_OpenTK_Platform_WindowHandle_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ) - uid: OpenTK.Platform.IWindowComponent.IsFocused* commentId: Overload:OpenTK.Platform.IWindowComponent.IsFocused href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_IsFocused_OpenTK_Platform_WindowHandle_ name: IsFocused nameWithType: IWindowComponent.IsFocused fullName: OpenTK.Platform.IWindowComponent.IsFocused +- uid: OpenTK.Platform.IWindowComponent.IsFocused(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.IsFocused(OpenTK.Platform.WindowHandle) + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_IsFocused_OpenTK_Platform_WindowHandle_ + name: IsFocused(WindowHandle) + nameWithType: IWindowComponent.IsFocused(WindowHandle) + fullName: OpenTK.Platform.IWindowComponent.IsFocused(OpenTK.Platform.WindowHandle) + spec.csharp: + - uid: OpenTK.Platform.IWindowComponent.IsFocused(OpenTK.Platform.WindowHandle) + name: IsFocused + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_IsFocused_OpenTK_Platform_WindowHandle_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IWindowComponent.IsFocused(OpenTK.Platform.WindowHandle) + name: IsFocused + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_IsFocused_OpenTK_Platform_WindowHandle_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ) - uid: OpenTK.Platform.IWindowComponent.FocusWindow* commentId: Overload:OpenTK.Platform.IWindowComponent.FocusWindow href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_FocusWindow_OpenTK_Platform_WindowHandle_ @@ -3066,18 +3892,237 @@ references: name: RequestAttention nameWithType: IWindowComponent.RequestAttention fullName: OpenTK.Platform.IWindowComponent.RequestAttention +- uid: OpenTK.Platform.IWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + commentId: M:OpenTK.Platform.IWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_ClientToScreen_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2_OpenTK_Mathematics_Vector2__ + name: ClientToScreen(WindowHandle, Vector2, out Vector2) + nameWithType: IWindowComponent.ClientToScreen(WindowHandle, Vector2, out Vector2) + fullName: OpenTK.Platform.IWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2, out OpenTK.Mathematics.Vector2) + nameWithType.vb: IWindowComponent.ClientToScreen(WindowHandle, Vector2, Vector2) + fullName.vb: OpenTK.Platform.IWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2, OpenTK.Mathematics.Vector2) + name.vb: ClientToScreen(WindowHandle, Vector2, Vector2) + spec.csharp: + - uid: OpenTK.Platform.IWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + name: ClientToScreen + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_ClientToScreen_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2_OpenTK_Mathematics_Vector2__ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: OpenTK.Mathematics.Vector2 + name: Vector2 + href: OpenTK.Mathematics.Vector2.html + - name: ',' + - name: " " + - name: out + - name: " " + - uid: OpenTK.Mathematics.Vector2 + name: Vector2 + href: OpenTK.Mathematics.Vector2.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + name: ClientToScreen + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_ClientToScreen_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2_OpenTK_Mathematics_Vector2__ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: OpenTK.Mathematics.Vector2 + name: Vector2 + href: OpenTK.Mathematics.Vector2.html + - name: ',' + - name: " " + - uid: OpenTK.Mathematics.Vector2 + name: Vector2 + href: OpenTK.Mathematics.Vector2.html + - name: ) +- uid: OpenTK.Platform.IWindowComponent.ClientToFramebuffer(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + commentId: M:OpenTK.Platform.IWindowComponent.ClientToFramebuffer(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_ClientToFramebuffer_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2_OpenTK_Mathematics_Vector2__ + name: ClientToFramebuffer(WindowHandle, Vector2, out Vector2) + nameWithType: IWindowComponent.ClientToFramebuffer(WindowHandle, Vector2, out Vector2) + fullName: OpenTK.Platform.IWindowComponent.ClientToFramebuffer(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2, out OpenTK.Mathematics.Vector2) + nameWithType.vb: IWindowComponent.ClientToFramebuffer(WindowHandle, Vector2, Vector2) + fullName.vb: OpenTK.Platform.IWindowComponent.ClientToFramebuffer(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2, OpenTK.Mathematics.Vector2) + name.vb: ClientToFramebuffer(WindowHandle, Vector2, Vector2) + spec.csharp: + - uid: OpenTK.Platform.IWindowComponent.ClientToFramebuffer(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + name: ClientToFramebuffer + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_ClientToFramebuffer_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2_OpenTK_Mathematics_Vector2__ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: OpenTK.Mathematics.Vector2 + name: Vector2 + href: OpenTK.Mathematics.Vector2.html + - name: ',' + - name: " " + - name: out + - name: " " + - uid: OpenTK.Mathematics.Vector2 + name: Vector2 + href: OpenTK.Mathematics.Vector2.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IWindowComponent.ClientToFramebuffer(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + name: ClientToFramebuffer + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_ClientToFramebuffer_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2_OpenTK_Mathematics_Vector2__ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: OpenTK.Mathematics.Vector2 + name: Vector2 + href: OpenTK.Mathematics.Vector2.html + - name: ',' + - name: " " + - uid: OpenTK.Mathematics.Vector2 + name: Vector2 + href: OpenTK.Mathematics.Vector2.html + - name: ) - uid: OpenTK.Platform.IWindowComponent.ScreenToClient* commentId: Overload:OpenTK.Platform.IWindowComponent.ScreenToClient - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_ScreenToClient_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_ScreenToClient_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2_OpenTK_Mathematics_Vector2__ name: ScreenToClient nameWithType: IWindowComponent.ScreenToClient fullName: OpenTK.Platform.IWindowComponent.ScreenToClient +- uid: OpenTK.Mathematics.Vector2 + commentId: T:OpenTK.Mathematics.Vector2 + parent: OpenTK.Mathematics + href: OpenTK.Mathematics.Vector2.html + name: Vector2 + nameWithType: Vector2 + fullName: OpenTK.Mathematics.Vector2 +- uid: OpenTK.Platform.IWindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + commentId: M:OpenTK.Platform.IWindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_ScreenToClient_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2_OpenTK_Mathematics_Vector2__ + name: ScreenToClient(WindowHandle, Vector2, out Vector2) + nameWithType: IWindowComponent.ScreenToClient(WindowHandle, Vector2, out Vector2) + fullName: OpenTK.Platform.IWindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2, out OpenTK.Mathematics.Vector2) + nameWithType.vb: IWindowComponent.ScreenToClient(WindowHandle, Vector2, Vector2) + fullName.vb: OpenTK.Platform.IWindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2, OpenTK.Mathematics.Vector2) + name.vb: ScreenToClient(WindowHandle, Vector2, Vector2) + spec.csharp: + - uid: OpenTK.Platform.IWindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + name: ScreenToClient + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_ScreenToClient_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2_OpenTK_Mathematics_Vector2__ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: OpenTK.Mathematics.Vector2 + name: Vector2 + href: OpenTK.Mathematics.Vector2.html + - name: ',' + - name: " " + - name: out + - name: " " + - uid: OpenTK.Mathematics.Vector2 + name: Vector2 + href: OpenTK.Mathematics.Vector2.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IWindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + name: ScreenToClient + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_ScreenToClient_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2_OpenTK_Mathematics_Vector2__ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: OpenTK.Mathematics.Vector2 + name: Vector2 + href: OpenTK.Mathematics.Vector2.html + - name: ',' + - name: " " + - uid: OpenTK.Mathematics.Vector2 + name: Vector2 + href: OpenTK.Mathematics.Vector2.html + - name: ) - uid: OpenTK.Platform.IWindowComponent.ClientToScreen* commentId: Overload:OpenTK.Platform.IWindowComponent.ClientToScreen - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_ClientToScreen_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_ClientToScreen_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2_OpenTK_Mathematics_Vector2__ name: ClientToScreen nameWithType: IWindowComponent.ClientToScreen fullName: OpenTK.Platform.IWindowComponent.ClientToScreen +- uid: OpenTK.Platform.IWindowComponent.FramebufferToClient(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + commentId: M:OpenTK.Platform.IWindowComponent.FramebufferToClient(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_FramebufferToClient_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2_OpenTK_Mathematics_Vector2__ + name: FramebufferToClient(WindowHandle, Vector2, out Vector2) + nameWithType: IWindowComponent.FramebufferToClient(WindowHandle, Vector2, out Vector2) + fullName: OpenTK.Platform.IWindowComponent.FramebufferToClient(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2, out OpenTK.Mathematics.Vector2) + nameWithType.vb: IWindowComponent.FramebufferToClient(WindowHandle, Vector2, Vector2) + fullName.vb: OpenTK.Platform.IWindowComponent.FramebufferToClient(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2, OpenTK.Mathematics.Vector2) + name.vb: FramebufferToClient(WindowHandle, Vector2, Vector2) + spec.csharp: + - uid: OpenTK.Platform.IWindowComponent.FramebufferToClient(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + name: FramebufferToClient + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_FramebufferToClient_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2_OpenTK_Mathematics_Vector2__ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: OpenTK.Mathematics.Vector2 + name: Vector2 + href: OpenTK.Mathematics.Vector2.html + - name: ',' + - name: " " + - name: out + - name: " " + - uid: OpenTK.Mathematics.Vector2 + name: Vector2 + href: OpenTK.Mathematics.Vector2.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IWindowComponent.FramebufferToClient(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + name: FramebufferToClient + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_FramebufferToClient_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2_OpenTK_Mathematics_Vector2__ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: OpenTK.Mathematics.Vector2 + name: Vector2 + href: OpenTK.Mathematics.Vector2.html + - name: ',' + - name: " " + - uid: OpenTK.Mathematics.Vector2 + name: Vector2 + href: OpenTK.Mathematics.Vector2.html + - name: ) +- uid: OpenTK.Platform.IWindowComponent.ClientToFramebuffer* + commentId: Overload:OpenTK.Platform.IWindowComponent.ClientToFramebuffer + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_ClientToFramebuffer_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2_OpenTK_Mathematics_Vector2__ + name: ClientToFramebuffer + nameWithType: IWindowComponent.ClientToFramebuffer + fullName: OpenTK.Platform.IWindowComponent.ClientToFramebuffer +- uid: OpenTK.Platform.IWindowComponent.FramebufferToClient* + commentId: Overload:OpenTK.Platform.IWindowComponent.FramebufferToClient + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_FramebufferToClient_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2_OpenTK_Mathematics_Vector2__ + name: FramebufferToClient + nameWithType: IWindowComponent.FramebufferToClient + fullName: OpenTK.Platform.IWindowComponent.FramebufferToClient - uid: OpenTK.Platform.WindowScaleChangeEventArgs commentId: T:OpenTK.Platform.WindowScaleChangeEventArgs href: OpenTK.Platform.WindowScaleChangeEventArgs.html @@ -3090,14 +4135,3 @@ references: name: GetScaleFactor nameWithType: IWindowComponent.GetScaleFactor fullName: OpenTK.Platform.IWindowComponent.GetScaleFactor -- uid: System.Single - commentId: T:System.Single - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.single - name: float - nameWithType: float - fullName: float - nameWithType.vb: Single - fullName.vb: Single - name.vb: Single diff --git a/api/OpenTK.Platform.InputLanguageChangedEventArgs.yml b/api/OpenTK.Platform.InputLanguageChangedEventArgs.yml index 96ff2eb1..f5c73204 100644 --- a/api/OpenTK.Platform.InputLanguageChangedEventArgs.yml +++ b/api/OpenTK.Platform.InputLanguageChangedEventArgs.yml @@ -20,7 +20,7 @@ items: source: id: InputLanguageChangedEventArgs path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\WindowEventArgs.cs - startLine: 337 + startLine: 335 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -66,7 +66,7 @@ items: source: id: KeyboardLayout path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\WindowEventArgs.cs - startLine: 343 + startLine: 341 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -96,7 +96,7 @@ items: source: id: KeyboardLayoutDisplayName path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\WindowEventArgs.cs - startLine: 348 + startLine: 346 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -123,7 +123,7 @@ items: source: id: InputLanguage path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\WindowEventArgs.cs - startLine: 356 + startLine: 354 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -156,7 +156,7 @@ items: source: id: InputLanguageDisplayName path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\WindowEventArgs.cs - startLine: 361 + startLine: 359 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -183,7 +183,7 @@ items: source: id: .ctor path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\WindowEventArgs.cs - startLine: 370 + startLine: 368 assemblies: - OpenTK.Platform namespace: OpenTK.Platform diff --git a/api/OpenTK.Platform.KeyDownEventArgs.yml b/api/OpenTK.Platform.KeyDownEventArgs.yml index b4e70ace..b5344411 100644 --- a/api/OpenTK.Platform.KeyDownEventArgs.yml +++ b/api/OpenTK.Platform.KeyDownEventArgs.yml @@ -20,7 +20,7 @@ items: source: id: KeyDownEventArgs path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\WindowEventArgs.cs - startLine: 191 + startLine: 189 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -58,7 +58,7 @@ items: source: id: Key path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\WindowEventArgs.cs - startLine: 197 + startLine: 195 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -88,7 +88,7 @@ items: source: id: Scancode path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\WindowEventArgs.cs - startLine: 203 + startLine: 201 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -118,7 +118,7 @@ items: source: id: IsRepeat path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\WindowEventArgs.cs - startLine: 208 + startLine: 206 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -145,7 +145,7 @@ items: source: id: Modifiers path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\WindowEventArgs.cs - startLine: 213 + startLine: 211 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -172,7 +172,7 @@ items: source: id: .ctor path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\WindowEventArgs.cs - startLine: 223 + startLine: 221 assemblies: - OpenTK.Platform namespace: OpenTK.Platform diff --git a/api/OpenTK.Platform.KeyUpEventArgs.yml b/api/OpenTK.Platform.KeyUpEventArgs.yml index 3ee4f236..9ff65268 100644 --- a/api/OpenTK.Platform.KeyUpEventArgs.yml +++ b/api/OpenTK.Platform.KeyUpEventArgs.yml @@ -19,7 +19,7 @@ items: source: id: KeyUpEventArgs path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\WindowEventArgs.cs - startLine: 236 + startLine: 234 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -57,7 +57,7 @@ items: source: id: Key path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\WindowEventArgs.cs - startLine: 244 + startLine: 242 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -87,7 +87,7 @@ items: source: id: Scancode path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\WindowEventArgs.cs - startLine: 250 + startLine: 248 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -117,7 +117,7 @@ items: source: id: Modifiers path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\WindowEventArgs.cs - startLine: 255 + startLine: 253 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -144,7 +144,7 @@ items: source: id: .ctor path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\WindowEventArgs.cs - startLine: 264 + startLine: 262 assemblies: - OpenTK.Platform namespace: OpenTK.Platform diff --git a/api/OpenTK.Platform.MouseButtonDownEventArgs.yml b/api/OpenTK.Platform.MouseButtonDownEventArgs.yml index 80ec3116..0adcc4a8 100644 --- a/api/OpenTK.Platform.MouseButtonDownEventArgs.yml +++ b/api/OpenTK.Platform.MouseButtonDownEventArgs.yml @@ -18,7 +18,7 @@ items: source: id: MouseButtonDownEventArgs path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\WindowEventArgs.cs - startLine: 458 + startLine: 459 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -55,7 +55,7 @@ items: source: id: Button path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\WindowEventArgs.cs - startLine: 463 + startLine: 464 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -82,7 +82,7 @@ items: source: id: Modifiers path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\WindowEventArgs.cs - startLine: 468 + startLine: 469 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -109,7 +109,7 @@ items: source: id: .ctor path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\WindowEventArgs.cs - startLine: 476 + startLine: 477 assemblies: - OpenTK.Platform namespace: OpenTK.Platform diff --git a/api/OpenTK.Platform.MouseButtonUpEventArgs.yml b/api/OpenTK.Platform.MouseButtonUpEventArgs.yml index 7929ccf7..ace48bf8 100644 --- a/api/OpenTK.Platform.MouseButtonUpEventArgs.yml +++ b/api/OpenTK.Platform.MouseButtonUpEventArgs.yml @@ -18,7 +18,7 @@ items: source: id: MouseButtonUpEventArgs path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\WindowEventArgs.cs - startLine: 486 + startLine: 487 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -55,7 +55,7 @@ items: source: id: Button path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\WindowEventArgs.cs - startLine: 491 + startLine: 492 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -82,7 +82,7 @@ items: source: id: Modifiers path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\WindowEventArgs.cs - startLine: 496 + startLine: 497 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -109,7 +109,7 @@ items: source: id: .ctor path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\WindowEventArgs.cs - startLine: 504 + startLine: 505 assemblies: - OpenTK.Platform namespace: OpenTK.Platform diff --git a/api/OpenTK.Platform.MouseEnterEventArgs.yml b/api/OpenTK.Platform.MouseEnterEventArgs.yml index 34456004..8544722b 100644 --- a/api/OpenTK.Platform.MouseEnterEventArgs.yml +++ b/api/OpenTK.Platform.MouseEnterEventArgs.yml @@ -17,7 +17,7 @@ items: source: id: MouseEnterEventArgs path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\WindowEventArgs.cs - startLine: 382 + startLine: 380 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -54,7 +54,7 @@ items: source: id: Entered path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\WindowEventArgs.cs - startLine: 387 + startLine: 385 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -81,7 +81,7 @@ items: source: id: .ctor path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\WindowEventArgs.cs - startLine: 395 + startLine: 393 assemblies: - OpenTK.Platform namespace: OpenTK.Platform diff --git a/api/OpenTK.Platform.MouseMoveEventArgs.yml b/api/OpenTK.Platform.MouseMoveEventArgs.yml index 74b77052..b32e260f 100644 --- a/api/OpenTK.Platform.MouseMoveEventArgs.yml +++ b/api/OpenTK.Platform.MouseMoveEventArgs.yml @@ -6,7 +6,7 @@ items: parent: OpenTK.Platform children: - OpenTK.Platform.MouseMoveEventArgs.#ctor(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2) - - OpenTK.Platform.MouseMoveEventArgs.Position + - OpenTK.Platform.MouseMoveEventArgs.ClientPosition langs: - csharp - vb @@ -17,7 +17,7 @@ items: source: id: MouseMoveEventArgs path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\WindowEventArgs.cs - startLine: 406 + startLine: 402 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -40,33 +40,51 @@ items: - System.Object.MemberwiseClone - System.Object.ReferenceEquals(System.Object,System.Object) - System.Object.ToString -- uid: OpenTK.Platform.MouseMoveEventArgs.Position - commentId: P:OpenTK.Platform.MouseMoveEventArgs.Position - id: Position +- uid: OpenTK.Platform.MouseMoveEventArgs.ClientPosition + commentId: P:OpenTK.Platform.MouseMoveEventArgs.ClientPosition + id: ClientPosition parent: OpenTK.Platform.MouseMoveEventArgs langs: - csharp - vb - name: Position - nameWithType: MouseMoveEventArgs.Position - fullName: OpenTK.Platform.MouseMoveEventArgs.Position + name: ClientPosition + nameWithType: MouseMoveEventArgs.ClientPosition + fullName: OpenTK.Platform.MouseMoveEventArgs.ClientPosition type: Property source: - id: Position + id: ClientPosition path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\WindowEventArgs.cs startLine: 415 assemblies: - OpenTK.Platform namespace: OpenTK.Platform - summary: The new position of the mouse cursor. + summary: >- + The new position of the mouse cursor in client coordinates. + + Use and + + to + + convert to the respective coordinate spaces. + + When using this property will contain a virtual mouse position + + and will not correspond an actual location in client coordinates. example: [] syntax: - content: public Vector2 Position { get; } + content: public Vector2 ClientPosition { get; } parameters: [] return: type: OpenTK.Mathematics.Vector2 - content.vb: Public Property Position As Vector2 - overload: OpenTK.Platform.MouseMoveEventArgs.Position* + content.vb: Public Property ClientPosition As Vector2 + overload: OpenTK.Platform.MouseMoveEventArgs.ClientPosition* + seealso: + - linkId: OpenTK.Platform.IWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + commentId: M:OpenTK.Platform.IWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + - linkId: OpenTK.Platform.IWindowComponent.ClientToFramebuffer(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + commentId: M:OpenTK.Platform.IWindowComponent.ClientToFramebuffer(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + - linkId: OpenTK.Platform.CursorCaptureMode.Locked + commentId: F:OpenTK.Platform.CursorCaptureMode.Locked - uid: OpenTK.Platform.MouseMoveEventArgs.#ctor(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2) commentId: M:OpenTK.Platform.MouseMoveEventArgs.#ctor(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2) id: '#ctor(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2)' @@ -88,15 +106,15 @@ items: summary: Initializes a new instance of the class. example: [] syntax: - content: public MouseMoveEventArgs(WindowHandle window, Vector2 position) + content: public MouseMoveEventArgs(WindowHandle window, Vector2 clientPosition) parameters: - id: window type: OpenTK.Platform.WindowHandle description: The window in which the mouse moved. - - id: position + - id: clientPosition type: OpenTK.Mathematics.Vector2 - description: The mouse position. - content.vb: Public Sub New(window As WindowHandle, position As Vector2) + description: The mouse position in client coordinates. + content.vb: Public Sub New(window As WindowHandle, clientPosition As Vector2) overload: OpenTK.Platform.MouseMoveEventArgs.#ctor* nameWithType.vb: MouseMoveEventArgs.New(WindowHandle, Vector2) fullName.vb: OpenTK.Platform.MouseMoveEventArgs.New(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2) @@ -391,12 +409,118 @@ references: name: System nameWithType: System fullName: System -- uid: OpenTK.Platform.MouseMoveEventArgs.Position* - commentId: Overload:OpenTK.Platform.MouseMoveEventArgs.Position - href: OpenTK.Platform.MouseMoveEventArgs.html#OpenTK_Platform_MouseMoveEventArgs_Position - name: Position - nameWithType: MouseMoveEventArgs.Position - fullName: OpenTK.Platform.MouseMoveEventArgs.Position +- uid: OpenTK.Platform.IWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + commentId: M:OpenTK.Platform.IWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_ClientToScreen_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2_OpenTK_Mathematics_Vector2__ + name: ClientToScreen(WindowHandle, Vector2, out Vector2) + nameWithType: IWindowComponent.ClientToScreen(WindowHandle, Vector2, out Vector2) + fullName: OpenTK.Platform.IWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2, out OpenTK.Mathematics.Vector2) + nameWithType.vb: IWindowComponent.ClientToScreen(WindowHandle, Vector2, Vector2) + fullName.vb: OpenTK.Platform.IWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2, OpenTK.Mathematics.Vector2) + name.vb: ClientToScreen(WindowHandle, Vector2, Vector2) + spec.csharp: + - uid: OpenTK.Platform.IWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + name: ClientToScreen + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_ClientToScreen_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2_OpenTK_Mathematics_Vector2__ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: OpenTK.Mathematics.Vector2 + name: Vector2 + href: OpenTK.Mathematics.Vector2.html + - name: ',' + - name: " " + - name: out + - name: " " + - uid: OpenTK.Mathematics.Vector2 + name: Vector2 + href: OpenTK.Mathematics.Vector2.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + name: ClientToScreen + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_ClientToScreen_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2_OpenTK_Mathematics_Vector2__ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: OpenTK.Mathematics.Vector2 + name: Vector2 + href: OpenTK.Mathematics.Vector2.html + - name: ',' + - name: " " + - uid: OpenTK.Mathematics.Vector2 + name: Vector2 + href: OpenTK.Mathematics.Vector2.html + - name: ) +- uid: OpenTK.Platform.IWindowComponent.ClientToFramebuffer(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + commentId: M:OpenTK.Platform.IWindowComponent.ClientToFramebuffer(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_ClientToFramebuffer_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2_OpenTK_Mathematics_Vector2__ + name: ClientToFramebuffer(WindowHandle, Vector2, out Vector2) + nameWithType: IWindowComponent.ClientToFramebuffer(WindowHandle, Vector2, out Vector2) + fullName: OpenTK.Platform.IWindowComponent.ClientToFramebuffer(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2, out OpenTK.Mathematics.Vector2) + nameWithType.vb: IWindowComponent.ClientToFramebuffer(WindowHandle, Vector2, Vector2) + fullName.vb: OpenTK.Platform.IWindowComponent.ClientToFramebuffer(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2, OpenTK.Mathematics.Vector2) + name.vb: ClientToFramebuffer(WindowHandle, Vector2, Vector2) + spec.csharp: + - uid: OpenTK.Platform.IWindowComponent.ClientToFramebuffer(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + name: ClientToFramebuffer + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_ClientToFramebuffer_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2_OpenTK_Mathematics_Vector2__ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: OpenTK.Mathematics.Vector2 + name: Vector2 + href: OpenTK.Mathematics.Vector2.html + - name: ',' + - name: " " + - name: out + - name: " " + - uid: OpenTK.Mathematics.Vector2 + name: Vector2 + href: OpenTK.Mathematics.Vector2.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IWindowComponent.ClientToFramebuffer(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + name: ClientToFramebuffer + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_ClientToFramebuffer_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2_OpenTK_Mathematics_Vector2__ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: OpenTK.Mathematics.Vector2 + name: Vector2 + href: OpenTK.Mathematics.Vector2.html + - name: ',' + - name: " " + - uid: OpenTK.Mathematics.Vector2 + name: Vector2 + href: OpenTK.Mathematics.Vector2.html + - name: ) +- uid: OpenTK.Platform.CursorCaptureMode.Locked + commentId: F:OpenTK.Platform.CursorCaptureMode.Locked + href: OpenTK.Platform.CursorCaptureMode.html#OpenTK_Platform_CursorCaptureMode_Locked + name: Locked + nameWithType: CursorCaptureMode.Locked + fullName: OpenTK.Platform.CursorCaptureMode.Locked +- uid: OpenTK.Platform.MouseMoveEventArgs.ClientPosition* + commentId: Overload:OpenTK.Platform.MouseMoveEventArgs.ClientPosition + href: OpenTK.Platform.MouseMoveEventArgs.html#OpenTK_Platform_MouseMoveEventArgs_ClientPosition + name: ClientPosition + nameWithType: MouseMoveEventArgs.ClientPosition + fullName: OpenTK.Platform.MouseMoveEventArgs.ClientPosition - uid: OpenTK.Mathematics.Vector2 commentId: T:OpenTK.Mathematics.Vector2 parent: OpenTK.Mathematics @@ -404,6 +528,13 @@ references: name: Vector2 nameWithType: Vector2 fullName: OpenTK.Mathematics.Vector2 +- uid: OpenTK.Platform.IWindowComponent + commentId: T:OpenTK.Platform.IWindowComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IWindowComponent.html + name: IWindowComponent + nameWithType: IWindowComponent + fullName: OpenTK.Platform.IWindowComponent - uid: OpenTK.Mathematics commentId: N:OpenTK.Mathematics href: OpenTK.html diff --git a/api/OpenTK.Platform.MouseState.yml b/api/OpenTK.Platform.MouseState.yml index f14d11e9..57de670e 100644 --- a/api/OpenTK.Platform.MouseState.yml +++ b/api/OpenTK.Platform.MouseState.yml @@ -18,7 +18,7 @@ items: source: id: MouseState path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IMouseComponent.cs - startLine: 10 + startLine: 11 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -27,6 +27,11 @@ items: syntax: content: public struct MouseState content.vb: Public Structure MouseState + seealso: + - linkId: OpenTK.Platform.IMouseComponent.GetGlobalMouseState(OpenTK.Platform.MouseState@) + commentId: M:OpenTK.Platform.IMouseComponent.GetGlobalMouseState(OpenTK.Platform.MouseState@) + - linkId: OpenTK.Platform.IMouseComponent.GetMouseState(OpenTK.Platform.WindowHandle,OpenTK.Platform.MouseState@) + commentId: M:OpenTK.Platform.IMouseComponent.GetMouseState(OpenTK.Platform.WindowHandle,OpenTK.Platform.MouseState@) inheritedMembers: - System.ValueType.Equals(System.Object) - System.ValueType.GetHashCode @@ -48,17 +53,20 @@ items: source: id: Position path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IMouseComponent.cs - startLine: 15 + startLine: 17 assemblies: - OpenTK.Platform namespace: OpenTK.Platform - summary: The mouse position in desktop coordinates. + summary: >- + The mouse position in either screen coordinates (if received from ),
+ + or window relative coordinates (if received from ). example: [] syntax: - content: public Vector2i Position + content: public Vector2 Position return: - type: OpenTK.Mathematics.Vector2i - content.vb: Public Position As Vector2i + type: OpenTK.Mathematics.Vector2 + content.vb: Public Position As Vector2 - uid: OpenTK.Platform.MouseState.Scroll commentId: F:OpenTK.Platform.MouseState.Scroll id: Scroll @@ -73,11 +81,16 @@ items: source: id: Scroll path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IMouseComponent.cs - startLine: 20 + startLine: 24 assemblies: - OpenTK.Platform namespace: OpenTK.Platform - summary: Virtual position of the scroll wheel. + summary: >- + Virtual position of the scroll wheel. + + The absolute value of this variable has no intrinsic value, + + it is differences in this value over time that indicate scroll wheel movement. example: [] syntax: content: public Vector2 Scroll @@ -98,7 +111,7 @@ items: source: id: PressedButtons path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Interfaces\IMouseComponent.cs - startLine: 25 + startLine: 29 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -110,6 +123,76 @@ items: type: OpenTK.Platform.MouseButtonFlags content.vb: Public PressedButtons As MouseButtonFlags references: +- uid: OpenTK.Platform.IMouseComponent.GetGlobalMouseState(OpenTK.Platform.MouseState@) + commentId: M:OpenTK.Platform.IMouseComponent.GetGlobalMouseState(OpenTK.Platform.MouseState@) + parent: OpenTK.Platform.IMouseComponent + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_GetGlobalMouseState_OpenTK_Platform_MouseState__ + name: GetGlobalMouseState(out MouseState) + nameWithType: IMouseComponent.GetGlobalMouseState(out MouseState) + fullName: OpenTK.Platform.IMouseComponent.GetGlobalMouseState(out OpenTK.Platform.MouseState) + nameWithType.vb: IMouseComponent.GetGlobalMouseState(MouseState) + fullName.vb: OpenTK.Platform.IMouseComponent.GetGlobalMouseState(OpenTK.Platform.MouseState) + name.vb: GetGlobalMouseState(MouseState) + spec.csharp: + - uid: OpenTK.Platform.IMouseComponent.GetGlobalMouseState(OpenTK.Platform.MouseState@) + name: GetGlobalMouseState + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_GetGlobalMouseState_OpenTK_Platform_MouseState__ + - name: ( + - name: out + - name: " " + - uid: OpenTK.Platform.MouseState + name: MouseState + href: OpenTK.Platform.MouseState.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IMouseComponent.GetGlobalMouseState(OpenTK.Platform.MouseState@) + name: GetGlobalMouseState + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_GetGlobalMouseState_OpenTK_Platform_MouseState__ + - name: ( + - uid: OpenTK.Platform.MouseState + name: MouseState + href: OpenTK.Platform.MouseState.html + - name: ) +- uid: OpenTK.Platform.IMouseComponent.GetMouseState(OpenTK.Platform.WindowHandle,OpenTK.Platform.MouseState@) + commentId: M:OpenTK.Platform.IMouseComponent.GetMouseState(OpenTK.Platform.WindowHandle,OpenTK.Platform.MouseState@) + parent: OpenTK.Platform.IMouseComponent + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_GetMouseState_OpenTK_Platform_WindowHandle_OpenTK_Platform_MouseState__ + name: GetMouseState(WindowHandle, out MouseState) + nameWithType: IMouseComponent.GetMouseState(WindowHandle, out MouseState) + fullName: OpenTK.Platform.IMouseComponent.GetMouseState(OpenTK.Platform.WindowHandle, out OpenTK.Platform.MouseState) + nameWithType.vb: IMouseComponent.GetMouseState(WindowHandle, MouseState) + fullName.vb: OpenTK.Platform.IMouseComponent.GetMouseState(OpenTK.Platform.WindowHandle, OpenTK.Platform.MouseState) + name.vb: GetMouseState(WindowHandle, MouseState) + spec.csharp: + - uid: OpenTK.Platform.IMouseComponent.GetMouseState(OpenTK.Platform.WindowHandle,OpenTK.Platform.MouseState@) + name: GetMouseState + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_GetMouseState_OpenTK_Platform_WindowHandle_OpenTK_Platform_MouseState__ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - name: out + - name: " " + - uid: OpenTK.Platform.MouseState + name: MouseState + href: OpenTK.Platform.MouseState.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IMouseComponent.GetMouseState(OpenTK.Platform.WindowHandle,OpenTK.Platform.MouseState@) + name: GetMouseState + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_GetMouseState_OpenTK_Platform_WindowHandle_OpenTK_Platform_MouseState__ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: OpenTK.Platform.MouseState + name: MouseState + href: OpenTK.Platform.MouseState.html + - name: ) - uid: OpenTK.Platform commentId: N:OpenTK.Platform href: OpenTK.html @@ -323,6 +406,13 @@ references: isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ) +- uid: OpenTK.Platform.IMouseComponent + commentId: T:OpenTK.Platform.IMouseComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IMouseComponent.html + name: IMouseComponent + nameWithType: IMouseComponent + fullName: OpenTK.Platform.IMouseComponent - uid: System.ValueType commentId: T:System.ValueType parent: System @@ -349,13 +439,13 @@ references: name: System nameWithType: System fullName: System -- uid: OpenTK.Mathematics.Vector2i - commentId: T:OpenTK.Mathematics.Vector2i +- uid: OpenTK.Mathematics.Vector2 + commentId: T:OpenTK.Mathematics.Vector2 parent: OpenTK.Mathematics - href: OpenTK.Mathematics.Vector2i.html - name: Vector2i - nameWithType: Vector2i - fullName: OpenTK.Mathematics.Vector2i + href: OpenTK.Mathematics.Vector2.html + name: Vector2 + nameWithType: Vector2 + fullName: OpenTK.Mathematics.Vector2 - uid: OpenTK.Mathematics commentId: N:OpenTK.Mathematics href: OpenTK.html @@ -378,13 +468,6 @@ references: - uid: OpenTK.Mathematics name: Mathematics href: OpenTK.Mathematics.html -- uid: OpenTK.Mathematics.Vector2 - commentId: T:OpenTK.Mathematics.Vector2 - parent: OpenTK.Mathematics - href: OpenTK.Mathematics.Vector2.html - name: Vector2 - nameWithType: Vector2 - fullName: OpenTK.Mathematics.Vector2 - uid: OpenTK.Platform.MouseButtonFlags commentId: T:OpenTK.Platform.MouseButtonFlags parent: OpenTK.Platform diff --git a/api/OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.yml b/api/OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.yml index 998d7dcf..bfe73783 100644 --- a/api/OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.yml +++ b/api/OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.yml @@ -26,6 +26,7 @@ items: - OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.SetCurrentContext(OpenTK.Platform.OpenGLContextHandle) - OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.SetSwapInterval(System.Int32) - OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.SwapBuffers(OpenTK.Platform.OpenGLContextHandle) + - OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.Uninitialize langs: - csharp - vb @@ -36,7 +37,7 @@ items: source: id: ANGLEOpenGLComponent path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\ANGLE\ANGLEOpenGLComponent.cs - startLine: 15 + startLine: 14 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.ANGLE @@ -70,7 +71,7 @@ items: source: id: Name path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\ANGLE\ANGLEOpenGLComponent.cs - startLine: 18 + startLine: 17 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.ANGLE @@ -99,7 +100,7 @@ items: source: id: Provides path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\ANGLE\ANGLEOpenGLComponent.cs - startLine: 21 + startLine: 20 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.ANGLE @@ -128,11 +129,11 @@ items: source: id: Logger path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\ANGLE\ANGLEOpenGLComponent.cs - startLine: 24 + startLine: 23 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.ANGLE - summary: Provides a logger for this component. + summary: The logger that this component uses to log diagnostic messages. example: [] syntax: content: public ILogger? Logger { get; set; } @@ -141,6 +142,11 @@ items: type: OpenTK.Core.Utility.ILogger content.vb: Public Property Logger As ILogger overload: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.Logger* + seealso: + - linkId: OpenTK.Core.Utility.ILogger + commentId: T:OpenTK.Core.Utility.ILogger + - linkId: OpenTK.Platform.ToolkitOptions.Logger + commentId: P:OpenTK.Platform.ToolkitOptions.Logger implements: - OpenTK.Platform.IPalComponent.Logger - uid: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.Initialize(OpenTK.Platform.ToolkitOptions) @@ -157,7 +163,7 @@ items: source: id: Initialize path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\ANGLE\ANGLEOpenGLComponent.cs - startLine: 34 + startLine: 33 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.ANGLE @@ -171,8 +177,42 @@ items: description: The options to initialize the component with. content.vb: Public Sub Initialize(options As ToolkitOptions) overload: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.Initialize* + seealso: + - linkId: OpenTK.Platform.ToolkitOptions + commentId: T:OpenTK.Platform.ToolkitOptions + - linkId: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) implements: - OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) +- uid: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.Uninitialize + commentId: M:OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.Uninitialize + id: Uninitialize + parent: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent + langs: + - csharp + - vb + name: Uninitialize() + nameWithType: ANGLEOpenGLComponent.Uninitialize() + fullName: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.Uninitialize() + type: Method + source: + id: Uninitialize + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\ANGLE\ANGLEOpenGLComponent.cs + startLine: 65 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform.Native.ANGLE + summary: Uninitialize the component. Frees any native resources used by the component. + example: [] + syntax: + content: public void Uninitialize() + content.vb: Public Sub Uninitialize() + overload: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.Uninitialize* + seealso: + - linkId: OpenTK.Platform.Toolkit.Uninit + commentId: M:OpenTK.Platform.Toolkit.Uninit + implements: + - OpenTK.Platform.IPalComponent.Uninitialize - uid: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.CanShareContexts commentId: P:OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.CanShareContexts id: CanShareContexts @@ -187,7 +227,7 @@ items: source: id: CanShareContexts path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\ANGLE\ANGLEOpenGLComponent.cs - startLine: 68 + startLine: 71 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.ANGLE @@ -216,7 +256,7 @@ items: source: id: CanCreateFromWindow path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\ANGLE\ANGLEOpenGLComponent.cs - startLine: 71 + startLine: 74 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.ANGLE @@ -248,7 +288,7 @@ items: source: id: CanCreateFromSurface path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\ANGLE\ANGLEOpenGLComponent.cs - startLine: 74 + startLine: 77 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.ANGLE @@ -277,7 +317,7 @@ items: source: id: CreateFromSurface path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\ANGLE\ANGLEOpenGLComponent.cs - startLine: 77 + startLine: 80 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.ANGLE @@ -306,7 +346,7 @@ items: source: id: CreateFromWindow path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\ANGLE\ANGLEOpenGLComponent.cs - startLine: 83 + startLine: 86 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.ANGLE @@ -323,6 +363,11 @@ items: description: An OpenGL context handle. content.vb: Public Function CreateFromWindow(handle As WindowHandle) As OpenGLContextHandle overload: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.CreateFromWindow* + seealso: + - linkId: OpenTK.Platform.IWindowComponent.Create(OpenTK.Platform.GraphicsApiHints) + commentId: M:OpenTK.Platform.IWindowComponent.Create(OpenTK.Platform.GraphicsApiHints) + - linkId: OpenTK.Platform.OpenGLGraphicsApiHints + commentId: T:OpenTK.Platform.OpenGLGraphicsApiHints implements: - OpenTK.Platform.IOpenGLComponent.CreateFromWindow(OpenTK.Platform.WindowHandle) - uid: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.DestroyContext(OpenTK.Platform.OpenGLContextHandle) @@ -339,7 +384,7 @@ items: source: id: DestroyContext path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\ANGLE\ANGLEOpenGLComponent.cs - startLine: 245 + startLine: 249 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.ANGLE @@ -353,10 +398,9 @@ items: description: Handle to the OpenGL context to destroy. content.vb: Public Sub DestroyContext(handle As OpenGLContextHandle) overload: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.DestroyContext* - exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: OpenGL context handle is null. + seealso: + - linkId: OpenTK.Platform.IOpenGLComponent.CreateFromWindow(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IOpenGLComponent.CreateFromWindow(OpenTK.Platform.WindowHandle) implements: - OpenTK.Platform.IOpenGLComponent.DestroyContext(OpenTK.Platform.OpenGLContextHandle) - uid: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.GetBindingsContext(OpenTK.Platform.OpenGLContextHandle) @@ -373,11 +417,14 @@ items: source: id: GetBindingsContext path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\ANGLE\ANGLEOpenGLComponent.cs - startLine: 265 + startLine: 269 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.ANGLE - summary: Gets a from an . + summary: >- + Gets a from an . + + Pass this to to load the OpenGL bindings. example: [] syntax: content: public IBindingsContext GetBindingsContext(OpenGLContextHandle handle) @@ -390,6 +437,11 @@ items: description: The created bindings context. content.vb: Public Function GetBindingsContext(handle As OpenGLContextHandle) As IBindingsContext overload: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.GetBindingsContext* + seealso: + - linkId: OpenTK.Graphics.GLLoader + commentId: T:OpenTK.Graphics.GLLoader + - linkId: OpenTK.IBindingsContext + commentId: T:OpenTK.IBindingsContext implements: - OpenTK.Platform.IOpenGLComponent.GetBindingsContext(OpenTK.Platform.OpenGLContextHandle) - uid: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.GetProcedureAddress(OpenTK.Platform.OpenGLContextHandle,System.String) @@ -406,7 +458,7 @@ items: source: id: GetProcedureAddress path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\ANGLE\ANGLEOpenGLComponent.cs - startLine: 272 + startLine: 276 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.ANGLE @@ -426,10 +478,6 @@ items: description: The procedure address to the OpenGL command. content.vb: Public Function GetProcedureAddress(handle As OpenGLContextHandle, procedureName As String) As IntPtr overload: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.GetProcedureAddress* - exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: OpenGL context handle or procedure name is null. implements: - OpenTK.Platform.IOpenGLComponent.GetProcedureAddress(OpenTK.Platform.OpenGLContextHandle,System.String) nameWithType.vb: ANGLEOpenGLComponent.GetProcedureAddress(OpenGLContextHandle, String) @@ -449,7 +497,7 @@ items: source: id: GetCurrentContext path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\ANGLE\ANGLEOpenGLComponent.cs - startLine: 278 + startLine: 282 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.ANGLE @@ -459,9 +507,12 @@ items: content: public OpenGLContextHandle? GetCurrentContext() return: type: OpenTK.Platform.OpenGLContextHandle - description: Handle to the current OpenGL context, null if none are current. + description: Handle to the current OpenGL context, null if no context is current. content.vb: Public Function GetCurrentContext() As OpenGLContextHandle overload: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.GetCurrentContext* + seealso: + - linkId: OpenTK.Platform.IOpenGLComponent.SetCurrentContext(OpenTK.Platform.OpenGLContextHandle) + commentId: M:OpenTK.Platform.IOpenGLComponent.SetCurrentContext(OpenTK.Platform.OpenGLContextHandle) implements: - OpenTK.Platform.IOpenGLComponent.GetCurrentContext - uid: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.SetCurrentContext(OpenTK.Platform.OpenGLContextHandle) @@ -478,7 +529,7 @@ items: source: id: SetCurrentContext path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\ANGLE\ANGLEOpenGLComponent.cs - startLine: 292 + startLine: 296 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.ANGLE @@ -489,12 +540,15 @@ items: parameters: - id: handle type: OpenTK.Platform.OpenGLContextHandle - description: Handle to the OpenGL context to make current, or null to make none current. + description: Handle to the OpenGL context to make current, or null to make no context current. return: type: System.Boolean - description: True when the OpenGL context is successfully made current. + description: true when the OpenGL context is successfully made current. content.vb: Public Function SetCurrentContext(handle As OpenGLContextHandle) As Boolean overload: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.SetCurrentContext* + seealso: + - linkId: OpenTK.Platform.IOpenGLComponent.GetCurrentContext + commentId: M:OpenTK.Platform.IOpenGLComponent.GetCurrentContext implements: - OpenTK.Platform.IOpenGLComponent.SetCurrentContext(OpenTK.Platform.OpenGLContextHandle) nameWithType.vb: ANGLEOpenGLComponent.SetCurrentContext(OpenGLContextHandle) @@ -514,7 +568,7 @@ items: source: id: GetSharedContext path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\ANGLE\ANGLEOpenGLComponent.cs - startLine: 306 + startLine: 310 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.ANGLE @@ -531,6 +585,9 @@ items: description: Handle to the OpenGL context the given context shares display lists with. content.vb: Public Function GetSharedContext(handle As OpenGLContextHandle) As OpenGLContextHandle overload: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.GetSharedContext* + seealso: + - linkId: OpenTK.Platform.OpenGLGraphicsApiHints.SharedContext + commentId: P:OpenTK.Platform.OpenGLGraphicsApiHints.SharedContext implements: - OpenTK.Platform.IOpenGLComponent.GetSharedContext(OpenTK.Platform.OpenGLContextHandle) - uid: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.SetSwapInterval(System.Int32) @@ -547,7 +604,7 @@ items: source: id: SetSwapInterval path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\ANGLE\ANGLEOpenGLComponent.cs - startLine: 315 + startLine: 317 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.ANGLE @@ -580,17 +637,17 @@ items: source: id: GetSwapInterval path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\ANGLE\ANGLEOpenGLComponent.cs - startLine: 322 + startLine: 332 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.ANGLE - summary: Gets the swap interval of the current OpenGL context. + summary: Gets the swap interval of the current OpenGL context, or -1 if no context is current. example: [] syntax: content: public int GetSwapInterval() return: type: System.Int32 - description: The current swap interval. + description: The current swap interval, or -1 if no context is current. content.vb: Public Function GetSwapInterval() As Integer overload: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.GetSwapInterval* implements: @@ -609,7 +666,7 @@ items: source: id: SwapBuffers path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\ANGLE\ANGLEOpenGLComponent.cs - startLine: 328 + startLine: 339 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.ANGLE @@ -623,6 +680,9 @@ items: description: Handle to the context. content.vb: Public Sub SwapBuffers(handle As OpenGLContextHandle) overload: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.SwapBuffers* + seealso: + - linkId: OpenTK.Platform.OpenGLGraphicsApiHints.SwapMethod + commentId: P:OpenTK.Platform.OpenGLGraphicsApiHints.SwapMethod implements: - OpenTK.Platform.IOpenGLComponent.SwapBuffers(OpenTK.Platform.OpenGLContextHandle) - uid: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.GetEglDisplay @@ -639,18 +699,18 @@ items: source: id: GetEglDisplay path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\ANGLE\ANGLEOpenGLComponent.cs - startLine: 338 + startLine: 353 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.ANGLE summary: Returns the EGLDisplay used by OpenTK. example: [] syntax: - content: public nint GetEglDisplay() + content: public EGLDisplay GetEglDisplay() return: - type: System.IntPtr + type: OpenTK.Graphics.Egl.EGLDisplay description: The EGLDisplay used by OpenTK. - content.vb: Public Function GetEglDisplay() As IntPtr + content.vb: Public Function GetEglDisplay() As EGLDisplay overload: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.GetEglDisplay* - uid: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.GetEglContext(OpenTK.Platform.OpenGLContextHandle) commentId: M:OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.GetEglContext(OpenTK.Platform.OpenGLContextHandle) @@ -666,22 +726,22 @@ items: source: id: GetEglContext path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\ANGLE\ANGLEOpenGLComponent.cs - startLine: 348 + startLine: 363 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.ANGLE summary: Returns the EGLContext associated with the specified context handle. example: [] syntax: - content: public nint GetEglContext(OpenGLContextHandle handle) + content: public EGLContext GetEglContext(OpenGLContextHandle handle) parameters: - id: handle type: OpenTK.Platform.OpenGLContextHandle description: A handle to an OpenGL context to get the associated EGLContext from. return: - type: System.IntPtr + type: OpenTK.Graphics.Egl.EGLContext description: The EGLContext associated with the context handle. - content.vb: Public Function GetEglContext(handle As OpenGLContextHandle) As IntPtr + content.vb: Public Function GetEglContext(handle As OpenGLContextHandle) As EGLContext overload: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.GetEglContext* - uid: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.GetEglSurface(OpenTK.Platform.OpenGLContextHandle) commentId: M:OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.GetEglSurface(OpenTK.Platform.OpenGLContextHandle) @@ -697,22 +757,22 @@ items: source: id: GetEglSurface path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\ANGLE\ANGLEOpenGLComponent.cs - startLine: 360 + startLine: 375 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.ANGLE summary: Returns the EGLSurface associated with the specified context handle. example: [] syntax: - content: public nint GetEglSurface(OpenGLContextHandle handle) + content: public EGLSurface GetEglSurface(OpenGLContextHandle handle) parameters: - id: handle type: OpenTK.Platform.OpenGLContextHandle description: A handle to an OpenGL context to get the associated EGLSurface from. return: - type: System.IntPtr + type: OpenTK.Graphics.Egl.EGLSurface description: The EGLSurface associated with the context handle. - content.vb: Public Function GetEglSurface(handle As OpenGLContextHandle) As IntPtr + content.vb: Public Function GetEglSurface(handle As OpenGLContextHandle) As EGLSurface overload: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.GetEglSurface* references: - uid: OpenTK.Platform.Native.ANGLE @@ -1070,6 +1130,19 @@ references: name: PalComponents nameWithType: PalComponents fullName: OpenTK.Platform.PalComponents +- uid: OpenTK.Core.Utility.ILogger + commentId: T:OpenTK.Core.Utility.ILogger + parent: OpenTK.Core.Utility + href: OpenTK.Core.Utility.ILogger.html + name: ILogger + nameWithType: ILogger + fullName: OpenTK.Core.Utility.ILogger +- uid: OpenTK.Platform.ToolkitOptions.Logger + commentId: P:OpenTK.Platform.ToolkitOptions.Logger + href: OpenTK.Platform.ToolkitOptions.html#OpenTK_Platform_ToolkitOptions_Logger + name: Logger + nameWithType: ToolkitOptions.Logger + fullName: OpenTK.Platform.ToolkitOptions.Logger - uid: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.Logger* commentId: Overload:OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.Logger href: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.html#OpenTK_Platform_Native_ANGLE_ANGLEOpenGLComponent_Logger @@ -1083,13 +1156,6 @@ references: name: Logger nameWithType: IPalComponent.Logger fullName: OpenTK.Platform.IPalComponent.Logger -- uid: OpenTK.Core.Utility.ILogger - commentId: T:OpenTK.Core.Utility.ILogger - parent: OpenTK.Core.Utility - href: OpenTK.Core.Utility.ILogger.html - name: ILogger - nameWithType: ILogger - fullName: OpenTK.Core.Utility.ILogger - uid: OpenTK.Core.Utility commentId: N:OpenTK.Core.Utility href: OpenTK.html @@ -1120,6 +1186,37 @@ references: - uid: OpenTK.Core.Utility name: Utility href: OpenTK.Core.Utility.html +- uid: OpenTK.Platform.ToolkitOptions + commentId: T:OpenTK.Platform.ToolkitOptions + parent: OpenTK.Platform + href: OpenTK.Platform.ToolkitOptions.html + name: ToolkitOptions + nameWithType: ToolkitOptions + fullName: OpenTK.Platform.ToolkitOptions +- uid: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Init_OpenTK_Platform_ToolkitOptions_ + name: Init(ToolkitOptions) + nameWithType: Toolkit.Init(ToolkitOptions) + fullName: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + spec.csharp: + - uid: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + name: Init + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Init_OpenTK_Platform_ToolkitOptions_ + - name: ( + - uid: OpenTK.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Platform.ToolkitOptions.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + name: Init + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Init_OpenTK_Platform_ToolkitOptions_ + - name: ( + - uid: OpenTK.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Platform.ToolkitOptions.html + - name: ) - uid: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.Initialize* commentId: Overload:OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.Initialize href: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.html#OpenTK_Platform_Native_ANGLE_ANGLEOpenGLComponent_Initialize_OpenTK_Platform_ToolkitOptions_ @@ -1151,13 +1248,49 @@ references: name: ToolkitOptions href: OpenTK.Platform.ToolkitOptions.html - name: ) -- uid: OpenTK.Platform.ToolkitOptions - commentId: T:OpenTK.Platform.ToolkitOptions - parent: OpenTK.Platform - href: OpenTK.Platform.ToolkitOptions.html - name: ToolkitOptions - nameWithType: ToolkitOptions - fullName: OpenTK.Platform.ToolkitOptions +- uid: OpenTK.Platform.Toolkit.Uninit + commentId: M:OpenTK.Platform.Toolkit.Uninit + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Uninit + name: Uninit() + nameWithType: Toolkit.Uninit() + fullName: OpenTK.Platform.Toolkit.Uninit() + spec.csharp: + - uid: OpenTK.Platform.Toolkit.Uninit + name: Uninit + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Uninit + - name: ( + - name: ) + spec.vb: + - uid: OpenTK.Platform.Toolkit.Uninit + name: Uninit + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Uninit + - name: ( + - name: ) +- uid: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.Uninitialize* + commentId: Overload:OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.Uninitialize + href: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.html#OpenTK_Platform_Native_ANGLE_ANGLEOpenGLComponent_Uninitialize + name: Uninitialize + nameWithType: ANGLEOpenGLComponent.Uninitialize + fullName: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.Uninitialize +- uid: OpenTK.Platform.IPalComponent.Uninitialize + commentId: M:OpenTK.Platform.IPalComponent.Uninitialize + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + name: Uninitialize() + nameWithType: IPalComponent.Uninitialize() + fullName: OpenTK.Platform.IPalComponent.Uninitialize() + spec.csharp: + - uid: OpenTK.Platform.IPalComponent.Uninitialize + name: Uninitialize + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + - name: ( + - name: ) + spec.vb: + - uid: OpenTK.Platform.IPalComponent.Uninitialize + name: Uninitialize + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + - name: ( + - name: ) - uid: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.CanShareContexts* commentId: Overload:OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.CanShareContexts href: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.html#OpenTK_Platform_Native_ANGLE_ANGLEOpenGLComponent_CanShareContexts @@ -1265,6 +1398,38 @@ references: name: OpenGLContextHandle nameWithType: OpenGLContextHandle fullName: OpenTK.Platform.OpenGLContextHandle +- uid: OpenTK.Platform.IWindowComponent.Create(OpenTK.Platform.GraphicsApiHints) + commentId: M:OpenTK.Platform.IWindowComponent.Create(OpenTK.Platform.GraphicsApiHints) + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_Create_OpenTK_Platform_GraphicsApiHints_ + name: Create(GraphicsApiHints) + nameWithType: IWindowComponent.Create(GraphicsApiHints) + fullName: OpenTK.Platform.IWindowComponent.Create(OpenTK.Platform.GraphicsApiHints) + spec.csharp: + - uid: OpenTK.Platform.IWindowComponent.Create(OpenTK.Platform.GraphicsApiHints) + name: Create + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_Create_OpenTK_Platform_GraphicsApiHints_ + - name: ( + - uid: OpenTK.Platform.GraphicsApiHints + name: GraphicsApiHints + href: OpenTK.Platform.GraphicsApiHints.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IWindowComponent.Create(OpenTK.Platform.GraphicsApiHints) + name: Create + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_Create_OpenTK_Platform_GraphicsApiHints_ + - name: ( + - uid: OpenTK.Platform.GraphicsApiHints + name: GraphicsApiHints + href: OpenTK.Platform.GraphicsApiHints.html + - name: ) +- uid: OpenTK.Platform.OpenGLGraphicsApiHints + commentId: T:OpenTK.Platform.OpenGLGraphicsApiHints + parent: OpenTK.Platform + href: OpenTK.Platform.OpenGLGraphicsApiHints.html + name: OpenGLGraphicsApiHints + nameWithType: OpenGLGraphicsApiHints + fullName: OpenTK.Platform.OpenGLGraphicsApiHints - uid: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.CreateFromWindow* commentId: Overload:OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.CreateFromWindow href: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.html#OpenTK_Platform_Native_ANGLE_ANGLEOpenGLComponent_CreateFromWindow_OpenTK_Platform_WindowHandle_ @@ -1278,13 +1443,13 @@ references: name: WindowHandle nameWithType: WindowHandle fullName: OpenTK.Platform.WindowHandle -- uid: System.ArgumentNullException - commentId: T:System.ArgumentNullException - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.argumentnullexception - name: ArgumentNullException - nameWithType: ArgumentNullException - fullName: System.ArgumentNullException +- uid: OpenTK.Platform.IWindowComponent + commentId: T:OpenTK.Platform.IWindowComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IWindowComponent.html + name: IWindowComponent + nameWithType: IWindowComponent + fullName: OpenTK.Platform.IWindowComponent - uid: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.DestroyContext* commentId: Overload:OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.DestroyContext href: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.html#OpenTK_Platform_Native_ANGLE_ANGLEOpenGLComponent_DestroyContext_OpenTK_Platform_OpenGLContextHandle_ @@ -1316,6 +1481,12 @@ references: name: OpenGLContextHandle href: OpenTK.Platform.OpenGLContextHandle.html - name: ) +- uid: OpenTK.Graphics.GLLoader + commentId: T:OpenTK.Graphics.GLLoader + href: OpenTK.Graphics.GLLoader.html + name: GLLoader + nameWithType: GLLoader + fullName: OpenTK.Graphics.GLLoader - uid: OpenTK.IBindingsContext commentId: T:OpenTK.IBindingsContext parent: OpenTK @@ -1323,6 +1494,30 @@ references: name: IBindingsContext nameWithType: IBindingsContext fullName: OpenTK.IBindingsContext +- uid: OpenTK.Graphics.GLLoader.LoadBindings(OpenTK.IBindingsContext) + commentId: M:OpenTK.Graphics.GLLoader.LoadBindings(OpenTK.IBindingsContext) + href: OpenTK.Graphics.GLLoader.html#OpenTK_Graphics_GLLoader_LoadBindings_OpenTK_IBindingsContext_ + name: LoadBindings(IBindingsContext) + nameWithType: GLLoader.LoadBindings(IBindingsContext) + fullName: OpenTK.Graphics.GLLoader.LoadBindings(OpenTK.IBindingsContext) + spec.csharp: + - uid: OpenTK.Graphics.GLLoader.LoadBindings(OpenTK.IBindingsContext) + name: LoadBindings + href: OpenTK.Graphics.GLLoader.html#OpenTK_Graphics_GLLoader_LoadBindings_OpenTK_IBindingsContext_ + - name: ( + - uid: OpenTK.IBindingsContext + name: IBindingsContext + href: OpenTK.IBindingsContext.html + - name: ) + spec.vb: + - uid: OpenTK.Graphics.GLLoader.LoadBindings(OpenTK.IBindingsContext) + name: LoadBindings + href: OpenTK.Graphics.GLLoader.html#OpenTK_Graphics_GLLoader_LoadBindings_OpenTK_IBindingsContext_ + - name: ( + - uid: OpenTK.IBindingsContext + name: IBindingsContext + href: OpenTK.IBindingsContext.html + - name: ) - uid: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.GetBindingsContext* commentId: Overload:OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.GetBindingsContext href: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.html#OpenTK_Platform_Native_ANGLE_ANGLEOpenGLComponent_GetBindingsContext_OpenTK_Platform_OpenGLContextHandle_ @@ -1418,6 +1613,31 @@ references: nameWithType.vb: IntPtr fullName.vb: System.IntPtr name.vb: IntPtr +- uid: OpenTK.Platform.IOpenGLComponent.SetCurrentContext(OpenTK.Platform.OpenGLContextHandle) + commentId: M:OpenTK.Platform.IOpenGLComponent.SetCurrentContext(OpenTK.Platform.OpenGLContextHandle) + parent: OpenTK.Platform.IOpenGLComponent + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_SetCurrentContext_OpenTK_Platform_OpenGLContextHandle_ + name: SetCurrentContext(OpenGLContextHandle) + nameWithType: IOpenGLComponent.SetCurrentContext(OpenGLContextHandle) + fullName: OpenTK.Platform.IOpenGLComponent.SetCurrentContext(OpenTK.Platform.OpenGLContextHandle) + spec.csharp: + - uid: OpenTK.Platform.IOpenGLComponent.SetCurrentContext(OpenTK.Platform.OpenGLContextHandle) + name: SetCurrentContext + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_SetCurrentContext_OpenTK_Platform_OpenGLContextHandle_ + - name: ( + - uid: OpenTK.Platform.OpenGLContextHandle + name: OpenGLContextHandle + href: OpenTK.Platform.OpenGLContextHandle.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IOpenGLComponent.SetCurrentContext(OpenTK.Platform.OpenGLContextHandle) + name: SetCurrentContext + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_SetCurrentContext_OpenTK_Platform_OpenGLContextHandle_ + - name: ( + - uid: OpenTK.Platform.OpenGLContextHandle + name: OpenGLContextHandle + href: OpenTK.Platform.OpenGLContextHandle.html + - name: ) - uid: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.GetCurrentContext* commentId: Overload:OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.GetCurrentContext href: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.html#OpenTK_Platform_Native_ANGLE_ANGLEOpenGLComponent_GetCurrentContext @@ -1449,31 +1669,12 @@ references: name: SetCurrentContext nameWithType: ANGLEOpenGLComponent.SetCurrentContext fullName: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.SetCurrentContext -- uid: OpenTK.Platform.IOpenGLComponent.SetCurrentContext(OpenTK.Platform.OpenGLContextHandle) - commentId: M:OpenTK.Platform.IOpenGLComponent.SetCurrentContext(OpenTK.Platform.OpenGLContextHandle) - parent: OpenTK.Platform.IOpenGLComponent - href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_SetCurrentContext_OpenTK_Platform_OpenGLContextHandle_ - name: SetCurrentContext(OpenGLContextHandle) - nameWithType: IOpenGLComponent.SetCurrentContext(OpenGLContextHandle) - fullName: OpenTK.Platform.IOpenGLComponent.SetCurrentContext(OpenTK.Platform.OpenGLContextHandle) - spec.csharp: - - uid: OpenTK.Platform.IOpenGLComponent.SetCurrentContext(OpenTK.Platform.OpenGLContextHandle) - name: SetCurrentContext - href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_SetCurrentContext_OpenTK_Platform_OpenGLContextHandle_ - - name: ( - - uid: OpenTK.Platform.OpenGLContextHandle - name: OpenGLContextHandle - href: OpenTK.Platform.OpenGLContextHandle.html - - name: ) - spec.vb: - - uid: OpenTK.Platform.IOpenGLComponent.SetCurrentContext(OpenTK.Platform.OpenGLContextHandle) - name: SetCurrentContext - href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_SetCurrentContext_OpenTK_Platform_OpenGLContextHandle_ - - name: ( - - uid: OpenTK.Platform.OpenGLContextHandle - name: OpenGLContextHandle - href: OpenTK.Platform.OpenGLContextHandle.html - - name: ) +- uid: OpenTK.Platform.OpenGLGraphicsApiHints.SharedContext + commentId: P:OpenTK.Platform.OpenGLGraphicsApiHints.SharedContext + href: OpenTK.Platform.OpenGLGraphicsApiHints.html#OpenTK_Platform_OpenGLGraphicsApiHints_SharedContext + name: SharedContext + nameWithType: OpenGLGraphicsApiHints.SharedContext + fullName: OpenTK.Platform.OpenGLGraphicsApiHints.SharedContext - uid: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.GetSharedContext* commentId: Overload:OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.GetSharedContext href: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.html#OpenTK_Platform_Native_ANGLE_ANGLEOpenGLComponent_GetSharedContext_OpenTK_Platform_OpenGLContextHandle_ @@ -1578,6 +1779,12 @@ references: href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_GetSwapInterval - name: ( - name: ) +- uid: OpenTK.Platform.OpenGLGraphicsApiHints.SwapMethod + commentId: P:OpenTK.Platform.OpenGLGraphicsApiHints.SwapMethod + href: OpenTK.Platform.OpenGLGraphicsApiHints.html#OpenTK_Platform_OpenGLGraphicsApiHints_SwapMethod + name: SwapMethod + nameWithType: OpenGLGraphicsApiHints.SwapMethod + fullName: OpenTK.Platform.OpenGLGraphicsApiHints.SwapMethod - uid: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.SwapBuffers* commentId: Overload:OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.SwapBuffers href: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.html#OpenTK_Platform_Native_ANGLE_ANGLEOpenGLComponent_SwapBuffers_OpenTK_Platform_OpenGLContextHandle_ @@ -1615,15 +1822,66 @@ references: name: GetEglDisplay nameWithType: ANGLEOpenGLComponent.GetEglDisplay fullName: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.GetEglDisplay +- uid: OpenTK.Graphics.Egl.EGLDisplay + commentId: T:OpenTK.Graphics.Egl.EGLDisplay + parent: OpenTK.Graphics.Egl + href: OpenTK.Graphics.Egl.EGLDisplay.html + name: EGLDisplay + nameWithType: EGLDisplay + fullName: OpenTK.Graphics.Egl.EGLDisplay +- uid: OpenTK.Graphics.Egl + commentId: N:OpenTK.Graphics.Egl + href: OpenTK.html + name: OpenTK.Graphics.Egl + nameWithType: OpenTK.Graphics.Egl + fullName: OpenTK.Graphics.Egl + spec.csharp: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Graphics + name: Graphics + href: OpenTK.Graphics.html + - name: . + - uid: OpenTK.Graphics.Egl + name: Egl + href: OpenTK.Graphics.Egl.html + spec.vb: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Graphics + name: Graphics + href: OpenTK.Graphics.html + - name: . + - uid: OpenTK.Graphics.Egl + name: Egl + href: OpenTK.Graphics.Egl.html - uid: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.GetEglContext* commentId: Overload:OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.GetEglContext href: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.html#OpenTK_Platform_Native_ANGLE_ANGLEOpenGLComponent_GetEglContext_OpenTK_Platform_OpenGLContextHandle_ name: GetEglContext nameWithType: ANGLEOpenGLComponent.GetEglContext fullName: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.GetEglContext +- uid: OpenTK.Graphics.Egl.EGLContext + commentId: T:OpenTK.Graphics.Egl.EGLContext + parent: OpenTK.Graphics.Egl + href: OpenTK.Graphics.Egl.EGLContext.html + name: EGLContext + nameWithType: EGLContext + fullName: OpenTK.Graphics.Egl.EGLContext - uid: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.GetEglSurface* commentId: Overload:OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.GetEglSurface href: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.html#OpenTK_Platform_Native_ANGLE_ANGLEOpenGLComponent_GetEglSurface_OpenTK_Platform_OpenGLContextHandle_ name: GetEglSurface nameWithType: ANGLEOpenGLComponent.GetEglSurface fullName: OpenTK.Platform.Native.ANGLE.ANGLEOpenGLComponent.GetEglSurface +- uid: OpenTK.Graphics.Egl.EGLSurface + commentId: T:OpenTK.Graphics.Egl.EGLSurface + parent: OpenTK.Graphics.Egl + href: OpenTK.Graphics.Egl.EGLSurface.html + name: EGLSurface + nameWithType: EGLSurface + fullName: OpenTK.Graphics.Egl.EGLSurface diff --git a/api/OpenTK.Platform.Native.SDL.SDLClipboardComponent.yml b/api/OpenTK.Platform.Native.SDL.SDLClipboardComponent.yml index 488aa302..6d5ba97a 100644 --- a/api/OpenTK.Platform.Native.SDL.SDLClipboardComponent.yml +++ b/api/OpenTK.Platform.Native.SDL.SDLClipboardComponent.yml @@ -14,8 +14,10 @@ items: - OpenTK.Platform.Native.SDL.SDLClipboardComponent.Logger - OpenTK.Platform.Native.SDL.SDLClipboardComponent.Name - OpenTK.Platform.Native.SDL.SDLClipboardComponent.Provides + - OpenTK.Platform.Native.SDL.SDLClipboardComponent.SetClipboardBitmap(OpenTK.Platform.Bitmap) - OpenTK.Platform.Native.SDL.SDLClipboardComponent.SetClipboardText(System.String) - OpenTK.Platform.Native.SDL.SDLClipboardComponent.SupportedFormats + - OpenTK.Platform.Native.SDL.SDLClipboardComponent.Uninitialize langs: - csharp - vb @@ -122,7 +124,7 @@ items: assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL - summary: Provides a logger for this component. + summary: The logger that this component uses to log diagnostic messages. example: [] syntax: content: public ILogger? Logger { get; set; } @@ -131,6 +133,11 @@ items: type: OpenTK.Core.Utility.ILogger content.vb: Public Property Logger As ILogger overload: OpenTK.Platform.Native.SDL.SDLClipboardComponent.Logger* + seealso: + - linkId: OpenTK.Core.Utility.ILogger + commentId: T:OpenTK.Core.Utility.ILogger + - linkId: OpenTK.Platform.ToolkitOptions.Logger + commentId: P:OpenTK.Platform.ToolkitOptions.Logger implements: - OpenTK.Platform.IPalComponent.Logger - uid: OpenTK.Platform.Native.SDL.SDLClipboardComponent.Initialize(OpenTK.Platform.ToolkitOptions) @@ -161,8 +168,42 @@ items: description: The options to initialize the component with. content.vb: Public Sub Initialize(options As ToolkitOptions) overload: OpenTK.Platform.Native.SDL.SDLClipboardComponent.Initialize* + seealso: + - linkId: OpenTK.Platform.ToolkitOptions + commentId: T:OpenTK.Platform.ToolkitOptions + - linkId: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) implements: - OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) +- uid: OpenTK.Platform.Native.SDL.SDLClipboardComponent.Uninitialize + commentId: M:OpenTK.Platform.Native.SDL.SDLClipboardComponent.Uninitialize + id: Uninitialize + parent: OpenTK.Platform.Native.SDL.SDLClipboardComponent + langs: + - csharp + - vb + name: Uninitialize() + nameWithType: SDLClipboardComponent.Uninitialize() + fullName: OpenTK.Platform.Native.SDL.SDLClipboardComponent.Uninitialize() + type: Method + source: + id: Uninitialize + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLClipboardComponent.cs + startLine: 28 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform.Native.SDL + summary: Uninitialize the component. Frees any native resources used by the component. + example: [] + syntax: + content: public void Uninitialize() + content.vb: Public Sub Uninitialize() + overload: OpenTK.Platform.Native.SDL.SDLClipboardComponent.Uninitialize* + seealso: + - linkId: OpenTK.Platform.Toolkit.Uninit + commentId: M:OpenTK.Platform.Toolkit.Uninit + implements: + - OpenTK.Platform.IPalComponent.Uninitialize - uid: OpenTK.Platform.Native.SDL.SDLClipboardComponent.SupportedFormats commentId: P:OpenTK.Platform.Native.SDL.SDLClipboardComponent.SupportedFormats id: SupportedFormats @@ -177,7 +218,7 @@ items: source: id: SupportedFormats path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLClipboardComponent.cs - startLine: 32 + startLine: 37 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL @@ -190,6 +231,11 @@ items: type: System.Collections.Generic.IReadOnlyList{OpenTK.Platform.ClipboardFormat} content.vb: Public ReadOnly Property SupportedFormats As IReadOnlyList(Of ClipboardFormat) overload: OpenTK.Platform.Native.SDL.SDLClipboardComponent.SupportedFormats* + seealso: + - linkId: OpenTK.Platform.IClipboardComponent.GetClipboardFormat + commentId: M:OpenTK.Platform.IClipboardComponent.GetClipboardFormat + - linkId: OpenTK.Platform.ClipboardFormat + commentId: T:OpenTK.Platform.ClipboardFormat implements: - OpenTK.Platform.IClipboardComponent.SupportedFormats - uid: OpenTK.Platform.Native.SDL.SDLClipboardComponent.GetClipboardFormat @@ -206,7 +252,7 @@ items: source: id: GetClipboardFormat path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLClipboardComponent.cs - startLine: 35 + startLine: 40 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL @@ -219,6 +265,9 @@ items: description: The format of the data currently in the clipboard. content.vb: Public Function GetClipboardFormat() As ClipboardFormat overload: OpenTK.Platform.Native.SDL.SDLClipboardComponent.GetClipboardFormat* + seealso: + - linkId: OpenTK.Platform.ClipboardFormat + commentId: T:OpenTK.Platform.ClipboardFormat implements: - OpenTK.Platform.IClipboardComponent.GetClipboardFormat - uid: OpenTK.Platform.Native.SDL.SDLClipboardComponent.SetClipboardText(System.String) @@ -235,7 +284,7 @@ items: source: id: SetClipboardText path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLClipboardComponent.cs - startLine: 42 + startLine: 47 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL @@ -246,9 +295,12 @@ items: parameters: - id: text type: System.String - description: The text to put on the clipboard. + description: The text to write to the clipboard. content.vb: Public Sub SetClipboardText(text As String) overload: OpenTK.Platform.Native.SDL.SDLClipboardComponent.SetClipboardText* + seealso: + - linkId: OpenTK.Platform.IClipboardComponent.GetClipboardFormat + commentId: M:OpenTK.Platform.IClipboardComponent.GetClipboardFormat implements: - OpenTK.Platform.IClipboardComponent.SetClipboardText(System.String) nameWithType.vb: SDLClipboardComponent.SetClipboardText(String) @@ -268,22 +320,25 @@ items: source: id: GetClipboardText path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLClipboardComponent.cs - startLine: 53 + startLine: 58 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: >- - Returns the string currently in the clipboard. + Gets the string currently in the clipboard. - This function returns null if the current clipboard data doesn't have the format. + This function returns null if the current clipboard data doesn't have the format. example: [] syntax: content: public string? GetClipboardText() return: type: System.String - description: The string currently in the clipboard, or null. + description: The string currently in the clipboard, or null. content.vb: Public Function GetClipboardText() As String overload: OpenTK.Platform.Native.SDL.SDLClipboardComponent.GetClipboardText* + seealso: + - linkId: OpenTK.Platform.IClipboardComponent.GetClipboardFormat + commentId: M:OpenTK.Platform.IClipboardComponent.GetClipboardFormat implements: - OpenTK.Platform.IClipboardComponent.GetClipboardText - uid: OpenTK.Platform.Native.SDL.SDLClipboardComponent.GetClipboardAudio @@ -300,24 +355,70 @@ items: source: id: GetClipboardAudio path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLClipboardComponent.cs - startLine: 74 + startLine: 79 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: >- Gets the audio data currently in the clipboard. - This function returns null if the current clipboard data doesn't have the format. + This function returns null if the current clipboard data doesn't have the format. example: [] syntax: content: public AudioData? GetClipboardAudio() return: type: OpenTK.Platform.AudioData - description: The audio data currently in the clipboard. + description: The audio data currently in the clipboard, or null. content.vb: Public Function GetClipboardAudio() As AudioData overload: OpenTK.Platform.Native.SDL.SDLClipboardComponent.GetClipboardAudio* + seealso: + - linkId: OpenTK.Platform.IClipboardComponent.GetClipboardFormat + commentId: M:OpenTK.Platform.IClipboardComponent.GetClipboardFormat implements: - OpenTK.Platform.IClipboardComponent.GetClipboardAudio +- uid: OpenTK.Platform.Native.SDL.SDLClipboardComponent.SetClipboardBitmap(OpenTK.Platform.Bitmap) + commentId: M:OpenTK.Platform.Native.SDL.SDLClipboardComponent.SetClipboardBitmap(OpenTK.Platform.Bitmap) + id: SetClipboardBitmap(OpenTK.Platform.Bitmap) + parent: OpenTK.Platform.Native.SDL.SDLClipboardComponent + langs: + - csharp + - vb + name: SetClipboardBitmap(Bitmap) + nameWithType: SDLClipboardComponent.SetClipboardBitmap(Bitmap) + fullName: OpenTK.Platform.Native.SDL.SDLClipboardComponent.SetClipboardBitmap(OpenTK.Platform.Bitmap) + type: Method + source: + id: SetClipboardBitmap + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLClipboardComponent.cs + startLine: 85 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform.Native.SDL + summary: Writes a bitmap to the clipboard. + remarks: >- + On linux clipboard bitmaps are defacto transferred as PNG data, as such a PNG encoder/decoder is needed to read and write bitmaps from the clipboard. + + To enable this must be called with an object that implements the interface. + + If this is not done, and will both throw an exception. + example: [] + syntax: + content: public void SetClipboardBitmap(Bitmap bitmap) + parameters: + - id: bitmap + type: OpenTK.Platform.Bitmap + description: The bitmap to write to the clipboard. + content.vb: Public Sub SetClipboardBitmap(bitmap As Bitmap) + overload: OpenTK.Platform.Native.SDL.SDLClipboardComponent.SetClipboardBitmap* + seealso: + - linkId: OpenTK.Platform.IClipboardComponent.GetClipboardFormat + commentId: M:OpenTK.Platform.IClipboardComponent.GetClipboardFormat + - linkId: OpenTK.Platform.Native.X11.X11ClipboardComponent.SetPngCodec(OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec) + commentId: M:OpenTK.Platform.Native.X11.X11ClipboardComponent.SetPngCodec(OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec) + - linkId: OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec + commentId: T:OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec + implements: + - OpenTK.Platform.IClipboardComponent.SetClipboardBitmap(OpenTK.Platform.Bitmap) - uid: OpenTK.Platform.Native.SDL.SDLClipboardComponent.GetClipboardBitmap commentId: M:OpenTK.Platform.Native.SDL.SDLClipboardComponent.GetClipboardBitmap id: GetClipboardBitmap @@ -332,22 +433,35 @@ items: source: id: GetClipboardBitmap path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLClipboardComponent.cs - startLine: 80 + startLine: 91 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: >- Gets the bitmap currently in the clipboard. - This function returns null if the current clipboard data doesn't have the format. + This function returns null if the current clipboard data doesn't have the format. + remarks: >- + On linux clipboard bitmaps are defacto transferred as PNG data, as such a PNG encoder/decoder is needed to read and write bitmaps from the clipboard. + + To enable this must be called with an object that implements the interface. + + If this is not done, and will both throw an exception. example: [] syntax: content: public Bitmap? GetClipboardBitmap() return: type: OpenTK.Platform.Bitmap - description: The bitmap currently in the clipboard. + description: The bitmap currently in the clipboard, or null. content.vb: Public Function GetClipboardBitmap() As Bitmap overload: OpenTK.Platform.Native.SDL.SDLClipboardComponent.GetClipboardBitmap* + seealso: + - linkId: OpenTK.Platform.IClipboardComponent.GetClipboardFormat + commentId: M:OpenTK.Platform.IClipboardComponent.GetClipboardFormat + - linkId: OpenTK.Platform.Native.X11.X11ClipboardComponent.SetPngCodec(OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec) + commentId: M:OpenTK.Platform.Native.X11.X11ClipboardComponent.SetPngCodec(OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec) + - linkId: OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec + commentId: T:OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec implements: - OpenTK.Platform.IClipboardComponent.GetClipboardBitmap - uid: OpenTK.Platform.Native.SDL.SDLClipboardComponent.GetClipboardFiles @@ -364,22 +478,25 @@ items: source: id: GetClipboardFiles path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLClipboardComponent.cs - startLine: 86 + startLine: 97 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: >- Gets a list of files and directories currently in the clipboard. - This function returns null if the current clipboard data doesn't have the format. + This function returns null if the current clipboard data doesn't have the format. example: [] syntax: content: public List? GetClipboardFiles() return: type: System.Collections.Generic.List{System.String} - description: The list of files and directories currently in the clipboard. + description: The list of files and directories currently in the clipboard, or null. content.vb: Public Function GetClipboardFiles() As List(Of String) overload: OpenTK.Platform.Native.SDL.SDLClipboardComponent.GetClipboardFiles* + seealso: + - linkId: OpenTK.Platform.IClipboardComponent.GetClipboardFormat + commentId: M:OpenTK.Platform.IClipboardComponent.GetClipboardFormat implements: - OpenTK.Platform.IClipboardComponent.GetClipboardFiles references: @@ -738,6 +855,19 @@ references: name: PalComponents nameWithType: PalComponents fullName: OpenTK.Platform.PalComponents +- uid: OpenTK.Core.Utility.ILogger + commentId: T:OpenTK.Core.Utility.ILogger + parent: OpenTK.Core.Utility + href: OpenTK.Core.Utility.ILogger.html + name: ILogger + nameWithType: ILogger + fullName: OpenTK.Core.Utility.ILogger +- uid: OpenTK.Platform.ToolkitOptions.Logger + commentId: P:OpenTK.Platform.ToolkitOptions.Logger + href: OpenTK.Platform.ToolkitOptions.html#OpenTK_Platform_ToolkitOptions_Logger + name: Logger + nameWithType: ToolkitOptions.Logger + fullName: OpenTK.Platform.ToolkitOptions.Logger - uid: OpenTK.Platform.Native.SDL.SDLClipboardComponent.Logger* commentId: Overload:OpenTK.Platform.Native.SDL.SDLClipboardComponent.Logger href: OpenTK.Platform.Native.SDL.SDLClipboardComponent.html#OpenTK_Platform_Native_SDL_SDLClipboardComponent_Logger @@ -751,13 +881,6 @@ references: name: Logger nameWithType: IPalComponent.Logger fullName: OpenTK.Platform.IPalComponent.Logger -- uid: OpenTK.Core.Utility.ILogger - commentId: T:OpenTK.Core.Utility.ILogger - parent: OpenTK.Core.Utility - href: OpenTK.Core.Utility.ILogger.html - name: ILogger - nameWithType: ILogger - fullName: OpenTK.Core.Utility.ILogger - uid: OpenTK.Core.Utility commentId: N:OpenTK.Core.Utility href: OpenTK.html @@ -788,6 +911,37 @@ references: - uid: OpenTK.Core.Utility name: Utility href: OpenTK.Core.Utility.html +- uid: OpenTK.Platform.ToolkitOptions + commentId: T:OpenTK.Platform.ToolkitOptions + parent: OpenTK.Platform + href: OpenTK.Platform.ToolkitOptions.html + name: ToolkitOptions + nameWithType: ToolkitOptions + fullName: OpenTK.Platform.ToolkitOptions +- uid: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Init_OpenTK_Platform_ToolkitOptions_ + name: Init(ToolkitOptions) + nameWithType: Toolkit.Init(ToolkitOptions) + fullName: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + spec.csharp: + - uid: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + name: Init + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Init_OpenTK_Platform_ToolkitOptions_ + - name: ( + - uid: OpenTK.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Platform.ToolkitOptions.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + name: Init + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Init_OpenTK_Platform_ToolkitOptions_ + - name: ( + - uid: OpenTK.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Platform.ToolkitOptions.html + - name: ) - uid: OpenTK.Platform.Native.SDL.SDLClipboardComponent.Initialize* commentId: Overload:OpenTK.Platform.Native.SDL.SDLClipboardComponent.Initialize href: OpenTK.Platform.Native.SDL.SDLClipboardComponent.html#OpenTK_Platform_Native_SDL_SDLClipboardComponent_Initialize_OpenTK_Platform_ToolkitOptions_ @@ -819,13 +973,75 @@ references: name: ToolkitOptions href: OpenTK.Platform.ToolkitOptions.html - name: ) -- uid: OpenTK.Platform.ToolkitOptions - commentId: T:OpenTK.Platform.ToolkitOptions +- uid: OpenTK.Platform.Toolkit.Uninit + commentId: M:OpenTK.Platform.Toolkit.Uninit + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Uninit + name: Uninit() + nameWithType: Toolkit.Uninit() + fullName: OpenTK.Platform.Toolkit.Uninit() + spec.csharp: + - uid: OpenTK.Platform.Toolkit.Uninit + name: Uninit + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Uninit + - name: ( + - name: ) + spec.vb: + - uid: OpenTK.Platform.Toolkit.Uninit + name: Uninit + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Uninit + - name: ( + - name: ) +- uid: OpenTK.Platform.Native.SDL.SDLClipboardComponent.Uninitialize* + commentId: Overload:OpenTK.Platform.Native.SDL.SDLClipboardComponent.Uninitialize + href: OpenTK.Platform.Native.SDL.SDLClipboardComponent.html#OpenTK_Platform_Native_SDL_SDLClipboardComponent_Uninitialize + name: Uninitialize + nameWithType: SDLClipboardComponent.Uninitialize + fullName: OpenTK.Platform.Native.SDL.SDLClipboardComponent.Uninitialize +- uid: OpenTK.Platform.IPalComponent.Uninitialize + commentId: M:OpenTK.Platform.IPalComponent.Uninitialize + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + name: Uninitialize() + nameWithType: IPalComponent.Uninitialize() + fullName: OpenTK.Platform.IPalComponent.Uninitialize() + spec.csharp: + - uid: OpenTK.Platform.IPalComponent.Uninitialize + name: Uninitialize + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + - name: ( + - name: ) + spec.vb: + - uid: OpenTK.Platform.IPalComponent.Uninitialize + name: Uninitialize + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + - name: ( + - name: ) +- uid: OpenTK.Platform.IClipboardComponent.GetClipboardFormat + commentId: M:OpenTK.Platform.IClipboardComponent.GetClipboardFormat + parent: OpenTK.Platform.IClipboardComponent + href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_GetClipboardFormat + name: GetClipboardFormat() + nameWithType: IClipboardComponent.GetClipboardFormat() + fullName: OpenTK.Platform.IClipboardComponent.GetClipboardFormat() + spec.csharp: + - uid: OpenTK.Platform.IClipboardComponent.GetClipboardFormat + name: GetClipboardFormat + href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_GetClipboardFormat + - name: ( + - name: ) + spec.vb: + - uid: OpenTK.Platform.IClipboardComponent.GetClipboardFormat + name: GetClipboardFormat + href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_GetClipboardFormat + - name: ( + - name: ) +- uid: OpenTK.Platform.ClipboardFormat + commentId: T:OpenTK.Platform.ClipboardFormat parent: OpenTK.Platform - href: OpenTK.Platform.ToolkitOptions.html - name: ToolkitOptions - nameWithType: ToolkitOptions - fullName: OpenTK.Platform.ToolkitOptions + href: OpenTK.Platform.ClipboardFormat.html + name: ClipboardFormat + nameWithType: ClipboardFormat + fullName: OpenTK.Platform.ClipboardFormat - uid: OpenTK.Platform.Native.SDL.SDLClipboardComponent.SupportedFormats* commentId: Overload:OpenTK.Platform.Native.SDL.SDLClipboardComponent.SupportedFormats href: OpenTK.Platform.Native.SDL.SDLClipboardComponent.html#OpenTK_Platform_Native_SDL_SDLClipboardComponent_SupportedFormats @@ -943,32 +1159,6 @@ references: name: GetClipboardFormat nameWithType: SDLClipboardComponent.GetClipboardFormat fullName: OpenTK.Platform.Native.SDL.SDLClipboardComponent.GetClipboardFormat -- uid: OpenTK.Platform.IClipboardComponent.GetClipboardFormat - commentId: M:OpenTK.Platform.IClipboardComponent.GetClipboardFormat - parent: OpenTK.Platform.IClipboardComponent - href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_GetClipboardFormat - name: GetClipboardFormat() - nameWithType: IClipboardComponent.GetClipboardFormat() - fullName: OpenTK.Platform.IClipboardComponent.GetClipboardFormat() - spec.csharp: - - uid: OpenTK.Platform.IClipboardComponent.GetClipboardFormat - name: GetClipboardFormat - href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_GetClipboardFormat - - name: ( - - name: ) - spec.vb: - - uid: OpenTK.Platform.IClipboardComponent.GetClipboardFormat - name: GetClipboardFormat - href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_GetClipboardFormat - - name: ( - - name: ) -- uid: OpenTK.Platform.ClipboardFormat - commentId: T:OpenTK.Platform.ClipboardFormat - parent: OpenTK.Platform - href: OpenTK.Platform.ClipboardFormat.html - name: ClipboardFormat - nameWithType: ClipboardFormat - fullName: OpenTK.Platform.ClipboardFormat - uid: OpenTK.Platform.Native.SDL.SDLClipboardComponent.SetClipboardText* commentId: Overload:OpenTK.Platform.Native.SDL.SDLClipboardComponent.SetClipboardText href: OpenTK.Platform.Native.SDL.SDLClipboardComponent.html#OpenTK_Platform_Native_SDL_SDLClipboardComponent_SetClipboardText_System_String_ @@ -1075,18 +1265,78 @@ references: name: AudioData nameWithType: AudioData fullName: OpenTK.Platform.AudioData -- uid: OpenTK.Platform.ClipboardFormat.Bitmap - commentId: F:OpenTK.Platform.ClipboardFormat.Bitmap - href: OpenTK.Platform.ClipboardFormat.html#OpenTK_Platform_ClipboardFormat_Bitmap - name: Bitmap - nameWithType: ClipboardFormat.Bitmap - fullName: OpenTK.Platform.ClipboardFormat.Bitmap -- uid: OpenTK.Platform.Native.SDL.SDLClipboardComponent.GetClipboardBitmap* - commentId: Overload:OpenTK.Platform.Native.SDL.SDLClipboardComponent.GetClipboardBitmap - href: OpenTK.Platform.Native.SDL.SDLClipboardComponent.html#OpenTK_Platform_Native_SDL_SDLClipboardComponent_GetClipboardBitmap - name: GetClipboardBitmap - nameWithType: SDLClipboardComponent.GetClipboardBitmap - fullName: OpenTK.Platform.Native.SDL.SDLClipboardComponent.GetClipboardBitmap +- uid: OpenTK.Platform.Native.X11.X11ClipboardComponent.SetPngCodec(OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec) + commentId: M:OpenTK.Platform.Native.X11.X11ClipboardComponent.SetPngCodec(OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec) + href: OpenTK.Platform.Native.X11.X11ClipboardComponent.html#OpenTK_Platform_Native_X11_X11ClipboardComponent_SetPngCodec_OpenTK_Platform_Native_X11_X11ClipboardComponent_IPngCodec_ + name: SetPngCodec(IPngCodec) + nameWithType: X11ClipboardComponent.SetPngCodec(X11ClipboardComponent.IPngCodec) + fullName: OpenTK.Platform.Native.X11.X11ClipboardComponent.SetPngCodec(OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec) + spec.csharp: + - uid: OpenTK.Platform.Native.X11.X11ClipboardComponent.SetPngCodec(OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec) + name: SetPngCodec + href: OpenTK.Platform.Native.X11.X11ClipboardComponent.html#OpenTK_Platform_Native_X11_X11ClipboardComponent_SetPngCodec_OpenTK_Platform_Native_X11_X11ClipboardComponent_IPngCodec_ + - name: ( + - uid: OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec + name: IPngCodec + href: OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.Native.X11.X11ClipboardComponent.SetPngCodec(OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec) + name: SetPngCodec + href: OpenTK.Platform.Native.X11.X11ClipboardComponent.html#OpenTK_Platform_Native_X11_X11ClipboardComponent_SetPngCodec_OpenTK_Platform_Native_X11_X11ClipboardComponent_IPngCodec_ + - name: ( + - uid: OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec + name: IPngCodec + href: OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec.html + - name: ) +- uid: OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec + commentId: T:OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec + parent: OpenTK.Platform.Native.X11 + href: OpenTK.Platform.Native.X11.X11ClipboardComponent.html + name: X11ClipboardComponent.IPngCodec + nameWithType: X11ClipboardComponent.IPngCodec + fullName: OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec + spec.csharp: + - uid: OpenTK.Platform.Native.X11.X11ClipboardComponent + name: X11ClipboardComponent + href: OpenTK.Platform.Native.X11.X11ClipboardComponent.html + - name: . + - uid: OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec + name: IPngCodec + href: OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec.html + spec.vb: + - uid: OpenTK.Platform.Native.X11.X11ClipboardComponent + name: X11ClipboardComponent + href: OpenTK.Platform.Native.X11.X11ClipboardComponent.html + - name: . + - uid: OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec + name: IPngCodec + href: OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec.html +- uid: OpenTK.Platform.IClipboardComponent.SetClipboardBitmap(OpenTK.Platform.Bitmap) + commentId: M:OpenTK.Platform.IClipboardComponent.SetClipboardBitmap(OpenTK.Platform.Bitmap) + parent: OpenTK.Platform.IClipboardComponent + href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_SetClipboardBitmap_OpenTK_Platform_Bitmap_ + name: SetClipboardBitmap(Bitmap) + nameWithType: IClipboardComponent.SetClipboardBitmap(Bitmap) + fullName: OpenTK.Platform.IClipboardComponent.SetClipboardBitmap(OpenTK.Platform.Bitmap) + spec.csharp: + - uid: OpenTK.Platform.IClipboardComponent.SetClipboardBitmap(OpenTK.Platform.Bitmap) + name: SetClipboardBitmap + href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_SetClipboardBitmap_OpenTK_Platform_Bitmap_ + - name: ( + - uid: OpenTK.Platform.Bitmap + name: Bitmap + href: OpenTK.Platform.Bitmap.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IClipboardComponent.SetClipboardBitmap(OpenTK.Platform.Bitmap) + name: SetClipboardBitmap + href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_SetClipboardBitmap_OpenTK_Platform_Bitmap_ + - name: ( + - uid: OpenTK.Platform.Bitmap + name: Bitmap + href: OpenTK.Platform.Bitmap.html + - name: ) - uid: OpenTK.Platform.IClipboardComponent.GetClipboardBitmap commentId: M:OpenTK.Platform.IClipboardComponent.GetClipboardBitmap parent: OpenTK.Platform.IClipboardComponent @@ -1106,6 +1356,12 @@ references: href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_GetClipboardBitmap - name: ( - name: ) +- uid: OpenTK.Platform.Native.SDL.SDLClipboardComponent.SetClipboardBitmap* + commentId: Overload:OpenTK.Platform.Native.SDL.SDLClipboardComponent.SetClipboardBitmap + href: OpenTK.Platform.Native.SDL.SDLClipboardComponent.html#OpenTK_Platform_Native_SDL_SDLClipboardComponent_SetClipboardBitmap_OpenTK_Platform_Bitmap_ + name: SetClipboardBitmap + nameWithType: SDLClipboardComponent.SetClipboardBitmap + fullName: OpenTK.Platform.Native.SDL.SDLClipboardComponent.SetClipboardBitmap - uid: OpenTK.Platform.Bitmap commentId: T:OpenTK.Platform.Bitmap parent: OpenTK.Platform @@ -1113,6 +1369,56 @@ references: name: Bitmap nameWithType: Bitmap fullName: OpenTK.Platform.Bitmap +- uid: OpenTK.Platform.Native.X11 + commentId: N:OpenTK.Platform.Native.X11 + href: OpenTK.html + name: OpenTK.Platform.Native.X11 + nameWithType: OpenTK.Platform.Native.X11 + fullName: OpenTK.Platform.Native.X11 + spec.csharp: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Platform + name: Platform + href: OpenTK.Platform.html + - name: . + - uid: OpenTK.Platform.Native + name: Native + href: OpenTK.Platform.Native.html + - name: . + - uid: OpenTK.Platform.Native.X11 + name: X11 + href: OpenTK.Platform.Native.X11.html + spec.vb: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Platform + name: Platform + href: OpenTK.Platform.html + - name: . + - uid: OpenTK.Platform.Native + name: Native + href: OpenTK.Platform.Native.html + - name: . + - uid: OpenTK.Platform.Native.X11 + name: X11 + href: OpenTK.Platform.Native.X11.html +- uid: OpenTK.Platform.ClipboardFormat.Bitmap + commentId: F:OpenTK.Platform.ClipboardFormat.Bitmap + href: OpenTK.Platform.ClipboardFormat.html#OpenTK_Platform_ClipboardFormat_Bitmap + name: Bitmap + nameWithType: ClipboardFormat.Bitmap + fullName: OpenTK.Platform.ClipboardFormat.Bitmap +- uid: OpenTK.Platform.Native.SDL.SDLClipboardComponent.GetClipboardBitmap* + commentId: Overload:OpenTK.Platform.Native.SDL.SDLClipboardComponent.GetClipboardBitmap + href: OpenTK.Platform.Native.SDL.SDLClipboardComponent.html#OpenTK_Platform_Native_SDL_SDLClipboardComponent_GetClipboardBitmap + name: GetClipboardBitmap + nameWithType: SDLClipboardComponent.GetClipboardBitmap + fullName: OpenTK.Platform.Native.SDL.SDLClipboardComponent.GetClipboardBitmap - uid: OpenTK.Platform.ClipboardFormat.Files commentId: F:OpenTK.Platform.ClipboardFormat.Files href: OpenTK.Platform.ClipboardFormat.html#OpenTK_Platform_ClipboardFormat_Files diff --git a/api/OpenTK.Platform.Native.SDL.SDLCursorComponent.yml b/api/OpenTK.Platform.Native.SDL.SDLCursorComponent.yml index 63be3795..31a69d0f 100644 --- a/api/OpenTK.Platform.Native.SDL.SDLCursorComponent.yml +++ b/api/OpenTK.Platform.Native.SDL.SDLCursorComponent.yml @@ -18,6 +18,7 @@ items: - OpenTK.Platform.Native.SDL.SDLCursorComponent.Logger - OpenTK.Platform.Native.SDL.SDLCursorComponent.Name - OpenTK.Platform.Native.SDL.SDLCursorComponent.Provides + - OpenTK.Platform.Native.SDL.SDLCursorComponent.Uninitialize langs: - csharp - vb @@ -124,7 +125,7 @@ items: assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL - summary: Provides a logger for this component. + summary: The logger that this component uses to log diagnostic messages. example: [] syntax: content: public ILogger? Logger { get; set; } @@ -133,6 +134,11 @@ items: type: OpenTK.Core.Utility.ILogger content.vb: Public Property Logger As ILogger overload: OpenTK.Platform.Native.SDL.SDLCursorComponent.Logger* + seealso: + - linkId: OpenTK.Core.Utility.ILogger + commentId: T:OpenTK.Core.Utility.ILogger + - linkId: OpenTK.Platform.ToolkitOptions.Logger + commentId: P:OpenTK.Platform.ToolkitOptions.Logger implements: - OpenTK.Platform.IPalComponent.Logger - uid: OpenTK.Platform.Native.SDL.SDLCursorComponent.Initialize(OpenTK.Platform.ToolkitOptions) @@ -163,8 +169,42 @@ items: description: The options to initialize the component with. content.vb: Public Sub Initialize(options As ToolkitOptions) overload: OpenTK.Platform.Native.SDL.SDLCursorComponent.Initialize* + seealso: + - linkId: OpenTK.Platform.ToolkitOptions + commentId: T:OpenTK.Platform.ToolkitOptions + - linkId: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) implements: - OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) +- uid: OpenTK.Platform.Native.SDL.SDLCursorComponent.Uninitialize + commentId: M:OpenTK.Platform.Native.SDL.SDLCursorComponent.Uninitialize + id: Uninitialize + parent: OpenTK.Platform.Native.SDL.SDLCursorComponent + langs: + - csharp + - vb + name: Uninitialize() + nameWithType: SDLCursorComponent.Uninitialize() + fullName: OpenTK.Platform.Native.SDL.SDLCursorComponent.Uninitialize() + type: Method + source: + id: Uninitialize + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLCursorComponent.cs + startLine: 30 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform.Native.SDL + summary: Uninitialize the component. Frees any native resources used by the component. + example: [] + syntax: + content: public void Uninitialize() + content.vb: Public Sub Uninitialize() + overload: OpenTK.Platform.Native.SDL.SDLCursorComponent.Uninitialize* + seealso: + - linkId: OpenTK.Platform.Toolkit.Uninit + commentId: M:OpenTK.Platform.Toolkit.Uninit + implements: + - OpenTK.Platform.IPalComponent.Uninitialize - uid: OpenTK.Platform.Native.SDL.SDLCursorComponent.CanLoadSystemCursors commentId: P:OpenTK.Platform.Native.SDL.SDLCursorComponent.CanLoadSystemCursors id: CanLoadSystemCursors @@ -179,7 +219,7 @@ items: source: id: CanLoadSystemCursors path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLCursorComponent.cs - startLine: 30 + startLine: 35 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL @@ -211,16 +251,16 @@ items: source: id: CanInspectSystemCursors path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLCursorComponent.cs - startLine: 33 + startLine: 38 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: >- True if the backend supports inspecting system cursor handles. - If true, functions like and works on system cursors. + If true, functions like and works on system cursors. - If false, these functions will fail. + If fals, these functions will fail. example: [] syntax: content: public bool CanInspectSystemCursors { get; } @@ -234,6 +274,10 @@ items: commentId: M:OpenTK.Platform.ICursorComponent.GetSize(OpenTK.Platform.CursorHandle,System.Int32@,System.Int32@) - linkId: OpenTK.Platform.ICursorComponent.GetHotspot(OpenTK.Platform.CursorHandle,System.Int32@,System.Int32@) commentId: M:OpenTK.Platform.ICursorComponent.GetHotspot(OpenTK.Platform.CursorHandle,System.Int32@,System.Int32@) + - linkId: OpenTK.Platform.ICursorComponent.CanLoadSystemCursors + commentId: P:OpenTK.Platform.ICursorComponent.CanLoadSystemCursors + - linkId: OpenTK.Platform.ICursorComponent.Create(OpenTK.Platform.SystemCursorType) + commentId: M:OpenTK.Platform.ICursorComponent.Create(OpenTK.Platform.SystemCursorType) implements: - OpenTK.Platform.ICursorComponent.CanInspectSystemCursors - uid: OpenTK.Platform.Native.SDL.SDLCursorComponent.Create(OpenTK.Platform.SystemCursorType) @@ -250,12 +294,12 @@ items: source: id: Create path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLCursorComponent.cs - startLine: 36 + startLine: 41 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: Create a standard system cursor. - remarks: This function is only supported if is true. + remarks: This function is only supported if is true. example: [] syntax: content: public CursorHandle Create(SystemCursorType systemCursor) @@ -269,12 +313,16 @@ items: content.vb: Public Function Create(systemCursor As SystemCursorType) As CursorHandle overload: OpenTK.Platform.Native.SDL.SDLCursorComponent.Create* exceptions: - - type: OpenTK.Platform.PalNotImplementedException - commentId: T:OpenTK.Platform.PalNotImplementedException + - type: System.PlatformNotSupportedException + commentId: T:System.PlatformNotSupportedException description: Driver does not implement this function. See . - - type: OpenTK.Platform.PlatformException - commentId: T:OpenTK.Platform.PlatformException - description: System does not provide cursor type selected by systemCursor. + seealso: + - linkId: OpenTK.Platform.ICursorComponent.CanLoadSystemCursors + commentId: P:OpenTK.Platform.ICursorComponent.CanLoadSystemCursors + - linkId: OpenTK.Platform.SystemCursorType + commentId: T:OpenTK.Platform.SystemCursorType + - linkId: OpenTK.Platform.ICursorComponent.Destroy(OpenTK.Platform.CursorHandle) + commentId: M:OpenTK.Platform.ICursorComponent.Destroy(OpenTK.Platform.CursorHandle) implements: - OpenTK.Platform.ICursorComponent.Create(OpenTK.Platform.SystemCursorType) - uid: OpenTK.Platform.Native.SDL.SDLCursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.Int32,System.Int32) @@ -291,7 +339,7 @@ items: source: id: Create path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLCursorComponent.cs - startLine: 114 + startLine: 119 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL @@ -308,7 +356,7 @@ items: description: Height of the cursor image. - id: image type: System.ReadOnlySpan{System.Byte} - description: Buffer containing image data. + description: Buffer containing image data in RGBA order. - id: hotspotX type: System.Int32 description: The x coordinate of the cursor hotspot. @@ -323,10 +371,16 @@ items: exceptions: - type: System.ArgumentOutOfRangeException commentId: T:System.ArgumentOutOfRangeException - description: width or height is negative. + description: If width, height, hotspotX, or hotspotY are negative. + - type: System.ArgumentOutOfRangeException + commentId: T:System.ArgumentOutOfRangeException + description: If hotspotX or hotspotY are greater than width or height respectively. - type: System.ArgumentException commentId: T:System.ArgumentException description: image is smaller than specified dimensions. + seealso: + - linkId: OpenTK.Platform.ICursorComponent.Destroy(OpenTK.Platform.CursorHandle) + commentId: M:OpenTK.Platform.ICursorComponent.Destroy(OpenTK.Platform.CursorHandle) implements: - OpenTK.Platform.ICursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.Int32,System.Int32) nameWithType.vb: SDLCursorComponent.Create(Integer, Integer, ReadOnlySpan(Of Byte), Integer, Integer) @@ -346,7 +400,7 @@ items: source: id: Create path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLCursorComponent.cs - startLine: 140 + startLine: 155 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL @@ -363,10 +417,10 @@ items: description: Height of the cursor image. - id: colorData type: System.ReadOnlySpan{System.Byte} - description: Buffer containing color data. + description: Buffer containing RGB color data. - id: maskData type: System.ReadOnlySpan{System.Byte} - description: Buffer containing mask data. + description: Buffer containing mask data. Pixels where the mask is 1 will be visible while mask value of 0 is transparent. - id: hotspotX type: System.Int32 description: The x coordinate of the cursor hotspot. @@ -381,10 +435,16 @@ items: exceptions: - type: System.ArgumentOutOfRangeException commentId: T:System.ArgumentOutOfRangeException - description: width or height is negative. + description: If width, height, hotspotX, or hotspotY are negative. + - type: System.ArgumentOutOfRangeException + commentId: T:System.ArgumentOutOfRangeException + description: If hotspotX or hotspotY are greater than width or height respectively. - type: System.ArgumentException commentId: T:System.ArgumentException description: colorData or maskData is smaller than specified dimensions. + seealso: + - linkId: OpenTK.Platform.ICursorComponent.Destroy(OpenTK.Platform.CursorHandle) + commentId: M:OpenTK.Platform.ICursorComponent.Destroy(OpenTK.Platform.CursorHandle) implements: - OpenTK.Platform.ICursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.ReadOnlySpan{System.Byte},System.Int32,System.Int32) nameWithType.vb: SDLCursorComponent.Create(Integer, Integer, ReadOnlySpan(Of Byte), ReadOnlySpan(Of Byte), Integer, Integer) @@ -404,7 +464,7 @@ items: source: id: Destroy path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLCursorComponent.cs - startLine: 167 + startLine: 193 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL @@ -418,10 +478,13 @@ items: description: Handle to a cursor object. content.vb: Public Sub Destroy(handle As CursorHandle) overload: OpenTK.Platform.Native.SDL.SDLCursorComponent.Destroy* - exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: handle is null. + seealso: + - linkId: OpenTK.Platform.ICursorComponent.Create(OpenTK.Platform.SystemCursorType) + commentId: M:OpenTK.Platform.ICursorComponent.Create(OpenTK.Platform.SystemCursorType) + - linkId: OpenTK.Platform.ICursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.Int32,System.Int32) + commentId: M:OpenTK.Platform.ICursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.Int32,System.Int32) + - linkId: OpenTK.Platform.ICursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.ReadOnlySpan{System.Byte},System.Int32,System.Int32) + commentId: M:OpenTK.Platform.ICursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.ReadOnlySpan{System.Byte},System.Int32,System.Int32) implements: - OpenTK.Platform.ICursorComponent.Destroy(OpenTK.Platform.CursorHandle) - uid: OpenTK.Platform.Native.SDL.SDLCursorComponent.IsSystemCursor(OpenTK.Platform.CursorHandle) @@ -438,11 +501,11 @@ items: source: id: IsSystemCursor path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLCursorComponent.cs - startLine: 198 + startLine: 224 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL - summary: Returns true if this cursor is a system cursor. + summary: Returns true if this cursor is a system cursor. example: [] syntax: content: public bool IsSystemCursor(CursorHandle handle) @@ -458,6 +521,8 @@ items: seealso: - linkId: OpenTK.Platform.ICursorComponent.Create(OpenTK.Platform.SystemCursorType) commentId: M:OpenTK.Platform.ICursorComponent.Create(OpenTK.Platform.SystemCursorType) + - linkId: OpenTK.Platform.ICursorComponent.CanLoadSystemCursors + commentId: P:OpenTK.Platform.ICursorComponent.CanLoadSystemCursors implements: - OpenTK.Platform.ICursorComponent.IsSystemCursor(OpenTK.Platform.CursorHandle) - uid: OpenTK.Platform.Native.SDL.SDLCursorComponent.GetSize(OpenTK.Platform.CursorHandle,System.Int32@,System.Int32@) @@ -474,12 +539,12 @@ items: source: id: GetSize path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLCursorComponent.cs - startLine: 205 + startLine: 231 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: Get the size of the cursor image. - remarks: If handle is a system cursor and is false this function will fail. + remarks: If handle is a system cursor and is false this function will fail. example: [] syntax: content: public void GetSize(CursorHandle handle, out int width, out int height) @@ -495,10 +560,6 @@ items: description: Height of the cursor. content.vb: Public Sub GetSize(handle As CursorHandle, width As Integer, height As Integer) overload: OpenTK.Platform.Native.SDL.SDLCursorComponent.GetSize* - exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: handle is null. seealso: - linkId: OpenTK.Platform.ICursorComponent.IsSystemCursor(OpenTK.Platform.CursorHandle) commentId: M:OpenTK.Platform.ICursorComponent.IsSystemCursor(OpenTK.Platform.CursorHandle) @@ -523,14 +584,11 @@ items: source: id: GetHotspot path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLCursorComponent.cs - startLine: 219 + startLine: 245 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL - summary: >- - Get the hotspot location of the mouse cursor. - - Getting the hotspot of a system cursor is not guaranteed to be possible, check before trying. + summary: Get the hotspot location of the mouse cursor. remarks: If handle is a system cursor and is false this function will fail. example: [] syntax: @@ -547,10 +605,6 @@ items: description: Y coordinate of the hotspot. content.vb: Public Sub GetHotspot(handle As CursorHandle, x As Integer, y As Integer) overload: OpenTK.Platform.Native.SDL.SDLCursorComponent.GetHotspot* - exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: handle is null. seealso: - linkId: OpenTK.Platform.ICursorComponent.IsSystemCursor(OpenTK.Platform.CursorHandle) commentId: M:OpenTK.Platform.ICursorComponent.IsSystemCursor(OpenTK.Platform.CursorHandle) @@ -917,6 +971,19 @@ references: name: PalComponents nameWithType: PalComponents fullName: OpenTK.Platform.PalComponents +- uid: OpenTK.Core.Utility.ILogger + commentId: T:OpenTK.Core.Utility.ILogger + parent: OpenTK.Core.Utility + href: OpenTK.Core.Utility.ILogger.html + name: ILogger + nameWithType: ILogger + fullName: OpenTK.Core.Utility.ILogger +- uid: OpenTK.Platform.ToolkitOptions.Logger + commentId: P:OpenTK.Platform.ToolkitOptions.Logger + href: OpenTK.Platform.ToolkitOptions.html#OpenTK_Platform_ToolkitOptions_Logger + name: Logger + nameWithType: ToolkitOptions.Logger + fullName: OpenTK.Platform.ToolkitOptions.Logger - uid: OpenTK.Platform.Native.SDL.SDLCursorComponent.Logger* commentId: Overload:OpenTK.Platform.Native.SDL.SDLCursorComponent.Logger href: OpenTK.Platform.Native.SDL.SDLCursorComponent.html#OpenTK_Platform_Native_SDL_SDLCursorComponent_Logger @@ -930,13 +997,6 @@ references: name: Logger nameWithType: IPalComponent.Logger fullName: OpenTK.Platform.IPalComponent.Logger -- uid: OpenTK.Core.Utility.ILogger - commentId: T:OpenTK.Core.Utility.ILogger - parent: OpenTK.Core.Utility - href: OpenTK.Core.Utility.ILogger.html - name: ILogger - nameWithType: ILogger - fullName: OpenTK.Core.Utility.ILogger - uid: OpenTK.Core.Utility commentId: N:OpenTK.Core.Utility href: OpenTK.html @@ -967,6 +1027,37 @@ references: - uid: OpenTK.Core.Utility name: Utility href: OpenTK.Core.Utility.html +- uid: OpenTK.Platform.ToolkitOptions + commentId: T:OpenTK.Platform.ToolkitOptions + parent: OpenTK.Platform + href: OpenTK.Platform.ToolkitOptions.html + name: ToolkitOptions + nameWithType: ToolkitOptions + fullName: OpenTK.Platform.ToolkitOptions +- uid: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Init_OpenTK_Platform_ToolkitOptions_ + name: Init(ToolkitOptions) + nameWithType: Toolkit.Init(ToolkitOptions) + fullName: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + spec.csharp: + - uid: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + name: Init + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Init_OpenTK_Platform_ToolkitOptions_ + - name: ( + - uid: OpenTK.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Platform.ToolkitOptions.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + name: Init + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Init_OpenTK_Platform_ToolkitOptions_ + - name: ( + - uid: OpenTK.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Platform.ToolkitOptions.html + - name: ) - uid: OpenTK.Platform.Native.SDL.SDLCursorComponent.Initialize* commentId: Overload:OpenTK.Platform.Native.SDL.SDLCursorComponent.Initialize href: OpenTK.Platform.Native.SDL.SDLCursorComponent.html#OpenTK_Platform_Native_SDL_SDLCursorComponent_Initialize_OpenTK_Platform_ToolkitOptions_ @@ -998,13 +1089,49 @@ references: name: ToolkitOptions href: OpenTK.Platform.ToolkitOptions.html - name: ) -- uid: OpenTK.Platform.ToolkitOptions - commentId: T:OpenTK.Platform.ToolkitOptions - parent: OpenTK.Platform - href: OpenTK.Platform.ToolkitOptions.html - name: ToolkitOptions - nameWithType: ToolkitOptions - fullName: OpenTK.Platform.ToolkitOptions +- uid: OpenTK.Platform.Toolkit.Uninit + commentId: M:OpenTK.Platform.Toolkit.Uninit + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Uninit + name: Uninit() + nameWithType: Toolkit.Uninit() + fullName: OpenTK.Platform.Toolkit.Uninit() + spec.csharp: + - uid: OpenTK.Platform.Toolkit.Uninit + name: Uninit + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Uninit + - name: ( + - name: ) + spec.vb: + - uid: OpenTK.Platform.Toolkit.Uninit + name: Uninit + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Uninit + - name: ( + - name: ) +- uid: OpenTK.Platform.Native.SDL.SDLCursorComponent.Uninitialize* + commentId: Overload:OpenTK.Platform.Native.SDL.SDLCursorComponent.Uninitialize + href: OpenTK.Platform.Native.SDL.SDLCursorComponent.html#OpenTK_Platform_Native_SDL_SDLCursorComponent_Uninitialize + name: Uninitialize + nameWithType: SDLCursorComponent.Uninitialize + fullName: OpenTK.Platform.Native.SDL.SDLCursorComponent.Uninitialize +- uid: OpenTK.Platform.IPalComponent.Uninitialize + commentId: M:OpenTK.Platform.IPalComponent.Uninitialize + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + name: Uninitialize() + nameWithType: IPalComponent.Uninitialize() + fullName: OpenTK.Platform.IPalComponent.Uninitialize() + spec.csharp: + - uid: OpenTK.Platform.IPalComponent.Uninitialize + name: Uninitialize + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + - name: ( + - name: ) + spec.vb: + - uid: OpenTK.Platform.IPalComponent.Uninitialize + name: Uninitialize + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + - name: ( + - name: ) - uid: OpenTK.Platform.ICursorComponent.Create(OpenTK.Platform.SystemCursorType) commentId: M:OpenTK.Platform.ICursorComponent.Create(OpenTK.Platform.SystemCursorType) parent: OpenTK.Platform.ICursorComponent @@ -1181,24 +1308,6 @@ references: name: CanInspectSystemCursors nameWithType: ICursorComponent.CanInspectSystemCursors fullName: OpenTK.Platform.ICursorComponent.CanInspectSystemCursors -- uid: OpenTK.Platform.PalNotImplementedException - commentId: T:OpenTK.Platform.PalNotImplementedException - href: OpenTK.Platform.PalNotImplementedException.html - name: PalNotImplementedException - nameWithType: PalNotImplementedException - fullName: OpenTK.Platform.PalNotImplementedException -- uid: OpenTK.Platform.PlatformException - commentId: T:OpenTK.Platform.PlatformException - href: OpenTK.Platform.PlatformException.html - name: PlatformException - nameWithType: PlatformException - fullName: OpenTK.Platform.PlatformException -- uid: OpenTK.Platform.Native.SDL.SDLCursorComponent.Create* - commentId: Overload:OpenTK.Platform.Native.SDL.SDLCursorComponent.Create - href: OpenTK.Platform.Native.SDL.SDLCursorComponent.html#OpenTK_Platform_Native_SDL_SDLCursorComponent_Create_OpenTK_Platform_SystemCursorType_ - name: Create - nameWithType: SDLCursorComponent.Create - fullName: OpenTK.Platform.Native.SDL.SDLCursorComponent.Create - uid: OpenTK.Platform.SystemCursorType commentId: T:OpenTK.Platform.SystemCursorType parent: OpenTK.Platform @@ -1206,6 +1315,44 @@ references: name: SystemCursorType nameWithType: SystemCursorType fullName: OpenTK.Platform.SystemCursorType +- uid: OpenTK.Platform.ICursorComponent.Destroy(OpenTK.Platform.CursorHandle) + commentId: M:OpenTK.Platform.ICursorComponent.Destroy(OpenTK.Platform.CursorHandle) + parent: OpenTK.Platform.ICursorComponent + href: OpenTK.Platform.ICursorComponent.html#OpenTK_Platform_ICursorComponent_Destroy_OpenTK_Platform_CursorHandle_ + name: Destroy(CursorHandle) + nameWithType: ICursorComponent.Destroy(CursorHandle) + fullName: OpenTK.Platform.ICursorComponent.Destroy(OpenTK.Platform.CursorHandle) + spec.csharp: + - uid: OpenTK.Platform.ICursorComponent.Destroy(OpenTK.Platform.CursorHandle) + name: Destroy + href: OpenTK.Platform.ICursorComponent.html#OpenTK_Platform_ICursorComponent_Destroy_OpenTK_Platform_CursorHandle_ + - name: ( + - uid: OpenTK.Platform.CursorHandle + name: CursorHandle + href: OpenTK.Platform.CursorHandle.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.ICursorComponent.Destroy(OpenTK.Platform.CursorHandle) + name: Destroy + href: OpenTK.Platform.ICursorComponent.html#OpenTK_Platform_ICursorComponent_Destroy_OpenTK_Platform_CursorHandle_ + - name: ( + - uid: OpenTK.Platform.CursorHandle + name: CursorHandle + href: OpenTK.Platform.CursorHandle.html + - name: ) +- uid: System.PlatformNotSupportedException + commentId: T:System.PlatformNotSupportedException + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.platformnotsupportedexception + name: PlatformNotSupportedException + nameWithType: PlatformNotSupportedException + fullName: System.PlatformNotSupportedException +- uid: OpenTK.Platform.Native.SDL.SDLCursorComponent.Create* + commentId: Overload:OpenTK.Platform.Native.SDL.SDLCursorComponent.Create + href: OpenTK.Platform.Native.SDL.SDLCursorComponent.html#OpenTK_Platform_Native_SDL_SDLCursorComponent_Create_OpenTK_Platform_SystemCursorType_ + name: Create + nameWithType: SDLCursorComponent.Create + fullName: OpenTK.Platform.Native.SDL.SDLCursorComponent.Create - uid: OpenTK.Platform.CursorHandle commentId: T:OpenTK.Platform.CursorHandle parent: OpenTK.Platform @@ -1513,44 +1660,12 @@ references: isExternal: true href: https://learn.microsoft.com/dotnet/api/system.int32 - name: ) -- uid: System.ArgumentNullException - commentId: T:System.ArgumentNullException - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.argumentnullexception - name: ArgumentNullException - nameWithType: ArgumentNullException - fullName: System.ArgumentNullException - uid: OpenTK.Platform.Native.SDL.SDLCursorComponent.Destroy* commentId: Overload:OpenTK.Platform.Native.SDL.SDLCursorComponent.Destroy href: OpenTK.Platform.Native.SDL.SDLCursorComponent.html#OpenTK_Platform_Native_SDL_SDLCursorComponent_Destroy_OpenTK_Platform_CursorHandle_ name: Destroy nameWithType: SDLCursorComponent.Destroy fullName: OpenTK.Platform.Native.SDL.SDLCursorComponent.Destroy -- uid: OpenTK.Platform.ICursorComponent.Destroy(OpenTK.Platform.CursorHandle) - commentId: M:OpenTK.Platform.ICursorComponent.Destroy(OpenTK.Platform.CursorHandle) - parent: OpenTK.Platform.ICursorComponent - href: OpenTK.Platform.ICursorComponent.html#OpenTK_Platform_ICursorComponent_Destroy_OpenTK_Platform_CursorHandle_ - name: Destroy(CursorHandle) - nameWithType: ICursorComponent.Destroy(CursorHandle) - fullName: OpenTK.Platform.ICursorComponent.Destroy(OpenTK.Platform.CursorHandle) - spec.csharp: - - uid: OpenTK.Platform.ICursorComponent.Destroy(OpenTK.Platform.CursorHandle) - name: Destroy - href: OpenTK.Platform.ICursorComponent.html#OpenTK_Platform_ICursorComponent_Destroy_OpenTK_Platform_CursorHandle_ - - name: ( - - uid: OpenTK.Platform.CursorHandle - name: CursorHandle - href: OpenTK.Platform.CursorHandle.html - - name: ) - spec.vb: - - uid: OpenTK.Platform.ICursorComponent.Destroy(OpenTK.Platform.CursorHandle) - name: Destroy - href: OpenTK.Platform.ICursorComponent.html#OpenTK_Platform_ICursorComponent_Destroy_OpenTK_Platform_CursorHandle_ - - name: ( - - uid: OpenTK.Platform.CursorHandle - name: CursorHandle - href: OpenTK.Platform.CursorHandle.html - - name: ) - uid: OpenTK.Platform.Native.SDL.SDLCursorComponent.IsSystemCursor* commentId: Overload:OpenTK.Platform.Native.SDL.SDLCursorComponent.IsSystemCursor href: OpenTK.Platform.Native.SDL.SDLCursorComponent.html#OpenTK_Platform_Native_SDL_SDLCursorComponent_IsSystemCursor_OpenTK_Platform_CursorHandle_ diff --git a/api/OpenTK.Platform.Native.SDL.SDLDisplayComponent.yml b/api/OpenTK.Platform.Native.SDL.SDLDisplayComponent.yml index 3ff67726..e9d8022c 100644 --- a/api/OpenTK.Platform.Native.SDL.SDLDisplayComponent.yml +++ b/api/OpenTK.Platform.Native.SDL.SDLDisplayComponent.yml @@ -24,6 +24,7 @@ items: - OpenTK.Platform.Native.SDL.SDLDisplayComponent.Open(System.Int32) - OpenTK.Platform.Native.SDL.SDLDisplayComponent.OpenPrimary - OpenTK.Platform.Native.SDL.SDLDisplayComponent.Provides + - OpenTK.Platform.Native.SDL.SDLDisplayComponent.Uninitialize langs: - csharp - vb @@ -130,7 +131,7 @@ items: assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL - summary: Provides a logger for this component. + summary: The logger that this component uses to log diagnostic messages. example: [] syntax: content: public ILogger? Logger { get; set; } @@ -139,6 +140,11 @@ items: type: OpenTK.Core.Utility.ILogger content.vb: Public Property Logger As ILogger overload: OpenTK.Platform.Native.SDL.SDLDisplayComponent.Logger* + seealso: + - linkId: OpenTK.Core.Utility.ILogger + commentId: T:OpenTK.Core.Utility.ILogger + - linkId: OpenTK.Platform.ToolkitOptions.Logger + commentId: P:OpenTK.Platform.ToolkitOptions.Logger implements: - OpenTK.Platform.IPalComponent.Logger - uid: OpenTK.Platform.Native.SDL.SDLDisplayComponent.Initialize(OpenTK.Platform.ToolkitOptions) @@ -169,8 +175,42 @@ items: description: The options to initialize the component with. content.vb: Public Sub Initialize(options As ToolkitOptions) overload: OpenTK.Platform.Native.SDL.SDLDisplayComponent.Initialize* + seealso: + - linkId: OpenTK.Platform.ToolkitOptions + commentId: T:OpenTK.Platform.ToolkitOptions + - linkId: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) implements: - OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) +- uid: OpenTK.Platform.Native.SDL.SDLDisplayComponent.Uninitialize + commentId: M:OpenTK.Platform.Native.SDL.SDLDisplayComponent.Uninitialize + id: Uninitialize + parent: OpenTK.Platform.Native.SDL.SDLDisplayComponent + langs: + - csharp + - vb + name: Uninitialize() + nameWithType: SDLDisplayComponent.Uninitialize() + fullName: OpenTK.Platform.Native.SDL.SDLDisplayComponent.Uninitialize() + type: Method + source: + id: Uninitialize + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLDisplayComponent.cs + startLine: 32 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform.Native.SDL + summary: Uninitialize the component. Frees any native resources used by the component. + example: [] + syntax: + content: public void Uninitialize() + content.vb: Public Sub Uninitialize() + overload: OpenTK.Platform.Native.SDL.SDLDisplayComponent.Uninitialize* + seealso: + - linkId: OpenTK.Platform.Toolkit.Uninit + commentId: M:OpenTK.Platform.Toolkit.Uninit + implements: + - OpenTK.Platform.IPalComponent.Uninitialize - uid: OpenTK.Platform.Native.SDL.SDLDisplayComponent.CanSetVideoMode commentId: P:OpenTK.Platform.Native.SDL.SDLDisplayComponent.CanSetVideoMode id: CanSetVideoMode @@ -185,7 +225,7 @@ items: source: id: CanSetVideoMode path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLDisplayComponent.cs - startLine: 32 + startLine: 37 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL @@ -211,7 +251,7 @@ items: source: id: CanGetVirtualPosition path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLDisplayComponent.cs - startLine: 35 + startLine: 40 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL @@ -240,7 +280,7 @@ items: source: id: GetDisplayCount path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLDisplayComponent.cs - startLine: 58 + startLine: 63 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL @@ -269,7 +309,7 @@ items: source: id: Open path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLDisplayComponent.cs - startLine: 64 + startLine: 69 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL @@ -309,7 +349,7 @@ items: source: id: OpenPrimary path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLDisplayComponent.cs - startLine: 77 + startLine: 82 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL @@ -338,7 +378,7 @@ items: source: id: Close path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLDisplayComponent.cs - startLine: 84 + startLine: 89 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL @@ -372,7 +412,7 @@ items: source: id: IsPrimary path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLDisplayComponent.cs - startLine: 91 + startLine: 96 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL @@ -405,7 +445,7 @@ items: source: id: GetName path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLDisplayComponent.cs - startLine: 100 + startLine: 105 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL @@ -442,7 +482,7 @@ items: source: id: GetVideoMode path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLDisplayComponent.cs - startLine: 115 + startLine: 120 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL @@ -482,7 +522,7 @@ items: source: id: GetSupportedVideoModes path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLDisplayComponent.cs - startLine: 131 + startLine: 136 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL @@ -519,7 +559,7 @@ items: source: id: GetVirtualPosition path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLDisplayComponent.cs - startLine: 154 + startLine: 159 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL @@ -565,7 +605,7 @@ items: source: id: GetResolution path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLDisplayComponent.cs - startLine: 170 + startLine: 175 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL @@ -608,7 +648,7 @@ items: source: id: GetWorkArea path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLDisplayComponent.cs - startLine: 186 + startLine: 191 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL @@ -647,7 +687,7 @@ items: source: id: GetRefreshRate path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLDisplayComponent.cs - startLine: 201 + startLine: 206 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL @@ -683,7 +723,7 @@ items: source: id: GetDisplayScale path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLDisplayComponent.cs - startLine: 216 + startLine: 221 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL @@ -1064,6 +1104,19 @@ references: name: PalComponents nameWithType: PalComponents fullName: OpenTK.Platform.PalComponents +- uid: OpenTK.Core.Utility.ILogger + commentId: T:OpenTK.Core.Utility.ILogger + parent: OpenTK.Core.Utility + href: OpenTK.Core.Utility.ILogger.html + name: ILogger + nameWithType: ILogger + fullName: OpenTK.Core.Utility.ILogger +- uid: OpenTK.Platform.ToolkitOptions.Logger + commentId: P:OpenTK.Platform.ToolkitOptions.Logger + href: OpenTK.Platform.ToolkitOptions.html#OpenTK_Platform_ToolkitOptions_Logger + name: Logger + nameWithType: ToolkitOptions.Logger + fullName: OpenTK.Platform.ToolkitOptions.Logger - uid: OpenTK.Platform.Native.SDL.SDLDisplayComponent.Logger* commentId: Overload:OpenTK.Platform.Native.SDL.SDLDisplayComponent.Logger href: OpenTK.Platform.Native.SDL.SDLDisplayComponent.html#OpenTK_Platform_Native_SDL_SDLDisplayComponent_Logger @@ -1077,13 +1130,6 @@ references: name: Logger nameWithType: IPalComponent.Logger fullName: OpenTK.Platform.IPalComponent.Logger -- uid: OpenTK.Core.Utility.ILogger - commentId: T:OpenTK.Core.Utility.ILogger - parent: OpenTK.Core.Utility - href: OpenTK.Core.Utility.ILogger.html - name: ILogger - nameWithType: ILogger - fullName: OpenTK.Core.Utility.ILogger - uid: OpenTK.Core.Utility commentId: N:OpenTK.Core.Utility href: OpenTK.html @@ -1114,6 +1160,37 @@ references: - uid: OpenTK.Core.Utility name: Utility href: OpenTK.Core.Utility.html +- uid: OpenTK.Platform.ToolkitOptions + commentId: T:OpenTK.Platform.ToolkitOptions + parent: OpenTK.Platform + href: OpenTK.Platform.ToolkitOptions.html + name: ToolkitOptions + nameWithType: ToolkitOptions + fullName: OpenTK.Platform.ToolkitOptions +- uid: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Init_OpenTK_Platform_ToolkitOptions_ + name: Init(ToolkitOptions) + nameWithType: Toolkit.Init(ToolkitOptions) + fullName: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + spec.csharp: + - uid: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + name: Init + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Init_OpenTK_Platform_ToolkitOptions_ + - name: ( + - uid: OpenTK.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Platform.ToolkitOptions.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + name: Init + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Init_OpenTK_Platform_ToolkitOptions_ + - name: ( + - uid: OpenTK.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Platform.ToolkitOptions.html + - name: ) - uid: OpenTK.Platform.Native.SDL.SDLDisplayComponent.Initialize* commentId: Overload:OpenTK.Platform.Native.SDL.SDLDisplayComponent.Initialize href: OpenTK.Platform.Native.SDL.SDLDisplayComponent.html#OpenTK_Platform_Native_SDL_SDLDisplayComponent_Initialize_OpenTK_Platform_ToolkitOptions_ @@ -1145,13 +1222,49 @@ references: name: ToolkitOptions href: OpenTK.Platform.ToolkitOptions.html - name: ) -- uid: OpenTK.Platform.ToolkitOptions - commentId: T:OpenTK.Platform.ToolkitOptions - parent: OpenTK.Platform - href: OpenTK.Platform.ToolkitOptions.html - name: ToolkitOptions - nameWithType: ToolkitOptions - fullName: OpenTK.Platform.ToolkitOptions +- uid: OpenTK.Platform.Toolkit.Uninit + commentId: M:OpenTK.Platform.Toolkit.Uninit + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Uninit + name: Uninit() + nameWithType: Toolkit.Uninit() + fullName: OpenTK.Platform.Toolkit.Uninit() + spec.csharp: + - uid: OpenTK.Platform.Toolkit.Uninit + name: Uninit + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Uninit + - name: ( + - name: ) + spec.vb: + - uid: OpenTK.Platform.Toolkit.Uninit + name: Uninit + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Uninit + - name: ( + - name: ) +- uid: OpenTK.Platform.Native.SDL.SDLDisplayComponent.Uninitialize* + commentId: Overload:OpenTK.Platform.Native.SDL.SDLDisplayComponent.Uninitialize + href: OpenTK.Platform.Native.SDL.SDLDisplayComponent.html#OpenTK_Platform_Native_SDL_SDLDisplayComponent_Uninitialize + name: Uninitialize + nameWithType: SDLDisplayComponent.Uninitialize + fullName: OpenTK.Platform.Native.SDL.SDLDisplayComponent.Uninitialize +- uid: OpenTK.Platform.IPalComponent.Uninitialize + commentId: M:OpenTK.Platform.IPalComponent.Uninitialize + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + name: Uninitialize() + nameWithType: IPalComponent.Uninitialize() + fullName: OpenTK.Platform.IPalComponent.Uninitialize() + spec.csharp: + - uid: OpenTK.Platform.IPalComponent.Uninitialize + name: Uninitialize + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + - name: ( + - name: ) + spec.vb: + - uid: OpenTK.Platform.IPalComponent.Uninitialize + name: Uninitialize + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + - name: ( + - name: ) - uid: OpenTK.Platform.Native.SDL.SDLDisplayComponent.CanSetVideoMode* commentId: Overload:OpenTK.Platform.Native.SDL.SDLDisplayComponent.CanSetVideoMode href: OpenTK.Platform.Native.SDL.SDLDisplayComponent.html#OpenTK_Platform_Native_SDL_SDLDisplayComponent_CanSetVideoMode diff --git a/api/OpenTK.Platform.Native.SDL.SDLIconComponent.yml b/api/OpenTK.Platform.Native.SDL.SDLIconComponent.yml index 99143c7f..56cba167 100644 --- a/api/OpenTK.Platform.Native.SDL.SDLIconComponent.yml +++ b/api/OpenTK.Platform.Native.SDL.SDLIconComponent.yml @@ -16,6 +16,7 @@ items: - OpenTK.Platform.Native.SDL.SDLIconComponent.Logger - OpenTK.Platform.Native.SDL.SDLIconComponent.Name - OpenTK.Platform.Native.SDL.SDLIconComponent.Provides + - OpenTK.Platform.Native.SDL.SDLIconComponent.Uninitialize langs: - csharp - vb @@ -122,7 +123,7 @@ items: assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL - summary: Provides a logger for this component. + summary: The logger that this component uses to log diagnostic messages. example: [] syntax: content: public ILogger? Logger { get; set; } @@ -131,6 +132,11 @@ items: type: OpenTK.Core.Utility.ILogger content.vb: Public Property Logger As ILogger overload: OpenTK.Platform.Native.SDL.SDLIconComponent.Logger* + seealso: + - linkId: OpenTK.Core.Utility.ILogger + commentId: T:OpenTK.Core.Utility.ILogger + - linkId: OpenTK.Platform.ToolkitOptions.Logger + commentId: P:OpenTK.Platform.ToolkitOptions.Logger implements: - OpenTK.Platform.IPalComponent.Logger - uid: OpenTK.Platform.Native.SDL.SDLIconComponent.Initialize(OpenTK.Platform.ToolkitOptions) @@ -161,8 +167,42 @@ items: description: The options to initialize the component with. content.vb: Public Sub Initialize(options As ToolkitOptions) overload: OpenTK.Platform.Native.SDL.SDLIconComponent.Initialize* + seealso: + - linkId: OpenTK.Platform.ToolkitOptions + commentId: T:OpenTK.Platform.ToolkitOptions + - linkId: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) implements: - OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) +- uid: OpenTK.Platform.Native.SDL.SDLIconComponent.Uninitialize + commentId: M:OpenTK.Platform.Native.SDL.SDLIconComponent.Uninitialize + id: Uninitialize + parent: OpenTK.Platform.Native.SDL.SDLIconComponent + langs: + - csharp + - vb + name: Uninitialize() + nameWithType: SDLIconComponent.Uninitialize() + fullName: OpenTK.Platform.Native.SDL.SDLIconComponent.Uninitialize() + type: Method + source: + id: Uninitialize + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLIconComponent.cs + startLine: 29 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform.Native.SDL + summary: Uninitialize the component. Frees any native resources used by the component. + example: [] + syntax: + content: public void Uninitialize() + content.vb: Public Sub Uninitialize() + overload: OpenTK.Platform.Native.SDL.SDLIconComponent.Uninitialize* + seealso: + - linkId: OpenTK.Platform.Toolkit.Uninit + commentId: M:OpenTK.Platform.Toolkit.Uninit + implements: + - OpenTK.Platform.IPalComponent.Uninitialize - uid: OpenTK.Platform.Native.SDL.SDLIconComponent.CanLoadSystemIcons commentId: P:OpenTK.Platform.Native.SDL.SDLIconComponent.CanLoadSystemIcons id: CanLoadSystemIcons @@ -177,14 +217,14 @@ items: source: id: CanLoadSystemIcons path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLIconComponent.cs - startLine: 29 + startLine: 34 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: >- - True if icon objects can be populated from common system icons. + If common system icons can be created. - If this is true, then will work, otherwise an exception will be thrown. + If this is true then will work, otherwise an exception will be thrown. example: [] syntax: content: public bool CanLoadSystemIcons { get; } @@ -212,14 +252,14 @@ items: source: id: Create path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLIconComponent.cs - startLine: 32 + startLine: 37 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: >- Load a system icon. - Only works if is true. + Only works if is true. example: [] syntax: content: public IconHandle Create(SystemIconType systemIcon) @@ -232,6 +272,10 @@ items: description: A handle to the created system icon. content.vb: Public Function Create(systemIcon As SystemIconType) As IconHandle overload: OpenTK.Platform.Native.SDL.SDLIconComponent.Create* + exceptions: + - type: System.PlatformNotSupportedException + commentId: T:System.PlatformNotSupportedException + description: Platform does not implement this function. See . seealso: - linkId: OpenTK.Platform.IIconComponent.CanLoadSystemIcons commentId: P:OpenTK.Platform.IIconComponent.CanLoadSystemIcons @@ -251,7 +295,7 @@ items: source: id: Create path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLIconComponent.cs - startLine: 38 + startLine: 43 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL @@ -268,12 +312,19 @@ items: description: Height of the bitmap. - id: data type: System.ReadOnlySpan{System.Byte} - description: Image data to load into icon. + description: Image data to load into icon in RGBA format. return: type: OpenTK.Platform.IconHandle description: A handle to the created icon. content.vb: Public Function Create(width As Integer, height As Integer, data As ReadOnlySpan(Of Byte)) As IconHandle overload: OpenTK.Platform.Native.SDL.SDLIconComponent.Create* + exceptions: + - type: System.ArgumentOutOfRangeException + commentId: T:System.ArgumentOutOfRangeException + description: If width, or height are negative. + - type: System.ArgumentException + commentId: T:System.ArgumentException + description: data is smaller than specified dimensions. implements: - OpenTK.Platform.IIconComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte}) nameWithType.vb: SDLIconComponent.Create(Integer, Integer, ReadOnlySpan(Of Byte)) @@ -293,7 +344,7 @@ items: source: id: Destroy path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLIconComponent.cs - startLine: 59 + startLine: 69 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL @@ -307,10 +358,11 @@ items: description: Handle to the icon object to destroy. content.vb: Public Sub Destroy(handle As IconHandle) overload: OpenTK.Platform.Native.SDL.SDLIconComponent.Destroy* - exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: handle is null. + seealso: + - linkId: OpenTK.Platform.IIconComponent.Create(OpenTK.Platform.SystemIconType) + commentId: M:OpenTK.Platform.IIconComponent.Create(OpenTK.Platform.SystemIconType) + - linkId: OpenTK.Platform.IIconComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte}) + commentId: M:OpenTK.Platform.IIconComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte}) implements: - OpenTK.Platform.IIconComponent.Destroy(OpenTK.Platform.IconHandle) - uid: OpenTK.Platform.Native.SDL.SDLIconComponent.GetSize(OpenTK.Platform.IconHandle,System.Int32@,System.Int32@) @@ -327,7 +379,7 @@ items: source: id: GetSize path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLIconComponent.cs - startLine: 71 + startLine: 81 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL @@ -347,10 +399,6 @@ items: description: Height of icon. content.vb: Public Sub GetSize(handle As IconHandle, width As Integer, height As Integer) overload: OpenTK.Platform.Native.SDL.SDLIconComponent.GetSize* - exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: handle is null. implements: - OpenTK.Platform.IIconComponent.GetSize(OpenTK.Platform.IconHandle,System.Int32@,System.Int32@) nameWithType.vb: SDLIconComponent.GetSize(IconHandle, Integer, Integer) @@ -370,7 +418,7 @@ items: source: id: GetBitmapData path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLIconComponent.cs - startLine: 79 + startLine: 89 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL @@ -400,7 +448,7 @@ items: source: id: GetBitmapByteSize path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLIconComponent.cs - startLine: 92 + startLine: 102 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL @@ -769,6 +817,19 @@ references: name: PalComponents nameWithType: PalComponents fullName: OpenTK.Platform.PalComponents +- uid: OpenTK.Core.Utility.ILogger + commentId: T:OpenTK.Core.Utility.ILogger + parent: OpenTK.Core.Utility + href: OpenTK.Core.Utility.ILogger.html + name: ILogger + nameWithType: ILogger + fullName: OpenTK.Core.Utility.ILogger +- uid: OpenTK.Platform.ToolkitOptions.Logger + commentId: P:OpenTK.Platform.ToolkitOptions.Logger + href: OpenTK.Platform.ToolkitOptions.html#OpenTK_Platform_ToolkitOptions_Logger + name: Logger + nameWithType: ToolkitOptions.Logger + fullName: OpenTK.Platform.ToolkitOptions.Logger - uid: OpenTK.Platform.Native.SDL.SDLIconComponent.Logger* commentId: Overload:OpenTK.Platform.Native.SDL.SDLIconComponent.Logger href: OpenTK.Platform.Native.SDL.SDLIconComponent.html#OpenTK_Platform_Native_SDL_SDLIconComponent_Logger @@ -782,13 +843,6 @@ references: name: Logger nameWithType: IPalComponent.Logger fullName: OpenTK.Platform.IPalComponent.Logger -- uid: OpenTK.Core.Utility.ILogger - commentId: T:OpenTK.Core.Utility.ILogger - parent: OpenTK.Core.Utility - href: OpenTK.Core.Utility.ILogger.html - name: ILogger - nameWithType: ILogger - fullName: OpenTK.Core.Utility.ILogger - uid: OpenTK.Core.Utility commentId: N:OpenTK.Core.Utility href: OpenTK.html @@ -819,6 +873,37 @@ references: - uid: OpenTK.Core.Utility name: Utility href: OpenTK.Core.Utility.html +- uid: OpenTK.Platform.ToolkitOptions + commentId: T:OpenTK.Platform.ToolkitOptions + parent: OpenTK.Platform + href: OpenTK.Platform.ToolkitOptions.html + name: ToolkitOptions + nameWithType: ToolkitOptions + fullName: OpenTK.Platform.ToolkitOptions +- uid: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Init_OpenTK_Platform_ToolkitOptions_ + name: Init(ToolkitOptions) + nameWithType: Toolkit.Init(ToolkitOptions) + fullName: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + spec.csharp: + - uid: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + name: Init + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Init_OpenTK_Platform_ToolkitOptions_ + - name: ( + - uid: OpenTK.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Platform.ToolkitOptions.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + name: Init + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Init_OpenTK_Platform_ToolkitOptions_ + - name: ( + - uid: OpenTK.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Platform.ToolkitOptions.html + - name: ) - uid: OpenTK.Platform.Native.SDL.SDLIconComponent.Initialize* commentId: Overload:OpenTK.Platform.Native.SDL.SDLIconComponent.Initialize href: OpenTK.Platform.Native.SDL.SDLIconComponent.html#OpenTK_Platform_Native_SDL_SDLIconComponent_Initialize_OpenTK_Platform_ToolkitOptions_ @@ -850,13 +935,49 @@ references: name: ToolkitOptions href: OpenTK.Platform.ToolkitOptions.html - name: ) -- uid: OpenTK.Platform.ToolkitOptions - commentId: T:OpenTK.Platform.ToolkitOptions - parent: OpenTK.Platform - href: OpenTK.Platform.ToolkitOptions.html - name: ToolkitOptions - nameWithType: ToolkitOptions - fullName: OpenTK.Platform.ToolkitOptions +- uid: OpenTK.Platform.Toolkit.Uninit + commentId: M:OpenTK.Platform.Toolkit.Uninit + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Uninit + name: Uninit() + nameWithType: Toolkit.Uninit() + fullName: OpenTK.Platform.Toolkit.Uninit() + spec.csharp: + - uid: OpenTK.Platform.Toolkit.Uninit + name: Uninit + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Uninit + - name: ( + - name: ) + spec.vb: + - uid: OpenTK.Platform.Toolkit.Uninit + name: Uninit + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Uninit + - name: ( + - name: ) +- uid: OpenTK.Platform.Native.SDL.SDLIconComponent.Uninitialize* + commentId: Overload:OpenTK.Platform.Native.SDL.SDLIconComponent.Uninitialize + href: OpenTK.Platform.Native.SDL.SDLIconComponent.html#OpenTK_Platform_Native_SDL_SDLIconComponent_Uninitialize + name: Uninitialize + nameWithType: SDLIconComponent.Uninitialize + fullName: OpenTK.Platform.Native.SDL.SDLIconComponent.Uninitialize +- uid: OpenTK.Platform.IPalComponent.Uninitialize + commentId: M:OpenTK.Platform.IPalComponent.Uninitialize + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + name: Uninitialize() + nameWithType: IPalComponent.Uninitialize() + fullName: OpenTK.Platform.IPalComponent.Uninitialize() + spec.csharp: + - uid: OpenTK.Platform.IPalComponent.Uninitialize + name: Uninitialize + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + - name: ( + - name: ) + spec.vb: + - uid: OpenTK.Platform.IPalComponent.Uninitialize + name: Uninitialize + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + - name: ( + - name: ) - uid: OpenTK.Platform.IIconComponent.Create(OpenTK.Platform.SystemIconType) commentId: M:OpenTK.Platform.IIconComponent.Create(OpenTK.Platform.SystemIconType) parent: OpenTK.Platform.IIconComponent @@ -906,6 +1027,13 @@ references: nameWithType.vb: Boolean fullName.vb: Boolean name.vb: Boolean +- uid: System.PlatformNotSupportedException + commentId: T:System.PlatformNotSupportedException + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.platformnotsupportedexception + name: PlatformNotSupportedException + nameWithType: PlatformNotSupportedException + fullName: System.PlatformNotSupportedException - uid: OpenTK.Platform.Native.SDL.SDLIconComponent.Create* commentId: Overload:OpenTK.Platform.Native.SDL.SDLIconComponent.Create href: OpenTK.Platform.Native.SDL.SDLIconComponent.html#OpenTK_Platform_Native_SDL_SDLIconComponent_Create_OpenTK_Platform_SystemIconType_ @@ -926,6 +1054,20 @@ references: name: IconHandle nameWithType: IconHandle fullName: OpenTK.Platform.IconHandle +- uid: System.ArgumentOutOfRangeException + commentId: T:System.ArgumentOutOfRangeException + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.argumentoutofrangeexception + name: ArgumentOutOfRangeException + nameWithType: ArgumentOutOfRangeException + fullName: System.ArgumentOutOfRangeException +- uid: System.ArgumentException + commentId: T:System.ArgumentException + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.argumentexception + name: ArgumentException + nameWithType: ArgumentException + fullName: System.ArgumentException - uid: OpenTK.Platform.IIconComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte}) commentId: M:OpenTK.Platform.IIconComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte}) parent: OpenTK.Platform.IIconComponent @@ -1069,13 +1211,6 @@ references: - name: " " - name: T - name: ) -- uid: System.ArgumentNullException - commentId: T:System.ArgumentNullException - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.argumentnullexception - name: ArgumentNullException - nameWithType: ArgumentNullException - fullName: System.ArgumentNullException - uid: OpenTK.Platform.Native.SDL.SDLIconComponent.Destroy* commentId: Overload:OpenTK.Platform.Native.SDL.SDLIconComponent.Destroy href: OpenTK.Platform.Native.SDL.SDLIconComponent.html#OpenTK_Platform_Native_SDL_SDLIconComponent_Destroy_OpenTK_Platform_IconHandle_ diff --git a/api/OpenTK.Platform.Native.SDL.SDLJoystickComponent.yml b/api/OpenTK.Platform.Native.SDL.SDLJoystickComponent.yml index f3d7d317..54cffe17 100644 --- a/api/OpenTK.Platform.Native.SDL.SDLJoystickComponent.yml +++ b/api/OpenTK.Platform.Native.SDL.SDLJoystickComponent.yml @@ -21,6 +21,7 @@ items: - OpenTK.Platform.Native.SDL.SDLJoystickComponent.SetVibration(OpenTK.Platform.JoystickHandle,System.Single,System.Single) - OpenTK.Platform.Native.SDL.SDLJoystickComponent.TriggerThreshold - OpenTK.Platform.Native.SDL.SDLJoystickComponent.TryGetBatteryInfo(OpenTK.Platform.JoystickHandle,OpenTK.Platform.GamepadBatteryInfo@) + - OpenTK.Platform.Native.SDL.SDLJoystickComponent.Uninitialize langs: - csharp - vb @@ -127,7 +128,7 @@ items: assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL - summary: Provides a logger for this component. + summary: The logger that this component uses to log diagnostic messages. example: [] syntax: content: public ILogger? Logger { get; set; } @@ -136,6 +137,11 @@ items: type: OpenTK.Core.Utility.ILogger content.vb: Public Property Logger As ILogger overload: OpenTK.Platform.Native.SDL.SDLJoystickComponent.Logger* + seealso: + - linkId: OpenTK.Core.Utility.ILogger + commentId: T:OpenTK.Core.Utility.ILogger + - linkId: OpenTK.Platform.ToolkitOptions.Logger + commentId: P:OpenTK.Platform.ToolkitOptions.Logger implements: - OpenTK.Platform.IPalComponent.Logger - uid: OpenTK.Platform.Native.SDL.SDLJoystickComponent.Initialize(OpenTK.Platform.ToolkitOptions) @@ -166,8 +172,42 @@ items: description: The options to initialize the component with. content.vb: Public Sub Initialize(options As ToolkitOptions) overload: OpenTK.Platform.Native.SDL.SDLJoystickComponent.Initialize* + seealso: + - linkId: OpenTK.Platform.ToolkitOptions + commentId: T:OpenTK.Platform.ToolkitOptions + - linkId: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) implements: - OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) +- uid: OpenTK.Platform.Native.SDL.SDLJoystickComponent.Uninitialize + commentId: M:OpenTK.Platform.Native.SDL.SDLJoystickComponent.Uninitialize + id: Uninitialize + parent: OpenTK.Platform.Native.SDL.SDLJoystickComponent + langs: + - csharp + - vb + name: Uninitialize() + nameWithType: SDLJoystickComponent.Uninitialize() + fullName: OpenTK.Platform.Native.SDL.SDLJoystickComponent.Uninitialize() + type: Method + source: + id: Uninitialize + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLJoystickComponent.cs + startLine: 32 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform.Native.SDL + summary: Uninitialize the component. Frees any native resources used by the component. + example: [] + syntax: + content: public void Uninitialize() + content.vb: Public Sub Uninitialize() + overload: OpenTK.Platform.Native.SDL.SDLJoystickComponent.Uninitialize* + seealso: + - linkId: OpenTK.Platform.Toolkit.Uninit + commentId: M:OpenTK.Platform.Toolkit.Uninit + implements: + - OpenTK.Platform.IPalComponent.Uninitialize - uid: OpenTK.Platform.Native.SDL.SDLJoystickComponent.LeftDeadzone commentId: P:OpenTK.Platform.Native.SDL.SDLJoystickComponent.LeftDeadzone id: LeftDeadzone @@ -182,7 +222,7 @@ items: source: id: LeftDeadzone path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLJoystickComponent.cs - startLine: 34 + startLine: 40 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL @@ -211,7 +251,7 @@ items: source: id: RightDeadzone path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLJoystickComponent.cs - startLine: 36 + startLine: 42 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL @@ -240,7 +280,7 @@ items: source: id: TriggerThreshold path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLJoystickComponent.cs - startLine: 38 + startLine: 44 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL @@ -269,7 +309,7 @@ items: source: id: IsConnected path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLJoystickComponent.cs - startLine: 41 + startLine: 47 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL @@ -305,7 +345,7 @@ items: source: id: Open path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLJoystickComponent.cs - startLine: 48 + startLine: 54 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL @@ -341,7 +381,7 @@ items: source: id: Close path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLJoystickComponent.cs - startLine: 64 + startLine: 70 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL @@ -371,7 +411,7 @@ items: source: id: GetGuid path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLJoystickComponent.cs - startLine: 73 + startLine: 79 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL @@ -401,7 +441,7 @@ items: source: id: GetName path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLJoystickComponent.cs - startLine: 86 + startLine: 92 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL @@ -431,7 +471,7 @@ items: source: id: GetAxis path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLJoystickComponent.cs - startLine: 101 + startLine: 107 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL @@ -470,7 +510,7 @@ items: source: id: GetButton path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLJoystickComponent.cs - startLine: 137 + startLine: 143 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL @@ -506,7 +546,7 @@ items: source: id: SetVibration path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLJoystickComponent.cs - startLine: 196 + startLine: 202 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL @@ -543,7 +583,7 @@ items: source: id: TryGetBatteryInfo path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLJoystickComponent.cs - startLine: 212 + startLine: 218 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL @@ -920,6 +960,19 @@ references: name: PalComponents nameWithType: PalComponents fullName: OpenTK.Platform.PalComponents +- uid: OpenTK.Core.Utility.ILogger + commentId: T:OpenTK.Core.Utility.ILogger + parent: OpenTK.Core.Utility + href: OpenTK.Core.Utility.ILogger.html + name: ILogger + nameWithType: ILogger + fullName: OpenTK.Core.Utility.ILogger +- uid: OpenTK.Platform.ToolkitOptions.Logger + commentId: P:OpenTK.Platform.ToolkitOptions.Logger + href: OpenTK.Platform.ToolkitOptions.html#OpenTK_Platform_ToolkitOptions_Logger + name: Logger + nameWithType: ToolkitOptions.Logger + fullName: OpenTK.Platform.ToolkitOptions.Logger - uid: OpenTK.Platform.Native.SDL.SDLJoystickComponent.Logger* commentId: Overload:OpenTK.Platform.Native.SDL.SDLJoystickComponent.Logger href: OpenTK.Platform.Native.SDL.SDLJoystickComponent.html#OpenTK_Platform_Native_SDL_SDLJoystickComponent_Logger @@ -933,13 +986,6 @@ references: name: Logger nameWithType: IPalComponent.Logger fullName: OpenTK.Platform.IPalComponent.Logger -- uid: OpenTK.Core.Utility.ILogger - commentId: T:OpenTK.Core.Utility.ILogger - parent: OpenTK.Core.Utility - href: OpenTK.Core.Utility.ILogger.html - name: ILogger - nameWithType: ILogger - fullName: OpenTK.Core.Utility.ILogger - uid: OpenTK.Core.Utility commentId: N:OpenTK.Core.Utility href: OpenTK.html @@ -970,6 +1016,37 @@ references: - uid: OpenTK.Core.Utility name: Utility href: OpenTK.Core.Utility.html +- uid: OpenTK.Platform.ToolkitOptions + commentId: T:OpenTK.Platform.ToolkitOptions + parent: OpenTK.Platform + href: OpenTK.Platform.ToolkitOptions.html + name: ToolkitOptions + nameWithType: ToolkitOptions + fullName: OpenTK.Platform.ToolkitOptions +- uid: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Init_OpenTK_Platform_ToolkitOptions_ + name: Init(ToolkitOptions) + nameWithType: Toolkit.Init(ToolkitOptions) + fullName: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + spec.csharp: + - uid: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + name: Init + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Init_OpenTK_Platform_ToolkitOptions_ + - name: ( + - uid: OpenTK.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Platform.ToolkitOptions.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + name: Init + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Init_OpenTK_Platform_ToolkitOptions_ + - name: ( + - uid: OpenTK.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Platform.ToolkitOptions.html + - name: ) - uid: OpenTK.Platform.Native.SDL.SDLJoystickComponent.Initialize* commentId: Overload:OpenTK.Platform.Native.SDL.SDLJoystickComponent.Initialize href: OpenTK.Platform.Native.SDL.SDLJoystickComponent.html#OpenTK_Platform_Native_SDL_SDLJoystickComponent_Initialize_OpenTK_Platform_ToolkitOptions_ @@ -1001,13 +1078,49 @@ references: name: ToolkitOptions href: OpenTK.Platform.ToolkitOptions.html - name: ) -- uid: OpenTK.Platform.ToolkitOptions - commentId: T:OpenTK.Platform.ToolkitOptions - parent: OpenTK.Platform - href: OpenTK.Platform.ToolkitOptions.html - name: ToolkitOptions - nameWithType: ToolkitOptions - fullName: OpenTK.Platform.ToolkitOptions +- uid: OpenTK.Platform.Toolkit.Uninit + commentId: M:OpenTK.Platform.Toolkit.Uninit + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Uninit + name: Uninit() + nameWithType: Toolkit.Uninit() + fullName: OpenTK.Platform.Toolkit.Uninit() + spec.csharp: + - uid: OpenTK.Platform.Toolkit.Uninit + name: Uninit + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Uninit + - name: ( + - name: ) + spec.vb: + - uid: OpenTK.Platform.Toolkit.Uninit + name: Uninit + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Uninit + - name: ( + - name: ) +- uid: OpenTK.Platform.Native.SDL.SDLJoystickComponent.Uninitialize* + commentId: Overload:OpenTK.Platform.Native.SDL.SDLJoystickComponent.Uninitialize + href: OpenTK.Platform.Native.SDL.SDLJoystickComponent.html#OpenTK_Platform_Native_SDL_SDLJoystickComponent_Uninitialize + name: Uninitialize + nameWithType: SDLJoystickComponent.Uninitialize + fullName: OpenTK.Platform.Native.SDL.SDLJoystickComponent.Uninitialize +- uid: OpenTK.Platform.IPalComponent.Uninitialize + commentId: M:OpenTK.Platform.IPalComponent.Uninitialize + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + name: Uninitialize() + nameWithType: IPalComponent.Uninitialize() + fullName: OpenTK.Platform.IPalComponent.Uninitialize() + spec.csharp: + - uid: OpenTK.Platform.IPalComponent.Uninitialize + name: Uninitialize + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + - name: ( + - name: ) + spec.vb: + - uid: OpenTK.Platform.IPalComponent.Uninitialize + name: Uninitialize + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + - name: ( + - name: ) - uid: OpenTK.Platform.Native.SDL.SDLJoystickComponent.LeftDeadzone* commentId: Overload:OpenTK.Platform.Native.SDL.SDLJoystickComponent.LeftDeadzone href: OpenTK.Platform.Native.SDL.SDLJoystickComponent.html#OpenTK_Platform_Native_SDL_SDLJoystickComponent_LeftDeadzone diff --git a/api/OpenTK.Platform.Native.SDL.SDLKeyboardComponent.yml b/api/OpenTK.Platform.Native.SDL.SDLKeyboardComponent.yml index b9ca0356..b838e5c1 100644 --- a/api/OpenTK.Platform.Native.SDL.SDLKeyboardComponent.yml +++ b/api/OpenTK.Platform.Native.SDL.SDLKeyboardComponent.yml @@ -20,6 +20,7 @@ items: - OpenTK.Platform.Native.SDL.SDLKeyboardComponent.SetImeRectangle(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) - OpenTK.Platform.Native.SDL.SDLKeyboardComponent.SupportsIme - OpenTK.Platform.Native.SDL.SDLKeyboardComponent.SupportsLayouts + - OpenTK.Platform.Native.SDL.SDLKeyboardComponent.Uninitialize langs: - csharp - vb @@ -126,7 +127,7 @@ items: assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL - summary: Provides a logger for this component. + summary: The logger that this component uses to log diagnostic messages. example: [] syntax: content: public ILogger? Logger { get; set; } @@ -135,6 +136,11 @@ items: type: OpenTK.Core.Utility.ILogger content.vb: Public Property Logger As ILogger overload: OpenTK.Platform.Native.SDL.SDLKeyboardComponent.Logger* + seealso: + - linkId: OpenTK.Core.Utility.ILogger + commentId: T:OpenTK.Core.Utility.ILogger + - linkId: OpenTK.Platform.ToolkitOptions.Logger + commentId: P:OpenTK.Platform.ToolkitOptions.Logger implements: - OpenTK.Platform.IPalComponent.Logger - uid: OpenTK.Platform.Native.SDL.SDLKeyboardComponent.Initialize(OpenTK.Platform.ToolkitOptions) @@ -165,8 +171,42 @@ items: description: The options to initialize the component with. content.vb: Public Sub Initialize(options As ToolkitOptions) overload: OpenTK.Platform.Native.SDL.SDLKeyboardComponent.Initialize* + seealso: + - linkId: OpenTK.Platform.ToolkitOptions + commentId: T:OpenTK.Platform.ToolkitOptions + - linkId: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) implements: - OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) +- uid: OpenTK.Platform.Native.SDL.SDLKeyboardComponent.Uninitialize + commentId: M:OpenTK.Platform.Native.SDL.SDLKeyboardComponent.Uninitialize + id: Uninitialize + parent: OpenTK.Platform.Native.SDL.SDLKeyboardComponent + langs: + - csharp + - vb + name: Uninitialize() + nameWithType: SDLKeyboardComponent.Uninitialize() + fullName: OpenTK.Platform.Native.SDL.SDLKeyboardComponent.Uninitialize() + type: Method + source: + id: Uninitialize + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLKeyboardComponent.cs + startLine: 33 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform.Native.SDL + summary: Uninitialize the component. Frees any native resources used by the component. + example: [] + syntax: + content: public void Uninitialize() + content.vb: Public Sub Uninitialize() + overload: OpenTK.Platform.Native.SDL.SDLKeyboardComponent.Uninitialize* + seealso: + - linkId: OpenTK.Platform.Toolkit.Uninit + commentId: M:OpenTK.Platform.Toolkit.Uninit + implements: + - OpenTK.Platform.IPalComponent.Uninitialize - uid: OpenTK.Platform.Native.SDL.SDLKeyboardComponent.SupportsLayouts commentId: P:OpenTK.Platform.Native.SDL.SDLKeyboardComponent.SupportsLayouts id: SupportsLayouts @@ -181,7 +221,7 @@ items: source: id: SupportsLayouts path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLKeyboardComponent.cs - startLine: 33 + startLine: 38 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL @@ -210,7 +250,7 @@ items: source: id: SupportsIme path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLKeyboardComponent.cs - startLine: 36 + startLine: 41 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL @@ -239,7 +279,7 @@ items: source: id: GetActiveKeyboardLayout path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLKeyboardComponent.cs - startLine: 39 + startLine: 44 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL @@ -279,7 +319,7 @@ items: source: id: GetAvailableKeyboardLayouts path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLKeyboardComponent.cs - startLine: 47 + startLine: 52 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL @@ -308,7 +348,7 @@ items: source: id: GetScancodeFromKey path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLKeyboardComponent.cs - startLine: 53 + startLine: 58 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL @@ -335,6 +375,9 @@ items: or if no scancode produces the key. content.vb: Public Function GetScancodeFromKey(key As Key) As Scancode overload: OpenTK.Platform.Native.SDL.SDLKeyboardComponent.GetScancodeFromKey* + seealso: + - linkId: OpenTK.Platform.IKeyboardComponent.GetKeyFromScancode(OpenTK.Platform.Scancode) + commentId: M:OpenTK.Platform.IKeyboardComponent.GetKeyFromScancode(OpenTK.Platform.Scancode) implements: - OpenTK.Platform.IKeyboardComponent.GetScancodeFromKey(OpenTK.Platform.Key) - uid: OpenTK.Platform.Native.SDL.SDLKeyboardComponent.GetKeyFromScancode(OpenTK.Platform.Scancode) @@ -351,7 +394,7 @@ items: source: id: GetKeyFromScancode path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLKeyboardComponent.cs - startLine: 63 + startLine: 68 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL @@ -374,6 +417,9 @@ items: or if the scancode can't be mapped to a key. content.vb: Public Function GetKeyFromScancode(scancode As Scancode) As Key overload: OpenTK.Platform.Native.SDL.SDLKeyboardComponent.GetKeyFromScancode* + seealso: + - linkId: OpenTK.Platform.IKeyboardComponent.GetScancodeFromKey(OpenTK.Platform.Key) + commentId: M:OpenTK.Platform.IKeyboardComponent.GetScancodeFromKey(OpenTK.Platform.Key) implements: - OpenTK.Platform.IKeyboardComponent.GetKeyFromScancode(OpenTK.Platform.Scancode) - uid: OpenTK.Platform.Native.SDL.SDLKeyboardComponent.GetKeyboardState(System.Boolean[]) @@ -390,7 +436,7 @@ items: source: id: GetKeyboardState path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLKeyboardComponent.cs - startLine: 73 + startLine: 78 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL @@ -409,6 +455,9 @@ items: description: An array to be filled with the keyboard state. content.vb: Public Sub GetKeyboardState(keyboardState As Boolean()) overload: OpenTK.Platform.Native.SDL.SDLKeyboardComponent.GetKeyboardState* + seealso: + - linkId: OpenTK.Platform.IKeyboardComponent.GetKeyboardModifiers + commentId: M:OpenTK.Platform.IKeyboardComponent.GetKeyboardModifiers implements: - OpenTK.Platform.IKeyboardComponent.GetKeyboardState(System.Boolean[]) nameWithType.vb: SDLKeyboardComponent.GetKeyboardState(Boolean()) @@ -428,7 +477,7 @@ items: source: id: GetKeyboardModifiers path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLKeyboardComponent.cs - startLine: 92 + startLine: 97 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL @@ -441,6 +490,9 @@ items: description: The current keyboard modifiers. content.vb: Public Function GetKeyboardModifiers() As KeyModifier overload: OpenTK.Platform.Native.SDL.SDLKeyboardComponent.GetKeyboardModifiers* + seealso: + - linkId: OpenTK.Platform.IKeyboardComponent.GetKeyboardState(System.Boolean[]) + commentId: M:OpenTK.Platform.IKeyboardComponent.GetKeyboardState(System.Boolean[]) implements: - OpenTK.Platform.IKeyboardComponent.GetKeyboardModifiers - uid: OpenTK.Platform.Native.SDL.SDLKeyboardComponent.BeginIme(OpenTK.Platform.WindowHandle) @@ -457,7 +509,7 @@ items: source: id: BeginIme path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLKeyboardComponent.cs - startLine: 98 + startLine: 103 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL @@ -487,7 +539,7 @@ items: source: id: SetImeRectangle path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLKeyboardComponent.cs - startLine: 106 + startLine: 111 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL @@ -532,7 +584,7 @@ items: source: id: EndIme path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLKeyboardComponent.cs - startLine: 120 + startLine: 125 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL @@ -904,6 +956,19 @@ references: name: PalComponents nameWithType: PalComponents fullName: OpenTK.Platform.PalComponents +- uid: OpenTK.Core.Utility.ILogger + commentId: T:OpenTK.Core.Utility.ILogger + parent: OpenTK.Core.Utility + href: OpenTK.Core.Utility.ILogger.html + name: ILogger + nameWithType: ILogger + fullName: OpenTK.Core.Utility.ILogger +- uid: OpenTK.Platform.ToolkitOptions.Logger + commentId: P:OpenTK.Platform.ToolkitOptions.Logger + href: OpenTK.Platform.ToolkitOptions.html#OpenTK_Platform_ToolkitOptions_Logger + name: Logger + nameWithType: ToolkitOptions.Logger + fullName: OpenTK.Platform.ToolkitOptions.Logger - uid: OpenTK.Platform.Native.SDL.SDLKeyboardComponent.Logger* commentId: Overload:OpenTK.Platform.Native.SDL.SDLKeyboardComponent.Logger href: OpenTK.Platform.Native.SDL.SDLKeyboardComponent.html#OpenTK_Platform_Native_SDL_SDLKeyboardComponent_Logger @@ -917,13 +982,6 @@ references: name: Logger nameWithType: IPalComponent.Logger fullName: OpenTK.Platform.IPalComponent.Logger -- uid: OpenTK.Core.Utility.ILogger - commentId: T:OpenTK.Core.Utility.ILogger - parent: OpenTK.Core.Utility - href: OpenTK.Core.Utility.ILogger.html - name: ILogger - nameWithType: ILogger - fullName: OpenTK.Core.Utility.ILogger - uid: OpenTK.Core.Utility commentId: N:OpenTK.Core.Utility href: OpenTK.html @@ -954,6 +1012,37 @@ references: - uid: OpenTK.Core.Utility name: Utility href: OpenTK.Core.Utility.html +- uid: OpenTK.Platform.ToolkitOptions + commentId: T:OpenTK.Platform.ToolkitOptions + parent: OpenTK.Platform + href: OpenTK.Platform.ToolkitOptions.html + name: ToolkitOptions + nameWithType: ToolkitOptions + fullName: OpenTK.Platform.ToolkitOptions +- uid: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Init_OpenTK_Platform_ToolkitOptions_ + name: Init(ToolkitOptions) + nameWithType: Toolkit.Init(ToolkitOptions) + fullName: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + spec.csharp: + - uid: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + name: Init + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Init_OpenTK_Platform_ToolkitOptions_ + - name: ( + - uid: OpenTK.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Platform.ToolkitOptions.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + name: Init + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Init_OpenTK_Platform_ToolkitOptions_ + - name: ( + - uid: OpenTK.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Platform.ToolkitOptions.html + - name: ) - uid: OpenTK.Platform.Native.SDL.SDLKeyboardComponent.Initialize* commentId: Overload:OpenTK.Platform.Native.SDL.SDLKeyboardComponent.Initialize href: OpenTK.Platform.Native.SDL.SDLKeyboardComponent.html#OpenTK_Platform_Native_SDL_SDLKeyboardComponent_Initialize_OpenTK_Platform_ToolkitOptions_ @@ -985,13 +1074,49 @@ references: name: ToolkitOptions href: OpenTK.Platform.ToolkitOptions.html - name: ) -- uid: OpenTK.Platform.ToolkitOptions - commentId: T:OpenTK.Platform.ToolkitOptions - parent: OpenTK.Platform - href: OpenTK.Platform.ToolkitOptions.html - name: ToolkitOptions - nameWithType: ToolkitOptions - fullName: OpenTK.Platform.ToolkitOptions +- uid: OpenTK.Platform.Toolkit.Uninit + commentId: M:OpenTK.Platform.Toolkit.Uninit + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Uninit + name: Uninit() + nameWithType: Toolkit.Uninit() + fullName: OpenTK.Platform.Toolkit.Uninit() + spec.csharp: + - uid: OpenTK.Platform.Toolkit.Uninit + name: Uninit + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Uninit + - name: ( + - name: ) + spec.vb: + - uid: OpenTK.Platform.Toolkit.Uninit + name: Uninit + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Uninit + - name: ( + - name: ) +- uid: OpenTK.Platform.Native.SDL.SDLKeyboardComponent.Uninitialize* + commentId: Overload:OpenTK.Platform.Native.SDL.SDLKeyboardComponent.Uninitialize + href: OpenTK.Platform.Native.SDL.SDLKeyboardComponent.html#OpenTK_Platform_Native_SDL_SDLKeyboardComponent_Uninitialize + name: Uninitialize + nameWithType: SDLKeyboardComponent.Uninitialize + fullName: OpenTK.Platform.Native.SDL.SDLKeyboardComponent.Uninitialize +- uid: OpenTK.Platform.IPalComponent.Uninitialize + commentId: M:OpenTK.Platform.IPalComponent.Uninitialize + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + name: Uninitialize() + nameWithType: IPalComponent.Uninitialize() + fullName: OpenTK.Platform.IPalComponent.Uninitialize() + spec.csharp: + - uid: OpenTK.Platform.IPalComponent.Uninitialize + name: Uninitialize + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + - name: ( + - name: ) + spec.vb: + - uid: OpenTK.Platform.IPalComponent.Uninitialize + name: Uninitialize + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + - name: ( + - name: ) - uid: OpenTK.Platform.Native.SDL.SDLKeyboardComponent.SupportsLayouts* commentId: Overload:OpenTK.Platform.Native.SDL.SDLKeyboardComponent.SupportsLayouts href: OpenTK.Platform.Native.SDL.SDLKeyboardComponent.html#OpenTK_Platform_Native_SDL_SDLKeyboardComponent_SupportsLayouts @@ -1121,6 +1246,31 @@ references: href: https://learn.microsoft.com/dotnet/api/system.string - name: ( - name: ) +- uid: OpenTK.Platform.IKeyboardComponent.GetKeyFromScancode(OpenTK.Platform.Scancode) + commentId: M:OpenTK.Platform.IKeyboardComponent.GetKeyFromScancode(OpenTK.Platform.Scancode) + parent: OpenTK.Platform.IKeyboardComponent + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_GetKeyFromScancode_OpenTK_Platform_Scancode_ + name: GetKeyFromScancode(Scancode) + nameWithType: IKeyboardComponent.GetKeyFromScancode(Scancode) + fullName: OpenTK.Platform.IKeyboardComponent.GetKeyFromScancode(OpenTK.Platform.Scancode) + spec.csharp: + - uid: OpenTK.Platform.IKeyboardComponent.GetKeyFromScancode(OpenTK.Platform.Scancode) + name: GetKeyFromScancode + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_GetKeyFromScancode_OpenTK_Platform_Scancode_ + - name: ( + - uid: OpenTK.Platform.Scancode + name: Scancode + href: OpenTK.Platform.Scancode.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IKeyboardComponent.GetKeyFromScancode(OpenTK.Platform.Scancode) + name: GetKeyFromScancode + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_GetKeyFromScancode_OpenTK_Platform_Scancode_ + - name: ( + - uid: OpenTK.Platform.Scancode + name: Scancode + href: OpenTK.Platform.Scancode.html + - name: ) - uid: OpenTK.Platform.Scancode commentId: T:OpenTK.Platform.Scancode parent: OpenTK.Platform @@ -1184,30 +1334,24 @@ references: name: GetKeyFromScancode nameWithType: SDLKeyboardComponent.GetKeyFromScancode fullName: OpenTK.Platform.Native.SDL.SDLKeyboardComponent.GetKeyFromScancode -- uid: OpenTK.Platform.IKeyboardComponent.GetKeyFromScancode(OpenTK.Platform.Scancode) - commentId: M:OpenTK.Platform.IKeyboardComponent.GetKeyFromScancode(OpenTK.Platform.Scancode) +- uid: OpenTK.Platform.IKeyboardComponent.GetKeyboardModifiers + commentId: M:OpenTK.Platform.IKeyboardComponent.GetKeyboardModifiers parent: OpenTK.Platform.IKeyboardComponent - href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_GetKeyFromScancode_OpenTK_Platform_Scancode_ - name: GetKeyFromScancode(Scancode) - nameWithType: IKeyboardComponent.GetKeyFromScancode(Scancode) - fullName: OpenTK.Platform.IKeyboardComponent.GetKeyFromScancode(OpenTK.Platform.Scancode) + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_GetKeyboardModifiers + name: GetKeyboardModifiers() + nameWithType: IKeyboardComponent.GetKeyboardModifiers() + fullName: OpenTK.Platform.IKeyboardComponent.GetKeyboardModifiers() spec.csharp: - - uid: OpenTK.Platform.IKeyboardComponent.GetKeyFromScancode(OpenTK.Platform.Scancode) - name: GetKeyFromScancode - href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_GetKeyFromScancode_OpenTK_Platform_Scancode_ + - uid: OpenTK.Platform.IKeyboardComponent.GetKeyboardModifiers + name: GetKeyboardModifiers + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_GetKeyboardModifiers - name: ( - - uid: OpenTK.Platform.Scancode - name: Scancode - href: OpenTK.Platform.Scancode.html - name: ) spec.vb: - - uid: OpenTK.Platform.IKeyboardComponent.GetKeyFromScancode(OpenTK.Platform.Scancode) - name: GetKeyFromScancode - href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_GetKeyFromScancode_OpenTK_Platform_Scancode_ + - uid: OpenTK.Platform.IKeyboardComponent.GetKeyboardModifiers + name: GetKeyboardModifiers + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_GetKeyboardModifiers - name: ( - - uid: OpenTK.Platform.Scancode - name: Scancode - href: OpenTK.Platform.Scancode.html - name: ) - uid: OpenTK.Platform.Native.SDL.SDLKeyboardComponent.GetKeyboardState* commentId: Overload:OpenTK.Platform.Native.SDL.SDLKeyboardComponent.GetKeyboardState @@ -1279,25 +1423,6 @@ references: name: GetKeyboardModifiers nameWithType: SDLKeyboardComponent.GetKeyboardModifiers fullName: OpenTK.Platform.Native.SDL.SDLKeyboardComponent.GetKeyboardModifiers -- uid: OpenTK.Platform.IKeyboardComponent.GetKeyboardModifiers - commentId: M:OpenTK.Platform.IKeyboardComponent.GetKeyboardModifiers - parent: OpenTK.Platform.IKeyboardComponent - href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_GetKeyboardModifiers - name: GetKeyboardModifiers() - nameWithType: IKeyboardComponent.GetKeyboardModifiers() - fullName: OpenTK.Platform.IKeyboardComponent.GetKeyboardModifiers() - spec.csharp: - - uid: OpenTK.Platform.IKeyboardComponent.GetKeyboardModifiers - name: GetKeyboardModifiers - href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_GetKeyboardModifiers - - name: ( - - name: ) - spec.vb: - - uid: OpenTK.Platform.IKeyboardComponent.GetKeyboardModifiers - name: GetKeyboardModifiers - href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_GetKeyboardModifiers - - name: ( - - name: ) - uid: OpenTK.Platform.KeyModifier commentId: T:OpenTK.Platform.KeyModifier parent: OpenTK.Platform diff --git a/api/OpenTK.Platform.Native.SDL.SDLMouseComponent.yml b/api/OpenTK.Platform.Native.SDL.SDLMouseComponent.yml index 6da9493a..67705cf1 100644 --- a/api/OpenTK.Platform.Native.SDL.SDLMouseComponent.yml +++ b/api/OpenTK.Platform.Native.SDL.SDLMouseComponent.yml @@ -7,16 +7,19 @@ items: children: - OpenTK.Platform.Native.SDL.SDLMouseComponent.CanSetMousePosition - OpenTK.Platform.Native.SDL.SDLMouseComponent.EnableRawMouseMotion(OpenTK.Platform.WindowHandle,System.Boolean) - - OpenTK.Platform.Native.SDL.SDLMouseComponent.GetMouseState(OpenTK.Platform.MouseState@) - - OpenTK.Platform.Native.SDL.SDLMouseComponent.GetPosition(System.Int32@,System.Int32@) + - OpenTK.Platform.Native.SDL.SDLMouseComponent.GetGlobalMouseState(OpenTK.Platform.MouseState@) + - OpenTK.Platform.Native.SDL.SDLMouseComponent.GetGlobalPosition(OpenTK.Mathematics.Vector2@) + - OpenTK.Platform.Native.SDL.SDLMouseComponent.GetMouseState(OpenTK.Platform.WindowHandle,OpenTK.Platform.MouseState@) + - OpenTK.Platform.Native.SDL.SDLMouseComponent.GetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2@) - OpenTK.Platform.Native.SDL.SDLMouseComponent.Initialize(OpenTK.Platform.ToolkitOptions) - OpenTK.Platform.Native.SDL.SDLMouseComponent.IsRawMouseMotionEnabled(OpenTK.Platform.WindowHandle) - OpenTK.Platform.Native.SDL.SDLMouseComponent.Logger - OpenTK.Platform.Native.SDL.SDLMouseComponent.Name - OpenTK.Platform.Native.SDL.SDLMouseComponent.Provides - - OpenTK.Platform.Native.SDL.SDLMouseComponent.SetPosition(System.Int32,System.Int32) + - OpenTK.Platform.Native.SDL.SDLMouseComponent.SetGlobalPosition(OpenTK.Mathematics.Vector2) - OpenTK.Platform.Native.SDL.SDLMouseComponent.SetPositionInWindow(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) - OpenTK.Platform.Native.SDL.SDLMouseComponent.SupportsRawMouseMotion + - OpenTK.Platform.Native.SDL.SDLMouseComponent.Uninitialize langs: - csharp - vb @@ -123,7 +126,7 @@ items: assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL - summary: Provides a logger for this component. + summary: The logger that this component uses to log diagnostic messages. example: [] syntax: content: public ILogger? Logger { get; set; } @@ -132,6 +135,11 @@ items: type: OpenTK.Core.Utility.ILogger content.vb: Public Property Logger As ILogger overload: OpenTK.Platform.Native.SDL.SDLMouseComponent.Logger* + seealso: + - linkId: OpenTK.Core.Utility.ILogger + commentId: T:OpenTK.Core.Utility.ILogger + - linkId: OpenTK.Platform.ToolkitOptions.Logger + commentId: P:OpenTK.Platform.ToolkitOptions.Logger implements: - OpenTK.Platform.IPalComponent.Logger - uid: OpenTK.Platform.Native.SDL.SDLMouseComponent.Initialize(OpenTK.Platform.ToolkitOptions) @@ -162,8 +170,42 @@ items: description: The options to initialize the component with. content.vb: Public Sub Initialize(options As ToolkitOptions) overload: OpenTK.Platform.Native.SDL.SDLMouseComponent.Initialize* + seealso: + - linkId: OpenTK.Platform.ToolkitOptions + commentId: T:OpenTK.Platform.ToolkitOptions + - linkId: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) implements: - OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) +- uid: OpenTK.Platform.Native.SDL.SDLMouseComponent.Uninitialize + commentId: M:OpenTK.Platform.Native.SDL.SDLMouseComponent.Uninitialize + id: Uninitialize + parent: OpenTK.Platform.Native.SDL.SDLMouseComponent + langs: + - csharp + - vb + name: Uninitialize() + nameWithType: SDLMouseComponent.Uninitialize() + fullName: OpenTK.Platform.Native.SDL.SDLMouseComponent.Uninitialize() + type: Method + source: + id: Uninitialize + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLMouseComponent.cs + startLine: 30 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform.Native.SDL + summary: Uninitialize the component. Frees any native resources used by the component. + example: [] + syntax: + content: public void Uninitialize() + content.vb: Public Sub Uninitialize() + overload: OpenTK.Platform.Native.SDL.SDLMouseComponent.Uninitialize* + seealso: + - linkId: OpenTK.Platform.Toolkit.Uninit + commentId: M:OpenTK.Platform.Toolkit.Uninit + implements: + - OpenTK.Platform.IPalComponent.Uninitialize - uid: OpenTK.Platform.Native.SDL.SDLMouseComponent.CanSetMousePosition commentId: P:OpenTK.Platform.Native.SDL.SDLMouseComponent.CanSetMousePosition id: CanSetMousePosition @@ -178,11 +220,11 @@ items: source: id: CanSetMousePosition path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLMouseComponent.cs - startLine: 30 + startLine: 35 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL - summary: If it's possible to set the position of the mouse using . + summary: If it's possible to set the position of the mouse using . example: [] syntax: content: public bool CanSetMousePosition { get; } @@ -192,8 +234,8 @@ items: content.vb: Public ReadOnly Property CanSetMousePosition As Boolean overload: OpenTK.Platform.Native.SDL.SDLMouseComponent.CanSetMousePosition* seealso: - - linkId: OpenTK.Platform.IMouseComponent.SetPosition(System.Int32,System.Int32) - commentId: M:OpenTK.Platform.IMouseComponent.SetPosition(System.Int32,System.Int32) + - linkId: OpenTK.Platform.IMouseComponent.SetGlobalPosition(OpenTK.Mathematics.Vector2) + commentId: M:OpenTK.Platform.IMouseComponent.SetGlobalPosition(OpenTK.Mathematics.Vector2) implements: - OpenTK.Platform.IMouseComponent.CanSetMousePosition - uid: OpenTK.Platform.Native.SDL.SDLMouseComponent.SupportsRawMouseMotion @@ -210,7 +252,7 @@ items: source: id: SupportsRawMouseMotion path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLMouseComponent.cs - startLine: 33 + startLine: 38 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL @@ -233,84 +275,131 @@ items: commentId: M:OpenTK.Platform.IMouseComponent.EnableRawMouseMotion(OpenTK.Platform.WindowHandle,System.Boolean) implements: - OpenTK.Platform.IMouseComponent.SupportsRawMouseMotion -- uid: OpenTK.Platform.Native.SDL.SDLMouseComponent.GetPosition(System.Int32@,System.Int32@) - commentId: M:OpenTK.Platform.Native.SDL.SDLMouseComponent.GetPosition(System.Int32@,System.Int32@) - id: GetPosition(System.Int32@,System.Int32@) +- uid: OpenTK.Platform.Native.SDL.SDLMouseComponent.GetGlobalPosition(OpenTK.Mathematics.Vector2@) + commentId: M:OpenTK.Platform.Native.SDL.SDLMouseComponent.GetGlobalPosition(OpenTK.Mathematics.Vector2@) + id: GetGlobalPosition(OpenTK.Mathematics.Vector2@) + parent: OpenTK.Platform.Native.SDL.SDLMouseComponent + langs: + - csharp + - vb + name: GetGlobalPosition(out Vector2) + nameWithType: SDLMouseComponent.GetGlobalPosition(out Vector2) + fullName: OpenTK.Platform.Native.SDL.SDLMouseComponent.GetGlobalPosition(out OpenTK.Mathematics.Vector2) + type: Method + source: + id: GetGlobalPosition + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLMouseComponent.cs + startLine: 41 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform.Native.SDL + summary: >- + Get the global mouse cursor position. + + This function may query the mouse position outside of event processing to get the position of the mouse at the time this function is called. + + The mouse position returned is the mouse position as it is on screen, it will not return virtual coordinates when using . + example: [] + syntax: + content: public void GetGlobalPosition(out Vector2 globalPosition) + parameters: + - id: globalPosition + type: OpenTK.Mathematics.Vector2 + description: Coordinate of the mouse in screen coordinates. + content.vb: Public Sub GetGlobalPosition(globalPosition As Vector2) + overload: OpenTK.Platform.Native.SDL.SDLMouseComponent.GetGlobalPosition* + seealso: + - linkId: OpenTK.Platform.IMouseComponent.GetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2@) + commentId: M:OpenTK.Platform.IMouseComponent.GetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2@) + - linkId: OpenTK.Platform.IMouseComponent.SetGlobalPosition(OpenTK.Mathematics.Vector2) + commentId: M:OpenTK.Platform.IMouseComponent.SetGlobalPosition(OpenTK.Mathematics.Vector2) + implements: + - OpenTK.Platform.IMouseComponent.GetGlobalPosition(OpenTK.Mathematics.Vector2@) + nameWithType.vb: SDLMouseComponent.GetGlobalPosition(Vector2) + fullName.vb: OpenTK.Platform.Native.SDL.SDLMouseComponent.GetGlobalPosition(OpenTK.Mathematics.Vector2) + name.vb: GetGlobalPosition(Vector2) +- uid: OpenTK.Platform.Native.SDL.SDLMouseComponent.GetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2@) + commentId: M:OpenTK.Platform.Native.SDL.SDLMouseComponent.GetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2@) + id: GetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2@) parent: OpenTK.Platform.Native.SDL.SDLMouseComponent langs: - csharp - vb - name: GetPosition(out int, out int) - nameWithType: SDLMouseComponent.GetPosition(out int, out int) - fullName: OpenTK.Platform.Native.SDL.SDLMouseComponent.GetPosition(out int, out int) + name: GetPosition(WindowHandle, out Vector2) + nameWithType: SDLMouseComponent.GetPosition(WindowHandle, out Vector2) + fullName: OpenTK.Platform.Native.SDL.SDLMouseComponent.GetPosition(OpenTK.Platform.WindowHandle, out OpenTK.Mathematics.Vector2) type: Method source: id: GetPosition path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLMouseComponent.cs - startLine: 36 + startLine: 49 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL - summary: Get the mouse cursor position. + summary: >- + Gets the mouse position as seen from the specified window. + + This function takes into consideration only the mouse events that the specified window has received and does not represent global state. + + If the window has locked the cursor using , this function will return virtual coordinates (unlike GetGlobalPosition(out Vector2i)). example: [] syntax: - content: public void GetPosition(out int x, out int y) + content: public void GetPosition(WindowHandle window, out Vector2 position) parameters: - - id: x - type: System.Int32 - description: X coordinate of the mouse in desktop space. - - id: y - type: System.Int32 - description: Y coordinate of the mouse in desktop space. - content.vb: Public Sub GetPosition(x As Integer, y As Integer) + - id: window + type: OpenTK.Platform.WindowHandle + description: The window to get the mouse position for. + - id: position + type: OpenTK.Mathematics.Vector2 + description: Coordinate of the mouse in client coordinates. + content.vb: Public Sub GetPosition(window As WindowHandle, position As Vector2) overload: OpenTK.Platform.Native.SDL.SDLMouseComponent.GetPosition* + seealso: + - linkId: OpenTK.Platform.IMouseComponent.GetGlobalPosition(OpenTK.Mathematics.Vector2@) + commentId: M:OpenTK.Platform.IMouseComponent.GetGlobalPosition(OpenTK.Mathematics.Vector2@) implements: - - OpenTK.Platform.IMouseComponent.GetPosition(System.Int32@,System.Int32@) - nameWithType.vb: SDLMouseComponent.GetPosition(Integer, Integer) - fullName.vb: OpenTK.Platform.Native.SDL.SDLMouseComponent.GetPosition(Integer, Integer) - name.vb: GetPosition(Integer, Integer) -- uid: OpenTK.Platform.Native.SDL.SDLMouseComponent.SetPosition(System.Int32,System.Int32) - commentId: M:OpenTK.Platform.Native.SDL.SDLMouseComponent.SetPosition(System.Int32,System.Int32) - id: SetPosition(System.Int32,System.Int32) + - OpenTK.Platform.IMouseComponent.GetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2@) + nameWithType.vb: SDLMouseComponent.GetPosition(WindowHandle, Vector2) + fullName.vb: OpenTK.Platform.Native.SDL.SDLMouseComponent.GetPosition(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2) + name.vb: GetPosition(WindowHandle, Vector2) +- uid: OpenTK.Platform.Native.SDL.SDLMouseComponent.SetGlobalPosition(OpenTK.Mathematics.Vector2) + commentId: M:OpenTK.Platform.Native.SDL.SDLMouseComponent.SetGlobalPosition(OpenTK.Mathematics.Vector2) + id: SetGlobalPosition(OpenTK.Mathematics.Vector2) parent: OpenTK.Platform.Native.SDL.SDLMouseComponent langs: - csharp - vb - name: SetPosition(int, int) - nameWithType: SDLMouseComponent.SetPosition(int, int) - fullName: OpenTK.Platform.Native.SDL.SDLMouseComponent.SetPosition(int, int) + name: SetGlobalPosition(Vector2) + nameWithType: SDLMouseComponent.SetGlobalPosition(Vector2) + fullName: OpenTK.Platform.Native.SDL.SDLMouseComponent.SetGlobalPosition(OpenTK.Mathematics.Vector2) type: Method source: - id: SetPosition + id: SetGlobalPosition path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLMouseComponent.cs - startLine: 42 + startLine: 55 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: >- - Set the mouse cursor position. + Set the global mouse cursor position. Check that is true before using this. example: [] syntax: - content: public void SetPosition(int x, int y) + content: public void SetGlobalPosition(Vector2 newGlobalPosition) parameters: - - id: x - type: System.Int32 - description: X coordinate of the mouse in desktop space. - - id: y - type: System.Int32 - description: Y coordinate of the mouse in desktop space. - content.vb: Public Sub SetPosition(x As Integer, y As Integer) - overload: OpenTK.Platform.Native.SDL.SDLMouseComponent.SetPosition* + - id: newGlobalPosition + type: OpenTK.Mathematics.Vector2 + description: New coordinate of the mouse in screen space. + content.vb: Public Sub SetGlobalPosition(newGlobalPosition As Vector2) + overload: OpenTK.Platform.Native.SDL.SDLMouseComponent.SetGlobalPosition* seealso: + - linkId: OpenTK.Platform.IMouseComponent.GetGlobalPosition(OpenTK.Mathematics.Vector2@) + commentId: M:OpenTK.Platform.IMouseComponent.GetGlobalPosition(OpenTK.Mathematics.Vector2@) - linkId: OpenTK.Platform.IMouseComponent.CanSetMousePosition commentId: P:OpenTK.Platform.IMouseComponent.CanSetMousePosition implements: - - OpenTK.Platform.IMouseComponent.SetPosition(System.Int32,System.Int32) - nameWithType.vb: SDLMouseComponent.SetPosition(Integer, Integer) - fullName.vb: OpenTK.Platform.Native.SDL.SDLMouseComponent.SetPosition(Integer, Integer) - name.vb: SetPosition(Integer, Integer) + - OpenTK.Platform.IMouseComponent.SetGlobalPosition(OpenTK.Mathematics.Vector2) - uid: OpenTK.Platform.Native.SDL.SDLMouseComponent.SetPositionInWindow(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) commentId: M:OpenTK.Platform.Native.SDL.SDLMouseComponent.SetPositionInWindow(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) id: SetPositionInWindow(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) @@ -325,7 +414,7 @@ items: source: id: SetPositionInWindow path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLMouseComponent.cs - startLine: 58 + startLine: 71 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL @@ -348,39 +437,95 @@ items: nameWithType.vb: SDLMouseComponent.SetPositionInWindow(WindowHandle, Integer, Integer) fullName.vb: OpenTK.Platform.Native.SDL.SDLMouseComponent.SetPositionInWindow(OpenTK.Platform.WindowHandle, Integer, Integer) name.vb: SetPositionInWindow(WindowHandle, Integer, Integer) -- uid: OpenTK.Platform.Native.SDL.SDLMouseComponent.GetMouseState(OpenTK.Platform.MouseState@) - commentId: M:OpenTK.Platform.Native.SDL.SDLMouseComponent.GetMouseState(OpenTK.Platform.MouseState@) - id: GetMouseState(OpenTK.Platform.MouseState@) +- uid: OpenTK.Platform.Native.SDL.SDLMouseComponent.GetGlobalMouseState(OpenTK.Platform.MouseState@) + commentId: M:OpenTK.Platform.Native.SDL.SDLMouseComponent.GetGlobalMouseState(OpenTK.Platform.MouseState@) + id: GetGlobalMouseState(OpenTK.Platform.MouseState@) + parent: OpenTK.Platform.Native.SDL.SDLMouseComponent + langs: + - csharp + - vb + name: GetGlobalMouseState(out MouseState) + nameWithType: SDLMouseComponent.GetGlobalMouseState(out MouseState) + fullName: OpenTK.Platform.Native.SDL.SDLMouseComponent.GetGlobalMouseState(out OpenTK.Platform.MouseState) + type: Method + source: + id: GetGlobalMouseState + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLMouseComponent.cs + startLine: 93 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform.Native.SDL + summary: >- + Fills the state struct with the current mouse state. + + This function may query the mouse state outside of event processing to get the position of the mouse at the time this function is called. + + The will be the screen mouse position and not virtual coordinates described by . + + The is in window screen coordinates. + example: [] + syntax: + content: public void GetGlobalMouseState(out MouseState state) + parameters: + - id: state + type: OpenTK.Platform.MouseState + description: The current mouse state. + content.vb: Public Sub GetGlobalMouseState(state As MouseState) + overload: OpenTK.Platform.Native.SDL.SDLMouseComponent.GetGlobalMouseState* + seealso: + - linkId: OpenTK.Platform.IMouseComponent.GetMouseState(OpenTK.Platform.WindowHandle,OpenTK.Platform.MouseState@) + commentId: M:OpenTK.Platform.IMouseComponent.GetMouseState(OpenTK.Platform.WindowHandle,OpenTK.Platform.MouseState@) + implements: + - OpenTK.Platform.IMouseComponent.GetGlobalMouseState(OpenTK.Platform.MouseState@) + nameWithType.vb: SDLMouseComponent.GetGlobalMouseState(MouseState) + fullName.vb: OpenTK.Platform.Native.SDL.SDLMouseComponent.GetGlobalMouseState(OpenTK.Platform.MouseState) + name.vb: GetGlobalMouseState(MouseState) +- uid: OpenTK.Platform.Native.SDL.SDLMouseComponent.GetMouseState(OpenTK.Platform.WindowHandle,OpenTK.Platform.MouseState@) + commentId: M:OpenTK.Platform.Native.SDL.SDLMouseComponent.GetMouseState(OpenTK.Platform.WindowHandle,OpenTK.Platform.MouseState@) + id: GetMouseState(OpenTK.Platform.WindowHandle,OpenTK.Platform.MouseState@) parent: OpenTK.Platform.Native.SDL.SDLMouseComponent langs: - csharp - vb - name: GetMouseState(out MouseState) - nameWithType: SDLMouseComponent.GetMouseState(out MouseState) - fullName: OpenTK.Platform.Native.SDL.SDLMouseComponent.GetMouseState(out OpenTK.Platform.MouseState) + name: GetMouseState(WindowHandle, out MouseState) + nameWithType: SDLMouseComponent.GetMouseState(WindowHandle, out MouseState) + fullName: OpenTK.Platform.Native.SDL.SDLMouseComponent.GetMouseState(OpenTK.Platform.WindowHandle, out OpenTK.Platform.MouseState) type: Method source: id: GetMouseState path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLMouseComponent.cs - startLine: 80 + startLine: 121 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL - summary: Fills the state struct with the current mouse state. + summary: >- + Fills the state struct with the current mouse state for the specified window. + + This function takes into consideration only the mouse events that the specified window has received and does not represent global state. + + If the window has locked the cursor using , this function will return virtual coordinates (unlike ). + + The is in window relative coordinates. example: [] syntax: - content: public void GetMouseState(out MouseState state) + content: public void GetMouseState(WindowHandle window, out MouseState state) parameters: + - id: window + type: OpenTK.Platform.WindowHandle + description: The window to get the mouse state from. - id: state type: OpenTK.Platform.MouseState description: The current mouse state. - content.vb: Public Sub GetMouseState(state As MouseState) + content.vb: Public Sub GetMouseState(window As WindowHandle, state As MouseState) overload: OpenTK.Platform.Native.SDL.SDLMouseComponent.GetMouseState* + seealso: + - linkId: OpenTK.Platform.IMouseComponent.GetGlobalMouseState(OpenTK.Platform.MouseState@) + commentId: M:OpenTK.Platform.IMouseComponent.GetGlobalMouseState(OpenTK.Platform.MouseState@) implements: - - OpenTK.Platform.IMouseComponent.GetMouseState(OpenTK.Platform.MouseState@) - nameWithType.vb: SDLMouseComponent.GetMouseState(MouseState) - fullName.vb: OpenTK.Platform.Native.SDL.SDLMouseComponent.GetMouseState(OpenTK.Platform.MouseState) - name.vb: GetMouseState(MouseState) + - OpenTK.Platform.IMouseComponent.GetMouseState(OpenTK.Platform.WindowHandle,OpenTK.Platform.MouseState@) + nameWithType.vb: SDLMouseComponent.GetMouseState(WindowHandle, MouseState) + fullName.vb: OpenTK.Platform.Native.SDL.SDLMouseComponent.GetMouseState(OpenTK.Platform.WindowHandle, OpenTK.Platform.MouseState) + name.vb: GetMouseState(WindowHandle, MouseState) - uid: OpenTK.Platform.Native.SDL.SDLMouseComponent.IsRawMouseMotionEnabled(OpenTK.Platform.WindowHandle) commentId: M:OpenTK.Platform.Native.SDL.SDLMouseComponent.IsRawMouseMotionEnabled(OpenTK.Platform.WindowHandle) id: IsRawMouseMotionEnabled(OpenTK.Platform.WindowHandle) @@ -395,7 +540,7 @@ items: source: id: IsRawMouseMotionEnabled path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLMouseComponent.cs - startLine: 108 + startLine: 127 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL @@ -418,6 +563,8 @@ items: seealso: - linkId: OpenTK.Platform.IMouseComponent.SupportsRawMouseMotion commentId: P:OpenTK.Platform.IMouseComponent.SupportsRawMouseMotion + - linkId: OpenTK.Platform.IMouseComponent.EnableRawMouseMotion(OpenTK.Platform.WindowHandle,System.Boolean) + commentId: M:OpenTK.Platform.IMouseComponent.EnableRawMouseMotion(OpenTK.Platform.WindowHandle,System.Boolean) implements: - OpenTK.Platform.IMouseComponent.IsRawMouseMotionEnabled(OpenTK.Platform.WindowHandle) - uid: OpenTK.Platform.Native.SDL.SDLMouseComponent.EnableRawMouseMotion(OpenTK.Platform.WindowHandle,System.Boolean) @@ -434,7 +581,7 @@ items: source: id: EnableRawMouseMotion path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLMouseComponent.cs - startLine: 114 + startLine: 133 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL @@ -822,6 +969,19 @@ references: name: PalComponents nameWithType: PalComponents fullName: OpenTK.Platform.PalComponents +- uid: OpenTK.Core.Utility.ILogger + commentId: T:OpenTK.Core.Utility.ILogger + parent: OpenTK.Core.Utility + href: OpenTK.Core.Utility.ILogger.html + name: ILogger + nameWithType: ILogger + fullName: OpenTK.Core.Utility.ILogger +- uid: OpenTK.Platform.ToolkitOptions.Logger + commentId: P:OpenTK.Platform.ToolkitOptions.Logger + href: OpenTK.Platform.ToolkitOptions.html#OpenTK_Platform_ToolkitOptions_Logger + name: Logger + nameWithType: ToolkitOptions.Logger + fullName: OpenTK.Platform.ToolkitOptions.Logger - uid: OpenTK.Platform.Native.SDL.SDLMouseComponent.Logger* commentId: Overload:OpenTK.Platform.Native.SDL.SDLMouseComponent.Logger href: OpenTK.Platform.Native.SDL.SDLMouseComponent.html#OpenTK_Platform_Native_SDL_SDLMouseComponent_Logger @@ -835,13 +995,6 @@ references: name: Logger nameWithType: IPalComponent.Logger fullName: OpenTK.Platform.IPalComponent.Logger -- uid: OpenTK.Core.Utility.ILogger - commentId: T:OpenTK.Core.Utility.ILogger - parent: OpenTK.Core.Utility - href: OpenTK.Core.Utility.ILogger.html - name: ILogger - nameWithType: ILogger - fullName: OpenTK.Core.Utility.ILogger - uid: OpenTK.Core.Utility commentId: N:OpenTK.Core.Utility href: OpenTK.html @@ -872,6 +1025,37 @@ references: - uid: OpenTK.Core.Utility name: Utility href: OpenTK.Core.Utility.html +- uid: OpenTK.Platform.ToolkitOptions + commentId: T:OpenTK.Platform.ToolkitOptions + parent: OpenTK.Platform + href: OpenTK.Platform.ToolkitOptions.html + name: ToolkitOptions + nameWithType: ToolkitOptions + fullName: OpenTK.Platform.ToolkitOptions +- uid: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Init_OpenTK_Platform_ToolkitOptions_ + name: Init(ToolkitOptions) + nameWithType: Toolkit.Init(ToolkitOptions) + fullName: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + spec.csharp: + - uid: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + name: Init + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Init_OpenTK_Platform_ToolkitOptions_ + - name: ( + - uid: OpenTK.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Platform.ToolkitOptions.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + name: Init + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Init_OpenTK_Platform_ToolkitOptions_ + - name: ( + - uid: OpenTK.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Platform.ToolkitOptions.html + - name: ) - uid: OpenTK.Platform.Native.SDL.SDLMouseComponent.Initialize* commentId: Overload:OpenTK.Platform.Native.SDL.SDLMouseComponent.Initialize href: OpenTK.Platform.Native.SDL.SDLMouseComponent.html#OpenTK_Platform_Native_SDL_SDLMouseComponent_Initialize_OpenTK_Platform_ToolkitOptions_ @@ -903,55 +1087,73 @@ references: name: ToolkitOptions href: OpenTK.Platform.ToolkitOptions.html - name: ) -- uid: OpenTK.Platform.ToolkitOptions - commentId: T:OpenTK.Platform.ToolkitOptions - parent: OpenTK.Platform - href: OpenTK.Platform.ToolkitOptions.html - name: ToolkitOptions - nameWithType: ToolkitOptions - fullName: OpenTK.Platform.ToolkitOptions -- uid: OpenTK.Platform.IMouseComponent.SetPosition(System.Int32,System.Int32) - commentId: M:OpenTK.Platform.IMouseComponent.SetPosition(System.Int32,System.Int32) +- uid: OpenTK.Platform.Toolkit.Uninit + commentId: M:OpenTK.Platform.Toolkit.Uninit + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Uninit + name: Uninit() + nameWithType: Toolkit.Uninit() + fullName: OpenTK.Platform.Toolkit.Uninit() + spec.csharp: + - uid: OpenTK.Platform.Toolkit.Uninit + name: Uninit + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Uninit + - name: ( + - name: ) + spec.vb: + - uid: OpenTK.Platform.Toolkit.Uninit + name: Uninit + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Uninit + - name: ( + - name: ) +- uid: OpenTK.Platform.Native.SDL.SDLMouseComponent.Uninitialize* + commentId: Overload:OpenTK.Platform.Native.SDL.SDLMouseComponent.Uninitialize + href: OpenTK.Platform.Native.SDL.SDLMouseComponent.html#OpenTK_Platform_Native_SDL_SDLMouseComponent_Uninitialize + name: Uninitialize + nameWithType: SDLMouseComponent.Uninitialize + fullName: OpenTK.Platform.Native.SDL.SDLMouseComponent.Uninitialize +- uid: OpenTK.Platform.IPalComponent.Uninitialize + commentId: M:OpenTK.Platform.IPalComponent.Uninitialize + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + name: Uninitialize() + nameWithType: IPalComponent.Uninitialize() + fullName: OpenTK.Platform.IPalComponent.Uninitialize() + spec.csharp: + - uid: OpenTK.Platform.IPalComponent.Uninitialize + name: Uninitialize + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + - name: ( + - name: ) + spec.vb: + - uid: OpenTK.Platform.IPalComponent.Uninitialize + name: Uninitialize + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + - name: ( + - name: ) +- uid: OpenTK.Platform.IMouseComponent.SetGlobalPosition(OpenTK.Mathematics.Vector2) + commentId: M:OpenTK.Platform.IMouseComponent.SetGlobalPosition(OpenTK.Mathematics.Vector2) parent: OpenTK.Platform.IMouseComponent - isExternal: true - href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_SetPosition_System_Int32_System_Int32_ - name: SetPosition(int, int) - nameWithType: IMouseComponent.SetPosition(int, int) - fullName: OpenTK.Platform.IMouseComponent.SetPosition(int, int) - nameWithType.vb: IMouseComponent.SetPosition(Integer, Integer) - fullName.vb: OpenTK.Platform.IMouseComponent.SetPosition(Integer, Integer) - name.vb: SetPosition(Integer, Integer) + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_SetGlobalPosition_OpenTK_Mathematics_Vector2_ + name: SetGlobalPosition(Vector2) + nameWithType: IMouseComponent.SetGlobalPosition(Vector2) + fullName: OpenTK.Platform.IMouseComponent.SetGlobalPosition(OpenTK.Mathematics.Vector2) spec.csharp: - - uid: OpenTK.Platform.IMouseComponent.SetPosition(System.Int32,System.Int32) - name: SetPosition - href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_SetPosition_System_Int32_System_Int32_ + - uid: OpenTK.Platform.IMouseComponent.SetGlobalPosition(OpenTK.Mathematics.Vector2) + name: SetGlobalPosition + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_SetGlobalPosition_OpenTK_Mathematics_Vector2_ - name: ( - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 + - uid: OpenTK.Mathematics.Vector2 + name: Vector2 + href: OpenTK.Mathematics.Vector2.html - name: ) spec.vb: - - uid: OpenTK.Platform.IMouseComponent.SetPosition(System.Int32,System.Int32) - name: SetPosition - href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_SetPosition_System_Int32_System_Int32_ + - uid: OpenTK.Platform.IMouseComponent.SetGlobalPosition(OpenTK.Mathematics.Vector2) + name: SetGlobalPosition + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_SetGlobalPosition_OpenTK_Mathematics_Vector2_ - name: ( - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 + - uid: OpenTK.Mathematics.Vector2 + name: Vector2 + href: OpenTK.Mathematics.Vector2.html - name: ) - uid: OpenTK.Platform.Native.SDL.SDLMouseComponent.CanSetMousePosition* commentId: Overload:OpenTK.Platform.Native.SDL.SDLMouseComponent.CanSetMousePosition @@ -1056,59 +1258,142 @@ references: name: SupportsRawMouseMotion nameWithType: IMouseComponent.SupportsRawMouseMotion fullName: OpenTK.Platform.IMouseComponent.SupportsRawMouseMotion -- uid: OpenTK.Platform.Native.SDL.SDLMouseComponent.GetPosition* - commentId: Overload:OpenTK.Platform.Native.SDL.SDLMouseComponent.GetPosition - href: OpenTK.Platform.Native.SDL.SDLMouseComponent.html#OpenTK_Platform_Native_SDL_SDLMouseComponent_GetPosition_System_Int32__System_Int32__ - name: GetPosition - nameWithType: SDLMouseComponent.GetPosition - fullName: OpenTK.Platform.Native.SDL.SDLMouseComponent.GetPosition -- uid: OpenTK.Platform.IMouseComponent.GetPosition(System.Int32@,System.Int32@) - commentId: M:OpenTK.Platform.IMouseComponent.GetPosition(System.Int32@,System.Int32@) +- uid: OpenTK.Platform.IMouseComponent.GetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2@) + commentId: M:OpenTK.Platform.IMouseComponent.GetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2@) parent: OpenTK.Platform.IMouseComponent - isExternal: true - href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_GetPosition_System_Int32__System_Int32__ - name: GetPosition(out int, out int) - nameWithType: IMouseComponent.GetPosition(out int, out int) - fullName: OpenTK.Platform.IMouseComponent.GetPosition(out int, out int) - nameWithType.vb: IMouseComponent.GetPosition(Integer, Integer) - fullName.vb: OpenTK.Platform.IMouseComponent.GetPosition(Integer, Integer) - name.vb: GetPosition(Integer, Integer) + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_GetPosition_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2__ + name: GetPosition(WindowHandle, out Vector2) + nameWithType: IMouseComponent.GetPosition(WindowHandle, out Vector2) + fullName: OpenTK.Platform.IMouseComponent.GetPosition(OpenTK.Platform.WindowHandle, out OpenTK.Mathematics.Vector2) + nameWithType.vb: IMouseComponent.GetPosition(WindowHandle, Vector2) + fullName.vb: OpenTK.Platform.IMouseComponent.GetPosition(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2) + name.vb: GetPosition(WindowHandle, Vector2) spec.csharp: - - uid: OpenTK.Platform.IMouseComponent.GetPosition(System.Int32@,System.Int32@) + - uid: OpenTK.Platform.IMouseComponent.GetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2@) name: GetPosition - href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_GetPosition_System_Int32__System_Int32__ + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_GetPosition_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2__ - name: ( - - name: out - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - name: out - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 + - uid: OpenTK.Mathematics.Vector2 + name: Vector2 + href: OpenTK.Mathematics.Vector2.html - name: ) spec.vb: - - uid: OpenTK.Platform.IMouseComponent.GetPosition(System.Int32@,System.Int32@) + - uid: OpenTK.Platform.IMouseComponent.GetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2@) name: GetPosition - href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_GetPosition_System_Int32__System_Int32__ + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_GetPosition_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2__ - name: ( - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 + - uid: OpenTK.Mathematics.Vector2 + name: Vector2 + href: OpenTK.Mathematics.Vector2.html + - name: ) +- uid: OpenTK.Platform.CursorCaptureMode.Locked + commentId: F:OpenTK.Platform.CursorCaptureMode.Locked + href: OpenTK.Platform.CursorCaptureMode.html#OpenTK_Platform_CursorCaptureMode_Locked + name: Locked + nameWithType: CursorCaptureMode.Locked + fullName: OpenTK.Platform.CursorCaptureMode.Locked +- uid: OpenTK.Platform.Native.SDL.SDLMouseComponent.GetGlobalPosition* + commentId: Overload:OpenTK.Platform.Native.SDL.SDLMouseComponent.GetGlobalPosition + href: OpenTK.Platform.Native.SDL.SDLMouseComponent.html#OpenTK_Platform_Native_SDL_SDLMouseComponent_GetGlobalPosition_OpenTK_Mathematics_Vector2__ + name: GetGlobalPosition + nameWithType: SDLMouseComponent.GetGlobalPosition + fullName: OpenTK.Platform.Native.SDL.SDLMouseComponent.GetGlobalPosition +- uid: OpenTK.Platform.IMouseComponent.GetGlobalPosition(OpenTK.Mathematics.Vector2@) + commentId: M:OpenTK.Platform.IMouseComponent.GetGlobalPosition(OpenTK.Mathematics.Vector2@) + parent: OpenTK.Platform.IMouseComponent + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_GetGlobalPosition_OpenTK_Mathematics_Vector2__ + name: GetGlobalPosition(out Vector2) + nameWithType: IMouseComponent.GetGlobalPosition(out Vector2) + fullName: OpenTK.Platform.IMouseComponent.GetGlobalPosition(out OpenTK.Mathematics.Vector2) + nameWithType.vb: IMouseComponent.GetGlobalPosition(Vector2) + fullName.vb: OpenTK.Platform.IMouseComponent.GetGlobalPosition(OpenTK.Mathematics.Vector2) + name.vb: GetGlobalPosition(Vector2) + spec.csharp: + - uid: OpenTK.Platform.IMouseComponent.GetGlobalPosition(OpenTK.Mathematics.Vector2@) + name: GetGlobalPosition + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_GetGlobalPosition_OpenTK_Mathematics_Vector2__ + - name: ( + - name: out + - name: " " + - uid: OpenTK.Mathematics.Vector2 + name: Vector2 + href: OpenTK.Mathematics.Vector2.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IMouseComponent.GetGlobalPosition(OpenTK.Mathematics.Vector2@) + name: GetGlobalPosition + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_GetGlobalPosition_OpenTK_Mathematics_Vector2__ + - name: ( + - uid: OpenTK.Mathematics.Vector2 + name: Vector2 + href: OpenTK.Mathematics.Vector2.html - name: ) +- uid: OpenTK.Mathematics.Vector2 + commentId: T:OpenTK.Mathematics.Vector2 + parent: OpenTK.Mathematics + href: OpenTK.Mathematics.Vector2.html + name: Vector2 + nameWithType: Vector2 + fullName: OpenTK.Mathematics.Vector2 +- uid: OpenTK.Mathematics + commentId: N:OpenTK.Mathematics + href: OpenTK.html + name: OpenTK.Mathematics + nameWithType: OpenTK.Mathematics + fullName: OpenTK.Mathematics + spec.csharp: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Mathematics + name: Mathematics + href: OpenTK.Mathematics.html + spec.vb: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Mathematics + name: Mathematics + href: OpenTK.Mathematics.html +- uid: OpenTK.Platform.Native.SDL.SDLMouseComponent.GetPosition* + commentId: Overload:OpenTK.Platform.Native.SDL.SDLMouseComponent.GetPosition + href: OpenTK.Platform.Native.SDL.SDLMouseComponent.html#OpenTK_Platform_Native_SDL_SDLMouseComponent_GetPosition_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2__ + name: GetPosition + nameWithType: SDLMouseComponent.GetPosition + fullName: OpenTK.Platform.Native.SDL.SDLMouseComponent.GetPosition +- uid: OpenTK.Platform.WindowHandle + commentId: T:OpenTK.Platform.WindowHandle + parent: OpenTK.Platform + href: OpenTK.Platform.WindowHandle.html + name: WindowHandle + nameWithType: WindowHandle + fullName: OpenTK.Platform.WindowHandle +- uid: OpenTK.Platform.Native.SDL.SDLMouseComponent.SetGlobalPosition* + commentId: Overload:OpenTK.Platform.Native.SDL.SDLMouseComponent.SetGlobalPosition + href: OpenTK.Platform.Native.SDL.SDLMouseComponent.html#OpenTK_Platform_Native_SDL_SDLMouseComponent_SetGlobalPosition_OpenTK_Mathematics_Vector2_ + name: SetGlobalPosition + nameWithType: SDLMouseComponent.SetGlobalPosition + fullName: OpenTK.Platform.Native.SDL.SDLMouseComponent.SetGlobalPosition +- uid: OpenTK.Platform.Native.SDL.SDLMouseComponent.SetPositionInWindow* + commentId: Overload:OpenTK.Platform.Native.SDL.SDLMouseComponent.SetPositionInWindow + href: OpenTK.Platform.Native.SDL.SDLMouseComponent.html#OpenTK_Platform_Native_SDL_SDLMouseComponent_SetPositionInWindow_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_ + name: SetPositionInWindow + nameWithType: SDLMouseComponent.SetPositionInWindow + fullName: OpenTK.Platform.Native.SDL.SDLMouseComponent.SetPositionInWindow - uid: System.Int32 commentId: T:System.Int32 parent: System @@ -1120,46 +1405,26 @@ references: nameWithType.vb: Integer fullName.vb: Integer name.vb: Integer -- uid: OpenTK.Platform.Native.SDL.SDLMouseComponent.SetPosition* - commentId: Overload:OpenTK.Platform.Native.SDL.SDLMouseComponent.SetPosition - href: OpenTK.Platform.Native.SDL.SDLMouseComponent.html#OpenTK_Platform_Native_SDL_SDLMouseComponent_SetPosition_System_Int32_System_Int32_ - name: SetPosition - nameWithType: SDLMouseComponent.SetPosition - fullName: OpenTK.Platform.Native.SDL.SDLMouseComponent.SetPosition -- uid: OpenTK.Platform.Native.SDL.SDLMouseComponent.SetPositionInWindow* - commentId: Overload:OpenTK.Platform.Native.SDL.SDLMouseComponent.SetPositionInWindow - href: OpenTK.Platform.Native.SDL.SDLMouseComponent.html#OpenTK_Platform_Native_SDL_SDLMouseComponent_SetPositionInWindow_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_ - name: SetPositionInWindow - nameWithType: SDLMouseComponent.SetPositionInWindow - fullName: OpenTK.Platform.Native.SDL.SDLMouseComponent.SetPositionInWindow -- uid: OpenTK.Platform.WindowHandle - commentId: T:OpenTK.Platform.WindowHandle - parent: OpenTK.Platform - href: OpenTK.Platform.WindowHandle.html - name: WindowHandle - nameWithType: WindowHandle - fullName: OpenTK.Platform.WindowHandle -- uid: OpenTK.Platform.Native.SDL.SDLMouseComponent.GetMouseState* - commentId: Overload:OpenTK.Platform.Native.SDL.SDLMouseComponent.GetMouseState - href: OpenTK.Platform.Native.SDL.SDLMouseComponent.html#OpenTK_Platform_Native_SDL_SDLMouseComponent_GetMouseState_OpenTK_Platform_MouseState__ - name: GetMouseState - nameWithType: SDLMouseComponent.GetMouseState - fullName: OpenTK.Platform.Native.SDL.SDLMouseComponent.GetMouseState -- uid: OpenTK.Platform.IMouseComponent.GetMouseState(OpenTK.Platform.MouseState@) - commentId: M:OpenTK.Platform.IMouseComponent.GetMouseState(OpenTK.Platform.MouseState@) +- uid: OpenTK.Platform.IMouseComponent.GetMouseState(OpenTK.Platform.WindowHandle,OpenTK.Platform.MouseState@) + commentId: M:OpenTK.Platform.IMouseComponent.GetMouseState(OpenTK.Platform.WindowHandle,OpenTK.Platform.MouseState@) parent: OpenTK.Platform.IMouseComponent - href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_GetMouseState_OpenTK_Platform_MouseState__ - name: GetMouseState(out MouseState) - nameWithType: IMouseComponent.GetMouseState(out MouseState) - fullName: OpenTK.Platform.IMouseComponent.GetMouseState(out OpenTK.Platform.MouseState) - nameWithType.vb: IMouseComponent.GetMouseState(MouseState) - fullName.vb: OpenTK.Platform.IMouseComponent.GetMouseState(OpenTK.Platform.MouseState) - name.vb: GetMouseState(MouseState) + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_GetMouseState_OpenTK_Platform_WindowHandle_OpenTK_Platform_MouseState__ + name: GetMouseState(WindowHandle, out MouseState) + nameWithType: IMouseComponent.GetMouseState(WindowHandle, out MouseState) + fullName: OpenTK.Platform.IMouseComponent.GetMouseState(OpenTK.Platform.WindowHandle, out OpenTK.Platform.MouseState) + nameWithType.vb: IMouseComponent.GetMouseState(WindowHandle, MouseState) + fullName.vb: OpenTK.Platform.IMouseComponent.GetMouseState(OpenTK.Platform.WindowHandle, OpenTK.Platform.MouseState) + name.vb: GetMouseState(WindowHandle, MouseState) spec.csharp: - - uid: OpenTK.Platform.IMouseComponent.GetMouseState(OpenTK.Platform.MouseState@) + - uid: OpenTK.Platform.IMouseComponent.GetMouseState(OpenTK.Platform.WindowHandle,OpenTK.Platform.MouseState@) name: GetMouseState - href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_GetMouseState_OpenTK_Platform_MouseState__ + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_GetMouseState_OpenTK_Platform_WindowHandle_OpenTK_Platform_MouseState__ - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " - name: out - name: " " - uid: OpenTK.Platform.MouseState @@ -1167,9 +1432,56 @@ references: href: OpenTK.Platform.MouseState.html - name: ) spec.vb: - - uid: OpenTK.Platform.IMouseComponent.GetMouseState(OpenTK.Platform.MouseState@) + - uid: OpenTK.Platform.IMouseComponent.GetMouseState(OpenTK.Platform.WindowHandle,OpenTK.Platform.MouseState@) name: GetMouseState - href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_GetMouseState_OpenTK_Platform_MouseState__ + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_GetMouseState_OpenTK_Platform_WindowHandle_OpenTK_Platform_MouseState__ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: OpenTK.Platform.MouseState + name: MouseState + href: OpenTK.Platform.MouseState.html + - name: ) +- uid: OpenTK.Platform.MouseState.Position + commentId: F:OpenTK.Platform.MouseState.Position + href: OpenTK.Platform.MouseState.html#OpenTK_Platform_MouseState_Position + name: Position + nameWithType: MouseState.Position + fullName: OpenTK.Platform.MouseState.Position +- uid: OpenTK.Platform.Native.SDL.SDLMouseComponent.GetGlobalMouseState* + commentId: Overload:OpenTK.Platform.Native.SDL.SDLMouseComponent.GetGlobalMouseState + href: OpenTK.Platform.Native.SDL.SDLMouseComponent.html#OpenTK_Platform_Native_SDL_SDLMouseComponent_GetGlobalMouseState_OpenTK_Platform_MouseState__ + name: GetGlobalMouseState + nameWithType: SDLMouseComponent.GetGlobalMouseState + fullName: OpenTK.Platform.Native.SDL.SDLMouseComponent.GetGlobalMouseState +- uid: OpenTK.Platform.IMouseComponent.GetGlobalMouseState(OpenTK.Platform.MouseState@) + commentId: M:OpenTK.Platform.IMouseComponent.GetGlobalMouseState(OpenTK.Platform.MouseState@) + parent: OpenTK.Platform.IMouseComponent + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_GetGlobalMouseState_OpenTK_Platform_MouseState__ + name: GetGlobalMouseState(out MouseState) + nameWithType: IMouseComponent.GetGlobalMouseState(out MouseState) + fullName: OpenTK.Platform.IMouseComponent.GetGlobalMouseState(out OpenTK.Platform.MouseState) + nameWithType.vb: IMouseComponent.GetGlobalMouseState(MouseState) + fullName.vb: OpenTK.Platform.IMouseComponent.GetGlobalMouseState(OpenTK.Platform.MouseState) + name.vb: GetGlobalMouseState(MouseState) + spec.csharp: + - uid: OpenTK.Platform.IMouseComponent.GetGlobalMouseState(OpenTK.Platform.MouseState@) + name: GetGlobalMouseState + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_GetGlobalMouseState_OpenTK_Platform_MouseState__ + - name: ( + - name: out + - name: " " + - uid: OpenTK.Platform.MouseState + name: MouseState + href: OpenTK.Platform.MouseState.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IMouseComponent.GetGlobalMouseState(OpenTK.Platform.MouseState@) + name: GetGlobalMouseState + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_GetGlobalMouseState_OpenTK_Platform_MouseState__ - name: ( - uid: OpenTK.Platform.MouseState name: MouseState @@ -1182,6 +1494,12 @@ references: name: MouseState nameWithType: MouseState fullName: OpenTK.Platform.MouseState +- uid: OpenTK.Platform.Native.SDL.SDLMouseComponent.GetMouseState* + commentId: Overload:OpenTK.Platform.Native.SDL.SDLMouseComponent.GetMouseState + href: OpenTK.Platform.Native.SDL.SDLMouseComponent.html#OpenTK_Platform_Native_SDL_SDLMouseComponent_GetMouseState_OpenTK_Platform_WindowHandle_OpenTK_Platform_MouseState__ + name: GetMouseState + nameWithType: SDLMouseComponent.GetMouseState + fullName: OpenTK.Platform.Native.SDL.SDLMouseComponent.GetMouseState - uid: OpenTK.Platform.Native.SDL.SDLMouseComponent.IsRawMouseMotionEnabled* commentId: Overload:OpenTK.Platform.Native.SDL.SDLMouseComponent.IsRawMouseMotionEnabled href: OpenTK.Platform.Native.SDL.SDLMouseComponent.html#OpenTK_Platform_Native_SDL_SDLMouseComponent_IsRawMouseMotionEnabled_OpenTK_Platform_WindowHandle_ diff --git a/api/OpenTK.Platform.Native.SDL.SDLOpenGLComponent.yml b/api/OpenTK.Platform.Native.SDL.SDLOpenGLComponent.yml index 0572d0ae..b0bb9fba 100644 --- a/api/OpenTK.Platform.Native.SDL.SDLOpenGLComponent.yml +++ b/api/OpenTK.Platform.Native.SDL.SDLOpenGLComponent.yml @@ -23,6 +23,7 @@ items: - OpenTK.Platform.Native.SDL.SDLOpenGLComponent.SetCurrentContext(OpenTK.Platform.OpenGLContextHandle) - OpenTK.Platform.Native.SDL.SDLOpenGLComponent.SetSwapInterval(System.Int32) - OpenTK.Platform.Native.SDL.SDLOpenGLComponent.SwapBuffers(OpenTK.Platform.OpenGLContextHandle) + - OpenTK.Platform.Native.SDL.SDLOpenGLComponent.Uninitialize langs: - csharp - vb @@ -129,7 +130,7 @@ items: assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL - summary: Provides a logger for this component. + summary: The logger that this component uses to log diagnostic messages. example: [] syntax: content: public ILogger? Logger { get; set; } @@ -138,6 +139,11 @@ items: type: OpenTK.Core.Utility.ILogger content.vb: Public Property Logger As ILogger overload: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.Logger* + seealso: + - linkId: OpenTK.Core.Utility.ILogger + commentId: T:OpenTK.Core.Utility.ILogger + - linkId: OpenTK.Platform.ToolkitOptions.Logger + commentId: P:OpenTK.Platform.ToolkitOptions.Logger implements: - OpenTK.Platform.IPalComponent.Logger - uid: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.Initialize(OpenTK.Platform.ToolkitOptions) @@ -168,8 +174,42 @@ items: description: The options to initialize the component with. content.vb: Public Sub Initialize(options As ToolkitOptions) overload: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.Initialize* + seealso: + - linkId: OpenTK.Platform.ToolkitOptions + commentId: T:OpenTK.Platform.ToolkitOptions + - linkId: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) implements: - OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) +- uid: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.Uninitialize + commentId: M:OpenTK.Platform.Native.SDL.SDLOpenGLComponent.Uninitialize + id: Uninitialize + parent: OpenTK.Platform.Native.SDL.SDLOpenGLComponent + langs: + - csharp + - vb + name: Uninitialize() + nameWithType: SDLOpenGLComponent.Uninitialize() + fullName: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.Uninitialize() + type: Method + source: + id: Uninitialize + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLOpenGLComponent.cs + startLine: 36 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform.Native.SDL + summary: Uninitialize the component. Frees any native resources used by the component. + example: [] + syntax: + content: public void Uninitialize() + content.vb: Public Sub Uninitialize() + overload: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.Uninitialize* + seealso: + - linkId: OpenTK.Platform.Toolkit.Uninit + commentId: M:OpenTK.Platform.Toolkit.Uninit + implements: + - OpenTK.Platform.IPalComponent.Uninitialize - uid: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.CanShareContexts commentId: P:OpenTK.Platform.Native.SDL.SDLOpenGLComponent.CanShareContexts id: CanShareContexts @@ -184,7 +224,7 @@ items: source: id: CanShareContexts path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLOpenGLComponent.cs - startLine: 36 + startLine: 42 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL @@ -213,7 +253,7 @@ items: source: id: CanCreateFromWindow path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLOpenGLComponent.cs - startLine: 39 + startLine: 45 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL @@ -245,7 +285,7 @@ items: source: id: CanCreateFromSurface path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLOpenGLComponent.cs - startLine: 42 + startLine: 48 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL @@ -274,7 +314,7 @@ items: source: id: CreateFromSurface path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLOpenGLComponent.cs - startLine: 45 + startLine: 51 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL @@ -303,7 +343,7 @@ items: source: id: CreateFromWindow path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLOpenGLComponent.cs - startLine: 51 + startLine: 57 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL @@ -320,6 +360,11 @@ items: description: An OpenGL context handle. content.vb: Public Function CreateFromWindow(handle As WindowHandle) As OpenGLContextHandle overload: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.CreateFromWindow* + seealso: + - linkId: OpenTK.Platform.IWindowComponent.Create(OpenTK.Platform.GraphicsApiHints) + commentId: M:OpenTK.Platform.IWindowComponent.Create(OpenTK.Platform.GraphicsApiHints) + - linkId: OpenTK.Platform.OpenGLGraphicsApiHints + commentId: T:OpenTK.Platform.OpenGLGraphicsApiHints implements: - OpenTK.Platform.IOpenGLComponent.CreateFromWindow(OpenTK.Platform.WindowHandle) - uid: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.DestroyContext(OpenTK.Platform.OpenGLContextHandle) @@ -336,7 +381,7 @@ items: source: id: DestroyContext path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLOpenGLComponent.cs - startLine: 88 + startLine: 94 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL @@ -350,10 +395,9 @@ items: description: Handle to the OpenGL context to destroy. content.vb: Public Sub DestroyContext(handle As OpenGLContextHandle) overload: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.DestroyContext* - exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: OpenGL context handle is null. + seealso: + - linkId: OpenTK.Platform.IOpenGLComponent.CreateFromWindow(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IOpenGLComponent.CreateFromWindow(OpenTK.Platform.WindowHandle) implements: - OpenTK.Platform.IOpenGLComponent.DestroyContext(OpenTK.Platform.OpenGLContextHandle) - uid: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.GetBindingsContext(OpenTK.Platform.OpenGLContextHandle) @@ -370,11 +414,14 @@ items: source: id: GetBindingsContext path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLOpenGLComponent.cs - startLine: 98 + startLine: 104 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL - summary: Gets a from an . + summary: >- + Gets a from an . + + Pass this to to load the OpenGL bindings. example: [] syntax: content: public IBindingsContext GetBindingsContext(OpenGLContextHandle handle) @@ -387,6 +434,11 @@ items: description: The created bindings context. content.vb: Public Function GetBindingsContext(handle As OpenGLContextHandle) As IBindingsContext overload: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.GetBindingsContext* + seealso: + - linkId: OpenTK.Graphics.GLLoader + commentId: T:OpenTK.Graphics.GLLoader + - linkId: OpenTK.IBindingsContext + commentId: T:OpenTK.IBindingsContext implements: - OpenTK.Platform.IOpenGLComponent.GetBindingsContext(OpenTK.Platform.OpenGLContextHandle) - uid: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.GetProcedureAddress(OpenTK.Platform.OpenGLContextHandle,System.String) @@ -403,7 +455,7 @@ items: source: id: GetProcedureAddress path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLOpenGLComponent.cs - startLine: 104 + startLine: 110 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL @@ -423,10 +475,6 @@ items: description: The procedure address to the OpenGL command. content.vb: Public Function GetProcedureAddress(handle As OpenGLContextHandle, procedureName As String) As IntPtr overload: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.GetProcedureAddress* - exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: OpenGL context handle or procedure name is null. implements: - OpenTK.Platform.IOpenGLComponent.GetProcedureAddress(OpenTK.Platform.OpenGLContextHandle,System.String) nameWithType.vb: SDLOpenGLComponent.GetProcedureAddress(OpenGLContextHandle, String) @@ -446,7 +494,7 @@ items: source: id: GetCurrentContext path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLOpenGLComponent.cs - startLine: 112 + startLine: 118 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL @@ -456,9 +504,12 @@ items: content: public OpenGLContextHandle? GetCurrentContext() return: type: OpenTK.Platform.OpenGLContextHandle - description: Handle to the current OpenGL context, null if none are current. + description: Handle to the current OpenGL context, null if no context is current. content.vb: Public Function GetCurrentContext() As OpenGLContextHandle overload: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.GetCurrentContext* + seealso: + - linkId: OpenTK.Platform.IOpenGLComponent.SetCurrentContext(OpenTK.Platform.OpenGLContextHandle) + commentId: M:OpenTK.Platform.IOpenGLComponent.SetCurrentContext(OpenTK.Platform.OpenGLContextHandle) implements: - OpenTK.Platform.IOpenGLComponent.GetCurrentContext - uid: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.SetCurrentContext(OpenTK.Platform.OpenGLContextHandle) @@ -475,7 +526,7 @@ items: source: id: SetCurrentContext path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLOpenGLComponent.cs - startLine: 131 + startLine: 137 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL @@ -486,12 +537,15 @@ items: parameters: - id: handle type: OpenTK.Platform.OpenGLContextHandle - description: Handle to the OpenGL context to make current, or null to make none current. + description: Handle to the OpenGL context to make current, or null to make no context current. return: type: System.Boolean - description: True when the OpenGL context is successfully made current. + description: true when the OpenGL context is successfully made current. content.vb: Public Function SetCurrentContext(handle As OpenGLContextHandle) As Boolean overload: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.SetCurrentContext* + seealso: + - linkId: OpenTK.Platform.IOpenGLComponent.GetCurrentContext + commentId: M:OpenTK.Platform.IOpenGLComponent.GetCurrentContext implements: - OpenTK.Platform.IOpenGLComponent.SetCurrentContext(OpenTK.Platform.OpenGLContextHandle) nameWithType.vb: SDLOpenGLComponent.SetCurrentContext(OpenGLContextHandle) @@ -511,7 +565,7 @@ items: source: id: GetSharedContext path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLOpenGLComponent.cs - startLine: 149 + startLine: 155 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL @@ -528,6 +582,9 @@ items: description: Handle to the OpenGL context the given context shares display lists with. content.vb: Public Function GetSharedContext(handle As OpenGLContextHandle) As OpenGLContextHandle overload: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.GetSharedContext* + seealso: + - linkId: OpenTK.Platform.OpenGLGraphicsApiHints.SharedContext + commentId: P:OpenTK.Platform.OpenGLGraphicsApiHints.SharedContext implements: - OpenTK.Platform.IOpenGLComponent.GetSharedContext(OpenTK.Platform.OpenGLContextHandle) - uid: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.SetSwapInterval(System.Int32) @@ -544,7 +601,7 @@ items: source: id: SetSwapInterval path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLOpenGLComponent.cs - startLine: 157 + startLine: 163 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL @@ -577,17 +634,17 @@ items: source: id: GetSwapInterval path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLOpenGLComponent.cs - startLine: 163 + startLine: 169 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL - summary: Gets the swap interval of the current OpenGL context. + summary: Gets the swap interval of the current OpenGL context, or -1 if no context is current. example: [] syntax: content: public int GetSwapInterval() return: type: System.Int32 - description: The current swap interval. + description: The current swap interval, or -1 if no context is current. content.vb: Public Function GetSwapInterval() As Integer overload: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.GetSwapInterval* implements: @@ -606,7 +663,7 @@ items: source: id: SwapBuffers path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLOpenGLComponent.cs - startLine: 169 + startLine: 175 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL @@ -620,6 +677,9 @@ items: description: Handle to the context. content.vb: Public Sub SwapBuffers(handle As OpenGLContextHandle) overload: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.SwapBuffers* + seealso: + - linkId: OpenTK.Platform.OpenGLGraphicsApiHints.SwapMethod + commentId: P:OpenTK.Platform.OpenGLGraphicsApiHints.SwapMethod implements: - OpenTK.Platform.IOpenGLComponent.SwapBuffers(OpenTK.Platform.OpenGLContextHandle) references: @@ -978,6 +1038,19 @@ references: name: PalComponents nameWithType: PalComponents fullName: OpenTK.Platform.PalComponents +- uid: OpenTK.Core.Utility.ILogger + commentId: T:OpenTK.Core.Utility.ILogger + parent: OpenTK.Core.Utility + href: OpenTK.Core.Utility.ILogger.html + name: ILogger + nameWithType: ILogger + fullName: OpenTK.Core.Utility.ILogger +- uid: OpenTK.Platform.ToolkitOptions.Logger + commentId: P:OpenTK.Platform.ToolkitOptions.Logger + href: OpenTK.Platform.ToolkitOptions.html#OpenTK_Platform_ToolkitOptions_Logger + name: Logger + nameWithType: ToolkitOptions.Logger + fullName: OpenTK.Platform.ToolkitOptions.Logger - uid: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.Logger* commentId: Overload:OpenTK.Platform.Native.SDL.SDLOpenGLComponent.Logger href: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.html#OpenTK_Platform_Native_SDL_SDLOpenGLComponent_Logger @@ -991,13 +1064,6 @@ references: name: Logger nameWithType: IPalComponent.Logger fullName: OpenTK.Platform.IPalComponent.Logger -- uid: OpenTK.Core.Utility.ILogger - commentId: T:OpenTK.Core.Utility.ILogger - parent: OpenTK.Core.Utility - href: OpenTK.Core.Utility.ILogger.html - name: ILogger - nameWithType: ILogger - fullName: OpenTK.Core.Utility.ILogger - uid: OpenTK.Core.Utility commentId: N:OpenTK.Core.Utility href: OpenTK.html @@ -1028,6 +1094,37 @@ references: - uid: OpenTK.Core.Utility name: Utility href: OpenTK.Core.Utility.html +- uid: OpenTK.Platform.ToolkitOptions + commentId: T:OpenTK.Platform.ToolkitOptions + parent: OpenTK.Platform + href: OpenTK.Platform.ToolkitOptions.html + name: ToolkitOptions + nameWithType: ToolkitOptions + fullName: OpenTK.Platform.ToolkitOptions +- uid: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Init_OpenTK_Platform_ToolkitOptions_ + name: Init(ToolkitOptions) + nameWithType: Toolkit.Init(ToolkitOptions) + fullName: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + spec.csharp: + - uid: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + name: Init + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Init_OpenTK_Platform_ToolkitOptions_ + - name: ( + - uid: OpenTK.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Platform.ToolkitOptions.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + name: Init + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Init_OpenTK_Platform_ToolkitOptions_ + - name: ( + - uid: OpenTK.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Platform.ToolkitOptions.html + - name: ) - uid: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.Initialize* commentId: Overload:OpenTK.Platform.Native.SDL.SDLOpenGLComponent.Initialize href: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.html#OpenTK_Platform_Native_SDL_SDLOpenGLComponent_Initialize_OpenTK_Platform_ToolkitOptions_ @@ -1059,13 +1156,49 @@ references: name: ToolkitOptions href: OpenTK.Platform.ToolkitOptions.html - name: ) -- uid: OpenTK.Platform.ToolkitOptions - commentId: T:OpenTK.Platform.ToolkitOptions - parent: OpenTK.Platform - href: OpenTK.Platform.ToolkitOptions.html - name: ToolkitOptions - nameWithType: ToolkitOptions - fullName: OpenTK.Platform.ToolkitOptions +- uid: OpenTK.Platform.Toolkit.Uninit + commentId: M:OpenTK.Platform.Toolkit.Uninit + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Uninit + name: Uninit() + nameWithType: Toolkit.Uninit() + fullName: OpenTK.Platform.Toolkit.Uninit() + spec.csharp: + - uid: OpenTK.Platform.Toolkit.Uninit + name: Uninit + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Uninit + - name: ( + - name: ) + spec.vb: + - uid: OpenTK.Platform.Toolkit.Uninit + name: Uninit + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Uninit + - name: ( + - name: ) +- uid: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.Uninitialize* + commentId: Overload:OpenTK.Platform.Native.SDL.SDLOpenGLComponent.Uninitialize + href: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.html#OpenTK_Platform_Native_SDL_SDLOpenGLComponent_Uninitialize + name: Uninitialize + nameWithType: SDLOpenGLComponent.Uninitialize + fullName: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.Uninitialize +- uid: OpenTK.Platform.IPalComponent.Uninitialize + commentId: M:OpenTK.Platform.IPalComponent.Uninitialize + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + name: Uninitialize() + nameWithType: IPalComponent.Uninitialize() + fullName: OpenTK.Platform.IPalComponent.Uninitialize() + spec.csharp: + - uid: OpenTK.Platform.IPalComponent.Uninitialize + name: Uninitialize + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + - name: ( + - name: ) + spec.vb: + - uid: OpenTK.Platform.IPalComponent.Uninitialize + name: Uninitialize + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + - name: ( + - name: ) - uid: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.CanShareContexts* commentId: Overload:OpenTK.Platform.Native.SDL.SDLOpenGLComponent.CanShareContexts href: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.html#OpenTK_Platform_Native_SDL_SDLOpenGLComponent_CanShareContexts @@ -1173,6 +1306,38 @@ references: name: OpenGLContextHandle nameWithType: OpenGLContextHandle fullName: OpenTK.Platform.OpenGLContextHandle +- uid: OpenTK.Platform.IWindowComponent.Create(OpenTK.Platform.GraphicsApiHints) + commentId: M:OpenTK.Platform.IWindowComponent.Create(OpenTK.Platform.GraphicsApiHints) + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_Create_OpenTK_Platform_GraphicsApiHints_ + name: Create(GraphicsApiHints) + nameWithType: IWindowComponent.Create(GraphicsApiHints) + fullName: OpenTK.Platform.IWindowComponent.Create(OpenTK.Platform.GraphicsApiHints) + spec.csharp: + - uid: OpenTK.Platform.IWindowComponent.Create(OpenTK.Platform.GraphicsApiHints) + name: Create + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_Create_OpenTK_Platform_GraphicsApiHints_ + - name: ( + - uid: OpenTK.Platform.GraphicsApiHints + name: GraphicsApiHints + href: OpenTK.Platform.GraphicsApiHints.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IWindowComponent.Create(OpenTK.Platform.GraphicsApiHints) + name: Create + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_Create_OpenTK_Platform_GraphicsApiHints_ + - name: ( + - uid: OpenTK.Platform.GraphicsApiHints + name: GraphicsApiHints + href: OpenTK.Platform.GraphicsApiHints.html + - name: ) +- uid: OpenTK.Platform.OpenGLGraphicsApiHints + commentId: T:OpenTK.Platform.OpenGLGraphicsApiHints + parent: OpenTK.Platform + href: OpenTK.Platform.OpenGLGraphicsApiHints.html + name: OpenGLGraphicsApiHints + nameWithType: OpenGLGraphicsApiHints + fullName: OpenTK.Platform.OpenGLGraphicsApiHints - uid: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.CreateFromWindow* commentId: Overload:OpenTK.Platform.Native.SDL.SDLOpenGLComponent.CreateFromWindow href: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.html#OpenTK_Platform_Native_SDL_SDLOpenGLComponent_CreateFromWindow_OpenTK_Platform_WindowHandle_ @@ -1186,13 +1351,13 @@ references: name: WindowHandle nameWithType: WindowHandle fullName: OpenTK.Platform.WindowHandle -- uid: System.ArgumentNullException - commentId: T:System.ArgumentNullException - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.argumentnullexception - name: ArgumentNullException - nameWithType: ArgumentNullException - fullName: System.ArgumentNullException +- uid: OpenTK.Platform.IWindowComponent + commentId: T:OpenTK.Platform.IWindowComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IWindowComponent.html + name: IWindowComponent + nameWithType: IWindowComponent + fullName: OpenTK.Platform.IWindowComponent - uid: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.DestroyContext* commentId: Overload:OpenTK.Platform.Native.SDL.SDLOpenGLComponent.DestroyContext href: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.html#OpenTK_Platform_Native_SDL_SDLOpenGLComponent_DestroyContext_OpenTK_Platform_OpenGLContextHandle_ @@ -1224,6 +1389,12 @@ references: name: OpenGLContextHandle href: OpenTK.Platform.OpenGLContextHandle.html - name: ) +- uid: OpenTK.Graphics.GLLoader + commentId: T:OpenTK.Graphics.GLLoader + href: OpenTK.Graphics.GLLoader.html + name: GLLoader + nameWithType: GLLoader + fullName: OpenTK.Graphics.GLLoader - uid: OpenTK.IBindingsContext commentId: T:OpenTK.IBindingsContext parent: OpenTK @@ -1231,6 +1402,30 @@ references: name: IBindingsContext nameWithType: IBindingsContext fullName: OpenTK.IBindingsContext +- uid: OpenTK.Graphics.GLLoader.LoadBindings(OpenTK.IBindingsContext) + commentId: M:OpenTK.Graphics.GLLoader.LoadBindings(OpenTK.IBindingsContext) + href: OpenTK.Graphics.GLLoader.html#OpenTK_Graphics_GLLoader_LoadBindings_OpenTK_IBindingsContext_ + name: LoadBindings(IBindingsContext) + nameWithType: GLLoader.LoadBindings(IBindingsContext) + fullName: OpenTK.Graphics.GLLoader.LoadBindings(OpenTK.IBindingsContext) + spec.csharp: + - uid: OpenTK.Graphics.GLLoader.LoadBindings(OpenTK.IBindingsContext) + name: LoadBindings + href: OpenTK.Graphics.GLLoader.html#OpenTK_Graphics_GLLoader_LoadBindings_OpenTK_IBindingsContext_ + - name: ( + - uid: OpenTK.IBindingsContext + name: IBindingsContext + href: OpenTK.IBindingsContext.html + - name: ) + spec.vb: + - uid: OpenTK.Graphics.GLLoader.LoadBindings(OpenTK.IBindingsContext) + name: LoadBindings + href: OpenTK.Graphics.GLLoader.html#OpenTK_Graphics_GLLoader_LoadBindings_OpenTK_IBindingsContext_ + - name: ( + - uid: OpenTK.IBindingsContext + name: IBindingsContext + href: OpenTK.IBindingsContext.html + - name: ) - uid: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.GetBindingsContext* commentId: Overload:OpenTK.Platform.Native.SDL.SDLOpenGLComponent.GetBindingsContext href: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.html#OpenTK_Platform_Native_SDL_SDLOpenGLComponent_GetBindingsContext_OpenTK_Platform_OpenGLContextHandle_ @@ -1326,6 +1521,31 @@ references: nameWithType.vb: IntPtr fullName.vb: System.IntPtr name.vb: IntPtr +- uid: OpenTK.Platform.IOpenGLComponent.SetCurrentContext(OpenTK.Platform.OpenGLContextHandle) + commentId: M:OpenTK.Platform.IOpenGLComponent.SetCurrentContext(OpenTK.Platform.OpenGLContextHandle) + parent: OpenTK.Platform.IOpenGLComponent + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_SetCurrentContext_OpenTK_Platform_OpenGLContextHandle_ + name: SetCurrentContext(OpenGLContextHandle) + nameWithType: IOpenGLComponent.SetCurrentContext(OpenGLContextHandle) + fullName: OpenTK.Platform.IOpenGLComponent.SetCurrentContext(OpenTK.Platform.OpenGLContextHandle) + spec.csharp: + - uid: OpenTK.Platform.IOpenGLComponent.SetCurrentContext(OpenTK.Platform.OpenGLContextHandle) + name: SetCurrentContext + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_SetCurrentContext_OpenTK_Platform_OpenGLContextHandle_ + - name: ( + - uid: OpenTK.Platform.OpenGLContextHandle + name: OpenGLContextHandle + href: OpenTK.Platform.OpenGLContextHandle.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IOpenGLComponent.SetCurrentContext(OpenTK.Platform.OpenGLContextHandle) + name: SetCurrentContext + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_SetCurrentContext_OpenTK_Platform_OpenGLContextHandle_ + - name: ( + - uid: OpenTK.Platform.OpenGLContextHandle + name: OpenGLContextHandle + href: OpenTK.Platform.OpenGLContextHandle.html + - name: ) - uid: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.GetCurrentContext* commentId: Overload:OpenTK.Platform.Native.SDL.SDLOpenGLComponent.GetCurrentContext href: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.html#OpenTK_Platform_Native_SDL_SDLOpenGLComponent_GetCurrentContext @@ -1357,31 +1577,12 @@ references: name: SetCurrentContext nameWithType: SDLOpenGLComponent.SetCurrentContext fullName: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.SetCurrentContext -- uid: OpenTK.Platform.IOpenGLComponent.SetCurrentContext(OpenTK.Platform.OpenGLContextHandle) - commentId: M:OpenTK.Platform.IOpenGLComponent.SetCurrentContext(OpenTK.Platform.OpenGLContextHandle) - parent: OpenTK.Platform.IOpenGLComponent - href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_SetCurrentContext_OpenTK_Platform_OpenGLContextHandle_ - name: SetCurrentContext(OpenGLContextHandle) - nameWithType: IOpenGLComponent.SetCurrentContext(OpenGLContextHandle) - fullName: OpenTK.Platform.IOpenGLComponent.SetCurrentContext(OpenTK.Platform.OpenGLContextHandle) - spec.csharp: - - uid: OpenTK.Platform.IOpenGLComponent.SetCurrentContext(OpenTK.Platform.OpenGLContextHandle) - name: SetCurrentContext - href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_SetCurrentContext_OpenTK_Platform_OpenGLContextHandle_ - - name: ( - - uid: OpenTK.Platform.OpenGLContextHandle - name: OpenGLContextHandle - href: OpenTK.Platform.OpenGLContextHandle.html - - name: ) - spec.vb: - - uid: OpenTK.Platform.IOpenGLComponent.SetCurrentContext(OpenTK.Platform.OpenGLContextHandle) - name: SetCurrentContext - href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_SetCurrentContext_OpenTK_Platform_OpenGLContextHandle_ - - name: ( - - uid: OpenTK.Platform.OpenGLContextHandle - name: OpenGLContextHandle - href: OpenTK.Platform.OpenGLContextHandle.html - - name: ) +- uid: OpenTK.Platform.OpenGLGraphicsApiHints.SharedContext + commentId: P:OpenTK.Platform.OpenGLGraphicsApiHints.SharedContext + href: OpenTK.Platform.OpenGLGraphicsApiHints.html#OpenTK_Platform_OpenGLGraphicsApiHints_SharedContext + name: SharedContext + nameWithType: OpenGLGraphicsApiHints.SharedContext + fullName: OpenTK.Platform.OpenGLGraphicsApiHints.SharedContext - uid: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.GetSharedContext* commentId: Overload:OpenTK.Platform.Native.SDL.SDLOpenGLComponent.GetSharedContext href: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.html#OpenTK_Platform_Native_SDL_SDLOpenGLComponent_GetSharedContext_OpenTK_Platform_OpenGLContextHandle_ @@ -1486,6 +1687,12 @@ references: href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_GetSwapInterval - name: ( - name: ) +- uid: OpenTK.Platform.OpenGLGraphicsApiHints.SwapMethod + commentId: P:OpenTK.Platform.OpenGLGraphicsApiHints.SwapMethod + href: OpenTK.Platform.OpenGLGraphicsApiHints.html#OpenTK_Platform_OpenGLGraphicsApiHints_SwapMethod + name: SwapMethod + nameWithType: OpenGLGraphicsApiHints.SwapMethod + fullName: OpenTK.Platform.OpenGLGraphicsApiHints.SwapMethod - uid: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.SwapBuffers* commentId: Overload:OpenTK.Platform.Native.SDL.SDLOpenGLComponent.SwapBuffers href: OpenTK.Platform.Native.SDL.SDLOpenGLComponent.html#OpenTK_Platform_Native_SDL_SDLOpenGLComponent_SwapBuffers_OpenTK_Platform_OpenGLContextHandle_ diff --git a/api/OpenTK.Platform.Native.SDL.SDLShellComponent.yml b/api/OpenTK.Platform.Native.SDL.SDLShellComponent.yml index e0bd262d..a3e2f947 100644 --- a/api/OpenTK.Platform.Native.SDL.SDLShellComponent.yml +++ b/api/OpenTK.Platform.Native.SDL.SDLShellComponent.yml @@ -5,14 +5,16 @@ items: id: SDLShellComponent parent: OpenTK.Platform.Native.SDL children: - - OpenTK.Platform.Native.SDL.SDLShellComponent.AllowScreenSaver(System.Boolean) + - OpenTK.Platform.Native.SDL.SDLShellComponent.AllowScreenSaver(System.Boolean,System.String) - OpenTK.Platform.Native.SDL.SDLShellComponent.GetBatteryInfo(OpenTK.Platform.BatteryInfo@) - OpenTK.Platform.Native.SDL.SDLShellComponent.GetPreferredTheme - OpenTK.Platform.Native.SDL.SDLShellComponent.GetSystemMemoryInformation - OpenTK.Platform.Native.SDL.SDLShellComponent.Initialize(OpenTK.Platform.ToolkitOptions) + - OpenTK.Platform.Native.SDL.SDLShellComponent.IsScreenSaverAllowed - OpenTK.Platform.Native.SDL.SDLShellComponent.Logger - OpenTK.Platform.Native.SDL.SDLShellComponent.Name - OpenTK.Platform.Native.SDL.SDLShellComponent.Provides + - OpenTK.Platform.Native.SDL.SDLShellComponent.Uninitialize langs: - csharp - vb @@ -119,7 +121,7 @@ items: assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL - summary: Provides a logger for this component. + summary: The logger that this component uses to log diagnostic messages. example: [] syntax: content: public ILogger? Logger { get; set; } @@ -128,6 +130,11 @@ items: type: OpenTK.Core.Utility.ILogger content.vb: Public Property Logger As ILogger overload: OpenTK.Platform.Native.SDL.SDLShellComponent.Logger* + seealso: + - linkId: OpenTK.Core.Utility.ILogger + commentId: T:OpenTK.Core.Utility.ILogger + - linkId: OpenTK.Platform.ToolkitOptions.Logger + commentId: P:OpenTK.Platform.ToolkitOptions.Logger implements: - OpenTK.Platform.IPalComponent.Logger - uid: OpenTK.Platform.Native.SDL.SDLShellComponent.Initialize(OpenTK.Platform.ToolkitOptions) @@ -158,48 +165,129 @@ items: description: The options to initialize the component with. content.vb: Public Sub Initialize(options As ToolkitOptions) overload: OpenTK.Platform.Native.SDL.SDLShellComponent.Initialize* + seealso: + - linkId: OpenTK.Platform.ToolkitOptions + commentId: T:OpenTK.Platform.ToolkitOptions + - linkId: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) implements: - OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) -- uid: OpenTK.Platform.Native.SDL.SDLShellComponent.AllowScreenSaver(System.Boolean) - commentId: M:OpenTK.Platform.Native.SDL.SDLShellComponent.AllowScreenSaver(System.Boolean) - id: AllowScreenSaver(System.Boolean) +- uid: OpenTK.Platform.Native.SDL.SDLShellComponent.Uninitialize + commentId: M:OpenTK.Platform.Native.SDL.SDLShellComponent.Uninitialize + id: Uninitialize parent: OpenTK.Platform.Native.SDL.SDLShellComponent langs: - csharp - vb - name: AllowScreenSaver(bool) - nameWithType: SDLShellComponent.AllowScreenSaver(bool) - fullName: OpenTK.Platform.Native.SDL.SDLShellComponent.AllowScreenSaver(bool) + name: Uninitialize() + nameWithType: SDLShellComponent.Uninitialize() + fullName: OpenTK.Platform.Native.SDL.SDLShellComponent.Uninitialize() type: Method source: - id: AllowScreenSaver + id: Uninitialize path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLShellComponent.cs startLine: 29 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL + summary: Uninitialize the component. Frees any native resources used by the component. + example: [] + syntax: + content: public void Uninitialize() + content.vb: Public Sub Uninitialize() + overload: OpenTK.Platform.Native.SDL.SDLShellComponent.Uninitialize* + seealso: + - linkId: OpenTK.Platform.Toolkit.Uninit + commentId: M:OpenTK.Platform.Toolkit.Uninit + implements: + - OpenTK.Platform.IPalComponent.Uninitialize +- uid: OpenTK.Platform.Native.SDL.SDLShellComponent.AllowScreenSaver(System.Boolean,System.String) + commentId: M:OpenTK.Platform.Native.SDL.SDLShellComponent.AllowScreenSaver(System.Boolean,System.String) + id: AllowScreenSaver(System.Boolean,System.String) + parent: OpenTK.Platform.Native.SDL.SDLShellComponent + langs: + - csharp + - vb + name: AllowScreenSaver(bool, string?) + nameWithType: SDLShellComponent.AllowScreenSaver(bool, string?) + fullName: OpenTK.Platform.Native.SDL.SDLShellComponent.AllowScreenSaver(bool, string?) + type: Method + source: + id: AllowScreenSaver + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLShellComponent.cs + startLine: 34 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform.Native.SDL summary: >- Sets whether or not a screensaver is allowed to draw on top of the window. - For games with long cutscenes it would be appropriate to set this to false, + For games with long cutscenes it would be appropriate to set this to false, - while tools that act like normal applications should set this to true. + while tools that act like normal applications should set this to true. By default this setting is untouched. example: [] syntax: - content: public void AllowScreenSaver(bool allow) + content: public void AllowScreenSaver(bool allow, string? disableReason) parameters: - id: allow type: System.Boolean description: Whether to allow screensavers to appear while the application is running. - content.vb: Public Sub AllowScreenSaver(allow As Boolean) + - id: disableReason + type: System.String + description: >- + A reason for why the screen saver is disabled. + + This string should both contain the reason why the screen saver is disabed as well as the name of the + + application so the user knows which application is preventing the screen saver from running. + + If null is sent the following default message will be sent: + +
$"{ApplicationName} is is preventing screen saver."
+ content.vb: Public Sub AllowScreenSaver(allow As Boolean, disableReason As String) overload: OpenTK.Platform.Native.SDL.SDLShellComponent.AllowScreenSaver* + seealso: + - linkId: OpenTK.Platform.IShellComponent.IsScreenSaverAllowed + commentId: M:OpenTK.Platform.IShellComponent.IsScreenSaverAllowed + implements: + - OpenTK.Platform.IShellComponent.AllowScreenSaver(System.Boolean,System.String) + nameWithType.vb: SDLShellComponent.AllowScreenSaver(Boolean, String) + fullName.vb: OpenTK.Platform.Native.SDL.SDLShellComponent.AllowScreenSaver(Boolean, String) + name.vb: AllowScreenSaver(Boolean, String) +- uid: OpenTK.Platform.Native.SDL.SDLShellComponent.IsScreenSaverAllowed + commentId: M:OpenTK.Platform.Native.SDL.SDLShellComponent.IsScreenSaverAllowed + id: IsScreenSaverAllowed + parent: OpenTK.Platform.Native.SDL.SDLShellComponent + langs: + - csharp + - vb + name: IsScreenSaverAllowed() + nameWithType: SDLShellComponent.IsScreenSaverAllowed() + fullName: OpenTK.Platform.Native.SDL.SDLShellComponent.IsScreenSaverAllowed() + type: Method + source: + id: IsScreenSaverAllowed + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLShellComponent.cs + startLine: 47 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform.Native.SDL + summary: Gets if the screen saver is allowed to run or not. + example: [] + syntax: + content: public bool IsScreenSaverAllowed() + return: + type: System.Boolean + description: If the screen saver is allowed to run. + content.vb: Public Function IsScreenSaverAllowed() As Boolean + overload: OpenTK.Platform.Native.SDL.SDLShellComponent.IsScreenSaverAllowed* + seealso: + - linkId: OpenTK.Platform.IShellComponent.AllowScreenSaver(System.Boolean,System.String) + commentId: M:OpenTK.Platform.IShellComponent.AllowScreenSaver(System.Boolean,System.String) implements: - - OpenTK.Platform.IShellComponent.AllowScreenSaver(System.Boolean) - nameWithType.vb: SDLShellComponent.AllowScreenSaver(Boolean) - fullName.vb: OpenTK.Platform.Native.SDL.SDLShellComponent.AllowScreenSaver(Boolean) - name.vb: AllowScreenSaver(Boolean) + - OpenTK.Platform.IShellComponent.IsScreenSaverAllowed - uid: OpenTK.Platform.Native.SDL.SDLShellComponent.GetBatteryInfo(OpenTK.Platform.BatteryInfo@) commentId: M:OpenTK.Platform.Native.SDL.SDLShellComponent.GetBatteryInfo(OpenTK.Platform.BatteryInfo@) id: GetBatteryInfo(OpenTK.Platform.BatteryInfo@) @@ -214,7 +302,7 @@ items: source: id: GetBatteryInfo path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLShellComponent.cs - startLine: 42 + startLine: 53 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL @@ -252,7 +340,7 @@ items: source: id: GetPreferredTheme path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLShellComponent.cs - startLine: 78 + startLine: 89 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL @@ -265,6 +353,9 @@ items: description: The user set preferred theme. content.vb: Public Function GetPreferredTheme() As ThemeInfo overload: OpenTK.Platform.Native.SDL.SDLShellComponent.GetPreferredTheme* + seealso: + - linkId: OpenTK.Platform.ThemeChangeEventArgs + commentId: T:OpenTK.Platform.ThemeChangeEventArgs implements: - OpenTK.Platform.IShellComponent.GetPreferredTheme - uid: OpenTK.Platform.Native.SDL.SDLShellComponent.GetSystemMemoryInformation @@ -281,7 +372,7 @@ items: source: id: GetSystemMemoryInformation path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLShellComponent.cs - startLine: 90 + startLine: 101 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL @@ -652,6 +743,19 @@ references: name: PalComponents nameWithType: PalComponents fullName: OpenTK.Platform.PalComponents +- uid: OpenTK.Core.Utility.ILogger + commentId: T:OpenTK.Core.Utility.ILogger + parent: OpenTK.Core.Utility + href: OpenTK.Core.Utility.ILogger.html + name: ILogger + nameWithType: ILogger + fullName: OpenTK.Core.Utility.ILogger +- uid: OpenTK.Platform.ToolkitOptions.Logger + commentId: P:OpenTK.Platform.ToolkitOptions.Logger + href: OpenTK.Platform.ToolkitOptions.html#OpenTK_Platform_ToolkitOptions_Logger + name: Logger + nameWithType: ToolkitOptions.Logger + fullName: OpenTK.Platform.ToolkitOptions.Logger - uid: OpenTK.Platform.Native.SDL.SDLShellComponent.Logger* commentId: Overload:OpenTK.Platform.Native.SDL.SDLShellComponent.Logger href: OpenTK.Platform.Native.SDL.SDLShellComponent.html#OpenTK_Platform_Native_SDL_SDLShellComponent_Logger @@ -665,13 +769,6 @@ references: name: Logger nameWithType: IPalComponent.Logger fullName: OpenTK.Platform.IPalComponent.Logger -- uid: OpenTK.Core.Utility.ILogger - commentId: T:OpenTK.Core.Utility.ILogger - parent: OpenTK.Core.Utility - href: OpenTK.Core.Utility.ILogger.html - name: ILogger - nameWithType: ILogger - fullName: OpenTK.Core.Utility.ILogger - uid: OpenTK.Core.Utility commentId: N:OpenTK.Core.Utility href: OpenTK.html @@ -702,6 +799,37 @@ references: - uid: OpenTK.Core.Utility name: Utility href: OpenTK.Core.Utility.html +- uid: OpenTK.Platform.ToolkitOptions + commentId: T:OpenTK.Platform.ToolkitOptions + parent: OpenTK.Platform + href: OpenTK.Platform.ToolkitOptions.html + name: ToolkitOptions + nameWithType: ToolkitOptions + fullName: OpenTK.Platform.ToolkitOptions +- uid: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Init_OpenTK_Platform_ToolkitOptions_ + name: Init(ToolkitOptions) + nameWithType: Toolkit.Init(ToolkitOptions) + fullName: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + spec.csharp: + - uid: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + name: Init + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Init_OpenTK_Platform_ToolkitOptions_ + - name: ( + - uid: OpenTK.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Platform.ToolkitOptions.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + name: Init + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Init_OpenTK_Platform_ToolkitOptions_ + - name: ( + - uid: OpenTK.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Platform.ToolkitOptions.html + - name: ) - uid: OpenTK.Platform.Native.SDL.SDLShellComponent.Initialize* commentId: Overload:OpenTK.Platform.Native.SDL.SDLShellComponent.Initialize href: OpenTK.Platform.Native.SDL.SDLShellComponent.html#OpenTK_Platform_Native_SDL_SDLShellComponent_Initialize_OpenTK_Platform_ToolkitOptions_ @@ -733,49 +861,116 @@ references: name: ToolkitOptions href: OpenTK.Platform.ToolkitOptions.html - name: ) -- uid: OpenTK.Platform.ToolkitOptions - commentId: T:OpenTK.Platform.ToolkitOptions - parent: OpenTK.Platform - href: OpenTK.Platform.ToolkitOptions.html - name: ToolkitOptions - nameWithType: ToolkitOptions - fullName: OpenTK.Platform.ToolkitOptions +- uid: OpenTK.Platform.Toolkit.Uninit + commentId: M:OpenTK.Platform.Toolkit.Uninit + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Uninit + name: Uninit() + nameWithType: Toolkit.Uninit() + fullName: OpenTK.Platform.Toolkit.Uninit() + spec.csharp: + - uid: OpenTK.Platform.Toolkit.Uninit + name: Uninit + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Uninit + - name: ( + - name: ) + spec.vb: + - uid: OpenTK.Platform.Toolkit.Uninit + name: Uninit + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Uninit + - name: ( + - name: ) +- uid: OpenTK.Platform.Native.SDL.SDLShellComponent.Uninitialize* + commentId: Overload:OpenTK.Platform.Native.SDL.SDLShellComponent.Uninitialize + href: OpenTK.Platform.Native.SDL.SDLShellComponent.html#OpenTK_Platform_Native_SDL_SDLShellComponent_Uninitialize + name: Uninitialize + nameWithType: SDLShellComponent.Uninitialize + fullName: OpenTK.Platform.Native.SDL.SDLShellComponent.Uninitialize +- uid: OpenTK.Platform.IPalComponent.Uninitialize + commentId: M:OpenTK.Platform.IPalComponent.Uninitialize + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + name: Uninitialize() + nameWithType: IPalComponent.Uninitialize() + fullName: OpenTK.Platform.IPalComponent.Uninitialize() + spec.csharp: + - uid: OpenTK.Platform.IPalComponent.Uninitialize + name: Uninitialize + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + - name: ( + - name: ) + spec.vb: + - uid: OpenTK.Platform.IPalComponent.Uninitialize + name: Uninitialize + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + - name: ( + - name: ) +- uid: OpenTK.Platform.IShellComponent.IsScreenSaverAllowed + commentId: M:OpenTK.Platform.IShellComponent.IsScreenSaverAllowed + parent: OpenTK.Platform.IShellComponent + href: OpenTK.Platform.IShellComponent.html#OpenTK_Platform_IShellComponent_IsScreenSaverAllowed + name: IsScreenSaverAllowed() + nameWithType: IShellComponent.IsScreenSaverAllowed() + fullName: OpenTK.Platform.IShellComponent.IsScreenSaverAllowed() + spec.csharp: + - uid: OpenTK.Platform.IShellComponent.IsScreenSaverAllowed + name: IsScreenSaverAllowed + href: OpenTK.Platform.IShellComponent.html#OpenTK_Platform_IShellComponent_IsScreenSaverAllowed + - name: ( + - name: ) + spec.vb: + - uid: OpenTK.Platform.IShellComponent.IsScreenSaverAllowed + name: IsScreenSaverAllowed + href: OpenTK.Platform.IShellComponent.html#OpenTK_Platform_IShellComponent_IsScreenSaverAllowed + - name: ( + - name: ) - uid: OpenTK.Platform.Native.SDL.SDLShellComponent.AllowScreenSaver* commentId: Overload:OpenTK.Platform.Native.SDL.SDLShellComponent.AllowScreenSaver - href: OpenTK.Platform.Native.SDL.SDLShellComponent.html#OpenTK_Platform_Native_SDL_SDLShellComponent_AllowScreenSaver_System_Boolean_ + href: OpenTK.Platform.Native.SDL.SDLShellComponent.html#OpenTK_Platform_Native_SDL_SDLShellComponent_AllowScreenSaver_System_Boolean_System_String_ name: AllowScreenSaver nameWithType: SDLShellComponent.AllowScreenSaver fullName: OpenTK.Platform.Native.SDL.SDLShellComponent.AllowScreenSaver -- uid: OpenTK.Platform.IShellComponent.AllowScreenSaver(System.Boolean) - commentId: M:OpenTK.Platform.IShellComponent.AllowScreenSaver(System.Boolean) +- uid: OpenTK.Platform.IShellComponent.AllowScreenSaver(System.Boolean,System.String) + commentId: M:OpenTK.Platform.IShellComponent.AllowScreenSaver(System.Boolean,System.String) parent: OpenTK.Platform.IShellComponent isExternal: true - href: OpenTK.Platform.IShellComponent.html#OpenTK_Platform_IShellComponent_AllowScreenSaver_System_Boolean_ - name: AllowScreenSaver(bool) - nameWithType: IShellComponent.AllowScreenSaver(bool) - fullName: OpenTK.Platform.IShellComponent.AllowScreenSaver(bool) - nameWithType.vb: IShellComponent.AllowScreenSaver(Boolean) - fullName.vb: OpenTK.Platform.IShellComponent.AllowScreenSaver(Boolean) - name.vb: AllowScreenSaver(Boolean) + href: OpenTK.Platform.IShellComponent.html#OpenTK_Platform_IShellComponent_AllowScreenSaver_System_Boolean_System_String_ + name: AllowScreenSaver(bool, string) + nameWithType: IShellComponent.AllowScreenSaver(bool, string) + fullName: OpenTK.Platform.IShellComponent.AllowScreenSaver(bool, string) + nameWithType.vb: IShellComponent.AllowScreenSaver(Boolean, String) + fullName.vb: OpenTK.Platform.IShellComponent.AllowScreenSaver(Boolean, String) + name.vb: AllowScreenSaver(Boolean, String) spec.csharp: - - uid: OpenTK.Platform.IShellComponent.AllowScreenSaver(System.Boolean) + - uid: OpenTK.Platform.IShellComponent.AllowScreenSaver(System.Boolean,System.String) name: AllowScreenSaver - href: OpenTK.Platform.IShellComponent.html#OpenTK_Platform_IShellComponent_AllowScreenSaver_System_Boolean_ + href: OpenTK.Platform.IShellComponent.html#OpenTK_Platform_IShellComponent_AllowScreenSaver_System_Boolean_System_String_ - name: ( - uid: System.Boolean name: bool isExternal: true href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: ',' + - name: " " + - uid: System.String + name: string + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string - name: ) spec.vb: - - uid: OpenTK.Platform.IShellComponent.AllowScreenSaver(System.Boolean) + - uid: OpenTK.Platform.IShellComponent.AllowScreenSaver(System.Boolean,System.String) name: AllowScreenSaver - href: OpenTK.Platform.IShellComponent.html#OpenTK_Platform_IShellComponent_AllowScreenSaver_System_Boolean_ + href: OpenTK.Platform.IShellComponent.html#OpenTK_Platform_IShellComponent_AllowScreenSaver_System_Boolean_System_String_ - name: ( - uid: System.Boolean name: Boolean isExternal: true href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: ',' + - name: " " + - uid: System.String + name: String + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string - name: ) - uid: System.Boolean commentId: T:System.Boolean @@ -788,6 +983,12 @@ references: nameWithType.vb: Boolean fullName.vb: Boolean name.vb: Boolean +- uid: OpenTK.Platform.Native.SDL.SDLShellComponent.IsScreenSaverAllowed* + commentId: Overload:OpenTK.Platform.Native.SDL.SDLShellComponent.IsScreenSaverAllowed + href: OpenTK.Platform.Native.SDL.SDLShellComponent.html#OpenTK_Platform_Native_SDL_SDLShellComponent_IsScreenSaverAllowed + name: IsScreenSaverAllowed + nameWithType: SDLShellComponent.IsScreenSaverAllowed + fullName: OpenTK.Platform.Native.SDL.SDLShellComponent.IsScreenSaverAllowed - uid: OpenTK.Platform.BatteryStatus.HasSystemBattery commentId: F:OpenTK.Platform.BatteryStatus.HasSystemBattery href: OpenTK.Platform.BatteryStatus.html#OpenTK_Platform_BatteryStatus_HasSystemBattery @@ -844,6 +1045,12 @@ references: name: BatteryStatus nameWithType: BatteryStatus fullName: OpenTK.Platform.BatteryStatus +- uid: OpenTK.Platform.ThemeChangeEventArgs + commentId: T:OpenTK.Platform.ThemeChangeEventArgs + href: OpenTK.Platform.ThemeChangeEventArgs.html + name: ThemeChangeEventArgs + nameWithType: ThemeChangeEventArgs + fullName: OpenTK.Platform.ThemeChangeEventArgs - uid: OpenTK.Platform.Native.SDL.SDLShellComponent.GetPreferredTheme* commentId: Overload:OpenTK.Platform.Native.SDL.SDLShellComponent.GetPreferredTheme href: OpenTK.Platform.Native.SDL.SDLShellComponent.html#OpenTK_Platform_Native_SDL_SDLShellComponent_GetPreferredTheme diff --git a/api/OpenTK.Platform.Native.SDL.SDLWindowComponent.yml b/api/OpenTK.Platform.Native.SDL.SDLWindowComponent.yml index 0d61d94b..ece9d49a 100644 --- a/api/OpenTK.Platform.Native.SDL.SDLWindowComponent.yml +++ b/api/OpenTK.Platform.Native.SDL.SDLWindowComponent.yml @@ -9,27 +9,30 @@ items: - OpenTK.Platform.Native.SDL.SDLWindowComponent.CanGetDisplay - OpenTK.Platform.Native.SDL.SDLWindowComponent.CanSetCursor - OpenTK.Platform.Native.SDL.SDLWindowComponent.CanSetIcon - - OpenTK.Platform.Native.SDL.SDLWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) + - OpenTK.Platform.Native.SDL.SDLWindowComponent.ClientToFramebuffer(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + - OpenTK.Platform.Native.SDL.SDLWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) - OpenTK.Platform.Native.SDL.SDLWindowComponent.Create(OpenTK.Platform.GraphicsApiHints) - OpenTK.Platform.Native.SDL.SDLWindowComponent.Destroy(OpenTK.Platform.WindowHandle) - OpenTK.Platform.Native.SDL.SDLWindowComponent.FocusWindow(OpenTK.Platform.WindowHandle) + - OpenTK.Platform.Native.SDL.SDLWindowComponent.FramebufferToClient(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) - OpenTK.Platform.Native.SDL.SDLWindowComponent.GetBorderStyle(OpenTK.Platform.WindowHandle) - OpenTK.Platform.Native.SDL.SDLWindowComponent.GetBounds(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) - OpenTK.Platform.Native.SDL.SDLWindowComponent.GetClientBounds(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) - - OpenTK.Platform.Native.SDL.SDLWindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) - - OpenTK.Platform.Native.SDL.SDLWindowComponent.GetClientSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + - OpenTK.Platform.Native.SDL.SDLWindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) + - OpenTK.Platform.Native.SDL.SDLWindowComponent.GetClientSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) - OpenTK.Platform.Native.SDL.SDLWindowComponent.GetCursorCaptureMode(OpenTK.Platform.WindowHandle) - OpenTK.Platform.Native.SDL.SDLWindowComponent.GetDisplay(OpenTK.Platform.WindowHandle) - - OpenTK.Platform.Native.SDL.SDLWindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + - OpenTK.Platform.Native.SDL.SDLWindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) - OpenTK.Platform.Native.SDL.SDLWindowComponent.GetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle@) - OpenTK.Platform.Native.SDL.SDLWindowComponent.GetIcon(OpenTK.Platform.WindowHandle) - OpenTK.Platform.Native.SDL.SDLWindowComponent.GetMaxClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) - OpenTK.Platform.Native.SDL.SDLWindowComponent.GetMinClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) - OpenTK.Platform.Native.SDL.SDLWindowComponent.GetMode(OpenTK.Platform.WindowHandle) - - OpenTK.Platform.Native.SDL.SDLWindowComponent.GetPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + - OpenTK.Platform.Native.SDL.SDLWindowComponent.GetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) - OpenTK.Platform.Native.SDL.SDLWindowComponent.GetScaleFactor(OpenTK.Platform.WindowHandle,System.Single@,System.Single@) - - OpenTK.Platform.Native.SDL.SDLWindowComponent.GetSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + - OpenTK.Platform.Native.SDL.SDLWindowComponent.GetSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) - OpenTK.Platform.Native.SDL.SDLWindowComponent.GetTitle(OpenTK.Platform.WindowHandle) + - OpenTK.Platform.Native.SDL.SDLWindowComponent.GetTransparencyMode(OpenTK.Platform.WindowHandle,System.Single@) - OpenTK.Platform.Native.SDL.SDLWindowComponent.Initialize(OpenTK.Platform.ToolkitOptions) - OpenTK.Platform.Native.SDL.SDLWindowComponent.IsAlwaysOnTop(OpenTK.Platform.WindowHandle) - OpenTK.Platform.Native.SDL.SDLWindowComponent.IsFocused(OpenTK.Platform.WindowHandle) @@ -39,13 +42,13 @@ items: - OpenTK.Platform.Native.SDL.SDLWindowComponent.ProcessEvents(System.Boolean) - OpenTK.Platform.Native.SDL.SDLWindowComponent.Provides - OpenTK.Platform.Native.SDL.SDLWindowComponent.RequestAttention(OpenTK.Platform.WindowHandle) - - OpenTK.Platform.Native.SDL.SDLWindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) + - OpenTK.Platform.Native.SDL.SDLWindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) - OpenTK.Platform.Native.SDL.SDLWindowComponent.SetAlwaysOnTop(OpenTK.Platform.WindowHandle,System.Boolean) - OpenTK.Platform.Native.SDL.SDLWindowComponent.SetBorderStyle(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowBorderStyle) - OpenTK.Platform.Native.SDL.SDLWindowComponent.SetBounds(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) - OpenTK.Platform.Native.SDL.SDLWindowComponent.SetClientBounds(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) - - OpenTK.Platform.Native.SDL.SDLWindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) - - OpenTK.Platform.Native.SDL.SDLWindowComponent.SetClientSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) + - OpenTK.Platform.Native.SDL.SDLWindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) + - OpenTK.Platform.Native.SDL.SDLWindowComponent.SetClientSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) - OpenTK.Platform.Native.SDL.SDLWindowComponent.SetCursor(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorHandle) - OpenTK.Platform.Native.SDL.SDLWindowComponent.SetCursorCaptureMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorCaptureMode) - OpenTK.Platform.Native.SDL.SDLWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle) @@ -55,12 +58,15 @@ items: - OpenTK.Platform.Native.SDL.SDLWindowComponent.SetMaxClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) - OpenTK.Platform.Native.SDL.SDLWindowComponent.SetMinClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) - OpenTK.Platform.Native.SDL.SDLWindowComponent.SetMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowMode) - - OpenTK.Platform.Native.SDL.SDLWindowComponent.SetPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) - - OpenTK.Platform.Native.SDL.SDLWindowComponent.SetSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) + - OpenTK.Platform.Native.SDL.SDLWindowComponent.SetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) + - OpenTK.Platform.Native.SDL.SDLWindowComponent.SetSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) - OpenTK.Platform.Native.SDL.SDLWindowComponent.SetTitle(OpenTK.Platform.WindowHandle,System.String) + - OpenTK.Platform.Native.SDL.SDLWindowComponent.SetTransparencyMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowTransparencyMode,System.Single) - OpenTK.Platform.Native.SDL.SDLWindowComponent.SupportedEvents - OpenTK.Platform.Native.SDL.SDLWindowComponent.SupportedModes - OpenTK.Platform.Native.SDL.SDLWindowComponent.SupportedStyles + - OpenTK.Platform.Native.SDL.SDLWindowComponent.SupportsFramebufferTransparency(OpenTK.Platform.WindowHandle) + - OpenTK.Platform.Native.SDL.SDLWindowComponent.Uninitialize langs: - csharp - vb @@ -167,7 +173,7 @@ items: assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL - summary: Provides a logger for this component. + summary: The logger that this component uses to log diagnostic messages. example: [] syntax: content: public ILogger? Logger { get; set; } @@ -176,6 +182,11 @@ items: type: OpenTK.Core.Utility.ILogger content.vb: Public Property Logger As ILogger overload: OpenTK.Platform.Native.SDL.SDLWindowComponent.Logger* + seealso: + - linkId: OpenTK.Core.Utility.ILogger + commentId: T:OpenTK.Core.Utility.ILogger + - linkId: OpenTK.Platform.ToolkitOptions.Logger + commentId: P:OpenTK.Platform.ToolkitOptions.Logger implements: - OpenTK.Platform.IPalComponent.Logger - uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.Initialize(OpenTK.Platform.ToolkitOptions) @@ -206,8 +217,42 @@ items: description: The options to initialize the component with. content.vb: Public Sub Initialize(options As ToolkitOptions) overload: OpenTK.Platform.Native.SDL.SDLWindowComponent.Initialize* + seealso: + - linkId: OpenTK.Platform.ToolkitOptions + commentId: T:OpenTK.Platform.ToolkitOptions + - linkId: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) implements: - OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) +- uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.Uninitialize + commentId: M:OpenTK.Platform.Native.SDL.SDLWindowComponent.Uninitialize + id: Uninitialize + parent: OpenTK.Platform.Native.SDL.SDLWindowComponent + langs: + - csharp + - vb + name: Uninitialize() + nameWithType: SDLWindowComponent.Uninitialize() + fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.Uninitialize() + type: Method + source: + id: Uninitialize + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLWindowComponent.cs + startLine: 42 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform.Native.SDL + summary: Uninitialize the component. Frees any native resources used by the component. + example: [] + syntax: + content: public void Uninitialize() + content.vb: Public Sub Uninitialize() + overload: OpenTK.Platform.Native.SDL.SDLWindowComponent.Uninitialize* + seealso: + - linkId: OpenTK.Platform.Toolkit.Uninit + commentId: M:OpenTK.Platform.Toolkit.Uninit + implements: + - OpenTK.Platform.IPalComponent.Uninitialize - uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.CanSetIcon commentId: P:OpenTK.Platform.Native.SDL.SDLWindowComponent.CanSetIcon id: CanSetIcon @@ -222,11 +267,11 @@ items: source: id: CanSetIcon path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLWindowComponent.cs - startLine: 42 + startLine: 48 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL - summary: True when the driver supports setting the window icon using . + summary: true when the driver supports setting and getting the window icon using and . example: [] syntax: content: public bool CanSetIcon { get; } @@ -238,6 +283,8 @@ items: seealso: - linkId: OpenTK.Platform.IWindowComponent.SetIcon(OpenTK.Platform.WindowHandle,OpenTK.Platform.IconHandle) commentId: M:OpenTK.Platform.IWindowComponent.SetIcon(OpenTK.Platform.WindowHandle,OpenTK.Platform.IconHandle) + - linkId: OpenTK.Platform.IWindowComponent.GetIcon(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.GetIcon(OpenTK.Platform.WindowHandle) implements: - OpenTK.Platform.IWindowComponent.CanSetIcon - uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.CanGetDisplay @@ -254,11 +301,11 @@ items: source: id: CanGetDisplay path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLWindowComponent.cs - startLine: 45 + startLine: 51 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL - summary: True when the driver can provide the display the window is in using . + summary: true when the driver can provide the display the window is in using . example: [] syntax: content: public bool CanGetDisplay { get; } @@ -286,11 +333,11 @@ items: source: id: CanSetCursor path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLWindowComponent.cs - startLine: 48 + startLine: 54 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL - summary: True when the driver supports setting the cursor of the window using . + summary: true when the driver supports setting the cursor of the window using . example: [] syntax: content: public bool CanSetCursor { get; } @@ -318,11 +365,11 @@ items: source: id: CanCaptureCursor path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLWindowComponent.cs - startLine: 51 + startLine: 57 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL - summary: True when the driver supports capturing the cursor in a window using . + summary: true when the driver supports capturing the cursor in a window using . example: [] syntax: content: public bool CanCaptureCursor { get; } @@ -350,7 +397,7 @@ items: source: id: SupportedEvents path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLWindowComponent.cs - startLine: 54 + startLine: 60 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL @@ -379,7 +426,7 @@ items: source: id: SupportedStyles path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLWindowComponent.cs - startLine: 57 + startLine: 63 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL @@ -408,7 +455,7 @@ items: source: id: SupportedModes path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLWindowComponent.cs - startLine: 60 + startLine: 66 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL @@ -437,7 +484,7 @@ items: source: id: ProcessEvents path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLWindowComponent.cs - startLine: 69 + startLine: 75 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL @@ -470,7 +517,7 @@ items: source: id: Create path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLWindowComponent.cs - startLine: 427 + startLine: 433 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL @@ -487,6 +534,9 @@ items: description: Handle to the new window object. content.vb: Public Function Create(hints As GraphicsApiHints) As WindowHandle overload: OpenTK.Platform.Native.SDL.SDLWindowComponent.Create* + seealso: + - linkId: OpenTK.Platform.IWindowComponent.Destroy(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.Destroy(OpenTK.Platform.WindowHandle) implements: - OpenTK.Platform.IWindowComponent.Create(OpenTK.Platform.GraphicsApiHints) - uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.Destroy(OpenTK.Platform.WindowHandle) @@ -503,7 +553,7 @@ items: source: id: Destroy path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLWindowComponent.cs - startLine: 536 + startLine: 542 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL @@ -517,10 +567,11 @@ items: description: Handle to a window object. content.vb: Public Sub Destroy(handle As WindowHandle) overload: OpenTK.Platform.Native.SDL.SDLWindowComponent.Destroy* - exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: handle is null. + seealso: + - linkId: OpenTK.Platform.IWindowComponent.Create(OpenTK.Platform.GraphicsApiHints) + commentId: M:OpenTK.Platform.IWindowComponent.Create(OpenTK.Platform.GraphicsApiHints) + - linkId: OpenTK.Platform.IWindowComponent.IsWindowDestroyed(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.IsWindowDestroyed(OpenTK.Platform.WindowHandle) implements: - OpenTK.Platform.IWindowComponent.Destroy(OpenTK.Platform.WindowHandle) - uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.IsWindowDestroyed(OpenTK.Platform.WindowHandle) @@ -537,7 +588,7 @@ items: source: id: IsWindowDestroyed path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLWindowComponent.cs - startLine: 548 + startLine: 554 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL @@ -554,6 +605,11 @@ items: description: If was called with the window handle. content.vb: Public Function IsWindowDestroyed(handle As WindowHandle) As Boolean overload: OpenTK.Platform.Native.SDL.SDLWindowComponent.IsWindowDestroyed* + seealso: + - linkId: OpenTK.Platform.IWindowComponent.Create(OpenTK.Platform.GraphicsApiHints) + commentId: M:OpenTK.Platform.IWindowComponent.Create(OpenTK.Platform.GraphicsApiHints) + - linkId: OpenTK.Platform.IWindowComponent.Destroy(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.Destroy(OpenTK.Platform.WindowHandle) implements: - OpenTK.Platform.IWindowComponent.IsWindowDestroyed(OpenTK.Platform.WindowHandle) - uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetTitle(OpenTK.Platform.WindowHandle) @@ -570,7 +626,7 @@ items: source: id: GetTitle path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLWindowComponent.cs - startLine: 556 + startLine: 562 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL @@ -587,10 +643,9 @@ items: description: The title of the window. content.vb: Public Function GetTitle(handle As WindowHandle) As String overload: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetTitle* - exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: handle is null. + seealso: + - linkId: OpenTK.Platform.IWindowComponent.SetTitle(OpenTK.Platform.WindowHandle,System.String) + commentId: M:OpenTK.Platform.IWindowComponent.SetTitle(OpenTK.Platform.WindowHandle,System.String) implements: - OpenTK.Platform.IWindowComponent.GetTitle(OpenTK.Platform.WindowHandle) - uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetTitle(OpenTK.Platform.WindowHandle,System.String) @@ -607,7 +662,7 @@ items: source: id: SetTitle path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLWindowComponent.cs - startLine: 565 + startLine: 571 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL @@ -624,10 +679,9 @@ items: description: New window title string. content.vb: Public Sub SetTitle(handle As WindowHandle, title As String) overload: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetTitle* - exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: handle or title is null. + seealso: + - linkId: OpenTK.Platform.IWindowComponent.GetTitle(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.GetTitle(OpenTK.Platform.WindowHandle) implements: - OpenTK.Platform.IWindowComponent.SetTitle(OpenTK.Platform.WindowHandle,System.String) nameWithType.vb: SDLWindowComponent.SetTitle(WindowHandle, String) @@ -647,7 +701,7 @@ items: source: id: GetIcon path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLWindowComponent.cs - startLine: 573 + startLine: 579 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL @@ -665,12 +719,14 @@ items: content.vb: Public Function GetIcon(handle As WindowHandle) As IconHandle overload: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetIcon* exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: handle is null. - - type: OpenTK.Platform.PalNotImplementedException - commentId: T:OpenTK.Platform.PalNotImplementedException - description: Driver does not support getting the window icon. See . + - type: System.PlatformNotSupportedException + commentId: T:System.PlatformNotSupportedException + description: Backend does not support getting the window icon. See . + seealso: + - linkId: OpenTK.Platform.IWindowComponent.CanSetIcon + commentId: P:OpenTK.Platform.IWindowComponent.CanSetIcon + - linkId: OpenTK.Platform.IWindowComponent.SetIcon(OpenTK.Platform.WindowHandle,OpenTK.Platform.IconHandle) + commentId: M:OpenTK.Platform.IWindowComponent.SetIcon(OpenTK.Platform.WindowHandle,OpenTK.Platform.IconHandle) implements: - OpenTK.Platform.IWindowComponent.GetIcon(OpenTK.Platform.WindowHandle) - uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetIcon(OpenTK.Platform.WindowHandle,OpenTK.Platform.IconHandle) @@ -687,7 +743,7 @@ items: source: id: SetIcon path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLWindowComponent.cs - startLine: 581 + startLine: 587 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL @@ -701,193 +757,161 @@ items: description: Handle to a window. - id: icon type: OpenTK.Platform.IconHandle - description: Handle to an icon object, or null to revert to default. + description: Handle to an icon object. content.vb: Public Sub SetIcon(handle As WindowHandle, icon As IconHandle) overload: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetIcon* exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: handle or icon is null. - - type: OpenTK.Platform.PalNotImplementedException - commentId: T:OpenTK.Platform.PalNotImplementedException + - type: System.PlatformNotSupportedException + commentId: T:System.PlatformNotSupportedException description: Backend does not support setting the window icon. See . seealso: - linkId: OpenTK.Platform.IWindowComponent.CanSetIcon commentId: P:OpenTK.Platform.IWindowComponent.CanSetIcon + - linkId: OpenTK.Platform.IWindowComponent.GetIcon(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.GetIcon(OpenTK.Platform.WindowHandle) implements: - OpenTK.Platform.IWindowComponent.SetIcon(OpenTK.Platform.WindowHandle,OpenTK.Platform.IconHandle) -- uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) - commentId: M:OpenTK.Platform.Native.SDL.SDLWindowComponent.GetPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) - id: GetPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) +- uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) + commentId: M:OpenTK.Platform.Native.SDL.SDLWindowComponent.GetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) + id: GetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) parent: OpenTK.Platform.Native.SDL.SDLWindowComponent langs: - csharp - vb - name: GetPosition(WindowHandle, out int, out int) - nameWithType: SDLWindowComponent.GetPosition(WindowHandle, out int, out int) - fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetPosition(OpenTK.Platform.WindowHandle, out int, out int) + name: GetPosition(WindowHandle, out Vector2i) + nameWithType: SDLWindowComponent.GetPosition(WindowHandle, out Vector2i) + fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetPosition(OpenTK.Platform.WindowHandle, out OpenTK.Mathematics.Vector2i) type: Method source: id: GetPosition path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLWindowComponent.cs - startLine: 591 + startLine: 597 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: Get the window position in display coordinates (top left origin). example: [] syntax: - content: public void GetPosition(WindowHandle handle, out int x, out int y) + content: public void GetPosition(WindowHandle handle, out Vector2i position) parameters: - id: handle type: OpenTK.Platform.WindowHandle description: Handle to a window. - - id: x - type: System.Int32 - description: X coordinate of the window. - - id: y - type: System.Int32 - description: Y coordinate of the window. - content.vb: Public Sub GetPosition(handle As WindowHandle, x As Integer, y As Integer) + - id: position + type: OpenTK.Mathematics.Vector2i + description: Coordinate of the window in screen coordinates. + content.vb: Public Sub GetPosition(handle As WindowHandle, position As Vector2i) overload: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetPosition* - exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: handle is null. + seealso: + - linkId: OpenTK.Platform.IWindowComponent.SetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) + commentId: M:OpenTK.Platform.IWindowComponent.SetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) implements: - - OpenTK.Platform.IWindowComponent.GetPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) - nameWithType.vb: SDLWindowComponent.GetPosition(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetPosition(OpenTK.Platform.WindowHandle, Integer, Integer) - name.vb: GetPosition(WindowHandle, Integer, Integer) -- uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) - commentId: M:OpenTK.Platform.Native.SDL.SDLWindowComponent.SetPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) - id: SetPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) + - OpenTK.Platform.IWindowComponent.GetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) + nameWithType.vb: SDLWindowComponent.GetPosition(WindowHandle, Vector2i) + fullName.vb: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetPosition(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2i) + name.vb: GetPosition(WindowHandle, Vector2i) +- uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) + commentId: M:OpenTK.Platform.Native.SDL.SDLWindowComponent.SetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) + id: SetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) parent: OpenTK.Platform.Native.SDL.SDLWindowComponent langs: - csharp - vb - name: SetPosition(WindowHandle, int, int) - nameWithType: SDLWindowComponent.SetPosition(WindowHandle, int, int) - fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetPosition(OpenTK.Platform.WindowHandle, int, int) + name: SetPosition(WindowHandle, Vector2i) + nameWithType: SDLWindowComponent.SetPosition(WindowHandle, Vector2i) + fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetPosition(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2i) type: Method source: id: SetPosition path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLWindowComponent.cs - startLine: 604 + startLine: 610 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: Set the window position in display coordinates (top left origin). example: [] syntax: - content: public void SetPosition(WindowHandle handle, int x, int y) + content: public void SetPosition(WindowHandle handle, Vector2i newPosition) parameters: - id: handle type: OpenTK.Platform.WindowHandle description: Handle to a window. - - id: x - type: System.Int32 - description: New X coordinate of the window. - - id: y - type: System.Int32 - description: New Y coordinate of the window. - content.vb: Public Sub SetPosition(handle As WindowHandle, x As Integer, y As Integer) + - id: newPosition + type: OpenTK.Mathematics.Vector2i + description: New position of the window in screen coordinates. + content.vb: Public Sub SetPosition(handle As WindowHandle, newPosition As Vector2i) overload: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetPosition* - exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: handle is null. implements: - - OpenTK.Platform.IWindowComponent.SetPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) - nameWithType.vb: SDLWindowComponent.SetPosition(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetPosition(OpenTK.Platform.WindowHandle, Integer, Integer) - name.vb: SetPosition(WindowHandle, Integer, Integer) -- uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) - commentId: M:OpenTK.Platform.Native.SDL.SDLWindowComponent.GetSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) - id: GetSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + - OpenTK.Platform.IWindowComponent.SetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) +- uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) + commentId: M:OpenTK.Platform.Native.SDL.SDLWindowComponent.GetSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) + id: GetSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) parent: OpenTK.Platform.Native.SDL.SDLWindowComponent langs: - csharp - vb - name: GetSize(WindowHandle, out int, out int) - nameWithType: SDLWindowComponent.GetSize(WindowHandle, out int, out int) - fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetSize(OpenTK.Platform.WindowHandle, out int, out int) + name: GetSize(WindowHandle, out Vector2i) + nameWithType: SDLWindowComponent.GetSize(WindowHandle, out Vector2i) + fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetSize(OpenTK.Platform.WindowHandle, out OpenTK.Mathematics.Vector2i) type: Method source: id: GetSize path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLWindowComponent.cs - startLine: 616 + startLine: 622 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: Get the size of the window. example: [] syntax: - content: public void GetSize(WindowHandle handle, out int width, out int height) + content: public void GetSize(WindowHandle handle, out Vector2i size) parameters: - id: handle type: OpenTK.Platform.WindowHandle description: Handle to a window. - - id: width - type: System.Int32 - description: Width of the window in pixels. - - id: height - type: System.Int32 - description: Height of the window in pixels. - content.vb: Public Sub GetSize(handle As WindowHandle, width As Integer, height As Integer) + - id: size + type: OpenTK.Mathematics.Vector2i + description: Size of the window in screen coordinates. + content.vb: Public Sub GetSize(handle As WindowHandle, size As Vector2i) overload: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetSize* - exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: handle is null. implements: - - OpenTK.Platform.IWindowComponent.GetSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) - nameWithType.vb: SDLWindowComponent.GetSize(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetSize(OpenTK.Platform.WindowHandle, Integer, Integer) - name.vb: GetSize(WindowHandle, Integer, Integer) -- uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) - commentId: M:OpenTK.Platform.Native.SDL.SDLWindowComponent.SetSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) - id: SetSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) + - OpenTK.Platform.IWindowComponent.GetSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) + nameWithType.vb: SDLWindowComponent.GetSize(WindowHandle, Vector2i) + fullName.vb: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetSize(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2i) + name.vb: GetSize(WindowHandle, Vector2i) +- uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) + commentId: M:OpenTK.Platform.Native.SDL.SDLWindowComponent.SetSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) + id: SetSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) parent: OpenTK.Platform.Native.SDL.SDLWindowComponent langs: - csharp - vb - name: SetSize(WindowHandle, int, int) - nameWithType: SDLWindowComponent.SetSize(WindowHandle, int, int) - fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetSize(OpenTK.Platform.WindowHandle, int, int) + name: SetSize(WindowHandle, Vector2i) + nameWithType: SDLWindowComponent.SetSize(WindowHandle, Vector2i) + fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetSize(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2i) type: Method source: id: SetSize path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLWindowComponent.cs - startLine: 629 + startLine: 635 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: Set the size of the window. example: [] syntax: - content: public void SetSize(WindowHandle handle, int width, int height) + content: public void SetSize(WindowHandle handle, Vector2i newSize) parameters: - id: handle type: OpenTK.Platform.WindowHandle description: Handle to a window. - - id: width - type: System.Int32 - description: New width of the window in pixels. - - id: height - type: System.Int32 - description: New height of the window in pixels. - content.vb: Public Sub SetSize(handle As WindowHandle, width As Integer, height As Integer) + - id: newSize + type: OpenTK.Mathematics.Vector2i + description: New size of the window in screen coordinates. + content.vb: Public Sub SetSize(handle As WindowHandle, newSize As Vector2i) overload: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetSize* - exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: handle is null. implements: - - OpenTK.Platform.IWindowComponent.SetSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) - nameWithType.vb: SDLWindowComponent.SetSize(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetSize(OpenTK.Platform.WindowHandle, Integer, Integer) - name.vb: SetSize(WindowHandle, Integer, Integer) + - OpenTK.Platform.IWindowComponent.SetSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) - uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetBounds(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) commentId: M:OpenTK.Platform.Native.SDL.SDLWindowComponent.GetBounds(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) id: GetBounds(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) @@ -902,7 +926,7 @@ items: source: id: GetBounds path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLWindowComponent.cs - startLine: 642 + startLine: 648 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL @@ -922,10 +946,10 @@ items: description: Y coordinate of the window. - id: width type: System.Int32 - description: Width of the window in pixels. + description: Width of the window in screen coordinates. - id: height type: System.Int32 - description: Height of the window in pixels. + description: Height of the window in screen coordinates. content.vb: Public Sub GetBounds(handle As WindowHandle, x As Integer, y As Integer, width As Integer, height As Integer) overload: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetBounds* implements: @@ -947,7 +971,7 @@ items: source: id: SetBounds path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLWindowComponent.cs - startLine: 657 + startLine: 663 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL @@ -967,10 +991,10 @@ items: description: New Y coordinate of the window. - id: width type: System.Int32 - description: New width of the window in pixels. + description: New width of the window in screen coordinates. - id: height type: System.Int32 - description: New height of the window in pixels. + description: New height of the window in screen coordinates. content.vb: Public Sub SetBounds(handle As WindowHandle, x As Integer, y As Integer, width As Integer, height As Integer) overload: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetBounds* implements: @@ -978,178 +1002,144 @@ items: nameWithType.vb: SDLWindowComponent.SetBounds(WindowHandle, Integer, Integer, Integer, Integer) fullName.vb: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetBounds(OpenTK.Platform.WindowHandle, Integer, Integer, Integer, Integer) name.vb: SetBounds(WindowHandle, Integer, Integer, Integer, Integer) -- uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) - commentId: M:OpenTK.Platform.Native.SDL.SDLWindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) - id: GetClientPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) +- uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) + commentId: M:OpenTK.Platform.Native.SDL.SDLWindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) + id: GetClientPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) parent: OpenTK.Platform.Native.SDL.SDLWindowComponent langs: - csharp - vb - name: GetClientPosition(WindowHandle, out int, out int) - nameWithType: SDLWindowComponent.GetClientPosition(WindowHandle, out int, out int) - fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle, out int, out int) + name: GetClientPosition(WindowHandle, out Vector2i) + nameWithType: SDLWindowComponent.GetClientPosition(WindowHandle, out Vector2i) + fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle, out OpenTK.Mathematics.Vector2i) type: Method source: id: GetClientPosition path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLWindowComponent.cs - startLine: 673 + startLine: 679 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: Get the position of the client area (drawing area) of a window. example: [] syntax: - content: public void GetClientPosition(WindowHandle handle, out int x, out int y) + content: public void GetClientPosition(WindowHandle handle, out Vector2i clientPosition) parameters: - id: handle type: OpenTK.Platform.WindowHandle description: Handle to a window. - - id: x - type: System.Int32 - description: X coordinate of the client area. - - id: y - type: System.Int32 - description: Y coordinate of the client area. - content.vb: Public Sub GetClientPosition(handle As WindowHandle, x As Integer, y As Integer) + - id: clientPosition + type: OpenTK.Mathematics.Vector2i + description: The coordinate of the client area in screen coordinates. + content.vb: Public Sub GetClientPosition(handle As WindowHandle, clientPosition As Vector2i) overload: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetClientPosition* - exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: handle is null. implements: - - OpenTK.Platform.IWindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) - nameWithType.vb: SDLWindowComponent.GetClientPosition(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle, Integer, Integer) - name.vb: GetClientPosition(WindowHandle, Integer, Integer) -- uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) - commentId: M:OpenTK.Platform.Native.SDL.SDLWindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) - id: SetClientPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) + - OpenTK.Platform.IWindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) + nameWithType.vb: SDLWindowComponent.GetClientPosition(WindowHandle, Vector2i) + fullName.vb: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2i) + name.vb: GetClientPosition(WindowHandle, Vector2i) +- uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) + commentId: M:OpenTK.Platform.Native.SDL.SDLWindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) + id: SetClientPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) parent: OpenTK.Platform.Native.SDL.SDLWindowComponent langs: - csharp - vb - name: SetClientPosition(WindowHandle, int, int) - nameWithType: SDLWindowComponent.SetClientPosition(WindowHandle, int, int) - fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle, int, int) + name: SetClientPosition(WindowHandle, Vector2i) + nameWithType: SDLWindowComponent.SetClientPosition(WindowHandle, Vector2i) + fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2i) type: Method source: id: SetClientPosition path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLWindowComponent.cs - startLine: 681 + startLine: 687 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: Set the position of the client area (drawing area) of a window. example: [] syntax: - content: public void SetClientPosition(WindowHandle handle, int x, int y) + content: public void SetClientPosition(WindowHandle handle, Vector2i newClientPosition) parameters: - id: handle type: OpenTK.Platform.WindowHandle description: Handle to a window. - - id: x - type: System.Int32 - description: New X coordinate of the client area. - - id: y - type: System.Int32 - description: New Y coordinate of the client area. - content.vb: Public Sub SetClientPosition(handle As WindowHandle, x As Integer, y As Integer) + - id: newClientPosition + type: OpenTK.Mathematics.Vector2i + description: New coordinate of the client area in screen coordinates. + content.vb: Public Sub SetClientPosition(handle As WindowHandle, newClientPosition As Vector2i) overload: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetClientPosition* - exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: handle is null. implements: - - OpenTK.Platform.IWindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) - nameWithType.vb: SDLWindowComponent.SetClientPosition(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle, Integer, Integer) - name.vb: SetClientPosition(WindowHandle, Integer, Integer) -- uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetClientSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) - commentId: M:OpenTK.Platform.Native.SDL.SDLWindowComponent.GetClientSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) - id: GetClientSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + - OpenTK.Platform.IWindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) +- uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetClientSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) + commentId: M:OpenTK.Platform.Native.SDL.SDLWindowComponent.GetClientSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) + id: GetClientSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) parent: OpenTK.Platform.Native.SDL.SDLWindowComponent langs: - csharp - vb - name: GetClientSize(WindowHandle, out int, out int) - nameWithType: SDLWindowComponent.GetClientSize(WindowHandle, out int, out int) - fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetClientSize(OpenTK.Platform.WindowHandle, out int, out int) + name: GetClientSize(WindowHandle, out Vector2i) + nameWithType: SDLWindowComponent.GetClientSize(WindowHandle, out Vector2i) + fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetClientSize(OpenTK.Platform.WindowHandle, out OpenTK.Mathematics.Vector2i) type: Method source: id: GetClientSize path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLWindowComponent.cs - startLine: 689 + startLine: 695 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: Get the size of the client area (drawing area) of a window. example: [] syntax: - content: public void GetClientSize(WindowHandle handle, out int width, out int height) + content: public void GetClientSize(WindowHandle handle, out Vector2i clientSize) parameters: - id: handle type: OpenTK.Platform.WindowHandle description: Handle to a window. - - id: width - type: System.Int32 - description: Width of the client area in pixels. - - id: height - type: System.Int32 - description: Height of the client area in pixels. - content.vb: Public Sub GetClientSize(handle As WindowHandle, width As Integer, height As Integer) + - id: clientSize + type: OpenTK.Mathematics.Vector2i + description: Size of the client area in screen coordinates. + content.vb: Public Sub GetClientSize(handle As WindowHandle, clientSize As Vector2i) overload: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetClientSize* - exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: handle is null. implements: - - OpenTK.Platform.IWindowComponent.GetClientSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) - nameWithType.vb: SDLWindowComponent.GetClientSize(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetClientSize(OpenTK.Platform.WindowHandle, Integer, Integer) - name.vb: GetClientSize(WindowHandle, Integer, Integer) -- uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetClientSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) - commentId: M:OpenTK.Platform.Native.SDL.SDLWindowComponent.SetClientSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) - id: SetClientSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) + - OpenTK.Platform.IWindowComponent.GetClientSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) + nameWithType.vb: SDLWindowComponent.GetClientSize(WindowHandle, Vector2i) + fullName.vb: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetClientSize(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2i) + name.vb: GetClientSize(WindowHandle, Vector2i) +- uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetClientSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) + commentId: M:OpenTK.Platform.Native.SDL.SDLWindowComponent.SetClientSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) + id: SetClientSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) parent: OpenTK.Platform.Native.SDL.SDLWindowComponent langs: - csharp - vb - name: SetClientSize(WindowHandle, int, int) - nameWithType: SDLWindowComponent.SetClientSize(WindowHandle, int, int) - fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetClientSize(OpenTK.Platform.WindowHandle, int, int) + name: SetClientSize(WindowHandle, Vector2i) + nameWithType: SDLWindowComponent.SetClientSize(WindowHandle, Vector2i) + fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetClientSize(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2i) type: Method source: id: SetClientSize path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLWindowComponent.cs - startLine: 697 + startLine: 703 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: Set the size of the client area (drawing area) of a window. example: [] syntax: - content: public void SetClientSize(WindowHandle handle, int width, int height) + content: public void SetClientSize(WindowHandle handle, Vector2i newClientSize) parameters: - id: handle type: OpenTK.Platform.WindowHandle description: Handle to a window. - - id: width - type: System.Int32 - description: New width of the client area in pixels. - - id: height - type: System.Int32 - description: New height of the client area in pixels. - content.vb: Public Sub SetClientSize(handle As WindowHandle, width As Integer, height As Integer) + - id: newClientSize + type: OpenTK.Mathematics.Vector2i + description: New size of the client area in screen coordinates. + content.vb: Public Sub SetClientSize(handle As WindowHandle, newClientSize As Vector2i) overload: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetClientSize* - exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: handle is null. implements: - - OpenTK.Platform.IWindowComponent.SetClientSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) - nameWithType.vb: SDLWindowComponent.SetClientSize(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetClientSize(OpenTK.Platform.WindowHandle, Integer, Integer) - name.vb: SetClientSize(WindowHandle, Integer, Integer) + - OpenTK.Platform.IWindowComponent.SetClientSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) - uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetClientBounds(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) commentId: M:OpenTK.Platform.Native.SDL.SDLWindowComponent.GetClientBounds(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) id: GetClientBounds(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) @@ -1164,7 +1154,7 @@ items: source: id: GetClientBounds path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLWindowComponent.cs - startLine: 705 + startLine: 711 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL @@ -1209,7 +1199,7 @@ items: source: id: SetClientBounds path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLWindowComponent.cs - startLine: 714 + startLine: 720 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL @@ -1240,21 +1230,21 @@ items: nameWithType.vb: SDLWindowComponent.SetClientBounds(WindowHandle, Integer, Integer, Integer, Integer) fullName.vb: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetClientBounds(OpenTK.Platform.WindowHandle, Integer, Integer, Integer, Integer) name.vb: SetClientBounds(WindowHandle, Integer, Integer, Integer, Integer) -- uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) - commentId: M:OpenTK.Platform.Native.SDL.SDLWindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) - id: GetFramebufferSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) +- uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) + commentId: M:OpenTK.Platform.Native.SDL.SDLWindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) + id: GetFramebufferSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) parent: OpenTK.Platform.Native.SDL.SDLWindowComponent langs: - csharp - vb - name: GetFramebufferSize(WindowHandle, out int, out int) - nameWithType: SDLWindowComponent.GetFramebufferSize(WindowHandle, out int, out int) - fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle, out int, out int) + name: GetFramebufferSize(WindowHandle, out Vector2i) + nameWithType: SDLWindowComponent.GetFramebufferSize(WindowHandle, out Vector2i) + fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle, out OpenTK.Mathematics.Vector2i) type: Method source: id: GetFramebufferSize path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLWindowComponent.cs - startLine: 723 + startLine: 729 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL @@ -1264,24 +1254,21 @@ items: Use this value when calls to graphics APIs that want pixels, e.g. GL.Viewport(). example: [] syntax: - content: public void GetFramebufferSize(WindowHandle handle, out int width, out int height) + content: public void GetFramebufferSize(WindowHandle handle, out Vector2i framebufferSize) parameters: - id: handle type: OpenTK.Platform.WindowHandle description: Handle to a window. - - id: width - type: System.Int32 - description: Width in pixels of the window framebuffer. - - id: height - type: System.Int32 - description: Height in pixels of the window framebuffer. - content.vb: Public Sub GetFramebufferSize(handle As WindowHandle, width As Integer, height As Integer) + - id: framebufferSize + type: OpenTK.Mathematics.Vector2i + description: Size in pixels of the window framebuffer. + content.vb: Public Sub GetFramebufferSize(handle As WindowHandle, framebufferSize As Vector2i) overload: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetFramebufferSize* implements: - - OpenTK.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) - nameWithType.vb: SDLWindowComponent.GetFramebufferSize(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle, Integer, Integer) - name.vb: GetFramebufferSize(WindowHandle, Integer, Integer) + - OpenTK.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) + nameWithType.vb: SDLWindowComponent.GetFramebufferSize(WindowHandle, Vector2i) + fullName.vb: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2i) + name.vb: GetFramebufferSize(WindowHandle, Vector2i) - uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetMaxClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) commentId: M:OpenTK.Platform.Native.SDL.SDLWindowComponent.GetMaxClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) id: GetMaxClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) @@ -1296,7 +1283,7 @@ items: source: id: GetMaxClientSize path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLWindowComponent.cs - startLine: 731 + startLine: 737 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL @@ -1335,7 +1322,7 @@ items: source: id: SetMaxClientSize path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLWindowComponent.cs - startLine: 746 + startLine: 752 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL @@ -1374,7 +1361,7 @@ items: source: id: GetMinClientSize path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLWindowComponent.cs - startLine: 756 + startLine: 762 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL @@ -1413,7 +1400,7 @@ items: source: id: SetMinClientSize path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLWindowComponent.cs - startLine: 769 + startLine: 775 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL @@ -1452,7 +1439,7 @@ items: source: id: GetDisplay path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLWindowComponent.cs - startLine: 777 + startLine: 783 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL @@ -1470,9 +1457,6 @@ items: content.vb: Public Function GetDisplay(handle As WindowHandle) As DisplayHandle overload: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetDisplay* exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: handle is null. - type: OpenTK.Platform.PalNotImplementedException commentId: T:OpenTK.Platform.PalNotImplementedException description: Backend does not support finding the window display. . @@ -1495,7 +1479,7 @@ items: source: id: GetMode path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLWindowComponent.cs - startLine: 788 + startLine: 794 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL @@ -1512,10 +1496,6 @@ items: description: The mode of the window. content.vb: Public Function GetMode(handle As WindowHandle) As WindowMode overload: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetMode* - exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: handle is null. implements: - OpenTK.Platform.IWindowComponent.GetMode(OpenTK.Platform.WindowHandle) - uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowMode) @@ -1532,7 +1512,7 @@ items: source: id: SetMode path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLWindowComponent.cs - startLine: 822 + startLine: 828 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL @@ -1558,15 +1538,17 @@ items: content.vb: Public Sub SetMode(handle As WindowHandle, mode As WindowMode) overload: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetMode* exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: handle is null. - - type: System.ArgumentOutOfRangeException - commentId: T:System.ArgumentOutOfRangeException + - type: System.ComponentModel.InvalidEnumArgumentException + commentId: T:System.ComponentModel.InvalidEnumArgumentException description: mode is an invalid value. - - type: OpenTK.Platform.PalNotImplementedException - commentId: T:OpenTK.Platform.PalNotImplementedException - description: Driver does not support the value set by mode. See . + - type: System.PlatformNotSupportedException + commentId: T:System.PlatformNotSupportedException + description: Backend does not support the value set by mode. See . + seealso: + - linkId: OpenTK.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle) + commentId: M:OpenTK.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle) + - linkId: OpenTK.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle,OpenTK.Platform.VideoMode) + commentId: M:OpenTK.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle,OpenTK.Platform.VideoMode) implements: - OpenTK.Platform.IWindowComponent.SetMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowMode) - uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle) @@ -1583,7 +1565,7 @@ items: source: id: SetFullscreenDisplay path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLWindowComponent.cs - startLine: 870 + startLine: 876 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL @@ -1603,6 +1585,9 @@ items: description: The display to make the window fullscreen on. content.vb: Public Sub SetFullscreenDisplay(window As WindowHandle, display As DisplayHandle) overload: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetFullscreenDisplay* + seealso: + - linkId: OpenTK.Platform.IWindowComponent.SetMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowMode) + commentId: M:OpenTK.Platform.IWindowComponent.SetMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowMode) implements: - OpenTK.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle) nameWithType.vb: SDLWindowComponent.SetFullscreenDisplay(WindowHandle, DisplayHandle) @@ -1622,7 +1607,7 @@ items: source: id: SetFullscreenDisplay path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLWindowComponent.cs - startLine: 905 + startLine: 911 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL @@ -1632,7 +1617,7 @@ items: Only video modes accuired using are expected to work. - remarks: To make an 'windowed fullscreen' window see . + remarks: To make a 'windowed fullscreen' window see . example: [] syntax: content: public void SetFullscreenDisplay(WindowHandle window, DisplayHandle display, VideoMode videoMode) @@ -1647,6 +1632,11 @@ items: description: The video mode to use when making the window fullscreen. content.vb: Public Sub SetFullscreenDisplay(window As WindowHandle, display As DisplayHandle, videoMode As VideoMode) overload: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetFullscreenDisplay* + seealso: + - linkId: OpenTK.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle) + commentId: M:OpenTK.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle) + - linkId: OpenTK.Platform.IWindowComponent.SetMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowMode) + commentId: M:OpenTK.Platform.IWindowComponent.SetMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowMode) implements: - OpenTK.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle,OpenTK.Platform.VideoMode) - uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle@) @@ -1663,7 +1653,7 @@ items: source: id: GetFullscreenDisplay path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLWindowComponent.cs - startLine: 952 + startLine: 958 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL @@ -1679,9 +1669,16 @@ items: description: The display where the window is fullscreen or null if the window is not fullscreen. return: type: System.Boolean - description: true if the window was fullscreen, false otherwise. + description: true if the window was fullscreen, false otherwise. content.vb: Public Function GetFullscreenDisplay(window As WindowHandle, display As DisplayHandle) As Boolean overload: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetFullscreenDisplay* + seealso: + - linkId: OpenTK.Platform.IWindowComponent.SetMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowMode) + commentId: M:OpenTK.Platform.IWindowComponent.SetMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowMode) + - linkId: OpenTK.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle) + commentId: M:OpenTK.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle) + - linkId: OpenTK.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle,OpenTK.Platform.VideoMode) + commentId: M:OpenTK.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle,OpenTK.Platform.VideoMode) implements: - OpenTK.Platform.IWindowComponent.GetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle@) nameWithType.vb: SDLWindowComponent.GetFullscreenDisplay(WindowHandle, DisplayHandle) @@ -1701,7 +1698,7 @@ items: source: id: GetBorderStyle path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLWindowComponent.cs - startLine: 969 + startLine: 975 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL @@ -1718,10 +1715,9 @@ items: description: The border style of the window. content.vb: Public Function GetBorderStyle(handle As WindowHandle) As WindowBorderStyle overload: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetBorderStyle* - exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: handle is null. + seealso: + - linkId: OpenTK.Platform.IWindowComponent.SetBorderStyle(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowBorderStyle) + commentId: M:OpenTK.Platform.IWindowComponent.SetBorderStyle(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowBorderStyle) implements: - OpenTK.Platform.IWindowComponent.GetBorderStyle(OpenTK.Platform.WindowHandle) - uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetBorderStyle(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowBorderStyle) @@ -1738,7 +1734,7 @@ items: source: id: SetBorderStyle path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLWindowComponent.cs - startLine: 996 + startLine: 1002 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL @@ -1756,17 +1752,151 @@ items: content.vb: Public Sub SetBorderStyle(handle As WindowHandle, style As WindowBorderStyle) overload: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetBorderStyle* exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: handle is null. - - type: System.ArgumentOutOfRangeException - commentId: T:System.ArgumentOutOfRangeException + - type: System.ComponentModel.InvalidEnumArgumentException + commentId: T:System.ComponentModel.InvalidEnumArgumentException description: style is an invalid value. - - type: OpenTK.Platform.PalNotImplementedException - commentId: T:OpenTK.Platform.PalNotImplementedException - description: Driver does not support the value set by style. See . + - type: System.PlatformNotSupportedException + commentId: T:System.PlatformNotSupportedException + description: Backend does not support the value set by style. See . implements: - OpenTK.Platform.IWindowComponent.SetBorderStyle(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowBorderStyle) +- uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.SupportsFramebufferTransparency(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.Native.SDL.SDLWindowComponent.SupportsFramebufferTransparency(OpenTK.Platform.WindowHandle) + id: SupportsFramebufferTransparency(OpenTK.Platform.WindowHandle) + parent: OpenTK.Platform.Native.SDL.SDLWindowComponent + langs: + - csharp + - vb + name: SupportsFramebufferTransparency(WindowHandle) + nameWithType: SDLWindowComponent.SupportsFramebufferTransparency(WindowHandle) + fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.SupportsFramebufferTransparency(OpenTK.Platform.WindowHandle) + type: Method + source: + id: SupportsFramebufferTransparency + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLWindowComponent.cs + startLine: 1029 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform.Native.SDL + summary: >- + Returns true if is supported for this window. + +
Win32Always returns true.
macOSAlways returns true.
Linux/X11Returns true if the selected had true.
+ example: [] + syntax: + content: public bool SupportsFramebufferTransparency(WindowHandle handle) + parameters: + - id: handle + type: OpenTK.Platform.WindowHandle + description: The window to query framebuffer transparency support for. + return: + type: System.Boolean + description: If with would work. + content.vb: Public Function SupportsFramebufferTransparency(handle As WindowHandle) As Boolean + overload: OpenTK.Platform.Native.SDL.SDLWindowComponent.SupportsFramebufferTransparency* + seealso: + - linkId: OpenTK.Platform.IWindowComponent.SetTransparencyMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowTransparencyMode,System.Single) + commentId: M:OpenTK.Platform.IWindowComponent.SetTransparencyMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowTransparencyMode,System.Single) + - linkId: OpenTK.Platform.OpenGLGraphicsApiHints.SupportTransparentFramebufferX11 + commentId: P:OpenTK.Platform.OpenGLGraphicsApiHints.SupportTransparentFramebufferX11 + - linkId: OpenTK.Platform.ContextValues.SupportsFramebufferTransparency + commentId: F:OpenTK.Platform.ContextValues.SupportsFramebufferTransparency + - linkId: OpenTK.Platform.WindowTransparencyMode + commentId: T:OpenTK.Platform.WindowTransparencyMode + implements: + - OpenTK.Platform.IWindowComponent.SupportsFramebufferTransparency(OpenTK.Platform.WindowHandle) +- uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetTransparencyMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowTransparencyMode,System.Single) + commentId: M:OpenTK.Platform.Native.SDL.SDLWindowComponent.SetTransparencyMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowTransparencyMode,System.Single) + id: SetTransparencyMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowTransparencyMode,System.Single) + parent: OpenTK.Platform.Native.SDL.SDLWindowComponent + langs: + - csharp + - vb + name: SetTransparencyMode(WindowHandle, WindowTransparencyMode, float) + nameWithType: SDLWindowComponent.SetTransparencyMode(WindowHandle, WindowTransparencyMode, float) + fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetTransparencyMode(OpenTK.Platform.WindowHandle, OpenTK.Platform.WindowTransparencyMode, float) + type: Method + source: + id: SetTransparencyMode + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLWindowComponent.cs + startLine: 1035 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform.Native.SDL + summary: Sets the transparency mode of the specified window. + example: [] + syntax: + content: public void SetTransparencyMode(WindowHandle handle, WindowTransparencyMode transparencyMode, float opacity = 0.5) + parameters: + - id: handle + type: OpenTK.Platform.WindowHandle + description: The window to set the transparency mode of. + - id: transparencyMode + type: OpenTK.Platform.WindowTransparencyMode + description: The transparency mode to apply to the window. + - id: opacity + type: System.Single + description: The whole window opacity. Ignored if transparencyMode is not . + content.vb: Public Sub SetTransparencyMode(handle As WindowHandle, transparencyMode As WindowTransparencyMode, opacity As Single = 0.5) + overload: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetTransparencyMode* + seealso: + - linkId: OpenTK.Platform.WindowTransparencyMode + commentId: T:OpenTK.Platform.WindowTransparencyMode + - linkId: OpenTK.Platform.IWindowComponent.SupportsFramebufferTransparency(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.SupportsFramebufferTransparency(OpenTK.Platform.WindowHandle) + - linkId: OpenTK.Platform.IWindowComponent.GetTransparencyMode(OpenTK.Platform.WindowHandle,System.Single@) + commentId: M:OpenTK.Platform.IWindowComponent.GetTransparencyMode(OpenTK.Platform.WindowHandle,System.Single@) + implements: + - OpenTK.Platform.IWindowComponent.SetTransparencyMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowTransparencyMode,System.Single) + nameWithType.vb: SDLWindowComponent.SetTransparencyMode(WindowHandle, WindowTransparencyMode, Single) + fullName.vb: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetTransparencyMode(OpenTK.Platform.WindowHandle, OpenTK.Platform.WindowTransparencyMode, Single) + name.vb: SetTransparencyMode(WindowHandle, WindowTransparencyMode, Single) +- uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetTransparencyMode(OpenTK.Platform.WindowHandle,System.Single@) + commentId: M:OpenTK.Platform.Native.SDL.SDLWindowComponent.GetTransparencyMode(OpenTK.Platform.WindowHandle,System.Single@) + id: GetTransparencyMode(OpenTK.Platform.WindowHandle,System.Single@) + parent: OpenTK.Platform.Native.SDL.SDLWindowComponent + langs: + - csharp + - vb + name: GetTransparencyMode(WindowHandle, out float) + nameWithType: SDLWindowComponent.GetTransparencyMode(WindowHandle, out float) + fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetTransparencyMode(OpenTK.Platform.WindowHandle, out float) + type: Method + source: + id: GetTransparencyMode + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLWindowComponent.cs + startLine: 1041 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform.Native.SDL + summary: Gets the transparency mode of the specified window. + example: [] + syntax: + content: public WindowTransparencyMode GetTransparencyMode(WindowHandle handle, out float opacity) + parameters: + - id: handle + type: OpenTK.Platform.WindowHandle + description: The window to query the transparency mode of. + - id: opacity + type: System.Single + description: The window opacity if the transparency mode was , 0 otherwise. + return: + type: OpenTK.Platform.WindowTransparencyMode + description: The transparency mode of the specified window. + content.vb: Public Function GetTransparencyMode(handle As WindowHandle, opacity As Single) As WindowTransparencyMode + overload: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetTransparencyMode* + seealso: + - linkId: OpenTK.Platform.WindowTransparencyMode + commentId: T:OpenTK.Platform.WindowTransparencyMode + - linkId: OpenTK.Platform.IWindowComponent.SetTransparencyMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowTransparencyMode,System.Single) + commentId: M:OpenTK.Platform.IWindowComponent.SetTransparencyMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowTransparencyMode,System.Single) + - linkId: OpenTK.Platform.IWindowComponent.SupportsFramebufferTransparency(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.SupportsFramebufferTransparency(OpenTK.Platform.WindowHandle) + implements: + - OpenTK.Platform.IWindowComponent.GetTransparencyMode(OpenTK.Platform.WindowHandle,System.Single@) + nameWithType.vb: SDLWindowComponent.GetTransparencyMode(WindowHandle, Single) + fullName.vb: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetTransparencyMode(OpenTK.Platform.WindowHandle, Single) + name.vb: GetTransparencyMode(WindowHandle, Single) - uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetAlwaysOnTop(OpenTK.Platform.WindowHandle,System.Boolean) commentId: M:OpenTK.Platform.Native.SDL.SDLWindowComponent.SetAlwaysOnTop(OpenTK.Platform.WindowHandle,System.Boolean) id: SetAlwaysOnTop(OpenTK.Platform.WindowHandle,System.Boolean) @@ -1781,7 +1911,7 @@ items: source: id: SetAlwaysOnTop path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLWindowComponent.cs - startLine: 1023 + startLine: 1047 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL @@ -1798,6 +1928,9 @@ items: description: Whether the window should be always on top or not. content.vb: Public Sub SetAlwaysOnTop(handle As WindowHandle, floating As Boolean) overload: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetAlwaysOnTop* + seealso: + - linkId: OpenTK.Platform.IWindowComponent.IsAlwaysOnTop(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.IsAlwaysOnTop(OpenTK.Platform.WindowHandle) implements: - OpenTK.Platform.IWindowComponent.SetAlwaysOnTop(OpenTK.Platform.WindowHandle,System.Boolean) nameWithType.vb: SDLWindowComponent.SetAlwaysOnTop(WindowHandle, Boolean) @@ -1817,7 +1950,7 @@ items: source: id: IsAlwaysOnTop path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLWindowComponent.cs - startLine: 1031 + startLine: 1055 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL @@ -1834,6 +1967,9 @@ items: description: Whether the window is always on top or not. content.vb: Public Function IsAlwaysOnTop(handle As WindowHandle) As Boolean overload: OpenTK.Platform.Native.SDL.SDLWindowComponent.IsAlwaysOnTop* + seealso: + - linkId: OpenTK.Platform.IWindowComponent.SetAlwaysOnTop(OpenTK.Platform.WindowHandle,System.Boolean) + commentId: M:OpenTK.Platform.IWindowComponent.SetAlwaysOnTop(OpenTK.Platform.WindowHandle,System.Boolean) implements: - OpenTK.Platform.IWindowComponent.IsAlwaysOnTop(OpenTK.Platform.WindowHandle) - uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetHitTestCallback(OpenTK.Platform.WindowHandle,OpenTK.Platform.HitTest) @@ -1850,7 +1986,7 @@ items: source: id: SetHitTestCallback path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLWindowComponent.cs - startLine: 1041 + startLine: 1065 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL @@ -1877,6 +2013,11 @@ items: description: The hit test delegate. content.vb: Public Sub SetHitTestCallback(handle As WindowHandle, test As HitTest) overload: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetHitTestCallback* + seealso: + - linkId: OpenTK.Platform.HitTest + commentId: T:OpenTK.Platform.HitTest + - linkId: OpenTK.Platform.HitType + commentId: T:OpenTK.Platform.HitType implements: - OpenTK.Platform.IWindowComponent.SetHitTestCallback(OpenTK.Platform.WindowHandle,OpenTK.Platform.HitTest) nameWithType.vb: SDLWindowComponent.SetHitTestCallback(WindowHandle, HitTest) @@ -1896,7 +2037,7 @@ items: source: id: SetCursor path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLWindowComponent.cs - startLine: 1086 + startLine: 1110 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL @@ -1914,11 +2055,8 @@ items: content.vb: Public Sub SetCursor(handle As WindowHandle, cursor As CursorHandle) overload: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetCursor* exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: handle is null. - - type: OpenTK.Platform.PalNotImplementedException - commentId: T:OpenTK.Platform.PalNotImplementedException + - type: System.PlatformNotSupportedException + commentId: T:System.PlatformNotSupportedException description: Backend does not support setting the window mouse cursor. See . seealso: - linkId: OpenTK.Platform.IWindowComponent.CanSetCursor @@ -1942,7 +2080,7 @@ items: source: id: GetCursorCaptureMode path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLWindowComponent.cs - startLine: 1110 + startLine: 1134 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL @@ -1959,6 +2097,11 @@ items: description: The current cursor capture mode. content.vb: Public Function GetCursorCaptureMode(handle As WindowHandle) As CursorCaptureMode overload: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetCursorCaptureMode* + seealso: + - linkId: OpenTK.Platform.IWindowComponent.CanCaptureCursor + commentId: P:OpenTK.Platform.IWindowComponent.CanCaptureCursor + - linkId: OpenTK.Platform.IWindowComponent.SetCursorCaptureMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorCaptureMode) + commentId: M:OpenTK.Platform.IWindowComponent.SetCursorCaptureMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorCaptureMode) implements: - OpenTK.Platform.IWindowComponent.GetCursorCaptureMode(OpenTK.Platform.WindowHandle) - uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetCursorCaptureMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorCaptureMode) @@ -1975,7 +2118,7 @@ items: source: id: SetCursorCaptureMode path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLWindowComponent.cs - startLine: 1131 + startLine: 1155 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL @@ -1998,6 +2141,8 @@ items: seealso: - linkId: OpenTK.Platform.IWindowComponent.CanCaptureCursor commentId: P:OpenTK.Platform.IWindowComponent.CanCaptureCursor + - linkId: OpenTK.Platform.IWindowComponent.SetCursorCaptureMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorCaptureMode) + commentId: M:OpenTK.Platform.IWindowComponent.SetCursorCaptureMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorCaptureMode) implements: - OpenTK.Platform.IWindowComponent.SetCursorCaptureMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorCaptureMode) - uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.IsFocused(OpenTK.Platform.WindowHandle) @@ -2014,7 +2159,7 @@ items: source: id: IsFocused path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLWindowComponent.cs - startLine: 1152 + startLine: 1176 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL @@ -2031,6 +2176,11 @@ items: description: If the window has input focus. content.vb: Public Function IsFocused(handle As WindowHandle) As Boolean overload: OpenTK.Platform.Native.SDL.SDLWindowComponent.IsFocused* + seealso: + - linkId: OpenTK.Platform.IWindowComponent.FocusWindow(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.FocusWindow(OpenTK.Platform.WindowHandle) + - linkId: OpenTK.Platform.IWindowComponent.RequestAttention(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.RequestAttention(OpenTK.Platform.WindowHandle) implements: - OpenTK.Platform.IWindowComponent.IsFocused(OpenTK.Platform.WindowHandle) - uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.FocusWindow(OpenTK.Platform.WindowHandle) @@ -2047,7 +2197,7 @@ items: source: id: FocusWindow path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLWindowComponent.cs - startLine: 1160 + startLine: 1184 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL @@ -2061,6 +2211,11 @@ items: description: Handle to the window to focus. content.vb: Public Sub FocusWindow(handle As WindowHandle) overload: OpenTK.Platform.Native.SDL.SDLWindowComponent.FocusWindow* + seealso: + - linkId: OpenTK.Platform.IWindowComponent.IsFocused(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.IsFocused(OpenTK.Platform.WindowHandle) + - linkId: OpenTK.Platform.IWindowComponent.RequestAttention(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.RequestAttention(OpenTK.Platform.WindowHandle) implements: - OpenTK.Platform.IWindowComponent.FocusWindow(OpenTK.Platform.WindowHandle) - uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.RequestAttention(OpenTK.Platform.WindowHandle) @@ -2077,11 +2232,14 @@ items: source: id: RequestAttention path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLWindowComponent.cs - startLine: 1168 + startLine: 1192 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL - summary: Requests that the user pay attention to the window. + summary: >- + Requests that the user pay attention to the window. + + Usually by flashing the window icon. example: [] syntax: content: public void RequestAttention(WindowHandle handle) @@ -2091,98 +2249,203 @@ items: description: A handle to the window that requests attention. content.vb: Public Sub RequestAttention(handle As WindowHandle) overload: OpenTK.Platform.Native.SDL.SDLWindowComponent.RequestAttention* + seealso: + - linkId: OpenTK.Platform.IWindowComponent.FocusWindow(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.FocusWindow(OpenTK.Platform.WindowHandle) implements: - OpenTK.Platform.IWindowComponent.RequestAttention(OpenTK.Platform.WindowHandle) -- uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) - commentId: M:OpenTK.Platform.Native.SDL.SDLWindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) - id: ScreenToClient(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) +- uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + commentId: M:OpenTK.Platform.Native.SDL.SDLWindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + id: ScreenToClient(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) parent: OpenTK.Platform.Native.SDL.SDLWindowComponent langs: - csharp - vb - name: ScreenToClient(WindowHandle, int, int, out int, out int) - nameWithType: SDLWindowComponent.ScreenToClient(WindowHandle, int, int, out int, out int) - fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle, int, int, out int, out int) + name: ScreenToClient(WindowHandle, Vector2, out Vector2) + nameWithType: SDLWindowComponent.ScreenToClient(WindowHandle, Vector2, out Vector2) + fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2, out OpenTK.Mathematics.Vector2) type: Method source: id: ScreenToClient path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLWindowComponent.cs - startLine: 1176 + startLine: 1200 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: Converts screen coordinates to window relative coordinates. + remarks: >- + On platforms that support non-integer screen and client space coordinates (macOS) this function will return full precision results, + + on integer based platforms (win32 and X11) the input coordinates will (if necessary) be truncated to ints before conversion. example: [] syntax: - content: public void ScreenToClient(WindowHandle handle, int x, int y, out int clientX, out int clientY) + content: public void ScreenToClient(WindowHandle handle, Vector2 screen, out Vector2 client) parameters: - id: handle type: OpenTK.Platform.WindowHandle description: The window handle. - - id: x - type: System.Int32 - description: The screen x coordinate. - - id: y - type: System.Int32 - description: The screen y coordinate. - - id: clientX - type: System.Int32 - description: The client x coordinate. - - id: clientY - type: System.Int32 - description: The client y coordinate. - content.vb: Public Sub ScreenToClient(handle As WindowHandle, x As Integer, y As Integer, clientX As Integer, clientY As Integer) + - id: screen + type: OpenTK.Mathematics.Vector2 + description: The screen coordinate. + - id: client + type: OpenTK.Mathematics.Vector2 + description: The client coordinate. + content.vb: Public Sub ScreenToClient(handle As WindowHandle, screen As Vector2, client As Vector2) overload: OpenTK.Platform.Native.SDL.SDLWindowComponent.ScreenToClient* + seealso: + - linkId: OpenTK.Platform.IWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + commentId: M:OpenTK.Platform.IWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + - linkId: OpenTK.Platform.IWindowComponent.ClientToFramebuffer(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + commentId: M:OpenTK.Platform.IWindowComponent.ClientToFramebuffer(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) implements: - - OpenTK.Platform.IWindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) - nameWithType.vb: SDLWindowComponent.ScreenToClient(WindowHandle, Integer, Integer, Integer, Integer) - fullName.vb: OpenTK.Platform.Native.SDL.SDLWindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle, Integer, Integer, Integer, Integer) - name.vb: ScreenToClient(WindowHandle, Integer, Integer, Integer, Integer) -- uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) - commentId: M:OpenTK.Platform.Native.SDL.SDLWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) - id: ClientToScreen(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) + - OpenTK.Platform.IWindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + nameWithType.vb: SDLWindowComponent.ScreenToClient(WindowHandle, Vector2, Vector2) + fullName.vb: OpenTK.Platform.Native.SDL.SDLWindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2, OpenTK.Mathematics.Vector2) + name.vb: ScreenToClient(WindowHandle, Vector2, Vector2) +- uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + commentId: M:OpenTK.Platform.Native.SDL.SDLWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + id: ClientToScreen(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) parent: OpenTK.Platform.Native.SDL.SDLWindowComponent langs: - csharp - vb - name: ClientToScreen(WindowHandle, int, int, out int, out int) - nameWithType: SDLWindowComponent.ClientToScreen(WindowHandle, int, int, out int, out int) - fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle, int, int, out int, out int) + name: ClientToScreen(WindowHandle, Vector2, out Vector2) + nameWithType: SDLWindowComponent.ClientToScreen(WindowHandle, Vector2, out Vector2) + fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2, out OpenTK.Mathematics.Vector2) type: Method source: id: ClientToScreen path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLWindowComponent.cs - startLine: 1186 + startLine: 1210 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL summary: Converts window relative coordinates to screen coordinates. + remarks: >- + On platforms that support non-integer screen and client space coordinates (macOS) this function will return full precision results, + + on integer based platforms (win32 and X11) the input coordinates will (if necessary) be truncated to ints before conversion. example: [] syntax: - content: public void ClientToScreen(WindowHandle handle, int clientX, int clientY, out int x, out int y) + content: public void ClientToScreen(WindowHandle handle, Vector2 client, out Vector2 screen) parameters: - id: handle type: OpenTK.Platform.WindowHandle description: The window handle. - - id: clientX - type: System.Int32 - description: The client x coordinate. - - id: clientY - type: System.Int32 - description: The client y coordinate. - - id: x - type: System.Int32 - description: The screen x coordinate. - - id: y - type: System.Int32 - description: The screen y coordinate. - content.vb: Public Sub ClientToScreen(handle As WindowHandle, clientX As Integer, clientY As Integer, x As Integer, y As Integer) + - id: client + type: OpenTK.Mathematics.Vector2 + description: The client coordinate. + - id: screen + type: OpenTK.Mathematics.Vector2 + description: The screen coordinate. + content.vb: Public Sub ClientToScreen(handle As WindowHandle, client As Vector2, screen As Vector2) overload: OpenTK.Platform.Native.SDL.SDLWindowComponent.ClientToScreen* + seealso: + - linkId: OpenTK.Platform.IWindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + commentId: M:OpenTK.Platform.IWindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + - linkId: OpenTK.Platform.IWindowComponent.ClientToFramebuffer(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + commentId: M:OpenTK.Platform.IWindowComponent.ClientToFramebuffer(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + implements: + - OpenTK.Platform.IWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + nameWithType.vb: SDLWindowComponent.ClientToScreen(WindowHandle, Vector2, Vector2) + fullName.vb: OpenTK.Platform.Native.SDL.SDLWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2, OpenTK.Mathematics.Vector2) + name.vb: ClientToScreen(WindowHandle, Vector2, Vector2) +- uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.ClientToFramebuffer(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + commentId: M:OpenTK.Platform.Native.SDL.SDLWindowComponent.ClientToFramebuffer(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + id: ClientToFramebuffer(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + parent: OpenTK.Platform.Native.SDL.SDLWindowComponent + langs: + - csharp + - vb + name: ClientToFramebuffer(WindowHandle, Vector2, out Vector2) + nameWithType: SDLWindowComponent.ClientToFramebuffer(WindowHandle, Vector2, out Vector2) + fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.ClientToFramebuffer(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2, out OpenTK.Mathematics.Vector2) + type: Method + source: + id: ClientToFramebuffer + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLWindowComponent.cs + startLine: 1220 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform.Native.SDL + summary: Converts window relative coordinates to framebuffer coordinates. + remarks: >- + On platforms that support non-integer screen and client space coordinates (macOS) this function will return full precision results, + + on integer based platforms (win32 and X11) the input coordinates will (if necessary) be truncated to ints before conversion. + example: [] + syntax: + content: public void ClientToFramebuffer(WindowHandle handle, Vector2 client, out Vector2 framebuffer) + parameters: + - id: handle + type: OpenTK.Platform.WindowHandle + description: Handle of the window whose coordinate system to use. + - id: client + type: OpenTK.Mathematics.Vector2 + description: The client coordinate. + - id: framebuffer + type: OpenTK.Mathematics.Vector2 + description: The framebuffer coordinate. + content.vb: Public Sub ClientToFramebuffer(handle As WindowHandle, client As Vector2, framebuffer As Vector2) + overload: OpenTK.Platform.Native.SDL.SDLWindowComponent.ClientToFramebuffer* + seealso: + - linkId: OpenTK.Platform.IWindowComponent.FramebufferToClient(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + commentId: M:OpenTK.Platform.IWindowComponent.FramebufferToClient(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + - linkId: OpenTK.Platform.IWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + commentId: M:OpenTK.Platform.IWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + implements: + - OpenTK.Platform.IWindowComponent.ClientToFramebuffer(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + nameWithType.vb: SDLWindowComponent.ClientToFramebuffer(WindowHandle, Vector2, Vector2) + fullName.vb: OpenTK.Platform.Native.SDL.SDLWindowComponent.ClientToFramebuffer(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2, OpenTK.Mathematics.Vector2) + name.vb: ClientToFramebuffer(WindowHandle, Vector2, Vector2) +- uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.FramebufferToClient(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + commentId: M:OpenTK.Platform.Native.SDL.SDLWindowComponent.FramebufferToClient(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + id: FramebufferToClient(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + parent: OpenTK.Platform.Native.SDL.SDLWindowComponent + langs: + - csharp + - vb + name: FramebufferToClient(WindowHandle, Vector2, out Vector2) + nameWithType: SDLWindowComponent.FramebufferToClient(WindowHandle, Vector2, out Vector2) + fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.FramebufferToClient(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2, out OpenTK.Mathematics.Vector2) + type: Method + source: + id: FramebufferToClient + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLWindowComponent.cs + startLine: 1226 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform.Native.SDL + summary: Converts framebuffer coordinates to framebuffer coordinates. + remarks: >- + On platforms that support non-integer screen and client space coordinates (macOS) this function will return full precision results, + + on integer based platforms (win32 and X11) the input coordinates will (if necessary) be truncated to ints before conversion. + example: [] + syntax: + content: public void FramebufferToClient(WindowHandle handle, Vector2 framebuffer, out Vector2 client) + parameters: + - id: handle + type: OpenTK.Platform.WindowHandle + description: Handle of the window whose coordinate system to use. + - id: framebuffer + type: OpenTK.Mathematics.Vector2 + description: The framebuffer coordinate. + - id: client + type: OpenTK.Mathematics.Vector2 + description: The client coordinate. + content.vb: Public Sub FramebufferToClient(handle As WindowHandle, framebuffer As Vector2, client As Vector2) + overload: OpenTK.Platform.Native.SDL.SDLWindowComponent.FramebufferToClient* + seealso: + - linkId: OpenTK.Platform.IWindowComponent.ClientToFramebuffer(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + commentId: M:OpenTK.Platform.IWindowComponent.ClientToFramebuffer(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + - linkId: OpenTK.Platform.IWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + commentId: M:OpenTK.Platform.IWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) implements: - - OpenTK.Platform.IWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) - nameWithType.vb: SDLWindowComponent.ClientToScreen(WindowHandle, Integer, Integer, Integer, Integer) - fullName.vb: OpenTK.Platform.Native.SDL.SDLWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle, Integer, Integer, Integer, Integer) - name.vb: ClientToScreen(WindowHandle, Integer, Integer, Integer, Integer) + - OpenTK.Platform.IWindowComponent.FramebufferToClient(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + nameWithType.vb: SDLWindowComponent.FramebufferToClient(WindowHandle, Vector2, Vector2) + fullName.vb: OpenTK.Platform.Native.SDL.SDLWindowComponent.FramebufferToClient(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2, OpenTK.Mathematics.Vector2) + name.vb: FramebufferToClient(WindowHandle, Vector2, Vector2) - uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetScaleFactor(OpenTK.Platform.WindowHandle,System.Single@,System.Single@) commentId: M:OpenTK.Platform.Native.SDL.SDLWindowComponent.GetScaleFactor(OpenTK.Platform.WindowHandle,System.Single@,System.Single@) id: GetScaleFactor(OpenTK.Platform.WindowHandle,System.Single@,System.Single@) @@ -2197,7 +2460,7 @@ items: source: id: GetScaleFactor path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\SDL\SDLWindowComponent.cs - startLine: 1196 + startLine: 1232 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.SDL @@ -2581,19 +2844,6 @@ references: name: PalComponents nameWithType: PalComponents fullName: OpenTK.Platform.PalComponents -- uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.Logger* - commentId: Overload:OpenTK.Platform.Native.SDL.SDLWindowComponent.Logger - href: OpenTK.Platform.Native.SDL.SDLWindowComponent.html#OpenTK_Platform_Native_SDL_SDLWindowComponent_Logger - name: Logger - nameWithType: SDLWindowComponent.Logger - fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.Logger -- uid: OpenTK.Platform.IPalComponent.Logger - commentId: P:OpenTK.Platform.IPalComponent.Logger - parent: OpenTK.Platform.IPalComponent - href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Logger - name: Logger - nameWithType: IPalComponent.Logger - fullName: OpenTK.Platform.IPalComponent.Logger - uid: OpenTK.Core.Utility.ILogger commentId: T:OpenTK.Core.Utility.ILogger parent: OpenTK.Core.Utility @@ -2601,6 +2851,25 @@ references: name: ILogger nameWithType: ILogger fullName: OpenTK.Core.Utility.ILogger +- uid: OpenTK.Platform.ToolkitOptions.Logger + commentId: P:OpenTK.Platform.ToolkitOptions.Logger + href: OpenTK.Platform.ToolkitOptions.html#OpenTK_Platform_ToolkitOptions_Logger + name: Logger + nameWithType: ToolkitOptions.Logger + fullName: OpenTK.Platform.ToolkitOptions.Logger +- uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.Logger* + commentId: Overload:OpenTK.Platform.Native.SDL.SDLWindowComponent.Logger + href: OpenTK.Platform.Native.SDL.SDLWindowComponent.html#OpenTK_Platform_Native_SDL_SDLWindowComponent_Logger + name: Logger + nameWithType: SDLWindowComponent.Logger + fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.Logger +- uid: OpenTK.Platform.IPalComponent.Logger + commentId: P:OpenTK.Platform.IPalComponent.Logger + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Logger + name: Logger + nameWithType: IPalComponent.Logger + fullName: OpenTK.Platform.IPalComponent.Logger - uid: OpenTK.Core.Utility commentId: N:OpenTK.Core.Utility href: OpenTK.html @@ -2631,6 +2900,37 @@ references: - uid: OpenTK.Core.Utility name: Utility href: OpenTK.Core.Utility.html +- uid: OpenTK.Platform.ToolkitOptions + commentId: T:OpenTK.Platform.ToolkitOptions + parent: OpenTK.Platform + href: OpenTK.Platform.ToolkitOptions.html + name: ToolkitOptions + nameWithType: ToolkitOptions + fullName: OpenTK.Platform.ToolkitOptions +- uid: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Init_OpenTK_Platform_ToolkitOptions_ + name: Init(ToolkitOptions) + nameWithType: Toolkit.Init(ToolkitOptions) + fullName: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + spec.csharp: + - uid: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + name: Init + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Init_OpenTK_Platform_ToolkitOptions_ + - name: ( + - uid: OpenTK.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Platform.ToolkitOptions.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + name: Init + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Init_OpenTK_Platform_ToolkitOptions_ + - name: ( + - uid: OpenTK.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Platform.ToolkitOptions.html + - name: ) - uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.Initialize* commentId: Overload:OpenTK.Platform.Native.SDL.SDLWindowComponent.Initialize href: OpenTK.Platform.Native.SDL.SDLWindowComponent.html#OpenTK_Platform_Native_SDL_SDLWindowComponent_Initialize_OpenTK_Platform_ToolkitOptions_ @@ -2662,13 +2962,49 @@ references: name: ToolkitOptions href: OpenTK.Platform.ToolkitOptions.html - name: ) -- uid: OpenTK.Platform.ToolkitOptions - commentId: T:OpenTK.Platform.ToolkitOptions - parent: OpenTK.Platform - href: OpenTK.Platform.ToolkitOptions.html - name: ToolkitOptions - nameWithType: ToolkitOptions - fullName: OpenTK.Platform.ToolkitOptions +- uid: OpenTK.Platform.Toolkit.Uninit + commentId: M:OpenTK.Platform.Toolkit.Uninit + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Uninit + name: Uninit() + nameWithType: Toolkit.Uninit() + fullName: OpenTK.Platform.Toolkit.Uninit() + spec.csharp: + - uid: OpenTK.Platform.Toolkit.Uninit + name: Uninit + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Uninit + - name: ( + - name: ) + spec.vb: + - uid: OpenTK.Platform.Toolkit.Uninit + name: Uninit + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Uninit + - name: ( + - name: ) +- uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.Uninitialize* + commentId: Overload:OpenTK.Platform.Native.SDL.SDLWindowComponent.Uninitialize + href: OpenTK.Platform.Native.SDL.SDLWindowComponent.html#OpenTK_Platform_Native_SDL_SDLWindowComponent_Uninitialize + name: Uninitialize + nameWithType: SDLWindowComponent.Uninitialize + fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.Uninitialize +- uid: OpenTK.Platform.IPalComponent.Uninitialize + commentId: M:OpenTK.Platform.IPalComponent.Uninitialize + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + name: Uninitialize() + nameWithType: IPalComponent.Uninitialize() + fullName: OpenTK.Platform.IPalComponent.Uninitialize() + spec.csharp: + - uid: OpenTK.Platform.IPalComponent.Uninitialize + name: Uninitialize + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + - name: ( + - name: ) + spec.vb: + - uid: OpenTK.Platform.IPalComponent.Uninitialize + name: Uninitialize + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + - name: ( + - name: ) - uid: OpenTK.Platform.IWindowComponent.SetIcon(OpenTK.Platform.WindowHandle,OpenTK.Platform.IconHandle) commentId: M:OpenTK.Platform.IWindowComponent.SetIcon(OpenTK.Platform.WindowHandle,OpenTK.Platform.IconHandle) parent: OpenTK.Platform.IWindowComponent @@ -2704,6 +3040,31 @@ references: name: IconHandle href: OpenTK.Platform.IconHandle.html - name: ) +- uid: OpenTK.Platform.IWindowComponent.GetIcon(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.GetIcon(OpenTK.Platform.WindowHandle) + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetIcon_OpenTK_Platform_WindowHandle_ + name: GetIcon(WindowHandle) + nameWithType: IWindowComponent.GetIcon(WindowHandle) + fullName: OpenTK.Platform.IWindowComponent.GetIcon(OpenTK.Platform.WindowHandle) + spec.csharp: + - uid: OpenTK.Platform.IWindowComponent.GetIcon(OpenTK.Platform.WindowHandle) + name: GetIcon + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetIcon_OpenTK_Platform_WindowHandle_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IWindowComponent.GetIcon(OpenTK.Platform.WindowHandle) + name: GetIcon + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetIcon_OpenTK_Platform_WindowHandle_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ) - uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.CanSetIcon* commentId: Overload:OpenTK.Platform.Native.SDL.SDLWindowComponent.CanSetIcon href: OpenTK.Platform.Native.SDL.SDLWindowComponent.html#OpenTK_Platform_Native_SDL_SDLWindowComponent_CanSetIcon @@ -3109,6 +3470,31 @@ references: isExternal: true href: https://learn.microsoft.com/dotnet/api/system.boolean - name: ) +- uid: OpenTK.Platform.IWindowComponent.Destroy(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.Destroy(OpenTK.Platform.WindowHandle) + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_Destroy_OpenTK_Platform_WindowHandle_ + name: Destroy(WindowHandle) + nameWithType: IWindowComponent.Destroy(WindowHandle) + fullName: OpenTK.Platform.IWindowComponent.Destroy(OpenTK.Platform.WindowHandle) + spec.csharp: + - uid: OpenTK.Platform.IWindowComponent.Destroy(OpenTK.Platform.WindowHandle) + name: Destroy + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_Destroy_OpenTK_Platform_WindowHandle_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IWindowComponent.Destroy(OpenTK.Platform.WindowHandle) + name: Destroy + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_Destroy_OpenTK_Platform_WindowHandle_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ) - uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.Create* commentId: Overload:OpenTK.Platform.Native.SDL.SDLWindowComponent.Create href: OpenTK.Platform.Native.SDL.SDLWindowComponent.html#OpenTK_Platform_Native_SDL_SDLWindowComponent_Create_OpenTK_Platform_GraphicsApiHints_ @@ -3179,87 +3565,18 @@ references: name: WindowHandle href: OpenTK.Platform.WindowHandle.html - name: ) -- uid: System.ArgumentNullException - commentId: T:System.ArgumentNullException - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.argumentnullexception - name: ArgumentNullException - nameWithType: ArgumentNullException - fullName: System.ArgumentNullException - uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.Destroy* commentId: Overload:OpenTK.Platform.Native.SDL.SDLWindowComponent.Destroy href: OpenTK.Platform.Native.SDL.SDLWindowComponent.html#OpenTK_Platform_Native_SDL_SDLWindowComponent_Destroy_OpenTK_Platform_WindowHandle_ name: Destroy nameWithType: SDLWindowComponent.Destroy fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.Destroy -- uid: OpenTK.Platform.IWindowComponent.Destroy(OpenTK.Platform.WindowHandle) - commentId: M:OpenTK.Platform.IWindowComponent.Destroy(OpenTK.Platform.WindowHandle) - parent: OpenTK.Platform.IWindowComponent - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_Destroy_OpenTK_Platform_WindowHandle_ - name: Destroy(WindowHandle) - nameWithType: IWindowComponent.Destroy(WindowHandle) - fullName: OpenTK.Platform.IWindowComponent.Destroy(OpenTK.Platform.WindowHandle) - spec.csharp: - - uid: OpenTK.Platform.IWindowComponent.Destroy(OpenTK.Platform.WindowHandle) - name: Destroy - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_Destroy_OpenTK_Platform_WindowHandle_ - - name: ( - - uid: OpenTK.Platform.WindowHandle - name: WindowHandle - href: OpenTK.Platform.WindowHandle.html - - name: ) - spec.vb: - - uid: OpenTK.Platform.IWindowComponent.Destroy(OpenTK.Platform.WindowHandle) - name: Destroy - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_Destroy_OpenTK_Platform_WindowHandle_ - - name: ( - - uid: OpenTK.Platform.WindowHandle - name: WindowHandle - href: OpenTK.Platform.WindowHandle.html - - name: ) - uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.IsWindowDestroyed* commentId: Overload:OpenTK.Platform.Native.SDL.SDLWindowComponent.IsWindowDestroyed href: OpenTK.Platform.Native.SDL.SDLWindowComponent.html#OpenTK_Platform_Native_SDL_SDLWindowComponent_IsWindowDestroyed_OpenTK_Platform_WindowHandle_ name: IsWindowDestroyed nameWithType: SDLWindowComponent.IsWindowDestroyed fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.IsWindowDestroyed -- uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetTitle* - commentId: Overload:OpenTK.Platform.Native.SDL.SDLWindowComponent.GetTitle - href: OpenTK.Platform.Native.SDL.SDLWindowComponent.html#OpenTK_Platform_Native_SDL_SDLWindowComponent_GetTitle_OpenTK_Platform_WindowHandle_ - name: GetTitle - nameWithType: SDLWindowComponent.GetTitle - fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetTitle -- uid: OpenTK.Platform.IWindowComponent.GetTitle(OpenTK.Platform.WindowHandle) - commentId: M:OpenTK.Platform.IWindowComponent.GetTitle(OpenTK.Platform.WindowHandle) - parent: OpenTK.Platform.IWindowComponent - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetTitle_OpenTK_Platform_WindowHandle_ - name: GetTitle(WindowHandle) - nameWithType: IWindowComponent.GetTitle(WindowHandle) - fullName: OpenTK.Platform.IWindowComponent.GetTitle(OpenTK.Platform.WindowHandle) - spec.csharp: - - uid: OpenTK.Platform.IWindowComponent.GetTitle(OpenTK.Platform.WindowHandle) - name: GetTitle - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetTitle_OpenTK_Platform_WindowHandle_ - - name: ( - - uid: OpenTK.Platform.WindowHandle - name: WindowHandle - href: OpenTK.Platform.WindowHandle.html - - name: ) - spec.vb: - - uid: OpenTK.Platform.IWindowComponent.GetTitle(OpenTK.Platform.WindowHandle) - name: GetTitle - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetTitle_OpenTK_Platform_WindowHandle_ - - name: ( - - uid: OpenTK.Platform.WindowHandle - name: WindowHandle - href: OpenTK.Platform.WindowHandle.html - - name: ) -- uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetTitle* - commentId: Overload:OpenTK.Platform.Native.SDL.SDLWindowComponent.SetTitle - href: OpenTK.Platform.Native.SDL.SDLWindowComponent.html#OpenTK_Platform_Native_SDL_SDLWindowComponent_SetTitle_OpenTK_Platform_WindowHandle_System_String_ - name: SetTitle - nameWithType: SDLWindowComponent.SetTitle - fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetTitle - uid: OpenTK.Platform.IWindowComponent.SetTitle(OpenTK.Platform.WindowHandle,System.String) commentId: M:OpenTK.Platform.IWindowComponent.SetTitle(OpenTK.Platform.WindowHandle,System.String) parent: OpenTK.Platform.IWindowComponent @@ -3301,43 +3618,56 @@ references: isExternal: true href: https://learn.microsoft.com/dotnet/api/system.string - name: ) -- uid: OpenTK.Platform.PalNotImplementedException - commentId: T:OpenTK.Platform.PalNotImplementedException - href: OpenTK.Platform.PalNotImplementedException.html - name: PalNotImplementedException - nameWithType: PalNotImplementedException - fullName: OpenTK.Platform.PalNotImplementedException -- uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetIcon* - commentId: Overload:OpenTK.Platform.Native.SDL.SDLWindowComponent.GetIcon - href: OpenTK.Platform.Native.SDL.SDLWindowComponent.html#OpenTK_Platform_Native_SDL_SDLWindowComponent_GetIcon_OpenTK_Platform_WindowHandle_ - name: GetIcon - nameWithType: SDLWindowComponent.GetIcon - fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetIcon -- uid: OpenTK.Platform.IWindowComponent.GetIcon(OpenTK.Platform.WindowHandle) - commentId: M:OpenTK.Platform.IWindowComponent.GetIcon(OpenTK.Platform.WindowHandle) +- uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetTitle* + commentId: Overload:OpenTK.Platform.Native.SDL.SDLWindowComponent.GetTitle + href: OpenTK.Platform.Native.SDL.SDLWindowComponent.html#OpenTK_Platform_Native_SDL_SDLWindowComponent_GetTitle_OpenTK_Platform_WindowHandle_ + name: GetTitle + nameWithType: SDLWindowComponent.GetTitle + fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetTitle +- uid: OpenTK.Platform.IWindowComponent.GetTitle(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.GetTitle(OpenTK.Platform.WindowHandle) parent: OpenTK.Platform.IWindowComponent - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetIcon_OpenTK_Platform_WindowHandle_ - name: GetIcon(WindowHandle) - nameWithType: IWindowComponent.GetIcon(WindowHandle) - fullName: OpenTK.Platform.IWindowComponent.GetIcon(OpenTK.Platform.WindowHandle) + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetTitle_OpenTK_Platform_WindowHandle_ + name: GetTitle(WindowHandle) + nameWithType: IWindowComponent.GetTitle(WindowHandle) + fullName: OpenTK.Platform.IWindowComponent.GetTitle(OpenTK.Platform.WindowHandle) spec.csharp: - - uid: OpenTK.Platform.IWindowComponent.GetIcon(OpenTK.Platform.WindowHandle) - name: GetIcon - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetIcon_OpenTK_Platform_WindowHandle_ + - uid: OpenTK.Platform.IWindowComponent.GetTitle(OpenTK.Platform.WindowHandle) + name: GetTitle + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetTitle_OpenTK_Platform_WindowHandle_ - name: ( - uid: OpenTK.Platform.WindowHandle name: WindowHandle href: OpenTK.Platform.WindowHandle.html - name: ) spec.vb: - - uid: OpenTK.Platform.IWindowComponent.GetIcon(OpenTK.Platform.WindowHandle) - name: GetIcon - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetIcon_OpenTK_Platform_WindowHandle_ + - uid: OpenTK.Platform.IWindowComponent.GetTitle(OpenTK.Platform.WindowHandle) + name: GetTitle + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetTitle_OpenTK_Platform_WindowHandle_ - name: ( - uid: OpenTK.Platform.WindowHandle name: WindowHandle href: OpenTK.Platform.WindowHandle.html - name: ) +- uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetTitle* + commentId: Overload:OpenTK.Platform.Native.SDL.SDLWindowComponent.SetTitle + href: OpenTK.Platform.Native.SDL.SDLWindowComponent.html#OpenTK_Platform_Native_SDL_SDLWindowComponent_SetTitle_OpenTK_Platform_WindowHandle_System_String_ + name: SetTitle + nameWithType: SDLWindowComponent.SetTitle + fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetTitle +- uid: System.PlatformNotSupportedException + commentId: T:System.PlatformNotSupportedException + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.platformnotsupportedexception + name: PlatformNotSupportedException + nameWithType: PlatformNotSupportedException + fullName: System.PlatformNotSupportedException +- uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetIcon* + commentId: Overload:OpenTK.Platform.Native.SDL.SDLWindowComponent.GetIcon + href: OpenTK.Platform.Native.SDL.SDLWindowComponent.html#OpenTK_Platform_Native_SDL_SDLWindowComponent_GetIcon_OpenTK_Platform_WindowHandle_ + name: GetIcon + nameWithType: SDLWindowComponent.GetIcon + fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetIcon - uid: OpenTK.Platform.IconHandle commentId: T:OpenTK.Platform.IconHandle parent: OpenTK.Platform @@ -3351,160 +3681,142 @@ references: name: SetIcon nameWithType: SDLWindowComponent.SetIcon fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetIcon -- uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetPosition* - commentId: Overload:OpenTK.Platform.Native.SDL.SDLWindowComponent.GetPosition - href: OpenTK.Platform.Native.SDL.SDLWindowComponent.html#OpenTK_Platform_Native_SDL_SDLWindowComponent_GetPosition_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ - name: GetPosition - nameWithType: SDLWindowComponent.GetPosition - fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetPosition -- uid: OpenTK.Platform.IWindowComponent.GetPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) - commentId: M:OpenTK.Platform.IWindowComponent.GetPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) +- uid: OpenTK.Platform.IWindowComponent.SetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) + commentId: M:OpenTK.Platform.IWindowComponent.SetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) parent: OpenTK.Platform.IWindowComponent - isExternal: true - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetPosition_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ - name: GetPosition(WindowHandle, out int, out int) - nameWithType: IWindowComponent.GetPosition(WindowHandle, out int, out int) - fullName: OpenTK.Platform.IWindowComponent.GetPosition(OpenTK.Platform.WindowHandle, out int, out int) - nameWithType.vb: IWindowComponent.GetPosition(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Platform.IWindowComponent.GetPosition(OpenTK.Platform.WindowHandle, Integer, Integer) - name.vb: GetPosition(WindowHandle, Integer, Integer) + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetPosition_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2i_ + name: SetPosition(WindowHandle, Vector2i) + nameWithType: IWindowComponent.SetPosition(WindowHandle, Vector2i) + fullName: OpenTK.Platform.IWindowComponent.SetPosition(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2i) spec.csharp: - - uid: OpenTK.Platform.IWindowComponent.GetPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) - name: GetPosition - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetPosition_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ + - uid: OpenTK.Platform.IWindowComponent.SetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) + name: SetPosition + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetPosition_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2i_ - name: ( - uid: OpenTK.Platform.WindowHandle name: WindowHandle href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - - name: out - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - name: out - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 + - uid: OpenTK.Mathematics.Vector2i + name: Vector2i + href: OpenTK.Mathematics.Vector2i.html - name: ) spec.vb: - - uid: OpenTK.Platform.IWindowComponent.GetPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) - name: GetPosition - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetPosition_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ + - uid: OpenTK.Platform.IWindowComponent.SetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) + name: SetPosition + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetPosition_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2i_ - name: ( - uid: OpenTK.Platform.WindowHandle name: WindowHandle href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 + - uid: OpenTK.Mathematics.Vector2i + name: Vector2i + href: OpenTK.Mathematics.Vector2i.html - name: ) -- uid: System.Int32 - commentId: T:System.Int32 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - name: int - nameWithType: int - fullName: int - nameWithType.vb: Integer - fullName.vb: Integer - name.vb: Integer -- uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetPosition* - commentId: Overload:OpenTK.Platform.Native.SDL.SDLWindowComponent.SetPosition - href: OpenTK.Platform.Native.SDL.SDLWindowComponent.html#OpenTK_Platform_Native_SDL_SDLWindowComponent_SetPosition_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_ - name: SetPosition - nameWithType: SDLWindowComponent.SetPosition - fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetPosition -- uid: OpenTK.Platform.IWindowComponent.SetPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) - commentId: M:OpenTK.Platform.IWindowComponent.SetPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) +- uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetPosition* + commentId: Overload:OpenTK.Platform.Native.SDL.SDLWindowComponent.GetPosition + href: OpenTK.Platform.Native.SDL.SDLWindowComponent.html#OpenTK_Platform_Native_SDL_SDLWindowComponent_GetPosition_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2i__ + name: GetPosition + nameWithType: SDLWindowComponent.GetPosition + fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetPosition +- uid: OpenTK.Platform.IWindowComponent.GetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) + commentId: M:OpenTK.Platform.IWindowComponent.GetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) parent: OpenTK.Platform.IWindowComponent - isExternal: true - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetPosition_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_ - name: SetPosition(WindowHandle, int, int) - nameWithType: IWindowComponent.SetPosition(WindowHandle, int, int) - fullName: OpenTK.Platform.IWindowComponent.SetPosition(OpenTK.Platform.WindowHandle, int, int) - nameWithType.vb: IWindowComponent.SetPosition(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Platform.IWindowComponent.SetPosition(OpenTK.Platform.WindowHandle, Integer, Integer) - name.vb: SetPosition(WindowHandle, Integer, Integer) + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetPosition_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2i__ + name: GetPosition(WindowHandle, out Vector2i) + nameWithType: IWindowComponent.GetPosition(WindowHandle, out Vector2i) + fullName: OpenTK.Platform.IWindowComponent.GetPosition(OpenTK.Platform.WindowHandle, out OpenTK.Mathematics.Vector2i) + nameWithType.vb: IWindowComponent.GetPosition(WindowHandle, Vector2i) + fullName.vb: OpenTK.Platform.IWindowComponent.GetPosition(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2i) + name.vb: GetPosition(WindowHandle, Vector2i) spec.csharp: - - uid: OpenTK.Platform.IWindowComponent.SetPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) - name: SetPosition - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetPosition_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_ + - uid: OpenTK.Platform.IWindowComponent.GetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) + name: GetPosition + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetPosition_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2i__ - name: ( - uid: OpenTK.Platform.WindowHandle name: WindowHandle href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' + - name: out - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 + - uid: OpenTK.Mathematics.Vector2i + name: Vector2i + href: OpenTK.Mathematics.Vector2i.html - name: ) spec.vb: - - uid: OpenTK.Platform.IWindowComponent.SetPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) - name: SetPosition - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetPosition_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_ + - uid: OpenTK.Platform.IWindowComponent.GetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) + name: GetPosition + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetPosition_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2i__ - name: ( - uid: OpenTK.Platform.WindowHandle name: WindowHandle href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 + - uid: OpenTK.Mathematics.Vector2i + name: Vector2i + href: OpenTK.Mathematics.Vector2i.html - name: ) +- uid: OpenTK.Mathematics.Vector2i + commentId: T:OpenTK.Mathematics.Vector2i + parent: OpenTK.Mathematics + href: OpenTK.Mathematics.Vector2i.html + name: Vector2i + nameWithType: Vector2i + fullName: OpenTK.Mathematics.Vector2i +- uid: OpenTK.Mathematics + commentId: N:OpenTK.Mathematics + href: OpenTK.html + name: OpenTK.Mathematics + nameWithType: OpenTK.Mathematics + fullName: OpenTK.Mathematics + spec.csharp: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Mathematics + name: Mathematics + href: OpenTK.Mathematics.html + spec.vb: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Mathematics + name: Mathematics + href: OpenTK.Mathematics.html +- uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetPosition* + commentId: Overload:OpenTK.Platform.Native.SDL.SDLWindowComponent.SetPosition + href: OpenTK.Platform.Native.SDL.SDLWindowComponent.html#OpenTK_Platform_Native_SDL_SDLWindowComponent_SetPosition_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2i_ + name: SetPosition + nameWithType: SDLWindowComponent.SetPosition + fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetPosition - uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetSize* commentId: Overload:OpenTK.Platform.Native.SDL.SDLWindowComponent.GetSize - href: OpenTK.Platform.Native.SDL.SDLWindowComponent.html#OpenTK_Platform_Native_SDL_SDLWindowComponent_GetSize_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.Native.SDL.SDLWindowComponent.html#OpenTK_Platform_Native_SDL_SDLWindowComponent_GetSize_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2i__ name: GetSize nameWithType: SDLWindowComponent.GetSize fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetSize -- uid: OpenTK.Platform.IWindowComponent.GetSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) - commentId: M:OpenTK.Platform.IWindowComponent.GetSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) +- uid: OpenTK.Platform.IWindowComponent.GetSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) + commentId: M:OpenTK.Platform.IWindowComponent.GetSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) parent: OpenTK.Platform.IWindowComponent - isExternal: true - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetSize_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ - name: GetSize(WindowHandle, out int, out int) - nameWithType: IWindowComponent.GetSize(WindowHandle, out int, out int) - fullName: OpenTK.Platform.IWindowComponent.GetSize(OpenTK.Platform.WindowHandle, out int, out int) - nameWithType.vb: IWindowComponent.GetSize(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Platform.IWindowComponent.GetSize(OpenTK.Platform.WindowHandle, Integer, Integer) - name.vb: GetSize(WindowHandle, Integer, Integer) + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetSize_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2i__ + name: GetSize(WindowHandle, out Vector2i) + nameWithType: IWindowComponent.GetSize(WindowHandle, out Vector2i) + fullName: OpenTK.Platform.IWindowComponent.GetSize(OpenTK.Platform.WindowHandle, out OpenTK.Mathematics.Vector2i) + nameWithType.vb: IWindowComponent.GetSize(WindowHandle, Vector2i) + fullName.vb: OpenTK.Platform.IWindowComponent.GetSize(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2i) + name.vb: GetSize(WindowHandle, Vector2i) spec.csharp: - - uid: OpenTK.Platform.IWindowComponent.GetSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + - uid: OpenTK.Platform.IWindowComponent.GetSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) name: GetSize - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetSize_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetSize_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2i__ - name: ( - uid: OpenTK.Platform.WindowHandle name: WindowHandle @@ -3513,98 +3825,64 @@ references: - name: " " - name: out - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - name: out - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 + - uid: OpenTK.Mathematics.Vector2i + name: Vector2i + href: OpenTK.Mathematics.Vector2i.html - name: ) spec.vb: - - uid: OpenTK.Platform.IWindowComponent.GetSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + - uid: OpenTK.Platform.IWindowComponent.GetSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) name: GetSize - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetSize_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetSize_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2i__ - name: ( - uid: OpenTK.Platform.WindowHandle name: WindowHandle href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 + - uid: OpenTK.Mathematics.Vector2i + name: Vector2i + href: OpenTK.Mathematics.Vector2i.html - name: ) - uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetSize* commentId: Overload:OpenTK.Platform.Native.SDL.SDLWindowComponent.SetSize - href: OpenTK.Platform.Native.SDL.SDLWindowComponent.html#OpenTK_Platform_Native_SDL_SDLWindowComponent_SetSize_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_ + href: OpenTK.Platform.Native.SDL.SDLWindowComponent.html#OpenTK_Platform_Native_SDL_SDLWindowComponent_SetSize_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2i_ name: SetSize nameWithType: SDLWindowComponent.SetSize fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetSize -- uid: OpenTK.Platform.IWindowComponent.SetSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) - commentId: M:OpenTK.Platform.IWindowComponent.SetSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) +- uid: OpenTK.Platform.IWindowComponent.SetSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) + commentId: M:OpenTK.Platform.IWindowComponent.SetSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) parent: OpenTK.Platform.IWindowComponent - isExternal: true - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetSize_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_ - name: SetSize(WindowHandle, int, int) - nameWithType: IWindowComponent.SetSize(WindowHandle, int, int) - fullName: OpenTK.Platform.IWindowComponent.SetSize(OpenTK.Platform.WindowHandle, int, int) - nameWithType.vb: IWindowComponent.SetSize(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Platform.IWindowComponent.SetSize(OpenTK.Platform.WindowHandle, Integer, Integer) - name.vb: SetSize(WindowHandle, Integer, Integer) + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetSize_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2i_ + name: SetSize(WindowHandle, Vector2i) + nameWithType: IWindowComponent.SetSize(WindowHandle, Vector2i) + fullName: OpenTK.Platform.IWindowComponent.SetSize(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2i) spec.csharp: - - uid: OpenTK.Platform.IWindowComponent.SetSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) + - uid: OpenTK.Platform.IWindowComponent.SetSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) name: SetSize - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetSize_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetSize_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2i_ - name: ( - uid: OpenTK.Platform.WindowHandle name: WindowHandle href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 + - uid: OpenTK.Mathematics.Vector2i + name: Vector2i + href: OpenTK.Mathematics.Vector2i.html - name: ) spec.vb: - - uid: OpenTK.Platform.IWindowComponent.SetSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) + - uid: OpenTK.Platform.IWindowComponent.SetSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) name: SetSize - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetSize_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetSize_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2i_ - name: ( - uid: OpenTK.Platform.WindowHandle name: WindowHandle href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 + - uid: OpenTK.Mathematics.Vector2i + name: Vector2i + href: OpenTK.Mathematics.Vector2i.html - name: ) - uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetBounds* commentId: Overload:OpenTK.Platform.Native.SDL.SDLWindowComponent.GetBounds @@ -3697,6 +3975,17 @@ references: isExternal: true href: https://learn.microsoft.com/dotnet/api/system.int32 - name: ) +- uid: System.Int32 + commentId: T:System.Int32 + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + name: int + nameWithType: int + fullName: int + nameWithType.vb: Integer + fullName.vb: Integer + name.vb: Integer - uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetBounds* commentId: Overload:OpenTK.Platform.Native.SDL.SDLWindowComponent.SetBounds href: OpenTK.Platform.Native.SDL.SDLWindowComponent.html#OpenTK_Platform_Native_SDL_SDLWindowComponent_SetBounds_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_System_Int32_System_Int32_ @@ -3782,25 +4071,24 @@ references: - name: ) - uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetClientPosition* commentId: Overload:OpenTK.Platform.Native.SDL.SDLWindowComponent.GetClientPosition - href: OpenTK.Platform.Native.SDL.SDLWindowComponent.html#OpenTK_Platform_Native_SDL_SDLWindowComponent_GetClientPosition_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.Native.SDL.SDLWindowComponent.html#OpenTK_Platform_Native_SDL_SDLWindowComponent_GetClientPosition_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2i__ name: GetClientPosition nameWithType: SDLWindowComponent.GetClientPosition fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetClientPosition -- uid: OpenTK.Platform.IWindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) - commentId: M:OpenTK.Platform.IWindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) +- uid: OpenTK.Platform.IWindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) + commentId: M:OpenTK.Platform.IWindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) parent: OpenTK.Platform.IWindowComponent - isExternal: true - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetClientPosition_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ - name: GetClientPosition(WindowHandle, out int, out int) - nameWithType: IWindowComponent.GetClientPosition(WindowHandle, out int, out int) - fullName: OpenTK.Platform.IWindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle, out int, out int) - nameWithType.vb: IWindowComponent.GetClientPosition(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Platform.IWindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle, Integer, Integer) - name.vb: GetClientPosition(WindowHandle, Integer, Integer) + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetClientPosition_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2i__ + name: GetClientPosition(WindowHandle, out Vector2i) + nameWithType: IWindowComponent.GetClientPosition(WindowHandle, out Vector2i) + fullName: OpenTK.Platform.IWindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle, out OpenTK.Mathematics.Vector2i) + nameWithType.vb: IWindowComponent.GetClientPosition(WindowHandle, Vector2i) + fullName.vb: OpenTK.Platform.IWindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2i) + name.vb: GetClientPosition(WindowHandle, Vector2i) spec.csharp: - - uid: OpenTK.Platform.IWindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + - uid: OpenTK.Platform.IWindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) name: GetClientPosition - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetClientPosition_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetClientPosition_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2i__ - name: ( - uid: OpenTK.Platform.WindowHandle name: WindowHandle @@ -3809,120 +4097,85 @@ references: - name: " " - name: out - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - name: out - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 + - uid: OpenTK.Mathematics.Vector2i + name: Vector2i + href: OpenTK.Mathematics.Vector2i.html - name: ) spec.vb: - - uid: OpenTK.Platform.IWindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + - uid: OpenTK.Platform.IWindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) name: GetClientPosition - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetClientPosition_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetClientPosition_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2i__ - name: ( - uid: OpenTK.Platform.WindowHandle name: WindowHandle href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 + - uid: OpenTK.Mathematics.Vector2i + name: Vector2i + href: OpenTK.Mathematics.Vector2i.html - name: ) - uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetClientPosition* commentId: Overload:OpenTK.Platform.Native.SDL.SDLWindowComponent.SetClientPosition - href: OpenTK.Platform.Native.SDL.SDLWindowComponent.html#OpenTK_Platform_Native_SDL_SDLWindowComponent_SetClientPosition_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_ + href: OpenTK.Platform.Native.SDL.SDLWindowComponent.html#OpenTK_Platform_Native_SDL_SDLWindowComponent_SetClientPosition_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2i_ name: SetClientPosition nameWithType: SDLWindowComponent.SetClientPosition fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetClientPosition -- uid: OpenTK.Platform.IWindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) - commentId: M:OpenTK.Platform.IWindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) +- uid: OpenTK.Platform.IWindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) + commentId: M:OpenTK.Platform.IWindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) parent: OpenTK.Platform.IWindowComponent - isExternal: true - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetClientPosition_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_ - name: SetClientPosition(WindowHandle, int, int) - nameWithType: IWindowComponent.SetClientPosition(WindowHandle, int, int) - fullName: OpenTK.Platform.IWindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle, int, int) - nameWithType.vb: IWindowComponent.SetClientPosition(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Platform.IWindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle, Integer, Integer) - name.vb: SetClientPosition(WindowHandle, Integer, Integer) + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetClientPosition_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2i_ + name: SetClientPosition(WindowHandle, Vector2i) + nameWithType: IWindowComponent.SetClientPosition(WindowHandle, Vector2i) + fullName: OpenTK.Platform.IWindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2i) spec.csharp: - - uid: OpenTK.Platform.IWindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) + - uid: OpenTK.Platform.IWindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) name: SetClientPosition - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetClientPosition_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetClientPosition_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2i_ - name: ( - uid: OpenTK.Platform.WindowHandle name: WindowHandle href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 + - uid: OpenTK.Mathematics.Vector2i + name: Vector2i + href: OpenTK.Mathematics.Vector2i.html - name: ) spec.vb: - - uid: OpenTK.Platform.IWindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) + - uid: OpenTK.Platform.IWindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) name: SetClientPosition - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetClientPosition_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetClientPosition_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2i_ - name: ( - uid: OpenTK.Platform.WindowHandle name: WindowHandle href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 + - uid: OpenTK.Mathematics.Vector2i + name: Vector2i + href: OpenTK.Mathematics.Vector2i.html - name: ) - uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetClientSize* commentId: Overload:OpenTK.Platform.Native.SDL.SDLWindowComponent.GetClientSize - href: OpenTK.Platform.Native.SDL.SDLWindowComponent.html#OpenTK_Platform_Native_SDL_SDLWindowComponent_GetClientSize_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.Native.SDL.SDLWindowComponent.html#OpenTK_Platform_Native_SDL_SDLWindowComponent_GetClientSize_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2i__ name: GetClientSize nameWithType: SDLWindowComponent.GetClientSize fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetClientSize -- uid: OpenTK.Platform.IWindowComponent.GetClientSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) - commentId: M:OpenTK.Platform.IWindowComponent.GetClientSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) +- uid: OpenTK.Platform.IWindowComponent.GetClientSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) + commentId: M:OpenTK.Platform.IWindowComponent.GetClientSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) parent: OpenTK.Platform.IWindowComponent - isExternal: true - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetClientSize_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ - name: GetClientSize(WindowHandle, out int, out int) - nameWithType: IWindowComponent.GetClientSize(WindowHandle, out int, out int) - fullName: OpenTK.Platform.IWindowComponent.GetClientSize(OpenTK.Platform.WindowHandle, out int, out int) - nameWithType.vb: IWindowComponent.GetClientSize(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Platform.IWindowComponent.GetClientSize(OpenTK.Platform.WindowHandle, Integer, Integer) - name.vb: GetClientSize(WindowHandle, Integer, Integer) + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetClientSize_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2i__ + name: GetClientSize(WindowHandle, out Vector2i) + nameWithType: IWindowComponent.GetClientSize(WindowHandle, out Vector2i) + fullName: OpenTK.Platform.IWindowComponent.GetClientSize(OpenTK.Platform.WindowHandle, out OpenTK.Mathematics.Vector2i) + nameWithType.vb: IWindowComponent.GetClientSize(WindowHandle, Vector2i) + fullName.vb: OpenTK.Platform.IWindowComponent.GetClientSize(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2i) + name.vb: GetClientSize(WindowHandle, Vector2i) spec.csharp: - - uid: OpenTK.Platform.IWindowComponent.GetClientSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + - uid: OpenTK.Platform.IWindowComponent.GetClientSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) name: GetClientSize - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetClientSize_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetClientSize_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2i__ - name: ( - uid: OpenTK.Platform.WindowHandle name: WindowHandle @@ -3931,98 +4184,64 @@ references: - name: " " - name: out - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - name: out - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 + - uid: OpenTK.Mathematics.Vector2i + name: Vector2i + href: OpenTK.Mathematics.Vector2i.html - name: ) spec.vb: - - uid: OpenTK.Platform.IWindowComponent.GetClientSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + - uid: OpenTK.Platform.IWindowComponent.GetClientSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) name: GetClientSize - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetClientSize_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetClientSize_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2i__ - name: ( - uid: OpenTK.Platform.WindowHandle name: WindowHandle href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 + - uid: OpenTK.Mathematics.Vector2i + name: Vector2i + href: OpenTK.Mathematics.Vector2i.html - name: ) - uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetClientSize* commentId: Overload:OpenTK.Platform.Native.SDL.SDLWindowComponent.SetClientSize - href: OpenTK.Platform.Native.SDL.SDLWindowComponent.html#OpenTK_Platform_Native_SDL_SDLWindowComponent_SetClientSize_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_ + href: OpenTK.Platform.Native.SDL.SDLWindowComponent.html#OpenTK_Platform_Native_SDL_SDLWindowComponent_SetClientSize_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2i_ name: SetClientSize nameWithType: SDLWindowComponent.SetClientSize fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetClientSize -- uid: OpenTK.Platform.IWindowComponent.SetClientSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) - commentId: M:OpenTK.Platform.IWindowComponent.SetClientSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) +- uid: OpenTK.Platform.IWindowComponent.SetClientSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) + commentId: M:OpenTK.Platform.IWindowComponent.SetClientSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) parent: OpenTK.Platform.IWindowComponent - isExternal: true - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetClientSize_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_ - name: SetClientSize(WindowHandle, int, int) - nameWithType: IWindowComponent.SetClientSize(WindowHandle, int, int) - fullName: OpenTK.Platform.IWindowComponent.SetClientSize(OpenTK.Platform.WindowHandle, int, int) - nameWithType.vb: IWindowComponent.SetClientSize(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Platform.IWindowComponent.SetClientSize(OpenTK.Platform.WindowHandle, Integer, Integer) - name.vb: SetClientSize(WindowHandle, Integer, Integer) + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetClientSize_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2i_ + name: SetClientSize(WindowHandle, Vector2i) + nameWithType: IWindowComponent.SetClientSize(WindowHandle, Vector2i) + fullName: OpenTK.Platform.IWindowComponent.SetClientSize(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2i) spec.csharp: - - uid: OpenTK.Platform.IWindowComponent.SetClientSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) + - uid: OpenTK.Platform.IWindowComponent.SetClientSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) name: SetClientSize - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetClientSize_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetClientSize_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2i_ - name: ( - uid: OpenTK.Platform.WindowHandle name: WindowHandle href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 + - uid: OpenTK.Mathematics.Vector2i + name: Vector2i + href: OpenTK.Mathematics.Vector2i.html - name: ) spec.vb: - - uid: OpenTK.Platform.IWindowComponent.SetClientSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) + - uid: OpenTK.Platform.IWindowComponent.SetClientSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) name: SetClientSize - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetClientSize_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetClientSize_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2i_ - name: ( - uid: OpenTK.Platform.WindowHandle name: WindowHandle href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 + - uid: OpenTK.Mathematics.Vector2i + name: Vector2i + href: OpenTK.Mathematics.Vector2i.html - name: ) - uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetClientBounds* commentId: Overload:OpenTK.Platform.Native.SDL.SDLWindowComponent.GetClientBounds @@ -4200,25 +4419,24 @@ references: - name: ) - uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetFramebufferSize* commentId: Overload:OpenTK.Platform.Native.SDL.SDLWindowComponent.GetFramebufferSize - href: OpenTK.Platform.Native.SDL.SDLWindowComponent.html#OpenTK_Platform_Native_SDL_SDLWindowComponent_GetFramebufferSize_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.Native.SDL.SDLWindowComponent.html#OpenTK_Platform_Native_SDL_SDLWindowComponent_GetFramebufferSize_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2i__ name: GetFramebufferSize nameWithType: SDLWindowComponent.GetFramebufferSize fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetFramebufferSize -- uid: OpenTK.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) - commentId: M:OpenTK.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) +- uid: OpenTK.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) + commentId: M:OpenTK.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) parent: OpenTK.Platform.IWindowComponent - isExternal: true - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetFramebufferSize_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ - name: GetFramebufferSize(WindowHandle, out int, out int) - nameWithType: IWindowComponent.GetFramebufferSize(WindowHandle, out int, out int) - fullName: OpenTK.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle, out int, out int) - nameWithType.vb: IWindowComponent.GetFramebufferSize(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle, Integer, Integer) - name.vb: GetFramebufferSize(WindowHandle, Integer, Integer) + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetFramebufferSize_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2i__ + name: GetFramebufferSize(WindowHandle, out Vector2i) + nameWithType: IWindowComponent.GetFramebufferSize(WindowHandle, out Vector2i) + fullName: OpenTK.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle, out OpenTK.Mathematics.Vector2i) + nameWithType.vb: IWindowComponent.GetFramebufferSize(WindowHandle, Vector2i) + fullName.vb: OpenTK.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2i) + name.vb: GetFramebufferSize(WindowHandle, Vector2i) spec.csharp: - - uid: OpenTK.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + - uid: OpenTK.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) name: GetFramebufferSize - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetFramebufferSize_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetFramebufferSize_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2i__ - name: ( - uid: OpenTK.Platform.WindowHandle name: WindowHandle @@ -4227,39 +4445,23 @@ references: - name: " " - name: out - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - name: out - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 + - uid: OpenTK.Mathematics.Vector2i + name: Vector2i + href: OpenTK.Mathematics.Vector2i.html - name: ) spec.vb: - - uid: OpenTK.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + - uid: OpenTK.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) name: GetFramebufferSize - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetFramebufferSize_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetFramebufferSize_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2i__ - name: ( - uid: OpenTK.Platform.WindowHandle name: WindowHandle href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 + - uid: OpenTK.Mathematics.Vector2i + name: Vector2i + href: OpenTK.Mathematics.Vector2i.html - name: ) - uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetMaxClientSize* commentId: Overload:OpenTK.Platform.Native.SDL.SDLWindowComponent.GetMaxClientSize @@ -4572,6 +4774,12 @@ references: href: https://learn.microsoft.com/dotnet/api/system.int32 - name: '?' - name: ) +- uid: OpenTK.Platform.PalNotImplementedException + commentId: T:OpenTK.Platform.PalNotImplementedException + href: OpenTK.Platform.PalNotImplementedException.html + name: PalNotImplementedException + nameWithType: PalNotImplementedException + fullName: OpenTK.Platform.PalNotImplementedException - uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetDisplay* commentId: Overload:OpenTK.Platform.Native.SDL.SDLWindowComponent.GetDisplay href: OpenTK.Platform.Native.SDL.SDLWindowComponent.html#OpenTK_Platform_Native_SDL_SDLWindowComponent_GetDisplay_OpenTK_Platform_WindowHandle_ @@ -4623,18 +4831,6 @@ references: name: WindowMode nameWithType: WindowMode fullName: OpenTK.Platform.WindowMode -- uid: OpenTK.Platform.WindowMode.WindowedFullscreen - commentId: F:OpenTK.Platform.WindowMode.WindowedFullscreen - href: OpenTK.Platform.WindowMode.html#OpenTK_Platform_WindowMode_WindowedFullscreen - name: WindowedFullscreen - nameWithType: WindowMode.WindowedFullscreen - fullName: OpenTK.Platform.WindowMode.WindowedFullscreen -- uid: OpenTK.Platform.WindowMode.ExclusiveFullscreen - commentId: F:OpenTK.Platform.WindowMode.ExclusiveFullscreen - href: OpenTK.Platform.WindowMode.html#OpenTK_Platform_WindowMode_ExclusiveFullscreen - name: ExclusiveFullscreen - nameWithType: WindowMode.ExclusiveFullscreen - fullName: OpenTK.Platform.WindowMode.ExclusiveFullscreen - uid: OpenTK.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle) commentId: M:OpenTK.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle) parent: OpenTK.Platform.IWindowComponent @@ -4715,16 +4911,28 @@ references: name: VideoMode href: OpenTK.Platform.VideoMode.html - name: ) -- uid: System.ArgumentOutOfRangeException - commentId: T:System.ArgumentOutOfRangeException - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.argumentoutofrangeexception - name: ArgumentOutOfRangeException - nameWithType: ArgumentOutOfRangeException - fullName: System.ArgumentOutOfRangeException -- uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetMode* - commentId: Overload:OpenTK.Platform.Native.SDL.SDLWindowComponent.SetMode - href: OpenTK.Platform.Native.SDL.SDLWindowComponent.html#OpenTK_Platform_Native_SDL_SDLWindowComponent_SetMode_OpenTK_Platform_WindowHandle_OpenTK_Platform_WindowMode_ +- uid: OpenTK.Platform.WindowMode.WindowedFullscreen + commentId: F:OpenTK.Platform.WindowMode.WindowedFullscreen + href: OpenTK.Platform.WindowMode.html#OpenTK_Platform_WindowMode_WindowedFullscreen + name: WindowedFullscreen + nameWithType: WindowMode.WindowedFullscreen + fullName: OpenTK.Platform.WindowMode.WindowedFullscreen +- uid: OpenTK.Platform.WindowMode.ExclusiveFullscreen + commentId: F:OpenTK.Platform.WindowMode.ExclusiveFullscreen + href: OpenTK.Platform.WindowMode.html#OpenTK_Platform_WindowMode_ExclusiveFullscreen + name: ExclusiveFullscreen + nameWithType: WindowMode.ExclusiveFullscreen + fullName: OpenTK.Platform.WindowMode.ExclusiveFullscreen +- uid: System.ComponentModel.InvalidEnumArgumentException + commentId: T:System.ComponentModel.InvalidEnumArgumentException + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.componentmodel.invalidenumargumentexception + name: InvalidEnumArgumentException + nameWithType: InvalidEnumArgumentException + fullName: System.ComponentModel.InvalidEnumArgumentException +- uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetMode* + commentId: Overload:OpenTK.Platform.Native.SDL.SDLWindowComponent.SetMode + href: OpenTK.Platform.Native.SDL.SDLWindowComponent.html#OpenTK_Platform_Native_SDL_SDLWindowComponent_SetMode_OpenTK_Platform_WindowHandle_OpenTK_Platform_WindowMode_ name: SetMode nameWithType: SDLWindowComponent.SetMode fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetMode @@ -4854,6 +5062,41 @@ references: name: DisplayHandle href: OpenTK.Platform.DisplayHandle.html - name: ) +- uid: OpenTK.Platform.IWindowComponent.SetBorderStyle(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowBorderStyle) + commentId: M:OpenTK.Platform.IWindowComponent.SetBorderStyle(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowBorderStyle) + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetBorderStyle_OpenTK_Platform_WindowHandle_OpenTK_Platform_WindowBorderStyle_ + name: SetBorderStyle(WindowHandle, WindowBorderStyle) + nameWithType: IWindowComponent.SetBorderStyle(WindowHandle, WindowBorderStyle) + fullName: OpenTK.Platform.IWindowComponent.SetBorderStyle(OpenTK.Platform.WindowHandle, OpenTK.Platform.WindowBorderStyle) + spec.csharp: + - uid: OpenTK.Platform.IWindowComponent.SetBorderStyle(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowBorderStyle) + name: SetBorderStyle + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetBorderStyle_OpenTK_Platform_WindowHandle_OpenTK_Platform_WindowBorderStyle_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: OpenTK.Platform.WindowBorderStyle + name: WindowBorderStyle + href: OpenTK.Platform.WindowBorderStyle.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IWindowComponent.SetBorderStyle(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowBorderStyle) + name: SetBorderStyle + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetBorderStyle_OpenTK_Platform_WindowHandle_OpenTK_Platform_WindowBorderStyle_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: OpenTK.Platform.WindowBorderStyle + name: WindowBorderStyle + href: OpenTK.Platform.WindowBorderStyle.html + - name: ) - uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetBorderStyle* commentId: Overload:OpenTK.Platform.Native.SDL.SDLWindowComponent.GetBorderStyle href: OpenTK.Platform.Native.SDL.SDLWindowComponent.html#OpenTK_Platform_Native_SDL_SDLWindowComponent_GetBorderStyle_OpenTK_Platform_WindowHandle_ @@ -4898,40 +5141,216 @@ references: name: SetBorderStyle nameWithType: SDLWindowComponent.SetBorderStyle fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetBorderStyle -- uid: OpenTK.Platform.IWindowComponent.SetBorderStyle(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowBorderStyle) - commentId: M:OpenTK.Platform.IWindowComponent.SetBorderStyle(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowBorderStyle) +- uid: OpenTK.Platform.IWindowComponent.SetTransparencyMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowTransparencyMode,System.Single) + commentId: M:OpenTK.Platform.IWindowComponent.SetTransparencyMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowTransparencyMode,System.Single) parent: OpenTK.Platform.IWindowComponent - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetBorderStyle_OpenTK_Platform_WindowHandle_OpenTK_Platform_WindowBorderStyle_ - name: SetBorderStyle(WindowHandle, WindowBorderStyle) - nameWithType: IWindowComponent.SetBorderStyle(WindowHandle, WindowBorderStyle) - fullName: OpenTK.Platform.IWindowComponent.SetBorderStyle(OpenTK.Platform.WindowHandle, OpenTK.Platform.WindowBorderStyle) + isExternal: true + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetTransparencyMode_OpenTK_Platform_WindowHandle_OpenTK_Platform_WindowTransparencyMode_System_Single_ + name: SetTransparencyMode(WindowHandle, WindowTransparencyMode, float) + nameWithType: IWindowComponent.SetTransparencyMode(WindowHandle, WindowTransparencyMode, float) + fullName: OpenTK.Platform.IWindowComponent.SetTransparencyMode(OpenTK.Platform.WindowHandle, OpenTK.Platform.WindowTransparencyMode, float) + nameWithType.vb: IWindowComponent.SetTransparencyMode(WindowHandle, WindowTransparencyMode, Single) + fullName.vb: OpenTK.Platform.IWindowComponent.SetTransparencyMode(OpenTK.Platform.WindowHandle, OpenTK.Platform.WindowTransparencyMode, Single) + name.vb: SetTransparencyMode(WindowHandle, WindowTransparencyMode, Single) spec.csharp: - - uid: OpenTK.Platform.IWindowComponent.SetBorderStyle(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowBorderStyle) - name: SetBorderStyle - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetBorderStyle_OpenTK_Platform_WindowHandle_OpenTK_Platform_WindowBorderStyle_ + - uid: OpenTK.Platform.IWindowComponent.SetTransparencyMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowTransparencyMode,System.Single) + name: SetTransparencyMode + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetTransparencyMode_OpenTK_Platform_WindowHandle_OpenTK_Platform_WindowTransparencyMode_System_Single_ - name: ( - uid: OpenTK.Platform.WindowHandle name: WindowHandle href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - - uid: OpenTK.Platform.WindowBorderStyle - name: WindowBorderStyle - href: OpenTK.Platform.WindowBorderStyle.html + - uid: OpenTK.Platform.WindowTransparencyMode + name: WindowTransparencyMode + href: OpenTK.Platform.WindowTransparencyMode.html + - name: ',' + - name: " " + - uid: System.Single + name: float + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.single - name: ) spec.vb: - - uid: OpenTK.Platform.IWindowComponent.SetBorderStyle(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowBorderStyle) - name: SetBorderStyle - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetBorderStyle_OpenTK_Platform_WindowHandle_OpenTK_Platform_WindowBorderStyle_ + - uid: OpenTK.Platform.IWindowComponent.SetTransparencyMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowTransparencyMode,System.Single) + name: SetTransparencyMode + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetTransparencyMode_OpenTK_Platform_WindowHandle_OpenTK_Platform_WindowTransparencyMode_System_Single_ - name: ( - uid: OpenTK.Platform.WindowHandle name: WindowHandle href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - - uid: OpenTK.Platform.WindowBorderStyle - name: WindowBorderStyle - href: OpenTK.Platform.WindowBorderStyle.html + - uid: OpenTK.Platform.WindowTransparencyMode + name: WindowTransparencyMode + href: OpenTK.Platform.WindowTransparencyMode.html + - name: ',' + - name: " " + - uid: System.Single + name: Single + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.single + - name: ) +- uid: OpenTK.Platform.OpenGLGraphicsApiHints.SupportTransparentFramebufferX11 + commentId: P:OpenTK.Platform.OpenGLGraphicsApiHints.SupportTransparentFramebufferX11 + href: OpenTK.Platform.OpenGLGraphicsApiHints.html#OpenTK_Platform_OpenGLGraphicsApiHints_SupportTransparentFramebufferX11 + name: SupportTransparentFramebufferX11 + nameWithType: OpenGLGraphicsApiHints.SupportTransparentFramebufferX11 + fullName: OpenTK.Platform.OpenGLGraphicsApiHints.SupportTransparentFramebufferX11 +- uid: OpenTK.Platform.ContextValues.SupportsFramebufferTransparency + commentId: F:OpenTK.Platform.ContextValues.SupportsFramebufferTransparency + href: OpenTK.Platform.ContextValues.html#OpenTK_Platform_ContextValues_SupportsFramebufferTransparency + name: SupportsFramebufferTransparency + nameWithType: ContextValues.SupportsFramebufferTransparency + fullName: OpenTK.Platform.ContextValues.SupportsFramebufferTransparency +- uid: OpenTK.Platform.WindowTransparencyMode + commentId: T:OpenTK.Platform.WindowTransparencyMode + parent: OpenTK.Platform + href: OpenTK.Platform.WindowTransparencyMode.html + name: WindowTransparencyMode + nameWithType: WindowTransparencyMode + fullName: OpenTK.Platform.WindowTransparencyMode +- uid: OpenTK.Platform.WindowTransparencyMode.TransparentFramebuffer + commentId: F:OpenTK.Platform.WindowTransparencyMode.TransparentFramebuffer + href: OpenTK.Platform.WindowTransparencyMode.html#OpenTK_Platform_WindowTransparencyMode_TransparentFramebuffer + name: TransparentFramebuffer + nameWithType: WindowTransparencyMode.TransparentFramebuffer + fullName: OpenTK.Platform.WindowTransparencyMode.TransparentFramebuffer +- uid: OpenTK.Platform.ContextValues + commentId: T:OpenTK.Platform.ContextValues + parent: OpenTK.Platform + href: OpenTK.Platform.ContextValues.html + name: ContextValues + nameWithType: ContextValues + fullName: OpenTK.Platform.ContextValues +- uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.SupportsFramebufferTransparency* + commentId: Overload:OpenTK.Platform.Native.SDL.SDLWindowComponent.SupportsFramebufferTransparency + href: OpenTK.Platform.Native.SDL.SDLWindowComponent.html#OpenTK_Platform_Native_SDL_SDLWindowComponent_SupportsFramebufferTransparency_OpenTK_Platform_WindowHandle_ + name: SupportsFramebufferTransparency + nameWithType: SDLWindowComponent.SupportsFramebufferTransparency + fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.SupportsFramebufferTransparency +- uid: OpenTK.Platform.IWindowComponent.SupportsFramebufferTransparency(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.SupportsFramebufferTransparency(OpenTK.Platform.WindowHandle) + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SupportsFramebufferTransparency_OpenTK_Platform_WindowHandle_ + name: SupportsFramebufferTransparency(WindowHandle) + nameWithType: IWindowComponent.SupportsFramebufferTransparency(WindowHandle) + fullName: OpenTK.Platform.IWindowComponent.SupportsFramebufferTransparency(OpenTK.Platform.WindowHandle) + spec.csharp: + - uid: OpenTK.Platform.IWindowComponent.SupportsFramebufferTransparency(OpenTK.Platform.WindowHandle) + name: SupportsFramebufferTransparency + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SupportsFramebufferTransparency_OpenTK_Platform_WindowHandle_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IWindowComponent.SupportsFramebufferTransparency(OpenTK.Platform.WindowHandle) + name: SupportsFramebufferTransparency + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SupportsFramebufferTransparency_OpenTK_Platform_WindowHandle_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ) +- uid: OpenTK.Platform.IWindowComponent.GetTransparencyMode(OpenTK.Platform.WindowHandle,System.Single@) + commentId: M:OpenTK.Platform.IWindowComponent.GetTransparencyMode(OpenTK.Platform.WindowHandle,System.Single@) + parent: OpenTK.Platform.IWindowComponent + isExternal: true + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetTransparencyMode_OpenTK_Platform_WindowHandle_System_Single__ + name: GetTransparencyMode(WindowHandle, out float) + nameWithType: IWindowComponent.GetTransparencyMode(WindowHandle, out float) + fullName: OpenTK.Platform.IWindowComponent.GetTransparencyMode(OpenTK.Platform.WindowHandle, out float) + nameWithType.vb: IWindowComponent.GetTransparencyMode(WindowHandle, Single) + fullName.vb: OpenTK.Platform.IWindowComponent.GetTransparencyMode(OpenTK.Platform.WindowHandle, Single) + name.vb: GetTransparencyMode(WindowHandle, Single) + spec.csharp: + - uid: OpenTK.Platform.IWindowComponent.GetTransparencyMode(OpenTK.Platform.WindowHandle,System.Single@) + name: GetTransparencyMode + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetTransparencyMode_OpenTK_Platform_WindowHandle_System_Single__ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - name: out + - name: " " + - uid: System.Single + name: float + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.single + - name: ) + spec.vb: + - uid: OpenTK.Platform.IWindowComponent.GetTransparencyMode(OpenTK.Platform.WindowHandle,System.Single@) + name: GetTransparencyMode + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetTransparencyMode_OpenTK_Platform_WindowHandle_System_Single__ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: System.Single + name: Single + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.single + - name: ) +- uid: OpenTK.Platform.WindowTransparencyMode.TransparentWindow + commentId: F:OpenTK.Platform.WindowTransparencyMode.TransparentWindow + href: OpenTK.Platform.WindowTransparencyMode.html#OpenTK_Platform_WindowTransparencyMode_TransparentWindow + name: TransparentWindow + nameWithType: WindowTransparencyMode.TransparentWindow + fullName: OpenTK.Platform.WindowTransparencyMode.TransparentWindow +- uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetTransparencyMode* + commentId: Overload:OpenTK.Platform.Native.SDL.SDLWindowComponent.SetTransparencyMode + href: OpenTK.Platform.Native.SDL.SDLWindowComponent.html#OpenTK_Platform_Native_SDL_SDLWindowComponent_SetTransparencyMode_OpenTK_Platform_WindowHandle_OpenTK_Platform_WindowTransparencyMode_System_Single_ + name: SetTransparencyMode + nameWithType: SDLWindowComponent.SetTransparencyMode + fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetTransparencyMode +- uid: System.Single + commentId: T:System.Single + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.single + name: float + nameWithType: float + fullName: float + nameWithType.vb: Single + fullName.vb: Single + name.vb: Single +- uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetTransparencyMode* + commentId: Overload:OpenTK.Platform.Native.SDL.SDLWindowComponent.GetTransparencyMode + href: OpenTK.Platform.Native.SDL.SDLWindowComponent.html#OpenTK_Platform_Native_SDL_SDLWindowComponent_GetTransparencyMode_OpenTK_Platform_WindowHandle_System_Single__ + name: GetTransparencyMode + nameWithType: SDLWindowComponent.GetTransparencyMode + fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.GetTransparencyMode +- uid: OpenTK.Platform.IWindowComponent.IsAlwaysOnTop(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.IsAlwaysOnTop(OpenTK.Platform.WindowHandle) + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_IsAlwaysOnTop_OpenTK_Platform_WindowHandle_ + name: IsAlwaysOnTop(WindowHandle) + nameWithType: IWindowComponent.IsAlwaysOnTop(WindowHandle) + fullName: OpenTK.Platform.IWindowComponent.IsAlwaysOnTop(OpenTK.Platform.WindowHandle) + spec.csharp: + - uid: OpenTK.Platform.IWindowComponent.IsAlwaysOnTop(OpenTK.Platform.WindowHandle) + name: IsAlwaysOnTop + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_IsAlwaysOnTop_OpenTK_Platform_WindowHandle_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IWindowComponent.IsAlwaysOnTop(OpenTK.Platform.WindowHandle) + name: IsAlwaysOnTop + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_IsAlwaysOnTop_OpenTK_Platform_WindowHandle_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html - name: ) - uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetAlwaysOnTop* commentId: Overload:OpenTK.Platform.Native.SDL.SDLWindowComponent.SetAlwaysOnTop @@ -4986,31 +5405,20 @@ references: name: IsAlwaysOnTop nameWithType: SDLWindowComponent.IsAlwaysOnTop fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.IsAlwaysOnTop -- uid: OpenTK.Platform.IWindowComponent.IsAlwaysOnTop(OpenTK.Platform.WindowHandle) - commentId: M:OpenTK.Platform.IWindowComponent.IsAlwaysOnTop(OpenTK.Platform.WindowHandle) - parent: OpenTK.Platform.IWindowComponent - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_IsAlwaysOnTop_OpenTK_Platform_WindowHandle_ - name: IsAlwaysOnTop(WindowHandle) - nameWithType: IWindowComponent.IsAlwaysOnTop(WindowHandle) - fullName: OpenTK.Platform.IWindowComponent.IsAlwaysOnTop(OpenTK.Platform.WindowHandle) - spec.csharp: - - uid: OpenTK.Platform.IWindowComponent.IsAlwaysOnTop(OpenTK.Platform.WindowHandle) - name: IsAlwaysOnTop - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_IsAlwaysOnTop_OpenTK_Platform_WindowHandle_ - - name: ( - - uid: OpenTK.Platform.WindowHandle - name: WindowHandle - href: OpenTK.Platform.WindowHandle.html - - name: ) - spec.vb: - - uid: OpenTK.Platform.IWindowComponent.IsAlwaysOnTop(OpenTK.Platform.WindowHandle) - name: IsAlwaysOnTop - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_IsAlwaysOnTop_OpenTK_Platform_WindowHandle_ - - name: ( - - uid: OpenTK.Platform.WindowHandle - name: WindowHandle - href: OpenTK.Platform.WindowHandle.html - - name: ) +- uid: OpenTK.Platform.HitTest + commentId: T:OpenTK.Platform.HitTest + parent: OpenTK.Platform + href: OpenTK.Platform.HitTest.html + name: HitTest + nameWithType: HitTest + fullName: OpenTK.Platform.HitTest +- uid: OpenTK.Platform.HitType + commentId: T:OpenTK.Platform.HitType + parent: OpenTK.Platform + href: OpenTK.Platform.HitType.html + name: HitType + nameWithType: HitType + fullName: OpenTK.Platform.HitType - uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetHitTestCallback* commentId: Overload:OpenTK.Platform.Native.SDL.SDLWindowComponent.SetHitTestCallback href: OpenTK.Platform.Native.SDL.SDLWindowComponent.html#OpenTK_Platform_Native_SDL_SDLWindowComponent_SetHitTestCallback_OpenTK_Platform_WindowHandle_OpenTK_Platform_HitTest_ @@ -5052,13 +5460,6 @@ references: name: HitTest href: OpenTK.Platform.HitTest.html - name: ) -- uid: OpenTK.Platform.HitTest - commentId: T:OpenTK.Platform.HitTest - parent: OpenTK.Platform - href: OpenTK.Platform.HitTest.html - name: HitTest - nameWithType: HitTest - fullName: OpenTK.Platform.HitTest - uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetCursor* commentId: Overload:OpenTK.Platform.Native.SDL.SDLWindowComponent.SetCursor href: OpenTK.Platform.Native.SDL.SDLWindowComponent.html#OpenTK_Platform_Native_SDL_SDLWindowComponent_SetCursor_OpenTK_Platform_WindowHandle_OpenTK_Platform_CursorHandle_ @@ -5116,6 +5517,56 @@ references: name: SetCursorCaptureMode nameWithType: SDLWindowComponent.SetCursorCaptureMode fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.SetCursorCaptureMode +- uid: OpenTK.Platform.IWindowComponent.FocusWindow(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.FocusWindow(OpenTK.Platform.WindowHandle) + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_FocusWindow_OpenTK_Platform_WindowHandle_ + name: FocusWindow(WindowHandle) + nameWithType: IWindowComponent.FocusWindow(WindowHandle) + fullName: OpenTK.Platform.IWindowComponent.FocusWindow(OpenTK.Platform.WindowHandle) + spec.csharp: + - uid: OpenTK.Platform.IWindowComponent.FocusWindow(OpenTK.Platform.WindowHandle) + name: FocusWindow + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_FocusWindow_OpenTK_Platform_WindowHandle_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IWindowComponent.FocusWindow(OpenTK.Platform.WindowHandle) + name: FocusWindow + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_FocusWindow_OpenTK_Platform_WindowHandle_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ) +- uid: OpenTK.Platform.IWindowComponent.RequestAttention(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.RequestAttention(OpenTK.Platform.WindowHandle) + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_RequestAttention_OpenTK_Platform_WindowHandle_ + name: RequestAttention(WindowHandle) + nameWithType: IWindowComponent.RequestAttention(WindowHandle) + fullName: OpenTK.Platform.IWindowComponent.RequestAttention(OpenTK.Platform.WindowHandle) + spec.csharp: + - uid: OpenTK.Platform.IWindowComponent.RequestAttention(OpenTK.Platform.WindowHandle) + name: RequestAttention + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_RequestAttention_OpenTK_Platform_WindowHandle_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IWindowComponent.RequestAttention(OpenTK.Platform.WindowHandle) + name: RequestAttention + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_RequestAttention_OpenTK_Platform_WindowHandle_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ) - uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.IsFocused* commentId: Overload:OpenTK.Platform.Native.SDL.SDLWindowComponent.IsFocused href: OpenTK.Platform.Native.SDL.SDLWindowComponent.html#OpenTK_Platform_Native_SDL_SDLWindowComponent_IsFocused_OpenTK_Platform_WindowHandle_ @@ -5153,236 +5604,243 @@ references: name: FocusWindow nameWithType: SDLWindowComponent.FocusWindow fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.FocusWindow -- uid: OpenTK.Platform.IWindowComponent.FocusWindow(OpenTK.Platform.WindowHandle) - commentId: M:OpenTK.Platform.IWindowComponent.FocusWindow(OpenTK.Platform.WindowHandle) +- uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.RequestAttention* + commentId: Overload:OpenTK.Platform.Native.SDL.SDLWindowComponent.RequestAttention + href: OpenTK.Platform.Native.SDL.SDLWindowComponent.html#OpenTK_Platform_Native_SDL_SDLWindowComponent_RequestAttention_OpenTK_Platform_WindowHandle_ + name: RequestAttention + nameWithType: SDLWindowComponent.RequestAttention + fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.RequestAttention +- uid: OpenTK.Platform.IWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + commentId: M:OpenTK.Platform.IWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) parent: OpenTK.Platform.IWindowComponent - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_FocusWindow_OpenTK_Platform_WindowHandle_ - name: FocusWindow(WindowHandle) - nameWithType: IWindowComponent.FocusWindow(WindowHandle) - fullName: OpenTK.Platform.IWindowComponent.FocusWindow(OpenTK.Platform.WindowHandle) + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_ClientToScreen_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2_OpenTK_Mathematics_Vector2__ + name: ClientToScreen(WindowHandle, Vector2, out Vector2) + nameWithType: IWindowComponent.ClientToScreen(WindowHandle, Vector2, out Vector2) + fullName: OpenTK.Platform.IWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2, out OpenTK.Mathematics.Vector2) + nameWithType.vb: IWindowComponent.ClientToScreen(WindowHandle, Vector2, Vector2) + fullName.vb: OpenTK.Platform.IWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2, OpenTK.Mathematics.Vector2) + name.vb: ClientToScreen(WindowHandle, Vector2, Vector2) spec.csharp: - - uid: OpenTK.Platform.IWindowComponent.FocusWindow(OpenTK.Platform.WindowHandle) - name: FocusWindow - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_FocusWindow_OpenTK_Platform_WindowHandle_ + - uid: OpenTK.Platform.IWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + name: ClientToScreen + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_ClientToScreen_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2_OpenTK_Mathematics_Vector2__ - name: ( - uid: OpenTK.Platform.WindowHandle name: WindowHandle href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: OpenTK.Mathematics.Vector2 + name: Vector2 + href: OpenTK.Mathematics.Vector2.html + - name: ',' + - name: " " + - name: out + - name: " " + - uid: OpenTK.Mathematics.Vector2 + name: Vector2 + href: OpenTK.Mathematics.Vector2.html - name: ) spec.vb: - - uid: OpenTK.Platform.IWindowComponent.FocusWindow(OpenTK.Platform.WindowHandle) - name: FocusWindow - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_FocusWindow_OpenTK_Platform_WindowHandle_ + - uid: OpenTK.Platform.IWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + name: ClientToScreen + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_ClientToScreen_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2_OpenTK_Mathematics_Vector2__ - name: ( - uid: OpenTK.Platform.WindowHandle name: WindowHandle href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: OpenTK.Mathematics.Vector2 + name: Vector2 + href: OpenTK.Mathematics.Vector2.html + - name: ',' + - name: " " + - uid: OpenTK.Mathematics.Vector2 + name: Vector2 + href: OpenTK.Mathematics.Vector2.html - name: ) -- uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.RequestAttention* - commentId: Overload:OpenTK.Platform.Native.SDL.SDLWindowComponent.RequestAttention - href: OpenTK.Platform.Native.SDL.SDLWindowComponent.html#OpenTK_Platform_Native_SDL_SDLWindowComponent_RequestAttention_OpenTK_Platform_WindowHandle_ - name: RequestAttention - nameWithType: SDLWindowComponent.RequestAttention - fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.RequestAttention -- uid: OpenTK.Platform.IWindowComponent.RequestAttention(OpenTK.Platform.WindowHandle) - commentId: M:OpenTK.Platform.IWindowComponent.RequestAttention(OpenTK.Platform.WindowHandle) +- uid: OpenTK.Platform.IWindowComponent.ClientToFramebuffer(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + commentId: M:OpenTK.Platform.IWindowComponent.ClientToFramebuffer(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) parent: OpenTK.Platform.IWindowComponent - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_RequestAttention_OpenTK_Platform_WindowHandle_ - name: RequestAttention(WindowHandle) - nameWithType: IWindowComponent.RequestAttention(WindowHandle) - fullName: OpenTK.Platform.IWindowComponent.RequestAttention(OpenTK.Platform.WindowHandle) + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_ClientToFramebuffer_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2_OpenTK_Mathematics_Vector2__ + name: ClientToFramebuffer(WindowHandle, Vector2, out Vector2) + nameWithType: IWindowComponent.ClientToFramebuffer(WindowHandle, Vector2, out Vector2) + fullName: OpenTK.Platform.IWindowComponent.ClientToFramebuffer(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2, out OpenTK.Mathematics.Vector2) + nameWithType.vb: IWindowComponent.ClientToFramebuffer(WindowHandle, Vector2, Vector2) + fullName.vb: OpenTK.Platform.IWindowComponent.ClientToFramebuffer(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2, OpenTK.Mathematics.Vector2) + name.vb: ClientToFramebuffer(WindowHandle, Vector2, Vector2) spec.csharp: - - uid: OpenTK.Platform.IWindowComponent.RequestAttention(OpenTK.Platform.WindowHandle) - name: RequestAttention - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_RequestAttention_OpenTK_Platform_WindowHandle_ + - uid: OpenTK.Platform.IWindowComponent.ClientToFramebuffer(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + name: ClientToFramebuffer + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_ClientToFramebuffer_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2_OpenTK_Mathematics_Vector2__ - name: ( - uid: OpenTK.Platform.WindowHandle name: WindowHandle href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: OpenTK.Mathematics.Vector2 + name: Vector2 + href: OpenTK.Mathematics.Vector2.html + - name: ',' + - name: " " + - name: out + - name: " " + - uid: OpenTK.Mathematics.Vector2 + name: Vector2 + href: OpenTK.Mathematics.Vector2.html - name: ) spec.vb: - - uid: OpenTK.Platform.IWindowComponent.RequestAttention(OpenTK.Platform.WindowHandle) - name: RequestAttention - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_RequestAttention_OpenTK_Platform_WindowHandle_ + - uid: OpenTK.Platform.IWindowComponent.ClientToFramebuffer(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + name: ClientToFramebuffer + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_ClientToFramebuffer_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2_OpenTK_Mathematics_Vector2__ - name: ( - uid: OpenTK.Platform.WindowHandle name: WindowHandle href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: OpenTK.Mathematics.Vector2 + name: Vector2 + href: OpenTK.Mathematics.Vector2.html + - name: ',' + - name: " " + - uid: OpenTK.Mathematics.Vector2 + name: Vector2 + href: OpenTK.Mathematics.Vector2.html - name: ) - uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.ScreenToClient* commentId: Overload:OpenTK.Platform.Native.SDL.SDLWindowComponent.ScreenToClient - href: OpenTK.Platform.Native.SDL.SDLWindowComponent.html#OpenTK_Platform_Native_SDL_SDLWindowComponent_ScreenToClient_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_System_Int32__System_Int32__ + href: OpenTK.Platform.Native.SDL.SDLWindowComponent.html#OpenTK_Platform_Native_SDL_SDLWindowComponent_ScreenToClient_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2_OpenTK_Mathematics_Vector2__ name: ScreenToClient nameWithType: SDLWindowComponent.ScreenToClient fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.ScreenToClient -- uid: OpenTK.Platform.IWindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) - commentId: M:OpenTK.Platform.IWindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) +- uid: OpenTK.Platform.IWindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + commentId: M:OpenTK.Platform.IWindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) parent: OpenTK.Platform.IWindowComponent - isExternal: true - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_ScreenToClient_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_System_Int32__System_Int32__ - name: ScreenToClient(WindowHandle, int, int, out int, out int) - nameWithType: IWindowComponent.ScreenToClient(WindowHandle, int, int, out int, out int) - fullName: OpenTK.Platform.IWindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle, int, int, out int, out int) - nameWithType.vb: IWindowComponent.ScreenToClient(WindowHandle, Integer, Integer, Integer, Integer) - fullName.vb: OpenTK.Platform.IWindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle, Integer, Integer, Integer, Integer) - name.vb: ScreenToClient(WindowHandle, Integer, Integer, Integer, Integer) + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_ScreenToClient_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2_OpenTK_Mathematics_Vector2__ + name: ScreenToClient(WindowHandle, Vector2, out Vector2) + nameWithType: IWindowComponent.ScreenToClient(WindowHandle, Vector2, out Vector2) + fullName: OpenTK.Platform.IWindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2, out OpenTK.Mathematics.Vector2) + nameWithType.vb: IWindowComponent.ScreenToClient(WindowHandle, Vector2, Vector2) + fullName.vb: OpenTK.Platform.IWindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2, OpenTK.Mathematics.Vector2) + name.vb: ScreenToClient(WindowHandle, Vector2, Vector2) spec.csharp: - - uid: OpenTK.Platform.IWindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) + - uid: OpenTK.Platform.IWindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) name: ScreenToClient - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_ScreenToClient_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_ScreenToClient_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2_OpenTK_Mathematics_Vector2__ - name: ( - uid: OpenTK.Platform.WindowHandle name: WindowHandle href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - name: out - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 + - uid: OpenTK.Mathematics.Vector2 + name: Vector2 + href: OpenTK.Mathematics.Vector2.html - name: ',' - name: " " - name: out - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 + - uid: OpenTK.Mathematics.Vector2 + name: Vector2 + href: OpenTK.Mathematics.Vector2.html - name: ) spec.vb: - - uid: OpenTK.Platform.IWindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) + - uid: OpenTK.Platform.IWindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) name: ScreenToClient - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_ScreenToClient_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_ScreenToClient_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2_OpenTK_Mathematics_Vector2__ - name: ( - uid: OpenTK.Platform.WindowHandle name: WindowHandle href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 + - uid: OpenTK.Mathematics.Vector2 + name: Vector2 + href: OpenTK.Mathematics.Vector2.html - name: ',' - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 + - uid: OpenTK.Mathematics.Vector2 + name: Vector2 + href: OpenTK.Mathematics.Vector2.html - name: ) +- uid: OpenTK.Mathematics.Vector2 + commentId: T:OpenTK.Mathematics.Vector2 + parent: OpenTK.Mathematics + href: OpenTK.Mathematics.Vector2.html + name: Vector2 + nameWithType: Vector2 + fullName: OpenTK.Mathematics.Vector2 - uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.ClientToScreen* commentId: Overload:OpenTK.Platform.Native.SDL.SDLWindowComponent.ClientToScreen - href: OpenTK.Platform.Native.SDL.SDLWindowComponent.html#OpenTK_Platform_Native_SDL_SDLWindowComponent_ClientToScreen_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_System_Int32__System_Int32__ + href: OpenTK.Platform.Native.SDL.SDLWindowComponent.html#OpenTK_Platform_Native_SDL_SDLWindowComponent_ClientToScreen_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2_OpenTK_Mathematics_Vector2__ name: ClientToScreen nameWithType: SDLWindowComponent.ClientToScreen fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.ClientToScreen -- uid: OpenTK.Platform.IWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) - commentId: M:OpenTK.Platform.IWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) +- uid: OpenTK.Platform.IWindowComponent.FramebufferToClient(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + commentId: M:OpenTK.Platform.IWindowComponent.FramebufferToClient(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) parent: OpenTK.Platform.IWindowComponent - isExternal: true - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_ClientToScreen_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_System_Int32__System_Int32__ - name: ClientToScreen(WindowHandle, int, int, out int, out int) - nameWithType: IWindowComponent.ClientToScreen(WindowHandle, int, int, out int, out int) - fullName: OpenTK.Platform.IWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle, int, int, out int, out int) - nameWithType.vb: IWindowComponent.ClientToScreen(WindowHandle, Integer, Integer, Integer, Integer) - fullName.vb: OpenTK.Platform.IWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle, Integer, Integer, Integer, Integer) - name.vb: ClientToScreen(WindowHandle, Integer, Integer, Integer, Integer) + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_FramebufferToClient_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2_OpenTK_Mathematics_Vector2__ + name: FramebufferToClient(WindowHandle, Vector2, out Vector2) + nameWithType: IWindowComponent.FramebufferToClient(WindowHandle, Vector2, out Vector2) + fullName: OpenTK.Platform.IWindowComponent.FramebufferToClient(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2, out OpenTK.Mathematics.Vector2) + nameWithType.vb: IWindowComponent.FramebufferToClient(WindowHandle, Vector2, Vector2) + fullName.vb: OpenTK.Platform.IWindowComponent.FramebufferToClient(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2, OpenTK.Mathematics.Vector2) + name.vb: FramebufferToClient(WindowHandle, Vector2, Vector2) spec.csharp: - - uid: OpenTK.Platform.IWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) - name: ClientToScreen - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_ClientToScreen_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_System_Int32__System_Int32__ + - uid: OpenTK.Platform.IWindowComponent.FramebufferToClient(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + name: FramebufferToClient + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_FramebufferToClient_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2_OpenTK_Mathematics_Vector2__ - name: ( - uid: OpenTK.Platform.WindowHandle name: WindowHandle href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - name: out - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 + - uid: OpenTK.Mathematics.Vector2 + name: Vector2 + href: OpenTK.Mathematics.Vector2.html - name: ',' - name: " " - name: out - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 + - uid: OpenTK.Mathematics.Vector2 + name: Vector2 + href: OpenTK.Mathematics.Vector2.html - name: ) spec.vb: - - uid: OpenTK.Platform.IWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) - name: ClientToScreen - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_ClientToScreen_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_System_Int32__System_Int32__ + - uid: OpenTK.Platform.IWindowComponent.FramebufferToClient(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + name: FramebufferToClient + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_FramebufferToClient_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2_OpenTK_Mathematics_Vector2__ - name: ( - uid: OpenTK.Platform.WindowHandle name: WindowHandle href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 + - uid: OpenTK.Mathematics.Vector2 + name: Vector2 + href: OpenTK.Mathematics.Vector2.html - name: ',' - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 + - uid: OpenTK.Mathematics.Vector2 + name: Vector2 + href: OpenTK.Mathematics.Vector2.html - name: ) +- uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.ClientToFramebuffer* + commentId: Overload:OpenTK.Platform.Native.SDL.SDLWindowComponent.ClientToFramebuffer + href: OpenTK.Platform.Native.SDL.SDLWindowComponent.html#OpenTK_Platform_Native_SDL_SDLWindowComponent_ClientToFramebuffer_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2_OpenTK_Mathematics_Vector2__ + name: ClientToFramebuffer + nameWithType: SDLWindowComponent.ClientToFramebuffer + fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.ClientToFramebuffer +- uid: OpenTK.Platform.Native.SDL.SDLWindowComponent.FramebufferToClient* + commentId: Overload:OpenTK.Platform.Native.SDL.SDLWindowComponent.FramebufferToClient + href: OpenTK.Platform.Native.SDL.SDLWindowComponent.html#OpenTK_Platform_Native_SDL_SDLWindowComponent_FramebufferToClient_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2_OpenTK_Mathematics_Vector2__ + name: FramebufferToClient + nameWithType: SDLWindowComponent.FramebufferToClient + fullName: OpenTK.Platform.Native.SDL.SDLWindowComponent.FramebufferToClient - uid: OpenTK.Platform.WindowScaleChangeEventArgs commentId: T:OpenTK.Platform.WindowScaleChangeEventArgs href: OpenTK.Platform.WindowScaleChangeEventArgs.html @@ -5452,14 +5910,3 @@ references: isExternal: true href: https://learn.microsoft.com/dotnet/api/system.single - name: ) -- uid: System.Single - commentId: T:System.Single - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.single - name: float - nameWithType: float - fullName: float - nameWithType.vb: Single - fullName.vb: Single - name.vb: Single diff --git a/api/OpenTK.Platform.Native.Windows.ClipboardComponent.yml b/api/OpenTK.Platform.Native.Windows.ClipboardComponent.yml index cd6d5976..df6f3e79 100644 --- a/api/OpenTK.Platform.Native.Windows.ClipboardComponent.yml +++ b/api/OpenTK.Platform.Native.Windows.ClipboardComponent.yml @@ -20,6 +20,7 @@ items: - OpenTK.Platform.Native.Windows.ClipboardComponent.SetClipboardBitmap(OpenTK.Platform.Bitmap) - OpenTK.Platform.Native.Windows.ClipboardComponent.SetClipboardText(System.String) - OpenTK.Platform.Native.Windows.ClipboardComponent.SupportedFormats + - OpenTK.Platform.Native.Windows.ClipboardComponent.Uninitialize langs: - csharp - vb @@ -126,7 +127,7 @@ items: assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows - summary: Provides a logger for this component. + summary: The logger that this component uses to log diagnostic messages. example: [] syntax: content: public ILogger? Logger { get; set; } @@ -135,6 +136,11 @@ items: type: OpenTK.Core.Utility.ILogger content.vb: Public Property Logger As ILogger overload: OpenTK.Platform.Native.Windows.ClipboardComponent.Logger* + seealso: + - linkId: OpenTK.Core.Utility.ILogger + commentId: T:OpenTK.Core.Utility.ILogger + - linkId: OpenTK.Platform.ToolkitOptions.Logger + commentId: P:OpenTK.Platform.ToolkitOptions.Logger implements: - OpenTK.Platform.IPalComponent.Logger - uid: OpenTK.Platform.Native.Windows.ClipboardComponent.CanIncludeInClipboardHistory @@ -231,8 +237,42 @@ items: description: The options to initialize the component with. content.vb: Public Sub Initialize(options As ToolkitOptions) overload: OpenTK.Platform.Native.Windows.ClipboardComponent.Initialize* + seealso: + - linkId: OpenTK.Platform.ToolkitOptions + commentId: T:OpenTK.Platform.ToolkitOptions + - linkId: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) implements: - OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) +- uid: OpenTK.Platform.Native.Windows.ClipboardComponent.Uninitialize + commentId: M:OpenTK.Platform.Native.Windows.ClipboardComponent.Uninitialize + id: Uninitialize + parent: OpenTK.Platform.Native.Windows.ClipboardComponent + langs: + - csharp + - vb + name: Uninitialize() + nameWithType: ClipboardComponent.Uninitialize() + fullName: OpenTK.Platform.Native.Windows.ClipboardComponent.Uninitialize() + type: Method + source: + id: Uninitialize + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\ClipboardComponent.cs + startLine: 144 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform.Native.Windows + summary: Uninitialize the component. Frees any native resources used by the component. + example: [] + syntax: + content: public void Uninitialize() + content.vb: Public Sub Uninitialize() + overload: OpenTK.Platform.Native.Windows.ClipboardComponent.Uninitialize* + seealso: + - linkId: OpenTK.Platform.Toolkit.Uninit + commentId: M:OpenTK.Platform.Toolkit.Uninit + implements: + - OpenTK.Platform.IPalComponent.Uninitialize - uid: OpenTK.Platform.Native.Windows.ClipboardComponent.SupportedFormats commentId: P:OpenTK.Platform.Native.Windows.ClipboardComponent.SupportedFormats id: SupportedFormats @@ -247,7 +287,7 @@ items: source: id: SupportedFormats path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\ClipboardComponent.cs - startLine: 147 + startLine: 152 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows @@ -260,6 +300,11 @@ items: type: System.Collections.Generic.IReadOnlyList{OpenTK.Platform.ClipboardFormat} content.vb: Public ReadOnly Property SupportedFormats As IReadOnlyList(Of ClipboardFormat) overload: OpenTK.Platform.Native.Windows.ClipboardComponent.SupportedFormats* + seealso: + - linkId: OpenTK.Platform.IClipboardComponent.GetClipboardFormat + commentId: M:OpenTK.Platform.IClipboardComponent.GetClipboardFormat + - linkId: OpenTK.Platform.ClipboardFormat + commentId: T:OpenTK.Platform.ClipboardFormat implements: - OpenTK.Platform.IClipboardComponent.SupportedFormats - uid: OpenTK.Platform.Native.Windows.ClipboardComponent.GetClipboardFormat @@ -276,7 +321,7 @@ items: source: id: GetClipboardFormat path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\ClipboardComponent.cs - startLine: 254 + startLine: 258 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows @@ -289,6 +334,9 @@ items: description: The format of the data currently in the clipboard. content.vb: Public Function GetClipboardFormat() As ClipboardFormat overload: OpenTK.Platform.Native.Windows.ClipboardComponent.GetClipboardFormat* + seealso: + - linkId: OpenTK.Platform.ClipboardFormat + commentId: T:OpenTK.Platform.ClipboardFormat implements: - OpenTK.Platform.IClipboardComponent.GetClipboardFormat - uid: OpenTK.Platform.Native.Windows.ClipboardComponent.SetClipboardText(System.String) @@ -305,7 +353,7 @@ items: source: id: SetClipboardText path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\ClipboardComponent.cs - startLine: 260 + startLine: 264 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows @@ -316,66 +364,17 @@ items: parameters: - id: text type: System.String - description: The text to put on the clipboard. + description: The text to write to the clipboard. content.vb: Public Sub SetClipboardText(text As String) overload: OpenTK.Platform.Native.Windows.ClipboardComponent.SetClipboardText* + seealso: + - linkId: OpenTK.Platform.IClipboardComponent.GetClipboardFormat + commentId: M:OpenTK.Platform.IClipboardComponent.GetClipboardFormat implements: - OpenTK.Platform.IClipboardComponent.SetClipboardText(System.String) nameWithType.vb: ClipboardComponent.SetClipboardText(String) fullName.vb: OpenTK.Platform.Native.Windows.ClipboardComponent.SetClipboardText(String) name.vb: SetClipboardText(String) -- uid: OpenTK.Platform.Native.Windows.ClipboardComponent.SetClipboardAudio(OpenTK.Platform.AudioData) - commentId: M:OpenTK.Platform.Native.Windows.ClipboardComponent.SetClipboardAudio(OpenTK.Platform.AudioData) - id: SetClipboardAudio(OpenTK.Platform.AudioData) - parent: OpenTK.Platform.Native.Windows.ClipboardComponent - langs: - - csharp - - vb - name: SetClipboardAudio(AudioData) - nameWithType: ClipboardComponent.SetClipboardAudio(AudioData) - fullName: OpenTK.Platform.Native.Windows.ClipboardComponent.SetClipboardAudio(OpenTK.Platform.AudioData) - type: Method - source: - id: SetClipboardAudio - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\ClipboardComponent.cs - startLine: 352 - assemblies: - - OpenTK.Platform - namespace: OpenTK.Platform.Native.Windows - example: [] - syntax: - content: public void SetClipboardAudio(AudioData data) - parameters: - - id: data - type: OpenTK.Platform.AudioData - content.vb: Public Sub SetClipboardAudio(data As AudioData) - overload: OpenTK.Platform.Native.Windows.ClipboardComponent.SetClipboardAudio* -- uid: OpenTK.Platform.Native.Windows.ClipboardComponent.SetClipboardBitmap(OpenTK.Platform.Bitmap) - commentId: M:OpenTK.Platform.Native.Windows.ClipboardComponent.SetClipboardBitmap(OpenTK.Platform.Bitmap) - id: SetClipboardBitmap(OpenTK.Platform.Bitmap) - parent: OpenTK.Platform.Native.Windows.ClipboardComponent - langs: - - csharp - - vb - name: SetClipboardBitmap(Bitmap) - nameWithType: ClipboardComponent.SetClipboardBitmap(Bitmap) - fullName: OpenTK.Platform.Native.Windows.ClipboardComponent.SetClipboardBitmap(OpenTK.Platform.Bitmap) - type: Method - source: - id: SetClipboardBitmap - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\ClipboardComponent.cs - startLine: 450 - assemblies: - - OpenTK.Platform - namespace: OpenTK.Platform.Native.Windows - example: [] - syntax: - content: public void SetClipboardBitmap(Bitmap bitmap) - parameters: - - id: bitmap - type: OpenTK.Platform.Bitmap - content.vb: Public Sub SetClipboardBitmap(bitmap As Bitmap) - overload: OpenTK.Platform.Native.Windows.ClipboardComponent.SetClipboardBitmap* - uid: OpenTK.Platform.Native.Windows.ClipboardComponent.GetClipboardText commentId: M:OpenTK.Platform.Native.Windows.ClipboardComponent.GetClipboardText id: GetClipboardText @@ -390,24 +389,53 @@ items: source: id: GetClipboardText path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\ClipboardComponent.cs - startLine: 548 + startLine: 332 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: >- - Returns the string currently in the clipboard. + Gets the string currently in the clipboard. - This function returns null if the current clipboard data doesn't have the format. + This function returns null if the current clipboard data doesn't have the format. example: [] syntax: content: public string? GetClipboardText() return: type: System.String - description: The string currently in the clipboard, or null. + description: The string currently in the clipboard, or null. content.vb: Public Function GetClipboardText() As String overload: OpenTK.Platform.Native.Windows.ClipboardComponent.GetClipboardText* + seealso: + - linkId: OpenTK.Platform.IClipboardComponent.GetClipboardFormat + commentId: M:OpenTK.Platform.IClipboardComponent.GetClipboardFormat implements: - OpenTK.Platform.IClipboardComponent.GetClipboardText +- uid: OpenTK.Platform.Native.Windows.ClipboardComponent.SetClipboardAudio(OpenTK.Platform.AudioData) + commentId: M:OpenTK.Platform.Native.Windows.ClipboardComponent.SetClipboardAudio(OpenTK.Platform.AudioData) + id: SetClipboardAudio(OpenTK.Platform.AudioData) + parent: OpenTK.Platform.Native.Windows.ClipboardComponent + langs: + - csharp + - vb + name: SetClipboardAudio(AudioData) + nameWithType: ClipboardComponent.SetClipboardAudio(AudioData) + fullName: OpenTK.Platform.Native.Windows.ClipboardComponent.SetClipboardAudio(OpenTK.Platform.AudioData) + type: Method + source: + id: SetClipboardAudio + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\ClipboardComponent.cs + startLine: 415 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform.Native.Windows + example: [] + syntax: + content: public void SetClipboardAudio(AudioData data) + parameters: + - id: data + type: OpenTK.Platform.AudioData + content.vb: Public Sub SetClipboardAudio(data As AudioData) + overload: OpenTK.Platform.Native.Windows.ClipboardComponent.SetClipboardAudio* - uid: OpenTK.Platform.Native.Windows.ClipboardComponent.GetClipboardAudio commentId: M:OpenTK.Platform.Native.Windows.ClipboardComponent.GetClipboardAudio id: GetClipboardAudio @@ -422,24 +450,70 @@ items: source: id: GetClipboardAudio path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\ClipboardComponent.cs - startLine: 608 + startLine: 513 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: >- Gets the audio data currently in the clipboard. - This function returns null if the current clipboard data doesn't have the format. + This function returns null if the current clipboard data doesn't have the format. example: [] syntax: content: public AudioData? GetClipboardAudio() return: type: OpenTK.Platform.AudioData - description: The audio data currently in the clipboard. + description: The audio data currently in the clipboard, or null. content.vb: Public Function GetClipboardAudio() As AudioData overload: OpenTK.Platform.Native.Windows.ClipboardComponent.GetClipboardAudio* + seealso: + - linkId: OpenTK.Platform.IClipboardComponent.GetClipboardFormat + commentId: M:OpenTK.Platform.IClipboardComponent.GetClipboardFormat implements: - OpenTK.Platform.IClipboardComponent.GetClipboardAudio +- uid: OpenTK.Platform.Native.Windows.ClipboardComponent.SetClipboardBitmap(OpenTK.Platform.Bitmap) + commentId: M:OpenTK.Platform.Native.Windows.ClipboardComponent.SetClipboardBitmap(OpenTK.Platform.Bitmap) + id: SetClipboardBitmap(OpenTK.Platform.Bitmap) + parent: OpenTK.Platform.Native.Windows.ClipboardComponent + langs: + - csharp + - vb + name: SetClipboardBitmap(Bitmap) + nameWithType: ClipboardComponent.SetClipboardBitmap(Bitmap) + fullName: OpenTK.Platform.Native.Windows.ClipboardComponent.SetClipboardBitmap(OpenTK.Platform.Bitmap) + type: Method + source: + id: SetClipboardBitmap + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\ClipboardComponent.cs + startLine: 595 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform.Native.Windows + summary: Writes a bitmap to the clipboard. + remarks: >- + On linux clipboard bitmaps are defacto transferred as PNG data, as such a PNG encoder/decoder is needed to read and write bitmaps from the clipboard. + + To enable this must be called with an object that implements the interface. + + If this is not done, and will both throw an exception. + example: [] + syntax: + content: public void SetClipboardBitmap(Bitmap bitmap) + parameters: + - id: bitmap + type: OpenTK.Platform.Bitmap + description: The bitmap to write to the clipboard. + content.vb: Public Sub SetClipboardBitmap(bitmap As Bitmap) + overload: OpenTK.Platform.Native.Windows.ClipboardComponent.SetClipboardBitmap* + seealso: + - linkId: OpenTK.Platform.IClipboardComponent.GetClipboardFormat + commentId: M:OpenTK.Platform.IClipboardComponent.GetClipboardFormat + - linkId: OpenTK.Platform.Native.X11.X11ClipboardComponent.SetPngCodec(OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec) + commentId: M:OpenTK.Platform.Native.X11.X11ClipboardComponent.SetPngCodec(OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec) + - linkId: OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec + commentId: T:OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec + implements: + - OpenTK.Platform.IClipboardComponent.SetClipboardBitmap(OpenTK.Platform.Bitmap) - uid: OpenTK.Platform.Native.Windows.ClipboardComponent.GetClipboardBitmap commentId: M:OpenTK.Platform.Native.Windows.ClipboardComponent.GetClipboardBitmap id: GetClipboardBitmap @@ -454,22 +528,35 @@ items: source: id: GetClipboardBitmap path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\ClipboardComponent.cs - startLine: 690 + startLine: 693 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: >- Gets the bitmap currently in the clipboard. - This function returns null if the current clipboard data doesn't have the format. + This function returns null if the current clipboard data doesn't have the format. + remarks: >- + On linux clipboard bitmaps are defacto transferred as PNG data, as such a PNG encoder/decoder is needed to read and write bitmaps from the clipboard. + + To enable this must be called with an object that implements the interface. + + If this is not done, and will both throw an exception. example: [] syntax: content: public Bitmap? GetClipboardBitmap() return: type: OpenTK.Platform.Bitmap - description: The bitmap currently in the clipboard. + description: The bitmap currently in the clipboard, or null. content.vb: Public Function GetClipboardBitmap() As Bitmap overload: OpenTK.Platform.Native.Windows.ClipboardComponent.GetClipboardBitmap* + seealso: + - linkId: OpenTK.Platform.IClipboardComponent.GetClipboardFormat + commentId: M:OpenTK.Platform.IClipboardComponent.GetClipboardFormat + - linkId: OpenTK.Platform.Native.X11.X11ClipboardComponent.SetPngCodec(OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec) + commentId: M:OpenTK.Platform.Native.X11.X11ClipboardComponent.SetPngCodec(OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec) + - linkId: OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec + commentId: T:OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec implements: - OpenTK.Platform.IClipboardComponent.GetClipboardBitmap - uid: OpenTK.Platform.Native.Windows.ClipboardComponent.GetClipboardFiles @@ -486,22 +573,25 @@ items: source: id: GetClipboardFiles path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\ClipboardComponent.cs - startLine: 809 + startLine: 812 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: >- Gets a list of files and directories currently in the clipboard. - This function returns null if the current clipboard data doesn't have the format. + This function returns null if the current clipboard data doesn't have the format. example: [] syntax: content: public List? GetClipboardFiles() return: type: System.Collections.Generic.List{System.String} - description: The list of files and directories currently in the clipboard. + description: The list of files and directories currently in the clipboard, or null. content.vb: Public Function GetClipboardFiles() As List(Of String) overload: OpenTK.Platform.Native.Windows.ClipboardComponent.GetClipboardFiles* + seealso: + - linkId: OpenTK.Platform.IClipboardComponent.GetClipboardFormat + commentId: M:OpenTK.Platform.IClipboardComponent.GetClipboardFormat implements: - OpenTK.Platform.IClipboardComponent.GetClipboardFiles references: @@ -860,6 +950,19 @@ references: name: PalComponents nameWithType: PalComponents fullName: OpenTK.Platform.PalComponents +- uid: OpenTK.Core.Utility.ILogger + commentId: T:OpenTK.Core.Utility.ILogger + parent: OpenTK.Core.Utility + href: OpenTK.Core.Utility.ILogger.html + name: ILogger + nameWithType: ILogger + fullName: OpenTK.Core.Utility.ILogger +- uid: OpenTK.Platform.ToolkitOptions.Logger + commentId: P:OpenTK.Platform.ToolkitOptions.Logger + href: OpenTK.Platform.ToolkitOptions.html#OpenTK_Platform_ToolkitOptions_Logger + name: Logger + nameWithType: ToolkitOptions.Logger + fullName: OpenTK.Platform.ToolkitOptions.Logger - uid: OpenTK.Platform.Native.Windows.ClipboardComponent.Logger* commentId: Overload:OpenTK.Platform.Native.Windows.ClipboardComponent.Logger href: OpenTK.Platform.Native.Windows.ClipboardComponent.html#OpenTK_Platform_Native_Windows_ClipboardComponent_Logger @@ -873,13 +976,6 @@ references: name: Logger nameWithType: IPalComponent.Logger fullName: OpenTK.Platform.IPalComponent.Logger -- uid: OpenTK.Core.Utility.ILogger - commentId: T:OpenTK.Core.Utility.ILogger - parent: OpenTK.Core.Utility - href: OpenTK.Core.Utility.ILogger.html - name: ILogger - nameWithType: ILogger - fullName: OpenTK.Core.Utility.ILogger - uid: OpenTK.Core.Utility commentId: N:OpenTK.Core.Utility href: OpenTK.html @@ -973,6 +1069,37 @@ references: name: CanUploadToCloudClipboard nameWithType: ClipboardComponent.CanUploadToCloudClipboard fullName: OpenTK.Platform.Native.Windows.ClipboardComponent.CanUploadToCloudClipboard +- uid: OpenTK.Platform.ToolkitOptions + commentId: T:OpenTK.Platform.ToolkitOptions + parent: OpenTK.Platform + href: OpenTK.Platform.ToolkitOptions.html + name: ToolkitOptions + nameWithType: ToolkitOptions + fullName: OpenTK.Platform.ToolkitOptions +- uid: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Init_OpenTK_Platform_ToolkitOptions_ + name: Init(ToolkitOptions) + nameWithType: Toolkit.Init(ToolkitOptions) + fullName: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + spec.csharp: + - uid: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + name: Init + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Init_OpenTK_Platform_ToolkitOptions_ + - name: ( + - uid: OpenTK.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Platform.ToolkitOptions.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + name: Init + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Init_OpenTK_Platform_ToolkitOptions_ + - name: ( + - uid: OpenTK.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Platform.ToolkitOptions.html + - name: ) - uid: OpenTK.Platform.Native.Windows.ClipboardComponent.Initialize* commentId: Overload:OpenTK.Platform.Native.Windows.ClipboardComponent.Initialize href: OpenTK.Platform.Native.Windows.ClipboardComponent.html#OpenTK_Platform_Native_Windows_ClipboardComponent_Initialize_OpenTK_Platform_ToolkitOptions_ @@ -1004,13 +1131,75 @@ references: name: ToolkitOptions href: OpenTK.Platform.ToolkitOptions.html - name: ) -- uid: OpenTK.Platform.ToolkitOptions - commentId: T:OpenTK.Platform.ToolkitOptions +- uid: OpenTK.Platform.Toolkit.Uninit + commentId: M:OpenTK.Platform.Toolkit.Uninit + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Uninit + name: Uninit() + nameWithType: Toolkit.Uninit() + fullName: OpenTK.Platform.Toolkit.Uninit() + spec.csharp: + - uid: OpenTK.Platform.Toolkit.Uninit + name: Uninit + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Uninit + - name: ( + - name: ) + spec.vb: + - uid: OpenTK.Platform.Toolkit.Uninit + name: Uninit + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Uninit + - name: ( + - name: ) +- uid: OpenTK.Platform.Native.Windows.ClipboardComponent.Uninitialize* + commentId: Overload:OpenTK.Platform.Native.Windows.ClipboardComponent.Uninitialize + href: OpenTK.Platform.Native.Windows.ClipboardComponent.html#OpenTK_Platform_Native_Windows_ClipboardComponent_Uninitialize + name: Uninitialize + nameWithType: ClipboardComponent.Uninitialize + fullName: OpenTK.Platform.Native.Windows.ClipboardComponent.Uninitialize +- uid: OpenTK.Platform.IPalComponent.Uninitialize + commentId: M:OpenTK.Platform.IPalComponent.Uninitialize + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + name: Uninitialize() + nameWithType: IPalComponent.Uninitialize() + fullName: OpenTK.Platform.IPalComponent.Uninitialize() + spec.csharp: + - uid: OpenTK.Platform.IPalComponent.Uninitialize + name: Uninitialize + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + - name: ( + - name: ) + spec.vb: + - uid: OpenTK.Platform.IPalComponent.Uninitialize + name: Uninitialize + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + - name: ( + - name: ) +- uid: OpenTK.Platform.IClipboardComponent.GetClipboardFormat + commentId: M:OpenTK.Platform.IClipboardComponent.GetClipboardFormat + parent: OpenTK.Platform.IClipboardComponent + href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_GetClipboardFormat + name: GetClipboardFormat() + nameWithType: IClipboardComponent.GetClipboardFormat() + fullName: OpenTK.Platform.IClipboardComponent.GetClipboardFormat() + spec.csharp: + - uid: OpenTK.Platform.IClipboardComponent.GetClipboardFormat + name: GetClipboardFormat + href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_GetClipboardFormat + - name: ( + - name: ) + spec.vb: + - uid: OpenTK.Platform.IClipboardComponent.GetClipboardFormat + name: GetClipboardFormat + href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_GetClipboardFormat + - name: ( + - name: ) +- uid: OpenTK.Platform.ClipboardFormat + commentId: T:OpenTK.Platform.ClipboardFormat parent: OpenTK.Platform - href: OpenTK.Platform.ToolkitOptions.html - name: ToolkitOptions - nameWithType: ToolkitOptions - fullName: OpenTK.Platform.ToolkitOptions + href: OpenTK.Platform.ClipboardFormat.html + name: ClipboardFormat + nameWithType: ClipboardFormat + fullName: OpenTK.Platform.ClipboardFormat - uid: OpenTK.Platform.Native.Windows.ClipboardComponent.SupportedFormats* commentId: Overload:OpenTK.Platform.Native.Windows.ClipboardComponent.SupportedFormats href: OpenTK.Platform.Native.Windows.ClipboardComponent.html#OpenTK_Platform_Native_Windows_ClipboardComponent_SupportedFormats @@ -1128,32 +1317,6 @@ references: name: GetClipboardFormat nameWithType: ClipboardComponent.GetClipboardFormat fullName: OpenTK.Platform.Native.Windows.ClipboardComponent.GetClipboardFormat -- uid: OpenTK.Platform.IClipboardComponent.GetClipboardFormat - commentId: M:OpenTK.Platform.IClipboardComponent.GetClipboardFormat - parent: OpenTK.Platform.IClipboardComponent - href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_GetClipboardFormat - name: GetClipboardFormat() - nameWithType: IClipboardComponent.GetClipboardFormat() - fullName: OpenTK.Platform.IClipboardComponent.GetClipboardFormat() - spec.csharp: - - uid: OpenTK.Platform.IClipboardComponent.GetClipboardFormat - name: GetClipboardFormat - href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_GetClipboardFormat - - name: ( - - name: ) - spec.vb: - - uid: OpenTK.Platform.IClipboardComponent.GetClipboardFormat - name: GetClipboardFormat - href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_GetClipboardFormat - - name: ( - - name: ) -- uid: OpenTK.Platform.ClipboardFormat - commentId: T:OpenTK.Platform.ClipboardFormat - parent: OpenTK.Platform - href: OpenTK.Platform.ClipboardFormat.html - name: ClipboardFormat - nameWithType: ClipboardFormat - fullName: OpenTK.Platform.ClipboardFormat - uid: OpenTK.Platform.Native.Windows.ClipboardComponent.SetClipboardText* commentId: Overload:OpenTK.Platform.Native.Windows.ClipboardComponent.SetClipboardText href: OpenTK.Platform.Native.Windows.ClipboardComponent.html#OpenTK_Platform_Native_Windows_ClipboardComponent_SetClipboardText_System_String_ @@ -1191,32 +1354,6 @@ references: isExternal: true href: https://learn.microsoft.com/dotnet/api/system.string - name: ) -- uid: OpenTK.Platform.Native.Windows.ClipboardComponent.SetClipboardAudio* - commentId: Overload:OpenTK.Platform.Native.Windows.ClipboardComponent.SetClipboardAudio - href: OpenTK.Platform.Native.Windows.ClipboardComponent.html#OpenTK_Platform_Native_Windows_ClipboardComponent_SetClipboardAudio_OpenTK_Platform_AudioData_ - name: SetClipboardAudio - nameWithType: ClipboardComponent.SetClipboardAudio - fullName: OpenTK.Platform.Native.Windows.ClipboardComponent.SetClipboardAudio -- uid: OpenTK.Platform.AudioData - commentId: T:OpenTK.Platform.AudioData - parent: OpenTK.Platform - href: OpenTK.Platform.AudioData.html - name: AudioData - nameWithType: AudioData - fullName: OpenTK.Platform.AudioData -- uid: OpenTK.Platform.Native.Windows.ClipboardComponent.SetClipboardBitmap* - commentId: Overload:OpenTK.Platform.Native.Windows.ClipboardComponent.SetClipboardBitmap - href: OpenTK.Platform.Native.Windows.ClipboardComponent.html#OpenTK_Platform_Native_Windows_ClipboardComponent_SetClipboardBitmap_OpenTK_Platform_Bitmap_ - name: SetClipboardBitmap - nameWithType: ClipboardComponent.SetClipboardBitmap - fullName: OpenTK.Platform.Native.Windows.ClipboardComponent.SetClipboardBitmap -- uid: OpenTK.Platform.Bitmap - commentId: T:OpenTK.Platform.Bitmap - parent: OpenTK.Platform - href: OpenTK.Platform.Bitmap.html - name: Bitmap - nameWithType: Bitmap - fullName: OpenTK.Platform.Bitmap - uid: OpenTK.Platform.ClipboardFormat.Text commentId: F:OpenTK.Platform.ClipboardFormat.Text href: OpenTK.Platform.ClipboardFormat.html#OpenTK_Platform_ClipboardFormat_Text @@ -1248,6 +1385,19 @@ references: href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_GetClipboardText - name: ( - name: ) +- uid: OpenTK.Platform.Native.Windows.ClipboardComponent.SetClipboardAudio* + commentId: Overload:OpenTK.Platform.Native.Windows.ClipboardComponent.SetClipboardAudio + href: OpenTK.Platform.Native.Windows.ClipboardComponent.html#OpenTK_Platform_Native_Windows_ClipboardComponent_SetClipboardAudio_OpenTK_Platform_AudioData_ + name: SetClipboardAudio + nameWithType: ClipboardComponent.SetClipboardAudio + fullName: OpenTK.Platform.Native.Windows.ClipboardComponent.SetClipboardAudio +- uid: OpenTK.Platform.AudioData + commentId: T:OpenTK.Platform.AudioData + parent: OpenTK.Platform + href: OpenTK.Platform.AudioData.html + name: AudioData + nameWithType: AudioData + fullName: OpenTK.Platform.AudioData - uid: OpenTK.Platform.ClipboardFormat.Audio commentId: F:OpenTK.Platform.ClipboardFormat.Audio href: OpenTK.Platform.ClipboardFormat.html#OpenTK_Platform_ClipboardFormat_Audio @@ -1279,18 +1429,78 @@ references: href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_GetClipboardAudio - name: ( - name: ) -- uid: OpenTK.Platform.ClipboardFormat.Bitmap - commentId: F:OpenTK.Platform.ClipboardFormat.Bitmap - href: OpenTK.Platform.ClipboardFormat.html#OpenTK_Platform_ClipboardFormat_Bitmap - name: Bitmap - nameWithType: ClipboardFormat.Bitmap - fullName: OpenTK.Platform.ClipboardFormat.Bitmap -- uid: OpenTK.Platform.Native.Windows.ClipboardComponent.GetClipboardBitmap* - commentId: Overload:OpenTK.Platform.Native.Windows.ClipboardComponent.GetClipboardBitmap - href: OpenTK.Platform.Native.Windows.ClipboardComponent.html#OpenTK_Platform_Native_Windows_ClipboardComponent_GetClipboardBitmap - name: GetClipboardBitmap - nameWithType: ClipboardComponent.GetClipboardBitmap - fullName: OpenTK.Platform.Native.Windows.ClipboardComponent.GetClipboardBitmap +- uid: OpenTK.Platform.Native.X11.X11ClipboardComponent.SetPngCodec(OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec) + commentId: M:OpenTK.Platform.Native.X11.X11ClipboardComponent.SetPngCodec(OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec) + href: OpenTK.Platform.Native.X11.X11ClipboardComponent.html#OpenTK_Platform_Native_X11_X11ClipboardComponent_SetPngCodec_OpenTK_Platform_Native_X11_X11ClipboardComponent_IPngCodec_ + name: SetPngCodec(IPngCodec) + nameWithType: X11ClipboardComponent.SetPngCodec(X11ClipboardComponent.IPngCodec) + fullName: OpenTK.Platform.Native.X11.X11ClipboardComponent.SetPngCodec(OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec) + spec.csharp: + - uid: OpenTK.Platform.Native.X11.X11ClipboardComponent.SetPngCodec(OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec) + name: SetPngCodec + href: OpenTK.Platform.Native.X11.X11ClipboardComponent.html#OpenTK_Platform_Native_X11_X11ClipboardComponent_SetPngCodec_OpenTK_Platform_Native_X11_X11ClipboardComponent_IPngCodec_ + - name: ( + - uid: OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec + name: IPngCodec + href: OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.Native.X11.X11ClipboardComponent.SetPngCodec(OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec) + name: SetPngCodec + href: OpenTK.Platform.Native.X11.X11ClipboardComponent.html#OpenTK_Platform_Native_X11_X11ClipboardComponent_SetPngCodec_OpenTK_Platform_Native_X11_X11ClipboardComponent_IPngCodec_ + - name: ( + - uid: OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec + name: IPngCodec + href: OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec.html + - name: ) +- uid: OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec + commentId: T:OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec + parent: OpenTK.Platform.Native.X11 + href: OpenTK.Platform.Native.X11.X11ClipboardComponent.html + name: X11ClipboardComponent.IPngCodec + nameWithType: X11ClipboardComponent.IPngCodec + fullName: OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec + spec.csharp: + - uid: OpenTK.Platform.Native.X11.X11ClipboardComponent + name: X11ClipboardComponent + href: OpenTK.Platform.Native.X11.X11ClipboardComponent.html + - name: . + - uid: OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec + name: IPngCodec + href: OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec.html + spec.vb: + - uid: OpenTK.Platform.Native.X11.X11ClipboardComponent + name: X11ClipboardComponent + href: OpenTK.Platform.Native.X11.X11ClipboardComponent.html + - name: . + - uid: OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec + name: IPngCodec + href: OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec.html +- uid: OpenTK.Platform.IClipboardComponent.SetClipboardBitmap(OpenTK.Platform.Bitmap) + commentId: M:OpenTK.Platform.IClipboardComponent.SetClipboardBitmap(OpenTK.Platform.Bitmap) + parent: OpenTK.Platform.IClipboardComponent + href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_SetClipboardBitmap_OpenTK_Platform_Bitmap_ + name: SetClipboardBitmap(Bitmap) + nameWithType: IClipboardComponent.SetClipboardBitmap(Bitmap) + fullName: OpenTK.Platform.IClipboardComponent.SetClipboardBitmap(OpenTK.Platform.Bitmap) + spec.csharp: + - uid: OpenTK.Platform.IClipboardComponent.SetClipboardBitmap(OpenTK.Platform.Bitmap) + name: SetClipboardBitmap + href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_SetClipboardBitmap_OpenTK_Platform_Bitmap_ + - name: ( + - uid: OpenTK.Platform.Bitmap + name: Bitmap + href: OpenTK.Platform.Bitmap.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IClipboardComponent.SetClipboardBitmap(OpenTK.Platform.Bitmap) + name: SetClipboardBitmap + href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_SetClipboardBitmap_OpenTK_Platform_Bitmap_ + - name: ( + - uid: OpenTK.Platform.Bitmap + name: Bitmap + href: OpenTK.Platform.Bitmap.html + - name: ) - uid: OpenTK.Platform.IClipboardComponent.GetClipboardBitmap commentId: M:OpenTK.Platform.IClipboardComponent.GetClipboardBitmap parent: OpenTK.Platform.IClipboardComponent @@ -1310,6 +1520,69 @@ references: href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_GetClipboardBitmap - name: ( - name: ) +- uid: OpenTK.Platform.Native.Windows.ClipboardComponent.SetClipboardBitmap* + commentId: Overload:OpenTK.Platform.Native.Windows.ClipboardComponent.SetClipboardBitmap + href: OpenTK.Platform.Native.Windows.ClipboardComponent.html#OpenTK_Platform_Native_Windows_ClipboardComponent_SetClipboardBitmap_OpenTK_Platform_Bitmap_ + name: SetClipboardBitmap + nameWithType: ClipboardComponent.SetClipboardBitmap + fullName: OpenTK.Platform.Native.Windows.ClipboardComponent.SetClipboardBitmap +- uid: OpenTK.Platform.Bitmap + commentId: T:OpenTK.Platform.Bitmap + parent: OpenTK.Platform + href: OpenTK.Platform.Bitmap.html + name: Bitmap + nameWithType: Bitmap + fullName: OpenTK.Platform.Bitmap +- uid: OpenTK.Platform.Native.X11 + commentId: N:OpenTK.Platform.Native.X11 + href: OpenTK.html + name: OpenTK.Platform.Native.X11 + nameWithType: OpenTK.Platform.Native.X11 + fullName: OpenTK.Platform.Native.X11 + spec.csharp: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Platform + name: Platform + href: OpenTK.Platform.html + - name: . + - uid: OpenTK.Platform.Native + name: Native + href: OpenTK.Platform.Native.html + - name: . + - uid: OpenTK.Platform.Native.X11 + name: X11 + href: OpenTK.Platform.Native.X11.html + spec.vb: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Platform + name: Platform + href: OpenTK.Platform.html + - name: . + - uid: OpenTK.Platform.Native + name: Native + href: OpenTK.Platform.Native.html + - name: . + - uid: OpenTK.Platform.Native.X11 + name: X11 + href: OpenTK.Platform.Native.X11.html +- uid: OpenTK.Platform.ClipboardFormat.Bitmap + commentId: F:OpenTK.Platform.ClipboardFormat.Bitmap + href: OpenTK.Platform.ClipboardFormat.html#OpenTK_Platform_ClipboardFormat_Bitmap + name: Bitmap + nameWithType: ClipboardFormat.Bitmap + fullName: OpenTK.Platform.ClipboardFormat.Bitmap +- uid: OpenTK.Platform.Native.Windows.ClipboardComponent.GetClipboardBitmap* + commentId: Overload:OpenTK.Platform.Native.Windows.ClipboardComponent.GetClipboardBitmap + href: OpenTK.Platform.Native.Windows.ClipboardComponent.html#OpenTK_Platform_Native_Windows_ClipboardComponent_GetClipboardBitmap + name: GetClipboardBitmap + nameWithType: ClipboardComponent.GetClipboardBitmap + fullName: OpenTK.Platform.Native.Windows.ClipboardComponent.GetClipboardBitmap - uid: OpenTK.Platform.ClipboardFormat.Files commentId: F:OpenTK.Platform.ClipboardFormat.Files href: OpenTK.Platform.ClipboardFormat.html#OpenTK_Platform_ClipboardFormat_Files diff --git a/api/OpenTK.Platform.Native.Windows.CursorComponent.yml b/api/OpenTK.Platform.Native.Windows.CursorComponent.yml index 4c8f583f..41abcc86 100644 --- a/api/OpenTK.Platform.Native.Windows.CursorComponent.yml +++ b/api/OpenTK.Platform.Native.Windows.CursorComponent.yml @@ -22,6 +22,7 @@ items: - OpenTK.Platform.Native.Windows.CursorComponent.Logger - OpenTK.Platform.Native.Windows.CursorComponent.Name - OpenTK.Platform.Native.Windows.CursorComponent.Provides + - OpenTK.Platform.Native.Windows.CursorComponent.Uninitialize langs: - csharp - vb @@ -128,7 +129,7 @@ items: assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows - summary: Provides a logger for this component. + summary: The logger that this component uses to log diagnostic messages. example: [] syntax: content: public ILogger? Logger { get; set; } @@ -137,6 +138,11 @@ items: type: OpenTK.Core.Utility.ILogger content.vb: Public Property Logger As ILogger overload: OpenTK.Platform.Native.Windows.CursorComponent.Logger* + seealso: + - linkId: OpenTK.Core.Utility.ILogger + commentId: T:OpenTK.Core.Utility.ILogger + - linkId: OpenTK.Platform.ToolkitOptions.Logger + commentId: P:OpenTK.Platform.ToolkitOptions.Logger implements: - OpenTK.Platform.IPalComponent.Logger - uid: OpenTK.Platform.Native.Windows.CursorComponent.Initialize(OpenTK.Platform.ToolkitOptions) @@ -167,8 +173,42 @@ items: description: The options to initialize the component with. content.vb: Public Sub Initialize(options As ToolkitOptions) overload: OpenTK.Platform.Native.Windows.CursorComponent.Initialize* + seealso: + - linkId: OpenTK.Platform.ToolkitOptions + commentId: T:OpenTK.Platform.ToolkitOptions + - linkId: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) implements: - OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) +- uid: OpenTK.Platform.Native.Windows.CursorComponent.Uninitialize + commentId: M:OpenTK.Platform.Native.Windows.CursorComponent.Uninitialize + id: Uninitialize + parent: OpenTK.Platform.Native.Windows.CursorComponent + langs: + - csharp + - vb + name: Uninitialize() + nameWithType: CursorComponent.Uninitialize() + fullName: OpenTK.Platform.Native.Windows.CursorComponent.Uninitialize() + type: Method + source: + id: Uninitialize + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\CursorComponent.cs + startLine: 32 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform.Native.Windows + summary: Uninitialize the component. Frees any native resources used by the component. + example: [] + syntax: + content: public void Uninitialize() + content.vb: Public Sub Uninitialize() + overload: OpenTK.Platform.Native.Windows.CursorComponent.Uninitialize* + seealso: + - linkId: OpenTK.Platform.Toolkit.Uninit + commentId: M:OpenTK.Platform.Toolkit.Uninit + implements: + - OpenTK.Platform.IPalComponent.Uninitialize - uid: OpenTK.Platform.Native.Windows.CursorComponent.CanLoadSystemCursors commentId: P:OpenTK.Platform.Native.Windows.CursorComponent.CanLoadSystemCursors id: CanLoadSystemCursors @@ -183,7 +223,7 @@ items: source: id: CanLoadSystemCursors path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\CursorComponent.cs - startLine: 32 + startLine: 37 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows @@ -215,16 +255,16 @@ items: source: id: CanInspectSystemCursors path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\CursorComponent.cs - startLine: 35 + startLine: 40 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: >- True if the backend supports inspecting system cursor handles. - If true, functions like and works on system cursors. + If true, functions like and works on system cursors. - If false, these functions will fail. + If fals, these functions will fail. example: [] syntax: content: public bool CanInspectSystemCursors { get; } @@ -238,6 +278,10 @@ items: commentId: M:OpenTK.Platform.ICursorComponent.GetSize(OpenTK.Platform.CursorHandle,System.Int32@,System.Int32@) - linkId: OpenTK.Platform.ICursorComponent.GetHotspot(OpenTK.Platform.CursorHandle,System.Int32@,System.Int32@) commentId: M:OpenTK.Platform.ICursorComponent.GetHotspot(OpenTK.Platform.CursorHandle,System.Int32@,System.Int32@) + - linkId: OpenTK.Platform.ICursorComponent.CanLoadSystemCursors + commentId: P:OpenTK.Platform.ICursorComponent.CanLoadSystemCursors + - linkId: OpenTK.Platform.ICursorComponent.Create(OpenTK.Platform.SystemCursorType) + commentId: M:OpenTK.Platform.ICursorComponent.Create(OpenTK.Platform.SystemCursorType) implements: - OpenTK.Platform.ICursorComponent.CanInspectSystemCursors - uid: OpenTK.Platform.Native.Windows.CursorComponent.Create(OpenTK.Platform.SystemCursorType) @@ -254,12 +298,12 @@ items: source: id: Create path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\CursorComponent.cs - startLine: 38 + startLine: 43 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: Create a standard system cursor. - remarks: This function is only supported if is true. + remarks: This function is only supported if is true. example: [] syntax: content: public CursorHandle Create(SystemCursorType systemCursor) @@ -273,12 +317,16 @@ items: content.vb: Public Function Create(systemCursor As SystemCursorType) As CursorHandle overload: OpenTK.Platform.Native.Windows.CursorComponent.Create* exceptions: - - type: OpenTK.Platform.PalNotImplementedException - commentId: T:OpenTK.Platform.PalNotImplementedException + - type: System.PlatformNotSupportedException + commentId: T:System.PlatformNotSupportedException description: Driver does not implement this function. See . - - type: OpenTK.Platform.PlatformException - commentId: T:OpenTK.Platform.PlatformException - description: System does not provide cursor type selected by systemCursor. + seealso: + - linkId: OpenTK.Platform.ICursorComponent.CanLoadSystemCursors + commentId: P:OpenTK.Platform.ICursorComponent.CanLoadSystemCursors + - linkId: OpenTK.Platform.SystemCursorType + commentId: T:OpenTK.Platform.SystemCursorType + - linkId: OpenTK.Platform.ICursorComponent.Destroy(OpenTK.Platform.CursorHandle) + commentId: M:OpenTK.Platform.ICursorComponent.Destroy(OpenTK.Platform.CursorHandle) implements: - OpenTK.Platform.ICursorComponent.Create(OpenTK.Platform.SystemCursorType) - uid: OpenTK.Platform.Native.Windows.CursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.Int32,System.Int32) @@ -295,7 +343,7 @@ items: source: id: Create path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\CursorComponent.cs - startLine: 112 + startLine: 117 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows @@ -312,7 +360,7 @@ items: description: Height of the cursor image. - id: image type: System.ReadOnlySpan{System.Byte} - description: Buffer containing image data. + description: Buffer containing image data in RGBA order. - id: hotspotX type: System.Int32 description: The x coordinate of the cursor hotspot. @@ -327,10 +375,16 @@ items: exceptions: - type: System.ArgumentOutOfRangeException commentId: T:System.ArgumentOutOfRangeException - description: width or height is negative. + description: If width, height, hotspotX, or hotspotY are negative. + - type: System.ArgumentOutOfRangeException + commentId: T:System.ArgumentOutOfRangeException + description: If hotspotX or hotspotY are greater than width or height respectively. - type: System.ArgumentException commentId: T:System.ArgumentException description: image is smaller than specified dimensions. + seealso: + - linkId: OpenTK.Platform.ICursorComponent.Destroy(OpenTK.Platform.CursorHandle) + commentId: M:OpenTK.Platform.ICursorComponent.Destroy(OpenTK.Platform.CursorHandle) implements: - OpenTK.Platform.ICursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.Int32,System.Int32) nameWithType.vb: CursorComponent.Create(Integer, Integer, ReadOnlySpan(Of Byte), Integer, Integer) @@ -350,7 +404,7 @@ items: source: id: Create path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\CursorComponent.cs - startLine: 191 + startLine: 201 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows @@ -367,10 +421,10 @@ items: description: Height of the cursor image. - id: colorData type: System.ReadOnlySpan{System.Byte} - description: Buffer containing color data. + description: Buffer containing RGB color data. - id: maskData type: System.ReadOnlySpan{System.Byte} - description: Buffer containing mask data. + description: Buffer containing mask data. Pixels where the mask is 1 will be visible while mask value of 0 is transparent. - id: hotspotX type: System.Int32 description: The x coordinate of the cursor hotspot. @@ -385,10 +439,16 @@ items: exceptions: - type: System.ArgumentOutOfRangeException commentId: T:System.ArgumentOutOfRangeException - description: width or height is negative. + description: If width, height, hotspotX, or hotspotY are negative. + - type: System.ArgumentOutOfRangeException + commentId: T:System.ArgumentOutOfRangeException + description: If hotspotX or hotspotY are greater than width or height respectively. - type: System.ArgumentException commentId: T:System.ArgumentException description: colorData or maskData is smaller than specified dimensions. + seealso: + - linkId: OpenTK.Platform.ICursorComponent.Destroy(OpenTK.Platform.CursorHandle) + commentId: M:OpenTK.Platform.ICursorComponent.Destroy(OpenTK.Platform.CursorHandle) implements: - OpenTK.Platform.ICursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.ReadOnlySpan{System.Byte},System.Int32,System.Int32) nameWithType.vb: CursorComponent.Create(Integer, Integer, ReadOnlySpan(Of Byte), ReadOnlySpan(Of Byte), Integer, Integer) @@ -408,7 +468,7 @@ items: source: id: CreateFromCurFile path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\CursorComponent.cs - startLine: 284 + startLine: 299 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows @@ -446,7 +506,7 @@ items: source: id: CreateFromCurResorce path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\CursorComponent.cs - startLine: 333 + startLine: 348 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows @@ -478,7 +538,7 @@ items: source: id: CreateFromCurResorce path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\CursorComponent.cs - startLine: 409 + startLine: 424 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows @@ -521,7 +581,7 @@ items: source: id: Destroy path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\CursorComponent.cs - startLine: 422 + startLine: 437 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows @@ -535,10 +595,13 @@ items: description: Handle to a cursor object. content.vb: Public Sub Destroy(handle As CursorHandle) overload: OpenTK.Platform.Native.Windows.CursorComponent.Destroy* - exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: handle is null. + seealso: + - linkId: OpenTK.Platform.ICursorComponent.Create(OpenTK.Platform.SystemCursorType) + commentId: M:OpenTK.Platform.ICursorComponent.Create(OpenTK.Platform.SystemCursorType) + - linkId: OpenTK.Platform.ICursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.Int32,System.Int32) + commentId: M:OpenTK.Platform.ICursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.Int32,System.Int32) + - linkId: OpenTK.Platform.ICursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.ReadOnlySpan{System.Byte},System.Int32,System.Int32) + commentId: M:OpenTK.Platform.ICursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.ReadOnlySpan{System.Byte},System.Int32,System.Int32) implements: - OpenTK.Platform.ICursorComponent.Destroy(OpenTK.Platform.CursorHandle) - uid: OpenTK.Platform.Native.Windows.CursorComponent.IsSystemCursor(OpenTK.Platform.CursorHandle) @@ -555,11 +618,11 @@ items: source: id: IsSystemCursor path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\CursorComponent.cs - startLine: 469 + startLine: 484 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows - summary: Returns true if this cursor is a system cursor. + summary: Returns true if this cursor is a system cursor. example: [] syntax: content: public bool IsSystemCursor(CursorHandle handle) @@ -575,6 +638,8 @@ items: seealso: - linkId: OpenTK.Platform.ICursorComponent.Create(OpenTK.Platform.SystemCursorType) commentId: M:OpenTK.Platform.ICursorComponent.Create(OpenTK.Platform.SystemCursorType) + - linkId: OpenTK.Platform.ICursorComponent.CanLoadSystemCursors + commentId: P:OpenTK.Platform.ICursorComponent.CanLoadSystemCursors implements: - OpenTK.Platform.ICursorComponent.IsSystemCursor(OpenTK.Platform.CursorHandle) - uid: OpenTK.Platform.Native.Windows.CursorComponent.GetSize(OpenTK.Platform.CursorHandle,System.Int32@,System.Int32@) @@ -591,12 +656,12 @@ items: source: id: GetSize path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\CursorComponent.cs - startLine: 476 + startLine: 491 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: Get the size of the cursor image. - remarks: If handle is a system cursor and is false this function will fail. + remarks: If handle is a system cursor and is false this function will fail. example: [] syntax: content: public void GetSize(CursorHandle handle, out int width, out int height) @@ -612,10 +677,6 @@ items: description: Height of the cursor. content.vb: Public Sub GetSize(handle As CursorHandle, width As Integer, height As Integer) overload: OpenTK.Platform.Native.Windows.CursorComponent.GetSize* - exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: handle is null. seealso: - linkId: OpenTK.Platform.ICursorComponent.IsSystemCursor(OpenTK.Platform.CursorHandle) commentId: M:OpenTK.Platform.ICursorComponent.IsSystemCursor(OpenTK.Platform.CursorHandle) @@ -640,14 +701,11 @@ items: source: id: GetHotspot path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\CursorComponent.cs - startLine: 503 + startLine: 518 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows - summary: >- - Get the hotspot location of the mouse cursor. - - Getting the hotspot of a system cursor is not guaranteed to be possible, check before trying. + summary: Get the hotspot location of the mouse cursor. remarks: If handle is a system cursor and is false this function will fail. example: [] syntax: @@ -664,10 +722,6 @@ items: description: Y coordinate of the hotspot. content.vb: Public Sub GetHotspot(handle As CursorHandle, x As Integer, y As Integer) overload: OpenTK.Platform.Native.Windows.CursorComponent.GetHotspot* - exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: handle is null. seealso: - linkId: OpenTK.Platform.ICursorComponent.IsSystemCursor(OpenTK.Platform.CursorHandle) commentId: M:OpenTK.Platform.ICursorComponent.IsSystemCursor(OpenTK.Platform.CursorHandle) @@ -692,7 +746,7 @@ items: source: id: GetImage path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\CursorComponent.cs - startLine: 533 + startLine: 548 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows @@ -1073,6 +1127,19 @@ references: name: PalComponents nameWithType: PalComponents fullName: OpenTK.Platform.PalComponents +- uid: OpenTK.Core.Utility.ILogger + commentId: T:OpenTK.Core.Utility.ILogger + parent: OpenTK.Core.Utility + href: OpenTK.Core.Utility.ILogger.html + name: ILogger + nameWithType: ILogger + fullName: OpenTK.Core.Utility.ILogger +- uid: OpenTK.Platform.ToolkitOptions.Logger + commentId: P:OpenTK.Platform.ToolkitOptions.Logger + href: OpenTK.Platform.ToolkitOptions.html#OpenTK_Platform_ToolkitOptions_Logger + name: Logger + nameWithType: ToolkitOptions.Logger + fullName: OpenTK.Platform.ToolkitOptions.Logger - uid: OpenTK.Platform.Native.Windows.CursorComponent.Logger* commentId: Overload:OpenTK.Platform.Native.Windows.CursorComponent.Logger href: OpenTK.Platform.Native.Windows.CursorComponent.html#OpenTK_Platform_Native_Windows_CursorComponent_Logger @@ -1086,13 +1153,6 @@ references: name: Logger nameWithType: IPalComponent.Logger fullName: OpenTK.Platform.IPalComponent.Logger -- uid: OpenTK.Core.Utility.ILogger - commentId: T:OpenTK.Core.Utility.ILogger - parent: OpenTK.Core.Utility - href: OpenTK.Core.Utility.ILogger.html - name: ILogger - nameWithType: ILogger - fullName: OpenTK.Core.Utility.ILogger - uid: OpenTK.Core.Utility commentId: N:OpenTK.Core.Utility href: OpenTK.html @@ -1123,6 +1183,37 @@ references: - uid: OpenTK.Core.Utility name: Utility href: OpenTK.Core.Utility.html +- uid: OpenTK.Platform.ToolkitOptions + commentId: T:OpenTK.Platform.ToolkitOptions + parent: OpenTK.Platform + href: OpenTK.Platform.ToolkitOptions.html + name: ToolkitOptions + nameWithType: ToolkitOptions + fullName: OpenTK.Platform.ToolkitOptions +- uid: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Init_OpenTK_Platform_ToolkitOptions_ + name: Init(ToolkitOptions) + nameWithType: Toolkit.Init(ToolkitOptions) + fullName: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + spec.csharp: + - uid: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + name: Init + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Init_OpenTK_Platform_ToolkitOptions_ + - name: ( + - uid: OpenTK.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Platform.ToolkitOptions.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + name: Init + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Init_OpenTK_Platform_ToolkitOptions_ + - name: ( + - uid: OpenTK.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Platform.ToolkitOptions.html + - name: ) - uid: OpenTK.Platform.Native.Windows.CursorComponent.Initialize* commentId: Overload:OpenTK.Platform.Native.Windows.CursorComponent.Initialize href: OpenTK.Platform.Native.Windows.CursorComponent.html#OpenTK_Platform_Native_Windows_CursorComponent_Initialize_OpenTK_Platform_ToolkitOptions_ @@ -1154,13 +1245,49 @@ references: name: ToolkitOptions href: OpenTK.Platform.ToolkitOptions.html - name: ) -- uid: OpenTK.Platform.ToolkitOptions - commentId: T:OpenTK.Platform.ToolkitOptions - parent: OpenTK.Platform - href: OpenTK.Platform.ToolkitOptions.html - name: ToolkitOptions - nameWithType: ToolkitOptions - fullName: OpenTK.Platform.ToolkitOptions +- uid: OpenTK.Platform.Toolkit.Uninit + commentId: M:OpenTK.Platform.Toolkit.Uninit + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Uninit + name: Uninit() + nameWithType: Toolkit.Uninit() + fullName: OpenTK.Platform.Toolkit.Uninit() + spec.csharp: + - uid: OpenTK.Platform.Toolkit.Uninit + name: Uninit + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Uninit + - name: ( + - name: ) + spec.vb: + - uid: OpenTK.Platform.Toolkit.Uninit + name: Uninit + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Uninit + - name: ( + - name: ) +- uid: OpenTK.Platform.Native.Windows.CursorComponent.Uninitialize* + commentId: Overload:OpenTK.Platform.Native.Windows.CursorComponent.Uninitialize + href: OpenTK.Platform.Native.Windows.CursorComponent.html#OpenTK_Platform_Native_Windows_CursorComponent_Uninitialize + name: Uninitialize + nameWithType: CursorComponent.Uninitialize + fullName: OpenTK.Platform.Native.Windows.CursorComponent.Uninitialize +- uid: OpenTK.Platform.IPalComponent.Uninitialize + commentId: M:OpenTK.Platform.IPalComponent.Uninitialize + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + name: Uninitialize() + nameWithType: IPalComponent.Uninitialize() + fullName: OpenTK.Platform.IPalComponent.Uninitialize() + spec.csharp: + - uid: OpenTK.Platform.IPalComponent.Uninitialize + name: Uninitialize + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + - name: ( + - name: ) + spec.vb: + - uid: OpenTK.Platform.IPalComponent.Uninitialize + name: Uninitialize + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + - name: ( + - name: ) - uid: OpenTK.Platform.ICursorComponent.Create(OpenTK.Platform.SystemCursorType) commentId: M:OpenTK.Platform.ICursorComponent.Create(OpenTK.Platform.SystemCursorType) parent: OpenTK.Platform.ICursorComponent @@ -1337,24 +1464,6 @@ references: name: CanInspectSystemCursors nameWithType: ICursorComponent.CanInspectSystemCursors fullName: OpenTK.Platform.ICursorComponent.CanInspectSystemCursors -- uid: OpenTK.Platform.PalNotImplementedException - commentId: T:OpenTK.Platform.PalNotImplementedException - href: OpenTK.Platform.PalNotImplementedException.html - name: PalNotImplementedException - nameWithType: PalNotImplementedException - fullName: OpenTK.Platform.PalNotImplementedException -- uid: OpenTK.Platform.PlatformException - commentId: T:OpenTK.Platform.PlatformException - href: OpenTK.Platform.PlatformException.html - name: PlatformException - nameWithType: PlatformException - fullName: OpenTK.Platform.PlatformException -- uid: OpenTK.Platform.Native.Windows.CursorComponent.Create* - commentId: Overload:OpenTK.Platform.Native.Windows.CursorComponent.Create - href: OpenTK.Platform.Native.Windows.CursorComponent.html#OpenTK_Platform_Native_Windows_CursorComponent_Create_OpenTK_Platform_SystemCursorType_ - name: Create - nameWithType: CursorComponent.Create - fullName: OpenTK.Platform.Native.Windows.CursorComponent.Create - uid: OpenTK.Platform.SystemCursorType commentId: T:OpenTK.Platform.SystemCursorType parent: OpenTK.Platform @@ -1362,6 +1471,44 @@ references: name: SystemCursorType nameWithType: SystemCursorType fullName: OpenTK.Platform.SystemCursorType +- uid: OpenTK.Platform.ICursorComponent.Destroy(OpenTK.Platform.CursorHandle) + commentId: M:OpenTK.Platform.ICursorComponent.Destroy(OpenTK.Platform.CursorHandle) + parent: OpenTK.Platform.ICursorComponent + href: OpenTK.Platform.ICursorComponent.html#OpenTK_Platform_ICursorComponent_Destroy_OpenTK_Platform_CursorHandle_ + name: Destroy(CursorHandle) + nameWithType: ICursorComponent.Destroy(CursorHandle) + fullName: OpenTK.Platform.ICursorComponent.Destroy(OpenTK.Platform.CursorHandle) + spec.csharp: + - uid: OpenTK.Platform.ICursorComponent.Destroy(OpenTK.Platform.CursorHandle) + name: Destroy + href: OpenTK.Platform.ICursorComponent.html#OpenTK_Platform_ICursorComponent_Destroy_OpenTK_Platform_CursorHandle_ + - name: ( + - uid: OpenTK.Platform.CursorHandle + name: CursorHandle + href: OpenTK.Platform.CursorHandle.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.ICursorComponent.Destroy(OpenTK.Platform.CursorHandle) + name: Destroy + href: OpenTK.Platform.ICursorComponent.html#OpenTK_Platform_ICursorComponent_Destroy_OpenTK_Platform_CursorHandle_ + - name: ( + - uid: OpenTK.Platform.CursorHandle + name: CursorHandle + href: OpenTK.Platform.CursorHandle.html + - name: ) +- uid: System.PlatformNotSupportedException + commentId: T:System.PlatformNotSupportedException + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.platformnotsupportedexception + name: PlatformNotSupportedException + nameWithType: PlatformNotSupportedException + fullName: System.PlatformNotSupportedException +- uid: OpenTK.Platform.Native.Windows.CursorComponent.Create* + commentId: Overload:OpenTK.Platform.Native.Windows.CursorComponent.Create + href: OpenTK.Platform.Native.Windows.CursorComponent.html#OpenTK_Platform_Native_Windows_CursorComponent_Create_OpenTK_Platform_SystemCursorType_ + name: Create + nameWithType: CursorComponent.Create + fullName: OpenTK.Platform.Native.Windows.CursorComponent.Create - uid: OpenTK.Platform.CursorHandle commentId: T:OpenTK.Platform.CursorHandle parent: OpenTK.Platform @@ -1823,44 +1970,12 @@ references: href: https://learn.microsoft.com/dotnet/api/system.byte - name: ( - name: ) -- uid: System.ArgumentNullException - commentId: T:System.ArgumentNullException - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.argumentnullexception - name: ArgumentNullException - nameWithType: ArgumentNullException - fullName: System.ArgumentNullException - uid: OpenTK.Platform.Native.Windows.CursorComponent.Destroy* commentId: Overload:OpenTK.Platform.Native.Windows.CursorComponent.Destroy href: OpenTK.Platform.Native.Windows.CursorComponent.html#OpenTK_Platform_Native_Windows_CursorComponent_Destroy_OpenTK_Platform_CursorHandle_ name: Destroy nameWithType: CursorComponent.Destroy fullName: OpenTK.Platform.Native.Windows.CursorComponent.Destroy -- uid: OpenTK.Platform.ICursorComponent.Destroy(OpenTK.Platform.CursorHandle) - commentId: M:OpenTK.Platform.ICursorComponent.Destroy(OpenTK.Platform.CursorHandle) - parent: OpenTK.Platform.ICursorComponent - href: OpenTK.Platform.ICursorComponent.html#OpenTK_Platform_ICursorComponent_Destroy_OpenTK_Platform_CursorHandle_ - name: Destroy(CursorHandle) - nameWithType: ICursorComponent.Destroy(CursorHandle) - fullName: OpenTK.Platform.ICursorComponent.Destroy(OpenTK.Platform.CursorHandle) - spec.csharp: - - uid: OpenTK.Platform.ICursorComponent.Destroy(OpenTK.Platform.CursorHandle) - name: Destroy - href: OpenTK.Platform.ICursorComponent.html#OpenTK_Platform_ICursorComponent_Destroy_OpenTK_Platform_CursorHandle_ - - name: ( - - uid: OpenTK.Platform.CursorHandle - name: CursorHandle - href: OpenTK.Platform.CursorHandle.html - - name: ) - spec.vb: - - uid: OpenTK.Platform.ICursorComponent.Destroy(OpenTK.Platform.CursorHandle) - name: Destroy - href: OpenTK.Platform.ICursorComponent.html#OpenTK_Platform_ICursorComponent_Destroy_OpenTK_Platform_CursorHandle_ - - name: ( - - uid: OpenTK.Platform.CursorHandle - name: CursorHandle - href: OpenTK.Platform.CursorHandle.html - - name: ) - uid: OpenTK.Platform.Native.Windows.CursorComponent.IsSystemCursor* commentId: Overload:OpenTK.Platform.Native.Windows.CursorComponent.IsSystemCursor href: OpenTK.Platform.Native.Windows.CursorComponent.html#OpenTK_Platform_Native_Windows_CursorComponent_IsSystemCursor_OpenTK_Platform_CursorHandle_ @@ -1904,6 +2019,13 @@ references: name: GetHotspot nameWithType: CursorComponent.GetHotspot fullName: OpenTK.Platform.Native.Windows.CursorComponent.GetHotspot +- uid: System.ArgumentNullException + commentId: T:System.ArgumentNullException + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.argumentnullexception + name: ArgumentNullException + nameWithType: ArgumentNullException + fullName: System.ArgumentNullException - uid: OpenTK.Platform.Native.Windows.CursorComponent.GetImage* commentId: Overload:OpenTK.Platform.Native.Windows.CursorComponent.GetImage href: OpenTK.Platform.Native.Windows.CursorComponent.html#OpenTK_Platform_Native_Windows_CursorComponent_GetImage_OpenTK_Platform_CursorHandle_System_Span_System_Byte__ diff --git a/api/OpenTK.Platform.Native.Windows.DialogComponent.yml b/api/OpenTK.Platform.Native.Windows.DialogComponent.yml index c64437ed..70052394 100644 --- a/api/OpenTK.Platform.Native.Windows.DialogComponent.yml +++ b/api/OpenTK.Platform.Native.Windows.DialogComponent.yml @@ -13,6 +13,7 @@ items: - OpenTK.Platform.Native.Windows.DialogComponent.ShowMessageBox(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.MessageBoxType,OpenTK.Platform.IconHandle) - OpenTK.Platform.Native.Windows.DialogComponent.ShowOpenDialog(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.DialogFileFilter[],OpenTK.Platform.OpenDialogOptions) - OpenTK.Platform.Native.Windows.DialogComponent.ShowSaveDialog(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.DialogFileFilter[],OpenTK.Platform.SaveDialogOptions) + - OpenTK.Platform.Native.Windows.DialogComponent.Uninitialize langs: - csharp - vb @@ -119,7 +120,7 @@ items: assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows - summary: Provides a logger for this component. + summary: The logger that this component uses to log diagnostic messages. example: [] syntax: content: public ILogger? Logger { get; set; } @@ -128,6 +129,11 @@ items: type: OpenTK.Core.Utility.ILogger content.vb: Public Property Logger As ILogger overload: OpenTK.Platform.Native.Windows.DialogComponent.Logger* + seealso: + - linkId: OpenTK.Core.Utility.ILogger + commentId: T:OpenTK.Core.Utility.ILogger + - linkId: OpenTK.Platform.ToolkitOptions.Logger + commentId: P:OpenTK.Platform.ToolkitOptions.Logger implements: - OpenTK.Platform.IPalComponent.Logger - uid: OpenTK.Platform.Native.Windows.DialogComponent.Initialize(OpenTK.Platform.ToolkitOptions) @@ -158,8 +164,42 @@ items: description: The options to initialize the component with. content.vb: Public Sub Initialize(options As ToolkitOptions) overload: OpenTK.Platform.Native.Windows.DialogComponent.Initialize* + seealso: + - linkId: OpenTK.Platform.ToolkitOptions + commentId: T:OpenTK.Platform.ToolkitOptions + - linkId: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) implements: - OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) +- uid: OpenTK.Platform.Native.Windows.DialogComponent.Uninitialize + commentId: M:OpenTK.Platform.Native.Windows.DialogComponent.Uninitialize + id: Uninitialize + parent: OpenTK.Platform.Native.Windows.DialogComponent + langs: + - csharp + - vb + name: Uninitialize() + nameWithType: DialogComponent.Uninitialize() + fullName: OpenTK.Platform.Native.Windows.DialogComponent.Uninitialize() + type: Method + source: + id: Uninitialize + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\DialogComponent.cs + startLine: 118 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform.Native.Windows + summary: Uninitialize the component. Frees any native resources used by the component. + example: [] + syntax: + content: public void Uninitialize() + content.vb: Public Sub Uninitialize() + overload: OpenTK.Platform.Native.Windows.DialogComponent.Uninitialize* + seealso: + - linkId: OpenTK.Platform.Toolkit.Uninit + commentId: M:OpenTK.Platform.Toolkit.Uninit + implements: + - OpenTK.Platform.IPalComponent.Uninitialize - uid: OpenTK.Platform.Native.Windows.DialogComponent.CanTargetFolders commentId: P:OpenTK.Platform.Native.Windows.DialogComponent.CanTargetFolders id: CanTargetFolders @@ -174,14 +214,14 @@ items: source: id: CanTargetFolders path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\DialogComponent.cs - startLine: 118 + startLine: 136 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: >- If the value of this property is true will work. - Otherwise these flags will be ignored. + Otherwise this flag will be ignored. example: [] syntax: content: public bool CanTargetFolders { get; } @@ -191,6 +231,8 @@ items: content.vb: Public ReadOnly Property CanTargetFolders As Boolean overload: OpenTK.Platform.Native.Windows.DialogComponent.CanTargetFolders* seealso: + - linkId: OpenTK.Platform.Toolkit.Dialog + commentId: P:OpenTK.Platform.Toolkit.Dialog - linkId: OpenTK.Platform.OpenDialogOptions.SelectDirectory commentId: F:OpenTK.Platform.OpenDialogOptions.SelectDirectory - linkId: OpenTK.Platform.IDialogComponent.ShowOpenDialog(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.DialogFileFilter[],OpenTK.Platform.OpenDialogOptions) @@ -211,11 +253,12 @@ items: source: id: ShowMessageBox path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\DialogComponent.cs - startLine: 121 + startLine: 139 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: Shows a modal message box. + remarks: This function runs a modal event loop and will only return once the dialog has been dissmissed by pressing any of it's buttons. example: [] syntax: content: public MessageBoxButton ShowMessageBox(WindowHandle parent, string title, string content, MessageBoxType messageBoxType, IconHandle? customIcon = null) @@ -228,7 +271,7 @@ items: description: The title of the dialog box. - id: content type: System.String - description: The content text of the dialog box. + description: The content text of the dialog box. This is the prompt to the user, explain what they should do. - id: messageBoxType type: OpenTK.Platform.MessageBoxType description: The type of message box. Determines button layout and default icon. @@ -240,6 +283,15 @@ items: description: The pressed message box button. content.vb: Public Function ShowMessageBox(parent As WindowHandle, title As String, content As String, messageBoxType As MessageBoxType, customIcon As IconHandle = Nothing) As MessageBoxButton overload: OpenTK.Platform.Native.Windows.DialogComponent.ShowMessageBox* + seealso: + - linkId: OpenTK.Platform.MessageBoxType + commentId: T:OpenTK.Platform.MessageBoxType + - linkId: OpenTK.Platform.MessageBoxButton + commentId: T:OpenTK.Platform.MessageBoxButton + - linkId: OpenTK.Platform.Toolkit.Icon + commentId: P:OpenTK.Platform.Toolkit.Icon + - linkId: OpenTK.Platform.IIconComponent + commentId: T:OpenTK.Platform.IIconComponent implements: - OpenTK.Platform.IDialogComponent.ShowMessageBox(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.MessageBoxType,OpenTK.Platform.IconHandle) nameWithType.vb: DialogComponent.ShowMessageBox(WindowHandle, String, String, MessageBoxType, IconHandle) @@ -259,11 +311,12 @@ items: source: id: ShowOpenDialog path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\DialogComponent.cs - startLine: 324 + startLine: 342 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: Shows a modal "open file/folder" dialog. + remarks: This function runs a modal event loop and will only return once the dialog has been dissmissed by pressing any of it's buttons. example: [] syntax: content: public List? ShowOpenDialog(WindowHandle parent, string title, string directory, DialogFileFilter[]? allowedExtensions, OpenDialogOptions options) @@ -319,11 +372,12 @@ items: source: id: ShowSaveDialog path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\DialogComponent.cs - startLine: 417 + startLine: 435 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: Shows a modal "save file" dialog. + remarks: This function runs a modal event loop and will only return once the dialog has been dissmissed by pressing any of it's buttons. example: [] syntax: content: public string? ShowSaveDialog(WindowHandle parent, string title, string directory, DialogFileFilter[]? allowedExtensions, SaveDialogOptions options) @@ -714,6 +768,19 @@ references: name: PalComponents nameWithType: PalComponents fullName: OpenTK.Platform.PalComponents +- uid: OpenTK.Core.Utility.ILogger + commentId: T:OpenTK.Core.Utility.ILogger + parent: OpenTK.Core.Utility + href: OpenTK.Core.Utility.ILogger.html + name: ILogger + nameWithType: ILogger + fullName: OpenTK.Core.Utility.ILogger +- uid: OpenTK.Platform.ToolkitOptions.Logger + commentId: P:OpenTK.Platform.ToolkitOptions.Logger + href: OpenTK.Platform.ToolkitOptions.html#OpenTK_Platform_ToolkitOptions_Logger + name: Logger + nameWithType: ToolkitOptions.Logger + fullName: OpenTK.Platform.ToolkitOptions.Logger - uid: OpenTK.Platform.Native.Windows.DialogComponent.Logger* commentId: Overload:OpenTK.Platform.Native.Windows.DialogComponent.Logger href: OpenTK.Platform.Native.Windows.DialogComponent.html#OpenTK_Platform_Native_Windows_DialogComponent_Logger @@ -727,13 +794,6 @@ references: name: Logger nameWithType: IPalComponent.Logger fullName: OpenTK.Platform.IPalComponent.Logger -- uid: OpenTK.Core.Utility.ILogger - commentId: T:OpenTK.Core.Utility.ILogger - parent: OpenTK.Core.Utility - href: OpenTK.Core.Utility.ILogger.html - name: ILogger - nameWithType: ILogger - fullName: OpenTK.Core.Utility.ILogger - uid: OpenTK.Core.Utility commentId: N:OpenTK.Core.Utility href: OpenTK.html @@ -764,6 +824,37 @@ references: - uid: OpenTK.Core.Utility name: Utility href: OpenTK.Core.Utility.html +- uid: OpenTK.Platform.ToolkitOptions + commentId: T:OpenTK.Platform.ToolkitOptions + parent: OpenTK.Platform + href: OpenTK.Platform.ToolkitOptions.html + name: ToolkitOptions + nameWithType: ToolkitOptions + fullName: OpenTK.Platform.ToolkitOptions +- uid: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Init_OpenTK_Platform_ToolkitOptions_ + name: Init(ToolkitOptions) + nameWithType: Toolkit.Init(ToolkitOptions) + fullName: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + spec.csharp: + - uid: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + name: Init + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Init_OpenTK_Platform_ToolkitOptions_ + - name: ( + - uid: OpenTK.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Platform.ToolkitOptions.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + name: Init + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Init_OpenTK_Platform_ToolkitOptions_ + - name: ( + - uid: OpenTK.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Platform.ToolkitOptions.html + - name: ) - uid: OpenTK.Platform.Native.Windows.DialogComponent.Initialize* commentId: Overload:OpenTK.Platform.Native.Windows.DialogComponent.Initialize href: OpenTK.Platform.Native.Windows.DialogComponent.html#OpenTK_Platform_Native_Windows_DialogComponent_Initialize_OpenTK_Platform_ToolkitOptions_ @@ -795,13 +886,55 @@ references: name: ToolkitOptions href: OpenTK.Platform.ToolkitOptions.html - name: ) -- uid: OpenTK.Platform.ToolkitOptions - commentId: T:OpenTK.Platform.ToolkitOptions - parent: OpenTK.Platform - href: OpenTK.Platform.ToolkitOptions.html - name: ToolkitOptions - nameWithType: ToolkitOptions - fullName: OpenTK.Platform.ToolkitOptions +- uid: OpenTK.Platform.Toolkit.Uninit + commentId: M:OpenTK.Platform.Toolkit.Uninit + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Uninit + name: Uninit() + nameWithType: Toolkit.Uninit() + fullName: OpenTK.Platform.Toolkit.Uninit() + spec.csharp: + - uid: OpenTK.Platform.Toolkit.Uninit + name: Uninit + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Uninit + - name: ( + - name: ) + spec.vb: + - uid: OpenTK.Platform.Toolkit.Uninit + name: Uninit + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Uninit + - name: ( + - name: ) +- uid: OpenTK.Platform.Native.Windows.DialogComponent.Uninitialize* + commentId: Overload:OpenTK.Platform.Native.Windows.DialogComponent.Uninitialize + href: OpenTK.Platform.Native.Windows.DialogComponent.html#OpenTK_Platform_Native_Windows_DialogComponent_Uninitialize + name: Uninitialize + nameWithType: DialogComponent.Uninitialize + fullName: OpenTK.Platform.Native.Windows.DialogComponent.Uninitialize +- uid: OpenTK.Platform.IPalComponent.Uninitialize + commentId: M:OpenTK.Platform.IPalComponent.Uninitialize + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + name: Uninitialize() + nameWithType: IPalComponent.Uninitialize() + fullName: OpenTK.Platform.IPalComponent.Uninitialize() + spec.csharp: + - uid: OpenTK.Platform.IPalComponent.Uninitialize + name: Uninitialize + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + - name: ( + - name: ) + spec.vb: + - uid: OpenTK.Platform.IPalComponent.Uninitialize + name: Uninitialize + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + - name: ( + - name: ) +- uid: OpenTK.Platform.Toolkit.Dialog + commentId: P:OpenTK.Platform.Toolkit.Dialog + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Dialog + name: Dialog + nameWithType: Toolkit.Dialog + fullName: OpenTK.Platform.Toolkit.Dialog - uid: OpenTK.Platform.OpenDialogOptions.SelectDirectory commentId: F:OpenTK.Platform.OpenDialogOptions.SelectDirectory href: OpenTK.Platform.OpenDialogOptions.html#OpenTK_Platform_OpenDialogOptions_SelectDirectory @@ -909,6 +1042,33 @@ references: nameWithType.vb: Boolean fullName.vb: Boolean name.vb: Boolean +- uid: OpenTK.Platform.MessageBoxType + commentId: T:OpenTK.Platform.MessageBoxType + parent: OpenTK.Platform + href: OpenTK.Platform.MessageBoxType.html + name: MessageBoxType + nameWithType: MessageBoxType + fullName: OpenTK.Platform.MessageBoxType +- uid: OpenTK.Platform.MessageBoxButton + commentId: T:OpenTK.Platform.MessageBoxButton + parent: OpenTK.Platform + href: OpenTK.Platform.MessageBoxButton.html + name: MessageBoxButton + nameWithType: MessageBoxButton + fullName: OpenTK.Platform.MessageBoxButton +- uid: OpenTK.Platform.Toolkit.Icon + commentId: P:OpenTK.Platform.Toolkit.Icon + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Icon + name: Icon + nameWithType: Toolkit.Icon + fullName: OpenTK.Platform.Toolkit.Icon +- uid: OpenTK.Platform.IIconComponent + commentId: T:OpenTK.Platform.IIconComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IIconComponent.html + name: IIconComponent + nameWithType: IIconComponent + fullName: OpenTK.Platform.IIconComponent - uid: OpenTK.Platform.Native.Windows.DialogComponent.ShowMessageBox* commentId: Overload:OpenTK.Platform.Native.Windows.DialogComponent.ShowMessageBox href: OpenTK.Platform.Native.Windows.DialogComponent.html#OpenTK_Platform_Native_Windows_DialogComponent_ShowMessageBox_OpenTK_Platform_WindowHandle_System_String_System_String_OpenTK_Platform_MessageBoxType_OpenTK_Platform_IconHandle_ @@ -995,13 +1155,6 @@ references: name: WindowHandle nameWithType: WindowHandle fullName: OpenTK.Platform.WindowHandle -- uid: OpenTK.Platform.MessageBoxType - commentId: T:OpenTK.Platform.MessageBoxType - parent: OpenTK.Platform - href: OpenTK.Platform.MessageBoxType.html - name: MessageBoxType - nameWithType: MessageBoxType - fullName: OpenTK.Platform.MessageBoxType - uid: OpenTK.Platform.IconHandle commentId: T:OpenTK.Platform.IconHandle parent: OpenTK.Platform @@ -1009,13 +1162,6 @@ references: name: IconHandle nameWithType: IconHandle fullName: OpenTK.Platform.IconHandle -- uid: OpenTK.Platform.MessageBoxButton - commentId: T:OpenTK.Platform.MessageBoxButton - parent: OpenTK.Platform - href: OpenTK.Platform.MessageBoxButton.html - name: MessageBoxButton - nameWithType: MessageBoxButton - fullName: OpenTK.Platform.MessageBoxButton - uid: OpenTK.Platform.DialogFileFilter commentId: T:OpenTK.Platform.DialogFileFilter parent: OpenTK.Platform diff --git a/api/OpenTK.Platform.Native.Windows.DisplayComponent.yml b/api/OpenTK.Platform.Native.Windows.DisplayComponent.yml index e96ecaef..7f2c5279 100644 --- a/api/OpenTK.Platform.Native.Windows.DisplayComponent.yml +++ b/api/OpenTK.Platform.Native.Windows.DisplayComponent.yml @@ -25,6 +25,7 @@ items: - OpenTK.Platform.Native.Windows.DisplayComponent.Open(System.Int32) - OpenTK.Platform.Native.Windows.DisplayComponent.OpenPrimary - OpenTK.Platform.Native.Windows.DisplayComponent.Provides + - OpenTK.Platform.Native.Windows.DisplayComponent.Uninitialize langs: - csharp - vb @@ -131,7 +132,7 @@ items: assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows - summary: Provides a logger for this component. + summary: The logger that this component uses to log diagnostic messages. example: [] syntax: content: public ILogger? Logger { get; set; } @@ -140,6 +141,11 @@ items: type: OpenTK.Core.Utility.ILogger content.vb: Public Property Logger As ILogger overload: OpenTK.Platform.Native.Windows.DisplayComponent.Logger* + seealso: + - linkId: OpenTK.Core.Utility.ILogger + commentId: T:OpenTK.Core.Utility.ILogger + - linkId: OpenTK.Platform.ToolkitOptions.Logger + commentId: P:OpenTK.Platform.ToolkitOptions.Logger implements: - OpenTK.Platform.IPalComponent.Logger - uid: OpenTK.Platform.Native.Windows.DisplayComponent.Initialize(OpenTK.Platform.ToolkitOptions) @@ -156,7 +162,7 @@ items: source: id: Initialize path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\DisplayComponent.cs - startLine: 256 + startLine: 259 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows @@ -170,8 +176,42 @@ items: description: The options to initialize the component with. content.vb: Public Sub Initialize(options As ToolkitOptions) overload: OpenTK.Platform.Native.Windows.DisplayComponent.Initialize* + seealso: + - linkId: OpenTK.Platform.ToolkitOptions + commentId: T:OpenTK.Platform.ToolkitOptions + - linkId: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) implements: - OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) +- uid: OpenTK.Platform.Native.Windows.DisplayComponent.Uninitialize + commentId: M:OpenTK.Platform.Native.Windows.DisplayComponent.Uninitialize + id: Uninitialize + parent: OpenTK.Platform.Native.Windows.DisplayComponent + langs: + - csharp + - vb + name: Uninitialize() + nameWithType: DisplayComponent.Uninitialize() + fullName: OpenTK.Platform.Native.Windows.DisplayComponent.Uninitialize() + type: Method + source: + id: Uninitialize + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\DisplayComponent.cs + startLine: 302 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform.Native.Windows + summary: Uninitialize the component. Frees any native resources used by the component. + example: [] + syntax: + content: public void Uninitialize() + content.vb: Public Sub Uninitialize() + overload: OpenTK.Platform.Native.Windows.DisplayComponent.Uninitialize* + seealso: + - linkId: OpenTK.Platform.Toolkit.Uninit + commentId: M:OpenTK.Platform.Toolkit.Uninit + implements: + - OpenTK.Platform.IPalComponent.Uninitialize - uid: OpenTK.Platform.Native.Windows.DisplayComponent.CanGetVirtualPosition commentId: P:OpenTK.Platform.Native.Windows.DisplayComponent.CanGetVirtualPosition id: CanGetVirtualPosition @@ -186,7 +226,7 @@ items: source: id: CanGetVirtualPosition path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\DisplayComponent.cs - startLine: 299 + startLine: 311 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows @@ -215,7 +255,7 @@ items: source: id: GetDisplayCount path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\DisplayComponent.cs - startLine: 302 + startLine: 314 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows @@ -244,7 +284,7 @@ items: source: id: Open path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\DisplayComponent.cs - startLine: 319 + startLine: 331 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows @@ -284,7 +324,7 @@ items: source: id: OpenPrimary path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\DisplayComponent.cs - startLine: 328 + startLine: 340 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows @@ -313,7 +353,7 @@ items: source: id: Close path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\DisplayComponent.cs - startLine: 342 + startLine: 354 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows @@ -347,7 +387,7 @@ items: source: id: IsPrimary path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\DisplayComponent.cs - startLine: 350 + startLine: 362 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows @@ -380,7 +420,7 @@ items: source: id: GetName path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\DisplayComponent.cs - startLine: 358 + startLine: 370 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows @@ -417,7 +457,7 @@ items: source: id: GetVideoMode path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\DisplayComponent.cs - startLine: 366 + startLine: 378 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows @@ -457,7 +497,7 @@ items: source: id: GetSupportedVideoModes path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\DisplayComponent.cs - startLine: 378 + startLine: 390 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows @@ -494,7 +534,7 @@ items: source: id: GetVirtualPosition path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\DisplayComponent.cs - startLine: 407 + startLine: 419 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows @@ -540,7 +580,7 @@ items: source: id: GetResolution path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\DisplayComponent.cs - startLine: 416 + startLine: 428 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows @@ -583,7 +623,7 @@ items: source: id: GetWorkArea path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\DisplayComponent.cs - startLine: 425 + startLine: 437 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows @@ -622,7 +662,7 @@ items: source: id: GetRefreshRate path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\DisplayComponent.cs - startLine: 435 + startLine: 447 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows @@ -658,7 +698,7 @@ items: source: id: GetDisplayScale path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\DisplayComponent.cs - startLine: 443 + startLine: 455 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows @@ -697,7 +737,7 @@ items: source: id: GetAdapter path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\DisplayComponent.cs - startLine: 465 + startLine: 477 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows @@ -728,7 +768,7 @@ items: source: id: GetMonitor path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\DisplayComponent.cs - startLine: 477 + startLine: 489 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows @@ -1101,6 +1141,19 @@ references: name: PalComponents nameWithType: PalComponents fullName: OpenTK.Platform.PalComponents +- uid: OpenTK.Core.Utility.ILogger + commentId: T:OpenTK.Core.Utility.ILogger + parent: OpenTK.Core.Utility + href: OpenTK.Core.Utility.ILogger.html + name: ILogger + nameWithType: ILogger + fullName: OpenTK.Core.Utility.ILogger +- uid: OpenTK.Platform.ToolkitOptions.Logger + commentId: P:OpenTK.Platform.ToolkitOptions.Logger + href: OpenTK.Platform.ToolkitOptions.html#OpenTK_Platform_ToolkitOptions_Logger + name: Logger + nameWithType: ToolkitOptions.Logger + fullName: OpenTK.Platform.ToolkitOptions.Logger - uid: OpenTK.Platform.Native.Windows.DisplayComponent.Logger* commentId: Overload:OpenTK.Platform.Native.Windows.DisplayComponent.Logger href: OpenTK.Platform.Native.Windows.DisplayComponent.html#OpenTK_Platform_Native_Windows_DisplayComponent_Logger @@ -1114,13 +1167,6 @@ references: name: Logger nameWithType: IPalComponent.Logger fullName: OpenTK.Platform.IPalComponent.Logger -- uid: OpenTK.Core.Utility.ILogger - commentId: T:OpenTK.Core.Utility.ILogger - parent: OpenTK.Core.Utility - href: OpenTK.Core.Utility.ILogger.html - name: ILogger - nameWithType: ILogger - fullName: OpenTK.Core.Utility.ILogger - uid: OpenTK.Core.Utility commentId: N:OpenTK.Core.Utility href: OpenTK.html @@ -1151,6 +1197,37 @@ references: - uid: OpenTK.Core.Utility name: Utility href: OpenTK.Core.Utility.html +- uid: OpenTK.Platform.ToolkitOptions + commentId: T:OpenTK.Platform.ToolkitOptions + parent: OpenTK.Platform + href: OpenTK.Platform.ToolkitOptions.html + name: ToolkitOptions + nameWithType: ToolkitOptions + fullName: OpenTK.Platform.ToolkitOptions +- uid: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Init_OpenTK_Platform_ToolkitOptions_ + name: Init(ToolkitOptions) + nameWithType: Toolkit.Init(ToolkitOptions) + fullName: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + spec.csharp: + - uid: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + name: Init + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Init_OpenTK_Platform_ToolkitOptions_ + - name: ( + - uid: OpenTK.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Platform.ToolkitOptions.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + name: Init + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Init_OpenTK_Platform_ToolkitOptions_ + - name: ( + - uid: OpenTK.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Platform.ToolkitOptions.html + - name: ) - uid: OpenTK.Platform.Native.Windows.DisplayComponent.Initialize* commentId: Overload:OpenTK.Platform.Native.Windows.DisplayComponent.Initialize href: OpenTK.Platform.Native.Windows.DisplayComponent.html#OpenTK_Platform_Native_Windows_DisplayComponent_Initialize_OpenTK_Platform_ToolkitOptions_ @@ -1182,13 +1259,49 @@ references: name: ToolkitOptions href: OpenTK.Platform.ToolkitOptions.html - name: ) -- uid: OpenTK.Platform.ToolkitOptions - commentId: T:OpenTK.Platform.ToolkitOptions - parent: OpenTK.Platform - href: OpenTK.Platform.ToolkitOptions.html - name: ToolkitOptions - nameWithType: ToolkitOptions - fullName: OpenTK.Platform.ToolkitOptions +- uid: OpenTK.Platform.Toolkit.Uninit + commentId: M:OpenTK.Platform.Toolkit.Uninit + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Uninit + name: Uninit() + nameWithType: Toolkit.Uninit() + fullName: OpenTK.Platform.Toolkit.Uninit() + spec.csharp: + - uid: OpenTK.Platform.Toolkit.Uninit + name: Uninit + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Uninit + - name: ( + - name: ) + spec.vb: + - uid: OpenTK.Platform.Toolkit.Uninit + name: Uninit + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Uninit + - name: ( + - name: ) +- uid: OpenTK.Platform.Native.Windows.DisplayComponent.Uninitialize* + commentId: Overload:OpenTK.Platform.Native.Windows.DisplayComponent.Uninitialize + href: OpenTK.Platform.Native.Windows.DisplayComponent.html#OpenTK_Platform_Native_Windows_DisplayComponent_Uninitialize + name: Uninitialize + nameWithType: DisplayComponent.Uninitialize + fullName: OpenTK.Platform.Native.Windows.DisplayComponent.Uninitialize +- uid: OpenTK.Platform.IPalComponent.Uninitialize + commentId: M:OpenTK.Platform.IPalComponent.Uninitialize + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + name: Uninitialize() + nameWithType: IPalComponent.Uninitialize() + fullName: OpenTK.Platform.IPalComponent.Uninitialize() + spec.csharp: + - uid: OpenTK.Platform.IPalComponent.Uninitialize + name: Uninitialize + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + - name: ( + - name: ) + spec.vb: + - uid: OpenTK.Platform.IPalComponent.Uninitialize + name: Uninitialize + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + - name: ( + - name: ) - uid: OpenTK.Platform.IDisplayComponent.GetVirtualPosition(OpenTK.Platform.DisplayHandle,System.Int32@,System.Int32@) commentId: M:OpenTK.Platform.IDisplayComponent.GetVirtualPosition(OpenTK.Platform.DisplayHandle,System.Int32@,System.Int32@) parent: OpenTK.Platform.IDisplayComponent diff --git a/api/OpenTK.Platform.Native.Windows.IconComponent.yml b/api/OpenTK.Platform.Native.Windows.IconComponent.yml index ca45e931..497a99ab 100644 --- a/api/OpenTK.Platform.Native.Windows.IconComponent.yml +++ b/api/OpenTK.Platform.Native.Windows.IconComponent.yml @@ -19,6 +19,7 @@ items: - OpenTK.Platform.Native.Windows.IconComponent.Logger - OpenTK.Platform.Native.Windows.IconComponent.Name - OpenTK.Platform.Native.Windows.IconComponent.Provides + - OpenTK.Platform.Native.Windows.IconComponent.Uninitialize langs: - csharp - vb @@ -125,7 +126,7 @@ items: assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows - summary: Provides a logger for this component. + summary: The logger that this component uses to log diagnostic messages. example: [] syntax: content: public ILogger? Logger { get; set; } @@ -134,6 +135,11 @@ items: type: OpenTK.Core.Utility.ILogger content.vb: Public Property Logger As ILogger overload: OpenTK.Platform.Native.Windows.IconComponent.Logger* + seealso: + - linkId: OpenTK.Core.Utility.ILogger + commentId: T:OpenTK.Core.Utility.ILogger + - linkId: OpenTK.Platform.ToolkitOptions.Logger + commentId: P:OpenTK.Platform.ToolkitOptions.Logger implements: - OpenTK.Platform.IPalComponent.Logger - uid: OpenTK.Platform.Native.Windows.IconComponent.Initialize(OpenTK.Platform.ToolkitOptions) @@ -164,8 +170,42 @@ items: description: The options to initialize the component with. content.vb: Public Sub Initialize(options As ToolkitOptions) overload: OpenTK.Platform.Native.Windows.IconComponent.Initialize* + seealso: + - linkId: OpenTK.Platform.ToolkitOptions + commentId: T:OpenTK.Platform.ToolkitOptions + - linkId: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) implements: - OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) +- uid: OpenTK.Platform.Native.Windows.IconComponent.Uninitialize + commentId: M:OpenTK.Platform.Native.Windows.IconComponent.Uninitialize + id: Uninitialize + parent: OpenTK.Platform.Native.Windows.IconComponent + langs: + - csharp + - vb + name: Uninitialize() + nameWithType: IconComponent.Uninitialize() + fullName: OpenTK.Platform.Native.Windows.IconComponent.Uninitialize() + type: Method + source: + id: Uninitialize + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\IconComponent.cs + startLine: 30 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform.Native.Windows + summary: Uninitialize the component. Frees any native resources used by the component. + example: [] + syntax: + content: public void Uninitialize() + content.vb: Public Sub Uninitialize() + overload: OpenTK.Platform.Native.Windows.IconComponent.Uninitialize* + seealso: + - linkId: OpenTK.Platform.Toolkit.Uninit + commentId: M:OpenTK.Platform.Toolkit.Uninit + implements: + - OpenTK.Platform.IPalComponent.Uninitialize - uid: OpenTK.Platform.Native.Windows.IconComponent.CanLoadSystemIcons commentId: P:OpenTK.Platform.Native.Windows.IconComponent.CanLoadSystemIcons id: CanLoadSystemIcons @@ -180,14 +220,14 @@ items: source: id: CanLoadSystemIcons path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\IconComponent.cs - startLine: 30 + startLine: 35 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: >- - True if icon objects can be populated from common system icons. + If common system icons can be created. - If this is true, then will work, otherwise an exception will be thrown. + If this is true then will work, otherwise an exception will be thrown. example: [] syntax: content: public bool CanLoadSystemIcons { get; } @@ -215,14 +255,14 @@ items: source: id: Create path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\IconComponent.cs - startLine: 33 + startLine: 38 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: >- Load a system icon. - Only works if is true. + Only works if is true. example: [] syntax: content: public IconHandle Create(SystemIconType systemIcon) @@ -235,6 +275,10 @@ items: description: A handle to the created system icon. content.vb: Public Function Create(systemIcon As SystemIconType) As IconHandle overload: OpenTK.Platform.Native.Windows.IconComponent.Create* + exceptions: + - type: System.PlatformNotSupportedException + commentId: T:System.PlatformNotSupportedException + description: Platform does not implement this function. See . seealso: - linkId: OpenTK.Platform.IIconComponent.CanLoadSystemIcons commentId: P:OpenTK.Platform.IIconComponent.CanLoadSystemIcons @@ -254,7 +298,7 @@ items: source: id: Create path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\IconComponent.cs - startLine: 73 + startLine: 78 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows @@ -271,12 +315,19 @@ items: description: Height of the bitmap. - id: data type: System.ReadOnlySpan{System.Byte} - description: Image data to load into icon. + description: Image data to load into icon in RGBA format. return: type: OpenTK.Platform.IconHandle description: A handle to the created icon. content.vb: Public Function Create(width As Integer, height As Integer, data As ReadOnlySpan(Of Byte)) As IconHandle overload: OpenTK.Platform.Native.Windows.IconComponent.Create* + exceptions: + - type: System.ArgumentOutOfRangeException + commentId: T:System.ArgumentOutOfRangeException + description: If width, or height are negative. + - type: System.ArgumentException + commentId: T:System.ArgumentException + description: data is smaller than specified dimensions. implements: - OpenTK.Platform.IIconComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte}) nameWithType.vb: IconComponent.Create(Integer, Integer, ReadOnlySpan(Of Byte)) @@ -296,7 +347,7 @@ items: source: id: CreateFromIcoFile path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\IconComponent.cs - startLine: 161 + startLine: 166 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows @@ -330,7 +381,7 @@ items: source: id: CreateFromIcoResource path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\IconComponent.cs - startLine: 188 + startLine: 193 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows @@ -367,7 +418,7 @@ items: source: id: CreateFromIcoResource path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\IconComponent.cs - startLine: 231 + startLine: 236 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows @@ -413,7 +464,7 @@ items: source: id: Destroy path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\IconComponent.cs - startLine: 248 + startLine: 253 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows @@ -427,10 +478,11 @@ items: description: Handle to the icon object to destroy. content.vb: Public Sub Destroy(handle As IconHandle) overload: OpenTK.Platform.Native.Windows.IconComponent.Destroy* - exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: handle is null. + seealso: + - linkId: OpenTK.Platform.IIconComponent.Create(OpenTK.Platform.SystemIconType) + commentId: M:OpenTK.Platform.IIconComponent.Create(OpenTK.Platform.SystemIconType) + - linkId: OpenTK.Platform.IIconComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte}) + commentId: M:OpenTK.Platform.IIconComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte}) implements: - OpenTK.Platform.IIconComponent.Destroy(OpenTK.Platform.IconHandle) - uid: OpenTK.Platform.Native.Windows.IconComponent.GetSize(OpenTK.Platform.IconHandle,System.Int32@,System.Int32@) @@ -447,7 +499,7 @@ items: source: id: GetSize path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\IconComponent.cs - startLine: 290 + startLine: 295 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows @@ -467,10 +519,6 @@ items: description: Height of icon. content.vb: Public Sub GetSize(handle As IconHandle, width As Integer, height As Integer) overload: OpenTK.Platform.Native.Windows.IconComponent.GetSize* - exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: handle is null. implements: - OpenTK.Platform.IIconComponent.GetSize(OpenTK.Platform.IconHandle,System.Int32@,System.Int32@) nameWithType.vb: IconComponent.GetSize(IconHandle, Integer, Integer) @@ -490,7 +538,7 @@ items: source: id: GetBitmapData path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\IconComponent.cs - startLine: 316 + startLine: 321 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows @@ -520,7 +568,7 @@ items: source: id: GetBitmapByteSize path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\IconComponent.cs - startLine: 442 + startLine: 447 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows @@ -889,6 +937,19 @@ references: name: PalComponents nameWithType: PalComponents fullName: OpenTK.Platform.PalComponents +- uid: OpenTK.Core.Utility.ILogger + commentId: T:OpenTK.Core.Utility.ILogger + parent: OpenTK.Core.Utility + href: OpenTK.Core.Utility.ILogger.html + name: ILogger + nameWithType: ILogger + fullName: OpenTK.Core.Utility.ILogger +- uid: OpenTK.Platform.ToolkitOptions.Logger + commentId: P:OpenTK.Platform.ToolkitOptions.Logger + href: OpenTK.Platform.ToolkitOptions.html#OpenTK_Platform_ToolkitOptions_Logger + name: Logger + nameWithType: ToolkitOptions.Logger + fullName: OpenTK.Platform.ToolkitOptions.Logger - uid: OpenTK.Platform.Native.Windows.IconComponent.Logger* commentId: Overload:OpenTK.Platform.Native.Windows.IconComponent.Logger href: OpenTK.Platform.Native.Windows.IconComponent.html#OpenTK_Platform_Native_Windows_IconComponent_Logger @@ -902,13 +963,6 @@ references: name: Logger nameWithType: IPalComponent.Logger fullName: OpenTK.Platform.IPalComponent.Logger -- uid: OpenTK.Core.Utility.ILogger - commentId: T:OpenTK.Core.Utility.ILogger - parent: OpenTK.Core.Utility - href: OpenTK.Core.Utility.ILogger.html - name: ILogger - nameWithType: ILogger - fullName: OpenTK.Core.Utility.ILogger - uid: OpenTK.Core.Utility commentId: N:OpenTK.Core.Utility href: OpenTK.html @@ -939,6 +993,37 @@ references: - uid: OpenTK.Core.Utility name: Utility href: OpenTK.Core.Utility.html +- uid: OpenTK.Platform.ToolkitOptions + commentId: T:OpenTK.Platform.ToolkitOptions + parent: OpenTK.Platform + href: OpenTK.Platform.ToolkitOptions.html + name: ToolkitOptions + nameWithType: ToolkitOptions + fullName: OpenTK.Platform.ToolkitOptions +- uid: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Init_OpenTK_Platform_ToolkitOptions_ + name: Init(ToolkitOptions) + nameWithType: Toolkit.Init(ToolkitOptions) + fullName: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + spec.csharp: + - uid: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + name: Init + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Init_OpenTK_Platform_ToolkitOptions_ + - name: ( + - uid: OpenTK.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Platform.ToolkitOptions.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + name: Init + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Init_OpenTK_Platform_ToolkitOptions_ + - name: ( + - uid: OpenTK.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Platform.ToolkitOptions.html + - name: ) - uid: OpenTK.Platform.Native.Windows.IconComponent.Initialize* commentId: Overload:OpenTK.Platform.Native.Windows.IconComponent.Initialize href: OpenTK.Platform.Native.Windows.IconComponent.html#OpenTK_Platform_Native_Windows_IconComponent_Initialize_OpenTK_Platform_ToolkitOptions_ @@ -970,13 +1055,49 @@ references: name: ToolkitOptions href: OpenTK.Platform.ToolkitOptions.html - name: ) -- uid: OpenTK.Platform.ToolkitOptions - commentId: T:OpenTK.Platform.ToolkitOptions - parent: OpenTK.Platform - href: OpenTK.Platform.ToolkitOptions.html - name: ToolkitOptions - nameWithType: ToolkitOptions - fullName: OpenTK.Platform.ToolkitOptions +- uid: OpenTK.Platform.Toolkit.Uninit + commentId: M:OpenTK.Platform.Toolkit.Uninit + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Uninit + name: Uninit() + nameWithType: Toolkit.Uninit() + fullName: OpenTK.Platform.Toolkit.Uninit() + spec.csharp: + - uid: OpenTK.Platform.Toolkit.Uninit + name: Uninit + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Uninit + - name: ( + - name: ) + spec.vb: + - uid: OpenTK.Platform.Toolkit.Uninit + name: Uninit + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Uninit + - name: ( + - name: ) +- uid: OpenTK.Platform.Native.Windows.IconComponent.Uninitialize* + commentId: Overload:OpenTK.Platform.Native.Windows.IconComponent.Uninitialize + href: OpenTK.Platform.Native.Windows.IconComponent.html#OpenTK_Platform_Native_Windows_IconComponent_Uninitialize + name: Uninitialize + nameWithType: IconComponent.Uninitialize + fullName: OpenTK.Platform.Native.Windows.IconComponent.Uninitialize +- uid: OpenTK.Platform.IPalComponent.Uninitialize + commentId: M:OpenTK.Platform.IPalComponent.Uninitialize + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + name: Uninitialize() + nameWithType: IPalComponent.Uninitialize() + fullName: OpenTK.Platform.IPalComponent.Uninitialize() + spec.csharp: + - uid: OpenTK.Platform.IPalComponent.Uninitialize + name: Uninitialize + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + - name: ( + - name: ) + spec.vb: + - uid: OpenTK.Platform.IPalComponent.Uninitialize + name: Uninitialize + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + - name: ( + - name: ) - uid: OpenTK.Platform.IIconComponent.Create(OpenTK.Platform.SystemIconType) commentId: M:OpenTK.Platform.IIconComponent.Create(OpenTK.Platform.SystemIconType) parent: OpenTK.Platform.IIconComponent @@ -1026,6 +1147,13 @@ references: nameWithType.vb: Boolean fullName.vb: Boolean name.vb: Boolean +- uid: System.PlatformNotSupportedException + commentId: T:System.PlatformNotSupportedException + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.platformnotsupportedexception + name: PlatformNotSupportedException + nameWithType: PlatformNotSupportedException + fullName: System.PlatformNotSupportedException - uid: OpenTK.Platform.Native.Windows.IconComponent.Create* commentId: Overload:OpenTK.Platform.Native.Windows.IconComponent.Create href: OpenTK.Platform.Native.Windows.IconComponent.html#OpenTK_Platform_Native_Windows_IconComponent_Create_OpenTK_Platform_SystemIconType_ @@ -1046,6 +1174,20 @@ references: name: IconHandle nameWithType: IconHandle fullName: OpenTK.Platform.IconHandle +- uid: System.ArgumentOutOfRangeException + commentId: T:System.ArgumentOutOfRangeException + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.argumentoutofrangeexception + name: ArgumentOutOfRangeException + nameWithType: ArgumentOutOfRangeException + fullName: System.ArgumentOutOfRangeException +- uid: System.ArgumentException + commentId: T:System.ArgumentException + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.argumentexception + name: ArgumentException + nameWithType: ArgumentException + fullName: System.ArgumentException - uid: OpenTK.Platform.IIconComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte}) commentId: M:OpenTK.Platform.IIconComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte}) parent: OpenTK.Platform.IIconComponent @@ -1284,13 +1426,6 @@ references: href: https://learn.microsoft.com/dotnet/api/system.byte - name: ( - name: ) -- uid: System.ArgumentNullException - commentId: T:System.ArgumentNullException - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.argumentnullexception - name: ArgumentNullException - nameWithType: ArgumentNullException - fullName: System.ArgumentNullException - uid: OpenTK.Platform.Native.Windows.IconComponent.Destroy* commentId: Overload:OpenTK.Platform.Native.Windows.IconComponent.Destroy href: OpenTK.Platform.Native.Windows.IconComponent.html#OpenTK_Platform_Native_Windows_IconComponent_Destroy_OpenTK_Platform_IconHandle_ diff --git a/api/OpenTK.Platform.Native.Windows.JoystickComponent.yml b/api/OpenTK.Platform.Native.Windows.JoystickComponent.yml index c457b852..916a687d 100644 --- a/api/OpenTK.Platform.Native.Windows.JoystickComponent.yml +++ b/api/OpenTK.Platform.Native.Windows.JoystickComponent.yml @@ -25,6 +25,7 @@ items: - OpenTK.Platform.Native.Windows.JoystickComponent.SupportsVibration(OpenTK.Platform.JoystickHandle) - OpenTK.Platform.Native.Windows.JoystickComponent.TriggerThreshold - OpenTK.Platform.Native.Windows.JoystickComponent.TryGetBatteryInfo(OpenTK.Platform.JoystickHandle,OpenTK.Platform.GamepadBatteryInfo@) + - OpenTK.Platform.Native.Windows.JoystickComponent.Uninitialize langs: - csharp - vb @@ -133,7 +134,7 @@ items: assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows - summary: Provides a logger for this component. + summary: The logger that this component uses to log diagnostic messages. example: [] syntax: content: public ILogger? Logger { get; set; } @@ -142,6 +143,11 @@ items: type: OpenTK.Core.Utility.ILogger content.vb: Public Property Logger As ILogger overload: OpenTK.Platform.Native.Windows.JoystickComponent.Logger* + seealso: + - linkId: OpenTK.Core.Utility.ILogger + commentId: T:OpenTK.Core.Utility.ILogger + - linkId: OpenTK.Platform.ToolkitOptions.Logger + commentId: P:OpenTK.Platform.ToolkitOptions.Logger implements: - OpenTK.Platform.IPalComponent.Logger - uid: OpenTK.Platform.Native.Windows.JoystickComponent.LeftDeadzone @@ -259,8 +265,42 @@ items: description: The options to initialize the component with. content.vb: Public Sub Initialize(options As ToolkitOptions) overload: OpenTK.Platform.Native.Windows.JoystickComponent.Initialize* + seealso: + - linkId: OpenTK.Platform.ToolkitOptions + commentId: T:OpenTK.Platform.ToolkitOptions + - linkId: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) implements: - OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) +- uid: OpenTK.Platform.Native.Windows.JoystickComponent.Uninitialize + commentId: M:OpenTK.Platform.Native.Windows.JoystickComponent.Uninitialize + id: Uninitialize + parent: OpenTK.Platform.Native.Windows.JoystickComponent + langs: + - csharp + - vb + name: Uninitialize() + nameWithType: JoystickComponent.Uninitialize() + fullName: OpenTK.Platform.Native.Windows.JoystickComponent.Uninitialize() + type: Method + source: + id: Uninitialize + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\JoystickComponent.cs + startLine: 110 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform.Native.Windows + summary: Uninitialize the component. Frees any native resources used by the component. + example: [] + syntax: + content: public void Uninitialize() + content.vb: Public Sub Uninitialize() + overload: OpenTK.Platform.Native.Windows.JoystickComponent.Uninitialize* + seealso: + - linkId: OpenTK.Platform.Toolkit.Uninit + commentId: M:OpenTK.Platform.Toolkit.Uninit + implements: + - OpenTK.Platform.IPalComponent.Uninitialize - uid: OpenTK.Platform.Native.Windows.JoystickComponent.IsConnected(System.Int32) commentId: M:OpenTK.Platform.Native.Windows.JoystickComponent.IsConnected(System.Int32) id: IsConnected(System.Int32) @@ -275,7 +315,7 @@ items: source: id: IsConnected path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\JoystickComponent.cs - startLine: 110 + startLine: 116 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows @@ -310,7 +350,7 @@ items: source: id: Open path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\JoystickComponent.cs - startLine: 117 + startLine: 123 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows @@ -345,7 +385,7 @@ items: source: id: Close path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\JoystickComponent.cs - startLine: 125 + startLine: 131 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows @@ -375,7 +415,7 @@ items: source: id: SupportsVibration path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\JoystickComponent.cs - startLine: 131 + startLine: 137 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows @@ -402,7 +442,7 @@ items: source: id: GetGuid path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\JoystickComponent.cs - startLine: 151 + startLine: 157 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows @@ -432,7 +472,7 @@ items: source: id: GetName path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\JoystickComponent.cs - startLine: 159 + startLine: 165 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows @@ -462,7 +502,7 @@ items: source: id: GetNumberOfButtons path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\JoystickComponent.cs - startLine: 166 + startLine: 172 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows @@ -489,7 +529,7 @@ items: source: id: GetNumberOfAxes path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\JoystickComponent.cs - startLine: 173 + startLine: 179 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows @@ -516,7 +556,7 @@ items: source: id: SupportsForceFeedback path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\JoystickComponent.cs - startLine: 180 + startLine: 186 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows @@ -543,7 +583,7 @@ items: source: id: GetAxis path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\JoystickComponent.cs - startLine: 188 + startLine: 194 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows @@ -582,7 +622,7 @@ items: source: id: GetButton path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\JoystickComponent.cs - startLine: 230 + startLine: 236 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows @@ -618,7 +658,7 @@ items: source: id: SetVibration path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\JoystickComponent.cs - startLine: 266 + startLine: 272 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows @@ -655,7 +695,7 @@ items: source: id: TryGetBatteryInfo path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\JoystickComponent.cs - startLine: 281 + startLine: 287 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows @@ -1032,6 +1072,19 @@ references: name: PalComponents nameWithType: PalComponents fullName: OpenTK.Platform.PalComponents +- uid: OpenTK.Core.Utility.ILogger + commentId: T:OpenTK.Core.Utility.ILogger + parent: OpenTK.Core.Utility + href: OpenTK.Core.Utility.ILogger.html + name: ILogger + nameWithType: ILogger + fullName: OpenTK.Core.Utility.ILogger +- uid: OpenTK.Platform.ToolkitOptions.Logger + commentId: P:OpenTK.Platform.ToolkitOptions.Logger + href: OpenTK.Platform.ToolkitOptions.html#OpenTK_Platform_ToolkitOptions_Logger + name: Logger + nameWithType: ToolkitOptions.Logger + fullName: OpenTK.Platform.ToolkitOptions.Logger - uid: OpenTK.Platform.Native.Windows.JoystickComponent.Logger* commentId: Overload:OpenTK.Platform.Native.Windows.JoystickComponent.Logger href: OpenTK.Platform.Native.Windows.JoystickComponent.html#OpenTK_Platform_Native_Windows_JoystickComponent_Logger @@ -1045,13 +1098,6 @@ references: name: Logger nameWithType: IPalComponent.Logger fullName: OpenTK.Platform.IPalComponent.Logger -- uid: OpenTK.Core.Utility.ILogger - commentId: T:OpenTK.Core.Utility.ILogger - parent: OpenTK.Core.Utility - href: OpenTK.Core.Utility.ILogger.html - name: ILogger - nameWithType: ILogger - fullName: OpenTK.Core.Utility.ILogger - uid: OpenTK.Core.Utility commentId: N:OpenTK.Core.Utility href: OpenTK.html @@ -1132,6 +1178,37 @@ references: name: TriggerThreshold nameWithType: IJoystickComponent.TriggerThreshold fullName: OpenTK.Platform.IJoystickComponent.TriggerThreshold +- uid: OpenTK.Platform.ToolkitOptions + commentId: T:OpenTK.Platform.ToolkitOptions + parent: OpenTK.Platform + href: OpenTK.Platform.ToolkitOptions.html + name: ToolkitOptions + nameWithType: ToolkitOptions + fullName: OpenTK.Platform.ToolkitOptions +- uid: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Init_OpenTK_Platform_ToolkitOptions_ + name: Init(ToolkitOptions) + nameWithType: Toolkit.Init(ToolkitOptions) + fullName: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + spec.csharp: + - uid: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + name: Init + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Init_OpenTK_Platform_ToolkitOptions_ + - name: ( + - uid: OpenTK.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Platform.ToolkitOptions.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + name: Init + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Init_OpenTK_Platform_ToolkitOptions_ + - name: ( + - uid: OpenTK.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Platform.ToolkitOptions.html + - name: ) - uid: OpenTK.Platform.Native.Windows.JoystickComponent.Initialize* commentId: Overload:OpenTK.Platform.Native.Windows.JoystickComponent.Initialize href: OpenTK.Platform.Native.Windows.JoystickComponent.html#OpenTK_Platform_Native_Windows_JoystickComponent_Initialize_OpenTK_Platform_ToolkitOptions_ @@ -1163,13 +1240,49 @@ references: name: ToolkitOptions href: OpenTK.Platform.ToolkitOptions.html - name: ) -- uid: OpenTK.Platform.ToolkitOptions - commentId: T:OpenTK.Platform.ToolkitOptions - parent: OpenTK.Platform - href: OpenTK.Platform.ToolkitOptions.html - name: ToolkitOptions - nameWithType: ToolkitOptions - fullName: OpenTK.Platform.ToolkitOptions +- uid: OpenTK.Platform.Toolkit.Uninit + commentId: M:OpenTK.Platform.Toolkit.Uninit + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Uninit + name: Uninit() + nameWithType: Toolkit.Uninit() + fullName: OpenTK.Platform.Toolkit.Uninit() + spec.csharp: + - uid: OpenTK.Platform.Toolkit.Uninit + name: Uninit + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Uninit + - name: ( + - name: ) + spec.vb: + - uid: OpenTK.Platform.Toolkit.Uninit + name: Uninit + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Uninit + - name: ( + - name: ) +- uid: OpenTK.Platform.Native.Windows.JoystickComponent.Uninitialize* + commentId: Overload:OpenTK.Platform.Native.Windows.JoystickComponent.Uninitialize + href: OpenTK.Platform.Native.Windows.JoystickComponent.html#OpenTK_Platform_Native_Windows_JoystickComponent_Uninitialize + name: Uninitialize + nameWithType: JoystickComponent.Uninitialize + fullName: OpenTK.Platform.Native.Windows.JoystickComponent.Uninitialize +- uid: OpenTK.Platform.IPalComponent.Uninitialize + commentId: M:OpenTK.Platform.IPalComponent.Uninitialize + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + name: Uninitialize() + nameWithType: IPalComponent.Uninitialize() + fullName: OpenTK.Platform.IPalComponent.Uninitialize() + spec.csharp: + - uid: OpenTK.Platform.IPalComponent.Uninitialize + name: Uninitialize + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + - name: ( + - name: ) + spec.vb: + - uid: OpenTK.Platform.IPalComponent.Uninitialize + name: Uninitialize + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + - name: ( + - name: ) - uid: OpenTK.Platform.Native.Windows.JoystickComponent.IsConnected* commentId: Overload:OpenTK.Platform.Native.Windows.JoystickComponent.IsConnected href: OpenTK.Platform.Native.Windows.JoystickComponent.html#OpenTK_Platform_Native_Windows_JoystickComponent_IsConnected_System_Int32_ diff --git a/api/OpenTK.Platform.Native.Windows.KeyboardComponent.yml b/api/OpenTK.Platform.Native.Windows.KeyboardComponent.yml index ca5d24bc..38347cee 100644 --- a/api/OpenTK.Platform.Native.Windows.KeyboardComponent.yml +++ b/api/OpenTK.Platform.Native.Windows.KeyboardComponent.yml @@ -20,6 +20,7 @@ items: - OpenTK.Platform.Native.Windows.KeyboardComponent.SetImeRectangle(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) - OpenTK.Platform.Native.Windows.KeyboardComponent.SupportsIme - OpenTK.Platform.Native.Windows.KeyboardComponent.SupportsLayouts + - OpenTK.Platform.Native.Windows.KeyboardComponent.Uninitialize langs: - csharp - vb @@ -126,7 +127,7 @@ items: assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows - summary: Provides a logger for this component. + summary: The logger that this component uses to log diagnostic messages. example: [] syntax: content: public ILogger? Logger { get; set; } @@ -135,6 +136,11 @@ items: type: OpenTK.Core.Utility.ILogger content.vb: Public Property Logger As ILogger overload: OpenTK.Platform.Native.Windows.KeyboardComponent.Logger* + seealso: + - linkId: OpenTK.Core.Utility.ILogger + commentId: T:OpenTK.Core.Utility.ILogger + - linkId: OpenTK.Platform.ToolkitOptions.Logger + commentId: P:OpenTK.Platform.ToolkitOptions.Logger implements: - OpenTK.Platform.IPalComponent.Logger - uid: OpenTK.Platform.Native.Windows.KeyboardComponent.Initialize(OpenTK.Platform.ToolkitOptions) @@ -165,8 +171,42 @@ items: description: The options to initialize the component with. content.vb: Public Sub Initialize(options As ToolkitOptions) overload: OpenTK.Platform.Native.Windows.KeyboardComponent.Initialize* + seealso: + - linkId: OpenTK.Platform.ToolkitOptions + commentId: T:OpenTK.Platform.ToolkitOptions + - linkId: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) implements: - OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) +- uid: OpenTK.Platform.Native.Windows.KeyboardComponent.Uninitialize + commentId: M:OpenTK.Platform.Native.Windows.KeyboardComponent.Uninitialize + id: Uninitialize + parent: OpenTK.Platform.Native.Windows.KeyboardComponent + langs: + - csharp + - vb + name: Uninitialize() + nameWithType: KeyboardComponent.Uninitialize() + fullName: OpenTK.Platform.Native.Windows.KeyboardComponent.Uninitialize() + type: Method + source: + id: Uninitialize + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\KeyboardComponent.cs + startLine: 50 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform.Native.Windows + summary: Uninitialize the component. Frees any native resources used by the component. + example: [] + syntax: + content: public void Uninitialize() + content.vb: Public Sub Uninitialize() + overload: OpenTK.Platform.Native.Windows.KeyboardComponent.Uninitialize* + seealso: + - linkId: OpenTK.Platform.Toolkit.Uninit + commentId: M:OpenTK.Platform.Toolkit.Uninit + implements: + - OpenTK.Platform.IPalComponent.Uninitialize - uid: OpenTK.Platform.Native.Windows.KeyboardComponent.SupportsLayouts commentId: P:OpenTK.Platform.Native.Windows.KeyboardComponent.SupportsLayouts id: SupportsLayouts @@ -181,7 +221,7 @@ items: source: id: SupportsLayouts path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\KeyboardComponent.cs - startLine: 137 + startLine: 144 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows @@ -210,7 +250,7 @@ items: source: id: SupportsIme path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\KeyboardComponent.cs - startLine: 140 + startLine: 147 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows @@ -239,7 +279,7 @@ items: source: id: GetActiveKeyboardLayout path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\KeyboardComponent.cs - startLine: 211 + startLine: 218 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows @@ -279,7 +319,7 @@ items: source: id: GetAvailableKeyboardLayouts path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\KeyboardComponent.cs - startLine: 226 + startLine: 233 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows @@ -309,7 +349,7 @@ items: source: id: GetScancodeFromKey path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\KeyboardComponent.cs - startLine: 257 + startLine: 264 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows @@ -336,6 +376,9 @@ items: or if no scancode produces the key. content.vb: Public Function GetScancodeFromKey(key As Key) As Scancode overload: OpenTK.Platform.Native.Windows.KeyboardComponent.GetScancodeFromKey* + seealso: + - linkId: OpenTK.Platform.IKeyboardComponent.GetKeyFromScancode(OpenTK.Platform.Scancode) + commentId: M:OpenTK.Platform.IKeyboardComponent.GetKeyFromScancode(OpenTK.Platform.Scancode) implements: - OpenTK.Platform.IKeyboardComponent.GetScancodeFromKey(OpenTK.Platform.Key) - uid: OpenTK.Platform.Native.Windows.KeyboardComponent.GetKeyFromScancode(OpenTK.Platform.Scancode) @@ -352,7 +395,7 @@ items: source: id: GetKeyFromScancode path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\KeyboardComponent.cs - startLine: 264 + startLine: 271 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows @@ -375,6 +418,9 @@ items: or if the scancode can't be mapped to a key. content.vb: Public Function GetKeyFromScancode(scancode As Scancode) As Key overload: OpenTK.Platform.Native.Windows.KeyboardComponent.GetKeyFromScancode* + seealso: + - linkId: OpenTK.Platform.IKeyboardComponent.GetScancodeFromKey(OpenTK.Platform.Key) + commentId: M:OpenTK.Platform.IKeyboardComponent.GetScancodeFromKey(OpenTK.Platform.Key) implements: - OpenTK.Platform.IKeyboardComponent.GetKeyFromScancode(OpenTK.Platform.Scancode) - uid: OpenTK.Platform.Native.Windows.KeyboardComponent.GetKeyboardState(System.Boolean[]) @@ -391,7 +437,7 @@ items: source: id: GetKeyboardState path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\KeyboardComponent.cs - startLine: 270 + startLine: 277 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows @@ -410,6 +456,9 @@ items: description: An array to be filled with the keyboard state. content.vb: Public Sub GetKeyboardState(keyboardState As Boolean()) overload: OpenTK.Platform.Native.Windows.KeyboardComponent.GetKeyboardState* + seealso: + - linkId: OpenTK.Platform.IKeyboardComponent.GetKeyboardModifiers + commentId: M:OpenTK.Platform.IKeyboardComponent.GetKeyboardModifiers implements: - OpenTK.Platform.IKeyboardComponent.GetKeyboardState(System.Boolean[]) nameWithType.vb: KeyboardComponent.GetKeyboardState(Boolean()) @@ -429,7 +478,7 @@ items: source: id: GetKeyboardModifiers path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\KeyboardComponent.cs - startLine: 319 + startLine: 326 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows @@ -442,6 +491,9 @@ items: description: The current keyboard modifiers. content.vb: Public Function GetKeyboardModifiers() As KeyModifier overload: OpenTK.Platform.Native.Windows.KeyboardComponent.GetKeyboardModifiers* + seealso: + - linkId: OpenTK.Platform.IKeyboardComponent.GetKeyboardState(System.Boolean[]) + commentId: M:OpenTK.Platform.IKeyboardComponent.GetKeyboardState(System.Boolean[]) implements: - OpenTK.Platform.IKeyboardComponent.GetKeyboardModifiers - uid: OpenTK.Platform.Native.Windows.KeyboardComponent.BeginIme(OpenTK.Platform.WindowHandle) @@ -458,7 +510,7 @@ items: source: id: BeginIme path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\KeyboardComponent.cs - startLine: 327 + startLine: 334 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows @@ -488,7 +540,7 @@ items: source: id: SetImeRectangle path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\KeyboardComponent.cs - startLine: 339 + startLine: 346 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows @@ -533,7 +585,7 @@ items: source: id: EndIme path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\KeyboardComponent.cs - startLine: 360 + startLine: 367 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows @@ -905,6 +957,19 @@ references: name: PalComponents nameWithType: PalComponents fullName: OpenTK.Platform.PalComponents +- uid: OpenTK.Core.Utility.ILogger + commentId: T:OpenTK.Core.Utility.ILogger + parent: OpenTK.Core.Utility + href: OpenTK.Core.Utility.ILogger.html + name: ILogger + nameWithType: ILogger + fullName: OpenTK.Core.Utility.ILogger +- uid: OpenTK.Platform.ToolkitOptions.Logger + commentId: P:OpenTK.Platform.ToolkitOptions.Logger + href: OpenTK.Platform.ToolkitOptions.html#OpenTK_Platform_ToolkitOptions_Logger + name: Logger + nameWithType: ToolkitOptions.Logger + fullName: OpenTK.Platform.ToolkitOptions.Logger - uid: OpenTK.Platform.Native.Windows.KeyboardComponent.Logger* commentId: Overload:OpenTK.Platform.Native.Windows.KeyboardComponent.Logger href: OpenTK.Platform.Native.Windows.KeyboardComponent.html#OpenTK_Platform_Native_Windows_KeyboardComponent_Logger @@ -918,13 +983,6 @@ references: name: Logger nameWithType: IPalComponent.Logger fullName: OpenTK.Platform.IPalComponent.Logger -- uid: OpenTK.Core.Utility.ILogger - commentId: T:OpenTK.Core.Utility.ILogger - parent: OpenTK.Core.Utility - href: OpenTK.Core.Utility.ILogger.html - name: ILogger - nameWithType: ILogger - fullName: OpenTK.Core.Utility.ILogger - uid: OpenTK.Core.Utility commentId: N:OpenTK.Core.Utility href: OpenTK.html @@ -955,6 +1013,37 @@ references: - uid: OpenTK.Core.Utility name: Utility href: OpenTK.Core.Utility.html +- uid: OpenTK.Platform.ToolkitOptions + commentId: T:OpenTK.Platform.ToolkitOptions + parent: OpenTK.Platform + href: OpenTK.Platform.ToolkitOptions.html + name: ToolkitOptions + nameWithType: ToolkitOptions + fullName: OpenTK.Platform.ToolkitOptions +- uid: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Init_OpenTK_Platform_ToolkitOptions_ + name: Init(ToolkitOptions) + nameWithType: Toolkit.Init(ToolkitOptions) + fullName: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + spec.csharp: + - uid: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + name: Init + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Init_OpenTK_Platform_ToolkitOptions_ + - name: ( + - uid: OpenTK.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Platform.ToolkitOptions.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + name: Init + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Init_OpenTK_Platform_ToolkitOptions_ + - name: ( + - uid: OpenTK.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Platform.ToolkitOptions.html + - name: ) - uid: OpenTK.Platform.Native.Windows.KeyboardComponent.Initialize* commentId: Overload:OpenTK.Platform.Native.Windows.KeyboardComponent.Initialize href: OpenTK.Platform.Native.Windows.KeyboardComponent.html#OpenTK_Platform_Native_Windows_KeyboardComponent_Initialize_OpenTK_Platform_ToolkitOptions_ @@ -986,13 +1075,49 @@ references: name: ToolkitOptions href: OpenTK.Platform.ToolkitOptions.html - name: ) -- uid: OpenTK.Platform.ToolkitOptions - commentId: T:OpenTK.Platform.ToolkitOptions - parent: OpenTK.Platform - href: OpenTK.Platform.ToolkitOptions.html - name: ToolkitOptions - nameWithType: ToolkitOptions - fullName: OpenTK.Platform.ToolkitOptions +- uid: OpenTK.Platform.Toolkit.Uninit + commentId: M:OpenTK.Platform.Toolkit.Uninit + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Uninit + name: Uninit() + nameWithType: Toolkit.Uninit() + fullName: OpenTK.Platform.Toolkit.Uninit() + spec.csharp: + - uid: OpenTK.Platform.Toolkit.Uninit + name: Uninit + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Uninit + - name: ( + - name: ) + spec.vb: + - uid: OpenTK.Platform.Toolkit.Uninit + name: Uninit + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Uninit + - name: ( + - name: ) +- uid: OpenTK.Platform.Native.Windows.KeyboardComponent.Uninitialize* + commentId: Overload:OpenTK.Platform.Native.Windows.KeyboardComponent.Uninitialize + href: OpenTK.Platform.Native.Windows.KeyboardComponent.html#OpenTK_Platform_Native_Windows_KeyboardComponent_Uninitialize + name: Uninitialize + nameWithType: KeyboardComponent.Uninitialize + fullName: OpenTK.Platform.Native.Windows.KeyboardComponent.Uninitialize +- uid: OpenTK.Platform.IPalComponent.Uninitialize + commentId: M:OpenTK.Platform.IPalComponent.Uninitialize + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + name: Uninitialize() + nameWithType: IPalComponent.Uninitialize() + fullName: OpenTK.Platform.IPalComponent.Uninitialize() + spec.csharp: + - uid: OpenTK.Platform.IPalComponent.Uninitialize + name: Uninitialize + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + - name: ( + - name: ) + spec.vb: + - uid: OpenTK.Platform.IPalComponent.Uninitialize + name: Uninitialize + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + - name: ( + - name: ) - uid: OpenTK.Platform.Native.Windows.KeyboardComponent.SupportsLayouts* commentId: Overload:OpenTK.Platform.Native.Windows.KeyboardComponent.SupportsLayouts href: OpenTK.Platform.Native.Windows.KeyboardComponent.html#OpenTK_Platform_Native_Windows_KeyboardComponent_SupportsLayouts @@ -1122,6 +1247,31 @@ references: href: https://learn.microsoft.com/dotnet/api/system.string - name: ( - name: ) +- uid: OpenTK.Platform.IKeyboardComponent.GetKeyFromScancode(OpenTK.Platform.Scancode) + commentId: M:OpenTK.Platform.IKeyboardComponent.GetKeyFromScancode(OpenTK.Platform.Scancode) + parent: OpenTK.Platform.IKeyboardComponent + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_GetKeyFromScancode_OpenTK_Platform_Scancode_ + name: GetKeyFromScancode(Scancode) + nameWithType: IKeyboardComponent.GetKeyFromScancode(Scancode) + fullName: OpenTK.Platform.IKeyboardComponent.GetKeyFromScancode(OpenTK.Platform.Scancode) + spec.csharp: + - uid: OpenTK.Platform.IKeyboardComponent.GetKeyFromScancode(OpenTK.Platform.Scancode) + name: GetKeyFromScancode + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_GetKeyFromScancode_OpenTK_Platform_Scancode_ + - name: ( + - uid: OpenTK.Platform.Scancode + name: Scancode + href: OpenTK.Platform.Scancode.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IKeyboardComponent.GetKeyFromScancode(OpenTK.Platform.Scancode) + name: GetKeyFromScancode + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_GetKeyFromScancode_OpenTK_Platform_Scancode_ + - name: ( + - uid: OpenTK.Platform.Scancode + name: Scancode + href: OpenTK.Platform.Scancode.html + - name: ) - uid: OpenTK.Platform.Scancode commentId: T:OpenTK.Platform.Scancode parent: OpenTK.Platform @@ -1185,30 +1335,24 @@ references: name: GetKeyFromScancode nameWithType: KeyboardComponent.GetKeyFromScancode fullName: OpenTK.Platform.Native.Windows.KeyboardComponent.GetKeyFromScancode -- uid: OpenTK.Platform.IKeyboardComponent.GetKeyFromScancode(OpenTK.Platform.Scancode) - commentId: M:OpenTK.Platform.IKeyboardComponent.GetKeyFromScancode(OpenTK.Platform.Scancode) +- uid: OpenTK.Platform.IKeyboardComponent.GetKeyboardModifiers + commentId: M:OpenTK.Platform.IKeyboardComponent.GetKeyboardModifiers parent: OpenTK.Platform.IKeyboardComponent - href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_GetKeyFromScancode_OpenTK_Platform_Scancode_ - name: GetKeyFromScancode(Scancode) - nameWithType: IKeyboardComponent.GetKeyFromScancode(Scancode) - fullName: OpenTK.Platform.IKeyboardComponent.GetKeyFromScancode(OpenTK.Platform.Scancode) + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_GetKeyboardModifiers + name: GetKeyboardModifiers() + nameWithType: IKeyboardComponent.GetKeyboardModifiers() + fullName: OpenTK.Platform.IKeyboardComponent.GetKeyboardModifiers() spec.csharp: - - uid: OpenTK.Platform.IKeyboardComponent.GetKeyFromScancode(OpenTK.Platform.Scancode) - name: GetKeyFromScancode - href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_GetKeyFromScancode_OpenTK_Platform_Scancode_ + - uid: OpenTK.Platform.IKeyboardComponent.GetKeyboardModifiers + name: GetKeyboardModifiers + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_GetKeyboardModifiers - name: ( - - uid: OpenTK.Platform.Scancode - name: Scancode - href: OpenTK.Platform.Scancode.html - name: ) spec.vb: - - uid: OpenTK.Platform.IKeyboardComponent.GetKeyFromScancode(OpenTK.Platform.Scancode) - name: GetKeyFromScancode - href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_GetKeyFromScancode_OpenTK_Platform_Scancode_ + - uid: OpenTK.Platform.IKeyboardComponent.GetKeyboardModifiers + name: GetKeyboardModifiers + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_GetKeyboardModifiers - name: ( - - uid: OpenTK.Platform.Scancode - name: Scancode - href: OpenTK.Platform.Scancode.html - name: ) - uid: OpenTK.Platform.Native.Windows.KeyboardComponent.GetKeyboardState* commentId: Overload:OpenTK.Platform.Native.Windows.KeyboardComponent.GetKeyboardState @@ -1280,25 +1424,6 @@ references: name: GetKeyboardModifiers nameWithType: KeyboardComponent.GetKeyboardModifiers fullName: OpenTK.Platform.Native.Windows.KeyboardComponent.GetKeyboardModifiers -- uid: OpenTK.Platform.IKeyboardComponent.GetKeyboardModifiers - commentId: M:OpenTK.Platform.IKeyboardComponent.GetKeyboardModifiers - parent: OpenTK.Platform.IKeyboardComponent - href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_GetKeyboardModifiers - name: GetKeyboardModifiers() - nameWithType: IKeyboardComponent.GetKeyboardModifiers() - fullName: OpenTK.Platform.IKeyboardComponent.GetKeyboardModifiers() - spec.csharp: - - uid: OpenTK.Platform.IKeyboardComponent.GetKeyboardModifiers - name: GetKeyboardModifiers - href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_GetKeyboardModifiers - - name: ( - - name: ) - spec.vb: - - uid: OpenTK.Platform.IKeyboardComponent.GetKeyboardModifiers - name: GetKeyboardModifiers - href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_GetKeyboardModifiers - - name: ( - - name: ) - uid: OpenTK.Platform.KeyModifier commentId: T:OpenTK.Platform.KeyModifier parent: OpenTK.Platform diff --git a/api/OpenTK.Platform.Native.Windows.MouseComponent.yml b/api/OpenTK.Platform.Native.Windows.MouseComponent.yml index ebc1dd35..16aa8599 100644 --- a/api/OpenTK.Platform.Native.Windows.MouseComponent.yml +++ b/api/OpenTK.Platform.Native.Windows.MouseComponent.yml @@ -7,15 +7,18 @@ items: children: - OpenTK.Platform.Native.Windows.MouseComponent.CanSetMousePosition - OpenTK.Platform.Native.Windows.MouseComponent.EnableRawMouseMotion(OpenTK.Platform.WindowHandle,System.Boolean) - - OpenTK.Platform.Native.Windows.MouseComponent.GetMouseState(OpenTK.Platform.MouseState@) - - OpenTK.Platform.Native.Windows.MouseComponent.GetPosition(System.Int32@,System.Int32@) + - OpenTK.Platform.Native.Windows.MouseComponent.GetGlobalMouseState(OpenTK.Platform.MouseState@) + - OpenTK.Platform.Native.Windows.MouseComponent.GetGlobalPosition(OpenTK.Mathematics.Vector2@) + - OpenTK.Platform.Native.Windows.MouseComponent.GetMouseState(OpenTK.Platform.WindowHandle,OpenTK.Platform.MouseState@) + - OpenTK.Platform.Native.Windows.MouseComponent.GetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2@) - OpenTK.Platform.Native.Windows.MouseComponent.Initialize(OpenTK.Platform.ToolkitOptions) - OpenTK.Platform.Native.Windows.MouseComponent.IsRawMouseMotionEnabled(OpenTK.Platform.WindowHandle) - OpenTK.Platform.Native.Windows.MouseComponent.Logger - OpenTK.Platform.Native.Windows.MouseComponent.Name - OpenTK.Platform.Native.Windows.MouseComponent.Provides - - OpenTK.Platform.Native.Windows.MouseComponent.SetPosition(System.Int32,System.Int32) + - OpenTK.Platform.Native.Windows.MouseComponent.SetGlobalPosition(OpenTK.Mathematics.Vector2) - OpenTK.Platform.Native.Windows.MouseComponent.SupportsRawMouseMotion + - OpenTK.Platform.Native.Windows.MouseComponent.Uninitialize langs: - csharp - vb @@ -26,7 +29,7 @@ items: source: id: MouseComponent path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\MouseComponent.cs - startLine: 14 + startLine: 15 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows @@ -60,7 +63,7 @@ items: source: id: Name path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\MouseComponent.cs - startLine: 17 + startLine: 18 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows @@ -89,7 +92,7 @@ items: source: id: Provides path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\MouseComponent.cs - startLine: 20 + startLine: 21 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows @@ -118,11 +121,11 @@ items: source: id: Logger path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\MouseComponent.cs - startLine: 23 + startLine: 24 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows - summary: Provides a logger for this component. + summary: The logger that this component uses to log diagnostic messages. example: [] syntax: content: public ILogger? Logger { get; set; } @@ -131,6 +134,11 @@ items: type: OpenTK.Core.Utility.ILogger content.vb: Public Property Logger As ILogger overload: OpenTK.Platform.Native.Windows.MouseComponent.Logger* + seealso: + - linkId: OpenTK.Core.Utility.ILogger + commentId: T:OpenTK.Core.Utility.ILogger + - linkId: OpenTK.Platform.ToolkitOptions.Logger + commentId: P:OpenTK.Platform.ToolkitOptions.Logger implements: - OpenTK.Platform.IPalComponent.Logger - uid: OpenTK.Platform.Native.Windows.MouseComponent.Initialize(OpenTK.Platform.ToolkitOptions) @@ -147,7 +155,7 @@ items: source: id: Initialize path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\MouseComponent.cs - startLine: 26 + startLine: 27 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows @@ -161,8 +169,42 @@ items: description: The options to initialize the component with. content.vb: Public Sub Initialize(options As ToolkitOptions) overload: OpenTK.Platform.Native.Windows.MouseComponent.Initialize* + seealso: + - linkId: OpenTK.Platform.ToolkitOptions + commentId: T:OpenTK.Platform.ToolkitOptions + - linkId: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) implements: - OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) +- uid: OpenTK.Platform.Native.Windows.MouseComponent.Uninitialize + commentId: M:OpenTK.Platform.Native.Windows.MouseComponent.Uninitialize + id: Uninitialize + parent: OpenTK.Platform.Native.Windows.MouseComponent + langs: + - csharp + - vb + name: Uninitialize() + nameWithType: MouseComponent.Uninitialize() + fullName: OpenTK.Platform.Native.Windows.MouseComponent.Uninitialize() + type: Method + source: + id: Uninitialize + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\MouseComponent.cs + startLine: 32 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform.Native.Windows + summary: Uninitialize the component. Frees any native resources used by the component. + example: [] + syntax: + content: public void Uninitialize() + content.vb: Public Sub Uninitialize() + overload: OpenTK.Platform.Native.Windows.MouseComponent.Uninitialize* + seealso: + - linkId: OpenTK.Platform.Toolkit.Uninit + commentId: M:OpenTK.Platform.Toolkit.Uninit + implements: + - OpenTK.Platform.IPalComponent.Uninitialize - uid: OpenTK.Platform.Native.Windows.MouseComponent.CanSetMousePosition commentId: P:OpenTK.Platform.Native.Windows.MouseComponent.CanSetMousePosition id: CanSetMousePosition @@ -177,11 +219,11 @@ items: source: id: CanSetMousePosition path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\MouseComponent.cs - startLine: 31 + startLine: 37 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows - summary: If it's possible to set the position of the mouse using . + summary: If it's possible to set the position of the mouse using . example: [] syntax: content: public bool CanSetMousePosition { get; } @@ -191,8 +233,8 @@ items: content.vb: Public ReadOnly Property CanSetMousePosition As Boolean overload: OpenTK.Platform.Native.Windows.MouseComponent.CanSetMousePosition* seealso: - - linkId: OpenTK.Platform.IMouseComponent.SetPosition(System.Int32,System.Int32) - commentId: M:OpenTK.Platform.IMouseComponent.SetPosition(System.Int32,System.Int32) + - linkId: OpenTK.Platform.IMouseComponent.SetGlobalPosition(OpenTK.Mathematics.Vector2) + commentId: M:OpenTK.Platform.IMouseComponent.SetGlobalPosition(OpenTK.Mathematics.Vector2) implements: - OpenTK.Platform.IMouseComponent.CanSetMousePosition - uid: OpenTK.Platform.Native.Windows.MouseComponent.SupportsRawMouseMotion @@ -209,7 +251,7 @@ items: source: id: SupportsRawMouseMotion path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\MouseComponent.cs - startLine: 34 + startLine: 40 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows @@ -232,117 +274,220 @@ items: commentId: M:OpenTK.Platform.IMouseComponent.EnableRawMouseMotion(OpenTK.Platform.WindowHandle,System.Boolean) implements: - OpenTK.Platform.IMouseComponent.SupportsRawMouseMotion -- uid: OpenTK.Platform.Native.Windows.MouseComponent.GetPosition(System.Int32@,System.Int32@) - commentId: M:OpenTK.Platform.Native.Windows.MouseComponent.GetPosition(System.Int32@,System.Int32@) - id: GetPosition(System.Int32@,System.Int32@) +- uid: OpenTK.Platform.Native.Windows.MouseComponent.GetGlobalPosition(OpenTK.Mathematics.Vector2@) + commentId: M:OpenTK.Platform.Native.Windows.MouseComponent.GetGlobalPosition(OpenTK.Mathematics.Vector2@) + id: GetGlobalPosition(OpenTK.Mathematics.Vector2@) parent: OpenTK.Platform.Native.Windows.MouseComponent langs: - csharp - vb - name: GetPosition(out int, out int) - nameWithType: MouseComponent.GetPosition(out int, out int) - fullName: OpenTK.Platform.Native.Windows.MouseComponent.GetPosition(out int, out int) + name: GetGlobalPosition(out Vector2) + nameWithType: MouseComponent.GetGlobalPosition(out Vector2) + fullName: OpenTK.Platform.Native.Windows.MouseComponent.GetGlobalPosition(out OpenTK.Mathematics.Vector2) + type: Method + source: + id: GetGlobalPosition + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\MouseComponent.cs + startLine: 43 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform.Native.Windows + summary: >- + Get the global mouse cursor position. + + This function may query the mouse position outside of event processing to get the position of the mouse at the time this function is called. + + The mouse position returned is the mouse position as it is on screen, it will not return virtual coordinates when using . + example: [] + syntax: + content: public void GetGlobalPosition(out Vector2 globalPosition) + parameters: + - id: globalPosition + type: OpenTK.Mathematics.Vector2 + description: Coordinate of the mouse in screen coordinates. + content.vb: Public Sub GetGlobalPosition(globalPosition As Vector2) + overload: OpenTK.Platform.Native.Windows.MouseComponent.GetGlobalPosition* + seealso: + - linkId: OpenTK.Platform.IMouseComponent.GetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2@) + commentId: M:OpenTK.Platform.IMouseComponent.GetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2@) + - linkId: OpenTK.Platform.IMouseComponent.SetGlobalPosition(OpenTK.Mathematics.Vector2) + commentId: M:OpenTK.Platform.IMouseComponent.SetGlobalPosition(OpenTK.Mathematics.Vector2) + implements: + - OpenTK.Platform.IMouseComponent.GetGlobalPosition(OpenTK.Mathematics.Vector2@) + nameWithType.vb: MouseComponent.GetGlobalPosition(Vector2) + fullName.vb: OpenTK.Platform.Native.Windows.MouseComponent.GetGlobalPosition(OpenTK.Mathematics.Vector2) + name.vb: GetGlobalPosition(Vector2) +- uid: OpenTK.Platform.Native.Windows.MouseComponent.GetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2@) + commentId: M:OpenTK.Platform.Native.Windows.MouseComponent.GetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2@) + id: GetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2@) + parent: OpenTK.Platform.Native.Windows.MouseComponent + langs: + - csharp + - vb + name: GetPosition(WindowHandle, out Vector2) + nameWithType: MouseComponent.GetPosition(WindowHandle, out Vector2) + fullName: OpenTK.Platform.Native.Windows.MouseComponent.GetPosition(OpenTK.Platform.WindowHandle, out OpenTK.Mathematics.Vector2) type: Method source: id: GetPosition path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\MouseComponent.cs - startLine: 37 + startLine: 57 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows - summary: Get the mouse cursor position. + summary: >- + Gets the mouse position as seen from the specified window. + + This function takes into consideration only the mouse events that the specified window has received and does not represent global state. + + If the window has locked the cursor using , this function will return virtual coordinates (unlike GetGlobalPosition(out Vector2i)). example: [] syntax: - content: public void GetPosition(out int x, out int y) + content: public void GetPosition(WindowHandle window, out Vector2 position) parameters: - - id: x - type: System.Int32 - description: X coordinate of the mouse in desktop space. - - id: y - type: System.Int32 - description: Y coordinate of the mouse in desktop space. - content.vb: Public Sub GetPosition(x As Integer, y As Integer) + - id: window + type: OpenTK.Platform.WindowHandle + description: The window to get the mouse position for. + - id: position + type: OpenTK.Mathematics.Vector2 + description: Coordinate of the mouse in client coordinates. + content.vb: Public Sub GetPosition(window As WindowHandle, position As Vector2) overload: OpenTK.Platform.Native.Windows.MouseComponent.GetPosition* + seealso: + - linkId: OpenTK.Platform.IMouseComponent.GetGlobalPosition(OpenTK.Mathematics.Vector2@) + commentId: M:OpenTK.Platform.IMouseComponent.GetGlobalPosition(OpenTK.Mathematics.Vector2@) implements: - - OpenTK.Platform.IMouseComponent.GetPosition(System.Int32@,System.Int32@) - nameWithType.vb: MouseComponent.GetPosition(Integer, Integer) - fullName.vb: OpenTK.Platform.Native.Windows.MouseComponent.GetPosition(Integer, Integer) - name.vb: GetPosition(Integer, Integer) -- uid: OpenTK.Platform.Native.Windows.MouseComponent.SetPosition(System.Int32,System.Int32) - commentId: M:OpenTK.Platform.Native.Windows.MouseComponent.SetPosition(System.Int32,System.Int32) - id: SetPosition(System.Int32,System.Int32) + - OpenTK.Platform.IMouseComponent.GetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2@) + nameWithType.vb: MouseComponent.GetPosition(WindowHandle, Vector2) + fullName.vb: OpenTK.Platform.Native.Windows.MouseComponent.GetPosition(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2) + name.vb: GetPosition(WindowHandle, Vector2) +- uid: OpenTK.Platform.Native.Windows.MouseComponent.SetGlobalPosition(OpenTK.Mathematics.Vector2) + commentId: M:OpenTK.Platform.Native.Windows.MouseComponent.SetGlobalPosition(OpenTK.Mathematics.Vector2) + id: SetGlobalPosition(OpenTK.Mathematics.Vector2) parent: OpenTK.Platform.Native.Windows.MouseComponent langs: - csharp - vb - name: SetPosition(int, int) - nameWithType: MouseComponent.SetPosition(int, int) - fullName: OpenTK.Platform.Native.Windows.MouseComponent.SetPosition(int, int) + name: SetGlobalPosition(Vector2) + nameWithType: MouseComponent.SetGlobalPosition(Vector2) + fullName: OpenTK.Platform.Native.Windows.MouseComponent.SetGlobalPosition(OpenTK.Mathematics.Vector2) type: Method source: - id: SetPosition + id: SetGlobalPosition path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\MouseComponent.cs - startLine: 51 + startLine: 72 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: >- - Set the mouse cursor position. + Set the global mouse cursor position. Check that is true before using this. example: [] syntax: - content: public void SetPosition(int x, int y) + content: public void SetGlobalPosition(Vector2 newGlobalPosition) parameters: - - id: x - type: System.Int32 - description: X coordinate of the mouse in desktop space. - - id: y - type: System.Int32 - description: Y coordinate of the mouse in desktop space. - content.vb: Public Sub SetPosition(x As Integer, y As Integer) - overload: OpenTK.Platform.Native.Windows.MouseComponent.SetPosition* + - id: newGlobalPosition + type: OpenTK.Mathematics.Vector2 + description: New coordinate of the mouse in screen space. + content.vb: Public Sub SetGlobalPosition(newGlobalPosition As Vector2) + overload: OpenTK.Platform.Native.Windows.MouseComponent.SetGlobalPosition* seealso: + - linkId: OpenTK.Platform.IMouseComponent.GetGlobalPosition(OpenTK.Mathematics.Vector2@) + commentId: M:OpenTK.Platform.IMouseComponent.GetGlobalPosition(OpenTK.Mathematics.Vector2@) - linkId: OpenTK.Platform.IMouseComponent.CanSetMousePosition commentId: P:OpenTK.Platform.IMouseComponent.CanSetMousePosition implements: - - OpenTK.Platform.IMouseComponent.SetPosition(System.Int32,System.Int32) - nameWithType.vb: MouseComponent.SetPosition(Integer, Integer) - fullName.vb: OpenTK.Platform.Native.Windows.MouseComponent.SetPosition(Integer, Integer) - name.vb: SetPosition(Integer, Integer) -- uid: OpenTK.Platform.Native.Windows.MouseComponent.GetMouseState(OpenTK.Platform.MouseState@) - commentId: M:OpenTK.Platform.Native.Windows.MouseComponent.GetMouseState(OpenTK.Platform.MouseState@) - id: GetMouseState(OpenTK.Platform.MouseState@) + - OpenTK.Platform.IMouseComponent.SetGlobalPosition(OpenTK.Mathematics.Vector2) +- uid: OpenTK.Platform.Native.Windows.MouseComponent.GetGlobalMouseState(OpenTK.Platform.MouseState@) + commentId: M:OpenTK.Platform.Native.Windows.MouseComponent.GetGlobalMouseState(OpenTK.Platform.MouseState@) + id: GetGlobalMouseState(OpenTK.Platform.MouseState@) parent: OpenTK.Platform.Native.Windows.MouseComponent langs: - csharp - vb - name: GetMouseState(out MouseState) - nameWithType: MouseComponent.GetMouseState(out MouseState) - fullName: OpenTK.Platform.Native.Windows.MouseComponent.GetMouseState(out OpenTK.Platform.MouseState) + name: GetGlobalMouseState(out MouseState) + nameWithType: MouseComponent.GetGlobalMouseState(out MouseState) + fullName: OpenTK.Platform.Native.Windows.MouseComponent.GetGlobalMouseState(out OpenTK.Platform.MouseState) + type: Method + source: + id: GetGlobalMouseState + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\MouseComponent.cs + startLine: 113 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform.Native.Windows + summary: >- + Fills the state struct with the current mouse state. + + This function may query the mouse state outside of event processing to get the position of the mouse at the time this function is called. + + The will be the screen mouse position and not virtual coordinates described by . + + The is in window screen coordinates. + example: [] + syntax: + content: public void GetGlobalMouseState(out MouseState state) + parameters: + - id: state + type: OpenTK.Platform.MouseState + description: The current mouse state. + content.vb: Public Sub GetGlobalMouseState(state As MouseState) + overload: OpenTK.Platform.Native.Windows.MouseComponent.GetGlobalMouseState* + seealso: + - linkId: OpenTK.Platform.IMouseComponent.GetMouseState(OpenTK.Platform.WindowHandle,OpenTK.Platform.MouseState@) + commentId: M:OpenTK.Platform.IMouseComponent.GetMouseState(OpenTK.Platform.WindowHandle,OpenTK.Platform.MouseState@) + implements: + - OpenTK.Platform.IMouseComponent.GetGlobalMouseState(OpenTK.Platform.MouseState@) + nameWithType.vb: MouseComponent.GetGlobalMouseState(MouseState) + fullName.vb: OpenTK.Platform.Native.Windows.MouseComponent.GetGlobalMouseState(OpenTK.Platform.MouseState) + name.vb: GetGlobalMouseState(MouseState) +- uid: OpenTK.Platform.Native.Windows.MouseComponent.GetMouseState(OpenTK.Platform.WindowHandle,OpenTK.Platform.MouseState@) + commentId: M:OpenTK.Platform.Native.Windows.MouseComponent.GetMouseState(OpenTK.Platform.WindowHandle,OpenTK.Platform.MouseState@) + id: GetMouseState(OpenTK.Platform.WindowHandle,OpenTK.Platform.MouseState@) + parent: OpenTK.Platform.Native.Windows.MouseComponent + langs: + - csharp + - vb + name: GetMouseState(WindowHandle, out MouseState) + nameWithType: MouseComponent.GetMouseState(WindowHandle, out MouseState) + fullName: OpenTK.Platform.Native.Windows.MouseComponent.GetMouseState(OpenTK.Platform.WindowHandle, out OpenTK.Platform.MouseState) type: Method source: id: GetMouseState path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\MouseComponent.cs - startLine: 75 + startLine: 148 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows - summary: Fills the state struct with the current mouse state. + summary: >- + Fills the state struct with the current mouse state for the specified window. + + This function takes into consideration only the mouse events that the specified window has received and does not represent global state. + + If the window has locked the cursor using , this function will return virtual coordinates (unlike ). + + The is in window relative coordinates. example: [] syntax: - content: public void GetMouseState(out MouseState state) + content: public void GetMouseState(WindowHandle window, out MouseState state) parameters: + - id: window + type: OpenTK.Platform.WindowHandle + description: The window to get the mouse state from. - id: state type: OpenTK.Platform.MouseState description: The current mouse state. - content.vb: Public Sub GetMouseState(state As MouseState) + content.vb: Public Sub GetMouseState(window As WindowHandle, state As MouseState) overload: OpenTK.Platform.Native.Windows.MouseComponent.GetMouseState* + seealso: + - linkId: OpenTK.Platform.IMouseComponent.GetGlobalMouseState(OpenTK.Platform.MouseState@) + commentId: M:OpenTK.Platform.IMouseComponent.GetGlobalMouseState(OpenTK.Platform.MouseState@) implements: - - OpenTK.Platform.IMouseComponent.GetMouseState(OpenTK.Platform.MouseState@) - nameWithType.vb: MouseComponent.GetMouseState(MouseState) - fullName.vb: OpenTK.Platform.Native.Windows.MouseComponent.GetMouseState(OpenTK.Platform.MouseState) - name.vb: GetMouseState(MouseState) + - OpenTK.Platform.IMouseComponent.GetMouseState(OpenTK.Platform.WindowHandle,OpenTK.Platform.MouseState@) + nameWithType.vb: MouseComponent.GetMouseState(WindowHandle, MouseState) + fullName.vb: OpenTK.Platform.Native.Windows.MouseComponent.GetMouseState(OpenTK.Platform.WindowHandle, OpenTK.Platform.MouseState) + name.vb: GetMouseState(WindowHandle, MouseState) - uid: OpenTK.Platform.Native.Windows.MouseComponent.IsRawMouseMotionEnabled(OpenTK.Platform.WindowHandle) commentId: M:OpenTK.Platform.Native.Windows.MouseComponent.IsRawMouseMotionEnabled(OpenTK.Platform.WindowHandle) id: IsRawMouseMotionEnabled(OpenTK.Platform.WindowHandle) @@ -357,7 +502,7 @@ items: source: id: IsRawMouseMotionEnabled path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\MouseComponent.cs - startLine: 111 + startLine: 157 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows @@ -379,6 +524,8 @@ items: seealso: - linkId: OpenTK.Platform.IMouseComponent.SupportsRawMouseMotion commentId: P:OpenTK.Platform.IMouseComponent.SupportsRawMouseMotion + - linkId: OpenTK.Platform.IMouseComponent.EnableRawMouseMotion(OpenTK.Platform.WindowHandle,System.Boolean) + commentId: M:OpenTK.Platform.IMouseComponent.EnableRawMouseMotion(OpenTK.Platform.WindowHandle,System.Boolean) implements: - OpenTK.Platform.IMouseComponent.IsRawMouseMotionEnabled(OpenTK.Platform.WindowHandle) - uid: OpenTK.Platform.Native.Windows.MouseComponent.EnableRawMouseMotion(OpenTK.Platform.WindowHandle,System.Boolean) @@ -395,7 +542,7 @@ items: source: id: EnableRawMouseMotion path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\MouseComponent.cs - startLine: 118 + startLine: 164 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows @@ -781,6 +928,19 @@ references: name: PalComponents nameWithType: PalComponents fullName: OpenTK.Platform.PalComponents +- uid: OpenTK.Core.Utility.ILogger + commentId: T:OpenTK.Core.Utility.ILogger + parent: OpenTK.Core.Utility + href: OpenTK.Core.Utility.ILogger.html + name: ILogger + nameWithType: ILogger + fullName: OpenTK.Core.Utility.ILogger +- uid: OpenTK.Platform.ToolkitOptions.Logger + commentId: P:OpenTK.Platform.ToolkitOptions.Logger + href: OpenTK.Platform.ToolkitOptions.html#OpenTK_Platform_ToolkitOptions_Logger + name: Logger + nameWithType: ToolkitOptions.Logger + fullName: OpenTK.Platform.ToolkitOptions.Logger - uid: OpenTK.Platform.Native.Windows.MouseComponent.Logger* commentId: Overload:OpenTK.Platform.Native.Windows.MouseComponent.Logger href: OpenTK.Platform.Native.Windows.MouseComponent.html#OpenTK_Platform_Native_Windows_MouseComponent_Logger @@ -794,13 +954,6 @@ references: name: Logger nameWithType: IPalComponent.Logger fullName: OpenTK.Platform.IPalComponent.Logger -- uid: OpenTK.Core.Utility.ILogger - commentId: T:OpenTK.Core.Utility.ILogger - parent: OpenTK.Core.Utility - href: OpenTK.Core.Utility.ILogger.html - name: ILogger - nameWithType: ILogger - fullName: OpenTK.Core.Utility.ILogger - uid: OpenTK.Core.Utility commentId: N:OpenTK.Core.Utility href: OpenTK.html @@ -831,6 +984,37 @@ references: - uid: OpenTK.Core.Utility name: Utility href: OpenTK.Core.Utility.html +- uid: OpenTK.Platform.ToolkitOptions + commentId: T:OpenTK.Platform.ToolkitOptions + parent: OpenTK.Platform + href: OpenTK.Platform.ToolkitOptions.html + name: ToolkitOptions + nameWithType: ToolkitOptions + fullName: OpenTK.Platform.ToolkitOptions +- uid: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Init_OpenTK_Platform_ToolkitOptions_ + name: Init(ToolkitOptions) + nameWithType: Toolkit.Init(ToolkitOptions) + fullName: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + spec.csharp: + - uid: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + name: Init + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Init_OpenTK_Platform_ToolkitOptions_ + - name: ( + - uid: OpenTK.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Platform.ToolkitOptions.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + name: Init + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Init_OpenTK_Platform_ToolkitOptions_ + - name: ( + - uid: OpenTK.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Platform.ToolkitOptions.html + - name: ) - uid: OpenTK.Platform.Native.Windows.MouseComponent.Initialize* commentId: Overload:OpenTK.Platform.Native.Windows.MouseComponent.Initialize href: OpenTK.Platform.Native.Windows.MouseComponent.html#OpenTK_Platform_Native_Windows_MouseComponent_Initialize_OpenTK_Platform_ToolkitOptions_ @@ -862,55 +1046,73 @@ references: name: ToolkitOptions href: OpenTK.Platform.ToolkitOptions.html - name: ) -- uid: OpenTK.Platform.ToolkitOptions - commentId: T:OpenTK.Platform.ToolkitOptions - parent: OpenTK.Platform - href: OpenTK.Platform.ToolkitOptions.html - name: ToolkitOptions - nameWithType: ToolkitOptions - fullName: OpenTK.Platform.ToolkitOptions -- uid: OpenTK.Platform.IMouseComponent.SetPosition(System.Int32,System.Int32) - commentId: M:OpenTK.Platform.IMouseComponent.SetPosition(System.Int32,System.Int32) +- uid: OpenTK.Platform.Toolkit.Uninit + commentId: M:OpenTK.Platform.Toolkit.Uninit + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Uninit + name: Uninit() + nameWithType: Toolkit.Uninit() + fullName: OpenTK.Platform.Toolkit.Uninit() + spec.csharp: + - uid: OpenTK.Platform.Toolkit.Uninit + name: Uninit + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Uninit + - name: ( + - name: ) + spec.vb: + - uid: OpenTK.Platform.Toolkit.Uninit + name: Uninit + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Uninit + - name: ( + - name: ) +- uid: OpenTK.Platform.Native.Windows.MouseComponent.Uninitialize* + commentId: Overload:OpenTK.Platform.Native.Windows.MouseComponent.Uninitialize + href: OpenTK.Platform.Native.Windows.MouseComponent.html#OpenTK_Platform_Native_Windows_MouseComponent_Uninitialize + name: Uninitialize + nameWithType: MouseComponent.Uninitialize + fullName: OpenTK.Platform.Native.Windows.MouseComponent.Uninitialize +- uid: OpenTK.Platform.IPalComponent.Uninitialize + commentId: M:OpenTK.Platform.IPalComponent.Uninitialize + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + name: Uninitialize() + nameWithType: IPalComponent.Uninitialize() + fullName: OpenTK.Platform.IPalComponent.Uninitialize() + spec.csharp: + - uid: OpenTK.Platform.IPalComponent.Uninitialize + name: Uninitialize + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + - name: ( + - name: ) + spec.vb: + - uid: OpenTK.Platform.IPalComponent.Uninitialize + name: Uninitialize + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + - name: ( + - name: ) +- uid: OpenTK.Platform.IMouseComponent.SetGlobalPosition(OpenTK.Mathematics.Vector2) + commentId: M:OpenTK.Platform.IMouseComponent.SetGlobalPosition(OpenTK.Mathematics.Vector2) parent: OpenTK.Platform.IMouseComponent - isExternal: true - href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_SetPosition_System_Int32_System_Int32_ - name: SetPosition(int, int) - nameWithType: IMouseComponent.SetPosition(int, int) - fullName: OpenTK.Platform.IMouseComponent.SetPosition(int, int) - nameWithType.vb: IMouseComponent.SetPosition(Integer, Integer) - fullName.vb: OpenTK.Platform.IMouseComponent.SetPosition(Integer, Integer) - name.vb: SetPosition(Integer, Integer) + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_SetGlobalPosition_OpenTK_Mathematics_Vector2_ + name: SetGlobalPosition(Vector2) + nameWithType: IMouseComponent.SetGlobalPosition(Vector2) + fullName: OpenTK.Platform.IMouseComponent.SetGlobalPosition(OpenTK.Mathematics.Vector2) spec.csharp: - - uid: OpenTK.Platform.IMouseComponent.SetPosition(System.Int32,System.Int32) - name: SetPosition - href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_SetPosition_System_Int32_System_Int32_ + - uid: OpenTK.Platform.IMouseComponent.SetGlobalPosition(OpenTK.Mathematics.Vector2) + name: SetGlobalPosition + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_SetGlobalPosition_OpenTK_Mathematics_Vector2_ - name: ( - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 + - uid: OpenTK.Mathematics.Vector2 + name: Vector2 + href: OpenTK.Mathematics.Vector2.html - name: ) spec.vb: - - uid: OpenTK.Platform.IMouseComponent.SetPosition(System.Int32,System.Int32) - name: SetPosition - href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_SetPosition_System_Int32_System_Int32_ + - uid: OpenTK.Platform.IMouseComponent.SetGlobalPosition(OpenTK.Mathematics.Vector2) + name: SetGlobalPosition + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_SetGlobalPosition_OpenTK_Mathematics_Vector2_ - name: ( - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 + - uid: OpenTK.Mathematics.Vector2 + name: Vector2 + href: OpenTK.Mathematics.Vector2.html - name: ) - uid: OpenTK.Platform.Native.Windows.MouseComponent.CanSetMousePosition* commentId: Overload:OpenTK.Platform.Native.Windows.MouseComponent.CanSetMousePosition @@ -1015,96 +1217,202 @@ references: name: SupportsRawMouseMotion nameWithType: IMouseComponent.SupportsRawMouseMotion fullName: OpenTK.Platform.IMouseComponent.SupportsRawMouseMotion +- uid: OpenTK.Platform.IMouseComponent.GetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2@) + commentId: M:OpenTK.Platform.IMouseComponent.GetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2@) + parent: OpenTK.Platform.IMouseComponent + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_GetPosition_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2__ + name: GetPosition(WindowHandle, out Vector2) + nameWithType: IMouseComponent.GetPosition(WindowHandle, out Vector2) + fullName: OpenTK.Platform.IMouseComponent.GetPosition(OpenTK.Platform.WindowHandle, out OpenTK.Mathematics.Vector2) + nameWithType.vb: IMouseComponent.GetPosition(WindowHandle, Vector2) + fullName.vb: OpenTK.Platform.IMouseComponent.GetPosition(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2) + name.vb: GetPosition(WindowHandle, Vector2) + spec.csharp: + - uid: OpenTK.Platform.IMouseComponent.GetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2@) + name: GetPosition + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_GetPosition_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2__ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - name: out + - name: " " + - uid: OpenTK.Mathematics.Vector2 + name: Vector2 + href: OpenTK.Mathematics.Vector2.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IMouseComponent.GetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2@) + name: GetPosition + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_GetPosition_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2__ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: OpenTK.Mathematics.Vector2 + name: Vector2 + href: OpenTK.Mathematics.Vector2.html + - name: ) +- uid: OpenTK.Platform.CursorCaptureMode.Locked + commentId: F:OpenTK.Platform.CursorCaptureMode.Locked + href: OpenTK.Platform.CursorCaptureMode.html#OpenTK_Platform_CursorCaptureMode_Locked + name: Locked + nameWithType: CursorCaptureMode.Locked + fullName: OpenTK.Platform.CursorCaptureMode.Locked +- uid: OpenTK.Platform.Native.Windows.MouseComponent.GetGlobalPosition* + commentId: Overload:OpenTK.Platform.Native.Windows.MouseComponent.GetGlobalPosition + href: OpenTK.Platform.Native.Windows.MouseComponent.html#OpenTK_Platform_Native_Windows_MouseComponent_GetGlobalPosition_OpenTK_Mathematics_Vector2__ + name: GetGlobalPosition + nameWithType: MouseComponent.GetGlobalPosition + fullName: OpenTK.Platform.Native.Windows.MouseComponent.GetGlobalPosition +- uid: OpenTK.Platform.IMouseComponent.GetGlobalPosition(OpenTK.Mathematics.Vector2@) + commentId: M:OpenTK.Platform.IMouseComponent.GetGlobalPosition(OpenTK.Mathematics.Vector2@) + parent: OpenTK.Platform.IMouseComponent + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_GetGlobalPosition_OpenTK_Mathematics_Vector2__ + name: GetGlobalPosition(out Vector2) + nameWithType: IMouseComponent.GetGlobalPosition(out Vector2) + fullName: OpenTK.Platform.IMouseComponent.GetGlobalPosition(out OpenTK.Mathematics.Vector2) + nameWithType.vb: IMouseComponent.GetGlobalPosition(Vector2) + fullName.vb: OpenTK.Platform.IMouseComponent.GetGlobalPosition(OpenTK.Mathematics.Vector2) + name.vb: GetGlobalPosition(Vector2) + spec.csharp: + - uid: OpenTK.Platform.IMouseComponent.GetGlobalPosition(OpenTK.Mathematics.Vector2@) + name: GetGlobalPosition + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_GetGlobalPosition_OpenTK_Mathematics_Vector2__ + - name: ( + - name: out + - name: " " + - uid: OpenTK.Mathematics.Vector2 + name: Vector2 + href: OpenTK.Mathematics.Vector2.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IMouseComponent.GetGlobalPosition(OpenTK.Mathematics.Vector2@) + name: GetGlobalPosition + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_GetGlobalPosition_OpenTK_Mathematics_Vector2__ + - name: ( + - uid: OpenTK.Mathematics.Vector2 + name: Vector2 + href: OpenTK.Mathematics.Vector2.html + - name: ) +- uid: OpenTK.Mathematics.Vector2 + commentId: T:OpenTK.Mathematics.Vector2 + parent: OpenTK.Mathematics + href: OpenTK.Mathematics.Vector2.html + name: Vector2 + nameWithType: Vector2 + fullName: OpenTK.Mathematics.Vector2 +- uid: OpenTK.Mathematics + commentId: N:OpenTK.Mathematics + href: OpenTK.html + name: OpenTK.Mathematics + nameWithType: OpenTK.Mathematics + fullName: OpenTK.Mathematics + spec.csharp: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Mathematics + name: Mathematics + href: OpenTK.Mathematics.html + spec.vb: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Mathematics + name: Mathematics + href: OpenTK.Mathematics.html - uid: OpenTK.Platform.Native.Windows.MouseComponent.GetPosition* commentId: Overload:OpenTK.Platform.Native.Windows.MouseComponent.GetPosition - href: OpenTK.Platform.Native.Windows.MouseComponent.html#OpenTK_Platform_Native_Windows_MouseComponent_GetPosition_System_Int32__System_Int32__ + href: OpenTK.Platform.Native.Windows.MouseComponent.html#OpenTK_Platform_Native_Windows_MouseComponent_GetPosition_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2__ name: GetPosition nameWithType: MouseComponent.GetPosition fullName: OpenTK.Platform.Native.Windows.MouseComponent.GetPosition -- uid: OpenTK.Platform.IMouseComponent.GetPosition(System.Int32@,System.Int32@) - commentId: M:OpenTK.Platform.IMouseComponent.GetPosition(System.Int32@,System.Int32@) +- uid: OpenTK.Platform.WindowHandle + commentId: T:OpenTK.Platform.WindowHandle + parent: OpenTK.Platform + href: OpenTK.Platform.WindowHandle.html + name: WindowHandle + nameWithType: WindowHandle + fullName: OpenTK.Platform.WindowHandle +- uid: OpenTK.Platform.Native.Windows.MouseComponent.SetGlobalPosition* + commentId: Overload:OpenTK.Platform.Native.Windows.MouseComponent.SetGlobalPosition + href: OpenTK.Platform.Native.Windows.MouseComponent.html#OpenTK_Platform_Native_Windows_MouseComponent_SetGlobalPosition_OpenTK_Mathematics_Vector2_ + name: SetGlobalPosition + nameWithType: MouseComponent.SetGlobalPosition + fullName: OpenTK.Platform.Native.Windows.MouseComponent.SetGlobalPosition +- uid: OpenTK.Platform.IMouseComponent.GetMouseState(OpenTK.Platform.WindowHandle,OpenTK.Platform.MouseState@) + commentId: M:OpenTK.Platform.IMouseComponent.GetMouseState(OpenTK.Platform.WindowHandle,OpenTK.Platform.MouseState@) parent: OpenTK.Platform.IMouseComponent - isExternal: true - href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_GetPosition_System_Int32__System_Int32__ - name: GetPosition(out int, out int) - nameWithType: IMouseComponent.GetPosition(out int, out int) - fullName: OpenTK.Platform.IMouseComponent.GetPosition(out int, out int) - nameWithType.vb: IMouseComponent.GetPosition(Integer, Integer) - fullName.vb: OpenTK.Platform.IMouseComponent.GetPosition(Integer, Integer) - name.vb: GetPosition(Integer, Integer) + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_GetMouseState_OpenTK_Platform_WindowHandle_OpenTK_Platform_MouseState__ + name: GetMouseState(WindowHandle, out MouseState) + nameWithType: IMouseComponent.GetMouseState(WindowHandle, out MouseState) + fullName: OpenTK.Platform.IMouseComponent.GetMouseState(OpenTK.Platform.WindowHandle, out OpenTK.Platform.MouseState) + nameWithType.vb: IMouseComponent.GetMouseState(WindowHandle, MouseState) + fullName.vb: OpenTK.Platform.IMouseComponent.GetMouseState(OpenTK.Platform.WindowHandle, OpenTK.Platform.MouseState) + name.vb: GetMouseState(WindowHandle, MouseState) spec.csharp: - - uid: OpenTK.Platform.IMouseComponent.GetPosition(System.Int32@,System.Int32@) - name: GetPosition - href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_GetPosition_System_Int32__System_Int32__ + - uid: OpenTK.Platform.IMouseComponent.GetMouseState(OpenTK.Platform.WindowHandle,OpenTK.Platform.MouseState@) + name: GetMouseState + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_GetMouseState_OpenTK_Platform_WindowHandle_OpenTK_Platform_MouseState__ - name: ( - - name: out - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - name: out - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 + - uid: OpenTK.Platform.MouseState + name: MouseState + href: OpenTK.Platform.MouseState.html - name: ) spec.vb: - - uid: OpenTK.Platform.IMouseComponent.GetPosition(System.Int32@,System.Int32@) - name: GetPosition - href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_GetPosition_System_Int32__System_Int32__ + - uid: OpenTK.Platform.IMouseComponent.GetMouseState(OpenTK.Platform.WindowHandle,OpenTK.Platform.MouseState@) + name: GetMouseState + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_GetMouseState_OpenTK_Platform_WindowHandle_OpenTK_Platform_MouseState__ - name: ( - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 + - uid: OpenTK.Platform.MouseState + name: MouseState + href: OpenTK.Platform.MouseState.html - name: ) -- uid: System.Int32 - commentId: T:System.Int32 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - name: int - nameWithType: int - fullName: int - nameWithType.vb: Integer - fullName.vb: Integer - name.vb: Integer -- uid: OpenTK.Platform.Native.Windows.MouseComponent.SetPosition* - commentId: Overload:OpenTK.Platform.Native.Windows.MouseComponent.SetPosition - href: OpenTK.Platform.Native.Windows.MouseComponent.html#OpenTK_Platform_Native_Windows_MouseComponent_SetPosition_System_Int32_System_Int32_ - name: SetPosition - nameWithType: MouseComponent.SetPosition - fullName: OpenTK.Platform.Native.Windows.MouseComponent.SetPosition -- uid: OpenTK.Platform.Native.Windows.MouseComponent.GetMouseState* - commentId: Overload:OpenTK.Platform.Native.Windows.MouseComponent.GetMouseState - href: OpenTK.Platform.Native.Windows.MouseComponent.html#OpenTK_Platform_Native_Windows_MouseComponent_GetMouseState_OpenTK_Platform_MouseState__ - name: GetMouseState - nameWithType: MouseComponent.GetMouseState - fullName: OpenTK.Platform.Native.Windows.MouseComponent.GetMouseState -- uid: OpenTK.Platform.IMouseComponent.GetMouseState(OpenTK.Platform.MouseState@) - commentId: M:OpenTK.Platform.IMouseComponent.GetMouseState(OpenTK.Platform.MouseState@) +- uid: OpenTK.Platform.MouseState.Position + commentId: F:OpenTK.Platform.MouseState.Position + href: OpenTK.Platform.MouseState.html#OpenTK_Platform_MouseState_Position + name: Position + nameWithType: MouseState.Position + fullName: OpenTK.Platform.MouseState.Position +- uid: OpenTK.Platform.Native.Windows.MouseComponent.GetGlobalMouseState* + commentId: Overload:OpenTK.Platform.Native.Windows.MouseComponent.GetGlobalMouseState + href: OpenTK.Platform.Native.Windows.MouseComponent.html#OpenTK_Platform_Native_Windows_MouseComponent_GetGlobalMouseState_OpenTK_Platform_MouseState__ + name: GetGlobalMouseState + nameWithType: MouseComponent.GetGlobalMouseState + fullName: OpenTK.Platform.Native.Windows.MouseComponent.GetGlobalMouseState +- uid: OpenTK.Platform.IMouseComponent.GetGlobalMouseState(OpenTK.Platform.MouseState@) + commentId: M:OpenTK.Platform.IMouseComponent.GetGlobalMouseState(OpenTK.Platform.MouseState@) parent: OpenTK.Platform.IMouseComponent - href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_GetMouseState_OpenTK_Platform_MouseState__ - name: GetMouseState(out MouseState) - nameWithType: IMouseComponent.GetMouseState(out MouseState) - fullName: OpenTK.Platform.IMouseComponent.GetMouseState(out OpenTK.Platform.MouseState) - nameWithType.vb: IMouseComponent.GetMouseState(MouseState) - fullName.vb: OpenTK.Platform.IMouseComponent.GetMouseState(OpenTK.Platform.MouseState) - name.vb: GetMouseState(MouseState) + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_GetGlobalMouseState_OpenTK_Platform_MouseState__ + name: GetGlobalMouseState(out MouseState) + nameWithType: IMouseComponent.GetGlobalMouseState(out MouseState) + fullName: OpenTK.Platform.IMouseComponent.GetGlobalMouseState(out OpenTK.Platform.MouseState) + nameWithType.vb: IMouseComponent.GetGlobalMouseState(MouseState) + fullName.vb: OpenTK.Platform.IMouseComponent.GetGlobalMouseState(OpenTK.Platform.MouseState) + name.vb: GetGlobalMouseState(MouseState) spec.csharp: - - uid: OpenTK.Platform.IMouseComponent.GetMouseState(OpenTK.Platform.MouseState@) - name: GetMouseState - href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_GetMouseState_OpenTK_Platform_MouseState__ + - uid: OpenTK.Platform.IMouseComponent.GetGlobalMouseState(OpenTK.Platform.MouseState@) + name: GetGlobalMouseState + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_GetGlobalMouseState_OpenTK_Platform_MouseState__ - name: ( - name: out - name: " " @@ -1113,9 +1421,9 @@ references: href: OpenTK.Platform.MouseState.html - name: ) spec.vb: - - uid: OpenTK.Platform.IMouseComponent.GetMouseState(OpenTK.Platform.MouseState@) - name: GetMouseState - href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_GetMouseState_OpenTK_Platform_MouseState__ + - uid: OpenTK.Platform.IMouseComponent.GetGlobalMouseState(OpenTK.Platform.MouseState@) + name: GetGlobalMouseState + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_GetGlobalMouseState_OpenTK_Platform_MouseState__ - name: ( - uid: OpenTK.Platform.MouseState name: MouseState @@ -1128,19 +1436,18 @@ references: name: MouseState nameWithType: MouseState fullName: OpenTK.Platform.MouseState +- uid: OpenTK.Platform.Native.Windows.MouseComponent.GetMouseState* + commentId: Overload:OpenTK.Platform.Native.Windows.MouseComponent.GetMouseState + href: OpenTK.Platform.Native.Windows.MouseComponent.html#OpenTK_Platform_Native_Windows_MouseComponent_GetMouseState_OpenTK_Platform_WindowHandle_OpenTK_Platform_MouseState__ + name: GetMouseState + nameWithType: MouseComponent.GetMouseState + fullName: OpenTK.Platform.Native.Windows.MouseComponent.GetMouseState - uid: OpenTK.Platform.Native.Windows.MouseComponent.IsRawMouseMotionEnabled* commentId: Overload:OpenTK.Platform.Native.Windows.MouseComponent.IsRawMouseMotionEnabled href: OpenTK.Platform.Native.Windows.MouseComponent.html#OpenTK_Platform_Native_Windows_MouseComponent_IsRawMouseMotionEnabled_OpenTK_Platform_WindowHandle_ name: IsRawMouseMotionEnabled nameWithType: MouseComponent.IsRawMouseMotionEnabled fullName: OpenTK.Platform.Native.Windows.MouseComponent.IsRawMouseMotionEnabled -- uid: OpenTK.Platform.WindowHandle - commentId: T:OpenTK.Platform.WindowHandle - parent: OpenTK.Platform - href: OpenTK.Platform.WindowHandle.html - name: WindowHandle - nameWithType: WindowHandle - fullName: OpenTK.Platform.WindowHandle - uid: OpenTK.Platform.RawMouseMoveEventArgs commentId: T:OpenTK.Platform.RawMouseMoveEventArgs href: OpenTK.Platform.RawMouseMoveEventArgs.html diff --git a/api/OpenTK.Platform.Native.Windows.OpenGLComponent.yml b/api/OpenTK.Platform.Native.Windows.OpenGLComponent.yml index cae915f1..cf49c218 100644 --- a/api/OpenTK.Platform.Native.Windows.OpenGLComponent.yml +++ b/api/OpenTK.Platform.Native.Windows.OpenGLComponent.yml @@ -24,6 +24,7 @@ items: - OpenTK.Platform.Native.Windows.OpenGLComponent.SetCurrentContext(OpenTK.Platform.OpenGLContextHandle) - OpenTK.Platform.Native.Windows.OpenGLComponent.SetSwapInterval(System.Int32) - OpenTK.Platform.Native.Windows.OpenGLComponent.SwapBuffers(OpenTK.Platform.OpenGLContextHandle) + - OpenTK.Platform.Native.Windows.OpenGLComponent.Uninitialize - OpenTK.Platform.Native.Windows.OpenGLComponent.UseDwmFlushIfApplicable(OpenTK.Platform.OpenGLContextHandle,System.Boolean) langs: - csharp @@ -35,7 +36,7 @@ items: source: id: OpenGLComponent path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\OpenGLComponent.cs - startLine: 26 + startLine: 27 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows @@ -69,7 +70,7 @@ items: source: id: Name path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\OpenGLComponent.cs - startLine: 29 + startLine: 30 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows @@ -98,7 +99,7 @@ items: source: id: Provides path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\OpenGLComponent.cs - startLine: 32 + startLine: 33 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows @@ -127,11 +128,11 @@ items: source: id: Logger path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\OpenGLComponent.cs - startLine: 35 + startLine: 36 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows - summary: Provides a logger for this component. + summary: The logger that this component uses to log diagnostic messages. example: [] syntax: content: public ILogger? Logger { get; set; } @@ -140,6 +141,11 @@ items: type: OpenTK.Core.Utility.ILogger content.vb: Public Property Logger As ILogger overload: OpenTK.Platform.Native.Windows.OpenGLComponent.Logger* + seealso: + - linkId: OpenTK.Core.Utility.ILogger + commentId: T:OpenTK.Core.Utility.ILogger + - linkId: OpenTK.Platform.ToolkitOptions.Logger + commentId: P:OpenTK.Platform.ToolkitOptions.Logger implements: - OpenTK.Platform.IPalComponent.Logger - uid: OpenTK.Platform.Native.Windows.OpenGLComponent.Initialize(OpenTK.Platform.ToolkitOptions) @@ -156,7 +162,7 @@ items: source: id: Initialize path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\OpenGLComponent.cs - startLine: 38 + startLine: 81 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows @@ -170,8 +176,42 @@ items: description: The options to initialize the component with. content.vb: Public Sub Initialize(options As ToolkitOptions) overload: OpenTK.Platform.Native.Windows.OpenGLComponent.Initialize* + seealso: + - linkId: OpenTK.Platform.ToolkitOptions + commentId: T:OpenTK.Platform.ToolkitOptions + - linkId: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) implements: - OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) +- uid: OpenTK.Platform.Native.Windows.OpenGLComponent.Uninitialize + commentId: M:OpenTK.Platform.Native.Windows.OpenGLComponent.Uninitialize + id: Uninitialize + parent: OpenTK.Platform.Native.Windows.OpenGLComponent + langs: + - csharp + - vb + name: Uninitialize() + nameWithType: OpenGLComponent.Uninitialize() + fullName: OpenTK.Platform.Native.Windows.OpenGLComponent.Uninitialize() + type: Method + source: + id: Uninitialize + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\OpenGLComponent.cs + startLine: 229 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform.Native.Windows + summary: Uninitialize the component. Frees any native resources used by the component. + example: [] + syntax: + content: public void Uninitialize() + content.vb: Public Sub Uninitialize() + overload: OpenTK.Platform.Native.Windows.OpenGLComponent.Uninitialize* + seealso: + - linkId: OpenTK.Platform.Toolkit.Uninit + commentId: M:OpenTK.Platform.Toolkit.Uninit + implements: + - OpenTK.Platform.IPalComponent.Uninitialize - uid: OpenTK.Platform.Native.Windows.OpenGLComponent.CanShareContexts commentId: P:OpenTK.Platform.Native.Windows.OpenGLComponent.CanShareContexts id: CanShareContexts @@ -186,7 +226,7 @@ items: source: id: CanShareContexts path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\OpenGLComponent.cs - startLine: 229 + startLine: 244 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows @@ -215,7 +255,7 @@ items: source: id: CanCreateFromWindow path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\OpenGLComponent.cs - startLine: 232 + startLine: 247 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows @@ -247,7 +287,7 @@ items: source: id: CanCreateFromSurface path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\OpenGLComponent.cs - startLine: 235 + startLine: 250 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows @@ -276,7 +316,7 @@ items: source: id: CreateFromSurface path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\OpenGLComponent.cs - startLine: 238 + startLine: 253 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows @@ -305,7 +345,7 @@ items: source: id: CreateFromWindow path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\OpenGLComponent.cs - startLine: 244 + startLine: 259 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows @@ -322,6 +362,11 @@ items: description: An OpenGL context handle. content.vb: Public Function CreateFromWindow(handle As WindowHandle) As OpenGLContextHandle overload: OpenTK.Platform.Native.Windows.OpenGLComponent.CreateFromWindow* + seealso: + - linkId: OpenTK.Platform.IWindowComponent.Create(OpenTK.Platform.GraphicsApiHints) + commentId: M:OpenTK.Platform.IWindowComponent.Create(OpenTK.Platform.GraphicsApiHints) + - linkId: OpenTK.Platform.OpenGLGraphicsApiHints + commentId: T:OpenTK.Platform.OpenGLGraphicsApiHints implements: - OpenTK.Platform.IOpenGLComponent.CreateFromWindow(OpenTK.Platform.WindowHandle) - uid: OpenTK.Platform.Native.Windows.OpenGLComponent.DestroyContext(OpenTK.Platform.OpenGLContextHandle) @@ -338,7 +383,7 @@ items: source: id: DestroyContext path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\OpenGLComponent.cs - startLine: 849 + startLine: 853 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows @@ -352,10 +397,9 @@ items: description: Handle to the OpenGL context to destroy. content.vb: Public Sub DestroyContext(handle As OpenGLContextHandle) overload: OpenTK.Platform.Native.Windows.OpenGLComponent.DestroyContext* - exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: OpenGL context handle is null. + seealso: + - linkId: OpenTK.Platform.IOpenGLComponent.CreateFromWindow(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IOpenGLComponent.CreateFromWindow(OpenTK.Platform.WindowHandle) implements: - OpenTK.Platform.IOpenGLComponent.DestroyContext(OpenTK.Platform.OpenGLContextHandle) - uid: OpenTK.Platform.Native.Windows.OpenGLComponent.GetBindingsContext(OpenTK.Platform.OpenGLContextHandle) @@ -372,11 +416,14 @@ items: source: id: GetBindingsContext path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\OpenGLComponent.cs - startLine: 864 + startLine: 868 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows - summary: Gets a from an . + summary: >- + Gets a from an . + + Pass this to to load the OpenGL bindings. example: [] syntax: content: public IBindingsContext GetBindingsContext(OpenGLContextHandle handle) @@ -389,6 +436,11 @@ items: description: The created bindings context. content.vb: Public Function GetBindingsContext(handle As OpenGLContextHandle) As IBindingsContext overload: OpenTK.Platform.Native.Windows.OpenGLComponent.GetBindingsContext* + seealso: + - linkId: OpenTK.Graphics.GLLoader + commentId: T:OpenTK.Graphics.GLLoader + - linkId: OpenTK.IBindingsContext + commentId: T:OpenTK.IBindingsContext implements: - OpenTK.Platform.IOpenGLComponent.GetBindingsContext(OpenTK.Platform.OpenGLContextHandle) - uid: OpenTK.Platform.Native.Windows.OpenGLComponent.GetProcedureAddress(OpenTK.Platform.OpenGLContextHandle,System.String) @@ -405,7 +457,7 @@ items: source: id: GetProcedureAddress path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\OpenGLComponent.cs - startLine: 870 + startLine: 874 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows @@ -425,10 +477,6 @@ items: description: The procedure address to the OpenGL command. content.vb: Public Function GetProcedureAddress(handle As OpenGLContextHandle, procedureName As String) As IntPtr overload: OpenTK.Platform.Native.Windows.OpenGLComponent.GetProcedureAddress* - exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: OpenGL context handle or procedure name is null. implements: - OpenTK.Platform.IOpenGLComponent.GetProcedureAddress(OpenTK.Platform.OpenGLContextHandle,System.String) nameWithType.vb: OpenGLComponent.GetProcedureAddress(OpenGLContextHandle, String) @@ -448,7 +496,7 @@ items: source: id: GetCurrentContext path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\OpenGLComponent.cs - startLine: 878 + startLine: 895 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows @@ -458,9 +506,12 @@ items: content: public OpenGLContextHandle? GetCurrentContext() return: type: OpenTK.Platform.OpenGLContextHandle - description: Handle to the current OpenGL context, null if none are current. + description: Handle to the current OpenGL context, null if no context is current. content.vb: Public Function GetCurrentContext() As OpenGLContextHandle overload: OpenTK.Platform.Native.Windows.OpenGLComponent.GetCurrentContext* + seealso: + - linkId: OpenTK.Platform.IOpenGLComponent.SetCurrentContext(OpenTK.Platform.OpenGLContextHandle) + commentId: M:OpenTK.Platform.IOpenGLComponent.SetCurrentContext(OpenTK.Platform.OpenGLContextHandle) implements: - OpenTK.Platform.IOpenGLComponent.GetCurrentContext - uid: OpenTK.Platform.Native.Windows.OpenGLComponent.SetCurrentContext(OpenTK.Platform.OpenGLContextHandle) @@ -477,7 +528,7 @@ items: source: id: SetCurrentContext path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\OpenGLComponent.cs - startLine: 892 + startLine: 909 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows @@ -488,12 +539,15 @@ items: parameters: - id: handle type: OpenTK.Platform.OpenGLContextHandle - description: Handle to the OpenGL context to make current, or null to make none current. + description: Handle to the OpenGL context to make current, or null to make no context current. return: type: System.Boolean - description: True when the OpenGL context is successfully made current. + description: true when the OpenGL context is successfully made current. content.vb: Public Function SetCurrentContext(handle As OpenGLContextHandle) As Boolean overload: OpenTK.Platform.Native.Windows.OpenGLComponent.SetCurrentContext* + seealso: + - linkId: OpenTK.Platform.IOpenGLComponent.GetCurrentContext + commentId: M:OpenTK.Platform.IOpenGLComponent.GetCurrentContext implements: - OpenTK.Platform.IOpenGLComponent.SetCurrentContext(OpenTK.Platform.OpenGLContextHandle) nameWithType.vb: OpenGLComponent.SetCurrentContext(OpenGLContextHandle) @@ -513,7 +567,7 @@ items: source: id: GetSharedContext path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\OpenGLComponent.cs - startLine: 919 + startLine: 936 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows @@ -530,6 +584,9 @@ items: description: Handle to the OpenGL context the given context shares display lists with. content.vb: Public Function GetSharedContext(handle As OpenGLContextHandle) As OpenGLContextHandle overload: OpenTK.Platform.Native.Windows.OpenGLComponent.GetSharedContext* + seealso: + - linkId: OpenTK.Platform.OpenGLGraphicsApiHints.SharedContext + commentId: P:OpenTK.Platform.OpenGLGraphicsApiHints.SharedContext implements: - OpenTK.Platform.IOpenGLComponent.GetSharedContext(OpenTK.Platform.OpenGLContextHandle) - uid: OpenTK.Platform.Native.Windows.OpenGLComponent.SetSwapInterval(System.Int32) @@ -546,7 +603,7 @@ items: source: id: SetSwapInterval path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\OpenGLComponent.cs - startLine: 926 + startLine: 943 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows @@ -579,17 +636,17 @@ items: source: id: GetSwapInterval path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\OpenGLComponent.cs - startLine: 939 + startLine: 956 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows - summary: Gets the swap interval of the current OpenGL context. + summary: Gets the swap interval of the current OpenGL context, or -1 if no context is current. example: [] syntax: content: public int GetSwapInterval() return: type: System.Int32 - description: The current swap interval. + description: The current swap interval, or -1 if no context is current. content.vb: Public Function GetSwapInterval() As Integer overload: OpenTK.Platform.Native.Windows.OpenGLComponent.GetSwapInterval* implements: @@ -608,7 +665,7 @@ items: source: id: SwapBuffers path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\OpenGLComponent.cs - startLine: 957 + startLine: 974 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows @@ -622,6 +679,9 @@ items: description: Handle to the context. content.vb: Public Sub SwapBuffers(handle As OpenGLContextHandle) overload: OpenTK.Platform.Native.Windows.OpenGLComponent.SwapBuffers* + seealso: + - linkId: OpenTK.Platform.OpenGLGraphicsApiHints.SwapMethod + commentId: P:OpenTK.Platform.OpenGLGraphicsApiHints.SwapMethod implements: - OpenTK.Platform.IOpenGLComponent.SwapBuffers(OpenTK.Platform.OpenGLContextHandle) - uid: OpenTK.Platform.Native.Windows.OpenGLComponent.UseDwmFlushIfApplicable(OpenTK.Platform.OpenGLContextHandle,System.Boolean) @@ -638,7 +698,7 @@ items: source: id: UseDwmFlushIfApplicable path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\OpenGLComponent.cs - startLine: 1003 + startLine: 1020 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows @@ -680,7 +740,7 @@ items: source: id: GetHGLRC path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\OpenGLComponent.cs - startLine: 1017 + startLine: 1034 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows @@ -1058,6 +1118,19 @@ references: name: PalComponents nameWithType: PalComponents fullName: OpenTK.Platform.PalComponents +- uid: OpenTK.Core.Utility.ILogger + commentId: T:OpenTK.Core.Utility.ILogger + parent: OpenTK.Core.Utility + href: OpenTK.Core.Utility.ILogger.html + name: ILogger + nameWithType: ILogger + fullName: OpenTK.Core.Utility.ILogger +- uid: OpenTK.Platform.ToolkitOptions.Logger + commentId: P:OpenTK.Platform.ToolkitOptions.Logger + href: OpenTK.Platform.ToolkitOptions.html#OpenTK_Platform_ToolkitOptions_Logger + name: Logger + nameWithType: ToolkitOptions.Logger + fullName: OpenTK.Platform.ToolkitOptions.Logger - uid: OpenTK.Platform.Native.Windows.OpenGLComponent.Logger* commentId: Overload:OpenTK.Platform.Native.Windows.OpenGLComponent.Logger href: OpenTK.Platform.Native.Windows.OpenGLComponent.html#OpenTK_Platform_Native_Windows_OpenGLComponent_Logger @@ -1071,13 +1144,6 @@ references: name: Logger nameWithType: IPalComponent.Logger fullName: OpenTK.Platform.IPalComponent.Logger -- uid: OpenTK.Core.Utility.ILogger - commentId: T:OpenTK.Core.Utility.ILogger - parent: OpenTK.Core.Utility - href: OpenTK.Core.Utility.ILogger.html - name: ILogger - nameWithType: ILogger - fullName: OpenTK.Core.Utility.ILogger - uid: OpenTK.Core.Utility commentId: N:OpenTK.Core.Utility href: OpenTK.html @@ -1108,6 +1174,37 @@ references: - uid: OpenTK.Core.Utility name: Utility href: OpenTK.Core.Utility.html +- uid: OpenTK.Platform.ToolkitOptions + commentId: T:OpenTK.Platform.ToolkitOptions + parent: OpenTK.Platform + href: OpenTK.Platform.ToolkitOptions.html + name: ToolkitOptions + nameWithType: ToolkitOptions + fullName: OpenTK.Platform.ToolkitOptions +- uid: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Init_OpenTK_Platform_ToolkitOptions_ + name: Init(ToolkitOptions) + nameWithType: Toolkit.Init(ToolkitOptions) + fullName: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + spec.csharp: + - uid: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + name: Init + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Init_OpenTK_Platform_ToolkitOptions_ + - name: ( + - uid: OpenTK.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Platform.ToolkitOptions.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + name: Init + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Init_OpenTK_Platform_ToolkitOptions_ + - name: ( + - uid: OpenTK.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Platform.ToolkitOptions.html + - name: ) - uid: OpenTK.Platform.Native.Windows.OpenGLComponent.Initialize* commentId: Overload:OpenTK.Platform.Native.Windows.OpenGLComponent.Initialize href: OpenTK.Platform.Native.Windows.OpenGLComponent.html#OpenTK_Platform_Native_Windows_OpenGLComponent_Initialize_OpenTK_Platform_ToolkitOptions_ @@ -1139,13 +1236,49 @@ references: name: ToolkitOptions href: OpenTK.Platform.ToolkitOptions.html - name: ) -- uid: OpenTK.Platform.ToolkitOptions - commentId: T:OpenTK.Platform.ToolkitOptions - parent: OpenTK.Platform - href: OpenTK.Platform.ToolkitOptions.html - name: ToolkitOptions - nameWithType: ToolkitOptions - fullName: OpenTK.Platform.ToolkitOptions +- uid: OpenTK.Platform.Toolkit.Uninit + commentId: M:OpenTK.Platform.Toolkit.Uninit + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Uninit + name: Uninit() + nameWithType: Toolkit.Uninit() + fullName: OpenTK.Platform.Toolkit.Uninit() + spec.csharp: + - uid: OpenTK.Platform.Toolkit.Uninit + name: Uninit + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Uninit + - name: ( + - name: ) + spec.vb: + - uid: OpenTK.Platform.Toolkit.Uninit + name: Uninit + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Uninit + - name: ( + - name: ) +- uid: OpenTK.Platform.Native.Windows.OpenGLComponent.Uninitialize* + commentId: Overload:OpenTK.Platform.Native.Windows.OpenGLComponent.Uninitialize + href: OpenTK.Platform.Native.Windows.OpenGLComponent.html#OpenTK_Platform_Native_Windows_OpenGLComponent_Uninitialize + name: Uninitialize + nameWithType: OpenGLComponent.Uninitialize + fullName: OpenTK.Platform.Native.Windows.OpenGLComponent.Uninitialize +- uid: OpenTK.Platform.IPalComponent.Uninitialize + commentId: M:OpenTK.Platform.IPalComponent.Uninitialize + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + name: Uninitialize() + nameWithType: IPalComponent.Uninitialize() + fullName: OpenTK.Platform.IPalComponent.Uninitialize() + spec.csharp: + - uid: OpenTK.Platform.IPalComponent.Uninitialize + name: Uninitialize + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + - name: ( + - name: ) + spec.vb: + - uid: OpenTK.Platform.IPalComponent.Uninitialize + name: Uninitialize + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + - name: ( + - name: ) - uid: OpenTK.Platform.Native.Windows.OpenGLComponent.CanShareContexts* commentId: Overload:OpenTK.Platform.Native.Windows.OpenGLComponent.CanShareContexts href: OpenTK.Platform.Native.Windows.OpenGLComponent.html#OpenTK_Platform_Native_Windows_OpenGLComponent_CanShareContexts @@ -1253,6 +1386,38 @@ references: name: OpenGLContextHandle nameWithType: OpenGLContextHandle fullName: OpenTK.Platform.OpenGLContextHandle +- uid: OpenTK.Platform.IWindowComponent.Create(OpenTK.Platform.GraphicsApiHints) + commentId: M:OpenTK.Platform.IWindowComponent.Create(OpenTK.Platform.GraphicsApiHints) + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_Create_OpenTK_Platform_GraphicsApiHints_ + name: Create(GraphicsApiHints) + nameWithType: IWindowComponent.Create(GraphicsApiHints) + fullName: OpenTK.Platform.IWindowComponent.Create(OpenTK.Platform.GraphicsApiHints) + spec.csharp: + - uid: OpenTK.Platform.IWindowComponent.Create(OpenTK.Platform.GraphicsApiHints) + name: Create + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_Create_OpenTK_Platform_GraphicsApiHints_ + - name: ( + - uid: OpenTK.Platform.GraphicsApiHints + name: GraphicsApiHints + href: OpenTK.Platform.GraphicsApiHints.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IWindowComponent.Create(OpenTK.Platform.GraphicsApiHints) + name: Create + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_Create_OpenTK_Platform_GraphicsApiHints_ + - name: ( + - uid: OpenTK.Platform.GraphicsApiHints + name: GraphicsApiHints + href: OpenTK.Platform.GraphicsApiHints.html + - name: ) +- uid: OpenTK.Platform.OpenGLGraphicsApiHints + commentId: T:OpenTK.Platform.OpenGLGraphicsApiHints + parent: OpenTK.Platform + href: OpenTK.Platform.OpenGLGraphicsApiHints.html + name: OpenGLGraphicsApiHints + nameWithType: OpenGLGraphicsApiHints + fullName: OpenTK.Platform.OpenGLGraphicsApiHints - uid: OpenTK.Platform.Native.Windows.OpenGLComponent.CreateFromWindow* commentId: Overload:OpenTK.Platform.Native.Windows.OpenGLComponent.CreateFromWindow href: OpenTK.Platform.Native.Windows.OpenGLComponent.html#OpenTK_Platform_Native_Windows_OpenGLComponent_CreateFromWindow_OpenTK_Platform_WindowHandle_ @@ -1266,13 +1431,13 @@ references: name: WindowHandle nameWithType: WindowHandle fullName: OpenTK.Platform.WindowHandle -- uid: System.ArgumentNullException - commentId: T:System.ArgumentNullException - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.argumentnullexception - name: ArgumentNullException - nameWithType: ArgumentNullException - fullName: System.ArgumentNullException +- uid: OpenTK.Platform.IWindowComponent + commentId: T:OpenTK.Platform.IWindowComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IWindowComponent.html + name: IWindowComponent + nameWithType: IWindowComponent + fullName: OpenTK.Platform.IWindowComponent - uid: OpenTK.Platform.Native.Windows.OpenGLComponent.DestroyContext* commentId: Overload:OpenTK.Platform.Native.Windows.OpenGLComponent.DestroyContext href: OpenTK.Platform.Native.Windows.OpenGLComponent.html#OpenTK_Platform_Native_Windows_OpenGLComponent_DestroyContext_OpenTK_Platform_OpenGLContextHandle_ @@ -1304,6 +1469,12 @@ references: name: OpenGLContextHandle href: OpenTK.Platform.OpenGLContextHandle.html - name: ) +- uid: OpenTK.Graphics.GLLoader + commentId: T:OpenTK.Graphics.GLLoader + href: OpenTK.Graphics.GLLoader.html + name: GLLoader + nameWithType: GLLoader + fullName: OpenTK.Graphics.GLLoader - uid: OpenTK.IBindingsContext commentId: T:OpenTK.IBindingsContext parent: OpenTK @@ -1311,6 +1482,30 @@ references: name: IBindingsContext nameWithType: IBindingsContext fullName: OpenTK.IBindingsContext +- uid: OpenTK.Graphics.GLLoader.LoadBindings(OpenTK.IBindingsContext) + commentId: M:OpenTK.Graphics.GLLoader.LoadBindings(OpenTK.IBindingsContext) + href: OpenTK.Graphics.GLLoader.html#OpenTK_Graphics_GLLoader_LoadBindings_OpenTK_IBindingsContext_ + name: LoadBindings(IBindingsContext) + nameWithType: GLLoader.LoadBindings(IBindingsContext) + fullName: OpenTK.Graphics.GLLoader.LoadBindings(OpenTK.IBindingsContext) + spec.csharp: + - uid: OpenTK.Graphics.GLLoader.LoadBindings(OpenTK.IBindingsContext) + name: LoadBindings + href: OpenTK.Graphics.GLLoader.html#OpenTK_Graphics_GLLoader_LoadBindings_OpenTK_IBindingsContext_ + - name: ( + - uid: OpenTK.IBindingsContext + name: IBindingsContext + href: OpenTK.IBindingsContext.html + - name: ) + spec.vb: + - uid: OpenTK.Graphics.GLLoader.LoadBindings(OpenTK.IBindingsContext) + name: LoadBindings + href: OpenTK.Graphics.GLLoader.html#OpenTK_Graphics_GLLoader_LoadBindings_OpenTK_IBindingsContext_ + - name: ( + - uid: OpenTK.IBindingsContext + name: IBindingsContext + href: OpenTK.IBindingsContext.html + - name: ) - uid: OpenTK.Platform.Native.Windows.OpenGLComponent.GetBindingsContext* commentId: Overload:OpenTK.Platform.Native.Windows.OpenGLComponent.GetBindingsContext href: OpenTK.Platform.Native.Windows.OpenGLComponent.html#OpenTK_Platform_Native_Windows_OpenGLComponent_GetBindingsContext_OpenTK_Platform_OpenGLContextHandle_ @@ -1406,6 +1601,31 @@ references: nameWithType.vb: IntPtr fullName.vb: System.IntPtr name.vb: IntPtr +- uid: OpenTK.Platform.IOpenGLComponent.SetCurrentContext(OpenTK.Platform.OpenGLContextHandle) + commentId: M:OpenTK.Platform.IOpenGLComponent.SetCurrentContext(OpenTK.Platform.OpenGLContextHandle) + parent: OpenTK.Platform.IOpenGLComponent + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_SetCurrentContext_OpenTK_Platform_OpenGLContextHandle_ + name: SetCurrentContext(OpenGLContextHandle) + nameWithType: IOpenGLComponent.SetCurrentContext(OpenGLContextHandle) + fullName: OpenTK.Platform.IOpenGLComponent.SetCurrentContext(OpenTK.Platform.OpenGLContextHandle) + spec.csharp: + - uid: OpenTK.Platform.IOpenGLComponent.SetCurrentContext(OpenTK.Platform.OpenGLContextHandle) + name: SetCurrentContext + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_SetCurrentContext_OpenTK_Platform_OpenGLContextHandle_ + - name: ( + - uid: OpenTK.Platform.OpenGLContextHandle + name: OpenGLContextHandle + href: OpenTK.Platform.OpenGLContextHandle.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IOpenGLComponent.SetCurrentContext(OpenTK.Platform.OpenGLContextHandle) + name: SetCurrentContext + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_SetCurrentContext_OpenTK_Platform_OpenGLContextHandle_ + - name: ( + - uid: OpenTK.Platform.OpenGLContextHandle + name: OpenGLContextHandle + href: OpenTK.Platform.OpenGLContextHandle.html + - name: ) - uid: OpenTK.Platform.Native.Windows.OpenGLComponent.GetCurrentContext* commentId: Overload:OpenTK.Platform.Native.Windows.OpenGLComponent.GetCurrentContext href: OpenTK.Platform.Native.Windows.OpenGLComponent.html#OpenTK_Platform_Native_Windows_OpenGLComponent_GetCurrentContext @@ -1437,31 +1657,12 @@ references: name: SetCurrentContext nameWithType: OpenGLComponent.SetCurrentContext fullName: OpenTK.Platform.Native.Windows.OpenGLComponent.SetCurrentContext -- uid: OpenTK.Platform.IOpenGLComponent.SetCurrentContext(OpenTK.Platform.OpenGLContextHandle) - commentId: M:OpenTK.Platform.IOpenGLComponent.SetCurrentContext(OpenTK.Platform.OpenGLContextHandle) - parent: OpenTK.Platform.IOpenGLComponent - href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_SetCurrentContext_OpenTK_Platform_OpenGLContextHandle_ - name: SetCurrentContext(OpenGLContextHandle) - nameWithType: IOpenGLComponent.SetCurrentContext(OpenGLContextHandle) - fullName: OpenTK.Platform.IOpenGLComponent.SetCurrentContext(OpenTK.Platform.OpenGLContextHandle) - spec.csharp: - - uid: OpenTK.Platform.IOpenGLComponent.SetCurrentContext(OpenTK.Platform.OpenGLContextHandle) - name: SetCurrentContext - href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_SetCurrentContext_OpenTK_Platform_OpenGLContextHandle_ - - name: ( - - uid: OpenTK.Platform.OpenGLContextHandle - name: OpenGLContextHandle - href: OpenTK.Platform.OpenGLContextHandle.html - - name: ) - spec.vb: - - uid: OpenTK.Platform.IOpenGLComponent.SetCurrentContext(OpenTK.Platform.OpenGLContextHandle) - name: SetCurrentContext - href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_SetCurrentContext_OpenTK_Platform_OpenGLContextHandle_ - - name: ( - - uid: OpenTK.Platform.OpenGLContextHandle - name: OpenGLContextHandle - href: OpenTK.Platform.OpenGLContextHandle.html - - name: ) +- uid: OpenTK.Platform.OpenGLGraphicsApiHints.SharedContext + commentId: P:OpenTK.Platform.OpenGLGraphicsApiHints.SharedContext + href: OpenTK.Platform.OpenGLGraphicsApiHints.html#OpenTK_Platform_OpenGLGraphicsApiHints_SharedContext + name: SharedContext + nameWithType: OpenGLGraphicsApiHints.SharedContext + fullName: OpenTK.Platform.OpenGLGraphicsApiHints.SharedContext - uid: OpenTK.Platform.Native.Windows.OpenGLComponent.GetSharedContext* commentId: Overload:OpenTK.Platform.Native.Windows.OpenGLComponent.GetSharedContext href: OpenTK.Platform.Native.Windows.OpenGLComponent.html#OpenTK_Platform_Native_Windows_OpenGLComponent_GetSharedContext_OpenTK_Platform_OpenGLContextHandle_ @@ -1566,6 +1767,12 @@ references: href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_GetSwapInterval - name: ( - name: ) +- uid: OpenTK.Platform.OpenGLGraphicsApiHints.SwapMethod + commentId: P:OpenTK.Platform.OpenGLGraphicsApiHints.SwapMethod + href: OpenTK.Platform.OpenGLGraphicsApiHints.html#OpenTK_Platform_OpenGLGraphicsApiHints_SwapMethod + name: SwapMethod + nameWithType: OpenGLGraphicsApiHints.SwapMethod + fullName: OpenTK.Platform.OpenGLGraphicsApiHints.SwapMethod - uid: OpenTK.Platform.Native.Windows.OpenGLComponent.SwapBuffers* commentId: Overload:OpenTK.Platform.Native.Windows.OpenGLComponent.SwapBuffers href: OpenTK.Platform.Native.Windows.OpenGLComponent.html#OpenTK_Platform_Native_Windows_OpenGLComponent_SwapBuffers_OpenTK_Platform_OpenGLContextHandle_ diff --git a/api/OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce.yml b/api/OpenTK.Platform.Native.Windows.ShellComponent.CornerPreference.yml similarity index 78% rename from api/OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce.yml rename to api/OpenTK.Platform.Native.Windows.ShellComponent.CornerPreference.yml index fed684dd..a526e13f 100644 --- a/api/OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce.yml +++ b/api/OpenTK.Platform.Native.Windows.ShellComponent.CornerPreference.yml @@ -1,48 +1,48 @@ ### YamlMime:ManagedReference items: -- uid: OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce - commentId: T:OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce - id: ShellComponent.CornerPrefernce +- uid: OpenTK.Platform.Native.Windows.ShellComponent.CornerPreference + commentId: T:OpenTK.Platform.Native.Windows.ShellComponent.CornerPreference + id: ShellComponent.CornerPreference parent: OpenTK.Platform.Native.Windows children: - - OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce.Default - - OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce.DoNotRound - - OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce.Round - - OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce.RoundSmall + - OpenTK.Platform.Native.Windows.ShellComponent.CornerPreference.Default + - OpenTK.Platform.Native.Windows.ShellComponent.CornerPreference.DoNotRound + - OpenTK.Platform.Native.Windows.ShellComponent.CornerPreference.Round + - OpenTK.Platform.Native.Windows.ShellComponent.CornerPreference.RoundSmall langs: - csharp - vb - name: ShellComponent.CornerPrefernce - nameWithType: ShellComponent.CornerPrefernce - fullName: OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce + name: ShellComponent.CornerPreference + nameWithType: ShellComponent.CornerPreference + fullName: OpenTK.Platform.Native.Windows.ShellComponent.CornerPreference type: Enum source: - id: CornerPrefernce + id: CornerPreference path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\ShellComponent.cs - startLine: 246 + startLine: 263 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: Window corner preference options. example: [] syntax: - content: public enum ShellComponent.CornerPrefernce - content.vb: Public Enum ShellComponent.CornerPrefernce -- uid: OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce.Default - commentId: F:OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce.Default + content: public enum ShellComponent.CornerPreference + content.vb: Public Enum ShellComponent.CornerPreference +- uid: OpenTK.Platform.Native.Windows.ShellComponent.CornerPreference.Default + commentId: F:OpenTK.Platform.Native.Windows.ShellComponent.CornerPreference.Default id: Default - parent: OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce + parent: OpenTK.Platform.Native.Windows.ShellComponent.CornerPreference langs: - csharp - vb name: Default - nameWithType: ShellComponent.CornerPrefernce.Default - fullName: OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce.Default + nameWithType: ShellComponent.CornerPreference.Default + fullName: OpenTK.Platform.Native.Windows.ShellComponent.CornerPreference.Default type: Field source: id: Default path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\ShellComponent.cs - startLine: 251 + startLine: 268 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows @@ -51,22 +51,22 @@ items: syntax: content: Default = 0 return: - type: OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce -- uid: OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce.DoNotRound - commentId: F:OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce.DoNotRound + type: OpenTK.Platform.Native.Windows.ShellComponent.CornerPreference +- uid: OpenTK.Platform.Native.Windows.ShellComponent.CornerPreference.DoNotRound + commentId: F:OpenTK.Platform.Native.Windows.ShellComponent.CornerPreference.DoNotRound id: DoNotRound - parent: OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce + parent: OpenTK.Platform.Native.Windows.ShellComponent.CornerPreference langs: - csharp - vb name: DoNotRound - nameWithType: ShellComponent.CornerPrefernce.DoNotRound - fullName: OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce.DoNotRound + nameWithType: ShellComponent.CornerPreference.DoNotRound + fullName: OpenTK.Platform.Native.Windows.ShellComponent.CornerPreference.DoNotRound type: Field source: id: DoNotRound path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\ShellComponent.cs - startLine: 256 + startLine: 273 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows @@ -75,22 +75,22 @@ items: syntax: content: DoNotRound = 1 return: - type: OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce -- uid: OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce.Round - commentId: F:OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce.Round + type: OpenTK.Platform.Native.Windows.ShellComponent.CornerPreference +- uid: OpenTK.Platform.Native.Windows.ShellComponent.CornerPreference.Round + commentId: F:OpenTK.Platform.Native.Windows.ShellComponent.CornerPreference.Round id: Round - parent: OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce + parent: OpenTK.Platform.Native.Windows.ShellComponent.CornerPreference langs: - csharp - vb name: Round - nameWithType: ShellComponent.CornerPrefernce.Round - fullName: OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce.Round + nameWithType: ShellComponent.CornerPreference.Round + fullName: OpenTK.Platform.Native.Windows.ShellComponent.CornerPreference.Round type: Field source: id: Round path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\ShellComponent.cs - startLine: 261 + startLine: 278 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows @@ -99,22 +99,22 @@ items: syntax: content: Round = 2 return: - type: OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce -- uid: OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce.RoundSmall - commentId: F:OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce.RoundSmall + type: OpenTK.Platform.Native.Windows.ShellComponent.CornerPreference +- uid: OpenTK.Platform.Native.Windows.ShellComponent.CornerPreference.RoundSmall + commentId: F:OpenTK.Platform.Native.Windows.ShellComponent.CornerPreference.RoundSmall id: RoundSmall - parent: OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce + parent: OpenTK.Platform.Native.Windows.ShellComponent.CornerPreference langs: - csharp - vb name: RoundSmall - nameWithType: ShellComponent.CornerPrefernce.RoundSmall - fullName: OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce.RoundSmall + nameWithType: ShellComponent.CornerPreference.RoundSmall + fullName: OpenTK.Platform.Native.Windows.ShellComponent.CornerPreference.RoundSmall type: Field source: id: RoundSmall path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\ShellComponent.cs - startLine: 266 + startLine: 283 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows @@ -123,7 +123,7 @@ items: syntax: content: RoundSmall = 3 return: - type: OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce + type: OpenTK.Platform.Native.Windows.ShellComponent.CornerPreference references: - uid: OpenTK.Platform.Native.Windows commentId: N:OpenTK.Platform.Native.Windows @@ -163,26 +163,26 @@ references: - uid: OpenTK.Platform.Native.Windows name: Windows href: OpenTK.Platform.Native.Windows.html -- uid: OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce - commentId: T:OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce +- uid: OpenTK.Platform.Native.Windows.ShellComponent.CornerPreference + commentId: T:OpenTK.Platform.Native.Windows.ShellComponent.CornerPreference parent: OpenTK.Platform.Native.Windows href: OpenTK.Platform.Native.Windows.ShellComponent.html - name: ShellComponent.CornerPrefernce - nameWithType: ShellComponent.CornerPrefernce - fullName: OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce + name: ShellComponent.CornerPreference + nameWithType: ShellComponent.CornerPreference + fullName: OpenTK.Platform.Native.Windows.ShellComponent.CornerPreference spec.csharp: - uid: OpenTK.Platform.Native.Windows.ShellComponent name: ShellComponent href: OpenTK.Platform.Native.Windows.ShellComponent.html - name: . - - uid: OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce - name: CornerPrefernce - href: OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce.html + - uid: OpenTK.Platform.Native.Windows.ShellComponent.CornerPreference + name: CornerPreference + href: OpenTK.Platform.Native.Windows.ShellComponent.CornerPreference.html spec.vb: - uid: OpenTK.Platform.Native.Windows.ShellComponent name: ShellComponent href: OpenTK.Platform.Native.Windows.ShellComponent.html - name: . - - uid: OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce - name: CornerPrefernce - href: OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce.html + - uid: OpenTK.Platform.Native.Windows.ShellComponent.CornerPreference + name: CornerPreference + href: OpenTK.Platform.Native.Windows.ShellComponent.CornerPreference.html diff --git a/api/OpenTK.Platform.Native.Windows.ShellComponent.yml b/api/OpenTK.Platform.Native.Windows.ShellComponent.yml index 64f79cf3..ddcc82fd 100644 --- a/api/OpenTK.Platform.Native.Windows.ShellComponent.yml +++ b/api/OpenTK.Platform.Native.Windows.ShellComponent.yml @@ -5,18 +5,20 @@ items: id: ShellComponent parent: OpenTK.Platform.Native.Windows children: - - OpenTK.Platform.Native.Windows.ShellComponent.AllowScreenSaver(System.Boolean) + - OpenTK.Platform.Native.Windows.ShellComponent.AllowScreenSaver(System.Boolean,System.String) - OpenTK.Platform.Native.Windows.ShellComponent.GetBatteryInfo(OpenTK.Platform.BatteryInfo@) - OpenTK.Platform.Native.Windows.ShellComponent.GetPreferredTheme - OpenTK.Platform.Native.Windows.ShellComponent.GetSystemMemoryInformation - OpenTK.Platform.Native.Windows.ShellComponent.Initialize(OpenTK.Platform.ToolkitOptions) + - OpenTK.Platform.Native.Windows.ShellComponent.IsScreenSaverAllowed - OpenTK.Platform.Native.Windows.ShellComponent.Logger - OpenTK.Platform.Native.Windows.ShellComponent.Name - OpenTK.Platform.Native.Windows.ShellComponent.Provides - OpenTK.Platform.Native.Windows.ShellComponent.SetCaptionColor(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Color3{OpenTK.Mathematics.Rgb}) - OpenTK.Platform.Native.Windows.ShellComponent.SetCaptionTextColor(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Color3{OpenTK.Mathematics.Rgb}) - OpenTK.Platform.Native.Windows.ShellComponent.SetImmersiveDarkMode(OpenTK.Platform.WindowHandle,System.Boolean) - - OpenTK.Platform.Native.Windows.ShellComponent.SetWindowCornerPreference(OpenTK.Platform.WindowHandle,OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce) + - OpenTK.Platform.Native.Windows.ShellComponent.SetWindowCornerPreference(OpenTK.Platform.WindowHandle,OpenTK.Platform.Native.Windows.ShellComponent.CornerPreference) + - OpenTK.Platform.Native.Windows.ShellComponent.Uninitialize langs: - csharp - vb @@ -125,7 +127,7 @@ items: assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows - summary: Provides a logger for this component. + summary: The logger that this component uses to log diagnostic messages. example: [] syntax: content: public ILogger? Logger { get; set; } @@ -134,6 +136,11 @@ items: type: OpenTK.Core.Utility.ILogger content.vb: Public Property Logger As ILogger overload: OpenTK.Platform.Native.Windows.ShellComponent.Logger* + seealso: + - linkId: OpenTK.Core.Utility.ILogger + commentId: T:OpenTK.Core.Utility.ILogger + - linkId: OpenTK.Platform.ToolkitOptions.Logger + commentId: P:OpenTK.Platform.ToolkitOptions.Logger implements: - OpenTK.Platform.IPalComponent.Logger - uid: OpenTK.Platform.Native.Windows.ShellComponent.Initialize(OpenTK.Platform.ToolkitOptions) @@ -150,7 +157,7 @@ items: source: id: Initialize path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\ShellComponent.cs - startLine: 31 + startLine: 33 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows @@ -164,48 +171,129 @@ items: description: The options to initialize the component with. content.vb: Public Sub Initialize(options As ToolkitOptions) overload: OpenTK.Platform.Native.Windows.ShellComponent.Initialize* + seealso: + - linkId: OpenTK.Platform.ToolkitOptions + commentId: T:OpenTK.Platform.ToolkitOptions + - linkId: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) implements: - OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) -- uid: OpenTK.Platform.Native.Windows.ShellComponent.AllowScreenSaver(System.Boolean) - commentId: M:OpenTK.Platform.Native.Windows.ShellComponent.AllowScreenSaver(System.Boolean) - id: AllowScreenSaver(System.Boolean) +- uid: OpenTK.Platform.Native.Windows.ShellComponent.Uninitialize + commentId: M:OpenTK.Platform.Native.Windows.ShellComponent.Uninitialize + id: Uninitialize parent: OpenTK.Platform.Native.Windows.ShellComponent langs: - csharp - vb - name: AllowScreenSaver(bool) - nameWithType: ShellComponent.AllowScreenSaver(bool) - fullName: OpenTK.Platform.Native.Windows.ShellComponent.AllowScreenSaver(bool) + name: Uninitialize() + nameWithType: ShellComponent.Uninitialize() + fullName: OpenTK.Platform.Native.Windows.ShellComponent.Uninitialize() + type: Method + source: + id: Uninitialize + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\ShellComponent.cs + startLine: 42 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform.Native.Windows + summary: Uninitialize the component. Frees any native resources used by the component. + example: [] + syntax: + content: public void Uninitialize() + content.vb: Public Sub Uninitialize() + overload: OpenTK.Platform.Native.Windows.ShellComponent.Uninitialize* + seealso: + - linkId: OpenTK.Platform.Toolkit.Uninit + commentId: M:OpenTK.Platform.Toolkit.Uninit + implements: + - OpenTK.Platform.IPalComponent.Uninitialize +- uid: OpenTK.Platform.Native.Windows.ShellComponent.AllowScreenSaver(System.Boolean,System.String) + commentId: M:OpenTK.Platform.Native.Windows.ShellComponent.AllowScreenSaver(System.Boolean,System.String) + id: AllowScreenSaver(System.Boolean,System.String) + parent: OpenTK.Platform.Native.Windows.ShellComponent + langs: + - csharp + - vb + name: AllowScreenSaver(bool, string?) + nameWithType: ShellComponent.AllowScreenSaver(bool, string?) + fullName: OpenTK.Platform.Native.Windows.ShellComponent.AllowScreenSaver(bool, string?) type: Method source: id: AllowScreenSaver path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\ShellComponent.cs - startLine: 38 + startLine: 48 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: >- Sets whether or not a screensaver is allowed to draw on top of the window. - For games with long cutscenes it would be appropriate to set this to false, + For games with long cutscenes it would be appropriate to set this to false, - while tools that act like normal applications should set this to true. + while tools that act like normal applications should set this to true. By default this setting is untouched. example: [] syntax: - content: public void AllowScreenSaver(bool allow) + content: public void AllowScreenSaver(bool allow, string? disableReason) parameters: - id: allow type: System.Boolean description: Whether to allow screensavers to appear while the application is running. - content.vb: Public Sub AllowScreenSaver(allow As Boolean) + - id: disableReason + type: System.String + description: >- + A reason for why the screen saver is disabled. + + This string should both contain the reason why the screen saver is disabed as well as the name of the + + application so the user knows which application is preventing the screen saver from running. + + If null is sent the following default message will be sent: + +
$"{ApplicationName} is is preventing screen saver."
+ content.vb: Public Sub AllowScreenSaver(allow As Boolean, disableReason As String) overload: OpenTK.Platform.Native.Windows.ShellComponent.AllowScreenSaver* + seealso: + - linkId: OpenTK.Platform.IShellComponent.IsScreenSaverAllowed + commentId: M:OpenTK.Platform.IShellComponent.IsScreenSaverAllowed implements: - - OpenTK.Platform.IShellComponent.AllowScreenSaver(System.Boolean) - nameWithType.vb: ShellComponent.AllowScreenSaver(Boolean) - fullName.vb: OpenTK.Platform.Native.Windows.ShellComponent.AllowScreenSaver(Boolean) - name.vb: AllowScreenSaver(Boolean) + - OpenTK.Platform.IShellComponent.AllowScreenSaver(System.Boolean,System.String) + nameWithType.vb: ShellComponent.AllowScreenSaver(Boolean, String) + fullName.vb: OpenTK.Platform.Native.Windows.ShellComponent.AllowScreenSaver(Boolean, String) + name.vb: AllowScreenSaver(Boolean, String) +- uid: OpenTK.Platform.Native.Windows.ShellComponent.IsScreenSaverAllowed + commentId: M:OpenTK.Platform.Native.Windows.ShellComponent.IsScreenSaverAllowed + id: IsScreenSaverAllowed + parent: OpenTK.Platform.Native.Windows.ShellComponent + langs: + - csharp + - vb + name: IsScreenSaverAllowed() + nameWithType: ShellComponent.IsScreenSaverAllowed() + fullName: OpenTK.Platform.Native.Windows.ShellComponent.IsScreenSaverAllowed() + type: Method + source: + id: IsScreenSaverAllowed + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\ShellComponent.cs + startLine: 54 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform.Native.Windows + summary: Gets if the screen saver is allowed to run or not. + example: [] + syntax: + content: public bool IsScreenSaverAllowed() + return: + type: System.Boolean + description: If the screen saver is allowed to run. + content.vb: Public Function IsScreenSaverAllowed() As Boolean + overload: OpenTK.Platform.Native.Windows.ShellComponent.IsScreenSaverAllowed* + seealso: + - linkId: OpenTK.Platform.IShellComponent.AllowScreenSaver(System.Boolean,System.String) + commentId: M:OpenTK.Platform.IShellComponent.AllowScreenSaver(System.Boolean,System.String) + implements: + - OpenTK.Platform.IShellComponent.IsScreenSaverAllowed - uid: OpenTK.Platform.Native.Windows.ShellComponent.GetBatteryInfo(OpenTK.Platform.BatteryInfo@) commentId: M:OpenTK.Platform.Native.Windows.ShellComponent.GetBatteryInfo(OpenTK.Platform.BatteryInfo@) id: GetBatteryInfo(OpenTK.Platform.BatteryInfo@) @@ -220,7 +308,7 @@ items: source: id: GetBatteryInfo path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\ShellComponent.cs - startLine: 44 + startLine: 61 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows @@ -255,7 +343,7 @@ items: source: id: GetPreferredTheme path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\ShellComponent.cs - startLine: 125 + startLine: 142 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows @@ -268,6 +356,9 @@ items: description: The user set preferred theme. content.vb: Public Function GetPreferredTheme() As ThemeInfo overload: OpenTK.Platform.Native.Windows.ShellComponent.GetPreferredTheme* + seealso: + - linkId: OpenTK.Platform.ThemeChangeEventArgs + commentId: T:OpenTK.Platform.ThemeChangeEventArgs implements: - OpenTK.Platform.IShellComponent.GetPreferredTheme - uid: OpenTK.Platform.Native.Windows.ShellComponent.SetImmersiveDarkMode(OpenTK.Platform.WindowHandle,System.Boolean) @@ -284,7 +375,7 @@ items: source: id: SetImmersiveDarkMode path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\ShellComponent.cs - startLine: 139 + startLine: 156 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows @@ -318,7 +409,7 @@ items: source: id: SetCaptionTextColor path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\ShellComponent.cs - startLine: 213 + startLine: 230 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows @@ -353,7 +444,7 @@ items: source: id: SetCaptionColor path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\ShellComponent.cs - startLine: 230 + startLine: 247 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows @@ -374,21 +465,21 @@ items: nameWithType.vb: ShellComponent.SetCaptionColor(WindowHandle, Color3(Of Rgb)) fullName.vb: OpenTK.Platform.Native.Windows.ShellComponent.SetCaptionColor(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Color3(Of OpenTK.Mathematics.Rgb)) name.vb: SetCaptionColor(WindowHandle, Color3(Of Rgb)) -- uid: OpenTK.Platform.Native.Windows.ShellComponent.SetWindowCornerPreference(OpenTK.Platform.WindowHandle,OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce) - commentId: M:OpenTK.Platform.Native.Windows.ShellComponent.SetWindowCornerPreference(OpenTK.Platform.WindowHandle,OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce) - id: SetWindowCornerPreference(OpenTK.Platform.WindowHandle,OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce) +- uid: OpenTK.Platform.Native.Windows.ShellComponent.SetWindowCornerPreference(OpenTK.Platform.WindowHandle,OpenTK.Platform.Native.Windows.ShellComponent.CornerPreference) + commentId: M:OpenTK.Platform.Native.Windows.ShellComponent.SetWindowCornerPreference(OpenTK.Platform.WindowHandle,OpenTK.Platform.Native.Windows.ShellComponent.CornerPreference) + id: SetWindowCornerPreference(OpenTK.Platform.WindowHandle,OpenTK.Platform.Native.Windows.ShellComponent.CornerPreference) parent: OpenTK.Platform.Native.Windows.ShellComponent langs: - csharp - vb - name: SetWindowCornerPreference(WindowHandle, CornerPrefernce) - nameWithType: ShellComponent.SetWindowCornerPreference(WindowHandle, ShellComponent.CornerPrefernce) - fullName: OpenTK.Platform.Native.Windows.ShellComponent.SetWindowCornerPreference(OpenTK.Platform.WindowHandle, OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce) + name: SetWindowCornerPreference(WindowHandle, CornerPreference) + nameWithType: ShellComponent.SetWindowCornerPreference(WindowHandle, ShellComponent.CornerPreference) + fullName: OpenTK.Platform.Native.Windows.ShellComponent.SetWindowCornerPreference(OpenTK.Platform.WindowHandle, OpenTK.Platform.Native.Windows.ShellComponent.CornerPreference) type: Method source: id: SetWindowCornerPreference path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\ShellComponent.cs - startLine: 273 + startLine: 290 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows @@ -398,13 +489,13 @@ items: Sets if the window should have rounded corners or not. example: [] syntax: - content: public void SetWindowCornerPreference(WindowHandle handle, ShellComponent.CornerPrefernce preference) + content: public void SetWindowCornerPreference(WindowHandle handle, ShellComponent.CornerPreference preference) parameters: - id: handle type: OpenTK.Platform.WindowHandle - id: preference - type: OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce - content.vb: Public Sub SetWindowCornerPreference(handle As WindowHandle, preference As ShellComponent.CornerPrefernce) + type: OpenTK.Platform.Native.Windows.ShellComponent.CornerPreference + content.vb: Public Sub SetWindowCornerPreference(handle As WindowHandle, preference As ShellComponent.CornerPreference) overload: OpenTK.Platform.Native.Windows.ShellComponent.SetWindowCornerPreference* - uid: OpenTK.Platform.Native.Windows.ShellComponent.GetSystemMemoryInformation commentId: M:OpenTK.Platform.Native.Windows.ShellComponent.GetSystemMemoryInformation @@ -420,7 +511,7 @@ items: source: id: GetSystemMemoryInformation path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\ShellComponent.cs - startLine: 287 + startLine: 304 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows @@ -791,6 +882,19 @@ references: name: PalComponents nameWithType: PalComponents fullName: OpenTK.Platform.PalComponents +- uid: OpenTK.Core.Utility.ILogger + commentId: T:OpenTK.Core.Utility.ILogger + parent: OpenTK.Core.Utility + href: OpenTK.Core.Utility.ILogger.html + name: ILogger + nameWithType: ILogger + fullName: OpenTK.Core.Utility.ILogger +- uid: OpenTK.Platform.ToolkitOptions.Logger + commentId: P:OpenTK.Platform.ToolkitOptions.Logger + href: OpenTK.Platform.ToolkitOptions.html#OpenTK_Platform_ToolkitOptions_Logger + name: Logger + nameWithType: ToolkitOptions.Logger + fullName: OpenTK.Platform.ToolkitOptions.Logger - uid: OpenTK.Platform.Native.Windows.ShellComponent.Logger* commentId: Overload:OpenTK.Platform.Native.Windows.ShellComponent.Logger href: OpenTK.Platform.Native.Windows.ShellComponent.html#OpenTK_Platform_Native_Windows_ShellComponent_Logger @@ -804,13 +908,6 @@ references: name: Logger nameWithType: IPalComponent.Logger fullName: OpenTK.Platform.IPalComponent.Logger -- uid: OpenTK.Core.Utility.ILogger - commentId: T:OpenTK.Core.Utility.ILogger - parent: OpenTK.Core.Utility - href: OpenTK.Core.Utility.ILogger.html - name: ILogger - nameWithType: ILogger - fullName: OpenTK.Core.Utility.ILogger - uid: OpenTK.Core.Utility commentId: N:OpenTK.Core.Utility href: OpenTK.html @@ -841,6 +938,37 @@ references: - uid: OpenTK.Core.Utility name: Utility href: OpenTK.Core.Utility.html +- uid: OpenTK.Platform.ToolkitOptions + commentId: T:OpenTK.Platform.ToolkitOptions + parent: OpenTK.Platform + href: OpenTK.Platform.ToolkitOptions.html + name: ToolkitOptions + nameWithType: ToolkitOptions + fullName: OpenTK.Platform.ToolkitOptions +- uid: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Init_OpenTK_Platform_ToolkitOptions_ + name: Init(ToolkitOptions) + nameWithType: Toolkit.Init(ToolkitOptions) + fullName: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + spec.csharp: + - uid: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + name: Init + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Init_OpenTK_Platform_ToolkitOptions_ + - name: ( + - uid: OpenTK.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Platform.ToolkitOptions.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + name: Init + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Init_OpenTK_Platform_ToolkitOptions_ + - name: ( + - uid: OpenTK.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Platform.ToolkitOptions.html + - name: ) - uid: OpenTK.Platform.Native.Windows.ShellComponent.Initialize* commentId: Overload:OpenTK.Platform.Native.Windows.ShellComponent.Initialize href: OpenTK.Platform.Native.Windows.ShellComponent.html#OpenTK_Platform_Native_Windows_ShellComponent_Initialize_OpenTK_Platform_ToolkitOptions_ @@ -872,49 +1000,116 @@ references: name: ToolkitOptions href: OpenTK.Platform.ToolkitOptions.html - name: ) -- uid: OpenTK.Platform.ToolkitOptions - commentId: T:OpenTK.Platform.ToolkitOptions - parent: OpenTK.Platform - href: OpenTK.Platform.ToolkitOptions.html - name: ToolkitOptions - nameWithType: ToolkitOptions - fullName: OpenTK.Platform.ToolkitOptions +- uid: OpenTK.Platform.Toolkit.Uninit + commentId: M:OpenTK.Platform.Toolkit.Uninit + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Uninit + name: Uninit() + nameWithType: Toolkit.Uninit() + fullName: OpenTK.Platform.Toolkit.Uninit() + spec.csharp: + - uid: OpenTK.Platform.Toolkit.Uninit + name: Uninit + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Uninit + - name: ( + - name: ) + spec.vb: + - uid: OpenTK.Platform.Toolkit.Uninit + name: Uninit + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Uninit + - name: ( + - name: ) +- uid: OpenTK.Platform.Native.Windows.ShellComponent.Uninitialize* + commentId: Overload:OpenTK.Platform.Native.Windows.ShellComponent.Uninitialize + href: OpenTK.Platform.Native.Windows.ShellComponent.html#OpenTK_Platform_Native_Windows_ShellComponent_Uninitialize + name: Uninitialize + nameWithType: ShellComponent.Uninitialize + fullName: OpenTK.Platform.Native.Windows.ShellComponent.Uninitialize +- uid: OpenTK.Platform.IPalComponent.Uninitialize + commentId: M:OpenTK.Platform.IPalComponent.Uninitialize + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + name: Uninitialize() + nameWithType: IPalComponent.Uninitialize() + fullName: OpenTK.Platform.IPalComponent.Uninitialize() + spec.csharp: + - uid: OpenTK.Platform.IPalComponent.Uninitialize + name: Uninitialize + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + - name: ( + - name: ) + spec.vb: + - uid: OpenTK.Platform.IPalComponent.Uninitialize + name: Uninitialize + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + - name: ( + - name: ) +- uid: OpenTK.Platform.IShellComponent.IsScreenSaverAllowed + commentId: M:OpenTK.Platform.IShellComponent.IsScreenSaverAllowed + parent: OpenTK.Platform.IShellComponent + href: OpenTK.Platform.IShellComponent.html#OpenTK_Platform_IShellComponent_IsScreenSaverAllowed + name: IsScreenSaverAllowed() + nameWithType: IShellComponent.IsScreenSaverAllowed() + fullName: OpenTK.Platform.IShellComponent.IsScreenSaverAllowed() + spec.csharp: + - uid: OpenTK.Platform.IShellComponent.IsScreenSaverAllowed + name: IsScreenSaverAllowed + href: OpenTK.Platform.IShellComponent.html#OpenTK_Platform_IShellComponent_IsScreenSaverAllowed + - name: ( + - name: ) + spec.vb: + - uid: OpenTK.Platform.IShellComponent.IsScreenSaverAllowed + name: IsScreenSaverAllowed + href: OpenTK.Platform.IShellComponent.html#OpenTK_Platform_IShellComponent_IsScreenSaverAllowed + - name: ( + - name: ) - uid: OpenTK.Platform.Native.Windows.ShellComponent.AllowScreenSaver* commentId: Overload:OpenTK.Platform.Native.Windows.ShellComponent.AllowScreenSaver - href: OpenTK.Platform.Native.Windows.ShellComponent.html#OpenTK_Platform_Native_Windows_ShellComponent_AllowScreenSaver_System_Boolean_ + href: OpenTK.Platform.Native.Windows.ShellComponent.html#OpenTK_Platform_Native_Windows_ShellComponent_AllowScreenSaver_System_Boolean_System_String_ name: AllowScreenSaver nameWithType: ShellComponent.AllowScreenSaver fullName: OpenTK.Platform.Native.Windows.ShellComponent.AllowScreenSaver -- uid: OpenTK.Platform.IShellComponent.AllowScreenSaver(System.Boolean) - commentId: M:OpenTK.Platform.IShellComponent.AllowScreenSaver(System.Boolean) +- uid: OpenTK.Platform.IShellComponent.AllowScreenSaver(System.Boolean,System.String) + commentId: M:OpenTK.Platform.IShellComponent.AllowScreenSaver(System.Boolean,System.String) parent: OpenTK.Platform.IShellComponent isExternal: true - href: OpenTK.Platform.IShellComponent.html#OpenTK_Platform_IShellComponent_AllowScreenSaver_System_Boolean_ - name: AllowScreenSaver(bool) - nameWithType: IShellComponent.AllowScreenSaver(bool) - fullName: OpenTK.Platform.IShellComponent.AllowScreenSaver(bool) - nameWithType.vb: IShellComponent.AllowScreenSaver(Boolean) - fullName.vb: OpenTK.Platform.IShellComponent.AllowScreenSaver(Boolean) - name.vb: AllowScreenSaver(Boolean) + href: OpenTK.Platform.IShellComponent.html#OpenTK_Platform_IShellComponent_AllowScreenSaver_System_Boolean_System_String_ + name: AllowScreenSaver(bool, string) + nameWithType: IShellComponent.AllowScreenSaver(bool, string) + fullName: OpenTK.Platform.IShellComponent.AllowScreenSaver(bool, string) + nameWithType.vb: IShellComponent.AllowScreenSaver(Boolean, String) + fullName.vb: OpenTK.Platform.IShellComponent.AllowScreenSaver(Boolean, String) + name.vb: AllowScreenSaver(Boolean, String) spec.csharp: - - uid: OpenTK.Platform.IShellComponent.AllowScreenSaver(System.Boolean) + - uid: OpenTK.Platform.IShellComponent.AllowScreenSaver(System.Boolean,System.String) name: AllowScreenSaver - href: OpenTK.Platform.IShellComponent.html#OpenTK_Platform_IShellComponent_AllowScreenSaver_System_Boolean_ + href: OpenTK.Platform.IShellComponent.html#OpenTK_Platform_IShellComponent_AllowScreenSaver_System_Boolean_System_String_ - name: ( - uid: System.Boolean name: bool isExternal: true href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: ',' + - name: " " + - uid: System.String + name: string + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string - name: ) spec.vb: - - uid: OpenTK.Platform.IShellComponent.AllowScreenSaver(System.Boolean) + - uid: OpenTK.Platform.IShellComponent.AllowScreenSaver(System.Boolean,System.String) name: AllowScreenSaver - href: OpenTK.Platform.IShellComponent.html#OpenTK_Platform_IShellComponent_AllowScreenSaver_System_Boolean_ + href: OpenTK.Platform.IShellComponent.html#OpenTK_Platform_IShellComponent_AllowScreenSaver_System_Boolean_System_String_ - name: ( - uid: System.Boolean name: Boolean isExternal: true href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: ',' + - name: " " + - uid: System.String + name: String + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string - name: ) - uid: System.Boolean commentId: T:System.Boolean @@ -927,6 +1122,12 @@ references: nameWithType.vb: Boolean fullName.vb: Boolean name.vb: Boolean +- uid: OpenTK.Platform.Native.Windows.ShellComponent.IsScreenSaverAllowed* + commentId: Overload:OpenTK.Platform.Native.Windows.ShellComponent.IsScreenSaverAllowed + href: OpenTK.Platform.Native.Windows.ShellComponent.html#OpenTK_Platform_Native_Windows_ShellComponent_IsScreenSaverAllowed + name: IsScreenSaverAllowed + nameWithType: ShellComponent.IsScreenSaverAllowed + fullName: OpenTK.Platform.Native.Windows.ShellComponent.IsScreenSaverAllowed - uid: OpenTK.Platform.BatteryStatus.HasSystemBattery commentId: F:OpenTK.Platform.BatteryStatus.HasSystemBattery href: OpenTK.Platform.BatteryStatus.html#OpenTK_Platform_BatteryStatus_HasSystemBattery @@ -983,6 +1184,12 @@ references: name: BatteryStatus nameWithType: BatteryStatus fullName: OpenTK.Platform.BatteryStatus +- uid: OpenTK.Platform.ThemeChangeEventArgs + commentId: T:OpenTK.Platform.ThemeChangeEventArgs + href: OpenTK.Platform.ThemeChangeEventArgs.html + name: ThemeChangeEventArgs + nameWithType: ThemeChangeEventArgs + fullName: OpenTK.Platform.ThemeChangeEventArgs - uid: OpenTK.Platform.Native.Windows.ShellComponent.GetPreferredTheme* commentId: Overload:OpenTK.Platform.Native.Windows.ShellComponent.GetPreferredTheme href: OpenTK.Platform.Native.Windows.ShellComponent.html#OpenTK_Platform_Native_Windows_ShellComponent_GetPreferredTheme @@ -1121,33 +1328,33 @@ references: fullName: OpenTK.Platform.Native.Windows.ShellComponent.SetCaptionColor - uid: OpenTK.Platform.Native.Windows.ShellComponent.SetWindowCornerPreference* commentId: Overload:OpenTK.Platform.Native.Windows.ShellComponent.SetWindowCornerPreference - href: OpenTK.Platform.Native.Windows.ShellComponent.html#OpenTK_Platform_Native_Windows_ShellComponent_SetWindowCornerPreference_OpenTK_Platform_WindowHandle_OpenTK_Platform_Native_Windows_ShellComponent_CornerPrefernce_ + href: OpenTK.Platform.Native.Windows.ShellComponent.html#OpenTK_Platform_Native_Windows_ShellComponent_SetWindowCornerPreference_OpenTK_Platform_WindowHandle_OpenTK_Platform_Native_Windows_ShellComponent_CornerPreference_ name: SetWindowCornerPreference nameWithType: ShellComponent.SetWindowCornerPreference fullName: OpenTK.Platform.Native.Windows.ShellComponent.SetWindowCornerPreference -- uid: OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce - commentId: T:OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce +- uid: OpenTK.Platform.Native.Windows.ShellComponent.CornerPreference + commentId: T:OpenTK.Platform.Native.Windows.ShellComponent.CornerPreference parent: OpenTK.Platform.Native.Windows href: OpenTK.Platform.Native.Windows.ShellComponent.html - name: ShellComponent.CornerPrefernce - nameWithType: ShellComponent.CornerPrefernce - fullName: OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce + name: ShellComponent.CornerPreference + nameWithType: ShellComponent.CornerPreference + fullName: OpenTK.Platform.Native.Windows.ShellComponent.CornerPreference spec.csharp: - uid: OpenTK.Platform.Native.Windows.ShellComponent name: ShellComponent href: OpenTK.Platform.Native.Windows.ShellComponent.html - name: . - - uid: OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce - name: CornerPrefernce - href: OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce.html + - uid: OpenTK.Platform.Native.Windows.ShellComponent.CornerPreference + name: CornerPreference + href: OpenTK.Platform.Native.Windows.ShellComponent.CornerPreference.html spec.vb: - uid: OpenTK.Platform.Native.Windows.ShellComponent name: ShellComponent href: OpenTK.Platform.Native.Windows.ShellComponent.html - name: . - - uid: OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce - name: CornerPrefernce - href: OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce.html + - uid: OpenTK.Platform.Native.Windows.ShellComponent.CornerPreference + name: CornerPreference + href: OpenTK.Platform.Native.Windows.ShellComponent.CornerPreference.html - uid: OpenTK.Platform.Native.Windows.ShellComponent.GetSystemMemoryInformation* commentId: Overload:OpenTK.Platform.Native.Windows.ShellComponent.GetSystemMemoryInformation href: OpenTK.Platform.Native.Windows.ShellComponent.html#OpenTK_Platform_Native_Windows_ShellComponent_GetSystemMemoryInformation diff --git a/api/OpenTK.Platform.Native.Windows.WindowComponent.yml b/api/OpenTK.Platform.Native.Windows.WindowComponent.yml index dcf8c092..fb47fe78 100644 --- a/api/OpenTK.Platform.Native.Windows.WindowComponent.yml +++ b/api/OpenTK.Platform.Native.Windows.WindowComponent.yml @@ -10,28 +10,31 @@ items: - OpenTK.Platform.Native.Windows.WindowComponent.CanGetDisplay - OpenTK.Platform.Native.Windows.WindowComponent.CanSetCursor - OpenTK.Platform.Native.Windows.WindowComponent.CanSetIcon - - OpenTK.Platform.Native.Windows.WindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) + - OpenTK.Platform.Native.Windows.WindowComponent.ClientToFramebuffer(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + - OpenTK.Platform.Native.Windows.WindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) - OpenTK.Platform.Native.Windows.WindowComponent.Create(OpenTK.Platform.GraphicsApiHints) - OpenTK.Platform.Native.Windows.WindowComponent.Destroy(OpenTK.Platform.WindowHandle) - OpenTK.Platform.Native.Windows.WindowComponent.FocusWindow(OpenTK.Platform.WindowHandle) + - OpenTK.Platform.Native.Windows.WindowComponent.FramebufferToClient(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) - OpenTK.Platform.Native.Windows.WindowComponent.GetBorderStyle(OpenTK.Platform.WindowHandle) - OpenTK.Platform.Native.Windows.WindowComponent.GetBounds(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) - OpenTK.Platform.Native.Windows.WindowComponent.GetClientBounds(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) - - OpenTK.Platform.Native.Windows.WindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) - - OpenTK.Platform.Native.Windows.WindowComponent.GetClientSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + - OpenTK.Platform.Native.Windows.WindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) + - OpenTK.Platform.Native.Windows.WindowComponent.GetClientSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) - OpenTK.Platform.Native.Windows.WindowComponent.GetCursorCaptureMode(OpenTK.Platform.WindowHandle) - OpenTK.Platform.Native.Windows.WindowComponent.GetDisplay(OpenTK.Platform.WindowHandle) - - OpenTK.Platform.Native.Windows.WindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + - OpenTK.Platform.Native.Windows.WindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) - OpenTK.Platform.Native.Windows.WindowComponent.GetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle@) - OpenTK.Platform.Native.Windows.WindowComponent.GetHWND(OpenTK.Platform.WindowHandle) - OpenTK.Platform.Native.Windows.WindowComponent.GetIcon(OpenTK.Platform.WindowHandle) - OpenTK.Platform.Native.Windows.WindowComponent.GetMaxClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) - OpenTK.Platform.Native.Windows.WindowComponent.GetMinClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) - OpenTK.Platform.Native.Windows.WindowComponent.GetMode(OpenTK.Platform.WindowHandle) - - OpenTK.Platform.Native.Windows.WindowComponent.GetPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + - OpenTK.Platform.Native.Windows.WindowComponent.GetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) - OpenTK.Platform.Native.Windows.WindowComponent.GetScaleFactor(OpenTK.Platform.WindowHandle,System.Single@,System.Single@) - - OpenTK.Platform.Native.Windows.WindowComponent.GetSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + - OpenTK.Platform.Native.Windows.WindowComponent.GetSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) - OpenTK.Platform.Native.Windows.WindowComponent.GetTitle(OpenTK.Platform.WindowHandle) + - OpenTK.Platform.Native.Windows.WindowComponent.GetTransparencyMode(OpenTK.Platform.WindowHandle,System.Single@) - OpenTK.Platform.Native.Windows.WindowComponent.HInstance - OpenTK.Platform.Native.Windows.WindowComponent.HelperHWnd - OpenTK.Platform.Native.Windows.WindowComponent.Initialize(OpenTK.Platform.ToolkitOptions) @@ -43,13 +46,13 @@ items: - OpenTK.Platform.Native.Windows.WindowComponent.ProcessEvents(System.Boolean) - OpenTK.Platform.Native.Windows.WindowComponent.Provides - OpenTK.Platform.Native.Windows.WindowComponent.RequestAttention(OpenTK.Platform.WindowHandle) - - OpenTK.Platform.Native.Windows.WindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) + - OpenTK.Platform.Native.Windows.WindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) - OpenTK.Platform.Native.Windows.WindowComponent.SetAlwaysOnTop(OpenTK.Platform.WindowHandle,System.Boolean) - OpenTK.Platform.Native.Windows.WindowComponent.SetBorderStyle(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowBorderStyle) - OpenTK.Platform.Native.Windows.WindowComponent.SetBounds(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) - OpenTK.Platform.Native.Windows.WindowComponent.SetClientBounds(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) - - OpenTK.Platform.Native.Windows.WindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) - - OpenTK.Platform.Native.Windows.WindowComponent.SetClientSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) + - OpenTK.Platform.Native.Windows.WindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) + - OpenTK.Platform.Native.Windows.WindowComponent.SetClientSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) - OpenTK.Platform.Native.Windows.WindowComponent.SetCursor(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorHandle) - OpenTK.Platform.Native.Windows.WindowComponent.SetCursorCaptureMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorCaptureMode) - OpenTK.Platform.Native.Windows.WindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle) @@ -59,12 +62,15 @@ items: - OpenTK.Platform.Native.Windows.WindowComponent.SetMaxClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) - OpenTK.Platform.Native.Windows.WindowComponent.SetMinClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) - OpenTK.Platform.Native.Windows.WindowComponent.SetMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowMode) - - OpenTK.Platform.Native.Windows.WindowComponent.SetPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) - - OpenTK.Platform.Native.Windows.WindowComponent.SetSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) + - OpenTK.Platform.Native.Windows.WindowComponent.SetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) + - OpenTK.Platform.Native.Windows.WindowComponent.SetSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) - OpenTK.Platform.Native.Windows.WindowComponent.SetTitle(OpenTK.Platform.WindowHandle,System.String) + - OpenTK.Platform.Native.Windows.WindowComponent.SetTransparencyMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowTransparencyMode,System.Single) - OpenTK.Platform.Native.Windows.WindowComponent.SupportedEvents - OpenTK.Platform.Native.Windows.WindowComponent.SupportedModes - OpenTK.Platform.Native.Windows.WindowComponent.SupportedStyles + - OpenTK.Platform.Native.Windows.WindowComponent.SupportsFramebufferTransparency(OpenTK.Platform.WindowHandle) + - OpenTK.Platform.Native.Windows.WindowComponent.Uninitialize langs: - csharp - vb @@ -75,7 +81,7 @@ items: source: id: WindowComponent path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\WindowComponent.cs - startLine: 17 + startLine: 18 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows @@ -111,7 +117,7 @@ items: source: id: CLASS_NAME path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\WindowComponent.cs - startLine: 22 + startLine: 23 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows @@ -136,7 +142,7 @@ items: source: id: HInstance path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\WindowComponent.cs - startLine: 27 + startLine: 28 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows @@ -161,11 +167,11 @@ items: source: id: HelperHWnd path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\WindowComponent.cs - startLine: 32 + startLine: 33 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows - summary: The helper window used to load wgl extensions. + summary: The helper window used in part to load wgl extensions. example: [] syntax: content: public static nint HelperHWnd { get; } @@ -188,7 +194,7 @@ items: source: id: Name path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\WindowComponent.cs - startLine: 49 + startLine: 53 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows @@ -217,7 +223,7 @@ items: source: id: Provides path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\WindowComponent.cs - startLine: 52 + startLine: 56 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows @@ -246,11 +252,11 @@ items: source: id: Logger path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\WindowComponent.cs - startLine: 55 + startLine: 59 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows - summary: Provides a logger for this component. + summary: The logger that this component uses to log diagnostic messages. example: [] syntax: content: public ILogger? Logger { get; set; } @@ -259,6 +265,11 @@ items: type: OpenTK.Core.Utility.ILogger content.vb: Public Property Logger As ILogger overload: OpenTK.Platform.Native.Windows.WindowComponent.Logger* + seealso: + - linkId: OpenTK.Core.Utility.ILogger + commentId: T:OpenTK.Core.Utility.ILogger + - linkId: OpenTK.Platform.ToolkitOptions.Logger + commentId: P:OpenTK.Platform.ToolkitOptions.Logger implements: - OpenTK.Platform.IPalComponent.Logger - uid: OpenTK.Platform.Native.Windows.WindowComponent.Initialize(OpenTK.Platform.ToolkitOptions) @@ -275,7 +286,7 @@ items: source: id: Initialize path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\WindowComponent.cs - startLine: 58 + startLine: 62 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows @@ -289,8 +300,42 @@ items: description: The options to initialize the component with. content.vb: Public Sub Initialize(options As ToolkitOptions) overload: OpenTK.Platform.Native.Windows.WindowComponent.Initialize* + seealso: + - linkId: OpenTK.Platform.ToolkitOptions + commentId: T:OpenTK.Platform.ToolkitOptions + - linkId: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) implements: - OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) +- uid: OpenTK.Platform.Native.Windows.WindowComponent.Uninitialize + commentId: M:OpenTK.Platform.Native.Windows.WindowComponent.Uninitialize + id: Uninitialize + parent: OpenTK.Platform.Native.Windows.WindowComponent + langs: + - csharp + - vb + name: Uninitialize() + nameWithType: WindowComponent.Uninitialize() + fullName: OpenTK.Platform.Native.Windows.WindowComponent.Uninitialize() + type: Method + source: + id: Uninitialize + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\WindowComponent.cs + startLine: 142 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform.Native.Windows + summary: Uninitialize the component. Frees any native resources used by the component. + example: [] + syntax: + content: public void Uninitialize() + content.vb: Public Sub Uninitialize() + overload: OpenTK.Platform.Native.Windows.WindowComponent.Uninitialize* + seealso: + - linkId: OpenTK.Platform.Toolkit.Uninit + commentId: M:OpenTK.Platform.Toolkit.Uninit + implements: + - OpenTK.Platform.IPalComponent.Uninitialize - uid: OpenTK.Platform.Native.Windows.WindowComponent.CanSetIcon commentId: P:OpenTK.Platform.Native.Windows.WindowComponent.CanSetIcon id: CanSetIcon @@ -305,11 +350,11 @@ items: source: id: CanSetIcon path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\WindowComponent.cs - startLine: 140 + startLine: 166 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows - summary: True when the driver supports setting the window icon using . + summary: true when the driver supports setting and getting the window icon using and . example: [] syntax: content: public bool CanSetIcon { get; } @@ -321,6 +366,8 @@ items: seealso: - linkId: OpenTK.Platform.IWindowComponent.SetIcon(OpenTK.Platform.WindowHandle,OpenTK.Platform.IconHandle) commentId: M:OpenTK.Platform.IWindowComponent.SetIcon(OpenTK.Platform.WindowHandle,OpenTK.Platform.IconHandle) + - linkId: OpenTK.Platform.IWindowComponent.GetIcon(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.GetIcon(OpenTK.Platform.WindowHandle) implements: - OpenTK.Platform.IWindowComponent.CanSetIcon - uid: OpenTK.Platform.Native.Windows.WindowComponent.CanGetDisplay @@ -337,11 +384,11 @@ items: source: id: CanGetDisplay path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\WindowComponent.cs - startLine: 143 + startLine: 169 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows - summary: True when the driver can provide the display the window is in using . + summary: true when the driver can provide the display the window is in using . example: [] syntax: content: public bool CanGetDisplay { get; } @@ -369,11 +416,11 @@ items: source: id: CanSetCursor path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\WindowComponent.cs - startLine: 146 + startLine: 172 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows - summary: True when the driver supports setting the cursor of the window using . + summary: true when the driver supports setting the cursor of the window using . example: [] syntax: content: public bool CanSetCursor { get; } @@ -401,11 +448,11 @@ items: source: id: CanCaptureCursor path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\WindowComponent.cs - startLine: 149 + startLine: 175 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows - summary: True when the driver supports capturing the cursor in a window using . + summary: true when the driver supports capturing the cursor in a window using . example: [] syntax: content: public bool CanCaptureCursor { get; } @@ -433,7 +480,7 @@ items: source: id: SupportedEvents path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\WindowComponent.cs - startLine: 152 + startLine: 178 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows @@ -462,7 +509,7 @@ items: source: id: SupportedStyles path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\WindowComponent.cs - startLine: 155 + startLine: 181 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows @@ -491,7 +538,7 @@ items: source: id: SupportedModes path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\WindowComponent.cs - startLine: 158 + startLine: 184 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows @@ -520,7 +567,7 @@ items: source: id: ProcessEvents path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\WindowComponent.cs - startLine: 1081 + startLine: 1108 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows @@ -553,7 +600,7 @@ items: source: id: Create path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\WindowComponent.cs - startLine: 1119 + startLine: 1146 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows @@ -570,6 +617,9 @@ items: description: Handle to the new window object. content.vb: Public Function Create(hints As GraphicsApiHints) As WindowHandle overload: OpenTK.Platform.Native.Windows.WindowComponent.Create* + seealso: + - linkId: OpenTK.Platform.IWindowComponent.Destroy(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.Destroy(OpenTK.Platform.WindowHandle) implements: - OpenTK.Platform.IWindowComponent.Create(OpenTK.Platform.GraphicsApiHints) - uid: OpenTK.Platform.Native.Windows.WindowComponent.Destroy(OpenTK.Platform.WindowHandle) @@ -586,7 +636,7 @@ items: source: id: Destroy path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\WindowComponent.cs - startLine: 1158 + startLine: 1185 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows @@ -600,10 +650,11 @@ items: description: Handle to a window object. content.vb: Public Sub Destroy(handle As WindowHandle) overload: OpenTK.Platform.Native.Windows.WindowComponent.Destroy* - exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: handle is null. + seealso: + - linkId: OpenTK.Platform.IWindowComponent.Create(OpenTK.Platform.GraphicsApiHints) + commentId: M:OpenTK.Platform.IWindowComponent.Create(OpenTK.Platform.GraphicsApiHints) + - linkId: OpenTK.Platform.IWindowComponent.IsWindowDestroyed(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.IsWindowDestroyed(OpenTK.Platform.WindowHandle) implements: - OpenTK.Platform.IWindowComponent.Destroy(OpenTK.Platform.WindowHandle) - uid: OpenTK.Platform.Native.Windows.WindowComponent.IsWindowDestroyed(OpenTK.Platform.WindowHandle) @@ -620,7 +671,7 @@ items: source: id: IsWindowDestroyed path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\WindowComponent.cs - startLine: 1189 + startLine: 1216 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows @@ -637,6 +688,11 @@ items: description: If was called with the window handle. content.vb: Public Function IsWindowDestroyed(handle As WindowHandle) As Boolean overload: OpenTK.Platform.Native.Windows.WindowComponent.IsWindowDestroyed* + seealso: + - linkId: OpenTK.Platform.IWindowComponent.Create(OpenTK.Platform.GraphicsApiHints) + commentId: M:OpenTK.Platform.IWindowComponent.Create(OpenTK.Platform.GraphicsApiHints) + - linkId: OpenTK.Platform.IWindowComponent.Destroy(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.Destroy(OpenTK.Platform.WindowHandle) implements: - OpenTK.Platform.IWindowComponent.IsWindowDestroyed(OpenTK.Platform.WindowHandle) - uid: OpenTK.Platform.Native.Windows.WindowComponent.GetTitle(OpenTK.Platform.WindowHandle) @@ -653,7 +709,7 @@ items: source: id: GetTitle path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\WindowComponent.cs - startLine: 1197 + startLine: 1224 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows @@ -670,10 +726,9 @@ items: description: The title of the window. content.vb: Public Function GetTitle(handle As WindowHandle) As String overload: OpenTK.Platform.Native.Windows.WindowComponent.GetTitle* - exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: handle is null. + seealso: + - linkId: OpenTK.Platform.IWindowComponent.SetTitle(OpenTK.Platform.WindowHandle,System.String) + commentId: M:OpenTK.Platform.IWindowComponent.SetTitle(OpenTK.Platform.WindowHandle,System.String) implements: - OpenTK.Platform.IWindowComponent.GetTitle(OpenTK.Platform.WindowHandle) - uid: OpenTK.Platform.Native.Windows.WindowComponent.SetTitle(OpenTK.Platform.WindowHandle,System.String) @@ -690,7 +745,7 @@ items: source: id: SetTitle path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\WindowComponent.cs - startLine: 1222 + startLine: 1249 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows @@ -707,10 +762,9 @@ items: description: New window title string. content.vb: Public Sub SetTitle(handle As WindowHandle, title As String) overload: OpenTK.Platform.Native.Windows.WindowComponent.SetTitle* - exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: handle or title is null. + seealso: + - linkId: OpenTK.Platform.IWindowComponent.GetTitle(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.GetTitle(OpenTK.Platform.WindowHandle) implements: - OpenTK.Platform.IWindowComponent.SetTitle(OpenTK.Platform.WindowHandle,System.String) nameWithType.vb: WindowComponent.SetTitle(WindowHandle, String) @@ -730,7 +784,7 @@ items: source: id: GetIcon path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\WindowComponent.cs - startLine: 1234 + startLine: 1261 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows @@ -748,12 +802,14 @@ items: content.vb: Public Function GetIcon(handle As WindowHandle) As IconHandle overload: OpenTK.Platform.Native.Windows.WindowComponent.GetIcon* exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: handle is null. - - type: OpenTK.Platform.PalNotImplementedException - commentId: T:OpenTK.Platform.PalNotImplementedException - description: Driver does not support getting the window icon. See . + - type: System.PlatformNotSupportedException + commentId: T:System.PlatformNotSupportedException + description: Backend does not support getting the window icon. See . + seealso: + - linkId: OpenTK.Platform.IWindowComponent.CanSetIcon + commentId: P:OpenTK.Platform.IWindowComponent.CanSetIcon + - linkId: OpenTK.Platform.IWindowComponent.SetIcon(OpenTK.Platform.WindowHandle,OpenTK.Platform.IconHandle) + commentId: M:OpenTK.Platform.IWindowComponent.SetIcon(OpenTK.Platform.WindowHandle,OpenTK.Platform.IconHandle) implements: - OpenTK.Platform.IWindowComponent.GetIcon(OpenTK.Platform.WindowHandle) - uid: OpenTK.Platform.Native.Windows.WindowComponent.SetIcon(OpenTK.Platform.WindowHandle,OpenTK.Platform.IconHandle) @@ -770,7 +826,7 @@ items: source: id: SetIcon path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\WindowComponent.cs - startLine: 1290 + startLine: 1317 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows @@ -784,193 +840,161 @@ items: description: Handle to a window. - id: icon type: OpenTK.Platform.IconHandle - description: Handle to an icon object, or null to revert to default. + description: Handle to an icon object. content.vb: Public Sub SetIcon(handle As WindowHandle, icon As IconHandle) overload: OpenTK.Platform.Native.Windows.WindowComponent.SetIcon* exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: handle or icon is null. - - type: OpenTK.Platform.PalNotImplementedException - commentId: T:OpenTK.Platform.PalNotImplementedException + - type: System.PlatformNotSupportedException + commentId: T:System.PlatformNotSupportedException description: Backend does not support setting the window icon. See . seealso: - linkId: OpenTK.Platform.IWindowComponent.CanSetIcon commentId: P:OpenTK.Platform.IWindowComponent.CanSetIcon + - linkId: OpenTK.Platform.IWindowComponent.GetIcon(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.GetIcon(OpenTK.Platform.WindowHandle) implements: - OpenTK.Platform.IWindowComponent.SetIcon(OpenTK.Platform.WindowHandle,OpenTK.Platform.IconHandle) -- uid: OpenTK.Platform.Native.Windows.WindowComponent.GetPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) - commentId: M:OpenTK.Platform.Native.Windows.WindowComponent.GetPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) - id: GetPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) +- uid: OpenTK.Platform.Native.Windows.WindowComponent.GetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) + commentId: M:OpenTK.Platform.Native.Windows.WindowComponent.GetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) + id: GetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) parent: OpenTK.Platform.Native.Windows.WindowComponent langs: - csharp - vb - name: GetPosition(WindowHandle, out int, out int) - nameWithType: WindowComponent.GetPosition(WindowHandle, out int, out int) - fullName: OpenTK.Platform.Native.Windows.WindowComponent.GetPosition(OpenTK.Platform.WindowHandle, out int, out int) + name: GetPosition(WindowHandle, out Vector2i) + nameWithType: WindowComponent.GetPosition(WindowHandle, out Vector2i) + fullName: OpenTK.Platform.Native.Windows.WindowComponent.GetPosition(OpenTK.Platform.WindowHandle, out OpenTK.Mathematics.Vector2i) type: Method source: id: GetPosition path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\WindowComponent.cs - startLine: 1304 + startLine: 1331 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: Get the window position in display coordinates (top left origin). example: [] syntax: - content: public void GetPosition(WindowHandle handle, out int x, out int y) + content: public void GetPosition(WindowHandle handle, out Vector2i position) parameters: - id: handle type: OpenTK.Platform.WindowHandle description: Handle to a window. - - id: x - type: System.Int32 - description: X coordinate of the window. - - id: y - type: System.Int32 - description: Y coordinate of the window. - content.vb: Public Sub GetPosition(handle As WindowHandle, x As Integer, y As Integer) + - id: position + type: OpenTK.Mathematics.Vector2i + description: Coordinate of the window in screen coordinates. + content.vb: Public Sub GetPosition(handle As WindowHandle, position As Vector2i) overload: OpenTK.Platform.Native.Windows.WindowComponent.GetPosition* - exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: handle is null. + seealso: + - linkId: OpenTK.Platform.IWindowComponent.SetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) + commentId: M:OpenTK.Platform.IWindowComponent.SetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) implements: - - OpenTK.Platform.IWindowComponent.GetPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) - nameWithType.vb: WindowComponent.GetPosition(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Platform.Native.Windows.WindowComponent.GetPosition(OpenTK.Platform.WindowHandle, Integer, Integer) - name.vb: GetPosition(WindowHandle, Integer, Integer) -- uid: OpenTK.Platform.Native.Windows.WindowComponent.SetPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) - commentId: M:OpenTK.Platform.Native.Windows.WindowComponent.SetPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) - id: SetPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) + - OpenTK.Platform.IWindowComponent.GetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) + nameWithType.vb: WindowComponent.GetPosition(WindowHandle, Vector2i) + fullName.vb: OpenTK.Platform.Native.Windows.WindowComponent.GetPosition(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2i) + name.vb: GetPosition(WindowHandle, Vector2i) +- uid: OpenTK.Platform.Native.Windows.WindowComponent.SetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) + commentId: M:OpenTK.Platform.Native.Windows.WindowComponent.SetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) + id: SetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) parent: OpenTK.Platform.Native.Windows.WindowComponent langs: - csharp - vb - name: SetPosition(WindowHandle, int, int) - nameWithType: WindowComponent.SetPosition(WindowHandle, int, int) - fullName: OpenTK.Platform.Native.Windows.WindowComponent.SetPosition(OpenTK.Platform.WindowHandle, int, int) + name: SetPosition(WindowHandle, Vector2i) + nameWithType: WindowComponent.SetPosition(WindowHandle, Vector2i) + fullName: OpenTK.Platform.Native.Windows.WindowComponent.SetPosition(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2i) type: Method source: id: SetPosition path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\WindowComponent.cs - startLine: 1312 + startLine: 1339 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: Set the window position in display coordinates (top left origin). example: [] syntax: - content: public void SetPosition(WindowHandle handle, int x, int y) + content: public void SetPosition(WindowHandle handle, Vector2i newPosition) parameters: - id: handle type: OpenTK.Platform.WindowHandle description: Handle to a window. - - id: x - type: System.Int32 - description: New X coordinate of the window. - - id: y - type: System.Int32 - description: New Y coordinate of the window. - content.vb: Public Sub SetPosition(handle As WindowHandle, x As Integer, y As Integer) + - id: newPosition + type: OpenTK.Mathematics.Vector2i + description: New position of the window in screen coordinates. + content.vb: Public Sub SetPosition(handle As WindowHandle, newPosition As Vector2i) overload: OpenTK.Platform.Native.Windows.WindowComponent.SetPosition* - exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: handle is null. implements: - - OpenTK.Platform.IWindowComponent.SetPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) - nameWithType.vb: WindowComponent.SetPosition(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Platform.Native.Windows.WindowComponent.SetPosition(OpenTK.Platform.WindowHandle, Integer, Integer) - name.vb: SetPosition(WindowHandle, Integer, Integer) -- uid: OpenTK.Platform.Native.Windows.WindowComponent.GetSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) - commentId: M:OpenTK.Platform.Native.Windows.WindowComponent.GetSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) - id: GetSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + - OpenTK.Platform.IWindowComponent.SetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) +- uid: OpenTK.Platform.Native.Windows.WindowComponent.GetSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) + commentId: M:OpenTK.Platform.Native.Windows.WindowComponent.GetSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) + id: GetSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) parent: OpenTK.Platform.Native.Windows.WindowComponent langs: - csharp - vb - name: GetSize(WindowHandle, out int, out int) - nameWithType: WindowComponent.GetSize(WindowHandle, out int, out int) - fullName: OpenTK.Platform.Native.Windows.WindowComponent.GetSize(OpenTK.Platform.WindowHandle, out int, out int) + name: GetSize(WindowHandle, out Vector2i) + nameWithType: WindowComponent.GetSize(WindowHandle, out Vector2i) + fullName: OpenTK.Platform.Native.Windows.WindowComponent.GetSize(OpenTK.Platform.WindowHandle, out OpenTK.Mathematics.Vector2i) type: Method source: id: GetSize path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\WindowComponent.cs - startLine: 1325 + startLine: 1352 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: Get the size of the window. example: [] syntax: - content: public void GetSize(WindowHandle handle, out int width, out int height) + content: public void GetSize(WindowHandle handle, out Vector2i size) parameters: - id: handle type: OpenTK.Platform.WindowHandle description: Handle to a window. - - id: width - type: System.Int32 - description: Width of the window in pixels. - - id: height - type: System.Int32 - description: Height of the window in pixels. - content.vb: Public Sub GetSize(handle As WindowHandle, width As Integer, height As Integer) + - id: size + type: OpenTK.Mathematics.Vector2i + description: Size of the window in screen coordinates. + content.vb: Public Sub GetSize(handle As WindowHandle, size As Vector2i) overload: OpenTK.Platform.Native.Windows.WindowComponent.GetSize* - exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: handle is null. implements: - - OpenTK.Platform.IWindowComponent.GetSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) - nameWithType.vb: WindowComponent.GetSize(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Platform.Native.Windows.WindowComponent.GetSize(OpenTK.Platform.WindowHandle, Integer, Integer) - name.vb: GetSize(WindowHandle, Integer, Integer) -- uid: OpenTK.Platform.Native.Windows.WindowComponent.SetSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) - commentId: M:OpenTK.Platform.Native.Windows.WindowComponent.SetSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) - id: SetSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) + - OpenTK.Platform.IWindowComponent.GetSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) + nameWithType.vb: WindowComponent.GetSize(WindowHandle, Vector2i) + fullName.vb: OpenTK.Platform.Native.Windows.WindowComponent.GetSize(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2i) + name.vb: GetSize(WindowHandle, Vector2i) +- uid: OpenTK.Platform.Native.Windows.WindowComponent.SetSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) + commentId: M:OpenTK.Platform.Native.Windows.WindowComponent.SetSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) + id: SetSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) parent: OpenTK.Platform.Native.Windows.WindowComponent langs: - csharp - vb - name: SetSize(WindowHandle, int, int) - nameWithType: WindowComponent.SetSize(WindowHandle, int, int) - fullName: OpenTK.Platform.Native.Windows.WindowComponent.SetSize(OpenTK.Platform.WindowHandle, int, int) + name: SetSize(WindowHandle, Vector2i) + nameWithType: WindowComponent.SetSize(WindowHandle, Vector2i) + fullName: OpenTK.Platform.Native.Windows.WindowComponent.SetSize(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2i) type: Method source: id: SetSize path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\WindowComponent.cs - startLine: 1333 + startLine: 1360 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: Set the size of the window. example: [] syntax: - content: public void SetSize(WindowHandle handle, int width, int height) + content: public void SetSize(WindowHandle handle, Vector2i newSize) parameters: - id: handle type: OpenTK.Platform.WindowHandle description: Handle to a window. - - id: width - type: System.Int32 - description: New width of the window in pixels. - - id: height - type: System.Int32 - description: New height of the window in pixels. - content.vb: Public Sub SetSize(handle As WindowHandle, width As Integer, height As Integer) + - id: newSize + type: OpenTK.Mathematics.Vector2i + description: New size of the window in screen coordinates. + content.vb: Public Sub SetSize(handle As WindowHandle, newSize As Vector2i) overload: OpenTK.Platform.Native.Windows.WindowComponent.SetSize* - exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: handle is null. implements: - - OpenTK.Platform.IWindowComponent.SetSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) - nameWithType.vb: WindowComponent.SetSize(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Platform.Native.Windows.WindowComponent.SetSize(OpenTK.Platform.WindowHandle, Integer, Integer) - name.vb: SetSize(WindowHandle, Integer, Integer) + - OpenTK.Platform.IWindowComponent.SetSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) - uid: OpenTK.Platform.Native.Windows.WindowComponent.GetBounds(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) commentId: M:OpenTK.Platform.Native.Windows.WindowComponent.GetBounds(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) id: GetBounds(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) @@ -985,7 +1009,7 @@ items: source: id: GetBounds path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\WindowComponent.cs - startLine: 1346 + startLine: 1373 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows @@ -1005,10 +1029,10 @@ items: description: Y coordinate of the window. - id: width type: System.Int32 - description: Width of the window in pixels. + description: Width of the window in screen coordinates. - id: height type: System.Int32 - description: Height of the window in pixels. + description: Height of the window in screen coordinates. content.vb: Public Sub GetBounds(handle As WindowHandle, x As Integer, y As Integer, width As Integer, height As Integer) overload: OpenTK.Platform.Native.Windows.WindowComponent.GetBounds* implements: @@ -1030,7 +1054,7 @@ items: source: id: SetBounds path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\WindowComponent.cs - startLine: 1363 + startLine: 1390 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows @@ -1050,10 +1074,10 @@ items: description: New Y coordinate of the window. - id: width type: System.Int32 - description: New width of the window in pixels. + description: New width of the window in screen coordinates. - id: height type: System.Int32 - description: New height of the window in pixels. + description: New height of the window in screen coordinates. content.vb: Public Sub SetBounds(handle As WindowHandle, x As Integer, y As Integer, width As Integer, height As Integer) overload: OpenTK.Platform.Native.Windows.WindowComponent.SetBounds* implements: @@ -1061,178 +1085,144 @@ items: nameWithType.vb: WindowComponent.SetBounds(WindowHandle, Integer, Integer, Integer, Integer) fullName.vb: OpenTK.Platform.Native.Windows.WindowComponent.SetBounds(OpenTK.Platform.WindowHandle, Integer, Integer, Integer, Integer) name.vb: SetBounds(WindowHandle, Integer, Integer, Integer, Integer) -- uid: OpenTK.Platform.Native.Windows.WindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) - commentId: M:OpenTK.Platform.Native.Windows.WindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) - id: GetClientPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) +- uid: OpenTK.Platform.Native.Windows.WindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) + commentId: M:OpenTK.Platform.Native.Windows.WindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) + id: GetClientPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) parent: OpenTK.Platform.Native.Windows.WindowComponent langs: - csharp - vb - name: GetClientPosition(WindowHandle, out int, out int) - nameWithType: WindowComponent.GetClientPosition(WindowHandle, out int, out int) - fullName: OpenTK.Platform.Native.Windows.WindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle, out int, out int) + name: GetClientPosition(WindowHandle, out Vector2i) + nameWithType: WindowComponent.GetClientPosition(WindowHandle, out Vector2i) + fullName: OpenTK.Platform.Native.Windows.WindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle, out OpenTK.Mathematics.Vector2i) type: Method source: id: GetClientPosition path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\WindowComponent.cs - startLine: 1376 + startLine: 1403 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: Get the position of the client area (drawing area) of a window. example: [] syntax: - content: public void GetClientPosition(WindowHandle handle, out int x, out int y) + content: public void GetClientPosition(WindowHandle handle, out Vector2i clientPosition) parameters: - id: handle type: OpenTK.Platform.WindowHandle description: Handle to a window. - - id: x - type: System.Int32 - description: X coordinate of the client area. - - id: y - type: System.Int32 - description: Y coordinate of the client area. - content.vb: Public Sub GetClientPosition(handle As WindowHandle, x As Integer, y As Integer) + - id: clientPosition + type: OpenTK.Mathematics.Vector2i + description: The coordinate of the client area in screen coordinates. + content.vb: Public Sub GetClientPosition(handle As WindowHandle, clientPosition As Vector2i) overload: OpenTK.Platform.Native.Windows.WindowComponent.GetClientPosition* - exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: handle is null. implements: - - OpenTK.Platform.IWindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) - nameWithType.vb: WindowComponent.GetClientPosition(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Platform.Native.Windows.WindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle, Integer, Integer) - name.vb: GetClientPosition(WindowHandle, Integer, Integer) -- uid: OpenTK.Platform.Native.Windows.WindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) - commentId: M:OpenTK.Platform.Native.Windows.WindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) - id: SetClientPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) + - OpenTK.Platform.IWindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) + nameWithType.vb: WindowComponent.GetClientPosition(WindowHandle, Vector2i) + fullName.vb: OpenTK.Platform.Native.Windows.WindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2i) + name.vb: GetClientPosition(WindowHandle, Vector2i) +- uid: OpenTK.Platform.Native.Windows.WindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) + commentId: M:OpenTK.Platform.Native.Windows.WindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) + id: SetClientPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) parent: OpenTK.Platform.Native.Windows.WindowComponent langs: - csharp - vb - name: SetClientPosition(WindowHandle, int, int) - nameWithType: WindowComponent.SetClientPosition(WindowHandle, int, int) - fullName: OpenTK.Platform.Native.Windows.WindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle, int, int) + name: SetClientPosition(WindowHandle, Vector2i) + nameWithType: WindowComponent.SetClientPosition(WindowHandle, Vector2i) + fullName: OpenTK.Platform.Native.Windows.WindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2i) type: Method source: id: SetClientPosition path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\WindowComponent.cs - startLine: 1393 + startLine: 1420 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: Set the position of the client area (drawing area) of a window. example: [] syntax: - content: public void SetClientPosition(WindowHandle handle, int x, int y) + content: public void SetClientPosition(WindowHandle handle, Vector2i newClientPosition) parameters: - id: handle type: OpenTK.Platform.WindowHandle description: Handle to a window. - - id: x - type: System.Int32 - description: New X coordinate of the client area. - - id: y - type: System.Int32 - description: New Y coordinate of the client area. - content.vb: Public Sub SetClientPosition(handle As WindowHandle, x As Integer, y As Integer) + - id: newClientPosition + type: OpenTK.Mathematics.Vector2i + description: New coordinate of the client area in screen coordinates. + content.vb: Public Sub SetClientPosition(handle As WindowHandle, newClientPosition As Vector2i) overload: OpenTK.Platform.Native.Windows.WindowComponent.SetClientPosition* - exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: handle is null. implements: - - OpenTK.Platform.IWindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) - nameWithType.vb: WindowComponent.SetClientPosition(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Platform.Native.Windows.WindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle, Integer, Integer) - name.vb: SetClientPosition(WindowHandle, Integer, Integer) -- uid: OpenTK.Platform.Native.Windows.WindowComponent.GetClientSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) - commentId: M:OpenTK.Platform.Native.Windows.WindowComponent.GetClientSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) - id: GetClientSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + - OpenTK.Platform.IWindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) +- uid: OpenTK.Platform.Native.Windows.WindowComponent.GetClientSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) + commentId: M:OpenTK.Platform.Native.Windows.WindowComponent.GetClientSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) + id: GetClientSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) parent: OpenTK.Platform.Native.Windows.WindowComponent langs: - csharp - vb - name: GetClientSize(WindowHandle, out int, out int) - nameWithType: WindowComponent.GetClientSize(WindowHandle, out int, out int) - fullName: OpenTK.Platform.Native.Windows.WindowComponent.GetClientSize(OpenTK.Platform.WindowHandle, out int, out int) + name: GetClientSize(WindowHandle, out Vector2i) + nameWithType: WindowComponent.GetClientSize(WindowHandle, out Vector2i) + fullName: OpenTK.Platform.Native.Windows.WindowComponent.GetClientSize(OpenTK.Platform.WindowHandle, out OpenTK.Mathematics.Vector2i) type: Method source: id: GetClientSize path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\WindowComponent.cs - startLine: 1419 + startLine: 1446 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: Get the size of the client area (drawing area) of a window. example: [] syntax: - content: public void GetClientSize(WindowHandle handle, out int width, out int height) + content: public void GetClientSize(WindowHandle handle, out Vector2i clientSize) parameters: - id: handle type: OpenTK.Platform.WindowHandle description: Handle to a window. - - id: width - type: System.Int32 - description: Width of the client area in pixels. - - id: height - type: System.Int32 - description: Height of the client area in pixels. - content.vb: Public Sub GetClientSize(handle As WindowHandle, width As Integer, height As Integer) + - id: clientSize + type: OpenTK.Mathematics.Vector2i + description: Size of the client area in screen coordinates. + content.vb: Public Sub GetClientSize(handle As WindowHandle, clientSize As Vector2i) overload: OpenTK.Platform.Native.Windows.WindowComponent.GetClientSize* - exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: handle is null. implements: - - OpenTK.Platform.IWindowComponent.GetClientSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) - nameWithType.vb: WindowComponent.GetClientSize(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Platform.Native.Windows.WindowComponent.GetClientSize(OpenTK.Platform.WindowHandle, Integer, Integer) - name.vb: GetClientSize(WindowHandle, Integer, Integer) -- uid: OpenTK.Platform.Native.Windows.WindowComponent.SetClientSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) - commentId: M:OpenTK.Platform.Native.Windows.WindowComponent.SetClientSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) - id: SetClientSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) + - OpenTK.Platform.IWindowComponent.GetClientSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) + nameWithType.vb: WindowComponent.GetClientSize(WindowHandle, Vector2i) + fullName.vb: OpenTK.Platform.Native.Windows.WindowComponent.GetClientSize(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2i) + name.vb: GetClientSize(WindowHandle, Vector2i) +- uid: OpenTK.Platform.Native.Windows.WindowComponent.SetClientSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) + commentId: M:OpenTK.Platform.Native.Windows.WindowComponent.SetClientSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) + id: SetClientSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) parent: OpenTK.Platform.Native.Windows.WindowComponent langs: - csharp - vb - name: SetClientSize(WindowHandle, int, int) - nameWithType: WindowComponent.SetClientSize(WindowHandle, int, int) - fullName: OpenTK.Platform.Native.Windows.WindowComponent.SetClientSize(OpenTK.Platform.WindowHandle, int, int) + name: SetClientSize(WindowHandle, Vector2i) + nameWithType: WindowComponent.SetClientSize(WindowHandle, Vector2i) + fullName: OpenTK.Platform.Native.Windows.WindowComponent.SetClientSize(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2i) type: Method source: id: SetClientSize path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\WindowComponent.cs - startLine: 1427 + startLine: 1454 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: Set the size of the client area (drawing area) of a window. example: [] syntax: - content: public void SetClientSize(WindowHandle handle, int width, int height) + content: public void SetClientSize(WindowHandle handle, Vector2i newClientSize) parameters: - id: handle type: OpenTK.Platform.WindowHandle description: Handle to a window. - - id: width - type: System.Int32 - description: New width of the client area in pixels. - - id: height - type: System.Int32 - description: New height of the client area in pixels. - content.vb: Public Sub SetClientSize(handle As WindowHandle, width As Integer, height As Integer) + - id: newClientSize + type: OpenTK.Mathematics.Vector2i + description: New size of the client area in screen coordinates. + content.vb: Public Sub SetClientSize(handle As WindowHandle, newClientSize As Vector2i) overload: OpenTK.Platform.Native.Windows.WindowComponent.SetClientSize* - exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: handle is null. implements: - - OpenTK.Platform.IWindowComponent.SetClientSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) - nameWithType.vb: WindowComponent.SetClientSize(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Platform.Native.Windows.WindowComponent.SetClientSize(OpenTK.Platform.WindowHandle, Integer, Integer) - name.vb: SetClientSize(WindowHandle, Integer, Integer) + - OpenTK.Platform.IWindowComponent.SetClientSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) - uid: OpenTK.Platform.Native.Windows.WindowComponent.GetClientBounds(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) commentId: M:OpenTK.Platform.Native.Windows.WindowComponent.GetClientBounds(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) id: GetClientBounds(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) @@ -1247,7 +1237,7 @@ items: source: id: GetClientBounds path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\WindowComponent.cs - startLine: 1454 + startLine: 1481 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows @@ -1292,7 +1282,7 @@ items: source: id: SetClientBounds path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\WindowComponent.cs - startLine: 1471 + startLine: 1498 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows @@ -1323,21 +1313,21 @@ items: nameWithType.vb: WindowComponent.SetClientBounds(WindowHandle, Integer, Integer, Integer, Integer) fullName.vb: OpenTK.Platform.Native.Windows.WindowComponent.SetClientBounds(OpenTK.Platform.WindowHandle, Integer, Integer, Integer, Integer) name.vb: SetClientBounds(WindowHandle, Integer, Integer, Integer, Integer) -- uid: OpenTK.Platform.Native.Windows.WindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) - commentId: M:OpenTK.Platform.Native.Windows.WindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) - id: GetFramebufferSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) +- uid: OpenTK.Platform.Native.Windows.WindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) + commentId: M:OpenTK.Platform.Native.Windows.WindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) + id: GetFramebufferSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) parent: OpenTK.Platform.Native.Windows.WindowComponent langs: - csharp - vb - name: GetFramebufferSize(WindowHandle, out int, out int) - nameWithType: WindowComponent.GetFramebufferSize(WindowHandle, out int, out int) - fullName: OpenTK.Platform.Native.Windows.WindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle, out int, out int) + name: GetFramebufferSize(WindowHandle, out Vector2i) + nameWithType: WindowComponent.GetFramebufferSize(WindowHandle, out Vector2i) + fullName: OpenTK.Platform.Native.Windows.WindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle, out OpenTK.Mathematics.Vector2i) type: Method source: id: GetFramebufferSize path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\WindowComponent.cs - startLine: 1498 + startLine: 1525 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows @@ -1347,24 +1337,21 @@ items: Use this value when calls to graphics APIs that want pixels, e.g. GL.Viewport(). example: [] syntax: - content: public void GetFramebufferSize(WindowHandle handle, out int width, out int height) + content: public void GetFramebufferSize(WindowHandle handle, out Vector2i framebufferSize) parameters: - id: handle type: OpenTK.Platform.WindowHandle description: Handle to a window. - - id: width - type: System.Int32 - description: Width in pixels of the window framebuffer. - - id: height - type: System.Int32 - description: Height in pixels of the window framebuffer. - content.vb: Public Sub GetFramebufferSize(handle As WindowHandle, width As Integer, height As Integer) + - id: framebufferSize + type: OpenTK.Mathematics.Vector2i + description: Size in pixels of the window framebuffer. + content.vb: Public Sub GetFramebufferSize(handle As WindowHandle, framebufferSize As Vector2i) overload: OpenTK.Platform.Native.Windows.WindowComponent.GetFramebufferSize* implements: - - OpenTK.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) - nameWithType.vb: WindowComponent.GetFramebufferSize(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Platform.Native.Windows.WindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle, Integer, Integer) - name.vb: GetFramebufferSize(WindowHandle, Integer, Integer) + - OpenTK.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) + nameWithType.vb: WindowComponent.GetFramebufferSize(WindowHandle, Vector2i) + fullName.vb: OpenTK.Platform.Native.Windows.WindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2i) + name.vb: GetFramebufferSize(WindowHandle, Vector2i) - uid: OpenTK.Platform.Native.Windows.WindowComponent.GetMaxClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) commentId: M:OpenTK.Platform.Native.Windows.WindowComponent.GetMaxClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) id: GetMaxClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) @@ -1379,7 +1366,7 @@ items: source: id: GetMaxClientSize path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\WindowComponent.cs - startLine: 1507 + startLine: 1534 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows @@ -1418,7 +1405,7 @@ items: source: id: SetMaxClientSize path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\WindowComponent.cs - startLine: 1516 + startLine: 1543 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows @@ -1457,7 +1444,7 @@ items: source: id: GetMinClientSize path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\WindowComponent.cs - startLine: 1531 + startLine: 1558 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows @@ -1496,7 +1483,7 @@ items: source: id: SetMinClientSize path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\WindowComponent.cs - startLine: 1540 + startLine: 1567 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows @@ -1535,7 +1522,7 @@ items: source: id: GetDisplay path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\WindowComponent.cs - startLine: 1555 + startLine: 1582 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows @@ -1553,9 +1540,6 @@ items: content.vb: Public Function GetDisplay(handle As WindowHandle) As DisplayHandle overload: OpenTK.Platform.Native.Windows.WindowComponent.GetDisplay* exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: handle is null. - type: OpenTK.Platform.PalNotImplementedException commentId: T:OpenTK.Platform.PalNotImplementedException description: Backend does not support finding the window display. . @@ -1578,7 +1562,7 @@ items: source: id: GetMode path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\WindowComponent.cs - startLine: 1573 + startLine: 1600 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows @@ -1595,10 +1579,6 @@ items: description: The mode of the window. content.vb: Public Function GetMode(handle As WindowHandle) As WindowMode overload: OpenTK.Platform.Native.Windows.WindowComponent.GetMode* - exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: handle is null. implements: - OpenTK.Platform.IWindowComponent.GetMode(OpenTK.Platform.WindowHandle) - uid: OpenTK.Platform.Native.Windows.WindowComponent.SetMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowMode) @@ -1615,7 +1595,7 @@ items: source: id: SetMode path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\WindowComponent.cs - startLine: 1624 + startLine: 1651 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows @@ -1641,15 +1621,17 @@ items: content.vb: Public Sub SetMode(handle As WindowHandle, mode As WindowMode) overload: OpenTK.Platform.Native.Windows.WindowComponent.SetMode* exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: handle is null. - - type: System.ArgumentOutOfRangeException - commentId: T:System.ArgumentOutOfRangeException + - type: System.ComponentModel.InvalidEnumArgumentException + commentId: T:System.ComponentModel.InvalidEnumArgumentException description: mode is an invalid value. - - type: OpenTK.Platform.PalNotImplementedException - commentId: T:OpenTK.Platform.PalNotImplementedException - description: Driver does not support the value set by mode. See . + - type: System.PlatformNotSupportedException + commentId: T:System.PlatformNotSupportedException + description: Backend does not support the value set by mode. See . + seealso: + - linkId: OpenTK.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle) + commentId: M:OpenTK.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle) + - linkId: OpenTK.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle,OpenTK.Platform.VideoMode) + commentId: M:OpenTK.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle,OpenTK.Platform.VideoMode) implements: - OpenTK.Platform.IWindowComponent.SetMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowMode) - uid: OpenTK.Platform.Native.Windows.WindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle) @@ -1666,7 +1648,7 @@ items: source: id: SetFullscreenDisplay path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\WindowComponent.cs - startLine: 1677 + startLine: 1704 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows @@ -1686,6 +1668,9 @@ items: description: The display to make the window fullscreen on. content.vb: Public Sub SetFullscreenDisplay(window As WindowHandle, display As DisplayHandle) overload: OpenTK.Platform.Native.Windows.WindowComponent.SetFullscreenDisplay* + seealso: + - linkId: OpenTK.Platform.IWindowComponent.SetMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowMode) + commentId: M:OpenTK.Platform.IWindowComponent.SetMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowMode) implements: - OpenTK.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle) nameWithType.vb: WindowComponent.SetFullscreenDisplay(WindowHandle, DisplayHandle) @@ -1705,7 +1690,7 @@ items: source: id: SetFullscreenDisplay path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\WindowComponent.cs - startLine: 1727 + startLine: 1754 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows @@ -1715,7 +1700,7 @@ items: Only video modes accuired using are expected to work. - remarks: To make an 'windowed fullscreen' window see . + remarks: To make a 'windowed fullscreen' window see . example: [] syntax: content: public void SetFullscreenDisplay(WindowHandle window, DisplayHandle display, VideoMode videoMode) @@ -1730,6 +1715,11 @@ items: description: The video mode to use when making the window fullscreen. content.vb: Public Sub SetFullscreenDisplay(window As WindowHandle, display As DisplayHandle, videoMode As VideoMode) overload: OpenTK.Platform.Native.Windows.WindowComponent.SetFullscreenDisplay* + seealso: + - linkId: OpenTK.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle) + commentId: M:OpenTK.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle) + - linkId: OpenTK.Platform.IWindowComponent.SetMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowMode) + commentId: M:OpenTK.Platform.IWindowComponent.SetMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowMode) implements: - OpenTK.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle,OpenTK.Platform.VideoMode) - uid: OpenTK.Platform.Native.Windows.WindowComponent.GetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle@) @@ -1746,7 +1736,7 @@ items: source: id: GetFullscreenDisplay path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\WindowComponent.cs - startLine: 1784 + startLine: 1811 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows @@ -1762,9 +1752,16 @@ items: description: The display where the window is fullscreen or null if the window is not fullscreen. return: type: System.Boolean - description: true if the window was fullscreen, false otherwise. + description: true if the window was fullscreen, false otherwise. content.vb: Public Function GetFullscreenDisplay(window As WindowHandle, display As DisplayHandle) As Boolean overload: OpenTK.Platform.Native.Windows.WindowComponent.GetFullscreenDisplay* + seealso: + - linkId: OpenTK.Platform.IWindowComponent.SetMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowMode) + commentId: M:OpenTK.Platform.IWindowComponent.SetMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowMode) + - linkId: OpenTK.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle) + commentId: M:OpenTK.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle) + - linkId: OpenTK.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle,OpenTK.Platform.VideoMode) + commentId: M:OpenTK.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle,OpenTK.Platform.VideoMode) implements: - OpenTK.Platform.IWindowComponent.GetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle@) nameWithType.vb: WindowComponent.GetFullscreenDisplay(WindowHandle, DisplayHandle) @@ -1784,7 +1781,7 @@ items: source: id: GetBorderStyle path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\WindowComponent.cs - startLine: 1792 + startLine: 1819 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows @@ -1801,10 +1798,9 @@ items: description: The border style of the window. content.vb: Public Function GetBorderStyle(handle As WindowHandle) As WindowBorderStyle overload: OpenTK.Platform.Native.Windows.WindowComponent.GetBorderStyle* - exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: handle is null. + seealso: + - linkId: OpenTK.Platform.IWindowComponent.SetBorderStyle(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowBorderStyle) + commentId: M:OpenTK.Platform.IWindowComponent.SetBorderStyle(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowBorderStyle) implements: - OpenTK.Platform.IWindowComponent.GetBorderStyle(OpenTK.Platform.WindowHandle) - uid: OpenTK.Platform.Native.Windows.WindowComponent.SetBorderStyle(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowBorderStyle) @@ -1821,7 +1817,7 @@ items: source: id: SetBorderStyle path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\WindowComponent.cs - startLine: 1848 + startLine: 1875 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows @@ -1839,17 +1835,151 @@ items: content.vb: Public Sub SetBorderStyle(handle As WindowHandle, style As WindowBorderStyle) overload: OpenTK.Platform.Native.Windows.WindowComponent.SetBorderStyle* exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: handle is null. - - type: System.ArgumentOutOfRangeException - commentId: T:System.ArgumentOutOfRangeException + - type: System.ComponentModel.InvalidEnumArgumentException + commentId: T:System.ComponentModel.InvalidEnumArgumentException description: style is an invalid value. - - type: OpenTK.Platform.PalNotImplementedException - commentId: T:OpenTK.Platform.PalNotImplementedException - description: Driver does not support the value set by style. See . + - type: System.PlatformNotSupportedException + commentId: T:System.PlatformNotSupportedException + description: Backend does not support the value set by style. See . implements: - OpenTK.Platform.IWindowComponent.SetBorderStyle(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowBorderStyle) +- uid: OpenTK.Platform.Native.Windows.WindowComponent.SupportsFramebufferTransparency(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.Native.Windows.WindowComponent.SupportsFramebufferTransparency(OpenTK.Platform.WindowHandle) + id: SupportsFramebufferTransparency(OpenTK.Platform.WindowHandle) + parent: OpenTK.Platform.Native.Windows.WindowComponent + langs: + - csharp + - vb + name: SupportsFramebufferTransparency(WindowHandle) + nameWithType: WindowComponent.SupportsFramebufferTransparency(WindowHandle) + fullName: OpenTK.Platform.Native.Windows.WindowComponent.SupportsFramebufferTransparency(OpenTK.Platform.WindowHandle) + type: Method + source: + id: SupportsFramebufferTransparency + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\WindowComponent.cs + startLine: 1927 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform.Native.Windows + summary: >- + Returns true if is supported for this window. + +
Win32Always returns true.
macOSAlways returns true.
Linux/X11Returns true if the selected had true.
+ example: [] + syntax: + content: public bool SupportsFramebufferTransparency(WindowHandle handle) + parameters: + - id: handle + type: OpenTK.Platform.WindowHandle + description: The window to query framebuffer transparency support for. + return: + type: System.Boolean + description: If with would work. + content.vb: Public Function SupportsFramebufferTransparency(handle As WindowHandle) As Boolean + overload: OpenTK.Platform.Native.Windows.WindowComponent.SupportsFramebufferTransparency* + seealso: + - linkId: OpenTK.Platform.IWindowComponent.SetTransparencyMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowTransparencyMode,System.Single) + commentId: M:OpenTK.Platform.IWindowComponent.SetTransparencyMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowTransparencyMode,System.Single) + - linkId: OpenTK.Platform.OpenGLGraphicsApiHints.SupportTransparentFramebufferX11 + commentId: P:OpenTK.Platform.OpenGLGraphicsApiHints.SupportTransparentFramebufferX11 + - linkId: OpenTK.Platform.ContextValues.SupportsFramebufferTransparency + commentId: F:OpenTK.Platform.ContextValues.SupportsFramebufferTransparency + - linkId: OpenTK.Platform.WindowTransparencyMode + commentId: T:OpenTK.Platform.WindowTransparencyMode + implements: + - OpenTK.Platform.IWindowComponent.SupportsFramebufferTransparency(OpenTK.Platform.WindowHandle) +- uid: OpenTK.Platform.Native.Windows.WindowComponent.SetTransparencyMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowTransparencyMode,System.Single) + commentId: M:OpenTK.Platform.Native.Windows.WindowComponent.SetTransparencyMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowTransparencyMode,System.Single) + id: SetTransparencyMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowTransparencyMode,System.Single) + parent: OpenTK.Platform.Native.Windows.WindowComponent + langs: + - csharp + - vb + name: SetTransparencyMode(WindowHandle, WindowTransparencyMode, float) + nameWithType: WindowComponent.SetTransparencyMode(WindowHandle, WindowTransparencyMode, float) + fullName: OpenTK.Platform.Native.Windows.WindowComponent.SetTransparencyMode(OpenTK.Platform.WindowHandle, OpenTK.Platform.WindowTransparencyMode, float) + type: Method + source: + id: SetTransparencyMode + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\WindowComponent.cs + startLine: 1934 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform.Native.Windows + summary: Sets the transparency mode of the specified window. + example: [] + syntax: + content: public void SetTransparencyMode(WindowHandle handle, WindowTransparencyMode transparencyMode, float opacity = 0.5) + parameters: + - id: handle + type: OpenTK.Platform.WindowHandle + description: The window to set the transparency mode of. + - id: transparencyMode + type: OpenTK.Platform.WindowTransparencyMode + description: The transparency mode to apply to the window. + - id: opacity + type: System.Single + description: The whole window opacity. Ignored if transparencyMode is not . + content.vb: Public Sub SetTransparencyMode(handle As WindowHandle, transparencyMode As WindowTransparencyMode, opacity As Single = 0.5) + overload: OpenTK.Platform.Native.Windows.WindowComponent.SetTransparencyMode* + seealso: + - linkId: OpenTK.Platform.WindowTransparencyMode + commentId: T:OpenTK.Platform.WindowTransparencyMode + - linkId: OpenTK.Platform.IWindowComponent.SupportsFramebufferTransparency(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.SupportsFramebufferTransparency(OpenTK.Platform.WindowHandle) + - linkId: OpenTK.Platform.IWindowComponent.GetTransparencyMode(OpenTK.Platform.WindowHandle,System.Single@) + commentId: M:OpenTK.Platform.IWindowComponent.GetTransparencyMode(OpenTK.Platform.WindowHandle,System.Single@) + implements: + - OpenTK.Platform.IWindowComponent.SetTransparencyMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowTransparencyMode,System.Single) + nameWithType.vb: WindowComponent.SetTransparencyMode(WindowHandle, WindowTransparencyMode, Single) + fullName.vb: OpenTK.Platform.Native.Windows.WindowComponent.SetTransparencyMode(OpenTK.Platform.WindowHandle, OpenTK.Platform.WindowTransparencyMode, Single) + name.vb: SetTransparencyMode(WindowHandle, WindowTransparencyMode, Single) +- uid: OpenTK.Platform.Native.Windows.WindowComponent.GetTransparencyMode(OpenTK.Platform.WindowHandle,System.Single@) + commentId: M:OpenTK.Platform.Native.Windows.WindowComponent.GetTransparencyMode(OpenTK.Platform.WindowHandle,System.Single@) + id: GetTransparencyMode(OpenTK.Platform.WindowHandle,System.Single@) + parent: OpenTK.Platform.Native.Windows.WindowComponent + langs: + - csharp + - vb + name: GetTransparencyMode(WindowHandle, out float) + nameWithType: WindowComponent.GetTransparencyMode(WindowHandle, out float) + fullName: OpenTK.Platform.Native.Windows.WindowComponent.GetTransparencyMode(OpenTK.Platform.WindowHandle, out float) + type: Method + source: + id: GetTransparencyMode + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\WindowComponent.cs + startLine: 2010 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform.Native.Windows + summary: Gets the transparency mode of the specified window. + example: [] + syntax: + content: public WindowTransparencyMode GetTransparencyMode(WindowHandle handle, out float opacity) + parameters: + - id: handle + type: OpenTK.Platform.WindowHandle + description: The window to query the transparency mode of. + - id: opacity + type: System.Single + description: The window opacity if the transparency mode was , 0 otherwise. + return: + type: OpenTK.Platform.WindowTransparencyMode + description: The transparency mode of the specified window. + content.vb: Public Function GetTransparencyMode(handle As WindowHandle, opacity As Single) As WindowTransparencyMode + overload: OpenTK.Platform.Native.Windows.WindowComponent.GetTransparencyMode* + seealso: + - linkId: OpenTK.Platform.WindowTransparencyMode + commentId: T:OpenTK.Platform.WindowTransparencyMode + - linkId: OpenTK.Platform.IWindowComponent.SetTransparencyMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowTransparencyMode,System.Single) + commentId: M:OpenTK.Platform.IWindowComponent.SetTransparencyMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowTransparencyMode,System.Single) + - linkId: OpenTK.Platform.IWindowComponent.SupportsFramebufferTransparency(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.SupportsFramebufferTransparency(OpenTK.Platform.WindowHandle) + implements: + - OpenTK.Platform.IWindowComponent.GetTransparencyMode(OpenTK.Platform.WindowHandle,System.Single@) + nameWithType.vb: WindowComponent.GetTransparencyMode(WindowHandle, Single) + fullName.vb: OpenTK.Platform.Native.Windows.WindowComponent.GetTransparencyMode(OpenTK.Platform.WindowHandle, Single) + name.vb: GetTransparencyMode(WindowHandle, Single) - uid: OpenTK.Platform.Native.Windows.WindowComponent.SetAlwaysOnTop(OpenTK.Platform.WindowHandle,System.Boolean) commentId: M:OpenTK.Platform.Native.Windows.WindowComponent.SetAlwaysOnTop(OpenTK.Platform.WindowHandle,System.Boolean) id: SetAlwaysOnTop(OpenTK.Platform.WindowHandle,System.Boolean) @@ -1864,7 +1994,7 @@ items: source: id: SetAlwaysOnTop path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\WindowComponent.cs - startLine: 1900 + startLine: 2037 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows @@ -1881,6 +2011,9 @@ items: description: Whether the window should be always on top or not. content.vb: Public Sub SetAlwaysOnTop(handle As WindowHandle, floating As Boolean) overload: OpenTK.Platform.Native.Windows.WindowComponent.SetAlwaysOnTop* + seealso: + - linkId: OpenTK.Platform.IWindowComponent.IsAlwaysOnTop(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.IsAlwaysOnTop(OpenTK.Platform.WindowHandle) implements: - OpenTK.Platform.IWindowComponent.SetAlwaysOnTop(OpenTK.Platform.WindowHandle,System.Boolean) nameWithType.vb: WindowComponent.SetAlwaysOnTop(WindowHandle, Boolean) @@ -1900,7 +2033,7 @@ items: source: id: IsAlwaysOnTop path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\WindowComponent.cs - startLine: 1917 + startLine: 2054 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows @@ -1917,6 +2050,9 @@ items: description: Whether the window is always on top or not. content.vb: Public Function IsAlwaysOnTop(handle As WindowHandle) As Boolean overload: OpenTK.Platform.Native.Windows.WindowComponent.IsAlwaysOnTop* + seealso: + - linkId: OpenTK.Platform.IWindowComponent.SetAlwaysOnTop(OpenTK.Platform.WindowHandle,System.Boolean) + commentId: M:OpenTK.Platform.IWindowComponent.SetAlwaysOnTop(OpenTK.Platform.WindowHandle,System.Boolean) implements: - OpenTK.Platform.IWindowComponent.IsAlwaysOnTop(OpenTK.Platform.WindowHandle) - uid: OpenTK.Platform.Native.Windows.WindowComponent.SetHitTestCallback(OpenTK.Platform.WindowHandle,OpenTK.Platform.HitTest) @@ -1933,7 +2069,7 @@ items: source: id: SetHitTestCallback path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\WindowComponent.cs - startLine: 1931 + startLine: 2068 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows @@ -1960,6 +2096,11 @@ items: description: The hit test delegate. content.vb: Public Sub SetHitTestCallback(handle As WindowHandle, test As HitTest) overload: OpenTK.Platform.Native.Windows.WindowComponent.SetHitTestCallback* + seealso: + - linkId: OpenTK.Platform.HitTest + commentId: T:OpenTK.Platform.HitTest + - linkId: OpenTK.Platform.HitType + commentId: T:OpenTK.Platform.HitType implements: - OpenTK.Platform.IWindowComponent.SetHitTestCallback(OpenTK.Platform.WindowHandle,OpenTK.Platform.HitTest) nameWithType.vb: WindowComponent.SetHitTestCallback(WindowHandle, HitTest) @@ -1979,7 +2120,7 @@ items: source: id: SetCursor path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\WindowComponent.cs - startLine: 1939 + startLine: 2076 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows @@ -1997,11 +2138,8 @@ items: content.vb: Public Sub SetCursor(handle As WindowHandle, cursor As CursorHandle) overload: OpenTK.Platform.Native.Windows.WindowComponent.SetCursor* exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: handle is null. - - type: OpenTK.Platform.PalNotImplementedException - commentId: T:OpenTK.Platform.PalNotImplementedException + - type: System.PlatformNotSupportedException + commentId: T:System.PlatformNotSupportedException description: Backend does not support setting the window mouse cursor. See . seealso: - linkId: OpenTK.Platform.IWindowComponent.CanSetCursor @@ -2025,7 +2163,7 @@ items: source: id: GetCursorCaptureMode path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\WindowComponent.cs - startLine: 1951 + startLine: 2088 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows @@ -2042,6 +2180,11 @@ items: description: The current cursor capture mode. content.vb: Public Function GetCursorCaptureMode(handle As WindowHandle) As CursorCaptureMode overload: OpenTK.Platform.Native.Windows.WindowComponent.GetCursorCaptureMode* + seealso: + - linkId: OpenTK.Platform.IWindowComponent.CanCaptureCursor + commentId: P:OpenTK.Platform.IWindowComponent.CanCaptureCursor + - linkId: OpenTK.Platform.IWindowComponent.SetCursorCaptureMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorCaptureMode) + commentId: M:OpenTK.Platform.IWindowComponent.SetCursorCaptureMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorCaptureMode) implements: - OpenTK.Platform.IWindowComponent.GetCursorCaptureMode(OpenTK.Platform.WindowHandle) - uid: OpenTK.Platform.Native.Windows.WindowComponent.SetCursorCaptureMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorCaptureMode) @@ -2058,7 +2201,7 @@ items: source: id: SetCursorCaptureMode path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\WindowComponent.cs - startLine: 1959 + startLine: 2096 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows @@ -2081,6 +2224,8 @@ items: seealso: - linkId: OpenTK.Platform.IWindowComponent.CanCaptureCursor commentId: P:OpenTK.Platform.IWindowComponent.CanCaptureCursor + - linkId: OpenTK.Platform.IWindowComponent.SetCursorCaptureMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorCaptureMode) + commentId: M:OpenTK.Platform.IWindowComponent.SetCursorCaptureMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorCaptureMode) implements: - OpenTK.Platform.IWindowComponent.SetCursorCaptureMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorCaptureMode) - uid: OpenTK.Platform.Native.Windows.WindowComponent.IsFocused(OpenTK.Platform.WindowHandle) @@ -2097,7 +2242,7 @@ items: source: id: IsFocused path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\WindowComponent.cs - startLine: 2024 + startLine: 2166 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows @@ -2114,6 +2259,11 @@ items: description: If the window has input focus. content.vb: Public Function IsFocused(handle As WindowHandle) As Boolean overload: OpenTK.Platform.Native.Windows.WindowComponent.IsFocused* + seealso: + - linkId: OpenTK.Platform.IWindowComponent.FocusWindow(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.FocusWindow(OpenTK.Platform.WindowHandle) + - linkId: OpenTK.Platform.IWindowComponent.RequestAttention(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.RequestAttention(OpenTK.Platform.WindowHandle) implements: - OpenTK.Platform.IWindowComponent.IsFocused(OpenTK.Platform.WindowHandle) - uid: OpenTK.Platform.Native.Windows.WindowComponent.FocusWindow(OpenTK.Platform.WindowHandle) @@ -2130,7 +2280,7 @@ items: source: id: FocusWindow path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\WindowComponent.cs - startLine: 2032 + startLine: 2174 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows @@ -2144,6 +2294,11 @@ items: description: Handle to the window to focus. content.vb: Public Sub FocusWindow(handle As WindowHandle) overload: OpenTK.Platform.Native.Windows.WindowComponent.FocusWindow* + seealso: + - linkId: OpenTK.Platform.IWindowComponent.IsFocused(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.IsFocused(OpenTK.Platform.WindowHandle) + - linkId: OpenTK.Platform.IWindowComponent.RequestAttention(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.RequestAttention(OpenTK.Platform.WindowHandle) implements: - OpenTK.Platform.IWindowComponent.FocusWindow(OpenTK.Platform.WindowHandle) - uid: OpenTK.Platform.Native.Windows.WindowComponent.RequestAttention(OpenTK.Platform.WindowHandle) @@ -2160,11 +2315,14 @@ items: source: id: RequestAttention path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\WindowComponent.cs - startLine: 2059 + startLine: 2201 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows - summary: Requests that the user pay attention to the window. + summary: >- + Requests that the user pay attention to the window. + + Usually by flashing the window icon. example: [] syntax: content: public void RequestAttention(WindowHandle handle) @@ -2174,98 +2332,203 @@ items: description: A handle to the window that requests attention. content.vb: Public Sub RequestAttention(handle As WindowHandle) overload: OpenTK.Platform.Native.Windows.WindowComponent.RequestAttention* + seealso: + - linkId: OpenTK.Platform.IWindowComponent.FocusWindow(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.FocusWindow(OpenTK.Platform.WindowHandle) implements: - OpenTK.Platform.IWindowComponent.RequestAttention(OpenTK.Platform.WindowHandle) -- uid: OpenTK.Platform.Native.Windows.WindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) - commentId: M:OpenTK.Platform.Native.Windows.WindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) - id: ScreenToClient(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) +- uid: OpenTK.Platform.Native.Windows.WindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + commentId: M:OpenTK.Platform.Native.Windows.WindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + id: ScreenToClient(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) parent: OpenTK.Platform.Native.Windows.WindowComponent langs: - csharp - vb - name: ScreenToClient(WindowHandle, int, int, out int, out int) - nameWithType: WindowComponent.ScreenToClient(WindowHandle, int, int, out int, out int) - fullName: OpenTK.Platform.Native.Windows.WindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle, int, int, out int, out int) + name: ScreenToClient(WindowHandle, Vector2, out Vector2) + nameWithType: WindowComponent.ScreenToClient(WindowHandle, Vector2, out Vector2) + fullName: OpenTK.Platform.Native.Windows.WindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2, out OpenTK.Mathematics.Vector2) type: Method source: id: ScreenToClient path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\WindowComponent.cs - startLine: 2076 + startLine: 2218 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: Converts screen coordinates to window relative coordinates. + remarks: >- + On platforms that support non-integer screen and client space coordinates (macOS) this function will return full precision results, + + on integer based platforms (win32 and X11) the input coordinates will (if necessary) be truncated to ints before conversion. example: [] syntax: - content: public void ScreenToClient(WindowHandle handle, int x, int y, out int clientX, out int clientY) + content: public void ScreenToClient(WindowHandle handle, Vector2 screen, out Vector2 client) parameters: - id: handle type: OpenTK.Platform.WindowHandle description: The window handle. - - id: x - type: System.Int32 - description: The screen x coordinate. - - id: y - type: System.Int32 - description: The screen y coordinate. - - id: clientX - type: System.Int32 - description: The client x coordinate. - - id: clientY - type: System.Int32 - description: The client y coordinate. - content.vb: Public Sub ScreenToClient(handle As WindowHandle, x As Integer, y As Integer, clientX As Integer, clientY As Integer) + - id: screen + type: OpenTK.Mathematics.Vector2 + description: The screen coordinate. + - id: client + type: OpenTK.Mathematics.Vector2 + description: The client coordinate. + content.vb: Public Sub ScreenToClient(handle As WindowHandle, screen As Vector2, client As Vector2) overload: OpenTK.Platform.Native.Windows.WindowComponent.ScreenToClient* + seealso: + - linkId: OpenTK.Platform.IWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + commentId: M:OpenTK.Platform.IWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + - linkId: OpenTK.Platform.IWindowComponent.ClientToFramebuffer(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + commentId: M:OpenTK.Platform.IWindowComponent.ClientToFramebuffer(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) implements: - - OpenTK.Platform.IWindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) - nameWithType.vb: WindowComponent.ScreenToClient(WindowHandle, Integer, Integer, Integer, Integer) - fullName.vb: OpenTK.Platform.Native.Windows.WindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle, Integer, Integer, Integer, Integer) - name.vb: ScreenToClient(WindowHandle, Integer, Integer, Integer, Integer) -- uid: OpenTK.Platform.Native.Windows.WindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) - commentId: M:OpenTK.Platform.Native.Windows.WindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) - id: ClientToScreen(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) + - OpenTK.Platform.IWindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + nameWithType.vb: WindowComponent.ScreenToClient(WindowHandle, Vector2, Vector2) + fullName.vb: OpenTK.Platform.Native.Windows.WindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2, OpenTK.Mathematics.Vector2) + name.vb: ScreenToClient(WindowHandle, Vector2, Vector2) +- uid: OpenTK.Platform.Native.Windows.WindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + commentId: M:OpenTK.Platform.Native.Windows.WindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + id: ClientToScreen(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) parent: OpenTK.Platform.Native.Windows.WindowComponent langs: - csharp - vb - name: ClientToScreen(WindowHandle, int, int, out int, out int) - nameWithType: WindowComponent.ClientToScreen(WindowHandle, int, int, out int, out int) - fullName: OpenTK.Platform.Native.Windows.WindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle, int, int, out int, out int) + name: ClientToScreen(WindowHandle, Vector2, out Vector2) + nameWithType: WindowComponent.ClientToScreen(WindowHandle, Vector2, out Vector2) + fullName: OpenTK.Platform.Native.Windows.WindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2, out OpenTK.Mathematics.Vector2) type: Method source: id: ClientToScreen path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\WindowComponent.cs - startLine: 2094 + startLine: 2237 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows summary: Converts window relative coordinates to screen coordinates. + remarks: >- + On platforms that support non-integer screen and client space coordinates (macOS) this function will return full precision results, + + on integer based platforms (win32 and X11) the input coordinates will (if necessary) be truncated to ints before conversion. example: [] syntax: - content: public void ClientToScreen(WindowHandle handle, int clientX, int clientY, out int x, out int y) + content: public void ClientToScreen(WindowHandle handle, Vector2 client, out Vector2 screen) parameters: - id: handle type: OpenTK.Platform.WindowHandle description: The window handle. - - id: clientX - type: System.Int32 - description: The client x coordinate. - - id: clientY - type: System.Int32 - description: The client y coordinate. - - id: x - type: System.Int32 - description: The screen x coordinate. - - id: y - type: System.Int32 - description: The screen y coordinate. - content.vb: Public Sub ClientToScreen(handle As WindowHandle, clientX As Integer, clientY As Integer, x As Integer, y As Integer) + - id: client + type: OpenTK.Mathematics.Vector2 + description: The client coordinate. + - id: screen + type: OpenTK.Mathematics.Vector2 + description: The screen coordinate. + content.vb: Public Sub ClientToScreen(handle As WindowHandle, client As Vector2, screen As Vector2) overload: OpenTK.Platform.Native.Windows.WindowComponent.ClientToScreen* + seealso: + - linkId: OpenTK.Platform.IWindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + commentId: M:OpenTK.Platform.IWindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + - linkId: OpenTK.Platform.IWindowComponent.ClientToFramebuffer(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + commentId: M:OpenTK.Platform.IWindowComponent.ClientToFramebuffer(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + implements: + - OpenTK.Platform.IWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + nameWithType.vb: WindowComponent.ClientToScreen(WindowHandle, Vector2, Vector2) + fullName.vb: OpenTK.Platform.Native.Windows.WindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2, OpenTK.Mathematics.Vector2) + name.vb: ClientToScreen(WindowHandle, Vector2, Vector2) +- uid: OpenTK.Platform.Native.Windows.WindowComponent.ClientToFramebuffer(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + commentId: M:OpenTK.Platform.Native.Windows.WindowComponent.ClientToFramebuffer(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + id: ClientToFramebuffer(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + parent: OpenTK.Platform.Native.Windows.WindowComponent + langs: + - csharp + - vb + name: ClientToFramebuffer(WindowHandle, Vector2, out Vector2) + nameWithType: WindowComponent.ClientToFramebuffer(WindowHandle, Vector2, out Vector2) + fullName: OpenTK.Platform.Native.Windows.WindowComponent.ClientToFramebuffer(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2, out OpenTK.Mathematics.Vector2) + type: Method + source: + id: ClientToFramebuffer + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\WindowComponent.cs + startLine: 2256 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform.Native.Windows + summary: Converts window relative coordinates to framebuffer coordinates. + remarks: >- + On platforms that support non-integer screen and client space coordinates (macOS) this function will return full precision results, + + on integer based platforms (win32 and X11) the input coordinates will (if necessary) be truncated to ints before conversion. + example: [] + syntax: + content: public void ClientToFramebuffer(WindowHandle handle, Vector2 client, out Vector2 framebuffer) + parameters: + - id: handle + type: OpenTK.Platform.WindowHandle + description: Handle of the window whose coordinate system to use. + - id: client + type: OpenTK.Mathematics.Vector2 + description: The client coordinate. + - id: framebuffer + type: OpenTK.Mathematics.Vector2 + description: The framebuffer coordinate. + content.vb: Public Sub ClientToFramebuffer(handle As WindowHandle, client As Vector2, framebuffer As Vector2) + overload: OpenTK.Platform.Native.Windows.WindowComponent.ClientToFramebuffer* + seealso: + - linkId: OpenTK.Platform.IWindowComponent.FramebufferToClient(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + commentId: M:OpenTK.Platform.IWindowComponent.FramebufferToClient(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + - linkId: OpenTK.Platform.IWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + commentId: M:OpenTK.Platform.IWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + implements: + - OpenTK.Platform.IWindowComponent.ClientToFramebuffer(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + nameWithType.vb: WindowComponent.ClientToFramebuffer(WindowHandle, Vector2, Vector2) + fullName.vb: OpenTK.Platform.Native.Windows.WindowComponent.ClientToFramebuffer(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2, OpenTK.Mathematics.Vector2) + name.vb: ClientToFramebuffer(WindowHandle, Vector2, Vector2) +- uid: OpenTK.Platform.Native.Windows.WindowComponent.FramebufferToClient(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + commentId: M:OpenTK.Platform.Native.Windows.WindowComponent.FramebufferToClient(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + id: FramebufferToClient(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + parent: OpenTK.Platform.Native.Windows.WindowComponent + langs: + - csharp + - vb + name: FramebufferToClient(WindowHandle, Vector2, out Vector2) + nameWithType: WindowComponent.FramebufferToClient(WindowHandle, Vector2, out Vector2) + fullName: OpenTK.Platform.Native.Windows.WindowComponent.FramebufferToClient(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2, out OpenTK.Mathematics.Vector2) + type: Method + source: + id: FramebufferToClient + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\WindowComponent.cs + startLine: 2264 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform.Native.Windows + summary: Converts framebuffer coordinates to framebuffer coordinates. + remarks: >- + On platforms that support non-integer screen and client space coordinates (macOS) this function will return full precision results, + + on integer based platforms (win32 and X11) the input coordinates will (if necessary) be truncated to ints before conversion. + example: [] + syntax: + content: public void FramebufferToClient(WindowHandle handle, Vector2 framebuffer, out Vector2 client) + parameters: + - id: handle + type: OpenTK.Platform.WindowHandle + description: Handle of the window whose coordinate system to use. + - id: framebuffer + type: OpenTK.Mathematics.Vector2 + description: The framebuffer coordinate. + - id: client + type: OpenTK.Mathematics.Vector2 + description: The client coordinate. + content.vb: Public Sub FramebufferToClient(handle As WindowHandle, framebuffer As Vector2, client As Vector2) + overload: OpenTK.Platform.Native.Windows.WindowComponent.FramebufferToClient* + seealso: + - linkId: OpenTK.Platform.IWindowComponent.ClientToFramebuffer(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + commentId: M:OpenTK.Platform.IWindowComponent.ClientToFramebuffer(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + - linkId: OpenTK.Platform.IWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + commentId: M:OpenTK.Platform.IWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) implements: - - OpenTK.Platform.IWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) - nameWithType.vb: WindowComponent.ClientToScreen(WindowHandle, Integer, Integer, Integer, Integer) - fullName.vb: OpenTK.Platform.Native.Windows.WindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle, Integer, Integer, Integer, Integer) - name.vb: ClientToScreen(WindowHandle, Integer, Integer, Integer, Integer) + - OpenTK.Platform.IWindowComponent.FramebufferToClient(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + nameWithType.vb: WindowComponent.FramebufferToClient(WindowHandle, Vector2, Vector2) + fullName.vb: OpenTK.Platform.Native.Windows.WindowComponent.FramebufferToClient(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2, OpenTK.Mathematics.Vector2) + name.vb: FramebufferToClient(WindowHandle, Vector2, Vector2) - uid: OpenTK.Platform.Native.Windows.WindowComponent.GetScaleFactor(OpenTK.Platform.WindowHandle,System.Single@,System.Single@) commentId: M:OpenTK.Platform.Native.Windows.WindowComponent.GetScaleFactor(OpenTK.Platform.WindowHandle,System.Single@,System.Single@) id: GetScaleFactor(OpenTK.Platform.WindowHandle,System.Single@,System.Single@) @@ -2280,7 +2543,7 @@ items: source: id: GetScaleFactor path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\WindowComponent.cs - startLine: 2112 + startLine: 2272 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows @@ -2322,7 +2585,7 @@ items: source: id: GetHWND path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\Windows\WindowComponent.cs - startLine: 2127 + startLine: 2287 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.Windows @@ -2715,6 +2978,19 @@ references: name: PalComponents nameWithType: PalComponents fullName: OpenTK.Platform.PalComponents +- uid: OpenTK.Core.Utility.ILogger + commentId: T:OpenTK.Core.Utility.ILogger + parent: OpenTK.Core.Utility + href: OpenTK.Core.Utility.ILogger.html + name: ILogger + nameWithType: ILogger + fullName: OpenTK.Core.Utility.ILogger +- uid: OpenTK.Platform.ToolkitOptions.Logger + commentId: P:OpenTK.Platform.ToolkitOptions.Logger + href: OpenTK.Platform.ToolkitOptions.html#OpenTK_Platform_ToolkitOptions_Logger + name: Logger + nameWithType: ToolkitOptions.Logger + fullName: OpenTK.Platform.ToolkitOptions.Logger - uid: OpenTK.Platform.Native.Windows.WindowComponent.Logger* commentId: Overload:OpenTK.Platform.Native.Windows.WindowComponent.Logger href: OpenTK.Platform.Native.Windows.WindowComponent.html#OpenTK_Platform_Native_Windows_WindowComponent_Logger @@ -2728,13 +3004,6 @@ references: name: Logger nameWithType: IPalComponent.Logger fullName: OpenTK.Platform.IPalComponent.Logger -- uid: OpenTK.Core.Utility.ILogger - commentId: T:OpenTK.Core.Utility.ILogger - parent: OpenTK.Core.Utility - href: OpenTK.Core.Utility.ILogger.html - name: ILogger - nameWithType: ILogger - fullName: OpenTK.Core.Utility.ILogger - uid: OpenTK.Core.Utility commentId: N:OpenTK.Core.Utility href: OpenTK.html @@ -2765,9 +3034,40 @@ references: - uid: OpenTK.Core.Utility name: Utility href: OpenTK.Core.Utility.html -- uid: OpenTK.Platform.Native.Windows.WindowComponent.Initialize* - commentId: Overload:OpenTK.Platform.Native.Windows.WindowComponent.Initialize - href: OpenTK.Platform.Native.Windows.WindowComponent.html#OpenTK_Platform_Native_Windows_WindowComponent_Initialize_OpenTK_Platform_ToolkitOptions_ +- uid: OpenTK.Platform.ToolkitOptions + commentId: T:OpenTK.Platform.ToolkitOptions + parent: OpenTK.Platform + href: OpenTK.Platform.ToolkitOptions.html + name: ToolkitOptions + nameWithType: ToolkitOptions + fullName: OpenTK.Platform.ToolkitOptions +- uid: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Init_OpenTK_Platform_ToolkitOptions_ + name: Init(ToolkitOptions) + nameWithType: Toolkit.Init(ToolkitOptions) + fullName: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + spec.csharp: + - uid: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + name: Init + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Init_OpenTK_Platform_ToolkitOptions_ + - name: ( + - uid: OpenTK.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Platform.ToolkitOptions.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + name: Init + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Init_OpenTK_Platform_ToolkitOptions_ + - name: ( + - uid: OpenTK.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Platform.ToolkitOptions.html + - name: ) +- uid: OpenTK.Platform.Native.Windows.WindowComponent.Initialize* + commentId: Overload:OpenTK.Platform.Native.Windows.WindowComponent.Initialize + href: OpenTK.Platform.Native.Windows.WindowComponent.html#OpenTK_Platform_Native_Windows_WindowComponent_Initialize_OpenTK_Platform_ToolkitOptions_ name: Initialize nameWithType: WindowComponent.Initialize fullName: OpenTK.Platform.Native.Windows.WindowComponent.Initialize @@ -2796,13 +3096,49 @@ references: name: ToolkitOptions href: OpenTK.Platform.ToolkitOptions.html - name: ) -- uid: OpenTK.Platform.ToolkitOptions - commentId: T:OpenTK.Platform.ToolkitOptions - parent: OpenTK.Platform - href: OpenTK.Platform.ToolkitOptions.html - name: ToolkitOptions - nameWithType: ToolkitOptions - fullName: OpenTK.Platform.ToolkitOptions +- uid: OpenTK.Platform.Toolkit.Uninit + commentId: M:OpenTK.Platform.Toolkit.Uninit + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Uninit + name: Uninit() + nameWithType: Toolkit.Uninit() + fullName: OpenTK.Platform.Toolkit.Uninit() + spec.csharp: + - uid: OpenTK.Platform.Toolkit.Uninit + name: Uninit + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Uninit + - name: ( + - name: ) + spec.vb: + - uid: OpenTK.Platform.Toolkit.Uninit + name: Uninit + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Uninit + - name: ( + - name: ) +- uid: OpenTK.Platform.Native.Windows.WindowComponent.Uninitialize* + commentId: Overload:OpenTK.Platform.Native.Windows.WindowComponent.Uninitialize + href: OpenTK.Platform.Native.Windows.WindowComponent.html#OpenTK_Platform_Native_Windows_WindowComponent_Uninitialize + name: Uninitialize + nameWithType: WindowComponent.Uninitialize + fullName: OpenTK.Platform.Native.Windows.WindowComponent.Uninitialize +- uid: OpenTK.Platform.IPalComponent.Uninitialize + commentId: M:OpenTK.Platform.IPalComponent.Uninitialize + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + name: Uninitialize() + nameWithType: IPalComponent.Uninitialize() + fullName: OpenTK.Platform.IPalComponent.Uninitialize() + spec.csharp: + - uid: OpenTK.Platform.IPalComponent.Uninitialize + name: Uninitialize + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + - name: ( + - name: ) + spec.vb: + - uid: OpenTK.Platform.IPalComponent.Uninitialize + name: Uninitialize + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + - name: ( + - name: ) - uid: OpenTK.Platform.IWindowComponent.SetIcon(OpenTK.Platform.WindowHandle,OpenTK.Platform.IconHandle) commentId: M:OpenTK.Platform.IWindowComponent.SetIcon(OpenTK.Platform.WindowHandle,OpenTK.Platform.IconHandle) parent: OpenTK.Platform.IWindowComponent @@ -2838,6 +3174,31 @@ references: name: IconHandle href: OpenTK.Platform.IconHandle.html - name: ) +- uid: OpenTK.Platform.IWindowComponent.GetIcon(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.GetIcon(OpenTK.Platform.WindowHandle) + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetIcon_OpenTK_Platform_WindowHandle_ + name: GetIcon(WindowHandle) + nameWithType: IWindowComponent.GetIcon(WindowHandle) + fullName: OpenTK.Platform.IWindowComponent.GetIcon(OpenTK.Platform.WindowHandle) + spec.csharp: + - uid: OpenTK.Platform.IWindowComponent.GetIcon(OpenTK.Platform.WindowHandle) + name: GetIcon + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetIcon_OpenTK_Platform_WindowHandle_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IWindowComponent.GetIcon(OpenTK.Platform.WindowHandle) + name: GetIcon + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetIcon_OpenTK_Platform_WindowHandle_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ) - uid: OpenTK.Platform.Native.Windows.WindowComponent.CanSetIcon* commentId: Overload:OpenTK.Platform.Native.Windows.WindowComponent.CanSetIcon href: OpenTK.Platform.Native.Windows.WindowComponent.html#OpenTK_Platform_Native_Windows_WindowComponent_CanSetIcon @@ -3243,6 +3604,31 @@ references: isExternal: true href: https://learn.microsoft.com/dotnet/api/system.boolean - name: ) +- uid: OpenTK.Platform.IWindowComponent.Destroy(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.Destroy(OpenTK.Platform.WindowHandle) + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_Destroy_OpenTK_Platform_WindowHandle_ + name: Destroy(WindowHandle) + nameWithType: IWindowComponent.Destroy(WindowHandle) + fullName: OpenTK.Platform.IWindowComponent.Destroy(OpenTK.Platform.WindowHandle) + spec.csharp: + - uid: OpenTK.Platform.IWindowComponent.Destroy(OpenTK.Platform.WindowHandle) + name: Destroy + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_Destroy_OpenTK_Platform_WindowHandle_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IWindowComponent.Destroy(OpenTK.Platform.WindowHandle) + name: Destroy + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_Destroy_OpenTK_Platform_WindowHandle_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ) - uid: OpenTK.Platform.Native.Windows.WindowComponent.Create* commentId: Overload:OpenTK.Platform.Native.Windows.WindowComponent.Create href: OpenTK.Platform.Native.Windows.WindowComponent.html#OpenTK_Platform_Native_Windows_WindowComponent_Create_OpenTK_Platform_GraphicsApiHints_ @@ -3313,87 +3699,18 @@ references: name: WindowHandle href: OpenTK.Platform.WindowHandle.html - name: ) -- uid: System.ArgumentNullException - commentId: T:System.ArgumentNullException - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.argumentnullexception - name: ArgumentNullException - nameWithType: ArgumentNullException - fullName: System.ArgumentNullException - uid: OpenTK.Platform.Native.Windows.WindowComponent.Destroy* commentId: Overload:OpenTK.Platform.Native.Windows.WindowComponent.Destroy href: OpenTK.Platform.Native.Windows.WindowComponent.html#OpenTK_Platform_Native_Windows_WindowComponent_Destroy_OpenTK_Platform_WindowHandle_ name: Destroy nameWithType: WindowComponent.Destroy fullName: OpenTK.Platform.Native.Windows.WindowComponent.Destroy -- uid: OpenTK.Platform.IWindowComponent.Destroy(OpenTK.Platform.WindowHandle) - commentId: M:OpenTK.Platform.IWindowComponent.Destroy(OpenTK.Platform.WindowHandle) - parent: OpenTK.Platform.IWindowComponent - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_Destroy_OpenTK_Platform_WindowHandle_ - name: Destroy(WindowHandle) - nameWithType: IWindowComponent.Destroy(WindowHandle) - fullName: OpenTK.Platform.IWindowComponent.Destroy(OpenTK.Platform.WindowHandle) - spec.csharp: - - uid: OpenTK.Platform.IWindowComponent.Destroy(OpenTK.Platform.WindowHandle) - name: Destroy - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_Destroy_OpenTK_Platform_WindowHandle_ - - name: ( - - uid: OpenTK.Platform.WindowHandle - name: WindowHandle - href: OpenTK.Platform.WindowHandle.html - - name: ) - spec.vb: - - uid: OpenTK.Platform.IWindowComponent.Destroy(OpenTK.Platform.WindowHandle) - name: Destroy - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_Destroy_OpenTK_Platform_WindowHandle_ - - name: ( - - uid: OpenTK.Platform.WindowHandle - name: WindowHandle - href: OpenTK.Platform.WindowHandle.html - - name: ) - uid: OpenTK.Platform.Native.Windows.WindowComponent.IsWindowDestroyed* commentId: Overload:OpenTK.Platform.Native.Windows.WindowComponent.IsWindowDestroyed href: OpenTK.Platform.Native.Windows.WindowComponent.html#OpenTK_Platform_Native_Windows_WindowComponent_IsWindowDestroyed_OpenTK_Platform_WindowHandle_ name: IsWindowDestroyed nameWithType: WindowComponent.IsWindowDestroyed fullName: OpenTK.Platform.Native.Windows.WindowComponent.IsWindowDestroyed -- uid: OpenTK.Platform.Native.Windows.WindowComponent.GetTitle* - commentId: Overload:OpenTK.Platform.Native.Windows.WindowComponent.GetTitle - href: OpenTK.Platform.Native.Windows.WindowComponent.html#OpenTK_Platform_Native_Windows_WindowComponent_GetTitle_OpenTK_Platform_WindowHandle_ - name: GetTitle - nameWithType: WindowComponent.GetTitle - fullName: OpenTK.Platform.Native.Windows.WindowComponent.GetTitle -- uid: OpenTK.Platform.IWindowComponent.GetTitle(OpenTK.Platform.WindowHandle) - commentId: M:OpenTK.Platform.IWindowComponent.GetTitle(OpenTK.Platform.WindowHandle) - parent: OpenTK.Platform.IWindowComponent - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetTitle_OpenTK_Platform_WindowHandle_ - name: GetTitle(WindowHandle) - nameWithType: IWindowComponent.GetTitle(WindowHandle) - fullName: OpenTK.Platform.IWindowComponent.GetTitle(OpenTK.Platform.WindowHandle) - spec.csharp: - - uid: OpenTK.Platform.IWindowComponent.GetTitle(OpenTK.Platform.WindowHandle) - name: GetTitle - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetTitle_OpenTK_Platform_WindowHandle_ - - name: ( - - uid: OpenTK.Platform.WindowHandle - name: WindowHandle - href: OpenTK.Platform.WindowHandle.html - - name: ) - spec.vb: - - uid: OpenTK.Platform.IWindowComponent.GetTitle(OpenTK.Platform.WindowHandle) - name: GetTitle - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetTitle_OpenTK_Platform_WindowHandle_ - - name: ( - - uid: OpenTK.Platform.WindowHandle - name: WindowHandle - href: OpenTK.Platform.WindowHandle.html - - name: ) -- uid: OpenTK.Platform.Native.Windows.WindowComponent.SetTitle* - commentId: Overload:OpenTK.Platform.Native.Windows.WindowComponent.SetTitle - href: OpenTK.Platform.Native.Windows.WindowComponent.html#OpenTK_Platform_Native_Windows_WindowComponent_SetTitle_OpenTK_Platform_WindowHandle_System_String_ - name: SetTitle - nameWithType: WindowComponent.SetTitle - fullName: OpenTK.Platform.Native.Windows.WindowComponent.SetTitle - uid: OpenTK.Platform.IWindowComponent.SetTitle(OpenTK.Platform.WindowHandle,System.String) commentId: M:OpenTK.Platform.IWindowComponent.SetTitle(OpenTK.Platform.WindowHandle,System.String) parent: OpenTK.Platform.IWindowComponent @@ -3435,43 +3752,56 @@ references: isExternal: true href: https://learn.microsoft.com/dotnet/api/system.string - name: ) -- uid: OpenTK.Platform.PalNotImplementedException - commentId: T:OpenTK.Platform.PalNotImplementedException - href: OpenTK.Platform.PalNotImplementedException.html - name: PalNotImplementedException - nameWithType: PalNotImplementedException - fullName: OpenTK.Platform.PalNotImplementedException -- uid: OpenTK.Platform.Native.Windows.WindowComponent.GetIcon* - commentId: Overload:OpenTK.Platform.Native.Windows.WindowComponent.GetIcon - href: OpenTK.Platform.Native.Windows.WindowComponent.html#OpenTK_Platform_Native_Windows_WindowComponent_GetIcon_OpenTK_Platform_WindowHandle_ - name: GetIcon - nameWithType: WindowComponent.GetIcon - fullName: OpenTK.Platform.Native.Windows.WindowComponent.GetIcon -- uid: OpenTK.Platform.IWindowComponent.GetIcon(OpenTK.Platform.WindowHandle) - commentId: M:OpenTK.Platform.IWindowComponent.GetIcon(OpenTK.Platform.WindowHandle) +- uid: OpenTK.Platform.Native.Windows.WindowComponent.GetTitle* + commentId: Overload:OpenTK.Platform.Native.Windows.WindowComponent.GetTitle + href: OpenTK.Platform.Native.Windows.WindowComponent.html#OpenTK_Platform_Native_Windows_WindowComponent_GetTitle_OpenTK_Platform_WindowHandle_ + name: GetTitle + nameWithType: WindowComponent.GetTitle + fullName: OpenTK.Platform.Native.Windows.WindowComponent.GetTitle +- uid: OpenTK.Platform.IWindowComponent.GetTitle(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.GetTitle(OpenTK.Platform.WindowHandle) parent: OpenTK.Platform.IWindowComponent - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetIcon_OpenTK_Platform_WindowHandle_ - name: GetIcon(WindowHandle) - nameWithType: IWindowComponent.GetIcon(WindowHandle) - fullName: OpenTK.Platform.IWindowComponent.GetIcon(OpenTK.Platform.WindowHandle) + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetTitle_OpenTK_Platform_WindowHandle_ + name: GetTitle(WindowHandle) + nameWithType: IWindowComponent.GetTitle(WindowHandle) + fullName: OpenTK.Platform.IWindowComponent.GetTitle(OpenTK.Platform.WindowHandle) spec.csharp: - - uid: OpenTK.Platform.IWindowComponent.GetIcon(OpenTK.Platform.WindowHandle) - name: GetIcon - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetIcon_OpenTK_Platform_WindowHandle_ + - uid: OpenTK.Platform.IWindowComponent.GetTitle(OpenTK.Platform.WindowHandle) + name: GetTitle + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetTitle_OpenTK_Platform_WindowHandle_ - name: ( - uid: OpenTK.Platform.WindowHandle name: WindowHandle href: OpenTK.Platform.WindowHandle.html - name: ) spec.vb: - - uid: OpenTK.Platform.IWindowComponent.GetIcon(OpenTK.Platform.WindowHandle) - name: GetIcon - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetIcon_OpenTK_Platform_WindowHandle_ + - uid: OpenTK.Platform.IWindowComponent.GetTitle(OpenTK.Platform.WindowHandle) + name: GetTitle + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetTitle_OpenTK_Platform_WindowHandle_ - name: ( - uid: OpenTK.Platform.WindowHandle name: WindowHandle href: OpenTK.Platform.WindowHandle.html - name: ) +- uid: OpenTK.Platform.Native.Windows.WindowComponent.SetTitle* + commentId: Overload:OpenTK.Platform.Native.Windows.WindowComponent.SetTitle + href: OpenTK.Platform.Native.Windows.WindowComponent.html#OpenTK_Platform_Native_Windows_WindowComponent_SetTitle_OpenTK_Platform_WindowHandle_System_String_ + name: SetTitle + nameWithType: WindowComponent.SetTitle + fullName: OpenTK.Platform.Native.Windows.WindowComponent.SetTitle +- uid: System.PlatformNotSupportedException + commentId: T:System.PlatformNotSupportedException + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.platformnotsupportedexception + name: PlatformNotSupportedException + nameWithType: PlatformNotSupportedException + fullName: System.PlatformNotSupportedException +- uid: OpenTK.Platform.Native.Windows.WindowComponent.GetIcon* + commentId: Overload:OpenTK.Platform.Native.Windows.WindowComponent.GetIcon + href: OpenTK.Platform.Native.Windows.WindowComponent.html#OpenTK_Platform_Native_Windows_WindowComponent_GetIcon_OpenTK_Platform_WindowHandle_ + name: GetIcon + nameWithType: WindowComponent.GetIcon + fullName: OpenTK.Platform.Native.Windows.WindowComponent.GetIcon - uid: OpenTK.Platform.IconHandle commentId: T:OpenTK.Platform.IconHandle parent: OpenTK.Platform @@ -3485,27 +3815,61 @@ references: name: SetIcon nameWithType: WindowComponent.SetIcon fullName: OpenTK.Platform.Native.Windows.WindowComponent.SetIcon +- uid: OpenTK.Platform.IWindowComponent.SetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) + commentId: M:OpenTK.Platform.IWindowComponent.SetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetPosition_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2i_ + name: SetPosition(WindowHandle, Vector2i) + nameWithType: IWindowComponent.SetPosition(WindowHandle, Vector2i) + fullName: OpenTK.Platform.IWindowComponent.SetPosition(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2i) + spec.csharp: + - uid: OpenTK.Platform.IWindowComponent.SetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) + name: SetPosition + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetPosition_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2i_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: OpenTK.Mathematics.Vector2i + name: Vector2i + href: OpenTK.Mathematics.Vector2i.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IWindowComponent.SetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) + name: SetPosition + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetPosition_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2i_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: OpenTK.Mathematics.Vector2i + name: Vector2i + href: OpenTK.Mathematics.Vector2i.html + - name: ) - uid: OpenTK.Platform.Native.Windows.WindowComponent.GetPosition* commentId: Overload:OpenTK.Platform.Native.Windows.WindowComponent.GetPosition - href: OpenTK.Platform.Native.Windows.WindowComponent.html#OpenTK_Platform_Native_Windows_WindowComponent_GetPosition_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.Native.Windows.WindowComponent.html#OpenTK_Platform_Native_Windows_WindowComponent_GetPosition_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2i__ name: GetPosition nameWithType: WindowComponent.GetPosition fullName: OpenTK.Platform.Native.Windows.WindowComponent.GetPosition -- uid: OpenTK.Platform.IWindowComponent.GetPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) - commentId: M:OpenTK.Platform.IWindowComponent.GetPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) +- uid: OpenTK.Platform.IWindowComponent.GetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) + commentId: M:OpenTK.Platform.IWindowComponent.GetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) parent: OpenTK.Platform.IWindowComponent - isExternal: true - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetPosition_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ - name: GetPosition(WindowHandle, out int, out int) - nameWithType: IWindowComponent.GetPosition(WindowHandle, out int, out int) - fullName: OpenTK.Platform.IWindowComponent.GetPosition(OpenTK.Platform.WindowHandle, out int, out int) - nameWithType.vb: IWindowComponent.GetPosition(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Platform.IWindowComponent.GetPosition(OpenTK.Platform.WindowHandle, Integer, Integer) - name.vb: GetPosition(WindowHandle, Integer, Integer) + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetPosition_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2i__ + name: GetPosition(WindowHandle, out Vector2i) + nameWithType: IWindowComponent.GetPosition(WindowHandle, out Vector2i) + fullName: OpenTK.Platform.IWindowComponent.GetPosition(OpenTK.Platform.WindowHandle, out OpenTK.Mathematics.Vector2i) + nameWithType.vb: IWindowComponent.GetPosition(WindowHandle, Vector2i) + fullName.vb: OpenTK.Platform.IWindowComponent.GetPosition(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2i) + name.vb: GetPosition(WindowHandle, Vector2i) spec.csharp: - - uid: OpenTK.Platform.IWindowComponent.GetPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + - uid: OpenTK.Platform.IWindowComponent.GetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) name: GetPosition - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetPosition_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetPosition_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2i__ - name: ( - uid: OpenTK.Platform.WindowHandle name: WindowHandle @@ -3514,131 +3878,79 @@ references: - name: " " - name: out - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - name: out - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 + - uid: OpenTK.Mathematics.Vector2i + name: Vector2i + href: OpenTK.Mathematics.Vector2i.html - name: ) spec.vb: - - uid: OpenTK.Platform.IWindowComponent.GetPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + - uid: OpenTK.Platform.IWindowComponent.GetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) name: GetPosition - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetPosition_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetPosition_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2i__ - name: ( - uid: OpenTK.Platform.WindowHandle name: WindowHandle href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 + - uid: OpenTK.Mathematics.Vector2i + name: Vector2i + href: OpenTK.Mathematics.Vector2i.html - name: ) -- uid: System.Int32 - commentId: T:System.Int32 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - name: int - nameWithType: int - fullName: int - nameWithType.vb: Integer - fullName.vb: Integer - name.vb: Integer +- uid: OpenTK.Mathematics.Vector2i + commentId: T:OpenTK.Mathematics.Vector2i + parent: OpenTK.Mathematics + href: OpenTK.Mathematics.Vector2i.html + name: Vector2i + nameWithType: Vector2i + fullName: OpenTK.Mathematics.Vector2i +- uid: OpenTK.Mathematics + commentId: N:OpenTK.Mathematics + href: OpenTK.html + name: OpenTK.Mathematics + nameWithType: OpenTK.Mathematics + fullName: OpenTK.Mathematics + spec.csharp: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Mathematics + name: Mathematics + href: OpenTK.Mathematics.html + spec.vb: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Mathematics + name: Mathematics + href: OpenTK.Mathematics.html - uid: OpenTK.Platform.Native.Windows.WindowComponent.SetPosition* commentId: Overload:OpenTK.Platform.Native.Windows.WindowComponent.SetPosition - href: OpenTK.Platform.Native.Windows.WindowComponent.html#OpenTK_Platform_Native_Windows_WindowComponent_SetPosition_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_ + href: OpenTK.Platform.Native.Windows.WindowComponent.html#OpenTK_Platform_Native_Windows_WindowComponent_SetPosition_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2i_ name: SetPosition nameWithType: WindowComponent.SetPosition fullName: OpenTK.Platform.Native.Windows.WindowComponent.SetPosition -- uid: OpenTK.Platform.IWindowComponent.SetPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) - commentId: M:OpenTK.Platform.IWindowComponent.SetPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) - parent: OpenTK.Platform.IWindowComponent - isExternal: true - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetPosition_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_ - name: SetPosition(WindowHandle, int, int) - nameWithType: IWindowComponent.SetPosition(WindowHandle, int, int) - fullName: OpenTK.Platform.IWindowComponent.SetPosition(OpenTK.Platform.WindowHandle, int, int) - nameWithType.vb: IWindowComponent.SetPosition(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Platform.IWindowComponent.SetPosition(OpenTK.Platform.WindowHandle, Integer, Integer) - name.vb: SetPosition(WindowHandle, Integer, Integer) - spec.csharp: - - uid: OpenTK.Platform.IWindowComponent.SetPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) - name: SetPosition - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetPosition_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_ - - name: ( - - uid: OpenTK.Platform.WindowHandle - name: WindowHandle - href: OpenTK.Platform.WindowHandle.html - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) - spec.vb: - - uid: OpenTK.Platform.IWindowComponent.SetPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) - name: SetPosition - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetPosition_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_ - - name: ( - - uid: OpenTK.Platform.WindowHandle - name: WindowHandle - href: OpenTK.Platform.WindowHandle.html - - name: ',' - - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) - uid: OpenTK.Platform.Native.Windows.WindowComponent.GetSize* commentId: Overload:OpenTK.Platform.Native.Windows.WindowComponent.GetSize - href: OpenTK.Platform.Native.Windows.WindowComponent.html#OpenTK_Platform_Native_Windows_WindowComponent_GetSize_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.Native.Windows.WindowComponent.html#OpenTK_Platform_Native_Windows_WindowComponent_GetSize_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2i__ name: GetSize nameWithType: WindowComponent.GetSize fullName: OpenTK.Platform.Native.Windows.WindowComponent.GetSize -- uid: OpenTK.Platform.IWindowComponent.GetSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) - commentId: M:OpenTK.Platform.IWindowComponent.GetSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) +- uid: OpenTK.Platform.IWindowComponent.GetSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) + commentId: M:OpenTK.Platform.IWindowComponent.GetSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) parent: OpenTK.Platform.IWindowComponent - isExternal: true - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetSize_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ - name: GetSize(WindowHandle, out int, out int) - nameWithType: IWindowComponent.GetSize(WindowHandle, out int, out int) - fullName: OpenTK.Platform.IWindowComponent.GetSize(OpenTK.Platform.WindowHandle, out int, out int) - nameWithType.vb: IWindowComponent.GetSize(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Platform.IWindowComponent.GetSize(OpenTK.Platform.WindowHandle, Integer, Integer) - name.vb: GetSize(WindowHandle, Integer, Integer) + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetSize_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2i__ + name: GetSize(WindowHandle, out Vector2i) + nameWithType: IWindowComponent.GetSize(WindowHandle, out Vector2i) + fullName: OpenTK.Platform.IWindowComponent.GetSize(OpenTK.Platform.WindowHandle, out OpenTK.Mathematics.Vector2i) + nameWithType.vb: IWindowComponent.GetSize(WindowHandle, Vector2i) + fullName.vb: OpenTK.Platform.IWindowComponent.GetSize(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2i) + name.vb: GetSize(WindowHandle, Vector2i) spec.csharp: - - uid: OpenTK.Platform.IWindowComponent.GetSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + - uid: OpenTK.Platform.IWindowComponent.GetSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) name: GetSize - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetSize_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetSize_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2i__ - name: ( - uid: OpenTK.Platform.WindowHandle name: WindowHandle @@ -3647,98 +3959,64 @@ references: - name: " " - name: out - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - name: out - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 + - uid: OpenTK.Mathematics.Vector2i + name: Vector2i + href: OpenTK.Mathematics.Vector2i.html - name: ) spec.vb: - - uid: OpenTK.Platform.IWindowComponent.GetSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + - uid: OpenTK.Platform.IWindowComponent.GetSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) name: GetSize - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetSize_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetSize_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2i__ - name: ( - uid: OpenTK.Platform.WindowHandle name: WindowHandle href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 + - uid: OpenTK.Mathematics.Vector2i + name: Vector2i + href: OpenTK.Mathematics.Vector2i.html - name: ) - uid: OpenTK.Platform.Native.Windows.WindowComponent.SetSize* commentId: Overload:OpenTK.Platform.Native.Windows.WindowComponent.SetSize - href: OpenTK.Platform.Native.Windows.WindowComponent.html#OpenTK_Platform_Native_Windows_WindowComponent_SetSize_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_ + href: OpenTK.Platform.Native.Windows.WindowComponent.html#OpenTK_Platform_Native_Windows_WindowComponent_SetSize_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2i_ name: SetSize nameWithType: WindowComponent.SetSize fullName: OpenTK.Platform.Native.Windows.WindowComponent.SetSize -- uid: OpenTK.Platform.IWindowComponent.SetSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) - commentId: M:OpenTK.Platform.IWindowComponent.SetSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) +- uid: OpenTK.Platform.IWindowComponent.SetSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) + commentId: M:OpenTK.Platform.IWindowComponent.SetSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) parent: OpenTK.Platform.IWindowComponent - isExternal: true - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetSize_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_ - name: SetSize(WindowHandle, int, int) - nameWithType: IWindowComponent.SetSize(WindowHandle, int, int) - fullName: OpenTK.Platform.IWindowComponent.SetSize(OpenTK.Platform.WindowHandle, int, int) - nameWithType.vb: IWindowComponent.SetSize(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Platform.IWindowComponent.SetSize(OpenTK.Platform.WindowHandle, Integer, Integer) - name.vb: SetSize(WindowHandle, Integer, Integer) + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetSize_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2i_ + name: SetSize(WindowHandle, Vector2i) + nameWithType: IWindowComponent.SetSize(WindowHandle, Vector2i) + fullName: OpenTK.Platform.IWindowComponent.SetSize(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2i) spec.csharp: - - uid: OpenTK.Platform.IWindowComponent.SetSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) + - uid: OpenTK.Platform.IWindowComponent.SetSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) name: SetSize - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetSize_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetSize_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2i_ - name: ( - uid: OpenTK.Platform.WindowHandle name: WindowHandle href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 + - uid: OpenTK.Mathematics.Vector2i + name: Vector2i + href: OpenTK.Mathematics.Vector2i.html - name: ) spec.vb: - - uid: OpenTK.Platform.IWindowComponent.SetSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) + - uid: OpenTK.Platform.IWindowComponent.SetSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) name: SetSize - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetSize_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetSize_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2i_ - name: ( - uid: OpenTK.Platform.WindowHandle name: WindowHandle href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 + - uid: OpenTK.Mathematics.Vector2i + name: Vector2i + href: OpenTK.Mathematics.Vector2i.html - name: ) - uid: OpenTK.Platform.Native.Windows.WindowComponent.GetBounds* commentId: Overload:OpenTK.Platform.Native.Windows.WindowComponent.GetBounds @@ -3831,6 +4109,17 @@ references: isExternal: true href: https://learn.microsoft.com/dotnet/api/system.int32 - name: ) +- uid: System.Int32 + commentId: T:System.Int32 + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + name: int + nameWithType: int + fullName: int + nameWithType.vb: Integer + fullName.vb: Integer + name.vb: Integer - uid: OpenTK.Platform.Native.Windows.WindowComponent.SetBounds* commentId: Overload:OpenTK.Platform.Native.Windows.WindowComponent.SetBounds href: OpenTK.Platform.Native.Windows.WindowComponent.html#OpenTK_Platform_Native_Windows_WindowComponent_SetBounds_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_System_Int32_System_Int32_ @@ -3916,25 +4205,24 @@ references: - name: ) - uid: OpenTK.Platform.Native.Windows.WindowComponent.GetClientPosition* commentId: Overload:OpenTK.Platform.Native.Windows.WindowComponent.GetClientPosition - href: OpenTK.Platform.Native.Windows.WindowComponent.html#OpenTK_Platform_Native_Windows_WindowComponent_GetClientPosition_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.Native.Windows.WindowComponent.html#OpenTK_Platform_Native_Windows_WindowComponent_GetClientPosition_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2i__ name: GetClientPosition nameWithType: WindowComponent.GetClientPosition fullName: OpenTK.Platform.Native.Windows.WindowComponent.GetClientPosition -- uid: OpenTK.Platform.IWindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) - commentId: M:OpenTK.Platform.IWindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) +- uid: OpenTK.Platform.IWindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) + commentId: M:OpenTK.Platform.IWindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) parent: OpenTK.Platform.IWindowComponent - isExternal: true - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetClientPosition_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ - name: GetClientPosition(WindowHandle, out int, out int) - nameWithType: IWindowComponent.GetClientPosition(WindowHandle, out int, out int) - fullName: OpenTK.Platform.IWindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle, out int, out int) - nameWithType.vb: IWindowComponent.GetClientPosition(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Platform.IWindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle, Integer, Integer) - name.vb: GetClientPosition(WindowHandle, Integer, Integer) + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetClientPosition_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2i__ + name: GetClientPosition(WindowHandle, out Vector2i) + nameWithType: IWindowComponent.GetClientPosition(WindowHandle, out Vector2i) + fullName: OpenTK.Platform.IWindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle, out OpenTK.Mathematics.Vector2i) + nameWithType.vb: IWindowComponent.GetClientPosition(WindowHandle, Vector2i) + fullName.vb: OpenTK.Platform.IWindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2i) + name.vb: GetClientPosition(WindowHandle, Vector2i) spec.csharp: - - uid: OpenTK.Platform.IWindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + - uid: OpenTK.Platform.IWindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) name: GetClientPosition - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetClientPosition_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetClientPosition_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2i__ - name: ( - uid: OpenTK.Platform.WindowHandle name: WindowHandle @@ -3943,120 +4231,85 @@ references: - name: " " - name: out - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - name: out - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 + - uid: OpenTK.Mathematics.Vector2i + name: Vector2i + href: OpenTK.Mathematics.Vector2i.html - name: ) spec.vb: - - uid: OpenTK.Platform.IWindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + - uid: OpenTK.Platform.IWindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) name: GetClientPosition - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetClientPosition_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetClientPosition_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2i__ - name: ( - uid: OpenTK.Platform.WindowHandle name: WindowHandle href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 + - uid: OpenTK.Mathematics.Vector2i + name: Vector2i + href: OpenTK.Mathematics.Vector2i.html - name: ) - uid: OpenTK.Platform.Native.Windows.WindowComponent.SetClientPosition* commentId: Overload:OpenTK.Platform.Native.Windows.WindowComponent.SetClientPosition - href: OpenTK.Platform.Native.Windows.WindowComponent.html#OpenTK_Platform_Native_Windows_WindowComponent_SetClientPosition_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_ + href: OpenTK.Platform.Native.Windows.WindowComponent.html#OpenTK_Platform_Native_Windows_WindowComponent_SetClientPosition_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2i_ name: SetClientPosition nameWithType: WindowComponent.SetClientPosition fullName: OpenTK.Platform.Native.Windows.WindowComponent.SetClientPosition -- uid: OpenTK.Platform.IWindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) - commentId: M:OpenTK.Platform.IWindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) +- uid: OpenTK.Platform.IWindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) + commentId: M:OpenTK.Platform.IWindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) parent: OpenTK.Platform.IWindowComponent - isExternal: true - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetClientPosition_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_ - name: SetClientPosition(WindowHandle, int, int) - nameWithType: IWindowComponent.SetClientPosition(WindowHandle, int, int) - fullName: OpenTK.Platform.IWindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle, int, int) - nameWithType.vb: IWindowComponent.SetClientPosition(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Platform.IWindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle, Integer, Integer) - name.vb: SetClientPosition(WindowHandle, Integer, Integer) + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetClientPosition_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2i_ + name: SetClientPosition(WindowHandle, Vector2i) + nameWithType: IWindowComponent.SetClientPosition(WindowHandle, Vector2i) + fullName: OpenTK.Platform.IWindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2i) spec.csharp: - - uid: OpenTK.Platform.IWindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) + - uid: OpenTK.Platform.IWindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) name: SetClientPosition - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetClientPosition_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetClientPosition_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2i_ - name: ( - uid: OpenTK.Platform.WindowHandle name: WindowHandle href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 + - uid: OpenTK.Mathematics.Vector2i + name: Vector2i + href: OpenTK.Mathematics.Vector2i.html - name: ) spec.vb: - - uid: OpenTK.Platform.IWindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) + - uid: OpenTK.Platform.IWindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) name: SetClientPosition - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetClientPosition_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetClientPosition_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2i_ - name: ( - uid: OpenTK.Platform.WindowHandle name: WindowHandle href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 + - uid: OpenTK.Mathematics.Vector2i + name: Vector2i + href: OpenTK.Mathematics.Vector2i.html - name: ) - uid: OpenTK.Platform.Native.Windows.WindowComponent.GetClientSize* commentId: Overload:OpenTK.Platform.Native.Windows.WindowComponent.GetClientSize - href: OpenTK.Platform.Native.Windows.WindowComponent.html#OpenTK_Platform_Native_Windows_WindowComponent_GetClientSize_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.Native.Windows.WindowComponent.html#OpenTK_Platform_Native_Windows_WindowComponent_GetClientSize_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2i__ name: GetClientSize nameWithType: WindowComponent.GetClientSize fullName: OpenTK.Platform.Native.Windows.WindowComponent.GetClientSize -- uid: OpenTK.Platform.IWindowComponent.GetClientSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) - commentId: M:OpenTK.Platform.IWindowComponent.GetClientSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) +- uid: OpenTK.Platform.IWindowComponent.GetClientSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) + commentId: M:OpenTK.Platform.IWindowComponent.GetClientSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) parent: OpenTK.Platform.IWindowComponent - isExternal: true - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetClientSize_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ - name: GetClientSize(WindowHandle, out int, out int) - nameWithType: IWindowComponent.GetClientSize(WindowHandle, out int, out int) - fullName: OpenTK.Platform.IWindowComponent.GetClientSize(OpenTK.Platform.WindowHandle, out int, out int) - nameWithType.vb: IWindowComponent.GetClientSize(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Platform.IWindowComponent.GetClientSize(OpenTK.Platform.WindowHandle, Integer, Integer) - name.vb: GetClientSize(WindowHandle, Integer, Integer) + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetClientSize_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2i__ + name: GetClientSize(WindowHandle, out Vector2i) + nameWithType: IWindowComponent.GetClientSize(WindowHandle, out Vector2i) + fullName: OpenTK.Platform.IWindowComponent.GetClientSize(OpenTK.Platform.WindowHandle, out OpenTK.Mathematics.Vector2i) + nameWithType.vb: IWindowComponent.GetClientSize(WindowHandle, Vector2i) + fullName.vb: OpenTK.Platform.IWindowComponent.GetClientSize(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2i) + name.vb: GetClientSize(WindowHandle, Vector2i) spec.csharp: - - uid: OpenTK.Platform.IWindowComponent.GetClientSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + - uid: OpenTK.Platform.IWindowComponent.GetClientSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) name: GetClientSize - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetClientSize_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetClientSize_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2i__ - name: ( - uid: OpenTK.Platform.WindowHandle name: WindowHandle @@ -4065,98 +4318,64 @@ references: - name: " " - name: out - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - name: out - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 + - uid: OpenTK.Mathematics.Vector2i + name: Vector2i + href: OpenTK.Mathematics.Vector2i.html - name: ) spec.vb: - - uid: OpenTK.Platform.IWindowComponent.GetClientSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + - uid: OpenTK.Platform.IWindowComponent.GetClientSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) name: GetClientSize - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetClientSize_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetClientSize_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2i__ - name: ( - uid: OpenTK.Platform.WindowHandle name: WindowHandle href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 + - uid: OpenTK.Mathematics.Vector2i + name: Vector2i + href: OpenTK.Mathematics.Vector2i.html - name: ) - uid: OpenTK.Platform.Native.Windows.WindowComponent.SetClientSize* commentId: Overload:OpenTK.Platform.Native.Windows.WindowComponent.SetClientSize - href: OpenTK.Platform.Native.Windows.WindowComponent.html#OpenTK_Platform_Native_Windows_WindowComponent_SetClientSize_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_ + href: OpenTK.Platform.Native.Windows.WindowComponent.html#OpenTK_Platform_Native_Windows_WindowComponent_SetClientSize_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2i_ name: SetClientSize nameWithType: WindowComponent.SetClientSize fullName: OpenTK.Platform.Native.Windows.WindowComponent.SetClientSize -- uid: OpenTK.Platform.IWindowComponent.SetClientSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) - commentId: M:OpenTK.Platform.IWindowComponent.SetClientSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) +- uid: OpenTK.Platform.IWindowComponent.SetClientSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) + commentId: M:OpenTK.Platform.IWindowComponent.SetClientSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) parent: OpenTK.Platform.IWindowComponent - isExternal: true - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetClientSize_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_ - name: SetClientSize(WindowHandle, int, int) - nameWithType: IWindowComponent.SetClientSize(WindowHandle, int, int) - fullName: OpenTK.Platform.IWindowComponent.SetClientSize(OpenTK.Platform.WindowHandle, int, int) - nameWithType.vb: IWindowComponent.SetClientSize(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Platform.IWindowComponent.SetClientSize(OpenTK.Platform.WindowHandle, Integer, Integer) - name.vb: SetClientSize(WindowHandle, Integer, Integer) + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetClientSize_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2i_ + name: SetClientSize(WindowHandle, Vector2i) + nameWithType: IWindowComponent.SetClientSize(WindowHandle, Vector2i) + fullName: OpenTK.Platform.IWindowComponent.SetClientSize(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2i) spec.csharp: - - uid: OpenTK.Platform.IWindowComponent.SetClientSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) + - uid: OpenTK.Platform.IWindowComponent.SetClientSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) name: SetClientSize - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetClientSize_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetClientSize_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2i_ - name: ( - uid: OpenTK.Platform.WindowHandle name: WindowHandle href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 + - uid: OpenTK.Mathematics.Vector2i + name: Vector2i + href: OpenTK.Mathematics.Vector2i.html - name: ) spec.vb: - - uid: OpenTK.Platform.IWindowComponent.SetClientSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) + - uid: OpenTK.Platform.IWindowComponent.SetClientSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) name: SetClientSize - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetClientSize_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetClientSize_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2i_ - name: ( - uid: OpenTK.Platform.WindowHandle name: WindowHandle href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 + - uid: OpenTK.Mathematics.Vector2i + name: Vector2i + href: OpenTK.Mathematics.Vector2i.html - name: ) - uid: OpenTK.Platform.Native.Windows.WindowComponent.GetClientBounds* commentId: Overload:OpenTK.Platform.Native.Windows.WindowComponent.GetClientBounds @@ -4334,25 +4553,24 @@ references: - name: ) - uid: OpenTK.Platform.Native.Windows.WindowComponent.GetFramebufferSize* commentId: Overload:OpenTK.Platform.Native.Windows.WindowComponent.GetFramebufferSize - href: OpenTK.Platform.Native.Windows.WindowComponent.html#OpenTK_Platform_Native_Windows_WindowComponent_GetFramebufferSize_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.Native.Windows.WindowComponent.html#OpenTK_Platform_Native_Windows_WindowComponent_GetFramebufferSize_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2i__ name: GetFramebufferSize nameWithType: WindowComponent.GetFramebufferSize fullName: OpenTK.Platform.Native.Windows.WindowComponent.GetFramebufferSize -- uid: OpenTK.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) - commentId: M:OpenTK.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) +- uid: OpenTK.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) + commentId: M:OpenTK.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) parent: OpenTK.Platform.IWindowComponent - isExternal: true - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetFramebufferSize_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ - name: GetFramebufferSize(WindowHandle, out int, out int) - nameWithType: IWindowComponent.GetFramebufferSize(WindowHandle, out int, out int) - fullName: OpenTK.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle, out int, out int) - nameWithType.vb: IWindowComponent.GetFramebufferSize(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle, Integer, Integer) - name.vb: GetFramebufferSize(WindowHandle, Integer, Integer) + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetFramebufferSize_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2i__ + name: GetFramebufferSize(WindowHandle, out Vector2i) + nameWithType: IWindowComponent.GetFramebufferSize(WindowHandle, out Vector2i) + fullName: OpenTK.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle, out OpenTK.Mathematics.Vector2i) + nameWithType.vb: IWindowComponent.GetFramebufferSize(WindowHandle, Vector2i) + fullName.vb: OpenTK.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2i) + name.vb: GetFramebufferSize(WindowHandle, Vector2i) spec.csharp: - - uid: OpenTK.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + - uid: OpenTK.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) name: GetFramebufferSize - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetFramebufferSize_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetFramebufferSize_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2i__ - name: ( - uid: OpenTK.Platform.WindowHandle name: WindowHandle @@ -4361,39 +4579,23 @@ references: - name: " " - name: out - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - name: out - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 + - uid: OpenTK.Mathematics.Vector2i + name: Vector2i + href: OpenTK.Mathematics.Vector2i.html - name: ) spec.vb: - - uid: OpenTK.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + - uid: OpenTK.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) name: GetFramebufferSize - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetFramebufferSize_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetFramebufferSize_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2i__ - name: ( - uid: OpenTK.Platform.WindowHandle name: WindowHandle href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 + - uid: OpenTK.Mathematics.Vector2i + name: Vector2i + href: OpenTK.Mathematics.Vector2i.html - name: ) - uid: OpenTK.Platform.Native.Windows.WindowComponent.GetMaxClientSize* commentId: Overload:OpenTK.Platform.Native.Windows.WindowComponent.GetMaxClientSize @@ -4706,6 +4908,12 @@ references: href: https://learn.microsoft.com/dotnet/api/system.int32 - name: '?' - name: ) +- uid: OpenTK.Platform.PalNotImplementedException + commentId: T:OpenTK.Platform.PalNotImplementedException + href: OpenTK.Platform.PalNotImplementedException.html + name: PalNotImplementedException + nameWithType: PalNotImplementedException + fullName: OpenTK.Platform.PalNotImplementedException - uid: OpenTK.Platform.Native.Windows.WindowComponent.GetDisplay* commentId: Overload:OpenTK.Platform.Native.Windows.WindowComponent.GetDisplay href: OpenTK.Platform.Native.Windows.WindowComponent.html#OpenTK_Platform_Native_Windows_WindowComponent_GetDisplay_OpenTK_Platform_WindowHandle_ @@ -4757,18 +4965,6 @@ references: name: WindowMode nameWithType: WindowMode fullName: OpenTK.Platform.WindowMode -- uid: OpenTK.Platform.WindowMode.WindowedFullscreen - commentId: F:OpenTK.Platform.WindowMode.WindowedFullscreen - href: OpenTK.Platform.WindowMode.html#OpenTK_Platform_WindowMode_WindowedFullscreen - name: WindowedFullscreen - nameWithType: WindowMode.WindowedFullscreen - fullName: OpenTK.Platform.WindowMode.WindowedFullscreen -- uid: OpenTK.Platform.WindowMode.ExclusiveFullscreen - commentId: F:OpenTK.Platform.WindowMode.ExclusiveFullscreen - href: OpenTK.Platform.WindowMode.html#OpenTK_Platform_WindowMode_ExclusiveFullscreen - name: ExclusiveFullscreen - nameWithType: WindowMode.ExclusiveFullscreen - fullName: OpenTK.Platform.WindowMode.ExclusiveFullscreen - uid: OpenTK.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle) commentId: M:OpenTK.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle) parent: OpenTK.Platform.IWindowComponent @@ -4849,13 +5045,25 @@ references: name: VideoMode href: OpenTK.Platform.VideoMode.html - name: ) -- uid: System.ArgumentOutOfRangeException - commentId: T:System.ArgumentOutOfRangeException +- uid: OpenTK.Platform.WindowMode.WindowedFullscreen + commentId: F:OpenTK.Platform.WindowMode.WindowedFullscreen + href: OpenTK.Platform.WindowMode.html#OpenTK_Platform_WindowMode_WindowedFullscreen + name: WindowedFullscreen + nameWithType: WindowMode.WindowedFullscreen + fullName: OpenTK.Platform.WindowMode.WindowedFullscreen +- uid: OpenTK.Platform.WindowMode.ExclusiveFullscreen + commentId: F:OpenTK.Platform.WindowMode.ExclusiveFullscreen + href: OpenTK.Platform.WindowMode.html#OpenTK_Platform_WindowMode_ExclusiveFullscreen + name: ExclusiveFullscreen + nameWithType: WindowMode.ExclusiveFullscreen + fullName: OpenTK.Platform.WindowMode.ExclusiveFullscreen +- uid: System.ComponentModel.InvalidEnumArgumentException + commentId: T:System.ComponentModel.InvalidEnumArgumentException isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.argumentoutofrangeexception - name: ArgumentOutOfRangeException - nameWithType: ArgumentOutOfRangeException - fullName: System.ArgumentOutOfRangeException + href: https://learn.microsoft.com/dotnet/api/system.componentmodel.invalidenumargumentexception + name: InvalidEnumArgumentException + nameWithType: InvalidEnumArgumentException + fullName: System.ComponentModel.InvalidEnumArgumentException - uid: OpenTK.Platform.Native.Windows.WindowComponent.SetMode* commentId: Overload:OpenTK.Platform.Native.Windows.WindowComponent.SetMode href: OpenTK.Platform.Native.Windows.WindowComponent.html#OpenTK_Platform_Native_Windows_WindowComponent_SetMode_OpenTK_Platform_WindowHandle_OpenTK_Platform_WindowMode_ @@ -4988,8 +5196,43 @@ references: name: DisplayHandle href: OpenTK.Platform.DisplayHandle.html - name: ) -- uid: OpenTK.Platform.Native.Windows.WindowComponent.GetBorderStyle* - commentId: Overload:OpenTK.Platform.Native.Windows.WindowComponent.GetBorderStyle +- uid: OpenTK.Platform.IWindowComponent.SetBorderStyle(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowBorderStyle) + commentId: M:OpenTK.Platform.IWindowComponent.SetBorderStyle(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowBorderStyle) + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetBorderStyle_OpenTK_Platform_WindowHandle_OpenTK_Platform_WindowBorderStyle_ + name: SetBorderStyle(WindowHandle, WindowBorderStyle) + nameWithType: IWindowComponent.SetBorderStyle(WindowHandle, WindowBorderStyle) + fullName: OpenTK.Platform.IWindowComponent.SetBorderStyle(OpenTK.Platform.WindowHandle, OpenTK.Platform.WindowBorderStyle) + spec.csharp: + - uid: OpenTK.Platform.IWindowComponent.SetBorderStyle(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowBorderStyle) + name: SetBorderStyle + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetBorderStyle_OpenTK_Platform_WindowHandle_OpenTK_Platform_WindowBorderStyle_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: OpenTK.Platform.WindowBorderStyle + name: WindowBorderStyle + href: OpenTK.Platform.WindowBorderStyle.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IWindowComponent.SetBorderStyle(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowBorderStyle) + name: SetBorderStyle + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetBorderStyle_OpenTK_Platform_WindowHandle_OpenTK_Platform_WindowBorderStyle_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: OpenTK.Platform.WindowBorderStyle + name: WindowBorderStyle + href: OpenTK.Platform.WindowBorderStyle.html + - name: ) +- uid: OpenTK.Platform.Native.Windows.WindowComponent.GetBorderStyle* + commentId: Overload:OpenTK.Platform.Native.Windows.WindowComponent.GetBorderStyle href: OpenTK.Platform.Native.Windows.WindowComponent.html#OpenTK_Platform_Native_Windows_WindowComponent_GetBorderStyle_OpenTK_Platform_WindowHandle_ name: GetBorderStyle nameWithType: WindowComponent.GetBorderStyle @@ -5032,40 +5275,216 @@ references: name: SetBorderStyle nameWithType: WindowComponent.SetBorderStyle fullName: OpenTK.Platform.Native.Windows.WindowComponent.SetBorderStyle -- uid: OpenTK.Platform.IWindowComponent.SetBorderStyle(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowBorderStyle) - commentId: M:OpenTK.Platform.IWindowComponent.SetBorderStyle(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowBorderStyle) +- uid: OpenTK.Platform.IWindowComponent.SetTransparencyMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowTransparencyMode,System.Single) + commentId: M:OpenTK.Platform.IWindowComponent.SetTransparencyMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowTransparencyMode,System.Single) parent: OpenTK.Platform.IWindowComponent - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetBorderStyle_OpenTK_Platform_WindowHandle_OpenTK_Platform_WindowBorderStyle_ - name: SetBorderStyle(WindowHandle, WindowBorderStyle) - nameWithType: IWindowComponent.SetBorderStyle(WindowHandle, WindowBorderStyle) - fullName: OpenTK.Platform.IWindowComponent.SetBorderStyle(OpenTK.Platform.WindowHandle, OpenTK.Platform.WindowBorderStyle) + isExternal: true + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetTransparencyMode_OpenTK_Platform_WindowHandle_OpenTK_Platform_WindowTransparencyMode_System_Single_ + name: SetTransparencyMode(WindowHandle, WindowTransparencyMode, float) + nameWithType: IWindowComponent.SetTransparencyMode(WindowHandle, WindowTransparencyMode, float) + fullName: OpenTK.Platform.IWindowComponent.SetTransparencyMode(OpenTK.Platform.WindowHandle, OpenTK.Platform.WindowTransparencyMode, float) + nameWithType.vb: IWindowComponent.SetTransparencyMode(WindowHandle, WindowTransparencyMode, Single) + fullName.vb: OpenTK.Platform.IWindowComponent.SetTransparencyMode(OpenTK.Platform.WindowHandle, OpenTK.Platform.WindowTransparencyMode, Single) + name.vb: SetTransparencyMode(WindowHandle, WindowTransparencyMode, Single) spec.csharp: - - uid: OpenTK.Platform.IWindowComponent.SetBorderStyle(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowBorderStyle) - name: SetBorderStyle - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetBorderStyle_OpenTK_Platform_WindowHandle_OpenTK_Platform_WindowBorderStyle_ + - uid: OpenTK.Platform.IWindowComponent.SetTransparencyMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowTransparencyMode,System.Single) + name: SetTransparencyMode + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetTransparencyMode_OpenTK_Platform_WindowHandle_OpenTK_Platform_WindowTransparencyMode_System_Single_ - name: ( - uid: OpenTK.Platform.WindowHandle name: WindowHandle href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - - uid: OpenTK.Platform.WindowBorderStyle - name: WindowBorderStyle - href: OpenTK.Platform.WindowBorderStyle.html + - uid: OpenTK.Platform.WindowTransparencyMode + name: WindowTransparencyMode + href: OpenTK.Platform.WindowTransparencyMode.html + - name: ',' + - name: " " + - uid: System.Single + name: float + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.single - name: ) spec.vb: - - uid: OpenTK.Platform.IWindowComponent.SetBorderStyle(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowBorderStyle) - name: SetBorderStyle - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetBorderStyle_OpenTK_Platform_WindowHandle_OpenTK_Platform_WindowBorderStyle_ + - uid: OpenTK.Platform.IWindowComponent.SetTransparencyMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowTransparencyMode,System.Single) + name: SetTransparencyMode + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetTransparencyMode_OpenTK_Platform_WindowHandle_OpenTK_Platform_WindowTransparencyMode_System_Single_ - name: ( - uid: OpenTK.Platform.WindowHandle name: WindowHandle href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - - uid: OpenTK.Platform.WindowBorderStyle - name: WindowBorderStyle - href: OpenTK.Platform.WindowBorderStyle.html + - uid: OpenTK.Platform.WindowTransparencyMode + name: WindowTransparencyMode + href: OpenTK.Platform.WindowTransparencyMode.html + - name: ',' + - name: " " + - uid: System.Single + name: Single + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.single + - name: ) +- uid: OpenTK.Platform.OpenGLGraphicsApiHints.SupportTransparentFramebufferX11 + commentId: P:OpenTK.Platform.OpenGLGraphicsApiHints.SupportTransparentFramebufferX11 + href: OpenTK.Platform.OpenGLGraphicsApiHints.html#OpenTK_Platform_OpenGLGraphicsApiHints_SupportTransparentFramebufferX11 + name: SupportTransparentFramebufferX11 + nameWithType: OpenGLGraphicsApiHints.SupportTransparentFramebufferX11 + fullName: OpenTK.Platform.OpenGLGraphicsApiHints.SupportTransparentFramebufferX11 +- uid: OpenTK.Platform.ContextValues.SupportsFramebufferTransparency + commentId: F:OpenTK.Platform.ContextValues.SupportsFramebufferTransparency + href: OpenTK.Platform.ContextValues.html#OpenTK_Platform_ContextValues_SupportsFramebufferTransparency + name: SupportsFramebufferTransparency + nameWithType: ContextValues.SupportsFramebufferTransparency + fullName: OpenTK.Platform.ContextValues.SupportsFramebufferTransparency +- uid: OpenTK.Platform.WindowTransparencyMode + commentId: T:OpenTK.Platform.WindowTransparencyMode + parent: OpenTK.Platform + href: OpenTK.Platform.WindowTransparencyMode.html + name: WindowTransparencyMode + nameWithType: WindowTransparencyMode + fullName: OpenTK.Platform.WindowTransparencyMode +- uid: OpenTK.Platform.WindowTransparencyMode.TransparentFramebuffer + commentId: F:OpenTK.Platform.WindowTransparencyMode.TransparentFramebuffer + href: OpenTK.Platform.WindowTransparencyMode.html#OpenTK_Platform_WindowTransparencyMode_TransparentFramebuffer + name: TransparentFramebuffer + nameWithType: WindowTransparencyMode.TransparentFramebuffer + fullName: OpenTK.Platform.WindowTransparencyMode.TransparentFramebuffer +- uid: OpenTK.Platform.ContextValues + commentId: T:OpenTK.Platform.ContextValues + parent: OpenTK.Platform + href: OpenTK.Platform.ContextValues.html + name: ContextValues + nameWithType: ContextValues + fullName: OpenTK.Platform.ContextValues +- uid: OpenTK.Platform.Native.Windows.WindowComponent.SupportsFramebufferTransparency* + commentId: Overload:OpenTK.Platform.Native.Windows.WindowComponent.SupportsFramebufferTransparency + href: OpenTK.Platform.Native.Windows.WindowComponent.html#OpenTK_Platform_Native_Windows_WindowComponent_SupportsFramebufferTransparency_OpenTK_Platform_WindowHandle_ + name: SupportsFramebufferTransparency + nameWithType: WindowComponent.SupportsFramebufferTransparency + fullName: OpenTK.Platform.Native.Windows.WindowComponent.SupportsFramebufferTransparency +- uid: OpenTK.Platform.IWindowComponent.SupportsFramebufferTransparency(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.SupportsFramebufferTransparency(OpenTK.Platform.WindowHandle) + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SupportsFramebufferTransparency_OpenTK_Platform_WindowHandle_ + name: SupportsFramebufferTransparency(WindowHandle) + nameWithType: IWindowComponent.SupportsFramebufferTransparency(WindowHandle) + fullName: OpenTK.Platform.IWindowComponent.SupportsFramebufferTransparency(OpenTK.Platform.WindowHandle) + spec.csharp: + - uid: OpenTK.Platform.IWindowComponent.SupportsFramebufferTransparency(OpenTK.Platform.WindowHandle) + name: SupportsFramebufferTransparency + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SupportsFramebufferTransparency_OpenTK_Platform_WindowHandle_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IWindowComponent.SupportsFramebufferTransparency(OpenTK.Platform.WindowHandle) + name: SupportsFramebufferTransparency + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SupportsFramebufferTransparency_OpenTK_Platform_WindowHandle_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ) +- uid: OpenTK.Platform.IWindowComponent.GetTransparencyMode(OpenTK.Platform.WindowHandle,System.Single@) + commentId: M:OpenTK.Platform.IWindowComponent.GetTransparencyMode(OpenTK.Platform.WindowHandle,System.Single@) + parent: OpenTK.Platform.IWindowComponent + isExternal: true + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetTransparencyMode_OpenTK_Platform_WindowHandle_System_Single__ + name: GetTransparencyMode(WindowHandle, out float) + nameWithType: IWindowComponent.GetTransparencyMode(WindowHandle, out float) + fullName: OpenTK.Platform.IWindowComponent.GetTransparencyMode(OpenTK.Platform.WindowHandle, out float) + nameWithType.vb: IWindowComponent.GetTransparencyMode(WindowHandle, Single) + fullName.vb: OpenTK.Platform.IWindowComponent.GetTransparencyMode(OpenTK.Platform.WindowHandle, Single) + name.vb: GetTransparencyMode(WindowHandle, Single) + spec.csharp: + - uid: OpenTK.Platform.IWindowComponent.GetTransparencyMode(OpenTK.Platform.WindowHandle,System.Single@) + name: GetTransparencyMode + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetTransparencyMode_OpenTK_Platform_WindowHandle_System_Single__ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - name: out + - name: " " + - uid: System.Single + name: float + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.single + - name: ) + spec.vb: + - uid: OpenTK.Platform.IWindowComponent.GetTransparencyMode(OpenTK.Platform.WindowHandle,System.Single@) + name: GetTransparencyMode + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetTransparencyMode_OpenTK_Platform_WindowHandle_System_Single__ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: System.Single + name: Single + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.single + - name: ) +- uid: OpenTK.Platform.WindowTransparencyMode.TransparentWindow + commentId: F:OpenTK.Platform.WindowTransparencyMode.TransparentWindow + href: OpenTK.Platform.WindowTransparencyMode.html#OpenTK_Platform_WindowTransparencyMode_TransparentWindow + name: TransparentWindow + nameWithType: WindowTransparencyMode.TransparentWindow + fullName: OpenTK.Platform.WindowTransparencyMode.TransparentWindow +- uid: OpenTK.Platform.Native.Windows.WindowComponent.SetTransparencyMode* + commentId: Overload:OpenTK.Platform.Native.Windows.WindowComponent.SetTransparencyMode + href: OpenTK.Platform.Native.Windows.WindowComponent.html#OpenTK_Platform_Native_Windows_WindowComponent_SetTransparencyMode_OpenTK_Platform_WindowHandle_OpenTK_Platform_WindowTransparencyMode_System_Single_ + name: SetTransparencyMode + nameWithType: WindowComponent.SetTransparencyMode + fullName: OpenTK.Platform.Native.Windows.WindowComponent.SetTransparencyMode +- uid: System.Single + commentId: T:System.Single + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.single + name: float + nameWithType: float + fullName: float + nameWithType.vb: Single + fullName.vb: Single + name.vb: Single +- uid: OpenTK.Platform.Native.Windows.WindowComponent.GetTransparencyMode* + commentId: Overload:OpenTK.Platform.Native.Windows.WindowComponent.GetTransparencyMode + href: OpenTK.Platform.Native.Windows.WindowComponent.html#OpenTK_Platform_Native_Windows_WindowComponent_GetTransparencyMode_OpenTK_Platform_WindowHandle_System_Single__ + name: GetTransparencyMode + nameWithType: WindowComponent.GetTransparencyMode + fullName: OpenTK.Platform.Native.Windows.WindowComponent.GetTransparencyMode +- uid: OpenTK.Platform.IWindowComponent.IsAlwaysOnTop(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.IsAlwaysOnTop(OpenTK.Platform.WindowHandle) + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_IsAlwaysOnTop_OpenTK_Platform_WindowHandle_ + name: IsAlwaysOnTop(WindowHandle) + nameWithType: IWindowComponent.IsAlwaysOnTop(WindowHandle) + fullName: OpenTK.Platform.IWindowComponent.IsAlwaysOnTop(OpenTK.Platform.WindowHandle) + spec.csharp: + - uid: OpenTK.Platform.IWindowComponent.IsAlwaysOnTop(OpenTK.Platform.WindowHandle) + name: IsAlwaysOnTop + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_IsAlwaysOnTop_OpenTK_Platform_WindowHandle_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IWindowComponent.IsAlwaysOnTop(OpenTK.Platform.WindowHandle) + name: IsAlwaysOnTop + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_IsAlwaysOnTop_OpenTK_Platform_WindowHandle_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html - name: ) - uid: OpenTK.Platform.Native.Windows.WindowComponent.SetAlwaysOnTop* commentId: Overload:OpenTK.Platform.Native.Windows.WindowComponent.SetAlwaysOnTop @@ -5120,31 +5539,20 @@ references: name: IsAlwaysOnTop nameWithType: WindowComponent.IsAlwaysOnTop fullName: OpenTK.Platform.Native.Windows.WindowComponent.IsAlwaysOnTop -- uid: OpenTK.Platform.IWindowComponent.IsAlwaysOnTop(OpenTK.Platform.WindowHandle) - commentId: M:OpenTK.Platform.IWindowComponent.IsAlwaysOnTop(OpenTK.Platform.WindowHandle) - parent: OpenTK.Platform.IWindowComponent - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_IsAlwaysOnTop_OpenTK_Platform_WindowHandle_ - name: IsAlwaysOnTop(WindowHandle) - nameWithType: IWindowComponent.IsAlwaysOnTop(WindowHandle) - fullName: OpenTK.Platform.IWindowComponent.IsAlwaysOnTop(OpenTK.Platform.WindowHandle) - spec.csharp: - - uid: OpenTK.Platform.IWindowComponent.IsAlwaysOnTop(OpenTK.Platform.WindowHandle) - name: IsAlwaysOnTop - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_IsAlwaysOnTop_OpenTK_Platform_WindowHandle_ - - name: ( - - uid: OpenTK.Platform.WindowHandle - name: WindowHandle - href: OpenTK.Platform.WindowHandle.html - - name: ) - spec.vb: - - uid: OpenTK.Platform.IWindowComponent.IsAlwaysOnTop(OpenTK.Platform.WindowHandle) - name: IsAlwaysOnTop - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_IsAlwaysOnTop_OpenTK_Platform_WindowHandle_ - - name: ( - - uid: OpenTK.Platform.WindowHandle - name: WindowHandle - href: OpenTK.Platform.WindowHandle.html - - name: ) +- uid: OpenTK.Platform.HitTest + commentId: T:OpenTK.Platform.HitTest + parent: OpenTK.Platform + href: OpenTK.Platform.HitTest.html + name: HitTest + nameWithType: HitTest + fullName: OpenTK.Platform.HitTest +- uid: OpenTK.Platform.HitType + commentId: T:OpenTK.Platform.HitType + parent: OpenTK.Platform + href: OpenTK.Platform.HitType.html + name: HitType + nameWithType: HitType + fullName: OpenTK.Platform.HitType - uid: OpenTK.Platform.Native.Windows.WindowComponent.SetHitTestCallback* commentId: Overload:OpenTK.Platform.Native.Windows.WindowComponent.SetHitTestCallback href: OpenTK.Platform.Native.Windows.WindowComponent.html#OpenTK_Platform_Native_Windows_WindowComponent_SetHitTestCallback_OpenTK_Platform_WindowHandle_OpenTK_Platform_HitTest_ @@ -5186,13 +5594,6 @@ references: name: HitTest href: OpenTK.Platform.HitTest.html - name: ) -- uid: OpenTK.Platform.HitTest - commentId: T:OpenTK.Platform.HitTest - parent: OpenTK.Platform - href: OpenTK.Platform.HitTest.html - name: HitTest - nameWithType: HitTest - fullName: OpenTK.Platform.HitTest - uid: OpenTK.Platform.Native.Windows.WindowComponent.SetCursor* commentId: Overload:OpenTK.Platform.Native.Windows.WindowComponent.SetCursor href: OpenTK.Platform.Native.Windows.WindowComponent.html#OpenTK_Platform_Native_Windows_WindowComponent_SetCursor_OpenTK_Platform_WindowHandle_OpenTK_Platform_CursorHandle_ @@ -5250,6 +5651,56 @@ references: name: SetCursorCaptureMode nameWithType: WindowComponent.SetCursorCaptureMode fullName: OpenTK.Platform.Native.Windows.WindowComponent.SetCursorCaptureMode +- uid: OpenTK.Platform.IWindowComponent.FocusWindow(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.FocusWindow(OpenTK.Platform.WindowHandle) + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_FocusWindow_OpenTK_Platform_WindowHandle_ + name: FocusWindow(WindowHandle) + nameWithType: IWindowComponent.FocusWindow(WindowHandle) + fullName: OpenTK.Platform.IWindowComponent.FocusWindow(OpenTK.Platform.WindowHandle) + spec.csharp: + - uid: OpenTK.Platform.IWindowComponent.FocusWindow(OpenTK.Platform.WindowHandle) + name: FocusWindow + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_FocusWindow_OpenTK_Platform_WindowHandle_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IWindowComponent.FocusWindow(OpenTK.Platform.WindowHandle) + name: FocusWindow + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_FocusWindow_OpenTK_Platform_WindowHandle_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ) +- uid: OpenTK.Platform.IWindowComponent.RequestAttention(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.RequestAttention(OpenTK.Platform.WindowHandle) + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_RequestAttention_OpenTK_Platform_WindowHandle_ + name: RequestAttention(WindowHandle) + nameWithType: IWindowComponent.RequestAttention(WindowHandle) + fullName: OpenTK.Platform.IWindowComponent.RequestAttention(OpenTK.Platform.WindowHandle) + spec.csharp: + - uid: OpenTK.Platform.IWindowComponent.RequestAttention(OpenTK.Platform.WindowHandle) + name: RequestAttention + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_RequestAttention_OpenTK_Platform_WindowHandle_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IWindowComponent.RequestAttention(OpenTK.Platform.WindowHandle) + name: RequestAttention + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_RequestAttention_OpenTK_Platform_WindowHandle_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ) - uid: OpenTK.Platform.Native.Windows.WindowComponent.IsFocused* commentId: Overload:OpenTK.Platform.Native.Windows.WindowComponent.IsFocused href: OpenTK.Platform.Native.Windows.WindowComponent.html#OpenTK_Platform_Native_Windows_WindowComponent_IsFocused_OpenTK_Platform_WindowHandle_ @@ -5287,236 +5738,243 @@ references: name: FocusWindow nameWithType: WindowComponent.FocusWindow fullName: OpenTK.Platform.Native.Windows.WindowComponent.FocusWindow -- uid: OpenTK.Platform.IWindowComponent.FocusWindow(OpenTK.Platform.WindowHandle) - commentId: M:OpenTK.Platform.IWindowComponent.FocusWindow(OpenTK.Platform.WindowHandle) +- uid: OpenTK.Platform.Native.Windows.WindowComponent.RequestAttention* + commentId: Overload:OpenTK.Platform.Native.Windows.WindowComponent.RequestAttention + href: OpenTK.Platform.Native.Windows.WindowComponent.html#OpenTK_Platform_Native_Windows_WindowComponent_RequestAttention_OpenTK_Platform_WindowHandle_ + name: RequestAttention + nameWithType: WindowComponent.RequestAttention + fullName: OpenTK.Platform.Native.Windows.WindowComponent.RequestAttention +- uid: OpenTK.Platform.IWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + commentId: M:OpenTK.Platform.IWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) parent: OpenTK.Platform.IWindowComponent - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_FocusWindow_OpenTK_Platform_WindowHandle_ - name: FocusWindow(WindowHandle) - nameWithType: IWindowComponent.FocusWindow(WindowHandle) - fullName: OpenTK.Platform.IWindowComponent.FocusWindow(OpenTK.Platform.WindowHandle) + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_ClientToScreen_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2_OpenTK_Mathematics_Vector2__ + name: ClientToScreen(WindowHandle, Vector2, out Vector2) + nameWithType: IWindowComponent.ClientToScreen(WindowHandle, Vector2, out Vector2) + fullName: OpenTK.Platform.IWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2, out OpenTK.Mathematics.Vector2) + nameWithType.vb: IWindowComponent.ClientToScreen(WindowHandle, Vector2, Vector2) + fullName.vb: OpenTK.Platform.IWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2, OpenTK.Mathematics.Vector2) + name.vb: ClientToScreen(WindowHandle, Vector2, Vector2) spec.csharp: - - uid: OpenTK.Platform.IWindowComponent.FocusWindow(OpenTK.Platform.WindowHandle) - name: FocusWindow - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_FocusWindow_OpenTK_Platform_WindowHandle_ + - uid: OpenTK.Platform.IWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + name: ClientToScreen + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_ClientToScreen_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2_OpenTK_Mathematics_Vector2__ - name: ( - uid: OpenTK.Platform.WindowHandle name: WindowHandle href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: OpenTK.Mathematics.Vector2 + name: Vector2 + href: OpenTK.Mathematics.Vector2.html + - name: ',' + - name: " " + - name: out + - name: " " + - uid: OpenTK.Mathematics.Vector2 + name: Vector2 + href: OpenTK.Mathematics.Vector2.html - name: ) spec.vb: - - uid: OpenTK.Platform.IWindowComponent.FocusWindow(OpenTK.Platform.WindowHandle) - name: FocusWindow - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_FocusWindow_OpenTK_Platform_WindowHandle_ + - uid: OpenTK.Platform.IWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + name: ClientToScreen + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_ClientToScreen_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2_OpenTK_Mathematics_Vector2__ - name: ( - uid: OpenTK.Platform.WindowHandle name: WindowHandle href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: OpenTK.Mathematics.Vector2 + name: Vector2 + href: OpenTK.Mathematics.Vector2.html + - name: ',' + - name: " " + - uid: OpenTK.Mathematics.Vector2 + name: Vector2 + href: OpenTK.Mathematics.Vector2.html - name: ) -- uid: OpenTK.Platform.Native.Windows.WindowComponent.RequestAttention* - commentId: Overload:OpenTK.Platform.Native.Windows.WindowComponent.RequestAttention - href: OpenTK.Platform.Native.Windows.WindowComponent.html#OpenTK_Platform_Native_Windows_WindowComponent_RequestAttention_OpenTK_Platform_WindowHandle_ - name: RequestAttention - nameWithType: WindowComponent.RequestAttention - fullName: OpenTK.Platform.Native.Windows.WindowComponent.RequestAttention -- uid: OpenTK.Platform.IWindowComponent.RequestAttention(OpenTK.Platform.WindowHandle) - commentId: M:OpenTK.Platform.IWindowComponent.RequestAttention(OpenTK.Platform.WindowHandle) +- uid: OpenTK.Platform.IWindowComponent.ClientToFramebuffer(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + commentId: M:OpenTK.Platform.IWindowComponent.ClientToFramebuffer(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) parent: OpenTK.Platform.IWindowComponent - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_RequestAttention_OpenTK_Platform_WindowHandle_ - name: RequestAttention(WindowHandle) - nameWithType: IWindowComponent.RequestAttention(WindowHandle) - fullName: OpenTK.Platform.IWindowComponent.RequestAttention(OpenTK.Platform.WindowHandle) + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_ClientToFramebuffer_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2_OpenTK_Mathematics_Vector2__ + name: ClientToFramebuffer(WindowHandle, Vector2, out Vector2) + nameWithType: IWindowComponent.ClientToFramebuffer(WindowHandle, Vector2, out Vector2) + fullName: OpenTK.Platform.IWindowComponent.ClientToFramebuffer(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2, out OpenTK.Mathematics.Vector2) + nameWithType.vb: IWindowComponent.ClientToFramebuffer(WindowHandle, Vector2, Vector2) + fullName.vb: OpenTK.Platform.IWindowComponent.ClientToFramebuffer(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2, OpenTK.Mathematics.Vector2) + name.vb: ClientToFramebuffer(WindowHandle, Vector2, Vector2) spec.csharp: - - uid: OpenTK.Platform.IWindowComponent.RequestAttention(OpenTK.Platform.WindowHandle) - name: RequestAttention - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_RequestAttention_OpenTK_Platform_WindowHandle_ + - uid: OpenTK.Platform.IWindowComponent.ClientToFramebuffer(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + name: ClientToFramebuffer + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_ClientToFramebuffer_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2_OpenTK_Mathematics_Vector2__ - name: ( - uid: OpenTK.Platform.WindowHandle name: WindowHandle href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: OpenTK.Mathematics.Vector2 + name: Vector2 + href: OpenTK.Mathematics.Vector2.html + - name: ',' + - name: " " + - name: out + - name: " " + - uid: OpenTK.Mathematics.Vector2 + name: Vector2 + href: OpenTK.Mathematics.Vector2.html - name: ) spec.vb: - - uid: OpenTK.Platform.IWindowComponent.RequestAttention(OpenTK.Platform.WindowHandle) - name: RequestAttention - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_RequestAttention_OpenTK_Platform_WindowHandle_ + - uid: OpenTK.Platform.IWindowComponent.ClientToFramebuffer(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + name: ClientToFramebuffer + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_ClientToFramebuffer_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2_OpenTK_Mathematics_Vector2__ - name: ( - uid: OpenTK.Platform.WindowHandle name: WindowHandle href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: OpenTK.Mathematics.Vector2 + name: Vector2 + href: OpenTK.Mathematics.Vector2.html + - name: ',' + - name: " " + - uid: OpenTK.Mathematics.Vector2 + name: Vector2 + href: OpenTK.Mathematics.Vector2.html - name: ) - uid: OpenTK.Platform.Native.Windows.WindowComponent.ScreenToClient* commentId: Overload:OpenTK.Platform.Native.Windows.WindowComponent.ScreenToClient - href: OpenTK.Platform.Native.Windows.WindowComponent.html#OpenTK_Platform_Native_Windows_WindowComponent_ScreenToClient_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_System_Int32__System_Int32__ + href: OpenTK.Platform.Native.Windows.WindowComponent.html#OpenTK_Platform_Native_Windows_WindowComponent_ScreenToClient_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2_OpenTK_Mathematics_Vector2__ name: ScreenToClient nameWithType: WindowComponent.ScreenToClient fullName: OpenTK.Platform.Native.Windows.WindowComponent.ScreenToClient -- uid: OpenTK.Platform.IWindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) - commentId: M:OpenTK.Platform.IWindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) +- uid: OpenTK.Platform.IWindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + commentId: M:OpenTK.Platform.IWindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) parent: OpenTK.Platform.IWindowComponent - isExternal: true - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_ScreenToClient_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_System_Int32__System_Int32__ - name: ScreenToClient(WindowHandle, int, int, out int, out int) - nameWithType: IWindowComponent.ScreenToClient(WindowHandle, int, int, out int, out int) - fullName: OpenTK.Platform.IWindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle, int, int, out int, out int) - nameWithType.vb: IWindowComponent.ScreenToClient(WindowHandle, Integer, Integer, Integer, Integer) - fullName.vb: OpenTK.Platform.IWindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle, Integer, Integer, Integer, Integer) - name.vb: ScreenToClient(WindowHandle, Integer, Integer, Integer, Integer) + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_ScreenToClient_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2_OpenTK_Mathematics_Vector2__ + name: ScreenToClient(WindowHandle, Vector2, out Vector2) + nameWithType: IWindowComponent.ScreenToClient(WindowHandle, Vector2, out Vector2) + fullName: OpenTK.Platform.IWindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2, out OpenTK.Mathematics.Vector2) + nameWithType.vb: IWindowComponent.ScreenToClient(WindowHandle, Vector2, Vector2) + fullName.vb: OpenTK.Platform.IWindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2, OpenTK.Mathematics.Vector2) + name.vb: ScreenToClient(WindowHandle, Vector2, Vector2) spec.csharp: - - uid: OpenTK.Platform.IWindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) + - uid: OpenTK.Platform.IWindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) name: ScreenToClient - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_ScreenToClient_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_ScreenToClient_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2_OpenTK_Mathematics_Vector2__ - name: ( - uid: OpenTK.Platform.WindowHandle name: WindowHandle href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 + - uid: OpenTK.Mathematics.Vector2 + name: Vector2 + href: OpenTK.Mathematics.Vector2.html - name: ',' - name: " " - name: out - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - name: out - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 + - uid: OpenTK.Mathematics.Vector2 + name: Vector2 + href: OpenTK.Mathematics.Vector2.html - name: ) spec.vb: - - uid: OpenTK.Platform.IWindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) + - uid: OpenTK.Platform.IWindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) name: ScreenToClient - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_ScreenToClient_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_ScreenToClient_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2_OpenTK_Mathematics_Vector2__ - name: ( - uid: OpenTK.Platform.WindowHandle name: WindowHandle href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 + - uid: OpenTK.Mathematics.Vector2 + name: Vector2 + href: OpenTK.Mathematics.Vector2.html - name: ',' - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 + - uid: OpenTK.Mathematics.Vector2 + name: Vector2 + href: OpenTK.Mathematics.Vector2.html - name: ) +- uid: OpenTK.Mathematics.Vector2 + commentId: T:OpenTK.Mathematics.Vector2 + parent: OpenTK.Mathematics + href: OpenTK.Mathematics.Vector2.html + name: Vector2 + nameWithType: Vector2 + fullName: OpenTK.Mathematics.Vector2 - uid: OpenTK.Platform.Native.Windows.WindowComponent.ClientToScreen* commentId: Overload:OpenTK.Platform.Native.Windows.WindowComponent.ClientToScreen - href: OpenTK.Platform.Native.Windows.WindowComponent.html#OpenTK_Platform_Native_Windows_WindowComponent_ClientToScreen_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_System_Int32__System_Int32__ + href: OpenTK.Platform.Native.Windows.WindowComponent.html#OpenTK_Platform_Native_Windows_WindowComponent_ClientToScreen_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2_OpenTK_Mathematics_Vector2__ name: ClientToScreen nameWithType: WindowComponent.ClientToScreen fullName: OpenTK.Platform.Native.Windows.WindowComponent.ClientToScreen -- uid: OpenTK.Platform.IWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) - commentId: M:OpenTK.Platform.IWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) +- uid: OpenTK.Platform.IWindowComponent.FramebufferToClient(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + commentId: M:OpenTK.Platform.IWindowComponent.FramebufferToClient(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) parent: OpenTK.Platform.IWindowComponent - isExternal: true - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_ClientToScreen_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_System_Int32__System_Int32__ - name: ClientToScreen(WindowHandle, int, int, out int, out int) - nameWithType: IWindowComponent.ClientToScreen(WindowHandle, int, int, out int, out int) - fullName: OpenTK.Platform.IWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle, int, int, out int, out int) - nameWithType.vb: IWindowComponent.ClientToScreen(WindowHandle, Integer, Integer, Integer, Integer) - fullName.vb: OpenTK.Platform.IWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle, Integer, Integer, Integer, Integer) - name.vb: ClientToScreen(WindowHandle, Integer, Integer, Integer, Integer) + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_FramebufferToClient_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2_OpenTK_Mathematics_Vector2__ + name: FramebufferToClient(WindowHandle, Vector2, out Vector2) + nameWithType: IWindowComponent.FramebufferToClient(WindowHandle, Vector2, out Vector2) + fullName: OpenTK.Platform.IWindowComponent.FramebufferToClient(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2, out OpenTK.Mathematics.Vector2) + nameWithType.vb: IWindowComponent.FramebufferToClient(WindowHandle, Vector2, Vector2) + fullName.vb: OpenTK.Platform.IWindowComponent.FramebufferToClient(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2, OpenTK.Mathematics.Vector2) + name.vb: FramebufferToClient(WindowHandle, Vector2, Vector2) spec.csharp: - - uid: OpenTK.Platform.IWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) - name: ClientToScreen - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_ClientToScreen_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_System_Int32__System_Int32__ + - uid: OpenTK.Platform.IWindowComponent.FramebufferToClient(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + name: FramebufferToClient + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_FramebufferToClient_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2_OpenTK_Mathematics_Vector2__ - name: ( - uid: OpenTK.Platform.WindowHandle name: WindowHandle href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - name: out - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 + - uid: OpenTK.Mathematics.Vector2 + name: Vector2 + href: OpenTK.Mathematics.Vector2.html - name: ',' - name: " " - name: out - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 + - uid: OpenTK.Mathematics.Vector2 + name: Vector2 + href: OpenTK.Mathematics.Vector2.html - name: ) spec.vb: - - uid: OpenTK.Platform.IWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) - name: ClientToScreen - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_ClientToScreen_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_System_Int32__System_Int32__ + - uid: OpenTK.Platform.IWindowComponent.FramebufferToClient(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + name: FramebufferToClient + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_FramebufferToClient_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2_OpenTK_Mathematics_Vector2__ - name: ( - uid: OpenTK.Platform.WindowHandle name: WindowHandle href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 + - uid: OpenTK.Mathematics.Vector2 + name: Vector2 + href: OpenTK.Mathematics.Vector2.html - name: ',' - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 + - uid: OpenTK.Mathematics.Vector2 + name: Vector2 + href: OpenTK.Mathematics.Vector2.html - name: ) +- uid: OpenTK.Platform.Native.Windows.WindowComponent.ClientToFramebuffer* + commentId: Overload:OpenTK.Platform.Native.Windows.WindowComponent.ClientToFramebuffer + href: OpenTK.Platform.Native.Windows.WindowComponent.html#OpenTK_Platform_Native_Windows_WindowComponent_ClientToFramebuffer_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2_OpenTK_Mathematics_Vector2__ + name: ClientToFramebuffer + nameWithType: WindowComponent.ClientToFramebuffer + fullName: OpenTK.Platform.Native.Windows.WindowComponent.ClientToFramebuffer +- uid: OpenTK.Platform.Native.Windows.WindowComponent.FramebufferToClient* + commentId: Overload:OpenTK.Platform.Native.Windows.WindowComponent.FramebufferToClient + href: OpenTK.Platform.Native.Windows.WindowComponent.html#OpenTK_Platform_Native_Windows_WindowComponent_FramebufferToClient_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2_OpenTK_Mathematics_Vector2__ + name: FramebufferToClient + nameWithType: WindowComponent.FramebufferToClient + fullName: OpenTK.Platform.Native.Windows.WindowComponent.FramebufferToClient - uid: OpenTK.Platform.WindowScaleChangeEventArgs commentId: T:OpenTK.Platform.WindowScaleChangeEventArgs href: OpenTK.Platform.WindowScaleChangeEventArgs.html @@ -5586,17 +6044,6 @@ references: isExternal: true href: https://learn.microsoft.com/dotnet/api/system.single - name: ) -- uid: System.Single - commentId: T:System.Single - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.single - name: float - nameWithType: float - fullName: float - nameWithType.vb: Single - fullName.vb: Single - name.vb: Single - uid: OpenTK.Platform.Native.Windows.WindowComponent.GetHWND* commentId: Overload:OpenTK.Platform.Native.Windows.WindowComponent.GetHWND href: OpenTK.Platform.Native.Windows.WindowComponent.html#OpenTK_Platform_Native_Windows_WindowComponent_GetHWND_OpenTK_Platform_WindowHandle_ diff --git a/api/OpenTK.Platform.Native.Windows.yml b/api/OpenTK.Platform.Native.Windows.yml index a16149e7..46e25456 100644 --- a/api/OpenTK.Platform.Native.Windows.yml +++ b/api/OpenTK.Platform.Native.Windows.yml @@ -14,7 +14,7 @@ items: - OpenTK.Platform.Native.Windows.MouseComponent - OpenTK.Platform.Native.Windows.OpenGLComponent - OpenTK.Platform.Native.Windows.ShellComponent - - OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce + - OpenTK.Platform.Native.Windows.ShellComponent.CornerPreference - OpenTK.Platform.Native.Windows.WindowComponent langs: - csharp @@ -86,29 +86,29 @@ references: name: ShellComponent nameWithType: ShellComponent fullName: OpenTK.Platform.Native.Windows.ShellComponent -- uid: OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce - commentId: T:OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce +- uid: OpenTK.Platform.Native.Windows.ShellComponent.CornerPreference + commentId: T:OpenTK.Platform.Native.Windows.ShellComponent.CornerPreference parent: OpenTK.Platform.Native.Windows href: OpenTK.Platform.Native.Windows.ShellComponent.html - name: ShellComponent.CornerPrefernce - nameWithType: ShellComponent.CornerPrefernce - fullName: OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce + name: ShellComponent.CornerPreference + nameWithType: ShellComponent.CornerPreference + fullName: OpenTK.Platform.Native.Windows.ShellComponent.CornerPreference spec.csharp: - uid: OpenTK.Platform.Native.Windows.ShellComponent name: ShellComponent href: OpenTK.Platform.Native.Windows.ShellComponent.html - name: . - - uid: OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce - name: CornerPrefernce - href: OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce.html + - uid: OpenTK.Platform.Native.Windows.ShellComponent.CornerPreference + name: CornerPreference + href: OpenTK.Platform.Native.Windows.ShellComponent.CornerPreference.html spec.vb: - uid: OpenTK.Platform.Native.Windows.ShellComponent name: ShellComponent href: OpenTK.Platform.Native.Windows.ShellComponent.html - name: . - - uid: OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce - name: CornerPrefernce - href: OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce.html + - uid: OpenTK.Platform.Native.Windows.ShellComponent.CornerPreference + name: CornerPreference + href: OpenTK.Platform.Native.Windows.ShellComponent.CornerPreference.html - uid: OpenTK.Platform.Native.Windows.WindowComponent commentId: T:OpenTK.Platform.Native.Windows.WindowComponent href: OpenTK.Platform.Native.Windows.WindowComponent.html diff --git a/api/OpenTK.Graphics.Glx.GLXHyperpipeNetworkSGIX.yml b/api/OpenTK.Platform.Native.X11.LibXcb.yml similarity index 52% rename from api/OpenTK.Graphics.Glx.GLXHyperpipeNetworkSGIX.yml rename to api/OpenTK.Platform.Native.X11.LibXcb.yml index 8e95c548..257b67a7 100644 --- a/api/OpenTK.Graphics.Glx.GLXHyperpipeNetworkSGIX.yml +++ b/api/OpenTK.Platform.Native.X11.LibXcb.yml @@ -1,129 +1,103 @@ ### YamlMime:ManagedReference items: -- uid: OpenTK.Graphics.Glx.GLXHyperpipeNetworkSGIX - commentId: T:OpenTK.Graphics.Glx.GLXHyperpipeNetworkSGIX - id: GLXHyperpipeNetworkSGIX - parent: OpenTK.Graphics.Glx - children: - - OpenTK.Graphics.Glx.GLXHyperpipeNetworkSGIX.NetworkId - - OpenTK.Graphics.Glx.GLXHyperpipeNetworkSGIX.PipeName +- uid: OpenTK.Platform.Native.X11.LibXcb + commentId: T:OpenTK.Platform.Native.X11.LibXcb + id: LibXcb + parent: OpenTK.Platform.Native.X11 + children: [] langs: - csharp - vb - name: GLXHyperpipeNetworkSGIX - nameWithType: GLXHyperpipeNetworkSGIX - fullName: OpenTK.Graphics.Glx.GLXHyperpipeNetworkSGIX - type: Struct + name: LibXcb + nameWithType: LibXcb + fullName: OpenTK.Platform.Native.X11.LibXcb + type: Class source: - id: GLXHyperpipeNetworkSGIX - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 517 + id: LibXcb + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\LibXcb.cs + startLine: 5 assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx + - OpenTK.Platform + namespace: OpenTK.Platform.Native.X11 syntax: - content: public struct GLXHyperpipeNetworkSGIX - content.vb: Public Structure GLXHyperpipeNetworkSGIX + content: public static class LibXcb + content.vb: Public Module LibXcb + inheritance: + - System.Object inheritedMembers: - - System.ValueType.Equals(System.Object) - - System.ValueType.GetHashCode - - System.ValueType.ToString + - System.Object.Equals(System.Object) - System.Object.Equals(System.Object,System.Object) + - System.Object.GetHashCode - System.Object.GetType + - System.Object.MemberwiseClone - System.Object.ReferenceEquals(System.Object,System.Object) -- uid: OpenTK.Graphics.Glx.GLXHyperpipeNetworkSGIX.PipeName - commentId: F:OpenTK.Graphics.Glx.GLXHyperpipeNetworkSGIX.PipeName - id: PipeName - parent: OpenTK.Graphics.Glx.GLXHyperpipeNetworkSGIX - langs: - - csharp - - vb - name: PipeName - nameWithType: GLXHyperpipeNetworkSGIX.PipeName - fullName: OpenTK.Graphics.Glx.GLXHyperpipeNetworkSGIX.PipeName - type: Field - source: - id: PipeName - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 519 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: public byte* PipeName - return: - type: System.Byte* - content.vb: Public PipeName As Byte* -- uid: OpenTK.Graphics.Glx.GLXHyperpipeNetworkSGIX.NetworkId - commentId: F:OpenTK.Graphics.Glx.GLXHyperpipeNetworkSGIX.NetworkId - id: NetworkId - parent: OpenTK.Graphics.Glx.GLXHyperpipeNetworkSGIX - langs: - - csharp - - vb - name: NetworkId - nameWithType: GLXHyperpipeNetworkSGIX.NetworkId - fullName: OpenTK.Graphics.Glx.GLXHyperpipeNetworkSGIX.NetworkId - type: Field - source: - id: NetworkId - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 520 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Glx - syntax: - content: public int NetworkId - return: - type: System.Int32 - content.vb: Public NetworkId As Integer + - System.Object.ToString references: -- uid: OpenTK.Graphics.Glx - commentId: N:OpenTK.Graphics.Glx +- uid: OpenTK.Platform.Native.X11 + commentId: N:OpenTK.Platform.Native.X11 href: OpenTK.html - name: OpenTK.Graphics.Glx - nameWithType: OpenTK.Graphics.Glx - fullName: OpenTK.Graphics.Glx + name: OpenTK.Platform.Native.X11 + nameWithType: OpenTK.Platform.Native.X11 + fullName: OpenTK.Platform.Native.X11 spec.csharp: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html + - uid: OpenTK.Platform + name: Platform + href: OpenTK.Platform.html + - name: . + - uid: OpenTK.Platform.Native + name: Native + href: OpenTK.Platform.Native.html - name: . - - uid: OpenTK.Graphics.Glx - name: Glx - href: OpenTK.Graphics.Glx.html + - uid: OpenTK.Platform.Native.X11 + name: X11 + href: OpenTK.Platform.Native.X11.html spec.vb: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html + - uid: OpenTK.Platform + name: Platform + href: OpenTK.Platform.html - name: . - - uid: OpenTK.Graphics.Glx - name: Glx - href: OpenTK.Graphics.Glx.html -- uid: System.ValueType.Equals(System.Object) - commentId: M:System.ValueType.Equals(System.Object) - parent: System.ValueType + - uid: OpenTK.Platform.Native + name: Native + href: OpenTK.Platform.Native.html + - name: . + - uid: OpenTK.Platform.Native.X11 + name: X11 + href: OpenTK.Platform.Native.X11.html +- uid: System.Object + commentId: T:System.Object + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + name: object + nameWithType: object + fullName: object + nameWithType.vb: Object + fullName.vb: Object + name.vb: Object +- uid: System.Object.Equals(System.Object) + commentId: M:System.Object.Equals(System.Object) + parent: System.Object isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) name: Equals(object) - nameWithType: ValueType.Equals(object) - fullName: System.ValueType.Equals(object) - nameWithType.vb: ValueType.Equals(Object) - fullName.vb: System.ValueType.Equals(Object) + nameWithType: object.Equals(object) + fullName: object.Equals(object) + nameWithType.vb: Object.Equals(Object) + fullName.vb: Object.Equals(Object) name.vb: Equals(Object) spec.csharp: - - uid: System.ValueType.Equals(System.Object) + - uid: System.Object.Equals(System.Object) name: Equals isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - name: ( - uid: System.Object name: object @@ -131,60 +105,16 @@ references: href: https://learn.microsoft.com/dotnet/api/system.object - name: ) spec.vb: - - uid: System.ValueType.Equals(System.Object) + - uid: System.Object.Equals(System.Object) name: Equals isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - name: ( - uid: System.Object name: Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ) -- uid: System.ValueType.GetHashCode - commentId: M:System.ValueType.GetHashCode - parent: System.ValueType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - name: GetHashCode() - nameWithType: ValueType.GetHashCode() - fullName: System.ValueType.GetHashCode() - spec.csharp: - - uid: System.ValueType.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - - name: ( - - name: ) - spec.vb: - - uid: System.ValueType.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - - name: ( - - name: ) -- uid: System.ValueType.ToString - commentId: M:System.ValueType.ToString - parent: System.ValueType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - name: ToString() - nameWithType: ValueType.ToString() - fullName: System.ValueType.ToString() - spec.csharp: - - uid: System.ValueType.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - - name: ( - - name: ) - spec.vb: - - uid: System.ValueType.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - - name: ( - - name: ) - uid: System.Object.Equals(System.Object,System.Object) commentId: M:System.Object.Equals(System.Object,System.Object) parent: System.Object @@ -230,6 +160,30 @@ references: isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ) +- uid: System.Object.GetHashCode + commentId: M:System.Object.GetHashCode + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + name: GetHashCode() + nameWithType: object.GetHashCode() + fullName: object.GetHashCode() + nameWithType.vb: Object.GetHashCode() + fullName.vb: Object.GetHashCode() + spec.csharp: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) - uid: System.Object.GetType commentId: M:System.Object.GetType parent: System.Object @@ -254,6 +208,30 @@ references: href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: ( - name: ) +- uid: System.Object.MemberwiseClone + commentId: M:System.Object.MemberwiseClone + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + name: MemberwiseClone() + nameWithType: object.MemberwiseClone() + fullName: object.MemberwiseClone() + nameWithType.vb: Object.MemberwiseClone() + fullName.vb: Object.MemberwiseClone() + spec.csharp: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) + spec.vb: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) - uid: System.Object.ReferenceEquals(System.Object,System.Object) commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) parent: System.Object @@ -299,25 +277,30 @@ references: isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ) -- uid: System.ValueType - commentId: T:System.ValueType - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype - name: ValueType - nameWithType: ValueType - fullName: System.ValueType -- uid: System.Object - commentId: T:System.Object - parent: System +- uid: System.Object.ToString + commentId: M:System.Object.ToString + parent: System.Object isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + name: ToString() + nameWithType: object.ToString() + fullName: object.ToString() + nameWithType.vb: Object.ToString() + fullName.vb: Object.ToString() + spec.csharp: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) + spec.vb: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) - uid: System commentId: N:System isExternal: true @@ -325,35 +308,3 @@ references: name: System nameWithType: System fullName: System -- uid: System.Byte* - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.byte - name: byte* - nameWithType: byte* - fullName: byte* - nameWithType.vb: Byte* - fullName.vb: Byte* - name.vb: Byte* - spec.csharp: - - uid: System.Byte - name: byte - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.byte - - name: '*' - spec.vb: - - uid: System.Byte - name: Byte - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.byte - - name: '*' -- uid: System.Int32 - commentId: T:System.Int32 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - name: int - nameWithType: int - fullName: int - nameWithType.vb: Integer - fullName.vb: Integer - name.vb: Integer diff --git a/api/OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec.yml b/api/OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec.yml new file mode 100644 index 00000000..8055d17b --- /dev/null +++ b/api/OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec.yml @@ -0,0 +1,550 @@ +### YamlMime:ManagedReference +items: +- uid: OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec + commentId: T:OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec + id: X11ClipboardComponent.IPngCodec + parent: OpenTK.Platform.Native.X11 + children: + - OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec.CanDecodePng + - OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec.CanEncodePng + - OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec.DecodePng(System.Span{System.Byte},OpenTK.Core.Utility.ILogger) + - OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec.EncodePng(OpenTK.Platform.Bitmap,OpenTK.Core.Utility.ILogger) + langs: + - csharp + - vb + name: X11ClipboardComponent.IPngCodec + nameWithType: X11ClipboardComponent.IPngCodec + fullName: OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec + type: Interface + source: + id: IPngCodec + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11ClipboardComponent.cs + startLine: 703 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform.Native.X11 + summary: Png encoding/decoding interface for handling clipboard images. + example: [] + syntax: + content: public interface X11ClipboardComponent.IPngCodec + content.vb: Public Interface X11ClipboardComponent.IPngCodec +- uid: OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec.CanDecodePng + commentId: P:OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec.CanDecodePng + id: CanDecodePng + parent: OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec + langs: + - csharp + - vb + name: CanDecodePng + nameWithType: X11ClipboardComponent.IPngCodec.CanDecodePng + fullName: OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec.CanDecodePng + type: Property + source: + id: CanDecodePng + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11ClipboardComponent.cs + startLine: 709 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform.Native.X11 + summary: If this instance can decode png images. + example: [] + syntax: + content: bool CanDecodePng { get; } + parameters: [] + return: + type: System.Boolean + content.vb: ReadOnly Property CanDecodePng As Boolean + overload: OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec.CanDecodePng* + seealso: + - linkId: OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec.DecodePng(System.Span{System.Byte},OpenTK.Core.Utility.ILogger) + commentId: M:OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec.DecodePng(System.Span{System.Byte},OpenTK.Core.Utility.ILogger) +- uid: OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec.CanEncodePng + commentId: P:OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec.CanEncodePng + id: CanEncodePng + parent: OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec + langs: + - csharp + - vb + name: CanEncodePng + nameWithType: X11ClipboardComponent.IPngCodec.CanEncodePng + fullName: OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec.CanEncodePng + type: Property + source: + id: CanEncodePng + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11ClipboardComponent.cs + startLine: 715 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform.Native.X11 + summary: If this instance can encode png images. + example: [] + syntax: + content: bool CanEncodePng { get; } + parameters: [] + return: + type: System.Boolean + content.vb: ReadOnly Property CanEncodePng As Boolean + overload: OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec.CanEncodePng* + seealso: + - linkId: OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec.EncodePng(OpenTK.Platform.Bitmap,OpenTK.Core.Utility.ILogger) + commentId: M:OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec.EncodePng(OpenTK.Platform.Bitmap,OpenTK.Core.Utility.ILogger) +- uid: OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec.DecodePng(System.Span{System.Byte},OpenTK.Core.Utility.ILogger) + commentId: M:OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec.DecodePng(System.Span{System.Byte},OpenTK.Core.Utility.ILogger) + id: DecodePng(System.Span{System.Byte},OpenTK.Core.Utility.ILogger) + parent: OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec + langs: + - csharp + - vb + name: DecodePng(Span, ILogger?) + nameWithType: X11ClipboardComponent.IPngCodec.DecodePng(Span, ILogger?) + fullName: OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec.DecodePng(System.Span, OpenTK.Core.Utility.ILogger?) + type: Method + source: + id: DecodePng + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11ClipboardComponent.cs + startLine: 724 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform.Native.X11 + summary: Function that decodes png image bytes into a . + example: [] + syntax: + content: Bitmap? DecodePng(Span imageData, ILogger? logger) + parameters: + - id: imageData + type: System.Span{System.Byte} + description: The png image bytes. This is untrusted data. + - id: logger + type: OpenTK.Core.Utility.ILogger + description: A logger that can be used to write diagnostic messages. + return: + type: OpenTK.Platform.Bitmap + description: The decoded png or null if some error occured + content.vb: Function DecodePng(imageData As Span(Of Byte), logger As ILogger) As Bitmap + overload: OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec.DecodePng* + seealso: + - linkId: OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec.CanDecodePng + commentId: P:OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec.CanDecodePng + nameWithType.vb: X11ClipboardComponent.IPngCodec.DecodePng(Span(Of Byte), ILogger) + fullName.vb: OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec.DecodePng(System.Span(Of Byte), OpenTK.Core.Utility.ILogger) + name.vb: DecodePng(Span(Of Byte), ILogger) +- uid: OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec.EncodePng(OpenTK.Platform.Bitmap,OpenTK.Core.Utility.ILogger) + commentId: M:OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec.EncodePng(OpenTK.Platform.Bitmap,OpenTK.Core.Utility.ILogger) + id: EncodePng(OpenTK.Platform.Bitmap,OpenTK.Core.Utility.ILogger) + parent: OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec + langs: + - csharp + - vb + name: EncodePng(Bitmap, ILogger?) + nameWithType: X11ClipboardComponent.IPngCodec.EncodePng(Bitmap, ILogger?) + fullName: OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec.EncodePng(OpenTK.Platform.Bitmap, OpenTK.Core.Utility.ILogger?) + type: Method + source: + id: EncodePng + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11ClipboardComponent.cs + startLine: 733 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform.Native.X11 + summary: Function that encodes a into an array of bytes. + example: [] + syntax: + content: byte[]? EncodePng(Bitmap image, ILogger? logger) + parameters: + - id: image + type: OpenTK.Platform.Bitmap + description: The instance to encode. + - id: logger + type: OpenTK.Core.Utility.ILogger + description: A logger that can be used to write diagnostic messages. + return: + type: System.Byte[] + description: The encoded png bytes or null if an error occured. + content.vb: Function EncodePng(image As Bitmap, logger As ILogger) As Byte() + overload: OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec.EncodePng* + seealso: + - linkId: OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec.CanEncodePng + commentId: P:OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec.CanEncodePng + nameWithType.vb: X11ClipboardComponent.IPngCodec.EncodePng(Bitmap, ILogger) + fullName.vb: OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec.EncodePng(OpenTK.Platform.Bitmap, OpenTK.Core.Utility.ILogger) + name.vb: EncodePng(Bitmap, ILogger) +references: +- uid: OpenTK.Platform.Native.X11.X11ClipboardComponent.SetPngCodec(OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec) + commentId: M:OpenTK.Platform.Native.X11.X11ClipboardComponent.SetPngCodec(OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec) + href: OpenTK.Platform.Native.X11.X11ClipboardComponent.html#OpenTK_Platform_Native_X11_X11ClipboardComponent_SetPngCodec_OpenTK_Platform_Native_X11_X11ClipboardComponent_IPngCodec_ + name: SetPngCodec(IPngCodec) + nameWithType: X11ClipboardComponent.SetPngCodec(X11ClipboardComponent.IPngCodec) + fullName: OpenTK.Platform.Native.X11.X11ClipboardComponent.SetPngCodec(OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec) + spec.csharp: + - uid: OpenTK.Platform.Native.X11.X11ClipboardComponent.SetPngCodec(OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec) + name: SetPngCodec + href: OpenTK.Platform.Native.X11.X11ClipboardComponent.html#OpenTK_Platform_Native_X11_X11ClipboardComponent_SetPngCodec_OpenTK_Platform_Native_X11_X11ClipboardComponent_IPngCodec_ + - name: ( + - uid: OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec + name: IPngCodec + href: OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.Native.X11.X11ClipboardComponent.SetPngCodec(OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec) + name: SetPngCodec + href: OpenTK.Platform.Native.X11.X11ClipboardComponent.html#OpenTK_Platform_Native_X11_X11ClipboardComponent_SetPngCodec_OpenTK_Platform_Native_X11_X11ClipboardComponent_IPngCodec_ + - name: ( + - uid: OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec + name: IPngCodec + href: OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec.html + - name: ) +- uid: OpenTK.Platform.Native.X11 + commentId: N:OpenTK.Platform.Native.X11 + href: OpenTK.html + name: OpenTK.Platform.Native.X11 + nameWithType: OpenTK.Platform.Native.X11 + fullName: OpenTK.Platform.Native.X11 + spec.csharp: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Platform + name: Platform + href: OpenTK.Platform.html + - name: . + - uid: OpenTK.Platform.Native + name: Native + href: OpenTK.Platform.Native.html + - name: . + - uid: OpenTK.Platform.Native.X11 + name: X11 + href: OpenTK.Platform.Native.X11.html + spec.vb: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Platform + name: Platform + href: OpenTK.Platform.html + - name: . + - uid: OpenTK.Platform.Native + name: Native + href: OpenTK.Platform.Native.html + - name: . + - uid: OpenTK.Platform.Native.X11 + name: X11 + href: OpenTK.Platform.Native.X11.html +- uid: OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec.DecodePng(System.Span{System.Byte},OpenTK.Core.Utility.ILogger) + commentId: M:OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec.DecodePng(System.Span{System.Byte},OpenTK.Core.Utility.ILogger) + isExternal: true + href: OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec.html#OpenTK_Platform_Native_X11_X11ClipboardComponent_IPngCodec_DecodePng_System_Span_System_Byte__OpenTK_Core_Utility_ILogger_ + name: DecodePng(Span, ILogger) + nameWithType: X11ClipboardComponent.IPngCodec.DecodePng(Span, ILogger) + fullName: OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec.DecodePng(System.Span, OpenTK.Core.Utility.ILogger) + nameWithType.vb: X11ClipboardComponent.IPngCodec.DecodePng(Span(Of Byte), ILogger) + fullName.vb: OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec.DecodePng(System.Span(Of Byte), OpenTK.Core.Utility.ILogger) + name.vb: DecodePng(Span(Of Byte), ILogger) + spec.csharp: + - uid: OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec.DecodePng(System.Span{System.Byte},OpenTK.Core.Utility.ILogger) + name: DecodePng + href: OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec.html#OpenTK_Platform_Native_X11_X11ClipboardComponent_IPngCodec_DecodePng_System_Span_System_Byte__OpenTK_Core_Utility_ILogger_ + - name: ( + - uid: System.Span`1 + name: Span + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.span-1 + - name: < + - uid: System.Byte + name: byte + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.byte + - name: '>' + - name: ',' + - name: " " + - uid: OpenTK.Core.Utility.ILogger + name: ILogger + href: OpenTK.Core.Utility.ILogger.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec.DecodePng(System.Span{System.Byte},OpenTK.Core.Utility.ILogger) + name: DecodePng + href: OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec.html#OpenTK_Platform_Native_X11_X11ClipboardComponent_IPngCodec_DecodePng_System_Span_System_Byte__OpenTK_Core_Utility_ILogger_ + - name: ( + - uid: System.Span`1 + name: Span + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.span-1 + - name: ( + - name: Of + - name: " " + - uid: System.Byte + name: Byte + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.byte + - name: ) + - name: ',' + - name: " " + - uid: OpenTK.Core.Utility.ILogger + name: ILogger + href: OpenTK.Core.Utility.ILogger.html + - name: ) +- uid: OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec + commentId: T:OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec + parent: OpenTK.Platform.Native.X11 + href: OpenTK.Platform.Native.X11.X11ClipboardComponent.html + name: X11ClipboardComponent.IPngCodec + nameWithType: X11ClipboardComponent.IPngCodec + fullName: OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec + spec.csharp: + - uid: OpenTK.Platform.Native.X11.X11ClipboardComponent + name: X11ClipboardComponent + href: OpenTK.Platform.Native.X11.X11ClipboardComponent.html + - name: . + - uid: OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec + name: IPngCodec + href: OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec.html + spec.vb: + - uid: OpenTK.Platform.Native.X11.X11ClipboardComponent + name: X11ClipboardComponent + href: OpenTK.Platform.Native.X11.X11ClipboardComponent.html + - name: . + - uid: OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec + name: IPngCodec + href: OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec.html +- uid: OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec.CanDecodePng* + commentId: Overload:OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec.CanDecodePng + href: OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec.html#OpenTK_Platform_Native_X11_X11ClipboardComponent_IPngCodec_CanDecodePng + name: CanDecodePng + nameWithType: X11ClipboardComponent.IPngCodec.CanDecodePng + fullName: OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec.CanDecodePng +- uid: System.Boolean + commentId: T:System.Boolean + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + name: bool + nameWithType: bool + fullName: bool + nameWithType.vb: Boolean + fullName.vb: Boolean + name.vb: Boolean +- uid: System + commentId: N:System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System + nameWithType: System + fullName: System +- uid: OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec.EncodePng(OpenTK.Platform.Bitmap,OpenTK.Core.Utility.ILogger) + commentId: M:OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec.EncodePng(OpenTK.Platform.Bitmap,OpenTK.Core.Utility.ILogger) + href: OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec.html#OpenTK_Platform_Native_X11_X11ClipboardComponent_IPngCodec_EncodePng_OpenTK_Platform_Bitmap_OpenTK_Core_Utility_ILogger_ + name: EncodePng(Bitmap, ILogger) + nameWithType: X11ClipboardComponent.IPngCodec.EncodePng(Bitmap, ILogger) + fullName: OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec.EncodePng(OpenTK.Platform.Bitmap, OpenTK.Core.Utility.ILogger) + spec.csharp: + - uid: OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec.EncodePng(OpenTK.Platform.Bitmap,OpenTK.Core.Utility.ILogger) + name: EncodePng + href: OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec.html#OpenTK_Platform_Native_X11_X11ClipboardComponent_IPngCodec_EncodePng_OpenTK_Platform_Bitmap_OpenTK_Core_Utility_ILogger_ + - name: ( + - uid: OpenTK.Platform.Bitmap + name: Bitmap + href: OpenTK.Platform.Bitmap.html + - name: ',' + - name: " " + - uid: OpenTK.Core.Utility.ILogger + name: ILogger + href: OpenTK.Core.Utility.ILogger.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec.EncodePng(OpenTK.Platform.Bitmap,OpenTK.Core.Utility.ILogger) + name: EncodePng + href: OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec.html#OpenTK_Platform_Native_X11_X11ClipboardComponent_IPngCodec_EncodePng_OpenTK_Platform_Bitmap_OpenTK_Core_Utility_ILogger_ + - name: ( + - uid: OpenTK.Platform.Bitmap + name: Bitmap + href: OpenTK.Platform.Bitmap.html + - name: ',' + - name: " " + - uid: OpenTK.Core.Utility.ILogger + name: ILogger + href: OpenTK.Core.Utility.ILogger.html + - name: ) +- uid: OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec.CanEncodePng* + commentId: Overload:OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec.CanEncodePng + href: OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec.html#OpenTK_Platform_Native_X11_X11ClipboardComponent_IPngCodec_CanEncodePng + name: CanEncodePng + nameWithType: X11ClipboardComponent.IPngCodec.CanEncodePng + fullName: OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec.CanEncodePng +- uid: OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec.CanDecodePng + commentId: P:OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec.CanDecodePng + href: OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec.html#OpenTK_Platform_Native_X11_X11ClipboardComponent_IPngCodec_CanDecodePng + name: CanDecodePng + nameWithType: X11ClipboardComponent.IPngCodec.CanDecodePng + fullName: OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec.CanDecodePng +- uid: OpenTK.Platform.Bitmap + commentId: T:OpenTK.Platform.Bitmap + parent: OpenTK.Platform + href: OpenTK.Platform.Bitmap.html + name: Bitmap + nameWithType: Bitmap + fullName: OpenTK.Platform.Bitmap +- uid: OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec.DecodePng* + commentId: Overload:OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec.DecodePng + href: OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec.html#OpenTK_Platform_Native_X11_X11ClipboardComponent_IPngCodec_DecodePng_System_Span_System_Byte__OpenTK_Core_Utility_ILogger_ + name: DecodePng + nameWithType: X11ClipboardComponent.IPngCodec.DecodePng + fullName: OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec.DecodePng +- uid: System.Span{System.Byte} + commentId: T:System.Span{System.Byte} + parent: System + definition: System.Span`1 + href: https://learn.microsoft.com/dotnet/api/system.span-1 + name: Span + nameWithType: Span + fullName: System.Span + nameWithType.vb: Span(Of Byte) + fullName.vb: System.Span(Of Byte) + name.vb: Span(Of Byte) + spec.csharp: + - uid: System.Span`1 + name: Span + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.span-1 + - name: < + - uid: System.Byte + name: byte + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.byte + - name: '>' + spec.vb: + - uid: System.Span`1 + name: Span + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.span-1 + - name: ( + - name: Of + - name: " " + - uid: System.Byte + name: Byte + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.byte + - name: ) +- uid: OpenTK.Core.Utility.ILogger + commentId: T:OpenTK.Core.Utility.ILogger + parent: OpenTK.Core.Utility + href: OpenTK.Core.Utility.ILogger.html + name: ILogger + nameWithType: ILogger + fullName: OpenTK.Core.Utility.ILogger +- uid: OpenTK.Platform + commentId: N:OpenTK.Platform + href: OpenTK.html + name: OpenTK.Platform + nameWithType: OpenTK.Platform + fullName: OpenTK.Platform + spec.csharp: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Platform + name: Platform + href: OpenTK.Platform.html + spec.vb: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Platform + name: Platform + href: OpenTK.Platform.html +- uid: System.Span`1 + commentId: T:System.Span`1 + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.span-1 + name: Span + nameWithType: Span + fullName: System.Span + nameWithType.vb: Span(Of T) + fullName.vb: System.Span(Of T) + name.vb: Span(Of T) + spec.csharp: + - uid: System.Span`1 + name: Span + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.span-1 + - name: < + - name: T + - name: '>' + spec.vb: + - uid: System.Span`1 + name: Span + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.span-1 + - name: ( + - name: Of + - name: " " + - name: T + - name: ) +- uid: OpenTK.Core.Utility + commentId: N:OpenTK.Core.Utility + href: OpenTK.html + name: OpenTK.Core.Utility + nameWithType: OpenTK.Core.Utility + fullName: OpenTK.Core.Utility + spec.csharp: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Core + name: Core + href: OpenTK.Core.html + - name: . + - uid: OpenTK.Core.Utility + name: Utility + href: OpenTK.Core.Utility.html + spec.vb: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Core + name: Core + href: OpenTK.Core.html + - name: . + - uid: OpenTK.Core.Utility + name: Utility + href: OpenTK.Core.Utility.html +- uid: OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec.CanEncodePng + commentId: P:OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec.CanEncodePng + href: OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec.html#OpenTK_Platform_Native_X11_X11ClipboardComponent_IPngCodec_CanEncodePng + name: CanEncodePng + nameWithType: X11ClipboardComponent.IPngCodec.CanEncodePng + fullName: OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec.CanEncodePng +- uid: OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec.EncodePng* + commentId: Overload:OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec.EncodePng + href: OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec.html#OpenTK_Platform_Native_X11_X11ClipboardComponent_IPngCodec_EncodePng_OpenTK_Platform_Bitmap_OpenTK_Core_Utility_ILogger_ + name: EncodePng + nameWithType: X11ClipboardComponent.IPngCodec.EncodePng + fullName: OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec.EncodePng +- uid: System.Byte[] + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.byte + name: byte[] + nameWithType: byte[] + fullName: byte[] + nameWithType.vb: Byte() + fullName.vb: Byte() + name.vb: Byte() + spec.csharp: + - uid: System.Byte + name: byte + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.byte + - name: '[' + - name: ']' + spec.vb: + - uid: System.Byte + name: Byte + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.byte + - name: ( + - name: ) diff --git a/api/OpenTK.Platform.Native.X11.X11ClipboardComponent.yml b/api/OpenTK.Platform.Native.X11.X11ClipboardComponent.yml index c9697426..4af1b472 100644 --- a/api/OpenTK.Platform.Native.X11.X11ClipboardComponent.yml +++ b/api/OpenTK.Platform.Native.X11.X11ClipboardComponent.yml @@ -14,8 +14,11 @@ items: - OpenTK.Platform.Native.X11.X11ClipboardComponent.Logger - OpenTK.Platform.Native.X11.X11ClipboardComponent.Name - OpenTK.Platform.Native.X11.X11ClipboardComponent.Provides + - OpenTK.Platform.Native.X11.X11ClipboardComponent.SetClipboardBitmap(OpenTK.Platform.Bitmap) - OpenTK.Platform.Native.X11.X11ClipboardComponent.SetClipboardText(System.String) + - OpenTK.Platform.Native.X11.X11ClipboardComponent.SetPngCodec(OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec) - OpenTK.Platform.Native.X11.X11ClipboardComponent.SupportedFormats + - OpenTK.Platform.Native.X11.X11ClipboardComponent.Uninitialize langs: - csharp - vb @@ -26,7 +29,7 @@ items: source: id: X11ClipboardComponent path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11ClipboardComponent.cs - startLine: 10 + startLine: 14 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 @@ -60,7 +63,7 @@ items: source: id: Name path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11ClipboardComponent.cs - startLine: 13 + startLine: 17 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 @@ -89,7 +92,7 @@ items: source: id: Provides path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11ClipboardComponent.cs - startLine: 16 + startLine: 20 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 @@ -118,11 +121,11 @@ items: source: id: Logger path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11ClipboardComponent.cs - startLine: 19 + startLine: 23 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 - summary: Provides a logger for this component. + summary: The logger that this component uses to log diagnostic messages. example: [] syntax: content: public ILogger? Logger { get; set; } @@ -131,6 +134,11 @@ items: type: OpenTK.Core.Utility.ILogger content.vb: Public Property Logger As ILogger overload: OpenTK.Platform.Native.X11.X11ClipboardComponent.Logger* + seealso: + - linkId: OpenTK.Core.Utility.ILogger + commentId: T:OpenTK.Core.Utility.ILogger + - linkId: OpenTK.Platform.ToolkitOptions.Logger + commentId: P:OpenTK.Platform.ToolkitOptions.Logger implements: - OpenTK.Platform.IPalComponent.Logger - uid: OpenTK.Platform.Native.X11.X11ClipboardComponent.Initialize(OpenTK.Platform.ToolkitOptions) @@ -147,7 +155,7 @@ items: source: id: Initialize path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11ClipboardComponent.cs - startLine: 22 + startLine: 46 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 @@ -161,8 +169,42 @@ items: description: The options to initialize the component with. content.vb: Public Sub Initialize(options As ToolkitOptions) overload: OpenTK.Platform.Native.X11.X11ClipboardComponent.Initialize* + seealso: + - linkId: OpenTK.Platform.ToolkitOptions + commentId: T:OpenTK.Platform.ToolkitOptions + - linkId: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) implements: - OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) +- uid: OpenTK.Platform.Native.X11.X11ClipboardComponent.Uninitialize + commentId: M:OpenTK.Platform.Native.X11.X11ClipboardComponent.Uninitialize + id: Uninitialize + parent: OpenTK.Platform.Native.X11.X11ClipboardComponent + langs: + - csharp + - vb + name: Uninitialize() + nameWithType: X11ClipboardComponent.Uninitialize() + fullName: OpenTK.Platform.Native.X11.X11ClipboardComponent.Uninitialize() + type: Method + source: + id: Uninitialize + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11ClipboardComponent.cs + startLine: 62 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform.Native.X11 + summary: Uninitialize the component. Frees any native resources used by the component. + example: [] + syntax: + content: public void Uninitialize() + content.vb: Public Sub Uninitialize() + overload: OpenTK.Platform.Native.X11.X11ClipboardComponent.Uninitialize* + seealso: + - linkId: OpenTK.Platform.Toolkit.Uninit + commentId: M:OpenTK.Platform.Toolkit.Uninit + implements: + - OpenTK.Platform.IPalComponent.Uninitialize - uid: OpenTK.Platform.Native.X11.X11ClipboardComponent.SupportedFormats commentId: P:OpenTK.Platform.Native.X11.X11ClipboardComponent.SupportedFormats id: SupportedFormats @@ -177,7 +219,7 @@ items: source: id: SupportedFormats path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11ClipboardComponent.cs - startLine: 90 + startLine: 70 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 @@ -190,6 +232,11 @@ items: type: System.Collections.Generic.IReadOnlyList{OpenTK.Platform.ClipboardFormat} content.vb: Public ReadOnly Property SupportedFormats As IReadOnlyList(Of ClipboardFormat) overload: OpenTK.Platform.Native.X11.X11ClipboardComponent.SupportedFormats* + seealso: + - linkId: OpenTK.Platform.IClipboardComponent.GetClipboardFormat + commentId: M:OpenTK.Platform.IClipboardComponent.GetClipboardFormat + - linkId: OpenTK.Platform.ClipboardFormat + commentId: T:OpenTK.Platform.ClipboardFormat implements: - OpenTK.Platform.IClipboardComponent.SupportedFormats - uid: OpenTK.Platform.Native.X11.X11ClipboardComponent.GetClipboardFormat @@ -206,7 +253,7 @@ items: source: id: GetClipboardFormat path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11ClipboardComponent.cs - startLine: 167 + startLine: 403 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 @@ -219,6 +266,9 @@ items: description: The format of the data currently in the clipboard. content.vb: Public Function GetClipboardFormat() As ClipboardFormat overload: OpenTK.Platform.Native.X11.X11ClipboardComponent.GetClipboardFormat* + seealso: + - linkId: OpenTK.Platform.ClipboardFormat + commentId: T:OpenTK.Platform.ClipboardFormat implements: - OpenTK.Platform.IClipboardComponent.GetClipboardFormat - uid: OpenTK.Platform.Native.X11.X11ClipboardComponent.SetClipboardText(System.String) @@ -235,7 +285,7 @@ items: source: id: SetClipboardText path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11ClipboardComponent.cs - startLine: 173 + startLine: 409 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 @@ -246,9 +296,12 @@ items: parameters: - id: text type: System.String - description: The text to put on the clipboard. + description: The text to write to the clipboard. content.vb: Public Sub SetClipboardText(text As String) overload: OpenTK.Platform.Native.X11.X11ClipboardComponent.SetClipboardText* + seealso: + - linkId: OpenTK.Platform.IClipboardComponent.GetClipboardFormat + commentId: M:OpenTK.Platform.IClipboardComponent.GetClipboardFormat implements: - OpenTK.Platform.IClipboardComponent.SetClipboardText(System.String) nameWithType.vb: X11ClipboardComponent.SetClipboardText(String) @@ -268,22 +321,25 @@ items: source: id: GetClipboardText path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11ClipboardComponent.cs - startLine: 179 + startLine: 417 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: >- - Returns the string currently in the clipboard. + Gets the string currently in the clipboard. - This function returns null if the current clipboard data doesn't have the format. + This function returns null if the current clipboard data doesn't have the format. example: [] syntax: content: public string? GetClipboardText() return: type: System.String - description: The string currently in the clipboard, or null. + description: The string currently in the clipboard, or null. content.vb: Public Function GetClipboardText() As String overload: OpenTK.Platform.Native.X11.X11ClipboardComponent.GetClipboardText* + seealso: + - linkId: OpenTK.Platform.IClipboardComponent.GetClipboardFormat + commentId: M:OpenTK.Platform.IClipboardComponent.GetClipboardFormat implements: - OpenTK.Platform.IClipboardComponent.GetClipboardText - uid: OpenTK.Platform.Native.X11.X11ClipboardComponent.GetClipboardAudio @@ -300,24 +356,64 @@ items: source: id: GetClipboardAudio path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11ClipboardComponent.cs - startLine: 259 + startLine: 504 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: >- Gets the audio data currently in the clipboard. - This function returns null if the current clipboard data doesn't have the format. + This function returns null if the current clipboard data doesn't have the format. example: [] syntax: content: public AudioData? GetClipboardAudio() return: type: OpenTK.Platform.AudioData - description: The audio data currently in the clipboard. + description: The audio data currently in the clipboard, or null. content.vb: Public Function GetClipboardAudio() As AudioData overload: OpenTK.Platform.Native.X11.X11ClipboardComponent.GetClipboardAudio* + seealso: + - linkId: OpenTK.Platform.IClipboardComponent.GetClipboardFormat + commentId: M:OpenTK.Platform.IClipboardComponent.GetClipboardFormat implements: - OpenTK.Platform.IClipboardComponent.GetClipboardAudio +- uid: OpenTK.Platform.Native.X11.X11ClipboardComponent.SetClipboardBitmap(OpenTK.Platform.Bitmap) + commentId: M:OpenTK.Platform.Native.X11.X11ClipboardComponent.SetClipboardBitmap(OpenTK.Platform.Bitmap) + id: SetClipboardBitmap(OpenTK.Platform.Bitmap) + parent: OpenTK.Platform.Native.X11.X11ClipboardComponent + langs: + - csharp + - vb + name: SetClipboardBitmap(Bitmap) + nameWithType: X11ClipboardComponent.SetClipboardBitmap(Bitmap) + fullName: OpenTK.Platform.Native.X11.X11ClipboardComponent.SetClipboardBitmap(OpenTK.Platform.Bitmap) + type: Method + source: + id: SetClipboardBitmap + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11ClipboardComponent.cs + startLine: 518 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform.Native.X11 + summary: Writes a bitmap to the clipboard. + remarks: >- + On linux clipboard bitmaps are defacto transferred as PNG data, as such a PNG encoder/decoder is needed to read and write bitmaps from the clipboard. + + To enable this must be called with an object that implements the interface. + example: [] + syntax: + content: public void SetClipboardBitmap(Bitmap bitmap) + parameters: + - id: bitmap + type: OpenTK.Platform.Bitmap + description: The bitmap to write to the clipboard. + content.vb: Public Sub SetClipboardBitmap(bitmap As Bitmap) + overload: OpenTK.Platform.Native.X11.X11ClipboardComponent.SetClipboardBitmap* + seealso: + - linkId: OpenTK.Platform.Native.X11.X11ClipboardComponent.SetPngCodec(OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec) + commentId: M:OpenTK.Platform.Native.X11.X11ClipboardComponent.SetPngCodec(OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec) + implements: + - OpenTK.Platform.IClipboardComponent.SetClipboardBitmap(OpenTK.Platform.Bitmap) - uid: OpenTK.Platform.Native.X11.X11ClipboardComponent.GetClipboardBitmap commentId: M:OpenTK.Platform.Native.X11.X11ClipboardComponent.GetClipboardBitmap id: GetClipboardBitmap @@ -332,22 +428,37 @@ items: source: id: GetClipboardBitmap path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11ClipboardComponent.cs - startLine: 265 + startLine: 549 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: >- Gets the bitmap currently in the clipboard. - This function returns null if the current clipboard data doesn't have the format. + This function returns null if the current clipboard data doesn't have the format. + remarks: >- + On linux clipboard bitmaps are defacto transferred as PNG data, as such a PNG encoder/decoder is needed to read and write bitmaps from the clipboard. + + To enable this must be called with an object that implements the interface. + + If this is not done, and will both throw an exception. example: [] syntax: content: public Bitmap? GetClipboardBitmap() return: type: OpenTK.Platform.Bitmap - description: The bitmap currently in the clipboard. + description: The bitmap currently in the clipboard, or null. content.vb: Public Function GetClipboardBitmap() As Bitmap overload: OpenTK.Platform.Native.X11.X11ClipboardComponent.GetClipboardBitmap* + seealso: + - linkId: OpenTK.Platform.IClipboardComponent.GetClipboardFormat + commentId: M:OpenTK.Platform.IClipboardComponent.GetClipboardFormat + - linkId: OpenTK.Platform.Native.X11.X11ClipboardComponent.SetPngCodec(OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec) + commentId: M:OpenTK.Platform.Native.X11.X11ClipboardComponent.SetPngCodec(OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec) + - linkId: OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec + commentId: T:OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec + - linkId: OpenTK.Platform.Native.X11.X11ClipboardComponent.SetPngCodec(OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec) + commentId: M:OpenTK.Platform.Native.X11.X11ClipboardComponent.SetPngCodec(OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec) implements: - OpenTK.Platform.IClipboardComponent.GetClipboardBitmap - uid: OpenTK.Platform.Native.X11.X11ClipboardComponent.GetClipboardFiles @@ -364,24 +475,65 @@ items: source: id: GetClipboardFiles path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11ClipboardComponent.cs - startLine: 272 + startLine: 635 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: >- Gets a list of files and directories currently in the clipboard. - This function returns null if the current clipboard data doesn't have the format. + This function returns null if the current clipboard data doesn't have the format. example: [] syntax: content: public List? GetClipboardFiles() return: type: System.Collections.Generic.List{System.String} - description: The list of files and directories currently in the clipboard. + description: The list of files and directories currently in the clipboard, or null. content.vb: Public Function GetClipboardFiles() As List(Of String) overload: OpenTK.Platform.Native.X11.X11ClipboardComponent.GetClipboardFiles* + seealso: + - linkId: OpenTK.Platform.IClipboardComponent.GetClipboardFormat + commentId: M:OpenTK.Platform.IClipboardComponent.GetClipboardFormat implements: - OpenTK.Platform.IClipboardComponent.GetClipboardFiles +- uid: OpenTK.Platform.Native.X11.X11ClipboardComponent.SetPngCodec(OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec) + commentId: M:OpenTK.Platform.Native.X11.X11ClipboardComponent.SetPngCodec(OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec) + id: SetPngCodec(OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec) + parent: OpenTK.Platform.Native.X11.X11ClipboardComponent + langs: + - csharp + - vb + name: SetPngCodec(IPngCodec?) + nameWithType: X11ClipboardComponent.SetPngCodec(X11ClipboardComponent.IPngCodec?) + fullName: OpenTK.Platform.Native.X11.X11ClipboardComponent.SetPngCodec(OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec?) + type: Method + source: + id: SetPngCodec + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11ClipboardComponent.cs + startLine: 743 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform.Native.X11 + summary: Allows the clipboard component to decode and encode png images using the specified instance. + example: [] + syntax: + content: public void SetPngCodec(X11ClipboardComponent.IPngCodec? codec) + parameters: + - id: codec + type: OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec + description: The to use for image encoding. + content.vb: Public Sub SetPngCodec(codec As X11ClipboardComponent.IPngCodec) + overload: OpenTK.Platform.Native.X11.X11ClipboardComponent.SetPngCodec* + seealso: + - linkId: OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec + commentId: T:OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec + - linkId: OpenTK.Platform.Native.X11.X11ClipboardComponent.GetClipboardBitmap + commentId: M:OpenTK.Platform.Native.X11.X11ClipboardComponent.GetClipboardBitmap + - linkId: OpenTK.Platform.Native.X11.X11ClipboardComponent.SetClipboardBitmap(OpenTK.Platform.Bitmap) + commentId: M:OpenTK.Platform.Native.X11.X11ClipboardComponent.SetClipboardBitmap(OpenTK.Platform.Bitmap) + nameWithType.vb: X11ClipboardComponent.SetPngCodec(X11ClipboardComponent.IPngCodec) + fullName.vb: OpenTK.Platform.Native.X11.X11ClipboardComponent.SetPngCodec(OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec) + name.vb: SetPngCodec(IPngCodec) references: - uid: OpenTK.Platform.Native.X11 commentId: N:OpenTK.Platform.Native.X11 @@ -738,6 +890,19 @@ references: name: PalComponents nameWithType: PalComponents fullName: OpenTK.Platform.PalComponents +- uid: OpenTK.Core.Utility.ILogger + commentId: T:OpenTK.Core.Utility.ILogger + parent: OpenTK.Core.Utility + href: OpenTK.Core.Utility.ILogger.html + name: ILogger + nameWithType: ILogger + fullName: OpenTK.Core.Utility.ILogger +- uid: OpenTK.Platform.ToolkitOptions.Logger + commentId: P:OpenTK.Platform.ToolkitOptions.Logger + href: OpenTK.Platform.ToolkitOptions.html#OpenTK_Platform_ToolkitOptions_Logger + name: Logger + nameWithType: ToolkitOptions.Logger + fullName: OpenTK.Platform.ToolkitOptions.Logger - uid: OpenTK.Platform.Native.X11.X11ClipboardComponent.Logger* commentId: Overload:OpenTK.Platform.Native.X11.X11ClipboardComponent.Logger href: OpenTK.Platform.Native.X11.X11ClipboardComponent.html#OpenTK_Platform_Native_X11_X11ClipboardComponent_Logger @@ -751,13 +916,6 @@ references: name: Logger nameWithType: IPalComponent.Logger fullName: OpenTK.Platform.IPalComponent.Logger -- uid: OpenTK.Core.Utility.ILogger - commentId: T:OpenTK.Core.Utility.ILogger - parent: OpenTK.Core.Utility - href: OpenTK.Core.Utility.ILogger.html - name: ILogger - nameWithType: ILogger - fullName: OpenTK.Core.Utility.ILogger - uid: OpenTK.Core.Utility commentId: N:OpenTK.Core.Utility href: OpenTK.html @@ -788,6 +946,37 @@ references: - uid: OpenTK.Core.Utility name: Utility href: OpenTK.Core.Utility.html +- uid: OpenTK.Platform.ToolkitOptions + commentId: T:OpenTK.Platform.ToolkitOptions + parent: OpenTK.Platform + href: OpenTK.Platform.ToolkitOptions.html + name: ToolkitOptions + nameWithType: ToolkitOptions + fullName: OpenTK.Platform.ToolkitOptions +- uid: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Init_OpenTK_Platform_ToolkitOptions_ + name: Init(ToolkitOptions) + nameWithType: Toolkit.Init(ToolkitOptions) + fullName: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + spec.csharp: + - uid: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + name: Init + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Init_OpenTK_Platform_ToolkitOptions_ + - name: ( + - uid: OpenTK.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Platform.ToolkitOptions.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + name: Init + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Init_OpenTK_Platform_ToolkitOptions_ + - name: ( + - uid: OpenTK.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Platform.ToolkitOptions.html + - name: ) - uid: OpenTK.Platform.Native.X11.X11ClipboardComponent.Initialize* commentId: Overload:OpenTK.Platform.Native.X11.X11ClipboardComponent.Initialize href: OpenTK.Platform.Native.X11.X11ClipboardComponent.html#OpenTK_Platform_Native_X11_X11ClipboardComponent_Initialize_OpenTK_Platform_ToolkitOptions_ @@ -819,13 +1008,75 @@ references: name: ToolkitOptions href: OpenTK.Platform.ToolkitOptions.html - name: ) -- uid: OpenTK.Platform.ToolkitOptions - commentId: T:OpenTK.Platform.ToolkitOptions +- uid: OpenTK.Platform.Toolkit.Uninit + commentId: M:OpenTK.Platform.Toolkit.Uninit + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Uninit + name: Uninit() + nameWithType: Toolkit.Uninit() + fullName: OpenTK.Platform.Toolkit.Uninit() + spec.csharp: + - uid: OpenTK.Platform.Toolkit.Uninit + name: Uninit + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Uninit + - name: ( + - name: ) + spec.vb: + - uid: OpenTK.Platform.Toolkit.Uninit + name: Uninit + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Uninit + - name: ( + - name: ) +- uid: OpenTK.Platform.Native.X11.X11ClipboardComponent.Uninitialize* + commentId: Overload:OpenTK.Platform.Native.X11.X11ClipboardComponent.Uninitialize + href: OpenTK.Platform.Native.X11.X11ClipboardComponent.html#OpenTK_Platform_Native_X11_X11ClipboardComponent_Uninitialize + name: Uninitialize + nameWithType: X11ClipboardComponent.Uninitialize + fullName: OpenTK.Platform.Native.X11.X11ClipboardComponent.Uninitialize +- uid: OpenTK.Platform.IPalComponent.Uninitialize + commentId: M:OpenTK.Platform.IPalComponent.Uninitialize + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + name: Uninitialize() + nameWithType: IPalComponent.Uninitialize() + fullName: OpenTK.Platform.IPalComponent.Uninitialize() + spec.csharp: + - uid: OpenTK.Platform.IPalComponent.Uninitialize + name: Uninitialize + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + - name: ( + - name: ) + spec.vb: + - uid: OpenTK.Platform.IPalComponent.Uninitialize + name: Uninitialize + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + - name: ( + - name: ) +- uid: OpenTK.Platform.IClipboardComponent.GetClipboardFormat + commentId: M:OpenTK.Platform.IClipboardComponent.GetClipboardFormat + parent: OpenTK.Platform.IClipboardComponent + href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_GetClipboardFormat + name: GetClipboardFormat() + nameWithType: IClipboardComponent.GetClipboardFormat() + fullName: OpenTK.Platform.IClipboardComponent.GetClipboardFormat() + spec.csharp: + - uid: OpenTK.Platform.IClipboardComponent.GetClipboardFormat + name: GetClipboardFormat + href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_GetClipboardFormat + - name: ( + - name: ) + spec.vb: + - uid: OpenTK.Platform.IClipboardComponent.GetClipboardFormat + name: GetClipboardFormat + href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_GetClipboardFormat + - name: ( + - name: ) +- uid: OpenTK.Platform.ClipboardFormat + commentId: T:OpenTK.Platform.ClipboardFormat parent: OpenTK.Platform - href: OpenTK.Platform.ToolkitOptions.html - name: ToolkitOptions - nameWithType: ToolkitOptions - fullName: OpenTK.Platform.ToolkitOptions + href: OpenTK.Platform.ClipboardFormat.html + name: ClipboardFormat + nameWithType: ClipboardFormat + fullName: OpenTK.Platform.ClipboardFormat - uid: OpenTK.Platform.Native.X11.X11ClipboardComponent.SupportedFormats* commentId: Overload:OpenTK.Platform.Native.X11.X11ClipboardComponent.SupportedFormats href: OpenTK.Platform.Native.X11.X11ClipboardComponent.html#OpenTK_Platform_Native_X11_X11ClipboardComponent_SupportedFormats @@ -943,32 +1194,6 @@ references: name: GetClipboardFormat nameWithType: X11ClipboardComponent.GetClipboardFormat fullName: OpenTK.Platform.Native.X11.X11ClipboardComponent.GetClipboardFormat -- uid: OpenTK.Platform.IClipboardComponent.GetClipboardFormat - commentId: M:OpenTK.Platform.IClipboardComponent.GetClipboardFormat - parent: OpenTK.Platform.IClipboardComponent - href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_GetClipboardFormat - name: GetClipboardFormat() - nameWithType: IClipboardComponent.GetClipboardFormat() - fullName: OpenTK.Platform.IClipboardComponent.GetClipboardFormat() - spec.csharp: - - uid: OpenTK.Platform.IClipboardComponent.GetClipboardFormat - name: GetClipboardFormat - href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_GetClipboardFormat - - name: ( - - name: ) - spec.vb: - - uid: OpenTK.Platform.IClipboardComponent.GetClipboardFormat - name: GetClipboardFormat - href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_GetClipboardFormat - - name: ( - - name: ) -- uid: OpenTK.Platform.ClipboardFormat - commentId: T:OpenTK.Platform.ClipboardFormat - parent: OpenTK.Platform - href: OpenTK.Platform.ClipboardFormat.html - name: ClipboardFormat - nameWithType: ClipboardFormat - fullName: OpenTK.Platform.ClipboardFormat - uid: OpenTK.Platform.Native.X11.X11ClipboardComponent.SetClipboardText* commentId: Overload:OpenTK.Platform.Native.X11.X11ClipboardComponent.SetClipboardText href: OpenTK.Platform.Native.X11.X11ClipboardComponent.html#OpenTK_Platform_Native_X11_X11ClipboardComponent_SetClipboardText_System_String_ @@ -1075,18 +1300,97 @@ references: name: AudioData nameWithType: AudioData fullName: OpenTK.Platform.AudioData +- uid: OpenTK.Platform.Native.X11.X11ClipboardComponent.SetPngCodec(OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec) + commentId: M:OpenTK.Platform.Native.X11.X11ClipboardComponent.SetPngCodec(OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec) + href: OpenTK.Platform.Native.X11.X11ClipboardComponent.html#OpenTK_Platform_Native_X11_X11ClipboardComponent_SetPngCodec_OpenTK_Platform_Native_X11_X11ClipboardComponent_IPngCodec_ + name: SetPngCodec(IPngCodec) + nameWithType: X11ClipboardComponent.SetPngCodec(X11ClipboardComponent.IPngCodec) + fullName: OpenTK.Platform.Native.X11.X11ClipboardComponent.SetPngCodec(OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec) + spec.csharp: + - uid: OpenTK.Platform.Native.X11.X11ClipboardComponent.SetPngCodec(OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec) + name: SetPngCodec + href: OpenTK.Platform.Native.X11.X11ClipboardComponent.html#OpenTK_Platform_Native_X11_X11ClipboardComponent_SetPngCodec_OpenTK_Platform_Native_X11_X11ClipboardComponent_IPngCodec_ + - name: ( + - uid: OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec + name: IPngCodec + href: OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.Native.X11.X11ClipboardComponent.SetPngCodec(OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec) + name: SetPngCodec + href: OpenTK.Platform.Native.X11.X11ClipboardComponent.html#OpenTK_Platform_Native_X11_X11ClipboardComponent_SetPngCodec_OpenTK_Platform_Native_X11_X11ClipboardComponent_IPngCodec_ + - name: ( + - uid: OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec + name: IPngCodec + href: OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec.html + - name: ) +- uid: OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec + commentId: T:OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec + parent: OpenTK.Platform.Native.X11 + href: OpenTK.Platform.Native.X11.X11ClipboardComponent.html + name: X11ClipboardComponent.IPngCodec + nameWithType: X11ClipboardComponent.IPngCodec + fullName: OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec + spec.csharp: + - uid: OpenTK.Platform.Native.X11.X11ClipboardComponent + name: X11ClipboardComponent + href: OpenTK.Platform.Native.X11.X11ClipboardComponent.html + - name: . + - uid: OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec + name: IPngCodec + href: OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec.html + spec.vb: + - uid: OpenTK.Platform.Native.X11.X11ClipboardComponent + name: X11ClipboardComponent + href: OpenTK.Platform.Native.X11.X11ClipboardComponent.html + - name: . + - uid: OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec + name: IPngCodec + href: OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec.html +- uid: OpenTK.Platform.Native.X11.X11ClipboardComponent.SetClipboardBitmap* + commentId: Overload:OpenTK.Platform.Native.X11.X11ClipboardComponent.SetClipboardBitmap + href: OpenTK.Platform.Native.X11.X11ClipboardComponent.html#OpenTK_Platform_Native_X11_X11ClipboardComponent_SetClipboardBitmap_OpenTK_Platform_Bitmap_ + name: SetClipboardBitmap + nameWithType: X11ClipboardComponent.SetClipboardBitmap + fullName: OpenTK.Platform.Native.X11.X11ClipboardComponent.SetClipboardBitmap +- uid: OpenTK.Platform.IClipboardComponent.SetClipboardBitmap(OpenTK.Platform.Bitmap) + commentId: M:OpenTK.Platform.IClipboardComponent.SetClipboardBitmap(OpenTK.Platform.Bitmap) + parent: OpenTK.Platform.IClipboardComponent + href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_SetClipboardBitmap_OpenTK_Platform_Bitmap_ + name: SetClipboardBitmap(Bitmap) + nameWithType: IClipboardComponent.SetClipboardBitmap(Bitmap) + fullName: OpenTK.Platform.IClipboardComponent.SetClipboardBitmap(OpenTK.Platform.Bitmap) + spec.csharp: + - uid: OpenTK.Platform.IClipboardComponent.SetClipboardBitmap(OpenTK.Platform.Bitmap) + name: SetClipboardBitmap + href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_SetClipboardBitmap_OpenTK_Platform_Bitmap_ + - name: ( + - uid: OpenTK.Platform.Bitmap + name: Bitmap + href: OpenTK.Platform.Bitmap.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IClipboardComponent.SetClipboardBitmap(OpenTK.Platform.Bitmap) + name: SetClipboardBitmap + href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_SetClipboardBitmap_OpenTK_Platform_Bitmap_ + - name: ( + - uid: OpenTK.Platform.Bitmap + name: Bitmap + href: OpenTK.Platform.Bitmap.html + - name: ) +- uid: OpenTK.Platform.Bitmap + commentId: T:OpenTK.Platform.Bitmap + parent: OpenTK.Platform + href: OpenTK.Platform.Bitmap.html + name: Bitmap + nameWithType: Bitmap + fullName: OpenTK.Platform.Bitmap - uid: OpenTK.Platform.ClipboardFormat.Bitmap commentId: F:OpenTK.Platform.ClipboardFormat.Bitmap href: OpenTK.Platform.ClipboardFormat.html#OpenTK_Platform_ClipboardFormat_Bitmap name: Bitmap nameWithType: ClipboardFormat.Bitmap fullName: OpenTK.Platform.ClipboardFormat.Bitmap -- uid: OpenTK.Platform.Native.X11.X11ClipboardComponent.GetClipboardBitmap* - commentId: Overload:OpenTK.Platform.Native.X11.X11ClipboardComponent.GetClipboardBitmap - href: OpenTK.Platform.Native.X11.X11ClipboardComponent.html#OpenTK_Platform_Native_X11_X11ClipboardComponent_GetClipboardBitmap - name: GetClipboardBitmap - nameWithType: X11ClipboardComponent.GetClipboardBitmap - fullName: OpenTK.Platform.Native.X11.X11ClipboardComponent.GetClipboardBitmap - uid: OpenTK.Platform.IClipboardComponent.GetClipboardBitmap commentId: M:OpenTK.Platform.IClipboardComponent.GetClipboardBitmap parent: OpenTK.Platform.IClipboardComponent @@ -1106,13 +1410,12 @@ references: href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_GetClipboardBitmap - name: ( - name: ) -- uid: OpenTK.Platform.Bitmap - commentId: T:OpenTK.Platform.Bitmap - parent: OpenTK.Platform - href: OpenTK.Platform.Bitmap.html - name: Bitmap - nameWithType: Bitmap - fullName: OpenTK.Platform.Bitmap +- uid: OpenTK.Platform.Native.X11.X11ClipboardComponent.GetClipboardBitmap* + commentId: Overload:OpenTK.Platform.Native.X11.X11ClipboardComponent.GetClipboardBitmap + href: OpenTK.Platform.Native.X11.X11ClipboardComponent.html#OpenTK_Platform_Native_X11_X11ClipboardComponent_GetClipboardBitmap + name: GetClipboardBitmap + nameWithType: X11ClipboardComponent.GetClipboardBitmap + fullName: OpenTK.Platform.Native.X11.X11ClipboardComponent.GetClipboardBitmap - uid: OpenTK.Platform.ClipboardFormat.Files commentId: F:OpenTK.Platform.ClipboardFormat.Files href: OpenTK.Platform.ClipboardFormat.html#OpenTK_Platform_ClipboardFormat_Files @@ -1207,3 +1510,51 @@ references: - name: " " - name: T - name: ) +- uid: OpenTK.Platform.Native.X11.X11ClipboardComponent.GetClipboardBitmap + commentId: M:OpenTK.Platform.Native.X11.X11ClipboardComponent.GetClipboardBitmap + href: OpenTK.Platform.Native.X11.X11ClipboardComponent.html#OpenTK_Platform_Native_X11_X11ClipboardComponent_GetClipboardBitmap + name: GetClipboardBitmap() + nameWithType: X11ClipboardComponent.GetClipboardBitmap() + fullName: OpenTK.Platform.Native.X11.X11ClipboardComponent.GetClipboardBitmap() + spec.csharp: + - uid: OpenTK.Platform.Native.X11.X11ClipboardComponent.GetClipboardBitmap + name: GetClipboardBitmap + href: OpenTK.Platform.Native.X11.X11ClipboardComponent.html#OpenTK_Platform_Native_X11_X11ClipboardComponent_GetClipboardBitmap + - name: ( + - name: ) + spec.vb: + - uid: OpenTK.Platform.Native.X11.X11ClipboardComponent.GetClipboardBitmap + name: GetClipboardBitmap + href: OpenTK.Platform.Native.X11.X11ClipboardComponent.html#OpenTK_Platform_Native_X11_X11ClipboardComponent_GetClipboardBitmap + - name: ( + - name: ) +- uid: OpenTK.Platform.Native.X11.X11ClipboardComponent.SetClipboardBitmap(OpenTK.Platform.Bitmap) + commentId: M:OpenTK.Platform.Native.X11.X11ClipboardComponent.SetClipboardBitmap(OpenTK.Platform.Bitmap) + href: OpenTK.Platform.Native.X11.X11ClipboardComponent.html#OpenTK_Platform_Native_X11_X11ClipboardComponent_SetClipboardBitmap_OpenTK_Platform_Bitmap_ + name: SetClipboardBitmap(Bitmap) + nameWithType: X11ClipboardComponent.SetClipboardBitmap(Bitmap) + fullName: OpenTK.Platform.Native.X11.X11ClipboardComponent.SetClipboardBitmap(OpenTK.Platform.Bitmap) + spec.csharp: + - uid: OpenTK.Platform.Native.X11.X11ClipboardComponent.SetClipboardBitmap(OpenTK.Platform.Bitmap) + name: SetClipboardBitmap + href: OpenTK.Platform.Native.X11.X11ClipboardComponent.html#OpenTK_Platform_Native_X11_X11ClipboardComponent_SetClipboardBitmap_OpenTK_Platform_Bitmap_ + - name: ( + - uid: OpenTK.Platform.Bitmap + name: Bitmap + href: OpenTK.Platform.Bitmap.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.Native.X11.X11ClipboardComponent.SetClipboardBitmap(OpenTK.Platform.Bitmap) + name: SetClipboardBitmap + href: OpenTK.Platform.Native.X11.X11ClipboardComponent.html#OpenTK_Platform_Native_X11_X11ClipboardComponent_SetClipboardBitmap_OpenTK_Platform_Bitmap_ + - name: ( + - uid: OpenTK.Platform.Bitmap + name: Bitmap + href: OpenTK.Platform.Bitmap.html + - name: ) +- uid: OpenTK.Platform.Native.X11.X11ClipboardComponent.SetPngCodec* + commentId: Overload:OpenTK.Platform.Native.X11.X11ClipboardComponent.SetPngCodec + href: OpenTK.Platform.Native.X11.X11ClipboardComponent.html#OpenTK_Platform_Native_X11_X11ClipboardComponent_SetPngCodec_OpenTK_Platform_Native_X11_X11ClipboardComponent_IPngCodec_ + name: SetPngCodec + nameWithType: X11ClipboardComponent.SetPngCodec + fullName: OpenTK.Platform.Native.X11.X11ClipboardComponent.SetPngCodec diff --git a/api/OpenTK.Platform.Native.X11.X11CursorComponent.yml b/api/OpenTK.Platform.Native.X11.X11CursorComponent.yml index 41d37d09..70272632 100644 --- a/api/OpenTK.Platform.Native.X11.X11CursorComponent.yml +++ b/api/OpenTK.Platform.Native.X11.X11CursorComponent.yml @@ -18,6 +18,7 @@ items: - OpenTK.Platform.Native.X11.X11CursorComponent.Logger - OpenTK.Platform.Native.X11.X11CursorComponent.Name - OpenTK.Platform.Native.X11.X11CursorComponent.Provides + - OpenTK.Platform.Native.X11.X11CursorComponent.Uninitialize langs: - csharp - vb @@ -124,7 +125,7 @@ items: assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 - summary: Provides a logger for this component. + summary: The logger that this component uses to log diagnostic messages. example: [] syntax: content: public ILogger? Logger { get; set; } @@ -133,6 +134,11 @@ items: type: OpenTK.Core.Utility.ILogger content.vb: Public Property Logger As ILogger overload: OpenTK.Platform.Native.X11.X11CursorComponent.Logger* + seealso: + - linkId: OpenTK.Core.Utility.ILogger + commentId: T:OpenTK.Core.Utility.ILogger + - linkId: OpenTK.Platform.ToolkitOptions.Logger + commentId: P:OpenTK.Platform.ToolkitOptions.Logger implements: - OpenTK.Platform.IPalComponent.Logger - uid: OpenTK.Platform.Native.X11.X11CursorComponent.Initialize(OpenTK.Platform.ToolkitOptions) @@ -163,8 +169,42 @@ items: description: The options to initialize the component with. content.vb: Public Sub Initialize(options As ToolkitOptions) overload: OpenTK.Platform.Native.X11.X11CursorComponent.Initialize* + seealso: + - linkId: OpenTK.Platform.ToolkitOptions + commentId: T:OpenTK.Platform.ToolkitOptions + - linkId: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) implements: - OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) +- uid: OpenTK.Platform.Native.X11.X11CursorComponent.Uninitialize + commentId: M:OpenTK.Platform.Native.X11.X11CursorComponent.Uninitialize + id: Uninitialize + parent: OpenTK.Platform.Native.X11.X11CursorComponent + langs: + - csharp + - vb + name: Uninitialize() + nameWithType: X11CursorComponent.Uninitialize() + fullName: OpenTK.Platform.Native.X11.X11CursorComponent.Uninitialize() + type: Method + source: + id: Uninitialize + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11CursorComponent.cs + startLine: 52 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform.Native.X11 + summary: Uninitialize the component. Frees any native resources used by the component. + example: [] + syntax: + content: public void Uninitialize() + content.vb: Public Sub Uninitialize() + overload: OpenTK.Platform.Native.X11.X11CursorComponent.Uninitialize* + seealso: + - linkId: OpenTK.Platform.Toolkit.Uninit + commentId: M:OpenTK.Platform.Toolkit.Uninit + implements: + - OpenTK.Platform.IPalComponent.Uninitialize - uid: OpenTK.Platform.Native.X11.X11CursorComponent.CanLoadSystemCursors commentId: P:OpenTK.Platform.Native.X11.X11CursorComponent.CanLoadSystemCursors id: CanLoadSystemCursors @@ -179,7 +219,7 @@ items: source: id: CanLoadSystemCursors path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11CursorComponent.cs - startLine: 52 + startLine: 57 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 @@ -211,16 +251,16 @@ items: source: id: CanInspectSystemCursors path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11CursorComponent.cs - startLine: 55 + startLine: 60 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: >- True if the backend supports inspecting system cursor handles. - If true, functions like and works on system cursors. + If true, functions like and works on system cursors. - If false, these functions will fail. + If fals, these functions will fail. example: [] syntax: content: public bool CanInspectSystemCursors { get; } @@ -234,6 +274,10 @@ items: commentId: M:OpenTK.Platform.ICursorComponent.GetSize(OpenTK.Platform.CursorHandle,System.Int32@,System.Int32@) - linkId: OpenTK.Platform.ICursorComponent.GetHotspot(OpenTK.Platform.CursorHandle,System.Int32@,System.Int32@) commentId: M:OpenTK.Platform.ICursorComponent.GetHotspot(OpenTK.Platform.CursorHandle,System.Int32@,System.Int32@) + - linkId: OpenTK.Platform.ICursorComponent.CanLoadSystemCursors + commentId: P:OpenTK.Platform.ICursorComponent.CanLoadSystemCursors + - linkId: OpenTK.Platform.ICursorComponent.Create(OpenTK.Platform.SystemCursorType) + commentId: M:OpenTK.Platform.ICursorComponent.Create(OpenTK.Platform.SystemCursorType) implements: - OpenTK.Platform.ICursorComponent.CanInspectSystemCursors - uid: OpenTK.Platform.Native.X11.X11CursorComponent.Create(OpenTK.Platform.SystemCursorType) @@ -250,12 +294,12 @@ items: source: id: Create path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11CursorComponent.cs - startLine: 58 + startLine: 63 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: Create a standard system cursor. - remarks: This function is only supported if is true. + remarks: This function is only supported if is true. example: [] syntax: content: public CursorHandle Create(SystemCursorType systemCursor) @@ -269,12 +313,16 @@ items: content.vb: Public Function Create(systemCursor As SystemCursorType) As CursorHandle overload: OpenTK.Platform.Native.X11.X11CursorComponent.Create* exceptions: - - type: OpenTK.Platform.PalNotImplementedException - commentId: T:OpenTK.Platform.PalNotImplementedException + - type: System.PlatformNotSupportedException + commentId: T:System.PlatformNotSupportedException description: Driver does not implement this function. See . - - type: OpenTK.Platform.PlatformException - commentId: T:OpenTK.Platform.PlatformException - description: System does not provide cursor type selected by systemCursor. + seealso: + - linkId: OpenTK.Platform.ICursorComponent.CanLoadSystemCursors + commentId: P:OpenTK.Platform.ICursorComponent.CanLoadSystemCursors + - linkId: OpenTK.Platform.SystemCursorType + commentId: T:OpenTK.Platform.SystemCursorType + - linkId: OpenTK.Platform.ICursorComponent.Destroy(OpenTK.Platform.CursorHandle) + commentId: M:OpenTK.Platform.ICursorComponent.Destroy(OpenTK.Platform.CursorHandle) implements: - OpenTK.Platform.ICursorComponent.Create(OpenTK.Platform.SystemCursorType) - uid: OpenTK.Platform.Native.X11.X11CursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.Int32,System.Int32) @@ -291,7 +339,7 @@ items: source: id: Create path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11CursorComponent.cs - startLine: 152 + startLine: 157 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 @@ -308,7 +356,7 @@ items: description: Height of the cursor image. - id: image type: System.ReadOnlySpan{System.Byte} - description: Buffer containing image data. + description: Buffer containing image data in RGBA order. - id: hotspotX type: System.Int32 description: The x coordinate of the cursor hotspot. @@ -323,10 +371,16 @@ items: exceptions: - type: System.ArgumentOutOfRangeException commentId: T:System.ArgumentOutOfRangeException - description: width or height is negative. + description: If width, height, hotspotX, or hotspotY are negative. + - type: System.ArgumentOutOfRangeException + commentId: T:System.ArgumentOutOfRangeException + description: If hotspotX or hotspotY are greater than width or height respectively. - type: System.ArgumentException commentId: T:System.ArgumentException description: image is smaller than specified dimensions. + seealso: + - linkId: OpenTK.Platform.ICursorComponent.Destroy(OpenTK.Platform.CursorHandle) + commentId: M:OpenTK.Platform.ICursorComponent.Destroy(OpenTK.Platform.CursorHandle) implements: - OpenTK.Platform.ICursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.Int32,System.Int32) nameWithType.vb: X11CursorComponent.Create(Integer, Integer, ReadOnlySpan(Of Byte), Integer, Integer) @@ -346,7 +400,7 @@ items: source: id: Create path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11CursorComponent.cs - startLine: 184 + startLine: 199 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 @@ -363,10 +417,10 @@ items: description: Height of the cursor image. - id: colorData type: System.ReadOnlySpan{System.Byte} - description: Buffer containing color data. + description: Buffer containing RGB color data. - id: maskData type: System.ReadOnlySpan{System.Byte} - description: Buffer containing mask data. + description: Buffer containing mask data. Pixels where the mask is 1 will be visible while mask value of 0 is transparent. - id: hotspotX type: System.Int32 description: The x coordinate of the cursor hotspot. @@ -381,10 +435,16 @@ items: exceptions: - type: System.ArgumentOutOfRangeException commentId: T:System.ArgumentOutOfRangeException - description: width or height is negative. + description: If width, height, hotspotX, or hotspotY are negative. + - type: System.ArgumentOutOfRangeException + commentId: T:System.ArgumentOutOfRangeException + description: If hotspotX or hotspotY are greater than width or height respectively. - type: System.ArgumentException commentId: T:System.ArgumentException description: colorData or maskData is smaller than specified dimensions. + seealso: + - linkId: OpenTK.Platform.ICursorComponent.Destroy(OpenTK.Platform.CursorHandle) + commentId: M:OpenTK.Platform.ICursorComponent.Destroy(OpenTK.Platform.CursorHandle) implements: - OpenTK.Platform.ICursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.ReadOnlySpan{System.Byte},System.Int32,System.Int32) nameWithType.vb: X11CursorComponent.Create(Integer, Integer, ReadOnlySpan(Of Byte), ReadOnlySpan(Of Byte), Integer, Integer) @@ -404,7 +464,7 @@ items: source: id: Destroy path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11CursorComponent.cs - startLine: 224 + startLine: 250 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 @@ -418,10 +478,13 @@ items: description: Handle to a cursor object. content.vb: Public Sub Destroy(handle As CursorHandle) overload: OpenTK.Platform.Native.X11.X11CursorComponent.Destroy* - exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: handle is null. + seealso: + - linkId: OpenTK.Platform.ICursorComponent.Create(OpenTK.Platform.SystemCursorType) + commentId: M:OpenTK.Platform.ICursorComponent.Create(OpenTK.Platform.SystemCursorType) + - linkId: OpenTK.Platform.ICursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.Int32,System.Int32) + commentId: M:OpenTK.Platform.ICursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.Int32,System.Int32) + - linkId: OpenTK.Platform.ICursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.ReadOnlySpan{System.Byte},System.Int32,System.Int32) + commentId: M:OpenTK.Platform.ICursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.ReadOnlySpan{System.Byte},System.Int32,System.Int32) implements: - OpenTK.Platform.ICursorComponent.Destroy(OpenTK.Platform.CursorHandle) - uid: OpenTK.Platform.Native.X11.X11CursorComponent.IsSystemCursor(OpenTK.Platform.CursorHandle) @@ -438,11 +501,11 @@ items: source: id: IsSystemCursor path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11CursorComponent.cs - startLine: 239 + startLine: 265 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 - summary: Returns true if this cursor is a system cursor. + summary: Returns true if this cursor is a system cursor. example: [] syntax: content: public bool IsSystemCursor(CursorHandle handle) @@ -458,6 +521,8 @@ items: seealso: - linkId: OpenTK.Platform.ICursorComponent.Create(OpenTK.Platform.SystemCursorType) commentId: M:OpenTK.Platform.ICursorComponent.Create(OpenTK.Platform.SystemCursorType) + - linkId: OpenTK.Platform.ICursorComponent.CanLoadSystemCursors + commentId: P:OpenTK.Platform.ICursorComponent.CanLoadSystemCursors implements: - OpenTK.Platform.ICursorComponent.IsSystemCursor(OpenTK.Platform.CursorHandle) - uid: OpenTK.Platform.Native.X11.X11CursorComponent.GetSize(OpenTK.Platform.CursorHandle,System.Int32@,System.Int32@) @@ -474,12 +539,12 @@ items: source: id: GetSize path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11CursorComponent.cs - startLine: 247 + startLine: 273 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: Get the size of the cursor image. - remarks: If handle is a system cursor and is false this function will fail. + remarks: If handle is a system cursor and is false this function will fail. example: [] syntax: content: public void GetSize(CursorHandle handle, out int width, out int height) @@ -495,10 +560,6 @@ items: description: Height of the cursor. content.vb: Public Sub GetSize(handle As CursorHandle, width As Integer, height As Integer) overload: OpenTK.Platform.Native.X11.X11CursorComponent.GetSize* - exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: handle is null. seealso: - linkId: OpenTK.Platform.ICursorComponent.IsSystemCursor(OpenTK.Platform.CursorHandle) commentId: M:OpenTK.Platform.ICursorComponent.IsSystemCursor(OpenTK.Platform.CursorHandle) @@ -523,14 +584,11 @@ items: source: id: GetHotspot path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11CursorComponent.cs - startLine: 261 + startLine: 287 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 - summary: >- - Get the hotspot location of the mouse cursor. - - Getting the hotspot of a system cursor is not guaranteed to be possible, check before trying. + summary: Get the hotspot location of the mouse cursor. remarks: If handle is a system cursor and is false this function will fail. example: [] syntax: @@ -547,10 +605,6 @@ items: description: Y coordinate of the hotspot. content.vb: Public Sub GetHotspot(handle As CursorHandle, x As Integer, y As Integer) overload: OpenTK.Platform.Native.X11.X11CursorComponent.GetHotspot* - exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: handle is null. seealso: - linkId: OpenTK.Platform.ICursorComponent.IsSystemCursor(OpenTK.Platform.CursorHandle) commentId: M:OpenTK.Platform.ICursorComponent.IsSystemCursor(OpenTK.Platform.CursorHandle) @@ -917,6 +971,19 @@ references: name: PalComponents nameWithType: PalComponents fullName: OpenTK.Platform.PalComponents +- uid: OpenTK.Core.Utility.ILogger + commentId: T:OpenTK.Core.Utility.ILogger + parent: OpenTK.Core.Utility + href: OpenTK.Core.Utility.ILogger.html + name: ILogger + nameWithType: ILogger + fullName: OpenTK.Core.Utility.ILogger +- uid: OpenTK.Platform.ToolkitOptions.Logger + commentId: P:OpenTK.Platform.ToolkitOptions.Logger + href: OpenTK.Platform.ToolkitOptions.html#OpenTK_Platform_ToolkitOptions_Logger + name: Logger + nameWithType: ToolkitOptions.Logger + fullName: OpenTK.Platform.ToolkitOptions.Logger - uid: OpenTK.Platform.Native.X11.X11CursorComponent.Logger* commentId: Overload:OpenTK.Platform.Native.X11.X11CursorComponent.Logger href: OpenTK.Platform.Native.X11.X11CursorComponent.html#OpenTK_Platform_Native_X11_X11CursorComponent_Logger @@ -930,13 +997,6 @@ references: name: Logger nameWithType: IPalComponent.Logger fullName: OpenTK.Platform.IPalComponent.Logger -- uid: OpenTK.Core.Utility.ILogger - commentId: T:OpenTK.Core.Utility.ILogger - parent: OpenTK.Core.Utility - href: OpenTK.Core.Utility.ILogger.html - name: ILogger - nameWithType: ILogger - fullName: OpenTK.Core.Utility.ILogger - uid: OpenTK.Core.Utility commentId: N:OpenTK.Core.Utility href: OpenTK.html @@ -967,6 +1027,37 @@ references: - uid: OpenTK.Core.Utility name: Utility href: OpenTK.Core.Utility.html +- uid: OpenTK.Platform.ToolkitOptions + commentId: T:OpenTK.Platform.ToolkitOptions + parent: OpenTK.Platform + href: OpenTK.Platform.ToolkitOptions.html + name: ToolkitOptions + nameWithType: ToolkitOptions + fullName: OpenTK.Platform.ToolkitOptions +- uid: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Init_OpenTK_Platform_ToolkitOptions_ + name: Init(ToolkitOptions) + nameWithType: Toolkit.Init(ToolkitOptions) + fullName: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + spec.csharp: + - uid: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + name: Init + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Init_OpenTK_Platform_ToolkitOptions_ + - name: ( + - uid: OpenTK.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Platform.ToolkitOptions.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + name: Init + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Init_OpenTK_Platform_ToolkitOptions_ + - name: ( + - uid: OpenTK.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Platform.ToolkitOptions.html + - name: ) - uid: OpenTK.Platform.Native.X11.X11CursorComponent.Initialize* commentId: Overload:OpenTK.Platform.Native.X11.X11CursorComponent.Initialize href: OpenTK.Platform.Native.X11.X11CursorComponent.html#OpenTK_Platform_Native_X11_X11CursorComponent_Initialize_OpenTK_Platform_ToolkitOptions_ @@ -998,13 +1089,49 @@ references: name: ToolkitOptions href: OpenTK.Platform.ToolkitOptions.html - name: ) -- uid: OpenTK.Platform.ToolkitOptions - commentId: T:OpenTK.Platform.ToolkitOptions - parent: OpenTK.Platform - href: OpenTK.Platform.ToolkitOptions.html - name: ToolkitOptions - nameWithType: ToolkitOptions - fullName: OpenTK.Platform.ToolkitOptions +- uid: OpenTK.Platform.Toolkit.Uninit + commentId: M:OpenTK.Platform.Toolkit.Uninit + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Uninit + name: Uninit() + nameWithType: Toolkit.Uninit() + fullName: OpenTK.Platform.Toolkit.Uninit() + spec.csharp: + - uid: OpenTK.Platform.Toolkit.Uninit + name: Uninit + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Uninit + - name: ( + - name: ) + spec.vb: + - uid: OpenTK.Platform.Toolkit.Uninit + name: Uninit + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Uninit + - name: ( + - name: ) +- uid: OpenTK.Platform.Native.X11.X11CursorComponent.Uninitialize* + commentId: Overload:OpenTK.Platform.Native.X11.X11CursorComponent.Uninitialize + href: OpenTK.Platform.Native.X11.X11CursorComponent.html#OpenTK_Platform_Native_X11_X11CursorComponent_Uninitialize + name: Uninitialize + nameWithType: X11CursorComponent.Uninitialize + fullName: OpenTK.Platform.Native.X11.X11CursorComponent.Uninitialize +- uid: OpenTK.Platform.IPalComponent.Uninitialize + commentId: M:OpenTK.Platform.IPalComponent.Uninitialize + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + name: Uninitialize() + nameWithType: IPalComponent.Uninitialize() + fullName: OpenTK.Platform.IPalComponent.Uninitialize() + spec.csharp: + - uid: OpenTK.Platform.IPalComponent.Uninitialize + name: Uninitialize + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + - name: ( + - name: ) + spec.vb: + - uid: OpenTK.Platform.IPalComponent.Uninitialize + name: Uninitialize + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + - name: ( + - name: ) - uid: OpenTK.Platform.ICursorComponent.Create(OpenTK.Platform.SystemCursorType) commentId: M:OpenTK.Platform.ICursorComponent.Create(OpenTK.Platform.SystemCursorType) parent: OpenTK.Platform.ICursorComponent @@ -1181,24 +1308,6 @@ references: name: CanInspectSystemCursors nameWithType: ICursorComponent.CanInspectSystemCursors fullName: OpenTK.Platform.ICursorComponent.CanInspectSystemCursors -- uid: OpenTK.Platform.PalNotImplementedException - commentId: T:OpenTK.Platform.PalNotImplementedException - href: OpenTK.Platform.PalNotImplementedException.html - name: PalNotImplementedException - nameWithType: PalNotImplementedException - fullName: OpenTK.Platform.PalNotImplementedException -- uid: OpenTK.Platform.PlatformException - commentId: T:OpenTK.Platform.PlatformException - href: OpenTK.Platform.PlatformException.html - name: PlatformException - nameWithType: PlatformException - fullName: OpenTK.Platform.PlatformException -- uid: OpenTK.Platform.Native.X11.X11CursorComponent.Create* - commentId: Overload:OpenTK.Platform.Native.X11.X11CursorComponent.Create - href: OpenTK.Platform.Native.X11.X11CursorComponent.html#OpenTK_Platform_Native_X11_X11CursorComponent_Create_OpenTK_Platform_SystemCursorType_ - name: Create - nameWithType: X11CursorComponent.Create - fullName: OpenTK.Platform.Native.X11.X11CursorComponent.Create - uid: OpenTK.Platform.SystemCursorType commentId: T:OpenTK.Platform.SystemCursorType parent: OpenTK.Platform @@ -1206,6 +1315,44 @@ references: name: SystemCursorType nameWithType: SystemCursorType fullName: OpenTK.Platform.SystemCursorType +- uid: OpenTK.Platform.ICursorComponent.Destroy(OpenTK.Platform.CursorHandle) + commentId: M:OpenTK.Platform.ICursorComponent.Destroy(OpenTK.Platform.CursorHandle) + parent: OpenTK.Platform.ICursorComponent + href: OpenTK.Platform.ICursorComponent.html#OpenTK_Platform_ICursorComponent_Destroy_OpenTK_Platform_CursorHandle_ + name: Destroy(CursorHandle) + nameWithType: ICursorComponent.Destroy(CursorHandle) + fullName: OpenTK.Platform.ICursorComponent.Destroy(OpenTK.Platform.CursorHandle) + spec.csharp: + - uid: OpenTK.Platform.ICursorComponent.Destroy(OpenTK.Platform.CursorHandle) + name: Destroy + href: OpenTK.Platform.ICursorComponent.html#OpenTK_Platform_ICursorComponent_Destroy_OpenTK_Platform_CursorHandle_ + - name: ( + - uid: OpenTK.Platform.CursorHandle + name: CursorHandle + href: OpenTK.Platform.CursorHandle.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.ICursorComponent.Destroy(OpenTK.Platform.CursorHandle) + name: Destroy + href: OpenTK.Platform.ICursorComponent.html#OpenTK_Platform_ICursorComponent_Destroy_OpenTK_Platform_CursorHandle_ + - name: ( + - uid: OpenTK.Platform.CursorHandle + name: CursorHandle + href: OpenTK.Platform.CursorHandle.html + - name: ) +- uid: System.PlatformNotSupportedException + commentId: T:System.PlatformNotSupportedException + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.platformnotsupportedexception + name: PlatformNotSupportedException + nameWithType: PlatformNotSupportedException + fullName: System.PlatformNotSupportedException +- uid: OpenTK.Platform.Native.X11.X11CursorComponent.Create* + commentId: Overload:OpenTK.Platform.Native.X11.X11CursorComponent.Create + href: OpenTK.Platform.Native.X11.X11CursorComponent.html#OpenTK_Platform_Native_X11_X11CursorComponent_Create_OpenTK_Platform_SystemCursorType_ + name: Create + nameWithType: X11CursorComponent.Create + fullName: OpenTK.Platform.Native.X11.X11CursorComponent.Create - uid: OpenTK.Platform.CursorHandle commentId: T:OpenTK.Platform.CursorHandle parent: OpenTK.Platform @@ -1513,44 +1660,12 @@ references: isExternal: true href: https://learn.microsoft.com/dotnet/api/system.int32 - name: ) -- uid: System.ArgumentNullException - commentId: T:System.ArgumentNullException - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.argumentnullexception - name: ArgumentNullException - nameWithType: ArgumentNullException - fullName: System.ArgumentNullException - uid: OpenTK.Platform.Native.X11.X11CursorComponent.Destroy* commentId: Overload:OpenTK.Platform.Native.X11.X11CursorComponent.Destroy href: OpenTK.Platform.Native.X11.X11CursorComponent.html#OpenTK_Platform_Native_X11_X11CursorComponent_Destroy_OpenTK_Platform_CursorHandle_ name: Destroy nameWithType: X11CursorComponent.Destroy fullName: OpenTK.Platform.Native.X11.X11CursorComponent.Destroy -- uid: OpenTK.Platform.ICursorComponent.Destroy(OpenTK.Platform.CursorHandle) - commentId: M:OpenTK.Platform.ICursorComponent.Destroy(OpenTK.Platform.CursorHandle) - parent: OpenTK.Platform.ICursorComponent - href: OpenTK.Platform.ICursorComponent.html#OpenTK_Platform_ICursorComponent_Destroy_OpenTK_Platform_CursorHandle_ - name: Destroy(CursorHandle) - nameWithType: ICursorComponent.Destroy(CursorHandle) - fullName: OpenTK.Platform.ICursorComponent.Destroy(OpenTK.Platform.CursorHandle) - spec.csharp: - - uid: OpenTK.Platform.ICursorComponent.Destroy(OpenTK.Platform.CursorHandle) - name: Destroy - href: OpenTK.Platform.ICursorComponent.html#OpenTK_Platform_ICursorComponent_Destroy_OpenTK_Platform_CursorHandle_ - - name: ( - - uid: OpenTK.Platform.CursorHandle - name: CursorHandle - href: OpenTK.Platform.CursorHandle.html - - name: ) - spec.vb: - - uid: OpenTK.Platform.ICursorComponent.Destroy(OpenTK.Platform.CursorHandle) - name: Destroy - href: OpenTK.Platform.ICursorComponent.html#OpenTK_Platform_ICursorComponent_Destroy_OpenTK_Platform_CursorHandle_ - - name: ( - - uid: OpenTK.Platform.CursorHandle - name: CursorHandle - href: OpenTK.Platform.CursorHandle.html - - name: ) - uid: OpenTK.Platform.Native.X11.X11CursorComponent.IsSystemCursor* commentId: Overload:OpenTK.Platform.Native.X11.X11CursorComponent.IsSystemCursor href: OpenTK.Platform.Native.X11.X11CursorComponent.html#OpenTK_Platform_Native_X11_X11CursorComponent_IsSystemCursor_OpenTK_Platform_CursorHandle_ diff --git a/api/OpenTK.Platform.Native.X11.X11DialogComponent.yml b/api/OpenTK.Platform.Native.X11.X11DialogComponent.yml index 78665017..dbaa4d17 100644 --- a/api/OpenTK.Platform.Native.X11.X11DialogComponent.yml +++ b/api/OpenTK.Platform.Native.X11.X11DialogComponent.yml @@ -13,6 +13,7 @@ items: - OpenTK.Platform.Native.X11.X11DialogComponent.ShowMessageBox(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.MessageBoxType,OpenTK.Platform.IconHandle) - OpenTK.Platform.Native.X11.X11DialogComponent.ShowOpenDialog(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.DialogFileFilter[],OpenTK.Platform.OpenDialogOptions) - OpenTK.Platform.Native.X11.X11DialogComponent.ShowSaveDialog(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.DialogFileFilter[],OpenTK.Platform.SaveDialogOptions) + - OpenTK.Platform.Native.X11.X11DialogComponent.Uninitialize langs: - csharp - vb @@ -119,7 +120,7 @@ items: assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 - summary: Provides a logger for this component. + summary: The logger that this component uses to log diagnostic messages. example: [] syntax: content: public ILogger? Logger { get; set; } @@ -128,6 +129,11 @@ items: type: OpenTK.Core.Utility.ILogger content.vb: Public Property Logger As ILogger overload: OpenTK.Platform.Native.X11.X11DialogComponent.Logger* + seealso: + - linkId: OpenTK.Core.Utility.ILogger + commentId: T:OpenTK.Core.Utility.ILogger + - linkId: OpenTK.Platform.ToolkitOptions.Logger + commentId: P:OpenTK.Platform.ToolkitOptions.Logger implements: - OpenTK.Platform.IPalComponent.Logger - uid: OpenTK.Platform.Native.X11.X11DialogComponent.Initialize(OpenTK.Platform.ToolkitOptions) @@ -158,8 +164,42 @@ items: description: The options to initialize the component with. content.vb: Public Sub Initialize(options As ToolkitOptions) overload: OpenTK.Platform.Native.X11.X11DialogComponent.Initialize* + seealso: + - linkId: OpenTK.Platform.ToolkitOptions + commentId: T:OpenTK.Platform.ToolkitOptions + - linkId: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) implements: - OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) +- uid: OpenTK.Platform.Native.X11.X11DialogComponent.Uninitialize + commentId: M:OpenTK.Platform.Native.X11.X11DialogComponent.Uninitialize + id: Uninitialize + parent: OpenTK.Platform.Native.X11.X11DialogComponent + langs: + - csharp + - vb + name: Uninitialize() + nameWithType: X11DialogComponent.Uninitialize() + fullName: OpenTK.Platform.Native.X11.X11DialogComponent.Uninitialize() + type: Method + source: + id: Uninitialize + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11DialogComponent.cs + startLine: 67 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform.Native.X11 + summary: Uninitialize the component. Frees any native resources used by the component. + example: [] + syntax: + content: public void Uninitialize() + content.vb: Public Sub Uninitialize() + overload: OpenTK.Platform.Native.X11.X11DialogComponent.Uninitialize* + seealso: + - linkId: OpenTK.Platform.Toolkit.Uninit + commentId: M:OpenTK.Platform.Toolkit.Uninit + implements: + - OpenTK.Platform.IPalComponent.Uninitialize - uid: OpenTK.Platform.Native.X11.X11DialogComponent.CanTargetFolders commentId: P:OpenTK.Platform.Native.X11.X11DialogComponent.CanTargetFolders id: CanTargetFolders @@ -174,14 +214,14 @@ items: source: id: CanTargetFolders path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11DialogComponent.cs - startLine: 69 + startLine: 74 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: >- If the value of this property is true will work. - Otherwise these flags will be ignored. + Otherwise this flag will be ignored. example: [] syntax: content: public bool CanTargetFolders { get; } @@ -191,6 +231,8 @@ items: content.vb: Public ReadOnly Property CanTargetFolders As Boolean overload: OpenTK.Platform.Native.X11.X11DialogComponent.CanTargetFolders* seealso: + - linkId: OpenTK.Platform.Toolkit.Dialog + commentId: P:OpenTK.Platform.Toolkit.Dialog - linkId: OpenTK.Platform.OpenDialogOptions.SelectDirectory commentId: F:OpenTK.Platform.OpenDialogOptions.SelectDirectory - linkId: OpenTK.Platform.IDialogComponent.ShowOpenDialog(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.DialogFileFilter[],OpenTK.Platform.OpenDialogOptions) @@ -211,11 +253,12 @@ items: source: id: ShowMessageBox path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11DialogComponent.cs - startLine: 333 + startLine: 345 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: Shows a modal message box. + remarks: This function runs a modal event loop and will only return once the dialog has been dissmissed by pressing any of it's buttons. example: [] syntax: content: public MessageBoxButton ShowMessageBox(WindowHandle parent, string title, string content, MessageBoxType messageBoxType, IconHandle? customIcon = null) @@ -228,7 +271,7 @@ items: description: The title of the dialog box. - id: content type: System.String - description: The content text of the dialog box. + description: The content text of the dialog box. This is the prompt to the user, explain what they should do. - id: messageBoxType type: OpenTK.Platform.MessageBoxType description: The type of message box. Determines button layout and default icon. @@ -240,6 +283,15 @@ items: description: The pressed message box button. content.vb: Public Function ShowMessageBox(parent As WindowHandle, title As String, content As String, messageBoxType As MessageBoxType, customIcon As IconHandle = Nothing) As MessageBoxButton overload: OpenTK.Platform.Native.X11.X11DialogComponent.ShowMessageBox* + seealso: + - linkId: OpenTK.Platform.MessageBoxType + commentId: T:OpenTK.Platform.MessageBoxType + - linkId: OpenTK.Platform.MessageBoxButton + commentId: T:OpenTK.Platform.MessageBoxButton + - linkId: OpenTK.Platform.Toolkit.Icon + commentId: P:OpenTK.Platform.Toolkit.Icon + - linkId: OpenTK.Platform.IIconComponent + commentId: T:OpenTK.Platform.IIconComponent implements: - OpenTK.Platform.IDialogComponent.ShowMessageBox(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.MessageBoxType,OpenTK.Platform.IconHandle) nameWithType.vb: X11DialogComponent.ShowMessageBox(WindowHandle, String, String, MessageBoxType, IconHandle) @@ -259,11 +311,12 @@ items: source: id: ShowOpenDialog path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11DialogComponent.cs - startLine: 477 + startLine: 489 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: Shows a modal "open file/folder" dialog. + remarks: This function runs a modal event loop and will only return once the dialog has been dissmissed by pressing any of it's buttons. example: [] syntax: content: public List? ShowOpenDialog(WindowHandle parent, string title, string directory, DialogFileFilter[]? allowedExtensions, OpenDialogOptions options) @@ -319,11 +372,12 @@ items: source: id: ShowSaveDialog path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11DialogComponent.cs - startLine: 543 + startLine: 572 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: Shows a modal "save file" dialog. + remarks: This function runs a modal event loop and will only return once the dialog has been dissmissed by pressing any of it's buttons. example: [] syntax: content: public string? ShowSaveDialog(WindowHandle parent, string title, string directory, DialogFileFilter[]? allowedExtensions, SaveDialogOptions options) @@ -714,6 +768,19 @@ references: name: PalComponents nameWithType: PalComponents fullName: OpenTK.Platform.PalComponents +- uid: OpenTK.Core.Utility.ILogger + commentId: T:OpenTK.Core.Utility.ILogger + parent: OpenTK.Core.Utility + href: OpenTK.Core.Utility.ILogger.html + name: ILogger + nameWithType: ILogger + fullName: OpenTK.Core.Utility.ILogger +- uid: OpenTK.Platform.ToolkitOptions.Logger + commentId: P:OpenTK.Platform.ToolkitOptions.Logger + href: OpenTK.Platform.ToolkitOptions.html#OpenTK_Platform_ToolkitOptions_Logger + name: Logger + nameWithType: ToolkitOptions.Logger + fullName: OpenTK.Platform.ToolkitOptions.Logger - uid: OpenTK.Platform.Native.X11.X11DialogComponent.Logger* commentId: Overload:OpenTK.Platform.Native.X11.X11DialogComponent.Logger href: OpenTK.Platform.Native.X11.X11DialogComponent.html#OpenTK_Platform_Native_X11_X11DialogComponent_Logger @@ -727,13 +794,6 @@ references: name: Logger nameWithType: IPalComponent.Logger fullName: OpenTK.Platform.IPalComponent.Logger -- uid: OpenTK.Core.Utility.ILogger - commentId: T:OpenTK.Core.Utility.ILogger - parent: OpenTK.Core.Utility - href: OpenTK.Core.Utility.ILogger.html - name: ILogger - nameWithType: ILogger - fullName: OpenTK.Core.Utility.ILogger - uid: OpenTK.Core.Utility commentId: N:OpenTK.Core.Utility href: OpenTK.html @@ -764,6 +824,37 @@ references: - uid: OpenTK.Core.Utility name: Utility href: OpenTK.Core.Utility.html +- uid: OpenTK.Platform.ToolkitOptions + commentId: T:OpenTK.Platform.ToolkitOptions + parent: OpenTK.Platform + href: OpenTK.Platform.ToolkitOptions.html + name: ToolkitOptions + nameWithType: ToolkitOptions + fullName: OpenTK.Platform.ToolkitOptions +- uid: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Init_OpenTK_Platform_ToolkitOptions_ + name: Init(ToolkitOptions) + nameWithType: Toolkit.Init(ToolkitOptions) + fullName: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + spec.csharp: + - uid: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + name: Init + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Init_OpenTK_Platform_ToolkitOptions_ + - name: ( + - uid: OpenTK.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Platform.ToolkitOptions.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + name: Init + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Init_OpenTK_Platform_ToolkitOptions_ + - name: ( + - uid: OpenTK.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Platform.ToolkitOptions.html + - name: ) - uid: OpenTK.Platform.Native.X11.X11DialogComponent.Initialize* commentId: Overload:OpenTK.Platform.Native.X11.X11DialogComponent.Initialize href: OpenTK.Platform.Native.X11.X11DialogComponent.html#OpenTK_Platform_Native_X11_X11DialogComponent_Initialize_OpenTK_Platform_ToolkitOptions_ @@ -795,13 +886,55 @@ references: name: ToolkitOptions href: OpenTK.Platform.ToolkitOptions.html - name: ) -- uid: OpenTK.Platform.ToolkitOptions - commentId: T:OpenTK.Platform.ToolkitOptions - parent: OpenTK.Platform - href: OpenTK.Platform.ToolkitOptions.html - name: ToolkitOptions - nameWithType: ToolkitOptions - fullName: OpenTK.Platform.ToolkitOptions +- uid: OpenTK.Platform.Toolkit.Uninit + commentId: M:OpenTK.Platform.Toolkit.Uninit + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Uninit + name: Uninit() + nameWithType: Toolkit.Uninit() + fullName: OpenTK.Platform.Toolkit.Uninit() + spec.csharp: + - uid: OpenTK.Platform.Toolkit.Uninit + name: Uninit + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Uninit + - name: ( + - name: ) + spec.vb: + - uid: OpenTK.Platform.Toolkit.Uninit + name: Uninit + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Uninit + - name: ( + - name: ) +- uid: OpenTK.Platform.Native.X11.X11DialogComponent.Uninitialize* + commentId: Overload:OpenTK.Platform.Native.X11.X11DialogComponent.Uninitialize + href: OpenTK.Platform.Native.X11.X11DialogComponent.html#OpenTK_Platform_Native_X11_X11DialogComponent_Uninitialize + name: Uninitialize + nameWithType: X11DialogComponent.Uninitialize + fullName: OpenTK.Platform.Native.X11.X11DialogComponent.Uninitialize +- uid: OpenTK.Platform.IPalComponent.Uninitialize + commentId: M:OpenTK.Platform.IPalComponent.Uninitialize + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + name: Uninitialize() + nameWithType: IPalComponent.Uninitialize() + fullName: OpenTK.Platform.IPalComponent.Uninitialize() + spec.csharp: + - uid: OpenTK.Platform.IPalComponent.Uninitialize + name: Uninitialize + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + - name: ( + - name: ) + spec.vb: + - uid: OpenTK.Platform.IPalComponent.Uninitialize + name: Uninitialize + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + - name: ( + - name: ) +- uid: OpenTK.Platform.Toolkit.Dialog + commentId: P:OpenTK.Platform.Toolkit.Dialog + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Dialog + name: Dialog + nameWithType: Toolkit.Dialog + fullName: OpenTK.Platform.Toolkit.Dialog - uid: OpenTK.Platform.OpenDialogOptions.SelectDirectory commentId: F:OpenTK.Platform.OpenDialogOptions.SelectDirectory href: OpenTK.Platform.OpenDialogOptions.html#OpenTK_Platform_OpenDialogOptions_SelectDirectory @@ -909,6 +1042,33 @@ references: nameWithType.vb: Boolean fullName.vb: Boolean name.vb: Boolean +- uid: OpenTK.Platform.MessageBoxType + commentId: T:OpenTK.Platform.MessageBoxType + parent: OpenTK.Platform + href: OpenTK.Platform.MessageBoxType.html + name: MessageBoxType + nameWithType: MessageBoxType + fullName: OpenTK.Platform.MessageBoxType +- uid: OpenTK.Platform.MessageBoxButton + commentId: T:OpenTK.Platform.MessageBoxButton + parent: OpenTK.Platform + href: OpenTK.Platform.MessageBoxButton.html + name: MessageBoxButton + nameWithType: MessageBoxButton + fullName: OpenTK.Platform.MessageBoxButton +- uid: OpenTK.Platform.Toolkit.Icon + commentId: P:OpenTK.Platform.Toolkit.Icon + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Icon + name: Icon + nameWithType: Toolkit.Icon + fullName: OpenTK.Platform.Toolkit.Icon +- uid: OpenTK.Platform.IIconComponent + commentId: T:OpenTK.Platform.IIconComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IIconComponent.html + name: IIconComponent + nameWithType: IIconComponent + fullName: OpenTK.Platform.IIconComponent - uid: OpenTK.Platform.Native.X11.X11DialogComponent.ShowMessageBox* commentId: Overload:OpenTK.Platform.Native.X11.X11DialogComponent.ShowMessageBox href: OpenTK.Platform.Native.X11.X11DialogComponent.html#OpenTK_Platform_Native_X11_X11DialogComponent_ShowMessageBox_OpenTK_Platform_WindowHandle_System_String_System_String_OpenTK_Platform_MessageBoxType_OpenTK_Platform_IconHandle_ @@ -995,13 +1155,6 @@ references: name: WindowHandle nameWithType: WindowHandle fullName: OpenTK.Platform.WindowHandle -- uid: OpenTK.Platform.MessageBoxType - commentId: T:OpenTK.Platform.MessageBoxType - parent: OpenTK.Platform - href: OpenTK.Platform.MessageBoxType.html - name: MessageBoxType - nameWithType: MessageBoxType - fullName: OpenTK.Platform.MessageBoxType - uid: OpenTK.Platform.IconHandle commentId: T:OpenTK.Platform.IconHandle parent: OpenTK.Platform @@ -1009,13 +1162,6 @@ references: name: IconHandle nameWithType: IconHandle fullName: OpenTK.Platform.IconHandle -- uid: OpenTK.Platform.MessageBoxButton - commentId: T:OpenTK.Platform.MessageBoxButton - parent: OpenTK.Platform - href: OpenTK.Platform.MessageBoxButton.html - name: MessageBoxButton - nameWithType: MessageBoxButton - fullName: OpenTK.Platform.MessageBoxButton - uid: OpenTK.Platform.DialogFileFilter commentId: T:OpenTK.Platform.DialogFileFilter parent: OpenTK.Platform diff --git a/api/OpenTK.Platform.Native.X11.X11DisplayComponent.yml b/api/OpenTK.Platform.Native.X11.X11DisplayComponent.yml index 4b5f4184..597edbdf 100644 --- a/api/OpenTK.Platform.Native.X11.X11DisplayComponent.yml +++ b/api/OpenTK.Platform.Native.X11.X11DisplayComponent.yml @@ -25,6 +25,7 @@ items: - OpenTK.Platform.Native.X11.X11DisplayComponent.Open(System.Int32) - OpenTK.Platform.Native.X11.X11DisplayComponent.OpenPrimary - OpenTK.Platform.Native.X11.X11DisplayComponent.Provides + - OpenTK.Platform.Native.X11.X11DisplayComponent.Uninitialize langs: - csharp - vb @@ -131,7 +132,7 @@ items: assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 - summary: Provides a logger for this component. + summary: The logger that this component uses to log diagnostic messages. example: [] syntax: content: public ILogger? Logger { get; set; } @@ -140,6 +141,11 @@ items: type: OpenTK.Core.Utility.ILogger content.vb: Public Property Logger As ILogger overload: OpenTK.Platform.Native.X11.X11DisplayComponent.Logger* + seealso: + - linkId: OpenTK.Core.Utility.ILogger + commentId: T:OpenTK.Core.Utility.ILogger + - linkId: OpenTK.Platform.ToolkitOptions.Logger + commentId: P:OpenTK.Platform.ToolkitOptions.Logger implements: - OpenTK.Platform.IPalComponent.Logger - uid: OpenTK.Platform.Native.X11.X11DisplayComponent.CanGetVirtualPosition @@ -199,8 +205,42 @@ items: description: The options to initialize the component with. content.vb: Public Sub Initialize(options As ToolkitOptions) overload: OpenTK.Platform.Native.X11.X11DisplayComponent.Initialize* + seealso: + - linkId: OpenTK.Platform.ToolkitOptions + commentId: T:OpenTK.Platform.ToolkitOptions + - linkId: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) implements: - OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) +- uid: OpenTK.Platform.Native.X11.X11DisplayComponent.Uninitialize + commentId: M:OpenTK.Platform.Native.X11.X11DisplayComponent.Uninitialize + id: Uninitialize + parent: OpenTK.Platform.Native.X11.X11DisplayComponent + langs: + - csharp + - vb + name: Uninitialize() + nameWithType: X11DisplayComponent.Uninitialize() + fullName: OpenTK.Platform.Native.X11.X11DisplayComponent.Uninitialize() + type: Method + source: + id: Uninitialize + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11DisplayComponent.cs + startLine: 369 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform.Native.X11 + summary: Uninitialize the component. Frees any native resources used by the component. + example: [] + syntax: + content: public void Uninitialize() + content.vb: Public Sub Uninitialize() + overload: OpenTK.Platform.Native.X11.X11DisplayComponent.Uninitialize* + seealso: + - linkId: OpenTK.Platform.Toolkit.Uninit + commentId: M:OpenTK.Platform.Toolkit.Uninit + implements: + - OpenTK.Platform.IPalComponent.Uninitialize - uid: OpenTK.Platform.Native.X11.X11DisplayComponent.GetDisplayCount commentId: M:OpenTK.Platform.Native.X11.X11DisplayComponent.GetDisplayCount id: GetDisplayCount @@ -215,7 +255,7 @@ items: source: id: GetDisplayCount path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11DisplayComponent.cs - startLine: 453 + startLine: 467 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 @@ -244,7 +284,7 @@ items: source: id: Open path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11DisplayComponent.cs - startLine: 459 + startLine: 473 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 @@ -284,7 +324,7 @@ items: source: id: OpenPrimary path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11DisplayComponent.cs - startLine: 469 + startLine: 483 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 @@ -313,7 +353,7 @@ items: source: id: Close path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11DisplayComponent.cs - startLine: 475 + startLine: 489 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 @@ -347,7 +387,7 @@ items: source: id: IsPrimary path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11DisplayComponent.cs - startLine: 482 + startLine: 496 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 @@ -380,7 +420,7 @@ items: source: id: GetName path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11DisplayComponent.cs - startLine: 491 + startLine: 505 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 @@ -417,7 +457,7 @@ items: source: id: GetVideoMode path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11DisplayComponent.cs - startLine: 498 + startLine: 512 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 @@ -457,7 +497,7 @@ items: source: id: GetSupportedVideoModes path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11DisplayComponent.cs - startLine: 573 + startLine: 587 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 @@ -494,7 +534,7 @@ items: source: id: GetVirtualPosition path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11DisplayComponent.cs - startLine: 606 + startLine: 620 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 @@ -540,7 +580,7 @@ items: source: id: GetResolution path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11DisplayComponent.cs - startLine: 636 + startLine: 650 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 @@ -583,7 +623,7 @@ items: source: id: GetWorkArea path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11DisplayComponent.cs - startLine: 667 + startLine: 681 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 @@ -622,7 +662,7 @@ items: source: id: GetRefreshRate path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11DisplayComponent.cs - startLine: 760 + startLine: 795 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 @@ -658,7 +698,7 @@ items: source: id: GetDisplayScale path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11DisplayComponent.cs - startLine: 805 + startLine: 842 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 @@ -697,7 +737,7 @@ items: source: id: GetRRCrtc path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11DisplayComponent.cs - startLine: 820 + startLine: 861 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 @@ -728,7 +768,7 @@ items: source: id: GetRROutput path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11DisplayComponent.cs - startLine: 835 + startLine: 876 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 @@ -1101,6 +1141,19 @@ references: name: PalComponents nameWithType: PalComponents fullName: OpenTK.Platform.PalComponents +- uid: OpenTK.Core.Utility.ILogger + commentId: T:OpenTK.Core.Utility.ILogger + parent: OpenTK.Core.Utility + href: OpenTK.Core.Utility.ILogger.html + name: ILogger + nameWithType: ILogger + fullName: OpenTK.Core.Utility.ILogger +- uid: OpenTK.Platform.ToolkitOptions.Logger + commentId: P:OpenTK.Platform.ToolkitOptions.Logger + href: OpenTK.Platform.ToolkitOptions.html#OpenTK_Platform_ToolkitOptions_Logger + name: Logger + nameWithType: ToolkitOptions.Logger + fullName: OpenTK.Platform.ToolkitOptions.Logger - uid: OpenTK.Platform.Native.X11.X11DisplayComponent.Logger* commentId: Overload:OpenTK.Platform.Native.X11.X11DisplayComponent.Logger href: OpenTK.Platform.Native.X11.X11DisplayComponent.html#OpenTK_Platform_Native_X11_X11DisplayComponent_Logger @@ -1114,13 +1167,6 @@ references: name: Logger nameWithType: IPalComponent.Logger fullName: OpenTK.Platform.IPalComponent.Logger -- uid: OpenTK.Core.Utility.ILogger - commentId: T:OpenTK.Core.Utility.ILogger - parent: OpenTK.Core.Utility - href: OpenTK.Core.Utility.ILogger.html - name: ILogger - nameWithType: ILogger - fullName: OpenTK.Core.Utility.ILogger - uid: OpenTK.Core.Utility commentId: N:OpenTK.Core.Utility href: OpenTK.html @@ -1232,6 +1278,37 @@ references: nameWithType.vb: Boolean fullName.vb: Boolean name.vb: Boolean +- uid: OpenTK.Platform.ToolkitOptions + commentId: T:OpenTK.Platform.ToolkitOptions + parent: OpenTK.Platform + href: OpenTK.Platform.ToolkitOptions.html + name: ToolkitOptions + nameWithType: ToolkitOptions + fullName: OpenTK.Platform.ToolkitOptions +- uid: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Init_OpenTK_Platform_ToolkitOptions_ + name: Init(ToolkitOptions) + nameWithType: Toolkit.Init(ToolkitOptions) + fullName: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + spec.csharp: + - uid: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + name: Init + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Init_OpenTK_Platform_ToolkitOptions_ + - name: ( + - uid: OpenTK.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Platform.ToolkitOptions.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + name: Init + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Init_OpenTK_Platform_ToolkitOptions_ + - name: ( + - uid: OpenTK.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Platform.ToolkitOptions.html + - name: ) - uid: OpenTK.Platform.Native.X11.X11DisplayComponent.Initialize* commentId: Overload:OpenTK.Platform.Native.X11.X11DisplayComponent.Initialize href: OpenTK.Platform.Native.X11.X11DisplayComponent.html#OpenTK_Platform_Native_X11_X11DisplayComponent_Initialize_OpenTK_Platform_ToolkitOptions_ @@ -1263,13 +1340,49 @@ references: name: ToolkitOptions href: OpenTK.Platform.ToolkitOptions.html - name: ) -- uid: OpenTK.Platform.ToolkitOptions - commentId: T:OpenTK.Platform.ToolkitOptions - parent: OpenTK.Platform - href: OpenTK.Platform.ToolkitOptions.html - name: ToolkitOptions - nameWithType: ToolkitOptions - fullName: OpenTK.Platform.ToolkitOptions +- uid: OpenTK.Platform.Toolkit.Uninit + commentId: M:OpenTK.Platform.Toolkit.Uninit + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Uninit + name: Uninit() + nameWithType: Toolkit.Uninit() + fullName: OpenTK.Platform.Toolkit.Uninit() + spec.csharp: + - uid: OpenTK.Platform.Toolkit.Uninit + name: Uninit + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Uninit + - name: ( + - name: ) + spec.vb: + - uid: OpenTK.Platform.Toolkit.Uninit + name: Uninit + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Uninit + - name: ( + - name: ) +- uid: OpenTK.Platform.Native.X11.X11DisplayComponent.Uninitialize* + commentId: Overload:OpenTK.Platform.Native.X11.X11DisplayComponent.Uninitialize + href: OpenTK.Platform.Native.X11.X11DisplayComponent.html#OpenTK_Platform_Native_X11_X11DisplayComponent_Uninitialize + name: Uninitialize + nameWithType: X11DisplayComponent.Uninitialize + fullName: OpenTK.Platform.Native.X11.X11DisplayComponent.Uninitialize +- uid: OpenTK.Platform.IPalComponent.Uninitialize + commentId: M:OpenTK.Platform.IPalComponent.Uninitialize + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + name: Uninitialize() + nameWithType: IPalComponent.Uninitialize() + fullName: OpenTK.Platform.IPalComponent.Uninitialize() + spec.csharp: + - uid: OpenTK.Platform.IPalComponent.Uninitialize + name: Uninitialize + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + - name: ( + - name: ) + spec.vb: + - uid: OpenTK.Platform.IPalComponent.Uninitialize + name: Uninitialize + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + - name: ( + - name: ) - uid: OpenTK.Platform.Native.X11.X11DisplayComponent.GetDisplayCount* commentId: Overload:OpenTK.Platform.Native.X11.X11DisplayComponent.GetDisplayCount href: OpenTK.Platform.Native.X11.X11DisplayComponent.html#OpenTK_Platform_Native_X11_X11DisplayComponent_GetDisplayCount diff --git a/api/OpenTK.Platform.Native.X11.X11IconComponent.yml b/api/OpenTK.Platform.Native.X11.X11IconComponent.yml index aebc4177..c78a7f03 100644 --- a/api/OpenTK.Platform.Native.X11.X11IconComponent.yml +++ b/api/OpenTK.Platform.Native.X11.X11IconComponent.yml @@ -15,6 +15,7 @@ items: - OpenTK.Platform.Native.X11.X11IconComponent.Logger - OpenTK.Platform.Native.X11.X11IconComponent.Name - OpenTK.Platform.Native.X11.X11IconComponent.Provides + - OpenTK.Platform.Native.X11.X11IconComponent.Uninitialize langs: - csharp - vb @@ -121,7 +122,7 @@ items: assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 - summary: Provides a logger for this component. + summary: The logger that this component uses to log diagnostic messages. example: [] syntax: content: public ILogger? Logger { get; set; } @@ -130,6 +131,11 @@ items: type: OpenTK.Core.Utility.ILogger content.vb: Public Property Logger As ILogger overload: OpenTK.Platform.Native.X11.X11IconComponent.Logger* + seealso: + - linkId: OpenTK.Core.Utility.ILogger + commentId: T:OpenTK.Core.Utility.ILogger + - linkId: OpenTK.Platform.ToolkitOptions.Logger + commentId: P:OpenTK.Platform.ToolkitOptions.Logger implements: - OpenTK.Platform.IPalComponent.Logger - uid: OpenTK.Platform.Native.X11.X11IconComponent.Initialize(OpenTK.Platform.ToolkitOptions) @@ -160,8 +166,42 @@ items: description: The options to initialize the component with. content.vb: Public Sub Initialize(options As ToolkitOptions) overload: OpenTK.Platform.Native.X11.X11IconComponent.Initialize* + seealso: + - linkId: OpenTK.Platform.ToolkitOptions + commentId: T:OpenTK.Platform.ToolkitOptions + - linkId: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) implements: - OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) +- uid: OpenTK.Platform.Native.X11.X11IconComponent.Uninitialize + commentId: M:OpenTK.Platform.Native.X11.X11IconComponent.Uninitialize + id: Uninitialize + parent: OpenTK.Platform.Native.X11.X11IconComponent + langs: + - csharp + - vb + name: Uninitialize() + nameWithType: X11IconComponent.Uninitialize() + fullName: OpenTK.Platform.Native.X11.X11IconComponent.Uninitialize() + type: Method + source: + id: Uninitialize + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11IconComponent.cs + startLine: 37 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform.Native.X11 + summary: Uninitialize the component. Frees any native resources used by the component. + example: [] + syntax: + content: public void Uninitialize() + content.vb: Public Sub Uninitialize() + overload: OpenTK.Platform.Native.X11.X11IconComponent.Uninitialize* + seealso: + - linkId: OpenTK.Platform.Toolkit.Uninit + commentId: M:OpenTK.Platform.Toolkit.Uninit + implements: + - OpenTK.Platform.IPalComponent.Uninitialize - uid: OpenTK.Platform.Native.X11.X11IconComponent.CanLoadSystemIcons commentId: P:OpenTK.Platform.Native.X11.X11IconComponent.CanLoadSystemIcons id: CanLoadSystemIcons @@ -176,14 +216,14 @@ items: source: id: CanLoadSystemIcons path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11IconComponent.cs - startLine: 37 + startLine: 42 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: >- - True if icon objects can be populated from common system icons. + If common system icons can be created. - If this is true, then will work, otherwise an exception will be thrown. + If this is true then will work, otherwise an exception will be thrown. example: [] syntax: content: public bool CanLoadSystemIcons { get; } @@ -211,14 +251,14 @@ items: source: id: Create path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11IconComponent.cs - startLine: 40 + startLine: 45 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: >- Load a system icon. - Only works if is true. + Only works if is true. example: [] syntax: content: public IconHandle Create(SystemIconType systemIcon) @@ -231,6 +271,10 @@ items: description: A handle to the created system icon. content.vb: Public Function Create(systemIcon As SystemIconType) As IconHandle overload: OpenTK.Platform.Native.X11.X11IconComponent.Create* + exceptions: + - type: System.PlatformNotSupportedException + commentId: T:System.PlatformNotSupportedException + description: Platform does not implement this function. See . seealso: - linkId: OpenTK.Platform.IIconComponent.CanLoadSystemIcons commentId: P:OpenTK.Platform.IIconComponent.CanLoadSystemIcons @@ -250,7 +294,7 @@ items: source: id: Create path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11IconComponent.cs - startLine: 47 + startLine: 52 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 @@ -267,12 +311,19 @@ items: description: Height of the bitmap. - id: data type: System.ReadOnlySpan{System.Byte} - description: Image data to load into icon. + description: Image data to load into icon in RGBA format. return: type: OpenTK.Platform.IconHandle description: A handle to the created icon. content.vb: Public Function Create(width As Integer, height As Integer, data As ReadOnlySpan(Of Byte)) As IconHandle overload: OpenTK.Platform.Native.X11.X11IconComponent.Create* + exceptions: + - type: System.ArgumentOutOfRangeException + commentId: T:System.ArgumentOutOfRangeException + description: If width, or height are negative. + - type: System.ArgumentException + commentId: T:System.ArgumentException + description: data is smaller than specified dimensions. implements: - OpenTK.Platform.IIconComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte}) nameWithType.vb: X11IconComponent.Create(Integer, Integer, ReadOnlySpan(Of Byte)) @@ -292,7 +343,7 @@ items: source: id: Create path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11IconComponent.cs - startLine: 66 + startLine: 76 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 @@ -335,7 +386,7 @@ items: source: id: Destroy path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11IconComponent.cs - startLine: 74 + startLine: 84 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 @@ -349,10 +400,11 @@ items: description: Handle to the icon object to destroy. content.vb: Public Sub Destroy(handle As IconHandle) overload: OpenTK.Platform.Native.X11.X11IconComponent.Destroy* - exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: handle is null. + seealso: + - linkId: OpenTK.Platform.IIconComponent.Create(OpenTK.Platform.SystemIconType) + commentId: M:OpenTK.Platform.IIconComponent.Create(OpenTK.Platform.SystemIconType) + - linkId: OpenTK.Platform.IIconComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte}) + commentId: M:OpenTK.Platform.IIconComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte}) implements: - OpenTK.Platform.IIconComponent.Destroy(OpenTK.Platform.IconHandle) - uid: OpenTK.Platform.Native.X11.X11IconComponent.GetSize(OpenTK.Platform.IconHandle,System.Int32@,System.Int32@) @@ -369,7 +421,7 @@ items: source: id: GetSize path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11IconComponent.cs - startLine: 84 + startLine: 94 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 @@ -389,10 +441,6 @@ items: description: Height of icon. content.vb: Public Sub GetSize(handle As IconHandle, width As Integer, height As Integer) overload: OpenTK.Platform.Native.X11.X11IconComponent.GetSize* - exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: handle is null. implements: - OpenTK.Platform.IIconComponent.GetSize(OpenTK.Platform.IconHandle,System.Int32@,System.Int32@) nameWithType.vb: X11IconComponent.GetSize(IconHandle, Integer, Integer) @@ -754,6 +802,19 @@ references: name: PalComponents nameWithType: PalComponents fullName: OpenTK.Platform.PalComponents +- uid: OpenTK.Core.Utility.ILogger + commentId: T:OpenTK.Core.Utility.ILogger + parent: OpenTK.Core.Utility + href: OpenTK.Core.Utility.ILogger.html + name: ILogger + nameWithType: ILogger + fullName: OpenTK.Core.Utility.ILogger +- uid: OpenTK.Platform.ToolkitOptions.Logger + commentId: P:OpenTK.Platform.ToolkitOptions.Logger + href: OpenTK.Platform.ToolkitOptions.html#OpenTK_Platform_ToolkitOptions_Logger + name: Logger + nameWithType: ToolkitOptions.Logger + fullName: OpenTK.Platform.ToolkitOptions.Logger - uid: OpenTK.Platform.Native.X11.X11IconComponent.Logger* commentId: Overload:OpenTK.Platform.Native.X11.X11IconComponent.Logger href: OpenTK.Platform.Native.X11.X11IconComponent.html#OpenTK_Platform_Native_X11_X11IconComponent_Logger @@ -767,13 +828,6 @@ references: name: Logger nameWithType: IPalComponent.Logger fullName: OpenTK.Platform.IPalComponent.Logger -- uid: OpenTK.Core.Utility.ILogger - commentId: T:OpenTK.Core.Utility.ILogger - parent: OpenTK.Core.Utility - href: OpenTK.Core.Utility.ILogger.html - name: ILogger - nameWithType: ILogger - fullName: OpenTK.Core.Utility.ILogger - uid: OpenTK.Core.Utility commentId: N:OpenTK.Core.Utility href: OpenTK.html @@ -804,6 +858,37 @@ references: - uid: OpenTK.Core.Utility name: Utility href: OpenTK.Core.Utility.html +- uid: OpenTK.Platform.ToolkitOptions + commentId: T:OpenTK.Platform.ToolkitOptions + parent: OpenTK.Platform + href: OpenTK.Platform.ToolkitOptions.html + name: ToolkitOptions + nameWithType: ToolkitOptions + fullName: OpenTK.Platform.ToolkitOptions +- uid: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Init_OpenTK_Platform_ToolkitOptions_ + name: Init(ToolkitOptions) + nameWithType: Toolkit.Init(ToolkitOptions) + fullName: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + spec.csharp: + - uid: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + name: Init + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Init_OpenTK_Platform_ToolkitOptions_ + - name: ( + - uid: OpenTK.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Platform.ToolkitOptions.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + name: Init + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Init_OpenTK_Platform_ToolkitOptions_ + - name: ( + - uid: OpenTK.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Platform.ToolkitOptions.html + - name: ) - uid: OpenTK.Platform.Native.X11.X11IconComponent.Initialize* commentId: Overload:OpenTK.Platform.Native.X11.X11IconComponent.Initialize href: OpenTK.Platform.Native.X11.X11IconComponent.html#OpenTK_Platform_Native_X11_X11IconComponent_Initialize_OpenTK_Platform_ToolkitOptions_ @@ -835,13 +920,49 @@ references: name: ToolkitOptions href: OpenTK.Platform.ToolkitOptions.html - name: ) -- uid: OpenTK.Platform.ToolkitOptions - commentId: T:OpenTK.Platform.ToolkitOptions - parent: OpenTK.Platform - href: OpenTK.Platform.ToolkitOptions.html - name: ToolkitOptions - nameWithType: ToolkitOptions - fullName: OpenTK.Platform.ToolkitOptions +- uid: OpenTK.Platform.Toolkit.Uninit + commentId: M:OpenTK.Platform.Toolkit.Uninit + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Uninit + name: Uninit() + nameWithType: Toolkit.Uninit() + fullName: OpenTK.Platform.Toolkit.Uninit() + spec.csharp: + - uid: OpenTK.Platform.Toolkit.Uninit + name: Uninit + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Uninit + - name: ( + - name: ) + spec.vb: + - uid: OpenTK.Platform.Toolkit.Uninit + name: Uninit + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Uninit + - name: ( + - name: ) +- uid: OpenTK.Platform.Native.X11.X11IconComponent.Uninitialize* + commentId: Overload:OpenTK.Platform.Native.X11.X11IconComponent.Uninitialize + href: OpenTK.Platform.Native.X11.X11IconComponent.html#OpenTK_Platform_Native_X11_X11IconComponent_Uninitialize + name: Uninitialize + nameWithType: X11IconComponent.Uninitialize + fullName: OpenTK.Platform.Native.X11.X11IconComponent.Uninitialize +- uid: OpenTK.Platform.IPalComponent.Uninitialize + commentId: M:OpenTK.Platform.IPalComponent.Uninitialize + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + name: Uninitialize() + nameWithType: IPalComponent.Uninitialize() + fullName: OpenTK.Platform.IPalComponent.Uninitialize() + spec.csharp: + - uid: OpenTK.Platform.IPalComponent.Uninitialize + name: Uninitialize + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + - name: ( + - name: ) + spec.vb: + - uid: OpenTK.Platform.IPalComponent.Uninitialize + name: Uninitialize + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + - name: ( + - name: ) - uid: OpenTK.Platform.IIconComponent.Create(OpenTK.Platform.SystemIconType) commentId: M:OpenTK.Platform.IIconComponent.Create(OpenTK.Platform.SystemIconType) parent: OpenTK.Platform.IIconComponent @@ -891,6 +1012,13 @@ references: nameWithType.vb: Boolean fullName.vb: Boolean name.vb: Boolean +- uid: System.PlatformNotSupportedException + commentId: T:System.PlatformNotSupportedException + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.platformnotsupportedexception + name: PlatformNotSupportedException + nameWithType: PlatformNotSupportedException + fullName: System.PlatformNotSupportedException - uid: OpenTK.Platform.Native.X11.X11IconComponent.Create* commentId: Overload:OpenTK.Platform.Native.X11.X11IconComponent.Create href: OpenTK.Platform.Native.X11.X11IconComponent.html#OpenTK_Platform_Native_X11_X11IconComponent_Create_OpenTK_Platform_SystemIconType_ @@ -911,6 +1039,20 @@ references: name: IconHandle nameWithType: IconHandle fullName: OpenTK.Platform.IconHandle +- uid: System.ArgumentOutOfRangeException + commentId: T:System.ArgumentOutOfRangeException + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.argumentoutofrangeexception + name: ArgumentOutOfRangeException + nameWithType: ArgumentOutOfRangeException + fullName: System.ArgumentOutOfRangeException +- uid: System.ArgumentException + commentId: T:System.ArgumentException + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.argumentexception + name: ArgumentException + nameWithType: ArgumentException + fullName: System.ArgumentException - uid: OpenTK.Platform.IIconComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte}) commentId: M:OpenTK.Platform.IIconComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte}) parent: OpenTK.Platform.IIconComponent @@ -1131,13 +1273,6 @@ references: href: OpenTK.Platform.Native.X11.X11IconComponent.IconImage.html - name: ( - name: ) -- uid: System.ArgumentNullException - commentId: T:System.ArgumentNullException - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.argumentnullexception - name: ArgumentNullException - nameWithType: ArgumentNullException - fullName: System.ArgumentNullException - uid: OpenTK.Platform.Native.X11.X11IconComponent.Destroy* commentId: Overload:OpenTK.Platform.Native.X11.X11IconComponent.Destroy href: OpenTK.Platform.Native.X11.X11IconComponent.html#OpenTK_Platform_Native_X11_X11IconComponent_Destroy_OpenTK_Platform_IconHandle_ diff --git a/api/OpenTK.Platform.Native.X11.X11KeyboardComponent.yml b/api/OpenTK.Platform.Native.X11.X11KeyboardComponent.yml index 0cb0f903..650fe0a7 100644 --- a/api/OpenTK.Platform.Native.X11.X11KeyboardComponent.yml +++ b/api/OpenTK.Platform.Native.X11.X11KeyboardComponent.yml @@ -20,6 +20,7 @@ items: - OpenTK.Platform.Native.X11.X11KeyboardComponent.SetImeRectangle(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) - OpenTK.Platform.Native.X11.X11KeyboardComponent.SupportsIme - OpenTK.Platform.Native.X11.X11KeyboardComponent.SupportsLayouts + - OpenTK.Platform.Native.X11.X11KeyboardComponent.Uninitialize langs: - csharp - vb @@ -126,7 +127,7 @@ items: assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 - summary: Provides a logger for this component. + summary: The logger that this component uses to log diagnostic messages. example: [] syntax: content: public ILogger? Logger { get; set; } @@ -135,6 +136,11 @@ items: type: OpenTK.Core.Utility.ILogger content.vb: Public Property Logger As ILogger overload: OpenTK.Platform.Native.X11.X11KeyboardComponent.Logger* + seealso: + - linkId: OpenTK.Core.Utility.ILogger + commentId: T:OpenTK.Core.Utility.ILogger + - linkId: OpenTK.Platform.ToolkitOptions.Logger + commentId: P:OpenTK.Platform.ToolkitOptions.Logger implements: - OpenTK.Platform.IPalComponent.Logger - uid: OpenTK.Platform.Native.X11.X11KeyboardComponent.Initialize(OpenTK.Platform.ToolkitOptions) @@ -165,8 +171,42 @@ items: description: The options to initialize the component with. content.vb: Public Sub Initialize(options As ToolkitOptions) overload: OpenTK.Platform.Native.X11.X11KeyboardComponent.Initialize* + seealso: + - linkId: OpenTK.Platform.ToolkitOptions + commentId: T:OpenTK.Platform.ToolkitOptions + - linkId: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) implements: - OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) +- uid: OpenTK.Platform.Native.X11.X11KeyboardComponent.Uninitialize + commentId: M:OpenTK.Platform.Native.X11.X11KeyboardComponent.Uninitialize + id: Uninitialize + parent: OpenTK.Platform.Native.X11.X11KeyboardComponent + langs: + - csharp + - vb + name: Uninitialize() + nameWithType: X11KeyboardComponent.Uninitialize() + fullName: OpenTK.Platform.Native.X11.X11KeyboardComponent.Uninitialize() + type: Method + source: + id: Uninitialize + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11KeyboardComponent.cs + startLine: 51 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform.Native.X11 + summary: Uninitialize the component. Frees any native resources used by the component. + example: [] + syntax: + content: public void Uninitialize() + content.vb: Public Sub Uninitialize() + overload: OpenTK.Platform.Native.X11.X11KeyboardComponent.Uninitialize* + seealso: + - linkId: OpenTK.Platform.Toolkit.Uninit + commentId: M:OpenTK.Platform.Toolkit.Uninit + implements: + - OpenTK.Platform.IPalComponent.Uninitialize - uid: OpenTK.Platform.Native.X11.X11KeyboardComponent.SupportsLayouts commentId: P:OpenTK.Platform.Native.X11.X11KeyboardComponent.SupportsLayouts id: SupportsLayouts @@ -181,7 +221,7 @@ items: source: id: SupportsLayouts path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11KeyboardComponent.cs - startLine: 408 + startLine: 416 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 @@ -210,7 +250,7 @@ items: source: id: SupportsIme path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11KeyboardComponent.cs - startLine: 411 + startLine: 419 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 @@ -239,7 +279,7 @@ items: source: id: GetActiveKeyboardLayout path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11KeyboardComponent.cs - startLine: 414 + startLine: 422 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 @@ -279,7 +319,7 @@ items: source: id: GetAvailableKeyboardLayouts path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11KeyboardComponent.cs - startLine: 422 + startLine: 430 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 @@ -308,7 +348,7 @@ items: source: id: GetScancodeFromKey path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11KeyboardComponent.cs - startLine: 430 + startLine: 438 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 @@ -335,6 +375,9 @@ items: or if no scancode produces the key. content.vb: Public Function GetScancodeFromKey(key As Key) As Scancode overload: OpenTK.Platform.Native.X11.X11KeyboardComponent.GetScancodeFromKey* + seealso: + - linkId: OpenTK.Platform.IKeyboardComponent.GetKeyFromScancode(OpenTK.Platform.Scancode) + commentId: M:OpenTK.Platform.IKeyboardComponent.GetKeyFromScancode(OpenTK.Platform.Scancode) implements: - OpenTK.Platform.IKeyboardComponent.GetScancodeFromKey(OpenTK.Platform.Key) - uid: OpenTK.Platform.Native.X11.X11KeyboardComponent.GetKeyFromScancode(OpenTK.Platform.Scancode) @@ -351,7 +394,7 @@ items: source: id: GetKeyFromScancode path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11KeyboardComponent.cs - startLine: 440 + startLine: 448 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 @@ -374,6 +417,9 @@ items: or if the scancode can't be mapped to a key. content.vb: Public Function GetKeyFromScancode(scancode As Scancode) As Key overload: OpenTK.Platform.Native.X11.X11KeyboardComponent.GetKeyFromScancode* + seealso: + - linkId: OpenTK.Platform.IKeyboardComponent.GetScancodeFromKey(OpenTK.Platform.Key) + commentId: M:OpenTK.Platform.IKeyboardComponent.GetScancodeFromKey(OpenTK.Platform.Key) implements: - OpenTK.Platform.IKeyboardComponent.GetKeyFromScancode(OpenTK.Platform.Scancode) - uid: OpenTK.Platform.Native.X11.X11KeyboardComponent.GetKeyboardState(System.Boolean[]) @@ -390,7 +436,7 @@ items: source: id: GetKeyboardState path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11KeyboardComponent.cs - startLine: 451 + startLine: 459 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 @@ -409,6 +455,9 @@ items: description: An array to be filled with the keyboard state. content.vb: Public Sub GetKeyboardState(keyboardState As Boolean()) overload: OpenTK.Platform.Native.X11.X11KeyboardComponent.GetKeyboardState* + seealso: + - linkId: OpenTK.Platform.IKeyboardComponent.GetKeyboardModifiers + commentId: M:OpenTK.Platform.IKeyboardComponent.GetKeyboardModifiers implements: - OpenTK.Platform.IKeyboardComponent.GetKeyboardState(System.Boolean[]) nameWithType.vb: X11KeyboardComponent.GetKeyboardState(Boolean()) @@ -428,7 +477,7 @@ items: source: id: GetKeyboardModifiers path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11KeyboardComponent.cs - startLine: 458 + startLine: 466 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 @@ -441,6 +490,9 @@ items: description: The current keyboard modifiers. content.vb: Public Function GetKeyboardModifiers() As KeyModifier overload: OpenTK.Platform.Native.X11.X11KeyboardComponent.GetKeyboardModifiers* + seealso: + - linkId: OpenTK.Platform.IKeyboardComponent.GetKeyboardState(System.Boolean[]) + commentId: M:OpenTK.Platform.IKeyboardComponent.GetKeyboardState(System.Boolean[]) implements: - OpenTK.Platform.IKeyboardComponent.GetKeyboardModifiers - uid: OpenTK.Platform.Native.X11.X11KeyboardComponent.BeginIme(OpenTK.Platform.WindowHandle) @@ -457,7 +509,7 @@ items: source: id: BeginIme path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11KeyboardComponent.cs - startLine: 472 + startLine: 480 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 @@ -487,7 +539,7 @@ items: source: id: SetImeRectangle path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11KeyboardComponent.cs - startLine: 478 + startLine: 486 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 @@ -532,7 +584,7 @@ items: source: id: EndIme path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11KeyboardComponent.cs - startLine: 484 + startLine: 492 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 @@ -904,6 +956,19 @@ references: name: PalComponents nameWithType: PalComponents fullName: OpenTK.Platform.PalComponents +- uid: OpenTK.Core.Utility.ILogger + commentId: T:OpenTK.Core.Utility.ILogger + parent: OpenTK.Core.Utility + href: OpenTK.Core.Utility.ILogger.html + name: ILogger + nameWithType: ILogger + fullName: OpenTK.Core.Utility.ILogger +- uid: OpenTK.Platform.ToolkitOptions.Logger + commentId: P:OpenTK.Platform.ToolkitOptions.Logger + href: OpenTK.Platform.ToolkitOptions.html#OpenTK_Platform_ToolkitOptions_Logger + name: Logger + nameWithType: ToolkitOptions.Logger + fullName: OpenTK.Platform.ToolkitOptions.Logger - uid: OpenTK.Platform.Native.X11.X11KeyboardComponent.Logger* commentId: Overload:OpenTK.Platform.Native.X11.X11KeyboardComponent.Logger href: OpenTK.Platform.Native.X11.X11KeyboardComponent.html#OpenTK_Platform_Native_X11_X11KeyboardComponent_Logger @@ -917,13 +982,6 @@ references: name: Logger nameWithType: IPalComponent.Logger fullName: OpenTK.Platform.IPalComponent.Logger -- uid: OpenTK.Core.Utility.ILogger - commentId: T:OpenTK.Core.Utility.ILogger - parent: OpenTK.Core.Utility - href: OpenTK.Core.Utility.ILogger.html - name: ILogger - nameWithType: ILogger - fullName: OpenTK.Core.Utility.ILogger - uid: OpenTK.Core.Utility commentId: N:OpenTK.Core.Utility href: OpenTK.html @@ -954,6 +1012,37 @@ references: - uid: OpenTK.Core.Utility name: Utility href: OpenTK.Core.Utility.html +- uid: OpenTK.Platform.ToolkitOptions + commentId: T:OpenTK.Platform.ToolkitOptions + parent: OpenTK.Platform + href: OpenTK.Platform.ToolkitOptions.html + name: ToolkitOptions + nameWithType: ToolkitOptions + fullName: OpenTK.Platform.ToolkitOptions +- uid: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Init_OpenTK_Platform_ToolkitOptions_ + name: Init(ToolkitOptions) + nameWithType: Toolkit.Init(ToolkitOptions) + fullName: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + spec.csharp: + - uid: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + name: Init + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Init_OpenTK_Platform_ToolkitOptions_ + - name: ( + - uid: OpenTK.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Platform.ToolkitOptions.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + name: Init + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Init_OpenTK_Platform_ToolkitOptions_ + - name: ( + - uid: OpenTK.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Platform.ToolkitOptions.html + - name: ) - uid: OpenTK.Platform.Native.X11.X11KeyboardComponent.Initialize* commentId: Overload:OpenTK.Platform.Native.X11.X11KeyboardComponent.Initialize href: OpenTK.Platform.Native.X11.X11KeyboardComponent.html#OpenTK_Platform_Native_X11_X11KeyboardComponent_Initialize_OpenTK_Platform_ToolkitOptions_ @@ -985,13 +1074,49 @@ references: name: ToolkitOptions href: OpenTK.Platform.ToolkitOptions.html - name: ) -- uid: OpenTK.Platform.ToolkitOptions - commentId: T:OpenTK.Platform.ToolkitOptions - parent: OpenTK.Platform - href: OpenTK.Platform.ToolkitOptions.html - name: ToolkitOptions - nameWithType: ToolkitOptions - fullName: OpenTK.Platform.ToolkitOptions +- uid: OpenTK.Platform.Toolkit.Uninit + commentId: M:OpenTK.Platform.Toolkit.Uninit + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Uninit + name: Uninit() + nameWithType: Toolkit.Uninit() + fullName: OpenTK.Platform.Toolkit.Uninit() + spec.csharp: + - uid: OpenTK.Platform.Toolkit.Uninit + name: Uninit + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Uninit + - name: ( + - name: ) + spec.vb: + - uid: OpenTK.Platform.Toolkit.Uninit + name: Uninit + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Uninit + - name: ( + - name: ) +- uid: OpenTK.Platform.Native.X11.X11KeyboardComponent.Uninitialize* + commentId: Overload:OpenTK.Platform.Native.X11.X11KeyboardComponent.Uninitialize + href: OpenTK.Platform.Native.X11.X11KeyboardComponent.html#OpenTK_Platform_Native_X11_X11KeyboardComponent_Uninitialize + name: Uninitialize + nameWithType: X11KeyboardComponent.Uninitialize + fullName: OpenTK.Platform.Native.X11.X11KeyboardComponent.Uninitialize +- uid: OpenTK.Platform.IPalComponent.Uninitialize + commentId: M:OpenTK.Platform.IPalComponent.Uninitialize + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + name: Uninitialize() + nameWithType: IPalComponent.Uninitialize() + fullName: OpenTK.Platform.IPalComponent.Uninitialize() + spec.csharp: + - uid: OpenTK.Platform.IPalComponent.Uninitialize + name: Uninitialize + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + - name: ( + - name: ) + spec.vb: + - uid: OpenTK.Platform.IPalComponent.Uninitialize + name: Uninitialize + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + - name: ( + - name: ) - uid: OpenTK.Platform.Native.X11.X11KeyboardComponent.SupportsLayouts* commentId: Overload:OpenTK.Platform.Native.X11.X11KeyboardComponent.SupportsLayouts href: OpenTK.Platform.Native.X11.X11KeyboardComponent.html#OpenTK_Platform_Native_X11_X11KeyboardComponent_SupportsLayouts @@ -1121,6 +1246,31 @@ references: href: https://learn.microsoft.com/dotnet/api/system.string - name: ( - name: ) +- uid: OpenTK.Platform.IKeyboardComponent.GetKeyFromScancode(OpenTK.Platform.Scancode) + commentId: M:OpenTK.Platform.IKeyboardComponent.GetKeyFromScancode(OpenTK.Platform.Scancode) + parent: OpenTK.Platform.IKeyboardComponent + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_GetKeyFromScancode_OpenTK_Platform_Scancode_ + name: GetKeyFromScancode(Scancode) + nameWithType: IKeyboardComponent.GetKeyFromScancode(Scancode) + fullName: OpenTK.Platform.IKeyboardComponent.GetKeyFromScancode(OpenTK.Platform.Scancode) + spec.csharp: + - uid: OpenTK.Platform.IKeyboardComponent.GetKeyFromScancode(OpenTK.Platform.Scancode) + name: GetKeyFromScancode + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_GetKeyFromScancode_OpenTK_Platform_Scancode_ + - name: ( + - uid: OpenTK.Platform.Scancode + name: Scancode + href: OpenTK.Platform.Scancode.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IKeyboardComponent.GetKeyFromScancode(OpenTK.Platform.Scancode) + name: GetKeyFromScancode + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_GetKeyFromScancode_OpenTK_Platform_Scancode_ + - name: ( + - uid: OpenTK.Platform.Scancode + name: Scancode + href: OpenTK.Platform.Scancode.html + - name: ) - uid: OpenTK.Platform.Scancode commentId: T:OpenTK.Platform.Scancode parent: OpenTK.Platform @@ -1184,30 +1334,24 @@ references: name: GetKeyFromScancode nameWithType: X11KeyboardComponent.GetKeyFromScancode fullName: OpenTK.Platform.Native.X11.X11KeyboardComponent.GetKeyFromScancode -- uid: OpenTK.Platform.IKeyboardComponent.GetKeyFromScancode(OpenTK.Platform.Scancode) - commentId: M:OpenTK.Platform.IKeyboardComponent.GetKeyFromScancode(OpenTK.Platform.Scancode) +- uid: OpenTK.Platform.IKeyboardComponent.GetKeyboardModifiers + commentId: M:OpenTK.Platform.IKeyboardComponent.GetKeyboardModifiers parent: OpenTK.Platform.IKeyboardComponent - href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_GetKeyFromScancode_OpenTK_Platform_Scancode_ - name: GetKeyFromScancode(Scancode) - nameWithType: IKeyboardComponent.GetKeyFromScancode(Scancode) - fullName: OpenTK.Platform.IKeyboardComponent.GetKeyFromScancode(OpenTK.Platform.Scancode) + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_GetKeyboardModifiers + name: GetKeyboardModifiers() + nameWithType: IKeyboardComponent.GetKeyboardModifiers() + fullName: OpenTK.Platform.IKeyboardComponent.GetKeyboardModifiers() spec.csharp: - - uid: OpenTK.Platform.IKeyboardComponent.GetKeyFromScancode(OpenTK.Platform.Scancode) - name: GetKeyFromScancode - href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_GetKeyFromScancode_OpenTK_Platform_Scancode_ + - uid: OpenTK.Platform.IKeyboardComponent.GetKeyboardModifiers + name: GetKeyboardModifiers + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_GetKeyboardModifiers - name: ( - - uid: OpenTK.Platform.Scancode - name: Scancode - href: OpenTK.Platform.Scancode.html - name: ) spec.vb: - - uid: OpenTK.Platform.IKeyboardComponent.GetKeyFromScancode(OpenTK.Platform.Scancode) - name: GetKeyFromScancode - href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_GetKeyFromScancode_OpenTK_Platform_Scancode_ + - uid: OpenTK.Platform.IKeyboardComponent.GetKeyboardModifiers + name: GetKeyboardModifiers + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_GetKeyboardModifiers - name: ( - - uid: OpenTK.Platform.Scancode - name: Scancode - href: OpenTK.Platform.Scancode.html - name: ) - uid: OpenTK.Platform.Native.X11.X11KeyboardComponent.GetKeyboardState* commentId: Overload:OpenTK.Platform.Native.X11.X11KeyboardComponent.GetKeyboardState @@ -1279,25 +1423,6 @@ references: name: GetKeyboardModifiers nameWithType: X11KeyboardComponent.GetKeyboardModifiers fullName: OpenTK.Platform.Native.X11.X11KeyboardComponent.GetKeyboardModifiers -- uid: OpenTK.Platform.IKeyboardComponent.GetKeyboardModifiers - commentId: M:OpenTK.Platform.IKeyboardComponent.GetKeyboardModifiers - parent: OpenTK.Platform.IKeyboardComponent - href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_GetKeyboardModifiers - name: GetKeyboardModifiers() - nameWithType: IKeyboardComponent.GetKeyboardModifiers() - fullName: OpenTK.Platform.IKeyboardComponent.GetKeyboardModifiers() - spec.csharp: - - uid: OpenTK.Platform.IKeyboardComponent.GetKeyboardModifiers - name: GetKeyboardModifiers - href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_GetKeyboardModifiers - - name: ( - - name: ) - spec.vb: - - uid: OpenTK.Platform.IKeyboardComponent.GetKeyboardModifiers - name: GetKeyboardModifiers - href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_GetKeyboardModifiers - - name: ( - - name: ) - uid: OpenTK.Platform.KeyModifier commentId: T:OpenTK.Platform.KeyModifier parent: OpenTK.Platform diff --git a/api/OpenTK.Platform.Native.X11.X11MouseComponent.yml b/api/OpenTK.Platform.Native.X11.X11MouseComponent.yml index 7b4a94a7..2fc764ed 100644 --- a/api/OpenTK.Platform.Native.X11.X11MouseComponent.yml +++ b/api/OpenTK.Platform.Native.X11.X11MouseComponent.yml @@ -7,15 +7,18 @@ items: children: - OpenTK.Platform.Native.X11.X11MouseComponent.CanSetMousePosition - OpenTK.Platform.Native.X11.X11MouseComponent.EnableRawMouseMotion(OpenTK.Platform.WindowHandle,System.Boolean) - - OpenTK.Platform.Native.X11.X11MouseComponent.GetMouseState(OpenTK.Platform.MouseState@) - - OpenTK.Platform.Native.X11.X11MouseComponent.GetPosition(System.Int32@,System.Int32@) + - OpenTK.Platform.Native.X11.X11MouseComponent.GetGlobalMouseState(OpenTK.Platform.MouseState@) + - OpenTK.Platform.Native.X11.X11MouseComponent.GetGlobalPosition(OpenTK.Mathematics.Vector2@) + - OpenTK.Platform.Native.X11.X11MouseComponent.GetMouseState(OpenTK.Platform.WindowHandle,OpenTK.Platform.MouseState@) + - OpenTK.Platform.Native.X11.X11MouseComponent.GetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2@) - OpenTK.Platform.Native.X11.X11MouseComponent.Initialize(OpenTK.Platform.ToolkitOptions) - OpenTK.Platform.Native.X11.X11MouseComponent.IsRawMouseMotionEnabled(OpenTK.Platform.WindowHandle) - OpenTK.Platform.Native.X11.X11MouseComponent.Logger - OpenTK.Platform.Native.X11.X11MouseComponent.Name - OpenTK.Platform.Native.X11.X11MouseComponent.Provides - - OpenTK.Platform.Native.X11.X11MouseComponent.SetPosition(System.Int32,System.Int32) + - OpenTK.Platform.Native.X11.X11MouseComponent.SetGlobalPosition(OpenTK.Mathematics.Vector2) - OpenTK.Platform.Native.X11.X11MouseComponent.SupportsRawMouseMotion + - OpenTK.Platform.Native.X11.X11MouseComponent.Uninitialize langs: - csharp - vb @@ -122,7 +125,7 @@ items: assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 - summary: Provides a logger for this component. + summary: The logger that this component uses to log diagnostic messages. example: [] syntax: content: public ILogger? Logger { get; set; } @@ -131,6 +134,11 @@ items: type: OpenTK.Core.Utility.ILogger content.vb: Public Property Logger As ILogger overload: OpenTK.Platform.Native.X11.X11MouseComponent.Logger* + seealso: + - linkId: OpenTK.Core.Utility.ILogger + commentId: T:OpenTK.Core.Utility.ILogger + - linkId: OpenTK.Platform.ToolkitOptions.Logger + commentId: P:OpenTK.Platform.ToolkitOptions.Logger implements: - OpenTK.Platform.IPalComponent.Logger - uid: OpenTK.Platform.Native.X11.X11MouseComponent.Initialize(OpenTK.Platform.ToolkitOptions) @@ -161,8 +169,42 @@ items: description: The options to initialize the component with. content.vb: Public Sub Initialize(options As ToolkitOptions) overload: OpenTK.Platform.Native.X11.X11MouseComponent.Initialize* + seealso: + - linkId: OpenTK.Platform.ToolkitOptions + commentId: T:OpenTK.Platform.ToolkitOptions + - linkId: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) implements: - OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) +- uid: OpenTK.Platform.Native.X11.X11MouseComponent.Uninitialize + commentId: M:OpenTK.Platform.Native.X11.X11MouseComponent.Uninitialize + id: Uninitialize + parent: OpenTK.Platform.Native.X11.X11MouseComponent + langs: + - csharp + - vb + name: Uninitialize() + nameWithType: X11MouseComponent.Uninitialize() + fullName: OpenTK.Platform.Native.X11.X11MouseComponent.Uninitialize() + type: Method + source: + id: Uninitialize + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11MouseComponent.cs + startLine: 29 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform.Native.X11 + summary: Uninitialize the component. Frees any native resources used by the component. + example: [] + syntax: + content: public void Uninitialize() + content.vb: Public Sub Uninitialize() + overload: OpenTK.Platform.Native.X11.X11MouseComponent.Uninitialize* + seealso: + - linkId: OpenTK.Platform.Toolkit.Uninit + commentId: M:OpenTK.Platform.Toolkit.Uninit + implements: + - OpenTK.Platform.IPalComponent.Uninitialize - uid: OpenTK.Platform.Native.X11.X11MouseComponent.CanSetMousePosition commentId: P:OpenTK.Platform.Native.X11.X11MouseComponent.CanSetMousePosition id: CanSetMousePosition @@ -177,11 +219,11 @@ items: source: id: CanSetMousePosition path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11MouseComponent.cs - startLine: 29 + startLine: 34 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 - summary: If it's possible to set the position of the mouse using . + summary: If it's possible to set the position of the mouse using . example: [] syntax: content: public bool CanSetMousePosition { get; } @@ -191,8 +233,8 @@ items: content.vb: Public ReadOnly Property CanSetMousePosition As Boolean overload: OpenTK.Platform.Native.X11.X11MouseComponent.CanSetMousePosition* seealso: - - linkId: OpenTK.Platform.IMouseComponent.SetPosition(System.Int32,System.Int32) - commentId: M:OpenTK.Platform.IMouseComponent.SetPosition(System.Int32,System.Int32) + - linkId: OpenTK.Platform.IMouseComponent.SetGlobalPosition(OpenTK.Mathematics.Vector2) + commentId: M:OpenTK.Platform.IMouseComponent.SetGlobalPosition(OpenTK.Mathematics.Vector2) implements: - OpenTK.Platform.IMouseComponent.CanSetMousePosition - uid: OpenTK.Platform.Native.X11.X11MouseComponent.SupportsRawMouseMotion @@ -209,7 +251,7 @@ items: source: id: SupportsRawMouseMotion path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11MouseComponent.cs - startLine: 32 + startLine: 37 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 @@ -232,117 +274,220 @@ items: commentId: M:OpenTK.Platform.IMouseComponent.EnableRawMouseMotion(OpenTK.Platform.WindowHandle,System.Boolean) implements: - OpenTK.Platform.IMouseComponent.SupportsRawMouseMotion -- uid: OpenTK.Platform.Native.X11.X11MouseComponent.GetPosition(System.Int32@,System.Int32@) - commentId: M:OpenTK.Platform.Native.X11.X11MouseComponent.GetPosition(System.Int32@,System.Int32@) - id: GetPosition(System.Int32@,System.Int32@) +- uid: OpenTK.Platform.Native.X11.X11MouseComponent.GetGlobalPosition(OpenTK.Mathematics.Vector2@) + commentId: M:OpenTK.Platform.Native.X11.X11MouseComponent.GetGlobalPosition(OpenTK.Mathematics.Vector2@) + id: GetGlobalPosition(OpenTK.Mathematics.Vector2@) parent: OpenTK.Platform.Native.X11.X11MouseComponent langs: - csharp - vb - name: GetPosition(out int, out int) - nameWithType: X11MouseComponent.GetPosition(out int, out int) - fullName: OpenTK.Platform.Native.X11.X11MouseComponent.GetPosition(out int, out int) + name: GetGlobalPosition(out Vector2) + nameWithType: X11MouseComponent.GetGlobalPosition(out Vector2) + fullName: OpenTK.Platform.Native.X11.X11MouseComponent.GetGlobalPosition(out OpenTK.Mathematics.Vector2) + type: Method + source: + id: GetGlobalPosition + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11MouseComponent.cs + startLine: 40 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform.Native.X11 + summary: >- + Get the global mouse cursor position. + + This function may query the mouse position outside of event processing to get the position of the mouse at the time this function is called. + + The mouse position returned is the mouse position as it is on screen, it will not return virtual coordinates when using . + example: [] + syntax: + content: public void GetGlobalPosition(out Vector2 globalPosition) + parameters: + - id: globalPosition + type: OpenTK.Mathematics.Vector2 + description: Coordinate of the mouse in screen coordinates. + content.vb: Public Sub GetGlobalPosition(globalPosition As Vector2) + overload: OpenTK.Platform.Native.X11.X11MouseComponent.GetGlobalPosition* + seealso: + - linkId: OpenTK.Platform.IMouseComponent.GetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2@) + commentId: M:OpenTK.Platform.IMouseComponent.GetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2@) + - linkId: OpenTK.Platform.IMouseComponent.SetGlobalPosition(OpenTK.Mathematics.Vector2) + commentId: M:OpenTK.Platform.IMouseComponent.SetGlobalPosition(OpenTK.Mathematics.Vector2) + implements: + - OpenTK.Platform.IMouseComponent.GetGlobalPosition(OpenTK.Mathematics.Vector2@) + nameWithType.vb: X11MouseComponent.GetGlobalPosition(Vector2) + fullName.vb: OpenTK.Platform.Native.X11.X11MouseComponent.GetGlobalPosition(OpenTK.Mathematics.Vector2) + name.vb: GetGlobalPosition(Vector2) +- uid: OpenTK.Platform.Native.X11.X11MouseComponent.GetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2@) + commentId: M:OpenTK.Platform.Native.X11.X11MouseComponent.GetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2@) + id: GetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2@) + parent: OpenTK.Platform.Native.X11.X11MouseComponent + langs: + - csharp + - vb + name: GetPosition(WindowHandle, out Vector2) + nameWithType: X11MouseComponent.GetPosition(WindowHandle, out Vector2) + fullName: OpenTK.Platform.Native.X11.X11MouseComponent.GetPosition(OpenTK.Platform.WindowHandle, out OpenTK.Mathematics.Vector2) type: Method source: id: GetPosition path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11MouseComponent.cs - startLine: 35 + startLine: 49 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 - summary: Get the mouse cursor position. + summary: >- + Gets the mouse position as seen from the specified window. + + This function takes into consideration only the mouse events that the specified window has received and does not represent global state. + + If the window has locked the cursor using , this function will return virtual coordinates (unlike GetGlobalPosition(out Vector2i)). example: [] syntax: - content: public void GetPosition(out int x, out int y) + content: public void GetPosition(WindowHandle window, out Vector2 position) parameters: - - id: x - type: System.Int32 - description: X coordinate of the mouse in desktop space. - - id: y - type: System.Int32 - description: Y coordinate of the mouse in desktop space. - content.vb: Public Sub GetPosition(x As Integer, y As Integer) + - id: window + type: OpenTK.Platform.WindowHandle + description: The window to get the mouse position for. + - id: position + type: OpenTK.Mathematics.Vector2 + description: Coordinate of the mouse in client coordinates. + content.vb: Public Sub GetPosition(window As WindowHandle, position As Vector2) overload: OpenTK.Platform.Native.X11.X11MouseComponent.GetPosition* + seealso: + - linkId: OpenTK.Platform.IMouseComponent.GetGlobalPosition(OpenTK.Mathematics.Vector2@) + commentId: M:OpenTK.Platform.IMouseComponent.GetGlobalPosition(OpenTK.Mathematics.Vector2@) implements: - - OpenTK.Platform.IMouseComponent.GetPosition(System.Int32@,System.Int32@) - nameWithType.vb: X11MouseComponent.GetPosition(Integer, Integer) - fullName.vb: OpenTK.Platform.Native.X11.X11MouseComponent.GetPosition(Integer, Integer) - name.vb: GetPosition(Integer, Integer) -- uid: OpenTK.Platform.Native.X11.X11MouseComponent.SetPosition(System.Int32,System.Int32) - commentId: M:OpenTK.Platform.Native.X11.X11MouseComponent.SetPosition(System.Int32,System.Int32) - id: SetPosition(System.Int32,System.Int32) + - OpenTK.Platform.IMouseComponent.GetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2@) + nameWithType.vb: X11MouseComponent.GetPosition(WindowHandle, Vector2) + fullName.vb: OpenTK.Platform.Native.X11.X11MouseComponent.GetPosition(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2) + name.vb: GetPosition(WindowHandle, Vector2) +- uid: OpenTK.Platform.Native.X11.X11MouseComponent.SetGlobalPosition(OpenTK.Mathematics.Vector2) + commentId: M:OpenTK.Platform.Native.X11.X11MouseComponent.SetGlobalPosition(OpenTK.Mathematics.Vector2) + id: SetGlobalPosition(OpenTK.Mathematics.Vector2) parent: OpenTK.Platform.Native.X11.X11MouseComponent langs: - csharp - vb - name: SetPosition(int, int) - nameWithType: X11MouseComponent.SetPosition(int, int) - fullName: OpenTK.Platform.Native.X11.X11MouseComponent.SetPosition(int, int) + name: SetGlobalPosition(Vector2) + nameWithType: X11MouseComponent.SetGlobalPosition(Vector2) + fullName: OpenTK.Platform.Native.X11.X11MouseComponent.SetGlobalPosition(OpenTK.Mathematics.Vector2) type: Method source: - id: SetPosition + id: SetGlobalPosition path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11MouseComponent.cs - startLine: 44 + startLine: 68 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: >- - Set the mouse cursor position. + Set the global mouse cursor position. Check that is true before using this. example: [] syntax: - content: public void SetPosition(int x, int y) + content: public void SetGlobalPosition(Vector2 newGlobalPosition) parameters: - - id: x - type: System.Int32 - description: X coordinate of the mouse in desktop space. - - id: y - type: System.Int32 - description: Y coordinate of the mouse in desktop space. - content.vb: Public Sub SetPosition(x As Integer, y As Integer) - overload: OpenTK.Platform.Native.X11.X11MouseComponent.SetPosition* + - id: newGlobalPosition + type: OpenTK.Mathematics.Vector2 + description: New coordinate of the mouse in screen space. + content.vb: Public Sub SetGlobalPosition(newGlobalPosition As Vector2) + overload: OpenTK.Platform.Native.X11.X11MouseComponent.SetGlobalPosition* seealso: + - linkId: OpenTK.Platform.IMouseComponent.GetGlobalPosition(OpenTK.Mathematics.Vector2@) + commentId: M:OpenTK.Platform.IMouseComponent.GetGlobalPosition(OpenTK.Mathematics.Vector2@) - linkId: OpenTK.Platform.IMouseComponent.CanSetMousePosition commentId: P:OpenTK.Platform.IMouseComponent.CanSetMousePosition implements: - - OpenTK.Platform.IMouseComponent.SetPosition(System.Int32,System.Int32) - nameWithType.vb: X11MouseComponent.SetPosition(Integer, Integer) - fullName.vb: OpenTK.Platform.Native.X11.X11MouseComponent.SetPosition(Integer, Integer) - name.vb: SetPosition(Integer, Integer) -- uid: OpenTK.Platform.Native.X11.X11MouseComponent.GetMouseState(OpenTK.Platform.MouseState@) - commentId: M:OpenTK.Platform.Native.X11.X11MouseComponent.GetMouseState(OpenTK.Platform.MouseState@) - id: GetMouseState(OpenTK.Platform.MouseState@) + - OpenTK.Platform.IMouseComponent.SetGlobalPosition(OpenTK.Mathematics.Vector2) +- uid: OpenTK.Platform.Native.X11.X11MouseComponent.GetGlobalMouseState(OpenTK.Platform.MouseState@) + commentId: M:OpenTK.Platform.Native.X11.X11MouseComponent.GetGlobalMouseState(OpenTK.Platform.MouseState@) + id: GetGlobalMouseState(OpenTK.Platform.MouseState@) + parent: OpenTK.Platform.Native.X11.X11MouseComponent + langs: + - csharp + - vb + name: GetGlobalMouseState(out MouseState) + nameWithType: X11MouseComponent.GetGlobalMouseState(out MouseState) + fullName: OpenTK.Platform.Native.X11.X11MouseComponent.GetGlobalMouseState(out OpenTK.Platform.MouseState) + type: Method + source: + id: GetGlobalMouseState + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11MouseComponent.cs + startLine: 113 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform.Native.X11 + summary: >- + Fills the state struct with the current mouse state. + + This function may query the mouse state outside of event processing to get the position of the mouse at the time this function is called. + + The will be the screen mouse position and not virtual coordinates described by . + + The is in window screen coordinates. + example: [] + syntax: + content: public void GetGlobalMouseState(out MouseState state) + parameters: + - id: state + type: OpenTK.Platform.MouseState + description: The current mouse state. + content.vb: Public Sub GetGlobalMouseState(state As MouseState) + overload: OpenTK.Platform.Native.X11.X11MouseComponent.GetGlobalMouseState* + seealso: + - linkId: OpenTK.Platform.IMouseComponent.GetMouseState(OpenTK.Platform.WindowHandle,OpenTK.Platform.MouseState@) + commentId: M:OpenTK.Platform.IMouseComponent.GetMouseState(OpenTK.Platform.WindowHandle,OpenTK.Platform.MouseState@) + implements: + - OpenTK.Platform.IMouseComponent.GetGlobalMouseState(OpenTK.Platform.MouseState@) + nameWithType.vb: X11MouseComponent.GetGlobalMouseState(MouseState) + fullName.vb: OpenTK.Platform.Native.X11.X11MouseComponent.GetGlobalMouseState(OpenTK.Platform.MouseState) + name.vb: GetGlobalMouseState(MouseState) +- uid: OpenTK.Platform.Native.X11.X11MouseComponent.GetMouseState(OpenTK.Platform.WindowHandle,OpenTK.Platform.MouseState@) + commentId: M:OpenTK.Platform.Native.X11.X11MouseComponent.GetMouseState(OpenTK.Platform.WindowHandle,OpenTK.Platform.MouseState@) + id: GetMouseState(OpenTK.Platform.WindowHandle,OpenTK.Platform.MouseState@) parent: OpenTK.Platform.Native.X11.X11MouseComponent langs: - csharp - vb - name: GetMouseState(out MouseState) - nameWithType: X11MouseComponent.GetMouseState(out MouseState) - fullName: OpenTK.Platform.Native.X11.X11MouseComponent.GetMouseState(out OpenTK.Platform.MouseState) + name: GetMouseState(WindowHandle, out MouseState) + nameWithType: X11MouseComponent.GetMouseState(WindowHandle, out MouseState) + fullName: OpenTK.Platform.Native.X11.X11MouseComponent.GetMouseState(OpenTK.Platform.WindowHandle, out OpenTK.Platform.MouseState) type: Method source: id: GetMouseState path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11MouseComponent.cs - startLine: 77 + startLine: 123 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 - summary: Fills the state struct with the current mouse state. + summary: >- + Fills the state struct with the current mouse state for the specified window. + + This function takes into consideration only the mouse events that the specified window has received and does not represent global state. + + If the window has locked the cursor using , this function will return virtual coordinates (unlike ). + + The is in window relative coordinates. example: [] syntax: - content: public void GetMouseState(out MouseState state) + content: public void GetMouseState(WindowHandle window, out MouseState state) parameters: + - id: window + type: OpenTK.Platform.WindowHandle + description: The window to get the mouse state from. - id: state type: OpenTK.Platform.MouseState description: The current mouse state. - content.vb: Public Sub GetMouseState(state As MouseState) + content.vb: Public Sub GetMouseState(window As WindowHandle, state As MouseState) overload: OpenTK.Platform.Native.X11.X11MouseComponent.GetMouseState* + seealso: + - linkId: OpenTK.Platform.IMouseComponent.GetGlobalMouseState(OpenTK.Platform.MouseState@) + commentId: M:OpenTK.Platform.IMouseComponent.GetGlobalMouseState(OpenTK.Platform.MouseState@) implements: - - OpenTK.Platform.IMouseComponent.GetMouseState(OpenTK.Platform.MouseState@) - nameWithType.vb: X11MouseComponent.GetMouseState(MouseState) - fullName.vb: OpenTK.Platform.Native.X11.X11MouseComponent.GetMouseState(OpenTK.Platform.MouseState) - name.vb: GetMouseState(MouseState) + - OpenTK.Platform.IMouseComponent.GetMouseState(OpenTK.Platform.WindowHandle,OpenTK.Platform.MouseState@) + nameWithType.vb: X11MouseComponent.GetMouseState(WindowHandle, MouseState) + fullName.vb: OpenTK.Platform.Native.X11.X11MouseComponent.GetMouseState(OpenTK.Platform.WindowHandle, OpenTK.Platform.MouseState) + name.vb: GetMouseState(WindowHandle, MouseState) - uid: OpenTK.Platform.Native.X11.X11MouseComponent.IsRawMouseMotionEnabled(OpenTK.Platform.WindowHandle) commentId: M:OpenTK.Platform.Native.X11.X11MouseComponent.IsRawMouseMotionEnabled(OpenTK.Platform.WindowHandle) id: IsRawMouseMotionEnabled(OpenTK.Platform.WindowHandle) @@ -357,7 +502,7 @@ items: source: id: IsRawMouseMotionEnabled path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11MouseComponent.cs - startLine: 87 + startLine: 133 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 @@ -380,6 +525,8 @@ items: seealso: - linkId: OpenTK.Platform.IMouseComponent.SupportsRawMouseMotion commentId: P:OpenTK.Platform.IMouseComponent.SupportsRawMouseMotion + - linkId: OpenTK.Platform.IMouseComponent.EnableRawMouseMotion(OpenTK.Platform.WindowHandle,System.Boolean) + commentId: M:OpenTK.Platform.IMouseComponent.EnableRawMouseMotion(OpenTK.Platform.WindowHandle,System.Boolean) implements: - OpenTK.Platform.IMouseComponent.IsRawMouseMotionEnabled(OpenTK.Platform.WindowHandle) - uid: OpenTK.Platform.Native.X11.X11MouseComponent.EnableRawMouseMotion(OpenTK.Platform.WindowHandle,System.Boolean) @@ -396,7 +543,7 @@ items: source: id: EnableRawMouseMotion path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11MouseComponent.cs - startLine: 93 + startLine: 139 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 @@ -784,6 +931,19 @@ references: name: PalComponents nameWithType: PalComponents fullName: OpenTK.Platform.PalComponents +- uid: OpenTK.Core.Utility.ILogger + commentId: T:OpenTK.Core.Utility.ILogger + parent: OpenTK.Core.Utility + href: OpenTK.Core.Utility.ILogger.html + name: ILogger + nameWithType: ILogger + fullName: OpenTK.Core.Utility.ILogger +- uid: OpenTK.Platform.ToolkitOptions.Logger + commentId: P:OpenTK.Platform.ToolkitOptions.Logger + href: OpenTK.Platform.ToolkitOptions.html#OpenTK_Platform_ToolkitOptions_Logger + name: Logger + nameWithType: ToolkitOptions.Logger + fullName: OpenTK.Platform.ToolkitOptions.Logger - uid: OpenTK.Platform.Native.X11.X11MouseComponent.Logger* commentId: Overload:OpenTK.Platform.Native.X11.X11MouseComponent.Logger href: OpenTK.Platform.Native.X11.X11MouseComponent.html#OpenTK_Platform_Native_X11_X11MouseComponent_Logger @@ -797,13 +957,6 @@ references: name: Logger nameWithType: IPalComponent.Logger fullName: OpenTK.Platform.IPalComponent.Logger -- uid: OpenTK.Core.Utility.ILogger - commentId: T:OpenTK.Core.Utility.ILogger - parent: OpenTK.Core.Utility - href: OpenTK.Core.Utility.ILogger.html - name: ILogger - nameWithType: ILogger - fullName: OpenTK.Core.Utility.ILogger - uid: OpenTK.Core.Utility commentId: N:OpenTK.Core.Utility href: OpenTK.html @@ -834,6 +987,37 @@ references: - uid: OpenTK.Core.Utility name: Utility href: OpenTK.Core.Utility.html +- uid: OpenTK.Platform.ToolkitOptions + commentId: T:OpenTK.Platform.ToolkitOptions + parent: OpenTK.Platform + href: OpenTK.Platform.ToolkitOptions.html + name: ToolkitOptions + nameWithType: ToolkitOptions + fullName: OpenTK.Platform.ToolkitOptions +- uid: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Init_OpenTK_Platform_ToolkitOptions_ + name: Init(ToolkitOptions) + nameWithType: Toolkit.Init(ToolkitOptions) + fullName: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + spec.csharp: + - uid: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + name: Init + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Init_OpenTK_Platform_ToolkitOptions_ + - name: ( + - uid: OpenTK.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Platform.ToolkitOptions.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + name: Init + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Init_OpenTK_Platform_ToolkitOptions_ + - name: ( + - uid: OpenTK.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Platform.ToolkitOptions.html + - name: ) - uid: OpenTK.Platform.Native.X11.X11MouseComponent.Initialize* commentId: Overload:OpenTK.Platform.Native.X11.X11MouseComponent.Initialize href: OpenTK.Platform.Native.X11.X11MouseComponent.html#OpenTK_Platform_Native_X11_X11MouseComponent_Initialize_OpenTK_Platform_ToolkitOptions_ @@ -865,55 +1049,73 @@ references: name: ToolkitOptions href: OpenTK.Platform.ToolkitOptions.html - name: ) -- uid: OpenTK.Platform.ToolkitOptions - commentId: T:OpenTK.Platform.ToolkitOptions - parent: OpenTK.Platform - href: OpenTK.Platform.ToolkitOptions.html - name: ToolkitOptions - nameWithType: ToolkitOptions - fullName: OpenTK.Platform.ToolkitOptions -- uid: OpenTK.Platform.IMouseComponent.SetPosition(System.Int32,System.Int32) - commentId: M:OpenTK.Platform.IMouseComponent.SetPosition(System.Int32,System.Int32) +- uid: OpenTK.Platform.Toolkit.Uninit + commentId: M:OpenTK.Platform.Toolkit.Uninit + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Uninit + name: Uninit() + nameWithType: Toolkit.Uninit() + fullName: OpenTK.Platform.Toolkit.Uninit() + spec.csharp: + - uid: OpenTK.Platform.Toolkit.Uninit + name: Uninit + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Uninit + - name: ( + - name: ) + spec.vb: + - uid: OpenTK.Platform.Toolkit.Uninit + name: Uninit + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Uninit + - name: ( + - name: ) +- uid: OpenTK.Platform.Native.X11.X11MouseComponent.Uninitialize* + commentId: Overload:OpenTK.Platform.Native.X11.X11MouseComponent.Uninitialize + href: OpenTK.Platform.Native.X11.X11MouseComponent.html#OpenTK_Platform_Native_X11_X11MouseComponent_Uninitialize + name: Uninitialize + nameWithType: X11MouseComponent.Uninitialize + fullName: OpenTK.Platform.Native.X11.X11MouseComponent.Uninitialize +- uid: OpenTK.Platform.IPalComponent.Uninitialize + commentId: M:OpenTK.Platform.IPalComponent.Uninitialize + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + name: Uninitialize() + nameWithType: IPalComponent.Uninitialize() + fullName: OpenTK.Platform.IPalComponent.Uninitialize() + spec.csharp: + - uid: OpenTK.Platform.IPalComponent.Uninitialize + name: Uninitialize + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + - name: ( + - name: ) + spec.vb: + - uid: OpenTK.Platform.IPalComponent.Uninitialize + name: Uninitialize + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + - name: ( + - name: ) +- uid: OpenTK.Platform.IMouseComponent.SetGlobalPosition(OpenTK.Mathematics.Vector2) + commentId: M:OpenTK.Platform.IMouseComponent.SetGlobalPosition(OpenTK.Mathematics.Vector2) parent: OpenTK.Platform.IMouseComponent - isExternal: true - href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_SetPosition_System_Int32_System_Int32_ - name: SetPosition(int, int) - nameWithType: IMouseComponent.SetPosition(int, int) - fullName: OpenTK.Platform.IMouseComponent.SetPosition(int, int) - nameWithType.vb: IMouseComponent.SetPosition(Integer, Integer) - fullName.vb: OpenTK.Platform.IMouseComponent.SetPosition(Integer, Integer) - name.vb: SetPosition(Integer, Integer) + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_SetGlobalPosition_OpenTK_Mathematics_Vector2_ + name: SetGlobalPosition(Vector2) + nameWithType: IMouseComponent.SetGlobalPosition(Vector2) + fullName: OpenTK.Platform.IMouseComponent.SetGlobalPosition(OpenTK.Mathematics.Vector2) spec.csharp: - - uid: OpenTK.Platform.IMouseComponent.SetPosition(System.Int32,System.Int32) - name: SetPosition - href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_SetPosition_System_Int32_System_Int32_ + - uid: OpenTK.Platform.IMouseComponent.SetGlobalPosition(OpenTK.Mathematics.Vector2) + name: SetGlobalPosition + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_SetGlobalPosition_OpenTK_Mathematics_Vector2_ - name: ( - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 + - uid: OpenTK.Mathematics.Vector2 + name: Vector2 + href: OpenTK.Mathematics.Vector2.html - name: ) spec.vb: - - uid: OpenTK.Platform.IMouseComponent.SetPosition(System.Int32,System.Int32) - name: SetPosition - href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_SetPosition_System_Int32_System_Int32_ + - uid: OpenTK.Platform.IMouseComponent.SetGlobalPosition(OpenTK.Mathematics.Vector2) + name: SetGlobalPosition + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_SetGlobalPosition_OpenTK_Mathematics_Vector2_ - name: ( - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 + - uid: OpenTK.Mathematics.Vector2 + name: Vector2 + href: OpenTK.Mathematics.Vector2.html - name: ) - uid: OpenTK.Platform.Native.X11.X11MouseComponent.CanSetMousePosition* commentId: Overload:OpenTK.Platform.Native.X11.X11MouseComponent.CanSetMousePosition @@ -1018,96 +1220,202 @@ references: name: SupportsRawMouseMotion nameWithType: IMouseComponent.SupportsRawMouseMotion fullName: OpenTK.Platform.IMouseComponent.SupportsRawMouseMotion +- uid: OpenTK.Platform.IMouseComponent.GetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2@) + commentId: M:OpenTK.Platform.IMouseComponent.GetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2@) + parent: OpenTK.Platform.IMouseComponent + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_GetPosition_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2__ + name: GetPosition(WindowHandle, out Vector2) + nameWithType: IMouseComponent.GetPosition(WindowHandle, out Vector2) + fullName: OpenTK.Platform.IMouseComponent.GetPosition(OpenTK.Platform.WindowHandle, out OpenTK.Mathematics.Vector2) + nameWithType.vb: IMouseComponent.GetPosition(WindowHandle, Vector2) + fullName.vb: OpenTK.Platform.IMouseComponent.GetPosition(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2) + name.vb: GetPosition(WindowHandle, Vector2) + spec.csharp: + - uid: OpenTK.Platform.IMouseComponent.GetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2@) + name: GetPosition + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_GetPosition_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2__ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - name: out + - name: " " + - uid: OpenTK.Mathematics.Vector2 + name: Vector2 + href: OpenTK.Mathematics.Vector2.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IMouseComponent.GetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2@) + name: GetPosition + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_GetPosition_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2__ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: OpenTK.Mathematics.Vector2 + name: Vector2 + href: OpenTK.Mathematics.Vector2.html + - name: ) +- uid: OpenTK.Platform.CursorCaptureMode.Locked + commentId: F:OpenTK.Platform.CursorCaptureMode.Locked + href: OpenTK.Platform.CursorCaptureMode.html#OpenTK_Platform_CursorCaptureMode_Locked + name: Locked + nameWithType: CursorCaptureMode.Locked + fullName: OpenTK.Platform.CursorCaptureMode.Locked +- uid: OpenTK.Platform.Native.X11.X11MouseComponent.GetGlobalPosition* + commentId: Overload:OpenTK.Platform.Native.X11.X11MouseComponent.GetGlobalPosition + href: OpenTK.Platform.Native.X11.X11MouseComponent.html#OpenTK_Platform_Native_X11_X11MouseComponent_GetGlobalPosition_OpenTK_Mathematics_Vector2__ + name: GetGlobalPosition + nameWithType: X11MouseComponent.GetGlobalPosition + fullName: OpenTK.Platform.Native.X11.X11MouseComponent.GetGlobalPosition +- uid: OpenTK.Platform.IMouseComponent.GetGlobalPosition(OpenTK.Mathematics.Vector2@) + commentId: M:OpenTK.Platform.IMouseComponent.GetGlobalPosition(OpenTK.Mathematics.Vector2@) + parent: OpenTK.Platform.IMouseComponent + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_GetGlobalPosition_OpenTK_Mathematics_Vector2__ + name: GetGlobalPosition(out Vector2) + nameWithType: IMouseComponent.GetGlobalPosition(out Vector2) + fullName: OpenTK.Platform.IMouseComponent.GetGlobalPosition(out OpenTK.Mathematics.Vector2) + nameWithType.vb: IMouseComponent.GetGlobalPosition(Vector2) + fullName.vb: OpenTK.Platform.IMouseComponent.GetGlobalPosition(OpenTK.Mathematics.Vector2) + name.vb: GetGlobalPosition(Vector2) + spec.csharp: + - uid: OpenTK.Platform.IMouseComponent.GetGlobalPosition(OpenTK.Mathematics.Vector2@) + name: GetGlobalPosition + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_GetGlobalPosition_OpenTK_Mathematics_Vector2__ + - name: ( + - name: out + - name: " " + - uid: OpenTK.Mathematics.Vector2 + name: Vector2 + href: OpenTK.Mathematics.Vector2.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IMouseComponent.GetGlobalPosition(OpenTK.Mathematics.Vector2@) + name: GetGlobalPosition + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_GetGlobalPosition_OpenTK_Mathematics_Vector2__ + - name: ( + - uid: OpenTK.Mathematics.Vector2 + name: Vector2 + href: OpenTK.Mathematics.Vector2.html + - name: ) +- uid: OpenTK.Mathematics.Vector2 + commentId: T:OpenTK.Mathematics.Vector2 + parent: OpenTK.Mathematics + href: OpenTK.Mathematics.Vector2.html + name: Vector2 + nameWithType: Vector2 + fullName: OpenTK.Mathematics.Vector2 +- uid: OpenTK.Mathematics + commentId: N:OpenTK.Mathematics + href: OpenTK.html + name: OpenTK.Mathematics + nameWithType: OpenTK.Mathematics + fullName: OpenTK.Mathematics + spec.csharp: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Mathematics + name: Mathematics + href: OpenTK.Mathematics.html + spec.vb: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Mathematics + name: Mathematics + href: OpenTK.Mathematics.html - uid: OpenTK.Platform.Native.X11.X11MouseComponent.GetPosition* commentId: Overload:OpenTK.Platform.Native.X11.X11MouseComponent.GetPosition - href: OpenTK.Platform.Native.X11.X11MouseComponent.html#OpenTK_Platform_Native_X11_X11MouseComponent_GetPosition_System_Int32__System_Int32__ + href: OpenTK.Platform.Native.X11.X11MouseComponent.html#OpenTK_Platform_Native_X11_X11MouseComponent_GetPosition_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2__ name: GetPosition nameWithType: X11MouseComponent.GetPosition fullName: OpenTK.Platform.Native.X11.X11MouseComponent.GetPosition -- uid: OpenTK.Platform.IMouseComponent.GetPosition(System.Int32@,System.Int32@) - commentId: M:OpenTK.Platform.IMouseComponent.GetPosition(System.Int32@,System.Int32@) +- uid: OpenTK.Platform.WindowHandle + commentId: T:OpenTK.Platform.WindowHandle + parent: OpenTK.Platform + href: OpenTK.Platform.WindowHandle.html + name: WindowHandle + nameWithType: WindowHandle + fullName: OpenTK.Platform.WindowHandle +- uid: OpenTK.Platform.Native.X11.X11MouseComponent.SetGlobalPosition* + commentId: Overload:OpenTK.Platform.Native.X11.X11MouseComponent.SetGlobalPosition + href: OpenTK.Platform.Native.X11.X11MouseComponent.html#OpenTK_Platform_Native_X11_X11MouseComponent_SetGlobalPosition_OpenTK_Mathematics_Vector2_ + name: SetGlobalPosition + nameWithType: X11MouseComponent.SetGlobalPosition + fullName: OpenTK.Platform.Native.X11.X11MouseComponent.SetGlobalPosition +- uid: OpenTK.Platform.IMouseComponent.GetMouseState(OpenTK.Platform.WindowHandle,OpenTK.Platform.MouseState@) + commentId: M:OpenTK.Platform.IMouseComponent.GetMouseState(OpenTK.Platform.WindowHandle,OpenTK.Platform.MouseState@) parent: OpenTK.Platform.IMouseComponent - isExternal: true - href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_GetPosition_System_Int32__System_Int32__ - name: GetPosition(out int, out int) - nameWithType: IMouseComponent.GetPosition(out int, out int) - fullName: OpenTK.Platform.IMouseComponent.GetPosition(out int, out int) - nameWithType.vb: IMouseComponent.GetPosition(Integer, Integer) - fullName.vb: OpenTK.Platform.IMouseComponent.GetPosition(Integer, Integer) - name.vb: GetPosition(Integer, Integer) + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_GetMouseState_OpenTK_Platform_WindowHandle_OpenTK_Platform_MouseState__ + name: GetMouseState(WindowHandle, out MouseState) + nameWithType: IMouseComponent.GetMouseState(WindowHandle, out MouseState) + fullName: OpenTK.Platform.IMouseComponent.GetMouseState(OpenTK.Platform.WindowHandle, out OpenTK.Platform.MouseState) + nameWithType.vb: IMouseComponent.GetMouseState(WindowHandle, MouseState) + fullName.vb: OpenTK.Platform.IMouseComponent.GetMouseState(OpenTK.Platform.WindowHandle, OpenTK.Platform.MouseState) + name.vb: GetMouseState(WindowHandle, MouseState) spec.csharp: - - uid: OpenTK.Platform.IMouseComponent.GetPosition(System.Int32@,System.Int32@) - name: GetPosition - href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_GetPosition_System_Int32__System_Int32__ + - uid: OpenTK.Platform.IMouseComponent.GetMouseState(OpenTK.Platform.WindowHandle,OpenTK.Platform.MouseState@) + name: GetMouseState + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_GetMouseState_OpenTK_Platform_WindowHandle_OpenTK_Platform_MouseState__ - name: ( - - name: out - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - name: out - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 + - uid: OpenTK.Platform.MouseState + name: MouseState + href: OpenTK.Platform.MouseState.html - name: ) spec.vb: - - uid: OpenTK.Platform.IMouseComponent.GetPosition(System.Int32@,System.Int32@) - name: GetPosition - href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_GetPosition_System_Int32__System_Int32__ + - uid: OpenTK.Platform.IMouseComponent.GetMouseState(OpenTK.Platform.WindowHandle,OpenTK.Platform.MouseState@) + name: GetMouseState + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_GetMouseState_OpenTK_Platform_WindowHandle_OpenTK_Platform_MouseState__ - name: ( - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 + - uid: OpenTK.Platform.MouseState + name: MouseState + href: OpenTK.Platform.MouseState.html - name: ) -- uid: System.Int32 - commentId: T:System.Int32 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - name: int - nameWithType: int - fullName: int - nameWithType.vb: Integer - fullName.vb: Integer - name.vb: Integer -- uid: OpenTK.Platform.Native.X11.X11MouseComponent.SetPosition* - commentId: Overload:OpenTK.Platform.Native.X11.X11MouseComponent.SetPosition - href: OpenTK.Platform.Native.X11.X11MouseComponent.html#OpenTK_Platform_Native_X11_X11MouseComponent_SetPosition_System_Int32_System_Int32_ - name: SetPosition - nameWithType: X11MouseComponent.SetPosition - fullName: OpenTK.Platform.Native.X11.X11MouseComponent.SetPosition -- uid: OpenTK.Platform.Native.X11.X11MouseComponent.GetMouseState* - commentId: Overload:OpenTK.Platform.Native.X11.X11MouseComponent.GetMouseState - href: OpenTK.Platform.Native.X11.X11MouseComponent.html#OpenTK_Platform_Native_X11_X11MouseComponent_GetMouseState_OpenTK_Platform_MouseState__ - name: GetMouseState - nameWithType: X11MouseComponent.GetMouseState - fullName: OpenTK.Platform.Native.X11.X11MouseComponent.GetMouseState -- uid: OpenTK.Platform.IMouseComponent.GetMouseState(OpenTK.Platform.MouseState@) - commentId: M:OpenTK.Platform.IMouseComponent.GetMouseState(OpenTK.Platform.MouseState@) +- uid: OpenTK.Platform.MouseState.Position + commentId: F:OpenTK.Platform.MouseState.Position + href: OpenTK.Platform.MouseState.html#OpenTK_Platform_MouseState_Position + name: Position + nameWithType: MouseState.Position + fullName: OpenTK.Platform.MouseState.Position +- uid: OpenTK.Platform.Native.X11.X11MouseComponent.GetGlobalMouseState* + commentId: Overload:OpenTK.Platform.Native.X11.X11MouseComponent.GetGlobalMouseState + href: OpenTK.Platform.Native.X11.X11MouseComponent.html#OpenTK_Platform_Native_X11_X11MouseComponent_GetGlobalMouseState_OpenTK_Platform_MouseState__ + name: GetGlobalMouseState + nameWithType: X11MouseComponent.GetGlobalMouseState + fullName: OpenTK.Platform.Native.X11.X11MouseComponent.GetGlobalMouseState +- uid: OpenTK.Platform.IMouseComponent.GetGlobalMouseState(OpenTK.Platform.MouseState@) + commentId: M:OpenTK.Platform.IMouseComponent.GetGlobalMouseState(OpenTK.Platform.MouseState@) parent: OpenTK.Platform.IMouseComponent - href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_GetMouseState_OpenTK_Platform_MouseState__ - name: GetMouseState(out MouseState) - nameWithType: IMouseComponent.GetMouseState(out MouseState) - fullName: OpenTK.Platform.IMouseComponent.GetMouseState(out OpenTK.Platform.MouseState) - nameWithType.vb: IMouseComponent.GetMouseState(MouseState) - fullName.vb: OpenTK.Platform.IMouseComponent.GetMouseState(OpenTK.Platform.MouseState) - name.vb: GetMouseState(MouseState) + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_GetGlobalMouseState_OpenTK_Platform_MouseState__ + name: GetGlobalMouseState(out MouseState) + nameWithType: IMouseComponent.GetGlobalMouseState(out MouseState) + fullName: OpenTK.Platform.IMouseComponent.GetGlobalMouseState(out OpenTK.Platform.MouseState) + nameWithType.vb: IMouseComponent.GetGlobalMouseState(MouseState) + fullName.vb: OpenTK.Platform.IMouseComponent.GetGlobalMouseState(OpenTK.Platform.MouseState) + name.vb: GetGlobalMouseState(MouseState) spec.csharp: - - uid: OpenTK.Platform.IMouseComponent.GetMouseState(OpenTK.Platform.MouseState@) - name: GetMouseState - href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_GetMouseState_OpenTK_Platform_MouseState__ + - uid: OpenTK.Platform.IMouseComponent.GetGlobalMouseState(OpenTK.Platform.MouseState@) + name: GetGlobalMouseState + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_GetGlobalMouseState_OpenTK_Platform_MouseState__ - name: ( - name: out - name: " " @@ -1116,9 +1424,9 @@ references: href: OpenTK.Platform.MouseState.html - name: ) spec.vb: - - uid: OpenTK.Platform.IMouseComponent.GetMouseState(OpenTK.Platform.MouseState@) - name: GetMouseState - href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_GetMouseState_OpenTK_Platform_MouseState__ + - uid: OpenTK.Platform.IMouseComponent.GetGlobalMouseState(OpenTK.Platform.MouseState@) + name: GetGlobalMouseState + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_GetGlobalMouseState_OpenTK_Platform_MouseState__ - name: ( - uid: OpenTK.Platform.MouseState name: MouseState @@ -1131,19 +1439,18 @@ references: name: MouseState nameWithType: MouseState fullName: OpenTK.Platform.MouseState +- uid: OpenTK.Platform.Native.X11.X11MouseComponent.GetMouseState* + commentId: Overload:OpenTK.Platform.Native.X11.X11MouseComponent.GetMouseState + href: OpenTK.Platform.Native.X11.X11MouseComponent.html#OpenTK_Platform_Native_X11_X11MouseComponent_GetMouseState_OpenTK_Platform_WindowHandle_OpenTK_Platform_MouseState__ + name: GetMouseState + nameWithType: X11MouseComponent.GetMouseState + fullName: OpenTK.Platform.Native.X11.X11MouseComponent.GetMouseState - uid: OpenTK.Platform.Native.X11.X11MouseComponent.IsRawMouseMotionEnabled* commentId: Overload:OpenTK.Platform.Native.X11.X11MouseComponent.IsRawMouseMotionEnabled href: OpenTK.Platform.Native.X11.X11MouseComponent.html#OpenTK_Platform_Native_X11_X11MouseComponent_IsRawMouseMotionEnabled_OpenTK_Platform_WindowHandle_ name: IsRawMouseMotionEnabled nameWithType: X11MouseComponent.IsRawMouseMotionEnabled fullName: OpenTK.Platform.Native.X11.X11MouseComponent.IsRawMouseMotionEnabled -- uid: OpenTK.Platform.WindowHandle - commentId: T:OpenTK.Platform.WindowHandle - parent: OpenTK.Platform - href: OpenTK.Platform.WindowHandle.html - name: WindowHandle - nameWithType: WindowHandle - fullName: OpenTK.Platform.WindowHandle - uid: OpenTK.Platform.RawMouseMoveEventArgs commentId: T:OpenTK.Platform.RawMouseMoveEventArgs href: OpenTK.Platform.RawMouseMoveEventArgs.html diff --git a/api/OpenTK.Platform.Native.X11.X11OpenGLComponent.yml b/api/OpenTK.Platform.Native.X11.X11OpenGLComponent.yml index 56b3c427..1f0f28e4 100644 --- a/api/OpenTK.Platform.Native.X11.X11OpenGLComponent.yml +++ b/api/OpenTK.Platform.Native.X11.X11OpenGLComponent.yml @@ -34,6 +34,7 @@ items: - OpenTK.Platform.Native.X11.X11OpenGLComponent.SetCurrentContext(OpenTK.Platform.OpenGLContextHandle) - OpenTK.Platform.Native.X11.X11OpenGLComponent.SetSwapInterval(System.Int32) - OpenTK.Platform.Native.X11.X11OpenGLComponent.SwapBuffers(OpenTK.Platform.OpenGLContextHandle) + - OpenTK.Platform.Native.X11.X11OpenGLComponent.Uninitialize langs: - csharp - vb @@ -44,7 +45,7 @@ items: source: id: X11OpenGLComponent path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11OpenGLComponent.cs - startLine: 12 + startLine: 13 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 @@ -78,7 +79,7 @@ items: source: id: Name path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11OpenGLComponent.cs - startLine: 15 + startLine: 16 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 @@ -107,7 +108,7 @@ items: source: id: Provides path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11OpenGLComponent.cs - startLine: 18 + startLine: 19 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 @@ -136,11 +137,11 @@ items: source: id: Logger path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11OpenGLComponent.cs - startLine: 21 + startLine: 22 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 - summary: Provides a logger for this component. + summary: The logger that this component uses to log diagnostic messages. example: [] syntax: content: public ILogger? Logger { get; set; } @@ -149,128 +150,13 @@ items: type: OpenTK.Core.Utility.ILogger content.vb: Public Property Logger As ILogger overload: OpenTK.Platform.Native.X11.X11OpenGLComponent.Logger* - implements: - - OpenTK.Platform.IPalComponent.Logger -- uid: OpenTK.Platform.Native.X11.X11OpenGLComponent.Initialize(OpenTK.Platform.ToolkitOptions) - commentId: M:OpenTK.Platform.Native.X11.X11OpenGLComponent.Initialize(OpenTK.Platform.ToolkitOptions) - id: Initialize(OpenTK.Platform.ToolkitOptions) - parent: OpenTK.Platform.Native.X11.X11OpenGLComponent - langs: - - csharp - - vb - name: Initialize(ToolkitOptions) - nameWithType: X11OpenGLComponent.Initialize(ToolkitOptions) - fullName: OpenTK.Platform.Native.X11.X11OpenGLComponent.Initialize(OpenTK.Platform.ToolkitOptions) - type: Method - source: - id: Initialize - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11OpenGLComponent.cs - startLine: 24 - assemblies: - - OpenTK.Platform - namespace: OpenTK.Platform.Native.X11 - summary: Initialize the component. - example: [] - syntax: - content: public void Initialize(ToolkitOptions options) - parameters: - - id: options - type: OpenTK.Platform.ToolkitOptions - description: The options to initialize the component with. - content.vb: Public Sub Initialize(options As ToolkitOptions) - overload: OpenTK.Platform.Native.X11.X11OpenGLComponent.Initialize* - implements: - - OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) -- uid: OpenTK.Platform.Native.X11.X11OpenGLComponent.CanShareContexts - commentId: P:OpenTK.Platform.Native.X11.X11OpenGLComponent.CanShareContexts - id: CanShareContexts - parent: OpenTK.Platform.Native.X11.X11OpenGLComponent - langs: - - csharp - - vb - name: CanShareContexts - nameWithType: X11OpenGLComponent.CanShareContexts - fullName: OpenTK.Platform.Native.X11.X11OpenGLComponent.CanShareContexts - type: Property - source: - id: CanShareContexts - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11OpenGLComponent.cs - startLine: 109 - assemblies: - - OpenTK.Platform - namespace: OpenTK.Platform.Native.X11 - summary: True if the component driver has the capability to share display lists between OpenGL contexts. - example: [] - syntax: - content: public bool CanShareContexts { get; } - parameters: [] - return: - type: System.Boolean - content.vb: Public ReadOnly Property CanShareContexts As Boolean - overload: OpenTK.Platform.Native.X11.X11OpenGLComponent.CanShareContexts* - implements: - - OpenTK.Platform.IOpenGLComponent.CanShareContexts -- uid: OpenTK.Platform.Native.X11.X11OpenGLComponent.CanCreateFromWindow - commentId: P:OpenTK.Platform.Native.X11.X11OpenGLComponent.CanCreateFromWindow - id: CanCreateFromWindow - parent: OpenTK.Platform.Native.X11.X11OpenGLComponent - langs: - - csharp - - vb - name: CanCreateFromWindow - nameWithType: X11OpenGLComponent.CanCreateFromWindow - fullName: OpenTK.Platform.Native.X11.X11OpenGLComponent.CanCreateFromWindow - type: Property - source: - id: CanCreateFromWindow - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11OpenGLComponent.cs - startLine: 112 - assemblies: - - OpenTK.Platform - namespace: OpenTK.Platform.Native.X11 - summary: True if the component driver can create a context from windows using . - example: [] - syntax: - content: public bool CanCreateFromWindow { get; } - parameters: [] - return: - type: System.Boolean - content.vb: Public ReadOnly Property CanCreateFromWindow As Boolean - overload: OpenTK.Platform.Native.X11.X11OpenGLComponent.CanCreateFromWindow* seealso: - - linkId: OpenTK.Platform.IOpenGLComponent.CreateFromWindow(OpenTK.Platform.WindowHandle) - commentId: M:OpenTK.Platform.IOpenGLComponent.CreateFromWindow(OpenTK.Platform.WindowHandle) - implements: - - OpenTK.Platform.IOpenGLComponent.CanCreateFromWindow -- uid: OpenTK.Platform.Native.X11.X11OpenGLComponent.CanCreateFromSurface - commentId: P:OpenTK.Platform.Native.X11.X11OpenGLComponent.CanCreateFromSurface - id: CanCreateFromSurface - parent: OpenTK.Platform.Native.X11.X11OpenGLComponent - langs: - - csharp - - vb - name: CanCreateFromSurface - nameWithType: X11OpenGLComponent.CanCreateFromSurface - fullName: OpenTK.Platform.Native.X11.X11OpenGLComponent.CanCreateFromSurface - type: Property - source: - id: CanCreateFromSurface - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11OpenGLComponent.cs - startLine: 115 - assemblies: - - OpenTK.Platform - namespace: OpenTK.Platform.Native.X11 - summary: True if the component driver can create a context from surfaces using . - example: [] - syntax: - content: public bool CanCreateFromSurface { get; } - parameters: [] - return: - type: System.Boolean - content.vb: Public ReadOnly Property CanCreateFromSurface As Boolean - overload: OpenTK.Platform.Native.X11.X11OpenGLComponent.CanCreateFromSurface* + - linkId: OpenTK.Core.Utility.ILogger + commentId: T:OpenTK.Core.Utility.ILogger + - linkId: OpenTK.Platform.ToolkitOptions.Logger + commentId: P:OpenTK.Platform.ToolkitOptions.Logger implements: - - OpenTK.Platform.IOpenGLComponent.CanCreateFromSurface + - OpenTK.Platform.IPalComponent.Logger - uid: OpenTK.Platform.Native.X11.X11OpenGLComponent.GLXVersion commentId: P:OpenTK.Platform.Native.X11.X11OpenGLComponent.GLXVersion id: GLXVersion @@ -285,7 +171,7 @@ items: source: id: GLXVersion path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11OpenGLComponent.cs - startLine: 117 + startLine: 24 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 @@ -310,7 +196,7 @@ items: source: id: GLXExtensions path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11OpenGLComponent.cs - startLine: 118 + startLine: 25 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 @@ -335,7 +221,7 @@ items: source: id: GLXServerExtensions path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11OpenGLComponent.cs - startLine: 119 + startLine: 26 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 @@ -360,7 +246,7 @@ items: source: id: GLXClientExtensions path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11OpenGLComponent.cs - startLine: 120 + startLine: 27 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 @@ -385,7 +271,7 @@ items: source: id: GLXServerVendor path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11OpenGLComponent.cs - startLine: 121 + startLine: 28 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 @@ -410,7 +296,7 @@ items: source: id: GLXClientVendor path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11OpenGLComponent.cs - startLine: 122 + startLine: 29 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 @@ -435,7 +321,7 @@ items: source: id: GLXServerVersion path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11OpenGLComponent.cs - startLine: 123 + startLine: 30 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 @@ -460,7 +346,7 @@ items: source: id: GLXClientVersion path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11OpenGLComponent.cs - startLine: 124 + startLine: 31 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 @@ -471,6 +357,160 @@ items: type: System.Version content.vb: Public Property GLXClientVersion As Version overload: OpenTK.Platform.Native.X11.X11OpenGLComponent.GLXClientVersion* +- uid: OpenTK.Platform.Native.X11.X11OpenGLComponent.Initialize(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Native.X11.X11OpenGLComponent.Initialize(OpenTK.Platform.ToolkitOptions) + id: Initialize(OpenTK.Platform.ToolkitOptions) + parent: OpenTK.Platform.Native.X11.X11OpenGLComponent + langs: + - csharp + - vb + name: Initialize(ToolkitOptions) + nameWithType: X11OpenGLComponent.Initialize(ToolkitOptions) + fullName: OpenTK.Platform.Native.X11.X11OpenGLComponent.Initialize(OpenTK.Platform.ToolkitOptions) + type: Method + source: + id: Initialize + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11OpenGLComponent.cs + startLine: 45 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform.Native.X11 + summary: Initialize the component. + example: [] + syntax: + content: public void Initialize(ToolkitOptions options) + parameters: + - id: options + type: OpenTK.Platform.ToolkitOptions + description: The options to initialize the component with. + content.vb: Public Sub Initialize(options As ToolkitOptions) + overload: OpenTK.Platform.Native.X11.X11OpenGLComponent.Initialize* + seealso: + - linkId: OpenTK.Platform.ToolkitOptions + commentId: T:OpenTK.Platform.ToolkitOptions + - linkId: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + implements: + - OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) +- uid: OpenTK.Platform.Native.X11.X11OpenGLComponent.Uninitialize + commentId: M:OpenTK.Platform.Native.X11.X11OpenGLComponent.Uninitialize + id: Uninitialize + parent: OpenTK.Platform.Native.X11.X11OpenGLComponent + langs: + - csharp + - vb + name: Uninitialize() + nameWithType: X11OpenGLComponent.Uninitialize() + fullName: OpenTK.Platform.Native.X11.X11OpenGLComponent.Uninitialize() + type: Method + source: + id: Uninitialize + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11OpenGLComponent.cs + startLine: 133 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform.Native.X11 + summary: Uninitialize the component. Frees any native resources used by the component. + example: [] + syntax: + content: public void Uninitialize() + content.vb: Public Sub Uninitialize() + overload: OpenTK.Platform.Native.X11.X11OpenGLComponent.Uninitialize* + seealso: + - linkId: OpenTK.Platform.Toolkit.Uninit + commentId: M:OpenTK.Platform.Toolkit.Uninit + implements: + - OpenTK.Platform.IPalComponent.Uninitialize +- uid: OpenTK.Platform.Native.X11.X11OpenGLComponent.CanShareContexts + commentId: P:OpenTK.Platform.Native.X11.X11OpenGLComponent.CanShareContexts + id: CanShareContexts + parent: OpenTK.Platform.Native.X11.X11OpenGLComponent + langs: + - csharp + - vb + name: CanShareContexts + nameWithType: X11OpenGLComponent.CanShareContexts + fullName: OpenTK.Platform.Native.X11.X11OpenGLComponent.CanShareContexts + type: Property + source: + id: CanShareContexts + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11OpenGLComponent.cs + startLine: 138 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform.Native.X11 + summary: True if the component driver has the capability to share display lists between OpenGL contexts. + example: [] + syntax: + content: public bool CanShareContexts { get; } + parameters: [] + return: + type: System.Boolean + content.vb: Public ReadOnly Property CanShareContexts As Boolean + overload: OpenTK.Platform.Native.X11.X11OpenGLComponent.CanShareContexts* + implements: + - OpenTK.Platform.IOpenGLComponent.CanShareContexts +- uid: OpenTK.Platform.Native.X11.X11OpenGLComponent.CanCreateFromWindow + commentId: P:OpenTK.Platform.Native.X11.X11OpenGLComponent.CanCreateFromWindow + id: CanCreateFromWindow + parent: OpenTK.Platform.Native.X11.X11OpenGLComponent + langs: + - csharp + - vb + name: CanCreateFromWindow + nameWithType: X11OpenGLComponent.CanCreateFromWindow + fullName: OpenTK.Platform.Native.X11.X11OpenGLComponent.CanCreateFromWindow + type: Property + source: + id: CanCreateFromWindow + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11OpenGLComponent.cs + startLine: 141 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform.Native.X11 + summary: True if the component driver can create a context from windows using . + example: [] + syntax: + content: public bool CanCreateFromWindow { get; } + parameters: [] + return: + type: System.Boolean + content.vb: Public ReadOnly Property CanCreateFromWindow As Boolean + overload: OpenTK.Platform.Native.X11.X11OpenGLComponent.CanCreateFromWindow* + seealso: + - linkId: OpenTK.Platform.IOpenGLComponent.CreateFromWindow(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IOpenGLComponent.CreateFromWindow(OpenTK.Platform.WindowHandle) + implements: + - OpenTK.Platform.IOpenGLComponent.CanCreateFromWindow +- uid: OpenTK.Platform.Native.X11.X11OpenGLComponent.CanCreateFromSurface + commentId: P:OpenTK.Platform.Native.X11.X11OpenGLComponent.CanCreateFromSurface + id: CanCreateFromSurface + parent: OpenTK.Platform.Native.X11.X11OpenGLComponent + langs: + - csharp + - vb + name: CanCreateFromSurface + nameWithType: X11OpenGLComponent.CanCreateFromSurface + fullName: OpenTK.Platform.Native.X11.X11OpenGLComponent.CanCreateFromSurface + type: Property + source: + id: CanCreateFromSurface + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11OpenGLComponent.cs + startLine: 144 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform.Native.X11 + summary: True if the component driver can create a context from surfaces using . + example: [] + syntax: + content: public bool CanCreateFromSurface { get; } + parameters: [] + return: + type: System.Boolean + content.vb: Public ReadOnly Property CanCreateFromSurface As Boolean + overload: OpenTK.Platform.Native.X11.X11OpenGLComponent.CanCreateFromSurface* + implements: + - OpenTK.Platform.IOpenGLComponent.CanCreateFromSurface - uid: OpenTK.Platform.Native.X11.X11OpenGLComponent.CreateFromSurface commentId: M:OpenTK.Platform.Native.X11.X11OpenGLComponent.CreateFromSurface id: CreateFromSurface @@ -485,7 +525,7 @@ items: source: id: CreateFromSurface path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11OpenGLComponent.cs - startLine: 139 + startLine: 147 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 @@ -514,7 +554,7 @@ items: source: id: CreateFromWindow path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11OpenGLComponent.cs - startLine: 145 + startLine: 153 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 @@ -531,6 +571,11 @@ items: description: An OpenGL context handle. content.vb: Public Function CreateFromWindow(handle As WindowHandle) As OpenGLContextHandle overload: OpenTK.Platform.Native.X11.X11OpenGLComponent.CreateFromWindow* + seealso: + - linkId: OpenTK.Platform.IWindowComponent.Create(OpenTK.Platform.GraphicsApiHints) + commentId: M:OpenTK.Platform.IWindowComponent.Create(OpenTK.Platform.GraphicsApiHints) + - linkId: OpenTK.Platform.OpenGLGraphicsApiHints + commentId: T:OpenTK.Platform.OpenGLGraphicsApiHints implements: - OpenTK.Platform.IOpenGLComponent.CreateFromWindow(OpenTK.Platform.WindowHandle) - uid: OpenTK.Platform.Native.X11.X11OpenGLComponent.DestroyContext(OpenTK.Platform.OpenGLContextHandle) @@ -547,7 +592,7 @@ items: source: id: DestroyContext path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11OpenGLComponent.cs - startLine: 284 + startLine: 296 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 @@ -561,10 +606,9 @@ items: description: Handle to the OpenGL context to destroy. content.vb: Public Sub DestroyContext(handle As OpenGLContextHandle) overload: OpenTK.Platform.Native.X11.X11OpenGLComponent.DestroyContext* - exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: OpenGL context handle is null. + seealso: + - linkId: OpenTK.Platform.IOpenGLComponent.CreateFromWindow(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IOpenGLComponent.CreateFromWindow(OpenTK.Platform.WindowHandle) implements: - OpenTK.Platform.IOpenGLComponent.DestroyContext(OpenTK.Platform.OpenGLContextHandle) - uid: OpenTK.Platform.Native.X11.X11OpenGLComponent.GetBindingsContext(OpenTK.Platform.OpenGLContextHandle) @@ -581,11 +625,14 @@ items: source: id: GetBindingsContext path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11OpenGLComponent.cs - startLine: 293 + startLine: 305 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 - summary: Gets a from an . + summary: >- + Gets a from an . + + Pass this to to load the OpenGL bindings. example: [] syntax: content: public IBindingsContext GetBindingsContext(OpenGLContextHandle handle) @@ -598,6 +645,11 @@ items: description: The created bindings context. content.vb: Public Function GetBindingsContext(handle As OpenGLContextHandle) As IBindingsContext overload: OpenTK.Platform.Native.X11.X11OpenGLComponent.GetBindingsContext* + seealso: + - linkId: OpenTK.Graphics.GLLoader + commentId: T:OpenTK.Graphics.GLLoader + - linkId: OpenTK.IBindingsContext + commentId: T:OpenTK.IBindingsContext implements: - OpenTK.Platform.IOpenGLComponent.GetBindingsContext(OpenTK.Platform.OpenGLContextHandle) - uid: OpenTK.Platform.Native.X11.X11OpenGLComponent.GetProcedureAddress(OpenTK.Platform.OpenGLContextHandle,System.String) @@ -614,7 +666,7 @@ items: source: id: GetProcedureAddress path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11OpenGLComponent.cs - startLine: 299 + startLine: 311 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 @@ -634,10 +686,6 @@ items: description: The procedure address to the OpenGL command. content.vb: Public Function GetProcedureAddress(handle As OpenGLContextHandle, procedureName As String) As IntPtr overload: OpenTK.Platform.Native.X11.X11OpenGLComponent.GetProcedureAddress* - exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: OpenGL context handle or procedure name is null. implements: - OpenTK.Platform.IOpenGLComponent.GetProcedureAddress(OpenTK.Platform.OpenGLContextHandle,System.String) nameWithType.vb: X11OpenGLComponent.GetProcedureAddress(OpenGLContextHandle, String) @@ -657,7 +705,7 @@ items: source: id: GetCurrentContext path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11OpenGLComponent.cs - startLine: 306 + startLine: 318 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 @@ -667,9 +715,12 @@ items: content: public OpenGLContextHandle? GetCurrentContext() return: type: OpenTK.Platform.OpenGLContextHandle - description: Handle to the current OpenGL context, null if none are current. + description: Handle to the current OpenGL context, null if no context is current. content.vb: Public Function GetCurrentContext() As OpenGLContextHandle overload: OpenTK.Platform.Native.X11.X11OpenGLComponent.GetCurrentContext* + seealso: + - linkId: OpenTK.Platform.IOpenGLComponent.SetCurrentContext(OpenTK.Platform.OpenGLContextHandle) + commentId: M:OpenTK.Platform.IOpenGLComponent.SetCurrentContext(OpenTK.Platform.OpenGLContextHandle) implements: - OpenTK.Platform.IOpenGLComponent.GetCurrentContext - uid: OpenTK.Platform.Native.X11.X11OpenGLComponent.SetCurrentContext(OpenTK.Platform.OpenGLContextHandle) @@ -686,7 +737,7 @@ items: source: id: SetCurrentContext path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11OpenGLComponent.cs - startLine: 314 + startLine: 326 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 @@ -697,12 +748,15 @@ items: parameters: - id: handle type: OpenTK.Platform.OpenGLContextHandle - description: Handle to the OpenGL context to make current, or null to make none current. + description: Handle to the OpenGL context to make current, or null to make no context current. return: type: System.Boolean - description: True when the OpenGL context is successfully made current. + description: true when the OpenGL context is successfully made current. content.vb: Public Function SetCurrentContext(handle As OpenGLContextHandle) As Boolean overload: OpenTK.Platform.Native.X11.X11OpenGLComponent.SetCurrentContext* + seealso: + - linkId: OpenTK.Platform.IOpenGLComponent.GetCurrentContext + commentId: M:OpenTK.Platform.IOpenGLComponent.GetCurrentContext implements: - OpenTK.Platform.IOpenGLComponent.SetCurrentContext(OpenTK.Platform.OpenGLContextHandle) nameWithType.vb: X11OpenGLComponent.SetCurrentContext(OpenGLContextHandle) @@ -722,7 +776,7 @@ items: source: id: GetSharedContext path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11OpenGLComponent.cs - startLine: 329 + startLine: 341 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 @@ -739,6 +793,9 @@ items: description: Handle to the OpenGL context the given context shares display lists with. content.vb: Public Function GetSharedContext(handle As OpenGLContextHandle) As OpenGLContextHandle overload: OpenTK.Platform.Native.X11.X11OpenGLComponent.GetSharedContext* + seealso: + - linkId: OpenTK.Platform.OpenGLGraphicsApiHints.SharedContext + commentId: P:OpenTK.Platform.OpenGLGraphicsApiHints.SharedContext implements: - OpenTK.Platform.IOpenGLComponent.GetSharedContext(OpenTK.Platform.OpenGLContextHandle) - uid: OpenTK.Platform.Native.X11.X11OpenGLComponent.EXT_swap_control_GetMaxSwapInterval @@ -755,7 +812,7 @@ items: source: id: EXT_swap_control_GetMaxSwapInterval path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11OpenGLComponent.cs - startLine: 338 + startLine: 350 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 @@ -784,7 +841,7 @@ items: source: id: SetSwapInterval path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11OpenGLComponent.cs - startLine: 359 + startLine: 371 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 @@ -817,17 +874,17 @@ items: source: id: GetSwapInterval path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11OpenGLComponent.cs - startLine: 405 + startLine: 417 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 - summary: Gets the swap interval of the current OpenGL context. + summary: Gets the swap interval of the current OpenGL context, or -1 if no context is current. example: [] syntax: content: public int GetSwapInterval() return: type: System.Int32 - description: The current swap interval. + description: The current swap interval, or -1 if no context is current. content.vb: Public Function GetSwapInterval() As Integer overload: OpenTK.Platform.Native.X11.X11OpenGLComponent.GetSwapInterval* implements: @@ -846,7 +903,7 @@ items: source: id: SwapBuffers path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11OpenGLComponent.cs - startLine: 435 + startLine: 447 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 @@ -860,6 +917,9 @@ items: description: Handle to the context. content.vb: Public Sub SwapBuffers(handle As OpenGLContextHandle) overload: OpenTK.Platform.Native.X11.X11OpenGLComponent.SwapBuffers* + seealso: + - linkId: OpenTK.Platform.OpenGLGraphicsApiHints.SwapMethod + commentId: P:OpenTK.Platform.OpenGLGraphicsApiHints.SwapMethod implements: - OpenTK.Platform.IOpenGLComponent.SwapBuffers(OpenTK.Platform.OpenGLContextHandle) - uid: OpenTK.Platform.Native.X11.X11OpenGLComponent.GetGLXContext(OpenTK.Platform.OpenGLContextHandle) @@ -876,7 +936,7 @@ items: source: id: GetGLXContext path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11OpenGLComponent.cs - startLine: 446 + startLine: 458 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 @@ -907,7 +967,7 @@ items: source: id: GetGLXWindow path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11OpenGLComponent.cs - startLine: 458 + startLine: 470 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 @@ -1280,6 +1340,19 @@ references: name: PalComponents nameWithType: PalComponents fullName: OpenTK.Platform.PalComponents +- uid: OpenTK.Core.Utility.ILogger + commentId: T:OpenTK.Core.Utility.ILogger + parent: OpenTK.Core.Utility + href: OpenTK.Core.Utility.ILogger.html + name: ILogger + nameWithType: ILogger + fullName: OpenTK.Core.Utility.ILogger +- uid: OpenTK.Platform.ToolkitOptions.Logger + commentId: P:OpenTK.Platform.ToolkitOptions.Logger + href: OpenTK.Platform.ToolkitOptions.html#OpenTK_Platform_ToolkitOptions_Logger + name: Logger + nameWithType: ToolkitOptions.Logger + fullName: OpenTK.Platform.ToolkitOptions.Logger - uid: OpenTK.Platform.Native.X11.X11OpenGLComponent.Logger* commentId: Overload:OpenTK.Platform.Native.X11.X11OpenGLComponent.Logger href: OpenTK.Platform.Native.X11.X11OpenGLComponent.html#OpenTK_Platform_Native_X11_X11OpenGLComponent_Logger @@ -1293,13 +1366,6 @@ references: name: Logger nameWithType: IPalComponent.Logger fullName: OpenTK.Platform.IPalComponent.Logger -- uid: OpenTK.Core.Utility.ILogger - commentId: T:OpenTK.Core.Utility.ILogger - parent: OpenTK.Core.Utility - href: OpenTK.Core.Utility.ILogger.html - name: ILogger - nameWithType: ILogger - fullName: OpenTK.Core.Utility.ILogger - uid: OpenTK.Core.Utility commentId: N:OpenTK.Core.Utility href: OpenTK.html @@ -1313,155 +1379,23 @@ references: - name: . - uid: OpenTK.Core name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Utility - name: Utility - href: OpenTK.Core.Utility.html - spec.vb: - - uid: OpenTK - name: OpenTK - href: OpenTK.html - - name: . - - uid: OpenTK.Core - name: Core - href: OpenTK.Core.html - - name: . - - uid: OpenTK.Core.Utility - name: Utility - href: OpenTK.Core.Utility.html -- uid: OpenTK.Platform.Native.X11.X11OpenGLComponent.Initialize* - commentId: Overload:OpenTK.Platform.Native.X11.X11OpenGLComponent.Initialize - href: OpenTK.Platform.Native.X11.X11OpenGLComponent.html#OpenTK_Platform_Native_X11_X11OpenGLComponent_Initialize_OpenTK_Platform_ToolkitOptions_ - name: Initialize - nameWithType: X11OpenGLComponent.Initialize - fullName: OpenTK.Platform.Native.X11.X11OpenGLComponent.Initialize -- uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) - commentId: M:OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) - parent: OpenTK.Platform.IPalComponent - href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ - name: Initialize(ToolkitOptions) - nameWithType: IPalComponent.Initialize(ToolkitOptions) - fullName: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) - spec.csharp: - - uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) - name: Initialize - href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ - - name: ( - - uid: OpenTK.Platform.ToolkitOptions - name: ToolkitOptions - href: OpenTK.Platform.ToolkitOptions.html - - name: ) - spec.vb: - - uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) - name: Initialize - href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ - - name: ( - - uid: OpenTK.Platform.ToolkitOptions - name: ToolkitOptions - href: OpenTK.Platform.ToolkitOptions.html - - name: ) -- uid: OpenTK.Platform.ToolkitOptions - commentId: T:OpenTK.Platform.ToolkitOptions - parent: OpenTK.Platform - href: OpenTK.Platform.ToolkitOptions.html - name: ToolkitOptions - nameWithType: ToolkitOptions - fullName: OpenTK.Platform.ToolkitOptions -- uid: OpenTK.Platform.Native.X11.X11OpenGLComponent.CanShareContexts* - commentId: Overload:OpenTK.Platform.Native.X11.X11OpenGLComponent.CanShareContexts - href: OpenTK.Platform.Native.X11.X11OpenGLComponent.html#OpenTK_Platform_Native_X11_X11OpenGLComponent_CanShareContexts - name: CanShareContexts - nameWithType: X11OpenGLComponent.CanShareContexts - fullName: OpenTK.Platform.Native.X11.X11OpenGLComponent.CanShareContexts -- uid: OpenTK.Platform.IOpenGLComponent.CanShareContexts - commentId: P:OpenTK.Platform.IOpenGLComponent.CanShareContexts - parent: OpenTK.Platform.IOpenGLComponent - href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_CanShareContexts - name: CanShareContexts - nameWithType: IOpenGLComponent.CanShareContexts - fullName: OpenTK.Platform.IOpenGLComponent.CanShareContexts -- uid: System.Boolean - commentId: T:System.Boolean - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - name: bool - nameWithType: bool - fullName: bool - nameWithType.vb: Boolean - fullName.vb: Boolean - name.vb: Boolean -- uid: OpenTK.Platform.IOpenGLComponent.CreateFromWindow(OpenTK.Platform.WindowHandle) - commentId: M:OpenTK.Platform.IOpenGLComponent.CreateFromWindow(OpenTK.Platform.WindowHandle) - parent: OpenTK.Platform.IOpenGLComponent - href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_CreateFromWindow_OpenTK_Platform_WindowHandle_ - name: CreateFromWindow(WindowHandle) - nameWithType: IOpenGLComponent.CreateFromWindow(WindowHandle) - fullName: OpenTK.Platform.IOpenGLComponent.CreateFromWindow(OpenTK.Platform.WindowHandle) - spec.csharp: - - uid: OpenTK.Platform.IOpenGLComponent.CreateFromWindow(OpenTK.Platform.WindowHandle) - name: CreateFromWindow - href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_CreateFromWindow_OpenTK_Platform_WindowHandle_ - - name: ( - - uid: OpenTK.Platform.WindowHandle - name: WindowHandle - href: OpenTK.Platform.WindowHandle.html - - name: ) - spec.vb: - - uid: OpenTK.Platform.IOpenGLComponent.CreateFromWindow(OpenTK.Platform.WindowHandle) - name: CreateFromWindow - href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_CreateFromWindow_OpenTK_Platform_WindowHandle_ - - name: ( - - uid: OpenTK.Platform.WindowHandle - name: WindowHandle - href: OpenTK.Platform.WindowHandle.html - - name: ) -- uid: OpenTK.Platform.Native.X11.X11OpenGLComponent.CanCreateFromWindow* - commentId: Overload:OpenTK.Platform.Native.X11.X11OpenGLComponent.CanCreateFromWindow - href: OpenTK.Platform.Native.X11.X11OpenGLComponent.html#OpenTK_Platform_Native_X11_X11OpenGLComponent_CanCreateFromWindow - name: CanCreateFromWindow - nameWithType: X11OpenGLComponent.CanCreateFromWindow - fullName: OpenTK.Platform.Native.X11.X11OpenGLComponent.CanCreateFromWindow -- uid: OpenTK.Platform.IOpenGLComponent.CanCreateFromWindow - commentId: P:OpenTK.Platform.IOpenGLComponent.CanCreateFromWindow - parent: OpenTK.Platform.IOpenGLComponent - href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_CanCreateFromWindow - name: CanCreateFromWindow - nameWithType: IOpenGLComponent.CanCreateFromWindow - fullName: OpenTK.Platform.IOpenGLComponent.CanCreateFromWindow -- uid: OpenTK.Platform.IOpenGLComponent.CreateFromSurface - commentId: M:OpenTK.Platform.IOpenGLComponent.CreateFromSurface - parent: OpenTK.Platform.IOpenGLComponent - href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_CreateFromSurface - name: CreateFromSurface() - nameWithType: IOpenGLComponent.CreateFromSurface() - fullName: OpenTK.Platform.IOpenGLComponent.CreateFromSurface() - spec.csharp: - - uid: OpenTK.Platform.IOpenGLComponent.CreateFromSurface - name: CreateFromSurface - href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_CreateFromSurface - - name: ( - - name: ) + href: OpenTK.Core.html + - name: . + - uid: OpenTK.Core.Utility + name: Utility + href: OpenTK.Core.Utility.html spec.vb: - - uid: OpenTK.Platform.IOpenGLComponent.CreateFromSurface - name: CreateFromSurface - href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_CreateFromSurface - - name: ( - - name: ) -- uid: OpenTK.Platform.Native.X11.X11OpenGLComponent.CanCreateFromSurface* - commentId: Overload:OpenTK.Platform.Native.X11.X11OpenGLComponent.CanCreateFromSurface - href: OpenTK.Platform.Native.X11.X11OpenGLComponent.html#OpenTK_Platform_Native_X11_X11OpenGLComponent_CanCreateFromSurface - name: CanCreateFromSurface - nameWithType: X11OpenGLComponent.CanCreateFromSurface - fullName: OpenTK.Platform.Native.X11.X11OpenGLComponent.CanCreateFromSurface -- uid: OpenTK.Platform.IOpenGLComponent.CanCreateFromSurface - commentId: P:OpenTK.Platform.IOpenGLComponent.CanCreateFromSurface - parent: OpenTK.Platform.IOpenGLComponent - href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_CanCreateFromSurface - name: CanCreateFromSurface - nameWithType: IOpenGLComponent.CanCreateFromSurface - fullName: OpenTK.Platform.IOpenGLComponent.CanCreateFromSurface + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Core + name: Core + href: OpenTK.Core.html + - name: . + - uid: OpenTK.Core.Utility + name: Utility + href: OpenTK.Core.Utility.html - uid: OpenTK.Platform.Native.X11.X11OpenGLComponent.GLXVersion* commentId: Overload:OpenTK.Platform.Native.X11.X11OpenGLComponent.GLXVersion href: OpenTK.Platform.Native.X11.X11OpenGLComponent.html#OpenTK_Platform_Native_X11_X11OpenGLComponent_GLXVersion @@ -1618,6 +1552,205 @@ references: name: GLXClientVersion nameWithType: X11OpenGLComponent.GLXClientVersion fullName: OpenTK.Platform.Native.X11.X11OpenGLComponent.GLXClientVersion +- uid: OpenTK.Platform.ToolkitOptions + commentId: T:OpenTK.Platform.ToolkitOptions + parent: OpenTK.Platform + href: OpenTK.Platform.ToolkitOptions.html + name: ToolkitOptions + nameWithType: ToolkitOptions + fullName: OpenTK.Platform.ToolkitOptions +- uid: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Init_OpenTK_Platform_ToolkitOptions_ + name: Init(ToolkitOptions) + nameWithType: Toolkit.Init(ToolkitOptions) + fullName: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + spec.csharp: + - uid: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + name: Init + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Init_OpenTK_Platform_ToolkitOptions_ + - name: ( + - uid: OpenTK.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Platform.ToolkitOptions.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + name: Init + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Init_OpenTK_Platform_ToolkitOptions_ + - name: ( + - uid: OpenTK.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Platform.ToolkitOptions.html + - name: ) +- uid: OpenTK.Platform.Native.X11.X11OpenGLComponent.Initialize* + commentId: Overload:OpenTK.Platform.Native.X11.X11OpenGLComponent.Initialize + href: OpenTK.Platform.Native.X11.X11OpenGLComponent.html#OpenTK_Platform_Native_X11_X11OpenGLComponent_Initialize_OpenTK_Platform_ToolkitOptions_ + name: Initialize + nameWithType: X11OpenGLComponent.Initialize + fullName: OpenTK.Platform.Native.X11.X11OpenGLComponent.Initialize +- uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ + name: Initialize(ToolkitOptions) + nameWithType: IPalComponent.Initialize(ToolkitOptions) + fullName: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + spec.csharp: + - uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + name: Initialize + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ + - name: ( + - uid: OpenTK.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Platform.ToolkitOptions.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + name: Initialize + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ + - name: ( + - uid: OpenTK.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Platform.ToolkitOptions.html + - name: ) +- uid: OpenTK.Platform.Toolkit.Uninit + commentId: M:OpenTK.Platform.Toolkit.Uninit + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Uninit + name: Uninit() + nameWithType: Toolkit.Uninit() + fullName: OpenTK.Platform.Toolkit.Uninit() + spec.csharp: + - uid: OpenTK.Platform.Toolkit.Uninit + name: Uninit + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Uninit + - name: ( + - name: ) + spec.vb: + - uid: OpenTK.Platform.Toolkit.Uninit + name: Uninit + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Uninit + - name: ( + - name: ) +- uid: OpenTK.Platform.Native.X11.X11OpenGLComponent.Uninitialize* + commentId: Overload:OpenTK.Platform.Native.X11.X11OpenGLComponent.Uninitialize + href: OpenTK.Platform.Native.X11.X11OpenGLComponent.html#OpenTK_Platform_Native_X11_X11OpenGLComponent_Uninitialize + name: Uninitialize + nameWithType: X11OpenGLComponent.Uninitialize + fullName: OpenTK.Platform.Native.X11.X11OpenGLComponent.Uninitialize +- uid: OpenTK.Platform.IPalComponent.Uninitialize + commentId: M:OpenTK.Platform.IPalComponent.Uninitialize + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + name: Uninitialize() + nameWithType: IPalComponent.Uninitialize() + fullName: OpenTK.Platform.IPalComponent.Uninitialize() + spec.csharp: + - uid: OpenTK.Platform.IPalComponent.Uninitialize + name: Uninitialize + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + - name: ( + - name: ) + spec.vb: + - uid: OpenTK.Platform.IPalComponent.Uninitialize + name: Uninitialize + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + - name: ( + - name: ) +- uid: OpenTK.Platform.Native.X11.X11OpenGLComponent.CanShareContexts* + commentId: Overload:OpenTK.Platform.Native.X11.X11OpenGLComponent.CanShareContexts + href: OpenTK.Platform.Native.X11.X11OpenGLComponent.html#OpenTK_Platform_Native_X11_X11OpenGLComponent_CanShareContexts + name: CanShareContexts + nameWithType: X11OpenGLComponent.CanShareContexts + fullName: OpenTK.Platform.Native.X11.X11OpenGLComponent.CanShareContexts +- uid: OpenTK.Platform.IOpenGLComponent.CanShareContexts + commentId: P:OpenTK.Platform.IOpenGLComponent.CanShareContexts + parent: OpenTK.Platform.IOpenGLComponent + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_CanShareContexts + name: CanShareContexts + nameWithType: IOpenGLComponent.CanShareContexts + fullName: OpenTK.Platform.IOpenGLComponent.CanShareContexts +- uid: System.Boolean + commentId: T:System.Boolean + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + name: bool + nameWithType: bool + fullName: bool + nameWithType.vb: Boolean + fullName.vb: Boolean + name.vb: Boolean +- uid: OpenTK.Platform.IOpenGLComponent.CreateFromWindow(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IOpenGLComponent.CreateFromWindow(OpenTK.Platform.WindowHandle) + parent: OpenTK.Platform.IOpenGLComponent + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_CreateFromWindow_OpenTK_Platform_WindowHandle_ + name: CreateFromWindow(WindowHandle) + nameWithType: IOpenGLComponent.CreateFromWindow(WindowHandle) + fullName: OpenTK.Platform.IOpenGLComponent.CreateFromWindow(OpenTK.Platform.WindowHandle) + spec.csharp: + - uid: OpenTK.Platform.IOpenGLComponent.CreateFromWindow(OpenTK.Platform.WindowHandle) + name: CreateFromWindow + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_CreateFromWindow_OpenTK_Platform_WindowHandle_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IOpenGLComponent.CreateFromWindow(OpenTK.Platform.WindowHandle) + name: CreateFromWindow + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_CreateFromWindow_OpenTK_Platform_WindowHandle_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ) +- uid: OpenTK.Platform.Native.X11.X11OpenGLComponent.CanCreateFromWindow* + commentId: Overload:OpenTK.Platform.Native.X11.X11OpenGLComponent.CanCreateFromWindow + href: OpenTK.Platform.Native.X11.X11OpenGLComponent.html#OpenTK_Platform_Native_X11_X11OpenGLComponent_CanCreateFromWindow + name: CanCreateFromWindow + nameWithType: X11OpenGLComponent.CanCreateFromWindow + fullName: OpenTK.Platform.Native.X11.X11OpenGLComponent.CanCreateFromWindow +- uid: OpenTK.Platform.IOpenGLComponent.CanCreateFromWindow + commentId: P:OpenTK.Platform.IOpenGLComponent.CanCreateFromWindow + parent: OpenTK.Platform.IOpenGLComponent + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_CanCreateFromWindow + name: CanCreateFromWindow + nameWithType: IOpenGLComponent.CanCreateFromWindow + fullName: OpenTK.Platform.IOpenGLComponent.CanCreateFromWindow +- uid: OpenTK.Platform.IOpenGLComponent.CreateFromSurface + commentId: M:OpenTK.Platform.IOpenGLComponent.CreateFromSurface + parent: OpenTK.Platform.IOpenGLComponent + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_CreateFromSurface + name: CreateFromSurface() + nameWithType: IOpenGLComponent.CreateFromSurface() + fullName: OpenTK.Platform.IOpenGLComponent.CreateFromSurface() + spec.csharp: + - uid: OpenTK.Platform.IOpenGLComponent.CreateFromSurface + name: CreateFromSurface + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_CreateFromSurface + - name: ( + - name: ) + spec.vb: + - uid: OpenTK.Platform.IOpenGLComponent.CreateFromSurface + name: CreateFromSurface + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_CreateFromSurface + - name: ( + - name: ) +- uid: OpenTK.Platform.Native.X11.X11OpenGLComponent.CanCreateFromSurface* + commentId: Overload:OpenTK.Platform.Native.X11.X11OpenGLComponent.CanCreateFromSurface + href: OpenTK.Platform.Native.X11.X11OpenGLComponent.html#OpenTK_Platform_Native_X11_X11OpenGLComponent_CanCreateFromSurface + name: CanCreateFromSurface + nameWithType: X11OpenGLComponent.CanCreateFromSurface + fullName: OpenTK.Platform.Native.X11.X11OpenGLComponent.CanCreateFromSurface +- uid: OpenTK.Platform.IOpenGLComponent.CanCreateFromSurface + commentId: P:OpenTK.Platform.IOpenGLComponent.CanCreateFromSurface + parent: OpenTK.Platform.IOpenGLComponent + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_CanCreateFromSurface + name: CanCreateFromSurface + nameWithType: IOpenGLComponent.CanCreateFromSurface + fullName: OpenTK.Platform.IOpenGLComponent.CanCreateFromSurface - uid: OpenTK.Platform.Native.X11.X11OpenGLComponent.CreateFromSurface* commentId: Overload:OpenTK.Platform.Native.X11.X11OpenGLComponent.CreateFromSurface href: OpenTK.Platform.Native.X11.X11OpenGLComponent.html#OpenTK_Platform_Native_X11_X11OpenGLComponent_CreateFromSurface @@ -1631,6 +1764,38 @@ references: name: OpenGLContextHandle nameWithType: OpenGLContextHandle fullName: OpenTK.Platform.OpenGLContextHandle +- uid: OpenTK.Platform.IWindowComponent.Create(OpenTK.Platform.GraphicsApiHints) + commentId: M:OpenTK.Platform.IWindowComponent.Create(OpenTK.Platform.GraphicsApiHints) + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_Create_OpenTK_Platform_GraphicsApiHints_ + name: Create(GraphicsApiHints) + nameWithType: IWindowComponent.Create(GraphicsApiHints) + fullName: OpenTK.Platform.IWindowComponent.Create(OpenTK.Platform.GraphicsApiHints) + spec.csharp: + - uid: OpenTK.Platform.IWindowComponent.Create(OpenTK.Platform.GraphicsApiHints) + name: Create + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_Create_OpenTK_Platform_GraphicsApiHints_ + - name: ( + - uid: OpenTK.Platform.GraphicsApiHints + name: GraphicsApiHints + href: OpenTK.Platform.GraphicsApiHints.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IWindowComponent.Create(OpenTK.Platform.GraphicsApiHints) + name: Create + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_Create_OpenTK_Platform_GraphicsApiHints_ + - name: ( + - uid: OpenTK.Platform.GraphicsApiHints + name: GraphicsApiHints + href: OpenTK.Platform.GraphicsApiHints.html + - name: ) +- uid: OpenTK.Platform.OpenGLGraphicsApiHints + commentId: T:OpenTK.Platform.OpenGLGraphicsApiHints + parent: OpenTK.Platform + href: OpenTK.Platform.OpenGLGraphicsApiHints.html + name: OpenGLGraphicsApiHints + nameWithType: OpenGLGraphicsApiHints + fullName: OpenTK.Platform.OpenGLGraphicsApiHints - uid: OpenTK.Platform.Native.X11.X11OpenGLComponent.CreateFromWindow* commentId: Overload:OpenTK.Platform.Native.X11.X11OpenGLComponent.CreateFromWindow href: OpenTK.Platform.Native.X11.X11OpenGLComponent.html#OpenTK_Platform_Native_X11_X11OpenGLComponent_CreateFromWindow_OpenTK_Platform_WindowHandle_ @@ -1644,13 +1809,13 @@ references: name: WindowHandle nameWithType: WindowHandle fullName: OpenTK.Platform.WindowHandle -- uid: System.ArgumentNullException - commentId: T:System.ArgumentNullException - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.argumentnullexception - name: ArgumentNullException - nameWithType: ArgumentNullException - fullName: System.ArgumentNullException +- uid: OpenTK.Platform.IWindowComponent + commentId: T:OpenTK.Platform.IWindowComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IWindowComponent.html + name: IWindowComponent + nameWithType: IWindowComponent + fullName: OpenTK.Platform.IWindowComponent - uid: OpenTK.Platform.Native.X11.X11OpenGLComponent.DestroyContext* commentId: Overload:OpenTK.Platform.Native.X11.X11OpenGLComponent.DestroyContext href: OpenTK.Platform.Native.X11.X11OpenGLComponent.html#OpenTK_Platform_Native_X11_X11OpenGLComponent_DestroyContext_OpenTK_Platform_OpenGLContextHandle_ @@ -1682,6 +1847,12 @@ references: name: OpenGLContextHandle href: OpenTK.Platform.OpenGLContextHandle.html - name: ) +- uid: OpenTK.Graphics.GLLoader + commentId: T:OpenTK.Graphics.GLLoader + href: OpenTK.Graphics.GLLoader.html + name: GLLoader + nameWithType: GLLoader + fullName: OpenTK.Graphics.GLLoader - uid: OpenTK.IBindingsContext commentId: T:OpenTK.IBindingsContext parent: OpenTK @@ -1689,6 +1860,30 @@ references: name: IBindingsContext nameWithType: IBindingsContext fullName: OpenTK.IBindingsContext +- uid: OpenTK.Graphics.GLLoader.LoadBindings(OpenTK.IBindingsContext) + commentId: M:OpenTK.Graphics.GLLoader.LoadBindings(OpenTK.IBindingsContext) + href: OpenTK.Graphics.GLLoader.html#OpenTK_Graphics_GLLoader_LoadBindings_OpenTK_IBindingsContext_ + name: LoadBindings(IBindingsContext) + nameWithType: GLLoader.LoadBindings(IBindingsContext) + fullName: OpenTK.Graphics.GLLoader.LoadBindings(OpenTK.IBindingsContext) + spec.csharp: + - uid: OpenTK.Graphics.GLLoader.LoadBindings(OpenTK.IBindingsContext) + name: LoadBindings + href: OpenTK.Graphics.GLLoader.html#OpenTK_Graphics_GLLoader_LoadBindings_OpenTK_IBindingsContext_ + - name: ( + - uid: OpenTK.IBindingsContext + name: IBindingsContext + href: OpenTK.IBindingsContext.html + - name: ) + spec.vb: + - uid: OpenTK.Graphics.GLLoader.LoadBindings(OpenTK.IBindingsContext) + name: LoadBindings + href: OpenTK.Graphics.GLLoader.html#OpenTK_Graphics_GLLoader_LoadBindings_OpenTK_IBindingsContext_ + - name: ( + - uid: OpenTK.IBindingsContext + name: IBindingsContext + href: OpenTK.IBindingsContext.html + - name: ) - uid: OpenTK.Platform.Native.X11.X11OpenGLComponent.GetBindingsContext* commentId: Overload:OpenTK.Platform.Native.X11.X11OpenGLComponent.GetBindingsContext href: OpenTK.Platform.Native.X11.X11OpenGLComponent.html#OpenTK_Platform_Native_X11_X11OpenGLComponent_GetBindingsContext_OpenTK_Platform_OpenGLContextHandle_ @@ -1784,6 +1979,31 @@ references: nameWithType.vb: IntPtr fullName.vb: System.IntPtr name.vb: IntPtr +- uid: OpenTK.Platform.IOpenGLComponent.SetCurrentContext(OpenTK.Platform.OpenGLContextHandle) + commentId: M:OpenTK.Platform.IOpenGLComponent.SetCurrentContext(OpenTK.Platform.OpenGLContextHandle) + parent: OpenTK.Platform.IOpenGLComponent + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_SetCurrentContext_OpenTK_Platform_OpenGLContextHandle_ + name: SetCurrentContext(OpenGLContextHandle) + nameWithType: IOpenGLComponent.SetCurrentContext(OpenGLContextHandle) + fullName: OpenTK.Platform.IOpenGLComponent.SetCurrentContext(OpenTK.Platform.OpenGLContextHandle) + spec.csharp: + - uid: OpenTK.Platform.IOpenGLComponent.SetCurrentContext(OpenTK.Platform.OpenGLContextHandle) + name: SetCurrentContext + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_SetCurrentContext_OpenTK_Platform_OpenGLContextHandle_ + - name: ( + - uid: OpenTK.Platform.OpenGLContextHandle + name: OpenGLContextHandle + href: OpenTK.Platform.OpenGLContextHandle.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IOpenGLComponent.SetCurrentContext(OpenTK.Platform.OpenGLContextHandle) + name: SetCurrentContext + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_SetCurrentContext_OpenTK_Platform_OpenGLContextHandle_ + - name: ( + - uid: OpenTK.Platform.OpenGLContextHandle + name: OpenGLContextHandle + href: OpenTK.Platform.OpenGLContextHandle.html + - name: ) - uid: OpenTK.Platform.Native.X11.X11OpenGLComponent.GetCurrentContext* commentId: Overload:OpenTK.Platform.Native.X11.X11OpenGLComponent.GetCurrentContext href: OpenTK.Platform.Native.X11.X11OpenGLComponent.html#OpenTK_Platform_Native_X11_X11OpenGLComponent_GetCurrentContext @@ -1815,31 +2035,12 @@ references: name: SetCurrentContext nameWithType: X11OpenGLComponent.SetCurrentContext fullName: OpenTK.Platform.Native.X11.X11OpenGLComponent.SetCurrentContext -- uid: OpenTK.Platform.IOpenGLComponent.SetCurrentContext(OpenTK.Platform.OpenGLContextHandle) - commentId: M:OpenTK.Platform.IOpenGLComponent.SetCurrentContext(OpenTK.Platform.OpenGLContextHandle) - parent: OpenTK.Platform.IOpenGLComponent - href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_SetCurrentContext_OpenTK_Platform_OpenGLContextHandle_ - name: SetCurrentContext(OpenGLContextHandle) - nameWithType: IOpenGLComponent.SetCurrentContext(OpenGLContextHandle) - fullName: OpenTK.Platform.IOpenGLComponent.SetCurrentContext(OpenTK.Platform.OpenGLContextHandle) - spec.csharp: - - uid: OpenTK.Platform.IOpenGLComponent.SetCurrentContext(OpenTK.Platform.OpenGLContextHandle) - name: SetCurrentContext - href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_SetCurrentContext_OpenTK_Platform_OpenGLContextHandle_ - - name: ( - - uid: OpenTK.Platform.OpenGLContextHandle - name: OpenGLContextHandle - href: OpenTK.Platform.OpenGLContextHandle.html - - name: ) - spec.vb: - - uid: OpenTK.Platform.IOpenGLComponent.SetCurrentContext(OpenTK.Platform.OpenGLContextHandle) - name: SetCurrentContext - href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_SetCurrentContext_OpenTK_Platform_OpenGLContextHandle_ - - name: ( - - uid: OpenTK.Platform.OpenGLContextHandle - name: OpenGLContextHandle - href: OpenTK.Platform.OpenGLContextHandle.html - - name: ) +- uid: OpenTK.Platform.OpenGLGraphicsApiHints.SharedContext + commentId: P:OpenTK.Platform.OpenGLGraphicsApiHints.SharedContext + href: OpenTK.Platform.OpenGLGraphicsApiHints.html#OpenTK_Platform_OpenGLGraphicsApiHints_SharedContext + name: SharedContext + nameWithType: OpenGLGraphicsApiHints.SharedContext + fullName: OpenTK.Platform.OpenGLGraphicsApiHints.SharedContext - uid: OpenTK.Platform.Native.X11.X11OpenGLComponent.GetSharedContext* commentId: Overload:OpenTK.Platform.Native.X11.X11OpenGLComponent.GetSharedContext href: OpenTK.Platform.Native.X11.X11OpenGLComponent.html#OpenTK_Platform_Native_X11_X11OpenGLComponent_GetSharedContext_OpenTK_Platform_OpenGLContextHandle_ @@ -2001,6 +2202,12 @@ references: href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_GetSwapInterval - name: ( - name: ) +- uid: OpenTK.Platform.OpenGLGraphicsApiHints.SwapMethod + commentId: P:OpenTK.Platform.OpenGLGraphicsApiHints.SwapMethod + href: OpenTK.Platform.OpenGLGraphicsApiHints.html#OpenTK_Platform_OpenGLGraphicsApiHints_SwapMethod + name: SwapMethod + nameWithType: OpenGLGraphicsApiHints.SwapMethod + fullName: OpenTK.Platform.OpenGLGraphicsApiHints.SwapMethod - uid: OpenTK.Platform.Native.X11.X11OpenGLComponent.SwapBuffers* commentId: Overload:OpenTK.Platform.Native.X11.X11OpenGLComponent.SwapBuffers href: OpenTK.Platform.Native.X11.X11OpenGLComponent.html#OpenTK_Platform_Native_X11_X11OpenGLComponent_SwapBuffers_OpenTK_Platform_OpenGLContextHandle_ diff --git a/api/OpenTK.Platform.Native.X11.X11ShellComponent.yml b/api/OpenTK.Platform.Native.X11.X11ShellComponent.yml index dcb305c4..3b55aaab 100644 --- a/api/OpenTK.Platform.Native.X11.X11ShellComponent.yml +++ b/api/OpenTK.Platform.Native.X11.X11ShellComponent.yml @@ -5,14 +5,16 @@ items: id: X11ShellComponent parent: OpenTK.Platform.Native.X11 children: - - OpenTK.Platform.Native.X11.X11ShellComponent.AllowScreenSaver(System.Boolean) + - OpenTK.Platform.Native.X11.X11ShellComponent.AllowScreenSaver(System.Boolean,System.String) - OpenTK.Platform.Native.X11.X11ShellComponent.GetBatteryInfo(OpenTK.Platform.BatteryInfo@) - OpenTK.Platform.Native.X11.X11ShellComponent.GetPreferredTheme - OpenTK.Platform.Native.X11.X11ShellComponent.GetSystemMemoryInformation - OpenTK.Platform.Native.X11.X11ShellComponent.Initialize(OpenTK.Platform.ToolkitOptions) + - OpenTK.Platform.Native.X11.X11ShellComponent.IsScreenSaverAllowed - OpenTK.Platform.Native.X11.X11ShellComponent.Logger - OpenTK.Platform.Native.X11.X11ShellComponent.Name - OpenTK.Platform.Native.X11.X11ShellComponent.Provides + - OpenTK.Platform.Native.X11.X11ShellComponent.Uninitialize langs: - csharp - vb @@ -23,7 +25,7 @@ items: source: id: X11ShellComponent path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11ShellComponent.cs - startLine: 16 + startLine: 17 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 @@ -57,7 +59,7 @@ items: source: id: Name path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11ShellComponent.cs - startLine: 19 + startLine: 20 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 @@ -86,7 +88,7 @@ items: source: id: Provides path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11ShellComponent.cs - startLine: 22 + startLine: 23 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 @@ -115,11 +117,11 @@ items: source: id: Logger path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11ShellComponent.cs - startLine: 25 + startLine: 26 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 - summary: Provides a logger for this component. + summary: The logger that this component uses to log diagnostic messages. example: [] syntax: content: public ILogger? Logger { get; set; } @@ -128,6 +130,11 @@ items: type: OpenTK.Core.Utility.ILogger content.vb: Public Property Logger As ILogger overload: OpenTK.Platform.Native.X11.X11ShellComponent.Logger* + seealso: + - linkId: OpenTK.Core.Utility.ILogger + commentId: T:OpenTK.Core.Utility.ILogger + - linkId: OpenTK.Platform.ToolkitOptions.Logger + commentId: P:OpenTK.Platform.ToolkitOptions.Logger implements: - OpenTK.Platform.IPalComponent.Logger - uid: OpenTK.Platform.Native.X11.X11ShellComponent.Initialize(OpenTK.Platform.ToolkitOptions) @@ -144,7 +151,7 @@ items: source: id: Initialize path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11ShellComponent.cs - startLine: 55 + startLine: 58 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 @@ -158,48 +165,129 @@ items: description: The options to initialize the component with. content.vb: Public Sub Initialize(options As ToolkitOptions) overload: OpenTK.Platform.Native.X11.X11ShellComponent.Initialize* + seealso: + - linkId: OpenTK.Platform.ToolkitOptions + commentId: T:OpenTK.Platform.ToolkitOptions + - linkId: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) implements: - OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) -- uid: OpenTK.Platform.Native.X11.X11ShellComponent.AllowScreenSaver(System.Boolean) - commentId: M:OpenTK.Platform.Native.X11.X11ShellComponent.AllowScreenSaver(System.Boolean) - id: AllowScreenSaver(System.Boolean) +- uid: OpenTK.Platform.Native.X11.X11ShellComponent.Uninitialize + commentId: M:OpenTK.Platform.Native.X11.X11ShellComponent.Uninitialize + id: Uninitialize parent: OpenTK.Platform.Native.X11.X11ShellComponent langs: - csharp - vb - name: AllowScreenSaver(bool) - nameWithType: X11ShellComponent.AllowScreenSaver(bool) - fullName: OpenTK.Platform.Native.X11.X11ShellComponent.AllowScreenSaver(bool) + name: Uninitialize() + nameWithType: X11ShellComponent.Uninitialize() + fullName: OpenTK.Platform.Native.X11.X11ShellComponent.Uninitialize() + type: Method + source: + id: Uninitialize + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11ShellComponent.cs + startLine: 121 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform.Native.X11 + summary: Uninitialize the component. Frees any native resources used by the component. + example: [] + syntax: + content: public void Uninitialize() + content.vb: Public Sub Uninitialize() + overload: OpenTK.Platform.Native.X11.X11ShellComponent.Uninitialize* + seealso: + - linkId: OpenTK.Platform.Toolkit.Uninit + commentId: M:OpenTK.Platform.Toolkit.Uninit + implements: + - OpenTK.Platform.IPalComponent.Uninitialize +- uid: OpenTK.Platform.Native.X11.X11ShellComponent.AllowScreenSaver(System.Boolean,System.String) + commentId: M:OpenTK.Platform.Native.X11.X11ShellComponent.AllowScreenSaver(System.Boolean,System.String) + id: AllowScreenSaver(System.Boolean,System.String) + parent: OpenTK.Platform.Native.X11.X11ShellComponent + langs: + - csharp + - vb + name: AllowScreenSaver(bool, string?) + nameWithType: X11ShellComponent.AllowScreenSaver(bool, string?) + fullName: OpenTK.Platform.Native.X11.X11ShellComponent.AllowScreenSaver(bool, string?) type: Method source: id: AllowScreenSaver path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11ShellComponent.cs - startLine: 182 + startLine: 201 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: >- Sets whether or not a screensaver is allowed to draw on top of the window. - For games with long cutscenes it would be appropriate to set this to false, + For games with long cutscenes it would be appropriate to set this to false, - while tools that act like normal applications should set this to true. + while tools that act like normal applications should set this to true. By default this setting is untouched. example: [] syntax: - content: public void AllowScreenSaver(bool allow) + content: public void AllowScreenSaver(bool allow, string? disableReason) parameters: - id: allow type: System.Boolean description: Whether to allow screensavers to appear while the application is running. - content.vb: Public Sub AllowScreenSaver(allow As Boolean) + - id: disableReason + type: System.String + description: >- + A reason for why the screen saver is disabled. + + This string should both contain the reason why the screen saver is disabed as well as the name of the + + application so the user knows which application is preventing the screen saver from running. + + If null is sent the following default message will be sent: + +
$"{ApplicationName} is is preventing screen saver."
+ content.vb: Public Sub AllowScreenSaver(allow As Boolean, disableReason As String) overload: OpenTK.Platform.Native.X11.X11ShellComponent.AllowScreenSaver* + seealso: + - linkId: OpenTK.Platform.IShellComponent.IsScreenSaverAllowed + commentId: M:OpenTK.Platform.IShellComponent.IsScreenSaverAllowed implements: - - OpenTK.Platform.IShellComponent.AllowScreenSaver(System.Boolean) - nameWithType.vb: X11ShellComponent.AllowScreenSaver(Boolean) - fullName.vb: OpenTK.Platform.Native.X11.X11ShellComponent.AllowScreenSaver(Boolean) - name.vb: AllowScreenSaver(Boolean) + - OpenTK.Platform.IShellComponent.AllowScreenSaver(System.Boolean,System.String) + nameWithType.vb: X11ShellComponent.AllowScreenSaver(Boolean, String) + fullName.vb: OpenTK.Platform.Native.X11.X11ShellComponent.AllowScreenSaver(Boolean, String) + name.vb: AllowScreenSaver(Boolean, String) +- uid: OpenTK.Platform.Native.X11.X11ShellComponent.IsScreenSaverAllowed + commentId: M:OpenTK.Platform.Native.X11.X11ShellComponent.IsScreenSaverAllowed + id: IsScreenSaverAllowed + parent: OpenTK.Platform.Native.X11.X11ShellComponent + langs: + - csharp + - vb + name: IsScreenSaverAllowed() + nameWithType: X11ShellComponent.IsScreenSaverAllowed() + fullName: OpenTK.Platform.Native.X11.X11ShellComponent.IsScreenSaverAllowed() + type: Method + source: + id: IsScreenSaverAllowed + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11ShellComponent.cs + startLine: 233 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform.Native.X11 + summary: Gets if the screen saver is allowed to run or not. + example: [] + syntax: + content: public bool IsScreenSaverAllowed() + return: + type: System.Boolean + description: If the screen saver is allowed to run. + content.vb: Public Function IsScreenSaverAllowed() As Boolean + overload: OpenTK.Platform.Native.X11.X11ShellComponent.IsScreenSaverAllowed* + seealso: + - linkId: OpenTK.Platform.IShellComponent.AllowScreenSaver(System.Boolean,System.String) + commentId: M:OpenTK.Platform.IShellComponent.AllowScreenSaver(System.Boolean,System.String) + implements: + - OpenTK.Platform.IShellComponent.IsScreenSaverAllowed - uid: OpenTK.Platform.Native.X11.X11ShellComponent.GetBatteryInfo(OpenTK.Platform.BatteryInfo@) commentId: M:OpenTK.Platform.Native.X11.X11ShellComponent.GetBatteryInfo(OpenTK.Platform.BatteryInfo@) id: GetBatteryInfo(OpenTK.Platform.BatteryInfo@) @@ -214,7 +302,7 @@ items: source: id: GetBatteryInfo path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11ShellComponent.cs - startLine: 214 + startLine: 245 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 @@ -252,7 +340,7 @@ items: source: id: GetPreferredTheme path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11ShellComponent.cs - startLine: 439 + startLine: 470 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 @@ -265,6 +353,9 @@ items: description: The user set preferred theme. content.vb: Public Function GetPreferredTheme() As ThemeInfo overload: OpenTK.Platform.Native.X11.X11ShellComponent.GetPreferredTheme* + seealso: + - linkId: OpenTK.Platform.ThemeChangeEventArgs + commentId: T:OpenTK.Platform.ThemeChangeEventArgs implements: - OpenTK.Platform.IShellComponent.GetPreferredTheme - uid: OpenTK.Platform.Native.X11.X11ShellComponent.GetSystemMemoryInformation @@ -281,7 +372,7 @@ items: source: id: GetSystemMemoryInformation path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11ShellComponent.cs - startLine: 448 + startLine: 479 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 @@ -652,6 +743,19 @@ references: name: PalComponents nameWithType: PalComponents fullName: OpenTK.Platform.PalComponents +- uid: OpenTK.Core.Utility.ILogger + commentId: T:OpenTK.Core.Utility.ILogger + parent: OpenTK.Core.Utility + href: OpenTK.Core.Utility.ILogger.html + name: ILogger + nameWithType: ILogger + fullName: OpenTK.Core.Utility.ILogger +- uid: OpenTK.Platform.ToolkitOptions.Logger + commentId: P:OpenTK.Platform.ToolkitOptions.Logger + href: OpenTK.Platform.ToolkitOptions.html#OpenTK_Platform_ToolkitOptions_Logger + name: Logger + nameWithType: ToolkitOptions.Logger + fullName: OpenTK.Platform.ToolkitOptions.Logger - uid: OpenTK.Platform.Native.X11.X11ShellComponent.Logger* commentId: Overload:OpenTK.Platform.Native.X11.X11ShellComponent.Logger href: OpenTK.Platform.Native.X11.X11ShellComponent.html#OpenTK_Platform_Native_X11_X11ShellComponent_Logger @@ -665,13 +769,6 @@ references: name: Logger nameWithType: IPalComponent.Logger fullName: OpenTK.Platform.IPalComponent.Logger -- uid: OpenTK.Core.Utility.ILogger - commentId: T:OpenTK.Core.Utility.ILogger - parent: OpenTK.Core.Utility - href: OpenTK.Core.Utility.ILogger.html - name: ILogger - nameWithType: ILogger - fullName: OpenTK.Core.Utility.ILogger - uid: OpenTK.Core.Utility commentId: N:OpenTK.Core.Utility href: OpenTK.html @@ -702,6 +799,37 @@ references: - uid: OpenTK.Core.Utility name: Utility href: OpenTK.Core.Utility.html +- uid: OpenTK.Platform.ToolkitOptions + commentId: T:OpenTK.Platform.ToolkitOptions + parent: OpenTK.Platform + href: OpenTK.Platform.ToolkitOptions.html + name: ToolkitOptions + nameWithType: ToolkitOptions + fullName: OpenTK.Platform.ToolkitOptions +- uid: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Init_OpenTK_Platform_ToolkitOptions_ + name: Init(ToolkitOptions) + nameWithType: Toolkit.Init(ToolkitOptions) + fullName: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + spec.csharp: + - uid: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + name: Init + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Init_OpenTK_Platform_ToolkitOptions_ + - name: ( + - uid: OpenTK.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Platform.ToolkitOptions.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + name: Init + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Init_OpenTK_Platform_ToolkitOptions_ + - name: ( + - uid: OpenTK.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Platform.ToolkitOptions.html + - name: ) - uid: OpenTK.Platform.Native.X11.X11ShellComponent.Initialize* commentId: Overload:OpenTK.Platform.Native.X11.X11ShellComponent.Initialize href: OpenTK.Platform.Native.X11.X11ShellComponent.html#OpenTK_Platform_Native_X11_X11ShellComponent_Initialize_OpenTK_Platform_ToolkitOptions_ @@ -733,49 +861,116 @@ references: name: ToolkitOptions href: OpenTK.Platform.ToolkitOptions.html - name: ) -- uid: OpenTK.Platform.ToolkitOptions - commentId: T:OpenTK.Platform.ToolkitOptions - parent: OpenTK.Platform - href: OpenTK.Platform.ToolkitOptions.html - name: ToolkitOptions - nameWithType: ToolkitOptions - fullName: OpenTK.Platform.ToolkitOptions +- uid: OpenTK.Platform.Toolkit.Uninit + commentId: M:OpenTK.Platform.Toolkit.Uninit + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Uninit + name: Uninit() + nameWithType: Toolkit.Uninit() + fullName: OpenTK.Platform.Toolkit.Uninit() + spec.csharp: + - uid: OpenTK.Platform.Toolkit.Uninit + name: Uninit + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Uninit + - name: ( + - name: ) + spec.vb: + - uid: OpenTK.Platform.Toolkit.Uninit + name: Uninit + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Uninit + - name: ( + - name: ) +- uid: OpenTK.Platform.Native.X11.X11ShellComponent.Uninitialize* + commentId: Overload:OpenTK.Platform.Native.X11.X11ShellComponent.Uninitialize + href: OpenTK.Platform.Native.X11.X11ShellComponent.html#OpenTK_Platform_Native_X11_X11ShellComponent_Uninitialize + name: Uninitialize + nameWithType: X11ShellComponent.Uninitialize + fullName: OpenTK.Platform.Native.X11.X11ShellComponent.Uninitialize +- uid: OpenTK.Platform.IPalComponent.Uninitialize + commentId: M:OpenTK.Platform.IPalComponent.Uninitialize + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + name: Uninitialize() + nameWithType: IPalComponent.Uninitialize() + fullName: OpenTK.Platform.IPalComponent.Uninitialize() + spec.csharp: + - uid: OpenTK.Platform.IPalComponent.Uninitialize + name: Uninitialize + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + - name: ( + - name: ) + spec.vb: + - uid: OpenTK.Platform.IPalComponent.Uninitialize + name: Uninitialize + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + - name: ( + - name: ) +- uid: OpenTK.Platform.IShellComponent.IsScreenSaverAllowed + commentId: M:OpenTK.Platform.IShellComponent.IsScreenSaverAllowed + parent: OpenTK.Platform.IShellComponent + href: OpenTK.Platform.IShellComponent.html#OpenTK_Platform_IShellComponent_IsScreenSaverAllowed + name: IsScreenSaverAllowed() + nameWithType: IShellComponent.IsScreenSaverAllowed() + fullName: OpenTK.Platform.IShellComponent.IsScreenSaverAllowed() + spec.csharp: + - uid: OpenTK.Platform.IShellComponent.IsScreenSaverAllowed + name: IsScreenSaverAllowed + href: OpenTK.Platform.IShellComponent.html#OpenTK_Platform_IShellComponent_IsScreenSaverAllowed + - name: ( + - name: ) + spec.vb: + - uid: OpenTK.Platform.IShellComponent.IsScreenSaverAllowed + name: IsScreenSaverAllowed + href: OpenTK.Platform.IShellComponent.html#OpenTK_Platform_IShellComponent_IsScreenSaverAllowed + - name: ( + - name: ) - uid: OpenTK.Platform.Native.X11.X11ShellComponent.AllowScreenSaver* commentId: Overload:OpenTK.Platform.Native.X11.X11ShellComponent.AllowScreenSaver - href: OpenTK.Platform.Native.X11.X11ShellComponent.html#OpenTK_Platform_Native_X11_X11ShellComponent_AllowScreenSaver_System_Boolean_ + href: OpenTK.Platform.Native.X11.X11ShellComponent.html#OpenTK_Platform_Native_X11_X11ShellComponent_AllowScreenSaver_System_Boolean_System_String_ name: AllowScreenSaver nameWithType: X11ShellComponent.AllowScreenSaver fullName: OpenTK.Platform.Native.X11.X11ShellComponent.AllowScreenSaver -- uid: OpenTK.Platform.IShellComponent.AllowScreenSaver(System.Boolean) - commentId: M:OpenTK.Platform.IShellComponent.AllowScreenSaver(System.Boolean) +- uid: OpenTK.Platform.IShellComponent.AllowScreenSaver(System.Boolean,System.String) + commentId: M:OpenTK.Platform.IShellComponent.AllowScreenSaver(System.Boolean,System.String) parent: OpenTK.Platform.IShellComponent isExternal: true - href: OpenTK.Platform.IShellComponent.html#OpenTK_Platform_IShellComponent_AllowScreenSaver_System_Boolean_ - name: AllowScreenSaver(bool) - nameWithType: IShellComponent.AllowScreenSaver(bool) - fullName: OpenTK.Platform.IShellComponent.AllowScreenSaver(bool) - nameWithType.vb: IShellComponent.AllowScreenSaver(Boolean) - fullName.vb: OpenTK.Platform.IShellComponent.AllowScreenSaver(Boolean) - name.vb: AllowScreenSaver(Boolean) + href: OpenTK.Platform.IShellComponent.html#OpenTK_Platform_IShellComponent_AllowScreenSaver_System_Boolean_System_String_ + name: AllowScreenSaver(bool, string) + nameWithType: IShellComponent.AllowScreenSaver(bool, string) + fullName: OpenTK.Platform.IShellComponent.AllowScreenSaver(bool, string) + nameWithType.vb: IShellComponent.AllowScreenSaver(Boolean, String) + fullName.vb: OpenTK.Platform.IShellComponent.AllowScreenSaver(Boolean, String) + name.vb: AllowScreenSaver(Boolean, String) spec.csharp: - - uid: OpenTK.Platform.IShellComponent.AllowScreenSaver(System.Boolean) + - uid: OpenTK.Platform.IShellComponent.AllowScreenSaver(System.Boolean,System.String) name: AllowScreenSaver - href: OpenTK.Platform.IShellComponent.html#OpenTK_Platform_IShellComponent_AllowScreenSaver_System_Boolean_ + href: OpenTK.Platform.IShellComponent.html#OpenTK_Platform_IShellComponent_AllowScreenSaver_System_Boolean_System_String_ - name: ( - uid: System.Boolean name: bool isExternal: true href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: ',' + - name: " " + - uid: System.String + name: string + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string - name: ) spec.vb: - - uid: OpenTK.Platform.IShellComponent.AllowScreenSaver(System.Boolean) + - uid: OpenTK.Platform.IShellComponent.AllowScreenSaver(System.Boolean,System.String) name: AllowScreenSaver - href: OpenTK.Platform.IShellComponent.html#OpenTK_Platform_IShellComponent_AllowScreenSaver_System_Boolean_ + href: OpenTK.Platform.IShellComponent.html#OpenTK_Platform_IShellComponent_AllowScreenSaver_System_Boolean_System_String_ - name: ( - uid: System.Boolean name: Boolean isExternal: true href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: ',' + - name: " " + - uid: System.String + name: String + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string - name: ) - uid: System.Boolean commentId: T:System.Boolean @@ -788,6 +983,12 @@ references: nameWithType.vb: Boolean fullName.vb: Boolean name.vb: Boolean +- uid: OpenTK.Platform.Native.X11.X11ShellComponent.IsScreenSaverAllowed* + commentId: Overload:OpenTK.Platform.Native.X11.X11ShellComponent.IsScreenSaverAllowed + href: OpenTK.Platform.Native.X11.X11ShellComponent.html#OpenTK_Platform_Native_X11_X11ShellComponent_IsScreenSaverAllowed + name: IsScreenSaverAllowed + nameWithType: X11ShellComponent.IsScreenSaverAllowed + fullName: OpenTK.Platform.Native.X11.X11ShellComponent.IsScreenSaverAllowed - uid: OpenTK.Platform.BatteryStatus.HasSystemBattery commentId: F:OpenTK.Platform.BatteryStatus.HasSystemBattery href: OpenTK.Platform.BatteryStatus.html#OpenTK_Platform_BatteryStatus_HasSystemBattery @@ -844,6 +1045,12 @@ references: name: BatteryStatus nameWithType: BatteryStatus fullName: OpenTK.Platform.BatteryStatus +- uid: OpenTK.Platform.ThemeChangeEventArgs + commentId: T:OpenTK.Platform.ThemeChangeEventArgs + href: OpenTK.Platform.ThemeChangeEventArgs.html + name: ThemeChangeEventArgs + nameWithType: ThemeChangeEventArgs + fullName: OpenTK.Platform.ThemeChangeEventArgs - uid: OpenTK.Platform.Native.X11.X11ShellComponent.GetPreferredTheme* commentId: Overload:OpenTK.Platform.Native.X11.X11ShellComponent.GetPreferredTheme href: OpenTK.Platform.Native.X11.X11ShellComponent.html#OpenTK_Platform_Native_X11_X11ShellComponent_GetPreferredTheme diff --git a/api/OpenTK.Platform.Native.X11.X11VulkanComponent.yml b/api/OpenTK.Platform.Native.X11.X11VulkanComponent.yml new file mode 100644 index 00000000..93c95923 --- /dev/null +++ b/api/OpenTK.Platform.Native.X11.X11VulkanComponent.yml @@ -0,0 +1,1168 @@ +### YamlMime:ManagedReference +items: +- uid: OpenTK.Platform.Native.X11.X11VulkanComponent + commentId: T:OpenTK.Platform.Native.X11.X11VulkanComponent + id: X11VulkanComponent + parent: OpenTK.Platform.Native.X11 + children: + - OpenTK.Platform.Native.X11.X11VulkanComponent.CreateWindowSurface(OpenTK.Graphics.Vulkan.VkInstance,OpenTK.Platform.WindowHandle,OpenTK.Graphics.Vulkan.VkAllocationCallbacks*,OpenTK.Graphics.Vulkan.VkSurfaceKHR@) + - OpenTK.Platform.Native.X11.X11VulkanComponent.GetPhysicalDevicePresentationSupport(OpenTK.Graphics.Vulkan.VkInstance,OpenTK.Graphics.Vulkan.VkPhysicalDevice,System.UInt32) + - OpenTK.Platform.Native.X11.X11VulkanComponent.GetRequiredInstanceExtensions + - OpenTK.Platform.Native.X11.X11VulkanComponent.Initialize(OpenTK.Platform.ToolkitOptions) + - OpenTK.Platform.Native.X11.X11VulkanComponent.Logger + - OpenTK.Platform.Native.X11.X11VulkanComponent.Name + - OpenTK.Platform.Native.X11.X11VulkanComponent.Provides + - OpenTK.Platform.Native.X11.X11VulkanComponent.Uninitialize + langs: + - csharp + - vb + name: X11VulkanComponent + nameWithType: X11VulkanComponent + fullName: OpenTK.Platform.Native.X11.X11VulkanComponent + type: Class + source: + id: X11VulkanComponent + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11VulkanComponent.cs + startLine: 10 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform.Native.X11 + syntax: + content: 'public class X11VulkanComponent : IVulkanComponent, IPalComponent' + content.vb: Public Class X11VulkanComponent Implements IVulkanComponent, IPalComponent + inheritance: + - System.Object + implements: + - OpenTK.Platform.IVulkanComponent + - OpenTK.Platform.IPalComponent + inheritedMembers: + - System.Object.Equals(System.Object) + - System.Object.Equals(System.Object,System.Object) + - System.Object.GetHashCode + - System.Object.GetType + - System.Object.MemberwiseClone + - System.Object.ReferenceEquals(System.Object,System.Object) + - System.Object.ToString +- uid: OpenTK.Platform.Native.X11.X11VulkanComponent.Name + commentId: P:OpenTK.Platform.Native.X11.X11VulkanComponent.Name + id: Name + parent: OpenTK.Platform.Native.X11.X11VulkanComponent + langs: + - csharp + - vb + name: Name + nameWithType: X11VulkanComponent.Name + fullName: OpenTK.Platform.Native.X11.X11VulkanComponent.Name + type: Property + source: + id: Name + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11VulkanComponent.cs + startLine: 13 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform.Native.X11 + summary: Name of the abstraction layer component. + example: [] + syntax: + content: public string Name { get; } + parameters: [] + return: + type: System.String + content.vb: Public ReadOnly Property Name As String + overload: OpenTK.Platform.Native.X11.X11VulkanComponent.Name* + implements: + - OpenTK.Platform.IPalComponent.Name +- uid: OpenTK.Platform.Native.X11.X11VulkanComponent.Provides + commentId: P:OpenTK.Platform.Native.X11.X11VulkanComponent.Provides + id: Provides + parent: OpenTK.Platform.Native.X11.X11VulkanComponent + langs: + - csharp + - vb + name: Provides + nameWithType: X11VulkanComponent.Provides + fullName: OpenTK.Platform.Native.X11.X11VulkanComponent.Provides + type: Property + source: + id: Provides + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11VulkanComponent.cs + startLine: 16 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform.Native.X11 + summary: Specifies which PAL components this object provides. + example: [] + syntax: + content: public PalComponents Provides { get; } + parameters: [] + return: + type: OpenTK.Platform.PalComponents + content.vb: Public ReadOnly Property Provides As PalComponents + overload: OpenTK.Platform.Native.X11.X11VulkanComponent.Provides* + implements: + - OpenTK.Platform.IPalComponent.Provides +- uid: OpenTK.Platform.Native.X11.X11VulkanComponent.Logger + commentId: P:OpenTK.Platform.Native.X11.X11VulkanComponent.Logger + id: Logger + parent: OpenTK.Platform.Native.X11.X11VulkanComponent + langs: + - csharp + - vb + name: Logger + nameWithType: X11VulkanComponent.Logger + fullName: OpenTK.Platform.Native.X11.X11VulkanComponent.Logger + type: Property + source: + id: Logger + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11VulkanComponent.cs + startLine: 19 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform.Native.X11 + summary: The logger that this component uses to log diagnostic messages. + example: [] + syntax: + content: public ILogger? Logger { get; set; } + parameters: [] + return: + type: OpenTK.Core.Utility.ILogger + content.vb: Public Property Logger As ILogger + overload: OpenTK.Platform.Native.X11.X11VulkanComponent.Logger* + seealso: + - linkId: OpenTK.Core.Utility.ILogger + commentId: T:OpenTK.Core.Utility.ILogger + - linkId: OpenTK.Platform.ToolkitOptions.Logger + commentId: P:OpenTK.Platform.ToolkitOptions.Logger + implements: + - OpenTK.Platform.IPalComponent.Logger +- uid: OpenTK.Platform.Native.X11.X11VulkanComponent.Initialize(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Native.X11.X11VulkanComponent.Initialize(OpenTK.Platform.ToolkitOptions) + id: Initialize(OpenTK.Platform.ToolkitOptions) + parent: OpenTK.Platform.Native.X11.X11VulkanComponent + langs: + - csharp + - vb + name: Initialize(ToolkitOptions) + nameWithType: X11VulkanComponent.Initialize(ToolkitOptions) + fullName: OpenTK.Platform.Native.X11.X11VulkanComponent.Initialize(OpenTK.Platform.ToolkitOptions) + type: Method + source: + id: Initialize + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11VulkanComponent.cs + startLine: 22 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform.Native.X11 + summary: Initialize the component. + example: [] + syntax: + content: public void Initialize(ToolkitOptions options) + parameters: + - id: options + type: OpenTK.Platform.ToolkitOptions + description: The options to initialize the component with. + content.vb: Public Sub Initialize(options As ToolkitOptions) + overload: OpenTK.Platform.Native.X11.X11VulkanComponent.Initialize* + seealso: + - linkId: OpenTK.Platform.ToolkitOptions + commentId: T:OpenTK.Platform.ToolkitOptions + - linkId: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + implements: + - OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) +- uid: OpenTK.Platform.Native.X11.X11VulkanComponent.Uninitialize + commentId: M:OpenTK.Platform.Native.X11.X11VulkanComponent.Uninitialize + id: Uninitialize + parent: OpenTK.Platform.Native.X11.X11VulkanComponent + langs: + - csharp + - vb + name: Uninitialize() + nameWithType: X11VulkanComponent.Uninitialize() + fullName: OpenTK.Platform.Native.X11.X11VulkanComponent.Uninitialize() + type: Method + source: + id: Uninitialize + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11VulkanComponent.cs + startLine: 70 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform.Native.X11 + summary: Uninitialize the component. Frees any native resources used by the component. + example: [] + syntax: + content: public void Uninitialize() + content.vb: Public Sub Uninitialize() + overload: OpenTK.Platform.Native.X11.X11VulkanComponent.Uninitialize* + seealso: + - linkId: OpenTK.Platform.Toolkit.Uninit + commentId: M:OpenTK.Platform.Toolkit.Uninit + implements: + - OpenTK.Platform.IPalComponent.Uninitialize +- uid: OpenTK.Platform.Native.X11.X11VulkanComponent.GetRequiredInstanceExtensions + commentId: M:OpenTK.Platform.Native.X11.X11VulkanComponent.GetRequiredInstanceExtensions + id: GetRequiredInstanceExtensions + parent: OpenTK.Platform.Native.X11.X11VulkanComponent + langs: + - csharp + - vb + name: GetRequiredInstanceExtensions() + nameWithType: X11VulkanComponent.GetRequiredInstanceExtensions() + fullName: OpenTK.Platform.Native.X11.X11VulkanComponent.GetRequiredInstanceExtensions() + type: Method + source: + id: GetRequiredInstanceExtensions + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11VulkanComponent.cs + startLine: 82 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform.Native.X11 + summary: >- + Returns a list of required instance extensions required for + + and + + + + to work. Include these extensions when creating . + example: [] + syntax: + content: public ReadOnlySpan GetRequiredInstanceExtensions() + return: + type: System.ReadOnlySpan{System.String} + description: A list of required extensions for functions to work. + content.vb: Public Function GetRequiredInstanceExtensions() As ReadOnlySpan(Of String) + overload: OpenTK.Platform.Native.X11.X11VulkanComponent.GetRequiredInstanceExtensions* + seealso: + - linkId: OpenTK.Platform.IVulkanComponent.GetPhysicalDevicePresentationSupport(OpenTK.Graphics.Vulkan.VkInstance,OpenTK.Graphics.Vulkan.VkPhysicalDevice,System.UInt32) + commentId: M:OpenTK.Platform.IVulkanComponent.GetPhysicalDevicePresentationSupport(OpenTK.Graphics.Vulkan.VkInstance,OpenTK.Graphics.Vulkan.VkPhysicalDevice,System.UInt32) + - linkId: OpenTK.Platform.IVulkanComponent.CreateWindowSurface(OpenTK.Graphics.Vulkan.VkInstance,OpenTK.Platform.WindowHandle,OpenTK.Graphics.Vulkan.VkAllocationCallbacks*,OpenTK.Graphics.Vulkan.VkSurfaceKHR@) + commentId: M:OpenTK.Platform.IVulkanComponent.CreateWindowSurface(OpenTK.Graphics.Vulkan.VkInstance,OpenTK.Platform.WindowHandle,OpenTK.Graphics.Vulkan.VkAllocationCallbacks*,OpenTK.Graphics.Vulkan.VkSurfaceKHR@) + implements: + - OpenTK.Platform.IVulkanComponent.GetRequiredInstanceExtensions +- uid: OpenTK.Platform.Native.X11.X11VulkanComponent.GetPhysicalDevicePresentationSupport(OpenTK.Graphics.Vulkan.VkInstance,OpenTK.Graphics.Vulkan.VkPhysicalDevice,System.UInt32) + commentId: M:OpenTK.Platform.Native.X11.X11VulkanComponent.GetPhysicalDevicePresentationSupport(OpenTK.Graphics.Vulkan.VkInstance,OpenTK.Graphics.Vulkan.VkPhysicalDevice,System.UInt32) + id: GetPhysicalDevicePresentationSupport(OpenTK.Graphics.Vulkan.VkInstance,OpenTK.Graphics.Vulkan.VkPhysicalDevice,System.UInt32) + parent: OpenTK.Platform.Native.X11.X11VulkanComponent + langs: + - csharp + - vb + name: GetPhysicalDevicePresentationSupport(VkInstance, VkPhysicalDevice, uint) + nameWithType: X11VulkanComponent.GetPhysicalDevicePresentationSupport(VkInstance, VkPhysicalDevice, uint) + fullName: OpenTK.Platform.Native.X11.X11VulkanComponent.GetPhysicalDevicePresentationSupport(OpenTK.Graphics.Vulkan.VkInstance, OpenTK.Graphics.Vulkan.VkPhysicalDevice, uint) + type: Method + source: + id: GetPhysicalDevicePresentationSupport + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11VulkanComponent.cs + startLine: 106 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform.Native.X11 + summary: Returns true if the given queue family supports presentation to a surface created with . + example: [] + syntax: + content: public bool GetPhysicalDevicePresentationSupport(VkInstance instance, VkPhysicalDevice device, uint queueFamily) + parameters: + - id: instance + type: OpenTK.Graphics.Vulkan.VkInstance + description: The to physical device belongs to. + - id: device + type: OpenTK.Graphics.Vulkan.VkPhysicalDevice + description: The that the queueFamily belongs to. + - id: queueFamily + type: System.UInt32 + description: The index of the queue family to query for presentation support. + return: + type: System.Boolean + description: If this queue family supports presentation. + content.vb: Public Function GetPhysicalDevicePresentationSupport(instance As VkInstance, device As VkPhysicalDevice, queueFamily As UInteger) As Boolean + overload: OpenTK.Platform.Native.X11.X11VulkanComponent.GetPhysicalDevicePresentationSupport* + seealso: + - linkId: OpenTK.Platform.IVulkanComponent.GetRequiredInstanceExtensions + commentId: M:OpenTK.Platform.IVulkanComponent.GetRequiredInstanceExtensions + implements: + - OpenTK.Platform.IVulkanComponent.GetPhysicalDevicePresentationSupport(OpenTK.Graphics.Vulkan.VkInstance,OpenTK.Graphics.Vulkan.VkPhysicalDevice,System.UInt32) + nameWithType.vb: X11VulkanComponent.GetPhysicalDevicePresentationSupport(VkInstance, VkPhysicalDevice, UInteger) + fullName.vb: OpenTK.Platform.Native.X11.X11VulkanComponent.GetPhysicalDevicePresentationSupport(OpenTK.Graphics.Vulkan.VkInstance, OpenTK.Graphics.Vulkan.VkPhysicalDevice, UInteger) + name.vb: GetPhysicalDevicePresentationSupport(VkInstance, VkPhysicalDevice, UInteger) +- uid: OpenTK.Platform.Native.X11.X11VulkanComponent.CreateWindowSurface(OpenTK.Graphics.Vulkan.VkInstance,OpenTK.Platform.WindowHandle,OpenTK.Graphics.Vulkan.VkAllocationCallbacks*,OpenTK.Graphics.Vulkan.VkSurfaceKHR@) + commentId: M:OpenTK.Platform.Native.X11.X11VulkanComponent.CreateWindowSurface(OpenTK.Graphics.Vulkan.VkInstance,OpenTK.Platform.WindowHandle,OpenTK.Graphics.Vulkan.VkAllocationCallbacks*,OpenTK.Graphics.Vulkan.VkSurfaceKHR@) + id: CreateWindowSurface(OpenTK.Graphics.Vulkan.VkInstance,OpenTK.Platform.WindowHandle,OpenTK.Graphics.Vulkan.VkAllocationCallbacks*,OpenTK.Graphics.Vulkan.VkSurfaceKHR@) + parent: OpenTK.Platform.Native.X11.X11VulkanComponent + langs: + - csharp + - vb + name: CreateWindowSurface(VkInstance, WindowHandle, VkAllocationCallbacks*, out VkSurfaceKHR) + nameWithType: X11VulkanComponent.CreateWindowSurface(VkInstance, WindowHandle, VkAllocationCallbacks*, out VkSurfaceKHR) + fullName: OpenTK.Platform.Native.X11.X11VulkanComponent.CreateWindowSurface(OpenTK.Graphics.Vulkan.VkInstance, OpenTK.Platform.WindowHandle, OpenTK.Graphics.Vulkan.VkAllocationCallbacks*, out OpenTK.Graphics.Vulkan.VkSurfaceKHR) + type: Method + source: + id: CreateWindowSurface + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11VulkanComponent.cs + startLine: 133 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform.Native.X11 + summary: Creates a Vulkan surface for the specified window. + example: [] + syntax: + content: public VkResult CreateWindowSurface(VkInstance instance, WindowHandle window, VkAllocationCallbacks* allocator, out VkSurfaceKHR surface) + parameters: + - id: instance + type: OpenTK.Graphics.Vulkan.VkInstance + description: The instance to create the surface with. + - id: window + type: OpenTK.Platform.WindowHandle + description: The window to create the surface in. + - id: allocator + type: OpenTK.Graphics.Vulkan.VkAllocationCallbacks* + description: The allocator to use or null to use the default allocator. + - id: surface + type: OpenTK.Graphics.Vulkan.VkSurfaceKHR + description: The created surface. + return: + type: OpenTK.Graphics.Vulkan.VkResult + description: The Vulkan result code of this operation. + content.vb: Public Function CreateWindowSurface(instance As VkInstance, window As WindowHandle, allocator As VkAllocationCallbacks*, surface As VkSurfaceKHR) As VkResult + overload: OpenTK.Platform.Native.X11.X11VulkanComponent.CreateWindowSurface* + seealso: + - linkId: OpenTK.Platform.IVulkanComponent.GetRequiredInstanceExtensions + commentId: M:OpenTK.Platform.IVulkanComponent.GetRequiredInstanceExtensions + implements: + - OpenTK.Platform.IVulkanComponent.CreateWindowSurface(OpenTK.Graphics.Vulkan.VkInstance,OpenTK.Platform.WindowHandle,OpenTK.Graphics.Vulkan.VkAllocationCallbacks*,OpenTK.Graphics.Vulkan.VkSurfaceKHR@) + nameWithType.vb: X11VulkanComponent.CreateWindowSurface(VkInstance, WindowHandle, VkAllocationCallbacks*, VkSurfaceKHR) + fullName.vb: OpenTK.Platform.Native.X11.X11VulkanComponent.CreateWindowSurface(OpenTK.Graphics.Vulkan.VkInstance, OpenTK.Platform.WindowHandle, OpenTK.Graphics.Vulkan.VkAllocationCallbacks*, OpenTK.Graphics.Vulkan.VkSurfaceKHR) + name.vb: CreateWindowSurface(VkInstance, WindowHandle, VkAllocationCallbacks*, VkSurfaceKHR) +references: +- uid: OpenTK.Platform.Native.X11 + commentId: N:OpenTK.Platform.Native.X11 + href: OpenTK.html + name: OpenTK.Platform.Native.X11 + nameWithType: OpenTK.Platform.Native.X11 + fullName: OpenTK.Platform.Native.X11 + spec.csharp: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Platform + name: Platform + href: OpenTK.Platform.html + - name: . + - uid: OpenTK.Platform.Native + name: Native + href: OpenTK.Platform.Native.html + - name: . + - uid: OpenTK.Platform.Native.X11 + name: X11 + href: OpenTK.Platform.Native.X11.html + spec.vb: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Platform + name: Platform + href: OpenTK.Platform.html + - name: . + - uid: OpenTK.Platform.Native + name: Native + href: OpenTK.Platform.Native.html + - name: . + - uid: OpenTK.Platform.Native.X11 + name: X11 + href: OpenTK.Platform.Native.X11.html +- uid: System.Object + commentId: T:System.Object + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + name: object + nameWithType: object + fullName: object + nameWithType.vb: Object + fullName.vb: Object + name.vb: Object +- uid: OpenTK.Platform.IVulkanComponent + commentId: T:OpenTK.Platform.IVulkanComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IVulkanComponent.html + name: IVulkanComponent + nameWithType: IVulkanComponent + fullName: OpenTK.Platform.IVulkanComponent +- uid: OpenTK.Platform.IPalComponent + commentId: T:OpenTK.Platform.IPalComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IPalComponent.html + name: IPalComponent + nameWithType: IPalComponent + fullName: OpenTK.Platform.IPalComponent +- uid: System.Object.Equals(System.Object) + commentId: M:System.Object.Equals(System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + name: Equals(object) + nameWithType: object.Equals(object) + fullName: object.Equals(object) + nameWithType.vb: Object.Equals(Object) + fullName.vb: Object.Equals(Object) + name.vb: Equals(Object) + spec.csharp: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.Equals(System.Object,System.Object) + commentId: M:System.Object.Equals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + name: Equals(object, object) + nameWithType: object.Equals(object, object) + fullName: object.Equals(object, object) + nameWithType.vb: Object.Equals(Object, Object) + fullName.vb: Object.Equals(Object, Object) + name.vb: Equals(Object, Object) + spec.csharp: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.GetHashCode + commentId: M:System.Object.GetHashCode + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + name: GetHashCode() + nameWithType: object.GetHashCode() + fullName: object.GetHashCode() + nameWithType.vb: Object.GetHashCode() + fullName.vb: Object.GetHashCode() + spec.csharp: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) +- uid: System.Object.GetType + commentId: M:System.Object.GetType + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + name: GetType() + nameWithType: object.GetType() + fullName: object.GetType() + nameWithType.vb: Object.GetType() + fullName.vb: Object.GetType() + spec.csharp: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) +- uid: System.Object.MemberwiseClone + commentId: M:System.Object.MemberwiseClone + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + name: MemberwiseClone() + nameWithType: object.MemberwiseClone() + fullName: object.MemberwiseClone() + nameWithType.vb: Object.MemberwiseClone() + fullName.vb: Object.MemberwiseClone() + spec.csharp: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) + spec.vb: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) +- uid: System.Object.ReferenceEquals(System.Object,System.Object) + commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + name: ReferenceEquals(object, object) + nameWithType: object.ReferenceEquals(object, object) + fullName: object.ReferenceEquals(object, object) + nameWithType.vb: Object.ReferenceEquals(Object, Object) + fullName.vb: Object.ReferenceEquals(Object, Object) + name.vb: ReferenceEquals(Object, Object) + spec.csharp: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.ToString + commentId: M:System.Object.ToString + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + name: ToString() + nameWithType: object.ToString() + fullName: object.ToString() + nameWithType.vb: Object.ToString() + fullName.vb: Object.ToString() + spec.csharp: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) + spec.vb: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) +- uid: System + commentId: N:System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System + nameWithType: System + fullName: System +- uid: OpenTK.Platform + commentId: N:OpenTK.Platform + href: OpenTK.html + name: OpenTK.Platform + nameWithType: OpenTK.Platform + fullName: OpenTK.Platform + spec.csharp: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Platform + name: Platform + href: OpenTK.Platform.html + spec.vb: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Platform + name: Platform + href: OpenTK.Platform.html +- uid: OpenTK.Platform.Native.X11.X11VulkanComponent.Name* + commentId: Overload:OpenTK.Platform.Native.X11.X11VulkanComponent.Name + href: OpenTK.Platform.Native.X11.X11VulkanComponent.html#OpenTK_Platform_Native_X11_X11VulkanComponent_Name + name: Name + nameWithType: X11VulkanComponent.Name + fullName: OpenTK.Platform.Native.X11.X11VulkanComponent.Name +- uid: OpenTK.Platform.IPalComponent.Name + commentId: P:OpenTK.Platform.IPalComponent.Name + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Name + name: Name + nameWithType: IPalComponent.Name + fullName: OpenTK.Platform.IPalComponent.Name +- uid: System.String + commentId: T:System.String + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + name: string + nameWithType: string + fullName: string + nameWithType.vb: String + fullName.vb: String + name.vb: String +- uid: OpenTK.Platform.Native.X11.X11VulkanComponent.Provides* + commentId: Overload:OpenTK.Platform.Native.X11.X11VulkanComponent.Provides + href: OpenTK.Platform.Native.X11.X11VulkanComponent.html#OpenTK_Platform_Native_X11_X11VulkanComponent_Provides + name: Provides + nameWithType: X11VulkanComponent.Provides + fullName: OpenTK.Platform.Native.X11.X11VulkanComponent.Provides +- uid: OpenTK.Platform.IPalComponent.Provides + commentId: P:OpenTK.Platform.IPalComponent.Provides + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Provides + name: Provides + nameWithType: IPalComponent.Provides + fullName: OpenTK.Platform.IPalComponent.Provides +- uid: OpenTK.Platform.PalComponents + commentId: T:OpenTK.Platform.PalComponents + parent: OpenTK.Platform + href: OpenTK.Platform.PalComponents.html + name: PalComponents + nameWithType: PalComponents + fullName: OpenTK.Platform.PalComponents +- uid: OpenTK.Core.Utility.ILogger + commentId: T:OpenTK.Core.Utility.ILogger + parent: OpenTK.Core.Utility + href: OpenTK.Core.Utility.ILogger.html + name: ILogger + nameWithType: ILogger + fullName: OpenTK.Core.Utility.ILogger +- uid: OpenTK.Platform.ToolkitOptions.Logger + commentId: P:OpenTK.Platform.ToolkitOptions.Logger + href: OpenTK.Platform.ToolkitOptions.html#OpenTK_Platform_ToolkitOptions_Logger + name: Logger + nameWithType: ToolkitOptions.Logger + fullName: OpenTK.Platform.ToolkitOptions.Logger +- uid: OpenTK.Platform.Native.X11.X11VulkanComponent.Logger* + commentId: Overload:OpenTK.Platform.Native.X11.X11VulkanComponent.Logger + href: OpenTK.Platform.Native.X11.X11VulkanComponent.html#OpenTK_Platform_Native_X11_X11VulkanComponent_Logger + name: Logger + nameWithType: X11VulkanComponent.Logger + fullName: OpenTK.Platform.Native.X11.X11VulkanComponent.Logger +- uid: OpenTK.Platform.IPalComponent.Logger + commentId: P:OpenTK.Platform.IPalComponent.Logger + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Logger + name: Logger + nameWithType: IPalComponent.Logger + fullName: OpenTK.Platform.IPalComponent.Logger +- uid: OpenTK.Core.Utility + commentId: N:OpenTK.Core.Utility + href: OpenTK.html + name: OpenTK.Core.Utility + nameWithType: OpenTK.Core.Utility + fullName: OpenTK.Core.Utility + spec.csharp: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Core + name: Core + href: OpenTK.Core.html + - name: . + - uid: OpenTK.Core.Utility + name: Utility + href: OpenTK.Core.Utility.html + spec.vb: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Core + name: Core + href: OpenTK.Core.html + - name: . + - uid: OpenTK.Core.Utility + name: Utility + href: OpenTK.Core.Utility.html +- uid: OpenTK.Platform.ToolkitOptions + commentId: T:OpenTK.Platform.ToolkitOptions + parent: OpenTK.Platform + href: OpenTK.Platform.ToolkitOptions.html + name: ToolkitOptions + nameWithType: ToolkitOptions + fullName: OpenTK.Platform.ToolkitOptions +- uid: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Init_OpenTK_Platform_ToolkitOptions_ + name: Init(ToolkitOptions) + nameWithType: Toolkit.Init(ToolkitOptions) + fullName: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + spec.csharp: + - uid: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + name: Init + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Init_OpenTK_Platform_ToolkitOptions_ + - name: ( + - uid: OpenTK.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Platform.ToolkitOptions.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + name: Init + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Init_OpenTK_Platform_ToolkitOptions_ + - name: ( + - uid: OpenTK.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Platform.ToolkitOptions.html + - name: ) +- uid: OpenTK.Platform.Native.X11.X11VulkanComponent.Initialize* + commentId: Overload:OpenTK.Platform.Native.X11.X11VulkanComponent.Initialize + href: OpenTK.Platform.Native.X11.X11VulkanComponent.html#OpenTK_Platform_Native_X11_X11VulkanComponent_Initialize_OpenTK_Platform_ToolkitOptions_ + name: Initialize + nameWithType: X11VulkanComponent.Initialize + fullName: OpenTK.Platform.Native.X11.X11VulkanComponent.Initialize +- uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ + name: Initialize(ToolkitOptions) + nameWithType: IPalComponent.Initialize(ToolkitOptions) + fullName: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + spec.csharp: + - uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + name: Initialize + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ + - name: ( + - uid: OpenTK.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Platform.ToolkitOptions.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + name: Initialize + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ + - name: ( + - uid: OpenTK.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Platform.ToolkitOptions.html + - name: ) +- uid: OpenTK.Platform.Toolkit.Uninit + commentId: M:OpenTK.Platform.Toolkit.Uninit + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Uninit + name: Uninit() + nameWithType: Toolkit.Uninit() + fullName: OpenTK.Platform.Toolkit.Uninit() + spec.csharp: + - uid: OpenTK.Platform.Toolkit.Uninit + name: Uninit + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Uninit + - name: ( + - name: ) + spec.vb: + - uid: OpenTK.Platform.Toolkit.Uninit + name: Uninit + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Uninit + - name: ( + - name: ) +- uid: OpenTK.Platform.Native.X11.X11VulkanComponent.Uninitialize* + commentId: Overload:OpenTK.Platform.Native.X11.X11VulkanComponent.Uninitialize + href: OpenTK.Platform.Native.X11.X11VulkanComponent.html#OpenTK_Platform_Native_X11_X11VulkanComponent_Uninitialize + name: Uninitialize + nameWithType: X11VulkanComponent.Uninitialize + fullName: OpenTK.Platform.Native.X11.X11VulkanComponent.Uninitialize +- uid: OpenTK.Platform.IPalComponent.Uninitialize + commentId: M:OpenTK.Platform.IPalComponent.Uninitialize + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + name: Uninitialize() + nameWithType: IPalComponent.Uninitialize() + fullName: OpenTK.Platform.IPalComponent.Uninitialize() + spec.csharp: + - uid: OpenTK.Platform.IPalComponent.Uninitialize + name: Uninitialize + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + - name: ( + - name: ) + spec.vb: + - uid: OpenTK.Platform.IPalComponent.Uninitialize + name: Uninitialize + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + - name: ( + - name: ) +- uid: OpenTK.Platform.IVulkanComponent.GetPhysicalDevicePresentationSupport(OpenTK.Graphics.Vulkan.VkInstance,OpenTK.Graphics.Vulkan.VkPhysicalDevice,System.UInt32) + commentId: M:OpenTK.Platform.IVulkanComponent.GetPhysicalDevicePresentationSupport(OpenTK.Graphics.Vulkan.VkInstance,OpenTK.Graphics.Vulkan.VkPhysicalDevice,System.UInt32) + parent: OpenTK.Platform.IVulkanComponent + isExternal: true + href: OpenTK.Platform.IVulkanComponent.html#OpenTK_Platform_IVulkanComponent_GetPhysicalDevicePresentationSupport_OpenTK_Graphics_Vulkan_VkInstance_OpenTK_Graphics_Vulkan_VkPhysicalDevice_System_UInt32_ + name: GetPhysicalDevicePresentationSupport(VkInstance, VkPhysicalDevice, uint) + nameWithType: IVulkanComponent.GetPhysicalDevicePresentationSupport(VkInstance, VkPhysicalDevice, uint) + fullName: OpenTK.Platform.IVulkanComponent.GetPhysicalDevicePresentationSupport(OpenTK.Graphics.Vulkan.VkInstance, OpenTK.Graphics.Vulkan.VkPhysicalDevice, uint) + nameWithType.vb: IVulkanComponent.GetPhysicalDevicePresentationSupport(VkInstance, VkPhysicalDevice, UInteger) + fullName.vb: OpenTK.Platform.IVulkanComponent.GetPhysicalDevicePresentationSupport(OpenTK.Graphics.Vulkan.VkInstance, OpenTK.Graphics.Vulkan.VkPhysicalDevice, UInteger) + name.vb: GetPhysicalDevicePresentationSupport(VkInstance, VkPhysicalDevice, UInteger) + spec.csharp: + - uid: OpenTK.Platform.IVulkanComponent.GetPhysicalDevicePresentationSupport(OpenTK.Graphics.Vulkan.VkInstance,OpenTK.Graphics.Vulkan.VkPhysicalDevice,System.UInt32) + name: GetPhysicalDevicePresentationSupport + href: OpenTK.Platform.IVulkanComponent.html#OpenTK_Platform_IVulkanComponent_GetPhysicalDevicePresentationSupport_OpenTK_Graphics_Vulkan_VkInstance_OpenTK_Graphics_Vulkan_VkPhysicalDevice_System_UInt32_ + - name: ( + - uid: OpenTK.Graphics.Vulkan.VkInstance + name: VkInstance + href: OpenTK.Graphics.Vulkan.VkInstance.html + - name: ',' + - name: " " + - uid: OpenTK.Graphics.Vulkan.VkPhysicalDevice + name: VkPhysicalDevice + href: OpenTK.Graphics.Vulkan.VkPhysicalDevice.html + - name: ',' + - name: " " + - uid: System.UInt32 + name: uint + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.uint32 + - name: ) + spec.vb: + - uid: OpenTK.Platform.IVulkanComponent.GetPhysicalDevicePresentationSupport(OpenTK.Graphics.Vulkan.VkInstance,OpenTK.Graphics.Vulkan.VkPhysicalDevice,System.UInt32) + name: GetPhysicalDevicePresentationSupport + href: OpenTK.Platform.IVulkanComponent.html#OpenTK_Platform_IVulkanComponent_GetPhysicalDevicePresentationSupport_OpenTK_Graphics_Vulkan_VkInstance_OpenTK_Graphics_Vulkan_VkPhysicalDevice_System_UInt32_ + - name: ( + - uid: OpenTK.Graphics.Vulkan.VkInstance + name: VkInstance + href: OpenTK.Graphics.Vulkan.VkInstance.html + - name: ',' + - name: " " + - uid: OpenTK.Graphics.Vulkan.VkPhysicalDevice + name: VkPhysicalDevice + href: OpenTK.Graphics.Vulkan.VkPhysicalDevice.html + - name: ',' + - name: " " + - uid: System.UInt32 + name: UInteger + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.uint32 + - name: ) +- uid: OpenTK.Platform.IVulkanComponent.CreateWindowSurface(OpenTK.Graphics.Vulkan.VkInstance,OpenTK.Platform.WindowHandle,OpenTK.Graphics.Vulkan.VkAllocationCallbacks*,OpenTK.Graphics.Vulkan.VkSurfaceKHR@) + commentId: M:OpenTK.Platform.IVulkanComponent.CreateWindowSurface(OpenTK.Graphics.Vulkan.VkInstance,OpenTK.Platform.WindowHandle,OpenTK.Graphics.Vulkan.VkAllocationCallbacks*,OpenTK.Graphics.Vulkan.VkSurfaceKHR@) + parent: OpenTK.Platform.IVulkanComponent + href: OpenTK.Platform.IVulkanComponent.html#OpenTK_Platform_IVulkanComponent_CreateWindowSurface_OpenTK_Graphics_Vulkan_VkInstance_OpenTK_Platform_WindowHandle_OpenTK_Graphics_Vulkan_VkAllocationCallbacks__OpenTK_Graphics_Vulkan_VkSurfaceKHR__ + name: CreateWindowSurface(VkInstance, WindowHandle, VkAllocationCallbacks*, out VkSurfaceKHR) + nameWithType: IVulkanComponent.CreateWindowSurface(VkInstance, WindowHandle, VkAllocationCallbacks*, out VkSurfaceKHR) + fullName: OpenTK.Platform.IVulkanComponent.CreateWindowSurface(OpenTK.Graphics.Vulkan.VkInstance, OpenTK.Platform.WindowHandle, OpenTK.Graphics.Vulkan.VkAllocationCallbacks*, out OpenTK.Graphics.Vulkan.VkSurfaceKHR) + nameWithType.vb: IVulkanComponent.CreateWindowSurface(VkInstance, WindowHandle, VkAllocationCallbacks*, VkSurfaceKHR) + fullName.vb: OpenTK.Platform.IVulkanComponent.CreateWindowSurface(OpenTK.Graphics.Vulkan.VkInstance, OpenTK.Platform.WindowHandle, OpenTK.Graphics.Vulkan.VkAllocationCallbacks*, OpenTK.Graphics.Vulkan.VkSurfaceKHR) + name.vb: CreateWindowSurface(VkInstance, WindowHandle, VkAllocationCallbacks*, VkSurfaceKHR) + spec.csharp: + - uid: OpenTK.Platform.IVulkanComponent.CreateWindowSurface(OpenTK.Graphics.Vulkan.VkInstance,OpenTK.Platform.WindowHandle,OpenTK.Graphics.Vulkan.VkAllocationCallbacks*,OpenTK.Graphics.Vulkan.VkSurfaceKHR@) + name: CreateWindowSurface + href: OpenTK.Platform.IVulkanComponent.html#OpenTK_Platform_IVulkanComponent_CreateWindowSurface_OpenTK_Graphics_Vulkan_VkInstance_OpenTK_Platform_WindowHandle_OpenTK_Graphics_Vulkan_VkAllocationCallbacks__OpenTK_Graphics_Vulkan_VkSurfaceKHR__ + - name: ( + - uid: OpenTK.Graphics.Vulkan.VkInstance + name: VkInstance + href: OpenTK.Graphics.Vulkan.VkInstance.html + - name: ',' + - name: " " + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: OpenTK.Graphics.Vulkan.VkAllocationCallbacks + name: VkAllocationCallbacks + href: OpenTK.Graphics.Vulkan.VkAllocationCallbacks.html + - name: '*' + - name: ',' + - name: " " + - name: out + - name: " " + - uid: OpenTK.Graphics.Vulkan.VkSurfaceKHR + name: VkSurfaceKHR + href: OpenTK.Graphics.Vulkan.VkSurfaceKHR.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IVulkanComponent.CreateWindowSurface(OpenTK.Graphics.Vulkan.VkInstance,OpenTK.Platform.WindowHandle,OpenTK.Graphics.Vulkan.VkAllocationCallbacks*,OpenTK.Graphics.Vulkan.VkSurfaceKHR@) + name: CreateWindowSurface + href: OpenTK.Platform.IVulkanComponent.html#OpenTK_Platform_IVulkanComponent_CreateWindowSurface_OpenTK_Graphics_Vulkan_VkInstance_OpenTK_Platform_WindowHandle_OpenTK_Graphics_Vulkan_VkAllocationCallbacks__OpenTK_Graphics_Vulkan_VkSurfaceKHR__ + - name: ( + - uid: OpenTK.Graphics.Vulkan.VkInstance + name: VkInstance + href: OpenTK.Graphics.Vulkan.VkInstance.html + - name: ',' + - name: " " + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: OpenTK.Graphics.Vulkan.VkAllocationCallbacks + name: VkAllocationCallbacks + href: OpenTK.Graphics.Vulkan.VkAllocationCallbacks.html + - name: '*' + - name: ',' + - name: " " + - uid: OpenTK.Graphics.Vulkan.VkSurfaceKHR + name: VkSurfaceKHR + href: OpenTK.Graphics.Vulkan.VkSurfaceKHR.html + - name: ) +- uid: OpenTK.Graphics.Vulkan.VkInstance + commentId: T:OpenTK.Graphics.Vulkan.VkInstance + parent: OpenTK.Graphics.Vulkan + href: OpenTK.Graphics.Vulkan.VkInstance.html + name: VkInstance + nameWithType: VkInstance + fullName: OpenTK.Graphics.Vulkan.VkInstance +- uid: OpenTK.Platform.Native.X11.X11VulkanComponent.GetRequiredInstanceExtensions* + commentId: Overload:OpenTK.Platform.Native.X11.X11VulkanComponent.GetRequiredInstanceExtensions + href: OpenTK.Platform.Native.X11.X11VulkanComponent.html#OpenTK_Platform_Native_X11_X11VulkanComponent_GetRequiredInstanceExtensions + name: GetRequiredInstanceExtensions + nameWithType: X11VulkanComponent.GetRequiredInstanceExtensions + fullName: OpenTK.Platform.Native.X11.X11VulkanComponent.GetRequiredInstanceExtensions +- uid: OpenTK.Platform.IVulkanComponent.GetRequiredInstanceExtensions + commentId: M:OpenTK.Platform.IVulkanComponent.GetRequiredInstanceExtensions + parent: OpenTK.Platform.IVulkanComponent + href: OpenTK.Platform.IVulkanComponent.html#OpenTK_Platform_IVulkanComponent_GetRequiredInstanceExtensions + name: GetRequiredInstanceExtensions() + nameWithType: IVulkanComponent.GetRequiredInstanceExtensions() + fullName: OpenTK.Platform.IVulkanComponent.GetRequiredInstanceExtensions() + spec.csharp: + - uid: OpenTK.Platform.IVulkanComponent.GetRequiredInstanceExtensions + name: GetRequiredInstanceExtensions + href: OpenTK.Platform.IVulkanComponent.html#OpenTK_Platform_IVulkanComponent_GetRequiredInstanceExtensions + - name: ( + - name: ) + spec.vb: + - uid: OpenTK.Platform.IVulkanComponent.GetRequiredInstanceExtensions + name: GetRequiredInstanceExtensions + href: OpenTK.Platform.IVulkanComponent.html#OpenTK_Platform_IVulkanComponent_GetRequiredInstanceExtensions + - name: ( + - name: ) +- uid: System.ReadOnlySpan{System.String} + commentId: T:System.ReadOnlySpan{System.String} + parent: System + definition: System.ReadOnlySpan`1 + href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 + name: ReadOnlySpan + nameWithType: ReadOnlySpan + fullName: System.ReadOnlySpan + nameWithType.vb: ReadOnlySpan(Of String) + fullName.vb: System.ReadOnlySpan(Of String) + name.vb: ReadOnlySpan(Of String) + spec.csharp: + - uid: System.ReadOnlySpan`1 + name: ReadOnlySpan + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 + - name: < + - uid: System.String + name: string + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: '>' + spec.vb: + - uid: System.ReadOnlySpan`1 + name: ReadOnlySpan + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 + - name: ( + - name: Of + - name: " " + - uid: System.String + name: String + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ) +- uid: OpenTK.Graphics.Vulkan + commentId: N:OpenTK.Graphics.Vulkan + href: OpenTK.html + name: OpenTK.Graphics.Vulkan + nameWithType: OpenTK.Graphics.Vulkan + fullName: OpenTK.Graphics.Vulkan + spec.csharp: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Graphics + name: Graphics + href: OpenTK.Graphics.html + - name: . + - uid: OpenTK.Graphics.Vulkan + name: Vulkan + href: OpenTK.Graphics.Vulkan.html + spec.vb: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Graphics + name: Graphics + href: OpenTK.Graphics.html + - name: . + - uid: OpenTK.Graphics.Vulkan + name: Vulkan + href: OpenTK.Graphics.Vulkan.html +- uid: System.ReadOnlySpan`1 + commentId: T:System.ReadOnlySpan`1 + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 + name: ReadOnlySpan + nameWithType: ReadOnlySpan + fullName: System.ReadOnlySpan + nameWithType.vb: ReadOnlySpan(Of T) + fullName.vb: System.ReadOnlySpan(Of T) + name.vb: ReadOnlySpan(Of T) + spec.csharp: + - uid: System.ReadOnlySpan`1 + name: ReadOnlySpan + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 + - name: < + - name: T + - name: '>' + spec.vb: + - uid: System.ReadOnlySpan`1 + name: ReadOnlySpan + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 + - name: ( + - name: Of + - name: " " + - name: T + - name: ) +- uid: OpenTK.Graphics.Vulkan.VkPhysicalDevice + commentId: T:OpenTK.Graphics.Vulkan.VkPhysicalDevice + parent: OpenTK.Graphics.Vulkan + href: OpenTK.Graphics.Vulkan.VkPhysicalDevice.html + name: VkPhysicalDevice + nameWithType: VkPhysicalDevice + fullName: OpenTK.Graphics.Vulkan.VkPhysicalDevice +- uid: OpenTK.Platform.Native.X11.X11VulkanComponent.GetPhysicalDevicePresentationSupport* + commentId: Overload:OpenTK.Platform.Native.X11.X11VulkanComponent.GetPhysicalDevicePresentationSupport + href: OpenTK.Platform.Native.X11.X11VulkanComponent.html#OpenTK_Platform_Native_X11_X11VulkanComponent_GetPhysicalDevicePresentationSupport_OpenTK_Graphics_Vulkan_VkInstance_OpenTK_Graphics_Vulkan_VkPhysicalDevice_System_UInt32_ + name: GetPhysicalDevicePresentationSupport + nameWithType: X11VulkanComponent.GetPhysicalDevicePresentationSupport + fullName: OpenTK.Platform.Native.X11.X11VulkanComponent.GetPhysicalDevicePresentationSupport +- uid: System.UInt32 + commentId: T:System.UInt32 + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.uint32 + name: uint + nameWithType: uint + fullName: uint + nameWithType.vb: UInteger + fullName.vb: UInteger + name.vb: UInteger +- uid: System.Boolean + commentId: T:System.Boolean + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + name: bool + nameWithType: bool + fullName: bool + nameWithType.vb: Boolean + fullName.vb: Boolean + name.vb: Boolean +- uid: OpenTK.Platform.Native.X11.X11VulkanComponent.CreateWindowSurface* + commentId: Overload:OpenTK.Platform.Native.X11.X11VulkanComponent.CreateWindowSurface + href: OpenTK.Platform.Native.X11.X11VulkanComponent.html#OpenTK_Platform_Native_X11_X11VulkanComponent_CreateWindowSurface_OpenTK_Graphics_Vulkan_VkInstance_OpenTK_Platform_WindowHandle_OpenTK_Graphics_Vulkan_VkAllocationCallbacks__OpenTK_Graphics_Vulkan_VkSurfaceKHR__ + name: CreateWindowSurface + nameWithType: X11VulkanComponent.CreateWindowSurface + fullName: OpenTK.Platform.Native.X11.X11VulkanComponent.CreateWindowSurface +- uid: OpenTK.Platform.WindowHandle + commentId: T:OpenTK.Platform.WindowHandle + parent: OpenTK.Platform + href: OpenTK.Platform.WindowHandle.html + name: WindowHandle + nameWithType: WindowHandle + fullName: OpenTK.Platform.WindowHandle +- uid: OpenTK.Graphics.Vulkan.VkAllocationCallbacks* + isExternal: true + href: OpenTK.Graphics.Vulkan.VkAllocationCallbacks.html + name: VkAllocationCallbacks* + nameWithType: VkAllocationCallbacks* + fullName: OpenTK.Graphics.Vulkan.VkAllocationCallbacks* + spec.csharp: + - uid: OpenTK.Graphics.Vulkan.VkAllocationCallbacks + name: VkAllocationCallbacks + href: OpenTK.Graphics.Vulkan.VkAllocationCallbacks.html + - name: '*' + spec.vb: + - uid: OpenTK.Graphics.Vulkan.VkAllocationCallbacks + name: VkAllocationCallbacks + href: OpenTK.Graphics.Vulkan.VkAllocationCallbacks.html + - name: '*' +- uid: OpenTK.Graphics.Vulkan.VkSurfaceKHR + commentId: T:OpenTK.Graphics.Vulkan.VkSurfaceKHR + parent: OpenTK.Graphics.Vulkan + href: OpenTK.Graphics.Vulkan.VkSurfaceKHR.html + name: VkSurfaceKHR + nameWithType: VkSurfaceKHR + fullName: OpenTK.Graphics.Vulkan.VkSurfaceKHR +- uid: OpenTK.Graphics.Vulkan.VkResult + commentId: T:OpenTK.Graphics.Vulkan.VkResult + parent: OpenTK.Graphics.Vulkan + href: OpenTK.Graphics.Vulkan.VkResult.html + name: VkResult + nameWithType: VkResult + fullName: OpenTK.Graphics.Vulkan.VkResult diff --git a/api/OpenTK.Platform.Native.X11.X11WindowComponent.yml b/api/OpenTK.Platform.Native.X11.X11WindowComponent.yml index 72cfc21d..fa55a832 100644 --- a/api/OpenTK.Platform.Native.X11.X11WindowComponent.yml +++ b/api/OpenTK.Platform.Native.X11.X11WindowComponent.yml @@ -9,30 +9,33 @@ items: - OpenTK.Platform.Native.X11.X11WindowComponent.CanGetDisplay - OpenTK.Platform.Native.X11.X11WindowComponent.CanSetCursor - OpenTK.Platform.Native.X11.X11WindowComponent.CanSetIcon - - OpenTK.Platform.Native.X11.X11WindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) + - OpenTK.Platform.Native.X11.X11WindowComponent.ClientToFramebuffer(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + - OpenTK.Platform.Native.X11.X11WindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) - OpenTK.Platform.Native.X11.X11WindowComponent.Create(OpenTK.Platform.GraphicsApiHints) - OpenTK.Platform.Native.X11.X11WindowComponent.DemandAttention(OpenTK.Platform.WindowHandle) - OpenTK.Platform.Native.X11.X11WindowComponent.Destroy(OpenTK.Platform.WindowHandle) - OpenTK.Platform.Native.X11.X11WindowComponent.FocusWindow(OpenTK.Platform.WindowHandle) + - OpenTK.Platform.Native.X11.X11WindowComponent.FramebufferToClient(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) - OpenTK.Platform.Native.X11.X11WindowComponent.FreedesktopWindowManagerName - OpenTK.Platform.Native.X11.X11WindowComponent.GetBorderStyle(OpenTK.Platform.WindowHandle) - OpenTK.Platform.Native.X11.X11WindowComponent.GetBounds(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) - OpenTK.Platform.Native.X11.X11WindowComponent.GetClientBounds(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) - - OpenTK.Platform.Native.X11.X11WindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) - - OpenTK.Platform.Native.X11.X11WindowComponent.GetClientSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + - OpenTK.Platform.Native.X11.X11WindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) + - OpenTK.Platform.Native.X11.X11WindowComponent.GetClientSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) - OpenTK.Platform.Native.X11.X11WindowComponent.GetCursorCaptureMode(OpenTK.Platform.WindowHandle) - OpenTK.Platform.Native.X11.X11WindowComponent.GetDisplay(OpenTK.Platform.WindowHandle) - - OpenTK.Platform.Native.X11.X11WindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + - OpenTK.Platform.Native.X11.X11WindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) - OpenTK.Platform.Native.X11.X11WindowComponent.GetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle@) - OpenTK.Platform.Native.X11.X11WindowComponent.GetIcon(OpenTK.Platform.WindowHandle) - OpenTK.Platform.Native.X11.X11WindowComponent.GetIconifiedTitle(OpenTK.Platform.WindowHandle) - OpenTK.Platform.Native.X11.X11WindowComponent.GetMaxClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) - OpenTK.Platform.Native.X11.X11WindowComponent.GetMinClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) - OpenTK.Platform.Native.X11.X11WindowComponent.GetMode(OpenTK.Platform.WindowHandle) - - OpenTK.Platform.Native.X11.X11WindowComponent.GetPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + - OpenTK.Platform.Native.X11.X11WindowComponent.GetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) - OpenTK.Platform.Native.X11.X11WindowComponent.GetScaleFactor(OpenTK.Platform.WindowHandle,System.Single@,System.Single@) - - OpenTK.Platform.Native.X11.X11WindowComponent.GetSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + - OpenTK.Platform.Native.X11.X11WindowComponent.GetSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) - OpenTK.Platform.Native.X11.X11WindowComponent.GetTitle(OpenTK.Platform.WindowHandle) + - OpenTK.Platform.Native.X11.X11WindowComponent.GetTransparencyMode(OpenTK.Platform.WindowHandle,System.Single@) - OpenTK.Platform.Native.X11.X11WindowComponent.GetX11Display - OpenTK.Platform.Native.X11.X11WindowComponent.GetX11Window(OpenTK.Platform.WindowHandle) - OpenTK.Platform.Native.X11.X11WindowComponent.Initialize(OpenTK.Platform.ToolkitOptions) @@ -45,13 +48,13 @@ items: - OpenTK.Platform.Native.X11.X11WindowComponent.ProcessEvents(System.Boolean) - OpenTK.Platform.Native.X11.X11WindowComponent.Provides - OpenTK.Platform.Native.X11.X11WindowComponent.RequestAttention(OpenTK.Platform.WindowHandle) - - OpenTK.Platform.Native.X11.X11WindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) + - OpenTK.Platform.Native.X11.X11WindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) - OpenTK.Platform.Native.X11.X11WindowComponent.SetAlwaysOnTop(OpenTK.Platform.WindowHandle,System.Boolean) - OpenTK.Platform.Native.X11.X11WindowComponent.SetBorderStyle(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowBorderStyle) - OpenTK.Platform.Native.X11.X11WindowComponent.SetBounds(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) - OpenTK.Platform.Native.X11.X11WindowComponent.SetClientBounds(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) - - OpenTK.Platform.Native.X11.X11WindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) - - OpenTK.Platform.Native.X11.X11WindowComponent.SetClientSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) + - OpenTK.Platform.Native.X11.X11WindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) + - OpenTK.Platform.Native.X11.X11WindowComponent.SetClientSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) - OpenTK.Platform.Native.X11.X11WindowComponent.SetCursor(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorHandle) - OpenTK.Platform.Native.X11.X11WindowComponent.SetCursorCaptureMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorCaptureMode) - OpenTK.Platform.Native.X11.X11WindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle) @@ -62,12 +65,15 @@ items: - OpenTK.Platform.Native.X11.X11WindowComponent.SetMaxClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) - OpenTK.Platform.Native.X11.X11WindowComponent.SetMinClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) - OpenTK.Platform.Native.X11.X11WindowComponent.SetMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowMode) - - OpenTK.Platform.Native.X11.X11WindowComponent.SetPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) - - OpenTK.Platform.Native.X11.X11WindowComponent.SetSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) + - OpenTK.Platform.Native.X11.X11WindowComponent.SetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) + - OpenTK.Platform.Native.X11.X11WindowComponent.SetSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) - OpenTK.Platform.Native.X11.X11WindowComponent.SetTitle(OpenTK.Platform.WindowHandle,System.String) + - OpenTK.Platform.Native.X11.X11WindowComponent.SetTransparencyMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowTransparencyMode,System.Single) - OpenTK.Platform.Native.X11.X11WindowComponent.SupportedEvents - OpenTK.Platform.Native.X11.X11WindowComponent.SupportedModes - OpenTK.Platform.Native.X11.X11WindowComponent.SupportedStyles + - OpenTK.Platform.Native.X11.X11WindowComponent.SupportsFramebufferTransparency(OpenTK.Platform.WindowHandle) + - OpenTK.Platform.Native.X11.X11WindowComponent.Uninitialize langs: - csharp - vb @@ -78,7 +84,7 @@ items: source: id: X11WindowComponent path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11WindowComponent.cs - startLine: 20 + startLine: 22 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 @@ -112,7 +118,7 @@ items: source: id: Name path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11WindowComponent.cs - startLine: 23 + startLine: 25 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 @@ -141,7 +147,7 @@ items: source: id: Provides path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11WindowComponent.cs - startLine: 26 + startLine: 28 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 @@ -170,11 +176,11 @@ items: source: id: Logger path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11WindowComponent.cs - startLine: 29 + startLine: 31 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 - summary: Provides a logger for this component. + summary: The logger that this component uses to log diagnostic messages. example: [] syntax: content: public ILogger? Logger { get; set; } @@ -183,6 +189,11 @@ items: type: OpenTK.Core.Utility.ILogger content.vb: Public Property Logger As ILogger overload: OpenTK.Platform.Native.X11.X11WindowComponent.Logger* + seealso: + - linkId: OpenTK.Core.Utility.ILogger + commentId: T:OpenTK.Core.Utility.ILogger + - linkId: OpenTK.Platform.ToolkitOptions.Logger + commentId: P:OpenTK.Platform.ToolkitOptions.Logger implements: - OpenTK.Platform.IPalComponent.Logger - uid: OpenTK.Platform.Native.X11.X11WindowComponent.Initialize(OpenTK.Platform.ToolkitOptions) @@ -199,7 +210,7 @@ items: source: id: Initialize path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11WindowComponent.cs - startLine: 56 + startLine: 54 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 @@ -213,8 +224,42 @@ items: description: The options to initialize the component with. content.vb: Public Sub Initialize(options As ToolkitOptions) overload: OpenTK.Platform.Native.X11.X11WindowComponent.Initialize* + seealso: + - linkId: OpenTK.Platform.ToolkitOptions + commentId: T:OpenTK.Platform.ToolkitOptions + - linkId: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) implements: - OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) +- uid: OpenTK.Platform.Native.X11.X11WindowComponent.Uninitialize + commentId: M:OpenTK.Platform.Native.X11.X11WindowComponent.Uninitialize + id: Uninitialize + parent: OpenTK.Platform.Native.X11.X11WindowComponent + langs: + - csharp + - vb + name: Uninitialize() + nameWithType: X11WindowComponent.Uninitialize() + fullName: OpenTK.Platform.Native.X11.X11WindowComponent.Uninitialize() + type: Method + source: + id: Uninitialize + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11WindowComponent.cs + startLine: 290 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform.Native.X11 + summary: Uninitialize the component. Frees any native resources used by the component. + example: [] + syntax: + content: public void Uninitialize() + content.vb: Public Sub Uninitialize() + overload: OpenTK.Platform.Native.X11.X11WindowComponent.Uninitialize* + seealso: + - linkId: OpenTK.Platform.Toolkit.Uninit + commentId: M:OpenTK.Platform.Toolkit.Uninit + implements: + - OpenTK.Platform.IPalComponent.Uninitialize - uid: OpenTK.Platform.Native.X11.X11WindowComponent.CanSetIcon commentId: P:OpenTK.Platform.Native.X11.X11WindowComponent.CanSetIcon id: CanSetIcon @@ -229,11 +274,11 @@ items: source: id: CanSetIcon path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11WindowComponent.cs - startLine: 224 + startLine: 309 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 - summary: True when the driver supports setting the window icon using . + summary: true when the driver supports setting and getting the window icon using and . example: [] syntax: content: public bool CanSetIcon { get; } @@ -245,6 +290,8 @@ items: seealso: - linkId: OpenTK.Platform.IWindowComponent.SetIcon(OpenTK.Platform.WindowHandle,OpenTK.Platform.IconHandle) commentId: M:OpenTK.Platform.IWindowComponent.SetIcon(OpenTK.Platform.WindowHandle,OpenTK.Platform.IconHandle) + - linkId: OpenTK.Platform.IWindowComponent.GetIcon(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.GetIcon(OpenTK.Platform.WindowHandle) implements: - OpenTK.Platform.IWindowComponent.CanSetIcon - uid: OpenTK.Platform.Native.X11.X11WindowComponent.CanGetDisplay @@ -261,11 +308,11 @@ items: source: id: CanGetDisplay path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11WindowComponent.cs - startLine: 227 + startLine: 312 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 - summary: True when the driver can provide the display the window is in using . + summary: true when the driver can provide the display the window is in using . example: [] syntax: content: public bool CanGetDisplay { get; } @@ -293,11 +340,11 @@ items: source: id: CanSetCursor path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11WindowComponent.cs - startLine: 230 + startLine: 315 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 - summary: True when the driver supports setting the cursor of the window using . + summary: true when the driver supports setting the cursor of the window using . example: [] syntax: content: public bool CanSetCursor { get; } @@ -325,11 +372,11 @@ items: source: id: CanCaptureCursor path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11WindowComponent.cs - startLine: 233 + startLine: 318 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 - summary: True when the driver supports capturing the cursor in a window using . + summary: true when the driver supports capturing the cursor in a window using . example: [] syntax: content: public bool CanCaptureCursor { get; } @@ -357,7 +404,7 @@ items: source: id: SupportedEvents path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11WindowComponent.cs - startLine: 247 + startLine: 333 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 @@ -386,7 +433,7 @@ items: source: id: SupportedStyles path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11WindowComponent.cs - startLine: 250 + startLine: 336 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 @@ -415,7 +462,7 @@ items: source: id: SupportedModes path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11WindowComponent.cs - startLine: 253 + startLine: 339 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 @@ -444,7 +491,7 @@ items: source: id: IsWindowManagerFreedesktop path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11WindowComponent.cs - startLine: 258 + startLine: 344 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 @@ -471,7 +518,7 @@ items: source: id: FreedesktopWindowManagerName path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11WindowComponent.cs - startLine: 263 + startLine: 349 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 @@ -498,7 +545,7 @@ items: source: id: ProcessEvents path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11WindowComponent.cs - startLine: 335 + startLine: 421 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 @@ -531,7 +578,7 @@ items: source: id: Create path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11WindowComponent.cs - startLine: 1077 + startLine: 1330 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 @@ -548,6 +595,9 @@ items: description: Handle to the new window object. content.vb: Public Function Create(hints As GraphicsApiHints) As WindowHandle overload: OpenTK.Platform.Native.X11.X11WindowComponent.Create* + seealso: + - linkId: OpenTK.Platform.IWindowComponent.Destroy(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.Destroy(OpenTK.Platform.WindowHandle) implements: - OpenTK.Platform.IWindowComponent.Create(OpenTK.Platform.GraphicsApiHints) - uid: OpenTK.Platform.Native.X11.X11WindowComponent.Destroy(OpenTK.Platform.WindowHandle) @@ -564,7 +614,7 @@ items: source: id: Destroy path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11WindowComponent.cs - startLine: 1403 + startLine: 1715 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 @@ -578,10 +628,11 @@ items: description: Handle to a window object. content.vb: Public Sub Destroy(handle As WindowHandle) overload: OpenTK.Platform.Native.X11.X11WindowComponent.Destroy* - exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: handle is null. + seealso: + - linkId: OpenTK.Platform.IWindowComponent.Create(OpenTK.Platform.GraphicsApiHints) + commentId: M:OpenTK.Platform.IWindowComponent.Create(OpenTK.Platform.GraphicsApiHints) + - linkId: OpenTK.Platform.IWindowComponent.IsWindowDestroyed(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.IsWindowDestroyed(OpenTK.Platform.WindowHandle) implements: - OpenTK.Platform.IWindowComponent.Destroy(OpenTK.Platform.WindowHandle) - uid: OpenTK.Platform.Native.X11.X11WindowComponent.IsWindowDestroyed(OpenTK.Platform.WindowHandle) @@ -598,7 +649,7 @@ items: source: id: IsWindowDestroyed path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11WindowComponent.cs - startLine: 1426 + startLine: 1743 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 @@ -615,6 +666,11 @@ items: description: If was called with the window handle. content.vb: Public Function IsWindowDestroyed(handle As WindowHandle) As Boolean overload: OpenTK.Platform.Native.X11.X11WindowComponent.IsWindowDestroyed* + seealso: + - linkId: OpenTK.Platform.IWindowComponent.Create(OpenTK.Platform.GraphicsApiHints) + commentId: M:OpenTK.Platform.IWindowComponent.Create(OpenTK.Platform.GraphicsApiHints) + - linkId: OpenTK.Platform.IWindowComponent.Destroy(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.Destroy(OpenTK.Platform.WindowHandle) implements: - OpenTK.Platform.IWindowComponent.IsWindowDestroyed(OpenTK.Platform.WindowHandle) - uid: OpenTK.Platform.Native.X11.X11WindowComponent.GetTitle(OpenTK.Platform.WindowHandle) @@ -631,7 +687,7 @@ items: source: id: GetTitle path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11WindowComponent.cs - startLine: 1434 + startLine: 1751 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 @@ -648,10 +704,9 @@ items: description: The title of the window. content.vb: Public Function GetTitle(handle As WindowHandle) As String overload: OpenTK.Platform.Native.X11.X11WindowComponent.GetTitle* - exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: handle is null. + seealso: + - linkId: OpenTK.Platform.IWindowComponent.SetTitle(OpenTK.Platform.WindowHandle,System.String) + commentId: M:OpenTK.Platform.IWindowComponent.SetTitle(OpenTK.Platform.WindowHandle,System.String) implements: - OpenTK.Platform.IWindowComponent.GetTitle(OpenTK.Platform.WindowHandle) - uid: OpenTK.Platform.Native.X11.X11WindowComponent.SetTitle(OpenTK.Platform.WindowHandle,System.String) @@ -668,7 +723,7 @@ items: source: id: SetTitle path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11WindowComponent.cs - startLine: 1468 + startLine: 1792 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 @@ -685,10 +740,9 @@ items: description: New window title string. content.vb: Public Sub SetTitle(handle As WindowHandle, title As String) overload: OpenTK.Platform.Native.X11.X11WindowComponent.SetTitle* - exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: handle or title is null. + seealso: + - linkId: OpenTK.Platform.IWindowComponent.GetTitle(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.GetTitle(OpenTK.Platform.WindowHandle) implements: - OpenTK.Platform.IWindowComponent.SetTitle(OpenTK.Platform.WindowHandle,System.String) nameWithType.vb: X11WindowComponent.SetTitle(WindowHandle, String) @@ -708,7 +762,7 @@ items: source: id: GetIconifiedTitle path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11WindowComponent.cs - startLine: 1501 + startLine: 1825 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 @@ -739,7 +793,7 @@ items: source: id: SetIconifiedTitle path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11WindowComponent.cs - startLine: 1535 + startLine: 1866 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 @@ -773,7 +827,7 @@ items: source: id: GetIcon path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11WindowComponent.cs - startLine: 1559 + startLine: 1890 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 @@ -791,12 +845,14 @@ items: content.vb: Public Function GetIcon(handle As WindowHandle) As IconHandle overload: OpenTK.Platform.Native.X11.X11WindowComponent.GetIcon* exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: handle is null. - - type: OpenTK.Platform.PalNotImplementedException - commentId: T:OpenTK.Platform.PalNotImplementedException - description: Driver does not support getting the window icon. See . + - type: System.PlatformNotSupportedException + commentId: T:System.PlatformNotSupportedException + description: Backend does not support getting the window icon. See . + seealso: + - linkId: OpenTK.Platform.IWindowComponent.CanSetIcon + commentId: P:OpenTK.Platform.IWindowComponent.CanSetIcon + - linkId: OpenTK.Platform.IWindowComponent.SetIcon(OpenTK.Platform.WindowHandle,OpenTK.Platform.IconHandle) + commentId: M:OpenTK.Platform.IWindowComponent.SetIcon(OpenTK.Platform.WindowHandle,OpenTK.Platform.IconHandle) implements: - OpenTK.Platform.IWindowComponent.GetIcon(OpenTK.Platform.WindowHandle) - uid: OpenTK.Platform.Native.X11.X11WindowComponent.SetIcon(OpenTK.Platform.WindowHandle,OpenTK.Platform.IconHandle) @@ -813,7 +869,7 @@ items: source: id: SetIcon path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11WindowComponent.cs - startLine: 1567 + startLine: 1898 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 @@ -827,193 +883,161 @@ items: description: Handle to a window. - id: icon type: OpenTK.Platform.IconHandle - description: Handle to an icon object, or null to revert to default. + description: Handle to an icon object. content.vb: Public Sub SetIcon(handle As WindowHandle, icon As IconHandle) overload: OpenTK.Platform.Native.X11.X11WindowComponent.SetIcon* exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: handle or icon is null. - - type: OpenTK.Platform.PalNotImplementedException - commentId: T:OpenTK.Platform.PalNotImplementedException + - type: System.PlatformNotSupportedException + commentId: T:System.PlatformNotSupportedException description: Backend does not support setting the window icon. See . seealso: - linkId: OpenTK.Platform.IWindowComponent.CanSetIcon commentId: P:OpenTK.Platform.IWindowComponent.CanSetIcon + - linkId: OpenTK.Platform.IWindowComponent.GetIcon(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.GetIcon(OpenTK.Platform.WindowHandle) implements: - OpenTK.Platform.IWindowComponent.SetIcon(OpenTK.Platform.WindowHandle,OpenTK.Platform.IconHandle) -- uid: OpenTK.Platform.Native.X11.X11WindowComponent.GetPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) - commentId: M:OpenTK.Platform.Native.X11.X11WindowComponent.GetPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) - id: GetPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) +- uid: OpenTK.Platform.Native.X11.X11WindowComponent.GetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) + commentId: M:OpenTK.Platform.Native.X11.X11WindowComponent.GetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) + id: GetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) parent: OpenTK.Platform.Native.X11.X11WindowComponent langs: - csharp - vb - name: GetPosition(WindowHandle, out int, out int) - nameWithType: X11WindowComponent.GetPosition(WindowHandle, out int, out int) - fullName: OpenTK.Platform.Native.X11.X11WindowComponent.GetPosition(OpenTK.Platform.WindowHandle, out int, out int) + name: GetPosition(WindowHandle, out Vector2i) + nameWithType: X11WindowComponent.GetPosition(WindowHandle, out Vector2i) + fullName: OpenTK.Platform.Native.X11.X11WindowComponent.GetPosition(OpenTK.Platform.WindowHandle, out OpenTK.Mathematics.Vector2i) type: Method source: id: GetPosition path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11WindowComponent.cs - startLine: 1658 + startLine: 1992 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: Get the window position in display coordinates (top left origin). example: [] syntax: - content: public void GetPosition(WindowHandle handle, out int x, out int y) + content: public void GetPosition(WindowHandle handle, out Vector2i position) parameters: - id: handle type: OpenTK.Platform.WindowHandle description: Handle to a window. - - id: x - type: System.Int32 - description: X coordinate of the window. - - id: y - type: System.Int32 - description: Y coordinate of the window. - content.vb: Public Sub GetPosition(handle As WindowHandle, x As Integer, y As Integer) + - id: position + type: OpenTK.Mathematics.Vector2i + description: Coordinate of the window in screen coordinates. + content.vb: Public Sub GetPosition(handle As WindowHandle, position As Vector2i) overload: OpenTK.Platform.Native.X11.X11WindowComponent.GetPosition* - exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: handle is null. + seealso: + - linkId: OpenTK.Platform.IWindowComponent.SetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) + commentId: M:OpenTK.Platform.IWindowComponent.SetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) implements: - - OpenTK.Platform.IWindowComponent.GetPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) - nameWithType.vb: X11WindowComponent.GetPosition(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Platform.Native.X11.X11WindowComponent.GetPosition(OpenTK.Platform.WindowHandle, Integer, Integer) - name.vb: GetPosition(WindowHandle, Integer, Integer) -- uid: OpenTK.Platform.Native.X11.X11WindowComponent.SetPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) - commentId: M:OpenTK.Platform.Native.X11.X11WindowComponent.SetPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) - id: SetPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) + - OpenTK.Platform.IWindowComponent.GetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) + nameWithType.vb: X11WindowComponent.GetPosition(WindowHandle, Vector2i) + fullName.vb: OpenTK.Platform.Native.X11.X11WindowComponent.GetPosition(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2i) + name.vb: GetPosition(WindowHandle, Vector2i) +- uid: OpenTK.Platform.Native.X11.X11WindowComponent.SetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) + commentId: M:OpenTK.Platform.Native.X11.X11WindowComponent.SetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) + id: SetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) parent: OpenTK.Platform.Native.X11.X11WindowComponent langs: - csharp - vb - name: SetPosition(WindowHandle, int, int) - nameWithType: X11WindowComponent.SetPosition(WindowHandle, int, int) - fullName: OpenTK.Platform.Native.X11.X11WindowComponent.SetPosition(OpenTK.Platform.WindowHandle, int, int) + name: SetPosition(WindowHandle, Vector2i) + nameWithType: X11WindowComponent.SetPosition(WindowHandle, Vector2i) + fullName: OpenTK.Platform.Native.X11.X11WindowComponent.SetPosition(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2i) type: Method source: id: SetPosition path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11WindowComponent.cs - startLine: 1671 + startLine: 2005 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: Set the window position in display coordinates (top left origin). example: [] syntax: - content: public void SetPosition(WindowHandle handle, int x, int y) + content: public void SetPosition(WindowHandle handle, Vector2i newPosition) parameters: - id: handle type: OpenTK.Platform.WindowHandle description: Handle to a window. - - id: x - type: System.Int32 - description: New X coordinate of the window. - - id: y - type: System.Int32 - description: New Y coordinate of the window. - content.vb: Public Sub SetPosition(handle As WindowHandle, x As Integer, y As Integer) + - id: newPosition + type: OpenTK.Mathematics.Vector2i + description: New position of the window in screen coordinates. + content.vb: Public Sub SetPosition(handle As WindowHandle, newPosition As Vector2i) overload: OpenTK.Platform.Native.X11.X11WindowComponent.SetPosition* - exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: handle is null. implements: - - OpenTK.Platform.IWindowComponent.SetPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) - nameWithType.vb: X11WindowComponent.SetPosition(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Platform.Native.X11.X11WindowComponent.SetPosition(OpenTK.Platform.WindowHandle, Integer, Integer) - name.vb: SetPosition(WindowHandle, Integer, Integer) -- uid: OpenTK.Platform.Native.X11.X11WindowComponent.GetSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) - commentId: M:OpenTK.Platform.Native.X11.X11WindowComponent.GetSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) - id: GetSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + - OpenTK.Platform.IWindowComponent.SetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) +- uid: OpenTK.Platform.Native.X11.X11WindowComponent.GetSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) + commentId: M:OpenTK.Platform.Native.X11.X11WindowComponent.GetSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) + id: GetSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) parent: OpenTK.Platform.Native.X11.X11WindowComponent langs: - csharp - vb - name: GetSize(WindowHandle, out int, out int) - nameWithType: X11WindowComponent.GetSize(WindowHandle, out int, out int) - fullName: OpenTK.Platform.Native.X11.X11WindowComponent.GetSize(OpenTK.Platform.WindowHandle, out int, out int) + name: GetSize(WindowHandle, out Vector2i) + nameWithType: X11WindowComponent.GetSize(WindowHandle, out Vector2i) + fullName: OpenTK.Platform.Native.X11.X11WindowComponent.GetSize(OpenTK.Platform.WindowHandle, out OpenTK.Mathematics.Vector2i) type: Method source: id: GetSize path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11WindowComponent.cs - startLine: 1686 + startLine: 2020 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: Get the size of the window. example: [] syntax: - content: public void GetSize(WindowHandle handle, out int width, out int height) + content: public void GetSize(WindowHandle handle, out Vector2i size) parameters: - id: handle type: OpenTK.Platform.WindowHandle description: Handle to a window. - - id: width - type: System.Int32 - description: Width of the window in pixels. - - id: height - type: System.Int32 - description: Height of the window in pixels. - content.vb: Public Sub GetSize(handle As WindowHandle, width As Integer, height As Integer) + - id: size + type: OpenTK.Mathematics.Vector2i + description: Size of the window in screen coordinates. + content.vb: Public Sub GetSize(handle As WindowHandle, size As Vector2i) overload: OpenTK.Platform.Native.X11.X11WindowComponent.GetSize* - exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: handle is null. implements: - - OpenTK.Platform.IWindowComponent.GetSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) - nameWithType.vb: X11WindowComponent.GetSize(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Platform.Native.X11.X11WindowComponent.GetSize(OpenTK.Platform.WindowHandle, Integer, Integer) - name.vb: GetSize(WindowHandle, Integer, Integer) -- uid: OpenTK.Platform.Native.X11.X11WindowComponent.SetSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) - commentId: M:OpenTK.Platform.Native.X11.X11WindowComponent.SetSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) - id: SetSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) + - OpenTK.Platform.IWindowComponent.GetSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) + nameWithType.vb: X11WindowComponent.GetSize(WindowHandle, Vector2i) + fullName.vb: OpenTK.Platform.Native.X11.X11WindowComponent.GetSize(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2i) + name.vb: GetSize(WindowHandle, Vector2i) +- uid: OpenTK.Platform.Native.X11.X11WindowComponent.SetSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) + commentId: M:OpenTK.Platform.Native.X11.X11WindowComponent.SetSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) + id: SetSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) parent: OpenTK.Platform.Native.X11.X11WindowComponent langs: - csharp - vb - name: SetSize(WindowHandle, int, int) - nameWithType: X11WindowComponent.SetSize(WindowHandle, int, int) - fullName: OpenTK.Platform.Native.X11.X11WindowComponent.SetSize(OpenTK.Platform.WindowHandle, int, int) + name: SetSize(WindowHandle, Vector2i) + nameWithType: X11WindowComponent.SetSize(WindowHandle, Vector2i) + fullName: OpenTK.Platform.Native.X11.X11WindowComponent.SetSize(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2i) type: Method source: id: SetSize path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11WindowComponent.cs - startLine: 1699 + startLine: 2033 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: Set the size of the window. example: [] syntax: - content: public void SetSize(WindowHandle handle, int width, int height) + content: public void SetSize(WindowHandle handle, Vector2i newSize) parameters: - id: handle type: OpenTK.Platform.WindowHandle description: Handle to a window. - - id: width - type: System.Int32 - description: New width of the window in pixels. - - id: height - type: System.Int32 - description: New height of the window in pixels. - content.vb: Public Sub SetSize(handle As WindowHandle, width As Integer, height As Integer) + - id: newSize + type: OpenTK.Mathematics.Vector2i + description: New size of the window in screen coordinates. + content.vb: Public Sub SetSize(handle As WindowHandle, newSize As Vector2i) overload: OpenTK.Platform.Native.X11.X11WindowComponent.SetSize* - exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: handle is null. implements: - - OpenTK.Platform.IWindowComponent.SetSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) - nameWithType.vb: X11WindowComponent.SetSize(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Platform.Native.X11.X11WindowComponent.SetSize(OpenTK.Platform.WindowHandle, Integer, Integer) - name.vb: SetSize(WindowHandle, Integer, Integer) + - OpenTK.Platform.IWindowComponent.SetSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) - uid: OpenTK.Platform.Native.X11.X11WindowComponent.GetBounds(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) commentId: M:OpenTK.Platform.Native.X11.X11WindowComponent.GetBounds(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) id: GetBounds(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) @@ -1028,7 +1052,7 @@ items: source: id: GetBounds path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11WindowComponent.cs - startLine: 1717 + startLine: 2051 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 @@ -1048,10 +1072,10 @@ items: description: Y coordinate of the window. - id: width type: System.Int32 - description: Width of the window in pixels. + description: Width of the window in screen coordinates. - id: height type: System.Int32 - description: Height of the window in pixels. + description: Height of the window in screen coordinates. content.vb: Public Sub GetBounds(handle As WindowHandle, x As Integer, y As Integer, width As Integer, height As Integer) overload: OpenTK.Platform.Native.X11.X11WindowComponent.GetBounds* implements: @@ -1073,7 +1097,7 @@ items: source: id: SetBounds path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11WindowComponent.cs - startLine: 1740 + startLine: 2074 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 @@ -1093,10 +1117,10 @@ items: description: New Y coordinate of the window. - id: width type: System.Int32 - description: New width of the window in pixels. + description: New width of the window in screen coordinates. - id: height type: System.Int32 - description: New height of the window in pixels. + description: New height of the window in screen coordinates. content.vb: Public Sub SetBounds(handle As WindowHandle, x As Integer, y As Integer, width As Integer, height As Integer) overload: OpenTK.Platform.Native.X11.X11WindowComponent.SetBounds* implements: @@ -1104,178 +1128,144 @@ items: nameWithType.vb: X11WindowComponent.SetBounds(WindowHandle, Integer, Integer, Integer, Integer) fullName.vb: OpenTK.Platform.Native.X11.X11WindowComponent.SetBounds(OpenTK.Platform.WindowHandle, Integer, Integer, Integer, Integer) name.vb: SetBounds(WindowHandle, Integer, Integer, Integer, Integer) -- uid: OpenTK.Platform.Native.X11.X11WindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) - commentId: M:OpenTK.Platform.Native.X11.X11WindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) - id: GetClientPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) +- uid: OpenTK.Platform.Native.X11.X11WindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) + commentId: M:OpenTK.Platform.Native.X11.X11WindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) + id: GetClientPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) parent: OpenTK.Platform.Native.X11.X11WindowComponent langs: - csharp - vb - name: GetClientPosition(WindowHandle, out int, out int) - nameWithType: X11WindowComponent.GetClientPosition(WindowHandle, out int, out int) - fullName: OpenTK.Platform.Native.X11.X11WindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle, out int, out int) + name: GetClientPosition(WindowHandle, out Vector2i) + nameWithType: X11WindowComponent.GetClientPosition(WindowHandle, out Vector2i) + fullName: OpenTK.Platform.Native.X11.X11WindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle, out OpenTK.Mathematics.Vector2i) type: Method source: id: GetClientPosition path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11WindowComponent.cs - startLine: 1760 + startLine: 2094 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: Get the position of the client area (drawing area) of a window. example: [] syntax: - content: public void GetClientPosition(WindowHandle handle, out int x, out int y) + content: public void GetClientPosition(WindowHandle handle, out Vector2i clientPosition) parameters: - id: handle type: OpenTK.Platform.WindowHandle description: Handle to a window. - - id: x - type: System.Int32 - description: X coordinate of the client area. - - id: y - type: System.Int32 - description: Y coordinate of the client area. - content.vb: Public Sub GetClientPosition(handle As WindowHandle, x As Integer, y As Integer) + - id: clientPosition + type: OpenTK.Mathematics.Vector2i + description: The coordinate of the client area in screen coordinates. + content.vb: Public Sub GetClientPosition(handle As WindowHandle, clientPosition As Vector2i) overload: OpenTK.Platform.Native.X11.X11WindowComponent.GetClientPosition* - exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: handle is null. implements: - - OpenTK.Platform.IWindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) - nameWithType.vb: X11WindowComponent.GetClientPosition(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Platform.Native.X11.X11WindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle, Integer, Integer) - name.vb: GetClientPosition(WindowHandle, Integer, Integer) -- uid: OpenTK.Platform.Native.X11.X11WindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) - commentId: M:OpenTK.Platform.Native.X11.X11WindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) - id: SetClientPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) + - OpenTK.Platform.IWindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) + nameWithType.vb: X11WindowComponent.GetClientPosition(WindowHandle, Vector2i) + fullName.vb: OpenTK.Platform.Native.X11.X11WindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2i) + name.vb: GetClientPosition(WindowHandle, Vector2i) +- uid: OpenTK.Platform.Native.X11.X11WindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) + commentId: M:OpenTK.Platform.Native.X11.X11WindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) + id: SetClientPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) parent: OpenTK.Platform.Native.X11.X11WindowComponent langs: - csharp - vb - name: SetClientPosition(WindowHandle, int, int) - nameWithType: X11WindowComponent.SetClientPosition(WindowHandle, int, int) - fullName: OpenTK.Platform.Native.X11.X11WindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle, int, int) + name: SetClientPosition(WindowHandle, Vector2i) + nameWithType: X11WindowComponent.SetClientPosition(WindowHandle, Vector2i) + fullName: OpenTK.Platform.Native.X11.X11WindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2i) type: Method source: id: SetClientPosition path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11WindowComponent.cs - startLine: 1776 + startLine: 2110 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: Set the position of the client area (drawing area) of a window. example: [] syntax: - content: public void SetClientPosition(WindowHandle handle, int x, int y) + content: public void SetClientPosition(WindowHandle handle, Vector2i newClientPosition) parameters: - id: handle type: OpenTK.Platform.WindowHandle description: Handle to a window. - - id: x - type: System.Int32 - description: New X coordinate of the client area. - - id: y - type: System.Int32 - description: New Y coordinate of the client area. - content.vb: Public Sub SetClientPosition(handle As WindowHandle, x As Integer, y As Integer) + - id: newClientPosition + type: OpenTK.Mathematics.Vector2i + description: New coordinate of the client area in screen coordinates. + content.vb: Public Sub SetClientPosition(handle As WindowHandle, newClientPosition As Vector2i) overload: OpenTK.Platform.Native.X11.X11WindowComponent.SetClientPosition* - exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: handle is null. implements: - - OpenTK.Platform.IWindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) - nameWithType.vb: X11WindowComponent.SetClientPosition(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Platform.Native.X11.X11WindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle, Integer, Integer) - name.vb: SetClientPosition(WindowHandle, Integer, Integer) -- uid: OpenTK.Platform.Native.X11.X11WindowComponent.GetClientSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) - commentId: M:OpenTK.Platform.Native.X11.X11WindowComponent.GetClientSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) - id: GetClientSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + - OpenTK.Platform.IWindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) +- uid: OpenTK.Platform.Native.X11.X11WindowComponent.GetClientSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) + commentId: M:OpenTK.Platform.Native.X11.X11WindowComponent.GetClientSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) + id: GetClientSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) parent: OpenTK.Platform.Native.X11.X11WindowComponent langs: - csharp - vb - name: GetClientSize(WindowHandle, out int, out int) - nameWithType: X11WindowComponent.GetClientSize(WindowHandle, out int, out int) - fullName: OpenTK.Platform.Native.X11.X11WindowComponent.GetClientSize(OpenTK.Platform.WindowHandle, out int, out int) + name: GetClientSize(WindowHandle, out Vector2i) + nameWithType: X11WindowComponent.GetClientSize(WindowHandle, out Vector2i) + fullName: OpenTK.Platform.Native.X11.X11WindowComponent.GetClientSize(OpenTK.Platform.WindowHandle, out OpenTK.Mathematics.Vector2i) type: Method source: id: GetClientSize path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11WindowComponent.cs - startLine: 1784 + startLine: 2118 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: Get the size of the client area (drawing area) of a window. example: [] syntax: - content: public void GetClientSize(WindowHandle handle, out int width, out int height) + content: public void GetClientSize(WindowHandle handle, out Vector2i clientSize) parameters: - id: handle type: OpenTK.Platform.WindowHandle description: Handle to a window. - - id: width - type: System.Int32 - description: Width of the client area in pixels. - - id: height - type: System.Int32 - description: Height of the client area in pixels. - content.vb: Public Sub GetClientSize(handle As WindowHandle, width As Integer, height As Integer) + - id: clientSize + type: OpenTK.Mathematics.Vector2i + description: Size of the client area in screen coordinates. + content.vb: Public Sub GetClientSize(handle As WindowHandle, clientSize As Vector2i) overload: OpenTK.Platform.Native.X11.X11WindowComponent.GetClientSize* - exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: handle is null. implements: - - OpenTK.Platform.IWindowComponent.GetClientSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) - nameWithType.vb: X11WindowComponent.GetClientSize(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Platform.Native.X11.X11WindowComponent.GetClientSize(OpenTK.Platform.WindowHandle, Integer, Integer) - name.vb: GetClientSize(WindowHandle, Integer, Integer) -- uid: OpenTK.Platform.Native.X11.X11WindowComponent.SetClientSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) - commentId: M:OpenTK.Platform.Native.X11.X11WindowComponent.SetClientSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) - id: SetClientSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) + - OpenTK.Platform.IWindowComponent.GetClientSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) + nameWithType.vb: X11WindowComponent.GetClientSize(WindowHandle, Vector2i) + fullName.vb: OpenTK.Platform.Native.X11.X11WindowComponent.GetClientSize(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2i) + name.vb: GetClientSize(WindowHandle, Vector2i) +- uid: OpenTK.Platform.Native.X11.X11WindowComponent.SetClientSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) + commentId: M:OpenTK.Platform.Native.X11.X11WindowComponent.SetClientSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) + id: SetClientSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) parent: OpenTK.Platform.Native.X11.X11WindowComponent langs: - csharp - vb - name: SetClientSize(WindowHandle, int, int) - nameWithType: X11WindowComponent.SetClientSize(WindowHandle, int, int) - fullName: OpenTK.Platform.Native.X11.X11WindowComponent.SetClientSize(OpenTK.Platform.WindowHandle, int, int) + name: SetClientSize(WindowHandle, Vector2i) + nameWithType: X11WindowComponent.SetClientSize(WindowHandle, Vector2i) + fullName: OpenTK.Platform.Native.X11.X11WindowComponent.SetClientSize(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2i) type: Method source: id: SetClientSize path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11WindowComponent.cs - startLine: 1794 + startLine: 2128 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: Set the size of the client area (drawing area) of a window. example: [] syntax: - content: public void SetClientSize(WindowHandle handle, int width, int height) + content: public void SetClientSize(WindowHandle handle, Vector2i newClientSize) parameters: - id: handle type: OpenTK.Platform.WindowHandle description: Handle to a window. - - id: width - type: System.Int32 - description: New width of the client area in pixels. - - id: height - type: System.Int32 - description: New height of the client area in pixels. - content.vb: Public Sub SetClientSize(handle As WindowHandle, width As Integer, height As Integer) + - id: newClientSize + type: OpenTK.Mathematics.Vector2i + description: New size of the client area in screen coordinates. + content.vb: Public Sub SetClientSize(handle As WindowHandle, newClientSize As Vector2i) overload: OpenTK.Platform.Native.X11.X11WindowComponent.SetClientSize* - exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: handle is null. implements: - - OpenTK.Platform.IWindowComponent.SetClientSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) - nameWithType.vb: X11WindowComponent.SetClientSize(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Platform.Native.X11.X11WindowComponent.SetClientSize(OpenTK.Platform.WindowHandle, Integer, Integer) - name.vb: SetClientSize(WindowHandle, Integer, Integer) + - OpenTK.Platform.IWindowComponent.SetClientSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) - uid: OpenTK.Platform.Native.X11.X11WindowComponent.GetClientBounds(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) commentId: M:OpenTK.Platform.Native.X11.X11WindowComponent.GetClientBounds(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) id: GetClientBounds(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) @@ -1290,7 +1280,7 @@ items: source: id: GetClientBounds path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11WindowComponent.cs - startLine: 1804 + startLine: 2138 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 @@ -1335,7 +1325,7 @@ items: source: id: SetClientBounds path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11WindowComponent.cs - startLine: 1818 + startLine: 2152 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 @@ -1366,21 +1356,21 @@ items: nameWithType.vb: X11WindowComponent.SetClientBounds(WindowHandle, Integer, Integer, Integer, Integer) fullName.vb: OpenTK.Platform.Native.X11.X11WindowComponent.SetClientBounds(OpenTK.Platform.WindowHandle, Integer, Integer, Integer, Integer) name.vb: SetClientBounds(WindowHandle, Integer, Integer, Integer, Integer) -- uid: OpenTK.Platform.Native.X11.X11WindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) - commentId: M:OpenTK.Platform.Native.X11.X11WindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) - id: GetFramebufferSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) +- uid: OpenTK.Platform.Native.X11.X11WindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) + commentId: M:OpenTK.Platform.Native.X11.X11WindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) + id: GetFramebufferSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) parent: OpenTK.Platform.Native.X11.X11WindowComponent langs: - csharp - vb - name: GetFramebufferSize(WindowHandle, out int, out int) - nameWithType: X11WindowComponent.GetFramebufferSize(WindowHandle, out int, out int) - fullName: OpenTK.Platform.Native.X11.X11WindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle, out int, out int) + name: GetFramebufferSize(WindowHandle, out Vector2i) + nameWithType: X11WindowComponent.GetFramebufferSize(WindowHandle, out Vector2i) + fullName: OpenTK.Platform.Native.X11.X11WindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle, out OpenTK.Mathematics.Vector2i) type: Method source: id: GetFramebufferSize path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11WindowComponent.cs - startLine: 1826 + startLine: 2162 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 @@ -1390,24 +1380,21 @@ items: Use this value when calls to graphics APIs that want pixels, e.g. GL.Viewport(). example: [] syntax: - content: public void GetFramebufferSize(WindowHandle handle, out int width, out int height) + content: public void GetFramebufferSize(WindowHandle handle, out Vector2i framebufferSize) parameters: - id: handle type: OpenTK.Platform.WindowHandle description: Handle to a window. - - id: width - type: System.Int32 - description: Width in pixels of the window framebuffer. - - id: height - type: System.Int32 - description: Height in pixels of the window framebuffer. - content.vb: Public Sub GetFramebufferSize(handle As WindowHandle, width As Integer, height As Integer) + - id: framebufferSize + type: OpenTK.Mathematics.Vector2i + description: Size in pixels of the window framebuffer. + content.vb: Public Sub GetFramebufferSize(handle As WindowHandle, framebufferSize As Vector2i) overload: OpenTK.Platform.Native.X11.X11WindowComponent.GetFramebufferSize* implements: - - OpenTK.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) - nameWithType.vb: X11WindowComponent.GetFramebufferSize(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Platform.Native.X11.X11WindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle, Integer, Integer) - name.vb: GetFramebufferSize(WindowHandle, Integer, Integer) + - OpenTK.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) + nameWithType.vb: X11WindowComponent.GetFramebufferSize(WindowHandle, Vector2i) + fullName.vb: OpenTK.Platform.Native.X11.X11WindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2i) + name.vb: GetFramebufferSize(WindowHandle, Vector2i) - uid: OpenTK.Platform.Native.X11.X11WindowComponent.GetMaxClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) commentId: M:OpenTK.Platform.Native.X11.X11WindowComponent.GetMaxClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) id: GetMaxClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) @@ -1422,7 +1409,7 @@ items: source: id: GetMaxClientSize path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11WindowComponent.cs - startLine: 1835 + startLine: 2171 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 @@ -1461,7 +1448,7 @@ items: source: id: SetMaxClientSize path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11WindowComponent.cs - startLine: 1872 + startLine: 2208 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 @@ -1500,7 +1487,7 @@ items: source: id: GetMinClientSize path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11WindowComponent.cs - startLine: 1901 + startLine: 2237 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 @@ -1539,7 +1526,7 @@ items: source: id: SetMinClientSize path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11WindowComponent.cs - startLine: 1939 + startLine: 2275 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 @@ -1578,7 +1565,7 @@ items: source: id: GetDisplay path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11WindowComponent.cs - startLine: 1966 + startLine: 2302 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 @@ -1596,9 +1583,6 @@ items: content.vb: Public Function GetDisplay(handle As WindowHandle) As DisplayHandle overload: OpenTK.Platform.Native.X11.X11WindowComponent.GetDisplay* exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: handle is null. - type: OpenTK.Platform.PalNotImplementedException commentId: T:OpenTK.Platform.PalNotImplementedException description: Backend does not support finding the window display. . @@ -1621,7 +1605,7 @@ items: source: id: GetMode path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11WindowComponent.cs - startLine: 2042 + startLine: 2378 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 @@ -1642,10 +1626,6 @@ items: description: The mode of the window. content.vb: Public Function GetMode(handle As WindowHandle) As WindowMode overload: OpenTK.Platform.Native.X11.X11WindowComponent.GetMode* - exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: handle is null. implements: - OpenTK.Platform.IWindowComponent.GetMode(OpenTK.Platform.WindowHandle) - uid: OpenTK.Platform.Native.X11.X11WindowComponent.SetMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowMode) @@ -1662,7 +1642,7 @@ items: source: id: SetMode path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11WindowComponent.cs - startLine: 2113 + startLine: 2475 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 @@ -1688,15 +1668,17 @@ items: content.vb: Public Sub SetMode(handle As WindowHandle, mode As WindowMode) overload: OpenTK.Platform.Native.X11.X11WindowComponent.SetMode* exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: handle is null. - - type: System.ArgumentOutOfRangeException - commentId: T:System.ArgumentOutOfRangeException + - type: System.ComponentModel.InvalidEnumArgumentException + commentId: T:System.ComponentModel.InvalidEnumArgumentException description: mode is an invalid value. - - type: OpenTK.Platform.PalNotImplementedException - commentId: T:OpenTK.Platform.PalNotImplementedException - description: Driver does not support the value set by mode. See . + - type: System.PlatformNotSupportedException + commentId: T:System.PlatformNotSupportedException + description: Backend does not support the value set by mode. See . + seealso: + - linkId: OpenTK.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle) + commentId: M:OpenTK.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle) + - linkId: OpenTK.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle,OpenTK.Platform.VideoMode) + commentId: M:OpenTK.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle,OpenTK.Platform.VideoMode) implements: - OpenTK.Platform.IWindowComponent.SetMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowMode) - uid: OpenTK.Platform.Native.X11.X11WindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle) @@ -1713,7 +1695,7 @@ items: source: id: SetFullscreenDisplay path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11WindowComponent.cs - startLine: 2301 + startLine: 2673 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 @@ -1734,6 +1716,9 @@ items: description: The display to make the window fullscreen on. content.vb: Public Sub SetFullscreenDisplay(handle As WindowHandle, display As DisplayHandle) overload: OpenTK.Platform.Native.X11.X11WindowComponent.SetFullscreenDisplay* + seealso: + - linkId: OpenTK.Platform.IWindowComponent.SetMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowMode) + commentId: M:OpenTK.Platform.IWindowComponent.SetMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowMode) implements: - OpenTK.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle) nameWithType.vb: X11WindowComponent.SetFullscreenDisplay(WindowHandle, DisplayHandle) @@ -1753,7 +1738,7 @@ items: source: id: SetFullscreenDisplay path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11WindowComponent.cs - startLine: 2376 + startLine: 2748 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 @@ -1763,7 +1748,7 @@ items: Only video modes accuired using are expected to work. - remarks: To make an 'windowed fullscreen' window see . + remarks: To make a 'windowed fullscreen' window see . example: [] syntax: content: public void SetFullscreenDisplay(WindowHandle handle, DisplayHandle display, VideoMode videoMode) @@ -1779,6 +1764,11 @@ items: description: The video mode to use when making the window fullscreen. content.vb: Public Sub SetFullscreenDisplay(handle As WindowHandle, display As DisplayHandle, videoMode As VideoMode) overload: OpenTK.Platform.Native.X11.X11WindowComponent.SetFullscreenDisplay* + seealso: + - linkId: OpenTK.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle) + commentId: M:OpenTK.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle) + - linkId: OpenTK.Platform.IWindowComponent.SetMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowMode) + commentId: M:OpenTK.Platform.IWindowComponent.SetMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowMode) implements: - OpenTK.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle,OpenTK.Platform.VideoMode) - uid: OpenTK.Platform.Native.X11.X11WindowComponent.GetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle@) @@ -1795,7 +1785,7 @@ items: source: id: GetFullscreenDisplay path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11WindowComponent.cs - startLine: 2450 + startLine: 2822 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 @@ -1812,9 +1802,16 @@ items: description: The display where the window is fullscreen or null if the window is not fullscreen. return: type: System.Boolean - description: true if the window was fullscreen, false otherwise. + description: true if the window was fullscreen, false otherwise. content.vb: Public Function GetFullscreenDisplay(handle As WindowHandle, display As DisplayHandle) As Boolean overload: OpenTK.Platform.Native.X11.X11WindowComponent.GetFullscreenDisplay* + seealso: + - linkId: OpenTK.Platform.IWindowComponent.SetMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowMode) + commentId: M:OpenTK.Platform.IWindowComponent.SetMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowMode) + - linkId: OpenTK.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle) + commentId: M:OpenTK.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle) + - linkId: OpenTK.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle,OpenTK.Platform.VideoMode) + commentId: M:OpenTK.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle,OpenTK.Platform.VideoMode) implements: - OpenTK.Platform.IWindowComponent.GetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle@) nameWithType.vb: X11WindowComponent.GetFullscreenDisplay(WindowHandle, DisplayHandle) @@ -1834,7 +1831,7 @@ items: source: id: GetBorderStyle path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11WindowComponent.cs - startLine: 2462 + startLine: 2834 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 @@ -1855,10 +1852,9 @@ items: description: The border style of the window. content.vb: Public Function GetBorderStyle(handle As WindowHandle) As WindowBorderStyle overload: OpenTK.Platform.Native.X11.X11WindowComponent.GetBorderStyle* - exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: handle is null. + seealso: + - linkId: OpenTK.Platform.IWindowComponent.SetBorderStyle(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowBorderStyle) + commentId: M:OpenTK.Platform.IWindowComponent.SetBorderStyle(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowBorderStyle) implements: - OpenTK.Platform.IWindowComponent.GetBorderStyle(OpenTK.Platform.WindowHandle) - uid: OpenTK.Platform.Native.X11.X11WindowComponent.SetBorderStyle(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowBorderStyle) @@ -1875,7 +1871,7 @@ items: source: id: SetBorderStyle path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11WindowComponent.cs - startLine: 2528 + startLine: 2918 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 @@ -1893,17 +1889,151 @@ items: content.vb: Public Sub SetBorderStyle(handle As WindowHandle, style As WindowBorderStyle) overload: OpenTK.Platform.Native.X11.X11WindowComponent.SetBorderStyle* exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: handle is null. - - type: System.ArgumentOutOfRangeException - commentId: T:System.ArgumentOutOfRangeException + - type: System.ComponentModel.InvalidEnumArgumentException + commentId: T:System.ComponentModel.InvalidEnumArgumentException description: style is an invalid value. - - type: OpenTK.Platform.PalNotImplementedException - commentId: T:OpenTK.Platform.PalNotImplementedException - description: Driver does not support the value set by style. See . + - type: System.PlatformNotSupportedException + commentId: T:System.PlatformNotSupportedException + description: Backend does not support the value set by style. See . implements: - OpenTK.Platform.IWindowComponent.SetBorderStyle(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowBorderStyle) +- uid: OpenTK.Platform.Native.X11.X11WindowComponent.SupportsFramebufferTransparency(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.Native.X11.X11WindowComponent.SupportsFramebufferTransparency(OpenTK.Platform.WindowHandle) + id: SupportsFramebufferTransparency(OpenTK.Platform.WindowHandle) + parent: OpenTK.Platform.Native.X11.X11WindowComponent + langs: + - csharp + - vb + name: SupportsFramebufferTransparency(WindowHandle) + nameWithType: X11WindowComponent.SupportsFramebufferTransparency(WindowHandle) + fullName: OpenTK.Platform.Native.X11.X11WindowComponent.SupportsFramebufferTransparency(OpenTK.Platform.WindowHandle) + type: Method + source: + id: SupportsFramebufferTransparency + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11WindowComponent.cs + startLine: 3052 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform.Native.X11 + summary: >- + Returns true if is supported for this window. + +
Win32Always returns true.
macOSAlways returns true.
Linux/X11Returns true if the selected had true.
+ example: [] + syntax: + content: public bool SupportsFramebufferTransparency(WindowHandle handle) + parameters: + - id: handle + type: OpenTK.Platform.WindowHandle + description: The window to query framebuffer transparency support for. + return: + type: System.Boolean + description: If with would work. + content.vb: Public Function SupportsFramebufferTransparency(handle As WindowHandle) As Boolean + overload: OpenTK.Platform.Native.X11.X11WindowComponent.SupportsFramebufferTransparency* + seealso: + - linkId: OpenTK.Platform.IWindowComponent.SetTransparencyMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowTransparencyMode,System.Single) + commentId: M:OpenTK.Platform.IWindowComponent.SetTransparencyMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowTransparencyMode,System.Single) + - linkId: OpenTK.Platform.OpenGLGraphicsApiHints.SupportTransparentFramebufferX11 + commentId: P:OpenTK.Platform.OpenGLGraphicsApiHints.SupportTransparentFramebufferX11 + - linkId: OpenTK.Platform.ContextValues.SupportsFramebufferTransparency + commentId: F:OpenTK.Platform.ContextValues.SupportsFramebufferTransparency + - linkId: OpenTK.Platform.WindowTransparencyMode + commentId: T:OpenTK.Platform.WindowTransparencyMode + implements: + - OpenTK.Platform.IWindowComponent.SupportsFramebufferTransparency(OpenTK.Platform.WindowHandle) +- uid: OpenTK.Platform.Native.X11.X11WindowComponent.SetTransparencyMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowTransparencyMode,System.Single) + commentId: M:OpenTK.Platform.Native.X11.X11WindowComponent.SetTransparencyMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowTransparencyMode,System.Single) + id: SetTransparencyMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowTransparencyMode,System.Single) + parent: OpenTK.Platform.Native.X11.X11WindowComponent + langs: + - csharp + - vb + name: SetTransparencyMode(WindowHandle, WindowTransparencyMode, float) + nameWithType: X11WindowComponent.SetTransparencyMode(WindowHandle, WindowTransparencyMode, float) + fullName: OpenTK.Platform.Native.X11.X11WindowComponent.SetTransparencyMode(OpenTK.Platform.WindowHandle, OpenTK.Platform.WindowTransparencyMode, float) + type: Method + source: + id: SetTransparencyMode + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11WindowComponent.cs + startLine: 3059 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform.Native.X11 + summary: Sets the transparency mode of the specified window. + example: [] + syntax: + content: public void SetTransparencyMode(WindowHandle handle, WindowTransparencyMode transparencyMode, float opacity = 0.5) + parameters: + - id: handle + type: OpenTK.Platform.WindowHandle + description: The window to set the transparency mode of. + - id: transparencyMode + type: OpenTK.Platform.WindowTransparencyMode + description: The transparency mode to apply to the window. + - id: opacity + type: System.Single + description: The whole window opacity. Ignored if transparencyMode is not . + content.vb: Public Sub SetTransparencyMode(handle As WindowHandle, transparencyMode As WindowTransparencyMode, opacity As Single = 0.5) + overload: OpenTK.Platform.Native.X11.X11WindowComponent.SetTransparencyMode* + seealso: + - linkId: OpenTK.Platform.WindowTransparencyMode + commentId: T:OpenTK.Platform.WindowTransparencyMode + - linkId: OpenTK.Platform.IWindowComponent.SupportsFramebufferTransparency(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.SupportsFramebufferTransparency(OpenTK.Platform.WindowHandle) + - linkId: OpenTK.Platform.IWindowComponent.GetTransparencyMode(OpenTK.Platform.WindowHandle,System.Single@) + commentId: M:OpenTK.Platform.IWindowComponent.GetTransparencyMode(OpenTK.Platform.WindowHandle,System.Single@) + implements: + - OpenTK.Platform.IWindowComponent.SetTransparencyMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowTransparencyMode,System.Single) + nameWithType.vb: X11WindowComponent.SetTransparencyMode(WindowHandle, WindowTransparencyMode, Single) + fullName.vb: OpenTK.Platform.Native.X11.X11WindowComponent.SetTransparencyMode(OpenTK.Platform.WindowHandle, OpenTK.Platform.WindowTransparencyMode, Single) + name.vb: SetTransparencyMode(WindowHandle, WindowTransparencyMode, Single) +- uid: OpenTK.Platform.Native.X11.X11WindowComponent.GetTransparencyMode(OpenTK.Platform.WindowHandle,System.Single@) + commentId: M:OpenTK.Platform.Native.X11.X11WindowComponent.GetTransparencyMode(OpenTK.Platform.WindowHandle,System.Single@) + id: GetTransparencyMode(OpenTK.Platform.WindowHandle,System.Single@) + parent: OpenTK.Platform.Native.X11.X11WindowComponent + langs: + - csharp + - vb + name: GetTransparencyMode(WindowHandle, out float) + nameWithType: X11WindowComponent.GetTransparencyMode(WindowHandle, out float) + fullName: OpenTK.Platform.Native.X11.X11WindowComponent.GetTransparencyMode(OpenTK.Platform.WindowHandle, out float) + type: Method + source: + id: GetTransparencyMode + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11WindowComponent.cs + startLine: 3136 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform.Native.X11 + summary: Gets the transparency mode of the specified window. + example: [] + syntax: + content: public WindowTransparencyMode GetTransparencyMode(WindowHandle handle, out float opacity) + parameters: + - id: handle + type: OpenTK.Platform.WindowHandle + description: The window to query the transparency mode of. + - id: opacity + type: System.Single + description: The window opacity if the transparency mode was , 0 otherwise. + return: + type: OpenTK.Platform.WindowTransparencyMode + description: The transparency mode of the specified window. + content.vb: Public Function GetTransparencyMode(handle As WindowHandle, opacity As Single) As WindowTransparencyMode + overload: OpenTK.Platform.Native.X11.X11WindowComponent.GetTransparencyMode* + seealso: + - linkId: OpenTK.Platform.WindowTransparencyMode + commentId: T:OpenTK.Platform.WindowTransparencyMode + - linkId: OpenTK.Platform.IWindowComponent.SetTransparencyMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowTransparencyMode,System.Single) + commentId: M:OpenTK.Platform.IWindowComponent.SetTransparencyMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowTransparencyMode,System.Single) + - linkId: OpenTK.Platform.IWindowComponent.SupportsFramebufferTransparency(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.SupportsFramebufferTransparency(OpenTK.Platform.WindowHandle) + implements: + - OpenTK.Platform.IWindowComponent.GetTransparencyMode(OpenTK.Platform.WindowHandle,System.Single@) + nameWithType.vb: X11WindowComponent.GetTransparencyMode(WindowHandle, Single) + fullName.vb: OpenTK.Platform.Native.X11.X11WindowComponent.GetTransparencyMode(OpenTK.Platform.WindowHandle, Single) + name.vb: GetTransparencyMode(WindowHandle, Single) - uid: OpenTK.Platform.Native.X11.X11WindowComponent.SetAlwaysOnTop(OpenTK.Platform.WindowHandle,System.Boolean) commentId: M:OpenTK.Platform.Native.X11.X11WindowComponent.SetAlwaysOnTop(OpenTK.Platform.WindowHandle,System.Boolean) id: SetAlwaysOnTop(OpenTK.Platform.WindowHandle,System.Boolean) @@ -1918,7 +2048,7 @@ items: source: id: SetAlwaysOnTop path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11WindowComponent.cs - startLine: 2662 + startLine: 3207 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 @@ -1935,6 +2065,9 @@ items: description: Whether the window should be always on top or not. content.vb: Public Sub SetAlwaysOnTop(handle As WindowHandle, floating As Boolean) overload: OpenTK.Platform.Native.X11.X11WindowComponent.SetAlwaysOnTop* + seealso: + - linkId: OpenTK.Platform.IWindowComponent.IsAlwaysOnTop(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.IsAlwaysOnTop(OpenTK.Platform.WindowHandle) implements: - OpenTK.Platform.IWindowComponent.SetAlwaysOnTop(OpenTK.Platform.WindowHandle,System.Boolean) nameWithType.vb: X11WindowComponent.SetAlwaysOnTop(WindowHandle, Boolean) @@ -1954,7 +2087,7 @@ items: source: id: IsAlwaysOnTop path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11WindowComponent.cs - startLine: 2701 + startLine: 3246 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 @@ -1971,6 +2104,9 @@ items: description: Whether the window is always on top or not. content.vb: Public Function IsAlwaysOnTop(handle As WindowHandle) As Boolean overload: OpenTK.Platform.Native.X11.X11WindowComponent.IsAlwaysOnTop* + seealso: + - linkId: OpenTK.Platform.IWindowComponent.SetAlwaysOnTop(OpenTK.Platform.WindowHandle,System.Boolean) + commentId: M:OpenTK.Platform.IWindowComponent.SetAlwaysOnTop(OpenTK.Platform.WindowHandle,System.Boolean) implements: - OpenTK.Platform.IWindowComponent.IsAlwaysOnTop(OpenTK.Platform.WindowHandle) - uid: OpenTK.Platform.Native.X11.X11WindowComponent.SetHitTestCallback(OpenTK.Platform.WindowHandle,OpenTK.Platform.HitTest) @@ -1987,7 +2123,7 @@ items: source: id: SetHitTestCallback path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11WindowComponent.cs - startLine: 2746 + startLine: 3303 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 @@ -2014,6 +2150,11 @@ items: description: The hit test delegate. content.vb: Public Sub SetHitTestCallback(handle As WindowHandle, test As HitTest) overload: OpenTK.Platform.Native.X11.X11WindowComponent.SetHitTestCallback* + seealso: + - linkId: OpenTK.Platform.HitTest + commentId: T:OpenTK.Platform.HitTest + - linkId: OpenTK.Platform.HitType + commentId: T:OpenTK.Platform.HitType implements: - OpenTK.Platform.IWindowComponent.SetHitTestCallback(OpenTK.Platform.WindowHandle,OpenTK.Platform.HitTest) nameWithType.vb: X11WindowComponent.SetHitTestCallback(WindowHandle, HitTest) @@ -2033,7 +2174,7 @@ items: source: id: SetCursor path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11WindowComponent.cs - startLine: 2754 + startLine: 3311 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 @@ -2051,11 +2192,8 @@ items: content.vb: Public Sub SetCursor(handle As WindowHandle, cursor As CursorHandle) overload: OpenTK.Platform.Native.X11.X11WindowComponent.SetCursor* exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: handle is null. - - type: OpenTK.Platform.PalNotImplementedException - commentId: T:OpenTK.Platform.PalNotImplementedException + - type: System.PlatformNotSupportedException + commentId: T:System.PlatformNotSupportedException description: Backend does not support setting the window mouse cursor. See . seealso: - linkId: OpenTK.Platform.IWindowComponent.CanSetCursor @@ -2079,7 +2217,7 @@ items: source: id: GetCursorCaptureMode path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11WindowComponent.cs - startLine: 2763 + startLine: 3320 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 @@ -2096,6 +2234,11 @@ items: description: The current cursor capture mode. content.vb: Public Function GetCursorCaptureMode(handle As WindowHandle) As CursorCaptureMode overload: OpenTK.Platform.Native.X11.X11WindowComponent.GetCursorCaptureMode* + seealso: + - linkId: OpenTK.Platform.IWindowComponent.CanCaptureCursor + commentId: P:OpenTK.Platform.IWindowComponent.CanCaptureCursor + - linkId: OpenTK.Platform.IWindowComponent.SetCursorCaptureMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorCaptureMode) + commentId: M:OpenTK.Platform.IWindowComponent.SetCursorCaptureMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorCaptureMode) implements: - OpenTK.Platform.IWindowComponent.GetCursorCaptureMode(OpenTK.Platform.WindowHandle) - uid: OpenTK.Platform.Native.X11.X11WindowComponent.SetCursorCaptureMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorCaptureMode) @@ -2112,7 +2255,7 @@ items: source: id: SetCursorCaptureMode path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11WindowComponent.cs - startLine: 2771 + startLine: 3328 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 @@ -2135,6 +2278,8 @@ items: seealso: - linkId: OpenTK.Platform.IWindowComponent.CanCaptureCursor commentId: P:OpenTK.Platform.IWindowComponent.CanCaptureCursor + - linkId: OpenTK.Platform.IWindowComponent.SetCursorCaptureMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorCaptureMode) + commentId: M:OpenTK.Platform.IWindowComponent.SetCursorCaptureMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorCaptureMode) implements: - OpenTK.Platform.IWindowComponent.SetCursorCaptureMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorCaptureMode) - uid: OpenTK.Platform.Native.X11.X11WindowComponent.IsFocused(OpenTK.Platform.WindowHandle) @@ -2151,7 +2296,7 @@ items: source: id: IsFocused path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11WindowComponent.cs - startLine: 2819 + startLine: 3382 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 @@ -2168,6 +2313,11 @@ items: description: If the window has input focus. content.vb: Public Function IsFocused(handle As WindowHandle) As Boolean overload: OpenTK.Platform.Native.X11.X11WindowComponent.IsFocused* + seealso: + - linkId: OpenTK.Platform.IWindowComponent.FocusWindow(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.FocusWindow(OpenTK.Platform.WindowHandle) + - linkId: OpenTK.Platform.IWindowComponent.RequestAttention(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.RequestAttention(OpenTK.Platform.WindowHandle) implements: - OpenTK.Platform.IWindowComponent.IsFocused(OpenTK.Platform.WindowHandle) - uid: OpenTK.Platform.Native.X11.X11WindowComponent.FocusWindow(OpenTK.Platform.WindowHandle) @@ -2184,7 +2334,7 @@ items: source: id: FocusWindow path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11WindowComponent.cs - startLine: 2829 + startLine: 3392 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 @@ -2198,6 +2348,11 @@ items: description: Handle to the window to focus. content.vb: Public Sub FocusWindow(handle As WindowHandle) overload: OpenTK.Platform.Native.X11.X11WindowComponent.FocusWindow* + seealso: + - linkId: OpenTK.Platform.IWindowComponent.IsFocused(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.IsFocused(OpenTK.Platform.WindowHandle) + - linkId: OpenTK.Platform.IWindowComponent.RequestAttention(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.RequestAttention(OpenTK.Platform.WindowHandle) implements: - OpenTK.Platform.IWindowComponent.FocusWindow(OpenTK.Platform.WindowHandle) - uid: OpenTK.Platform.Native.X11.X11WindowComponent.RequestAttention(OpenTK.Platform.WindowHandle) @@ -2214,11 +2369,14 @@ items: source: id: RequestAttention path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11WindowComponent.cs - startLine: 2838 + startLine: 3402 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 - summary: Requests that the user pay attention to the window. + summary: >- + Requests that the user pay attention to the window. + + Usually by flashing the window icon. example: [] syntax: content: public void RequestAttention(WindowHandle handle) @@ -2228,6 +2386,9 @@ items: description: A handle to the window that requests attention. content.vb: Public Sub RequestAttention(handle As WindowHandle) overload: OpenTK.Platform.Native.X11.X11WindowComponent.RequestAttention* + seealso: + - linkId: OpenTK.Platform.IWindowComponent.FocusWindow(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.FocusWindow(OpenTK.Platform.WindowHandle) implements: - OpenTK.Platform.IWindowComponent.RequestAttention(OpenTK.Platform.WindowHandle) - uid: OpenTK.Platform.Native.X11.X11WindowComponent.DemandAttention(OpenTK.Platform.WindowHandle) @@ -2244,7 +2405,7 @@ items: source: id: DemandAttention path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11WindowComponent.cs - startLine: 2864 + startLine: 3428 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 @@ -2261,96 +2422,198 @@ items: description: Handle to a window. content.vb: Public Sub DemandAttention(handle As WindowHandle) overload: OpenTK.Platform.Native.X11.X11WindowComponent.DemandAttention* -- uid: OpenTK.Platform.Native.X11.X11WindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) - commentId: M:OpenTK.Platform.Native.X11.X11WindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) - id: ScreenToClient(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) +- uid: OpenTK.Platform.Native.X11.X11WindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + commentId: M:OpenTK.Platform.Native.X11.X11WindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + id: ScreenToClient(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) parent: OpenTK.Platform.Native.X11.X11WindowComponent langs: - csharp - vb - name: ScreenToClient(WindowHandle, int, int, out int, out int) - nameWithType: X11WindowComponent.ScreenToClient(WindowHandle, int, int, out int, out int) - fullName: OpenTK.Platform.Native.X11.X11WindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle, int, int, out int, out int) + name: ScreenToClient(WindowHandle, Vector2, out Vector2) + nameWithType: X11WindowComponent.ScreenToClient(WindowHandle, Vector2, out Vector2) + fullName: OpenTK.Platform.Native.X11.X11WindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2, out OpenTK.Mathematics.Vector2) type: Method source: id: ScreenToClient path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11WindowComponent.cs - startLine: 2899 + startLine: 3463 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: Converts screen coordinates to window relative coordinates. + remarks: >- + On platforms that support non-integer screen and client space coordinates (macOS) this function will return full precision results, + + on integer based platforms (win32 and X11) the input coordinates will (if necessary) be truncated to ints before conversion. example: [] syntax: - content: public void ScreenToClient(WindowHandle handle, int x, int y, out int clientX, out int clientY) + content: public void ScreenToClient(WindowHandle handle, Vector2 screen, out Vector2 client) parameters: - id: handle type: OpenTK.Platform.WindowHandle description: The window handle. - - id: x - type: System.Int32 - description: The screen x coordinate. - - id: y - type: System.Int32 - description: The screen y coordinate. - - id: clientX - type: System.Int32 - description: The client x coordinate. - - id: clientY - type: System.Int32 - description: The client y coordinate. - content.vb: Public Sub ScreenToClient(handle As WindowHandle, x As Integer, y As Integer, clientX As Integer, clientY As Integer) + - id: screen + type: OpenTK.Mathematics.Vector2 + description: The screen coordinate. + - id: client + type: OpenTK.Mathematics.Vector2 + description: The client coordinate. + content.vb: Public Sub ScreenToClient(handle As WindowHandle, screen As Vector2, client As Vector2) overload: OpenTK.Platform.Native.X11.X11WindowComponent.ScreenToClient* + seealso: + - linkId: OpenTK.Platform.IWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + commentId: M:OpenTK.Platform.IWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + - linkId: OpenTK.Platform.IWindowComponent.ClientToFramebuffer(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + commentId: M:OpenTK.Platform.IWindowComponent.ClientToFramebuffer(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) implements: - - OpenTK.Platform.IWindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) - nameWithType.vb: X11WindowComponent.ScreenToClient(WindowHandle, Integer, Integer, Integer, Integer) - fullName.vb: OpenTK.Platform.Native.X11.X11WindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle, Integer, Integer, Integer, Integer) - name.vb: ScreenToClient(WindowHandle, Integer, Integer, Integer, Integer) -- uid: OpenTK.Platform.Native.X11.X11WindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) - commentId: M:OpenTK.Platform.Native.X11.X11WindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) - id: ClientToScreen(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) + - OpenTK.Platform.IWindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + nameWithType.vb: X11WindowComponent.ScreenToClient(WindowHandle, Vector2, Vector2) + fullName.vb: OpenTK.Platform.Native.X11.X11WindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2, OpenTK.Mathematics.Vector2) + name.vb: ScreenToClient(WindowHandle, Vector2, Vector2) +- uid: OpenTK.Platform.Native.X11.X11WindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + commentId: M:OpenTK.Platform.Native.X11.X11WindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + id: ClientToScreen(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) parent: OpenTK.Platform.Native.X11.X11WindowComponent langs: - csharp - vb - name: ClientToScreen(WindowHandle, int, int, out int, out int) - nameWithType: X11WindowComponent.ClientToScreen(WindowHandle, int, int, out int, out int) - fullName: OpenTK.Platform.Native.X11.X11WindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle, int, int, out int, out int) + name: ClientToScreen(WindowHandle, Vector2, out Vector2) + nameWithType: X11WindowComponent.ClientToScreen(WindowHandle, Vector2, out Vector2) + fullName: OpenTK.Platform.Native.X11.X11WindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2, out OpenTK.Mathematics.Vector2) type: Method source: id: ClientToScreen path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11WindowComponent.cs - startLine: 2911 + startLine: 3480 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 summary: Converts window relative coordinates to screen coordinates. + remarks: >- + On platforms that support non-integer screen and client space coordinates (macOS) this function will return full precision results, + + on integer based platforms (win32 and X11) the input coordinates will (if necessary) be truncated to ints before conversion. example: [] syntax: - content: public void ClientToScreen(WindowHandle handle, int clientX, int clientY, out int x, out int y) + content: public void ClientToScreen(WindowHandle handle, Vector2 client, out Vector2 screen) parameters: - id: handle type: OpenTK.Platform.WindowHandle description: The window handle. - - id: clientX - type: System.Int32 - description: The client x coordinate. - - id: clientY - type: System.Int32 - description: The client y coordinate. - - id: x - type: System.Int32 - description: The screen x coordinate. - - id: y - type: System.Int32 - description: The screen y coordinate. - content.vb: Public Sub ClientToScreen(handle As WindowHandle, clientX As Integer, clientY As Integer, x As Integer, y As Integer) + - id: client + type: OpenTK.Mathematics.Vector2 + description: The client coordinate. + - id: screen + type: OpenTK.Mathematics.Vector2 + description: The screen coordinate. + content.vb: Public Sub ClientToScreen(handle As WindowHandle, client As Vector2, screen As Vector2) overload: OpenTK.Platform.Native.X11.X11WindowComponent.ClientToScreen* + seealso: + - linkId: OpenTK.Platform.IWindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + commentId: M:OpenTK.Platform.IWindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + - linkId: OpenTK.Platform.IWindowComponent.ClientToFramebuffer(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + commentId: M:OpenTK.Platform.IWindowComponent.ClientToFramebuffer(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + implements: + - OpenTK.Platform.IWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + nameWithType.vb: X11WindowComponent.ClientToScreen(WindowHandle, Vector2, Vector2) + fullName.vb: OpenTK.Platform.Native.X11.X11WindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2, OpenTK.Mathematics.Vector2) + name.vb: ClientToScreen(WindowHandle, Vector2, Vector2) +- uid: OpenTK.Platform.Native.X11.X11WindowComponent.ClientToFramebuffer(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + commentId: M:OpenTK.Platform.Native.X11.X11WindowComponent.ClientToFramebuffer(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + id: ClientToFramebuffer(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + parent: OpenTK.Platform.Native.X11.X11WindowComponent + langs: + - csharp + - vb + name: ClientToFramebuffer(WindowHandle, Vector2, out Vector2) + nameWithType: X11WindowComponent.ClientToFramebuffer(WindowHandle, Vector2, out Vector2) + fullName: OpenTK.Platform.Native.X11.X11WindowComponent.ClientToFramebuffer(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2, out OpenTK.Mathematics.Vector2) + type: Method + source: + id: ClientToFramebuffer + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11WindowComponent.cs + startLine: 3497 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform.Native.X11 + summary: Converts window relative coordinates to framebuffer coordinates. + remarks: >- + On platforms that support non-integer screen and client space coordinates (macOS) this function will return full precision results, + + on integer based platforms (win32 and X11) the input coordinates will (if necessary) be truncated to ints before conversion. + example: [] + syntax: + content: public void ClientToFramebuffer(WindowHandle handle, Vector2 client, out Vector2 framebuffer) + parameters: + - id: handle + type: OpenTK.Platform.WindowHandle + description: Handle of the window whose coordinate system to use. + - id: client + type: OpenTK.Mathematics.Vector2 + description: The client coordinate. + - id: framebuffer + type: OpenTK.Mathematics.Vector2 + description: The framebuffer coordinate. + content.vb: Public Sub ClientToFramebuffer(handle As WindowHandle, client As Vector2, framebuffer As Vector2) + overload: OpenTK.Platform.Native.X11.X11WindowComponent.ClientToFramebuffer* + seealso: + - linkId: OpenTK.Platform.IWindowComponent.FramebufferToClient(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + commentId: M:OpenTK.Platform.IWindowComponent.FramebufferToClient(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + - linkId: OpenTK.Platform.IWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + commentId: M:OpenTK.Platform.IWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + implements: + - OpenTK.Platform.IWindowComponent.ClientToFramebuffer(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + nameWithType.vb: X11WindowComponent.ClientToFramebuffer(WindowHandle, Vector2, Vector2) + fullName.vb: OpenTK.Platform.Native.X11.X11WindowComponent.ClientToFramebuffer(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2, OpenTK.Mathematics.Vector2) + name.vb: ClientToFramebuffer(WindowHandle, Vector2, Vector2) +- uid: OpenTK.Platform.Native.X11.X11WindowComponent.FramebufferToClient(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + commentId: M:OpenTK.Platform.Native.X11.X11WindowComponent.FramebufferToClient(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + id: FramebufferToClient(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + parent: OpenTK.Platform.Native.X11.X11WindowComponent + langs: + - csharp + - vb + name: FramebufferToClient(WindowHandle, Vector2, out Vector2) + nameWithType: X11WindowComponent.FramebufferToClient(WindowHandle, Vector2, out Vector2) + fullName: OpenTK.Platform.Native.X11.X11WindowComponent.FramebufferToClient(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2, out OpenTK.Mathematics.Vector2) + type: Method + source: + id: FramebufferToClient + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11WindowComponent.cs + startLine: 3505 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform.Native.X11 + summary: Converts framebuffer coordinates to framebuffer coordinates. + remarks: >- + On platforms that support non-integer screen and client space coordinates (macOS) this function will return full precision results, + + on integer based platforms (win32 and X11) the input coordinates will (if necessary) be truncated to ints before conversion. + example: [] + syntax: + content: public void FramebufferToClient(WindowHandle handle, Vector2 framebuffer, out Vector2 client) + parameters: + - id: handle + type: OpenTK.Platform.WindowHandle + description: Handle of the window whose coordinate system to use. + - id: framebuffer + type: OpenTK.Mathematics.Vector2 + description: The framebuffer coordinate. + - id: client + type: OpenTK.Mathematics.Vector2 + description: The client coordinate. + content.vb: Public Sub FramebufferToClient(handle As WindowHandle, framebuffer As Vector2, client As Vector2) + overload: OpenTK.Platform.Native.X11.X11WindowComponent.FramebufferToClient* + seealso: + - linkId: OpenTK.Platform.IWindowComponent.ClientToFramebuffer(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + commentId: M:OpenTK.Platform.IWindowComponent.ClientToFramebuffer(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + - linkId: OpenTK.Platform.IWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + commentId: M:OpenTK.Platform.IWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) implements: - - OpenTK.Platform.IWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) - nameWithType.vb: X11WindowComponent.ClientToScreen(WindowHandle, Integer, Integer, Integer, Integer) - fullName.vb: OpenTK.Platform.Native.X11.X11WindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle, Integer, Integer, Integer, Integer) - name.vb: ClientToScreen(WindowHandle, Integer, Integer, Integer, Integer) + - OpenTK.Platform.IWindowComponent.FramebufferToClient(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + nameWithType.vb: X11WindowComponent.FramebufferToClient(WindowHandle, Vector2, Vector2) + fullName.vb: OpenTK.Platform.Native.X11.X11WindowComponent.FramebufferToClient(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2, OpenTK.Mathematics.Vector2) + name.vb: FramebufferToClient(WindowHandle, Vector2, Vector2) - uid: OpenTK.Platform.Native.X11.X11WindowComponent.GetScaleFactor(OpenTK.Platform.WindowHandle,System.Single@,System.Single@) commentId: M:OpenTK.Platform.Native.X11.X11WindowComponent.GetScaleFactor(OpenTK.Platform.WindowHandle,System.Single@,System.Single@) id: GetScaleFactor(OpenTK.Platform.WindowHandle,System.Single@,System.Single@) @@ -2365,7 +2628,7 @@ items: source: id: GetScaleFactor path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11WindowComponent.cs - startLine: 2923 + startLine: 3515 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 @@ -2407,7 +2670,7 @@ items: source: id: GetX11Display path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11WindowComponent.cs - startLine: 2934 + startLine: 3530 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 @@ -2434,7 +2697,7 @@ items: source: id: GetX11Window path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\X11\X11WindowComponent.cs - startLine: 2944 + startLine: 3540 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.X11 @@ -2807,6 +3070,19 @@ references: name: PalComponents nameWithType: PalComponents fullName: OpenTK.Platform.PalComponents +- uid: OpenTK.Core.Utility.ILogger + commentId: T:OpenTK.Core.Utility.ILogger + parent: OpenTK.Core.Utility + href: OpenTK.Core.Utility.ILogger.html + name: ILogger + nameWithType: ILogger + fullName: OpenTK.Core.Utility.ILogger +- uid: OpenTK.Platform.ToolkitOptions.Logger + commentId: P:OpenTK.Platform.ToolkitOptions.Logger + href: OpenTK.Platform.ToolkitOptions.html#OpenTK_Platform_ToolkitOptions_Logger + name: Logger + nameWithType: ToolkitOptions.Logger + fullName: OpenTK.Platform.ToolkitOptions.Logger - uid: OpenTK.Platform.Native.X11.X11WindowComponent.Logger* commentId: Overload:OpenTK.Platform.Native.X11.X11WindowComponent.Logger href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_Logger @@ -2820,13 +3096,6 @@ references: name: Logger nameWithType: IPalComponent.Logger fullName: OpenTK.Platform.IPalComponent.Logger -- uid: OpenTK.Core.Utility.ILogger - commentId: T:OpenTK.Core.Utility.ILogger - parent: OpenTK.Core.Utility - href: OpenTK.Core.Utility.ILogger.html - name: ILogger - nameWithType: ILogger - fullName: OpenTK.Core.Utility.ILogger - uid: OpenTK.Core.Utility commentId: N:OpenTK.Core.Utility href: OpenTK.html @@ -2857,15 +3126,46 @@ references: - uid: OpenTK.Core.Utility name: Utility href: OpenTK.Core.Utility.html -- uid: OpenTK.Platform.Native.X11.X11WindowComponent.Initialize* - commentId: Overload:OpenTK.Platform.Native.X11.X11WindowComponent.Initialize - href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_Initialize_OpenTK_Platform_ToolkitOptions_ - name: Initialize - nameWithType: X11WindowComponent.Initialize - fullName: OpenTK.Platform.Native.X11.X11WindowComponent.Initialize -- uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) - commentId: M:OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) - parent: OpenTK.Platform.IPalComponent +- uid: OpenTK.Platform.ToolkitOptions + commentId: T:OpenTK.Platform.ToolkitOptions + parent: OpenTK.Platform + href: OpenTK.Platform.ToolkitOptions.html + name: ToolkitOptions + nameWithType: ToolkitOptions + fullName: OpenTK.Platform.ToolkitOptions +- uid: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Init_OpenTK_Platform_ToolkitOptions_ + name: Init(ToolkitOptions) + nameWithType: Toolkit.Init(ToolkitOptions) + fullName: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + spec.csharp: + - uid: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + name: Init + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Init_OpenTK_Platform_ToolkitOptions_ + - name: ( + - uid: OpenTK.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Platform.ToolkitOptions.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + name: Init + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Init_OpenTK_Platform_ToolkitOptions_ + - name: ( + - uid: OpenTK.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Platform.ToolkitOptions.html + - name: ) +- uid: OpenTK.Platform.Native.X11.X11WindowComponent.Initialize* + commentId: Overload:OpenTK.Platform.Native.X11.X11WindowComponent.Initialize + href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_Initialize_OpenTK_Platform_ToolkitOptions_ + name: Initialize + nameWithType: X11WindowComponent.Initialize + fullName: OpenTK.Platform.Native.X11.X11WindowComponent.Initialize +- uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + parent: OpenTK.Platform.IPalComponent href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ name: Initialize(ToolkitOptions) nameWithType: IPalComponent.Initialize(ToolkitOptions) @@ -2888,13 +3188,49 @@ references: name: ToolkitOptions href: OpenTK.Platform.ToolkitOptions.html - name: ) -- uid: OpenTK.Platform.ToolkitOptions - commentId: T:OpenTK.Platform.ToolkitOptions - parent: OpenTK.Platform - href: OpenTK.Platform.ToolkitOptions.html - name: ToolkitOptions - nameWithType: ToolkitOptions - fullName: OpenTK.Platform.ToolkitOptions +- uid: OpenTK.Platform.Toolkit.Uninit + commentId: M:OpenTK.Platform.Toolkit.Uninit + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Uninit + name: Uninit() + nameWithType: Toolkit.Uninit() + fullName: OpenTK.Platform.Toolkit.Uninit() + spec.csharp: + - uid: OpenTK.Platform.Toolkit.Uninit + name: Uninit + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Uninit + - name: ( + - name: ) + spec.vb: + - uid: OpenTK.Platform.Toolkit.Uninit + name: Uninit + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Uninit + - name: ( + - name: ) +- uid: OpenTK.Platform.Native.X11.X11WindowComponent.Uninitialize* + commentId: Overload:OpenTK.Platform.Native.X11.X11WindowComponent.Uninitialize + href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_Uninitialize + name: Uninitialize + nameWithType: X11WindowComponent.Uninitialize + fullName: OpenTK.Platform.Native.X11.X11WindowComponent.Uninitialize +- uid: OpenTK.Platform.IPalComponent.Uninitialize + commentId: M:OpenTK.Platform.IPalComponent.Uninitialize + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + name: Uninitialize() + nameWithType: IPalComponent.Uninitialize() + fullName: OpenTK.Platform.IPalComponent.Uninitialize() + spec.csharp: + - uid: OpenTK.Platform.IPalComponent.Uninitialize + name: Uninitialize + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + - name: ( + - name: ) + spec.vb: + - uid: OpenTK.Platform.IPalComponent.Uninitialize + name: Uninitialize + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + - name: ( + - name: ) - uid: OpenTK.Platform.IWindowComponent.SetIcon(OpenTK.Platform.WindowHandle,OpenTK.Platform.IconHandle) commentId: M:OpenTK.Platform.IWindowComponent.SetIcon(OpenTK.Platform.WindowHandle,OpenTK.Platform.IconHandle) parent: OpenTK.Platform.IWindowComponent @@ -2930,6 +3266,31 @@ references: name: IconHandle href: OpenTK.Platform.IconHandle.html - name: ) +- uid: OpenTK.Platform.IWindowComponent.GetIcon(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.GetIcon(OpenTK.Platform.WindowHandle) + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetIcon_OpenTK_Platform_WindowHandle_ + name: GetIcon(WindowHandle) + nameWithType: IWindowComponent.GetIcon(WindowHandle) + fullName: OpenTK.Platform.IWindowComponent.GetIcon(OpenTK.Platform.WindowHandle) + spec.csharp: + - uid: OpenTK.Platform.IWindowComponent.GetIcon(OpenTK.Platform.WindowHandle) + name: GetIcon + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetIcon_OpenTK_Platform_WindowHandle_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IWindowComponent.GetIcon(OpenTK.Platform.WindowHandle) + name: GetIcon + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetIcon_OpenTK_Platform_WindowHandle_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ) - uid: OpenTK.Platform.Native.X11.X11WindowComponent.CanSetIcon* commentId: Overload:OpenTK.Platform.Native.X11.X11WindowComponent.CanSetIcon href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_CanSetIcon @@ -3347,6 +3708,31 @@ references: isExternal: true href: https://learn.microsoft.com/dotnet/api/system.boolean - name: ) +- uid: OpenTK.Platform.IWindowComponent.Destroy(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.Destroy(OpenTK.Platform.WindowHandle) + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_Destroy_OpenTK_Platform_WindowHandle_ + name: Destroy(WindowHandle) + nameWithType: IWindowComponent.Destroy(WindowHandle) + fullName: OpenTK.Platform.IWindowComponent.Destroy(OpenTK.Platform.WindowHandle) + spec.csharp: + - uid: OpenTK.Platform.IWindowComponent.Destroy(OpenTK.Platform.WindowHandle) + name: Destroy + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_Destroy_OpenTK_Platform_WindowHandle_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IWindowComponent.Destroy(OpenTK.Platform.WindowHandle) + name: Destroy + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_Destroy_OpenTK_Platform_WindowHandle_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ) - uid: OpenTK.Platform.Native.X11.X11WindowComponent.Create* commentId: Overload:OpenTK.Platform.Native.X11.X11WindowComponent.Create href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_Create_OpenTK_Platform_GraphicsApiHints_ @@ -3417,50 +3803,59 @@ references: name: WindowHandle href: OpenTK.Platform.WindowHandle.html - name: ) -- uid: System.ArgumentNullException - commentId: T:System.ArgumentNullException - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.argumentnullexception - name: ArgumentNullException - nameWithType: ArgumentNullException - fullName: System.ArgumentNullException - uid: OpenTK.Platform.Native.X11.X11WindowComponent.Destroy* commentId: Overload:OpenTK.Platform.Native.X11.X11WindowComponent.Destroy href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_Destroy_OpenTK_Platform_WindowHandle_ name: Destroy nameWithType: X11WindowComponent.Destroy fullName: OpenTK.Platform.Native.X11.X11WindowComponent.Destroy -- uid: OpenTK.Platform.IWindowComponent.Destroy(OpenTK.Platform.WindowHandle) - commentId: M:OpenTK.Platform.IWindowComponent.Destroy(OpenTK.Platform.WindowHandle) +- uid: OpenTK.Platform.Native.X11.X11WindowComponent.IsWindowDestroyed* + commentId: Overload:OpenTK.Platform.Native.X11.X11WindowComponent.IsWindowDestroyed + href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_IsWindowDestroyed_OpenTK_Platform_WindowHandle_ + name: IsWindowDestroyed + nameWithType: X11WindowComponent.IsWindowDestroyed + fullName: OpenTK.Platform.Native.X11.X11WindowComponent.IsWindowDestroyed +- uid: OpenTK.Platform.IWindowComponent.SetTitle(OpenTK.Platform.WindowHandle,System.String) + commentId: M:OpenTK.Platform.IWindowComponent.SetTitle(OpenTK.Platform.WindowHandle,System.String) parent: OpenTK.Platform.IWindowComponent - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_Destroy_OpenTK_Platform_WindowHandle_ - name: Destroy(WindowHandle) - nameWithType: IWindowComponent.Destroy(WindowHandle) - fullName: OpenTK.Platform.IWindowComponent.Destroy(OpenTK.Platform.WindowHandle) + isExternal: true + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetTitle_OpenTK_Platform_WindowHandle_System_String_ + name: SetTitle(WindowHandle, string) + nameWithType: IWindowComponent.SetTitle(WindowHandle, string) + fullName: OpenTK.Platform.IWindowComponent.SetTitle(OpenTK.Platform.WindowHandle, string) + nameWithType.vb: IWindowComponent.SetTitle(WindowHandle, String) + fullName.vb: OpenTK.Platform.IWindowComponent.SetTitle(OpenTK.Platform.WindowHandle, String) + name.vb: SetTitle(WindowHandle, String) spec.csharp: - - uid: OpenTK.Platform.IWindowComponent.Destroy(OpenTK.Platform.WindowHandle) - name: Destroy - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_Destroy_OpenTK_Platform_WindowHandle_ + - uid: OpenTK.Platform.IWindowComponent.SetTitle(OpenTK.Platform.WindowHandle,System.String) + name: SetTitle + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetTitle_OpenTK_Platform_WindowHandle_System_String_ - name: ( - uid: OpenTK.Platform.WindowHandle name: WindowHandle href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: System.String + name: string + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string - name: ) spec.vb: - - uid: OpenTK.Platform.IWindowComponent.Destroy(OpenTK.Platform.WindowHandle) - name: Destroy - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_Destroy_OpenTK_Platform_WindowHandle_ + - uid: OpenTK.Platform.IWindowComponent.SetTitle(OpenTK.Platform.WindowHandle,System.String) + name: SetTitle + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetTitle_OpenTK_Platform_WindowHandle_System_String_ - name: ( - uid: OpenTK.Platform.WindowHandle name: WindowHandle href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: System.String + name: String + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string - name: ) -- uid: OpenTK.Platform.Native.X11.X11WindowComponent.IsWindowDestroyed* - commentId: Overload:OpenTK.Platform.Native.X11.X11WindowComponent.IsWindowDestroyed - href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_IsWindowDestroyed_OpenTK_Platform_WindowHandle_ - name: IsWindowDestroyed - nameWithType: X11WindowComponent.IsWindowDestroyed - fullName: OpenTK.Platform.Native.X11.X11WindowComponent.IsWindowDestroyed - uid: OpenTK.Platform.Native.X11.X11WindowComponent.GetTitle* commentId: Overload:OpenTK.Platform.Native.X11.X11WindowComponent.GetTitle href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_GetTitle_OpenTK_Platform_WindowHandle_ @@ -3498,47 +3893,6 @@ references: name: SetTitle nameWithType: X11WindowComponent.SetTitle fullName: OpenTK.Platform.Native.X11.X11WindowComponent.SetTitle -- uid: OpenTK.Platform.IWindowComponent.SetTitle(OpenTK.Platform.WindowHandle,System.String) - commentId: M:OpenTK.Platform.IWindowComponent.SetTitle(OpenTK.Platform.WindowHandle,System.String) - parent: OpenTK.Platform.IWindowComponent - isExternal: true - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetTitle_OpenTK_Platform_WindowHandle_System_String_ - name: SetTitle(WindowHandle, string) - nameWithType: IWindowComponent.SetTitle(WindowHandle, string) - fullName: OpenTK.Platform.IWindowComponent.SetTitle(OpenTK.Platform.WindowHandle, string) - nameWithType.vb: IWindowComponent.SetTitle(WindowHandle, String) - fullName.vb: OpenTK.Platform.IWindowComponent.SetTitle(OpenTK.Platform.WindowHandle, String) - name.vb: SetTitle(WindowHandle, String) - spec.csharp: - - uid: OpenTK.Platform.IWindowComponent.SetTitle(OpenTK.Platform.WindowHandle,System.String) - name: SetTitle - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetTitle_OpenTK_Platform_WindowHandle_System_String_ - - name: ( - - uid: OpenTK.Platform.WindowHandle - name: WindowHandle - href: OpenTK.Platform.WindowHandle.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: OpenTK.Platform.IWindowComponent.SetTitle(OpenTK.Platform.WindowHandle,System.String) - name: SetTitle - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetTitle_OpenTK_Platform_WindowHandle_System_String_ - - name: ( - - uid: OpenTK.Platform.WindowHandle - name: WindowHandle - href: OpenTK.Platform.WindowHandle.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - uid: OpenTK.Platform.Native.X11.X11WindowComponent.GetIconifiedTitle* commentId: Overload:OpenTK.Platform.Native.X11.X11WindowComponent.GetIconifiedTitle href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_GetIconifiedTitle_OpenTK_Platform_WindowHandle_ @@ -3551,43 +3905,19 @@ references: name: SetIconifiedTitle nameWithType: X11WindowComponent.SetIconifiedTitle fullName: OpenTK.Platform.Native.X11.X11WindowComponent.SetIconifiedTitle -- uid: OpenTK.Platform.PalNotImplementedException - commentId: T:OpenTK.Platform.PalNotImplementedException - href: OpenTK.Platform.PalNotImplementedException.html - name: PalNotImplementedException - nameWithType: PalNotImplementedException - fullName: OpenTK.Platform.PalNotImplementedException +- uid: System.PlatformNotSupportedException + commentId: T:System.PlatformNotSupportedException + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.platformnotsupportedexception + name: PlatformNotSupportedException + nameWithType: PlatformNotSupportedException + fullName: System.PlatformNotSupportedException - uid: OpenTK.Platform.Native.X11.X11WindowComponent.GetIcon* commentId: Overload:OpenTK.Platform.Native.X11.X11WindowComponent.GetIcon href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_GetIcon_OpenTK_Platform_WindowHandle_ name: GetIcon nameWithType: X11WindowComponent.GetIcon fullName: OpenTK.Platform.Native.X11.X11WindowComponent.GetIcon -- uid: OpenTK.Platform.IWindowComponent.GetIcon(OpenTK.Platform.WindowHandle) - commentId: M:OpenTK.Platform.IWindowComponent.GetIcon(OpenTK.Platform.WindowHandle) - parent: OpenTK.Platform.IWindowComponent - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetIcon_OpenTK_Platform_WindowHandle_ - name: GetIcon(WindowHandle) - nameWithType: IWindowComponent.GetIcon(WindowHandle) - fullName: OpenTK.Platform.IWindowComponent.GetIcon(OpenTK.Platform.WindowHandle) - spec.csharp: - - uid: OpenTK.Platform.IWindowComponent.GetIcon(OpenTK.Platform.WindowHandle) - name: GetIcon - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetIcon_OpenTK_Platform_WindowHandle_ - - name: ( - - uid: OpenTK.Platform.WindowHandle - name: WindowHandle - href: OpenTK.Platform.WindowHandle.html - - name: ) - spec.vb: - - uid: OpenTK.Platform.IWindowComponent.GetIcon(OpenTK.Platform.WindowHandle) - name: GetIcon - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetIcon_OpenTK_Platform_WindowHandle_ - - name: ( - - uid: OpenTK.Platform.WindowHandle - name: WindowHandle - href: OpenTK.Platform.WindowHandle.html - - name: ) - uid: OpenTK.Platform.IconHandle commentId: T:OpenTK.Platform.IconHandle parent: OpenTK.Platform @@ -3601,27 +3931,61 @@ references: name: SetIcon nameWithType: X11WindowComponent.SetIcon fullName: OpenTK.Platform.Native.X11.X11WindowComponent.SetIcon +- uid: OpenTK.Platform.IWindowComponent.SetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) + commentId: M:OpenTK.Platform.IWindowComponent.SetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetPosition_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2i_ + name: SetPosition(WindowHandle, Vector2i) + nameWithType: IWindowComponent.SetPosition(WindowHandle, Vector2i) + fullName: OpenTK.Platform.IWindowComponent.SetPosition(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2i) + spec.csharp: + - uid: OpenTK.Platform.IWindowComponent.SetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) + name: SetPosition + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetPosition_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2i_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: OpenTK.Mathematics.Vector2i + name: Vector2i + href: OpenTK.Mathematics.Vector2i.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IWindowComponent.SetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) + name: SetPosition + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetPosition_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2i_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: OpenTK.Mathematics.Vector2i + name: Vector2i + href: OpenTK.Mathematics.Vector2i.html + - name: ) - uid: OpenTK.Platform.Native.X11.X11WindowComponent.GetPosition* commentId: Overload:OpenTK.Platform.Native.X11.X11WindowComponent.GetPosition - href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_GetPosition_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_GetPosition_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2i__ name: GetPosition nameWithType: X11WindowComponent.GetPosition fullName: OpenTK.Platform.Native.X11.X11WindowComponent.GetPosition -- uid: OpenTK.Platform.IWindowComponent.GetPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) - commentId: M:OpenTK.Platform.IWindowComponent.GetPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) +- uid: OpenTK.Platform.IWindowComponent.GetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) + commentId: M:OpenTK.Platform.IWindowComponent.GetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) parent: OpenTK.Platform.IWindowComponent - isExternal: true - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetPosition_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ - name: GetPosition(WindowHandle, out int, out int) - nameWithType: IWindowComponent.GetPosition(WindowHandle, out int, out int) - fullName: OpenTK.Platform.IWindowComponent.GetPosition(OpenTK.Platform.WindowHandle, out int, out int) - nameWithType.vb: IWindowComponent.GetPosition(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Platform.IWindowComponent.GetPosition(OpenTK.Platform.WindowHandle, Integer, Integer) - name.vb: GetPosition(WindowHandle, Integer, Integer) + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetPosition_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2i__ + name: GetPosition(WindowHandle, out Vector2i) + nameWithType: IWindowComponent.GetPosition(WindowHandle, out Vector2i) + fullName: OpenTK.Platform.IWindowComponent.GetPosition(OpenTK.Platform.WindowHandle, out OpenTK.Mathematics.Vector2i) + nameWithType.vb: IWindowComponent.GetPosition(WindowHandle, Vector2i) + fullName.vb: OpenTK.Platform.IWindowComponent.GetPosition(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2i) + name.vb: GetPosition(WindowHandle, Vector2i) spec.csharp: - - uid: OpenTK.Platform.IWindowComponent.GetPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + - uid: OpenTK.Platform.IWindowComponent.GetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) name: GetPosition - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetPosition_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetPosition_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2i__ - name: ( - uid: OpenTK.Platform.WindowHandle name: WindowHandle @@ -3630,131 +3994,79 @@ references: - name: " " - name: out - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - name: out - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 + - uid: OpenTK.Mathematics.Vector2i + name: Vector2i + href: OpenTK.Mathematics.Vector2i.html - name: ) spec.vb: - - uid: OpenTK.Platform.IWindowComponent.GetPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + - uid: OpenTK.Platform.IWindowComponent.GetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) name: GetPosition - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetPosition_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetPosition_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2i__ - name: ( - uid: OpenTK.Platform.WindowHandle name: WindowHandle href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 + - uid: OpenTK.Mathematics.Vector2i + name: Vector2i + href: OpenTK.Mathematics.Vector2i.html - name: ) -- uid: System.Int32 - commentId: T:System.Int32 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - name: int - nameWithType: int - fullName: int - nameWithType.vb: Integer - fullName.vb: Integer - name.vb: Integer +- uid: OpenTK.Mathematics.Vector2i + commentId: T:OpenTK.Mathematics.Vector2i + parent: OpenTK.Mathematics + href: OpenTK.Mathematics.Vector2i.html + name: Vector2i + nameWithType: Vector2i + fullName: OpenTK.Mathematics.Vector2i +- uid: OpenTK.Mathematics + commentId: N:OpenTK.Mathematics + href: OpenTK.html + name: OpenTK.Mathematics + nameWithType: OpenTK.Mathematics + fullName: OpenTK.Mathematics + spec.csharp: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Mathematics + name: Mathematics + href: OpenTK.Mathematics.html + spec.vb: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Mathematics + name: Mathematics + href: OpenTK.Mathematics.html - uid: OpenTK.Platform.Native.X11.X11WindowComponent.SetPosition* commentId: Overload:OpenTK.Platform.Native.X11.X11WindowComponent.SetPosition - href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_SetPosition_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_ + href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_SetPosition_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2i_ name: SetPosition nameWithType: X11WindowComponent.SetPosition fullName: OpenTK.Platform.Native.X11.X11WindowComponent.SetPosition -- uid: OpenTK.Platform.IWindowComponent.SetPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) - commentId: M:OpenTK.Platform.IWindowComponent.SetPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) - parent: OpenTK.Platform.IWindowComponent - isExternal: true - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetPosition_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_ - name: SetPosition(WindowHandle, int, int) - nameWithType: IWindowComponent.SetPosition(WindowHandle, int, int) - fullName: OpenTK.Platform.IWindowComponent.SetPosition(OpenTK.Platform.WindowHandle, int, int) - nameWithType.vb: IWindowComponent.SetPosition(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Platform.IWindowComponent.SetPosition(OpenTK.Platform.WindowHandle, Integer, Integer) - name.vb: SetPosition(WindowHandle, Integer, Integer) - spec.csharp: - - uid: OpenTK.Platform.IWindowComponent.SetPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) - name: SetPosition - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetPosition_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_ - - name: ( - - uid: OpenTK.Platform.WindowHandle - name: WindowHandle - href: OpenTK.Platform.WindowHandle.html - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) - spec.vb: - - uid: OpenTK.Platform.IWindowComponent.SetPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) - name: SetPosition - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetPosition_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_ - - name: ( - - uid: OpenTK.Platform.WindowHandle - name: WindowHandle - href: OpenTK.Platform.WindowHandle.html - - name: ',' - - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) - uid: OpenTK.Platform.Native.X11.X11WindowComponent.GetSize* commentId: Overload:OpenTK.Platform.Native.X11.X11WindowComponent.GetSize - href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_GetSize_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_GetSize_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2i__ name: GetSize nameWithType: X11WindowComponent.GetSize fullName: OpenTK.Platform.Native.X11.X11WindowComponent.GetSize -- uid: OpenTK.Platform.IWindowComponent.GetSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) - commentId: M:OpenTK.Platform.IWindowComponent.GetSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) +- uid: OpenTK.Platform.IWindowComponent.GetSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) + commentId: M:OpenTK.Platform.IWindowComponent.GetSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) parent: OpenTK.Platform.IWindowComponent - isExternal: true - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetSize_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ - name: GetSize(WindowHandle, out int, out int) - nameWithType: IWindowComponent.GetSize(WindowHandle, out int, out int) - fullName: OpenTK.Platform.IWindowComponent.GetSize(OpenTK.Platform.WindowHandle, out int, out int) - nameWithType.vb: IWindowComponent.GetSize(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Platform.IWindowComponent.GetSize(OpenTK.Platform.WindowHandle, Integer, Integer) - name.vb: GetSize(WindowHandle, Integer, Integer) + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetSize_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2i__ + name: GetSize(WindowHandle, out Vector2i) + nameWithType: IWindowComponent.GetSize(WindowHandle, out Vector2i) + fullName: OpenTK.Platform.IWindowComponent.GetSize(OpenTK.Platform.WindowHandle, out OpenTK.Mathematics.Vector2i) + nameWithType.vb: IWindowComponent.GetSize(WindowHandle, Vector2i) + fullName.vb: OpenTK.Platform.IWindowComponent.GetSize(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2i) + name.vb: GetSize(WindowHandle, Vector2i) spec.csharp: - - uid: OpenTK.Platform.IWindowComponent.GetSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + - uid: OpenTK.Platform.IWindowComponent.GetSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) name: GetSize - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetSize_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetSize_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2i__ - name: ( - uid: OpenTK.Platform.WindowHandle name: WindowHandle @@ -3763,98 +4075,64 @@ references: - name: " " - name: out - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - name: out - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 + - uid: OpenTK.Mathematics.Vector2i + name: Vector2i + href: OpenTK.Mathematics.Vector2i.html - name: ) spec.vb: - - uid: OpenTK.Platform.IWindowComponent.GetSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + - uid: OpenTK.Platform.IWindowComponent.GetSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) name: GetSize - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetSize_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetSize_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2i__ - name: ( - uid: OpenTK.Platform.WindowHandle name: WindowHandle href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 + - uid: OpenTK.Mathematics.Vector2i + name: Vector2i + href: OpenTK.Mathematics.Vector2i.html - name: ) - uid: OpenTK.Platform.Native.X11.X11WindowComponent.SetSize* commentId: Overload:OpenTK.Platform.Native.X11.X11WindowComponent.SetSize - href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_SetSize_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_ + href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_SetSize_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2i_ name: SetSize nameWithType: X11WindowComponent.SetSize fullName: OpenTK.Platform.Native.X11.X11WindowComponent.SetSize -- uid: OpenTK.Platform.IWindowComponent.SetSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) - commentId: M:OpenTK.Platform.IWindowComponent.SetSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) +- uid: OpenTK.Platform.IWindowComponent.SetSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) + commentId: M:OpenTK.Platform.IWindowComponent.SetSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) parent: OpenTK.Platform.IWindowComponent - isExternal: true - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetSize_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_ - name: SetSize(WindowHandle, int, int) - nameWithType: IWindowComponent.SetSize(WindowHandle, int, int) - fullName: OpenTK.Platform.IWindowComponent.SetSize(OpenTK.Platform.WindowHandle, int, int) - nameWithType.vb: IWindowComponent.SetSize(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Platform.IWindowComponent.SetSize(OpenTK.Platform.WindowHandle, Integer, Integer) - name.vb: SetSize(WindowHandle, Integer, Integer) + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetSize_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2i_ + name: SetSize(WindowHandle, Vector2i) + nameWithType: IWindowComponent.SetSize(WindowHandle, Vector2i) + fullName: OpenTK.Platform.IWindowComponent.SetSize(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2i) spec.csharp: - - uid: OpenTK.Platform.IWindowComponent.SetSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) + - uid: OpenTK.Platform.IWindowComponent.SetSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) name: SetSize - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetSize_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetSize_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2i_ - name: ( - uid: OpenTK.Platform.WindowHandle name: WindowHandle href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 + - uid: OpenTK.Mathematics.Vector2i + name: Vector2i + href: OpenTK.Mathematics.Vector2i.html - name: ) spec.vb: - - uid: OpenTK.Platform.IWindowComponent.SetSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) + - uid: OpenTK.Platform.IWindowComponent.SetSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) name: SetSize - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetSize_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetSize_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2i_ - name: ( - uid: OpenTK.Platform.WindowHandle name: WindowHandle href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 + - uid: OpenTK.Mathematics.Vector2i + name: Vector2i + href: OpenTK.Mathematics.Vector2i.html - name: ) - uid: OpenTK.Platform.Native.X11.X11WindowComponent.GetBounds* commentId: Overload:OpenTK.Platform.Native.X11.X11WindowComponent.GetBounds @@ -3947,6 +4225,17 @@ references: isExternal: true href: https://learn.microsoft.com/dotnet/api/system.int32 - name: ) +- uid: System.Int32 + commentId: T:System.Int32 + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + name: int + nameWithType: int + fullName: int + nameWithType.vb: Integer + fullName.vb: Integer + name.vb: Integer - uid: OpenTK.Platform.Native.X11.X11WindowComponent.SetBounds* commentId: Overload:OpenTK.Platform.Native.X11.X11WindowComponent.SetBounds href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_SetBounds_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_System_Int32_System_Int32_ @@ -4032,25 +4321,24 @@ references: - name: ) - uid: OpenTK.Platform.Native.X11.X11WindowComponent.GetClientPosition* commentId: Overload:OpenTK.Platform.Native.X11.X11WindowComponent.GetClientPosition - href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_GetClientPosition_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_GetClientPosition_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2i__ name: GetClientPosition nameWithType: X11WindowComponent.GetClientPosition fullName: OpenTK.Platform.Native.X11.X11WindowComponent.GetClientPosition -- uid: OpenTK.Platform.IWindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) - commentId: M:OpenTK.Platform.IWindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) +- uid: OpenTK.Platform.IWindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) + commentId: M:OpenTK.Platform.IWindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) parent: OpenTK.Platform.IWindowComponent - isExternal: true - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetClientPosition_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ - name: GetClientPosition(WindowHandle, out int, out int) - nameWithType: IWindowComponent.GetClientPosition(WindowHandle, out int, out int) - fullName: OpenTK.Platform.IWindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle, out int, out int) - nameWithType.vb: IWindowComponent.GetClientPosition(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Platform.IWindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle, Integer, Integer) - name.vb: GetClientPosition(WindowHandle, Integer, Integer) + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetClientPosition_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2i__ + name: GetClientPosition(WindowHandle, out Vector2i) + nameWithType: IWindowComponent.GetClientPosition(WindowHandle, out Vector2i) + fullName: OpenTK.Platform.IWindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle, out OpenTK.Mathematics.Vector2i) + nameWithType.vb: IWindowComponent.GetClientPosition(WindowHandle, Vector2i) + fullName.vb: OpenTK.Platform.IWindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2i) + name.vb: GetClientPosition(WindowHandle, Vector2i) spec.csharp: - - uid: OpenTK.Platform.IWindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + - uid: OpenTK.Platform.IWindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) name: GetClientPosition - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetClientPosition_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetClientPosition_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2i__ - name: ( - uid: OpenTK.Platform.WindowHandle name: WindowHandle @@ -4059,120 +4347,85 @@ references: - name: " " - name: out - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - name: out - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 + - uid: OpenTK.Mathematics.Vector2i + name: Vector2i + href: OpenTK.Mathematics.Vector2i.html - name: ) spec.vb: - - uid: OpenTK.Platform.IWindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + - uid: OpenTK.Platform.IWindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) name: GetClientPosition - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetClientPosition_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetClientPosition_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2i__ - name: ( - uid: OpenTK.Platform.WindowHandle name: WindowHandle href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 + - uid: OpenTK.Mathematics.Vector2i + name: Vector2i + href: OpenTK.Mathematics.Vector2i.html - name: ) - uid: OpenTK.Platform.Native.X11.X11WindowComponent.SetClientPosition* commentId: Overload:OpenTK.Platform.Native.X11.X11WindowComponent.SetClientPosition - href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_SetClientPosition_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_ + href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_SetClientPosition_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2i_ name: SetClientPosition nameWithType: X11WindowComponent.SetClientPosition fullName: OpenTK.Platform.Native.X11.X11WindowComponent.SetClientPosition -- uid: OpenTK.Platform.IWindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) - commentId: M:OpenTK.Platform.IWindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) +- uid: OpenTK.Platform.IWindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) + commentId: M:OpenTK.Platform.IWindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) parent: OpenTK.Platform.IWindowComponent - isExternal: true - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetClientPosition_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_ - name: SetClientPosition(WindowHandle, int, int) - nameWithType: IWindowComponent.SetClientPosition(WindowHandle, int, int) - fullName: OpenTK.Platform.IWindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle, int, int) - nameWithType.vb: IWindowComponent.SetClientPosition(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Platform.IWindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle, Integer, Integer) - name.vb: SetClientPosition(WindowHandle, Integer, Integer) + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetClientPosition_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2i_ + name: SetClientPosition(WindowHandle, Vector2i) + nameWithType: IWindowComponent.SetClientPosition(WindowHandle, Vector2i) + fullName: OpenTK.Platform.IWindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2i) spec.csharp: - - uid: OpenTK.Platform.IWindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) + - uid: OpenTK.Platform.IWindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) name: SetClientPosition - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetClientPosition_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetClientPosition_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2i_ - name: ( - uid: OpenTK.Platform.WindowHandle name: WindowHandle href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 + - uid: OpenTK.Mathematics.Vector2i + name: Vector2i + href: OpenTK.Mathematics.Vector2i.html - name: ) spec.vb: - - uid: OpenTK.Platform.IWindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) + - uid: OpenTK.Platform.IWindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) name: SetClientPosition - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetClientPosition_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetClientPosition_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2i_ - name: ( - uid: OpenTK.Platform.WindowHandle name: WindowHandle href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 + - uid: OpenTK.Mathematics.Vector2i + name: Vector2i + href: OpenTK.Mathematics.Vector2i.html - name: ) - uid: OpenTK.Platform.Native.X11.X11WindowComponent.GetClientSize* commentId: Overload:OpenTK.Platform.Native.X11.X11WindowComponent.GetClientSize - href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_GetClientSize_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_GetClientSize_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2i__ name: GetClientSize nameWithType: X11WindowComponent.GetClientSize fullName: OpenTK.Platform.Native.X11.X11WindowComponent.GetClientSize -- uid: OpenTK.Platform.IWindowComponent.GetClientSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) - commentId: M:OpenTK.Platform.IWindowComponent.GetClientSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) +- uid: OpenTK.Platform.IWindowComponent.GetClientSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) + commentId: M:OpenTK.Platform.IWindowComponent.GetClientSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) parent: OpenTK.Platform.IWindowComponent - isExternal: true - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetClientSize_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ - name: GetClientSize(WindowHandle, out int, out int) - nameWithType: IWindowComponent.GetClientSize(WindowHandle, out int, out int) - fullName: OpenTK.Platform.IWindowComponent.GetClientSize(OpenTK.Platform.WindowHandle, out int, out int) - nameWithType.vb: IWindowComponent.GetClientSize(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Platform.IWindowComponent.GetClientSize(OpenTK.Platform.WindowHandle, Integer, Integer) - name.vb: GetClientSize(WindowHandle, Integer, Integer) + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetClientSize_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2i__ + name: GetClientSize(WindowHandle, out Vector2i) + nameWithType: IWindowComponent.GetClientSize(WindowHandle, out Vector2i) + fullName: OpenTK.Platform.IWindowComponent.GetClientSize(OpenTK.Platform.WindowHandle, out OpenTK.Mathematics.Vector2i) + nameWithType.vb: IWindowComponent.GetClientSize(WindowHandle, Vector2i) + fullName.vb: OpenTK.Platform.IWindowComponent.GetClientSize(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2i) + name.vb: GetClientSize(WindowHandle, Vector2i) spec.csharp: - - uid: OpenTK.Platform.IWindowComponent.GetClientSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + - uid: OpenTK.Platform.IWindowComponent.GetClientSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) name: GetClientSize - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetClientSize_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetClientSize_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2i__ - name: ( - uid: OpenTK.Platform.WindowHandle name: WindowHandle @@ -4181,98 +4434,64 @@ references: - name: " " - name: out - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - name: out - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 + - uid: OpenTK.Mathematics.Vector2i + name: Vector2i + href: OpenTK.Mathematics.Vector2i.html - name: ) spec.vb: - - uid: OpenTK.Platform.IWindowComponent.GetClientSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + - uid: OpenTK.Platform.IWindowComponent.GetClientSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) name: GetClientSize - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetClientSize_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetClientSize_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2i__ - name: ( - uid: OpenTK.Platform.WindowHandle name: WindowHandle href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 + - uid: OpenTK.Mathematics.Vector2i + name: Vector2i + href: OpenTK.Mathematics.Vector2i.html - name: ) - uid: OpenTK.Platform.Native.X11.X11WindowComponent.SetClientSize* commentId: Overload:OpenTK.Platform.Native.X11.X11WindowComponent.SetClientSize - href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_SetClientSize_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_ + href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_SetClientSize_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2i_ name: SetClientSize nameWithType: X11WindowComponent.SetClientSize fullName: OpenTK.Platform.Native.X11.X11WindowComponent.SetClientSize -- uid: OpenTK.Platform.IWindowComponent.SetClientSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) - commentId: M:OpenTK.Platform.IWindowComponent.SetClientSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) +- uid: OpenTK.Platform.IWindowComponent.SetClientSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) + commentId: M:OpenTK.Platform.IWindowComponent.SetClientSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) parent: OpenTK.Platform.IWindowComponent - isExternal: true - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetClientSize_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_ - name: SetClientSize(WindowHandle, int, int) - nameWithType: IWindowComponent.SetClientSize(WindowHandle, int, int) - fullName: OpenTK.Platform.IWindowComponent.SetClientSize(OpenTK.Platform.WindowHandle, int, int) - nameWithType.vb: IWindowComponent.SetClientSize(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Platform.IWindowComponent.SetClientSize(OpenTK.Platform.WindowHandle, Integer, Integer) - name.vb: SetClientSize(WindowHandle, Integer, Integer) + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetClientSize_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2i_ + name: SetClientSize(WindowHandle, Vector2i) + nameWithType: IWindowComponent.SetClientSize(WindowHandle, Vector2i) + fullName: OpenTK.Platform.IWindowComponent.SetClientSize(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2i) spec.csharp: - - uid: OpenTK.Platform.IWindowComponent.SetClientSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) + - uid: OpenTK.Platform.IWindowComponent.SetClientSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) name: SetClientSize - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetClientSize_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetClientSize_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2i_ - name: ( - uid: OpenTK.Platform.WindowHandle name: WindowHandle href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 + - uid: OpenTK.Mathematics.Vector2i + name: Vector2i + href: OpenTK.Mathematics.Vector2i.html - name: ) spec.vb: - - uid: OpenTK.Platform.IWindowComponent.SetClientSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) + - uid: OpenTK.Platform.IWindowComponent.SetClientSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) name: SetClientSize - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetClientSize_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetClientSize_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2i_ - name: ( - uid: OpenTK.Platform.WindowHandle name: WindowHandle href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 + - uid: OpenTK.Mathematics.Vector2i + name: Vector2i + href: OpenTK.Mathematics.Vector2i.html - name: ) - uid: OpenTK.Platform.Native.X11.X11WindowComponent.GetClientBounds* commentId: Overload:OpenTK.Platform.Native.X11.X11WindowComponent.GetClientBounds @@ -4450,25 +4669,24 @@ references: - name: ) - uid: OpenTK.Platform.Native.X11.X11WindowComponent.GetFramebufferSize* commentId: Overload:OpenTK.Platform.Native.X11.X11WindowComponent.GetFramebufferSize - href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_GetFramebufferSize_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_GetFramebufferSize_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2i__ name: GetFramebufferSize nameWithType: X11WindowComponent.GetFramebufferSize fullName: OpenTK.Platform.Native.X11.X11WindowComponent.GetFramebufferSize -- uid: OpenTK.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) - commentId: M:OpenTK.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) +- uid: OpenTK.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) + commentId: M:OpenTK.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) parent: OpenTK.Platform.IWindowComponent - isExternal: true - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetFramebufferSize_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ - name: GetFramebufferSize(WindowHandle, out int, out int) - nameWithType: IWindowComponent.GetFramebufferSize(WindowHandle, out int, out int) - fullName: OpenTK.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle, out int, out int) - nameWithType.vb: IWindowComponent.GetFramebufferSize(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle, Integer, Integer) - name.vb: GetFramebufferSize(WindowHandle, Integer, Integer) + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetFramebufferSize_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2i__ + name: GetFramebufferSize(WindowHandle, out Vector2i) + nameWithType: IWindowComponent.GetFramebufferSize(WindowHandle, out Vector2i) + fullName: OpenTK.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle, out OpenTK.Mathematics.Vector2i) + nameWithType.vb: IWindowComponent.GetFramebufferSize(WindowHandle, Vector2i) + fullName.vb: OpenTK.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2i) + name.vb: GetFramebufferSize(WindowHandle, Vector2i) spec.csharp: - - uid: OpenTK.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + - uid: OpenTK.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) name: GetFramebufferSize - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetFramebufferSize_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetFramebufferSize_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2i__ - name: ( - uid: OpenTK.Platform.WindowHandle name: WindowHandle @@ -4477,39 +4695,23 @@ references: - name: " " - name: out - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - name: out - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 + - uid: OpenTK.Mathematics.Vector2i + name: Vector2i + href: OpenTK.Mathematics.Vector2i.html - name: ) spec.vb: - - uid: OpenTK.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + - uid: OpenTK.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) name: GetFramebufferSize - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetFramebufferSize_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetFramebufferSize_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2i__ - name: ( - uid: OpenTK.Platform.WindowHandle name: WindowHandle href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 + - uid: OpenTK.Mathematics.Vector2i + name: Vector2i + href: OpenTK.Mathematics.Vector2i.html - name: ) - uid: OpenTK.Platform.Native.X11.X11WindowComponent.GetMaxClientSize* commentId: Overload:OpenTK.Platform.Native.X11.X11WindowComponent.GetMaxClientSize @@ -4822,6 +5024,12 @@ references: href: https://learn.microsoft.com/dotnet/api/system.int32 - name: '?' - name: ) +- uid: OpenTK.Platform.PalNotImplementedException + commentId: T:OpenTK.Platform.PalNotImplementedException + href: OpenTK.Platform.PalNotImplementedException.html + name: PalNotImplementedException + nameWithType: PalNotImplementedException + fullName: OpenTK.Platform.PalNotImplementedException - uid: OpenTK.Platform.Native.X11.X11WindowComponent.GetDisplay* commentId: Overload:OpenTK.Platform.Native.X11.X11WindowComponent.GetDisplay href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_GetDisplay_OpenTK_Platform_WindowHandle_ @@ -4907,18 +5115,6 @@ references: name: WindowMode nameWithType: WindowMode fullName: OpenTK.Platform.WindowMode -- uid: OpenTK.Platform.WindowMode.WindowedFullscreen - commentId: F:OpenTK.Platform.WindowMode.WindowedFullscreen - href: OpenTK.Platform.WindowMode.html#OpenTK_Platform_WindowMode_WindowedFullscreen - name: WindowedFullscreen - nameWithType: WindowMode.WindowedFullscreen - fullName: OpenTK.Platform.WindowMode.WindowedFullscreen -- uid: OpenTK.Platform.WindowMode.ExclusiveFullscreen - commentId: F:OpenTK.Platform.WindowMode.ExclusiveFullscreen - href: OpenTK.Platform.WindowMode.html#OpenTK_Platform_WindowMode_ExclusiveFullscreen - name: ExclusiveFullscreen - nameWithType: WindowMode.ExclusiveFullscreen - fullName: OpenTK.Platform.WindowMode.ExclusiveFullscreen - uid: OpenTK.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle) commentId: M:OpenTK.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle) parent: OpenTK.Platform.IWindowComponent @@ -4999,13 +5195,25 @@ references: name: VideoMode href: OpenTK.Platform.VideoMode.html - name: ) -- uid: System.ArgumentOutOfRangeException - commentId: T:System.ArgumentOutOfRangeException +- uid: OpenTK.Platform.WindowMode.WindowedFullscreen + commentId: F:OpenTK.Platform.WindowMode.WindowedFullscreen + href: OpenTK.Platform.WindowMode.html#OpenTK_Platform_WindowMode_WindowedFullscreen + name: WindowedFullscreen + nameWithType: WindowMode.WindowedFullscreen + fullName: OpenTK.Platform.WindowMode.WindowedFullscreen +- uid: OpenTK.Platform.WindowMode.ExclusiveFullscreen + commentId: F:OpenTK.Platform.WindowMode.ExclusiveFullscreen + href: OpenTK.Platform.WindowMode.html#OpenTK_Platform_WindowMode_ExclusiveFullscreen + name: ExclusiveFullscreen + nameWithType: WindowMode.ExclusiveFullscreen + fullName: OpenTK.Platform.WindowMode.ExclusiveFullscreen +- uid: System.ComponentModel.InvalidEnumArgumentException + commentId: T:System.ComponentModel.InvalidEnumArgumentException isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.argumentoutofrangeexception - name: ArgumentOutOfRangeException - nameWithType: ArgumentOutOfRangeException - fullName: System.ArgumentOutOfRangeException + href: https://learn.microsoft.com/dotnet/api/system.componentmodel.invalidenumargumentexception + name: InvalidEnumArgumentException + nameWithType: InvalidEnumArgumentException + fullName: System.ComponentModel.InvalidEnumArgumentException - uid: OpenTK.Platform.Native.X11.X11WindowComponent.SetMode* commentId: Overload:OpenTK.Platform.Native.X11.X11WindowComponent.SetMode href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_SetMode_OpenTK_Platform_WindowHandle_OpenTK_Platform_WindowMode_ @@ -5138,6 +5346,41 @@ references: name: DisplayHandle href: OpenTK.Platform.DisplayHandle.html - name: ) +- uid: OpenTK.Platform.IWindowComponent.SetBorderStyle(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowBorderStyle) + commentId: M:OpenTK.Platform.IWindowComponent.SetBorderStyle(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowBorderStyle) + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetBorderStyle_OpenTK_Platform_WindowHandle_OpenTK_Platform_WindowBorderStyle_ + name: SetBorderStyle(WindowHandle, WindowBorderStyle) + nameWithType: IWindowComponent.SetBorderStyle(WindowHandle, WindowBorderStyle) + fullName: OpenTK.Platform.IWindowComponent.SetBorderStyle(OpenTK.Platform.WindowHandle, OpenTK.Platform.WindowBorderStyle) + spec.csharp: + - uid: OpenTK.Platform.IWindowComponent.SetBorderStyle(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowBorderStyle) + name: SetBorderStyle + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetBorderStyle_OpenTK_Platform_WindowHandle_OpenTK_Platform_WindowBorderStyle_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: OpenTK.Platform.WindowBorderStyle + name: WindowBorderStyle + href: OpenTK.Platform.WindowBorderStyle.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IWindowComponent.SetBorderStyle(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowBorderStyle) + name: SetBorderStyle + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetBorderStyle_OpenTK_Platform_WindowHandle_OpenTK_Platform_WindowBorderStyle_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: OpenTK.Platform.WindowBorderStyle + name: WindowBorderStyle + href: OpenTK.Platform.WindowBorderStyle.html + - name: ) - uid: OpenTK.Platform.Native.X11.X11WindowComponent.SetBorderStyle(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowBorderStyle) commentId: M:OpenTK.Platform.Native.X11.X11WindowComponent.SetBorderStyle(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowBorderStyle) href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_SetBorderStyle_OpenTK_Platform_WindowHandle_OpenTK_Platform_WindowBorderStyle_ @@ -5216,40 +5459,216 @@ references: name: SetBorderStyle nameWithType: X11WindowComponent.SetBorderStyle fullName: OpenTK.Platform.Native.X11.X11WindowComponent.SetBorderStyle -- uid: OpenTK.Platform.IWindowComponent.SetBorderStyle(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowBorderStyle) - commentId: M:OpenTK.Platform.IWindowComponent.SetBorderStyle(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowBorderStyle) +- uid: OpenTK.Platform.IWindowComponent.SetTransparencyMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowTransparencyMode,System.Single) + commentId: M:OpenTK.Platform.IWindowComponent.SetTransparencyMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowTransparencyMode,System.Single) parent: OpenTK.Platform.IWindowComponent - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetBorderStyle_OpenTK_Platform_WindowHandle_OpenTK_Platform_WindowBorderStyle_ - name: SetBorderStyle(WindowHandle, WindowBorderStyle) - nameWithType: IWindowComponent.SetBorderStyle(WindowHandle, WindowBorderStyle) - fullName: OpenTK.Platform.IWindowComponent.SetBorderStyle(OpenTK.Platform.WindowHandle, OpenTK.Platform.WindowBorderStyle) + isExternal: true + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetTransparencyMode_OpenTK_Platform_WindowHandle_OpenTK_Platform_WindowTransparencyMode_System_Single_ + name: SetTransparencyMode(WindowHandle, WindowTransparencyMode, float) + nameWithType: IWindowComponent.SetTransparencyMode(WindowHandle, WindowTransparencyMode, float) + fullName: OpenTK.Platform.IWindowComponent.SetTransparencyMode(OpenTK.Platform.WindowHandle, OpenTK.Platform.WindowTransparencyMode, float) + nameWithType.vb: IWindowComponent.SetTransparencyMode(WindowHandle, WindowTransparencyMode, Single) + fullName.vb: OpenTK.Platform.IWindowComponent.SetTransparencyMode(OpenTK.Platform.WindowHandle, OpenTK.Platform.WindowTransparencyMode, Single) + name.vb: SetTransparencyMode(WindowHandle, WindowTransparencyMode, Single) spec.csharp: - - uid: OpenTK.Platform.IWindowComponent.SetBorderStyle(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowBorderStyle) - name: SetBorderStyle - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetBorderStyle_OpenTK_Platform_WindowHandle_OpenTK_Platform_WindowBorderStyle_ + - uid: OpenTK.Platform.IWindowComponent.SetTransparencyMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowTransparencyMode,System.Single) + name: SetTransparencyMode + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetTransparencyMode_OpenTK_Platform_WindowHandle_OpenTK_Platform_WindowTransparencyMode_System_Single_ - name: ( - uid: OpenTK.Platform.WindowHandle name: WindowHandle href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - - uid: OpenTK.Platform.WindowBorderStyle - name: WindowBorderStyle - href: OpenTK.Platform.WindowBorderStyle.html + - uid: OpenTK.Platform.WindowTransparencyMode + name: WindowTransparencyMode + href: OpenTK.Platform.WindowTransparencyMode.html + - name: ',' + - name: " " + - uid: System.Single + name: float + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.single - name: ) spec.vb: - - uid: OpenTK.Platform.IWindowComponent.SetBorderStyle(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowBorderStyle) - name: SetBorderStyle - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetBorderStyle_OpenTK_Platform_WindowHandle_OpenTK_Platform_WindowBorderStyle_ + - uid: OpenTK.Platform.IWindowComponent.SetTransparencyMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowTransparencyMode,System.Single) + name: SetTransparencyMode + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetTransparencyMode_OpenTK_Platform_WindowHandle_OpenTK_Platform_WindowTransparencyMode_System_Single_ - name: ( - uid: OpenTK.Platform.WindowHandle name: WindowHandle href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - - uid: OpenTK.Platform.WindowBorderStyle - name: WindowBorderStyle - href: OpenTK.Platform.WindowBorderStyle.html + - uid: OpenTK.Platform.WindowTransparencyMode + name: WindowTransparencyMode + href: OpenTK.Platform.WindowTransparencyMode.html + - name: ',' + - name: " " + - uid: System.Single + name: Single + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.single + - name: ) +- uid: OpenTK.Platform.OpenGLGraphicsApiHints.SupportTransparentFramebufferX11 + commentId: P:OpenTK.Platform.OpenGLGraphicsApiHints.SupportTransparentFramebufferX11 + href: OpenTK.Platform.OpenGLGraphicsApiHints.html#OpenTK_Platform_OpenGLGraphicsApiHints_SupportTransparentFramebufferX11 + name: SupportTransparentFramebufferX11 + nameWithType: OpenGLGraphicsApiHints.SupportTransparentFramebufferX11 + fullName: OpenTK.Platform.OpenGLGraphicsApiHints.SupportTransparentFramebufferX11 +- uid: OpenTK.Platform.ContextValues.SupportsFramebufferTransparency + commentId: F:OpenTK.Platform.ContextValues.SupportsFramebufferTransparency + href: OpenTK.Platform.ContextValues.html#OpenTK_Platform_ContextValues_SupportsFramebufferTransparency + name: SupportsFramebufferTransparency + nameWithType: ContextValues.SupportsFramebufferTransparency + fullName: OpenTK.Platform.ContextValues.SupportsFramebufferTransparency +- uid: OpenTK.Platform.WindowTransparencyMode + commentId: T:OpenTK.Platform.WindowTransparencyMode + parent: OpenTK.Platform + href: OpenTK.Platform.WindowTransparencyMode.html + name: WindowTransparencyMode + nameWithType: WindowTransparencyMode + fullName: OpenTK.Platform.WindowTransparencyMode +- uid: OpenTK.Platform.WindowTransparencyMode.TransparentFramebuffer + commentId: F:OpenTK.Platform.WindowTransparencyMode.TransparentFramebuffer + href: OpenTK.Platform.WindowTransparencyMode.html#OpenTK_Platform_WindowTransparencyMode_TransparentFramebuffer + name: TransparentFramebuffer + nameWithType: WindowTransparencyMode.TransparentFramebuffer + fullName: OpenTK.Platform.WindowTransparencyMode.TransparentFramebuffer +- uid: OpenTK.Platform.ContextValues + commentId: T:OpenTK.Platform.ContextValues + parent: OpenTK.Platform + href: OpenTK.Platform.ContextValues.html + name: ContextValues + nameWithType: ContextValues + fullName: OpenTK.Platform.ContextValues +- uid: OpenTK.Platform.Native.X11.X11WindowComponent.SupportsFramebufferTransparency* + commentId: Overload:OpenTK.Platform.Native.X11.X11WindowComponent.SupportsFramebufferTransparency + href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_SupportsFramebufferTransparency_OpenTK_Platform_WindowHandle_ + name: SupportsFramebufferTransparency + nameWithType: X11WindowComponent.SupportsFramebufferTransparency + fullName: OpenTK.Platform.Native.X11.X11WindowComponent.SupportsFramebufferTransparency +- uid: OpenTK.Platform.IWindowComponent.SupportsFramebufferTransparency(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.SupportsFramebufferTransparency(OpenTK.Platform.WindowHandle) + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SupportsFramebufferTransparency_OpenTK_Platform_WindowHandle_ + name: SupportsFramebufferTransparency(WindowHandle) + nameWithType: IWindowComponent.SupportsFramebufferTransparency(WindowHandle) + fullName: OpenTK.Platform.IWindowComponent.SupportsFramebufferTransparency(OpenTK.Platform.WindowHandle) + spec.csharp: + - uid: OpenTK.Platform.IWindowComponent.SupportsFramebufferTransparency(OpenTK.Platform.WindowHandle) + name: SupportsFramebufferTransparency + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SupportsFramebufferTransparency_OpenTK_Platform_WindowHandle_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IWindowComponent.SupportsFramebufferTransparency(OpenTK.Platform.WindowHandle) + name: SupportsFramebufferTransparency + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SupportsFramebufferTransparency_OpenTK_Platform_WindowHandle_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ) +- uid: OpenTK.Platform.IWindowComponent.GetTransparencyMode(OpenTK.Platform.WindowHandle,System.Single@) + commentId: M:OpenTK.Platform.IWindowComponent.GetTransparencyMode(OpenTK.Platform.WindowHandle,System.Single@) + parent: OpenTK.Platform.IWindowComponent + isExternal: true + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetTransparencyMode_OpenTK_Platform_WindowHandle_System_Single__ + name: GetTransparencyMode(WindowHandle, out float) + nameWithType: IWindowComponent.GetTransparencyMode(WindowHandle, out float) + fullName: OpenTK.Platform.IWindowComponent.GetTransparencyMode(OpenTK.Platform.WindowHandle, out float) + nameWithType.vb: IWindowComponent.GetTransparencyMode(WindowHandle, Single) + fullName.vb: OpenTK.Platform.IWindowComponent.GetTransparencyMode(OpenTK.Platform.WindowHandle, Single) + name.vb: GetTransparencyMode(WindowHandle, Single) + spec.csharp: + - uid: OpenTK.Platform.IWindowComponent.GetTransparencyMode(OpenTK.Platform.WindowHandle,System.Single@) + name: GetTransparencyMode + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetTransparencyMode_OpenTK_Platform_WindowHandle_System_Single__ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - name: out + - name: " " + - uid: System.Single + name: float + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.single + - name: ) + spec.vb: + - uid: OpenTK.Platform.IWindowComponent.GetTransparencyMode(OpenTK.Platform.WindowHandle,System.Single@) + name: GetTransparencyMode + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetTransparencyMode_OpenTK_Platform_WindowHandle_System_Single__ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: System.Single + name: Single + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.single + - name: ) +- uid: OpenTK.Platform.WindowTransparencyMode.TransparentWindow + commentId: F:OpenTK.Platform.WindowTransparencyMode.TransparentWindow + href: OpenTK.Platform.WindowTransparencyMode.html#OpenTK_Platform_WindowTransparencyMode_TransparentWindow + name: TransparentWindow + nameWithType: WindowTransparencyMode.TransparentWindow + fullName: OpenTK.Platform.WindowTransparencyMode.TransparentWindow +- uid: OpenTK.Platform.Native.X11.X11WindowComponent.SetTransparencyMode* + commentId: Overload:OpenTK.Platform.Native.X11.X11WindowComponent.SetTransparencyMode + href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_SetTransparencyMode_OpenTK_Platform_WindowHandle_OpenTK_Platform_WindowTransparencyMode_System_Single_ + name: SetTransparencyMode + nameWithType: X11WindowComponent.SetTransparencyMode + fullName: OpenTK.Platform.Native.X11.X11WindowComponent.SetTransparencyMode +- uid: System.Single + commentId: T:System.Single + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.single + name: float + nameWithType: float + fullName: float + nameWithType.vb: Single + fullName.vb: Single + name.vb: Single +- uid: OpenTK.Platform.Native.X11.X11WindowComponent.GetTransparencyMode* + commentId: Overload:OpenTK.Platform.Native.X11.X11WindowComponent.GetTransparencyMode + href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_GetTransparencyMode_OpenTK_Platform_WindowHandle_System_Single__ + name: GetTransparencyMode + nameWithType: X11WindowComponent.GetTransparencyMode + fullName: OpenTK.Platform.Native.X11.X11WindowComponent.GetTransparencyMode +- uid: OpenTK.Platform.IWindowComponent.IsAlwaysOnTop(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.IsAlwaysOnTop(OpenTK.Platform.WindowHandle) + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_IsAlwaysOnTop_OpenTK_Platform_WindowHandle_ + name: IsAlwaysOnTop(WindowHandle) + nameWithType: IWindowComponent.IsAlwaysOnTop(WindowHandle) + fullName: OpenTK.Platform.IWindowComponent.IsAlwaysOnTop(OpenTK.Platform.WindowHandle) + spec.csharp: + - uid: OpenTK.Platform.IWindowComponent.IsAlwaysOnTop(OpenTK.Platform.WindowHandle) + name: IsAlwaysOnTop + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_IsAlwaysOnTop_OpenTK_Platform_WindowHandle_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IWindowComponent.IsAlwaysOnTop(OpenTK.Platform.WindowHandle) + name: IsAlwaysOnTop + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_IsAlwaysOnTop_OpenTK_Platform_WindowHandle_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html - name: ) - uid: OpenTK.Platform.Native.X11.X11WindowComponent.SetAlwaysOnTop* commentId: Overload:OpenTK.Platform.Native.X11.X11WindowComponent.SetAlwaysOnTop @@ -5304,31 +5723,20 @@ references: name: IsAlwaysOnTop nameWithType: X11WindowComponent.IsAlwaysOnTop fullName: OpenTK.Platform.Native.X11.X11WindowComponent.IsAlwaysOnTop -- uid: OpenTK.Platform.IWindowComponent.IsAlwaysOnTop(OpenTK.Platform.WindowHandle) - commentId: M:OpenTK.Platform.IWindowComponent.IsAlwaysOnTop(OpenTK.Platform.WindowHandle) - parent: OpenTK.Platform.IWindowComponent - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_IsAlwaysOnTop_OpenTK_Platform_WindowHandle_ - name: IsAlwaysOnTop(WindowHandle) - nameWithType: IWindowComponent.IsAlwaysOnTop(WindowHandle) - fullName: OpenTK.Platform.IWindowComponent.IsAlwaysOnTop(OpenTK.Platform.WindowHandle) - spec.csharp: - - uid: OpenTK.Platform.IWindowComponent.IsAlwaysOnTop(OpenTK.Platform.WindowHandle) - name: IsAlwaysOnTop - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_IsAlwaysOnTop_OpenTK_Platform_WindowHandle_ - - name: ( - - uid: OpenTK.Platform.WindowHandle - name: WindowHandle - href: OpenTK.Platform.WindowHandle.html - - name: ) - spec.vb: - - uid: OpenTK.Platform.IWindowComponent.IsAlwaysOnTop(OpenTK.Platform.WindowHandle) - name: IsAlwaysOnTop - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_IsAlwaysOnTop_OpenTK_Platform_WindowHandle_ - - name: ( - - uid: OpenTK.Platform.WindowHandle - name: WindowHandle - href: OpenTK.Platform.WindowHandle.html - - name: ) +- uid: OpenTK.Platform.HitTest + commentId: T:OpenTK.Platform.HitTest + parent: OpenTK.Platform + href: OpenTK.Platform.HitTest.html + name: HitTest + nameWithType: HitTest + fullName: OpenTK.Platform.HitTest +- uid: OpenTK.Platform.HitType + commentId: T:OpenTK.Platform.HitType + parent: OpenTK.Platform + href: OpenTK.Platform.HitType.html + name: HitType + nameWithType: HitType + fullName: OpenTK.Platform.HitType - uid: OpenTK.Platform.Native.X11.X11WindowComponent.SetHitTestCallback* commentId: Overload:OpenTK.Platform.Native.X11.X11WindowComponent.SetHitTestCallback href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_SetHitTestCallback_OpenTK_Platform_WindowHandle_OpenTK_Platform_HitTest_ @@ -5370,13 +5778,6 @@ references: name: HitTest href: OpenTK.Platform.HitTest.html - name: ) -- uid: OpenTK.Platform.HitTest - commentId: T:OpenTK.Platform.HitTest - parent: OpenTK.Platform - href: OpenTK.Platform.HitTest.html - name: HitTest - nameWithType: HitTest - fullName: OpenTK.Platform.HitTest - uid: OpenTK.Platform.Native.X11.X11WindowComponent.SetCursor* commentId: Overload:OpenTK.Platform.Native.X11.X11WindowComponent.SetCursor href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_SetCursor_OpenTK_Platform_WindowHandle_OpenTK_Platform_CursorHandle_ @@ -5434,6 +5835,56 @@ references: name: SetCursorCaptureMode nameWithType: X11WindowComponent.SetCursorCaptureMode fullName: OpenTK.Platform.Native.X11.X11WindowComponent.SetCursorCaptureMode +- uid: OpenTK.Platform.IWindowComponent.FocusWindow(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.FocusWindow(OpenTK.Platform.WindowHandle) + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_FocusWindow_OpenTK_Platform_WindowHandle_ + name: FocusWindow(WindowHandle) + nameWithType: IWindowComponent.FocusWindow(WindowHandle) + fullName: OpenTK.Platform.IWindowComponent.FocusWindow(OpenTK.Platform.WindowHandle) + spec.csharp: + - uid: OpenTK.Platform.IWindowComponent.FocusWindow(OpenTK.Platform.WindowHandle) + name: FocusWindow + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_FocusWindow_OpenTK_Platform_WindowHandle_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IWindowComponent.FocusWindow(OpenTK.Platform.WindowHandle) + name: FocusWindow + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_FocusWindow_OpenTK_Platform_WindowHandle_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ) +- uid: OpenTK.Platform.IWindowComponent.RequestAttention(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.RequestAttention(OpenTK.Platform.WindowHandle) + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_RequestAttention_OpenTK_Platform_WindowHandle_ + name: RequestAttention(WindowHandle) + nameWithType: IWindowComponent.RequestAttention(WindowHandle) + fullName: OpenTK.Platform.IWindowComponent.RequestAttention(OpenTK.Platform.WindowHandle) + spec.csharp: + - uid: OpenTK.Platform.IWindowComponent.RequestAttention(OpenTK.Platform.WindowHandle) + name: RequestAttention + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_RequestAttention_OpenTK_Platform_WindowHandle_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IWindowComponent.RequestAttention(OpenTK.Platform.WindowHandle) + name: RequestAttention + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_RequestAttention_OpenTK_Platform_WindowHandle_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ) - uid: OpenTK.Platform.Native.X11.X11WindowComponent.IsFocused* commentId: Overload:OpenTK.Platform.Native.X11.X11WindowComponent.IsFocused href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_IsFocused_OpenTK_Platform_WindowHandle_ @@ -5471,242 +5922,249 @@ references: name: FocusWindow nameWithType: X11WindowComponent.FocusWindow fullName: OpenTK.Platform.Native.X11.X11WindowComponent.FocusWindow -- uid: OpenTK.Platform.IWindowComponent.FocusWindow(OpenTK.Platform.WindowHandle) - commentId: M:OpenTK.Platform.IWindowComponent.FocusWindow(OpenTK.Platform.WindowHandle) +- uid: OpenTK.Platform.Native.X11.X11WindowComponent.RequestAttention* + commentId: Overload:OpenTK.Platform.Native.X11.X11WindowComponent.RequestAttention + href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_RequestAttention_OpenTK_Platform_WindowHandle_ + name: RequestAttention + nameWithType: X11WindowComponent.RequestAttention + fullName: OpenTK.Platform.Native.X11.X11WindowComponent.RequestAttention +- uid: OpenTK.Platform.Native.X11.X11WindowComponent.DemandAttention* + commentId: Overload:OpenTK.Platform.Native.X11.X11WindowComponent.DemandAttention + href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_DemandAttention_OpenTK_Platform_WindowHandle_ + name: DemandAttention + nameWithType: X11WindowComponent.DemandAttention + fullName: OpenTK.Platform.Native.X11.X11WindowComponent.DemandAttention +- uid: OpenTK.Platform.IWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + commentId: M:OpenTK.Platform.IWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) parent: OpenTK.Platform.IWindowComponent - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_FocusWindow_OpenTK_Platform_WindowHandle_ - name: FocusWindow(WindowHandle) - nameWithType: IWindowComponent.FocusWindow(WindowHandle) - fullName: OpenTK.Platform.IWindowComponent.FocusWindow(OpenTK.Platform.WindowHandle) + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_ClientToScreen_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2_OpenTK_Mathematics_Vector2__ + name: ClientToScreen(WindowHandle, Vector2, out Vector2) + nameWithType: IWindowComponent.ClientToScreen(WindowHandle, Vector2, out Vector2) + fullName: OpenTK.Platform.IWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2, out OpenTK.Mathematics.Vector2) + nameWithType.vb: IWindowComponent.ClientToScreen(WindowHandle, Vector2, Vector2) + fullName.vb: OpenTK.Platform.IWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2, OpenTK.Mathematics.Vector2) + name.vb: ClientToScreen(WindowHandle, Vector2, Vector2) spec.csharp: - - uid: OpenTK.Platform.IWindowComponent.FocusWindow(OpenTK.Platform.WindowHandle) - name: FocusWindow - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_FocusWindow_OpenTK_Platform_WindowHandle_ + - uid: OpenTK.Platform.IWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + name: ClientToScreen + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_ClientToScreen_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2_OpenTK_Mathematics_Vector2__ - name: ( - uid: OpenTK.Platform.WindowHandle name: WindowHandle href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: OpenTK.Mathematics.Vector2 + name: Vector2 + href: OpenTK.Mathematics.Vector2.html + - name: ',' + - name: " " + - name: out + - name: " " + - uid: OpenTK.Mathematics.Vector2 + name: Vector2 + href: OpenTK.Mathematics.Vector2.html - name: ) spec.vb: - - uid: OpenTK.Platform.IWindowComponent.FocusWindow(OpenTK.Platform.WindowHandle) - name: FocusWindow - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_FocusWindow_OpenTK_Platform_WindowHandle_ + - uid: OpenTK.Platform.IWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + name: ClientToScreen + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_ClientToScreen_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2_OpenTK_Mathematics_Vector2__ - name: ( - uid: OpenTK.Platform.WindowHandle name: WindowHandle href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: OpenTK.Mathematics.Vector2 + name: Vector2 + href: OpenTK.Mathematics.Vector2.html + - name: ',' + - name: " " + - uid: OpenTK.Mathematics.Vector2 + name: Vector2 + href: OpenTK.Mathematics.Vector2.html - name: ) -- uid: OpenTK.Platform.Native.X11.X11WindowComponent.RequestAttention* - commentId: Overload:OpenTK.Platform.Native.X11.X11WindowComponent.RequestAttention - href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_RequestAttention_OpenTK_Platform_WindowHandle_ - name: RequestAttention - nameWithType: X11WindowComponent.RequestAttention - fullName: OpenTK.Platform.Native.X11.X11WindowComponent.RequestAttention -- uid: OpenTK.Platform.IWindowComponent.RequestAttention(OpenTK.Platform.WindowHandle) - commentId: M:OpenTK.Platform.IWindowComponent.RequestAttention(OpenTK.Platform.WindowHandle) +- uid: OpenTK.Platform.IWindowComponent.ClientToFramebuffer(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + commentId: M:OpenTK.Platform.IWindowComponent.ClientToFramebuffer(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) parent: OpenTK.Platform.IWindowComponent - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_RequestAttention_OpenTK_Platform_WindowHandle_ - name: RequestAttention(WindowHandle) - nameWithType: IWindowComponent.RequestAttention(WindowHandle) - fullName: OpenTK.Platform.IWindowComponent.RequestAttention(OpenTK.Platform.WindowHandle) + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_ClientToFramebuffer_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2_OpenTK_Mathematics_Vector2__ + name: ClientToFramebuffer(WindowHandle, Vector2, out Vector2) + nameWithType: IWindowComponent.ClientToFramebuffer(WindowHandle, Vector2, out Vector2) + fullName: OpenTK.Platform.IWindowComponent.ClientToFramebuffer(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2, out OpenTK.Mathematics.Vector2) + nameWithType.vb: IWindowComponent.ClientToFramebuffer(WindowHandle, Vector2, Vector2) + fullName.vb: OpenTK.Platform.IWindowComponent.ClientToFramebuffer(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2, OpenTK.Mathematics.Vector2) + name.vb: ClientToFramebuffer(WindowHandle, Vector2, Vector2) spec.csharp: - - uid: OpenTK.Platform.IWindowComponent.RequestAttention(OpenTK.Platform.WindowHandle) - name: RequestAttention - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_RequestAttention_OpenTK_Platform_WindowHandle_ + - uid: OpenTK.Platform.IWindowComponent.ClientToFramebuffer(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + name: ClientToFramebuffer + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_ClientToFramebuffer_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2_OpenTK_Mathematics_Vector2__ - name: ( - uid: OpenTK.Platform.WindowHandle name: WindowHandle href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: OpenTK.Mathematics.Vector2 + name: Vector2 + href: OpenTK.Mathematics.Vector2.html + - name: ',' + - name: " " + - name: out + - name: " " + - uid: OpenTK.Mathematics.Vector2 + name: Vector2 + href: OpenTK.Mathematics.Vector2.html - name: ) spec.vb: - - uid: OpenTK.Platform.IWindowComponent.RequestAttention(OpenTK.Platform.WindowHandle) - name: RequestAttention - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_RequestAttention_OpenTK_Platform_WindowHandle_ + - uid: OpenTK.Platform.IWindowComponent.ClientToFramebuffer(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + name: ClientToFramebuffer + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_ClientToFramebuffer_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2_OpenTK_Mathematics_Vector2__ - name: ( - uid: OpenTK.Platform.WindowHandle name: WindowHandle href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: OpenTK.Mathematics.Vector2 + name: Vector2 + href: OpenTK.Mathematics.Vector2.html + - name: ',' + - name: " " + - uid: OpenTK.Mathematics.Vector2 + name: Vector2 + href: OpenTK.Mathematics.Vector2.html - name: ) -- uid: OpenTK.Platform.Native.X11.X11WindowComponent.DemandAttention* - commentId: Overload:OpenTK.Platform.Native.X11.X11WindowComponent.DemandAttention - href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_DemandAttention_OpenTK_Platform_WindowHandle_ - name: DemandAttention - nameWithType: X11WindowComponent.DemandAttention - fullName: OpenTK.Platform.Native.X11.X11WindowComponent.DemandAttention - uid: OpenTK.Platform.Native.X11.X11WindowComponent.ScreenToClient* commentId: Overload:OpenTK.Platform.Native.X11.X11WindowComponent.ScreenToClient - href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_ScreenToClient_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_System_Int32__System_Int32__ + href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_ScreenToClient_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2_OpenTK_Mathematics_Vector2__ name: ScreenToClient nameWithType: X11WindowComponent.ScreenToClient fullName: OpenTK.Platform.Native.X11.X11WindowComponent.ScreenToClient -- uid: OpenTK.Platform.IWindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) - commentId: M:OpenTK.Platform.IWindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) +- uid: OpenTK.Platform.IWindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + commentId: M:OpenTK.Platform.IWindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) parent: OpenTK.Platform.IWindowComponent - isExternal: true - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_ScreenToClient_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_System_Int32__System_Int32__ - name: ScreenToClient(WindowHandle, int, int, out int, out int) - nameWithType: IWindowComponent.ScreenToClient(WindowHandle, int, int, out int, out int) - fullName: OpenTK.Platform.IWindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle, int, int, out int, out int) - nameWithType.vb: IWindowComponent.ScreenToClient(WindowHandle, Integer, Integer, Integer, Integer) - fullName.vb: OpenTK.Platform.IWindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle, Integer, Integer, Integer, Integer) - name.vb: ScreenToClient(WindowHandle, Integer, Integer, Integer, Integer) + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_ScreenToClient_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2_OpenTK_Mathematics_Vector2__ + name: ScreenToClient(WindowHandle, Vector2, out Vector2) + nameWithType: IWindowComponent.ScreenToClient(WindowHandle, Vector2, out Vector2) + fullName: OpenTK.Platform.IWindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2, out OpenTK.Mathematics.Vector2) + nameWithType.vb: IWindowComponent.ScreenToClient(WindowHandle, Vector2, Vector2) + fullName.vb: OpenTK.Platform.IWindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2, OpenTK.Mathematics.Vector2) + name.vb: ScreenToClient(WindowHandle, Vector2, Vector2) spec.csharp: - - uid: OpenTK.Platform.IWindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) + - uid: OpenTK.Platform.IWindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) name: ScreenToClient - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_ScreenToClient_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_ScreenToClient_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2_OpenTK_Mathematics_Vector2__ - name: ( - uid: OpenTK.Platform.WindowHandle name: WindowHandle href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - name: out - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 + - uid: OpenTK.Mathematics.Vector2 + name: Vector2 + href: OpenTK.Mathematics.Vector2.html - name: ',' - name: " " - name: out - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 + - uid: OpenTK.Mathematics.Vector2 + name: Vector2 + href: OpenTK.Mathematics.Vector2.html - name: ) spec.vb: - - uid: OpenTK.Platform.IWindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) + - uid: OpenTK.Platform.IWindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) name: ScreenToClient - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_ScreenToClient_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_ScreenToClient_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2_OpenTK_Mathematics_Vector2__ - name: ( - uid: OpenTK.Platform.WindowHandle name: WindowHandle href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 + - uid: OpenTK.Mathematics.Vector2 + name: Vector2 + href: OpenTK.Mathematics.Vector2.html - name: ',' - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 + - uid: OpenTK.Mathematics.Vector2 + name: Vector2 + href: OpenTK.Mathematics.Vector2.html - name: ) +- uid: OpenTK.Mathematics.Vector2 + commentId: T:OpenTK.Mathematics.Vector2 + parent: OpenTK.Mathematics + href: OpenTK.Mathematics.Vector2.html + name: Vector2 + nameWithType: Vector2 + fullName: OpenTK.Mathematics.Vector2 - uid: OpenTK.Platform.Native.X11.X11WindowComponent.ClientToScreen* commentId: Overload:OpenTK.Platform.Native.X11.X11WindowComponent.ClientToScreen - href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_ClientToScreen_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_System_Int32__System_Int32__ + href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_ClientToScreen_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2_OpenTK_Mathematics_Vector2__ name: ClientToScreen nameWithType: X11WindowComponent.ClientToScreen fullName: OpenTK.Platform.Native.X11.X11WindowComponent.ClientToScreen -- uid: OpenTK.Platform.IWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) - commentId: M:OpenTK.Platform.IWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) +- uid: OpenTK.Platform.IWindowComponent.FramebufferToClient(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + commentId: M:OpenTK.Platform.IWindowComponent.FramebufferToClient(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) parent: OpenTK.Platform.IWindowComponent - isExternal: true - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_ClientToScreen_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_System_Int32__System_Int32__ - name: ClientToScreen(WindowHandle, int, int, out int, out int) - nameWithType: IWindowComponent.ClientToScreen(WindowHandle, int, int, out int, out int) - fullName: OpenTK.Platform.IWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle, int, int, out int, out int) - nameWithType.vb: IWindowComponent.ClientToScreen(WindowHandle, Integer, Integer, Integer, Integer) - fullName.vb: OpenTK.Platform.IWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle, Integer, Integer, Integer, Integer) - name.vb: ClientToScreen(WindowHandle, Integer, Integer, Integer, Integer) + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_FramebufferToClient_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2_OpenTK_Mathematics_Vector2__ + name: FramebufferToClient(WindowHandle, Vector2, out Vector2) + nameWithType: IWindowComponent.FramebufferToClient(WindowHandle, Vector2, out Vector2) + fullName: OpenTK.Platform.IWindowComponent.FramebufferToClient(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2, out OpenTK.Mathematics.Vector2) + nameWithType.vb: IWindowComponent.FramebufferToClient(WindowHandle, Vector2, Vector2) + fullName.vb: OpenTK.Platform.IWindowComponent.FramebufferToClient(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2, OpenTK.Mathematics.Vector2) + name.vb: FramebufferToClient(WindowHandle, Vector2, Vector2) spec.csharp: - - uid: OpenTK.Platform.IWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) - name: ClientToScreen - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_ClientToScreen_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_System_Int32__System_Int32__ + - uid: OpenTK.Platform.IWindowComponent.FramebufferToClient(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + name: FramebufferToClient + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_FramebufferToClient_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2_OpenTK_Mathematics_Vector2__ - name: ( - uid: OpenTK.Platform.WindowHandle name: WindowHandle href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - name: out - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 + - uid: OpenTK.Mathematics.Vector2 + name: Vector2 + href: OpenTK.Mathematics.Vector2.html - name: ',' - name: " " - name: out - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 + - uid: OpenTK.Mathematics.Vector2 + name: Vector2 + href: OpenTK.Mathematics.Vector2.html - name: ) spec.vb: - - uid: OpenTK.Platform.IWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) - name: ClientToScreen - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_ClientToScreen_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_System_Int32__System_Int32__ + - uid: OpenTK.Platform.IWindowComponent.FramebufferToClient(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + name: FramebufferToClient + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_FramebufferToClient_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2_OpenTK_Mathematics_Vector2__ - name: ( - uid: OpenTK.Platform.WindowHandle name: WindowHandle href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 + - uid: OpenTK.Mathematics.Vector2 + name: Vector2 + href: OpenTK.Mathematics.Vector2.html - name: ',' - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 + - uid: OpenTK.Mathematics.Vector2 + name: Vector2 + href: OpenTK.Mathematics.Vector2.html - name: ) +- uid: OpenTK.Platform.Native.X11.X11WindowComponent.ClientToFramebuffer* + commentId: Overload:OpenTK.Platform.Native.X11.X11WindowComponent.ClientToFramebuffer + href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_ClientToFramebuffer_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2_OpenTK_Mathematics_Vector2__ + name: ClientToFramebuffer + nameWithType: X11WindowComponent.ClientToFramebuffer + fullName: OpenTK.Platform.Native.X11.X11WindowComponent.ClientToFramebuffer +- uid: OpenTK.Platform.Native.X11.X11WindowComponent.FramebufferToClient* + commentId: Overload:OpenTK.Platform.Native.X11.X11WindowComponent.FramebufferToClient + href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_FramebufferToClient_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2_OpenTK_Mathematics_Vector2__ + name: FramebufferToClient + nameWithType: X11WindowComponent.FramebufferToClient + fullName: OpenTK.Platform.Native.X11.X11WindowComponent.FramebufferToClient - uid: OpenTK.Platform.WindowScaleChangeEventArgs commentId: T:OpenTK.Platform.WindowScaleChangeEventArgs href: OpenTK.Platform.WindowScaleChangeEventArgs.html @@ -5776,17 +6234,6 @@ references: isExternal: true href: https://learn.microsoft.com/dotnet/api/system.single - name: ) -- uid: System.Single - commentId: T:System.Single - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.single - name: float - nameWithType: float - fullName: float - nameWithType.vb: Single - fullName.vb: Single - name.vb: Single - uid: OpenTK.Platform.Native.X11.X11WindowComponent.GetX11Display* commentId: Overload:OpenTK.Platform.Native.X11.X11WindowComponent.GetX11Display href: OpenTK.Platform.Native.X11.X11WindowComponent.html#OpenTK_Platform_Native_X11_X11WindowComponent_GetX11Display diff --git a/api/OpenTK.Platform.Native.X11.yml b/api/OpenTK.Platform.Native.X11.yml index c54d04d3..ec23bc51 100644 --- a/api/OpenTK.Platform.Native.X11.yml +++ b/api/OpenTK.Platform.Native.X11.yml @@ -4,7 +4,9 @@ items: commentId: N:OpenTK.Platform.Native.X11 id: OpenTK.Platform.Native.X11 children: + - OpenTK.Platform.Native.X11.LibXcb - OpenTK.Platform.Native.X11.X11ClipboardComponent + - OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec - OpenTK.Platform.Native.X11.X11CursorComponent - OpenTK.Platform.Native.X11.X11DialogComponent - OpenTK.Platform.Native.X11.X11DisplayComponent @@ -14,6 +16,7 @@ items: - OpenTK.Platform.Native.X11.X11MouseComponent - OpenTK.Platform.Native.X11.X11OpenGLComponent - OpenTK.Platform.Native.X11.X11ShellComponent + - OpenTK.Platform.Native.X11.X11VulkanComponent - OpenTK.Platform.Native.X11.X11WindowComponent langs: - csharp @@ -25,12 +28,41 @@ items: assemblies: - OpenTK.Platform references: +- uid: OpenTK.Platform.Native.X11.LibXcb + commentId: T:OpenTK.Platform.Native.X11.LibXcb + href: OpenTK.Platform.Native.X11.LibXcb.html + name: LibXcb + nameWithType: LibXcb + fullName: OpenTK.Platform.Native.X11.LibXcb - uid: OpenTK.Platform.Native.X11.X11ClipboardComponent commentId: T:OpenTK.Platform.Native.X11.X11ClipboardComponent href: OpenTK.Platform.Native.X11.X11ClipboardComponent.html name: X11ClipboardComponent nameWithType: X11ClipboardComponent fullName: OpenTK.Platform.Native.X11.X11ClipboardComponent +- uid: OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec + commentId: T:OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec + parent: OpenTK.Platform.Native.X11 + href: OpenTK.Platform.Native.X11.X11ClipboardComponent.html + name: X11ClipboardComponent.IPngCodec + nameWithType: X11ClipboardComponent.IPngCodec + fullName: OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec + spec.csharp: + - uid: OpenTK.Platform.Native.X11.X11ClipboardComponent + name: X11ClipboardComponent + href: OpenTK.Platform.Native.X11.X11ClipboardComponent.html + - name: . + - uid: OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec + name: IPngCodec + href: OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec.html + spec.vb: + - uid: OpenTK.Platform.Native.X11.X11ClipboardComponent + name: X11ClipboardComponent + href: OpenTK.Platform.Native.X11.X11ClipboardComponent.html + - name: . + - uid: OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec + name: IPngCodec + href: OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec.html - uid: OpenTK.Platform.Native.X11.X11CursorComponent commentId: T:OpenTK.Platform.Native.X11.X11CursorComponent href: OpenTK.Platform.Native.X11.X11CursorComponent.html @@ -101,9 +133,53 @@ references: name: X11ShellComponent nameWithType: X11ShellComponent fullName: OpenTK.Platform.Native.X11.X11ShellComponent +- uid: OpenTK.Platform.Native.X11.X11VulkanComponent + commentId: T:OpenTK.Platform.Native.X11.X11VulkanComponent + href: OpenTK.Platform.Native.X11.X11VulkanComponent.html + name: X11VulkanComponent + nameWithType: X11VulkanComponent + fullName: OpenTK.Platform.Native.X11.X11VulkanComponent - uid: OpenTK.Platform.Native.X11.X11WindowComponent commentId: T:OpenTK.Platform.Native.X11.X11WindowComponent href: OpenTK.Platform.Native.X11.X11WindowComponent.html name: X11WindowComponent nameWithType: X11WindowComponent fullName: OpenTK.Platform.Native.X11.X11WindowComponent +- uid: OpenTK.Platform.Native.X11 + commentId: N:OpenTK.Platform.Native.X11 + href: OpenTK.html + name: OpenTK.Platform.Native.X11 + nameWithType: OpenTK.Platform.Native.X11 + fullName: OpenTK.Platform.Native.X11 + spec.csharp: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Platform + name: Platform + href: OpenTK.Platform.html + - name: . + - uid: OpenTK.Platform.Native + name: Native + href: OpenTK.Platform.Native.html + - name: . + - uid: OpenTK.Platform.Native.X11 + name: X11 + href: OpenTK.Platform.Native.X11.html + spec.vb: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Platform + name: Platform + href: OpenTK.Platform.html + - name: . + - uid: OpenTK.Platform.Native + name: Native + href: OpenTK.Platform.Native.html + - name: . + - uid: OpenTK.Platform.Native.X11 + name: X11 + href: OpenTK.Platform.Native.X11.html diff --git a/api/OpenTK.Platform.Native.macOS.MacOSClipboardComponent.yml b/api/OpenTK.Platform.Native.macOS.MacOSClipboardComponent.yml index 34f155d9..2ec5b344 100644 --- a/api/OpenTK.Platform.Native.macOS.MacOSClipboardComponent.yml +++ b/api/OpenTK.Platform.Native.macOS.MacOSClipboardComponent.yml @@ -18,6 +18,7 @@ items: - OpenTK.Platform.Native.macOS.MacOSClipboardComponent.SetClipboardBitmap(OpenTK.Platform.Bitmap) - OpenTK.Platform.Native.macOS.MacOSClipboardComponent.SetClipboardText(System.String) - OpenTK.Platform.Native.macOS.MacOSClipboardComponent.SupportedFormats + - OpenTK.Platform.Native.macOS.MacOSClipboardComponent.Uninitialize langs: - csharp - vb @@ -124,7 +125,7 @@ items: assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS - summary: Provides a logger for this component. + summary: The logger that this component uses to log diagnostic messages. example: [] syntax: content: public ILogger? Logger { get; set; } @@ -133,6 +134,11 @@ items: type: OpenTK.Core.Utility.ILogger content.vb: Public Property Logger As ILogger overload: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.Logger* + seealso: + - linkId: OpenTK.Core.Utility.ILogger + commentId: T:OpenTK.Core.Utility.ILogger + - linkId: OpenTK.Platform.ToolkitOptions.Logger + commentId: P:OpenTK.Platform.ToolkitOptions.Logger implements: - OpenTK.Platform.IPalComponent.Logger - uid: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.Initialize(OpenTK.Platform.ToolkitOptions) @@ -163,8 +169,42 @@ items: description: The options to initialize the component with. content.vb: Public Sub Initialize(options As ToolkitOptions) overload: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.Initialize* + seealso: + - linkId: OpenTK.Platform.ToolkitOptions + commentId: T:OpenTK.Platform.ToolkitOptions + - linkId: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) implements: - OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) +- uid: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.Uninitialize + commentId: M:OpenTK.Platform.Native.macOS.MacOSClipboardComponent.Uninitialize + id: Uninitialize + parent: OpenTK.Platform.Native.macOS.MacOSClipboardComponent + langs: + - csharp + - vb + name: Uninitialize() + nameWithType: MacOSClipboardComponent.Uninitialize() + fullName: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.Uninitialize() + type: Method + source: + id: Uninitialize + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSClipboardComponent.cs + startLine: 81 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform.Native.macOS + summary: Uninitialize the component. Frees any native resources used by the component. + example: [] + syntax: + content: public void Uninitialize() + content.vb: Public Sub Uninitialize() + overload: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.Uninitialize* + seealso: + - linkId: OpenTK.Platform.Toolkit.Uninit + commentId: M:OpenTK.Platform.Toolkit.Uninit + implements: + - OpenTK.Platform.IPalComponent.Uninitialize - uid: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.CheckClipboardUpdate commentId: M:OpenTK.Platform.Native.macOS.MacOSClipboardComponent.CheckClipboardUpdate id: CheckClipboardUpdate @@ -179,7 +219,7 @@ items: source: id: CheckClipboardUpdate path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSClipboardComponent.cs - startLine: 80 + startLine: 86 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS @@ -203,7 +243,7 @@ items: source: id: SupportedFormats path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSClipboardComponent.cs - startLine: 90 + startLine: 96 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS @@ -216,6 +256,11 @@ items: type: System.Collections.Generic.IReadOnlyList{OpenTK.Platform.ClipboardFormat} content.vb: Public ReadOnly Property SupportedFormats As IReadOnlyList(Of ClipboardFormat) overload: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.SupportedFormats* + seealso: + - linkId: OpenTK.Platform.IClipboardComponent.GetClipboardFormat + commentId: M:OpenTK.Platform.IClipboardComponent.GetClipboardFormat + - linkId: OpenTK.Platform.ClipboardFormat + commentId: T:OpenTK.Platform.ClipboardFormat implements: - OpenTK.Platform.IClipboardComponent.SupportedFormats - uid: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.GetClipboardFormat @@ -232,7 +277,7 @@ items: source: id: GetClipboardFormat path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSClipboardComponent.cs - startLine: 144 + startLine: 150 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS @@ -245,6 +290,9 @@ items: description: The format of the data currently in the clipboard. content.vb: Public Function GetClipboardFormat() As ClipboardFormat overload: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.GetClipboardFormat* + seealso: + - linkId: OpenTK.Platform.ClipboardFormat + commentId: T:OpenTK.Platform.ClipboardFormat implements: - OpenTK.Platform.IClipboardComponent.GetClipboardFormat - uid: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.SetClipboardText(System.String) @@ -261,7 +309,7 @@ items: source: id: SetClipboardText path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSClipboardComponent.cs - startLine: 150 + startLine: 156 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS @@ -272,9 +320,12 @@ items: parameters: - id: text type: System.String - description: The text to put on the clipboard. + description: The text to write to the clipboard. content.vb: Public Sub SetClipboardText(text As String) overload: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.SetClipboardText* + seealso: + - linkId: OpenTK.Platform.IClipboardComponent.GetClipboardFormat + commentId: M:OpenTK.Platform.IClipboardComponent.GetClipboardFormat implements: - OpenTK.Platform.IClipboardComponent.SetClipboardText(System.String) nameWithType.vb: MacOSClipboardComponent.SetClipboardText(String) @@ -294,22 +345,25 @@ items: source: id: GetClipboardText path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSClipboardComponent.cs - startLine: 171 + startLine: 177 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: >- - Returns the string currently in the clipboard. + Gets the string currently in the clipboard. - This function returns null if the current clipboard data doesn't have the format. + This function returns null if the current clipboard data doesn't have the format. example: [] syntax: content: public string? GetClipboardText() return: type: System.String - description: The string currently in the clipboard, or null. + description: The string currently in the clipboard, or null. content.vb: Public Function GetClipboardText() As String overload: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.GetClipboardText* + seealso: + - linkId: OpenTK.Platform.IClipboardComponent.GetClipboardFormat + commentId: M:OpenTK.Platform.IClipboardComponent.GetClipboardFormat implements: - OpenTK.Platform.IClipboardComponent.GetClipboardText - uid: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.GetClipboardAudio @@ -326,22 +380,25 @@ items: source: id: GetClipboardAudio path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSClipboardComponent.cs - startLine: 184 + startLine: 190 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: >- Gets the audio data currently in the clipboard. - This function returns null if the current clipboard data doesn't have the format. + This function returns null if the current clipboard data doesn't have the format. example: [] syntax: content: public AudioData? GetClipboardAudio() return: type: OpenTK.Platform.AudioData - description: The audio data currently in the clipboard. + description: The audio data currently in the clipboard, or null. content.vb: Public Function GetClipboardAudio() As AudioData overload: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.GetClipboardAudio* + seealso: + - linkId: OpenTK.Platform.IClipboardComponent.GetClipboardFormat + commentId: M:OpenTK.Platform.IClipboardComponent.GetClipboardFormat implements: - OpenTK.Platform.IClipboardComponent.GetClipboardAudio - uid: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.SetClipboardBitmap(OpenTK.Platform.Bitmap) @@ -358,11 +415,17 @@ items: source: id: SetClipboardBitmap path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSClipboardComponent.cs - startLine: 199 + startLine: 202 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: Writes a bitmap to the clipboard. + remarks: >- + On linux clipboard bitmaps are defacto transferred as PNG data, as such a PNG encoder/decoder is needed to read and write bitmaps from the clipboard. + + To enable this must be called with an object that implements the interface. + + If this is not done, and will both throw an exception. example: [] syntax: content: public void SetClipboardBitmap(Bitmap bitmap) @@ -372,6 +435,15 @@ items: description: The bitmap to write to the clipboard. content.vb: Public Sub SetClipboardBitmap(bitmap As Bitmap) overload: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.SetClipboardBitmap* + seealso: + - linkId: OpenTK.Platform.IClipboardComponent.GetClipboardFormat + commentId: M:OpenTK.Platform.IClipboardComponent.GetClipboardFormat + - linkId: OpenTK.Platform.Native.X11.X11ClipboardComponent.SetPngCodec(OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec) + commentId: M:OpenTK.Platform.Native.X11.X11ClipboardComponent.SetPngCodec(OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec) + - linkId: OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec + commentId: T:OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec + implements: + - OpenTK.Platform.IClipboardComponent.SetClipboardBitmap(OpenTK.Platform.Bitmap) - uid: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.GetClipboardBitmap commentId: M:OpenTK.Platform.Native.macOS.MacOSClipboardComponent.GetClipboardBitmap id: GetClipboardBitmap @@ -386,22 +458,35 @@ items: source: id: GetClipboardBitmap path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSClipboardComponent.cs - startLine: 255 + startLine: 258 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: >- Gets the bitmap currently in the clipboard. - This function returns null if the current clipboard data doesn't have the format. + This function returns null if the current clipboard data doesn't have the format. + remarks: >- + On linux clipboard bitmaps are defacto transferred as PNG data, as such a PNG encoder/decoder is needed to read and write bitmaps from the clipboard. + + To enable this must be called with an object that implements the interface. + + If this is not done, and will both throw an exception. example: [] syntax: content: public Bitmap? GetClipboardBitmap() return: type: OpenTK.Platform.Bitmap - description: The bitmap currently in the clipboard. + description: The bitmap currently in the clipboard, or null. content.vb: Public Function GetClipboardBitmap() As Bitmap overload: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.GetClipboardBitmap* + seealso: + - linkId: OpenTK.Platform.IClipboardComponent.GetClipboardFormat + commentId: M:OpenTK.Platform.IClipboardComponent.GetClipboardFormat + - linkId: OpenTK.Platform.Native.X11.X11ClipboardComponent.SetPngCodec(OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec) + commentId: M:OpenTK.Platform.Native.X11.X11ClipboardComponent.SetPngCodec(OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec) + - linkId: OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec + commentId: T:OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec implements: - OpenTK.Platform.IClipboardComponent.GetClipboardBitmap - uid: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.GetClipboardFiles @@ -418,22 +503,25 @@ items: source: id: GetClipboardFiles path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSClipboardComponent.cs - startLine: 301 + startLine: 304 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: >- Gets a list of files and directories currently in the clipboard. - This function returns null if the current clipboard data doesn't have the format. + This function returns null if the current clipboard data doesn't have the format. example: [] syntax: content: public List? GetClipboardFiles() return: type: System.Collections.Generic.List{System.String} - description: The list of files and directories currently in the clipboard. + description: The list of files and directories currently in the clipboard, or null. content.vb: Public Function GetClipboardFiles() As List(Of String) overload: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.GetClipboardFiles* + seealso: + - linkId: OpenTK.Platform.IClipboardComponent.GetClipboardFormat + commentId: M:OpenTK.Platform.IClipboardComponent.GetClipboardFormat implements: - OpenTK.Platform.IClipboardComponent.GetClipboardFiles references: @@ -792,6 +880,19 @@ references: name: PalComponents nameWithType: PalComponents fullName: OpenTK.Platform.PalComponents +- uid: OpenTK.Core.Utility.ILogger + commentId: T:OpenTK.Core.Utility.ILogger + parent: OpenTK.Core.Utility + href: OpenTK.Core.Utility.ILogger.html + name: ILogger + nameWithType: ILogger + fullName: OpenTK.Core.Utility.ILogger +- uid: OpenTK.Platform.ToolkitOptions.Logger + commentId: P:OpenTK.Platform.ToolkitOptions.Logger + href: OpenTK.Platform.ToolkitOptions.html#OpenTK_Platform_ToolkitOptions_Logger + name: Logger + nameWithType: ToolkitOptions.Logger + fullName: OpenTK.Platform.ToolkitOptions.Logger - uid: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.Logger* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSClipboardComponent.Logger href: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.html#OpenTK_Platform_Native_macOS_MacOSClipboardComponent_Logger @@ -805,13 +906,6 @@ references: name: Logger nameWithType: IPalComponent.Logger fullName: OpenTK.Platform.IPalComponent.Logger -- uid: OpenTK.Core.Utility.ILogger - commentId: T:OpenTK.Core.Utility.ILogger - parent: OpenTK.Core.Utility - href: OpenTK.Core.Utility.ILogger.html - name: ILogger - nameWithType: ILogger - fullName: OpenTK.Core.Utility.ILogger - uid: OpenTK.Core.Utility commentId: N:OpenTK.Core.Utility href: OpenTK.html @@ -842,6 +936,37 @@ references: - uid: OpenTK.Core.Utility name: Utility href: OpenTK.Core.Utility.html +- uid: OpenTK.Platform.ToolkitOptions + commentId: T:OpenTK.Platform.ToolkitOptions + parent: OpenTK.Platform + href: OpenTK.Platform.ToolkitOptions.html + name: ToolkitOptions + nameWithType: ToolkitOptions + fullName: OpenTK.Platform.ToolkitOptions +- uid: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Init_OpenTK_Platform_ToolkitOptions_ + name: Init(ToolkitOptions) + nameWithType: Toolkit.Init(ToolkitOptions) + fullName: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + spec.csharp: + - uid: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + name: Init + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Init_OpenTK_Platform_ToolkitOptions_ + - name: ( + - uid: OpenTK.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Platform.ToolkitOptions.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + name: Init + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Init_OpenTK_Platform_ToolkitOptions_ + - name: ( + - uid: OpenTK.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Platform.ToolkitOptions.html + - name: ) - uid: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.Initialize* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSClipboardComponent.Initialize href: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.html#OpenTK_Platform_Native_macOS_MacOSClipboardComponent_Initialize_OpenTK_Platform_ToolkitOptions_ @@ -873,13 +998,49 @@ references: name: ToolkitOptions href: OpenTK.Platform.ToolkitOptions.html - name: ) -- uid: OpenTK.Platform.ToolkitOptions - commentId: T:OpenTK.Platform.ToolkitOptions - parent: OpenTK.Platform - href: OpenTK.Platform.ToolkitOptions.html - name: ToolkitOptions - nameWithType: ToolkitOptions - fullName: OpenTK.Platform.ToolkitOptions +- uid: OpenTK.Platform.Toolkit.Uninit + commentId: M:OpenTK.Platform.Toolkit.Uninit + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Uninit + name: Uninit() + nameWithType: Toolkit.Uninit() + fullName: OpenTK.Platform.Toolkit.Uninit() + spec.csharp: + - uid: OpenTK.Platform.Toolkit.Uninit + name: Uninit + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Uninit + - name: ( + - name: ) + spec.vb: + - uid: OpenTK.Platform.Toolkit.Uninit + name: Uninit + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Uninit + - name: ( + - name: ) +- uid: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.Uninitialize* + commentId: Overload:OpenTK.Platform.Native.macOS.MacOSClipboardComponent.Uninitialize + href: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.html#OpenTK_Platform_Native_macOS_MacOSClipboardComponent_Uninitialize + name: Uninitialize + nameWithType: MacOSClipboardComponent.Uninitialize + fullName: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.Uninitialize +- uid: OpenTK.Platform.IPalComponent.Uninitialize + commentId: M:OpenTK.Platform.IPalComponent.Uninitialize + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + name: Uninitialize() + nameWithType: IPalComponent.Uninitialize() + fullName: OpenTK.Platform.IPalComponent.Uninitialize() + spec.csharp: + - uid: OpenTK.Platform.IPalComponent.Uninitialize + name: Uninitialize + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + - name: ( + - name: ) + spec.vb: + - uid: OpenTK.Platform.IPalComponent.Uninitialize + name: Uninitialize + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + - name: ( + - name: ) - uid: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.CheckClipboardUpdate* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSClipboardComponent.CheckClipboardUpdate href: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.html#OpenTK_Platform_Native_macOS_MacOSClipboardComponent_CheckClipboardUpdate @@ -897,6 +1058,32 @@ references: nameWithType.vb: Boolean fullName.vb: Boolean name.vb: Boolean +- uid: OpenTK.Platform.IClipboardComponent.GetClipboardFormat + commentId: M:OpenTK.Platform.IClipboardComponent.GetClipboardFormat + parent: OpenTK.Platform.IClipboardComponent + href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_GetClipboardFormat + name: GetClipboardFormat() + nameWithType: IClipboardComponent.GetClipboardFormat() + fullName: OpenTK.Platform.IClipboardComponent.GetClipboardFormat() + spec.csharp: + - uid: OpenTK.Platform.IClipboardComponent.GetClipboardFormat + name: GetClipboardFormat + href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_GetClipboardFormat + - name: ( + - name: ) + spec.vb: + - uid: OpenTK.Platform.IClipboardComponent.GetClipboardFormat + name: GetClipboardFormat + href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_GetClipboardFormat + - name: ( + - name: ) +- uid: OpenTK.Platform.ClipboardFormat + commentId: T:OpenTK.Platform.ClipboardFormat + parent: OpenTK.Platform + href: OpenTK.Platform.ClipboardFormat.html + name: ClipboardFormat + nameWithType: ClipboardFormat + fullName: OpenTK.Platform.ClipboardFormat - uid: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.SupportedFormats* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSClipboardComponent.SupportedFormats href: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.html#OpenTK_Platform_Native_macOS_MacOSClipboardComponent_SupportedFormats @@ -1014,32 +1201,6 @@ references: name: GetClipboardFormat nameWithType: MacOSClipboardComponent.GetClipboardFormat fullName: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.GetClipboardFormat -- uid: OpenTK.Platform.IClipboardComponent.GetClipboardFormat - commentId: M:OpenTK.Platform.IClipboardComponent.GetClipboardFormat - parent: OpenTK.Platform.IClipboardComponent - href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_GetClipboardFormat - name: GetClipboardFormat() - nameWithType: IClipboardComponent.GetClipboardFormat() - fullName: OpenTK.Platform.IClipboardComponent.GetClipboardFormat() - spec.csharp: - - uid: OpenTK.Platform.IClipboardComponent.GetClipboardFormat - name: GetClipboardFormat - href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_GetClipboardFormat - - name: ( - - name: ) - spec.vb: - - uid: OpenTK.Platform.IClipboardComponent.GetClipboardFormat - name: GetClipboardFormat - href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_GetClipboardFormat - - name: ( - - name: ) -- uid: OpenTK.Platform.ClipboardFormat - commentId: T:OpenTK.Platform.ClipboardFormat - parent: OpenTK.Platform - href: OpenTK.Platform.ClipboardFormat.html - name: ClipboardFormat - nameWithType: ClipboardFormat - fullName: OpenTK.Platform.ClipboardFormat - uid: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.SetClipboardText* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSClipboardComponent.SetClipboardText href: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.html#OpenTK_Platform_Native_macOS_MacOSClipboardComponent_SetClipboardText_System_String_ @@ -1146,6 +1307,97 @@ references: name: AudioData nameWithType: AudioData fullName: OpenTK.Platform.AudioData +- uid: OpenTK.Platform.Native.X11.X11ClipboardComponent.SetPngCodec(OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec) + commentId: M:OpenTK.Platform.Native.X11.X11ClipboardComponent.SetPngCodec(OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec) + href: OpenTK.Platform.Native.X11.X11ClipboardComponent.html#OpenTK_Platform_Native_X11_X11ClipboardComponent_SetPngCodec_OpenTK_Platform_Native_X11_X11ClipboardComponent_IPngCodec_ + name: SetPngCodec(IPngCodec) + nameWithType: X11ClipboardComponent.SetPngCodec(X11ClipboardComponent.IPngCodec) + fullName: OpenTK.Platform.Native.X11.X11ClipboardComponent.SetPngCodec(OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec) + spec.csharp: + - uid: OpenTK.Platform.Native.X11.X11ClipboardComponent.SetPngCodec(OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec) + name: SetPngCodec + href: OpenTK.Platform.Native.X11.X11ClipboardComponent.html#OpenTK_Platform_Native_X11_X11ClipboardComponent_SetPngCodec_OpenTK_Platform_Native_X11_X11ClipboardComponent_IPngCodec_ + - name: ( + - uid: OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec + name: IPngCodec + href: OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.Native.X11.X11ClipboardComponent.SetPngCodec(OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec) + name: SetPngCodec + href: OpenTK.Platform.Native.X11.X11ClipboardComponent.html#OpenTK_Platform_Native_X11_X11ClipboardComponent_SetPngCodec_OpenTK_Platform_Native_X11_X11ClipboardComponent_IPngCodec_ + - name: ( + - uid: OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec + name: IPngCodec + href: OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec.html + - name: ) +- uid: OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec + commentId: T:OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec + parent: OpenTK.Platform.Native.X11 + href: OpenTK.Platform.Native.X11.X11ClipboardComponent.html + name: X11ClipboardComponent.IPngCodec + nameWithType: X11ClipboardComponent.IPngCodec + fullName: OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec + spec.csharp: + - uid: OpenTK.Platform.Native.X11.X11ClipboardComponent + name: X11ClipboardComponent + href: OpenTK.Platform.Native.X11.X11ClipboardComponent.html + - name: . + - uid: OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec + name: IPngCodec + href: OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec.html + spec.vb: + - uid: OpenTK.Platform.Native.X11.X11ClipboardComponent + name: X11ClipboardComponent + href: OpenTK.Platform.Native.X11.X11ClipboardComponent.html + - name: . + - uid: OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec + name: IPngCodec + href: OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec.html +- uid: OpenTK.Platform.IClipboardComponent.SetClipboardBitmap(OpenTK.Platform.Bitmap) + commentId: M:OpenTK.Platform.IClipboardComponent.SetClipboardBitmap(OpenTK.Platform.Bitmap) + parent: OpenTK.Platform.IClipboardComponent + href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_SetClipboardBitmap_OpenTK_Platform_Bitmap_ + name: SetClipboardBitmap(Bitmap) + nameWithType: IClipboardComponent.SetClipboardBitmap(Bitmap) + fullName: OpenTK.Platform.IClipboardComponent.SetClipboardBitmap(OpenTK.Platform.Bitmap) + spec.csharp: + - uid: OpenTK.Platform.IClipboardComponent.SetClipboardBitmap(OpenTK.Platform.Bitmap) + name: SetClipboardBitmap + href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_SetClipboardBitmap_OpenTK_Platform_Bitmap_ + - name: ( + - uid: OpenTK.Platform.Bitmap + name: Bitmap + href: OpenTK.Platform.Bitmap.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IClipboardComponent.SetClipboardBitmap(OpenTK.Platform.Bitmap) + name: SetClipboardBitmap + href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_SetClipboardBitmap_OpenTK_Platform_Bitmap_ + - name: ( + - uid: OpenTK.Platform.Bitmap + name: Bitmap + href: OpenTK.Platform.Bitmap.html + - name: ) +- uid: OpenTK.Platform.IClipboardComponent.GetClipboardBitmap + commentId: M:OpenTK.Platform.IClipboardComponent.GetClipboardBitmap + parent: OpenTK.Platform.IClipboardComponent + href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_GetClipboardBitmap + name: GetClipboardBitmap() + nameWithType: IClipboardComponent.GetClipboardBitmap() + fullName: OpenTK.Platform.IClipboardComponent.GetClipboardBitmap() + spec.csharp: + - uid: OpenTK.Platform.IClipboardComponent.GetClipboardBitmap + name: GetClipboardBitmap + href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_GetClipboardBitmap + - name: ( + - name: ) + spec.vb: + - uid: OpenTK.Platform.IClipboardComponent.GetClipboardBitmap + name: GetClipboardBitmap + href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_GetClipboardBitmap + - name: ( + - name: ) - uid: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.SetClipboardBitmap* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSClipboardComponent.SetClipboardBitmap href: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.html#OpenTK_Platform_Native_macOS_MacOSClipboardComponent_SetClipboardBitmap_OpenTK_Platform_Bitmap_ @@ -1159,6 +1411,44 @@ references: name: Bitmap nameWithType: Bitmap fullName: OpenTK.Platform.Bitmap +- uid: OpenTK.Platform.Native.X11 + commentId: N:OpenTK.Platform.Native.X11 + href: OpenTK.html + name: OpenTK.Platform.Native.X11 + nameWithType: OpenTK.Platform.Native.X11 + fullName: OpenTK.Platform.Native.X11 + spec.csharp: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Platform + name: Platform + href: OpenTK.Platform.html + - name: . + - uid: OpenTK.Platform.Native + name: Native + href: OpenTK.Platform.Native.html + - name: . + - uid: OpenTK.Platform.Native.X11 + name: X11 + href: OpenTK.Platform.Native.X11.html + spec.vb: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Platform + name: Platform + href: OpenTK.Platform.html + - name: . + - uid: OpenTK.Platform.Native + name: Native + href: OpenTK.Platform.Native.html + - name: . + - uid: OpenTK.Platform.Native.X11 + name: X11 + href: OpenTK.Platform.Native.X11.html - uid: OpenTK.Platform.ClipboardFormat.Bitmap commentId: F:OpenTK.Platform.ClipboardFormat.Bitmap href: OpenTK.Platform.ClipboardFormat.html#OpenTK_Platform_ClipboardFormat_Bitmap @@ -1171,25 +1461,6 @@ references: name: GetClipboardBitmap nameWithType: MacOSClipboardComponent.GetClipboardBitmap fullName: OpenTK.Platform.Native.macOS.MacOSClipboardComponent.GetClipboardBitmap -- uid: OpenTK.Platform.IClipboardComponent.GetClipboardBitmap - commentId: M:OpenTK.Platform.IClipboardComponent.GetClipboardBitmap - parent: OpenTK.Platform.IClipboardComponent - href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_GetClipboardBitmap - name: GetClipboardBitmap() - nameWithType: IClipboardComponent.GetClipboardBitmap() - fullName: OpenTK.Platform.IClipboardComponent.GetClipboardBitmap() - spec.csharp: - - uid: OpenTK.Platform.IClipboardComponent.GetClipboardBitmap - name: GetClipboardBitmap - href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_GetClipboardBitmap - - name: ( - - name: ) - spec.vb: - - uid: OpenTK.Platform.IClipboardComponent.GetClipboardBitmap - name: GetClipboardBitmap - href: OpenTK.Platform.IClipboardComponent.html#OpenTK_Platform_IClipboardComponent_GetClipboardBitmap - - name: ( - - name: ) - uid: OpenTK.Platform.ClipboardFormat.Files commentId: F:OpenTK.Platform.ClipboardFormat.Files href: OpenTK.Platform.ClipboardFormat.html#OpenTK_Platform_ClipboardFormat_Files diff --git a/api/OpenTK.Platform.Native.macOS.MacOSCursorComponent.Frame.yml b/api/OpenTK.Platform.Native.macOS.MacOSCursorComponent.Frame.yml index f7e500d4..a9631510 100644 --- a/api/OpenTK.Platform.Native.macOS.MacOSCursorComponent.Frame.yml +++ b/api/OpenTK.Platform.Native.macOS.MacOSCursorComponent.Frame.yml @@ -23,7 +23,7 @@ items: source: id: Frame path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSCursorComponent.cs - startLine: 422 + startLine: 448 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS @@ -51,10 +51,12 @@ items: source: id: ResX path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSCursorComponent.cs - startLine: 424 + startLine: 453 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS + summary: X resolution of . + example: [] syntax: content: public int ResX return: @@ -74,10 +76,12 @@ items: source: id: ResY path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSCursorComponent.cs - startLine: 425 + startLine: 457 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS + summary: Y resolution of . + example: [] syntax: content: public int ResY return: @@ -97,10 +101,12 @@ items: source: id: Width path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSCursorComponent.cs - startLine: 426 + startLine: 461 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS + summary: Width of the cursor in window coordinates. + example: [] syntax: content: public float Width return: @@ -120,10 +126,12 @@ items: source: id: Height path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSCursorComponent.cs - startLine: 427 + startLine: 465 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS + summary: Height of the cursor in window coordinates. + example: [] syntax: content: public float Height return: @@ -143,10 +151,12 @@ items: source: id: HotspotX path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSCursorComponent.cs - startLine: 428 + startLine: 469 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS + summary: The x axis pixel of the image to be the hotspot. + example: [] syntax: content: public int HotspotX return: @@ -166,10 +176,12 @@ items: source: id: HotspotY path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSCursorComponent.cs - startLine: 429 + startLine: 473 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS + summary: The y axis pixel of the image to be the hotspot. + example: [] syntax: content: public int HotspotY return: @@ -189,10 +201,12 @@ items: source: id: Image path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSCursorComponent.cs - startLine: 430 + startLine: 477 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS + summary: The frame image data in RGBA format. + example: [] syntax: content: public byte[] Image return: @@ -212,7 +226,7 @@ items: source: id: .ctor path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSCursorComponent.cs - startLine: 432 + startLine: 479 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS @@ -490,6 +504,12 @@ references: name: System nameWithType: System fullName: System +- uid: OpenTK.Platform.Native.macOS.MacOSCursorComponent.Frame.Image + commentId: F:OpenTK.Platform.Native.macOS.MacOSCursorComponent.Frame.Image + href: OpenTK.Platform.Native.macOS.MacOSCursorComponent.Frame.html#OpenTK_Platform_Native_macOS_MacOSCursorComponent_Frame_Image + name: Image + nameWithType: MacOSCursorComponent.Frame.Image + fullName: OpenTK.Platform.Native.macOS.MacOSCursorComponent.Frame.Image - uid: System.Int32 commentId: T:System.Int32 parent: System diff --git a/api/OpenTK.Platform.Native.macOS.MacOSCursorComponent.yml b/api/OpenTK.Platform.Native.macOS.MacOSCursorComponent.yml index 2413af84..bf70dc18 100644 --- a/api/OpenTK.Platform.Native.macOS.MacOSCursorComponent.yml +++ b/api/OpenTK.Platform.Native.macOS.MacOSCursorComponent.yml @@ -20,6 +20,7 @@ items: - OpenTK.Platform.Native.macOS.MacOSCursorComponent.Logger - OpenTK.Platform.Native.macOS.MacOSCursorComponent.Name - OpenTK.Platform.Native.macOS.MacOSCursorComponent.Provides + - OpenTK.Platform.Native.macOS.MacOSCursorComponent.Uninitialize - OpenTK.Platform.Native.macOS.MacOSCursorComponent.UpdateAnimation(OpenTK.Platform.CursorHandle,System.Double) langs: - csharp @@ -127,7 +128,7 @@ items: assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS - summary: Provides a logger for this component. + summary: The logger that this component uses to log diagnostic messages. example: [] syntax: content: public ILogger? Logger { get; set; } @@ -136,6 +137,11 @@ items: type: OpenTK.Core.Utility.ILogger content.vb: Public Property Logger As ILogger overload: OpenTK.Platform.Native.macOS.MacOSCursorComponent.Logger* + seealso: + - linkId: OpenTK.Core.Utility.ILogger + commentId: T:OpenTK.Core.Utility.ILogger + - linkId: OpenTK.Platform.ToolkitOptions.Logger + commentId: P:OpenTK.Platform.ToolkitOptions.Logger implements: - OpenTK.Platform.IPalComponent.Logger - uid: OpenTK.Platform.Native.macOS.MacOSCursorComponent.Initialize(OpenTK.Platform.ToolkitOptions) @@ -166,8 +172,42 @@ items: description: The options to initialize the component with. content.vb: Public Sub Initialize(options As ToolkitOptions) overload: OpenTK.Platform.Native.macOS.MacOSCursorComponent.Initialize* + seealso: + - linkId: OpenTK.Platform.ToolkitOptions + commentId: T:OpenTK.Platform.ToolkitOptions + - linkId: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) implements: - OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) +- uid: OpenTK.Platform.Native.macOS.MacOSCursorComponent.Uninitialize + commentId: M:OpenTK.Platform.Native.macOS.MacOSCursorComponent.Uninitialize + id: Uninitialize + parent: OpenTK.Platform.Native.macOS.MacOSCursorComponent + langs: + - csharp + - vb + name: Uninitialize() + nameWithType: MacOSCursorComponent.Uninitialize() + fullName: OpenTK.Platform.Native.macOS.MacOSCursorComponent.Uninitialize() + type: Method + source: + id: Uninitialize + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSCursorComponent.cs + startLine: 89 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform.Native.macOS + summary: Uninitialize the component. Frees any native resources used by the component. + example: [] + syntax: + content: public void Uninitialize() + content.vb: Public Sub Uninitialize() + overload: OpenTK.Platform.Native.macOS.MacOSCursorComponent.Uninitialize* + seealso: + - linkId: OpenTK.Platform.Toolkit.Uninit + commentId: M:OpenTK.Platform.Toolkit.Uninit + implements: + - OpenTK.Platform.IPalComponent.Uninitialize - uid: OpenTK.Platform.Native.macOS.MacOSCursorComponent.CanLoadSystemCursors commentId: P:OpenTK.Platform.Native.macOS.MacOSCursorComponent.CanLoadSystemCursors id: CanLoadSystemCursors @@ -182,7 +222,7 @@ items: source: id: CanLoadSystemCursors path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSCursorComponent.cs - startLine: 89 + startLine: 94 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS @@ -214,16 +254,16 @@ items: source: id: CanInspectSystemCursors path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSCursorComponent.cs - startLine: 92 + startLine: 97 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: >- True if the backend supports inspecting system cursor handles. - If true, functions like and works on system cursors. + If true, functions like and works on system cursors. - If false, these functions will fail. + If fals, these functions will fail. example: [] syntax: content: public bool CanInspectSystemCursors { get; } @@ -237,6 +277,10 @@ items: commentId: M:OpenTK.Platform.ICursorComponent.GetSize(OpenTK.Platform.CursorHandle,System.Int32@,System.Int32@) - linkId: OpenTK.Platform.ICursorComponent.GetHotspot(OpenTK.Platform.CursorHandle,System.Int32@,System.Int32@) commentId: M:OpenTK.Platform.ICursorComponent.GetHotspot(OpenTK.Platform.CursorHandle,System.Int32@,System.Int32@) + - linkId: OpenTK.Platform.ICursorComponent.CanLoadSystemCursors + commentId: P:OpenTK.Platform.ICursorComponent.CanLoadSystemCursors + - linkId: OpenTK.Platform.ICursorComponent.Create(OpenTK.Platform.SystemCursorType) + commentId: M:OpenTK.Platform.ICursorComponent.Create(OpenTK.Platform.SystemCursorType) implements: - OpenTK.Platform.ICursorComponent.CanInspectSystemCursors - uid: OpenTK.Platform.Native.macOS.MacOSCursorComponent.Create(OpenTK.Platform.SystemCursorType) @@ -253,12 +297,12 @@ items: source: id: Create path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSCursorComponent.cs - startLine: 237 + startLine: 242 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: Create a standard system cursor. - remarks: This function is only supported if is true. + remarks: This function is only supported if is true. example: [] syntax: content: public CursorHandle Create(SystemCursorType systemCursor) @@ -272,12 +316,16 @@ items: content.vb: Public Function Create(systemCursor As SystemCursorType) As CursorHandle overload: OpenTK.Platform.Native.macOS.MacOSCursorComponent.Create* exceptions: - - type: OpenTK.Platform.PalNotImplementedException - commentId: T:OpenTK.Platform.PalNotImplementedException + - type: System.PlatformNotSupportedException + commentId: T:System.PlatformNotSupportedException description: Driver does not implement this function. See . - - type: OpenTK.Platform.PlatformException - commentId: T:OpenTK.Platform.PlatformException - description: System does not provide cursor type selected by systemCursor. + seealso: + - linkId: OpenTK.Platform.ICursorComponent.CanLoadSystemCursors + commentId: P:OpenTK.Platform.ICursorComponent.CanLoadSystemCursors + - linkId: OpenTK.Platform.SystemCursorType + commentId: T:OpenTK.Platform.SystemCursorType + - linkId: OpenTK.Platform.ICursorComponent.Destroy(OpenTK.Platform.CursorHandle) + commentId: M:OpenTK.Platform.ICursorComponent.Destroy(OpenTK.Platform.CursorHandle) implements: - OpenTK.Platform.ICursorComponent.Create(OpenTK.Platform.SystemCursorType) - uid: OpenTK.Platform.Native.macOS.MacOSCursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.Int32,System.Int32) @@ -294,7 +342,7 @@ items: source: id: Create path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSCursorComponent.cs - startLine: 396 + startLine: 401 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS @@ -311,7 +359,7 @@ items: description: Height of the cursor image. - id: image type: System.ReadOnlySpan{System.Byte} - description: Buffer containing image data. + description: Buffer containing image data in RGBA order. - id: hotspotX type: System.Int32 description: The x coordinate of the cursor hotspot. @@ -326,10 +374,16 @@ items: exceptions: - type: System.ArgumentOutOfRangeException commentId: T:System.ArgumentOutOfRangeException - description: width or height is negative. + description: If width, height, hotspotX, or hotspotY are negative. + - type: System.ArgumentOutOfRangeException + commentId: T:System.ArgumentOutOfRangeException + description: If hotspotX or hotspotY are greater than width or height respectively. - type: System.ArgumentException commentId: T:System.ArgumentException description: image is smaller than specified dimensions. + seealso: + - linkId: OpenTK.Platform.ICursorComponent.Destroy(OpenTK.Platform.CursorHandle) + commentId: M:OpenTK.Platform.ICursorComponent.Destroy(OpenTK.Platform.CursorHandle) implements: - OpenTK.Platform.ICursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.Int32,System.Int32) nameWithType.vb: MacOSCursorComponent.Create(Integer, Integer, ReadOnlySpan(Of Byte), Integer, Integer) @@ -349,7 +403,7 @@ items: source: id: Create path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSCursorComponent.cs - startLine: 406 + startLine: 421 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS @@ -366,10 +420,10 @@ items: description: Height of the cursor image. - id: colorData type: System.ReadOnlySpan{System.Byte} - description: Buffer containing color data. + description: Buffer containing RGB color data. - id: maskData type: System.ReadOnlySpan{System.Byte} - description: Buffer containing mask data. + description: Buffer containing mask data. Pixels where the mask is 1 will be visible while mask value of 0 is transparent. - id: hotspotX type: System.Int32 description: The x coordinate of the cursor hotspot. @@ -384,10 +438,16 @@ items: exceptions: - type: System.ArgumentOutOfRangeException commentId: T:System.ArgumentOutOfRangeException - description: width or height is negative. + description: If width, height, hotspotX, or hotspotY are negative. + - type: System.ArgumentOutOfRangeException + commentId: T:System.ArgumentOutOfRangeException + description: If hotspotX or hotspotY are greater than width or height respectively. - type: System.ArgumentException commentId: T:System.ArgumentException description: colorData or maskData is smaller than specified dimensions. + seealso: + - linkId: OpenTK.Platform.ICursorComponent.Destroy(OpenTK.Platform.CursorHandle) + commentId: M:OpenTK.Platform.ICursorComponent.Destroy(OpenTK.Platform.CursorHandle) implements: - OpenTK.Platform.ICursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.ReadOnlySpan{System.Byte},System.Int32,System.Int32) nameWithType.vb: MacOSCursorComponent.Create(Integer, Integer, ReadOnlySpan(Of Byte), ReadOnlySpan(Of Byte), Integer, Integer) @@ -407,7 +467,7 @@ items: source: id: Create path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSCursorComponent.cs - startLine: 448 + startLine: 495 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS @@ -444,7 +504,7 @@ items: source: id: Destroy path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSCursorComponent.cs - startLine: 463 + startLine: 510 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS @@ -458,10 +518,13 @@ items: description: Handle to a cursor object. content.vb: Public Sub Destroy(handle As CursorHandle) overload: OpenTK.Platform.Native.macOS.MacOSCursorComponent.Destroy* - exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: handle is null. + seealso: + - linkId: OpenTK.Platform.ICursorComponent.Create(OpenTK.Platform.SystemCursorType) + commentId: M:OpenTK.Platform.ICursorComponent.Create(OpenTK.Platform.SystemCursorType) + - linkId: OpenTK.Platform.ICursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.Int32,System.Int32) + commentId: M:OpenTK.Platform.ICursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.Int32,System.Int32) + - linkId: OpenTK.Platform.ICursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.ReadOnlySpan{System.Byte},System.Int32,System.Int32) + commentId: M:OpenTK.Platform.ICursorComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte},System.ReadOnlySpan{System.Byte},System.Int32,System.Int32) implements: - OpenTK.Platform.ICursorComponent.Destroy(OpenTK.Platform.CursorHandle) - uid: OpenTK.Platform.Native.macOS.MacOSCursorComponent.IsSystemCursor(OpenTK.Platform.CursorHandle) @@ -478,11 +541,11 @@ items: source: id: IsSystemCursor path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSCursorComponent.cs - startLine: 492 + startLine: 539 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS - summary: Returns true if this cursor is a system cursor. + summary: Returns true if this cursor is a system cursor. example: [] syntax: content: public bool IsSystemCursor(CursorHandle handle) @@ -498,6 +561,8 @@ items: seealso: - linkId: OpenTK.Platform.ICursorComponent.Create(OpenTK.Platform.SystemCursorType) commentId: M:OpenTK.Platform.ICursorComponent.Create(OpenTK.Platform.SystemCursorType) + - linkId: OpenTK.Platform.ICursorComponent.CanLoadSystemCursors + commentId: P:OpenTK.Platform.ICursorComponent.CanLoadSystemCursors implements: - OpenTK.Platform.ICursorComponent.IsSystemCursor(OpenTK.Platform.CursorHandle) - uid: OpenTK.Platform.Native.macOS.MacOSCursorComponent.IsAnimatedCursor(OpenTK.Platform.CursorHandle) @@ -514,7 +579,7 @@ items: source: id: IsAnimatedCursor path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSCursorComponent.cs - startLine: 512 + startLine: 559 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS @@ -545,12 +610,12 @@ items: source: id: GetSize path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSCursorComponent.cs - startLine: 528 + startLine: 575 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: Get the size of the cursor image. - remarks: If handle is a system cursor and is false this function will fail. + remarks: If handle is a system cursor and is false this function will fail. example: [] syntax: content: public void GetSize(CursorHandle handle, out int width, out int height) @@ -566,10 +631,6 @@ items: description: Height of the cursor. content.vb: Public Sub GetSize(handle As CursorHandle, width As Integer, height As Integer) overload: OpenTK.Platform.Native.macOS.MacOSCursorComponent.GetSize* - exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: handle is null. seealso: - linkId: OpenTK.Platform.ICursorComponent.IsSystemCursor(OpenTK.Platform.CursorHandle) commentId: M:OpenTK.Platform.ICursorComponent.IsSystemCursor(OpenTK.Platform.CursorHandle) @@ -594,14 +655,11 @@ items: source: id: GetHotspot path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSCursorComponent.cs - startLine: 582 + startLine: 629 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS - summary: >- - Get the hotspot location of the mouse cursor. - - Getting the hotspot of a system cursor is not guaranteed to be possible, check before trying. + summary: Get the hotspot location of the mouse cursor. remarks: If handle is a system cursor and is false this function will fail. example: [] syntax: @@ -618,10 +676,6 @@ items: description: Y coordinate of the hotspot. content.vb: Public Sub GetHotspot(handle As CursorHandle, x As Integer, y As Integer) overload: OpenTK.Platform.Native.macOS.MacOSCursorComponent.GetHotspot* - exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: handle is null. seealso: - linkId: OpenTK.Platform.ICursorComponent.IsSystemCursor(OpenTK.Platform.CursorHandle) commentId: M:OpenTK.Platform.ICursorComponent.IsSystemCursor(OpenTK.Platform.CursorHandle) @@ -646,7 +700,7 @@ items: source: id: UpdateAnimation path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSCursorComponent.cs - startLine: 611 + startLine: 658 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS @@ -1030,6 +1084,19 @@ references: name: PalComponents nameWithType: PalComponents fullName: OpenTK.Platform.PalComponents +- uid: OpenTK.Core.Utility.ILogger + commentId: T:OpenTK.Core.Utility.ILogger + parent: OpenTK.Core.Utility + href: OpenTK.Core.Utility.ILogger.html + name: ILogger + nameWithType: ILogger + fullName: OpenTK.Core.Utility.ILogger +- uid: OpenTK.Platform.ToolkitOptions.Logger + commentId: P:OpenTK.Platform.ToolkitOptions.Logger + href: OpenTK.Platform.ToolkitOptions.html#OpenTK_Platform_ToolkitOptions_Logger + name: Logger + nameWithType: ToolkitOptions.Logger + fullName: OpenTK.Platform.ToolkitOptions.Logger - uid: OpenTK.Platform.Native.macOS.MacOSCursorComponent.Logger* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSCursorComponent.Logger href: OpenTK.Platform.Native.macOS.MacOSCursorComponent.html#OpenTK_Platform_Native_macOS_MacOSCursorComponent_Logger @@ -1043,13 +1110,6 @@ references: name: Logger nameWithType: IPalComponent.Logger fullName: OpenTK.Platform.IPalComponent.Logger -- uid: OpenTK.Core.Utility.ILogger - commentId: T:OpenTK.Core.Utility.ILogger - parent: OpenTK.Core.Utility - href: OpenTK.Core.Utility.ILogger.html - name: ILogger - nameWithType: ILogger - fullName: OpenTK.Core.Utility.ILogger - uid: OpenTK.Core.Utility commentId: N:OpenTK.Core.Utility href: OpenTK.html @@ -1080,6 +1140,37 @@ references: - uid: OpenTK.Core.Utility name: Utility href: OpenTK.Core.Utility.html +- uid: OpenTK.Platform.ToolkitOptions + commentId: T:OpenTK.Platform.ToolkitOptions + parent: OpenTK.Platform + href: OpenTK.Platform.ToolkitOptions.html + name: ToolkitOptions + nameWithType: ToolkitOptions + fullName: OpenTK.Platform.ToolkitOptions +- uid: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Init_OpenTK_Platform_ToolkitOptions_ + name: Init(ToolkitOptions) + nameWithType: Toolkit.Init(ToolkitOptions) + fullName: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + spec.csharp: + - uid: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + name: Init + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Init_OpenTK_Platform_ToolkitOptions_ + - name: ( + - uid: OpenTK.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Platform.ToolkitOptions.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + name: Init + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Init_OpenTK_Platform_ToolkitOptions_ + - name: ( + - uid: OpenTK.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Platform.ToolkitOptions.html + - name: ) - uid: OpenTK.Platform.Native.macOS.MacOSCursorComponent.Initialize* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSCursorComponent.Initialize href: OpenTK.Platform.Native.macOS.MacOSCursorComponent.html#OpenTK_Platform_Native_macOS_MacOSCursorComponent_Initialize_OpenTK_Platform_ToolkitOptions_ @@ -1111,13 +1202,49 @@ references: name: ToolkitOptions href: OpenTK.Platform.ToolkitOptions.html - name: ) -- uid: OpenTK.Platform.ToolkitOptions - commentId: T:OpenTK.Platform.ToolkitOptions - parent: OpenTK.Platform - href: OpenTK.Platform.ToolkitOptions.html - name: ToolkitOptions - nameWithType: ToolkitOptions - fullName: OpenTK.Platform.ToolkitOptions +- uid: OpenTK.Platform.Toolkit.Uninit + commentId: M:OpenTK.Platform.Toolkit.Uninit + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Uninit + name: Uninit() + nameWithType: Toolkit.Uninit() + fullName: OpenTK.Platform.Toolkit.Uninit() + spec.csharp: + - uid: OpenTK.Platform.Toolkit.Uninit + name: Uninit + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Uninit + - name: ( + - name: ) + spec.vb: + - uid: OpenTK.Platform.Toolkit.Uninit + name: Uninit + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Uninit + - name: ( + - name: ) +- uid: OpenTK.Platform.Native.macOS.MacOSCursorComponent.Uninitialize* + commentId: Overload:OpenTK.Platform.Native.macOS.MacOSCursorComponent.Uninitialize + href: OpenTK.Platform.Native.macOS.MacOSCursorComponent.html#OpenTK_Platform_Native_macOS_MacOSCursorComponent_Uninitialize + name: Uninitialize + nameWithType: MacOSCursorComponent.Uninitialize + fullName: OpenTK.Platform.Native.macOS.MacOSCursorComponent.Uninitialize +- uid: OpenTK.Platform.IPalComponent.Uninitialize + commentId: M:OpenTK.Platform.IPalComponent.Uninitialize + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + name: Uninitialize() + nameWithType: IPalComponent.Uninitialize() + fullName: OpenTK.Platform.IPalComponent.Uninitialize() + spec.csharp: + - uid: OpenTK.Platform.IPalComponent.Uninitialize + name: Uninitialize + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + - name: ( + - name: ) + spec.vb: + - uid: OpenTK.Platform.IPalComponent.Uninitialize + name: Uninitialize + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + - name: ( + - name: ) - uid: OpenTK.Platform.ICursorComponent.Create(OpenTK.Platform.SystemCursorType) commentId: M:OpenTK.Platform.ICursorComponent.Create(OpenTK.Platform.SystemCursorType) parent: OpenTK.Platform.ICursorComponent @@ -1294,24 +1421,6 @@ references: name: CanInspectSystemCursors nameWithType: ICursorComponent.CanInspectSystemCursors fullName: OpenTK.Platform.ICursorComponent.CanInspectSystemCursors -- uid: OpenTK.Platform.PalNotImplementedException - commentId: T:OpenTK.Platform.PalNotImplementedException - href: OpenTK.Platform.PalNotImplementedException.html - name: PalNotImplementedException - nameWithType: PalNotImplementedException - fullName: OpenTK.Platform.PalNotImplementedException -- uid: OpenTK.Platform.PlatformException - commentId: T:OpenTK.Platform.PlatformException - href: OpenTK.Platform.PlatformException.html - name: PlatformException - nameWithType: PlatformException - fullName: OpenTK.Platform.PlatformException -- uid: OpenTK.Platform.Native.macOS.MacOSCursorComponent.Create* - commentId: Overload:OpenTK.Platform.Native.macOS.MacOSCursorComponent.Create - href: OpenTK.Platform.Native.macOS.MacOSCursorComponent.html#OpenTK_Platform_Native_macOS_MacOSCursorComponent_Create_OpenTK_Platform_SystemCursorType_ - name: Create - nameWithType: MacOSCursorComponent.Create - fullName: OpenTK.Platform.Native.macOS.MacOSCursorComponent.Create - uid: OpenTK.Platform.SystemCursorType commentId: T:OpenTK.Platform.SystemCursorType parent: OpenTK.Platform @@ -1319,6 +1428,44 @@ references: name: SystemCursorType nameWithType: SystemCursorType fullName: OpenTK.Platform.SystemCursorType +- uid: OpenTK.Platform.ICursorComponent.Destroy(OpenTK.Platform.CursorHandle) + commentId: M:OpenTK.Platform.ICursorComponent.Destroy(OpenTK.Platform.CursorHandle) + parent: OpenTK.Platform.ICursorComponent + href: OpenTK.Platform.ICursorComponent.html#OpenTK_Platform_ICursorComponent_Destroy_OpenTK_Platform_CursorHandle_ + name: Destroy(CursorHandle) + nameWithType: ICursorComponent.Destroy(CursorHandle) + fullName: OpenTK.Platform.ICursorComponent.Destroy(OpenTK.Platform.CursorHandle) + spec.csharp: + - uid: OpenTK.Platform.ICursorComponent.Destroy(OpenTK.Platform.CursorHandle) + name: Destroy + href: OpenTK.Platform.ICursorComponent.html#OpenTK_Platform_ICursorComponent_Destroy_OpenTK_Platform_CursorHandle_ + - name: ( + - uid: OpenTK.Platform.CursorHandle + name: CursorHandle + href: OpenTK.Platform.CursorHandle.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.ICursorComponent.Destroy(OpenTK.Platform.CursorHandle) + name: Destroy + href: OpenTK.Platform.ICursorComponent.html#OpenTK_Platform_ICursorComponent_Destroy_OpenTK_Platform_CursorHandle_ + - name: ( + - uid: OpenTK.Platform.CursorHandle + name: CursorHandle + href: OpenTK.Platform.CursorHandle.html + - name: ) +- uid: System.PlatformNotSupportedException + commentId: T:System.PlatformNotSupportedException + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.platformnotsupportedexception + name: PlatformNotSupportedException + nameWithType: PlatformNotSupportedException + fullName: System.PlatformNotSupportedException +- uid: OpenTK.Platform.Native.macOS.MacOSCursorComponent.Create* + commentId: Overload:OpenTK.Platform.Native.macOS.MacOSCursorComponent.Create + href: OpenTK.Platform.Native.macOS.MacOSCursorComponent.html#OpenTK_Platform_Native_macOS_MacOSCursorComponent_Create_OpenTK_Platform_SystemCursorType_ + name: Create + nameWithType: MacOSCursorComponent.Create + fullName: OpenTK.Platform.Native.macOS.MacOSCursorComponent.Create - uid: OpenTK.Platform.CursorHandle commentId: T:OpenTK.Platform.CursorHandle parent: OpenTK.Platform @@ -1658,44 +1805,12 @@ references: nameWithType.vb: Single fullName.vb: Single name.vb: Single -- uid: System.ArgumentNullException - commentId: T:System.ArgumentNullException - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.argumentnullexception - name: ArgumentNullException - nameWithType: ArgumentNullException - fullName: System.ArgumentNullException - uid: OpenTK.Platform.Native.macOS.MacOSCursorComponent.Destroy* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSCursorComponent.Destroy href: OpenTK.Platform.Native.macOS.MacOSCursorComponent.html#OpenTK_Platform_Native_macOS_MacOSCursorComponent_Destroy_OpenTK_Platform_CursorHandle_ name: Destroy nameWithType: MacOSCursorComponent.Destroy fullName: OpenTK.Platform.Native.macOS.MacOSCursorComponent.Destroy -- uid: OpenTK.Platform.ICursorComponent.Destroy(OpenTK.Platform.CursorHandle) - commentId: M:OpenTK.Platform.ICursorComponent.Destroy(OpenTK.Platform.CursorHandle) - parent: OpenTK.Platform.ICursorComponent - href: OpenTK.Platform.ICursorComponent.html#OpenTK_Platform_ICursorComponent_Destroy_OpenTK_Platform_CursorHandle_ - name: Destroy(CursorHandle) - nameWithType: ICursorComponent.Destroy(CursorHandle) - fullName: OpenTK.Platform.ICursorComponent.Destroy(OpenTK.Platform.CursorHandle) - spec.csharp: - - uid: OpenTK.Platform.ICursorComponent.Destroy(OpenTK.Platform.CursorHandle) - name: Destroy - href: OpenTK.Platform.ICursorComponent.html#OpenTK_Platform_ICursorComponent_Destroy_OpenTK_Platform_CursorHandle_ - - name: ( - - uid: OpenTK.Platform.CursorHandle - name: CursorHandle - href: OpenTK.Platform.CursorHandle.html - - name: ) - spec.vb: - - uid: OpenTK.Platform.ICursorComponent.Destroy(OpenTK.Platform.CursorHandle) - name: Destroy - href: OpenTK.Platform.ICursorComponent.html#OpenTK_Platform_ICursorComponent_Destroy_OpenTK_Platform_CursorHandle_ - - name: ( - - uid: OpenTK.Platform.CursorHandle - name: CursorHandle - href: OpenTK.Platform.CursorHandle.html - - name: ) - uid: OpenTK.Platform.Native.macOS.MacOSCursorComponent.IsSystemCursor* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSCursorComponent.IsSystemCursor href: OpenTK.Platform.Native.macOS.MacOSCursorComponent.html#OpenTK_Platform_Native_macOS_MacOSCursorComponent_IsSystemCursor_OpenTK_Platform_CursorHandle_ diff --git a/api/OpenTK.Platform.Native.macOS.MacOSDialogComponent.yml b/api/OpenTK.Platform.Native.macOS.MacOSDialogComponent.yml index 106ecc7e..7cbdd6a9 100644 --- a/api/OpenTK.Platform.Native.macOS.MacOSDialogComponent.yml +++ b/api/OpenTK.Platform.Native.macOS.MacOSDialogComponent.yml @@ -11,8 +11,12 @@ items: - OpenTK.Platform.Native.macOS.MacOSDialogComponent.Name - OpenTK.Platform.Native.macOS.MacOSDialogComponent.Provides - OpenTK.Platform.Native.macOS.MacOSDialogComponent.ShowMessageBox(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.MessageBoxType,OpenTK.Platform.IconHandle) + - OpenTK.Platform.Native.macOS.MacOSDialogComponent.ShowMessageBoxNoWindow(System.String,System.String,OpenTK.Platform.MessageBoxType,OpenTK.Platform.IconHandle) - OpenTK.Platform.Native.macOS.MacOSDialogComponent.ShowOpenDialog(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.DialogFileFilter[],OpenTK.Platform.OpenDialogOptions) + - OpenTK.Platform.Native.macOS.MacOSDialogComponent.ShowOpenDialogNoWindow(System.String,System.String,OpenTK.Platform.DialogFileFilter[],OpenTK.Platform.OpenDialogOptions) - OpenTK.Platform.Native.macOS.MacOSDialogComponent.ShowSaveDialog(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.DialogFileFilter[],OpenTK.Platform.SaveDialogOptions) + - OpenTK.Platform.Native.macOS.MacOSDialogComponent.ShowSaveDialogNoWindow(System.String,System.String,OpenTK.Platform.DialogFileFilter[],OpenTK.Platform.SaveDialogOptions) + - OpenTK.Platform.Native.macOS.MacOSDialogComponent.Uninitialize langs: - csharp - vb @@ -23,7 +27,7 @@ items: source: id: MacOSDialogComponent path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSDialogComponent.cs - startLine: 12 + startLine: 14 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS @@ -57,7 +61,7 @@ items: source: id: Name path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSDialogComponent.cs - startLine: 74 + startLine: 88 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS @@ -86,7 +90,7 @@ items: source: id: Provides path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSDialogComponent.cs - startLine: 77 + startLine: 91 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS @@ -115,11 +119,11 @@ items: source: id: Logger path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSDialogComponent.cs - startLine: 80 + startLine: 94 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS - summary: Provides a logger for this component. + summary: The logger that this component uses to log diagnostic messages. example: [] syntax: content: public ILogger? Logger { get; set; } @@ -128,6 +132,11 @@ items: type: OpenTK.Core.Utility.ILogger content.vb: Public Property Logger As ILogger overload: OpenTK.Platform.Native.macOS.MacOSDialogComponent.Logger* + seealso: + - linkId: OpenTK.Core.Utility.ILogger + commentId: T:OpenTK.Core.Utility.ILogger + - linkId: OpenTK.Platform.ToolkitOptions.Logger + commentId: P:OpenTK.Platform.ToolkitOptions.Logger implements: - OpenTK.Platform.IPalComponent.Logger - uid: OpenTK.Platform.Native.macOS.MacOSDialogComponent.Initialize(OpenTK.Platform.ToolkitOptions) @@ -144,7 +153,7 @@ items: source: id: Initialize path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSDialogComponent.cs - startLine: 83 + startLine: 99 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS @@ -158,8 +167,42 @@ items: description: The options to initialize the component with. content.vb: Public Sub Initialize(options As ToolkitOptions) overload: OpenTK.Platform.Native.macOS.MacOSDialogComponent.Initialize* + seealso: + - linkId: OpenTK.Platform.ToolkitOptions + commentId: T:OpenTK.Platform.ToolkitOptions + - linkId: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) implements: - OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) +- uid: OpenTK.Platform.Native.macOS.MacOSDialogComponent.Uninitialize + commentId: M:OpenTK.Platform.Native.macOS.MacOSDialogComponent.Uninitialize + id: Uninitialize + parent: OpenTK.Platform.Native.macOS.MacOSDialogComponent + langs: + - csharp + - vb + name: Uninitialize() + nameWithType: MacOSDialogComponent.Uninitialize() + fullName: OpenTK.Platform.Native.macOS.MacOSDialogComponent.Uninitialize() + type: Method + source: + id: Uninitialize + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSDialogComponent.cs + startLine: 115 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform.Native.macOS + summary: Uninitialize the component. Frees any native resources used by the component. + example: [] + syntax: + content: public void Uninitialize() + content.vb: Public Sub Uninitialize() + overload: OpenTK.Platform.Native.macOS.MacOSDialogComponent.Uninitialize* + seealso: + - linkId: OpenTK.Platform.Toolkit.Uninit + commentId: M:OpenTK.Platform.Toolkit.Uninit + implements: + - OpenTK.Platform.IPalComponent.Uninitialize - uid: OpenTK.Platform.Native.macOS.MacOSDialogComponent.CanTargetFolders commentId: P:OpenTK.Platform.Native.macOS.MacOSDialogComponent.CanTargetFolders id: CanTargetFolders @@ -174,14 +217,14 @@ items: source: id: CanTargetFolders path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSDialogComponent.cs - startLine: 88 + startLine: 215 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: >- If the value of this property is true will work. - Otherwise these flags will be ignored. + Otherwise this flag will be ignored. example: [] syntax: content: public bool CanTargetFolders { get; } @@ -191,6 +234,8 @@ items: content.vb: Public ReadOnly Property CanTargetFolders As Boolean overload: OpenTK.Platform.Native.macOS.MacOSDialogComponent.CanTargetFolders* seealso: + - linkId: OpenTK.Platform.Toolkit.Dialog + commentId: P:OpenTK.Platform.Toolkit.Dialog - linkId: OpenTK.Platform.OpenDialogOptions.SelectDirectory commentId: F:OpenTK.Platform.OpenDialogOptions.SelectDirectory - linkId: OpenTK.Platform.IDialogComponent.ShowOpenDialog(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.DialogFileFilter[],OpenTK.Platform.OpenDialogOptions) @@ -211,11 +256,12 @@ items: source: id: ShowMessageBox path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSDialogComponent.cs - startLine: 91 + startLine: 218 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: Shows a modal message box. + remarks: This function runs a modal event loop and will only return once the dialog has been dissmissed by pressing any of it's buttons. example: [] syntax: content: public MessageBoxButton ShowMessageBox(WindowHandle parent, string title, string content, MessageBoxType messageBoxType, IconHandle? customIcon = null) @@ -228,7 +274,7 @@ items: description: The title of the dialog box. - id: content type: System.String - description: The content text of the dialog box. + description: The content text of the dialog box. This is the prompt to the user, explain what they should do. - id: messageBoxType type: OpenTK.Platform.MessageBoxType description: The type of message box. Determines button layout and default icon. @@ -240,11 +286,73 @@ items: description: The pressed message box button. content.vb: Public Function ShowMessageBox(parent As WindowHandle, title As String, content As String, messageBoxType As MessageBoxType, customIcon As IconHandle = Nothing) As MessageBoxButton overload: OpenTK.Platform.Native.macOS.MacOSDialogComponent.ShowMessageBox* + seealso: + - linkId: OpenTK.Platform.MessageBoxType + commentId: T:OpenTK.Platform.MessageBoxType + - linkId: OpenTK.Platform.MessageBoxButton + commentId: T:OpenTK.Platform.MessageBoxButton + - linkId: OpenTK.Platform.Toolkit.Icon + commentId: P:OpenTK.Platform.Toolkit.Icon + - linkId: OpenTK.Platform.IIconComponent + commentId: T:OpenTK.Platform.IIconComponent implements: - OpenTK.Platform.IDialogComponent.ShowMessageBox(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.MessageBoxType,OpenTK.Platform.IconHandle) nameWithType.vb: MacOSDialogComponent.ShowMessageBox(WindowHandle, String, String, MessageBoxType, IconHandle) fullName.vb: OpenTK.Platform.Native.macOS.MacOSDialogComponent.ShowMessageBox(OpenTK.Platform.WindowHandle, String, String, OpenTK.Platform.MessageBoxType, OpenTK.Platform.IconHandle) name.vb: ShowMessageBox(WindowHandle, String, String, MessageBoxType, IconHandle) +- uid: OpenTK.Platform.Native.macOS.MacOSDialogComponent.ShowMessageBoxNoWindow(System.String,System.String,OpenTK.Platform.MessageBoxType,OpenTK.Platform.IconHandle) + commentId: M:OpenTK.Platform.Native.macOS.MacOSDialogComponent.ShowMessageBoxNoWindow(System.String,System.String,OpenTK.Platform.MessageBoxType,OpenTK.Platform.IconHandle) + id: ShowMessageBoxNoWindow(System.String,System.String,OpenTK.Platform.MessageBoxType,OpenTK.Platform.IconHandle) + parent: OpenTK.Platform.Native.macOS.MacOSDialogComponent + langs: + - csharp + - vb + name: ShowMessageBoxNoWindow(string, string, MessageBoxType, IconHandle?) + nameWithType: MacOSDialogComponent.ShowMessageBoxNoWindow(string, string, MessageBoxType, IconHandle?) + fullName: OpenTK.Platform.Native.macOS.MacOSDialogComponent.ShowMessageBoxNoWindow(string, string, OpenTK.Platform.MessageBoxType, OpenTK.Platform.IconHandle?) + type: Method + source: + id: ShowMessageBoxNoWindow + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSDialogComponent.cs + startLine: 326 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform.Native.macOS + summary: Shows a modal message box not attached to any specific window. + remarks: This function runs a modal event loop and will only return once the dialog has been dissmissed by pressing any of it's buttons. + example: [] + syntax: + content: public MessageBoxButton ShowMessageBoxNoWindow(string title, string content, MessageBoxType messageBoxType, IconHandle? customIcon = null) + parameters: + - id: title + type: System.String + description: The title of the dialog box. + - id: content + type: System.String + description: The content text of the dialog box. This is the prompt to the user, explain what they should do. + - id: messageBoxType + type: OpenTK.Platform.MessageBoxType + description: The type of message box. Determines button layout and default icon. + - id: customIcon + type: OpenTK.Platform.IconHandle + description: An optional custom icon to use instead of the default one. + return: + type: OpenTK.Platform.MessageBoxButton + description: The pressed message box button. + content.vb: Public Function ShowMessageBoxNoWindow(title As String, content As String, messageBoxType As MessageBoxType, customIcon As IconHandle = Nothing) As MessageBoxButton + overload: OpenTK.Platform.Native.macOS.MacOSDialogComponent.ShowMessageBoxNoWindow* + seealso: + - linkId: OpenTK.Platform.MessageBoxType + commentId: T:OpenTK.Platform.MessageBoxType + - linkId: OpenTK.Platform.MessageBoxButton + commentId: T:OpenTK.Platform.MessageBoxButton + - linkId: OpenTK.Platform.Toolkit.Icon + commentId: P:OpenTK.Platform.Toolkit.Icon + - linkId: OpenTK.Platform.IIconComponent + commentId: T:OpenTK.Platform.IIconComponent + nameWithType.vb: MacOSDialogComponent.ShowMessageBoxNoWindow(String, String, MessageBoxType, IconHandle) + fullName.vb: OpenTK.Platform.Native.macOS.MacOSDialogComponent.ShowMessageBoxNoWindow(String, String, OpenTK.Platform.MessageBoxType, OpenTK.Platform.IconHandle) + name.vb: ShowMessageBoxNoWindow(String, String, MessageBoxType, IconHandle) - uid: OpenTK.Platform.Native.macOS.MacOSDialogComponent.ShowOpenDialog(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.DialogFileFilter[],OpenTK.Platform.OpenDialogOptions) commentId: M:OpenTK.Platform.Native.macOS.MacOSDialogComponent.ShowOpenDialog(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.DialogFileFilter[],OpenTK.Platform.OpenDialogOptions) id: ShowOpenDialog(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.DialogFileFilter[],OpenTK.Platform.OpenDialogOptions) @@ -259,11 +367,12 @@ items: source: id: ShowOpenDialog path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSDialogComponent.cs - startLine: 222 + startLine: 458 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: Shows a modal "open file/folder" dialog. + remarks: This function runs a modal event loop and will only return once the dialog has been dissmissed by pressing any of it's buttons. example: [] syntax: content: public List? ShowOpenDialog(WindowHandle parent, string title, string directory, DialogFileFilter[]? allowedExtensions, OpenDialogOptions options) @@ -305,6 +414,62 @@ items: nameWithType.vb: MacOSDialogComponent.ShowOpenDialog(WindowHandle, String, String, DialogFileFilter(), OpenDialogOptions) fullName.vb: OpenTK.Platform.Native.macOS.MacOSDialogComponent.ShowOpenDialog(OpenTK.Platform.WindowHandle, String, String, OpenTK.Platform.DialogFileFilter(), OpenTK.Platform.OpenDialogOptions) name.vb: ShowOpenDialog(WindowHandle, String, String, DialogFileFilter(), OpenDialogOptions) +- uid: OpenTK.Platform.Native.macOS.MacOSDialogComponent.ShowOpenDialogNoWindow(System.String,System.String,OpenTK.Platform.DialogFileFilter[],OpenTK.Platform.OpenDialogOptions) + commentId: M:OpenTK.Platform.Native.macOS.MacOSDialogComponent.ShowOpenDialogNoWindow(System.String,System.String,OpenTK.Platform.DialogFileFilter[],OpenTK.Platform.OpenDialogOptions) + id: ShowOpenDialogNoWindow(System.String,System.String,OpenTK.Platform.DialogFileFilter[],OpenTK.Platform.OpenDialogOptions) + parent: OpenTK.Platform.Native.macOS.MacOSDialogComponent + langs: + - csharp + - vb + name: ShowOpenDialogNoWindow(string, string, DialogFileFilter[]?, OpenDialogOptions) + nameWithType: MacOSDialogComponent.ShowOpenDialogNoWindow(string, string, DialogFileFilter[]?, OpenDialogOptions) + fullName: OpenTK.Platform.Native.macOS.MacOSDialogComponent.ShowOpenDialogNoWindow(string, string, OpenTK.Platform.DialogFileFilter[]?, OpenTK.Platform.OpenDialogOptions) + type: Method + source: + id: ShowOpenDialogNoWindow + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSDialogComponent.cs + startLine: 520 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform.Native.macOS + summary: Shows a modal "open file/folder" dialog not attached to any specific window. + remarks: This function runs a modal event loop and will only return once the dialog has been dissmissed by pressing any of it's buttons. + example: [] + syntax: + content: public List? ShowOpenDialogNoWindow(string title, string directory, DialogFileFilter[]? allowedExtensions, OpenDialogOptions options) + parameters: + - id: title + type: System.String + description: The title of the dialog. + - id: directory + type: System.String + description: The start directory of the file dialog. + - id: allowedExtensions + type: OpenTK.Platform.DialogFileFilter[] + description: A list of file filters that filter valid files to open. See for more info. + - id: options + type: OpenTK.Platform.OpenDialogOptions + description: Additional options for the file dialog (e.g. for allowing multiple files to be selected.) + return: + type: System.Collections.Generic.List{System.String} + description: >- + A list of selected files or null if no files where selected. + + If is not specified the list will only contain a single element. + content.vb: Public Function ShowOpenDialogNoWindow(title As String, directory As String, allowedExtensions As DialogFileFilter(), options As OpenDialogOptions) As List(Of String) + overload: OpenTK.Platform.Native.macOS.MacOSDialogComponent.ShowOpenDialogNoWindow* + seealso: + - linkId: OpenTK.Platform.DialogFileFilter + commentId: T:OpenTK.Platform.DialogFileFilter + - linkId: OpenTK.Platform.OpenDialogOptions + commentId: T:OpenTK.Platform.OpenDialogOptions + - linkId: OpenTK.Platform.IDialogComponent.ShowSaveDialog(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.DialogFileFilter[],OpenTK.Platform.SaveDialogOptions) + commentId: M:OpenTK.Platform.IDialogComponent.ShowSaveDialog(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.DialogFileFilter[],OpenTK.Platform.SaveDialogOptions) + - linkId: OpenTK.Platform.IDialogComponent.CanTargetFolders + commentId: P:OpenTK.Platform.IDialogComponent.CanTargetFolders + nameWithType.vb: MacOSDialogComponent.ShowOpenDialogNoWindow(String, String, DialogFileFilter(), OpenDialogOptions) + fullName.vb: OpenTK.Platform.Native.macOS.MacOSDialogComponent.ShowOpenDialogNoWindow(String, String, OpenTK.Platform.DialogFileFilter(), OpenTK.Platform.OpenDialogOptions) + name.vb: ShowOpenDialogNoWindow(String, String, DialogFileFilter(), OpenDialogOptions) - uid: OpenTK.Platform.Native.macOS.MacOSDialogComponent.ShowSaveDialog(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.DialogFileFilter[],OpenTK.Platform.SaveDialogOptions) commentId: M:OpenTK.Platform.Native.macOS.MacOSDialogComponent.ShowSaveDialog(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.DialogFileFilter[],OpenTK.Platform.SaveDialogOptions) id: ShowSaveDialog(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.DialogFileFilter[],OpenTK.Platform.SaveDialogOptions) @@ -319,11 +484,12 @@ items: source: id: ShowSaveDialog path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSDialogComponent.cs - startLine: 281 + startLine: 576 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: Shows a modal "save file" dialog. + remarks: This function runs a modal event loop and will only return once the dialog has been dissmissed by pressing any of it's buttons. example: [] syntax: content: public string? ShowSaveDialog(WindowHandle parent, string title, string directory, DialogFileFilter[]? allowedExtensions, SaveDialogOptions options) @@ -358,6 +524,62 @@ items: nameWithType.vb: MacOSDialogComponent.ShowSaveDialog(WindowHandle, String, String, DialogFileFilter(), SaveDialogOptions) fullName.vb: OpenTK.Platform.Native.macOS.MacOSDialogComponent.ShowSaveDialog(OpenTK.Platform.WindowHandle, String, String, OpenTK.Platform.DialogFileFilter(), OpenTK.Platform.SaveDialogOptions) name.vb: ShowSaveDialog(WindowHandle, String, String, DialogFileFilter(), SaveDialogOptions) +- uid: OpenTK.Platform.Native.macOS.MacOSDialogComponent.ShowSaveDialogNoWindow(System.String,System.String,OpenTK.Platform.DialogFileFilter[],OpenTK.Platform.SaveDialogOptions) + commentId: M:OpenTK.Platform.Native.macOS.MacOSDialogComponent.ShowSaveDialogNoWindow(System.String,System.String,OpenTK.Platform.DialogFileFilter[],OpenTK.Platform.SaveDialogOptions) + id: ShowSaveDialogNoWindow(System.String,System.String,OpenTK.Platform.DialogFileFilter[],OpenTK.Platform.SaveDialogOptions) + parent: OpenTK.Platform.Native.macOS.MacOSDialogComponent + langs: + - csharp + - vb + name: ShowSaveDialogNoWindow(string, string, DialogFileFilter[]?, SaveDialogOptions) + nameWithType: MacOSDialogComponent.ShowSaveDialogNoWindow(string, string, DialogFileFilter[]?, SaveDialogOptions) + fullName: OpenTK.Platform.Native.macOS.MacOSDialogComponent.ShowSaveDialogNoWindow(string, string, OpenTK.Platform.DialogFileFilter[]?, OpenTK.Platform.SaveDialogOptions) + type: Method + source: + id: ShowSaveDialogNoWindow + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSDialogComponent.cs + startLine: 617 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform.Native.macOS + summary: Shows a modal "save file" dialog not attached to any specific window. + remarks: This function runs a modal event loop and will only return once the dialog has been dissmissed by pressing any of it's buttons. + example: [] + syntax: + content: public string? ShowSaveDialogNoWindow(string title, string directory, DialogFileFilter[]? allowedExtensions, SaveDialogOptions options) + parameters: + - id: title + type: System.String + description: The title of the dialog. + - id: directory + type: System.String + description: The start directory of the file dialog. + - id: allowedExtensions + type: OpenTK.Platform.DialogFileFilter[] + description: A list of file filters that filter valid files to open. See for more info. + - id: options + type: OpenTK.Platform.SaveDialogOptions + description: Additional options for the file dialog (e.g. for allowing multiple files to be selected.) + return: + type: System.String + description: >- + A list of selected files or null if no files where selected. + + If is not specified the list will only contain a single element. + content.vb: Public Function ShowSaveDialogNoWindow(title As String, directory As String, allowedExtensions As DialogFileFilter(), options As SaveDialogOptions) As String + overload: OpenTK.Platform.Native.macOS.MacOSDialogComponent.ShowSaveDialogNoWindow* + seealso: + - linkId: OpenTK.Platform.DialogFileFilter + commentId: T:OpenTK.Platform.DialogFileFilter + - linkId: OpenTK.Platform.OpenDialogOptions + commentId: T:OpenTK.Platform.OpenDialogOptions + - linkId: OpenTK.Platform.IDialogComponent.ShowSaveDialog(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.DialogFileFilter[],OpenTK.Platform.SaveDialogOptions) + commentId: M:OpenTK.Platform.IDialogComponent.ShowSaveDialog(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.DialogFileFilter[],OpenTK.Platform.SaveDialogOptions) + - linkId: OpenTK.Platform.IDialogComponent.CanTargetFolders + commentId: P:OpenTK.Platform.IDialogComponent.CanTargetFolders + nameWithType.vb: MacOSDialogComponent.ShowSaveDialogNoWindow(String, String, DialogFileFilter(), SaveDialogOptions) + fullName.vb: OpenTK.Platform.Native.macOS.MacOSDialogComponent.ShowSaveDialogNoWindow(String, String, OpenTK.Platform.DialogFileFilter(), OpenTK.Platform.SaveDialogOptions) + name.vb: ShowSaveDialogNoWindow(String, String, DialogFileFilter(), SaveDialogOptions) references: - uid: OpenTK.Platform.Native.macOS commentId: N:OpenTK.Platform.Native.macOS @@ -714,6 +936,19 @@ references: name: PalComponents nameWithType: PalComponents fullName: OpenTK.Platform.PalComponents +- uid: OpenTK.Core.Utility.ILogger + commentId: T:OpenTK.Core.Utility.ILogger + parent: OpenTK.Core.Utility + href: OpenTK.Core.Utility.ILogger.html + name: ILogger + nameWithType: ILogger + fullName: OpenTK.Core.Utility.ILogger +- uid: OpenTK.Platform.ToolkitOptions.Logger + commentId: P:OpenTK.Platform.ToolkitOptions.Logger + href: OpenTK.Platform.ToolkitOptions.html#OpenTK_Platform_ToolkitOptions_Logger + name: Logger + nameWithType: ToolkitOptions.Logger + fullName: OpenTK.Platform.ToolkitOptions.Logger - uid: OpenTK.Platform.Native.macOS.MacOSDialogComponent.Logger* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSDialogComponent.Logger href: OpenTK.Platform.Native.macOS.MacOSDialogComponent.html#OpenTK_Platform_Native_macOS_MacOSDialogComponent_Logger @@ -727,13 +962,6 @@ references: name: Logger nameWithType: IPalComponent.Logger fullName: OpenTK.Platform.IPalComponent.Logger -- uid: OpenTK.Core.Utility.ILogger - commentId: T:OpenTK.Core.Utility.ILogger - parent: OpenTK.Core.Utility - href: OpenTK.Core.Utility.ILogger.html - name: ILogger - nameWithType: ILogger - fullName: OpenTK.Core.Utility.ILogger - uid: OpenTK.Core.Utility commentId: N:OpenTK.Core.Utility href: OpenTK.html @@ -764,6 +992,37 @@ references: - uid: OpenTK.Core.Utility name: Utility href: OpenTK.Core.Utility.html +- uid: OpenTK.Platform.ToolkitOptions + commentId: T:OpenTK.Platform.ToolkitOptions + parent: OpenTK.Platform + href: OpenTK.Platform.ToolkitOptions.html + name: ToolkitOptions + nameWithType: ToolkitOptions + fullName: OpenTK.Platform.ToolkitOptions +- uid: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Init_OpenTK_Platform_ToolkitOptions_ + name: Init(ToolkitOptions) + nameWithType: Toolkit.Init(ToolkitOptions) + fullName: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + spec.csharp: + - uid: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + name: Init + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Init_OpenTK_Platform_ToolkitOptions_ + - name: ( + - uid: OpenTK.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Platform.ToolkitOptions.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + name: Init + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Init_OpenTK_Platform_ToolkitOptions_ + - name: ( + - uid: OpenTK.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Platform.ToolkitOptions.html + - name: ) - uid: OpenTK.Platform.Native.macOS.MacOSDialogComponent.Initialize* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSDialogComponent.Initialize href: OpenTK.Platform.Native.macOS.MacOSDialogComponent.html#OpenTK_Platform_Native_macOS_MacOSDialogComponent_Initialize_OpenTK_Platform_ToolkitOptions_ @@ -795,13 +1054,55 @@ references: name: ToolkitOptions href: OpenTK.Platform.ToolkitOptions.html - name: ) -- uid: OpenTK.Platform.ToolkitOptions - commentId: T:OpenTK.Platform.ToolkitOptions - parent: OpenTK.Platform - href: OpenTK.Platform.ToolkitOptions.html - name: ToolkitOptions - nameWithType: ToolkitOptions - fullName: OpenTK.Platform.ToolkitOptions +- uid: OpenTK.Platform.Toolkit.Uninit + commentId: M:OpenTK.Platform.Toolkit.Uninit + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Uninit + name: Uninit() + nameWithType: Toolkit.Uninit() + fullName: OpenTK.Platform.Toolkit.Uninit() + spec.csharp: + - uid: OpenTK.Platform.Toolkit.Uninit + name: Uninit + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Uninit + - name: ( + - name: ) + spec.vb: + - uid: OpenTK.Platform.Toolkit.Uninit + name: Uninit + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Uninit + - name: ( + - name: ) +- uid: OpenTK.Platform.Native.macOS.MacOSDialogComponent.Uninitialize* + commentId: Overload:OpenTK.Platform.Native.macOS.MacOSDialogComponent.Uninitialize + href: OpenTK.Platform.Native.macOS.MacOSDialogComponent.html#OpenTK_Platform_Native_macOS_MacOSDialogComponent_Uninitialize + name: Uninitialize + nameWithType: MacOSDialogComponent.Uninitialize + fullName: OpenTK.Platform.Native.macOS.MacOSDialogComponent.Uninitialize +- uid: OpenTK.Platform.IPalComponent.Uninitialize + commentId: M:OpenTK.Platform.IPalComponent.Uninitialize + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + name: Uninitialize() + nameWithType: IPalComponent.Uninitialize() + fullName: OpenTK.Platform.IPalComponent.Uninitialize() + spec.csharp: + - uid: OpenTK.Platform.IPalComponent.Uninitialize + name: Uninitialize + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + - name: ( + - name: ) + spec.vb: + - uid: OpenTK.Platform.IPalComponent.Uninitialize + name: Uninitialize + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + - name: ( + - name: ) +- uid: OpenTK.Platform.Toolkit.Dialog + commentId: P:OpenTK.Platform.Toolkit.Dialog + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Dialog + name: Dialog + nameWithType: Toolkit.Dialog + fullName: OpenTK.Platform.Toolkit.Dialog - uid: OpenTK.Platform.OpenDialogOptions.SelectDirectory commentId: F:OpenTK.Platform.OpenDialogOptions.SelectDirectory href: OpenTK.Platform.OpenDialogOptions.html#OpenTK_Platform_OpenDialogOptions_SelectDirectory @@ -909,6 +1210,33 @@ references: nameWithType.vb: Boolean fullName.vb: Boolean name.vb: Boolean +- uid: OpenTK.Platform.MessageBoxType + commentId: T:OpenTK.Platform.MessageBoxType + parent: OpenTK.Platform + href: OpenTK.Platform.MessageBoxType.html + name: MessageBoxType + nameWithType: MessageBoxType + fullName: OpenTK.Platform.MessageBoxType +- uid: OpenTK.Platform.MessageBoxButton + commentId: T:OpenTK.Platform.MessageBoxButton + parent: OpenTK.Platform + href: OpenTK.Platform.MessageBoxButton.html + name: MessageBoxButton + nameWithType: MessageBoxButton + fullName: OpenTK.Platform.MessageBoxButton +- uid: OpenTK.Platform.Toolkit.Icon + commentId: P:OpenTK.Platform.Toolkit.Icon + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Icon + name: Icon + nameWithType: Toolkit.Icon + fullName: OpenTK.Platform.Toolkit.Icon +- uid: OpenTK.Platform.IIconComponent + commentId: T:OpenTK.Platform.IIconComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IIconComponent.html + name: IIconComponent + nameWithType: IIconComponent + fullName: OpenTK.Platform.IIconComponent - uid: OpenTK.Platform.Native.macOS.MacOSDialogComponent.ShowMessageBox* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSDialogComponent.ShowMessageBox href: OpenTK.Platform.Native.macOS.MacOSDialogComponent.html#OpenTK_Platform_Native_macOS_MacOSDialogComponent_ShowMessageBox_OpenTK_Platform_WindowHandle_System_String_System_String_OpenTK_Platform_MessageBoxType_OpenTK_Platform_IconHandle_ @@ -995,13 +1323,6 @@ references: name: WindowHandle nameWithType: WindowHandle fullName: OpenTK.Platform.WindowHandle -- uid: OpenTK.Platform.MessageBoxType - commentId: T:OpenTK.Platform.MessageBoxType - parent: OpenTK.Platform - href: OpenTK.Platform.MessageBoxType.html - name: MessageBoxType - nameWithType: MessageBoxType - fullName: OpenTK.Platform.MessageBoxType - uid: OpenTK.Platform.IconHandle commentId: T:OpenTK.Platform.IconHandle parent: OpenTK.Platform @@ -1009,13 +1330,12 @@ references: name: IconHandle nameWithType: IconHandle fullName: OpenTK.Platform.IconHandle -- uid: OpenTK.Platform.MessageBoxButton - commentId: T:OpenTK.Platform.MessageBoxButton - parent: OpenTK.Platform - href: OpenTK.Platform.MessageBoxButton.html - name: MessageBoxButton - nameWithType: MessageBoxButton - fullName: OpenTK.Platform.MessageBoxButton +- uid: OpenTK.Platform.Native.macOS.MacOSDialogComponent.ShowMessageBoxNoWindow* + commentId: Overload:OpenTK.Platform.Native.macOS.MacOSDialogComponent.ShowMessageBoxNoWindow + href: OpenTK.Platform.Native.macOS.MacOSDialogComponent.html#OpenTK_Platform_Native_macOS_MacOSDialogComponent_ShowMessageBoxNoWindow_System_String_System_String_OpenTK_Platform_MessageBoxType_OpenTK_Platform_IconHandle_ + name: ShowMessageBoxNoWindow + nameWithType: MacOSDialogComponent.ShowMessageBoxNoWindow + fullName: OpenTK.Platform.Native.macOS.MacOSDialogComponent.ShowMessageBoxNoWindow - uid: OpenTK.Platform.DialogFileFilter commentId: T:OpenTK.Platform.DialogFileFilter parent: OpenTK.Platform @@ -1240,6 +1560,12 @@ references: name: Generic isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic +- uid: OpenTK.Platform.Native.macOS.MacOSDialogComponent.ShowOpenDialogNoWindow* + commentId: Overload:OpenTK.Platform.Native.macOS.MacOSDialogComponent.ShowOpenDialogNoWindow + href: OpenTK.Platform.Native.macOS.MacOSDialogComponent.html#OpenTK_Platform_Native_macOS_MacOSDialogComponent_ShowOpenDialogNoWindow_System_String_System_String_OpenTK_Platform_DialogFileFilter___OpenTK_Platform_OpenDialogOptions_ + name: ShowOpenDialogNoWindow + nameWithType: MacOSDialogComponent.ShowOpenDialogNoWindow + fullName: OpenTK.Platform.Native.macOS.MacOSDialogComponent.ShowOpenDialogNoWindow - uid: OpenTK.Platform.SaveDialogOptions commentId: T:OpenTK.Platform.SaveDialogOptions parent: OpenTK.Platform @@ -1253,3 +1579,9 @@ references: name: ShowSaveDialog nameWithType: MacOSDialogComponent.ShowSaveDialog fullName: OpenTK.Platform.Native.macOS.MacOSDialogComponent.ShowSaveDialog +- uid: OpenTK.Platform.Native.macOS.MacOSDialogComponent.ShowSaveDialogNoWindow* + commentId: Overload:OpenTK.Platform.Native.macOS.MacOSDialogComponent.ShowSaveDialogNoWindow + href: OpenTK.Platform.Native.macOS.MacOSDialogComponent.html#OpenTK_Platform_Native_macOS_MacOSDialogComponent_ShowSaveDialogNoWindow_System_String_System_String_OpenTK_Platform_DialogFileFilter___OpenTK_Platform_SaveDialogOptions_ + name: ShowSaveDialogNoWindow + nameWithType: MacOSDialogComponent.ShowSaveDialogNoWindow + fullName: OpenTK.Platform.Native.macOS.MacOSDialogComponent.ShowSaveDialogNoWindow diff --git a/api/OpenTK.Platform.Native.macOS.MacOSDisplayComponent.yml b/api/OpenTK.Platform.Native.macOS.MacOSDisplayComponent.yml index a802a10c..98ec7cb9 100644 --- a/api/OpenTK.Platform.Native.macOS.MacOSDisplayComponent.yml +++ b/api/OpenTK.Platform.Native.macOS.MacOSDisplayComponent.yml @@ -27,6 +27,7 @@ items: - OpenTK.Platform.Native.macOS.MacOSDisplayComponent.Open(System.Int32) - OpenTK.Platform.Native.macOS.MacOSDisplayComponent.OpenPrimary - OpenTK.Platform.Native.macOS.MacOSDisplayComponent.Provides + - OpenTK.Platform.Native.macOS.MacOSDisplayComponent.Uninitialize langs: - csharp - vb @@ -133,7 +134,7 @@ items: assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS - summary: Provides a logger for this component. + summary: The logger that this component uses to log diagnostic messages. example: [] syntax: content: public ILogger? Logger { get; set; } @@ -142,6 +143,11 @@ items: type: OpenTK.Core.Utility.ILogger content.vb: Public Property Logger As ILogger overload: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.Logger* + seealso: + - linkId: OpenTK.Core.Utility.ILogger + commentId: T:OpenTK.Core.Utility.ILogger + - linkId: OpenTK.Platform.ToolkitOptions.Logger + commentId: P:OpenTK.Platform.ToolkitOptions.Logger implements: - OpenTK.Platform.IPalComponent.Logger - uid: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.Initialize(OpenTK.Platform.ToolkitOptions) @@ -172,8 +178,42 @@ items: description: The options to initialize the component with. content.vb: Public Sub Initialize(options As ToolkitOptions) overload: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.Initialize* + seealso: + - linkId: OpenTK.Platform.ToolkitOptions + commentId: T:OpenTK.Platform.ToolkitOptions + - linkId: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) implements: - OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) +- uid: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.Uninitialize + commentId: M:OpenTK.Platform.Native.macOS.MacOSDisplayComponent.Uninitialize + id: Uninitialize + parent: OpenTK.Platform.Native.macOS.MacOSDisplayComponent + langs: + - csharp + - vb + name: Uninitialize() + nameWithType: MacOSDisplayComponent.Uninitialize() + fullName: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.Uninitialize() + type: Method + source: + id: Uninitialize + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSDisplayComponent.cs + startLine: 59 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform.Native.macOS + summary: Uninitialize the component. Frees any native resources used by the component. + example: [] + syntax: + content: public void Uninitialize() + content.vb: Public Sub Uninitialize() + overload: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.Uninitialize* + seealso: + - linkId: OpenTK.Platform.Toolkit.Uninit + commentId: M:OpenTK.Platform.Toolkit.Uninit + implements: + - OpenTK.Platform.IPalComponent.Uninitialize - uid: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.CanGetVirtualPosition commentId: P:OpenTK.Platform.Native.macOS.MacOSDisplayComponent.CanGetVirtualPosition id: CanGetVirtualPosition @@ -188,7 +228,7 @@ items: source: id: CanGetVirtualPosition path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSDisplayComponent.cs - startLine: 207 + startLine: 216 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS @@ -217,7 +257,7 @@ items: source: id: GetDisplayCount path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSDisplayComponent.cs - startLine: 210 + startLine: 219 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS @@ -246,7 +286,7 @@ items: source: id: Open path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSDisplayComponent.cs - startLine: 216 + startLine: 225 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS @@ -286,7 +326,7 @@ items: source: id: OpenPrimary path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSDisplayComponent.cs - startLine: 225 + startLine: 234 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS @@ -315,7 +355,7 @@ items: source: id: Close path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSDisplayComponent.cs - startLine: 242 + startLine: 251 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS @@ -349,7 +389,7 @@ items: source: id: IsPrimary path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSDisplayComponent.cs - startLine: 249 + startLine: 258 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS @@ -382,7 +422,7 @@ items: source: id: GetName path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSDisplayComponent.cs - startLine: 256 + startLine: 265 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS @@ -419,7 +459,7 @@ items: source: id: GetVideoMode path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSDisplayComponent.cs - startLine: 263 + startLine: 272 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS @@ -459,7 +499,7 @@ items: source: id: GetSupportedVideoModes path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSDisplayComponent.cs - startLine: 280 + startLine: 289 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS @@ -496,7 +536,7 @@ items: source: id: GetVirtualPosition path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSDisplayComponent.cs - startLine: 368 + startLine: 377 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS @@ -542,7 +582,7 @@ items: source: id: GetResolution path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSDisplayComponent.cs - startLine: 384 + startLine: 393 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS @@ -585,7 +625,7 @@ items: source: id: GetWorkArea path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSDisplayComponent.cs - startLine: 396 + startLine: 405 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS @@ -624,7 +664,7 @@ items: source: id: GetSafeArea path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSDisplayComponent.cs - startLine: 410 + startLine: 419 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS @@ -654,7 +694,7 @@ items: source: id: GetSafeLeftAuxArea path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSDisplayComponent.cs - startLine: 439 + startLine: 448 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS @@ -698,7 +738,7 @@ items: source: id: GetSafeRightAuxArea path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSDisplayComponent.cs - startLine: 470 + startLine: 479 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS @@ -742,7 +782,7 @@ items: source: id: GetRefreshRate path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSDisplayComponent.cs - startLine: 493 + startLine: 502 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS @@ -778,7 +818,7 @@ items: source: id: GetDisplayScale path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSDisplayComponent.cs - startLine: 518 + startLine: 527 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS @@ -817,7 +857,7 @@ items: source: id: GetDirectDisplayID path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSDisplayComponent.cs - startLine: 536 + startLine: 545 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS @@ -1190,6 +1230,19 @@ references: name: PalComponents nameWithType: PalComponents fullName: OpenTK.Platform.PalComponents +- uid: OpenTK.Core.Utility.ILogger + commentId: T:OpenTK.Core.Utility.ILogger + parent: OpenTK.Core.Utility + href: OpenTK.Core.Utility.ILogger.html + name: ILogger + nameWithType: ILogger + fullName: OpenTK.Core.Utility.ILogger +- uid: OpenTK.Platform.ToolkitOptions.Logger + commentId: P:OpenTK.Platform.ToolkitOptions.Logger + href: OpenTK.Platform.ToolkitOptions.html#OpenTK_Platform_ToolkitOptions_Logger + name: Logger + nameWithType: ToolkitOptions.Logger + fullName: OpenTK.Platform.ToolkitOptions.Logger - uid: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.Logger* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSDisplayComponent.Logger href: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.html#OpenTK_Platform_Native_macOS_MacOSDisplayComponent_Logger @@ -1203,13 +1256,6 @@ references: name: Logger nameWithType: IPalComponent.Logger fullName: OpenTK.Platform.IPalComponent.Logger -- uid: OpenTK.Core.Utility.ILogger - commentId: T:OpenTK.Core.Utility.ILogger - parent: OpenTK.Core.Utility - href: OpenTK.Core.Utility.ILogger.html - name: ILogger - nameWithType: ILogger - fullName: OpenTK.Core.Utility.ILogger - uid: OpenTK.Core.Utility commentId: N:OpenTK.Core.Utility href: OpenTK.html @@ -1240,6 +1286,37 @@ references: - uid: OpenTK.Core.Utility name: Utility href: OpenTK.Core.Utility.html +- uid: OpenTK.Platform.ToolkitOptions + commentId: T:OpenTK.Platform.ToolkitOptions + parent: OpenTK.Platform + href: OpenTK.Platform.ToolkitOptions.html + name: ToolkitOptions + nameWithType: ToolkitOptions + fullName: OpenTK.Platform.ToolkitOptions +- uid: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Init_OpenTK_Platform_ToolkitOptions_ + name: Init(ToolkitOptions) + nameWithType: Toolkit.Init(ToolkitOptions) + fullName: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + spec.csharp: + - uid: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + name: Init + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Init_OpenTK_Platform_ToolkitOptions_ + - name: ( + - uid: OpenTK.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Platform.ToolkitOptions.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + name: Init + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Init_OpenTK_Platform_ToolkitOptions_ + - name: ( + - uid: OpenTK.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Platform.ToolkitOptions.html + - name: ) - uid: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.Initialize* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSDisplayComponent.Initialize href: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.html#OpenTK_Platform_Native_macOS_MacOSDisplayComponent_Initialize_OpenTK_Platform_ToolkitOptions_ @@ -1271,13 +1348,49 @@ references: name: ToolkitOptions href: OpenTK.Platform.ToolkitOptions.html - name: ) -- uid: OpenTK.Platform.ToolkitOptions - commentId: T:OpenTK.Platform.ToolkitOptions - parent: OpenTK.Platform - href: OpenTK.Platform.ToolkitOptions.html - name: ToolkitOptions - nameWithType: ToolkitOptions - fullName: OpenTK.Platform.ToolkitOptions +- uid: OpenTK.Platform.Toolkit.Uninit + commentId: M:OpenTK.Platform.Toolkit.Uninit + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Uninit + name: Uninit() + nameWithType: Toolkit.Uninit() + fullName: OpenTK.Platform.Toolkit.Uninit() + spec.csharp: + - uid: OpenTK.Platform.Toolkit.Uninit + name: Uninit + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Uninit + - name: ( + - name: ) + spec.vb: + - uid: OpenTK.Platform.Toolkit.Uninit + name: Uninit + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Uninit + - name: ( + - name: ) +- uid: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.Uninitialize* + commentId: Overload:OpenTK.Platform.Native.macOS.MacOSDisplayComponent.Uninitialize + href: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.html#OpenTK_Platform_Native_macOS_MacOSDisplayComponent_Uninitialize + name: Uninitialize + nameWithType: MacOSDisplayComponent.Uninitialize + fullName: OpenTK.Platform.Native.macOS.MacOSDisplayComponent.Uninitialize +- uid: OpenTK.Platform.IPalComponent.Uninitialize + commentId: M:OpenTK.Platform.IPalComponent.Uninitialize + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + name: Uninitialize() + nameWithType: IPalComponent.Uninitialize() + fullName: OpenTK.Platform.IPalComponent.Uninitialize() + spec.csharp: + - uid: OpenTK.Platform.IPalComponent.Uninitialize + name: Uninitialize + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + - name: ( + - name: ) + spec.vb: + - uid: OpenTK.Platform.IPalComponent.Uninitialize + name: Uninitialize + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + - name: ( + - name: ) - uid: OpenTK.Platform.IDisplayComponent.GetVirtualPosition(OpenTK.Platform.DisplayHandle,System.Int32@,System.Int32@) commentId: M:OpenTK.Platform.IDisplayComponent.GetVirtualPosition(OpenTK.Platform.DisplayHandle,System.Int32@,System.Int32@) parent: OpenTK.Platform.IDisplayComponent diff --git a/api/OpenTK.Platform.Native.macOS.MacOSIconComponent.yml b/api/OpenTK.Platform.Native.macOS.MacOSIconComponent.yml index bedf04be..bcc7ab71 100644 --- a/api/OpenTK.Platform.Native.macOS.MacOSIconComponent.yml +++ b/api/OpenTK.Platform.Native.macOS.MacOSIconComponent.yml @@ -15,6 +15,7 @@ items: - OpenTK.Platform.Native.macOS.MacOSIconComponent.Logger - OpenTK.Platform.Native.macOS.MacOSIconComponent.Name - OpenTK.Platform.Native.macOS.MacOSIconComponent.Provides + - OpenTK.Platform.Native.macOS.MacOSIconComponent.Uninitialize langs: - csharp - vb @@ -121,7 +122,7 @@ items: assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS - summary: Provides a logger for this component. + summary: The logger that this component uses to log diagnostic messages. example: [] syntax: content: public ILogger? Logger { get; set; } @@ -130,6 +131,11 @@ items: type: OpenTK.Core.Utility.ILogger content.vb: Public Property Logger As ILogger overload: OpenTK.Platform.Native.macOS.MacOSIconComponent.Logger* + seealso: + - linkId: OpenTK.Core.Utility.ILogger + commentId: T:OpenTK.Core.Utility.ILogger + - linkId: OpenTK.Platform.ToolkitOptions.Logger + commentId: P:OpenTK.Platform.ToolkitOptions.Logger implements: - OpenTK.Platform.IPalComponent.Logger - uid: OpenTK.Platform.Native.macOS.MacOSIconComponent.Initialize(OpenTK.Platform.ToolkitOptions) @@ -160,8 +166,42 @@ items: description: The options to initialize the component with. content.vb: Public Sub Initialize(options As ToolkitOptions) overload: OpenTK.Platform.Native.macOS.MacOSIconComponent.Initialize* + seealso: + - linkId: OpenTK.Platform.ToolkitOptions + commentId: T:OpenTK.Platform.ToolkitOptions + - linkId: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) implements: - OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) +- uid: OpenTK.Platform.Native.macOS.MacOSIconComponent.Uninitialize + commentId: M:OpenTK.Platform.Native.macOS.MacOSIconComponent.Uninitialize + id: Uninitialize + parent: OpenTK.Platform.Native.macOS.MacOSIconComponent + langs: + - csharp + - vb + name: Uninitialize() + nameWithType: MacOSIconComponent.Uninitialize() + fullName: OpenTK.Platform.Native.macOS.MacOSIconComponent.Uninitialize() + type: Method + source: + id: Uninitialize + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSIconComponent.cs + startLine: 66 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform.Native.macOS + summary: Uninitialize the component. Frees any native resources used by the component. + example: [] + syntax: + content: public void Uninitialize() + content.vb: Public Sub Uninitialize() + overload: OpenTK.Platform.Native.macOS.MacOSIconComponent.Uninitialize* + seealso: + - linkId: OpenTK.Platform.Toolkit.Uninit + commentId: M:OpenTK.Platform.Toolkit.Uninit + implements: + - OpenTK.Platform.IPalComponent.Uninitialize - uid: OpenTK.Platform.Native.macOS.MacOSIconComponent.CanLoadSystemIcons commentId: P:OpenTK.Platform.Native.macOS.MacOSIconComponent.CanLoadSystemIcons id: CanLoadSystemIcons @@ -176,14 +216,14 @@ items: source: id: CanLoadSystemIcons path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSIconComponent.cs - startLine: 66 + startLine: 71 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: >- - True if icon objects can be populated from common system icons. + If common system icons can be created. - If this is true, then will work, otherwise an exception will be thrown. + If this is true then will work, otherwise an exception will be thrown. example: [] syntax: content: public bool CanLoadSystemIcons { get; } @@ -211,14 +251,14 @@ items: source: id: Create path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSIconComponent.cs - startLine: 69 + startLine: 74 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: >- Load a system icon. - Only works if is true. + Only works if is true. example: [] syntax: content: public IconHandle Create(SystemIconType systemIcon) @@ -231,6 +271,10 @@ items: description: A handle to the created system icon. content.vb: Public Function Create(systemIcon As SystemIconType) As IconHandle overload: OpenTK.Platform.Native.macOS.MacOSIconComponent.Create* + exceptions: + - type: System.PlatformNotSupportedException + commentId: T:System.PlatformNotSupportedException + description: Platform does not implement this function. See . seealso: - linkId: OpenTK.Platform.IIconComponent.CanLoadSystemIcons commentId: P:OpenTK.Platform.IIconComponent.CanLoadSystemIcons @@ -250,7 +294,7 @@ items: source: id: Create path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSIconComponent.cs - startLine: 121 + startLine: 126 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS @@ -267,12 +311,19 @@ items: description: Height of the bitmap. - id: data type: System.ReadOnlySpan{System.Byte} - description: Image data to load into icon. + description: Image data to load into icon in RGBA format. return: type: OpenTK.Platform.IconHandle description: A handle to the created icon. content.vb: Public Function Create(width As Integer, height As Integer, data As ReadOnlySpan(Of Byte)) As IconHandle overload: OpenTK.Platform.Native.macOS.MacOSIconComponent.Create* + exceptions: + - type: System.ArgumentOutOfRangeException + commentId: T:System.ArgumentOutOfRangeException + description: If width, or height are negative. + - type: System.ArgumentException + commentId: T:System.ArgumentException + description: data is smaller than specified dimensions. implements: - OpenTK.Platform.IIconComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte}) nameWithType.vb: MacOSIconComponent.Create(Integer, Integer, ReadOnlySpan(Of Byte)) @@ -292,7 +343,7 @@ items: source: id: CreateSFSymbol path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSIconComponent.cs - startLine: 166 + startLine: 176 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS @@ -329,7 +380,7 @@ items: source: id: Destroy path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSIconComponent.cs - startLine: 194 + startLine: 204 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS @@ -343,10 +394,11 @@ items: description: Handle to the icon object to destroy. content.vb: Public Sub Destroy(handle As IconHandle) overload: OpenTK.Platform.Native.macOS.MacOSIconComponent.Destroy* - exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: handle is null. + seealso: + - linkId: OpenTK.Platform.IIconComponent.Create(OpenTK.Platform.SystemIconType) + commentId: M:OpenTK.Platform.IIconComponent.Create(OpenTK.Platform.SystemIconType) + - linkId: OpenTK.Platform.IIconComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte}) + commentId: M:OpenTK.Platform.IIconComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte}) implements: - OpenTK.Platform.IIconComponent.Destroy(OpenTK.Platform.IconHandle) - uid: OpenTK.Platform.Native.macOS.MacOSIconComponent.GetSize(OpenTK.Platform.IconHandle,System.Int32@,System.Int32@) @@ -363,7 +415,7 @@ items: source: id: GetSize path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSIconComponent.cs - startLine: 208 + startLine: 218 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS @@ -383,10 +435,6 @@ items: description: Height of icon. content.vb: Public Sub GetSize(handle As IconHandle, width As Integer, height As Integer) overload: OpenTK.Platform.Native.macOS.MacOSIconComponent.GetSize* - exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: handle is null. implements: - OpenTK.Platform.IIconComponent.GetSize(OpenTK.Platform.IconHandle,System.Int32@,System.Int32@) nameWithType.vb: MacOSIconComponent.GetSize(IconHandle, Integer, Integer) @@ -748,6 +796,19 @@ references: name: PalComponents nameWithType: PalComponents fullName: OpenTK.Platform.PalComponents +- uid: OpenTK.Core.Utility.ILogger + commentId: T:OpenTK.Core.Utility.ILogger + parent: OpenTK.Core.Utility + href: OpenTK.Core.Utility.ILogger.html + name: ILogger + nameWithType: ILogger + fullName: OpenTK.Core.Utility.ILogger +- uid: OpenTK.Platform.ToolkitOptions.Logger + commentId: P:OpenTK.Platform.ToolkitOptions.Logger + href: OpenTK.Platform.ToolkitOptions.html#OpenTK_Platform_ToolkitOptions_Logger + name: Logger + nameWithType: ToolkitOptions.Logger + fullName: OpenTK.Platform.ToolkitOptions.Logger - uid: OpenTK.Platform.Native.macOS.MacOSIconComponent.Logger* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSIconComponent.Logger href: OpenTK.Platform.Native.macOS.MacOSIconComponent.html#OpenTK_Platform_Native_macOS_MacOSIconComponent_Logger @@ -761,13 +822,6 @@ references: name: Logger nameWithType: IPalComponent.Logger fullName: OpenTK.Platform.IPalComponent.Logger -- uid: OpenTK.Core.Utility.ILogger - commentId: T:OpenTK.Core.Utility.ILogger - parent: OpenTK.Core.Utility - href: OpenTK.Core.Utility.ILogger.html - name: ILogger - nameWithType: ILogger - fullName: OpenTK.Core.Utility.ILogger - uid: OpenTK.Core.Utility commentId: N:OpenTK.Core.Utility href: OpenTK.html @@ -798,6 +852,37 @@ references: - uid: OpenTK.Core.Utility name: Utility href: OpenTK.Core.Utility.html +- uid: OpenTK.Platform.ToolkitOptions + commentId: T:OpenTK.Platform.ToolkitOptions + parent: OpenTK.Platform + href: OpenTK.Platform.ToolkitOptions.html + name: ToolkitOptions + nameWithType: ToolkitOptions + fullName: OpenTK.Platform.ToolkitOptions +- uid: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Init_OpenTK_Platform_ToolkitOptions_ + name: Init(ToolkitOptions) + nameWithType: Toolkit.Init(ToolkitOptions) + fullName: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + spec.csharp: + - uid: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + name: Init + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Init_OpenTK_Platform_ToolkitOptions_ + - name: ( + - uid: OpenTK.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Platform.ToolkitOptions.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + name: Init + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Init_OpenTK_Platform_ToolkitOptions_ + - name: ( + - uid: OpenTK.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Platform.ToolkitOptions.html + - name: ) - uid: OpenTK.Platform.Native.macOS.MacOSIconComponent.Initialize* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSIconComponent.Initialize href: OpenTK.Platform.Native.macOS.MacOSIconComponent.html#OpenTK_Platform_Native_macOS_MacOSIconComponent_Initialize_OpenTK_Platform_ToolkitOptions_ @@ -829,13 +914,49 @@ references: name: ToolkitOptions href: OpenTK.Platform.ToolkitOptions.html - name: ) -- uid: OpenTK.Platform.ToolkitOptions - commentId: T:OpenTK.Platform.ToolkitOptions - parent: OpenTK.Platform - href: OpenTK.Platform.ToolkitOptions.html - name: ToolkitOptions - nameWithType: ToolkitOptions - fullName: OpenTK.Platform.ToolkitOptions +- uid: OpenTK.Platform.Toolkit.Uninit + commentId: M:OpenTK.Platform.Toolkit.Uninit + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Uninit + name: Uninit() + nameWithType: Toolkit.Uninit() + fullName: OpenTK.Platform.Toolkit.Uninit() + spec.csharp: + - uid: OpenTK.Platform.Toolkit.Uninit + name: Uninit + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Uninit + - name: ( + - name: ) + spec.vb: + - uid: OpenTK.Platform.Toolkit.Uninit + name: Uninit + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Uninit + - name: ( + - name: ) +- uid: OpenTK.Platform.Native.macOS.MacOSIconComponent.Uninitialize* + commentId: Overload:OpenTK.Platform.Native.macOS.MacOSIconComponent.Uninitialize + href: OpenTK.Platform.Native.macOS.MacOSIconComponent.html#OpenTK_Platform_Native_macOS_MacOSIconComponent_Uninitialize + name: Uninitialize + nameWithType: MacOSIconComponent.Uninitialize + fullName: OpenTK.Platform.Native.macOS.MacOSIconComponent.Uninitialize +- uid: OpenTK.Platform.IPalComponent.Uninitialize + commentId: M:OpenTK.Platform.IPalComponent.Uninitialize + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + name: Uninitialize() + nameWithType: IPalComponent.Uninitialize() + fullName: OpenTK.Platform.IPalComponent.Uninitialize() + spec.csharp: + - uid: OpenTK.Platform.IPalComponent.Uninitialize + name: Uninitialize + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + - name: ( + - name: ) + spec.vb: + - uid: OpenTK.Platform.IPalComponent.Uninitialize + name: Uninitialize + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + - name: ( + - name: ) - uid: OpenTK.Platform.IIconComponent.Create(OpenTK.Platform.SystemIconType) commentId: M:OpenTK.Platform.IIconComponent.Create(OpenTK.Platform.SystemIconType) parent: OpenTK.Platform.IIconComponent @@ -885,6 +1006,13 @@ references: nameWithType.vb: Boolean fullName.vb: Boolean name.vb: Boolean +- uid: System.PlatformNotSupportedException + commentId: T:System.PlatformNotSupportedException + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.platformnotsupportedexception + name: PlatformNotSupportedException + nameWithType: PlatformNotSupportedException + fullName: System.PlatformNotSupportedException - uid: OpenTK.Platform.Native.macOS.MacOSIconComponent.Create* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSIconComponent.Create href: OpenTK.Platform.Native.macOS.MacOSIconComponent.html#OpenTK_Platform_Native_macOS_MacOSIconComponent_Create_OpenTK_Platform_SystemIconType_ @@ -905,6 +1033,20 @@ references: name: IconHandle nameWithType: IconHandle fullName: OpenTK.Platform.IconHandle +- uid: System.ArgumentOutOfRangeException + commentId: T:System.ArgumentOutOfRangeException + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.argumentoutofrangeexception + name: ArgumentOutOfRangeException + nameWithType: ArgumentOutOfRangeException + fullName: System.ArgumentOutOfRangeException +- uid: System.ArgumentException + commentId: T:System.ArgumentException + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.argumentexception + name: ArgumentException + nameWithType: ArgumentException + fullName: System.ArgumentException - uid: OpenTK.Platform.IIconComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte}) commentId: M:OpenTK.Platform.IIconComponent.Create(System.Int32,System.Int32,System.ReadOnlySpan{System.Byte}) parent: OpenTK.Platform.IIconComponent @@ -1054,13 +1196,6 @@ references: name: CreateSFSymbol nameWithType: MacOSIconComponent.CreateSFSymbol fullName: OpenTK.Platform.Native.macOS.MacOSIconComponent.CreateSFSymbol -- uid: System.ArgumentNullException - commentId: T:System.ArgumentNullException - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.argumentnullexception - name: ArgumentNullException - nameWithType: ArgumentNullException - fullName: System.ArgumentNullException - uid: OpenTK.Platform.Native.macOS.MacOSIconComponent.Destroy* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSIconComponent.Destroy href: OpenTK.Platform.Native.macOS.MacOSIconComponent.html#OpenTK_Platform_Native_macOS_MacOSIconComponent_Destroy_OpenTK_Platform_IconHandle_ diff --git a/api/OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.yml b/api/OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.yml index 73e33095..2c33e38e 100644 --- a/api/OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.yml +++ b/api/OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.yml @@ -20,6 +20,7 @@ items: - OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.SetImeRectangle(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) - OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.SupportsIme - OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.SupportsLayouts + - OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.Uninitialize langs: - csharp - vb @@ -126,7 +127,7 @@ items: assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS - summary: Provides a logger for this component. + summary: The logger that this component uses to log diagnostic messages. example: [] syntax: content: public ILogger? Logger { get; set; } @@ -135,6 +136,11 @@ items: type: OpenTK.Core.Utility.ILogger content.vb: Public Property Logger As ILogger overload: OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.Logger* + seealso: + - linkId: OpenTK.Core.Utility.ILogger + commentId: T:OpenTK.Core.Utility.ILogger + - linkId: OpenTK.Platform.ToolkitOptions.Logger + commentId: P:OpenTK.Platform.ToolkitOptions.Logger implements: - OpenTK.Platform.IPalComponent.Logger - uid: OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.Initialize(OpenTK.Platform.ToolkitOptions) @@ -165,8 +171,42 @@ items: description: The options to initialize the component with. content.vb: Public Sub Initialize(options As ToolkitOptions) overload: OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.Initialize* + seealso: + - linkId: OpenTK.Platform.ToolkitOptions + commentId: T:OpenTK.Platform.ToolkitOptions + - linkId: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) implements: - OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) +- uid: OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.Uninitialize + commentId: M:OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.Uninitialize + id: Uninitialize + parent: OpenTK.Platform.Native.macOS.MacOSKeyboardComponent + langs: + - csharp + - vb + name: Uninitialize() + nameWithType: MacOSKeyboardComponent.Uninitialize() + fullName: OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.Uninitialize() + type: Method + source: + id: Uninitialize + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSKeyboardComponent.cs + startLine: 26 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform.Native.macOS + summary: Uninitialize the component. Frees any native resources used by the component. + example: [] + syntax: + content: public void Uninitialize() + content.vb: Public Sub Uninitialize() + overload: OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.Uninitialize* + seealso: + - linkId: OpenTK.Platform.Toolkit.Uninit + commentId: M:OpenTK.Platform.Toolkit.Uninit + implements: + - OpenTK.Platform.IPalComponent.Uninitialize - uid: OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.SupportsLayouts commentId: P:OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.SupportsLayouts id: SupportsLayouts @@ -181,7 +221,7 @@ items: source: id: SupportsLayouts path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSKeyboardComponent.cs - startLine: 26 + startLine: 31 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS @@ -210,7 +250,7 @@ items: source: id: SupportsIme path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSKeyboardComponent.cs - startLine: 29 + startLine: 34 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS @@ -239,7 +279,7 @@ items: source: id: GetActiveKeyboardLayout path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSKeyboardComponent.cs - startLine: 32 + startLine: 37 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS @@ -279,7 +319,7 @@ items: source: id: GetAvailableKeyboardLayouts path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSKeyboardComponent.cs - startLine: 39 + startLine: 44 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS @@ -308,7 +348,7 @@ items: source: id: GetScancodeFromKey path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSKeyboardComponent.cs - startLine: 242 + startLine: 247 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS @@ -335,6 +375,9 @@ items: or if no scancode produces the key. content.vb: Public Function GetScancodeFromKey(key As Key) As Scancode overload: OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.GetScancodeFromKey* + seealso: + - linkId: OpenTK.Platform.IKeyboardComponent.GetKeyFromScancode(OpenTK.Platform.Scancode) + commentId: M:OpenTK.Platform.IKeyboardComponent.GetKeyFromScancode(OpenTK.Platform.Scancode) implements: - OpenTK.Platform.IKeyboardComponent.GetScancodeFromKey(OpenTK.Platform.Key) - uid: OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.GetKeyFromScancode(OpenTK.Platform.Scancode) @@ -351,7 +394,7 @@ items: source: id: GetKeyFromScancode path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSKeyboardComponent.cs - startLine: 248 + startLine: 253 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS @@ -374,6 +417,9 @@ items: or if the scancode can't be mapped to a key. content.vb: Public Function GetKeyFromScancode(scancode As Scancode) As Key overload: OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.GetKeyFromScancode* + seealso: + - linkId: OpenTK.Platform.IKeyboardComponent.GetScancodeFromKey(OpenTK.Platform.Key) + commentId: M:OpenTK.Platform.IKeyboardComponent.GetScancodeFromKey(OpenTK.Platform.Key) implements: - OpenTK.Platform.IKeyboardComponent.GetKeyFromScancode(OpenTK.Platform.Scancode) - uid: OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.GetKeyboardState(System.Boolean[]) @@ -390,7 +436,7 @@ items: source: id: GetKeyboardState path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSKeyboardComponent.cs - startLine: 254 + startLine: 259 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS @@ -409,6 +455,9 @@ items: description: An array to be filled with the keyboard state. content.vb: Public Sub GetKeyboardState(keyboardState As Boolean()) overload: OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.GetKeyboardState* + seealso: + - linkId: OpenTK.Platform.IKeyboardComponent.GetKeyboardModifiers + commentId: M:OpenTK.Platform.IKeyboardComponent.GetKeyboardModifiers implements: - OpenTK.Platform.IKeyboardComponent.GetKeyboardState(System.Boolean[]) nameWithType.vb: MacOSKeyboardComponent.GetKeyboardState(Boolean()) @@ -428,7 +477,7 @@ items: source: id: GetKeyboardModifiers path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSKeyboardComponent.cs - startLine: 261 + startLine: 266 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS @@ -441,6 +490,9 @@ items: description: The current keyboard modifiers. content.vb: Public Function GetKeyboardModifiers() As KeyModifier overload: OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.GetKeyboardModifiers* + seealso: + - linkId: OpenTK.Platform.IKeyboardComponent.GetKeyboardState(System.Boolean[]) + commentId: M:OpenTK.Platform.IKeyboardComponent.GetKeyboardState(System.Boolean[]) implements: - OpenTK.Platform.IKeyboardComponent.GetKeyboardModifiers - uid: OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.BeginIme(OpenTK.Platform.WindowHandle) @@ -457,7 +509,7 @@ items: source: id: BeginIme path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSKeyboardComponent.cs - startLine: 302 + startLine: 307 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS @@ -487,7 +539,7 @@ items: source: id: SetImeRectangle path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSKeyboardComponent.cs - startLine: 308 + startLine: 313 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS @@ -532,7 +584,7 @@ items: source: id: EndIme path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSKeyboardComponent.cs - startLine: 314 + startLine: 319 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS @@ -904,6 +956,19 @@ references: name: PalComponents nameWithType: PalComponents fullName: OpenTK.Platform.PalComponents +- uid: OpenTK.Core.Utility.ILogger + commentId: T:OpenTK.Core.Utility.ILogger + parent: OpenTK.Core.Utility + href: OpenTK.Core.Utility.ILogger.html + name: ILogger + nameWithType: ILogger + fullName: OpenTK.Core.Utility.ILogger +- uid: OpenTK.Platform.ToolkitOptions.Logger + commentId: P:OpenTK.Platform.ToolkitOptions.Logger + href: OpenTK.Platform.ToolkitOptions.html#OpenTK_Platform_ToolkitOptions_Logger + name: Logger + nameWithType: ToolkitOptions.Logger + fullName: OpenTK.Platform.ToolkitOptions.Logger - uid: OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.Logger* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.Logger href: OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.html#OpenTK_Platform_Native_macOS_MacOSKeyboardComponent_Logger @@ -917,13 +982,6 @@ references: name: Logger nameWithType: IPalComponent.Logger fullName: OpenTK.Platform.IPalComponent.Logger -- uid: OpenTK.Core.Utility.ILogger - commentId: T:OpenTK.Core.Utility.ILogger - parent: OpenTK.Core.Utility - href: OpenTK.Core.Utility.ILogger.html - name: ILogger - nameWithType: ILogger - fullName: OpenTK.Core.Utility.ILogger - uid: OpenTK.Core.Utility commentId: N:OpenTK.Core.Utility href: OpenTK.html @@ -954,6 +1012,37 @@ references: - uid: OpenTK.Core.Utility name: Utility href: OpenTK.Core.Utility.html +- uid: OpenTK.Platform.ToolkitOptions + commentId: T:OpenTK.Platform.ToolkitOptions + parent: OpenTK.Platform + href: OpenTK.Platform.ToolkitOptions.html + name: ToolkitOptions + nameWithType: ToolkitOptions + fullName: OpenTK.Platform.ToolkitOptions +- uid: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Init_OpenTK_Platform_ToolkitOptions_ + name: Init(ToolkitOptions) + nameWithType: Toolkit.Init(ToolkitOptions) + fullName: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + spec.csharp: + - uid: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + name: Init + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Init_OpenTK_Platform_ToolkitOptions_ + - name: ( + - uid: OpenTK.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Platform.ToolkitOptions.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + name: Init + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Init_OpenTK_Platform_ToolkitOptions_ + - name: ( + - uid: OpenTK.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Platform.ToolkitOptions.html + - name: ) - uid: OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.Initialize* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.Initialize href: OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.html#OpenTK_Platform_Native_macOS_MacOSKeyboardComponent_Initialize_OpenTK_Platform_ToolkitOptions_ @@ -985,13 +1074,49 @@ references: name: ToolkitOptions href: OpenTK.Platform.ToolkitOptions.html - name: ) -- uid: OpenTK.Platform.ToolkitOptions - commentId: T:OpenTK.Platform.ToolkitOptions - parent: OpenTK.Platform - href: OpenTK.Platform.ToolkitOptions.html - name: ToolkitOptions - nameWithType: ToolkitOptions - fullName: OpenTK.Platform.ToolkitOptions +- uid: OpenTK.Platform.Toolkit.Uninit + commentId: M:OpenTK.Platform.Toolkit.Uninit + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Uninit + name: Uninit() + nameWithType: Toolkit.Uninit() + fullName: OpenTK.Platform.Toolkit.Uninit() + spec.csharp: + - uid: OpenTK.Platform.Toolkit.Uninit + name: Uninit + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Uninit + - name: ( + - name: ) + spec.vb: + - uid: OpenTK.Platform.Toolkit.Uninit + name: Uninit + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Uninit + - name: ( + - name: ) +- uid: OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.Uninitialize* + commentId: Overload:OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.Uninitialize + href: OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.html#OpenTK_Platform_Native_macOS_MacOSKeyboardComponent_Uninitialize + name: Uninitialize + nameWithType: MacOSKeyboardComponent.Uninitialize + fullName: OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.Uninitialize +- uid: OpenTK.Platform.IPalComponent.Uninitialize + commentId: M:OpenTK.Platform.IPalComponent.Uninitialize + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + name: Uninitialize() + nameWithType: IPalComponent.Uninitialize() + fullName: OpenTK.Platform.IPalComponent.Uninitialize() + spec.csharp: + - uid: OpenTK.Platform.IPalComponent.Uninitialize + name: Uninitialize + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + - name: ( + - name: ) + spec.vb: + - uid: OpenTK.Platform.IPalComponent.Uninitialize + name: Uninitialize + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + - name: ( + - name: ) - uid: OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.SupportsLayouts* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.SupportsLayouts href: OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.html#OpenTK_Platform_Native_macOS_MacOSKeyboardComponent_SupportsLayouts @@ -1121,6 +1246,31 @@ references: href: https://learn.microsoft.com/dotnet/api/system.string - name: ( - name: ) +- uid: OpenTK.Platform.IKeyboardComponent.GetKeyFromScancode(OpenTK.Platform.Scancode) + commentId: M:OpenTK.Platform.IKeyboardComponent.GetKeyFromScancode(OpenTK.Platform.Scancode) + parent: OpenTK.Platform.IKeyboardComponent + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_GetKeyFromScancode_OpenTK_Platform_Scancode_ + name: GetKeyFromScancode(Scancode) + nameWithType: IKeyboardComponent.GetKeyFromScancode(Scancode) + fullName: OpenTK.Platform.IKeyboardComponent.GetKeyFromScancode(OpenTK.Platform.Scancode) + spec.csharp: + - uid: OpenTK.Platform.IKeyboardComponent.GetKeyFromScancode(OpenTK.Platform.Scancode) + name: GetKeyFromScancode + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_GetKeyFromScancode_OpenTK_Platform_Scancode_ + - name: ( + - uid: OpenTK.Platform.Scancode + name: Scancode + href: OpenTK.Platform.Scancode.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IKeyboardComponent.GetKeyFromScancode(OpenTK.Platform.Scancode) + name: GetKeyFromScancode + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_GetKeyFromScancode_OpenTK_Platform_Scancode_ + - name: ( + - uid: OpenTK.Platform.Scancode + name: Scancode + href: OpenTK.Platform.Scancode.html + - name: ) - uid: OpenTK.Platform.Scancode commentId: T:OpenTK.Platform.Scancode parent: OpenTK.Platform @@ -1184,30 +1334,24 @@ references: name: GetKeyFromScancode nameWithType: MacOSKeyboardComponent.GetKeyFromScancode fullName: OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.GetKeyFromScancode -- uid: OpenTK.Platform.IKeyboardComponent.GetKeyFromScancode(OpenTK.Platform.Scancode) - commentId: M:OpenTK.Platform.IKeyboardComponent.GetKeyFromScancode(OpenTK.Platform.Scancode) +- uid: OpenTK.Platform.IKeyboardComponent.GetKeyboardModifiers + commentId: M:OpenTK.Platform.IKeyboardComponent.GetKeyboardModifiers parent: OpenTK.Platform.IKeyboardComponent - href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_GetKeyFromScancode_OpenTK_Platform_Scancode_ - name: GetKeyFromScancode(Scancode) - nameWithType: IKeyboardComponent.GetKeyFromScancode(Scancode) - fullName: OpenTK.Platform.IKeyboardComponent.GetKeyFromScancode(OpenTK.Platform.Scancode) + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_GetKeyboardModifiers + name: GetKeyboardModifiers() + nameWithType: IKeyboardComponent.GetKeyboardModifiers() + fullName: OpenTK.Platform.IKeyboardComponent.GetKeyboardModifiers() spec.csharp: - - uid: OpenTK.Platform.IKeyboardComponent.GetKeyFromScancode(OpenTK.Platform.Scancode) - name: GetKeyFromScancode - href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_GetKeyFromScancode_OpenTK_Platform_Scancode_ + - uid: OpenTK.Platform.IKeyboardComponent.GetKeyboardModifiers + name: GetKeyboardModifiers + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_GetKeyboardModifiers - name: ( - - uid: OpenTK.Platform.Scancode - name: Scancode - href: OpenTK.Platform.Scancode.html - name: ) spec.vb: - - uid: OpenTK.Platform.IKeyboardComponent.GetKeyFromScancode(OpenTK.Platform.Scancode) - name: GetKeyFromScancode - href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_GetKeyFromScancode_OpenTK_Platform_Scancode_ + - uid: OpenTK.Platform.IKeyboardComponent.GetKeyboardModifiers + name: GetKeyboardModifiers + href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_GetKeyboardModifiers - name: ( - - uid: OpenTK.Platform.Scancode - name: Scancode - href: OpenTK.Platform.Scancode.html - name: ) - uid: OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.GetKeyboardState* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.GetKeyboardState @@ -1279,25 +1423,6 @@ references: name: GetKeyboardModifiers nameWithType: MacOSKeyboardComponent.GetKeyboardModifiers fullName: OpenTK.Platform.Native.macOS.MacOSKeyboardComponent.GetKeyboardModifiers -- uid: OpenTK.Platform.IKeyboardComponent.GetKeyboardModifiers - commentId: M:OpenTK.Platform.IKeyboardComponent.GetKeyboardModifiers - parent: OpenTK.Platform.IKeyboardComponent - href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_GetKeyboardModifiers - name: GetKeyboardModifiers() - nameWithType: IKeyboardComponent.GetKeyboardModifiers() - fullName: OpenTK.Platform.IKeyboardComponent.GetKeyboardModifiers() - spec.csharp: - - uid: OpenTK.Platform.IKeyboardComponent.GetKeyboardModifiers - name: GetKeyboardModifiers - href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_GetKeyboardModifiers - - name: ( - - name: ) - spec.vb: - - uid: OpenTK.Platform.IKeyboardComponent.GetKeyboardModifiers - name: GetKeyboardModifiers - href: OpenTK.Platform.IKeyboardComponent.html#OpenTK_Platform_IKeyboardComponent_GetKeyboardModifiers - - name: ( - - name: ) - uid: OpenTK.Platform.KeyModifier commentId: T:OpenTK.Platform.KeyModifier parent: OpenTK.Platform diff --git a/api/OpenTK.Platform.Native.macOS.MacOSMouseComponent.yml b/api/OpenTK.Platform.Native.macOS.MacOSMouseComponent.yml index 052c509b..3296cc6d 100644 --- a/api/OpenTK.Platform.Native.macOS.MacOSMouseComponent.yml +++ b/api/OpenTK.Platform.Native.macOS.MacOSMouseComponent.yml @@ -7,15 +7,18 @@ items: children: - OpenTK.Platform.Native.macOS.MacOSMouseComponent.CanSetMousePosition - OpenTK.Platform.Native.macOS.MacOSMouseComponent.EnableRawMouseMotion(OpenTK.Platform.WindowHandle,System.Boolean) - - OpenTK.Platform.Native.macOS.MacOSMouseComponent.GetMouseState(OpenTK.Platform.MouseState@) - - OpenTK.Platform.Native.macOS.MacOSMouseComponent.GetPosition(System.Int32@,System.Int32@) + - OpenTK.Platform.Native.macOS.MacOSMouseComponent.GetGlobalMouseState(OpenTK.Platform.MouseState@) + - OpenTK.Platform.Native.macOS.MacOSMouseComponent.GetGlobalPosition(OpenTK.Mathematics.Vector2@) + - OpenTK.Platform.Native.macOS.MacOSMouseComponent.GetMouseState(OpenTK.Platform.WindowHandle,OpenTK.Platform.MouseState@) + - OpenTK.Platform.Native.macOS.MacOSMouseComponent.GetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2@) - OpenTK.Platform.Native.macOS.MacOSMouseComponent.Initialize(OpenTK.Platform.ToolkitOptions) - OpenTK.Platform.Native.macOS.MacOSMouseComponent.IsRawMouseMotionEnabled(OpenTK.Platform.WindowHandle) - OpenTK.Platform.Native.macOS.MacOSMouseComponent.Logger - OpenTK.Platform.Native.macOS.MacOSMouseComponent.Name - OpenTK.Platform.Native.macOS.MacOSMouseComponent.Provides - - OpenTK.Platform.Native.macOS.MacOSMouseComponent.SetPosition(System.Int32,System.Int32) + - OpenTK.Platform.Native.macOS.MacOSMouseComponent.SetGlobalPosition(OpenTK.Mathematics.Vector2) - OpenTK.Platform.Native.macOS.MacOSMouseComponent.SupportsRawMouseMotion + - OpenTK.Platform.Native.macOS.MacOSMouseComponent.Uninitialize langs: - csharp - vb @@ -122,7 +125,7 @@ items: assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS - summary: Provides a logger for this component. + summary: The logger that this component uses to log diagnostic messages. example: [] syntax: content: public ILogger? Logger { get; set; } @@ -131,6 +134,11 @@ items: type: OpenTK.Core.Utility.ILogger content.vb: Public Property Logger As ILogger overload: OpenTK.Platform.Native.macOS.MacOSMouseComponent.Logger* + seealso: + - linkId: OpenTK.Core.Utility.ILogger + commentId: T:OpenTK.Core.Utility.ILogger + - linkId: OpenTK.Platform.ToolkitOptions.Logger + commentId: P:OpenTK.Platform.ToolkitOptions.Logger implements: - OpenTK.Platform.IPalComponent.Logger - uid: OpenTK.Platform.Native.macOS.MacOSMouseComponent.CanSetMousePosition @@ -151,7 +159,7 @@ items: assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS - summary: If it's possible to set the position of the mouse using . + summary: If it's possible to set the position of the mouse using . example: [] syntax: content: public bool CanSetMousePosition { get; } @@ -161,8 +169,8 @@ items: content.vb: Public ReadOnly Property CanSetMousePosition As Boolean overload: OpenTK.Platform.Native.macOS.MacOSMouseComponent.CanSetMousePosition* seealso: - - linkId: OpenTK.Platform.IMouseComponent.SetPosition(System.Int32,System.Int32) - commentId: M:OpenTK.Platform.IMouseComponent.SetPosition(System.Int32,System.Int32) + - linkId: OpenTK.Platform.IMouseComponent.SetGlobalPosition(OpenTK.Mathematics.Vector2) + commentId: M:OpenTK.Platform.IMouseComponent.SetGlobalPosition(OpenTK.Mathematics.Vector2) implements: - OpenTK.Platform.IMouseComponent.CanSetMousePosition - uid: OpenTK.Platform.Native.macOS.MacOSMouseComponent.SupportsRawMouseMotion @@ -230,119 +238,256 @@ items: description: The options to initialize the component with. content.vb: Public Sub Initialize(options As ToolkitOptions) overload: OpenTK.Platform.Native.macOS.MacOSMouseComponent.Initialize* + seealso: + - linkId: OpenTK.Platform.ToolkitOptions + commentId: T:OpenTK.Platform.ToolkitOptions + - linkId: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) implements: - OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) -- uid: OpenTK.Platform.Native.macOS.MacOSMouseComponent.GetPosition(System.Int32@,System.Int32@) - commentId: M:OpenTK.Platform.Native.macOS.MacOSMouseComponent.GetPosition(System.Int32@,System.Int32@) - id: GetPosition(System.Int32@,System.Int32@) +- uid: OpenTK.Platform.Native.macOS.MacOSMouseComponent.Uninitialize + commentId: M:OpenTK.Platform.Native.macOS.MacOSMouseComponent.Uninitialize + id: Uninitialize parent: OpenTK.Platform.Native.macOS.MacOSMouseComponent langs: - csharp - vb - name: GetPosition(out int, out int) - nameWithType: MacOSMouseComponent.GetPosition(out int, out int) - fullName: OpenTK.Platform.Native.macOS.MacOSMouseComponent.GetPosition(out int, out int) + name: Uninitialize() + nameWithType: MacOSMouseComponent.Uninitialize() + fullName: OpenTK.Platform.Native.macOS.MacOSMouseComponent.Uninitialize() + type: Method + source: + id: Uninitialize + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSMouseComponent.cs + startLine: 43 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform.Native.macOS + summary: Uninitialize the component. Frees any native resources used by the component. + example: [] + syntax: + content: public void Uninitialize() + content.vb: Public Sub Uninitialize() + overload: OpenTK.Platform.Native.macOS.MacOSMouseComponent.Uninitialize* + seealso: + - linkId: OpenTK.Platform.Toolkit.Uninit + commentId: M:OpenTK.Platform.Toolkit.Uninit + implements: + - OpenTK.Platform.IPalComponent.Uninitialize +- uid: OpenTK.Platform.Native.macOS.MacOSMouseComponent.GetGlobalPosition(OpenTK.Mathematics.Vector2@) + commentId: M:OpenTK.Platform.Native.macOS.MacOSMouseComponent.GetGlobalPosition(OpenTK.Mathematics.Vector2@) + id: GetGlobalPosition(OpenTK.Mathematics.Vector2@) + parent: OpenTK.Platform.Native.macOS.MacOSMouseComponent + langs: + - csharp + - vb + name: GetGlobalPosition(out Vector2) + nameWithType: MacOSMouseComponent.GetGlobalPosition(out Vector2) + fullName: OpenTK.Platform.Native.macOS.MacOSMouseComponent.GetGlobalPosition(out OpenTK.Mathematics.Vector2) + type: Method + source: + id: GetGlobalPosition + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSMouseComponent.cs + startLine: 57 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform.Native.macOS + summary: >- + Get the global mouse cursor position. + + This function may query the mouse position outside of event processing to get the position of the mouse at the time this function is called. + + The mouse position returned is the mouse position as it is on screen, it will not return virtual coordinates when using . + example: [] + syntax: + content: public void GetGlobalPosition(out Vector2 globalPosition) + parameters: + - id: globalPosition + type: OpenTK.Mathematics.Vector2 + description: Coordinate of the mouse in screen coordinates. + content.vb: Public Sub GetGlobalPosition(globalPosition As Vector2) + overload: OpenTK.Platform.Native.macOS.MacOSMouseComponent.GetGlobalPosition* + seealso: + - linkId: OpenTK.Platform.IMouseComponent.GetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2@) + commentId: M:OpenTK.Platform.IMouseComponent.GetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2@) + - linkId: OpenTK.Platform.IMouseComponent.SetGlobalPosition(OpenTK.Mathematics.Vector2) + commentId: M:OpenTK.Platform.IMouseComponent.SetGlobalPosition(OpenTK.Mathematics.Vector2) + implements: + - OpenTK.Platform.IMouseComponent.GetGlobalPosition(OpenTK.Mathematics.Vector2@) + nameWithType.vb: MacOSMouseComponent.GetGlobalPosition(Vector2) + fullName.vb: OpenTK.Platform.Native.macOS.MacOSMouseComponent.GetGlobalPosition(OpenTK.Mathematics.Vector2) + name.vb: GetGlobalPosition(Vector2) +- uid: OpenTK.Platform.Native.macOS.MacOSMouseComponent.GetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2@) + commentId: M:OpenTK.Platform.Native.macOS.MacOSMouseComponent.GetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2@) + id: GetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2@) + parent: OpenTK.Platform.Native.macOS.MacOSMouseComponent + langs: + - csharp + - vb + name: GetPosition(WindowHandle, out Vector2) + nameWithType: MacOSMouseComponent.GetPosition(WindowHandle, out Vector2) + fullName: OpenTK.Platform.Native.macOS.MacOSMouseComponent.GetPosition(OpenTK.Platform.WindowHandle, out OpenTK.Mathematics.Vector2) type: Method source: id: GetPosition path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSMouseComponent.cs - startLine: 52 + startLine: 67 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS - summary: Get the mouse cursor position. + summary: >- + Gets the mouse position as seen from the specified window. + + This function takes into consideration only the mouse events that the specified window has received and does not represent global state. + + If the window has locked the cursor using , this function will return virtual coordinates (unlike GetGlobalPosition(out Vector2i)). example: [] syntax: - content: public void GetPosition(out int x, out int y) + content: public void GetPosition(WindowHandle window, out Vector2 position) parameters: - - id: x - type: System.Int32 - description: X coordinate of the mouse in desktop space. - - id: y - type: System.Int32 - description: Y coordinate of the mouse in desktop space. - content.vb: Public Sub GetPosition(x As Integer, y As Integer) + - id: window + type: OpenTK.Platform.WindowHandle + description: The window to get the mouse position for. + - id: position + type: OpenTK.Mathematics.Vector2 + description: Coordinate of the mouse in client coordinates. + content.vb: Public Sub GetPosition(window As WindowHandle, position As Vector2) overload: OpenTK.Platform.Native.macOS.MacOSMouseComponent.GetPosition* + seealso: + - linkId: OpenTK.Platform.IMouseComponent.GetGlobalPosition(OpenTK.Mathematics.Vector2@) + commentId: M:OpenTK.Platform.IMouseComponent.GetGlobalPosition(OpenTK.Mathematics.Vector2@) implements: - - OpenTK.Platform.IMouseComponent.GetPosition(System.Int32@,System.Int32@) - nameWithType.vb: MacOSMouseComponent.GetPosition(Integer, Integer) - fullName.vb: OpenTK.Platform.Native.macOS.MacOSMouseComponent.GetPosition(Integer, Integer) - name.vb: GetPosition(Integer, Integer) -- uid: OpenTK.Platform.Native.macOS.MacOSMouseComponent.SetPosition(System.Int32,System.Int32) - commentId: M:OpenTK.Platform.Native.macOS.MacOSMouseComponent.SetPosition(System.Int32,System.Int32) - id: SetPosition(System.Int32,System.Int32) + - OpenTK.Platform.IMouseComponent.GetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2@) + nameWithType.vb: MacOSMouseComponent.GetPosition(WindowHandle, Vector2) + fullName.vb: OpenTK.Platform.Native.macOS.MacOSMouseComponent.GetPosition(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2) + name.vb: GetPosition(WindowHandle, Vector2) +- uid: OpenTK.Platform.Native.macOS.MacOSMouseComponent.SetGlobalPosition(OpenTK.Mathematics.Vector2) + commentId: M:OpenTK.Platform.Native.macOS.MacOSMouseComponent.SetGlobalPosition(OpenTK.Mathematics.Vector2) + id: SetGlobalPosition(OpenTK.Mathematics.Vector2) parent: OpenTK.Platform.Native.macOS.MacOSMouseComponent langs: - csharp - vb - name: SetPosition(int, int) - nameWithType: MacOSMouseComponent.SetPosition(int, int) - fullName: OpenTK.Platform.Native.macOS.MacOSMouseComponent.SetPosition(int, int) + name: SetGlobalPosition(Vector2) + nameWithType: MacOSMouseComponent.SetGlobalPosition(Vector2) + fullName: OpenTK.Platform.Native.macOS.MacOSMouseComponent.SetGlobalPosition(OpenTK.Mathematics.Vector2) type: Method source: - id: SetPosition + id: SetGlobalPosition path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSMouseComponent.cs - startLine: 62 + startLine: 82 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: >- - Set the mouse cursor position. + Set the global mouse cursor position. Check that is true before using this. example: [] syntax: - content: public void SetPosition(int x, int y) + content: public void SetGlobalPosition(Vector2 newGlobalPosition) parameters: - - id: x - type: System.Int32 - description: X coordinate of the mouse in desktop space. - - id: y - type: System.Int32 - description: Y coordinate of the mouse in desktop space. - content.vb: Public Sub SetPosition(x As Integer, y As Integer) - overload: OpenTK.Platform.Native.macOS.MacOSMouseComponent.SetPosition* + - id: newGlobalPosition + type: OpenTK.Mathematics.Vector2 + description: New coordinate of the mouse in screen space. + content.vb: Public Sub SetGlobalPosition(newGlobalPosition As Vector2) + overload: OpenTK.Platform.Native.macOS.MacOSMouseComponent.SetGlobalPosition* seealso: + - linkId: OpenTK.Platform.IMouseComponent.GetGlobalPosition(OpenTK.Mathematics.Vector2@) + commentId: M:OpenTK.Platform.IMouseComponent.GetGlobalPosition(OpenTK.Mathematics.Vector2@) - linkId: OpenTK.Platform.IMouseComponent.CanSetMousePosition commentId: P:OpenTK.Platform.IMouseComponent.CanSetMousePosition implements: - - OpenTK.Platform.IMouseComponent.SetPosition(System.Int32,System.Int32) - nameWithType.vb: MacOSMouseComponent.SetPosition(Integer, Integer) - fullName.vb: OpenTK.Platform.Native.macOS.MacOSMouseComponent.SetPosition(Integer, Integer) - name.vb: SetPosition(Integer, Integer) -- uid: OpenTK.Platform.Native.macOS.MacOSMouseComponent.GetMouseState(OpenTK.Platform.MouseState@) - commentId: M:OpenTK.Platform.Native.macOS.MacOSMouseComponent.GetMouseState(OpenTK.Platform.MouseState@) - id: GetMouseState(OpenTK.Platform.MouseState@) + - OpenTK.Platform.IMouseComponent.SetGlobalPosition(OpenTK.Mathematics.Vector2) +- uid: OpenTK.Platform.Native.macOS.MacOSMouseComponent.GetGlobalMouseState(OpenTK.Platform.MouseState@) + commentId: M:OpenTK.Platform.Native.macOS.MacOSMouseComponent.GetGlobalMouseState(OpenTK.Platform.MouseState@) + id: GetGlobalMouseState(OpenTK.Platform.MouseState@) parent: OpenTK.Platform.Native.macOS.MacOSMouseComponent langs: - csharp - vb - name: GetMouseState(out MouseState) - nameWithType: MacOSMouseComponent.GetMouseState(out MouseState) - fullName: OpenTK.Platform.Native.macOS.MacOSMouseComponent.GetMouseState(out OpenTK.Platform.MouseState) + name: GetGlobalMouseState(out MouseState) + nameWithType: MacOSMouseComponent.GetGlobalMouseState(out MouseState) + fullName: OpenTK.Platform.Native.macOS.MacOSMouseComponent.GetGlobalMouseState(out OpenTK.Platform.MouseState) + type: Method + source: + id: GetGlobalMouseState + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSMouseComponent.cs + startLine: 119 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform.Native.macOS + summary: >- + Fills the state struct with the current mouse state. + + This function may query the mouse state outside of event processing to get the position of the mouse at the time this function is called. + + The will be the screen mouse position and not virtual coordinates described by . + + The is in window screen coordinates. + example: [] + syntax: + content: public void GetGlobalMouseState(out MouseState state) + parameters: + - id: state + type: OpenTK.Platform.MouseState + description: The current mouse state. + content.vb: Public Sub GetGlobalMouseState(state As MouseState) + overload: OpenTK.Platform.Native.macOS.MacOSMouseComponent.GetGlobalMouseState* + seealso: + - linkId: OpenTK.Platform.IMouseComponent.GetMouseState(OpenTK.Platform.WindowHandle,OpenTK.Platform.MouseState@) + commentId: M:OpenTK.Platform.IMouseComponent.GetMouseState(OpenTK.Platform.WindowHandle,OpenTK.Platform.MouseState@) + implements: + - OpenTK.Platform.IMouseComponent.GetGlobalMouseState(OpenTK.Platform.MouseState@) + nameWithType.vb: MacOSMouseComponent.GetGlobalMouseState(MouseState) + fullName.vb: OpenTK.Platform.Native.macOS.MacOSMouseComponent.GetGlobalMouseState(OpenTK.Platform.MouseState) + name.vb: GetGlobalMouseState(MouseState) +- uid: OpenTK.Platform.Native.macOS.MacOSMouseComponent.GetMouseState(OpenTK.Platform.WindowHandle,OpenTK.Platform.MouseState@) + commentId: M:OpenTK.Platform.Native.macOS.MacOSMouseComponent.GetMouseState(OpenTK.Platform.WindowHandle,OpenTK.Platform.MouseState@) + id: GetMouseState(OpenTK.Platform.WindowHandle,OpenTK.Platform.MouseState@) + parent: OpenTK.Platform.Native.macOS.MacOSMouseComponent + langs: + - csharp + - vb + name: GetMouseState(WindowHandle, out MouseState) + nameWithType: MacOSMouseComponent.GetMouseState(WindowHandle, out MouseState) + fullName: OpenTK.Platform.Native.macOS.MacOSMouseComponent.GetMouseState(OpenTK.Platform.WindowHandle, out OpenTK.Platform.MouseState) type: Method source: id: GetMouseState path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSMouseComponent.cs - startLine: 83 + startLine: 151 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS - summary: Fills the state struct with the current mouse state. + summary: >- + Fills the state struct with the current mouse state for the specified window. + + This function takes into consideration only the mouse events that the specified window has received and does not represent global state. + + If the window has locked the cursor using , this function will return virtual coordinates (unlike ). + + The is in window relative coordinates. example: [] syntax: - content: public void GetMouseState(out MouseState state) + content: public void GetMouseState(WindowHandle window, out MouseState state) parameters: + - id: window + type: OpenTK.Platform.WindowHandle + description: The window to get the mouse state from. - id: state type: OpenTK.Platform.MouseState description: The current mouse state. - content.vb: Public Sub GetMouseState(state As MouseState) + content.vb: Public Sub GetMouseState(window As WindowHandle, state As MouseState) overload: OpenTK.Platform.Native.macOS.MacOSMouseComponent.GetMouseState* + seealso: + - linkId: OpenTK.Platform.IMouseComponent.GetGlobalMouseState(OpenTK.Platform.MouseState@) + commentId: M:OpenTK.Platform.IMouseComponent.GetGlobalMouseState(OpenTK.Platform.MouseState@) implements: - - OpenTK.Platform.IMouseComponent.GetMouseState(OpenTK.Platform.MouseState@) - nameWithType.vb: MacOSMouseComponent.GetMouseState(MouseState) - fullName.vb: OpenTK.Platform.Native.macOS.MacOSMouseComponent.GetMouseState(OpenTK.Platform.MouseState) - name.vb: GetMouseState(MouseState) + - OpenTK.Platform.IMouseComponent.GetMouseState(OpenTK.Platform.WindowHandle,OpenTK.Platform.MouseState@) + nameWithType.vb: MacOSMouseComponent.GetMouseState(WindowHandle, MouseState) + fullName.vb: OpenTK.Platform.Native.macOS.MacOSMouseComponent.GetMouseState(OpenTK.Platform.WindowHandle, OpenTK.Platform.MouseState) + name.vb: GetMouseState(WindowHandle, MouseState) - uid: OpenTK.Platform.Native.macOS.MacOSMouseComponent.IsRawMouseMotionEnabled(OpenTK.Platform.WindowHandle) commentId: M:OpenTK.Platform.Native.macOS.MacOSMouseComponent.IsRawMouseMotionEnabled(OpenTK.Platform.WindowHandle) id: IsRawMouseMotionEnabled(OpenTK.Platform.WindowHandle) @@ -357,7 +502,7 @@ items: source: id: IsRawMouseMotionEnabled path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSMouseComponent.cs - startLine: 115 + startLine: 161 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS @@ -380,6 +525,8 @@ items: seealso: - linkId: OpenTK.Platform.IMouseComponent.SupportsRawMouseMotion commentId: P:OpenTK.Platform.IMouseComponent.SupportsRawMouseMotion + - linkId: OpenTK.Platform.IMouseComponent.EnableRawMouseMotion(OpenTK.Platform.WindowHandle,System.Boolean) + commentId: M:OpenTK.Platform.IMouseComponent.EnableRawMouseMotion(OpenTK.Platform.WindowHandle,System.Boolean) implements: - OpenTK.Platform.IMouseComponent.IsRawMouseMotionEnabled(OpenTK.Platform.WindowHandle) - uid: OpenTK.Platform.Native.macOS.MacOSMouseComponent.EnableRawMouseMotion(OpenTK.Platform.WindowHandle,System.Boolean) @@ -396,7 +543,7 @@ items: source: id: EnableRawMouseMotion path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSMouseComponent.cs - startLine: 121 + startLine: 167 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS @@ -784,6 +931,19 @@ references: name: PalComponents nameWithType: PalComponents fullName: OpenTK.Platform.PalComponents +- uid: OpenTK.Core.Utility.ILogger + commentId: T:OpenTK.Core.Utility.ILogger + parent: OpenTK.Core.Utility + href: OpenTK.Core.Utility.ILogger.html + name: ILogger + nameWithType: ILogger + fullName: OpenTK.Core.Utility.ILogger +- uid: OpenTK.Platform.ToolkitOptions.Logger + commentId: P:OpenTK.Platform.ToolkitOptions.Logger + href: OpenTK.Platform.ToolkitOptions.html#OpenTK_Platform_ToolkitOptions_Logger + name: Logger + nameWithType: ToolkitOptions.Logger + fullName: OpenTK.Platform.ToolkitOptions.Logger - uid: OpenTK.Platform.Native.macOS.MacOSMouseComponent.Logger* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSMouseComponent.Logger href: OpenTK.Platform.Native.macOS.MacOSMouseComponent.html#OpenTK_Platform_Native_macOS_MacOSMouseComponent_Logger @@ -797,13 +957,6 @@ references: name: Logger nameWithType: IPalComponent.Logger fullName: OpenTK.Platform.IPalComponent.Logger -- uid: OpenTK.Core.Utility.ILogger - commentId: T:OpenTK.Core.Utility.ILogger - parent: OpenTK.Core.Utility - href: OpenTK.Core.Utility.ILogger.html - name: ILogger - nameWithType: ILogger - fullName: OpenTK.Core.Utility.ILogger - uid: OpenTK.Core.Utility commentId: N:OpenTK.Core.Utility href: OpenTK.html @@ -834,48 +987,30 @@ references: - uid: OpenTK.Core.Utility name: Utility href: OpenTK.Core.Utility.html -- uid: OpenTK.Platform.IMouseComponent.SetPosition(System.Int32,System.Int32) - commentId: M:OpenTK.Platform.IMouseComponent.SetPosition(System.Int32,System.Int32) +- uid: OpenTK.Platform.IMouseComponent.SetGlobalPosition(OpenTK.Mathematics.Vector2) + commentId: M:OpenTK.Platform.IMouseComponent.SetGlobalPosition(OpenTK.Mathematics.Vector2) parent: OpenTK.Platform.IMouseComponent - isExternal: true - href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_SetPosition_System_Int32_System_Int32_ - name: SetPosition(int, int) - nameWithType: IMouseComponent.SetPosition(int, int) - fullName: OpenTK.Platform.IMouseComponent.SetPosition(int, int) - nameWithType.vb: IMouseComponent.SetPosition(Integer, Integer) - fullName.vb: OpenTK.Platform.IMouseComponent.SetPosition(Integer, Integer) - name.vb: SetPosition(Integer, Integer) + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_SetGlobalPosition_OpenTK_Mathematics_Vector2_ + name: SetGlobalPosition(Vector2) + nameWithType: IMouseComponent.SetGlobalPosition(Vector2) + fullName: OpenTK.Platform.IMouseComponent.SetGlobalPosition(OpenTK.Mathematics.Vector2) spec.csharp: - - uid: OpenTK.Platform.IMouseComponent.SetPosition(System.Int32,System.Int32) - name: SetPosition - href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_SetPosition_System_Int32_System_Int32_ + - uid: OpenTK.Platform.IMouseComponent.SetGlobalPosition(OpenTK.Mathematics.Vector2) + name: SetGlobalPosition + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_SetGlobalPosition_OpenTK_Mathematics_Vector2_ - name: ( - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 + - uid: OpenTK.Mathematics.Vector2 + name: Vector2 + href: OpenTK.Mathematics.Vector2.html - name: ) spec.vb: - - uid: OpenTK.Platform.IMouseComponent.SetPosition(System.Int32,System.Int32) - name: SetPosition - href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_SetPosition_System_Int32_System_Int32_ + - uid: OpenTK.Platform.IMouseComponent.SetGlobalPosition(OpenTK.Mathematics.Vector2) + name: SetGlobalPosition + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_SetGlobalPosition_OpenTK_Mathematics_Vector2_ - name: ( - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 + - uid: OpenTK.Mathematics.Vector2 + name: Vector2 + href: OpenTK.Mathematics.Vector2.html - name: ) - uid: OpenTK.Platform.Native.macOS.MacOSMouseComponent.CanSetMousePosition* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSMouseComponent.CanSetMousePosition @@ -980,6 +1115,37 @@ references: name: SupportsRawMouseMotion nameWithType: IMouseComponent.SupportsRawMouseMotion fullName: OpenTK.Platform.IMouseComponent.SupportsRawMouseMotion +- uid: OpenTK.Platform.ToolkitOptions + commentId: T:OpenTK.Platform.ToolkitOptions + parent: OpenTK.Platform + href: OpenTK.Platform.ToolkitOptions.html + name: ToolkitOptions + nameWithType: ToolkitOptions + fullName: OpenTK.Platform.ToolkitOptions +- uid: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Init_OpenTK_Platform_ToolkitOptions_ + name: Init(ToolkitOptions) + nameWithType: Toolkit.Init(ToolkitOptions) + fullName: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + spec.csharp: + - uid: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + name: Init + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Init_OpenTK_Platform_ToolkitOptions_ + - name: ( + - uid: OpenTK.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Platform.ToolkitOptions.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + name: Init + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Init_OpenTK_Platform_ToolkitOptions_ + - name: ( + - uid: OpenTK.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Platform.ToolkitOptions.html + - name: ) - uid: OpenTK.Platform.Native.macOS.MacOSMouseComponent.Initialize* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSMouseComponent.Initialize href: OpenTK.Platform.Native.macOS.MacOSMouseComponent.html#OpenTK_Platform_Native_macOS_MacOSMouseComponent_Initialize_OpenTK_Platform_ToolkitOptions_ @@ -1011,103 +1177,245 @@ references: name: ToolkitOptions href: OpenTK.Platform.ToolkitOptions.html - name: ) -- uid: OpenTK.Platform.ToolkitOptions - commentId: T:OpenTK.Platform.ToolkitOptions - parent: OpenTK.Platform - href: OpenTK.Platform.ToolkitOptions.html - name: ToolkitOptions - nameWithType: ToolkitOptions - fullName: OpenTK.Platform.ToolkitOptions +- uid: OpenTK.Platform.Toolkit.Uninit + commentId: M:OpenTK.Platform.Toolkit.Uninit + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Uninit + name: Uninit() + nameWithType: Toolkit.Uninit() + fullName: OpenTK.Platform.Toolkit.Uninit() + spec.csharp: + - uid: OpenTK.Platform.Toolkit.Uninit + name: Uninit + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Uninit + - name: ( + - name: ) + spec.vb: + - uid: OpenTK.Platform.Toolkit.Uninit + name: Uninit + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Uninit + - name: ( + - name: ) +- uid: OpenTK.Platform.Native.macOS.MacOSMouseComponent.Uninitialize* + commentId: Overload:OpenTK.Platform.Native.macOS.MacOSMouseComponent.Uninitialize + href: OpenTK.Platform.Native.macOS.MacOSMouseComponent.html#OpenTK_Platform_Native_macOS_MacOSMouseComponent_Uninitialize + name: Uninitialize + nameWithType: MacOSMouseComponent.Uninitialize + fullName: OpenTK.Platform.Native.macOS.MacOSMouseComponent.Uninitialize +- uid: OpenTK.Platform.IPalComponent.Uninitialize + commentId: M:OpenTK.Platform.IPalComponent.Uninitialize + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + name: Uninitialize() + nameWithType: IPalComponent.Uninitialize() + fullName: OpenTK.Platform.IPalComponent.Uninitialize() + spec.csharp: + - uid: OpenTK.Platform.IPalComponent.Uninitialize + name: Uninitialize + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + - name: ( + - name: ) + spec.vb: + - uid: OpenTK.Platform.IPalComponent.Uninitialize + name: Uninitialize + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + - name: ( + - name: ) +- uid: OpenTK.Platform.IMouseComponent.GetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2@) + commentId: M:OpenTK.Platform.IMouseComponent.GetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2@) + parent: OpenTK.Platform.IMouseComponent + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_GetPosition_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2__ + name: GetPosition(WindowHandle, out Vector2) + nameWithType: IMouseComponent.GetPosition(WindowHandle, out Vector2) + fullName: OpenTK.Platform.IMouseComponent.GetPosition(OpenTK.Platform.WindowHandle, out OpenTK.Mathematics.Vector2) + nameWithType.vb: IMouseComponent.GetPosition(WindowHandle, Vector2) + fullName.vb: OpenTK.Platform.IMouseComponent.GetPosition(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2) + name.vb: GetPosition(WindowHandle, Vector2) + spec.csharp: + - uid: OpenTK.Platform.IMouseComponent.GetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2@) + name: GetPosition + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_GetPosition_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2__ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - name: out + - name: " " + - uid: OpenTK.Mathematics.Vector2 + name: Vector2 + href: OpenTK.Mathematics.Vector2.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IMouseComponent.GetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2@) + name: GetPosition + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_GetPosition_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2__ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: OpenTK.Mathematics.Vector2 + name: Vector2 + href: OpenTK.Mathematics.Vector2.html + - name: ) +- uid: OpenTK.Platform.CursorCaptureMode.Locked + commentId: F:OpenTK.Platform.CursorCaptureMode.Locked + href: OpenTK.Platform.CursorCaptureMode.html#OpenTK_Platform_CursorCaptureMode_Locked + name: Locked + nameWithType: CursorCaptureMode.Locked + fullName: OpenTK.Platform.CursorCaptureMode.Locked +- uid: OpenTK.Platform.Native.macOS.MacOSMouseComponent.GetGlobalPosition* + commentId: Overload:OpenTK.Platform.Native.macOS.MacOSMouseComponent.GetGlobalPosition + href: OpenTK.Platform.Native.macOS.MacOSMouseComponent.html#OpenTK_Platform_Native_macOS_MacOSMouseComponent_GetGlobalPosition_OpenTK_Mathematics_Vector2__ + name: GetGlobalPosition + nameWithType: MacOSMouseComponent.GetGlobalPosition + fullName: OpenTK.Platform.Native.macOS.MacOSMouseComponent.GetGlobalPosition +- uid: OpenTK.Platform.IMouseComponent.GetGlobalPosition(OpenTK.Mathematics.Vector2@) + commentId: M:OpenTK.Platform.IMouseComponent.GetGlobalPosition(OpenTK.Mathematics.Vector2@) + parent: OpenTK.Platform.IMouseComponent + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_GetGlobalPosition_OpenTK_Mathematics_Vector2__ + name: GetGlobalPosition(out Vector2) + nameWithType: IMouseComponent.GetGlobalPosition(out Vector2) + fullName: OpenTK.Platform.IMouseComponent.GetGlobalPosition(out OpenTK.Mathematics.Vector2) + nameWithType.vb: IMouseComponent.GetGlobalPosition(Vector2) + fullName.vb: OpenTK.Platform.IMouseComponent.GetGlobalPosition(OpenTK.Mathematics.Vector2) + name.vb: GetGlobalPosition(Vector2) + spec.csharp: + - uid: OpenTK.Platform.IMouseComponent.GetGlobalPosition(OpenTK.Mathematics.Vector2@) + name: GetGlobalPosition + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_GetGlobalPosition_OpenTK_Mathematics_Vector2__ + - name: ( + - name: out + - name: " " + - uid: OpenTK.Mathematics.Vector2 + name: Vector2 + href: OpenTK.Mathematics.Vector2.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IMouseComponent.GetGlobalPosition(OpenTK.Mathematics.Vector2@) + name: GetGlobalPosition + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_GetGlobalPosition_OpenTK_Mathematics_Vector2__ + - name: ( + - uid: OpenTK.Mathematics.Vector2 + name: Vector2 + href: OpenTK.Mathematics.Vector2.html + - name: ) +- uid: OpenTK.Mathematics.Vector2 + commentId: T:OpenTK.Mathematics.Vector2 + parent: OpenTK.Mathematics + href: OpenTK.Mathematics.Vector2.html + name: Vector2 + nameWithType: Vector2 + fullName: OpenTK.Mathematics.Vector2 +- uid: OpenTK.Mathematics + commentId: N:OpenTK.Mathematics + href: OpenTK.html + name: OpenTK.Mathematics + nameWithType: OpenTK.Mathematics + fullName: OpenTK.Mathematics + spec.csharp: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Mathematics + name: Mathematics + href: OpenTK.Mathematics.html + spec.vb: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Mathematics + name: Mathematics + href: OpenTK.Mathematics.html - uid: OpenTK.Platform.Native.macOS.MacOSMouseComponent.GetPosition* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSMouseComponent.GetPosition - href: OpenTK.Platform.Native.macOS.MacOSMouseComponent.html#OpenTK_Platform_Native_macOS_MacOSMouseComponent_GetPosition_System_Int32__System_Int32__ + href: OpenTK.Platform.Native.macOS.MacOSMouseComponent.html#OpenTK_Platform_Native_macOS_MacOSMouseComponent_GetPosition_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2__ name: GetPosition nameWithType: MacOSMouseComponent.GetPosition fullName: OpenTK.Platform.Native.macOS.MacOSMouseComponent.GetPosition -- uid: OpenTK.Platform.IMouseComponent.GetPosition(System.Int32@,System.Int32@) - commentId: M:OpenTK.Platform.IMouseComponent.GetPosition(System.Int32@,System.Int32@) +- uid: OpenTK.Platform.WindowHandle + commentId: T:OpenTK.Platform.WindowHandle + parent: OpenTK.Platform + href: OpenTK.Platform.WindowHandle.html + name: WindowHandle + nameWithType: WindowHandle + fullName: OpenTK.Platform.WindowHandle +- uid: OpenTK.Platform.Native.macOS.MacOSMouseComponent.SetGlobalPosition* + commentId: Overload:OpenTK.Platform.Native.macOS.MacOSMouseComponent.SetGlobalPosition + href: OpenTK.Platform.Native.macOS.MacOSMouseComponent.html#OpenTK_Platform_Native_macOS_MacOSMouseComponent_SetGlobalPosition_OpenTK_Mathematics_Vector2_ + name: SetGlobalPosition + nameWithType: MacOSMouseComponent.SetGlobalPosition + fullName: OpenTK.Platform.Native.macOS.MacOSMouseComponent.SetGlobalPosition +- uid: OpenTK.Platform.IMouseComponent.GetMouseState(OpenTK.Platform.WindowHandle,OpenTK.Platform.MouseState@) + commentId: M:OpenTK.Platform.IMouseComponent.GetMouseState(OpenTK.Platform.WindowHandle,OpenTK.Platform.MouseState@) parent: OpenTK.Platform.IMouseComponent - isExternal: true - href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_GetPosition_System_Int32__System_Int32__ - name: GetPosition(out int, out int) - nameWithType: IMouseComponent.GetPosition(out int, out int) - fullName: OpenTK.Platform.IMouseComponent.GetPosition(out int, out int) - nameWithType.vb: IMouseComponent.GetPosition(Integer, Integer) - fullName.vb: OpenTK.Platform.IMouseComponent.GetPosition(Integer, Integer) - name.vb: GetPosition(Integer, Integer) + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_GetMouseState_OpenTK_Platform_WindowHandle_OpenTK_Platform_MouseState__ + name: GetMouseState(WindowHandle, out MouseState) + nameWithType: IMouseComponent.GetMouseState(WindowHandle, out MouseState) + fullName: OpenTK.Platform.IMouseComponent.GetMouseState(OpenTK.Platform.WindowHandle, out OpenTK.Platform.MouseState) + nameWithType.vb: IMouseComponent.GetMouseState(WindowHandle, MouseState) + fullName.vb: OpenTK.Platform.IMouseComponent.GetMouseState(OpenTK.Platform.WindowHandle, OpenTK.Platform.MouseState) + name.vb: GetMouseState(WindowHandle, MouseState) spec.csharp: - - uid: OpenTK.Platform.IMouseComponent.GetPosition(System.Int32@,System.Int32@) - name: GetPosition - href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_GetPosition_System_Int32__System_Int32__ + - uid: OpenTK.Platform.IMouseComponent.GetMouseState(OpenTK.Platform.WindowHandle,OpenTK.Platform.MouseState@) + name: GetMouseState + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_GetMouseState_OpenTK_Platform_WindowHandle_OpenTK_Platform_MouseState__ - name: ( - - name: out - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - name: out - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 + - uid: OpenTK.Platform.MouseState + name: MouseState + href: OpenTK.Platform.MouseState.html - name: ) spec.vb: - - uid: OpenTK.Platform.IMouseComponent.GetPosition(System.Int32@,System.Int32@) - name: GetPosition - href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_GetPosition_System_Int32__System_Int32__ + - uid: OpenTK.Platform.IMouseComponent.GetMouseState(OpenTK.Platform.WindowHandle,OpenTK.Platform.MouseState@) + name: GetMouseState + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_GetMouseState_OpenTK_Platform_WindowHandle_OpenTK_Platform_MouseState__ - name: ( - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 + - uid: OpenTK.Platform.MouseState + name: MouseState + href: OpenTK.Platform.MouseState.html - name: ) -- uid: System.Int32 - commentId: T:System.Int32 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - name: int - nameWithType: int - fullName: int - nameWithType.vb: Integer - fullName.vb: Integer - name.vb: Integer -- uid: OpenTK.Platform.Native.macOS.MacOSMouseComponent.SetPosition* - commentId: Overload:OpenTK.Platform.Native.macOS.MacOSMouseComponent.SetPosition - href: OpenTK.Platform.Native.macOS.MacOSMouseComponent.html#OpenTK_Platform_Native_macOS_MacOSMouseComponent_SetPosition_System_Int32_System_Int32_ - name: SetPosition - nameWithType: MacOSMouseComponent.SetPosition - fullName: OpenTK.Platform.Native.macOS.MacOSMouseComponent.SetPosition -- uid: OpenTK.Platform.Native.macOS.MacOSMouseComponent.GetMouseState* - commentId: Overload:OpenTK.Platform.Native.macOS.MacOSMouseComponent.GetMouseState - href: OpenTK.Platform.Native.macOS.MacOSMouseComponent.html#OpenTK_Platform_Native_macOS_MacOSMouseComponent_GetMouseState_OpenTK_Platform_MouseState__ - name: GetMouseState - nameWithType: MacOSMouseComponent.GetMouseState - fullName: OpenTK.Platform.Native.macOS.MacOSMouseComponent.GetMouseState -- uid: OpenTK.Platform.IMouseComponent.GetMouseState(OpenTK.Platform.MouseState@) - commentId: M:OpenTK.Platform.IMouseComponent.GetMouseState(OpenTK.Platform.MouseState@) +- uid: OpenTK.Platform.MouseState.Position + commentId: F:OpenTK.Platform.MouseState.Position + href: OpenTK.Platform.MouseState.html#OpenTK_Platform_MouseState_Position + name: Position + nameWithType: MouseState.Position + fullName: OpenTK.Platform.MouseState.Position +- uid: OpenTK.Platform.Native.macOS.MacOSMouseComponent.GetGlobalMouseState* + commentId: Overload:OpenTK.Platform.Native.macOS.MacOSMouseComponent.GetGlobalMouseState + href: OpenTK.Platform.Native.macOS.MacOSMouseComponent.html#OpenTK_Platform_Native_macOS_MacOSMouseComponent_GetGlobalMouseState_OpenTK_Platform_MouseState__ + name: GetGlobalMouseState + nameWithType: MacOSMouseComponent.GetGlobalMouseState + fullName: OpenTK.Platform.Native.macOS.MacOSMouseComponent.GetGlobalMouseState +- uid: OpenTK.Platform.IMouseComponent.GetGlobalMouseState(OpenTK.Platform.MouseState@) + commentId: M:OpenTK.Platform.IMouseComponent.GetGlobalMouseState(OpenTK.Platform.MouseState@) parent: OpenTK.Platform.IMouseComponent - href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_GetMouseState_OpenTK_Platform_MouseState__ - name: GetMouseState(out MouseState) - nameWithType: IMouseComponent.GetMouseState(out MouseState) - fullName: OpenTK.Platform.IMouseComponent.GetMouseState(out OpenTK.Platform.MouseState) - nameWithType.vb: IMouseComponent.GetMouseState(MouseState) - fullName.vb: OpenTK.Platform.IMouseComponent.GetMouseState(OpenTK.Platform.MouseState) - name.vb: GetMouseState(MouseState) + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_GetGlobalMouseState_OpenTK_Platform_MouseState__ + name: GetGlobalMouseState(out MouseState) + nameWithType: IMouseComponent.GetGlobalMouseState(out MouseState) + fullName: OpenTK.Platform.IMouseComponent.GetGlobalMouseState(out OpenTK.Platform.MouseState) + nameWithType.vb: IMouseComponent.GetGlobalMouseState(MouseState) + fullName.vb: OpenTK.Platform.IMouseComponent.GetGlobalMouseState(OpenTK.Platform.MouseState) + name.vb: GetGlobalMouseState(MouseState) spec.csharp: - - uid: OpenTK.Platform.IMouseComponent.GetMouseState(OpenTK.Platform.MouseState@) - name: GetMouseState - href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_GetMouseState_OpenTK_Platform_MouseState__ + - uid: OpenTK.Platform.IMouseComponent.GetGlobalMouseState(OpenTK.Platform.MouseState@) + name: GetGlobalMouseState + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_GetGlobalMouseState_OpenTK_Platform_MouseState__ - name: ( - name: out - name: " " @@ -1116,9 +1424,9 @@ references: href: OpenTK.Platform.MouseState.html - name: ) spec.vb: - - uid: OpenTK.Platform.IMouseComponent.GetMouseState(OpenTK.Platform.MouseState@) - name: GetMouseState - href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_GetMouseState_OpenTK_Platform_MouseState__ + - uid: OpenTK.Platform.IMouseComponent.GetGlobalMouseState(OpenTK.Platform.MouseState@) + name: GetGlobalMouseState + href: OpenTK.Platform.IMouseComponent.html#OpenTK_Platform_IMouseComponent_GetGlobalMouseState_OpenTK_Platform_MouseState__ - name: ( - uid: OpenTK.Platform.MouseState name: MouseState @@ -1131,19 +1439,18 @@ references: name: MouseState nameWithType: MouseState fullName: OpenTK.Platform.MouseState +- uid: OpenTK.Platform.Native.macOS.MacOSMouseComponent.GetMouseState* + commentId: Overload:OpenTK.Platform.Native.macOS.MacOSMouseComponent.GetMouseState + href: OpenTK.Platform.Native.macOS.MacOSMouseComponent.html#OpenTK_Platform_Native_macOS_MacOSMouseComponent_GetMouseState_OpenTK_Platform_WindowHandle_OpenTK_Platform_MouseState__ + name: GetMouseState + nameWithType: MacOSMouseComponent.GetMouseState + fullName: OpenTK.Platform.Native.macOS.MacOSMouseComponent.GetMouseState - uid: OpenTK.Platform.Native.macOS.MacOSMouseComponent.IsRawMouseMotionEnabled* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSMouseComponent.IsRawMouseMotionEnabled href: OpenTK.Platform.Native.macOS.MacOSMouseComponent.html#OpenTK_Platform_Native_macOS_MacOSMouseComponent_IsRawMouseMotionEnabled_OpenTK_Platform_WindowHandle_ name: IsRawMouseMotionEnabled nameWithType: MacOSMouseComponent.IsRawMouseMotionEnabled fullName: OpenTK.Platform.Native.macOS.MacOSMouseComponent.IsRawMouseMotionEnabled -- uid: OpenTK.Platform.WindowHandle - commentId: T:OpenTK.Platform.WindowHandle - parent: OpenTK.Platform - href: OpenTK.Platform.WindowHandle.html - name: WindowHandle - nameWithType: WindowHandle - fullName: OpenTK.Platform.WindowHandle - uid: OpenTK.Platform.RawMouseMoveEventArgs commentId: T:OpenTK.Platform.RawMouseMoveEventArgs href: OpenTK.Platform.RawMouseMoveEventArgs.html diff --git a/api/OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.yml b/api/OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.yml index c48cb689..08709dde 100644 --- a/api/OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.yml +++ b/api/OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.yml @@ -24,6 +24,7 @@ items: - OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.SetCurrentContext(OpenTK.Platform.OpenGLContextHandle) - OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.SetSwapInterval(System.Int32) - OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.SwapBuffers(OpenTK.Platform.OpenGLContextHandle) + - OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.Uninitialize langs: - csharp - vb @@ -68,7 +69,7 @@ items: source: id: Name path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSOpenGLComponent.cs - startLine: 34 + startLine: 35 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS @@ -97,7 +98,7 @@ items: source: id: Provides path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSOpenGLComponent.cs - startLine: 37 + startLine: 38 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS @@ -126,11 +127,11 @@ items: source: id: Logger path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSOpenGLComponent.cs - startLine: 40 + startLine: 41 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS - summary: Provides a logger for this component. + summary: The logger that this component uses to log diagnostic messages. example: [] syntax: content: public ILogger? Logger { get; set; } @@ -139,6 +140,11 @@ items: type: OpenTK.Core.Utility.ILogger content.vb: Public Property Logger As ILogger overload: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.Logger* + seealso: + - linkId: OpenTK.Core.Utility.ILogger + commentId: T:OpenTK.Core.Utility.ILogger + - linkId: OpenTK.Platform.ToolkitOptions.Logger + commentId: P:OpenTK.Platform.ToolkitOptions.Logger implements: - OpenTK.Platform.IPalComponent.Logger - uid: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.Initialize(OpenTK.Platform.ToolkitOptions) @@ -155,7 +161,7 @@ items: source: id: Initialize path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSOpenGLComponent.cs - startLine: 43 + startLine: 44 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS @@ -169,8 +175,42 @@ items: description: The options to initialize the component with. content.vb: Public Sub Initialize(options As ToolkitOptions) overload: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.Initialize* + seealso: + - linkId: OpenTK.Platform.ToolkitOptions + commentId: T:OpenTK.Platform.ToolkitOptions + - linkId: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) implements: - OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) +- uid: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.Uninitialize + commentId: M:OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.Uninitialize + id: Uninitialize + parent: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent + langs: + - csharp + - vb + name: Uninitialize() + nameWithType: MacOSOpenGLComponent.Uninitialize() + fullName: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.Uninitialize() + type: Method + source: + id: Uninitialize + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSOpenGLComponent.cs + startLine: 50 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform.Native.macOS + summary: Uninitialize the component. Frees any native resources used by the component. + example: [] + syntax: + content: public void Uninitialize() + content.vb: Public Sub Uninitialize() + overload: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.Uninitialize* + seealso: + - linkId: OpenTK.Platform.Toolkit.Uninit + commentId: M:OpenTK.Platform.Toolkit.Uninit + implements: + - OpenTK.Platform.IPalComponent.Uninitialize - uid: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.CanShareContexts commentId: P:OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.CanShareContexts id: CanShareContexts @@ -185,7 +225,7 @@ items: source: id: CanShareContexts path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSOpenGLComponent.cs - startLine: 49 + startLine: 55 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS @@ -214,7 +254,7 @@ items: source: id: CanCreateFromWindow path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSOpenGLComponent.cs - startLine: 52 + startLine: 58 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS @@ -246,7 +286,7 @@ items: source: id: CanCreateFromSurface path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSOpenGLComponent.cs - startLine: 55 + startLine: 61 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS @@ -275,7 +315,7 @@ items: source: id: CreateFromSurface path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSOpenGLComponent.cs - startLine: 58 + startLine: 64 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS @@ -304,7 +344,7 @@ items: source: id: CreateFromWindow path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSOpenGLComponent.cs - startLine: 227 + startLine: 234 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS @@ -321,6 +361,11 @@ items: description: An OpenGL context handle. content.vb: Public Function CreateFromWindow(handle As WindowHandle) As OpenGLContextHandle overload: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.CreateFromWindow* + seealso: + - linkId: OpenTK.Platform.IWindowComponent.Create(OpenTK.Platform.GraphicsApiHints) + commentId: M:OpenTK.Platform.IWindowComponent.Create(OpenTK.Platform.GraphicsApiHints) + - linkId: OpenTK.Platform.OpenGLGraphicsApiHints + commentId: T:OpenTK.Platform.OpenGLGraphicsApiHints implements: - OpenTK.Platform.IOpenGLComponent.CreateFromWindow(OpenTK.Platform.WindowHandle) - uid: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.DestroyContext(OpenTK.Platform.OpenGLContextHandle) @@ -337,7 +382,7 @@ items: source: id: DestroyContext path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSOpenGLComponent.cs - startLine: 407 + startLine: 424 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS @@ -351,10 +396,9 @@ items: description: Handle to the OpenGL context to destroy. content.vb: Public Sub DestroyContext(handle As OpenGLContextHandle) overload: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.DestroyContext* - exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: OpenGL context handle is null. + seealso: + - linkId: OpenTK.Platform.IOpenGLComponent.CreateFromWindow(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IOpenGLComponent.CreateFromWindow(OpenTK.Platform.WindowHandle) implements: - OpenTK.Platform.IOpenGLComponent.DestroyContext(OpenTK.Platform.OpenGLContextHandle) - uid: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.GetBindingsContext(OpenTK.Platform.OpenGLContextHandle) @@ -371,11 +415,14 @@ items: source: id: GetBindingsContext path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSOpenGLComponent.cs - startLine: 420 + startLine: 437 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS - summary: Gets a from an . + summary: >- + Gets a from an . + + Pass this to to load the OpenGL bindings. example: [] syntax: content: public IBindingsContext GetBindingsContext(OpenGLContextHandle handle) @@ -388,6 +435,11 @@ items: description: The created bindings context. content.vb: Public Function GetBindingsContext(handle As OpenGLContextHandle) As IBindingsContext overload: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.GetBindingsContext* + seealso: + - linkId: OpenTK.Graphics.GLLoader + commentId: T:OpenTK.Graphics.GLLoader + - linkId: OpenTK.IBindingsContext + commentId: T:OpenTK.IBindingsContext implements: - OpenTK.Platform.IOpenGLComponent.GetBindingsContext(OpenTK.Platform.OpenGLContextHandle) - uid: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.GetProcedureAddress(OpenTK.Platform.OpenGLContextHandle,System.String) @@ -404,7 +456,7 @@ items: source: id: GetProcedureAddress path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSOpenGLComponent.cs - startLine: 426 + startLine: 443 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS @@ -424,10 +476,6 @@ items: description: The procedure address to the OpenGL command. content.vb: Public Function GetProcedureAddress(handle As OpenGLContextHandle, procedureName As String) As IntPtr overload: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.GetProcedureAddress* - exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: OpenGL context handle or procedure name is null. implements: - OpenTK.Platform.IOpenGLComponent.GetProcedureAddress(OpenTK.Platform.OpenGLContextHandle,System.String) nameWithType.vb: MacOSOpenGLComponent.GetProcedureAddress(OpenGLContextHandle, String) @@ -447,7 +495,7 @@ items: source: id: GetCurrentContext path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSOpenGLComponent.cs - startLine: 433 + startLine: 450 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS @@ -457,9 +505,12 @@ items: content: public OpenGLContextHandle? GetCurrentContext() return: type: OpenTK.Platform.OpenGLContextHandle - description: Handle to the current OpenGL context, null if none are current. + description: Handle to the current OpenGL context, null if no context is current. content.vb: Public Function GetCurrentContext() As OpenGLContextHandle overload: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.GetCurrentContext* + seealso: + - linkId: OpenTK.Platform.IOpenGLComponent.SetCurrentContext(OpenTK.Platform.OpenGLContextHandle) + commentId: M:OpenTK.Platform.IOpenGLComponent.SetCurrentContext(OpenTK.Platform.OpenGLContextHandle) implements: - OpenTK.Platform.IOpenGLComponent.GetCurrentContext - uid: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.SetCurrentContext(OpenTK.Platform.OpenGLContextHandle) @@ -476,7 +527,7 @@ items: source: id: SetCurrentContext path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSOpenGLComponent.cs - startLine: 448 + startLine: 465 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS @@ -487,12 +538,15 @@ items: parameters: - id: handle type: OpenTK.Platform.OpenGLContextHandle - description: Handle to the OpenGL context to make current, or null to make none current. + description: Handle to the OpenGL context to make current, or null to make no context current. return: type: System.Boolean - description: True when the OpenGL context is successfully made current. + description: true when the OpenGL context is successfully made current. content.vb: Public Function SetCurrentContext(handle As OpenGLContextHandle) As Boolean overload: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.SetCurrentContext* + seealso: + - linkId: OpenTK.Platform.IOpenGLComponent.GetCurrentContext + commentId: M:OpenTK.Platform.IOpenGLComponent.GetCurrentContext implements: - OpenTK.Platform.IOpenGLComponent.SetCurrentContext(OpenTK.Platform.OpenGLContextHandle) nameWithType.vb: MacOSOpenGLComponent.SetCurrentContext(OpenGLContextHandle) @@ -512,7 +566,7 @@ items: source: id: GetSharedContext path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSOpenGLComponent.cs - startLine: 465 + startLine: 482 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS @@ -529,6 +583,9 @@ items: description: Handle to the OpenGL context the given context shares display lists with. content.vb: Public Function GetSharedContext(handle As OpenGLContextHandle) As OpenGLContextHandle overload: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.GetSharedContext* + seealso: + - linkId: OpenTK.Platform.OpenGLGraphicsApiHints.SharedContext + commentId: P:OpenTK.Platform.OpenGLGraphicsApiHints.SharedContext implements: - OpenTK.Platform.IOpenGLComponent.GetSharedContext(OpenTK.Platform.OpenGLContextHandle) - uid: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.SetSwapInterval(System.Int32) @@ -545,7 +602,7 @@ items: source: id: SetSwapInterval path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSOpenGLComponent.cs - startLine: 472 + startLine: 489 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS @@ -578,17 +635,17 @@ items: source: id: GetSwapInterval path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSOpenGLComponent.cs - startLine: 483 + startLine: 500 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS - summary: Gets the swap interval of the current OpenGL context. + summary: Gets the swap interval of the current OpenGL context, or -1 if no context is current. example: [] syntax: content: public int GetSwapInterval() return: type: System.Int32 - description: The current swap interval. + description: The current swap interval, or -1 if no context is current. content.vb: Public Function GetSwapInterval() As Integer overload: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.GetSwapInterval* implements: @@ -607,7 +664,7 @@ items: source: id: SwapBuffers path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSOpenGLComponent.cs - startLine: 497 + startLine: 514 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS @@ -621,6 +678,9 @@ items: description: Handle to the context. content.vb: Public Sub SwapBuffers(handle As OpenGLContextHandle) overload: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.SwapBuffers* + seealso: + - linkId: OpenTK.Platform.OpenGLGraphicsApiHints.SwapMethod + commentId: P:OpenTK.Platform.OpenGLGraphicsApiHints.SwapMethod implements: - OpenTK.Platform.IOpenGLComponent.SwapBuffers(OpenTK.Platform.OpenGLContextHandle) - uid: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.GetNSOpenGLContext(OpenTK.Platform.OpenGLContextHandle) @@ -637,7 +697,7 @@ items: source: id: GetNSOpenGLContext path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSOpenGLComponent.cs - startLine: 508 + startLine: 525 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS @@ -1010,6 +1070,19 @@ references: name: PalComponents nameWithType: PalComponents fullName: OpenTK.Platform.PalComponents +- uid: OpenTK.Core.Utility.ILogger + commentId: T:OpenTK.Core.Utility.ILogger + parent: OpenTK.Core.Utility + href: OpenTK.Core.Utility.ILogger.html + name: ILogger + nameWithType: ILogger + fullName: OpenTK.Core.Utility.ILogger +- uid: OpenTK.Platform.ToolkitOptions.Logger + commentId: P:OpenTK.Platform.ToolkitOptions.Logger + href: OpenTK.Platform.ToolkitOptions.html#OpenTK_Platform_ToolkitOptions_Logger + name: Logger + nameWithType: ToolkitOptions.Logger + fullName: OpenTK.Platform.ToolkitOptions.Logger - uid: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.Logger* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.Logger href: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.html#OpenTK_Platform_Native_macOS_MacOSOpenGLComponent_Logger @@ -1023,13 +1096,6 @@ references: name: Logger nameWithType: IPalComponent.Logger fullName: OpenTK.Platform.IPalComponent.Logger -- uid: OpenTK.Core.Utility.ILogger - commentId: T:OpenTK.Core.Utility.ILogger - parent: OpenTK.Core.Utility - href: OpenTK.Core.Utility.ILogger.html - name: ILogger - nameWithType: ILogger - fullName: OpenTK.Core.Utility.ILogger - uid: OpenTK.Core.Utility commentId: N:OpenTK.Core.Utility href: OpenTK.html @@ -1060,6 +1126,37 @@ references: - uid: OpenTK.Core.Utility name: Utility href: OpenTK.Core.Utility.html +- uid: OpenTK.Platform.ToolkitOptions + commentId: T:OpenTK.Platform.ToolkitOptions + parent: OpenTK.Platform + href: OpenTK.Platform.ToolkitOptions.html + name: ToolkitOptions + nameWithType: ToolkitOptions + fullName: OpenTK.Platform.ToolkitOptions +- uid: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Init_OpenTK_Platform_ToolkitOptions_ + name: Init(ToolkitOptions) + nameWithType: Toolkit.Init(ToolkitOptions) + fullName: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + spec.csharp: + - uid: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + name: Init + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Init_OpenTK_Platform_ToolkitOptions_ + - name: ( + - uid: OpenTK.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Platform.ToolkitOptions.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + name: Init + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Init_OpenTK_Platform_ToolkitOptions_ + - name: ( + - uid: OpenTK.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Platform.ToolkitOptions.html + - name: ) - uid: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.Initialize* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.Initialize href: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.html#OpenTK_Platform_Native_macOS_MacOSOpenGLComponent_Initialize_OpenTK_Platform_ToolkitOptions_ @@ -1091,13 +1188,49 @@ references: name: ToolkitOptions href: OpenTK.Platform.ToolkitOptions.html - name: ) -- uid: OpenTK.Platform.ToolkitOptions - commentId: T:OpenTK.Platform.ToolkitOptions - parent: OpenTK.Platform - href: OpenTK.Platform.ToolkitOptions.html - name: ToolkitOptions - nameWithType: ToolkitOptions - fullName: OpenTK.Platform.ToolkitOptions +- uid: OpenTK.Platform.Toolkit.Uninit + commentId: M:OpenTK.Platform.Toolkit.Uninit + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Uninit + name: Uninit() + nameWithType: Toolkit.Uninit() + fullName: OpenTK.Platform.Toolkit.Uninit() + spec.csharp: + - uid: OpenTK.Platform.Toolkit.Uninit + name: Uninit + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Uninit + - name: ( + - name: ) + spec.vb: + - uid: OpenTK.Platform.Toolkit.Uninit + name: Uninit + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Uninit + - name: ( + - name: ) +- uid: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.Uninitialize* + commentId: Overload:OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.Uninitialize + href: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.html#OpenTK_Platform_Native_macOS_MacOSOpenGLComponent_Uninitialize + name: Uninitialize + nameWithType: MacOSOpenGLComponent.Uninitialize + fullName: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.Uninitialize +- uid: OpenTK.Platform.IPalComponent.Uninitialize + commentId: M:OpenTK.Platform.IPalComponent.Uninitialize + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + name: Uninitialize() + nameWithType: IPalComponent.Uninitialize() + fullName: OpenTK.Platform.IPalComponent.Uninitialize() + spec.csharp: + - uid: OpenTK.Platform.IPalComponent.Uninitialize + name: Uninitialize + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + - name: ( + - name: ) + spec.vb: + - uid: OpenTK.Platform.IPalComponent.Uninitialize + name: Uninitialize + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + - name: ( + - name: ) - uid: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.CanShareContexts* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.CanShareContexts href: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.html#OpenTK_Platform_Native_macOS_MacOSOpenGLComponent_CanShareContexts @@ -1205,6 +1338,38 @@ references: name: OpenGLContextHandle nameWithType: OpenGLContextHandle fullName: OpenTK.Platform.OpenGLContextHandle +- uid: OpenTK.Platform.IWindowComponent.Create(OpenTK.Platform.GraphicsApiHints) + commentId: M:OpenTK.Platform.IWindowComponent.Create(OpenTK.Platform.GraphicsApiHints) + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_Create_OpenTK_Platform_GraphicsApiHints_ + name: Create(GraphicsApiHints) + nameWithType: IWindowComponent.Create(GraphicsApiHints) + fullName: OpenTK.Platform.IWindowComponent.Create(OpenTK.Platform.GraphicsApiHints) + spec.csharp: + - uid: OpenTK.Platform.IWindowComponent.Create(OpenTK.Platform.GraphicsApiHints) + name: Create + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_Create_OpenTK_Platform_GraphicsApiHints_ + - name: ( + - uid: OpenTK.Platform.GraphicsApiHints + name: GraphicsApiHints + href: OpenTK.Platform.GraphicsApiHints.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IWindowComponent.Create(OpenTK.Platform.GraphicsApiHints) + name: Create + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_Create_OpenTK_Platform_GraphicsApiHints_ + - name: ( + - uid: OpenTK.Platform.GraphicsApiHints + name: GraphicsApiHints + href: OpenTK.Platform.GraphicsApiHints.html + - name: ) +- uid: OpenTK.Platform.OpenGLGraphicsApiHints + commentId: T:OpenTK.Platform.OpenGLGraphicsApiHints + parent: OpenTK.Platform + href: OpenTK.Platform.OpenGLGraphicsApiHints.html + name: OpenGLGraphicsApiHints + nameWithType: OpenGLGraphicsApiHints + fullName: OpenTK.Platform.OpenGLGraphicsApiHints - uid: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.CreateFromWindow* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.CreateFromWindow href: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.html#OpenTK_Platform_Native_macOS_MacOSOpenGLComponent_CreateFromWindow_OpenTK_Platform_WindowHandle_ @@ -1218,13 +1383,13 @@ references: name: WindowHandle nameWithType: WindowHandle fullName: OpenTK.Platform.WindowHandle -- uid: System.ArgumentNullException - commentId: T:System.ArgumentNullException - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.argumentnullexception - name: ArgumentNullException - nameWithType: ArgumentNullException - fullName: System.ArgumentNullException +- uid: OpenTK.Platform.IWindowComponent + commentId: T:OpenTK.Platform.IWindowComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IWindowComponent.html + name: IWindowComponent + nameWithType: IWindowComponent + fullName: OpenTK.Platform.IWindowComponent - uid: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.DestroyContext* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.DestroyContext href: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.html#OpenTK_Platform_Native_macOS_MacOSOpenGLComponent_DestroyContext_OpenTK_Platform_OpenGLContextHandle_ @@ -1256,6 +1421,12 @@ references: name: OpenGLContextHandle href: OpenTK.Platform.OpenGLContextHandle.html - name: ) +- uid: OpenTK.Graphics.GLLoader + commentId: T:OpenTK.Graphics.GLLoader + href: OpenTK.Graphics.GLLoader.html + name: GLLoader + nameWithType: GLLoader + fullName: OpenTK.Graphics.GLLoader - uid: OpenTK.IBindingsContext commentId: T:OpenTK.IBindingsContext parent: OpenTK @@ -1263,6 +1434,30 @@ references: name: IBindingsContext nameWithType: IBindingsContext fullName: OpenTK.IBindingsContext +- uid: OpenTK.Graphics.GLLoader.LoadBindings(OpenTK.IBindingsContext) + commentId: M:OpenTK.Graphics.GLLoader.LoadBindings(OpenTK.IBindingsContext) + href: OpenTK.Graphics.GLLoader.html#OpenTK_Graphics_GLLoader_LoadBindings_OpenTK_IBindingsContext_ + name: LoadBindings(IBindingsContext) + nameWithType: GLLoader.LoadBindings(IBindingsContext) + fullName: OpenTK.Graphics.GLLoader.LoadBindings(OpenTK.IBindingsContext) + spec.csharp: + - uid: OpenTK.Graphics.GLLoader.LoadBindings(OpenTK.IBindingsContext) + name: LoadBindings + href: OpenTK.Graphics.GLLoader.html#OpenTK_Graphics_GLLoader_LoadBindings_OpenTK_IBindingsContext_ + - name: ( + - uid: OpenTK.IBindingsContext + name: IBindingsContext + href: OpenTK.IBindingsContext.html + - name: ) + spec.vb: + - uid: OpenTK.Graphics.GLLoader.LoadBindings(OpenTK.IBindingsContext) + name: LoadBindings + href: OpenTK.Graphics.GLLoader.html#OpenTK_Graphics_GLLoader_LoadBindings_OpenTK_IBindingsContext_ + - name: ( + - uid: OpenTK.IBindingsContext + name: IBindingsContext + href: OpenTK.IBindingsContext.html + - name: ) - uid: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.GetBindingsContext* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.GetBindingsContext href: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.html#OpenTK_Platform_Native_macOS_MacOSOpenGLComponent_GetBindingsContext_OpenTK_Platform_OpenGLContextHandle_ @@ -1358,6 +1553,31 @@ references: nameWithType.vb: IntPtr fullName.vb: System.IntPtr name.vb: IntPtr +- uid: OpenTK.Platform.IOpenGLComponent.SetCurrentContext(OpenTK.Platform.OpenGLContextHandle) + commentId: M:OpenTK.Platform.IOpenGLComponent.SetCurrentContext(OpenTK.Platform.OpenGLContextHandle) + parent: OpenTK.Platform.IOpenGLComponent + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_SetCurrentContext_OpenTK_Platform_OpenGLContextHandle_ + name: SetCurrentContext(OpenGLContextHandle) + nameWithType: IOpenGLComponent.SetCurrentContext(OpenGLContextHandle) + fullName: OpenTK.Platform.IOpenGLComponent.SetCurrentContext(OpenTK.Platform.OpenGLContextHandle) + spec.csharp: + - uid: OpenTK.Platform.IOpenGLComponent.SetCurrentContext(OpenTK.Platform.OpenGLContextHandle) + name: SetCurrentContext + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_SetCurrentContext_OpenTK_Platform_OpenGLContextHandle_ + - name: ( + - uid: OpenTK.Platform.OpenGLContextHandle + name: OpenGLContextHandle + href: OpenTK.Platform.OpenGLContextHandle.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IOpenGLComponent.SetCurrentContext(OpenTK.Platform.OpenGLContextHandle) + name: SetCurrentContext + href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_SetCurrentContext_OpenTK_Platform_OpenGLContextHandle_ + - name: ( + - uid: OpenTK.Platform.OpenGLContextHandle + name: OpenGLContextHandle + href: OpenTK.Platform.OpenGLContextHandle.html + - name: ) - uid: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.GetCurrentContext* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.GetCurrentContext href: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.html#OpenTK_Platform_Native_macOS_MacOSOpenGLComponent_GetCurrentContext @@ -1389,31 +1609,12 @@ references: name: SetCurrentContext nameWithType: MacOSOpenGLComponent.SetCurrentContext fullName: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.SetCurrentContext -- uid: OpenTK.Platform.IOpenGLComponent.SetCurrentContext(OpenTK.Platform.OpenGLContextHandle) - commentId: M:OpenTK.Platform.IOpenGLComponent.SetCurrentContext(OpenTK.Platform.OpenGLContextHandle) - parent: OpenTK.Platform.IOpenGLComponent - href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_SetCurrentContext_OpenTK_Platform_OpenGLContextHandle_ - name: SetCurrentContext(OpenGLContextHandle) - nameWithType: IOpenGLComponent.SetCurrentContext(OpenGLContextHandle) - fullName: OpenTK.Platform.IOpenGLComponent.SetCurrentContext(OpenTK.Platform.OpenGLContextHandle) - spec.csharp: - - uid: OpenTK.Platform.IOpenGLComponent.SetCurrentContext(OpenTK.Platform.OpenGLContextHandle) - name: SetCurrentContext - href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_SetCurrentContext_OpenTK_Platform_OpenGLContextHandle_ - - name: ( - - uid: OpenTK.Platform.OpenGLContextHandle - name: OpenGLContextHandle - href: OpenTK.Platform.OpenGLContextHandle.html - - name: ) - spec.vb: - - uid: OpenTK.Platform.IOpenGLComponent.SetCurrentContext(OpenTK.Platform.OpenGLContextHandle) - name: SetCurrentContext - href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_SetCurrentContext_OpenTK_Platform_OpenGLContextHandle_ - - name: ( - - uid: OpenTK.Platform.OpenGLContextHandle - name: OpenGLContextHandle - href: OpenTK.Platform.OpenGLContextHandle.html - - name: ) +- uid: OpenTK.Platform.OpenGLGraphicsApiHints.SharedContext + commentId: P:OpenTK.Platform.OpenGLGraphicsApiHints.SharedContext + href: OpenTK.Platform.OpenGLGraphicsApiHints.html#OpenTK_Platform_OpenGLGraphicsApiHints_SharedContext + name: SharedContext + nameWithType: OpenGLGraphicsApiHints.SharedContext + fullName: OpenTK.Platform.OpenGLGraphicsApiHints.SharedContext - uid: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.GetSharedContext* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.GetSharedContext href: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.html#OpenTK_Platform_Native_macOS_MacOSOpenGLComponent_GetSharedContext_OpenTK_Platform_OpenGLContextHandle_ @@ -1518,6 +1719,12 @@ references: href: OpenTK.Platform.IOpenGLComponent.html#OpenTK_Platform_IOpenGLComponent_GetSwapInterval - name: ( - name: ) +- uid: OpenTK.Platform.OpenGLGraphicsApiHints.SwapMethod + commentId: P:OpenTK.Platform.OpenGLGraphicsApiHints.SwapMethod + href: OpenTK.Platform.OpenGLGraphicsApiHints.html#OpenTK_Platform_OpenGLGraphicsApiHints_SwapMethod + name: SwapMethod + nameWithType: OpenGLGraphicsApiHints.SwapMethod + fullName: OpenTK.Platform.OpenGLGraphicsApiHints.SwapMethod - uid: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.SwapBuffers* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.SwapBuffers href: OpenTK.Platform.Native.macOS.MacOSOpenGLComponent.html#OpenTK_Platform_Native_macOS_MacOSOpenGLComponent_SwapBuffers_OpenTK_Platform_OpenGLContextHandle_ diff --git a/api/OpenTK.Platform.Native.macOS.MacOSShellComponent.yml b/api/OpenTK.Platform.Native.macOS.MacOSShellComponent.yml index cc9e8626..5848cfee 100644 --- a/api/OpenTK.Platform.Native.macOS.MacOSShellComponent.yml +++ b/api/OpenTK.Platform.Native.macOS.MacOSShellComponent.yml @@ -5,14 +5,17 @@ items: id: MacOSShellComponent parent: OpenTK.Platform.Native.macOS children: - - OpenTK.Platform.Native.macOS.MacOSShellComponent.AllowScreenSaver(System.Boolean) + - OpenTK.Platform.Native.macOS.MacOSShellComponent.AllowScreenSaver(System.Boolean,System.String) - OpenTK.Platform.Native.macOS.MacOSShellComponent.GetBatteryInfo(OpenTK.Platform.BatteryInfo@) - OpenTK.Platform.Native.macOS.MacOSShellComponent.GetPreferredTheme - OpenTK.Platform.Native.macOS.MacOSShellComponent.GetSystemMemoryInformation - OpenTK.Platform.Native.macOS.MacOSShellComponent.Initialize(OpenTK.Platform.ToolkitOptions) + - OpenTK.Platform.Native.macOS.MacOSShellComponent.IsScreenSaverAllowed - OpenTK.Platform.Native.macOS.MacOSShellComponent.Logger + - OpenTK.Platform.Native.macOS.MacOSShellComponent.NSLog(System.String) - OpenTK.Platform.Native.macOS.MacOSShellComponent.Name - OpenTK.Platform.Native.macOS.MacOSShellComponent.Provides + - OpenTK.Platform.Native.macOS.MacOSShellComponent.Uninitialize langs: - csharp - vb @@ -57,11 +60,10 @@ items: source: id: Name path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSShellComponent.cs - startLine: 36 + startLine: 37 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS - summary: Name of the abstraction layer component. example: [] syntax: content: public string Name { get; } @@ -86,11 +88,10 @@ items: source: id: Provides path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSShellComponent.cs - startLine: 38 + startLine: 40 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS - summary: Specifies which PAL components this object provides. example: [] syntax: content: public PalComponents Provides { get; } @@ -115,11 +116,10 @@ items: source: id: Logger path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSShellComponent.cs - startLine: 40 + startLine: 43 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS - summary: Provides a logger for this component. example: [] syntax: content: public ILogger? Logger { get; set; } @@ -144,62 +144,109 @@ items: source: id: Initialize path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSShellComponent.cs - startLine: 44 + startLine: 50 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS - summary: Initialize the component. example: [] syntax: content: public void Initialize(ToolkitOptions options) parameters: - id: options type: OpenTK.Platform.ToolkitOptions - description: The options to initialize the component with. content.vb: Public Sub Initialize(options As ToolkitOptions) overload: OpenTK.Platform.Native.macOS.MacOSShellComponent.Initialize* implements: - OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) -- uid: OpenTK.Platform.Native.macOS.MacOSShellComponent.AllowScreenSaver(System.Boolean) - commentId: M:OpenTK.Platform.Native.macOS.MacOSShellComponent.AllowScreenSaver(System.Boolean) - id: AllowScreenSaver(System.Boolean) +- uid: OpenTK.Platform.Native.macOS.MacOSShellComponent.Uninitialize + commentId: M:OpenTK.Platform.Native.macOS.MacOSShellComponent.Uninitialize + id: Uninitialize + parent: OpenTK.Platform.Native.macOS.MacOSShellComponent + langs: + - csharp + - vb + name: Uninitialize() + nameWithType: MacOSShellComponent.Uninitialize() + fullName: OpenTK.Platform.Native.macOS.MacOSShellComponent.Uninitialize() + type: Method + source: + id: Uninitialize + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSShellComponent.cs + startLine: 62 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform.Native.macOS + summary: Uninitialize the component. Frees any native resources used by the component. + example: [] + syntax: + content: public void Uninitialize() + content.vb: Public Sub Uninitialize() + overload: OpenTK.Platform.Native.macOS.MacOSShellComponent.Uninitialize* + seealso: + - linkId: OpenTK.Platform.Toolkit.Uninit + commentId: M:OpenTK.Platform.Toolkit.Uninit + implements: + - OpenTK.Platform.IPalComponent.Uninitialize +- uid: OpenTK.Platform.Native.macOS.MacOSShellComponent.AllowScreenSaver(System.Boolean,System.String) + commentId: M:OpenTK.Platform.Native.macOS.MacOSShellComponent.AllowScreenSaver(System.Boolean,System.String) + id: AllowScreenSaver(System.Boolean,System.String) parent: OpenTK.Platform.Native.macOS.MacOSShellComponent langs: - csharp - vb - name: AllowScreenSaver(bool) - nameWithType: MacOSShellComponent.AllowScreenSaver(bool) - fullName: OpenTK.Platform.Native.macOS.MacOSShellComponent.AllowScreenSaver(bool) + name: AllowScreenSaver(bool, string?) + nameWithType: MacOSShellComponent.AllowScreenSaver(bool, string?) + fullName: OpenTK.Platform.Native.macOS.MacOSShellComponent.AllowScreenSaver(bool, string?) type: Method source: id: AllowScreenSaver path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSShellComponent.cs - startLine: 50 + startLine: 68 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS - summary: >- - Sets whether or not a screensaver is allowed to draw on top of the window. - - For games with long cutscenes it would be appropriate to set this to false, - - while tools that act like normal applications should set this to true. - - By default this setting is untouched. example: [] syntax: - content: public void AllowScreenSaver(bool allow) + content: public void AllowScreenSaver(bool allow, string? disableReason) parameters: - id: allow type: System.Boolean - description: Whether to allow screensavers to appear while the application is running. - content.vb: Public Sub AllowScreenSaver(allow As Boolean) + - id: disableReason + type: System.String + content.vb: Public Sub AllowScreenSaver(allow As Boolean, disableReason As String) overload: OpenTK.Platform.Native.macOS.MacOSShellComponent.AllowScreenSaver* implements: - - OpenTK.Platform.IShellComponent.AllowScreenSaver(System.Boolean) - nameWithType.vb: MacOSShellComponent.AllowScreenSaver(Boolean) - fullName.vb: OpenTK.Platform.Native.macOS.MacOSShellComponent.AllowScreenSaver(Boolean) - name.vb: AllowScreenSaver(Boolean) + - OpenTK.Platform.IShellComponent.AllowScreenSaver(System.Boolean,System.String) + nameWithType.vb: MacOSShellComponent.AllowScreenSaver(Boolean, String) + fullName.vb: OpenTK.Platform.Native.macOS.MacOSShellComponent.AllowScreenSaver(Boolean, String) + name.vb: AllowScreenSaver(Boolean, String) +- uid: OpenTK.Platform.Native.macOS.MacOSShellComponent.IsScreenSaverAllowed + commentId: M:OpenTK.Platform.Native.macOS.MacOSShellComponent.IsScreenSaverAllowed + id: IsScreenSaverAllowed + parent: OpenTK.Platform.Native.macOS.MacOSShellComponent + langs: + - csharp + - vb + name: IsScreenSaverAllowed() + nameWithType: MacOSShellComponent.IsScreenSaverAllowed() + fullName: OpenTK.Platform.Native.macOS.MacOSShellComponent.IsScreenSaverAllowed() + type: Method + source: + id: IsScreenSaverAllowed + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSShellComponent.cs + startLine: 100 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform.Native.macOS + example: [] + syntax: + content: public bool IsScreenSaverAllowed() + return: + type: System.Boolean + content.vb: Public Function IsScreenSaverAllowed() As Boolean + overload: OpenTK.Platform.Native.macOS.MacOSShellComponent.IsScreenSaverAllowed* + implements: + - OpenTK.Platform.IShellComponent.IsScreenSaverAllowed - uid: OpenTK.Platform.Native.macOS.MacOSShellComponent.GetBatteryInfo(OpenTK.Platform.BatteryInfo@) commentId: M:OpenTK.Platform.Native.macOS.MacOSShellComponent.GetBatteryInfo(OpenTK.Platform.BatteryInfo@) id: GetBatteryInfo(OpenTK.Platform.BatteryInfo@) @@ -214,23 +261,18 @@ items: source: id: GetBatteryInfo path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSShellComponent.cs - startLine: 77 + startLine: 106 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS - summary: Gets the battery status of the computer. example: [] syntax: content: public BatteryStatus GetBatteryInfo(out BatteryInfo batteryInfo) parameters: - id: batteryInfo type: OpenTK.Platform.BatteryInfo - description: >- - The battery status of the computer, - this is only filled with values when is returned. return: type: OpenTK.Platform.BatteryStatus - description: Whether the computer has a battery or not, or if this function failed. content.vb: Public Function GetBatteryInfo(batteryInfo As BatteryInfo) As BatteryStatus overload: OpenTK.Platform.Native.macOS.MacOSShellComponent.GetBatteryInfo* implements: @@ -252,17 +294,15 @@ items: source: id: GetPreferredTheme path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSShellComponent.cs - startLine: 230 + startLine: 260 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS - summary: Gets the user preference for application theme. example: [] syntax: content: public ThemeInfo GetPreferredTheme() return: type: OpenTK.Platform.ThemeInfo - description: The user set preferred theme. content.vb: Public Function GetPreferredTheme() As ThemeInfo overload: OpenTK.Platform.Native.macOS.MacOSShellComponent.GetPreferredTheme* implements: @@ -281,21 +321,55 @@ items: source: id: GetSystemMemoryInformation path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSShellComponent.cs - startLine: 235 + startLine: 266 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS - summary: Gets information about the memory of the device and the current status. example: [] syntax: content: public SystemMemoryInfo GetSystemMemoryInformation() return: type: OpenTK.Platform.SystemMemoryInfo - description: The memory info. content.vb: Public Function GetSystemMemoryInformation() As SystemMemoryInfo overload: OpenTK.Platform.Native.macOS.MacOSShellComponent.GetSystemMemoryInformation* implements: - OpenTK.Platform.IShellComponent.GetSystemMemoryInformation +- uid: OpenTK.Platform.Native.macOS.MacOSShellComponent.NSLog(System.String) + commentId: M:OpenTK.Platform.Native.macOS.MacOSShellComponent.NSLog(System.String) + id: NSLog(System.String) + parent: OpenTK.Platform.Native.macOS.MacOSShellComponent + langs: + - csharp + - vb + name: NSLog(string) + nameWithType: MacOSShellComponent.NSLog(string) + fullName: OpenTK.Platform.Native.macOS.MacOSShellComponent.NSLog(string) + type: Method + source: + id: NSLog + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSShellComponent.cs + startLine: 309 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform.Native.macOS + summary: >- + Calls NSLog to log a message to the Apple System Log facility. + + This can be useful when running your application as a bundle as stdout and stderr can't be used. + + This function is static so that it can be used before has been initialized. + example: [] + syntax: + content: public static void NSLog(string message) + parameters: + - id: message + type: System.String + description: The message to print to the system log. + content.vb: Public Shared Sub NSLog(message As String) + overload: OpenTK.Platform.Native.macOS.MacOSShellComponent.NSLog* + nameWithType.vb: MacOSShellComponent.NSLog(String) + fullName.vb: OpenTK.Platform.Native.macOS.MacOSShellComponent.NSLog(String) + name.vb: NSLog(String) references: - uid: OpenTK.Platform.Native.macOS commentId: N:OpenTK.Platform.Native.macOS @@ -740,42 +814,97 @@ references: name: ToolkitOptions nameWithType: ToolkitOptions fullName: OpenTK.Platform.ToolkitOptions +- uid: OpenTK.Platform.Toolkit.Uninit + commentId: M:OpenTK.Platform.Toolkit.Uninit + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Uninit + name: Uninit() + nameWithType: Toolkit.Uninit() + fullName: OpenTK.Platform.Toolkit.Uninit() + spec.csharp: + - uid: OpenTK.Platform.Toolkit.Uninit + name: Uninit + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Uninit + - name: ( + - name: ) + spec.vb: + - uid: OpenTK.Platform.Toolkit.Uninit + name: Uninit + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Uninit + - name: ( + - name: ) +- uid: OpenTK.Platform.Native.macOS.MacOSShellComponent.Uninitialize* + commentId: Overload:OpenTK.Platform.Native.macOS.MacOSShellComponent.Uninitialize + href: OpenTK.Platform.Native.macOS.MacOSShellComponent.html#OpenTK_Platform_Native_macOS_MacOSShellComponent_Uninitialize + name: Uninitialize + nameWithType: MacOSShellComponent.Uninitialize + fullName: OpenTK.Platform.Native.macOS.MacOSShellComponent.Uninitialize +- uid: OpenTK.Platform.IPalComponent.Uninitialize + commentId: M:OpenTK.Platform.IPalComponent.Uninitialize + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + name: Uninitialize() + nameWithType: IPalComponent.Uninitialize() + fullName: OpenTK.Platform.IPalComponent.Uninitialize() + spec.csharp: + - uid: OpenTK.Platform.IPalComponent.Uninitialize + name: Uninitialize + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + - name: ( + - name: ) + spec.vb: + - uid: OpenTK.Platform.IPalComponent.Uninitialize + name: Uninitialize + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + - name: ( + - name: ) - uid: OpenTK.Platform.Native.macOS.MacOSShellComponent.AllowScreenSaver* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSShellComponent.AllowScreenSaver - href: OpenTK.Platform.Native.macOS.MacOSShellComponent.html#OpenTK_Platform_Native_macOS_MacOSShellComponent_AllowScreenSaver_System_Boolean_ + href: OpenTK.Platform.Native.macOS.MacOSShellComponent.html#OpenTK_Platform_Native_macOS_MacOSShellComponent_AllowScreenSaver_System_Boolean_System_String_ name: AllowScreenSaver nameWithType: MacOSShellComponent.AllowScreenSaver fullName: OpenTK.Platform.Native.macOS.MacOSShellComponent.AllowScreenSaver -- uid: OpenTK.Platform.IShellComponent.AllowScreenSaver(System.Boolean) - commentId: M:OpenTK.Platform.IShellComponent.AllowScreenSaver(System.Boolean) +- uid: OpenTK.Platform.IShellComponent.AllowScreenSaver(System.Boolean,System.String) + commentId: M:OpenTK.Platform.IShellComponent.AllowScreenSaver(System.Boolean,System.String) parent: OpenTK.Platform.IShellComponent isExternal: true - href: OpenTK.Platform.IShellComponent.html#OpenTK_Platform_IShellComponent_AllowScreenSaver_System_Boolean_ - name: AllowScreenSaver(bool) - nameWithType: IShellComponent.AllowScreenSaver(bool) - fullName: OpenTK.Platform.IShellComponent.AllowScreenSaver(bool) - nameWithType.vb: IShellComponent.AllowScreenSaver(Boolean) - fullName.vb: OpenTK.Platform.IShellComponent.AllowScreenSaver(Boolean) - name.vb: AllowScreenSaver(Boolean) + href: OpenTK.Platform.IShellComponent.html#OpenTK_Platform_IShellComponent_AllowScreenSaver_System_Boolean_System_String_ + name: AllowScreenSaver(bool, string) + nameWithType: IShellComponent.AllowScreenSaver(bool, string) + fullName: OpenTK.Platform.IShellComponent.AllowScreenSaver(bool, string) + nameWithType.vb: IShellComponent.AllowScreenSaver(Boolean, String) + fullName.vb: OpenTK.Platform.IShellComponent.AllowScreenSaver(Boolean, String) + name.vb: AllowScreenSaver(Boolean, String) spec.csharp: - - uid: OpenTK.Platform.IShellComponent.AllowScreenSaver(System.Boolean) + - uid: OpenTK.Platform.IShellComponent.AllowScreenSaver(System.Boolean,System.String) name: AllowScreenSaver - href: OpenTK.Platform.IShellComponent.html#OpenTK_Platform_IShellComponent_AllowScreenSaver_System_Boolean_ + href: OpenTK.Platform.IShellComponent.html#OpenTK_Platform_IShellComponent_AllowScreenSaver_System_Boolean_System_String_ - name: ( - uid: System.Boolean name: bool isExternal: true href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: ',' + - name: " " + - uid: System.String + name: string + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string - name: ) spec.vb: - - uid: OpenTK.Platform.IShellComponent.AllowScreenSaver(System.Boolean) + - uid: OpenTK.Platform.IShellComponent.AllowScreenSaver(System.Boolean,System.String) name: AllowScreenSaver - href: OpenTK.Platform.IShellComponent.html#OpenTK_Platform_IShellComponent_AllowScreenSaver_System_Boolean_ + href: OpenTK.Platform.IShellComponent.html#OpenTK_Platform_IShellComponent_AllowScreenSaver_System_Boolean_System_String_ - name: ( - uid: System.Boolean name: Boolean isExternal: true href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: ',' + - name: " " + - uid: System.String + name: String + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string - name: ) - uid: System.Boolean commentId: T:System.Boolean @@ -788,12 +917,31 @@ references: nameWithType.vb: Boolean fullName.vb: Boolean name.vb: Boolean -- uid: OpenTK.Platform.BatteryStatus.HasSystemBattery - commentId: F:OpenTK.Platform.BatteryStatus.HasSystemBattery - href: OpenTK.Platform.BatteryStatus.html#OpenTK_Platform_BatteryStatus_HasSystemBattery - name: HasSystemBattery - nameWithType: BatteryStatus.HasSystemBattery - fullName: OpenTK.Platform.BatteryStatus.HasSystemBattery +- uid: OpenTK.Platform.Native.macOS.MacOSShellComponent.IsScreenSaverAllowed* + commentId: Overload:OpenTK.Platform.Native.macOS.MacOSShellComponent.IsScreenSaverAllowed + href: OpenTK.Platform.Native.macOS.MacOSShellComponent.html#OpenTK_Platform_Native_macOS_MacOSShellComponent_IsScreenSaverAllowed + name: IsScreenSaverAllowed + nameWithType: MacOSShellComponent.IsScreenSaverAllowed + fullName: OpenTK.Platform.Native.macOS.MacOSShellComponent.IsScreenSaverAllowed +- uid: OpenTK.Platform.IShellComponent.IsScreenSaverAllowed + commentId: M:OpenTK.Platform.IShellComponent.IsScreenSaverAllowed + parent: OpenTK.Platform.IShellComponent + href: OpenTK.Platform.IShellComponent.html#OpenTK_Platform_IShellComponent_IsScreenSaverAllowed + name: IsScreenSaverAllowed() + nameWithType: IShellComponent.IsScreenSaverAllowed() + fullName: OpenTK.Platform.IShellComponent.IsScreenSaverAllowed() + spec.csharp: + - uid: OpenTK.Platform.IShellComponent.IsScreenSaverAllowed + name: IsScreenSaverAllowed + href: OpenTK.Platform.IShellComponent.html#OpenTK_Platform_IShellComponent_IsScreenSaverAllowed + - name: ( + - name: ) + spec.vb: + - uid: OpenTK.Platform.IShellComponent.IsScreenSaverAllowed + name: IsScreenSaverAllowed + href: OpenTK.Platform.IShellComponent.html#OpenTK_Platform_IShellComponent_IsScreenSaverAllowed + - name: ( + - name: ) - uid: OpenTK.Platform.Native.macOS.MacOSShellComponent.GetBatteryInfo* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSShellComponent.GetBatteryInfo href: OpenTK.Platform.Native.macOS.MacOSShellComponent.html#OpenTK_Platform_Native_macOS_MacOSShellComponent_GetBatteryInfo_OpenTK_Platform_BatteryInfo__ @@ -908,3 +1056,15 @@ references: name: SystemMemoryInfo nameWithType: SystemMemoryInfo fullName: OpenTK.Platform.SystemMemoryInfo +- uid: OpenTK.Platform.Toolkit + commentId: T:OpenTK.Platform.Toolkit + href: OpenTK.Platform.Toolkit.html + name: Toolkit + nameWithType: Toolkit + fullName: OpenTK.Platform.Toolkit +- uid: OpenTK.Platform.Native.macOS.MacOSShellComponent.NSLog* + commentId: Overload:OpenTK.Platform.Native.macOS.MacOSShellComponent.NSLog + href: OpenTK.Platform.Native.macOS.MacOSShellComponent.html#OpenTK_Platform_Native_macOS_MacOSShellComponent_NSLog_System_String_ + name: NSLog + nameWithType: MacOSShellComponent.NSLog + fullName: OpenTK.Platform.Native.macOS.MacOSShellComponent.NSLog diff --git a/api/OpenTK.Platform.Native.macOS.MacOSVulkanComponent.yml b/api/OpenTK.Platform.Native.macOS.MacOSVulkanComponent.yml new file mode 100644 index 00000000..c34a5be6 --- /dev/null +++ b/api/OpenTK.Platform.Native.macOS.MacOSVulkanComponent.yml @@ -0,0 +1,1173 @@ +### YamlMime:ManagedReference +items: +- uid: OpenTK.Platform.Native.macOS.MacOSVulkanComponent + commentId: T:OpenTK.Platform.Native.macOS.MacOSVulkanComponent + id: MacOSVulkanComponent + parent: OpenTK.Platform.Native.macOS + children: + - OpenTK.Platform.Native.macOS.MacOSVulkanComponent.CreateWindowSurface(OpenTK.Graphics.Vulkan.VkInstance,OpenTK.Platform.WindowHandle,OpenTK.Graphics.Vulkan.VkAllocationCallbacks*,OpenTK.Graphics.Vulkan.VkSurfaceKHR@) + - OpenTK.Platform.Native.macOS.MacOSVulkanComponent.GetPhysicalDevicePresentationSupport(OpenTK.Graphics.Vulkan.VkInstance,OpenTK.Graphics.Vulkan.VkPhysicalDevice,System.UInt32) + - OpenTK.Platform.Native.macOS.MacOSVulkanComponent.GetRequiredInstanceExtensions + - OpenTK.Platform.Native.macOS.MacOSVulkanComponent.Initialize(OpenTK.Platform.ToolkitOptions) + - OpenTK.Platform.Native.macOS.MacOSVulkanComponent.Logger + - OpenTK.Platform.Native.macOS.MacOSVulkanComponent.Name + - OpenTK.Platform.Native.macOS.MacOSVulkanComponent.Provides + - OpenTK.Platform.Native.macOS.MacOSVulkanComponent.Uninitialize + langs: + - csharp + - vb + name: MacOSVulkanComponent + nameWithType: MacOSVulkanComponent + fullName: OpenTK.Platform.Native.macOS.MacOSVulkanComponent + type: Class + source: + id: MacOSVulkanComponent + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSVulkanComponent.cs + startLine: 12 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform.Native.macOS + summary: >- + macOS vulkan component using VK_EXT_metal_surface or VK_MVK_macos_surface extensions to create + + a vulkan surface using MoltenVK (part of the macOS Vulkan SDK). + example: [] + syntax: + content: 'public class MacOSVulkanComponent : IVulkanComponent, IPalComponent' + content.vb: Public Class MacOSVulkanComponent Implements IVulkanComponent, IPalComponent + inheritance: + - System.Object + implements: + - OpenTK.Platform.IVulkanComponent + - OpenTK.Platform.IPalComponent + inheritedMembers: + - System.Object.Equals(System.Object) + - System.Object.Equals(System.Object,System.Object) + - System.Object.GetHashCode + - System.Object.GetType + - System.Object.MemberwiseClone + - System.Object.ReferenceEquals(System.Object,System.Object) + - System.Object.ToString +- uid: OpenTK.Platform.Native.macOS.MacOSVulkanComponent.Name + commentId: P:OpenTK.Platform.Native.macOS.MacOSVulkanComponent.Name + id: Name + parent: OpenTK.Platform.Native.macOS.MacOSVulkanComponent + langs: + - csharp + - vb + name: Name + nameWithType: MacOSVulkanComponent.Name + fullName: OpenTK.Platform.Native.macOS.MacOSVulkanComponent.Name + type: Property + source: + id: Name + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSVulkanComponent.cs + startLine: 21 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform.Native.macOS + summary: Name of the abstraction layer component. + example: [] + syntax: + content: public string Name { get; } + parameters: [] + return: + type: System.String + content.vb: Public ReadOnly Property Name As String + overload: OpenTK.Platform.Native.macOS.MacOSVulkanComponent.Name* + implements: + - OpenTK.Platform.IPalComponent.Name +- uid: OpenTK.Platform.Native.macOS.MacOSVulkanComponent.Provides + commentId: P:OpenTK.Platform.Native.macOS.MacOSVulkanComponent.Provides + id: Provides + parent: OpenTK.Platform.Native.macOS.MacOSVulkanComponent + langs: + - csharp + - vb + name: Provides + nameWithType: MacOSVulkanComponent.Provides + fullName: OpenTK.Platform.Native.macOS.MacOSVulkanComponent.Provides + type: Property + source: + id: Provides + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSVulkanComponent.cs + startLine: 24 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform.Native.macOS + summary: Specifies which PAL components this object provides. + example: [] + syntax: + content: public PalComponents Provides { get; } + parameters: [] + return: + type: OpenTK.Platform.PalComponents + content.vb: Public ReadOnly Property Provides As PalComponents + overload: OpenTK.Platform.Native.macOS.MacOSVulkanComponent.Provides* + implements: + - OpenTK.Platform.IPalComponent.Provides +- uid: OpenTK.Platform.Native.macOS.MacOSVulkanComponent.Logger + commentId: P:OpenTK.Platform.Native.macOS.MacOSVulkanComponent.Logger + id: Logger + parent: OpenTK.Platform.Native.macOS.MacOSVulkanComponent + langs: + - csharp + - vb + name: Logger + nameWithType: MacOSVulkanComponent.Logger + fullName: OpenTK.Platform.Native.macOS.MacOSVulkanComponent.Logger + type: Property + source: + id: Logger + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSVulkanComponent.cs + startLine: 27 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform.Native.macOS + summary: The logger that this component uses to log diagnostic messages. + example: [] + syntax: + content: public ILogger? Logger { get; set; } + parameters: [] + return: + type: OpenTK.Core.Utility.ILogger + content.vb: Public Property Logger As ILogger + overload: OpenTK.Platform.Native.macOS.MacOSVulkanComponent.Logger* + seealso: + - linkId: OpenTK.Core.Utility.ILogger + commentId: T:OpenTK.Core.Utility.ILogger + - linkId: OpenTK.Platform.ToolkitOptions.Logger + commentId: P:OpenTK.Platform.ToolkitOptions.Logger + implements: + - OpenTK.Platform.IPalComponent.Logger +- uid: OpenTK.Platform.Native.macOS.MacOSVulkanComponent.Initialize(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Native.macOS.MacOSVulkanComponent.Initialize(OpenTK.Platform.ToolkitOptions) + id: Initialize(OpenTK.Platform.ToolkitOptions) + parent: OpenTK.Platform.Native.macOS.MacOSVulkanComponent + langs: + - csharp + - vb + name: Initialize(ToolkitOptions) + nameWithType: MacOSVulkanComponent.Initialize(ToolkitOptions) + fullName: OpenTK.Platform.Native.macOS.MacOSVulkanComponent.Initialize(OpenTK.Platform.ToolkitOptions) + type: Method + source: + id: Initialize + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSVulkanComponent.cs + startLine: 30 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform.Native.macOS + summary: Initialize the component. + example: [] + syntax: + content: public void Initialize(ToolkitOptions options) + parameters: + - id: options + type: OpenTK.Platform.ToolkitOptions + description: The options to initialize the component with. + content.vb: Public Sub Initialize(options As ToolkitOptions) + overload: OpenTK.Platform.Native.macOS.MacOSVulkanComponent.Initialize* + seealso: + - linkId: OpenTK.Platform.ToolkitOptions + commentId: T:OpenTK.Platform.ToolkitOptions + - linkId: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + implements: + - OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) +- uid: OpenTK.Platform.Native.macOS.MacOSVulkanComponent.Uninitialize + commentId: M:OpenTK.Platform.Native.macOS.MacOSVulkanComponent.Uninitialize + id: Uninitialize + parent: OpenTK.Platform.Native.macOS.MacOSVulkanComponent + langs: + - csharp + - vb + name: Uninitialize() + nameWithType: MacOSVulkanComponent.Uninitialize() + fullName: OpenTK.Platform.Native.macOS.MacOSVulkanComponent.Uninitialize() + type: Method + source: + id: Uninitialize + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSVulkanComponent.cs + startLine: 75 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform.Native.macOS + summary: Uninitialize the component. Frees any native resources used by the component. + example: [] + syntax: + content: public void Uninitialize() + content.vb: Public Sub Uninitialize() + overload: OpenTK.Platform.Native.macOS.MacOSVulkanComponent.Uninitialize* + seealso: + - linkId: OpenTK.Platform.Toolkit.Uninit + commentId: M:OpenTK.Platform.Toolkit.Uninit + implements: + - OpenTK.Platform.IPalComponent.Uninitialize +- uid: OpenTK.Platform.Native.macOS.MacOSVulkanComponent.GetRequiredInstanceExtensions + commentId: M:OpenTK.Platform.Native.macOS.MacOSVulkanComponent.GetRequiredInstanceExtensions + id: GetRequiredInstanceExtensions + parent: OpenTK.Platform.Native.macOS.MacOSVulkanComponent + langs: + - csharp + - vb + name: GetRequiredInstanceExtensions() + nameWithType: MacOSVulkanComponent.GetRequiredInstanceExtensions() + fullName: OpenTK.Platform.Native.macOS.MacOSVulkanComponent.GetRequiredInstanceExtensions() + type: Method + source: + id: GetRequiredInstanceExtensions + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSVulkanComponent.cs + startLine: 87 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform.Native.macOS + summary: >- + Returns a list of required instance extensions required for + + and + + + + to work. Include these extensions when creating . + example: [] + syntax: + content: public ReadOnlySpan GetRequiredInstanceExtensions() + return: + type: System.ReadOnlySpan{System.String} + description: A list of required extensions for functions to work. + content.vb: Public Function GetRequiredInstanceExtensions() As ReadOnlySpan(Of String) + overload: OpenTK.Platform.Native.macOS.MacOSVulkanComponent.GetRequiredInstanceExtensions* + seealso: + - linkId: OpenTK.Platform.IVulkanComponent.GetPhysicalDevicePresentationSupport(OpenTK.Graphics.Vulkan.VkInstance,OpenTK.Graphics.Vulkan.VkPhysicalDevice,System.UInt32) + commentId: M:OpenTK.Platform.IVulkanComponent.GetPhysicalDevicePresentationSupport(OpenTK.Graphics.Vulkan.VkInstance,OpenTK.Graphics.Vulkan.VkPhysicalDevice,System.UInt32) + - linkId: OpenTK.Platform.IVulkanComponent.CreateWindowSurface(OpenTK.Graphics.Vulkan.VkInstance,OpenTK.Platform.WindowHandle,OpenTK.Graphics.Vulkan.VkAllocationCallbacks*,OpenTK.Graphics.Vulkan.VkSurfaceKHR@) + commentId: M:OpenTK.Platform.IVulkanComponent.CreateWindowSurface(OpenTK.Graphics.Vulkan.VkInstance,OpenTK.Platform.WindowHandle,OpenTK.Graphics.Vulkan.VkAllocationCallbacks*,OpenTK.Graphics.Vulkan.VkSurfaceKHR@) + implements: + - OpenTK.Platform.IVulkanComponent.GetRequiredInstanceExtensions +- uid: OpenTK.Platform.Native.macOS.MacOSVulkanComponent.GetPhysicalDevicePresentationSupport(OpenTK.Graphics.Vulkan.VkInstance,OpenTK.Graphics.Vulkan.VkPhysicalDevice,System.UInt32) + commentId: M:OpenTK.Platform.Native.macOS.MacOSVulkanComponent.GetPhysicalDevicePresentationSupport(OpenTK.Graphics.Vulkan.VkInstance,OpenTK.Graphics.Vulkan.VkPhysicalDevice,System.UInt32) + id: GetPhysicalDevicePresentationSupport(OpenTK.Graphics.Vulkan.VkInstance,OpenTK.Graphics.Vulkan.VkPhysicalDevice,System.UInt32) + parent: OpenTK.Platform.Native.macOS.MacOSVulkanComponent + langs: + - csharp + - vb + name: GetPhysicalDevicePresentationSupport(VkInstance, VkPhysicalDevice, uint) + nameWithType: MacOSVulkanComponent.GetPhysicalDevicePresentationSupport(VkInstance, VkPhysicalDevice, uint) + fullName: OpenTK.Platform.Native.macOS.MacOSVulkanComponent.GetPhysicalDevicePresentationSupport(OpenTK.Graphics.Vulkan.VkInstance, OpenTK.Graphics.Vulkan.VkPhysicalDevice, uint) + type: Method + source: + id: GetPhysicalDevicePresentationSupport + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSVulkanComponent.cs + startLine: 111 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform.Native.macOS + summary: Returns true if the given queue family supports presentation to a surface created with . + example: [] + syntax: + content: public bool GetPhysicalDevicePresentationSupport(VkInstance instance, VkPhysicalDevice device, uint queueFamily) + parameters: + - id: instance + type: OpenTK.Graphics.Vulkan.VkInstance + description: The to physical device belongs to. + - id: device + type: OpenTK.Graphics.Vulkan.VkPhysicalDevice + description: The that the queueFamily belongs to. + - id: queueFamily + type: System.UInt32 + description: The index of the queue family to query for presentation support. + return: + type: System.Boolean + description: If this queue family supports presentation. + content.vb: Public Function GetPhysicalDevicePresentationSupport(instance As VkInstance, device As VkPhysicalDevice, queueFamily As UInteger) As Boolean + overload: OpenTK.Platform.Native.macOS.MacOSVulkanComponent.GetPhysicalDevicePresentationSupport* + seealso: + - linkId: OpenTK.Platform.IVulkanComponent.GetRequiredInstanceExtensions + commentId: M:OpenTK.Platform.IVulkanComponent.GetRequiredInstanceExtensions + implements: + - OpenTK.Platform.IVulkanComponent.GetPhysicalDevicePresentationSupport(OpenTK.Graphics.Vulkan.VkInstance,OpenTK.Graphics.Vulkan.VkPhysicalDevice,System.UInt32) + nameWithType.vb: MacOSVulkanComponent.GetPhysicalDevicePresentationSupport(VkInstance, VkPhysicalDevice, UInteger) + fullName.vb: OpenTK.Platform.Native.macOS.MacOSVulkanComponent.GetPhysicalDevicePresentationSupport(OpenTK.Graphics.Vulkan.VkInstance, OpenTK.Graphics.Vulkan.VkPhysicalDevice, UInteger) + name.vb: GetPhysicalDevicePresentationSupport(VkInstance, VkPhysicalDevice, UInteger) +- uid: OpenTK.Platform.Native.macOS.MacOSVulkanComponent.CreateWindowSurface(OpenTK.Graphics.Vulkan.VkInstance,OpenTK.Platform.WindowHandle,OpenTK.Graphics.Vulkan.VkAllocationCallbacks*,OpenTK.Graphics.Vulkan.VkSurfaceKHR@) + commentId: M:OpenTK.Platform.Native.macOS.MacOSVulkanComponent.CreateWindowSurface(OpenTK.Graphics.Vulkan.VkInstance,OpenTK.Platform.WindowHandle,OpenTK.Graphics.Vulkan.VkAllocationCallbacks*,OpenTK.Graphics.Vulkan.VkSurfaceKHR@) + id: CreateWindowSurface(OpenTK.Graphics.Vulkan.VkInstance,OpenTK.Platform.WindowHandle,OpenTK.Graphics.Vulkan.VkAllocationCallbacks*,OpenTK.Graphics.Vulkan.VkSurfaceKHR@) + parent: OpenTK.Platform.Native.macOS.MacOSVulkanComponent + langs: + - csharp + - vb + name: CreateWindowSurface(VkInstance, WindowHandle, VkAllocationCallbacks*, out VkSurfaceKHR) + nameWithType: MacOSVulkanComponent.CreateWindowSurface(VkInstance, WindowHandle, VkAllocationCallbacks*, out VkSurfaceKHR) + fullName: OpenTK.Platform.Native.macOS.MacOSVulkanComponent.CreateWindowSurface(OpenTK.Graphics.Vulkan.VkInstance, OpenTK.Platform.WindowHandle, OpenTK.Graphics.Vulkan.VkAllocationCallbacks*, out OpenTK.Graphics.Vulkan.VkSurfaceKHR) + type: Method + source: + id: CreateWindowSurface + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSVulkanComponent.cs + startLine: 117 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform.Native.macOS + summary: Creates a Vulkan surface for the specified window. + example: [] + syntax: + content: public VkResult CreateWindowSurface(VkInstance instance, WindowHandle window, VkAllocationCallbacks* allocator, out VkSurfaceKHR surface) + parameters: + - id: instance + type: OpenTK.Graphics.Vulkan.VkInstance + description: The instance to create the surface with. + - id: window + type: OpenTK.Platform.WindowHandle + description: The window to create the surface in. + - id: allocator + type: OpenTK.Graphics.Vulkan.VkAllocationCallbacks* + description: The allocator to use or null to use the default allocator. + - id: surface + type: OpenTK.Graphics.Vulkan.VkSurfaceKHR + description: The created surface. + return: + type: OpenTK.Graphics.Vulkan.VkResult + description: The Vulkan result code of this operation. + content.vb: Public Function CreateWindowSurface(instance As VkInstance, window As WindowHandle, allocator As VkAllocationCallbacks*, surface As VkSurfaceKHR) As VkResult + overload: OpenTK.Platform.Native.macOS.MacOSVulkanComponent.CreateWindowSurface* + seealso: + - linkId: OpenTK.Platform.IVulkanComponent.GetRequiredInstanceExtensions + commentId: M:OpenTK.Platform.IVulkanComponent.GetRequiredInstanceExtensions + implements: + - OpenTK.Platform.IVulkanComponent.CreateWindowSurface(OpenTK.Graphics.Vulkan.VkInstance,OpenTK.Platform.WindowHandle,OpenTK.Graphics.Vulkan.VkAllocationCallbacks*,OpenTK.Graphics.Vulkan.VkSurfaceKHR@) + nameWithType.vb: MacOSVulkanComponent.CreateWindowSurface(VkInstance, WindowHandle, VkAllocationCallbacks*, VkSurfaceKHR) + fullName.vb: OpenTK.Platform.Native.macOS.MacOSVulkanComponent.CreateWindowSurface(OpenTK.Graphics.Vulkan.VkInstance, OpenTK.Platform.WindowHandle, OpenTK.Graphics.Vulkan.VkAllocationCallbacks*, OpenTK.Graphics.Vulkan.VkSurfaceKHR) + name.vb: CreateWindowSurface(VkInstance, WindowHandle, VkAllocationCallbacks*, VkSurfaceKHR) +references: +- uid: OpenTK.Platform.Native.macOS + commentId: N:OpenTK.Platform.Native.macOS + href: OpenTK.html + name: OpenTK.Platform.Native.macOS + nameWithType: OpenTK.Platform.Native.macOS + fullName: OpenTK.Platform.Native.macOS + spec.csharp: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Platform + name: Platform + href: OpenTK.Platform.html + - name: . + - uid: OpenTK.Platform.Native + name: Native + href: OpenTK.Platform.Native.html + - name: . + - uid: OpenTK.Platform.Native.macOS + name: macOS + href: OpenTK.Platform.Native.macOS.html + spec.vb: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Platform + name: Platform + href: OpenTK.Platform.html + - name: . + - uid: OpenTK.Platform.Native + name: Native + href: OpenTK.Platform.Native.html + - name: . + - uid: OpenTK.Platform.Native.macOS + name: macOS + href: OpenTK.Platform.Native.macOS.html +- uid: System.Object + commentId: T:System.Object + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + name: object + nameWithType: object + fullName: object + nameWithType.vb: Object + fullName.vb: Object + name.vb: Object +- uid: OpenTK.Platform.IVulkanComponent + commentId: T:OpenTK.Platform.IVulkanComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IVulkanComponent.html + name: IVulkanComponent + nameWithType: IVulkanComponent + fullName: OpenTK.Platform.IVulkanComponent +- uid: OpenTK.Platform.IPalComponent + commentId: T:OpenTK.Platform.IPalComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IPalComponent.html + name: IPalComponent + nameWithType: IPalComponent + fullName: OpenTK.Platform.IPalComponent +- uid: System.Object.Equals(System.Object) + commentId: M:System.Object.Equals(System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + name: Equals(object) + nameWithType: object.Equals(object) + fullName: object.Equals(object) + nameWithType.vb: Object.Equals(Object) + fullName.vb: Object.Equals(Object) + name.vb: Equals(Object) + spec.csharp: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.Equals(System.Object,System.Object) + commentId: M:System.Object.Equals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + name: Equals(object, object) + nameWithType: object.Equals(object, object) + fullName: object.Equals(object, object) + nameWithType.vb: Object.Equals(Object, Object) + fullName.vb: Object.Equals(Object, Object) + name.vb: Equals(Object, Object) + spec.csharp: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.GetHashCode + commentId: M:System.Object.GetHashCode + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + name: GetHashCode() + nameWithType: object.GetHashCode() + fullName: object.GetHashCode() + nameWithType.vb: Object.GetHashCode() + fullName.vb: Object.GetHashCode() + spec.csharp: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) +- uid: System.Object.GetType + commentId: M:System.Object.GetType + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + name: GetType() + nameWithType: object.GetType() + fullName: object.GetType() + nameWithType.vb: Object.GetType() + fullName.vb: Object.GetType() + spec.csharp: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) +- uid: System.Object.MemberwiseClone + commentId: M:System.Object.MemberwiseClone + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + name: MemberwiseClone() + nameWithType: object.MemberwiseClone() + fullName: object.MemberwiseClone() + nameWithType.vb: Object.MemberwiseClone() + fullName.vb: Object.MemberwiseClone() + spec.csharp: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) + spec.vb: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) +- uid: System.Object.ReferenceEquals(System.Object,System.Object) + commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + name: ReferenceEquals(object, object) + nameWithType: object.ReferenceEquals(object, object) + fullName: object.ReferenceEquals(object, object) + nameWithType.vb: Object.ReferenceEquals(Object, Object) + fullName.vb: Object.ReferenceEquals(Object, Object) + name.vb: ReferenceEquals(Object, Object) + spec.csharp: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.ToString + commentId: M:System.Object.ToString + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + name: ToString() + nameWithType: object.ToString() + fullName: object.ToString() + nameWithType.vb: Object.ToString() + fullName.vb: Object.ToString() + spec.csharp: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) + spec.vb: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) +- uid: System + commentId: N:System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System + nameWithType: System + fullName: System +- uid: OpenTK.Platform + commentId: N:OpenTK.Platform + href: OpenTK.html + name: OpenTK.Platform + nameWithType: OpenTK.Platform + fullName: OpenTK.Platform + spec.csharp: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Platform + name: Platform + href: OpenTK.Platform.html + spec.vb: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Platform + name: Platform + href: OpenTK.Platform.html +- uid: OpenTK.Platform.Native.macOS.MacOSVulkanComponent.Name* + commentId: Overload:OpenTK.Platform.Native.macOS.MacOSVulkanComponent.Name + href: OpenTK.Platform.Native.macOS.MacOSVulkanComponent.html#OpenTK_Platform_Native_macOS_MacOSVulkanComponent_Name + name: Name + nameWithType: MacOSVulkanComponent.Name + fullName: OpenTK.Platform.Native.macOS.MacOSVulkanComponent.Name +- uid: OpenTK.Platform.IPalComponent.Name + commentId: P:OpenTK.Platform.IPalComponent.Name + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Name + name: Name + nameWithType: IPalComponent.Name + fullName: OpenTK.Platform.IPalComponent.Name +- uid: System.String + commentId: T:System.String + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + name: string + nameWithType: string + fullName: string + nameWithType.vb: String + fullName.vb: String + name.vb: String +- uid: OpenTK.Platform.Native.macOS.MacOSVulkanComponent.Provides* + commentId: Overload:OpenTK.Platform.Native.macOS.MacOSVulkanComponent.Provides + href: OpenTK.Platform.Native.macOS.MacOSVulkanComponent.html#OpenTK_Platform_Native_macOS_MacOSVulkanComponent_Provides + name: Provides + nameWithType: MacOSVulkanComponent.Provides + fullName: OpenTK.Platform.Native.macOS.MacOSVulkanComponent.Provides +- uid: OpenTK.Platform.IPalComponent.Provides + commentId: P:OpenTK.Platform.IPalComponent.Provides + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Provides + name: Provides + nameWithType: IPalComponent.Provides + fullName: OpenTK.Platform.IPalComponent.Provides +- uid: OpenTK.Platform.PalComponents + commentId: T:OpenTK.Platform.PalComponents + parent: OpenTK.Platform + href: OpenTK.Platform.PalComponents.html + name: PalComponents + nameWithType: PalComponents + fullName: OpenTK.Platform.PalComponents +- uid: OpenTK.Core.Utility.ILogger + commentId: T:OpenTK.Core.Utility.ILogger + parent: OpenTK.Core.Utility + href: OpenTK.Core.Utility.ILogger.html + name: ILogger + nameWithType: ILogger + fullName: OpenTK.Core.Utility.ILogger +- uid: OpenTK.Platform.ToolkitOptions.Logger + commentId: P:OpenTK.Platform.ToolkitOptions.Logger + href: OpenTK.Platform.ToolkitOptions.html#OpenTK_Platform_ToolkitOptions_Logger + name: Logger + nameWithType: ToolkitOptions.Logger + fullName: OpenTK.Platform.ToolkitOptions.Logger +- uid: OpenTK.Platform.Native.macOS.MacOSVulkanComponent.Logger* + commentId: Overload:OpenTK.Platform.Native.macOS.MacOSVulkanComponent.Logger + href: OpenTK.Platform.Native.macOS.MacOSVulkanComponent.html#OpenTK_Platform_Native_macOS_MacOSVulkanComponent_Logger + name: Logger + nameWithType: MacOSVulkanComponent.Logger + fullName: OpenTK.Platform.Native.macOS.MacOSVulkanComponent.Logger +- uid: OpenTK.Platform.IPalComponent.Logger + commentId: P:OpenTK.Platform.IPalComponent.Logger + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Logger + name: Logger + nameWithType: IPalComponent.Logger + fullName: OpenTK.Platform.IPalComponent.Logger +- uid: OpenTK.Core.Utility + commentId: N:OpenTK.Core.Utility + href: OpenTK.html + name: OpenTK.Core.Utility + nameWithType: OpenTK.Core.Utility + fullName: OpenTK.Core.Utility + spec.csharp: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Core + name: Core + href: OpenTK.Core.html + - name: . + - uid: OpenTK.Core.Utility + name: Utility + href: OpenTK.Core.Utility.html + spec.vb: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Core + name: Core + href: OpenTK.Core.html + - name: . + - uid: OpenTK.Core.Utility + name: Utility + href: OpenTK.Core.Utility.html +- uid: OpenTK.Platform.ToolkitOptions + commentId: T:OpenTK.Platform.ToolkitOptions + parent: OpenTK.Platform + href: OpenTK.Platform.ToolkitOptions.html + name: ToolkitOptions + nameWithType: ToolkitOptions + fullName: OpenTK.Platform.ToolkitOptions +- uid: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Init_OpenTK_Platform_ToolkitOptions_ + name: Init(ToolkitOptions) + nameWithType: Toolkit.Init(ToolkitOptions) + fullName: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + spec.csharp: + - uid: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + name: Init + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Init_OpenTK_Platform_ToolkitOptions_ + - name: ( + - uid: OpenTK.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Platform.ToolkitOptions.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + name: Init + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Init_OpenTK_Platform_ToolkitOptions_ + - name: ( + - uid: OpenTK.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Platform.ToolkitOptions.html + - name: ) +- uid: OpenTK.Platform.Native.macOS.MacOSVulkanComponent.Initialize* + commentId: Overload:OpenTK.Platform.Native.macOS.MacOSVulkanComponent.Initialize + href: OpenTK.Platform.Native.macOS.MacOSVulkanComponent.html#OpenTK_Platform_Native_macOS_MacOSVulkanComponent_Initialize_OpenTK_Platform_ToolkitOptions_ + name: Initialize + nameWithType: MacOSVulkanComponent.Initialize + fullName: OpenTK.Platform.Native.macOS.MacOSVulkanComponent.Initialize +- uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ + name: Initialize(ToolkitOptions) + nameWithType: IPalComponent.Initialize(ToolkitOptions) + fullName: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + spec.csharp: + - uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + name: Initialize + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ + - name: ( + - uid: OpenTK.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Platform.ToolkitOptions.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) + name: Initialize + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ + - name: ( + - uid: OpenTK.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Platform.ToolkitOptions.html + - name: ) +- uid: OpenTK.Platform.Toolkit.Uninit + commentId: M:OpenTK.Platform.Toolkit.Uninit + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Uninit + name: Uninit() + nameWithType: Toolkit.Uninit() + fullName: OpenTK.Platform.Toolkit.Uninit() + spec.csharp: + - uid: OpenTK.Platform.Toolkit.Uninit + name: Uninit + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Uninit + - name: ( + - name: ) + spec.vb: + - uid: OpenTK.Platform.Toolkit.Uninit + name: Uninit + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Uninit + - name: ( + - name: ) +- uid: OpenTK.Platform.Native.macOS.MacOSVulkanComponent.Uninitialize* + commentId: Overload:OpenTK.Platform.Native.macOS.MacOSVulkanComponent.Uninitialize + href: OpenTK.Platform.Native.macOS.MacOSVulkanComponent.html#OpenTK_Platform_Native_macOS_MacOSVulkanComponent_Uninitialize + name: Uninitialize + nameWithType: MacOSVulkanComponent.Uninitialize + fullName: OpenTK.Platform.Native.macOS.MacOSVulkanComponent.Uninitialize +- uid: OpenTK.Platform.IPalComponent.Uninitialize + commentId: M:OpenTK.Platform.IPalComponent.Uninitialize + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + name: Uninitialize() + nameWithType: IPalComponent.Uninitialize() + fullName: OpenTK.Platform.IPalComponent.Uninitialize() + spec.csharp: + - uid: OpenTK.Platform.IPalComponent.Uninitialize + name: Uninitialize + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + - name: ( + - name: ) + spec.vb: + - uid: OpenTK.Platform.IPalComponent.Uninitialize + name: Uninitialize + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + - name: ( + - name: ) +- uid: OpenTK.Platform.IVulkanComponent.GetPhysicalDevicePresentationSupport(OpenTK.Graphics.Vulkan.VkInstance,OpenTK.Graphics.Vulkan.VkPhysicalDevice,System.UInt32) + commentId: M:OpenTK.Platform.IVulkanComponent.GetPhysicalDevicePresentationSupport(OpenTK.Graphics.Vulkan.VkInstance,OpenTK.Graphics.Vulkan.VkPhysicalDevice,System.UInt32) + parent: OpenTK.Platform.IVulkanComponent + isExternal: true + href: OpenTK.Platform.IVulkanComponent.html#OpenTK_Platform_IVulkanComponent_GetPhysicalDevicePresentationSupport_OpenTK_Graphics_Vulkan_VkInstance_OpenTK_Graphics_Vulkan_VkPhysicalDevice_System_UInt32_ + name: GetPhysicalDevicePresentationSupport(VkInstance, VkPhysicalDevice, uint) + nameWithType: IVulkanComponent.GetPhysicalDevicePresentationSupport(VkInstance, VkPhysicalDevice, uint) + fullName: OpenTK.Platform.IVulkanComponent.GetPhysicalDevicePresentationSupport(OpenTK.Graphics.Vulkan.VkInstance, OpenTK.Graphics.Vulkan.VkPhysicalDevice, uint) + nameWithType.vb: IVulkanComponent.GetPhysicalDevicePresentationSupport(VkInstance, VkPhysicalDevice, UInteger) + fullName.vb: OpenTK.Platform.IVulkanComponent.GetPhysicalDevicePresentationSupport(OpenTK.Graphics.Vulkan.VkInstance, OpenTK.Graphics.Vulkan.VkPhysicalDevice, UInteger) + name.vb: GetPhysicalDevicePresentationSupport(VkInstance, VkPhysicalDevice, UInteger) + spec.csharp: + - uid: OpenTK.Platform.IVulkanComponent.GetPhysicalDevicePresentationSupport(OpenTK.Graphics.Vulkan.VkInstance,OpenTK.Graphics.Vulkan.VkPhysicalDevice,System.UInt32) + name: GetPhysicalDevicePresentationSupport + href: OpenTK.Platform.IVulkanComponent.html#OpenTK_Platform_IVulkanComponent_GetPhysicalDevicePresentationSupport_OpenTK_Graphics_Vulkan_VkInstance_OpenTK_Graphics_Vulkan_VkPhysicalDevice_System_UInt32_ + - name: ( + - uid: OpenTK.Graphics.Vulkan.VkInstance + name: VkInstance + href: OpenTK.Graphics.Vulkan.VkInstance.html + - name: ',' + - name: " " + - uid: OpenTK.Graphics.Vulkan.VkPhysicalDevice + name: VkPhysicalDevice + href: OpenTK.Graphics.Vulkan.VkPhysicalDevice.html + - name: ',' + - name: " " + - uid: System.UInt32 + name: uint + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.uint32 + - name: ) + spec.vb: + - uid: OpenTK.Platform.IVulkanComponent.GetPhysicalDevicePresentationSupport(OpenTK.Graphics.Vulkan.VkInstance,OpenTK.Graphics.Vulkan.VkPhysicalDevice,System.UInt32) + name: GetPhysicalDevicePresentationSupport + href: OpenTK.Platform.IVulkanComponent.html#OpenTK_Platform_IVulkanComponent_GetPhysicalDevicePresentationSupport_OpenTK_Graphics_Vulkan_VkInstance_OpenTK_Graphics_Vulkan_VkPhysicalDevice_System_UInt32_ + - name: ( + - uid: OpenTK.Graphics.Vulkan.VkInstance + name: VkInstance + href: OpenTK.Graphics.Vulkan.VkInstance.html + - name: ',' + - name: " " + - uid: OpenTK.Graphics.Vulkan.VkPhysicalDevice + name: VkPhysicalDevice + href: OpenTK.Graphics.Vulkan.VkPhysicalDevice.html + - name: ',' + - name: " " + - uid: System.UInt32 + name: UInteger + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.uint32 + - name: ) +- uid: OpenTK.Platform.IVulkanComponent.CreateWindowSurface(OpenTK.Graphics.Vulkan.VkInstance,OpenTK.Platform.WindowHandle,OpenTK.Graphics.Vulkan.VkAllocationCallbacks*,OpenTK.Graphics.Vulkan.VkSurfaceKHR@) + commentId: M:OpenTK.Platform.IVulkanComponent.CreateWindowSurface(OpenTK.Graphics.Vulkan.VkInstance,OpenTK.Platform.WindowHandle,OpenTK.Graphics.Vulkan.VkAllocationCallbacks*,OpenTK.Graphics.Vulkan.VkSurfaceKHR@) + parent: OpenTK.Platform.IVulkanComponent + href: OpenTK.Platform.IVulkanComponent.html#OpenTK_Platform_IVulkanComponent_CreateWindowSurface_OpenTK_Graphics_Vulkan_VkInstance_OpenTK_Platform_WindowHandle_OpenTK_Graphics_Vulkan_VkAllocationCallbacks__OpenTK_Graphics_Vulkan_VkSurfaceKHR__ + name: CreateWindowSurface(VkInstance, WindowHandle, VkAllocationCallbacks*, out VkSurfaceKHR) + nameWithType: IVulkanComponent.CreateWindowSurface(VkInstance, WindowHandle, VkAllocationCallbacks*, out VkSurfaceKHR) + fullName: OpenTK.Platform.IVulkanComponent.CreateWindowSurface(OpenTK.Graphics.Vulkan.VkInstance, OpenTK.Platform.WindowHandle, OpenTK.Graphics.Vulkan.VkAllocationCallbacks*, out OpenTK.Graphics.Vulkan.VkSurfaceKHR) + nameWithType.vb: IVulkanComponent.CreateWindowSurface(VkInstance, WindowHandle, VkAllocationCallbacks*, VkSurfaceKHR) + fullName.vb: OpenTK.Platform.IVulkanComponent.CreateWindowSurface(OpenTK.Graphics.Vulkan.VkInstance, OpenTK.Platform.WindowHandle, OpenTK.Graphics.Vulkan.VkAllocationCallbacks*, OpenTK.Graphics.Vulkan.VkSurfaceKHR) + name.vb: CreateWindowSurface(VkInstance, WindowHandle, VkAllocationCallbacks*, VkSurfaceKHR) + spec.csharp: + - uid: OpenTK.Platform.IVulkanComponent.CreateWindowSurface(OpenTK.Graphics.Vulkan.VkInstance,OpenTK.Platform.WindowHandle,OpenTK.Graphics.Vulkan.VkAllocationCallbacks*,OpenTK.Graphics.Vulkan.VkSurfaceKHR@) + name: CreateWindowSurface + href: OpenTK.Platform.IVulkanComponent.html#OpenTK_Platform_IVulkanComponent_CreateWindowSurface_OpenTK_Graphics_Vulkan_VkInstance_OpenTK_Platform_WindowHandle_OpenTK_Graphics_Vulkan_VkAllocationCallbacks__OpenTK_Graphics_Vulkan_VkSurfaceKHR__ + - name: ( + - uid: OpenTK.Graphics.Vulkan.VkInstance + name: VkInstance + href: OpenTK.Graphics.Vulkan.VkInstance.html + - name: ',' + - name: " " + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: OpenTK.Graphics.Vulkan.VkAllocationCallbacks + name: VkAllocationCallbacks + href: OpenTK.Graphics.Vulkan.VkAllocationCallbacks.html + - name: '*' + - name: ',' + - name: " " + - name: out + - name: " " + - uid: OpenTK.Graphics.Vulkan.VkSurfaceKHR + name: VkSurfaceKHR + href: OpenTK.Graphics.Vulkan.VkSurfaceKHR.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IVulkanComponent.CreateWindowSurface(OpenTK.Graphics.Vulkan.VkInstance,OpenTK.Platform.WindowHandle,OpenTK.Graphics.Vulkan.VkAllocationCallbacks*,OpenTK.Graphics.Vulkan.VkSurfaceKHR@) + name: CreateWindowSurface + href: OpenTK.Platform.IVulkanComponent.html#OpenTK_Platform_IVulkanComponent_CreateWindowSurface_OpenTK_Graphics_Vulkan_VkInstance_OpenTK_Platform_WindowHandle_OpenTK_Graphics_Vulkan_VkAllocationCallbacks__OpenTK_Graphics_Vulkan_VkSurfaceKHR__ + - name: ( + - uid: OpenTK.Graphics.Vulkan.VkInstance + name: VkInstance + href: OpenTK.Graphics.Vulkan.VkInstance.html + - name: ',' + - name: " " + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: OpenTK.Graphics.Vulkan.VkAllocationCallbacks + name: VkAllocationCallbacks + href: OpenTK.Graphics.Vulkan.VkAllocationCallbacks.html + - name: '*' + - name: ',' + - name: " " + - uid: OpenTK.Graphics.Vulkan.VkSurfaceKHR + name: VkSurfaceKHR + href: OpenTK.Graphics.Vulkan.VkSurfaceKHR.html + - name: ) +- uid: OpenTK.Graphics.Vulkan.VkInstance + commentId: T:OpenTK.Graphics.Vulkan.VkInstance + parent: OpenTK.Graphics.Vulkan + href: OpenTK.Graphics.Vulkan.VkInstance.html + name: VkInstance + nameWithType: VkInstance + fullName: OpenTK.Graphics.Vulkan.VkInstance +- uid: OpenTK.Platform.Native.macOS.MacOSVulkanComponent.GetRequiredInstanceExtensions* + commentId: Overload:OpenTK.Platform.Native.macOS.MacOSVulkanComponent.GetRequiredInstanceExtensions + href: OpenTK.Platform.Native.macOS.MacOSVulkanComponent.html#OpenTK_Platform_Native_macOS_MacOSVulkanComponent_GetRequiredInstanceExtensions + name: GetRequiredInstanceExtensions + nameWithType: MacOSVulkanComponent.GetRequiredInstanceExtensions + fullName: OpenTK.Platform.Native.macOS.MacOSVulkanComponent.GetRequiredInstanceExtensions +- uid: OpenTK.Platform.IVulkanComponent.GetRequiredInstanceExtensions + commentId: M:OpenTK.Platform.IVulkanComponent.GetRequiredInstanceExtensions + parent: OpenTK.Platform.IVulkanComponent + href: OpenTK.Platform.IVulkanComponent.html#OpenTK_Platform_IVulkanComponent_GetRequiredInstanceExtensions + name: GetRequiredInstanceExtensions() + nameWithType: IVulkanComponent.GetRequiredInstanceExtensions() + fullName: OpenTK.Platform.IVulkanComponent.GetRequiredInstanceExtensions() + spec.csharp: + - uid: OpenTK.Platform.IVulkanComponent.GetRequiredInstanceExtensions + name: GetRequiredInstanceExtensions + href: OpenTK.Platform.IVulkanComponent.html#OpenTK_Platform_IVulkanComponent_GetRequiredInstanceExtensions + - name: ( + - name: ) + spec.vb: + - uid: OpenTK.Platform.IVulkanComponent.GetRequiredInstanceExtensions + name: GetRequiredInstanceExtensions + href: OpenTK.Platform.IVulkanComponent.html#OpenTK_Platform_IVulkanComponent_GetRequiredInstanceExtensions + - name: ( + - name: ) +- uid: System.ReadOnlySpan{System.String} + commentId: T:System.ReadOnlySpan{System.String} + parent: System + definition: System.ReadOnlySpan`1 + href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 + name: ReadOnlySpan + nameWithType: ReadOnlySpan + fullName: System.ReadOnlySpan + nameWithType.vb: ReadOnlySpan(Of String) + fullName.vb: System.ReadOnlySpan(Of String) + name.vb: ReadOnlySpan(Of String) + spec.csharp: + - uid: System.ReadOnlySpan`1 + name: ReadOnlySpan + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 + - name: < + - uid: System.String + name: string + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: '>' + spec.vb: + - uid: System.ReadOnlySpan`1 + name: ReadOnlySpan + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 + - name: ( + - name: Of + - name: " " + - uid: System.String + name: String + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ) +- uid: OpenTK.Graphics.Vulkan + commentId: N:OpenTK.Graphics.Vulkan + href: OpenTK.html + name: OpenTK.Graphics.Vulkan + nameWithType: OpenTK.Graphics.Vulkan + fullName: OpenTK.Graphics.Vulkan + spec.csharp: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Graphics + name: Graphics + href: OpenTK.Graphics.html + - name: . + - uid: OpenTK.Graphics.Vulkan + name: Vulkan + href: OpenTK.Graphics.Vulkan.html + spec.vb: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Graphics + name: Graphics + href: OpenTK.Graphics.html + - name: . + - uid: OpenTK.Graphics.Vulkan + name: Vulkan + href: OpenTK.Graphics.Vulkan.html +- uid: System.ReadOnlySpan`1 + commentId: T:System.ReadOnlySpan`1 + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 + name: ReadOnlySpan + nameWithType: ReadOnlySpan + fullName: System.ReadOnlySpan + nameWithType.vb: ReadOnlySpan(Of T) + fullName.vb: System.ReadOnlySpan(Of T) + name.vb: ReadOnlySpan(Of T) + spec.csharp: + - uid: System.ReadOnlySpan`1 + name: ReadOnlySpan + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 + - name: < + - name: T + - name: '>' + spec.vb: + - uid: System.ReadOnlySpan`1 + name: ReadOnlySpan + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 + - name: ( + - name: Of + - name: " " + - name: T + - name: ) +- uid: OpenTK.Graphics.Vulkan.VkPhysicalDevice + commentId: T:OpenTK.Graphics.Vulkan.VkPhysicalDevice + parent: OpenTK.Graphics.Vulkan + href: OpenTK.Graphics.Vulkan.VkPhysicalDevice.html + name: VkPhysicalDevice + nameWithType: VkPhysicalDevice + fullName: OpenTK.Graphics.Vulkan.VkPhysicalDevice +- uid: OpenTK.Platform.Native.macOS.MacOSVulkanComponent.GetPhysicalDevicePresentationSupport* + commentId: Overload:OpenTK.Platform.Native.macOS.MacOSVulkanComponent.GetPhysicalDevicePresentationSupport + href: OpenTK.Platform.Native.macOS.MacOSVulkanComponent.html#OpenTK_Platform_Native_macOS_MacOSVulkanComponent_GetPhysicalDevicePresentationSupport_OpenTK_Graphics_Vulkan_VkInstance_OpenTK_Graphics_Vulkan_VkPhysicalDevice_System_UInt32_ + name: GetPhysicalDevicePresentationSupport + nameWithType: MacOSVulkanComponent.GetPhysicalDevicePresentationSupport + fullName: OpenTK.Platform.Native.macOS.MacOSVulkanComponent.GetPhysicalDevicePresentationSupport +- uid: System.UInt32 + commentId: T:System.UInt32 + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.uint32 + name: uint + nameWithType: uint + fullName: uint + nameWithType.vb: UInteger + fullName.vb: UInteger + name.vb: UInteger +- uid: System.Boolean + commentId: T:System.Boolean + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + name: bool + nameWithType: bool + fullName: bool + nameWithType.vb: Boolean + fullName.vb: Boolean + name.vb: Boolean +- uid: OpenTK.Platform.Native.macOS.MacOSVulkanComponent.CreateWindowSurface* + commentId: Overload:OpenTK.Platform.Native.macOS.MacOSVulkanComponent.CreateWindowSurface + href: OpenTK.Platform.Native.macOS.MacOSVulkanComponent.html#OpenTK_Platform_Native_macOS_MacOSVulkanComponent_CreateWindowSurface_OpenTK_Graphics_Vulkan_VkInstance_OpenTK_Platform_WindowHandle_OpenTK_Graphics_Vulkan_VkAllocationCallbacks__OpenTK_Graphics_Vulkan_VkSurfaceKHR__ + name: CreateWindowSurface + nameWithType: MacOSVulkanComponent.CreateWindowSurface + fullName: OpenTK.Platform.Native.macOS.MacOSVulkanComponent.CreateWindowSurface +- uid: OpenTK.Platform.WindowHandle + commentId: T:OpenTK.Platform.WindowHandle + parent: OpenTK.Platform + href: OpenTK.Platform.WindowHandle.html + name: WindowHandle + nameWithType: WindowHandle + fullName: OpenTK.Platform.WindowHandle +- uid: OpenTK.Graphics.Vulkan.VkAllocationCallbacks* + isExternal: true + href: OpenTK.Graphics.Vulkan.VkAllocationCallbacks.html + name: VkAllocationCallbacks* + nameWithType: VkAllocationCallbacks* + fullName: OpenTK.Graphics.Vulkan.VkAllocationCallbacks* + spec.csharp: + - uid: OpenTK.Graphics.Vulkan.VkAllocationCallbacks + name: VkAllocationCallbacks + href: OpenTK.Graphics.Vulkan.VkAllocationCallbacks.html + - name: '*' + spec.vb: + - uid: OpenTK.Graphics.Vulkan.VkAllocationCallbacks + name: VkAllocationCallbacks + href: OpenTK.Graphics.Vulkan.VkAllocationCallbacks.html + - name: '*' +- uid: OpenTK.Graphics.Vulkan.VkSurfaceKHR + commentId: T:OpenTK.Graphics.Vulkan.VkSurfaceKHR + parent: OpenTK.Graphics.Vulkan + href: OpenTK.Graphics.Vulkan.VkSurfaceKHR.html + name: VkSurfaceKHR + nameWithType: VkSurfaceKHR + fullName: OpenTK.Graphics.Vulkan.VkSurfaceKHR +- uid: OpenTK.Graphics.Vulkan.VkResult + commentId: T:OpenTK.Graphics.Vulkan.VkResult + parent: OpenTK.Graphics.Vulkan + href: OpenTK.Graphics.Vulkan.VkResult.html + name: VkResult + nameWithType: VkResult + fullName: OpenTK.Graphics.Vulkan.VkResult diff --git a/api/OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml b/api/OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml index fb9ee6e3..68ce0fa9 100644 --- a/api/OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml +++ b/api/OpenTK.Platform.Native.macOS.MacOSWindowComponent.yml @@ -9,18 +9,20 @@ items: - OpenTK.Platform.Native.macOS.MacOSWindowComponent.CanGetDisplay - OpenTK.Platform.Native.macOS.MacOSWindowComponent.CanSetCursor - OpenTK.Platform.Native.macOS.MacOSWindowComponent.CanSetIcon - - OpenTK.Platform.Native.macOS.MacOSWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) + - OpenTK.Platform.Native.macOS.MacOSWindowComponent.ClientToFramebuffer(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + - OpenTK.Platform.Native.macOS.MacOSWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) - OpenTK.Platform.Native.macOS.MacOSWindowComponent.Create(OpenTK.Platform.GraphicsApiHints) - OpenTK.Platform.Native.macOS.MacOSWindowComponent.Destroy(OpenTK.Platform.WindowHandle) - OpenTK.Platform.Native.macOS.MacOSWindowComponent.FocusWindow(OpenTK.Platform.WindowHandle) + - OpenTK.Platform.Native.macOS.MacOSWindowComponent.FramebufferToClient(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) - OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetBorderStyle(OpenTK.Platform.WindowHandle) - OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetBounds(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) - OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetClientBounds(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) - - OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) - - OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetClientSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + - OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) + - OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetClientSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) - OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetCursorCaptureMode(OpenTK.Platform.WindowHandle) - OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetDisplay(OpenTK.Platform.WindowHandle) - - OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + - OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) - OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle@) - OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetIcon(OpenTK.Platform.WindowHandle) - OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetMaxClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) @@ -28,10 +30,11 @@ items: - OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetMode(OpenTK.Platform.WindowHandle) - OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetNSView(OpenTK.Platform.WindowHandle) - OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetNSWindow(OpenTK.Platform.WindowHandle) - - OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + - OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) - OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetScaleFactor(OpenTK.Platform.WindowHandle,System.Single@,System.Single@) - - OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + - OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) - OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetTitle(OpenTK.Platform.WindowHandle) + - OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetTransparencyMode(OpenTK.Platform.WindowHandle,System.Single@) - OpenTK.Platform.Native.macOS.MacOSWindowComponent.Initialize(OpenTK.Platform.ToolkitOptions) - OpenTK.Platform.Native.macOS.MacOSWindowComponent.IsAlwaysOnTop(OpenTK.Platform.WindowHandle) - OpenTK.Platform.Native.macOS.MacOSWindowComponent.IsFocused(OpenTK.Platform.WindowHandle) @@ -41,13 +44,13 @@ items: - OpenTK.Platform.Native.macOS.MacOSWindowComponent.ProcessEvents(System.Boolean) - OpenTK.Platform.Native.macOS.MacOSWindowComponent.Provides - OpenTK.Platform.Native.macOS.MacOSWindowComponent.RequestAttention(OpenTK.Platform.WindowHandle) - - OpenTK.Platform.Native.macOS.MacOSWindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) + - OpenTK.Platform.Native.macOS.MacOSWindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) - OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetAlwaysOnTop(OpenTK.Platform.WindowHandle,System.Boolean) - OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetBorderStyle(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowBorderStyle) - OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetBounds(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) - OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetClientBounds(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32,System.Int32) - - OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) - - OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetClientSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) + - OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) + - OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetClientSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) - OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetCursor(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorHandle) - OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetCursorCaptureMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorCaptureMode) - OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetDockIcon(OpenTK.Platform.WindowHandle,OpenTK.Platform.IconHandle) @@ -59,12 +62,15 @@ items: - OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetMaxClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) - OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetMinClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32},System.Nullable{System.Int32}) - OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowMode) - - OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) - - OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) + - OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) + - OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) - OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetTitle(OpenTK.Platform.WindowHandle,System.String) + - OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetTransparencyMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowTransparencyMode,System.Single) - OpenTK.Platform.Native.macOS.MacOSWindowComponent.SupportedEvents - OpenTK.Platform.Native.macOS.MacOSWindowComponent.SupportedModes - OpenTK.Platform.Native.macOS.MacOSWindowComponent.SupportedStyles + - OpenTK.Platform.Native.macOS.MacOSWindowComponent.SupportsFramebufferTransparency(OpenTK.Platform.WindowHandle) + - OpenTK.Platform.Native.macOS.MacOSWindowComponent.Uninitialize langs: - csharp - vb @@ -109,7 +115,7 @@ items: source: id: Name path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSWindowComponent.cs - startLine: 190 + startLine: 205 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS @@ -138,7 +144,7 @@ items: source: id: Provides path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSWindowComponent.cs - startLine: 193 + startLine: 208 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS @@ -167,11 +173,11 @@ items: source: id: Logger path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSWindowComponent.cs - startLine: 196 + startLine: 211 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS - summary: Provides a logger for this component. + summary: The logger that this component uses to log diagnostic messages. example: [] syntax: content: public ILogger? Logger { get; set; } @@ -180,6 +186,11 @@ items: type: OpenTK.Core.Utility.ILogger content.vb: Public Property Logger As ILogger overload: OpenTK.Platform.Native.macOS.MacOSWindowComponent.Logger* + seealso: + - linkId: OpenTK.Core.Utility.ILogger + commentId: T:OpenTK.Core.Utility.ILogger + - linkId: OpenTK.Platform.ToolkitOptions.Logger + commentId: P:OpenTK.Platform.ToolkitOptions.Logger implements: - OpenTK.Platform.IPalComponent.Logger - uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.Initialize(OpenTK.Platform.ToolkitOptions) @@ -196,7 +207,7 @@ items: source: id: Initialize path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSWindowComponent.cs - startLine: 199 + startLine: 214 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS @@ -210,8 +221,42 @@ items: description: The options to initialize the component with. content.vb: Public Sub Initialize(options As ToolkitOptions) overload: OpenTK.Platform.Native.macOS.MacOSWindowComponent.Initialize* + seealso: + - linkId: OpenTK.Platform.ToolkitOptions + commentId: T:OpenTK.Platform.ToolkitOptions + - linkId: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) implements: - OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) +- uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.Uninitialize + commentId: M:OpenTK.Platform.Native.macOS.MacOSWindowComponent.Uninitialize + id: Uninitialize + parent: OpenTK.Platform.Native.macOS.MacOSWindowComponent + langs: + - csharp + - vb + name: Uninitialize() + nameWithType: MacOSWindowComponent.Uninitialize() + fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.Uninitialize() + type: Method + source: + id: Uninitialize + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSWindowComponent.cs + startLine: 352 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform.Native.macOS + summary: Uninitialize the component. Frees any native resources used by the component. + example: [] + syntax: + content: public void Uninitialize() + content.vb: Public Sub Uninitialize() + overload: OpenTK.Platform.Native.macOS.MacOSWindowComponent.Uninitialize* + seealso: + - linkId: OpenTK.Platform.Toolkit.Uninit + commentId: M:OpenTK.Platform.Toolkit.Uninit + implements: + - OpenTK.Platform.IPalComponent.Uninitialize - uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.CanSetIcon commentId: P:OpenTK.Platform.Native.macOS.MacOSWindowComponent.CanSetIcon id: CanSetIcon @@ -226,11 +271,11 @@ items: source: id: CanSetIcon path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSWindowComponent.cs - startLine: 970 + startLine: 1003 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS - summary: True when the driver supports setting the window icon using . + summary: true when the driver supports setting and getting the window icon using and . example: [] syntax: content: public bool CanSetIcon { get; } @@ -242,6 +287,8 @@ items: seealso: - linkId: OpenTK.Platform.IWindowComponent.SetIcon(OpenTK.Platform.WindowHandle,OpenTK.Platform.IconHandle) commentId: M:OpenTK.Platform.IWindowComponent.SetIcon(OpenTK.Platform.WindowHandle,OpenTK.Platform.IconHandle) + - linkId: OpenTK.Platform.IWindowComponent.GetIcon(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.GetIcon(OpenTK.Platform.WindowHandle) implements: - OpenTK.Platform.IWindowComponent.CanSetIcon - uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.CanGetDisplay @@ -258,11 +305,11 @@ items: source: id: CanGetDisplay path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSWindowComponent.cs - startLine: 973 + startLine: 1006 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS - summary: True when the driver can provide the display the window is in using . + summary: true when the driver can provide the display the window is in using . example: [] syntax: content: public bool CanGetDisplay { get; } @@ -290,11 +337,11 @@ items: source: id: CanSetCursor path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSWindowComponent.cs - startLine: 976 + startLine: 1009 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS - summary: True when the driver supports setting the cursor of the window using . + summary: true when the driver supports setting the cursor of the window using . example: [] syntax: content: public bool CanSetCursor { get; } @@ -322,11 +369,11 @@ items: source: id: CanCaptureCursor path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSWindowComponent.cs - startLine: 979 + startLine: 1012 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS - summary: True when the driver supports capturing the cursor in a window using . + summary: true when the driver supports capturing the cursor in a window using . example: [] syntax: content: public bool CanCaptureCursor { get; } @@ -354,7 +401,7 @@ items: source: id: SupportedEvents path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSWindowComponent.cs - startLine: 982 + startLine: 1015 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS @@ -383,7 +430,7 @@ items: source: id: SupportedStyles path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSWindowComponent.cs - startLine: 985 + startLine: 1018 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS @@ -412,7 +459,7 @@ items: source: id: SupportedModes path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSWindowComponent.cs - startLine: 988 + startLine: 1021 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS @@ -441,7 +488,7 @@ items: source: id: ProcessEvents path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSWindowComponent.cs - startLine: 993 + startLine: 1026 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS @@ -474,7 +521,7 @@ items: source: id: Create path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSWindowComponent.cs - startLine: 1338 + startLine: 1368 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS @@ -491,6 +538,9 @@ items: description: Handle to the new window object. content.vb: Public Function Create(hints As GraphicsApiHints) As WindowHandle overload: OpenTK.Platform.Native.macOS.MacOSWindowComponent.Create* + seealso: + - linkId: OpenTK.Platform.IWindowComponent.Destroy(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.Destroy(OpenTK.Platform.WindowHandle) implements: - OpenTK.Platform.IWindowComponent.Create(OpenTK.Platform.GraphicsApiHints) - uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.Destroy(OpenTK.Platform.WindowHandle) @@ -507,7 +557,7 @@ items: source: id: Destroy path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSWindowComponent.cs - startLine: 1400 + startLine: 1429 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS @@ -521,10 +571,11 @@ items: description: Handle to a window object. content.vb: Public Sub Destroy(handle As WindowHandle) overload: OpenTK.Platform.Native.macOS.MacOSWindowComponent.Destroy* - exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: handle is null. + seealso: + - linkId: OpenTK.Platform.IWindowComponent.Create(OpenTK.Platform.GraphicsApiHints) + commentId: M:OpenTK.Platform.IWindowComponent.Create(OpenTK.Platform.GraphicsApiHints) + - linkId: OpenTK.Platform.IWindowComponent.IsWindowDestroyed(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.IsWindowDestroyed(OpenTK.Platform.WindowHandle) implements: - OpenTK.Platform.IWindowComponent.Destroy(OpenTK.Platform.WindowHandle) - uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.IsWindowDestroyed(OpenTK.Platform.WindowHandle) @@ -541,7 +592,7 @@ items: source: id: IsWindowDestroyed path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSWindowComponent.cs - startLine: 1422 + startLine: 1451 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS @@ -558,6 +609,11 @@ items: description: If was called with the window handle. content.vb: Public Function IsWindowDestroyed(handle As WindowHandle) As Boolean overload: OpenTK.Platform.Native.macOS.MacOSWindowComponent.IsWindowDestroyed* + seealso: + - linkId: OpenTK.Platform.IWindowComponent.Create(OpenTK.Platform.GraphicsApiHints) + commentId: M:OpenTK.Platform.IWindowComponent.Create(OpenTK.Platform.GraphicsApiHints) + - linkId: OpenTK.Platform.IWindowComponent.Destroy(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.Destroy(OpenTK.Platform.WindowHandle) implements: - OpenTK.Platform.IWindowComponent.IsWindowDestroyed(OpenTK.Platform.WindowHandle) - uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetTitle(OpenTK.Platform.WindowHandle) @@ -574,7 +630,7 @@ items: source: id: GetTitle path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSWindowComponent.cs - startLine: 1430 + startLine: 1459 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS @@ -591,10 +647,9 @@ items: description: The title of the window. content.vb: Public Function GetTitle(handle As WindowHandle) As String overload: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetTitle* - exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: handle is null. + seealso: + - linkId: OpenTK.Platform.IWindowComponent.SetTitle(OpenTK.Platform.WindowHandle,System.String) + commentId: M:OpenTK.Platform.IWindowComponent.SetTitle(OpenTK.Platform.WindowHandle,System.String) implements: - OpenTK.Platform.IWindowComponent.GetTitle(OpenTK.Platform.WindowHandle) - uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetTitle(OpenTK.Platform.WindowHandle,System.String) @@ -611,7 +666,7 @@ items: source: id: SetTitle path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSWindowComponent.cs - startLine: 1440 + startLine: 1469 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS @@ -628,10 +683,9 @@ items: description: New window title string. content.vb: Public Sub SetTitle(handle As WindowHandle, title As String) overload: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetTitle* - exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: handle or title is null. + seealso: + - linkId: OpenTK.Platform.IWindowComponent.GetTitle(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.GetTitle(OpenTK.Platform.WindowHandle) implements: - OpenTK.Platform.IWindowComponent.SetTitle(OpenTK.Platform.WindowHandle,System.String) nameWithType.vb: MacOSWindowComponent.SetTitle(WindowHandle, String) @@ -651,7 +705,7 @@ items: source: id: GetIcon path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSWindowComponent.cs - startLine: 1448 + startLine: 1477 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS @@ -669,12 +723,14 @@ items: content.vb: Public Function GetIcon(handle As WindowHandle) As IconHandle overload: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetIcon* exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: handle is null. - - type: OpenTK.Platform.PalNotImplementedException - commentId: T:OpenTK.Platform.PalNotImplementedException - description: Driver does not support getting the window icon. See . + - type: System.PlatformNotSupportedException + commentId: T:System.PlatformNotSupportedException + description: Backend does not support getting the window icon. See . + seealso: + - linkId: OpenTK.Platform.IWindowComponent.CanSetIcon + commentId: P:OpenTK.Platform.IWindowComponent.CanSetIcon + - linkId: OpenTK.Platform.IWindowComponent.SetIcon(OpenTK.Platform.WindowHandle,OpenTK.Platform.IconHandle) + commentId: M:OpenTK.Platform.IWindowComponent.SetIcon(OpenTK.Platform.WindowHandle,OpenTK.Platform.IconHandle) implements: - OpenTK.Platform.IWindowComponent.GetIcon(OpenTK.Platform.WindowHandle) - uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetIcon(OpenTK.Platform.WindowHandle,OpenTK.Platform.IconHandle) @@ -691,7 +747,7 @@ items: source: id: SetIcon path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSWindowComponent.cs - startLine: 1456 + startLine: 1485 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS @@ -705,19 +761,18 @@ items: description: Handle to a window. - id: icon type: OpenTK.Platform.IconHandle - description: Handle to an icon object, or null to revert to default. + description: Handle to an icon object. content.vb: Public Sub SetIcon(handle As WindowHandle, icon As IconHandle) overload: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetIcon* exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: handle or icon is null. - - type: OpenTK.Platform.PalNotImplementedException - commentId: T:OpenTK.Platform.PalNotImplementedException + - type: System.PlatformNotSupportedException + commentId: T:System.PlatformNotSupportedException description: Backend does not support setting the window icon. See . seealso: - linkId: OpenTK.Platform.IWindowComponent.CanSetIcon commentId: P:OpenTK.Platform.IWindowComponent.CanSetIcon + - linkId: OpenTK.Platform.IWindowComponent.GetIcon(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.GetIcon(OpenTK.Platform.WindowHandle) implements: - OpenTK.Platform.IWindowComponent.SetIcon(OpenTK.Platform.WindowHandle,OpenTK.Platform.IconHandle) - uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetDockIcon(OpenTK.Platform.WindowHandle,OpenTK.Platform.IconHandle) @@ -734,7 +789,7 @@ items: source: id: SetDockIcon path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSWindowComponent.cs - startLine: 1468 + startLine: 1497 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS @@ -747,178 +802,147 @@ items: type: OpenTK.Platform.IconHandle content.vb: Public Sub SetDockIcon(handle As WindowHandle, icon As IconHandle) overload: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetDockIcon* -- uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) - commentId: M:OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) - id: GetPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) +- uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) + commentId: M:OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) + id: GetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) parent: OpenTK.Platform.Native.macOS.MacOSWindowComponent langs: - csharp - vb - name: GetPosition(WindowHandle, out int, out int) - nameWithType: MacOSWindowComponent.GetPosition(WindowHandle, out int, out int) - fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetPosition(OpenTK.Platform.WindowHandle, out int, out int) + name: GetPosition(WindowHandle, out Vector2i) + nameWithType: MacOSWindowComponent.GetPosition(WindowHandle, out Vector2i) + fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetPosition(OpenTK.Platform.WindowHandle, out OpenTK.Mathematics.Vector2i) type: Method source: id: GetPosition path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSWindowComponent.cs - startLine: 1497 + startLine: 1526 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: Get the window position in display coordinates (top left origin). example: [] syntax: - content: public void GetPosition(WindowHandle handle, out int x, out int y) + content: public void GetPosition(WindowHandle handle, out Vector2i position) parameters: - id: handle type: OpenTK.Platform.WindowHandle description: Handle to a window. - - id: x - type: System.Int32 - description: X coordinate of the window. - - id: y - type: System.Int32 - description: Y coordinate of the window. - content.vb: Public Sub GetPosition(handle As WindowHandle, x As Integer, y As Integer) + - id: position + type: OpenTK.Mathematics.Vector2i + description: Coordinate of the window in screen coordinates. + content.vb: Public Sub GetPosition(handle As WindowHandle, position As Vector2i) overload: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetPosition* - exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: handle is null. + seealso: + - linkId: OpenTK.Platform.IWindowComponent.SetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) + commentId: M:OpenTK.Platform.IWindowComponent.SetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) implements: - - OpenTK.Platform.IWindowComponent.GetPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) - nameWithType.vb: MacOSWindowComponent.GetPosition(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetPosition(OpenTK.Platform.WindowHandle, Integer, Integer) - name.vb: GetPosition(WindowHandle, Integer, Integer) -- uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) - commentId: M:OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) - id: SetPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) + - OpenTK.Platform.IWindowComponent.GetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) + nameWithType.vb: MacOSWindowComponent.GetPosition(WindowHandle, Vector2i) + fullName.vb: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetPosition(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2i) + name.vb: GetPosition(WindowHandle, Vector2i) +- uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) + commentId: M:OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) + id: SetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) parent: OpenTK.Platform.Native.macOS.MacOSWindowComponent langs: - csharp - vb - name: SetPosition(WindowHandle, int, int) - nameWithType: MacOSWindowComponent.SetPosition(WindowHandle, int, int) - fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetPosition(OpenTK.Platform.WindowHandle, int, int) + name: SetPosition(WindowHandle, Vector2i) + nameWithType: MacOSWindowComponent.SetPosition(WindowHandle, Vector2i) + fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetPosition(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2i) type: Method source: id: SetPosition path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSWindowComponent.cs - startLine: 1508 + startLine: 1537 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: Set the window position in display coordinates (top left origin). example: [] syntax: - content: public void SetPosition(WindowHandle handle, int x, int y) + content: public void SetPosition(WindowHandle handle, Vector2i newPosition) parameters: - id: handle type: OpenTK.Platform.WindowHandle description: Handle to a window. - - id: x - type: System.Int32 - description: New X coordinate of the window. - - id: y - type: System.Int32 - description: New Y coordinate of the window. - content.vb: Public Sub SetPosition(handle As WindowHandle, x As Integer, y As Integer) + - id: newPosition + type: OpenTK.Mathematics.Vector2i + description: New position of the window in screen coordinates. + content.vb: Public Sub SetPosition(handle As WindowHandle, newPosition As Vector2i) overload: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetPosition* - exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: handle is null. implements: - - OpenTK.Platform.IWindowComponent.SetPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) - nameWithType.vb: MacOSWindowComponent.SetPosition(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetPosition(OpenTK.Platform.WindowHandle, Integer, Integer) - name.vb: SetPosition(WindowHandle, Integer, Integer) -- uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) - commentId: M:OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) - id: GetSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + - OpenTK.Platform.IWindowComponent.SetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) +- uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) + commentId: M:OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) + id: GetSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) parent: OpenTK.Platform.Native.macOS.MacOSWindowComponent langs: - csharp - vb - name: GetSize(WindowHandle, out int, out int) - nameWithType: MacOSWindowComponent.GetSize(WindowHandle, out int, out int) - fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetSize(OpenTK.Platform.WindowHandle, out int, out int) + name: GetSize(WindowHandle, out Vector2i) + nameWithType: MacOSWindowComponent.GetSize(WindowHandle, out Vector2i) + fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetSize(OpenTK.Platform.WindowHandle, out OpenTK.Mathematics.Vector2i) type: Method source: id: GetSize path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSWindowComponent.cs - startLine: 1519 + startLine: 1547 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: Get the size of the window. example: [] syntax: - content: public void GetSize(WindowHandle handle, out int width, out int height) + content: public void GetSize(WindowHandle handle, out Vector2i size) parameters: - id: handle type: OpenTK.Platform.WindowHandle description: Handle to a window. - - id: width - type: System.Int32 - description: Width of the window in pixels. - - id: height - type: System.Int32 - description: Height of the window in pixels. - content.vb: Public Sub GetSize(handle As WindowHandle, width As Integer, height As Integer) + - id: size + type: OpenTK.Mathematics.Vector2i + description: Size of the window in screen coordinates. + content.vb: Public Sub GetSize(handle As WindowHandle, size As Vector2i) overload: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetSize* - exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: handle is null. implements: - - OpenTK.Platform.IWindowComponent.GetSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) - nameWithType.vb: MacOSWindowComponent.GetSize(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetSize(OpenTK.Platform.WindowHandle, Integer, Integer) - name.vb: GetSize(WindowHandle, Integer, Integer) -- uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) - commentId: M:OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) - id: SetSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) + - OpenTK.Platform.IWindowComponent.GetSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) + nameWithType.vb: MacOSWindowComponent.GetSize(WindowHandle, Vector2i) + fullName.vb: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetSize(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2i) + name.vb: GetSize(WindowHandle, Vector2i) +- uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) + commentId: M:OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) + id: SetSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) parent: OpenTK.Platform.Native.macOS.MacOSWindowComponent langs: - csharp - vb - name: SetSize(WindowHandle, int, int) - nameWithType: MacOSWindowComponent.SetSize(WindowHandle, int, int) - fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetSize(OpenTK.Platform.WindowHandle, int, int) + name: SetSize(WindowHandle, Vector2i) + nameWithType: MacOSWindowComponent.SetSize(WindowHandle, Vector2i) + fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetSize(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2i) type: Method source: id: SetSize path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSWindowComponent.cs - startLine: 1531 + startLine: 1559 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: Set the size of the window. example: [] syntax: - content: public void SetSize(WindowHandle handle, int width, int height) + content: public void SetSize(WindowHandle handle, Vector2i newSize) parameters: - id: handle type: OpenTK.Platform.WindowHandle description: Handle to a window. - - id: width - type: System.Int32 - description: New width of the window in pixels. - - id: height - type: System.Int32 - description: New height of the window in pixels. - content.vb: Public Sub SetSize(handle As WindowHandle, width As Integer, height As Integer) + - id: newSize + type: OpenTK.Mathematics.Vector2i + description: New size of the window in screen coordinates. + content.vb: Public Sub SetSize(handle As WindowHandle, newSize As Vector2i) overload: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetSize* - exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: handle is null. implements: - - OpenTK.Platform.IWindowComponent.SetSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) - nameWithType.vb: MacOSWindowComponent.SetSize(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetSize(OpenTK.Platform.WindowHandle, Integer, Integer) - name.vb: SetSize(WindowHandle, Integer, Integer) + - OpenTK.Platform.IWindowComponent.SetSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) - uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetBounds(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) commentId: M:OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetBounds(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) id: GetBounds(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) @@ -933,7 +957,7 @@ items: source: id: GetBounds path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSWindowComponent.cs - startLine: 1544 + startLine: 1572 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS @@ -953,10 +977,10 @@ items: description: Y coordinate of the window. - id: width type: System.Int32 - description: Width of the window in pixels. + description: Width of the window in screen coordinates. - id: height type: System.Int32 - description: Height of the window in pixels. + description: Height of the window in screen coordinates. content.vb: Public Sub GetBounds(handle As WindowHandle, x As Integer, y As Integer, width As Integer, height As Integer) overload: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetBounds* implements: @@ -978,7 +1002,7 @@ items: source: id: SetBounds path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSWindowComponent.cs - startLine: 1558 + startLine: 1586 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS @@ -998,10 +1022,10 @@ items: description: New Y coordinate of the window. - id: width type: System.Int32 - description: New width of the window in pixels. + description: New width of the window in screen coordinates. - id: height type: System.Int32 - description: New height of the window in pixels. + description: New height of the window in screen coordinates. content.vb: Public Sub SetBounds(handle As WindowHandle, x As Integer, y As Integer, width As Integer, height As Integer) overload: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetBounds* implements: @@ -1009,178 +1033,144 @@ items: nameWithType.vb: MacOSWindowComponent.SetBounds(WindowHandle, Integer, Integer, Integer, Integer) fullName.vb: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetBounds(OpenTK.Platform.WindowHandle, Integer, Integer, Integer, Integer) name.vb: SetBounds(WindowHandle, Integer, Integer, Integer, Integer) -- uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) - commentId: M:OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) - id: GetClientPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) +- uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) + commentId: M:OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) + id: GetClientPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) parent: OpenTK.Platform.Native.macOS.MacOSWindowComponent langs: - csharp - vb - name: GetClientPosition(WindowHandle, out int, out int) - nameWithType: MacOSWindowComponent.GetClientPosition(WindowHandle, out int, out int) - fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle, out int, out int) + name: GetClientPosition(WindowHandle, out Vector2i) + nameWithType: MacOSWindowComponent.GetClientPosition(WindowHandle, out Vector2i) + fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle, out OpenTK.Mathematics.Vector2i) type: Method source: id: GetClientPosition path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSWindowComponent.cs - startLine: 1575 + startLine: 1603 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: Get the position of the client area (drawing area) of a window. example: [] syntax: - content: public void GetClientPosition(WindowHandle handle, out int x, out int y) + content: public void GetClientPosition(WindowHandle handle, out Vector2i clientPosition) parameters: - id: handle type: OpenTK.Platform.WindowHandle description: Handle to a window. - - id: x - type: System.Int32 - description: X coordinate of the client area. - - id: y - type: System.Int32 - description: Y coordinate of the client area. - content.vb: Public Sub GetClientPosition(handle As WindowHandle, x As Integer, y As Integer) + - id: clientPosition + type: OpenTK.Mathematics.Vector2i + description: The coordinate of the client area in screen coordinates. + content.vb: Public Sub GetClientPosition(handle As WindowHandle, clientPosition As Vector2i) overload: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetClientPosition* - exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: handle is null. implements: - - OpenTK.Platform.IWindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) - nameWithType.vb: MacOSWindowComponent.GetClientPosition(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle, Integer, Integer) - name.vb: GetClientPosition(WindowHandle, Integer, Integer) -- uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) - commentId: M:OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) - id: SetClientPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) + - OpenTK.Platform.IWindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) + nameWithType.vb: MacOSWindowComponent.GetClientPosition(WindowHandle, Vector2i) + fullName.vb: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2i) + name.vb: GetClientPosition(WindowHandle, Vector2i) +- uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) + commentId: M:OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) + id: SetClientPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) parent: OpenTK.Platform.Native.macOS.MacOSWindowComponent langs: - csharp - vb - name: SetClientPosition(WindowHandle, int, int) - nameWithType: MacOSWindowComponent.SetClientPosition(WindowHandle, int, int) - fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle, int, int) + name: SetClientPosition(WindowHandle, Vector2i) + nameWithType: MacOSWindowComponent.SetClientPosition(WindowHandle, Vector2i) + fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2i) type: Method source: id: SetClientPosition path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSWindowComponent.cs - startLine: 1588 + startLine: 1616 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: Set the position of the client area (drawing area) of a window. example: [] syntax: - content: public void SetClientPosition(WindowHandle handle, int x, int y) + content: public void SetClientPosition(WindowHandle handle, Vector2i newClientPosition) parameters: - id: handle type: OpenTK.Platform.WindowHandle description: Handle to a window. - - id: x - type: System.Int32 - description: New X coordinate of the client area. - - id: y - type: System.Int32 - description: New Y coordinate of the client area. - content.vb: Public Sub SetClientPosition(handle As WindowHandle, x As Integer, y As Integer) + - id: newClientPosition + type: OpenTK.Mathematics.Vector2i + description: New coordinate of the client area in screen coordinates. + content.vb: Public Sub SetClientPosition(handle As WindowHandle, newClientPosition As Vector2i) overload: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetClientPosition* - exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: handle is null. implements: - - OpenTK.Platform.IWindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) - nameWithType.vb: MacOSWindowComponent.SetClientPosition(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle, Integer, Integer) - name.vb: SetClientPosition(WindowHandle, Integer, Integer) -- uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetClientSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) - commentId: M:OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetClientSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) - id: GetClientSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + - OpenTK.Platform.IWindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) +- uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetClientSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) + commentId: M:OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetClientSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) + id: GetClientSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) parent: OpenTK.Platform.Native.macOS.MacOSWindowComponent langs: - csharp - vb - name: GetClientSize(WindowHandle, out int, out int) - nameWithType: MacOSWindowComponent.GetClientSize(WindowHandle, out int, out int) - fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetClientSize(OpenTK.Platform.WindowHandle, out int, out int) + name: GetClientSize(WindowHandle, out Vector2i) + nameWithType: MacOSWindowComponent.GetClientSize(WindowHandle, out Vector2i) + fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetClientSize(OpenTK.Platform.WindowHandle, out OpenTK.Mathematics.Vector2i) type: Method source: id: GetClientSize path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSWindowComponent.cs - startLine: 1604 + startLine: 1631 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: Get the size of the client area (drawing area) of a window. example: [] syntax: - content: public void GetClientSize(WindowHandle handle, out int width, out int height) + content: public void GetClientSize(WindowHandle handle, out Vector2i clientSize) parameters: - id: handle type: OpenTK.Platform.WindowHandle description: Handle to a window. - - id: width - type: System.Int32 - description: Width of the client area in pixels. - - id: height - type: System.Int32 - description: Height of the client area in pixels. - content.vb: Public Sub GetClientSize(handle As WindowHandle, width As Integer, height As Integer) + - id: clientSize + type: OpenTK.Mathematics.Vector2i + description: Size of the client area in screen coordinates. + content.vb: Public Sub GetClientSize(handle As WindowHandle, clientSize As Vector2i) overload: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetClientSize* - exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: handle is null. implements: - - OpenTK.Platform.IWindowComponent.GetClientSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) - nameWithType.vb: MacOSWindowComponent.GetClientSize(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetClientSize(OpenTK.Platform.WindowHandle, Integer, Integer) - name.vb: GetClientSize(WindowHandle, Integer, Integer) -- uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetClientSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) - commentId: M:OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetClientSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) - id: SetClientSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) + - OpenTK.Platform.IWindowComponent.GetClientSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) + nameWithType.vb: MacOSWindowComponent.GetClientSize(WindowHandle, Vector2i) + fullName.vb: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetClientSize(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2i) + name.vb: GetClientSize(WindowHandle, Vector2i) +- uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetClientSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) + commentId: M:OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetClientSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) + id: SetClientSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) parent: OpenTK.Platform.Native.macOS.MacOSWindowComponent langs: - csharp - vb - name: SetClientSize(WindowHandle, int, int) - nameWithType: MacOSWindowComponent.SetClientSize(WindowHandle, int, int) - fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetClientSize(OpenTK.Platform.WindowHandle, int, int) + name: SetClientSize(WindowHandle, Vector2i) + nameWithType: MacOSWindowComponent.SetClientSize(WindowHandle, Vector2i) + fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetClientSize(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2i) type: Method source: id: SetClientSize path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSWindowComponent.cs - startLine: 1617 + startLine: 1644 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: Set the size of the client area (drawing area) of a window. example: [] syntax: - content: public void SetClientSize(WindowHandle handle, int width, int height) + content: public void SetClientSize(WindowHandle handle, Vector2i newClientSize) parameters: - id: handle type: OpenTK.Platform.WindowHandle description: Handle to a window. - - id: width - type: System.Int32 - description: New width of the client area in pixels. - - id: height - type: System.Int32 - description: New height of the client area in pixels. - content.vb: Public Sub SetClientSize(handle As WindowHandle, width As Integer, height As Integer) + - id: newClientSize + type: OpenTK.Mathematics.Vector2i + description: New size of the client area in screen coordinates. + content.vb: Public Sub SetClientSize(handle As WindowHandle, newClientSize As Vector2i) overload: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetClientSize* - exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: handle is null. implements: - - OpenTK.Platform.IWindowComponent.SetClientSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) - nameWithType.vb: MacOSWindowComponent.SetClientSize(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetClientSize(OpenTK.Platform.WindowHandle, Integer, Integer) - name.vb: SetClientSize(WindowHandle, Integer, Integer) + - OpenTK.Platform.IWindowComponent.SetClientSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) - uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetClientBounds(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) commentId: M:OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetClientBounds(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) id: GetClientBounds(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@,System.Int32@,System.Int32@) @@ -1195,7 +1185,7 @@ items: source: id: GetClientBounds path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSWindowComponent.cs - startLine: 1627 + startLine: 1654 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS @@ -1240,7 +1230,7 @@ items: source: id: SetClientBounds path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSWindowComponent.cs - startLine: 1643 + startLine: 1670 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS @@ -1271,21 +1261,21 @@ items: nameWithType.vb: MacOSWindowComponent.SetClientBounds(WindowHandle, Integer, Integer, Integer, Integer) fullName.vb: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetClientBounds(OpenTK.Platform.WindowHandle, Integer, Integer, Integer, Integer) name.vb: SetClientBounds(WindowHandle, Integer, Integer, Integer, Integer) -- uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) - commentId: M:OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) - id: GetFramebufferSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) +- uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) + commentId: M:OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) + id: GetFramebufferSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) parent: OpenTK.Platform.Native.macOS.MacOSWindowComponent langs: - csharp - vb - name: GetFramebufferSize(WindowHandle, out int, out int) - nameWithType: MacOSWindowComponent.GetFramebufferSize(WindowHandle, out int, out int) - fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle, out int, out int) + name: GetFramebufferSize(WindowHandle, out Vector2i) + nameWithType: MacOSWindowComponent.GetFramebufferSize(WindowHandle, out Vector2i) + fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle, out OpenTK.Mathematics.Vector2i) type: Method source: id: GetFramebufferSize path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSWindowComponent.cs - startLine: 1656 + startLine: 1683 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS @@ -1295,24 +1285,21 @@ items: Use this value when calls to graphics APIs that want pixels, e.g. GL.Viewport(). example: [] syntax: - content: public void GetFramebufferSize(WindowHandle handle, out int width, out int height) + content: public void GetFramebufferSize(WindowHandle handle, out Vector2i framebufferSize) parameters: - id: handle type: OpenTK.Platform.WindowHandle description: Handle to a window. - - id: width - type: System.Int32 - description: Width in pixels of the window framebuffer. - - id: height - type: System.Int32 - description: Height in pixels of the window framebuffer. - content.vb: Public Sub GetFramebufferSize(handle As WindowHandle, width As Integer, height As Integer) + - id: framebufferSize + type: OpenTK.Mathematics.Vector2i + description: Size in pixels of the window framebuffer. + content.vb: Public Sub GetFramebufferSize(handle As WindowHandle, framebufferSize As Vector2i) overload: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetFramebufferSize* implements: - - OpenTK.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) - nameWithType.vb: MacOSWindowComponent.GetFramebufferSize(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle, Integer, Integer) - name.vb: GetFramebufferSize(WindowHandle, Integer, Integer) + - OpenTK.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) + nameWithType.vb: MacOSWindowComponent.GetFramebufferSize(WindowHandle, Vector2i) + fullName.vb: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2i) + name.vb: GetFramebufferSize(WindowHandle, Vector2i) - uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetMaxClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) commentId: M:OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetMaxClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) id: GetMaxClientSize(OpenTK.Platform.WindowHandle,System.Nullable{System.Int32}@,System.Nullable{System.Int32}@) @@ -1327,7 +1314,7 @@ items: source: id: GetMaxClientSize path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSWindowComponent.cs - startLine: 1668 + startLine: 1695 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS @@ -1366,7 +1353,7 @@ items: source: id: SetMaxClientSize path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSWindowComponent.cs - startLine: 1677 + startLine: 1704 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS @@ -1405,7 +1392,7 @@ items: source: id: GetMinClientSize path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSWindowComponent.cs - startLine: 1691 + startLine: 1718 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS @@ -1444,7 +1431,7 @@ items: source: id: SetMinClientSize path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSWindowComponent.cs - startLine: 1700 + startLine: 1727 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS @@ -1483,7 +1470,7 @@ items: source: id: GetDisplay path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSWindowComponent.cs - startLine: 1714 + startLine: 1741 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS @@ -1501,9 +1488,6 @@ items: content.vb: Public Function GetDisplay(handle As WindowHandle) As DisplayHandle overload: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetDisplay* exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: handle is null. - type: OpenTK.Platform.PalNotImplementedException commentId: T:OpenTK.Platform.PalNotImplementedException description: Backend does not support finding the window display. . @@ -1526,7 +1510,7 @@ items: source: id: GetMode path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSWindowComponent.cs - startLine: 1790 + startLine: 1817 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS @@ -1543,10 +1527,6 @@ items: description: The mode of the window. content.vb: Public Function GetMode(handle As WindowHandle) As WindowMode overload: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetMode* - exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: handle is null. implements: - OpenTK.Platform.IWindowComponent.GetMode(OpenTK.Platform.WindowHandle) - uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowMode) @@ -1563,7 +1543,7 @@ items: source: id: SetMode path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSWindowComponent.cs - startLine: 1818 + startLine: 1845 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS @@ -1589,15 +1569,17 @@ items: content.vb: Public Sub SetMode(handle As WindowHandle, mode As WindowMode) overload: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetMode* exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: handle is null. - - type: System.ArgumentOutOfRangeException - commentId: T:System.ArgumentOutOfRangeException + - type: System.ComponentModel.InvalidEnumArgumentException + commentId: T:System.ComponentModel.InvalidEnumArgumentException description: mode is an invalid value. - - type: OpenTK.Platform.PalNotImplementedException - commentId: T:OpenTK.Platform.PalNotImplementedException - description: Driver does not support the value set by mode. See . + - type: System.PlatformNotSupportedException + commentId: T:System.PlatformNotSupportedException + description: Backend does not support the value set by mode. See . + seealso: + - linkId: OpenTK.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle) + commentId: M:OpenTK.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle) + - linkId: OpenTK.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle,OpenTK.Platform.VideoMode) + commentId: M:OpenTK.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle,OpenTK.Platform.VideoMode) implements: - OpenTK.Platform.IWindowComponent.SetMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowMode) - uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetFullscreenDisplayNoSpace(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle) @@ -1614,7 +1596,7 @@ items: source: id: SetFullscreenDisplayNoSpace path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSWindowComponent.cs - startLine: 1945 + startLine: 1972 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS @@ -1651,7 +1633,7 @@ items: source: id: SetFullscreenDisplay path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSWindowComponent.cs - startLine: 1982 + startLine: 2009 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS @@ -1672,6 +1654,9 @@ items: description: The display to make the window fullscreen on. content.vb: Public Sub SetFullscreenDisplay(handle As WindowHandle, display As DisplayHandle) overload: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetFullscreenDisplay* + seealso: + - linkId: OpenTK.Platform.IWindowComponent.SetMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowMode) + commentId: M:OpenTK.Platform.IWindowComponent.SetMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowMode) implements: - OpenTK.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle) nameWithType.vb: MacOSWindowComponent.SetFullscreenDisplay(WindowHandle, DisplayHandle) @@ -1691,7 +1676,7 @@ items: source: id: SetFullscreenDisplay path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSWindowComponent.cs - startLine: 2006 + startLine: 2033 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS @@ -1701,7 +1686,7 @@ items: Only video modes accuired using are expected to work. - remarks: To make an 'windowed fullscreen' window see . + remarks: To make a 'windowed fullscreen' window see . example: [] syntax: content: public void SetFullscreenDisplay(WindowHandle window, DisplayHandle display, VideoMode videoMode) @@ -1716,6 +1701,11 @@ items: description: The video mode to use when making the window fullscreen. content.vb: Public Sub SetFullscreenDisplay(window As WindowHandle, display As DisplayHandle, videoMode As VideoMode) overload: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetFullscreenDisplay* + seealso: + - linkId: OpenTK.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle) + commentId: M:OpenTK.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle) + - linkId: OpenTK.Platform.IWindowComponent.SetMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowMode) + commentId: M:OpenTK.Platform.IWindowComponent.SetMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowMode) implements: - OpenTK.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle,OpenTK.Platform.VideoMode) - uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle@) @@ -1732,7 +1722,7 @@ items: source: id: GetFullscreenDisplay path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSWindowComponent.cs - startLine: 2012 + startLine: 2039 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS @@ -1748,9 +1738,16 @@ items: description: The display where the window is fullscreen or null if the window is not fullscreen. return: type: System.Boolean - description: true if the window was fullscreen, false otherwise. + description: true if the window was fullscreen, false otherwise. content.vb: Public Function GetFullscreenDisplay(window As WindowHandle, display As DisplayHandle) As Boolean overload: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetFullscreenDisplay* + seealso: + - linkId: OpenTK.Platform.IWindowComponent.SetMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowMode) + commentId: M:OpenTK.Platform.IWindowComponent.SetMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowMode) + - linkId: OpenTK.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle) + commentId: M:OpenTK.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle) + - linkId: OpenTK.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle,OpenTK.Platform.VideoMode) + commentId: M:OpenTK.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle,OpenTK.Platform.VideoMode) implements: - OpenTK.Platform.IWindowComponent.GetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle@) nameWithType.vb: MacOSWindowComponent.GetFullscreenDisplay(WindowHandle, DisplayHandle) @@ -1770,7 +1767,7 @@ items: source: id: GetBorderStyle path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSWindowComponent.cs - startLine: 2020 + startLine: 2047 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS @@ -1787,10 +1784,9 @@ items: description: The border style of the window. content.vb: Public Function GetBorderStyle(handle As WindowHandle) As WindowBorderStyle overload: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetBorderStyle* - exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: handle is null. + seealso: + - linkId: OpenTK.Platform.IWindowComponent.SetBorderStyle(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowBorderStyle) + commentId: M:OpenTK.Platform.IWindowComponent.SetBorderStyle(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowBorderStyle) implements: - OpenTK.Platform.IWindowComponent.GetBorderStyle(OpenTK.Platform.WindowHandle) - uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetBorderStyle(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowBorderStyle) @@ -1807,7 +1803,7 @@ items: source: id: SetBorderStyle path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSWindowComponent.cs - startLine: 2046 + startLine: 2073 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS @@ -1825,17 +1821,151 @@ items: content.vb: Public Sub SetBorderStyle(handle As WindowHandle, style As WindowBorderStyle) overload: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetBorderStyle* exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: handle is null. - - type: System.ArgumentOutOfRangeException - commentId: T:System.ArgumentOutOfRangeException + - type: System.ComponentModel.InvalidEnumArgumentException + commentId: T:System.ComponentModel.InvalidEnumArgumentException description: style is an invalid value. - - type: OpenTK.Platform.PalNotImplementedException - commentId: T:OpenTK.Platform.PalNotImplementedException - description: Driver does not support the value set by style. See . + - type: System.PlatformNotSupportedException + commentId: T:System.PlatformNotSupportedException + description: Backend does not support the value set by style. See . implements: - OpenTK.Platform.IWindowComponent.SetBorderStyle(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowBorderStyle) +- uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SupportsFramebufferTransparency(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.Native.macOS.MacOSWindowComponent.SupportsFramebufferTransparency(OpenTK.Platform.WindowHandle) + id: SupportsFramebufferTransparency(OpenTK.Platform.WindowHandle) + parent: OpenTK.Platform.Native.macOS.MacOSWindowComponent + langs: + - csharp + - vb + name: SupportsFramebufferTransparency(WindowHandle) + nameWithType: MacOSWindowComponent.SupportsFramebufferTransparency(WindowHandle) + fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SupportsFramebufferTransparency(OpenTK.Platform.WindowHandle) + type: Method + source: + id: SupportsFramebufferTransparency + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSWindowComponent.cs + startLine: 2123 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform.Native.macOS + summary: >- + Returns true if is supported for this window. + +
Win32Always returns true.
macOSAlways returns true.
Linux/X11Returns true if the selected had true.
+ example: [] + syntax: + content: public bool SupportsFramebufferTransparency(WindowHandle handle) + parameters: + - id: handle + type: OpenTK.Platform.WindowHandle + description: The window to query framebuffer transparency support for. + return: + type: System.Boolean + description: If with would work. + content.vb: Public Function SupportsFramebufferTransparency(handle As WindowHandle) As Boolean + overload: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SupportsFramebufferTransparency* + seealso: + - linkId: OpenTK.Platform.IWindowComponent.SetTransparencyMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowTransparencyMode,System.Single) + commentId: M:OpenTK.Platform.IWindowComponent.SetTransparencyMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowTransparencyMode,System.Single) + - linkId: OpenTK.Platform.OpenGLGraphicsApiHints.SupportTransparentFramebufferX11 + commentId: P:OpenTK.Platform.OpenGLGraphicsApiHints.SupportTransparentFramebufferX11 + - linkId: OpenTK.Platform.ContextValues.SupportsFramebufferTransparency + commentId: F:OpenTK.Platform.ContextValues.SupportsFramebufferTransparency + - linkId: OpenTK.Platform.WindowTransparencyMode + commentId: T:OpenTK.Platform.WindowTransparencyMode + implements: + - OpenTK.Platform.IWindowComponent.SupportsFramebufferTransparency(OpenTK.Platform.WindowHandle) +- uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetTransparencyMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowTransparencyMode,System.Single) + commentId: M:OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetTransparencyMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowTransparencyMode,System.Single) + id: SetTransparencyMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowTransparencyMode,System.Single) + parent: OpenTK.Platform.Native.macOS.MacOSWindowComponent + langs: + - csharp + - vb + name: SetTransparencyMode(WindowHandle, WindowTransparencyMode, float) + nameWithType: MacOSWindowComponent.SetTransparencyMode(WindowHandle, WindowTransparencyMode, float) + fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetTransparencyMode(OpenTK.Platform.WindowHandle, OpenTK.Platform.WindowTransparencyMode, float) + type: Method + source: + id: SetTransparencyMode + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSWindowComponent.cs + startLine: 2130 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform.Native.macOS + summary: Sets the transparency mode of the specified window. + example: [] + syntax: + content: public void SetTransparencyMode(WindowHandle handle, WindowTransparencyMode transparencyMode, float opacity = 0.5) + parameters: + - id: handle + type: OpenTK.Platform.WindowHandle + description: The window to set the transparency mode of. + - id: transparencyMode + type: OpenTK.Platform.WindowTransparencyMode + description: The transparency mode to apply to the window. + - id: opacity + type: System.Single + description: The whole window opacity. Ignored if transparencyMode is not . + content.vb: Public Sub SetTransparencyMode(handle As WindowHandle, transparencyMode As WindowTransparencyMode, opacity As Single = 0.5) + overload: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetTransparencyMode* + seealso: + - linkId: OpenTK.Platform.WindowTransparencyMode + commentId: T:OpenTK.Platform.WindowTransparencyMode + - linkId: OpenTK.Platform.IWindowComponent.SupportsFramebufferTransparency(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.SupportsFramebufferTransparency(OpenTK.Platform.WindowHandle) + - linkId: OpenTK.Platform.IWindowComponent.GetTransparencyMode(OpenTK.Platform.WindowHandle,System.Single@) + commentId: M:OpenTK.Platform.IWindowComponent.GetTransparencyMode(OpenTK.Platform.WindowHandle,System.Single@) + implements: + - OpenTK.Platform.IWindowComponent.SetTransparencyMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowTransparencyMode,System.Single) + nameWithType.vb: MacOSWindowComponent.SetTransparencyMode(WindowHandle, WindowTransparencyMode, Single) + fullName.vb: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetTransparencyMode(OpenTK.Platform.WindowHandle, OpenTK.Platform.WindowTransparencyMode, Single) + name.vb: SetTransparencyMode(WindowHandle, WindowTransparencyMode, Single) +- uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetTransparencyMode(OpenTK.Platform.WindowHandle,System.Single@) + commentId: M:OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetTransparencyMode(OpenTK.Platform.WindowHandle,System.Single@) + id: GetTransparencyMode(OpenTK.Platform.WindowHandle,System.Single@) + parent: OpenTK.Platform.Native.macOS.MacOSWindowComponent + langs: + - csharp + - vb + name: GetTransparencyMode(WindowHandle, out float) + nameWithType: MacOSWindowComponent.GetTransparencyMode(WindowHandle, out float) + fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetTransparencyMode(OpenTK.Platform.WindowHandle, out float) + type: Method + source: + id: GetTransparencyMode + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSWindowComponent.cs + startLine: 2194 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform.Native.macOS + summary: Gets the transparency mode of the specified window. + example: [] + syntax: + content: public WindowTransparencyMode GetTransparencyMode(WindowHandle handle, out float opacity) + parameters: + - id: handle + type: OpenTK.Platform.WindowHandle + description: The window to query the transparency mode of. + - id: opacity + type: System.Single + description: The window opacity if the transparency mode was , 0 otherwise. + return: + type: OpenTK.Platform.WindowTransparencyMode + description: The transparency mode of the specified window. + content.vb: Public Function GetTransparencyMode(handle As WindowHandle, opacity As Single) As WindowTransparencyMode + overload: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetTransparencyMode* + seealso: + - linkId: OpenTK.Platform.WindowTransparencyMode + commentId: T:OpenTK.Platform.WindowTransparencyMode + - linkId: OpenTK.Platform.IWindowComponent.SetTransparencyMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowTransparencyMode,System.Single) + commentId: M:OpenTK.Platform.IWindowComponent.SetTransparencyMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowTransparencyMode,System.Single) + - linkId: OpenTK.Platform.IWindowComponent.SupportsFramebufferTransparency(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.SupportsFramebufferTransparency(OpenTK.Platform.WindowHandle) + implements: + - OpenTK.Platform.IWindowComponent.GetTransparencyMode(OpenTK.Platform.WindowHandle,System.Single@) + nameWithType.vb: MacOSWindowComponent.GetTransparencyMode(WindowHandle, Single) + fullName.vb: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetTransparencyMode(OpenTK.Platform.WindowHandle, Single) + name.vb: GetTransparencyMode(WindowHandle, Single) - uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetAlwaysOnTop(OpenTK.Platform.WindowHandle,System.Boolean) commentId: M:OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetAlwaysOnTop(OpenTK.Platform.WindowHandle,System.Boolean) id: SetAlwaysOnTop(OpenTK.Platform.WindowHandle,System.Boolean) @@ -1850,7 +1980,7 @@ items: source: id: SetAlwaysOnTop path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSWindowComponent.cs - startLine: 2096 + startLine: 2207 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS @@ -1867,6 +1997,9 @@ items: description: Whether the window should be always on top or not. content.vb: Public Sub SetAlwaysOnTop(handle As WindowHandle, floating As Boolean) overload: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetAlwaysOnTop* + seealso: + - linkId: OpenTK.Platform.IWindowComponent.IsAlwaysOnTop(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.IsAlwaysOnTop(OpenTK.Platform.WindowHandle) implements: - OpenTK.Platform.IWindowComponent.SetAlwaysOnTop(OpenTK.Platform.WindowHandle,System.Boolean) nameWithType.vb: MacOSWindowComponent.SetAlwaysOnTop(WindowHandle, Boolean) @@ -1886,7 +2019,7 @@ items: source: id: IsAlwaysOnTop path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSWindowComponent.cs - startLine: 2111 + startLine: 2222 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS @@ -1903,6 +2036,9 @@ items: description: Whether the window is always on top or not. content.vb: Public Function IsAlwaysOnTop(handle As WindowHandle) As Boolean overload: OpenTK.Platform.Native.macOS.MacOSWindowComponent.IsAlwaysOnTop* + seealso: + - linkId: OpenTK.Platform.IWindowComponent.SetAlwaysOnTop(OpenTK.Platform.WindowHandle,System.Boolean) + commentId: M:OpenTK.Platform.IWindowComponent.SetAlwaysOnTop(OpenTK.Platform.WindowHandle,System.Boolean) implements: - OpenTK.Platform.IWindowComponent.IsAlwaysOnTop(OpenTK.Platform.WindowHandle) - uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetHitTestCallback(OpenTK.Platform.WindowHandle,OpenTK.Platform.HitTest) @@ -1919,7 +2055,7 @@ items: source: id: SetHitTestCallback path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSWindowComponent.cs - startLine: 2128 + startLine: 2239 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS @@ -1946,6 +2082,11 @@ items: description: The hit test delegate. content.vb: Public Sub SetHitTestCallback(handle As WindowHandle, test As HitTest) overload: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetHitTestCallback* + seealso: + - linkId: OpenTK.Platform.HitTest + commentId: T:OpenTK.Platform.HitTest + - linkId: OpenTK.Platform.HitType + commentId: T:OpenTK.Platform.HitType implements: - OpenTK.Platform.IWindowComponent.SetHitTestCallback(OpenTK.Platform.WindowHandle,OpenTK.Platform.HitTest) nameWithType.vb: MacOSWindowComponent.SetHitTestCallback(WindowHandle, HitTest) @@ -1965,7 +2106,7 @@ items: source: id: SetCursor path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSWindowComponent.cs - startLine: 2143 + startLine: 2254 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS @@ -1983,11 +2124,8 @@ items: content.vb: Public Sub SetCursor(handle As WindowHandle, cursor As CursorHandle) overload: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetCursor* exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: handle is null. - - type: OpenTK.Platform.PalNotImplementedException - commentId: T:OpenTK.Platform.PalNotImplementedException + - type: System.PlatformNotSupportedException + commentId: T:System.PlatformNotSupportedException description: Backend does not support setting the window mouse cursor. See . seealso: - linkId: OpenTK.Platform.IWindowComponent.CanSetCursor @@ -2011,7 +2149,7 @@ items: source: id: GetCursorCaptureMode path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSWindowComponent.cs - startLine: 2154 + startLine: 2265 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS @@ -2028,6 +2166,11 @@ items: description: The current cursor capture mode. content.vb: Public Function GetCursorCaptureMode(handle As WindowHandle) As CursorCaptureMode overload: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetCursorCaptureMode* + seealso: + - linkId: OpenTK.Platform.IWindowComponent.CanCaptureCursor + commentId: P:OpenTK.Platform.IWindowComponent.CanCaptureCursor + - linkId: OpenTK.Platform.IWindowComponent.SetCursorCaptureMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorCaptureMode) + commentId: M:OpenTK.Platform.IWindowComponent.SetCursorCaptureMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorCaptureMode) implements: - OpenTK.Platform.IWindowComponent.GetCursorCaptureMode(OpenTK.Platform.WindowHandle) - uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetCursorCaptureMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorCaptureMode) @@ -2044,7 +2187,7 @@ items: source: id: SetCursorCaptureMode path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSWindowComponent.cs - startLine: 2161 + startLine: 2272 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS @@ -2067,6 +2210,8 @@ items: seealso: - linkId: OpenTK.Platform.IWindowComponent.CanCaptureCursor commentId: P:OpenTK.Platform.IWindowComponent.CanCaptureCursor + - linkId: OpenTK.Platform.IWindowComponent.SetCursorCaptureMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorCaptureMode) + commentId: M:OpenTK.Platform.IWindowComponent.SetCursorCaptureMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorCaptureMode) implements: - OpenTK.Platform.IWindowComponent.SetCursorCaptureMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.CursorCaptureMode) - uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.IsFocused(OpenTK.Platform.WindowHandle) @@ -2083,7 +2228,7 @@ items: source: id: IsFocused path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSWindowComponent.cs - startLine: 2242 + startLine: 2353 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS @@ -2100,6 +2245,11 @@ items: description: If the window has input focus. content.vb: Public Function IsFocused(handle As WindowHandle) As Boolean overload: OpenTK.Platform.Native.macOS.MacOSWindowComponent.IsFocused* + seealso: + - linkId: OpenTK.Platform.IWindowComponent.FocusWindow(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.FocusWindow(OpenTK.Platform.WindowHandle) + - linkId: OpenTK.Platform.IWindowComponent.RequestAttention(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.RequestAttention(OpenTK.Platform.WindowHandle) implements: - OpenTK.Platform.IWindowComponent.IsFocused(OpenTK.Platform.WindowHandle) - uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.FocusWindow(OpenTK.Platform.WindowHandle) @@ -2116,7 +2266,7 @@ items: source: id: FocusWindow path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSWindowComponent.cs - startLine: 2251 + startLine: 2362 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS @@ -2130,6 +2280,11 @@ items: description: Handle to the window to focus. content.vb: Public Sub FocusWindow(handle As WindowHandle) overload: OpenTK.Platform.Native.macOS.MacOSWindowComponent.FocusWindow* + seealso: + - linkId: OpenTK.Platform.IWindowComponent.IsFocused(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.IsFocused(OpenTK.Platform.WindowHandle) + - linkId: OpenTK.Platform.IWindowComponent.RequestAttention(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.RequestAttention(OpenTK.Platform.WindowHandle) implements: - OpenTK.Platform.IWindowComponent.FocusWindow(OpenTK.Platform.WindowHandle) - uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.RequestAttention(OpenTK.Platform.WindowHandle) @@ -2146,11 +2301,14 @@ items: source: id: RequestAttention path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSWindowComponent.cs - startLine: 2259 + startLine: 2370 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS - summary: Requests that the user pay attention to the window. + summary: >- + Requests that the user pay attention to the window. + + Usually by flashing the window icon. example: [] syntax: content: public void RequestAttention(WindowHandle handle) @@ -2160,98 +2318,203 @@ items: description: A handle to the window that requests attention. content.vb: Public Sub RequestAttention(handle As WindowHandle) overload: OpenTK.Platform.Native.macOS.MacOSWindowComponent.RequestAttention* + seealso: + - linkId: OpenTK.Platform.IWindowComponent.FocusWindow(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.FocusWindow(OpenTK.Platform.WindowHandle) implements: - OpenTK.Platform.IWindowComponent.RequestAttention(OpenTK.Platform.WindowHandle) -- uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) - commentId: M:OpenTK.Platform.Native.macOS.MacOSWindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) - id: ScreenToClient(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) +- uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + commentId: M:OpenTK.Platform.Native.macOS.MacOSWindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + id: ScreenToClient(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) parent: OpenTK.Platform.Native.macOS.MacOSWindowComponent langs: - csharp - vb - name: ScreenToClient(WindowHandle, int, int, out int, out int) - nameWithType: MacOSWindowComponent.ScreenToClient(WindowHandle, int, int, out int, out int) - fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle, int, int, out int, out int) + name: ScreenToClient(WindowHandle, Vector2, out Vector2) + nameWithType: MacOSWindowComponent.ScreenToClient(WindowHandle, Vector2, out Vector2) + fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2, out OpenTK.Mathematics.Vector2) type: Method source: id: ScreenToClient path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSWindowComponent.cs - startLine: 2280 + startLine: 2391 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: Converts screen coordinates to window relative coordinates. + remarks: >- + On platforms that support non-integer screen and client space coordinates (macOS) this function will return full precision results, + + on integer based platforms (win32 and X11) the input coordinates will (if necessary) be truncated to ints before conversion. example: [] syntax: - content: public void ScreenToClient(WindowHandle handle, int x, int y, out int clientX, out int clientY) + content: public void ScreenToClient(WindowHandle handle, Vector2 screen, out Vector2 client) parameters: - id: handle type: OpenTK.Platform.WindowHandle description: The window handle. - - id: x - type: System.Int32 - description: The screen x coordinate. - - id: y - type: System.Int32 - description: The screen y coordinate. - - id: clientX - type: System.Int32 - description: The client x coordinate. - - id: clientY - type: System.Int32 - description: The client y coordinate. - content.vb: Public Sub ScreenToClient(handle As WindowHandle, x As Integer, y As Integer, clientX As Integer, clientY As Integer) + - id: screen + type: OpenTK.Mathematics.Vector2 + description: The screen coordinate. + - id: client + type: OpenTK.Mathematics.Vector2 + description: The client coordinate. + content.vb: Public Sub ScreenToClient(handle As WindowHandle, screen As Vector2, client As Vector2) overload: OpenTK.Platform.Native.macOS.MacOSWindowComponent.ScreenToClient* + seealso: + - linkId: OpenTK.Platform.IWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + commentId: M:OpenTK.Platform.IWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + - linkId: OpenTK.Platform.IWindowComponent.ClientToFramebuffer(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + commentId: M:OpenTK.Platform.IWindowComponent.ClientToFramebuffer(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) implements: - - OpenTK.Platform.IWindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) - nameWithType.vb: MacOSWindowComponent.ScreenToClient(WindowHandle, Integer, Integer, Integer, Integer) - fullName.vb: OpenTK.Platform.Native.macOS.MacOSWindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle, Integer, Integer, Integer, Integer) - name.vb: ScreenToClient(WindowHandle, Integer, Integer, Integer, Integer) -- uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) - commentId: M:OpenTK.Platform.Native.macOS.MacOSWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) - id: ClientToScreen(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) + - OpenTK.Platform.IWindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + nameWithType.vb: MacOSWindowComponent.ScreenToClient(WindowHandle, Vector2, Vector2) + fullName.vb: OpenTK.Platform.Native.macOS.MacOSWindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2, OpenTK.Mathematics.Vector2) + name.vb: ScreenToClient(WindowHandle, Vector2, Vector2) +- uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + commentId: M:OpenTK.Platform.Native.macOS.MacOSWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + id: ClientToScreen(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) parent: OpenTK.Platform.Native.macOS.MacOSWindowComponent langs: - csharp - vb - name: ClientToScreen(WindowHandle, int, int, out int, out int) - nameWithType: MacOSWindowComponent.ClientToScreen(WindowHandle, int, int, out int, out int) - fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle, int, int, out int, out int) + name: ClientToScreen(WindowHandle, Vector2, out Vector2) + nameWithType: MacOSWindowComponent.ClientToScreen(WindowHandle, Vector2, out Vector2) + fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2, out OpenTK.Mathematics.Vector2) type: Method source: id: ClientToScreen path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSWindowComponent.cs - startLine: 2291 + startLine: 2402 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS summary: Converts window relative coordinates to screen coordinates. + remarks: >- + On platforms that support non-integer screen and client space coordinates (macOS) this function will return full precision results, + + on integer based platforms (win32 and X11) the input coordinates will (if necessary) be truncated to ints before conversion. example: [] syntax: - content: public void ClientToScreen(WindowHandle handle, int clientX, int clientY, out int x, out int y) + content: public void ClientToScreen(WindowHandle handle, Vector2 client, out Vector2 screen) parameters: - id: handle type: OpenTK.Platform.WindowHandle description: The window handle. - - id: clientX - type: System.Int32 - description: The client x coordinate. - - id: clientY - type: System.Int32 - description: The client y coordinate. - - id: x - type: System.Int32 - description: The screen x coordinate. - - id: y - type: System.Int32 - description: The screen y coordinate. - content.vb: Public Sub ClientToScreen(handle As WindowHandle, clientX As Integer, clientY As Integer, x As Integer, y As Integer) + - id: client + type: OpenTK.Mathematics.Vector2 + description: The client coordinate. + - id: screen + type: OpenTK.Mathematics.Vector2 + description: The screen coordinate. + content.vb: Public Sub ClientToScreen(handle As WindowHandle, client As Vector2, screen As Vector2) overload: OpenTK.Platform.Native.macOS.MacOSWindowComponent.ClientToScreen* + seealso: + - linkId: OpenTK.Platform.IWindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + commentId: M:OpenTK.Platform.IWindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + - linkId: OpenTK.Platform.IWindowComponent.ClientToFramebuffer(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + commentId: M:OpenTK.Platform.IWindowComponent.ClientToFramebuffer(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + implements: + - OpenTK.Platform.IWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + nameWithType.vb: MacOSWindowComponent.ClientToScreen(WindowHandle, Vector2, Vector2) + fullName.vb: OpenTK.Platform.Native.macOS.MacOSWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2, OpenTK.Mathematics.Vector2) + name.vb: ClientToScreen(WindowHandle, Vector2, Vector2) +- uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.ClientToFramebuffer(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + commentId: M:OpenTK.Platform.Native.macOS.MacOSWindowComponent.ClientToFramebuffer(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + id: ClientToFramebuffer(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + parent: OpenTK.Platform.Native.macOS.MacOSWindowComponent + langs: + - csharp + - vb + name: ClientToFramebuffer(WindowHandle, Vector2, out Vector2) + nameWithType: MacOSWindowComponent.ClientToFramebuffer(WindowHandle, Vector2, out Vector2) + fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.ClientToFramebuffer(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2, out OpenTK.Mathematics.Vector2) + type: Method + source: + id: ClientToFramebuffer + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSWindowComponent.cs + startLine: 2413 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform.Native.macOS + summary: Converts window relative coordinates to framebuffer coordinates. + remarks: >- + On platforms that support non-integer screen and client space coordinates (macOS) this function will return full precision results, + + on integer based platforms (win32 and X11) the input coordinates will (if necessary) be truncated to ints before conversion. + example: [] + syntax: + content: public void ClientToFramebuffer(WindowHandle handle, Vector2 client, out Vector2 framebuffer) + parameters: + - id: handle + type: OpenTK.Platform.WindowHandle + description: Handle of the window whose coordinate system to use. + - id: client + type: OpenTK.Mathematics.Vector2 + description: The client coordinate. + - id: framebuffer + type: OpenTK.Mathematics.Vector2 + description: The framebuffer coordinate. + content.vb: Public Sub ClientToFramebuffer(handle As WindowHandle, client As Vector2, framebuffer As Vector2) + overload: OpenTK.Platform.Native.macOS.MacOSWindowComponent.ClientToFramebuffer* + seealso: + - linkId: OpenTK.Platform.IWindowComponent.FramebufferToClient(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + commentId: M:OpenTK.Platform.IWindowComponent.FramebufferToClient(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + - linkId: OpenTK.Platform.IWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + commentId: M:OpenTK.Platform.IWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + implements: + - OpenTK.Platform.IWindowComponent.ClientToFramebuffer(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + nameWithType.vb: MacOSWindowComponent.ClientToFramebuffer(WindowHandle, Vector2, Vector2) + fullName.vb: OpenTK.Platform.Native.macOS.MacOSWindowComponent.ClientToFramebuffer(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2, OpenTK.Mathematics.Vector2) + name.vb: ClientToFramebuffer(WindowHandle, Vector2, Vector2) +- uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.FramebufferToClient(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + commentId: M:OpenTK.Platform.Native.macOS.MacOSWindowComponent.FramebufferToClient(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + id: FramebufferToClient(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + parent: OpenTK.Platform.Native.macOS.MacOSWindowComponent + langs: + - csharp + - vb + name: FramebufferToClient(WindowHandle, Vector2, out Vector2) + nameWithType: MacOSWindowComponent.FramebufferToClient(WindowHandle, Vector2, out Vector2) + fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.FramebufferToClient(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2, out OpenTK.Mathematics.Vector2) + type: Method + source: + id: FramebufferToClient + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSWindowComponent.cs + startLine: 2424 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform.Native.macOS + summary: Converts framebuffer coordinates to framebuffer coordinates. + remarks: >- + On platforms that support non-integer screen and client space coordinates (macOS) this function will return full precision results, + + on integer based platforms (win32 and X11) the input coordinates will (if necessary) be truncated to ints before conversion. + example: [] + syntax: + content: public void FramebufferToClient(WindowHandle handle, Vector2 framebuffer, out Vector2 client) + parameters: + - id: handle + type: OpenTK.Platform.WindowHandle + description: Handle of the window whose coordinate system to use. + - id: framebuffer + type: OpenTK.Mathematics.Vector2 + description: The framebuffer coordinate. + - id: client + type: OpenTK.Mathematics.Vector2 + description: The client coordinate. + content.vb: Public Sub FramebufferToClient(handle As WindowHandle, framebuffer As Vector2, client As Vector2) + overload: OpenTK.Platform.Native.macOS.MacOSWindowComponent.FramebufferToClient* + seealso: + - linkId: OpenTK.Platform.IWindowComponent.ClientToFramebuffer(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + commentId: M:OpenTK.Platform.IWindowComponent.ClientToFramebuffer(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + - linkId: OpenTK.Platform.IWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + commentId: M:OpenTK.Platform.IWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) implements: - - OpenTK.Platform.IWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) - nameWithType.vb: MacOSWindowComponent.ClientToScreen(WindowHandle, Integer, Integer, Integer, Integer) - fullName.vb: OpenTK.Platform.Native.macOS.MacOSWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle, Integer, Integer, Integer, Integer) - name.vb: ClientToScreen(WindowHandle, Integer, Integer, Integer, Integer) + - OpenTK.Platform.IWindowComponent.FramebufferToClient(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + nameWithType.vb: MacOSWindowComponent.FramebufferToClient(WindowHandle, Vector2, Vector2) + fullName.vb: OpenTK.Platform.Native.macOS.MacOSWindowComponent.FramebufferToClient(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2, OpenTK.Mathematics.Vector2) + name.vb: FramebufferToClient(WindowHandle, Vector2, Vector2) - uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetScaleFactor(OpenTK.Platform.WindowHandle,System.Single@,System.Single@) commentId: M:OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetScaleFactor(OpenTK.Platform.WindowHandle,System.Single@,System.Single@) id: GetScaleFactor(OpenTK.Platform.WindowHandle,System.Single@,System.Single@) @@ -2266,7 +2529,7 @@ items: source: id: GetScaleFactor path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSWindowComponent.cs - startLine: 2302 + startLine: 2435 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS @@ -2308,7 +2571,7 @@ items: source: id: GetNSWindow path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSWindowComponent.cs - startLine: 2319 + startLine: 2452 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS @@ -2342,7 +2605,7 @@ items: source: id: GetNSView path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Native\macOS\MacOSWindowComponent.cs - startLine: 2332 + startLine: 2465 assemblies: - OpenTK.Platform namespace: OpenTK.Platform.Native.macOS @@ -2718,6 +2981,19 @@ references: name: PalComponents nameWithType: PalComponents fullName: OpenTK.Platform.PalComponents +- uid: OpenTK.Core.Utility.ILogger + commentId: T:OpenTK.Core.Utility.ILogger + parent: OpenTK.Core.Utility + href: OpenTK.Core.Utility.ILogger.html + name: ILogger + nameWithType: ILogger + fullName: OpenTK.Core.Utility.ILogger +- uid: OpenTK.Platform.ToolkitOptions.Logger + commentId: P:OpenTK.Platform.ToolkitOptions.Logger + href: OpenTK.Platform.ToolkitOptions.html#OpenTK_Platform_ToolkitOptions_Logger + name: Logger + nameWithType: ToolkitOptions.Logger + fullName: OpenTK.Platform.ToolkitOptions.Logger - uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.Logger* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSWindowComponent.Logger href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_Logger @@ -2731,13 +3007,6 @@ references: name: Logger nameWithType: IPalComponent.Logger fullName: OpenTK.Platform.IPalComponent.Logger -- uid: OpenTK.Core.Utility.ILogger - commentId: T:OpenTK.Core.Utility.ILogger - parent: OpenTK.Core.Utility - href: OpenTK.Core.Utility.ILogger.html - name: ILogger - nameWithType: ILogger - fullName: OpenTK.Core.Utility.ILogger - uid: OpenTK.Core.Utility commentId: N:OpenTK.Core.Utility href: OpenTK.html @@ -2768,13 +3037,44 @@ references: - uid: OpenTK.Core.Utility name: Utility href: OpenTK.Core.Utility.html -- uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.Initialize* - commentId: Overload:OpenTK.Platform.Native.macOS.MacOSWindowComponent.Initialize - href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_Initialize_OpenTK_Platform_ToolkitOptions_ - name: Initialize - nameWithType: MacOSWindowComponent.Initialize - fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.Initialize -- uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) +- uid: OpenTK.Platform.ToolkitOptions + commentId: T:OpenTK.Platform.ToolkitOptions + parent: OpenTK.Platform + href: OpenTK.Platform.ToolkitOptions.html + name: ToolkitOptions + nameWithType: ToolkitOptions + fullName: OpenTK.Platform.ToolkitOptions +- uid: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Init_OpenTK_Platform_ToolkitOptions_ + name: Init(ToolkitOptions) + nameWithType: Toolkit.Init(ToolkitOptions) + fullName: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + spec.csharp: + - uid: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + name: Init + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Init_OpenTK_Platform_ToolkitOptions_ + - name: ( + - uid: OpenTK.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Platform.ToolkitOptions.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + name: Init + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Init_OpenTK_Platform_ToolkitOptions_ + - name: ( + - uid: OpenTK.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Platform.ToolkitOptions.html + - name: ) +- uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.Initialize* + commentId: Overload:OpenTK.Platform.Native.macOS.MacOSWindowComponent.Initialize + href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_Initialize_OpenTK_Platform_ToolkitOptions_ + name: Initialize + nameWithType: MacOSWindowComponent.Initialize + fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.Initialize +- uid: OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) commentId: M:OpenTK.Platform.IPalComponent.Initialize(OpenTK.Platform.ToolkitOptions) parent: OpenTK.Platform.IPalComponent href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Initialize_OpenTK_Platform_ToolkitOptions_ @@ -2799,13 +3099,49 @@ references: name: ToolkitOptions href: OpenTK.Platform.ToolkitOptions.html - name: ) -- uid: OpenTK.Platform.ToolkitOptions - commentId: T:OpenTK.Platform.ToolkitOptions - parent: OpenTK.Platform - href: OpenTK.Platform.ToolkitOptions.html - name: ToolkitOptions - nameWithType: ToolkitOptions - fullName: OpenTK.Platform.ToolkitOptions +- uid: OpenTK.Platform.Toolkit.Uninit + commentId: M:OpenTK.Platform.Toolkit.Uninit + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Uninit + name: Uninit() + nameWithType: Toolkit.Uninit() + fullName: OpenTK.Platform.Toolkit.Uninit() + spec.csharp: + - uid: OpenTK.Platform.Toolkit.Uninit + name: Uninit + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Uninit + - name: ( + - name: ) + spec.vb: + - uid: OpenTK.Platform.Toolkit.Uninit + name: Uninit + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Uninit + - name: ( + - name: ) +- uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.Uninitialize* + commentId: Overload:OpenTK.Platform.Native.macOS.MacOSWindowComponent.Uninitialize + href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_Uninitialize + name: Uninitialize + nameWithType: MacOSWindowComponent.Uninitialize + fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.Uninitialize +- uid: OpenTK.Platform.IPalComponent.Uninitialize + commentId: M:OpenTK.Platform.IPalComponent.Uninitialize + parent: OpenTK.Platform.IPalComponent + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + name: Uninitialize() + nameWithType: IPalComponent.Uninitialize() + fullName: OpenTK.Platform.IPalComponent.Uninitialize() + spec.csharp: + - uid: OpenTK.Platform.IPalComponent.Uninitialize + name: Uninitialize + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + - name: ( + - name: ) + spec.vb: + - uid: OpenTK.Platform.IPalComponent.Uninitialize + name: Uninitialize + href: OpenTK.Platform.IPalComponent.html#OpenTK_Platform_IPalComponent_Uninitialize + - name: ( + - name: ) - uid: OpenTK.Platform.IWindowComponent.SetIcon(OpenTK.Platform.WindowHandle,OpenTK.Platform.IconHandle) commentId: M:OpenTK.Platform.IWindowComponent.SetIcon(OpenTK.Platform.WindowHandle,OpenTK.Platform.IconHandle) parent: OpenTK.Platform.IWindowComponent @@ -2841,6 +3177,31 @@ references: name: IconHandle href: OpenTK.Platform.IconHandle.html - name: ) +- uid: OpenTK.Platform.IWindowComponent.GetIcon(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.GetIcon(OpenTK.Platform.WindowHandle) + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetIcon_OpenTK_Platform_WindowHandle_ + name: GetIcon(WindowHandle) + nameWithType: IWindowComponent.GetIcon(WindowHandle) + fullName: OpenTK.Platform.IWindowComponent.GetIcon(OpenTK.Platform.WindowHandle) + spec.csharp: + - uid: OpenTK.Platform.IWindowComponent.GetIcon(OpenTK.Platform.WindowHandle) + name: GetIcon + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetIcon_OpenTK_Platform_WindowHandle_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IWindowComponent.GetIcon(OpenTK.Platform.WindowHandle) + name: GetIcon + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetIcon_OpenTK_Platform_WindowHandle_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ) - uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.CanSetIcon* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSWindowComponent.CanSetIcon href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_CanSetIcon @@ -3246,6 +3607,31 @@ references: isExternal: true href: https://learn.microsoft.com/dotnet/api/system.boolean - name: ) +- uid: OpenTK.Platform.IWindowComponent.Destroy(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.Destroy(OpenTK.Platform.WindowHandle) + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_Destroy_OpenTK_Platform_WindowHandle_ + name: Destroy(WindowHandle) + nameWithType: IWindowComponent.Destroy(WindowHandle) + fullName: OpenTK.Platform.IWindowComponent.Destroy(OpenTK.Platform.WindowHandle) + spec.csharp: + - uid: OpenTK.Platform.IWindowComponent.Destroy(OpenTK.Platform.WindowHandle) + name: Destroy + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_Destroy_OpenTK_Platform_WindowHandle_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IWindowComponent.Destroy(OpenTK.Platform.WindowHandle) + name: Destroy + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_Destroy_OpenTK_Platform_WindowHandle_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ) - uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.Create* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSWindowComponent.Create href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_Create_OpenTK_Platform_GraphicsApiHints_ @@ -3316,87 +3702,18 @@ references: name: WindowHandle href: OpenTK.Platform.WindowHandle.html - name: ) -- uid: System.ArgumentNullException - commentId: T:System.ArgumentNullException - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.argumentnullexception - name: ArgumentNullException - nameWithType: ArgumentNullException - fullName: System.ArgumentNullException - uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.Destroy* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSWindowComponent.Destroy href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_Destroy_OpenTK_Platform_WindowHandle_ name: Destroy nameWithType: MacOSWindowComponent.Destroy fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.Destroy -- uid: OpenTK.Platform.IWindowComponent.Destroy(OpenTK.Platform.WindowHandle) - commentId: M:OpenTK.Platform.IWindowComponent.Destroy(OpenTK.Platform.WindowHandle) - parent: OpenTK.Platform.IWindowComponent - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_Destroy_OpenTK_Platform_WindowHandle_ - name: Destroy(WindowHandle) - nameWithType: IWindowComponent.Destroy(WindowHandle) - fullName: OpenTK.Platform.IWindowComponent.Destroy(OpenTK.Platform.WindowHandle) - spec.csharp: - - uid: OpenTK.Platform.IWindowComponent.Destroy(OpenTK.Platform.WindowHandle) - name: Destroy - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_Destroy_OpenTK_Platform_WindowHandle_ - - name: ( - - uid: OpenTK.Platform.WindowHandle - name: WindowHandle - href: OpenTK.Platform.WindowHandle.html - - name: ) - spec.vb: - - uid: OpenTK.Platform.IWindowComponent.Destroy(OpenTK.Platform.WindowHandle) - name: Destroy - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_Destroy_OpenTK_Platform_WindowHandle_ - - name: ( - - uid: OpenTK.Platform.WindowHandle - name: WindowHandle - href: OpenTK.Platform.WindowHandle.html - - name: ) - uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.IsWindowDestroyed* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSWindowComponent.IsWindowDestroyed href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_IsWindowDestroyed_OpenTK_Platform_WindowHandle_ name: IsWindowDestroyed nameWithType: MacOSWindowComponent.IsWindowDestroyed fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.IsWindowDestroyed -- uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetTitle* - commentId: Overload:OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetTitle - href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_GetTitle_OpenTK_Platform_WindowHandle_ - name: GetTitle - nameWithType: MacOSWindowComponent.GetTitle - fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetTitle -- uid: OpenTK.Platform.IWindowComponent.GetTitle(OpenTK.Platform.WindowHandle) - commentId: M:OpenTK.Platform.IWindowComponent.GetTitle(OpenTK.Platform.WindowHandle) - parent: OpenTK.Platform.IWindowComponent - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetTitle_OpenTK_Platform_WindowHandle_ - name: GetTitle(WindowHandle) - nameWithType: IWindowComponent.GetTitle(WindowHandle) - fullName: OpenTK.Platform.IWindowComponent.GetTitle(OpenTK.Platform.WindowHandle) - spec.csharp: - - uid: OpenTK.Platform.IWindowComponent.GetTitle(OpenTK.Platform.WindowHandle) - name: GetTitle - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetTitle_OpenTK_Platform_WindowHandle_ - - name: ( - - uid: OpenTK.Platform.WindowHandle - name: WindowHandle - href: OpenTK.Platform.WindowHandle.html - - name: ) - spec.vb: - - uid: OpenTK.Platform.IWindowComponent.GetTitle(OpenTK.Platform.WindowHandle) - name: GetTitle - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetTitle_OpenTK_Platform_WindowHandle_ - - name: ( - - uid: OpenTK.Platform.WindowHandle - name: WindowHandle - href: OpenTK.Platform.WindowHandle.html - - name: ) -- uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetTitle* - commentId: Overload:OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetTitle - href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_SetTitle_OpenTK_Platform_WindowHandle_System_String_ - name: SetTitle - nameWithType: MacOSWindowComponent.SetTitle - fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetTitle - uid: OpenTK.Platform.IWindowComponent.SetTitle(OpenTK.Platform.WindowHandle,System.String) commentId: M:OpenTK.Platform.IWindowComponent.SetTitle(OpenTK.Platform.WindowHandle,System.String) parent: OpenTK.Platform.IWindowComponent @@ -3438,43 +3755,56 @@ references: isExternal: true href: https://learn.microsoft.com/dotnet/api/system.string - name: ) -- uid: OpenTK.Platform.PalNotImplementedException - commentId: T:OpenTK.Platform.PalNotImplementedException - href: OpenTK.Platform.PalNotImplementedException.html - name: PalNotImplementedException - nameWithType: PalNotImplementedException - fullName: OpenTK.Platform.PalNotImplementedException -- uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetIcon* - commentId: Overload:OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetIcon - href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_GetIcon_OpenTK_Platform_WindowHandle_ - name: GetIcon - nameWithType: MacOSWindowComponent.GetIcon - fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetIcon -- uid: OpenTK.Platform.IWindowComponent.GetIcon(OpenTK.Platform.WindowHandle) - commentId: M:OpenTK.Platform.IWindowComponent.GetIcon(OpenTK.Platform.WindowHandle) +- uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetTitle* + commentId: Overload:OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetTitle + href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_GetTitle_OpenTK_Platform_WindowHandle_ + name: GetTitle + nameWithType: MacOSWindowComponent.GetTitle + fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetTitle +- uid: OpenTK.Platform.IWindowComponent.GetTitle(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.GetTitle(OpenTK.Platform.WindowHandle) parent: OpenTK.Platform.IWindowComponent - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetIcon_OpenTK_Platform_WindowHandle_ - name: GetIcon(WindowHandle) - nameWithType: IWindowComponent.GetIcon(WindowHandle) - fullName: OpenTK.Platform.IWindowComponent.GetIcon(OpenTK.Platform.WindowHandle) + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetTitle_OpenTK_Platform_WindowHandle_ + name: GetTitle(WindowHandle) + nameWithType: IWindowComponent.GetTitle(WindowHandle) + fullName: OpenTK.Platform.IWindowComponent.GetTitle(OpenTK.Platform.WindowHandle) spec.csharp: - - uid: OpenTK.Platform.IWindowComponent.GetIcon(OpenTK.Platform.WindowHandle) - name: GetIcon - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetIcon_OpenTK_Platform_WindowHandle_ + - uid: OpenTK.Platform.IWindowComponent.GetTitle(OpenTK.Platform.WindowHandle) + name: GetTitle + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetTitle_OpenTK_Platform_WindowHandle_ - name: ( - uid: OpenTK.Platform.WindowHandle name: WindowHandle href: OpenTK.Platform.WindowHandle.html - name: ) spec.vb: - - uid: OpenTK.Platform.IWindowComponent.GetIcon(OpenTK.Platform.WindowHandle) - name: GetIcon - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetIcon_OpenTK_Platform_WindowHandle_ + - uid: OpenTK.Platform.IWindowComponent.GetTitle(OpenTK.Platform.WindowHandle) + name: GetTitle + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetTitle_OpenTK_Platform_WindowHandle_ - name: ( - uid: OpenTK.Platform.WindowHandle name: WindowHandle href: OpenTK.Platform.WindowHandle.html - name: ) +- uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetTitle* + commentId: Overload:OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetTitle + href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_SetTitle_OpenTK_Platform_WindowHandle_System_String_ + name: SetTitle + nameWithType: MacOSWindowComponent.SetTitle + fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetTitle +- uid: System.PlatformNotSupportedException + commentId: T:System.PlatformNotSupportedException + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.platformnotsupportedexception + name: PlatformNotSupportedException + nameWithType: PlatformNotSupportedException + fullName: System.PlatformNotSupportedException +- uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetIcon* + commentId: Overload:OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetIcon + href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_GetIcon_OpenTK_Platform_WindowHandle_ + name: GetIcon + nameWithType: MacOSWindowComponent.GetIcon + fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetIcon - uid: OpenTK.Platform.IconHandle commentId: T:OpenTK.Platform.IconHandle parent: OpenTK.Platform @@ -3494,27 +3824,61 @@ references: name: SetDockIcon nameWithType: MacOSWindowComponent.SetDockIcon fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetDockIcon +- uid: OpenTK.Platform.IWindowComponent.SetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) + commentId: M:OpenTK.Platform.IWindowComponent.SetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetPosition_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2i_ + name: SetPosition(WindowHandle, Vector2i) + nameWithType: IWindowComponent.SetPosition(WindowHandle, Vector2i) + fullName: OpenTK.Platform.IWindowComponent.SetPosition(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2i) + spec.csharp: + - uid: OpenTK.Platform.IWindowComponent.SetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) + name: SetPosition + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetPosition_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2i_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: OpenTK.Mathematics.Vector2i + name: Vector2i + href: OpenTK.Mathematics.Vector2i.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IWindowComponent.SetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) + name: SetPosition + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetPosition_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2i_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: OpenTK.Mathematics.Vector2i + name: Vector2i + href: OpenTK.Mathematics.Vector2i.html + - name: ) - uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetPosition* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetPosition - href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_GetPosition_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_GetPosition_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2i__ name: GetPosition nameWithType: MacOSWindowComponent.GetPosition fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetPosition -- uid: OpenTK.Platform.IWindowComponent.GetPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) - commentId: M:OpenTK.Platform.IWindowComponent.GetPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) +- uid: OpenTK.Platform.IWindowComponent.GetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) + commentId: M:OpenTK.Platform.IWindowComponent.GetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) parent: OpenTK.Platform.IWindowComponent - isExternal: true - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetPosition_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ - name: GetPosition(WindowHandle, out int, out int) - nameWithType: IWindowComponent.GetPosition(WindowHandle, out int, out int) - fullName: OpenTK.Platform.IWindowComponent.GetPosition(OpenTK.Platform.WindowHandle, out int, out int) - nameWithType.vb: IWindowComponent.GetPosition(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Platform.IWindowComponent.GetPosition(OpenTK.Platform.WindowHandle, Integer, Integer) - name.vb: GetPosition(WindowHandle, Integer, Integer) + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetPosition_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2i__ + name: GetPosition(WindowHandle, out Vector2i) + nameWithType: IWindowComponent.GetPosition(WindowHandle, out Vector2i) + fullName: OpenTK.Platform.IWindowComponent.GetPosition(OpenTK.Platform.WindowHandle, out OpenTK.Mathematics.Vector2i) + nameWithType.vb: IWindowComponent.GetPosition(WindowHandle, Vector2i) + fullName.vb: OpenTK.Platform.IWindowComponent.GetPosition(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2i) + name.vb: GetPosition(WindowHandle, Vector2i) spec.csharp: - - uid: OpenTK.Platform.IWindowComponent.GetPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + - uid: OpenTK.Platform.IWindowComponent.GetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) name: GetPosition - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetPosition_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetPosition_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2i__ - name: ( - uid: OpenTK.Platform.WindowHandle name: WindowHandle @@ -3523,131 +3887,79 @@ references: - name: " " - name: out - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - name: out - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 + - uid: OpenTK.Mathematics.Vector2i + name: Vector2i + href: OpenTK.Mathematics.Vector2i.html - name: ) spec.vb: - - uid: OpenTK.Platform.IWindowComponent.GetPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + - uid: OpenTK.Platform.IWindowComponent.GetPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) name: GetPosition - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetPosition_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetPosition_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2i__ - name: ( - uid: OpenTK.Platform.WindowHandle name: WindowHandle href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 + - uid: OpenTK.Mathematics.Vector2i + name: Vector2i + href: OpenTK.Mathematics.Vector2i.html - name: ) -- uid: System.Int32 - commentId: T:System.Int32 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - name: int - nameWithType: int - fullName: int - nameWithType.vb: Integer - fullName.vb: Integer - name.vb: Integer +- uid: OpenTK.Mathematics.Vector2i + commentId: T:OpenTK.Mathematics.Vector2i + parent: OpenTK.Mathematics + href: OpenTK.Mathematics.Vector2i.html + name: Vector2i + nameWithType: Vector2i + fullName: OpenTK.Mathematics.Vector2i +- uid: OpenTK.Mathematics + commentId: N:OpenTK.Mathematics + href: OpenTK.html + name: OpenTK.Mathematics + nameWithType: OpenTK.Mathematics + fullName: OpenTK.Mathematics + spec.csharp: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Mathematics + name: Mathematics + href: OpenTK.Mathematics.html + spec.vb: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Mathematics + name: Mathematics + href: OpenTK.Mathematics.html - uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetPosition* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetPosition - href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_SetPosition_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_ + href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_SetPosition_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2i_ name: SetPosition nameWithType: MacOSWindowComponent.SetPosition fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetPosition -- uid: OpenTK.Platform.IWindowComponent.SetPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) - commentId: M:OpenTK.Platform.IWindowComponent.SetPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) - parent: OpenTK.Platform.IWindowComponent - isExternal: true - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetPosition_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_ - name: SetPosition(WindowHandle, int, int) - nameWithType: IWindowComponent.SetPosition(WindowHandle, int, int) - fullName: OpenTK.Platform.IWindowComponent.SetPosition(OpenTK.Platform.WindowHandle, int, int) - nameWithType.vb: IWindowComponent.SetPosition(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Platform.IWindowComponent.SetPosition(OpenTK.Platform.WindowHandle, Integer, Integer) - name.vb: SetPosition(WindowHandle, Integer, Integer) - spec.csharp: - - uid: OpenTK.Platform.IWindowComponent.SetPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) - name: SetPosition - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetPosition_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_ - - name: ( - - uid: OpenTK.Platform.WindowHandle - name: WindowHandle - href: OpenTK.Platform.WindowHandle.html - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) - spec.vb: - - uid: OpenTK.Platform.IWindowComponent.SetPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) - name: SetPosition - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetPosition_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_ - - name: ( - - uid: OpenTK.Platform.WindowHandle - name: WindowHandle - href: OpenTK.Platform.WindowHandle.html - - name: ',' - - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) - uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetSize* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetSize - href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_GetSize_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_GetSize_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2i__ name: GetSize nameWithType: MacOSWindowComponent.GetSize fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetSize -- uid: OpenTK.Platform.IWindowComponent.GetSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) - commentId: M:OpenTK.Platform.IWindowComponent.GetSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) +- uid: OpenTK.Platform.IWindowComponent.GetSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) + commentId: M:OpenTK.Platform.IWindowComponent.GetSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) parent: OpenTK.Platform.IWindowComponent - isExternal: true - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetSize_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ - name: GetSize(WindowHandle, out int, out int) - nameWithType: IWindowComponent.GetSize(WindowHandle, out int, out int) - fullName: OpenTK.Platform.IWindowComponent.GetSize(OpenTK.Platform.WindowHandle, out int, out int) - nameWithType.vb: IWindowComponent.GetSize(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Platform.IWindowComponent.GetSize(OpenTK.Platform.WindowHandle, Integer, Integer) - name.vb: GetSize(WindowHandle, Integer, Integer) + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetSize_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2i__ + name: GetSize(WindowHandle, out Vector2i) + nameWithType: IWindowComponent.GetSize(WindowHandle, out Vector2i) + fullName: OpenTK.Platform.IWindowComponent.GetSize(OpenTK.Platform.WindowHandle, out OpenTK.Mathematics.Vector2i) + nameWithType.vb: IWindowComponent.GetSize(WindowHandle, Vector2i) + fullName.vb: OpenTK.Platform.IWindowComponent.GetSize(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2i) + name.vb: GetSize(WindowHandle, Vector2i) spec.csharp: - - uid: OpenTK.Platform.IWindowComponent.GetSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + - uid: OpenTK.Platform.IWindowComponent.GetSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) name: GetSize - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetSize_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetSize_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2i__ - name: ( - uid: OpenTK.Platform.WindowHandle name: WindowHandle @@ -3656,98 +3968,64 @@ references: - name: " " - name: out - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - name: out - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 + - uid: OpenTK.Mathematics.Vector2i + name: Vector2i + href: OpenTK.Mathematics.Vector2i.html - name: ) spec.vb: - - uid: OpenTK.Platform.IWindowComponent.GetSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + - uid: OpenTK.Platform.IWindowComponent.GetSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) name: GetSize - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetSize_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetSize_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2i__ - name: ( - uid: OpenTK.Platform.WindowHandle name: WindowHandle href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 + - uid: OpenTK.Mathematics.Vector2i + name: Vector2i + href: OpenTK.Mathematics.Vector2i.html - name: ) - uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetSize* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetSize - href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_SetSize_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_ + href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_SetSize_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2i_ name: SetSize nameWithType: MacOSWindowComponent.SetSize fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetSize -- uid: OpenTK.Platform.IWindowComponent.SetSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) - commentId: M:OpenTK.Platform.IWindowComponent.SetSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) +- uid: OpenTK.Platform.IWindowComponent.SetSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) + commentId: M:OpenTK.Platform.IWindowComponent.SetSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) parent: OpenTK.Platform.IWindowComponent - isExternal: true - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetSize_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_ - name: SetSize(WindowHandle, int, int) - nameWithType: IWindowComponent.SetSize(WindowHandle, int, int) - fullName: OpenTK.Platform.IWindowComponent.SetSize(OpenTK.Platform.WindowHandle, int, int) - nameWithType.vb: IWindowComponent.SetSize(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Platform.IWindowComponent.SetSize(OpenTK.Platform.WindowHandle, Integer, Integer) - name.vb: SetSize(WindowHandle, Integer, Integer) + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetSize_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2i_ + name: SetSize(WindowHandle, Vector2i) + nameWithType: IWindowComponent.SetSize(WindowHandle, Vector2i) + fullName: OpenTK.Platform.IWindowComponent.SetSize(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2i) spec.csharp: - - uid: OpenTK.Platform.IWindowComponent.SetSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) + - uid: OpenTK.Platform.IWindowComponent.SetSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) name: SetSize - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetSize_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetSize_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2i_ - name: ( - uid: OpenTK.Platform.WindowHandle name: WindowHandle href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 + - uid: OpenTK.Mathematics.Vector2i + name: Vector2i + href: OpenTK.Mathematics.Vector2i.html - name: ) spec.vb: - - uid: OpenTK.Platform.IWindowComponent.SetSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) + - uid: OpenTK.Platform.IWindowComponent.SetSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) name: SetSize - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetSize_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetSize_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2i_ - name: ( - uid: OpenTK.Platform.WindowHandle name: WindowHandle href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 + - uid: OpenTK.Mathematics.Vector2i + name: Vector2i + href: OpenTK.Mathematics.Vector2i.html - name: ) - uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetBounds* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetBounds @@ -3840,6 +4118,17 @@ references: isExternal: true href: https://learn.microsoft.com/dotnet/api/system.int32 - name: ) +- uid: System.Int32 + commentId: T:System.Int32 + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + name: int + nameWithType: int + fullName: int + nameWithType.vb: Integer + fullName.vb: Integer + name.vb: Integer - uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetBounds* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetBounds href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_SetBounds_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_System_Int32_System_Int32_ @@ -3925,25 +4214,24 @@ references: - name: ) - uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetClientPosition* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetClientPosition - href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_GetClientPosition_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_GetClientPosition_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2i__ name: GetClientPosition nameWithType: MacOSWindowComponent.GetClientPosition fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetClientPosition -- uid: OpenTK.Platform.IWindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) - commentId: M:OpenTK.Platform.IWindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) +- uid: OpenTK.Platform.IWindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) + commentId: M:OpenTK.Platform.IWindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) parent: OpenTK.Platform.IWindowComponent - isExternal: true - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetClientPosition_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ - name: GetClientPosition(WindowHandle, out int, out int) - nameWithType: IWindowComponent.GetClientPosition(WindowHandle, out int, out int) - fullName: OpenTK.Platform.IWindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle, out int, out int) - nameWithType.vb: IWindowComponent.GetClientPosition(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Platform.IWindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle, Integer, Integer) - name.vb: GetClientPosition(WindowHandle, Integer, Integer) + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetClientPosition_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2i__ + name: GetClientPosition(WindowHandle, out Vector2i) + nameWithType: IWindowComponent.GetClientPosition(WindowHandle, out Vector2i) + fullName: OpenTK.Platform.IWindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle, out OpenTK.Mathematics.Vector2i) + nameWithType.vb: IWindowComponent.GetClientPosition(WindowHandle, Vector2i) + fullName.vb: OpenTK.Platform.IWindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2i) + name.vb: GetClientPosition(WindowHandle, Vector2i) spec.csharp: - - uid: OpenTK.Platform.IWindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + - uid: OpenTK.Platform.IWindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) name: GetClientPosition - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetClientPosition_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetClientPosition_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2i__ - name: ( - uid: OpenTK.Platform.WindowHandle name: WindowHandle @@ -3952,120 +4240,85 @@ references: - name: " " - name: out - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - name: out - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 + - uid: OpenTK.Mathematics.Vector2i + name: Vector2i + href: OpenTK.Mathematics.Vector2i.html - name: ) spec.vb: - - uid: OpenTK.Platform.IWindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + - uid: OpenTK.Platform.IWindowComponent.GetClientPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) name: GetClientPosition - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetClientPosition_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetClientPosition_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2i__ - name: ( - uid: OpenTK.Platform.WindowHandle name: WindowHandle href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 + - uid: OpenTK.Mathematics.Vector2i + name: Vector2i + href: OpenTK.Mathematics.Vector2i.html - name: ) - uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetClientPosition* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetClientPosition - href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_SetClientPosition_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_ + href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_SetClientPosition_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2i_ name: SetClientPosition nameWithType: MacOSWindowComponent.SetClientPosition fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetClientPosition -- uid: OpenTK.Platform.IWindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) - commentId: M:OpenTK.Platform.IWindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) +- uid: OpenTK.Platform.IWindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) + commentId: M:OpenTK.Platform.IWindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) parent: OpenTK.Platform.IWindowComponent - isExternal: true - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetClientPosition_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_ - name: SetClientPosition(WindowHandle, int, int) - nameWithType: IWindowComponent.SetClientPosition(WindowHandle, int, int) - fullName: OpenTK.Platform.IWindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle, int, int) - nameWithType.vb: IWindowComponent.SetClientPosition(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Platform.IWindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle, Integer, Integer) - name.vb: SetClientPosition(WindowHandle, Integer, Integer) + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetClientPosition_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2i_ + name: SetClientPosition(WindowHandle, Vector2i) + nameWithType: IWindowComponent.SetClientPosition(WindowHandle, Vector2i) + fullName: OpenTK.Platform.IWindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2i) spec.csharp: - - uid: OpenTK.Platform.IWindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) + - uid: OpenTK.Platform.IWindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) name: SetClientPosition - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetClientPosition_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetClientPosition_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2i_ - name: ( - uid: OpenTK.Platform.WindowHandle name: WindowHandle href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 + - uid: OpenTK.Mathematics.Vector2i + name: Vector2i + href: OpenTK.Mathematics.Vector2i.html - name: ) spec.vb: - - uid: OpenTK.Platform.IWindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) + - uid: OpenTK.Platform.IWindowComponent.SetClientPosition(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) name: SetClientPosition - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetClientPosition_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetClientPosition_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2i_ - name: ( - uid: OpenTK.Platform.WindowHandle name: WindowHandle href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 + - uid: OpenTK.Mathematics.Vector2i + name: Vector2i + href: OpenTK.Mathematics.Vector2i.html - name: ) - uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetClientSize* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetClientSize - href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_GetClientSize_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_GetClientSize_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2i__ name: GetClientSize nameWithType: MacOSWindowComponent.GetClientSize fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetClientSize -- uid: OpenTK.Platform.IWindowComponent.GetClientSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) - commentId: M:OpenTK.Platform.IWindowComponent.GetClientSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) +- uid: OpenTK.Platform.IWindowComponent.GetClientSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) + commentId: M:OpenTK.Platform.IWindowComponent.GetClientSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) parent: OpenTK.Platform.IWindowComponent - isExternal: true - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetClientSize_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ - name: GetClientSize(WindowHandle, out int, out int) - nameWithType: IWindowComponent.GetClientSize(WindowHandle, out int, out int) - fullName: OpenTK.Platform.IWindowComponent.GetClientSize(OpenTK.Platform.WindowHandle, out int, out int) - nameWithType.vb: IWindowComponent.GetClientSize(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Platform.IWindowComponent.GetClientSize(OpenTK.Platform.WindowHandle, Integer, Integer) - name.vb: GetClientSize(WindowHandle, Integer, Integer) + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetClientSize_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2i__ + name: GetClientSize(WindowHandle, out Vector2i) + nameWithType: IWindowComponent.GetClientSize(WindowHandle, out Vector2i) + fullName: OpenTK.Platform.IWindowComponent.GetClientSize(OpenTK.Platform.WindowHandle, out OpenTK.Mathematics.Vector2i) + nameWithType.vb: IWindowComponent.GetClientSize(WindowHandle, Vector2i) + fullName.vb: OpenTK.Platform.IWindowComponent.GetClientSize(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2i) + name.vb: GetClientSize(WindowHandle, Vector2i) spec.csharp: - - uid: OpenTK.Platform.IWindowComponent.GetClientSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + - uid: OpenTK.Platform.IWindowComponent.GetClientSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) name: GetClientSize - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetClientSize_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetClientSize_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2i__ - name: ( - uid: OpenTK.Platform.WindowHandle name: WindowHandle @@ -4074,98 +4327,64 @@ references: - name: " " - name: out - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - name: out - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 + - uid: OpenTK.Mathematics.Vector2i + name: Vector2i + href: OpenTK.Mathematics.Vector2i.html - name: ) spec.vb: - - uid: OpenTK.Platform.IWindowComponent.GetClientSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + - uid: OpenTK.Platform.IWindowComponent.GetClientSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) name: GetClientSize - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetClientSize_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetClientSize_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2i__ - name: ( - uid: OpenTK.Platform.WindowHandle name: WindowHandle href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 + - uid: OpenTK.Mathematics.Vector2i + name: Vector2i + href: OpenTK.Mathematics.Vector2i.html - name: ) - uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetClientSize* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetClientSize - href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_SetClientSize_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_ + href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_SetClientSize_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2i_ name: SetClientSize nameWithType: MacOSWindowComponent.SetClientSize fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetClientSize -- uid: OpenTK.Platform.IWindowComponent.SetClientSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) - commentId: M:OpenTK.Platform.IWindowComponent.SetClientSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) +- uid: OpenTK.Platform.IWindowComponent.SetClientSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) + commentId: M:OpenTK.Platform.IWindowComponent.SetClientSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) parent: OpenTK.Platform.IWindowComponent - isExternal: true - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetClientSize_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_ - name: SetClientSize(WindowHandle, int, int) - nameWithType: IWindowComponent.SetClientSize(WindowHandle, int, int) - fullName: OpenTK.Platform.IWindowComponent.SetClientSize(OpenTK.Platform.WindowHandle, int, int) - nameWithType.vb: IWindowComponent.SetClientSize(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Platform.IWindowComponent.SetClientSize(OpenTK.Platform.WindowHandle, Integer, Integer) - name.vb: SetClientSize(WindowHandle, Integer, Integer) + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetClientSize_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2i_ + name: SetClientSize(WindowHandle, Vector2i) + nameWithType: IWindowComponent.SetClientSize(WindowHandle, Vector2i) + fullName: OpenTK.Platform.IWindowComponent.SetClientSize(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2i) spec.csharp: - - uid: OpenTK.Platform.IWindowComponent.SetClientSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) + - uid: OpenTK.Platform.IWindowComponent.SetClientSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) name: SetClientSize - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetClientSize_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetClientSize_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2i_ - name: ( - uid: OpenTK.Platform.WindowHandle name: WindowHandle href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 + - uid: OpenTK.Mathematics.Vector2i + name: Vector2i + href: OpenTK.Mathematics.Vector2i.html - name: ) spec.vb: - - uid: OpenTK.Platform.IWindowComponent.SetClientSize(OpenTK.Platform.WindowHandle,System.Int32,System.Int32) + - uid: OpenTK.Platform.IWindowComponent.SetClientSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i) name: SetClientSize - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetClientSize_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetClientSize_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2i_ - name: ( - uid: OpenTK.Platform.WindowHandle name: WindowHandle href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 + - uid: OpenTK.Mathematics.Vector2i + name: Vector2i + href: OpenTK.Mathematics.Vector2i.html - name: ) - uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetClientBounds* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetClientBounds @@ -4343,25 +4562,24 @@ references: - name: ) - uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetFramebufferSize* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetFramebufferSize - href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_GetFramebufferSize_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_GetFramebufferSize_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2i__ name: GetFramebufferSize nameWithType: MacOSWindowComponent.GetFramebufferSize fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetFramebufferSize -- uid: OpenTK.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) - commentId: M:OpenTK.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) +- uid: OpenTK.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) + commentId: M:OpenTK.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) parent: OpenTK.Platform.IWindowComponent - isExternal: true - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetFramebufferSize_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ - name: GetFramebufferSize(WindowHandle, out int, out int) - nameWithType: IWindowComponent.GetFramebufferSize(WindowHandle, out int, out int) - fullName: OpenTK.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle, out int, out int) - nameWithType.vb: IWindowComponent.GetFramebufferSize(WindowHandle, Integer, Integer) - fullName.vb: OpenTK.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle, Integer, Integer) - name.vb: GetFramebufferSize(WindowHandle, Integer, Integer) + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetFramebufferSize_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2i__ + name: GetFramebufferSize(WindowHandle, out Vector2i) + nameWithType: IWindowComponent.GetFramebufferSize(WindowHandle, out Vector2i) + fullName: OpenTK.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle, out OpenTK.Mathematics.Vector2i) + nameWithType.vb: IWindowComponent.GetFramebufferSize(WindowHandle, Vector2i) + fullName.vb: OpenTK.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2i) + name.vb: GetFramebufferSize(WindowHandle, Vector2i) spec.csharp: - - uid: OpenTK.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + - uid: OpenTK.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) name: GetFramebufferSize - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetFramebufferSize_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetFramebufferSize_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2i__ - name: ( - uid: OpenTK.Platform.WindowHandle name: WindowHandle @@ -4370,39 +4588,23 @@ references: - name: " " - name: out - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - name: out - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 + - uid: OpenTK.Mathematics.Vector2i + name: Vector2i + href: OpenTK.Mathematics.Vector2i.html - name: ) spec.vb: - - uid: OpenTK.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle,System.Int32@,System.Int32@) + - uid: OpenTK.Platform.IWindowComponent.GetFramebufferSize(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2i@) name: GetFramebufferSize - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetFramebufferSize_OpenTK_Platform_WindowHandle_System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetFramebufferSize_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2i__ - name: ( - uid: OpenTK.Platform.WindowHandle name: WindowHandle href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 + - uid: OpenTK.Mathematics.Vector2i + name: Vector2i + href: OpenTK.Mathematics.Vector2i.html - name: ) - uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetMaxClientSize* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetMaxClientSize @@ -4715,6 +4917,12 @@ references: href: https://learn.microsoft.com/dotnet/api/system.int32 - name: '?' - name: ) +- uid: OpenTK.Platform.PalNotImplementedException + commentId: T:OpenTK.Platform.PalNotImplementedException + href: OpenTK.Platform.PalNotImplementedException.html + name: PalNotImplementedException + nameWithType: PalNotImplementedException + fullName: OpenTK.Platform.PalNotImplementedException - uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetDisplay* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetDisplay href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_GetDisplay_OpenTK_Platform_WindowHandle_ @@ -4766,18 +4974,6 @@ references: name: WindowMode nameWithType: WindowMode fullName: OpenTK.Platform.WindowMode -- uid: OpenTK.Platform.WindowMode.WindowedFullscreen - commentId: F:OpenTK.Platform.WindowMode.WindowedFullscreen - href: OpenTK.Platform.WindowMode.html#OpenTK_Platform_WindowMode_WindowedFullscreen - name: WindowedFullscreen - nameWithType: WindowMode.WindowedFullscreen - fullName: OpenTK.Platform.WindowMode.WindowedFullscreen -- uid: OpenTK.Platform.WindowMode.ExclusiveFullscreen - commentId: F:OpenTK.Platform.WindowMode.ExclusiveFullscreen - href: OpenTK.Platform.WindowMode.html#OpenTK_Platform_WindowMode_ExclusiveFullscreen - name: ExclusiveFullscreen - nameWithType: WindowMode.ExclusiveFullscreen - fullName: OpenTK.Platform.WindowMode.ExclusiveFullscreen - uid: OpenTK.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle) commentId: M:OpenTK.Platform.IWindowComponent.SetFullscreenDisplay(OpenTK.Platform.WindowHandle,OpenTK.Platform.DisplayHandle) parent: OpenTK.Platform.IWindowComponent @@ -4858,22 +5054,34 @@ references: name: VideoMode href: OpenTK.Platform.VideoMode.html - name: ) -- uid: System.ArgumentOutOfRangeException - commentId: T:System.ArgumentOutOfRangeException - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.argumentoutofrangeexception - name: ArgumentOutOfRangeException - nameWithType: ArgumentOutOfRangeException - fullName: System.ArgumentOutOfRangeException -- uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetMode* - commentId: Overload:OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetMode - href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_SetMode_OpenTK_Platform_WindowHandle_OpenTK_Platform_WindowMode_ - name: SetMode - nameWithType: MacOSWindowComponent.SetMode - fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetMode -- uid: OpenTK.Platform.IWindowComponent.SetMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowMode) - commentId: M:OpenTK.Platform.IWindowComponent.SetMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowMode) - parent: OpenTK.Platform.IWindowComponent +- uid: OpenTK.Platform.WindowMode.WindowedFullscreen + commentId: F:OpenTK.Platform.WindowMode.WindowedFullscreen + href: OpenTK.Platform.WindowMode.html#OpenTK_Platform_WindowMode_WindowedFullscreen + name: WindowedFullscreen + nameWithType: WindowMode.WindowedFullscreen + fullName: OpenTK.Platform.WindowMode.WindowedFullscreen +- uid: OpenTK.Platform.WindowMode.ExclusiveFullscreen + commentId: F:OpenTK.Platform.WindowMode.ExclusiveFullscreen + href: OpenTK.Platform.WindowMode.html#OpenTK_Platform_WindowMode_ExclusiveFullscreen + name: ExclusiveFullscreen + nameWithType: WindowMode.ExclusiveFullscreen + fullName: OpenTK.Platform.WindowMode.ExclusiveFullscreen +- uid: System.ComponentModel.InvalidEnumArgumentException + commentId: T:System.ComponentModel.InvalidEnumArgumentException + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.componentmodel.invalidenumargumentexception + name: InvalidEnumArgumentException + nameWithType: InvalidEnumArgumentException + fullName: System.ComponentModel.InvalidEnumArgumentException +- uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetMode* + commentId: Overload:OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetMode + href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_SetMode_OpenTK_Platform_WindowHandle_OpenTK_Platform_WindowMode_ + name: SetMode + nameWithType: MacOSWindowComponent.SetMode + fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetMode +- uid: OpenTK.Platform.IWindowComponent.SetMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowMode) + commentId: M:OpenTK.Platform.IWindowComponent.SetMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowMode) + parent: OpenTK.Platform.IWindowComponent href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetMode_OpenTK_Platform_WindowHandle_OpenTK_Platform_WindowMode_ name: SetMode(WindowHandle, WindowMode) nameWithType: IWindowComponent.SetMode(WindowHandle, WindowMode) @@ -5003,6 +5211,41 @@ references: name: DisplayHandle href: OpenTK.Platform.DisplayHandle.html - name: ) +- uid: OpenTK.Platform.IWindowComponent.SetBorderStyle(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowBorderStyle) + commentId: M:OpenTK.Platform.IWindowComponent.SetBorderStyle(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowBorderStyle) + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetBorderStyle_OpenTK_Platform_WindowHandle_OpenTK_Platform_WindowBorderStyle_ + name: SetBorderStyle(WindowHandle, WindowBorderStyle) + nameWithType: IWindowComponent.SetBorderStyle(WindowHandle, WindowBorderStyle) + fullName: OpenTK.Platform.IWindowComponent.SetBorderStyle(OpenTK.Platform.WindowHandle, OpenTK.Platform.WindowBorderStyle) + spec.csharp: + - uid: OpenTK.Platform.IWindowComponent.SetBorderStyle(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowBorderStyle) + name: SetBorderStyle + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetBorderStyle_OpenTK_Platform_WindowHandle_OpenTK_Platform_WindowBorderStyle_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: OpenTK.Platform.WindowBorderStyle + name: WindowBorderStyle + href: OpenTK.Platform.WindowBorderStyle.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IWindowComponent.SetBorderStyle(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowBorderStyle) + name: SetBorderStyle + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetBorderStyle_OpenTK_Platform_WindowHandle_OpenTK_Platform_WindowBorderStyle_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: OpenTK.Platform.WindowBorderStyle + name: WindowBorderStyle + href: OpenTK.Platform.WindowBorderStyle.html + - name: ) - uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetBorderStyle* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetBorderStyle href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_GetBorderStyle_OpenTK_Platform_WindowHandle_ @@ -5047,40 +5290,216 @@ references: name: SetBorderStyle nameWithType: MacOSWindowComponent.SetBorderStyle fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetBorderStyle -- uid: OpenTK.Platform.IWindowComponent.SetBorderStyle(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowBorderStyle) - commentId: M:OpenTK.Platform.IWindowComponent.SetBorderStyle(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowBorderStyle) +- uid: OpenTK.Platform.IWindowComponent.SetTransparencyMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowTransparencyMode,System.Single) + commentId: M:OpenTK.Platform.IWindowComponent.SetTransparencyMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowTransparencyMode,System.Single) parent: OpenTK.Platform.IWindowComponent - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetBorderStyle_OpenTK_Platform_WindowHandle_OpenTK_Platform_WindowBorderStyle_ - name: SetBorderStyle(WindowHandle, WindowBorderStyle) - nameWithType: IWindowComponent.SetBorderStyle(WindowHandle, WindowBorderStyle) - fullName: OpenTK.Platform.IWindowComponent.SetBorderStyle(OpenTK.Platform.WindowHandle, OpenTK.Platform.WindowBorderStyle) + isExternal: true + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetTransparencyMode_OpenTK_Platform_WindowHandle_OpenTK_Platform_WindowTransparencyMode_System_Single_ + name: SetTransparencyMode(WindowHandle, WindowTransparencyMode, float) + nameWithType: IWindowComponent.SetTransparencyMode(WindowHandle, WindowTransparencyMode, float) + fullName: OpenTK.Platform.IWindowComponent.SetTransparencyMode(OpenTK.Platform.WindowHandle, OpenTK.Platform.WindowTransparencyMode, float) + nameWithType.vb: IWindowComponent.SetTransparencyMode(WindowHandle, WindowTransparencyMode, Single) + fullName.vb: OpenTK.Platform.IWindowComponent.SetTransparencyMode(OpenTK.Platform.WindowHandle, OpenTK.Platform.WindowTransparencyMode, Single) + name.vb: SetTransparencyMode(WindowHandle, WindowTransparencyMode, Single) spec.csharp: - - uid: OpenTK.Platform.IWindowComponent.SetBorderStyle(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowBorderStyle) - name: SetBorderStyle - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetBorderStyle_OpenTK_Platform_WindowHandle_OpenTK_Platform_WindowBorderStyle_ + - uid: OpenTK.Platform.IWindowComponent.SetTransparencyMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowTransparencyMode,System.Single) + name: SetTransparencyMode + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetTransparencyMode_OpenTK_Platform_WindowHandle_OpenTK_Platform_WindowTransparencyMode_System_Single_ - name: ( - uid: OpenTK.Platform.WindowHandle name: WindowHandle href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - - uid: OpenTK.Platform.WindowBorderStyle - name: WindowBorderStyle - href: OpenTK.Platform.WindowBorderStyle.html + - uid: OpenTK.Platform.WindowTransparencyMode + name: WindowTransparencyMode + href: OpenTK.Platform.WindowTransparencyMode.html + - name: ',' + - name: " " + - uid: System.Single + name: float + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.single - name: ) spec.vb: - - uid: OpenTK.Platform.IWindowComponent.SetBorderStyle(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowBorderStyle) - name: SetBorderStyle - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetBorderStyle_OpenTK_Platform_WindowHandle_OpenTK_Platform_WindowBorderStyle_ + - uid: OpenTK.Platform.IWindowComponent.SetTransparencyMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowTransparencyMode,System.Single) + name: SetTransparencyMode + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetTransparencyMode_OpenTK_Platform_WindowHandle_OpenTK_Platform_WindowTransparencyMode_System_Single_ - name: ( - uid: OpenTK.Platform.WindowHandle name: WindowHandle href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - - uid: OpenTK.Platform.WindowBorderStyle - name: WindowBorderStyle - href: OpenTK.Platform.WindowBorderStyle.html + - uid: OpenTK.Platform.WindowTransparencyMode + name: WindowTransparencyMode + href: OpenTK.Platform.WindowTransparencyMode.html + - name: ',' + - name: " " + - uid: System.Single + name: Single + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.single + - name: ) +- uid: OpenTK.Platform.OpenGLGraphicsApiHints.SupportTransparentFramebufferX11 + commentId: P:OpenTK.Platform.OpenGLGraphicsApiHints.SupportTransparentFramebufferX11 + href: OpenTK.Platform.OpenGLGraphicsApiHints.html#OpenTK_Platform_OpenGLGraphicsApiHints_SupportTransparentFramebufferX11 + name: SupportTransparentFramebufferX11 + nameWithType: OpenGLGraphicsApiHints.SupportTransparentFramebufferX11 + fullName: OpenTK.Platform.OpenGLGraphicsApiHints.SupportTransparentFramebufferX11 +- uid: OpenTK.Platform.ContextValues.SupportsFramebufferTransparency + commentId: F:OpenTK.Platform.ContextValues.SupportsFramebufferTransparency + href: OpenTK.Platform.ContextValues.html#OpenTK_Platform_ContextValues_SupportsFramebufferTransparency + name: SupportsFramebufferTransparency + nameWithType: ContextValues.SupportsFramebufferTransparency + fullName: OpenTK.Platform.ContextValues.SupportsFramebufferTransparency +- uid: OpenTK.Platform.WindowTransparencyMode + commentId: T:OpenTK.Platform.WindowTransparencyMode + parent: OpenTK.Platform + href: OpenTK.Platform.WindowTransparencyMode.html + name: WindowTransparencyMode + nameWithType: WindowTransparencyMode + fullName: OpenTK.Platform.WindowTransparencyMode +- uid: OpenTK.Platform.WindowTransparencyMode.TransparentFramebuffer + commentId: F:OpenTK.Platform.WindowTransparencyMode.TransparentFramebuffer + href: OpenTK.Platform.WindowTransparencyMode.html#OpenTK_Platform_WindowTransparencyMode_TransparentFramebuffer + name: TransparentFramebuffer + nameWithType: WindowTransparencyMode.TransparentFramebuffer + fullName: OpenTK.Platform.WindowTransparencyMode.TransparentFramebuffer +- uid: OpenTK.Platform.ContextValues + commentId: T:OpenTK.Platform.ContextValues + parent: OpenTK.Platform + href: OpenTK.Platform.ContextValues.html + name: ContextValues + nameWithType: ContextValues + fullName: OpenTK.Platform.ContextValues +- uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SupportsFramebufferTransparency* + commentId: Overload:OpenTK.Platform.Native.macOS.MacOSWindowComponent.SupportsFramebufferTransparency + href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_SupportsFramebufferTransparency_OpenTK_Platform_WindowHandle_ + name: SupportsFramebufferTransparency + nameWithType: MacOSWindowComponent.SupportsFramebufferTransparency + fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SupportsFramebufferTransparency +- uid: OpenTK.Platform.IWindowComponent.SupportsFramebufferTransparency(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.SupportsFramebufferTransparency(OpenTK.Platform.WindowHandle) + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SupportsFramebufferTransparency_OpenTK_Platform_WindowHandle_ + name: SupportsFramebufferTransparency(WindowHandle) + nameWithType: IWindowComponent.SupportsFramebufferTransparency(WindowHandle) + fullName: OpenTK.Platform.IWindowComponent.SupportsFramebufferTransparency(OpenTK.Platform.WindowHandle) + spec.csharp: + - uid: OpenTK.Platform.IWindowComponent.SupportsFramebufferTransparency(OpenTK.Platform.WindowHandle) + name: SupportsFramebufferTransparency + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SupportsFramebufferTransparency_OpenTK_Platform_WindowHandle_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IWindowComponent.SupportsFramebufferTransparency(OpenTK.Platform.WindowHandle) + name: SupportsFramebufferTransparency + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SupportsFramebufferTransparency_OpenTK_Platform_WindowHandle_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ) +- uid: OpenTK.Platform.IWindowComponent.GetTransparencyMode(OpenTK.Platform.WindowHandle,System.Single@) + commentId: M:OpenTK.Platform.IWindowComponent.GetTransparencyMode(OpenTK.Platform.WindowHandle,System.Single@) + parent: OpenTK.Platform.IWindowComponent + isExternal: true + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetTransparencyMode_OpenTK_Platform_WindowHandle_System_Single__ + name: GetTransparencyMode(WindowHandle, out float) + nameWithType: IWindowComponent.GetTransparencyMode(WindowHandle, out float) + fullName: OpenTK.Platform.IWindowComponent.GetTransparencyMode(OpenTK.Platform.WindowHandle, out float) + nameWithType.vb: IWindowComponent.GetTransparencyMode(WindowHandle, Single) + fullName.vb: OpenTK.Platform.IWindowComponent.GetTransparencyMode(OpenTK.Platform.WindowHandle, Single) + name.vb: GetTransparencyMode(WindowHandle, Single) + spec.csharp: + - uid: OpenTK.Platform.IWindowComponent.GetTransparencyMode(OpenTK.Platform.WindowHandle,System.Single@) + name: GetTransparencyMode + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetTransparencyMode_OpenTK_Platform_WindowHandle_System_Single__ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - name: out + - name: " " + - uid: System.Single + name: float + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.single + - name: ) + spec.vb: + - uid: OpenTK.Platform.IWindowComponent.GetTransparencyMode(OpenTK.Platform.WindowHandle,System.Single@) + name: GetTransparencyMode + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetTransparencyMode_OpenTK_Platform_WindowHandle_System_Single__ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: System.Single + name: Single + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.single + - name: ) +- uid: OpenTK.Platform.WindowTransparencyMode.TransparentWindow + commentId: F:OpenTK.Platform.WindowTransparencyMode.TransparentWindow + href: OpenTK.Platform.WindowTransparencyMode.html#OpenTK_Platform_WindowTransparencyMode_TransparentWindow + name: TransparentWindow + nameWithType: WindowTransparencyMode.TransparentWindow + fullName: OpenTK.Platform.WindowTransparencyMode.TransparentWindow +- uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetTransparencyMode* + commentId: Overload:OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetTransparencyMode + href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_SetTransparencyMode_OpenTK_Platform_WindowHandle_OpenTK_Platform_WindowTransparencyMode_System_Single_ + name: SetTransparencyMode + nameWithType: MacOSWindowComponent.SetTransparencyMode + fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetTransparencyMode +- uid: System.Single + commentId: T:System.Single + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.single + name: float + nameWithType: float + fullName: float + nameWithType.vb: Single + fullName.vb: Single + name.vb: Single +- uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetTransparencyMode* + commentId: Overload:OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetTransparencyMode + href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_GetTransparencyMode_OpenTK_Platform_WindowHandle_System_Single__ + name: GetTransparencyMode + nameWithType: MacOSWindowComponent.GetTransparencyMode + fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetTransparencyMode +- uid: OpenTK.Platform.IWindowComponent.IsAlwaysOnTop(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.IsAlwaysOnTop(OpenTK.Platform.WindowHandle) + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_IsAlwaysOnTop_OpenTK_Platform_WindowHandle_ + name: IsAlwaysOnTop(WindowHandle) + nameWithType: IWindowComponent.IsAlwaysOnTop(WindowHandle) + fullName: OpenTK.Platform.IWindowComponent.IsAlwaysOnTop(OpenTK.Platform.WindowHandle) + spec.csharp: + - uid: OpenTK.Platform.IWindowComponent.IsAlwaysOnTop(OpenTK.Platform.WindowHandle) + name: IsAlwaysOnTop + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_IsAlwaysOnTop_OpenTK_Platform_WindowHandle_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IWindowComponent.IsAlwaysOnTop(OpenTK.Platform.WindowHandle) + name: IsAlwaysOnTop + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_IsAlwaysOnTop_OpenTK_Platform_WindowHandle_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html - name: ) - uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetAlwaysOnTop* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetAlwaysOnTop @@ -5135,31 +5554,20 @@ references: name: IsAlwaysOnTop nameWithType: MacOSWindowComponent.IsAlwaysOnTop fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.IsAlwaysOnTop -- uid: OpenTK.Platform.IWindowComponent.IsAlwaysOnTop(OpenTK.Platform.WindowHandle) - commentId: M:OpenTK.Platform.IWindowComponent.IsAlwaysOnTop(OpenTK.Platform.WindowHandle) - parent: OpenTK.Platform.IWindowComponent - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_IsAlwaysOnTop_OpenTK_Platform_WindowHandle_ - name: IsAlwaysOnTop(WindowHandle) - nameWithType: IWindowComponent.IsAlwaysOnTop(WindowHandle) - fullName: OpenTK.Platform.IWindowComponent.IsAlwaysOnTop(OpenTK.Platform.WindowHandle) - spec.csharp: - - uid: OpenTK.Platform.IWindowComponent.IsAlwaysOnTop(OpenTK.Platform.WindowHandle) - name: IsAlwaysOnTop - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_IsAlwaysOnTop_OpenTK_Platform_WindowHandle_ - - name: ( - - uid: OpenTK.Platform.WindowHandle - name: WindowHandle - href: OpenTK.Platform.WindowHandle.html - - name: ) - spec.vb: - - uid: OpenTK.Platform.IWindowComponent.IsAlwaysOnTop(OpenTK.Platform.WindowHandle) - name: IsAlwaysOnTop - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_IsAlwaysOnTop_OpenTK_Platform_WindowHandle_ - - name: ( - - uid: OpenTK.Platform.WindowHandle - name: WindowHandle - href: OpenTK.Platform.WindowHandle.html - - name: ) +- uid: OpenTK.Platform.HitTest + commentId: T:OpenTK.Platform.HitTest + parent: OpenTK.Platform + href: OpenTK.Platform.HitTest.html + name: HitTest + nameWithType: HitTest + fullName: OpenTK.Platform.HitTest +- uid: OpenTK.Platform.HitType + commentId: T:OpenTK.Platform.HitType + parent: OpenTK.Platform + href: OpenTK.Platform.HitType.html + name: HitType + nameWithType: HitType + fullName: OpenTK.Platform.HitType - uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetHitTestCallback* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetHitTestCallback href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_SetHitTestCallback_OpenTK_Platform_WindowHandle_OpenTK_Platform_HitTest_ @@ -5201,13 +5609,6 @@ references: name: HitTest href: OpenTK.Platform.HitTest.html - name: ) -- uid: OpenTK.Platform.HitTest - commentId: T:OpenTK.Platform.HitTest - parent: OpenTK.Platform - href: OpenTK.Platform.HitTest.html - name: HitTest - nameWithType: HitTest - fullName: OpenTK.Platform.HitTest - uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetCursor* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetCursor href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_SetCursor_OpenTK_Platform_WindowHandle_OpenTK_Platform_CursorHandle_ @@ -5265,6 +5666,56 @@ references: name: SetCursorCaptureMode nameWithType: MacOSWindowComponent.SetCursorCaptureMode fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.SetCursorCaptureMode +- uid: OpenTK.Platform.IWindowComponent.FocusWindow(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.FocusWindow(OpenTK.Platform.WindowHandle) + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_FocusWindow_OpenTK_Platform_WindowHandle_ + name: FocusWindow(WindowHandle) + nameWithType: IWindowComponent.FocusWindow(WindowHandle) + fullName: OpenTK.Platform.IWindowComponent.FocusWindow(OpenTK.Platform.WindowHandle) + spec.csharp: + - uid: OpenTK.Platform.IWindowComponent.FocusWindow(OpenTK.Platform.WindowHandle) + name: FocusWindow + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_FocusWindow_OpenTK_Platform_WindowHandle_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IWindowComponent.FocusWindow(OpenTK.Platform.WindowHandle) + name: FocusWindow + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_FocusWindow_OpenTK_Platform_WindowHandle_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ) +- uid: OpenTK.Platform.IWindowComponent.RequestAttention(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.RequestAttention(OpenTK.Platform.WindowHandle) + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_RequestAttention_OpenTK_Platform_WindowHandle_ + name: RequestAttention(WindowHandle) + nameWithType: IWindowComponent.RequestAttention(WindowHandle) + fullName: OpenTK.Platform.IWindowComponent.RequestAttention(OpenTK.Platform.WindowHandle) + spec.csharp: + - uid: OpenTK.Platform.IWindowComponent.RequestAttention(OpenTK.Platform.WindowHandle) + name: RequestAttention + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_RequestAttention_OpenTK_Platform_WindowHandle_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IWindowComponent.RequestAttention(OpenTK.Platform.WindowHandle) + name: RequestAttention + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_RequestAttention_OpenTK_Platform_WindowHandle_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ) - uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.IsFocused* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSWindowComponent.IsFocused href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_IsFocused_OpenTK_Platform_WindowHandle_ @@ -5302,236 +5753,243 @@ references: name: FocusWindow nameWithType: MacOSWindowComponent.FocusWindow fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.FocusWindow -- uid: OpenTK.Platform.IWindowComponent.FocusWindow(OpenTK.Platform.WindowHandle) - commentId: M:OpenTK.Platform.IWindowComponent.FocusWindow(OpenTK.Platform.WindowHandle) +- uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.RequestAttention* + commentId: Overload:OpenTK.Platform.Native.macOS.MacOSWindowComponent.RequestAttention + href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_RequestAttention_OpenTK_Platform_WindowHandle_ + name: RequestAttention + nameWithType: MacOSWindowComponent.RequestAttention + fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.RequestAttention +- uid: OpenTK.Platform.IWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + commentId: M:OpenTK.Platform.IWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) parent: OpenTK.Platform.IWindowComponent - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_FocusWindow_OpenTK_Platform_WindowHandle_ - name: FocusWindow(WindowHandle) - nameWithType: IWindowComponent.FocusWindow(WindowHandle) - fullName: OpenTK.Platform.IWindowComponent.FocusWindow(OpenTK.Platform.WindowHandle) + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_ClientToScreen_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2_OpenTK_Mathematics_Vector2__ + name: ClientToScreen(WindowHandle, Vector2, out Vector2) + nameWithType: IWindowComponent.ClientToScreen(WindowHandle, Vector2, out Vector2) + fullName: OpenTK.Platform.IWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2, out OpenTK.Mathematics.Vector2) + nameWithType.vb: IWindowComponent.ClientToScreen(WindowHandle, Vector2, Vector2) + fullName.vb: OpenTK.Platform.IWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2, OpenTK.Mathematics.Vector2) + name.vb: ClientToScreen(WindowHandle, Vector2, Vector2) spec.csharp: - - uid: OpenTK.Platform.IWindowComponent.FocusWindow(OpenTK.Platform.WindowHandle) - name: FocusWindow - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_FocusWindow_OpenTK_Platform_WindowHandle_ + - uid: OpenTK.Platform.IWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + name: ClientToScreen + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_ClientToScreen_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2_OpenTK_Mathematics_Vector2__ - name: ( - uid: OpenTK.Platform.WindowHandle name: WindowHandle href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: OpenTK.Mathematics.Vector2 + name: Vector2 + href: OpenTK.Mathematics.Vector2.html + - name: ',' + - name: " " + - name: out + - name: " " + - uid: OpenTK.Mathematics.Vector2 + name: Vector2 + href: OpenTK.Mathematics.Vector2.html - name: ) spec.vb: - - uid: OpenTK.Platform.IWindowComponent.FocusWindow(OpenTK.Platform.WindowHandle) - name: FocusWindow - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_FocusWindow_OpenTK_Platform_WindowHandle_ + - uid: OpenTK.Platform.IWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + name: ClientToScreen + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_ClientToScreen_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2_OpenTK_Mathematics_Vector2__ - name: ( - uid: OpenTK.Platform.WindowHandle name: WindowHandle href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: OpenTK.Mathematics.Vector2 + name: Vector2 + href: OpenTK.Mathematics.Vector2.html + - name: ',' + - name: " " + - uid: OpenTK.Mathematics.Vector2 + name: Vector2 + href: OpenTK.Mathematics.Vector2.html - name: ) -- uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.RequestAttention* - commentId: Overload:OpenTK.Platform.Native.macOS.MacOSWindowComponent.RequestAttention - href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_RequestAttention_OpenTK_Platform_WindowHandle_ - name: RequestAttention - nameWithType: MacOSWindowComponent.RequestAttention - fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.RequestAttention -- uid: OpenTK.Platform.IWindowComponent.RequestAttention(OpenTK.Platform.WindowHandle) - commentId: M:OpenTK.Platform.IWindowComponent.RequestAttention(OpenTK.Platform.WindowHandle) +- uid: OpenTK.Platform.IWindowComponent.ClientToFramebuffer(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + commentId: M:OpenTK.Platform.IWindowComponent.ClientToFramebuffer(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) parent: OpenTK.Platform.IWindowComponent - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_RequestAttention_OpenTK_Platform_WindowHandle_ - name: RequestAttention(WindowHandle) - nameWithType: IWindowComponent.RequestAttention(WindowHandle) - fullName: OpenTK.Platform.IWindowComponent.RequestAttention(OpenTK.Platform.WindowHandle) + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_ClientToFramebuffer_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2_OpenTK_Mathematics_Vector2__ + name: ClientToFramebuffer(WindowHandle, Vector2, out Vector2) + nameWithType: IWindowComponent.ClientToFramebuffer(WindowHandle, Vector2, out Vector2) + fullName: OpenTK.Platform.IWindowComponent.ClientToFramebuffer(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2, out OpenTK.Mathematics.Vector2) + nameWithType.vb: IWindowComponent.ClientToFramebuffer(WindowHandle, Vector2, Vector2) + fullName.vb: OpenTK.Platform.IWindowComponent.ClientToFramebuffer(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2, OpenTK.Mathematics.Vector2) + name.vb: ClientToFramebuffer(WindowHandle, Vector2, Vector2) spec.csharp: - - uid: OpenTK.Platform.IWindowComponent.RequestAttention(OpenTK.Platform.WindowHandle) - name: RequestAttention - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_RequestAttention_OpenTK_Platform_WindowHandle_ + - uid: OpenTK.Platform.IWindowComponent.ClientToFramebuffer(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + name: ClientToFramebuffer + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_ClientToFramebuffer_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2_OpenTK_Mathematics_Vector2__ - name: ( - uid: OpenTK.Platform.WindowHandle name: WindowHandle href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: OpenTK.Mathematics.Vector2 + name: Vector2 + href: OpenTK.Mathematics.Vector2.html + - name: ',' + - name: " " + - name: out + - name: " " + - uid: OpenTK.Mathematics.Vector2 + name: Vector2 + href: OpenTK.Mathematics.Vector2.html - name: ) spec.vb: - - uid: OpenTK.Platform.IWindowComponent.RequestAttention(OpenTK.Platform.WindowHandle) - name: RequestAttention - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_RequestAttention_OpenTK_Platform_WindowHandle_ + - uid: OpenTK.Platform.IWindowComponent.ClientToFramebuffer(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + name: ClientToFramebuffer + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_ClientToFramebuffer_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2_OpenTK_Mathematics_Vector2__ - name: ( - uid: OpenTK.Platform.WindowHandle name: WindowHandle href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: OpenTK.Mathematics.Vector2 + name: Vector2 + href: OpenTK.Mathematics.Vector2.html + - name: ',' + - name: " " + - uid: OpenTK.Mathematics.Vector2 + name: Vector2 + href: OpenTK.Mathematics.Vector2.html - name: ) - uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.ScreenToClient* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSWindowComponent.ScreenToClient - href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_ScreenToClient_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_System_Int32__System_Int32__ + href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_ScreenToClient_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2_OpenTK_Mathematics_Vector2__ name: ScreenToClient nameWithType: MacOSWindowComponent.ScreenToClient fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.ScreenToClient -- uid: OpenTK.Platform.IWindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) - commentId: M:OpenTK.Platform.IWindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) +- uid: OpenTK.Platform.IWindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + commentId: M:OpenTK.Platform.IWindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) parent: OpenTK.Platform.IWindowComponent - isExternal: true - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_ScreenToClient_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_System_Int32__System_Int32__ - name: ScreenToClient(WindowHandle, int, int, out int, out int) - nameWithType: IWindowComponent.ScreenToClient(WindowHandle, int, int, out int, out int) - fullName: OpenTK.Platform.IWindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle, int, int, out int, out int) - nameWithType.vb: IWindowComponent.ScreenToClient(WindowHandle, Integer, Integer, Integer, Integer) - fullName.vb: OpenTK.Platform.IWindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle, Integer, Integer, Integer, Integer) - name.vb: ScreenToClient(WindowHandle, Integer, Integer, Integer, Integer) + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_ScreenToClient_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2_OpenTK_Mathematics_Vector2__ + name: ScreenToClient(WindowHandle, Vector2, out Vector2) + nameWithType: IWindowComponent.ScreenToClient(WindowHandle, Vector2, out Vector2) + fullName: OpenTK.Platform.IWindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2, out OpenTK.Mathematics.Vector2) + nameWithType.vb: IWindowComponent.ScreenToClient(WindowHandle, Vector2, Vector2) + fullName.vb: OpenTK.Platform.IWindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2, OpenTK.Mathematics.Vector2) + name.vb: ScreenToClient(WindowHandle, Vector2, Vector2) spec.csharp: - - uid: OpenTK.Platform.IWindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) + - uid: OpenTK.Platform.IWindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) name: ScreenToClient - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_ScreenToClient_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_ScreenToClient_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2_OpenTK_Mathematics_Vector2__ - name: ( - uid: OpenTK.Platform.WindowHandle name: WindowHandle href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - name: out - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 + - uid: OpenTK.Mathematics.Vector2 + name: Vector2 + href: OpenTK.Mathematics.Vector2.html - name: ',' - name: " " - name: out - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 + - uid: OpenTK.Mathematics.Vector2 + name: Vector2 + href: OpenTK.Mathematics.Vector2.html - name: ) spec.vb: - - uid: OpenTK.Platform.IWindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) + - uid: OpenTK.Platform.IWindowComponent.ScreenToClient(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) name: ScreenToClient - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_ScreenToClient_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_System_Int32__System_Int32__ + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_ScreenToClient_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2_OpenTK_Mathematics_Vector2__ - name: ( - uid: OpenTK.Platform.WindowHandle name: WindowHandle href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 + - uid: OpenTK.Mathematics.Vector2 + name: Vector2 + href: OpenTK.Mathematics.Vector2.html - name: ',' - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 + - uid: OpenTK.Mathematics.Vector2 + name: Vector2 + href: OpenTK.Mathematics.Vector2.html - name: ) +- uid: OpenTK.Mathematics.Vector2 + commentId: T:OpenTK.Mathematics.Vector2 + parent: OpenTK.Mathematics + href: OpenTK.Mathematics.Vector2.html + name: Vector2 + nameWithType: Vector2 + fullName: OpenTK.Mathematics.Vector2 - uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.ClientToScreen* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSWindowComponent.ClientToScreen - href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_ClientToScreen_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_System_Int32__System_Int32__ + href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_ClientToScreen_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2_OpenTK_Mathematics_Vector2__ name: ClientToScreen nameWithType: MacOSWindowComponent.ClientToScreen fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.ClientToScreen -- uid: OpenTK.Platform.IWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) - commentId: M:OpenTK.Platform.IWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) +- uid: OpenTK.Platform.IWindowComponent.FramebufferToClient(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + commentId: M:OpenTK.Platform.IWindowComponent.FramebufferToClient(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) parent: OpenTK.Platform.IWindowComponent - isExternal: true - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_ClientToScreen_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_System_Int32__System_Int32__ - name: ClientToScreen(WindowHandle, int, int, out int, out int) - nameWithType: IWindowComponent.ClientToScreen(WindowHandle, int, int, out int, out int) - fullName: OpenTK.Platform.IWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle, int, int, out int, out int) - nameWithType.vb: IWindowComponent.ClientToScreen(WindowHandle, Integer, Integer, Integer, Integer) - fullName.vb: OpenTK.Platform.IWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle, Integer, Integer, Integer, Integer) - name.vb: ClientToScreen(WindowHandle, Integer, Integer, Integer, Integer) + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_FramebufferToClient_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2_OpenTK_Mathematics_Vector2__ + name: FramebufferToClient(WindowHandle, Vector2, out Vector2) + nameWithType: IWindowComponent.FramebufferToClient(WindowHandle, Vector2, out Vector2) + fullName: OpenTK.Platform.IWindowComponent.FramebufferToClient(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2, out OpenTK.Mathematics.Vector2) + nameWithType.vb: IWindowComponent.FramebufferToClient(WindowHandle, Vector2, Vector2) + fullName.vb: OpenTK.Platform.IWindowComponent.FramebufferToClient(OpenTK.Platform.WindowHandle, OpenTK.Mathematics.Vector2, OpenTK.Mathematics.Vector2) + name.vb: FramebufferToClient(WindowHandle, Vector2, Vector2) spec.csharp: - - uid: OpenTK.Platform.IWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) - name: ClientToScreen - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_ClientToScreen_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_System_Int32__System_Int32__ + - uid: OpenTK.Platform.IWindowComponent.FramebufferToClient(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + name: FramebufferToClient + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_FramebufferToClient_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2_OpenTK_Mathematics_Vector2__ - name: ( - uid: OpenTK.Platform.WindowHandle name: WindowHandle href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - name: out - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 + - uid: OpenTK.Mathematics.Vector2 + name: Vector2 + href: OpenTK.Mathematics.Vector2.html - name: ',' - name: " " - name: out - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 + - uid: OpenTK.Mathematics.Vector2 + name: Vector2 + href: OpenTK.Mathematics.Vector2.html - name: ) spec.vb: - - uid: OpenTK.Platform.IWindowComponent.ClientToScreen(OpenTK.Platform.WindowHandle,System.Int32,System.Int32,System.Int32@,System.Int32@) - name: ClientToScreen - href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_ClientToScreen_OpenTK_Platform_WindowHandle_System_Int32_System_Int32_System_Int32__System_Int32__ + - uid: OpenTK.Platform.IWindowComponent.FramebufferToClient(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Vector2,OpenTK.Mathematics.Vector2@) + name: FramebufferToClient + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_FramebufferToClient_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2_OpenTK_Mathematics_Vector2__ - name: ( - uid: OpenTK.Platform.WindowHandle name: WindowHandle href: OpenTK.Platform.WindowHandle.html - name: ',' - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 + - uid: OpenTK.Mathematics.Vector2 + name: Vector2 + href: OpenTK.Mathematics.Vector2.html - name: ',' - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 + - uid: OpenTK.Mathematics.Vector2 + name: Vector2 + href: OpenTK.Mathematics.Vector2.html - name: ) +- uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.ClientToFramebuffer* + commentId: Overload:OpenTK.Platform.Native.macOS.MacOSWindowComponent.ClientToFramebuffer + href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_ClientToFramebuffer_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2_OpenTK_Mathematics_Vector2__ + name: ClientToFramebuffer + nameWithType: MacOSWindowComponent.ClientToFramebuffer + fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.ClientToFramebuffer +- uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.FramebufferToClient* + commentId: Overload:OpenTK.Platform.Native.macOS.MacOSWindowComponent.FramebufferToClient + href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_FramebufferToClient_OpenTK_Platform_WindowHandle_OpenTK_Mathematics_Vector2_OpenTK_Mathematics_Vector2__ + name: FramebufferToClient + nameWithType: MacOSWindowComponent.FramebufferToClient + fullName: OpenTK.Platform.Native.macOS.MacOSWindowComponent.FramebufferToClient - uid: OpenTK.Platform.WindowScaleChangeEventArgs commentId: T:OpenTK.Platform.WindowScaleChangeEventArgs href: OpenTK.Platform.WindowScaleChangeEventArgs.html @@ -5601,17 +6059,6 @@ references: isExternal: true href: https://learn.microsoft.com/dotnet/api/system.single - name: ) -- uid: System.Single - commentId: T:System.Single - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.single - name: float - nameWithType: float - fullName: float - nameWithType.vb: Single - fullName.vb: Single - name.vb: Single - uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetNSWindow* commentId: Overload:OpenTK.Platform.Native.macOS.MacOSWindowComponent.GetNSWindow href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html#OpenTK_Platform_Native_macOS_MacOSWindowComponent_GetNSWindow_OpenTK_Platform_WindowHandle_ diff --git a/api/OpenTK.Platform.Native.macOS.yml b/api/OpenTK.Platform.Native.macOS.yml index 91f35648..f770e84c 100644 --- a/api/OpenTK.Platform.Native.macOS.yml +++ b/api/OpenTK.Platform.Native.macOS.yml @@ -14,6 +14,7 @@ items: - OpenTK.Platform.Native.macOS.MacOSMouseComponent - OpenTK.Platform.Native.macOS.MacOSOpenGLComponent - OpenTK.Platform.Native.macOS.MacOSShellComponent + - OpenTK.Platform.Native.macOS.MacOSVulkanComponent - OpenTK.Platform.Native.macOS.MacOSWindowComponent langs: - csharp @@ -101,6 +102,12 @@ references: name: MacOSShellComponent nameWithType: MacOSShellComponent fullName: OpenTK.Platform.Native.macOS.MacOSShellComponent +- uid: OpenTK.Platform.Native.macOS.MacOSVulkanComponent + commentId: T:OpenTK.Platform.Native.macOS.MacOSVulkanComponent + href: OpenTK.Platform.Native.macOS.MacOSVulkanComponent.html + name: MacOSVulkanComponent + nameWithType: MacOSVulkanComponent + fullName: OpenTK.Platform.Native.macOS.MacOSVulkanComponent - uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent commentId: T:OpenTK.Platform.Native.macOS.MacOSWindowComponent href: OpenTK.Platform.Native.macOS.MacOSWindowComponent.html diff --git a/api/OpenTK.Platform.OpenDialogOptions.yml b/api/OpenTK.Platform.OpenDialogOptions.yml index 3bcc07a4..aa22610c 100644 --- a/api/OpenTK.Platform.OpenDialogOptions.yml +++ b/api/OpenTK.Platform.OpenDialogOptions.yml @@ -17,7 +17,7 @@ items: source: id: OpenDialogOptions path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\OpenDialogOptions.cs - startLine: 11 + startLine: 13 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -32,6 +32,11 @@ items: Public Enum OpenDialogOptions + seealso: + - linkId: OpenTK.Platform.Toolkit.Dialog + commentId: P:OpenTK.Platform.Toolkit.Dialog + - linkId: OpenTK.Platform.IDialogComponent.ShowOpenDialog(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.DialogFileFilter[],OpenTK.Platform.OpenDialogOptions) + commentId: M:OpenTK.Platform.IDialogComponent.ShowOpenDialog(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.DialogFileFilter[],OpenTK.Platform.OpenDialogOptions) attributes: - type: System.FlagsAttribute ctor: System.FlagsAttribute.#ctor @@ -50,7 +55,7 @@ items: source: id: AllowMultiSelect path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\OpenDialogOptions.cs - startLine: 17 + startLine: 19 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -74,7 +79,7 @@ items: source: id: SelectDirectory path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\OpenDialogOptions.cs - startLine: 24 + startLine: 26 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -88,6 +93,89 @@ items: - linkId: OpenTK.Platform.IDialogComponent.CanTargetFolders commentId: P:OpenTK.Platform.IDialogComponent.CanTargetFolders references: +- uid: OpenTK.Platform.Toolkit.Dialog + commentId: P:OpenTK.Platform.Toolkit.Dialog + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Dialog + name: Dialog + nameWithType: Toolkit.Dialog + fullName: OpenTK.Platform.Toolkit.Dialog +- uid: OpenTK.Platform.IDialogComponent.ShowOpenDialog(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.DialogFileFilter[],OpenTK.Platform.OpenDialogOptions) + commentId: M:OpenTK.Platform.IDialogComponent.ShowOpenDialog(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.DialogFileFilter[],OpenTK.Platform.OpenDialogOptions) + parent: OpenTK.Platform.IDialogComponent + isExternal: true + href: OpenTK.Platform.IDialogComponent.html#OpenTK_Platform_IDialogComponent_ShowOpenDialog_OpenTK_Platform_WindowHandle_System_String_System_String_OpenTK_Platform_DialogFileFilter___OpenTK_Platform_OpenDialogOptions_ + name: ShowOpenDialog(WindowHandle, string, string, DialogFileFilter[], OpenDialogOptions) + nameWithType: IDialogComponent.ShowOpenDialog(WindowHandle, string, string, DialogFileFilter[], OpenDialogOptions) + fullName: OpenTK.Platform.IDialogComponent.ShowOpenDialog(OpenTK.Platform.WindowHandle, string, string, OpenTK.Platform.DialogFileFilter[], OpenTK.Platform.OpenDialogOptions) + nameWithType.vb: IDialogComponent.ShowOpenDialog(WindowHandle, String, String, DialogFileFilter(), OpenDialogOptions) + fullName.vb: OpenTK.Platform.IDialogComponent.ShowOpenDialog(OpenTK.Platform.WindowHandle, String, String, OpenTK.Platform.DialogFileFilter(), OpenTK.Platform.OpenDialogOptions) + name.vb: ShowOpenDialog(WindowHandle, String, String, DialogFileFilter(), OpenDialogOptions) + spec.csharp: + - uid: OpenTK.Platform.IDialogComponent.ShowOpenDialog(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.DialogFileFilter[],OpenTK.Platform.OpenDialogOptions) + name: ShowOpenDialog + href: OpenTK.Platform.IDialogComponent.html#OpenTK_Platform_IDialogComponent_ShowOpenDialog_OpenTK_Platform_WindowHandle_System_String_System_String_OpenTK_Platform_DialogFileFilter___OpenTK_Platform_OpenDialogOptions_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: System.String + name: string + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ',' + - name: " " + - uid: System.String + name: string + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ',' + - name: " " + - uid: OpenTK.Platform.DialogFileFilter + name: DialogFileFilter + href: OpenTK.Platform.DialogFileFilter.html + - name: '[' + - name: ']' + - name: ',' + - name: " " + - uid: OpenTK.Platform.OpenDialogOptions + name: OpenDialogOptions + href: OpenTK.Platform.OpenDialogOptions.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IDialogComponent.ShowOpenDialog(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.DialogFileFilter[],OpenTK.Platform.OpenDialogOptions) + name: ShowOpenDialog + href: OpenTK.Platform.IDialogComponent.html#OpenTK_Platform_IDialogComponent_ShowOpenDialog_OpenTK_Platform_WindowHandle_System_String_System_String_OpenTK_Platform_DialogFileFilter___OpenTK_Platform_OpenDialogOptions_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: System.String + name: String + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ',' + - name: " " + - uid: System.String + name: String + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ',' + - name: " " + - uid: OpenTK.Platform.DialogFileFilter + name: DialogFileFilter + href: OpenTK.Platform.DialogFileFilter.html + - name: ( + - name: ) + - name: ',' + - name: " " + - uid: OpenTK.Platform.OpenDialogOptions + name: OpenDialogOptions + href: OpenTK.Platform.OpenDialogOptions.html + - name: ) - uid: OpenTK.Platform commentId: N:OpenTK.Platform href: OpenTK.html @@ -110,6 +198,13 @@ references: - uid: OpenTK.Platform name: Platform href: OpenTK.Platform.html +- uid: OpenTK.Platform.IDialogComponent + commentId: T:OpenTK.Platform.IDialogComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IDialogComponent.html + name: IDialogComponent + nameWithType: IDialogComponent + fullName: OpenTK.Platform.IDialogComponent - uid: OpenTK.Platform.OpenDialogOptions commentId: T:OpenTK.Platform.OpenDialogOptions parent: OpenTK.Platform @@ -124,10 +219,3 @@ references: name: CanTargetFolders nameWithType: IDialogComponent.CanTargetFolders fullName: OpenTK.Platform.IDialogComponent.CanTargetFolders -- uid: OpenTK.Platform.IDialogComponent - commentId: T:OpenTK.Platform.IDialogComponent - parent: OpenTK.Platform - href: OpenTK.Platform.IDialogComponent.html - name: IDialogComponent - nameWithType: IDialogComponent - fullName: OpenTK.Platform.IDialogComponent diff --git a/api/OpenTK.Platform.OpenGLGraphicsApiHints.yml b/api/OpenTK.Platform.OpenGLGraphicsApiHints.yml index f61b8274..c09ca5ab 100644 --- a/api/OpenTK.Platform.OpenGLGraphicsApiHints.yml +++ b/api/OpenTK.Platform.OpenGLGraphicsApiHints.yml @@ -27,6 +27,7 @@ items: - OpenTK.Platform.OpenGLGraphicsApiHints.Selector - OpenTK.Platform.OpenGLGraphicsApiHints.SharedContext - OpenTK.Platform.OpenGLGraphicsApiHints.StencilBits + - OpenTK.Platform.OpenGLGraphicsApiHints.SupportTransparentFramebufferX11 - OpenTK.Platform.OpenGLGraphicsApiHints.SwapMethod - OpenTK.Platform.OpenGLGraphicsApiHints.UseFlushControl - OpenTK.Platform.OpenGLGraphicsApiHints.UseSelectorOnMacOS @@ -729,7 +730,7 @@ items: source: id: Selector path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\OpenGLGraphicsApiHints.cs - startLine: 144 + startLine: 145 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -742,6 +743,9 @@ items: type: OpenTK.Platform.ContextValueSelector content.vb: Public Property Selector As ContextValueSelector overload: OpenTK.Platform.OpenGLGraphicsApiHints.Selector* + seealso: + - linkId: OpenTK.Platform.OpenGLGraphicsApiHints.UseSelectorOnMacOS + commentId: P:OpenTK.Platform.OpenGLGraphicsApiHints.UseSelectorOnMacOS - uid: OpenTK.Platform.OpenGLGraphicsApiHints.UseSelectorOnMacOS commentId: P:OpenTK.Platform.OpenGLGraphicsApiHints.UseSelectorOnMacOS id: UseSelectorOnMacOS @@ -756,7 +760,7 @@ items: source: id: UseSelectorOnMacOS path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\OpenGLGraphicsApiHints.cs - startLine: 150 + startLine: 153 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -772,6 +776,50 @@ items: type: System.Boolean content.vb: Public Property UseSelectorOnMacOS As Boolean overload: OpenTK.Platform.OpenGLGraphicsApiHints.UseSelectorOnMacOS* + seealso: + - linkId: OpenTK.Platform.OpenGLGraphicsApiHints.Selector + commentId: P:OpenTK.Platform.OpenGLGraphicsApiHints.Selector + - linkId: OpenTK.Platform.ContextValueSelector + commentId: T:OpenTK.Platform.ContextValueSelector +- uid: OpenTK.Platform.OpenGLGraphicsApiHints.SupportTransparentFramebufferX11 + commentId: P:OpenTK.Platform.OpenGLGraphicsApiHints.SupportTransparentFramebufferX11 + id: SupportTransparentFramebufferX11 + parent: OpenTK.Platform.OpenGLGraphicsApiHints + langs: + - csharp + - vb + name: SupportTransparentFramebufferX11 + nameWithType: OpenGLGraphicsApiHints.SupportTransparentFramebufferX11 + fullName: OpenTK.Platform.OpenGLGraphicsApiHints.SupportTransparentFramebufferX11 + type: Property + source: + id: SupportTransparentFramebufferX11 + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\OpenGLGraphicsApiHints.cs + startLine: 163 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: >- + If the requested should have set to true. + + This only matters on Linux/X11 as other platforms always support framebuffer transparency. + example: [] + syntax: + content: public bool SupportTransparentFramebufferX11 { get; set; } + parameters: [] + return: + type: System.Boolean + content.vb: Public Property SupportTransparentFramebufferX11 As Boolean + overload: OpenTK.Platform.OpenGLGraphicsApiHints.SupportTransparentFramebufferX11* + seealso: + - linkId: OpenTK.Platform.ContextValues.SupportsFramebufferTransparency + commentId: F:OpenTK.Platform.ContextValues.SupportsFramebufferTransparency + - linkId: OpenTK.Platform.IWindowComponent.SupportsFramebufferTransparency(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.SupportsFramebufferTransparency(OpenTK.Platform.WindowHandle) + - linkId: OpenTK.Platform.IWindowComponent.SetTransparencyMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowTransparencyMode,System.Single) + commentId: M:OpenTK.Platform.IWindowComponent.SetTransparencyMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowTransparencyMode,System.Single) + - linkId: OpenTK.Platform.IWindowComponent.GetTransparencyMode(OpenTK.Platform.WindowHandle,System.Single@) + commentId: M:OpenTK.Platform.IWindowComponent.GetTransparencyMode(OpenTK.Platform.WindowHandle,System.Single@) - uid: OpenTK.Platform.OpenGLGraphicsApiHints.#ctor commentId: M:OpenTK.Platform.OpenGLGraphicsApiHints.#ctor id: '#ctor' @@ -786,7 +834,7 @@ items: source: id: .ctor path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\OpenGLGraphicsApiHints.cs - startLine: 155 + startLine: 168 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -813,7 +861,7 @@ items: source: id: Copy path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\OpenGLGraphicsApiHints.cs - startLine: 163 + startLine: 176 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -1403,6 +1451,12 @@ references: name: OpenGLContextHandle nameWithType: OpenGLContextHandle fullName: OpenTK.Platform.OpenGLContextHandle +- uid: OpenTK.Platform.OpenGLGraphicsApiHints.UseSelectorOnMacOS + commentId: P:OpenTK.Platform.OpenGLGraphicsApiHints.UseSelectorOnMacOS + href: OpenTK.Platform.OpenGLGraphicsApiHints.html#OpenTK_Platform_OpenGLGraphicsApiHints_UseSelectorOnMacOS + name: UseSelectorOnMacOS + nameWithType: OpenGLGraphicsApiHints.UseSelectorOnMacOS + fullName: OpenTK.Platform.OpenGLGraphicsApiHints.UseSelectorOnMacOS - uid: OpenTK.Platform.OpenGLGraphicsApiHints.Selector* commentId: Overload:OpenTK.Platform.OpenGLGraphicsApiHints.Selector href: OpenTK.Platform.OpenGLGraphicsApiHints.html#OpenTK_Platform_OpenGLGraphicsApiHints_Selector @@ -1416,6 +1470,12 @@ references: name: ContextValueSelector nameWithType: ContextValueSelector fullName: OpenTK.Platform.ContextValueSelector +- uid: OpenTK.Platform.OpenGLGraphicsApiHints.Selector + commentId: P:OpenTK.Platform.OpenGLGraphicsApiHints.Selector + href: OpenTK.Platform.OpenGLGraphicsApiHints.html#OpenTK_Platform_OpenGLGraphicsApiHints_Selector + name: Selector + nameWithType: OpenGLGraphicsApiHints.Selector + fullName: OpenTK.Platform.OpenGLGraphicsApiHints.Selector - uid: OpenTK.Platform.ContextValues commentId: T:OpenTK.Platform.ContextValues parent: OpenTK.Platform @@ -1423,18 +1483,150 @@ references: name: ContextValues nameWithType: ContextValues fullName: OpenTK.Platform.ContextValues -- uid: OpenTK.Platform.OpenGLGraphicsApiHints.Selector - commentId: P:OpenTK.Platform.OpenGLGraphicsApiHints.Selector - href: OpenTK.Platform.OpenGLGraphicsApiHints.html#OpenTK_Platform_OpenGLGraphicsApiHints_Selector - name: Selector - nameWithType: OpenGLGraphicsApiHints.Selector - fullName: OpenTK.Platform.OpenGLGraphicsApiHints.Selector - uid: OpenTK.Platform.OpenGLGraphicsApiHints.UseSelectorOnMacOS* commentId: Overload:OpenTK.Platform.OpenGLGraphicsApiHints.UseSelectorOnMacOS href: OpenTK.Platform.OpenGLGraphicsApiHints.html#OpenTK_Platform_OpenGLGraphicsApiHints_UseSelectorOnMacOS name: UseSelectorOnMacOS nameWithType: OpenGLGraphicsApiHints.UseSelectorOnMacOS fullName: OpenTK.Platform.OpenGLGraphicsApiHints.UseSelectorOnMacOS +- uid: OpenTK.Platform.ContextValues.SupportsFramebufferTransparency + commentId: F:OpenTK.Platform.ContextValues.SupportsFramebufferTransparency + href: OpenTK.Platform.ContextValues.html#OpenTK_Platform_ContextValues_SupportsFramebufferTransparency + name: SupportsFramebufferTransparency + nameWithType: ContextValues.SupportsFramebufferTransparency + fullName: OpenTK.Platform.ContextValues.SupportsFramebufferTransparency +- uid: OpenTK.Platform.IWindowComponent.SupportsFramebufferTransparency(OpenTK.Platform.WindowHandle) + commentId: M:OpenTK.Platform.IWindowComponent.SupportsFramebufferTransparency(OpenTK.Platform.WindowHandle) + parent: OpenTK.Platform.IWindowComponent + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SupportsFramebufferTransparency_OpenTK_Platform_WindowHandle_ + name: SupportsFramebufferTransparency(WindowHandle) + nameWithType: IWindowComponent.SupportsFramebufferTransparency(WindowHandle) + fullName: OpenTK.Platform.IWindowComponent.SupportsFramebufferTransparency(OpenTK.Platform.WindowHandle) + spec.csharp: + - uid: OpenTK.Platform.IWindowComponent.SupportsFramebufferTransparency(OpenTK.Platform.WindowHandle) + name: SupportsFramebufferTransparency + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SupportsFramebufferTransparency_OpenTK_Platform_WindowHandle_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IWindowComponent.SupportsFramebufferTransparency(OpenTK.Platform.WindowHandle) + name: SupportsFramebufferTransparency + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SupportsFramebufferTransparency_OpenTK_Platform_WindowHandle_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ) +- uid: OpenTK.Platform.IWindowComponent.SetTransparencyMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowTransparencyMode,System.Single) + commentId: M:OpenTK.Platform.IWindowComponent.SetTransparencyMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowTransparencyMode,System.Single) + parent: OpenTK.Platform.IWindowComponent + isExternal: true + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetTransparencyMode_OpenTK_Platform_WindowHandle_OpenTK_Platform_WindowTransparencyMode_System_Single_ + name: SetTransparencyMode(WindowHandle, WindowTransparencyMode, float) + nameWithType: IWindowComponent.SetTransparencyMode(WindowHandle, WindowTransparencyMode, float) + fullName: OpenTK.Platform.IWindowComponent.SetTransparencyMode(OpenTK.Platform.WindowHandle, OpenTK.Platform.WindowTransparencyMode, float) + nameWithType.vb: IWindowComponent.SetTransparencyMode(WindowHandle, WindowTransparencyMode, Single) + fullName.vb: OpenTK.Platform.IWindowComponent.SetTransparencyMode(OpenTK.Platform.WindowHandle, OpenTK.Platform.WindowTransparencyMode, Single) + name.vb: SetTransparencyMode(WindowHandle, WindowTransparencyMode, Single) + spec.csharp: + - uid: OpenTK.Platform.IWindowComponent.SetTransparencyMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowTransparencyMode,System.Single) + name: SetTransparencyMode + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetTransparencyMode_OpenTK_Platform_WindowHandle_OpenTK_Platform_WindowTransparencyMode_System_Single_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: OpenTK.Platform.WindowTransparencyMode + name: WindowTransparencyMode + href: OpenTK.Platform.WindowTransparencyMode.html + - name: ',' + - name: " " + - uid: System.Single + name: float + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.single + - name: ) + spec.vb: + - uid: OpenTK.Platform.IWindowComponent.SetTransparencyMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowTransparencyMode,System.Single) + name: SetTransparencyMode + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetTransparencyMode_OpenTK_Platform_WindowHandle_OpenTK_Platform_WindowTransparencyMode_System_Single_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: OpenTK.Platform.WindowTransparencyMode + name: WindowTransparencyMode + href: OpenTK.Platform.WindowTransparencyMode.html + - name: ',' + - name: " " + - uid: System.Single + name: Single + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.single + - name: ) +- uid: OpenTK.Platform.IWindowComponent.GetTransparencyMode(OpenTK.Platform.WindowHandle,System.Single@) + commentId: M:OpenTK.Platform.IWindowComponent.GetTransparencyMode(OpenTK.Platform.WindowHandle,System.Single@) + parent: OpenTK.Platform.IWindowComponent + isExternal: true + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetTransparencyMode_OpenTK_Platform_WindowHandle_System_Single__ + name: GetTransparencyMode(WindowHandle, out float) + nameWithType: IWindowComponent.GetTransparencyMode(WindowHandle, out float) + fullName: OpenTK.Platform.IWindowComponent.GetTransparencyMode(OpenTK.Platform.WindowHandle, out float) + nameWithType.vb: IWindowComponent.GetTransparencyMode(WindowHandle, Single) + fullName.vb: OpenTK.Platform.IWindowComponent.GetTransparencyMode(OpenTK.Platform.WindowHandle, Single) + name.vb: GetTransparencyMode(WindowHandle, Single) + spec.csharp: + - uid: OpenTK.Platform.IWindowComponent.GetTransparencyMode(OpenTK.Platform.WindowHandle,System.Single@) + name: GetTransparencyMode + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetTransparencyMode_OpenTK_Platform_WindowHandle_System_Single__ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - name: out + - name: " " + - uid: System.Single + name: float + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.single + - name: ) + spec.vb: + - uid: OpenTK.Platform.IWindowComponent.GetTransparencyMode(OpenTK.Platform.WindowHandle,System.Single@) + name: GetTransparencyMode + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_GetTransparencyMode_OpenTK_Platform_WindowHandle_System_Single__ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: System.Single + name: Single + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.single + - name: ) +- uid: OpenTK.Platform.OpenGLGraphicsApiHints.SupportTransparentFramebufferX11* + commentId: Overload:OpenTK.Platform.OpenGLGraphicsApiHints.SupportTransparentFramebufferX11 + href: OpenTK.Platform.OpenGLGraphicsApiHints.html#OpenTK_Platform_OpenGLGraphicsApiHints_SupportTransparentFramebufferX11 + name: SupportTransparentFramebufferX11 + nameWithType: OpenGLGraphicsApiHints.SupportTransparentFramebufferX11 + fullName: OpenTK.Platform.OpenGLGraphicsApiHints.SupportTransparentFramebufferX11 +- uid: OpenTK.Platform.IWindowComponent + commentId: T:OpenTK.Platform.IWindowComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IWindowComponent.html + name: IWindowComponent + nameWithType: IWindowComponent + fullName: OpenTK.Platform.IWindowComponent - uid: OpenTK.Platform.OpenGLGraphicsApiHints commentId: T:OpenTK.Platform.OpenGLGraphicsApiHints parent: OpenTK.Platform diff --git a/api/OpenTK.Platform.PowerStateChangeEventArgs.yml b/api/OpenTK.Platform.PowerStateChangeEventArgs.yml index 9d71d8a5..c02cc1f1 100644 --- a/api/OpenTK.Platform.PowerStateChangeEventArgs.yml +++ b/api/OpenTK.Platform.PowerStateChangeEventArgs.yml @@ -17,7 +17,7 @@ items: source: id: PowerStateChangeEventArgs path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\WindowEventArgs.cs - startLine: 657 + startLine: 665 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -52,7 +52,7 @@ items: source: id: GoingToSleep path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\WindowEventArgs.cs - startLine: 662 + startLine: 670 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -79,7 +79,7 @@ items: source: id: .ctor path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\WindowEventArgs.cs - startLine: 668 + startLine: 676 assemblies: - OpenTK.Platform namespace: OpenTK.Platform diff --git a/api/OpenTK.Platform.SaveDialogOptions.yml b/api/OpenTK.Platform.SaveDialogOptions.yml index 848b7348..8c3bc89f 100644 --- a/api/OpenTK.Platform.SaveDialogOptions.yml +++ b/api/OpenTK.Platform.SaveDialogOptions.yml @@ -15,7 +15,7 @@ items: source: id: SaveDialogOptions path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\SaveDialogOptions.cs - startLine: 11 + startLine: 13 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -30,11 +30,99 @@ items: Public Enum SaveDialogOptions + seealso: + - linkId: OpenTK.Platform.Toolkit.Dialog + commentId: P:OpenTK.Platform.Toolkit.Dialog + - linkId: OpenTK.Platform.IDialogComponent.ShowOpenDialog(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.DialogFileFilter[],OpenTK.Platform.OpenDialogOptions) + commentId: M:OpenTK.Platform.IDialogComponent.ShowOpenDialog(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.DialogFileFilter[],OpenTK.Platform.OpenDialogOptions) attributes: - type: System.FlagsAttribute ctor: System.FlagsAttribute.#ctor arguments: [] references: +- uid: OpenTK.Platform.Toolkit.Dialog + commentId: P:OpenTK.Platform.Toolkit.Dialog + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Dialog + name: Dialog + nameWithType: Toolkit.Dialog + fullName: OpenTK.Platform.Toolkit.Dialog +- uid: OpenTK.Platform.IDialogComponent.ShowOpenDialog(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.DialogFileFilter[],OpenTK.Platform.OpenDialogOptions) + commentId: M:OpenTK.Platform.IDialogComponent.ShowOpenDialog(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.DialogFileFilter[],OpenTK.Platform.OpenDialogOptions) + parent: OpenTK.Platform.IDialogComponent + isExternal: true + href: OpenTK.Platform.IDialogComponent.html#OpenTK_Platform_IDialogComponent_ShowOpenDialog_OpenTK_Platform_WindowHandle_System_String_System_String_OpenTK_Platform_DialogFileFilter___OpenTK_Platform_OpenDialogOptions_ + name: ShowOpenDialog(WindowHandle, string, string, DialogFileFilter[], OpenDialogOptions) + nameWithType: IDialogComponent.ShowOpenDialog(WindowHandle, string, string, DialogFileFilter[], OpenDialogOptions) + fullName: OpenTK.Platform.IDialogComponent.ShowOpenDialog(OpenTK.Platform.WindowHandle, string, string, OpenTK.Platform.DialogFileFilter[], OpenTK.Platform.OpenDialogOptions) + nameWithType.vb: IDialogComponent.ShowOpenDialog(WindowHandle, String, String, DialogFileFilter(), OpenDialogOptions) + fullName.vb: OpenTK.Platform.IDialogComponent.ShowOpenDialog(OpenTK.Platform.WindowHandle, String, String, OpenTK.Platform.DialogFileFilter(), OpenTK.Platform.OpenDialogOptions) + name.vb: ShowOpenDialog(WindowHandle, String, String, DialogFileFilter(), OpenDialogOptions) + spec.csharp: + - uid: OpenTK.Platform.IDialogComponent.ShowOpenDialog(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.DialogFileFilter[],OpenTK.Platform.OpenDialogOptions) + name: ShowOpenDialog + href: OpenTK.Platform.IDialogComponent.html#OpenTK_Platform_IDialogComponent_ShowOpenDialog_OpenTK_Platform_WindowHandle_System_String_System_String_OpenTK_Platform_DialogFileFilter___OpenTK_Platform_OpenDialogOptions_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: System.String + name: string + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ',' + - name: " " + - uid: System.String + name: string + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ',' + - name: " " + - uid: OpenTK.Platform.DialogFileFilter + name: DialogFileFilter + href: OpenTK.Platform.DialogFileFilter.html + - name: '[' + - name: ']' + - name: ',' + - name: " " + - uid: OpenTK.Platform.OpenDialogOptions + name: OpenDialogOptions + href: OpenTK.Platform.OpenDialogOptions.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.IDialogComponent.ShowOpenDialog(OpenTK.Platform.WindowHandle,System.String,System.String,OpenTK.Platform.DialogFileFilter[],OpenTK.Platform.OpenDialogOptions) + name: ShowOpenDialog + href: OpenTK.Platform.IDialogComponent.html#OpenTK_Platform_IDialogComponent_ShowOpenDialog_OpenTK_Platform_WindowHandle_System_String_System_String_OpenTK_Platform_DialogFileFilter___OpenTK_Platform_OpenDialogOptions_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: System.String + name: String + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ',' + - name: " " + - uid: System.String + name: String + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ',' + - name: " " + - uid: OpenTK.Platform.DialogFileFilter + name: DialogFileFilter + href: OpenTK.Platform.DialogFileFilter.html + - name: ( + - name: ) + - name: ',' + - name: " " + - uid: OpenTK.Platform.OpenDialogOptions + name: OpenDialogOptions + href: OpenTK.Platform.OpenDialogOptions.html + - name: ) - uid: OpenTK.Platform commentId: N:OpenTK.Platform href: OpenTK.html @@ -57,3 +145,10 @@ references: - uid: OpenTK.Platform name: Platform href: OpenTK.Platform.html +- uid: OpenTK.Platform.IDialogComponent + commentId: T:OpenTK.Platform.IDialogComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IDialogComponent.html + name: IDialogComponent + nameWithType: IDialogComponent + fullName: OpenTK.Platform.IDialogComponent diff --git a/api/OpenTK.Platform.ScrollEventArgs.yml b/api/OpenTK.Platform.ScrollEventArgs.yml index 178e1cc2..2b8c4238 100644 --- a/api/OpenTK.Platform.ScrollEventArgs.yml +++ b/api/OpenTK.Platform.ScrollEventArgs.yml @@ -18,7 +18,7 @@ items: source: id: ScrollEventArgs path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\WindowEventArgs.cs - startLine: 514 + startLine: 515 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -55,7 +55,7 @@ items: source: id: Delta path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\WindowEventArgs.cs - startLine: 519 + startLine: 520 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -82,7 +82,7 @@ items: source: id: Distance path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\WindowEventArgs.cs - startLine: 527 + startLine: 528 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -114,7 +114,7 @@ items: source: id: .ctor path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\WindowEventArgs.cs - startLine: 535 + startLine: 536 assemblies: - OpenTK.Platform namespace: OpenTK.Platform diff --git a/api/OpenTK.Platform.TextEditingEventArgs.yml b/api/OpenTK.Platform.TextEditingEventArgs.yml index bfaa16e0..8498bf33 100644 --- a/api/OpenTK.Platform.TextEditingEventArgs.yml +++ b/api/OpenTK.Platform.TextEditingEventArgs.yml @@ -19,7 +19,7 @@ items: source: id: TextEditingEventArgs path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\WindowEventArgs.cs - startLine: 297 + startLine: 295 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -56,7 +56,7 @@ items: source: id: Candidate path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\WindowEventArgs.cs - startLine: 302 + startLine: 300 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -83,7 +83,7 @@ items: source: id: Cursor path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\WindowEventArgs.cs - startLine: 307 + startLine: 305 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -110,7 +110,7 @@ items: source: id: Length path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\WindowEventArgs.cs - startLine: 312 + startLine: 310 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -137,7 +137,7 @@ items: source: id: .ctor path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\WindowEventArgs.cs - startLine: 321 + startLine: 319 assemblies: - OpenTK.Platform namespace: OpenTK.Platform diff --git a/api/OpenTK.Platform.TextInputEventArgs.yml b/api/OpenTK.Platform.TextInputEventArgs.yml index d22696f7..9dc7c828 100644 --- a/api/OpenTK.Platform.TextInputEventArgs.yml +++ b/api/OpenTK.Platform.TextInputEventArgs.yml @@ -17,7 +17,7 @@ items: source: id: TextInputEventArgs path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\WindowEventArgs.cs - startLine: 276 + startLine: 274 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -57,7 +57,7 @@ items: source: id: Text path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\WindowEventArgs.cs - startLine: 281 + startLine: 279 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -84,7 +84,7 @@ items: source: id: .ctor path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\WindowEventArgs.cs - startLine: 288 + startLine: 286 assemblies: - OpenTK.Platform namespace: OpenTK.Platform diff --git a/api/OpenTK.Platform.ThemeChangeEventArgs.yml b/api/OpenTK.Platform.ThemeChangeEventArgs.yml index 6d6d9494..506203b4 100644 --- a/api/OpenTK.Platform.ThemeChangeEventArgs.yml +++ b/api/OpenTK.Platform.ThemeChangeEventArgs.yml @@ -17,7 +17,7 @@ items: source: id: ThemeChangeEventArgs path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\WindowEventArgs.cs - startLine: 609 + startLine: 617 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -26,6 +26,11 @@ items: syntax: content: 'public class ThemeChangeEventArgs : EventArgs' content.vb: Public Class ThemeChangeEventArgs Inherits EventArgs + seealso: + - linkId: OpenTK.Platform.IShellComponent.GetPreferredTheme + commentId: M:OpenTK.Platform.IShellComponent.GetPreferredTheme + - linkId: OpenTK.Platform.ThemeInfo + commentId: T:OpenTK.Platform.ThemeInfo inheritance: - System.Object - System.EventArgs @@ -52,7 +57,7 @@ items: source: id: NewTheme path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\WindowEventArgs.cs - startLine: 614 + startLine: 622 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -79,7 +84,7 @@ items: source: id: .ctor path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\WindowEventArgs.cs - startLine: 620 + startLine: 628 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -97,6 +102,32 @@ items: fullName.vb: OpenTK.Platform.ThemeChangeEventArgs.New(OpenTK.Platform.ThemeInfo) name.vb: New(ThemeInfo) references: +- uid: OpenTK.Platform.IShellComponent.GetPreferredTheme + commentId: M:OpenTK.Platform.IShellComponent.GetPreferredTheme + parent: OpenTK.Platform.IShellComponent + href: OpenTK.Platform.IShellComponent.html#OpenTK_Platform_IShellComponent_GetPreferredTheme + name: GetPreferredTheme() + nameWithType: IShellComponent.GetPreferredTheme() + fullName: OpenTK.Platform.IShellComponent.GetPreferredTheme() + spec.csharp: + - uid: OpenTK.Platform.IShellComponent.GetPreferredTheme + name: GetPreferredTheme + href: OpenTK.Platform.IShellComponent.html#OpenTK_Platform_IShellComponent_GetPreferredTheme + - name: ( + - name: ) + spec.vb: + - uid: OpenTK.Platform.IShellComponent.GetPreferredTheme + name: GetPreferredTheme + href: OpenTK.Platform.IShellComponent.html#OpenTK_Platform_IShellComponent_GetPreferredTheme + - name: ( + - name: ) +- uid: OpenTK.Platform.ThemeInfo + commentId: T:OpenTK.Platform.ThemeInfo + parent: OpenTK.Platform + href: OpenTK.Platform.ThemeInfo.html + name: ThemeInfo + nameWithType: ThemeInfo + fullName: OpenTK.Platform.ThemeInfo - uid: OpenTK.Platform commentId: N:OpenTK.Platform href: OpenTK.html @@ -365,6 +396,13 @@ references: href: https://learn.microsoft.com/dotnet/api/system.object.tostring - name: ( - name: ) +- uid: OpenTK.Platform.IShellComponent + commentId: T:OpenTK.Platform.IShellComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IShellComponent.html + name: IShellComponent + nameWithType: IShellComponent + fullName: OpenTK.Platform.IShellComponent - uid: System commentId: N:System isExternal: true @@ -372,13 +410,6 @@ references: name: System nameWithType: System fullName: System -- uid: OpenTK.Platform.ThemeInfo - commentId: T:OpenTK.Platform.ThemeInfo - parent: OpenTK.Platform - href: OpenTK.Platform.ThemeInfo.html - name: ThemeInfo - nameWithType: ThemeInfo - fullName: OpenTK.Platform.ThemeInfo - uid: OpenTK.Platform.ThemeChangeEventArgs.NewTheme* commentId: Overload:OpenTK.Platform.ThemeChangeEventArgs.NewTheme href: OpenTK.Platform.ThemeChangeEventArgs.html#OpenTK_Platform_ThemeChangeEventArgs_NewTheme diff --git a/api/OpenTK.Platform.ThemeInfo.yml b/api/OpenTK.Platform.ThemeInfo.yml index d9fdf538..64508c71 100644 --- a/api/OpenTK.Platform.ThemeInfo.yml +++ b/api/OpenTK.Platform.ThemeInfo.yml @@ -23,7 +23,7 @@ items: source: id: ThemeInfo path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\ThemeInfo.cs - startLine: 32 + startLine: 37 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -52,7 +52,7 @@ items: source: id: Theme path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\ThemeInfo.cs - startLine: 37 + startLine: 42 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -77,7 +77,7 @@ items: source: id: HighContrast path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\ThemeInfo.cs - startLine: 42 + startLine: 47 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -102,7 +102,7 @@ items: source: id: Equals path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\ThemeInfo.cs - startLine: 45 + startLine: 50 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -137,7 +137,7 @@ items: source: id: Equals path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\ThemeInfo.cs - startLine: 51 + startLine: 56 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -170,7 +170,7 @@ items: source: id: GetHashCode path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\ThemeInfo.cs - startLine: 58 + startLine: 63 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -198,7 +198,7 @@ items: source: id: ToString path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\ThemeInfo.cs - startLine: 64 + startLine: 69 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -226,7 +226,7 @@ items: source: id: op_Equality path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\ThemeInfo.cs - startLine: 75 + startLine: 80 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -263,7 +263,7 @@ items: source: id: op_Inequality path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\ThemeInfo.cs - startLine: 86 + startLine: 91 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -287,6 +287,31 @@ items: fullName.vb: OpenTK.Platform.ThemeInfo.<>(OpenTK.Platform.ThemeInfo, OpenTK.Platform.ThemeInfo) name.vb: <>(ThemeInfo, ThemeInfo) references: +- uid: OpenTK.Platform.IShellComponent.GetPreferredTheme + commentId: M:OpenTK.Platform.IShellComponent.GetPreferredTheme + parent: OpenTK.Platform.IShellComponent + href: OpenTK.Platform.IShellComponent.html#OpenTK_Platform_IShellComponent_GetPreferredTheme + name: GetPreferredTheme() + nameWithType: IShellComponent.GetPreferredTheme() + fullName: OpenTK.Platform.IShellComponent.GetPreferredTheme() + spec.csharp: + - uid: OpenTK.Platform.IShellComponent.GetPreferredTheme + name: GetPreferredTheme + href: OpenTK.Platform.IShellComponent.html#OpenTK_Platform_IShellComponent_GetPreferredTheme + - name: ( + - name: ) + spec.vb: + - uid: OpenTK.Platform.IShellComponent.GetPreferredTheme + name: GetPreferredTheme + href: OpenTK.Platform.IShellComponent.html#OpenTK_Platform_IShellComponent_GetPreferredTheme + - name: ( + - name: ) +- uid: OpenTK.Platform.ThemeChangeEventArgs + commentId: T:OpenTK.Platform.ThemeChangeEventArgs + href: OpenTK.Platform.ThemeChangeEventArgs.html + name: ThemeChangeEventArgs + nameWithType: ThemeChangeEventArgs + fullName: OpenTK.Platform.ThemeChangeEventArgs - uid: OpenTK.Platform commentId: N:OpenTK.Platform href: OpenTK.html @@ -456,6 +481,13 @@ references: isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ) +- uid: OpenTK.Platform.IShellComponent + commentId: T:OpenTK.Platform.IShellComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IShellComponent.html + name: IShellComponent + nameWithType: IShellComponent + fullName: OpenTK.Platform.IShellComponent - uid: System.IEquatable`1 commentId: T:System.IEquatable`1 isExternal: true diff --git a/api/OpenTK.Platform.Toolkit.yml b/api/OpenTK.Platform.Toolkit.yml index d0da783c..81a1a32e 100644 --- a/api/OpenTK.Platform.Toolkit.yml +++ b/api/OpenTK.Platform.Toolkit.yml @@ -17,6 +17,7 @@ items: - OpenTK.Platform.Toolkit.OpenGL - OpenTK.Platform.Toolkit.Shell - OpenTK.Platform.Toolkit.Surface + - OpenTK.Platform.Toolkit.Uninit - OpenTK.Platform.Toolkit.Vulkan - OpenTK.Platform.Toolkit.Window langs: @@ -29,7 +30,7 @@ items: source: id: Toolkit path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Toolkit.cs - startLine: 17 + startLine: 18 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -41,6 +42,9 @@ items: syntax: content: public static class Toolkit content.vb: Public Module Toolkit + seealso: + - linkId: OpenTK.Platform.ToolkitOptions + commentId: T:OpenTK.Platform.ToolkitOptions inheritance: - System.Object inheritedMembers: @@ -65,7 +69,7 @@ items: source: id: Window path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Toolkit.cs - startLine: 38 + startLine: 39 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -92,7 +96,7 @@ items: source: id: Surface path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Toolkit.cs - startLine: 44 + startLine: 45 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -119,7 +123,7 @@ items: source: id: OpenGL path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Toolkit.cs - startLine: 50 + startLine: 51 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -146,7 +150,7 @@ items: source: id: Display path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Toolkit.cs - startLine: 56 + startLine: 57 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -173,7 +177,7 @@ items: source: id: Shell path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Toolkit.cs - startLine: 62 + startLine: 63 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -200,7 +204,7 @@ items: source: id: Mouse path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Toolkit.cs - startLine: 68 + startLine: 69 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -227,7 +231,7 @@ items: source: id: Keyboard path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Toolkit.cs - startLine: 74 + startLine: 75 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -254,7 +258,7 @@ items: source: id: Cursor path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Toolkit.cs - startLine: 80 + startLine: 81 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -281,7 +285,7 @@ items: source: id: Icon path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Toolkit.cs - startLine: 86 + startLine: 87 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -308,7 +312,7 @@ items: source: id: Clipboard path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Toolkit.cs - startLine: 92 + startLine: 93 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -335,7 +339,7 @@ items: source: id: Joystick path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Toolkit.cs - startLine: 98 + startLine: 99 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -362,7 +366,7 @@ items: source: id: Dialog path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Toolkit.cs - startLine: 104 + startLine: 105 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -389,7 +393,7 @@ items: source: id: Vulkan path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Toolkit.cs - startLine: 110 + startLine: 111 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -416,7 +420,7 @@ items: source: id: Init path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Toolkit.cs - startLine: 118 + startLine: 120 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -433,7 +437,56 @@ items: description: The options to initialize with. content.vb: Public Shared Sub Init(options As ToolkitOptions) overload: OpenTK.Platform.Toolkit.Init* + seealso: + - linkId: OpenTK.Platform.ToolkitOptions + commentId: T:OpenTK.Platform.ToolkitOptions +- uid: OpenTK.Platform.Toolkit.Uninit + commentId: M:OpenTK.Platform.Toolkit.Uninit + id: Uninit + parent: OpenTK.Platform.Toolkit + langs: + - csharp + - vb + name: Uninit() + nameWithType: Toolkit.Uninit() + fullName: OpenTK.Platform.Toolkit.Uninit() + type: Method + source: + id: Uninit + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Toolkit.cs + startLine: 201 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: >- + Uninitialize OpenTK. + + This frees any native resources held. + + All allocated windows, opengl contexts, etc should be closed before calling this function. + + This function does not need to be called when exiting the application. + + This function is only useful if the application will keep running after OpenTK has been uninitialized. + remarks: >- + There are some irreversible settings on some platforms that cannot be undone once OpenTK has been initialized. + + What follows is a list of things that cannot be undone: + +
  • DPI awareness in windows is a per process setting that can only be set once.
+ example: [] + syntax: + content: public static void Uninit() + content.vb: Public Shared Sub Uninit() + overload: OpenTK.Platform.Toolkit.Uninit* references: +- uid: OpenTK.Platform.ToolkitOptions + commentId: T:OpenTK.Platform.ToolkitOptions + parent: OpenTK.Platform + href: OpenTK.Platform.ToolkitOptions.html + name: ToolkitOptions + nameWithType: ToolkitOptions + fullName: OpenTK.Platform.ToolkitOptions - uid: OpenTK.Platform commentId: N:OpenTK.Platform href: OpenTK.html @@ -882,10 +935,9 @@ references: name: Init nameWithType: Toolkit.Init fullName: OpenTK.Platform.Toolkit.Init -- uid: OpenTK.Platform.ToolkitOptions - commentId: T:OpenTK.Platform.ToolkitOptions - parent: OpenTK.Platform - href: OpenTK.Platform.ToolkitOptions.html - name: ToolkitOptions - nameWithType: ToolkitOptions - fullName: OpenTK.Platform.ToolkitOptions +- uid: OpenTK.Platform.Toolkit.Uninit* + commentId: Overload:OpenTK.Platform.Toolkit.Uninit + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Uninit + name: Uninit + nameWithType: Toolkit.Uninit + fullName: OpenTK.Platform.Toolkit.Uninit diff --git a/api/OpenTK.Platform.ToolkitOptions.MacOSOptions.yml b/api/OpenTK.Platform.ToolkitOptions.MacOSOptions.yml index 9deb135d..7af5cc15 100644 --- a/api/OpenTK.Platform.ToolkitOptions.MacOSOptions.yml +++ b/api/OpenTK.Platform.ToolkitOptions.MacOSOptions.yml @@ -4,7 +4,8 @@ items: commentId: T:OpenTK.Platform.ToolkitOptions.MacOSOptions id: ToolkitOptions.MacOSOptions parent: OpenTK.Platform - children: [] + children: + - OpenTK.Platform.ToolkitOptions.MacOSOptions.ActiveAppOnStart langs: - csharp - vb @@ -15,7 +16,7 @@ items: source: id: MacOSOptions path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\ToolkitOptions.cs - startLine: 70 + startLine: 71 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -33,6 +34,40 @@ items: - System.Object.GetType - System.Object.ReferenceEquals(System.Object,System.Object) - System.Object.ToString +- uid: OpenTK.Platform.ToolkitOptions.MacOSOptions.ActiveAppOnStart + commentId: P:OpenTK.Platform.ToolkitOptions.MacOSOptions.ActiveAppOnStart + id: ActiveAppOnStart + parent: OpenTK.Platform.ToolkitOptions.MacOSOptions + langs: + - csharp + - vb + name: ActiveAppOnStart + nameWithType: ToolkitOptions.MacOSOptions.ActiveAppOnStart + fullName: OpenTK.Platform.ToolkitOptions.MacOSOptions.ActiveAppOnStart + type: Property + source: + id: ActiveAppOnStart + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\ToolkitOptions.cs + startLine: 79 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: >- + Makes this app active when calling . + + This removes focus from other applications which might be what you want for games + + but for applications with only hidden windows, or tools this is not the expected behaviour. + + Defaults to true. + example: [] + syntax: + content: public bool ActiveAppOnStart { get; set; } + parameters: [] + return: + type: System.Boolean + content.vb: Public Property ActiveAppOnStart As Boolean + overload: OpenTK.Platform.ToolkitOptions.MacOSOptions.ActiveAppOnStart* references: - uid: OpenTK.Platform commentId: N:OpenTK.Platform @@ -269,3 +304,44 @@ references: name: System nameWithType: System fullName: System +- uid: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Init_OpenTK_Platform_ToolkitOptions_ + name: Init(ToolkitOptions) + nameWithType: Toolkit.Init(ToolkitOptions) + fullName: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + spec.csharp: + - uid: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + name: Init + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Init_OpenTK_Platform_ToolkitOptions_ + - name: ( + - uid: OpenTK.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Platform.ToolkitOptions.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + name: Init + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Init_OpenTK_Platform_ToolkitOptions_ + - name: ( + - uid: OpenTK.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Platform.ToolkitOptions.html + - name: ) +- uid: OpenTK.Platform.ToolkitOptions.MacOSOptions.ActiveAppOnStart* + commentId: Overload:OpenTK.Platform.ToolkitOptions.MacOSOptions.ActiveAppOnStart + href: OpenTK.Platform.ToolkitOptions.MacOSOptions.html#OpenTK_Platform_ToolkitOptions_MacOSOptions_ActiveAppOnStart + name: ActiveAppOnStart + nameWithType: ToolkitOptions.MacOSOptions.ActiveAppOnStart + fullName: OpenTK.Platform.ToolkitOptions.MacOSOptions.ActiveAppOnStart +- uid: System.Boolean + commentId: T:System.Boolean + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + name: bool + nameWithType: bool + fullName: bool + nameWithType.vb: Boolean + fullName.vb: Boolean + name.vb: Boolean diff --git a/api/OpenTK.Platform.ToolkitOptions.WindowsOptions.yml b/api/OpenTK.Platform.ToolkitOptions.WindowsOptions.yml index 71de58db..32482833 100644 --- a/api/OpenTK.Platform.ToolkitOptions.WindowsOptions.yml +++ b/api/OpenTK.Platform.ToolkitOptions.WindowsOptions.yml @@ -17,7 +17,7 @@ items: source: id: WindowsOptions path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\ToolkitOptions.cs - startLine: 43 + startLine: 44 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -49,7 +49,7 @@ items: source: id: EnableVisualStyles path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\ToolkitOptions.cs - startLine: 52 + startLine: 53 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -85,7 +85,7 @@ items: source: id: IsDPIAware path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\ToolkitOptions.cs - startLine: 57 + startLine: 58 assemblies: - OpenTK.Platform namespace: OpenTK.Platform diff --git a/api/OpenTK.Platform.ToolkitOptions.X11Options.yml b/api/OpenTK.Platform.ToolkitOptions.X11Options.yml index a031177b..b5c98f77 100644 --- a/api/OpenTK.Platform.ToolkitOptions.X11Options.yml +++ b/api/OpenTK.Platform.ToolkitOptions.X11Options.yml @@ -15,7 +15,7 @@ items: source: id: X11Options path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\ToolkitOptions.cs - startLine: 63 + startLine: 64 assemblies: - OpenTK.Platform namespace: OpenTK.Platform diff --git a/api/OpenTK.Platform.ToolkitOptions.yml b/api/OpenTK.Platform.ToolkitOptions.yml index c695e330..96aa0383 100644 --- a/api/OpenTK.Platform.ToolkitOptions.yml +++ b/api/OpenTK.Platform.ToolkitOptions.yml @@ -20,7 +20,7 @@ items: source: id: ToolkitOptions path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\ToolkitOptions.cs - startLine: 9 + startLine: 10 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -52,7 +52,7 @@ items: source: id: ApplicationName path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\ToolkitOptions.cs - startLine: 14 + startLine: 15 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -79,12 +79,12 @@ items: source: id: Logger path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\ToolkitOptions.cs - startLine: 21 + startLine: 22 assemblies: - OpenTK.Platform namespace: OpenTK.Platform summary: >- - The logger to send logging to. + The logger to send diagnostic messages (including warnings and errors) to. Log info can be useful to understand what might be going wrong if something isn't working. @@ -111,7 +111,7 @@ items: source: id: Windows path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\ToolkitOptions.cs - startLine: 28 + startLine: 29 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -138,7 +138,7 @@ items: source: id: X11 path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\ToolkitOptions.cs - startLine: 33 + startLine: 34 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -165,7 +165,7 @@ items: source: id: MacOS path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\ToolkitOptions.cs - startLine: 38 + startLine: 39 assemblies: - OpenTK.Platform namespace: OpenTK.Platform @@ -179,6 +179,30 @@ items: content.vb: Public Property MacOS As ToolkitOptions.MacOSOptions overload: OpenTK.Platform.ToolkitOptions.MacOS* references: +- uid: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + commentId: M:OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Init_OpenTK_Platform_ToolkitOptions_ + name: Init(ToolkitOptions) + nameWithType: Toolkit.Init(ToolkitOptions) + fullName: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + spec.csharp: + - uid: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + name: Init + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Init_OpenTK_Platform_ToolkitOptions_ + - name: ( + - uid: OpenTK.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Platform.ToolkitOptions.html + - name: ) + spec.vb: + - uid: OpenTK.Platform.Toolkit.Init(OpenTK.Platform.ToolkitOptions) + name: Init + href: OpenTK.Platform.Toolkit.html#OpenTK_Platform_Toolkit_Init_OpenTK_Platform_ToolkitOptions_ + - name: ( + - uid: OpenTK.Platform.ToolkitOptions + name: ToolkitOptions + href: OpenTK.Platform.ToolkitOptions.html + - name: ) - uid: OpenTK.Platform commentId: N:OpenTK.Platform href: OpenTK.html diff --git a/api/OpenTK.Graphics.Wgl.Rect.yml b/api/OpenTK.Platform.VulkanGraphicsApiHints.yml similarity index 51% rename from api/OpenTK.Graphics.Wgl.Rect.yml rename to api/OpenTK.Platform.VulkanGraphicsApiHints.yml index 7c67aaa5..43e05807 100644 --- a/api/OpenTK.Graphics.Wgl.Rect.yml +++ b/api/OpenTK.Platform.VulkanGraphicsApiHints.yml @@ -1,177 +1,126 @@ ### YamlMime:ManagedReference items: -- uid: OpenTK.Graphics.Wgl.Rect - commentId: T:OpenTK.Graphics.Wgl.Rect - id: Rect - parent: OpenTK.Graphics.Wgl +- uid: OpenTK.Platform.VulkanGraphicsApiHints + commentId: T:OpenTK.Platform.VulkanGraphicsApiHints + id: VulkanGraphicsApiHints + parent: OpenTK.Platform children: - - OpenTK.Graphics.Wgl.Rect.Bottom - - OpenTK.Graphics.Wgl.Rect.Left - - OpenTK.Graphics.Wgl.Rect.Right - - OpenTK.Graphics.Wgl.Rect.Top + - OpenTK.Platform.VulkanGraphicsApiHints.Api langs: - csharp - vb - name: Rect - nameWithType: Rect - fullName: OpenTK.Graphics.Wgl.Rect - type: Struct + name: VulkanGraphicsApiHints + nameWithType: VulkanGraphicsApiHints + fullName: OpenTK.Platform.VulkanGraphicsApiHints + type: Class source: - id: Rect - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 527 + id: VulkanGraphicsApiHints + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\VulkanGraphicsApiHints.cs + startLine: 7 assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Graphics API hints for the Vulkan API. + example: [] syntax: - content: public struct Rect - content.vb: Public Structure Rect + content: 'public class VulkanGraphicsApiHints : GraphicsApiHints' + content.vb: Public Class VulkanGraphicsApiHints Inherits GraphicsApiHints + inheritance: + - System.Object + - OpenTK.Platform.GraphicsApiHints inheritedMembers: - - System.ValueType.Equals(System.Object) - - System.ValueType.GetHashCode - - System.ValueType.ToString + - System.Object.Equals(System.Object) - System.Object.Equals(System.Object,System.Object) + - System.Object.GetHashCode - System.Object.GetType + - System.Object.MemberwiseClone - System.Object.ReferenceEquals(System.Object,System.Object) -- uid: OpenTK.Graphics.Wgl.Rect.Left - commentId: F:OpenTK.Graphics.Wgl.Rect.Left - id: Left - parent: OpenTK.Graphics.Wgl.Rect + - System.Object.ToString +- uid: OpenTK.Platform.VulkanGraphicsApiHints.Api + commentId: P:OpenTK.Platform.VulkanGraphicsApiHints.Api + id: Api + parent: OpenTK.Platform.VulkanGraphicsApiHints langs: - csharp - vb - name: Left - nameWithType: Rect.Left - fullName: OpenTK.Graphics.Wgl.Rect.Left - type: Field + name: Api + nameWithType: VulkanGraphicsApiHints.Api + fullName: OpenTK.Platform.VulkanGraphicsApiHints.Api + type: Property source: - id: Left - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 529 + id: Api + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\VulkanGraphicsApiHints.cs + startLine: 10 assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Which graphics API the hints are for. + example: [] syntax: - content: public int Left + content: public override GraphicsApi Api { get; } + parameters: [] return: - type: System.Int32 - content.vb: Public Left As Integer -- uid: OpenTK.Graphics.Wgl.Rect.Top - commentId: F:OpenTK.Graphics.Wgl.Rect.Top - id: Top - parent: OpenTK.Graphics.Wgl.Rect - langs: - - csharp - - vb - name: Top - nameWithType: Rect.Top - fullName: OpenTK.Graphics.Wgl.Rect.Top - type: Field - source: - id: Top - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 530 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: public int Top - return: - type: System.Int32 - content.vb: Public Top As Integer -- uid: OpenTK.Graphics.Wgl.Rect.Right - commentId: F:OpenTK.Graphics.Wgl.Rect.Right - id: Right - parent: OpenTK.Graphics.Wgl.Rect - langs: - - csharp - - vb - name: Right - nameWithType: Rect.Right - fullName: OpenTK.Graphics.Wgl.Rect.Right - type: Field - source: - id: Right - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 531 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: public int Right - return: - type: System.Int32 - content.vb: Public Right As Integer -- uid: OpenTK.Graphics.Wgl.Rect.Bottom - commentId: F:OpenTK.Graphics.Wgl.Rect.Bottom - id: Bottom - parent: OpenTK.Graphics.Wgl.Rect - langs: - - csharp - - vb - name: Bottom - nameWithType: Rect.Bottom - fullName: OpenTK.Graphics.Wgl.Rect.Bottom - type: Field - source: - id: Bottom - path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Graphics\Types.cs - startLine: 532 - assemblies: - - OpenTK.Graphics - namespace: OpenTK.Graphics.Wgl - syntax: - content: public int Bottom - return: - type: System.Int32 - content.vb: Public Bottom As Integer + type: OpenTK.Platform.GraphicsApi + content.vb: Public Overrides ReadOnly Property Api As GraphicsApi + overridden: OpenTK.Platform.GraphicsApiHints.Api + overload: OpenTK.Platform.VulkanGraphicsApiHints.Api* references: -- uid: OpenTK.Graphics.Wgl - commentId: N:OpenTK.Graphics.Wgl +- uid: OpenTK.Platform + commentId: N:OpenTK.Platform href: OpenTK.html - name: OpenTK.Graphics.Wgl - nameWithType: OpenTK.Graphics.Wgl - fullName: OpenTK.Graphics.Wgl + name: OpenTK.Platform + nameWithType: OpenTK.Platform + fullName: OpenTK.Platform spec.csharp: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Wgl - name: Wgl - href: OpenTK.Graphics.Wgl.html + - uid: OpenTK.Platform + name: Platform + href: OpenTK.Platform.html spec.vb: - uid: OpenTK name: OpenTK href: OpenTK.html - name: . - - uid: OpenTK.Graphics - name: Graphics - href: OpenTK.Graphics.html - - name: . - - uid: OpenTK.Graphics.Wgl - name: Wgl - href: OpenTK.Graphics.Wgl.html -- uid: System.ValueType.Equals(System.Object) - commentId: M:System.ValueType.Equals(System.Object) - parent: System.ValueType + - uid: OpenTK.Platform + name: Platform + href: OpenTK.Platform.html +- uid: System.Object + commentId: T:System.Object + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + name: object + nameWithType: object + fullName: object + nameWithType.vb: Object + fullName.vb: Object + name.vb: Object +- uid: OpenTK.Platform.GraphicsApiHints + commentId: T:OpenTK.Platform.GraphicsApiHints + parent: OpenTK.Platform + href: OpenTK.Platform.GraphicsApiHints.html + name: GraphicsApiHints + nameWithType: GraphicsApiHints + fullName: OpenTK.Platform.GraphicsApiHints +- uid: System.Object.Equals(System.Object) + commentId: M:System.Object.Equals(System.Object) + parent: System.Object isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) name: Equals(object) - nameWithType: ValueType.Equals(object) - fullName: System.ValueType.Equals(object) - nameWithType.vb: ValueType.Equals(Object) - fullName.vb: System.ValueType.Equals(Object) + nameWithType: object.Equals(object) + fullName: object.Equals(object) + nameWithType.vb: Object.Equals(Object) + fullName.vb: Object.Equals(Object) name.vb: Equals(Object) spec.csharp: - - uid: System.ValueType.Equals(System.Object) + - uid: System.Object.Equals(System.Object) name: Equals isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - name: ( - uid: System.Object name: object @@ -179,60 +128,16 @@ references: href: https://learn.microsoft.com/dotnet/api/system.object - name: ) spec.vb: - - uid: System.ValueType.Equals(System.Object) + - uid: System.Object.Equals(System.Object) name: Equals isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - name: ( - uid: System.Object name: Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ) -- uid: System.ValueType.GetHashCode - commentId: M:System.ValueType.GetHashCode - parent: System.ValueType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - name: GetHashCode() - nameWithType: ValueType.GetHashCode() - fullName: System.ValueType.GetHashCode() - spec.csharp: - - uid: System.ValueType.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - - name: ( - - name: ) - spec.vb: - - uid: System.ValueType.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - - name: ( - - name: ) -- uid: System.ValueType.ToString - commentId: M:System.ValueType.ToString - parent: System.ValueType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - name: ToString() - nameWithType: ValueType.ToString() - fullName: System.ValueType.ToString() - spec.csharp: - - uid: System.ValueType.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - - name: ( - - name: ) - spec.vb: - - uid: System.ValueType.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - - name: ( - - name: ) - uid: System.Object.Equals(System.Object,System.Object) commentId: M:System.Object.Equals(System.Object,System.Object) parent: System.Object @@ -278,6 +183,30 @@ references: isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ) +- uid: System.Object.GetHashCode + commentId: M:System.Object.GetHashCode + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + name: GetHashCode() + nameWithType: object.GetHashCode() + fullName: object.GetHashCode() + nameWithType.vb: Object.GetHashCode() + fullName.vb: Object.GetHashCode() + spec.csharp: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) - uid: System.Object.GetType commentId: M:System.Object.GetType parent: System.Object @@ -302,6 +231,30 @@ references: href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: ( - name: ) +- uid: System.Object.MemberwiseClone + commentId: M:System.Object.MemberwiseClone + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + name: MemberwiseClone() + nameWithType: object.MemberwiseClone() + fullName: object.MemberwiseClone() + nameWithType.vb: Object.MemberwiseClone() + fullName.vb: Object.MemberwiseClone() + spec.csharp: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) + spec.vb: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) - uid: System.Object.ReferenceEquals(System.Object,System.Object) commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) parent: System.Object @@ -347,25 +300,30 @@ references: isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ) -- uid: System.ValueType - commentId: T:System.ValueType - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype - name: ValueType - nameWithType: ValueType - fullName: System.ValueType -- uid: System.Object - commentId: T:System.Object - parent: System +- uid: System.Object.ToString + commentId: M:System.Object.ToString + parent: System.Object isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + name: ToString() + nameWithType: object.ToString() + fullName: object.ToString() + nameWithType.vb: Object.ToString() + fullName.vb: Object.ToString() + spec.csharp: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) + spec.vb: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) - uid: System commentId: N:System isExternal: true @@ -373,14 +331,23 @@ references: name: System nameWithType: System fullName: System -- uid: System.Int32 - commentId: T:System.Int32 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - name: int - nameWithType: int - fullName: int - nameWithType.vb: Integer - fullName.vb: Integer - name.vb: Integer +- uid: OpenTK.Platform.GraphicsApiHints.Api + commentId: P:OpenTK.Platform.GraphicsApiHints.Api + parent: OpenTK.Platform.GraphicsApiHints + href: OpenTK.Platform.GraphicsApiHints.html#OpenTK_Platform_GraphicsApiHints_Api + name: Api + nameWithType: GraphicsApiHints.Api + fullName: OpenTK.Platform.GraphicsApiHints.Api +- uid: OpenTK.Platform.VulkanGraphicsApiHints.Api* + commentId: Overload:OpenTK.Platform.VulkanGraphicsApiHints.Api + href: OpenTK.Platform.VulkanGraphicsApiHints.html#OpenTK_Platform_VulkanGraphicsApiHints_Api + name: Api + nameWithType: VulkanGraphicsApiHints.Api + fullName: OpenTK.Platform.VulkanGraphicsApiHints.Api +- uid: OpenTK.Platform.GraphicsApi + commentId: T:OpenTK.Platform.GraphicsApi + parent: OpenTK.Platform + href: OpenTK.Platform.GraphicsApi.html + name: GraphicsApi + nameWithType: GraphicsApi + fullName: OpenTK.Platform.GraphicsApi diff --git a/api/OpenTK.Platform.WindowTransparencyMode.yml b/api/OpenTK.Platform.WindowTransparencyMode.yml new file mode 100644 index 00000000..9b631ae1 --- /dev/null +++ b/api/OpenTK.Platform.WindowTransparencyMode.yml @@ -0,0 +1,201 @@ +### YamlMime:ManagedReference +items: +- uid: OpenTK.Platform.WindowTransparencyMode + commentId: T:OpenTK.Platform.WindowTransparencyMode + id: WindowTransparencyMode + parent: OpenTK.Platform + children: + - OpenTK.Platform.WindowTransparencyMode.Opaque + - OpenTK.Platform.WindowTransparencyMode.TransparentFramebuffer + - OpenTK.Platform.WindowTransparencyMode.TransparentWindow + langs: + - csharp + - vb + name: WindowTransparencyMode + nameWithType: WindowTransparencyMode + fullName: OpenTK.Platform.WindowTransparencyMode + type: Enum + source: + id: WindowTransparencyMode + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\WindowTransparencyMode.cs + startLine: 13 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: Represent possible transparency modes. + example: [] + syntax: + content: public enum WindowTransparencyMode + content.vb: Public Enum WindowTransparencyMode + seealso: + - linkId: OpenTK.Platform.IWindowComponent.SetTransparencyMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowTransparencyMode,System.Single) + commentId: M:OpenTK.Platform.IWindowComponent.SetTransparencyMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowTransparencyMode,System.Single) +- uid: OpenTK.Platform.WindowTransparencyMode.Opaque + commentId: F:OpenTK.Platform.WindowTransparencyMode.Opaque + id: Opaque + parent: OpenTK.Platform.WindowTransparencyMode + langs: + - csharp + - vb + name: Opaque + nameWithType: WindowTransparencyMode.Opaque + fullName: OpenTK.Platform.WindowTransparencyMode.Opaque + type: Field + source: + id: Opaque + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\WindowTransparencyMode.cs + startLine: 19 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: >- + The window is not transparent at all. + + This is the default. + example: [] + syntax: + content: Opaque = 0 + return: + type: OpenTK.Platform.WindowTransparencyMode +- uid: OpenTK.Platform.WindowTransparencyMode.TransparentFramebuffer + commentId: F:OpenTK.Platform.WindowTransparencyMode.TransparentFramebuffer + id: TransparentFramebuffer + parent: OpenTK.Platform.WindowTransparencyMode + langs: + - csharp + - vb + name: TransparentFramebuffer + nameWithType: WindowTransparencyMode.TransparentFramebuffer + fullName: OpenTK.Platform.WindowTransparencyMode.TransparentFramebuffer + type: Field + source: + id: TransparentFramebuffer + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\WindowTransparencyMode.cs + startLine: 25 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: >- + Use framebuffer alpha to alpha composit this window per-pixel. + + Window border is unaffected. + example: [] + syntax: + content: TransparentFramebuffer = 1 + return: + type: OpenTK.Platform.WindowTransparencyMode +- uid: OpenTK.Platform.WindowTransparencyMode.TransparentWindow + commentId: F:OpenTK.Platform.WindowTransparencyMode.TransparentWindow + id: TransparentWindow + parent: OpenTK.Platform.WindowTransparencyMode + langs: + - csharp + - vb + name: TransparentWindow + nameWithType: WindowTransparencyMode.TransparentWindow + fullName: OpenTK.Platform.WindowTransparencyMode.TransparentWindow + type: Field + source: + id: TransparentWindow + path: C:\Users\juliu\Documents\GitHub\opentk.net\website\opentk\src\OpenTK.Platform\Enums\WindowTransparencyMode.cs + startLine: 31 + assemblies: + - OpenTK.Platform + namespace: OpenTK.Platform + summary: >- + Make the entire window transparent. + + Use opacity argument to specify window opacity. + example: [] + syntax: + content: TransparentWindow = 2 + return: + type: OpenTK.Platform.WindowTransparencyMode +references: +- uid: OpenTK.Platform.IWindowComponent.SetTransparencyMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowTransparencyMode,System.Single) + commentId: M:OpenTK.Platform.IWindowComponent.SetTransparencyMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowTransparencyMode,System.Single) + parent: OpenTK.Platform.IWindowComponent + isExternal: true + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetTransparencyMode_OpenTK_Platform_WindowHandle_OpenTK_Platform_WindowTransparencyMode_System_Single_ + name: SetTransparencyMode(WindowHandle, WindowTransparencyMode, float) + nameWithType: IWindowComponent.SetTransparencyMode(WindowHandle, WindowTransparencyMode, float) + fullName: OpenTK.Platform.IWindowComponent.SetTransparencyMode(OpenTK.Platform.WindowHandle, OpenTK.Platform.WindowTransparencyMode, float) + nameWithType.vb: IWindowComponent.SetTransparencyMode(WindowHandle, WindowTransparencyMode, Single) + fullName.vb: OpenTK.Platform.IWindowComponent.SetTransparencyMode(OpenTK.Platform.WindowHandle, OpenTK.Platform.WindowTransparencyMode, Single) + name.vb: SetTransparencyMode(WindowHandle, WindowTransparencyMode, Single) + spec.csharp: + - uid: OpenTK.Platform.IWindowComponent.SetTransparencyMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowTransparencyMode,System.Single) + name: SetTransparencyMode + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetTransparencyMode_OpenTK_Platform_WindowHandle_OpenTK_Platform_WindowTransparencyMode_System_Single_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: OpenTK.Platform.WindowTransparencyMode + name: WindowTransparencyMode + href: OpenTK.Platform.WindowTransparencyMode.html + - name: ',' + - name: " " + - uid: System.Single + name: float + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.single + - name: ) + spec.vb: + - uid: OpenTK.Platform.IWindowComponent.SetTransparencyMode(OpenTK.Platform.WindowHandle,OpenTK.Platform.WindowTransparencyMode,System.Single) + name: SetTransparencyMode + href: OpenTK.Platform.IWindowComponent.html#OpenTK_Platform_IWindowComponent_SetTransparencyMode_OpenTK_Platform_WindowHandle_OpenTK_Platform_WindowTransparencyMode_System_Single_ + - name: ( + - uid: OpenTK.Platform.WindowHandle + name: WindowHandle + href: OpenTK.Platform.WindowHandle.html + - name: ',' + - name: " " + - uid: OpenTK.Platform.WindowTransparencyMode + name: WindowTransparencyMode + href: OpenTK.Platform.WindowTransparencyMode.html + - name: ',' + - name: " " + - uid: System.Single + name: Single + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.single + - name: ) +- uid: OpenTK.Platform + commentId: N:OpenTK.Platform + href: OpenTK.html + name: OpenTK.Platform + nameWithType: OpenTK.Platform + fullName: OpenTK.Platform + spec.csharp: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Platform + name: Platform + href: OpenTK.Platform.html + spec.vb: + - uid: OpenTK + name: OpenTK + href: OpenTK.html + - name: . + - uid: OpenTK.Platform + name: Platform + href: OpenTK.Platform.html +- uid: OpenTK.Platform.IWindowComponent + commentId: T:OpenTK.Platform.IWindowComponent + parent: OpenTK.Platform + href: OpenTK.Platform.IWindowComponent.html + name: IWindowComponent + nameWithType: IWindowComponent + fullName: OpenTK.Platform.IWindowComponent +- uid: OpenTK.Platform.WindowTransparencyMode + commentId: T:OpenTK.Platform.WindowTransparencyMode + parent: OpenTK.Platform + href: OpenTK.Platform.WindowTransparencyMode.html + name: WindowTransparencyMode + nameWithType: WindowTransparencyMode + fullName: OpenTK.Platform.WindowTransparencyMode diff --git a/api/OpenTK.Platform.yml b/api/OpenTK.Platform.yml index 081f419f..024fd886 100644 --- a/api/OpenTK.Platform.yml +++ b/api/OpenTK.Platform.yml @@ -100,6 +100,7 @@ items: - OpenTK.Platform.ToolkitOptions.WindowsOptions - OpenTK.Platform.ToolkitOptions.X11Options - OpenTK.Platform.VideoMode + - OpenTK.Platform.VulkanGraphicsApiHints - OpenTK.Platform.WindowBorderStyle - OpenTK.Platform.WindowEventArgs - OpenTK.Platform.WindowEventHandler @@ -110,6 +111,7 @@ items: - OpenTK.Platform.WindowMoveEventArgs - OpenTK.Platform.WindowResizeEventArgs - OpenTK.Platform.WindowScaleChangeEventArgs + - OpenTK.Platform.WindowTransparencyMode langs: - csharp - vb @@ -392,6 +394,13 @@ references: name: WindowMode nameWithType: WindowMode fullName: OpenTK.Platform.WindowMode +- uid: OpenTK.Platform.WindowTransparencyMode + commentId: T:OpenTK.Platform.WindowTransparencyMode + parent: OpenTK.Platform + href: OpenTK.Platform.WindowTransparencyMode.html + name: WindowTransparencyMode + nameWithType: WindowTransparencyMode + fullName: OpenTK.Platform.WindowTransparencyMode - uid: OpenTK.Platform.PlatformEventHandler commentId: T:OpenTK.Platform.PlatformEventHandler parent: OpenTK.Platform @@ -729,6 +738,12 @@ references: name: VideoMode nameWithType: VideoMode fullName: OpenTK.Platform.VideoMode +- uid: OpenTK.Platform.VulkanGraphicsApiHints + commentId: T:OpenTK.Platform.VulkanGraphicsApiHints + href: OpenTK.Platform.VulkanGraphicsApiHints.html + name: VulkanGraphicsApiHints + nameWithType: VulkanGraphicsApiHints + fullName: OpenTK.Platform.VulkanGraphicsApiHints - uid: OpenTK.Platform.WindowEventArgs commentId: T:OpenTK.Platform.WindowEventArgs parent: OpenTK.Platform diff --git a/api/toc.yml b/api/toc.yml index 86ffff9b..a7a638b3 100644 --- a/api/toc.yml +++ b/api/toc.yml @@ -313,6 +313,10 @@ items: name: CLEvent - uid: OpenTK.Graphics.DisplayListHandle name: DisplayListHandle + - uid: OpenTK.Graphics.EGLLoader + name: EGLLoader + - uid: OpenTK.Graphics.EGLLoader.BindingsContext + name: EGLLoader.BindingsContext - uid: OpenTK.Graphics.FramebufferHandle name: FramebufferHandle - uid: OpenTK.Graphics.GLHandleARB @@ -353,181 +357,6 @@ items: name: WGLLoader - uid: OpenTK.Graphics.WGLLoader.BindingsContext name: WGLLoader.BindingsContext -- uid: OpenTK.Graphics.Egl - name: OpenTK.Graphics.Egl - items: - - uid: OpenTK.Graphics.Egl.Egl - name: Egl - - uid: OpenTK.Graphics.Egl.EglException - name: EglException - - uid: OpenTK.Graphics.Egl.ErrorCode - name: ErrorCode - - uid: OpenTK.Graphics.Egl.RenderApi - name: RenderApi - - uid: OpenTK.Graphics.Egl.RenderableFlags - name: RenderableFlags - - uid: OpenTK.Graphics.Egl.SurfaceType - name: SurfaceType -- uid: OpenTK.Graphics.Glx - name: OpenTK.Graphics.Glx - items: - - uid: OpenTK.Graphics.Glx.All - name: All - - uid: OpenTK.Graphics.Glx.Colormap - name: Colormap - - uid: OpenTK.Graphics.Glx.DisplayPtr - name: DisplayPtr - - uid: OpenTK.Graphics.Glx.Font - name: Font - - uid: OpenTK.Graphics.Glx.GLXAttribute - name: GLXAttribute - - uid: OpenTK.Graphics.Glx.GLXContext - name: GLXContext - - uid: OpenTK.Graphics.Glx.GLXContextID - name: GLXContextID - - uid: OpenTK.Graphics.Glx.GLXDrawable - name: GLXDrawable - - uid: OpenTK.Graphics.Glx.GLXFBConfig - name: GLXFBConfig - - uid: OpenTK.Graphics.Glx.GLXFBConfigID - name: GLXFBConfigID - - uid: OpenTK.Graphics.Glx.GLXFBConfigIDSGIX - name: GLXFBConfigIDSGIX - - uid: OpenTK.Graphics.Glx.GLXFBConfigSGIX - name: GLXFBConfigSGIX - - uid: OpenTK.Graphics.Glx.GLXHyperpipeConfigSGIX - name: GLXHyperpipeConfigSGIX - - uid: OpenTK.Graphics.Glx.GLXHyperpipeNetworkSGIX - name: GLXHyperpipeNetworkSGIX - - uid: OpenTK.Graphics.Glx.GLXPbuffer - name: GLXPbuffer - - uid: OpenTK.Graphics.Glx.GLXPbufferSGIX - name: GLXPbufferSGIX - - uid: OpenTK.Graphics.Glx.GLXPixmap - name: GLXPixmap - - uid: OpenTK.Graphics.Glx.GLXVideoCaptureDeviceNV - name: GLXVideoCaptureDeviceNV - - uid: OpenTK.Graphics.Glx.GLXVideoDeviceNV - name: GLXVideoDeviceNV - - uid: OpenTK.Graphics.Glx.GLXVideoSourceSGIX - name: GLXVideoSourceSGIX - - uid: OpenTK.Graphics.Glx.GLXWindow - name: GLXWindow - - uid: OpenTK.Graphics.Glx.Glx - name: Glx - - uid: OpenTK.Graphics.Glx.Glx.AMD - name: Glx.AMD - - uid: OpenTK.Graphics.Glx.Glx.ARB - name: Glx.ARB - - uid: OpenTK.Graphics.Glx.Glx.EXT - name: Glx.EXT - - uid: OpenTK.Graphics.Glx.Glx.MESA - name: Glx.MESA - - uid: OpenTK.Graphics.Glx.Glx.NV - name: Glx.NV - - uid: OpenTK.Graphics.Glx.Glx.OML - name: Glx.OML - - uid: OpenTK.Graphics.Glx.Glx.SGI - name: Glx.SGI - - uid: OpenTK.Graphics.Glx.Glx.SGIX - name: Glx.SGIX - - uid: OpenTK.Graphics.Glx.Glx.SUN - name: Glx.SUN - - uid: OpenTK.Graphics.Glx.GlxPointers - name: GlxPointers - - uid: OpenTK.Graphics.Glx.Pixmap - name: Pixmap - - uid: OpenTK.Graphics.Glx.ScreenPtr - name: ScreenPtr - - uid: OpenTK.Graphics.Glx.Window - name: Window - - uid: OpenTK.Graphics.Glx.XVisualInfoPtr - name: XVisualInfoPtr -- uid: OpenTK.Graphics.Wgl - name: OpenTK.Graphics.Wgl - items: - - uid: OpenTK.Graphics.Wgl.AccelerationType - name: AccelerationType - - uid: OpenTK.Graphics.Wgl.All - name: All - - uid: OpenTK.Graphics.Wgl.ColorBuffer - name: ColorBuffer - - uid: OpenTK.Graphics.Wgl.ColorBufferMask - name: ColorBufferMask - - uid: OpenTK.Graphics.Wgl.ColorRef - name: ColorRef - - uid: OpenTK.Graphics.Wgl.ContextAttribs - name: ContextAttribs - - uid: OpenTK.Graphics.Wgl.ContextAttribute - name: ContextAttribute - - uid: OpenTK.Graphics.Wgl.ContextFlagsMask - name: ContextFlagsMask - - uid: OpenTK.Graphics.Wgl.ContextProfileMask - name: ContextProfileMask - - uid: OpenTK.Graphics.Wgl.DXInteropMaskNV - name: DXInteropMaskNV - - uid: OpenTK.Graphics.Wgl.DigitalVideoAttribute - name: DigitalVideoAttribute - - uid: OpenTK.Graphics.Wgl.FontFormat - name: FontFormat - - uid: OpenTK.Graphics.Wgl.GPUPropertyAMD - name: GPUPropertyAMD - - uid: OpenTK.Graphics.Wgl.GammaTableAttribute - name: GammaTableAttribute - - uid: OpenTK.Graphics.Wgl.ImageBufferMaskI3D - name: ImageBufferMaskI3D - - uid: OpenTK.Graphics.Wgl.LayerPlaneDescriptor - name: LayerPlaneDescriptor - - uid: OpenTK.Graphics.Wgl.LayerPlaneMask - name: LayerPlaneMask - - uid: OpenTK.Graphics.Wgl.ObjectTypeDX - name: ObjectTypeDX - - uid: OpenTK.Graphics.Wgl.PBufferAttribute - name: PBufferAttribute - - uid: OpenTK.Graphics.Wgl.PBufferCubeMapFace - name: PBufferCubeMapFace - - uid: OpenTK.Graphics.Wgl.PBufferTextureFormat - name: PBufferTextureFormat - - uid: OpenTK.Graphics.Wgl.PBufferTextureTarget - name: PBufferTextureTarget - - uid: OpenTK.Graphics.Wgl.PixelFormatAttribute - name: PixelFormatAttribute - - uid: OpenTK.Graphics.Wgl.PixelFormatDescriptor - name: PixelFormatDescriptor - - uid: OpenTK.Graphics.Wgl.PixelType - name: PixelType - - uid: OpenTK.Graphics.Wgl.Rect - name: Rect - - uid: OpenTK.Graphics.Wgl.StereoEmitterState - name: StereoEmitterState - - uid: OpenTK.Graphics.Wgl.SwapMethod - name: SwapMethod - - uid: OpenTK.Graphics.Wgl.VideoCaptureDeviceAttribute - name: VideoCaptureDeviceAttribute - - uid: OpenTK.Graphics.Wgl.VideoOutputBuffer - name: VideoOutputBuffer - - uid: OpenTK.Graphics.Wgl.VideoOutputBufferType - name: VideoOutputBufferType - - uid: OpenTK.Graphics.Wgl.Wgl - name: Wgl - - uid: OpenTK.Graphics.Wgl.Wgl.AMD - name: Wgl.AMD - - uid: OpenTK.Graphics.Wgl.Wgl.ARB - name: Wgl.ARB - - uid: OpenTK.Graphics.Wgl.Wgl.EXT - name: Wgl.EXT - - uid: OpenTK.Graphics.Wgl.Wgl.I3D - name: Wgl.I3D - - uid: OpenTK.Graphics.Wgl.Wgl.NV - name: Wgl.NV - - uid: OpenTK.Graphics.Wgl.Wgl.OML - name: Wgl.OML - - uid: OpenTK.Graphics.Wgl.Wgl._3DL - name: Wgl._3DL - - uid: OpenTK.Graphics.Wgl.WglPointers - name: WglPointers - - uid: OpenTK.Graphics.Wgl._GPU_DEVICE - name: _GPU_DEVICE - uid: OpenTK.Input.Hid name: OpenTK.Input.Hid items: @@ -849,6 +678,8 @@ items: name: ToolkitOptions.X11Options - uid: OpenTK.Platform.VideoMode name: VideoMode + - uid: OpenTK.Platform.VulkanGraphicsApiHints + name: VulkanGraphicsApiHints - uid: OpenTK.Platform.WindowBorderStyle name: WindowBorderStyle - uid: OpenTK.Platform.WindowEventArgs @@ -869,6 +700,8 @@ items: name: WindowResizeEventArgs - uid: OpenTK.Platform.WindowScaleChangeEventArgs name: WindowScaleChangeEventArgs + - uid: OpenTK.Platform.WindowTransparencyMode + name: WindowTransparencyMode - uid: OpenTK.Platform.Native name: OpenTK.Platform.Native items: @@ -927,15 +760,19 @@ items: name: OpenGLComponent - uid: OpenTK.Platform.Native.Windows.ShellComponent name: ShellComponent - - uid: OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce - name: ShellComponent.CornerPrefernce + - uid: OpenTK.Platform.Native.Windows.ShellComponent.CornerPreference + name: ShellComponent.CornerPreference - uid: OpenTK.Platform.Native.Windows.WindowComponent name: WindowComponent - uid: OpenTK.Platform.Native.X11 name: OpenTK.Platform.Native.X11 items: + - uid: OpenTK.Platform.Native.X11.LibXcb + name: LibXcb - uid: OpenTK.Platform.Native.X11.X11ClipboardComponent name: X11ClipboardComponent + - uid: OpenTK.Platform.Native.X11.X11ClipboardComponent.IPngCodec + name: X11ClipboardComponent.IPngCodec - uid: OpenTK.Platform.Native.X11.X11CursorComponent name: X11CursorComponent - uid: OpenTK.Platform.Native.X11.X11DialogComponent @@ -954,6 +791,8 @@ items: name: X11OpenGLComponent - uid: OpenTK.Platform.Native.X11.X11ShellComponent name: X11ShellComponent + - uid: OpenTK.Platform.Native.X11.X11VulkanComponent + name: X11VulkanComponent - uid: OpenTK.Platform.Native.X11.X11WindowComponent name: X11WindowComponent - uid: OpenTK.Platform.Native.macOS @@ -979,6 +818,8 @@ items: name: MacOSOpenGLComponent - uid: OpenTK.Platform.Native.macOS.MacOSShellComponent name: MacOSShellComponent + - uid: OpenTK.Platform.Native.macOS.MacOSVulkanComponent + name: MacOSVulkanComponent - uid: OpenTK.Platform.Native.macOS.MacOSWindowComponent name: MacOSWindowComponent - uid: OpenTK.Windowing.Common diff --git a/filterConfig.yml b/filterConfig.yml index 11fd96e9..aa917a7e 100644 --- a/filterConfig.yml +++ b/filterConfig.yml @@ -9,3 +9,9 @@ apiRules: uidRegex: ^OpenTK\.Graphics\.OpenGL\.Compatibility - exclude: uidRegex: ^OpenTK\.Graphics\.Vulkan +- exclude: + uidRegex: ^OpenTK\.Graphics\.Glx +- exclude: + uidRegex: ^OpenTK\.Graphics\.Wgl +- exclude: + uidRegex: ^OpenTK\.Graphics\.Egl diff --git a/opentk b/opentk index ad975255..f6652e6c 160000 --- a/opentk +++ b/opentk @@ -1 +1 @@ -Subproject commit ad975255d926bf5344bd0453276d83efd0bb01c5 +Subproject commit f6652e6c493587fe174d379e9b553176b114b163 From c24c2f773ad207beecd3f83859c157a8d903917d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julius=20H=C3=A4ger?= Date: Mon, 11 Nov 2024 23:03:36 +0100 Subject: [PATCH 38/38] Updated website template and fixed css to be more 'standard'. --- docfx.json | 7 +- learn/pal2/Platform-Specific-Settings.md | 2 +- overrides/partials/head.tmpl.partial | 45 +- overrides/partials/navbar.tmpl.partial | 10 +- overrides/styles/docfx.vendor.css | 1464 ---------------------- overrides/styles/main.css | 19 + 6 files changed, 58 insertions(+), 1489 deletions(-) delete mode 100644 overrides/styles/docfx.vendor.css create mode 100644 overrides/styles/main.css diff --git a/docfx.json b/docfx.json index 0620a905..cfb4053a 100644 --- a/docfx.json +++ b/docfx.json @@ -60,7 +60,11 @@ } ], "dest": "../Website_GhPages", - "globalMetadata": {"_disableContribution": true}, + "globalMetadata": { + "_appTitle": "OpenTK", + "_appName": "", + "_disableContribution": true + }, "globalMetadataFiles": [], "fileMetadataFiles": [], "template": [ @@ -71,7 +75,6 @@ "markdownEngineName": "markdig", "noLangKeyword": false, "keepFileLink": false, - "cleanupCacheHistory": false, "disableGitFeatures": false } } diff --git a/learn/pal2/Platform-Specific-Settings.md b/learn/pal2/Platform-Specific-Settings.md index f1fd69a8..b277e850 100644 --- a/learn/pal2/Platform-Specific-Settings.md +++ b/learn/pal2/Platform-Specific-Settings.md @@ -28,7 +28,7 @@ The following is a list of windows specific settings and functions. |[`ShellComponent.SetImmersiveDarkMode`](xref:OpenTK.Platform.Native.Windows.ShellComponent.SetImmersiveDarkMode(OpenTK.Platform.WindowHandle,System.Boolean))|Sets the `DWMWA_USE_IMMERSIVE_DARK_MODE` flag on the window causing the titlebar be rendered in dark mode colors. This is only officially supported from Window 11 Build 220000, but can sometimes work on Windows 10.| |[`ShellComponent.SetCaptionTextColor`](xref:OpenTK.Platform.Native.Windows.ShellComponent.SetCaptionTextColor(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Color3{OpenTK.Mathematics.Rgb}))|Used to set the text color in the windows titlebar. This is only officially supported from Window 11 Build 220000, but can sometimes work on Windows 10.| |[`ShellComponent.SetCaptionColor`](xref:OpenTK.Platform.Native.Windows.ShellComponent.SetCaptionColor(OpenTK.Platform.WindowHandle,OpenTK.Mathematics.Color3{OpenTK.Mathematics.Rgb}))|Used to set the color of the window titlebar. This is only officially supported from Window 11 Build 220000, but can sometimes work on Windows 10.| -|[`ShellComponent.SetWindowCornerPreference`](xref:OpenTK.Platform.Native.Windows.ShellComponent.SetWindowCornerPreference(OpenTK.Platform.WindowHandle,OpenTK.Platform.Native.Windows.ShellComponent.CornerPrefernce))|Used to set the rounded corner preference on Windows 11.| +|[`ShellComponent.SetWindowCornerPreference`](xref:OpenTK.Platform.Native.Windows.ShellComponent.SetWindowCornerPreference(OpenTK.Platform.WindowHandle,OpenTK.Platform.Native.Windows.ShellComponent.CornerPreference))|Used to set the rounded corner preference on Windows 11.| |`IconComponent`| | |[`IconComponent.CreateFromIcoFile`](xref:OpenTK.Platform.Native.Windows.IconComponent.CreateFromIcoFile(System.String))|Used to create an `IconHandle` from a `.ico` file. An icon created using this function will be able to dynamically pick resolution if the file contains multiple resolutions.| |[`IconComponent.CreateFromIcoResource(byte[])`](xref:OpenTK.Platform.Native.Windows.IconComponent.CreateFromIcoResource(System.Byte[]))|Used to create an `IconHandle` from a `.ico` file embedded as a `.resx` resource. An Icon created using this function will **not** be able to dynamically pick resolution.| diff --git a/overrides/partials/head.tmpl.partial b/overrides/partials/head.tmpl.partial index c9630c13..f9fa9330 100644 --- a/overrides/partials/head.tmpl.partial +++ b/overrides/partials/head.tmpl.partial @@ -2,22 +2,35 @@ - - {{#title}}{{title}}{{/title}}{{^title}}{{>partials/title}}{{/title}} {{#_appTitle}}| {{_appTitle}} {{/_appTitle}} - OpenTK - - - - {{#_description}}{{/_description}} - - - - - - - {{#_noindex}}{{/_noindex}} - {{#_enableSearch}}{{/_enableSearch}} - {{#_enableNewTab}}{{/_enableNewTab}} - + {{#_googleAnalyticsTagId}} + + + {{/_googleAnalyticsTagId}} + {{#redirect_url}} + + {{/redirect_url}} + {{^redirect_url}} + + {{#title}}{{title}}{{/title}}{{^title}}{{>partials/title}}{{/title}} {{#_appTitle}}| {{_appTitle}} {{/_appTitle}} + + + {{#_description}}{{/_description}} + {{#description}}{{/description}} + + + + + + + {{#_noindex}}{{/_noindex}} + {{#_enableSearch}}{{/_enableSearch}} + {{#_enableNewTab}}{{/_enableNewTab}} + {{/redirect_url}} diff --git a/overrides/partials/navbar.tmpl.partial b/overrides/partials/navbar.tmpl.partial index fb08a1cc..8f2e2ea4 100644 --- a/overrides/partials/navbar.tmpl.partial +++ b/overrides/partials/navbar.tmpl.partial @@ -1,10 +1,7 @@ {{!Copyright (c) Microsoft. All rights reserved. Licensed under the MIT license. See LICENSE file in the project root for full license information.}} - \ No newline at end of file diff --git a/overrides/styles/docfx.vendor.css b/overrides/styles/docfx.vendor.css deleted file mode 100644 index f5af77b0..00000000 --- a/overrides/styles/docfx.vendor.css +++ /dev/null @@ -1,1464 +0,0 @@ -/*! - * Bootstrap v3.3.7 (http://getbootstrap.com) - * Copyright 2011-2016 Twitter, Inc. - * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) - */ -/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */ -.label,sub,sup{vertical-align:baseline} -hr,img{border:0} -body,figure{margin:0} -.btn-group>.btn-group,.btn-toolbar .btn,.btn-toolbar .btn-group,.btn-toolbar .input-group,.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9,.dropdown-menu{float:left} -.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse,.pre-scrollable{max-height:340px} -html{font-family:sans-serif;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%} -article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block} -audio,canvas,progress,video{display:inline-block;vertical-align:baseline} -audio:not([controls]){display:none;height:0} -[hidden],template{display:none} -a{background-color:transparent} -a:active,a:hover{outline:0} -b,optgroup,strong{font-weight:700} -dfn{font-style:italic} -h1{margin:.67em 0} -mark{color:#000;background:#ff0} -sub,sup{position:relative;font-size:75%;line-height:0} -sup{top:-.5em} -sub{bottom:-.25em} -img{vertical-align:middle} -svg:not(:root){overflow:hidden} -hr{height:0;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box} -pre,textarea{overflow:auto} -code,kbd,pre,samp{font-size:1em} -button,input,optgroup,select,textarea{margin:0;font:inherit;color:inherit} -.glyphicon,address{font-style:normal} -button{overflow:visible} -button,select{text-transform:none} -button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer} -button[disabled],html input[disabled]{cursor:default} -button::-moz-focus-inner,input::-moz-focus-inner{padding:0;border:0} -input[type=checkbox],input[type=radio]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:0} -input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto} -input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none} -table{border-spacing:0;border-collapse:collapse} -td,th{padding:0} -/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */ -@media print{blockquote,img,pre,tr{page-break-inside:avoid} -*,:after,:before{color:#000!important;text-shadow:none!important;background:0 0!important;-webkit-box-shadow:none!important;box-shadow:none!important} -a,a:visited{text-decoration:underline} -a[href]:after{content:" (" attr(href) ")"} -abbr[title]:after{content:" (" attr(title) ")"} -a[href^="javascript:"]:after,a[href^="#"]:after{content:""} -blockquote,pre{border:1px solid #999} -thead{display:table-header-group} -img{max-width:100%!important} -h2,h3,p{orphans:3;widows:3} -h2,h3{page-break-after:avoid} -.navbar{display:none} -.btn>.caret,.dropup>.btn>.caret{border-top-color:#000!important} -.label{border:1px solid #000} -.table{border-collapse:collapse!important} -.table td,.table th{background-color:#fff!important} -.table-bordered td,.table-bordered th{border:1px solid #ddd!important} -} -.dropdown-menu,.modal-content{-webkit-background-clip:padding-box} -.btn,.btn-danger.active,.btn-danger:active,.btn-default.active,.btn-default:active,.btn-info.active,.btn-info:active,.btn-primary.active,.btn-primary:active,.btn-warning.active,.btn-warning:active,.btn.active,.btn:active,.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover,.form-control,.navbar-toggle,.open>.dropdown-toggle.btn-danger,.open>.dropdown-toggle.btn-default,.open>.dropdown-toggle.btn-info,.open>.dropdown-toggle.btn-primary,.open>.dropdown-toggle.btn-warning{background-image:none} -.img-thumbnail,body{background-color:#fff} -@font-face{font-family:'Glyphicons Halflings';src:url(../fonts/glyphicons-halflings-regular.eot);src:url(../fonts/glyphicons-halflings-regular.eot?#iefix) format('embedded-opentype'),url(../fonts/glyphicons-halflings-regular.woff2) format('woff2'),url(../fonts/glyphicons-halflings-regular.woff) format('woff'),url(../fonts/glyphicons-halflings-regular.ttf) format('truetype'),url(../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular) format('svg')} -.glyphicon{position:relative;top:1px;display:inline-block;font-family:'Glyphicons Halflings';font-weight:400;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale} -.glyphicon-asterisk:before{content:"\002a"} -.glyphicon-plus:before{content:"\002b"} -.glyphicon-eur:before,.glyphicon-euro:before{content:"\20ac"} -.glyphicon-minus:before{content:"\2212"} -.glyphicon-cloud:before{content:"\2601"} -.glyphicon-envelope:before{content:"\2709"} -.glyphicon-pencil:before{content:"\270f"} -.glyphicon-glass:before{content:"\e001"} -.glyphicon-music:before{content:"\e002"} -.glyphicon-search:before{content:"\e003"} -.glyphicon-heart:before{content:"\e005"} -.glyphicon-star:before{content:"\e006"} -.glyphicon-star-empty:before{content:"\e007"} -.glyphicon-user:before{content:"\e008"} -.glyphicon-film:before{content:"\e009"} -.glyphicon-th-large:before{content:"\e010"} -.glyphicon-th:before{content:"\e011"} -.glyphicon-th-list:before{content:"\e012"} -.glyphicon-ok:before{content:"\e013"} -.glyphicon-remove:before{content:"\e014"} -.glyphicon-zoom-in:before{content:"\e015"} -.glyphicon-zoom-out:before{content:"\e016"} -.glyphicon-off:before{content:"\e017"} -.glyphicon-signal:before{content:"\e018"} -.glyphicon-cog:before{content:"\e019"} -.glyphicon-trash:before{content:"\e020"} -.glyphicon-home:before{content:"\e021"} -.glyphicon-file:before{content:"\e022"} -.glyphicon-time:before{content:"\e023"} -.glyphicon-road:before{content:"\e024"} -.glyphicon-download-alt:before{content:"\e025"} -.glyphicon-download:before{content:"\e026"} -.glyphicon-upload:before{content:"\e027"} -.glyphicon-inbox:before{content:"\e028"} -.glyphicon-play-circle:before{content:"\e029"} -.glyphicon-repeat:before{content:"\e030"} -.glyphicon-refresh:before{content:"\e031"} -.glyphicon-list-alt:before{content:"\e032"} -.glyphicon-lock:before{content:"\e033"} -.glyphicon-flag:before{content:"\e034"} -.glyphicon-headphones:before{content:"\e035"} -.glyphicon-volume-off:before{content:"\e036"} -.glyphicon-volume-down:before{content:"\e037"} -.glyphicon-volume-up:before{content:"\e038"} -.glyphicon-qrcode:before{content:"\e039"} -.glyphicon-barcode:before{content:"\e040"} -.glyphicon-tag:before{content:"\e041"} -.glyphicon-tags:before{content:"\e042"} -.glyphicon-book:before{content:"\e043"} -.glyphicon-bookmark:before{content:"\e044"} -.glyphicon-print:before{content:"\e045"} -.glyphicon-camera:before{content:"\e046"} -.glyphicon-font:before{content:"\e047"} -.glyphicon-bold:before{content:"\e048"} -.glyphicon-italic:before{content:"\e049"} -.glyphicon-text-height:before{content:"\e050"} -.glyphicon-text-width:before{content:"\e051"} -.glyphicon-align-left:before{content:"\e052"} -.glyphicon-align-center:before{content:"\e053"} -.glyphicon-align-right:before{content:"\e054"} -.glyphicon-align-justify:before{content:"\e055"} -.glyphicon-list:before{content:"\e056"} -.glyphicon-indent-left:before{content:"\e057"} -.glyphicon-indent-right:before{content:"\e058"} -.glyphicon-facetime-video:before{content:"\e059"} -.glyphicon-picture:before{content:"\e060"} -.glyphicon-map-marker:before{content:"\e062"} -.glyphicon-adjust:before{content:"\e063"} -.glyphicon-tint:before{content:"\e064"} -.glyphicon-edit:before{content:"\e065"} -.glyphicon-share:before{content:"\e066"} -.glyphicon-check:before{content:"\e067"} -.glyphicon-move:before{content:"\e068"} -.glyphicon-step-backward:before{content:"\e069"} -.glyphicon-fast-backward:before{content:"\e070"} -.glyphicon-backward:before{content:"\e071"} -.glyphicon-play:before{content:"\e072"} -.glyphicon-pause:before{content:"\e073"} -.glyphicon-stop:before{content:"\e074"} -.glyphicon-forward:before{content:"\e075"} -.glyphicon-fast-forward:before{content:"\e076"} -.glyphicon-step-forward:before{content:"\e077"} -.glyphicon-eject:before{content:"\e078"} -.glyphicon-chevron-left:before{content:"\e079"} -.glyphicon-chevron-right:before{content:"\e080"} -.glyphicon-plus-sign:before{content:"\e081"} -.glyphicon-minus-sign:before{content:"\e082"} -.glyphicon-remove-sign:before{content:"\e083"} -.glyphicon-ok-sign:before{content:"\e084"} -.glyphicon-question-sign:before{content:"\e085"} -.glyphicon-info-sign:before{content:"\e086"} -.glyphicon-screenshot:before{content:"\e087"} -.glyphicon-remove-circle:before{content:"\e088"} -.glyphicon-ok-circle:before{content:"\e089"} -.glyphicon-ban-circle:before{content:"\e090"} -.glyphicon-arrow-left:before{content:"\e091"} -.glyphicon-arrow-right:before{content:"\e092"} -.glyphicon-arrow-up:before{content:"\e093"} -.glyphicon-arrow-down:before{content:"\e094"} -.glyphicon-share-alt:before{content:"\e095"} -.glyphicon-resize-full:before{content:"\e096"} -.glyphicon-resize-small:before{content:"\e097"} -.glyphicon-exclamation-sign:before{content:"\e101"} -.glyphicon-gift:before{content:"\e102"} -.glyphicon-leaf:before{content:"\e103"} -.glyphicon-fire:before{content:"\e104"} -.glyphicon-eye-open:before{content:"\e105"} -.glyphicon-eye-close:before{content:"\e106"} -.glyphicon-warning-sign:before{content:"\e107"} -.glyphicon-plane:before{content:"\e108"} -.glyphicon-calendar:before{content:"\e109"} -.glyphicon-random:before{content:"\e110"} -.glyphicon-comment:before{content:"\e111"} -.glyphicon-magnet:before{content:"\e112"} -.glyphicon-chevron-up:before{content:"\e113"} -.glyphicon-chevron-down:before{content:"\e114"} -.glyphicon-retweet:before{content:"\e115"} -.glyphicon-shopping-cart:before{content:"\e116"} -.glyphicon-folder-close:before{content:"\e117"} -.glyphicon-folder-open:before{content:"\e118"} -.glyphicon-resize-vertical:before{content:"\e119"} -.glyphicon-resize-horizontal:before{content:"\e120"} -.glyphicon-hdd:before{content:"\e121"} -.glyphicon-bullhorn:before{content:"\e122"} -.glyphicon-bell:before{content:"\e123"} -.glyphicon-certificate:before{content:"\e124"} -.glyphicon-thumbs-up:before{content:"\e125"} -.glyphicon-thumbs-down:before{content:"\e126"} -.glyphicon-hand-right:before{content:"\e127"} -.glyphicon-hand-left:before{content:"\e128"} -.glyphicon-hand-up:before{content:"\e129"} -.glyphicon-hand-down:before{content:"\e130"} -.glyphicon-circle-arrow-right:before{content:"\e131"} -.glyphicon-circle-arrow-left:before{content:"\e132"} -.glyphicon-circle-arrow-up:before{content:"\e133"} -.glyphicon-circle-arrow-down:before{content:"\e134"} -.glyphicon-globe:before{content:"\e135"} -.glyphicon-wrench:before{content:"\e136"} -.glyphicon-tasks:before{content:"\e137"} -.glyphicon-filter:before{content:"\e138"} -.glyphicon-briefcase:before{content:"\e139"} -.glyphicon-fullscreen:before{content:"\e140"} -.glyphicon-dashboard:before{content:"\e141"} -.glyphicon-paperclip:before{content:"\e142"} -.glyphicon-heart-empty:before{content:"\e143"} -.glyphicon-link:before{content:"\e144"} -.glyphicon-phone:before{content:"\e145"} -.glyphicon-pushpin:before{content:"\e146"} -.glyphicon-usd:before{content:"\e148"} -.glyphicon-gbp:before{content:"\e149"} -.glyphicon-sort:before{content:"\e150"} -.glyphicon-sort-by-alphabet:before{content:"\e151"} -.glyphicon-sort-by-alphabet-alt:before{content:"\e152"} -.glyphicon-sort-by-order:before{content:"\e153"} -.glyphicon-sort-by-order-alt:before{content:"\e154"} -.glyphicon-sort-by-attributes:before{content:"\e155"} -.glyphicon-sort-by-attributes-alt:before{content:"\e156"} -.glyphicon-unchecked:before{content:"\e157"} -.glyphicon-expand:before{content:"\e158"} -.glyphicon-collapse-down:before{content:"\e159"} -.glyphicon-collapse-up:before{content:"\e160"} -.glyphicon-log-in:before{content:"\e161"} -.glyphicon-flash:before{content:"\e162"} -.glyphicon-log-out:before{content:"\e163"} -.glyphicon-new-window:before{content:"\e164"} -.glyphicon-record:before{content:"\e165"} -.glyphicon-save:before{content:"\e166"} -.glyphicon-open:before{content:"\e167"} -.glyphicon-saved:before{content:"\e168"} -.glyphicon-import:before{content:"\e169"} -.glyphicon-export:before{content:"\e170"} -.glyphicon-send:before{content:"\e171"} -.glyphicon-floppy-disk:before{content:"\e172"} -.glyphicon-floppy-saved:before{content:"\e173"} -.glyphicon-floppy-remove:before{content:"\e174"} -.glyphicon-floppy-save:before{content:"\e175"} -.glyphicon-floppy-open:before{content:"\e176"} -.glyphicon-credit-card:before{content:"\e177"} -.glyphicon-transfer:before{content:"\e178"} -.glyphicon-cutlery:before{content:"\e179"} -.glyphicon-header:before{content:"\e180"} -.glyphicon-compressed:before{content:"\e181"} -.glyphicon-earphone:before{content:"\e182"} -.glyphicon-phone-alt:before{content:"\e183"} -.glyphicon-tower:before{content:"\e184"} -.glyphicon-stats:before{content:"\e185"} -.glyphicon-sd-video:before{content:"\e186"} -.glyphicon-hd-video:before{content:"\e187"} -.glyphicon-subtitles:before{content:"\e188"} -.glyphicon-sound-stereo:before{content:"\e189"} -.glyphicon-sound-dolby:before{content:"\e190"} -.glyphicon-sound-5-1:before{content:"\e191"} -.glyphicon-sound-6-1:before{content:"\e192"} -.glyphicon-sound-7-1:before{content:"\e193"} -.glyphicon-copyright-mark:before{content:"\e194"} -.glyphicon-registration-mark:before{content:"\e195"} -.glyphicon-cloud-download:before{content:"\e197"} -.glyphicon-cloud-upload:before{content:"\e198"} -.glyphicon-tree-conifer:before{content:"\e199"} -.glyphicon-tree-deciduous:before{content:"\e200"} -.glyphicon-cd:before{content:"\e201"} -.glyphicon-save-file:before{content:"\e202"} -.glyphicon-open-file:before{content:"\e203"} -.glyphicon-level-up:before{content:"\e204"} -.glyphicon-copy:before{content:"\e205"} -.glyphicon-paste:before{content:"\e206"} -.glyphicon-alert:before{content:"\e209"} -.glyphicon-equalizer:before{content:"\e210"} -.glyphicon-king:before{content:"\e211"} -.glyphicon-queen:before{content:"\e212"} -.glyphicon-pawn:before{content:"\e213"} -.glyphicon-bishop:before{content:"\e214"} -.glyphicon-knight:before{content:"\e215"} -.glyphicon-baby-formula:before{content:"\e216"} -.glyphicon-tent:before{content:"\26fa"} -.glyphicon-blackboard:before{content:"\e218"} -.glyphicon-bed:before{content:"\e219"} -.glyphicon-apple:before{content:"\f8ff"} -.glyphicon-erase:before{content:"\e221"} -.glyphicon-hourglass:before{content:"\231b"} -.glyphicon-lamp:before{content:"\e223"} -.glyphicon-duplicate:before{content:"\e224"} -.glyphicon-piggy-bank:before{content:"\e225"} -.glyphicon-scissors:before{content:"\e226"} -.glyphicon-bitcoin:before,.glyphicon-btc:before,.glyphicon-xbt:before{content:"\e227"} -.glyphicon-jpy:before,.glyphicon-yen:before{content:"\00a5"} -.glyphicon-rub:before,.glyphicon-ruble:before{content:"\20bd"} -.glyphicon-scale:before{content:"\e230"} -.glyphicon-ice-lolly:before{content:"\e231"} -.glyphicon-ice-lolly-tasted:before{content:"\e232"} -.glyphicon-education:before{content:"\e233"} -.glyphicon-option-horizontal:before{content:"\e234"} -.glyphicon-option-vertical:before{content:"\e235"} -.glyphicon-menu-hamburger:before{content:"\e236"} -.glyphicon-modal-window:before{content:"\e237"} -.glyphicon-oil:before{content:"\e238"} -.glyphicon-grain:before{content:"\e239"} -.glyphicon-sunglasses:before{content:"\e240"} -.glyphicon-text-size:before{content:"\e241"} -.glyphicon-text-color:before{content:"\e242"} -.glyphicon-text-background:before{content:"\e243"} -.glyphicon-object-align-top:before{content:"\e244"} -.glyphicon-object-align-bottom:before{content:"\e245"} -.glyphicon-object-align-horizontal:before{content:"\e246"} -.glyphicon-object-align-left:before{content:"\e247"} -.glyphicon-object-align-vertical:before{content:"\e248"} -.glyphicon-object-align-right:before{content:"\e249"} -.glyphicon-triangle-right:before{content:"\e250"} -.glyphicon-triangle-left:before{content:"\e251"} -.glyphicon-triangle-bottom:before{content:"\e252"} -.glyphicon-triangle-top:before{content:"\e253"} -.glyphicon-console:before{content:"\e254"} -.glyphicon-superscript:before{content:"\e255"} -.glyphicon-subscript:before{content:"\e256"} -.glyphicon-menu-left:before{content:"\e257"} -.glyphicon-menu-right:before{content:"\e258"} -.glyphicon-menu-down:before{content:"\e259"} -.glyphicon-menu-up:before{content:"\e260"} -*,:after,:before{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box} -html{font-size:10px;-webkit-tap-highlight-color:transparent} -body{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;line-height:1.42857143;color:#333} -button,input,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit} -a{color:#337ab7;text-decoration:none} -a:focus,a:hover{color:#23527c;text-decoration:underline} -a:focus{outline:-webkit-focus-ring-color auto 5px;outline-offset:-2px} -.carousel-inner>.item>a>img,.carousel-inner>.item>img,.img-responsive,.thumbnail a>img,.thumbnail>img{display:block;max-width:100%;height:auto} -.img-rounded{border-radius:6px} -.img-thumbnail{display:inline-block;max-width:100%;height:auto;padding:4px;line-height:1.42857143;border:1px solid #ddd;border-radius:4px;-webkit-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out} -.img-circle{border-radius:50%} -hr{margin-top:20px;margin-bottom:20px;border-top:1px solid #eee} -.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0} -.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto} -[role=button]{cursor:pointer} -.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{font-family:inherit;font-weight:500;line-height:1.1;color:inherit} -.h1 .small,.h1 small,.h2 .small,.h2 small,.h3 .small,.h3 small,.h4 .small,.h4 small,.h5 .small,.h5 small,.h6 .small,.h6 small,h1 .small,h1 small,h2 .small,h2 small,h3 .small,h3 small,h4 .small,h4 small,h5 .small,h5 small,h6 .small,h6 small{font-weight:400;line-height:1;color:#777} -.h1,.h2,.h3,h1,h2,h3{margin-top:20px;margin-bottom:10px} -.h1 .small,.h1 small,.h2 .small,.h2 small,.h3 .small,.h3 small,h1 .small,h1 small,h2 .small,h2 small,h3 .small,h3 small{font-size:65%} -.h4,.h5,.h6,h4,h5,h6{margin-top:10px;margin-bottom:10px} -.h4 .small,.h4 small,.h5 .small,.h5 small,.h6 .small,.h6 small,h4 .small,h4 small,h5 .small,h5 small,h6 .small,h6 small{font-size:75%} -.h1,h1{font-size:36px} -.h2,h2{font-size:30px} -.h3,h3{font-size:24px} -.h4,h4{font-size:18px} -.h5,h5{font-size:14px} -.h6,h6{font-size:12px} -p{margin:0 0 10px} -.lead{margin-bottom:20px;font-size:16px;font-weight:300;line-height:1.4} -dt,kbd kbd,label{font-weight:700} -address,blockquote .small,blockquote footer,blockquote small,dd,dt,pre{line-height:1.42857143} -@media (min-width:768px){.lead{font-size:21px} -} -.small,small{font-size:85%} -.mark,mark{padding:.2em;background-color:#fcf8e3} -.list-inline,.list-unstyled{padding-left:0;list-style:none} -.text-left{text-align:left} -.text-right{text-align:right} -.text-center{text-align:center} -.text-justify{text-align:justify} -.text-nowrap{white-space:nowrap} -.text-lowercase{text-transform:lowercase} -.text-uppercase{text-transform:uppercase} -.text-capitalize{text-transform:capitalize} -.text-muted{color:#777} -.text-primary{color:#337ab7} -a.text-primary:focus,a.text-primary:hover{color:#286090} -.text-success{color:#3c763d} -a.text-success:focus,a.text-success:hover{color:#2b542c} -.text-info{color:#31708f} -a.text-info:focus,a.text-info:hover{color:#245269} -.text-warning{color:#8a6d3b} -a.text-warning:focus,a.text-warning:hover{color:#66512c} -.text-danger{color:#a94442} -a.text-danger:focus,a.text-danger:hover{color:#843534} -.bg-primary{color:#fff;background-color:#337ab7} -a.bg-primary:focus,a.bg-primary:hover{background-color:#286090} -.bg-success{background-color:#dff0d8} -a.bg-success:focus,a.bg-success:hover{background-color:#c1e2b3} -.bg-info{background-color:#d9edf7} -a.bg-info:focus,a.bg-info:hover{background-color:#afd9ee} -.bg-warning{background-color:#fcf8e3} -a.bg-warning:focus,a.bg-warning:hover{background-color:#f7ecb5} -.bg-danger{background-color:#f2dede} -a.bg-danger:focus,a.bg-danger:hover{background-color:#e4b9b9} -pre code,table{background-color:transparent} -.page-header{padding-bottom:9px;margin:40px 0 20px;border-bottom:1px solid #eee} -dl,ol,ul{margin-top:0} -blockquote ol:last-child,blockquote p:last-child,blockquote ul:last-child,ol ol,ol ul,ul ol,ul ul{margin-bottom:0} -address,dl{margin-bottom:20px} -ol,ul{margin-bottom:10px} -.list-inline{margin-left:-5px} -.list-inline>li{display:inline-block;padding-right:5px;padding-left:5px} -dd{margin-left:0} -@media (min-width:768px){.dl-horizontal dt{float:left;width:160px;overflow:hidden;clear:left;text-align:right;text-overflow:ellipsis;white-space:nowrap} -.dl-horizontal dd{margin-left:180px} -.container{width:750px} -} -abbr[data-original-title],abbr[title]{cursor:help;border-bottom:1px dotted #777} -.initialism{font-size:90%;text-transform:uppercase} -blockquote{padding:10px 20px;margin:0 0 20px;font-size:17.5px;border-left:5px solid #eee} -blockquote .small,blockquote footer,blockquote small{display:block;font-size:80%;color:#777} -legend,pre{display:block;color:#333} -blockquote .small:before,blockquote footer:before,blockquote small:before{content:'\2014 \00A0'} -.blockquote-reverse,blockquote.pull-right{padding-right:15px;padding-left:0;text-align:right;border-right:5px solid #eee;border-left:0} -code,kbd{padding:2px 4px;font-size:90%} -caption,th{text-align:left} -.blockquote-reverse .small:before,.blockquote-reverse footer:before,.blockquote-reverse small:before,blockquote.pull-right .small:before,blockquote.pull-right footer:before,blockquote.pull-right small:before{content:''} -.blockquote-reverse .small:after,.blockquote-reverse footer:after,.blockquote-reverse small:after,blockquote.pull-right .small:after,blockquote.pull-right footer:after,blockquote.pull-right small:after{content:'\00A0 \2014'} -code,kbd,pre,samp{font-family:Menlo,Monaco,Consolas,"Courier New",monospace} -code{color:#c7254e;background-color:#f9f2f4;border-radius:4px} -kbd{color:#fff;background-color:#333;border-radius:3px;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.25);box-shadow:inset 0 -1px 0 rgba(0,0,0,.25)} -kbd kbd{padding:0;font-size:100%;-webkit-box-shadow:none;box-shadow:none} -pre{padding:9.5px;margin:0 0 10px;font-size:13px;word-break:break-all;word-wrap:break-word;background-color:#f5f5f5;border:1px solid #ccc;border-radius:4px} -.container,.container-fluid{margin-right:auto;margin-left:auto} -pre code{padding:0;font-size:inherit;color:inherit;white-space:pre-wrap;border-radius:0} -.container,.container-fluid{padding-right:15px;padding-left:15px} -.pre-scrollable{overflow-y:scroll} -@media (min-width:992px){.container{width:970px} -} -@media (min-width:1200px){.container{width:1170px} -} -.row{margin-right:-15px;margin-left:-15px} -.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9{position:relative;min-height:1px;padding-right:15px;padding-left:15px} -.col-xs-12{width:100%} -.col-xs-11{width:91.66666667%} -.col-xs-10{width:83.33333333%} -.col-xs-9{width:75%} -.col-xs-8{width:66.66666667%} -.col-xs-7{width:58.33333333%} -.col-xs-6{width:50%} -.col-xs-5{width:41.66666667%} -.col-xs-4{width:33.33333333%} -.col-xs-3{width:25%} -.col-xs-2{width:16.66666667%} -.col-xs-1{width:8.33333333%} -.col-xs-pull-12{right:100%} -.col-xs-pull-11{right:91.66666667%} -.col-xs-pull-10{right:83.33333333%} -.col-xs-pull-9{right:75%} -.col-xs-pull-8{right:66.66666667%} -.col-xs-pull-7{right:58.33333333%} -.col-xs-pull-6{right:50%} -.col-xs-pull-5{right:41.66666667%} -.col-xs-pull-4{right:33.33333333%} -.col-xs-pull-3{right:25%} -.col-xs-pull-2{right:16.66666667%} -.col-xs-pull-1{right:8.33333333%} -.col-xs-pull-0{right:auto} -.col-xs-push-12{left:100%} -.col-xs-push-11{left:91.66666667%} -.col-xs-push-10{left:83.33333333%} -.col-xs-push-9{left:75%} -.col-xs-push-8{left:66.66666667%} -.col-xs-push-7{left:58.33333333%} -.col-xs-push-6{left:50%} -.col-xs-push-5{left:41.66666667%} -.col-xs-push-4{left:33.33333333%} -.col-xs-push-3{left:25%} -.col-xs-push-2{left:16.66666667%} -.col-xs-push-1{left:8.33333333%} -.col-xs-push-0{left:auto} -.col-xs-offset-12{margin-left:100%} -.col-xs-offset-11{margin-left:91.66666667%} -.col-xs-offset-10{margin-left:83.33333333%} -.col-xs-offset-9{margin-left:75%} -.col-xs-offset-8{margin-left:66.66666667%} -.col-xs-offset-7{margin-left:58.33333333%} -.col-xs-offset-6{margin-left:50%} -.col-xs-offset-5{margin-left:41.66666667%} -.col-xs-offset-4{margin-left:33.33333333%} -.col-xs-offset-3{margin-left:25%} -.col-xs-offset-2{margin-left:16.66666667%} -.col-xs-offset-1{margin-left:8.33333333%} -.col-xs-offset-0{margin-left:0} -@media (min-width:768px){.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9{float:left} -.col-sm-12{width:100%} -.col-sm-11{width:91.66666667%} -.col-sm-10{width:83.33333333%} -.col-sm-9{width:75%} -.col-sm-8{width:66.66666667%} -.col-sm-7{width:58.33333333%} -.col-sm-6{width:50%} -.col-sm-5{width:41.66666667%} -.col-sm-4{width:33.33333333%} -.col-sm-3{width:25%} -.col-sm-2{width:16.66666667%} -.col-sm-1{width:8.33333333%} -.col-sm-pull-12{right:100%} -.col-sm-pull-11{right:91.66666667%} -.col-sm-pull-10{right:83.33333333%} -.col-sm-pull-9{right:75%} -.col-sm-pull-8{right:66.66666667%} -.col-sm-pull-7{right:58.33333333%} -.col-sm-pull-6{right:50%} -.col-sm-pull-5{right:41.66666667%} -.col-sm-pull-4{right:33.33333333%} -.col-sm-pull-3{right:25%} -.col-sm-pull-2{right:16.66666667%} -.col-sm-pull-1{right:8.33333333%} -.col-sm-pull-0{right:auto} -.col-sm-push-12{left:100%} -.col-sm-push-11{left:91.66666667%} -.col-sm-push-10{left:83.33333333%} -.col-sm-push-9{left:75%} -.col-sm-push-8{left:66.66666667%} -.col-sm-push-7{left:58.33333333%} -.col-sm-push-6{left:50%} -.col-sm-push-5{left:41.66666667%} -.col-sm-push-4{left:33.33333333%} -.col-sm-push-3{left:25%} -.col-sm-push-2{left:16.66666667%} -.col-sm-push-1{left:8.33333333%} -.col-sm-push-0{left:auto} -.col-sm-offset-12{margin-left:100%} -.col-sm-offset-11{margin-left:91.66666667%} -.col-sm-offset-10{margin-left:83.33333333%} -.col-sm-offset-9{margin-left:75%} -.col-sm-offset-8{margin-left:66.66666667%} -.col-sm-offset-7{margin-left:58.33333333%} -.col-sm-offset-6{margin-left:50%} -.col-sm-offset-5{margin-left:41.66666667%} -.col-sm-offset-4{margin-left:33.33333333%} -.col-sm-offset-3{margin-left:25%} -.col-sm-offset-2{margin-left:16.66666667%} -.col-sm-offset-1{margin-left:8.33333333%} -.col-sm-offset-0{margin-left:0} -} -@media (min-width:992px){.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9{float:left} -.col-md-12{width:100%} -.col-md-11{width:91.66666667%} -.col-md-10{width:83.33333333%} -.col-md-9{width:75%} -.col-md-8{width:66.66666667%} -.col-md-7{width:58.33333333%} -.col-md-6{width:50%} -.col-md-5{width:41.66666667%} -.col-md-4{width:33.33333333%} -.col-md-3{width:25%} -.col-md-2{width:16.66666667%} -.col-md-1{width:8.33333333%} -.col-md-pull-12{right:100%} -.col-md-pull-11{right:91.66666667%} -.col-md-pull-10{right:83.33333333%} -.col-md-pull-9{right:75%} -.col-md-pull-8{right:66.66666667%} -.col-md-pull-7{right:58.33333333%} -.col-md-pull-6{right:50%} -.col-md-pull-5{right:41.66666667%} -.col-md-pull-4{right:33.33333333%} -.col-md-pull-3{right:25%} -.col-md-pull-2{right:16.66666667%} -.col-md-pull-1{right:8.33333333%} -.col-md-pull-0{right:auto} -.col-md-push-12{left:100%} -.col-md-push-11{left:91.66666667%} -.col-md-push-10{left:83.33333333%} -.col-md-push-9{left:75%} -.col-md-push-8{left:66.66666667%} -.col-md-push-7{left:58.33333333%} -.col-md-push-6{left:50%} -.col-md-push-5{left:41.66666667%} -.col-md-push-4{left:33.33333333%} -.col-md-push-3{left:25%} -.col-md-push-2{left:16.66666667%} -.col-md-push-1{left:8.33333333%} -.col-md-push-0{left:auto} -.col-md-offset-12{margin-left:100%} -.col-md-offset-11{margin-left:91.66666667%} -.col-md-offset-10{margin-left:83.33333333%} -.col-md-offset-9{margin-left:75%} -.col-md-offset-8{margin-left:66.66666667%} -.col-md-offset-7{margin-left:58.33333333%} -.col-md-offset-6{margin-left:50%} -.col-md-offset-5{margin-left:41.66666667%} -.col-md-offset-4{margin-left:33.33333333%} -.col-md-offset-3{margin-left:25%} -.col-md-offset-2{margin-left:16.66666667%} -.col-md-offset-1{margin-left:8.33333333%} -.col-md-offset-0{margin-left:0} -} -@media (min-width:1200px){.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9{float:left} -.col-lg-12{width:100%} -.col-lg-11{width:91.66666667%} -.col-lg-10{width:83.33333333%} -.col-lg-9{width:75%} -.col-lg-8{width:66.66666667%} -.col-lg-7{width:58.33333333%} -.col-lg-6{width:50%} -.col-lg-5{width:41.66666667%} -.col-lg-4{width:33.33333333%} -.col-lg-3{width:25%} -.col-lg-2{width:16.66666667%} -.col-lg-1{width:8.33333333%} -.col-lg-pull-12{right:100%} -.col-lg-pull-11{right:91.66666667%} -.col-lg-pull-10{right:83.33333333%} -.col-lg-pull-9{right:75%} -.col-lg-pull-8{right:66.66666667%} -.col-lg-pull-7{right:58.33333333%} -.col-lg-pull-6{right:50%} -.col-lg-pull-5{right:41.66666667%} -.col-lg-pull-4{right:33.33333333%} -.col-lg-pull-3{right:25%} -.col-lg-pull-2{right:16.66666667%} -.col-lg-pull-1{right:8.33333333%} -.col-lg-pull-0{right:auto} -.col-lg-push-12{left:100%} -.col-lg-push-11{left:91.66666667%} -.col-lg-push-10{left:83.33333333%} -.col-lg-push-9{left:75%} -.col-lg-push-8{left:66.66666667%} -.col-lg-push-7{left:58.33333333%} -.col-lg-push-6{left:50%} -.col-lg-push-5{left:41.66666667%} -.col-lg-push-4{left:33.33333333%} -.col-lg-push-3{left:25%} -.col-lg-push-2{left:16.66666667%} -.col-lg-push-1{left:8.33333333%} -.col-lg-push-0{left:auto} -.col-lg-offset-12{margin-left:100%} -.col-lg-offset-11{margin-left:91.66666667%} -.col-lg-offset-10{margin-left:83.33333333%} -.col-lg-offset-9{margin-left:75%} -.col-lg-offset-8{margin-left:66.66666667%} -.col-lg-offset-7{margin-left:58.33333333%} -.col-lg-offset-6{margin-left:50%} -.col-lg-offset-5{margin-left:41.66666667%} -.col-lg-offset-4{margin-left:33.33333333%} -.col-lg-offset-3{margin-left:25%} -.col-lg-offset-2{margin-left:16.66666667%} -.col-lg-offset-1{margin-left:8.33333333%} -.col-lg-offset-0{margin-left:0} -} -caption{padding-top:8px;padding-bottom:8px;color:#777} -.table{width:100%;max-width:100%;margin-bottom:20px} -.table>tbody>tr>td,.table>tbody>tr>th,.table>tfoot>tr>td,.table>tfoot>tr>th,.table>thead>tr>td,.table>thead>tr>th{padding:8px;line-height:1.42857143;vertical-align:top;border-top:1px solid #ddd} -.table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #ddd} -.table>caption+thead>tr:first-child>td,.table>caption+thead>tr:first-child>th,.table>colgroup+thead>tr:first-child>td,.table>colgroup+thead>tr:first-child>th,.table>thead:first-child>tr:first-child>td,.table>thead:first-child>tr:first-child>th{border-top:0} -.table>tbody+tbody{border-top:2px solid #ddd} -.table .table{background-color:#fff} -.table-condensed>tbody>tr>td,.table-condensed>tbody>tr>th,.table-condensed>tfoot>tr>td,.table-condensed>tfoot>tr>th,.table-condensed>thead>tr>td,.table-condensed>thead>tr>th{padding:5px} -.table-bordered,.table-bordered>tbody>tr>td,.table-bordered>tbody>tr>th,.table-bordered>tfoot>tr>td,.table-bordered>tfoot>tr>th,.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border:1px solid #ddd} -.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border-bottom-width:2px} -.table-striped>tbody>tr:nth-of-type(odd){background-color:#f9f9f9} -.table-hover>tbody>tr:hover,.table>tbody>tr.active>td,.table>tbody>tr.active>th,.table>tbody>tr>td.active,.table>tbody>tr>th.active,.table>tfoot>tr.active>td,.table>tfoot>tr.active>th,.table>tfoot>tr>td.active,.table>tfoot>tr>th.active,.table>thead>tr.active>td,.table>thead>tr.active>th,.table>thead>tr>td.active,.table>thead>tr>th.active{background-color:#f5f5f5} -table col[class*=col-]{position:static;display:table-column;float:none} -table td[class*=col-],table th[class*=col-]{position:static;display:table-cell;float:none} -.table-hover>tbody>tr.active:hover>td,.table-hover>tbody>tr.active:hover>th,.table-hover>tbody>tr:hover>.active,.table-hover>tbody>tr>td.active:hover,.table-hover>tbody>tr>th.active:hover{background-color:#e8e8e8} -.table>tbody>tr.success>td,.table>tbody>tr.success>th,.table>tbody>tr>td.success,.table>tbody>tr>th.success,.table>tfoot>tr.success>td,.table>tfoot>tr.success>th,.table>tfoot>tr>td.success,.table>tfoot>tr>th.success,.table>thead>tr.success>td,.table>thead>tr.success>th,.table>thead>tr>td.success,.table>thead>tr>th.success{background-color:#dff0d8} -.table-hover>tbody>tr.success:hover>td,.table-hover>tbody>tr.success:hover>th,.table-hover>tbody>tr:hover>.success,.table-hover>tbody>tr>td.success:hover,.table-hover>tbody>tr>th.success:hover{background-color:#d0e9c6} -.table>tbody>tr.info>td,.table>tbody>tr.info>th,.table>tbody>tr>td.info,.table>tbody>tr>th.info,.table>tfoot>tr.info>td,.table>tfoot>tr.info>th,.table>tfoot>tr>td.info,.table>tfoot>tr>th.info,.table>thead>tr.info>td,.table>thead>tr.info>th,.table>thead>tr>td.info,.table>thead>tr>th.info{background-color:#d9edf7} -.table-hover>tbody>tr.info:hover>td,.table-hover>tbody>tr.info:hover>th,.table-hover>tbody>tr:hover>.info,.table-hover>tbody>tr>td.info:hover,.table-hover>tbody>tr>th.info:hover{background-color:#c4e3f3} -.table>tbody>tr.warning>td,.table>tbody>tr.warning>th,.table>tbody>tr>td.warning,.table>tbody>tr>th.warning,.table>tfoot>tr.warning>td,.table>tfoot>tr.warning>th,.table>tfoot>tr>td.warning,.table>tfoot>tr>th.warning,.table>thead>tr.warning>td,.table>thead>tr.warning>th,.table>thead>tr>td.warning,.table>thead>tr>th.warning{background-color:#fcf8e3} -.table-hover>tbody>tr.warning:hover>td,.table-hover>tbody>tr.warning:hover>th,.table-hover>tbody>tr:hover>.warning,.table-hover>tbody>tr>td.warning:hover,.table-hover>tbody>tr>th.warning:hover{background-color:#faf2cc} -.table>tbody>tr.danger>td,.table>tbody>tr.danger>th,.table>tbody>tr>td.danger,.table>tbody>tr>th.danger,.table>tfoot>tr.danger>td,.table>tfoot>tr.danger>th,.table>tfoot>tr>td.danger,.table>tfoot>tr>th.danger,.table>thead>tr.danger>td,.table>thead>tr.danger>th,.table>thead>tr>td.danger,.table>thead>tr>th.danger{background-color:#f2dede} -.table-hover>tbody>tr.danger:hover>td,.table-hover>tbody>tr.danger:hover>th,.table-hover>tbody>tr:hover>.danger,.table-hover>tbody>tr>td.danger:hover,.table-hover>tbody>tr>th.danger:hover{background-color:#ebcccc} -.table-responsive{min-height:.01%;overflow-x:auto} -@media screen and (max-width:767px){.table-responsive{width:100%;margin-bottom:15px;overflow-y:hidden;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #ddd} -.table-responsive>.table{margin-bottom:0} -.table-responsive>.table>tbody>tr>td,.table-responsive>.table>tbody>tr>th,.table-responsive>.table>tfoot>tr>td,.table-responsive>.table>tfoot>tr>th,.table-responsive>.table>thead>tr>td,.table-responsive>.table>thead>tr>th{white-space:nowrap} -.table-responsive>.table-bordered{border:0} -.table-responsive>.table-bordered>tbody>tr>td:first-child,.table-responsive>.table-bordered>tbody>tr>th:first-child,.table-responsive>.table-bordered>tfoot>tr>td:first-child,.table-responsive>.table-bordered>tfoot>tr>th:first-child,.table-responsive>.table-bordered>thead>tr>td:first-child,.table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0} -.table-responsive>.table-bordered>tbody>tr>td:last-child,.table-responsive>.table-bordered>tbody>tr>th:last-child,.table-responsive>.table-bordered>tfoot>tr>td:last-child,.table-responsive>.table-bordered>tfoot>tr>th:last-child,.table-responsive>.table-bordered>thead>tr>td:last-child,.table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0} -.table-responsive>.table-bordered>tbody>tr:last-child>td,.table-responsive>.table-bordered>tbody>tr:last-child>th,.table-responsive>.table-bordered>tfoot>tr:last-child>td,.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0} -} -fieldset,legend{padding:0;border:0} -fieldset{min-width:0;margin:0} -legend{width:100%;margin-bottom:20px;font-size:21px;line-height:inherit;border-bottom:1px solid #e5e5e5} -label{display:inline-block;max-width:100%;margin-bottom:5px} -input[type=search]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-appearance:none} -input[type=checkbox],input[type=radio]{margin:4px 0 0;margin-top:1px\9;line-height:normal} -.form-control,output{font-size:14px;line-height:1.42857143;color:#555;display:block} -input[type=file]{display:block} -input[type=range]{display:block;width:100%} -select[multiple],select[size]{height:auto} -input[type=file]:focus,input[type=checkbox]:focus,input[type=radio]:focus{outline:-webkit-focus-ring-color auto 5px;outline-offset:-2px} -output{padding-top:7px} -.form-control{width:100%;height:34px;padding:6px 12px;background-color:#fff;border:1px solid #ccc;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075);-webkit-transition:border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;-o-transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s} -.form-control:focus{border-color:#66afe9;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6)} -.form-control::-moz-placeholder{color:#999;opacity:1} -.form-control:-ms-input-placeholder{color:#999} -.form-control::-webkit-input-placeholder{color:#999} -.has-success .checkbox,.has-success .checkbox-inline,.has-success .control-label,.has-success .form-control-feedback,.has-success .help-block,.has-success .radio,.has-success .radio-inline,.has-success.checkbox label,.has-success.checkbox-inline label,.has-success.radio label,.has-success.radio-inline label{color:#3c763d} -.form-control::-ms-expand{background-color:transparent;border:0} -.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{background-color:#eee;opacity:1} -.form-control[disabled],fieldset[disabled] .form-control{cursor:not-allowed} -textarea.form-control{height:auto} -@media screen and (-webkit-min-device-pixel-ratio:0){input[type=date].form-control,input[type=time].form-control,input[type=datetime-local].form-control,input[type=month].form-control{line-height:34px} -.input-group-sm input[type=date],.input-group-sm input[type=time],.input-group-sm input[type=datetime-local],.input-group-sm input[type=month],input[type=date].input-sm,input[type=time].input-sm,input[type=datetime-local].input-sm,input[type=month].input-sm{line-height:30px} -.input-group-lg input[type=date],.input-group-lg input[type=time],.input-group-lg input[type=datetime-local],.input-group-lg input[type=month],input[type=date].input-lg,input[type=time].input-lg,input[type=datetime-local].input-lg,input[type=month].input-lg{line-height:46px} -} -.form-group{margin-bottom:15px} -.checkbox,.radio{position:relative;display:block;margin-top:10px;margin-bottom:10px} -.checkbox label,.radio label{min-height:20px;padding-left:20px;margin-bottom:0;font-weight:400;cursor:pointer} -.checkbox input[type=checkbox],.checkbox-inline input[type=checkbox],.radio input[type=radio],.radio-inline input[type=radio]{position:absolute;margin-top:4px\9;margin-left:-20px} -.checkbox+.checkbox,.radio+.radio{margin-top:-5px} -.checkbox-inline,.radio-inline{position:relative;display:inline-block;padding-left:20px;margin-bottom:0;font-weight:400;vertical-align:middle;cursor:pointer} -.checkbox-inline+.checkbox-inline,.radio-inline+.radio-inline{margin-top:0;margin-left:10px} -.checkbox-inline.disabled,.checkbox.disabled label,.radio-inline.disabled,.radio.disabled label,fieldset[disabled] .checkbox label,fieldset[disabled] .checkbox-inline,fieldset[disabled] .radio label,fieldset[disabled] .radio-inline,fieldset[disabled] input[type=checkbox],fieldset[disabled] input[type=radio],input[type=checkbox].disabled,input[type=checkbox][disabled],input[type=radio].disabled,input[type=radio][disabled]{cursor:not-allowed} -.form-control-static{min-height:34px;padding-top:7px;padding-bottom:7px;margin-bottom:0} -.form-control-static.input-lg,.form-control-static.input-sm{padding-right:0;padding-left:0} -.form-group-sm .form-control,.input-sm{padding:5px 10px;border-radius:3px;font-size:12px} -.input-sm{height:30px;line-height:1.5} -select.input-sm{height:30px;line-height:30px} -select[multiple].input-sm,textarea.input-sm{height:auto} -.form-group-sm .form-control{height:30px;line-height:1.5} -.form-group-lg .form-control,.input-lg{border-radius:6px;padding:10px 16px;font-size:18px} -.form-group-sm select.form-control{height:30px;line-height:30px} -.form-group-sm select[multiple].form-control,.form-group-sm textarea.form-control{height:auto} -.form-group-sm .form-control-static{height:30px;min-height:32px;padding:6px 10px;font-size:12px;line-height:1.5} -.input-lg{height:46px;line-height:1.3333333} -select.input-lg{height:46px;line-height:46px} -select[multiple].input-lg,textarea.input-lg{height:auto} -.form-group-lg .form-control{height:46px;line-height:1.3333333} -.form-group-lg select.form-control{height:46px;line-height:46px} -.form-group-lg select[multiple].form-control,.form-group-lg textarea.form-control{height:auto} -.form-group-lg .form-control-static{height:46px;min-height:38px;padding:11px 16px;font-size:18px;line-height:1.3333333} -.has-feedback{position:relative} -.has-feedback .form-control{padding-right:42.5px} -.form-control-feedback{position:absolute;top:0;right:0;z-index:2;display:block;width:34px;height:34px;line-height:34px;text-align:center;pointer-events:none} -.collapsing,.dropdown,.dropup{position:relative} -.form-group-lg .form-control+.form-control-feedback,.input-group-lg+.form-control-feedback,.input-lg+.form-control-feedback{width:46px;height:46px;line-height:46px} -.form-group-sm .form-control+.form-control-feedback,.input-group-sm+.form-control-feedback,.input-sm+.form-control-feedback{width:30px;height:30px;line-height:30px} -.has-success .form-control{border-color:#3c763d;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)} -.has-success .form-control:focus{border-color:#2b542c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168} -.has-success .input-group-addon{color:#3c763d;background-color:#dff0d8;border-color:#3c763d} -.has-warning .checkbox,.has-warning .checkbox-inline,.has-warning .control-label,.has-warning .form-control-feedback,.has-warning .help-block,.has-warning .radio,.has-warning .radio-inline,.has-warning.checkbox label,.has-warning.checkbox-inline label,.has-warning.radio label,.has-warning.radio-inline label{color:#8a6d3b} -.has-warning .form-control{border-color:#8a6d3b;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)} -.has-warning .form-control:focus{border-color:#66512c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b} -.has-warning .input-group-addon{color:#8a6d3b;background-color:#fcf8e3;border-color:#8a6d3b} -.has-error .checkbox,.has-error .checkbox-inline,.has-error .control-label,.has-error .form-control-feedback,.has-error .help-block,.has-error .radio,.has-error .radio-inline,.has-error.checkbox label,.has-error.checkbox-inline label,.has-error.radio label,.has-error.radio-inline label{color:#a94442} -.has-error .form-control{border-color:#a94442;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)} -.has-error .form-control:focus{border-color:#843534;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483} -.has-error .input-group-addon{color:#a94442;background-color:#f2dede;border-color:#a94442} -.has-feedback label~.form-control-feedback{top:25px} -.has-feedback label.sr-only~.form-control-feedback{top:0} -.help-block{display:block;margin-top:5px;margin-bottom:10px;color:#737373} -@media (min-width:768px){.form-inline .form-control-static,.form-inline .form-group{display:inline-block} -.form-inline .control-label,.form-inline .form-group{margin-bottom:0;vertical-align:middle} -.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle} -.form-inline .input-group{display:inline-table;vertical-align:middle} -.form-inline .input-group .form-control,.form-inline .input-group .input-group-addon,.form-inline .input-group .input-group-btn{width:auto} -.form-inline .input-group>.form-control{width:100%} -.form-inline .checkbox,.form-inline .radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle} -.form-inline .checkbox label,.form-inline .radio label{padding-left:0} -.form-inline .checkbox input[type=checkbox],.form-inline .radio input[type=radio]{position:relative;margin-left:0} -.form-inline .has-feedback .form-control-feedback{top:0} -.form-horizontal .control-label{padding-top:7px;margin-bottom:0;text-align:right} -} -.form-horizontal .checkbox,.form-horizontal .checkbox-inline,.form-horizontal .radio,.form-horizontal .radio-inline{padding-top:7px;margin-top:0;margin-bottom:0} -.form-horizontal .checkbox,.form-horizontal .radio{min-height:27px} -.form-horizontal .form-group{margin-right:-15px;margin-left:-15px} -.form-horizontal .has-feedback .form-control-feedback{right:15px} -@media (min-width:768px){.form-horizontal .form-group-lg .control-label{padding-top:11px;font-size:18px} -.form-horizontal .form-group-sm .control-label{padding-top:6px;font-size:12px} -} -.btn{display:inline-block;padding:6px 12px;margin-bottom:0;font-size:14px;font-weight:400;line-height:1.42857143;text-align:center;white-space:nowrap;vertical-align:middle;-ms-touch-action:manipulation;touch-action:manipulation;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;border-radius:4px} -.btn.active.focus,.btn.active:focus,.btn.focus,.btn:active.focus,.btn:active:focus,.btn:focus{outline:-webkit-focus-ring-color auto 5px;outline-offset:-2px} -.btn.focus,.btn:focus,.btn:hover{color:#333;text-decoration:none} -.btn.active,.btn:active{outline:0;-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)} -.btn.disabled,.btn[disabled],fieldset[disabled] .btn{cursor:not-allowed;filter:alpha(opacity=65);-webkit-box-shadow:none;box-shadow:none;opacity:.65} -a.btn.disabled,fieldset[disabled] a.btn{pointer-events:none} -.btn-default{color:#333;background-color:#fff;border-color:#ccc} -.btn-default.focus,.btn-default:focus{color:#333;background-color:#e6e6e6;border-color:#8c8c8c} -.btn-default.active,.btn-default:active,.btn-default:hover,.open>.dropdown-toggle.btn-default{color:#333;background-color:#e6e6e6;border-color:#adadad} -.btn-default.active.focus,.btn-default.active:focus,.btn-default.active:hover,.btn-default:active.focus,.btn-default:active:focus,.btn-default:active:hover,.open>.dropdown-toggle.btn-default.focus,.open>.dropdown-toggle.btn-default:focus,.open>.dropdown-toggle.btn-default:hover{color:#333;background-color:#d4d4d4;border-color:#8c8c8c} -.btn-default.disabled.focus,.btn-default.disabled:focus,.btn-default.disabled:hover,.btn-default[disabled].focus,.btn-default[disabled]:focus,.btn-default[disabled]:hover,fieldset[disabled] .btn-default.focus,fieldset[disabled] .btn-default:focus,fieldset[disabled] .btn-default:hover{background-color:#fff;border-color:#ccc} -.btn-default .badge{color:#fff;background-color:#333} -.btn-primary{color:#fff;background-color:#337ab7;border-color:#2e6da4} -.btn-primary.focus,.btn-primary:focus{color:#fff;background-color:#286090;border-color:#122b40} -.btn-primary.active,.btn-primary:active,.btn-primary:hover,.open>.dropdown-toggle.btn-primary{color:#fff;background-color:#286090;border-color:#204d74} -.btn-primary.active.focus,.btn-primary.active:focus,.btn-primary.active:hover,.btn-primary:active.focus,.btn-primary:active:focus,.btn-primary:active:hover,.open>.dropdown-toggle.btn-primary.focus,.open>.dropdown-toggle.btn-primary:focus,.open>.dropdown-toggle.btn-primary:hover{color:#fff;background-color:#204d74;border-color:#122b40} -.btn-primary.disabled.focus,.btn-primary.disabled:focus,.btn-primary.disabled:hover,.btn-primary[disabled].focus,.btn-primary[disabled]:focus,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary.focus,fieldset[disabled] .btn-primary:focus,fieldset[disabled] .btn-primary:hover{background-color:#337ab7;border-color:#2e6da4} -.btn-primary .badge{color:#337ab7;background-color:#fff} -.btn-success{color:#fff;background-color:#5cb85c;border-color:#4cae4c} -.btn-success.focus,.btn-success:focus{color:#fff;background-color:#449d44;border-color:#255625} -.btn-success.active,.btn-success:active,.btn-success:hover,.open>.dropdown-toggle.btn-success{color:#fff;background-color:#449d44;border-color:#398439} -.btn-success.active.focus,.btn-success.active:focus,.btn-success.active:hover,.btn-success:active.focus,.btn-success:active:focus,.btn-success:active:hover,.open>.dropdown-toggle.btn-success.focus,.open>.dropdown-toggle.btn-success:focus,.open>.dropdown-toggle.btn-success:hover{color:#fff;background-color:#398439;border-color:#255625} -.btn-success.active,.btn-success:active,.open>.dropdown-toggle.btn-success{background-image:none} -.btn-success.disabled.focus,.btn-success.disabled:focus,.btn-success.disabled:hover,.btn-success[disabled].focus,.btn-success[disabled]:focus,.btn-success[disabled]:hover,fieldset[disabled] .btn-success.focus,fieldset[disabled] .btn-success:focus,fieldset[disabled] .btn-success:hover{background-color:#5cb85c;border-color:#4cae4c} -.btn-success .badge{color:#5cb85c;background-color:#fff} -.btn-info{color:#fff;background-color:#5bc0de;border-color:#46b8da} -.btn-info.focus,.btn-info:focus{color:#fff;background-color:#31b0d5;border-color:#1b6d85} -.btn-info.active,.btn-info:active,.btn-info:hover,.open>.dropdown-toggle.btn-info{color:#fff;background-color:#31b0d5;border-color:#269abc} -.btn-info.active.focus,.btn-info.active:focus,.btn-info.active:hover,.btn-info:active.focus,.btn-info:active:focus,.btn-info:active:hover,.open>.dropdown-toggle.btn-info.focus,.open>.dropdown-toggle.btn-info:focus,.open>.dropdown-toggle.btn-info:hover{color:#fff;background-color:#269abc;border-color:#1b6d85} -.btn-info.disabled.focus,.btn-info.disabled:focus,.btn-info.disabled:hover,.btn-info[disabled].focus,.btn-info[disabled]:focus,.btn-info[disabled]:hover,fieldset[disabled] .btn-info.focus,fieldset[disabled] .btn-info:focus,fieldset[disabled] .btn-info:hover{background-color:#5bc0de;border-color:#46b8da} -.btn-info .badge{color:#5bc0de;background-color:#fff} -.btn-warning{color:#fff;background-color:#f0ad4e;border-color:#eea236} -.btn-warning.focus,.btn-warning:focus{color:#fff;background-color:#ec971f;border-color:#985f0d} -.btn-warning.active,.btn-warning:active,.btn-warning:hover,.open>.dropdown-toggle.btn-warning{color:#fff;background-color:#ec971f;border-color:#d58512} -.btn-warning.active.focus,.btn-warning.active:focus,.btn-warning.active:hover,.btn-warning:active.focus,.btn-warning:active:focus,.btn-warning:active:hover,.open>.dropdown-toggle.btn-warning.focus,.open>.dropdown-toggle.btn-warning:focus,.open>.dropdown-toggle.btn-warning:hover{color:#fff;background-color:#d58512;border-color:#985f0d} -.btn-warning.disabled.focus,.btn-warning.disabled:focus,.btn-warning.disabled:hover,.btn-warning[disabled].focus,.btn-warning[disabled]:focus,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning.focus,fieldset[disabled] .btn-warning:focus,fieldset[disabled] .btn-warning:hover{background-color:#f0ad4e;border-color:#eea236} -.btn-warning .badge{color:#f0ad4e;background-color:#fff} -.btn-danger{color:#fff;background-color:#d9534f;border-color:#d43f3a} -.btn-danger.focus,.btn-danger:focus{color:#fff;background-color:#c9302c;border-color:#761c19} -.btn-danger.active,.btn-danger:active,.btn-danger:hover,.open>.dropdown-toggle.btn-danger{color:#fff;background-color:#c9302c;border-color:#ac2925} -.btn-danger.active.focus,.btn-danger.active:focus,.btn-danger.active:hover,.btn-danger:active.focus,.btn-danger:active:focus,.btn-danger:active:hover,.open>.dropdown-toggle.btn-danger.focus,.open>.dropdown-toggle.btn-danger:focus,.open>.dropdown-toggle.btn-danger:hover{color:#fff;background-color:#ac2925;border-color:#761c19} -.btn-danger.disabled.focus,.btn-danger.disabled:focus,.btn-danger.disabled:hover,.btn-danger[disabled].focus,.btn-danger[disabled]:focus,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger.focus,fieldset[disabled] .btn-danger:focus,fieldset[disabled] .btn-danger:hover{background-color:#d9534f;border-color:#d43f3a} -.btn-danger .badge{color:#d9534f;background-color:#fff} -.btn-link{font-weight:400;color:#337ab7;border-radius:0} -.btn-link,.btn-link.active,.btn-link:active,.btn-link[disabled],fieldset[disabled] .btn-link{background-color:transparent;-webkit-box-shadow:none;box-shadow:none} -.btn-link,.btn-link:active,.btn-link:focus,.btn-link:hover{border-color:transparent} -.btn-link:focus,.btn-link:hover{color:#23527c;text-decoration:underline;background-color:transparent} -.btn-link[disabled]:focus,.btn-link[disabled]:hover,fieldset[disabled] .btn-link:focus,fieldset[disabled] .btn-link:hover{color:#777;text-decoration:none} -.btn-group-lg>.btn,.btn-lg{padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px} -.btn-group-sm>.btn,.btn-sm{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px} -.btn-group-xs>.btn,.btn-xs{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:3px} -.btn-block{display:block;width:100%} -.btn-block+.btn-block{margin-top:5px} -input[type=button].btn-block,input[type=reset].btn-block,input[type=submit].btn-block{width:100%} -.fade{opacity:0;-webkit-transition:opacity .15s linear;-o-transition:opacity .15s linear;transition:opacity .15s linear} -.fade.in{opacity:1} -.collapse{display:none} -.collapse.in{display:block} -tr.collapse.in{display:table-row} -tbody.collapse.in{display:table-row-group} -.collapsing{height:0;overflow:hidden;-webkit-transition-timing-function:ease;-o-transition-timing-function:ease;transition-timing-function:ease;-webkit-transition-duration:.35s;-o-transition-duration:.35s;transition-duration:.35s;-webkit-transition-property:height,visibility;-o-transition-property:height,visibility;transition-property:height,visibility} -.caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:4px dashed;border-top:4px solid\9;border-right:4px solid transparent;border-left:4px solid transparent} -.dropdown-toggle:focus{outline:0} -.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;min-width:160px;padding:5px 0;margin:2px 0 0;font-size:14px;text-align:left;list-style:none;background-color:#fff;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.15);border-radius:4px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,.175);box-shadow:0 6px 12px rgba(0,0,0,.175)} -.dropdown-menu-right,.dropdown-menu.pull-right{right:0;left:auto} -.dropdown-header,.dropdown-menu>li>a{display:block;padding:3px 20px;line-height:1.42857143;white-space:nowrap} -.btn-group>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group>.btn-group:first-child:not(:last-child)>.dropdown-toggle,.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0} -.btn-group>.btn-group:last-child:not(:first-child)>.btn:first-child,.btn-group>.btn:last-child:not(:first-child),.btn-group>.dropdown-toggle:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0} -.btn-group-vertical>.btn:not(:first-child):not(:last-child),.btn-group>.btn-group:not(:first-child):not(:last-child)>.btn,.btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle){border-radius:0} -.dropdown-menu .divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5} -.dropdown-menu>li>a{clear:both;font-weight:400;color:#333} -.dropdown-menu>li>a:focus,.dropdown-menu>li>a:hover{color:#262626;text-decoration:none;background-color:#f5f5f5} -.dropdown-menu>.active>a,.dropdown-menu>.active>a:focus,.dropdown-menu>.active>a:hover{color:#fff;text-decoration:none;background-color:#337ab7;outline:0} -.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover{color:#777} -.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover{text-decoration:none;cursor:not-allowed;background-color:transparent;filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)} -.open>.dropdown-menu{display:block} -.open>a{outline:0} -.dropdown-menu-left{right:auto;left:0} -.dropdown-header{font-size:12px;color:#777} -.dropdown-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:990} -.nav-justified>.dropdown .dropdown-menu,.nav-tabs.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto} -.pull-right>.dropdown-menu{right:0;left:auto} -.dropup .caret,.navbar-fixed-bottom .dropdown .caret{content:"";border-top:0;border-bottom:4px dashed;border-bottom:4px solid\9} -.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:2px} -@media (min-width:768px){.navbar-right .dropdown-menu{right:0;left:auto} -.navbar-right .dropdown-menu-left{right:auto;left:0} -} -.btn-group,.btn-group-vertical{position:relative;display:inline-block;vertical-align:middle} -.btn-group-vertical>.btn,.btn-group>.btn{position:relative;float:left} -.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:hover,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus,.btn-group>.btn:hover{z-index:2} -.btn-group .btn+.btn,.btn-group .btn+.btn-group,.btn-group .btn-group+.btn,.btn-group .btn-group+.btn-group{margin-left:-1px} -.btn-toolbar{margin-left:-5px} -.btn-toolbar>.btn,.btn-toolbar>.btn-group,.btn-toolbar>.input-group{margin-left:5px} -.btn .caret,.btn-group>.btn:first-child{margin-left:0} -.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0} -.btn-group>.btn+.dropdown-toggle{padding-right:8px;padding-left:8px} -.btn-group>.btn-lg+.dropdown-toggle{padding-right:12px;padding-left:12px} -.btn-group.open .dropdown-toggle{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)} -.btn-group.open .dropdown-toggle.btn-link{-webkit-box-shadow:none;box-shadow:none} -.btn-lg .caret{border-width:5px 5px 0} -.dropup .btn-lg .caret{border-width:0 5px 5px} -.btn-group-vertical>.btn,.btn-group-vertical>.btn-group,.btn-group-vertical>.btn-group>.btn{display:block;float:none;width:100%;max-width:100%} -.btn-group-vertical>.btn-group>.btn{float:none} -.btn-group-vertical>.btn+.btn,.btn-group-vertical>.btn+.btn-group,.btn-group-vertical>.btn-group+.btn,.btn-group-vertical>.btn-group+.btn-group{margin-top:-1px;margin-left:0} -.btn-group-vertical>.btn:first-child:not(:last-child){border-radius:4px 4px 0 0} -.btn-group-vertical>.btn:last-child:not(:first-child){border-radius:0 0 4px 4px} -.btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0} -.btn-group-vertical>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group-vertical>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-bottom-left-radius:0} -.btn-group-vertical>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-left-radius:0;border-top-right-radius:0} -.btn-group-justified{display:table;width:100%;table-layout:fixed;border-collapse:separate} -.btn-group-justified>.btn,.btn-group-justified>.btn-group{display:table-cell;float:none;width:1%} -.btn-group-justified>.btn-group .btn{width:100%} -.btn-group-justified>.btn-group .dropdown-menu{left:auto} -[data-toggle=buttons]>.btn input[type=checkbox],[data-toggle=buttons]>.btn input[type=radio],[data-toggle=buttons]>.btn-group>.btn input[type=checkbox],[data-toggle=buttons]>.btn-group>.btn input[type=radio]{position:absolute;clip:rect(0,0,0,0);pointer-events:none} -.input-group{position:relative;display:table;border-collapse:separate} -.input-group[class*=col-]{float:none;padding-right:0;padding-left:0} -.input-group .form-control{position:relative;z-index:2;float:left;width:100%;margin-bottom:0} -.input-group .form-control:focus{z-index:3} -.input-group-lg>.form-control,.input-group-lg>.input-group-addon,.input-group-lg>.input-group-btn>.btn{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px} -select.input-group-lg>.form-control,select.input-group-lg>.input-group-addon,select.input-group-lg>.input-group-btn>.btn{height:46px;line-height:46px} -select[multiple].input-group-lg>.form-control,select[multiple].input-group-lg>.input-group-addon,select[multiple].input-group-lg>.input-group-btn>.btn,textarea.input-group-lg>.form-control,textarea.input-group-lg>.input-group-addon,textarea.input-group-lg>.input-group-btn>.btn{height:auto} -.input-group-sm>.form-control,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.btn{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px} -select.input-group-sm>.form-control,select.input-group-sm>.input-group-addon,select.input-group-sm>.input-group-btn>.btn{height:30px;line-height:30px} -select[multiple].input-group-sm>.form-control,select[multiple].input-group-sm>.input-group-addon,select[multiple].input-group-sm>.input-group-btn>.btn,textarea.input-group-sm>.form-control,textarea.input-group-sm>.input-group-addon,textarea.input-group-sm>.input-group-btn>.btn{height:auto} -.input-group .form-control,.input-group-addon,.input-group-btn{display:table-cell} -.nav>li,.nav>li>a{display:block;position:relative} -.input-group .form-control:not(:first-child):not(:last-child),.input-group-addon:not(:first-child):not(:last-child),.input-group-btn:not(:first-child):not(:last-child){border-radius:0} -.input-group-addon,.input-group-btn{width:1%;white-space:nowrap;vertical-align:middle} -.input-group-addon{padding:6px 12px;font-size:14px;font-weight:400;line-height:1;color:#555;text-align:center;background-color:#eee;border:1px solid #ccc;border-radius:4px} -.input-group-addon.input-sm{padding:5px 10px;font-size:12px;border-radius:3px} -.input-group-addon.input-lg{padding:10px 16px;font-size:18px;border-radius:6px} -.input-group-addon input[type=checkbox],.input-group-addon input[type=radio]{margin-top:0} -.input-group .form-control:first-child,.input-group-addon:first-child,.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group>.btn,.input-group-btn:first-child>.dropdown-toggle,.input-group-btn:last-child>.btn-group:not(:last-child)>.btn,.input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0} -.input-group-addon:first-child{border-right:0} -.input-group .form-control:last-child,.input-group-addon:last-child,.input-group-btn:first-child>.btn-group:not(:first-child)>.btn,.input-group-btn:first-child>.btn:not(:first-child),.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group>.btn,.input-group-btn:last-child>.dropdown-toggle{border-top-left-radius:0;border-bottom-left-radius:0} -.input-group-addon:last-child{border-left:0} -.input-group-btn{position:relative;font-size:0;white-space:nowrap} -.input-group-btn>.btn{position:relative} -.input-group-btn>.btn+.btn{margin-left:-1px} -.input-group-btn>.btn:active,.input-group-btn>.btn:focus,.input-group-btn>.btn:hover{z-index:2} -.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group{margin-right:-1px} -.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group{z-index:2;margin-left:-1px} -.nav{padding-left:0;margin-bottom:0;list-style:none} -.nav>li>a{padding:10px 15px} -.nav>li>a:focus,.nav>li>a:hover{text-decoration:none;background-color:#eee} -.nav>li.disabled>a{color:#777} -.nav>li.disabled>a:focus,.nav>li.disabled>a:hover{color:#777;text-decoration:none;cursor:not-allowed;background-color:transparent} -.nav .open>a,.nav .open>a:focus,.nav .open>a:hover{background-color:#eee;border-color:#337ab7} -.nav .nav-divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5} -.nav>li>a>img{max-width:none} -.nav-tabs{border-bottom:1px solid #ddd} -.nav-tabs>li{float:left;margin-bottom:-1px} -.nav-tabs>li>a{margin-right:2px;line-height:1.42857143;border:1px solid transparent;border-radius:4px 4px 0 0} -.nav-tabs>li>a:hover{border-color:#eee #eee #ddd} -.nav-tabs>li.active>a,.nav-tabs>li.active>a:focus,.nav-tabs>li.active>a:hover{color:#555;cursor:default;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent} -.nav-tabs.nav-justified{width:100%;border-bottom:0} -.nav-tabs.nav-justified>li{float:none} -.nav-tabs.nav-justified>li>a{margin-bottom:5px;text-align:center;margin-right:0;border-radius:4px} -.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:focus,.nav-tabs.nav-justified>.active>a:hover{border:1px solid #ddd} -@media (min-width:768px){.nav-tabs.nav-justified>li{display:table-cell;width:1%} -.nav-tabs.nav-justified>li>a{margin-bottom:0;border-bottom:1px solid #ddd;border-radius:4px 4px 0 0} -.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:focus,.nav-tabs.nav-justified>.active>a:hover{border-bottom-color:#fff} -} -.nav-pills>li{float:left} -.nav-justified>li,.nav-stacked>li{float:none} -.nav-pills>li>a{border-radius:4px} -.nav-pills>li+li{margin-left:2px} -.nav-pills>li.active>a,.nav-pills>li.active>a:focus,.nav-pills>li.active>a:hover{color:#fff;background-color:#337ab7} -.nav-stacked>li+li{margin-top:2px;margin-left:0} -.nav-justified{width:100%} -.nav-justified>li>a{margin-bottom:5px;text-align:center} -.nav-tabs-justified{border-bottom:0} -.nav-tabs-justified>li>a{margin-right:0;border-radius:4px} -.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:focus,.nav-tabs-justified>.active>a:hover{border:1px solid #ddd} -@media (min-width:768px){.nav-justified>li{display:table-cell;width:1%} -.nav-justified>li>a{margin-bottom:0} -.nav-tabs-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0} -.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:focus,.nav-tabs-justified>.active>a:hover{border-bottom-color:#fff} -} -.tab-content>.tab-pane{display:none} -.tab-content>.active{display:block} -.nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0} -.navbar{position:relative;min-height:50px;margin-bottom:20px;border:1px solid transparent} -.navbar-collapse{padding-right:15px;padding-left:15px;overflow-x:visible;-webkit-overflow-scrolling:touch;border-top:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 0 rgba(255,255,255,.1)} -.navbar-collapse.in{overflow-y:auto} -@media (min-width:768px){.navbar{border-radius:4px} -.navbar-header{float:left} -.navbar-collapse{width:auto;border-top:0;-webkit-box-shadow:none;box-shadow:none} -.navbar-collapse.collapse{display:block!important;height:auto!important;padding-bottom:0;overflow:visible!important} -.navbar-collapse.in{overflow-y:visible} -.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse,.navbar-static-top .navbar-collapse{padding-right:0;padding-left:0} -} -.embed-responsive,.modal,.modal-open,.progress{overflow:hidden} -@media (max-device-width:480px) and (orientation:landscape){.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse{max-height:200px} -} -.container-fluid>.navbar-collapse,.container-fluid>.navbar-header,.container>.navbar-collapse,.container>.navbar-header{margin-right:-15px;margin-left:-15px} -.navbar-static-top{z-index:1000;border-width:0 0 1px} -.navbar-fixed-bottom,.navbar-fixed-top{position:fixed;right:0;left:0;z-index:1030} -.navbar-fixed-top{top:0;border-width:0 0 1px} -.navbar-fixed-bottom{bottom:0;margin-bottom:0;border-width:1px 0 0} -.navbar-brand{float:left;height:50px;padding:15px;font-size:18px;line-height:20px} -.navbar-brand:focus,.navbar-brand:hover{text-decoration:none} -.navbar-brand>img{display:block} -@media (min-width:768px){.container-fluid>.navbar-collapse,.container-fluid>.navbar-header,.container>.navbar-collapse,.container>.navbar-header{margin-right:0;margin-left:0} -.navbar-fixed-bottom,.navbar-fixed-top,.navbar-static-top{border-radius:0} -.navbar>.container .navbar-brand,.navbar>.container-fluid .navbar-brand{margin-left:-15px} -} -.navbar-toggle{position:relative;float:right;padding:9px 10px;margin-top:8px;margin-right:15px;margin-bottom:8px;background-color:transparent;border:1px solid transparent;border-radius:4px} -.navbar-toggle:focus{outline:0} -.navbar-toggle .icon-bar{display:block;width:22px;height:2px;border-radius:1px} -.navbar-toggle .icon-bar+.icon-bar{margin-top:4px} -.navbar-nav{margin:7.5px -15px} -.navbar-nav>li>a{padding-top:10px;padding-bottom:10px;line-height:20px} -@media (max-width:767px){.navbar-nav .open .dropdown-menu{position:static;float:none;width:auto;margin-top:0;background-color:transparent;border:0;-webkit-box-shadow:none;box-shadow:none} -.navbar-nav .open .dropdown-menu .dropdown-header,.navbar-nav .open .dropdown-menu>li>a{padding:5px 15px 5px 25px} -.navbar-nav .open .dropdown-menu>li>a{line-height:20px} -.navbar-nav .open .dropdown-menu>li>a:focus,.navbar-nav .open .dropdown-menu>li>a:hover{background-image:none} -} -.progress-bar-striped,.progress-striped .progress-bar,.progress-striped .progress-bar-success{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)} -@media (min-width:768px){.navbar-toggle{display:none} -.navbar-nav{float:left;margin:0} -.navbar-nav>li{float:left} -.navbar-nav>li>a{padding-top:15px;padding-bottom:15px} -} -.navbar-form{padding:10px 15px;border-top:1px solid transparent;border-bottom:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1);margin:8px -15px} -@media (min-width:768px){.navbar-form .form-control-static,.navbar-form .form-group{display:inline-block} -.navbar-form .control-label,.navbar-form .form-group{margin-bottom:0;vertical-align:middle} -.navbar-form .form-control{display:inline-block;width:auto;vertical-align:middle} -.navbar-form .input-group{display:inline-table;vertical-align:middle} -.navbar-form .input-group .form-control,.navbar-form .input-group .input-group-addon,.navbar-form .input-group .input-group-btn{width:auto} -.navbar-form .input-group>.form-control{width:100%} -.navbar-form .checkbox,.navbar-form .radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle} -.navbar-form .checkbox label,.navbar-form .radio label{padding-left:0} -.navbar-form .checkbox input[type=checkbox],.navbar-form .radio input[type=radio]{position:relative;margin-left:0} -.navbar-form .has-feedback .form-control-feedback{top:0} -.navbar-form{width:auto;padding-top:0;padding-bottom:0;margin-right:0;margin-left:0;border:0;-webkit-box-shadow:none;box-shadow:none} -} -.breadcrumb>li,.pagination{display:inline-block} -.btn .badge,.btn .label{top:-1px;position:relative} -@media (max-width:767px){.navbar-form .form-group{margin-bottom:5px} -.navbar-form .form-group:last-child{margin-bottom:0} -} -.navbar-nav>li>.dropdown-menu{margin-top:0;border-top-left-radius:0;border-top-right-radius:0} -.navbar-fixed-bottom .navbar-nav>li>.dropdown-menu{margin-bottom:0;border-radius:4px 4px 0 0} -.navbar-btn{margin-top:8px;margin-bottom:8px} -.navbar-btn.btn-sm{margin-top:10px;margin-bottom:10px} -.navbar-btn.btn-xs{margin-top:14px;margin-bottom:14px} -.navbar-text{margin-top:15px;margin-bottom:15px} -@media (min-width:768px){.navbar-text{float:left;margin-right:15px;margin-left:15px} -.navbar-left{float:left!important} -.navbar-right{float:right!important;margin-right:-15px} -.navbar-right~.navbar-right{margin-right:0} -} -.navbar-default{background-color:#f8f8f8;border-color:#e7e7e7} -.navbar-default .navbar-brand{color:#777} -.navbar-default .navbar-brand:focus,.navbar-default .navbar-brand:hover{color:#5e5e5e;background-color:transparent} -.navbar-default .navbar-nav>li>a,.navbar-default .navbar-text{color:#777} -.navbar-default .navbar-nav>li>a:focus,.navbar-default .navbar-nav>li>a:hover{color:#333;background-color:transparent} -.navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.active>a:focus,.navbar-default .navbar-nav>.active>a:hover{color:#555;background-color:#e7e7e7} -.navbar-default .navbar-nav>.disabled>a,.navbar-default .navbar-nav>.disabled>a:focus,.navbar-default .navbar-nav>.disabled>a:hover{color:#ccc;background-color:transparent} -.navbar-default .navbar-toggle{border-color:#ddd} -.navbar-default .navbar-toggle:focus,.navbar-default .navbar-toggle:hover{background-color:#ddd} -.navbar-default .navbar-toggle .icon-bar{background-color:#888} -.navbar-default .navbar-collapse,.navbar-default .navbar-form{border-color:#e7e7e7} -.navbar-default .navbar-nav>.open>a,.navbar-default .navbar-nav>.open>a:focus,.navbar-default .navbar-nav>.open>a:hover{color:#555;background-color:#e7e7e7} -@media (max-width:767px){.navbar-default .navbar-nav .open .dropdown-menu>li>a{color:#777} -.navbar-default .navbar-nav .open .dropdown-menu>li>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>li>a:hover{color:#333;background-color:transparent} -.navbar-default .navbar-nav .open .dropdown-menu>.active>a,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover{color:#555;background-color:#e7e7e7} -.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover{color:#ccc;background-color:transparent} -} -.navbar-default .navbar-link{color:#777} -.navbar-default .navbar-link:hover{color:#333} -.navbar-default .btn-link{color:#777} -.navbar-default .btn-link:focus,.navbar-default .btn-link:hover{color:#333} -.navbar-default .btn-link[disabled]:focus,.navbar-default .btn-link[disabled]:hover,fieldset[disabled] .navbar-default .btn-link:focus,fieldset[disabled] .navbar-default .btn-link:hover{color:#ccc} -.navbar-inverse{background-color:#222;border-color:#080808} -.navbar-inverse .navbar-brand{color:#9d9d9d} -.navbar-inverse .navbar-brand:focus,.navbar-inverse .navbar-brand:hover{color:#fff;background-color:rgba(0,0,0,0.1)} -.navbar-inverse .navbar-nav>li>a,.navbar-inverse .navbar-text{color:#fff;} -.navbar-inverse .navbar-nav>li>a:focus,.navbar-inverse .navbar-nav>li>a:hover{color:#fff;background-color:rgba(0,0,0,0.1)} -.navbar-inverse .navbar-nav>.active>a,.navbar-inverse .navbar-nav>.active>a:focus,.navbar-inverse .navbar-nav>.active>a:hover{color:#fff;background-color:rgba(0,0,0,0.2)} -.navbar-inverse .navbar-nav>.disabled>a,.navbar-inverse .navbar-nav>.disabled>a:focus,.navbar-inverse .navbar-nav>.disabled>a:hover{color:#444;background-color:transparent} -.navbar-inverse .navbar-toggle{border-color:#333} -.navbar-inverse .navbar-toggle:focus,.navbar-inverse .navbar-toggle:hover{background-color:#333} -.navbar-inverse .navbar-toggle .icon-bar{background-color:#fff} -.navbar-inverse .navbar-collapse,.navbar-inverse .navbar-form{border-color:#101010} -.navbar-inverse .navbar-nav>.open>a,.navbar-inverse .navbar-nav>.open>a:focus,.navbar-inverse .navbar-nav>.open>a:hover{color:#fff;background-color:rgba(0,0,0,0.2)} -@media (max-width:767px){.navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header{border-color:#080808} -.navbar-inverse .navbar-nav .open .dropdown-menu .divider{background-color:#080808} -.navbar-inverse .navbar-nav .open .dropdown-menu>li>a{color:#9d9d9d} -.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover{color:#fff;background-color:transparent} -.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover{color:#fff;background-color:#080808} -.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover{color:#444;background-color:transparent} -} -.navbar-inverse .navbar-link{color:#9d9d9d} -.navbar-inverse .navbar-link:hover{color:#fff} -.navbar-inverse .btn-link{color:#9d9d9d} -.navbar-inverse .btn-link:focus,.navbar-inverse .btn-link:hover{color:#fff} -.navbar-inverse .btn-link[disabled]:focus,.navbar-inverse .btn-link[disabled]:hover,fieldset[disabled] .navbar-inverse .btn-link:focus,fieldset[disabled] .navbar-inverse .btn-link:hover{color:#444} -.breadcrumb{padding:8px 15px;margin-bottom:20px;list-style:none;background-color:#f5f5f5;border-radius:4px} -.breadcrumb>li+li:before{padding:0 5px;color:#ccc;content:"/\00a0"} -.breadcrumb>.active{color:#777} -.pagination{padding-left:0;margin:20px 0;border-radius:4px} -.pager li,.pagination>li{display:inline} -.pagination>li>a,.pagination>li>span{position:relative;float:left;padding:6px 12px;margin-left:-1px;line-height:1.42857143;color:#337ab7;text-decoration:none;background-color:#fff;border:1px solid #ddd} -.pagination>li:first-child>a,.pagination>li:first-child>span{margin-left:0;border-top-left-radius:4px;border-bottom-left-radius:4px} -.pagination>li:last-child>a,.pagination>li:last-child>span{border-top-right-radius:4px;border-bottom-right-radius:4px} -.pagination>li>a:focus,.pagination>li>a:hover,.pagination>li>span:focus,.pagination>li>span:hover{z-index:2;color:#23527c;background-color:#eee;border-color:#ddd} -.pagination>.active>a,.pagination>.active>a:focus,.pagination>.active>a:hover,.pagination>.active>span,.pagination>.active>span:focus,.pagination>.active>span:hover{z-index:3;color:#fff;cursor:default;background-color:#337ab7;border-color:#337ab7} -.pagination>.disabled>a,.pagination>.disabled>a:focus,.pagination>.disabled>a:hover,.pagination>.disabled>span,.pagination>.disabled>span:focus,.pagination>.disabled>span:hover{color:#777;cursor:not-allowed;background-color:#fff;border-color:#ddd} -.pagination-lg>li>a,.pagination-lg>li>span{padding:10px 16px;font-size:18px;line-height:1.3333333} -.pagination-lg>li:first-child>a,.pagination-lg>li:first-child>span{border-top-left-radius:6px;border-bottom-left-radius:6px} -.pagination-lg>li:last-child>a,.pagination-lg>li:last-child>span{border-top-right-radius:6px;border-bottom-right-radius:6px} -.pagination-sm>li>a,.pagination-sm>li>span{padding:5px 10px;font-size:12px;line-height:1.5} -.badge,.label{font-weight:700;line-height:1;white-space:nowrap;text-align:center} -.pagination-sm>li:first-child>a,.pagination-sm>li:first-child>span{border-top-left-radius:3px;border-bottom-left-radius:3px} -.pagination-sm>li:last-child>a,.pagination-sm>li:last-child>span{border-top-right-radius:3px;border-bottom-right-radius:3px} -.pager{padding-left:0;margin:20px 0;text-align:center;list-style:none} -.pager li>a,.pager li>span{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;border-radius:15px} -.pager li>a:focus,.pager li>a:hover{text-decoration:none;background-color:#eee} -.pager .next>a,.pager .next>span{float:right} -.pager .previous>a,.pager .previous>span{float:left} -.pager .disabled>a,.pager .disabled>a:focus,.pager .disabled>a:hover,.pager .disabled>span{color:#777;cursor:not-allowed;background-color:#fff} -a.badge:focus,a.badge:hover,a.label:focus,a.label:hover{color:#fff;cursor:pointer;text-decoration:none} -.label{display:inline;padding:.2em .6em .3em;font-size:75%;color:#fff;border-radius:.25em} -.label:empty{display:none} -.label-default{background-color:#777} -.label-default[href]:focus,.label-default[href]:hover{background-color:#5e5e5e} -.label-primary{background-color:#337ab7} -.label-primary[href]:focus,.label-primary[href]:hover{background-color:#286090} -.label-success{background-color:#5cb85c} -.label-success[href]:focus,.label-success[href]:hover{background-color:#449d44} -.label-info{background-color:#5bc0de} -.label-info[href]:focus,.label-info[href]:hover{background-color:#31b0d5} -.label-warning{background-color:#f0ad4e} -.label-warning[href]:focus,.label-warning[href]:hover{background-color:#ec971f} -.label-danger{background-color:#d9534f} -.label-danger[href]:focus,.label-danger[href]:hover{background-color:#c9302c} -.badge{display:inline-block;min-width:10px;padding:3px 7px;font-size:12px;color:#fff;vertical-align:middle;background-color:#777;border-radius:10px} -.badge:empty{display:none} -.media-object,.thumbnail{display:block} -.btn-group-xs>.btn .badge,.btn-xs .badge{top:0;padding:1px 5px} -.list-group-item.active>.badge,.nav-pills>.active>a>.badge{color:#337ab7;background-color:#fff} -.jumbotron,.jumbotron .h1,.jumbotron h1{color:inherit} -.list-group-item>.badge{float:right} -.list-group-item>.badge+.badge{margin-right:5px} -.nav-pills>li>a>.badge{margin-left:3px} -.jumbotron{padding-top:30px;padding-bottom:30px;margin-bottom:30px;background-color:#eee} -.jumbotron p{margin-bottom:15px;font-size:21px;font-weight:200} -.alert,.thumbnail{margin-bottom:20px} -.alert .alert-link,.close{font-weight:700} -.jumbotron>hr{border-top-color:#d5d5d5} -.container .jumbotron,.container-fluid .jumbotron{padding-right:15px;padding-left:15px;border-radius:6px} -.jumbotron .container{max-width:100%} -@media screen and (min-width:768px){.jumbotron{padding-top:48px;padding-bottom:48px} -.container .jumbotron,.container-fluid .jumbotron{padding-right:60px;padding-left:60px} -.jumbotron .h1,.jumbotron h1{font-size:63px} -} -.thumbnail{padding:4px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:border .2s ease-in-out;-o-transition:border .2s ease-in-out;transition:border .2s ease-in-out} -.thumbnail a>img,.thumbnail>img{margin-right:auto;margin-left:auto} -a.thumbnail.active,a.thumbnail:focus,a.thumbnail:hover{border-color:#337ab7} -.thumbnail .caption{padding:9px;color:#333} -.alert{padding:15px;border:1px solid transparent;border-radius:4px} -.alert h4{margin-top:0;color:inherit} -.alert>p,.alert>ul{margin-bottom:0} -.alert>p+p{margin-top:5px} -.alert-dismissable,.alert-dismissible{padding-right:35px} -.alert-dismissable .close,.alert-dismissible .close{position:relative;top:-2px;right:-21px;color:inherit} -.modal,.modal-backdrop{top:0;right:0;bottom:0;left:0} -.alert-success{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6} -.alert-success hr{border-top-color:#c9e2b3} -.alert-success .alert-link{color:#2b542c} -.alert-info{color:#31708f;background-color:#d9edf7;border-color:#bce8f1} -.alert-info hr{border-top-color:#a6e1ec} -.alert-info .alert-link{color:#245269} -.alert-warning{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc} -.alert-warning hr{border-top-color:#f7e1b5} -.alert-warning .alert-link{color:#66512c} -.alert-danger{color:#a94442;background-color:#f2dede;border-color:#ebccd1} -.alert-danger hr{border-top-color:#e4b9c0} -.alert-danger .alert-link{color:#843534} -@-webkit-keyframes progress-bar-stripes{from{background-position:40px 0} -to{background-position:0 0} -} -@-o-keyframes progress-bar-stripes{from{background-position:40px 0} -to{background-position:0 0} -} -@keyframes progress-bar-stripes{from{background-position:40px 0} -to{background-position:0 0} -} -.progress{height:20px;margin-bottom:20px;background-color:#f5f5f5;border-radius:4px;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.1);box-shadow:inset 0 1px 2px rgba(0,0,0,.1)} -.progress-bar{float:left;width:0;height:100%;font-size:12px;line-height:20px;color:#fff;text-align:center;background-color:#337ab7;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);-webkit-transition:width .6s ease;-o-transition:width .6s ease;transition:width .6s ease} -.progress-bar-striped,.progress-striped .progress-bar{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);-webkit-background-size:40px 40px;background-size:40px 40px} -.progress-bar.active,.progress.active .progress-bar{-webkit-animation:progress-bar-stripes 2s linear infinite;-o-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite} -.progress-bar-success{background-color:#5cb85c} -.progress-striped .progress-bar-success{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)} -.progress-striped .progress-bar-info,.progress-striped .progress-bar-warning{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)} -.progress-bar-info{background-color:#5bc0de} -.progress-striped .progress-bar-info{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)} -.progress-bar-warning{background-color:#f0ad4e} -.progress-striped .progress-bar-warning{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)} -.progress-bar-danger{background-color:#d9534f} -.progress-striped .progress-bar-danger{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)} -.media{margin-top:15px} -.media:first-child{margin-top:0} -.media,.media-body{overflow:hidden;zoom:1} -.media-body{width:10000px} -.media-object.img-thumbnail{max-width:none} -.media-right,.media>.pull-right{padding-left:10px} -.media-left,.media>.pull-left{padding-right:10px} -.media-body,.media-left,.media-right{display:table-cell;vertical-align:top} -.media-middle{vertical-align:middle} -.media-bottom{vertical-align:bottom} -.media-heading{margin-top:0;margin-bottom:5px} -.media-list{padding-left:0;list-style:none} -.list-group{padding-left:0;margin-bottom:20px} -.list-group-item{position:relative;display:block;padding:10px 15px;margin-bottom:-1px;background-color:#fff;border:1px solid #ddd} -.list-group-item:first-child{border-top-left-radius:4px;border-top-right-radius:4px} -.list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px} -a.list-group-item,button.list-group-item{color:#555} -a.list-group-item .list-group-item-heading,button.list-group-item .list-group-item-heading{color:#333} -a.list-group-item:focus,a.list-group-item:hover,button.list-group-item:focus,button.list-group-item:hover{color:#555;text-decoration:none;background-color:#f5f5f5} -button.list-group-item{width:100%;text-align:left} -.list-group-item.disabled,.list-group-item.disabled:focus,.list-group-item.disabled:hover{color:#777;cursor:not-allowed;background-color:#eee} -.list-group-item.disabled .list-group-item-heading,.list-group-item.disabled:focus .list-group-item-heading,.list-group-item.disabled:hover .list-group-item-heading{color:inherit} -.list-group-item.disabled .list-group-item-text,.list-group-item.disabled:focus .list-group-item-text,.list-group-item.disabled:hover .list-group-item-text{color:#777} -.list-group-item.active,.list-group-item.active:focus,.list-group-item.active:hover{z-index:2;color:#fff;background-color:#337ab7;border-color:#337ab7} -.list-group-item.active .list-group-item-heading,.list-group-item.active .list-group-item-heading>.small,.list-group-item.active .list-group-item-heading>small,.list-group-item.active:focus .list-group-item-heading,.list-group-item.active:focus .list-group-item-heading>.small,.list-group-item.active:focus .list-group-item-heading>small,.list-group-item.active:hover .list-group-item-heading,.list-group-item.active:hover .list-group-item-heading>.small,.list-group-item.active:hover .list-group-item-heading>small{color:inherit} -.list-group-item.active .list-group-item-text,.list-group-item.active:focus .list-group-item-text,.list-group-item.active:hover .list-group-item-text{color:#c7ddef} -.list-group-item-success{color:#3c763d;background-color:#dff0d8} -a.list-group-item-success,button.list-group-item-success{color:#3c763d} -a.list-group-item-success .list-group-item-heading,button.list-group-item-success .list-group-item-heading{color:inherit} -a.list-group-item-success:focus,a.list-group-item-success:hover,button.list-group-item-success:focus,button.list-group-item-success:hover{color:#3c763d;background-color:#d0e9c6} -a.list-group-item-success.active,a.list-group-item-success.active:focus,a.list-group-item-success.active:hover,button.list-group-item-success.active,button.list-group-item-success.active:focus,button.list-group-item-success.active:hover{color:#fff;background-color:#3c763d;border-color:#3c763d} -.list-group-item-info{color:#31708f;background-color:#d9edf7} -a.list-group-item-info,button.list-group-item-info{color:#31708f} -a.list-group-item-info .list-group-item-heading,button.list-group-item-info .list-group-item-heading{color:inherit} -a.list-group-item-info:focus,a.list-group-item-info:hover,button.list-group-item-info:focus,button.list-group-item-info:hover{color:#31708f;background-color:#c4e3f3} -a.list-group-item-info.active,a.list-group-item-info.active:focus,a.list-group-item-info.active:hover,button.list-group-item-info.active,button.list-group-item-info.active:focus,button.list-group-item-info.active:hover{color:#fff;background-color:#31708f;border-color:#31708f} -.list-group-item-warning{color:#8a6d3b;background-color:#fcf8e3} -a.list-group-item-warning,button.list-group-item-warning{color:#8a6d3b} -a.list-group-item-warning .list-group-item-heading,button.list-group-item-warning .list-group-item-heading{color:inherit} -a.list-group-item-warning:focus,a.list-group-item-warning:hover,button.list-group-item-warning:focus,button.list-group-item-warning:hover{color:#8a6d3b;background-color:#faf2cc} -a.list-group-item-warning.active,a.list-group-item-warning.active:focus,a.list-group-item-warning.active:hover,button.list-group-item-warning.active,button.list-group-item-warning.active:focus,button.list-group-item-warning.active:hover{color:#fff;background-color:#8a6d3b;border-color:#8a6d3b} -.list-group-item-danger{color:#a94442;background-color:#f2dede} -a.list-group-item-danger,button.list-group-item-danger{color:#a94442} -a.list-group-item-danger .list-group-item-heading,button.list-group-item-danger .list-group-item-heading{color:inherit} -a.list-group-item-danger:focus,a.list-group-item-danger:hover,button.list-group-item-danger:focus,button.list-group-item-danger:hover{color:#a94442;background-color:#ebcccc} -a.list-group-item-danger.active,a.list-group-item-danger.active:focus,a.list-group-item-danger.active:hover,button.list-group-item-danger.active,button.list-group-item-danger.active:focus,button.list-group-item-danger.active:hover{color:#fff;background-color:#a94442;border-color:#a94442} -.panel-heading>.dropdown .dropdown-toggle,.panel-title,.panel-title>.small,.panel-title>.small>a,.panel-title>a,.panel-title>small,.panel-title>small>a{color:inherit} -.list-group-item-heading{margin-top:0;margin-bottom:5px} -.list-group-item-text{margin-bottom:0;line-height:1.3} -.panel{margin-bottom:20px;background-color:#fff;border:1px solid transparent;border-radius:4px;-webkit-box-shadow:0 1px 1px rgba(0,0,0,.05);box-shadow:0 1px 1px rgba(0,0,0,.05)} -.panel-title,.panel>.list-group,.panel>.panel-collapse>.list-group,.panel>.panel-collapse>.table,.panel>.table,.panel>.table-responsive>.table{margin-bottom:0} -.panel-body{padding:15px} -.panel-heading{padding:10px 15px;border-bottom:1px solid transparent;border-top-left-radius:3px;border-top-right-radius:3px} -.panel-title{margin-top:0;font-size:16px} -.panel-footer{padding:10px 15px;background-color:#f5f5f5;border-top:1px solid #ddd;border-bottom-right-radius:3px;border-bottom-left-radius:3px} -.panel>.list-group .list-group-item,.panel>.panel-collapse>.list-group .list-group-item{border-width:1px 0;border-radius:0} -.panel-group .panel-heading,.panel>.table-bordered>tbody>tr:first-child>td,.panel>.table-bordered>tbody>tr:first-child>th,.panel>.table-bordered>tbody>tr:last-child>td,.panel>.table-bordered>tbody>tr:last-child>th,.panel>.table-bordered>tfoot>tr:last-child>td,.panel>.table-bordered>tfoot>tr:last-child>th,.panel>.table-bordered>thead>tr:first-child>td,.panel>.table-bordered>thead>tr:first-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>th,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th,.panel>.table-responsive>.table-bordered>thead>tr:first-child>td,.panel>.table-responsive>.table-bordered>thead>tr:first-child>th{border-bottom:0} -.panel>.list-group:first-child .list-group-item:first-child,.panel>.panel-collapse>.list-group:first-child .list-group-item:first-child{border-top:0;border-top-left-radius:3px;border-top-right-radius:3px} -.panel>.list-group:last-child .list-group-item:last-child,.panel>.panel-collapse>.list-group:last-child .list-group-item:last-child{border-bottom:0;border-bottom-right-radius:3px;border-bottom-left-radius:3px} -.panel>.panel-heading+.panel-collapse>.list-group .list-group-item:first-child{border-top-left-radius:0;border-top-right-radius:0} -.list-group+.panel-footer,.panel-heading+.list-group .list-group-item:first-child{border-top-width:0} -.panel>.panel-collapse>.table caption,.panel>.table caption,.panel>.table-responsive>.table caption{padding-right:15px;padding-left:15px} -.panel>.table-responsive:first-child>.table:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child,.panel>.table:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child,.panel>.table:first-child>thead:first-child>tr:first-child{border-top-left-radius:3px;border-top-right-radius:3px} -.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table:first-child>thead:first-child>tr:first-child th:first-child{border-top-left-radius:3px} -.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table:first-child>thead:first-child>tr:first-child th:last-child{border-top-right-radius:3px} -.panel>.table-responsive:last-child>.table:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child,.panel>.table:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px} -.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:first-child{border-bottom-left-radius:3px} -.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:last-child{border-bottom-right-radius:3px} -.panel>.panel-body+.table,.panel>.panel-body+.table-responsive,.panel>.table+.panel-body,.panel>.table-responsive+.panel-body{border-top:1px solid #ddd} -.panel>.table>tbody:first-child>tr:first-child td,.panel>.table>tbody:first-child>tr:first-child th{border-top:0} -.panel>.table-bordered,.panel>.table-responsive>.table-bordered{border:0} -.panel>.table-bordered>tbody>tr>td:first-child,.panel>.table-bordered>tbody>tr>th:first-child,.panel>.table-bordered>tfoot>tr>td:first-child,.panel>.table-bordered>tfoot>tr>th:first-child,.panel>.table-bordered>thead>tr>td:first-child,.panel>.table-bordered>thead>tr>th:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child,.panel>.table-responsive>.table-bordered>thead>tr>td:first-child,.panel>.table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0} -.panel>.table-bordered>tbody>tr>td:last-child,.panel>.table-bordered>tbody>tr>th:last-child,.panel>.table-bordered>tfoot>tr>td:last-child,.panel>.table-bordered>tfoot>tr>th:last-child,.panel>.table-bordered>thead>tr>td:last-child,.panel>.table-bordered>thead>tr>th:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child,.panel>.table-responsive>.table-bordered>thead>tr>td:last-child,.panel>.table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0} -.panel>.table-responsive{margin-bottom:0;border:0} -.panel-group{margin-bottom:20px} -.panel-group .panel{margin-bottom:0;border-radius:4px} -.panel-group .panel+.panel{margin-top:5px} -.panel-group .panel-heading+.panel-collapse>.list-group,.panel-group .panel-heading+.panel-collapse>.panel-body{border-top:1px solid #ddd} -.panel-group .panel-footer{border-top:0} -.panel-group .panel-footer+.panel-collapse .panel-body{border-bottom:1px solid #ddd} -.panel-default{border-color:#ddd} -.panel-default>.panel-heading{color:#333;background-color:#f5f5f5;border-color:#ddd} -.panel-default>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ddd} -.panel-default>.panel-heading .badge{color:#f5f5f5;background-color:#333} -.panel-default>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ddd} -.panel-primary{border-color:#337ab7} -.panel-primary>.panel-heading{color:#fff;background-color:#337ab7;border-color:#337ab7} -.panel-primary>.panel-heading+.panel-collapse>.panel-body{border-top-color:#337ab7} -.panel-primary>.panel-heading .badge{color:#337ab7;background-color:#fff} -.panel-primary>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#337ab7} -.panel-success{border-color:#d6e9c6} -.panel-success>.panel-heading{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6} -.panel-success>.panel-heading+.panel-collapse>.panel-body{border-top-color:#d6e9c6} -.panel-success>.panel-heading .badge{color:#dff0d8;background-color:#3c763d} -.panel-success>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#d6e9c6} -.panel-info{border-color:#bce8f1} -.panel-info>.panel-heading{color:#31708f;background-color:#d9edf7;border-color:#bce8f1} -.panel-info>.panel-heading+.panel-collapse>.panel-body{border-top-color:#bce8f1} -.panel-info>.panel-heading .badge{color:#d9edf7;background-color:#31708f} -.panel-info>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#bce8f1} -.panel-warning{border-color:#faebcc} -.panel-warning>.panel-heading{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc} -.panel-warning>.panel-heading+.panel-collapse>.panel-body{border-top-color:#faebcc} -.panel-warning>.panel-heading .badge{color:#fcf8e3;background-color:#8a6d3b} -.panel-warning>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#faebcc} -.panel-danger{border-color:#ebccd1} -.panel-danger>.panel-heading{color:#a94442;background-color:#f2dede;border-color:#ebccd1} -.panel-danger>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ebccd1} -.panel-danger>.panel-heading .badge{color:#f2dede;background-color:#a94442} -.panel-danger>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ebccd1} -.embed-responsive{position:relative;display:block;height:0;padding:0} -.embed-responsive .embed-responsive-item,.embed-responsive embed,.embed-responsive iframe,.embed-responsive object,.embed-responsive video{position:absolute;top:0;bottom:0;left:0;width:100%;height:100%;border:0} -.embed-responsive-16by9{padding-bottom:56.25%} -.embed-responsive-4by3{padding-bottom:75%} -.well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #e3e3e3;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.05);box-shadow:inset 0 1px 1px rgba(0,0,0,.05)} -.well blockquote{border-color:#ddd;border-color:rgba(0,0,0,.15)} -.well-lg{padding:24px;border-radius:6px} -.well-sm{padding:9px;border-radius:3px} -.close{float:right;font-size:21px;line-height:1;color:#000;text-shadow:0 1px 0 #fff;filter:alpha(opacity=20);opacity:.2} -.popover,.tooltip{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-style:normal;font-weight:400;line-height:1.42857143;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;word-wrap:normal;white-space:normal;line-break:auto;text-decoration:none} -.close:focus,.close:hover{color:#000;text-decoration:none;cursor:pointer;filter:alpha(opacity=50);opacity:.5} -button.close{-webkit-appearance:none;padding:0;cursor:pointer;background:0 0;border:0} -.modal{position:fixed;z-index:1050;display:none;-webkit-overflow-scrolling:touch;outline:0} -.modal.fade .modal-dialog{-webkit-transition:-webkit-transform .3s ease-out;-o-transition:-o-transform .3s ease-out;transition:transform .3s ease-out;-webkit-transform:translate(0,-25%);-ms-transform:translate(0,-25%);-o-transform:translate(0,-25%);transform:translate(0,-25%)} -.modal.in .modal-dialog{-webkit-transform:translate(0,0);-ms-transform:translate(0,0);-o-transform:translate(0,0);transform:translate(0,0)} -.modal-open .modal{overflow-x:hidden;overflow-y:auto} -.modal-dialog{position:relative;width:auto;margin:10px} -.modal-content{position:relative;background-color:#fff;background-clip:padding-box;border:1px solid #999;border:1px solid rgba(0,0,0,.2);border-radius:6px;outline:0;-webkit-box-shadow:0 3px 9px rgba(0,0,0,.5);box-shadow:0 3px 9px rgba(0,0,0,.5)} -.modal-backdrop{position:fixed;z-index:1040;background-color:#000} -.modal-backdrop.fade{filter:alpha(opacity=0);opacity:0} -.modal-backdrop.in{filter:alpha(opacity=50);opacity:.5} -.modal-header{padding:15px;border-bottom:1px solid #e5e5e5} -.modal-header .close{margin-top:-2px} -.modal-title{margin:0;line-height:1.42857143} -.modal-body{position:relative;padding:15px} -.modal-footer{padding:15px;text-align:right;border-top:1px solid #e5e5e5} -.modal-footer .btn+.btn{margin-bottom:0;margin-left:5px} -.modal-footer .btn-group .btn+.btn{margin-left:-1px} -.modal-footer .btn-block+.btn-block{margin-left:0} -.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll} -@media (min-width:768px){.modal-dialog{width:600px;margin:30px auto} -.modal-content{-webkit-box-shadow:0 5px 15px rgba(0,0,0,.5);box-shadow:0 5px 15px rgba(0,0,0,.5)} -.modal-sm{width:300px} -} -@media (min-width:992px){.modal-lg{width:900px} -} -.tooltip{position:absolute;z-index:1070;display:block;font-size:12px;text-align:left;text-align:start;filter:alpha(opacity=0);opacity:0} -.tooltip.in{filter:alpha(opacity=90);opacity:.9} -.tooltip.top{padding:5px 0;margin-top:-3px} -.tooltip.right{padding:0 5px;margin-left:3px} -.tooltip.bottom{padding:5px 0;margin-top:3px} -.tooltip.left{padding:0 5px;margin-left:-3px} -.tooltip-inner{max-width:200px;padding:3px 8px;color:#fff;text-align:center;background-color:#000;border-radius:4px} -.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid} -.tooltip.top .tooltip-arrow,.tooltip.top-left .tooltip-arrow,.tooltip.top-right .tooltip-arrow{bottom:0;border-width:5px 5px 0;border-top-color:#000} -.tooltip.top .tooltip-arrow{left:50%;margin-left:-5px} -.tooltip.top-left .tooltip-arrow{right:5px;margin-bottom:-5px} -.tooltip.top-right .tooltip-arrow{left:5px;margin-bottom:-5px} -.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000} -.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000} -.tooltip.bottom .tooltip-arrow,.tooltip.bottom-left .tooltip-arrow,.tooltip.bottom-right .tooltip-arrow{border-width:0 5px 5px;border-bottom-color:#000;top:0} -.tooltip.bottom .tooltip-arrow{left:50%;margin-left:-5px} -.tooltip.bottom-left .tooltip-arrow{right:5px;margin-top:-5px} -.tooltip.bottom-right .tooltip-arrow{left:5px;margin-top:-5px} -.popover{position:absolute;top:0;left:0;z-index:1060;display:none;max-width:276px;padding:1px;font-size:14px;text-align:left;text-align:start;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.2);border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,.2);box-shadow:0 5px 10px rgba(0,0,0,.2)} -.carousel-caption,.carousel-control{color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6)} -.popover.top{margin-top:-10px} -.popover.right{margin-left:10px} -.popover.bottom{margin-top:10px} -.popover.left{margin-left:-10px} -.popover-title{padding:8px 14px;margin:0;font-size:14px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-radius:5px 5px 0 0} -.popover-content{padding:9px 14px} -.popover>.arrow,.popover>.arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid} -.carousel,.carousel-inner{position:relative} -.popover>.arrow{border-width:11px} -.popover>.arrow:after{content:"";border-width:10px} -.popover.top>.arrow{bottom:-11px;left:50%;margin-left:-11px;border-top-color:#999;border-top-color:rgba(0,0,0,.25);border-bottom-width:0} -.popover.top>.arrow:after{bottom:1px;margin-left:-10px;content:" ";border-top-color:#fff;border-bottom-width:0} -.popover.left>.arrow:after,.popover.right>.arrow:after{bottom:-10px;content:" "} -.popover.right>.arrow{top:50%;left:-11px;margin-top:-11px;border-right-color:#999;border-right-color:rgba(0,0,0,.25);border-left-width:0} -.popover.right>.arrow:after{left:1px;border-right-color:#fff;border-left-width:0} -.popover.bottom>.arrow{top:-11px;left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,.25)} -.popover.bottom>.arrow:after{top:1px;margin-left:-10px;content:" ";border-top-width:0;border-bottom-color:#fff} -.popover.left>.arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:rgba(0,0,0,.25)} -.popover.left>.arrow:after{right:1px;border-right-width:0;border-left-color:#fff} -.carousel-inner{width:100%;overflow:hidden} -.carousel-inner>.item{position:relative;display:none;-webkit-transition:.6s ease-in-out left;-o-transition:.6s ease-in-out left;transition:.6s ease-in-out left} -.carousel-inner>.item>a>img,.carousel-inner>.item>img{line-height:1} -@media all and (transform-3d),(-webkit-transform-3d){.carousel-inner>.item{-webkit-transition:-webkit-transform .6s ease-in-out;-o-transition:-o-transform .6s ease-in-out;transition:transform .6s ease-in-out;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:1000px;perspective:1000px} -.carousel-inner>.item.active.right,.carousel-inner>.item.next{left:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)} -.carousel-inner>.item.active.left,.carousel-inner>.item.prev{left:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)} -.carousel-inner>.item.active,.carousel-inner>.item.next.left,.carousel-inner>.item.prev.right{left:0;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)} -} -.carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev{display:block} -.carousel-inner>.active{left:0} -.carousel-inner>.next,.carousel-inner>.prev{position:absolute;top:0;width:100%} -.carousel-inner>.next{left:100%} -.carousel-inner>.prev{left:-100%} -.carousel-inner>.next.left,.carousel-inner>.prev.right{left:0} -.carousel-inner>.active.left{left:-100%} -.carousel-inner>.active.right{left:100%} -.carousel-control{position:absolute;top:0;bottom:0;left:0;width:15%;font-size:20px;background-color:rgba(0,0,0,0);filter:alpha(opacity=50);opacity:.5} -.carousel-control.left{background-image:-webkit-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,.0001)));background-image:linear-gradient(to right,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);background-repeat:repeat-x} -.carousel-control.right{right:0;left:auto;background-image:-webkit-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.0001)),to(rgba(0,0,0,.5)));background-image:linear-gradient(to right,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);background-repeat:repeat-x} -.carousel-control:focus,.carousel-control:hover{color:#fff;text-decoration:none;filter:alpha(opacity=90);outline:0;opacity:.9} -.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next,.carousel-control .icon-prev{position:absolute;top:50%;z-index:5;display:inline-block;margin-top:-10px} -.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{left:50%;margin-left:-10px} -.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{right:50%;margin-right:-10px} -.carousel-control .icon-next,.carousel-control .icon-prev{width:20px;height:20px;font-family:serif;line-height:1} -.carousel-control .icon-prev:before{content:'\2039'} -.carousel-control .icon-next:before{content:'\203a'} -.carousel-indicators{position:absolute;bottom:10px;left:50%;z-index:15;width:60%;padding-left:0;margin-left:-30%;text-align:center;list-style:none} -.carousel-indicators li{display:inline-block;width:10px;height:10px;margin:1px;text-indent:-999px;cursor:pointer;background-color:#000\9;background-color:rgba(0,0,0,0);border:1px solid #fff;border-radius:10px} -.carousel-indicators .active{width:12px;height:12px;margin:0;background-color:#fff} -.carousel-caption{position:absolute;right:15%;bottom:20px;left:15%;z-index:10;padding-top:20px;padding-bottom:20px} -.carousel-caption .btn,.text-hide{text-shadow:none} -@media screen and (min-width:768px){.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next,.carousel-control .icon-prev{width:30px;height:30px;margin-top:-10px;font-size:30px} -.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{margin-left:-10px} -.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{margin-right:-10px} -.carousel-caption{right:20%;left:20%;padding-bottom:30px} -.carousel-indicators{bottom:20px} -} -.btn-group-vertical>.btn-group:after,.btn-group-vertical>.btn-group:before,.btn-toolbar:after,.btn-toolbar:before,.clearfix:after,.clearfix:before,.container-fluid:after,.container-fluid:before,.container:after,.container:before,.dl-horizontal dd:after,.dl-horizontal dd:before,.form-horizontal .form-group:after,.form-horizontal .form-group:before,.modal-footer:after,.modal-footer:before,.modal-header:after,.modal-header:before,.nav:after,.nav:before,.navbar-collapse:after,.navbar-collapse:before,.navbar-header:after,.navbar-header:before,.navbar:after,.navbar:before,.pager:after,.pager:before,.panel-body:after,.panel-body:before,.row:after,.row:before{display:table;content:" "} -.btn-group-vertical>.btn-group:after,.btn-toolbar:after,.clearfix:after,.container-fluid:after,.container:after,.dl-horizontal dd:after,.form-horizontal .form-group:after,.modal-footer:after,.modal-header:after,.nav:after,.navbar-collapse:after,.navbar-header:after,.navbar:after,.pager:after,.panel-body:after,.row:after{clear:both} -.center-block{display:block;margin-right:auto;margin-left:auto} -.pull-right{float:right!important} -.pull-left{float:left!important} -.hide{display:none!important} -.show{display:block!important} -.hidden,.visible-lg,.visible-lg-block,.visible-lg-inline,.visible-lg-inline-block,.visible-md,.visible-md-block,.visible-md-inline,.visible-md-inline-block,.visible-sm,.visible-sm-block,.visible-sm-inline,.visible-sm-inline-block,.visible-xs,.visible-xs-block,.visible-xs-inline,.visible-xs-inline-block{display:none!important} -.invisible{visibility:hidden} -.text-hide{font:0/0 a;color:transparent;background-color:transparent;border:0} -.affix{position:fixed} -@-ms-viewport{width:device-width} -@media (max-width:767px){.visible-xs{display:block!important} -table.visible-xs{display:table!important} -tr.visible-xs{display:table-row!important} -td.visible-xs,th.visible-xs{display:table-cell!important} -.visible-xs-block{display:block!important} -.visible-xs-inline{display:inline!important} -.visible-xs-inline-block{display:inline-block!important} -} -@media (min-width:768px) and (max-width:991px){.visible-sm{display:block!important} -table.visible-sm{display:table!important} -tr.visible-sm{display:table-row!important} -td.visible-sm,th.visible-sm{display:table-cell!important} -.visible-sm-block{display:block!important} -.visible-sm-inline{display:inline!important} -.visible-sm-inline-block{display:inline-block!important} -} -@media (min-width:992px) and (max-width:1199px){.visible-md{display:block!important} -table.visible-md{display:table!important} -tr.visible-md{display:table-row!important} -td.visible-md,th.visible-md{display:table-cell!important} -.visible-md-block{display:block!important} -.visible-md-inline{display:inline!important} -.visible-md-inline-block{display:inline-block!important} -} -@media (min-width:1200px){.visible-lg{display:block!important} -table.visible-lg{display:table!important} -tr.visible-lg{display:table-row!important} -td.visible-lg,th.visible-lg{display:table-cell!important} -.visible-lg-block{display:block!important} -.visible-lg-inline{display:inline!important} -.visible-lg-inline-block{display:inline-block!important} -.hidden-lg{display:none!important} -} -@media (max-width:767px){.hidden-xs{display:none!important} -} -@media (min-width:768px) and (max-width:991px){.hidden-sm{display:none!important} -} -@media (min-width:992px) and (max-width:1199px){.hidden-md{display:none!important} -} -.visible-print{display:none!important} -@media print{.visible-print{display:block!important} -table.visible-print{display:table!important} -tr.visible-print{display:table-row!important} -td.visible-print,th.visible-print{display:table-cell!important} -} -.visible-print-block{display:none!important} -@media print{.visible-print-block{display:block!important} -} -.visible-print-inline{display:none!important} -@media print{.visible-print-inline{display:inline!important} -} -.visible-print-inline-block{display:none!important} -@media print{.visible-print-inline-block{display:inline-block!important} -.hidden-print{display:none!important} -} -.hljs{display:block;background:#fff;padding:.5em;color:#333;overflow-x:auto} -.hljs-comment,.hljs-meta{color:#969896} -.hljs-emphasis,.hljs-quote,.hljs-string,.hljs-strong,.hljs-template-variable,.hljs-variable{color:#df5000} -.hljs-keyword,.hljs-selector-tag,.hljs-type{color:#a71d5d} -.hljs-attribute,.hljs-bullet,.hljs-literal,.hljs-symbol{color:#0086b3} -.hljs-name,.hljs-section{color:#63a35c} -.hljs-tag{color:#333} -.hljs-attr,.hljs-selector-attr,.hljs-selector-class,.hljs-selector-id,.hljs-selector-pseudo,.hljs-title{color:#795da3} -.hljs-addition{color:#55a532;background-color:#eaffea} -.hljs-deletion{color:#bd2c00;background-color:#ffecec} -.hljs-link{text-decoration:underline} \ No newline at end of file diff --git a/overrides/styles/main.css b/overrides/styles/main.css new file mode 100644 index 00000000..1397ea7d --- /dev/null +++ b/overrides/styles/main.css @@ -0,0 +1,19 @@ + + .navbar-inverse { + background: #0052cc !important; + color: #fff !important; + } + + .navbar-inverse .navbar-nav>li>a { + color: #fff !important; + } + + .navbar-inverse li:hover { + color: #fff !important; + background: rgba(0, 0, 0, 0.1) !important; + } + + .navbar-inverse .active { + background: rgba(0, 0, 0, 0.2) !important; + } +